diff --git a/c/expressions.c b/c/expressions.c index 2ba8fc6..3eb8459 100644 --- a/c/expressions.c +++ b/c/expressions.c @@ -15,7 +15,9 @@ #include #include #include -#include +#include +#include +//#include #include "bintrees.h" #include "util.h" @@ -121,7 +123,7 @@ unsigned long int treeCount = 0; unsigned long int labeledTreeCount = 0; unsigned long int validExpressionsCount = 0; -int maximum_complexity_reached = -1; +unsigned long int complexity = 0; boolean report_maximum_complexity_reached = FALSE; unsigned long int timeOut = 0; @@ -131,6 +133,8 @@ boolean userInterrupted = FALSE; boolean terminationSignalReceived = FALSE; boolean heuristicStoppedGeneration = FALSE; +unsigned long int complexity_limit = (INT_MAX) ; +boolean complexity_limit_reached = FALSE; boolean onlyUnlabeled = FALSE; boolean onlyLabeled = FALSE; @@ -210,9 +214,12 @@ inline void dalmatianUpdateHitCount(){ } -void dalmatianHeuristic(TREE *tree, double *values){ +void dalmatianHeuristic(TREE *tree, double *values, int skipCount){ int i; //this heuristic assumes the expression was true for all objects + if(skipCount > allowedPercentageOfSkips * objectCount){ + return; + } //if known theory is provided, we check that first boolean isMoreSignificant = FALSE; @@ -247,6 +254,7 @@ void dalmatianHeuristic(TREE *tree, double *values){ dalmatianFirst = FALSE; dalmatianUpdateHitCount(); return; + } //check the significance @@ -259,9 +267,9 @@ void dalmatianHeuristic(TREE *tree, double *values){ for(i=0; i0){ + conjectureFrequency[smallestAvailablePosition]>0){ // checking whether an expression is dropped smallestAvailablePosition++; } if(smallestAvailablePosition == objectCount){ @@ -423,9 +431,12 @@ inline void dalmatianUpdateHitCount_propertyBased(){ } -void dalmatianHeuristic_propertyBased(TREE *tree, boolean *values){ +void dalmatianHeuristic_propertyBased(TREE *tree, boolean *values, int skipCount){ int i; //this heuristic assumes the expression was true for all objects + if(skipCount > allowedPercentageOfSkips * objectCount){ + return; + } //if known theory is provided, we check that first boolean isMoreSignificant = FALSE; @@ -731,7 +742,7 @@ void grinvinHeuristicPostProcessing(){ //------ Stop generation ------- -boolean shouldGenerationProcessBeTerminated(){ +boolean shouldGenerationProcessBeTerminated(int complexity){ if(heuristicStopConditionReached!=NULL){ if(heuristicStopConditionReached()){ heuristicStoppedGeneration = TRUE; @@ -741,6 +752,11 @@ boolean shouldGenerationProcessBeTerminated(){ if(timeOutReached || userInterrupted || terminationSignalReceived){ return TRUE; } + if (complexity > complexity_limit) { + complexity_limit_reached = TRUE; + complexity = complexity_limit; + return TRUE; + } return FALSE; } @@ -869,7 +885,7 @@ void handleExpression(TREE *tree, double *values, int calculatedValues, int hitC if(skipCount > allowedPercentageOfSkips * objectCount){ return; } - dalmatianHeuristic(tree, values); + dalmatianHeuristic(tree, values, skipCount); } else if(selectedHeuristic==GRINVIN_HEURISTIC){ if(skipCount > allowedPercentageOfSkips * objectCount){ return; @@ -889,7 +905,7 @@ void handleExpression_propertyBased(TREE *tree, boolean *values, int calculatedV if(skipCount > allowedPercentageOfSkips * objectCount){ return; } - dalmatianHeuristic_propertyBased(tree, values); + dalmatianHeuristic_propertyBased(tree, values, skipCount); } else if(selectedHeuristic==GRINVIN_HEURISTIC){ BAILOUT("Grinvin heuristic is not defined for property-based conjectures.") } @@ -1026,6 +1042,9 @@ void writeNonCommutativeBinaryOperatorExample(FILE *f){ } boolean handleComparator(double left, double right, int id){ + if ((isnan(left)) || isnan(right)) { + return TRUE; + } if(id==0){ return left <= right; } else if(id==1){ @@ -1282,7 +1301,8 @@ void generateLabeledTree(TREE *tree, NODE **orderedNodes, int pos){ generateLabeledTree(tree, orderedNodes, pos+1); invariantsUsed[i] = FALSE; } - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1291,7 +1311,8 @@ void generateLabeledTree(TREE *tree, NODE **orderedNodes, int pos){ for (i=0; icontentLabel[1] = unaryOperators[i]; generateLabeledTree(tree, orderedNodes, pos+1); - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1301,7 +1322,8 @@ void generateLabeledTree(TREE *tree, NODE **orderedNodes, int pos){ for (i=0; icontentLabel[1] = nonCommBinaryOperators[i]; generateLabeledTree(tree, orderedNodes, pos+1); - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1312,7 +1334,8 @@ void generateLabeledTree(TREE *tree, NODE **orderedNodes, int pos){ for (i=0; icontentLabel[1] = commBinaryOperators[i]; generateLabeledTree(tree, orderedNodes, pos+1); - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1370,7 +1393,8 @@ void generateTreeImpl(TREE *tree){ addChildToNodeInTree(tree, parent); generateTreeImpl(tree); removeChildFromNodeInTree(tree, parent); - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1380,7 +1404,8 @@ void generateTreeImpl(TREE *tree){ addChildToNodeInTree(tree, parent); generateTreeImpl(tree); removeChildFromNodeInTree(tree, parent); - if(shouldGenerationProcessBeTerminated()){ + complexity = targetUnary + 2*targetBinary; + if(shouldGenerationProcessBeTerminated(complexity)){ return; } } @@ -1391,9 +1416,7 @@ void generateTree(int unary, int binary){ fprintf(stderr, "Generating trees with %d unary node%s and %d binary node%s.\n", unary, unary == 1 ? "" : "s", binary, binary == 1 ? "" : "s"); } - if(report_maximum_complexity_reached){//no need to check if this is larger since we generate them in increasing order - maximum_complexity_reached = 2*binary + unary; - } + TREE tree; targetUnary = unary; targetBinary = binary; @@ -1445,7 +1468,8 @@ void conjecture(int startUnary, int startBinary){ generateTree(unary, binary); getNextOperatorCount(&unary, &binary); - while(!shouldGenerationProcessBeTerminated()) { + complexity = unary + 2*binary; + while(!shouldGenerationProcessBeTerminated(complexity)) { if(unary <= MAX_UNARY_COUNT && binary <= MAX_BINARY_COUNT && availableInvariants >= binary+1) @@ -2079,15 +2103,16 @@ int processOptions(int argc, char **argv) { {"operators", required_argument, NULL, 0}, {"invariants", required_argument, NULL, 0}, {"leq", no_argument, NULL, 0}, - {"less", no_argument, NULL, 0}, + {"less", no_argument, NULL, 0}, // don't use this option {"geq", no_argument, NULL, 0}, - {"greater", no_argument, NULL, 0}, + {"greater", no_argument, NULL, 0}, // don't use this option {"limits", required_argument, NULL, 0}, {"allowed-skips", required_argument, NULL, 0}, {"print-valid-expressions", no_argument, NULL, 0}, {"sufficient", no_argument, NULL, 0}, {"necessary", no_argument, NULL, 0}, {"maximum-complexity", no_argument, NULL, 0}, + {"complexity-limit", required_argument, NULL, 0}, {"help", no_argument, NULL, 'h'}, {"verbose", no_argument, NULL, 'v'}, {"unlabeled", no_argument, NULL, 'u'}, @@ -2191,6 +2216,9 @@ int processOptions(int argc, char **argv) { case 21: report_maximum_complexity_reached = TRUE; break; + case 22: + complexity_limit = strtoul(optarg, NULL, 10); + break; default: fprintf(stderr, "Illegal option index %d.\n", option_index); usage(name); @@ -2310,6 +2338,10 @@ int processOptions(int argc, char **argv) { int main(int argc, char *argv[]) { + time_t start, end; + + start = time(NULL); + operatorFile = stdin; invariantsFile = stdin; @@ -2418,6 +2450,8 @@ int main(int argc, char *argv[]) { fprintf(stderr, "Generation process was interrupted by user.\n"); } else if(terminationSignalReceived){ fprintf(stderr, "Generation process was killed.\n"); + } else if(complexity_limit_reached){ + fprintf(stderr, "Generation process was stopped because the maximum complexity was explored.\n"); } //print some statistics @@ -2434,15 +2468,14 @@ int main(int argc, char *argv[]) { fprintf(stderr, "Found %lu labeled trees.\n", labeledTreeCount); fprintf(stderr, "Found %lu valid expressions.\n", validExpressionsCount); } - - if(report_maximum_complexity_reached){ - fprintf(stderr, "Maximum complexity reached was %d\n", maximum_complexity_reached); - } + fprintf(stderr, "Maximum complexity reached: %lu\n", complexity-1); //do some heuristic-specific post-processing like outputting the conjectures if(heuristicPostProcessing!=NULL){ heuristicPostProcessing(); } + end = time(NULL); + fprintf(stderr, "Elapsed time: %ld seconds\n", end - start); return 0; } diff --git a/examples/AI-Feynman/Feynman_with_units/FeynmanEquations.csv b/examples/AI-Feynman/Feynman_with_units/FeynmanEquations.csv new file mode 100644 index 0000000..d119c7b --- /dev/null +++ b/examples/AI-Feynman/Feynman_with_units/FeynmanEquations.csv @@ -0,0 +1,131 @@ +Filename,Number,Output,Formula,# variables,v1_name,v1_low,v1_high,v2_name,v2_low,v2_high,v3_name,v3_low,v3_high,v4_name,v4_low,v4_high,v5_name,v5_low,v5_high,v6_name,v6_low,v6_high,v7_name,v7_low,v7_high,v8_name,v8_low,v8_high,v9_name,v9_low,v9_high,v10_name,v10_low,v10_high +I.6.2a,1,f,exp(-theta**2/2)/sqrt(2*pi),1,theta,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,, +I.6.2,2,f,exp(-(theta/sigma)**2/2)/(sqrt(2*pi)*sigma),2,sigma,1,3,theta,1,3,,,,,,,,,,,,,,,,,,,,,,,, +I.6.2b,3,f,exp(-((theta-theta1)/sigma)**2/2)/(sqrt(2*pi)*sigma),3,sigma,1,3,theta,1,3,theta1,1,3,,,,,,,,,,,,,,,,,,,,, +I.8.14,4,d,sqrt((x2-x1)**2+(y2-y1)**2),4,x1,1,5,x2,1,5,y1,1,5,y2,1,5,,,,,,,,,,,,,,,,,, +I.9.18,5,F,G*m1*m2/((x2-x1)**2+(y2-y1)**2+(z2-z1)**2),9,m1,1,2,m2,1,2,G,1,2,x1,3,4,x2,1,2,y1,3,4,y2,1,2,z1,3,4,z2,1,2,,, +I.10.7,6,m,m_0/sqrt(1-v**2/c**2),3,m_0,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,,,,,,,, +I.11.19,7,A,x1*y1+x2*y2+x3*y3,6,x1,1,5,x2,1,5,x3,1,5,y1,1,5,y2,1,5,y3,1,5,,,,,,,,,,,, +I.12.1,8,F,mu*Nn,2,mu,1,5,Nn,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.12.2,10,F,q1*q2*r/(4*pi*epsilon*r**3),4,q1,1,5,q2,1,5,epsilon,1,5,r,1,5,,,,,,,,,,,,,,,,,, +I.12.4,11,Ef,q1*r/(4*pi*epsilon*r**3),3,q1,1,5,epsilon,1,5,r,1,5,,,,,,,,,,,,,,,,,,,,, +I.12.5,12,F,q2*Ef,2,q2,1,5,Ef,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.12.11,13,F,q*(Ef+B*v*sin(theta)),5,q,1,5,Ef,1,5,B,1,5,v,1,5,theta,1,5,,,,,,,,,,,,,,, +I.13.4,9,K,1/2*m*(v**2+u**2+w**2),4,m,1,5,v,1,5,u,1,5,w,1,5,,,,,,,,,,,,,,,,,, +I.13.12,14,U,G*m1*m2*(1/r2-1/r1),5,m1,1,5,m2,1,5,r1,1,5,r2,1,5,G,1,5,,,,,,,,,,,,,,, +I.14.3,15,U,m*g*z,3,m,1,5,g,1,5,z,1,5,,,,,,,,,,,,,,,,,,,,, +I.14.4,16,U,1/2*k_spring*x**2,2,k_spring,1,5,x,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.15.3x,17,x1,(x-u*t)/sqrt(1-u**2/c**2),4,x,5,10,u,1,2,c,3,20,t,1,2,,,,,,,,,,,,,,,,,, +I.15.3t,18,t1,(t-u*x/c**2)/sqrt(1-u**2/c**2),4,x,1,5,c,3,10,u,1,2,t,1,5,,,,,,,,,,,,,,,,,, +I.15.1,19,p,m_0*v/sqrt(1-v**2/c**2),3,m_0,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,,,,,,,, +I.16.6,20,v1,(u+v)/(1+u*v/c**2),3,c,1,5,v,1,5,u,1,5,,,,,,,,,,,,,,,,,,,,, +I.18.4,21,r,(m1*r1+m2*r2)/(m1+m2),4,m1,1,5,m2,1,5,r1,1,5,r2,1,5,,,,,,,,,,,,,,,,,, +I.18.12,22,tau,r*F*sin(theta),2,r,1,5,F,1,5,theta,0,5,,,,,,,,,,,,,,,,,,,,, +I.18.14,23,L,m*r*v*sin(theta),3,m,1,5,r,1,5,v,1,5,theta,1,5,,,,,,,,,,,,,,,,,, +I.24.6,24,E_n,1/2*m*(omega**2+omega_0**2)*1/2*x**2,4,m,1,3,omega,1,3,omega_0,1,3,x,1,3,,,,,,,,,,,,,,,,,, +I.25.13,25,Volt,q/C,2,q,1,5,C,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.26.2,26,theta1,arcsin(n*sin(theta2)),2,n,0,1,theta2,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.27.6,27,foc,1/(1/d1+n/d2),3,d1,1,5,d2,1,5,n,1,5,,,,,,,,,,,,,,,,,,,,, +I.29.4,28,k,omega/c,2,omega,1,10,c,1,10,,,,,,,,,,,,,,,,,,,,,,,, +I.29.16,29,x,sqrt(x1**2+x2**2-2*x1*x2*cos(theta1-theta2)),4,x1,1,5,x2,1,5,theta1,1,5,theta2,1,5,,,,,,,,,,,,,,,,,, +I.30.3,30,Int,Int_0*sin(n*theta/2)**2/sin(theta/2)**2,3,Int_0,1,5,theta,1,5,n,1,5,,,,,,,,,,,,,,,,,,,,, +I.30.5,31,theta,arcsin(lambd/(n*d)),3,lambd,1,2,d,2,5,n,1,5,,,,,,,,,,,,,,,,,,,,, +I.32.5,32,Pwr,q**2*a**2/(6*pi*epsilon*c**3),4,q,1,5,a,1,5,epsilon,1,5,c,1,5,,,,,,,,,,,,,,,,,, +I.32.17,33,Pwr,(1/2*epsilon*c*Ef**2)*(8*pi*r**2/3)*(omega**4/(omega**2-omega_0**2)**2),6,epsilon,1,2,c,1,2,Ef,1,2,r,1,2,omega,1,2,omega_0,3,5,,,,,,,,,,,, +I.34.8,34,omega,q*v*B/p,4,q,1,5,v,1,5,B,1,5,p,1,5,,,,,,,,,,,,,,,,,, +I.34.1,35,omega,omega_0/(1-v/c),3,c,3,10,v,1,2,omega_0,1,5,,,,,,,,,,,,,,,,,,,,, +I.34.14,36,omega,(1+v/c)/sqrt(1-v**2/c**2)*omega_0,3,c,3,10,v,1,2,omega_0,1,5,,,,,,,,,,,,,,,,,,,,, +I.34.27,37,E_n,(h/(2*pi))*omega,2,omega,1,5,h,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.37.4,38,Int,I1+I2+2*sqrt(I1*I2)*cos(delta),3,I1,1,5,I2,1,5,delta,1,5,,,,,,,,,,,,,,,,,,,,, +I.38.12,39,r,4*pi*epsilon*(h/(2*pi))**2/(m*q**2),3,m,1,5,q,1,5,h,1,5,epsilon,1,5,,,,,,,,,,,,,,,,,, +I.39.1,40,E_n,3/2*pr*V,2,pr,1,5,V,1,5,,,,,,,,,,,,,,,,,,,,,,,, +I.39.11,41,E_n,1/(gamma-1)*pr*V,3,gamma,2,5,pr,1,5,V,1,5,,,,,,,,,,,,,,,,,,,,, +I.39.22,42,pr,n*kb*T/V,4,n,1,5,T,1,5,V,1,5,kb,1,5,,,,,,,,,,,,,,,,,, +I.40.1,43,n,n_0*exp(-m*g*x/(kb*T)),6,n_0,1,5,m,1,5,x,1,5,T,1,5,g,1,5,kb,1,5,,,,,,,,,,,, +I.41.16,44,L_rad,h/(2*pi)*omega**3/(pi**2*c**2*(exp((h/(2*pi))*omega/(kb*T))-1)),5,omega,1,5,T,1,5,h,1,5,kb,1,5,c,1,5,,,,,,,,,,,,,,, +I.43.16,45,v,mu_drift*q*Volt/d,4,mu_drift,1,5,q,1,5,Volt,1,5,d,1,5,,,,,,,,,,,,,,,,,, +I.43.31,46,D,mob*kb*T,3,mob,1,5,T,1,5,kb,1,5,,,,,,,,,,,,,,,,,,,,, +I.43.43,47,kappa,1/(gamma-1)*kb*v/A,4,gamma,2,5,kb,1,5,A,1,5,v,1,5,,,,,,,,,,,,,,,,,, +I.44.4,48,E_n,n*kb*T*ln(V2/V1),5,n,1,5,kb,1,5,T,1,5,V1,1,5,V2,1,5,,,,,,,,,,,,,,, +I.47.23,49,c,sqrt(gamma*pr/rho),3,gamma,1,5,pr,1,5,rho,1,5,,,,,,,,,,,,,,,,,,,,, +I.48.2,50,E_n,m*c**2/sqrt(1-v**2/c**2),3,m,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,,,,,,,, +I.50.26,51,x,x1*(cos(omega*t)+alpha*cos(omega*t)**2),4,x1,1,3,omega,1,3,t,1,3,alpha,1,3,,,,,,,,,,,,,,,,,, +II.2.42,52,Pwr,kappa*(T2-T1)*A/d,5,kappa,1,5,T1,1,5,T2,1,5,A,1,5,d,1,5,,,,,,,,,,,,,,, +II.3.24,53,flux,Pwr/(4*pi*r**2),2,Pwr,1,5,r,1,5,,,,,,,,,,,,,,,,,,,,,,,, +II.4.23,54,Volt,q/(4*pi*epsilon*r),3,q,1,5,epsilon,1,5,r,1,5,,,,,,,,,,,,,,,,,,,,, +II.6.11,55,Volt,1/(4*pi*epsilon)*p_d*cos(theta)/r**2,4,epsilon,1,3,p_d,1,3,theta,1,3,r,1,3,,,,,,,,,,,,,,,,,, +II.6.15a,56,Ef,p_d/(4*pi*epsilon)*3*z/r**5*sqrt(x**2+y**2),6,epsilon,1,3,p_d,1,3,r,1,3,x,1,3,y,1,3,z,1,3,,,,,,,,,,,, +II.6.15b,57,Ef,p_d/(4*pi*epsilon)*3*cos(theta)*sin(theta)/r**3,4,epsilon,1,3,p_d,1,3,theta,1,3,r,1,3,,,,,,,,,,,,,,,,,, +II.8.7,58,E_n,3/5*q**2/(4*pi*epsilon*d),3,q,1,5,epsilon,1,5,d,1,5,,,,,,,,,,,,,,,,,,,,, +II.8.31,59,E_den,epsilon*Ef**2/2,2,epsilon,1,5,Ef,1,5,,,,,,,,,,,,,,,,,,,,,,,, +II.10.9,60,Ef,sigma_den/epsilon*1/(1+chi),3,sigma_den,1,5,epsilon,1,5,chi,1,5,,,,,,,,,,,,,,,,,,,,, +II.11.3,61,x,q*Ef/(m*(omega_0**2-omega**2)),5,q,1,3,Ef,1,3,m,1,3,omega_0,3,5,omega,1,2,,,,,,,,,,,,,,, +II.11.17,62,n,n_0*(1+p_d*Ef*cos(theta)/(kb*T)),6,n_0,1,3,kb,1,3,T,1,3,theta,1,3,p_d,1,3,Ef,1,3,,,,,,,,,,,, +II.11.20,63,Pol,n_rho*p_d**2*Ef/(3*kb*T),5,n_rho,1,5,p_d,1,5,Ef,1,5,kb,1,5,T,1,5,,,,,,,,,,,,,,, +II.11.27,64,Pol,n*alpha/(1-(n*alpha/3))*epsilon*Ef,4,n,0,1,alpha,0,1,epsilon,1,2,Ef,1,2,,,,,,,,,,,,,,,,,, +II.11.28,65,theta,1+n*alpha/(1-(n*alpha/3)),2,n,0,1,alpha,0,1,,,,,,,,,,,,,,,,,,,,,,,, +II.13.17,66,B,1/(4*pi*epsilon*c**2)*2*I/r,4,epsilon,1,5,c,1,5,I,1,5,r,1,5,,,,,,,,,,,,,,,,,, +II.13.23,67,rho_c,rho_c_0/sqrt(1-v**2/c**2),3,rho_c_0,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,,,,,,,, +II.13.34,68,j,rho_c_0*v/sqrt(1-v**2/c**2),3,rho_c_0,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,,,,,,,, +II.15.4,69,E_n,-mom*B*cos(theta),3,mom,1,5,B,1,5,theta,1,5,,,,,,,,,,,,,,,,,,,,, +II.15.5,70,E_n,-p_d*Ef*cos(theta),3,p_d,1,5,Ef,1,5,theta,1,5,,,,,,,,,,,,,,,,,,,,, +II.21.32,71,Volt,q/(4*pi*epsilon*r*(1-v/c)),5,q,1,5,epsilon,1,5,r,1,5,v,1,2,c,3,10,,,,,,,,,,,,,,, +II.24.17,72,k,sqrt(omega**2/c**2-pi**2/d**2),3,omega,4,6,c,1,2,d,2,4,,,,,,,,,,,,,,,,,,,,, +II.27.16,73,flux,epsilon*c*Ef**2,3,epsilon,1,5,c,1,5,Ef,1,5,,,,,,,,,,,,,,,,,,,,, +II.27.18,74,E_den,epsilon*Ef**2,2,epsilon,1,5,Ef,1,5,,,,,,,,,,,,,,,,,,,,,,,, +II.34.2a,75,I,q*v/(2*pi*r),3,q,1,5,v,1,5,r,1,5,,,,,,,,,,,,,,,,,,,,, +II.34.2,76,mom,q*v*r/2,3,q,1,5,v,1,5,r,1,5,,,,,,,,,,,,,,,,,,,,, +II.34.11,77,omega,g_*q*B/(2*m),4,g_,1,5,q,1,5,B,1,5,m,1,5,,,,,,,,,,,,,,,,,, +II.34.29a,78,mom,q*h/(4*pi*m),3,q,1,5,h,1,5,m,1,5,,,,,,,,,,,,,,,,,,,,, +II.34.29b,79,E_n,g_*mom*B*Jz/(h/(2*pi)),5,g_,1,5,h,1,5,Jz,1,5,mom,1,5,B,1,5,,,,,,,,,,,,,,, +II.35.18,80,n,n_0/(exp(mom*B/(kb*T))+exp(-mom*B/(kb*T))),5,n_0,1,3,kb,1,3,T,1,3,mom,1,3,B,1,3,,,,,,,,,,,,,,, +II.35.21,81,M,n_rho*mom*tanh(mom*B/(kb*T)),5,n_rho,1,5,mom,1,5,B,1,5,kb,1,5,T,1,5,,,,,,,,,,,,,,, +II.36.38,82,f,mom*H/(kb*T)+(mom*alpha)/(epsilon*c**2*kb*T)*M,8,mom,1,3,H,1,3,kb,1,3,T,1,3,alpha,1,3,epsilon,1,3,c,1,3,M,1,3,,,,,, +II.37.1,83,E_n,mom*(1+chi)*B,6,mom,1,5,B,1,5,chi,1,5,,,,,,,,,,,,,,,,,,,,, +II.38.3,84,F,Y*A*x/d,4,Y,1,5,A,1,5,d,1,5,x,1,5,,,,,,,,,,,,,,,,,, +II.38.14,85,mu_S,Y/(2*(1+sigma)),2,Y,1,5,sigma,1,5,,,,,,,,,,,,,,,,,,,,,,,, +III.4.32,86,n,1/(exp((h/(2*pi))*omega/(kb*T))-1),4,h,1,5,omega,1,5,kb,1,5,T,1,5,,,,,,,,,,,,,,,,,, +III.4.33,87,E_n,(h/(2*pi))*omega/(exp((h/(2*pi))*omega/(kb*T))-1),4,h,1,5,omega,1,5,kb,1,5,T,1,5,,,,,,,,,,,,,,,,,, +III.7.38,88,omega,2*mom*B/(h/(2*pi)),3,mom,1,5,B,1,5,h,1,5,,,,,,,,,,,,,,,,,,,,, +III.8.54,89,prob,sin(E_n*t/(h/(2*pi)))**2,3,E_n,1,2,t,1,2,h,1,4,,,,,,,,,,,,,,,,,,,,, +III.9.52,90,prob,(p_d*Ef*t/(h/(2*pi)))*sin((omega-omega_0)*t/2)**2/((omega-omega_0)*t/2)**2,6,p_d,1,3,Ef,1,3,t,1,3,h,1,3,omega,1,5,omega_0,1,5,,,,,,,,,,,, +III.10.19,91,E_n,mom*sqrt(Bx**2+By**2+Bz**2),3,mom,1,5,Bx,1,5,By,1,5,Bz,1,5,,,,,,,,,,,,,,,,,, +III.12.43,92,L,n*(h/(2*pi)),2,n,1,5,h,1,5,,,,,,,,,,,,,,,,,,,,,,,, +III.13.18,93,v,2*E_n*d**2*k/(h/(2*pi)),4,E_n,1,5,d,1,5,k,1,5,h,1,5,,,,,,,,,,,,,,,,,, +III.14.14,94,I,I_0*(exp(q*Volt/(kb*T))-1),5,I_0,1,5,q,1,2,Volt,1,2,kb,1,2,T,1,2,,,,,,,,,,,,,,, +III.15.12,95,E_n,2*U*(1-cos(k*d)),3,U,1,5,k,1,5,d,1,5,,,,,,,,,,,,,,,,,,,,, +III.15.14,96,m,(h/(2*pi))**2/(2*E_n*d**2),3,h,1,5,E_n,1,5,d,1,5,,,,,,,,,,,,,,,,,,,,, +III.15.27,97,k,2*pi*alpha/(n*d),3,alpha,1,5,n,1,5,d,1,5,,,,,,,,,,,,,,,,,,,,, +III.17.37,98,f,beta*(1+alpha*cos(theta)),3,beta,1,5,alpha,1,5,theta,1,5,,,,,,,,,,,,,,,,,,,,, +III.19.51,99,E_n,-m*q**4/(2*(4*pi*epsilon)**2*(h/(2*pi))**2)*(1/n**2),4,m,1,5,q,1,5,h,1,5,n,1,5,epsilon,1,5,,,,,,,,,,,,,,, +III.21.20,100,j,-rho_c_0*q*A_vec/m,4,rho_c_0,1,5,q,1,5,A_vec,1,5,m,1,5,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/examples/AI-Feynman/Feynman_with_units/I.10.7.bz2 b/examples/AI-Feynman/Feynman_with_units/I.10.7.bz2 new file mode 100644 index 0000000..eceea2f Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.10.7.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.11.19.bz2 b/examples/AI-Feynman/Feynman_with_units/I.11.19.bz2 new file mode 100644 index 0000000..c50f303 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.11.19.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.12.1.bz2 b/examples/AI-Feynman/Feynman_with_units/I.12.1.bz2 new file mode 100644 index 0000000..3b1c80f Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.12.1.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.12.2.bz2 b/examples/AI-Feynman/Feynman_with_units/I.12.2.bz2 new file mode 100644 index 0000000..fa45eeb Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.12.2.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.12.4.bz2 b/examples/AI-Feynman/Feynman_with_units/I.12.4.bz2 new file mode 100644 index 0000000..145832d Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.12.4.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.6.2.bz2 b/examples/AI-Feynman/Feynman_with_units/I.6.2.bz2 new file mode 100644 index 0000000..2f9e363 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.6.2.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.6.2a.bz2 b/examples/AI-Feynman/Feynman_with_units/I.6.2a.bz2 new file mode 100644 index 0000000..ad61749 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.6.2a.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.6.2b.bz2 b/examples/AI-Feynman/Feynman_with_units/I.6.2b.bz2 new file mode 100644 index 0000000..f4c21f7 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.6.2b.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.8.14.bz2 b/examples/AI-Feynman/Feynman_with_units/I.8.14.bz2 new file mode 100644 index 0000000..2a8d9b9 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.8.14.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/I.9.18.bz2 b/examples/AI-Feynman/Feynman_with_units/I.9.18.bz2 new file mode 100644 index 0000000..e388570 Binary files /dev/null and b/examples/AI-Feynman/Feynman_with_units/I.9.18.bz2 differ diff --git a/examples/AI-Feynman/Feynman_with_units/README b/examples/AI-Feynman/Feynman_with_units/README new file mode 100644 index 0000000..d95f19a --- /dev/null +++ b/examples/AI-Feynman/Feynman_with_units/README @@ -0,0 +1,3 @@ +Downloaded from https://space.mit.edu/home/tegmark/aifeynman.html on June 28, 2021 +4.1GB .tar.gz file unzips to 8.7 GB tar file +keeping only first 10 examples diff --git a/examples/AI-Feynman/aif_array.in b/examples/AI-Feynman/aif_array.in new file mode 100644 index 0000000..7bcd990 --- /dev/null +++ b/examples/AI-Feynman/aif_array.in @@ -0,0 +1,10 @@ +I.6.2a +I.6.2 +I.6.2b +I.8.14 +I.9.18 +I.10.7 +I.11.19 +I.12.1 +I.12.2 +I.12.4 diff --git a/examples/AI-Feynman/aif_gravity.ipynb b/examples/AI-Feynman/aif_gravity.ipynb new file mode 100644 index 0000000..f7e169c --- /dev/null +++ b/examples/AI-Feynman/aif_gravity.ipynb @@ -0,0 +1,351 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import aifeynman" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve ./gravity_data/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve ./gravity_data/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "55.16 42.66 0.001076072339*(x1*sqrt((x2/x0)))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "55.16 42.66 0.001076072339*(x1*sqrt((x2/x0)))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "55.16 42.66 0.001076072339*(x1*sqrt((x2/x0)))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "44.99 30.33 acos(-0.001365511651+sin(x1))\n", + "58.81 30.31 acos(-0.006750771115+sin((x1/(-pi))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "44.99 30.33 acos(-0.001365511651+sin(x1))\n", + "58.81 30.31 acos(-0.006750771115+sin((x1/(-pi))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "44.99 30.33 acos(-0.001365511651+sin(x1))\n", + "58.81 30.31 acos(-0.006750771115+sin((x1/(-pi))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "44.99 30.33 acos(-0.001365511651+sin(x1))\n", + "58.81 30.31 acos(-0.006750771115+sin((x1/(-pi))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "43.32 29.29 asin(-0.000427683952+cos(x2))\n", + "48.7 28.92 asin(-0.021161823160*pi)\n", + "53.47 28.91 asin(-0.000334247284*sqrt(x2))\n", + "59.89 28.87 asin(-0.114482673182*sin(exp(sin(sin(x1)))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "43.32 29.29 asin(-0.000427683952+cos(x2))\n", + "48.7 28.92 asin(-0.021161823160*pi)\n", + "53.47 28.91 asin(-0.000334247284*sqrt(x2))\n", + "59.89 28.87 asin(-0.114482673182*sin(exp(sin(sin(x1)))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "35.67 30.63 acos(0.000002133159*(-x2))\n", + "43.32 29.29 asin(-0.000427683952+cos(x2))\n", + "48.7 28.92 asin(-0.021161823160*pi)\n", + "53.47 28.91 asin(-0.000334247284*sqrt(x2))\n", + "59.89 28.87 asin(-0.114482673182*sin(exp(sin(sin(x1)))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/gravityTrainData.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/gravityTrainData.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "11.38 45.03 666.000000000000*pi\n", + "19.38 43.78 666.000000000000+(x1/(x0+1))\n", + "21.99 43.59 666.000000000000+(x1/(x0+exp(x0)))\n", + "24.58 43.52 666.000000000000+(x1/(x0+(x0+1)))\n", + "24.99 43.45 666.000000000000+(x1/((x0*pi)+1))\n", + "31.53 29.97 atan(0.000001145912*x1)\n", + "31.54 29.97 atan(-0.000001153689*(-x1))\n", + "43.32 29.29 asin(-0.000427683952+cos(x2))\n", + "48.7 28.92 asin(-0.021161823160*pi)\n", + "53.47 28.91 asin(-0.000334247284*sqrt(x2))\n", + "59.89 28.87 asin(-0.114482673182*sin(exp(sin(sin(x1)))))\n", + "62.95 2.9 0.238951064283*sqrt((x2*(x1/x0)))\n", + "\n", + "NN already trained \n", + "\n", + "NN loss: tensor(0.9809, grad_fn=) \n", + "\n", + "Checking for symmetries...\n", + "\n", + "Checking for separabilities...\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "identify_decompositions ./gravity_data/ gravityTrainData.csv_train\n", + "Trying (0, 1)\n" + ] + }, + { + "ename": "LinAlgError", + "evalue": "Array must not contain infs or NaNs", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mLinAlgError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m aifeynman.run_aifeynman(\"./gravity_data/\",\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;34m\"gravityTrainData.csv\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;36m60\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\"14ops.txt\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mpolyfit_deg\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_run_aifeynman.py\u001b[0m in \u001b[0;36mrun_aifeynman\u001b[0;34m(pathdir, filename, BF_try_time, BF_ops_file_type, polyfit_deg, NN_epochs, vars_name, test_percentage)\u001b[0m\n\u001b[1;32m 272\u001b[0m \u001b[0mPA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mParetoSet\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 273\u001b[0m \u001b[0;31m# Run the code on the train data\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 274\u001b[0;31m \u001b[0mPA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mrun_AI_all\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpathdir\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"_train\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mBF_try_time\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mBF_ops_file_type\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpolyfit_deg\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mNN_epochs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mPA\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mPA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 275\u001b[0m \u001b[0mPA_list\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mPA\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_pareto_points\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 276\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_run_aifeynman.py\u001b[0m in \u001b[0;36mrun_AI_all\u001b[0;34m(pathdir, filename, BF_try_time, BF_ops_file_type, polyfit_deg, NN_epochs, PA)\u001b[0m\n\u001b[1;32m 152\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m>\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 153\u001b[0m \u001b[0;31m# find the best separability indices\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 154\u001b[0;31m \u001b[0mdecomp_idx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0midentify_decompositions\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpathdir\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel_feynman\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 155\u001b[0m \u001b[0mbrute_force_gen_sym\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"results/\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"gradients_gen_sym_%s\"\u001b[0m \u001b[0;34m%\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m600\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"14ops.txt\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 156\u001b[0m \u001b[0mbf_all_output\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloadtxt\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"results_gen_sym.dat\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"str\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36midentify_decompositions\u001b[0;34m(pathdir, filename, model, max_subset_size, visualize)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0my\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mTensor\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 257\u001b[0m \u001b[0;31m# Return best decomposition\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 258\u001b[0;31m \u001b[0mall_scores\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfilter_decompositions_relative_scoring\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mX\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvisualize\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvisualize\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 259\u001b[0m \u001b[0;32massert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mall_scores\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 260\u001b[0m \u001b[0mbest_decomposition\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mall_scores\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36mfilter_decompositions_relative_scoring\u001b[0;34m(X, y, model, max_subset_size, visualize)\u001b[0m\n\u001b[1;32m 198\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 199\u001b[0m \u001b[0msamples\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdraw_samples\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mX\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ms\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mNUM_SAMPLES\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpoint\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 200\u001b[0;31m \u001b[0mscore\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0m_\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mscore_consistency\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mevaluate_derivatives_andrew\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ms\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msamples\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 201\u001b[0m \u001b[0mhypot_scores\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mscore\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 202\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36mscore_consistency\u001b[0;34m(grads_tensor)\u001b[0m\n\u001b[1;32m 109\u001b[0m \u001b[0mA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnormalized_grads\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 110\u001b[0m \u001b[0mD\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0meinsum\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ij,ik'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 111\u001b[0;31m \u001b[0mevals\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mevecs\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlinalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0meig\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mD\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 112\u001b[0m \u001b[0mnv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mevals\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 113\u001b[0m \u001b[0;32massert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnv\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m<__array_function__ internals>\u001b[0m in \u001b[0;36meig\u001b[0;34m(*args, **kwargs)\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/numpy/linalg/linalg.py\u001b[0m in \u001b[0;36meig\u001b[0;34m(a)\u001b[0m\n\u001b[1;32m 1316\u001b[0m \u001b[0m_assert_stacked_2d\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1317\u001b[0m \u001b[0m_assert_stacked_square\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1318\u001b[0;31m \u001b[0m_assert_finite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1319\u001b[0m \u001b[0mt\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresult_t\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_commonType\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1320\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/numpy/linalg/linalg.py\u001b[0m in \u001b[0;36m_assert_finite\u001b[0;34m(*arrays)\u001b[0m\n\u001b[1;32m 207\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0ma\u001b[0m \u001b[0;32min\u001b[0m \u001b[0marrays\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 208\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misfinite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mall\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 209\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mLinAlgError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Array must not contain infs or NaNs\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 210\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 211\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_is_empty_2d\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mLinAlgError\u001b[0m: Array must not contain infs or NaNs" + ] + } + ], + "source": [ + "aifeynman.run_aifeynman(\"./gravity_data/\",\n", + " \"gravityTrainData.csv\",\n", + " 60,\n", + " \"14ops.txt\",\n", + " polyfit_deg=0,\n", + " NN_epochs=0,\n", + " vars_name=[\"F\",\"m1\",\"m2\",\"r\"])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/AI-Feynman/aif_real_estate.ipynb b/examples/AI-Feynman/aif_real_estate.ipynb new file mode 100644 index 0000000..86cc360 --- /dev/null +++ b/examples/AI-Feynman/aif_real_estate.ipynb @@ -0,0 +1,484 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "9e4d266f", + "metadata": {}, + "outputs": [], + "source": [ + "import aifeynman" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "f124990b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
234567891017
02.52388853719856.0262838.804349-77.297557300000
12.01426696920179.037533738.851005-77.317099300000
23.53424217800201819.039428038.834875-77.336040300000
33.5209469692017120.034418438.844253-77.304543300000
44.552176969198954.525928038.813300-77.369410300000
.................................
9964.026546969201854.044628033.668232-117.656426300000
9973.017106969201864.0127328033.624397-117.945629300000
9983.519126969201774.033928033.542747-117.599666300000
9993.023626969198954.539228033.542483-117.601342300000
10004.536846969198954.541528033.475261-117.668083300000
\n", + "

1001 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " 2 3 4 5 6 7 8 9 10 17\n", + "0 2.5 2388 8537 1985 6.0 262 8 38.804349 -77.297557 300000\n", + "1 2.0 1426 6969 2017 9.0 375 337 38.851005 -77.317099 300000\n", + "2 3.5 3424 217800 2018 19.0 394 280 38.834875 -77.336040 300000\n", + "3 3.5 2094 6969 2017 120.0 344 184 38.844253 -77.304543 300000\n", + "4 4.5 5217 6969 1989 54.5 259 280 38.813300 -77.369410 300000\n", + "... ... ... ... ... ... ... ... ... ... ...\n", + "996 4.0 2654 6969 2018 54.0 446 280 33.668232 -117.656426 300000\n", + "997 3.0 1710 6969 2018 64.0 1273 280 33.624397 -117.945629 300000\n", + "998 3.5 1912 6969 2017 74.0 339 280 33.542747 -117.599666 300000\n", + "999 3.0 2362 6969 1989 54.5 392 280 33.542483 -117.601342 300000\n", + "1000 4.5 3684 6969 1989 54.5 415 280 33.475261 -117.668083 300000\n", + "\n", + "[1001 rows x 10 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "train_data = pd.read_csv(\"real_estate_data/trainData.csv\",\n", + " sep=\" \",\n", + " header=None)\n", + "train_data = train_data.loc[:,2:10]\n", + "train_data[\"17\"] = 300000\n", + "train_data.to_csv(\"real_estate_data/aif_train.csv\", \n", + " header=False,\n", + " sep=\" \",\n", + " index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "c3571e06", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve /Users/jpbrooks/bay2/conjecturing/examples/AI-Feynman/real_estate_data/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve /Users/jpbrooks/bay2/conjecturing/examples/AI-Feynman/real_estate_data/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/aif_train.csv_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/aif_train.csv_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "\n", + "Training a NN on the data... \n", + "\n", + "NN loss: (tensor(0.9870, grad_fn=), SimpleNet(\n", + " (linear1): Linear(in_features=9, out_features=128, bias=True)\n", + " (linear2): Linear(in_features=128, out_features=128, bias=True)\n", + " (linear3): Linear(in_features=128, out_features=64, bias=True)\n", + " (linear4): Linear(in_features=64, out_features=64, bias=True)\n", + " (linear5): Linear(in_features=64, out_features=1, bias=True)\n", + ")) \n", + "\n", + "Checking for symmetries...\n", + "\n", + "Checking for separabilities...\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "identify_decompositions /Users/jpbrooks/bay2/conjecturing/examples/AI-Feynman/real_estate_data/ aif_train.csv_train\n", + "Trying (0, 1)\n" + ] + }, + { + "ename": "LinAlgError", + "evalue": "Array must not contain infs or NaNs", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mLinAlgError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m aifeynman.run_aifeynman(\"/Users/jpbrooks/bay2/conjecturing/examples/AI-Feynman/real_estate_data/\",\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;34m\"aif_train.csv\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;36m60\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\"14ops.txt\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mpolyfit_deg\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_run_aifeynman.py\u001b[0m in \u001b[0;36mrun_aifeynman\u001b[0;34m(pathdir, filename, BF_try_time, BF_ops_file_type, polyfit_deg, NN_epochs, vars_name, test_percentage)\u001b[0m\n\u001b[1;32m 272\u001b[0m \u001b[0mPA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mParetoSet\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 273\u001b[0m \u001b[0;31m# Run the code on the train data\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 274\u001b[0;31m \u001b[0mPA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mrun_AI_all\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpathdir\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"_train\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mBF_try_time\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mBF_ops_file_type\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpolyfit_deg\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mNN_epochs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mPA\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mPA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 275\u001b[0m \u001b[0mPA_list\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mPA\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_pareto_points\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 276\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_run_aifeynman.py\u001b[0m in \u001b[0;36mrun_AI_all\u001b[0;34m(pathdir, filename, BF_try_time, BF_ops_file_type, polyfit_deg, NN_epochs, PA)\u001b[0m\n\u001b[1;32m 152\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m>\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 153\u001b[0m \u001b[0;31m# find the best separability indices\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 154\u001b[0;31m \u001b[0mdecomp_idx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0midentify_decompositions\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpathdir\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel_feynman\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 155\u001b[0m \u001b[0mbrute_force_gen_sym\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"results/\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"gradients_gen_sym_%s\"\u001b[0m \u001b[0;34m%\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m600\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"14ops.txt\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 156\u001b[0m \u001b[0mbf_all_output\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloadtxt\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"results_gen_sym.dat\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"str\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36midentify_decompositions\u001b[0;34m(pathdir, filename, model, max_subset_size, visualize)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0my\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mTensor\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 257\u001b[0m \u001b[0;31m# Return best decomposition\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 258\u001b[0;31m \u001b[0mall_scores\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfilter_decompositions_relative_scoring\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mX\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvisualize\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvisualize\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 259\u001b[0m \u001b[0;32massert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mall_scores\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 260\u001b[0m \u001b[0mbest_decomposition\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mall_scores\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36mfilter_decompositions_relative_scoring\u001b[0;34m(X, y, model, max_subset_size, visualize)\u001b[0m\n\u001b[1;32m 198\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 199\u001b[0m \u001b[0msamples\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdraw_samples\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mX\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ms\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mNUM_SAMPLES\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpoint\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 200\u001b[0;31m \u001b[0mscore\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0m_\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mscore_consistency\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mevaluate_derivatives_andrew\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ms\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msamples\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 201\u001b[0m \u001b[0mhypot_scores\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mscore\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 202\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrandom_indices\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/aifeynman/S_gradient_decomposition.py\u001b[0m in \u001b[0;36mscore_consistency\u001b[0;34m(grads_tensor)\u001b[0m\n\u001b[1;32m 109\u001b[0m \u001b[0mA\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnormalized_grads\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 110\u001b[0m \u001b[0mD\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0meinsum\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ij,ik'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 111\u001b[0;31m \u001b[0mevals\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mevecs\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlinalg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0meig\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mD\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 112\u001b[0m \u001b[0mnv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mevals\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 113\u001b[0m \u001b[0;32massert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnv\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m<__array_function__ internals>\u001b[0m in \u001b[0;36meig\u001b[0;34m(*args, **kwargs)\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/numpy/linalg/linalg.py\u001b[0m in \u001b[0;36meig\u001b[0;34m(a)\u001b[0m\n\u001b[1;32m 1316\u001b[0m \u001b[0m_assert_stacked_2d\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1317\u001b[0m \u001b[0m_assert_stacked_square\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1318\u001b[0;31m \u001b[0m_assert_finite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1319\u001b[0m \u001b[0mt\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresult_t\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_commonType\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1320\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/envs/feyn/lib/python3.9/site-packages/numpy/linalg/linalg.py\u001b[0m in \u001b[0;36m_assert_finite\u001b[0;34m(*arrays)\u001b[0m\n\u001b[1;32m 207\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0ma\u001b[0m \u001b[0;32min\u001b[0m \u001b[0marrays\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 208\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misfinite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mall\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 209\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mLinAlgError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Array must not contain infs or NaNs\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 210\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 211\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_is_empty_2d\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mLinAlgError\u001b[0m: Array must not contain infs or NaNs" + ] + } + ], + "source": [ + "aifeynman.run_aifeynman(\"real_estate_data/\",\n", + " \"aif_train.csv\",\n", + " 60,\n", + " \"14ops.txt\",\n", + " polyfit_deg=4,\n", + " NN_epochs=500,\n", + " vars_name=[\"beds\",\"baths\",\"sq ft\",\n", + " \"lot size\", \"year\", \"days on market\",\n", + " \"price per sq ft\", \"hoa month\", \n", + " \"latitude\", \"longitude\", \"const\"])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7f17948d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/AI-Feynman/example1.ipynb b/examples/AI-Feynman/example1.ipynb new file mode 100644 index 0000000..ebdd8ad --- /dev/null +++ b/examples/AI-Feynman/example1.ipynb @@ -0,0 +1,1007 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import aifeynman" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve ./example_data/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve ./example_data/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.48 1/(-0.000000085059*((x0*sin(pi)))**(-1))\n", + "44.86 25.46 0.079634299126+x0\n", + "48.55 25.27 1.027786877045*x0\n", + "55.28 24.92 -0.070015656556+(x0+(x2)**(-1))\n", + "55.5 21.71 0.002733695530+(x0/cos((x1/x2)))\n", + "59.43 21.17 0.001178251063+(x0/(log(cos((x1/x2)))+1))\n", + "\n", + "Training a NN on the data... \n", + "\n", + "NN loss: (tensor(0.0011, grad_fn=), SimpleNet(\n", + " (linear1): Linear(in_features=3, out_features=128, bias=True)\n", + " (linear2): Linear(in_features=128, out_features=128, bias=True)\n", + " (linear3): Linear(in_features=128, out_features=64, bias=True)\n", + " (linear4): Linear(in_features=64, out_features=64, bias=True)\n", + " (linear5): Linear(in_features=64, out_features=1, bias=True)\n", + ")) \n", + "\n", + "Checking for symmetries...\n", + "\n", + "Checking for separabilities...\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "identify_decompositions ./example_data/ example1.txt_train\n", + "Trying (0, 1)\n", + "(1.2505849260913413, (0, 1))\n", + "Trying (0, 2)\n", + "(3.344945844416248, (0, 2))\n", + "Trying (1, 2)\n", + "(3.0803626692984087, (1, 2))\n", + "mask [ True False True]\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/gradients_gen_sym_example1.txt_train\n", + "\n", + "Translational symmetry found for variables: 1 2\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/translated_data_divide/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/translated_data_divide/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "42.85 29.22 asin(0.004940124135*pi)\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "42.85 29.22 asin(0.004940124135*pi)\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "42.85 29.22 asin(0.004940124135*pi)\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "42.46 29.62 -0.015168260034+pi\n", + "42.85 29.22 asin(0.004940124135*pi)\n", + "44.86 25.46 0.079634299126+x0\n", + "47.41 20.87 -0.000012460217+(x0/sqrt(((x1*(-x1))+1)))\n", + "\n", + "Found pretrained NN \n", + "\n", + "NN loss after training: (tensor(0.0011, grad_fn=), SimpleNet(\n", + " (linear1): Linear(in_features=2, out_features=128, bias=True)\n", + " (linear2): Linear(in_features=128, out_features=128, bias=True)\n", + " (linear3): Linear(in_features=128, out_features=64, bias=True)\n", + " (linear4): Linear(in_features=64, out_features=64, bias=True)\n", + " (linear5): Linear(in_features=64, out_features=1, bias=True)\n", + ")) \n", + "\n", + "Checking for symmetries...\n", + "\n", + "Checking for separabilities...\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "\n", + "Multiplicative separability found for variables: (0,) [1]\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/separable_mult/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/separable_mult/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide-mult_a\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide-mult_a\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "0.0 28.5 1/(-0.000000085063*(sin((x0*sin(pi))))**(-1))\n", + "15.34 22.63 1.03*x0\n", + "48.55 18.61 1.027746588379*(x0-sin(pi))\n", + "48.55 18.61 1.027746619310*x0\n", + "56.3 18.6 -0.000296857331+(x0/cos(((pi+log(pi)))**(-1)))\n", + "\n", + "Just one variable!\n", + "Checking for symmetries...\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD \n", + "\n", + "\n", + "Checking for separabilities...\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD\n", + "example1.txt_train-translated_divide-mult_a just one variable for ADD\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/separable_mult/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/separable_mult/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "46.51 23.76 1.000000087423+sin(pi)\n", + "46.86 23.76 0.318309877326*pi\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "46.51 23.76 1.000000087423+sin(pi)\n", + "46.86 23.76 0.318309877326*pi\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_atan/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "46.51 27.72 tan(-2.356194577615+pi)\n", + "46.51 23.76 1.000000087423+sin(pi)\n", + "46.86 23.76 0.318309877326*pi\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_cos/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "4.0 30.06 acos(-666.000000000000*sin(pi))\n", + "46.51 27.72 tan(-2.356194577615+pi)\n", + "46.51 23.76 1.000000087423+sin(pi)\n", + "46.86 23.76 0.318309877326*pi\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_exp/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "4.0 30.06 acos(-666.000000000000*sin(pi))\n", + "46.51 27.72 tan(-2.356194577615+pi)\n", + "46.51 23.76 1.000000087423+sin(pi)\n", + "46.86 23.76 0.318309877326*pi\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_inverse/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_log/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sin/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_sqrt/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "46.86 22.76 (0.564189575698*sqrt(pi))**2\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_squared/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "46.86 22.76 (0.564189575698*sqrt(pi))**2\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Checking for brute force + \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide-mult_b\n", + "Checking for brute force * \n", + "\n", + "Trying to solve mysteries with brute force...\n", + "Trying to solve results/mystery_world_tan/example1.txt_train-translated_divide-mult_b\n", + "Checking polyfit \n", + "\n", + "Pareto frontier in the current branch:\n", + "\n", + "Complexity # MDL Loss # Expression\n", + "1.0 23.74 1/(-1.000000000000*cos(pi))\n", + "46.86 22.76 (0.564189575698*sqrt(pi))**2\n", + "50.3 17.4 -0.027160682219+(cos((x0+sin(pi))))**(-1)\n", + "57.63 16.45 0.358000083062*exp((cos(x0))**(-1))\n", + "57.98 16.45 0.113954962522*(pi*exp((cos(x0))**(-1)))\n", + "59.0 16.45 0.015470584975*exp((pi+(cos(x0))**(-1)))\n", + "59.52 15.44 1.797979529018+cos(((cos(((x0*x0)+1))+1)+1))\n", + "65.14 15.22 0.725878814360*(sin(sin(exp((x0*(-x0))))))**(-1)\n", + "\n", + "Just one variable!\n", + "Checking for symmetries...\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD \n", + "\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD \n", + "\n", + "\n", + "Checking for separabilities...\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD\n", + "example1.txt_train-translated_divide-mult_b just one variable for ADD\n", + "\n", + "Checking for compositionality...\n", + "\n", + "Checking for generalized symmetry...\n", + "\n" + ] + } + ], + "source": [ + "aifeynman.run_aifeynman(\"./example_data/\",\n", + " \"example1.txt\",\n", + " 60,\n", + " \"14ops.txt\",\n", + " polyfit_deg=3,\n", + " NN_epochs=500)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/AI-Feynman/example_data/example1.txt b/examples/AI-Feynman/example_data/example1.txt new file mode 100644 index 0000000..5a6e32b --- /dev/null +++ b/examples/AI-Feynman/example_data/example1.txt @@ -0,0 +1,120000 @@ +1.6821347439986711 1.1786188905177983 4.749225735259924 1.3238356535004034 3.462199507094163 +4.761603020581413 2.1416959126064974 4.74527403161547 3.1339134506962494 3.075775703161369 +2.3692689820061736 3.2019654936669633 4.798324607743694 3.6219027249651026 1.4413021636049719 +1.0228446338652124 2.084247796194443 4.600370060952684 3.5622140595215606 1.484703524717965 +4.156707961311051 4.166855405874059 1.6820090522042088 1.9569677673478751 0.2751458988693365 +1.9416540909925546 2.4032780344705826 1.8857630387095843 2.9289783410432877 1.1407869355034734 +3.4560647967533416 3.3408188075471372 3.649617704461565 4.17252697139139 0.5354584386011703 +2.1213927915037396 3.3247282912983005 1.9169916566335008 2.4896362306467505 1.332643288060478 +4.5904878361193955 4.938063746134665 1.707740917155152 3.112580705577465 1.4471986195258033 +1.5742171465084338 2.0217274033554946 3.9118206633578385 4.205105342466892 0.5350526450578698 +4.493978952384456 1.8711468016138828 4.4424521761175715 3.0645793430275874 2.96273219094862 +2.062945681409643 1.9307561227583458 2.41893080651627 3.2042022018479765 0.7963198124765141 +1.766165222681943 2.1677784722750304 1.912319339067753 4.086907994251833 2.2113636113276405 +1.8068488654622499 1.3155558437056265 1.6526429715537763 1.7618419667591638 0.5032824791115028 +4.640690212258117 4.264705736561282 1.9526760440152238 3.1230025675510222 1.2292389912691557 +2.7875298428249877 2.3171965809548736 1.0175895184818504 3.473909367279695 2.500943937160457 +2.9610045681081476 4.619299508236619 3.2495726850753206 2.5136543442066364 1.8142540927010766 +3.6153139095524427 4.353631734473936 2.8766784900769555 3.8174629890707372 1.195904964511723 +1.5249212012846933 3.6798517002978857 4.030686737593847 2.998692060480538 2.3892966473771 +3.1583548557610603 4.527164755315843 3.9851874644354432 3.360419600928439 1.5046512633797509 +2.792544762185037 3.154608384950101 3.6183536031188352 4.734119901416745 1.1730407066027946 +3.1853969093368795 2.5624577906624073 3.9536742482238116 2.7762665934110937 1.3320442677278082 +4.081326759098472 3.687106043777575 4.578175961452609 1.144792309878624 3.455941734358904 +2.743252133807689 4.949282316171532 3.3961126107596478 3.6604035589478907 2.2218053179328043 +4.069494686804793 1.9169827655855198 3.0178782379407116 4.424471472586085 2.5713444146479527 +2.461756110500852 4.212099634581749 2.0152361217930825 2.0752268009690527 1.7513712724262462 +3.5776484664191845 1.1953579954032083 3.385368746305327 4.801228555898568 2.771275318100843 +4.989581005565957 1.176034603404505 4.64492899549499 2.6834510905468805 4.288418325331401 +2.8929360372868587 3.3905175535811534 4.584226208992311 1.3909290364748599 3.2318313998978465 +4.246671666467153 1.03567158280367 1.577610461929177 2.3473312292830824 3.301967837060618 +1.842686242722146 1.500153178893029 4.640165307059022 3.096161208596502 1.5815427771278343 +2.165660024687925 2.5117604794518846 2.496983441242388 1.182316776492573 1.3594609094020402 +3.2098895508856478 1.7268522994857634 4.98017854545221 4.368023852927073 1.6044104389526606 +4.945040385654443 2.486634743202207 4.043332060623364 2.5556014361237684 2.8735171330470517 +2.938200690620971 2.109826881160462 1.0111878607530311 2.79750213574925 1.969040847025623 +1.8439164341566543 3.094779302479102 1.362931277944651 1.0449923621115844 1.2906366915398644 +2.302554610274404 1.9053369576552925 3.782319136653935 4.6423695515696295 0.9473481829553986 +3.928762287676673 3.330411034685285 1.9526769258438645 2.8200490082106144 1.0537355224275187 +1.8131805257147833 2.8532611819664635 3.2318683815060614 4.628914818138803 1.7416964481841164 +3.906569806718763 1.4754486511078873 2.2772787443140228 2.187661428261614 2.43277235609812 +1.872391747385401 3.0800832909850993 3.3356858804613587 3.1899615339074248 1.216451581305558 +2.4072505018564176 3.3773543662231704 1.8768736264934596 2.2146832431504446 1.0272374821652714 +2.165731839723298 1.32993683798583 1.966358102769672 4.2989144921753155 2.4777757353494336 +2.6412538645239185 3.061796562153317 1.3120002810350795 1.0791765198806513 0.4806901957472254 +2.8632842111431507 3.7658816625108233 4.5993455892201816 3.831129330377932 1.1852587816865146 +4.323710896822384 3.277977908126869 1.5541820931798775 3.543336652675877 2.247285772929152 +1.7267027893187614 3.847999134974399 3.6312749103732016 3.6577907357059427 2.1214620607225196 +3.5459635656870625 4.4215986592319005 3.9996412452564263 2.6793483284990227 1.584269611867579 +3.2612652556000064 2.6622036197923307 1.3522643403153292 2.054087865073091 0.9227302441125342 +3.2178543582124086 1.5232455274969197 4.296555960007047 4.367884191550431 1.6961093142112107 +3.550575379076563 2.5506124649319992 4.798571622052972 3.604545640350014 1.5574414514344355 +2.7667151656945244 4.637558234582446 4.33028043946822 3.5919622065705217 2.0112602023197192 +2.0351291076801914 3.933750448734585 2.9812138490777604 1.3033612680880071 2.533762475103213 +3.558965961626652 1.371506751852455 2.6222173262095185 3.243794576681908 2.2740571832587606 +1.2792900793734536 3.292231285958613 3.99271111660489 2.9832273939216423 2.251885806947356 +2.5870795663284216 4.427267207153873 2.3358790980546638 2.656102367085897 1.8678419353563596 +2.113932101804188 2.6634968046018184 4.1052846685006035 2.103136835099109 2.0762026176063224 +2.750986362862737 1.2573922486525206 1.8630459997240205 2.261887492837271 1.5459294662539451 +1.762849165556096 3.3396288356335333 3.6415290960622895 1.795472495387934 2.4277889325192312 +2.9463493496662836 4.131537045262354 4.584417684448695 1.676547491211294 3.1401240317081176 +1.511884266513503 3.5269528436554496 2.499588978833211 3.556656745387054 2.275498546181034 +3.1294005656999975 4.749037108006087 1.9124151856964726 1.2997602754314475 1.7316375395113932 +2.9251470287198145 4.238300599366669 2.3891121583993655 3.272290318443425 1.582522025907189 +4.612771720647396 1.1193206912851221 3.8216398162541223 2.074261324627426 3.906089052690929 +4.423367177395869 2.1593627866332277 4.223756074842468 2.786115481717115 2.68188858016032 +3.6002173892231353 3.8841975798488657 1.8527270653627395 1.2366178356258426 0.6784064649123109 +4.809494728948803 1.3198901738975328 1.433350087643455 3.6673836652194653 4.143458214628408 +3.2197359984074967 4.2588163746698395 2.0923067985290884 2.803389919119099 1.2590977852103147 +4.172244849278438 2.7286136148512763 2.1440419034978353 1.3148011657630456 1.6648457412423017 +2.221247601714786 1.9339616521081622 2.0514106629116324 4.141409001295967 2.109650746282583 +2.5239278621316235 2.483907161392582 2.7602072327739964 2.54895179624056 0.215012827414033 +2.892251616378018 1.1635549432556824 4.654294549717495 3.99818454127229 1.8490193430156965 +4.540509313677605 3.1179312590917427 4.881614686169956 1.6821810698997104 3.501443100538605 +4.8333387317337655 1.1799924211011095 3.0725727411024977 4.657105122510892 3.982170530394824 +4.155071648996287 2.5200743265461387 2.7606021968232883 2.5415522460976328 1.6496057484538744 +1.5920988264580656 2.1490524505464297 4.485153782132614 4.354000021497668 0.5721875988815658 +2.0785497695804156 4.788271638082823 2.796428075260281 2.9403227149314444 2.7135398047506643 +2.502576859613123 1.9265366996509896 4.860825474355679 3.6273559976374634 1.3613483080698743 +1.9739472683573047 3.882581801466684 4.329040415638639 1.7555666989039138 3.2040057352792144 +2.7283721252939257 2.6669453766543882 3.7553064005057593 1.650578674794097 2.1056239086854545 +2.1057318614973157 3.146157850492524 2.9113207043867115 2.232005157321511 1.2425602001758909 +4.249166068960269 4.795506606489086 1.628743373351964 4.232499844014416 2.660457806743769 +3.3573884633028657 2.159440227613539 1.3398528705105708 1.646573292558819 1.2365910369611393 +1.5656429258761664 1.6633744722833295 3.150932467439306 2.4206003741022992 0.7368421959423537 +1.3868937007894622 3.383227874347589 1.9790019834105208 1.5183705820560354 2.04878779292288 +3.995326210323715 4.841920302701609 1.994782435169066 1.7533381086115325 0.880350452987883 +1.0794493532623188 3.824244329333204 1.4998470765685137 4.602114163142447 4.142216862635743 +1.938030221941252 4.352668417452067 3.5173545666968615 2.9755740165686864 2.474672459077547 +3.517538586359539 4.786385730571919 2.1277467046660155 2.2794448006768153 1.277883166689824 +2.2984744002565063 1.7873950667240064 1.9464448527831197 2.259902232468674 0.5995478413299126 +4.544336339717083 2.6284126645723553 1.5136990723422579 3.8613111643467457 3.0301891134887553 +1.0169648535815154 2.7560329584887344 2.0622267629654187 2.98040837754811 1.9665745220721393 +3.493260582084983 1.9671920231424616 2.570327792865322 1.3403965479959283 1.9600041106331592 +2.6868390617337226 4.083702928077621 3.2197886571088423 4.162412650381835 1.6851613138780357 +3.558431863443413 2.3055380771989684 2.0764977147335197 2.3260003493823374 1.277495363712386 +2.1287795181723794 3.023067876155682 3.376504748537848 4.939064603235726 1.8003735631079252 +1.9471425084145335 2.771192846281987 1.7756338109970589 3.928579110325518 2.305261898622361 +2.1495692367404504 1.735940110014694 4.57673232048571 3.546714829941973 1.1099662541275426 +2.85221988420329 1.4866462178912845 4.592022435628402 3.5369121204184495 1.7257025280700198 +2.437771204604183 3.762346770644523 4.7906825744764525 1.9778438703060428 3.109109519754837 +4.69678450351654 3.73947575126294 3.5454275364647287 1.1571711537609608 2.5729766024327994 +1.607289228211716 1.876624583052101 4.9490533790811275 4.6726453232794904 0.3859312719630751 +4.18895691055749 4.138355556891341 1.0266155118561504 3.709280101366098 2.6831417772461115 +2.58311253663351 2.556635306948816 4.80660589063115 2.9128273105900644 1.8939636622475648 +2.5334141138237944 1.0104406482492831 4.828086195057668 4.329714718546911 1.602442605974875 +1.7886926640983107 4.469810122789714 2.1140059562573232 2.432969661312144 2.700023828124883 +1.1967438989808592 3.362449899677411 2.221142146497441 3.00400203004528 2.302857372639823 +2.866575920092398 2.2981665096835617 3.164024518506065 3.8137644981737946 0.8632793864213035 +4.890467553856389 1.427508626597536 2.9220220136690775 4.283243346870627 3.7208880727381186 +4.293837175266326 2.354815049244111 2.550107515291473 1.316125881978925 2.298372788856589 +3.9767659307366894 2.480390261818213 1.98594339190847 3.3150392057777918 2.0014084603039364 +1.3265932618019813 4.859118255650163 1.9050779676797909 3.0652218956431567 3.718153676995124 +3.5153445872291327 1.650836263896537 3.5359803738284215 4.215010253449929 1.984306645958564 +2.6925269464035644 3.054251456832793 1.95886056781971 3.0103342015144468 1.1119538766515806 +2.670822869117807 2.73319239153103 2.3250167664927055 3.7075308495696238 1.383920209850288 +4.183658149054073 4.130660498946794 1.7058420292833576 2.7875332895396303 1.0829887965402492 +2.9266605926446694 1.308057224043687 2.5247491086417297 3.6047323955380435 1.9458264991570582 +2.75575812447186 2.6319997248529163 1.3128535965857981 1.370098557808638 0.1363566172272054 +3.665482976581917 2.9480415075139628 1.32812096067144 1.4073288788029346 0.7218006344089135 +3.471271738563363 4.10976444241946 4.91913318999841 4.328514993898723 0.869771686387594 +3.521449161123523 1.3889866008295533 1.179292662699476 2.9939444518184586 2.800063871915824 +2.7486153577362953 4.928707687724241 1.1861570131641912 2.773000542968502 2.69645599915038 +4.956867631857152 3.154225281704445 1.859415368718897 1.6960908521541693 1.8100260606618839 +1.4893126754340478 1.3219465791577565 2.5640562888703595 1.673632929217125 0.906016097869634 +2.7156320070044577 2.7267839960105014 1.3447406170099145 4.7525655992957585 3.407843229485521 +2.5001875864792593 2.818543406436476 3.092075016797089 4.5405852265227225 1.4830820124929136 +4.250152356864742 2.1425366306092473 4.9845912205258305 1.6715631216972997 3.926601486423962 +2.4582608372636066 4.238950209513431 1.954469935938615 3.9201467007610975 2.652308387840006 +3.0878959243491257 2.082190761513949 2.387554403997961 2.1673868295425525 1.0295225278714921 +3.864697927600592 2.401807011005614 2.470307340076087 4.518661913118088 2.5171027572902487 +3.0470458741517583 4.224269713517048 3.913637177427155 4.187646522720199 1.2086923054598615 +4.732109923059177 3.191357713196949 3.9312832955407537 4.6701567405229865 1.7087572501368506 +1.1190881577440388 1.853066897047695 1.3471652813895298 2.7595761474327363 1.59173780638229 +4.718037512762669 2.685096871811089 4.781800351130396 2.8374934911094662 2.8130369381785707 +1.5689942370790968 2.3747642742264263 3.2382898721394597 2.413187957716085 1.1532816316709145 +3.722189885312348 2.282870526486892 4.287033321237368 2.0982423388777183 2.619627107270927 +3.8799203607790975 3.4293461611575338 1.7299224883678055 2.203905250060775 0.6539700052347257 +3.870103818463682 4.408041361771507 4.989979324154083 3.319217320354245 1.7552271858199178 +3.7196714144277863 2.8666918501356062 4.161292232905452 3.6515921654658547 0.9936640759572658 +1.5776813331023516 3.6568245791300984 2.524639541517303 3.8784731763421574 2.481068751221109 +1.6710240859651013 3.3322853292701224 3.278105761024104 1.3696209897626392 2.5302377438976498 +2.801071238357966 2.645457165014102 2.5365336116509516 3.3434837116004075 0.821817621879153 +1.9036450336857502 2.5601698021499 1.4650189919544356 2.0059300945638707 0.8506524510827324 +2.916894397676114 2.491095285259877 3.7399251765187533 1.5043075117146847 2.2758056216027 +4.40637469151871 4.9689409281812456 3.385689029663031 4.022316395580194 0.849573524579994 +4.122852169425009 4.262894742910197 2.1178544024783794 2.7614782634875916 0.6586832295183778 +1.1960403473954746 3.1887853804201516 4.69163830751633 3.1144254108172604 2.5413841284147485 +2.0772352076674823 3.4912479507716223 4.163191064944524 1.6194679118473152 2.910319487146334 +2.265964191261908 4.981401701414718 2.9145503818849736 3.142652526720313 2.7250011853251324 +1.3662952068791054 1.1333890066314196 1.2705607666403695 3.749960838252297 2.4903152437438614 +2.473888770467954 1.4376976117929936 2.8458491644570287 4.400271098550103 1.8681326683364357 +2.565056025229637 2.751003428018841 3.288687294834643 4.387447731097887 1.1143836560634965 +4.480152842365883 2.8690554932897103 4.21254445693585 4.735157015891532 1.6937409940656443 +2.511440383422503 1.424403443698512 2.499407761267124 3.4761398408478392 1.461387992152176 +1.0611344808714587 1.140000996103669 1.9365870292591132 3.4248808496978067 1.490381972240967 +2.1642038736837126 3.1581093474089608 1.6277289819909289 1.154598673938383 1.1007726282474992 +2.103745236955533 4.261946369571492 2.665582043810339 4.244490384806497 2.674094926903689 +4.250693461805323 4.720327828393232 3.916339681440198 3.3882141375614125 0.706734057745691 +1.3369321343379466 1.2205345955272713 2.1768759330289718 2.1527128341733968 0.11887910828857587 +4.536569403570972 4.823488905516033 2.500283158503353 4.757241709923232 2.275123008415967 +4.806976581012828 1.789198455380418 2.57670409654473 3.057374312178575 3.055818821812404 +4.5487228141625415 3.285260962994552 3.6849564443547695 3.318045093266013 1.3156594502053407 +3.495902601419092 2.1836951335319212 2.712658192569749 4.221889532564031 1.9999169173742686 +3.2266687613880563 2.1919483932223125 3.4403011884902233 4.310397441490311 1.3519296319638257 +3.5742614717986148 4.01815957766868 4.340337694724056 1.7203497504092273 2.6573261667981356 +4.841210907605573 3.353510631914987 2.1977962484889675 4.1723796795464825 2.4722928298437292 +2.3649792305927826 4.48741358745813 1.0135115358884037 4.5731784197919705 4.1443884860811675 +2.2736079888767518 2.4430261309519 3.1195700913820845 2.6476051024017755 0.5014513512668785 +1.2233456151079998 3.01102895795786 3.699042395095194 1.1694198918960987 3.097547698259723 +2.2205768602284226 2.0667929075886953 4.591202671129153 1.6010413340765202 2.9941132787010396 +2.143001931540441 4.682721886391725 3.5231757386440825 1.833258803284429 3.0505731752385765 +1.950015239630439 4.775064201991067 4.090356418381739 1.0793388820053371 4.128816809220418 +2.1065262061743035 3.8788127752719466 2.004571618260734 1.9348570165963515 1.7736571846580493 +3.758114780577279 2.749884682332538 3.2494561488101756 2.541600792553196 1.2319038665367914 +4.077437429168572 4.4963049584585235 1.5518559060464727 1.3205529557170341 0.47848830907825823 +1.2352037013261623 1.077297279660268 1.3971408879982898 4.452583392486842 3.0595201153511975 +2.2259542288010485 2.794114543806461 3.7816850758022884 2.3708163057193747 1.5209723304328464 +3.768343610606235 1.4036728415434312 1.0969883911908478 4.402670514445843 4.064382135831685 +2.874691587683849 2.754547505684973 4.206320783264626 3.8267494461940834 0.39813188815375283 +3.773870373637581 2.8389319099836525 3.995891221162978 4.555429799688329 1.0895840269009722 +2.329463610121417 1.1546999516467928 1.8728272672438862 4.693291011362471 3.0553371966380585 +2.591231769886982 4.416010252441071 4.30430333565139 4.719006963269063 1.8713085285841191 +4.837003728364884 3.9575314050591284 4.675347155226447 2.8962097685133124 1.9846413802652776 +3.0261628094591555 1.3685255742021538 3.2569690629663737 4.397036118714573 2.0118434569600203 +1.804388492430157 3.5169506439276783 4.461257628309199 4.8019483415633974 1.746121211382381 +2.9207631309125563 3.7038190565813736 2.663358466132547 1.5753538917773895 1.3404963769226665 +2.185200936740181 2.539447048110753 3.4534553770429226 3.5565866394965964 0.36895306573663317 +3.3189558533905283 2.0723145789375432 2.5948034530903152 4.592474739448531 2.354740969939125 +4.53152706754646 1.507158082100727 4.344344180684892 3.7411315068997717 3.083937951700884 +1.08090670568224 2.6750998507617885 4.168175267627818 3.312242159390388 1.8094400431060464 +1.0644838962510095 2.4502163954660356 2.8773989387697037 3.8809157148650164 1.7109355567307183 +4.093783272808134 3.187707350037742 4.773949344459078 2.01028230771075 2.908406620098624 +4.56377592842834 4.523555120553798 1.5091946091163502 2.33614228307623 0.8279252193608653 +3.3539035901632737 1.785130293946609 2.5450968692750666 3.5070533875713004 1.8402200949927463 +4.139269199020489 1.026650986013474 3.127038535763909 3.8000327759101884 3.184542885127008 +2.7790780642247803 1.356219078411451 1.7703052735806946 1.4384732823932782 1.461040781047929 +4.739222304782228 2.1059464554971896 3.892452278241641 1.1900273645522081 3.7732270157727292 +2.347047189540367 3.403618841172308 4.983029698022854 2.9834719988062934 2.261542537191921 +3.738464732565317 1.6535377364606756 2.532318992754101 4.225172168242856 2.6856419070397832 +1.5115856693520686 1.420732492952999 1.339397313797253 2.4180572120839163 1.0824793188941741 +3.591174612321397 3.918849393137939 2.6704301654284635 4.876914595523928 2.230682474543806 +2.9390330078781326 4.061657317769912 4.42021368745137 3.933596902021561 1.2235527111743223 +1.1270542344517018 4.527078816190645 4.075836597443706 3.5731465295918903 3.4369847920446115 +1.8633996244716062 4.8247520914220905 3.9299230803135443 3.373395836136692 3.0131928260608882 +3.08144054757807 3.8150480302052587 3.3353787478986696 2.003816407219428 1.5202757005496672 +2.2558402437231933 1.3328960567535946 3.0590657622375685 4.486419777170307 1.6997545282203494 +3.6778087263447343 3.617083116598368 2.159085914079103 3.299803790284178 1.1423330831123137 +4.552307745908122 1.786329451935016 3.848748880827666 4.34763143417157 2.810608426081674 +3.1319788935227444 4.114467213308567 4.603226707538965 1.9752712809753694 2.8056074248762273 +2.7276100706896234 2.225231020296486 3.4316384864341902 3.8060649982958474 0.6265619866053146 +2.4402383928220415 1.6461375605043664 2.1280812187894487 2.0084178280140055 0.8030662855452846 +3.091897426981662 2.200568759696021 3.0193647216107586 1.6227384453571458 1.6568137338419278 +2.887338129685677 2.3769972821838805 3.211323779649982 2.7649476499366004 0.6780113788180474 +3.9017056824156926 4.129613595382034 4.6310991371775465 4.969147877170018 0.40769960436965247 +3.2303358305533676 2.956617888354249 1.4465617528235426 4.469300713515532 3.0351066433268876 +2.942130170091403 1.0848928200048369 2.8719568975355667 4.06885300402257 2.209500139008893 +2.921063616373457 4.124706712041295 1.1909728117253535 1.8917335651770504 1.3927750483574317 +4.724714162220734 3.3101803881284932 4.071585880947465 2.7899436807968194 1.9087987131320647 +1.6799301462742648 2.4045529694671313 3.39414289390944 1.904965699450464 1.6561180369734236 +2.0589805539248514 4.4287920239681915 1.5622260324096358 1.2714579590290898 2.3875829778347835 +4.904282309499775 3.983634702796941 1.0590520918686175 1.3802844882183014 0.9750806470196285 +1.1258442685446588 2.3819114491339883 1.1482524293600664 1.502548767196787 1.305078793467329 +4.836527739792377 2.2600752352244697 4.824791609491593 2.712168759248419 3.3318587628625305 +2.948259893673951 3.690488580201643 4.978727290132703 2.0861611971424714 2.986275611095097 +3.560593928423435 2.2268385420843906 1.9022732508573674 3.884764209686211 2.3893877526317326 +2.690577489172814 2.0335178387249533 1.2341796179089295 3.402579790045772 2.265764041282709 +4.374360373508493 4.869485524368274 4.4318641042173255 2.347130624277481 2.1427231732998115 +4.458424914969697 1.9919161485233174 3.9615876081515355 1.387471337737726 3.5650722388986655 +2.438852720459948 1.7675329531154658 3.0843216089689687 4.5117598040811195 1.577418787415848 +2.5900224340087976 1.8407284405153033 4.3840949984429205 1.3876801555895177 3.088679879682841 +1.329662846799939 3.8461086289179303 1.56114703087533 1.1484670743837215 2.550059630837943 +2.4704164420765653 1.567305005176296 3.115580474956341 3.4079662940808375 0.9492627321691145 +4.344638676046351 1.4911070559450748 3.5929397300023957 1.1758682204015312 3.739635996917617 +2.153126525001631 2.2536919057838833 2.1471868206355227 1.0569461177560933 1.0948690268826275 +2.0560159029519376 3.172801985872698 4.609008852417447 3.8110590241627977 1.372565147239693 +2.552746585560781 1.8521284447001363 1.0915906778206317 1.5038733698125824 0.8129223809313876 +1.8800245445095811 3.8884656610905575 3.8135150097259047 2.225475816610585 2.560410943118974 +2.1847220333489443 4.465705218913891 4.819931531112298 4.752655677940048 2.281975094791805 +1.6100904335016328 2.0424095450686592 1.0581464724503356 1.4377554089235192 0.5753283922043172 +3.7801144435622476 1.701701880329507 2.202331749785714 3.8190485930898586 2.633167699639924 +4.328073125585146 1.1753616404784935 2.011728523151426 2.2724056641510075 3.163469974594845 +3.192584685955846 3.4398114932419492 1.8655938141428772 4.239727872501689 2.386971642332636 +4.964013321290366 1.4726134516561942 1.0739847071970354 1.804177034396424 3.5669390076622243 +4.55409160814442 2.8429349130901387 4.1632999007851925 3.3319898383074555 1.9024020750109134 +2.7025765988335118 1.7599491376173133 1.2484225583425372 2.713398811711722 1.7420395958687362 +1.0855526411388596 1.4474723226725263 3.9625534636539834 1.8422377653937874 2.1509822212584773 +1.3925251523747604 3.136000072076628 2.6792683791378895 2.157483277938181 1.8198803497657265 +2.5130665127357825 1.993352687424642 2.2867399269839517 2.0880570498444193 0.556396752226306 +3.5364335307238193 3.34177738322471 2.3938147633581406 3.4757083505605166 1.099265550169212 +4.117425380341285 4.904932660583663 2.62208743168513 3.5483332849222564 1.215770988744887 +1.5852485367369593 4.249070824363696 1.0579237963632262 4.225238593177122 4.138578524345429 +4.861987560778282 3.0031411827558636 2.541246938575787 2.3288833643685356 1.8709377714764168 +1.00213718586439 2.31651441177667 3.9785573377241534 1.4193633739361817 2.8769882231746537 +3.867134151060534 3.3357689755263893 4.158327823736611 2.9092951258746806 1.3573620114393525 +3.6083351024701327 1.0912405861656769 1.7038374468051218 4.900593534673137 4.068785357982303 +2.979031711587049 2.595127504819525 4.741449865583126 3.4595697847626923 1.33813264722822 +1.9838348992868413 1.6558264977695019 4.389984113034046 2.6416211510210488 1.7788655256665193 +2.834207014243678 2.9930329370623068 3.4993492353602806 4.70773671164448 1.218780524376594 +3.2683158430188364 2.2820357222058156 3.8780491084187867 1.5236819154351156 2.5526052096062086 +1.4296403230141355 2.000430598457762 4.549304158737868 2.8548325926490867 1.7880255666025526 +1.5004458113678267 2.972141589012729 3.4725307715835623 2.336254853034588 1.8593040162953849 +1.8708452455707616 4.171541209283786 3.479031248532734 2.3165877321140846 2.5776882756278265 +1.5016111909309453 2.5575801979626194 3.3100054813375297 3.769019154870925 1.1514182977102987 +1.5254862337209922 2.376643136866956 2.974703086495004 2.435497921213366 1.0075764407921743 +2.789979417452072 4.33536972646284 1.8290782425642638 1.5094868387631126 1.5780905780619783 +2.69442888086033 2.242364434855563 2.1111246535195396 2.965835511718174 0.9668986060928222 +1.6287172018812548 4.281023003998772 4.975033034793703 4.357063716867277 2.723345763182615 +3.4783445991298776 3.9979404384662867 1.2159451549848241 4.78287257551921 3.604573630766307 +2.7166817801031677 1.5917795873651297 3.3307134326051404 2.592686913439923 1.3453951412941751 +1.456497889610569 1.7319984247775277 1.632879091036049 2.354533399195694 0.7724541962878164 +3.85159029247056 1.2040302492426496 1.8393914247235608 1.1394354864718474 2.738523780797021 +2.5095325767296117 4.4141884883595 3.1625436699651885 1.7773440000686134 2.3550992053814337 +1.6577784868367322 4.679525467123507 1.2591735172359542 1.4972773438920672 3.0311133672531163 +1.7754869945613487 1.7115980297706517 4.691087085510574 3.9249288311760777 0.7688174494032441 +1.0866078341554304 1.6696788453947589 2.8508224709957157 2.7389769504232935 0.5937012924188133 +3.558233277307342 1.6963061039483054 2.625248395099023 4.7755756375356 2.8444120743059833 +4.9165622650145595 4.983138865367351 3.9494618653159206 2.0237265145374925 1.9268858515626324 +1.8383963322978603 1.8656577949461912 4.414751202543673 3.1705356778337315 1.2445141458717783 +2.473559738665116 4.489376498480947 4.960175172403163 2.772010825928201 2.9751605698413313 +4.008707350004273 4.8813450949521 2.422390942024917 3.6305471116941206 1.4903482694381844 +3.6480001625804186 2.0302894779309564 1.8480199398958268 2.0705948501506284 1.6329505350450653 +4.6810978484613965 1.4685579516587501 3.520109324499038 3.5957458471068713 3.2134301722771204 +1.889081687856613 1.3438286276013032 1.1531719431076866 1.311176467834383 0.5676850619418216 +2.6002977261207856 1.7135615831634126 3.9408358068862137 3.078412936437138 1.2369616787518283 +3.307664258694769 1.715343613153486 2.220630786945249 2.5283584490183943 1.621783386344185 +1.1305086385450873 1.8762366307617278 2.474040893801029 3.7636153224514652 1.4896685689792077 +4.565057362016075 1.689373851033304 4.241113270101819 4.582989463212035 2.8959342165791218 +2.783733581621525 3.8207990003999246 1.5634384142613729 1.610788284800793 1.0381457956694318 +4.11902201492674 3.027490127631743 2.807621182180599 3.4594640145108984 1.2713539786551047 +3.6427334790006163 2.209819095319177 4.827140952844471 2.807731290302589 2.4761379234866294 +1.803776763939641 3.1591889180161297 2.3070927571810853 1.2505840243039028 1.718532167305581 +1.8785508679181104 1.6669715537679464 2.1765842258046972 3.1534194997665246 0.9994863473966675 +1.2163532608313017 2.700095752495729 2.600877746249378 4.966949852938095 2.7928102326547264 +2.121422065475513 2.8517864850253973 1.2532221511763622 3.7340582447002926 2.586112895500797 +3.518030962663459 2.013472970149289 1.9411054320824674 3.28363695237657 2.0164537276668324 +4.147350777841636 1.125053872463175 3.4422329857696194 4.353121721460964 3.1565799329447684 +3.515146261977811 4.766473675280234 1.5045098043844907 2.595010013142936 1.659822581056284 +2.8989594150708817 3.64164661479347 3.3505601723560736 4.87483892388876 1.695585441375876 +4.4532581497078265 1.8974856763730537 1.4249948904601566 2.9656919537017483 2.9842453612491395 +3.506997358586403 3.15024710241285 1.5930943901456875 2.3124101486747644 0.8029233498586006 +1.879415124455826 3.781524116562201 1.6592534899269746 3.9471539561351143 2.9753163127854747 +4.188265830112481 2.5353243011976896 4.875795922967701 2.5997231140962618 2.812956297082322 +2.424801158533637 2.994081742642399 4.465381042789229 3.7604514914868714 0.9060938448872482 +1.3661342940927832 3.839545351150681 1.4794232186200285 1.133884077819109 2.4974305906274363 +2.8929857848343827 1.9752853510853439 3.277285827761376 4.261487741552194 1.3456699049962746 +3.4932725181918185 1.9548257820856962 4.847779942714612 3.6244067336469574 1.96556871375693 +1.0675615879934663 3.2071727916470176 4.563358700737007 4.5639598773703 2.139611288111264 +1.0762774580834917 2.879896752126768 4.599170387941726 4.614884141600622 1.8036877445664532 +3.952851466075384 1.3316510663883836 1.0415480892453846 3.681016633800902 3.7198771126231187 +3.503551175785932 2.995213500314246 4.603766180608384 3.9600052006335438 0.8202654397462587 +1.9929227209944504 4.930504233915798 2.643178712058895 3.2517973468717725 2.9999669644345692 +2.1231202830927773 1.9676445649214536 4.697064680785134 3.2222059758259474 1.4830309836732267 +1.7409848786815534 4.519202656576928 2.1691081029226615 1.8531475186114377 2.796126805467199 +4.796294219529287 3.1274021545007025 2.6375251439042264 2.1679399007457287 1.733698654699714 +4.890889760568218 4.432086820530657 2.854874276732801 3.9302468349808435 1.1691562243002642 +3.689114240059716 3.195727548823327 1.1341372547817157 1.6809453002882826 0.7364981097870542 +3.4893982063295423 1.7838043419305163 3.473098199972027 3.6249395294067615 1.7123393996518654 +4.791198009654112 4.469020378232681 4.775826682802135 1.19110701745783 3.599168446362925 +2.8760053903905587 2.1751747402262787 4.9243592722268 1.8978732366169893 3.1065706693958974 +3.1768360653599026 2.8124026832631284 2.139916747028954 1.6657836910879804 0.59800823131661 +4.808178421690128 3.9934560291704897 4.260978510025269 2.2692795038437574 2.1518916116053206 +3.608125693974175 3.2077636852442706 1.6733524089269696 2.7256663512647945 1.1259015815215907 +1.441831690913324 4.588558366810999 1.3707500779093107 3.4645888926100987 3.7796891082142765 +4.715775128011115 3.8734266840563523 2.8449041217241184 4.655135722228039 1.996619480145377 +2.8322782683279115 1.4614664021715082 3.145997761594329 4.944761766623278 2.261565192114299 +1.987880967667989 4.460296303611814 1.0592185942512442 4.447907917663111 4.194764942641696 +4.203841355771894 1.9223515069636012 4.3860425853993075 4.824798974655161 2.323295740823394 +3.539952403806394 2.4462805744752756 2.7412079848135136 3.09379746712551 1.1491028732491781 +3.828224791062599 3.2988843221157835 4.71015767863216 1.8027847849402074 2.955168095902423 +1.1790156636453153 3.0988059309359888 1.9103059436329963 1.9722712537500575 1.9207900379900713 +4.930108216425486 2.3028984299549204 3.4307019722192664 3.9915962399637 2.6864165056288796 +3.1382084775937193 2.7456394468266145 2.646106112774057 1.2970491409420428 1.4050142907337233 +2.494590801047477 3.0507891225910977 4.372055029867607 1.0765897123921064 3.3420724455899875 +3.5702674316821463 3.26872802077166 2.521560130641753 4.873912765105823 2.3716005003377556 +2.5786482152335775 1.7953416492295258 3.015415411185637 3.970419528803021 1.2351526387500527 +2.100436838628793 1.955688006668891 3.2587289051553063 1.0622828348226632 2.2012104770406364 +2.567100497789316 2.0272380902197336 4.937155362364784 2.2153097864737608 2.7748684217642396 +3.3368598347114515 3.511705673983554 3.1235931164930006 1.6454066806247103 1.4884912518035722 +2.227121432902608 3.6662272689655753 4.506900829143684 1.1609002888673166 3.6423543516412895 +2.6680994205358557 1.5432332304272354 3.4658220320047235 2.179214874293651 1.7090002703109346 +1.248333386725022 2.388361060815422 3.7993286209787605 3.7557672536789637 1.1408596278302583 +3.2880897462314262 3.7342252408434593 3.198104546455834 4.058296022950992 0.9690027119609327 +2.3419998049022275 2.844567098113496 4.968113189074887 2.8451649090939397 2.1816240014447414 +2.0636854730705663 3.002750089163307 2.8406269491787395 2.10997912723483 1.189827127320934 +2.7102456558203762 3.7960462628095217 1.9043577921561718 1.8710943162194824 1.0863100004001562 +1.5314387811162034 1.786518043760673 3.075509320872855 2.0032775942134675 1.1021553002577347 +1.1035763273862909 2.113479499121593 1.9979080954526678 2.5402763483001687 1.1463279364901973 +2.859204444900897 4.616709560614112 2.5026947956513226 2.4148037999499916 1.759701411854719 +2.7021936928568855 2.848545284859774 4.643884764192308 3.98187100923003 0.6779977877847644 +4.9243077712074665 3.461169383662776 4.105758166658816 3.1989713702789206 1.7213472151764708 +3.769864214088401 3.297902700018584 2.9781477331140302 1.9418464641808417 1.1387133048997058 +4.726268038575372 1.7026817526256162 3.6700558123180778 2.880263795965398 3.1250352730293898 +1.2696619589789266 2.96081915360394 4.527009433792301 3.792914292610713 1.843612847980389 +2.277259982885504 1.082988166925555 3.3525296519121963 2.376854471842616 1.5421501961223112 +4.146657737453606 3.8367815852754155 3.0847682908429284 3.5252376676124433 0.5385503704951711 +4.373872015873623 3.2977616070449196 2.692269931651997 4.740525226973125 2.3137336421465022 +4.155679109473564 1.0612115281091765 3.500013973253034 3.0421200074174912 3.128161839813241 +3.3185110147485686 1.4988830611789727 2.478786459872343 3.8979360876313844 2.3076029891167376 +2.3206882991522706 3.4385937145311387 3.702825089199586 3.9272257833091877 1.1402053276714115 +3.936389718589511 4.231709109834587 1.0712050796120511 2.450294962171526 1.4103554328690582 +3.711310217608323 2.122184306812246 1.0013056285141686 3.82008959344903 3.235871474786562 +2.972712866722588 2.7227582541987108 2.1542513921915396 3.8033106601092705 1.6678950139104451 +3.7120922451949667 4.977218690816278 2.4478523010850073 3.2691524288121716 1.5083364423148664 +2.4995948280536657 3.742032220803067 4.633938259325133 1.125704540662881 3.7217407888863914 +4.367652253184923 1.979120507407632 3.8618739460106233 1.7838580722837056 3.165949126572782 +3.253884840917512 3.922840475274265 4.5612435211949265 1.5148821816751417 3.1189451825350227 +3.663492534897675 3.2574738792654867 4.343850157498104 4.789189123727288 0.602642467441059 +4.492382649962784 3.5914192028536296 1.6292637266147834 1.350329932690515 0.9431538551158006 +3.6619154116943373 3.9630611784966194 3.777713512983578 4.598377397783448 0.8741727430420997 +2.902892995738023 1.5169709978830208 1.3113965437910218 3.3281035239985886 2.447015902718314 +4.345510887677062 1.7053658975306796 3.519884215593768 1.5044214712813178 3.3215140587850165 +1.128225241020374 4.668858787916093 4.226512943502259 1.0938236485079558 4.727560484264085 +2.4653867427944944 2.3507189812108806 3.452396894407569 4.6178962654069196 1.1711265855348336 +3.5940941046800465 2.5404157505816447 1.4626822317907093 1.8446807428420797 1.1207858565939264 +1.7130448848609845 2.355440363951809 2.5170829152660747 4.359671530312471 1.9513597197479828 +3.9190177374988058 4.171231867230526 2.7317730637893245 1.4064083200763964 1.349149239748355 +3.480013781053476 3.837105316450036 4.2764133288567505 4.367829686911923 0.3686072641334463 +1.821329265930848 1.1051576666926088 1.2770321333922263 2.5608388948408876 1.470054951454794 +4.956289423419335 4.918117161751122 1.0664646001901548 2.997969397472798 1.9318819589940612 +2.6832161751852857 4.1652825642148645 3.086353377082843 1.152986818896319 2.4360679444147655 +4.495869520166572 4.120809806523937 4.076394775727971 4.885680547238801 0.8919715515461094 +3.0457256739292102 1.773501148700873 2.2421186462692924 4.8291846990676355 2.8829613254662414 +3.4637279869535385 1.0697217216259882 4.854961013227724 3.504834281944418 2.7484737926626317 +2.495659675373008 4.444537386105379 4.08166668413619 3.7017538187832635 1.9855624182206204 +3.483541468052705 3.8340217696251258 4.6205672582914445 3.336139655306283 1.3313867616513626 +3.2794898488751754 4.036912244691516 1.2982734069343658 4.2449346541771344 3.0424498667498985 +4.7105022084641135 1.3281650889578498 4.424277561301141 1.42305210189312 4.521897682189284 +3.0483708563689516 3.3023875946816528 2.968890319445651 2.583978580611234 0.46117409948473664 +1.7552406305775392 4.51047959337833 4.847175539255112 1.4638446893624018 4.363286534479635 +1.278970713582202 4.8261114138892225 3.2951580246188845 3.6839068220787703 3.568379572761436 +2.041927523878701 2.4067147951227743 4.580212907893937 1.9069192773069616 2.6980675656103554 +4.163543269266109 3.3509559867691756 1.4599472365449202 1.008146486377556 0.9297429803593806 +4.098914826824929 3.8088007015175744 4.7273428298598725 4.537324259790378 0.34680435792260034 +2.2386589739860625 4.811524949496416 4.935273803566585 4.761899286538304 2.578700845599123 +2.7665623443116445 1.2362577910627741 4.535241228937696 3.1019129213647405 2.0967265112513314 +3.5633955459732922 3.8361252621894213 2.6547688769048503 4.68500102519945 2.0484687144489753 +3.3114742786144946 3.2243575583552646 4.108441253002074 1.5931719930878394 2.5167774579446287 +1.1859664057817958 1.4269693574659645 3.6353781402835663 2.7798156638286162 0.8888585792116814 +2.493738702832085 4.22189429350421 4.258751904168706 3.6203784933905485 1.8422926904159014 +4.311619203155994 2.8019236167880464 1.3719154595241387 4.725436755239869 3.6776739719988463 +3.576692187023824 2.1509346318355043 4.462859770737017 2.739274513494774 2.236857336791818 +1.1791444161282008 3.5798200715540003 1.0276468451603233 4.264284040810386 4.02977219440747 +1.8369251198587842 4.432179173537324 3.7705848634825156 2.8358594067940865 2.758451609602076 +4.039764332334777 1.8121792859197754 2.8900074633033905 2.619980758819688 2.2438916106055693 +4.964396909964311 2.706513980857913 1.9914345147131098 1.8027323556243156 2.2657545821193565 +1.4533210477525542 4.62438807466596 4.572594889544231 4.186367616810266 3.1945011496915985 +1.8117073756846116 3.0682973028096368 3.300160614900007 4.249759852397542 1.5750418904930674 +2.6203987541041283 4.099944448609552 1.853544472568236 2.708465546521167 1.7087848035426725 +1.968702779116347 4.990816630271325 1.4059353607625233 4.883602348195753 4.6073137298023985 +1.325706997940077 3.594295313842293 2.668769011460234 4.316130795025918 2.803621549532098 +4.56361027451407 1.3074623799436083 3.6792849800738163 4.590277785278196 3.381184260351659 +3.1357508378925214 2.1890658500602043 1.2349294335007297 2.558048371635687 1.6269161596832369 +4.546029238863122 3.6592289829670297 1.2455964659691774 2.24351268458078 1.335009915028894 +1.7736598762862363 1.824031471018487 4.754195960416579 4.55917768876442 0.20141852902368643 +1.766807673211265 3.741302769888265 1.0183753891289098 4.741865118560912 4.214618209516387 +4.883320048736432 4.4142498325463135 2.308561479143188 4.20885674636509 1.9573321052755979 +4.1996368307894585 4.349893517950074 2.0313590380760824 4.432419423609829 2.405757271009681 +2.5299125669826146 1.467895337328533 2.746915835713686 3.2382171682595353 1.1701528085867494 +1.0985209480298206 2.316650916476982 3.301987649781154 2.6574767952456932 1.3781273024082763 +2.097162612830845 2.156932934603029 2.7486898587743758 1.2715782239377913 1.4783204230255218 +3.886476684089984 3.076706649492778 4.956498777384365 1.1932551067496746 3.8493805259422738 +3.18898399571118 3.192671250149422 2.9125584699459335 2.9906973258763907 0.0782258055338076 +4.655238208435762 2.1350008218499257 2.316521161810984 4.787802810939191 3.52970671218769 +1.031388839417625 1.7830546622050307 2.7864426414199044 4.724372275563978 2.0785987530161876 +3.636929058399497 3.895701320497557 1.5383353758912657 3.490003565250408 1.9687487917425475 +2.4087151934533786 1.532602316348473 4.298774457031461 3.2671389638420982 1.3534568941185738 +1.7158759732201792 2.2898312729688337 3.833027673522767 4.738880763134615 1.0723779679147176 +2.0505663278188515 1.218686366158384 3.0195909284674345 4.449624098941989 1.6543938887912173 +2.4053751754276744 1.1290645899300613 4.793098290594427 4.227515986179882 1.396012913163817 +3.242360748334085 3.3133619378523873 1.5627916866542644 1.191500035974216 0.37801938942034297 +1.6683320866004658 1.2896851300298562 1.7104390032961851 1.1392563396658062 0.6852905609681778 +4.325643574178653 3.274597686343195 2.386612423768925 2.4570223152596937 1.053401638101806 +1.5633229926259147 1.1963119476664872 2.7382259899282264 2.0186260553433333 0.8077878267074798 +4.777131891408997 4.858098493040771 4.848729746561547 1.5842582554882036 3.265475418160489 +4.450931717238053 3.5132233959814 2.642132552710579 1.3636656509095162 1.5854887305669434 +1.6052545845476534 4.635465571100298 1.889271654175999 2.6715745912273685 3.1295649071945366 +3.007722757172402 2.5509374966485203 2.543677275231413 4.6522610626421805 2.157493537131318 +1.1470570018911341 4.738041724772961 4.4444983125082995 3.2429772336003633 3.786663991302999 +2.6124942989296476 4.5609499518463945 2.158432965901654 1.0638570443477144 2.234854778152013 +4.542010079063924 2.0547627580264862 1.2439613331566797 3.1327166702989495 3.1231067800495262 +3.659119856739443 3.6251998969497885 3.648298634624478 2.0930988692365373 1.5555696300503032 +4.334558446358601 2.3756382662935955 2.5698129909543828 4.995073536190528 3.1175722901233645 +4.477184191479092 3.7034967188137173 1.8415631972298248 3.9623764964931265 2.257529923542859 +4.128972305190619 3.3520236103912966 2.809091215890488 3.9827038882780204 1.40748569411521 +3.0526081522822475 4.551627939682101 4.1395509234779215 3.4900227239199233 1.6336912820473017 +4.506542094247813 3.951838392068062 4.352308512381578 2.7840919534440385 1.6634300024160376 +2.0595092138921864 3.3734768794708216 1.1967342657776094 1.9710552258508334 1.5251504763120547 +4.04639313510812 1.4647373286016916 1.217938608855266 1.2561348882296755 2.581938353064691 +4.257796041826395 3.078694519839752 1.9960493266382295 3.910148993663792 2.2481232026867626 +3.213595817860781 4.415135552739033 3.5962826014116365 4.831252711980576 1.7230347960763757 +2.509910602707175 4.89887261506151 2.3489090350001853 4.920483944660915 3.5100052724274735 +4.843992508371844 1.9399547596575308 2.5656256790735004 4.178536625427682 3.321884550496426 +2.015118911366121 2.7131505396793436 2.1643853571968985 2.224407230154301 0.7006074359860333 +1.2019248192366563 1.3931395035943703 2.6793259099038527 2.6259132131535217 0.19853456043763018 +2.3275647499133765 2.7048014014461743 4.277407265971405 1.1865440947522852 3.1137987466209807 +4.083860441133537 1.5680754294287023 3.160938764010243 4.147586353005652 2.7023411498160534 +3.344574265780826 2.2461261997284048 4.65371769940362 3.71161437236498 1.4471167308242892 +4.875471389411259 1.8348645481618364 4.006492442411293 4.636764973926817 3.1052428934039566 +1.8085688744056978 4.725857592378836 3.9041713105144074 4.280216922604472 2.9414254650399605 +4.349850305588427 4.355182681119594 1.90298183309255 3.9035388652834375 2.0005641387561703 +4.594730261995998 4.6468738695763285 4.650745313316577 4.122356893259949 0.5309550623748033 +1.9942577822677818 1.7009936585038248 4.270380338149209 4.27059175754091 0.2932641999719719 +4.351435351994793 3.237177369490748 3.5241573492974587 4.7655971000633315 1.6681557200560193 +1.1291653040863707 4.726756727667204 3.0310648632309025 3.0681056058451808 3.597782103968469 +1.6961727497611876 1.2633104317995887 2.298825792504856 3.725696995429897 1.491083906441164 +3.594237744258866 1.1252778898096039 3.6894645289676795 2.332993173428293 2.817051171221599 +2.659964946232659 3.9859154500437644 3.9297337095097906 3.8691176959424864 1.3273353154563907 +2.8606020412313136 1.7137387949542404 3.1695656232664144 1.8104267232079483 1.7783570663152335 +3.0920735509439674 3.6431090176308945 4.98176507944523 2.846386879010305 2.2053299400406234 +1.150707520407372 4.584739197522838 3.8991001995129664 1.0897136932857658 4.436803590514678 +4.000239557718203 4.952772838658399 2.8377622123219743 4.971958507874591 2.3371164881642525 +2.657085697289654 2.1826586683736853 4.220650394528654 1.4681302448944775 2.7931072625139524 +2.2170663036821985 1.885777915993009 4.091836349251099 2.085950248343538 2.0330595283050226 +3.3101009042702434 4.481541826704717 1.3342104468940295 3.303254017183689 2.291158313267152 +4.629826598186746 1.6195796470488109 3.8325215597804854 2.041485264490707 3.502770006420714 +3.690093601600112 4.7220166033449145 1.5741259379413397 1.7887145655271657 1.0539987479210646 +1.0179152572296646 1.9112032166988002 3.8803756663464672 4.850968831842893 1.3190960812014054 +4.349592022226375 4.340070011162213 3.3677197505386123 2.6956514746676903 0.6721357274589855 +1.2392506674320969 3.498718547173759 3.913066304383347 3.5584320859253156 2.2871293204551466 +2.228771349986834 4.276899383912744 2.9057399229015926 4.222964404183971 2.435140401997972 +4.73717107955767 1.1393105491406015 4.245016446871036 1.8666504174674978 4.312913790716636 +1.090001786897171 2.2456939505793496 2.1889987888671527 4.966884294970683 3.0086994303546613 +2.924626693198265 3.1062712157183707 1.9394661616253304 2.977768571642845 1.0540714526111292 +1.7430468825434682 2.8611291165407264 3.2158816432813166 4.344851190606277 1.588924202335475 +2.0957119173541274 1.6875707883514792 3.321215250859544 4.939449762581614 1.668910457787332 +4.996414510661539 2.7292076868846435 3.8482554084642104 1.8090022355691948 3.0493901496763103 +4.269936244864598 2.9735570705267143 2.017281936968319 3.7004221941942816 2.1245140830673854 +4.1641011917459565 3.517787852112052 3.852628080351878 1.7914709943196603 2.1601132994103702 +2.816221990830705 1.4607621097044698 2.1229686731360173 2.2581238631505145 1.3621814911129144 +4.841255564517386 4.345615344674494 3.953886949268739 2.1340660755866483 1.8861090211901745 +1.0292637083767997 4.296874203679435 3.551753793527475 4.40268055635419 3.376589211720414 +4.548072865347092 2.8680179876050063 4.138620311304422 4.355638713115171 1.694013393969914 +3.746694827774045 4.505206888756518 3.7047746937613972 4.298518428499108 0.96326121545309 +2.699150469232029 2.219890404050719 4.286178538863871 3.9431742768697076 0.5893573905736269 +2.3328009300120116 2.957309690363816 1.008094947931661 4.192908061803364 3.2454654153210942 +1.044739061182423 2.3069718891158213 2.4424311481740784 1.8245061940765512 1.4053693325276366 +3.5613375373114398 2.2006775775085656 2.727752215111524 4.367045926362653 2.130417658103279 +1.6140906728655584 3.1060112671378803 3.9036923233180314 4.6675638885128 1.6761046589419717 +3.400193920745134 4.9242135439896915 3.1692915358658813 3.2774284014597224 1.5278512341635042 +3.3179705512867623 2.4898072899529113 4.190611295021016 1.5201271622219545 2.7959506238406067 +3.3778370329980296 4.288258383638896 1.1352710936062134 2.144893294115819 1.359486676457183 +2.586398275294142 2.7297763117370843 3.459229540849169 2.6645192638321187 0.8075405164638804 +1.5156594586632366 1.044070021444111 1.3802174059142307 1.527742697716088 0.494125802825429 +4.006631678541303 4.424432005494555 3.799024339850495 2.1327607202906194 1.7178450346498149 +1.5638058767697696 4.544284106027318 4.881438999609653 2.166549107971366 4.031609802398783 +4.600770509871818 2.8939643870622196 3.0607243695710378 1.5890712874677133 2.2536525763578887 +2.271610872375731 4.1887953606400945 3.4467164123547582 2.986446515013709 1.9716604019049093 +1.4305215144773098 1.722027773428116 4.971254293185452 4.900940822607298 0.29986644219091835 +3.661556194300157 1.3852823881049114 4.243978329996153 1.3893177757427848 3.6510970023789753 +2.7878483058918766 1.0670190609110004 4.340701115465339 1.7352326004782586 3.1224540786007458 +1.0072050330334408 3.4652417223431065 1.1362492951340766 1.7555684119768133 2.5348571033648604 +4.080915389475104 1.2555865137942788 1.5012049469993216 2.1569220363630572 2.9004220653276525 +3.9597707555367077 2.03733249264043 3.5578242196458185 4.517278234122283 2.1485625149254237 +2.7576961390789356 4.135051889075905 3.503157371381333 1.4170331535833718 2.4998046151915294 +2.208456101625131 2.9550119731430775 1.7722291757622801 3.5083734014365597 1.8898524920321333 +3.496329309170655 1.720813156060625 2.2685072370897648 1.4011737119923646 1.976037715660438 +3.5571020329856893 3.8198187541668394 3.5545178712921053 1.233438937743105 2.3358997177432808 +3.6454669426314092 4.650496700009516 3.3730502574723897 2.975614288187346 1.080759067922651 +1.1376641098624014 2.1411312642796645 3.917221819567697 3.653831820453622 1.0374587324937756 +4.139775150966399 4.1378990910666 2.0351928383015396 3.057733942641805 1.0225428253457929 +3.328300456162225 1.7967774079245946 4.614031190281339 1.7391567429170043 3.2573710159254916 +1.9381131850984712 3.705481728753968 2.1489567328543138 1.773081797350708 1.8068961055475192 +4.275198441202278 2.226145616840629 2.234890216430277 1.1659144973729418 2.311131014234934 +1.5764320858967307 2.051496694511275 2.364146638967665 3.278572311640147 1.0304662503937776 +4.290751899462222 4.508697581666767 3.36406282518534 2.6974707401541047 0.701316852940163 +4.022886641554869 3.64586427917623 1.2264202249379603 3.2290943682693025 2.037854162127775 +3.2361172098376265 3.1794877608352965 1.07953705950744 3.63347828232917 2.5545689781492418 +4.038331036224392 1.3922317056117306 3.958357631258429 3.3673356020136334 2.711300187460144 +3.3607390851064647 4.245238082609333 3.899076322527655 1.9760078940956136 2.1167264010768276 +3.614342028443168 3.4861244164365504 3.6030888670303844 4.605572210672145 1.0106495981831902 +4.978704477035169 1.3408730063395349 4.746574995875378 2.601531088693532 4.223154173472893 +1.0610789842867288 4.417578180533702 2.803373100629423 3.9469876487161466 3.5459753367729703 +1.7370897221032533 2.976807241368855 2.564110854681347 1.7113586921597812 1.504687933845176 +3.8624823356181825 2.53767274260211 2.7896445258385354 3.3743974320913783 1.4481216865714557 +1.7309166928293616 3.31623104038822 1.0631050051551916 1.9226783202120763 1.8033546141937395 +1.0565177206883276 4.375085753363924 2.5262349739956833 4.489192896327168 3.8556578676459763 +2.336728409999389 3.0951313691003417 2.648456389330052 2.3141324632214806 0.8288229822716857 +2.708042510454847 1.5736574206960365 1.9610649788767889 1.616868876906885 1.1854537057508325 +3.418597958534077 1.48652826442961 3.049543940323819 2.1476308417185948 2.1322149376440938 +3.4386150731798066 1.7118087115091414 2.619522927571347 3.7684925654978656 2.0741242584723016 +3.8804441013144793 4.51564674498222 2.1125301492634123 2.720671277674535 0.8793850297723068 +2.81709994215289 3.3161152533868665 4.715947713896783 4.890844848651978 0.5287771634550033 +2.27695448534013 1.1888634051071425 4.236194706937156 3.9267167286717894 1.1312465769732998 +3.6218032593398695 3.425247202080623 3.889605360884345 1.4555306205974645 2.441997978080233 +4.320552182132163 4.929288691949362 1.7666839757513784 1.6384804374011388 0.6220902552121732 +3.701681509375165 3.001359080599851 1.1859824517066917 3.046112627368542 1.987595475607031 +4.988897260006164 3.0548539314688647 1.0539876946558873 1.2568161763414603 1.9446498372824117 +3.250550894987939 1.2339157247368724 2.707912616655498 1.8808786306495802 2.1796335985441186 +1.5627619206095122 4.919247102458366 1.6509707218672922 4.735956563264187 4.558851874934108 +2.8023371415460208 3.321623104117798 1.3881953421433946 3.895541694934995 2.5605553389414255 +4.071916818013349 4.9136336938488485 4.698282795724621 3.3872593530819515 1.5579697578017715 +3.9599821582774153 1.8722047345155457 1.147751470144132 4.12599423674753 3.6371341119066827 +2.092591379754803 3.7760799100746394 4.144457472094928 3.065399819273569 1.9996247272502865 +2.5693869008203194 3.6293759998158217 2.8021472534101446 3.7674432986451976 1.4336573317692516 +3.0990095886562474 2.177285722697478 3.900239090913856 4.627308538664837 1.17396970443487 +1.6890333560671493 3.6751484581768046 4.597812895311122 3.5691994160009695 2.236671385931913 +3.0726672179781147 4.023636250777812 4.3156264965049775 1.0214843807635003 3.4286607268794804 +2.202905564129708 4.358320942110065 2.3707189643711164 4.464953535423984 3.0052676902777216 +2.8198174133598783 2.233295001592794 2.2238977452402326 2.5028265627631896 0.6494688789694486 +1.6013193699335524 2.1664203215788556 1.5663690150193768 4.567249493578039 3.0536245237659614 +1.3577893071964975 3.4424617148963677 1.2874606399857664 1.3236819199135028 2.0849870571648106 +3.811517634013143 3.370168821868569 4.722996632662769 3.290145919278922 1.499283142313694 +2.7259900173880793 1.9333199207697138 2.610426147867828 1.4594917875744633 1.3974890996987654 +1.7736735762154718 2.0480829923672865 4.325415644174171 3.491778432142369 0.8776397489613469 +3.258116147694533 2.0635036325667278 4.1241020557742605 1.0642803677473256 3.2847538452401546 +1.8581647370672125 4.57623398036846 4.865469104716278 1.0497076362436464 4.6848624308148725 +3.6505018855382896 3.428322842090641 2.826854956110545 4.922261722334085 2.1071528286488155 +4.527546099306278 4.995827598068191 3.4801950015307437 2.452112321562832 1.1297086168267934 +2.444200775369263 2.221198590008096 3.4054234185414174 4.655167510679039 1.2694842537458844 +3.455966543391113 3.8139131941635847 2.6489837093687467 1.0962616898279287 1.5934464141495772 +4.4830868110974915 1.7056705451940912 4.733861323941122 1.4152695724528077 4.327481060287967 +2.437182126772143 4.579447293647052 1.0955383668129248 2.8792941422027463 2.7876665351942873 +4.494798239759318 2.4482230467226973 4.668571531307795 4.691061603982637 2.046698762427387 +4.600512174597375 2.302297719434067 3.999617649411866 3.9746282433221936 2.298350311057541 +1.5442305202053017 2.333907048987815 1.1012306607639588 1.6917451943336475 0.9860509289418202 +1.4746263102757564 1.3301084431604675 4.883642466959127 4.931006839412558 0.1520815494840173 +4.294978016489107 4.047269774205311 2.7960988127752358 4.851047812939199 2.0698248154300884 +3.747020780278403 4.117717318183887 1.3010371174137698 2.685944552596075 1.4336612316856248 +4.6170278501577275 4.017772498449924 3.542851838944392 3.435945696804127 0.6087166005439296 +1.4948735895455085 4.924215323099711 1.3244568826013916 2.7888441942081372 3.7289160521378557 +1.7991406429191525 2.539547916424735 2.7833582104991583 4.182248317224949 1.582749652141887 +1.7338813344686272 4.988263173370942 4.571540879590897 1.45095525647471 4.508775419620792 +4.635225388483761 1.6302887912659316 4.935571118688025 4.3158362246597175 3.068177845590986 +3.559663560532743 3.311077381068416 1.099240467733646 3.6897690063044792 2.602428327115006 +4.8725063950280525 2.3579700047351895 2.811042206876002 1.2969094657342937 2.9352157017678215 +3.708074732352913 1.6058327325829729 1.1863046817334726 1.677304752198527 2.1588196994639004 +2.80980259435299 3.584594900349887 2.51875037369483 3.1997263675159204 1.031518987509494 +3.432300313346606 4.953031236802397 4.606360636813035 1.6745590978657012 3.302738682567644 +2.857790326658865 4.288666269906935 4.945694362389117 3.9759761706439822 1.7285136205328293 +2.152582752081449 2.667670546022301 2.825156007447154 4.16337828659792 1.4339296718745749 +4.719188402600878 4.938555643462262 1.7084845229081052 1.7026324852317294 0.2194452840871781 +1.8744639056539767 4.5831265270901715 2.404029449809198 2.0467259094951125 2.732127196286179 +1.3191968796619395 4.055351085662852 4.451177397592697 4.42055601458453 2.736325548635216 +1.3895917548899415 1.175105038408625 1.1038239779382 4.143814867716701 3.0475480572885503 +1.3346605555616158 4.87647627766518 2.095992070447233 3.6146945849951253 3.8536886144360554 +1.2715439308522765 1.1888025119609291 4.828586277854881 3.769062166705652 1.0627499633059119 +3.8918949205263296 1.5790799596805902 4.769029870409845 1.7653061166487198 3.790972095916917 +4.915943352920468 1.946728158086688 3.9560994426858533 4.3395075374406815 2.993867171461575 +1.7863167892414435 2.214864177482924 2.09288712782316 3.729156624071465 1.6914581662935901 +1.6051502425180684 2.5819185432671485 1.8007497190920492 2.5015835173242467 1.2021831499787434 +3.463456245413632 4.821996738806928 1.3470595108784558 1.9940834621380925 1.5047499013766152 +1.1277383226446203 4.302020999856344 2.362694059485058 1.128511773778583 3.4057710476774696 +1.279511345989131 4.478574929846687 3.0625607783439284 3.749862509314543 3.2720622675858038 +3.8728449007412893 3.1214261291391523 2.7864401603317086 4.01525744490153 1.4403548483528683 +4.641270431674046 3.820648427703642 2.9437289305522625 1.0640213142899233 2.0510293016032333 +1.0040346295599174 3.0767890862468597 4.98633517681308 1.5994903800979796 3.9707718034094746 +2.541997214163412 3.8365213076760667 4.464369995251535 3.5160242070732015 1.6047281273288458 +4.074895215327295 3.4221452453353844 3.5541192530735355 1.4743862260536886 2.1797642044500076 +1.3167494814837792 2.9898024151484814 4.269903809395258 1.7041859686575567 3.0630073713792787 +2.294293065989491 2.266270195260197 4.74277200492694 1.038086913675091 3.7047910746258865 +3.5832582942473326 1.269588968562751 3.3708309300642303 3.489636647291511 2.316717623505211 +1.7677174378109082 3.9240665782649273 3.548147162495009 2.5658358005914805 2.369552115329298 +3.7940703145494226 1.8354647046970625 2.466326361578602 3.2748341345218677 2.118919713876582 +2.938456508119073 3.61342389271503 4.350251370297849 2.4769088621773023 1.9912290483517179 +4.177349436194952 1.05851859932611 3.805779490687262 2.5840163380013896 3.3495986312191084 +2.9466546209989533 1.6258115514076246 1.0644119513861132 3.9220938033390835 3.148169623998809 +4.566632150187208 4.0938638960633185 4.526370830197877 4.072884756849 0.6551026185482192 +4.561125727187106 3.047177405366828 3.5370378890731557 3.7460648367239378 1.5283101079252985 +1.7091304427605198 3.358504633222577 1.8265693458288461 1.7274164192664556 1.6523518157487687 +1.5361271903759364 4.006241562740298 1.8285297358889512 1.463647609902739 2.496918897045958 +2.761680784691928 4.374549487678128 4.685628707139012 4.634584841320449 1.6136762157601787 +3.0911950087888678 4.9298527648392065 3.9074535075560393 1.2170866333576158 3.2586402473529144 +3.061193419743794 1.3067631298394393 2.211378913688468 4.557563528104074 2.92960882833432 +3.517057885886444 1.741515877606937 1.9118090712577538 4.404968694231968 3.0607832868065246 +2.2101210034119076 4.1200863980695654 1.7604139894214388 3.8974776672217453 2.8661836946998274 +3.3846009405014406 3.8700633341057378 4.64682082338592 2.4171075033301994 2.2819498735156123 +4.851105697871542 3.2135200301338096 3.8665198280161617 4.54164296055138 1.771292766107343 +1.9036929063041468 4.652401251367666 4.472808035237582 3.5194560616299775 2.909343147826214 +3.9141528384813826 1.4404111840142506 3.1505954040074156 3.3161660918281357 2.4792763915528275 +1.4773813071454636 2.475449966179871 2.710385031162434 4.705088628542208 2.230467101202471 +1.54304344170025 3.7804600818221203 4.062372451311871 1.8542098125931545 3.1435673144578034 +2.7130430321859995 2.7516509188514435 2.2725893314093133 1.563589649621238 0.7100500811128492 +4.859753334296946 1.0209938353091466 3.623009098382805 2.7987430716391533 3.9262563561123756 +1.8746859578944903 4.220659879260552 3.310183366594172 2.6709265624133938 2.4315104156513656 +3.8740320239376342 4.949363082989047 4.254010243658876 1.1521218594557032 3.282993821897203 +2.1209487225752532 4.563583048064627 2.003898196573765 4.815690321476602 3.72459895850876 +2.7662491493774626 2.9276450028454213 4.880051238656398 3.8525360499045114 1.0401134960341951 +4.596657609952594 4.858349162875861 3.36112061377068 2.959989059429849 0.4789457096156958 +1.8992435448223315 4.403405175105818 1.8456294755730593 1.5717558717228903 2.5190935317034038 +2.2063636608136297 1.6661386941870369 2.119714255408488 4.4419084488064 2.3842040362388626 +3.224671880693354 2.3319461540047035 4.617007024898575 4.183720168687815 0.9923188614839401 +2.4761623655463234 3.928096312141621 3.09802450933405 4.4746583794997585 2.0008080861899806 +1.1954763257965717 1.413741760843858 3.106308133526614 3.384536375939152 0.3536251617353482 +4.787998794058668 2.5024882026835424 2.651080938814218 1.347720073637173 2.6310279755568793 +1.8476653212147824 3.4124930018845667 4.031536621001402 1.0972507571799248 3.325465260803807 +3.7546282455997706 1.971291916888617 3.8597994335528867 3.6361467404145555 1.797306036391411 +4.104007985809623 1.7641984540685147 2.5914110100345176 3.3256968079823825 2.452322221465702 +4.584861897050345 1.5519878104183733 1.5810399318710373 1.1114801397453866 3.069008247585008 +4.602147645886849 2.941133887554356 4.372227288209883 1.2652993945315107 3.5230622534787206 +3.9150845776575722 3.3741461828505566 3.818923109205558 4.730804761974589 1.0602558632863912 +3.3687533763725757 3.8907150614693258 3.2476854729433726 3.8814815377142975 0.8210611745955044 +2.79708652844959 2.338657045091111 4.130192029904369 3.888159666120544 0.5183987426017813 +1.8431494428282384 2.6429409702902054 4.534040746561109 4.9376353363082774 0.8958543856415123 +4.105009528974528 2.8179107135707038 3.789693509567948 2.2051861951571086 2.041393345251076 +4.620789950106252 4.625563463383735 2.092513095079046 3.069618724717377 0.977117289735439 +1.9310640935430468 2.0455106497735644 1.6759301987394144 4.028772413501423 2.3556240153724066 +4.634412374273543 2.024138035378098 3.2061078049096916 3.702896351822694 2.6571283342435654 +4.218599955344948 2.7799461947433466 1.739854531281019 3.109751140827602 1.9865400483605546 +3.828244281416447 4.6669604988835145 4.057231018552972 2.2316746360833384 2.0090049773502012 +4.634217230942138 4.5996058285306916 2.120419908780151 3.1103147030967517 0.9904996986329637 +2.3880959552655017 3.456515814931295 4.834072636470914 1.0756579937592 3.907326659376983 +3.5285198957234476 3.6673786794760486 2.9524147172155297 2.538299821142482 0.4367755819352117 +3.2498942458721793 4.236469235851608 4.484897227099994 2.2011366293341714 2.487748515979985 +3.8204380690739157 4.676781257956531 4.434665840580575 4.58643666184337 0.8696884725764908 +2.1820816397275697 2.238007089439103 4.29037692372798 1.1271723962880094 3.163698869731783 +4.354873195231875 4.324859084828379 2.6000759398779096 1.097547926584002 1.502827760442377 +1.5906021760841451 4.862262096215122 3.345967093985461 1.5627299259438496 3.7260828534100656 +3.958302012178994 2.852196391150945 4.335696495800521 3.163740842315237 1.6115054137687423 +2.7223928342798565 2.548735726401763 2.989332464007669 3.3459079896355264 0.3966142919681119 +2.1116079681073745 2.423267657828808 1.1867076373368737 1.120616281112151 0.3185903789584415 +2.9521870951884877 4.527700193997976 2.3196084584527203 4.1458472552725825 2.4119265468770674 +1.1025976966475142 3.5331259315561847 1.3915762725287477 4.504340069120465 3.9492741047008044 +4.938670984452338 2.040037488419019 1.392117622260804 1.6788657895566983 2.9127822877403484 +1.8947761628194946 4.063618749679532 1.3416136790659365 4.35747404117713 3.7147398146210993 +3.128364684034639 3.06989087403911 3.977786266265509 1.2408253565575715 2.7375854703962563 +1.003579559901247 2.933976364434522 1.1688287564364161 3.824792414289488 3.283378560993013 +1.4800992538197857 3.7774150983449313 4.8197148897026025 4.780464290808757 2.297651126481087 +2.9347603819786836 2.412285223576525 1.082045962041846 2.6397706043361198 1.6430113670812456 +4.90257650484717 3.5758734764885753 1.9070825783617829 2.1285366714342704 1.34505867559539 +3.641523594165103 4.334327157034207 3.6109348284030904 4.683586697597184 1.276933361303442 +4.404218735828451 4.467731629654368 2.1270181234554584 2.1310010886834574 0.06363765940188026 +1.8768863209141369 1.541056531889021 2.1706261334139767 4.6132636245431655 2.4656154526337946 +3.4717930993267982 2.9989793277014387 1.9858204473598762 3.3236062645946602 1.41888116325263 +3.6486319975144488 3.9291738693968847 2.4490801059974197 4.525498925852197 2.0952849107761953 +2.0601357839401118 4.441516941975271 2.1009151965349746 3.4674277646435043 2.745602450946503 +2.663750313983539 4.885996926460452 4.516600137028471 4.550861167091196 2.22251070297672 +2.1882880253951122 4.587186151839667 2.301164974671102 2.112094279286249 2.4063374553275994 +3.8746531571941527 2.108504940290212 1.5173307569331955 4.991367153670176 3.8972052050060477 +2.710136019500437 3.7192398422807296 3.079205669057438 4.744818510258426 1.9474487572009254 +4.610037437428966 1.5562763541550595 4.119737276322812 3.968355746128858 3.0575109356144723 +3.810227674269866 4.0167346214642965 3.318128610116107 4.739802281008721 1.4365935910162082 +2.550691280513298 4.518332379965729 1.1706850255834347 4.212032783835764 3.622348365754023 +1.5029127284601183 4.0378202406590376 4.005501283090559 2.628248443687743 2.88488846908258 +3.2308277393528657 2.3598664924759705 3.6259828669948817 2.3367742744193234 1.555838130633135 +2.363372021528745 3.2174165575409446 1.474710271016928 1.703053777683099 0.884043452851101 +4.654748204348518 3.046048757413402 3.643243219315448 2.5992943172895546 1.91774430532603 +1.2898488907833974 3.617581008124169 3.6187806025958666 2.504136637793651 2.5808463686104512 +1.6058169658113024 4.414419286140409 1.5842293807196302 4.395506710853034 3.9738554604665786 +1.419483386721684 1.968318993664349 1.1854637632786749 3.860094799070778 2.730361093531488 +4.516991353443252 3.7327511675426774 2.2751389552350854 1.0674114877257619 1.440013300271165 +4.323037892820675 3.1169182573629173 3.969169699432111 1.6797228210383905 2.587719378917178 +1.5548994101410982 3.033143870960087 3.3844719764953948 4.998100050921629 2.1883789088086503 +2.352110341397069 4.775179057148628 3.4990772004503463 4.56307395417509 2.6463845323744435 +2.295625917674362 2.5354958689162617 1.4750169338862849 3.8758732979784423 2.4128093323987714 +2.383490495632739 4.569856797956685 4.300643892070508 2.746097843879248 2.682687276572644 +2.658440209874558 1.2768179168560172 1.3064327075515205 4.154074889619224 3.165113924909674 +1.814663152066251 2.7042167109632658 1.645924920741261 4.281145898044507 2.781311764863015 +1.562003893547585 2.833726122924361 1.909335730879774 1.135974637481218 1.4884101617073322 +4.347177185424759 3.8969455354480034 4.3814771385010385 4.87398399553921 0.6672867021531377 +4.16475516656185 1.8605195954541331 3.343634440230148 4.29217515229913 2.4918328695180256 +1.3820594886925717 3.016878423947271 3.6014896946718666 3.2700784357515547 1.6680726523765246 +4.370243688324923 2.014494018088691 3.7218478537810347 1.8144755102938896 3.0311096591046915 +2.9697264309691054 1.7167588013917015 1.5817721072459232 4.973911960238505 3.6161499779502164 +1.4832628762737055 4.837940930702226 4.3380963827108445 2.6031273235693764 3.776768788930897 +4.929902221301367 3.486436190474725 1.9007990331866047 3.1606213323883003 1.9159192069908024 +3.934215634737016 2.7384575365934167 1.0882565073911352 1.772034237265487 1.3774575903265114 +4.430781120851153 4.577748502719409 3.52711080282538 4.250124217666661 0.7377993015540611 +2.590401826056515 1.1523980610622009 4.78164370594196 4.821688438297651 1.4385612287029224 +2.1206492511483317 1.6634804899725726 2.8072050560366346 1.767243192567875 1.1360123034828422 +2.3380634992766427 3.882514412360192 1.6152242700616877 4.382189596453736 3.168820875401521 +2.842642356162448 4.379666833888644 2.1620349811000916 3.042614902245821 1.7714020556199273 +1.0776362685065295 1.6089660480286483 4.583168926437395 2.5150162315259985 2.13531424012399 +2.451298925505737 3.553760583458181 2.569909550036822 3.9222255490247564 1.7447579397652808 +1.0772706424641387 4.093349950898158 2.0247124361525417 3.0051203799810025 3.171424621693819 +2.0721236681827384 3.4540748124482206 2.9751361930744378 1.0800067916939744 2.3454859652347846 +4.500481365318368 4.69010828787774 3.923184220852692 3.860919123954566 0.19958785546989313 +1.7186092204220884 1.678174172500642 4.821529057832798 3.4305483326255923 1.3915683134501065 +4.4917142449289535 1.6999803352511798 2.663363360692786 1.1974784914399943 3.1531883344242257 +3.6492491246516505 4.117343736179322 3.755660437495712 2.6413634958216936 1.2086232827334216 +2.884680745240995 1.1978157430059033 3.5393387152130305 3.5684582015529998 1.6871163209009328 +1.786512594099591 4.362969494150246 3.517695989590665 3.9792935336359414 2.6174801719377476 +2.8980038264506276 1.1428955535094403 1.6174961869044373 1.2246884300667547 1.798528004668943 +2.1132028451963683 3.386601561597718 4.47270470670872 2.2920147570836322 2.5252629461757983 +1.3774593184647967 1.6930948369557264 1.4571722694402607 2.581424645793228 1.1677196522574809 +4.863016733018931 4.341394771132822 3.4449592019612845 3.532527561773026 0.5289212500571631 +2.496707891768857 4.702611480455728 4.5778886719044 3.1938946545851405 2.604121748796918 +1.0757904655551083 4.882590975186828 1.4658055047677285 3.191677003227469 4.179756278699512 +1.2455281365237791 2.8363534447553307 1.5138872382602613 3.3477671618334606 2.4277233646762255 +2.3802074065637266 1.0793139428676972 1.7434247014120974 2.8787062621445214 1.7266117183739085 +1.8807716782051136 4.068424899787235 2.4389500346932125 3.280102741083009 2.343792758194614 +3.2950070635583053 2.4701816263941025 2.666150430733078 2.5256684636915803 0.8367031641251076 +4.494458043551635 2.7889620995906848 1.9705093999074652 2.8031237321232108 1.897883832345469 +2.810069467551183 4.846888688933005 4.040090808958608 4.073926511101692 2.0371002418462294 +3.9925873738521953 2.32144693257269 3.233371874783582 2.081253810946551 2.0297995978666092 +3.6518898309171446 2.5412730989221433 3.4997710937984174 2.3571842392586957 1.5934159047637977 +2.46259549156514 3.879091578680124 1.1624612872730755 1.9922456903199275 1.6416465272256027 +3.311367362387421 3.5533593571064674 2.2691812887481126 4.59841991591731 2.3417755459917906 +2.3056681492402102 4.521682004006678 1.27973776687165 4.563244243775775 3.961329598555045 +1.8598489765934896 1.816848045474805 4.901145412694233 1.7796523815374612 3.121789202306486 +2.8160937852195764 3.9447220444348354 3.229866112770716 4.50145041630995 1.7002142184167928 +2.878424630476835 1.1561889664422407 1.0226722081156847 2.35253572479438 2.175921105064636 +1.7887275014281205 3.2988708505381634 4.9857124822695305 2.8276219534199027 2.6339870283605733 +4.101745218987794 2.4784824854816905 1.1874749575227197 3.559112969993766 2.8739604667057135 +2.997546259398882 3.0059954300092424 1.785913565593496 4.0603175612431635 2.27441968948371 +1.8501028490165634 4.147688171412775 3.62223319518862 3.5580934491172083 2.2984804155608134 +3.926318564349591 3.488941972388982 4.485187672291544 1.738791563280727 2.7810051907151903 +4.7453866192006044 2.6803827110968688 4.781250191774945 1.5401057597211278 3.8430792822835653 +4.107823869223068 3.845695876179357 3.4574672922389724 1.028718326189046 2.442853377676546 +4.837881282694465 1.443258166726269 1.0027190412952907 1.7879784098328857 3.4842643951545473 +1.8285380348520297 4.928553519637037 3.8582170708463206 1.3588024755751746 3.982106141850221 +2.936684273519586 4.9411668262282715 3.768726118186892 4.7291674386725955 2.2227005723240927 +4.2656798125918876 1.9313940730228585 3.856016858047225 3.6848423325207382 2.3405534884177603 +2.5162854867564497 2.3766179638195113 3.939790466849913 3.508334335511706 0.45349907412548507 +4.437535368034375 2.943608282782049 1.339021260645259 3.4072086680243743 2.55131677533231 +2.416634792600735 4.732157403528686 4.533706930062479 3.6922676967751116 2.463669000704808 +2.781569048226277 1.0685692271947924 1.783732791437055 2.53958776461794 1.8723474910753544 +3.105225891823451 3.061839561001223 3.968909715758926 3.2391830604901526 0.7310152974541415 +3.761881707904584 3.2610810146011846 1.43395662965666 4.497509357860471 3.10421594817406 +4.4665083773962255 1.4850688816184396 1.8153913043660967 2.6177960566316196 3.087528923498854 +2.1781904204938884 4.655755487799718 4.3649836463889145 3.753629596406816 2.5518782175416708 +2.5827452693070456 2.8269349876543592 2.268968679815366 4.320850077449803 2.0663605417508317 +2.4034241150405955 4.255827170059163 4.110068594793939 4.838331877706491 1.990418168998839 +3.8296400455432535 3.1391198241457547 4.164362846134513 1.81075741020857 2.4528099649542767 +1.3973944360454982 3.884153885798491 1.7432326337228772 2.390283792540354 2.569561784247043 +4.423883365942238 1.5346977413797749 4.422789204653973 1.0011127964083406 4.47831028580235 +4.082750938505342 4.685583310690088 3.965569974105463 2.9051334527463757 1.2198083803557223 +1.4641048030422152 2.757375541841825 1.2285111571698932 1.8825612977818653 1.4492518036110318 +3.7094958809635137 4.495743320739702 4.5537259114493045 2.0752208413657187 2.6002254554143285 +2.927580118701983 3.2928975416240425 1.7999351587255488 3.9780832254819 2.2085709905286826 +1.4485263047802683 1.4295099678488188 1.8643051114305087 1.4607110138802137 0.4040418501191769 +4.941889282144076 1.93102353369629 1.3341144895135244 1.9670567329658715 3.0766748997452646 +1.382935181955549 2.0471919193359462 1.3732519711130475 1.6169274296144263 0.7075413360582595 +4.951362884597881 2.544407570937348 4.137541010622133 1.5058175114206662 3.566427127842077 +4.918529943513493 2.753380403133623 3.73039840867215 3.137920592050086 2.244749985053215 +2.5112091056256833 2.367501392759612 2.8093766168777172 4.318078126383261 1.5155303202250703 +1.2077854925816802 3.147448250166354 2.1169967240433674 4.797834386674427 3.3089548480664015 +2.4925194884757165 3.1414618367108513 4.860864540356333 4.956325417450953 0.6559260250886566 +3.366217418957255 4.737895481109647 3.863853615063181 2.545849128364616 1.9022714141645747 +2.4246893055684833 4.3946617533644865 1.1720924292554065 3.4086804434488744 2.980455903097588 +3.4700481022375778 1.770031369820876 2.3550386982667884 1.5468986668852764 1.882324945597351 +4.270252457098398 4.5051747863251155 3.853048742133091 2.94233199400565 0.9405283069047558 +4.65593731818762 2.7290112363416736 3.250077439323982 1.696170922034205 2.4754130138976436 +1.264132126229181 3.1709348196485636 2.6010551131779205 4.96524508540543 3.0373163708136373 +3.7094363700582775 1.0165530665958662 4.612375436118919 2.932763345338665 3.1737544425430655 +1.2288006771194273 2.801846370937175 1.5468982637494717 1.684436279626956 1.5790470102723586 +2.5909028766811097 3.5726314519431868 2.4385917267057726 1.287238541292024 1.5130780393120817 +1.208390326484138 2.846151522930695 3.469333638208148 2.1506807229911407 2.1026429196124505 +4.3333505496178795 2.951729859657431 1.5113837969390826 1.6158575846940741 1.3855650483664277 +4.307007369783786 4.230483434670166 3.020814685895137 3.014656594646295 0.07677131451982974 +3.350970113841074 4.577019366231408 3.604015594011856 2.6516224768845085 1.5524977999464096 +3.8064529002817467 1.3002856773719653 4.359980113823534 3.937640522508221 2.5415044520086347 +2.36187911196597 2.8602051733810225 3.12275188680442 2.9076388921321965 0.5427729396002448 +3.469980695670537 1.4107746345771028 2.915378272264587 2.2213247626130554 2.173025512115204 +1.869154112292553 3.974151870229917 3.2198262422777826 2.3734471473271452 2.2687823018727005 +2.3225345124550816 3.169879991440303 1.903366674452767 4.169762744589337 2.4196168100522 +2.6239236675234303 3.3238165149018406 4.863843124140346 2.0258379826783584 2.9230332158181396 +3.858830052204642 1.9828258998154316 4.584676436048188 1.3702823376392472 3.72179002627335 +2.5284020505090816 2.3791355073925047 2.708179421062434 2.9115676557732773 0.25228411545867474 +1.1857306546674309 3.843071284915832 2.3637905365118157 3.0678558095906414 2.749030216990081 +3.1144442463506876 3.506885708525875 1.3428245295604406 1.5026144764442821 0.4237252982291001 +3.152800113791562 1.9639821441596998 3.6260401613245805 1.2140229068602681 2.689073334952616 +4.132372352010615 3.4713019538622136 1.3206888841854045 3.831244535854737 2.5961324603026155 +1.9057526717774036 4.617152723431083 2.8571738036059524 2.419709338958219 2.746464162871437 +4.562107469242093 2.549283195107893 4.897968845819855 2.4921454251854316 3.1367894238882195 +4.475185670776531 1.206502876796955 4.0487424958066764 3.994294178279528 3.2691362508986472 +3.736899825808651 2.4315696228499393 4.976313396364237 4.604277576193283 1.3573126354110558 +2.683621355969694 4.809818768890523 1.3158978584157088 1.5967756834905158 2.144669622886 +4.98116128106 1.5767672951218792 3.6596368857943777 2.360707956945296 3.6437775417405316 +3.230395102813795 2.734668359373086 3.8096218460501445 3.4161729000291348 0.6328878868230722 +2.261242435654042 1.9951654029212622 1.9858281913768199 4.481321265365503 2.5096379558959034 +2.881261856467671 4.543495656542999 2.5539672190001728 1.397027819427453 2.0252234396225397 +3.792857818515191 2.4927620843495837 2.9611683315119235 1.7848694034890342 1.753262127025907 +1.096683902906833 2.948779876449113 1.4287637559393058 4.8945958008095864 3.9296629955329805 +3.232848028676213 3.550646973231737 4.549674690911892 3.654173564645313 0.9502202041134024 +4.735324353841626 1.45257314448323 4.6519333612714355 3.0067725214496424 3.671921798108881 +1.9886870003784534 3.915057762149602 2.8041323595278893 1.221724145425834 2.4929741410340407 +3.724475559641791 1.301045687321675 4.768247280451698 4.792159620274667 2.4235478427399166 +1.1759944135378748 4.218594283063399 4.945907591405662 2.371971706897006 3.985292950787695 +1.093362719531913 4.509620143721724 4.182539244234967 3.354202533579898 3.515246292160887 +2.4616306554968235 1.415086290624239 2.698917450899709 1.3579249345859319 1.7010338140249055 +3.474242145042173 4.08903091252994 4.2339237859630785 2.0463811251575894 2.2722913812874186 +3.9009922669155284 2.811507754852097 4.764632645660728 3.6752900887630733 1.5406633987650948 +1.797916276122673 4.28911507664262 1.6151196421832608 1.5455434892642512 2.4921701997991694 +3.80075230588185 1.9729714688237343 1.6773868747434841 1.1179371336050776 1.9114828801683517 +1.076286251872705 3.96528263089953 2.042482126846725 1.0910416151601003 3.0416342852664937 +3.7512617151475345 1.214254958440256 3.8574539019043863 4.133707864414394 2.5520030437640284 +2.1056077513904707 2.295377945777513 2.17693187330409 3.889671212751469 1.7232204651664105 +1.8813630610889125 4.439503158291146 4.751915217758537 2.2141606343376687 3.6033705169726127 +2.598920023277105 4.195547211826056 2.9328738227510764 4.3495379595798855 2.1345153210484673 +1.0940900194517047 3.4785409564170435 4.882285039708471 2.0748611992592 3.6833727602182504 +4.014095666779528 3.208781087856443 2.1044646951260275 1.9664153868419412 0.8170613089259459 +2.1689229886367283 2.125250831403226 2.3688651230354782 3.6411758165759838 1.2730599978849975 +3.4486746571577225 3.9382893000449894 4.903616162750146 4.6621196557683655 0.5459332023370874 +1.377680478644152 3.307858629836735 1.5855328708015461 4.326279735823121 3.3522054044265857 +4.913184886620236 4.369318691816103 2.1165204102296804 1.6369942654332554 0.7250763831445962 +4.39580723701721 3.5146725724814667 4.150829868508495 2.135797111588375 2.1992624464823693 +4.428442633480909 4.4534861404538475 2.976661990627628 3.945427343648716 0.9690889982120204 +3.36184409313725 4.473094429057799 4.120006660195251 1.490436515791047 2.8547357939790996 +4.659250493474044 3.9436637618319175 3.4511632400733303 4.10073487214754 0.9664407253928268 +3.760068455569287 2.079476541268721 4.562222978947807 2.3939337941620056 2.743331400190563 +1.3603807732319413 4.081980619729341 2.1350823391824116 4.179966427058321 3.404211605835155 +4.339961064859459 4.993116193191851 1.3768402206390618 3.711892889843792 2.4246819563866597 +3.874385823620181 2.4716781609325285 1.1088550364016911 3.2664781190419085 2.5735046441971954 +2.5147360296718584 1.917819208687439 3.7301114609815413 4.183310810515902 0.7494660376511487 +4.803201819065085 4.250630007077781 4.881424173297086 3.5755806426533168 1.4179432054659724 +3.7168037958581874 4.777089685194625 1.8308332952014874 4.998247636800941 3.340167627304932 +3.768915907492735 1.573486387123193 2.9563215723392062 3.087873093475276 2.1993673139389998 +2.9293245514965585 3.5930795139844633 3.535412461779001 4.664534491401594 1.3097660890427587 +3.4092577785139526 4.3036637444916 1.063521394443224 4.815392889086592 3.8570068374704585 +3.13178766179509 1.328865042213697 1.9060208777163217 4.185664021725395 2.9064244074508125 +3.3643287201929466 1.5710984311770488 2.077108507460404 2.8159373901818356 1.9394697696503134 +2.5861631119784763 4.67429616153368 1.608061481332867 3.752421450592062 2.9930885904707214 +1.9000106432662505 3.3899307249941257 4.15694763736083 1.857619081140943 2.7398492037672852 +4.821094716120653 3.3074177756430716 3.9484930890471204 4.657379085297511 1.671447646746221 +1.8672992182919779 4.407246355100006 3.9508145746411185 3.7417106267293545 2.5485399582528787 +2.8542777131149366 2.9990592083931373 1.7402825844241008 3.2893360145511354 1.555804682716736 +4.583368386648343 1.4542633900438235 3.154202951139205 4.772651990685624 3.5228788473894608 +2.40618145967251 2.1579155906281966 2.391078635685898 4.484318024603848 2.1079105960761053 +3.1323060394911226 3.727472179781594 2.6956580173410427 1.6593016703100618 1.1950971561256667 +2.3213617780381766 3.3088076106533486 3.4220471600423976 3.8460659436052103 1.0746353805655002 +3.4009593188529275 3.770915728354269 4.680562815540438 4.638124868177689 0.372382497316251 +1.3934859561077486 2.9751198930087916 3.52216732331687 3.5524223030887794 1.5819232832720085 +1.0161619338952579 4.74928529582005 1.8273628399979582 1.5889888159183947 3.7407261608816738 +1.4983380121928795 2.902194636314873 4.089418542683314 3.536462740636075 1.5088318462005317 +4.6318280274845325 2.276860491105726 3.6680819722303983 1.8329299065051003 2.9855745178665183 +2.553616815482646 1.40591340647434 3.8068784954712775 1.9730290656838725 2.1633831944851747 +2.5306290734886105 2.120666331651502 1.5282290563235637 1.6709937831727086 0.4341096830605262 +3.8227587403935157 3.7610510940718935 3.9734737358335077 2.43870728653884 1.5360064737803405 +2.8649434022803004 1.9165016275975932 1.2634164619174433 1.0338654878184976 0.9758255221467913 +3.2318021677739273 1.9174144172965204 3.3053560435613476 4.497618234080373 1.7745715791554542 +3.1697556799232944 3.843917162086706 4.6500436105141745 1.142560631880865 3.571684553461456 +1.9400274649436589 3.383242687387696 2.2629733014176256 1.1480868172015648 1.823689132221235 +1.0041512671328037 4.344117661980551 4.056852226415687 3.4211438994340444 3.399926557398859 +3.1129575796706423 2.0811221226630288 1.8845077146852574 2.8711667638009875 1.4276485875522966 +3.942009754104347 3.888284346149281 1.7069267712564278 4.817343285390142 3.110880471965399 +1.4570791078605443 3.456630598294327 2.925708422776603 4.756897780936191 2.7113577094018573 +3.759699448359698 3.485110235174392 1.8028875960674449 2.722399890665647 0.9596364394472399 +1.4124953539940042 4.332911403022479 4.451896078022102 1.3442403315753606 4.264546181933845 +4.3716393862582485 1.424808620385484 3.7456889626762586 1.8125789088342334 3.524305043970993 +2.443711633851849 4.382845899147493 4.141960831106825 2.8819547836812727 2.3125433916777953 +1.733549651817524 2.0038772268296072 1.7778720077019 2.505564023950839 0.7762813074680853 +3.1596414255036738 4.154834558816978 2.231362988634669 4.0394786059622785 2.0639019982106594 +4.815929564765332 4.003334547650239 1.6896001803153267 3.587365853059231 2.0644188553889453 +2.2169331622699766 1.553268912102053 4.975584403557364 1.4640649358049007 3.5736842626840293 +2.9298222233371023 1.4585518874997017 1.7674082372305304 3.263363757902194 2.098218129971983 +1.1248432455347266 2.0178511415425553 2.07885658600525 3.2187215794373882 1.44801771590833 +1.7746969970881765 3.0838362811386837 1.875822870670155 2.6855104253496407 1.5392984120199436 +1.8386132997828546 2.280683900588313 3.6633579252709665 2.5640544853174343 1.184860527315417 +1.764630663378823 4.4374047287730995 3.000457487204234 4.261312570121868 2.9552456318829883 +2.8908658278872252 4.453368832492413 4.859367974561033 1.4197647886558822 3.7778678796232543 +3.4718589180188135 3.3131551201842533 2.647411971165644 2.5065855191270616 0.21217677780777064 +2.0317683885142213 1.3592102655087364 4.902947927860376 1.1792146677605597 3.7839825344726776 +3.077462098393033 3.8093758497203014 2.2792726479769247 2.476576509662041 0.7580412608940321 +4.85709951211974 1.8348431612326301 2.7817072131421723 3.2430639635710694 3.057267325839169 +4.829878649920499 4.447456394622311 3.8533811556021984 3.95721685310838 0.3962683855973722 +4.367503282213098 4.4988720026259275 2.357366390011585 3.754675827328371 1.403471198250059 +2.177282688123673 4.166558767214909 2.5802811032269046 3.6357735216212976 2.2519510572240784 +4.598163111932182 2.7088310216706577 2.0329564861221043 2.4600907603088014 1.9370130189229442 +3.3847575948403508 4.624407749342735 4.039049122109938 2.619265794330734 1.884812246192595 +1.437760193219959 1.2581478491377975 2.5592278032432105 2.77830049221613 0.28329037611700514 +1.4843386823329698 3.6743314633126727 1.6008147758790479 2.835885816680956 2.51425314090899 +2.2285623443817326 4.054064135465772 1.2852417058561274 2.276418131753368 2.0772307277973394 +1.851123871722176 2.7836750940261976 3.872594462535794 4.096861004404346 0.959138813739911 +4.903994990302901 2.579731947103529 1.5710825622669375 3.3211255765542687 2.9094413975604136 +4.822877585849785 1.7508572951802943 1.6644592173412196 4.639754591460545 4.276644856606745 +1.51972229623507 2.9589622336013544 1.9408192352825857 2.2508454897215517 1.4722526535046765 +2.8959022881782626 2.645531024817111 4.555492804856077 4.7227296604637194 0.30108791970218685 +1.2604490984864425 4.595096249603081 1.2049468041775424 1.9857981923800687 3.4248504365750234 +2.5720378555233743 1.1749420172818463 3.3894397609821847 1.4991112049602036 2.350578403487947 +2.847409404531831 2.2882975101290937 1.4795160203833508 1.3569207622733428 0.5723947132649613 +1.5923587055897221 2.599511788070843 2.338335196824658 3.331957749248446 1.414794369594531 +2.775829411836367 3.8361328613794043 2.3300470357342595 3.6953287868736333 1.7286519791754091 +4.26213796257339 3.4414282682058706 2.6827004321497774 3.4205018897535915 1.1035920411416258 +4.267015385335224 1.5019398529190608 4.586110070848246 3.735288877962603 2.893015624263007 +3.7717894570059713 3.4957213391843065 2.4341011204552307 2.171721196649523 0.38086326955206057 +4.5199789922059255 3.4418344628157445 1.106419365690614 4.5539102130872715 3.6121446218469297 +2.803939805662315 1.0867471057411646 4.461815442005939 4.631803910423569 1.7255859433993603 +1.8811179043738537 4.718677700797109 3.952143575594066 4.608743715748081 2.9125365821441376 +1.6982474331849855 3.856209759457833 1.4011916725210365 3.2853268857310325 2.8647455215552386 +4.09211725110754 2.1511816325570123 4.181792321950928 3.2390482031379517 2.1577760655162006 +2.393671118064247 1.290421595227023 3.811307538030132 2.903912619899885 1.4284694771289865 +3.06317819765615 1.1451930376929305 1.7481953363006908 1.094265578204911 2.0263985793427564 +4.2180197345651536 3.694957300751376 3.1716541589308958 4.271483511555552 1.2178747532328447 +1.2554740235070385 2.788265658905958 3.625080129904418 4.9908479782736865 2.052990991989033 +2.7313451923568017 1.134183388286076 3.8754947388139995 3.2295587344795154 1.7228346264450498 +3.2704161643817216 1.2361933935790441 1.4845179442494842 2.9301804425094886 2.4955965900216084 +1.9843218639934492 2.0054935052184115 3.6891519163266664 2.533183955290809 1.1561618248902514 +2.3815745852415175 2.0683080055232295 3.9625412030824227 1.3817049965226138 2.599779120436661 +3.376251782506322 2.4901191178708015 4.678909189361365 2.131372365888609 2.6972532262069326 +4.385672154581094 3.4129465736909737 4.772887245387442 4.1660164305671135 1.1465108990318023 +1.053217832020767 2.58245633127872 2.273222224342764 1.5916064244657067 1.6742671490102041 +2.7323747440694133 4.597356939466349 3.892557134330616 2.2417826980980893 2.4906253890270995 +2.503771401888289 3.1135146596195313 1.0313215313230453 3.1825692280625324 2.2359904948536022 +2.0169732349480394 1.6155113333491862 3.122657200004964 3.643935217228815 0.6579532123762272 +1.0409149089472622 1.7887203191242422 3.5072414599875943 1.7974333683221464 1.8661877295209617 +4.688088297934133 3.8276491938041657 3.228354047059344 4.730673934012126 1.731277128206169 +4.55406099209794 4.592946567520951 1.443053904529521 2.7608235136520394 1.3183432143045655 +3.3391565091190096 2.827772321930229 4.836377724326409 1.1477157716973392 3.723941566093651 +2.497185279191251 2.1112285338604817 4.390913731925038 1.4887210996878903 2.9277439580465203 +1.3989209749257654 2.6080090421212963 2.2889126189464255 4.962224871721631 2.934023236968765 +2.799575270445494 3.9438824756961557 3.398084884638647 3.95743266083971 1.2736989105474081 +1.9899456117816698 3.052457603437425 3.733722658623956 2.855663417494712 1.3783757700078536 +2.673395256710106 2.8179758442964524 1.8742741272553856 4.55543083302068 2.6850521088383035 +1.3720876512040934 4.7187628786815115 1.2129756164994348 1.5531104730099745 3.3639153970967337 +2.041431484888916 1.9858741125738448 3.469656643611096 1.1786262457529433 2.291703930600251 +4.859071535872083 2.1359700321096646 4.798407205941985 3.5448781495039543 2.9977686527028005 +4.953686975610342 4.322089620704539 4.829333613099307 4.412585053378527 0.7566997956609682 +2.11213859156232 4.803653418562717 4.621891678462855 4.623868175223066 2.6915155527141987 +3.4834097424016974 1.561174064488358 3.830670956415087 4.713038687175872 2.1150798598943945 +2.9782662274633966 3.2932901248654174 4.787313483707431 3.229433614478847 1.5894117600175317 +2.8252786177054596 4.649043505916058 3.8967175000361407 2.497274232683863 2.298817049268479 +3.139412480998568 2.975850811586485 4.664344936119804 2.6433588942904476 2.0275938944892187 +4.17132243727105 1.5791723403789515 3.3926657069158974 4.475450945640442 2.809210920884632 +1.8411817878037904 4.029798020396524 3.2974949192697114 2.36397336047476 2.3793914167919845 +2.32508200193068 2.741207494493222 1.9217370641503733 2.295211720763407 0.5591455487550996 +2.3211672217829222 2.740002028663212 2.4697083930518056 2.8663461617853048 0.5768397654811415 +3.516463604680081 1.1287659895588669 4.220800556974972 1.3364513113392529 3.744405222736299 +4.607335620674626 2.085380864596071 1.8265453630836515 2.6918688351134565 2.666278399371109 +1.5339531478923316 1.5217294899797928 4.909861758549521 4.025673972001012 0.8842722769002284 +2.542529802022892 1.825607763587057 3.894266097279533 2.4587689687465644 1.6045651171645827 +2.1437360650506947 2.7665290169247623 4.00051880079604 1.0857569331656771 2.9805549493166628 +3.7655272580641235 1.864532895912041 4.114562106490512 3.355851231038395 2.0468076991899653 +3.438123099839787 1.4650321847564336 1.353218607125772 2.1740642528264544 2.13702487894976 +3.4340756583561953 1.5985827557282835 3.0372938489270846 2.2327370563055458 2.0040822907632547 +4.634136050548564 3.620260229508119 2.140648919417671 2.637116100000038 1.128903823133681 +2.9953629596661937 1.6274504443482374 2.4992130356057993 4.526483141060227 2.44561009362341 +1.8395277539283361 1.7975196649428051 2.582653410633487 1.6708908857643356 0.9127297416519229 +3.4409232178508558 2.771157098378698 4.158870003528179 2.1921310879787286 2.07765459514555 +1.5271854240095561 4.87651442759538 2.230638118761252 3.1988576261346036 3.4864672361459963 +3.5963352862478177 2.0375411693127248 1.8162104769466145 1.9021092501355055 1.5611590880582327 +4.880323281543273 4.1016306816638135 4.681155592948818 1.4704690424091318 3.3037660769073005 +3.047298012724366 4.8847063327059335 3.9492013171491833 1.2974854726774119 3.2260914826086577 +2.5218664038604754 4.246451618852417 1.8667943806556333 2.0814296874391722 1.7378902378133276 +3.326002302536869 4.3474376289309 4.254625442640517 1.917267578767778 2.5507982887350016 +2.349502809581009 4.186982756357402 2.9066634995248584 1.4570037771890996 2.340479836565136 +2.547409984014978 1.9142846643749705 2.7414046617581413 3.7415290072006986 1.1836791696723252 +4.871790317058631 4.172861739093769 2.5443404878221507 1.6566771078081302 1.1297997315072703 +2.968116378519269 2.994387321931831 3.082805609793497 1.340799730381986 1.7422039623339334 +3.9504891869075247 1.3970860128062035 4.959772637978359 2.1511160633816964 3.795842399723118 +4.850631754835489 2.671713467399404 2.426549886102038 3.1820075633810103 2.306165910224835 +2.7215258016546584 1.361950051104043 1.8675315625504827 1.9361857225931418 1.3613080530050619 +3.966151641341325 1.9911467018791482 1.4887363715577981 2.4679724821294386 2.2044382212136204 +3.0505031512380714 1.7136052852511017 4.339872815688221 4.570654084128657 1.3566708878513942 +1.9786241085870158 1.103879893423127 2.8398651356918787 2.4608996832327334 0.9533059614416833 +3.5371283932501294 2.9255137728316973 2.5011425720282077 4.684597539050785 2.267498188957412 +4.0353180015714205 4.459450509053351 1.5510316341791461 4.814436027088755 3.2908504395618836 +3.016265780342159 3.630870611858825 1.0738147402220797 2.0355875407407225 1.1413789987296519 +3.3278791536748296 1.2969050951436065 1.7147153378637796 1.662009366183193 2.031657831889411 +4.375810797007858 4.104637600759274 2.689572302632415 4.7583968323736325 2.0865209889245406 +3.765577521589869 2.5395616853304084 1.0851897832045232 1.0490286120333203 1.2265490047525447 +1.6851554289694328 2.649931762442385 4.07309705162256 1.6961824804950885 2.56525169370719 +2.8286730043727735 1.3460486692661076 1.0853821911291295 4.893718020618145 4.086758704550621 +1.6739080358307898 4.046187319929141 4.796189313267567 2.3926571570228727 3.377080962586543 +4.617421241670982 2.5049152129185015 3.8129979445304656 1.1922803380441995 3.366131681093697 +3.6994862174591026 3.6665413368445483 2.392926235218243 1.121514208411638 1.2718387897320897 +2.8602186218231536 4.629035000409361 2.660086927034458 3.5715576260259403 1.9898467821103327 +2.0632511430054103 4.500868529598906 3.9649323965091883 4.615134818790445 2.522843973249895 +2.5837886993378114 4.798364443146848 2.5738334676529235 3.0132860596059508 2.257756476159815 +1.7745095098766073 2.2439276250250186 4.45824193594318 1.6244351417563605 2.87242307357549 +3.2122202126619555 3.595448099056146 3.889309568323679 4.05076356325857 0.41584973895698746 +1.974679469369259 2.9533794025128857 4.023211967872286 3.894687563139443 0.9871028729303095 +1.4315678063816555 1.6248025622267348 4.696013873505878 3.51084100017179 1.200822389262245 +3.9121564487984686 1.4779286358849388 3.4460354208128 4.961009828887246 2.8671610527283438 +1.8398303343666398 1.1298141628808653 4.6658255468435605 3.9224856927642393 1.0279480057055332 +3.542274130813293 1.9677924936225022 4.1716926451997995 4.590317090537477 1.6291834924542021 +2.5741047670653407 2.512687007708864 2.4977379711044394 4.547346544255172 2.0505285768058323 +1.0357603728532498 2.087154281228183 1.5943221702097397 3.118421843638944 1.851569324955165 +3.240408709870098 2.9983401074907716 1.77979859017112 2.4006265033588403 0.6663516384394205 +1.9085067950321042 4.997874391302029 1.0193096945619944 4.208078191423604 4.4398689926009824 +3.447123780560618 2.7050500370888106 4.457817235419494 3.7179380943481966 1.0479000830912566 +1.8611103931810722 2.3322899333073432 1.8678342754301571 4.044817064006499 2.2273895529949916 +3.7851105032479366 2.8272444903271134 4.615348167592357 3.8206122891761396 1.244633446100028 +2.2733865583813047 3.496450758267136 1.0606833333854362 4.288732502918507 3.451983122491406 +4.101169806599758 3.4019695913148027 4.375351806875317 1.5156897610258002 2.9439001269619816 +3.1727296368727425 2.332946856639049 2.5545790918549502 3.7838664810574127 1.488752028790973 +1.0562862141254947 4.4537572127489975 4.3107644897909125 3.6515990607417885 3.460824793216394 +4.110767337647655 4.1184553737021155 4.158770852413067 1.340903687315779 2.8178776527790914 +1.878280521749712 2.8327217387762005 3.5526591290533696 2.435304706006701 1.4695029579626433 +3.921441411690889 4.284640334486758 4.277572224655545 1.4680069500620934 2.832943785132606 +1.6605710270410015 2.806097031162894 3.2159170255171525 1.3512236369683315 2.188449510365079 +2.039051276463998 3.819032618992342 1.8815222578737019 4.2749863131726435 2.9827845654282608 +1.2967485497689446 2.8238736212153404 2.739299026656418 1.9636175468805241 1.7128317903131876 +2.8073785863486704 4.931552443161008 4.222773564933141 2.678806196723661 2.6260140532869793 +1.2605520234652738 1.2427264714752506 4.763220632262909 3.096313822774853 1.6670021181214496 +2.3154814594480477 1.6602324537798223 2.045654707924944 2.3253074330299217 0.7124302815629319 +1.3008174066329254 4.144288891499281 4.261963380632538 4.810334883774111 2.8958662591193374 +4.113706553711792 1.5787212270677644 4.017706719187539 4.853004045969168 2.669058304052023 +4.553084048484324 1.0229864898744392 1.312860063607895 4.870409005078045 5.011760493505137 +4.720764658689692 3.2948954376776554 1.19280336069854 3.9142088816190834 3.0723201403379643 +2.3286697806487515 1.8253602824202888 3.331355702794734 3.1555362352441967 0.5331350074575306 +3.110323465736283 2.1715702601824756 3.3835159807765756 3.605750118276694 0.9646997423074034 +2.62059314846279 3.0768834418286746 4.265176321733534 1.2046652407433514 3.0943382020528434 +3.1251475996609783 1.9100533841693412 4.889590366325821 3.9446323945744544 1.539285392933258 +4.469760390775835 2.0251487829403705 4.820806317359754 1.8045264413283886 3.882533992602728 +4.75528175373323 3.7336013413826525 1.789024237237177 4.720388082612031 3.1043074684946554 +4.189594055817265 2.955665834310251 2.3080060569171814 1.607863502030145 1.4187242343017934 +1.3816494026976276 4.61072322809812 2.538731856397226 2.7376736863451447 3.2351963806838056 +2.7359047242857075 4.910607423726692 2.301022987798242 2.1725143159778204 2.1784963414449314 +4.25724473373247 2.541114841456047 2.774462944343112 2.0912746069293733 1.8471188677350565 +2.1083459626629444 2.4251962726106395 4.889067648560324 1.2258190823351347 3.67692591397554 +1.465034429962587 1.240509434785598 4.02741536946741 3.392319986103528 0.6736153349125473 +1.9127532117452861 3.9428995834906466 1.8135459294279372 2.4781764405298747 2.1361713430805294 +3.6272977853770283 3.582111930424847 2.77986236349659 4.7509549849376445 1.971610479731513 +1.9395955640777127 1.5142124984767573 1.9166258091252586 3.695483614721575 1.829012259398774 +2.7249546756877474 2.470353451744407 1.0386810520571466 1.830430796392108 0.8316786884896858 +3.0723883420971965 1.9553061819472108 3.1576806191283264 3.6637929731377903 1.226385855840795 +3.3112411438527594 1.5855442125319108 2.529141726311754 2.7632558995969276 1.7415049080904694 +2.82816237217522 1.2578845616634622 1.7868841195815555 1.6252112774092846 1.5785786360145824 +3.3803010731520833 3.5187380770155747 4.3256892843549135 4.020751594126315 0.33489072689558463 +3.837608319910934 1.6721412795371093 4.954407745503756 2.7194374137860877 3.111967205258365 +2.410227686690715 1.7523606395489963 3.0395819081167006 2.609448091575156 0.7860051856365575 +3.803782236576026 1.1284310930596386 3.2038732951264945 4.341143806362348 2.907041099957326 +3.8905485686406664 3.5455908233686553 3.889881551004831 4.498089355075343 0.6992228392690156 +4.183958269294736 2.050119695176273 4.877158580661779 2.3309767442130958 3.3220940692065155 +4.627577780192018 2.470867239144993 1.1790743737616718 3.7129453685524663 3.327446855489272 +3.9747361712944644 3.5335746360383355 1.9746628203754466 4.800915248999295 2.860476584503314 +3.373348514531074 1.381007903129365 2.056453133868993 1.3608088933872522 2.11029429728556 +3.47026577909569 4.229190306021586 2.522051502032346 1.3880781388105015 1.3645006508119946 +3.892260558357547 1.1081384645505619 4.509086144014941 1.1461516414716812 4.365852070514996 +2.7600603578450293 1.0754721699427487 2.853554866447044 2.5002216571924563 1.7212442358892697 +2.6921177854589216 1.26162921172509 1.2461068710923793 4.222408209428851 3.3022215577042258 +1.3802347316720085 1.74022374139785 3.0117942883823092 3.433567559181921 0.5545131009132197 +3.858157975635461 1.3395776616417434 4.667295948505559 1.7714358460624924 3.8378708330216456 +2.1362111513418354 3.0394364443652644 2.9149957055836597 2.880165065123553 0.9038966221156711 +3.199972040607454 2.4079014345655234 1.7117373555021551 1.4945544873818237 0.8213064246434485 +2.0122018272972197 2.0492451227394186 3.6441533710594647 3.3080799479576353 0.33810878641732944 +1.0101988566704243 1.1623821311322224 2.749729062978919 3.3084408216015757 0.579066989431393 +2.5365759067631313 3.533349234998677 3.5091925155219874 1.6939953513526422 2.0708688545367133 +3.23152364616873 2.6176477911056613 2.157596535065573 1.1687068075609837 1.1639357622281028 +1.3261402794220145 1.5542805900134313 3.508417316582422 1.277075691686694 2.242974241561649 +4.068966591379275 2.874787867018592 1.1237524124765703 1.4165500652673004 1.2295500360682639 +1.3064656546666495 3.8605682624152213 1.8712357430239202 1.4689260665248405 2.585593395472855 +3.265465414399574 3.677933328093004 3.9438429219712714 2.6398980732398427 1.3676263920968472 +4.327006264090401 3.7741789635989798 1.4906853187923197 3.4516211352887605 2.0373726464707422 +2.4443198335637533 1.151959598840027 2.01763598208949 3.6777443038337436 2.1038428211774014 +1.4373332243603438 3.9955816301258937 3.405754260730045 3.1821949380667003 2.5679979899430747 +2.3369301493191257 2.246862357513527 4.4485864805407385 4.877686217644713 0.4384504436118596 +4.535332843207867 3.4605420543210754 1.6829455065952068 2.9334644240801158 1.6489308059659507 +1.957277943508926 3.587820608315001 2.9280837991182125 4.004432314488371 1.9537644454469019 +4.07382479964512 1.5954824720746017 4.3126114365471695 3.097453545627928 2.7602154612440954 +4.486411085896507 4.9376838385144275 2.165202985904252 1.281067473218446 0.9926442978466897 +2.249251142098876 4.2131905834497605 3.6623343973519984 1.7096429839407072 2.7694876575467546 +4.161654196829532 1.463699813671099 3.8983352108556946 4.866058567785398 2.866259993292844 +1.6473952429543535 4.4358884343865626 2.146695760929222 3.2684674180833455 3.005672292426121 +3.735011578468888 3.2278345023549577 4.100647386961317 3.6712417640010324 0.6645432834401273 +1.654100766320168 4.07039243021207 2.600607383431641 4.753972627320296 3.2365795646918905 +3.1229329795188354 4.568809913367907 2.28283981068243 2.528044585924891 1.4665215612593288 +2.2603547619866564 1.4353399653627212 1.8634767114167001 2.2029442619358064 0.8921253457356063 +4.440686734520639 3.068711014402391 2.948062551092854 2.4132699799528514 1.4725218065415948 +2.3251119188090867 1.6980074921956376 1.9917603726967172 3.2949402160648265 1.4462149446189223 +2.391080407703015 4.500370040411202 2.1127989442618964 2.749267014317434 2.2032236288789337 +3.317731669547352 3.385344417739124 1.7976403626085218 1.5173599593678078 0.2883202874561921 +3.780215095306458 4.24938661557146 2.7308291547173518 2.8848033158858275 0.49379141115992375 +1.3187862117185154 4.2308708365837155 1.2619541485039947 2.9336398576775276 3.357792425483045 +1.9974744251313172 3.3829821172464163 4.72147124340135 1.599111214577174 3.4159572178979376 +1.721840320717499 4.118885221743634 3.4639229384789108 2.761565799624399 2.497825015495539 +4.981373896474991 1.904343409057367 3.2663524901693672 3.0593519979465684 3.0839853800363612 +4.83655381200237 1.4148735045704037 4.958476366695205 4.806302359544562 3.4250624891700876 +2.8697294127120117 3.3779776936068604 2.212672585928451 3.8274390777380387 1.6928635911093404 +2.499786251072956 2.300385791258194 3.6324699508603513 4.365015300823481 0.7591990734497397 +2.3770741214617432 1.320847904179645 3.7712798513330963 4.524918869705462 1.2975305746252428 +1.357660938804127 3.407924782682106 1.645795387644934 3.2910207814795562 2.628754158538146 +4.852170064203804 4.089910629837947 4.898704982841259 1.5584884013402966 3.426089061395476 +1.0421910455108665 4.4205568325613855 1.5016157700226418 3.9471006575537437 4.170581701184678 +3.031770610549569 1.925927862034352 3.862521306808364 3.9702374597169783 1.1110764843345038 +4.601352170814723 2.9572481716412926 2.392770332563722 3.33038414334134 1.8926694424169779 +3.192737054715562 2.73529687449833 4.212771556183706 1.992956428821686 2.2664577468248632 +3.6365333523560968 4.768469445778299 4.603861857430076 1.2036648967709098 3.583659957483096 +3.373083161728241 3.313996368364967 1.0188349056219002 4.240798290779587 3.222505128692076 +2.8788901445426864 3.083453691629249 3.5495526392892396 4.215365755306893 0.6965295042263273 +4.890610985569559 2.1211341681715705 1.7264618714849673 2.071667172684782 2.790908193058551 +4.687524422150651 4.449758414893544 4.26536352495461 1.5620634158662754 2.7137361983074166 +1.1128084847541082 2.7912836832269647 4.196406765442935 3.6367284219748135 1.7693272280829557 +4.4573675341349555 1.8643110903593834 3.6660795820927645 3.1435627048271133 2.6451778026502235 +2.2709904640529563 3.6889900709678236 4.2382605034073375 4.582947105469906 1.4592915194888776 +1.5035148569410892 4.102064948552254 2.0357068465940285 4.419233130495786 3.526139549799882 +1.9339475041167744 3.5112159271772656 1.0280491641516085 3.3403807377053503 2.799045012935171 +4.668563590129045 1.9150173297664348 2.2738114191388727 4.1136468229399155 3.3116478256355495 +3.805899055192691 2.483639992019198 4.942264250954934 2.0127886378582964 3.214062289046739 +4.765258589506933 2.1213808604829523 3.2392221932727128 4.517926941962232 2.936864872674623 +2.5388613888922857 2.372479149970316 3.1549561954403766 1.6005207216226767 1.5633146489723508 +1.8268566974305376 2.02331835630579 3.0208919812041937 1.0525515132758492 1.9781206689917554 +2.93036610548981 3.544348087406787 1.1563904845059558 1.2174054851884453 0.6170062434262583 +4.970024442801075 2.412133232333682 2.9646679257283455 1.6278829344409314 2.8861395596051205 +4.815292043361778 2.7435831121812386 1.0176744032119998 3.227711318425563 3.029231100814181 +2.5876235569725208 2.984655854707597 2.3247319896571206 1.465780677958222 0.946272688665404 +1.7030851549033992 1.2237247072695019 3.8356445722211316 2.419760274003706 1.494829349689931 +1.656077595170832 4.423804375693504 3.570680128543863 4.567268034120133 2.9416830191513315 +2.1072026216191353 2.9483220267658883 2.8231586726193947 4.5852052047506255 1.9525086005214227 +1.88460885657231 3.024885006140042 4.275927247498323 1.8139937246969033 2.713180120811448 +4.203419663882496 1.1912918981793696 2.0126221552618255 3.2194063964594033 3.244879332382411 +2.0238424258013192 4.695312240794722 4.921795262255648 4.142693648109697 2.7827594753384117 +4.103889068985453 1.4424820750970127 1.132619475007664 3.1159435566878453 3.319135670636384 +4.067361700243894 4.410708845279009 1.9851590735571651 3.8263520320883075 1.8729332002365768 +4.69964676485562 1.4899636726365433 2.558755723685647 1.6086772705087764 3.347344413063581 +3.6625415429625376 1.0126401555155722 4.009341533828333 2.911645862523624 2.8682596029638683 +3.1057341257726514 1.9904701554699002 4.439106666677435 3.5266658901083185 1.4409586719269598 +3.9565719929168903 4.493392050169115 3.280050672715109 2.273772252815233 1.1405139333758592 +1.958771769047099 4.317891913576896 2.424607123281843 1.8476216851562213 2.428653958911254 +3.791100131032635 4.199870696865391 3.6788298154475125 1.1867131163282902 2.5254185826353854 +2.881633350994469 4.339623304726124 4.6685315692821945 3.8623309526075067 1.6660414579202645 +3.432779319305266 3.442877441918853 3.3173195285177934 1.9241102091581173 1.3932459149880796 +4.166018745044399 2.654648552362938 4.0696209544927235 3.7991921330607763 1.5353734421263996 +2.9346395397096483 3.2638255864895287 1.6908254999066652 4.942988233294755 3.268780490922089 +4.916547138231119 4.281487134518434 1.238056690860808 4.8226900838214295 3.640452962234773 +4.4983173279220825 2.8078228711163145 1.1384469632093008 1.5658432481999585 1.7436854913988487 +1.3470140020892263 2.4389024684485547 4.235479387178039 2.4285073646564346 2.111248046332866 +1.4791086182232673 1.6783519632827786 1.8322130916806487 1.6606701600035585 0.2629161234288881 +1.8822479600248752 4.120798239222581 3.38044152377185 3.7933957705720585 2.2763212783889832 +1.5985180551022036 3.018451722237458 2.2447862467722377 1.7176149883642768 1.5146356508268266 +1.4523517526575724 3.252632994805107 3.250369585969253 3.371668721621819 1.8043630541380327 +1.8627547350712224 2.0372594179080674 2.583866169474985 4.170910028853422 1.5966089364408529 +4.850504583878988 3.409054122288082 2.078192039180672 1.8112307441547562 1.4659630848907994 +2.503127343238763 2.311113842456822 3.1865962184100156 3.533561000249001 0.3965523222969589 +1.0808814635750497 4.6051951818959935 2.8667414264300413 4.793459048425296 4.016594077082255 +2.5726649405184063 2.402122307926469 3.2164500843705937 1.5866041422959096 1.6387442095790004 +4.4687327741168135 2.295914917844928 2.3457849930169457 2.5153907732865486 2.1794273461702764 +4.28580865377536 1.1297905417282221 4.117756182384329 2.685383585375147 3.465853658225115 +3.7227078232133173 2.914545577130054 3.9605184480263254 1.7166423727862723 2.3849750642363223 +4.793639908796389 2.819328271130929 3.388254323729714 4.4476239695712625 2.2405736964339553 +2.63495422658594 1.9119151620221144 1.6444511236160828 3.059629901620048 1.5891873591864893 +4.631966749974428 4.648313179857285 4.927571028455532 1.9867442804980207 2.940872177989425 +2.766161906434318 4.608792755706071 2.1061948989373644 2.5630195953074852 1.8984144041545816 +1.0362757563275493 1.039278340011275 3.2235203415229385 3.6760116752749674 0.45250129572131365 +1.819078756203941 3.8924447273408185 4.989612968590254 3.3846770206909467 2.6219583991985487 +4.110342908225517 4.747525561375584 3.8241740466992673 2.784843089994702 1.219102362822657 +1.628255876468606 3.816044973507362 1.9545165919514513 4.114591664752384 3.0744666941207233 +3.4270829627810193 2.103274355167894 3.7234081931050604 1.0277886735102726 3.003137330195047 +3.8495775012536724 4.730412833759686 4.056008917460765 2.5447588286777814 1.7492134557673502 +2.9217590240311733 3.8689016022698945 4.585233249641884 4.228448092524083 1.0121139816504197 +2.366471917044779 1.9459817748503174 1.1205783760196981 2.861422826203702 1.7909079706727438 +2.498834008306921 3.630690614993807 2.6817434281340007 1.454565231724033 1.6694507192022092 +1.6963467319387138 2.6122204330188854 3.774172382089969 1.5765144442845282 2.3808664489906937 +2.3566938323937694 2.520731661018484 3.771204979404461 2.4456267033903254 1.335689400669377 +1.7152088821092817 3.9717998114660236 3.5753290180164528 4.693074445940805 2.5182449174178667 +2.837303523974745 3.2038331080316396 1.436269633761095 3.6484526911869777 2.242342038037696 +3.372536948554652 3.267957621361395 1.0340580530697099 2.984784417920944 1.9535276261680827 +4.3103994275021105 3.6935215308657026 2.3671549106129155 1.1058211907144648 1.4041015249302389 +1.1037614274602472 3.6805986945781903 4.588857326751125 2.351152531994361 3.4128306506015327 +4.344850523382611 2.874335477940647 1.8784361092982413 3.694842906948505 2.3370383294719983 +4.55174798492408 2.5365885922807174 4.148397740533243 1.0883098993342681 3.6640148708230655 +4.0048657788684086 1.428184849358689 4.79947492561172 4.136985477793181 2.66048433202866 +2.1262901303676927 1.9083525587202441 3.194625247198494 2.1025799062116883 1.1135797285810187 +3.6638230427864222 1.7481433717853152 1.3032239556679661 3.8341624564271246 3.174189392035694 +3.487181972369747 4.47179490720023 1.533968514812197 2.801193438357572 1.6047808692435481 +4.291511528296954 3.571245150149236 4.026860887624544 1.6350478529179355 2.497909775889126 +3.2026689317220245 1.5251543386786102 3.9830969205140017 3.688311015848411 1.7032186998336776 +1.534946915003761 2.64760915806229 1.4544295511388268 2.5726013072728935 1.5774426592887554 +1.140630190003173 1.2941949503899304 3.1907361204576716 2.990330826926895 0.25247656783907474 +2.560145149249523 4.532392484480819 1.1055999447200735 3.5142417788874614 3.1130877014032525 +1.7317357879159414 2.7509487265560564 4.704331466595073 1.7995316017164193 3.078417981576001 +1.6147180591748507 4.038210497747534 1.5336559194328 1.5523758320729484 2.423564737106939 +4.277982422972622 4.026187982977022 4.659719093129839 1.5806958744544186 3.0893016073467225 +4.8861388021095875 1.5055998003483397 1.0267688932327368 4.044717613179362 4.531672805781151 +1.8199786341462194 4.986279837147528 3.8362837485304793 1.6784783770143155 3.831655951344215 +3.929438798881669 4.420646854991232 1.102193815799808 1.3185584555384104 0.5367485553927005 +1.120672075113248 1.1285976682262193 4.520618053504673 3.233140088048071 1.2875023598279205 +3.1352316847845816 2.6306157751402086 3.565937431837111 3.2794578799405225 0.5802652410071518 +4.514981915697362 4.296639746922459 4.657560676142236 2.670012049133446 1.9995056507521687 +2.087444844399895 4.708851192052116 2.5059838406412283 2.0171316000127857 2.666598536090276 +1.8623294897599783 1.161168481528506 2.7689860784491485 2.323922469619419 0.8304868303403234 +4.58638890078903 3.3638554311744597 3.956598317886995 4.3447555429694535 1.2826745946309042 +1.043591217770608 4.271838830595845 3.251590595802029 2.775828352148763 3.263116970351788 +3.8887423986521443 1.4869538958534019 4.791469179436735 1.9880226517437714 3.691598630107282 +3.0993327785831717 1.8227509790007228 4.6120054584537975 2.277361497772771 2.6608689396829663 +4.882199318618134 1.278593875599253 4.215406763391364 2.354901079595726 4.055546028390157 +1.7920459273854856 3.725694875611229 4.546303628753481 2.831202619126438 2.5846798115430523 +1.6355266638791255 2.3704519862688986 3.6951682030602693 2.618039210990058 1.3039639930028366 +3.0513348017205626 2.4258872509308356 2.1598102232680554 4.023036851976974 1.9654002413551468 +1.0120792271250076 2.760440864440059 4.184052268812751 3.3396225472783345 1.9416049983056956 +3.3801120106508153 3.868640404590768 2.48909789882686 4.192383609058371 1.7719599889287605 +1.6663347240947246 1.0568006103629584 4.904676483022611 1.7707167828987842 3.1926846442771315 +2.1683431300461438 2.9507313611216377 3.614773689243516 3.4053706771939445 0.8099265186304703 +1.0609905264626773 3.896047212152854 4.333822168496461 1.1242386082046187 4.282402718284705 +4.130864284170798 3.9489004639167513 2.303628412000249 4.6674095515276335 2.370774579639918 +3.3097355756509956 2.5015488751144757 1.5269659937285143 4.947841216454776 3.515046661480692 +2.960401696572059 3.901739784531145 2.2478451361133662 3.466294533712844 1.5397195622427475 +4.738739463018403 4.457498531466147 4.034271302066212 2.6049449721691214 1.4567327204801397 +4.601566159286408 1.8476843356337747 1.5047558552505014 2.267216018348082 2.8574832631102396 +4.890181231596456 1.1540494665863763 3.325672364351579 3.586167364453833 3.7452020253379663 +1.6846419175869483 4.484474191958979 2.4540642504754384 1.4473122972097179 2.975333638437814 +3.9402772181580734 4.797498324843106 2.2038047991269933 3.9300281847480014 1.927349268506144 +3.350070266284933 3.800210189281262 4.682465357880847 3.5519191574190674 1.216865095913967 +2.0305686797570615 3.62191818409829 4.918489000510606 1.4710936061887172 3.796963029811963 +1.69133469164001 1.0282258638699782 4.76173393960287 1.681360394014229 3.1509386693220294 +1.7498853172616649 2.6765190266363383 2.35789033736636 2.439991584649531 0.9302637508550569 +4.8339523546585195 4.592409410385798 2.980588925227417 1.4927659832852118 1.5073022591695049 +2.166814843233776 2.9086057647569206 2.5510588782700108 1.652271133098525 1.1653639698071154 +4.102646192196788 1.6597003030069493 2.719319163290988 4.766398286938426 3.187242939592571 +4.992183560448929 2.4704173018361435 3.962130524877266 1.585740791380887 3.465044477138052 +1.0918282431158146 3.761696570179667 4.814123721496253 1.6234167068723444 4.160385575524095 +2.9392361494447234 1.563072693158686 2.664660154703207 1.26714127957278 1.9613477164345303 +2.952302717868433 4.7834435035667715 4.757445364544396 2.8224652119815428 2.664061704964825 +3.9787963307823646 4.623027519435764 2.965715813142875 1.6503648696758422 1.464643959777729 +3.6186540100345104 4.107717063679939 4.046689430148895 1.1532707310956383 2.9344598205584673 +1.532427459145974 3.920953333629256 1.5482654193502783 3.994933990682802 3.419245962346444 +1.3253362464958718 3.8434359971753236 3.834395696633269 4.50080759750259 2.6047900445126433 +2.0150520096927833 4.4876467595896745 1.1641047797885684 1.3883935559659122 2.482746513910915 +1.8665696183096654 4.330730376827614 3.7633200078620557 4.681582800046032 2.629694811062543 +4.1690757157429115 1.4911930893071395 3.4317999863506143 3.9488239060460164 2.7273373635294456 +4.5257155056781775 1.0049449495528027 4.654589044466932 1.149317725502645 4.968173943053223 +3.771836248874455 4.208548865137924 4.095306790466483 1.1419672506896204 2.985453457418671 +4.855316641100438 3.1879252972168604 2.2368524220934436 1.536661783269853 1.8084415457387806 +2.1733380070263433 4.460926774738832 4.2134784042961195 4.863885843435283 2.3782540249207837 +4.361152014216977 4.831993174356121 1.780913251446059 2.727303879591505 1.0570461764382422 +2.857366217699768 1.515233457437041 1.5460224772985125 2.23710627995869 1.5096082831217168 +2.0395627573123973 3.858806586850912 3.7541826405431173 2.6083501005495875 2.1500186792262954 +2.2952119880510007 1.3511610609255018 2.26304036675564 1.3338641918238436 1.3246133462514251 +3.9224495742717487 2.058650422499028 1.1989146648911553 2.6211842389618822 2.344482463034441 +3.133207056135669 4.047926955103463 2.165859993272259 4.260849604820642 2.285977682757051 +3.835827943721144 4.10435414554295 4.1065356456483135 4.0226818169693805 0.28131438933862074 +4.384138154684505 3.0226646421972148 2.1823823798183724 2.1562175059603037 1.3617249082793812 +4.264157564915729 1.0211266485868706 4.264146268426279 4.884965730126716 3.3019185829288427 +2.722646802779203 2.123574524267804 4.025085812697462 2.244319785061106 1.8788334785351806 +4.913634686880311 2.567192662319252 4.131979082799345 4.552731477587651 2.3838671842924253 +3.6524490889721797 4.733015268578006 2.7393836466796597 4.722896148269564 2.2587485722123595 +3.94959998756729 4.053602130287384 1.734104151340833 3.0162081455608787 1.28631531814146 +1.4791809483695486 1.0575119879761323 3.171887564212497 3.2819691041965826 0.43580116751166725 +3.7086080837490094 2.434430335221852 4.177414602828984 2.209216735163432 2.3446389447258102 +1.0129916615748509 4.631531365589025 4.388253872354477 3.405951076262818 3.749499749664811 +2.29243362876684 4.287909596899733 4.877562564925281 1.1960757189878657 4.187513550569852 +1.7642556561407732 3.3395666606835763 1.7387842391255761 2.0125919296999046 1.5989294582473934 +1.58681187809762 4.12723181880433 3.615960433333382 1.6123673659630966 3.2354472109361563 +2.9888496515341574 2.229944198486886 4.120769912885484 3.8235092759197484 0.8150468532263399 +2.740910073997859 1.209194884278145 3.3897154044692646 4.702906302563436 2.0175781911131665 +2.94322370158544 3.1606551387958626 4.490208320398496 1.2910612487135342 3.206527470045728 +4.431092218772243 1.1447644735605644 1.5767847478387051 2.8635212142484288 3.529254989787031 +2.861713772728164 2.4957124099183736 4.28778613316131 2.138297399043526 2.180426292191024 +4.376836940939626 2.2756889897455275 3.287432963011642 2.3247313085888597 2.311193888066408 +1.4971838211317205 2.0122038619022624 1.402114268740609 2.09552107678681 0.8637468632881463 +3.9049841461741166 3.57007321901576 3.5884853728998096 2.847226797288881 0.8134061747041342 +4.623977013290512 3.648999022562786 2.910347459004525 1.3465838727454051 1.84280727047444 +4.33186397164587 3.6299282314891825 4.964757101072356 1.9430976529735235 3.1021185669787443 +1.3418470301176755 3.418138377359306 3.068834122251825 4.446193371027732 2.4916067624765743 +1.64897826527184 1.2806804870061432 2.7278318325349122 4.869277076689487 2.1728854059033336 +3.035694713084249 3.2170723404486354 1.164082758055835 2.109151144647975 0.9623160078914852 +1.2794127212099786 4.1521758773492 3.4938434089815047 2.276145129400404 3.120185451438064 +3.1508387853963935 4.358300805847626 1.1284673898912794 1.2820961139220586 1.217196087604416 +2.8703037686771515 3.647572661414672 2.536087817441709 2.1902716309384815 0.8507266108833358 +2.207907242383235 3.625685970023357 3.2721267382961874 4.291702761694818 1.7463194976974312 +3.308796735129963 4.074606583000261 2.3967093571321607 1.200276052416775 1.4205341867506418 +2.1889183233963534 1.781783766016106 3.290152442709858 3.0050929357421823 0.49700852138153967 +1.0311912063035962 3.4156441113205602 3.105380945571951 2.1381564152942527 2.5731573889318846 +1.2981199061735187 4.400109844074537 1.6182542910516169 3.4396658490427576 3.597204697876238 +2.8826337315999626 4.553494923302958 4.169044081044512 1.8332531955177713 2.8718802521778217 +2.4729452754085917 2.2256956273237236 2.206005856775551 1.0700332631682383 1.1625687600761583 +3.440040772512462 1.6209775547485585 4.3402678580585095 4.708326388423645 1.8559251256438418 +2.5776319092457274 2.8666393485527397 1.3995621316245206 3.4313268697025276 2.05221666762357 +1.7024205250590727 2.145402107981729 4.621788848834184 1.0134702730202698 3.635408591530313 +4.322823575193351 2.2420788325424006 1.9657030308711834 1.2956317336982206 2.185976721597151 +1.2730492849629118 4.905990681838277 4.509427523840121 1.5403297856048477 4.691887101404353 +1.9269263728202675 4.110452935870244 3.92094962837072 4.940372618683243 2.4097741563728685 +4.3494362878060855 1.0418223647224987 4.678159077601 3.4491401449944297 3.528568746798309 +3.9661311764567224 4.439777311211261 1.1868351710035072 1.372391260159337 0.5086961010178085 +1.0984784995749934 1.0155145834458046 3.166561456854976 3.477935773665593 0.3222374536716203 +2.972582236737549 3.259413209274671 4.619006387520557 4.286179134682895 0.4393699887771762 +1.6460103546889662 3.4682007767161784 4.913727349391502 2.6461112395088406 2.9090308963514095 +4.91323505156268 4.292633712504225 2.1657610026753678 2.7514108582364605 0.8533063783658692 +4.791946064277225 1.023889842170147 1.4341854739210436 2.134338006061853 3.8325528386733363 +3.7090316362846183 1.5751160935106503 3.5327400283098993 1.0142768021397672 3.3009472224292815 +3.32580278237483 3.4214338971873337 4.519829343001487 4.731590865730969 0.23235372307968546 +3.3638867418199108 2.7981345762093297 3.726359421953946 1.1534774002221106 2.6343495232493273 +4.817829872934245 4.639317274774658 3.0361213318824127 4.574566380746407 1.5487672246260322 +4.173820162365256 2.440234732478775 3.9060038339173553 4.060603210987511 1.7404652855214253 +1.3631250559520502 1.606682803058503 4.58834335301351 2.595708705309602 2.0074643746292606 +3.7854945403639837 2.9013407028817157 2.505119360402123 3.8156308875392466 1.5808758556869342 +4.160530899558478 4.4067746862582 1.4044472623728628 1.51916320867489 0.2716537333153877 +2.349089414882291 2.465020855099192 4.902216537867953 3.7776565445143584 1.1305199146774025 +1.4596177723672525 3.4318663790206765 1.298842902490771 1.4999806431591232 1.9824784884501374 +4.037654961579282 4.611785866010502 4.459429117556358 2.864919524544447 1.694723321852278 +1.399432430614834 2.0818644793305676 2.0742606467327223 2.8301124302474823 1.018344450447292 +2.3889274621966314 3.4219008738246264 2.1914691493131113 2.920194452319148 1.2641497681729088 +1.070166153158001 3.906448707109288 2.829237934820593 4.750139171654269 3.4255452540460745 +4.651324038023491 2.7395454248496276 1.2335354680378092 3.612559693279944 3.05199176441843 +4.199753960807193 1.9974388214187089 3.0356047174848717 1.1254860516797787 2.9152607586006347 +4.706076045456813 3.804472443321728 4.881043855780339 3.050215674970414 2.040789279428609 +3.35549186630305 1.4276347663754203 3.202332985184655 3.329746211829631 1.932062920317414 +1.0581900514190017 3.9890562095261783 3.8260719309594236 2.433816300641533 3.2447422358162425 +1.6894482495389154 1.839118773907542 4.011951469947261 2.566216527171445 1.4534616577769683 +2.0247011158012658 2.57537327928584 1.334524596634438 2.4460919635917753 1.2404925807602598 +1.6682901487340467 1.6873676536329194 2.4188529472861333 3.1272278160322426 0.7086317138431176 +3.1180254711736883 4.84235438358621 4.979024709622863 4.29929809922776 1.8534666069452037 +4.328904750435614 4.867912572788809 1.8865057346658798 1.972703667445883 0.5458566809827279 +1.0719960880090755 3.9710432184379876 4.374267841146471 2.252806445274364 3.5923631106311817 +4.049714886019212 3.6960397378062813 1.7015977505644964 2.6970564607434397 1.0564204438264928 +1.72306054196088 2.618879598177557 1.6980789449727154 1.0766369331945147 1.0902669193751937 +2.5454610209923025 2.196759668988871 4.191109312156469 4.9212497377583055 0.8091339036198226 +4.396315345047503 2.761805221038 4.148224781509478 3.0932250250655504 1.9454171356257526 +4.804480514345473 3.818177728466116 3.8386034913175866 3.298146558537483 1.1246718995437994 +3.5399988779789986 3.3355485634747892 2.7217270377266947 3.383175330532155 0.6923249057748306 +3.9158252134859666 1.8565773584910614 2.9235808020783365 3.046305685946624 2.062901627664684 +3.167418101234484 3.9765173176564415 2.543194583484626 4.767331395095109 2.3667332124207556 +2.1337283218999685 1.0864329354492472 3.175094467442311 2.1337932225444542 1.476866923289567 +4.309671243122233 3.727168453975434 2.3364274885087912 4.099286553873622 1.8566048539478628 +3.196798075488403 2.284529456835648 2.8670338608598156 1.8802864900161418 1.3438394273295855 +4.976278277913968 4.839932467090989 4.432656347694744 3.888459879854399 0.561016912168326 +2.0165709984057307 4.5270120376445355 1.4333251509463452 3.131559961053864 3.030893545104369 +4.6943440152338525 4.448403700024722 1.8572844943308118 4.67278851244053 2.8262253120791936 +2.3599056221965817 1.0277301291727885 1.9156699671658197 1.548970915389634 1.3817234668292857 +1.820629119342136 3.7708800426709264 2.2311482823721653 3.975502506776124 2.616534028852049 +1.8041966993668903 4.31738182460597 4.003915495864245 1.5352526948954401 3.522839124713207 +3.667943434006957 1.6712459563672133 3.529012240413804 2.755747674235126 2.1412003424529 +4.576844950347253 1.1653209262777007 3.7731031100670953 3.3119395600670467 3.44255253941786 +2.0573626622358843 2.4183680570755857 1.3848713524925378 4.164199560757195 2.8026755403290977 +1.9882789278831505 4.29419107734477 3.3849379613912975 4.36359543662514 2.504995268431816 +3.4440083590613155 4.249543711270871 4.473402546665139 1.3817195003829252 3.1949008219862227 +4.6224926779633915 1.1014301736687706 3.5194341833658673 4.646753016430681 3.6971244110162322 +2.112002780327164 2.8909257459406748 1.7537383165926292 3.2249986472415344 1.6647305928892133 +3.923484263898672 3.4960551821731047 2.50038936412531 2.9633173438816978 0.6300777208774264 +4.931860082514919 4.023776990271873 1.7015647828067757 4.23524518924082 2.691496108926312 +3.4235264792047135 3.489669770794667 3.8573212085271282 4.889276778296498 1.0340731274916577 +3.03714910059277 3.832929341984332 2.7464021523722035 2.8571234688154075 0.8034459549366895 +1.1710157662099125 2.5266781358033636 1.6217986183275115 1.5246627306984388 1.3591379035981663 +3.846154146351623 2.1636701530246767 2.0984722933107243 4.306052971948258 2.7756377358176882 +1.464826508308262 3.707477872770087 1.6727765732042954 1.7979723337386457 2.246143165735047 +2.2796619044520137 1.144594786452135 1.4351870677275955 4.873002764527547 3.620352762857327 +2.501228182417666 1.9458876865540344 3.749276020223624 4.4559335067876695 0.8987590720894439 +4.564664146307665 2.162685248067624 2.6120659286117927 1.2091911913844564 2.7816470221689 +3.225726052574404 4.90644342835148 3.6341757040865716 4.004826702490012 1.721102280475059 +1.1074304413758123 3.4265466849568327 2.915757667048447 3.339592666130902 2.357527573049479 +1.0199280300147238 1.8826370714115837 2.705617724775312 4.505843732063768 1.9962666573946544 +1.8694179080086508 4.926208132873004 4.325504377553212 1.2975864801066481 4.302586811733551 +4.9901703145622935 3.5209004308324685 1.8625940332043474 2.9304843398463767 1.8163545078688415 +1.4384275551092385 3.4378803000588425 1.3070067434140595 1.217662042947452 2.0014479145828337 +1.156382858289514 1.7163338561169001 2.614702169062279 4.705380375772506 2.164366069772158 +1.316939588417731 4.4004872852550765 2.629662567408156 3.9392803506325627 3.3501291224083447 +3.473030004825774 2.7070626106872453 4.101559627739272 3.2030570579958724 1.1806832414830242 +3.5432780810549627 3.353355161820205 1.4272103121727362 2.6265038786451536 1.21423876310748 +1.120222903170501 3.314570216652067 1.7933971815271863 4.569314445311478 3.5384850978292155 +1.4176593663217778 4.35398304104006 4.600126647129312 4.054542934262415 2.986579701005266 +2.915270553822423 4.83763015487148 2.430708396499088 1.3921139651605268 2.1849816540540927 +3.402163749271645 3.797771210914055 3.4292345183208646 4.257168128483045 0.9175943147945784 +1.352183929074163 4.747535792218923 2.8357001743353805 4.492219791477435 3.7778924702189522 +4.438671798761812 4.64674516752445 3.926311591312579 1.002258704382804 2.9314467097920414 +1.0605178180996724 1.7183333920341068 2.488480222462591 3.4234186234491597 1.1431671544223143 +4.678577444929207 2.38317245628515 3.073609515589351 4.146552957284449 2.5337899855687613 +2.22773046266122 4.414618752574195 3.1224400292099115 1.0208045379033743 3.0330433776782297 +1.5667424662873644 1.3432462911743395 1.2190387931705873 1.3234174628642643 0.24666869881923328 +2.1211266543015936 1.0727195438361474 1.7042051919829722 3.8194951189917834 2.3608491998811463 +3.7817777682707643 2.2608093002270646 1.5169057574751323 3.1872057096559505 2.2590367440655856 +2.6631494019039614 3.4315810571657486 1.2820371481642652 3.9528992779162397 2.779207031682171 +4.42929554025601 2.4377535724284014 4.493777428009826 1.8727935973894345 3.2917769745218473 +1.4314605221672516 3.732702902014046 4.493252412475688 4.653052742277848 2.3067840462877784 +2.0851574580837697 1.0880365050633123 2.7624781620678562 3.193630040799388 1.0863434712309707 +1.5137903453220183 3.490984015800352 3.5235054764328235 2.512839682871541 2.220526999803074 +3.6557863446509655 4.310229091296368 3.574683609587625 2.9910985876887164 0.8768504926277504 +3.5593641088001293 2.611137753887498 4.433984811106712 2.6025529631375126 2.0623471661936 +1.971660422314402 1.817615259485096 3.039088706737267 3.2614254539089647 0.2704875992240658 +3.5566782447647096 2.9364708172403455 1.1407489321652595 3.0002632048904707 1.960216973609085 +2.2128388545194624 3.1750685833990344 1.765966331074364 1.7673317832973496 0.9622306977016624 +4.427072307517685 2.5079869772171577 3.8885889784729577 3.0773663554781145 2.0834996157986967 +2.5583541394905924 3.621729742493398 2.196086267618535 2.6485291323974818 1.155626331887155 +1.773636008346445 4.500054517322903 4.491483076695229 1.8218868262163932 3.8157701747694492 +3.40474257275364 2.3112091262183316 1.8781808582867883 2.0392165689855197 1.1053270551341965 +4.493915421833028 3.8335988465538753 1.1562624911045711 2.5174524175565596 1.512896558084114 +1.245323001935624 2.5445614852663434 2.432563647115793 1.5085324017753057 1.5943194093195376 +4.290536176509009 3.706378320619115 2.9387789705245213 1.1670476885675294 1.865548749312878 +4.654258344983007 3.8587834166705055 3.11030683068633 3.6116626424005016 0.9402861327879698 +2.5623116980968477 2.9333614941686874 4.0658701150994965 4.430534327830268 0.520247959353525 +2.145964821653736 3.7934571975537077 2.660242576760933 1.2537553310075036 2.1662034763880333 +3.674800672793111 4.783355474047811 4.517910394560358 1.0648941268400445 3.626598281106687 +1.7078813706388223 3.2452965590488527 2.4440536618565285 2.1950427801081625 1.557450442480578 +1.931939186027626 2.2200264976426873 2.1589315156458873 3.892210157250064 1.7570569565483112 +1.6293328867311883 4.508947716123696 4.881574753529863 1.1573146016892246 4.707684701022925 +4.7421524952333325 2.648150772512387 3.015538249969139 4.129573927386373 2.371901917305343 +3.7317406458378612 2.3849126841310193 1.8970193024203157 1.9815783603016248 1.3494798230078067 +2.8838895824130635 2.473623431476532 2.6934685711086517 1.4552306682236194 1.3044352872969205 +1.4937468228739093 2.7841732410252753 2.6763607325876113 2.1370953109596464 1.3985733930067992 +1.2965316246370815 2.5556358266712893 4.626111859433504 3.6844822687551146 1.5722625981754288 +3.6733568934377363 1.1306232253287627 3.50223226766516 2.6145232105438434 2.693236320308735 +1.2004134867155032 1.6054869758004826 3.8702459190674197 4.168455027454005 0.5030041787939751 +3.874184405384545 4.228176744170497 3.9451685365961615 2.3027563541933564 1.680127481122874 +1.8367551478024824 4.13361781900352 4.741658378811364 2.645904976203111 3.1093022456655506 +2.0467596882765418 3.742857742759064 4.120553940550227 2.467781500701947 2.3682072013110327 +3.9825996287852616 3.0018443811631985 4.8459412313445025 2.7745548161334845 2.2918382440431886 +4.217101234182053 1.2037665395585213 4.8241270715046385 4.589004279298885 3.0224937897763366 +1.7625979881096945 4.932953779158297 1.8271341523420794 4.192623246556434 3.955590284228444 +1.5414657149275235 4.521692529684479 2.6545313391097 1.5080624261073896 3.1931399649681955 +2.450471908548504 4.8666901003565926 4.120533008978041 1.3756050242057416 3.6568757145971573 +4.065683420831254 4.146751470297085 2.0988763343873162 3.865437688178382 1.7684204944956718 +3.1937648005998143 3.6279080356430398 3.131943398284385 1.6120008320210588 1.5807295003487924 +1.316122724019897 4.546803561083342 3.1795899805866195 2.0498052857416695 3.4225300769569373 +3.763701668198926 4.002752634000954 4.968400007977945 2.2804870040897516 2.6985221290036026 +1.608634797708285 2.6647045977026074 2.010401990443955 2.164845648802968 1.067303268086144 +3.112629265931714 2.4706380915218835 3.8447764680298517 4.837416053091241 1.1821531262281382 +1.5080667400531316 1.3976751232054925 3.447831036139832 3.310372296828559 0.1762986502593834 +3.38653376564832 3.2422712769346673 1.2811771410846826 1.0462945974737083 0.2756473742719454 +4.528964528294464 4.535713513691585 4.285068652089858 3.964546364916641 0.3205933333346798 +3.8183520428912527 4.761859452181261 1.672557783272973 3.432692169041851 1.9970676722012022 +4.819918864231191 2.9734148959008575 4.168207344007712 4.474786511012008 1.8717819559715596 +3.7568329824884263 3.9873716153372545 3.6863972576895883 1.810678214697881 1.8898333232001 +1.3313132335186872 3.04059801555231 3.705608276246907 1.54160338608437 2.757638778146823 +1.4098579606196422 2.0238869509084783 3.403901755002877 2.292485581223873 1.2697549024330201 +2.2757478056169163 2.1546688182583797 1.273654915613755 1.0716169255656176 0.23554080453810958 +3.869141964306408 4.251761369634641 4.054402604504352 4.372468189696321 0.4975573593237676 +3.469850499279642 4.047314967577032 4.539903706512171 4.489373248432019 0.5796710613268331 +4.099953245789164 4.180634730007921 2.9485626735757102 4.905460140081945 1.9585599802697546 +4.693948401133386 4.429729829565016 3.434924688843357 3.185115886766092 0.36361503153322494 +4.623227825826715 2.189825890384596 3.7561252171092105 3.1084431959833894 2.5181217166576917 +4.683283730374444 4.364118877183188 1.6061178197848638 3.6820152077277966 2.100289544034557 +4.500877653688956 4.712694625011353 4.39574502657943 2.850725151382701 1.5594719760525062 +1.7310558148201434 3.502940157953388 2.8780248031200646 2.6283095965951953 1.7893942577896262 +2.825401267780759 4.370585400962581 2.882142011384011 4.513649998381917 2.2470897438853696 +4.065305982742612 1.1475082326234345 2.4133068901744577 3.4491400259581133 3.0962063877894086 +2.2434292007146595 4.479507502118576 3.84191592744276 4.2685181569475645 2.276408494147721 +4.78059782500106 3.468487574673745 3.7829323213225603 4.390297272419645 1.445864963554748 +2.899362329938855 2.6427565840743905 4.598238286105763 4.196292196386873 0.47687227624487105 +4.7500744888105455 1.8249830929429987 3.00113674980877 1.0363729048712331 3.5236992835019403 +4.0455014128318325 2.1305300174372777 1.7320721637505958 1.0563375358838698 2.0306975974963755 +1.8053860116685319 4.4264672010978945 4.7188977280995905 1.2776644563718587 4.325754619950882 +4.77404125788612 2.214071556342964 2.7580842696592054 2.1315043888117136 2.635535471190212 +1.4072242009629248 4.6199919575921085 2.2252385585325962 1.5984111180341007 3.27334527634926 +1.1160397565716589 3.4358956192880554 2.5271411297604605 3.5327318935817953 2.528427180692063 +4.267379956621134 2.389695277703883 1.0812887766298567 4.852168122449577 4.212508847963449 +2.6127264905008967 4.85088638456144 1.8900911527821602 1.5992747922828006 2.2569744940772356 +2.979307194113147 3.644979244114656 2.2161667086321035 3.4262192942041976 1.3810671736026896 +2.499843817422646 1.0338284221375993 2.5461387801526922 2.788338378283632 1.4858875410163315 +4.618385310984246 2.735164506936976 2.2077869314336764 3.4592902131773138 2.2611459618988645 +1.871878140893127 4.608511265333011 4.8605944204797265 2.5830341359404545 3.560399093850605 +3.7894665219444463 1.6965432479619942 3.394034552190805 2.2090715684760327 2.4050914958794483 +3.879050012892668 4.447275045038685 4.927820150832548 3.049341512412913 1.962539600149823 +3.4292481706700086 3.290382775804249 1.0424939796924444 3.119070336029953 2.081214299775779 +2.2662161358025945 4.724283548316176 3.8008053348758892 1.2589005972432772 3.5360111848890314 +1.536836292605519 3.255096540534834 3.3518160695399026 1.0451781550044137 2.876281757475568 +3.3076981713512743 4.3810177436420865 1.2389057045247882 2.3606112914666197 1.5524942280211707 +2.1848450819645846 4.206626071958308 1.1225162698469555 4.076532203069782 3.579638041092189 +4.098858050768033 3.3523054383553696 2.3231278822497456 4.501972890216303 2.303194818473018 +1.4344244751112356 1.2364085401449505 2.811258709399019 2.657298157905372 0.25082695612074885 +4.383438421570432 4.6469658505338725 2.663369640173022 4.858756861916235 2.2111471591030445 +3.549419864746541 2.465932035274213 4.360182485720127 4.32169533328508 1.0841711753764787 +4.277331913126783 3.1050296747532053 1.708818013738112 2.5405686945416286 1.4373940771802334 +3.4006259996320725 4.58751868005448 4.345499999245758 3.995729427850655 1.2373575422869265 +3.0889254566823987 2.6269994666678866 3.415720575622966 3.845512522752152 0.6309490772383965 +1.0650412099906061 2.3264454157980414 1.935011729033692 4.6029228972224345 2.951082948982442 +4.566042209192336 1.93469539274325 4.673553705286169 4.628042858208451 2.6317403568054485 +1.8501213240406602 3.210784148214072 1.3027686047887483 3.479404615119474 2.5669335095705197 +4.712788765712933 2.798017225818771 1.0618106022393654 1.0957746395499224 1.9150727416521527 +4.801163865900165 2.8226328578575726 2.1962941704039576 1.9287544555191523 1.9965376151795085 +3.353234463974171 2.628009671298945 3.4975559862480377 4.076782228064193 0.9281454838112891 +2.109033294261749 2.368885254625075 2.863627998591798 1.5143209228569896 1.3741006607715036 +2.491619656053761 3.0945645023219828 2.4185416033411204 1.8351855797990257 0.8389557424824353 +1.526304326811982 2.375721169408495 4.2157576092066185 3.72762298563453 0.9796858594552101 +1.1395903872679485 4.879629572050771 1.8321316881309748 2.7128878766593503 3.842346232101161 +4.5697712179218355 1.8851420601342301 2.103043095715554 4.533101630106014 3.6211073161958756 +4.7383718011463865 4.5577376275884465 2.26570359522877 2.9494992549693073 0.7072518709321005 +4.03974394401399 4.403419336146012 3.6875897778048676 1.2859584275972655 2.429010690207511 +1.96291741381821 3.4424367685356834 3.966323003899205 3.742591058317118 1.4963400363746053 +1.886002057221622 3.9076870716560066 3.5822052370162805 1.9429252606127374 2.6027771972695164 +3.5383078892170365 2.62972048650127 4.844628164332935 2.0345192325815455 2.953344422291907 +2.814406234661278 1.654990851846034 3.2035522736866393 4.2081471289084025 1.534097406635789 +2.643925764656438 1.3664073897950364 1.2205878562246668 1.0585298727449843 1.2877561834904998 +4.609416701491931 2.3223450142371056 2.4135810011005177 2.24192112258042 2.2935047452613144 +4.078143769982703 1.604110305184745 2.202992456049084 3.1342096389176763 2.643483880527723 +2.0456482140866625 3.5391561071791675 4.971231951241574 4.25838567938348 1.6549065333219266 +2.976915033133547 4.861600229291199 3.254240395250527 1.2296773150664753 2.7660249373894192 +4.350299720860784 2.5555544883106283 4.5358128379202665 1.1100577286688007 3.8674162587345102 +2.3328518131972564 3.7773953210330653 3.839547231560354 3.4784322507013488 1.4889962979911613 +1.6575823873478557 4.692458549960653 1.996949932922099 2.861919171861231 3.155732103126994 +4.590243356606772 4.529062462770679 4.86988384662356 2.1566151017380655 2.713958434416985 +4.425424976231659 4.238034399146093 3.356697875638012 4.529050093849795 1.187234160528811 +4.066969998140129 1.3237602685879999 4.86983497106905 2.87465342103424 3.3920420159409543 +3.5681643918298485 1.1103760931302018 1.6824510031313737 1.5384430783657388 2.4620035750624343 +1.8717210668157667 4.513008324183508 1.5540870486495897 4.1211577173166525 3.6832390899674112 +1.8771638605826038 2.747601500230079 1.6073245911421097 2.3041728176619163 1.1150153072128057 +3.4458764572157285 4.057345106364669 3.8964087930618105 2.9326718270293464 1.1413513256615988 +1.7225091708782054 4.267637802632914 2.746876816656903 2.6594030126757815 2.5466313864712578 +1.7429395543543338 4.660099894851068 3.800683434143101 3.400044417122404 2.9445434406926876 +1.5857500863417373 1.1925528310082512 3.543336255800555 3.926897460816859 0.549293436694219 +2.4472304707921557 1.700878030297142 1.3986107042129157 3.7729396417567784 2.488871203797222 +4.96471030428908 4.462407325914274 1.9472440898112038 4.170083182914212 2.2788861129751976 +3.930967834601355 3.499833418979262 2.4428189583883966 3.7340054407078997 1.361263904045948 +4.362386744273188 3.466396266551417 3.4020870671361374 3.7904503331944017 0.9765372305199271 +4.171064148406019 4.249132937121074 3.838010138265734 1.915004233679328 1.9245899419994945 +2.3449361175372374 1.4088252494728413 4.164712147057356 2.831220798231623 1.6292644765971394 +2.618285696734883 4.410213739549983 2.73442259914409 3.354192072773205 1.8960802491112196 +3.497985983129053 4.584080156786026 3.9486880053249815 2.782800612756638 1.5933907136046181 +4.098922739417523 3.5152150460817793 3.7334380281749557 2.9451539739393544 0.9808702367904996 +1.0725751196658173 2.3327927474619967 3.171557481402309 4.268031640419107 1.670450253913544 +3.059460040718003 1.296410796332772 1.6239252091747174 1.2501388447787969 1.8022371887006585 +4.8895471535973565 3.876170161910971 4.2184373915246685 4.434311508569547 1.0361151295533013 +3.644595575750868 2.7220717833704318 3.033391704024281 3.803750514320402 1.2018747206380693 +2.8984276422069515 1.0436362742568557 3.662204954612009 4.553740527741077 2.05793262687989 +3.0431311550105407 1.135397129880328 4.519655168208617 2.1826521889582935 3.0167916791956997 +3.7435960898932015 2.7391342132780103 2.298084480024089 1.4927318265734568 1.2874535168281944 +3.291263775353776 4.982979480064941 1.2638434169902228 4.981326924469266 4.084309691238543 +3.883367624079896 4.439723060515631 3.923103674599261 2.6947983285548696 1.3484307155997408 +2.3343613409406556 2.1820056678845443 3.893775514355422 2.9743185168473265 0.9319943247568532 +1.4172709170015847 4.229448527377826 3.278409829533528 1.178068622695955 3.5099538597311137 +2.9616122810299 1.37193677265733 3.246331966616907 3.715992386579056 1.6576034302566494 +1.6948029493989774 1.636086490764984 3.4306526293245474 1.8686132638050692 1.563142540508386 +1.1405595421979684 3.3676722965521817 1.634637231477178 2.1125948432179955 2.2778223590148983 +2.569197528332135 2.24081162717839 4.052953514160768 2.0491702661731885 2.030513384588294 +3.703458390823293 1.9774482504971007 1.1721609734333338 3.557824153552555 2.944571244423439 +1.226417356588799 4.538062610873127 1.5209761874272365 2.0833333601087927 3.3590534202197957 +3.909611405125772 2.509885768370106 1.9018287133768 4.089727063138039 2.5973315242916155 +3.4982886484044067 4.5720796426969095 3.9382974250379768 2.7566906261637114 1.596628236807044 +3.4620877435175093 2.4455189956696053 4.626250882600349 3.9916151509892197 1.1984049945400965 +3.1588159240769054 1.0933471102854169 4.386416515590232 3.3807040432839646 2.2973069010686413 +1.8265953864221784 2.4924779065776437 4.707109962630989 4.551468008834899 0.6838303506207207 +3.8113472766885064 1.9554590425315248 2.1210309905678932 2.5681853400735357 1.9089966343511802 +2.318679714334062 3.4479515537948284 3.505401370780301 4.143556748117527 1.297111087387476 +4.566820763306826 2.3647508309239744 3.359715854824633 4.992217786084817 2.7411994715220644 +2.1280945079430884 1.1186908533274451 1.7134200505920059 2.3018923768231256 1.1684157721852622 +4.710103724121204 4.977750986363942 2.6762388103466 4.970194284566948 2.3095165673126345 +1.412455287288004 3.6182436114469585 3.134757495212581 1.8968027388546616 2.5294335551235902 +2.423703503175356 2.4098990449267874 2.2140639977913366 4.814141862972786 2.600114510569498 +2.4670304381526944 4.804942639254222 2.9305491089072846 1.8308482314117875 2.583636096671463 +2.2656581690963518 1.4525191026500224 2.920939826201507 4.7385006983966065 1.991161134995312 +1.293690427427686 2.227718941538761 1.9669920328356616 2.7092053424692635 1.1930171256816928 +3.641453038465811 3.0474979655474064 3.804259241738472 2.9255955005455836 1.0605812551297473 +3.870592596424842 2.904322805422634 4.9779684450606005 1.057541429456692 4.037750028627381 +1.6893983010512086 2.0036052847534496 4.871552330523375 2.724553985269191 2.1698681810495923 +1.89877216364791 4.9963336066962825 1.163157409570665 4.475930325416485 4.535344671072038 +3.675697308151923 1.2248711327895405 4.047849667201538 3.614805519892716 2.4887901027125263 +3.976709133977569 3.97708569565288 1.2094919039829626 3.58773221280941 2.378240338638131 +3.0494381934295736 1.4671500435721376 3.1138301244512347 4.075548086435592 1.8516309641995659 +1.380461060849583 2.01041936688235 4.927490309342639 2.6573404653858512 2.3559345876650952 +4.454386895632226 4.81332480624669 2.4729954485856003 3.9900786390609166 1.5589669112906284 +2.854930127841299 1.9479769669634495 1.2279311614134722 2.880539444407279 1.8851202012195565 +2.552881469318914 4.451636804000727 4.2280772531497135 2.20329593814568 2.7757901928229565 +2.610604002372904 1.7281080949465282 2.6549245730422095 2.9433969224751957 0.9284478030625574 +3.643730850898909 1.535093895313958 3.926238934905698 1.8764664153013597 2.9407341247694747 +2.9215090601640443 1.3160203718869496 3.2030842827165853 2.9379879977916175 1.6272276941063675 +2.8102394934191586 1.9463722609079994 1.8841858385063666 1.1361623106311285 1.1427185977577359 +1.096839643930569 2.741386049198624 2.0490957023032212 4.782143184255849 3.1896835920961943 +2.8450332320627196 1.5459877934720838 2.9947566022545664 3.9260362253731267 1.5983744204531631 +3.426763360345534 4.19462975346886 1.346861500532587 2.454102976877178 1.3474429429946098 +2.1747445362625415 2.1334225932174804 4.094345799090014 3.8843740560459117 0.21399914918989263 +4.528766935867289 1.539083950136721 2.429542780543524 3.4062210723663053 3.1451716711309583 +1.9689445686278062 2.921419040555565 3.0845327238474014 1.4716098654442042 1.8731598348335368 +2.9287462309476844 2.2237154489372855 1.7835665960838902 2.995331242199087 1.4019422103485162 +2.2359569875175236 3.956899875533208 1.9018012248788563 1.3753267033884242 1.799672149473438 +4.504004085811042 4.541385245240509 4.1054985405135 4.862533297198532 0.7579571055867587 +3.9914023876815703 2.4175096992678844 3.243683918995267 2.205161319159943 1.8856477361932638 +1.0567360408523352 2.594082948531243 1.7396616461344196 2.141677547422453 1.589041314578803 +3.8342426707466317 2.7171118086870023 3.64041467067413 1.193394595816554 2.689960707839813 +2.206624839091904 4.1770232722704606 4.57216026769248 2.9637722969245646 2.5434979555689528 +3.1752999925745367 3.4434215400436683 4.762018249287173 1.8359190471787556 2.9383576543363064 +3.4896081217505603 1.6414700331633831 2.214933103119141 1.3481503885351644 2.0413051385788044 +2.3815633494703587 4.804276839036483 3.336626302029422 1.3161938528844948 3.1546296033105747 +2.88719942950369 4.487800420875582 1.7407288129229106 1.0730173348528784 1.7342901001640851 +1.021263306181087 2.1439939977529594 4.799543126504332 3.1028690794519997 2.0345090385000493 +1.333697306710326 3.0415407608971115 3.5287481278259256 4.705126964798662 2.0737879428924213 +4.29065610456377 2.6501976897773063 4.247577343262233 1.7425325049393132 2.994386991130575 +1.8043083083175127 1.8997214480710447 4.224112216360603 2.809733210261742 1.4175936089482166 +2.651472060768082 2.751805897591541 2.545161703157453 4.226189858649624 1.684019755931957 +1.7504498311363146 4.5943674505273915 1.4016325952256303 2.0658598786432347 2.9204563530241883 +2.1997482234498276 2.467554921948309 4.0072306932097455 4.571080653700488 0.6242172744374095 +3.242628497859832 4.283914946462648 3.6859893894986664 4.308220668348671 1.2130330714466022 +4.783146768812137 2.2836698453404964 1.7378662835568819 2.1692160806258753 2.5364241637389275 +2.6512533048181406 4.7354478309430945 1.3484419169350619 1.7116755805442248 2.1156099633694665 +3.3055034167033606 4.945860444524494 1.0292456176740994 3.0974372566416726 2.639732530810188 +1.2627342442645104 4.042298340704175 1.1696986249775985 2.571520856205857 3.11305029419414 +4.409459387451725 2.3625814262673646 4.590574564922015 2.336616314884221 3.0446735754257266 +2.570603872907956 4.824525262649616 3.342940197672712 4.805347936724312 2.686782095067069 +4.130497116401477 2.886718260837981 1.213755251977727 4.760582740411428 3.758586313264038 +4.057499600497534 2.1365268876254597 1.1020964798275492 4.791583219730727 4.159621204811861 +3.1346207365958305 2.844886805126719 4.403270317549296 3.224423953908906 1.2139293637245616 +4.431955311615105 4.361209889454902 4.416674042387591 1.7953550771414206 2.622273447281171 +3.6961065794478074 1.0235158772374855 3.7491117227812873 2.9450113250140078 2.7909350603750274 +4.455235199700526 1.7002707651991664 3.7533179820964713 2.997358759339293 2.8567994997617587 +2.4314684730025076 3.952295730857558 2.789302831386533 3.9250001834822426 1.8980843036578006 +4.679527712409857 4.2497479040451385 4.431925241113111 4.902837364636663 0.6375491445837526 +1.5889417043327505 2.6623226326377174 3.9627677937664108 4.390135567259687 1.155331048258218 +1.459718012486869 4.202192978708863 2.2811073180936443 3.01324018765825 2.83851853597105 +2.661896574659871 3.054512169960912 3.785769443050458 1.1872750787975184 2.627987817081327 +4.259387256899309 4.244374865807405 2.81061774362664 4.360314403855263 1.5497693733617413 +3.5810657880062062 3.480620786027572 2.8752801472974667 3.678288731323407 0.8092663247916803 +3.5767498063082694 3.6428937252437055 1.363030410499917 4.650271745037529 3.287906721533437 +2.460807705804273 2.389831429354588 1.6908146598614646 1.2332427526681449 0.4630439310380757 +1.8665943780579495 3.3718618015098167 1.9592135436370324 3.6943635826911048 2.2970798144894253 +4.502720819021182 1.6152280360456763 3.8818025746697216 1.2600068974823642 3.9001829629716016 +3.290891510104764 3.663117385751355 1.850041854572281 1.5010362595095792 0.5102519063030947 +2.6707955655536804 4.5195341224191665 3.33899677757059 1.0684611332539369 2.927996988344339 +4.882532355835299 3.6409974713335473 1.4736933100522007 3.8660017124632637 2.69528261258098 +2.769178420307385 1.1821462529636078 3.1514162253955953 4.940630438086812 2.3916434933075075 +2.371035688990711 4.660719655670843 3.935707818367761 1.1649142741894565 3.59443313079159 +3.4148047884316095 1.7407473880243862 1.5745788344992842 3.3565505604328014 2.444972681214387 +1.3462518491305069 2.2388642580540274 4.594679735878382 4.94450243206055 0.9587141551726518 +3.9585377255129344 1.3317572221908134 1.5819775815174464 3.4954359586731187 3.249815190705532 +4.0144185680312745 2.7425739786843053 4.864838779543154 1.6872504778033899 3.422667976126893 +1.8177532304967712 3.6629490670151337 3.839200602163304 4.143904154092644 1.8701849987803494 +4.234145992997075 4.5158401560988075 1.5762206145213788 4.1347516555901755 2.5739915869400516 +4.2658364159645314 2.6311429480968545 3.0475058862579587 1.030447423383381 2.596294971019897 +4.6379830444572345 1.2715177754814713 1.0816303980871487 1.1435234720767493 3.3670341785951536 +3.643751998123368 4.842301667847454 1.3004237944788066 3.3149454582442908 2.344102993593961 +1.259448359746664 4.867385644390948 4.132362822345975 1.1173274464757657 4.701877259954282 +4.491810596687763 4.732983401143058 1.7754097525812949 4.841698437141329 3.0757585436229773 +4.824346884338162 4.276816177362677 1.9596253954169405 1.2514636903843575 0.8951440529633932 +4.692071754200759 3.265709490943007 3.888172239236761 1.905702801018656 2.4422723802873803 +1.5636194307763636 2.8486069814264083 3.809368136142668 2.696991641345917 1.699580675196652 +1.0732845888262803 1.1010205227051402 2.1602425568074093 3.76350060399095 1.6034979413416512 +2.74179760853632 2.9119135576356006 4.317480401723077 2.548240227665934 1.7773998508033295 +4.597418057856823 1.0909749539566258 4.766041004469306 4.013305880992739 3.5863286808384602 +4.042142720553282 3.107051203522439 1.9451921357742257 3.9135097504545544 2.179144414095565 +2.1465826972105035 4.0204841380296745 3.948954904639347 3.234673248479123 2.0054188824859405 +1.7456362941023786 2.98544794199184 3.4074537338485538 3.626387924623306 1.2589936862957563 +1.7508699850633254 2.2625281426171835 1.059000923513353 3.516099846186794 2.5098066033052016 +3.3772522409475623 4.767745652195176 2.5843792695046366 2.6957790263697174 1.3949486845589065 +2.628356980615163 4.501726497956076 3.0688063141049957 3.9177694061122046 2.056757564734494 +2.0610013772782314 4.824900386423442 1.876096909649568 4.60760642334518 3.885908125028629 +1.395827568024273 1.1723255768269256 1.173225556458426 4.891089047265467 3.7245754222924656 +2.773481067611912 2.8407768457780915 3.2310037248736627 2.4360102852450924 0.7978366316555394 +4.568463930565578 3.137009084904701 4.893239159031927 1.7799578967944711 3.426599362774243 +3.6082935529799034 1.994799839140192 4.560842166674934 2.6349119700563017 2.5124826540391774 +2.2979811412510545 3.8761866856411484 3.7537828001654923 3.8538768124883616 1.5813764737236113 +3.988729761836066 3.5151433060358057 4.076350437800944 3.4294483185512465 0.8017271873943164 +4.238639428058354 2.4330956332161153 2.7605116215362386 4.198507153815002 2.3082069980716624 +3.5954608658725205 4.888889804007464 4.466364777335833 2.2796748800941398 2.540584799746659 +1.9016375708090045 3.003461852757607 3.5611011821285183 1.3051616248160602 2.510633393097981 +4.041114360445897 2.6685462946507137 4.57664462698815 3.2659924896349395 1.8978282641981252 +3.5918478267324514 2.712865213485095 4.962903752291659 1.995132725077534 3.095201981190038 +2.966513313707997 1.2883889281349576 2.366965120427148 3.6865212567070555 2.1347903527627365 +2.3365005035104107 4.149202002962101 1.530288263519481 3.5827609380402405 2.7383445374475444 +4.5334309931844725 3.789523575028686 2.7054748985541632 2.694403203245874 0.7439898045163037 +4.43755454478888 4.951843813663951 4.206665809456357 4.744512622319929 0.7441590194222985 +3.3163588889817666 3.9226409417166264 4.617931511254062 2.316669789297175 2.379786427478813 +4.534916792581023 4.096746905479495 1.033235099426332 1.320303435630716 0.5238330646434212 +3.5408989177514845 2.8075065275810838 1.8039312191003285 4.16476949832729 2.4721289971648277 +1.6232378201367905 4.658797296779471 4.3934863896014305 3.2475736073847075 3.2446475063838376 +1.3434932065503373 1.3616182513286126 1.8094735742384978 4.731027486076348 2.921610134330599 +4.328148911572703 2.4800480952678106 4.7047851116857595 2.550430143245551 2.838436533951362 +2.145533554317396 4.987731382033875 4.897401112429305 2.3847649001601 3.7936037256259136 +3.1872335496136714 1.6743516780224006 1.2720411707602355 3.035653986776641 2.323605328408166 +1.2972496115319925 4.93708522077764 2.8646950410599965 4.605814528212401 4.03483584930967 +1.5739840982240048 3.098127532341889 2.3506605038091215 3.4783940363006476 1.8959947595050133 +1.5773350850731038 2.251219321275633 2.742768022745071 2.373926653081158 0.7682212700633962 +3.5187265907038223 2.8324111241944023 4.163975980190392 4.816910643731073 0.9472869651921879 +3.945656854978759 2.3839854285074114 4.7578717062781095 3.300460623566906 2.1360863063711863 +2.881027748045014 3.663833640110916 2.323905765800949 1.3056067964101161 1.2844134286574265 +2.6604701592844955 3.4055733175691905 1.5213517202108062 3.3566533305703135 1.980785378953012 +3.3656945026503564 1.5756333092663746 2.351883690416726 4.5868561769943765 2.863463129118022 +3.5509344083221266 4.693415851919368 2.933484172119719 4.236399518801173 1.7328739854882957 +3.654606072568443 3.420957247419543 3.95307238581827 1.9090246894692822 2.0573581988664653 +2.751834124237465 3.0197751644171866 1.9069334939939617 4.2444056067621565 2.3527788419189766 +2.202082984501125 2.880903493754575 1.6270861856506214 3.9242725666101475 2.395383591963725 +1.7120680320881498 1.2330955350403894 3.1360745944986785 1.1749654151487623 2.018753047368268 +2.6277058449193373 4.8621228986969 3.029567976914457 2.7243140503205803 2.2551717295835774 +2.601833462578321 2.550162371422394 3.006491761375801 4.4690176677045965 1.4634383923978858 +1.6138792338982957 4.049922901005176 4.057829109875744 1.4377417525020242 3.5775922781000546 +2.422319785656095 1.411239784621897 2.446904195495298 2.7896036548859335 1.0675793590913736 +4.5826713214248365 2.4109313412638196 4.379139925763738 3.0734870541674293 2.5340055174638945 +4.107940184623178 2.6245283220565114 4.422649717192279 3.2520939069873926 1.8896326782758401 +1.6357273751655739 3.4782524080906128 4.273149493167457 4.28663608542354 1.842574390662721 +4.973462093585576 1.8466220367073913 2.392927731690439 1.8396010122621083 3.17542110588994 +3.158904599135668 1.7076479364350101 4.448247477718138 3.4683406414479054 1.7511034546257362 +1.661214488890796 4.3165163522536005 1.476605312424517 3.3347249087512276 3.2408697011498813 +3.732803695533846 4.125069765897779 3.9053749991871447 1.0242910182188387 2.9076653135034207 +4.882720293725289 1.7345209797144934 1.1753846549731035 1.0908710236962946 3.149333496886228 +1.1871745291402087 3.133800117669651 1.9596665206217287 1.4434384753763339 2.0139122564340974 +3.948682704886317 4.467810605178402 2.45386569828962 1.568312087446194 1.0264984045479555 +3.505146445777332 2.7519865350207717 4.271226719539072 2.595252776341628 1.83742714398357 +4.77195251590749 1.789014592632412 4.609544592978699 4.499152592814205 2.984979907438734 +2.790187470303601 3.612429426368982 1.8127291123063416 4.3540149978466856 2.670995280108296 +4.410443287885003 3.992096483978053 2.0596583231945003 3.504210798127449 1.5039102038267005 +4.72688994285607 1.1063233679332614 4.691997376341596 1.4385171409428072 4.867610909427625 +4.782095890865261 2.883170531844925 4.268425334585691 1.9220938433335788 3.018474612444483 +4.327251813521899 2.6663877932258058 4.00425908770022 2.2276406373662665 2.432044903364475 +1.2154365309263153 4.818393541208922 2.3455347306919623 2.649881177466685 3.615788430980023 +3.544351635904849 1.6334164354570269 3.977561110670124 2.582403514401741 2.3660384736381466 +4.473125343839269 2.3014696534558245 1.4278511138841194 3.220273481216572 2.815824280825859 +2.5059602249649124 2.4066766409057325 4.955762321465022 4.006377035982785 0.9545625439717524 +4.865702129403581 3.1292081311713673 1.844390703546528 2.1278391262605925 1.7594756077410083 +3.4293862061218796 1.345914098445029 4.38698656369398 1.3960243056030057 3.6450941349699155 +4.948478849040152 3.8443356304851135 2.255502575460353 2.120687319308266 1.1123432026009021 +1.415003000087622 4.348154716719073 3.855223540185906 4.16803796078559 2.949785052256036 +2.832811665929433 2.6259285457410546 2.9092641776850607 3.8635858666656038 0.9764888691006955 +1.699478135259735 4.1794259762749215 4.569763946417291 2.543767648917972 3.202312022841752 +2.8431162101912313 3.8927418979604362 3.987453061517509 2.4806481993878267 1.836348272241033 +1.2226920169870943 3.084705490064873 1.6791830561496814 1.259347926770281 1.9087576351606796 +3.0895118404332833 3.457055823495226 4.123912042334064 1.904856358250044 2.249288044815656 +4.278563175657217 2.561776102675564 1.3836410194152382 4.279279147747578 3.366315199770949 +4.326800765544737 3.7655855159720804 3.2565418582577803 1.338144585527262 1.9988023044745546 +3.34152747865112 1.5639816256438483 4.533901310744967 1.4698508726730175 3.5423261208692027 +1.0594281133480412 2.826854312974552 4.770655713034031 3.488712537804002 2.183385828397047 +2.5961007698938765 3.0600609071575313 4.567618310585602 4.454686621903136 0.4775066232822147 +4.611308280369962 3.761536798949111 3.2669775596878003 4.877486306082751 1.8209475535695214 +1.5973182960825878 2.0076504720999995 4.4127837935424985 2.02826156544638 2.419569951656629 +1.0209146761077172 4.632679949199485 2.6458414204697096 2.922300984018768 3.622330503721242 +4.678338347871746 2.8279174617817073 1.8465223434879223 1.5959951701637918 1.8673032212932164 +4.1938848192205835 4.9154057341644215 3.997245750394454 2.5345771452874954 1.6309481533963393 +4.8844981948747765 3.6423219219287937 1.2438080989722615 2.194029222198581 1.5639443967403257 +1.373412178137523 1.1098855149919284 4.687613889622265 3.8364158120704466 0.8910580617538701 +4.597664846890801 2.053162491691902 4.613405870683411 2.416244915699506 3.361845995538542 +3.133791102734606 4.293695926841062 2.177487406348894 4.867422730740236 2.9293567980691226 +4.574111751258563 4.839684861197317 4.513436466845819 3.113911898696111 1.4244992430946282 +1.5864332410917954 2.945087204223969 1.6479082089445973 2.862052633914885 1.82211066519605 +4.929110956655146 2.140191227478431 1.6112794021411774 2.8403076604171296 3.0477177880230215 +3.964090560038205 2.6951962763407322 2.608754683424908 2.772615727205159 1.2794307894016288 +1.0610627446102594 3.838239978658187 4.01663623699675 3.994606162334855 2.777264609918131 +4.830149736374841 3.465557730067582 2.6036876914413947 4.748139869505163 2.5418077204383716 +2.7941891978170346 4.082054183514581 4.006450452343528 2.1382397306388645 2.269098394093566 +1.0464736034201905 2.6755554686629246 1.8601622837044811 4.224256628619855 2.8710363625916684 +2.750348561057831 2.150146727862493 4.346460667697057 3.212375977014734 1.2831174249502906 +3.252661301861203 3.502123939710629 3.3053069737406866 2.887624429161014 0.48650828947649394 +2.1951883204548084 3.2844873217695754 1.5091513624835424 3.2641643487689915 2.0655853640786472 +2.3786318385138454 1.548499578480281 4.1762284643677 1.3683359768820895 2.928033433966655 +4.834585109657455 1.4909798906328513 1.2104986252035022 3.4903820338972174 4.046920337482002 +1.1929043222829687 2.8229881171343454 3.048911309743052 3.810325586561256 1.7991455969930987 +4.881672636874107 4.823311961567415 3.2507947469947136 3.044463086452089 0.2144264968807027 +2.9878261164232374 4.322656741020564 3.738566013458562 2.341110610729423 1.9325253941358054 +2.10609572053424 4.255209984598128 3.516228576418794 1.3899866391321045 3.023176623335051 +1.1205449489115074 3.5727941334711284 1.1000640597242213 2.8204537953664373 2.995541170753028 +2.6384736852915793 4.822264415916953 4.272232330455813 1.2611613498452483 3.719608904903897 +4.585861147677684 3.3326479652354655 2.325081212573323 1.4584698195765466 1.523666166559711 +1.9944808422830747 3.2996365355348 1.1232269780341446 4.610343105043965 3.723360077521292 +3.897594681002854 2.277426848622941 4.1225405411187666 3.140533721067347 1.8945398385112218 +2.905472746711507 4.199807142252265 4.747219948261309 2.2192073402534276 2.840096701474559 +4.319917727328111 1.2114592797164274 2.00152461708345 4.337004881197833 3.8880563247715725 +3.3239703187083935 1.3930753943934957 2.113123839043416 4.243635199877617 2.8753145684235375 +3.294803834920228 4.461132534508325 4.889687636359348 3.1360519836178256 2.1060770731502316 +1.4212178765940986 4.770179801733686 1.028969775073942 1.2295483090722263 3.3549631479847215 +1.4763883302560368 1.3141593175149642 4.8841554257907465 1.5368514607744581 3.3512329204023867 +1.993794780621049 1.4733370960894265 2.769974405502541 4.980189137880529 2.2706662820874235 +4.7718529676971215 4.309503341049582 4.777606410970268 1.5752269157169088 3.2355836581489097 +2.0917226894693433 4.529866231714188 2.301873239604003 2.411474192312617 2.440605724287492 +1.0262033482012147 1.0981580561243427 1.1736332100955287 1.4175035535464326 0.2542640839897852 +2.721632421039184 4.982334086165677 1.4069104828080912 2.527476466548128 2.523180560843987 +1.550201398009238 1.5870449563940348 3.678729959517989 4.542295208765452 0.8643508474585345 +1.5328843686897229 3.096105181043766 4.605212293302494 4.915120872690119 1.5936444508593786 +3.16434890547052 3.3185843855572212 4.521195364388359 3.481090287312475 1.0514785564511555 +3.0914713605010538 1.0705093820507319 1.4022212320957421 2.109584024633371 2.1411794503517148 +3.2698010496254266 1.1817604738802827 3.7970685939396565 4.876326503004492 2.350470395524503 +4.990872416136749 1.5933221874655308 4.658395397369951 2.288313016967839 4.142540047632175 +2.0467076306479286 2.744521239604986 3.8997881409786093 4.518652256011656 0.932703932510906 +3.321097174146515 1.8801249001771594 4.59943733102183 3.5915019499275873 1.7585035760014855 +4.912994943126615 3.9478261837195237 2.508375289571343 2.980240544861213 1.0743405201728167 +2.870275405070703 1.5326963888707463 3.0483968184272823 3.4827562502197122 1.4063377050216235 +1.6475608542242113 4.097988202348745 4.952990688645444 1.0980982840856814 4.567799211783415 +4.195288413987052 4.149072403954625 2.9909203912504965 3.2713572773996114 0.2842195747944344 +1.448246659607563 2.326055154668971 3.0528399588335735 3.5131377611808308 0.9911719431297927 +3.182647282356804 1.1823405159033764 3.743607069263694 4.5704763134093795 2.1644722005222023 +3.686038618503016 3.527413695443916 2.409287767767541 1.9443361549421176 0.49126557836313733 +3.449689639009911 4.314691667629507 4.9246481929234776 2.194615089431224 2.863792809488767 +4.0694693349976525 3.1181321969642504 2.5562891549920206 3.897344598382874 1.644223844994903 +3.465414108369439 3.488249867151957 3.64720518152711 4.727554255619018 1.080590391300245 +3.439286055454021 3.94510703284616 2.647187527293114 1.4166001728858064 1.3304886688721234 +2.642759584571983 3.6542131608354818 1.8220106168184955 3.326171289191987 1.812605214946513 +1.7035061391165223 1.2368789612542037 1.2645078564502428 2.1484800270693833 0.9995737699384007 +1.6429303593324986 2.155185520138048 2.713954744726217 2.433778755201546 0.5838697927432518 +3.8379014109193976 1.7869159910352619 2.1572426112754286 1.9367857430459168 2.062799656614008 +3.239645494524073 1.1380777217286542 3.12149043561162 4.608132799969232 2.5742363184360304 +2.317670197004793 1.1789061467263084 4.202782103429826 3.2051323434335086 1.5139645325526514 +4.3774639256461265 3.7909650562267423 2.564071959109875 2.1774418126707387 0.7024697815321054 +1.575826207752864 3.955146832415675 1.7335838184632446 2.2889525145092025 2.4432766981031064 +3.6062882131493836 3.0118896638822794 4.861951357876729 4.829301810290833 0.5952945727355506 +4.117569084880348 4.027290808500734 3.055255024102195 2.6461454367778896 0.4189520517036974 +3.8692104241298453 1.8573729455482124 4.348283999878961 1.1052184013392718 3.816407278666324 +4.196426682532552 2.73368664308647 4.04928150023666 2.7984103699787735 1.9246524381070385 +4.155256005476722 1.0940488572729015 3.8079165638325367 2.4808135506027416 3.3364939100705353 +2.7248056930652282 3.439431640186028 1.9942339979292716 1.8131807874658064 0.7372045233972917 +4.380151350827629 4.168755881209945 3.945097710680844 3.0443709252894853 0.9252009438475146 +3.5611975388777064 3.7753917903627876 4.121871000029491 3.977163735558569 0.25849442887596524 +1.2356510640620253 2.550360796880134 2.144626554315939 3.883591003443764 2.180013540530678 +2.44621154943696 2.3562434412304794 3.003082093082544 2.7454552863564627 0.2728842832376584 +2.907670384855354 1.9923648158404648 3.095145653426825 2.0166680530347825 1.4145310951750225 +4.154591997022965 1.246147201990068 1.1243485623283718 1.7726508372768155 2.9798233111138117 +1.3837070493752277 4.362536424817858 4.4381605477625055 1.7885151868817895 3.986733623712102 +1.190270596166008 1.0631459547927768 3.273931327143814 2.9151932317395524 0.3805964996404325 +4.601728868502782 4.989993781255667 3.1888054785865636 4.672904472096059 1.5340467610248727 +1.2436950330893572 4.033182867030344 1.1139796781291422 4.879730531827391 4.686376197856278 +1.6136634562816168 1.8797195329315546 3.3335283126703485 2.6868273242532306 0.6992910726886444 +2.4646062212230366 2.4159785154838143 4.0058364234214645 4.458053252302847 0.45482382752995 +1.217004082176779 3.8531521629652756 4.205660920774484 2.4162808639127356 3.186088148771064 +2.8367818648036076 3.323275367123496 2.107405182762335 3.802705791755177 1.7637233577437739 +2.90759523946426 1.5335615734289214 3.83170836800939 2.7812580209414697 1.7295705961462304 +1.2951111370006951 4.933528878845674 3.504219007278586 4.105916785395767 3.687834578768884 +3.4648827203505554 4.716213388367984 4.411872580689471 2.0697154575641146 2.655471413916518 +1.2551377729115658 1.5991972626781767 4.041304953169641 3.2435668619329148 0.8687709679245021 +4.614735087972306 4.337663510594185 4.915946372215872 2.273936316782878 2.656498784490566 +4.945126021391733 2.590855097461238 4.968262262042216 4.813193614031489 2.3593723463795238 +1.6355477486511822 4.489300738336128 4.737677356917728 1.4972242671165383 4.3179210684469265 +2.1332216597605083 1.255964482825505 4.401542559476251 3.430020619281224 1.3089824424965684 +3.1504581684527024 3.00727368627115 4.523200027533509 4.119873433414254 0.4279884781877165 +3.6004288982756623 3.7614922463319416 2.15785252810159 1.7744745751574555 0.4158365747390833 +3.2273985357283057 2.6419984956327873 3.3165882469260355 4.4269252589077634 1.25520575489453 +1.901733290746146 4.24282110270916 2.0063530248551436 2.6458131634756654 2.4268501008934087 +1.1931355312806753 2.0055213441713025 1.34136662012388 4.241712633727815 3.0119723948957766 +2.940125273797585 1.9397092289371214 4.267186031034585 4.185650699820869 1.0037331682525907 +4.1707178519754216 4.313776059639423 4.350786279865115 4.374044423327893 0.14493651029803264 +4.266230637550704 2.4468390453379354 1.8912217884408005 2.147484121352433 1.8373503065784231 +4.823637973041088 2.5591524044807423 3.667401119489579 4.939747347529173 2.5974525624589675 +4.74410647147378 2.3850909972332386 4.5570530709550425 4.531725280157504 2.359151437422577 +3.7465686208267943 2.08993505982174 3.1310900913454103 4.667698120110911 2.2595572551973286 +3.979123464421182 1.9011033133489441 2.777949878467165 2.123983982897487 2.178494696075833 +2.396562196368817 1.8467304284102615 1.6876830609997113 2.9614602917401878 1.387380051251029 +4.9407657805860605 3.7971148510562354 2.2686799013485826 4.348701041409731 2.373694460480479 +2.6544584900172943 2.3044931285251455 3.392076105505734 1.3011735996299172 2.1199879818815246 +1.511220916377491 3.1969431654501443 1.0575340619776936 1.9820669315262331 1.9226077415568215 +4.902589760953926 1.2329614452083097 4.726475773887778 1.7932665366912617 4.697859981406106 +1.0237258210045512 4.158356320106512 1.8217613260872483 2.389174117666633 3.1855714780786384 +3.5833739637793696 4.382070760386545 1.0186415043731905 2.955096120899201 2.0947011850799777 +1.4959957438417355 4.779657910277251 4.759839811588 3.8701001566014175 3.402069058225542 +3.8875386590668652 3.0648337831876056 3.9196213589886155 1.3229266259345263 2.723906541984573 +2.3614728556323454 2.9511829055632663 2.076556405243211 4.212041296376221 2.2154127523436555 +2.8918507360432213 2.791305064799076 2.671783046771434 2.5358766231065784 0.16905616817882446 +4.5628495523135 4.217721660468915 1.9913966665860112 3.538419307321413 1.5850527791455473 +1.507569825470076 2.4942848581815884 1.0798116456616285 2.739253829303361 1.930635884010375 +3.287348281317952 4.444734464970436 1.2478435395438154 4.776920909078969 3.7140180207256424 +1.9802280078011902 2.579661236655011 3.8342936205282725 2.715488599126951 1.2692694244197835 +1.1931699902953166 3.8936711380210407 3.916695241937224 2.5428576461507633 3.0298739558708174 +3.036799590126839 3.855657551424023 3.652969352589749 1.7499832172983831 2.0716864125371264 +3.2972998062244065 4.618825465840981 3.000497802508059 2.5722399536357026 1.3891849603799347 +4.83076315855309 3.2483697334950716 4.589718413388303 2.0772142424361 2.9692837790819286 +4.169433778955483 2.4199151250215873 1.3659762461154377 2.6060024668334583 2.144406805746262 +3.3959887142987935 1.330604835458777 2.514859277939528 2.668786344080014 2.071111804964389 +3.5517123719001455 1.2546809080050916 2.016600763785689 2.8996131030132726 2.460907218355057 +1.2230188287802122 2.8216155605578286 3.7660984960062245 3.786318858956552 1.598724608532664 +4.739286247913798 4.272102161169614 2.8847779423373723 1.4918915900672864 1.469147154388308 +1.2212259582558258 2.0838452830227543 4.184558693834493 3.097828507248938 1.3874777828482971 +2.9255386202570914 2.9444782087043766 3.329613628134134 1.9658961719253463 1.3638489683169175 +3.1554789814459285 4.555757425557618 1.8010220612802588 3.165599689521718 1.9552114526416169 +1.5090898959063317 3.7182216658312526 1.6968571583734495 2.0150052468414765 2.23192324757987 +1.6687118934948244 1.660430083668878 3.8062343136782166 3.9299923245334316 0.12403480811785317 +1.6837729130652241 3.8714843412802074 1.3333970568500173 2.482848907191779 2.4712994252814733 +4.486839484583998 1.267578591183363 3.5802371692424595 1.9413294297639907 3.612431214334894 +1.2354838424965822 2.149322069515758 4.790805004001838 3.6998161844776103 1.4231503467618658 +3.2704402905975494 4.71402006763851 3.3957242457861048 1.3055466835983607 2.540229283776315 +2.223645209465581 4.181327260668458 1.0042000557501347 3.0121629539597405 2.8043598225242463 +1.332066230965221 4.40698459471953 1.4780942281102574 1.6633204033851565 3.080492116490553 +1.171910972836463 2.753335797290513 2.2217886470058494 2.67797689378398 1.6459077106259719 +3.289144193574475 3.733175794198578 1.6627271816927824 3.756893697616419 2.140723582989767 +4.028807256978352 4.799072170463598 4.6989659059420745 1.3222738998243506 3.4634313824768888 +4.259333526064809 2.398017074206407 4.110642718009089 4.939141826568918 2.037378145274751 +2.608513359069162 3.034149981152352 3.431011023388018 3.2992995586966964 0.44554959767631 +3.5826309850504465 1.73803667814665 2.7798028372123924 3.5142030559647113 1.9854147774118514 +2.9251825310850297 2.3626274664752973 2.7181609254851726 1.0674716377522513 1.7439160889659453 +4.115560259212509 3.571533165501504 1.197793140281422 4.213675435736652 3.0645573087694005 +1.6668517618704515 4.814589332391557 1.6585539591417056 2.5911407735713157 3.2829818731327287 +2.560909252525802 3.6491128497587213 2.6711769166361625 2.626822892217198 1.0891071336249816 +4.896455755321725 3.976948986123617 2.62542972679862 1.2123615024679006 1.6858987232969582 +3.614873454806391 4.850815727998926 2.3386815351115113 2.1285837371786553 1.2536723604517115 +2.627397210862202 1.948365929176735 3.3683161162267097 3.699085703224855 0.7553092089934637 +2.800866106883305 1.104814134906197 2.9099908641283965 1.7204295020576263 2.0716294373702797 +3.4144390961741737 2.2318935486533285 1.2773827163666525 2.112190808597104 1.4475215103116161 +2.2212556744813816 3.7384214560283207 2.039169195448828 3.7530732044593322 2.2889427604899195 +2.1454832925604594 4.279205641083298 3.595861283001307 4.79585806788457 2.448012120949564 +1.7075050957082443 2.5025704746657933 1.4022429198861488 4.401254709066766 3.102611910707048 +2.5682273850911037 4.22092376988126 1.3698348832720884 3.5076035709997164 2.7021214448146402 +3.753248368285905 4.030612056403474 4.643753697680328 2.941888534588315 1.724318894181811 +4.382274580596739 4.5466486338157885 3.557943875784357 3.385986985695175 0.23788232683577343 +1.0304680495478267 3.80347696732301 4.50694951366134 3.5763568881571604 2.9249924944695938 +1.5757982697943134 4.462040498914217 4.289416882558428 3.7940282378496892 2.9284473897376726 +2.5986669576531574 4.185675316599264 3.1959383696799724 2.87123918517621 1.6198842834542913 +2.269964213791797 2.40516163434528 1.5771942382376842 4.39658521560589 2.8226306569917297 +4.508201552697244 1.384706085971989 2.6854545664866136 3.8190199791285337 3.3228292877292485 +3.792954241701985 4.728676342598686 2.735072852697835 1.5874493214164196 1.480748330965584 +4.9316201078715505 3.0785150114816138 2.548883734197389 2.781972826775265 1.8677068890340192 +4.150470729414249 2.897862390115482 2.832595703498734 1.0136124615539268 2.208557829479875 +3.9627080610350003 3.0223731623266956 2.7358054982203477 1.0754747571190961 1.908121561005637 +4.127027028107513 1.341461150381917 1.7047486028598753 2.2599004545693 2.8403469572581397 +3.1729771155655517 4.999666333462644 1.1054659239918596 4.384030926756648 3.7531029796870174 +2.247001319066334 2.3660086473787443 3.866915819595915 1.828700475438874 2.0416866883411036 +1.0703469014789744 3.444446622771735 1.0866666208850089 2.63565253098947 2.8347322336235767 +3.810730650424536 1.0700352720272375 1.8002290422732483 2.1345781282522505 2.7610143912090184 +2.515259030512774 4.026576796107338 2.160471758180013 4.851734342096243 3.0865799332253183 +4.471086529686133 1.0356213979993267 4.648775539186544 1.19722709137254 4.869867283473248 +1.0200081170342221 3.0572978344153503 2.458351690894013 3.547677356485554 2.310233710745156 +3.03728940034054 3.1728186644772314 1.9976965073090431 2.6039576035723284 0.621225159084686 +3.1932826651713233 4.720955507144753 3.4039163511779953 3.1085476625989252 1.5559649656390386 +1.881799559655558 3.8864129943119408 1.056911566120455 1.2369585696494085 2.012682773286594 +1.1616850778911978 1.453658660035467 2.3013146642887436 4.383318916101341 2.1023772918379535 +3.8759358595716384 3.531636125054885 1.8233491411466285 2.138747977293649 0.46692476163853436 +4.2854252662463495 1.089662041535647 2.502163668046746 3.760457089952824 3.4345603683769275 +2.0147609499137418 1.1740930313739337 3.3466684433798335 3.2373835856294306 0.8477415463427395 +2.3577066464387713 2.870159916247941 4.536097611833586 2.8967370906963885 1.717588795958257 +4.667736377482971 4.898481837904255 3.4881126062114527 2.2426583751353517 1.2666490078985544 +2.228291800546056 3.9303971099077915 4.142294035875252 4.666913577935816 1.7811199140061413 +2.694694859935045 4.255520091258872 4.721485979935823 1.1271315076977766 3.9186170360006756 +1.7106570825540546 1.6946914398783872 2.0195259058094135 3.1842510541726874 1.164834568930669 +3.1475525785915264 1.9480047042100126 2.1742325205427195 4.018727247592712 2.2002445093780905 +1.3185731587812342 1.5020060731559792 4.1870189301738705 1.0836449225943547 3.1087904183132316 +2.9747077632421757 4.629377804640636 2.99481014247999 4.84626555976774 2.4831069465703126 +1.364099119669684 4.528655104088058 1.2044008062387648 3.5995499975904295 3.9687723829101964 +1.5029157549978067 1.3852769920313417 1.0382210140283452 2.4051460285784367 1.3719777235637056 +4.590145214415692 1.3199730019157405 1.7725155565571908 4.748963831145166 4.421908030557009 +4.703816359661019 4.65345135563366 2.7390391037744 3.583458227522756 0.8459197894496954 +2.5275131344554027 3.6733425736584864 1.1240751937260107 1.3294055669250473 1.164081468756594 +1.1949514277719917 1.5767085897800626 2.5647740606802785 2.926754653261555 0.5260879015430298 +4.347603257554559 2.9712043350210657 1.3177804511392912 3.7055024094625435 2.7560279650631974 +1.9819923615033557 1.6844524881132323 2.3737731032280407 2.7772839107689418 0.5013491279131945 +2.3580039967517537 4.9139448883223 1.9635167965803992 4.762606277606836 3.790479621894212 +1.12657293277017 2.3260929687738177 4.20235525405797 4.022286713039955 1.212960426493193 +3.3268082625178677 2.929836936095616 3.3196727336355067 4.938913137996206 1.667190967200711 +4.850999158286461 4.46482851317411 4.637632363895483 1.321019463203437 3.339019152413384 +3.083990248717669 1.8564790325059666 3.0206539365029137 3.8704462545526517 1.4929604046128886 +3.438358603361869 2.026801461690497 3.110412262048147 4.679205105335283 2.11035649816622 +4.868418909698124 2.308130848474012 4.735382653350944 4.998242373042457 2.573746333398655 +1.2608668206620979 1.1301599149875328 1.071282033380371 2.0442507303311293 0.9817089081988999 +1.6845738867721538 1.2729609779645679 4.088248387926946 4.651832302781724 0.6978911202903214 +3.8030279510892946 2.671310642447271 3.908133446199851 3.8409903899121396 1.1337073064453629 +4.818509577709152 4.673751189904033 3.0643474556996737 3.9184730829814534 0.8663057070223137 +4.9853143671839195 1.7592652036516232 4.653302133594601 3.432832725721641 3.449193932077639 +4.173179730841694 2.611244206192594 3.167567036652599 3.8587039747822587 1.7080143004108896 +1.5579661380974343 3.649819578406092 2.1505207736378473 3.1222463917807386 2.306534520159269 +4.091009358147406 3.2264547039162004 1.3057256719694816 4.068854739260538 2.895226587447273 +3.2742289229617794 4.4477358995503025 2.8902711351947756 4.592016403943977 2.067137050079706 +4.56020746499727 2.787736934289944 1.1358084906160038 4.403014154571325 3.717026315861598 +1.4175485190451163 4.671774506527331 3.215999307121413 1.370888666331942 3.7409116608601076 +2.8961291585648445 1.6688476522531133 1.9503211556633846 2.2775643066236557 1.270160610153377 +1.8856304488099807 1.1794080497236679 1.6317664461435482 1.031688214309633 0.9267383456467878 +2.647422414004829 3.265387620818 2.2982427348632943 1.9706598054656528 0.6994223133875455 +1.7915600292114808 2.0043346147103254 1.2193603534845936 3.838572511304479 2.6278404350161186 +3.8995153615305838 1.1638054193091154 1.91432253088831 2.8397295435542285 2.8879901362471183 +2.639330929617969 3.6810112084322397 1.5416505695830969 3.1239674728651634 1.8944193267813558 +2.953953390310253 4.036966139926294 4.300502450073946 2.4485933797453714 2.1453400244707463 +1.7979568672387383 1.3015572548642056 1.2606781300715753 2.192666057621836 1.05594226748673 +4.240293587286974 1.5127327146444673 1.1450531487428854 1.5606346343980064 2.759039014800202 +2.232745212850679 3.499005093254648 4.325450347968563 4.901316640875658 1.3910557400863683 +3.0929714984418473 4.521927541088317 4.47853751047647 1.562185574778065 3.2476182018007744 +4.224284494993125 4.676112603453822 1.1322658660390332 2.7193322735187615 1.6501298195432328 +2.010758934337176 1.414414526302736 1.753129812398246 3.9541276793370783 2.28035485468013 +1.0222631547466774 3.6278092378962215 3.3763175319917353 2.8945082239721565 2.6497189663642136 +2.2291243029782293 2.759648148435029 1.5914716576683436 3.175174317321153 1.670200486405645 +4.153694880414438 2.6764208148682886 3.334556755852922 4.672091750262997 1.9928217496822958 +2.181324421494408 4.851865591242486 1.841122357846106 1.4728006439591992 2.695821029712474 +1.9857512096752186 4.593539131588685 3.9772659558938557 2.7392411427366006 2.886739212965177 +2.958955944120903 2.09675323644055 1.2266095560084227 1.2603041519644824 0.8628608433159858 +3.0976872514441065 2.746236403157347 3.0314975739504857 4.028974752033843 1.0575814009137172 +4.269459770481974 2.885298029794612 3.1770606402936292 2.4765544480432866 1.5513260939479299 +1.652901678962773 4.050981918257918 2.2442454766644415 3.8006090342704586 2.858855777674333 +2.3165799651598977 2.2237221016509885 2.558001856876873 4.681286476982994 2.125314132262483 +1.4400734241129585 4.931231049835993 2.1997505134832904 3.5761510407565607 3.7526870345290226 +2.129651964379831 2.9649484770688743 4.030920097991613 3.5360719542754495 0.9708732921704099 +2.688254614410144 3.6867935155896303 4.434340895406482 3.6162045419494855 1.2909016345239663 +2.284888448157118 3.1075748104913874 3.565835176732566 1.5857922586838051 2.1441508361320674 +3.984801592433966 2.269402828414303 3.621947561626487 3.5734214875248735 1.7160849919126684 +3.486774069842454 1.0180430810337096 4.426408751433857 2.217544718941045 3.3126595069739673 +3.784000083968321 2.837484420350554 2.9445044411936694 2.264423700061202 1.1655049188798252 +2.812922118247028 1.677453990887463 4.914768379894657 2.2469662274254287 2.899388934408228 +1.0380734065219133 2.2605427444970054 2.3893262852604953 4.678553063675944 2.595186029035998 +1.123219997706403 4.3866023179679345 2.044370413531765 1.7808659408629368 3.2740034782070735 +3.7185590128473724 1.5241796139178336 2.8856917287660395 4.684941637422682 2.837710552584125 +2.387924353105953 4.655917729171481 3.1846592130955678 4.280406258902525 2.5188202679571616 +2.4268587698337396 2.068749446196064 4.861062591470796 1.7295952356391444 3.1518772324307798 +2.228790588295187 1.8762718943410581 3.958479961649351 2.0996164623187017 1.8919944341173183 +1.613496090168049 4.896844210622701 3.253576423755479 4.7585711943377795 3.611839439893912 +1.5016343629904574 1.9979896034417943 3.979362190837107 1.1895299763314848 2.833642939718561 +1.8733865250195674 4.574747518640785 3.0544337997300386 4.060017504464982 2.882455516584196 +3.2402838186892793 2.856244355017359 3.9733039196916056 1.1242558448378235 2.874814992740482 +4.624126977599669 4.5428491506985935 3.6032546106549237 4.169778908742849 0.5723249649192124 +3.388004370327163 3.228865505957477 3.3232919644069394 3.83759741709516 0.5383635173539425 +3.459515632735872 1.2861233325078225 2.6154498541501154 2.9118427084543796 2.193509246566606 +4.098361868466228 3.4597634386958016 4.0032554509103155 1.8934524734168332 2.2043313177346135 +1.3322495959945133 2.181662611593588 4.469308304520544 1.5532845073773802 3.0372186711816367 +2.720064035185077 1.6597093392789706 2.7431558353720202 3.4784473113395395 1.2903509738674297 +3.319548631293013 2.5059916756510474 2.8646137372304588 4.884009928529785 2.1771164179959808 +1.1779509967697197 2.870255250297256 2.3053825272949964 2.123925926218133 1.702004754570844 +3.0934769900615104 2.0589206468775867 4.672044274773165 2.34284932843193 2.5486184346197533 +4.523937200183454 2.4817067216014643 1.549051295737844 2.180872810275139 2.137733321507017 +4.795555771058998 2.3814968108596517 1.8513364101113314 3.0940177713911026 2.7151312360530375 +4.713334666286199 2.473068863520155 3.7131040503895774 3.1907950968954726 2.300347258555346 +1.604147165717431 4.6695201703606175 2.8476622940486807 4.001251614460632 3.275252658614859 +3.9389596787882564 3.253954674740491 2.5627790326187636 1.2300185858789079 1.498493331304714 +3.1954779407120903 4.995376260643761 3.1391637906892846 1.1858425337154155 2.656143425163413 +1.419687398562656 2.218898364683837 2.792279376112249 4.444513208403963 1.8353786543756347 +3.0843224495925727 1.1097150529338693 1.9271867934266114 1.8123203657077291 1.9779455672884831 +2.020014665203445 3.9054500563207593 4.791345496175243 2.6543935885146897 2.849812286753599 +3.001252253343145 1.5194762098774475 1.491907579002675 4.6114803440733585 3.453606011049843 +4.918035398413096 1.5145169893229915 1.3382028236517485 4.842472758254243 4.885063493504891 +2.6024010365681827 4.47447949756337 4.0818055073972275 4.3367059870254066 1.8893522748912612 +2.4356372060741864 2.014365601561155 1.5943917758588562 1.596363644467441 0.4212762194033668 +4.824293773012113 1.135818482095202 3.745844592730818 1.0375536279307096 4.575990594584138 +1.0794973191265558 1.5195368936407547 2.1393391662649752 2.262256560103245 0.45688457278248035 +3.149179825488722 4.283945761333409 2.0718392370871053 4.3111728850450675 2.5104399845505534 +2.114621158324442 2.535979743444575 2.4896175085739216 2.5320614788805207 0.4234909064783183 +3.457057408022191 4.829329398754746 1.5424618516194215 3.253829681414831 2.193606679741776 +1.0402797239796158 4.522795419491458 3.946258353223373 1.9844553259180135 3.9970722644744368 +3.235308012352184 4.163441977511127 3.339300614739987 2.492756644507028 1.2562123032431431 +3.132230605172051 4.5171157515747264 3.6636329057364314 1.5822637488467435 2.5000008871955326 +3.1694108968596857 4.901432042683362 2.418627228952517 2.9153107029787844 1.8018301037975706 +2.0535996252052113 3.4506800824935473 3.222468475154959 3.729358360444405 1.4861935136265847 +3.4897439408721875 2.9333726199306067 2.3450096616281084 4.11367321091404 1.8541088957607073 +2.9485102320802725 2.5240099422774973 2.555972833369425 4.192915511385334 1.6910889471439805 +1.585770262621446 1.043012063835587 2.5861557695189776 3.1134905028363637 0.7567485601652564 +3.5502947538137968 2.248261845618361 1.1966713243757519 3.5398539208438975 2.680633204005178 +4.616851657280687 4.75791926284152 1.1710870137086933 2.0581226228946137 0.8981827438236073 +3.0487105988970917 2.2097923197515774 4.7442730496824925 2.2019401004050367 2.677170279243791 +2.97644578010236 3.498000748433736 2.456287303438713 4.08406431769904 1.7092915471461878 +4.559521164438957 2.6028587577847158 1.0151451787472623 1.5676747098047472 2.033178953339959 +3.3389041777574686 1.9215103702145013 1.7330786179478896 3.3877275015069084 2.1787308538514476 +4.898390153039319 4.676397266535481 4.703731947561405 4.36592574966407 0.40422007495442247 +3.737665492114382 3.269991528679641 4.095902619312826 1.575523739855118 2.5634017695420375 +4.749033948606515 2.218592796629124 3.380518115532504 3.6067435576624853 2.540533482221317 +2.5433247068986504 1.7291873259703925 2.8469844326325093 3.879136217077134 1.3145938464624525 +1.6660060153377176 3.1060037645950542 3.7699709758798567 1.2210347876370107 2.9275705302520323 +3.06413372133456 2.1857774351333608 1.5484281163613187 2.7934659253024146 1.523689243645832 +1.856609395505263 3.8863937380147613 4.85003431498289 2.3685515053647097 3.2058979103407608 +3.1531070932208833 3.652948021113826 2.980380430501823 1.0478637264927353 1.9961116613233403 +2.963708055455845 4.93703920895678 1.2913984371368565 1.3049812598528288 1.9733778995545344 +2.7784185160873616 2.0080272304715856 1.0080529168562267 3.9889759563611116 3.0788642224696705 +2.4979879506334224 2.5449291389038646 4.760422556326922 4.8406012728277314 0.09290910469893866 +3.8871870289245227 1.2857884367250731 1.9835163881133946 4.138749350940298 3.3782101414140757 +1.9111588292246884 1.8044468585176485 3.526475529125001 3.844617818055405 0.33556215623645164 +2.6323036773101407 3.6098718822009044 2.509095661324868 4.733099755963 2.4293690144110522 +3.2976388579894813 3.0331028052476143 1.5952312349780322 2.631183871192037 1.069194644430561 +2.430538285782588 4.634731458178007 2.594095561675956 4.743408565566853 3.078638323988236 +4.031021725320949 1.478838185931687 1.0168343244921831 1.9980755632200684 2.7343143907220573 +3.7428044531421283 2.2643562946094726 4.914236957936652 2.3279015857284824 2.9790836871433757 +3.4371847223484377 3.1248621548250877 1.6254770011220656 3.1248533850848816 1.5315596387244563 +2.472226364033621 1.5165586333326337 3.553078171326258 4.57951937039735 1.4024558269883853 +4.3406131205156 4.142546412815153 2.990165982563062 3.9238730277758287 0.954483769887812 +4.649289352307817 2.6321629690430433 3.698598908603485 2.7668680745308087 2.2219183588117257 +4.137998196373563 2.4803871273837457 4.768362321844906 4.408323794383944 1.696261240874714 +3.1307348243408932 4.981596779877596 2.9513022559589177 1.9504918962059485 2.1041177140649747 +4.5160642549929255 4.439712600748624 3.0670530707169097 4.0346310820333 0.9705857937806541 +3.5770510777435995 4.3536125866803586 2.3793166038685705 4.99869895236832 2.7320709479796093 +2.067327966130099 1.7600243423073874 4.255954475090175 1.246319434985896 3.025283225061425 +2.6931656952314396 2.5711384560656594 1.1673632749105431 2.794307795313562 1.6315143638864573 +2.766276390355195 4.608712937346887 2.641666617527118 2.2955302098170622 1.8746687287179813 +1.9666345552225946 2.6431069975398267 4.7484563186294295 1.3162618206694705 3.498224412046954 +4.21227137766553 4.890570171366951 2.2652973533704803 1.9368752642317655 0.7536247887185245 +2.456740689024098 3.0125270110116027 4.356779068748695 1.544276189228488 2.866892199406503 +4.2466249542275705 1.8240698925671488 2.2068134162092923 4.542999330637229 3.365492185928831 +1.418851727278755 3.13558351253038 1.322193461543109 1.377445782698833 1.7176206919708223 +3.066215918260533 2.4488718484378404 2.549381808662926 2.592736020523234 0.6188645152464908 +1.7099365225808913 4.491191728761162 4.797726538694479 4.5747530920522355 2.790178789936656 +3.5596974802025003 1.8318246342845996 1.211714920566913 4.201684169809482 3.453326031969266 +4.985150931990282 1.3386785415526088 1.3225153142454587 1.6919677312925891 3.6651406497822436 +2.340338725193733 4.905735147256378 4.703988723213806 1.616624832234478 4.014109440169119 +3.037558986408547 2.4018851407631785 1.5905974045877245 4.26968854004873 2.7534724531295587 +3.6530678246439177 1.8311413109633685 4.833633014352767 1.1236883955670778 4.133171336360139 +3.1563288797956814 2.8735064125376257 1.2033083151254704 3.9844014908761265 2.7954369605113265 +3.1434300097248853 4.8999226921574435 4.027837003120094 2.2277880857221812 2.5150432697002496 +1.4935714421234079 1.1952862755208455 3.5907265521715153 1.9584041990987235 1.6593523751621335 +2.561665417677298 4.34037394117825 4.601412964646482 1.5613865834708411 3.522153376816347 +2.997355501703107 2.4573412607093594 2.554692027157527 1.0032001397838322 1.6427849698187658 +2.250099985828677 4.072489457603325 1.4834132444381014 1.4711300224009753 1.8224308668310834 +2.853700175416338 1.4893097241108992 2.9760225176890107 4.458262530778616 2.0145959297132845 +3.8605192107338056 3.407830135213448 2.6250712876749263 3.9102560952292325 1.3625811493866613 +1.145356939391018 1.6042393906286563 3.814399380997083 2.8950765576455177 1.0274860376613189 +1.5551095011761662 1.5670955905755015 1.7331170006795937 4.336827149668324 2.6037377376160618 +2.1864544223471873 4.3075605237769015 3.9306979798298323 1.3759547407336137 3.3205126277775543 +2.906372790180579 4.769843066420272 4.725571417760271 2.4511196374949673 2.9403490220007638 +1.7252849513900244 3.880188821283772 1.0021628451162887 1.1845813029708303 2.1626111953490574 +2.0178753684387765 2.565216312117969 3.117897972808647 3.420216509918154 0.6252828212158571 +3.069919456252426 4.054274074218865 1.6630152345080615 3.379833037044578 1.9789940325878115 +4.0345614752149395 1.8987669880907565 2.7878585150031916 2.0129277074591534 2.2720334169441494 +4.67264668976675 1.7701829484823564 2.8557330086310633 4.948785999934211 3.5784307445965267 +1.5615314574485257 1.1462496161926028 1.3059978593922419 4.714518330025779 3.4337254995710973 +1.3367489909973758 3.8106180393786193 2.566018643501679 1.8037174593321441 2.5886543152620813 +3.823007784070199 1.3612137106420286 2.8283610592401685 4.621130200185353 3.0453983733973784 +4.2062235628815134 2.04794758227593 2.9547165988631714 1.729994804588356 2.481551668176731 +4.577505073544774 3.882861124324652 4.341829743751465 2.8349723473012314 1.65926171215541 +3.7394325765181775 2.018388477815911 2.2222564746717426 2.553628905865287 1.752655264971699 +3.425625698107915 2.6225016339914187 4.891275067307228 1.5177187354106318 3.4678365859484517 +2.955871194937039 2.4082537598162572 2.6697921392087713 1.8070083661577754 1.0219005305255382 +4.199272423579643 2.5916002368841213 4.301341250195524 1.3253426566394255 3.3824809664981466 +4.458171458507744 1.893352856538375 1.6994970332865833 4.866882915824069 4.075613793026258 +4.52105818029706 3.4179629097453024 4.7548245993618945 2.9278842541866794 2.1341345320158682 +2.372676841614796 3.7872719945161344 3.946577344193271 2.2923632242997907 2.1765807591419444 +3.3372404169606966 1.3298976886249925 2.2407964905202795 3.1277785756448444 2.194575596404496 +3.3038301616000436 4.326811945391464 1.1835632553231008 4.117940073736953 3.1075808987721754 +4.367868845132811 1.3097182593848764 2.046147818682446 3.0371171343653613 3.2147014153316795 +1.2395210007426614 1.3574674436407554 1.1919299429951637 3.2360590410692724 2.047529031048298 +3.3792076538770286 3.498952056986987 3.370396096790094 1.1826581939232184 2.191012517927845 +1.2439746788318287 2.9186521231151654 3.1206657883671425 3.883680918869172 1.8403088414085276 +2.957961234637389 1.2222121992747272 2.899941178258155 3.2016484698206114 1.7617752420624955 +2.663827466734498 1.4493790110693876 3.886121277050579 4.502588225875016 1.361953211553276 +2.8768164094243227 3.2177025409109348 3.7193033722632682 3.8500105120530885 0.3650858954163299 +2.900982561496955 3.0829115715956115 2.5255436135296265 2.520839401125091 0.18198981930268515 +2.624943220600434 3.553736920149574 4.167384527120305 1.5064934956784075 2.818332630746432 +1.7270221410038862 3.8568245478646848 3.973430230639084 2.1655637099640295 2.7936427203291005 +4.1166850534835895 2.3587308861363776 1.1887035816708997 3.780391344362995 3.1316526489668974 +4.436742683947468 3.1749300505863483 3.109714303286542 3.9255818837635994 1.5026014210638867 +1.2944663308096218 3.180937624553175 1.550148495452651 2.34782495166381 2.048184969897023 +4.177360645014298 3.2976725071082003 1.7852002096343291 1.7322945002960681 0.8812776146330296 +3.329390038823168 4.907892404540593 4.280442617117578 3.205609098985113 1.9096954757962123 +2.8490535134550274 1.9235465518948236 1.1519106982039244 2.2141038568176965 1.4088354914972516 +2.6736864771817856 1.8231261759796569 4.209595184407276 4.306999868457105 0.856119441699523 +2.949193700989199 3.054853714102457 4.758720441558984 1.537006046777849 3.2234465529788254 +4.1048933316624705 2.913906982623114 3.321251265757289 1.8509311479193347 1.8921653554901356 +1.493007732855867 3.5362693861079313 2.0435281081584984 1.539321646494625 2.104552764754061 +2.657497031600755 3.0718515230317927 3.921876714898541 1.3292221253420236 2.6255566010500604 +1.8928172100081402 4.956247734654631 3.1286788305914257 2.2491257410279495 3.187196294032818 +2.9299418553450858 4.783174873983717 4.055018824404182 1.4358462873026419 3.208510152777979 +4.132078495224662 3.2985648541992605 3.103392905256649 4.526390685823691 1.6491414958317403 +1.9511358518762894 1.9080015080157864 1.4599827243073555 2.039223822753725 0.5808449205679883 +3.128205667895866 1.434157294234431 1.2166519050893498 4.960004030874983 4.10883012911568 +1.5774863252173255 2.860876727997971 1.5999087955109035 3.7969956861833225 2.544460990291277 +1.7792473952027565 3.9908039068861476 4.482820489205341 2.137794596534877 3.22337224683469 +1.6311865124617424 3.228108092399787 3.2180995844003926 4.346247084511159 1.9552174596392067 +1.4297369652514313 3.8272711450319883 1.9378618583491884 2.874590874833418 2.5740301850482523 +2.5720623615188867 4.297157423370752 1.6176690332203867 1.1976936346776323 1.7754808666405946 +3.4677337830238804 1.165751063398777 3.0499644632478975 2.0893672314397174 2.4943679526505558 +1.5661789425964554 2.062561459938958 4.206006694547294 3.7102541688197546 0.7015455582415974 +2.436084295722505 2.9131143843497695 3.2488324384932525 2.2713619884119964 1.0876608783245767 +4.677876713798437 2.704543493291876 3.4183633326380916 2.1639540188224995 2.3382871350076107 +3.469655204924047 3.602841455607462 2.9590682477387653 3.7526995344762644 0.8047292691705229 +4.582916539539855 3.6778415434538276 1.8386755345347687 4.490497782429481 2.8020210532702077 +3.782813824266967 3.8867497019259876 1.1275718968709785 4.483328526213919 3.3573658159402058 +2.5970950665168493 4.365641409294307 3.186778337354428 1.4149398359718854 2.503431213661173 +2.5892374119727313 3.736392693110348 1.4580033908387797 2.963518854193383 1.8927604310746118 +1.2730534409585874 3.3667730038967396 1.037280690574243 2.1713318815190097 2.3811202640591613 +3.9958797874756624 1.7411836849455762 1.8761454871217524 1.5236138216329795 2.282089632318733 +3.369363955941576 2.9201306972495624 2.0375701768714833 2.545240300497997 0.677893409864711 +3.680695376419999 1.642259796331604 2.800573410205357 2.6114048539371586 2.0471942645608667 +2.8414041912546484 2.244212158513674 1.0673132001532406 2.5400683069382572 1.5892280920404858 +3.5356415675956185 3.7154899571111417 4.088948119311323 1.2684419788251717 2.826234302341441 +2.8045156008213588 1.3521803213121966 1.5999176548560188 4.896676848127727 3.6024851064964145 +3.855778235544326 3.2290004213597094 3.1346221466806043 1.8651084368914246 1.415809128271439 +1.5646519617813883 4.895406432418628 3.814916381785238 2.556623947260597 3.560509120119187 +2.1918542519009443 3.404117807700588 2.7371864762095037 1.3847670847320828 1.8162106538516267 +3.8479802458714922 1.0640627895006736 4.75571023295025 2.6039089024662307 3.5185857058993126 +4.294835846822758 1.8601128289608422 2.752651629126786 2.7284066374025486 2.434843730782397 +2.9472623355380563 3.084502098022291 3.209483209385505 2.1586222648039843 1.059784637203944 +3.149745462320959 2.535331455558771 4.639318861432429 2.5446766314138194 2.182895014306208 +1.2734828368519877 4.117684137222998 1.7339345351600506 2.084841613500692 2.8657663573050947 +4.215696601049506 2.541453587824934 3.8678718646652617 2.168703444334604 2.385427212886672 +3.7354561909655186 4.48104599755006 4.228623021177164 1.207032221527545 3.1122202878668466 +2.784005428816232 3.6487585115151973 2.9280510784462552 2.9645590888160416 0.8655233843510666 +1.1909571233425944 4.669339124322599 2.3357324930328733 3.6110715340914648 3.7048118730091963 +1.2963722384472938 3.9721136530415566 3.1799993035185077 4.741510831719282 3.098049446099727 +4.484431381428315 4.207172519326059 4.485994975465367 2.5099521433501386 1.9953991457771576 +2.283701929534235 2.0096259266504024 3.425502374760257 3.6072152872577736 0.32884226906696296 +2.673209172382035 2.324029925103409 4.840605550982268 1.170977771199099 3.686203221322234 +1.4218379658490075 1.1001481140610578 4.426144375469734 4.6325233179067835 0.3821997234755513 +4.982698646024835 2.6797622084292323 2.3219329975121386 2.1784911089318486 2.307399360970052 +2.451079844938378 1.9397569289958452 2.642495213427131 1.7106059375995928 1.062952843154553 +1.6680546709382766 4.60509677837818 4.954553361796988 4.1007660165508035 3.058622103460569 +1.4990431992286686 1.6938884762355868 2.7456128431453592 2.9908136202023936 0.31319020265850617 +3.1932791776170646 1.5418804935506896 4.1656962851706885 3.417417723007083 1.8130191450532969 +4.793645823015517 4.209466843669141 1.2513258204725966 2.044641738591555 0.9851980642749455 +3.4990787861172725 3.6465843727721237 4.796647292953185 2.37853863460921 2.4226034305375888 +1.5862547174214336 4.147821028580934 4.468328378103388 3.9898933176647446 2.6058630189486585 +1.1717474321598798 2.6892284800494437 3.502990933492558 1.432250419802613 2.567238790167542 +4.821292629064473 4.214056773199505 1.1279044270681178 3.610872921664299 2.556143174746925 +3.050061566852081 3.7446168807679645 3.222678829763334 4.325459707067238 1.3032776939071578 +1.227352325406851 1.1276582608207741 2.857065782331001 3.983233407798253 1.130571725793743 +3.0921000353240093 2.5132336231814687 2.766165756479186 4.950094825315701 2.259343378244198 +4.6484284850808635 1.326743159707298 1.584497024141207 3.2317614810036206 3.707704625727933 +2.9729122664620347 2.893643239051397 2.209849202596211 1.4476973915232558 0.7662629847698597 +1.8711356811775182 1.461853882226102 4.180971418977428 1.6840918049495137 2.5302014540152915 +4.525891978899246 4.618613186853445 2.3552326111450177 2.5729748415688256 0.23666199803606078 +4.299513111974703 4.172570546523348 2.1612489466553217 3.137362622456596 0.9843334409688858 +4.204418807861693 4.2780971384441795 1.8056815578985828 4.631518222858174 2.826797013127644 +1.3049095070137877 3.3192654308328233 2.6348287771646945 4.938874041769882 3.060433689720205 +2.538086695464937 1.3857973830790384 1.4740963385799404 3.462670422956452 2.298303188983701 +3.327155200101357 1.8356104251718373 2.7766554533048002 3.167115472977794 1.5418057084414323 +4.556819984755325 2.06743177213676 2.0110755606367143 1.0074739272306252 2.684077106139022 +1.7075394774870931 3.619803763585319 4.024651499704996 2.081756063528413 2.726095628513892 +1.1350122130577298 4.206658118719582 3.2720015728799443 2.2641359503200578 3.2327699706145574 +1.4283906079785802 3.9589441166691084 2.2926957269567 4.40672799138367 3.297397985591695 +2.7228608212312264 3.714497841822749 2.186613353618567 4.696791497447078 2.6989513323440986 +4.205356410175781 3.722528389263242 3.5360828086300753 3.2288292132834413 0.5723003316718877 +1.4687735476175785 4.740282781037055 4.5841692750738865 3.857896022116225 3.351155845721084 +1.4509915291917341 4.095889312423669 3.8829097638451553 2.578170459366771 2.9492081880389422 +1.3234314685030513 3.436274761625489 4.79673935396019 2.6503718415300206 3.011810133409498 +2.3021160716538636 1.555687963842936 3.361785410651877 4.15877826475699 1.0919489592580855 +1.7099273842686262 4.5437425094933515 4.230771033581015 1.3836519837468657 4.017038093904629 +4.253454460501462 1.4415901304586147 3.7726275249865493 3.630918623109866 2.8154329016047264 +1.5179601583933948 3.402952314640834 4.3409440253076745 3.3959081216957268 2.108622367383506 +1.994035199262966 3.104516537244351 1.2484239598304487 1.987071155874509 1.3337047957582968 +1.8597709744893858 3.6208717610205583 1.5264110025848572 1.0355953034987464 1.8282166257831982 +3.845701939900942 2.50959095072726 2.6036660322353016 3.266919607408764 1.491676198231726 +4.849485159082679 4.739394899650074 3.4191531481178976 1.2484072156188808 2.173535775800105 +2.8816474664812266 1.243830733178008 2.607108461210579 4.521160159271804 2.5191342867618403 +1.659463043505792 3.2250218323766937 1.8087642712384335 1.3668528102283708 1.6267329408304771 +2.453616053371142 1.5601285964803897 2.4900270800628053 4.451385024734533 2.155283002936739 +4.100576767042121 4.588593125322422 3.556702954798112 4.261358522110847 0.8571460986867994 +3.9078508464245716 3.5745907855921955 4.587408013301069 2.423414866941896 2.1895041917373606 +4.336863964756754 4.566281567205995 4.02121958666649 2.640253159918111 1.3998931059619315 +1.8452257399339027 1.9926326297840662 3.295280460856901 1.1573107822738788 2.1430452953019192 +1.3410013210987541 3.0133306671891726 1.352319328836478 3.0612285676541524 2.3910366430298824 +4.445493050672009 4.11782076370007 2.874013162607988 3.1123300049097193 0.4051716240978489 +4.729887207827037 1.4914054455129984 1.2201656604314381 2.8309328122729007 3.6169510561095652 +4.933795010635848 4.10332963799266 4.096971281186535 4.565039889364096 0.9532895452697817 +3.9936737181173707 2.1594680336277143 2.530334041047876 3.433992063926502 2.044726953734184 +2.122437340737601 1.0081621794686466 4.762647070035246 2.172346030509411 2.81979939186985 +2.460054643531602 1.2751172798995825 1.954790863138126 3.0979804230844126 1.6464989904951008 +1.9153919748273598 4.298754963351628 1.0468711394004346 3.3518998323198694 3.3156562563464282 +3.4472129989145217 3.416155826156854 1.4099127484188192 3.7043505233600307 2.2946479579789307 +4.4358936484007 3.423154676983374 4.552776905292311 3.049721375737383 1.8124061766483444 +2.977785473449152 3.8077377623730304 4.881716970381572 1.2389517881535799 3.73611549269325 +4.7110076198505375 1.5593359157810336 4.607639893501702 1.6327168611741434 4.333959111309816 +3.5674080643170734 4.708510789113188 1.0384788736032275 1.9353681940134675 1.451387571120498 +3.4569912189635033 2.7992363566564706 2.7149670163476722 2.1813304976850945 0.8470002319591531 +2.020612073608027 2.6612998542249904 1.4419948337956763 1.6923214729853346 0.6878548237236397 +4.942310436617254 2.518410660857461 1.894691210817589 2.7714286144780895 2.577587747857623 +2.966221273363208 3.250874217140757 4.640474085084452 4.715947339271384 0.2944885575006094 +1.6099992512685097 3.119093020605797 1.7527343728158606 2.8344711955442277 1.8567494602931984 +2.9324987997651304 4.1672492471027045 3.727455518633432 3.592049569468036 1.242152743534273 +3.5507416195736843 2.1272851138811917 2.02944243463446 2.2447867110960846 1.439653284997142 +3.9366736054898355 3.5421580856418844 2.124864799034137 1.4507736504842015 0.7810514528213046 +2.1578619789736564 3.5088012658652885 4.949284493424289 1.7239257416010227 3.4968523038341517 +3.064516867376002 4.304050540343363 4.043912622281379 2.981110886398824 1.6327863473874742 +3.460724651788685 1.9321512167674069 3.5874499608481702 2.545870743159094 1.8497091698357713 +1.849817044543463 3.411677848076434 3.955593575529734 1.7400121067197616 2.710758272983191 +4.620051236077121 1.2381796048411982 3.302077698915146 3.0176318892107155 3.3938127745673787 +4.1420300362192854 2.3882279467689793 1.7848575559050839 2.241546955353658 1.812287774203909 +3.2814040684326047 2.4954749560215213 4.858320933534639 4.772928129601031 0.7905545526394223 +1.1933451337129206 3.9749540828253886 2.3568201707871155 2.186014753792451 2.7868481903859226 +1.4637603874351335 1.4000888000475467 1.1856469793640039 4.186550222155571 3.00157864192118 +4.54356263475001 4.8411131560792375 3.250438160186216 1.613634248814206 1.663629573260227 +2.7969277456926145 2.019805590402282 4.4858654762011705 2.401176879351447 2.224824799861409 +1.2332944130368686 3.815531735610654 3.675025882134903 3.506502770798016 2.5877305943910964 +3.2366940446118173 3.8368963453948504 3.1677546963679553 2.5242442633147246 0.879970726395829 +4.345488194305942 1.1293904688343863 4.052707955367831 4.288586769232998 3.224736174420126 +1.0387196548372009 2.342256297205558 2.1346995008897496 1.882255814678833 1.327755848303718 +2.970475256945054 4.333408955768485 1.8481477306621166 2.5806202340777156 1.5472893186629428 +2.1444693934005694 3.0543271412544946 3.2916890560099947 4.243354250257129 1.316627420066608 +2.2576525135617884 2.9775399385099646 1.3836413584725706 3.6544685774007735 2.382203635885 +4.738079026665506 4.5911458032677555 1.973268801940562 1.497184411939477 0.4982426301921168 +1.1903116742118014 2.301993680418451 4.455706913230396 3.471714898410895 1.4846134743266284 +2.218383185019165 2.33020527450951 2.9958701306373205 3.327164378505152 0.34965705822748494 +3.529704834028781 3.7020444226175395 3.140720383176163 3.9335560175134234 0.8113502800085228 +1.9329431919307623 3.72851103393385 3.62906195607755 3.64720601907855 1.7956595117832919 +2.796956241719947 4.958884182165958 4.744216304478691 1.7643278612151096 3.6815305993536143 +2.7830544700521216 4.240210304644002 3.2785307845561147 2.3270842948255144 1.7402739867922639 +3.615390156215962 1.662271587562854 4.2952112481301 2.57763521778642 2.6009112947635717 +4.728352662662665 4.449800119993711 2.5832431519053123 3.018065819207601 0.5163935234171867 +4.461425681024723 2.0538824343141933 4.537198878419913 3.0715715943481103 2.8185683991340653 +4.71330468354078 2.5436070844524883 3.2550815461017604 4.7997331380729875 2.6633693345213585 +1.756573064836147 3.685340764548301 3.174972093686752 4.7888260102494735 2.5148895211236915 +3.1051422086513787 4.888287912885444 3.1213062858321003 3.4056963352996554 1.8056816726002838 +1.8920017320861198 1.373378826248505 3.326982463690651 1.2452040066019907 2.145407015663437 +2.1421336442658556 1.2854251858811705 4.635258749162864 1.7280342392984416 3.0308255861108693 +4.686337577643354 1.9484496670905305 1.4363997444458647 1.564721948176666 2.7408934307487463 +4.320698345277849 3.3994669875906256 3.8756053806201085 4.295322858946912 1.0123388642145752 +4.619692858579321 4.459352064515726 4.239789836768351 3.015850132087576 1.2343976551075453 +2.9924269540453277 3.1491988027752784 3.459465885760431 2.21765051550169 1.251672012295977 +1.1542394500441402 2.54803219309759 3.5041025860396187 4.852502005145979 1.9392883241114072 +3.2485969915362634 3.8439807601679057 3.1276694217772594 3.3227871621729705 0.6265403136009248 +2.407007864557437 2.339544786071805 2.1544514373568298 1.6448479701426333 0.514049570329058 +2.6246608748652216 3.3448790382891445 1.982931295182806 1.7545513213499935 0.7555604644061285 +4.494137959147594 3.048438051031163 3.74693161971932 2.41433431487282 1.9661800022408966 +4.099531605807897 1.7352074608834291 2.2335003532842377 4.254634308579582 3.1104679917209594 +3.803975782028845 3.4884242322818477 3.853385237604384 4.84969152677594 1.0450832514161388 +2.99142137777126 4.226683549471966 1.4729774958201216 3.8886473771944714 2.71317776944562 +1.386200039363498 4.401133656349634 1.6893209500409054 3.6230432028319415 3.5817742064195426 +1.9838358091396522 1.326194389806978 4.819903046849862 1.0675513250524955 3.809545337766379 +2.381592910212004 2.201974167648159 4.715816870906231 1.080979857467014 3.6392723183279294 +1.899262578339727 1.1800559434164875 1.818007218040247 4.124166049404322 2.4157041911616846 +4.613758907692629 1.5366661718367776 3.7664478490647335 3.8350051353735513 3.077856365486031 +3.698188728624735 3.3122944983360263 1.5773924454126638 3.4233779411417067 1.8858888640140263 +3.2635133838188093 2.5061474486820554 4.939140686529248 3.2623440856944885 1.8399048889213192 +2.312816203088371 2.8754378908224236 2.0094055185551967 2.4091648959562955 0.6901816596584031 +4.986895292365903 1.7722198627740782 1.8326049020196717 3.6710726429779856 3.7032555612819578 +4.80505232999035 4.278979126101737 3.9892336605783676 2.133273952463508 1.9290773582195777 +2.9743620486698745 3.5032241938952438 4.756176879632888 1.5090589933274305 3.2899042138362025 +2.4717285170085557 2.053848674186054 4.661218783933986 2.1812020718714944 2.514976432324289 +1.1497742775730098 1.2641176510694985 1.846322481249227 1.637597081958389 0.23799306580587024 +1.995577007048706 2.0640037293384794 1.4038830200898853 1.2186120205529165 0.1975033153968542 +4.031105020058895 1.5288524308455602 1.732841339453961 4.05023718888529 3.410511918053709 +2.1009505467872986 1.827827030815198 2.2298417326253537 1.6635010331616864 0.6287592884768846 +1.4980814623098726 2.4673331623768813 2.131812072858069 3.7766695244064308 1.9091895908989651 +3.739995683977854 1.2867617821989588 2.670566335484766 4.522778736877017 3.073930278439729 +4.527853666313182 3.821708547509785 3.2033657094724464 3.6087338880544264 0.8142261903284218 +3.9179276328586106 4.457210031243907 2.0917700275882067 1.2265495190667575 1.0195253962380304 +4.928772733992855 2.3340865920582856 3.107804410100638 3.3196998835440117 2.6033240034258305 +3.1213097201060127 3.1992800584801953 1.1865756507921081 4.352993011312191 3.1673771917264846 +2.066259779040885 3.252267030448996 1.9457383688671444 3.8712089180002835 2.2614265488783167 +4.4915082311598535 2.1030136946616156 1.7610514411333145 1.9059317247490908 2.3928845453683136 +2.654641899224068 2.141564033124378 1.1942989862322677 1.394679553629901 0.5508187256003636 +1.848274053763876 3.7885430506764313 4.210070405320476 2.1424359972588634 2.8354463186208174 +3.2690437339319725 1.5917950071054712 1.0095153753904484 1.9506300889861476 1.923242105349047 +2.1267272009960374 3.6478758277378396 1.8916769847158568 1.4862370989641698 1.5742536789211616 +2.0883551942286873 2.81298549077155 2.9231855116776098 1.2925979511956949 1.7843499822249445 +3.095774091642078 4.370169941900311 2.9815490370759985 1.6291184648267532 1.8582661908106242 +4.7236378878816865 4.307588483757609 1.2678519274487816 4.571606458335978 3.3298485111232434 +2.2339650486093245 1.3039842007221067 3.951772353573728 3.5834388660822087 1.000266932095975 +1.9936271571472255 3.4828328583115966 1.8675355326087422 4.6985329526767465 3.1987935245670616 +3.8740396984174192 2.7973732850545003 1.490128435516644 4.990675598395097 3.662381875938138 +1.1142813112513803 3.063602168027472 2.4202748614060097 2.6796067265290424 1.9664955679915646 +2.3128747792874793 1.8593649415560987 3.1064354909348975 4.701445455335904 1.6582303698393788 +1.097568016483803 4.197590182436226 2.633814557201454 3.3768739064719595 3.1878322769453633 +2.741931173910688 2.311255533256412 2.790294853663931 1.153357528637906 1.6926444734545791 +4.604504913110303 3.5991339702298855 3.3793426049144126 1.0277001358298183 2.5575365168831015 +3.027719017629975 2.851635124295482 1.0768020024764358 4.4111360440531815 3.3389802392810513 +2.1395973934867234 2.875759101301909 3.4843002139239974 2.1927914977095133 1.4865829354971607 +4.0790904556441046 1.624766283797776 4.201550871428756 2.133246727774035 3.2096088813387302 +2.6804437698205272 4.790325599912612 4.575053537882145 2.250535846196217 3.1392648559676517 +2.8535597730964297 2.8507741304822303 1.0666725633338516 2.4504444579838625 1.3837746985069697 +4.8654052211222165 1.7308886657744704 3.03016099266609 1.1108894909042477 3.6754315574125793 +3.6362881691811917 4.206867661175538 1.8087457031892087 4.696846665354849 2.943923933179427 +4.924030197832831 1.5983511542178666 3.2164520650761514 4.9846825442090275 3.766534233015044 +3.9432680905865034 2.4476388892446095 4.24040100418147 4.817542343568748 1.6031215903780764 +4.713325755358192 4.928545910432755 1.1870001777723465 2.6366964003178572 1.4655848159738287 +1.356300486557307 4.0990855239405155 3.207030258637255 3.7981242581018497 2.8057551349852785 +3.328582965787122 1.7157984849356538 4.519974587235779 3.2842656595584243 2.0317604031028997 +1.487607066976501 4.548905468493816 4.633258600700928 4.163941913229468 3.097064102706247 +4.185263905214891 1.7151071495910033 3.0677151988305846 4.377058876518739 2.7957208844332566 +3.860229748463536 4.482370731869922 3.206672178731641 2.083402378384005 1.2840539114877083 +2.514326850053441 2.065789364893248 3.2014634456416853 4.1472650303140615 1.0467695606782843 +4.727995243975583 1.245486397878656 1.8160949773265287 3.91458270123888 4.0658970216367 +3.1568737240910507 3.6069170418842247 2.9539952699385683 4.600190131789958 1.7066037944046075 +3.4589187329368154 1.8758846057129523 3.7770598789733345 1.5137783794233672 2.761963105141082 +2.888551109683785 2.49453548702984 1.1635163791116256 2.833522088239088 1.7158576221276909 +3.778573786605625 3.7306614630819177 1.091656449924605 1.9487430778466623 0.8584247657822107 +2.773968084415989 1.5652981246537765 3.260249757745437 4.091208036144289 1.4667565346952345 +1.9431742200043 1.0578778388274164 1.070305580812605 1.6619425884044863 1.0647929523044197 +1.9090029065157683 3.0425703280883183 2.1487816185701334 2.2436639143624246 1.1375314278319766 +4.248614845906715 4.81270163799312 3.4842975268513965 1.4291430621417 2.131162542562751 +3.4976540563811214 1.5474382652900505 3.7754102374214016 1.2212000706287887 3.213616530945738 +2.9649746675157265 4.798077453154836 3.902553214004329 4.174505997938416 1.8531659772959792 +1.6474287550247446 4.144944153262723 3.6985987744907525 1.3898713603978003 3.401147664689103 +4.24578844352571 1.8293837801685844 4.886323316413717 2.086626624269726 3.6982851519448943 +2.434960044880126 1.3489552586895899 2.383455830584576 1.8991102265512132 1.1891160833893364 +1.1729046120348259 4.245270443397244 4.5224652137465515 3.4130400760497976 3.2665357701817292 +4.977750800149207 2.726122018905954 3.165761682486242 1.203939085684461 2.986399181262455 +1.2533216528661923 1.515096766561912 1.4813955715116842 4.479422179692442 3.0094334605553628 +1.166751794176597 1.462917990394812 2.8451193503450467 4.0713911095616 1.2615295649466274 +4.427116727338243 2.712392707072338 2.2096161398820957 2.305177351998157 1.717384759143378 +2.165247235402277 1.7240172535287153 1.600321605888536 4.193258605159279 2.630210291800127 +4.928405645139901 2.631733565801611 4.340059514176041 1.0255029679081722 4.032491505064735 +1.045308800094475 2.1962843076787006 4.156863993973561 1.0038253754255861 3.3565454188962924 +2.362113728844859 1.0659513594229333 2.610960581404754 4.159806965548392 2.01964403041236 +3.808490288804415 3.8299210807203816 4.421935349917669 1.5150148250908968 2.9069995212420143 +3.9391133486594523 1.195916668096039 1.1224027865170685 1.143895656568911 2.743280877292224 +3.380441312554086 2.907618435568182 1.025538996913514 1.7223612580993808 0.8420942564139787 +3.7300186975632696 1.6236040710144888 4.64278333440495 1.2696222417299539 3.9768327015446614 +1.151689212690758 3.9495107486558187 3.634439249669574 3.2082336832545173 2.830098325492079 +3.7870911138832875 1.3651514933708722 4.512985895790024 4.6292519745740695 2.4247287119353453 +4.6479305401725455 4.704374291281917 2.704926058887973 4.435434484900494 1.7314286902843066 +3.899818606873296 4.0687875107911715 1.6026454391978064 4.452451303426568 2.8548106687281116 +1.7017352179181127 2.382525064001381 2.094543147025702 2.1847579061284845 0.6867412302243495 +1.170493647918823 3.9753577573362704 2.843892679116234 4.416152035132512 3.215472306657119 +3.943780736321938 2.0140760071615196 4.329702283253294 4.480157208145121 1.935561165700606 +4.758927808655352 3.051353644866966 4.059681576501324 3.5096837196470965 1.7939640931138647 +3.221410918602521 3.4076198576310994 1.1923766271145841 2.6545230148848757 1.473955843383329 +3.0978236779241115 1.7109426791152291 1.4315574598532703 3.6419782208072267 2.6094824861097248 +3.0453843519668404 4.614063112756315 2.4646760854379544 2.9417415392660566 1.6396171814750586 +4.260978753842619 1.1400401305295964 2.198353309507851 2.343880156806007 3.1243296807109724 +1.7535889733231151 4.394468402857361 1.1003517883583571 1.1597981913686364 2.641548416396713 +4.6145894284964175 4.765366093852764 3.484687447280606 3.117048761079747 0.3973560197196885 +3.3583164561870267 4.058623299125457 1.9695371238212775 1.9206799507324837 0.7020090438367723 +4.735458022118958 4.6857465532058065 3.8206714418860357 2.9085490410315 0.9134760556698495 +1.1182126140417896 4.512951704428495 2.470539129530242 2.9635809840557976 3.430356215047288 +4.591782256363418 3.449635231440886 1.661154609783495 4.518366920865905 3.0770378641057174 +2.084032311340434 3.8976941345457514 4.790711028499184 3.579855765936958 2.1807199902387913 +4.244462214300587 2.70121248898958 2.768309866464939 4.28203017096963 2.161705085098861 +2.131257065883537 1.7899402354736726 2.9135002011784294 2.256616611654564 0.7402656475258016 +1.7723100135345633 1.437350478858793 2.910266450796482 4.56181637983921 1.685175082295976 +1.3485481541186233 1.8184833740459663 2.0414791575757865 4.600927148813823 2.602232336049297 +2.962017705921253 4.5950049044765375 2.586346014207173 2.6455215790398108 1.6340590375254802 +4.643446568181375 4.635993742239163 4.633400347836343 2.8286090273345548 1.8048067085350477 +1.5872071534896017 2.2688977710624645 3.8501479717288656 4.7002052037311515 1.0896326884626117 +1.009727843196579 4.147107937710496 2.442774401771348 3.5322938964916264 3.321175482690983 +2.2643475659704744 2.6780134331628798 3.127769908556775 2.9344703135969503 0.4566006823162631 +2.226858513277552 1.8925721520045253 2.8495534816683943 4.010556274522802 1.2081700444676218 +3.52224552447528 1.6196938193139094 4.415414934699644 4.35716120300837 1.9034433241019806 +3.6372717163040926 1.0704736056650686 2.7190269004366097 4.043181356313452 2.8882239462684605 +2.3508262644322317 3.396694063531982 3.782397812549985 1.471468501138919 2.536579140403977 +4.4744102411485285 4.348359878330041 1.2585211337386277 4.901981690894949 3.645640345058811 +3.717254360334498 4.637085911438156 3.23497469794988 1.8194847348718741 1.6881060150299612 +3.808737374664831 4.99833435173842 2.2686431813844967 4.1170117486601 2.1980917470285646 +4.909704408297517 2.3034961345793827 1.6740315723792514 2.5917937054329334 2.7630796041489836 +4.543882265828043 1.5745809824508958 3.4808433142460786 1.5277468456117038 3.5540590776262064 +3.2088950895937014 4.894923610035496 3.992800114193068 3.7628595118836294 1.7016359341332608 +2.612736282515674 2.809498522500667 1.3128628516294287 4.066988372989661 2.761145191128435 +1.5271453523732759 2.630259224629926 3.410362474986941 3.023761625230045 1.1688971007739795 +2.0251774476111724 2.803546891559787 2.1586461196625453 1.2795721085918021 1.1741508030116408 +3.4097990059415206 1.5371149292185082 4.4834623652961 1.6923067249883479 3.361174714238119 +3.553913787016778 4.194522594754521 3.7804425123529484 4.371498082724693 0.871622815109059 +2.511189753713464 3.8552608545553073 3.7664660240522965 1.8522964684005245 2.338925439577394 +1.9547383262396387 2.702243600969761 2.7811016749412563 2.5316152951771707 0.7880403475946804 +1.6791370123680687 1.1209532957690835 1.0051430001887058 1.1316082041705933 0.5723307691313098 +3.5181183583741493 2.5419067867862926 2.420590045013888 2.2928832142328552 0.9845293632645846 +2.2554774952445062 3.0218564303319617 2.324545567946204 4.22652644900095 2.0505774659942917 +1.8635664523885604 4.441044252271977 2.5598489544012626 3.1167418495910058 2.6369530723174943 +2.5682354282048188 2.159824662980739 4.717888208643325 1.5377488393125094 3.206257282489775 +4.508894380754228 4.322136857073781 2.111347724011938 1.4359288971477855 0.7007631299760286 +4.601154421266568 3.9878816062405287 1.0919548059797206 3.800019036752521 2.776637431073967 +4.744956528272066 4.882978653011705 4.018641712829323 3.908498600826117 0.17658315899143706 +4.211464589041109 4.446891587557625 2.555406820334887 2.2900786282708503 0.3547180868442799 +2.5874799818874408 3.385183491706176 2.2749423134404365 2.0335122240609222 0.8334382866385063 +1.6790039731348951 1.6807281105841536 4.324230940414605 3.052676619163179 1.27155549015492 +4.754617553010732 3.8870545684413353 3.8283530399245125 1.9887662340018801 2.0338990016024865 +1.6755084635437854 3.714346195163353 4.827391405037682 3.4456866990343262 2.4629184295196307 +2.9592635346065106 2.5319975349006305 3.2446998687627895 1.3209019161208722 1.9706736911761666 +4.049389414361671 2.174223086909124 4.043153101104105 4.24185645385515 1.8856648106188914 +4.800419728290345 1.8253723298865396 3.5568472208195137 1.0103643468527794 3.916054398263018 +4.870252379727702 4.86280608961291 3.912880331392555 1.657263191105109 2.25562943117769 +3.9031766111453963 4.082060076774649 2.844605540895467 2.63941727528419 0.2722159411571925 +4.1880729714813425 2.459390789847644 4.135790568073336 2.5670057062876492 2.33440099975685 +2.3270227037383804 2.3711649816872207 4.8113569080652905 1.5063877858707113 3.3052638985960137 +4.920376251912152 1.8395907025235 3.540244047283876 1.031783416074218 3.9728597180935914 +1.0070076327410762 2.8689263079415404 1.9614627852812632 3.358023860393773 2.327471587276558 +3.8041470979732934 4.153677035249153 3.9671586172692175 2.0352868084623834 1.963237087749377 +4.033709950706404 1.3141254728726146 4.318212059891618 2.891905276377656 3.0709104143189245 +1.1693779385952014 2.9696658641355067 4.4258544904614165 2.8703755215564497 2.379191341097196 +1.150609471754997 3.6837999283256573 4.453048897095428 3.1464722212939553 2.8502976158655953 +4.6670728177218805 2.3239612975932755 1.846549874829484 2.292986623768554 2.3852625361923305 +4.220910665457804 3.719876507618653 2.534836393650285 2.3036448093539583 0.5518013917806235 +2.4512017033664115 1.3878125613064451 3.873461968235016 4.896397297184161 1.4755314820983412 +4.814375650070222 1.1628515068749414 4.844531361218114 2.3742797449959325 4.408602002425069 +1.889800212512557 2.00547572914061 4.820962565999686 4.530702691588801 0.3124605892591729 +4.178103883688099 1.5411110566073187 3.9789704829230326 3.923904123415029 2.637567719324937 +1.5289051032057794 2.072565304181276 4.691057577026511 3.4833579090083857 1.3244262539891782 +4.4261807120089465 3.2045916876300113 2.7189507575832588 2.8266851187429145 1.2263304762818046 +1.069444460170816 3.4000540397858567 4.260364842308837 2.254840537021362 3.0747144179081425 +3.058527661039456 4.784344813401066 4.791875308960579 4.6719733769434555 1.72997725900862 +1.8566674217540546 3.4039044135828025 4.54287231016454 3.6872992045601207 1.768034967956478 +4.642100402414634 4.049729777320759 1.8680679716479225 1.3929375428283057 0.7593759818854039 +2.166306511438939 3.0117334068214476 2.269722417282861 2.8645036116330775 1.0336882047255729 +4.242509235864272 3.7322205769927765 3.3957268408800205 3.0077864479979923 0.6410087860570494 +2.4233872841136037 4.031106658579818 3.203148434387079 2.3880757164571884 1.8025274262955482 +2.3548281388352343 4.832831836332646 2.3413223281913362 1.9219071198551596 2.5132471907463705 +2.1750762179751644 4.525902309335387 1.898020207605668 4.85581743968656 3.7782201865329883 +3.828803253553306 4.623179116172864 2.6455299516018274 1.4106751177534207 1.468298154936981 +2.8016734761298063 3.1977495832838563 4.356794359526147 3.234788046239352 1.1898632063030326 +3.3519530794725445 3.4380837725966393 3.840161490549755 3.2418054919949912 0.6045232810277084 +3.6688318960725947 4.413575910768811 4.067749992908503 4.214687011126022 0.7591008725778768 +2.0312537253768808 4.277453087495514 3.1041923540665537 3.037690805267605 2.247183577364078 +2.590285152505061 1.3568853599994593 1.3562670184243104 4.6536541554006465 3.5205165784654193 +3.517918770221064 1.8270076214420028 4.739486761152482 4.009803282993201 1.8416347334267862 +3.9869846481873976 4.570850022311372 3.66204597131064 2.162466055929155 1.6092354388704193 +3.4962893996665945 3.100130018348789 3.91211095971584 1.635980042568606 2.310349369121392 +2.077152089220888 2.492244805665962 4.618048312041454 1.4574052530708967 3.1877839496215095 +3.378537468400869 4.5490962599103835 3.0470021517527046 3.8064076183449496 1.395315214233114 +1.2346791327097861 4.2114276659433525 4.863007554176953 4.090366223617433 3.075387204206484 +1.4537546118458136 4.695808157202305 3.015486877275202 4.19585886710311 3.4502448065795113 +2.07968016256156 3.166137369251774 3.007056179979391 2.958032759315949 1.087562668420835 +1.6268834633620939 2.5560100109606063 3.35436421084313 4.563438525328924 1.524839938944945 +3.653058117699305 4.58996700861692 2.9240423700601377 3.266747293879572 0.997619634274787 +3.1173366046204554 3.505845140756862 1.7605593096351573 2.604839488470393 0.9293803866151424 +4.6882653448234155 2.0788199324736403 3.6516563914323696 2.919716048046356 2.7101553509548717 +2.336040783067406 2.144916417416472 4.383951590994759 2.536231651937441 1.8575783957441607 +1.4831903641874118 2.65578798090014 1.025787339062791 2.655899708411529 2.0080466895528417 +3.570867373951922 2.2418894304346932 1.446682551778439 1.5096201928509796 1.3304674069736013 +2.074053085938072 4.950121329903098 4.803284664581829 3.8003558858224684 3.045920990309468 +1.466306813872663 4.580177388217036 4.004259786248804 4.2142246227224085 3.1209413942467976 +2.2509202647652966 3.678954739550201 1.1607648249058156 1.7745362849146433 1.5543480518518258 +2.0289293186825215 2.133003391041723 4.817747949995622 4.081962165027578 0.7431097724417769 +4.137073085584859 2.1231837545986383 3.6326497386801413 4.6474770594860395 2.255132973576992 +3.597192667160224 3.370822571886833 2.2606614659209257 2.284439843856942 0.22761553394123216 +3.615000431604666 4.715731024411704 1.4398324534069893 2.9873652203801937 1.899069641376291 +4.572921879054803 1.7648636400648332 1.9781460548682674 2.8177068003996184 2.930879274039893 +4.610394324423775 2.673213688200709 1.987418261398982 3.202837049134638 2.286900008076089 +3.6428034916696372 1.2052925565242982 2.3704327195854513 3.4064893318821414 2.648560526557171 +2.03678242209238 2.0472789061421253 4.049706919931301 1.771450829373228 2.2782802703667437 +4.163016278724596 4.107831464180482 1.2923317947755497 4.640994083824312 3.3491169716588827 +1.1195966019058443 1.5933895071811026 3.759029061821545 3.5282164955714883 0.5270238683666109 +3.674176527583198 4.9630276905924084 3.1123386778119233 2.2931339875544423 1.527165231705479 +3.186839380828315 1.705602026674352 4.7166498109411865 4.458482122741911 1.5035673096244118 +2.0217433440856825 3.2216090312457077 2.7475327356894668 4.876214825016673 2.443555832111564 +4.664902193729732 3.3502234777679845 1.5950494179853618 3.7563908158088637 2.529778006890818 +2.3235233672857496 2.6576803598434635 1.1409966676401107 3.2085313293352824 2.094363978153316 +3.48088891391816 1.4831093999012057 3.906316330184046 3.3365196841049967 2.0774482435210633 +4.602818790522931 2.4951761703283166 4.2339158529500605 4.062496219077364 2.114602115136053 +4.497174304319494 4.150848386684645 1.1869326390328245 4.131484509203345 2.964848623007645 +3.5698663565908517 1.5339482708278096 3.5769519848353295 2.186587609627649 2.4653753360865145 +3.0490005660452955 2.043273375181773 4.6573662252222645 4.540236217246401 1.0125248743663824 +1.9159117401540913 3.6551144047143773 3.486431721489216 3.1609252578009253 1.7694011321112169 +1.5837609197548264 1.207777905694889 2.4255299536666994 4.20580959811514 1.8195490758149562 +2.840507235644631 3.0168712182237933 4.502540338307244 4.927706418220431 0.46029387336779715 +1.360339044262 3.8116654416260514 1.0785360328567628 2.958998487701807 3.0895210228279186 +3.6614175819109858 1.5636731598166338 2.5069667040329526 1.5228882240632013 2.31709777850818 +4.943957775506297 1.9486433656097888 4.5014140753350835 3.274829329412378 3.236729607653987 +3.2145302631145043 2.574462801640706 2.805269072659978 2.38010684592034 0.7684069717823491 +1.6961347248938234 4.867987822385935 4.792362058721704 3.1316657912108274 3.5803022449221875 +2.3289078068860074 2.221684420004388 4.324850021857469 4.118385997770977 0.23264618616335223 +2.0154556631219913 1.6598321429121525 1.1339568164238165 1.278030707058888 0.38369958833593265 +1.525947802099322 4.549581884941529 4.825470440312101 3.9038836412862 3.1609627164937963 +1.6888732490488976 3.0417011077890517 3.0428567001979303 2.6097315691651146 1.4204719618900135 +3.8623719307453923 3.869302701534449 1.282812299243071 2.111117631938706 0.8283343284904694 +2.377094198635292 3.2963084446310664 4.102918555012925 1.902220359303676 2.384958569585544 +2.944914269772214 3.476478951143715 1.1330730059500338 2.8532326683892486 1.8004194718910864 +2.7349128305100305 4.849825268830676 4.295960162832751 3.3122039014714035 2.332516024281727 +1.552299941996091 3.486697568793046 3.929609777404118 4.944386506440541 2.184414335320008 +2.8293223830863328 3.163259089719377 3.7665816902646454 3.6331441358124996 0.359609934477752 +1.578400356781665 1.385647711545913 3.269440824563193 2.2486461340650163 1.038833664450016 +3.363493222236159 3.4763280859914882 1.1332002304668776 4.238347634732885 3.107196824904822 +3.228075956922881 3.9764100552362818 4.791790334850482 1.611012856818804 3.2676213500728775 +4.522781718612692 1.3158128598451264 4.71524943791578 2.7574107447697425 3.7573636514828754 +3.216819279700239 1.0812945152529636 4.105171617312282 4.6807175928711136 2.2117231267836304 +2.159108294613112 2.2555199647332627 3.949002880907736 1.9138116379888581 2.03747358397331 +1.5182813931185386 3.9612678491086735 2.603236850634609 4.86592454137493 3.3298556139837365 +3.895206964815771 2.004577954667159 1.6311472451623308 1.5630354425712523 1.891855510251173 +4.148487086497407 4.6018027931360255 2.7487172237682356 2.375690066228172 0.5870642129679594 +1.3479522605352607 1.2150531630946153 3.9332038372527887 3.08271644511746 0.8608083260991908 +2.951610636924371 1.783992846474796 2.990533366038298 1.559204164791487 1.8471693444067823 +4.626171774108559 4.944171964689243 4.177349901156967 3.747027667202773 0.5350713468731807 +4.588355408235287 4.57142446553925 1.088768965280039 2.437852912829266 1.3491901846498817 +1.5256636866655873 1.6816253944767312 4.810075911090216 2.1258682624263137 2.6887347871162683 +2.274323174935489 4.186205261915765 1.3269652761690827 1.6682347466475593 1.9421014304090078 +4.320457477867517 4.613598426075094 2.852296507735986 4.714147752855125 1.8847869042593985 +2.2845871415634633 3.447940428467834 2.505630007716928 3.934068983292223 1.8422347236695442 +4.8015389316163395 3.1175359502571296 2.521039310585832 4.504904222640352 2.6022271289239525 +1.6874055025260013 1.9166715750775598 1.7821036343008236 4.458367414506185 2.6860660366532887 +4.343514881369003 1.3706723288936962 2.1666141909795327 4.204656937504126 3.6043600095536252 +3.1341728251629055 1.8848922653692544 3.9185047424078445 3.5775147590200675 1.2949811140897518 +4.953276977223493 1.167737144218758 1.8294698440535897 4.946301733067576 4.9035653204214595 +2.5272108959696955 4.402449619223879 4.0061714935819746 4.4349463732241095 1.9236341041383385 +2.014344343152173 3.2856884991589386 3.3398983063597787 4.8214444967853405 1.9522538455275356 +4.883312259935776 4.834016457555613 2.3689288326559406 3.372635955838776 1.0049169444587287 +2.562817940260383 2.2066121479813727 1.8791329914934316 1.4432264016962582 0.562936161106851 +4.283573820149064 3.3647678214675305 2.5442702220584135 4.26346039484087 1.9493125232771018 +1.5859471098204914 2.848143599705685 2.182234024060676 4.393405719457112 2.5460597490241375 +3.1061592886081977 2.6586918598274707 3.8418046168671145 1.9401540495619574 1.9535869522372586 +2.1629718104215017 4.900353507479176 2.3396068523124813 4.10296326752197 3.2561763469515608 +4.8255423490274865 2.0249640648416944 1.705650279344047 1.0248537108372715 2.882138562516319 +3.779920482554648 3.87623440787838 2.1424130503882264 2.1540646348194095 0.09701614108498878 +2.3504299552997074 2.914338892734717 3.8949691632702725 4.798926206951545 1.0654255612383565 +4.949851276272067 2.412017012177465 4.600778576098305 2.0905657220924976 3.5695617832485507 +3.1935148048041206 1.2826910197210903 2.45986390945214 2.2253516123167634 1.9251606569704125 +1.453277042791878 3.410011186202292 4.777689232068336 1.4967606177430288 3.8201179406252193 +2.9792638785011074 2.4028581903091184 1.6008307298959057 2.668789827279332 1.213581538696145 +3.1735642984113746 2.699360104752164 1.035015026944198 4.798668331098182 3.7934095232591463 +2.0150120943985925 3.657744470648856 4.3874035332298345 1.5838212976768835 3.249406562972525 +2.395005418210569 3.9172241889614723 4.904180290540635 4.31435282092022 1.6324969923234813 +4.8438374046068144 3.866909141459625 3.4945591636326307 3.778839112939265 1.0174497141940564 +4.289004398946509 3.5929127129497296 1.4718485666203835 1.80148949152065 0.770199178578465 +3.4728013660862227 4.417601536703815 3.3273080561068062 2.749236729883439 1.1076162785914057 +4.671922738481037 4.770175654788865 3.976820998368072 3.273142645780872 0.7105046512605169 +3.1363514185716403 2.5402463276444456 3.4133297078353406 1.5148069357930045 1.9899070318466225 +4.646138677547624 1.0431781413342454 2.095740096608943 4.241325430752399 4.193430701895822 +1.2266854568540388 3.621165171711596 2.4444803919737885 4.16514416011614 2.948595751855816 +4.985657823971842 2.5568619749604244 2.3770507837920505 3.570427066659058 2.7061404672863096 +4.773810908638957 4.704375320533942 4.28014818151675 4.226276891633822 0.08788297200902845 +2.418101124997506 3.3291988811920854 1.8938970936069 4.735754513016162 2.984334551218122 +4.8420863693622245 3.8695069716893644 3.701424196415376 1.3495882125707355 2.5450035716446826 +1.9721577673437563 1.538605582225423 3.2687226216601775 3.1897211284109295 0.4406911993181762 +2.3429809728946 3.7822205581309025 2.045003490203052 2.618886557706638 1.5494361422396505 +3.4104443888779112 1.7697501399019546 4.676923781936247 1.436596928373092 3.632023642068602 +1.2696742186717653 4.681413369010848 3.184885767338369 3.266475670988636 3.4127146001876723 +4.646109121095352 3.6468566687921906 1.1237697003549365 2.299236145620536 1.5427983754785413 +1.60138678867356 4.878850595315393 2.015314652708285 4.830206763315179 4.320345657259857 +3.7846978588972635 1.3254599322264369 3.354862159282002 1.928877922082144 2.8427596143041516 +4.474852945332776 4.126384243070271 2.4402364876080904 3.8690233623923858 1.4706673213247066 +2.8200823297844924 1.5796345448229898 3.983887392905662 1.1550497864428064 3.088856246404872 +1.333213833434951 1.922943494409794 2.8607161448798593 2.7039547320581248 0.6102091556043465 +4.058609739848114 4.791646041968111 3.2328988447002933 2.7525500489843235 0.8764001288062101 +3.083388398786507 4.351330691027402 3.095334924957339 3.844708115559855 1.4728332679726142 +4.215076407834653 4.868297704649677 3.240523162879494 4.865259403056394 1.7511327513232315 +3.0935538786305257 4.065066231069407 4.013232497024931 1.30368146972552 2.878454971070526 +2.081190569582994 1.4053614164365134 2.2512003640528797 2.971778140164012 0.9879156723465592 +2.388145170326758 3.515931485968268 4.92302318509948 3.731357981839306 1.6407217711755286 +1.894020374704703 2.722766891913623 3.5270877242471013 4.34277442045346 1.1628265460308167 +1.831600060755573 4.818650845502537 3.8893037967850606 3.7498527576519542 2.990304162283957 +4.8806411226681625 4.565466845917875 3.8441297700823323 4.680654752731517 0.8939288961216575 +3.7096956013374838 4.763007645842136 3.350135574649238 4.8531603109125925 1.8353608966407937 +1.0087327241057173 4.313235386225593 4.858462581028679 4.502805205248773 3.323586919715505 +2.6327443262535093 4.096338390043922 2.9786769221281166 2.050282894905855 1.7332117739458452 +4.676458584735984 4.8525579315771274 1.9079136387875377 4.090267352363131 2.1894471245305427 +3.0087166692106035 3.7505091114421156 1.3490755097289706 4.770557819719569 3.500970897469785 +1.4916526641962 3.92203101169332 1.8415903293232745 4.400090206770072 3.528832743964796 +3.799202052996671 1.7615051172724998 4.9675321294997445 1.4401010629716589 4.073693499880317 +3.129947147199962 1.3594277980585212 3.3685357867755137 3.3823957596931202 1.770573597604321 +4.283418818400589 3.3498527895897876 2.58055820905583 4.803412531081287 2.4109390011148824 +4.757450599236588 4.468657758754687 2.0453625418425934 4.355714211009827 2.3283311920638416 +1.9408515281821979 1.9886453059699827 3.761496685523419 3.6733729037917326 0.10024991821404179 +1.8316392894646207 4.370652033017988 3.7930886067665273 3.4939476297449703 2.5565740818642064 +4.615324393705757 2.2888580947151342 1.5242258314068646 3.588661346063324 3.1103600168652514 +1.705759424874131 2.218247464959213 1.8975346973344451 2.8590597317146136 1.0895753223022413 +4.0166376609199315 2.5445422485498215 2.7822730274410685 3.9335667499382745 1.868834433164853 +2.197630322713226 4.298530009014337 1.2981453173820898 3.3011065917705453 2.902694155194435 +4.462913900167751 4.617201351740386 2.493279866779592 2.7539023368388422 0.3028674456136923 +1.4914610386935307 1.967790489455715 3.5914945406154715 2.8446262290569413 0.8858340817973159 +1.3820917127708943 1.42529709450671 4.482991435568675 1.7157307567953644 2.7675979421324657 +3.170104019712653 3.8074822283989542 3.1553224677468874 4.0418900699895115 1.0919034271648722 +1.6690709155491263 3.834277803494447 2.447133383672922 1.031089673487799 2.587141406409922 +4.265322657738874 4.190303045639585 3.5710240426344666 3.451389032958762 0.141210756458684 +4.238074446377988 2.678470443730906 3.4040867705031 1.5336755044391746 2.435323992673594 +3.8729136682008694 1.0499299421799657 4.394352624526318 3.7377657063223477 2.898334607759334 +1.939439936460102 3.871192817829089 3.5891530082540606 4.892646968120877 2.3304003300048377 +4.2373376936547515 3.1962092521349295 1.2666762822914035 3.021469204598422 2.0404035463408454 +3.5207363653734323 3.496894774153052 4.107357008978044 1.3908903518397122 2.7165712802752333 +1.3063484158223129 2.047929807494163 1.9808441572529567 4.190952092046992 2.3312057060485913 +2.205314689905598 2.807705944755039 4.013522782687501 2.7336351059107717 1.4145627200955129 +3.598819403857524 2.4344096903140193 1.0617505786801114 2.672830995933647 1.9878204375275683 +4.8686966708218264 1.523747962638569 3.2677450507306065 1.297372583430155 3.882144963840546 +2.5168717122806905 4.333555787970722 4.183137094100109 4.241924379182695 1.817634995193789 +4.264161949164311 2.213873106048258 1.325837230913828 3.8807436969914613 3.2758558256754013 +2.0541501689420865 2.8157604463934662 3.8825001090259414 3.6364508256535726 0.8003689552747683 +1.0156688118750328 3.4264889720832836 1.1912683419193613 2.1639034538674946 2.5996293785578155 +2.883557579243527 1.772358489999999 2.015075859541594 3.9264981038583686 2.2109496629287206 +3.830826548144922 4.196516546035733 1.3562816657014745 1.7473919716793853 0.5354404224556794 +1.1385561800837936 1.7152926854927455 3.962344184663789 4.342749286371356 0.6908929280839939 +1.1258797898666497 4.971888610821296 4.028236626613259 1.8805480413545612 4.405036902241734 +1.0007743853145192 3.67662127540332 4.651869949835426 3.0453258810216637 3.1210800092657967 +1.070217574557745 1.889031460470378 4.27419348641509 2.673901760239715 1.7976066835180347 +2.8950939787343 1.6718933371282287 3.4857477892143875 3.854875348645029 1.2776834368327417 +2.5130457176270404 3.6597946248923945 2.70280960040766 2.1942714649374393 1.2544497166255058 +1.557986489747273 1.9289926939314297 1.4855812113048192 3.7061206582942643 2.251319843820359 +3.48132644109853 4.5139307145955305 3.4509939653245207 2.670633902796499 1.2943080826576827 +1.830254003429543 2.9217322828449115 4.19960021219708 2.491782467069144 2.0268118523951353 +1.327688837036121 2.7268060376528895 2.7191321571097857 2.958712415941571 1.4194814692286786 +3.9534103022357385 3.395578639226396 3.2378444561670126 1.181320018279656 2.1308376118051973 +4.729967223796141 3.249746539280998 2.048306174072419 2.9858912729076135 1.7521755312822629 +3.8626196418471013 1.0656947454489818 4.352042507311317 1.9578929641532636 3.681676372400968 +3.8740567933683674 2.8031297765150485 4.876042990614376 2.190070946797327 2.891596530568033 +1.676069692085624 3.030685974721084 2.4695016672995527 1.026838856410147 1.9789545874285326 +3.490279226459149 4.891548418419564 3.689878694643139 4.904817789918717 1.854624585614683 +1.812555599516573 1.301167936655201 3.0573824623542385 3.7931110400958588 0.8959988179861197 +4.799530801873266 4.665122138751027 4.137014234623196 1.9954088599996207 2.145819020639647 +2.0360554655409935 3.9848234543911465 2.2689290301302134 3.0523445286719135 2.1003420001805444 +2.744805078680566 1.9254021073520131 2.391999799675288 3.0165713224636095 1.0302964701968964 +1.7345073614272946 3.7456767219482896 4.500368953616409 3.1889183336071993 2.4009799927156763 +3.5814252378578306 1.9395549920404886 3.514717055696015 4.858803630483143 2.1218639505452024 +4.66619435985549 2.537631967473021 2.512153126873358 1.4820189656564784 2.3647313268891637 +3.556486408174567 4.789747259870261 1.049350869930672 1.8813909350854754 1.4876904914490774 +2.4453290395475173 3.238222922460365 4.208951855590395 1.2980779566979965 3.0169301557731902 +4.5492169219942316 3.602838120332613 4.495642883475741 3.639988866729587 1.2758434984778926 +4.256477646572618 4.280805266337523 4.123277039732276 1.564776585815002 2.5586161114513297 +1.0411667455581708 3.0855611158737672 2.0933493634989864 4.11884605950134 2.87787859488453 +1.5196840331778771 4.464880451368667 3.4530912480165985 4.693187385741981 3.1956251927479333 +1.459538811710861 4.71184963286019 4.085032215899038 2.940803575235623 3.4477216911287183 +1.0221090395515229 1.6622389862145845 2.3697710849853153 2.670087600330442 0.7070759209617408 +4.350035324883878 4.791583159488331 4.877785037051456 3.3964776266040713 1.5457154118692804 +4.399367592452023 1.438999460628128 4.751707847089289 4.118874801111451 3.027252407712328 +4.0082687294487105 2.725093515899764 4.908014111408597 3.44687871410266 1.9445964306062997 +1.5934115469417862 2.629163188912397 1.6025065561705052 4.056175672144477 2.6633200323148 +3.1030786591499826 1.9815400034872215 1.252708170448527 2.072816850132029 1.3893981440314547 +4.002418960230495 4.163318509391358 2.062682019689232 3.3151269939760684 1.2627379294756782 +1.4431866366413364 3.611480070279698 2.6150687279973446 4.532243688036065 2.8943144683601165 +2.587306085374326 1.5797223783303935 4.160543036568814 1.280814819374958 3.0509112624923884 +3.0657376458244476 2.190495867669552 3.644139402411132 4.188868743518425 1.030911356660178 +1.7580985690295199 4.936284880913038 2.8935369179083876 2.895882772584208 3.178187177634118 +4.808668479226432 4.148852663698811 3.3233910226064083 2.6683530098457537 0.9297481963315694 +3.747702781095655 1.8257594954886178 3.0178997424399254 3.5571313496845334 1.9961554847610385 +2.6817079150666068 4.977455438663195 1.2708183246123284 3.9424748039461908 3.5225282164471694 +3.8897327361875407 3.6455301403179248 2.3582260422353047 1.5131865846542998 0.8796172989989782 +4.707732991301081 2.4612025385967056 3.2206614968726806 3.9449465407371473 2.3603999448597435 +1.7172995131307425 3.825859357542808 4.797303577978605 4.527826805909324 2.125709845710819 +4.938954428323103 3.543873779090347 4.895261201462453 1.118477458122972 4.026207329710813 +2.9387027670707693 2.2596068752262126 2.926918685064309 1.624858758701138 1.4685132897461364 +1.5528841856710573 2.701432096234252 4.608582112919224 4.97498888804003 1.205577134700849 +1.9637985248809673 1.284370181967871 1.2882959948573633 4.855994799247341 3.6318174006961463 +2.7998058684034923 3.4033058357558055 2.119779125602013 3.9531346788345254 1.9301307715185347 +3.2217815510327608 1.5162309809332197 3.4836818944821424 1.7068262411683666 2.4629491996141524 +3.1633433575162297 3.578475876649542 4.005778220979256 4.079450752018204 0.4216190819586497 +3.3609427729833135 2.9250746530303635 1.271076086538014 3.5951347083767176 2.3645780798557134 +3.686660769150134 4.239973360661812 1.348141100695206 2.381123720178269 1.171839543657518 +1.3604970967116943 3.1516156120369443 4.939097522654501 2.3035556554897947 3.186563426250756 +3.5407232406063116 3.6387868141163784 2.920259737140779 1.8397569740442568 1.0849436324108193 +4.216776628947057 1.3677964261894542 3.7711053593690442 4.734893950160041 3.0075865147063765 +1.307261289335293 1.4836938244329034 1.311175242820835 3.9021100281487486 2.5969350206085577 +1.6804542614012683 3.4943725309878686 3.1694852604185924 4.9782092585243305 2.5615975464665897 +2.7024421824602105 1.5105206917512382 1.4342810923854161 4.302066588051208 3.105619179674963 +1.1904774841239387 2.612894043548932 1.3959370377112679 1.5457643165696746 1.4302856644798443 +4.1256644824585536 4.0275215385655825 2.8149483971642315 2.311917658703247 0.5125153278415997 +2.6253245751869656 2.413066741656154 2.918547933254499 3.706475647571566 0.8160168324759677 +3.179479757159182 2.2713071462460936 4.270588768508617 4.197453354179903 0.9111126604551869 +1.7826073913253562 2.112761684242665 3.4613020384175863 3.1147106575052272 0.47867258377147964 +3.674618380893011 1.0582716548126627 3.2852180159629096 3.4858703650946756 2.6240296408926964 +3.079032687223903 2.92843351260517 3.378667991499939 1.18682473874608 2.1970109139552454 +1.2053832094723682 2.9864584470582676 2.769442406941205 2.440544732857007 1.8111881961738994 +2.048672978135197 1.236677953163729 3.775751246766047 3.7822050565515277 0.8120206722979176 +2.0175803072636405 1.207762080312773 2.598563485411972 1.3568574971121774 1.4824436994643053 +3.6090047076103375 3.9624315503193417 4.857988005054555 1.641712787866453 3.235635456265991 +3.504751627212196 2.611790093421907 3.325311829437576 1.3016105739777206 2.2119554860301553 +2.090062588569505 4.594202520301106 2.8007086995924855 1.6910576086796225 2.738985640936596 +1.1629563162426702 1.9367643601029245 3.094770324056399 2.3172489137035286 1.0969587195058665 +3.9085954839126513 1.0436926445092767 3.0127069605730923 1.4207295467385888 3.277508255577812 +4.042402020491593 3.7408560200193626 2.4977081883177483 4.255626948374964 1.7835942244136969 +4.895622879645504 2.8019299245479488 3.895570971096728 2.610968230964618 2.4563701655450996 +1.6607646921986303 3.168160916668782 2.0777691457164544 1.830701259080687 1.527509711312348 +1.3373558547718747 4.219778124204316 3.6532234061624904 2.108521745621941 3.2702387312544623 +1.534495639773588 2.091859540838962 4.441366907933871 1.2884390827361707 3.201813297042273 +4.185880795122735 1.9694722844812578 4.2688838639299505 3.035028767772884 2.5367035862230205 +1.4413146944052184 4.474607022379953 4.232531882272772 1.9232729678908749 3.8122879063106767 +4.175006175252102 4.794829430021564 2.9124247002645065 3.58438282557018 0.9141709847273234 +1.7888873622293224 3.9938960579241036 2.767682257160366 1.8098773759920697 2.404049404334157 +1.9297391350520003 2.8271248082687364 1.3723118164981694 4.523346476790305 3.2763272847591143 +2.606716076658944 4.619147711228177 1.408716149435878 3.082517029917878 2.617535190081943 +2.233540545440856 1.497864395395954 2.942741297856082 1.248978465486462 1.846632592060924 +2.5806987265371704 1.7882277648825387 2.506164678756205 1.4708034607807652 1.3038339912555599 +1.5440088604580575 1.676021679254533 4.133455492792601 2.1507312843523048 1.9871141565249315 +1.4603155759443562 4.827787098572896 4.065387850360922 2.5123693483682574 3.708332633845799 +1.9691837036877828 4.569071988877779 1.5749968045915614 1.5179607164877615 2.600513835920579 +3.9750560986744192 1.3656306553901585 3.2515473547361715 4.059959494688271 2.7317817138419374 +1.449305666667383 1.3525528749511175 4.75667967688244 2.4356992188559854 2.322996209477231 +3.845216382696755 1.753781049305621 3.0312868372576265 3.816008900331937 2.233806274060597 +3.735971548885288 4.322924545698265 2.7300537262440514 1.6490823048475134 1.230045948062017 +3.666919830189715 2.94975153624372 4.687078889111589 4.337575674912459 0.7977987581946537 +3.111891299576732 3.6937984881092345 2.9354077430202987 4.105709139692271 1.306989416605265 +3.0956802094187608 1.7595572868628735 4.862077885524612 2.9545439716796245 2.328928959124357 +4.736580006875902 4.633582639011589 4.446242742519146 4.975031812663049 0.5387265897379022 +3.0384156166671614 1.7146635587390224 1.2449350053825738 1.3030410322229584 1.325026724720735 +3.0260062783956743 4.421483618375177 2.8915921096419397 1.433865444854133 2.0180000088279613 +4.937583701052315 3.3878936144772602 3.118843229138639 1.5960254898407498 2.172674212013696 +4.885094842480923 4.8354814822849725 1.68975068794356 1.6526118650426311 0.06197400807112336 +4.353548068939244 2.230319599193457 4.86043868105963 2.630916812255699 3.07877685099359 +4.06339771600029 4.899185366673326 3.498690604055601 2.294278802562919 1.4659975390812903 +4.269179394769418 1.356049989025939 3.798296001761536 3.583121210491093 2.921065409299428 +2.858288196062663 3.0001261297928354 1.8518829925002462 3.159474276607213 1.3152615579105744 +3.5168172811444576 3.195097190530759 3.1627945980612697 2.7382945622219848 0.5326388055071098 +4.173675888192099 2.6733653414040774 4.361784533898992 3.1428734101078284 1.9330483864883488 +4.172166788937713 4.505741557490898 4.475946076985675 3.1818167669878084 1.3364291216562387 +1.170677850267794 1.8056240660912661 4.588113915611771 1.6757140548065448 2.9808102331760153 +1.261483705420476 4.612113658348186 4.9253636803786955 2.4394590788579475 4.172102919310402 +4.352201054371141 4.58994053250654 4.165538744486723 1.2494170355979115 2.9257966232321566 +2.6773346929288477 1.7468289676666844 1.8884110605159354 2.5440032646335617 1.138262730148656 +1.5265942981028076 3.8971849506759084 3.375760895430534 4.3184495057595225 2.5511491250240472 +4.57291217323683 4.814336064498873 3.406213894172211 3.881271807346316 0.5328841488930236 +4.949656335978515 2.8486469834560713 3.5744856876927185 1.788701803792038 2.7574017442850396 +3.3871972544965328 2.9093459630936316 4.786017253153771 4.013996298790126 0.9079417440959383 +1.652293923934582 3.2652146481950126 2.448902839382012 4.90248294208196 2.9362507697936633 +2.2184713721754115 3.9346729993269234 2.315321350628866 2.256806754018283 1.7171988769662052 +4.18084187748922 2.3741181856051745 3.2470927008075243 2.6837896872327516 1.8925011978642274 +2.696352022056516 2.462008587889419 1.2450050804387018 3.109277033543303 1.8789429901595398 +2.743454982194012 1.533213791236724 4.668558497119982 2.992044907825179 2.067699580543522 +1.3250708597841254 2.7091378160166735 4.005485434834039 1.1034357206031462 3.21520355237463 +3.103547238114774 4.057533691861021 2.285104812071717 4.4907762594972525 2.403138923974142 +4.362493389913526 1.1165808218423416 4.139374224434855 2.1050578866360192 3.8307168208832323 +1.958080258984356 1.165467989455975 4.456879784787532 2.1183887253161866 2.4691647666841403 +2.0678972839501575 3.386661199875815 4.489564054901196 3.7678989588926823 1.503309275147517 +4.706700967690816 4.796385151053782 2.7268502770291643 3.966605823357729 1.2429952000703464 +4.766373718233966 1.478640192023581 3.566581373522248 2.8660414207017 3.3615395230259586 +4.703355225650789 4.6867269453774085 1.3014507650084397 3.654379434833126 2.3529874255906718 +2.365616252537962 3.0703883832257146 1.8605417085557612 2.316835352254366 0.8395877830661331 +1.7943864332690413 2.7714914831485187 4.9965329245895775 1.5651077634335473 3.567830281153332 +2.400513616670742 4.660841613931048 1.1522494212893615 4.750360928041247 4.249175104678449 +4.734060990284196 4.904957672456057 4.737170819362256 2.9693639551282294 1.776048080770983 +3.7183737538638666 1.8701242891673084 3.849836370620508 3.4327438519340063 1.8947274877658167 +1.8435829593317372 1.9240322678605173 4.485137107611676 4.226118403700461 0.2712245936831769 +3.4675593545369527 2.0225953254396285 3.7449834703541525 1.25069706425883 2.8826005136017536 +3.9246271920822906 3.503123244344985 4.837515478511021 3.047301468751667 1.8391660552263347 +1.6647885486032843 1.6169277290848094 4.267034929298302 4.975650336077869 0.7102298591092547 +1.8132806205608936 1.6445185433420293 1.0200000135464191 2.598148047025219 1.5871458201060886 +3.61352577812234 2.4892218224054776 4.331875700219793 4.342246518318332 1.1243517860121082 +3.8978935769544316 3.4709867534030066 3.241874472778989 1.0599036513630606 2.223341202223642 +4.404508978133018 2.2112897307207002 1.2596878957913233 4.843891269284418 4.201990538992102 +1.0634807506362645 3.699609282290151 1.1205030693259137 3.187797054540453 3.3500564258985084 +1.351516274884042 2.367000944295621 3.223275727515297 4.340597107797233 1.50983978641612 +4.797177819747853 2.149325645121416 4.301485028305333 2.519070779457602 3.1918837217494893 +2.595839744502041 1.7331049862446561 2.482262037898046 2.8698421235093687 0.9457957421493864 +2.9731983739338594 3.6963296603822213 1.969279114117282 3.8364434502454396 2.002304051723755 +1.4688552652812068 1.2869241651851655 1.7285710835767052 1.218871042641867 0.5411959505679358 +2.5498395794799262 1.936175738336313 2.3280261922726693 3.4651547109080196 1.292147274044627 +3.95477144721472 4.786815532046663 4.511245215071428 4.2548454411523355 0.8706538940185061 +2.468240055601849 4.318231030180108 4.7241710845030145 4.782077303664624 1.8508970085444 +3.312929372652102 4.735441881863238 4.1870296111246965 3.3616413642465446 1.644629927049472 +2.9798001072155063 1.947202831566265 4.470493328592112 1.4687262457542962 3.174407464911662 +4.220466747030321 1.1170676067235292 3.5198069849938327 1.0017716459444062 3.996446946070809 +4.737598912903523 2.0220932157616107 4.495290586197289 1.3616995779010046 4.146488128342526 +1.0754502104296493 2.456054568804462 3.951738105730351 3.3699067392770568 1.498197628269527 +3.008958545539327 2.5247568633488338 3.9147657572275283 3.054122771866799 0.9875006922968368 +1.0049589798978138 1.0762526432683708 4.831227411734389 4.054446018938273 0.78004622852179 +3.9925758105209983 2.8515833123359626 3.5081468486089826 4.064729610662737 1.2695070901455867 +2.2785547059273386 2.9415673157019895 2.4096379156904613 4.232877843467321 1.9400488537559981 +2.414544628705971 4.417987024863891 2.737729048572202 2.00754155864075 2.1323590704136537 +2.138697583468697 3.046225049487417 1.4538129069744246 4.372266638038257 3.056301405610834 +2.272791114131367 3.8487242946156686 2.6043791610647298 1.2429651043064558 2.0825497889103124 +3.854168243508638 2.6921775037367355 3.9945959640306463 4.5287791300029525 1.278895669757252 +2.226030158598733 3.8266391717461934 3.578156206487553 1.1201722372265333 2.9331952553679486 +3.5350043488942706 3.8853274032786724 3.340493470926949 4.86649475375042 1.5656967003899878 +2.855116359196996 4.725783543380123 1.8578555451588534 2.3395337593903207 1.9316856928716029 +3.440883723817378 2.009437576866193 4.536924174767861 2.3088386572638155 2.64828305604455 +2.126724581473528 1.0917721276060677 3.84443749810505 1.6408695665975404 2.4345098501617453 +2.56775333541337 2.9728320360529876 4.038697722465995 1.6568160189093866 2.4160813735157203 +1.8278069299099302 1.1864032710008847 1.7572248116045848 3.6268320788903283 1.9765702586929657 +4.995805092232294 2.0064009962231752 3.0303268886085815 4.007678014096581 3.1451155895656293 +3.359028624607465 3.817601577696555 2.7326242601311255 4.750560400516672 2.0693852758679245 +2.9410726121997524 3.6531377125116142 3.1877077401466134 3.715913681658468 0.8865879672827545 +1.2786217329001124 2.220792746894188 2.0060730508532645 2.1997752800838195 0.9618766933549806 +2.768092365552225 3.807922059967157 2.0078723374994976 4.357751558250426 2.5696649870175765 +4.891395716525692 1.7772443566407663 3.2203375917911186 1.0737712355794802 3.782285792201965 +4.170684827567115 1.638177641913464 3.1144487144500372 1.0073389978664955 3.2944656627605258 +2.5753972428454857 3.0958579740174605 3.0994659542275924 2.576722305241109 0.737658657678313 +2.4259387707161113 1.542841373198697 2.278006271343379 1.9285177288649114 0.9497385191860724 +1.523319036800301 2.244634675522434 4.147790369324448 1.7031424670768098 2.5488427995129275 +3.584434522339086 4.777717435651831 2.9312570225997936 2.504321927765655 1.2673585469018571 +4.167980858963883 2.800058137699222 3.4697601262507183 3.5050538868683634 1.368377952500935 +3.0389661445047578 2.1724882382284605 2.6202845093059706 3.5433088523918324 1.2660007503923694 +4.730275310576861 2.026941112910413 1.5657500882569466 3.276838235221509 3.1993496887579385 +2.6690290032636397 4.746496021267612 1.46778127114536 2.1309262797027113 2.1807408175362903 +3.4106843725939155 2.974680372229972 3.8431560319605906 4.423695604826907 0.7260342168225731 +4.623936866722457 4.035169873370202 2.760004063556956 1.3119324216190278 1.5631884251893187 +4.437537319752084 3.999240223916728 2.4889113693650584 4.959746533920409 2.5094084471486453 +4.530353257948777 3.1774116949354427 4.343691286338632 3.6347124911397524 1.527449444325611 +3.8217906318666524 1.9334779847667232 2.240768564163955 3.8893452857862547 2.5066970020871033 +2.738798439089495 2.993673731180727 3.492834625379312 2.458597054397693 1.065180157414017 +1.9839667204460674 1.3681831351125062 2.5188225078210884 3.00334769181902 0.7835522177203538 +2.9249483158934084 2.8704281603247708 3.5931338841654847 3.927451932079889 0.338734415913893 +2.6221905315788647 4.324187633197882 2.74370232362054 1.5012962754427868 2.1072178156204444 +3.3489225892082883 1.0734636099857369 4.729113140821513 2.641825307255846 3.087795988448037 +2.76569893132646 1.8263745016491595 4.6384904646386325 2.5213501155929046 2.3161635610953843 +1.0834520362618734 4.305822343434129 3.0663653385979908 4.7308947506116965 3.6268896536845605 +2.962021548327746 3.8857380445380256 3.231042227363245 3.1530001892140156 0.9270074029313259 +4.548639671783478 2.423981518425201 1.9055005594903687 3.36883093164254 2.5798271350411865 +1.0590751399750604 1.7494915177352626 2.3005485047107164 3.704817695305613 1.5648152396796127 +3.0270037772541887 4.562135656812239 4.214438155820721 1.788545588431742 2.870816022692594 +2.6815231245436153 1.4176934499095943 2.8717777822550192 4.038399891895161 1.7199629627369164 +3.5992367265145355 2.21417930568798 1.406583382140508 2.5910222092880875 1.8224377614177785 +3.9305153388810288 2.1681875887920024 3.869443666085687 4.666319686636662 1.934117496653967 +3.9424747869468844 4.308430321399552 3.333834345161614 1.4036548010795267 1.96456522558796 +2.4340621387734154 4.231232983816427 2.740083295872839 3.5602772230513255 1.9754850352389615 +1.6004074601567213 4.263461055014014 1.9772122019541265 4.931194018603256 3.977167713609277 +2.019104460120486 2.33497509699756 3.984520628203822 2.4873387727813663 1.5301397868977056 +3.148978214681654 1.930991283993309 4.975629039365166 3.3324173682342173 2.045394035257896 +1.1579860806557258 2.0150663764126766 1.5859386168643952 3.6630089430440784 2.246955222800623 +1.7273361211835483 3.626889957620595 1.6514538974996613 2.675902719816699 2.158193727882061 +3.855114414442755 4.2224382518803125 4.61060106863424 1.8033531390293027 2.8311778008138337 +3.049291091757843 1.754594062829896 1.9848379661024267 1.745756483805963 1.3165866290874775 +3.602792603156056 4.908785501794547 3.6275843503209053 2.1709717851487578 1.9563582535700232 +4.65901072670557 4.624069174315802 3.882807151412588 4.178284649594167 0.2975363238582 +2.254246837671594 2.152085587471781 4.760723377784782 2.804594607031689 1.9587947030790118 +2.236082841910163 3.5975549685102806 1.5666110519690313 2.9457322968181394 1.937932341312049 +1.6472772783532217 2.157632242703921 3.598345207107225 3.1928833605786373 0.6518140061610945 +4.593659546877316 3.602599578676622 1.0110676556749714 2.97809415004958 2.2025878166696606 +2.704898957469433 3.4263891309457297 3.081365351053342 1.0528693150046151 2.1529849601630415 +1.4667279392840276 1.2598065816999373 2.4987884679895007 1.3238930353427305 1.1929776719950311 +1.5085601166225189 4.196482678224535 1.698429721848739 3.8511308776990982 3.4436971358655533 +4.008276922751513 2.0227483625817007 1.7511329365351687 1.9999747018151526 2.0010611903181936 +3.9292044811024565 1.09101247630278 3.9572905781050367 1.5123024755558183 3.7461047339491236 +3.0226448615180366 3.926839762075058 3.009295732281871 1.2389369100170353 1.9878980803261161 +4.820622281431742 4.977850814792022 2.137821187210127 1.5141428506497925 0.6431916348937468 +4.633072584227886 4.334813325430577 4.045942372631768 2.4985352153396505 1.5758894300988229 +3.5854900205457705 2.319400858505929 2.157558094095499 4.5961450738877065 2.747669598814026 +3.8173722824419154 2.753568588836907 2.9903074675492087 3.926228444133832 1.4169073268703123 +2.1019447354504806 1.2085117312362015 1.110722280226351 2.138482725205414 1.3618054432564566 +3.9768590407927222 3.238105762453913 3.5567235199229197 3.87229089858941 0.8033300546691742 +3.115934415741093 1.6226475198935058 3.9248963182024923 4.992822638936561 1.8358573963755265 +2.557197224813612 2.169029153983959 2.2476793235919197 4.968727179918805 2.7485952571509595 +4.829748111567195 1.2330951926381726 4.361232532009058 2.743823790924758 3.9435926837056283 +3.0036441590675573 3.269987943588091 3.599341677955484 2.3798938098310582 1.2481955434249585 +2.2020993457732843 3.1633538194181448 2.7521509949419354 3.1475992228973793 1.039417848651522 +4.154596047393469 3.820378608746776 3.9000573661292606 3.484235757419018 0.5334874942919752 +4.6307482944461125 4.8026744797011425 3.769723321365948 3.058764652680424 0.7314511889083506 +4.470760454723289 4.197243660073907 3.5415950237825142 3.0769341817475735 0.5391856220967806 +2.8481875656078364 3.21196775271129 3.086156512940041 4.004457556574227 0.987731153335086 +3.9834570654573045 1.5303716545218031 1.6733751164338657 1.9041799849634526 2.4639194225220833 +4.447718508922204 4.625785497161493 4.750500964032902 4.295646696462467 0.4884672527689529 +4.651157758257591 1.4876570331513448 3.580163469468342 2.639729831698587 3.300326084615974 +3.254861135831408 3.483626485239352 4.553762938252792 1.1516250175346925 3.409820525581634 +4.023788545283535 4.795360865769771 4.720397766787005 1.3226472316529638 3.484254948298729 +2.438433912870445 1.1248265570346274 1.1590262942970195 4.580347174463459 3.6648329907880974 +2.525217103062217 3.2569577495308972 4.226484105838518 1.8859033206800437 2.4522974504630266 +4.5066884415430675 2.2190809232572883 2.6889046997334756 1.8579534079866225 2.4338504898562245 +1.155569478856016 1.680128695183901 1.5104858984308587 1.089730708950388 0.6724561702514682 +3.61834895413125 1.3691318290306915 4.844424910427959 3.892523377611245 2.4423542339358617 +1.3617085043629737 4.85078593179747 4.188901109460948 3.7061266106645196 3.522319194979505 +1.268800456593846 1.919101636144997 2.939710241906487 2.494296201259634 0.7882165259184654 +4.144817773222033 3.154294137572674 2.0420851427536273 3.1921345502573915 1.5178111583724054 +4.660150354336149 1.4777244743917737 1.1738441361955818 3.2878572679837363 3.82058712800958 +2.569668098102186 2.873491133654212 1.9725695311082942 2.912513498543479 0.9878274641099242 +3.2333236715282982 2.3207691173390734 4.716405061484862 4.240430929288105 1.0292265002864773 +1.5750659263165225 3.2581714656022496 3.585006150507805 4.3864505532687215 1.86417740225846 +3.485784681007216 3.5466558620369995 2.1415418696260122 1.7469143167044545 0.3992946358327613 +1.3988730360613424 3.6753325370905197 2.8027936918056104 4.233959793910753 2.688959700635329 +3.907149462510121 3.122806626885716 4.244985704425274 2.8880983163463805 1.5672705789757222 +4.832689366154636 3.255624598572316 2.3497370780546905 2.5465629990601175 1.5892997591169236 +1.9102358280144456 2.0027727498910415 4.910880549204194 3.23355850364705 1.6798727113750005 +4.6531641591585196 1.0608184716323867 3.8241138777677053 1.5231800952159502 4.266057173828726 +1.7156348199703544 1.9466625203169818 4.190414727539196 3.163633610623435 1.052451072678549 +4.178767136573224 1.617940870654365 4.273475060474405 1.3477362078873765 3.8881588184842957 +1.1555611861993569 3.428704574196639 2.473314601898556 4.814913542312002 3.263474599279292 +4.074560123299944 2.1736109993201604 1.6088234886838477 3.8011917976026215 2.9017385088789225 +3.134130991758266 4.229720425268726 2.0590711422356867 1.3887597446287883 1.2843806198247796 +2.9401208412683357 2.6486612848284774 3.0993346736094476 2.81098447531096 0.4099933047000843 +1.3060263260303127 2.2880070016658687 2.0561019023064824 2.2036343285527535 0.9930014421519108 +4.482781083805884 2.646526373411747 1.2105283859432574 3.6487860198534547 3.0523649275219387 +1.7245307734212565 1.6908964505095412 3.851976512010621 4.611923025985485 0.7606904572691032 +4.75176020560111 4.677099967404278 2.473194598162064 1.7065940978175878 0.7702275496864609 +1.0129768653214524 1.7441823956878033 3.954265394034991 3.0280546366574392 1.1800541914336964 +2.7148918758045855 3.3962255330207736 2.616827769361564 1.5272580563215779 1.2850594196493887 +4.775868422413482 3.8960731304164806 1.5711348941470797 2.272815785495351 1.1253425385647666 +3.536672046203293 4.998941608547823 2.013318538221741 4.652869473767377 3.017525710627684 +2.63939984187868 1.9973028868700582 2.6621771061951898 3.5567721123461196 1.1011760643337316 +2.2122482826253353 1.566834734417668 4.974054125596616 1.0429439357263428 3.98374019899791 +3.402362043836549 4.819518810841615 3.7524878027271455 1.5548946488854352 2.614908979693214 +4.08499963600233 3.992011102942848 3.9288060540067553 3.356926610366345 0.5793901667607239 +2.9151597500216315 3.8380855603092017 1.2013547098206723 1.0515679345154711 0.9350016734483948 +2.197046609248316 3.751670457013186 2.8334775958831493 4.311120325882027 2.1448271132093106 +1.4189224897852046 4.17988831362919 1.0943191692784273 3.9176475455196216 3.9489385156676264 +2.9364074614912807 4.994304166152939 1.5853246348197465 3.399481445310188 2.7433745242139587 +3.0992111520111267 3.9127392588913636 4.817844672708674 4.058215662266802 1.1130427728479437 +3.690015171748231 1.134473396977088 2.4336474430715445 2.5789906840877572 2.5596715453959207 +1.526789970159066 2.037251436501114 3.46976061289754 4.291192116150572 0.9671197563676437 +2.611603563074981 2.699406442766842 4.527778110900345 4.4260155530337535 0.13440596662996365 +4.913825168492348 1.3008934331187927 2.5735135065832626 3.5930382531300356 3.7540253639647445 +1.3346135561329748 2.7746054323479825 3.2093247331448675 1.424851143275479 2.2930160480263893 +2.4730906070542504 4.49038722255257 3.4547502269777923 4.6335509905172945 2.336462470279009 +1.5039979859479766 2.794587186950259 4.635876477265443 1.5849080239374254 3.312707199398472 +3.060747753886545 1.6498591685177137 1.8690151912798547 1.3077619903380464 1.5184241027761274 +3.9107221614463086 3.5191607547014314 1.0026471092761864 2.4695702018585375 1.5182831405253092 +4.458675312958615 4.558902809592622 4.93985658993499 3.9532361302265193 0.9916982820378761 +3.262830533101158 3.08076347178711 3.4624501908085676 3.7906446524275013 0.37531322845441384 +2.0392255412235234 1.2366670852611934 4.879426793436405 2.1923415762897327 2.804376408302712 +4.295711809006521 3.4296570648137576 2.523140821711721 2.5420412704100586 0.8662609577372119 +2.6718031725626346 1.4864156282113572 1.0008033950023658 3.8545243041712007 3.0901240521588376 +4.745987545216321 3.302137152953207 2.320579140648628 3.4772126670312975 1.8500013701591573 +4.577798235835793 2.3875043584512894 1.0782496444503233 1.88753429215459 2.3350222504973828 +4.690305989825112 3.2893803664176375 2.0434760779922 4.784124587211389 3.0779452323595664 +4.588678682746968 4.915174275370955 2.210352546683105 1.8752900288277323 0.46783144707733165 +1.1115448725390582 3.5849297332436794 3.1046914464035766 1.0695464466912985 3.2030372834259526 +3.733841480151427 4.849277452886085 4.690093362979292 4.88478846728815 1.1323001337597507 +3.470418010644561 3.384005346858607 2.7911674804149365 2.3595003390390112 0.44023138166905745 +1.481249390323803 4.557710769274475 4.362657634816664 2.3332758845132227 3.6855128414699263 +4.978678443313399 3.759832690833262 1.8170326499583807 3.5434298447845656 2.113298900449861 +3.0825063241065807 4.876915157286632 1.5869885858894612 4.780541544377926 3.663152134332537 +2.8505304266438927 1.617829904773875 3.889360365928283 4.934578332845826 1.6161779527594897 +3.767210609995538 2.4458571583385416 2.374463683660964 2.813314003539529 1.39232343493291 +2.1986888818049795 2.9406890267215497 4.988586532816903 1.2644859942344695 3.797300229969469 +1.5334931825898686 2.22690243372505 1.9804291062373482 2.0383057000392024 0.6958204435556331 +2.877107755633269 4.051806442505447 3.3804756223147896 3.882852471049611 1.2776147710025703 +4.812131327542835 3.3283609824589035 4.181327452566618 4.276799627877466 1.4868387179546654 +1.8616709739501984 4.108671002631846 3.930277665960835 1.7129844223035837 3.156801935070273 +3.6788385679359745 3.733766899264108 2.1347009715977086 3.8434628614314463 1.709644500394939 +1.7421304702292009 4.860800841813447 1.8329157301189691 3.9242665033843718 3.7549770896019083 +1.1049940248934353 1.5122824894218008 4.0801077381746715 4.207161796348503 0.426645786380591 +4.893574285021702 2.93706258036294 3.4587313417136754 1.6789778566819566 2.6448932904654745 +4.982380854401168 2.490016142378544 1.550116203519964 3.0294622068076285 2.8983351178182972 +4.020329879262217 2.204786484432372 4.2946412511225756 1.6660378259664608 3.194644547559671 +3.307573091648971 2.062299703002975 3.6486501966989255 1.6077543509974674 2.3908077433100625 +2.852648642903296 4.939411188117633 4.222345216289245 4.726442703992719 2.1467864815156568 +1.35252235677001 1.1277376591073263 4.308283147506743 3.875953933471078 0.4872747783458527 +2.6930505441554846 2.9258204456998564 2.713249127849748 3.7800686897003652 1.0919184056568145 +1.5369560900350088 2.2170297576250544 3.778915898227757 1.1618833197806961 2.703952608682824 +4.962618736338471 1.347073591720393 1.5951887865632295 3.1518607137224732 3.9364189540211587 +4.437717409123655 3.5093747213618802 3.8731878380000166 2.614372455834125 1.5641087917079861 +1.5235933767675363 3.7327618099784976 1.350784313377111 3.0123180409097383 2.7642574941608173 +1.7771127590091997 1.3894720866929093 1.8390960985078286 1.156332896426023 0.7851311234124057 +1.730709837543933 1.8400985154346294 1.0082427415232917 4.728900513379334 3.7222654577721137 +1.6572774473195429 1.5642881053755788 1.8579832362227533 4.007190023217225 2.1512175229339947 +1.3231283635738502 4.64242438753233 1.7311021554077701 3.166104073975435 3.616207488648771 +4.9765786711555755 3.1647617873335907 2.724965849226756 3.3884137373752536 1.9294671598115136 +3.805344587081998 2.66468242890261 1.9325009646620126 3.6184646421971953 2.0355794460227825 +2.511244112507125 2.819373936094885 1.705032030550118 3.745502919531564 2.0636049614606367 +4.964712397438697 4.6361931396775145 2.2884031686856243 4.274516430150756 2.013099796355765 +2.2910072039111067 1.0335586803816348 2.812910933101799 3.894567193910898 1.6586612239616534 +2.806853074913826 3.548753769537301 2.89394296013868 2.909885025462893 0.7420719575146308 +3.2894920476621983 1.156078731064329 3.824889771418416 3.258687645987453 2.2072691784826928 +1.4315032402038015 4.907491494259931 1.4470002486760971 2.612423080964715 3.666156668823061 +4.093853953310166 1.3703937941004263 3.2961948084915798 1.7639989837324617 3.1248774830722588 +1.7176429841178846 3.006109592937879 3.7386056762758906 3.5110682825489303 1.308403403995937 +2.5073154721223623 3.2242198297054663 1.2681594139663424 2.0286051985293656 1.0450979136814478 +3.85438545343118 2.719548378602046 1.942824923252756 1.2759652612566947 1.3162663086185282 +3.6035964228360906 1.5675845232523775 2.207158182875555 1.070521219426889 2.3317993142473226 +3.855890126235646 4.885854248454812 2.5414663923204746 1.56796326671944 1.417227726448252 +2.53345947338475 4.020362215939455 4.800759408992706 3.5524683293318047 1.9414196829582422 +2.9212796242581445 3.5499095445655104 4.780125575600351 2.1882228383711557 2.667046189319158 +3.9560009140120287 1.638652885436103 2.851302671691943 3.2025997938300357 2.3438241302553475 +3.533365200118088 4.0314094298589715 2.9008315921899794 3.5414606639843034 0.8114515773638294 +1.7185014500135645 4.893779741881017 2.3759202832488686 3.739581980101255 3.455714897711763 +3.4253180673977175 3.3253945372227602 4.640074928267756 2.9456388378076697 1.697379856289183 +4.659599688476492 3.3768787640811917 1.056202472590241 4.185197839397134 3.381713319514316 +3.021450079418857 2.2047824755695573 4.1513894848921 2.269738043631227 2.0512333171962855 +1.8406269776787982 2.021514972487374 4.285351353111989 3.7268611771297313 0.5870534416342011 +2.004972047118966 2.7593147177114776 4.631564014320954 2.77676361567123 2.0023279909914407 +4.299119691216793 2.5766665450879005 1.6153631526483605 1.9535363280661575 1.7553364170954457 +3.0027344194924916 4.119685911355882 1.1948289385227229 1.0261239159476299 1.12962029895798 +2.9829715623332516 4.072295777840665 4.150037844569032 3.3697803323315596 1.3399362044119307 +1.3287360677106022 2.885267740043461 3.161995229256423 2.976816533067197 1.5675082125774231 +1.7142204902425382 4.348451803548615 3.716698634112734 2.350264388757332 2.9675439607328897 +1.7212513290805824 2.616140855312063 4.629040999178813 2.744079040025372 2.086602226495118 +3.7053559505025526 2.4030731144074835 3.4775273245322245 3.9523021078782588 1.3861283057816438 +3.2452726929489306 4.716576155209298 2.753341369473688 2.129287136600882 1.5981794528856295 +1.2544377459833869 4.984382482746954 2.9825803948137626 3.3368495493658337 3.7467311583802316 +2.371130002996277 4.575545529678253 4.058429354248315 4.9451727088419455 2.3760811415422114 +2.232700490737454 2.3869137484575638 1.9852998800528008 4.12461114065717 2.1448623262590316 +1.7949909467248317 4.913873525890354 2.2520296055912676 2.7437825489110375 3.1574118356473293 +2.474036918501622 2.0957233103636135 1.3805645684370167 3.738731046457215 2.388319560728963 +3.625374166081693 3.378539185129713 1.9283510111455815 3.086610813717041 1.1842690902301052 +2.7378549276270747 4.70782020319489 1.3929584340312537 2.602884660761871 2.311857405004376 +1.4993473915287683 1.287654664618453 1.3332791348971695 4.991195181616368 3.66403651939668 +2.3519564470153296 2.6588753576129207 1.1990764681266528 2.811525609602211 1.6413992358739775 +1.914325994147506 4.056807901461147 3.682322296881941 1.5623023057744163 3.0140858458016493 +1.8712185538845305 1.1151786472566183 2.900160015633939 3.273023216147707 0.8429847606637457 +1.7325398606376914 1.8226948509526046 1.8756831873792632 2.166041088601762 0.3040322895368457 +1.4053153871109174 1.8694083112020166 3.605427030332684 4.8223366581043665 1.302402120834745 +1.44244051170775 3.3946180985711285 3.404795370926496 4.983448668097351 2.510606214307639 +2.7430306499687536 3.1156328183490136 2.7183297955716723 3.2559520963930293 0.6541178137171632 +1.6076721247953798 4.366645671729373 4.26572816717308 3.669532366207238 2.8226555698084805 +4.1530272056551105 1.734988241853761 2.1367347098123664 2.3581867871052853 2.4281584489070833 +2.9196394320645087 2.2669189408396124 4.046256694956509 4.697959352227422 0.9223667346337029 +1.1174627839066091 1.0825020353991976 3.939988935654148 2.145838204609404 1.7944913205821273 +3.775645712363333 3.248439093223417 3.215086767840051 2.426947039002108 0.9482146652724198 +2.892834038210846 1.300091360038095 4.2324361157662 1.7738406022340536 2.929423345648987 +3.3871006478199313 1.5533577079315495 1.6061650895480097 2.789366953296658 2.1823335721123756 +3.419547972837235 3.5978336144230414 3.7899555775447427 1.7536168106510797 2.0441285046566096 +1.251634860541785 1.2803535504327308 2.9371735287756167 1.6920966770210137 1.2454080174481799 +4.975803642159279 1.6685290384140394 1.699232746308077 3.22872569948932 3.6438186011942624 +1.4966636339649426 2.768191185758181 4.589162285105551 2.0853583970829495 2.8081695505518183 +4.580586455539851 1.4259395168215052 2.1249167254704564 1.1783767326809627 3.293590026994096 +2.6128921161354954 4.974055178215195 1.2951509913018446 4.586602022386025 4.050770407682308 +4.388227783074371 1.7855144406155157 4.024613843185767 1.5831487476338744 3.5685947592591063 +3.5316639577458937 1.2410137065387756 3.0415736123204686 1.3774577985060916 2.831317717096108 +4.531029774477678 3.0817316264015355 4.796563407245293 3.8442474806713385 1.7341772533461928 +3.9577178446319303 2.078503284137808 3.041316231831356 1.9066243503229536 2.1952159416180894 +1.9689484233429484 4.444942234884085 3.6605444714124626 2.2899541312962284 2.8300288399961473 +4.378792057239496 1.1306399984458229 4.233744597104312 3.3709652810675883 3.3607856142911547 +1.4736959324874204 3.2970875958367665 4.590486822615451 3.58090711079452 2.084228478956261 +3.8512966079663675 2.3535498441881373 1.0809925801403337 4.2322026960759445 3.4890357641020375 +4.155778076018652 2.6890397996362463 1.3388153449958375 3.1169114516243575 2.3049830662746156 +3.0302549643297194 1.1685658834456962 3.954545045667459 1.0754405324590608 3.428575364763004 +4.339943368420911 1.8560224269058758 3.0699223833774614 1.9842505809807887 2.710820264461696 +1.8681418224609092 1.035120496868343 3.2179968190210686 1.1781942128035676 2.203342733490118 +2.505840072371985 3.901303727694905 2.5024287259375124 4.724460255587564 2.6238793669081195 +3.4244450210899045 2.851343704989243 1.750624427697547 2.784660642053616 1.182233484179898 +4.7561077311128175 1.1956637332808895 3.314710834543287 4.852076791427892 3.878176832879739 +4.4516225690303655 3.6045495618290477 1.3190935497971679 2.968403117134267 1.8541183156526915 +2.6959016393143664 4.168548494720243 2.23940728291039 1.9297083163493527 1.5048595318586353 +4.812875233427924 4.149568398689251 3.7967807673937752 2.3946300266619778 1.551129477750251 +3.2806575166434433 2.759623713531298 1.7820565937999486 1.8300851551650954 0.5232427416527738 +4.625161081379838 4.322935575593565 1.4901081251323518 4.4909270769460665 3.0159997741896682 +3.8980161218410854 4.015869726751273 3.9970641506157136 2.7795153666248296 1.2232393525340848 +2.5509024261461932 1.0543264799656575 2.0605166110106525 2.0400632397546605 1.4967157054971734 +2.993582446108384 2.762982339647761 3.3458950164062315 4.362968553857067 1.0428878126061343 +1.7968556605099288 3.970022227893511 1.7083927201971107 2.0030153295883806 2.1930470609538366 +2.998166683601262 3.361827964107609 1.6375452644388164 1.7455945230207082 0.37937339023660127 +1.0694556353534441 4.603451635376729 2.5101948495341273 3.526728980902088 3.6772910366758556 +2.0340778505275487 4.201105103224479 1.8458515763739753 2.8845079492868293 2.4030843045810295 +1.639463082695808 4.904736835907423 1.6629229607068212 2.352167681567805 3.3372250401564774 +3.3640043086658484 1.2092526654135645 3.4252074484992523 2.8464209314229794 2.2311316582505167 +3.334883610011939 3.8392065797643933 4.284640621766297 2.442430472160123 1.9099947364147203 +1.4555342548826298 3.399393638907454 3.290289704643472 2.4622888390403403 2.112859374946876 +4.728797157410038 2.8795190848837238 2.3878602688167025 3.01029150917481 1.9512175784623231 +2.4124717244157163 1.030074498739765 3.8906530611250045 4.230515600261162 1.4235619533636896 +4.825391221220389 4.464073262726789 2.657216920857188 3.176527361917091 0.632640499275706 +4.122968707598087 1.1952174242227853 4.984661968310005 4.243686684171472 3.0200615803340676 +1.0350877505811416 3.382561905736625 3.822843013919074 1.0182538013847773 3.6573700332597876 +4.450481585104326 1.0007742030629543 1.8352519446025677 2.826507981721177 3.5892993122383685 +3.5281442351460557 2.6369477020620344 1.6492264115413375 2.831230774209845 1.480326171473153 +3.3563016788730686 3.8736764497781246 1.4463258274124673 4.188875905990056 2.7909241457042495 +1.2711394153012305 4.491084864211924 2.2930584621715733 3.812248188647573 3.5603351132991556 +4.9424405930989375 4.2501940763011525 3.4924949128224636 2.372051650900477 1.3170415115724512 +1.6915381151932674 4.949831515495124 3.907032222438908 1.80864567190363 3.875526028543477 +2.972914385535173 1.6406675443218997 1.6453369139149414 3.4819210867968464 2.268903495083706 +2.0456389457109614 3.462023649687038 4.634268926311332 2.6733547335542425 2.4189522734054894 +4.741481082094593 4.033935283728032 2.6236477428044935 4.132862170656578 1.6668380983236102 +2.5506560635766733 2.767496232977168 4.20362606325263 4.425345325086346 0.3101275384962186 +4.205969560585858 4.13255789023923 4.472669362131269 3.5749484039709114 0.900717598397762 +2.30999754966996 3.1157436240738616 3.313610413989945 2.4678960531877623 1.1681008160618427 +4.633453374278112 3.129452863589615 4.699642995411093 3.3116439591623554 2.046596897480958 +1.2885046426770317 1.6200493286076685 4.123704534778207 3.2308918870935384 0.9523845350668774 +4.827791219650614 4.615237162804807 4.751008038852461 1.3673632903981119 3.3903142938117568 +3.291463119225157 4.705967976498634 1.6406998661961514 3.7933979140474197 2.5758363450485207 +2.9424724322073628 1.1369571589107892 3.4658126664269724 3.7357937808134247 1.8255890020025185 +3.667253899154934 2.0680542787665472 2.7648345012725737 4.783768813317961 2.5755650219329627 +4.272875556363948 1.279809792564846 1.6319889020862721 3.346300231946013 3.4492471645435576 +3.294290326409058 3.1663771278132193 3.9869154538561156 2.341896430584783 1.6499846585043108 +3.6356720575408095 1.8150483110854454 1.718635598449929 3.360528310714054 2.4516285413461825 +3.328009963732153 4.486283367945677 4.8841021270227625 3.54133964272157 1.7733043642181383 +1.7135142038166826 1.5923667940959105 2.156621369521503 3.542208673425901 1.390873420417225 +2.4346052895154195 4.666561558032701 1.731607456671226 1.5968544741571016 2.2360203824809015 +1.4808871238107257 2.733461458121908 3.938838965458324 3.8002250435364826 1.260220727621021 +1.4478122885447346 3.654865192525564 2.582849551049722 3.8339989291490246 2.5370173998789376 +2.8202322897345633 2.6405858779930007 1.4732783579891815 2.893905670044373 1.4319409181278318 +2.359992474779865 1.3605860166903034 4.102542448232844 1.2949125338049021 2.9802011685223158 +1.3916455465650261 3.2039602291451086 4.78403338230313 3.438243607211293 2.257351241485711 +2.5545555911865647 4.992793325765652 3.5222182735863843 4.353717532494173 2.576120002618193 +4.918257908020227 2.904344179076319 4.9199451419304765 2.9386197678754913 2.8251546409892114 +4.614599909424036 1.7122589514275455 1.8560701266102506 2.0070005622463896 2.90626272605649 +1.2166527511415532 4.872769249534764 2.3341737641668168 2.311741536211531 3.656185314596905 +1.8299352177677792 2.2300558618712047 3.9868774983320137 1.3381940192974713 2.678734906994021 +1.6124884788297908 3.5148676731176005 3.7136174641064366 2.164544976221391 2.453298223123618 +3.2922797920394156 1.495412574085456 1.8830637986469503 3.3351100821321373 2.310231635213393 +2.824760896980741 1.5558958622311985 4.376670507425333 3.4926465237308015 1.5464529996599015 +3.494203507192411 1.3699901354208133 3.537396399456005 4.0036158945908085 2.1747742564360584 +2.735485337160338 3.9427175216484716 1.5202947798274131 2.8872664953590075 1.8237382537873632 +4.283292886899716 4.071553620928787 4.025577828373823 3.3701679734152568 0.6887638163628491 +4.187098366744028 1.7551977904761933 3.7217296948052345 3.020463731154475 2.530990787147763 +1.7733488859865347 4.299770653745992 1.7269667182873407 1.701208040722587 2.526553078421015 +2.996831216108849 1.5839273160141785 2.286222427347807 3.2402164465664907 1.704817298013998 +1.9368209008523043 2.9923506628332146 2.3836708705699614 4.920105440432712 2.747297473085562 +1.5368559890643465 1.4474860925600943 3.9333085980618883 2.838920723297558 1.0980308733511857 +2.2203484645783087 3.4725190509256434 3.749700577839442 1.2208260386210479 2.821903189767585 +2.190400968410859 1.113805667706261 4.507345865097598 3.5499402929565695 1.440723037598106 +1.3462306623677516 1.6448807241174022 4.938825715540425 4.142608034805982 0.8503848860940584 +2.378142589395268 1.4918332463920634 4.203563783288066 1.3298293992330992 3.0073066956322485 +3.489309715449398 4.343984647640204 4.766860403273711 2.079494766404048 2.820000586160089 +4.066188786119682 3.8383389695912116 1.681242873999492 2.5628539945022903 0.9105787756620825 +3.7251157732386373 3.7635980156092743 1.767015080799954 2.208272361807648 0.44293212913512525 +4.384793558122858 3.1147854633544045 1.6084860327237598 4.054961003941152 2.756476073825154 +3.423004800641577 4.462602971486296 3.879963612052854 3.0953063356139827 1.3024789435120065 +1.524759124138272 1.9620148048942192 2.441749002686903 1.8081649162860014 0.7698190208703678 +3.1774751262129852 1.833610580920551 3.1058098151004123 2.898507955203776 1.3597595291854534 +1.0472444806796681 4.2295761459906185 2.404101277193289 2.703201304450812 3.1963566218972215 +1.141353960150144 3.923712477366117 4.620026346180035 4.376125176311216 2.7930282309686105 +2.409406392034234 2.586762895053237 1.9931002009086871 1.8725824375241986 0.2144291501972835 +1.2924231324438975 2.5508575856777225 2.8123961729361286 1.8289218148474506 1.5971471710846978 +4.412430820320365 4.302062095502862 3.482909134307985 4.386272283321622 0.9100803450320617 +4.517755937592272 3.1915486601943015 2.2877100836520605 2.5659320092841047 1.3550768179427095 +4.184145474627375 3.2748769263828197 4.015344861121605 2.7360641266700703 1.5694994394282589 +4.8571495298811245 4.130304383570277 1.3517288735953863 1.6822547135189514 0.798468031653626 +2.6868326257544903 3.009494225822235 4.5469867751536075 1.629640316943914 2.9351355787061895 +2.3316409916432512 1.6705096513212707 3.0051821424058125 4.9816581232564 2.0841189870147123 +2.4016084834295284 3.5888423939588465 4.483105879783126 1.315097795188874 3.383164137662445 +1.9300391795497305 3.4590565237038033 4.040482974149959 4.9429684566880105 1.7754926316140867 +4.261604856605348 1.129092725659215 4.499089587579182 4.0398131182920345 3.1660017570692456 +3.097838232130416 1.7995289675066783 4.33304897637341 2.1829877128934383 2.5116469463929287 +2.3004287402178605 4.710481070674733 1.9378664745984104 2.967492542331363 2.620778906145237 +4.619980350709884 1.4732406508159182 4.035353362975522 2.536490360252764 3.4854785955188206 +4.307424826017716 2.5688385772571283 2.578819037166631 3.6734079855725406 2.0544602966111967 +2.8656852030388986 3.7990976988600593 2.27333324485622 1.6839117643543826 1.1039368501105786 +1.9714320042598907 2.2959090384526326 4.809268183160553 2.1353991630679574 2.6934848955079467 +3.7153077981160916 2.176433299120545 4.714804155763675 2.266666454327316 2.8916280758169597 +2.445115188353607 2.4002866068039657 2.569012504469466 4.241663292839389 1.6732514041704187 +3.7669214833382374 1.323756252975365 4.895035166044091 1.7645387660406233 3.9710280851800506 +3.7385978866618808 3.6529252329459423 2.2081967185087006 1.9513344052403383 0.2707730628631759 +1.5293787737440785 1.9086496487820956 1.8104946325694624 3.207060560499379 1.4471498843267248 +2.569286349533279 2.821871204533915 1.0309755818594057 3.815028395662226 2.795487288295029 +3.042750740275546 3.6007880929151184 4.5409151295640235 4.583852107449255 0.5596867615112039 +4.870884929018594 4.203929159104137 4.516538792145193 3.005536516602145 1.651653073656346 +3.5548120312800036 2.931274803218427 3.989146372896267 2.135530159217675 1.9556819123750349 +1.7661770081120567 4.191974337171795 4.561051276577151 1.052938234121962 4.265131862008204 +3.3997607663862546 2.847976849459167 4.9840295976670586 3.4333780244916907 1.6458996908592705 +1.662320147819202 3.4624096152997588 4.192507580074906 3.9768177424532882 1.8129655807509624 +3.5491323098247194 2.2908470182414615 4.918276993263024 2.0333591567873746 3.1473850730773485 +4.766013544349042 3.7239238065732163 4.569627718609227 1.691069097845959 3.061380530863195 +2.970084001026001 1.8996644549818522 1.4974876401658386 4.849388409052944 3.5186697442384856 +3.3091146252173145 4.255984875356029 4.41624783036785 4.376670635868964 0.9476970111391905 +4.285154354516184 3.983127900322472 1.786454006590958 2.5547175557140456 0.8254991580516778 +2.2838516444416586 4.040476281356989 3.8899997457129523 2.0699759827792006 2.5294696307055062 +4.341263781326877 2.663750946810258 4.576814896034744 4.904335942574366 1.709186749859239 +3.1652685993403638 3.9059119692356212 1.5245699918618132 1.5041086221468607 0.7409259538040324 +2.4095022083563418 2.869611235387764 3.379305449859053 3.1455338021578685 0.5160905928465744 +1.2988757654136172 4.664089084617376 4.496821938805933 3.5020181390783836 3.509173019914913 +2.497591380731045 2.3912187527072017 1.85319321193698 2.6984418678183357 0.8519157389448426 +2.6538004291897157 1.0036096661653824 2.847167694253446 3.836147660037341 1.9238531459268782 +3.614074410245284 3.2453900446799335 3.514522689242168 3.8511502866548377 0.4992457318316816 +4.171289333349508 3.265495383073322 4.350426634606304 1.8958574426623147 2.6163662966789465 +4.780610335208786 1.6151534939067296 2.4721401539467185 4.676882938496994 3.8575909270129327 +4.355237993052167 2.905280706033332 4.012471846989147 4.560699110811132 1.550138467033433 +2.910878930617261 1.7095051997228703 4.937850807788148 3.6037416544713485 1.7953122497902076 +3.8290387967171253 3.2111036249676017 1.9014856537587792 4.97198986153437 3.13206640517929 +1.3219144544702814 2.4677956471182205 4.607467124668318 3.90303615951449 1.34508984544967 +4.1233026428415425 1.4893192109967104 2.9175197188210715 1.202770587214855 3.1429656860324378 +1.968539054346457 1.423527174703071 2.4301499628438896 3.617481159257029 1.306443002556282 +1.7066069348487347 3.2152908763649615 4.931579837939564 4.2070716774699335 1.6736305775098714 +2.423341147613011 4.396130998465851 2.7996896472222135 4.379245011825144 2.5272306870315315 +2.882307647831709 3.690341803064657 1.473593032253513 3.1744529205257908 1.8830410392651056 +4.41195006009121 2.18829098198407 2.1116456903702416 3.589141886899012 2.6697667887673786 +3.3225332120943354 4.013752419300102 4.74517313182327 4.5513378516736775 0.7178830742125349 +1.3046070186864704 3.1282992402409184 1.4359365728859381 3.9045338790096125 3.0691735009215853 +4.901827929670986 2.140628103556475 4.258151622250306 3.360406331758828 2.9034756906739267 +1.8646637408390436 4.9915720021327505 2.520580375818726 1.2766095233293253 3.365266520855375 +3.2616299120872583 4.692517444224256 1.7327700912878008 1.8914643049870787 1.4396607180467 +4.301084850729288 3.9130732250812827 4.526428656798622 2.3357399438527224 2.2247853960925243 +3.16360380259685 1.8588400265461833 2.042620887185186 1.6192696987004007 1.3717269189184393 +1.834549616399177 4.846464542900293 4.4431248127704475 1.1748330790675516 4.444475489984268 +3.0123876503975966 1.393505697538925 2.076347630663431 4.690154018852116 3.074534535865142 +4.923035406479311 2.7797417126982285 2.5819387131771556 4.80953069167615 3.091257653524665 +3.2086995943096315 4.583403611724217 2.404965195536789 2.483263760202059 1.3769320247290502 +1.0885819630625808 3.5686047138503545 2.6907339536957657 2.234151287679325 2.5217019203965476 +2.6560118076939783 3.4758314663415826 1.8083886694832199 2.8814094449169785 1.3503621207726242 +1.195112524498195 3.780600883328124 2.970429950401278 4.8550819281883095 3.199478571739722 +4.287243162132812 3.913655833726716 1.5522475506043638 2.1594572099575386 0.7129313167180995 +2.6063004745395824 4.694751566264262 4.178656903929931 1.925179840148152 3.072423610037613 +2.8918077597070497 4.383491456961044 4.830786360676234 1.7807285019594663 3.3952869089626665 +1.6134372067905005 3.5992446329651693 2.25752332879492 1.2419343437493735 2.230437652210056 +3.2210968798996666 2.976623999996199 4.368059368679859 2.88720078738605 1.5009027706016824 +2.3267232539724354 1.2976527733500967 1.4579566064044829 2.7526688448883623 1.6538639105344275 +1.6476891886157277 4.295270340696435 2.9201570690620033 2.0802855372684395 2.7776015097148608 +3.075266653084629 2.077052376345023 1.4748907915029124 3.574329625745059 2.324666677399321 +2.7041112801605136 4.583220770827663 1.7941686847042884 2.0561331438969 1.8972817017500145 +3.1560831187338585 3.9654510819741917 3.0455618168263143 3.5253238268943594 0.9408762332126029 +3.9457579565352865 2.3086793346109213 1.8845608546349233 1.325565996852498 1.7298848705590126 +1.0305772406131952 4.995881041809822 3.9529498858860292 2.874499645729589 4.109341693784772 +1.2802154584252508 4.041107174564564 4.690636816153143 4.582444347021434 2.7630107995850284 +2.3042480894774817 1.2956661292319995 2.1951412543641946 1.363745975993663 1.3070790639549823 +1.1895810440250947 1.145416755215793 1.3678302997376885 2.9251405127224976 1.5579363221495361 +3.158228015229449 2.8218210127057834 4.241414958748889 2.318894300229339 1.951731373366069 +4.147537284217362 2.341589926374736 2.3230609146906835 3.4403797688095126 2.123640101586937 +2.758225365218493 4.927122996703309 4.979265062578861 2.99857845783056 2.937215750007104 +2.446455987994971 4.504349784995837 2.8621558597187504 2.272673840419945 2.140657826653115 +4.55518101938647 2.149717868615782 2.057703840558422 4.921496268860858 3.7399946580333525 +3.58063040128325 2.073170214750272 1.6471711307712287 2.342646472993285 1.6601572713514006 +3.1595111171549366 1.1979839979291698 2.0416335649207116 3.8012081345765716 2.6350884815576383 +1.379679232474385 2.0009950330949464 2.7472918468077823 1.0094056501635875 1.845611485819048 +1.7554866347393898 1.0832347682866081 1.5021542862400947 3.6649704065643873 2.264883251358417 +4.348971670311727 4.295410989488401 1.4601858018470764 1.198537725273345 0.2670738895979751 +2.114092844767133 1.048962822948174 3.2993292390399525 2.515540632199292 1.3224320563239835 +2.487881695053152 3.5182670523826705 3.1027966484755085 4.892070138420053 2.0647502527950947 +3.058452881334229 4.955306365131708 2.2763707109632705 2.8297556437251794 1.97592712993231 +4.593086282440169 2.7892644724522992 4.872727436599815 1.3344002474587717 3.9715906661692455 +2.7698474275231275 3.8747265518949683 2.6881815913116855 2.0311074889394307 1.28549766840745 +3.0192443286813515 2.9183242412175097 4.951685984131808 1.0731163170653697 3.8798824114065074 +3.724929674504116 3.9665562611491194 1.307175001995807 4.578533259462951 3.280269540155532 +1.2457272673161754 2.2788464609258376 2.780775911499234 4.3847208796193105 1.907871780011013 +3.494807901059952 1.9958575150641154 2.7028206300350415 1.0882525497861502 2.2031074293905095 +2.2106815135219553 2.4206999367219124 4.92745737735216 1.2077696959803546 3.725611920883944 +3.911845956948842 2.375916305471727 3.4834825031170533 3.7122126236036457 1.5528674645005678 +1.98907142636781 4.115684014086868 4.726161060897374 1.5430340935466171 3.8281560036812463 +2.2987491578986243 2.6415406570040254 3.2759694419123857 2.545928878791806 0.8065142501285029 +3.979621370822409 2.4666242507725884 2.140127201663778 1.179698897196905 1.7920889523961034 +1.1818044602769255 3.4123885338472397 1.5872088744009845 2.6680349067156732 2.478646852900721 +4.399493902958098 1.7365465118868122 3.08485605253252 3.1071440670053216 2.66304066119962 +1.9874024252620517 4.514824272470857 4.951176761210988 1.0802715072917217 4.622961029315318 +2.137242739190471 1.0664443351837 2.4963869704945325 3.2842840673429796 1.3294326072598261 +4.243946117133022 3.8242859749526996 3.808135775808245 2.2850889328468837 1.5798057857817134 +1.182285844032164 1.9320538660306816 3.012963991124572 2.6030490625080627 0.8545070716584197 +3.907748265172888 4.166674381721825 2.182439596917851 1.414378475935424 0.810531072443183 +3.174001394459125 4.368936692152113 4.26660415061084 4.617570480096271 1.2454106672520138 +2.8836304442666054 3.0537952181042023 2.9199215278559083 1.3106806142045762 1.6182127080283897 +1.7624566573723044 3.3332112571408454 3.8144674703482027 3.895649556801262 1.5728510876287372 +1.4353385573707431 1.3283877126064612 1.2247240660720804 2.235961012740997 1.0168769077445245 +3.380898208838912 4.387643455118507 2.6065148120411816 4.334918259522427 2.000228603977959 +1.7573129631113242 1.8963774684195398 4.767532226660418 3.327127931803831 1.4471017480736867 +4.277878119232535 2.671416389177709 4.448979081592828 4.816337941648863 1.6479295561984482 +4.984264005959476 4.714992215283983 4.453346196863532 4.372957777934813 0.2810152934476089 +1.42454204779024 3.8558869736432757 1.8000201902605921 2.3181904070014054 2.485948213858954 +4.86648336831907 3.4745164669993835 2.640830161314042 3.9042947528081546 1.879870907357448 +2.4784444013117657 4.806116858266552 4.651233133618091 4.147033104399463 2.381654201669503 +2.8353858604181035 4.844315279600767 4.949175228484494 1.961850210883418 3.5999872460944724 +1.229423015454448 3.3399477898718795 1.527941542649625 2.6768486295537017 2.402977802179654 +1.573555721830469 2.9557059272172137 4.83689645541587 1.5470356803541798 3.568406242223568 +1.9644167696029715 3.2443910559936486 2.966094143862218 3.2699399050420506 1.315544153728135 +1.254224963989964 3.5899964459298785 3.4785045224792603 3.817673495943381 2.3602677831984424 +3.553996995177603 4.662562398370154 3.677867582999389 2.3324977815862824 1.7432547592677916 +3.8206917439249932 2.340102704351562 2.611676164845667 2.5969944571840324 1.4806618306165786 +3.0147235525107408 4.540634969060491 1.513844591014907 1.414325139254876 1.529153286114732 +4.835917674626281 2.5969291339135174 3.065909373250986 3.8739287916006937 2.3803287726432396 +3.855251616886124 2.5667894371848017 4.131670940414626 2.482463543487561 2.092849690398149 +4.99761291233484 2.9759378320302083 1.2468972936002403 1.5520658965069751 2.0445777086050767 +4.8293709327335 1.3847957727423497 1.791125884484583 3.4274409097583955 3.813479368603546 +2.6787394549751866 2.775278685905978 1.7118927078297466 4.115458523465211 2.405503783659482 +3.7658541420075338 3.4832992937590714 4.491177676158377 3.3437503467864857 1.1817050048375957 +4.396887221731635 1.3271386663262308 1.821136825655291 3.1121768188860344 3.330186249676556 +1.3698982514781317 4.222125214320266 1.8457157832692102 2.4577279556123948 2.9171488728996824 +4.816133378881132 1.0321327185522766 1.6377284922366298 3.1572821986465223 4.077708236746868 +4.405182769578916 3.6503407329954816 4.8647654505869875 1.2014031864341925 3.740322122306061 +1.3531282532767643 1.9663514977052552 1.3969349118914178 4.103970232675859 2.775622988714773 +2.1733753314828936 1.8055684749457277 1.3354007014939837 3.3419405078130255 2.0399715385413124 +1.0982269649578913 2.0642921534794456 3.7836710864438357 3.494754527400605 1.0083425640934567 +1.2644958947212142 3.781851299444285 1.4702782373732446 2.144443801564434 2.6060655098499885 +2.6269446575741187 2.6478290636779396 4.88047120783088 1.871627047658023 3.008916638696495 +1.343777958965207 4.683170589946565 2.161207507846628 3.058657470445521 3.457883685033571 +4.687169563354537 2.5471983604092436 3.7592809877312616 2.605002938765156 2.431426446298577 +2.7806317968039873 1.2137472827230398 2.110066180578546 1.7626452902512848 1.6049387388627874 +2.9233923676630353 1.4778056661474248 2.1865184354033484 1.2223986008569616 1.7375983330345754 +4.312542990444066 3.1604391961684164 1.3208691715277818 1.320664969778591 1.152103812372263 +3.0743766299085773 2.1359200822777487 2.2594149959064853 2.356333546114119 0.9434478772913336 +2.935942257662615 2.2246079360075406 4.05807905485033 3.4839468413967585 0.9141248906410886 +4.805230477620912 2.9533306792202936 2.5980527905156405 3.8858946727831762 2.2556749714971436 +3.634873226635481 3.9212311032225733 3.840599198218912 1.8746424852385135 1.986702451500013 +3.445174031800346 1.5827306250330904 2.0310377059678864 4.457757315123706 3.0590298306607266 +4.242355655505161 3.671753973176974 1.4585946521057789 2.302768872596766 1.0189290428765503 +4.7337765599489465 3.504895267520106 1.1636474088968773 2.639153697840735 1.9202260386721277 +3.7470211542613545 3.100319134583385 1.8419474189876657 3.651408067490591 1.9215544074358633 +2.4704073814268095 3.904369114821531 3.4715727759395083 1.8519115556393855 2.163226460956984 +4.859780567827211 1.6212798864360742 3.107496222237663 4.962771705913799 3.732282650563938 +3.5630048975439528 1.8027368014466099 4.765779583319234 2.731641883028071 2.690029731040902 +1.4266835377959088 3.3365978363129445 2.18145556907241 2.771636818443666 1.9990213942800206 +1.9419173028681267 1.250678415949837 2.5403243804058837 2.0752858467126387 0.8331098586666703 +1.8953907713458085 2.8985916607723077 2.738012245578792 2.9218475105650756 1.0199055981798983 +4.45236072086838 3.224646372081637 2.634984183101013 3.3732387514175626 1.4325858891728311 +2.716882990673725 3.479899014740549 3.802706884205405 2.360093546036897 1.6319701885893718 +4.872742887834965 3.987125508764673 3.330219798458019 2.2884873825347842 1.3673055870933144 +3.3946409167729574 2.2344334988800947 1.8163571968637817 4.5515164465266675 2.971056608944041 +4.8468006957058405 1.1724481894709387 1.337952488060834 3.8777538417692945 4.4667054141026625 +3.694547868995378 2.1539266614761696 2.3984215350952827 3.2218866340881998 1.7468853638168014 +1.269109905223329 2.6993418023334015 2.4493549961608756 2.7155703946580636 1.4547968648261838 +2.5691062154429845 4.790848325191824 2.372996987794447 2.8566749104883327 2.2737815055833086 +2.1060443438408427 1.6640018621981767 1.5263306402552819 2.8434320543906813 1.3893011519084966 +1.9148713667984785 1.1254773249293795 2.3003602782883346 1.9799326916974422 0.8519488198165994 +4.914587585766956 2.5183583929547506 2.5956374526419608 1.3361120020527397 2.707086756121313 +1.163922479731863 3.801152664937769 2.2968764578465977 1.851545228171489 2.6745659374719333 +3.6318617082585436 2.6598594134223084 2.634925836715944 2.6368819584936563 0.9720042631487358 +3.357575895482931 4.123425056253813 1.6394262991788602 4.775314056969144 3.2280515743265994 +3.7553367286224257 3.288011293823224 3.835440668284938 1.5222740896989353 2.3599009899352845 +3.7787570837059063 3.1916640553265676 1.743213400264365 3.6683702396118374 2.0126865329847 +2.598711987105222 2.3452228755469866 1.8789941316343852 3.8611599517806003 1.9983088020209743 +3.7614160519222466 4.207824195621926 3.2484266374854482 2.0219265408909446 1.3052136674536168 +3.1153912358474045 1.4922162774191867 3.6710821811983356 1.1346436937703337 3.0113480612799473 +1.0779413068577903 3.5959975898142758 3.0044407658763492 2.209414730704264 2.6405821026315537 +2.193850120706793 2.8463012680445354 4.910174533962812 2.8495659443798407 2.161434768649163 +1.0936144947564261 1.2050889763477297 2.3668040406186264 2.775081654317776 0.42322236459563667 +3.720000939915393 1.9448981509424033 4.482343016320861 2.405926157072386 2.731757105745492 +2.2625745549005294 4.668550108062572 2.1153116321152696 2.4155395804728537 2.4246350618986767 +4.191695426771389 2.831230756429871 1.6185206192476267 4.427620180646512 3.1212024069417326 +1.2895954216142318 4.315955490146046 3.6289899089730544 3.2485030429400825 3.050184505833619 +1.834081650497895 1.380089397411696 4.467401216340258 4.968327599359368 0.6760445303875264 +1.5224969709990388 3.484863302916543 1.8925596754992409 4.21838295300963 3.0430799428954427 +2.901958271876715 4.779568553938212 2.015369892239106 3.489908277501635 2.387401059921789 +4.633592183936061 1.3455615422806413 3.6428574799897366 2.081997081425983 3.6397020048720408 +1.6444130160729187 2.631903566404435 4.907687697504069 3.0817587764388055 2.075850190109247 +3.959296232338794 4.816831910162918 4.093656132212681 3.2603731847989974 1.195712302015713 +1.6798111271402592 3.8774465761191506 1.4248151682574366 1.8375498588279462 2.2360571306227817 +2.9456302700093646 4.216091052343874 1.4085835219468321 3.9787136672717 2.866991378319377 +3.0110255406011692 3.6969996360420017 4.569911958078664 4.465992732539449 0.6938008828565575 +1.5570902353489586 4.392911546521793 2.801778352702964 3.935066913051699 3.053886944521575 +1.3723423839855209 4.997274406277098 2.3583813406376355 2.2521054909993063 3.626489586701064 +1.0128429848629041 2.9696908851337542 3.8411439933612823 4.201984457550685 1.9898390752497697 +3.827397442919411 1.0480315756037428 1.1698586385699499 3.7188286768519254 3.771222995323744 +3.2117394658042158 4.4629124832731915 4.560936771408767 4.821405214007365 1.2779975466455955 +3.95133344192646 3.658633246391733 2.870684416113069 1.0120642752769258 1.881526569673634 +2.7273343999477135 1.1407894457440761 2.686565135625644 4.785208354816216 2.6308607437801776 +2.378677541240287 1.2093118985207005 1.4241929792506611 4.402161183000116 3.199329715567895 +3.944835924986952 2.537292768322722 2.8853831338220086 2.2689775950924513 1.5365980365888732 +3.259597655402519 3.3438611294107154 3.6429517481713933 4.01462140114166 0.3811019076191678 +4.873333113443648 3.823250404605283 3.7461440565809765 3.2123224859560726 1.177980969568591 +3.1861704297834272 3.3657507020726447 1.3083325235818508 1.502876143027493 0.26475704723855864 +1.223479848985371 3.815960135733058 3.8394148611612637 3.7937608142844796 2.592882243599118 +3.8779610634836246 2.3431673309761494 4.49650033759401 1.9175508988130874 3.0010951349686774 +1.2515248148294265 3.4799369543908982 4.663232017207384 1.8771929373863947 3.567609061827644 +2.356270129390458 4.139834217355391 3.0040766858731254 3.6163050529581664 1.8857158930607225 +1.5917790763546407 4.7675641609075505 4.710372141367365 1.1148401244810757 4.797234764708011 +4.632412218733924 3.7712983139215672 1.1871512672651159 3.4191789341992855 2.3923763631629487 +2.845462312513458 4.822846980070608 4.957713894945872 3.2402871793542363 2.6190846964002468 +3.090603399782313 4.021857820018351 1.102220714664055 2.0524313829548593 1.3304642457964873 +3.8856710801338377 1.3030820732208963 4.992087974499606 4.484707669084847 2.6319575895045015 +3.5501475771808684 3.7775736166862517 4.92115459630365 3.3888443182656838 1.5490956689713815 +4.099187257088719 1.621125217547438 1.344611191241194 2.154003152745434 2.606896012341722 +2.1915021469741625 1.871620615907513 2.399063759294363 2.3404474292891355 0.32520773062894043 +4.549618786955467 3.835123972582185 4.79637661150355 1.7243770430315206 3.1539949569488295 +1.5416517447007347 3.8417799204279275 3.62357409751358 4.155013234317618 2.3607238679907323 +2.480980985416378 2.1993693572589783 3.988233860599702 1.988558536656031 2.0194074651497864 +1.5373807780981186 1.869688319599684 4.222908908488012 2.410728731985338 1.8423966169769415 +2.2494683359364047 2.9896940856550875 1.0729065382495966 3.5185894612806496 2.5552493264948337 +4.436142815479887 1.0191346868786408 3.1807881048292526 4.025513572541639 3.51987296173156 +2.6515632783762766 3.3541823808537186 3.3399509222612127 2.0066722145181006 1.5070851720083207 +3.3526283899795537 1.4038126786528906 4.862639757555588 4.136577619831977 2.079675192079145 +3.607102665500483 2.8915878654108185 2.855595855671861 4.273397264543867 1.588119096335913 +3.44683779172491 1.9574100639506384 3.7673502068821043 2.4153969819345096 2.0115099996542476 +4.302699641836038 2.7387076921599975 2.987695169191323 1.4538004785556242 2.1906400299026423 +2.183213003370598 1.5401621713615237 2.5891204115252737 4.395704615508686 1.9176185383516562 +1.760986325924903 4.094303146601849 4.790479807591046 1.1052320158856999 4.3618136906478595 +4.769174673458515 1.7426845226316376 4.172209373860724 3.5366187057909495 3.0925100048972323 +2.72825869725236 2.2661937193717745 2.430704317889696 2.922249666450824 0.6746264695932611 +4.869767319409334 2.6590028198932476 1.4773047444329408 2.918903497551236 2.6392587287556397 +3.5867843323292687 1.325557426245612 3.783689837880276 3.583560789702219 2.2700658044914297 +3.622520039871069 3.342735993037501 1.0338544907447247 1.4106231000509712 0.4692906325733886 +1.8477136267949312 2.958143602589618 1.3742289596871489 3.077030198730611 2.0328764819416203 +4.9321142706210255 3.0897516808921672 3.3734591062130224 2.438969580307925 2.0658099104367658 +3.588810035466454 4.166996863979872 2.187636677696749 2.906485676451101 0.922520401767104 +3.301570045694026 4.194907104418119 2.3298855411254125 1.4644111891405074 1.243823522222307 +1.388361545325619 1.7239220337138241 2.909850448973909 2.7073428304692926 0.391931342099279 +3.205831736248808 2.946000881184525 3.782627136364493 1.7597272717803216 2.0395185548011314 +1.1725330928152977 3.621930217355779 2.983317737749134 4.244611609835802 2.7550696008396156 +3.203609942625362 3.0095400241376975 2.0319069571696557 4.86609669784098 2.8408263972633736 +3.5192779158833045 2.499949522708957 3.6487103352795898 2.5034986003119313 1.533147185054009 +4.733018587788756 2.086526821659231 4.015454637443853 4.963671353352557 2.81123346745162 +4.004340286807041 1.3769776739180362 1.2002586934317483 4.70280641090587 4.37845575663271 +1.0250916927410336 1.056644724909935 4.644232366689142 4.414126630229864 0.23225900152742893 +1.8828004141882064 4.178563290445018 4.114433724835579 3.762215985652713 2.3226244896224695 +2.1107462755497344 3.901601422792322 2.5968699012367567 4.450926890095023 2.5777295196237042 +2.873507210250627 3.4153400803219642 2.4079465862614566 3.0473721064235475 0.8381216229905436 +1.0445171017890869 1.5733222116207575 1.3482522298864033 4.92803337263542 3.618627899379203 +4.229621915816275 2.820122365571408 3.9155745877676864 3.058263239088502 1.6497489902147553 +1.762742042667298 4.356273594231855 2.36147016379106 4.30477131760397 3.240806270570866 +3.6453123164249246 1.7599321661750307 4.158866262988697 3.3038604858451026 2.0701915828988473 +2.22701534427359 3.3389979643069765 1.0771067838914776 1.2748378944627135 1.1294259335361703 +2.4079132145334325 3.9065744826100297 3.3468780754100687 3.614854698398788 1.5224313012091524 +2.215021024278516 2.472318034201102 2.0926015951064585 2.8743670670672037 0.8230182285132632 +2.7073168569041757 1.3957598034909382 4.07257862242688 2.408037416852389 2.119169490487581 +1.4888956327784904 2.887801160304608 4.32197727097298 3.755892601578312 1.5091018944613366 +2.3617160523205563 3.706535566240576 2.532768948530679 1.6820985099398538 1.5912824136878987 +4.731288067553397 2.6141833524820757 1.3200648615259576 1.347706288035249 2.1172851539262934 +4.443123782020924 2.8536588707049004 4.167400431011716 3.1083989295723735 1.9099431625982062 +1.019678421527169 3.8708230021354937 2.0517166380175325 4.095272548435789 3.5078691792222823 +3.5103387899318315 3.00754932105055 1.1146721556910504 3.124002039549896 2.071280722689738 +4.455332916318559 3.9903143011452586 1.7187218644348623 4.129965799994897 2.4556749844457717 +4.5323967227309225 1.7738028016846736 3.938803852093305 4.824663349998156 2.897341448856443 +2.7102731265505464 3.5323128300838964 4.559210457278044 4.210795393569592 0.8928282762122639 +3.7335129326166516 2.6579059655896913 3.213799564890573 3.623509668463406 1.1509964015958511 +3.371048927931058 4.240660889423866 3.031841662677982 4.584958359011862 1.7799989988768075 +2.83189617365193 2.0582137464802317 1.4719301553780455 3.1888799154500145 1.8832155948604192 +2.523015728824127 3.2697891535751955 3.8499042212132495 2.377946343943009 1.6505546159919557 +3.789434866067821 1.7753356925938428 2.5401496527912117 3.150908367968367 2.104666645517387 +2.8707874364726065 4.061554657300502 4.861465271742268 4.281711709039742 1.3244020415510018 +1.8962934004162246 3.728897890335282 4.348380612512916 2.2449107681616645 2.7898072697888225 +2.0142093905676095 2.242439820028535 2.3158297781913535 1.721740125993802 0.6364209642839604 +3.6727468823558653 4.188368427022903 2.3297810618285486 1.3335405202976767 1.121766817977135 +3.882386763993767 2.0421400821253837 1.3587364253524576 1.0753748882259466 1.8619349104762748 +1.1268787318228335 1.877238093019439 1.4620084999983196 1.0656493229985915 0.8486104925861333 +1.412840050753009 2.3869668080792583 1.9754905945284271 2.113348650738184 0.9838332089337531 +3.6640147763964426 4.056946362085489 4.640698128051863 4.9588451357444425 0.5055815953294289 +3.175235251309547 1.4873532153847928 4.407069316231496 2.6744935710384223 2.4188353561226172 +3.422897482130741 4.777923388051932 3.51213968641604 4.177205258110325 1.5094394391198978 +1.561949061410485 3.9312416400690706 3.5086217348319724 3.8495956564145613 2.39370226604857 +2.2412360225025716 4.772806897502456 3.964092163219665 3.1023641120459584 2.674215086586588 +2.7859787500207953 2.2302939771994423 1.5236558728625456 1.3178068202361533 0.5925870393559936 +4.574345081357529 2.0155453641201397 3.952325135437408 1.2234708232392109 3.740869130314082 +3.9287252350026236 4.596930383012008 1.7334161591680521 2.79917179482563 1.257908261663835 +3.0580596877004993 3.6276091385897753 1.7661246548276361 2.205373533581333 0.7192538873684702 +4.642397699363038 3.2741353676304668 1.2753320389591822 3.897169370227836 2.9573929059345816 +2.9434626751226527 3.6171931419995293 1.3929082184330466 3.724905050304186 2.4273693509342915 +3.0119007165653526 3.5824820322089552 3.154788453288711 2.965490017199461 0.601162985942598 +4.979637543045053 4.584606082949646 4.117917446348576 4.584951955046474 0.6116952564633763 +4.649480993452261 4.649756673860006 2.7875271346350416 4.192372103232462 1.4048449956465572 +3.6233599738920654 4.775036641217076 4.367032270994605 4.9025335114449415 1.270086896469959 +1.1125644228276999 3.327419219544279 2.5137120739379877 3.7412126366742164 2.53225974221765 +3.8486539839897955 3.2920296461909757 3.6513741442129395 2.6941921530033657 1.1072614947364057 +1.7558129742450772 4.344796423336074 1.3331110573899752 2.6929513811832084 2.9243804482114157 +4.338772088727265 3.6414348428166834 3.5027144501192486 1.5278921894757715 2.0943261913243525 +2.4931722849482467 1.2470705495937624 4.078935774066611 2.002302877950224 2.4218120736519158 +2.952380240364868 4.540324309054525 1.157367437485076 3.813105953789775 3.094271066385579 +4.675080523575456 1.439286662232306 1.11535797930109 3.4332897799901363 3.980347942799923 +1.9536233147998434 4.568567603621966 3.2743596243332966 3.114134365775395 2.61984842445577 +3.3648072131403577 1.8506709803619028 4.154010176802671 1.5625166827469394 3.001407513341984 +2.4837456635178485 2.424422902344477 4.686228345120008 3.880260638641361 0.8081479653378355 +4.681965372098331 4.499302045782285 4.2993438666909345 3.0628406184581753 1.2499224670638602 +1.3000262651450551 2.5623449409256125 4.058662434152623 4.734571691884591 1.4318874829790782 +2.747802481338094 3.4615320866870105 2.693810238002114 3.473061541822706 1.056713085022426 +3.760691561795471 2.2052470709358185 1.4553816054384714 3.4146786951117973 2.5016499854591987 +3.7605209533268 2.2844591653097774 1.707269382164831 2.58968782217139 1.719715297747746 +1.2063278457576936 1.5903080124333195 4.024208780594947 1.942283606701329 2.1170387804884947 +2.1685198758413073 1.9147423675823299 4.372824908763668 1.9823128848054727 2.4039448330581226 +4.6246082127500525 3.106191111898681 4.721318613491054 4.635636449889734 1.520832642113289 +4.972090483886708 4.8566726030403995 3.1979772016857844 1.2113986215455235 1.9899285771833992 +4.1403647145231055 2.503432329270466 1.6503928935616923 4.043554048058382 2.899442695636667 +4.28718274588499 4.601451640757048 4.3688483941340355 3.599544263001121 0.8310197256757947 +2.676434299967811 1.4974511971759124 3.369063200518507 4.209258916511868 1.4477327093916232 +1.1709694946145812 4.205119204300555 1.1481478963530298 1.0470305964219921 3.0358341801114275 +1.91792568262289 2.815531188845112 1.9539422136706572 3.6206629481512738 1.893054054048129 +1.0311813088900075 2.709658938478104 2.297338445821755 3.475332719163665 2.0505993419129953 +4.129761812468506 3.999047970164712 4.160481575083335 1.1388918199746922 3.024415771144458 +3.164742065187975 1.1173798932417989 1.8370528950381333 4.968034050415366 3.740953736474633 +3.732037827678214 1.5091023155412575 3.362147083751261 2.240552734240879 2.489862682152012 +3.475917127549864 2.412268867477908 4.944975382805424 2.884596915996093 2.3187296193488516 +3.289306492075285 4.19425102440369 2.890668133137198 2.853324848055878 0.9057147053745682 +1.184954508748374 4.2384150354962244 1.8387468164213079 1.0725165013900546 3.148131205029446 +1.54609520085614 1.867384401506758 1.4554604906530235 3.1397762285268027 1.7146854683305643 +4.13118439338591 3.9453276849369354 4.707565984910051 3.0478804348361948 1.6700595322321437 +4.124558175633144 2.4809880660734316 1.7118176040296786 3.018741707227659 2.0998507843553957 +3.1618830636575828 2.7295010010231286 1.0215288481747051 3.824590192995023 2.836213523505223 +3.2822695059524998 2.8503821167366565 1.7734049495205664 2.8792871818166956 1.1872245906617447 +3.662476191545272 1.1451049576749313 3.533723503307178 3.0103047620312267 2.571210825241054 +3.1431472678674997 3.8689088866875707 4.365742967652772 3.942973492917077 0.8399190175967118 +1.4261616176200307 4.635464959936861 2.8423859510928553 3.8711049462006293 3.3701469869875895 +2.9513445682203887 1.301500592397089 1.7288385192959166 1.0764915437738245 1.7741312581185342 +3.4974934061750687 2.0381509294820894 2.2193179843997686 2.358722342730957 1.4659856886757554 +3.5757334992485443 1.9051477200748161 2.6617050880758426 3.74665300400512 1.9919761107645781 +1.0469975666968225 4.138805154504659 2.193357722954982 4.361057985211605 3.776002990863957 +1.2286468552149494 1.3198940347619517 4.832326490955859 3.498350908838052 1.3370927048869217 +1.4654081835333597 2.494343446992482 1.2710212670074155 1.1882071760678978 1.0322625393027842 +4.377786519735171 1.0087720768277895 3.31292686135333 1.5740795593780672 3.7912858314963787 +3.928124328492374 2.848329330163893 3.9705519208572913 4.227540100857627 1.1099550275011552 +3.5210147503519065 4.390729240244653 4.355616396676536 1.984385100271862 2.5256961723410822 +1.2306635810365951 3.444109758607018 4.639910950964682 2.515370099361619 3.068064179760812 +3.4116351756657637 2.4634621378719723 2.0727996219281506 3.7179610575637616 1.8988386605769674 +3.2478424628095057 4.570452620690618 4.452937557583133 1.87365118389142 2.898623091614715 +4.232649230163688 3.0698162389152372 4.442895045393916 3.642193702077179 1.4118439031015604 +2.036200910822291 4.5011337172717365 1.1106059121834178 4.038318198481118 3.8271912640537376 +1.6083094500514474 2.640109063666658 2.4030369829590694 3.181060343113231 1.2922580205214709 +3.7473895998059175 1.1148118810446785 2.4327854879568265 3.2729897690173932 2.7634052687274506 +4.66003065611542 4.47905258486091 1.9371134868562678 3.009200289608715 1.0872548803803859 +4.128227619720022 2.6577554538099752 2.8346265098540684 3.661351839595709 1.6869389916510342 +4.712440865989091 3.7051603023995225 1.8710057417308987 1.4896438902959153 1.0770566352403375 +1.9329926871314536 4.3133688153129555 1.5366809426386911 3.456410088335953 3.0580304943633076 +1.5364961574982963 1.3966434137669834 1.1966173341997122 3.683333602175636 2.4906458173223434 +1.0561407758227244 1.4458437105021447 4.525476132342244 4.322450785948348 0.4394174195182913 +2.528765254701843 1.2449601912271278 3.063418174403776 3.872670084768845 1.5175783654997301 +2.0687071704567455 1.6140759599966068 2.8132100733831042 1.9043876232471693 1.0161927884980955 +1.6788143912978057 4.809534756526457 4.234318488806467 1.9555591249277962 3.8722285887744468 +4.831831155722186 1.3558459458810046 2.8072601588696986 4.63213812501985 3.9258951552957897 +3.841348002212269 4.698690063069277 1.3644371399524569 2.13859622011343 1.1551440129742374 +3.388738158109336 1.2519575693191114 1.359535547614406 3.0018712055356307 2.6950134875191702 +2.5635429501887455 3.010821180871039 3.8193188186642786 3.315358174996426 0.6738205592057868 +3.471176002715633 1.9356513822418067 4.351778197803505 2.4548996096095954 2.4404885245437655 +1.448847929579801 1.6221593528101677 1.8927180184312005 1.445979464539315 0.4791786566152007 +1.697463907720227 4.636027211501954 2.039972727512254 2.3133455356961004 2.9512517653678585 +1.6511675200221179 1.152534845501512 1.8372147475322835 3.509050749785965 1.7446117512303831 +1.4427878708591937 1.2831785359616577 3.4479436283540625 2.648042994502426 0.8156691509568593 +1.1335830618549867 4.363955277780038 4.749366746692114 2.139834395456032 4.152705593413557 +4.034409726778319 4.82967090171615 2.310179423346534 4.741705347917565 2.558272592634433 +3.3224385333976745 3.384867122373899 4.663799873317329 1.1216460896282965 3.5427038764232175 +3.110149372926545 4.5244549979809925 1.134676677044323 2.461447125192192 1.9392215508134052 +3.1566678556593164 2.4213414058339375 2.1569787381451015 3.404662146224912 1.448246827930393 +1.1845905445234517 3.0985172554228293 1.1904393158399915 2.2040983470405235 2.1657839426472143 +3.4680189435281887 1.6001660190537614 3.587352755889785 1.458056149586978 2.8324509854682964 +3.4971842752265476 2.2682642939839646 1.9418979102270923 4.915350006224182 3.2173998333260907 +4.249981934130384 1.106697884435056 1.5499807564633636 4.111889867497448 4.055072491370347 +3.423879718429388 3.4907482675594954 4.704095032169404 3.249364661751721 1.4562664088271535 +3.8768476682896393 3.0680867610228466 1.2878945234735522 1.3178267501073715 0.8093146133082388 +2.913660054789784 4.128168010604606 2.1654958563761046 2.5222932045658326 1.2658332917144812 +3.2869265176434155 3.7719555789984014 1.0029107314786518 2.1375348872622464 1.2339469864003614 +4.40956775848965 2.405748152606783 1.6661636380685763 3.4855702668115316 2.7065722775559444 +1.0097097259977597 3.260138758144133 3.776608412104855 2.665438615724373 2.509806595161369 +1.8257198637491712 2.5505361896220964 4.911516472586834 2.8887004388818545 2.148753920872717 +3.9453515799189005 3.5369793444580653 2.880266058512636 4.748337823788747 1.9121872300894296 +2.5531310732069827 1.9925747938457246 4.647511968831154 4.739001258861089 0.5679732674356414 +3.2072034993347263 2.682536161248122 3.341565033171872 2.5482432073313195 0.951123196547046 +4.995642739803518 3.1279997520095506 4.917459877785671 4.373796700184068 1.94516322722178 +1.4816522417455578 4.930100549424179 3.4928176603328693 1.5125423230541037 3.9765922775871907 +1.8537975825585948 4.5985935334121395 4.855050248312582 1.9584213306210958 3.990534287364108 +3.765278312776292 4.634111136845975 1.600582767338682 4.548816537650293 3.073589569312519 +2.1963760834833708 3.665627499985774 2.5165887162079033 4.047980588860128 2.1222301459831368 +3.412843677577026 2.922719641429923 1.225604026535275 1.1384890657707336 0.49780577256409414 +4.496058463871325 1.33702408832611 4.403040084105561 1.013169087849863 4.633651212287341 +3.7196734905947477 1.5526963269827254 3.7657936416424485 4.155773229160207 2.2017888423499032 +4.9733750534627905 4.513565078323243 1.0446507031521057 3.5470789132632348 2.5443215520051354 +2.271201149432208 1.1205126332958777 3.5306554305225366 2.5948167198946344 1.4831986223961118 +2.461172662252601 2.1129458915522945 2.9649283071975905 1.8595331495087861 1.158947944678371 +2.166255721805526 4.13552627107811 2.9046629249790383 4.566780570851954 2.57694811064454 +2.772202062298741 2.501599017706077 2.842463256095508 2.528862592691171 0.4142117620619426 +3.26042272424573 3.181395216962729 4.724506998972766 3.542293162520506 1.1848522701191637 +2.36222289433474 2.376912843681172 2.2054454946761752 3.4687737021361382 1.263413611758162 +1.002421320481723 1.7414909713080213 2.264690235038528 3.661470013536883 1.5802587441284484 +2.2163921816213064 2.4821160519983967 3.834620974306687 2.575481367349184 1.2868728472919444 +2.77225508537866 1.521935303798852 3.1220796445994576 3.0824607998925244 1.2509473246566745 +1.3531273672092459 2.9850064318838885 2.740664962255115 4.7334081092873115 2.575665842411855 +3.6999058302465837 2.156819815702299 3.2697412627836635 1.307873981559275 2.4960043424283014 +3.8423203810361355 2.5413904382405286 2.072102745985534 4.040827450895723 2.359723644791036 +2.3223747123092675 1.307677195059183 1.3722517197454347 3.3047490327482247 2.182694874753796 +1.789960314611276 1.414760836714211 2.8347670072966724 2.812369949557819 0.3758673654490206 +2.431372388566153 1.7601685658849524 1.1866125515192203 3.553705664190338 2.4604154884159093 +3.384557111771643 3.444876723299007 3.7440750234582105 3.1566639181874376 0.5905000102711626 +3.5910293677512426 3.142305663754986 3.916290746797641 2.383678630013569 1.5969511147938982 +4.5106223239909475 4.199969197878573 4.963908154811188 1.3251183430499114 3.652026377087254 +1.6243918813887062 1.306141555777188 4.8799563288979275 3.2543356632608216 1.6564799480519723 +2.4665758193671903 3.3218974283896814 2.8246869238542924 2.336205900760888 0.9849816063171951 +3.047317052765856 2.6662191605599572 3.8674158805380676 2.3198584285248267 1.5937909746028471 +2.8911420794456 4.369660813837211 3.629855614486479 4.166178238050323 1.572787208904426 +3.8481963095573954 2.944461395198809 4.036728869792791 3.979877265683425 0.9055213417255995 +3.5190894594556417 1.0420998960412473 3.3150415794310417 4.76712808337464 2.871242329062278 +2.7062577269877117 4.802664029312707 4.141292317114997 1.637947772549508 3.265218720581174 +1.0555858673194307 1.663259491455277 1.1423329497381705 1.7673635790760267 0.8717399389042987 +1.610681688529772 3.5471827633305897 2.169334283364173 2.854615863035847 2.0541780001114867 +1.5036517325717607 4.701625668195741 2.3819313017288906 2.150889600942814 3.2063090244754098 +2.2469838371337096 2.7907173794563467 2.5833971397417783 3.570891872658641 1.1272941109512056 +1.6041670426390175 1.8455799713418752 4.017651749484872 3.840303624257921 0.29955393448660533 +4.028166835266786 2.397182203836072 3.046624311634275 4.138072059062745 1.9624905231184848 +1.547019345502998 3.536646636173908 1.8028642906772951 2.8493183746051205 2.2480397918078965 +2.365094184513503 4.0010933252292205 1.399299786409069 4.510948142728051 3.5155154219268026 +2.9086749691882154 2.285007078818897 1.953220422823878 1.8348739456883516 0.6347972322939869 +4.7173466733945215 4.629415328459539 2.069788340017085 1.311517394874377 0.7633523090092088 +1.5678888539831735 3.714591456936491 3.7599097654769893 2.527229263175627 2.4754460782413514 +1.2947438197960426 2.5433580125263355 3.5920718578102555 3.773614166884857 1.261742847125221 +1.8794106820751795 3.780032139839554 4.823822840456485 4.058820621443386 2.048802167318587 +1.3613028199412534 2.450697203125285 4.47811759443524 4.672254660983657 1.1065574195318295 +2.162618819354224 4.757585973635441 3.649122485064769 1.8561385784274766 3.1541474000526173 +1.7233367779832522 4.0327544189682225 1.2190806337946722 4.148056894904528 3.729921149117988 +3.347913474746203 1.1468987684436986 3.6265984426479725 3.685222792326427 2.201795301960453 +4.527800372454763 4.933267525544058 2.0055422084006116 3.7527774380572256 1.793665119242591 +1.750487115147358 1.5334818986156211 3.077040932014107 1.6727663628916023 1.4209427608057201 +4.550283138556997 1.584721827591793 4.073137330384913 4.342732945358805 2.977790403085283 +4.5864657213217 3.6827374886925064 2.6076412485984144 4.001275795520591 1.661006312096997 +1.5391853601201002 1.6397339365963597 2.8552238175851166 3.8634874693425867 1.0132648260384407 +2.4173884224453555 1.5050676294761045 4.815050191024197 4.70898773375526 0.918465281938282 +1.1058235344830383 2.2307554616662246 2.2626411474996924 4.577628875195453 2.573837605634446 +1.0008912604009836 4.475718111287497 3.8527121391049666 1.9547389711160288 3.9593842690559664 +4.509707020282255 1.4018387713023195 1.898112521853967 4.599910172459229 4.118076686735413 +4.068532544309924 1.9970381582071846 1.2691380819748064 4.614873986604211 3.9351032686806966 +1.617576731157261 2.4159663525147406 4.574029084929981 1.6212152852953507 3.058845423162805 +4.096217028196046 3.2225339243582787 2.013201052994194 3.586581277683664 1.7996798319077427 +2.989582238222628 1.6346764309333417 1.5418128487593017 1.7746834439179486 1.3747721486543778 +2.34798317444176 4.694764385796049 1.0925213041200124 2.3334790231192755 2.6546860669972556 +2.16912095518667 2.8023464700468628 3.4294894284812005 4.542086738790575 1.2801747254096256 +4.0393419403685105 4.479270594050217 2.2653653242447276 2.6472291244454835 0.5825437170152653 +2.1467125934368347 2.3873282481719196 1.0004796709381383 2.2913234605945156 1.3130779042379896 +4.545996036638965 4.027815342687955 3.889450330108268 1.7433247130210163 2.2077967288456803 +1.488704613103951 3.0118258779534246 4.694214194098662 2.2815647937786974 2.8532044294618895 +3.5888371535143286 3.1117881016081195 4.218262719187827 2.8339725236369397 1.4641841221045002 +3.574420588361897 2.5355374200420173 1.652852216699626 2.328816512165583 1.239437762117622 +1.3176838327325746 2.8721815531270605 4.432160400207032 2.4787511350337494 2.4964516658602616 +3.0767378247423056 3.1153839006329194 2.9542949364923645 1.8081265296146274 1.1468197487427538 +4.275227399421036 3.988634630590033 3.5499273981583443 4.552729525440444 1.0429513515153646 +2.6055638563921013 1.8525709356149416 2.4633268702385727 3.9236703752683977 1.6430464057424892 +1.2942591999706954 2.926413227586378 2.9561535586091336 1.3926048517043337 2.2602237342187537 +3.9664547470432567 2.9428460160705887 2.2069949722984448 4.5140723649632655 2.523961356651203 +1.6360374524147394 4.049386791491705 4.369674359549311 4.019706402714436 2.438592340518276 +1.6069343202767352 1.0719366227868208 3.908074649659135 1.4677327708504828 2.498297624741066 +3.440795957504027 3.8345645463850313 2.337238067780356 4.225401132811364 1.928785488782158 +3.4676769512412484 1.3920363194596117 2.7652358069932284 1.8423863851883904 2.271549050236071 +2.190259038991259 3.5476838220460145 1.6976947482207527 2.599796813777173 1.6298436054825662 +3.6499947686453513 1.0595809938960263 1.6843308234530756 3.766658469133497 3.3236022548397712 +2.64798351066153 1.9254513306976668 3.9419573536315573 3.1953169931763092 1.0390017223008223 +1.7431767369401974 4.821433349213644 3.673183298574088 4.7094011460704515 3.247985714019566 +1.844814673087546 2.836403101701811 3.5533988052178787 2.9483325767716764 1.1616164395220219 +2.2975892034364644 1.5169027428034725 2.412383858708323 2.75203663573663 0.8513726321410084 +4.895428886788988 4.187710218529418 1.9722401922890822 4.278705677180181 2.412602069632916 +2.119949251327385 4.356670506624189 2.841963874835725 1.1483262266993122 2.8055891461654805 +2.6289733984851793 2.48861371370646 3.494209264759603 4.926981149851238 1.439630548376985 +3.245826235707177 3.4748607782837553 2.4239691396053917 1.1199497296569287 1.3239801521229841 +1.5405868186704113 3.479929250431794 4.751986755837 4.544955255064513 1.9503617895001586 +2.2017998481860803 1.5809827719134963 4.321324775588478 4.0058485232565975 0.6963756945622152 +3.2279502180765207 1.4178695664078775 3.0037316570043884 2.8743775248204746 1.8146967948002315 +3.96966931031795 2.798402651340953 4.103694540189311 2.8928944298580666 1.6846075191596679 +1.5892631353094844 4.7017168904859075 4.059682564170679 3.605918963644588 3.1453568610372686 +4.703467015269473 4.792355259769446 3.1996914356155424 4.82120394776585 1.623947027174929 +2.629277048782581 4.5194563425113445 1.8948580746945796 1.9909021039126014 1.8926178214286684 +3.3817457246038103 2.5027333315279945 3.7672335714597844 3.600454880943374 0.8946943158371138 +3.1602876934237005 2.6153926354401813 4.546676991205721 3.1936157498924436 1.4586587493170189 +3.1843082304232087 4.651316670226311 3.5916060892002175 2.3156928594680717 1.9442397826037427 +3.109026779899153 3.09066195376064 2.3708717470671337 1.0400739314024738 1.330924525665121 +1.125809260565671 1.7394115067186102 4.969493937169833 1.577096335282023 3.447443865500655 +3.577933031183164 4.726597768630833 1.748668657986344 4.574127219206794 3.0500240589591514 +3.4083261021505176 4.175492880546342 1.3434131486774379 2.6757653002640507 1.5374352414692802 +2.7333392989010434 1.0954117329390463 1.9961923995531712 4.165938821666167 2.718566947421074 +1.795668968939201 1.6514385445665667 1.8502502411208983 3.488360318388366 1.6444473359034453 +4.029516698217712 3.118094809942564 1.1674402718159995 3.161848024269092 2.192795508357319 +2.7166224992392385 3.202657190338566 4.523831117247086 4.248819262671655 0.5584453788053375 +2.365155448622894 1.93756791605278 4.541515322233522 1.513274135612237 3.0582798731245786 +2.421768234035539 1.0001031310298316 1.957468399420219 4.876687446160297 3.2469942266586 +3.6687019285066977 3.8616846236359526 2.829231167195285 1.3680674547179077 1.4738526776038445 +2.073480878251562 2.9382175245218924 1.2062853683279777 3.8394874985158047 2.771556047751618 +1.9879631269697584 4.989448262674275 3.856365021347286 1.2675964618317157 3.963664425073278 +4.949537983158511 2.343066029731358 4.856240960006463 1.6272637020926286 4.149697600564059 +1.7162417020352017 3.073433449469377 3.2539064966456723 2.5231150790073897 1.5414361924507938 +1.238667480985486 1.7684930541604347 3.789345486603074 3.544837536854451 0.5835231576213903 +3.0434633111739955 1.8302732858038655 3.240550344653221 2.4291915149943297 1.4594975807184547 +1.144719429482052 1.858511303127663 3.3586477542690054 4.399173749470478 1.2618213762543915 +2.654887213192756 4.7025121224148965 1.516587026418859 4.13647883377054 3.325146741287584 +2.006925483667798 4.640069305346342 4.214997775604933 4.448513414663495 2.6434780005380825 +1.101680895458239 4.4599236373366615 2.608200106972629 4.159235806375208 3.6991223356629277 +4.919547103079061 1.6118824464573644 1.0809248224755565 1.7452976842764145 3.3737274312193315 +2.4272819077116994 1.672027558601123 1.054167049258806 4.605904812842016 3.6311499931996063 +2.1960228575349565 2.60613539897596 4.342168664844459 4.463857666504866 0.4277855885514441 +4.66825876697702 2.5909795129622646 2.7874487436508657 1.3348649857424615 2.5347758624579417 +2.968388231322343 1.3267812732124442 3.838941664318405 4.840983515807519 1.9232683840407108 +1.4968051167373142 1.6161333353320115 4.635139798691465 2.399678435144436 2.238643949283701 +1.7420982994172443 2.7355205088280026 1.0790387870394547 3.645872686353693 2.7523669727743956 +4.826821140941093 4.5947629584601 2.363398716721954 1.2326933832830305 1.154272736888301 +2.541966618777399 4.205291135871489 4.52567373187673 3.6351954418436834 1.8866902327055353 +1.8645195197675992 4.160101606888551 1.2916032403165993 2.7045950721351524 2.6955969720075985 +2.9477560940949474 4.310055241672304 4.568426559491487 3.1676719896570087 1.9539632372186957 +2.7243142918613734 4.14584734772126 1.8020794377053075 2.5086651535117577 1.5874569608918725 +3.1520878328172364 1.0811595171100348 1.1140441665071852 3.529988537683209 3.1820639989502064 +3.7715177734925014 2.278617923559156 1.3798238243675423 3.7682670360983477 2.816631132682086 +1.0281051975029278 2.0810616732655673 3.672661115731454 3.7216004802061287 1.054093165353833 +2.540548275811636 4.457332113024803 4.842981268024131 4.485776023093116 1.9497835432703443 +1.9117822750409155 2.010443692336313 2.464192225180992 3.1867046580684844 0.7292175881996676 +4.014153372874876 4.866677565333925 2.918786049782921 4.364446621382923 1.6783122435967617 +2.3449719908267674 1.6933416598602324 4.071137590153916 4.037812638592111 0.6524819082795725 +1.060177935734035 2.1900503920055887 2.0980172409367306 3.6849788465276467 1.9480910925982933 +3.12905630849688 3.550133755179192 3.185991391684296 4.113753396797443 1.018846678473293 +1.6634548408339294 2.1561857159816955 2.9591969625482535 2.0694243656785596 1.0170934025270846 +2.688540536758895 1.1652775373015145 3.3863714970436085 3.0241529529242186 1.5657370274793483 +2.415485457979883 2.820624654872758 3.6241640101052757 1.0064169768402649 2.648912474776539 +4.828418464553678 2.87153631613408 1.8129713138201264 4.196794551144251 3.084153201384421 +4.463829140685796 1.7689965480466423 1.0853505935175964 1.4801746674969558 2.723602164734035 +2.7657814801382723 4.798850860512585 4.9238806709009735 3.0766611043496574 2.746923958260516 +1.2826711090118939 1.5905314916594415 2.8577275458793903 1.9179119937404314 0.9889546436749012 +4.0240152376544795 2.5290256213426434 3.0002759038057754 4.2382049345222965 1.9409951669107672 +3.8177701908130155 2.7726972087906385 4.506656105650158 4.909626832734517 1.120072740780723 +1.2843885398228205 1.8337073598132863 4.344943028628824 1.4317062027043668 2.964574163335795 +1.005020799477276 1.2806663172342403 2.8520462551717314 4.6981322748576915 1.8665513771497038 +4.022827350476099 4.9609638710300015 3.7367001444126124 2.4010218438037705 1.632218322993069 +1.3768338698944578 1.7233613665881733 3.4013190462447493 2.694179060619527 0.7874822316946922 +1.2883646016721735 3.1423806191361563 1.1245949538253974 4.507914242195236 3.858007879731248 +3.9479699788517375 1.3077374803828046 2.866121488207793 2.712517418862543 2.6446969308582267 +2.1864592114876964 1.7121109051154946 1.9362223567999708 4.982034176465604 3.082527527301752 +4.102738049114398 1.1735224466288048 4.293522280824453 3.9252811724015992 2.9522712544374254 +2.909604121385947 1.280846043169929 2.909561193080808 2.275927358270038 1.7476683649854563 +1.4620027341933497 1.775293423302239 1.4913482344543092 4.344237841044119 2.870040097850635 +1.7502399889343225 3.5529552608938273 3.059452117244727 3.5575988561967713 1.870276055903135 +4.758614425937221 4.343729462766011 4.305958185701925 1.9281312570666485 2.413750284351853 +1.4321537348385727 4.54577300667232 1.763713143062299 3.0316538960420822 3.361889159832825 +1.5976148567839457 3.093931658078178 1.6771909484128296 3.9014556586277855 2.680730771812609 +4.039781872628494 1.7131686598084093 4.371764903567389 1.2366355865571066 3.9041215242928025 +4.515100552400482 3.806115592267575 2.4531156032321304 2.35530688128615 0.7156998112221115 +4.938533378935129 1.5864603112390796 1.2748075182348884 2.8071708520774594 3.6857199077084415 +1.79481477129245 4.632227174027929 2.473853807611481 1.4352777239476682 3.0215144257070143 +3.777488292231347 2.9081301870799394 4.910720193270356 1.6898534572438164 3.3361304000645267 +1.064043169440248 3.716597226936043 2.3879921998287297 2.933038647802581 2.707973164266278 +2.483179582571141 4.246096596406685 1.745238785967138 3.494479487771724 2.4834893658964257 +1.126234347586005 1.4001316278520357 1.1742775132090482 1.1042333140424012 0.2827117082365452 +2.1066904483545943 4.727918711473966 1.2582488866843464 1.5352780899442209 2.6358267748155604 +3.468018340459754 3.882440971263543 3.952057718028042 3.057648522131104 0.9857555105741688 +2.3421268972583653 1.920867655641508 1.9669051622205016 2.095712041607203 0.44051170339157836 +4.785344871847752 2.3215654549189293 2.0389172314493385 1.6960710027933725 2.487519357067548 +1.6345534436896858 1.0944460059198504 1.6745904276098762 2.895502805093565 1.3350442231728394 +3.9540865152511975 2.7100889930190304 4.936532494603881 2.7259414947470124 2.536580849089569 +3.2248085387531433 2.5742970311741975 3.539310617560901 2.6989837030016672 1.0626921213716014 +1.4233302279023903 1.235104807461446 2.5037822589339336 1.0136130412040205 1.5020096891731263 +3.3817890541213194 4.037790511686557 3.649732680326339 4.064073357827528 0.775896970840756 +2.4008784962900607 1.8578410571882396 1.7252374231948915 1.4803952333660466 0.5956822627764303 +2.977799889581534 3.583739445719684 2.2909246182791367 2.7192616947451347 0.7420481094702259 +4.373335863840385 4.641352407301813 4.970600344446426 1.7290560495434688 3.252605460763251 +1.3303904985540438 4.74872121518199 4.562504819273171 3.50218297928535 3.579003673174601 +4.031698580057245 1.527915339523386 1.2490674814559601 2.6096945670420313 2.8496028813869274 +2.1214402465501485 3.141281799426044 4.7113808148239595 1.990294189991444 2.9059231257579285 +1.9496690124108658 3.3030045465445665 2.972788273269837 4.573950593843838 2.0964822548199327 +2.9758362335097974 4.880128207465111 2.7943926090481037 2.257531341397258 1.9785216558770078 +2.309790365334472 1.8500299938635751 1.160741383031037 3.5599673224321537 2.4428804120280283 +2.051397772339551 3.5246290657552852 1.5104133700906357 4.841061136152855 3.6419259994506548 +2.404892815541058 3.0143357057349855 4.587611537305746 4.639207166094742 0.6116230418469039 +4.395402460469808 2.12877966431726 2.575577323258017 4.670277941244715 3.086316506619541 +4.8307526657681015 1.6552872543052932 1.9620353018682928 4.562774282546107 4.1045613437995705 +4.231482932371768 4.882478505313038 2.7337915420939063 3.702070647927099 1.1667731839489028 +2.56251575497814 2.9760894208341626 2.232743203397504 1.3913107526519441 0.9375775947927019 +4.350088396048733 1.9906228730265747 4.135152233509857 1.452380036811995 3.572722241331573 +3.895586815036651 4.0053555789074915 1.4957219041691174 2.308273770574618 0.8199327515844181 +4.332664495618252 1.0929652426500507 1.6817993415082868 2.174738350711433 3.276986438250378 +2.520538101524362 1.876005503859873 4.101770828168826 4.240232883293643 0.6592374459642912 +3.106040613842261 1.5323781566928445 3.9944967182416753 4.484039369533875 1.648049009124345 +2.4536713916757584 2.9660849386831183 3.237582267273907 3.0913526716792474 0.5328702823243585 +2.4636101512715416 2.600062085493259 1.5989209363511137 4.138580134805385 2.5433222317760364 +1.8321689686409743 4.820493833168195 2.8670012667600857 4.73096884388112 3.5219966815018564 +2.3185859894918677 2.9813066165366706 4.598356233119233 4.436874042998367 0.6821107880959576 +4.397825458147549 4.028432154371966 4.579983555680072 3.748735858540428 0.909628576328933 +2.5736207583475306 2.480589109149971 4.881152917608872 3.9077085569794163 0.9778797528294094 +2.586455378914397 3.832375810785936 3.690172696865264 3.5159706198584497 1.2580397792551912 +4.738586806562749 2.7157347048096736 4.220938755066019 3.297368988877503 2.2237157504016434 +3.0006719450659145 4.011193096340357 4.501877759376732 2.7267553016788915 2.0425995047968275 +4.41408347746348 2.998063189055182 3.1750078105421724 3.497074174639797 1.4521846301579506 +3.806618336686983 4.623398938064776 1.2919363925355856 4.019122428760627 2.846870953690723 +4.70057808185019 2.673433261031928 1.7678987080190196 1.053172062117742 2.14945348936226 +3.029837000691529 2.0246282762484658 1.448957025740233 3.687801368821667 2.4541533310378525 +1.9826814163644828 1.2602785669943048 2.816414602954173 2.807401241411487 0.7224590766710951 +1.489347777619249 4.182068420566767 1.7476115488145645 3.936145610891959 3.469931671060495 +1.4390565256484615 4.66579336289902 3.3456420902993536 1.305015091616713 3.8178513806357444 +3.870365945624006 1.9593577047285793 3.194005952095773 1.546945041709055 2.522848021442068 +2.6029594415575055 3.489123827971749 3.726297865321014 1.3247802916187164 2.5597995969508833 +3.2037776601581913 2.0315292587115055 3.7622467731726186 4.34634014406854 1.3097066009678926 +3.066315851313051 3.1143039150009497 3.284411478908168 3.9831569592741114 0.700391391001022 +2.4427024485358886 4.345744127496878 4.483478377953281 3.8998843087782635 1.990514925701115 +4.006065656650436 4.058825133613693 2.1573959459871284 4.895880186986871 2.7389924243439183 +1.5972548795919872 2.6937838800655567 2.813796928532161 2.1321523921562227 1.2911293981823562 +4.4545557306437935 1.9710273955361144 4.191590656130437 2.2935327976316633 3.125785761291338 +2.080523335977626 3.680692024862693 4.647471308882917 1.3434538451170788 3.6711130783125974 +4.322737735192976 2.4849533696183794 1.2757462357027602 2.4208115978107148 2.1653235457662774 +4.609252944482643 1.3308725467690876 3.309289288311823 4.554592320270148 3.506929949901635 +4.465661804485419 1.5809790172756597 3.606314985635227 4.477897190796513 3.013478110618704 +2.558327156842555 4.19563622833413 2.777603490294601 1.6785377308924154 1.9719854307471203 +1.7828331325974012 4.400974546838137 2.5381463085939817 1.1677761386105288 2.9550937155601273 +4.1874621576060225 3.9577763775795898 2.937748416911692 1.3830739295187118 1.571549655371085 +1.0522822267957834 1.9779523787144533 2.2014725093544354 1.862434799824483 0.9858051524700252 +1.0876580924676498 2.4913392631464757 4.52323090269727 4.906890283025854 1.4551684950659125 +3.3261900409457072 3.6570868382101818 3.2470158694713294 3.386932388964179 0.35926219237053003 +3.207708471871072 2.5407333262338394 3.0973578390340895 4.809125739088746 1.837118719232738 +1.0105077860802525 4.11151321719602 4.555292794807759 2.1253633105285927 3.939643636470017 +3.520222964158161 1.5583584020518977 3.019459535908639 3.155989205766836 1.966609496265079 +3.2922512765331247 2.780222896900152 2.742773709977007 4.805152577744983 2.124989330741565 +1.7123413124456976 4.097352297397738 4.363390554488743 1.8607596819709 3.457085287119964 +1.2999022983434072 4.6334428857057635 2.8902200862277887 1.3886688955147242 3.656111161592873 +3.599299403295247 2.876307567876224 2.09988421050764 4.289719467559252 2.306099661139749 +3.0048791294656323 3.825380209797019 4.739436477293037 1.545659785187505 3.297488678049028 +2.841330202329191 4.300277485504121 2.8316022349114043 4.959646161176099 2.580135292420839 +3.606767868866253 1.4190330437869503 2.1808211928728563 1.7855835817219212 2.223150115069395 +4.833826718295446 3.541239422139341 3.5285343933050597 1.1090761864724819 2.7430931323587364 +3.0230926953067017 2.1576993691605977 2.0459040236318464 2.4241515358635954 0.9444452284001038 +1.016620962182345 1.9401348731131596 4.770304222292793 2.3527898806946514 2.587905240830009 +1.5687801193150062 1.5075159122839876 3.1916140241397843 2.1559760329203415 1.0374484815739924 +1.5529777469981578 2.613508066202939 1.935030559968887 4.472895808333172 2.7505425967993498 +1.8159592458487004 2.3419763775009423 1.3351513150818217 3.340772627397154 2.0734538507536473 +1.423179498245418 4.251570808874432 2.794455623592647 1.0765304614606968 3.309239228089713 +1.05293890233126 2.684725396863309 1.3870659812680328 3.4425816281510606 2.6244755168067666 +2.6998752796569794 2.329412623923338 4.822414098799694 2.5789069839658803 2.2738880257398706 +2.338853655463765 4.72761898390444 3.3290770773155236 4.893026126403171 2.8551946382869318 +2.7924006585189414 4.940295979512712 3.29336379920539 3.5936434751022404 2.1687835746573816 +2.9815407463822594 3.000119008546203 2.4154463760340548 1.2760011764253796 1.1395966456322544 +2.4092549865382593 4.219305791412047 4.22351337493275 1.197140127265357 3.526360581452375 +1.860232241365218 1.0736965714093571 1.1530752354743807 1.7678157505712777 0.9982706351558744 +4.819610573903834 2.7456006593332134 3.5090379063558776 2.179902767036607 2.463354896134637 +3.4768764218584893 2.745803544185658 2.1939537535047187 4.876001690114402 2.779900841170615 +3.341632503652321 1.1174806444639973 3.175322270243541 1.8685768453889233 2.5796191769541004 +3.2023843673186656 4.329039776461958 2.0008507067490964 1.6885775752735777 1.169130839381703 +2.436660596823654 1.3994841814802124 1.9108225584856675 4.8085619358231995 3.0777635411962985 +1.9817744033939957 1.4297258748049804 4.8833000011761225 2.6342459245089143 2.315815583696311 +3.576410690642488 1.4574948413205369 3.0392150108157994 3.888551030768469 2.2828000462801836 +3.9902340578895954 4.435789776788322 3.229874687970416 2.973603333335578 0.5139989356503923 +4.8253812607032405 1.0543992604610768 2.903225726573495 4.886880657614695 4.260891002078609 +3.4546217743211196 1.678394043382898 3.0595326758611394 2.6813574935935396 1.8160400382802895 +2.7130473512962103 1.3852945207735896 4.508120459615817 1.2352655991559702 3.5319267428128343 +4.037359167449763 1.8749278216470722 2.0101475627360843 2.846831696856681 2.3186525538767486 +3.803393261727577 4.948591349550817 1.478938333659035 2.6076984793406743 1.6079732979229602 +1.6015479378198916 2.3951380572503593 4.45503968846178 4.974722485845651 0.9486071302464415 +3.1367249084134126 4.238891559627275 1.2952125822466343 2.7262828948907467 1.8063038412125734 +1.209786731432808 4.124918025327171 1.680765681605053 4.6015077258549155 4.126587518724289 +3.6035002296202108 3.470149615979498 2.1826379129291364 3.6477179505130684 1.471136262446579 +1.394437433042122 1.4665091225628641 3.4962417682597002 2.1450322696890414 1.3531302366948812 +4.393706552675798 2.085064470854829 4.555242407147652 2.6972621207192087 2.9634302770119936 +2.7970588391322737 2.008476737488417 2.307236917901018 2.4309793813617158 0.7982317509948876 +3.118010488808776 2.395515825207968 2.974094644360192 1.5424380658466328 1.6036330932394716 +1.215887183155672 1.982469363975226 4.247352030141693 3.1716861576508335 1.320872934536697 +1.4772173457622557 1.2841928050215885 1.5762612222350958 3.788526695339054 2.2206703935559697 +3.095034515104548 4.898794987842139 1.4855334846727257 4.521725854168681 3.531574145844315 +1.2861853690931868 2.244392431643061 4.8160393019762795 3.6104793823668198 1.5399790565099336 +4.731627437468797 4.785582771983078 3.9015899216020618 3.195828949379707 0.7078204066250079 +3.602299761703132 2.7484829903725863 2.046387223804134 1.1393218703905053 1.2457008607080229 +3.9063712236537054 4.786463308706993 3.8701265802386104 3.4053724952796305 0.995268023026713 +4.225910728299723 3.888255458353087 2.0923556475687715 2.9056695764967393 0.880619457149899 +1.6430523656885279 4.180164051554363 2.361055503898681 2.564799862425898 2.5452794483491683 +4.669437115664223 1.8302555058948395 2.3307218176930173 1.76706474450426 2.8945917690424645 +4.969912691757102 2.9918052889250286 1.285461660404883 1.516644259952609 1.9915708100574019 +2.0685055374928853 2.2210080434792308 3.9787002761403714 1.8202869344786765 2.1637941602184156 +2.9163255364603393 1.8809698521273033 1.7164676122385352 3.1817253275603905 1.7941408989794956 +3.978898198201592 3.1316293476115957 4.535452256494842 4.516034229670788 0.8474913362069451 +4.0890308651177865 2.0969705939532273 1.6693069698407421 2.188510942608123 2.0586104267902776 +3.235204062320611 3.450825624456688 2.0456796192771827 1.2569476772293156 0.8176739781016651 +1.6043752674246536 4.1889911749227995 4.773138599602198 3.5154431698372006 2.8743759641606084 +3.055391509848259 2.8509897088479157 2.291332736066776 1.047119119008518 1.2608915976900543 +4.565496527190155 2.957550369994684 4.693970473681986 3.7990301064151746 1.8402198524641935 +4.400833906450805 4.478934947480177 2.5999661515678407 1.5478388314963922 1.055022118370321 +3.1981569049026413 3.8469827074364833 2.991234337041527 2.60803333895368 0.7535369446611137 +4.5617771328469825 1.6589089397306749 2.6860063881798144 1.6835651742914752 3.071079962148212 +4.836632556951909 3.066315150174184 4.46266136443849 4.807844431967401 1.8036560289725085 +2.311253273062009 2.3101354173995454 3.9422364272704353 4.08373456218076 0.14150255045186516 +1.212481858146044 4.8671227232422085 2.6522888289018924 3.671494376690836 3.794098022122597 +4.860717636397991 1.8049648677355985 1.1811893370380853 4.362816307054423 4.41139152190363 +4.6209055979403715 1.7583464731308833 3.375801408355823 1.8681107271734185 3.2353324300841675 +3.6345235293658433 3.533123936608823 4.641210089168325 4.603686005894218 0.1081199992455219 +4.390573349064878 3.091193719948521 1.4071486841798633 3.305951338253783 2.300834400751328 +1.8539385311653516 3.8755729287400347 4.100153297402027 2.198115183400039 2.775743976769722 +4.3106016590798415 1.4087233430904509 3.005002312155668 2.825547402245751 2.907421852002251 +3.843910247441638 1.8282882884470215 2.293189043927702 2.4055024812653985 2.0187486692968752 +1.0925964079489945 4.879218899243527 2.0690589824160375 3.614058758383904 4.089686320406293 +4.9357518622342 4.806047693709186 1.8592162074092058 3.826903520126694 1.9719575380727992 +1.4754949465694422 3.097135578223301 4.8353316780627065 1.5425380811025584 3.6704506549485822 +4.327110817491176 1.0404194350388778 4.599857255868534 1.763843782821604 4.341118826154141 +4.4041229287500085 3.1889961346733955 2.003841836674406 2.4844073155708206 1.306704367938612 +1.1858784915062297 1.1710515082950739 3.139017774539053 3.7076811712807602 0.5688566587682352 +4.315106130767957 3.499340229703377 3.7751411470551934 1.5139547769462576 2.4038381404965956 +2.154397818217284 4.034036812232387 3.306833284847351 3.4366244080285746 1.8841147744972306 +1.4301048240811673 1.9642459579610017 3.874182020891269 2.307920974601103 1.6548354649415755 +1.520225584901116 4.561048635447031 3.6196028764364776 2.9056275470413913 3.123518143971024 +4.533808059394201 1.8264806231498012 2.4795436205620116 2.566088420571347 2.708710366475222 +2.642894131368788 3.7233451955247467 3.035935160896646 4.20234351721082 1.589931745615288 +1.9705815216604474 1.740558561267044 4.486510600118212 3.830323854085679 0.6953356081612024 +2.4963007244414173 3.4773295769975223 3.4796607871810927 3.7312244101069476 1.01276940412274 +1.7405412645894214 1.8158569369315876 3.3577677165141884 4.370993824869533 1.0160214550654278 +3.660921991100657 1.3731797577009575 2.395783680206656 4.250904163415247 2.9453754486823445 +1.8699820493216452 4.366262037543123 2.3911261376793824 3.4546788621257183 2.713403430614815 +1.1874135719879035 1.2957274337747635 2.380623923589059 3.8044005838082957 1.427890706896094 +1.1919514091301373 1.7317490166586929 4.304531098990311 1.040345062658691 3.3085180877359406 +1.2430418342590954 3.145635291874563 2.7717768990008795 1.900524306850194 2.0925923980294083 +4.562650587892055 1.8983933373013917 1.963847597419079 4.74695656049064 3.8527862901612093 +4.919817249492796 3.1546779020442273 2.1230982517972548 4.583556175061801 3.0281298037016917 +1.6770679262720933 4.202581914718099 3.236735111381312 1.507809226877174 3.0606217701546967 +2.1020763613511946 2.6714790429086017 3.0498322418132213 4.578617552260267 1.63138099143132 +4.6072187183827955 1.764934261152658 1.2109283945083997 2.974198209938936 3.3448021432994293 +4.748839668949497 3.3165350260957944 1.5712459107653478 3.354440998620427 2.2871994472041033 +3.757543003489624 3.7419414832438775 2.7159582113121066 2.5881859471204 0.1287212450633293 +4.751194146696928 2.691814345675029 3.143595797303112 4.112192100701257 2.275790843599989 +2.8161548677178803 4.35502048847024 4.585845641204236 1.8793448917004927 3.1133990598376355 +2.2662408163542462 3.9372313494539886 2.8412387151655163 3.2678382929670344 1.7245859101504322 +4.892314688666847 1.0613389844718513 4.375534350374403 2.8957296132262416 4.106847563060806 +2.5134871652157638 4.383086935316027 3.227559023234489 3.5487689353687863 1.8969921212309448 +1.6379006126109625 2.7653827296979836 4.219511509749479 1.6500442441517302 2.805954018391856 +3.690395805742829 4.024625247951482 1.8317975397745845 3.690173579133048 1.8881924752791375 +2.4110340719070806 1.539326154062052 3.289612131286507 2.351725584708229 1.2804319069307213 +1.0809204295320365 1.0655490427170147 2.833079629848614 4.232349993885395 1.3993547910391566 +2.455186457137033 2.0776460238653014 2.8150287866593042 1.1452884090909494 1.7118906820346675 +4.681728242807337 2.2518266732674643 3.286680281793965 2.2767804304780594 2.6314101442649003 +2.8924270973175465 1.1462167305843511 3.008888447460561 3.8216532631353903 1.9260937906772402 +2.0751948627603563 2.301184842837149 2.5219968536143584 1.927416585510691 0.6360795282929157 +3.4373177419446272 4.560169379601492 3.5200998562981445 1.323543286463008 2.4669123544776785 +2.2132734356161063 4.9958880671423405 4.440250353265029 3.735842228123915 2.8703893454283684 +2.7680262383702616 3.717921378040962 3.0651801683473736 1.8765635954470858 1.5215485972335043 +4.020805312979036 4.310590445672915 1.532976480035328 3.9401780521467176 2.424581372506593 +2.356160688678905 1.289855231259056 2.07980625947854 2.261465856695056 1.0816688669755732 +1.8725507808065114 3.328264097563722 1.505271867507226 4.144005622534817 3.013638513575623 +4.666725531239542 2.814373070536575 4.354863739720078 3.5365793418242224 2.025042961152212 +1.9107182731485106 4.749789681518159 2.4098189822151985 1.1770043850188587 3.095183079057262 +1.9259373802252213 4.826766757164399 4.517391208034672 4.591722906797875 2.901781569235417 +1.1875444781712035 4.34750281495776 1.2219014714479086 2.4088769481188046 3.3755366199235586 +2.5478418259574775 4.655454662704588 3.1611676787138507 4.2665271226683394 2.37988473879736 +1.7829354734330347 4.8978404663678665 2.0217787645354606 1.8903218563286601 3.1176776667458164 +4.8557753197097355 2.564375123241204 3.8543510212302308 4.445596939974374 2.366450210084216 +4.040321507579495 2.7165513548263815 2.513511790927264 1.8543359143711102 1.4788104183949935 +4.849697594792227 4.406585114165175 4.700086019122496 4.892431820950161 0.48305856577457257 +2.757166756104804 4.708311837904674 3.8271249901300632 1.3800583050401882 3.1297128448962486 +4.06903728256858 3.9183325227815886 1.1740874779131198 3.280658379037985 2.111954754744637 +1.8600111862842637 4.674092116957635 1.169142874643342 3.869439384189291 3.9000836816465285 +1.1967538132221964 3.5100070675201245 1.472021506542871 1.450325034319516 2.3133549998707275 +2.465958806824367 1.538904833575863 4.77771468589842 4.458142840282398 0.9805892278759076 +1.1812096178095408 1.4724208115974906 2.899689435619336 2.721427167947343 0.3414401784543878 +3.594203180550413 4.891129134230854 3.9806737963352474 4.570682569745001 1.4248253514134297 +1.7740719221597456 1.7347790429300822 1.4611692019692413 2.646580886713593 1.1860627271298088 +4.056571606507289 2.359085359213978 2.878000410511739 4.9123058403745965 2.649501489284245 +4.163786732896696 4.401069801834584 3.8860874984839144 3.905715706208779 0.23809351386182892 +2.5562951205428206 3.825599685258662 3.4851547739508413 3.7784497784892728 1.302749414774641 +4.3876557405222165 1.4903943236866461 4.590537691655757 2.6390091507197737 3.493220199697091 +4.231908800292805 4.738303945586787 2.496938809248019 2.8710321225069064 0.6295886356997916 +3.875172793420363 3.149945688921021 3.4351429275821443 1.3653533069858002 2.1931674415394866 +3.6952888681590523 1.9930546150935822 2.6695434459567053 4.257225834963107 2.327732119611368 +4.5207660561688705 3.708930828905409 4.8379240100944445 3.9685946282753077 1.1894578640372087 +1.8416181938898508 2.2215568328686426 4.034260041177205 3.8105500738648237 0.440907608081289 +3.047304329359299 4.811555935078305 2.5827636529549522 2.480516180207644 1.7672120059475893 +3.7001258891260216 1.963533825057111 3.1669293133250855 3.7076140840994967 1.8188161034954844 +1.1965416448312882 4.722016649666896 3.553192553983638 4.387138198246264 3.622766808297939 +3.73322308344639 4.113089765834719 3.012558077586992 1.2709513878569783 1.7825522595708243 +1.8413567322158362 2.5337571687729037 3.4233053991131173 1.115577112937988 2.4093626143354214 +1.808305015538509 3.1772669796102697 3.756436437681208 3.404622881053316 1.4134460151354844 +4.8602294007648 2.2061316485136655 3.225207267256639 4.0179216643513325 2.7699514425104512 +4.156769084491598 3.9723105847251667 2.486449263324942 4.993166169678533 2.5134944970568367 +3.110685268781431 4.5759046184013865 2.761025534587504 2.081363680521014 1.6151804785762562 +2.978593962171577 4.095964160631051 4.876659303719178 2.216141503705357 2.8856318414856297 +1.9152059815283264 3.0660198530978677 2.169196324092717 4.426760507251524 2.533963024212936 +4.630379715845603 2.2500910788638966 3.5847923092454317 1.1554911879214056 3.4010701159209287 +1.6595729608936343 2.0438847815519807 4.811446176774629 4.33521098695575 0.6119604002871073 +2.876066648646133 2.9433782151715504 1.1521933229475638 4.5694461406964155 3.417915690505044 +1.8766631052522054 1.2403166508451298 3.474883816901846 4.548311429615527 1.2478716479560905 +2.447098800756426 2.296097855551589 3.3145370252378914 2.9379492095598714 0.40573349426673727 +3.2125768654698112 4.625253607454191 3.8051959301324976 2.0887615689544323 2.223016530207626 +4.2292857889711275 1.654912451336751 1.4007110643578278 3.001561238911364 3.0315209652731823 +2.910923154108363 4.657747656916264 3.939399573121878 1.5312103052766721 2.975024603826815 +3.322663698560857 3.29997617172225 1.6412024167733925 2.7282162395632343 1.0872505575120384 +2.123589390750042 4.670027095227121 2.9379881721901646 2.756935287224805 2.552866061887457 +2.4849107630323086 4.687448475173875 3.341175815869426 3.5244835917301027 2.2101525092393044 +3.5056408936262016 2.692368070386098 2.456226477987255 3.2441260190164045 1.1323419853449193 +3.8677028297472544 3.636396373024305 1.1763896415799655 3.3539972582867423 2.189857897047453 +1.300972547597655 3.4331009690976204 2.0136773138418538 2.0271057424101273 2.1321707080958006 +1.0681047140332551 2.0994548592444398 3.5427222324767604 2.934049151059267 1.1975667171683582 +3.6697596888763093 1.2669440181908662 4.843206299670114 4.651208017230749 2.410474328374231 +4.303316921563418 1.518148233505313 1.437073928925808 3.421804399823065 3.4199882548113165 +1.787259438001712 1.9649765915913067 4.044271888887584 3.721179582315506 0.36874384773993646 +3.077039231369255 3.108570646417082 2.957504390428962 2.9232951515280217 0.04652421048335965 +3.5667743994861456 4.967342269837978 1.6586225071762133 2.5910513890333107 1.6825617311656487 +4.184580335730619 1.3790605291909457 1.2060287156405938 4.345459199892567 4.210340265386752 +4.53075209687143 4.1922090733373825 3.566545727509169 1.8813296402233735 1.7188847080681182 +3.069261860174437 3.6162845076365095 2.275027256207552 4.113156290895216 1.9177987707260162 +1.9000180104066882 4.348341373631948 2.0361576399940415 3.9568181839116385 3.1117879451975012 +1.4189786732464165 2.3112783305167537 3.7479286567957817 3.4481479367357637 0.941311403566569 +4.04987369007012 1.3375389565260214 1.9042724278621752 2.9953267699025945 2.9235525109145875 +4.178311530476204 4.699142120088194 2.1431306648909034 4.962975013407104 2.8675401745981395 +4.641030787233672 3.7037365279637244 1.685513962071762 1.2746188044966127 1.0234038103207874 +1.9886860993541617 2.5825017252219267 3.648746878267858 1.8964187514732354 1.850208329210599 +4.53844395819713 4.795775813902102 3.765921797072784 1.7585661766380083 2.023782663936928 +3.447474911578395 2.0773761089553653 2.09546563571618 3.423160268108367 1.9078636654205887 +4.3812041502298165 3.4887387190176904 4.087416479354503 1.2814898549892746 2.9444386166517873 +2.6744658154027823 3.182134382573948 1.564965229754328 1.2708527876498494 0.5867107487461644 +3.185903592749884 3.5097283203327425 2.159289984471986 3.575680142014113 1.4529361763602433 +4.70762338530447 4.991059447706784 2.9679218428973906 1.2938868095418572 1.6978602104919562 +3.351089233453926 2.562663532957221 4.522714345629723 4.078291465421767 0.9050562312122129 +3.239279122994349 4.765274283647074 4.968896445051639 3.0310432104725153 2.4665636803261957 +3.7129845197628555 1.4387751695427342 1.108034107037879 3.3043490371566615 3.1616178518112052 +4.489788665568097 2.7309316634027208 1.7008111853890884 3.429784389069664 2.4663589140900903 +2.04197310583089 1.6386016263351273 1.6920319733975635 2.0903235793766366 0.5668727845504578 +3.7317713435842306 3.0722804611916716 4.066611956561205 3.706948766455756 0.7511896127315291 +4.884557255744862 3.188420788507033 1.4775490206990973 3.968777190489522 3.0138176304234756 +2.9230110345344276 1.175052155276017 2.0734118891886077 1.985490391982716 1.750168687083975 +3.8297820892608194 3.329056664854884 2.105690782177921 2.6214250834008617 0.7188239145329117 +2.9725735885776436 3.8492952294329963 1.4064787037498951 3.258937066136743 2.0494493943303564 +1.4867308591676336 3.09156735377126 2.241446640535081 2.65170505019843 1.6564456336116666 +4.162265485761145 1.7820272326308713 3.0661965284970027 2.276368630104838 2.5078600939333198 +3.4257544620056817 3.8667936283964464 1.0117934045166894 1.4639161173298452 0.6316094471524218 +1.514781514078642 3.6662731764409 4.277571800690767 2.3267340121905873 2.9042528213388352 +2.3718033585813556 3.7080293424153252 2.865170807481094 4.588012046326708 2.180293974247544 +3.609802966858234 2.7876500302493294 3.957117773724658 4.898329309118389 1.2497258121415555 +1.0913555009301774 2.9977771400115008 4.417267036145125 3.7699076186987206 2.013334965005592 +4.365626565295038 2.193529458830857 4.641822756866 4.41217341362212 2.1842034385016458 +3.7630862021137466 3.860783201181512 3.7927740920486053 1.5497263353315107 2.245174367959076 +2.084870780787103 3.403316726599029 3.643641846311483 4.756395574872311 1.7252595666895838 +1.6106875486033303 1.2816217575396078 3.9301003289833454 4.090496361885892 0.36607537778341254 +4.540609929084853 3.5222984488398468 3.320763727955078 4.135260407323699 1.3039797205099803 +4.6721755432504235 3.666214980431038 4.490725043538518 2.941960019725772 1.846789038556811 +4.101607946269319 3.110937449409107 4.234540916750064 4.437044119152139 1.0111555668305225 +1.6651585783685596 2.7368414465103457 3.132461155930761 4.410274016598526 1.6677259597297582 +2.8532007242036097 4.280451512831355 3.7183347507387596 2.3895764170820186 1.9500368003965365 +1.715381183003918 3.637678454288762 1.3047408564169838 3.7059213064290986 3.0758566859835224 +3.5235463957251323 1.7823687012212157 4.898997894668867 2.4643125187220534 2.9932244559483423 +1.6534609881201634 2.7811191921366496 3.275478092883467 1.1934180073340221 2.367823309481484 +2.7146733326791828 1.9403805805010297 1.989343255138928 1.9497149902309179 0.7753061752980162 +3.2090242451710203 2.089311731863358 4.675691078284284 3.1413491314042874 1.8994634301331683 +3.0568403422071286 3.5322114296153875 3.655289199182625 4.591527789824591 1.0500096996461343 +4.503567791211164 1.8225727941993397 1.1191650895066618 1.5901997948319275 2.7220594900962927 +1.8001103827979428 1.2719962188440141 4.188286347278235 4.8083254384044345 0.8144648824187328 +2.5013404698691803 3.305301098905024 4.093390863357875 1.2705781042926838 2.9350680683386114 +1.1345203382604607 3.7395034960136284 3.4949360119649278 1.7250482828216134 3.14935546198738 +4.337868562477048 3.7241998868724373 4.865867281466825 3.7338003369879855 1.2876974839611874 +2.3672597505192594 4.424401094970982 4.6014773977494965 1.5713793371534224 3.6624206159152077 +1.7081327624060694 2.055511439715846 1.5177548097742122 4.982218796248575 3.4818361045614026 +2.916192803656525 1.6540473449391322 2.2913362239670727 1.1735100377163206 1.685985332566342 +4.177279049489547 3.6995217298773704 3.837246796281943 4.912476331111913 1.1765927966011371 +2.7295814908528633 1.249525124986405 1.0470194411954212 3.327230782640887 2.718442680616672 +2.982984022440658 1.653855845129609 1.8451422817337138 4.738379092217798 3.183928540853627 +3.153084261570533 4.211801318208032 4.36935812162948 4.823114134928536 1.151857771437178 +1.0697542937651874 4.352011955122132 2.904444336922133 4.968482994293957 3.877302017468028 +3.5630174980354523 2.464295836893523 3.4251439579130523 3.3680302469299663 1.1002051011719316 +2.035920212002146 3.847857999411589 4.549150589856966 2.5156270908489486 2.7236623077136484 +2.0745243639672353 3.425537601637937 4.332789976960429 1.3358040217965446 3.2874247647377506 +4.5488015950120415 3.289005019617386 4.788629637171296 4.8853883991914575 1.2635068932949185 +1.407933856769704 3.433037732212673 1.6525112692106898 3.089109780864004 2.4829138104289177 +3.906659041861214 4.400613320540789 1.6916087933016581 3.4019441434561575 1.7802353325934113 +2.326060379667719 2.9723107524258805 3.5918843224247126 2.822598740455072 1.0047088388764334 +2.0192499505141885 3.8360275537411366 3.311869833447281 1.8628143943713673 2.3238852220156105 +3.9344091728043917 3.435030093185862 2.727819214077965 4.644326784820966 1.9805001221600287 +1.1301040867959653 1.944560506383365 1.1329509247578593 1.3954517213583841 0.8557136948904328 +2.159868433256618 4.909205310953714 2.7178874597693254 4.535455699907728 3.2958166779456994 +1.1284941223000247 4.376666355546176 3.2609608081481345 1.9144960746738917 3.5161897183344863 +4.63418593711423 3.722953839108492 1.7151052533765219 3.720455595560591 2.20267426809633 +4.068088678826509 2.652102842326482 3.8563827190716147 3.2090321605560845 1.5569452895908227 +2.233410853273617 2.5310578497046143 3.9346369919283624 2.5113890883492185 1.4540386272471657 +4.808990048696096 3.0665192439680498 4.135213637414083 1.355506979652445 3.2806971223406127 +1.7481842513590915 2.5911337314604914 3.071349186854134 2.035350004660583 1.3356115196826237 +3.40746352738937 3.340243324753504 3.607436239381843 4.382991093153327 0.7784625147371678 +1.9446109207079498 2.415890138159233 3.026503117851861 1.2498600771384325 1.8380872109116453 +3.2355101535230033 4.905355551375934 4.904951144139291 2.416379013195455 2.9968942096178437 +4.787587784878616 1.3715084549434224 3.9723243368194114 2.1907512382638603 3.852739375289653 +2.1861150402677625 3.812604986106198 2.9778694153559013 2.2483448534075756 1.782603610004034 +1.4964697855356603 4.3116612218014465 1.0765356335035232 3.0383595725679347 3.431334432944481 +4.048957585108734 4.693812368657836 3.2179862952166567 3.9249415656910718 0.9568821486043688 +1.0452408888636207 3.743981782065939 1.8645283859790598 2.6057057851706587 2.798668673800968 +4.94043118313685 2.8347687313298553 4.194134190764612 4.735423345491386 2.174122422950159 +4.7799347604153315 3.8328533084938545 2.054967800218518 2.2508903342468263 0.9671343835857386 +4.80201715627247 4.969820790520361 2.252739439630159 3.864995762606507 1.6209653021098303 +3.8646950750147804 4.884190214740614 3.186488563524869 1.684544727555965 1.8152701248931473 +1.6222080825641298 3.2210102686326607 4.941857185444155 1.9118034182218078 3.4259880709710377 +1.0794388142626201 2.60728240444073 2.050016734035643 3.260289648645754 1.9491194329458597 +1.7329552985821435 1.87694451751684 3.8161729617147 4.439748076985846 0.6399834525633039 +2.7627527878500673 2.3738431472599606 3.5709783438921674 3.07479044359569 0.6304388479024376 +2.3357412186683253 2.137662447978404 4.789651833789198 1.4681230954131923 3.3274296926089555 +2.202665416450201 1.986979416797026 1.4523885086348254 1.6770275917716186 0.3114212069190673 +3.346158859546049 3.586930399644098 4.475362391558941 2.8123336595181883 1.6803676675401313 +1.4626450488744687 2.544341335829278 2.1304764097829576 2.09174724458705 1.0823893964043592 +2.9581162648732033 2.410873092904505 3.623514192431503 1.0017083614244724 2.678309337020059 +3.6756986934105753 2.086951494940935 3.084118172753494 4.277081667516983 1.9867761727188717 +3.9951800870438503 3.3109951224405876 1.407830470752883 2.3139571811182136 1.1354182846099774 +2.1086085250202617 1.4779931742718895 1.7525285557988393 3.5497762433258973 1.9046718801202611 +1.34109840297891 3.8526532003831258 3.697733892886195 2.4348880809708593 2.8111718277323847 +2.685209113351017 3.1959226475674507 2.141228316159325 1.7077737109325546 0.6698590962464686 +3.565476770727628 2.4828599194225394 3.2397117392332127 1.9891767294695941 1.654054732278904 +4.287714280852411 1.9890740220394276 4.866228487299608 1.6669026786477805 3.939471115434341 +4.766007528701292 3.9736639641576326 4.323885861528635 2.729169720362817 1.780709941334789 +3.879646382127979 2.5649986659962956 3.0832980423792495 2.7398476357813837 1.3587703261855888 +3.381977865750394 2.4541272917785357 2.2719684544049548 2.6139582063849756 0.9888698994707358 +3.087346751927981 4.321639098916036 4.592790667667802 4.220130947779703 1.289322637922858 +3.4099051134146063 2.336626797917041 3.755935780005842 4.794400349215669 1.4934306157372839 +3.810811878683157 2.970234022102615 4.454065013002323 2.0521431014753975 2.544759321045253 +2.4446052705451358 2.8012007391977414 4.272664035633619 3.1320859081624337 1.1950225073735004 +4.812522332334405 3.629984699334033 2.274376433957023 2.5444394613693806 1.212983632303936 +4.872708230162471 4.383605316285655 1.809066174581516 3.540602137976259 1.799288318444866 +3.6152308612616753 3.9787371468843387 1.8257016933834254 1.8052466996392438 0.36408134593282837 +2.91821942394442 1.8046742150886566 1.545903092273253 1.8459805562602827 1.1532690130921377 +1.130326568094974 1.812795913444293 4.657103143052381 2.825553295371103 1.954568814824088 +4.682216371975931 4.084013351273587 3.4659554011676312 4.501865573329111 1.196226039996219 +1.9483731690310457 2.395007935922412 3.5576751357334797 4.594741078491536 1.1291538356773008 +2.9277868904649607 1.7369079782345689 2.9403352121947686 2.2498748026679976 1.3765638963444151 +4.106928709631806 1.741331083229424 1.6544907351689884 2.6936150398684298 2.5837630407329693 +4.936966584456517 4.68693265824326 4.855864429820713 2.155409135141211 2.712005855970848 +2.7878259620126435 1.9635920374315545 3.750253746581768 1.0977808655327177 2.7775841926269296 +1.2216550262484098 1.9431625195340172 2.0067049936147434 2.6808431124355585 0.9874387404363615 +3.2453660367478805 4.2284585197474165 4.485754534945466 2.8007369737944763 1.9508344398019586 +1.4817263797773124 1.6190979383580273 3.4196488105886176 4.683428613899876 1.2712239520888275 +1.5065463971577349 3.4442788829201607 4.969387024472802 2.1702062146816106 3.404441274612076 +4.190364814866945 4.634794504762911 2.1409470849037704 1.8020675371380386 0.5588891635690668 +4.745726312180922 2.697892529531548 2.4456986126733513 4.2394947963805745 2.7223754241549134 +2.248090281238172 4.093559371121481 1.2750405954181399 4.361678055357972 3.596260136700145 +1.851485243535108 1.2142482667847716 1.1852454292881873 3.3755813244382273 2.281149337093176 +4.290019068749485 2.536800149112214 4.188925770107394 3.363681920734814 1.9377316612733957 +3.034960100983657 1.8829773599568043 2.2601857575026414 3.17277441949058 1.46965380331991 +2.132698332356756 1.8988383749837467 3.619300031532271 4.5872680041828575 0.9958174911798809 +4.377141298187083 2.8482071194914167 4.269947976012977 2.3646576186213375 2.4429021815769363 +2.112654149009219 3.054088914684766 4.58831915804085 1.90022051578668 2.8481877972688676 +1.4221351610747388 4.704822584468905 1.5449880567997218 1.207201445986275 3.300020683898067 +3.1331415296299356 4.285478892769493 2.6751319234674074 3.835393906006848 1.6352642803576987 +4.166695744794342 3.2458593819266253 2.36548158058952 4.685631211456393 2.496203901285136 +2.65647473060072 2.3109091105647326 1.6919934493718833 2.6688954749694465 1.0362206161660161 +3.0791200676832613 3.181373205594607 4.866791489828826 4.747954146382416 0.15677378100344608 +2.329011458927591 1.0393888430963734 1.9554854059110371 4.925328749649101 3.2377609512761496 +4.261440115199592 4.356352693349348 1.7361240687098123 3.462222316805002 1.7287057469587808 +3.2233618448515085 2.4880050028115814 1.1349828133902018 2.045913044600816 1.170702170181792 +3.744166148034256 2.9104060026452223 1.1973201907912365 2.7634654292391367 1.7742510780473468 +1.7378184066031412 3.433266981073795 3.9459132934765173 3.424008149823002 1.773959088492902 +2.5904373945245633 1.157567310371169 3.7777709193041193 4.451693987264706 1.5834421301680606 +4.25814856786952 2.298727869866101 1.349205880279718 3.5566255554128845 2.951614997578312 +1.4590403506229532 2.5332949272931713 1.428299557983392 2.7668961315948977 1.7163518527333994 +2.631993472940869 2.48794312872193 1.0427030789592462 3.0312676197455715 1.9937751715131582 +3.389089245048142 3.7978801402883184 3.9430346899708484 3.278688697621399 0.7800420460347246 +4.9532819030594455 2.700588446371656 4.473465724319487 2.947776204804272 2.720727167461403 +3.3525202346460983 1.648492280462135 3.9546012121347354 1.3908655719686829 3.0783845928178017 +4.289936081171604 4.000062438433176 4.5013267251434375 3.7457279069004255 0.8092937061936674 +4.4695284582594335 1.207847294647324 3.4991359734664114 4.335252636893509 3.36714346114366 +1.205244413617562 1.5969465261425917 3.4583362022220405 4.7253994340529335 1.326227649543742 +1.9503646121141602 2.0616615959656253 1.028060828419071 1.1658907298658465 0.1771555823203466 +1.3648855406999076 3.637508931948818 3.3914221952192976 1.2710900942931511 3.108154644909031 +2.4810070721152737 2.7598206788476594 2.850268739048457 2.635608152144473 0.35187525469842895 +4.151115663664848 2.593841025636957 4.6522146987221955 3.6495103386782803 1.8521663888257929 +1.9330004319942926 4.215723523029602 2.25263471167836 3.9332428409090947 2.834654898639732 +1.9493748751432962 1.4950403449666774 3.6077233030880818 4.250128070279464 0.7868314623990472 +1.2008074349235192 3.8132602866394225 3.4460810750732396 4.108288555693179 2.69507488761028 +2.96469354009859 3.7947924012882375 1.68698496529636 1.7769253744773197 0.8349571225829434 +1.9798195433778383 2.9829725469772876 4.8017347058493485 4.770441803938919 1.0036409688432275 +2.0468001399629636 4.489049640691954 2.719156908756607 3.35554229609122 2.523800504204726 +1.5716695205476499 2.4044924217086554 3.197017023693861 2.4897685914290446 1.0926089555002165 +1.5615188774523672 4.45876780835192 4.046759928410925 3.61908703701291 2.9286439643007722 +2.1242814825799647 2.464647550110166 4.9231472676604024 4.480674737315186 0.5582391960764417 +1.342923910671364 1.222861046543183 4.425387033371701 1.6150747747637357 2.812875767293121 +4.995139036708936 2.8886395947984465 3.6423150540889555 4.45992052605002 2.259605852034792 +2.03545993505763 2.7453890936809024 2.280310806370711 4.5437345736648505 2.372148089942013 +2.610210983416996 4.500551258819167 2.7037086735764104 1.1443363983181074 2.4505159149966382 +1.350940464175706 2.573745489382254 2.2788803302166216 4.047981978471776 2.150574986260532 +2.0057700565910848 2.49374890193479 2.2562390158022527 3.7096199525232594 1.5331143143050379 +3.463444446305598 2.7480542458217183 2.1204022964105738 4.105296067348114 2.1098782952708466 +2.8587388524895503 4.578494582220311 1.1730062808198656 1.1042571642005168 1.721129341734003 +3.76194921219182 2.718668508256678 1.3536164676782314 1.886800074146453 1.1716310790559734 +3.7424056995505204 1.7421635954610402 2.2194966189859104 4.650250106452648 3.1479407541762945 +1.318341076186028 2.5298932441832025 4.1281684797901 2.665489090147637 1.8992866167757572 +2.827507928385766 4.612788916223069 4.74205820927166 1.6604484101286205 3.561396798969154 +1.7185399054428543 2.504533128846532 3.243998119009906 2.8846139010246525 0.8642582735348131 +3.222004000539838 1.496207406129085 3.40324106092536 1.4835873145860345 2.5813648310756774 +3.766930942295585 3.278071533076264 4.332299357364986 2.367626277185383 2.0245799154305253 +2.6530526681791784 1.8903345958676736 4.629520895285186 4.1365919507181745 0.9081397481789494 +3.3877726929665357 2.2274216332437953 4.492576410064862 4.776651924276912 1.1946185498202042 +1.8345370786685997 4.994455119413269 3.3698613453305066 4.955211245262047 3.5353099339996454 +3.5909049097421923 3.497344137292313 3.94457803421992 1.6810982428149877 2.265412630016866 +2.745649073682077 1.9575918107959938 3.739050366344908 2.729722285400638 1.2805379434324264 +1.30033555058897 3.303670866068761 1.3100050204776137 3.0228480932662856 2.6357510842734473 +4.817854835838771 2.9519873391033804 4.889707096989329 4.387684273962321 1.9322237008725465 +4.345934753068988 1.767422059212973 3.3332020346064493 2.689453656057722 2.657656803889607 +4.127762337020734 1.5563540195843255 1.81936960976555 1.2084239273754958 2.642989852763758 +2.5692948025372244 1.2405060385110485 2.4595185089038347 4.221708299105201 2.2070324954771614 +2.0909367091902586 3.427673470584158 3.624428567902514 1.1847128880926578 2.781919798910802 +2.1568872463300095 4.211446420758589 2.245487397695145 3.8521866266984586 2.6081978095436873 +1.7983034892836383 1.2214680076384528 3.4894093580297625 4.079617015522881 0.8252782875178207 +1.2320187994796363 4.496752161021692 4.996901611900295 3.5528443482884806 3.569843876495964 +3.527730466939253 3.068141613093975 3.642256617219646 4.960985851823633 1.3965202142389608 +2.264940486394394 2.271429403686026 2.0226592683257056 4.845130379439525 2.8224785701790007 +4.521268136678641 3.4564028216048155 2.3682498381935484 2.736641599082046 1.1267877478646124 +3.419496140098186 1.2884138845918889 2.8993287069298694 2.401636426745096 2.188426189180098 +2.1566463448368234 2.475578653382348 2.7257071018687653 1.329384971716451 1.4322825519384346 +1.2796307663060094 4.099415640512463 2.0216114160481484 3.4439802198906184 3.1582146461169742 +4.215470231521204 4.78954691593687 1.596950219583984 1.5844578248864978 0.5742125908711531 +2.576473609509921 1.5899165574683938 3.342930588857013 1.1579346148293426 2.397394882669519 +1.4678879723847476 1.6267499081961736 4.249112555821301 1.7445495394107504 2.5095961862063128 +3.6860269341744702 2.7863389589675793 4.085078307944707 1.8455948190969758 2.413446653554514 +2.579431250791456 2.4009448088933927 1.2888787494269796 2.8766328791142644 1.5977548580055883 +2.062756271672303 3.4385253186252265 3.013602701828746 2.77505264913255 1.396297460498698 +4.604370187467779 2.0786268108928847 3.6257433952977576 2.761320958458791 2.669570331274785 +4.603527899894054 1.7694815937039219 3.706058597076281 1.9677228461067529 3.324699933637429 +2.6643048160511587 2.0417993321039254 3.014997001138427 4.144515597318474 1.289699707940156 +4.051631679971278 4.178782346828529 2.2882660410393076 4.219836591541405 1.935751038653788 +3.4247695575229185 2.299069792000309 1.2216743187446175 4.9619276149181335 3.9059819100495727 +3.6562013787715864 4.5404650371564745 3.698798808287076 2.5659455910248066 1.4371077306178897 +1.1952870387356889 1.7073732977220781 2.5665312761834076 4.737414406679708 2.2304631588340778 +3.4252475854721443 4.033045229750314 2.000397450246157 2.6892778504060835 0.9186806747257688 +2.0088928911154578 4.631305166649013 2.1143558304301644 3.1956732709870748 2.8365989406543934 +4.462847252214463 1.1911963677315 2.4343053616837373 4.441399976988816 3.8382454721818915 +2.0859547270153067 1.0227897984647076 1.247509024594176 1.8842429949625328 1.2392537328251434 +3.1630070996835316 4.790221116193193 1.1279608876758318 3.0203551880602335 2.49579278860503 +4.038145601974236 2.477585369927271 2.456051723734049 2.635000225803256 1.5707866832384625 +4.772135126169587 4.05978306292967 3.740614646209619 3.6683210734517324 0.7160110492612994 +1.7149927158881817 1.4225438420489898 3.891043804041098 1.0913512957816458 2.8149253071109923 +1.3532506769035964 2.0980637955049617 4.558438686039346 4.8714209872284275 0.8079012950220494 +1.3806958285442383 4.186179398361344 2.3414245772128592 1.9668155805484706 2.8303833593518086 +1.6257578751906219 2.127921014901666 1.7620198094376986 1.4991182395519882 0.5668201252009535 +2.2557533291314362 3.4819094905976358 2.7852282328695512 3.555064530526232 1.4477937896990962 +1.3190616456108928 3.7387872514910296 1.8502002613066422 2.885735662682026 2.631996499855893 +4.1919111345806375 2.8714428052578826 3.4502078070147983 3.15617620055783 1.3528086318249497 +2.46311042010946 1.3309589641268422 2.494631569278085 3.6685794424437645 1.6309262792026449 +1.1217361071305456 2.7175817478013657 2.8529528779619784 4.103593843190778 2.027517233652154 +2.4902835465535254 3.8977990626129007 1.1690207147892093 1.8157862119286095 1.5490014642465206 +1.4749166432948502 2.7977429112097734 3.4457191186042686 4.906557018214714 1.9707655121865666 +1.1538827843609032 2.8388441659122354 3.1094634523212075 3.1102442038341733 1.684961562437642 +1.066793345200289 4.351007986161097 2.628006191166874 2.910971665873668 3.296382148322213 +1.313322485670049 2.3589378533003105 2.04049530438505 1.7233169065148033 1.0926635498176478 +4.217844373255043 1.4042297301634985 3.755769325671955 4.768984442721068 2.9904902998063725 +4.44371028094672 2.7456055812578097 1.3540202342407306 1.0163828587972157 1.7313458835258628 +3.169299289064846 4.853602350598477 2.4898687014538496 1.4216008668419784 1.9945107093114087 +3.351623682804268 2.402312067665916 4.785317738887253 3.890422734993626 1.304618569019451 +2.0188260898047945 2.8747814573242745 1.749256583569363 3.364804499747407 1.8282928268339917 +4.010768490597055 3.3995634283322627 2.54222131822157 1.3864618193795426 1.3074217557091832 +4.5212748407942644 3.8164896779604365 3.8582648227444634 4.474989761924817 0.9365211029964657 +4.183867273513344 1.3129429825643597 1.2943284287023071 3.0924137330647072 3.387523733662239 +2.3601435322688715 3.132082821396181 1.3452831949850643 4.711907103608693 3.4539899838034587 +4.620430687524072 3.7315566706281467 2.3349649625490985 4.558198324342644 2.394339908806711 +1.7552730969730463 1.7319176579085669 3.856098716405774 3.6355749619560975 0.22175708063210933 +4.282984727140823 4.170364626517127 4.254119846359437 2.852677027593661 1.4059606186997753 +3.3005015061864955 2.8136289485688213 3.887083364714057 4.8933061110251295 1.1178233771732333 +2.5191598040197305 1.5121239279104284 4.064757505528861 3.9047251885617356 1.019672299439921 +4.866579444297037 1.3062202622293073 4.495861059004538 3.0928592151597645 3.8268226610552296 +2.265257574875535 1.942336273036021 4.838105794209776 2.6078630616350016 2.2534996812478854 +3.97865911551476 2.918902287982048 2.8032928145690144 1.1887931698037693 1.9312414754373157 +3.3835772925183916 1.7791879706505758 3.0564410422685433 4.778806949158037 2.3538499130868002 +3.1091325137653825 4.073699368423888 1.072144511918479 3.125173466639199 2.268329144111907 +2.166694504702523 1.3592980435287614 2.4264898139760596 3.9045015114519623 1.6841637757033943 +4.735892401303843 4.065929840688669 3.7605024364599693 2.1324186655101194 1.7605415637968689 +3.442080929387371 3.425483579285757 4.511336758727097 3.209485843507991 1.3019567110650108 +2.2500985562419653 2.315246155410741 2.0439368642908384 3.1431030761620558 1.1010951689099255 +2.81869897252787 3.8133352036688266 1.8352026354691624 4.646762455146544 2.982309482921348 +1.7944588394578314 3.946477554912496 4.016665080529629 3.1937461032842474 2.30399222975637 +2.6250331737368664 3.0163484197495545 3.022829918069084 4.028282026333915 1.0789168474799922 +4.478056484684258 1.8043421471102592 3.613320687468743 3.5352648163304026 2.6748534685040095 +1.4934637425995847 4.462772460386661 2.227477002328798 3.664979593780821 3.2989707428162522 +4.894611266174866 2.3020589030730685 3.955326137855693 1.9835935203034794 3.2571547814839903 +3.3417158129476543 2.8154575804642468 2.648422358960673 4.580663406645104 2.002624076958326 +1.8070881085003827 1.4405013143304894 2.41884389420924 3.8342350751934458 1.4620937291663707 +2.659499538539792 1.6177535094890572 1.4304310566229645 3.561484599986541 2.372050588357135 +4.756730758058177 3.729706245317599 3.669055615612301 1.8675569994851138 2.0736867202348073 +1.2206312544442834 4.722688236299474 1.692995553555075 1.6444075127535345 3.5023940243595693 +4.713623409263093 3.5759291149974706 4.039650805155837 2.656520022716286 1.7909212904358462 +4.790826510136102 4.582848910067989 1.528722373601855 4.781628975966263 3.2595484420140237 +4.92634973314024 3.1497415127185766 1.6661813442095856 3.6060915471685826 2.6305110462444836 +4.822392873723707 2.806938121968989 1.1727624541604622 1.985814062126026 2.1732719051204943 +1.628768856286126 3.45553828750559 2.488171653748595 1.7446727056423748 1.9722771713613023 +1.2579976035462774 4.711517045125419 4.433876237454422 2.9651067167240512 3.7528762887139813 +1.9926201266978438 4.267993336420165 1.1663332295357938 3.609118978246479 3.3383417227159478 +4.409363481139688 2.184734799500646 4.127966694008545 4.153557379801027 2.2247758660976147 +4.361166465236976 1.1505919421905486 1.1714254449575079 4.017058682374772 4.290153527547546 +2.585901964813277 1.9281704997894709 1.3893976796887455 1.8519011563857148 0.8040647648287708 +4.9179716353197644 4.84256626459486 4.857357948105372 2.1284842518269746 2.7299153137367256 +4.110864829274876 2.8859842762356 4.882724160890397 1.8277919266307205 3.291343695989925 +1.5710226978034076 3.064988767813516 1.2104332635574147 1.2429889956675955 1.494320746705565 +1.0465008366273398 1.9639706834148587 1.2027534918897143 3.2737026639288285 2.2650786725705148 +1.0032976105040476 3.683097806070668 1.2121742172834455 1.4141323473945628 2.6873995189544995 +4.398384454787239 3.035104664844828 2.1318037406847172 4.070119172324748 2.369725405653428 +2.2962749004902943 3.2977149406188553 4.014725736992646 4.300708084240347 1.0414739828291435 +2.9478251257352324 4.178661958870434 2.2823248801530784 2.4824713593437284 1.2470035777553745 +4.8067687022869094 2.0336412014241207 1.6113623353305822 3.171648174177902 3.181937779867636 +1.7489511016358552 1.920211095560647 3.8789032936384116 1.3441183312201317 2.540563872690659 +4.2674465028717155 3.6379446457942906 4.170132264781319 4.998975629658997 1.040794846050689 +4.525553708639604 3.9975059897138143 4.104624516457358 2.9818226237627106 1.2407733409859403 +3.5229693742095574 3.4765363332739403 1.1495012295002054 3.74486850979131 2.5957826077882897 +2.3422390417696786 2.5515731400920885 2.445163321968712 1.862531845770265 0.6190962782779734 +1.1321614915040459 3.7401443468631124 4.405209060991915 4.138727450750519 2.6215619432780293 +2.0464713568538118 3.5568996976237464 2.722787336364155 3.5307646704446007 1.7129568427105109 +2.7456914996259996 4.83007272576385 2.313498160862856 4.759401674805505 3.2135788609263862 +1.9037671649122951 3.329692784835942 1.866704570192677 3.32991271309215 2.0430961658722677 +2.8261954679486756 3.219583816912267 3.0020477117091646 2.907454427846027 0.40460138711120647 +1.3453946048834586 4.030031234922308 3.9193251323646834 2.789388858629585 2.912735796128566 +3.009707128914214 4.9962136001558735 1.0811042066047993 1.2307024094980954 1.992131416998862 +1.3562532642343812 1.191196644960315 4.824293280304293 3.0636883317249777 1.7683250471924432 +4.11012691745268 3.885204168851902 4.983284928467507 2.2431720285979018 2.749328817524369 +3.739740344323154 3.0037029083132443 2.332305152625583 3.93301640102045 1.761825078702734 +2.078555833442648 2.7985476259566875 4.204109173784791 4.587880278604196 0.8158850667722057 +1.5808947310335308 3.4547231585325213 4.8054664807645135 2.0615062826879025 3.32273239132073 +2.1972973378451295 1.156736992381612 1.0622635994805996 4.027726844335404 3.1427278102209137 +2.92480527659953 1.1305764098794593 1.6273937752720435 3.2007629091753045 2.386367041695616 +1.812586177417967 4.739036896026525 2.6345554201134083 4.685624111780223 3.5736531150043596 +1.5814182747324756 4.140484623874121 2.254002262301754 2.8995860427979205 2.6392421254877076 +2.9400737607927545 4.535048437819869 3.854409578705244 3.572427011418503 1.6197093531283229 +1.1519260151076778 3.2528077605245658 4.842329540509147 2.6219884420302657 3.0567333383565396 +1.223790792773615 3.17769290755134 1.731398172861025 3.7963350363527457 2.842832693694775 +4.635396361992462 3.843675743892008 3.8031707600400573 4.4374618675496205 1.0144687014349298 +3.1108335399305096 1.851551899183265 1.6359731060162201 2.763327989321782 1.6901832100798924 +3.2663871225359573 2.3114180508846935 2.2479830601454123 4.157277855187317 2.1348003518325984 +4.375008608968553 4.49110926824114 4.371050106974787 4.227742113778749 0.18443574490159134 +3.708509418308982 1.6511715579637323 4.637344757769055 4.704915659858317 2.0584472056429153 +2.163686716283186 2.2040129578735015 2.711315994287522 1.4083496445744914 1.3035902401618769 +4.28234570836145 3.5974275279257126 1.0763989232263422 2.8336062648478446 1.8859720452169773 +4.96231851069216 3.649635800354596 1.373190987685133 3.962622029949514 2.903151566946096 +3.3661197576407558 3.689015893540262 1.8206278379612733 1.1108306405692865 0.7797909822538034 +4.382317962073132 1.7624404805083018 1.1135469115124357 4.390795982950198 4.195726336958852 +3.6247173422453156 1.842661225497289 3.1876283415250106 1.2844914968423624 2.6072310700871304 +4.8903689142896445 3.354716425291067 1.3270761781513758 1.963231361809557 1.6622039539908153 +3.85140480837192 4.642563029529274 2.060488400172924 4.419212968049914 2.4878731716089066 +2.7871171572946 1.8244280932863286 4.44612256322219 2.071502730328006 2.562340645725217 +2.2379168386602406 2.7010552677680977 3.022476848320435 3.8861561261552167 0.9800199485100819 +3.1513193294341324 4.860100649308849 1.0608843413342384 2.1171170162441397 2.0088705938163627 +2.3663464709310764 4.41004575682925 3.1733958101020265 2.22557276335136 2.252792777672288 +2.6505574855997263 2.464161221021346 3.9171330576776318 2.927084657461101 1.0074420093583976 +1.2098030370690194 2.992663969280393 4.080359029882663 4.45090367723473 1.8209603068949296 +4.363202450820743 2.432085983736968 2.888205389146379 4.145264974640661 2.3042156172817627 +4.222532014070687 1.3206889615948678 3.040200080425867 4.499875428336566 3.248283427058113 +1.8855737189496335 1.4643623333246847 3.959100668217466 3.072813214146915 0.9812871560470711 +1.235345389383395 1.2439036331976223 1.9516401542881723 1.6403975083128648 0.3113602868236319 +1.308450475217851 2.0963259037823883 4.634205963298738 3.934616702691475 1.0536473909675717 +2.124157106443178 2.0824058963427805 3.294088898891499 3.435019699674348 0.146985217468093 +4.481292950451012 4.943912202028661 1.5274012555586287 4.440989494541365 2.950086947577781 +1.6533774266304584 3.9732230820561227 3.8451957733491264 3.4477129946966536 2.3536517211181907 +3.9984549682451243 3.583768164189222 1.0748085710365056 1.7966907003383081 0.8325136359624403 +2.2152600066529105 1.2045110880340957 3.426781838302523 4.872528523236953 1.7640285863579417 +3.8695875045323853 3.019604296634689 2.4642973691229346 4.02868413159958 1.7803868670376726 +4.555645014440497 2.293179137959249 1.649633361605881 2.5324162888124166 2.4285916780738175 +1.9947431479800821 1.7897286398930166 2.7517776296553276 2.713913521925137 0.2084817478351161 +3.2137982121000634 3.6437061104127952 2.105109534019133 4.117962807824662 2.058251467362845 +3.5747839470734775 2.8080629827841475 4.931149734779385 3.4491687378676374 1.6685708592350215 +4.242923885549181 2.0679380138621006 4.222684176300878 1.9721879418395654 3.129743894212904 +3.464015233423275 1.262556042879095 4.7128412908829524 4.043449533767419 2.3009797678653454 +3.8769379465604583 2.4674208656345646 3.133563799450493 2.711585056477469 1.4713274485793248 +1.244499776413892 1.427554927030294 4.018795376441315 4.488226795348576 0.5038601445088489 +4.71859256615193 3.895529327682385 4.57982831056747 1.2483471547671634 3.4316468037915158 +2.0281346800492255 3.296884857862926 2.3288679495981146 3.899305226402337 2.018910660251849 +2.194784829305325 2.4097950461098425 3.530253155469281 4.940352816915518 1.4263977175181957 +1.4088078704662217 2.1386053813524555 4.320226885243713 1.3009460695140334 3.106229394479587 +3.3496859272538955 4.465739897994608 4.612419406976261 3.884007716423676 1.3327265497992398 +1.0790253252614241 1.7281774767132942 1.342289331438614 3.6080817975429373 2.356950151188969 +3.0853333939617626 2.5091962631717353 3.4360947010140737 2.53775257351704 1.0672172091523178 +4.977789029694111 3.7755681655560247 4.341220802439712 2.020897064378008 2.613280936979713 +1.9299758732331855 2.1254240146512533 4.6119088442848355 4.671169863235512 0.20423477752539965 +1.6053664079461964 4.766830881904108 3.301152245862875 2.347566463810324 3.3021483103929095 +3.9248400232521674 1.6794296190781446 4.290485366704754 2.212706870699921 3.0592533993824462 +3.650940707860794 2.9541001999480474 3.5799507611767787 4.417858396493575 1.089805440796787 +4.402755190142225 2.241424294463045 3.7295456116773926 4.357653663735876 2.2507489788241752 +1.6695108693509488 3.1846667281047276 3.1037555754024697 2.242451259745209 1.7428546699268197 +4.038363637225917 4.335438248104688 4.57373753230033 3.700915449004106 0.9219933370249128 +2.5640051454778554 3.024924079516349 4.142838886110062 2.25580153394888 1.9425128653902568 +2.471849340116279 3.4875341450623334 3.2028737784187054 2.8260961511230485 1.0833175912117599 +1.3233000036862412 4.005141145123675 2.4542792306553336 4.930276490596002 3.6500457995948676 +3.9491711000080003 4.265488751646184 1.3047296940847701 3.031400979770717 1.7554061027438226 +1.445195799833693 1.4128687599417415 2.3493843741006644 1.61301045364544 0.7370831623601051 +3.5600958472195074 4.471231250333013 4.836427377239723 4.2862870072690775 1.0643411809557353 +1.6432215352944866 2.93917145035214 4.474996636046737 4.726433922584084 1.320116241623897 +3.6737086707427924 1.9943546804994376 4.036563468967747 1.4278088146186594 3.1025522833844894 +1.940354508725406 4.526732023189611 4.781926378192754 1.5420261075994612 4.145636550726141 +3.544422558941204 1.814529398125111 4.758731550898449 3.1003563479864247 2.3964011895907142 +1.2751694225991765 3.464269609353606 1.8223768677403167 4.848636213546776 3.735024130541758 +1.383869624643895 2.813787852611686 1.975668866621414 3.0833883375591027 1.8087864896026342 +2.016201397609914 2.8259835342298145 1.7423745413834726 1.375037689165409 0.8892038415268834 +4.614356926289073 3.4775612264195392 3.3928319060438406 1.7726755089801176 1.9791945872471375 +3.268698452732245 2.7522181508285763 4.262896760904395 1.2921146449379197 3.0153438083908033 +3.7407931577403457 4.333008119230538 3.254590937092292 2.1569335688428035 1.2472250232757611 +1.9842154156815957 2.9363580386793195 1.1814534713868468 1.491360896004605 1.001308237438501 +2.9033440985828207 3.577564556675804 4.542338942457407 3.479739395984023 1.2584478623592454 +1.333974915538389 1.6350663592454655 3.266842536433747 3.3221178018397652 0.30612319813976424 +4.929642458888688 2.6941022168136373 2.4046640424702175 1.766197647801501 2.3249257001156503 +1.940049446375911 1.4635142622293302 1.022875420203401 1.3576560048620263 0.5823777310251369 +4.067083877559066 3.6919262720403427 1.4569215527384953 3.4022892614918674 1.9812114352685546 +3.677956930636224 4.96408833169961 4.7458400132627805 3.354448858273667 1.8947567989014338 +3.5060765058211443 3.0399081572080466 1.0032151888959833 3.335161435571911 2.3780845709592855 +1.7925336212746896 2.592420481289532 2.098583245874057 1.7570771461807184 0.8697386992379725 +1.1919506896649579 1.1175314355469776 3.315314861574496 2.496327686355015 0.8223613673790017 +2.783422386937538 2.09989707392406 4.645603494856838 4.495981938082226 0.6997095567318137 +1.8465083550101187 2.632113924732039 4.693926073604594 4.520155339651621 0.804594543330153 +2.9899682209484735 3.258209015014292 1.8336324370311785 1.8254472280213276 0.26836564841200483 +2.9935504640037927 1.2611608145200321 2.0728284339558978 4.533947003939568 3.0096974122255102 +2.1670975255599894 1.1162590128658718 2.2702618991448857 4.477020105787062 2.4441856235449424 +3.910150101662041 1.7147389436320721 2.6059892069250155 2.1572252311516005 2.240807724628432 +3.647125019639054 4.246362120912211 3.4587932233790277 2.853936168361858 0.8514324168988987 +1.954880659612925 1.282472719598934 4.083916155970834 2.5650376102044 1.661061249497867 +3.5697590831611237 3.5782678947409514 2.3559068632186237 3.134650836471465 0.7787904568958991 +2.415530254128142 4.726978465749038 4.480187449892703 3.517996725441215 2.5037180003398785 +2.7526282224026732 1.9375704472195503 1.2178029891523408 2.219081155979572 1.2910759637803513 +4.588475550230099 3.6496640657862134 4.717528531041365 2.2581173912074703 2.632502641606042 +4.597598198923222 3.2582483724689517 3.707785267866502 3.8975428588594894 1.3527253605083875 +3.3445137785159527 1.4836479253708688 1.7280498068376686 3.616781643635722 2.6514391704762774 +2.9073220827683373 3.0869253699246846 3.501548539012573 4.384065016677987 0.9006068365876055 +2.986272954594218 2.8524049883900093 3.8136317209009065 3.3544183220588195 0.47832789804876824 +2.3310787060750076 1.2407284456345749 3.916355854073057 1.667917132662271 2.4988678185093924 +3.0669679916387276 1.6244886441909148 2.5685647759757098 2.738298263304043 1.4524311083607737 +1.0223586118165668 3.483785943813418 2.1793164154575955 1.3120816976502852 2.609735727324026 +2.735473498088188 1.1805093625597398 3.3642776006442476 3.8330026761569176 1.6240740928892659 +1.46283196860738 4.222490164183137 4.242741815155835 3.6184267838940065 2.8293961572512076 +1.874068182452163 3.208128682271601 4.002327837023046 1.7287877243899863 2.6360390856226 +3.075109949980235 3.899118294879207 1.2906154751006427 1.7481987804725585 0.9425350040280899 +4.1688500489884035 4.253261366318382 1.2549532784766289 4.878510247630007 3.624540023119264 +3.9153607791447604 3.332998749547019 3.075314661639682 1.2962966351702536 1.871910967973739 +2.4678846752372467 2.5614094070479605 1.6605443115565892 2.828690638920663 1.1718842594703796 +3.003657870610488 3.206963030167416 4.032006019772588 2.867341860933322 1.182275598490996 +2.9513101412803344 1.7815914273884537 2.2113427305315567 3.478886126633982 1.724792199261043 +2.6886695864650894 2.794080688821275 4.00501635737058 4.294624959019798 0.3081957862287568 +3.347507551338135 4.026578395932184 2.6144837757761845 1.9295175240660987 0.9645288891264167 +2.966403039641481 3.5575156394414678 3.436257039132313 2.417962917430061 1.177428139605836 +3.640782370361084 4.684734565548742 3.971712662824996 3.9737107758461927 1.0439541073690808 +2.6215807306176746 3.870544756917676 4.148330378302436 3.1723974577013188 1.5850413888932164 +3.6311069376818628 3.4862673729530673 3.5704779725732894 2.5014484303232125 1.0787968584095133 +2.2622085226975313 2.5170983608335984 2.383553770829943 2.3830998908243783 0.254890242245736 +3.660556490746711 1.0833197912350316 2.6593857236012997 2.5556514240830115 2.579323517941556 +4.894323156005976 4.7983788552151365 1.2009376283252915 3.6714107686446944 2.472335504314464 +1.6502200955955169 1.6940995836237107 1.7622452989587103 1.8012100700175657 0.05868273045185803 +2.7973730887978103 3.3626446540085535 2.3409559223952754 2.351722114361977 0.5653740826437549 +2.347698540856278 3.6473709982423643 3.549938745800254 1.957635236384347 2.055378058310977 +2.6760742081622153 1.43445896595059 4.540345937747471 4.1183898196228785 1.3113563113490583 +4.981677644367355 3.855009972867468 3.6470674037048147 3.172328249075745 1.222602677463493 +2.770248371978791 1.0987757582670206 2.2857213140636325 3.038460907351644 1.8331496375615 +3.1350511303994835 4.23179743628326 4.93914324374945 2.5997597615199246 2.583711968544104 +1.1740705204037032 3.1897827745316607 3.694299658491987 2.3235392375459694 2.4376382059431454 +1.5857184015720702 4.501168235367702 1.3053768319304786 2.854406561838726 3.3014149750551804 +1.1888966570925747 3.5948952307585995 4.251356114742233 4.496358498868044 2.4184406762850887 +1.666830501860861 2.7180306720301877 3.1095552554326167 4.373030273880705 1.6435908615000323 +4.582849434452705 3.7860634811746614 3.2050374185149466 3.2694667348565467 0.7993866349554808 +4.309170911582415 1.3634407957393226 1.5176007314008388 2.3971763228389036 3.074244482216497 +1.0945698674871127 2.2406683757776666 4.102692245640791 3.8014329107211227 1.1850312137585548 +2.23401693699929 1.366143209314886 1.9851198962859007 2.4866765405829443 1.0023791072460233 +4.766329301463246 1.1414244278297185 3.1868237622693947 4.490683252007884 3.8522700985098663 +4.290062642133286 1.9165023295799268 4.501997406785315 1.1129649474389942 4.137551155917153 +4.932073596097055 3.5568318755662576 3.7569670474476045 2.249856078773937 2.0402630374010577 +3.752385493044385 2.889023632736799 2.531021859682706 1.7965645594586994 1.1334995490453945 +4.919084763461438 2.0380616605940585 3.0434946872806923 1.4628125591333467 3.2861603901057546 +3.7100409516240527 3.9987914831086155 1.6695313282433784 4.731518705616129 3.075572071765296 +4.26446589092531 2.181484158299356 1.26863029964789 3.91617196901094 3.3687222784710387 +1.8688538166891067 2.543292271768782 4.73934801653567 3.3514088490401526 1.5431274614750428 +3.5244351573882957 2.2724737484476294 2.615410195704832 2.493796895454661 1.2578541903871199 +4.534697513623703 1.3277405296353142 3.209730175180877 4.555048059282193 3.4777080536518223 +2.0565782583441017 1.3439408751758588 3.885987773924473 2.296699134437077 1.7417492412780262 +2.5415361909338614 4.924008057657041 3.7325642776927603 2.7119625158853977 2.5918719397245926 +1.1004882064336026 4.7204829939187025 2.2117812016505027 2.0016270002452923 3.6260897740937903 +1.0257180568623032 4.754900446574711 3.036050604584609 4.082589589378603 3.87324736396151 +3.1070227090206735 3.0700978073829908 1.0120895829170107 4.679713322380316 3.667809611012512 +2.9783442527400767 1.6037070275901613 2.18893684988745 2.0200521231256827 1.3849727620791883 +4.876800256078754 1.7349460804550678 3.8479634074100395 2.2035420834816923 3.5461766949031532 +2.5597017036292162 2.3916907066080286 4.179104263162035 1.2162178080463164 2.967646178544242 +2.1053831458166092 1.3097324879200616 2.924277147017864 2.7054647060642676 0.8251901924570361 +3.1891425421273696 1.4502033558136547 4.618781506650231 3.5577368664543076 2.037087436067952 +4.24155804219077 2.167953846769898 4.886703583231634 2.341681823384678 3.2828295900581774 +1.2480584982368947 2.764992021152218 3.1249976250898355 3.850561230427436 1.6815260504478637 +1.2602011742723986 1.088928126167621 3.397557269004425 1.768753711037196 1.6377837120492453 +3.122763202022918 3.1432438704112506 1.6710828567320655 4.33018991220469 2.6591859262266575 +4.081791320121176 3.568423860046542 2.118328635280237 2.3724763223157863 0.5728326072152319 +4.7510290509633455 2.4764029935967287 4.505003636471749 3.1768916098599123 2.6339713848260007 +1.5336064185566465 2.2939080915208097 1.5840075822242308 3.860840548726976 2.4004222527017607 +4.505042734748212 4.892028226666959 2.3493557718025087 3.200878691230743 0.9353336587909034 +2.609904626862503 2.220461953323678 1.3758856497738603 4.5942037796429425 3.241795363840397 +2.56864639320375 3.094181712411346 1.587413741971654 4.749692679319885 3.2056505500960153 +4.728978766625496 4.95220868261863 3.027769378036606 2.305410725710793 0.756064559402348 +3.6475899989918474 4.65296886118055 1.7083459356184925 2.9462214716915622 1.5947170593381264 +4.189564331592804 3.21939947459019 2.6018097052157243 3.6017311568187105 1.3932202837809695 +1.7181576295474486 1.421447597022413 3.1424724145842915 3.355578411337873 0.3653094705223849 +2.688585416883404 3.4051749187383136 1.9643202112765858 4.949844185195163 3.0703182103832884 +4.104605974607953 3.168047439350163 1.5594545148748655 4.67023378500656 3.2487058280868233 +1.808312582333559 1.7845478798555452 1.46798560547205 1.4288827417047365 0.04575800518678226 +4.519844841437438 3.310428470907679 2.0231948799829707 1.7382010904689849 1.242541515349454 +4.618954632198291 2.7345371421407654 1.258826224838721 2.20949602544942 2.1106402693561708 +3.702533894185408 2.5231256906714012 4.492558734976489 2.7669298834718163 2.0901671329492943 +3.944693302256639 2.2685310803654954 2.282589290626998 1.211426151930033 1.989198397294294 +1.425588057981935 4.739641976668338 2.7409487918563125 2.012311374626944 3.393208785463604 +3.968214998738034 2.0732706491159316 1.3662625156751265 3.8255585460998023 3.1046660131852026 +1.023152270001345 2.6140116429878835 2.696984794877076 2.231896282337624 1.657450110596178 +4.278618430955715 2.6724854069913557 1.5348227557058052 1.288776352123521 1.6248698789086695 +3.8621735274776876 2.141502354991307 1.7576086905465846 2.2388298177037944 1.786696128906119 +1.822211888762133 2.040073593576078 2.5606405902553315 1.3728734866084493 1.2075820530838233 +2.9022205145373423 1.393671276171204 1.0133318071579258 4.750894955315514 4.030520945366829 +4.876147386676046 1.679133496176454 4.976724437134427 4.384595145397029 3.251386614074182 +1.146380832381066 4.536928021888148 1.070251963593034 4.62701943895253 4.913899176626392 +3.4064483575818096 2.2319765589141025 1.7908990084116145 2.476857737779803 1.3601188860765732 +2.682381283063257 4.03115581328246 2.386496067789966 2.9246475838212125 1.4521707157131218 +3.045907658468646 3.0165634905041148 4.5007860598787595 4.397225967329547 0.10763722851472951 +2.766914674194583 2.3648899907822587 1.0643776836552745 1.9758339792057482 0.9961809196985114 +4.3031452909693835 3.3932665527531025 2.0379424822348464 2.5431395605632376 1.0407225404542721 +2.269676930049522 3.8886378870346614 3.4721669115531144 3.838919721490858 1.6599825914266297 +4.489891162490434 3.6403971928832473 3.6709595539367745 4.683518683941039 1.3217094976408275 +2.6382037054486362 2.8492416631404947 3.9802268487049117 1.9498303658487144 2.041334587269213 +2.711183738462279 3.806576172977651 1.3105962862220708 1.4254067140604847 1.101392763701466 +1.5636091366661198 3.1493654398748614 3.558171492383096 2.96161116418077 1.6942571464660023 +4.670551740487115 2.1898535050558725 3.583344442507311 2.443787617671308 2.729918220808454 +3.571762707972777 1.3432708595813159 1.2112196288543142 4.388080708485234 3.8805440646410547 +2.713139054263834 3.8189794648423074 2.7777786833460985 2.88336562492925 1.1108697564976964 +1.2547405483376317 2.877415019592217 3.900000944703081 3.798524584360558 1.625844362591239 +4.662060788536522 2.6180881177227935 3.3056091053264036 1.192669336687998 2.939785493012564 +4.605722119190899 4.383943971132616 3.827708090814495 4.719069204615343 0.9185369791970542 +1.502995229109469 1.4618449357936925 4.877673362563468 3.4690966858304604 1.4091776328327732 +4.9488084476354235 3.4088402851449593 3.665060939782689 1.2096819346652614 2.8983422848683182 +4.367162168313149 4.859683510177307 3.979340922214268 4.014054421721628 0.4937431510813275 +3.102025630472692 1.9516024555441396 3.1756227546168314 3.417534755304129 1.1755827905720728 +4.922597980357947 3.0776938762739117 4.542925789887629 2.532787544928693 2.728429386499257 +4.026421365703431 4.395188120370668 1.4643177067945539 2.4465696648162294 1.0491938945615447 +4.3876704327380285 4.446114856649114 1.1517633967626897 3.6066351018702902 2.4555673151482114 +3.6657809991288737 1.7831930509272436 2.450065945732894 4.75345383415597 2.9748501050049794 +4.890559263398731 4.097365330801486 3.244163687621154 1.5507366658668595 1.8699870835694838 +4.68893668814874 2.858452094095599 1.5267760888798065 2.3680354442878313 2.0145448995064412 +4.801663471032427 3.4587296286435465 1.2908070595431331 2.3088879666321507 1.6852180981738116 +2.3289088726348868 1.4291479826656661 2.7912911944486716 4.123125979423478 1.6072814170477718 +4.323659670139446 1.6991503619986723 4.339031331947151 1.445406852818151 3.906547290732846 +3.1580365127834416 1.8428633963758245 2.8630627603742624 2.727649565095526 1.3221259620690158 +3.91559568456455 3.536692494756532 2.0045759452226086 3.942974381115663 1.975083826960094 +2.5177928148850124 4.664768105810618 2.56142453144878 3.9058374105743527 2.5331697316610664 +3.455224080268047 1.4788144407904134 4.176148838514509 1.3068953700564276 3.484079581364186 +2.5710869875501166 3.5165664411170345 3.0530429565934667 4.26962888301944 1.5407831494064765 +4.602864077202582 1.5835786827045961 2.0801937525230443 3.70627283834146 3.429317349964117 +3.132968174860242 4.41749324721782 4.602708247085518 4.154071597062906 1.3606173250619562 +3.945431924119451 1.1043244254368925 3.086527833315313 1.1704533314475194 3.42684013571952 +3.2128406398217058 4.883571915053935 3.5022880334070665 3.9839062265650003 1.738763663647197 +3.1802853779715425 3.393227294357583 1.1598431891387881 4.334657137596691 3.1819471816918994 +3.262241176510823 1.4208199131580486 3.0638852684963447 2.471700355238045 1.9342996770455365 +4.996889473523405 3.4308683677595244 2.45946556114463 4.206316310017946 2.3460412704249665 +2.5042325315253393 3.136940815928652 1.7623951176523822 3.295046586368876 1.6581134755231344 +1.5323978511721639 2.1504800496372205 4.0530482074645695 2.2158546718467393 1.9383770766740256 +4.711806754457145 1.9475908512484166 3.005390419915795 4.705381323952118 3.245128446357444 +2.0954387681039948 3.957404100956724 2.6881390479565943 1.2406452765873617 2.35842174322111 +1.2076637648916253 3.7659459934954227 1.4787762070706738 2.949059973065587 2.950685058378511 +4.870062661916865 2.2985792700977123 4.196716870714429 2.357172866910015 3.161716144174633 +1.225423919532088 3.923421265866569 1.9354618902404948 4.029778014288453 3.4154574669105697 +3.383275955040149 3.032718296672106 3.500317984525247 2.2866356164127817 1.2632955166973274 +2.5457441953122046 2.032714010549313 4.836097570299604 4.347996867737276 0.7081258831024924 +1.8774079056149584 2.584514299419186 1.456081936792057 4.849363313384876 3.466173387597694 +4.870948083647736 1.5942372387972017 1.6107387139243041 1.7443653142963211 3.2794344068891035 +3.328278681961059 2.314276625259224 1.1682377368999104 3.312799548827319 2.372202676031903 +4.0887582854556985 3.7714576944823546 4.052617605746548 3.871723090886245 0.36524305679722047 +2.322211193633192 4.7185504350019425 3.4628874170879063 4.051551516197664 2.467583267349749 +3.03046335268022 1.106311035621241 3.862161946191114 1.9491539418935462 2.7132935270165666 +4.388412959926729 2.1797432455387042 4.959656051669087 4.510705060241143 2.253836484743073 +1.0752835338429807 3.3495122561357786 4.64063514831551 4.235646015617207 2.310007030055375 +2.6184285334860427 1.0292465629967276 1.2384665185333867 3.634523174917624 2.875167270948164 +3.9952015099699074 3.412001609368557 1.2783029703449205 3.310415467934447 2.114143639141146 +3.547731237293232 4.594475557400223 1.0203947320726097 1.7659236114552832 1.285101934349891 +1.0224489425645369 1.6280484081928757 1.8165832185525934 3.5226644387939285 1.8103767129604524 +3.6462682752153657 4.214616272377072 1.9897889879137884 2.2062527713870708 0.6081743298046141 +2.5872042395165824 2.687220478890056 4.505772214870241 4.638860977816896 0.16648083061146382 +1.4279427151299702 3.210499075032711 2.2040496335233306 1.4546367693627582 1.9336821913642022 +3.038160380989905 4.173327059304119 4.382685236166823 2.5514777150619783 2.1545125603964066 +1.1742761758863764 1.9655879394162716 4.205831472282327 4.594748711394674 0.8817204352738817 +1.2231621991306274 4.933534951149421 4.8150432903477105 3.4513920308699113 3.9530255142610584 +2.5286795693174837 3.2358613528741285 4.78513427139341 3.673512883382449 1.317500734450563 +3.115364272576607 4.039525839203513 2.6918136668007415 3.525474016970303 1.244614068968824 +3.6475344012548274 1.9863635581490677 3.3628611807266346 1.0324199577152426 2.8618953272080954 +2.074808525380922 2.807422040234347 3.638340541002278 3.6193329404093246 0.7328600487311276 +4.091774456332338 2.816500926654895 3.1005257870584932 4.548930993533038 1.9298187007173846 +3.2444921243017113 2.3197993137572754 4.63406220418753 4.1470701442661975 1.0450923692664638 +3.944581444132316 2.4459866597663797 2.2559787377189933 2.7805502192327927 1.5877536228730105 +1.833606577812215 4.358425743576525 1.0939418273155845 2.6156047580960817 2.9479094108744723 +3.0370574896190994 2.4223224690342136 3.064002082348621 4.242972267067416 1.3296126661510748 +4.858613960965085 2.1955875272122727 3.917124653773219 4.020779610521481 2.665042989695421 +4.0709552738044605 4.159756229847625 2.139924669929365 1.6621633852125677 0.48594388047224624 +4.186286793551433 4.654103516896609 4.133057046872308 1.5653211424031026 2.6100038623997674 +3.370685128259486 1.8479257118678691 3.0439541324536403 2.860003771261395 1.5338298391908065 +1.8076977048702245 4.848941275823206 4.775947890760104 1.8777604817253049 4.20102995892087 +2.5605996920930227 1.5945049383368803 2.900960395416323 4.428586672059082 1.8074792154612906 +3.5657217947227737 1.5994620885449091 3.531840579975705 2.785854512254483 2.1030150844377777 +2.5899019739832703 4.008397401555783 3.768133664321236 2.313115497667093 2.032045064297962 +3.6090281972642515 2.1408541078063608 2.4695536717771263 4.075112039685122 2.175626996917186 +1.965324298934557 1.8410290797791569 2.1575917983443422 3.6910265819816814 1.538464018810249 +2.144700069746322 4.317263907422387 3.580326779773624 2.654719419925826 2.36152124982651 +3.708241229843363 2.8651734653289065 4.675705830782764 4.595079985569885 0.8469142710331987 +3.335213370735901 3.8854009379344854 2.650078198567604 2.5700194086337236 0.5559818063080607 +4.242647961013388 3.8392900663534197 2.6079117945070713 2.095133374437379 0.6524103764301207 +2.5025947748062474 1.276721659810986 3.639630815362601 4.475768676455603 1.4838771569174336 +3.2104612023331036 3.3201278350861747 1.2580399330239111 3.5516825289454306 2.2962628612955016 +4.186875346896777 4.586417266796687 1.9049393198203952 1.3789828039564114 0.6605028405215887 +1.6027157013194002 3.315820990431829 4.913586455712182 4.711446848355056 1.7249898992305641 +4.610158033045281 3.8294765765126284 4.765253883748942 4.80396681372709 0.7816407279060102 +1.055850412363423 3.740243744529451 4.599336764575318 3.0996842848019965 3.0748861965717857 +2.2709594029337654 2.7907119335067865 1.3093821467982214 2.5276151193617666 1.3244750916789907 +1.6958408708384791 2.669373967389663 4.565366690167239 4.905833478207638 1.0313507278511431 +1.8995478624005395 2.1466379645544724 2.571307213618046 3.025247495620194 0.5168319825694137 +4.226670707634728 1.15496477690907 2.596503915279291 1.8078236366224183 3.1713394499481544 +4.659858673959434 3.0559524515282983 1.6032827782643855 1.34355202258222 1.6248000602537358 +3.7431090196416594 4.951742596827354 1.6553972689150571 1.6792728942586206 1.2088693764779694 +4.555574356884609 4.268085763044075 4.213200948565525 4.01423271786927 0.34962558318121667 +4.428070466529391 2.626631016403716 2.272771100657465 2.66640623111974 1.8439448767257516 +1.3013503268614999 4.899431203558598 2.0703864517192736 1.0489835438424353 3.7402473040525837 +1.2227530406915559 4.141089866536644 3.261676107742476 4.513557398899505 3.1755151702098 +2.218649933962068 4.8277888487502985 3.7333441856181757 3.9707845022099355 2.6199205676137396 +3.0029191086185305 2.839901181641273 4.3176360270087635 1.995824015145173 2.3275278436465623 +1.2479501153115367 2.8141606256507745 2.080716804491878 4.070799848527093 2.532478210143883 +1.8062441929542117 4.367135735795705 4.902327570106971 2.3302577204258084 3.6295604149588088 +1.7582478401186585 3.2823504381939825 3.887475599271828 3.698756556820722 1.5357420377275655 +1.7195153330254191 3.5956938647472043 1.588592703844737 4.737086999697022 3.665114215670241 +2.975313979149541 3.416544887601844 1.601438545441213 2.524929605806723 1.0234844664911427 +2.202361785702241 4.647911916736893 1.5361692425135884 2.4137552240779763 2.598244137574823 +1.2899636567996695 3.3241619207662105 2.6045923670800386 4.226974555844943 2.6019389968917586 +3.7086604858539753 4.262403947260444 1.4698176526911673 2.768921609083723 1.4121979006375875 +4.5795915218328345 3.39810888369685 2.4300076278710505 4.354019535201916 2.2578137752630796 +4.005500602620309 4.568781301267635 1.907102681076951 2.5198419907760203 0.8323067986740901 +3.293224308965561 4.306867379012426 3.2210444868263943 2.7598689218370502 1.1136225461067475 +4.9352464460854515 2.6860848567385425 3.4405541022317654 3.8882824784789856 2.2932920777542676 +2.890695393735622 4.100223808997354 2.788120585240969 3.877051347219724 1.627491687139811 +3.48889385478535 4.279642603165467 3.771491991325086 2.4742408435814243 1.5192577540980232 +3.4555541337580657 4.961021343887895 2.5026067890073556 3.2131582908236336 1.6647266915351175 +3.1576444594178845 1.3351243901761731 2.3309314005114024 3.098270018558533 1.9774700901746385 +1.4568035184886248 3.273934948255828 3.972973668240841 3.114283461492855 2.0098048423199453 +2.5605271808855 2.6315284496091453 4.326705461065854 4.284689105283708 0.08250184430410756 +2.9189603590697577 2.4234293319880793 4.042855060267209 2.6390947285218935 1.4886551204971359 +2.2371344677507614 3.3175450694844884 4.027176374418081 4.23091149078123 1.099452166298352 +4.156125868632447 4.765680716698835 1.316831706149454 3.878909509552462 2.6335906636171877 +3.5445470547755726 3.2495225534765093 1.2505658360906127 2.043367856181356 0.8459163666856934 +4.262762525240875 3.055806556866734 2.2369028452287014 2.3863522173695864 1.2161734351757834 +1.1357892536774354 1.4481733906284764 1.1613751376655075 4.075438616731022 2.9307592547055203 +4.908550312715848 2.5932991379254893 4.939392523187724 2.829720285637145 3.1322683397595106 +2.145230753198225 1.1233647613470548 4.514936665699251 4.972006270457029 1.1194296444598058 +4.5072513319147 3.9055280790185773 1.842786441357339 3.214792779191235 1.4981562882864627 +2.633499598556993 4.6427900297578955 1.0977603741761017 3.624609422839589 3.228345420125777 +3.379324550888319 1.3540299872120412 1.5019031028668781 3.376348243861345 2.75959465433865 +1.884190739318972 3.9236232895195076 2.8014238994904854 1.4067266834649765 2.4707216458368526 +2.009034198009333 4.1252743042149 3.570497396696303 3.249861263982867 2.140392421196257 +3.9449644243394677 1.6590798460946914 4.7250361836299355 1.9400533695458124 3.602970660413601 +1.5790436160226422 4.8942280030890295 1.8288955953092465 2.2911670415990826 3.347258939834747 +4.576338940407998 3.5606577850051417 4.015267944148525 2.9108870542186223 1.500421727209669 +4.997527237129852 4.322255326345019 4.201951469962103 1.8158172675461572 2.4798444679927374 +4.3533279317778195 3.841701491301129 2.7369190022535053 4.1906849439375815 1.541167423674481 +2.582484581243259 4.939951769747072 2.0879304910689593 3.7150350726764567 2.8644582148043605 +1.3704387128041748 3.4593858286777412 1.345521669778189 2.176719295535884 2.2482414340950396 +1.5974506832474487 2.6126617523833517 4.292374050847748 3.0590189303129165 1.5974411939866682 +3.694921169229484 2.0466017359774935 2.011030678457178 2.678171262358531 1.7782107616152822 +2.2947003546430875 2.0840108651849363 1.481429179452797 2.8996648317666622 1.4337999952790734 +3.613139594752969 4.834599256537411 3.0111279903374597 2.771063652463197 1.24482713325408 +1.0160351033927784 2.6151823218397054 3.706057912827771 1.6891234898624825 2.5739650916065013 +3.4043751595676466 4.365322593507977 3.829905573815785 2.3542249118018286 1.7609808025752165 +1.8958293205467855 2.5781899469940237 1.3895867139688427 3.327619483511085 2.0546501016827756 +2.1982175912858275 2.690992967283547 4.281068180117099 2.9177887567004537 1.449606276718239 +3.751768224237665 3.751164544359525 4.225301450812461 4.49799136847983 0.2726905858786318 +3.368467650013294 4.512871706295335 3.7331624499411444 2.1089217562844067 1.9869117934536773 +1.0363274885886278 1.9014205158410373 1.7016153237953193 2.0061920041889763 0.9171438818638863 +1.9812927994225018 2.5702839832843627 3.745242597774122 1.2933014522106898 2.521691098444437 +4.1041037587056515 4.658290423645351 2.3575750139208362 3.610465951436895 1.3699848761598996 +1.026072586999085 4.64360973280462 2.172339949029807 1.402616280730463 3.6985199102915556 +1.9667115077638453 4.664842402175523 1.5617973616627525 1.0460481367655001 2.746981540957434 +1.5894934681102777 2.7614542448549084 3.276580126043702 4.677111477753483 1.8261927963251592 +3.682405973375667 4.208819550829179 2.896614237451561 1.921005626015341 1.1085681833951009 +4.897244909747794 3.0925908351837332 1.4790878046554417 2.8056313300842626 2.2397531233816355 +2.2447046790849563 4.9149756584849875 1.4961271793135875 1.8372019167353808 2.6919656535575163 +4.313520125088466 1.0062276284627831 2.4982382216101726 2.8174836737310214 3.322664791539524 +2.401157631662794 3.2534955743686944 1.645284424398803 1.0776495879466839 1.0240553091167248 +1.0045892468985755 3.445445377486555 3.6344794329911827 3.9339112675322623 2.459153934540406 +1.158026504139689 3.233943997445589 4.53611219557858 2.046148560048983 3.2418131262108894 +2.6834504720552244 3.9062393172240113 3.183404491124807 3.0708318246245443 1.2279597571224372 +3.9714686253063247 4.597826556540091 3.784071854489346 2.126625260819677 1.7718502952807924 +3.718877619094575 1.7893198241049904 1.0305285624743656 3.255559767933645 2.94515825542069 +1.5633593762444744 4.33916679214153 1.4536710984298638 2.609938780901893 3.0070021223268744 +2.20372039263997 4.570019950473053 1.0903525079542389 1.9408703874484474 2.514508751374783 +4.408710274840775 4.235182810980334 3.3175183115789917 3.7174288486125873 0.4359360255178914 +2.4850489228805897 4.283240262073888 2.3929226052666754 4.883687741258614 3.0720356532798783 +1.0079237970285093 3.1675507844122492 3.5024841803952103 4.714224526693879 2.476348802467897 +1.5794056863763424 3.3820571662740297 1.5015455040830576 4.104039999995702 3.165837955302344 +4.213320851200727 3.8075194808754294 4.50443072940045 3.3002169437722046 1.2707500122585087 +1.9283284602746087 4.3631279305395 3.797048934438654 1.5840675025579327 3.2902181201633187 +1.3915892643861758 2.7129153536701307 4.5535610428633415 1.0553439835356029 3.7394418338027458 +2.6989946273944896 1.9081672787421846 2.5563526823813714 2.0681800568008595 0.9293655942322188 +2.65136328608617 4.334505395952853 3.012713467366508 3.0269694457752254 1.6832024818561964 +4.768077358826762 3.4029575981751328 3.674748727040057 4.369985536903589 1.5319615473995365 +4.124960146141612 2.792366171083848 1.6593941831686179 4.4891248355540885 3.1278079012960744 +1.028424457843799 3.400652651122688 3.940973026123634 3.5615609916917577 2.4023780079036183 +3.1377453633457097 2.917718400784191 3.822612389882737 3.538910698171905 0.3590243921151262 +1.0456836846639233 2.9445569123968798 4.706883957754409 4.109034152812217 1.990764658182979 +2.5354845461312956 3.949048167490397 4.56545616361437 4.157180261339654 1.4713433739301272 +3.7668035055373004 3.4068301120598385 1.3570793763448528 1.7466595264576585 0.5304276928796193 +3.629384965587311 3.1746135469087022 1.3142070609824859 1.5755256749645246 0.5245040145322514 +1.3372855867157547 3.1771629417673135 3.122159515294576 1.6285871684641053 2.3697905048438774 +1.6117779250955566 2.0352503617550544 1.4930675259134953 1.9739093725643104 0.6407322265197049 +2.736811736773552 2.6918443772536755 4.5790560134745135 1.467765010286969 3.1116159419083114 +4.460548575980788 4.847206355748174 3.7460380876085235 3.5887149475263267 0.41743838953786594 +3.6572279857519927 2.028444174483788 4.879123928377954 4.933865314665176 1.6297034464042912 +1.5064268592323842 1.7405602000316436 1.5429554223063233 1.0120328064801667 0.5802561893418379 +4.59141746629299 2.8296747954124024 2.1531792576210953 2.7170814608881617 1.8497899700373872 +3.5892016874135684 4.750268090431183 2.8039694930888817 2.2066311026017797 1.3057137300978277 +3.7811975615710693 3.5376856545956454 2.0526377621213645 2.977982975441309 0.9568499425996435 +2.2246970828276127 4.635734910173147 2.452647594636434 2.3837908277488147 2.4120208662524645 +2.0412569976751533 1.247133613206398 4.3514971996442116 1.5223227267952488 2.9385132546204917 +2.625732668406452 2.7116230035621283 3.30741703829631 4.339584603310471 1.035735020138074 +2.4319187179510835 4.051412363098863 2.0239135108565343 2.2415424665599977 1.6340508036883743 +3.6531930196253475 1.234368689554664 4.739006534274593 3.391801940038025 2.768694883600215 +2.891892166846916 2.559582085829724 4.355982158946677 4.2760012352699 0.34179955836402603 +4.322535994634292 3.439381857070399 4.599265227023409 4.47628571685575 0.8916754962525886 +4.578768797535972 1.521923149236367 2.031179268813245 4.960995882908202 4.2341623386161125 +1.9843836167066655 2.7272236435536934 3.8878975231304285 3.5438137410693025 0.8186604635400329 +3.5313674538864794 1.0722157936220684 2.863747428007732 3.37208860284099 2.511142695708881 +1.9562093162715235 4.080346179290112 1.7402600212631811 4.770087039587311 3.7002444748693755 +4.684698209296014 4.031580460837905 4.999130829351408 2.499918978864002 2.583142014479203 +1.3937627161991655 3.973770097267638 1.5586765153384916 1.069160838913906 2.62603573544482 +4.112635419838737 1.645676453349929 4.520815415057829 3.5245573878623877 2.660529383241403 +1.5394644936826336 2.0806956265304124 1.9708260809629468 4.7458603756410405 2.82732143128496 +4.503272547740792 1.4188637441354204 1.2938529921004354 3.0866319125239947 3.5675809626795276 +4.365242457928467 3.6586019288609184 4.384906861128185 1.670191666265239 2.805177254032377 +1.821454028246357 1.6816921149408035 1.6338647096567218 1.6083105560849784 0.14207887659887122 +1.0110011770446503 2.6552416557775134 3.6134566803169674 1.4866816790404336 2.688251970697404 +1.6979301217445242 4.30902629905199 4.473518798168402 3.9229987758316964 2.668500616852705 +2.372150298933721 2.661726997065543 3.209096228805412 4.886284021309047 1.7020028071140612 +4.494054196775308 3.2643428940334793 2.151360204686682 4.408147873849558 2.570074020680457 +4.060091188774434 1.1001942361667334 4.79767590509651 4.781113866897643 2.9599432885049763 +1.0209831484539058 4.648175128230916 3.6137184479209807 2.632811868028693 3.7574857786337197 +2.2270850283843657 2.1116552210299298 1.1957268343149083 4.89172645901845 3.6978016802195603 +1.2765718609851553 3.2883673984048984 4.23450446171067 2.0603369242493175 2.962148842535222 +1.9478353827065251 4.316848961981698 4.963925068013482 3.0475661716576745 3.0470734744065844 +1.839757407296014 4.471730710795854 2.101113953553968 1.372201756930591 2.7310431085433597 +1.0886563046528952 3.041705923058303 3.890220548006537 4.171307138386069 1.9731732015321666 +2.2358455415366536 1.780782555876189 4.312145522179302 1.8553269123743479 2.4986076127319716 +3.0946205265042406 1.6035662023592576 4.253211231013228 3.125934493622979 1.8692233253981874 +4.848755520802118 3.597430178163594 4.502353759563769 3.4609343668315953 1.627995535831738 +2.0619831752506235 3.7693405748958795 4.733901779149296 2.2769493030737173 2.9919366236298064 +2.2562880571880104 1.3255561511731297 1.7898304320255698 3.4374070826336225 1.892292445818812 +2.9031866921859772 4.730760814696161 4.980630306724285 2.8800021022632936 2.7843609727630283 +3.723232999695941 4.860560267204888 2.9060184826565796 3.0119751843423894 1.142252220856455 +3.6866370111176243 2.1282061083871193 2.313506994290579 2.1628152360464137 1.5656994873180916 +4.259125244504881 1.1946742737396567 2.744890188158576 1.3386665355394842 3.3716946352552903 +3.60016973735862 1.230829856722163 3.7774995866554835 2.0847832935245623 2.9118825386689737 +3.697525421205531 3.909169003288403 2.027057399586841 3.4524868632381214 1.4410559189989978 +2.2252341393812265 1.934487010147683 4.792939377441797 4.374929459515769 0.5091818777628202 +3.622368061748974 3.8970619984814254 4.361738067581319 3.7877098574992822 0.6363687176846132 +4.461496052470025 4.48793535054315 1.0196280431765183 1.8715746487580671 0.8523567652365543 +4.1347680720529425 1.2575432485149092 4.664021814046091 4.683410473170115 2.877290149652289 +2.3169202527864945 3.3653369485827387 1.134355100946773 2.743022684383532 1.9201533694016675 +4.800275049821741 3.4194098234212076 3.034906874172303 2.861524911014096 1.3917076124785654 +3.013637571961642 4.169468984603906 1.9213699654724725 3.0103916060643297 1.5880536477487124 +3.018443135724881 1.4776837640403238 4.879183134363408 1.9840715350465246 3.2795747611440347 +1.6418003250496498 4.741466038833362 4.496644215016399 1.9322492075807967 4.02294037879844 +2.1991659082913197 4.2836832735503165 1.044268107895003 4.695050397537224 4.203977161264272 +4.140287044012828 4.472882762550224 1.1938873839162958 2.3127931293442168 1.1672917283785653 +1.2455510742960945 4.5375735600869955 1.8744840509888294 4.38739528191088 4.141513600297249 +4.168360573623761 2.8133965442292395 2.2185855475123817 1.7954987322671232 1.4194822909030647 +4.487356601363091 3.4200780326805216 4.196852031212255 4.390812494335658 1.0847599754895823 +4.623117235091956 3.1186438213213767 3.6530704822295275 2.168236734697655 2.113804984039929 +2.690723205867703 1.492804640357698 4.389362980109981 2.338437863260081 2.3751426745606934 +2.644700996143578 4.95797146667006 4.856177234404543 1.1731832335448331 4.349214306076261 +4.964082112905609 1.8270428032581463 4.4601903285372835 3.2499435186289882 3.3623969086303056 +2.84687765373231 3.586059387334106 2.5127325514173044 3.6968838785793494 1.3959240670287867 +2.7898684795608797 2.071313258741899 1.5737072686360345 4.646544599307051 3.1557330156607972 +3.4305312356852777 1.5645609449878402 1.8144747040621203 2.3640616353440103 1.9452225890116854 +3.1662076381677644 4.844081535776601 2.261974688657791 1.595454589243099 1.8054112714838244 +3.612800904672493 3.9360403720704347 2.5928388328337806 3.8837854483547845 1.330799352798475 +4.4309182912463925 1.6191289263181803 1.4630645749087168 3.6454318812231663 3.559337928940379 +2.810464259388639 4.5484428790075135 4.962581887970002 2.1026739829370116 3.3465867548178867 +3.092983283367248 4.007382235438952 2.7581322700418305 4.6243523724356255 2.078197034481701 +1.321298716679423 4.353759371614692 4.655925527648381 2.92410144981116 3.492138637039942 +1.3340227641367082 4.450126974259288 3.4732392641164886 3.633217619846469 3.120208089638532 +2.7480842218260904 1.4067164012942373 1.377439223877126 1.9978508784048028 1.4778965630354997 +2.56820511949913 1.9730742767842804 4.1743152713865435 3.912607708767789 0.6501319622063942 +2.232251782935693 1.5281189001619158 1.8453419436067926 1.3879921745238395 0.8396260643188374 +2.7543800341589115 4.63015550989847 4.541127095863261 4.648176597301098 1.8788276214554804 +1.253074608183093 1.9867883076047197 3.246151007812458 4.591243760541073 1.5321913412371226 +2.9612575978683395 3.157960105487023 2.6595769160209928 3.730490017667781 1.0888281534669384 +1.9204421142732082 4.359893386222925 4.720394091977123 3.5160007671688827 2.720567181500898 +3.335063987977322 4.644659891562484 1.594167952887172 4.037325562923626 2.772013805551133 +3.422372235400457 3.014865552289601 2.620453361652697 4.039061599262478 1.4759779905521426 +4.12605107874673 1.0174095563965944 2.7252230442790095 1.8661323435394728 3.225164948739292 +2.447117801137902 3.876239554056802 2.160103529459819 3.6341285311843574 2.053080293211889 +1.2977027453343748 3.459934143307053 3.502910132875253 2.2196738008412504 2.5143468540022402 +2.522958458672761 1.4171639630828956 4.6561172835257025 1.714753023597848 3.1423566277648662 +4.627806908216549 2.925922961400047 1.9214943081005913 1.5643336994505872 1.7389573510592358 +3.796395601563179 2.461378500550578 2.8593145737776293 1.6438240227547785 1.8054605893294713 +2.0290214111689724 2.8386014388509198 2.860872132017545 2.677327161899027 0.830125639453035 +1.036647814553394 3.8231651837009686 3.779532675340217 2.7193822264447394 2.981375189883756 +1.8839089196088694 2.903127569187855 3.9828885134356393 4.966240107036171 1.4162581022844376 +1.5563175968090377 1.6115590835187996 1.9410189063826961 1.4716118217531835 0.4726464143038464 +1.0019455201781362 2.683431241323996 1.1488112055718624 3.418809721520832 2.8249402635857517 +1.1847883519382223 1.397215960877511 4.743218749545665 4.630116992102968 0.2406605422089174 +4.720631414234192 2.6426907150830274 4.2316868703666835 3.880329661957006 2.10743669824037 +3.7420242433976156 1.2448246798024867 3.7715551862554 2.1275115970210425 2.989796813116619 +4.261627432163763 1.2755181151960322 4.401049503308522 4.033249876862186 3.0086750270003497 +1.4563001640539581 4.798418830521165 3.3568415891561023 2.0541016843821787 3.587044527217206 +1.2261304646316877 4.324256440426559 4.392114113967841 1.8244444119427121 4.0238429716618835 +4.30377946051067 3.495966602353868 4.131897346447935 2.4958184848801714 1.824641240099634 +4.891975858447568 2.8937354368344073 4.688399123471486 3.7176864972832617 2.22154175860144 +4.969417006707042 3.361688423372515 1.4020441854260643 2.916344615158197 2.2085961580057516 +3.9525558724491794 1.9381582690104326 1.5058916100676676 4.42583194427002 3.5473721626073447 +1.1635717036784339 1.6486999200280787 2.400457301192966 3.0904563476247433 0.8434738113156507 +4.479259852188756 1.93349389563011 1.2508613597662612 3.0967305202485957 3.144544046947461 +1.8918659557912991 1.8914594272758758 1.2160000994514033 1.5117649019313721 0.2957650818664178 +4.016674210449116 4.9934056348548435 3.2701547516407006 3.006053693879794 1.0118071180477388 +1.6808614259000345 4.15157578644612 2.83772301173282 4.609253126949389 3.0401888757983246 +4.007857674772419 2.6403653954157362 1.239436667248908 1.5438234639223523 1.400959120063557 +3.392819202982229 4.563921642393625 3.078671064205353 1.932832664588104 1.63842197300718 +1.7310561789247072 1.1959078758837816 4.269053429368631 2.6086093842217006 1.7445509832938342 +2.7833627917280372 3.2805152752724496 3.6077786460978865 4.894807549399938 1.3797115603738555 +2.2491716790381258 3.8033623337429057 3.70821142684676 1.954917530287862 2.3429784631708324 +1.5301529237966358 2.556727783742366 4.251912193793436 1.9844539222727375 2.489020481265719 +1.8009580034108925 1.8773303623768967 2.550953147219359 3.6715425918294287 1.1231889603203622 +1.1146902375686243 3.6387337963553334 2.377608303663881 1.9979971845162376 2.552430310201084 +4.145377327920259 3.5616742067311695 4.174698108272474 1.5871240917023783 2.652592811743744 +3.6347642274744634 2.3594491988459665 3.015991040340302 1.5462023458328886 1.94594635813722 +1.6103264360259772 2.4427324622924966 1.269245664755681 4.281940740591532 3.125576972741257 +4.977430547086796 2.7295292687895065 4.050335468591474 1.3049622866992578 3.5482578915326295 +3.5443633602334157 3.4283397090589496 4.175189948011249 4.201372602350672 0.11894124188065255 +1.4117171848050898 2.551272390732986 4.697592677877914 2.985188115844115 2.0569189219392037 +4.907962126214024 1.7798647806003318 4.483286690805816 3.2444231464402273 3.364487462481246 +2.9900710066360574 2.4171453337457582 4.957441319527449 2.9294045807325415 2.107409983975279 +2.486704227649724 4.879887426658268 2.377038850749963 4.259443766592014 3.0447945893283324 +4.86660659894407 2.3793989626308782 3.265049149001134 1.0467457513055414 3.3327273801441466 +2.6828847983604613 1.2711646517725614 3.992276421996493 1.1795084318023887 3.1471602340749576 +1.4053977059274159 1.4883878064948735 3.719104436212541 4.8866097005641205 1.1704511519413565 +1.5713889153494813 2.847423275037372 2.8584533190177157 4.352901887768692 1.9651056490036167 +4.5569196300487445 4.939020456604283 2.350964194168674 2.430626619608601 0.39031672226718317 +2.774328622073496 4.595029709222702 1.4521228039692757 3.1832027326623376 2.5122878354739284 +4.356284404067928 4.364909309335415 1.9119023792230871 3.8760730579451326 1.9641896151192466 +4.010103501677852 3.0542533241736294 1.5707888797590872 2.4085299606947066 1.2710073487285722 +2.3216857586488056 1.5227428721615088 1.753233172190257 1.0107000995042608 1.0907176994535115 +1.5185328944965826 2.7063488438584935 2.1166160865406214 3.0138352038387266 1.4885929174907855 +4.559617273802106 4.436277061440025 4.167171982509865 2.638092664095389 1.5340457522474364 +2.686307389942092 3.637397218808145 3.770060171422961 1.539413111074221 2.4249449829666103 +4.797960889533114 2.8010765553078514 3.0970038088832585 3.443001120351473 2.0266379015052247 +2.5930421744741494 4.114101387876968 4.82537231171127 4.659414790259881 1.5300859549724286 +3.464982899081873 2.1261692652345157 3.6451133625135292 1.4306001176447007 2.587757882390668 +4.039888474839952 4.837476607153867 1.3460768011441036 2.261159869233626 1.2138879068151778 +1.5610545894069734 2.5700869050168165 2.285130705600861 2.453384119650136 1.0229640390962913 +3.833182324318758 4.591798874054561 3.9702548281207464 2.146883102685253 1.9748882294070877 +2.535275641081087 2.246357102564704 1.2938332698216786 3.8298528454662524 2.5524241829975924 +2.653179022235983 4.305932336017049 4.3234492709429 4.629026003278534 1.6807649019298385 +3.1792922718677357 3.045369971796933 4.3946238746356805 2.831446048726399 1.5689041072897738 +1.118790491427471 3.745938587706347 4.383854077016977 3.9484781444022894 2.662979407070553 +2.2564648248461125 4.480505943815733 4.909118755054618 1.4277141578612462 4.131166526324833 +4.327455865826053 4.917606651738582 4.223245088405638 4.85686413855684 0.8658816609835821 +4.532632520648561 1.774463581248951 2.532562832161147 1.9445646165933925 2.8201485421480252 +3.458343488732709 4.681503757650997 1.251542821918732 2.9567638537296848 2.0985470713783547 +4.252289754266518 4.227138117705987 4.384130004149094 3.613133938760075 0.7714062079520893 +3.494398857651071 2.3686702732245006 3.246327611169721 4.356817963995693 1.5812822864734186 +3.0421874707876646 2.6062159592161622 4.527718913160423 1.5362757788396424 3.023045349441003 +1.1889228191217565 2.907024216540329 3.1414105583332175 2.4190482253762013 1.863781036465055 +3.011497139597471 3.412912432569069 3.044290867049717 1.2159330527290715 1.8719045207004663 +2.24962633861583 2.7258441458523888 1.9373376481549465 3.7049999194262546 1.8306865666206316 +2.26940194653796 2.394834237771995 2.529961150284138 4.258778273698841 1.7333614469856273 +4.032233337498747 4.010023372320256 2.3405399441362675 1.9983404902324202 0.3429194494415869 +4.57748886539005 2.139324891350362 4.9073212120511815 4.3209119807405045 2.5076920366885926 +3.6181554030169574 2.2668207404476997 1.900650540341314 4.6656281144941465 3.077532510929698 +4.184160301824376 2.443679190848508 3.04359108744604 2.7460314539407227 1.765733907800269 +4.3312968586400125 4.501166157706634 1.407191676292956 2.195647687141624 0.8065472458627458 +1.8978826839297183 3.0552388440903866 4.7293629010405 3.1073751612898644 1.9925655596148455 +4.192110291250323 2.322365345314898 3.810688553734591 2.274021650168792 2.4201841531928032 +2.858833315687765 2.348690962879814 3.602922632276268 1.8410488427225817 1.8342422060471457 +4.345480666440214 4.474624667729092 4.408374283433765 1.797427450915901 2.6141387750660767 +2.707371757768164 4.071628624671809 3.3727943262553226 3.3826211281776906 1.3642922578867664 +4.674594360538098 4.279780688004071 3.788380106154201 1.9083431156094797 1.9210457885839833 +2.0469117031340884 4.2918714449366835 3.00972416012334 2.1943720111459903 2.3884395259575566 +1.8993506143564658 2.9639618063328577 3.2973514723301673 3.097806955495487 1.0831504993675531 +4.8168481208545355 3.9055462099529 2.2312205917152683 1.5327452854106403 1.1481894122183482 +1.0730776207696122 2.8461606928788337 1.7826101922729358 1.2750101441429678 1.8443105458305606 +2.307238575579991 1.6934944783022718 2.092571427395418 3.253354264420299 1.3130493561457517 +3.9468156940254455 2.418407381707781 4.765986114401971 4.683720582834513 1.530620654128843 +2.480159965955414 1.4530090314703208 1.7756555149287947 4.925743421871495 3.313320519309933 +1.2085228877106684 4.627898606189021 2.415203896209917 3.231104298184426 3.5153696491352817 +2.0677941926512835 1.205208865486584 1.9161693333526673 4.6924953470901425 2.9072391682135907 +2.537306001547017 3.7800608370011703 1.7367675702462546 4.085894014561337 2.6575994115790103 +2.4051605733719996 3.222540208758333 3.1399128009264854 4.876086549460018 1.918960331388138 +1.255020234228358 1.208676497321441 1.9286950218025338 3.949960753554845 2.021796948337469 +3.418710530297643 1.2293673633489606 3.3035263806591755 2.745250927962992 2.259401465819657 +4.229092695110829 2.6971499517310265 2.832567921043754 3.083873744937982 1.552418495804914 +1.6677953479254297 2.9990258855498517 4.201670204219032 2.023991429930653 2.5523439400460792 +1.7298508182795542 4.074216946686028 4.755993611909027 1.638295024086959 3.9007815920052837 +1.8072973084712962 1.9766986988116084 1.351924280685866 3.1502491732788633 1.8062860378048784 +4.337653666271573 1.706265083752136 3.2097612500240693 3.621027962258758 2.66333365930857 +1.8914549508056835 4.77069896955289 2.346941488742376 3.6353945434382 3.154387007589044 +3.887223381912785 1.0001477244292851 3.305974398201417 4.217306667226589 3.02749605393638 +3.1756489234503555 3.5286992962827566 1.3709846487467061 1.0810104257620239 0.4568693639900443 +2.5059421420139327 4.7887819497651325 3.270863044373446 3.808140109152571 2.3452130462265486 +1.3365523805071642 4.598299881445056 1.1453039418917483 4.351251866979487 4.573521494237123 +1.860469641771155 4.86002923833842 1.399982092820352 2.933202458592402 3.3686974431339114 +4.047133411570982 1.6615994107725762 3.5582825760277146 3.7638859639328412 2.3943778361159533 +4.262600553349213 2.113791706568535 2.170027821859088 4.113549744450472 2.897353434359746 +1.9266873710638985 1.9082262410185233 3.1082367610455655 2.9281517480941583 0.1810287966381612 +1.4695920045789421 3.8198477949676017 3.1900679938216676 3.172886812366827 2.350318589734508 +4.433438284597047 2.684995460741918 4.971971891104385 3.395739499549095 2.354052008872915 +1.9476924736624879 2.793068965736658 4.139761665106782 4.735391710742437 1.0341356606439807 +1.947597615391174 4.872263237417365 3.0609031797719424 4.359704572003077 3.2000865702545265 +1.8965646560199754 4.77527840430586 4.842248051999746 2.3145476077100593 3.83096102572611 +3.197591305010848 2.170368201875228 1.8216091067862035 2.5993321078469775 1.28842553917351 +4.077251387422251 1.384832555225639 3.5331110390900555 3.063930293180784 2.732992817462012 +4.7023492477919255 4.627871007557998 1.0898177765609791 2.663157599426838 1.5751016495718348 +1.0092102123431688 3.852215573659668 1.5902918976159013 2.8178836255387187 3.0967177680471445 +1.2950933347793225 1.5732583783327962 3.3708817657586754 4.34099496261927 1.0092053340020497 +1.4706549918038956 4.542985329607815 3.7287628752869613 4.684904880238653 3.2176732646779698 +4.591981376718973 2.2438877475958448 3.7486644176313164 1.6322999603148172 3.1610982596751374 +2.8419398028106726 4.893124476259646 1.999979730297865 1.2014242969195066 2.2011472792092017 +2.3420542688184485 2.9368038040366766 2.008824279934954 1.386785989681556 0.8606152707125694 +1.449765712717674 3.4092118026643385 4.2586768337097265 1.8372536281103287 3.1149188304067468 +2.2941853673470045 1.5133839704042424 2.358278940288527 2.1058840583221183 0.8205814998588538 +1.636219135963778 4.136662342646345 1.7089599952066767 4.87280439055785 4.032632835733999 +2.937671453164078 1.2192742394190152 2.2358397122734295 4.267208206255505 2.660704219290412 +1.2483965451353773 2.040314088333306 2.3187458254872166 1.9294477396929977 0.8824320907739509 +3.9808506357970495 2.7652771791994706 2.6884382521918946 1.5025717318775387 1.6982044141937285 +2.372667256704167 1.3345247802457112 4.6594570101069115 1.8411091063682696 3.0034687792509667 +1.1545646815223032 3.4334855949473826 1.6358816859949914 3.660894615913616 3.048632135234392 +1.8539557480137399 1.2127616742840366 1.4530991243276397 1.6254890306365875 0.6639639447916581 +1.7795093912662105 2.7852596152017957 2.878614433698828 4.461246916833684 1.8751690829416099 +4.237248118494081 4.439222518043618 2.833266771818901 1.759547881877169 1.0925501877218733 +1.4880603148006402 1.3548557102230077 4.04171302961767 3.3631557766141813 0.6915080710189315 +3.517726886669424 1.3271082273195112 3.8190577834057353 3.218952166884191 2.2713293159893637 +1.156794167650267 4.9043876741457835 1.496251410778111 2.8792336383579693 3.9946335165730917 +4.417970641947726 2.5641077563498342 1.2791111296690358 1.7610797009123327 1.9154898335056874 +2.5785160607970448 3.13906150800801 1.350139978624004 2.443094557261637 1.228316290437405 +4.654061393267879 2.8212694009035633 1.7833458637103123 3.1569361699250824 2.2903879183670925 +3.716310190853982 4.795247394675686 2.0134037742684456 2.8138974033896327 1.3434640077256277 +2.820985845025809 3.1325350463470762 1.7542936665226425 4.715048027439401 2.9771008196786894 +1.0457136374034182 2.578619668286266 1.8953516715533816 1.655647673835352 1.5515343715300065 +2.3171413664977534 2.2601608631927994 4.645545756739283 3.529817160702314 1.1171826519291783 +4.151773415699612 2.6238974005799274 3.507198198273084 4.5527062048988824 1.851348727143716 +1.4030377777325862 1.5134195083816446 4.7733767054900555 4.667995375439517 0.15260848988277748 +1.1236405003525909 4.344894446182712 2.195488413436702 4.218352562579305 3.8037424136516598 +4.381088284711032 4.0056105539355045 3.823272156453405 2.4453412771314147 1.4281726206931056 +2.732824832519812 3.639423054968943 4.059826343527657 1.962396832949429 2.2849794066451343 +4.462196054752554 1.6520436913117638 4.736937125353828 4.1150957322284025 2.8781318635455237 +2.353613841478832 3.3094651120213663 3.2298087006079723 4.715264132303593 1.7664171339046166 +4.097625267652431 2.1157942969873154 4.1200220028087875 2.7479197329213676 2.410460253834865 +3.7900173592874764 3.125988836883012 4.8704019112123795 2.6028747808234414 2.3627554180694514 +4.658131917948259 4.85534599217247 3.849565468647292 1.8786587956747085 1.9807489756756083 +1.1801011782255237 4.470431513757678 4.732888037735945 3.526008221471858 3.5046872339523785 +3.5895859012662763 2.867248006326353 3.757744408365206 1.0486297809928713 2.8037607063922168 +3.777273212495988 4.307783356571728 1.358444879066829 1.2708936871869398 0.5376859903018228 +4.6617306152875955 3.365915142874477 2.967003551813139 4.031172880093813 1.6767808735188312 +3.7462059170521114 2.1284647434282165 2.2580813737681504 1.8284118841869197 1.6738286576334545 +1.3394689515537728 2.5012894293035925 4.702940012465195 4.328444402776553 1.2206857843830603 +2.203342695695601 4.3680195129444375 4.633676183762756 2.014728105126221 3.397751427301378 +3.436639299773928 4.645401605876013 1.1208675165897404 2.312078070979328 1.697082466335204 +4.46290651815767 3.7193383385376384 2.9740858839572044 2.105580745412611 1.143326206041745 +2.855692692160879 3.6481589241162244 4.614564261851686 2.02627978620379 2.7068836797449216 +3.66251554332827 4.9333452049636195 4.539179413379607 3.106332856516373 1.915217294305542 +3.001314463102068 3.8310739028279572 4.26156349361515 4.673893354679952 0.9265617314242695 +3.127436608553026 1.1074038244476214 2.797910177618258 1.3506538880690773 2.484971471969104 +3.0151819737668344 4.833634130523267 4.633154992395603 3.8299075053912484 1.9879574371175386 +3.7747384164988524 1.046596574367169 3.1302624264365835 1.411994745923744 3.2241590737252137 +2.0712456859341777 4.359218226521126 3.924113111801873 1.7685362678757954 3.143458267028561 +3.033358798238296 1.5856199253411307 3.5049681459338715 1.2100297612390531 2.7134277277353855 +3.2509081292948023 1.186286644485321 1.8441232343297398 4.840215666083759 3.6385755090626635 +1.064549607251013 3.490602347352551 1.8450874410358327 2.337068634848173 2.475434788642027 +2.264273223705157 1.9169387990093183 2.481668333941065 4.938023395658723 2.4807904772077687 +2.192461420486744 2.450743340552237 2.891231107034681 1.9830522082364248 0.9441919627147496 +3.5242672355034816 2.206732060989884 3.577740653141512 2.653020248872312 1.6096604493346942 +4.249826934208143 1.187928809098739 2.4671928365696063 2.2051885654732373 3.073087432309928 +1.0758827014473122 2.196410926632558 3.520100472636886 4.714971145363448 1.6380779676129045 +4.080174936429649 2.381224021710538 4.109260877073698 4.233729693386891 1.7035042403408662 +4.137059114206588 1.8792190847941264 1.9277486173901401 4.0218168414117565 3.079442047721358 +2.520391432946439 4.48455182202288 2.59692999071967 2.0335988440460553 2.043347257523675 +2.5163908972077444 1.9508590459864181 1.6237055398079567 2.0450898176904064 0.705259515634021 +3.843346791482152 2.524114903650934 1.0867124964517823 1.2480486591737745 1.3290606198637356 +3.878075277060122 4.689533262783495 4.6235672577832725 4.1019227652129135 0.9646642106055463 +4.944166177751123 4.756061502771982 2.267682437533127 4.049289506351627 1.7915097310405703 +4.363447331566405 2.2587416474563753 4.727549126705156 1.1856223307831657 4.120076630888713 +1.0902220556360338 4.495390665177124 1.2949326303895803 2.327929330677189 3.558406306509852 +1.7195859334578896 3.944928216578021 4.208265132611748 3.0234051676875078 2.521119079599889 +2.698480237474833 2.953219251885571 1.5770527306723392 4.844275962200202 3.277138936648601 +3.0264986491254056 2.8615757405682776 2.5578875001914647 3.5905829266605336 1.045781721783793 +4.675465002479955 2.8757195462518865 4.497296125272277 4.585387665328741 1.8019000601151822 +2.5854784260657233 2.874766685856715 3.720385070838037 3.671181926456966 0.29344274853859464 +1.3024301783662877 4.019149607019955 3.965847277341396 1.9289772253007271 3.3954976163921047 +2.5294544256239893 4.6522629415386465 2.374205091147385 4.710742062541367 3.1568530238087984 +4.02772765718804 2.60798762467867 4.661556835038416 4.658069025157854 1.4197443166737693 +2.3155333483298413 4.178629995704439 1.2343842539616388 3.006856487274732 2.571533965423045 +2.1732418445314527 2.345761470310445 3.1308801792883503 2.625208219499975 0.5342912615747517 +3.96470239720119 2.240611090122319 2.370696754553095 2.334337647981997 1.7244746503719848 +3.6444037115637946 3.394751356470768 4.7993272624548 3.506211713013728 1.3169943517759597 +3.543059792814789 2.6627898120250935 3.9334720446726905 3.6377864000094267 0.9286039196231193 +3.2080601904219543 4.802602892939074 4.281110320065263 1.6715879197823744 3.058132369229424 +1.1433882236485866 3.5049445064701166 4.243007536568374 4.868981880711799 2.443111122413312 +1.037187181137456 4.300121111997896 3.6306825440926955 2.3273050728709257 3.5136207350322857 +4.654926232141467 1.11494310439774 1.501659294651314 3.1128554405342235 3.8894001549362596 +3.562122780099351 4.57834788424057 2.7117743973743833 2.410833291823603 1.0598485794192285 +1.0200561486658932 3.5414802063490285 1.9454164592687575 2.9883751605014996 2.7286154238258598 +1.008318885469079 2.475400563753878 4.731462360439693 3.717556519588317 1.7833490137579568 +1.7821618119200737 4.906035181292815 4.806314506223677 3.792945795691233 3.284128647200409 +2.2608339543717038 2.3979308094772773 1.739419508837786 3.1663530415412873 1.4335043963774694 +2.221131889366389 1.3140573417225703 4.84566242000454 1.050116259415498 3.9024293577392863 +2.058707868250623 2.9787686063396466 4.1944970853912 3.951638266223491 0.9515735220257302 +1.5010295027066007 4.332627901586186 3.7445173976267125 4.727975834385047 2.9975223084021536 +3.9714602941710497 3.5127994980995356 1.7670060429680094 3.620299694550318 1.909205878067696 +4.668674751086866 3.8022895389981946 2.5289368079811503 3.439532757336119 1.256904259960801 +1.360586194489608 3.0480335652619504 1.3331595777718612 3.8692381809693575 3.046173552298466 +3.391298822953936 1.3088234760682291 1.6276347069134909 3.019895309415462 2.5050136038883895 +1.9701450641046123 2.4798449385089265 4.4801796460202645 2.3178701573019977 2.2215706801650104 +4.421636964600314 2.1781397847731876 2.5768913308896777 3.7187529314429573 2.5173651921623064 +4.3324360739801975 1.7250769205574654 1.6401411738332379 4.980339108663449 4.237362858993942 +4.797098082221371 2.5366759110789063 2.047181492459978 2.533742033112491 2.312195828971344 +1.6991501367338842 1.1455705813366412 2.9983537811401795 4.523359620142228 1.6223726862666765 +1.705043452706846 1.5125523124190585 4.553661039950239 2.5541273124015893 2.008777729539505 +3.502452798223853 1.7117769729734316 4.58040362864808 3.4599330196474622 2.1123385847847627 +3.7646172387572023 1.8164051248888744 2.74252284428668 3.844502919347712 2.238278473839843 +1.9307929858875137 2.578400604440983 4.766718408322339 4.034586439408956 0.977452222624452 +4.43859610151867 2.429038754541224 4.227890720229313 4.5404836261811 2.033724429622267 +3.941801585613218 3.506523145607311 2.944568133417465 2.55197728754551 0.5861696790149016 +2.2696301125108542 4.600601839531248 2.9480783339321306 2.5497709440491945 2.3647574862982874 +1.007854290948706 2.4870745545940784 4.74220899648503 4.6522059485523055 1.481955848538095 +1.9759506119981833 2.8472694114741115 2.5407310841445088 3.2328306863189225 1.1127435956455352 +1.2917062445289456 4.958761746256531 4.013126187944045 3.8091956820097956 3.6727215663593604 +2.6653735721150564 3.601253631257716 4.644338903229309 3.2509666029935986 1.678498689950345 +3.521785418772535 1.317139765687939 2.858545758254368 4.728663849029308 2.8909867051075335 +4.061077482665913 2.6846813252845387 2.623890298545745 1.8603136830739402 1.5740125888154732 +2.077256100185955 3.5390964255659507 1.6312695056468596 2.83436478706074 1.8932552371688918 +1.6453740979706906 2.242325606615851 4.690878567134456 4.920231472534622 0.6394950030213141 +3.5848785721054712 2.1104812045856396 1.875343871575284 4.865110640892267 3.3335495994902367 +2.2544787601684435 4.877774265925277 3.4417717079133956 2.815619112212978 2.696988391451912 +4.79047773563215 2.3599611809818137 1.354504201237111 3.11595485777466 3.0016860491806776 +1.2007875173729903 4.391070302082329 2.12489307263191 3.1956251894467442 3.36517035414131 +1.114547715813094 1.884623122021829 2.5491973287744627 2.0432725232386355 0.9213989581630819 +3.607708611815743 1.3659602462209395 3.994057222851764 4.183368334973455 2.2497276350304554 +3.543111034541034 1.6069331873077846 3.069033840410622 3.757538924436083 2.0549510716427504 +1.9238476362915446 1.5200417805589956 3.5961064782434535 2.7520810296928615 0.9356485060774288 +2.1285308731394275 3.256438179211717 3.9621317780414036 4.907590530457658 1.471756482442578 +3.6917883293416422 2.1994409061099214 4.7395318752032916 2.5752968523236413 2.628880762964581 +3.330856821988429 1.7070945501210395 4.901899524016291 3.598372930741713 2.0822549063248657 +2.097716760352185 4.880937627013894 1.1547108113740872 1.6177402191716879 2.8214738391674934 +4.074013093964812 2.9024746636541052 4.527375488667383 4.495204171423747 1.1719800712247905 +4.919741720935098 2.663631804355035 2.255019058453648 1.9020653959150011 2.283551673072091 +1.4295698348440173 2.897416736706845 2.1810803993863033 1.9742213471067274 1.4823512386807338 +1.0510522474104431 3.2309249553656936 2.612380336713357 2.472652919895627 2.1843463035651447 +1.0576643249253146 2.0220749728601577 4.784532502478312 4.041962568222246 1.2171680266549734 +4.1941976932209 1.4227515303005283 3.6378281623856568 3.1187355204268083 2.8196402261462135 +1.0413284842322157 1.734538126086672 1.1739313155637028 3.9655352060374076 2.8763852121834983 +1.0934369379067967 1.615632519477054 4.973789919265686 3.978734104653374 1.1237545548763175 +3.6543753118638587 3.7870110594591755 1.8469703141137503 2.2713413566208955 0.44461559043601906 +4.344837924769381 1.876459955685716 1.9369845394249245 1.387804568595047 2.5287325755441805 +4.0159900032482705 3.574249852241611 1.5401361003699634 2.7851236962995496 1.321033108983237 +3.5962116789125425 1.2220590070092943 4.24879011654612 3.976774450137945 2.389684797682911 +2.097003300446647 3.761787749195277 4.789721152959329 1.3519520267368659 3.819654935462579 +1.890536083736905 2.4151011070443444 2.9266920104090945 2.5958482228841113 0.62018229208952 +4.016942869050528 3.9999463371241855 3.3043064697833753 3.7012983224511227 0.3973555249170365 +3.030154069860487 3.7348887103338906 1.2638584715565484 1.3513680649448574 0.71014705689608 +2.362660727682958 3.4348255169268724 3.6448720854171026 4.491411925964526 1.3660772441295201 +1.9020094651153734 2.202847160244787 3.2706855706158784 4.723022702075684 1.4831677121039533 +3.4226727125301566 3.448830809895854 3.581202199132225 3.473693515496425 0.11064521279701107 +4.218659913604927 2.996153598803658 4.693355170353902 2.5224830255814723 2.4914268118244673 +3.995343371732313 3.376777560026522 4.601377358056025 1.792233842803462 2.876440674287716 +2.3991114736884303 2.7848503770068858 4.215875955862356 4.784062029001895 0.6867531690811874 +4.335680578607546 3.7542674220346672 2.299931481301824 2.0809380910594286 0.6212884705238757 +3.172688506971045 3.5096105306078083 2.398846046266959 4.892723963477475 2.5165340283734996 +2.198468996875773 3.4776907439181897 3.6303531359231997 3.112355015707173 1.380119679829829 +1.5510122942048148 2.69757842158567 2.5101269859953246 1.9455366537392726 1.2780360432061886 +1.0448192024905918 3.2901181762760783 3.083255551774866 2.1820380153974672 2.419413261424411 +1.7009846601012955 2.476078448929526 4.885580066075725 2.653158793534816 2.363149406951087 +1.7793661499793436 1.59309546340771 1.4684153919856886 2.431494269193086 0.9809269556898356 +4.135582151590516 3.6331501934150596 3.069292134051095 3.6606172384531823 0.7759531246745273 +4.103773415881015 3.966789734990432 1.5570753433005873 1.1498570894311606 0.4296408210526532 +2.820669493839399 3.150976651600619 4.725779172932615 1.9949888328943648 2.750694221412936 +3.490275680233004 2.9181366240497306 1.039432485533065 4.982451522526002 3.9843120140996735 +3.26185738799369 1.2845542918082686 1.776135556512516 3.4466125239792893 2.5884784783771027 +1.0349453829062627 2.5260883558825395 3.7809730341223755 1.2862960301144901 2.906358670257731 +4.520876944059638 1.8107616668533666 2.5027887821863297 4.44685080798161 3.335281393808635 +3.8023335945210235 3.0181314782946287 2.4732379756248624 2.069430277351086 0.8820621385589119 +3.072041370015831 2.9911275799652834 2.6744410868869832 2.311788761285051 0.3715693080501052 +1.0183873204558798 4.393103000697273 2.4428231392548643 4.999443985731398 4.233794524431426 +3.047607681760951 3.6700739284429242 2.564660604236289 4.026034506607086 1.5884199415736369 +2.066037354184473 4.38210114794998 2.92605233910305 3.995829962246454 2.5511910276907575 +1.8569407351957348 2.7824675340041862 3.673748579201054 4.694575600077095 1.3779287579056012 +2.6660749398440533 3.8940609462156215 3.2138542977913898 4.703091871022379 1.9302274947185163 +3.348024107312753 4.596484654505487 1.7940524221930199 3.9414511214664953 2.4839434195525056 +1.5573904156623342 4.607574251333176 2.165094472380321 4.8585810468769095 4.069212621427032 +3.567167350750396 3.9090221288571017 2.1430563782753307 3.6712954983424404 1.566007502350445 +4.307965213140732 4.00942587733333 3.3377663208097506 3.8884083106256133 0.6263643795529066 +3.7990281914749966 3.004450510904681 1.155790379273797 4.137674934348155 3.0859340871527867 +1.390025827155505 1.429192526312287 3.7820867398989355 1.1367722761033372 2.6456044002626378 +3.406072101514423 2.0613500738893835 4.349171195691136 1.5254011629903594 3.127611633364818 +4.054889338985404 3.115568702449098 3.036634381780143 1.6229250826750103 1.6973206063084536 +3.720280092819913 3.466826990911877 4.078452151922612 1.4866244942437103 2.604190676962059 +2.1217244947415423 3.436272425708895 2.9803977674602673 4.655898627805607 2.129633629483842 +2.7783099130381967 4.200937267315677 4.389173578239673 4.849482004656952 1.4952432700297618 +4.4888905379147435 1.1398746888622262 3.2574609286384226 4.827175212651227 3.6986362474077907 +1.8865902958820655 4.8100138892922 3.325671093267907 1.3533341670386982 3.5265448327044293 +4.874605866462765 1.6522979254224541 3.028066605304824 3.715481777050454 3.294815334011532 +1.1397026715974752 2.5138785750643917 1.9769465089015763 3.2430654258481204 1.8685332551279374 +3.5358615494714694 1.3866268007564253 2.0489892660806968 1.7701564162620858 2.167246585698588 +4.126794329705035 2.3749474803266573 2.4828636735348195 2.186692485130802 1.7767061536780913 +1.3121814273509247 3.301168188495693 3.161774184856096 3.020030869454926 1.9940309685333553 +4.715978541564054 4.4607551715656 4.314519974016459 3.217262230159686 1.1265493886408284 +4.833677776515179 1.8404033295787254 3.8258474783638805 2.7046110695415035 3.1963827992203364 +1.9352727578577218 3.926336039142459 4.538519367934909 2.169161553472665 3.0948650120859305 +2.621968040804823 2.1042027806714945 3.234546956827909 3.208937674907656 0.5183982059396081 +2.6832174454307074 1.9792484615352839 3.9716496591755046 4.715319448663356 1.0240200613677743 +4.621932532426708 3.237826231679215 2.5019937778659442 3.436305417554409 1.669936672998787 +1.8339407253013236 1.2339227499411827 1.5931508856247696 4.687208261159789 3.1516999561915684 +1.9831271412105163 3.7353455435283234 3.494812443476182 4.826721161035749 2.2009657337933137 +4.322630993310731 3.5941867858394265 4.199588942346412 3.9724041775440284 0.7630490683808026 +2.1046825876737807 3.545245162066557 2.321843625298007 3.269960897416221 1.7245715098046897 +3.23603610540845 2.429603995564514 1.5895222490337124 3.9911791961890564 2.5334341987916065 +2.927072779808697 3.0641112378277016 1.035142712533041 3.3408536504107733 2.3097797444832784 +4.334666750603159 2.7200091245184166 4.1387086485065225 3.2902061536240588 1.8240273389659982 +1.394935854758121 2.0508215865818147 1.154513202888554 1.0705368269676039 0.6612398391829692 +3.0057080828796514 2.840132260268366 3.0872483552918424 2.702498275506615 0.4188651058851078 +1.5874852290643267 1.1994817258020154 3.059715841260049 3.181731152961948 0.4067363456018382 +4.291401962145862 4.146715041407497 3.666933000801912 1.9556903142848512 1.7173484903160678 +3.1873959040261064 3.166753895875765 2.0403047957844067 4.916202062523956 2.875971345709218 +3.448252777587067 2.1255383755938655 2.3487248725626424 3.2606758901141566 1.606620069479239 +2.0937696304577273 3.1941955347299356 3.868816145121843 4.101187823429165 1.1246927436738752 +1.3949969143414602 4.615769364605802 2.888946048885995 3.681942821558187 3.3169593090434923 +1.3651557076806586 4.530643246998937 2.7392325821644166 1.653012593215509 3.3466677794444215 +4.747242984831017 3.505176892920172 2.693042560290355 2.302651225855082 1.3019729531279949 +3.851872228894729 1.2376732404894124 2.578989395376013 4.734621758113512 3.3883310396507356 +3.232401634663997 2.1144631161163723 4.5899654489895 2.4466085542627507 2.4173881172507556 +2.7722301666800635 2.2191502395392164 3.291421548237234 4.956215539375435 1.754262363141838 +2.543161899011001 1.228725958305795 1.4316464286331345 1.0093812072937234 1.3805976095048123 +3.4601096109325886 3.9434691590197413 3.984189902223282 1.9275803828005929 2.112647431093755 +2.8115523793726447 2.325185139635019 3.6015645205967544 1.8569974775628233 1.811095596463685 +4.724226704814486 3.7389165181536277 2.914875812075284 4.116164014570805 1.5536825639082703 +2.786538441456655 2.439075019555646 2.5548632397369984 2.709397305896807 0.38027832854771354 +1.666904490120265 3.3179077615125596 1.2614796683989402 3.9957597144832175 3.1940725058399497 +3.6116812230567463 4.2094559928256725 1.1583842075364958 3.4841371716957488 2.40134577386678 +1.5891477460711538 4.114740393017676 4.611694676873812 2.578117264733705 3.2425384052431503 +3.5408514595347618 1.705276110837187 4.4162951171508436 2.3648922534940993 2.7527423725741778 +1.0425911903987828 4.027875100488572 1.086420728636619 3.295451249699733 3.7137226426901284 +3.0765826338976554 2.0807701443543203 3.1090806717234383 4.256694116719464 1.5194272386218897 +4.49121540694847 1.977092951277323 4.295584090194913 3.3431452833721877 2.688484964222752 +3.4358378242190666 2.312420415121241 4.070943886534129 2.5131449036962996 1.9206260297087114 +2.9616466133021486 4.031681298647003 3.841915103590703 4.013473403711792 1.083700363652933 +4.837173593766897 4.365290646473639 1.9705207796546405 3.9697545046266787 2.0541686890349933 +4.324343601646682 3.9001278016712457 1.3370664407021557 3.06811093155895 1.7822665553374604 +2.4252021382725357 2.2557401477251977 4.1775588537050785 3.2620497543593663 0.93106083433096 +4.738442001838001 1.833048925282157 4.135190256709853 1.9744869022046538 3.6207662055797876 +2.329280051444202 2.671608094960063 2.4321345374343637 1.4836757716664453 1.0083464284358825 +1.3713984746033496 4.638264594062331 1.9600742148299872 4.828552958326725 4.347480252325663 +4.7775728648520985 4.120931929072368 3.9860482628210043 2.3375210822706856 1.7744912464013067 +3.7723374058577317 3.11549625249657 1.1295202082947586 2.0173841276517632 1.1044195941963375 +3.50647499084376 1.7362402544304167 4.41442235909477 2.8570697006083776 2.3577697777558884 +3.893593790535532 2.8159449923042326 1.800747424536088 2.2152628208866156 1.1546211266649327 +2.0202657410097933 3.8528955643533385 3.0905795053630953 3.3708950302874796 1.8539441369474503 +3.85201336812211 4.565159567599766 3.2415994115252245 1.8282266558586007 1.5830982434107146 +2.602494592517691 2.8096482323446312 3.002758812594577 4.081623198379663 1.0985722522478807 +3.376563915312117 1.1302400586476806 1.1154375523952686 3.015997298230386 2.9424646500015315 +4.9412441406435335 1.853804226583076 3.4753427723368495 1.1949861181080705 3.838269361759166 +2.7507527907225735 3.125038212760486 3.3651293572748133 2.376328345354017 1.0572686594833356 +3.418729736860616 4.651613702675393 2.6525331163444137 3.8839549819344152 1.7425276710044897 +4.756892183594486 2.067185950513157 3.640599319528762 1.0191331368459577 3.755876005305035 +2.027927195767827 1.0938402149399948 1.214139448324456 1.9417063503430874 1.1840067924910918 +3.5554420342244493 4.919974523870292 3.361956039384343 2.403244182665916 1.6676562414093545 +4.0067762991890685 1.3528809838509503 4.454453192988266 2.048584363086616 3.5820894979698576 +4.127073431637178 4.733373608863195 3.70441918646329 2.1626033243754974 1.6567426044771778 +2.563745623749841 4.786571797643572 4.113580322591481 4.553424175056917 2.2659255976087738 +3.755258764410323 3.734870864441596 2.50765377140345 3.870327437825157 1.362826176599317 +4.843473775638427 3.639899216226644 2.7110273434217884 2.109846206996083 1.3453662991384057 +4.023777324116037 3.859490728005066 1.3097316550661842 1.5472632490941196 0.2888102211196502 +1.9323681248379558 2.0618829561667518 3.4059055833590057 4.084751440638442 0.691090290395965 +4.681985793142685 2.4717305467522652 1.579390995830324 2.728741274473166 2.491231486075261 +3.1301556633874976 1.3005050572711947 1.7447531354036783 2.1210996265872666 1.8679555727821668 +1.7753285326565762 4.5339170613423 3.151535313061007 2.9138266825476715 2.768811308778009 +3.267656409425419 3.943244655551008 3.7314178927140738 4.465389745679509 0.9975641128511814 +4.1450694201803024 1.5363040637463041 4.125512884186731 2.8540440307277786 2.902118145466588 +1.1947330473608382 2.5867215593731445 2.690525236359304 3.0906077374979546 1.4483432001054146 +3.8088632245197727 1.923216634748901 1.4223849401673982 2.8200799563166936 2.347171578662944 +3.7065773188086917 1.44332050257775 2.2928777208563074 3.128100041746325 2.412452640266483 +3.572781650578839 3.5603737288314923 2.1561261668241642 2.8547359314536305 0.6987199437240406 +3.120734685904528 1.4988567559544865 3.8735710338225595 1.8526233067222635 2.5912772401522157 +2.812504715812683 3.2772341433655217 1.5470473595972951 4.745121304431835 3.2316637197368085 +4.087246820785451 1.3393410052831771 2.9666990457540092 2.877759379352158 2.7493447646904685 +4.017656286390452 1.5955185795639197 2.6924648449210618 4.639355079549997 3.107592743028662 +2.4919109231242085 4.786545528937463 3.5989935688161623 1.4778692384019974 3.1248226188490587 +1.1465418541792012 1.1700682720811906 2.2113485671687076 1.467207549771373 0.7445128246796285 +2.1120685349635853 2.961389483124851 1.298451862235829 1.766995708964505 0.9699893861753623 +3.368570437447007 3.319707631966518 4.103037546062374 3.7325847895429547 0.373661368851879 +4.150963504692061 3.3229827432776733 3.9929111122157055 3.5359448559042037 0.9457115314300123 +2.7635683834720925 4.464001293373971 2.341239779243937 1.103112553629686 2.1034331717182297 +4.387242186500736 2.003378941133854 1.0467180700494945 2.5993799636247865 2.844918791173473 +3.9510214654621323 1.6839221350423959 3.362281884864829 3.558247671943641 2.2755531115961753 +4.700273675019537 2.430436379388733 4.140394035451983 1.092458867320068 3.8002723767872073 +4.140848417131289 3.896726724430788 3.1807396671160157 3.5331492762915677 0.42870494922058344 +1.611069526146982 1.5954392870138125 1.3178711759722734 2.5167804106345644 1.1990111164346562 +4.9945346170450176 3.0258762768660175 3.8382574465246924 3.521783322452671 1.9939336828399004 +2.293848058900734 1.54075997469953 3.380643238156214 2.5789796524886874 1.0999118906308611 +1.044275452233002 1.4894119066067928 4.739304440991839 2.5811328626543815 2.2035995608449515 +3.2588529359983283 1.9387546128562225 2.9291608138837533 1.0199891522969686 2.32111956093792 +3.0878867529000766 1.6752221483980798 4.5392646250786886 3.5304392701619314 1.735900308639786 +3.9019934532102303 3.2596410367008444 1.2409207627161898 1.0366125087882847 0.6740611913012919 +1.139036727507909 1.758477026049993 1.5131064884808176 1.7568883846331032 0.6656845321543154 +4.345758759985138 3.6788760306163124 2.233866841056906 3.3697941151178123 1.3172180330855847 +2.4831485317803725 1.0181767672426507 2.6088510161804317 2.234740956668333 1.5119856505671316 +4.133314833473042 4.129928914406343 3.932232596276537 2.8387930745775214 1.0934447640650615 +1.3895315732677407 4.389813492244246 1.0316917111663404 4.952834066168099 4.937311916572223 +1.7979831084580127 1.1645986397555288 4.255629019597329 2.742440683646017 1.6404008123786786 +4.504841203749383 1.680408089224422 1.3899098208950993 4.511744972935709 4.209902271424075 +4.065410342378289 3.5431558223360264 4.60920735597421 3.788101371548321 0.9731211750674126 +2.4527994663213684 3.6990739042357093 3.851753013416459 4.989289003289634 1.6873612840335792 +4.435768794754779 1.6049550880744268 4.724539507801007 4.818301142318499 2.832366057916375 +2.5364752313385854 4.071026062777667 3.4908568991334112 2.153401369658772 2.035591694714995 +1.3968659771370726 2.390634691321502 4.796792008068524 4.4925981934002195 1.0392834715197914 +4.939752699687739 2.3358746355481483 4.915687833500874 2.118464173900562 3.821601912122076 +2.0931099042380765 1.8899308170259528 4.554926461746561 1.775025680896937 2.787315929859531 +4.173440585315122 2.817692645881228 1.2882323809429548 3.611146043853832 2.689605986128317 +4.265384265596465 1.16868700642797 4.371015903824118 2.583631643903743 3.5755106499006226 +2.832813546026677 1.092362750679452 4.123707596712281 3.1682063926293456 1.9854852107302958 +4.270979043766488 3.6248157767547404 4.643672299737444 3.609851616569581 1.2191440327463208 +4.03440068718916 4.727397475889777 1.029780268590911 1.784028099145878 1.0242725902054797 +2.702075000101356 4.3475338132384245 1.2564456971923015 2.074921320226308 1.8377804687261627 +1.6879523542051915 1.7799481486478386 4.2527292641421335 2.4400622920118487 1.8149999388559517 +4.121291569227394 4.660740106283188 2.02039336667333 4.401127165944658 2.441085444453866 +2.053399759857683 4.557452351371003 2.655818427467404 1.9288421279609946 2.6074458615872746 +2.8345040604196936 4.995161301274864 1.1903277561755168 3.074913415023331 2.867072168257145 +4.147125225138529 2.485524140000671 3.334586583774597 4.111263192950543 1.8341604949873807 +4.026039652163361 4.662084013880159 3.159969825743362 1.1705598503208963 2.0886130518557393 +2.4490689126245537 2.039862649037117 2.9220590669101885 3.4059769638874107 0.6337399286568967 +3.739840479750965 2.789842373144316 4.414284969621326 1.6292601170385375 2.9425940651166953 +2.283097347964567 2.5927030096855357 2.578797177701739 3.141743008559465 0.6424668662660936 +2.090255678989572 3.156846155316068 3.1533133273564946 3.4257696990533986 1.100839551737047 +1.703361244595952 4.935347346947017 4.923137460648077 3.856485528762688 3.403451264464538 +1.964759232407773 2.3917964815247132 2.4959991073817362 4.53788127599756 2.0860593478241753 +2.4736584023866195 1.0797227830108445 1.6869499531132681 2.0524928897488905 1.4410684055549619 +1.6425176747745942 1.1744922127515864 2.163342205605094 4.3893796640077625 2.2747067062181143 +2.959949628909779 3.6879003116264073 1.6357771267660457 1.1441189619633594 0.8784303885253236 +4.078868995241 2.843672116377735 4.598285923028007 1.6770840585303617 3.171613416338452 +2.254494116336684 2.4592636292614256 4.371328582449996 1.0524780571510588 3.3251615543760376 +3.811800959831811 3.0629265863964967 3.7397370516388153 3.546389843615696 0.7734312962626159 +3.572764145594177 3.7295814842084054 3.1480704059569553 3.864081300670701 0.7329824547960394 +1.8878223662513878 4.084509841785167 2.6098093505665423 2.523800439512251 2.1983706234272034 +1.3673831748529448 2.947864867413571 4.430951445264448 4.595180795798347 1.5889913971120446 +1.26026890539358 1.5930523988618157 4.762292978157886 1.960212323421569 2.821772643068968 +4.495339020969482 4.713194352472987 1.2067132158005718 2.5044329291654464 1.3158789457698281 +3.5158646221842687 4.371730431954892 4.785254721614212 2.396717847280681 2.5372454915489198 +3.905110006405994 1.986907100920285 1.3053438940965512 2.8458574382105244 2.4602203897643826 +1.503648382186459 3.695170934609188 3.033807479179815 4.491479177786208 2.6320292321126453 +2.494321311746125 3.637595681402466 2.5695260720686623 3.804871830467595 1.6831979762069993 +3.86154862719204 1.289639967259447 2.6523574339562206 1.6264980379068539 2.7689531696110423 +4.997505391284362 4.161546269155135 1.2497966945507644 3.6482210268906834 2.539934434553627 +3.264534561415833 4.5870522833325555 2.8717264638074513 4.0962241118124325 1.8023450321049872 +3.5525134942467136 4.876954128200603 2.0838673738582685 2.059008091570803 1.3246739133779404 +2.360428561331839 2.535590320835444 3.4475628178731825 1.640392817126767 1.8156390207280186 +3.474548679450145 1.6834961976790472 3.9946081306634014 1.6781894434584204 2.9280820560378524 +3.3661777216861664 2.4568760412591275 1.9829464856723034 3.8785781668477286 2.1024388259122797 +3.7964010892588487 1.6839598602649057 4.758221266065906 2.4811297317451335 3.1060511588878845 +3.6814532087743723 2.149973370180838 1.3564197483539724 2.207326240696589 1.7519909687921604 +1.3183514382838393 4.294693362839964 4.33356334532332 2.3369173282212725 3.5840210057252633 +4.832918152504098 4.518124965843982 3.1971275308498917 1.9514931297518614 1.2847956302721764 +1.9374872536802754 4.823549849573243 1.0128257322828476 2.593539459365951 3.290594656654236 +1.7449055612203836 2.4469352959341433 3.3919884184556994 3.7857586551172235 0.8049228209603355 +1.9521197709034381 2.0223606062082444 3.775096742655804 2.5928612817528327 1.1843202522800909 +3.092291522497681 4.24214184242817 1.0355449954382565 2.3662290654246414 1.7586574005074946 +1.1285291601244798 3.22246840450408 1.921816223021982 2.661937318615663 2.220891891852416 +4.753936182426736 2.295354394388237 2.1556453867166705 3.2432862619087532 2.6884172075522774 +2.200360025100603 1.731769728593945 3.8720295894418038 2.4507400461740882 1.496542960219435 +2.4079948165841834 3.8618269511023353 4.592489202771288 1.9549816157288156 3.011656379314249 +4.55436301727313 4.7207179937136505 2.4858836737693797 3.7786947420063193 1.303470151688355 +3.3080276915785203 4.554693384103924 2.8512935928863445 3.388986388227504 1.35767775671609 +4.592717650748334 4.637121889569492 2.6930022692756026 1.4106753981658255 1.2830954527218454 +1.9404582379563733 2.1381802867965387 1.2426725171056878 1.072331878127701 0.26097881501183506 +2.7053061454811393 3.8870441225081453 3.4049219335499883 2.969090569907438 1.259545006691863 +3.4289915971261347 3.4886289631493885 4.4949595873409995 4.1905883494834715 0.31015877524441493 +4.096841170419051 1.7912855321090175 2.5203741194913483 1.1769170156625242 2.6684197179550515 +3.0170214409588674 3.0671998965069025 4.395556263928253 3.7159526590821756 0.681453547295022 +3.38071913022379 3.643578586955886 3.654695819210506 3.223824621587455 0.5047227782997463 +2.7014724583578524 3.7161439872381905 4.115841723655019 4.013386622977997 1.019831044426037 +3.200364136019051 4.512808822377643 2.825190815810813 3.92722399432028 1.7137643307312067 +3.7701940902303592 4.44368038884093 4.005691717364252 4.634263529508554 0.9212417258453605 +4.3200986970734245 2.118254876689547 3.6312884442414517 1.8127662719181004 2.8557204170916854 +3.162483542783965 3.0741426730168935 1.7168686557309853 2.66916759024955 0.9563876671917074 +3.5790263599316727 1.384202160608576 2.118912032540987 3.649228320010164 2.6756534165746726 +3.6022836806170115 1.5169049725674206 1.0710857512453211 2.6017172903749763 2.5868199134390855 +2.839185482858461 1.6866556028376456 4.372993710745276 3.1072846260818245 1.7118249359500484 +2.1783539258559372 1.3922057924193254 4.4065342079927206 4.545842376785398 0.7983956748368806 +3.4829686357321004 3.4760257433626984 4.898294158777598 2.7457944712028883 2.1525108847027177 +1.4415984641066646 3.7942752189841453 3.3091292170729814 1.4636403302339485 2.9901366430962995 +1.5508270297477176 1.8694250142674451 2.252385144164366 3.2591065868903084 1.0559321659009329 +3.2894658932392025 1.7670490959804894 1.5135029781670544 1.5528089914176908 1.522924117365385 +1.9390749682568011 4.4856778281770096 1.7089152160204333 1.729676251135655 2.546687485093693 +2.5053206839206705 3.7077835218859896 4.638729020728624 3.28825941337787 1.808227042455042 +1.6474589328565936 4.452522617182819 2.8755383665934446 1.397798939889796 3.1705040744904025 +4.471091814915392 4.91676346994302 3.869869154984673 3.3518496705181082 0.6833501374713188 +3.3228416759668433 3.6286539226408108 1.0961081229145133 3.90466109086776 2.825153253190837 +4.697187544685887 4.207559133858513 1.135811483732812 4.452797348432794 3.3529287507056913 +1.3031215638076152 1.6990339375221328 2.7223708390192773 2.1309285138657255 0.7117237045675123 +4.7401636251122214 4.274072519010777 3.3732811271780965 2.420504862077221 1.060671264118361 +2.2382902689464506 1.1393682061566555 1.9769744762054433 4.735523941016972 2.969381223402975 +2.8591007059438858 2.412861784981089 2.1242288381861836 2.839444927996987 0.8430084398784491 +3.3800629172008474 3.0108815551468284 4.128851460276765 1.1161133473258245 3.0352735980987373 +2.564931942457279 2.1728030134518126 4.75452057515691 2.056008767431717 2.726853694901005 +2.758497009631246 1.215660842976014 4.830717330654963 4.031807186195749 1.7374121146288963 +3.4668000500593052 1.4239384395328223 2.7669445780241673 3.1918599300307795 2.0865849170675417 +2.338301188278595 1.00560929555507 4.268878417487764 4.577560598838723 1.3679738191992554 +4.0209778968696686 3.2200729822530545 1.9878172501266875 3.5234281488338377 1.7319207587199905 +1.9759072830136222 3.5408701865168797 1.8731752620880515 1.8029888994395566 1.566535992195255 +1.6116609828249175 2.5327609844002543 2.5450775855684564 2.8624109433367075 0.9742308108731516 +4.441133014768615 3.4799859020366775 3.1860327362352567 4.203959287166917 1.3999922269086236 +3.4418874189074056 1.205966311278647 3.128412453903706 4.701277550752719 2.7337241653878817 +2.0182359242568126 1.0144858496928308 1.6693553639863463 4.622529844019848 3.119095016460438 +3.2767525237668225 3.295077089658588 3.933748460596839 4.266872554872656 0.33362771452954093 +4.670311704188026 1.4460486066434437 3.487520112017189 3.2967934337309948 3.2298992535368454 +3.0362202350463647 3.7839279085514983 4.584056365529888 2.374415885957679 2.3327189744979053 +4.978816706100129 1.1234189949233095 1.559348160474043 3.992712216004102 4.559095539478544 +4.277845770260155 1.354555485209322 1.284825464386532 2.0603482114245426 3.024410954524197 +2.442092509337734 4.603355869590072 3.417836157850172 3.2076152515833414 2.1714631338802124 +4.001588569138592 2.4586701728426132 2.849879547001328 2.472620714260634 1.5883706760417817 +3.8084754737467112 4.94169164658225 4.814383696803012 3.90687069913319 1.451812224537213 +2.0831345424171848 4.6478820440095605 1.3094350010640161 3.185875939813618 3.177886143891851 +3.8816230643959466 4.247823122993123 1.4215629998422545 3.3363426815854913 1.9494829346607028 +2.886152997555706 4.62903921455014 1.3363738983374933 2.3279410131879192 2.0052076472629876 +2.6343107729876065 4.026895151096829 1.9124922419458774 1.3540578521025717 1.5003800244982985 +3.855596357655466 4.194703976114168 3.1131935684994976 1.560393981753251 1.5893962795653092 +3.1689689745057987 2.7442862604903873 1.42527545105888 4.00387009788653 2.613332309567941 +1.7319188554429545 3.8063680049579482 3.1632338520993843 4.626960950880363 2.5388651586150184 +3.0949732122058133 3.3773146956309845 2.560346408804141 3.141903538706613 0.646471506412407 +3.600125925826843 1.355733390203024 2.9099323012666214 3.6554953229279565 2.36498669620628 +3.7220947949405696 2.9740031818389694 4.902906029157601 3.669785315373853 1.4422994683336383 +1.4968387000762378 1.1592907677085638 4.89779964920902 2.5798211543221212 2.3424267137743766 +3.934083173959642 2.153834246466929 4.576483647239659 3.1135005230994186 2.3042582028405785 +4.8909507060911555 4.772473227751668 2.1085501503399446 2.641143240357136 0.5456118697460163 +2.329920682668905 3.75058423135004 2.0447880852174096 1.871840188112985 1.4311519463928761 +3.736141257461976 4.8773047107734255 2.861645776411438 4.907576139107412 2.342666232346169 +2.2513876198796567 1.3164451932354488 3.622768098036168 1.1725756374353602 2.6225103307946 +1.9887770205024733 2.5838666873351706 2.7562704382140413 2.6636374322791907 0.6022562455961554 +1.9553229855510645 2.0980110235516696 1.0308650476511203 2.4273315390660066 1.4037373464551923 +4.609538707897004 3.0734646988890786 2.516594948201536 2.1699446628021173 1.5747030772552577 +3.3042499842228943 2.8482094545544254 4.701761060716894 4.4267330859368625 0.5325536138379903 +3.2317621035416697 1.012497960013933 3.927823568617531 2.3958523613255194 2.6966774220732526 +1.7757982200034945 3.898247106090391 3.251659794708852 3.3008314170323882 2.123018399000215 +2.0029101539742213 4.235882029839734 2.1829679623841067 4.838457484726252 3.469551556278601 +1.6607158979590526 3.9071114787634906 2.030772991755148 2.1746241095481387 2.2509967235755814 +2.832377004079077 1.8239852189431809 2.0770922150963465 3.579104443195568 1.8091143484282985 +3.2939624647416514 1.253213155503405 1.1183938453552678 4.1612585389525325 3.663834505910052 +2.778182573652387 2.313966655016406 4.1054936798032 4.802672252885115 0.8375884322742185 +4.1161010198164725 4.480353171033052 4.14026067181948 2.602049172487957 1.58075116521913 +4.4331864484551335 2.300573583161544 4.981777253290106 2.8343869753787536 3.0264372848093073 +4.570121036294557 3.680411610747605 4.460138556795378 1.4515459666102735 3.137389398149966 +1.3943311896087383 3.2564879344003814 4.8285017097529135 2.5735430237878147 2.924460021539439 +3.8786917795735545 1.848339625445068 1.9371039255043345 2.4199541027204043 2.086977279083741 +1.5989964507575363 3.2788962317200943 2.103904002775466 2.954796431145595 1.8831041391106509 +2.8523582400962217 3.405698676447209 4.072253698829545 4.5502574869092935 0.7312135528829385 +2.737180698229634 2.4151963093036404 2.643268156988022 2.164042971659878 0.5773480102718286 +2.6414949780452637 1.0081239657733057 4.087002364837778 4.570793859709775 1.7035125694402147 +3.06669825998751 1.0656626607530626 4.721647840413619 3.1412132013694114 2.5498857067904743 +3.564285589032596 3.8832388215189804 1.5918744382073808 2.1543072676734627 0.6465770272556367 +1.2160335161277045 1.0450716454541142 1.3578008746132149 2.127663519047024 0.7886167970052573 +1.4191604673296125 1.6243184122564558 3.510973107587623 4.402852182092621 0.9151710582762642 +3.1080238065399635 1.7173969649010674 4.498665857477324 2.9557547132821056 2.07711766916763 +2.180467755723254 2.203610035894356 1.0989674657281916 4.444443758280741 3.3455563347764254 +3.956621176954083 3.484812969171929 4.825552387018789 1.548175683966797 3.311163094539221 +2.4944131604046045 2.3880589921997117 1.1180811863187627 2.257063910054881 1.1439374345058828 +3.1177445146951968 3.7325450243586467 1.3422334248374388 3.4196663256090636 2.166496509088082 +1.5813647419849293 2.25899629462308 4.159005376995678 3.206684098400448 1.1688029512266147 +2.4286754576112024 3.274714421380469 1.8334040226816057 4.223404231509942 2.5353269860937595 +1.3025746507784923 2.252342633707764 3.7115064040986345 2.6651053862761653 1.4131575678237147 +1.2636420446125562 3.3355591759976115 1.3225887300649641 1.1419093774413933 2.0797801873735 +1.4595410741077632 2.172323074814738 2.332091624446061 3.7241688530390307 1.5639492290029495 +3.208601209533472 3.565383338827464 3.503695378588894 4.46889522694367 1.0290307259978377 +3.38548651831087 3.375939149875844 3.1393842727507386 4.339730478644411 1.2003841744405694 +2.1970619187140974 4.44532397850641 2.599425676886005 4.436849000323618 2.90358515614991 +3.0750900101603627 4.430323830887663 3.8565796097015146 2.015981734512174 2.2857076031274497 +1.0462224736675916 2.696837045558254 4.751146689027452 3.7685907540350256 1.9209228590254832 +3.803314395733325 2.78898411072255 2.0167505143995856 3.4979302911787875 1.795204572807714 +1.2852548424865744 2.835148186988719 2.7541455298768174 4.4312610256055365 2.283612437640291 +3.3897438636721082 2.6309583895461692 1.7590182166114712 3.6946477334351533 2.079042332936876 +2.8402537391492304 2.6587581916072995 3.3911477764992677 3.285423629443234 0.2100433980116278 +2.034517190416756 3.710894882289678 1.370055032250057 4.4347924032947645 3.4932588394344912 +3.2457830884242487 2.433008135117276 1.6278218286627064 3.8067995057023976 2.325628268180545 +1.1056024121572396 4.88002153079456 2.1384618954499266 1.6357766671850302 3.8077463310796658 +4.359828833021659 4.331709591629997 4.610431654669494 1.5726409947839595 3.0379207996628605 +1.7248502510886015 4.874157746254621 3.9994165429065176 1.1214333832206487 4.266254184474283 +1.8011019444604908 1.8226068685201708 4.013303077778333 4.464145841702027 0.45135535838313573 +2.399726832876683 1.1311349316346635 3.141024278786406 4.9530403586371055 2.2119511037846964 +2.298029395290825 2.0599730921211536 4.531659334061672 1.244178387872028 3.2960888603068286 +3.6380315945141333 2.3784370317039336 1.2588324480896498 1.275046200116062 1.259698911810196 +2.2257155400070934 4.406957547188576 2.738456590810195 2.4387183843124265 2.201740149592499 +2.6701562751257115 3.8665302906844494 4.228230276476932 4.243940593325453 1.1964771619883183 +4.947306348966625 4.950186208380652 4.7620294302178845 2.0217240272758077 2.7403069162018663 +4.508048475905452 3.1302287979075447 4.2912342209916705 4.172639294422103 1.3829142495781506 +2.333355153627945 4.081342101438405 4.822005085335091 1.0290545484938245 4.176353929522757 +1.8646546871263476 3.610512933417203 3.091827699275917 4.303855673117125 2.12533122724798 +1.7891503486535605 2.7662752054740216 2.622892711775772 1.8728504192878153 1.2318021051845123 +3.56107980694482 4.526011251584553 1.0183346389635175 1.2898036570535787 1.002391201396592 +2.357666594561252 1.039535565996618 1.847736956353494 1.8957596801278225 1.3190055308692095 +1.9548093491174994 2.6776864907816313 2.970413483774718 3.6525238657580084 0.9938943279594145 +4.3902217172818725 2.009368584894433 4.553210798481256 4.446914857741495 2.383224803709636 +4.331651905447755 3.7201131801369556 2.5762594425986065 1.5013132925083692 1.2367250454925622 +4.146299112056961 3.0524984297713376 1.2991601563407231 2.3711862673691257 1.5315482086095678 +1.0705579850671438 4.806671125870836 3.9926178180386587 4.364336681912997 3.7545594035314 +4.9256741217362725 1.988964151684439 4.755549893855655 1.8800946189062304 4.110049693913239 +1.571068776622461 2.9568043182558617 3.192703377187161 4.012082724867573 1.609858846840676 +1.8338134426766692 2.8373958688788923 2.647488082312662 1.5077907801420984 1.5185807936217293 +2.258172348707777 4.915745529197426 4.472033500789272 2.979141957172053 3.0481831261690413 +1.751475159971744 1.9835521180920437 1.9072191807739438 1.8127636981345825 0.2505624726310906 +2.4711716699502757 4.451711410923128 4.2118562125134265 4.385256717810014 1.9881160430945484 +2.448385693368748 2.1363492793531185 2.2597628658683417 2.841173125113992 0.6598519631158397 +3.3477755837691787 1.8637916029972388 1.912465146920598 1.842136117307625 1.4856495641954182 +2.775563010624983 3.651614265728671 2.6811910753077557 4.1431678877873725 1.7043597043455374 +2.6517349940469894 2.7647286942027782 1.6131803168181924 3.392121344417065 1.7825259481840452 +2.6778468174194368 1.7651045057110846 2.4908860619366013 4.489941353604845 2.1975715202763055 +1.263839820596126 2.6200850610785413 3.2978099090577437 4.145659481295745 1.599453046974298 +3.478565201737208 2.8528668997903455 1.2563691072928127 2.418311030757773 1.3196997380331021 +2.522180372921843 3.800100869048722 4.50428334889813 4.460289944477374 1.2786775254354386 +1.246775965278268 4.198394844269568 1.8629819601292943 1.9111876913263424 2.952012499861426 +3.190281694030268 4.035797944148436 1.9935823236127006 3.568892650827675 1.7878759342426527 +3.3348669041763688 1.2202695022180223 2.241803856994026 2.3153087405808406 2.1158745568393464 +4.04540966759552 2.989706589426516 4.0141378934052785 2.2184103466230067 2.0830617877365483 +3.1472190713249786 3.068161013646964 2.574066816477303 4.809148966193895 2.2364799110355458 +4.273958844811178 3.098532975170227 2.668267161284417 2.4498363283626126 1.1955492477485397 +2.3296068613999763 3.340550486562578 1.471124437140905 2.1177757029846025 1.2000686950646449 +2.466291083058008 3.8620579034681892 2.0900046760293076 3.2855342507700973 1.8377856189005943 +2.630090192340813 1.8098389236598247 3.154540175601999 2.9334355136561654 0.8495289372981667 +3.504162899602417 3.3905178319885683 2.9371071219310902 4.810767522982981 1.8771037530895534 +4.1840052032945465 3.004105766852664 4.4286179896410385 1.9799739208038387 2.7180913259063737 +1.7300302503836935 4.645386804496363 2.663218047464212 1.0284899195295414 3.3424003186136293 +1.851612466589779 4.687163612599005 1.6313897441778056 2.8551226996837444 3.088344645279334 +1.884512342978156 2.197694510266288 1.013662489821494 1.834985196435846 0.8790074279024132 +3.5050683580708215 4.201983791601048 1.9442221847605339 3.3389419174476433 1.5591453602020005 +1.687083297821736 1.3883358957296208 3.596594474209015 4.464958168886122 0.9183166754938432 +4.395406531694021 2.8281487380097183 3.9004686205681045 1.4455959644484273 2.912506952717584 +3.706781243054665 3.4123464632924234 2.7704759950289524 3.874682544382136 1.1427877944605922 +1.2101403467745855 2.427715413458547 3.3188345828353016 3.3791298135272 1.2190670850509593 +2.332216400709082 4.2915099227033044 1.7259335028937075 4.019222056857847 3.016289690509096 +2.0918193349702032 2.5472262922237707 3.938962094826293 3.6081009287783514 0.5629072818089639 +2.53135818401305 1.955485360169217 1.7463034381972835 2.7944798751139683 1.1959529054896882 +4.040303762699152 1.1564618030716374 1.2624274940835924 1.0386858058815878 2.892508390851744 +4.585721408938241 3.2871570731824318 3.2124806412002864 3.847417119405604 1.4454804272119004 +1.7334755293707809 1.8699239755124557 3.192543186943438 1.4774650056617706 1.7204974124836427 +2.048414442752165 3.531902452537817 3.6432656891638713 2.336629535001386 1.9768749870799431 +3.9749024591696216 1.635905913764431 4.471992438829732 3.97570534249646 2.391067903971848 +2.5321937016976386 4.500970911771315 2.7895980894802666 4.0398240128550675 2.332198225362472 +4.845005837683006 3.4207011101603784 4.2457096570762785 4.2143955813971665 1.4246489140061644 +2.45516476862525 1.4976812350146975 3.384031411355902 1.4639988513908673 2.145530178874498 +2.139594736891356 4.387141333795071 2.2236477039399993 3.3698977798187117 2.522965505452943 +2.115353317288339 3.3583625144972995 2.3120359593495747 4.36865111803937 2.4030684083685006 +1.3643483541526495 3.086587283662052 2.5338807571120796 3.396939180608289 1.9263895692941897 +3.264679665331736 2.710380137141517 1.1194153488906453 4.599071219696491 3.5235284795479496 +1.9781219240954688 1.7835803887852735 4.2722480201435555 3.506711042711098 0.7898691491489405 +3.8358787201280777 3.567946978194285 3.615277279619217 4.833044746819557 1.246894150482393 +1.1048512945398374 3.063575987177733 4.549236275914184 3.006128092290131 2.4935487338163136 +4.814121503253696 3.9075806651303235 3.2117255789294705 4.608061886570704 1.664803704711934 +2.366571498692253 4.01078189138256 3.853215667280968 3.5103904931201506 1.6795704556431117 +4.085050126460936 3.1067061834582863 2.2892049308834492 3.608775919352288 1.6426881823458157 +4.437828816580501 2.9720130533730575 1.3206016851791391 4.275183910300775 3.2982073883660106 +4.2498674345439245 1.852631713797043 1.2654614614814537 4.028403155621116 3.6579483192139506 +2.0106073897474137 4.2145328237592885 2.939020071887731 3.3106650162290956 2.2350407788984357 +4.591129589516832 4.038782683213203 4.615855682572452 1.648402021721576 3.0184214971074623 +1.0073580101603268 4.732102692581018 3.679997456243182 3.647535847491467 3.7248861331944045 +2.18453428369975 3.804536058674456 2.6622974870261547 4.1600822878639505 2.206301217092062 +4.841332580520406 3.1945122665582915 3.9938219427054698 1.0229869969262144 3.3967451216630176 +1.142636053706385 4.295330285894938 3.77955247449473 3.1257252389334003 3.219778094160642 +1.9479586881092414 1.871036463624229 2.3726042271101706 1.6151160794979016 0.7613838206796815 +1.9215980446478382 2.6628446856147074 2.9752819008949833 2.095704867493186 1.1502618573318741 +2.4795216797686845 1.100410996078569 2.916656780858541 1.610904637030742 1.8991932337124389 +2.0335544431172496 2.0897920579420215 4.860181798188675 4.973518786093207 0.12652249661009457 +4.1488099010530135 1.2439042037481718 2.2736498071595985 3.2772448685005906 3.073382527018425 +1.7635098464877461 4.754885926089818 1.1259426838652815 3.784447835282335 4.001997062683389 +4.0362367276156315 3.960422879995886 3.342620488430076 2.775054961684255 0.5726066421560019 +3.8722097039401273 2.9009876947941855 4.148942159275327 1.6190310986917367 2.709930287943339 +4.797296095158792 1.3870411122469046 1.4481167476446304 4.783851631998351 4.7704262144141465 +4.958150204361381 2.614766996484651 4.000640981518009 2.150997866002815 2.9854019015421334 +2.88212362094137 3.0880901739355093 1.3301927150208668 2.5469122814691882 1.2340294665568077 +4.991442705879414 3.375363483491051 4.921967134774624 3.681629694381916 2.037191453711533 +3.570459213801553 1.8510557454486114 1.71948652328753 1.4027379044991237 1.7483357728103857 +2.320103325446325 3.8732770925829456 3.868805284521687 1.2404298578702515 3.052983153302107 +1.8290993728928626 1.6771834733137823 4.489724771177041 3.1434305361280597 1.354838222029126 +1.7474279408420457 2.665856009420155 3.4131598202777726 2.1183807941986985 1.587439083406476 +4.998905590856138 4.593108595684693 3.3015879718176597 2.9506821812012025 0.5364756053897837 +4.37939028714292 4.3121568890039645 3.8530241563411005 4.180231633367249 0.3340435044228955 +2.6685675853871684 3.4577263390859088 2.600583924164035 4.567245267000052 2.119086684386676 +3.1951546667046866 2.8311064639362598 2.6433940538403706 4.920133677258546 2.3056613816389553 +3.315554946809389 3.2443596572269957 1.4292407107892147 4.099888329624395 2.671596427840242 +1.7321336342913374 1.3903654321717038 2.8010096200661043 1.3140573656556134 1.5257236023856118 +3.0012788695264296 3.2547489540050942 1.7978326299311793 2.0535811903490933 0.3600755613499155 +4.621162156042736 2.635098506784443 1.8095508123526685 3.8352252456795837 2.83686547596806 +3.804787503024029 2.29287546198849 1.3612593208686459 4.744207200976675 3.7054303905694486 +1.4552592536693512 3.030407373983157 3.260910190442384 1.6008928448178237 2.2883944565355265 +1.5604492521645894 2.041771163404058 3.4326207665559174 4.532678253063473 1.2007486230933333 +4.074863276755124 3.063300925973103 2.429052260188997 3.836259487881346 1.7330581557435503 +3.360566797509914 2.1117081436739675 4.21744314290577 1.7504459911510586 2.7650900318121274 +3.1249583742746347 2.42098248896188 4.368785056353402 4.800728159057558 0.8259278970198125 +2.667296667115882 4.227733059001087 1.5469926509758807 1.762957713781577 1.5753103317989083 +3.6693926898283085 1.3932074290767824 1.704434050428389 2.1478352803101544 2.3189704594761777 +1.072294253771278 1.501589635302731 3.017560477292305 3.655148598055966 0.768643699215165 +4.577212055649872 3.609588293861002 3.183525830821518 4.807726430877093 1.8905880919965965 +3.0659972956067425 1.4514963082303423 1.4576853274759038 4.427158435856374 3.3799976301225625 +1.995145195397618 4.31321893538644 1.6103694692715589 2.672668877426159 2.5498913499581466 +1.9371664653655887 3.4149588782721105 4.620134029015288 3.782318220962235 1.6987659473475651 +1.5131283080971003 4.352954054082783 2.05861853177791 1.5131166626601518 2.891743860851806 +3.8626712979937747 4.561330557560561 1.6479521496571286 3.5377676545667023 2.0148268917142826 +3.6967629825804815 4.436166443436094 2.5177990470724776 4.55283945485867 2.1652036715394356 +1.1487463376665024 1.0330231309369209 2.7235050449616596 3.1785085919206173 0.46948917806591656 +4.3338492249720275 3.452093213366082 2.321427548445273 2.619081571724513 0.9306404147561733 +2.6557640137247085 1.4210624330196695 4.257991389206158 1.5235101915686666 3.0003125526565544 +4.572169225871514 1.4024455633828308 1.4335682142004442 3.566212402733312 3.8203820923336567 +3.7212713172749123 3.1980967413300365 3.5276360336052055 2.767568924920812 0.9227207847550384 +4.349039238206494 1.9038052375542494 4.912332529919807 1.3192547400705088 4.346191128086073 +3.665873863927459 4.320477001535998 1.361550310366575 4.443180177153566 3.1503885321719536 +4.711198005129191 4.423012144717826 3.945420739078464 2.7458804076811307 1.2336726051873985 +2.2168561571687855 1.3767332013089382 2.06191104326748 2.4191769554332776 0.9129323704187219 +1.4207583766450802 3.5553425637669296 2.22245347282597 1.418755695791305 2.2808725893221453 +3.9032378783809625 1.9116189877978598 2.830256055429214 2.3709638851457653 2.0438921456405543 +2.6052196727165597 1.5373137268744697 1.7371588222507048 2.4770972560675464 1.2992043699911917 +2.087266325004019 2.827844657019101 4.334482022650132 1.5659711853275087 2.865852145911065 +1.8893806353912868 2.796430258851069 1.9173685451472053 1.711019591001762 0.9302251933244181 +4.392762198030873 1.3571420918537278 3.9913973407981636 2.9472194167787493 3.2101864378936678 +2.6431831706434075 1.2522725435942248 2.967567712827214 1.566410428652762 1.9743034486708158 +1.5607342512336122 4.851130849357998 4.713650906212122 4.469313239465286 3.2994561170501746 +1.0104016584774267 1.8914027205454285 4.830576560486339 2.783621196165733 2.2284948137444367 +4.017868769992292 2.9422079232368743 3.8652552215536673 1.1993453261855254 2.874738566802964 +3.69149619502886 4.6177507571201275 2.157583169966737 4.339621490443832 2.3704933549422553 +4.5019976384709555 3.3494084681701453 3.4425881385912995 2.658423765109344 1.3940500565378053 +3.5347389735657337 1.5895977598300401 4.035342004905679 1.5317785478156267 3.170394979344035 +4.323766602248275 1.9972229260190844 3.759914118923702 3.2091037133606237 2.3908570806885554 +3.308117542433643 2.23251531354931 3.2389396993933213 1.8142668489982476 1.7851086480754523 +1.3218502195685216 1.2676928127459126 2.676765532504304 1.4091655520940343 1.2687563734026581 +1.6306570086117191 4.661377518288958 1.336862810943508 3.438473222550647 3.688093427497979 +1.0221233962733725 2.496002294669844 3.0343504031932818 2.061485525875665 1.766008232329798 +1.8765919159201854 4.882663527116025 1.4887035873926378 2.1219151983632636 3.072038976950905 +3.5775652273169585 4.159334763430621 4.166649060370195 2.2985506215712608 1.9565908029511232 +3.2508697392298207 1.1685251818295388 2.8330515207104456 4.8314460958611365 2.886128849120615 +3.903884524493234 2.976878897249454 4.379527157026543 3.78420168661333 1.1017040658290898 +1.1698657073976082 3.959070736428981 2.904572556975711 3.1816634380757143 2.8029348994157317 +4.13309471947233 2.1105277342305286 4.629459714832304 1.3899730662341758 3.8190379621359676 +1.505644130628324 1.781276809201274 3.1844604405211125 4.541513736097029 1.3847624419122415 +1.274396940024606 1.6878111019035367 4.560585486564666 2.0231509968633943 2.5708918800228857 +1.648691337784745 1.124310044723284 1.8500495730172717 4.8111562918117965 3.007179532486028 +2.464208026674397 2.528328667534664 3.2212438566504034 2.1003952325510205 1.122681207970371 +2.9426298728631557 2.925783277633258 2.2426129345136347 4.719483506864716 2.476927863291463 +4.9731839477780255 4.938143714462013 4.142442548448667 1.4731981513245533 2.669474380759125 +2.262142604681465 2.0401870448251844 3.3896417795654923 2.6115130613095565 0.8091653556138823 +4.550168502947441 4.271539448370984 1.5376720834075286 1.7482358273795229 0.3492438121565995 +1.653780270467411 4.214368666246843 1.2324556059645437 4.80029921604253 4.391596629766287 +3.5960492516318934 3.507158307457833 1.5558241701946116 2.6045818404219654 1.0525180524897724 +1.4363194659979066 1.258526691654192 3.8071560900433496 3.96209005266307 0.23582791052350838 +2.7413305538563892 2.610549597274121 4.497014862743421 4.763516085988779 0.29686118068188927 +3.601753938828206 3.2174382366099636 4.52313019588873 4.1326275509952755 0.5478967737085921 +2.62340075225456 2.1093325687576208 2.8073436001563676 3.666035824601733 1.0008088896521516 +4.7863815172736235 4.218307216350645 2.8232642846305915 4.892201118834425 2.1455088056902754 +2.2550823405950373 1.0157241206880312 2.618461878548046 3.827738672963022 1.7315770738727236 +2.7872664548315154 3.969272810307143 1.6274012996950913 3.0805617626929784 1.8731829477135995 +1.7752329534055105 4.814170024706785 2.507657765254571 3.409561719154703 3.169947833228468 +4.874140235776048 4.733483462818857 1.9963731189305953 4.235741188672087 2.2437811122202773 +3.7317949762328366 1.3373470779977565 1.9892407939137269 4.870272399335288 3.7461612150040113 +2.5718930248846155 2.670520126174447 1.5201766000578263 3.1906139472738526 1.67334641843312 +1.285456235161254 2.1461618118865444 3.464655347755988 3.683177964148217 0.8880125132456863 +1.3995784517442713 1.5692851238187795 3.7600255410019576 3.880880731968114 0.2083418626442386 +1.4602148998252606 1.7077917248540406 1.509532294365671 2.060092851802884 0.6036648173422944 +4.711512413240541 1.2448817344789238 2.5253849829106687 3.005716224557295 3.499749471695513 +3.0405414433450484 1.2370722543935933 4.239531995505721 2.4033626465767237 2.5737169606317547 +4.056618879402032 3.395169750207543 3.0853395285105907 3.2667565671925707 0.6858768784820549 +1.8277834042967762 3.9926042205329715 2.607947172840222 1.8487105428087212 2.294098826727205 +2.321065734883211 2.7841161162264467 4.395328848935737 4.109750287500214 0.5440319571621678 +2.4071541809571038 4.1359559655252 4.144670368576824 1.1877695012112115 3.425203402683313 +3.584733233880787 3.1793715439261363 2.795462817416603 4.454149624793347 1.7075011053140043 +2.48471391389897 3.8774241496716266 1.6767034709905135 2.445439518964543 1.590784998760253 +2.6966604067358615 4.614358138089962 1.032566304504511 3.8961162431647693 3.4463724174908656 +3.5914915334744206 2.6240960592677287 1.7609675516857108 2.117822872231735 1.0311157662055197 +1.5044083233525734 3.337819020080515 2.2206290587539934 2.0000500388875797 1.8466320388430566 +2.9780043975042676 3.526845474688474 3.9112771116272795 2.346884116921323 1.6578757401837423 +4.593666482153081 3.5353110007400725 3.4181927481832277 4.270340279555088 1.3587758241373435 +3.1232470909241656 3.682764439999088 1.7845986532816922 1.0246359281992152 0.943717652389004 +2.1352894924416743 2.74537373594649 2.3116395614505794 1.6834561845698341 0.8756809574052296 +4.24357034452495 4.551765842563146 2.380078501292284 2.6875391153264214 0.435334921862766 +4.474724298533646 3.779822650624128 1.2194567349716992 1.8019771941297713 0.9067625850271364 +2.4533803768616176 4.344100903378562 2.557497123107312 1.052932721430286 2.4163067164965337 +4.146995684096545 2.3300795214125736 2.1050524958009507 4.97064508998438 3.393052498571333 +4.167560648234499 3.287446080479939 4.618154953074423 4.650970249016212 0.8807261186211882 +1.2904726156148816 2.991167641401789 3.80009098978738 2.3088319919021747 2.2619056057912577 +4.794035510792719 1.5113313279194927 1.8658670331546046 2.4385833639892898 3.332289115286686 +4.0362176243377865 2.9647286485111883 3.834257959853328 3.7889561747878755 1.0724462117272124 +2.401476679100485 3.683203541583984 1.6582880937593791 2.287041354575343 1.4276394548339235 +3.8360095204511624 3.6584968509506246 2.394086196518327 3.380192259969534 1.0019560450481062 +1.169396475836983 3.316119535416609 4.016295638870333 1.514707943879268 3.2964163708884864 +1.8418476946555553 1.3904142195772744 3.291322861387122 3.1211070437813313 0.4824578810471032 +3.7525147683065536 2.480539491296481 2.686171678333854 4.811219710525274 2.476640919561307 +4.807282408203482 4.211270636844447 2.2817708366143177 2.2975857262511754 0.5962215547367947 +3.221018388164116 1.453979967531715 1.453670635188073 2.4107651327806736 2.0095906690948486 +2.511748974360536 3.1765205082943617 2.3357203431751397 1.6273272886495622 0.9714637986197988 +1.8546525379875125 4.144950663685282 2.7342670812950223 4.758086079634336 3.056355483678864 +4.614268881841187 3.966781177379035 2.528947552017774 4.016092716013615 1.6219867651204443 +2.9654468842509765 2.1656996874003074 4.612243074827697 3.6241090773845386 1.2712216076567844 +1.9568937656219458 2.9810562488996015 4.077411641293422 1.0311049525343123 3.21385955420145 +3.653180957941949 4.23055320739185 2.9623552653319516 4.789071754993033 1.9157901367411159 +4.293273617405331 2.7225728973938774 2.2198418049565576 3.2997714764328436 1.9061345301891415 +2.7130802206401587 3.8912064685280736 3.339089384444699 1.3176638621110857 2.3396885686569866 +3.253950668925064 2.012104322841036 2.338317399033413 4.953003741566366 2.894609993956112 +4.792636001912154 2.890911769655583 3.8655850175200643 4.9953139648276235 2.211977068130791 +3.766344179282663 1.9693041800013535 3.576337719541666 4.971648748939677 2.2751363976203063 +2.5478632090922604 3.2695679509620947 3.0540550701691087 4.217880665826745 1.3694333687862494 +4.347314457675464 4.487602975872285 2.7191974193628696 4.943294510013255 2.2285171610237526 +3.9495271186615883 3.5823772268058516 1.1396481188549528 2.6866043854656887 1.5899285310654392 +3.861523191551868 3.5146744960794276 1.2970812860346026 1.421692214271161 0.36855379659814996 +3.955848925654377 3.5002661383124236 2.8575540254096543 1.4215812854033656 1.5065103339052912 +4.211169423761069 3.4220075359962046 2.333464659569234 2.4445756266354515 0.7969455013380741 +2.2591147131321274 3.1919217806619313 1.4791137396308476 1.1165004138566275 1.000808397877732 +3.2201801072624527 2.8897430218418174 2.5430082107822694 2.4727008681326756 0.33783396787731634 +2.6893952902787066 3.5690501847738108 4.320421142488334 3.1449587640201977 1.468163661382191 +3.5602081593976815 4.573357086787796 4.899414749342656 2.4922712089332335 2.611668197380086 +1.5866881352829125 2.071792493891266 3.0413080621028095 3.104737191195734 0.489233577300566 +3.158151486375033 2.7474040354027873 3.8767250976187517 4.000169083998989 0.42889612524904136 +3.436738594090431 4.308332408336485 3.0415916265398484 3.629976937022434 1.051604987922591 +1.7639872839244348 4.8315508902150865 4.622237091936837 2.1437457017300496 3.943712216930652 +3.0698788801381887 3.556015996544252 3.8309525660378037 2.0931622065606956 1.8045067551658482 +4.244112849433665 3.933616416751824 3.956591321134958 1.0157185050604558 2.9572184489878532 +1.1432680486139 1.8866664890086584 4.908631200477428 2.1116037953155358 2.894132606914899 +1.1869598075891759 4.458538238113464 2.0984669175127655 4.675240646142313 4.164491358572759 +1.38356786571177 1.0008809428396699 2.5631158648630756 2.637983285647419 0.3899415489944828 +2.217782408451937 1.0171652375197184 3.374045560209112 2.9267888712756105 1.281218223774952 +4.533333123690058 3.3231906736802497 1.572151984979266 2.240190493007342 1.3822880298708078 +4.367029243772973 3.268444960964906 4.57027962570288 1.9465934116605892 2.8444009520790985 +3.2808898742369292 3.5148426697486252 2.6699810539976294 2.8869056822360903 0.31904577236523907 +3.4042092722226647 4.801050426232538 1.616599618393058 2.9266408236706414 1.9150386860480857 +4.888996715839179 2.0338443991204094 3.988438360974926 1.6116356971201338 3.7149812455208697 +1.9594679026926114 2.6657914720073657 1.4163418554906668 2.1999332569761023 1.0549447706166628 +2.021682567121931 1.20299685899539 3.8442983827321386 4.203231304136322 0.8939122612194093 +3.6637103395172774 2.498954446774733 2.905395975592539 4.429597169150461 1.9182923573120638 +1.5493836309993196 2.9344952671258673 3.357707146050848 1.6875538661715277 2.1697802245445996 +2.777863240157812 1.5791051556979174 4.746203053630367 4.372013975402572 1.255801899713057 +1.5911253555031148 3.273404127634075 3.2943250087402416 2.116132246903609 2.0538257110102314 +3.4211223555394654 2.5127213859111914 1.9863105955185683 2.4521705609805364 1.0208907037689268 +1.25891546739842 1.625795703642818 1.9102302192548732 1.0574506117996916 0.9283502392083276 +3.0809426733940204 1.262120423637394 1.1438134531188742 3.929827790056394 3.327159488487314 +2.8992114469933767 3.0354015427412793 1.8025254524426702 1.8249038432753895 0.1380164285731405 +3.2045283758028686 1.1729470771927368 3.304028190246182 1.0104597888447113 3.0639482020376465 +4.296997955377572 3.280245992288551 2.5690312211121755 1.8816744439040236 1.2272912831187854 +1.3713511344503018 4.39579287109912 2.9356158111142046 4.067981792217738 3.229473723928388 +2.6466002298955287 4.066566071720738 4.461290110444812 2.524824846346939 2.4012914673167063 +1.78010016189981 3.6481509930455593 1.9168461507615193 1.2362923791362506 1.9881567704327803 +2.278330760336943 2.952993870166056 1.1068729513506566 1.524229308894931 0.7933200116894277 +3.8206997791893444 3.7901535917690357 4.134322671042484 3.311678799255841 0.8232107927827689 +2.3244404692924316 1.1026515766887792 1.720824451602733 4.185110610263591 2.750540741355624 +2.1671901828666664 3.8463955598001767 2.3310248123086694 2.5264748482867123 1.6905417517725585 +3.3389979614228653 3.721590002079961 4.284827238064516 4.22738184395122 0.3868806571528132 +3.1370183198323645 3.4387718070532736 3.8681425007883936 2.0545459346555255 1.8385286703608703 +4.5041614057349815 1.9780863720292996 3.4602279149895434 3.076404712411102 2.5550685561739304 +1.4898774303048592 1.3065342919031457 4.752841525143937 3.5334748143040247 1.2330733481441958 +2.7875461321678614 1.715277764568032 4.485920732210078 1.297938831793473 3.36347856385901 +2.557871136493594 3.270470527238749 1.169842283694734 4.723995838038704 3.62488694714004 +2.3895805405423376 1.3056050314888 1.9598101168534945 1.8833301469887558 1.0866701845630935 +2.9501741442497096 2.573749360564781 4.682618643148301 2.0286992039242646 2.6804820476293933 +2.442833447279897 1.19913257118756 4.4576074204186344 3.942512669426184 1.346148012550188 +2.721373164106798 3.436736002573903 3.2989240323600226 2.756644768237378 0.8976696446672965 +3.6687816304249936 3.0796191064928213 4.917926086852168 4.07043377771938 1.0321606917749542 +3.7869585821648775 1.210136683717412 1.074038830249004 1.8715696145427407 2.697418478511368 +2.8162166774208477 3.3695646296642914 3.354007056411422 4.430018417848258 1.2099563654087553 +3.6045781079949766 3.519935055529867 4.286214415308848 2.4630408375909325 1.8251373484807534 +1.1458853363085422 4.873631249308339 2.148449343804888 1.1049195327496322 3.8710520609322354 +3.1242910251564115 4.6947577794708995 3.0857198294590944 1.8808821582196105 1.979393755786065 +3.97313781362751 1.6351319561816111 1.4797033407854001 2.5027701773939217 2.5520456778081972 +3.56614642792506 4.355360611244464 2.9180295743803786 4.517104687303958 1.7832274795785514 +4.491227066241358 1.2920168414164381 3.0357615175541377 2.5918814432216966 3.22985689822532 +2.0963120613470765 3.953337119848907 3.009638337925264 1.3760465189463083 2.473290176857277 +4.513354316473702 2.1861386986965465 4.400511965443176 3.1023097083855995 2.664819249377956 +2.902311532923039 1.573400300548479 4.452244609428661 1.5104867159790127 3.227993892064324 +3.744503142018697 1.7653050830744403 4.645638773529682 2.9935923753965445 2.5780772405250754 +1.2918192761642286 2.0564026696693634 3.733964140226504 2.385698224263668 1.5499705628723832 +1.890054736300962 4.024580154163847 1.6657849852947892 1.7347058367708312 2.1356378071365256 +3.5675236442537055 2.1257471342924537 4.104901109175584 2.328486576136274 2.2878741438001606 +1.8373445376878648 4.118002683607946 2.461677678288758 1.894352935717575 2.3501614714919232 +4.6876436906140135 4.346717990221544 3.7803685448543036 2.341816550285544 1.4783985167287788 +2.4856653740145163 3.1565899699254656 3.989038053035026 1.684697286610359 2.400026287607053 +3.910794043214566 3.841051456148904 3.188086916772696 3.830770724510014 0.6464568857846199 +3.7623824540148605 2.969545909652756 2.3533446063112553 3.2824595838189867 1.2214108348566568 +2.683499631557286 3.577524168131319 2.0520503037435116 4.714681469409449 2.808715826916629 +2.608414107035043 4.181112824532027 4.729113093873716 3.188829678308315 2.201330110701818 +4.037967260925155 2.755816341168778 2.9882511848773152 2.272799034003442 1.4682584109148418 +1.246116900435756 4.018815749941561 1.7218118348338582 4.152000949712223 3.68696054279458 +4.095851771553887 4.712992259223007 1.4584964969345213 2.374882662289522 1.1048194357335148 +2.0015223161037587 4.033407557731316 2.962395873858243 4.58240727747331 2.59865245521342 +1.7537715839879127 3.0136327419828888 1.9154743388621807 2.2060148703978886 1.2929284349450645 +4.425546958361147 1.0439956882156007 3.4858410164983313 4.6720431464668515 3.5835686802075957 +3.7635835991371267 3.6016962722096433 1.9737467147112726 4.712905306673002 2.743938282567137 +2.287045244957551 2.422831727973346 4.735163084580361 3.5023136104667176 1.2403047185236726 +2.3652173437213797 1.248279929075128 2.5065534275857377 1.8007234503034835 1.3212664928268334 +1.8634364347869998 4.222751196905232 1.4976786444142278 1.8296383611969538 2.3825539658768444 +4.5682641407146525 4.912223481355646 3.9525998312303456 3.038048337686161 0.977093886153263 +2.207707319940096 4.674565773527391 2.6501356497015767 3.9107902243277115 2.7703141674836993 +4.207682927165518 1.0939035126102574 1.1241338758934853 3.9159510876895816 4.1820886631668905 +2.7795166614359377 1.1210788521850628 1.604182634556679 2.9465901186465895 2.133652694440556 +4.217390143106169 4.588965126364002 3.084521434223253 4.942979823612951 1.8952402362961829 +4.925746200657862 1.3855984291846224 4.956536562455762 1.6354637394959015 4.854088064638869 +3.1651544597737953 1.6519715329456082 3.5147743809952408 1.9796048761383243 2.155566741877168 +2.80147274297605 1.0868947930134016 2.06181704639313 4.262730287778414 2.789945634345443 +4.703395494594525 1.1450256355285293 2.1340205045557186 1.2158745778847826 3.6749133318449547 +4.073685423592489 4.848025721626831 2.3037079681809165 1.1937639608615127 1.353358266145432 +2.2728233706645504 2.4009172741867233 2.3265468210308597 2.062401421020858 0.293565734488873 +4.249244870474529 1.4526054558782078 1.0645700387379518 1.3633533650807674 2.812554620158359 +4.229970513777605 3.4858578456223808 3.282827625196715 1.2720061377519896 2.144086452846178 +2.9432709784556015 3.1579422360820186 1.645927541566644 1.167426799936624 0.5244489570886633 +4.625498795399174 2.851980541351334 4.196630176234999 4.86090107118004 1.8938381185602915 +3.277526058782493 1.0927678486873562 4.595610776414125 4.802672424462649 2.194548464416012 +4.603736815841838 4.829222505213336 1.5267040728006105 3.6068071525566143 2.0922888468186582 +1.7438100082473076 4.095899362673627 1.588075454008528 1.8734676915089943 2.369340216269319 +4.532904752065129 4.958245167190951 2.5798501031331913 3.0065562770857284 0.6024886950214248 +1.536478985533901 1.2771071691242342 1.944796525736928 2.445198713677453 0.5636276154016183 +4.615676099971632 4.132437410926826 1.3512145747521878 1.9104887619016448 0.7391260021142734 +3.8453900568259267 1.6458033278110604 4.377021044830382 4.9372052238979585 2.2697991305258562 +4.709259774336475 4.545498363189222 3.511072254593664 2.5205610374864107 1.003957305365239 +3.6308829558422095 3.168723398736844 2.334907445521729 4.045349970348002 1.7717802027785226 +4.313211754066991 1.9004502829935763 4.700925266461382 4.510851782177092 2.420236733405292 +1.4859954238405977 1.4050408013920768 2.8712626579073968 3.0957293946755216 0.23861887354338338 +1.0366725649743511 2.0346715516388154 2.833317971464593 2.552024502950596 1.0368837894440883 +4.125277274435925 1.8077968325436289 3.1043372324916274 1.0283482297554882 3.1113415013519012 +2.8892466878479683 3.7640245543244686 4.655758053956381 3.020261950989186 1.8547462949142288 +2.0261639198474866 1.165480717145944 4.52783127135673 2.7189740313136124 2.0031824905057927 +1.5688290491331176 2.155772944900611 2.8748142782834223 1.266503496481071 1.7120650418837515 +2.725563976363228 3.6261857325614555 3.1483170802186553 2.13243130229118 1.3576241974614667 +2.4301968859948033 2.17746381198078 3.86934627469722 3.133810330439628 0.777744901619731 +1.0705161422618024 2.5401426901193096 1.7185749348150137 1.5794310075766531 1.4761989102607034 +4.3907143087801845 3.720090863875522 3.885150088228198 1.2390668488200678 2.7297421700102777 +1.615817573044846 2.382874172016938 3.9920528502152783 2.3308847682466953 1.829714519420397 +2.4635166293824304 2.2244621432485756 2.2187188925029515 4.249483752173785 2.0447867768094112 +1.391525540174321 1.5902252116185251 3.3702726192487185 4.677684166393458 1.3224244829249938 +1.2936890997752806 4.238594817494072 2.4865084354480884 3.213742712967914 3.0333709599474665 +4.481130226122316 3.5878209186552366 1.8095137662951446 2.7210927909313245 1.276314160762922 +3.1848389110146074 3.994113718101529 3.8095052296611387 3.0063582765015378 1.1401625944377953 +4.983391925065407 2.249315285391483 2.5527030566090545 1.0715554455129417 3.1094972772887863 +1.9741802014422918 2.566589894554105 1.7163664396083211 1.8122347568373849 0.6001166376140268 +2.538018023991879 2.0231404693939696 3.7389084508579185 3.4202368490039254 0.6055167099733192 +3.5797752026535674 2.0303732066385978 3.6958650169896776 4.3122815074549665 1.6675178664628203 +4.128266208663112 4.150508871003499 4.416735213079546 4.251942079024491 0.16628744107621588 +1.764372582805302 3.6957215907869196 2.8670785322105576 4.1096575265342326 2.296543391222124 +1.2162418182522914 4.347511452067003 1.6532753164949026 1.8702162898242203 3.1387757016963143 +4.273882932523422 4.581536294276454 3.5923625707955558 4.164260830408078 0.6493983448899244 +4.021439546071356 4.081080350140962 4.66029602702182 4.9504528597782365 0.2962229111755268 +3.498994746860626 2.084860832482629 2.995419900249102 2.8623256704835276 1.4203833291724202 +3.634100309595666 2.8147961263528574 3.0241519225645304 2.4631116245876314 0.9929881976303512 +4.317762972304801 1.9323120660972362 3.729533312881961 2.7690985342532284 2.5715386425107667 +4.356459372380618 1.851955995690234 2.8233152035741234 3.044633211948036 2.5142630778588244 +4.327440227120221 2.769872762982126 4.140471041518019 4.829092646834338 1.7030020906182117 +4.243647636666372 3.6355001570387335 1.1319845402374078 2.778905323327364 1.7556171059633372 +2.2468523891926644 2.6979409918183013 3.176078545524326 2.0233154198504137 1.237878730462818 +4.125488619633536 1.8885143783649614 4.527196884712112 4.494667447523913 2.237210745634594 +2.9542871000231936 1.1766618050475346 3.978837224877527 2.6073394360688615 2.245207757434567 +1.789543310070043 1.1151918224898614 2.3121624959104974 1.0019982661410052 1.4735264632062401 +2.7798050915813732 3.538033948039598 4.310217417308358 3.861835870244726 0.8808842208333189 +2.333932746852865 3.238767850241301 2.742670481758434 2.4056137205090633 0.9655743496116067 +2.3589769718884788 4.680777306009443 1.9493415737338853 4.096914053796338 3.1627241973725457 +2.846073240575369 1.4221026135092463 4.203891873428764 2.2967183290674433 2.380126735083409 +2.83969802756672 2.3579473551471897 2.3278956199118066 1.6169041123471848 0.8588321338921147 +2.460013738225091 4.055837296273995 2.3195821581084495 4.423821342322517 2.640923204639951 +4.3980612155925805 4.9899916239717825 2.171720980770388 2.9087824692128903 0.9453259999116949 +4.281316257614023 1.6353494641381365 2.162909675501196 1.2471942079649918 2.799941979695671 +1.9810155487639252 3.551274698814132 1.964614840676087 2.2530302289032913 1.5965266156511915 +3.3725765339247564 2.8180340707063403 2.7822222301442836 4.867325126757541 2.157584629389388 +1.4994998993949298 3.9313184375691392 2.7762544585285567 4.90333073503219 3.230819538239843 +4.303820252609812 3.960990681172972 4.1447316044162505 1.1320947423570313 3.0320806350902982 +2.1333701571191543 2.482760159898478 3.520859203490147 1.2096809396362698 2.337438414451332 +2.036938983188854 4.752966508749715 3.1518529522250662 3.734081997281679 2.7777322010071073 +4.2199626009580555 3.6003633464429865 3.199275336072666 1.2323348432705745 2.0622216511374725 +2.182040239254304 2.400330815505161 2.201563913285929 2.54545305983779 0.40732115191344853 +4.080623878226403 3.5778927625898818 1.7321847037209817 1.0362375591868287 0.8585342174976967 +3.0155664770811796 3.3846671551517837 4.080285688309869 4.9897395997923475 0.9814997339087568 +3.5298687554669104 2.7095408110201333 1.5244233419191695 3.3792588128487617 2.028140172832952 +3.8533487324299087 1.22689965650307 4.405663203343988 1.7828683922535853 3.7117768480230175 +2.714707875579523 4.810254063728751 4.796607686579041 3.979676637947471 2.2491532106295105 +4.315070266597607 3.8596603629363586 1.7611310815408885 2.8224736534689865 1.1549226101084422 +4.511405909464322 2.357763772989402 4.768223030128585 3.2865140979601453 2.6141223788621675 +1.8748273835563887 3.229161779409202 1.8565213980819126 3.588479450303889 2.198613278966209 +1.3768444570030272 1.6677285242558515 2.7344114001960365 3.9618360006623394 1.2614216941258816 +1.8357418236536391 3.211827580727625 2.953804931866904 3.1246444609373114 1.3866499758464224 +1.1487654683760424 2.353118062277388 3.171542093488809 4.300308878866693 1.65063006946112 +1.7784815030973347 2.453792330541592 4.986521265959742 3.663776476859653 1.4851594159398802 +2.062304208366874 3.6499997007742273 2.5456529693911074 2.111736892155366 1.64592227601861 +1.841800434487903 2.627233940304448 2.6926768725423114 2.1874271647774655 0.933907414712899 +2.016801044739773 3.0322572650961663 3.374806436145115 4.105274863692358 1.2508938640443619 +1.455799100055526 3.7973406135019934 1.7019833103443625 1.8747708029090107 2.34790804265839 +1.8322598131160408 1.2819639466824557 1.6802478662842897 4.256228098374979 2.634103205407088 +1.4283289219894244 1.712475781500816 3.1781121135320283 4.30105270174098 1.1583328547603464 +2.604982993243623 4.910080803838715 4.794330242565201 4.759181597096867 2.3053657722124155 +1.1323350634077212 1.0422143777768968 3.3404352774201223 1.3780719331171878 1.964431631043027 +3.531297459868127 1.5325449134886218 3.9892410171767105 4.473255578305432 2.0565217813199026 +1.5459004148979414 4.543928568004739 4.328061265745749 2.5192868494967198 3.501405103054769 +4.23391449964439 4.841270314776908 4.603213987806736 4.3521647604290905 0.6571961661043058 +2.7204649908106293 4.958412269519572 2.587490418590667 3.1977091559983246 2.3196497429060616 +4.89068600614675 3.656489121396206 1.1420833026985435 4.002519127907545 3.1153386750828633 +4.858798370035333 4.229664145321904 4.098413767176611 3.083725640975242 1.193901949977389 +2.692915456313807 4.163605319779078 4.6985022313102185 4.935404326485822 1.489648038027134 +3.9945963496829973 1.3969658870675703 3.6796308404128153 4.955361702737821 2.8939891591704585 +3.045256126385443 4.520819759415646 2.0732215519219457 3.322060586931129 1.9331029384085991 +4.00451468224072 4.996795615386061 2.9443470614593354 1.0442803263879696 2.1435659653970407 +1.1401145815744735 4.155035149167825 4.945534205810282 4.279121336805975 3.087693660464387 +4.901199573462084 3.268586963299529 1.7260879212178102 2.028590236128265 1.6604010314944926 +4.2887713221616774 2.7705506261995763 2.6077268053927463 4.407687621225947 2.354751158866382 +2.302359311857075 1.3223004996618561 4.4211150370110515 4.6720665402415005 1.0116777808843709 +1.980107538346343 3.468265215675865 2.137410078929235 2.1048878206659505 1.4885130062842384 +4.526631790256451 4.3851470447995515 3.112346391677793 4.764846255465601 1.6585456680525044 +3.1500347595968514 4.842992797062632 3.3938601578664143 2.054021319299668 2.1589986174038818 +2.7501856810790244 4.672726072189684 3.664139026887937 2.5876249753693794 2.2034164514609644 +4.594868729200451 2.1407651160176098 1.3981834228021595 3.763193134564922 3.4082100112770726 +4.297023767729666 4.695807737002745 1.0132122421249075 1.7282510011801202 0.818724056749532 +1.2530761014361262 2.4462943937852937 4.986908819467965 3.6763764087331565 1.7723614452991951 +2.9608793689361845 2.0940873876606227 3.9347832739635513 2.521235795627427 1.6581449913424429 +3.93275661038028 1.177528004499936 1.2193846685070473 3.1770604991045523 3.3799081834225873 +1.0849945136960724 3.4823464222899583 4.867915118082797 3.1936992266219453 2.924088751193917 +3.822081905292398 2.0199944806010492 3.8486844700386116 3.400378377661195 1.8570130421441329 +3.8724548077978382 1.8223783659003767 3.78125203911623 1.8643955095054032 2.806626511086685 +2.2086548494241742 3.155246731498603 3.799812612761525 1.6967763236286708 2.3062518996455905 +2.1672922352156743 4.111269967286952 2.8425251954215702 1.1465150773744126 2.579825525749236 +1.582456747622325 1.400698105933433 1.3929274829033251 2.9311849775816934 1.548958464182549 +3.765225965203646 1.7042005231721844 1.2914632865630975 1.4489633590486126 2.067034626109085 +1.500103782576585 3.638978488444286 4.569587696396582 3.978700930545918 2.21899350550156 +3.8026200676513793 1.1236791747750958 4.983511262708765 1.07156086142143 4.7413162992629925 +4.688963034663038 4.8769614473831115 3.4281992813588626 1.773000904056794 1.665840650064906 +3.854458903294673 3.3962984962966045 4.096976424453498 2.7472989952388227 1.4253210590853453 +1.407337026140318 1.0119804943570743 2.2302545621392325 4.091590403766747 1.9028604527266006 +1.604034780711625 3.2780914708743873 3.512008067281825 3.1256760106471053 1.7180565357002413 +1.5390317496902743 2.777324388845805 2.481827751007841 4.391779333970522 2.27624333265326 +1.4586567342991095 4.518994330035291 2.5766971100489484 1.1266706386268575 3.386479435594008 +1.3792187162548513 3.6004245941186657 3.290122965846099 3.5470295830607745 2.2360135424065404 +4.0415054703054665 1.3023416661083336 3.7883454583007508 1.152537595958865 3.8013815164236027 +4.466334347866489 2.333405499372369 4.674709578805929 2.9286911736636414 2.7564407745921318 +4.480060394653604 2.5522893403527847 3.5889364998763575 1.7074941756148991 2.6937198178954045 +2.4360542793203006 3.4075152338278096 3.4294740539795563 3.1657010548538485 1.0066342837398352 +1.6752033328794824 4.602632816868445 2.5758085741846313 3.8491577581465735 3.1923755305453065 +1.6980061709886671 4.2143066280764145 3.199143804703438 3.2427030530901204 2.5166774522095636 +4.2530143434278305 1.8955646748685564 2.267508238948504 2.1845146215404245 2.358910104332234 +1.9390054317001657 1.6234724836015175 4.736961082670115 2.9947871422621657 1.770517178671923 +4.355236789254472 3.9427544968725736 1.163327911235378 3.3868239335891617 2.261432334373886 +3.079258620973359 4.269292066916661 4.023193395257707 1.04662903117993 3.2056380045104014 +1.1428090036955956 4.903648196161865 4.930850330633879 4.861281779964598 3.761482582019032 +2.817607332558598 4.04578330017829 1.6598439711391126 1.9582517421571546 1.263907989231227 +4.0774454666901585 2.7277677519292984 3.5847340982742995 2.160673040011131 1.9620346152358559 +1.2340919249931992 3.9705966812534457 1.1313235288074632 1.263141696874619 2.73967777493404 +3.657610054647868 2.4832725357379806 4.097268461153276 1.9579609041344863 2.4404314028132674 +3.0236414881567346 1.9745498263420629 2.2016203053005903 4.305487445432311 2.350925404647092 +4.249103798951602 4.756855667281309 2.4801166782534145 2.2154830456410584 0.5725756887101653 +4.273993124182242 3.4375949657142773 3.606373429365586 4.116644240547932 0.9797643493377847 +2.8431264747545013 2.374729149407281 3.138766679820624 3.4560968349558534 0.5657689296440538 +4.272864468441156 1.2060759073325658 1.284445282665553 4.167757113688288 4.209356149515289 +1.8036373422827103 4.099850039280616 4.092405079120633 1.8160944663489076 3.233292865744083 +3.136571285503771 3.8897784828002107 2.189872127511815 3.6211614602120434 1.6173775798992092 +1.0910948193348498 4.420400218405005 4.310611374657401 1.6540327258909304 4.259305642632326 +2.84302535899656 1.5361834046856475 3.5653621807582625 1.9138456486744175 2.106025343934259 +4.983956223593783 1.7970869252637511 3.0826056258703787 2.8741041940807053 3.1936826347802456 +1.6855749256401191 4.906817346470902 2.2828640816585746 2.518132177655366 3.2298225664506277 +2.7271581541759966 3.3325865336660208 3.8272416404459797 4.41192257657219 0.8416622361501899 +2.4110776623459507 1.7244823654887393 2.8702412612584545 3.3039048566869553 0.8120820252083016 +2.9210364647870715 3.4232142521148985 2.237460634635155 1.579406412770727 0.8277788889546955 +4.2121710896578985 4.937703196586071 2.2529942808868237 2.817439408440549 0.9192361721575008 +2.1169222755984967 2.8892614026703995 3.1199112952923955 2.547862404080413 0.9611179226000561 +3.2682788546829338 1.3615270043020056 1.183268981312401 4.215791599992487 3.5821635992424214 +2.847591153887345 1.3094759183110511 4.847383938818517 1.213643032591702 3.9458676424201045 +3.94388370718062 3.862787022118785 2.4307117153799833 1.5535779398008196 0.8808747542016272 +4.978068218852538 3.8390003482238133 1.3367476048582771 3.6738147169308117 2.5998765932693257 +2.1945276780493104 4.9982792639132345 2.771232135292817 4.334105252257823 3.209921390776787 +3.484517342530172 4.925581573655779 2.51881876193721 3.2624437791641996 1.621617798519576 +1.4401136202153455 2.9762248668250306 1.3994409001290151 1.2627874401162842 1.5421776584084637 +2.319256070582418 4.992070841878929 1.5787844944807277 3.5640800878670675 3.329465031319603 +2.301259395503904 4.865980015148457 4.482381034207544 3.9946613538619755 2.610682352073175 +1.2946501438760634 4.604552392897041 3.672610103585664 4.908455623098886 3.533095957680039 +3.343384216437383 1.2800303455995654 3.957761684872332 4.9175123910670795 2.275642901323211 +2.695080132273364 3.097600496872732 4.312479731044576 1.1383969358612154 3.199503748176617 +2.221247926286858 2.1396229606807844 4.041571505036125 3.7695809392937187 0.2839744757246098 +4.1236876085600365 4.063778349043476 1.0891521767593968 2.428379380914333 1.3405665308832941 +4.943112134549468 3.2854444826610467 2.4120785958924644 1.5100421086488618 1.887202127074906 +4.278856340811716 3.0221962089440946 4.160065285846962 3.7004505008379853 1.338073405170432 +1.1683721627507406 1.5431207428943634 4.4143028863512574 3.5767120962021353 0.917602762671458 +2.89827438474488 3.5014650597801085 1.048558261376015 4.995339137405777 3.99260795393734 +4.538009990157089 1.1548244855602392 4.502325152176558 1.8940826364328491 4.271869986252779 +1.9060828484530665 3.458643008608463 2.6522634811789865 2.401987619564796 1.5726032741312974 +2.8760719995148074 4.550097235778171 2.9618048157232266 1.8107314412400117 2.031583226227955 +2.215620503616721 2.852036408349409 3.842409882631831 3.2723308257055597 0.8544093485810373 +1.7524494399545838 2.898195359448992 4.080516907728088 1.1041504042383181 3.18927754752295 +3.889288631927003 1.1550213266616902 1.7633227596882555 2.6513402109654733 2.874855246863 +3.001928982126137 1.0943330095107027 1.4561151907192045 2.594088630918725 2.221239731622446 +1.9677972939769997 2.293471996750445 2.3548777424953373 3.038966408231964 0.7576551422750922 +3.4733405301322016 1.764636666653272 2.0133157792811094 2.71851585256772 1.8485064339707507 +4.851363372045695 1.0865387099636354 3.551641958823369 1.4250247641911091 4.323934022244891 +2.0615149471023098 2.2721855107794418 4.378230283409298 1.3448848850798671 3.0406522971175733 +4.349683623709859 1.7920217013281086 3.165008528992898 4.034751770610027 2.7014973284347668 +2.9429952132406876 3.634403328542326 4.5723481037854 2.832348226526608 1.8723367097735317 +3.305163073254343 2.190717270403808 1.9000527100857214 3.747135821277467 2.157244878807446 +3.2857253950710805 3.714053682160392 1.92628070483276 2.517139385890978 0.7297801740954057 +3.149048236923636 1.5711923900932168 1.6909557374537298 1.4230988538503748 1.6004300620366516 +4.194655287232164 1.8045236014527632 1.217894653801093 4.908081563311806 4.396613344665518 +2.087201810927938 4.638501281172258 3.3904778957420962 1.9793081182481864 2.9155666906763007 +2.7871274846868075 1.6081049347186829 3.821864090119975 2.8709052647108297 1.5147332639632896 +3.553979931213746 3.4113106562934057 3.0212255506874275 4.7368071474867985 1.72150362685734 +2.8451268222921877 1.4427323209093026 2.38822588288048 2.3091441900619563 1.4046224587582226 +3.3041093811232853 1.0664602335444866 4.963763611270197 3.119675306385381 2.8996095226552625 +1.3226366554581488 4.296453185118632 1.6948387813255321 1.9525824128981366 2.984965080482208 +4.847316140366266 4.460432056145616 3.3555912908489662 1.2583603595615895 2.1326173763176013 +3.8766421933794804 4.877051871197745 1.6141894295032255 3.841518623875513 2.441682793397936 +2.660589987324926 2.1077390467294355 3.6892587980593055 1.390540047138603 2.364265648854154 +4.15239317139819 4.348134571475208 2.4303788676188316 2.709051820496998 0.3405485433384618 +3.6368980144468264 3.4781785006352988 3.602354058166523 3.787292196218713 0.24370884056754807 +3.271036224814833 2.359527375546953 4.568057210301172 1.1235702339002978 3.5630519099346403 +1.0557645677500442 2.38658250855354 2.9530657275631156 2.057941975006044 1.6038462906264772 +3.9222083906198892 3.247039341442356 1.5234185370842916 3.6715375254350042 2.2517256567086905 +4.2205510801599235 4.710982205567229 4.057475382303632 4.601382608911038 0.7323644993608281 +4.835647223150995 4.6773216907573865 4.962851822851148 1.22508491705821 3.741118604942729 +1.1014937213424192 1.9026612398696208 2.6815506231689032 2.2004961072403346 0.9344960353250854 +2.850540407867669 2.1339164052109103 2.75453214208569 2.5557851551030835 0.7436735345690731 +1.2036625852779927 3.340026257779645 2.079026651111064 4.087191619777306 2.932025968944176 +3.020834714634898 4.21413709705327 4.371851189432123 2.435577419462956 2.274450854196673 +1.8705996640436227 4.038482694651895 3.149361819300842 1.7304261336254405 2.5909641669622587 +1.530142903825662 1.9174715933013085 1.5567957161057135 3.86850424095996 2.34393255397307 +1.2025166667894105 2.023173362860763 4.675669427639699 3.8953991423870193 1.1323864759237663 +3.116436820149059 1.9277017048479461 1.9346075611055742 3.01106123687528 1.6036968823403197 +3.5339024801471917 3.3948747269724424 4.048267338827872 2.156013336104667 1.8973544547539896 +4.792763225556245 3.6475258288965877 4.729229250911641 2.0014277175899435 2.9584573513741907 +4.274388767049182 1.788372738810315 2.6491805698632853 3.4546989920914166 2.613261491165675 +2.1088436092897704 3.0631910581237136 1.9852070619035818 1.4512866711093801 1.0935492841210628 +3.1487703057036702 3.959510675458322 2.450020880883419 4.935806527940775 2.6146568092708207 +4.2553581528528195 1.11660250528168 2.0725349045392005 3.696450426263752 3.5339621725278336 +3.3222489330039395 3.8284704404625294 2.713082977457989 4.928931949452224 2.272937940486179 +4.209277429524256 2.3547186942857143 2.59240059771175 3.2425222627196386 1.9652089664364474 +3.6596636822543154 2.93338987142324 2.3344604651379184 2.930002942038037 0.939225473510712 +3.9280890876593593 2.72039782888403 4.648966829259095 3.088688097110434 1.9730656092785592 +4.4884249877025635 3.642669662144762 2.537650942640343 1.2243478460737083 1.5620714113512526 +2.594228127373345 3.8537293166662643 1.6725004480358656 4.839079941898179 3.4078686795091713 +3.3712993183873867 1.0537675490677105 3.8041594192286907 2.8143550749834603 2.5200528053381577 +1.8191710484593515 4.663614898316335 3.561628794339723 4.0279568654302516 2.8824161193131417 +3.179011738974909 2.16150318160375 2.451838506088732 2.9363964811864927 1.1269960494848146 +4.743822631069233 4.163944469420969 4.505388641478827 2.160760801926036 2.415271907749221 +1.642400625726868 3.288915941152873 4.581238015551978 1.4470358581968301 3.5403722752137323 +4.526849042416661 3.01145582278833 2.2559492125778164 2.0998335185233254 1.5234135092041272 +4.728512563052397 3.7609710092438626 2.9304901635160348 1.9872113979012207 1.351262923344691 +2.9706051546685894 3.322922497516739 4.968741000815182 4.028618668453755 1.0039708710297675 +2.6549599107185142 3.9857757074365536 3.720445932614764 3.0213795503372083 1.5032513068761655 +2.660196645453645 4.0071873674411815 2.9828593817754925 4.892064441891296 2.3365461619005723 +4.943874155718968 1.0782470599419964 3.060455768808914 2.030598841928226 4.000459740261016 +4.6165042889209005 3.0889952974900146 2.0048517788203037 3.1911107709975552 1.9340357068636531 +1.099642898540012 2.326175081581331 1.4549904413088797 2.0243178830832442 1.3522259175128417 +2.5342730057933833 1.7674524674534657 3.878560934846914 4.380473765726709 0.9164770743568499 +3.5240123664286256 1.8501243321355418 3.609914190239618 2.0033268191609515 2.3201345073635333 +4.4114165345844185 3.514767784439006 2.2518172228305127 1.5452028323912184 1.1416141545694085 +2.869342273045547 3.9738223869585796 1.0436500385187726 4.816612451187579 3.931300254297675 +1.5174952431683653 2.6933057455036686 3.0513533666629833 3.8645956608304894 1.4296479868921674 +2.520298150416198 4.531272030413557 2.3808589959748025 1.9933758852326395 2.0479646254615966 +4.709604273577543 3.4903592174022733 4.509930682336986 2.9111029503852963 2.0106736740370432 +4.445689035477623 1.921069528039189 3.0023350689959627 3.3576929593431406 2.5495064007706825 +2.8580895676602456 1.6194799045536707 1.8898342429997723 2.5811158711942723 1.418458383957817 +4.915001795883436 3.2310129339238207 4.398369952638065 4.987507332516513 1.784068759766305 +4.055715834776185 1.7106827701110756 1.134376916885214 3.6886499892994373 3.467490591599786 +4.184548142284481 4.336334585411947 1.1497358132017608 1.7034434724306187 0.5741352595042293 +1.783027078897737 2.589300362728505 1.9052382492128515 4.8990265598132545 3.1004588461882325 +4.200852562955672 1.298478048256798 1.2285264377979175 1.3726062539416897 2.9059485227707573 +1.6312286992260145 3.931471345877011 3.4074952914386625 1.278969769388035 3.1339650814093125 +2.4849918329979697 3.420269681577613 1.2067408862042468 3.6702950077464247 2.635117371923159 +4.0218068923331645 3.7778971034902256 3.576489577073029 1.1263967059548419 2.462203700386621 +2.243577879110075 3.0957003096534206 4.194495371877597 2.4949652603417367 1.9011878488598102 +1.974571339624732 1.7888886379079594 1.4040065199230116 4.995534378797844 3.5963245719471533 +4.956922247442963 2.4679101186980907 3.227528441885141 4.335699357463852 2.7245594424004844 +4.646790702231758 2.615582156431891 4.264083861478774 3.2127930278265 2.287142447127355 +4.332260138506035 1.7689237938243125 2.209018262640537 1.536669206419833 2.6500465032461458 +3.7246212305627084 1.2726401368542315 3.360116351627685 3.3311379469377598 2.4521523263945477 +2.7645424630999424 3.409756356272993 3.5220581100607173 4.52600175028675 1.193400100843729 +4.970432868154564 2.9772784054774424 1.602007939878817 2.6783231205546536 2.265197360108603 +1.5017002597456663 1.5165650306526963 1.4955862514756517 2.589242734133901 1.0937574975626598 +2.475577779768804 3.7556818100633422 1.8931738482177605 2.5370688028172497 1.4329225523157203 +3.9368943156573675 2.125626776271301 1.9095907809304533 3.4342616364954694 2.3675538678228665 +2.050736163061775 3.5193157171016414 4.4412621460513355 3.0392685875266348 2.030347715217442 +3.4186062427920128 4.020602787549363 4.130653037945184 4.3221161688600045 0.6317103532470353 +4.382224423364684 1.8498211720495683 2.2132061155968867 2.0477779753772074 2.5378007598800796 +4.953723267305316 2.5964822252290034 4.950280169970801 1.4183838821347328 4.246277984126713 +2.0008453064356204 1.266863369621658 2.1762526259281856 4.654070158539482 2.584242482524639 +1.3269811355487953 2.5059747102462353 1.0656201160708663 3.991001612907227 3.1540264347672156 +2.170517662496229 1.7355432070737558 2.807294668338275 1.8458352795845054 1.0552757616342987 +3.74511113551781 2.143950608864154 4.933469231788133 4.566176217873641 1.6427474517357206 +4.872612572692859 4.49497894399353 4.105457137906251 4.69975372087495 0.7041275353605297 +4.048550996703998 4.373386372267115 1.2056294546635105 2.823728454810188 1.6503824997535903 +3.4113138339999596 3.234884434856688 4.340670473969996 1.1173550027449766 3.2281403253143477 +2.9214752866388825 3.514374039316266 4.722884551277309 1.4449369822715634 3.3311363220494403 +1.1324754061359852 4.147306497292629 2.3131379756769586 4.164407028947833 3.537852966956541 +3.0297671556361916 4.947333277697407 2.9346410404590806 3.7768215022688256 2.0943561690244956 +3.8212264474350213 3.3745955666562004 2.194097589873014 1.4328888393616412 0.8825632586508181 +1.9567903553926702 4.7353344618687165 2.3649158726929786 3.9010351873463267 3.174896833045736 +2.669364774919056 1.1462083189171501 1.39113337754174 1.4493312978145871 1.5242678857026315 +3.128919521489919 1.7217720125278446 2.1913262664933377 3.203245119273319 1.7332177810620697 +3.261735792748964 2.959695742056073 3.2944172791090485 3.5213178006041 0.37777246971860007 +1.7620307791741454 3.1418457962142607 4.350079499617584 4.301655722851007 1.380664457211003 +4.475345922357354 3.0829955902838098 2.1738700843404097 4.284142478268468 2.528218547475705 +2.1385316424885397 3.6957650341115333 4.356476406930284 2.4342903155191555 2.4738179411589774 +3.520557842325914 4.318141246669 4.616924757314333 2.123871007706948 2.6175286598841567 +2.798950109625474 1.8326391414701764 3.394432791130398 1.3351651940568305 2.274717548078085 +3.7841807631360997 4.948502118997194 2.4032066783561543 4.373420422800939 2.288533683062881 +3.8505658038087387 3.3389271998561623 1.1043374505980181 4.313397560082983 3.2495908738396895 +1.0678462357925067 3.5562679048702073 4.94189984417915 4.987472476964984 2.4888389397456963 +1.5300772846866044 2.5660458955908463 2.2287000327232347 1.5596574272795105 1.2332270556056542 +2.170766743030582 1.0484661612641113 2.9884742649207015 2.82562275215897 1.1340543245551082 +2.574479213837927 3.2667475023006354 2.3635493222955613 4.521907560891249 2.2666595839086567 +1.695281311287991 3.017230858450748 2.880807161747634 1.4853438216592076 1.9222040835391452 +3.165694001318298 4.349076428379746 3.764469107653233 1.1074099537023416 2.9086693377336776 +1.5722064826500532 1.1115102392586382 2.6792028902690133 2.5042673385376615 0.4927915136591887 +3.819131689827009 4.096900809082779 2.7414397128070567 1.2493778320806963 1.517697051301349 +2.855828384876747 3.513765775195616 1.4613197203401413 4.348826350562652 2.9615158532681467 +3.998523480544138 2.795299090164943 1.5491198726912914 4.4299712168653524 3.1220271300603524 +1.906448450111725 1.145425489375551 2.8657249937342257 2.823472963932135 0.7621949755738676 +2.7597520248655023 1.011516283117667 1.2582731838268355 4.447661560809799 3.637104126631326 +3.0690264684022517 2.6918595878111238 2.125811453749494 4.101068276271526 2.010943651804962 +3.7664532005754734 2.7877445287306837 4.803106514379332 2.4988270320084505 2.5035124519801393 +3.088347084723888 3.0638045669134124 4.90331101944472 2.5678746809801236 2.3355652905027937 +4.851822549024448 3.6579707791087213 1.8260044219732707 4.403104965849403 2.840198806734763 +3.6257279128140993 2.8382598910568215 3.438909586031777 1.6482509960405554 1.956160543309181 +4.383957510497105 4.137866040719996 1.374073986488206 4.648645768626601 3.283805927254849 +3.1872317492105147 4.742568596316165 2.077436659415739 2.6988189211681366 1.6748697331986957 +3.149148337549595 3.7820645438668072 2.640900447965604 3.6073738352232545 1.1552721465075875 +2.5806879856465925 3.885516462979403 3.421531773240365 1.5537122413435438 2.278448410430642 +4.830037217306371 1.939610858282872 3.2927482347388617 2.919255321347269 2.9144573239784424 +2.876203504900364 4.6304665603818735 4.407851718037067 4.816226665815554 1.8011687777108518 +1.4294221776911504 1.9951612172261117 1.0849489448871883 3.8863555201639386 2.8579607171649073 +1.6115198570242897 1.3703199294335677 4.143213856258649 2.0042628398029247 2.1525075739394612 +1.2671973045160705 2.6434612634971044 2.8962701708366496 4.271758290154981 1.9457826320470717 +2.2187707838772597 4.666929533808168 3.4829122880158727 2.6083448543593293 2.5996825692526118 +2.0329873120110515 1.200679362194053 1.7214612696121527 1.5395049688388944 0.8519651511180864 +2.989935581449517 1.248952384638514 3.7710350301496804 4.989158295646339 2.1248168818800606 +2.851964953853328 3.5865189982085317 4.444591198820983 4.813246600318207 0.8218737428167822 +2.88954627566234 2.64312282224147 1.7717392871684305 4.469643146917523 2.7091345029076943 +3.820231832315048 3.781800477574293 2.3039528945949903 3.665563675383492 1.3621530337618761 +3.731592101136422 4.332029735241323 1.9775288961609392 3.738002735914269 1.8600520134946024 +1.3065407479242288 4.257251923582359 4.11460826156811 4.203912428941812 2.9520622751669885 +1.8941123207579138 3.4170253150647585 1.822789739874227 2.7603443170775677 1.7883714864265687 +1.1363194994482924 4.326652985762122 4.9704996414986935 4.9914482585079 3.190402262795391 +1.2810240198353045 2.00620775207416 3.2840406086633798 2.116023507893274 1.3748292232838522 +3.806435117736128 1.1606834057583257 1.5859432835899403 1.24472510346959 2.6676641407565 +1.0664682416097082 1.1124156292032246 2.3743319859845395 3.7556591629930938 1.3820911447401327 +2.8834427716051296 1.3066018729914783 3.429374841931639 2.8076070572559826 1.694999232330558 +4.8180251751935 3.4961934594851654 1.6707583074136436 4.069377263061189 2.7387245168224132 +3.4360576174933146 4.081506523956453 2.756724639564639 2.062894952832179 0.9476306902194154 +3.6481175029556074 3.429796613937096 4.840196330256188 2.5306042327558638 2.319887856646907 +2.5543019508503884 4.469084832778517 1.8394418993569914 4.423086827183979 3.2158380864109297 +3.276412012840699 3.7999824822148542 2.378536473115828 1.880928527477077 0.7223155155217776 +1.8685335913598382 3.0686586677876346 2.0783418443233854 4.958481357634124 3.120176888447936 +2.0983384339121627 3.603407306351269 3.669928849629299 3.777575779288298 1.5089135734859478 +3.311079510026385 4.643264923502261 4.802803486160093 4.191760272237042 1.465636989557544 +3.7430820813709103 3.817017043472344 4.738022731997094 4.227567280689594 0.5157820725756994 +2.6303736728510905 3.5626410390373526 3.726693488853592 3.3470322637815486 1.0066106933065408 +2.5249648503353495 3.808692742761744 4.4654519729399205 4.578416661942871 1.2886886058140834 +4.159456751396387 3.9670821584285196 1.8788014360947818 3.833081259625545 1.9637254422853985 +1.5781623748074423 3.083991339797734 2.538611133304691 2.7973381574233587 1.5278941536680593 +4.409428873130807 2.640832368370608 2.838641121117524 4.1856723644394265 2.22315693713587 +1.8338977978276771 2.5389948649838296 2.743284982236623 2.850081900796177 0.7131391560740609 +2.450739678668431 2.9360141371774757 2.4520367641734455 2.2194620607258857 0.5381285095262721 +4.850533027572355 2.073507649009097 1.6558718642742938 2.73674995292679 2.979960972179582 +1.5723258327007517 2.323633535687198 2.242050041526011 4.11330911887603 2.0164507926382966 +3.3274180233572785 1.2586268228989907 4.8439604267007805 3.299118545175163 2.5819437387381727 +3.2148638018966778 3.721526997156886 1.8630762892592907 3.7639934997398483 1.9672808224888658 +3.0955059292819485 3.2963319062005776 2.4761237573430193 3.916606822777221 1.4544148427488066 +4.954650338113458 3.3422204089173957 3.290614620199776 4.53338389817059 2.0357813622379286 +3.0652695760509303 4.805302582379721 3.8171498595531026 1.8065655565761736 2.6589780184294174 +1.2683426226351555 4.999303402900788 2.2706700548423076 4.828176197937923 4.523373300519442 +1.096993904301673 4.962764534565688 1.1547367148081973 4.356476959179817 5.019494313000133 +2.114099480986684 3.0822351983486986 2.092046121132786 3.370840039298279 1.6039328702813958 +4.335614551515425 3.3630306137513455 2.896806837861569 2.7478662121062714 0.9839221646030047 +1.4038702385012307 1.4976836978587174 1.9310599540033464 2.905749281132651 0.9791936731701218 +3.8888516514202793 2.6438107240030164 3.5237373319983103 4.571355703693921 1.6271543146420384 +3.8243774913944386 2.8696766715774933 4.728152021296543 3.4218815863855725 1.6179604767983806 +4.443226375662094 3.534879740963608 2.5276704543037707 1.005190960442305 1.7728613645733076 +4.060755551682371 4.885603812700175 3.472451490372599 3.8689968210620527 0.9152173801866438 +3.233121502778114 3.4761309818636645 3.6348560828471315 4.391843706153721 0.7950370235182697 +4.825228618351205 1.2170356700639 1.4432512110167979 1.0061901166147886 3.6345672028881397 +3.86286610848458 2.7947413569651576 2.9098225752889495 2.1472483665083475 1.3124061523422499 +3.958118671475929 3.9478370746244886 4.393857072526263 1.8775007904093055 2.516377286851734 +1.1451625848444325 2.3097791983897706 3.2094035818313347 1.3679095999717426 2.178860239155074 +4.711849361651277 2.102467876634097 1.6374556936900984 4.305292283928166 3.7317856056536183 +2.390462855691088 1.555215863482545 2.7312192737282794 1.9399355584390383 1.1505509358891344 +3.2584949995577865 1.299863443793098 2.6744922776533047 4.028885979679318 2.3813063371445793 +4.401469128481585 4.937123665267502 4.703032195365283 3.096979075693758 1.6930246324215057 +2.6967762966379683 1.6872175055192935 3.671923879344135 1.4066633784543394 2.4800431628535193 +2.0732228915071764 3.423812258781104 2.8991799905556577 4.841245535957658 2.365525358484021 +4.991393313244766 2.423666019093872 3.6742041993203762 1.1028954450593704 3.6338481210511198 +3.8974497813644087 1.275774229664174 4.277777930531345 4.273216500403367 2.6216795198932195 +3.2726827453814624 1.3700526423469448 4.2487619508282295 4.348383172441387 1.9052363886848365 +1.3699496325115539 1.010803274496535 2.7935313658279672 4.494334040072992 1.7383083280000937 +3.258703329892725 1.4388124245573333 3.1817127829369642 1.7370537268884876 2.3235840194719337 +2.5699042509712995 2.0837449499812175 4.449326780345915 3.0153773061740514 1.5141208539667266 +1.8592591077259937 2.497318931457413 1.9261930117674413 2.3995806998352767 0.7944911842647343 +1.1563126961279604 4.338893245640445 2.0862544304463806 2.138550917036426 3.183010191099748 +2.8104480735008974 1.069029580273026 4.849601919140479 2.287760340824807 3.097671809753732 +1.9238741036366318 2.5761077947397157 4.718890335649846 3.279660759797584 1.580123590045359 +3.153711270487691 2.096930057027758 1.982331374251622 2.491434251910037 1.1730184453630417 +2.8979939999277677 1.9928904464466997 3.351462364230836 3.85860872564824 1.0375017467083942 +4.0919933640819846 4.998765073083407 2.0097020314166003 3.796288004475986 2.0035279811816733 +4.760320849724289 1.7400170604507013 1.6092192742746052 3.260740671188433 3.4423477314130535 +1.5416351715892724 3.6795338899446053 4.533020732134235 4.3678653335543975 2.1442684616496694 +4.650750094839349 4.823648356636809 1.7647077981345465 4.965463994137988 3.2054225985331484 +3.8974939645299025 2.848942516640521 2.885121468324995 3.8197184748506894 1.4046108726183586 +3.7854916604368403 2.972159484106584 2.0799748522491392 2.716924404357407 1.0330604827332392 +4.136129345205216 2.1322454983898154 3.367509155858956 2.5090635273234483 2.180018203749549 +4.05633927998425 2.011310561233548 1.77116905228743 1.529616503744685 2.059245030156109 +4.190353321361712 3.5169007161324215 3.4725175454894304 1.4248777090729523 2.155543391159134 +2.8819319999312136 2.1441557882544156 1.4020906735997243 1.3690163652131515 0.7385171957317025 +1.6439451005668033 1.5394908400225802 1.555660187833194 4.531201776824119 2.977374420586111 +4.58898868137011 3.394160724340903 2.926810263851238 3.746017064002128 1.4486937662294435 +1.230153366830514 4.212704927887477 1.048128748102692 2.130333731307312 3.1728191628323597 +2.3895197600050624 2.8313254715481926 1.1870281595682286 1.5183306890722523 0.5522260884890319 +4.0661186480724165 2.269894874216422 3.0307366550860615 4.632009478241153 2.406344634490361 +1.8267654128811341 2.0505264788491377 1.2023245325744512 2.7515944147681113 1.5653453876111478 +3.988185819689124 1.8713719597782248 2.090908527277816 3.8780456031441743 2.7703356918335795 +4.515773658793058 1.0973254638781649 4.314866786029594 2.6285380920263983 3.8117571440918705 +4.986649431419108 1.862426162146563 3.0579880894057303 3.8688506571568886 3.2277343664006852 +4.92701848393995 1.082191392314142 3.939900842283347 4.711489588036916 3.9214849938605316 +1.4021171193838247 4.700979206675157 1.7222032967334537 3.241543315285353 3.631925820131988 +3.9025175509830365 2.3267339257148216 3.003412895394143 1.9035143665472845 1.9216843672733879 +1.305710461741803 2.091609659259062 4.7786764631582095 2.1989335797771767 2.696796412971019 +2.5994857751798532 3.276936278556224 4.184481697394936 3.486286055626702 0.972839318032045 +2.059553719825807 4.326219214813011 2.6631230121292306 1.0891858476566316 2.7595381250987696 +2.928054648048233 1.8601311882220526 1.2618688371707467 2.742933738326394 1.8259281906696951 +1.8402008598970596 2.359796640552215 1.5542489243488213 3.0008823009480676 1.5371167494909348 +1.316163000261711 1.3365435317023886 1.2702917553943234 2.998322865258677 1.728151290460657 +4.483574372894226 3.0076119294104515 1.0918997209579255 3.379584506799792 2.722492757372724 +2.0841881868541012 3.642250946109606 4.624444679852573 2.9783438598897134 2.2665408602673094 +2.180450871980992 2.727822506937147 4.084133404843813 4.831333337345289 0.9262415699399293 +4.105021985944281 2.5914030210861703 4.756879064529018 4.791930803755429 1.514024767036832 +2.8049964601068167 1.9794566825070143 3.5120997715590505 1.9188356968924953 1.7944376099554438 +1.6407110856267133 4.38603780701885 1.0381544497615267 3.0549590375391884 3.4065113463000123 +1.4245006831045357 1.2984989243389875 2.73888528363873 4.35106668785779 1.6170978088296795 +3.326446623457871 3.7741424627521205 3.8513855091636033 1.1240434925307698 2.7638426221860453 +2.2726798453488137 4.011304903124181 2.565254811066496 3.6017794557974807 2.0241542507079573 +3.5126725776548517 2.760898904890609 3.2149415513325343 1.2770679665106113 2.078585501203164 +1.808722896136556 4.465884020882101 4.520298121464904 1.6281855889254588 3.9274444800316064 +4.780802855033743 3.5039647073016553 2.4457381751051193 3.8419360439355175 1.8920053235734975 +1.4226489300357676 4.895904681028819 2.505351943783594 1.7287639894695168 3.5590159261503773 +2.023675354668981 4.5825258400563325 2.79496760283646 4.805338302105075 3.2541214106183656 +1.1213997597676397 1.1842331420553847 2.0018058854890755 2.8530366993389573 0.8535466784993367 +3.2866522710320663 4.967338498450159 2.498577679071972 2.0488746476055333 1.7398100504201504 +2.754924093003218 4.784745825973004 3.8291467426668735 4.653096292595409 2.190677778328867 +3.850130685067152 4.08715593665911 3.4151180999772954 2.5084947176265366 0.9370949403968423 +4.519118117152345 3.396140211696734 4.347032987787063 4.353786715510449 1.1229982141480164 +3.2555711447037954 2.646286576761437 1.927706004250091 3.362517245740885 1.5588171744759098 +2.3338374646391054 2.7672725171983616 4.493760655501122 1.6569792251866162 2.869702916359855 +3.2357632566158303 3.7417998368538234 4.840781673826665 3.836594091084272 1.1244846472375576 +1.298414100834866 4.39684297357216 1.5132426437984003 2.1763646439144537 3.16859468320737 +1.4720751830622403 3.6285263588902192 4.133860163580192 2.0391660547604245 3.006330833965902 +1.3029266820742107 3.802349792231743 4.884945571120095 2.3403205778267098 3.5668238308168396 +2.3349227438968514 4.349468336371354 2.389676546165961 3.2468225465128966 2.189313410653941 +3.0784363789522877 1.7360505527849805 1.0510369723350692 4.8555509437586375 4.0343929239790235 +4.186477756963309 3.2579473689897838 3.5181283697406216 3.3496743829950786 0.9436871446834129 +4.74236305867583 2.4632032873959377 3.9862899670052108 3.006648738049699 2.4807793534472338 +4.386734175088039 1.5664357980383343 3.7525696873894945 2.4559287572240995 3.1040877302952277 +1.3580893658378734 4.1284079010211485 2.1772051618596397 4.964172224771243 3.929611965084356 +3.6768040231307917 2.0943415414609503 4.933977981616259 1.3080943243268037 3.956162256795268 +4.283525868129759 2.630647393908011 3.0004902627807657 2.6963337771990044 1.6806303633658006 +4.778217657413972 3.402968658284286 3.9066128273422507 4.437680740450814 1.4742262166779856 +3.652423618420143 4.8127288430049795 1.1315391876518115 4.893493313557382 3.936827029425704 +4.998997040361973 4.207353206773435 2.4182753638757917 4.541803578424545 2.2662903691370557 +2.4515323535968716 2.8216672671766663 2.924361144512193 3.3311537470820864 0.5499818867529269 +1.5100484989333616 3.2352717868049226 4.13674330994742 3.5582892755147237 1.819616570315247 +4.738949672172977 4.426121105534597 4.168736513138171 3.5907308393052033 0.657230759389825 +1.959517828848122 4.39417007207224 3.412876359821736 2.914437413946911 2.4851504840152105 +4.718679428993059 3.4742945160523404 2.0998271219102613 2.8805227820118993 1.4690063053833402 +4.446208417739646 4.824376858516503 3.0057565422670853 4.490267605929613 1.5319218216789166 +2.2529637360265724 4.793679960113556 3.116924357154618 1.5645548857885259 2.977430084312352 +2.915354019616496 1.3907311611236675 2.447152995221193 4.425999719448058 2.498061091851486 +4.290458403724989 4.2227494903414335 4.5879701362031025 2.730316736766169 1.8588869383023745 +3.3096010094302115 2.1413444698574353 2.2650368545811452 1.9143323629173437 1.2197610350915966 +1.556649410227534 2.7033102968556144 4.944676217599721 1.007111042126314 4.101127978986223 +2.4748195388588186 3.7113986745684278 1.8412212112381727 2.1668183596723356 1.278726500054168 +3.0332665479773318 1.688490170204525 1.2585156849414436 4.104564232679751 3.147763625544186 +3.810259565449782 2.8065758901705595 2.7179359415497246 3.220123127633961 1.1223069499424883 +3.8895182368897623 3.21315494783575 2.8500872937274906 1.4207038846874105 1.5813298924699433 +4.567619198726399 2.862184764803187 4.829163005272523 2.6117754694450777 2.7973762872473733 +4.66630836660221 4.971217308376685 3.8551401696991143 4.839104935233596 1.0301243238499702 +2.7733238800006097 1.1129443684199258 1.4571403601889457 3.883141572747403 2.9397860476252373 +2.042119298400471 2.1814092948691814 3.190421245631478 4.780129739924657 1.5957991101464308 +1.5272047979767582 2.133727329213763 1.4876554652103806 1.2383085633454334 0.6557769882877799 +4.517636093698593 1.5694916342995469 1.808298258526202 2.847498640799676 3.1259387690744407 +1.8208615504957035 2.291125970737269 2.2707541859019966 4.856987924353211 2.6286410129282545 +1.0544532955974768 1.892449712284297 4.668301644837312 3.4957908480756483 1.4411868591208505 +3.374479903766969 3.9051246259813643 2.7431004434112913 1.3392510210875455 1.5007921314335 +1.554734151123641 4.105354145209107 1.416499045560406 1.9818782622100044 2.6125305764426674 +4.608214926188481 1.1428910646752457 4.133415650336103 1.5818605692248062 4.303359478026194 +1.090295154046474 1.7599646132974391 3.514412325211964 4.271157042680253 1.0105047016563753 +2.058385431984592 2.6706275836298556 2.287445505405059 4.582415847399952 2.3752324776508464 +4.147559674228132 1.8415964427488567 4.8776294567255505 2.80219320698674 3.1024026256539043 +2.744885761645634 2.450072874939546 1.5654216087294661 4.421434094647486 2.8711882484239175 +3.7775196077596624 4.8472302881936535 4.5525306512113435 2.354837762624222 2.444204363874052 +3.0590050696400772 2.644350453333576 2.0976236892751654 1.7550442534131623 0.537865336956956 +1.7725635515064866 1.8955052099649814 4.943448502148156 2.6102520501647954 2.3364332506905194 +3.3580114276044988 1.6479174254980178 1.75968199829587 2.2728619235970218 1.7854341577814223 +1.579200345006361 3.793494554902834 2.628311691807862 3.924856288349804 2.5659553267356685 +1.9048592894966396 4.0027474828336285 1.6792892250115075 3.605784523511427 2.848248410319056 +2.327198270360083 2.023941463320484 2.0591308838733995 4.397281920152327 2.357735133442278 +1.0860676438004986 2.547697960625313 1.0512589441752165 4.140159275937174 3.417260370914183 +4.097489643169803 1.5346242055209571 2.2114811411999336 3.6182678310415333 2.923581372599452 +4.947623407072061 4.8850689625028725 4.315690022229651 2.525186870381787 1.7915955445670475 +3.0221796624216846 3.899453723458902 1.835687919828064 1.2740421712115788 1.0416600813642152 +2.3950113106159105 4.910087863634221 3.921960164353081 3.6700581646788706 2.5276599227313654 +4.570720722528874 2.748177318495236 3.7492441162255554 3.4074742337838324 1.8543114927462292 +3.1237827145052726 1.7665466526940197 2.73716662731227 2.680170316296303 1.358432297521797 +4.957528697540187 4.924116543572685 3.6472465187996037 1.7601786304146638 1.8873636606140174 +2.5662943073773388 4.825712723991744 2.4363549669170106 1.219449468222392 2.5662873132386297 +4.555088819606735 4.9775501016128025 2.2014937428142325 3.601509556691258 1.4623671953035464 +4.466357752676727 4.943576359079868 2.8195695499163227 2.574389000863413 0.5365175672158768 +2.5324674166676684 4.410595169220926 4.958277440948579 1.3124107172191501 4.101183734253844 +3.4007051334392098 1.2003515611351516 1.567646028051347 1.3927327761872101 2.2072948350478505 +2.5636942805269523 4.404994951314885 4.5349288051715035 3.9293879011150534 1.9383157500081338 +2.3315897310075155 3.55120729554697 4.739839179105267 4.159550104845854 1.350630376319886 +3.41717466045885 4.502124510713473 4.2389779260184 2.0533950985374467 2.440059112674766 +1.7805450085817864 2.064057956255544 1.3212283470221307 1.1600934938316327 0.32610432749564394 +1.3879946351022339 1.5008704436279756 3.8276530786755107 4.002923480645788 0.2084722090763239 +4.90974889638451 4.870009374330878 4.598792060243191 1.0251418884847023 3.5738711196296 +2.0345352803201933 1.6017680029973747 3.877812458367624 4.245928653631745 0.5681523119174454 +3.6946228698003942 2.705108861655733 1.5250520135698062 3.964624001240799 2.6326126671699184 +2.8371207849862228 2.396319742963621 4.136896386850861 1.9337675488617383 2.2467937678895926 +4.962703272801427 4.2683057721928055 4.734944077745594 1.915680637718872 2.903521006144575 +2.5362092188953618 4.926150427531008 3.7983605371881897 4.463207241977131 2.4806934759464996 +3.761759174332046 3.534031617493819 2.880441557834301 3.7972653630353217 0.9446828726756866 +3.873109899435636 3.325046806472211 2.2369159603451743 3.874648780605489 1.7270037476584812 +1.3671013289644245 3.855092972231672 4.080801705998112 1.3827910975344322 3.670063168441412 +1.2761493482714958 4.490174826367808 3.2166437557809 1.922905241383598 3.46463838192201 +4.844889863713984 1.0904427376256391 1.7444557846956235 3.8203694293675903 4.290138771966273 +1.2296670441305722 4.636749203953672 2.922847418359808 3.5670106371470056 3.4674421547046923 +3.690037619284079 3.3949419776230103 4.711201009303019 4.624750302713853 0.3074982315349535 +1.11051451704801 1.7858408648603374 4.7789423326420355 2.4275216674030182 2.446476000487771 +1.8198150124833599 4.866153151669359 4.97945371335569 2.022953281362331 4.245123185802284 +1.286376656700134 4.520594944568096 3.5036414264324094 3.7699066193470254 3.245160255909934 +4.625505176388133 4.149981581608241 4.707792602135758 1.0681798290800568 3.670545439983355 +2.6725777937971436 1.861953452671917 2.1708892399857103 4.456643472901681 2.4252390058957047 +3.318341873375337 1.8566768340948219 4.64639061824091 1.6491200531343835 3.334680723473974 +2.8138143094311663 1.813144340179388 4.96967823701632 1.3532457980761867 3.7523224771840757 +4.955545891368467 1.3441338210329667 2.308838651145816 1.0153697503585462 3.836060340905598 +3.5544469683042577 1.9638466167920416 3.0697116329622265 1.7909266586023511 2.040906781036158 +2.4388783055546157 2.4963006369335545 2.581606995791693 2.222904024444493 0.3632700728030082 +1.6819568966543077 3.935610172905036 2.387909104712911 2.1025628317198337 2.2716460078688936 +3.8409978114771746 2.0226989544599197 1.037504294103487 3.070223522482923 2.727298699235884 +3.6211233023764997 4.272414526004072 2.351972539876013 2.585076759692587 0.6917498357575473 +1.7070562584613023 3.3684421567400613 4.256529040655256 2.5171412815315164 2.4053425701111726 +4.778808068611445 2.216129007707192 1.0430086553181783 4.157010472635899 4.032906059835162 +1.03063289478977 4.43157438584575 3.7783356944846345 3.2806980639589534 3.437156708225752 +2.229269144842087 3.166838961892234 4.207247917490619 2.3820064973245856 2.051960867982907 +3.53130346768313 3.76821254992226 3.782298235884909 2.7566463413436275 1.052657457116752 +2.2015659530535774 1.2262300572710467 4.369378167176716 4.206715901640053 0.988806918579877 +1.2822694140500492 4.822018364707816 1.152167801459464 2.7771781253583963 3.894930190190945 +3.7585142586769003 3.706802944295703 4.494633128668924 1.3749357827054847 3.1201258933649387 +4.253311461762383 4.210701333403485 3.773635481539394 2.031884402238793 1.742272207573653 +1.8694387690604235 4.454812302510279 2.9331116441653537 4.200395427841959 2.8792645755179707 +4.857989140992743 4.308594186717471 2.53894127829891 4.841716591774751 2.3674055335191064 +3.1035674095889636 3.1862010709049104 2.905002204874539 4.369019291613315 1.466347282278509 +4.245141784099315 2.7429636906452433 4.899237054638269 1.153663146565373 4.035574671009047 +2.189550909982447 1.7966049067636347 1.402266239406722 1.1550703288777608 0.4642331091465589 +2.4768171189412644 3.1933601670432523 2.1853095014435926 1.469460997726964 1.012853898672767 +1.4745304319860435 1.0322117610594703 2.2381921132658054 4.231941160028118 2.0422245391033473 +1.2667145688902912 4.2743319266770445 1.0108626553264584 2.9239704593352216 3.56451169736044 +3.062903127699856 4.2761728690778025 1.2400774585771708 3.461152057385894 2.5308488376069875 +4.438455045078158 2.899887979769969 4.3733960356583035 2.4173320563984855 2.4886492130086975 +1.2518368799069552 1.0931037713739968 4.452539353084555 4.578934888429465 0.20290892316421769 +1.7301971613377285 2.4198220704033053 1.5777079464187724 4.08494987529278 2.6003547075557902 +3.5112290022748587 3.2570674057555515 3.92075048305679 2.406202750917636 1.5357255451652478 +1.7536183370540956 2.4314470331508717 2.510546257702102 3.712528572269431 1.3799323265236192 +1.424018941908447 4.1349256425151175 4.193990248931397 2.8444315487185046 3.0282542536442434 +4.424402466724673 3.7204357425453227 1.676379260166784 3.599054898862496 2.0474986594344258 +1.2715920644703282 4.445759964740635 2.106538655326769 2.053428517835586 3.1746121882539824 +4.388052489158824 2.9987696642647577 4.556292825106919 4.6243438016829295 1.39094849040451 +4.8319667328136715 1.7728103011506926 3.579502128391512 2.1940616091399487 3.358256021474392 +3.490526941122882 2.4167779918311494 4.3525442651266655 3.763083460931699 1.2249085050677362 +2.77029238766659 2.23670073164837 3.759725297767343 1.918662100426459 1.9168290878362906 +2.5512000681053295 1.0953508389484456 4.571546282273729 3.7133290603408557 1.6899804075961566 +4.774363864011738 2.346333050520784 4.670662200772519 2.5034288098352073 3.2545712777653497 +3.0850959594936773 4.517169821555874 2.919815610562789 4.001400755773426 1.794620286506884 +2.3330460883881265 4.421270634982536 2.083058088620265 2.1714637053975583 2.0900950480964253 +4.621387931197068 2.1567395183200597 3.610368616407994 1.0624283152210583 3.544924763307358 +1.4651248057196105 3.503754442388693 4.138375044718137 2.6250576410363435 2.5389250402073156 +1.6156465009401781 2.420562950008762 4.932179585416316 2.99863596291393 2.094392854767421 +2.8181303404359013 1.2140261294635661 1.338057972686992 4.949156029396739 3.951351603544297 +2.9240650861143367 1.758449788947134 3.8802599199308903 4.9811148687305415 1.6032905660817907 +1.384659296937679 4.485846337210494 3.182880208616597 1.184404276988558 3.6893450784729556 +3.0050663752893363 4.754549955544881 4.701123609009191 2.914730049287752 2.5003789208433975 +3.944394175837245 4.654815692471207 2.342013540305869 3.546629089040446 1.3984982486759159 +1.6302714882266032 1.3770395011962981 1.7778488494221798 4.495490363122611 2.729414192870567 +3.926609709265245 4.186567062126087 1.1896096356542398 2.764931860071453 1.5966270497674817 +1.6306438724683807 3.702144667206047 2.716201054990014 2.435566685956116 2.090423687122263 +3.4393326273225107 1.0488477866040018 4.334015036569458 3.154945701059275 2.6654497315922914 +3.464072134552875 1.1667057887718206 1.0614882450083245 1.9469505549726684 2.4620998414148008 +2.082587691307934 4.233152326804463 1.1885995154287543 1.0106143545614987 2.157917275740027 +3.6587424366849075 3.702395187846 1.2750111545520033 4.165450862003192 2.890769320629795 +2.606676714915669 3.007489470703445 3.4001738164080497 2.4321768114068933 1.0476970301062232 +3.7900358175444 2.4396518378604592 4.684512876213761 1.0668120922135325 3.8615147099477563 +4.072074503710799 1.9493512563729567 2.0967077434727 2.198392470220426 2.1251573514547752 +4.831221440732985 1.1992781468504852 4.665843652159939 3.6238624378914395 3.778456952363825 +2.9837635304369443 3.6938574243310422 3.3579886016417926 3.74618147580196 0.809275630236333 +2.4779575426536553 2.161290952650299 4.904064880369106 1.9149211816116578 3.00587055294231 +2.0893685035233127 4.672761654909259 4.594469502207069 2.265360726947832 3.478313939485249 +1.4609683032949712 1.9099515135647946 2.7354773280904783 3.366807343434937 0.7747022081929488 +4.3892255526466535 2.3696247230712735 2.4465322972656094 2.192392675700152 2.0355280538648923 +2.1229505340746178 4.912065904740384 3.0115303406572127 4.539699491513371 3.1803247482784625 +2.5642726280542916 1.1475245248625825 1.7939037068945498 3.4581755026187313 2.1856293825670208 +3.328743146239325 4.3644705100277985 3.477362608227899 4.246261783664172 1.2899368643801146 +4.1480520843205735 2.4418988940549897 4.502247988565965 2.7330261852333515 2.457865842156755 +2.2351642676295644 1.6761431974877854 1.6160593184505694 1.6807813923695063 0.5627552787089857 +1.8342802723268337 2.9165245241342315 1.5587934410942594 4.033212886616862 2.7007414191200425 +2.998433674642368 3.004579564618687 3.2041407283560392 4.380873563889914 1.1767488849313577 +3.5459840072647353 1.4694545315288243 2.2274865804036517 1.14193312058093 2.3431604677727766 +2.3707075672723414 1.2282242457843386 3.903022478976972 3.746483644824466 1.153157641641456 +4.798703973950067 4.589800422587389 4.382451384318059 1.6873528806061815 2.7031826868493254 +1.769176174169249 2.902131283360872 3.269972817657839 2.3355085674465075 1.4686084278548954 +3.7296331796109685 3.762764322906113 2.2585370667176337 4.416677918667114 2.1583951467489153 +3.8693985850792667 2.076376120604885 4.974347428308534 4.052179679491593 2.016264594508342 +3.4868069521438745 2.9246627848791715 1.275953147454488 4.992395665220448 3.7587166762936937 +3.898835526338927 3.409655169342884 3.7583623809044635 3.1168292308344197 0.8067603140397832 +4.10477134900853 3.536786857202323 3.018636370102203 1.1609344923812661 1.9425917351364002 +4.962241671857493 2.6833311091113625 1.5636810664687224 1.096533134158764 2.3262976042753762 +2.518200110452501 4.2471906701109265 4.811412627580806 3.057001479219613 2.463202556202391 +3.9321474712714726 1.3999760675076578 1.5338290431698933 2.0419922619431157 2.582657909006373 +3.686372837025677 3.145172429839477 3.0757796631862377 1.800735902522188 1.3851478160639865 +3.1347623428228983 4.289869821232528 3.4811565255388603 4.688030133909134 1.670573911342607 +4.735744913124817 1.9569423707206401 2.5000562337435226 4.834161398570144 3.6290205965442284 +2.934860395720518 2.34662468952726 3.2368623963719556 3.482438106971289 0.6374391544900961 +4.628382763800484 4.2469701410649705 4.2517177593211315 3.3808450121662865 0.9507338904861917 +3.68959664004362 1.4671058145918905 3.3563211763706424 1.3677933599431613 2.982232107989409 +3.5008071573795245 3.6330035828794003 1.45154011349887 4.007328845942098 2.559205333653145 +1.9090533023020062 2.547757430957522 4.239572244570693 3.6901248869889343 0.8425172773986176 +4.496372978727195 4.72836867673272 4.619695873787592 4.987551274331575 0.4349018275455337 +4.906394746750932 4.36520791644296 1.5190208933973572 2.3890138571410007 1.024583301768206 +3.2765737503676906 2.8501027070002896 1.8849023055557468 4.298696081498376 2.4511788885371573 +1.6574957782725859 2.1185129942454535 4.254576524727758 4.5460027134992185 0.545404525948614 +4.794733761507568 4.971471095550941 2.9961161355797525 2.157484261263879 0.8570528022609305 +4.973571899201021 1.4162148911763839 1.4917222451987007 1.1712791883227807 3.5717604392290903 +3.2543684622925158 4.287182235613466 4.63792972305768 2.7485702102777543 2.1532263371260947 +2.307893935343348 3.62167362770072 4.703305203141188 2.6707017444057075 2.420226001949832 +4.086623572728466 1.6447419891631094 2.143655874374432 3.5915931307779854 2.838892031521647 +3.323228892789424 3.1213575547987973 1.3733998928275217 1.441960132101952 0.21319602133129262 +4.002649783082802 1.9820131624727906 3.1484600316007794 3.9577819987461704 2.1766888613337305 +1.4717459780465583 4.138537198225617 1.607965677489946 2.5249365715272503 2.820037416868025 +3.176612262689226 2.241866285712498 2.511137364008696 2.6347702237614707 0.9428865920591017 +2.553857095673318 1.1159383516432118 3.6141297585567553 1.6138059743421937 2.46351487840597 +4.081481274487215 4.439900758689798 4.317047618301195 1.16285146101629 3.1744949086881378 +3.3401889294167235 2.2145140128658247 2.1031489512858226 4.952453422105625 3.063605716339097 +2.3812776353091283 2.2367425419972586 3.5434328665482844 2.0744551607012265 1.47607110041297 +4.711054778593924 3.1832912496503045 3.9939698800637307 1.8536709012998052 2.6296275627678085 +2.961018815254308 3.9304928013306126 2.6176252965007656 4.977522657032994 2.551273282485758 +4.6978022961289145 1.0759269314409932 2.890569925851168 2.220266075910169 3.6833800250013558 +1.8045841332023143 1.0096373699733379 1.0098049828932876 3.691959830583144 2.7974801131293896 +2.626243032522523 3.540465511607766 1.531761001926542 2.733107850828053 1.5096479697698924 +3.841816142207545 1.0601684136228093 3.8591544733703307 2.075533541238363 3.3043710014887746 +3.8401697025261976 2.7497673606382533 4.92139152259338 1.2807866380677568 3.8003922419174763 +4.351671775154633 4.357566338096351 3.3197927067421347 1.694144756311052 1.6256586371723474 +1.9435225962123073 1.1042374541906579 2.5048460621378417 4.496150641721281 2.160947356667505 +2.950568512412291 3.0608073293148435 3.2586332688644304 2.0829717737096214 1.1808185923086219 +4.751309968940687 4.82789235322551 1.6108886028381844 3.7970028053503917 2.187455180799902 +4.044077747290158 1.3819513943443984 4.535867909735057 3.4076300038296257 2.891338356431181 +3.5776728131553726 2.6624866586343545 2.887263290482408 2.7556382491237033 0.9246030764277444 +1.6246633895049905 2.289801262690225 2.3758463297536645 1.3164646200318209 1.2508788899164274 +2.9045079549980883 4.812737174910177 3.2901908848287587 3.025415003054465 1.9265111012645773 +4.016076414964362 4.8782231465663815 4.193764969689505 1.6528286499821525 2.6832171674353886 +3.3513714166002218 4.623555339294398 1.2752617931783408 2.477196473396999 1.7501711083987963 +4.610118851835279 2.187157334974124 3.733760016537894 2.8316269893311046 2.5854567315983834 +3.2465693857910614 1.0554573844723012 2.2943874473358883 4.088108425242065 2.8316791394689815 +4.562930623554251 4.00300222539478 1.523504363520221 3.1683887561293216 1.7375743080842445 +4.95885607485359 3.556753995501991 2.2068583891927913 2.303848872888139 1.4054527366117775 +3.7807025859857717 4.510725319146326 4.127768515112908 2.857990673880397 1.4646736691209763 +1.3616914248390048 3.5936215473072846 4.991156659732688 4.352776087648266 2.3214309867829592 +4.26809698201413 3.087945954689476 4.617752506233577 2.237802316243395 2.6564862796803115 +3.2771562090451822 3.5175437611356735 2.689260222556774 1.5399940452580134 1.1741375223895048 +3.153920598946973 1.9960566446461745 1.693598319911258 4.626373681680972 3.153065216463586 +4.117091733709611 3.9003194940536408 4.7087407069109375 2.6147776308642356 2.1051535734317413 +1.5095570881792648 4.507929719366753 2.463332237146115 2.7587631103725156 3.01289193903623 +3.0548024592766962 1.4171315533946447 1.1558445271892017 4.485145625662785 3.710284598284874 +3.7819976384923444 4.3949816077089565 2.085040045980316 2.8144231698314655 0.952758672422043 +1.8025770156597662 1.3861731314594143 1.5145974359597996 3.286876501585629 1.8205398323664064 +2.628006023878506 1.874210087933521 1.9365871945207322 3.356993807617949 1.6080308640002785 +1.484362559263594 3.9842029507564063 2.926673495401184 4.5909910507549085 3.003190787811779 +4.515806684024564 4.5824374191788575 3.5319932723821603 4.894903094188044 1.3645375909963595 +3.5393080503287457 1.2215654558741464 3.5388944816715124 2.9742013327687036 2.3855416757136956 +3.3767617459416965 1.055637454027388 4.22735666324912 1.1126743328933144 3.8844386978745553 +2.4568162758894863 1.796771859708869 4.954440267976075 4.978319966859082 0.6604762458635093 +1.0826966836836793 4.337556549790554 4.533980790705621 1.3226400698493697 4.572397836302393 +4.716391985480473 3.9678597877161934 2.2791091040503133 4.264514568783404 2.1218235813756623 +4.172885078516316 2.420507424515094 3.18887655736421 1.902366938475145 2.1739214433223926 +2.2943060277668055 4.407767660884698 3.4979399990129276 2.940684481751336 2.185692976193096 +4.2118953869039775 2.3953355328103396 2.4533452630097377 1.3618968480690206 2.119233197640435 +3.5741212221029377 4.112200155214974 1.1568542819060301 1.2116353893783844 0.5408603405638878 +3.730538883038706 2.5372580884345752 4.057920824420807 3.690239788423387 1.2486426226119312 +2.540339624588817 4.852124307377272 2.488503553229873 4.6894742972874415 3.191961878809433 +2.279225801201327 2.4974259795943508 3.558791236727052 1.6009732696121675 1.9699397224810222 +4.963603661367246 4.263726947989689 4.655284439372265 2.9828462863997496 1.8129745694427957 +3.6430628089833577 2.8339296849353968 1.6141458964326265 3.9033678531820764 2.4280102099652288 +4.559335017943027 2.238316216675221 2.605946240634899 3.6963877734909785 2.564408511219724 +1.7060134958208208 3.015663279017559 2.741732350608992 3.597244774326912 1.5643158446307999 +1.1348280429668316 1.3988776894434896 3.3603977119358235 1.945858270130202 1.4389732618183728 +4.611598196143465 3.0276099014296025 1.8067206938116542 2.9536015867487007 1.9555957405288564 +1.7844746146448154 4.41636847053089 1.9276733035344966 2.2772941920558862 2.65501413072348 +1.7831787220916553 1.2872985549135394 4.712827401953895 3.1129701027601535 1.6749449298362287 +3.6873989357603087 4.682597340311959 3.7658415770568245 3.171311369330912 1.159260985421647 +4.883837195486281 2.6305050874928777 2.6041136040813275 4.555702882035424 2.98097405200706 +3.996538954630265 3.7877647346103096 3.7758927896949026 4.247253601817029 0.5155266143948062 +1.5766020117893147 1.521707316536896 2.4751472142390876 3.3631847979593195 0.8897326439254232 +3.4401255631415317 1.4274613982789885 3.124583123417355 2.7665932466896552 2.0442538473392564 +4.53612689306169 3.869766520500898 1.2276161163278227 1.2696871779091121 0.6676871425614946 +1.9444555870015638 1.08937051757772 1.8536010164597885 2.1601402075447007 0.908370382400578 +4.7655677193786925 2.8477714018012565 4.377948162040166 2.8366944565634657 2.4603669848945775 +3.2793770448007886 1.8016682889054767 1.582286269412874 1.9859958832302351 1.531863120366253 +1.8319492300895255 1.9344566801861927 1.1156659314668507 2.050640239336863 0.9405768090391815 +3.9515382826797967 3.014928060060538 3.274085893361951 4.502906184076046 1.5450689356742535 +1.7259861837545452 2.5836413284037163 2.3481234254713277 2.725169899072883 0.9368758671235795 +4.223679494458773 3.8334300985958567 1.258494879040152 3.958962080738358 2.7285193234461635 +2.1936501859253568 2.8370877157385546 4.556090604768208 3.201904811872366 1.4992768311599596 +3.8998596144100355 3.4758576175423257 3.8048163382363014 3.1030050004459144 0.8199492955048733 +2.7294127074973806 4.440315852099587 1.934728406785195 1.6603679297403882 1.732761738258891 +3.756601665250155 1.4651046259819158 2.948289707239801 1.2174902802861887 2.871693809812957 +1.0516694153392083 1.3718826292185815 3.341472271517402 4.813541953282156 1.5064944906351108 +3.7540764059749168 2.599277660048622 3.6786921203804055 4.583482600063428 1.4670398616663345 +1.769976936362986 3.2581080880998377 1.8525688900779684 3.2242575698622784 2.023873553119876 +3.1863971059636116 2.7141448235151286 4.498922407944482 2.8225864508377607 1.741586764811535 +2.5002900065645517 1.2668458351239442 2.8866841367929115 4.558456294819194 2.077548235881097 +4.082979475057145 3.367582303235799 1.1984721567681325 3.9275817289834016 2.821317453000812 +2.530837662157622 4.699321164919229 4.639156021638347 3.5388274293603383 2.4316750837095302 +4.074495207769685 3.3269946994482296 2.9684184247863117 2.618154818989499 0.8254947628462695 +1.3715675544498294 1.4330938530262007 1.0245446584271756 1.4317161445145268 0.411793764521867 +3.6095357115225557 1.3924855698493261 4.27288486270324 4.6322897943150165 2.245992706034495 +4.2011640241070065 1.6763107969138358 2.3446753006679626 1.9723206704117793 2.552162179317958 +2.870749385933122 3.5106036531576765 4.07059474172565 4.082028587293732 0.6399564173519526 +2.41640110355594 1.9773109683152672 4.876686300005253 4.845038537474239 0.44022917638304215 +4.445732691287962 1.4275967780736094 3.5360138084776866 4.98791828575219 3.3492045326859303 +2.0402839775179102 4.4695796321149 4.415040175663979 4.475359058150106 2.4300443915756342 +1.2526652277276171 2.0049900139174457 3.090298907462278 4.124363032317557 1.278781137735573 +2.3178524515971493 2.2519880343700693 1.5561778386768133 4.5283384217447225 2.972890286068296 +1.7801062380943504 3.502986681175279 2.8295285857569525 3.7214191639339953 1.9400478923448554 +3.0049459522488227 1.3480189407145131 4.3350225336371135 4.918265780347317 1.7565818530273725 +1.3587745606488957 4.077227345720402 4.196727800465059 4.735996498330169 2.7714249535500977 +1.0167193379779338 4.187988336067484 1.1450945579779916 2.639411076261319 3.505699490124375 +3.6123711112501184 1.2302463337763392 4.050850546604214 2.4623806530283185 2.8631722019905683 +1.9090624522899504 2.5418002667116615 1.7701699515514027 1.9448370814851308 0.6564036472159867 +1.9170868139095076 4.743000194604052 2.7497812147566254 2.1940817470536977 2.8800326966188745 +1.8010905733280018 2.287566048656915 1.304792053925787 1.6141576836888536 0.5765114751461508 +4.442431605717779 4.149642370117018 3.2935659840971994 1.0354757106628325 2.2769930213908367 +1.4834644986933045 3.5739207300432665 2.3060582223280446 2.39358542762979 2.0922878068893436 +4.933854777502388 4.269412034101624 4.9567027035218105 3.939925833852887 1.2146272522678179 +2.9798325995322257 3.0903348929521037 2.340282375240486 4.9331287630680105 2.5952000207539485 +1.0115624588647472 1.6459544627482674 4.819221594970422 1.037158746528441 3.834899295177961 +3.990693631365521 1.0562347606531035 2.901002803961112 3.484992779836391 2.9920048722930925 +2.44489703501548 4.590857880568532 3.7868305292888063 1.6229824765078376 3.0475213446620453 +3.3157044388430648 3.616301869428507 1.2543269569176494 2.8104125082804288 1.5848536394363282 +2.529882508807664 3.9185512934227407 4.163202752623802 1.063692173408307 3.3963755422557567 +1.2138328077497391 4.833380656107773 2.126621249441497 1.2907370014212396 3.714812122118918 +2.792524270623358 4.801142459289985 3.938028137479829 2.1639959026935234 2.679876377354615 +1.028407304739967 1.705456790414936 2.09053884868897 1.2284268383638772 1.0961902774607668 +2.772571465334897 3.8924892124372965 3.449729673111071 2.8736388188686597 1.2594032049413981 +4.797250517002962 1.8121434723534082 2.021265315011628 4.636050754842751 3.968370819917064 +1.0255668792683887 4.733803998776571 2.628846933626084 3.667831096742233 3.851040200478892 +1.7480734941984144 4.279645495888479 3.248448936959167 2.6339220953380496 2.605091176679593 +1.6162834102669557 3.8614893824685783 4.211986947321218 2.7296185880422885 2.690421121349061 +1.8646705058868687 3.1404988750935043 2.8862888921096883 4.574286248113855 2.1159095211160426 +2.5700196985737445 1.584679235191334 4.05683419212985 1.2469455210719471 2.9776450716158585 +3.1763509338158284 3.8920572511864404 4.219531867669202 3.531012333620769 0.9931236989874297 +3.0762994940595974 4.007426747944555 2.611847437710779 4.73503850164626 2.3183913079768956 +3.470549693048827 1.6974034423044335 3.9212987191659114 2.108793625600221 2.5355911225452874 +3.2887718924869866 3.972793669977512 1.319543283901338 3.2746256935041482 2.071287768616333 +3.3401092349181924 2.922650905833691 1.034948887461649 4.023641195219915 3.0177066071729794 +1.6432473507052605 1.4936049284775623 1.0522414395967896 2.2078953329193527 1.1653020105027583 +1.296887366552462 4.079669013839042 3.9321265461720154 3.149277410742882 2.8908003157114037 +2.0346090204345844 2.245862446482129 2.28279193840403 4.609681693564269 2.336459702773943 +3.002310855931487 4.680529148636586 3.207439205667323 3.254299621245771 1.6788724003086717 +2.25872158786115 3.5052682867819036 3.1802371033798464 4.779117068284354 2.0273864492896427 +1.407134635581686 3.0278032015556797 3.047243129451313 3.9890873485311764 1.8744698273779599 +4.250865737640666 1.285241873324665 4.356413344170417 2.712206300729905 3.390920480680719 +1.8100372940332976 2.06160465641729 1.4618203192698753 1.856796378652688 0.4682864778129025 +1.6742309703516138 2.8290567354285328 3.5208449715671044 2.801337046332758 1.360630075428485 +3.4039426595376105 2.130217851303703 3.456822658043879 3.1074391971375204 1.3207738980860462 +2.599766250504823 3.1814746352669596 2.907666132268589 1.5098312339713167 1.514043278047335 +1.7632942366234285 3.683740572872003 4.5158632011273685 2.288292073963169 2.9411200684409593 +2.1189722553918515 1.1327981464097876 2.4224706646846674 3.533624931956988 1.485665904200556 +3.5915954028057353 4.146553926768132 2.2147057897791975 3.363145320298479 1.2754968908538626 +3.301346629970943 2.72216299950919 3.373790120392101 4.808330235328872 1.5470484863628744 +3.693638240661064 2.2114754387642073 4.440433712650789 3.096489718985161 2.000747867532703 +2.04665665139732 2.1174070708324915 3.662331612203048 1.9914542953457945 1.6723745483109778 +4.355112530163435 3.575140734362317 4.975067887686521 4.713317825356974 0.8227205463428896 +2.185435687404702 1.4727220757850454 1.0498533861783583 3.091714478881588 2.1626736725828892 +2.0268203326473424 2.2316659772443277 4.90318075265553 2.7020800345704425 2.2106121571331867 +2.017378493642901 2.6768754652053057 1.7147051093700307 2.6258585638582623 1.124783033800662 +2.9965258342746224 1.9343884269452043 3.0811348190904884 2.1232568348830383 1.430267843684457 +1.8229248552232091 1.257437326003679 2.284119155222371 1.5280869550022644 0.9441190780153021 +1.8725051661716523 1.0633119190465767 1.1173094199999931 2.281490348647353 1.4177838149094004 +3.732151234852484 1.8292373650754779 1.801906924962334 2.409835630813532 1.9976632617104448 +2.3854211166386805 4.713074445758134 3.0772074556696696 4.0600554671934805 2.5266500023385086 +2.3341961961943265 4.69248070283036 3.103185592608189 4.824106915024325 2.9194307685208196 +3.536342275791551 1.3753894244150455 1.1111680031708162 1.5360612975128167 2.2023286624500544 +4.820069802709007 1.801700435550246 2.8152254692511716 2.807266251468631 3.018379861076152 +2.5973967200750714 2.909159482288299 4.697782304804038 4.350851639092701 0.466429959065381 +2.5551740316956515 1.0458370088276334 2.3365018500152663 2.538507464536698 1.5227949687657474 +4.844495193560622 2.098328283388194 4.009189973973825 1.2413010628179024 3.899056517034076 +4.135195319509256 4.0022356559064205 1.795272744598717 1.7585176007028513 0.13794641259628665 +2.625045749671651 1.0465818586391595 4.198846658028046 3.4408951042828155 1.751010797544733 +3.4774847842558194 2.769431010556019 1.2687584514895955 4.836938507150346 3.6377532978564777 +2.865366121507974 2.191761212381097 1.2449230440836474 1.04890037367591 0.7015471907958931 +1.7598761650823533 2.8979286584257427 1.3590228590899311 1.190268290803779 1.1504962329023727 +2.1135087174470413 2.888905950048084 4.895932965728144 4.340169607627082 0.9539988357084742 +4.676462607388283 1.9698702680176887 4.860872055272425 1.2229634259359656 4.534315966817957 +4.417110068405407 2.23022476974526 1.6068115623600874 2.727795649890677 2.4574524683079155 +3.7262983273457846 1.4619847817559268 3.3461345805310105 2.9332137272305245 2.3016558091582926 +2.526787494782854 3.040163801325952 4.905366977675448 3.4451683196754765 1.5478163175728412 +3.351654443400009 4.773526310855948 3.0540848387065984 1.11998142467373 2.4005156995188 +1.3496253076294757 3.6064723522803956 4.063642409006697 3.0966537963927134 2.4552852298408645 +1.316750816069436 1.1203616791682083 2.475046912495247 2.2882491172841357 0.271038944413052 +3.720477243431528 4.985175077767908 4.360103247171835 2.1468943006147367 2.549069330813799 +2.4535273204087296 2.1799178780358246 4.030910328262543 3.1676034463047573 0.9056273512826818 +1.8476826780797744 4.520993740969939 3.29753297959155 4.821960026755187 3.077412851909049 +2.0123223575816396 3.37851882608643 3.098640657837714 3.516879118075996 1.428781368921589 +4.0279889945200305 4.525532203430096 4.396275483046832 3.7080205133203563 0.8492609422820039 +4.829265637797665 2.3420960108581896 2.9501489520657014 3.479268248791116 2.542829129795678 +2.351567455827819 3.5869391778476114 1.8425147724052766 4.6554302908273595 3.0722364826533 +2.1852763642857838 2.5239323265924996 2.1734237221302184 2.723662930044133 0.6461045168791344 +1.4544779009195206 2.3198477515355287 2.268240594765062 1.5272738076341876 1.1392527191041604 +1.1242799005317843 4.729051941965466 1.3454747021607147 2.932744131388161 3.938756873895871 +2.939149957494325 4.314815996423485 4.136372849011067 3.2968271651569605 1.6116122380836855 +3.1802996111789343 1.6039719646771253 2.237917767567273 3.340759737668868 1.9238163270290385 +2.2887337611982383 1.733728330924364 3.6553244561359484 1.1336953207692435 2.5819846095520638 +3.8287336043451874 2.3538209271012436 2.271704209875549 1.025618192125501 1.9308282598737443 +4.593732681120384 4.749004478986203 1.3371615841621542 2.7838842581600782 1.4550312115800772 +3.743561947745548 2.4453790935597493 3.549054734001896 2.851797472081769 1.4735828487744893 +4.551086798685958 2.2561568826199725 3.90172569623041 3.914783721284588 2.2949670654876395 +4.019207798747447 2.9151377150874156 2.501564267279212 4.539347764660292 2.317656646665276 +2.395080404685407 3.683539147762325 1.5859882640841754 2.544651171908878 1.6059764952981925 +2.2891429123154867 1.7542722033487128 2.7579513403854796 3.0824904882189257 0.6256295499631381 +2.7212968697551574 3.601579409891516 3.439298410992289 2.5926053538927154 1.221387114476627 +1.0347516124920166 1.2076621395480895 3.483153195557248 2.4872013458051465 1.0108502052190727 +4.586928026674206 3.9183775297287706 3.2401528412803136 1.0891867251275809 2.2524686456870295 +3.2481402815144893 1.3429008755546237 4.641133584867264 3.3668084321912093 2.2921260412039195 +4.076156698075799 1.967934631240273 1.1093185059694552 2.1072041619900777 2.3324613749393506 +2.672114280748287 4.120838925628365 2.1811000394613225 3.939408340615252 2.278256170536958 +3.842199883283518 4.844077858329735 2.6581036884945477 3.4152756647125933 1.2558140302021827 +1.3333563209889112 3.352399485520913 4.317119645423476 2.183781768968841 2.9372888511958393 +2.697095318194674 4.829238854334036 1.5406258571808653 2.9145718915599357 2.53648649988263 +1.1718307810372859 3.9152349211566855 1.207272662805194 2.331362043685564 2.964766974356041 +3.22489770565493 1.9132410326045837 1.9067561059215885 4.696564097177772 3.0827701594563233 +4.660530597868833 4.7902359224748015 1.1196483749761397 3.5503005509717993 2.4341104066791166 +2.886870780274003 4.819049945737419 4.632040242927452 1.6591723522108195 3.545597244908799 +2.307607718977991 3.4813843013145416 3.0793675387015185 2.4307417403668357 1.3410693089870405 +3.764916341874016 3.9423210774628283 1.52355289297949 1.4654351151240257 0.18668185855136932 +1.2878557455442525 4.500581476863694 1.168384469984567 3.509307664911499 3.975113586959366 +1.6311236291167766 2.549873789023038 4.170182707142772 1.1699220360056062 3.13778041792287 +4.518469275017026 1.0311640732735232 1.1251839762305922 3.6602323143799356 4.311353342845033 +3.4027572490653033 3.6390987610155427 1.1345063608666144 4.474822550197576 3.348666832483853 +4.549658441723409 2.3183404141290214 1.9043215222818803 4.206514374330041 3.206068007433615 +1.541369675233772 4.239500525654034 3.8267050745485935 4.17675120332557 2.7207429827643246 +3.0489943079576762 4.948250527306763 2.164692950373806 1.0579760664471842 2.198180258282846 +2.0698416167823344 2.772537641411191 1.1383823087610692 3.611198899404815 2.570720442598175 +3.2381163500982253 4.146078421451093 3.2582976150921374 2.433262386461928 1.2268163071529055 +3.2749100563079963 1.1987319067763424 3.764851380508258 1.3911243565735143 3.153584578341094 +2.226288874670105 3.1466192044608707 4.344648859101387 3.703159952092305 1.121835965615511 +3.878825956163751 4.845853948231085 1.064666791342717 2.176622282157302 1.4736309412449524 +1.5153565274390708 2.523347774811156 4.478126627093978 2.5462092156809937 2.1790711872950315 +2.721513766673082 3.8067404939391167 2.0365625301072385 2.5941361092561936 1.2200841551866513 +4.192135828340831 2.062198313685752 3.4835334481539078 1.1390202091016643 3.167550495955241 +4.812638327285267 2.5219381664770046 2.36702594869711 2.973920779518633 2.369731749039305 +2.0375215250393266 1.3485721285311363 2.609682805000796 2.1481623911823027 0.8292480710379693 +3.301429621342218 3.528281300287421 1.5432907394127469 1.3394409731305874 0.3049859200906634 +4.172389049591535 3.184277536955048 4.835227815236541 1.9962213652598253 3.0060475685547896 +2.9769911359944405 3.2579899315257816 3.894528509056815 1.6465706569600083 2.265452455447643 +4.223394112606497 4.150502842112921 3.594290105574447 2.899898448781829 0.6982069251571232 +4.318143058288483 3.6950017675621547 3.955717982774656 1.7612077421285046 2.281267249690159 +1.2415526968754405 3.9557785408163277 1.7263407309796301 1.5448003043305767 2.7202902158454605 +3.5528386555944236 1.6891166783018732 1.6255514826865527 2.5850027172067573 2.0961885125306834 +1.853627433764181 2.984639810727874 1.8388284545992906 2.3605884186658845 1.2455611012502907 +3.2403637233057205 2.9289859904991142 3.038714558512066 1.937460020002589 1.1444289628786504 +4.229466230206025 3.562159975900876 3.9569963973260935 2.8054816587892457 1.3308958750038837 +4.4725711827326435 4.558052911588197 2.1825143685079325 4.153916552103322 1.97325459468686 +2.252719336868016 3.008465411410733 2.9772844749495015 4.5656644929654835 1.7590063134676854 +3.6470483843719936 1.8404735873486309 2.4503731255693353 3.944128896626395 2.3441456441113626 +3.088783639640141 4.146072527888696 4.134558760160012 3.0203890723825726 1.5359797805882538 +3.6370744534621298 3.848534214376382 1.4900085348181134 1.7657632617685919 0.3474994962894848 +2.459200375329998 1.3581872000838353 4.063678973909643 2.4880995201530203 1.92215520371422 +4.784195703975719 3.092072184661628 4.611126767208619 3.3560441390613622 2.1067782057190856 +1.7695418103191032 2.0969565351463144 4.851239828797565 3.5526269705178732 1.3392519396002494 +3.884120266724502 1.967722303344921 1.9355862285791967 1.4430144117383201 1.9786884921056491 +4.95545864310373 1.8212135423420968 4.822679266532051 2.1189413693815973 4.13928628728865 +4.996478551351014 4.787126800166803 3.503056478285185 1.2549657118793394 2.2578175855730946 +1.934356654311454 3.642007128309562 2.3249416537730454 1.3913827154959542 1.9461763621478432 +3.995488865103358 1.6023507981968699 2.7763210728830563 4.618049690463073 3.019780473493085 +3.404706979791916 3.0711455631039506 3.6164189892402776 3.002652677946792 0.6985501439279034 +2.328699794310617 3.457620531300368 1.1706875641286993 1.6632991312585408 1.2317175757760384 +2.0097836349351224 1.2004307121983007 2.466815748900284 2.4058486614458467 0.8116459445443639 +1.3913853430968652 1.9735543836069098 2.905486322105 2.2463296332961433 0.8794363718483797 +2.306989158908402 3.066481981157235 3.529314292943189 3.1995198877358826 0.8280058555067943 +1.7916352075541062 2.9843762062663077 3.755439190979652 1.610688637534036 2.4540957655548525 +2.412213699063885 4.286554431792932 2.6737186577448115 3.7753230332382883 2.1740941521639843 +1.3895731892530239 3.2011832727388994 2.2185538015866286 4.908522020514023 3.2431250536214478 +1.850955522502134 3.1842480063746184 2.205448269000213 1.3394097931781568 1.5898715322802184 +1.1630647808698935 4.606814679426582 2.6270706324634294 3.27292942870003 3.5037903687985374 +3.143219467565404 1.0843517487321384 3.046526222297416 3.8592578690109742 2.213474421181195 +3.089987229786774 1.2236913511953462 4.3682491252421 4.097539983107502 1.8858270721576245 +4.875162653793529 3.4711030267771767 4.9223921944750995 2.601482281649926 2.712564517143777 +4.688344727673499 4.32178269711881 1.0890268670500425 1.5274979179196833 0.5715107914073926 +4.567194750842885 1.9366042920041093 2.84599599403434 1.0587599483453118 3.1802859690826164 +1.3380933334221985 1.8118044602026222 4.927113949074023 2.5382703884683218 2.43535947832818 +4.393885177981451 1.7828479974781275 1.9069329774548511 4.463152529265574 3.654007875611403 +1.0794184665770445 3.980985149780027 2.041839299254444 2.32415684471549 2.915268840698694 +1.399075894229501 2.472633850601593 3.209939614553058 2.9238726278628797 1.1110180046083056 +2.2358529709042 4.938733470320583 1.8643767515070988 3.685521854427302 3.2591613154330967 +2.809479182609397 3.385627023423047 1.9605608955697553 2.1282810958861478 0.6000636633461501 +2.543416166009263 2.3783230331106995 4.543250165142097 3.228982791314464 1.3245959657337198 +3.963070639910021 3.008284896104683 2.5433511435907366 2.1134685123229358 1.0470983207128357 +2.6467799557156604 1.6191247759635226 2.0400306904643277 2.0194615532720963 1.0278610109719268 +1.3886049944519696 1.3456146710643107 2.7718267260526477 2.891345946933666 0.12701579454926515 +3.3561234185524103 3.7682324452227105 4.093047423206087 2.580615051627605 1.5675731333694305 +3.1290611233465886 3.313208424476953 3.162913936435598 3.032985014388288 0.22537025823735732 +2.5192843807104093 3.025824281628224 3.9018784014530565 3.701120631368615 0.5448727865025991 +3.4770865660401817 4.5725115770030405 1.438859278799967 1.7265851834006836 1.1325820724438824 +3.642094024313579 2.6237586607328787 4.926625635349245 4.530826963766389 1.0925490840899508 +3.6577998600368855 1.7367423529006896 2.171980559102558 4.3111322315830005 2.8751403137238727 +3.7642149598756243 1.4970884026508369 3.0448495980672776 3.370615293080044 2.2904117783754665 +3.614484286824107 2.2694482811557233 3.4741981506403214 4.057836644128095 1.4662045381272828 +1.2689696512753326 2.5682951352470424 2.128184801754853 4.628268228164098 2.817563460208928 +1.1848032179199084 2.8175392863082136 3.7361421478840082 2.336837138465962 2.1503212732981414 +3.1655511053118617 1.757506287083693 3.187000704920762 2.854336209386965 1.446808859776561 +2.296351013957083 4.227477068700142 1.7937311940445606 3.114731528648201 2.3397200096016664 +1.0998156038924103 1.0604183099633633 3.3329300345564477 3.7331787348800973 0.4021830042153726 +1.0136037923178325 3.108472790353866 2.560688821966144 4.7708847249817525 3.0452326756160155 +2.6022509491111414 2.5556447611912234 2.0144172924167316 3.2984175126771262 1.2848457893386152 +3.9470415582317675 4.107732149265344 4.847755550362322 3.9089241484081483 0.9524840509646131 +2.3943242666091478 2.004802422700498 1.2171474129784912 4.542097780487187 3.347689085515291 +3.693402408676505 2.77117765241448 3.3716414838853668 1.1403661888868886 2.4143504184631315 +4.272468946875344 3.524230583907001 2.965794522834904 1.3357053245574098 1.7936140728034307 +2.221196808519759 1.6115700185515514 1.5113076162386299 1.069315997742701 0.7529949627106359 +1.8918725352050862 2.1437092733107415 4.454482934279072 3.610123729092967 0.8811153216476307 +1.9334824007464908 2.1212272219925445 1.381796656680022 2.582364859020385 1.2151593008225234 +3.8200230919787157 4.732478668805262 3.922211228866518 1.8758718559059147 2.2405535050542 +2.0901550612594026 4.938793435324193 4.390725378315308 2.5184828282786 3.4088169138811852 +3.448163404954927 4.754905636190841 2.7064039691877486 4.004420968859242 1.8418532488587689 +2.0042758213180387 3.1963073240482935 3.662281151001851 3.50498730080063 1.2023645282577466 +1.93653307571409 4.6270872548622055 4.435975722944711 2.868505225999509 3.1138473870318415 +3.9403145122015704 3.819757600660362 1.7004582058022133 3.774449069639761 2.077491774280219 +1.413566134113291 1.946340671174124 4.631960576698692 3.5002203059127543 1.2508735938770998 +3.1521984798544 1.7105738045757581 3.2182701190371983 3.319360160002987 1.445164662159546 +1.2719848326595748 3.229684497221719 2.6669477479518697 1.6868594189980284 2.189328917540319 +1.3716687708836752 3.202692416632529 1.0851787059003097 2.63369279448004 2.398029081104175 +2.5701126808990904 1.8563911788997283 4.8602997823176075 4.987705860837547 0.7250039249963096 +1.5653647736393408 2.665975525190761 2.5537253656336207 4.613470449983158 2.335357325749673 +3.3958852224535376 3.2257474442032144 3.351150600977978 3.741964770490419 0.4262423942777806 +4.398377123390686 3.253145907412302 2.1383126174951848 1.7907779218533415 1.1968019479956558 +1.2433901389081274 4.953398708380345 1.72547490609657 3.6777455489586943 4.192317288629115 +4.280974142531049 3.543383550849605 3.2995624442504767 3.673337482068367 0.8268903553874285 +2.3277506636215737 1.365167044331653 1.7491209832739703 1.6182411721261665 0.9714405535550632 +3.9344742005739994 3.175374073604865 3.0599258340078697 3.3445366622883665 0.8107011325630836 +4.833206315776504 2.9723700475969927 2.1620064631389617 2.869672075148261 1.9908546494891952 +1.7029566796653115 4.936049353193045 2.216625686894434 4.255772273642316 3.8224347002747145 +3.906139226363465 1.0253661727204642 1.0168922758395875 3.4316498098979724 3.75897690002045 +2.513862876584413 2.355424922697625 4.6143212042932475 4.711864254394419 0.1860570661245402 +3.8734993377847724 2.165250506787338 4.437543547144841 1.5449706578659734 3.359329097959174 +2.4798706803717647 2.7492363450848076 3.6005647965560987 4.675049665947895 1.1077344428509046 +4.443215433358012 1.8874532235122423 3.864965950025693 1.0142705176281388 3.8286270282658785 +3.878053525864636 2.1542186604138145 2.3223644520775455 3.0748839467476454 1.8809285561132814 +3.0754468145515013 1.6584420399143935 4.467078022707971 4.770239531750274 1.4490719208890794 +4.503556783886127 2.703060447594901 1.8097847582956725 2.416217897922476 1.8998811041314534 +3.7387226581726165 3.929997578236942 4.291396283890544 4.873424100080918 0.6126520006210294 +4.066025734010684 4.547499005477745 2.6893177706078815 2.7853592006163286 0.49095872272041496 +4.363129973015569 3.106979035021056 2.5566815270820227 2.3826330425779347 1.2681514318024738 +1.893956432949215 1.7267020236125767 4.520494218088018 3.0384828666105843 1.4914193519431473 +1.4710373219624833 1.1595691944357105 1.6678338855983652 2.8254766909668647 1.1988116029161895 +3.351616035948841 4.297666380782934 1.130831248842751 2.7366709186773046 1.863795133638634 +3.308473099978913 4.905164562298575 3.4807107671475976 2.5505507160940692 1.8478694072959818 +2.9938091821220465 3.0280673732786245 2.370539654499381 2.2257147372949637 0.1488216392349813 +1.2577527747394308 3.4232203962036567 4.436104874173266 2.2530640603589256 3.0748849107550527 +1.9670816986398623 1.2690405509485405 4.18692699821395 4.954609817758779 1.037592576734489 +2.1105202000029415 3.0059739112298445 1.7812558126549902 3.427016832626961 1.873597257632818 +1.569984123688033 3.606178560401058 1.9000416483170768 3.246465729227496 2.4410951619624623 +3.3317880202704 1.3534248521170915 3.5092900261149116 4.809999468341376 2.367649863937376 +3.5167968425086515 1.7263095816090486 4.878639821012159 4.2863864756949095 1.8858973080428416 +1.1723243395924814 1.6327355480543724 3.4934088946658597 2.927897536157789 0.7292335548224468 +3.844604806369401 4.621959224648826 2.459236419300302 4.227039015643831 1.9311669817127326 +1.2424845059278837 4.545803236295061 1.252909967801065 4.628133576996752 4.7227162784214105 +4.572151539883649 4.826795525845091 4.987008057219658 2.4797643702186387 2.520141755059186 +4.343839827940037 4.514628516906759 4.425385615122275 3.109260776639403 1.3271598874101562 +1.8040153900952522 2.66715841531459 4.008807768366353 4.63612270416874 1.067023856652485 +3.5236994613426984 1.3104321071994924 2.861973194694855 4.707911032044166 2.8820199305823544 +1.6635699909292931 2.8208666099683786 2.445399729194066 3.5750422086155935 1.6172283684603463 +4.79280401459877 2.208961204166089 3.8181766999085363 3.8057729965362412 2.5838725821684787 +3.919444678365477 4.359385413481576 3.740260772901205 4.571259800584354 0.9402697668354716 +4.0774092368922545 2.528232687141351 4.008872997495151 3.148163807346954 1.7722212876228742 +2.118367301618094 4.548118854982325 2.0308450975452392 3.5387487979198795 2.8596269303318964 +3.9440732336682647 3.202869839667736 4.230415263407659 2.3247587299813106 2.044727193213909 +2.332093285192836 1.4100588440935877 3.170135843633849 2.4100952542169134 1.1949097071052885 +3.8407636883400733 4.950207472614003 1.0798979038868461 2.380585263367819 1.7095768826167612 +3.5374932881055776 1.4313452529758468 2.6793677459435465 1.289982894495953 2.5231428440167387 +3.2412108877547845 1.1079408020855896 3.9421576403913168 3.4085085312581973 2.19900491815949 +3.1494202376159404 4.7089901094316335 3.2632085347229265 2.6037969259401086 1.693245952268235 +1.5584314792756704 4.108319197040944 3.9472382060122087 3.252340812413726 2.642879066631722 +1.0999861734562262 3.372958215114413 4.26628981188089 1.4841318476979093 3.592604186356545 +2.987731700195756 1.3275695962005454 4.948796322098291 1.992671145557439 3.3904003113084578 +1.125461888146655 4.2393771070851525 1.6694409842200426 2.594366986236294 3.248377456506949 +2.716023149387467 4.099692426705302 1.1794074557159404 4.934514406889425 4.001920649356342 +3.255647361184924 3.8912136492908496 4.076245525499337 3.482121134482666 0.8700162633983769 +3.8620077562899837 4.344360047261166 4.617002145131384 1.7736928218142411 2.8839333627300294 +3.8458860337576093 1.008935735296269 4.424552778517647 1.1841945582914093 4.306763099048709 +4.321241478124991 3.7060539144586824 1.5905462695910546 3.9645438183919577 2.4524110789593134 +2.7789281673815514 2.721048841922487 4.951089670519158 2.860419825615889 2.0914708739792327 +2.6480271117993137 2.297148636129997 2.7756688836131667 3.73997897545725 1.0261625884431607 +2.3094010903101565 2.8494549865791776 1.9259830136322003 4.552589704666564 2.681551961134045 +4.125717363568665 4.127106451869551 4.5986150719466625 3.0560947043348166 1.542520993070659 +3.6050870516038587 3.154501738396614 4.131724676432957 3.763476334759132 0.5819226457387555 +2.4312321857177515 3.8293419910259594 3.7250028604597 3.92088895818618 1.4117656997467616 +4.952926294720294 1.9859972199697782 1.9909084210098058 2.4366252655314034 3.000221931806086 +1.6448721798949597 4.83610719725115 4.513863390508264 3.5839335280059177 3.3239660776208284 +2.9059901907048507 1.0566993187577416 3.2840014693877406 4.911075585971398 2.4631782131878697 +1.296389497915897 2.1202588777357727 1.4872037965581986 3.8178067054156437 2.4719366241430163 +3.565581074259587 3.600469767258822 3.2371716398619785 1.6740617624258416 1.5634991876677167 +3.4048782181100226 3.5570573443219007 3.4634867646663126 4.035073864853271 0.5914983512696779 +1.0663115444225197 3.805955132286178 3.374517332569448 4.158257593663729 2.8495430836157905 +2.8257367551774797 3.1006158243556614 3.632675678011906 1.9882736095551365 1.6672182416879817 +2.068498171447312 1.1118775050851255 2.7882290033567836 2.17874894369409 1.1342790848982776 +3.6359904507010223 4.866278935479974 2.306282580464379 4.910143678543429 2.87987888180547 +3.165851178996878 2.2751639599808655 2.128594798274038 1.040843524730009 1.4058899513173624 +3.2367697448907675 4.477063763763195 3.798970068618105 1.4419242697418264 2.6634553030323285 +2.621052820760313 4.294832887473953 4.437373713884652 4.419267627161249 1.6738779949877929 +3.857998676621041 1.0228047894692307 4.053301852699672 3.11715063947051 2.9857500685377905 +1.5742118432408487 3.659770731861243 1.7423947580628973 3.7527965610772833 2.8967691118670515 +1.5464616413949388 1.303847596526321 4.3670509991047695 1.9929835848163862 2.3864319940768146 +1.3293782208580374 2.294468864605115 1.5923884466657316 3.40551812583558 2.053981300824013 +4.229851823387432 4.645178255270134 3.6191219257926615 2.2861811221883417 1.3961472812471278 +4.67109560941385 4.913931321273321 1.485152190942534 1.331258189501571 0.2874935592909985 +2.0293675435999687 1.423141329756909 3.477456017675665 4.674970799348792 1.3422190114419208 +4.229651607944649 1.4670367987381145 4.689553517779054 4.943758741737891 2.7742856521878236 +4.588433662308153 1.9449541444674217 4.671340891505153 1.7620396143708117 3.9309054786879547 +4.716365939592814 3.661135202338481 2.747094090058426 3.885987273906013 1.5526073531517286 +4.621158868332997 2.256469331599135 1.085266405637038 1.0365889596327658 2.365190499492188 +1.3215223037225194 3.7169904869743666 3.9327615929753494 2.2305114094261524 2.9386941835388694 +2.1091898762779073 1.8362313260211818 3.879821317134571 1.23119516451401 2.6626541019260928 +4.207046091861276 4.1277158861371674 1.6613325502038618 3.7722602889659984 2.112417856347474 +2.782062872402126 2.5603061619796743 3.0858909965709773 1.73056034042563 1.373352549822792 +1.861883457051868 4.4962056483533495 2.3890651637812352 1.519305813001289 2.7741908254214582 +1.1646024929986414 3.4007318585174553 4.821790546957846 3.0590399740099627 2.847378464792425 +2.3934587899786255 4.277627659227388 1.268378270987422 2.749404982908134 2.396566804674728 +2.90021212769553 3.6472992061389964 4.9263200607234 2.077842570305313 2.9448197086062358 +4.848712789033652 3.4778928961211375 2.7202689890916774 2.7434915218902813 1.371016580802092 +4.857230298612822 4.715928372527763 4.511794360991181 4.101873589899158 0.4335911356197517 +4.57266692899588 3.8758234372861677 1.6163398963728515 1.4624822279432568 0.7136266769626645 +1.4875772120890516 2.9016360283770726 4.0986464668343805 4.653860056715136 1.519152548729111 +1.3271152577800684 2.622567193642711 4.51940939357736 2.4290452023632287 2.459231215246052 +4.364273532349916 4.578320171149633 4.942872835913088 4.320969892062146 0.6577075605099307 +4.643914503998968 2.774997689181821 3.426627429573109 4.7709635837278555 2.3021923803352853 +4.695038611678746 2.1216965441540125 4.292080980262083 4.269526839513523 2.5734409038789634 +3.1819486926410625 4.134722621018124 3.8569422906134148 1.0225567764035408 2.9902373487330114 +1.5793719904331849 1.7757610540017068 3.486077072430957 1.0578770621203093 2.4361288870587186 +4.817952715161871 2.962435968881779 3.477630178524158 3.333637630423036 1.861095443451118 +1.2400707250768184 1.7947072817160503 3.2889623686237885 2.852746755865351 0.705624383631152 +2.963325704968547 4.895711343371136 4.71380515688777 1.9305431012499308 3.3883125484314394 +3.08648172355722 4.909704348352795 1.2886157996404624 1.7270297436709603 1.8751926636713474 +3.0168193248857076 3.1007653161827498 1.2020522385222656 4.570469083979697 3.3694627129879677 +1.5126412990446387 4.871476378535343 3.2940889556084763 2.1963271940576754 3.53367428837753 +2.9340931574498854 3.0080539591637527 4.8776722807686586 1.8154400813374174 3.063125241224011 +4.832963122186047 1.7668353881946937 2.1350598824794216 4.378420012930807 3.799184643584701 +3.070295733415384 2.481761580793471 2.9636290767603137 2.8686743019796177 0.5961449975098725 +3.747363436479773 1.6041654081806036 4.573413946940265 4.393167776580157 2.150764159649991 +4.437377440910239 2.8039758569328974 3.343615100609733 4.45642761182483 1.9764494477867467 +3.766520804050144 2.279993322356185 3.02272863304029 2.7658842496346803 1.5085532775206818 +4.426219825552238 3.3137195662757506 4.121994292548688 1.4486079085034573 2.8956262855017543 +4.441983366665097 2.403528691369016 1.762711997247453 1.315831110002995 2.0868636732237316 +2.9819881149514282 2.603769375677463 3.3600959149461618 4.604943880765468 1.3010364609581289 +4.3394550700338 4.796341389709601 4.8014110608230425 3.8685320666135152 1.0387532560450907 +2.9771281775043827 3.681117793687206 3.8839944982758943 3.9414033099821992 0.7063265189377849 +4.341235619421202 1.388013836233836 2.8041622953401775 1.8457992672619614 3.1048314920909332 +2.5767369688630204 4.301221266053089 2.45576028696104 4.430668305639115 2.6218519739859616 +1.2667555906039265 1.30698683935965 3.7443149715864337 3.592838773633375 0.15672776372665784 +2.0208816493693598 1.5774101200723356 2.0845086882956663 3.161736095361764 1.1649402919598024 +2.6397851545404074 3.8596442205832955 4.3680573159838865 2.433617863403787 2.286943842053281 +1.8176278555561338 4.802200495458639 3.5049846238261564 3.861245189956301 3.0057603753183617 +1.9408647877942524 1.8332718131331616 2.3352091304666374 2.442300935754544 0.15180547735916858 +4.0057315544889995 2.8322150145079186 1.455002751131075 1.505321983167124 1.1745948640794688 +4.167208959573179 3.2921188409183504 3.8991976225267138 2.6782491085426003 1.5021644349295906 +3.187609879552098 3.528206604621659 1.5671862661424458 1.6717075148374905 0.356273519303472 +4.474199268610048 1.449517981293516 1.1401147324053804 1.342357960713418 3.031435173847405 +3.520783230153596 2.8579623219790267 2.6143495520131834 1.5931475086905844 1.2174502739741004 +1.017615788099529 1.1864223112461776 3.95629374562196 2.3728857745989527 1.592380747483483 +4.800053402084831 3.188391895175704 3.0472864506320105 3.580125612496703 1.6974599804617683 +2.335909987224032 4.499504715218258 4.055753734553047 3.562826778613181 2.2190356308307786 +4.324170273272515 1.9187243012140525 4.662329426511375 3.8693834545246086 2.532771927944228 +2.5813607260579308 2.0988529432728646 4.883576934958489 3.9318781795168802 1.0670259048201536 +1.555742791575908 4.292315470209145 2.9778323565235305 1.7084002636173383 3.016668338406144 +4.072394426010165 3.6799742312500867 1.0946059742794456 3.0178423184401932 1.9628631243049872 +3.1014462425391724 4.144786226200383 3.551167922867765 2.2493064217202683 1.6683529871331748 +2.521589262998381 3.1108752538492865 4.42095336578886 3.6306519764003657 0.9858165473771058 +4.148631346833254 4.628765974751397 2.4183900179579356 3.955406886418481 1.6102639891826294 +4.181845483266613 2.873463335704182 3.460922478691786 4.4481874261446155 1.6390716642444647 +2.8723367818333148 4.332473600825539 3.4392715775214637 1.0294025100385111 2.8177062395835173 +3.7744786312191105 3.913762091385797 4.863022788281805 1.3871423177235696 3.4786699941046644 +2.2391033981365385 4.383591705568268 3.0220970441900143 3.2974320053179476 2.162091450778788 +1.0279329881877444 1.7751798158010845 4.249896576151702 2.080176445531158 2.2947904624601856 +2.1012829622810787 3.671562184424805 2.7338732260824643 2.3147898269840206 1.6252408224310055 +4.499620907076148 3.60931654587228 2.8269711098537553 3.1327762955468357 0.9413600093351142 +4.47517294925777 3.625875182312158 2.7955560676306037 4.534619645718392 1.9353678786138575 +3.4370676289551807 1.5923105001472306 1.802381569935699 1.1761279538162719 1.948158734803304 +2.5330153592182705 2.348792968030748 2.3687502282376234 1.0807370602604385 1.301120982190923 +4.401492184490884 3.724122013386216 3.589408279111563 3.5197427639843326 0.6809431934459067 +1.9889854923081547 3.64669418139813 3.917930513644469 2.3712654326905467 2.267194515370617 +3.3569962292439146 4.676100047317696 1.7860733620713538 4.57676924205599 3.086748836141362 +2.387737765346189 3.013650117600437 2.79982331667829 2.4619200907867205 0.7112980126306941 +2.0388044012987367 3.033757261047982 4.524042141024719 3.9163540554279646 1.1658541943568455 +2.8744506127875296 3.5396229321135553 2.2677448783936294 1.6589482319939548 0.9017136857478957 +1.061487862098803 2.8167690215013423 4.616387193755662 3.500665520820089 2.0798670149823706 +3.7600359621453974 4.801980228303844 4.12197257188824 3.399395541887406 1.2679768996575964 +3.0659723312852436 3.6312602457983303 3.3954105447999 4.235481159154254 1.012555708786562 +3.3999103831788275 3.7280102371609174 3.8366121765548855 3.852534836683375 0.3284859894860602 +3.6997480337763373 3.34149469576547 3.4515022923389522 4.539006064259649 1.1449934096481391 +2.462692940737504 1.3800952811642833 3.199842399258423 2.5804958917135026 1.2472400686802463 +4.215874885281799 2.898272956357787 3.93503113166915 4.043522498104594 1.3220609742728613 +3.938858918268711 2.3608795615043747 2.4007088760698085 1.3765641668438175 1.8811940983880366 +3.4004108993592026 2.0425233597030252 1.4847247870016926 4.226651708692456 3.059742115644077 +2.405701609405486 4.430695148569894 3.456939226580174 3.828098264081644 2.058727243900127 +3.6032702189894925 2.4392689847999374 2.747175676372582 4.572930599576431 2.1652436151153753 +2.9370466407197964 3.6947552462647626 2.3428418779400197 4.333715167061975 2.130187499788732 +2.0943174779850917 3.9283736109702967 4.562688283489921 3.2502934686207077 2.2552476691122507 +4.577660164486375 4.549198455132136 1.8171771987129572 1.7241092941921323 0.09732267850435752 +3.1206341871117838 1.9765051193131429 2.753540693307499 3.957522080919481 1.6609041229095256 +3.69493767571666 3.6750555184307783 2.335058230080557 1.8170764547520886 0.5183632121888786 +2.8499308551424987 2.9026709147030285 2.964279335629489 1.4570301235685013 1.508171641803716 +2.7370459146731774 4.564440854738445 3.317986918108321 3.4827513624454505 1.8348077798761004 +1.6805396356040272 1.7986214641095013 1.6805604675067158 2.8669674442323894 1.192268775338241 +2.9238054029549945 4.188373051949599 2.2804185027019814 1.0040487497680717 1.7967334485360678 +3.969839252427733 1.0085969957725198 1.9941776754683422 1.8540198059068929 2.964557290895297 +4.908681851313655 4.052911513058646 3.804705385799558 4.086777835278245 0.9010592314559562 +3.7146618494896915 4.685670870112603 1.5011186111575725 4.973393500622638 3.6054890689254213 +2.400947885015877 3.395705223769909 3.019052527959878 1.5501014700344689 1.7740798667436544 +1.094137840014247 4.058720660908724 1.9842891579552613 1.5025192888519299 3.0034735738338862 +3.1042381540083976 2.0728863970636477 3.6254600269950785 1.3879617336185017 2.463754261166506 +3.3093109383746477 4.648957919748307 4.510816742159967 1.5479217743264546 3.2516765867959116 +2.7628641906989895 1.3547680157062625 3.356629205161012 3.6293821857581445 1.4342695096995433 +3.0137822136544092 3.734313738819908 4.79993048782851 4.209782671800525 0.9313646565765313 +2.0113467567527663 4.111468669239389 1.674604969565094 1.7575634947863104 2.101759777951169 +2.9146272193354026 3.133943448880302 2.257284675418426 3.3827283001752075 1.146613693031561 +1.5983825034804728 2.24831523729353 4.813945525372791 3.105799570199191 1.8276146099923922 +2.775763782431693 1.049081763671528 2.8688036311840395 2.103044362367309 1.8888668697630369 +3.7566554909080354 4.276953884362886 4.546669874408865 3.6845767753336736 1.0069334286360574 +4.777824270225135 2.8185904298808313 1.4145244137862756 4.284736468946479 3.475156756570449 +1.4052171188482632 3.9727957617496275 2.1977280330062547 4.169361481206735 3.2372516957360804 +3.5808897152372707 3.643405126733359 1.0909728323046348 2.070199595670247 0.9812202763732606 +4.810771522080075 1.0075344703442934 3.8423195691909773 2.5794194739041565 4.007434181913826 +2.4791349087038226 4.5517146212167345 2.2182610484293663 2.4283686671581393 2.0832023128270523 +1.9324704985052863 4.64802074731127 3.7962283140022084 1.7380674439561195 3.4073801256653344 +2.743999616367572 4.641198216370745 1.761621751587358 1.8329359754760906 1.8985384500670113 +2.1712091709416823 1.5683981737328798 4.111254126449469 3.044972517876688 1.2248826748454027 +1.6410475835680285 3.1442419683600233 2.8835675729286825 4.486868341940225 2.1977640260917886 +2.3990064881847935 3.0953341973538975 2.8654513310393233 2.686441232954321 0.7189693274216185 +1.45767908709976 4.486272199182841 4.681225136442167 2.4104324235858305 3.7853501533304055 +3.859929096063496 1.5407643230289954 4.507916028560746 3.780171429251963 2.4306660499351342 +3.568510357245464 4.980812007527526 1.4443064295981762 2.4152458921562054 1.7138609603296038 +1.225992216017541 2.3836485479764185 1.7785648110562597 1.569219181595086 1.1764326480929446 +4.771386608581599 4.160073280956645 2.449846909655246 2.3860643302673696 0.614631761272768 +2.8865769741671325 3.4650777368760597 4.617845491430523 3.571997479254779 1.195182495281271 +1.435099997990367 4.0256260825651475 4.137614738846433 1.8943025771644315 3.4268461957917977 +4.3138601864902455 1.0949253919470272 1.8095474317504228 2.754437017604455 3.3547514872157667 +4.608289450477709 4.598541915329436 1.1323123794448988 3.6363878181072136 2.504094410551114 +3.1191237778400924 1.2674144874936175 2.913553148484825 2.6730213680298407 1.8672661388683431 +1.9034317240167082 4.7946563842413195 1.5684679130650028 1.203350089730323 2.914187890443506 +3.561348820188473 2.3301802911520677 4.144096145659542 3.097610494727128 1.61583048755032 +1.1047622943138053 1.6115018029859303 3.153256616757359 2.502832696431194 0.8245218043094577 +1.6121390740680321 3.6380747089704966 4.764376512999587 1.2431581775987794 4.062436924104851 +3.529925873805289 3.6153570570987656 3.1503765596601467 2.364779846087464 0.7902282476950082 +4.432162342195127 2.594229208143735 4.172668441649739 4.180323576930617 1.8379490761008972 +4.733732747742935 4.513158163740497 3.802778434850644 1.2962839139293951 2.516181219728835 +1.1645232723708667 3.663418557195589 3.6156456499673535 2.3233512367402827 2.8132725596673223 +4.154989665780232 3.3601732674518163 4.784078734282689 2.4016522385438104 2.511511320828634 +4.592800807900839 1.567053839624709 2.428093454381664 1.7127114319419037 3.1091664725553367 +2.5651428181611657 1.7527409230514213 2.4314949037991247 2.640750741020837 0.8389188545915892 +1.020599092930898 4.446329427177783 1.9174325423839966 1.3881099932551613 3.4663829396065755 +4.174694315496819 3.772933374208729 2.7890888863346865 2.751896878713599 0.4034787471175883 +3.2685228683773504 4.28738856232316 3.067407556104575 4.722316755844883 1.943402110136958 +3.0749316805916838 2.3558987816390586 2.384055614659485 2.638366966634619 0.7626811742265811 +1.967161220834213 4.913250909249555 4.1414411118635535 4.668170641365954 2.992806116245593 +2.301820302054583 3.925587128272346 2.2192954999867944 2.5098320167131276 1.6495545378909962 +1.8735760647781925 3.3664786884322666 1.2156135778061978 4.280833325774155 3.409447220158418 +4.628549618609445 2.1929259300713233 4.074622853958049 4.577444195913827 2.486984530328698 +4.904937646259444 4.474155040842767 1.6073899540822314 1.3900746169178224 0.4824931179783405 +4.590017400011541 1.4312743856831331 1.923897887716369 4.988827044315297 4.401300735639264 +4.824452352525161 2.5175902524940184 1.794017330102459 3.6587562290574116 2.9662879006994287 +2.3901783675627963 3.9635913051900276 2.8790367181703553 1.101540670034411 2.3738408694416844 +3.9994578092201816 2.3419837453919548 4.990542736050406 3.2579947384817967 2.3976953176211224 +1.7737896365328845 3.780058850565099 1.2298430386358636 2.664764122577126 2.4665998208693294 +1.7265244468511107 3.974610680890439 4.4106450401044235 1.7240272868254012 3.503113853118558 +4.216456358590279 1.3665472224029047 2.256570615231743 1.0275107142311786 3.1036382399970175 +3.603428192523454 1.5405875803296167 3.383613196644706 1.2405829073581862 2.9745403362731038 +4.460674393139776 1.3941794851890794 2.5516398260248803 2.067487881996964 3.1044796867419766 +1.5980613134503168 4.370765747261309 1.3612491956724253 3.049263017604109 3.24611776439296 +4.175265561963537 1.9803306324984753 3.6721197396067597 4.272484064238036 2.275560736802198 +1.0518905285193223 3.494483031672704 1.6497121876031282 4.727119617278611 3.9289559204301296 +4.671138193130156 4.037400387680734 1.9128423949334432 3.1555125995144437 1.394938293764006 +3.9689926104853575 2.1716556156052893 4.812958612604751 3.3416873621056102 2.322726709216954 +1.6795153951577748 4.501711018955988 4.019190695260642 3.7858370906550842 2.8318266267143177 +3.966073659027522 2.474542881785847 4.828665564968452 3.812448282447939 1.8048162301886943 +1.8445236571262682 4.650180503316596 4.242985423593747 2.6069716017997004 3.2478071931190464 +3.5008796731652447 4.541031679375713 2.8008338165191193 2.2715721429637403 1.167062172773286 +2.960146842701384 2.27467281215649 1.040687680585068 4.0031303246892715 3.040713907318241 +2.070711486276997 2.3461024039364635 2.301838322322096 2.218889697043344 0.28761194683976166 +1.5659229230129883 2.1954055951040887 1.6785925933678558 4.6188658415021 3.0069012634532664 +3.44146555242467 2.1163347312184886 4.627029576125835 2.5148292519905464 2.4934638362301924 +3.2320288284029814 3.0079014999746128 3.1472893308334666 1.5655799583436245 1.5975098116664723 +2.0364832848911494 2.5966959614388325 3.053695852043282 4.789482967851612 1.8239504254148244 +4.1543409115539145 4.545768174743243 1.4003674952569627 3.285657959031987 1.9254961529873111 +4.884500699065771 1.506359391950761 4.541851345617243 1.7078128977863964 4.409491196795859 +4.5003232669900814 4.524516986873799 4.5473719230734275 3.1565946214251968 1.3909877206006334 +2.3943396319709347 1.456457191761527 3.3032562581058915 2.6271409747240435 1.1561813646983201 +2.433922334857691 1.8472812487382781 4.218297822047276 4.550064257094117 0.6739560307223714 +1.0660448291369296 1.0067576937679745 3.7084558105243643 3.8133161557311577 0.12046018602486326 +2.2753856368964924 3.347774327967688 4.411839117654018 4.210307383557513 1.0911610992815572 +3.008605858959162 2.745934257767103 4.211576434532494 1.3068301034144536 2.916598638519966 +4.426172656425647 2.0128098217931316 4.36227305988521 2.3029713665033458 3.1725452929707565 +2.057945688366053 1.303258376467289 2.677777021585552 1.357925434479379 1.520381909497632 +1.5234290155140164 4.825665895221052 3.341242658665178 3.363891307060615 3.302314547551671 +3.2968568902100284 1.1515400332218917 2.5510816712437436 1.29740869310409 2.4847696780577078 +1.1085482227945183 1.7889192159941092 4.643549370826249 1.6478521415435403 3.071987398724073 +1.8648140521350824 2.7083732016690396 2.0578074257748535 4.7697489719726045 2.8401089748028863 +2.544819935804743 1.860288902782572 1.1665859943787287 3.4781659288758022 2.410805784118641 +1.6474417807911697 3.9597014332987714 2.225414482004671 3.676013052299885 2.729611861191458 +1.391543178218475 2.5598311756799257 2.378511068264707 3.5561654275906216 1.6588449701680434 +3.9248071764440176 4.534405939369536 3.712147410304338 3.59531317700843 0.6206938777128107 +3.41146739433779 2.5440394343646973 3.438381169972455 2.3197063156829567 1.4155792790807273 +2.486141510198566 4.4367355341866475 4.664366477495939 1.595034514740795 3.636703967057033 +4.16270501730781 3.2788707112088145 3.0032345760498633 4.047303713718272 1.3679340060357987 +4.944744355686501 1.6808533333051683 4.3171958932395 4.883685954525664 3.312687065739452 +2.923928254672908 3.402017824292073 1.0301441250743473 3.443453409869844 2.4602096131546984 +4.343749493428702 2.783833906877844 1.1833656212038641 2.8110256077614566 2.254465273408524 +4.774031366303747 4.038642415290637 4.874972626684837 1.0129491906073609 3.9314147491817546 +4.694399297321485 4.552683870154794 4.003057976380562 3.481179089463285 0.5407779904055401 +1.6664345853184632 2.179280496291205 4.821519226616859 4.854102251362024 0.5138799294611586 +1.3834970565180171 1.7227917597185165 3.1727120068694616 3.5923065597678847 0.5396114198587187 +2.6395870330994757 3.083908360529744 4.486882330549226 1.0291600389385271 3.486153308147956 +4.432650668881311 4.81208587115221 2.0881368415349817 1.1746039738206093 0.9891983487232491 +4.794255067153962 4.897341670539566 2.208515102144249 4.685491521234642 2.479120615969995 +4.858572428592393 3.185545408489075 2.955322695997682 1.0684520852302448 2.521765276899036 +4.013119818664303 4.825519278993664 2.2057867592787264 1.130448747132363 1.3477183398285892 +1.451147167885535 1.6470124556645014 1.4134453765019703 1.9578785974179556 0.5785937633553366 +2.513274210983022 3.1497232220430993 1.0656657068875819 4.125865441900909 3.1256822874142194 +1.1086058804780672 4.192954588207737 1.4886675111757608 3.6424232555252574 3.7618972284197425 +2.5787467607573453 2.5120102154055988 4.14417255177702 3.1296929880177284 1.0166722932050072 +4.484765288936803 3.7077159085159748 4.643343050233071 4.7253896289482915 0.7813689145923746 +3.6156959056677707 3.555064194358835 1.1577877238504972 4.80840062593251 3.651116372462525 +4.917799669510007 2.2404110693516883 1.8390435513318235 2.838619883696144 2.857894777713243 +3.8334608654814306 3.106334663785736 3.4664249049558036 1.9172841499588542 1.711300555713381 +3.1069590334840536 3.062279795611959 4.936169376524854 4.983096434028086 0.06479493053274156 +1.6815376534466377 1.5350860636536248 1.6172272317272793 2.580339933294233 0.9741838348445825 +2.6318822994314655 2.3823834159690764 4.967739283327575 1.307288362002077 3.6689440770174824 +1.6262909041957592 4.682450947357717 3.054952563985867 1.1235744571554598 3.6152919108923287 +2.663042353762066 1.2266835848807869 2.960718092986028 2.1190159250432656 1.6648090138095992 +4.5609775243153035 4.962059077145698 3.2693447567716123 2.9604248636306023 0.5062587405656256 +4.410126057924037 4.968634779635462 1.1590508816123033 3.3199868317421433 2.231944482461713 +2.476453941216808 4.146034697124486 2.2028310526595396 2.0211586040132037 1.6794358514377412 +1.8886689631252098 1.1695628513397782 2.008700509506776 2.1261176815649847 0.7286291184829966 +2.868549976566709 2.121874762601275 4.7738751283211345 1.8415799553043852 3.025868281476848 +2.138257069140713 1.0380944702279966 1.3127166890773743 2.011820045249729 1.303496546469469 +2.0911221450288284 3.835265071360334 3.324207360423618 1.3700736609327588 2.619288655906038 +4.215732400906185 1.9728431728894913 3.1335727962931714 2.495627925336653 2.3318502841162525 +3.329145227457427 4.645588227721017 1.1284770708693972 2.509972252223697 1.9082848605614813 +3.3015884125283828 1.1044766554068386 4.075136429946262 2.8804853940837907 2.5008980728468315 +3.5523384498317774 4.253942762634942 4.032744761354209 3.437453854585351 0.9201194897542875 +3.2469099117921107 1.2809626309880473 1.8895381802493052 4.702773204103192 3.432089743922654 +3.448230818837781 3.1880284471497706 3.688879386114978 3.58413549371196 0.2804934174411235 +1.9366339864916964 3.6540515557678996 4.928384189678527 2.816731610455974 2.721874303232213 +4.330242808607624 2.301929692818449 4.282113259754976 2.6074965622228836 2.6302842392668664 +2.934157407205838 1.5031765371330796 1.1847884634992667 2.624937388144833 2.030205697872008 +3.1537978646882445 2.4424686336090913 4.674073707386611 2.6841826849756205 2.113209775687099 +2.4706212407189936 2.7169033580767197 2.1104914694172954 1.6583133505047218 0.5148979826660017 +2.349153008009406 4.638558656529378 3.9783562119674007 4.501450112825727 2.3484048740773673 +2.602699076990082 1.8581706401287978 4.5173692419420135 1.8477526867202507 2.7714933060011564 +3.3100974986541787 2.337209576173915 2.520081715663224 1.0505217263455884 1.7624180752339138 +3.244527526888456 3.3022677528558892 4.80501572682196 2.975313899608226 1.8306126597956345 +2.693512412317197 2.3135107587864887 3.2585674458332785 2.2703014854284085 1.0588063397907252 +3.95630335997546 2.8923931965568936 3.307585573423287 1.9844155134406507 1.6978468256765018 +3.360381901091635 3.9936260307735987 3.7277294097933047 2.9743721094161284 0.984147016358966 +1.4066272842321408 2.6300264949596466 3.7976026042009634 4.808508201308862 1.5870210317046087 +1.0300231974440188 2.833323956194718 1.4079504118559911 2.705939400390725 2.2218616160481885 +3.711130225618131 3.6139813181247273 4.387954165356299 1.066571350214672 3.3228032916417547 +1.4120557202098731 1.9580182408234905 4.689876866183056 1.4984051132585168 3.237833693016058 +4.238295303382163 2.540538313376637 3.156606284527441 4.187637450525055 1.9863041213195485 +2.900140555165797 1.2195842651594453 4.614183952517152 4.423382183173217 1.6913529374629912 +4.216120532951081 4.098415193636088 4.635801646732395 4.625086927586764 0.11819201373031664 +4.55479353359153 2.5391716584877484 4.898421238147121 1.091713388420346 4.307407131508273 +4.318079822254299 4.655873701061823 1.8650872078953071 2.7140302181392384 0.9136787943264634 +2.1931694242460837 1.6605069055760144 2.313804679596537 3.4324415781667676 1.2389825945665123 +3.767584112252664 2.7702771832928996 4.614518322355732 2.891374668171222 1.990940773480593 +4.72883749950882 1.7367211484942064 3.4553423398308443 2.4381299612910046 3.1602976570354384 +1.8604538113894842 3.7224280231226152 4.82122195443575 3.8485537291819787 2.100721647809994 +4.91378840205383 3.6855789162409325 4.353151968203013 3.923119122002916 1.3013173286526762 +2.622482872276898 2.051036038740129 2.456669296741722 4.8245373986101825 2.435847045979149 +3.1260681810083044 3.196493173967889 1.2645852725281213 4.598117645390131 3.3342761974006256 +2.145833142007991 1.6800602272388185 2.0056054498414966 1.7320255305227712 0.5401762493733049 +3.81711675467694 2.4091346615797744 1.8835708324743687 2.650415507976867 1.6032667684539612 +4.269183395598242 3.602675752098447 2.5229734498204235 1.2629370881944593 1.4254557416711497 +1.3063649992673154 2.098744138661852 4.1980862125909395 1.9537663720131797 2.380091646840224 +3.5644356544155444 2.097270241999917 4.665662687243344 4.552202821306912 1.4715459519046734 +2.109702376491549 3.0439977859459777 3.066714324271965 3.480631661280382 1.0218784047056468 +3.2476367419950267 1.1256278176938732 4.552327595176486 2.1260093458697376 3.223343314282967 +1.7965383729927606 2.3430244060357466 2.140402048593857 2.183373380555635 0.5481728921441016 +3.72149792002797 3.979746259052137 3.5723595776802597 3.564797858322696 0.2583590219217894 +4.557583814537462 3.065752333345415 4.779765383301447 3.0753445167643703 2.265085353482878 +3.9926609812825276 2.198782346020432 3.5529252308897363 2.5448959929651744 2.0576985937110837 +1.8612662498301074 2.3873329284549034 4.285036798807092 4.38407278608219 0.5353076471851284 +4.387524774964528 4.500573778169228 4.427070682438722 4.417207325859145 0.11347846900884812 +2.9799476939254914 4.843973132816639 1.0166541171219503 1.767095861749354 2.009416245806915 +1.9703123015974113 3.3315264518811656 4.086779023511427 3.328843313781798 1.5580020869742377 +2.910210396957919 2.0970349942069824 4.351654404128534 2.780170962834576 1.7694107612140966 +1.1141458248559113 3.0017702892088045 1.0642029438703187 1.06404596103883 1.8876244708805712 +4.981525709034171 2.192910744164958 4.1056586056337325 3.3150005060247603 2.8985364673865663 +4.341086091193906 3.1830356799863226 2.528529503534278 1.9438883686942638 1.2972609650510085 +2.2450214363858296 4.172713349188354 2.129326625873172 3.3531947392140493 2.283385484217856 +1.5128171283281788 1.367053570220219 4.127486709838393 3.193798311849825 0.944997904447809 +3.982264223890523 3.6109355664806757 1.35187571236794 2.5646922340997 1.2683883030047716 +4.242575797504786 2.682715960664096 3.01659168524462 4.637035574003328 2.2492223338754465 +1.5527655237190348 2.8943176360488043 1.2754092814721836 3.792146916337932 2.8519695638007967 +2.0937856698138324 1.0287519284246516 3.5383447221948092 3.9261823847632247 1.1334526557399602 +3.3127638455285453 4.617802547839011 2.5693343219055897 1.8677447462545125 1.4816726855788502 +3.3784570043201945 4.398918973698153 4.845643885240556 2.282062337292074 2.759219633144248 +3.3270980490498796 3.7335056950710244 2.8928404005555466 2.4552220412478114 0.5972244160678983 +1.0295340157826947 4.89765677501506 3.905608101052397 3.157534806778842 3.9397953416512252 +1.0890298482941745 3.268834293224846 3.782189526262761 4.618762056355724 2.3348235514157496 +1.3584982704956992 1.6429033134439361 2.459363885836581 2.304119047345141 0.32401726548537785 +2.493487785655835 2.1498013519079913 4.829974094279862 4.152327783777514 0.7598189829688097 +4.331431890649803 2.8593274373768662 3.222906943999909 3.1591805607904435 1.473483143189284 +2.0489108556851394 3.854350380578506 3.7268364157501788 4.926136432543742 2.16747143195204 +4.018895321821485 3.2652013548809604 4.626905243525522 1.1677319277652916 3.5403297338341484 +3.106390525133153 3.945147889497514 4.314508603335687 1.5354832850444713 2.9028426819204385 +2.6073738746150186 2.729248272645872 2.331360338263491 4.34005353162467 2.012387068620476 +4.304166217745683 2.292093090601266 4.28198447239345 1.2292284496872408 3.656194415392287 +3.8342261522462837 4.983804582439827 4.167843665614758 1.956290819968756 2.49248802529745 +4.928005492571888 2.6408305034417308 4.307321348397714 2.884712574593844 2.6935079643851596 +1.9511468878424751 1.3740726890539214 3.5884189381754648 4.774386132282799 1.3189134984547977 +1.825622022689286 1.699323989879657 2.965020113977064 3.842223893139719 0.8862492105885484 +2.2648669958601197 4.066168369678168 3.19376567954252 4.543809422410714 2.251067468330603 +4.48654097933011 4.182469040403722 1.4326873139300846 2.499810954180691 1.109600201705172 +2.018122910622962 1.4779491928952941 2.8778681729130002 3.8291680764894704 1.093964876889716 +1.8209971950137165 1.0447055860328667 4.983770901548624 1.6901028513358107 3.3839145803590776 +2.236343376068163 4.586774728659213 4.925537917971646 1.301920649983649 4.319158442116216 +4.784850885170222 4.187185144925751 2.4606050722871355 2.08058127788956 0.7082530772049653 +4.544892371035142 2.193043137741126 4.877347460195096 1.2364771928481773 4.3344124307449645 +4.697652797833563 1.6167691892923148 3.4159480263553723 2.8501545839982585 3.132405789292386 +4.883052112223537 1.0858335715776355 1.6528071017926806 1.4998788868611554 3.8002967889820307 +2.660682949967383 4.632855466831662 3.79880037263673 3.78991410004112 1.9721925367761206 +2.136023718329144 4.579081352854065 2.0576614613799316 3.158031283406034 2.679429855554397 +3.3880165761753527 1.5644385141404524 1.5499943302179964 1.7522815304092947 1.83476348876257 +4.737002275674686 1.3142719813864305 4.079956986204023 3.713864814998182 3.442253062349829 +1.3706657978577463 3.204836147736638 2.861867136365109 3.4813515701961624 1.9359601845425014 +2.7088059594944265 4.566276179244706 1.2205471493705211 2.632076967005807 2.3329406429081425 +1.9622390400633942 3.8619419551915417 2.02415410193103 3.494593738971794 2.4023038716879586 +3.8107158363847944 2.971174690224409 1.1927095658317266 2.8367086221580715 1.8459583509110398 +3.2436586503949436 1.612775206224348 3.5756714608844797 3.2892404274909604 1.6558452661286391 +4.367090449640897 4.403478560276102 3.7531074015323096 2.148241016827502 1.6052788565701221 +3.178000072650325 4.294930083603474 2.7091899258416694 3.923662696868645 1.6499929578436825 +1.9580963204966562 1.6454197565431716 4.48783021516828 3.0463983252206024 1.4749550932160247 +2.536425384830097 1.5628296013737075 4.864735385607689 3.618944123347073 1.5811023428889608 +2.7178584356204247 2.370239644363433 2.02072853258422 2.9492304100726163 0.9914406490226478 +4.593688055716561 2.1670471103168296 1.6208505220825034 4.93428534920426 4.106998494213736 +4.508548950105549 1.0452953117742658 4.581215447279989 2.9772084352768737 3.8166692623241585 +3.0737194480235055 3.659132270228847 2.9506424808170157 1.8395632501905959 1.255868316795921 +4.745148018154243 4.457484490889007 4.778426312483209 3.5672446085927274 1.2448740597979087 +1.6822110568553788 2.9184321117177268 2.5948423008268127 1.6305555119819526 1.5678301909408774 +2.181204959430355 4.791071741411911 2.253658943091382 3.815064476646551 3.041281285890449 +1.5043029499735292 1.0743713081953339 3.3025860659629784 1.9066185997044691 1.4606732637569213 +3.5336908374468137 4.355250425460294 1.0458539203650483 2.748426659159562 1.8904269590606062 +3.2213412345816654 3.3131278767701695 2.196433715101488 3.999374434862886 1.8052756096114488 +4.6257877039011 1.5398062847849028 3.370847411546663 4.430705437890664 3.2629097988047753 +1.562901248246241 1.4652586296315122 4.242204963847529 4.6554894063190915 0.4246623498250953 +3.529576565852273 2.079810349206299 3.5815727958488295 3.5661285161669376 1.4498484778427274 +1.5254247975995692 3.1610122407936525 3.197086386630714 2.70987057030725 1.7066122980952347 +3.0347260667526275 3.026569094274586 1.984979826852975 2.884225699122227 0.8992828670631368 +4.991280639221392 1.2319584362726839 3.7708638171705124 3.4245406251866783 3.775240810715126 +2.318363081285418 2.5185082425986574 3.9126753154868132 2.2314078103835957 1.6931386562573958 +2.0383357219132763 3.800127140903494 3.547189014672902 2.790405756138009 1.9174540162481748 +4.712212216805828 1.556869912006464 1.567782615665108 4.242406883444513 4.136399404584992 +4.4906351755064335 3.490463210338193 1.5168504060476398 4.989648337841588 3.6139548191670614 +1.284324734750947 2.8721424301556517 1.9398933412481831 1.6727551219178882 1.6101328709355849 +4.850374301304248 3.5710977441529144 1.8584849580658336 1.9540256498541098 1.2828392469301644 +1.1647188242321067 4.564181714110367 1.1021477518899045 1.4142111695218085 3.4137562180512475 +4.201928330677672 1.6874105901866594 4.098596297306658 3.7324344223515378 2.5410379741189772 +4.52872771820895 4.629961722970782 1.782810669645531 4.189912711102505 2.409229869005125 +1.5080013139474695 3.5138187850381244 2.952167143591313 1.366861524225632 2.556657512089743 +3.6155801615619145 1.8033277973680732 3.245013188873205 4.139384963420609 2.020930355710765 +2.4885056276216617 4.905848747435041 4.657655041795004 4.27634350727218 2.4472323643800626 +2.400485503049717 1.0626685924848918 4.995580349406458 3.3872053580997843 2.092038288094641 +4.840349059165627 3.3614899347784397 2.558680092491164 4.277948904576781 2.2677983944772353 +4.324325405387868 2.5781233072554173 1.8939763053262655 4.813996476515739 3.4023138549633507 +4.505424875162803 4.528993252939084 4.251052070372726 2.6566156584159013 1.5946105920270184 +4.0046376746116845 1.8761610256496 4.476960656592871 4.948181659638097 2.1800142382305245 +4.737923316457689 3.172455728804424 3.7361365986852078 3.2113545453310404 1.651085997613555 +4.190250346815687 4.0713084921382325 2.2070596507948257 3.487554833993443 1.2860074179369936 +1.8221226423402612 4.263915093452278 3.444574069123782 1.4260487921269096 3.1680900662990834 +2.812634599606159 4.4196810829609845 2.720783490590895 4.441594421889116 2.354525145531167 +2.7019798986040504 1.121265848346777 2.0816386747129134 1.2567671252164607 1.7829946668034182 +3.569006734456999 1.2821554928210133 2.1535338742176626 4.948086667184114 3.610985172227746 +4.639212673167043 1.5271484591199496 2.8673300054760826 2.2738385407316115 3.1681502159899377 +3.532930089584093 1.7621981289912916 3.4859359707352477 3.2117651136984033 1.7918318378444849 +3.524819666017195 1.2680099665777451 3.854677790954816 2.4401687420731637 2.6634612572463032 +1.8951872881845246 2.0743507758298745 2.270370769718697 2.139671349129515 0.22176991195289167 +2.3310304480217696 3.8662837262861536 3.8492992043774996 1.3293942926463678 2.9507496323118 +4.857389538122729 1.4434545278505828 2.0613612511756703 2.0954486256027054 3.4141051834202774 +2.3142969822581514 1.6361981909071774 4.6986654437262505 4.120492539160088 0.891123941102541 +4.892915933658639 3.174125677284592 4.420502882554837 1.716095917896098 3.2043809036849935 +3.4298554262759726 3.4257416348471392 4.549980548224051 2.836751892559013 1.7132335946600372 +4.649554596484957 4.097901690363613 2.987080065599501 4.191286751579815 1.3245507432302528 +2.548868003043351 3.3696148278765174 4.440348277861371 1.6814075854422499 2.878433444559701 +3.1251719537931573 4.314468228536321 3.8535685413552825 2.540818934714401 1.7713659020241292 +2.5011178701919827 2.4211004250729475 2.543183333137895 1.9013400568140608 0.6468118605015616 +1.0494014679359376 1.66254615422398 4.735895596503982 1.6945469239044346 3.102538985193626 +2.7105335417012997 1.1517930899424167 4.153312904928262 4.2314285511644485 1.5606965913131174 +3.7977184652122498 3.986621781738782 2.111699397945459 4.72396628242935 2.6190881502473142 +3.8191353604223766 2.8645913763952326 4.89164513653674 3.0775718631102396 2.0498819621633704 +4.718942659409267 1.4868191011855307 1.1199926996754934 2.372204111225226 3.4662163975782354 +3.3815733162291255 3.49502279977696 2.450190439866893 4.745000199710946 2.2976123735723544 +1.0799434235165237 3.6351743074699656 3.9684076236448442 4.291726773013379 2.575604811041065 +3.628000846987697 4.407690255879466 4.049474234291683 2.7111099596375303 1.5489139763100246 +3.565098407372985 3.2079830474624793 1.4178122580384511 2.9286721032723015 1.5524911762145588 +3.2622383282101945 3.254247022911287 2.737018633427415 3.831797211265436 1.09480774360315 +1.203791656656994 4.133825512626302 1.7390548032125204 3.3479941673259224 3.342721088353022 +1.5801186550744073 2.9019737249471604 4.4180079363030025 3.732375945712228 1.4890910154418935 +2.6919955329967094 1.1819949118239337 3.6777271573322277 1.661962556416841 2.5186124755995585 +3.5966413900779357 4.326779190985519 1.3127716103320513 1.9212783585535829 0.9504639240630358 +3.8590725546709055 3.8553977877705847 2.780897778808807 2.9451305859837924 0.16427391413230397 +3.581017021386603 3.2638043710629994 1.4063880422961454 3.8322037770141906 2.446468034602327 +1.5252596399578824 2.0868674213204645 2.9110440895450536 1.9013454711733977 1.1553763889004451 +4.737622662007633 4.432316612407163 3.541590645075784 2.6186184109688644 0.9721571523447035 +4.438014872383153 4.877604323895147 3.478936276266762 1.610791478432982 1.9191674943980346 +4.819539197546223 2.6563381144888027 3.0675781210096447 1.300345620393184 2.793304429698973 +2.725386582847967 3.543843966060729 3.4784745269537427 2.2092043062180986 1.510271293967343 +3.0886358541574395 2.020478407027839 4.161589684288426 3.3512447028747703 1.3407532661756685 +4.716260624686292 3.2528339543317246 4.883980660042468 1.1834034994296903 3.979433243711218 +2.344116717529792 4.182555208091664 1.1101798157012093 3.889285024580611 3.3321587365550336 +1.9075760750676678 3.803471907560038 1.7138155976139142 2.1794088453453346 1.9522290029591889 +2.047194354422628 1.7038105879054526 4.493267213827394 3.455249961211057 1.093339941572012 +4.882255323343674 3.4725738200785794 2.192439664401945 1.2112058418769558 1.7175627368788422 +2.076548535846966 3.6157790183437717 1.9137662038907468 1.7804254986154926 1.5449952174458828 +4.4606199278903755 2.8442128770523394 1.3379413107917522 4.542505067449266 3.589150404271439 +2.8985690872128154 3.4893340593975006 1.1483240971574116 4.229950986304766 3.1377424266941314 +3.4860267150884825 1.337213275784007 3.4697807993889667 2.1206351491698108 2.53724125428403 +1.021675138273567 3.264353477445033 1.308060432047267 1.2151140878485078 2.2446035631907924 +4.03860599003545 1.2524392098954724 2.9522682082898726 3.310001225066525 2.80903866795167 +3.112029332615377 4.860201835022842 2.469954165829738 1.7244638028418517 1.9004901945238728 +3.3339033083979195 3.827004342413018 1.3418662944534185 1.9317417031366064 0.7688313387966943 +2.703933073679092 2.7384646094999443 1.5373663827028317 2.5193740758148504 0.9826146428266452 +1.204096075849856 3.7422353843394074 2.4908532589126753 4.831659024831219 3.452755824418709 +3.874414400900057 3.010967067275008 1.0675365528423022 1.674648349759713 1.0555216870820296 +1.8203168852419709 1.0084250699128146 4.9169610849445995 1.0552159304807813 3.9461682627357964 +1.1128493443183736 2.113466868356165 2.697916046104165 1.5190677646593969 1.5462595836653055 +2.7484562337554324 3.2139530689621965 1.571746432438566 4.624355016021332 3.0878967709673675 +2.5307385501644544 4.154828734627115 3.070564426877615 3.4030252557323686 1.6577693235160158 +4.301948253276981 3.3599455085081087 3.928374550297303 4.218407110205456 0.9856409371363214 +3.1088078293300496 1.4407218452309043 2.4194892799604943 4.929112721526916 3.0134234134631175 +3.2743581348574056 1.9143722224880477 3.222521928601614 1.7628705468723682 1.9950297837443958 +2.2222224681274954 2.6085761323721215 2.6842466639734073 4.798934489916716 2.1496915488199897 +1.4964193990050605 4.977230963022453 3.723492055090504 3.7491852158907704 3.480906388099099 +1.284290982431123 4.738375732253373 1.447624156031731 2.0218291241801554 3.501487227507901 +4.8950059315477255 1.3380366091300728 3.6999577749913404 3.519823081450881 3.5615276593671448 +2.7401880575395734 2.122810104590475 4.552169091632683 2.602921868790469 2.0446809708474576 +3.5536753669926573 2.8644356116836045 4.246957167918728 3.3188823182537672 1.156016594551792 +4.211577919212672 3.7998405593854083 3.0673039616606173 3.8957010949809656 0.9250780853370687 +1.053985643842064 4.332229108835925 3.7823352594842867 4.505703422089912 3.357103173041662 +2.4086013007825313 3.2823396796618107 4.929671969625673 2.3595352252618906 2.714594194249935 +3.5436346213783567 1.2005115071712575 1.662630557286119 1.102332620977926 2.4091823728731696 +2.435780327427017 1.0842382715546535 4.518678113255941 4.842525308213498 1.389799602271339 +4.40758867348259 4.531633608440401 1.415401127403812 1.8854399546766603 0.4861313043126538 +1.9980065601415289 2.206688349317342 1.9565180994958307 3.3275513678415654 1.3868238215593234 +2.869071550663605 2.624147082792033 2.1768965661121578 3.0476598859616217 0.9045533451142793 +1.9019119248119392 3.3085657408566127 1.329333318406448 4.639037517547932 3.596222579875697 +4.994829501993135 2.9281214148899637 2.23527215442779 2.838678799762029 2.1529937057342203 +3.8754485358005977 2.2714728722565565 2.6170023559199738 2.9884784483605102 1.6464302039553445 +4.790437678750754 2.2251226074272874 4.073436188477972 4.211194407113143 2.5690112381927914 +4.291289894360467 2.2644204766387777 4.672790181112806 1.4144228618079655 3.837337257006383 +1.2911702459847887 4.711820680683592 3.5122974494996058 1.0841131454593964 4.19486929603204 +4.308688267577299 4.244477928121773 4.507520515982225 4.483556142124474 0.06853655161581997 +4.974156331323678 1.9760680705373668 4.833005861838231 1.0514438180341807 4.825841347434057 +4.581822265489199 3.3995775691003427 4.07097892861637 2.441403516538774 2.0132606750710265 +2.4258644338985897 3.416605410046038 2.649207945202243 1.513809793925443 1.5068830889423286 +2.1014243475700294 4.065139912391434 3.361928081115225 4.938368208110379 2.5182021947259012 +4.495626582614246 2.14652033700678 1.5992800450289968 3.4576884889448185 2.9953267096544964 +1.4490807705957383 2.167113773412922 1.9394721923825289 1.1350531335494023 1.0782677846196813 +2.1947414796201365 2.34390715051449 1.7210656953395898 1.9401367886706224 0.2650330947384054 +3.2067343185349206 4.103942047106241 4.037878405685417 4.746097718529328 1.14304693835958 +3.086518271855949 4.755507215354862 3.336124617859673 4.251825437057072 1.9036890722490378 +4.131524357325557 1.5472932124449201 4.545868623805109 1.0935318738401345 4.312409957938811 +3.96390288009497 2.111950359538236 2.0422963925862794 4.877667534800807 3.3865997183752548 +2.7980389767711276 3.831859496414165 2.8510896383565427 1.0650787166342246 2.0636423816510465 +1.8964446919269893 3.7986332014106803 3.1581646099856977 2.4246564124723347 2.0387141539291593 +3.5783285072591067 2.5937895291980597 1.1725282576655536 1.5918617255396668 1.0701203467838656 +4.953931480145522 2.992826625573161 1.6319029155059601 1.1578883007282337 2.0175782774529862 +4.158971417223789 3.1163279304774067 2.8382373190880523 4.292491709285107 1.7894024901799095 +1.7028002076497164 4.301850097373629 1.8972645788010247 3.998391771188411 3.342124445298766 +1.8244486088641096 2.1930342295929934 4.2401004480535835 4.263418441454327 0.3693224724063426 +1.198492085490074 1.4331782418722363 3.7430104946897504 2.9905250830753523 0.7882333960762656 +3.745005777301983 4.552747689507416 1.178504142158466 4.049598515608776 2.9825542573424064 +4.410321951576979 4.646566245094905 1.6639482382297275 1.7081358870273657 0.24034124599420642 +3.4554584965004316 3.05304254308697 1.2898280020062516 4.4824986190091245 3.2179316755076033 +3.3603797787519887 1.8930941842750584 3.7657608352533494 4.621353195484441 1.698518561171861 +4.891452983912883 4.231408934586328 2.502877053499707 2.581301112449886 0.6646867533459774 +2.4990009957767074 3.2203513909202726 2.884437011497575 3.29817177492745 0.8315785272866011 +2.704078031221345 2.5835452925259044 2.7429036508131985 4.191245118196845 1.4533482539434368 +1.7181098981952188 2.8538073442123517 3.018334516568422 4.168248262392025 1.6162024352549118 +1.2471029649963916 4.1339917809009386 2.9523555118840994 2.8432095685955763 2.8889513447497 +4.706916793276677 1.1073124331005997 4.136490419249087 3.8317822600305256 3.6124781815386773 +2.046541351044228 1.5593871625401845 4.37803282610594 2.540922379659688 1.900603587237218 +2.5344378163353 2.5034242713266175 2.899377422438149 4.5580891608902245 1.6590016489602148 +2.1483310604193546 4.653888645923631 2.164100921157244 3.810380742515715 2.9980086831912445 +1.6353206256638506 3.6207347861112607 1.8088359098542224 3.2131948095667298 2.4318908914066886 +2.090241042713447 2.830432203128826 2.3151437541433504 3.540325724629218 1.4314167159708242 +1.9982855421871966 4.901572681607576 3.680579060314954 1.2182643914965663 3.806845116655257 +1.8261028053412445 4.184071886527486 1.4842358098222488 2.7809370345162 2.6909946588488585 +3.2480895569409625 3.1331398136382496 4.885128080185611 4.767731013690291 0.16430311837292116 +2.9241574283168608 2.8962295857117075 2.9820253599191093 1.3497119481892814 1.632552308045794 +1.0905875860488798 3.9613427595028874 2.1601879492765836 1.8110772406974425 2.89190483120686 +3.6928604632473454 4.396432557566797 2.201582275341976 3.0584804951610707 1.1087327229924229 +4.891593021772358 4.334099742424996 2.836528406692515 1.339324538525176 1.5976289241788029 +3.143188069215669 4.6828794575265125 4.721173469614552 2.3955624891958216 2.7891066676415837 +1.0579942003213003 1.4057730138188838 2.346064209051317 2.9750912198840753 0.7187663622311371 +3.0623395655554635 1.472473713422716 1.577516107371045 3.9203856507015686 2.83137972106243 +2.8843384521452564 4.48210627304867 2.632264481081842 2.7129039289522257 1.5998014658285828 +1.6878055916124772 2.300611412385564 2.555757065125143 1.4133840674466964 1.296359147689488 +4.21802439230265 4.777398340076786 3.4798871835263747 4.069576192441516 0.8127929260788036 +3.4266640497662193 4.647383353005287 1.4458882810606775 4.701068882880358 3.4765437387962796 +4.902988670551062 3.9911369941602195 1.0032561237740736 3.8569610953057127 2.995848050933355 +1.8405076292465226 3.5479859126027797 2.1429778517453744 3.5118693832041155 2.1884574734348137 +1.312386578775611 1.6782956548937693 4.224175038649744 3.1988124993854945 1.0886954527837769 +2.2651694357946988 1.990027752461219 2.8499311976763493 3.440447342672294 0.6514693111793158 +1.1527222006946154 4.791506303043009 1.0381100155761191 2.2847721056826127 3.8464160084957135 +4.9143387209900355 1.1207180421788925 1.339685317197468 1.9173808475561431 3.8373545549636026 +3.493297877477914 3.2081930089203494 1.1696793837677477 3.4513249963774313 2.2993893727718766 +1.6644244650896458 4.684727079140327 4.4802121554655745 3.3016091080981673 3.242118601116424 +1.6704511189989528 3.7050587694484145 3.667311969776237 1.4202529419326004 3.031320267784496 +1.039592773145929 2.0840662087096486 4.0792711596215785 3.4567537880119104 1.2159163768755192 +4.4785338935847046 4.530253532274323 4.546890571969284 2.9771222552002987 1.5706200970820148 +4.674487819660742 1.0635823293423692 2.1786922106528457 1.4740244611585744 3.6790209427494007 +1.0299715156072415 4.809348993637727 3.877999419656303 3.8207110970537603 3.7798116452213177 +3.0742582287564595 1.4532948742089329 4.121162634348252 4.373172367077739 1.6404362536155919 +4.869748448091501 3.1764461585210024 3.8711773407513497 2.3021333673261086 2.3084998666681273 +3.3745957777144673 2.5282955631033674 2.315991708637486 2.0539542856958053 0.88593886034687 +3.855574920641925 1.870259538079908 2.243179296589091 4.622017619086902 3.09844298524623 +2.9065566250558654 3.654081606942374 4.636733153812352 3.9971410995761176 0.9838046525538241 +3.325829315987212 4.992123036861905 3.4140732744700326 1.5913943076124344 2.469553275483546 +1.944909495030012 3.9437625895180046 4.594680717808574 2.367134475594094 2.9928875612939545 +4.479388372378219 3.5120633587935437 4.5234897463207915 1.3082845399193048 3.357567899712204 +1.736983673541523 3.124436865730225 2.122580820455838 3.4189239673004304 1.8988238240778315 +4.0496021686205985 2.3852554914972095 2.756222487755133 2.8814126092920076 1.6690483600489485 +4.673066465541073 3.2522752462196944 2.776328505803419 4.103928382699465 1.9445228520218334 +1.8346611462193936 4.066314287371032 2.97489920716167 2.1694509807010776 2.3725561295616355 +3.88770245806273 1.2480146734916353 4.122555915727332 2.9210680828142364 2.9002628523380536 +1.9571627912549507 2.976764144565978 1.5391169850557223 1.5762003576912282 1.0202755001467505 +2.1086434179407654 3.790598245827892 2.9295792119493704 3.2814532114330843 1.7183676424343768 +2.6308808559418075 3.639285782000349 2.158934503347259 4.073055582822636 2.163501791492467 +2.890600819697226 3.701633546866057 2.718004549484868 3.049984157721118 0.8763472741006304 +2.0162003691394554 3.1416024621228082 3.6699688354383304 2.0645914386461905 1.960552589710977 +1.8800567278672355 1.2336292847392891 3.8515834889856913 2.112136586134453 1.8556788426523863 +1.9993379799619668 2.2529513309186924 4.6603164537599095 4.896406474424316 0.3464941985673338 +3.4261181396728304 2.880612656687796 2.13061571260659 3.4581502787172145 1.4352436225899978 +3.206293578863 2.31216522462309 2.6807646444985 4.415542768500384 1.9516456269956552 +3.638817344846993 4.650175199100064 4.1870083901862145 2.192373686555712 2.236383757383003 +1.1268043464650073 2.6215613448424047 3.583332472531491 2.013559985253245 2.167598705022204 +1.543687084052404 1.7780806818061845 2.149716771984335 1.7229215562298146 0.48692352054394394 +3.0287765285926347 2.094140048526388 4.80476349393896 1.0918895120806589 3.8287045531133557 +3.691952893826764 3.1316873393492295 3.8517460289702656 4.2730670938085105 0.7010056570459696 +2.39430819140028 3.4491441932836095 2.8186158958133967 1.7553782570680831 1.4977160169117232 +2.3076625679748255 3.1583392928924257 2.768306455638226 1.651812366137841 1.403641671583538 +4.9951716160939466 3.5688262397079655 2.4459350371518354 4.178771592224473 2.244367095493443 +2.3868321486194892 1.0954903445117297 3.6002382642088717 4.160665712374188 1.4077082722259506 +2.7790082562085114 4.178866826277339 3.5971370390186355 1.5522347446963374 2.4781504009078508 +3.573913778667315 4.628496171520359 2.0523984614551556 2.0865781590484946 1.0551361405255835 +3.3881333569376646 2.6057246899867357 4.788384308259674 1.7246726688554284 3.1620392678682823 +2.8035724094382313 4.903709488909726 2.423310015056352 1.843462030692689 2.1787150886569964 +1.6586100851989496 3.897100481369749 3.5265840585186305 2.810401479875889 2.3502673762149424 +4.448313997934582 1.9078780609932218 1.5658237575445386 2.1409514392306757 2.604723900904815 +4.5665078770735725 1.754278417408106 2.3939872449151136 1.6372022463490645 2.912277127586751 +1.3666196490995244 1.5918368027780825 1.3373963302034384 2.559457751512949 1.2426410920954176 +4.91263607523308 2.310859040343115 2.916638159483729 2.7106784229543126 2.609916311369406 +3.581658428256872 1.2176290218020278 1.5449567634435395 3.4638972371541925 3.0448263622459835 +4.347163787483174 4.235170250336719 2.1749349153251303 3.260317116208493 1.091144845727178 +4.86122797723996 3.8638926413363652 3.710869720905905 1.1267251494676755 2.769924356067437 +2.769296940732939 1.3431871991766213 1.904696668684902 3.0100822115019983 1.8043464726129714 +1.4018615722494574 3.4542766749893623 3.534010666926507 2.4499843164248647 2.3211033760986957 +3.5221153780795866 1.147635409652112 4.155081220843966 1.983007549515544 3.2180831490409743 +2.9411572035918883 3.4057754058518133 3.8910640394411895 4.316909595509761 0.6302495628674373 +4.482580718523218 1.5250034905805103 2.037284652700443 4.5330138652950485 3.869874334115174 +1.8300766441761276 4.631626197583655 4.1488665981699135 3.5135622039968974 2.8726802073070123 +4.054670649559198 3.6088661613840345 2.9453730598930856 4.21639953547023 1.3469409576129077 +2.0740765994311765 1.1915245592194994 3.5242779243832643 2.7229511391849264 1.192066575472233 +2.8229769300547822 4.172996861548521 2.1101877315782414 1.7128904573629589 1.407266477796317 +2.1235809962584202 3.9447608035084665 2.1319577424103135 2.3589092881105875 1.8352664369052956 +1.5151020537522157 4.936240298545975 4.25405537986256 1.4977172453228702 4.393357122054644 +1.3890516287709103 3.5742007784922283 4.605618897597288 3.7524853472975837 2.345786363072046 +2.4508631131738587 1.176874955092229 4.79891233062914 1.3964773905761056 3.6331266628382113 +1.6911754894053592 2.2787423179273074 1.5729454426369816 2.5196439824577515 1.1142140293848926 +1.6274921126141004 2.3774693807517013 3.676915020397104 1.449532447939157 2.350255098242002 +2.2472763092229004 4.995705659716524 4.920310649882248 2.481817194390942 3.6742501584852296 +2.086814335387307 2.9164604603267907 2.1529190723391247 2.535927284298171 0.9137877122478539 +2.5207984115923687 4.664995306227594 2.9675429845834778 2.1697914754965244 2.287791029183796 +2.3183867807539658 4.80590504720512 4.303790406497959 3.1391891373885006 2.746642175810223 +2.139983684310645 1.7919667581682655 1.879972236728309 4.068941379193611 2.2164615240393575 +1.223883645945551 3.9937842870464246 1.4937269477805635 2.1807157885325763 2.853822564366752 +1.2461407944446719 2.4520034088688583 1.0099488847283857 4.065598721037236 3.284981060371617 +4.432184693108628 1.8523731230469962 1.8808517067605348 1.3865768845201956 2.626734729074213 +4.1396007912661705 4.92396172976005 2.5831158857654377 1.6880966256739312 1.1900762823322493 +2.4630503270030815 3.4821738308787356 1.5853655437493654 3.6505221447155733 2.3029295479163254 +1.8937047471698825 3.5751089211807963 4.38612555692761 2.2557606026450365 2.713959254450353 +1.151851792066092 3.829528749185713 4.714868526370481 1.804327174831439 3.954896312889644 +3.4411164618836283 3.0729915254759685 3.5898728425414554 2.853848724844836 0.8229504666966481 +3.9387286712798395 2.1814735479035003 2.267575617740429 2.642353096724263 1.796775925758655 +2.1135982948020584 3.1700304503623418 1.0561119086233983 1.7399081708551631 1.258422118187645 +4.213724063482164 2.1871580885628203 1.690391500702614 2.5418765429963246 2.198180253744154 +3.0636420140736322 3.044926450345448 2.9623806875274696 4.334505020359945 1.3722519655940117 +4.9612432271671505 2.6914619196440017 3.785725463638691 4.783490055266489 2.4794034291110596 +2.103293053386031 1.9653522101057708 4.78402902973866 4.102070648318758 0.6957692938278618 +4.1954026613653035 3.2820135641420323 3.9562438004717273 3.735462556122193 0.9396935674904193 +1.9036256052278873 4.03422656404898 3.1634041162118485 2.142634724810153 2.362505152619132 +1.7064583451758293 3.529668697611521 2.1110596928013243 3.3984629846934156 2.231928140689855 +1.6316837588830628 2.6834900165264868 4.566721220314751 3.071731796535848 1.8279195225251683 +3.764548212048137 2.195756452681121 4.996507638699288 3.315493727260229 2.2993293271537905 +2.925957533340225 3.0496696214806875 1.4241756232585177 3.038262895325674 1.6188213003915128 +3.297549621784717 2.690820795090917 4.869110518753473 2.001128457716014 2.93145714135034 +3.495762206688753 4.702511569742547 2.7651958344647043 4.4554322354638405 2.0768108042123745 +2.1479826983505688 2.617425795522304 2.3807594302831494 2.7549230871763783 0.6003126382327005 +3.4580989430784683 3.5456895555741763 3.8847975369015613 3.425643576753464 0.4674339252953873 +3.7301826774690636 1.0131852931340006 4.5456812332207015 1.0401208087433527 4.43520334101441 +1.2234385321827848 1.5600831524548795 3.2640850427026455 4.9730118098717675 1.7417693004256474 +1.952673269729205 2.4763887291520374 3.999448649331561 4.7977782553225365 0.9547816725514658 +2.344331149977092 4.035587477622535 2.760527761576438 2.781256639591934 1.691383354590121 +1.0301568030598531 4.724006478759927 1.7568202114438014 2.921757239412905 3.873190378202836 +4.543718945424326 3.3386739273639257 3.8612555429330713 1.4917179568806032 2.6583532246989954 +3.1906013767086656 3.8110683371370464 4.0810706563922405 2.398172710344038 1.7936345073053463 +3.9519997088806225 3.981932066471341 2.169595133219739 3.713701539852077 1.5443964973522732 +4.275327568108291 1.1906307999688939 3.9541631498419005 4.254265632608801 3.0992605007537684 +1.1843002912819691 3.3008579961223563 3.8197629662914143 2.6471739213986516 2.4196655938624514 +4.100027850791296 4.5989617033813515 2.596040849965037 2.089603530118169 0.7109245727881646 +2.4837976543883578 2.839456580311327 3.461004019538269 3.607223894352004 0.38454326593924965 +4.163453157875253 2.3178342476787055 1.6350565063115305 4.597877967808477 3.4906475293821915 +4.372810617700457 1.595480054618713 1.8918525802716557 2.66846871073712 2.8838685252152376 +1.3921785133831879 1.6474735683946702 1.5107479353897073 2.16151256813824 0.6990494777550789 +2.9711385929425984 1.2598356341622483 3.7476667868377977 2.5640495436638617 2.08074688395034 +2.9178419642514655 2.267993188816969 4.328783645695816 2.8214557117141386 1.6414447695536967 +3.773369573571399 1.324962978940789 3.6081613816217137 3.5449024988232773 2.4492236604449924 +2.29337570087983 4.891304364213111 2.2858960015766474 3.355971827563117 2.80967891637626 +2.3728344090424938 3.1623641253834314 2.542100452071524 4.545032822561898 2.152927136190073 +1.5069290522958552 4.529146164384427 2.7929921805979774 2.1039071768306266 3.099779736532587 +2.9484252006665495 4.065983423598331 4.6056932156192 2.077841602548453 2.7638686943027557 +1.2243731260731519 3.2492549858230886 2.9738332205048583 3.4553186983558057 2.0813396674559677 +4.927587510268235 3.632368806536766 3.9085476420375187 3.324728024913917 1.420717014691587 +4.896990417179517 4.4452818144530255 2.234956254408639 2.21628152214362 0.4520944673431536 +3.0549411597277265 4.756073967215558 4.60881923423856 1.815532038596443 3.270520782084962 +4.402456252832468 3.0497405935788584 2.302878925928985 3.8117865463439884 2.0264851002996287 +3.253569464711696 2.1130594051577596 4.228391387835874 2.9268861416605487 1.7305141148703806 +1.7142444086182516 3.839509390900431 2.8345431770165255 1.5200396687975193 2.4989339163000985 +1.0847955347436882 4.227169095955942 2.1490879327392283 1.6505115961380312 3.181680367608357 +2.0376174165794936 4.705779323065676 4.592499698258377 4.672955048100029 2.6693746500898152 +4.098653230046638 3.39157798398244 1.3151081866565342 1.9370769642801058 0.9417008887833264 +3.00814760832718 2.2187135128620215 1.3169742853372233 3.9367211889601768 2.736106728569802 +1.9662212023900683 4.719394181084063 3.9846716417723367 3.191246812209123 2.865219784026729 +1.8040476666120644 3.1435728428456975 3.586273026496919 1.9773375925217511 2.093561780426985 +3.582206642397116 4.351464705337175 1.7410595996480862 2.433168689524126 1.0347815999945746 +1.3086641698031496 1.3520750950490088 3.7231692159396648 1.5993708104953535 2.1242420237342308 +4.225605481410954 4.160055123107316 3.464559862965837 1.475089783280719 1.9905496847444037 +2.3966145810070993 2.55294339181916 1.8693701003279224 2.6214024526739435 0.7681089480438326 +3.606726619969655 2.1913703387243078 4.415409850255466 1.1002455260733752 3.604656419021147 +4.468686498035549 2.8402379966363966 3.248521435452024 3.5462218102207137 1.6554365088539527 +1.2087980987034612 3.0316364870368027 3.3381451240588875 1.0086078516159906 2.957952618566157 +2.974604580313224 2.99303013993021 1.5090186950446953 3.5079707166352376 1.999036939595693 +2.480556156451678 4.6431200972744975 2.029052489544939 1.938918722273943 2.1644414739487843 +4.825357578165942 4.093307500005741 4.551208320765719 2.122298150126299 2.5368291101234965 +3.580748497566648 1.5967367899059672 2.3234995949515778 1.5603454898072924 2.125724969118354 +2.1854271888553254 4.106604311826889 2.6307044588133714 1.8751506633329131 2.0644086503631542 +1.2515294747444163 1.2462832364465193 4.8792784209047895 4.2248292853251685 0.654470162862442 +1.3474517961042292 1.7338741512715448 3.7052641917150813 1.2730462715664927 2.462723339651651 +4.1635363737127395 3.637860789341123 2.102574582170613 3.9916778854701795 1.9608789127689077 +3.2127268592900045 1.4143606530175958 3.2707001797525113 1.6820266950542249 2.399584224995241 +1.8232014784239223 3.405331464954657 2.779639260963835 1.014074110527984 2.370728916327911 +2.04918938299655 1.0543072555445203 1.22340962350273 1.3954455289762668 1.009646869106014 +2.7003152818730043 2.835474093243377 3.792837844575761 2.005524329400163 1.7924166663531123 +3.6526783631248305 2.7201750413564265 3.946511716932161 4.00233057168948 0.9341724624797748 +3.078193519608613 1.5038071612280555 2.637876745858529 2.8569065764604975 1.589549141155542 +3.514761013952866 1.2550800408105456 3.7897139259196555 2.748553606262181 2.4880058102043647 +3.2833640601340326 4.044317242536552 3.783999947684754 4.722216997621828 1.2080153056154332 +4.7193474524601084 2.3438036390769246 2.0441994117958244 4.774248811297825 3.6188918377072774 +2.049292219100246 4.309574125072029 1.0902548304876665 2.7963895814569213 2.83191985814012 +1.9271008995404482 1.1176177867183386 4.776877182565334 4.446493121268917 0.8743091775241109 +3.8280121916312115 1.8619797730579317 1.4423963076953492 1.3685893785670182 1.967417325751823 +4.116313240415217 2.8804911772544943 2.126170566922766 3.8252770872751714 2.101004316820621 +3.32113734694139 2.5550660522938 3.223587599297848 2.7507707104502996 0.9002338800903406 +4.586032293834743 2.7512015475656026 2.444923035728941 2.6627352056338855 1.8477137247997237 +4.191478608587433 4.117787412833049 4.388944418074426 4.796800007521366 0.4144593757834676 +1.5324724772495806 1.9790932065208087 2.680283580103892 2.8639897940089307 0.48292654601097207 +3.0447151676670003 4.123033028418808 2.468928637516141 3.902923335136777 1.7941878947369072 +3.9885715342292403 4.347509795743262 3.067277114037981 3.182045142035775 0.3768399870358913 +4.920342982544445 1.8756188508988578 2.505424610144432 2.8501220639386244 3.0641738482790384 +3.138037914037408 1.365445779133946 2.6469902381493133 1.911575404677794 1.9190929769064229 +2.8978797172908703 4.725457800841822 2.4601928640031616 3.80369592235034 2.268268528914509 +3.266337143763447 2.908270084416004 2.365517510300813 3.7398156469581334 1.420178646301059 +1.0546248413357477 2.512466565899606 2.6241158723470557 1.590777633932301 1.7869220489012478 +1.1536101995052501 1.766099406940326 3.027299356886784 2.6876450112621693 0.7003628371966437 +1.892331974196856 1.9432168409143222 1.458646230532564 4.772250777141622 3.313995226455384 +2.042729310609637 2.1298439356676893 2.3495705543867516 1.372529607436456 0.9809169026561503 +1.981688472424131 1.4228566700956664 3.8959840188189374 2.6147637597559 1.397790519186347 +1.4288829903986713 4.978656788482834 1.0008272281573936 3.355426557800087 4.259698583317683 +3.3246272849047345 3.4864384249023033 4.3720921812535 4.383464984764729 0.1622103131339615 +2.0544224415276737 2.1558665615446913 3.1716166758214275 4.481939199048352 1.3142435179074692 +2.037545729881138 3.4198156724855333 2.019723244375108 1.8234165721711841 1.3961398582446307 +3.8414116576457746 2.2416506236283253 1.8706088211115621 2.8316261238665255 1.8662233580563188 +2.9650408968594264 4.616503091657086 4.9492509072363955 2.0865807869343693 3.304876336342393 +3.2358491719100133 3.0352155441342696 3.63290153070211 3.617740482813898 0.201205640993299 +1.8073815386684955 4.059752413858624 4.1558520026516526 1.0061081375714442 3.8722165454704567 +4.478555690279791 2.5044836254804057 3.8933226413018103 1.7932286493714726 2.8822483050499326 +2.695602042173201 3.0420517277807346 4.839562972598374 2.525473703259371 2.3398795975706697 +2.0995488764969172 1.8685733281855494 4.987677940338402 3.085605895750189 1.9160448237767622 +1.3188924805230169 3.843894009306407 3.369448457952371 1.7450393931866048 3.002388637410495 +3.3282518533321457 4.1251241711169495 2.437830763115761 2.7428302121118158 0.8532468310750543 +3.26000293288925 2.9542416939279033 2.314763256271442 1.6966715689454075 0.6895848527866039 +1.0808989389905648 1.890965601744051 1.7556802210024576 2.354346843864399 1.0072783743501557 +1.4894573484743336 3.5351439123342527 1.745438581812924 2.3597082789066715 2.1359215290652993 +2.052881934935908 4.785256003280195 3.071409373772251 3.7368477356042162 2.812236878848921 +4.771641819160769 1.9247326452251512 2.1434192475736196 1.6333058142623336 2.8922495672890007 +4.795640994862547 3.970926458992883 1.5222711590393274 4.980752881917632 3.5554535425396856 +3.2974475213361827 4.6668975551586716 4.151541695976161 2.829706670317895 1.9033237323675143 +3.3740306239976925 4.5760190063872725 4.063353126983925 2.318643468502291 2.118675969514597 +3.9924089727337817 3.1850758041091196 1.5893046010568046 2.2575405973306975 1.0480105876744277 +2.7692059656426147 4.451314640751913 2.44945265874322 4.194318658589611 2.4236433220046854 +3.7755802116762065 4.782607102577946 1.3052771512787196 3.5902987384171823 2.497083661531588 +1.5585779127562085 4.3306975557229395 1.5542810552408577 2.740223253863685 3.015146134666833 +2.2971852029310242 4.83739856565589 2.2327025292020677 2.146665214112955 2.5416699919056596 +1.5401533873843518 4.236016543962206 1.7773824337637314 4.820185688589643 4.06525888555367 +4.730214417677727 4.312902157824853 2.190007223661396 3.666858184338592 1.5346785599195256 +1.1233642202808776 1.517770560909864 2.505649432852859 2.4659164694663676 0.3964026613278729 +4.48066227225779 4.570379414257249 3.547509212346092 3.8843654291209586 0.348599019431247 +2.934404021666829 1.1706882965922354 4.854755334890354 3.737334120889647 2.0878992620273165 +4.53525238288277 1.0450127385907946 3.707413798577357 1.987288710851434 3.891092788923375 +3.7585058077621607 3.2443677322189513 2.5094280806274014 2.115170292152312 0.6479021257076899 +3.593595335693032 1.8445660657161458 3.451269622643244 2.0610938191241472 2.23420951388312 +1.2628313612397029 1.197009182416879 2.400073249848331 2.3575155909651904 0.07838184454704772 +4.7112062637645575 1.0042662901115316 2.4555589885828875 3.2451067943555754 3.7900909891277235 +2.2747008786015224 2.619793734388438 3.571377396862284 2.957919362614771 0.703860667247426 +2.72961816466278 1.0654920100072731 2.3626291420910834 1.7065901916632904 1.7887713557318958 +2.4396939625792613 1.0652414205600405 2.9350972353218263 1.348398258443185 2.099222101991789 +1.7600798566612381 2.579353622381916 3.093014772424231 4.443901742597186 1.579906677427881 +4.646508127911424 4.8304170000273 1.619468307390735 4.421011985960931 2.8075735887380686 +3.580393131618192 2.9630847989436258 2.0703556255369184 4.940321345724007 2.935604335164813 +4.918027948298947 2.7250344923011918 3.4723492101188356 1.0848887384217827 3.2417877478275616 +3.2662367798568464 4.891379594846927 4.736812389594676 1.9797378249699227 3.2003983070884563 +4.296587107350957 3.2902916500906985 1.7856666581443958 3.516027361786855 2.001693960627513 +4.5156003064708266 1.4790613928673824 2.8700792378483095 1.9444501476024159 3.1744854364979256 +2.512422292544056 2.273544165075567 4.039266978521437 3.1679467344391297 0.9034720402594112 +4.203347526632646 4.5405954104533945 4.295674337264284 2.566146933938892 1.7621013517942286 +2.0476023826543677 1.1751095197049728 3.9843174258981713 3.1253970781251663 1.224331637962579 +2.732274058307111 4.017353580995023 2.6666580393665202 3.38563392965379 1.4725337722599652 +1.4521216871523883 4.4632300789199935 2.732215976719511 3.1943027384417024 3.046358140851498 +1.843771188620344 4.953292515730931 2.742954702821104 4.500853871618135 3.5720207686144376 +1.3070235255307256 2.339632827950394 2.5775793386104175 1.3121783504759499 1.633254919544197 +1.5013261843323114 3.486119505041155 1.5268815146293462 3.2976072087100987 2.659863532139986 +1.7635451281484826 3.9537153038747612 1.158192358015305 2.571872312114666 2.6067866063917178 +3.8172635969804705 4.592109522161251 4.426669382334441 1.7727042630682108 2.764763473075242 +2.2234988619280407 2.4612910568046615 4.90314336714641 4.674396690767527 0.32995479978116116 +2.1172983277995696 1.9229526707357416 1.8857620788733818 1.3719940698040203 0.5492975528460567 +4.966530354752986 2.2075889349041793 2.250709603927356 2.2102431085719894 2.7592381730114734 +4.681942833992025 3.122048545324699 1.3222395500727187 2.3281468776300605 1.856103376283362 +2.0865276442999936 2.886843892721947 2.2409320967664272 2.2459435639711716 0.800331938817722 +1.1332962240728728 4.611927381354769 3.3300033750405498 2.710219130807791 3.53341297300663 +1.8836543211455377 1.6454364337018257 2.9533132375509275 4.539139691002674 1.6036188145458665 +3.0349051714283704 1.73259952219199 3.2611492360437055 2.493295777693294 1.5118197437306067 +3.130434240682124 3.0637237183043617 1.6686132448398285 3.3729436156239974 1.7056354553576847 +2.6772312808661987 3.9621097972581936 1.968481224224624 3.158127635869537 1.7510486534146652 +2.041369373235595 3.971089936145737 1.9884373820357855 3.737989061609105 2.60475575254496 +2.20693449294517 1.3714207035655517 4.165639029009221 3.4314787190790947 1.112238577338598 +2.2879735190531503 4.7068197954377835 4.578449424730467 4.99289574240785 2.4540951609536554 +3.667747807257031 1.6583459736089683 1.9671582425183152 1.2182700075817685 2.144418176917593 +4.599853024650417 4.39408082779309 4.28359593595867 1.8108816055371197 2.4812614446832453 +4.289423372267002 1.340072423807257 2.2065637563809477 2.875666680024583 3.0242965693874764 +4.239158988977964 1.399825669213608 3.6798178689757726 2.023437880259229 3.287158098988349 +3.509931012450363 2.60498851153878 3.977701601007195 4.565450151494103 1.0790594462565868 +1.5359418006737684 4.871678505399888 3.1418705102072026 3.9482467698332613 3.4318190563235684 +1.8445278011036805 4.5848739992436425 4.079111244384897 2.1572207230938405 3.3471122570790115 +3.5943578023475315 2.9781277229991514 2.7402238045624085 4.446401403591045 1.8140511321682289 +2.3584558925099937 3.65464447606806 2.502026144880584 4.670208600234581 2.5260878852191886 +4.803860901832557 4.528441538019296 3.590218445982975 2.3573195857923497 1.2632875466110813 +1.188234575761825 2.966283106680584 1.2934623454503837 2.6564009179518937 2.240325451963355 +2.0649996933011883 2.8801103009956353 3.1403161367446586 1.540462229873301 1.7955327415860611 +4.698702973534573 3.129847428699126 3.8804753243967682 3.6170217475052815 1.5908222740890465 +3.3309812087573127 1.345004785671978 4.16202450770345 2.1490974086276786 2.8277160146033795 +4.956589829156142 2.6979892875748877 2.501426492792266 3.9906135824040736 2.70535664826241 +3.1021601313066256 3.693435687185622 4.028325394744773 3.7787245040931468 0.6418001149844875 +4.700068917341491 3.9901853729600583 4.170129395224153 2.4324142764469614 1.8771223936148582 +1.99178062507873 2.8375962934697982 3.7241600089814644 4.966476180374319 1.5029150390491242 +3.430763604971003 4.438283550385994 4.63316965416713 2.661392136963584 2.214272570791231 +3.6232893083362443 3.110308885204046 4.3925279252545755 4.081121975700775 0.6001021412512986 +2.9042918027361564 1.6784418137331039 3.3861518396063035 3.0986721218241136 1.2591079317020093 +3.745516775251914 4.1946163687433815 1.4714830956594454 2.3739989546931826 1.0080800170034152 +3.9443562297815022 4.0601439523577465 2.997713979333254 3.0379217472122257 0.12257023006098408 +2.2655389657117513 1.0193182429816017 4.528658566907341 4.623031566076108 1.2497889232723118 +4.766227902647561 3.1739739138111185 4.478656956716371 1.7400699548190541 3.1678275729475076 +2.984326674979633 2.274476440220611 3.699367527162161 1.1839866655444817 2.6136235832230965 +1.0884255824621305 2.3465943138948973 3.8404815530296066 1.6297584054970247 2.543675567322119 +1.903467321832311 3.8728999437734966 3.353254020242434 3.1794580005161 1.9770862168450947 +2.8872825393020416 4.180366667455196 3.5343546283801186 3.291470893314335 1.3156971806768873 +4.419088655108732 4.873794945648236 1.5189353035118853 1.5458417712885844 0.4555016670270424 +2.288358744199065 4.514972590464852 2.4757878488386384 2.2373935988682203 2.2393394201865604 +2.005332983340106 3.1447877238409063 4.19771651837307 4.755788793069648 1.2687796378547223 +1.9193255087882783 1.2412294284848984 4.705547368400673 3.5944171598352486 1.3017006700887308 +1.9405376009245479 1.2371103805322048 4.439073712185868 3.7078869035571245 1.0146151997193738 +3.6441277907649607 1.0853910647007439 3.5912798499729934 1.076756309752429 3.5874729640281875 +2.7144345417016 2.033219434842315 1.453617163736593 4.38731817391029 3.011752917971107 +4.355970323453951 1.4174404976391686 1.6177432961527694 4.473261111989239 4.097430845513141 +4.859793058421376 1.0303485993457193 3.0853820613477185 2.410622071368579 3.888437463714943 +1.166741511894899 3.704707992219061 2.208244821906547 1.5877072316704952 2.6127266899055823 +3.377647484902263 3.3155777190180524 1.9555753758742496 3.4984395568879534 1.5441122164182264 +2.403407513469326 4.7625588719786744 3.3249965892108153 2.698382508037603 2.440950703943251 +1.3339224068622135 4.734552559891007 1.6702338272278725 2.2095116353836266 3.4431244520141746 +2.499114954626693 3.2066054224241487 3.268739189834962 2.6926396424160752 0.9123779099476867 +2.455569573834911 3.418689360086122 4.201575965543682 2.438320160281709 2.0091467734983 +1.763572624215564 3.4217905642363813 2.4737373199670936 2.5300248412192925 1.6591729932878003 +1.9288598491502804 4.587832602948781 4.463685976843175 4.056562616764824 2.6899601364637857 +2.682324497975797 4.077691459259994 1.9435234761879525 1.4807175027542763 1.4701150722611434 +1.0374007414769575 4.130879061916662 2.5290117449235576 4.135867353458714 3.485913519539942 +4.046608437604256 4.688711326809145 1.7885530162486853 4.5260673746962405 2.8118109792501693 +4.4302584177470425 2.1134573589488115 1.258067340902301 2.246720781589918 2.5189288937625984 +4.911769374697148 1.3895628356763 2.4609985426683747 3.1950266366697058 3.597879395741948 +2.9441263533822726 1.7765481885852248 3.292267432033427 2.5038289605223483 1.408855561890419 +1.84140210820527 2.220597233755062 2.437016772347296 2.574323166241061 0.40328896469508346 +4.594141894454264 2.9377838780266816 4.492292619279754 1.9111962536540044 3.0668518593551872 +2.930727572246752 2.4032404727827945 3.032624944566916 1.5052362966990738 1.6159080177214464 +1.488368429794849 2.3224912408764657 2.218838494150312 3.883745247550657 1.8621695308120514 +2.7182889578948033 3.202604485762495 3.192358127115868 1.383280861525881 1.8727845800861098 +4.842902749059602 4.048643650481807 3.179656079740389 3.0790479311682715 0.8006057177117342 +2.512769393946111 1.177996554728367 4.523958764856028 1.7649116749579181 3.0649566679789495 +4.075458037239713 3.510364642224831 1.1959824796400493 1.1352886070004562 0.568343462411099 +2.8637539014153472 4.767438081782837 3.5750048294357395 4.258612833364753 2.022704467196642 +3.5976314855351794 4.048336809959942 2.644971724538152 4.507011635806657 1.9158099907406405 +1.8732514323185074 1.670237193650328 4.270844171986347 2.6812897864016505 1.6024662011517008 +2.578456258014597 1.8592775788625757 1.033550146265708 3.709190333978 2.770607945315958 +4.274167019421718 2.8288531068893077 2.3404964344063384 2.011613788922894 1.4822604697757855 +4.980390330339322 1.4885751174323332 1.1011801101259873 4.458554118863422 4.844041052224305 +4.823843971941806 4.220709488866195 4.405196963853571 3.6913744571176554 0.9345125872868869 +2.6819066606349566 2.3964240874804976 1.52600920481513 4.661369929156129 3.148330854804654 +4.8220870163122775 1.994876793161057 3.2294301643899286 2.8696602431450144 2.8500091301824537 +2.2587859818274176 1.109724763552248 4.945305791644364 3.340493207220431 1.9737692657627028 +2.3434578778047332 1.004401702708574 1.660739737119592 3.7088267507142065 2.446984236834815 +3.0085692564242845 2.7835137970442942 1.1092195974270393 4.502387416935573 3.4006231504159694 +1.9555405937886228 2.532261371774746 2.2332948133014514 2.7916996437056967 0.8027594972217479 +1.1017515813920804 3.5703025596100555 1.4803831244016612 4.6228056459346885 3.9960684723736795 +4.0836260589527305 1.8636560579249837 3.3412376737236587 1.2802648003813188 3.0291708420153713 +2.3474361508719994 2.207438576494793 2.916051682715049 3.1235311964233863 0.2502939660482242 +3.6875066798344713 2.0519112547090215 3.1215190948700315 1.4506876782445661 2.338129598092022 +1.3248086978054854 3.064178491625825 3.5815138801511335 4.3828740039845835 1.9150940780350645 +2.4075006564158046 2.4932333171103576 3.5410031572037943 4.527893442658686 0.990607149497219 +2.4892831536060744 3.1654272951846734 4.463759755977433 1.1061302293272997 3.4250323996166605 +4.7293323280361275 2.344412757384658 2.41735560622078 1.6815697104814444 2.4958409890947233 +3.754657945979712 3.322259649384845 4.569227553996177 2.2483580105817413 2.3608057362787966 +1.6750296822882675 2.355281522863927 2.6345435089823996 2.292500528137463 0.7614039449279614 +4.604496211765484 2.257852155058851 1.6719893527909675 3.510689836582689 2.9812007309090203 +3.1168034813581817 4.742772479386521 1.6155213078994572 4.886219189662459 3.6525661960214038 +4.757027185413006 1.856276357031697 3.1476683321636325 1.0265156929808703 3.593555883392778 +1.8368619430890587 2.1391529490757053 4.358732415676294 4.013203200546042 0.4590972563727069 +1.2564274563438893 3.0924126218631347 2.208766153084564 1.8852716704656993 1.8642666676984754 +2.129388001242482 1.3701678281116414 2.521814579876316 2.2545154261450273 0.8049000614202281 +2.7583076240152584 4.389396054741652 4.924022568492516 2.3978776217541755 3.0069682008263974 +2.2227381091546436 2.5817189801133047 3.6584421114422216 4.013475787720052 0.504892242964368 +2.7022509652467037 3.318832419632224 3.267418031936325 1.6938167486584037 1.6900868878924786 +3.153543078888213 1.1792455731425515 4.971640732168705 1.4754436520365521 4.015126979849844 +3.324366328765646 4.509059931530906 1.5553263607396262 3.424017937216583 2.2125792958510813 +3.5809827522790694 1.9151706217148505 2.854523598782134 3.8893599696048433 1.9610753092914148 +2.837904036691391 4.564357304209385 2.1021078120953223 4.461178721863141 2.923329684150647 +4.057348787398988 4.530786821037251 3.9810027809206963 3.4626733854430563 0.7020035141731703 +3.5281554619901687 1.9480217934534365 1.1459171940293373 4.80357724262881 3.984381939719641 +4.001578093658221 2.0680481836955913 2.843318456976857 2.7075327662176623 1.9382919456405547 +1.00453194634258 3.189903274323632 2.392985706039524 1.244934403314879 2.4685764389318434 +3.73701252603373 4.141361554822252 4.734835058550044 1.7095327443833197 3.052204486790615 +3.713090810124045 4.661967348724233 4.483234942647667 2.1482897274137405 2.5203840666949318 +4.68421492001035 4.438593588023299 2.932056288968297 2.542047332864891 0.46090869439397786 +2.292250238575333 2.10646208214515 1.024450713568538 3.651437505789859 2.633548337428989 +1.6266108158534962 2.4955371658308887 4.34984694982602 3.163087554456817 1.4708605862494617 +3.2485469872252346 1.292326952046432 1.1957958220522427 1.5373704217139545 1.9858172204835507 +2.427861984535871 3.9950084521086517 4.758153233538037 3.0566077510219904 2.313267187312484 +4.544828955001043 1.6393842873251114 3.6021046556708476 3.858051352689862 2.916696320949688 +2.276876372392587 3.5660164920559483 4.8731033303976945 1.8032121159661085 3.3295817029425634 +1.4982674404122913 3.811926121661406 1.4566788549282723 1.6693109866836582 2.323408900037665 +4.224251167824521 4.133784004851996 3.194563582760288 1.5255971536328614 1.6714165396844232 +3.2348600204819933 3.891782517020937 3.4469270078403027 1.4056466467929596 2.144381654196969 +3.5178259913597856 4.868626941239984 1.7320130843827188 3.1102590472085248 1.9298251579464079 +3.7605197730881192 4.269977257387311 4.294761857346862 2.1903109301338226 2.1652391630848276 +4.37733043986267 2.468539507582416 1.7918608267788074 2.687396066644772 2.108427420851169 +1.2615565274535547 4.761599462696723 4.970820563573014 3.1637709749231155 3.9390009855781174 +1.970437881856291 3.4935918843018032 1.5766034600886245 4.311489871301017 3.1304315672763052 +1.5941773512246291 4.636255097542938 4.187574739705754 4.702431003055233 3.0853385529881923 +2.853932883690722 4.297940452764112 4.575550906556391 3.2469111715867127 1.9622541641901383 +1.4225954066604225 2.3977533108436853 4.263922030046316 1.7429637207172521 2.702991626969337 +3.8726499893940445 1.1761746865250546 1.5951890706135856 4.6233772367122254 4.054738293439202 +2.630681480612254 1.6927750445386351 3.940321066110732 1.0677942207139197 3.0217675225526 +2.774019821132468 4.177613405098396 3.0461421678970617 1.7155483627847263 1.9340514013732009 +4.7725354471339765 1.5964363592705992 4.82485999723616 2.1956063609252374 4.123175972473257 +3.947011359950414 1.5255833518988884 3.7311878903228415 1.6827001743765782 3.1716896948722964 +1.153456925954953 4.164837705185102 1.352261652063313 3.3476253339105417 3.6124632067817255 +3.215859924627049 4.345280897260459 4.426397940571539 3.1771085908955947 1.6841364590311378 +2.9804327325836972 2.864728220003268 4.2115368766916355 4.769111934666327 0.5694536675682715 +2.086788452742456 4.459814409099599 3.912525373052576 3.334886737042458 2.4423182805188115 +2.4784310608182767 3.982762016278142 4.892226167000304 2.592796156244642 2.7477972992778374 +1.1020648420567394 2.4562487256260215 2.4506622277504624 4.373951019657053 2.3522018977103762 +1.4550009570731954 4.925811275961491 4.791352500319144 3.3355100524411037 3.7637749006476198 +1.8644639691646199 1.06926103686515 3.4286145480760135 3.1567990739526244 0.8403757228231894 +1.5673663028036002 2.895567343481094 4.061271748354047 4.505344983767131 1.4004710075067681 +4.895149855951715 3.354980205414545 2.5449939929253165 1.7758491061323407 1.721541869753846 +4.145045222826543 3.4712827352182187 3.3330923778851935 1.9028745053598723 1.5809740834684838 +4.439982361693001 1.0660980717504462 3.511250864587826 4.539943199176103 3.5272231459268153 +4.248586530295833 1.3243319310503288 2.8240383865207277 3.3501710958580033 2.971208607459777 +2.8272389951606307 4.484459556289871 1.02607896877708 4.583158731956656 3.924180988416715 +2.328990155861306 2.982103137405839 3.033834546014262 1.060137135741476 2.07895118605019 +1.5425165108891754 3.091366097298601 1.8523989929538431 1.0404639162131586 1.7487634517459902 +4.378794921029779 2.0915940889335514 2.6596364390905047 2.2190695458182463 2.32924597966579 +2.2143492628148636 3.9850198091793914 4.631570950596839 2.6055018158113774 2.690767608451753 +3.59534778862773 3.8701306637488533 2.947809887662817 3.831853915020392 0.9257642630640005 +2.7250825083266146 4.214938602421704 2.0691747428176885 3.2065100341239163 1.87435395429009 +4.394979815672037 4.443344270153798 4.9360097093490065 4.925244191080514 0.04954812651258944 +4.798322989632291 2.9057083149940484 1.6958006776749333 2.1415790593465083 1.9444044518108239 +4.963984748824442 1.2001880377900194 3.2181554393863667 3.7958914545093343 3.807879276600521 +2.4243877373703255 3.4256752719322234 2.831158140147964 4.5146495858858415 1.9587547510450747 +1.0602151576288894 3.616313049573926 4.2293857602574025 3.6051481989009275 2.6312181525320435 +2.842852069802957 4.924878499128108 1.7419924924741483 1.2943332901151146 2.129608605792427 +2.4177270482048256 1.2824677892309766 3.991297072635953 3.2473438817189537 1.357306131777735 +4.147750617204888 2.2154399795104 2.7383256830439744 2.6482316446657395 1.9344098160158771 +2.878120685920804 1.1357935241047246 2.877477706563557 2.2454697358800177 1.8534125320094286 +4.453540533180761 3.646812747190496 2.458166418796125 2.543536698562776 0.8112322758348509 +2.614266963688774 2.518307471020133 2.887013070235902 1.3761569722723448 1.5139003841028937 +3.791092723353614 2.7267707458306556 2.714754003069731 3.121966419413032 1.1395627336230902 +4.532485745516626 4.665383853390922 1.8149831735550332 1.3585475527888669 0.4753897169489089 +4.558739598214796 2.771860806535606 1.3268158858342414 2.2306398982431097 2.002456906292804 +2.2868704328834646 4.344588110793973 3.4970347562466464 3.037453235531004 2.108415807227957 +4.842008222852218 1.0398929953727087 4.128447848595217 3.291040202598977 3.8932418071068393 +1.5486503785832602 1.5119857374935042 1.0571955369788655 2.75830695360442 1.7015064935756317 +2.4122059745503925 3.6133298652488466 4.105384784823315 3.4514252303339346 1.3676116772368319 +1.6693043593443249 1.9753750857174395 4.145010241544626 3.05138213747586 1.135650350923034 +3.4685751347959433 3.470306582403911 1.5078753406502408 2.366824492278301 0.8589508967300655 +4.854208205824209 4.70778132026326 3.18878195516769 1.4817757594275962 1.713274929808449 +1.2295202956639324 1.049684393224282 2.9279711495495673 1.3961383154258264 1.5423530022358227 +4.289813538341608 3.2508128093286244 2.515124096010168 4.2267777858771005 2.0023188729382233 +3.3157024265980986 3.4426367761308594 4.461944094539035 3.6750698536436697 0.797046673712376 +4.932080070093164 3.918653856539182 3.551473074034643 4.915478400963876 1.6992772646656826 +4.241908325332563 4.195333494914831 2.037210635414312 3.8152021296078966 1.7786014079194858 +4.309370524371065 1.843464213063128 4.164175995581616 1.6245425132784046 3.5398350470867785 +2.8017182939240945 2.9126403524238937 1.836857513478602 2.000061205490435 0.19733004877140758 +1.5886457691598825 4.466469923118103 1.8390402939801866 2.36196360195358 2.924947973405199 +2.035433251044621 1.8514577100016574 4.371961273455902 4.220934468808222 0.23802540919855517 +3.1063374416368426 2.5014307140169776 2.5197827475626586 1.1674584905035568 1.4814496432043263 +3.305476396030163 2.785720903640685 2.80097279683928 2.022851132748005 0.935745208909564 +3.8068781186674636 2.1862836246957484 4.4850065885573525 2.17985792005115 2.8178071079843914 +1.1660580898813881 4.7976635918725865 2.547660010537864 3.0261233948339914 3.6629886339169615 +2.831212192958879 4.823759891887265 1.669549106934356 2.468362206155653 2.1467064773723354 +3.4341414089000484 2.1914476063132 3.1690196299350855 2.0558788811418527 1.6683435538316802 +3.8148835523874274 1.5807965255175547 2.3345701023127847 4.744704896435783 3.286319304247622 +2.231870731141732 1.753268476118782 4.04028298745056 1.7560342781994223 2.3338492419667003 +2.599702513272395 1.5017943585661566 4.503092285898928 2.7407587192706604 2.0763482165174434 +1.1237167844303402 3.1879347392534894 3.5374223389816057 4.884186189923399 2.464704573618882 +2.52872618882983 4.133046485036317 3.8198371100686317 1.649502877059418 2.6989246554492334 +3.612975640585667 2.014318885003343 1.003993756558279 4.347614927792547 3.7061443521394333 +3.8382905279477884 4.057824139689272 3.453342273844796 3.0422585142772296 0.46603096899719554 +3.847418631662836 1.2843963630303135 2.060322861451078 2.6879870198211497 2.638758315043008 +3.989731750223963 4.747276488988181 1.7209250526231 1.3335793171872719 0.8508294482384057 +2.962315946078428 1.205894830152555 4.789504450627372 1.2472516863155128 3.953804469462962 +3.7472355123096346 3.799054604024263 4.065064587416916 4.46530960128573 0.40358554160546506 +3.544120336277498 3.943884171327187 3.383264827162872 4.706088649975214 1.381909544801502 +1.4777339783034549 1.9296186288536008 2.3796765661137838 4.225332059573001 1.9001694497962578 +4.7776872326178115 2.388595990121015 2.89588010717087 1.3629040381334652 2.838621600921169 +2.857321516531839 3.8230089776059653 3.007513784290937 1.1109254744972024 2.128285575133668 +1.130708620489619 2.4933736190224893 4.799892945166837 3.364061717779403 1.9795118619921157 +4.820081620239794 2.019959938587825 3.1639623747557977 4.5126252436245515 3.1079853548436724 +1.275390421367697 1.5974465794360717 2.518105907528956 1.9445464230099874 0.6577922553750741 +2.781285254710082 4.506129918511679 2.782485382055576 1.5903201827011193 2.0967467602924046 +2.4876731576493687 2.55250422967729 1.486059535631974 2.5914252208761783 1.107265264521415 +4.933098648845296 2.09868913818968 3.6513985381733884 1.7735617697833805 3.400021794461388 +4.824895305606223 1.3036170697398735 3.7969343148272454 1.286731456296763 4.324409648190216 +4.045887357039106 3.884263770991023 3.0100235858452566 4.63016884783622 1.6281869835859795 +3.4187962678316475 4.924377030981651 1.8087128795033074 2.6243875302865285 1.712337166067967 +1.0244355434493873 4.7421811706469335 4.738582322070966 1.3609143465361102 5.022974567076784 +4.650088539260031 3.7284634928563607 3.7728364459104284 2.3852694496994693 1.6657535517394135 +3.2878400427362102 3.4752862517671965 2.869538335160833 2.0982368037540713 0.7937519345680385 +2.3920747438241503 2.0416286331380213 4.645730726001217 1.8003401511273354 2.866890301367695 +3.8707184837422277 3.527553861823052 3.9797238055319726 4.259629581527539 0.44284218540311976 +2.755406497701223 1.3749704407689043 1.8081197428010478 2.2835054459575557 1.4599983815211768 +4.049463751091471 3.400033415873517 3.5301210964606997 1.7712125976061213 1.874971697824842 +3.8347635864467797 4.78420470644207 3.839422906947517 1.6477460420785217 2.3884903014958843 +1.4349434435961492 3.7963441024214264 1.8031615800725609 1.7256092741724358 2.3626737886663234 +2.476282022221269 4.887525715243116 2.1178794901283413 4.334483168325237 3.2752752576437976 +4.442009148929504 1.2554994357987241 1.5306640967229423 2.235127633203382 3.263451091422596 +4.653399531952951 2.7937964195361684 4.592217416731062 3.236674055811204 2.301221749211512 +4.785776865993945 3.639794522233662 1.0016438326879564 4.215280687151475 3.411852482827546 +1.3512432647729904 2.8855791123970307 3.7268384407621413 2.3966382264485246 2.030669619476338 +2.129006991742078 1.274122595606134 1.6310509720274844 2.3217809856355456 1.0990610913210013 +3.7599515699591817 1.5099499183749128 2.2648769588293645 2.107747303350299 2.255481580674714 +1.8841700502268859 1.8276441777162327 3.0856621546661205 3.627406652465019 0.5446854827865999 +2.615053668629882 3.518885401167915 1.4738465008347372 3.616135399340404 2.325148065264517 +1.6980131683517272 4.564751673827397 2.950593031180504 4.260936980036011 3.1520137885293456 +1.9940470229727905 1.5076394868997025 3.812596512593167 4.627786247416012 0.9492768800035277 +4.564262014871737 1.6461697670184563 3.7998644944305786 2.570533583197271 3.1664675675419645 +2.549416240521342 4.478552816402514 4.6372297496289825 1.9200217689439376 3.3323846024582804 +4.565394109539831 3.787514835904359 4.864248269166248 3.31421407438852 1.7342728070669535 +4.036947554003106 4.976910373921126 4.898682842578942 2.402057962186059 2.6677079855608286 +1.6828429691940698 1.8345049134561893 3.4696595793144627 4.143756453738012 0.6909471336107886 +1.4258939863876785 4.949647752965234 4.243828757294425 2.356568998907966 3.9973228544982984 +3.0501169532385886 1.3819764919274249 2.5483423833035754 4.854103520779033 2.8459140924763586 +3.9290235854061617 3.335365780264864 2.60174457485956 3.0136916676692094 0.7225856329041594 +1.0880583767084717 1.5694640777038091 2.1471416107974712 3.191149485635441 1.1496538138389774 +3.558442672040617 1.4481940192529192 3.0268608913404376 4.2026921433052085 2.4157252554231685 +2.8652891429756098 3.3884238048710253 2.7366909196827653 3.425892338379531 0.8652563030744506 +4.574774851141572 2.673171612225183 3.797372786387362 2.0272168962845596 2.597988982563811 +1.7489889698887118 4.635720879532075 3.6256340376931155 1.3665824544089316 3.66558797112987 +3.8322278441323663 3.1516223119173636 1.9302452658791354 3.005459036411239 1.2725205471125134 +1.8706458790503375 3.211247420087415 3.718778916550599 2.530722537449079 1.7912817901588798 +4.859954424247391 3.0983803506019867 1.37077526161177 4.47365488403312 3.568053414423238 +2.5460395710301635 3.6055296764548306 2.0286474141370108 2.0844843051033926 1.0609604337040868 +2.1362319891670394 2.5339444230272123 3.3728310002244504 1.677363467321701 1.7414894013959195 +3.989803986561355 1.6079835338208537 1.8760341018699958 2.032990066265302 2.3869863518361867 +1.9873861834506483 2.851010449717252 1.3342316303149788 2.2623965778625146 1.2678079677697445 +2.5207168356692047 1.9786568498288952 1.2156417899948377 1.1556181226785505 0.5453731464669789 +3.035103583568802 2.1005062236354317 2.6816447795224945 4.992332249901997 2.4925386277775616 +2.524838280907235 3.608847066941213 3.913910925423719 4.333620428291638 1.1624246706761234 +4.994549105837606 3.651454631058747 1.2727852992904198 1.1588612365176112 1.3479174530586668 +3.2364949481456597 3.9353038367872077 2.3083995693528516 1.6561915165421004 0.955881377052418 +2.667017651271254 3.2936166193475986 4.033043584241136 4.498753886867618 0.7807127210227782 +3.664693427105925 3.4239432091929083 4.05914570542001 1.566802718166838 2.503943736096167 +1.2592322197879398 1.769245273594156 1.8198689229259504 2.5619026771018163 0.900404024529584 +3.729774149210483 3.8753753884728046 3.7572513772078624 1.8476471325710548 1.9151470157691906 +1.9439498991989685 1.213506995605563 2.2631288003121974 2.0315825804120906 0.7662639802052512 +1.6587949020465143 2.5886750669704686 3.502145714139391 4.86601197070785 1.650699332684503 +3.061856434064234 1.7083507389055517 4.507276494250767 2.262892369031511 2.6209230756287356 +4.384901724729298 2.6564787211843814 1.9091599054943837 2.257550663533913 1.7631852425285859 +3.1138521348368395 3.042202455857588 3.871366161813534 1.8895055516889623 1.9831553530828516 +2.259445977456493 1.0725084895156254 4.866533761409458 4.5679004943954205 1.2239290945340153 +3.090134020342354 1.0249096442977654 4.729442190812248 1.172949727147492 4.112637884316217 +2.566334946383804 1.219547213958399 3.8767330730212786 3.2408034028487864 1.4893769642428538 +4.2861278327240555 3.240687181877754 3.749071100817656 3.970551259154974 1.068643820446767 +3.8392271412030543 1.0822121747046074 3.825090714849507 3.911026995411602 2.758353960211285 +3.4767147254516138 2.919892614969857 3.0948588897237905 1.5666643030388037 1.6264776535491212 +1.5534708257947893 2.788376774513873 3.1547493609095 2.8829554514407016 1.2644621905798976 +2.487309524213598 3.0720912129778912 1.9558476408008878 3.1053268813726023 1.2896790872226098 +2.100360030294324 4.995577906613942 2.9641701496615855 2.6628487842476165 2.9108557361393945 +1.1191141090114516 4.411913947956576 4.297084837720222 4.618202417597653 3.308420662410295 +2.367089568723456 4.210504198304399 1.922383147079271 1.850682164677906 1.8448085340843277 +4.547476384477849 3.7724730044504864 2.64863177458043 3.1425177807885025 0.9189959881207301 +1.8687824792145653 3.155587009738064 2.396819508088078 4.0874223243177354 2.1246185027010025 +2.6059745207178144 3.618712201984579 4.51378962380672 3.6880048833016352 1.3067356460694848 +3.429329740615689 2.035321004399248 3.6623329498566317 3.6134777103253 1.3948645780424074 +4.711079585586884 3.507032371055685 4.018270286352992 1.24417664089089 3.0241238811618736 +1.0595582034784385 1.7223715939704776 2.366875594866822 1.986387370047149 0.7642596939797218 +3.985831322912428 4.230845085698455 1.5207308947577607 2.3960918831227023 0.9090041825568322 +4.124612964279109 1.449692713949077 3.0637019232387876 1.7568673125894683 2.977081632272894 +1.9917885366745445 1.5928121880888733 3.514431804092904 3.124018557637986 0.558215576402364 +4.1947913029099055 2.260409632400999 4.139263067851547 1.7349694309971304 3.085848398644928 +2.8918062081984126 2.943271269031068 3.015565688847641 3.111001720277159 0.10842826468004016 +1.8312590937551239 1.7044455159635366 2.7867855640988592 3.345325528793793 0.5727552493637408 +3.045223111275721 1.4925785798923865 4.9204618608507005 4.5576718813095445 1.5944659325586252 +3.2684371152913863 2.6947014449812534 3.8753886693310156 1.157139133785909 2.778138433713735 +2.1539878859690145 4.887081470902968 3.5830470440355184 2.3558722459002532 2.9959570305973116 +4.641512103021292 1.6563508675013145 3.927496156336112 4.981594842436813 3.1658034749634063 +4.700464997978998 1.6202815752426414 3.004578914156817 3.641188972715377 3.145282544439814 +2.0263187253746104 2.2973050611863908 4.014593789422984 3.502695667262316 0.5792005539261106 +4.21848778492636 4.160219560980854 2.7467973306210522 4.9343563595380715 2.1883349128773997 +1.3517835599413122 4.109687952605169 4.154101893928331 2.9924348015051314 2.992575324481168 +2.1078830001116113 2.371176722938019 3.9743611885826846 1.582132039141432 2.406674861279813 +3.459908035003512 3.048919954175259 2.9666409803916047 3.1992707538945093 0.47225820702546123 +4.016580229688024 3.028949021675764 1.5875111305440566 3.9640807030238903 2.573615809688139 +1.6145152008823231 2.091565451557221 2.796531416141752 2.4332590338204225 0.5996196839884405 +1.5986603554634091 2.5631664307172564 2.52878065320244 2.355578176848949 0.9799342156576438 +4.056107672971921 2.8524745603050676 3.971427586085419 3.3177209969328136 1.369695212304413 +2.5551215035531913 1.833588210815662 1.9231772729265755 2.230492221165513 0.7842530012309561 +4.342304412098118 4.079644526517882 2.0789082817258606 3.9831504986362365 1.9222717383753958 +4.24394589565742 4.125540614740844 1.389342677506181 3.6955239265548148 2.309218864467474 +3.8229939549397938 2.7537816700530535 2.627059769364759 3.273271907976488 1.24932183133165 +4.2368899003407865 4.9286093030004094 4.426509657571616 4.82607561626485 0.7988295734148986 +1.7654541430297646 2.076855595066717 1.5654055403538476 4.093498833554328 2.547199749422093 +2.2452614720018222 2.211480247818723 3.8185051961501757 2.26677254725336 1.5521003140131238 +4.844462208546497 2.158597634894898 3.7338666320684846 1.5338300113934094 3.4718913635521615 +1.7360052466404188 2.2551215662787887 1.929378102978899 1.6167602501839622 0.6059799297014737 +1.4486721087004337 1.330737566908692 1.819998815004253 3.894753634379841 2.0781039715735727 +4.970158961377137 3.697697565077099 4.042714146279452 3.3706552485898293 1.4390348039702276 +4.575441737408305 1.2057915096957892 2.849258692498429 2.726775555747623 3.371875557595702 +3.822619159696341 3.2679598239281455 1.2864459655748788 3.0920024995831796 1.8888306902035674 +1.4391224263567453 4.196380384384524 2.5610774409877246 1.5523986658115945 2.935967356528055 +4.799157399965603 3.1729654656612207 2.3343539268970326 4.81418267554881 2.9654764928821256 +4.6533777957271845 3.2650493035088997 1.1109655596454115 2.648954035944836 2.0719229125464396 +2.8167463701235875 4.818097298050754 4.764172481610666 1.9669529819189466 3.4394538034650974 +2.5966783011810826 3.072840020972418 1.676359738580413 2.851620441873545 1.2680566643883502 +1.5411611150270534 2.8304715823189777 3.119118914288872 2.204684061743269 1.5806683967925148 +3.0382029664798207 1.3039339725667296 2.476719250659125 4.710111621932251 2.8276722630653857 +2.833432723700475 3.262788327250566 2.0488848494283602 2.5790485369022536 0.6822168055799995 +1.3707061047063624 4.2706774200167175 1.2031146039351075 2.6633208022124406 3.2468501306821067 +1.6416653059829 2.3744189126513833 2.660534655165446 1.3439735443266474 1.506738532944174 +4.693567615789187 4.210508626174676 1.165070660179171 4.028864808228301 2.9042491129116033 +4.689928894748842 4.198742477064471 2.7256133727993586 3.4442724222203367 0.8704797104081574 +3.5194211197704908 1.4041308492215694 3.66684354574486 4.700360948527677 2.3542750796229965 +4.635580014974842 4.73815859779883 1.8323827432498927 3.132193254357715 1.3038518820941878 +4.608938426164015 2.2130662981547613 2.729583491044394 4.544265481187608 3.0055405469102774 +1.8396024485382894 2.3039396933063445 1.1115213469356933 4.450638854715756 3.3712482566020148 +1.6937531578587004 3.2463585250221825 3.999904492710468 3.3687688644626204 1.675981983014333 +2.0221062047592158 3.3479112398147617 4.4526984298802965 1.6505127091225926 3.1000006136446183 +1.5931812236787342 4.841429859838522 1.797495171234813 1.6167814043316353 3.253271686758156 +2.791476768560458 2.4048594047600966 3.145515547404529 3.148256813639186 0.38662708199570045 +3.481952390371228 4.421708365667003 3.763541997476362 1.470734514161467 2.4779240199507524 +4.300248905299882 1.6798211281068833 2.258772590462329 2.455158592702425 2.627776474010011 +1.785875939719876 2.3653099456933027 4.936848479405031 4.4029720768151694 0.7878881776754266 +3.4925662704900087 3.771373531121287 4.340497279852381 3.475837356751462 0.9084989109501482 +2.5129232214853685 2.0133143851600193 1.1413836492197968 1.5384209666720117 0.638159557465075 +2.127100538185432 2.428666392883604 3.192266391504472 2.036176076707974 1.1947747824113566 +1.79274641275333 4.517496071011439 2.3212873943684476 2.9063128899323694 2.786846879654046 +3.849122819837452 3.356086625694433 4.737443851236943 4.204355634192323 0.7261320375020266 +3.8361550205872095 1.9503103117852003 1.9629655363916356 4.987843574488394 3.5645893748195783 +2.686746326428793 2.1909855339153763 1.5184730717549781 2.1393976578971188 0.794560321856887 +1.7076860095208102 3.2507984252775306 2.7096125622827616 2.7625954072780536 1.5440217322066216 +2.3704303068170485 1.4048027038236715 2.4830546209222497 2.9612710121735235 1.077556302252521 +2.0393067289084823 1.835310489998693 1.2491580250062846 2.739061459517564 1.5038040795455523 +2.28542317451322 2.8366393253322357 3.126900186618631 2.7240266945794898 0.6827490721425725 +3.8406025432008573 3.6753201569240033 3.654572604129795 1.6983511573645242 1.9631914364110752 +3.3259458461705305 1.0691313394327264 4.0710066892331875 3.030614054312174 2.4850811963837494 +1.6035123633700201 4.719119439080117 2.274444674468774 2.486541438111381 3.122818036223451 +2.420166910104382 3.3127421801422567 1.2654062254203242 4.515651958844014 3.3705767963839786 +2.944753085619328 1.7735411640975518 4.5389580493348705 1.5884242933446449 3.174490007915054 +1.4367321424312118 4.234561133540321 2.553288093153782 3.928763241257168 3.117656001957344 +4.847712911770143 1.9665679200875292 4.595048142976167 4.102809250143741 2.922891648815382 +2.2549022067856064 3.983318010236345 1.4715068901042874 1.2491041562688086 1.742665821560679 +3.9970486708167456 3.5567090302359365 3.946752162014132 1.0522376726384435 2.9278171268493938 +4.645843323949183 1.4364170514404888 4.1979941666941905 2.7980993734662687 3.5014457629350333 +3.938249414135962 3.0293245582382426 4.519897241466973 3.7662192377004393 1.1807518482010506 +1.4786264611723197 4.269921460040149 2.067497633412799 2.8972869910302337 2.9120230336863258 +3.0941599269524898 4.620886471849623 1.1115247057068953 2.6508290079715824 2.1680294458019045 +4.255745094442279 1.6704820498180597 4.537183588389155 1.3615361795973357 4.0949140985942405 +1.4060421315224998 3.7827847902697997 3.173277989430435 2.059721009993204 2.624674229759296 +4.611132451645889 1.5259750040711038 3.556625613066126 1.9273961489782279 3.488923203938187 +1.1529062866423367 4.036300052334699 3.335511658673294 4.076352961681895 2.977046429647523 +1.0408584593799555 2.079173135942546 3.695881377499256 4.240688220941998 1.1725663581338674 +3.662437239723762 3.471867097107409 2.739770071690897 1.8077845350591177 0.951269688231283 +4.108064737708133 4.179651571369407 1.0546978130744296 2.934322150616908 1.880987061368485 +4.34256173788748 2.5350369984077266 1.164888278561206 4.009435060237403 3.370251040646047 +2.645147548299738 3.2626457990253686 1.6788894821317326 2.2510220340468927 0.8418074284598389 +1.3048186608308416 3.839942467995742 4.5680297925555555 2.5855810819281198 3.218222429839591 +2.564860205835877 4.964850695478363 4.1385933345898 4.60998691474583 2.445846736364873 +4.126542294516188 3.246931573543306 2.3015622906803275 2.7515376967733776 0.9880247398415883 +2.802581156344786 4.526776283709433 3.8933826235764415 4.134918214254342 1.74103080925988 +1.5879376825155194 4.068482532774402 4.867879214995968 2.0650128559722774 3.7428815878534794 +2.1270612946818575 3.483351362660618 1.5849617348014875 1.9954299511029903 1.4170416031618718 +3.63137601554576 2.280987102936495 2.451814952781094 4.651278629005851 2.580928259043664 +3.280095153343843 1.9628296275569963 2.5119313737476268 1.6046914178583354 1.5994601598628524 +1.2699643790526944 1.0293663757600555 3.933191119181244 2.8832146603074094 1.0771898455600302 +3.297055220396725 3.7495674795701106 3.6404641921049046 1.3208309790925328 2.3633589629195777 +4.238393452235288 3.2207756861114776 2.5622056653690914 2.673305624219262 1.0236645538394515 +1.958262530149307 4.241674591618789 2.8893419312070727 4.094308490460705 2.581843343695323 +3.3563403671063377 1.0110221668524844 2.0841186393290134 3.5204294301079684 2.750182929943032 +1.8578389917299885 4.619176621752976 4.271776249666678 3.7297167194854652 2.814038741958121 +4.549153032044128 4.27611486093475 2.485685962960848 4.395970816455318 1.9296989569290701 +4.282157471294448 2.8688550618124604 1.1920053780613649 1.3733492242130354 1.424889220671092 +4.596064836237668 4.34478995325979 2.171149392872324 2.6250202801119245 0.5187849738564221 +2.906584858739088 4.334508613139899 2.0799121702804895 1.0398923016626265 1.7665241508402953 +2.6721505342288987 3.3342864164311816 1.6138853031210827 4.373715429050535 2.838148384156046 +2.735710959900446 3.6723227729919103 1.7733272238130962 1.350753682086257 1.0275261975200658 +4.252095465342145 3.198325347163744 3.3480860702414987 3.4711894813090787 1.0609363372899407 +1.5837611936951679 1.3378738806992652 3.5239238035176443 1.3606277768444652 2.1772253603410716 +4.008821656846488 4.61533206767391 2.417598977610078 2.7224332445035873 0.6788069009037484 +3.895309030255447 1.835546865519579 3.8219562361431745 4.261480647902742 2.1061343460971296 +2.023025353915053 1.1282853524813743 1.573344634133366 1.3448193732609717 0.9234627577884963 +2.5852541276725964 2.585536952873981 1.1992160253982513 1.4329926508155433 0.2337767964995486 +4.138577435850495 4.735137635972833 4.345974260549845 4.90046787823684 0.8144613216265187 +3.920466625036334 3.929125481603447 3.2066522943552 1.3140645323679938 1.8926075696300042 +2.1124682891436026 2.1010286484828216 2.9412371243160567 4.106700671194051 1.1655196885852601 +4.698994193975622 1.759370946114751 4.776594866024982 1.6814385591789947 4.268650536548124 +2.8783602049807446 1.2487927032303796 4.505472842731584 2.766517775732231 2.3831607096047156 +3.3551568614018117 1.743523681292813 2.8430376930125254 1.433074601284524 2.141344770760521 +1.170739579545371 1.9070812067054157 2.417614470581413 2.859622881211773 0.8588192050464868 +1.1326076403219876 3.4281096847556998 4.409956743766762 4.832807314314088 2.334123441682456 +3.3855287410230033 1.1662881134531795 4.577649305471974 1.9449387092711472 3.443282452312708 +2.1162620537830517 1.4197309655152175 2.6363668983916613 4.504517892121381 1.9937762392748373 +3.22332529830863 3.988767131201178 2.1114477500411173 2.67345036251637 0.9496041996384141 +3.3105088583862328 4.7435931520414005 1.705503457742211 3.4869084293581802 2.2862926902781333 +2.1019329378610814 2.7384359465437265 3.1292330628583716 3.7000889667762564 0.8549927152321035 +2.9103109416858635 4.182630192125678 4.364407595084282 3.581914456986107 1.4936839646359132 +2.7813009719486286 3.5250118085582196 4.203160735892951 1.148224597373385 3.144159763581261 +3.182426734655323 1.7824305968876493 1.6432106764349634 1.4384845112955782 1.4148858570418614 +4.072558733530795 1.0967317807933528 1.221652995212958 4.401300169640466 4.354962939737082 +4.129028938227808 3.0744591839011854 4.062228603604671 2.913658369818652 1.559272570360867 +3.626947663889184 3.0256255379019366 3.0057370245486497 1.6579761885284792 1.4758209817967802 +3.933081563859895 4.822106005402826 3.8678907491894647 3.255440319058186 1.0795647210930475 +1.7314128560075224 4.928986660321417 4.214774424824546 2.0840933368152417 3.8424315391214123 +1.849061850234512 3.684766023045481 2.0137395124114486 1.662040742866068 1.8690911787752191 +2.5570058939895293 2.0369748257426545 4.85024423088864 3.517655220756032 1.4304634849824684 +4.704687209050956 2.213839615916304 3.3228203013680337 2.7847658464013687 2.5482983202000042 +1.0517171904186862 4.526597575652556 1.9234322122430152 2.0622417479735593 3.477651762165501 +4.763842848907469 4.326218211800898 2.7911981110602775 4.20098699670673 1.4761504073416518 +2.6238385860450966 4.692201828649631 2.1292045215981066 3.6050874313280876 2.5409362185207605 +1.6744215477034126 2.8027033689041057 4.55880864032512 3.3852447239092824 1.6279656427471778 +4.515365086026323 4.771264659133628 2.901630539117268 3.7041188228110116 0.8423016306420349 +4.2830411002669315 1.096108765827835 2.2545238624389907 2.7278512142101996 3.2218902039374613 +2.1492183876249356 1.935917765761248 1.4737857050366512 3.344736621450398 1.8830704944098282 +2.9925843095734677 4.437881442439016 2.4954683685285435 3.6324799908793466 1.8389342651737663 +3.7157050840115518 3.0911718334264138 2.3568411515645766 3.222691353363377 1.067585290757353 +4.838091297582816 1.06011058639195 4.04050878821932 3.5853053008770894 3.8053053056251307 +2.731136800008991 3.993699468557754 1.650842300310822 2.5157453842050406 1.5303992408984994 +4.385441570400322 1.303818016644458 1.6030694067488893 3.0889154420718987 3.421131708623336 +1.0360657172517125 1.9665546568601782 1.9157496348386966 2.6672619982870605 1.1960687685703664 +4.978823532530484 2.717693996136447 4.580037771211675 2.173978389260379 3.3017917150888496 +2.5052081769990635 1.862280043487757 1.5681736481778579 2.2155671699921102 0.9124006559332326 +3.053063232347037 4.769536473562987 2.1017477406773395 2.2952955291022694 1.7273509007189503 +1.9820349471825738 1.1155285243537194 1.164646124810965 3.079943354035978 2.102188587420422 +1.3229532897746754 2.4994944206955294 1.980113341854938 1.468834406197169 1.2828309252570516 +2.0763081433550807 3.6752689623732238 2.4329254239108646 4.8873501912098085 2.929313339177911 +2.5267974336427264 2.0188505853528365 4.24565232237231 1.5506999321231634 2.742403760644523 +3.670094505406008 2.1834441785651233 1.1409333369957761 3.8311425871646083 3.0736549910473134 +4.261331933374633 3.772846681576562 2.739871688420226 2.716707892764039 0.48903415284970286 +1.3821805032943884 3.161882278201586 3.29059042016216 3.013139411480962 1.8011988979082916 +3.8250766809362817 3.077289135682015 3.1686960139361395 1.615023693750564 1.7242632894509562 +3.3206592638566 2.5972078547484703 3.2799932812620196 1.0734021406395868 2.3221598573771676 +1.5948938753189732 2.589043344318921 2.78713960210986 3.0342688532617004 1.0244052096156813 +1.4176790143760538 2.0550035662652255 2.378783648488624 4.838096793047507 2.540551854900985 +4.537532643317947 2.562960312274346 2.7881883545434163 1.1567980828621498 2.5613219456091882 +4.56323579902641 4.087592126101125 4.475537194133631 4.63217172719575 0.5007706865836336 +3.6931655773931107 1.3087460295428155 3.5685291350870645 3.4592143598462153 2.386924024818671 +1.1769748952078651 1.4423007748476064 2.8692398844309412 2.750060359117191 0.29086351036287333 +3.9078478202031697 4.793198281275428 2.5239481248193436 1.1073954049779706 1.6704691098643074 +2.5066664152176505 4.928503380565446 1.7007551429213126 3.316587010259719 2.9113926066800646 +1.737762065169595 1.169205670118937 4.994210414850235 2.87867276166895 2.1906062942438513 +3.8054573502756313 2.107836821014581 3.594995613035142 3.0982655716584637 1.768800778882304 +1.3551577580188212 3.490999782621537 1.0898941752234488 3.845040963458431 3.4860658311025285 +3.306785272078154 4.254528322106696 1.0813439092111339 3.932086996046994 3.0041559606684625 +1.1668978595152537 1.0468004589523323 1.8710517313080572 3.2460785913828047 1.3802616605372295 +4.926888071839613 2.292117279818954 1.7532924813623496 4.030378491397052 3.4824040293425074 +2.0373052934646014 4.256926029590516 2.0641386754242057 3.3817532380194564 2.5812447283826496 +2.7114837649136754 1.2989970105015853 2.4878293705508687 4.792604665155126 2.7031662897438893 +2.2276986525382663 1.9467275074389625 3.346115238680898 3.766624133810087 0.5057395725679231 +4.449043420037981 3.757927069773252 2.1299154803397835 4.333137897682695 2.3090757523055805 +4.685881145818307 4.75327045703993 4.368072056726795 4.7648249862433065 0.40243534430621075 +3.0939826969183586 2.1528109296239415 4.622470626369907 3.030946825813184 1.8489868315622509 +1.850823770354205 4.885445557554776 4.503113013251401 2.6607164577712448 3.5501203442978566 +1.9813175705656993 2.736880224548774 1.4945463328472401 4.116795970726988 2.7289316751165495 +2.3596818756095557 3.50679911625705 1.3500193181157076 3.197180534482535 2.174369454126989 +2.090302816507819 4.230041553415129 2.2385531580220044 2.9185190353086017 2.245180495304514 +2.1813925030935173 4.256516318800963 4.678963384372862 3.5532837840680154 2.360782373082853 +1.840674418004499 1.9521183572994905 3.4900509351201783 4.804375113928742 1.319040484066502 +1.5071044521196075 3.538222797431341 1.960129809634671 2.5374852281635016 2.1115825846900886 +2.9380668001059367 4.568885865794098 3.4941997135000107 2.7892162363498243 1.7766745701075293 +2.0158038366520925 1.8280394820192907 4.496695901159144 1.5810371624820676 2.921698364529554 +4.107215636663276 1.2538072347684794 2.890494615707543 2.9117693311108797 2.8534877118220274 +4.286985033867882 1.7734916812337258 3.170204636339819 1.4634111058546475 3.038222011216779 +4.02130603871132 2.001041408655457 4.863922267861426 1.9661194485956952 3.532524643197719 +3.337668410501604 1.134252381900645 1.1460674883615982 1.259809271406859 2.2063497882942174 +4.833299173183223 3.1466150842987526 3.9346356773930906 1.4559083551180292 2.9981648310072835 +4.139642071440548 2.852251236557393 4.828600538580198 1.5704992765410122 3.5032269403283713 +1.9514778970498603 4.900395634800665 3.3955433638725365 2.0071526521487875 3.2594086261808446 +3.7492348285365384 3.8145666775055096 1.1479856295802087 4.577086268620768 3.429722939707824 +4.94518895357133 4.3752336992154 2.3776188381095285 4.175515369290945 1.886075536345802 +3.338800548067439 1.6647040614724338 3.2480881380938467 2.6937580511568506 1.7634854384749872 +1.82131707342421 2.717336255291219 3.180823136988992 2.752333647415106 0.9932037137208626 +4.028279914136159 2.0841543195385333 1.4880234038850153 4.530021837597059 3.6101771145299923 +2.0548691391099627 2.868846415744387 3.7546417410122213 4.989934716643509 1.4793605856995091 +2.8200585394817934 4.893208715255506 2.1788997766608973 4.227815162253357 2.91479088591756 +4.776114503373573 4.125065722802952 1.1954176113404813 2.8145536649811658 1.7451263779112451 +2.3724026777948004 1.9479636050307536 2.621561497201441 1.286994272126583 1.4004350055367836 +3.6854993463693213 2.9243061353105433 3.469504603906425 3.1829552914905417 0.8133422483850135 +2.7636229622508712 4.498428864991061 3.2204381887175213 4.713437546509726 2.288798506323818 +2.0823106903610387 1.6693193450544492 4.116256102972985 2.2902360671248183 1.8721407592959152 +1.255271096343166 2.7384200507836938 3.2074175791136463 3.250939902149134 1.483787388294036 +1.2601844177750374 4.456539450831474 1.8195006304715253 3.1152060801821655 3.4489908828170397 +4.1875143470586815 4.853413316795621 3.776754931092855 2.6031936426331423 1.3493211388205324 +2.9527481423401096 2.6963818099679484 4.460238176848522 3.007437630202755 1.4752468012872264 +3.8689919929000802 3.569493349508776 2.7423538970646755 4.510671571224217 1.79350127798623 +1.3932303790637772 1.3220421165476437 4.361336393548159 2.4972967134777835 1.8653985358622254 +3.4706776110976603 4.678656551647542 2.4837445547060124 2.759709040720791 1.2391002858338045 +4.800096048890756 2.338514310831179 3.5154267840130458 4.273459331027658 2.5756548673069277 +4.85832983916189 2.122507810401542 3.7818880735382505 2.3434605218715725 3.0909215445307208 +2.3728078777589494 2.030994702824181 1.6637779726029231 2.61013268699273 1.006192572029231 +1.7017906161873322 2.6419970424714156 2.6060586402573804 4.654967090738722 2.254332265323757 +2.7349379710423607 3.4470439431540436 1.43772830540866 2.5917152251941724 1.3560164919915907 +1.7829960788415424 4.084370738489856 4.86836603051937 3.2773657938013514 2.7977861028513566 +4.201431433911238 2.5824076473167987 4.375895182004971 2.8172075534734584 2.247386291872358 +3.0746496510100996 4.382313682242241 2.540384277762838 3.8781896522447425 1.8707507686944738 +3.358022334328081 1.3753697686461748 1.5640448047710267 4.022731356940318 3.1584886825858915 +1.7362978597944894 4.482178336324374 3.450798818470499 3.7676827460374214 2.764104740225707 +1.3896772550414496 1.172385189866366 1.1402116744009678 2.9615271852455494 1.8342317278989346 +3.263866993537825 1.2753202024929582 1.7243475914892654 2.6848506787121384 2.2083669352577044 +3.097945621266771 2.421108704272342 3.394986681121635 4.465895193925027 1.2668674970182543 +2.1073011234598313 2.1157500758224392 1.5538288652431183 2.5745329764919114 1.0207390790580197 +4.10066297403975 4.763787950615533 2.450580255709029 1.4461286049598523 1.2036020327547552 +3.7227468682797493 3.859992961876972 1.4218095672802584 3.2243367207417513 1.8077446249881894 +3.7589692786361715 1.0599123618298107 4.932774215983695 2.224061109886553 3.8238769503349195 +3.3651779139726274 3.5697354947995112 1.1131845368481939 3.765349859166937 2.6600422366541157 +1.6809747453342356 2.8967099206983047 1.6816190152910417 1.1127000858387657 1.342267024442837 +3.50860935506002 1.1033688306818799 3.825300008382065 3.1857702504416867 2.4888110196240514 +3.2612007423097875 1.565886238744171 3.3021815812609305 1.770605318599126 2.2846919079711894 +3.6174378658797015 4.776512236964866 3.9737213806707823 4.574505251128111 1.3055246672155056 +3.6041759672670604 2.812638805015295 3.173337967747698 4.640233777778835 1.6668276445729127 +4.895692148046143 1.0094045592779648 3.595683327269993 4.901821950657693 4.099906014303095 +1.588506614173744 4.064757394748037 4.874198566455339 4.364816659616241 2.528099652962642 +4.6439806524066025 3.1759017791541035 3.271673296855422 3.421755693515777 1.4757304306266925 +3.8107897463803364 3.433986027104881 3.3356418970701722 4.633211780048066 1.351173062220781 +2.579437143623702 1.5433869356691257 2.219953913911687 4.6097610051568765 2.6047222436890487 +3.342085584414439 1.4259694418977746 4.918913046188861 2.543980700308639 3.0515249825490653 +1.4196803065452648 1.152205852023017 1.5695822843618 4.184541260654461 2.6286028668316437 +4.219824251883141 4.128523965838395 3.9106864179589245 1.3524430544800468 2.5598720376252353 +1.0143349986525658 1.6546987391715513 4.180546777314538 1.291213488321782 2.959444639633112 +4.791392336012509 1.3772311914763988 3.766006895807887 1.3708035769335631 4.1705509539636 +3.801842403024167 3.452904123346364 2.2685107055416918 3.3493699219503097 1.1357880826632916 +3.41818491137689 3.7793007716174176 1.5774951959576322 3.145434329934665 1.6089865730868933 +3.3319181490600487 3.0067353683812743 1.669977775381554 3.4581592595391277 1.8175084212002879 +3.7218843033321125 1.4191057612456803 2.5541136682234384 4.4842016649040914 3.0046678167185887 +1.0835113239085365 4.683028342085715 1.3204623250135548 4.3458814050646835 4.702093509712938 +4.371194357029998 3.8573923158548307 2.950677467742311 2.9213464535647833 0.5146385585131085 +2.1692667637943575 2.0327329552520528 3.7922486911519293 2.173441503461718 1.6245547672493401 +3.8407390614332484 3.7358764300472367 2.680561387378803 3.339482029185778 0.6672125475892332 +3.2554212976791868 4.715953094112727 3.953950877824903 2.7588744993771246 1.8871567711022956 +4.895019181077042 4.924694878741617 4.997603473775609 2.7169416050804496 2.280854928826464 +1.8210558534955568 4.2164095847463425 3.7591996298517776 2.4684722450934324 2.7209734801320975 +3.0372336077229596 2.34854221299432 4.623912579385814 4.060564574143335 0.8897509832441651 +4.346769605142937 1.205135530594951 2.6979535687164997 2.920450714549652 3.1495030779894275 +2.4569325533212663 3.8760970384223743 1.0406655244451661 4.963826376813003 4.171956244895652 +2.765889882589542 4.0489205282505445 1.1889310811957032 3.6544540754325676 2.7793832540360466 +3.8777858378488017 4.7383053075522525 1.3673882281839482 1.0836014594652874 0.9061063336267366 +4.977701979466049 1.3643663022089463 4.114100137288114 4.215824720383331 3.6147672964307045 +1.6316171465653495 3.5203889450948616 1.2953261332886679 1.971313087013446 2.006095029784609 +3.694173544981707 4.328367489130523 4.983167945675591 2.2975352738630828 2.7594972017927146 +1.3047815081149197 2.528511730440827 1.0215478703490817 4.749558558326985 3.923720090260172 +2.1181939497158444 3.6240483918202613 2.957291927398911 2.8018567223889543 1.5138552453131349 +3.272932160463235 1.3836672751887646 4.941758097484534 4.013006924603903 2.105207958340056 +4.1409575600304285 1.2087159950097597 3.092164686809513 3.8029711561397064 3.017165297506339 +4.771729881753803 4.140450868818983 1.5338133620756764 3.224697294749161 1.8048827291392948 +1.0097326850477875 2.545953771154843 4.210218928514889 1.9947331185066384 2.6959882417673593 +3.422208079376896 1.6732856650271475 2.618216367849169 3.094650039282244 1.8126551394819017 +3.792431074856151 4.1155205151292975 1.93353669990019 1.5424249605748224 0.5073018618673988 +4.6891546001080835 3.4201499880885784 3.600384046036449 1.781358579482521 2.2179329009910353 +2.101736619198324 3.5022426332209804 1.6090126031883587 2.282935040021697 1.5542163768861186 +1.4668246983415454 3.2070954909790275 4.899864163049314 1.7880797422081787 3.5653533784881253 +2.9087165672679105 2.144021466687315 2.6124198385913306 4.5140592983692756 2.0496319747302247 +1.49968231740944 1.505888919888866 2.0849728488187442 3.421812607298386 1.3368541662299012 +1.1527332567218216 4.544246508711112 1.6215158704407768 2.2011186169159687 3.4406832871016415 +2.9289536907693767 1.2193556314689724 2.209224267917891 1.4827212439409978 1.8575608114436735 +1.0597220324428052 4.84615870056178 1.1994162689223509 2.8880065411855944 4.145894324420001 +2.39995301820879 1.909625844574784 3.251575129183283 1.9187970358924882 1.4201120319044407 +1.2148104031037152 4.124033481764499 1.567164686408995 4.911633654736132 4.432725076238737 +2.5361051400845054 1.9498045727956188 4.3919083756414 4.559273592531272 0.6097208140024943 +2.877007307201934 4.7324077751108575 2.5116791829741993 1.7630856784017888 2.000725651208745 +2.5487281521051663 4.865429030280306 3.2842363381354684 4.836015022696335 2.7883902246269114 +4.0899603635335176 1.031590303103083 3.4343573674763657 2.0518635206802562 3.3563248744670657 +1.2756695914789162 1.439730308784887 2.2173469991359447 4.065113502667974 1.8550355712325117 +3.6933413580753895 2.599282684747933 4.365169211294752 3.98439741652649 1.1584263206497327 +4.7495996098924085 4.339121284778875 1.9858300716376207 1.168985914089936 0.914180962997917 +4.431454453018851 1.4114546919108353 4.584949164225801 2.8477954164894834 3.483977855895012 +1.90061118974812 1.4456376624214284 4.0478922045719585 3.591158549018986 0.6446755328712833 +2.072342644867513 4.66243476159023 2.8468389593789376 1.411167517959592 2.961372935112406 +3.4695428775328807 3.4064850045577972 4.071621499038102 4.361798274233479 0.296949248537406 +4.494330733400314 4.163758020697114 2.6242886997413932 3.5836668578424162 1.014733841273299 +3.1119992861842194 3.8087395137003255 4.605157782518024 2.761220813845556 1.9711799737913849 +4.987444882372952 2.964195772881816 2.9396352924818396 4.33797021014911 2.4594465842998514 +1.07463216832363 1.820951808801353 3.5014191462876743 2.058179610422865 1.6247871748773952 +3.9641505926990543 1.8732593810506573 1.9708531166282461 2.608483597994348 2.1859548690939774 +1.6812741309236632 1.3053098507701422 2.101179847309869 2.468298702999207 0.5254763497570603 +3.3112733984033085 2.478112439318666 2.658495339914154 3.315716264235343 1.061176953720933 +4.496895865025186 4.97824546180817 3.937866077358744 2.425944402234309 1.586696122776576 +1.5791198063017267 4.439948296570417 3.5696055344601207 3.9549879872083613 2.886669237307816 +4.584514049695969 2.407471886723858 1.393567901902399 2.236605198963336 2.334571580310635 +4.85012867137565 2.841274186807751 4.092576328788082 1.5587420958220286 3.2335448443340367 +4.733631074834014 2.4664909247953677 3.3396602566275355 3.4766236190850552 2.2712735243851463 +3.6203072700538463 4.768003391278928 2.7182788512401532 1.0460261700514413 2.0282099044275306 +2.1883389476949295 4.650225884672194 1.8904422654690962 1.973193670178258 2.463277305834777 +1.1807761418942446 3.7937677747841003 1.7835254785148282 4.608269543497191 3.847974052174141 +3.1215801159502337 4.291481921665012 3.861468745633098 1.9427368877566846 2.2472654888652057 +4.020502283655234 4.334045371733619 2.5611269543420674 1.6685118471771268 0.9460819190856615 +3.501148230735613 1.0512656451670996 4.873553324481856 3.1714624849529214 2.983125526872809 +2.8874478684970413 3.8802240848336185 1.345373065832013 1.5661179717985663 1.0170215972307337 +2.9152469391344695 3.9174920442159387 1.3162337156905748 2.0861318914355667 1.2638189948229261 +1.498970668780347 3.2589200024746114 3.4291218729578583 1.058945405874847 2.95214466825137 +4.686045553475498 4.233534774030519 4.6158819441277075 4.507155913315744 0.4653894662430881 +4.231272105263729 2.077339781589772 2.8807862998360236 1.6396963473978672 2.485906016930334 +1.892639967509433 1.8617851739421272 3.8815652369519826 3.281866479989296 0.6004919794540746 +1.7134954587792697 4.580896515029114 4.224281822177053 4.307879224650605 2.868619414122941 +1.2280267720252303 2.5326246023611616 4.871186546534505 1.234393867710983 3.8637076089763296 +4.842938144400254 4.982609582591672 2.3961787128130014 2.147983600420827 0.2847962858989269 +2.742940114555054 4.6234052800876615 3.3242461778298975 4.216484187607037 2.0814028694302906 +4.731608770713552 2.5914565752774728 1.3062762636756662 3.359935128904185 2.966102856335491 +4.327237787206032 1.2607619001069637 4.267302941032689 2.150769021938873 3.725988485869843 +4.981950564215413 2.6075320343493065 4.060123281001995 3.696909095665402 2.4020382801698332 +4.213437623748269 4.707311563005746 1.606079579689398 4.572534870428342 3.007285895925223 +4.4278898416575725 2.4296645852544994 2.5298263481256327 3.6178655403114846 2.275243604333296 +4.700517465433353 2.2227754982692294 2.141488701296761 1.5523764219335443 2.5468134076808346 +2.457838650279646 2.0625242526323255 1.1205561236439427 2.7156985187473848 1.6433967061070827 +1.229693248181749 2.9092123077393226 4.096499809582788 1.049853026057773 3.4789137521617977 +1.7576335898437851 3.785529202469556 4.629987180594894 4.410499147946684 2.0397391039499717 +3.2698587893884934 2.696113149736584 3.977954022391939 1.2428016893001592 2.7946810809530636 +3.815803986527344 1.8645928391833122 4.05675443017923 3.4471483692751903 2.0442222215333032 +2.803996753785541 4.822786835654611 1.7999397475701522 2.539256084058673 2.1499074491828094 +4.942439686936141 4.35142988177188 1.3621509467235722 4.7546345544245545 3.443579187171419 +1.8708611391207586 2.278048554457927 4.064830785746469 3.9058129493826885 0.43713643578496414 +3.3593826559278877 4.181864676088435 3.1935901087886527 2.14526307083007 1.332466229216482 +1.7493582422529008 3.4845903567307235 1.7344707630132956 4.605114615573953 3.3543444395827136 +1.0401944312340814 3.7218270654488546 3.008877687471101 1.3579422570140474 3.1490858007402847 +4.359685872991221 4.02860316501022 3.1354136780752473 4.5022475045212085 1.4063607178248905 +4.2816707460595005 1.1239978533025599 3.997128015981847 2.486648877522146 3.5003493147647347 +4.633858262028713 1.3810112149097309 2.419051982656011 2.428979338463452 3.2528621957199495 +3.3204584813931954 3.86304020375891 3.025489019108999 1.639637940548043 1.4882802617094373 +3.20292170519133 3.3492322522130062 4.669432823206488 4.490774344193005 0.23092342517205444 +3.612631793170824 2.827181537610978 3.0764242221338995 3.0887930586240833 0.7855476383231945 +3.362015984674666 2.1839775392474365 4.484429362104713 2.2985807752778666 2.4830844978448727 +2.4211386197017104 2.923581215784718 2.5416520680920773 1.6296763358913369 1.0412244227262963 +3.188981587305889 4.3296024349543245 1.5987518699677095 2.137333515330078 1.2613826171354479 +1.7000853005276038 4.925665301157466 2.843801936246247 2.945850357094319 3.227193861648371 +4.337301791131166 3.777257697136261 1.7734402779730245 3.153452719652605 1.489323244433193 +1.0205440673025654 2.1417592629062665 1.7205129061316926 3.13657542329117 1.806199481606802 +3.349481679821527 2.8896888242953205 4.540831821212256 2.453612991590393 2.1372627149513 +4.766233522790116 4.893936897599946 3.6607240761472593 3.1499095332401286 0.5265355155953308 +2.7820468820479474 3.291595097716917 3.938597210911526 1.6915111119662911 2.304134397157498 +4.825120571464902 2.5999211303635934 1.9087351100267225 3.41342898245501 2.6861899043814477 +1.7424321818380886 3.741507684738397 4.558490032762226 3.1117174084404104 2.4676818864641272 +1.0659374855296626 3.354648722609894 2.6399028991772213 1.1486497794041997 2.7316725634618244 +3.1285721013549987 4.715588890919063 4.553536508549744 2.5379356814761613 2.5653984065750763 +1.162515912942811 4.128890724444942 1.6840311156123833 4.286480528215904 3.9461528692480625 +1.9503073759258966 2.418117945899441 3.2483317080144234 2.3105469628907196 1.047991869036064 +1.7823613809047707 4.240905958443008 2.4269937461642983 2.515138359442328 2.460124166092558 +2.2908528436898337 4.013468887897124 2.3541130306810953 1.3903340418951102 1.9738986739409168 +1.677923269396557 2.8143234013166927 2.217002844899778 2.8748071134509883 1.3130543460010689 +2.7704313907939304 3.169989035131733 1.1250817968787525 2.7174217424289777 1.641704240520706 +2.23876477328669 3.7215144420358137 2.1222635222921533 2.928605685642795 1.6878193815016551 +2.8737194873759555 2.6114282337618047 3.1138428425369233 4.284727277019318 1.199902938006087 +4.41791761756582 4.996975587915232 1.5556978407336963 4.488321869826871 2.9892460301955515 +1.3609276265492296 4.451463505955209 4.323408167355735 4.412397171489642 3.0918167902953813 +4.319326514620025 1.0614222855114055 4.528407462790339 2.406477271426229 3.8879979042003554 +3.018709539662029 3.075652188979748 3.2009439942728526 1.919927700143187 1.2822812527433374 +1.5231603754219627 1.4825410610998135 2.89806604636371 3.052037172635805 0.1592389287250422 +3.83116273285657 1.2028507755128452 3.253479959825893 4.47316188949701 2.8975244183064723 +4.456851825520056 2.1750528407150793 1.3919510085297446 2.3201766020267534 2.463373572863015 +1.8405389437478599 2.529081485996385 1.0060731209187384 3.23605097315645 2.3338577621519225 +4.973668961452295 2.295173888826752 4.602961794344913 2.7977610861737356 3.230028707436055 +3.635249266924358 3.3305969707180894 3.9068782611187514 2.029474981492684 1.9019611184076466 +2.924359499600434 4.411356274717426 4.104854435318817 1.0233075625551002 3.4215625872177435 +3.8787508050047546 1.6057520681192932 3.2389136414565987 1.4321806790498477 2.903585241615954 +4.9102255647608395 4.005910046313654 3.834189496806229 3.0330760907777834 1.2081263370289128 +2.0522395306871024 2.7717895193462305 2.1910279519129214 2.6872602140812494 0.874070159767537 +4.146959237152521 2.278082437096782 1.162004262789341 4.050576673565044 3.440428907284837 +4.912182184827372 3.9037735573816414 3.3711751071377094 2.6011394035947566 1.26879586405295 +4.810575789816174 3.1742951058882065 3.128071375555246 3.323356641022871 1.6478928398122674 +1.620055252389669 3.3670081517188377 2.2552542000889724 1.2958723274782193 1.9930524353284598 +3.8802005641690713 1.516896791714355 2.8032360232455353 1.0389570030360589 2.949217723744723 +3.849716338460541 2.938389236634398 3.606107797027128 2.5356103226254905 1.4058740801448475 +1.5736860192849558 3.813813641708612 2.285333759501465 1.109618708123905 2.5299165296074895 +4.57419712126436 3.2024275988583795 4.171334025588418 2.6085172977209807 2.079458522669836 +1.276068013897012 3.1373904276310913 1.950897432784969 2.9257136809863202 2.101139654003564 +3.40166768898824 2.1047694552278005 1.2593237105166342 3.6673178020586903 2.735028441101189 +3.143779253781798 4.418389606124734 2.6639537341255277 1.4900921604422401 1.732796163566271 +4.906338101572885 3.2560416694468515 4.717814725821631 2.3352083940656874 2.8983255935128183 +4.526502554151611 4.481620905026591 2.561482747900458 2.965357317814352 0.40636071494586495 +3.544855409913713 2.518266540907414 1.1590335840420654 3.906858621281891 2.933330383923652 +3.2387250208408482 4.31773511100851 4.972950721530351 2.1569865538524153 3.015612204566382 +2.701122424916364 3.66306894499893 3.2951979491327488 4.216282399812181 1.331817432226501 +1.561090156168949 2.6853014406993405 1.996591964916672 3.5768309787609636 1.9393314191084134 +2.5868664524328837 1.6030489227378588 2.0973454112395253 2.218710486650146 0.9912751450856855 +3.647134293412889 3.122422657080444 4.751607712983706 4.494720226546725 0.5842204053185592 +2.643369421018896 4.248166971082613 2.1042252660784078 2.315234359327904 1.6186105195890956 +4.341464441231307 2.5193754864066507 3.6557675532192335 4.192015480421444 1.899360418331043 +2.7909073148280727 2.0931102875922427 2.2176229749561687 4.463460780691131 2.351745764509334 +1.0636418929161895 4.680863754324561 2.313984157241092 2.008447093691207 3.6301028762079635 +3.5824706589806135 1.1002888438592757 1.3134139907778257 4.819300231863865 4.2956332360614145 +1.4773678555407606 1.1514116854207237 2.596687155899537 2.765929739220691 0.3672743890452208 +4.53094081954171 2.550959684303511 1.6724432319606883 3.166583247653905 2.4804797282773494 +3.836358135144183 3.4298298933674167 3.624813959959157 2.843421719756737 0.8808172593737396 +4.596895090872098 3.95269185558937 3.6064275737408336 1.9048604589052345 1.81943080512524 +1.0853749608162029 2.53610008225498 4.431397250879952 3.502201302505189 1.7227909009655322 +2.1247525022764524 2.322094944168631 2.810729332303883 2.792727100292105 0.19816185235653666 +1.3328679114952284 4.487005714337183 1.6957802751174578 4.337342872688422 4.114175280199244 +2.196160002966643 4.319683155544423 2.6309450151006777 3.4337689206455555 2.27021514461696 +3.7828766790490307 2.9941754590249667 1.9012970652726322 2.689698846522146 1.1151802469308956 +2.8512432476774023 1.62853444219173 3.445450314910699 3.154806002407046 1.2567779992516264 +3.9926928517003546 1.2859201771368927 1.3544287762961211 1.0248714147818179 2.7267611494760056 +2.784245935123351 3.6370753113561234 2.0546098084291113 2.3587907656295384 0.905452372954507 +2.397337216706915 3.5720423516895314 3.680275346675324 2.6133169664140556 1.5869254359812488 +2.6773498746848237 2.371764812788807 3.876735794689968 4.873689393431924 1.0427361641846558 +1.654837117737288 1.826152711012325 3.703637701389597 1.4476378205930613 2.2624951921834358 +3.1255759242068573 4.274070936802443 1.3155129626034436 2.4422015618929156 1.6088716523470126 +3.945388751751517 4.513660427012741 1.4861407036741432 4.1685582749909065 2.7419512621148323 +4.492443684319617 1.241322626663245 1.8228410136593785 3.3507607360085556 3.59225929040211 +3.33949272526926 1.5987550575593956 3.153687646973401 1.73939711136053 2.242852056402321 +2.050468624841662 3.148915718358733 4.390100194660908 1.9576023029946819 2.6690133027425578 +2.1850971828002863 3.4384321467512375 3.0797228352582247 1.80396884251182 1.7884062127688791 +2.783637846694692 1.9260497681243165 4.9433759466041804 1.760829285677175 3.296067438855531 +1.3415036472062551 1.3266267991802705 3.499456469761412 4.4914590958232665 0.9921141722205182 +4.803705547504588 1.4068038063268902 3.7451929973024236 3.427460971353592 3.4117290454444977 +4.686799437561019 3.8527886083707883 2.1427134056257833 3.6185615935776094 1.6951996746953633 +4.21920186722988 1.0956913696162838 2.9727423788025433 1.8221573950811965 3.328687974783366 +1.2330980212749734 2.2772208133481713 3.7357946198369345 1.476411062728689 2.4889769912672635 +4.036687021321743 4.48408152433052 1.120936605034685 4.84331368108201 3.749166965821221 +1.0270489060866623 1.6036075163325871 3.6289800955072775 1.4078298302576893 2.294761062042632 +2.102767316031644 3.9065705192620177 3.9602389770849946 2.537167250579327 2.2975724438554663 +3.778045358155244 1.7176865778831858 1.4450927329634404 3.8553537788220265 3.1708731624944395 +3.407247737529146 4.479998171690411 2.165283724505299 2.7624144672644815 1.2277453392056987 +1.4986473574584998 4.896949992413544 2.088579300215869 2.527101415342087 3.4264795992676165 +1.8138915501197528 4.373985222501948 2.855825197999535 2.634230556545681 2.5696660865747547 +1.9314391113427982 4.376338960891744 1.0763371509614772 1.9436564682245 2.5941815804646464 +3.8583928687809124 3.1047634932162658 1.4884383077234897 2.182651193136493 1.0246407985179034 +2.422296046909602 4.035818583765259 2.5812572308602624 1.6677849352209542 1.8541538803027278 +2.8628585438567478 4.001165657381188 2.537026017574248 2.7835953342426 1.1647057622518406 +2.41006501109153 3.799104139404739 3.9412652604522616 2.2318174594429654 2.2026442028527073 +1.6463871399607322 3.7605216590347723 1.5815785682067993 2.23343996336573 2.212348987668756 +2.07333232429425 4.824281356790857 3.048491997500447 3.2527191916724094 2.7585194083481404 +2.932665000686929 3.733718500217781 3.604871745820217 3.4451937541190194 0.8168131794629374 +1.3727998169348536 1.9269643082755303 1.481285624671683 4.769090889077886 3.3341808199496343 +1.6157011495010458 2.3815296885572743 4.774255467875728 1.5353034898828262 3.3282582933085476 +3.122136401200959 4.5243869821685445 3.3594887468330903 4.801068181454272 2.0110837770084706 +2.8251200252735953 1.4071693977138682 3.6222411983770875 2.7363824511577546 1.6719239522843226 +1.493913472615315 2.357908241997049 4.580753246814789 3.3544600339961956 1.5000939988293878 +4.200957061085624 3.2403149344343114 3.231673110101773 1.149353408677782 2.293226686229614 +4.296892638882381 2.6705808063970595 3.092782748506683 1.6692560483440029 2.1613233081975065 +4.210234152930608 1.758796003050144 1.9349142996734647 4.913534977408837 3.857684557415508 +1.2545563624185774 3.4718130623865213 1.8484499653913615 4.042798285130861 3.11951788292619 +4.239254983412412 1.8203785572898488 1.7407108287987265 1.453687565558052 2.435845955411136 +2.0832874186398174 4.260633564193771 4.0068608713390965 3.5647708570370527 2.221774025031403 +4.38269033388306 3.809666442366212 1.6195980263337222 2.4297946821369676 0.9923583028946121 +2.028936551387277 3.5008566225846316 3.100317448013533 1.7930795147269967 1.968608572118104 +3.013242656474162 3.2632267568639337 1.3823337756569596 3.070198830665019 1.7062767930101619 +3.3725382425670385 4.357116179629621 2.240636081569076 2.4817633528762824 1.013674541023138 +3.896748247910535 4.650401834586857 2.5658493861487406 4.089520704637294 1.699872940985511 +4.261359132739688 2.2307296886756274 2.3198266584661646 1.0124086274545756 2.4151185989334225 +3.9241785387776886 3.890744293537697 1.41027095997662 2.5133038884965653 1.1035395281339289 +4.503855090844954 2.4845630650937203 3.7793692429587353 4.383275458876074 2.1076629243989946 +2.14886259494262 4.200376313261989 4.313988807139589 2.2632675437657004 2.900718227699196 +2.6075657983636704 1.2285248755806832 4.45366799761692 1.8059033394428874 2.985366234113598 +2.966919439870589 3.8898745615772943 3.6848215203350727 1.9390310740566283 1.974748196353583 +2.2945565563238426 3.750384652779159 1.5030623373977172 1.218464635823572 1.4833850808775166 +4.165360634227401 2.9678355473941576 4.303041475333915 4.23916020113877 1.1992277309951445 +3.810631866909796 2.509715971664659 3.5123073629798855 3.7234869616644284 1.3179449872441644 +4.487651847631023 2.82164299362365 2.106537578603663 1.6474986601619928 1.7280920780661715 +3.858171511220166 2.970155286819445 4.152889690250062 4.7851191449435255 1.0900857297391369 +3.4991600830729754 2.196395732447805 3.685251821474115 2.420752097306511 1.8155314664526663 +1.3497084765547327 1.2928960310401805 1.8221908931943829 4.235849622987184 2.4143272598946357 +3.2696490537961997 3.863594063415429 3.4581465024757008 4.485261389103188 1.1864803684778702 +2.8678849556926322 4.271958385570983 4.729461413513808 1.0506434446606976 3.937654612132313 +4.22543043805487 2.0378263295736385 1.694223811569417 1.6669620843456512 2.187773968492903 +3.987995322302379 2.5991128018423546 2.5071664907667257 1.8204532839453829 1.549377192313816 +3.4238369623282177 4.0092153815733536 4.632957641014507 4.453315223781692 0.6123228656413076 +3.955062316184636 1.7850821399317987 1.548529927800745 4.695574172696573 3.822656333580387 +1.610007208920309 4.441025242307475 2.523774502198092 4.887034481658735 3.6877717982385594 +4.900526345556199 2.4325854356368954 3.6355588885795176 2.0517588874912573 2.9324315470783784 +4.718704186620142 3.542332330122948 1.0000910777142562 1.1104313949557354 1.1815353276003242 +3.211720044011415 1.5388081592324108 1.0073954367643485 4.616827260135131 3.9782700086591123 +1.2837471104179272 4.069532718813204 1.6073806709317013 4.374957343942775 3.926841236533161 +2.2988877943683446 3.3576511376397478 1.8032806869175428 1.121514709958137 1.2592794226837236 +2.4439054706663206 1.875106179243471 4.8392328056727365 1.352633371400798 3.532691360561879 +4.4366678228208505 3.932268114554115 2.5255287946201825 2.417698395361425 0.5157969180829513 +1.6775529631598158 1.815750542295714 1.0756630259410218 1.4576811408055348 0.40624673655754956 +3.444301585824573 4.271447982853235 2.264086074888269 1.3364146314488248 1.2428778979008832 +3.4022741184902245 1.9592040063798 4.212452360201468 2.6637893707832783 2.1167920075576805 +1.514196148377414 2.905202279434822 2.192186748549593 1.5667087638559316 1.5251625375597655 +4.9810894958688205 4.496968511412451 4.5393111753434185 4.92903411678619 0.6214958557205434 +2.115850042808387 3.3007564567567043 1.1280409753495713 1.0814435035794978 1.1858223029574133 +1.7072587332252356 3.410732109962487 3.3714251875868957 2.0697093115545733 2.1438949991002847 +1.9168170096797024 1.7489282752712727 3.816021157805857 2.6526477673691855 1.1754251455185822 +3.9914759563064144 1.0204443302748443 2.453886802977192 2.416882992444256 2.9712620559071787 +1.5573002516925705 4.412284247184563 2.5201199207631437 4.749934218810749 3.622568897659913 +4.886421623474499 4.487044220730832 1.6397848004481195 3.0503247520197356 1.4659895172892385 +1.9569074190835352 4.695836464238862 3.3048389781893865 1.4585958784187887 3.3030812732728845 +4.696040528742358 2.956662456582916 4.946014127780723 2.9266362293033015 2.665206028577938 +4.592346563112656 3.4980185957218204 4.254702507005968 3.377676391869036 1.4024009793371996 +3.8571910335921915 1.0443883137308947 2.2466938957378777 1.3827328393054934 2.9424968730469145 +2.248275171975304 3.290400921068106 1.573578851314151 2.732328493273423 1.5584372973151583 +1.1981891500281052 3.034440382352562 3.4519695958133174 2.9917573241536535 1.8930435608298175 +4.110477313478084 4.717882560634518 2.323799513236686 3.60666106181091 1.419392435897636 +4.139390534309955 1.6690826923751803 4.192773780401059 4.051037890867888 2.4743706060948516 +3.322615239545407 4.32077913732905 4.867918324072236 4.387015610821228 1.1079704808571467 +3.115829711009432 3.6564889032393593 3.6441108892766194 4.969018979005321 1.4309765226485287 +3.825387209702416 2.009816798016711 4.85153886296117 4.181805273831699 1.9351586498777928 +1.1413825798686914 1.4583520428145205 1.3668457224311088 2.752927192098601 1.4218619767740337 +1.129862651491372 2.4164946797877596 2.1996746823982787 1.5890666185505005 1.4241714025615064 +3.602611302237496 3.4668192655186445 2.024077460711807 4.089281964582538 2.069664011390304 +4.201639414551858 2.4676358799982796 2.210030296675804 1.0528818135660192 2.0846488600739406 +2.769958435857007 3.099738097464176 2.3433536215356336 2.5638636890302946 0.3967106188095285 +4.716225140420159 3.954589024245728 4.8964945535987585 2.4113655003434937 2.5992221884238136 +2.0821788617545813 1.8829546564270463 2.7041004907911548 3.028252703815414 0.38047988277557154 +3.391853036787047 4.92037472613808 4.902694088807323 2.2909916711574936 3.0261143522964393 +4.249196774159229 1.6516491147672152 4.58276542592884 2.002747258382448 3.6611128892294986 +2.289970951764367 2.7317494217171863 1.3016611156579634 3.2456232087586527 1.9935287396790313 +2.3626930707284055 2.068865990742106 1.7806103189357776 2.2254068120618706 0.5330837394167504 +3.8297838652793943 2.6708769948639053 2.6974907385871996 4.761986137561495 2.3675317076403135 +2.4172591419382456 2.682517642304855 3.6349619215590656 3.8971391403617672 0.3729597378750984 +3.2383478821518477 3.9087678007519866 4.803585726396178 2.1322076563235477 2.7542192469955595 +4.157337920296602 4.7413818355168065 1.9957534467990552 4.615259585402925 2.6838255727764992 +4.946258372663178 2.3249973313571473 2.1872220351823595 4.349176605022608 3.3978017906761293 +2.278694404663554 2.086476842141709 3.1351469965123173 3.655270364746996 0.554505103245792 +3.29939948456889 3.2380266524880246 1.1568839754252385 3.262726750430894 2.1067369122795436 +1.962269183249584 1.3291539715200709 1.4557407375814564 4.742350119572341 3.3470339258982444 +4.228641972937181 4.685882174277934 1.1896240786646457 2.0877756056605272 1.0078416379407857 +4.606531052970418 3.513065325201732 2.5381706659659695 4.917495352591671 2.618559386798626 +3.974746276897782 4.246149876061951 2.9401744934061256 1.2948342990877006 1.667574366761212 +3.7841592073810495 2.608489722960467 2.815024572464648 4.930787257592627 2.420464929797107 +4.062476441707537 4.5676502657545885 4.586020294880598 2.048806402028663 2.587016608099606 +4.362434125692904 2.1538568029748126 1.0761454121672198 3.669712593151158 3.4065238165469474 +4.36440992098937 1.3759322541564534 4.861924964917254 2.1904372847273876 4.008471677655382 +1.0184403591180469 4.419065000526457 1.777091739497338 4.646767511583365 4.449638972843933 +2.423136794177332 3.997626763759606 2.787258345975813 1.4160596526479194 2.0878708103949615 +1.8159357743078903 3.6545031525780667 1.558772899553281 2.8788024191855364 2.2633620870598308 +3.465786769654706 4.054121083819243 4.999665553404726 4.275322074274934 0.9331724068902318 +4.961094637127731 3.1230589332920022 2.9585540101241286 1.7556427053979227 2.196672678305306 +1.2494957939195697 2.44126796454712 4.0193738318748835 4.7065120007776695 1.3756742964253479 +3.1040445007004633 2.4207260588470443 4.918871995449813 1.3499555599911521 3.6337430586468185 +4.259156095027938 4.827650336354895 3.270738453381283 2.178575644596503 1.2312616713414624 +3.8974427397008418 1.4669005779402862 3.519306531068428 1.130256575558509 3.40809255889825 +3.5316039457584765 2.1640613171370195 2.0813367127486755 2.32345950396771 1.3888111056312087 +1.253989435228784 2.8268216217166318 3.7155664150000836 4.007913842789506 1.5997712665838313 +1.3532808178518878 1.4857166050393302 3.2411112837780367 1.7048585805399865 1.5419505847899841 +2.5412585925871642 3.0460732109476325 3.0653120225260766 3.060460927114157 0.5048379265042602 +3.6002074363376764 3.271621311371191 2.7757089733194644 2.269090160328949 0.6038472184223501 +2.595357486184661 4.248035777018254 1.6302324438113005 4.023927875911686 2.9088010166821134 +1.6679896443764766 4.0013804862577 2.847380985495525 3.3650719163783993 2.3901290176251035 +4.491221575141545 4.488778928182303 3.595676878568881 1.3233664093153914 2.2723117821292 +1.2858529128771155 1.9775843483649242 4.645777373080078 3.8938026866832796 1.0217427796777365 +2.0674116149265163 4.233329391639142 3.577805662070954 4.980800185948253 2.580618811353093 +4.441057472858421 2.6633069673911964 4.45566059414302 1.0643529051118517 3.829016153187512 +1.7374185659615264 1.0108032949043202 3.7791781202221046 2.9514956776218337 1.101375493608918 +4.902899692613978 2.7779887117821556 1.082525781641106 4.40468627511924 3.9436020363224453 +3.400546781388694 1.8883322191221317 4.565789890296767 1.464112954069182 3.450680034291384 +4.81938027945736 4.733829140021619 4.218674304124568 3.9073385908233305 0.3228760192946266 +3.554467873428624 1.5595529793290566 3.6541535281677997 4.155682020205351 2.056992042528543 +2.21809155314886 4.390664135794625 2.175269380504951 2.366860527852725 2.1810040794565526 +3.5559844037184507 3.8184603692359445 3.7889707065922 1.6651027896147212 2.140025364625521 +2.179961702556232 2.04116971702196 4.270484608274829 4.269005962584155 0.1387998618213436 +3.6405735842913995 2.71301475219539 4.529700347155957 3.8852738965791382 1.1294471378521225 +4.864267756970868 2.733578383219198 1.6281032091212753 1.044663690295379 2.209126270620599 +4.9911352058869 4.75454770631397 2.1271544199429018 2.5594732714008863 0.4928217063808395 +4.87464826203029 4.861401169892192 3.5309406315672742 2.8802015360023616 0.6508739170889826 +1.3563155032320169 2.530065655490969 3.007325510163425 2.967105066028384 1.1744390593191003 +2.9265115409731615 3.5312956918714815 4.7499392311992015 4.681797513702401 0.608610846798852 +3.1126196153300323 3.346160758397454 1.1771473501564462 2.987606358140115 1.8254597462268094 +3.4856121301508045 3.971230774961543 1.0705767647881377 2.2638456513369074 1.2882996948665164 +3.104588763766989 3.2781805835770537 1.4990125885654928 1.083421782023136 0.4503885415810405 +1.0040934809218856 4.71250381350699 3.412697900916158 1.3874148059976177 4.225408715069678 +3.316658823163351 2.508188970026617 1.2103597121891165 2.27320350108469 1.3353877425769756 +2.6599746305135934 4.915001348157345 4.412234289599628 1.4658906184764287 3.7102677161702067 +3.182854792465078 3.1129748043560106 2.6253046481943945 1.8997579084082479 0.7289041667821838 +1.1357758439349688 3.2592148289088043 3.3979765324823537 1.753415150783407 2.6858099823111576 +1.2134000737355328 4.801183454854895 1.8068215763558366 3.7337955879573355 4.072519911703791 +3.76872791698841 4.130218050670177 3.0303908584438726 1.310740436122598 1.7572343872514558 +4.319474624310777 3.136493857740339 2.5735515497828665 1.3696591178538422 1.687838997573987 +2.901816105167889 1.7591921512210131 3.335150565276589 4.032026749694445 1.3383668841322927 +4.981170449921114 3.1435603080262204 2.0612002550987842 1.7604099825131732 1.8620649348712568 +4.362604708337575 4.1095674591787335 4.278412448315962 1.8483554762724173 2.4431955993819474 +2.055034145180981 4.075428430502274 2.44953203139186 1.2288226031836968 2.3605348072577197 +2.9457604246711457 4.878285718234494 3.743005999033857 3.606191378962913 1.9373621887833112 +2.1530554917580473 2.536322468151586 3.631422378052463 4.8937351796803235 1.3192146089046406 +2.9666381054574136 2.847755203760401 4.72867345240439 4.456760526712867 0.29676553619654905 +4.950793750036522 4.476145241590578 3.461725841613477 3.345677302529305 0.48862917431681274 +2.547172274797829 1.00095505804765 4.780813129838613 2.8207629493495214 2.4965144484681017 +2.9627497535440197 1.5873131344338702 2.2311826071903575 2.37209573236602 1.382636033826665 +4.426186919177904 4.243769785911839 3.695259151458553 1.7602737095330783 1.9435649387073572 +1.9834187859798074 4.952737644042605 1.3925737735668164 2.5393069168396467 3.1830569242047404 +4.686582935953078 1.7836608239941283 3.1062655095202913 3.47787605034671 2.926610869615828 +2.4980972794996523 2.271781786312729 1.1708562534978935 3.2404384392314642 2.081919577208059 +4.13668697992941 4.865683771919329 4.445668175519309 1.1304615611825621 3.394411763247604 +2.9774429169566345 3.4351916568691485 2.152963985969364 1.926338767145693 0.5107767601392718 +3.432362886243821 4.524833030938284 4.352181608491616 2.707049960238625 1.9748288931277929 +2.785260893771738 2.2989230317632474 4.053731778636195 3.4932421661481605 0.7420735285199009 +2.210618191228671 4.377619036231637 1.6727179253921993 1.887010996750277 2.1775707066994743 +4.19444022766024 3.853870909739707 1.7414432654154504 3.8634536145889173 2.1491662063014476 +2.563139822877164 1.3696728858666698 4.031516587744029 3.999957067771945 1.1938841371917457 +2.6622934663501385 2.9525949765211728 2.535827469395922 1.2720286823836222 1.2967121272130306 +4.5286018397111345 1.4506131947019627 4.080261598084261 1.3263557920925706 4.130134536196144 +2.2410786172564046 2.365188805677758 3.9740612337415873 2.126593311843936 1.8516319994293706 +3.111605563331824 4.532314246821006 2.157920390249583 1.9559680488463393 1.434990561481091 +3.085696858212727 2.1301770020415365 3.402986490264467 3.7705748122592757 1.0237867795612385 +4.020568294571758 2.897152876055588 4.649026537809731 2.6499370288990334 2.293124738691002 +3.419697287629384 2.168057335307343 1.6592501057640554 1.5829104193882602 1.2539658360436603 +3.8184520992287725 1.0544138897549136 1.385850107671872 1.5192949199115717 2.76725762106551 +2.959411259751736 4.754605262853961 3.6803931407541732 3.6603792972912483 1.7953055624891125 +2.214871736117419 4.7232343635824705 3.480156200822914 3.6924744435945356 2.5173323394174645 +4.717833333387575 3.8558144877175464 1.9245771764054598 3.569951181245018 1.8575069599040688 +3.6568536438136943 3.611389029709173 1.3493635026760997 2.504377554759143 1.1559085135273308 +2.629732182670997 2.7084753197637466 3.1154006343068725 3.82513103272141 0.7140852330589573 +3.1321107379958093 4.148417053294317 1.0890937132285115 2.625723566693407 1.842311003352902 +4.364580206231443 4.713452912960186 4.005245059145355 4.815139566046565 0.881839712084341 +3.2516840953593156 1.1341946275077377 3.9117197433633653 1.06699662857539 3.546295425690217 +2.2782057134082065 1.0074557789466079 1.4670277329421442 4.685635475465718 3.4603816546974775 +4.284326465787771 4.072329400035361 2.30423871606693 2.8461269029413034 0.5818810556820246 +3.3501930417658627 1.9740039800099467 3.335053023909686 3.6511708371509015 1.4120293217724045 +2.9512462230929386 2.3322526422387897 4.026390251225293 1.887819141906001 2.226351149920827 +1.6985783502499525 3.429051114208217 3.3048838528739863 1.0367001208148818 2.8529271685724686 +1.690780036474547 4.880377307282018 3.8480085516004685 2.5413779281896383 3.4468557173135985 +4.659058122128256 4.483838571746487 3.4991718674861723 1.9185020431115931 1.590351842997125 +2.1806817179865043 2.3095224618584673 2.040249851900399 1.036170351564369 1.012311997497082 +1.8211193089709612 3.035836529992463 1.7493221319264647 1.798926016416719 1.215729604970909 +1.4207428451972888 3.0897794250693975 3.633018716562506 2.838149539546021 1.8486481854376864 +3.7908763084666113 1.423256691368771 1.1869640937789159 2.8990605497854727 2.9217968659605233 +1.6457189723945445 4.884572411768065 2.7023834417535726 4.808499948864206 3.8634050193146434 +1.5069160008464957 3.557040452458331 3.9291689346361998 2.4438188989429475 2.5316545964310917 +3.503306247259981 3.2743179419528956 3.0059763439530665 3.7365528720151993 0.7656224313084952 +1.0550465224775176 1.2151762119421998 3.036109865358331 2.584795998645817 0.4788796547516468 +4.971975742912653 2.3034852356079973 4.091485791734408 4.585186397855848 2.7137763128267838 +2.621816018745983 3.7291802819359825 4.021263163063669 1.8601588406768403 2.428297243672892 +3.9948138533019732 3.9234603234257692 4.453152048911058 2.5326945982699183 1.9217825438766112 +4.31794916506548 1.8846189931473996 2.2918064681060364 1.5442443394550813 2.5455735820753684 +4.40120108576163 1.7080055638037912 1.6961130516799137 3.4081965872626103 3.1913213802917286 +1.8330813967483737 1.4691408426125223 1.8351405372127214 3.8346810490720906 2.0323914449513754 +2.1040732378202187 3.6938266140594567 2.053559895535906 1.8745660123633012 1.5997983021235096 +1.840906108579678 2.218934392345149 1.0705785996291333 1.8438202904634005 0.8607020946709169 +2.250675806108661 4.8685065957334785 2.058991435154467 2.668701211675767 2.6878958414889054 +3.8240070352685995 3.036812048164001 4.458845362875508 1.2377428892794007 3.315897630073879 +1.8235982573319105 4.572880187697975 1.45177524150931 3.9460945259183253 3.7121664597929946 +1.169842267036469 3.6586417512830236 1.7495544863749029 1.6617552778272011 2.4903476813102863 +4.3776329659472974 1.2933326911836756 1.6340907277476782 4.877965956511838 4.4761182608032914 +3.97226799109146 2.789743246945395 2.0273445307073774 2.949736466813112 1.4997238593523148 +3.2640336537074788 1.8661882842510544 3.776721555321853 3.119542248994655 1.5446217393185506 +4.5162411341946616 4.748958846197187 1.0122510839223238 2.3958295823535676 1.4030135404909483 +2.1623762958832353 4.79483329307347 3.740617559043806 4.685541788138758 2.796911089181513 +1.2246392030684077 2.3912067560087906 4.215538951519354 3.771692706509401 1.2481503694598455 +1.3570052318299788 2.9298129441942518 3.3063364123697787 3.2085910664221995 1.5758420773437132 +2.3048758534245573 1.1855663300280281 1.6204046060430999 1.0134200012474688 1.2732965560406866 +3.8867222928178307 3.8254079879886973 3.4867630982563016 4.164578260544992 0.6805827195904434 +2.42971468800902 3.930700263921272 1.083057984892546 3.3852536669070092 2.7482835838724275 +3.2746643884515994 2.412246184868036 4.936507694756548 3.68092361309015 1.5232388335406737 +2.3918604539918866 2.9828560723036115 1.4700803014837547 4.264707507080001 2.8564343225641196 +3.096739314987111 2.9719642025330226 3.064448516674231 3.130793983963465 0.14131719540720167 +1.0606536306153047 2.595801549774719 4.1192412555115805 2.254002917223347 2.4157386432144787 +1.6753024533427787 3.312095737788868 1.6237956345927804 1.4374116080762867 1.647371015086862 +3.3005088334723633 2.4398991056656 3.918570055061752 4.476790653401796 1.0257969292246631 +4.181702745882692 3.9993499876255414 1.408734592051176 2.110908030889236 0.7254654138231935 +4.2031180645085815 1.7622306387568991 4.079391894979491 1.83335441096651 3.317019114322984 +4.645742148329111 3.111732489241836 3.7532753278706736 2.8274807827989097 1.7917257529704964 +4.139392743668644 3.3169776242230133 1.9428353722608547 4.935684113240523 3.1037896538065133 +3.9635897658347794 1.852542427786 1.3935595318169551 3.619783464758988 3.067995088504336 +4.449667808585492 4.682757307618655 4.744182782449975 4.77644793246386 0.2353120363792497 +1.9233642742820263 4.250313503001502 4.710929760729176 1.9987178458891868 3.573623676891309 +3.672760813440331 4.652298865165763 1.265701428898938 2.0319235362552157 1.2436201641094238 +1.0219809140760172 4.519876861719454 3.711936666457789 4.05890676581724 3.5150624902538907 +1.7811233525561332 3.4454113570307094 4.0048873501472055 1.6581077835869746 2.877017361063814 +3.172517078763768 3.8960104845686687 4.472468223105869 1.604155779196466 2.9581512781006833 +3.333379204848788 4.151206817320599 1.1009996313908745 2.292504254275253 1.4451730934653424 +4.806208934507909 1.5872646384480253 4.789413262741951 1.1163757166009227 4.883933578223414 +1.337077985582079 1.6192292637472017 3.760238908488367 2.4173980323042508 1.3721628775481203 +4.205562616530518 3.3012452218115067 4.6961023823114445 1.9273062087465092 2.9127344886101803 +2.8276709991389994 4.181464952453124 3.114732412466551 2.754549201440307 1.4008890082854755 +3.2685704377363685 3.907892218028605 3.513146969203466 4.883903497599753 1.5125163797119934 +2.616703786197092 2.5210185943940306 2.52818068500447 1.2316722143734151 1.3000345650591238 +2.251641887124096 3.0429482122087768 3.246678407482156 2.792583873586137 0.912341792221131 +1.4839753334172356 4.616192973362924 2.541630018581525 4.2721069585845335 3.5784546642187767 +3.897291402937763 1.6490583291523135 1.6007082164207889 1.8944924188624803 2.267346711834578 +3.7153715969536627 4.242808036281205 4.0620727440892885 1.625125755086652 2.4933711766882065 +4.7707664963856935 2.2936702580980093 4.931728227324324 1.1397495983839243 4.52936062773541 +4.794446498486996 1.1791550148810614 1.7277494730743674 1.3231768422809447 3.6378580957784368 +4.367859904998852 1.1752337669887813 1.8383505065691326 1.038992830096043 3.291175223539694 +2.284351617231802 4.339515174732599 2.6744718418883804 4.804431909175535 2.9598018745039725 +4.227855976447572 2.1474708491801255 3.535662824247643 1.3939926540401921 2.9857584288940724 +1.2690227771624696 4.2828352370401355 3.7084326719754563 1.6426679121029437 3.653826704490103 +1.4776595143617848 4.975966923263049 3.1674704450401343 1.16482161553153 4.030974703654894 +1.2595714136892218 1.6484346145547835 3.9274530587066727 2.315498500105958 1.658195431178435 +3.456599894677552 2.174092493710612 1.7108585215347847 4.158779559356837 2.763538065767644 +4.096932410458313 4.489108287165278 4.402390512572712 4.256383347238314 0.4184734287859416 +1.845812764420947 1.5163889486874802 3.490766914780383 4.4063124302791445 0.9730075237747602 +3.5872544021926793 1.5823512540628393 1.0951146834677603 4.585596974759045 4.025307846512985 +2.7989556549919206 1.8046107109277107 3.056644526589848 3.3458219308913035 1.035541133390936 +4.030166111571607 3.055192069625181 4.1427094100557795 4.5266173678147155 1.04783572305013 +3.7916465248473803 2.9600076421305634 1.8645885317675877 4.842635763276267 3.091987798220262 +2.7635879486695027 4.550217993994028 3.4152540531541096 2.229785068012168 2.1441510286334267 +1.3169903132294212 2.4797271807568944 1.7030953324659572 1.7470528653840063 1.1635674831344516 +3.4373287323524755 3.2483793591565853 4.429466741376126 3.1791973930656887 1.2644664127432277 +1.2313591401697943 4.336129121900411 3.0487412050427705 3.413419335239973 3.126113686048488 +4.2181022286148195 1.1694287265601724 1.8906436997918243 3.8445263900707105 3.621058918258802 +4.0624158271773245 1.7098376498949195 2.0794844409997015 3.926422614474061 2.9909538105531164 +2.572081617144646 2.4261983331176395 4.255904874246712 3.0293746272574067 1.2351754447600347 +2.53439546687259 2.7775052777952918 1.5575189398196736 2.2219192923919286 0.7074815959903189 +1.3261399874433266 2.326523526650053 1.2928130786409207 3.4155324570067265 2.346636909452651 +3.0748978551045303 4.8165576244915815 1.096434831759491 2.5882606489528075 2.293234183668529 +1.6364903971281923 4.439141035706739 1.8762546291466897 1.6609339239853291 2.810909747394235 +2.9852292610857263 2.099374285702175 2.516707766493058 2.9265605716591474 0.9760729272520086 +3.213526347222051 4.855325882660322 3.5335852247252735 3.9959280860877553 1.7056572445887745 +2.388804685208516 1.7330747346614648 2.9655903882548578 1.970065506621789 1.192078671059496 +1.2338032732512034 4.5634940968798405 3.767371972973358 1.1086568249990227 4.260939710794433 +4.11698058991118 4.036683726212916 4.743758233753592 3.925664308154772 0.8220250953720728 +3.5847307169470213 1.996066213486679 4.190319021288969 2.693088491974703 2.1830149249296427 +1.813017061152629 3.2557455401215694 4.4953959262319545 1.2912699797569656 3.5139562525595385 +4.347786849649907 4.847322648498332 3.124442678660509 4.55470233578523 1.5149847197677135 +4.972249781323248 3.5035754152728136 1.8193206420497336 1.2708533402304765 1.5677438485475044 +4.089187958221137 3.7261733520904197 1.9297628575842056 3.3643447761170573 1.4797989340601774 +3.462137075796839 2.368474178990789 3.958163206374709 1.7302906635035336 2.4818369404796683 +1.772332225492316 1.4158320022129982 2.7380371043171245 4.322131881308749 1.6237144674142523 +1.7915564948647953 1.7942213536354057 2.4192057189725804 3.8227685336727357 1.4035653444999594 +4.698689605120361 1.028565875748598 2.771255556201194 3.5702490100049467 3.7560882215569626 +3.5233112922496086 3.078611974605652 3.3503970246352535 1.9943614373319916 1.4270914466655258 +4.118975310794043 1.3942661924753117 1.1470880802052301 4.3324947196657115 4.191760398468423 +2.376117869859704 1.3473396045391368 2.752236384474665 3.7809539293917496 1.4548692403155101 +4.14741618512905 2.4512999346779814 4.124761986331388 3.4255296802485833 1.8345942747414392 +4.6273860573300025 4.102762143887257 2.67019459557617 2.196354546825264 0.7069332658435606 +4.700098144242694 3.9904144217200366 4.343183185788459 2.7557157022560723 1.7388800985939958 +3.4442554573726767 4.251165307370599 1.6951284608228954 2.9389571301845847 1.4826372667479188 +1.9991767127640445 2.706668594206907 1.10130309813795 3.0750900116178395 2.096754525959591 +4.116292072175716 1.8036472516834423 4.980687854509899 3.259676985765043 2.8827425268462084 +2.9920207554035403 4.440231073624385 3.3928016600160453 4.933800262619698 2.1147079748815747 +4.368648392882205 2.5084547449129495 2.6331035228416897 4.4370507219925255 2.5912440844639306 +2.7963599674949444 4.633369316373692 1.908868124625616 4.888497213418529 3.5003989564975027 +2.457412441413653 3.8566564747795677 3.600807270564941 3.572959219933943 1.3995211248259385 +2.298810319975672 1.2809833987775616 3.479752537979928 2.005249441893032 1.791683850986403 +2.9656450194423543 4.666151095586093 3.9729628950771385 4.207749966297806 1.71663795944694 +1.5343336676958463 3.4618650497387877 4.177958616263902 3.0277910668860626 2.244607453521038 +4.306569504609189 4.656837234204627 3.4949386565124523 2.9355202767400868 0.6600275797442721 +4.007420629002359 3.3728159232436377 3.001822029488447 2.602966152816692 0.7495392871135628 +1.1346953347268718 3.7590567679813542 2.2514631811263284 2.9505703123253193 2.71588359714602 +4.649926312310334 1.1843891973921217 3.2683472070712076 3.869936301711141 3.5173650555018225 +2.5918657981567077 4.758364758982694 3.3375299547621124 3.975460063306882 2.2584668628625084 +4.424526979243946 4.024456953687115 2.012973751156693 2.85011531257878 0.9278265027521326 +3.2842659613247007 4.213429012186285 2.842713474223528 4.212753956710513 1.6554017333383393 +1.62605575907883 1.164589216128976 4.154756559575587 3.2202976590871124 1.0421923080527018 +1.3891135798326393 4.749346063211888 1.5050301056918944 3.7571265608872757 4.045132975052943 +2.4558006328082884 2.370179399868934 4.620431772438627 4.495018612798659 0.15185340345522488 +1.1372963060917516 4.501119051048754 3.422122764571678 3.0946453898498087 3.379725564368324 +2.2102737339540073 2.2974685605957688 2.5189922428945932 1.4056120775199807 1.1167892954549155 +1.8991663255672475 3.9593285345020237 2.6733096235332043 2.322311352710972 2.089848825452026 +1.421434241258817 2.4128284927894668 2.9802795397282558 3.267672802186318 1.0322099831305187 +1.5693280056805778 3.4328345549417714 3.36942340624504 1.3148054114667236 2.773826195637757 +3.84087839543376 4.640194642396471 3.753820196828033 4.480434620129516 1.0802198770659155 +1.9311411029306775 3.2794212854492737 3.454467893325587 1.314354865826738 2.5294155888352288 +2.6616126015087387 3.0988922362968396 1.8114425966828818 2.5876706374721814 0.8909228082769066 +3.5612693879244297 4.179458912394205 2.8933568251163937 3.408436706224482 0.8046524542226223 +3.9096448764304403 1.1947842146778438 2.764565472267001 1.089487214405608 3.190040059731493 +4.6127361536689255 3.328876083066333 4.3374567240831485 1.5546515786485942 3.0646861435299906 +2.8971980689233345 2.5596917673230926 1.4394161053370769 2.1137331510377226 0.7540649718308895 +2.325398125128738 2.8317908913974876 4.241031595789286 1.2757716362759153 3.0081888672792063 +3.7433210421195473 4.943691877447973 3.708203153603573 1.3708301286506348 2.627584974855183 +4.727206878993272 2.411232057585568 3.5328353706865734 4.016955196268869 2.3660328355532765 +3.916691298964215 4.03979365023397 3.2028312471059923 1.102330077518558 2.1041053567552934 +1.9255490690327601 4.911749655957357 1.1123928805473655 1.5446756965786528 3.017327025429088 +1.3202245827084065 1.0190412380728304 1.3513959521551406 4.890779485448334 3.552174996088014 +3.0208410093811047 1.5342013909202237 2.88301735306914 1.7006474378701393 1.8994988737941398 +1.3743365995606251 4.195601236542103 4.878611164281486 2.345995633111081 3.7912630587454337 +2.9598001144113577 2.2144682788017307 1.8616667999189578 4.1083919995999825 2.3671277253361205 +4.530778186362387 4.941065233685157 1.0229430475552244 2.0698315712403534 1.1244158671169961 +2.773999191809018 2.0780833960116687 3.7987193019497423 4.466370924427228 0.9643948796198974 +2.894485056526566 2.5239458742384615 4.836591787150164 4.814175030002075 0.37121664376987945 +3.2601140255342798 4.230646943589561 4.711837918805216 2.385575032315669 2.520601746029622 +2.2703973824972117 1.2918008208755296 1.6565748106402407 1.3039610354573132 1.0401863798697495 +3.701869917092039 1.7986176215995098 4.155995765255991 1.1712453757009538 3.5399299693986217 +4.807613606669689 2.736696075181123 4.2366377101294175 3.4426143288179385 2.2179207723216825 +1.751449452315022 1.5021299517914883 4.5823414956289765 2.2141113052574455 2.381317796500182 +1.17690042780221 2.25780830882034 1.8280410333410217 1.5434625250481204 1.117741819307713 +1.2607081109159046 3.4586399487928263 1.1879110785903917 3.1603134949804446 2.9531805999861134 +1.7173655423508447 4.383512634918627 3.9493497030179174 3.2493002052167017 2.7565212893390414 +3.833196171484755 3.5796121683680173 4.90299677719085 1.769593761740583 3.143647452223219 +3.09104361029647 3.9810534067758883 3.6599716389579964 4.787023784590699 1.4360933036556551 +1.9013126554959583 3.3720815175558427 4.765062773835652 3.900364860908491 1.7061252961683429 +2.3735050613570894 1.1964593509535404 4.502966653665583 1.5208380488431898 3.20601428881397 +4.488611241343332 1.171466828286745 3.5060888497068885 3.0892489832904526 3.343232347789576 +3.2009675732848923 2.9746298402609153 3.875462627976268 2.5215469276834424 1.372704080597798 +3.9178891928381367 1.1221683500171777 2.870212313970995 2.590128967604844 2.809715592705994 +4.883628507081612 4.8724183356304565 4.3359314535006455 4.883822786918987 0.548006004692369 +3.6846488186598534 4.219879344803621 4.924938298784621 4.793064370632605 0.5512371985292515 +4.85122626795623 2.014646367150255 3.094448647629796 3.8327755174124074 2.931094010825894 +1.8919717243274663 4.001060893827559 1.2893577802993792 1.838087181347818 2.179302888649848 +1.7826108871988984 1.6175917599954266 1.6509750905295335 3.42848865519567 1.7851570756981332 +1.559397617609759 3.2048696502217138 1.6851008163259125 2.1815082328289055 1.7187200275982397 +4.492776648704921 4.2420948386578345 3.404618265213863 3.132747748107423 0.36980393178035126 +2.3708576521579015 2.6102534074405317 2.1821198459836877 1.2062416275150523 1.004812731273275 +3.548795801590011 1.4512059858655348 2.3250436222053352 2.84421715987264 2.1608850495213825 +2.520874730719319 3.633518083501173 1.8088574293163395 2.130058395744129 1.1580782751281502 +3.16670947087027 3.9368804223378406 4.123533914139987 2.4592368975486143 1.833861459848973 +3.3353104492067525 3.9960067569381588 2.5220021420147347 1.0265083104060966 1.6349377393128457 +2.207867766771203 1.9950319234462621 2.6402469162455895 2.572645454263288 0.22331380133342282 +4.736741422115089 2.5051805206584654 2.7605712121329073 1.4828361515658712 2.571472524043791 +3.3599846295417506 2.944709688869721 3.7463006904605844 4.057581210799313 0.518988283771905 +1.2949771663307228 2.530914386150094 3.6685674879326213 3.8467322797533385 1.2487127389353228 +4.4114576906948315 3.8513090287939957 3.3742912968089156 3.45859299132458 0.5664567936987862 +1.0962187754536505 3.0385982344853546 4.935421379817383 2.4048046090298243 3.1901189951880395 +1.196360823526848 4.896910067870608 4.474112539602685 3.8175510374485024 3.7583424160025825 +1.173013686602952 4.94031931732164 2.1204046081817767 4.168635549464077 4.288104675036619 +1.4564050431723778 4.136541324328519 1.728885465086731 3.3241913796336524 3.1189952623493773 +3.2749515030599703 2.9570102198528905 3.538751169304033 1.251623738256996 2.3091207299349215 +3.660938920268034 3.9361026860626125 4.170882833040099 3.2660610261446115 0.9457365384925489 +4.031710207322552 2.2384013699830074 4.346479973019779 1.8559208147285076 3.069013116138254 +2.1242084011164306 3.3539674622379128 4.308144946782452 2.3015452187196486 2.3534548682887686 +4.9817742370463804 4.707274225031179 2.762380976413929 1.0648635595101732 1.719568445072177 +4.208844028538632 2.279117154788882 1.4198949169631407 2.5225363034670316 2.2225354517989597 +3.4415441474424386 1.922292193014373 2.670558443998186 1.2174831390207181 2.1022736127747166 +2.6204249111240294 2.3027250852452044 2.5248901784216375 3.591612931176882 1.1130276773778638 +4.2482133805510385 4.4517119568859504 4.215251753938192 4.296138111906782 0.21898464210021393 +1.2671019517994155 3.575748120277491 4.6656685070435575 4.455490135867402 2.318193710400138 +3.975274524988616 1.996108316725901 4.0118846184658565 4.524764931921566 2.044540314070485 +1.2316290672784236 2.115252835507269 1.950562557716475 2.439685666680121 1.0099665239507731 +4.973456079031733 2.475407053150774 4.393883845158606 4.281939440301313 2.5005560352616896 +1.866330771364412 3.4904956896210675 2.6351006807993156 2.493307006147897 1.6303426412465576 +3.947170370773331 2.2454907483140683 4.133387150839739 3.562631156461021 1.7948470527073714 +1.6473836776500175 3.361664344784767 3.875428540632492 3.5019202186765463 1.7544989804164348 +1.5381771481868487 1.1204614804781379 2.847118803743931 4.865443772096672 2.061097294386033 +1.3893616292148234 2.7294530288547647 2.242475184998376 1.7582530899588291 1.4248915736691774 +3.318731732704297 1.5404655323894527 4.8478755058872816 1.452631106057193 3.8327425185837583 +4.05560481187306 1.042886486163309 3.596514846131958 4.989443388370681 3.3191447142073605 +1.1209076969779197 1.0374413167910688 1.6409520038118823 2.3787455891704727 0.7424998392038746 +4.0616354248949476 4.381133530839231 1.486981216549557 4.225160136691051 2.7567558539720602 +2.5724929982278963 1.2645249451384832 1.2223524405809303 2.243295408434903 1.6592483152057103 +2.460941406166065 4.935503592531392 4.774643335314931 3.6135722366076393 2.733412539380491 +2.268668239148908 2.5572564627746766 3.9029123285708978 2.3023906827259966 1.6263310553615915 +1.9824912623710182 2.0060354641617897 1.6765097263120876 2.339130480664322 0.6630389080109016 +3.0506985821593116 3.3792727547448402 1.5146806574326743 3.395619247929157 1.9094216318323096 +1.3872993745478062 2.098804146736897 1.036306793912226 3.9657965595763827 3.0146557561318486 +4.851212572060398 1.5048356642970813 3.7418426341066864 2.700965029424901 3.5045205944236746 +3.910080816588059 4.933318948512523 2.862468314249386 2.233173441610142 1.2012611337067005 +2.9317352615768537 2.3460747503716464 2.507790592852736 1.9740973014777636 0.7923552004270535 +2.4835623440695236 4.533763538760003 3.7620429019543815 3.895632593880242 2.054548890754152 +2.4165808529606876 4.998510329223549 1.7954798619555996 3.892892482010518 3.3264845586836342 +2.772153202227911 1.958677199194629 2.1787766267560804 1.4371689816500353 1.100783860160903 +2.173862664771817 1.3967504942860538 4.245863964381243 3.323022306090364 1.2064576460838372 +2.9308782511812552 3.741442699882605 3.871883044149401 2.322007759702218 1.749036341200136 +1.4331832014708095 2.129041432167825 2.983293713298021 4.273501220409326 1.4658970252494372 +4.242889321977593 1.7320115194706696 3.5860578454244303 4.29261662372548 2.608396566152522 +3.6809772848977014 4.4565054752338895 2.4694001258675735 3.746543164443102 1.4941681013152626 +3.8627228413035555 1.572615997734927 1.2953622529018718 1.1582666078484296 2.2942067410877525 +2.4700631824945183 2.903019050177913 1.9390028477453058 2.6467914055939272 0.82970803659053 +4.142838613640121 2.751783275811002 2.764603450509431 3.047662013993588 1.4195622928440297 +2.9390434362899764 3.3324951347237786 3.0955204377922363 3.5286890724914106 0.5851831380752441 +1.3732166195281734 3.1473053719679647 1.1182983239782032 1.849750579374156 1.9189615169297172 +3.724826223356821 3.0188018207702587 4.412485499980265 4.131889924074862 0.7597396490018122 +3.0410530414499055 4.524984861952063 2.6734293904566404 1.4881300453385746 1.8992072518385572 +4.418734054421689 1.8605429407541112 3.7064354863241316 3.38060917183442 2.57885722002241 +2.856947628385997 2.70002227057224 4.426297918585641 4.165915210650373 0.30401434590604276 +4.353531779514446 2.343500163791259 2.6021583573895604 1.598153813546983 2.2468315958841485 +1.0884131936862569 4.471885830673812 4.164200461519408 4.87125656184525 3.456561212281869 +3.6368563757995513 2.9401007753246007 3.982538116332253 1.9354012319566585 2.162461049398168 +1.9946505505764955 2.031673735332545 1.6432385590826954 1.3120773057093515 0.3332243867805666 +3.8974520930803127 4.797892088227401 3.9325044342166726 1.0018266994241687 3.0658871750390637 +2.126702010659725 1.820304976617623 4.534836140214665 4.126132125545849 0.5108014429073243 +4.509044315899525 1.2476088635300124 1.835540608532491 2.5319577629268224 3.3349599792062605 +3.5778049928884132 3.6648230584738553 3.72188749863849 4.303670258309264 0.5882544714563365 +1.3376803266180617 2.1995918435278274 2.2180334602981175 2.689378592234518 0.9823735014656269 +1.4913027012611502 2.796992397585631 1.2975651469325675 3.6407390065774896 2.682403645913716 +2.8246711128972146 2.385405096503589 4.242949039457832 3.1834914981224087 1.1469110318812112 +1.6372419992461658 2.050774392926516 3.232246775405817 4.469449755144027 1.3044846697819437 +2.5094057386821644 2.8524956777678945 1.775017904956674 3.8535288241555343 2.106636738389118 +4.91480950071559 3.712541270765875 3.6984086055964145 3.331303999853232 1.2570659045190424 +4.410680862649489 1.9591325011375234 4.761275793949922 2.6378579455031828 3.243299666687336 +2.527303636433833 3.7464223965248085 4.287833488469744 2.956699356374121 1.8050397859426048 +1.454873084251949 4.374523409543041 3.4883738144034155 2.5217543443884556 3.0755017837394245 +3.228009173523636 4.685429914086251 4.430956821715011 3.2644314619570918 1.866777070241764 +1.5800521775071883 4.0158752661517525 1.8083486995417553 2.710634892401188 2.5975670333985055 +4.447862291064071 3.263724929895248 1.0430343709626806 1.9219869140035768 1.4746995839946258 +3.016078233112798 2.0177517284216764 4.474553032244128 1.1998297799583697 3.42351693277977 +2.96424364209288 1.7594255344001146 3.5515978728818274 3.936574061169959 1.26482937116958 +3.4526044837436936 1.0562088223502681 3.2398433724993705 3.5635342542093524 2.4181579668928617 +3.5994266559865693 3.4169333671871995 1.7357683836417985 1.7698353066948083 0.1856457801920363 +3.972919209100299 1.3547865210543444 2.562042893849708 3.1695333763475477 2.6876873811029798 +1.9743480551674621 3.84278791441266 4.843167422918304 4.062483162709826 2.024977881793644 +2.763266459157641 3.04913142059295 3.762215956698794 3.384949762017627 0.4733376784343485 +3.128483309148235 1.2105631631554568 3.694254575471795 4.3250241119226 2.018981895540256 +3.003251103137318 4.861218452253137 3.977952081331158 3.808183688821647 1.8657073665169808 +3.2729845332819676 3.7862306076339727 4.125488011454088 1.9543537798742037 2.2309740886831744 +3.5834454959131743 3.702509266513435 3.8060610509798227 1.3653966323813953 2.4435668572154827 +3.52321597072602 3.4046944031509394 2.7145536731550806 3.51639462093749 0.8105530627423765 +4.3637695590274515 2.156002788324501 1.7677206787172581 1.3098563073769074 2.2547447519315855 +1.8619807711847614 4.7279064510177875 4.8163116831874735 3.4386065746408234 3.1798744265209486 +3.0059993713541053 2.064494486090986 4.819472586510871 2.420156117193253 2.5774310793720714 +2.1902989942818683 4.6562364046244635 3.7780301908168643 2.0289777888376412 3.0232485204819723 +4.875645347652976 3.599555795482527 3.96406890235157 1.7945578771677866 2.5169788703031597 +4.575352832823187 1.5744868331489879 2.2748982442811307 4.462234550732235 3.7134400312270817 +2.5822122853874516 3.531764053876608 4.368866294905489 4.889303407282581 1.0828219377996968 +3.632704499356411 1.3993652429682122 2.9297600219762625 4.165486826504546 2.5524155166340523 +3.782640478042072 4.305793570939415 4.817359826046666 4.301982429126967 0.7343725347967351 +1.4256080617167495 4.016559483402611 3.0187996603814384 3.3429733481521846 2.611152590213539 +3.8930927849856225 3.2479873806719297 1.1565102608003248 1.8490481112445347 0.946451085356565 +3.6786153579315393 4.834637211152681 3.402422032563943 2.133482328124469 1.7165647376745752 +4.881999916944309 2.8692349184529937 3.657555144746558 4.260308822783821 2.1010794691156245 +2.579441140917709 2.005625123383689 4.451882500319744 1.7333363632283585 2.7784452345643054 +3.34540239884272 1.988339010183957 1.9592787595774466 3.48701827815483 2.0434307126646254 +3.2668375552479203 1.1891059168640519 1.981967597866774 1.7904955621502854 2.086535478155771 +1.854103496344507 4.384353841481007 3.537589539149244 1.7056998860902568 3.123777602526779 +3.220563806358473 2.048934865444284 2.9189566965526876 3.7359814818978285 1.4283710565031689 +4.406898040540996 4.825622201924637 4.512375614844991 1.0598200005714289 3.4778542512558417 +2.0814485316775526 3.509410487716455 1.1472608812221048 3.3343223670184092 2.611955836255274 +1.3587629560913195 3.4785637463366434 1.7965440216772568 4.026433425736187 3.076680377396877 +3.2600010711348335 1.7647292703292274 2.5039001922801507 1.5016728586898243 1.8000826054600982 +3.0962666928114886 2.9894587906800068 1.9949040310309147 4.163314285657619 2.171039142974621 +4.080962212790086 2.658038326829039 3.147085486771033 3.2161491385822916 1.4245989517193935 +3.8693700060670735 2.15911439837215 4.565432915651041 2.3518741446094555 2.7972873782482672 +4.163253393998872 4.527242097176813 4.235319905750918 2.224139122469154 2.0438532038977284 +1.9618743117853228 4.7313605311905 1.0024323982271963 4.139066867832142 4.184319504458172 +2.235638538407157 4.037927152869356 2.0322704776368727 2.630086170910057 1.8988490864057026 +1.3702801547841794 3.522644807625409 1.4342622814899473 4.649576729737111 3.869227390566146 +3.0422802985802404 4.145690314306942 4.860624527037444 4.061595188347953 1.3623367964246458 +1.4887536953996885 3.543004618905707 3.287830351990677 4.286072826716356 2.283951596481803 +2.9599265175506178 2.4420032048401454 4.60241436824233 4.821064823235645 0.5621855381613556 +2.6282517446585683 1.094403729911825 2.5153605528473086 2.11640540341438 1.5848832586665733 +1.8903187285709215 3.620368923625248 3.4515975813216078 3.299194895851479 1.7367499117449292 +1.6443816525360133 4.764795004543588 1.8578466453140816 4.962899571006943 4.4020828205226845 +1.0134529943948012 4.299024898943733 3.373154797644872 4.476750246941433 3.4659638855114134 +4.607837874257779 4.190085782446699 3.762027476916107 4.1835650922247165 0.5934734798898786 +1.8671350319628774 1.1621874474884821 3.247223427077458 2.301706686760376 1.179386706333476 +4.1861637955619475 1.1685144528260722 1.2102593055201742 4.525844787152588 4.483225919104 +4.897598194336831 1.9242095331874478 4.740220233589384 4.832043326451041 2.9748061467319857 +2.795358590795605 4.350647078372952 4.675456384178881 3.0421341574342513 2.2553633356886573 +4.657026854649818 1.0770048059551236 4.010572319821348 1.940786791428105 4.135283545621298 +4.283184627066673 4.527193657814971 1.9631876075139885 3.7330896604141683 1.7866431327903722 +1.9671722355384547 2.17960162305895 3.8295412707592233 3.446104593105775 0.4383490965568962 +3.6714139428627766 2.3764581286984465 3.8305251111595684 1.8658437385128717 2.353058319860116 +1.148936820589356 1.1762078262235693 4.676921429044188 4.8041216463792775 0.1300907492421938 +3.15659349721588 2.9302374998975664 3.7678480058974664 2.2612539032485106 1.5235034714954148 +3.729054997464278 1.5834044206904854 2.2177622504777044 3.3123378693563446 2.4087158784408897 +1.9757234862069897 2.976916267736803 3.9164252730293834 1.796151241511179 2.3447705547703093 +2.653300126070641 1.0390308055922475 3.4328085380623587 4.2151220982857325 1.7938450171481215 +4.683690953891167 4.502233390718036 2.1693317826812324 3.7848969365716023 1.6257237199775199 +1.6775230558970358 1.6199463147909028 3.9762602279936425 2.483804053821125 1.4935663737986573 +3.4365606735955216 1.0225519129649712 2.75042438931846 2.4465500255310744 2.4330593756355876 +4.482924246098916 2.084385006078578 1.771857477187834 3.4274413020480683 2.914437902418953 +4.304152965464893 4.312803147652935 4.408631431687322 2.6689549880467074 1.739697949130809 +1.8272131982729993 1.0667990578378963 2.309157658657314 3.8815308501515715 1.7465930030500791 +1.646859228345361 3.1714057763334447 1.6739136841784537 1.0270600127016083 1.6560983815237116 +1.8310893462010638 3.4249917150589284 3.7664822570606615 1.7575695852388815 2.564420964751465 +1.8068139081657497 3.827676422735669 1.9592282501754021 1.3769347472753646 2.1030813170948606 +2.683285479724664 2.2487263972233067 4.963292720271923 4.199658638845873 0.8786231310976442 +1.2947682247948493 4.638766004052328 2.6605094726925755 2.397878451679178 3.3542951869025313 +3.1571023181169546 1.0497612041652946 4.1553488586042855 2.544983484880509 2.6521996922252185 +3.570071638257851 4.327590145299274 2.0460940146281783 4.398173050394888 2.4710544467905846 +2.8892410405715423 1.993885627836041 3.6980404613783326 3.3624182355209147 0.9561922367412568 +4.050036626781752 1.8801627459867505 3.204436375925962 2.3344012631675963 2.3378010514132344 +2.7226237019752912 4.864042858364218 1.9494658707842327 2.7951885278780315 2.3023733007640743 +4.75606117412985 3.848435742932841 3.1421591065347276 1.3033538344719688 2.050606922820986 +3.4133348522589917 3.984462045137958 4.417377839112275 3.3162577409674823 1.2404240166105323 +4.048598568996294 1.175118726042057 1.9422701412375996 4.151209128787192 3.6244031037649393 +2.5756477710041534 4.838484515825059 4.64737968190615 1.335348130231429 4.011232121555737 +2.216803134566672 3.5538220400321645 2.621868748441432 4.0063609845179435 1.9246917429365884 +3.503451274995189 1.7364545210444748 4.949506993672758 4.4428899565293225 1.8381888778894169 +2.1226375305799943 4.1313263706540475 3.605232629154351 1.9531659295272052 2.6007989611377065 +4.046623872430025 3.1604471687383944 4.4725060508576835 3.028050599083723 1.6946270097945686 +1.4353714877860586 3.197299551467309 2.4994209223674013 4.297910555026874 2.517728234017954 +4.955126400196033 4.738127840291048 3.6486653681112418 1.3017345843134258 2.3569413397322108 +2.3141126699424155 4.489249498391274 2.522408220900957 3.9079877900900724 2.5789631569739133 +2.0568224073644985 4.496001032094519 3.368288519486999 2.5885762111839634 2.5607701277270243 +3.1525493089098524 4.625014406347503 1.5171380546182895 4.583434565087131 3.4015184481765592 +2.1534685872412975 1.277735452517594 3.423721744471756 2.306629469232015 1.419437802319392 +2.0612948181858464 2.4805490586407113 2.76916928645776 3.2639073016484628 0.6484904176734008 +2.721598779483902 1.877012191999127 3.6239862995173966 1.6908863353546622 2.1095501831445356 +4.855375050062791 4.029300814290936 3.518534833204543 3.5667384552621666 0.8274794451740345 +2.8646834031483217 4.616544206343464 1.7390134272504527 2.980224747503997 2.1470029844639424 +1.7299435247642432 1.659644170573987 3.6673208560044634 3.725701966824958 0.09138026756473153 +2.1576262240523105 2.9551235420555204 3.127996136575959 1.589275928280916 1.7331075707058272 +1.6306793067467584 2.1726256981400773 1.814740086624202 4.984331199138442 3.2155891702258073 +4.499630211768859 2.768215257147998 3.121790870637313 2.5828675763461693 1.8133494043383853 +2.2191327945932477 1.8121867950848793 3.1692082432079935 3.8583820632294192 0.8003534223821308 +4.81184712125085 1.6798974578739148 1.5269211256242672 2.602368532554472 3.3114492022375637 +1.7334373607165023 3.102442699594999 2.391036694778454 4.56394552427546 2.56821112823379 +2.0393786068892132 1.1514295489023163 2.627401316387472 1.8049888167020285 1.210295769313715 +3.429464635493551 4.853953720495946 4.841074379233962 3.9743303884672163 1.6674574353851515 +4.852974767427072 4.574528903433722 1.0630243099342218 2.489360181149135 1.453260512327163 +1.7301352905188296 1.8411295842737143 2.561328135111105 1.4812763345477449 1.085740127814341 +3.217529654690477 1.6524834859650595 2.5135717164894453 1.9511611738375612 1.663031908511708 +1.7575742608641223 1.4413524761416459 2.109582529996551 1.920909570139397 0.36823050242250105 +3.225014061369652 4.74310558721209 1.108558417171527 1.7225902844288146 1.637570461031248 +4.686677359914542 4.314585306523977 2.043577232318788 4.918986660437511 2.8993847408563163 +1.0851448106229742 1.9587250015674562 4.323191257403194 2.895619662118979 1.673649607795167 +4.2225710863076245 3.4629579444350522 3.2795299565504883 1.077945743318732 2.3289450773379805 +4.354789781776118 3.795659604250214 3.382668123130029 2.9969671924670913 0.6792582449513624 +1.1228338561778881 2.194339125975497 4.582104836480314 1.108750228752153 3.6348749324055833 +4.910374327906116 3.1655531953950384 3.40224645678789 1.6371464348162346 2.4819304728419724 +2.658197550651648 2.0288131139761987 2.169957829359596 4.782379678249727 2.6871681535936314 +3.3273314841586865 4.133265664469187 4.7285835147902215 1.1380929691989459 3.6798304663357926 +3.169724575660168 2.9058437793899414 4.628377829532107 1.3016088215722812 3.33721816891887 +4.966433648944349 3.892376100089245 3.079335701430131 1.7569377852410106 1.7036243327077605 +2.3805285537905347 2.378719851283556 3.1559488481818607 1.6902604173371554 1.4656895468402487 +4.089063846575361 2.2632702870525905 3.142781359021643 2.3537167715959386 1.9890060445167397 +3.751775892201731 1.9499304965659081 3.391720579758173 4.242724073900085 1.9927001221497826 +2.884965125073982 2.2209116534067896 3.543341487614633 1.6962207816146297 1.9628606460386333 +3.791333919013012 4.231297181224709 2.3221408923735574 3.52580160478664 1.2815485877260866 +3.569657750555885 2.5154450458325854 1.1004773904707825 3.4506490010032063 2.575785516255688 +4.6052935461918025 3.8419755988432365 1.022623662312069 2.1187835303994538 1.3357472609553729 +1.2089010021361224 3.285944272337523 3.430680196195547 2.509950754251697 2.2719708298196 +4.906377354935624 2.083432415064195 4.866376283408474 4.454672592348773 2.852808802352146 +3.4024409733285967 2.385350010922979 3.181427638369122 4.246665002995879 1.472822008527896 +1.2812748224877715 2.9862336565840217 1.7480165313614435 2.9083377122323677 2.0623360222671137 +1.8943733484415368 2.291079385715788 4.337160106177651 4.608032623632983 0.48036194762119644 +2.586281276745095 3.329202633373751 2.051047574165141 3.3362512515756455 1.4844799205662729 +1.4511906423627638 4.892806211709756 4.652173411418726 1.2569496550564225 4.834486744519895 +1.6477433017353196 3.663215326988612 3.4675129370761213 3.3655124241280414 2.018051433740052 +4.311740883944118 1.6264013119451683 4.420599467007991 1.9436259078519167 3.6532788874792756 +3.0386921243724685 3.2405466096183875 3.632566420312083 4.698667140914965 1.085041925311589 +2.1508368101063646 1.45556066491875 2.680930061575742 3.7097047850276565 1.241686896798268 +1.464819242617334 2.5278829599251114 1.98462737314948 1.1164715419415172 1.3725155788976016 +3.188736143350864 4.206297927509304 2.7511867232900564 3.9449926529010613 1.5686314360467546 +2.1717077713284167 2.2031571448483 3.5219186507107465 2.058863400391578 1.4633932241818255 +3.540833113783535 3.838126932252552 4.482878568054211 3.5676874311599107 0.9622673389187492 +2.328680022329757 3.6394921012200907 3.8101216602328503 2.1052947804603073 2.1505029635319692 +3.3506589714796085 3.1113560059951695 2.9163613316119865 3.0782754886343855 0.2889326972392025 +2.619384677227042 1.2761382624077124 3.3416996814132682 3.77423321307917 1.4111683765378107 +3.478710279719297 1.6649863916771963 2.93280041382502 4.3862218743701336 2.324226383988368 +2.5962865287174326 4.988774204486762 1.8733820562014536 3.3386457693006775 2.8055293667387358 +3.7039972991757186 3.6754622978206593 2.4211938886588493 2.2680742052883898 0.15575584656058028 +1.2299581497517722 4.198638950461916 1.5630458731674706 1.6220033110214405 2.9692661847640616 +1.1144891240213561 2.200521402141445 3.201344733030744 2.3715628116393215 1.3667494818681114 +3.6656941323070242 2.3654168843360583 1.4340880868705863 3.153707366141434 2.1558783331234017 +4.712278662423619 1.1758512701348414 3.3747647964951275 1.210416099427635 4.146169796743514 +2.2289088724474198 4.536368489019629 3.7493968472063246 3.848933764573634 2.309605481468762 +4.756544056769792 1.3208631458974938 2.8023811517881394 3.805635708293675 3.5791651298146925 +4.58857648359314 2.0718648818711505 1.9859869213822736 3.0795653968370504 2.744039206757086 +3.5181566869590872 4.31209945001027 3.062013792298877 1.9482139429447694 1.3678067171287687 +3.049160551493841 1.1186669917448788 4.88152003672036 4.01685627438434 2.1152892960844154 +2.319704119320957 4.478241207749692 1.7661145277303372 1.8497934014501958 2.160158446973144 +1.7463392140885698 3.1151227832729433 2.1489311412711536 1.5056271388119806 1.5124180965755152 +4.247228928672818 1.1907712631219076 3.0654764620123545 2.403259515161466 3.1273734580317454 +3.482378433040636 2.421498229361613 1.1431672390453924 2.4294765669232334 1.6673507410090982 +1.45244562969719 4.111548470831823 2.6941487678456624 4.194227728826475 3.0530418943911584 +2.415477779792264 2.070871351840194 4.012617440396573 2.7842393036468516 1.2758003123649886 +3.026814327542925 2.055510293155848 1.2345308942489117 2.285913769737066 1.4313760784945204 +3.369838317264503 1.5483882575151355 2.042984314995397 4.150702608331206 2.7857057856535006 +3.320500155264551 3.163303903532607 2.569946926316352 4.155150576588272 1.5929787426058117 +1.8258838504136294 4.135331993851373 2.960207240437924 3.150682431142516 2.317289693910105 +3.7371926910208217 4.659243931665818 1.120193512516206 2.3343243223383863 1.5245629254755084 +2.6527415878870606 4.426511365623071 1.749141387845249 2.0862818540650214 1.8055256626181033 +1.217572103196257 1.1800019747917512 4.734337994667828 4.655724897244145 0.08712940740574651 +1.1689001052635568 1.2904542703935054 4.879683667778611 4.704188608496327 0.2134805164246402 +1.1824186997002393 2.625249389674936 3.1083796467494054 1.4742077739032755 2.1799720433836502 +4.771600520184252 2.9595597667641687 4.322545258763116 1.0868675057821764 3.708517522297961 +3.4557218811872534 4.912500625538675 1.8240376219455174 1.6186956450251966 1.4711796754576407 +3.8528616548322727 3.6849177914185463 2.609891861253854 4.3366508566037725 1.734906847435962 +1.8952724227763116 1.3182678359192606 2.0590512861362025 1.4834262898009385 0.8150327782733948 +3.8931512335236675 2.8430199361911295 3.193534189714313 4.723046216764572 1.855312044516693 +4.844195291924251 1.9530543164560634 2.133758261688398 2.4939324649977226 2.9134895909820324 +3.4451070764385086 3.5161494363749135 3.124463162647851 3.908934431967052 0.7876815278350836 +4.4836777039063005 3.858914822681028 2.734916193245257 2.048039908583294 0.9285083134727041 +1.3778483062516491 2.5073431798134322 1.6373093095102504 1.2704393343934846 1.18758252262507 +2.0061825420705617 2.0168682731055023 3.307475192610478 1.463679382212888 1.8438267747506696 +3.5784188781531405 3.654057296766032 4.2140290492832095 4.127670693408472 0.11479954703589561 +4.4409358263689525 3.6060690457948192 3.259746185546318 1.2779618243385702 2.1504585082334926 +1.2796376261270517 2.190962575098769 3.9188165391349745 4.583700975149023 1.128088859918412 +3.3314220390269416 2.5444224622722187 2.632128175594232 3.2019615361011895 0.971636965413917 +2.1597038059816556 3.4804782116033084 1.7100615998673891 4.896272896294455 3.4491140102966553 +4.71940006304626 4.130915485365417 4.181862903808522 4.326899168750833 0.60609373558602 +2.0795696825470853 2.8545565260540564 2.7182952791052375 3.7594027743576595 1.2978865221118796 +4.288692699319251 4.831893240045813 2.7246974048888974 1.4250176139549846 1.4086285480592993 +3.118526384043146 1.729004630006794 2.2688837277276876 4.878816675471046 2.9567753882661756 +3.746616094957835 3.29948764697091 4.316423068221296 3.5118759600793 0.9204454889991284 +4.521314948555117 3.055312077968077 3.328011870461416 4.686015885915717 1.9983341368648657 +4.548323021457449 4.01837340803449 1.212060394369895 1.1373977703021914 0.5351832398345625 +1.5268204394102316 2.973719261154305 4.013506689411534 2.9289957156811934 1.8082257194570368 +2.610018541531675 3.267256045686636 1.6691175138677017 4.630238080326345 3.0331825111542825 +1.44362165166591 2.513827081814625 2.9980466597666284 3.534190034182208 1.1969918047545356 +3.6634666138268863 1.5772244751380655 3.0869925844642996 1.8783664756520762 2.411054402568196 +2.110972531047171 3.7518349738283865 2.629581247968342 4.096138288186107 2.2007314939224707 +3.8327350294815963 1.83122890846521 3.233331337535586 3.8740331838096624 2.1015531419131595 +2.4123575061023614 4.64554404687409 2.91622632000999 1.3465943161696745 2.729627585104562 +3.730201584589722 3.812700522384882 1.7212334294145748 2.7664630127545093 1.0484803081728826 +2.4506933534206365 2.2957118604449254 2.557294126078636 2.8364542558370633 0.31929553897873725 +4.649405830888653 4.415335876571236 1.6210711421907669 4.7170176599501 3.104782373104482 +1.2520629725423453 4.06363684147151 2.450631786197605 1.3127971693777472 3.0330867504373993 +1.009248360364519 1.6921269053508485 1.358241074390321 2.2505567558234425 1.123632672421954 +3.4600539019103094 1.2185956575436 1.0222315565050173 4.596139835523827 4.21864379250947 +2.6381832109778505 3.453155712208871 1.3113131462165666 4.890310116948952 3.670612958931293 +3.162569751445534 1.9750298340101375 1.8025101136739075 1.6410609363282624 1.1984643892782356 +2.597684827418463 2.0799327958328058 1.718722396332876 4.673190415376836 2.9994913638423126 +4.075385811931794 3.9705135113680043 1.0598792974537208 2.377723652015728 1.3220105681410022 +1.462715501165213 4.764784225770944 4.04484564351204 4.481688024815242 3.3308391027069995 +2.9146371340275183 2.7598473620752557 4.967856673396428 3.7011911669142075 1.2760883115258495 +4.910945385205478 3.71700819744827 3.514451135347129 3.4328713474084562 1.1967210494136507 +2.4734762804709587 3.3655087273669704 1.582328099155725 1.5531889228223914 0.8925082508933299 +3.214622781591637 3.508615376601669 1.528893318626079 1.9027051224807803 0.47557009012535495 +1.4666094908824259 1.1227902467179058 3.376712887293091 4.61421127995162 1.2843729771722485 +2.5566026300222298 2.395928831427835 3.696216612169864 1.4552138491749251 2.2467553167413894 +1.3974209667493631 1.3593359909928853 1.629462312143263 1.6292060417152339 0.0380858379572222 +4.4375784180504505 3.171528566166355 3.8807910665832446 3.7473257553401673 1.2730652837780754 +1.0361579106214287 3.8155885603204016 3.2893606948970886 4.296701635394756 2.9563441117178457 +2.47371827921581 4.820188755270436 3.7623691815823816 4.285290478516876 2.404032108309637 +4.003822819309298 2.4324751886610736 3.053960228863273 1.1240488275779228 2.488712798447216 +1.5909385982042226 4.105762767084894 1.3622242834122598 2.1513494680398595 2.6357274436860694 +4.766202718869401 3.5550675088895773 1.3790567968791096 4.830730130413008 3.6579908827499676 +3.661276324275822 2.4631108077723494 1.9270913030475416 2.736621157898798 1.4460080189381834 +2.231840142940786 4.467935936560359 4.221574415870702 3.956095109389088 2.2518000933504525 +1.4735891698659112 2.5536981862085995 4.4968227765853275 1.3550628953148394 3.322241809192329 +4.672500824794725 2.5827789531702727 4.059035877616161 3.2918759999253213 2.2260888973004267 +4.230000033424892 2.293874916442103 3.6300508042132607 3.5867113887532205 1.9366101243007163 +2.0543824959956014 3.9730885524894797 4.319527821600316 2.706999968973599 2.5063277931514105 +4.859237349778555 4.998722313624534 1.1689539579447366 1.9483111891091345 0.7917409607361179 +3.4096493138837825 1.092340502065344 1.9055865185906948 2.916725585216496 2.5283042422517665 +1.6524400738868517 4.643217536557363 3.9324795737195797 1.992340581036537 3.5649528948005793 +3.7450749869178157 3.7290189040120363 3.7724808756871795 4.545261172366958 0.7729470775769606 +3.6111678571962504 3.449249011750561 1.873293539914982 3.849312939367115 1.9826422722018298 +1.127368733438741 3.493314846031938 2.6586743724458493 2.3201216801495317 2.390045801476605 +4.63210227738765 3.442297717043308 4.236657677998812 1.9200297363605925 2.604304112770843 +3.6080483861224146 4.471424999927692 1.9379410932833268 4.416721361080437 2.6248372889164346 +4.8113276611185345 3.648050674363349 2.640605298351977 3.1334703887166255 1.2633801269666927 +3.829110704056996 2.59980607211162 3.233089601723885 4.708279435186531 1.9202538693813134 +4.377020431670582 2.3946057489738495 2.8615557225484953 3.054830500741886 1.9918140259716244 +1.1906792625251637 3.8055709090105485 3.10570760216001 1.8272876053448606 2.9106727763724822 +4.721905590696299 3.817717027219483 4.6505709315784225 3.923164092740353 1.1604644188904114 +1.1674796363381548 1.098012002753883 3.4508867143313946 3.8574487566404625 0.41245417486348585 +1.9227932280998337 1.337795861104818 1.0933338650562705 2.9593395603006525 1.9555559756947818 +3.005175372557349 3.279550923442568 1.7816616544218387 3.7290202455243704 1.9665928468456315 +3.5844150315455887 1.8668266218138188 1.2777505237679985 1.449577572496215 1.726161776867846 +4.3742112485240225 3.6399104109688967 3.655208261034203 1.266695898498753 2.4988375349387635 +1.3910149735544906 2.3768220363477526 2.8223410331740753 4.26617276887195 1.748275048744166 +4.815670085222534 1.7662694816034055 1.2551085473138643 3.628258119414564 3.864024188966011 +1.1234969089615832 2.6706353662041535 2.495887481873234 2.536506784420045 1.5476715845483209 +4.424551780910999 2.462381205102276 2.356711543100818 3.515307504519608 2.2786965507468224 +1.9591702854350546 4.335411866902376 2.301374111245374 2.73242933134364 2.4150222889796034 +2.9262738176789744 4.019263192275615 3.527249000886172 3.184649859952497 1.145425660769675 +3.0419925204428218 1.5789997525915944 1.6682339061155291 1.4730987752210458 1.4759490364149441 +4.159540193677646 1.6285709745933552 3.704367503048287 2.577702530992855 2.770411367867381 +2.6783961200418736 1.093347189183815 3.9706470093347774 4.793424115088056 1.7858729739166828 +3.775558609923356 1.1451926473639897 4.641104645169002 1.267767314578669 4.277643024253564 +2.8686398566769578 3.5244268910452345 1.846793540919757 1.426312546797202 0.7790127732353505 +3.6960555237466544 4.110728711004565 3.4284509161790235 4.645957418176396 1.2861865862449788 +2.0811386337061806 4.085227780539293 3.929409190927712 1.3461602989744694 3.2694874439630333 +2.4563919785979134 4.757003040912888 1.256624918737134 4.026001237897825 3.600313383189588 +3.917666778080802 1.7603598170082173 3.106213774176071 1.6853125381470662 2.5832022078886867 +2.0064495558910065 2.787893962178576 2.5120110806467797 1.8695417572993023 1.0116433124183135 +4.024719979230875 3.9971258154336913 3.9195181377783674 3.974695474471184 0.06169259566737552 +2.285486712896883 2.3903716662918133 4.143700400668999 3.9608110974010193 0.21083014655998283 +1.3208263624768928 2.564699703473797 2.8128733265921615 4.329571530516776 1.9615285698227676 +4.859220056707254 3.3218509201596045 1.1076862164856927 1.8345159112272786 1.700524997513242 +3.883026262917834 1.5715457285849186 3.1544010750353553 4.5880965402259015 2.720004585935089 +2.9356541744988456 3.1320829882185017 2.6647978149845475 3.5308253188203444 0.8880247272792423 +4.963601816393152 3.2977286071880627 2.9181501820786444 1.5487725085717061 2.1564620937652808 +1.049361204631941 4.544564863621249 3.2843924173089225 2.0252536983013756 3.715088011274593 +3.4350686788255778 1.0428430417820325 2.6360556156947834 2.726574767294065 2.3939375963743603 +2.28416548815052 4.848558933934707 4.012588403059425 4.556897399491959 2.621523608205406 +3.0243531730787745 3.6016578191015234 1.9034908529242385 1.5665888846380618 0.6684187239706496 +4.262105060065858 4.07830204194312 2.011487471510178 3.7135626044207357 1.7119705919038215 +4.234241993964122 4.88941794985749 3.7207722263301517 4.671725713944008 1.1548021773385027 +2.625166281456037 1.1891580941492799 3.769397003137748 3.032390427378506 1.614093617707598 +3.275783276907067 1.3599499785321614 1.6208052162302775 3.4222064626456272 2.6297269207560023 +2.8606480158821403 1.4470571556071308 2.842539475522333 3.6667098839593626 1.6363055895511394 +1.1291403572665706 3.459215593513304 1.3840435334849488 2.1960155517321005 2.467498564333245 +1.1167272415217893 1.970665083250342 1.369564229064331 2.0516169429292357 1.092888714383354 +4.956962401646859 4.198078527925342 1.9692167244106589 4.22819429694547 2.3830409998591806 +3.0273480614754233 3.6503218583507873 4.310202007386403 4.12369587384919 0.6502929258728776 +1.7407267752421465 1.8984797656306545 2.8591292076375794 3.9632195509433776 1.1153033184554022 +1.1598422132325181 2.6251930883692105 4.820969608125412 2.9095756639871833 2.408460088303762 +4.586583166975134 2.3554479855808332 3.8235100139244866 4.427282244472802 2.311385970372899 +4.176404796763338 4.201859987314558 1.583675771079652 1.6980756867857512 0.11719772796245456 +4.94775496124947 3.6071329399897873 1.927316484735972 4.877349020142635 3.240364078902903 +3.087128698939034 2.7645917375085625 2.5287415120175156 2.7503654708059595 0.3913403513539888 +2.4538423533330156 3.159084866264025 1.2758547749195834 4.175681372149155 2.984352743233494 +3.414900807747938 1.7628713120586466 2.782801384670524 4.5847548080554485 2.44463445011234 +4.131174910593035 2.152004054340707 4.858634838167145 3.890858199359454 2.2031134561934134 +2.3398695560899845 3.7069368504460356 3.4487358074803405 2.957111939984225 1.4527790659249644 +3.9815037581105854 4.960587443405432 2.8711228571882015 1.488550913423496 1.694139912314167 +3.3616297015585697 4.17768241113287 2.003256291881148 4.034773363061211 2.1892929532841365 +2.8219324365510943 2.127054040406455 2.220595175482033 4.549501443479391 2.430362193284353 +1.0534639831004955 2.532448002192348 3.6041237469682397 1.990557622018105 2.188832878114655 +2.85665172532066 2.9215269707239506 4.358362742951213 2.2486287104230116 2.110731267943374 +4.701856153266857 4.997879608849052 2.8726928937981486 4.1147869175010925 1.2768819248361976 +4.3234131938637805 3.2049294627385496 4.429972026539778 3.201058755507045 1.6616960265079135 +3.5808735936969573 2.7099681188347446 4.448605015098501 2.972427359247991 1.7139360600026134 +3.377992789372977 4.601413598296751 1.8263602194722477 2.258197434696917 1.2973981101268408 +2.489915686792848 1.1878687258598384 2.178924252130108 3.482299543159428 1.8423119816525784 +1.9338391854819985 2.7332754608897467 4.140325131162954 2.5092343613183474 1.8164678521543078 +4.387378448577033 1.0354288414805448 1.6992498752311866 1.335362356047654 3.371643559917307 +3.012994804737383 4.308775675031779 2.4911543774823457 3.8058378466236413 1.8459254285735092 +1.7319274272520953 1.2135614538655592 4.840771965792114 2.754578140391683 2.149629726139796 +1.1131768299811795 4.998152396421492 2.896214295716683 3.569181302325448 3.9428314374091866 +4.777482437282945 3.605695740561979 3.36811938475069 4.00904893941908 1.3356177434654175 +3.736183718570188 1.351723878025349 3.895890827638414 2.8436652999040852 2.60630529531498 +4.532181644196595 3.6846239052023275 3.2891301551709193 3.992266541389868 1.1012515146659811 +2.6412044789371976 1.8465398086645486 4.402607706322295 2.673189425656343 1.9032549823082336 +2.3432666853614292 4.990356779237329 1.6470050171635693 4.282358101573392 3.735260612675411 +4.260695208761877 3.295267487063489 3.715317852852408 3.782248596931541 0.9677450130725174 +2.3381038933893383 1.8699525394292622 4.342824735255441 3.419962567959031 1.0348141234258834 +3.5582187577547666 4.478107808774904 1.0271333682406478 1.8333671511312462 1.2231961326217535 +4.46012359959928 2.0164953248344157 1.8658773718977364 3.8913581503287062 3.173939433735879 +3.074888996045415 2.322996446791745 4.036979347862037 4.407230548391274 0.8381099910611518 +2.892653600844082 3.022161288879815 4.899629392621019 1.5083302043550244 3.393771121568742 +3.0474964789100807 2.9323695268799383 1.1573358145304784 4.024198668439588 2.869173546198912 +3.3079167356333956 4.434469776212337 2.608353154809827 2.141428187021979 1.2194837755301793 +3.0204705283747586 2.7761837615440976 3.680903479445684 2.272933144546492 1.4290054193055812 +4.529825355842325 3.0353483449645315 3.9260224287596457 1.010607119572763 3.276142237614764 +4.07952095826029 4.627006808473308 4.570478496354328 4.197012494795099 0.6627349473991154 +3.8027574322872377 3.708487473836882 2.9358886027584945 4.4781550235452094 1.5451448274360873 +2.261750793854886 2.820993423576482 2.5204247218534594 2.5375952175208947 0.5595061615562348 +2.5570332460123004 4.655004781697939 3.65863591378659 1.5537582072215574 2.9718672117276084 +2.314854111440739 2.5626433890629294 1.609120925086592 4.812848968470419 3.2132962673971557 +3.889688834169637 4.425539495376055 2.181965709573589 2.0862236758478487 0.5443367231202545 +1.7177267389711979 3.656393184096859 2.1018116286704567 1.3374303446790283 2.0839161050225976 +1.898858459581977 2.7383701784244603 2.6350718390370456 1.0387141422715276 1.8036457030404751 +2.021429459211619 3.1094557537756438 4.459446680251288 1.88910403055552 2.7911400098360857 +1.6416988064348073 2.314074316253591 1.998712198774189 1.2479197014909977 1.007858224246248 +4.962097639522936 1.7662600814322542 1.3526076351788392 2.215004390433056 3.31015193928859 +1.704967407526233 2.202652561089283 2.490367074410562 2.7561416650955812 0.5642044355824102 +1.3787704358754462 1.7547701826807063 2.154981061836486 3.147119744094514 1.0609971604251898 +2.1002068432072525 2.193901922880875 4.115387713044895 2.2118602935468794 1.9058319455649342 +3.6607465631067195 2.0847589234189923 2.196667917590763 4.31027268458717 2.636486706114489 +2.581322718747438 1.7719142241729093 2.525985900308906 3.2367382391631043 1.0771773290763773 +2.2802755202955085 2.8042029640507713 3.4370748664805255 3.587340018619419 0.5450500731742441 +1.517768953415413 2.4368956595190063 2.0351574529383307 2.8803757382209096 1.2486744378135015 +3.7523431426327516 2.245800469238233 1.0876192585183633 1.6578938577766005 1.6108643472738 +3.249533911890828 3.5149729467584963 1.3669406932068262 2.9568250921354755 1.6118902826148533 +3.981958230227493 3.7717174101581916 1.179719407096219 2.6468948684905995 1.4821622842797026 +1.6635622023727699 3.7987678651088532 1.192917872677714 3.6834868402371246 3.2805543745455865 +3.3703583502160335 4.979607270033922 1.2737401764382406 2.9405489383602665 2.316880129561104 +1.0918588173120876 2.1344999234394093 2.6673495585889517 4.392539349955284 2.015782798919817 +3.7505178603406852 3.71102782491666 1.93351766427184 2.7920526751539807 0.8594427426002201 +1.0246272994637189 3.9903313686203945 1.3475893725963348 4.682441217119332 4.462806006396749 +2.94088563130947 2.975656218603096 1.292794030993912 3.4649821245130124 2.1724663650714797 +4.690037632873695 3.3175816339941235 2.3345046304066823 3.234749897783993 1.6413643746273305 +4.76889355996624 4.748724343200408 4.844462331109634 2.6731297889788097 2.1714262146850065 +4.109787328544693 1.1341586507510661 2.16419971714242 2.3511221456039926 2.981493924590459 +2.807374672912531 3.6936018150800827 4.969000944044089 1.4812247383533714 3.59860825993839 +1.1656843848038192 1.741686460885599 3.6802938967904577 2.1495132020072325 1.635563489190051 +3.100144118319876 2.6046697597781057 2.539442704654973 2.4194670416543307 0.5097930949756208 +4.298672995015622 4.244466082392 4.822832589174425 3.442158527592118 1.381737765895674 +2.280613449907399 4.487582788432426 2.869331581294333 2.54446257957542 2.2307517857142773 +1.0258261670334643 3.4784863378603514 4.89551077881349 3.417045324736548 2.863809004186472 +2.964362352767525 1.5575714233256113 1.2773118497217668 3.6665038645345995 2.7725979158192855 +4.8180769548067595 3.6369686988544814 2.5075689372577505 4.991859480914945 2.750766478198975 +1.8098222480915696 3.910179817060284 4.633747783928128 3.021623449238179 2.647724832384151 +2.1563729738604334 2.339504416104131 1.745311557000853 4.473831198074972 2.7346583985692794 +1.0843368370156439 2.5918888860803437 4.028467312055389 2.9407476748743044 1.8589909063114118 +1.7143774211137717 2.1086172156464036 4.0127343885093305 2.6550753369847944 1.413740823411291 +1.432375080942517 2.032515561691968 4.669607309046704 4.377212721045714 0.6675801013559728 +1.3944403315445184 1.2918599520006357 1.5131887390979943 3.7021104763285604 2.191324053166908 +3.370475181388886 4.598199439749242 3.06106510481633 3.661186370642178 1.366547616536981 +2.0764944227371482 4.788021338096139 2.8491600397982633 3.896912055930763 2.906916321469533 +2.2236866806928 3.0222804078877012 1.504915822186537 4.361341380890344 2.965960032355695 +4.693204582006535 4.505311157743179 1.7653038072924638 2.5839736565281153 0.8399549160097426 +2.9135494508440063 2.8115413177083095 2.4790123536406914 4.668189236807965 2.1915522090563595 +4.343820643686889 3.405467598156552 1.752462229131424 3.1666793223435676 1.6972084211402743 +4.20723052861514 1.1356687089712607 4.443734386156496 3.209846234685609 3.310131716749994 +3.1213490311843537 3.021398071770641 1.8880201764699933 3.547117465453672 1.6621052940775787 +2.7706354662206625 1.6869603908678035 1.2655027837587651 1.9005023574680577 1.2560159742423693 +3.3781962512414316 4.9242295061421935 4.930528992274189 4.207919047483342 1.7065708182110917 +4.096628380438517 3.5995035169001195 2.7741770972374753 3.0535786928736233 0.5702616781724824 +3.6548353868901926 2.0110907388282677 3.3710078941238537 2.6624489119767323 1.7899587423216174 +2.4965369262558266 4.478418646227125 4.150133099097279 3.3580576277370797 2.1343005187383697 +3.9098646738672307 3.1887862936264892 2.2672905475963496 3.2819732848816563 1.2448032325614415 +3.2225577276348485 3.688593342968542 1.6736744865532742 1.6566716465334994 0.4663456779345043 +3.6735306042335916 3.7259852044885635 4.542165280953404 3.040658441117234 1.502422801731494 +1.9265345833138152 4.5453960423218485 4.294592739808659 1.9000095253204585 3.548586213210316 +3.7488909376547497 1.8012742705457376 3.50550879968269 2.936984063979122 2.028898976565277 +1.1193800096339457 2.7538401116346223 1.5539106816050379 2.329410383282258 1.809104643831727 +2.3875373290464204 1.7990831233946882 4.885737199730751 2.1998643047204953 2.7495802516566017 +2.1764123686262455 4.990316027016682 3.8718576541944607 2.289734671844555 3.228183224351252 +3.912139451502811 2.5350946505615295 3.964575089909241 2.214963654056891 2.226520280676719 +1.2474976792528558 3.53300976047928 3.478794448468388 1.4268830309195089 3.0714664150694193 +3.784465751627517 4.988999012812619 1.459753525785977 3.257928737431865 2.1643323379460355 +2.6428760996115797 4.706887657938239 3.3572124557848766 3.8910668605981633 2.1319343888695528 +4.305291589854715 2.257708488067071 4.945710828688233 2.8326465953662034 2.94238627866416 +3.457528889197967 2.029952247330274 1.5775428865904106 2.1821211437353676 1.550319301762922 +2.3194079880936695 2.796190438241843 2.2128300543121213 1.7227810753249968 0.6837174171948662 +4.71492987197177 1.749592212988813 1.3946294052815422 3.5844916338335397 3.686288650095275 +1.5580570673101137 1.5585202662662891 2.8526891131997645 2.639831756780772 0.21285786040208865 +1.7538797442055678 2.493572843926901 2.6636945514895576 4.076557680749955 1.594781522277844 +2.652983775634824 4.5547549212357135 3.5772607688567617 4.289058767480543 2.030613178595308 +1.5482455129356811 4.407281963375835 1.9984029032531812 3.372586877875626 3.1721398173874014 +4.255786847555259 2.5766189263706725 1.7143557062084147 4.450587608472726 3.210384701325425 +3.6352912819774916 1.1714284261414827 1.9656559650018273 3.8240555710542186 3.0861414854384197 +2.721894144134258 1.4162388006182405 2.9363104327268337 2.532103272037497 1.3667916098675998 +4.005035173043256 2.353538675182871 3.5528517068343475 3.3200701100396106 1.6678213196417127 +4.771694603438237 3.4538539949390583 4.49318521300741 1.475186612201179 3.293177709125011 +1.0248372046612269 3.6871005315803855 2.057867522661372 2.3956907774572493 2.683611479581116 +3.9999876995578707 2.0828715391123724 2.0533111120162264 2.39637804321075 1.9475700993598453 +2.3643404389697764 1.5747549448675109 1.2709188691174078 4.44261555547174 3.2685019692097126 +2.018302292534318 1.2181503376048268 1.0746040578691143 2.3829128995729842 1.533595506076491 +1.4712889055072247 3.3296663956897747 4.922650356175775 4.225613916876892 1.9847989051104546 +2.430265123362667 4.928905636124538 3.596716846646566 1.6616427478094402 3.1603348208702857 +1.2764617870076544 4.375640633699546 3.9754005370203163 1.9555232539833214 3.6992990906807464 +3.650041299480213 1.9605912477328604 4.4007407128808715 4.549497519663507 1.6959864577623545 +4.9949040296057206 2.2757850039549714 3.1529663374731904 2.557628723483164 2.783529261618641 +2.600017919383644 2.8235777926127 2.5800764768862323 3.9362515377480642 1.3744780146011013 +4.634772928613327 1.685431769947312 3.457945555612182 1.625725356410641 3.4721238642311603 +3.852726212824133 2.4267852319221817 3.0511712875098143 2.781996279028835 1.451124690096049 +1.0548833993674762 1.4677247965945512 1.2545863354740852 4.120506251970524 2.8955025448159013 +1.8566384625677137 2.557870850727857 1.778612252829837 2.740265767889671 1.1901698808286623 +3.804274184486502 4.313271285777564 4.4780058502186915 1.5955570606125105 2.9270444263496995 +2.8750423461411767 3.2905724135631007 1.9135665899487004 4.496730229578948 2.6163714617843272 +3.5870183614822246 2.300276748780898 2.127211486334957 3.033203812109336 1.5736982151032894 +3.253689687945883 4.371446677787253 2.747286798528148 1.3226957512371582 1.8107568418649918 +1.7848212376231718 2.9032172959608715 4.99312565592661 3.2079838668125715 2.1065471631431785 +1.358245731422239 1.9332838133601893 3.623471306419033 4.0642020005173345 0.7245083439127857 +4.7297793994693915 1.6570390269585147 3.7042245965134875 2.239227450164174 3.404107817867982 +3.914607927558497 3.549778579647059 1.4751040406509528 2.7746865935525427 1.3498204565436467 +1.4025382552663532 2.6477936060482303 4.174226550794602 4.12312244714297 1.2463035417027957 +2.0944175276851014 4.2144087150003475 2.322826175199273 4.58561630050475 3.1007389095946603 +3.34417491181321 3.3376139385400534 4.7979508792822845 2.0028784058612907 2.795080173813632 +2.9812279669482527 2.8083311240460493 3.3630142991134986 3.6248183059530183 0.31374297806130497 +3.1807134756292044 3.3052229229355974 4.081654741069496 3.722284039616332 0.3803286782921877 +2.6600832880350773 1.5693843103903338 4.757299386809524 2.0721551444780117 2.898210458534949 +2.8913433848161234 3.279486804539863 1.9501731076674278 3.2571029264172773 1.3633491355527219 +4.163811698911908 3.3730526209114013 3.9222524932296046 1.4780369358398282 2.56894717937649 +2.349443270858881 1.1346036411948823 4.26036088261175 3.0077925497337845 1.7449248563565274 +3.779602148515201 1.6702811320511355 3.0363694102071257 4.324546208724926 2.471565215554016 +3.0981443798326587 3.8566765723490675 2.46651364492765 2.1610251178036695 0.8177373216920756 +3.6659546133250305 1.5497778285614374 2.621199573556726 1.0636905714328493 2.627553705648905 +1.9388199035364302 1.2726239253686296 3.376687191412415 1.249957671425475 2.2286308650179896 +2.6040074772930373 4.05334095819099 4.565466331796825 4.394368964561495 1.4593977689193025 +4.295903253269151 4.730140463063806 3.1467802505899227 1.2635148280395736 1.9326796439513696 +3.8637314317622744 2.9455634345742463 3.5388601258069183 3.83950199975138 0.9661356050933598 +4.352667777489618 1.618880104352344 2.5159864438974795 1.0806331985546809 3.087690719731077 +1.259576792588693 2.02970422731662 3.8029003210759607 4.084005131612261 0.8198269208968847 +3.102736296931453 1.0464566056495337 3.049307902641226 4.300592251955511 2.40707263945593 +2.6463727628009974 4.695740832367182 1.5733682170172627 4.8490153412268775 3.863906516325175 +1.081662726643013 4.326352060570308 2.618223007328927 2.0547249268554038 3.2932565889099648 +4.83997611789002 1.3133270094360516 3.8739103000440087 1.8155785664183446 4.083378926796973 +3.095477494478784 3.939460490031258 1.2279502054777445 4.423726166795836 3.305342840269417 +2.9254241558356275 2.8915797113756896 2.6671393257813643 2.4617922033293995 0.20811748393660737 +4.399417932913712 4.780450987022232 1.2962545728152248 1.890704874629428 0.706085936448435 +3.884170518894829 1.9482873011971913 3.597766079100758 3.76624290560857 1.9432005232691512 +4.360136381787054 2.427505885639427 2.0442736502124963 4.770640620712486 3.3418763430852905 +2.2084027160720465 3.552187924043593 4.530430681052712 1.7411559254731301 3.0960963078167754 +3.058420898719264 3.4782955735401746 1.0826449177149886 1.2712098013322852 0.4602732426391634 +1.0322533084989955 2.3618282269679263 1.0698571604423592 3.105621906182762 2.431482585547581 +4.809407409767828 4.925675391409211 3.1067033876150743 1.4000627126857377 1.7105965733855024 +1.5984877373610389 3.837987391534892 3.4166960613649633 3.6534912922192264 2.2519837216108227 +1.4111785577884928 2.6898228829351076 2.154884308196538 1.8558923440837871 1.3131365141650897 +4.513023320434355 1.4601382132360983 4.42908291704327 4.65014584217509 3.0608783534503208 +4.1044409615553015 3.517096031813562 2.1949811474722227 1.5693809228277393 0.8581082143695846 +3.166998548302972 4.20872371246078 4.608258855526465 4.084986166569357 1.1657639660960595 +1.0417654025202867 1.2844195535663698 2.419349142580386 3.8205572816599846 1.4220637419056879 +1.6031817325365947 4.621904689532182 4.910379108500223 1.5247821398672672 4.535962425451609 +4.898422329704585 1.7608525656287033 1.8394022770875198 3.674221174696025 3.6346807853599015 +2.64573237687786 1.9949627931204872 3.97284325772334 4.05182832039452 0.6555453388354723 +3.782335519411059 1.9371620271800114 1.0293703441872117 1.8917667422602311 2.0367603599445463 +1.5556360059169556 3.028413248999974 3.7033561734028044 1.9723260908822846 2.2727819856585922 +3.640125694761494 1.6614520179545385 4.185907254924722 4.471495943722573 1.999177435461403 +3.5175117751189364 2.436012403947738 4.313584493162082 1.1294245929625504 3.36281357792584 +3.9680942461720545 2.450314467306795 4.517063636543773 1.1372211180553866 3.704995399040894 +3.785087459458651 3.8555328070663624 3.1384107567742148 1.249134136681573 1.8905895097107273 +2.39721882793644 4.116034249434993 2.646278500264297 4.22441147152715 2.3334159783819444 +4.13985761814752 4.120402774063031 3.7793689006502573 3.54964911187187 0.23054212698493662 +2.198215795805619 1.9943082378146908 3.8107110022769497 1.2340533423505309 2.5847133281397596 +2.6123856277116526 3.1779876018228532 1.2580235326878895 3.636313657022967 2.44462052446351 +4.583921628403996 3.1072313123520425 3.0649334508688697 3.355419616654072 1.504990532207497 +1.5789481282714792 4.2782588958191035 4.736554650963697 2.5782045670101494 3.4561183001599973 +2.4572014590944518 2.7871933972665937 2.3148026437455522 2.853130339730454 0.6314201355064785 +1.4634280035028775 2.8438078292956965 1.0052347328511848 4.059920671036501 3.3520970517577378 +2.8300190071386044 4.677805736994941 1.6977989204818469 1.1902399303012081 1.9162285687115626 +2.588573101789793 2.1204930480686643 1.2605344182582945 1.8173399416653142 0.7274141376053532 +2.2001974809250897 4.027975360129689 1.127312186343548 4.187917616594591 3.564839067249998 +1.395271751239067 1.2986922429583223 1.5031584218053697 2.359546764896112 0.8618170313944008 +4.392783453187329 1.8231968097096596 1.8473956666865896 1.2324768150132335 2.6421394195768917 +2.430734005828519 1.3723718678864074 2.8012499358203575 3.6168884855014256 1.3361873591511162 +1.4493103188351064 4.559416417212839 3.891996499307628 4.3142543266351385 3.1386400902151417 +2.3362267569415613 3.0195612974748967 2.435345193984503 3.9597509128417334 1.6705564611741006 +3.8036975397803574 1.818371072318302 1.230505077162963 2.5181095719644917 2.366314965814666 +4.692902380400426 1.4853965032897305 3.911505093334557 4.693705803669617 3.3015044908266176 +3.4152841533860823 3.6722690203577626 2.3548141490174475 2.104517866382636 0.35873311939833175 +1.6099602999706746 1.871481565794256 2.78439359534929 4.940162830243617 2.1715741678779565 +4.1976255537566995 4.301629263873834 2.5489979272843986 2.9855832483938687 0.44880231096373385 +2.8572691686876595 3.1582779468020177 2.121846107670667 4.638619819580043 2.534710279590154 +2.9530330795703366 2.290487898864103 2.9197654285422927 1.4384493837890275 1.6227332932187326 +2.808128419034126 3.814544943587859 2.9874492244856214 3.1210816345821577 1.0152496451233184 +3.2672970444678726 1.7943497085168958 2.6700519780268226 1.3993521882186117 1.9453153498350109 +1.337594401321971 3.5900261918158978 3.8871565448058503 4.4323918743975685 2.317483664551417 +2.085350341732613 3.857424146064206 3.5589225444916184 1.8516592223249155 2.460689663328948 +3.7825284866700164 4.8308418602910255 4.961229969604051 2.168418956920973 2.983077987897155 +1.3831846415498799 3.5104601595004405 4.340372094272645 1.226825041624446 3.7708720978476733 +1.3315961046988645 4.573893197827086 4.568668554026133 1.0765529129055587 4.765224243523769 +3.352422525286648 1.4510609160560768 2.1372247435303686 4.387794864063226 2.946225014572232 +1.3948163013749104 2.966859923327553 3.50739519594021 3.2746884373027734 1.589173868661804 +3.9691289145768307 2.825263348478573 4.774022099725584 4.988786513941879 1.1638523045983782 +1.5430086663578506 2.85758244343766 1.0449000007893452 2.8585137537976553 2.2399328249942596 +2.692465488988848 4.07637957241149 4.467252590942229 1.1812917322320229 3.5654953309843282 +4.1526817458690815 2.8790645182240517 1.7213729177675567 2.058739492641092 1.3175420480561948 +4.007360127184644 2.4774870059769634 2.771283851796137 1.5421548140987746 1.9624652756939616 +1.7728401107771923 4.059625673927353 4.228990943459749 4.671524996943616 2.3292111540873357 +3.94826580133476 1.5808546548054498 1.755228261559116 2.4341386099953533 2.4628347077960866 +3.803562944542932 4.494576710359652 1.1946908828854328 4.334668299108278 3.2151140258065034 +2.4464327952937315 1.4571438307778082 3.3654145726645432 4.482971874850798 1.4925236946135252 +3.726443913450276 3.7140576343080114 4.974128784545914 3.0052011020508886 1.9689666423802668 +2.7283313173822115 1.2025631090681226 1.9335918072870268 4.380117495667319 2.8833065340692876 +4.576653881559 2.385992366432535 2.53615853565826 4.110449655733603 2.6976638791006304 +2.2464882908917962 4.040417311979322 2.7414471524298256 1.2263151784940702 2.3481495333863442 +4.3906397430300235 1.6592159146449132 4.252752731343833 3.1275996814462173 2.9540896255807603 +2.8331075680450915 2.7230471393150584 2.557258569989428 1.1278628049564419 1.433626712595184 +3.3769689103778653 3.2407139471644926 3.880600367637246 4.3948931990196405 0.5320362125002374 +1.3973082883013785 4.180283926578097 1.8129763371829704 3.4206285555034026 3.213953804632592 +4.246530091814057 3.9047039038197604 4.422590081580392 1.824015718808178 2.620960484565864 +2.5983243407230754 3.3194765567739464 4.919302001967129 1.6782641849067148 3.320299180846632 +4.5868119013265405 2.2472908872551947 3.416028083165266 1.8115383927715571 2.8368549032090304 +3.4995508196658447 3.119115641706479 1.1905702824745483 2.033785577903501 0.9250637594643465 +2.614304293459979 4.6276518470033565 2.133939717481122 1.2922769753486905 2.1821925998529523 +2.842877770514305 3.448468446234673 3.6938185342176477 2.842871888008754 1.0444377727819003 +4.437433536312313 2.299808579251844 4.723040240713635 1.881134122588699 3.556103322638941 +2.394259400961021 1.9557668530489196 1.977530080032015 3.6260951989631924 1.7058847164832136 +4.191808018430925 2.9036835915001293 4.862605523938619 1.2420350551567902 3.842888894916279 +4.0469285748707495 1.023884090533909 2.0959927879413343 3.775670284945066 3.4583398398971887 +3.0371647771887376 4.925950261285924 1.1545220691738334 4.411341974221135 3.764888643618634 +3.550041123589112 2.3951430947164134 1.9707364838794672 4.463043261912658 2.7468859701349504 +3.3251130751145817 1.6999592751369224 2.5645962684182395 2.1897755852762146 1.6678175613935957 +3.1818125487357523 1.7972942501012357 2.073109527404483 2.3008973915686317 1.403131579829305 +2.6603880651585348 1.5835571591294633 2.448169266719712 1.2667423587191182 1.5985413160526176 +2.9418870138641364 4.702869679168254 3.230679302725813 3.753064751289065 1.8368305595160983 +2.359088118342329 1.031765119124267 2.6144192331563594 3.351654478640176 1.518322150084367 +4.713423080645291 3.014163108325123 2.313796345776655 3.534844552977844 2.092472981387998 +4.188125039276986 3.952933253928356 3.5949684440535767 3.2179053836922584 0.4444004133487271 +4.26094414648456 4.855216023540809 1.6871287161044264 4.1368444185718705 2.520766963996379 +2.4494249855342924 4.042826302548825 3.644582619034949 2.723158065604841 1.8406387382448302 +1.1696304475801966 1.9903501357075122 2.4121285678661883 3.1454946102278036 1.1006391591111668 +3.6951042270877523 4.046003949082433 2.310719761688418 1.709072387936427 0.6964985120146431 +4.909477944810949 2.2558333735340423 2.114911659187596 1.1717227545733944 2.8162803163844927 +2.5351795213060955 4.964616499132142 1.5524309044036828 3.3782183032101885 3.039023470601894 +3.7385269134383563 4.783745152645574 3.399217522040157 2.9003656260906507 1.1581599119568307 +2.031571608800327 1.8553359670269036 3.047544521616936 3.4615919872351566 0.4499936724179151 +2.7507362756252203 2.7832193621895485 3.51205662976153 2.869340736936183 0.6435362226036919 +2.300729548328241 3.9268660777289863 3.1750689885107657 1.8572001067347887 2.093107355537447 +4.849945661978715 2.194056916174652 2.3703131102486927 2.412066617934087 2.65621693118102 +4.476172478286701 4.203037107652571 2.6392336642229997 4.520364518883927 1.9008567076581004 +3.0904040254053675 3.2147192646877936 3.180825062357506 3.8177261309255304 0.6489200643075681 +4.60706201266707 2.246598526725466 2.887617598080767 4.545617879364042 2.8845715108485366 +1.7397586076811908 4.26806150706784 4.301869468683906 1.8729846883366124 3.505965890770995 +3.0387922368175886 4.8058544210802765 2.587990439850147 3.3314153401789364 1.9170783357703702 +2.3788421279443166 2.367722622262334 1.9174628114119932 2.3627285002080964 0.44540450943572624 +4.143209827820745 1.1300940287587222 2.2572367819330803 4.72625369336503 3.8954988547674017 +3.134546833828813 1.076735902625841 1.3441616421386726 4.979861690881689 4.177666893495509 +4.383743503982862 1.9681917127732698 3.925006744475909 4.079002824772338 2.420455587025412 +2.1871985498998687 1.1459345382066028 1.9222728751621827 2.2910783629500804 1.1046484643858527 +2.7840159640585918 3.4319929159907785 3.8537212104482435 1.9912041245348817 1.9720152194023575 +2.3394926876474367 3.651984179601106 1.0435661016134077 2.2506996018864145 1.783200831070951 +2.9006069173536613 3.7476698381475604 1.703929586043249 1.3295356416508963 0.926113609327471 +4.09401639926776 4.661330362751578 4.048931213717937 4.223048528946409 0.5934323656711767 +2.7087075325583325 4.585932546811028 1.9066882448398546 3.4262797130412754 2.41518777414233 +3.8099588509139126 4.723689792020316 1.5101822092752002 3.0039016047731266 1.7510288019395583 +2.529109145518851 3.611747749372057 3.080225834173671 4.103460269503475 1.4896694452790264 +3.8123634391071777 3.5155923058615515 3.192800557160363 1.3280529659603957 1.8882152113607107 +4.824798312650155 2.475096632268812 1.6937248014366837 3.7186047420604846 3.101811851277823 +4.725811363793563 3.4491252160250454 4.845145869633823 1.7101544048412292 3.384981389051708 +3.7273834033022792 1.4465300431856796 3.1448538096524747 2.7615491071275264 2.312836904179134 +1.9449607642381097 1.7988398101798673 1.0408232758903444 4.369924925338568 3.332306877460984 +1.925530590515693 4.74239379488664 1.4197485472542128 1.2327710412095283 2.823061972381345 +4.7337112946719 1.357229692903203 2.127151473531238 1.0870451050012089 3.533050985329709 +3.2421277268928463 1.8489802322161584 2.2681633230811906 2.3287408028414696 1.3944639016403542 +1.1643736382673473 1.4119541313755097 1.7596470010153276 3.947853524853349 2.202167998027162 +1.8310012818746841 3.3334176648371106 1.9590441644829815 2.0398255624768358 1.5045865286037032 +4.71836340554968 4.285440842664029 3.1102734534507435 4.586980361472131 1.538858420275747 +2.1400724955423076 2.312174128366861 1.2409824795474695 4.791985388356713 3.555170970627515 +2.5720552595324215 3.7427616081792583 2.2695987797270702 2.8005061389921524 1.2854633323762417 +2.7346956317756543 1.3577719462877296 2.7576944337991 1.8477215398857738 1.6504452439613508 +3.1303873281103356 3.228949870245094 4.14115839941698 1.7567306689523412 2.3864639482968975 +1.47512113833539 1.4592265920345011 4.522907529707192 2.8577246607177926 1.6652587257774325 +1.5529631198565252 3.14895150736132 2.41240696945214 3.9422350586388184 2.21078106458209 +1.205254167443654 2.5189957394912588 1.3811784151907953 3.150910651410264 2.2040574189527082 +2.346820767513869 4.877919792200522 1.3950059606176302 2.3884459838675385 2.7190780335555846 +4.950936093847044 1.1539391539608865 1.9488253359418688 2.6116070228577764 3.854408557225861 +3.8609427478372296 1.9538381499166082 2.105466334209187 4.737564502598312 3.250382856748934 +1.5457831801265631 2.4833566973033365 2.231716771987852 4.547808474623479 2.498664618376949 +3.501388434432307 1.7266085426537057 1.209116125510985 4.663522195157791 3.8836535579624445 +1.9216710488123567 1.8765320600692386 3.167132727612411 1.2039110612569388 1.9637405224602125 +2.453090434993143 3.6822926470564266 3.6133893118114364 3.9625044482171425 1.277818240834292 +2.693709846997593 3.9707467891666304 4.312158471773076 3.9901180155103937 1.3170168590926699 +2.6861484270908806 1.9034408847588407 1.753675887944433 3.5612542658984245 1.9697641202109062 +4.450728047392698 3.6343904201554453 1.4787929862191747 2.738315073348088 1.500934045722503 +2.4358641103115635 3.7615106225052655 1.424692671892342 2.643279537319203 1.800636727350131 +1.98823467655169 2.604278911602903 1.1340410920327657 3.0755561133022837 2.036907233369996 +3.1137858836143564 2.5597996483709213 2.0327763240425454 4.069805304563856 2.111015825692191 +1.9797170211235597 4.923262198820481 3.4262634108725325 1.7113449302422783 3.4066704578444305 +1.3785554409935137 2.8371646133737896 2.7176002794930203 2.306447232687751 1.5154496183143567 +1.0441981949356225 1.32427935590233 3.8495814284068066 3.121723244756833 0.7798865252295988 +4.988755893502366 4.4352827386242515 1.9680824705617779 4.250790314296257 2.3488481502680516 +2.7056175043851054 1.9925246478839385 3.269171853314568 2.0762621208171574 1.3897967663942945 +4.369852501652806 2.0024330729311264 4.183462097896776 2.5929516567182285 2.852086642265074 +1.7923373141552204 1.5499194879363891 2.0739320929101277 1.7066947338902043 0.44003372635355076 +2.8817648410230134 3.680983267474788 4.6304909323154 2.530384799950163 2.2470415795837253 +4.572021841276661 2.0012382136835805 2.5972583198857495 1.2708839073583773 2.8927837012310427 +1.08491031674733 4.9061044661436775 3.7156591772775998 2.24537479648849 4.094296140702733 +1.8681925290639083 4.391563522799114 4.705265185242405 4.113052878076735 2.5919329830809064 +3.1810521357175174 4.8327103974510095 4.020957704026291 2.862110969371899 2.017647334885769 +4.625851375967225 4.753090648944658 2.0112480611788612 3.8710623861264746 1.8641617837162558 +4.578859375584985 1.894923583350188 2.47976511395636 4.895973617684396 3.6113120704706065 +2.557331194054523 4.002492574693806 2.6687524508602603 2.946824748531746 1.4716710294164033 +1.1103793137948474 3.4759550935964056 1.6013349387859255 3.605663188098952 3.1005290679137283 +3.060378542095601 4.652119701860526 3.2713564133622124 1.486950855431585 2.3911802765294596 +2.679941290461942 3.094990111275519 4.50350020830124 2.0816242922724393 2.457183036792148 +3.802535476917134 2.221592424594077 2.701285549705897 1.3811406308563283 2.059651315502913 +2.810006270192457 4.544645368571237 3.9270423199633684 4.38150837859212 1.7931849319213837 +4.628954856197724 2.073080259235467 1.9319600623400022 1.8618705233062829 2.5568354461871294 +1.5483375792397966 3.852772315335099 3.733712502664283 2.1375315871968246 2.803250429024342 +4.397808938260468 3.3666349973677234 3.008296392506416 1.1876278767244877 2.092403770961963 +2.466992177444215 4.0643947137310645 2.639332426725553 3.011358868850104 1.6401519858157996 +3.6540472347542576 4.7696712053676595 1.676642919096249 3.9317473245551566 2.5159715267322453 +4.521823979258663 2.171816312591777 2.192420919296969 3.0246455726386228 2.4930170290278357 +1.1345131743146046 4.768707090722611 4.344372254990486 3.2213451343676716 3.8037554253278865 +1.7301713246737784 1.6136003255555753 3.215069631156952 4.318827457555697 1.1098964533558515 +4.633590901794964 2.0301375974960263 1.8574323780075748 3.740783944419915 3.2132510375588264 +3.132475434668585 2.520259035502909 2.8366673952454278 1.7306758271070715 1.26413063731583 +3.507081680298786 2.6316441256534286 4.151633592553019 1.2201476059109009 3.0594118719065193 +1.0292420584385544 3.8962426229747376 1.3551824189370794 1.644715966464898 2.8815832301349267 +4.336277528533859 4.83681193989834 2.74213239526935 2.0873309033422123 0.8241963909105596 +1.0647817584740102 3.155276819815322 2.703795121870576 2.0554309822558614 2.188731518261375 +3.4581948271134952 1.5441326707883412 2.838254931896334 4.946783675289606 2.847723195816565 +2.3883673801779493 4.65197586836274 4.866299651903828 2.8136773801459998 3.055680215320069 +2.761515544765514 1.6891828335317802 3.970366106988481 4.360140300546862 1.140973867161723 +3.043349644406818 3.7270803759598365 1.7759959535933327 3.975079103293994 2.3029230149024533 +3.086444163771868 2.9487971642555313 1.4265704561394723 1.3076829738553934 0.1818816371151786 +4.788873478053125 1.600926207671034 3.466817637537251 4.626996773802411 3.3924951624079873 +2.8228399403885596 3.7913723906311443 1.2314973210059428 2.7367654708653024 1.7899405884425117 +4.748976859286429 2.251354685670385 2.2148190940266024 1.9536620809847904 2.5112386401135707 +4.595480782531771 1.382507489875716 3.7694963141129514 2.9011677741380533 3.3282415526304625 +2.740166152490829 4.977724737975599 3.771636537007512 3.0937457207911407 2.337991527398485 +3.4477234142476214 2.206870750454431 4.756243319857747 3.970744143661192 1.4685790033389838 +4.233486264569823 4.134606412052808 3.820869875268765 1.480829327863027 2.34212873018046 +2.655925205572732 4.9100739486504414 3.0588140483179576 2.0138084424140565 2.484597205240599 +1.3369263403043479 3.882662510435028 2.1588909035813892 1.6276292291534755 2.6005790921691987 +4.772770572245288 3.0634957688930182 2.035482374414596 4.886953360471896 3.3245311154659887 +3.4684972592888426 4.002357162225353 4.3163337834939774 1.6980813240941752 2.6721250601565214 +4.9047605285137434 1.8077988679431494 3.165179441708852 2.545221881026031 3.1584044870934385 +3.5477579327698323 2.8355742163070596 3.5365336800823206 1.3874674271087626 2.263998985349714 +3.1750869932702463 3.6729896488489655 4.409846453987963 2.4344759685979085 2.0371538010131878 +4.918689365818912 4.435356550106093 1.6910973929924116 3.780813717930204 2.144883430272236 +2.9144304792722946 2.1583842191250544 1.127964912634595 2.144532766911135 1.2668923197458564 +3.121536443311507 3.874817821314813 2.5733676494591093 1.5975934367244826 1.2327076493169173 +3.3484493684027625 1.631870151681857 3.5465709478245544 2.9564646615993375 1.8151775770763243 +3.8422956665418626 4.605239714866988 4.079094425428999 2.664836376838395 1.6069254646305269 +4.663768747779199 1.9064721808424268 1.9872061443602456 3.8011129635989955 3.300445773970866 +4.224939144569327 1.7567256270448341 2.0791659675426617 3.1088148364412107 2.6743699746509817 +1.3950171660125692 4.5919983156864514 4.298733000961521 3.1988877390630717 3.3808797777339863 +2.6417175479911728 3.0693715119512004 1.963680831017057 1.3991705127037122 0.7082088762314114 +3.937668617169641 3.7625800575525252 3.0734582887592397 3.225168652834804 0.23167226479822015 +2.1615944202519537 1.468448184582503 3.2441411324121203 4.407478204723656 1.3541805078486047 +1.381227230672903 1.7785505918813524 3.7569017480393816 1.6076354550854268 2.185683291648178 +4.977118474354505 4.1442908326576084 3.0579614592937783 2.5186619775294106 0.9921924268032536 +3.2137860759521137 2.1655237539747842 4.408071583641047 2.03985940190376 2.5898422410266972 +4.798387782840603 2.6933953110880053 1.47374305164232 2.922789452337582 2.5555290601953646 +1.829448062091107 1.3862735482265656 4.771453276142411 2.59368648603432 2.222402268230658 +4.62733488189768 2.967363837827636 4.9836849425176695 4.724720655915123 1.6800495138199223 +1.7277299932627717 2.274961164829884 1.272385287610586 3.305633366145521 2.1056019813822173 +2.831908075784147 4.816904804046571 1.3284392881657001 1.9884162391835072 2.0918368930409676 +2.183565728770408 4.93922968440082 1.3744823302709217 1.978416187603464 2.821067163396364 +1.8987371819716548 1.7412034961586484 1.7601110040013057 3.375580360183591 1.6231321889882657 +1.9038441087348894 1.739999906059849 4.477509364873923 4.3554411291559685 0.2043173436630227 +3.576326769097632 4.317765342178902 4.7363761216518485 2.613939922377428 2.2482140862567417 +1.9153593977361156 2.022467141522472 1.2553555074584333 4.212853810887003 2.9594371565488378 +3.881488414505944 1.4714391992412947 3.009049359366318 2.7023429952209956 2.4294867799197823 +1.663705099894032 1.866363313326028 2.5280081649853003 1.9979512882254902 0.5674774392624019 +2.82269124856625 2.3728471073080954 4.644943527485654 1.350260244751118 3.3252515220588506 +2.570248136394248 3.608776066135629 1.1188250807119142 2.593322899996063 1.803519913925718 +2.5463686492022033 2.3808152334147032 3.1120886464823783 2.684804491701055 0.4582354006469803 +3.98355285714064 4.795863223118768 2.2563179446010544 3.7711050122957546 1.7188449584330252 +3.5683717466255582 4.9436185955795136 4.853009081180672 2.719226578955717 2.5385688216708195 +4.874142718583693 3.3299008223904782 2.9725855454299794 3.2915333803565403 1.57683567798384 +1.4390533100681213 1.5437442201702951 3.626274108522015 4.230319304452152 0.613050393837488 +1.1153828517810926 4.3256997447527485 1.4075473646364949 3.482133702050335 3.8223085988291627 +1.3412150192761998 4.892041644739642 1.0086441697264608 4.6469387465103615 5.083852589479286 +2.6068911598367412 4.409092239881906 1.615511931526194 1.9022671796144865 1.8248718599458251 +2.360559651140807 1.4158025640981533 2.306219038883257 2.727193441759935 1.0343043079262 +1.5557351700754634 1.418678691723616 3.1604139506840814 1.3849486435369158 1.7807474652912998 +2.6576680731214894 3.9419699640789236 2.3344213377921665 2.560514403555365 1.3040511575482931 +3.0559180058717925 1.6011726718935684 1.3498324935060917 4.476967039480624 3.4489497612111952 +1.6064439035610834 4.578642420901026 4.308893585371086 1.4810777789842344 4.102500001380752 +1.4227965275267427 3.182939786645633 1.365793063655465 4.245056734390282 3.3746501416050525 +4.6353093094284805 2.7051191038631526 1.7326344506479052 3.0863365014297273 2.357571520007661 +4.918126602691137 3.5718158635875557 3.6503514350231856 3.7447231005904666 1.3496142476602617 +1.108886105923112 2.832519943969357 2.4910573982739304 2.5994478193281556 1.727038532006261 +3.645469084282011 4.230821667880024 4.537981961801945 3.907656332116528 0.8602023288524545 +4.61210948315779 1.1647249855268353 4.064753293274061 4.680952360331473 3.502022439212612 +3.5990575307849473 4.92386148858836 2.9488008241852772 2.6219506268471138 1.3645279689737333 +2.5336373655745 4.984570493461122 3.1374454188241234 2.3269049388113787 2.5814819517307095 +2.3937600498372187 3.063454972905431 4.571518851140107 1.2679258977548917 3.370788882686038 +4.949901348601834 4.64972522929663 4.839034653100784 1.6417385119197467 3.211356149201188 +3.0489677335879892 2.2261664191556947 4.313607401739906 4.817839110929231 0.9650137924317452 +1.5566979672587458 3.8484250080972067 1.1659758169093992 4.372088217751733 3.9409604865495926 +4.048300687354599 4.974469727169089 3.7087669444924907 4.64649480523473 1.3179994806991053 +2.1388440368058816 1.4288061214663292 2.2668413271095815 3.6245577632518846 1.532170931127038 +3.7719616987664524 3.6097076768602387 3.008340796558599 2.723346559257067 0.3279452437828973 +4.388201710766976 3.5892297605581187 3.6935810962625863 2.5994778608138676 1.354776020986458 +1.270492330868413 3.62660449524636 4.375950689023277 3.2182521208951336 2.6251724716246145 +2.964855800851177 3.848371642527611 3.9348573333979995 1.4613306336005216 2.6265822997013095 +4.859229630859247 1.0023688887598463 4.6132231541937125 3.0935323583589365 4.145459552195929 +4.777698260816917 1.6467849036087312 1.827834203850796 1.4882984369135501 3.1492702309224434 +2.3997764852024024 4.434251655806893 1.839022163775505 1.897909498213319 2.0353272311752137 +1.3218638584203561 3.493285442304221 1.2556646893285661 3.4666638874992777 3.098965819312669 +1.4570960168838063 4.049867414691606 4.1988409677802885 1.0325562307929381 4.092410360285155 +1.106824038646923 3.6836807734239287 4.383195801685395 1.3035404271548199 4.015528341008276 +1.3564315531805242 4.659322971656408 3.428627697104911 1.5986222955351006 3.7759782165706834 +2.2753311126747766 2.500860885994181 1.1191985499282078 1.0239720736644853 0.24480964122171991 +4.9125572333303555 2.172033778308386 1.0918782413133474 2.654797482848598 3.154866932706778 +1.9787117349972259 4.504277925225391 3.483733623205394 4.511465275015333 2.726667733581705 +1.268659333917562 2.1363283354681455 2.2588029861670815 1.992117138577496 0.9077283941556318 +3.431179824080377 1.9881739425515939 3.828529194755858 2.1599919438914887 2.205965215421288 +2.432238720586963 4.92043015500542 3.2890780777884854 2.566870171203323 2.590884187810698 +2.428206845895805 3.863262668290208 4.863380942293723 2.4366236967598636 2.8193148001135246 +1.8788559423955733 4.248780555425986 4.6927948405553614 1.1930070217628685 4.226707636922108 +3.865299823867483 2.552534591426275 3.8015979915724496 3.944048221799662 1.3204713641719779 +4.237221840486331 3.1465277108584777 2.253591313556624 3.6810501701962703 1.7964555301491956 +3.50251030337639 2.7327022938661445 2.703105246892608 1.8335095512987736 1.1613789413027302 +4.91534323120532 2.3812956016012627 1.2752816753744094 2.2098782525225618 2.700901359013132 +3.1097694795468858 3.383359617377973 2.3238941557979906 4.88433919108924 2.5750204547276985 +3.7669029055545207 1.836822222854658 1.5821828733282213 2.1577974887889506 2.0140863008478984 +3.644102976562724 3.7336176657527145 3.784588831516119 3.1125390858687836 0.6779850589839194 +2.609599179348844 2.898606754851392 4.023149898031451 4.9344897476432115 0.9560678324199843 +2.3569983501329377 2.5213522970080997 3.1235698336264033 3.14428582145753 0.1656543751467584 +4.051314918355633 4.937672412406799 1.0498942621018328 2.295820545568124 1.5290395387604563 +2.9542600655900286 1.0304165041022042 1.751333031917373 1.6511610956376641 1.9264497050004141 +2.4934953001396134 2.3185359665444603 2.338236812909825 4.684425624718723 2.352703276885827 +3.3050620029942377 2.937079832947906 3.195462031290689 1.7545599521034267 1.4871481699138736 +3.0230239778944314 2.6479023108074364 3.7519854968943016 1.96397827880079 1.8269335174200032 +2.1078541470709315 4.643995259615247 2.8421021835175884 4.48588098290049 3.022254205727607 +1.8223371615438855 4.437239307936139 3.87648240564192 1.941111617452771 3.2532096955134477 +2.3771846318986376 2.5854136352813155 4.448226344953129 3.9807394046199045 0.5117649433400683 +1.7022331947511264 2.4127973751200167 1.957109985303751 3.155193602492364 1.3929486021383073 +3.115431305163535 3.0302306963204066 3.9275348853383187 3.4488809619422702 0.4861776651900723 +3.5101836387088774 1.0437443983188368 1.0749123329361105 3.154498483647726 3.226143376350058 +1.4079280529020473 2.4646037650358763 1.323077345939939 4.552379215445721 3.3977866508960024 +3.2727465860256735 3.2593036951966656 4.178857325494185 1.655848155476293 2.5230449824187073 +3.948481083591097 2.843364423204498 1.4483941694531803 2.4206169466845653 1.4719035164138772 +4.669552317583805 4.366479776358366 4.078762155976265 2.114546222918121 1.9874599862448352 +3.3500432635623825 4.8627748416101335 2.2683205362776433 4.582479566855863 2.7647222005166383 +2.258850457523719 2.910290816435836 2.1017342883010612 2.3950098531047117 0.7144124145970924 +2.8047892775746486 3.1297369940033053 1.2898708948628097 4.219117652926572 2.947215225944529 +4.697911680004908 1.936502079843149 3.8900212774772083 3.532904645316154 2.7844057299236367 +3.3355420468462667 4.190776333770174 2.99078471598939 2.0363701092236144 1.2815353788086048 +4.2282173249315695 3.5550855866021673 4.607296467140934 4.532636097133149 0.6772595573309115 +1.7940523256501892 4.861930251909477 1.430952424740159 1.550734264885695 3.0702154093251566 +2.338078373909523 3.529332980097513 2.9903955232315154 4.763437584386495 2.1360631281375566 +1.0453750774341972 2.8559627227846147 1.1944558875213875 2.9604371612046814 2.5292128183479616 +1.9208511849095746 3.354906739812984 2.7739776825131566 3.4607204357239705 1.5900097306736503 +2.4485077745167376 1.809729264691836 4.721520382958216 2.530351247949776 2.2823803720738045 +2.9678438242918834 2.5013815120115455 3.8303929871956797 1.3490045281353003 2.524851633965046 +3.209831554886092 4.214622509261378 1.3302314591533237 3.77887844475368 2.6467861496698424 +4.831942400098593 3.4502018375612726 2.5728543622359634 2.724777739493298 1.3900675144460521 +3.6769760929755124 4.840077586389166 3.152408347963937 1.0190415890256612 2.429826909910225 +1.9611281973379122 2.595275806717778 4.550872904882414 1.3196258193856076 3.2928864113439755 +2.6769497035370113 3.6779225206101103 2.204194351935491 3.553539986314244 1.6800833971967744 +1.4413707254275314 4.053020412033103 1.6834172694613545 4.738837406823404 4.019490801251385 +1.9888220380662482 4.596774218254408 1.5472329933126763 1.5198377584676792 2.608096062847454 +4.870115435584439 3.5247720751537743 2.343335650447677 1.4512392402204477 1.6142443317525332 +3.835813390175665 4.457552667559949 1.7243504626069104 1.9091186162505358 0.6486131355771376 +1.5576260091343261 2.662356677995572 2.251276801178909 1.3958619766713225 1.3971987591999788 +1.8536058493819536 3.697991641506685 4.324852923284132 2.8003331201268753 2.392889379058341 +3.5594650711926987 2.677009335879914 1.117197903298384 3.2074495637168976 2.268894032049267 +3.1998883760519314 1.8178307678060395 3.5207157006892578 4.343403676859233 1.6083838903212768 +4.831598281174256 3.2067241309845533 1.5223820329498232 4.6583149409579985 3.531896262276586 +1.4319287234213647 2.9978464992528155 1.3932692047618587 4.924554607990414 3.8629101827145784 +4.602468074556885 3.718778164998197 4.756809430557055 1.566347110507397 3.3105826786099892 +2.6390022872862873 1.8847194566504273 3.339570409246765 3.0794668587961556 0.7978699427532399 +4.754792181714312 4.430986697416708 1.20482670769271 1.6258642867398572 0.5311521765286183 +1.0870010047235796 2.061963635639371 4.454068398339125 3.789693130128307 1.179807877873528 +2.000857758472655 4.202684276597967 4.371301302279557 4.597265315884371 2.2133910073378886 +2.6728199673058173 4.484381636910367 3.2835794345597358 1.846358041481488 2.312436164632919 +4.93153481452002 4.737316308043747 3.147627525411151 2.3024403704659067 0.8672151723432373 +3.507708056929241 3.1818332265242315 4.912932140500665 1.9932407306217552 2.9378210180356783 +2.1180878306614654 1.3290920004304319 4.382984449837192 1.345890333624332 3.1379061634881196 +3.886262403614723 2.5493794419572238 3.664159415094877 4.070453569217529 1.3972583844244297 +3.4540081800998683 1.8062083587081528 2.3331045655643536 4.126790989378323 2.435683731183734 +4.63759266372886 1.1012795816221477 3.6205281355450745 2.4129673701100725 3.7368052152737428 +4.853148325560561 3.0983494502886932 4.366923272652679 2.7134356220025833 2.411086996254549 +1.7576063243510998 1.4639941914791499 3.9450773634604013 1.2814496715824228 2.6797612889040736 +1.384553325352115 4.186445556854074 4.039599866969635 3.446132061101085 2.864053790268866 +3.6185092808213914 4.212534665435335 3.7828460736926184 4.1937342464347935 0.7222847416809711 +4.321363280275243 2.9278586170876277 1.2808732569712946 3.6826364097375697 2.7767465653731214 +4.147647906869246 1.5679438841988205 1.8811107682199513 3.4597752473210615 3.024409757648185 +3.031496829877078 2.6838468273778164 2.9410245208731345 4.051770526244106 1.1638802398379773 +4.4574700850784446 2.1673253094300025 3.8606253119535867 3.990954880490839 2.293850232657956 +4.200085376044099 3.3336035647288758 1.4384153073811015 3.8556137899064584 2.567808254769619 +4.887209052693747 1.8969476556132152 4.684497588711079 4.638086234553603 2.990621546880304 +2.1888910722422814 2.972786210900637 1.8521544659053109 2.6598438987027246 1.1255460045083945 +4.469923326145848 3.0255849678316733 2.7347437182252663 4.907204706101981 2.608773665373053 +1.045230373433307 4.70978890555566 2.593709161209129 3.641320044618802 3.8113616724720747 +1.6747612905922744 2.352090423889411 2.8958518346814053 4.816670422551235 2.036742203205722 +3.5987376216025835 3.475185404009514 1.6954802521402361 2.9769163670601815 1.2873786028567076 +1.2068375927609294 4.7407865907855395 4.675240725224969 2.1802119994601115 4.325963922992303 +2.1475537783106673 3.3829385223511603 1.0228255528659034 1.914204893804881 1.523395088367033 +2.919392516718359 2.372527916492013 2.163573220494754 2.5050752027545196 0.6447359885007744 +3.516561072083819 4.158424265947366 1.8388619617712751 3.083870435907907 1.4007264045161487 +1.3510676362416953 2.385629833020245 4.9664188881466025 4.195358086696795 1.2902920981450974 +1.6154246125675042 3.9956199065965086 2.704956100962259 3.1358162756276124 2.4188778654224103 +3.594845145625676 1.6574232875340131 1.711664997650412 4.527216889965393 3.4177384210219808 +3.265593283938424 1.3221867179504248 3.996796784360871 4.700420292819879 2.066861176368996 +2.6638016238645013 2.0129653670839587 3.6817508241696673 3.3982643967567197 0.7098960400421069 +3.926809823347896 3.7556496597546016 2.4083924403230825 4.531611335041527 2.130106635004618 +4.857155093266859 3.8118817715879736 3.5556466453541344 3.3390855818023324 1.0674713163641905 +3.7024537027690996 4.432567818920893 4.18465507661141 2.3353483072746113 1.988215820709367 +1.041140033545827 3.6176471725689967 4.638926903330653 3.7207526186045388 2.7352208420106905 +3.582304114641341 4.985928562760798 3.414310340613994 1.8750182407177025 2.0831662824080523 +4.878390460794054 1.7079634275249722 1.8587921417019526 3.257324860509275 3.4651841709868743 +1.4826876118962002 2.6383466350934373 3.9017429768244893 2.001679907310214 2.223912643524741 +3.2986663270712024 2.5336424527294232 3.299385391492078 2.2758800979504525 1.2778202589647087 +2.7754458907623296 4.843738944479082 3.2939294661480405 3.4595941691841685 2.074917094701621 +4.783977645966365 4.63222762600491 4.547675395850037 4.389949745409917 0.21887313532058067 +3.224573492937582 3.9986345720081182 3.6235946278657156 2.2521417894966778 1.5748185425636607 +2.462372648804359 1.3426742872515778 3.385805936262202 4.593599302873708 1.6469636417646678 +3.931533688268275 3.1361893453779772 1.0658276772313493 3.0166151160794636 2.1066903558271646 +2.8206490123921286 2.5742835969455244 1.2446778314037696 1.1619069949577958 0.2598979209115456 +2.6349116752921473 2.97272707922952 2.1727027367499883 3.1323754773513173 1.0173942285027158 +4.961527741569432 4.061639822361965 3.8716781090261816 1.8671346964021707 2.197269341758051 +2.7436817817327177 2.8501530092291536 1.1313410758838285 2.9225393801239767 1.794359910217953 +4.398574442429432 1.3642208710218986 4.518878884769434 4.063014409659887 3.068405777595355 +4.942575010333264 4.4853440363634665 1.6214307946184472 1.9903111227230448 0.5874800932967219 +3.326908597458195 4.098164002387129 4.584014040202528 3.0560501122790655 1.7115807502619886 +2.2527407842081177 2.2901836117980263 1.1395846610086853 4.388940035145287 3.2495710967400524 +4.311741765424118 3.8793629367267437 2.3049226704339287 1.6874039386870399 0.7538440392839886 +4.7664957415819975 1.6092010093812958 2.6795478704677755 4.840907957442854 3.826223654146634 +1.7589322865768722 2.2948112546969766 1.86697383023917 4.615984029953289 2.8007540674978455 +1.4085804111522027 2.985638491739267 2.000447298657766 2.8340984204072743 1.7838403466507782 +1.5527220869072136 3.6508900283794095 4.549758510134533 1.7264052497950098 3.5176174242363945 +1.3343134696953043 2.0127229711785497 1.9279653580887741 4.482711120494981 2.643286848269635 +3.681254742751584 1.2271604243270335 2.8428015855141475 3.6542748904398024 2.5847761698705405 +2.4423321676525247 4.085169779571224 1.0959905214692802 1.0065636843907635 1.6452697585273373 +4.408768061339414 3.306741116358112 1.7188489857636458 1.8810047991266527 1.1138931256059708 +2.4661255814589684 4.868724088675264 3.5858296373977416 4.2450882700396075 2.491405533346748 +1.4784258281336258 2.5982988890929914 1.794774820976793 2.2840658253441912 1.2220971154606972 +3.9488594392832153 3.3989424247600954 4.015563944644498 3.5644607055689406 0.7112684831809157 +2.8990605835740944 3.2579670796882136 4.722917470678322 1.4629894724504333 3.279625653421897 +1.6052955819479027 1.7988446991738742 3.231449705626282 4.516981210092977 1.300020195902878 +3.533075602715322 3.3032527445598188 3.5140988319862445 1.9381722701117412 1.5925963313257874 +1.5096847992540585 4.467024894873864 3.2219707849473544 4.422987034116858 3.1919117268385953 +1.6265418874274142 4.029206809570721 3.8746156154680857 2.995610550301214 2.558407440711295 +3.5521018731364546 4.900464551680103 2.954666372170163 2.948648018403199 1.3483761097970648 +3.156189534041675 2.3588089584809278 2.8642753791284314 2.430971174912666 0.9075066477291756 +3.866452730877801 1.5228221576227265 2.059396262579038 2.0344196867870123 2.3437636598501577 +4.107471729245423 2.765509230740168 3.8626015760679806 3.5966616672646468 1.3680597145186284 +4.556121171319997 4.555120802601987 1.2610600049776117 3.39783165328847 2.136771882481299 +1.9028026773907576 1.9984009581198818 1.8932810651943695 2.3446252766444 0.4613573761064348 +3.482111848382505 2.557360033031926 2.553761338617411 3.4428592491380074 1.2828331982320542 +3.479450020353966 2.639852683738527 2.325760775799264 4.571488098308795 2.397543512580651 +3.23876434922778 2.933616597528332 4.305554486314554 4.777754721104143 0.5622172285714583 +2.381620316126614 1.9996413395741621 2.2280642940860567 4.199830659090631 2.0084248894821566 +1.8264481241978299 2.3515698250263166 4.736221580840205 1.7747509314589398 3.007667070642576 +3.312369262410068 3.3457023533278 3.656188990072695 2.6270572478509515 1.0296714222500745 +3.8396013105401496 3.9093616967699636 4.166289415254155 3.351620697383284 0.8176500665714534 +1.0670663760841306 4.10361364440814 1.6705111748990138 2.2971380476682794 3.100529075890532 +3.9975420294254493 2.649156053782867 3.4086928257210154 1.4641087957595493 2.3663372094633455 +1.9876924103016615 2.6480852617874184 1.8006215321030798 1.0223181775684758 1.0207226998422767 +2.909626283518951 1.8148330220007138 4.007893166975649 3.647193811510416 1.1526822244221402 +2.2151012880064176 4.9949607575883554 2.9327216582696023 2.141409121290776 2.890293099636132 +4.245255934786663 2.5919974895608373 1.8532111197007968 1.8854164958379802 1.653572094879039 +2.9626480716771253 3.5930244818416184 2.438848616120267 1.6768799967440065 0.9889239583537441 +4.206539977207552 2.9188163786270356 4.832829418510557 4.701086950169168 1.2944451105805281 +2.6928616117639326 2.7275517488712504 1.950357309185613 2.0559404230524185 0.11113595073753285 +1.5218449049382308 1.553611825765445 3.550341826962279 2.888492714398085 0.6626110360240416 +1.2838867779662286 4.909041454469275 1.7713485834878693 1.3430928244366105 3.6503629167156073 +3.3603078776817745 3.1666006912483438 3.733948667061849 4.589594780296465 0.8772985496223394 +2.729295104209759 1.3654959466706775 4.463686126814519 1.6722827404177436 3.1067476575498842 +3.7707730109363324 2.423966882111815 4.018527004252427 2.3539621154058694 2.141182621314687 +3.33938980421423 3.735359986022634 3.7136254663922195 2.896619582224031 0.9079047304903879 +1.0021282518262296 3.105315696784412 1.872818562934906 3.0583331945632617 2.414299561039318 +2.175706465110318 1.5426475664347223 3.2603624022811513 4.006829794889315 0.9787630650058209 +4.0861239471823545 2.152709054453811 4.50666078508638 2.3770426831521343 2.876346016652125 +3.768500942273284 3.1169906634647084 1.8084415111144487 2.810740751210019 1.195436911798103 +2.2713847084048404 4.171667164619006 1.1517676203597262 4.944781571083448 4.242408307056278 +2.210754076514151 4.502649370469756 3.222496395967107 2.540496069301085 2.3912148552625734 +1.3789440282842347 3.507303157959686 2.757954194431625 4.694489087424907 2.87751281085825 +1.2964623325741838 3.694547540535887 1.6356842346108293 3.2190372921652153 2.8736422132046204 +1.3899766653476702 4.147803164373203 3.35049770677336 3.4298001878716606 2.758966451814116 +1.6137351972247145 1.9898156855641291 1.7039138444312636 3.0217323912418843 1.3704314123762884 +2.3123443878726815 2.432484368918402 2.3163785909361234 1.4279898205385688 0.8964754444010974 +4.5488462856981915 4.612485754969615 3.204424270586656 4.097204691488338 0.8950457317894618 +1.884191454843962 1.2795463359881984 4.735554992788234 2.745796165803914 2.079599939728341 +3.69617044346601 1.6959052542434434 1.826550907518591 3.134571416231044 2.3899745769417664 +3.5596637639935746 3.2767189908912076 1.978519605552878 4.403641279048557 2.4415718043679226 +3.099364049309935 3.4888756021736596 2.9713788172704514 3.694602753325381 0.8214451360237609 +3.7652812127349717 1.3165970437577643 4.672218184054029 4.179183903427758 2.497826447388261 +2.9663171027452284 1.8746368098951298 2.3152954535686323 4.046307845813375 2.046501835792518 +3.7628446489614706 4.389582950020266 2.975463691563537 3.4856364945056564 0.8081319118039354 +2.7190238488147185 2.915201739828454 1.078855771730073 2.8345751506869745 1.7666454943104475 +4.512853568343625 1.1780645104072547 4.252965402280428 4.347168583437151 3.3361193474263167 +4.06943309666598 3.941252829349096 1.8820480446684758 1.6195153496138381 0.29215337907010286 +2.6113929135661493 4.445721449968945 1.248244062261148 3.309394073912771 2.759184761844177 +3.81707836048388 3.318936745942344 4.477059869276617 4.962387300762295 0.6954766594865238 +4.661830286240821 4.822172099436745 3.922881685550295 2.0086370090298087 1.9209482498615047 +1.3465725310377121 3.950221576597404 4.57683332273043 1.4697426662175017 4.053763769663179 +1.530792151743797 4.191080529619162 4.632168967206507 3.9086932238809204 2.756909756346633 +4.225127197610133 3.5790999225972797 4.7508703092127895 4.5492052868521515 0.6767717645589609 +4.729552806712711 1.023998799092186 4.9637074579417675 2.3639775964025165 4.526557837515326 +2.1002629773993524 2.1365824857560245 4.220998992905219 4.55666089177338 0.3376211146226641 +3.9161819590873668 2.8542244471185687 2.342491008148738 4.37664508144532 2.294675696288265 +3.587511906179684 4.1773281099560045 1.4907529881620718 2.6291600283323984 1.2821285985994049 +2.5574040399083855 4.126043847038975 1.923372928258524 1.8845667965810513 1.569119740609512 +3.632286248573631 4.717872667135964 1.0680397345644255 3.9812557448100665 3.1089106443444985 +4.5888825146301455 3.1475943134042583 3.7015832530991823 1.148085464591627 2.932177115200569 +1.5916950328509438 2.6198237998981107 1.3847510966146315 1.9143954526818012 1.1565344376817035 +2.592042119159326 3.6034661088415665 4.74517715404866 1.80425063307659 3.109988310052246 +1.0342309678339867 2.2423045702561684 1.013628275156059 4.688428031008517 3.868280635435153 +4.637389591560002 2.8177317372385686 1.8053714865876724 4.793748201952548 3.49879266315234 +2.803842567592482 2.6269150532963432 4.780770376612594 1.1080361961094196 3.6769932969685075 +2.4787420180854807 3.8452121826986083 2.878692842388846 3.1112344931708567 1.3861155543915704 +1.2183753907344999 3.3021894451471834 1.1126495169332058 3.362572797106832 3.066665253990901 +1.0132889859015939 1.3082618351240138 3.998058192641328 1.1791221514082317 2.8343269723765663 +2.897991698166094 3.0688275808179903 1.6845924588463848 3.2876158815725747 1.612100801007878 +4.2292702361125105 3.091285631215368 1.5471799003791884 2.8241188963408432 1.7104333253273758 +1.3104899709915356 3.2653579191924798 3.5176274035172046 3.6176229633664123 1.9574237678369304 +4.788169265351742 3.987982382333972 3.6483293995565984 1.3789243145467314 2.406345463066834 +2.2655467447128843 4.242422852900915 1.9670413150668051 2.2315181836096523 1.9944891980451747 +4.628376971167006 1.983057877836008 1.4537409746708034 3.4888037095028177 3.3375430244782596 +2.5153774325931444 2.17495181572786 1.0904525662095437 2.0694874977401034 1.0365321981372104 +4.620375210537667 4.158672496071535 1.0671986360499397 4.205448845738195 3.1720314902525435 +1.4258670986030415 1.7882621346691927 1.2370679546803185 4.1953983044942795 2.9804443663312656 +1.3872720369065301 2.9406462113556016 4.833552291140127 4.958061878406177 1.5583561733976274 +3.2656719421829217 2.979424690976137 3.3735134785782455 1.190772684325165 2.2014301859745653 +2.9119431105187616 2.774531820203038 1.7235663172640052 4.142422647361916 2.422756242043546 +3.1024492548348976 3.892815011244448 1.1778958977509237 1.3749703709447938 0.8145651458842824 +4.233917306610813 4.110923556705412 2.7045436438830923 3.5652113389038775 0.8694114927743846 +2.6318501826303837 2.4610530808759385 2.1132230839456763 2.9017041311100087 0.8067676317906418 +2.241501544031226 3.43269055589842 3.907304653885523 2.256320307777715 2.0358488581145138 +3.839135231318924 1.7201913263873347 3.531417244341467 4.430813747057857 2.3019203594705893 +1.3838109909449798 2.109258904288344 2.9980659161879553 1.751410735961278 1.4423674335481407 +1.3260126723260206 4.53682134621603 2.8962837038115756 2.829318854470154 3.2115069097504114 +3.7591250872242026 2.3968943046112194 1.1878744368122076 2.340418782055819 1.7843853767758255 +3.806232196217024 2.420773962047814 4.321326417940745 4.610908230556101 1.4153982283530175 +4.284670213477057 1.5176931550892392 3.0477425147698294 1.2336633721098615 3.308631919310219 +3.278414780173466 4.350194828251384 2.0573406092180204 4.851809837600264 2.99295351447916 +1.8535089701734524 3.071340919479301 3.337416086681843 1.519678763787545 2.187986204662409 +3.002902659174616 2.7027877368864623 2.3141304258735738 1.1334006781799446 1.2182740675515857 +2.87953728770484 3.0506646996040025 3.666200592388497 4.338191462509739 0.6934380438291585 +1.0996780954943892 2.723082108813016 2.403877267527666 2.527327742492768 1.6280910939588529 +1.787636034913107 1.4396174990547657 4.1644093312558494 3.656331642446408 0.6158407579617701 +4.161747888232155 2.8931070457999435 2.5901160253827693 4.9736636424631815 2.700138668657005 +1.5319963225034199 2.948463073234682 2.8936649482255157 4.371432739646703 2.0469918664442797 +1.3377885789793456 1.6540979799861817 1.9394984448622195 1.0555366108821627 0.9388504466094101 +4.680819387146044 4.3530606381263794 4.609669234807942 4.1063408337736975 0.6006373921482284 +4.665180274079039 2.728890248546821 4.462021746598721 2.853996154877544 2.5169357096687626 +4.017268844204294 1.4992078131131095 1.4333170257154992 4.538627863639146 3.9979478181219497 +3.5663404299697636 2.420098811790659 3.4770819572989002 4.306867783682586 1.4150669118148118 +2.369152937761739 3.9329916529096898 1.441841131958364 4.4802555293204565 3.4172435642038805 +4.046238250433936 4.854136442966176 3.59013114259553 4.440536098861133 1.172982557047616 +4.778488250468921 2.48556578709888 2.7831763109919243 1.1936345944300792 2.7900065038844106 +2.8472679145197137 1.7298297408761787 4.667839561309748 1.184324837514735 3.65835248476858 +2.7669285935337973 3.557350706374497 3.9137782063066906 3.522587322849536 0.8819282418471159 +4.728804617685814 4.303914477990895 3.6072754179783844 4.851244902130983 1.3145309841585513 +4.3669867224182335 1.4708717394808448 3.4122632209512083 1.685160290295094 3.3719974091738814 +3.3425195484473105 2.794903356440004 2.589848256267775 1.0416800099554013 1.6421657689278857 +4.1821379109560155 1.5311356163301468 1.9089752553904917 2.6568494822098585 2.754474364602489 +1.9197333121720694 4.988818617894482 1.6134509210229933 2.2568697530635697 3.1358049057978232 +1.512505475144021 2.5819838831683994 4.65581411350546 1.624035483721205 3.2148819146660506 +2.013989361346957 4.7816234120070185 4.08169464681732 4.10365989900221 2.7677212126000996 +1.8166117351914894 2.946834015236924 3.342576661519441 2.229684800418742 1.5861685587652021 +3.999563713715757 1.561165278305455 2.962901364726519 3.645974294142237 2.5322668810202407 +2.3393106075566656 1.420894964475416 3.2452192167582194 4.132548732228951 1.277043837337571 +2.116703590632049 4.491778912324891 1.5319058317597056 1.1431207385898636 2.406685819209778 +2.503209426978904 1.9970158504447313 4.889436923886954 4.657961371092072 0.5566083618363576 +4.042179750006376 2.433613039838864 4.378839803560361 4.828866292538866 1.6703325123583785 +3.7574439699458098 1.4799196576598552 1.8046664015044627 2.7196179636318667 2.45443544508569 +1.231747682956894 2.4368721934443554 3.8476483632600478 4.329678503440082 1.297951517515052 +1.4214543964595627 4.115895485198671 4.602652271198977 2.245239265768059 3.580140899302767 +4.510814970177442 2.162868359017643 4.005714993039826 3.1336620968776123 2.504661562479388 +4.863616748119108 2.256974958261804 4.77522409313004 4.886126052259902 2.6089999358316076 +4.778534369036381 3.6447996604230246 2.8044097072825194 1.6148437713319854 1.6432959275457604 +4.421799475663692 2.465561019908078 3.2825887674981704 1.613968333494375 2.571218203216546 +4.5968382649278405 2.8252809276186013 4.167110949183305 2.5024809134147405 2.4309275092764606 +2.9953650881377123 1.2575198000657277 4.964865389400909 3.0932937216694345 2.5539942742162074 +1.2028846495497718 1.4895923925456631 2.6753952340532354 4.6780395209039565 2.0230633874275 +1.7601642372300073 3.8201942324784426 1.7540727339618445 4.692009833067601 3.588202611283986 +4.800828610770983 4.2827428252602235 4.651372636711561 1.4945771490323114 3.1990265132037234 +2.7453337399743636 3.3854373787541303 4.483752851715212 3.0703100906435434 1.5516291783815488 +1.020370913459618 1.4519674780302618 1.5072090550099935 4.059203197563392 2.588232929659933 +3.168519822940825 1.7670390492773458 3.555417126568002 2.002499050210144 2.0918180874128076 +2.420271495749889 4.58523283381348 1.746658525933368 2.6852889297554774 2.3596789252543133 +2.5439370524284812 2.7401553198703867 1.936957127692502 4.228858237488623 2.300285266127355 +2.6728855225922725 2.6158997372113104 3.3592620824461212 4.628325901178227 1.270342613530067 +3.6188315277296095 2.218620537236037 3.606028335017879 1.2765941609539637 2.7178768164131033 +4.661460534687961 4.418957007826994 4.30036445159403 4.602811809482262 0.38766269466326025 +1.365144151810616 2.4560439129960963 3.9777494671191866 2.134573994950199 2.1418118755296667 +4.516598052952853 2.978659689041506 1.797253647054526 3.012254852888344 1.959969984813018 +1.1280721152665705 4.626391435722981 3.8321232257423854 3.100536878373651 3.573997293162787 +2.6204934448207244 4.180700318558264 1.86417138744057 4.015824129470628 2.657791378408647 +2.7834127538590843 1.2579570123866453 4.032267163464075 2.6429917337523587 2.06327444582438 +4.374844026614503 4.06707946236337 3.9816069465630872 4.398267820258741 0.5180012651311914 +2.1526222736017853 2.5581819450516616 4.699391136600688 2.1127591916384 2.6182328899098954 +4.0748418812617615 3.7159693003529712 4.340138388936154 1.2294203609935574 3.131350535902235 +4.162797370317532 1.2730283561284859 1.50009783503512 1.915672399544691 2.919497760580482 +3.903079441098132 4.235496228832664 3.4559322989504073 1.605424432290366 1.880127731123192 +4.527727746012911 1.8710050880445759 2.4144151935032365 1.2794141585488656 2.889014127814163 +1.2607618322022285 2.738432420114076 3.709871156152129 1.1729932386972708 2.9358576148120403 +2.9437431671203647 1.4229320012116093 4.68352980631559 3.4080255076053816 1.9848873565975902 +2.9894119481593693 2.2213978783941535 3.606979399185935 2.8378213754567847 1.0869451121488434 +2.631723829467928 4.6677859754525945 2.7536124851276416 4.336674110318979 2.579076030570856 +3.7235305902350184 4.253791080596297 1.5171296362103295 1.826100952865096 0.6137095910555447 +4.3018800201195475 4.834337077601846 4.236409813533369 2.6651489288383616 1.659027210697656 +4.34910854712307 4.120866737914835 2.1918558669250623 2.684996990738557 0.5433990168068806 +4.26491845940477 3.957263472197337 2.4923731134056175 1.9063085988051238 0.6619087598963456 +3.947312948380211 3.1623392339693477 1.2958189357375192 1.9690188704446072 1.034109222667323 +3.6228338544885395 2.1894934801168846 2.921052805168974 3.2445390814460033 1.469390349683655 +2.4474193837474547 2.7383943990571176 2.433919600839976 1.2759641672901973 1.1939544570970513 +4.869612545733846 2.2890485553538715 3.000228883831197 2.9694685600380155 2.5807473154041403 +4.947875768582629 1.256194446598292 4.9241518876472306 2.7758968791048186 4.271242274188574 +3.8322822174805578 3.353888031719872 2.6263210274570437 4.162348603044178 1.6088013270549346 +4.846368623455261 1.7087003067971027 3.847876889900275 1.36722466375464 3.9998247377156084 +4.280478809661457 4.716808151936392 1.8698833256388818 3.1251926564550447 1.3289788602397705 +4.243509392755573 4.320819008889746 1.4377746171797834 2.172644158269203 0.7389249076650396 +1.989577359862217 1.9660236075441264 3.964412206558044 3.7002290595348035 0.2652310585496445 +1.3599509568706476 4.486763763879977 4.2244692732248605 4.590988761795211 3.1482209048253638 +3.715668052795773 2.307954435731178 2.283604535685323 3.4608609502632524 1.8350995322690176 +3.0773132410244437 4.9323503120418675 1.8843988892725552 4.3575816133121865 3.0915684241719434 +2.187313266129491 4.8275849762352525 4.106625761274948 2.054623189255022 3.3439122684007714 +1.5267298914566543 2.2705649878579925 3.4688714088626478 3.8279675741960184 0.8259786356774125 +2.566377873296744 2.6859132615094565 4.886620067493688 4.2835950617129335 0.6147583806928073 +4.2090343616775865 1.5191345978152344 2.091259406845632 3.032368484897099 2.8497801733498007 +1.7323850097571962 2.7944581546255622 3.309804388826838 2.0909315438366884 1.6166788108047196 +1.222217479074688 4.8091295623398285 2.921358862913472 4.586403265248602 3.9545304594630477 +3.681202787532327 4.168733097354501 3.9284966607901874 2.756478721727993 1.2693745910797563 +2.8378679662924986 3.5530287907891447 1.406194684837212 1.5963703179798716 0.7400147135942191 +3.8615834829603206 2.5949808847377027 3.7812867395973724 3.3348057842712016 1.3429919528028664 +4.941943564117514 3.120970805563793 4.552688711013165 2.4325375173483526 2.7948135664822216 +4.004728331597001 1.3972012143703165 2.6567433421278897 4.562929152072083 3.229975543112533 +2.574806183028729 2.814341906582694 1.9050065295676908 1.1187619308953334 0.8219233126028108 +1.7528187216763556 3.860617970046954 4.603505911554723 3.5630436639342804 2.3506125499867143 +2.325741278916896 2.3191933699602507 2.467861184329511 4.507787672602689 2.039936997230612 +1.0961486952931527 4.137094555992817 3.2042273331631868 3.109662588794117 3.0424158523423475 +1.0188633024998928 1.0700005066014318 3.717457970902259 4.475400023936986 0.7596651692698696 +4.627111259620358 3.6597707429209207 1.5520682922973488 4.31599730812664 2.928318848723856 +4.425777946749561 2.4920731215967993 1.2044682605855157 1.4638229843019896 1.9510200469326602 +4.4396637407628905 2.640094368798945 3.2852374196840435 2.4512522361336235 1.9834266336046658 +3.8930954292855664 1.344726892940654 1.0056249609652186 1.4263391717320624 2.582863264707189 +2.429112075741351 3.9969735753011433 3.32568312756883 1.3250116708124526 2.5418253204501613 +2.837728979862205 3.4139355367084563 4.808665771584254 4.394127376116032 0.7098282027857025 +2.8303834903912426 1.6406467227115225 3.904189864713383 2.566605016865061 1.7901415590847576 +4.817115548549278 3.3331008381628813 2.6113293001656754 2.234478468072384 1.5311160015794452 +3.7298198214497273 2.1097094617431695 1.1410137132155294 4.9045312596607005 4.097416490915854 +4.571377376561204 3.030635156686091 3.754945644276284 3.6267959483137844 1.5460623961150375 +2.6989228343214573 3.675265269792112 3.8298950339807036 4.03248150726143 0.997138822058941 +4.749770660500483 1.7716851783745042 2.842312455134903 2.367687603199749 3.015669393173593 +3.541645366363897 1.1469578311850466 1.7098760855043378 2.0232677613493584 2.4151071888489564 +1.2677471996117076 4.19904315542944 4.999268062725891 1.652445695446012 4.449012917346756 +3.225097451558152 4.322513051330898 4.050044553483755 3.9098093579922875 1.1063394183880029 +2.3448228719082267 3.5592997158818886 2.2703823771905114 2.7886373355709915 1.3204325830704797 +4.570906309039058 3.564434774112144 4.899546266741107 2.664166857793461 2.451510973372395 +4.918871459473287 3.3731889839419686 4.466396720057986 1.1247660411962612 3.6817971031922028 +3.510601240394202 4.426319991810006 2.7218452978102214 2.7643518667702334 0.9167047725954475 +4.627403127467336 4.383223737871269 2.366899270384499 4.837537723919537 2.482675561242248 +4.698101713989622 3.897748877807481 1.077869113717004 1.8595090618441712 1.1187160814491934 +2.038034476779688 1.4108883459123933 4.666877590905427 3.2036431248574395 1.5919696517498558 +3.565500028820087 4.237829578729216 3.829483653444524 2.4736742621086405 1.5133559162720418 +1.7255898366595845 3.1647119565921376 3.890478911919985 3.8969669887439453 1.4391367451427397 +2.3127947447995605 4.690413049977002 2.366946225202249 3.7935359502674375 2.772765235063441 +2.6828454158388277 2.3522190813001007 3.4707649574169874 3.1766947536690924 0.44248283336514055 +1.5952789303371242 3.1025127250482147 2.876429525829596 2.79669904464274 1.5093411349159875 +3.453639775925781 4.916813866005277 2.3879716114416056 2.6689998568764683 1.4899178811639782 +4.119943302009839 3.721599443320637 4.721257248058503 1.2492178853267402 3.4948154695368667 +3.792374636328649 1.6534755181201986 4.232142480661553 3.580264597227326 2.236030906043916 +1.555673575370498 4.829447390157403 2.6759405384374344 1.4623726133502655 3.491467041113919 +3.3763310465016008 1.017025909683368 3.7369982583706305 3.2602491274998173 2.4069919946694824 +3.9986354622678038 1.5045204809330937 4.359587976924457 2.983419057219198 2.8485874456791707 +3.284884895583764 4.715922384217043 2.4754062638132805 4.763622205899966 2.698851698684739 +1.1102792764761267 2.058281294309707 2.3746363733525957 2.9881269411814464 1.1291937400780723 +2.647023509939684 4.129847206484946 4.84570333477469 2.6338999295220846 2.6628631993632674 +2.796169732080243 2.4882047331023527 4.774958809977607 3.700413646232722 1.1178057745077954 +3.621144685798149 1.5922410687359672 3.506431533060581 3.8091244533884856 2.051358791470824 +4.233559970241563 1.8051490650031536 2.8396048658200654 2.305766950309875 2.4863954723086787 +3.465874408740896 1.6518011792015481 3.530765957085381 4.66297541994331 2.1384012602681377 +4.82757028882898 3.6339051090257386 2.0719590800750507 2.606886139842121 1.3080456875605482 +2.766209104072653 3.63406857890148 3.5475472722775794 2.249600529470416 1.5613602451753061 +4.258826217562749 4.699054599642503 4.105226845402904 4.936600556257346 0.9407354970917401 +3.5688329160203214 4.147911250829811 3.3337159347135605 3.6975175232436985 0.6838737556470368 +3.4389784355291018 4.535098797558479 1.2513723713184817 3.4607114238108565 2.4663047048009537 +2.8681917308935154 1.3161510996663153 2.314216880623294 3.0713336498217507 1.7268630296527965 +2.1287268463078344 4.187299646695105 3.6633516828474146 3.8761119445193724 2.069538330990999 +1.7521679027521704 4.640494934201775 4.394384600178486 3.9576140801325725 2.9211644130010317 +3.536623485365084 1.1207117244685523 3.4883370241043785 4.603797219391124 2.6609924997465373 +1.9630685492562292 1.6509983299979836 4.0308643216532944 4.787174835676949 0.8181646627486514 +3.032529624926478 1.115756624824959 1.5395573407102638 3.26640676260317 2.5799278400393373 +3.4535730452752222 1.7352072081124463 3.9119413300843706 2.9482287963542406 1.9701581149736878 +2.406950317982073 1.135394508459521 4.422754362721006 1.0168889491073192 3.6354880542205725 +4.1403418638660145 1.2836404933941736 1.5373763022942186 1.803492468758031 2.8690696286617183 +3.673725265333812 2.6141668112446372 1.2692069655607217 4.844274624749319 3.7287763254730204 +3.0288173420025952 4.048346100581698 3.671802338090573 1.6006604190021059 2.308477363669678 +2.3527822907715357 1.8419521463601884 4.226526907619409 2.755206781740509 1.5574756335993252 +3.111210692520335 4.484372959730827 4.332681845341009 1.629809253638284 3.031681853207632 +3.224040130242884 2.614198552689471 3.0366850136405334 2.7452875557350582 0.6758840345699908 +3.11133770546357 4.295860947794083 4.219940094614655 2.2772773449711416 2.27530962079311 +3.4252262621678584 4.385024195689384 3.2459382690118592 4.300613327004951 1.4260264903377229 +1.0865103004382823 3.478648827364397 2.1538276668294873 2.4515581148987877 2.4105953936137414 +1.9461662288225914 3.212182273073892 1.9297694319501657 3.637021762626789 2.1254428114871673 +3.346628946854389 3.03641412174299 2.3859061396626293 4.97127075742308 2.603909261953369 +1.636125403054511 1.7860834619204788 2.381704125733179 1.699215443790672 0.6987690751589324 +4.531693611527787 3.6955064142600684 3.8214268331311207 2.9762060241808292 1.1889521625183361 +2.7319816483291364 1.888532314589686 2.562610515626349 2.592106252862908 0.8439649146147314 +1.0057969776636577 3.0961222463952285 2.5571862816273074 3.841017663544832 2.4530965627740735 +3.143536669992689 4.068051706457814 1.5437249936836182 2.5688179391564905 1.3804142854622883 +4.403961448215533 3.6430406070292807 2.648682386889248 2.223361365340615 0.8717215713304144 +3.304570698785217 2.967484008409494 2.7926836973022686 2.705250642091257 0.34824126115667337 +2.7726204931711877 1.1432946950251717 4.430417630646979 2.3499605024603736 2.642537496181769 +4.380151211143465 1.2841414440010737 4.787178497940355 2.849429549565152 3.6524166609479662 +4.822602082555038 2.717718250246724 3.379267537564418 4.098288998175125 2.224303892981283 +1.7060512424440484 2.0186491680846608 2.5326921313729556 1.4125121061161505 1.1629792569513655 +3.5818924489454496 2.6275014424846437 4.7803851428518405 1.576917456941508 3.342613858626953 +3.984854174459438 1.1178315037549158 1.5623926554116467 1.2793044646005436 2.8809647547497685 +1.449790992021038 3.187210003179138 2.8439213395921294 3.9353552746972436 2.0517925955204697 +1.3771275104197063 3.2338680434369556 3.13248868760103 4.577951673891393 2.353050924158811 +4.398248099534742 3.387004790492634 3.151680079141205 1.6404327191349855 1.8183733426357196 +4.946795414120163 1.0768808369620468 3.88460024304977 4.0970859858512405 3.8757436738508355 +4.473420564806272 1.989847355277775 1.1442710400174394 3.789775547791246 3.628612680865679 +4.804235043174586 4.566639164509402 4.2400065102489615 4.8381464400307514 0.6436017224635476 +3.895257094443642 4.468308007091134 4.267823154623323 2.2862933597695894 2.0627282119511534 +3.4580106712989407 2.418495143057354 1.040743269831086 1.5995903775255025 1.1802129567301824 +2.483072285999278 4.063446442661857 1.8704246248981522 1.030600791455746 1.7896610143445761 +1.0503662157259623 2.4620691883976207 2.7550121571700417 1.7871226987210194 1.7116411092360275 +3.1260383087828094 1.3152448083606587 2.2177058812044623 2.659903045006619 1.864004139707253 +1.6679414172309226 3.476040328292131 4.8155168747587425 4.94568121312458 1.8127780965035252 +1.9018944457715863 3.0067139564216157 2.9151432613817496 2.767623033643709 1.1146247658763255 +2.310918665231498 2.5585732833448533 3.234828813691106 1.431587368178676 1.820168267135385 +1.4376603678555608 2.8153167076214185 4.603446410488104 1.6480238129538871 3.2607452707184836 +3.9835727777965135 4.386520848172001 3.3564836326697107 4.614139334907357 1.320630536066085 +4.274307084821238 2.1898690408836994 3.0342027676590706 4.891916290264067 2.792128487567078 +2.132709849650257 1.4446896582624467 4.443322837677814 2.9266263682189 1.6654548820747006 +3.935806977121772 1.4683204635408145 4.37719295381895 4.370021453336908 2.4674969351800766 +3.7861112548832323 2.8920025374698306 1.222625311678998 4.297974578555227 3.202686920670017 +1.2409898848331888 2.017271758761579 1.0187450580184452 2.0940265531678453 1.3262141009657913 +4.150121287898847 1.6700688389953156 1.9867870055776597 2.8927684151364232 2.6403527157897844 +3.1043032282443703 4.320133444380874 1.8752582463191212 2.4598474441467078 1.3490691771318615 +3.1682834468440713 1.7177007811062919 4.687169951841735 1.2482900430782067 3.7323029213926855 +2.973100362183859 2.4530984707227343 3.799772559069613 4.6902123606445825 1.0311571205941497 +1.720139646956056 2.734230331366211 3.2971975454967786 2.612485811418974 1.2236053591707134 +1.433053881232797 4.9401729836360975 3.1134778778152175 4.756783778737194 3.873027069676524 +1.886028396508335 3.5619040274983407 4.841295184363862 4.14114401244737 1.816251853153132 +3.799369869699634 2.529485874431646 2.6150571859758167 2.9743112233095585 1.3197230106269957 +1.5363367195450448 2.4678119781361585 1.2745748086231883 3.5462300036414147 2.455211494438041 +4.744850519402659 3.488729492941937 2.9889514881764687 3.9642855464745943 1.590319640321728 +3.7572823237587705 2.9528740099039705 2.306504565815923 2.967677974516172 1.041260299719061 +3.6051917692747053 1.1916264819569165 2.9518546405031056 3.680027851406471 2.521018369870144 +4.231073573007485 2.2530517035612356 1.1374146751994418 2.6701561343193876 2.502372253784951 +3.6021099652095607 3.1193037201082685 1.0230068435267667 3.0207546358229194 2.0552610812091396 +1.2415365149497415 4.774390049228144 1.5812757438109704 4.9052382155331475 4.850750520082516 +3.2273561505267234 3.6652959053490135 3.792209916104149 4.735128243658737 1.0396567709067013 +1.5284181695213062 1.9411624276847443 3.8124245912964043 2.622598293196916 1.2593825639161513 +3.8013353649556905 4.753355785114267 4.703402892871422 3.8466628763865116 1.2807600619341144 +3.6010854751444414 2.7661173559449406 4.01238921388334 2.4558320142944523 1.7663640835545633 +4.576566059403424 2.773279215717605 2.572742323561257 3.1558573284395566 1.8952220317220307 +1.3833226164953571 4.091626344147977 1.9538652307601883 4.214296111730437 3.527670172913139 +3.3228357864201814 1.7660408586967358 4.110801782454963 3.4522844045575423 1.690341854175759 +1.4737226460870017 4.058622797107899 2.111859607483522 2.905692636348324 2.7040487548238707 +3.927012888752892 4.6904933366253125 3.4416600737256093 2.700019069605417 1.064393617641462 +1.9498777059101746 4.602957363424245 1.0517472748885295 1.869637995390455 2.776288331531532 +2.050397641555658 3.8816538188382363 1.4285217651104585 1.8717867440255618 1.8841398643328495 +4.960888566259747 3.476651662740246 2.661194713902879 4.0797031738885146 2.0530770654848727 +1.6769386179470769 2.291228915844542 4.359654555915481 1.357655453162062 3.0642048206709824 +1.783779518892715 2.7579263029490395 2.674320653512757 3.8348380325343694 1.5151773968411988 +3.394796833843736 4.5577333953753545 2.4819006549214997 4.3015333910340825 2.159510301082064 +2.370114117336977 4.538546975487524 2.6879737711528042 4.697758644459718 2.9565750958296726 +4.105459298118923 2.0605633530361738 3.176374397152252 2.860531288384025 2.0691438556978703 +4.06211228122233 4.927002449061441 1.6524938754632084 4.843263675662 3.3059109062836827 +1.3645445261970104 2.5033448915678154 2.693093582114835 2.1167837196830797 1.2763225805825062 +4.291585226925987 2.6189453125154687 1.478425688596778 1.4796653755994549 1.672640373811146 +2.4769889626758888 3.4325172803652055 4.376074766119261 1.7899471189757583 2.757007539566435 +1.2823602795572402 3.203398068907951 2.59607239982706 3.2332588502694537 2.023954732878392 +3.6847064790263095 1.4283325767186117 4.951879792411525 4.458266978207175 2.3097352223495244 +1.0889393536582577 4.002253096552618 3.0651641362921778 1.4701240924684065 3.321377681917322 +1.921475318639645 4.056324269078336 2.3786389128871614 1.7137652890925605 2.235986801572617 +1.5124658326726133 1.0207660694434324 2.5374658032226747 4.087229352244682 1.625895357960321 +1.2573110033112251 4.160880461418476 3.737152612078765 2.4321657347383567 3.183348291985013 +4.945509561752187 1.0263826195838015 1.5785094518627525 4.1690962972729295 4.6979459546106295 +1.2866769754613667 1.6967154936172006 4.043931241647254 1.0872377144094583 2.9849904858108527 +1.853298344914828 4.788171677856793 1.2398300415695864 2.8445491887947663 3.3449372224131486 +3.0165685692478275 4.271320777640186 1.985397766338754 4.809639702593639 3.090428064033564 +2.2483802841517715 3.4788023579277403 3.6061134653049383 4.116779649707363 1.3321855844916228 +3.962261396082008 4.988591812638662 1.8974088592566893 2.674690846088362 1.2874476342757972 +1.3542964912796749 2.0434123821180323 4.580868045358201 1.1392592781819184 3.509921881938485 +3.301120177210002 4.42918986431903 4.2966477350421926 3.3072212938545142 1.5005018832029415 +3.3140399215791816 3.2086699567422206 3.848118863478864 2.500643780983325 1.3515886679889344 +2.6405221065413467 4.81949706380356 4.275917201872381 3.6968841876881497 2.2545977680932667 +2.429934268787971 4.379584726018308 2.5520250510748332 3.1679224571877773 2.0446189180957695 +4.127121034067384 2.9537964035953017 1.2264028500909263 2.7145788849597716 1.8950880188609731 +1.4515045892298652 4.440067195040058 1.577294445561424 4.628792332012622 4.271199573874199 +3.302444506898916 4.001801129014184 2.6776214870419657 2.174897621683973 0.8612960987354804 +1.9576516549651632 4.714706318641113 3.696265620731372 4.305216308459745 2.8235033838446455 +3.7675135960758093 3.434595919147292 2.2237987707702165 4.580932599155251 2.380528106225291 +4.200085707655748 3.6888030631025366 4.951677557956224 4.173563724736251 0.9310591173870786 +2.1180332583626456 4.918341216319783 4.357919197947729 3.5886182119629453 2.9040572767139485 +3.2736487990715917 1.887077781829889 2.2626149755618106 1.2463556859396063 1.7191166713164403 +1.501734356208448 3.1215685401492506 1.5329284478629788 2.2525381237808313 1.7724843776851076 +4.613219761250544 4.480806392620118 3.492389090787005 4.549737886700158 1.065607702867735 +1.7310978534066188 2.283876213243685 2.9580374322251366 4.680079706976466 1.8085888175964402 +4.845512824348976 4.6740183434020075 3.788825289356899 2.652075385365256 1.1496132833350003 +2.999363464348414 4.459477892242084 1.2065535580952322 4.849267475319886 3.9244488562453506 +2.1039007647839076 3.5560579458460744 4.726709261307681 3.9970870314867875 1.6251489398695835 +3.4001874271713923 4.49203117781401 1.459427328430325 2.7621457407104377 1.6997641123141045 +2.2466984474595177 2.5665792373381295 3.4723973367128975 3.5923673054523935 0.3416379854944708 +2.9084056614343843 1.6764672740424627 3.952527007747206 2.7022321883532467 1.7552519265715623 +4.196031617285886 2.5752462077289375 2.4041754166151184 1.366172192875263 1.9246807621855155 +2.4103880347699382 2.74860792395067 3.6366653129089546 1.6558890226838607 2.0094445514508013 +2.32179649878503 4.734077111197338 2.0744559821524167 2.407420053381095 2.435151499547713 +4.66237625436796 1.8675308413668228 4.303639423733298 1.7611805438724253 3.7782612453821796 +1.1381141504260608 1.130338999213972 3.596483442882064 1.9989705074608874 1.5975318562752843 +4.580563551938468 1.6101709050633315 2.110095451847431 2.928063463797747 3.080958316041266 +2.6729164666237955 1.4584177753267613 2.612017367014973 4.1899620015137895 1.9912097681323815 +3.7566690936805096 3.048352115707941 2.745140961495802 4.6425420161063595 2.0253008920457845 +2.495698919579485 4.624724670836422 2.5322794782435154 3.8314297367296204 2.4941014501498686 +4.529555393330463 3.0617971078717225 1.1114391026224597 4.515376555490134 3.706899589625817 +2.132230797093346 4.967334162976524 1.7369703850842533 4.8319119705774 4.197198412376636 +4.8014887576805645 3.5547337258190157 3.6400924092930014 4.975494986610698 1.8269368223829852 +4.793270930107938 2.795641111059131 2.440168981718987 3.3523344537306006 2.1960352324776435 +4.218453087842509 3.661725052737177 1.3083711540121707 4.3877693220410325 3.12931928417855 +3.256357566341201 2.0766801306199176 4.189604004374097 4.63248518206003 1.2600724542257171 +4.3117658479776 4.9401896467132005 4.363139804986526 1.9441720433979444 2.499264192201808 +2.385597320533035 4.324596872542912 1.5022695953317107 2.054426589513348 2.016084474648373 +1.281751621478846 1.28716672123283 1.4457965820026253 2.7936029364281874 1.347817232541293 +1.9220968353209682 2.7233320114240627 2.0342145998414867 4.7933986571337694 2.873164539221668 +1.5728099136150417 2.6999868498624213 4.179792508086452 2.4306938469955384 2.0808349218133704 +3.105139891019987 2.5323349731568072 3.0786712234696685 3.479301912086906 0.6990067400176955 +2.3079976319331568 4.083062211797036 3.1195658299515148 1.586146706563098 2.34568294333668 +3.775008798879238 3.954566851498351 2.513059805660417 1.6819273039092129 0.8503071972690717 +2.575067742505267 3.486603690435779 2.273533567875711 1.3914631293109658 1.2684423687970134 +3.8610772846928922 4.765661047153514 4.705735330466069 2.2856075673220944 2.583658292663268 +3.293657483786924 1.1212063775871042 4.915979366089569 1.2195292350275664 4.28757360056444 +2.744913654857894 3.4924815995702634 2.111936249136599 1.0178231209851747 1.325119379208821 +4.942006777613727 2.5342537628262694 3.083873051273387 4.212305313559378 2.659066368255214 +3.2298749970365286 1.6549461521227702 2.4120696786375615 2.950451028604489 1.664408406772087 +4.697178532535707 4.5732854452741645 1.1659936271809048 2.5409718084438873 1.3805486213895022 +1.0825447067271745 4.082923215543186 1.0132300234799918 2.813724542270918 3.4991501408715173 +2.106081291061153 4.263129971791278 1.8391425928236131 4.3881979589450015 3.339242769040882 +3.0391268196138412 1.5530627255342653 1.884054356434825 4.171804535959052 2.7280372753365527 +2.964411919360309 2.947547921204654 2.389893592259777 2.203649103347235 0.18700642792184408 +2.356660688405622 1.0980959744763839 3.4879559077951425 3.7582788057231937 1.2872682736290848 +3.0615952555699875 2.713406883338394 4.402838650163867 2.2562373797215516 2.174656790581412 +4.703162617457624 1.6672997313956226 2.34376630972383 3.588809378307588 3.281249107519447 +3.9149260667822703 2.623444758429702 4.881976535872802 1.2575799393600784 3.847619349498736 +1.0388226435554908 4.154914647127875 4.8528829341199895 4.955689992704596 3.1177874632538014 +2.2851142861546276 4.074744552243826 2.259736542318643 2.562406025392565 1.8150441606987773 +1.4372335251566803 4.362031409052179 3.8651314303168087 3.9602873824254354 2.9263453857775032 +2.894329874305588 1.0801991421128978 1.8901995776491858 1.369976881690703 1.8872471928383674 +3.4184827669182396 1.423647263817415 3.4409203134305035 4.447495865959985 2.2344044010387982 +4.23939398128312 3.7243797151720757 3.1237937566100293 3.0657775006803263 0.5182717243396544 +3.184237618427166 1.6274396301258949 1.6478063358253707 4.961316430686109 3.6610065726686294 +2.4005154228699594 3.1360256625791076 4.772476650430967 1.8950247597099916 2.96996712037873 +4.213811327444791 1.3365567122534174 4.250034992078462 1.6406075803286435 3.8842895795539523 +3.7902974950620134 2.413944612811944 4.395575936978155 4.969545139509263 1.491237037473342 +4.466122521872771 3.761541986757116 2.972910724864276 3.3319753370292076 0.790797778305564 +3.5181191727029435 4.342364678805415 1.215145883198535 2.361782896728113 1.4121462725674525 +2.67294508632796 1.1128892329390228 3.6061945048197925 2.0322876722186307 2.2160679103767795 +3.6111117040248444 4.396144672012635 2.382497855196858 1.374548872781042 1.2775906668337864 +3.7523365139012013 3.1527382405422206 3.815789000504024 3.4626585441864073 0.695858612502683 +2.7072674251659494 4.463277567417369 1.8225426894600982 3.3895104125351883 2.353499408295864 +4.496985162533923 4.212789389086668 1.4062185605557143 1.1093398215318375 0.4109795899186366 +4.037345910679647 4.029038640930708 4.788045661568173 3.534639837221251 1.253433353328955 +3.530997581466933 4.657889725243946 2.1309335952777833 1.7000297138255838 1.206467595402762 +2.672478120965616 3.011924031891081 1.6717297754696032 3.886117358584586 2.2402535335755713 +3.7132659571523385 2.5589763926423466 4.022466653690666 3.7045567808236397 1.1972681763092994 +4.632206266196629 4.332728527675195 2.656728392159679 3.452160377912753 0.8499405625271638 +4.993980126808275 4.3108620297393685 1.9937851916291285 2.87839489626579 1.1176692999632787 +2.1002341151476 2.7668237405310228 4.439274022082291 2.01424847980598 2.5149732820372717 +1.7121914357938777 3.8281831743417043 2.820317780129766 3.509140147613339 2.2252858898461403 +1.9568019327721973 3.842660890201516 1.8217243281729045 1.1986213241380108 1.9861322616970163 +4.278219815950926 2.8070466428934164 3.36105800936593 3.5113714494943 1.478832186357643 +1.904861878636361 1.0715729365164033 4.340475489450019 2.91970876586488 1.647103076284617 +2.4018964810483756 2.9525132954532993 4.56220802590394 1.0124682391425233 3.592190338779728 +4.053080151901213 1.7255563704887873 2.502487576274323 4.60801283492742 3.1385671201786636 +1.5262362053256777 4.378110710476543 1.9827343146263936 4.607350040543049 3.8757961636105818 +4.80183691531175 4.484813960774259 1.7416074100337768 3.0062641467144946 1.3037868749667647 +1.1196364618280557 1.0134301190349841 4.29307689731394 2.849809774984384 1.4471695732176366 +2.444338348554571 4.231870652931001 1.9008345427919058 1.2943472099283593 1.8876171815580738 +4.103185805583095 2.873648748844489 1.9145817100643936 4.909034103191367 3.2370521325115065 +3.6730196119187455 1.1433211080451997 3.748524012530076 2.815321624343683 2.69633848353964 +2.8046400643277667 3.271944219806567 3.5257134471255696 4.520687415994059 1.09924809413238 +4.468184334368075 2.4894343126288594 3.4282677616070347 2.5282591851679936 2.1738139493058686 +3.266134691711483 2.9197163976447067 3.2758539102160538 2.1424595662734047 1.1851533121690727 +2.334130066836859 4.333404039911672 4.537915919020559 2.9057700419578323 2.5808906570072288 +1.9250975111213844 1.594176025673332 4.629369263340018 1.8825482633152353 2.7666829662446495 +3.3524184988466432 1.264384173522628 4.6638880826090015 4.874980504495571 2.098677525087943 +2.699355237587623 4.134446561304491 3.407738418845878 1.5664197107576698 2.3345110177857507 +2.2050377556033136 2.7392647873113383 1.969438488435483 1.8107992028430928 0.5572835403462323 +3.9711614306646976 4.082391516705005 4.132647677726025 4.594707664762758 0.47525946982771455 +3.867484268478152 1.2107548229953302 1.213585150270113 4.428000667785389 4.170213239840195 +2.844960424133599 4.814106363757428 1.530232178699122 4.957449631474291 3.952639017181272 +3.8209844645775144 1.6291802560983504 1.544970435157297 2.953975771863797 2.6056288544561315 +2.3309457578610377 1.2733102540248207 1.0675647281910767 2.922274957527631 2.1350744468941927 +4.685911475652473 2.7273295598322798 2.4559969249375513 2.599708904741405 1.9638473092674595 +4.230031826696267 3.6159021022827242 4.421065445414675 1.181999660053437 3.296771523825403 +1.5528387076020826 3.934915441850161 1.7897296459160943 1.4082524327089598 2.4124291558597677 +2.4931055701928386 1.1189183470772042 4.056736910463743 2.7064665636393643 1.9265566520835788 +3.7067871363586233 1.7962091602018009 3.0122752013730016 3.9885380282228513 2.145552914766811 +2.804874689904916 1.5415415080456425 4.92834168052366 1.3700971586823059 3.7758594790591298 +1.4402106592514077 1.7393473708804725 1.2515984213486666 4.9246476864872335 3.685210126489291 +3.9893288066787824 2.517703376056877 2.422593246463024 3.713095091500591 1.957313572246019 +3.9667323690220155 1.3460060227974626 4.677035821958425 4.636310077577637 2.621042763491444 +2.117564065679108 1.5664033109707747 4.087873689860062 2.745556728249585 1.4510661607789774 +2.781834457671747 4.76386322259876 3.485332706315305 1.559717350749358 2.763409582850408 +4.275709877273238 2.3018065853121015 4.064390766038153 4.997263270446788 2.183241927844152 +4.317345333945836 2.8437884092205916 1.2949280534639267 3.39439303833424 2.5649801623213824 +3.2841297654879797 2.0822195502433307 4.328889428447934 4.032854552448247 1.2378306884697878 +1.464717535344012 2.6326472323629866 1.8507326997888351 1.0105442474266857 1.4387412598037 +2.2020836514788757 4.070294182586335 1.162597421296924 2.068774434162121 2.076383241886263 +3.7024371208970708 2.0175942635447113 3.3573290572545686 3.5867423247421475 1.7003899262435633 +2.667361896487334 3.547468308074129 1.099355600982943 2.8488395624851024 1.9583874558599161 +3.188489429413545 4.051418177413567 1.1754843398947656 2.898002291626355 1.926580939945809 +3.2587922071437267 4.270916121678722 1.327858918760736 4.278833220734905 3.1197186009775906 +4.613952580438694 2.991321377558023 3.50832863027433 1.9084979109285505 2.2786817134309056 +3.0166296917401767 3.223958614024401 1.0382853712718183 1.616448043910593 0.6142127954124279 +4.4642429331925015 3.994051162962351 3.8886844410093206 4.3972217812809475 0.6925969442920631 +1.5354959274151958 4.364724684084525 3.454287906901255 1.6036159656068572 3.380757606197027 +1.0703801946919174 1.146161762187138 4.783536433035697 1.3820149958294143 3.4023654909115697 +4.352849521304833 2.3552532095104 2.1755512288562473 4.559463678974888 3.1102137538640946 +2.7452801753315272 4.700198467799728 2.386479939425869 4.257991991623147 2.7063375420938263 +2.9542868074468585 2.516569124368364 3.581538438909182 3.3263121897757872 0.5066924198429525 +2.5525476646833947 3.7917393803485115 2.919240127252571 1.2201451649628843 2.1029787918691065 +3.7646462848909863 2.7845713844581934 3.619321548385286 3.1806578084147987 1.073765657498527 +1.807515736007125 1.9227717372768156 1.8051868520965604 2.916901629216626 1.117673338456186 +3.964786170347859 1.2994506071708565 4.159427024225272 3.019726039624806 2.8987811229265557 +1.728706387483102 4.38998053724592 2.19265279947952 4.848523745752915 3.759791295199103 +2.181563123413914 4.647529115444229 1.1493804444347133 4.468555804797235 4.134962315026309 +4.744257275490597 1.0485732634967757 1.7828168519941037 2.215771338075002 3.720958196960068 +3.782983525008919 3.597882393252384 3.147018091666266 3.77875380670797 0.6582951030022959 +3.5584768425786097 2.576218138999636 3.0847149802339637 1.6279864407300364 1.7569548083436555 +4.06581021633121 2.357800404071631 1.6461883293587718 2.781658015574385 2.050997056821288 +4.5802222271213315 4.512140658782207 2.4286938363635997 2.739199221657801 0.31788157267167183 +1.2802850047521592 1.7643472293823894 3.1361626111202265 2.7980941798643855 0.5904290825541648 +2.184068172471333 3.7732953111405156 2.631866692580215 2.9639175484489773 1.6235457089856802 +3.4192422932013287 3.5943763155456696 2.3730204073602117 3.449751017993499 1.0908807146783923 +4.603255172457005 4.019602873064736 3.8099087489209236 2.0946947510450955 1.8117971920430456 +4.129133318518349 2.897972367475536 1.1862117043749318 3.84810069759165 2.932816103948721 +3.4519488446079736 4.576421981568477 1.3133398936120586 2.7011566515059906 1.7861901324430778 +3.5910368573769906 1.165116635905406 3.482510553834354 3.335703590100133 2.430358246338511 +3.7155858249286764 3.829256699598833 3.5150820333894597 1.504437686671546 2.0138549492793625 +3.1875143180538976 3.481644984057131 2.307496751243431 1.734126572585268 0.6444115225987191 +2.8729269669476407 1.6859631507072042 4.817908975539151 4.444111885918055 1.2444305385489631 +3.402480363779621 4.127641834051772 2.815835825237218 4.050792423071661 1.432123233699562 +2.058750698505946 2.6886460029342945 4.612356508915727 3.5500016600363806 1.2350570511026364 +2.7849173154657927 2.789977218359132 2.8972967077458884 4.275064977342067 1.3777775609013738 +2.7337821921535386 3.4489335726788193 2.231681554216303 2.096257994834933 0.7278605893320055 +3.5806769128714206 2.1858127104813083 1.8814767440054232 1.969287495757639 1.3976254402495303 +3.4348080139818893 4.606421861977809 3.6439840435256694 1.9179645857194205 2.0861021493545286 +2.8118184229356133 2.869523394606446 4.408170286677252 4.76222471929557 0.35872608632800934 +4.505808802395809 1.5043055822124174 2.7381645932162217 1.30569191212038 3.3258081067399514 +2.5808783069686765 4.975093516470376 1.5163085861981034 2.5928018166414364 2.6250912640515165 +1.2005348268474374 4.920398312837207 4.147300977558633 2.7149367890149976 3.9861073145391144 +3.448886586540271 1.19361891123638 1.3102894458843752 3.202475279635623 2.9439088839024077 +1.7298085164193076 4.815601927232542 3.452132718186923 4.120598187318935 3.1573671084687405 +2.362417116747162 3.476549166348361 3.166454893660796 2.1107819931550527 1.534840544424983 +3.5861651329481643 1.6875040448388252 4.831484271239874 2.2488265186810383 3.2054695435072835 +2.872387956138452 2.0226710707602185 3.666766377660632 3.977135696224212 0.9046258338133548 +2.141661241865787 2.056007584513798 4.852373960816946 1.9612334560846354 2.8924090248651853 +2.173694256780191 4.357612827968748 4.428735744656187 1.1965890599848672 3.900804085930755 +1.490631457749052 1.4306886174400106 1.2136708480599387 3.598489571220794 2.3855719411585325 +4.144909378810516 4.195378144951858 1.8834366697516685 4.627878285643282 2.744905623039452 +3.6068100236839817 4.212050514950702 3.889282697810739 3.149349386671793 0.9559379463133709 +4.9518489167935265 1.6761586246127704 2.132656958648372 3.359420417784816 3.4978701340901237 +2.779175777441462 1.0702884023545427 2.5349438183041983 4.083175359957113 2.3059308244829073 +3.314663052156888 1.3299792325811537 2.23866106931437 4.880569843098531 3.304338335080634 +4.724979580488551 1.7115196438080198 4.098162455853834 3.3634102658888816 3.101741699535428 +4.964737480008678 3.2831146533332487 3.031519840276519 1.9825898275868705 1.9819458879386604 +3.824158822577281 4.175539195361592 4.649919663400421 4.354913136080336 0.4587995396025346 +4.801731136588909 1.358141321713064 3.8126040848850247 4.686229444265913 3.55267956360689 +1.603800642723849 2.6134973752508555 4.6567163888701195 3.7882055088573017 1.331840320900502 +2.6822651634869494 1.0118391848867168 2.3649967654230224 3.1807939570220167 1.85899112633798 +4.81497455698543 3.199703561216616 1.0316307479628217 4.47236276745241 3.8010179188886855 +1.6757926548449542 3.1413091959430446 4.183311287678344 2.830215492722038 1.9946445704838112 +2.4358322241125085 2.9986952957310753 4.384311105287943 4.121651512337699 0.6211319498791505 +4.495959365183575 2.508034536136813 1.990556458309599 1.4315031900415902 2.0650389058566763 +3.3311889726606125 3.080835167980801 4.679117398438363 2.450227675368084 2.2429057994320587 +2.5125598836457974 4.904952887117004 3.5581003886813027 1.9951493872138175 2.857684397557959 +4.631193991132961 2.531342593058632 3.9720227484199966 3.883449673204237 2.101718602393739 +3.540467195359248 4.8707926266042545 1.7894402366182698 1.8540172900985148 1.3318918683036558 +4.486037395868054 2.6371741946702465 2.468608663173406 4.912172524850334 3.0641963845088105 +2.345995335481862 4.9182214177024 2.620834389119381 3.7941567566293917 2.8271951464578655 +4.144110067113609 4.210446126053191 3.605332624799023 3.9508668002488405 0.3518441972228915 +2.988354312555515 1.382740452995415 2.6539327484550848 3.5787472155847633 1.852910592722658 +4.669090513342004 2.720071762674131 2.842124199572044 2.4960515678095634 1.979505078778523 +3.977357658399619 2.339220843161993 4.949998782452967 1.044864185529586 4.2348044164429615 +3.6237843044604454 2.5000442044040785 4.672491890251201 4.969158167530484 1.1622403764064653 +2.2232153362109632 3.4846276403414973 2.8187864123550974 1.8188975964318468 1.6096392904064885 +1.665798557185266 2.277698789532359 1.468513382293835 4.7797725254660115 3.3673222310298376 +3.2720906271422856 1.7327623455901517 1.1399546617353131 2.55967698260451 2.094073309786566 +1.9929391757694925 1.836746220602988 4.388063460726237 4.3612044617891135 0.15848547273346567 +3.25508350400728 3.0972860633517088 3.640353099758389 1.3218171356441992 2.323899535085018 +1.6151381172542165 4.436246925357071 4.931878218153403 1.2974647876905623 4.600827739731644 +1.2272061757201556 4.880504503783742 2.425853778769435 3.441061211259077 3.7917324279034257 +1.841478087815144 4.0758513473391496 1.8048680067221108 3.5433947981915583 2.8310597428406528 +2.2980663407442794 1.6452875100497986 1.9772952191050273 2.4346372678345145 0.7970457648961811 +2.9021396344053634 3.7986016011402577 4.489986313544825 2.7998010913336207 1.9132093829958425 +2.371960359262472 3.6193942460843007 4.439420568713482 2.9130282625316246 1.9712850565969864 +2.7609786658325857 3.0133906496490495 4.760182266076667 3.069847313444465 1.7090769618903274 +3.2461619462560485 1.6229683991392712 4.143707964700812 1.8724905225989419 2.7916278334887883 +1.4082311828528544 2.2573669306193374 1.4092936268207463 1.3897076278256484 0.84936160114028 +4.292401206884751 3.635309885596921 4.684208348347173 2.768919654067767 2.0248703136117876 +4.57823377670563 4.211390425332284 3.7680700910392937 1.0746809751027633 2.7182566056743416 +4.0289361793994996 2.0815548622748232 3.276516549765314 3.7622205571210103 2.0070382101613364 +2.713989889990801 4.099194522913264 4.586567890964717 4.357324397891665 1.4040457450475712 +1.9785092556403403 2.415154556858079 1.8718582700379658 3.3001053796638975 1.4935022347590772 +1.335007255249046 3.1613831194059845 4.533622137789622 4.458676029203993 1.8279129400403984 +1.4237605840657999 3.1631470280983223 2.194214286899334 1.0033887657262563 2.1079683639849143 +2.0201789767975478 4.2908294525001835 3.5907418476999307 4.984804711538815 2.6644445670989816 +2.0409840001447943 2.905084107848281 4.304451845736061 3.8238782893248815 0.9887466506921104 +2.2055061718649283 2.9379999778413595 4.942958285788729 4.323640356477764 0.9592194083523637 +1.6504499633928726 3.122287239991107 1.5765967613671754 4.083728531316268 2.9072348857070662 +3.3322418939613563 4.145017720273723 3.2180982787004506 1.7203438016125916 1.7040754142567975 +2.1575719496199026 1.6110075818507674 1.8206717141851936 4.20636835134723 2.447505066936762 +1.149111917012546 2.7060018727388497 2.4399130437929166 4.095910504411224 2.2729350901017242 +3.33229885024307 4.20339759578035 1.387349090043966 3.614500675302643 2.391446676845809 +4.292840154407511 1.4766900327021024 4.764977210323483 3.553994411763833 3.0654821556141454 +1.7304641026271677 4.913413111478037 3.540214583038413 2.27840626266571 3.4239340867350982 +2.9103267366149015 2.3961443495921695 4.95653632395458 1.7595927540115306 3.238028986362631 +1.246856554390249 2.918908047874144 4.981386712253752 1.709251938722197 3.674591429399481 +3.664185297435238 4.674390880265143 1.8731480135716274 4.355099991261782 2.6796643332963885 +3.2224246370268594 3.801029112416114 2.946126739512515 2.978900873916901 0.5795319515146954 +3.5802683777481326 4.985372856974484 3.9915422887212277 3.641105074183867 1.4481453099998842 +1.5219403323819867 2.8232075082081516 1.7464368630352665 1.6005802296261935 1.3094160608424015 +1.6904845468694067 4.032244227610428 2.435184844700763 3.8016145632916185 2.7112669691848077 +1.27171097134842 4.415183993872914 1.4282725266053529 3.24874664258242 3.632567776419562 +3.6597998464330157 4.129434325733144 4.104179874540025 2.596652023791112 1.5789859926329743 +3.7980513275988725 2.4609109456090446 2.660417581786405 2.9004766125351265 1.3585185826450512 +3.2861116470474 4.884464364451351 2.9276680105665265 2.2396608223282324 1.7401394485213413 +3.8533790171822773 2.712092590775357 4.600841216562338 2.8149074618239966 2.119456081973502 +2.266191426133782 1.0265623380454065 2.950344803165309 4.404477396267984 1.9108066030758653 +4.63559097844363 4.096627850727237 2.013868767259028 4.512090974208199 2.5556986223598086 +3.3738087825102334 2.6426215823176804 1.5176821079796579 3.6164990984402405 2.2225362721835253 +3.9741844897672847 3.1419163599839504 3.727164366196731 4.421372715464312 1.083787558539896 +1.130151987348193 1.8969602797030136 1.0647133738695027 3.725795250654749 2.7693594407694726 +2.9867624757675406 1.5297404469625162 1.3671700640604474 3.2831182148939155 2.4070252406456594 +2.5080458888086903 2.343458171658558 3.0614324775489035 1.6171369220813778 1.4536432740462635 +4.221901680605273 3.901188399452881 4.652391250969648 2.796857773012611 1.8830458030878785 +3.966137880940348 2.5151576899658936 4.998933261530324 2.044650409954392 3.2913721578873276 +3.0215089661973686 2.587027988148177 4.934914512998688 3.374802529517439 1.6194823621417984 +1.3198849118566285 4.599392475347443 3.0039220286294377 2.0310552167036757 3.4207659511781943 +2.9376709060607316 2.570467447758966 1.2691118836142956 1.3660385259730328 0.3797804020584986 +1.0161792276407255 1.2778092418499627 2.2542371290317758 1.6642944213307795 0.645354679772843 +1.2342049531504795 1.730930366149554 2.3786626642571695 2.985518772992078 0.7842260341432028 +3.7149426626286166 2.321974186697868 4.900929092762812 2.9888588937198173 2.3656655767468804 +2.833085989788455 3.3254923306030153 4.051570753885777 4.486647444861566 0.6570812213911057 +1.7208744593623382 4.637626790031382 2.835083227722435 2.406182461833147 2.948118048084865 +2.0934724692448685 3.033768791542265 4.549793834067245 4.274454752897572 0.9797799668014082 +2.157215186452402 3.6054136049439234 3.144837964787742 3.9028034036533046 1.6345611844883656 +3.7311219098996524 3.0950929802494316 2.669621110413553 1.4985108480917684 1.332678523075766 +2.0360064718649102 3.278213555446627 2.0247683313159324 1.4151859353594656 1.3837156991089683 +4.078467279046761 4.7451228699663535 1.0396554506923001 2.440989818191271 1.5518272089501757 +4.0468225023888795 2.5233765112258433 2.928462506548729 3.338776668771249 1.5777342614366636 +4.7436186819214345 4.495557744693343 2.132933679919859 2.857081723948978 0.7654571302494202 +2.4882335461590586 1.7105788450996458 1.1450128123493442 1.7457764943466918 0.9826819605990612 +3.0106205156528976 2.3986682271850572 4.971046923530358 3.871048653754368 1.2587620096234233 +3.567865259871707 3.39126554492663 1.1746760536408303 3.49798306289934 2.330009209979309 +4.471250393213079 2.803235137840158 1.5674185393511904 3.5224052565149035 2.569873140145899 +4.720837612736682 1.0001368057600901 2.926975658972816 3.064998842605556 3.723259982093163 +2.110780639289451 2.986244726998588 1.6429178871442796 4.188635616194736 2.69204682813472 +1.1221106073342777 1.7177528285520283 3.578456332750071 3.4444497961398057 0.6105304313066582 +3.4364951230303697 4.001856620602513 3.3502993020838976 1.290229528627823 2.136239943087943 +1.310867048104393 1.8089071628100357 1.7189079378907528 4.999327665362698 3.318011082597996 +2.010550200225256 4.346635831718276 2.6805466925086034 2.067770081188297 2.415117233810677 +4.471320646954268 4.1790999522690635 1.5615621625665606 3.6868379070354798 2.1452715269704723 +1.8750070131327492 4.27094614677625 1.1161085419476309 2.1172571728041203 2.596694613001343 +4.883138730098576 1.5151510801447285 4.452512530732562 4.725129139482196 3.3790029040543588 +3.5677426930475344 4.379853838649678 1.7517649690338146 1.6873969196451397 0.8146580623754542 +4.269994139216456 1.6503309582343886 3.0685179108498755 3.3719174751666823 2.6371739566097476 +3.478203720617873 4.868514644323391 3.0846798405113494 1.768933139662595 1.9141979639967421 +3.4567831938524667 3.5089684944031596 1.7842906310374733 3.187755911184389 1.4044351527113763 +3.5583314259276015 2.605910003406024 2.264794570311943 3.388722662533441 1.473200910454063 +3.809022606669032 4.6636305012744135 1.2516238833153621 1.521017965796427 0.8960624002811732 +1.6243866398808793 4.118715267789444 3.4659033048895855 2.5587788646438336 2.654157126866341 +1.1258978823411958 1.6086984235847397 2.8293278518172085 4.041617545126782 1.3048918204700648 +1.2111512327880973 1.1687357431284906 4.058349625649492 4.745337992657753 0.6882965132613565 +2.3099637964287743 2.483348439067629 4.596862140663701 3.23117946345374 1.3766449829692367 +1.1698465713459796 4.054331918408387 1.5883034554858702 3.716305506762003 3.584501143486101 +1.2171033623918928 1.9758864603435975 1.4368080029539394 4.329032796573958 2.9901030160460262 +3.9127619815360055 1.034701823150002 3.776714733518463 4.779036997482908 3.04760236844108 +4.775480861508239 1.5901281440867652 4.027103867978036 2.3331616433599867 3.6077572250261403 +4.3076808813379985 4.5496284664377775 3.3564652419397514 3.4489262163301606 0.25901286786729094 +1.5557168588186463 3.7206869549786488 1.2628313400380553 3.7070746186572383 3.265183107015915 +1.502735308138936 2.3114971949392253 1.9374134452501095 3.582446160610304 1.8330925847174493 +1.0128312895754017 3.50000380925883 3.1750302303142224 3.8987024729228 2.590314393541939 +2.7815276475688795 4.934035040547094 3.0813889904298666 3.0774390747347367 2.1525110170821127 +4.276733766529938 2.5667729226689886 3.7764267673791942 3.853200706931134 1.7116834769699614 +2.7979473572071027 2.1399505133443153 1.0032455958532291 1.6410172801372167 0.9163583184583549 +3.9281226168148455 2.7072392649055526 2.711377516405533 4.745691690512706 2.372549328874453 +1.20182861502136 1.2579444860385496 4.40928772938522 2.8420665739800586 1.5682254751563969 +1.496144426335397 4.519387023145274 3.1640176441626346 2.1672474181564323 3.1833232136586735 +1.9353805642540403 1.585342357962292 2.7228943824523277 1.795189817556078 0.9915455136267242 +2.047268055301938 4.2634977051466265 2.5625937357294846 4.572046190767663 2.9915836992986966 +3.7682823697878827 3.7073894745582447 2.60792217142853 1.235916545228887 1.3733562476695267 +4.167163907112698 3.9274774515065802 1.248836975117602 2.7630861092784587 1.5331014439064128 +3.8234206701039026 4.240360729322152 4.466587986672087 3.651364901519209 0.9156569726415527 +4.236463123448021 4.371132299547549 1.2158442735827926 2.180627703925243 0.9741369793076696 +1.7500223267798591 4.730499169073744 2.0691974945792073 2.27903687767999 2.987854543673478 +4.785931212971816 2.886347536944072 3.898350142772531 2.0095226552769794 2.678822020916999 +3.1725211097219668 1.2600774591797128 1.9268699330371142 3.7081482391380667 2.6135020796405084 +2.2976660834325946 4.55515999734653 1.4678713766423952 3.3225382007816906 2.9216549761943833 +4.6221425268395615 2.1389447217901534 4.6408442878333185 3.996366389017931 2.565467423504671 +2.1098824584304166 1.649697233635596 2.1246112207114995 4.797612106063514 2.712324496481222 +3.5500122349225696 3.615965646968743 1.8323210996687158 4.780361781700931 2.948778342886677 +1.8864260907731634 3.828328115361292 2.509076874557472 1.1164787670621754 2.3896261134535157 +3.9862517180143056 1.1108564549632352 2.245367525757022 4.664703582243552 3.7578031977463016 +2.6370694095908433 2.3418986568038913 1.101470785254281 1.8853956457346834 0.8376538426940058 +3.2513950217771583 4.356415958441762 3.855513229200907 4.603639371728505 1.3344526951527136 +1.4864328858410687 3.1177153284306853 3.676814107026595 3.136760452168626 1.718353967501049 +1.697363183763295 4.612333158233615 1.1955163780661717 3.513820754826472 3.724457696815667 +2.4089667556140406 3.6234788551238695 3.9219247094106384 3.5244730862981712 1.2778917921993658 +1.5928271188865808 1.2398375979899239 3.9219776740372527 2.210468786798667 1.7475309075834717 +3.2842109626656053 1.891807361594359 2.6160685940967063 4.822373539748781 2.6089402640698727 +2.908188938057346 3.9782705323843532 1.6471612145813261 3.710049385528712 2.323915279082282 +2.907576964093225 1.8127405507575554 3.7021102550516414 1.094224672725702 2.828380098655274 +3.9286314044847312 3.8613120116481423 4.5521103271997685 4.159510378772142 0.39832978818720327 +2.35165278332829 1.683499019506431 2.5461592387533023 1.4916355710091778 1.2483787958555836 +1.9516846383088926 3.5986674642544445 1.397278024013933 2.1515872381441574 1.8115007092135937 +4.958869907650071 1.4083065058292603 3.488208246923624 1.5890329840761224 4.026582564577715 +3.2080328783512506 1.5999692759943964 4.518658139697527 2.937083522501066 2.2554925889891626 +1.6295883264975903 3.6015012933722295 3.7021218875464945 3.943694308476721 1.986654973437117 +1.1751137520887514 4.769361443877438 2.383271481866848 1.4498804733736632 3.7134667420975007 +2.5956386307851926 1.5637213616992542 3.914667287679934 1.5694488894992569 2.5622065852313556 +3.861451319983353 1.0264794564481816 3.3529050289033346 1.9263494778123742 3.173661325249516 +2.762046479541138 1.1764366937135375 4.518921952768789 2.187525501458509 2.819497793241629 +1.3516476596269085 2.684628725188985 3.4554824706723033 1.1983363354123333 2.621363614050143 +3.3102329774022037 1.1944160027556001 3.4308117027089415 3.0262161300289314 2.1541539052804404 +4.12029333632924 3.0664517145521555 4.884805407367496 3.1774413008096407 2.006408322389005 +2.998638554698744 2.8316143272646124 2.800661055653098 4.339809195299022 1.548184126105638 +4.928299571819663 4.967977902666533 4.20064399657487 3.4892288255666504 0.7125208175761942 +4.158246432989414 3.1718912268307924 3.950349016386275 4.095166903942662 0.9969296932444693 +2.406712101165786 2.267161638763671 4.407182061730557 3.226241245183467 1.1891574932461855 +4.158318180278423 1.322147541313066 1.5494322912365939 1.103659456094829 2.8709889087001863 +1.0696597379019694 3.694218438777093 3.123494670931802 3.6007342711344834 2.6675955484932365 +2.1719680618279917 4.952143098210911 3.153135978805824 4.989791619179435 3.3320680026438483 +2.6496779975284657 1.1445297900135247 1.457427271129209 3.725062036564556 2.7216977341351596 +1.096500899056211 1.5356221698900998 1.2815971319350745 3.145239644708838 1.9146777551108898 +4.792473170346424 4.036387333500383 2.671590788207127 2.1444728825912303 0.9216935928496343 +1.0373788616278001 4.207540131373046 1.9409148997895889 3.377752286185028 3.4805781346116142 +4.382146168759528 4.991956859513856 4.562723249619795 1.326879535829979 3.2928033070062566 +4.90883678327023 3.1249461222576898 2.2300375866924407 3.207191443434581 2.0339851401113522 +2.888839182522022 1.2703476929648838 4.7310634846912745 2.587483907482669 2.685972469254796 +4.761407493724217 4.353676243583677 4.017692206447073 3.8027403171881815 0.4609219966948146 +1.9307160569861215 3.360252545629592 1.8516166510331686 3.4482495029159996 2.1430844677881002 +1.0312261474875997 4.61789828959379 4.22870344937091 1.7490831061402479 4.360359400499454 +3.602301503860325 3.1382886935531125 2.907166063582537 2.3125873540109354 0.7542093409690896 +3.2376921072842424 1.933088560504633 4.975739989598922 4.250817836578646 1.4924820073319103 +1.4692599633151424 2.016442172350026 3.5960847610858813 1.031424995372094 2.622382139154283 +3.7371765276111777 2.9678964893254407 1.3260591551783194 2.937112523335694 1.7852968191189178 +1.028894923862921 4.536918669075115 2.8320351298608175 3.480050091817136 3.567373541962187 +2.0943808874156025 2.2781549128039105 4.792633639554432 4.868062585110701 0.19865149945357352 +2.750316636938801 2.836707710241295 4.286084695024057 2.2920482814881744 1.9959069707913246 +4.78839207756133 1.337253115318589 1.7593576133471878 4.867533133470507 4.644471466227753 +3.4516247653728973 3.0772705735910963 3.2453898190333175 2.107739585698515 1.1976598491689265 +2.7355263625284203 1.2089328804375876 4.527726101576917 4.99665043003672 1.5969901957694326 +3.4565699265754595 2.7168558710920996 4.8773205110718445 3.580577691173777 1.492889421503425 +4.233356395394663 4.454613111533943 1.2382088037468955 4.29673269907145 3.0665164197682073 +1.7004694424829272 2.2614861174772307 4.492530775666536 2.53546936497198 2.0358853294946226 +2.14276366508991 1.6775347283005946 2.7687347288418542 1.8515604812253552 1.0284194495034638 +1.27361640392565 4.122481470236879 1.0807689642456446 2.0103998758768205 2.9967058243859537 +3.2459043664875757 3.8244813751482547 4.805402264063604 4.796241456045493 0.5786495272220344 +3.2200456819878553 1.9850735591960067 1.0391947938453714 3.292427108023312 2.5694769906984347 +4.276123770432246 2.4082964316025635 3.6258842490469743 3.1512701692356138 1.927183824245824 +4.358661657754251 1.3658995764994204 4.951345152434593 2.111156012495452 4.125930104306783 +2.485976935914485 4.144362602698102 2.7511588850474498 3.5116485746697834 1.8244417194898872 +2.4963512182804397 3.4988143442680055 3.2798381233750997 4.101883561509076 1.2964146795380105 +2.00835830254849 4.671731422714184 2.72439980327316 4.189961267843034 3.039971510335802 +3.9383936911312887 1.7480048516824787 3.8645239934033024 3.802702626458826 2.1912610865419 +4.107622179275542 4.647593920088582 3.0704991711908898 4.8730049447149 1.8816472954472778 +4.507122705340663 1.4921809471257665 4.499604070574301 1.2218074947616921 4.453518182048525 +2.4407870368055082 2.472397563328744 2.537131173322112 4.999928531820229 2.463000214050413 +2.6040866035916017 1.6724655098436014 2.2935669722685454 4.57379870931007 2.4632041403277216 +2.144493122654613 3.926875315728797 2.6988166461288086 3.3986656664139696 1.9148563740871107 +1.6798404443999715 4.428197371400238 4.301286149946742 4.193684117945876 2.7504625057399092 +1.7741435655562254 1.585088668556923 4.339500792296102 3.520158110824133 0.8408710862915272 +3.6956848251285312 3.2622463140264046 3.4095564662437505 2.229557437685459 1.2570865723190825 +4.1251464840814425 3.182472589958998 4.582210656374761 4.427467547078821 0.9552902703024609 +3.5623973578152075 3.6350363005374327 3.73721942376161 3.621055701848253 0.13700520533383545 +3.862964256997636 3.7790273565516173 4.914086131670331 1.7448649959945026 3.1703324762666254 +4.280845104963694 1.8481306017403374 3.376379429608634 2.8196377391123177 2.495608375552935 +2.906753180984965 3.801285616808634 1.553132032745694 2.1841426849944443 1.0946975481803274 +4.849012064406999 3.579197115238916 1.4953126678087476 2.9373103385559984 1.9214024272835812 +4.61314699736748 3.01414410848195 4.301947291874839 1.886426212615028 2.8968176199085702 +2.7879941554509746 4.37346607843674 1.3444972694724253 3.671998904746288 2.8162004688549227 +4.581729157810555 3.858313671499452 3.6577709691940443 3.8959074444895303 0.761602879918982 +1.6626486754940557 3.415832395683445 2.9669090061827106 3.343612988050986 1.7931979942807545 +3.298187800070961 4.6278985988143155 3.6255348052461365 2.2590725118166595 1.9066593842790158 +3.236523713905332 3.179827565661661 1.3354539061174036 1.7281660769077463 0.3967836971355194 +1.495668210239117 2.559023265513316 3.796748190590477 2.8472189173979694 1.4255980549322755 +3.5046279888920506 3.2843738554006094 2.3540146692566792 1.3382845357253763 1.039336128248982 +3.353272304566798 1.5384841396027866 4.373177055514171 1.5946025580704553 3.3187245022053338 +4.63572501324667 3.029204397457273 1.5920826815533262 2.8259210849898397 2.0256519184576383 +4.775061879327705 1.9412924711140147 3.8231604931342935 3.786959241529203 2.8340006333001306 +2.2862538826302217 1.4380864809715108 3.3739880726792864 2.2214633278487677 1.4309791153902776 +1.2574465781646258 2.8663457430959336 4.931782006974915 2.273686025589622 3.1070936209218583 +3.527190475158056 3.806869181607337 4.107116371757154 1.3506647840046577 2.770603821275139 +3.5042298006758057 2.228311048103691 3.981023130203773 2.866809623393911 1.6939422664077757 +2.114678890089419 4.987954713078705 3.912750431880749 1.0738645989840423 4.039181442717866 +1.2949480134352669 3.749863652526087 3.0748241342828067 4.394784447475444 2.787275735096242 +4.408521186415259 1.353974392329245 2.6738534936986698 4.135241348677839 3.3861350504582304 +4.343742515495302 4.561789017455862 1.4974413359525545 3.662287086620031 2.1757990259213433 +2.399863848993979 3.903681608267622 1.504029207399189 2.1393417134028927 1.632510285845546 +2.154869856231632 2.6660128194957857 3.9211682423131777 3.5685198990420424 0.6209895191598136 +4.480909240329845 1.5750771068087737 4.11093504784035 3.240921073633475 3.0332795294068866 +1.7368603922971153 3.8583767235922313 2.1402539202957422 2.8333818276918037 2.231873168431202 +3.3691893507776682 4.309080100828124 4.498403419845545 2.4141145774794683 2.2864064818929566 +2.5340319371766036 1.8755135039154238 1.5023567378627738 2.407638890868345 1.1194562534977242 +1.5723411091488164 2.2016571354018413 2.7079722104806097 3.6759007618389385 1.1545234261085962 +4.8191644488983805 4.623259385137267 1.0454057138012867 4.219286294038109 3.1799208687657106 +4.568385712849996 4.170194972985621 1.5673192684027657 1.0642150227264633 0.6416149525465094 +4.305462359041304 3.4689361717567064 2.433856449474119 4.564912485158164 2.289361458843558 +3.1777819795072104 2.418506381253985 3.6259858394552515 1.5702549781054773 2.191467272949491 +4.761871308664505 3.672233403160287 2.069012382664465 2.0370021976372876 1.0901079841268448 +4.701709857277052 1.7509721730905254 1.6878009465003783 1.1593680463905343 2.997681472537896 +1.7194536953052926 1.4695527352435787 4.546829774780269 2.019576453695554 2.5395786734758756 +4.7849075865051525 2.5560337181969115 1.4482009132742681 4.1674004315137605 3.5159528922926753 +2.523438972271685 1.4463445088418907 3.3433117594587918 4.344854102665428 1.4707887504284753 +3.801737164635111 2.8047770611969907 3.7998641381180986 3.6253461896351156 1.0121195394764675 +1.3129246369454335 3.3084502998400183 4.468576229830861 3.863646067479274 2.0852009909343483 +3.1425962828039804 2.3194949556131563 1.0177286219370587 4.229758823834942 3.315815708498808 +2.7570166115197536 1.6531590416914037 1.8031326475775686 1.785427407306027 1.1039995516305354 +1.253131788958679 3.3713173328319717 2.613938167798794 4.332493609856501 2.7276625168264412 +2.4536656629862823 3.5875564366381414 1.0528511493810302 3.3177945692414132 2.5329186685998546 +2.794538028250587 2.8550958548137073 4.340719298206585 1.2426401145837445 3.0986709858187935 +4.9148785853351615 4.253515819162628 3.20677189673129 3.27899752488835 0.6652948593233436 +1.0342288508822084 4.775937344258508 4.964856684500917 4.306194004217369 3.7992392627738836 +1.7547086074689022 1.407024001496644 2.015430672441474 2.8219398774491435 0.8782606008424765 +3.623376206048559 2.474834426731393 3.589159092369906 3.3316744898925377 1.177049930695368 +2.8898344410328454 3.6024901805116767 2.129972204494267 3.124099961725664 1.2231795455737673 +4.740726104730154 1.2920717109254292 3.941522602216325 1.9696297055571437 3.972603519583042 +3.0878673367298792 2.917071353216006 1.1994325909492938 2.3079518011424596 1.1215997982131376 +2.3130281213013073 1.918586438765717 1.8660850831852298 4.863743945480186 3.023498453053515 +2.1117082604589377 3.5566382412520223 3.492049622100542 2.962869749663891 1.5387832812929747 +2.7283015300166187 2.4390747849663175 1.1795845680431571 2.806030558918235 1.6519620671450075 +3.2847825795298387 3.297616305843886 1.0022405390006472 1.1662878743302167 0.16454857264600045 +2.241630636581314 3.5087501422149976 2.1638963070498822 4.8649315405607965 2.983485071895737 +2.6438211505564984 1.8889213950173511 3.437507166813851 2.0041012464782617 1.620038941928922 +4.6497089605110276 2.493023142403659 3.694040764739596 3.634663842550662 2.157503032886415 +3.721838466790925 4.652852983635915 4.517039249338762 1.7867294377859935 2.884680172503951 +3.7577564008657722 4.25797556028416 3.8409698709425175 2.233604765986778 1.6834018498500627 +3.340080202552967 2.514628011622682 3.5244805201782565 1.7736538203210364 1.9356563363480956 +4.585148663333611 4.554567780342419 3.8665423269256363 1.8443735803088646 2.022399967908961 +1.6376652567037135 1.4174807602927935 2.0550976023900067 3.1772317533380416 1.1435323629804264 +3.215529561088701 4.416150494264704 2.0640234840287235 1.2062806385557483 1.4755383472280523 +1.3612377521965362 2.867238087610693 1.3533144556756702 3.7463070973466928 2.8274459841629533 +3.7752241028850824 2.5464857252024182 1.7842647169162413 2.6543940640549386 1.5056304598214798 +3.209423821027742 4.91511795843344 2.74846353058412 3.224651659308352 1.7709171703719102 +1.7734833811589628 1.9416774125777687 2.2919796221046593 4.784132626584966 2.4978222174416516 +3.9032301732297476 1.751797443033145 1.7641494277896341 1.9341760739488287 2.158140832514262 +3.8820625201186787 1.064307785318042 3.615506575745617 4.849017214770807 3.0759210396367034 +4.1034754622830665 1.2490190287240157 3.68594913455309 2.989493121032629 2.93819204781707 +3.11764199581599 4.2544491555369515 4.717700059665062 2.104546701580666 2.8497194583433285 +4.85892669020507 4.186674315828743 4.526238137665423 1.883789718455756 2.726620051095913 +3.3475510765268286 2.396316328139594 4.053023758170106 2.534235476628146 1.7920840914110323 +3.1522379751729246 4.203853383542054 1.0684629953353508 1.1626999104915985 1.055829324889935 +1.605268520685216 2.9405098929593834 2.574154436957284 2.1320897486424424 1.4065172273696116 +2.3196251192563375 4.932687608867585 2.991746332262651 1.022688515490087 3.271893069830747 +3.801836186848661 3.86387870654554 3.799831800156994 4.569815808998704 0.7724795454394164 +3.3111891428043077 2.9905857017704047 2.800510051972848 1.1923390814742714 1.6398171961402017 +1.5021952693581375 2.6585877109520855 2.116164164358904 3.882619557131136 2.1113048414735642 +4.277577686085494 3.8766892098903543 2.965726793694951 2.7894004716289853 0.43795267118647874 +2.2353593500396784 1.9652393045597392 4.916778786493838 1.0375806187432373 3.88859142410844 +1.5201800206597458 2.914336554418454 4.623398043256653 1.5486597391273227 3.3760462199890284 +2.791866829981613 1.7234002654115175 2.70496721557605 4.137192114722407 1.7868656808330659 +1.1180622967126843 4.441352196833954 1.7021277783759952 3.111257542387297 3.609695617648472 +4.6607000831458905 1.3138438132488264 2.5384216024858013 4.585414459001475 3.9232163649199223 +4.025579025155171 3.3246702316808405 4.574557180289044 3.6914763617198076 1.1274328666907638 +4.822775347344153 4.437933627504963 3.353429645996985 4.721511695907896 1.421179666550724 +2.560974301619605 2.4068018907965536 2.7641291776539134 4.675905186888987 1.9179824404164332 +2.007792585705798 3.5687812406043156 4.606937053223449 4.853309082834519 1.5803116014560425 +1.3234337738820319 3.843071125692366 4.411631626112716 3.054408157991931 2.861927309883255 +1.8555267386892758 1.754936069284422 4.041737668281646 2.4094648465478836 1.6353693917100247 +3.574410471086834 1.4581961374019783 2.6168676663392336 4.744735151231849 3.0010303462904973 +2.35431382383014 2.3679240927827845 4.979655413611004 2.3845169468422487 2.595174156222247 +2.088496327900644 1.5790115307025787 1.5111922441711045 1.1762425429357006 0.6097262180139871 +3.6609959166976016 1.2251421716719837 4.8225897748075095 2.9015531014077465 3.102219426104826 +2.544386152347496 2.680140814126419 4.489503826816806 1.83398503074512 2.6589865371010677 +4.925351265106392 3.7966580158654906 4.3238549371905 1.794886517045207 2.7694096340148313 +2.428072583670484 2.67610338057743 3.616872881761377 2.1506682081882462 1.4870357833697163 +2.4406053085912487 2.585486972149989 3.5251635424650463 3.088004553373038 0.4605417225176181 +3.3429736948048276 4.474599968012303 3.2523582162170808 1.645791041257263 1.9651046053255814 +3.7803850395388885 4.35565207916324 1.4694162413435072 2.191579365733992 0.9232831337718628 +4.889294212937237 3.322818911185697 2.1978541154206317 3.0984042344761886 1.8068855492057478 +2.725223148423237 2.1204507602306992 1.6100565531180138 2.892004311348231 1.417441249700172 +4.745999375022235 1.8557029488322874 3.1397519885768577 3.6384361644071284 2.933001762438935 +2.1904804338873425 2.245852862353463 4.242510117084425 3.7865936318216367 0.4592667496875971 +1.8533600020832939 4.420221233020671 4.175944531940042 3.0271347873921735 2.812212724538719 +1.885931095210096 3.9396594077079876 1.184788888662383 2.2030528423484608 2.2923048359526357 +3.506700161433617 4.064347557655484 2.3119742621884156 3.479959717483159 1.2942799705987484 +3.778236272452681 4.740940693003969 3.4986794549283697 4.237126919507109 1.2133031192953223 +3.74917035219793 3.998788647752218 1.8579262539113204 2.55612539430412 0.7414791521820906 +1.210444016425782 1.6210547530690618 1.1954906500860987 3.8454705691004305 2.6816030183876847 +2.139879043104839 3.886207023041373 2.3587916189007623 1.4424911931575752 1.972122684755277 +1.9341652853204585 3.2196145762371353 1.1356336625401653 4.809811483705645 3.8925521886112846 +3.355488012937347 2.4464798594015753 4.696003924519535 1.358784601942268 3.4588045088119084 +1.2166968405542926 3.7112795129780807 4.615342956853969 2.2012974651018697 3.4713914135121153 +2.514556722082498 1.6229332561915584 4.934991670823528 4.450517686439223 1.0147450154953093 +1.7687365654137257 2.7883956838656436 2.579047832689221 4.523941530754254 2.1959772800771913 +2.3152825982291723 1.747834141985976 1.4605133817205243 3.7525754498468085 2.3612594678764394 +2.1507454133028934 1.4121249941141016 4.652214596178554 2.683342880453797 2.1028589958966757 +1.5930387651329672 1.975973926220266 2.094980501723781 3.495471180842315 1.4518999551948644 +1.6088260915641648 3.9960660862343413 3.068849727781063 1.0951773042865622 3.097466323854954 +3.56723490692871 3.7216996585652193 3.974743088040517 2.0425533484551277 1.938354082529088 +4.035947420178475 4.1891136415638535 2.928990363093361 1.9142329113944125 1.026251712374707 +4.076524141342365 1.0376743779120945 3.325070554214673 3.8397014989066167 3.082118247883221 +4.650016191867291 4.165192830443745 2.161780996991368 1.800475885840037 0.6046445857907783 +4.9770806957930676 2.4073702636060945 2.8689898880668045 1.2807019070369763 3.020938664715715 +2.9630938369654736 3.419489817767249 2.350889254213004 1.8701305920526932 0.6628922857706118 +1.5895780483578958 1.224448214858226 2.2186870439339264 4.363155128605326 2.1753305867122172 +1.3106201353697693 2.4950951639607983 1.9435947038726988 2.123122564128768 1.1980030659242245 +4.26150142795315 1.234008024239122 4.092658019823383 2.7593560103586436 3.3080826105124195 +2.4796178972373717 1.4496331515779923 4.33995653807712 3.781605149038692 1.171590734826867 +2.547390838745659 1.4282615245815586 2.6365374511283246 3.09565486091145 1.2096442525748536 +4.81184739852797 2.8334642811227555 3.630683934084234 3.9255025098779797 2.000229424807821 +3.46184959858233 2.9412215728556474 2.9128506701699926 4.329662931876184 1.5094404678863875 +3.2169721194104395 1.5150877807034764 3.605780652951191 3.5307424781360295 1.703537798235081 +1.076606557012798 1.360367579628071 3.249722528634486 2.414511898822467 0.882098131789573 +1.361166738321352 2.519278743131426 2.7886365986432033 1.1823520617003282 1.9802458002245569 +1.7282232699292197 3.0263322630551137 4.124848163240507 4.847170556761075 1.4855425265591031 +4.134620413540658 1.505625603964051 3.6599606628012125 2.604322257619086 2.8330171463081903 +2.764222081606581 2.3266237732901254 4.472235397135069 2.5545931229472907 1.9669377649517787 +4.130189111193145 3.2916294283915026 4.063706492153589 1.8025997887288727 2.4115940508080085 +1.8709661287594015 2.028896791793838 4.156026858840091 1.6728091050625693 2.488234817496608 +2.227161302378117 3.3262128390911454 2.606292559439045 2.662304769929952 1.1004779180316828 +2.605009023724103 4.388758724601953 4.3257363615983735 4.065229486301875 1.8026721353198325 +1.414049347623339 4.630597507615693 2.332862178568429 4.226478642854373 3.732554805942573 +3.1004862857263897 3.194210901082514 2.419519674152687 4.65650530735168 2.238948196511557 +1.2390992472276388 2.3752946102524235 3.656932122218328 1.6785947760640574 2.281393994501552 +2.3054765500230916 4.5117430030953205 2.7006902609627037 2.37163102741889 2.2306706707025032 +2.0571220544711086 3.5439403148532245 2.0240058134420638 3.8701805208641655 2.370440800722681 +2.1643786826281817 3.569185916737119 4.819919583232183 2.7460622976519575 2.5048687402654424 +3.7622915208324663 3.6880754248140604 1.43287379592326 2.434068115894282 1.0039412807781392 +3.600234011389042 4.840344577300499 3.631465953941602 4.287991153275259 1.403174812005023 +3.9174752613205865 2.5235761516940136 3.1090381544872434 1.523430227489416 2.1111862130035095 +3.280779988740442 1.0489188949175667 4.707595229031119 3.315980046252676 2.6301704809878235 +3.9387964147844174 1.4436499611721758 1.5163874048855983 4.8236351424066575 4.142902777318327 +1.5730996252756366 3.0740095353937775 3.442447830161801 3.6061609360714133 1.509812087425921 +2.2046592636275952 1.821521111037883 1.0064619690165744 2.8329524822975 1.866242867119678 +2.574743662291039 1.8903821324653687 3.0416646486315355 2.281836641625053 1.0225895089119463 +3.3752809432559303 4.766354252334239 2.0660921229560336 4.393076112953446 2.7110771735482473 +3.4658852210185005 4.305268026066395 3.636967006382046 4.339065472950322 1.0943060587274462 +3.2362327186014404 4.537566879469745 4.5423947725710425 4.077624849325588 1.3818399617164068 +1.4776170524335899 4.127077383213605 1.0664329752716206 4.249954587283405 4.141793077704758 +4.8906038479429235 3.3316885687359092 3.9753736598552747 2.1936850620524333 2.3674102110292883 +2.649572361462454 4.084304392990932 1.6181957197494103 1.0602427924695865 1.5394049081882122 +4.76890426619111 2.1328637020519574 1.2820666610603508 2.3665998980458394 2.8504249153263594 +3.8029256360915706 1.8110401421110671 3.7862101423025543 3.7649041754088075 1.9919994390951097 +4.723583604148113 3.684376059596859 3.4760816106935457 2.6257197329583604 1.3427835431511506 +1.2395365321344127 3.5524167342859925 4.595883089573975 4.698632398273396 2.315161387450763 +1.2784371583206378 2.7847286405052145 3.609153211650942 3.1152550220597504 1.585196975452346 +3.110986806850926 3.3046208568410003 3.9763621264306956 4.068505297504023 0.2144399899529168 +2.8511488037012542 1.9439371479820116 3.4295951182130024 4.9993821459730015 1.813081437993457 +3.5516535454253697 1.3832107335947907 3.694033633598593 2.6022695151690276 2.4277753434924727 +1.4378227228800489 2.0306421803531913 1.9697091207226918 4.869110836439852 2.959385952906846 +2.2300962007542924 1.2109210362630676 3.6086013670617967 3.2130549717741395 1.093240580449141 +2.2250052000117115 4.596826208442342 2.327689227442881 1.7102690665802083 2.4508656738125367 +1.2091604287346125 2.63271122467919 4.71280047104621 3.9444265527821574 1.6176820908024212 +1.539215287391705 4.133269739565676 4.605950535482389 2.9286097536938414 3.0891083825425443 +3.4758362085900183 1.5273614459669913 4.394916473063626 4.703014414000281 1.972683005905477 +2.327683952402758 4.949927754555272 4.592394060350433 3.464648567461508 2.8544653535572224 +4.337770877409052 4.289235171076576 3.63551284256769 4.543421353018687 0.9092049153730636 +2.9597122741932615 2.406803972581867 2.7184512229157325 3.3581936872991305 0.8455637236342037 +4.033644327734889 1.6625275157383608 2.6102823206029337 1.9083039343026846 2.472846252997804 +4.426177863116859 1.5569464536230404 2.5460813855887334 1.1022002578433767 3.21205255129568 +2.984156437658183 1.0066974167260354 2.231614295366056 4.116397862374461 2.7318040328564663 +3.901474808594225 2.891603918830913 2.0222118387471673 4.394104948131506 2.5779286522974703 +3.723248308146695 3.0018542823979675 3.0818794281569084 1.4894057734254416 1.7482510350060574 +3.669868231868588 4.340654170452674 2.2926482348281616 3.220066809736369 1.144578083176025 +4.9642859619571436 1.015705609071762 1.2985930524716047 4.704754301234852 5.214712001229679 +4.236150493416547 4.526196180321107 4.678142250397601 1.5991118378258622 3.0926614399306027 +1.9010480753344803 2.9672955345999013 1.537919542092923 1.7903850316987042 1.0957291945694667 +4.967864413839924 3.6735303154306256 1.4816523666977406 2.821991432385666 1.86327925156542 +3.8597194461147537 1.7874727992957706 2.852954262146215 4.963316089929447 2.9576736144167604 +4.570153042323724 1.897708066994225 1.5508182663835997 1.720308960730335 2.677814265708887 +1.3663511378156685 2.713241711461475 1.8910376841599041 1.92466940158325 1.3473103984578958 +2.3040540605066973 3.0518154502128643 1.555335842871692 4.802722993468366 3.3323670868911917 +1.599906341014786 3.6852838562633705 4.9399126249343155 2.5559826160196923 3.1673208976212113 +3.229120736458725 3.255357128638015 3.1793300651713716 4.449597622781251 1.2705384748958821 +1.428524905099001 1.4574508396044998 1.8190099898115215 2.8199261090490837 1.0013340039350498 +2.301727133301816 4.464047782847258 1.865564406670599 3.1599333878230773 2.520123340398308 +4.693829897631037 2.3743849145591054 4.455425965835123 2.9015431594937824 2.791841113914041 +4.9267670335220055 1.7614771264260018 3.2778541213133505 2.1531148880930417 3.3591812304055337 +4.592632986295964 2.7274426033376553 4.83370742583601 1.7572712849962584 3.597692940391821 +1.064983459492736 2.875245226437714 4.11982329829293 2.1886783667969345 2.646954554068775 +3.9475247043464528 4.295344140538655 2.3645498803889704 4.398838293901023 2.0638090293296147 +3.811591456562884 3.286869472751304 1.2484027699142661 4.795717368783812 3.585913276091346 +2.6126551835953644 1.2588722350141714 2.4806095796841388 3.5946436487141553 1.7532256497179035 +2.850686745068842 3.749183510851832 3.031866099477188 1.5288284586390195 1.7511192386296432 +4.358942731624982 4.359459506332067 3.705292222519831 3.363833893546501 0.34145872002535954 +4.441227254494898 2.6120570819419515 1.0909307191086977 2.6583933859821185 2.408900731080322 +2.6836314495067257 2.409107070426014 3.637825878073482 3.5809399317876567 0.28035628331550566 +2.7472092572025835 3.541573865012442 4.521204658558093 4.342310563453452 0.8142593121384729 +4.314219393167166 4.878559659687227 2.49897443209026 1.684303469018467 0.9910442545558982 +3.173780333499198 4.176578439403058 2.3296957335735744 1.833373405445427 1.1189011996610398 +4.496989081893097 3.986378037464256 1.5361386367082144 2.2725049542845843 0.8960797912874138 +3.913557926256511 2.497489659175825 2.6063407334554776 3.535278808094458 1.6935688009487164 +4.955318418658214 3.038055715825514 1.3470720607850808 3.764147045037207 3.0851495508598554 +4.8353709968864385 1.4589677247349062 3.7596198754861865 1.397947497095792 4.12038778260587 +3.805568734272337 1.2313270722850298 1.1926527215985634 3.9531365751187177 3.774518676580718 +3.1978964743055593 3.743852109157622 1.9198175911978725 3.4857429692565653 1.6583696345733598 +3.8367614386689515 2.0056915270829334 4.371015331599656 4.087433768559016 1.8528992212239175 +2.4607343743750865 4.0910553364937225 2.640499575909727 4.974055065505414 2.8466520093867467 +3.9840618151433618 2.31268536859928 2.2615969539306917 1.0905378397799415 2.040803438574588 +2.5034626539757214 1.9131739538102366 3.3936945424110254 2.716071437108684 0.8986733680167929 +1.6541267310254857 1.6616060581955967 3.072190758085699 2.4391217953292323 0.6331131430798654 +2.8139430174176376 3.201937712597276 3.5455542695303297 2.8164551470137793 0.8259088411816066 +2.5467340506440235 2.516186719925019 1.9339474039572595 3.39659837466526 1.462969925024815 +2.6593550729443924 3.827427153480712 1.377854819410493 3.2508861265861726 2.207405414279099 +3.0167894975933374 3.3115706109854046 4.803724755734899 1.7011461521502746 3.1165509615974174 +2.8252596533866146 4.155780729251383 2.5364925410159387 1.7047032455099846 1.5691270711572827 +3.6378222966819354 3.320769668249768 2.5678166923422596 3.9679669273331455 1.4355984987944153 +2.0861948204360083 1.438357240752362 3.7010048266971833 1.075485560682802 2.704264215246554 +3.2288932709011324 4.406203911004787 1.1712700162523086 1.733041495876125 1.3044721302580629 +1.3298109431666396 3.6023986372940495 4.451362053799663 1.8539195739579455 3.4512841470365245 +2.8832426939191604 1.7329944463024698 2.202547985342979 4.127423991080812 2.2423689858296076 +2.8958148281686706 4.582358471481609 1.5965285778029208 2.3930618720401107 1.8651795488980756 +1.3509192068164637 2.452860733145212 4.1722973181706235 4.667632064081062 1.208152158444411 +3.6099374083705627 2.1243472106138377 1.5314916748615954 3.3851314842684435 2.3754912710192646 +3.294689957863305 2.3459625665013655 1.9754611966539923 3.2021114035564215 1.5507270530993529 +3.643074626521104 1.3040149029624977 3.123408608801606 3.194807720266332 2.3401491882980485 +2.612791488075073 3.9541644949271917 3.4172068080132147 3.5644394288929515 1.3494291341758597 +1.0242966108845368 2.199527659124605 2.5045585895384095 4.147570793978858 2.0200636427320084 +1.6483691783080068 3.183353888460342 1.8432617357474754 3.171250274851732 2.029712201370851 +2.6011026471280196 2.3845944354756305 3.514365217608093 2.487733256864808 1.0492135095072488 +4.204906607854379 1.7247955098711154 3.4855086066064715 3.108331272674164 2.508627871879771 +4.483133131130764 3.938770432799201 2.322911928160683 3.779534899418392 1.5550180795509925 +4.142618643270852 1.59304931321723 4.023625831644025 3.502321533774489 2.602318569992407 +3.855288839349663 2.55381254199122 1.0488638624411948 3.793142078752009 3.0372526205608756 +3.9354863446063595 2.7607545838187924 2.651897745268917 2.012353407330591 1.3375394087622352 +1.779662125914399 4.723101777974422 4.044078995363115 4.566048234919522 2.989362619750626 +2.402477595365507 2.788098714715541 3.3906594233400305 3.2693403265355236 0.404254834155678 +2.139605708513268 2.961777800387211 4.365178675364792 1.8937639572741918 2.604583970128668 +3.9081637830153926 4.055687034762292 1.466876272009173 3.42609584045035 1.9647657435859398 +1.2843698627160216 2.7816998360932415 1.0861488458767488 2.7843662253629784 2.26405373548485 +1.4960656780247845 4.764862669040751 1.590338474162941 2.4058288825125915 3.36898476912338 +1.2903263531272242 1.3663648847944887 4.454359492955266 1.8129543411946711 2.64249939149388 +2.82173368520508 1.4360277754402464 4.707112045731216 3.9574212554050363 1.5755053631952751 +2.699496189307979 3.9890629792830667 1.8641250148872603 4.841176346977358 3.244351574614884 +2.9812028645646325 2.7395493699521203 1.8590660301592012 3.7499197528532804 1.9062329899790573 +4.164306109768267 1.4338040133260073 1.5471826718208619 2.787892181350187 2.9991668485951353 +2.2368138447806074 1.331271222217949 1.1364467854565667 1.947743689946639 1.2158166426368864 +4.585985640409893 2.1054713025788825 1.653801944449635 4.844812352996929 4.0417197834142815 +3.4248370003393656 3.873754155945897 4.050617070658834 2.2640972882112465 1.8420585076686449 +3.680694423573185 2.9241334617004235 4.721237990234171 3.081225778183448 1.8061075673130167 +1.613332505096241 1.131968674097802 2.5363644935004124 4.44847640471808 1.9717715635473534 +3.1794879535026666 2.689242076590815 1.7359253468850095 4.8515282010168495 3.153937565092806 +4.530421933766642 3.7590413034031362 2.058394214866288 2.277956249865455 0.8020196781332584 +1.0859371454300084 3.2211305532294543 2.015648499769923 2.951656508691233 2.331343364130442 +4.5413060133629655 2.387548765494253 4.715851165340862 2.1411975476914478 3.3567114164941594 +2.2977577755402567 1.5704517503736573 1.4682647778164366 3.265328536856332 1.938662479210406 +3.41041303131405 4.403761984077962 3.4080759176352213 1.3571360425105525 2.2788366578878687 +1.3488603561218757 2.721136894793292 2.978202112642607 2.7009272916039446 1.4000086517482757 +3.9232510118316024 3.4751163434010093 1.3766098886888853 3.738070478126749 2.403605790581646 +2.394781767668663 3.3624822201336584 2.9618315420188432 2.8512951679436047 0.9739930470463627 +1.3752577561836237 1.5399082099866783 2.63426604965526 4.850734197577937 2.2225752681727866 +4.071266390258535 4.1306649497955 3.227484878833255 2.8612125785195395 0.37105739024060286 +1.64012618047926 2.1744642229306725 3.7982195218932358 3.8750775035180793 0.5398372837719273 +1.0629313385033043 2.0284143513102078 4.883127370840837 4.18764483361815 1.1898963852371354 +3.088839292521292 2.8049127063268005 1.495325527487278 4.3260504878823625 2.8449284890400692 +2.124974049827219 1.5575035651992652 4.733692725065086 1.5911710657396099 3.1933470106228086 +3.2656437552296937 2.678903194140993 3.3599900482074054 1.539099586631412 1.9130882256407091 +4.204064419974722 3.692686923884293 2.257586868438763 3.4556036285208482 1.3025939892941674 +1.7684918000903136 4.036608325911039 4.011321382295126 3.449563549423301 2.3366481201699854 +3.8730221672776333 3.303303389087108 3.3252411594844236 3.285263018572708 0.5711197229772949 +1.4099629867071246 3.257126806334263 4.757178980486209 1.5368253626921415 3.7125047609637973 +3.2164192831983733 1.3840173726646317 2.855323712192641 4.077234248743762 2.202444578431511 +3.1405268595916525 2.941595509849649 1.0386120406508765 3.4286871067603677 2.398339530497812 +3.5616801860281173 2.569888626432 2.6888665941011642 1.7818311667200586 1.3440103289076777 +1.0815056574544637 3.5343943995419353 4.824789761099979 2.0618098086789574 3.6946882681140947 +2.7570373310161296 3.043445153153349 3.241860185502783 2.0407401646349936 1.2347950214958041 +1.6530145918522696 4.087466033735076 3.087924612323374 3.372520432421125 2.451030110729443 +1.6735976493902887 3.175542507000809 3.48213521396464 3.670275410782393 1.513682624912273 +3.0737202192030235 4.023048900447947 1.5682613964016974 4.144671798366931 2.7457449816741684 +3.945565368051257 3.729315049726444 3.9495650694961966 1.5701744813264842 2.3891973068891135 +1.9236718587301196 4.826960262049954 4.318303826332272 3.4634235059312712 3.0265333163638477 +4.835852912870907 2.1027535599148317 4.007186171637597 2.989353426255322 2.916473139033058 +2.6422286208779315 4.839731948729453 2.779784391135049 3.0238899997864843 2.2110197701724874 +4.364013773825842 2.391536117815659 3.172168032018326 4.365123836958092 2.305170634898621 +4.210298204597114 4.5366144432906665 3.6984110146211555 4.576035059504769 0.9363259324578074 +4.49963650285353 3.777677494024402 2.16517361349566 4.016600837644238 1.9872110045860873 +2.8106691636960286 3.669051788237471 1.4830246504359907 3.1025544623548518 1.832947773890079 +2.4302760802576966 2.9869693570286033 3.285166042975272 2.4144308745987817 1.0334830128500248 +3.7619345702196427 4.223886922561654 4.582394787992078 2.934596478043761 1.71132675024463 +4.769708959552954 2.9268688527412445 1.8855364241963954 4.515391034717737 3.2112606452535353 +4.546843055393484 3.3072268661456734 1.8159238526972334 1.9497774988624759 1.246821998216664 +3.6385136833382217 2.8004865373896353 1.5145165722023872 2.002755722538248 0.9698798715652452 +3.1259738477926797 3.1514138431246774 2.145700677027774 3.226581929893565 1.0811805936841516 +4.7804983382718 1.1874718441234662 4.533415454162972 3.7094082915506257 3.6863026451565686 +4.501375212972982 2.458049285177131 2.4496384918891096 2.3392615919215918 2.046304939946442 +3.4890160540699693 3.0878449998490938 4.872688915846883 3.814195942962879 1.1319653653665844 +3.274873723471486 4.652834319568775 3.3789834455987275 3.7434651045061966 1.4253498812841487 +3.4021565255872006 3.1757957124347107 1.4070977397483504 4.337100675713424 2.938733812800167 +2.9015027775212627 1.8975356653306346 3.521902465375307 3.600526527525199 1.0070410644603027 +4.038304825144708 3.784468119708798 3.3123637110762485 4.201242840464575 0.9244128837747266 +3.903340138873624 1.9875554925651664 2.3042068163618685 3.9292692399253815 2.512182057795442 +2.354649017141009 1.5188074133390481 4.834815190440317 4.863738789472953 0.8363418925458861 +3.77260717058437 3.9804844741339043 2.9485117822644917 2.1957527686933154 0.7809347641408184 +2.8320023240739145 2.4484682760685956 4.66810957333419 1.1180216263204756 3.5707454120269335 +3.8628380519854275 2.9129891315530174 1.1276229480780593 1.3935258453921784 0.9863657143507463 +3.886851220015641 2.882772560800557 2.6503472532196115 4.186175628098755 1.834923091297036 +4.0978056175393975 4.3676143816682185 2.6399979534197695 4.605001595028616 1.9834404656396296 +3.704701161052593 2.5849147881649364 3.556989255346786 4.255851598851639 1.3199735209745647 +3.8568408066297217 2.9638890574665777 1.2193782331814949 3.2187664959885196 2.189729721172001 +3.0258612345416918 3.6292774842588313 3.1836228735520966 1.2766478052749015 2.0001662634524937 +3.7765615765598155 4.405155101233094 2.129908892524362 1.5901203068665115 0.8285538826580185 +2.61302122249313 2.4811972063815735 1.026477522413745 1.0783839968272626 0.1416751682893691 +2.9073415130056075 1.454921316290875 4.343457763700578 3.9682362046664017 1.500105211706466 +2.625014763636653 1.1460874705843236 1.4320101598988795 4.013552733815036 2.9751618441820513 +3.07879268871041 1.996787709891135 1.400244320116982 1.9700297535444284 1.2228614861609644 +3.6564563857133865 3.980162721768505 1.226440188551014 2.288820259967575 1.1106021826672619 +2.1024940148394697 2.3274746657753624 3.5979521188375476 3.800198050071906 0.3025222471098462 +1.8826002667182746 4.820062840524975 1.6145352367915744 3.268822846144659 3.371254049604424 +3.8351947488917872 4.900086367657816 2.990401165107489 1.3303708880210303 1.972230889262684 +3.816572636679871 2.4168464993227543 1.9597363749694434 1.530835220508361 1.463963612901196 +3.546863470140068 3.7353761239440524 3.3584896974416187 4.647021738875001 1.3022487636564297 +1.7111470900314294 2.871501660393961 1.0320810513068333 1.4907470236074718 1.2477167960349438 +4.429489903720676 2.2788256790936865 4.027326161396321 1.818441064982081 3.0829417730880606 +3.089724183183446 1.3714429759614526 1.7109134288332952 3.250507716119641 2.307128274833678 +4.673156236173133 2.535902818484049 3.6246920194119197 3.986579244543692 2.1676749145425944 +4.203785613199084 4.205290147029105 4.628062164607211 2.181282847325979 2.4467797798529514 +3.3684692023690843 4.118416552630499 4.189741349339487 3.289459903702787 1.1717199791425523 +3.251195205980761 3.146668822001149 3.853057936332199 4.595763992234785 0.7500253665191785 +1.9592025600437046 1.8386690817638605 1.0362405499782725 3.8663520471705155 2.8326770740636773 +3.121842610484577 4.897910500392367 4.905453447686856 1.9789573295224492 3.423272802333003 +2.2203335487875044 1.9198315937090098 3.5339720040698768 2.872450132928671 0.7265759499213827 +1.8350756272075022 2.954934203470663 2.3370618352745076 3.579355398724053 1.6725359573469036 +3.521356230842134 4.786061159612149 4.609619267174763 1.9636791059991912 2.9326571387356175 +1.7540983259204421 3.1547180173713727 4.420891863008903 4.348957262047442 1.4024657239646126 +4.860486306096066 1.2700690280473181 2.6562227412276576 3.262440876226314 3.641235594919975 +1.0705064527031753 1.7707576005062133 4.642590775608131 3.7964751215612376 1.0983002185298307 +2.615333223612123 3.059199898942807 4.675140606828675 3.955549072196164 0.8454759619196083 +3.3997594681227277 2.027178674808851 2.7870382326161494 4.709063570301081 2.361812742974562 +1.4450427515367248 4.417188169108254 1.1539733664050744 1.1169506684725814 2.9723759962954954 +3.0397501217637712 2.704974219598724 1.937592261930528 1.4081751770130149 0.6263843504374758 +2.7715176807715123 1.0425817402361401 2.691619883870411 2.7002373901614614 1.7289574164477297 +2.8489209121786696 2.1751312272504526 3.795871414895686 2.062970255162105 1.8592845314587154 +4.819031667565568 2.9375802685004486 2.4694333053198596 1.1094334574935356 2.32152082763255 +1.3420070454234572 4.610943442468123 4.2533310459307465 2.543760966497074 3.688980214695955 +4.568812478031356 3.486570871819262 3.6557622919793658 4.62017529907458 1.4495997180156206 +3.830754357425977 3.3761078372100477 4.352931639471766 1.819460010863645 2.573942880350444 +4.404233696868072 4.45944092852032 4.014630251439861 4.0407781596408725 0.06108642672471082 +4.577724617955689 3.150097845365179 2.791913361059462 1.0404023462286145 2.2596258621486394 +3.850799789540568 3.5370046105192188 4.687425149311695 3.9958787733854746 0.7594101687716129 +1.4650088317474195 4.640206377015655 2.683034175725569 4.386917345088362 3.603484051069912 +2.7027923264364233 1.9932165522982537 1.1322445723926835 4.257560260131455 3.2048550555789337 +2.8077597806112395 3.9580000345271826 3.1952774033965015 1.4414694186424333 2.0973543070057903 +3.5693615959970804 2.907524462492415 4.707420611926019 2.840774854587137 1.9805036669183222 +1.5112518891827555 1.298788877829932 4.817660712593058 2.224582340384978 2.6017678558254227 +4.983342665232248 1.8622380594679315 4.349167733810859 1.8277894525444491 4.012311353492546 +4.779360067353103 3.515503829195239 4.523853245031356 3.836297758503094 1.4387720937610873 +1.990584335768828 3.957104345152374 1.3807215663217716 2.372407019140781 2.2024170778121714 +1.2458067665261066 1.639294104515605 2.9095628024121516 4.691037570952606 1.8244135046924879 +2.25699090608279 4.139572407110441 4.38803435838534 3.1008252278357107 2.2805745885153277 +3.800768709250169 4.868154334783012 3.7855011007250154 1.7181035852024795 2.3266810182710675 +3.7171664673409435 3.3158516947385817 1.268317824700938 4.923630025358596 3.6772762788490096 +4.585895097124478 4.189972449578149 1.6735978783633136 4.888945322134896 3.2396317579330747 +3.8322035843087723 3.0110266254094653 3.2278352923120313 1.2160812949934887 2.1728980057872596 +1.430237062817724 1.3255490182375982 2.4682464716698895 3.651256856870688 1.1876334275233884 +4.144140540659045 2.3381521910344354 1.2496716358604112 3.5871810854778174 2.953903239111005 +4.3949652810245405 1.3634051554354083 3.590747111121701 2.136480448851767 3.3623278126993696 +1.7755703253674189 2.4772553696331396 2.9689123447909296 1.553050943956921 1.5801979014407745 +4.394773316452159 3.955250885720787 1.0697286680717881 2.7493898622356094 1.7362147604187244 +2.8275722546335347 1.1585450269052036 3.913793312113807 3.4498900530237635 1.7322985079635906 +2.5364765168458736 1.3769254310409598 1.1202316618341253 4.4517027680601 3.527500312148799 +2.5644976746257746 3.5054594939009602 3.411493344033657 4.136922886445935 1.1881317967036122 +4.766690348198875 1.7517538625458826 1.3833576129090437 2.3996349060514883 3.181613042008495 +1.2668421510101515 2.2375801823073234 4.8212486430073085 4.912517723589335 0.9750191641588372 +2.7969681523972714 4.0488079613015415 3.838356617531057 4.192850851513127 1.3010645906656648 +4.934462803926735 3.4067292174804877 3.4777599327901054 3.8551437401536126 1.573654488512675 +1.984863761078897 1.8294951168275548 2.154238209641262 4.79758005453883 2.6479039870438994 +2.013272016410028 1.026617062975276 4.871537298510481 2.254437936689075 2.796908483805529 +2.5664611365818764 4.3316536978717375 3.88802435332063 1.8382257235615262 2.7051024381703845 +3.9209958462380023 4.127953245863507 4.675127985374962 4.149730734182072 0.5646889735250681 +3.094979302812448 1.742411261657396 3.023896774777915 4.897243825548513 2.3105993764789496 +3.0996668560345304 2.446539289981265 3.9007909936872203 3.2299451646567245 0.93627439560541 +4.214634433955828 4.378201389955212 4.291808671430939 3.66864404125543 0.6442734709707384 +1.629489669045765 2.0169454453488838 3.9086756026576737 1.938976852885626 2.00744492911866 +2.76434529516217 4.710912668372799 1.019942762496751 2.9194270223335863 2.7197729669617683 +1.1608886878484594 2.4397486455756554 3.4798239788470924 2.913180185221255 1.3987737416511243 +4.852990093408243 3.681134637748282 2.0158038197305546 4.516129007040595 2.761316941471407 +4.045728316403995 4.331413880034516 1.5080988891582523 4.224537379914252 2.73141983505422 +4.17771267672888 1.5176412456314052 4.762074876199337 1.594615730306955 4.136275795862537 +4.278700502421927 2.972871513460653 1.0150374671185562 3.4413972737192293 2.7554330439150356 +2.022752656122913 1.560673302302531 1.0712187849464363 4.436022730880865 3.3963838010158627 +3.505897893314017 1.2383282622118559 1.9695306946970739 3.9155397945301567 2.988113694043444 +3.6167427594367494 1.8406712573243662 1.799676706839075 2.946408485010246 2.1141011687436704 +2.415852634745261 3.5888243270974596 4.935064962734906 3.669338976500735 1.7256664982806047 +2.645747210627299 4.724222803497868 3.3922488201860643 1.8286830595098924 2.6009226590034396 +3.350652424532768 1.1013684480816464 4.483580968364615 1.5190888286990378 3.7212218494546603 +1.0836640631944294 2.1457806454128208 2.8732368912411577 4.91444473392677 2.3010043657639 +1.0378760045610957 4.661687243997228 3.6916681163035614 1.4657304167658163 4.252858631707269 +3.9633045746200386 3.6791248885598824 1.3232637718651805 3.2769113671962473 1.9742079476874033 +4.3182337428093955 2.237593148862621 1.9127368359581265 2.007627434708959 2.082803280895841 +1.2204230079770224 4.533650297049656 1.9062209618403916 1.953419511825186 3.313563455281377 +4.17209470231593 4.8030942797535605 2.0031877942701257 4.970098331501481 3.0332686334482335 +1.2744639416868568 4.66155158529523 4.6335758118985515 3.7639253714878103 3.496949326769137 +1.6011320492284469 1.9316311457743014 4.294035379050845 4.2543326114119235 0.3328752958328633 +4.95923415595832 2.7524884536653196 2.3267746122144195 2.1510615135899784 2.2137302653252116 +4.777619226983828 3.4396161133961547 4.6318093030112575 1.4285359809852975 3.471485605266647 +1.1770840658436414 3.28372570024111 4.356003014301952 4.806154581212107 2.154199482166985 +4.202638178019466 3.6956651418167086 3.3080621954487994 4.833317457094493 1.6073037275557212 +4.7297490451916175 3.8660193966963514 3.3320481109994544 2.000168790064665 1.5874291893572674 +1.1122160694801981 2.610003752748787 4.131041718471046 1.2182267024193374 3.275341090922807 +4.096230616415124 3.7176483957244812 3.020976980984104 1.7782425680167449 1.2991202096020156 +3.75966554170001 1.6076484483745475 1.3587322967519748 3.7398370435429062 3.2094917643071277 +2.0837181459207073 3.7647718628545186 3.7032301476757072 3.3230749267209125 1.72350212974518 +4.101279693748494 3.610110158649207 2.5187961975003605 2.6572105583020535 0.5102999583439051 +3.1709248398415335 4.064814183628162 1.4327158301343332 3.2376021822597383 2.014113428539674 +1.2020284385338837 2.9615716705324884 3.670680158131621 3.9245769057922804 1.777767123035173 +2.8929293422871782 4.855773193910925 3.699218278637515 4.9274406377249775 2.3154451298226686 +4.720023853951515 2.472903988301725 4.544832109210114 2.6148929356408095 2.962129791936083 +4.756024231337525 3.925589278189568 1.8870602612259115 4.438505014267866 2.683187011603025 +4.377913386210119 4.373226913597769 2.3038185172191503 1.385025783114803 0.9188046861376407 +4.714662861181516 2.5452741331637054 3.2056509544819205 1.6538498796773262 2.6672708953189264 +2.975245441015245 3.750086584967734 1.0149549295277307 1.9340970794643715 1.2021651675837859 +3.6403939409807657 3.250847617226791 2.6436660500684974 3.367944392109465 0.8223900869416225 +1.5103005719711553 1.755353593579584 1.1545908224084602 1.8526052962923356 0.7397805006559746 +4.770281172476553 3.8453983406531034 3.050771868517398 4.996530753697053 2.154387590907759 +2.1339840316975827 3.0503220045207637 1.1986709263682958 4.554742825996262 3.4789213667328216 +4.167194121354369 1.3986447353384737 3.144906903505473 1.6217041342931182 3.1599070206170903 +4.373318320752405 2.21601155809901 2.92212871459071 3.7276774520880647 2.302798566239274 +4.9413491245399745 4.077216510460431 2.115501643427476 3.900870395495581 1.9834986149672926 +3.551141720281334 2.356683256504291 2.749800886192051 2.3812021104215173 1.2500384310844805 +4.685741298395966 2.1074422588991775 2.652529526374461 4.0550985616541375 2.935102355250226 +1.707896402833632 2.5050723406014908 2.89032957280641 2.0148681967962734 1.1840279121041135 +4.234973975562484 3.087411145645666 2.1591112861297934 2.8671533236410593 1.3484153571840543 +3.286927083131595 4.157974690080147 1.706503369521085 3.4415368659507695 1.9414080373027756 +2.523030838147976 4.028538388626394 1.167670066140667 1.618344585718861 1.5715153537730913 +3.4560026503653587 4.057779386849909 3.457960033148736 3.743912345306398 0.6662611840729642 +4.813094659523698 1.8692343531769051 2.9704378949043244 4.8205136935231 3.4769374403228968 +2.771415108131376 3.984070180767462 4.164038396774378 1.898354941150552 2.5697964600873653 +4.696557523508537 3.9076844323133337 2.9569865514918945 4.575525146203262 1.800552119929363 +4.179781589928266 2.883926977553843 2.8504260038377653 4.066222853651506 1.776907751243458 +3.2441411158358218 2.9730664380850165 4.897596372148527 3.566095808211532 1.358813906567871 +3.302508134419156 3.989204683498162 1.8446345801776327 4.110179575517079 2.3673289328744804 +3.9888768093325306 4.604867366148801 1.0175512526790471 4.744305699957482 3.777319562387648 +2.280405319850354 2.8454637629179382 1.7833884295824363 3.726343908905124 2.02345423440018 +1.8718077923510892 3.469158736131007 3.8750622256477523 2.653444437815755 2.010940092877492 +3.6058244522855003 4.229291177010328 1.2452176080484683 4.047394868360733 2.8706981999245857 +3.449632556000884 3.064665281897425 3.97287766295807 3.1199934294525113 0.9357410527988029 +1.8557519835947902 3.494607667387152 2.9990915085659404 3.3320740301033127 1.6723412665924131 +1.3842119289546164 4.172318730780899 3.2711988742619433 2.510452293398514 2.8900302591297167 +1.3249088201261427 2.2175133864137524 4.875228822242631 1.1866895723160558 3.795005231881294 +4.733449416269378 1.260876799353189 4.205066024494673 2.8304548619173593 3.734744493005955 +4.716319567855219 4.204769159852381 1.8688029529722443 2.218251074566971 0.6195141722462475 +4.3478826735757075 3.886760116687813 3.476522134953851 1.6578006994255285 1.876268017240882 +4.138558669033054 2.952892612360911 1.654991283570825 1.0891344196588673 1.313772426404491 +1.7620702001521922 2.6042605604500797 2.9056650084483535 4.692563843481382 1.975421992795737 +3.397909352743321 3.0599177688484067 4.46461411852221 2.0826846288459464 2.4057901829904487 +4.942251204815683 1.1345405021856627 1.3911524133993116 3.4026772251476216 4.306378160728837 +4.905367057489471 1.1885695775687668 2.416868021834666 1.0624300040289048 3.9558925479368745 +4.644348536191172 2.390109993260034 1.7510247316174605 3.360015978262091 2.769556686586383 +4.600053053626715 3.963468055489779 1.3666596461698859 3.5233544259061236 2.248682465977476 +1.5889451597934072 1.980610971505829 1.0797817909405865 3.724266904770723 2.6733319332498797 +3.231764037877819 2.0447231032256057 1.6983706441811033 3.9421559429788724 2.5384323208706974 +4.960896121299058 1.514394885586928 4.674236861005788 3.0459408938250974 3.811786788961594 +2.276516096749547 1.1726790896956643 1.7704105979938398 2.4180539653233253 1.2798039183357537 +3.994889832411004 2.013965913900956 3.15643702510543 4.323167360142687 2.298982219509614 +4.8693531250009405 3.7122276904660763 4.105282636141654 3.433056640452437 1.338217867362358 +2.2289613909970867 3.4967598152393835 4.044144910491161 3.0359585324140905 1.6198001782477407 +2.4363827975932977 4.1953733543755565 4.607083295142606 3.222341330737049 2.238650952434283 +3.546745780889801 1.731734993809595 1.1959045644081634 2.485412439332739 2.2264533942371223 +2.319893337175408 4.008642554994125 4.3867197521776164 1.4229495639467102 3.4111299666429584 +2.345299805489719 3.721913143718834 4.087570534374946 2.3593569328716675 2.20947652972627 +4.080413878414585 2.669175981683055 1.9781683451770014 4.136860207091126 2.5790585406045947 +2.1395482510236294 2.117486211479248 2.368800239763973 3.0701193816524013 0.7016660689872208 +2.381622875597415 4.925367681783252 2.152319282062112 1.8626660394753665 2.5601829309520903 +2.264085537898501 3.912989817247532 3.3099719876756066 4.921859249436169 2.3058763772330706 +3.50383646111728 4.068547978332619 1.1137595118503913 3.149269784133119 2.1123922851222865 +1.33307416439672 1.709769825460881 2.1267650107649123 1.5781770954381567 0.6654684980576623 +3.702789294249738 2.4121578136581676 4.772289422750205 2.50155762604374 2.611886772290821 +1.636560349405379 3.1010955957443875 3.7170072535715852 4.100746707655965 1.5139747211860037 +2.191585015632426 2.9159919960094265 4.333209866076143 1.0642340032052289 3.3482784629196485 +3.5735995345050813 1.7058479143977707 1.1995157429165229 4.706420316860589 3.973270165136433 +4.294003616927355 3.4034944289207196 4.117730020695346 2.364326891447828 1.966578029873014 +2.386410559633918 2.7495919702281633 3.441463170800301 3.0564682149624582 0.5292653899716175 +3.828035683330283 2.4839382220780837 3.779649793663586 3.063075034509721 1.5231800191707567 +4.822122856424984 4.679787513016853 4.405492838722146 2.8734574137438704 1.538633125007867 +3.476871749852482 4.022666704775845 1.8317204230557733 3.4501245834797096 1.7079590625355463 +4.5815995833482335 1.2232327142464352 2.0534849263110835 4.582649973185715 4.204200739952003 +2.3514065063238543 1.2496196274232338 4.89800578861383 1.6308486405416343 3.4479341868308353 +1.4740375590741275 2.082260903614443 2.6248317101657914 2.496914619663667 0.6215290973770545 +4.283455553652214 1.5462997202508535 3.5922496974630285 1.3681894192543398 3.526820973260311 +2.225737491347098 1.4289400595980446 3.2932145451596355 1.3590868705379409 2.0918259987339796 +3.79704617486982 1.108981929077825 3.315684208345126 1.4851184027839048 3.2521778177085103 +2.888359537868438 2.112865423683273 4.5482730509206615 1.053652367435085 3.5796319423344394 +1.0149840715642364 2.676801195810842 4.315589564971315 4.3315902010183684 1.661894152704428 +1.0671646694497854 3.394458104285183 2.548341907593279 3.804605280557459 2.6447102665659394 +1.1552745201792263 1.5922565970935838 1.3105082218307547 3.920186338127614 2.646010809921817 +4.920536107775421 2.325117629479449 4.09567316700784 1.8975955940940197 3.4011383526735415 +2.086871157425782 1.906192024770042 3.5574454694372517 3.7907043941848415 0.2950502922412251 +3.045584254457035 3.725876353129349 1.7347915401200957 4.817517535995631 3.156896720699426 +1.6887857859767257 2.5050079564833188 4.382929507621529 3.4996273705132115 1.2026808791390233 +2.7661383201859597 3.4353668362031278 2.5200605028301575 1.9535166826749508 0.8768344808494908 +2.903930688352073 1.3184204232637837 2.169292151510263 3.7899198597942783 2.267217891945597 +1.182815305614172 1.8326784184179572 1.783786224060334 3.9036930258003157 2.217279169037238 +1.5824079226548888 4.576187345763378 1.3807097646774622 4.219824724512162 4.1259288638299365 +4.897350561333532 2.574664800417677 4.2270179897307205 1.5948969685482512 3.510403141252 +2.0567219055851464 2.0944098508520153 4.313234994200783 1.2798161194242592 3.0336529879122476 +2.1125735307999505 1.6491394611492614 1.047843171498132 3.1334499192274925 2.1364752849230997 +3.8973289195885488 3.7517548625517674 1.1039674232604129 3.9371780628501054 2.8369480669138767 +4.8636828562946 1.8814684666477177 4.853248636236195 1.3277978664870984 4.617619061349845 +3.0843606909241537 3.09137220372145 2.214017485638328 3.221152176415276 1.007159097004086 +2.001747094661563 2.654022134262879 1.7399587359456667 3.25221375155327 1.6469298587120373 +4.362112710563986 1.9132335260033777 1.760787572890532 2.6208348720037695 2.595513555596696 +3.585494176364289 3.376558306704722 2.923400263384612 4.522211154316464 1.6124051794113978 +1.8297909379553494 2.557477822319208 1.2430175070159968 2.4985021233206317 1.4511270872851818 +1.2143269120140308 1.432195905862315 3.478799340449309 2.206418713905539 1.2908986626704597 +3.2911320157184076 1.0333577715002304 2.528183465446733 3.259222249970702 2.373175560790487 +3.752031514138258 2.3568904211572894 1.688180334737441 1.9516763153900363 1.419805902630428 +3.680396207496818 2.665250599171239 2.335565483987479 2.587989245206715 1.0460584884846427 +3.1972136328945466 1.6824947415901375 3.3440476237432537 4.7664185585060395 2.077862458328852 +2.524367822019365 1.4186935993304393 3.54383996634155 4.079992947165336 1.2288106060597748 +3.193729381282022 1.8701197741422257 3.720038893913233 2.1786301439485185 2.0317193030978835 +1.1501835800900961 4.592925513999126 1.8331243504628456 3.21636775491017 3.7102337311068037 +3.757483669850921 3.8925545447693493 2.675147095344411 1.3713959318553663 1.3107292769867724 +1.5786653501107963 4.7679096338092375 1.749879016541136 1.8280019593676418 3.19020098039278 +1.370379375704767 1.764390463763064 1.6878425843460598 2.609164651291147 1.0020374686372016 +1.1630542424034016 4.274666009579629 3.1706499439921574 1.4192524706500644 3.5706471261185464 +2.1477647656805714 2.9151518117136086 3.5066070903083215 4.822530492092846 1.5233309810357911 +1.655408418956518 4.338556478225494 4.428262268530252 2.0465530479473495 3.587732197275668 +4.245079433156163 3.687657394868487 1.5723656314640602 1.2700219581805823 0.6341380177400924 +1.6822466383601586 4.2155670697062355 2.8078781520042293 3.313717776891064 2.583328499045587 +1.4442724242244735 4.284148111164802 4.810769035070514 2.449523403936301 3.693287810044759 +4.878596425973036 1.2879881038280097 3.886423233559528 3.3370367952749667 3.6323950200423027 +1.4989539855377103 3.674832762864967 3.922676384801644 2.7662410619651756 2.464100466605825 +4.147915371076129 2.9325947024362167 1.3410786817716853 4.580342316243902 3.45974467572934 +2.481329916900339 1.870444243679883 2.3906595491226175 3.974960410824926 1.6979960324266623 +1.7214266625143035 1.0471449431247613 1.3897911690434253 2.8324790038584418 1.592483603000721 +4.357637024652039 1.9625030530395815 3.864345440338911 3.175156854944325 2.492317726175829 +3.3785407365682065 1.9263041449731912 2.004087779419038 4.158170198287033 2.597895722550022 +1.8319811631764367 1.613196975670288 4.74032485850823 1.5397488891042799 3.208045052150727 +3.1345813176272133 1.2812789827881894 1.7150648352150197 2.261016416844003 1.9320436521473745 +1.95302183692246 4.783084471128525 4.896243895630672 2.674795083268302 3.5977895073886073 +4.768506506745334 1.9137711042244585 1.9999943938265399 2.207864645926553 2.8622935314384073 +4.25203602698602 4.881970783840274 3.2999791050216607 2.0036163447473654 1.441309891771724 +3.743609830335607 3.2512410422683753 2.58313779479026 4.818446736406925 2.288893419959568 +2.081109196561988 3.7645483483836566 3.9632787601875776 1.6337688783100917 2.874123112820833 +4.37508161403378 2.6360011016321545 3.0689315222098332 4.046276201832908 1.9948943960527414 +2.479047820945905 2.406691215959258 3.1320538757530167 4.586506044758023 1.4562508678825092 +3.5677151609870164 4.573096859989773 2.927969903627301 2.463381155896321 1.107535581915051 +2.411690591812986 1.7127939318024468 2.6149830335515025 4.551338893435754 2.058623461802077 +1.0754527466839194 1.3772493150377563 3.772493548574989 1.619155219658416 2.174384309971761 +3.3397831909302798 2.6769711188149357 3.592746375958016 3.7553054785718456 0.682455350029912 +3.800006426383452 2.1856614824501546 1.2453269069549742 3.4213800657494087 2.709486473098221 +1.8670650214548732 2.8310996056131668 3.2949904572257194 2.023763128047918 1.5954252103755227 +4.340318053293974 2.941768427413508 3.9234029130922 1.2805932600578176 2.9900474775866193 +3.074462413571998 2.968959144516408 3.1362275477521093 2.5567294671587812 0.589023739074044 +3.848805376617103 3.5223210799408426 2.631806150620072 1.9251679732070697 0.7784147414802485 +3.721041490905042 4.167427125535529 3.257078294789516 3.694181173587866 0.6247552012254619 +3.570646760654248 3.105587243845755 1.7349933683738596 2.6292708838813406 1.0079745179896076 +4.391311333579855 3.414928263031102 3.7072522229085747 4.664221933516565 1.3671557802515968 +2.3862407168855304 1.6762233274943381 3.2725588505124943 4.620333593680407 1.5233586089818825 +4.693741637420565 2.954691448889155 1.474704233931746 1.0132391896935968 1.7992347110048903 +3.0693351797096255 2.185873173759784 4.338956948957293 2.5095265388335077 2.0315808478725623 +3.659027371945463 3.5765483895936225 1.6092479844855725 4.216525530426631 2.6085817955544783 +2.074659563721479 4.801050934793323 4.640665980677454 2.2186289363785905 3.646844300516679 +1.7083835768922628 3.6168890791212185 3.7994340612570268 2.200907538858026 2.489514068016335 +1.0206675270088224 3.689746153402969 1.9629822303602849 1.080410254301027 2.8112121952636744 +3.489821454763739 2.3871100715470592 3.696743898342906 1.6493157410220034 2.3254966037528653 +4.92199005004297 4.954567528440176 3.1991418874694992 1.4134420112316795 1.78599701570145 +1.2355657055946008 2.3043311358851803 1.8130614571226848 2.1343921168048947 1.1160255094916118 +2.069408779192857 1.257416281485885 4.251403053040532 4.100259289265924 0.8259396186528174 +4.515174056486842 1.0013615800544824 1.168365531043476 1.2299091326192717 3.514351395980008 +2.5736893351386567 4.841271285988817 4.984276393692509 4.4651716232507015 2.326241102404663 +2.528544664119544 3.748476216336656 1.8677849880466444 2.608146156160562 1.4270135428039414 +2.7235567193069943 1.1441999889720282 3.8714956513486225 4.060224405600167 1.590593041709819 +3.8304061256310034 3.702179352929272 1.9054147438480582 2.0002482933958365 0.15948513208864445 +2.3961227766991104 4.86203154707929 4.089585623794783 1.6148159936103665 3.4935928191935886 +4.886939046291415 2.3109043081585 2.7053085308402673 1.2493808516679232 2.9589998950739567 +1.7710665811320676 1.1930907043336196 4.687895587254742 2.4634909086120786 2.2982672360994716 +2.2725155056408437 4.8413844679313645 1.3086392072372406 4.502303382099048 4.098606910550868 +4.298105279560666 1.2158854120859455 3.3571468558338284 3.742884000144397 3.106263423465041 +4.205442609592307 4.855946749154596 3.0879671045716357 2.9264713142058514 0.6702510916765021 +4.604411815789959 1.9330852809270738 1.932245377513345 1.4347043686227603 2.717265631363708 +4.5163340329009 4.582213617246305 2.421278732846996 2.852080248237989 0.4358096663644567 +4.894412853678208 3.7745367097560836 2.0530481709430326 4.656096083540492 2.8337221128762566 +3.413719663352701 3.4826803533407684 4.078005971393829 4.434730946114259 0.3633294432783036 +3.778059424643129 4.417811758924023 1.6977150334547924 3.9258528866355333 2.3181633553299763 +3.9693125820805113 4.663058136338343 2.159563123971345 2.482999758369746 0.7654372283365048 +1.1849050289558183 4.772163060478556 4.579031136642253 1.0643137171859647 5.0221169563595245 +3.029119335735135 1.4953581354635839 3.25560459669852 1.7038461808042666 2.181828957722642 +3.0839034472835944 1.4631808644885815 1.4484384044974457 2.9579480978218147 2.214805003746824 +2.683426535608608 2.464591900979383 2.4591738526155473 4.987170079082745 2.537450200170576 +1.9595339975517465 4.508005066751146 1.8477797530199243 4.217543715084215 3.480012360099454 +2.603998251580558 2.258278517509867 4.368282471740155 3.441502601135253 0.9891628091898463 +4.83161940326012 4.644155388932473 2.6628946099935757 4.623854939517026 1.9699005484116587 +2.128259174566257 1.4399634206828305 1.1083684830201483 1.2482638271125541 0.7023686725023311 +1.6454806297476225 3.9013630194791817 2.2847618229615163 2.478077278563108 2.26415022065132 +4.757318949716147 1.2579000522127424 4.746330569978421 4.231136593189582 3.537139727791856 +2.865925425874471 3.212899752465276 3.6216438060934673 2.5848100163442007 1.0933505800423617 +4.675051650350301 2.787679657331138 2.689259000154562 4.700196493312138 2.7579054808713077 +3.435351691101355 3.946115001733722 1.3470953377450976 3.5144901199957266 2.2267643120939824 +1.2039507347136098 2.915947547367044 3.3855048560692103 1.809090105898422 2.3272336692071875 +2.8182895699940067 4.443290708276726 1.7758591229777752 2.6389381263354377 1.839982082917383 +4.270517268593032 3.7338801361432266 1.7021412760172319 3.5384583539689864 1.91312305477228 +3.863454746096004 2.742785678526251 2.981954302368619 4.897967347663403 2.2196858220810105 +1.9509781435609024 4.258264150845476 1.8981251342277998 4.512716700289661 3.4870700848610725 +3.2090465414309564 4.835289380068202 1.1736669688637282 4.158191553448939 3.398831088214366 +2.127941161464069 1.9333432230874372 1.0113087217720875 2.591827280467196 1.5924532244308147 +3.204329381305972 1.014048516810354 1.8758873670525218 1.9939156989036197 2.193458673532562 +4.408771574757514 2.892710192769288 3.7220229558672986 4.046799456534116 1.5504586061360792 +3.4295971987531875 3.356949919737215 1.0884046269215912 3.5295067758771173 2.4421829024018065 +1.513857046311717 2.5434872985478365 1.080871149788841 2.250266740143667 1.5580835995097078 +1.6391951563196439 2.24823429004883 4.772160962860124 4.325866202478922 0.7550547526883805 +4.758621690262657 3.9499093002008916 4.919061773277763 1.3743600992052056 3.6357840540951 +1.9310957691013497 2.334792913791289 1.889800689723049 2.5097287631678915 0.7397852396985518 +3.5251145805462234 1.3653357533717014 1.5855870446216618 1.9141098288410174 2.184621661080607 +3.6254465964100824 2.5490100674447276 3.201335599676112 1.3660792973720701 2.127646891765099 +1.6779741311721756 4.966550075078427 2.2618192454599444 1.6101595359100775 3.352520263307816 +3.468989692099846 4.717940008117785 3.5356269439613315 2.9620300542821307 1.3743690493208014 +1.0961378410774025 4.433468921552594 1.6598023840785556 4.666052941368889 4.491694686186289 +4.055559553229625 3.078166437293661 3.0920741929757094 2.5496758819899665 1.1178073317165174 +3.4112783609378283 2.496386028387018 4.76387430689944 3.808443980175296 1.3228284429148272 +3.760799012476115 3.6580431634236197 3.9161813910203276 1.6294136402089832 2.289075252294095 +1.5943524985595396 2.311269013247359 2.1292988050330646 2.0709931294267165 0.7192835608020268 +3.9084659470025196 1.1299750154310937 4.723995415325364 4.9614419644053385 2.788618425043957 +2.438482645308707 2.8359299767724115 1.9563376630333873 2.0362925550213173 0.40540987412792673 +1.2100977335204228 2.385514764567421 2.016964373598194 1.684344755545208 1.2215731689870462 +2.004672400819953 4.566584567515929 3.934685856971768 1.818943257999766 3.322613533796802 +3.0375749339234934 2.143513592534339 1.2274920113473788 4.138774488565298 3.0454739112858413 +3.4481261585707457 1.817564680536452 3.2945828835376187 4.887819961067038 2.2797225969103927 +1.227465688467297 4.307079869227845 1.4798109195378837 2.65411218224443 3.2959076076151845 +2.5129445491365217 3.8495000506126 4.870310933294322 4.579929230177166 1.3677361375759547 +1.67084674099869 1.5877919811519074 4.290578606821457 4.770547284857315 0.4871016577971131 +1.2479537250307495 4.153709068857601 2.357939428898308 4.752589865054844 3.765337279655435 +2.580435046488938 2.1390324547418404 3.446450980049379 2.003472500740914 1.508980828158007 +1.7653263264712193 3.6083337355203837 4.627785754143067 2.5709812680575856 2.7617242809142764 +1.1558160119597818 2.921570970367976 4.952356677905932 4.080690095108107 1.9691859243630507 +2.0409536625937816 3.835746858645157 1.6161776406660997 3.1792575999005934 2.3800213393061873 +1.897375929739321 1.6549217405214622 2.7501439323232315 3.0030016449572288 0.3503156529585658 +1.456263741048089 4.233283968755568 1.5390071620204417 2.907540289186974 3.0959205844544377 +3.5203600918587514 2.1007334770243036 1.09970887642003 2.6425150986924026 2.0965664227561844 +1.0524804685478748 1.2454767721434838 2.406995327549793 4.013837592884835 1.6183910648754272 +2.5003922909704452 2.4744405567605052 2.426213836402263 2.1666550824425004 0.26085290733600813 +1.6847300798525633 1.4912948307059115 1.591473360259533 4.207628811449113 2.6232968837707604 +3.010334245674491 2.14080715235966 3.8829393510565766 3.126737756704952 1.152353338741411 +1.3195801617429899 1.3710386038144065 2.6500988473311504 3.1370987558873584 0.48971101906550185 +3.4611100574124953 4.109332958780666 3.2094395299724177 2.4135978513413474 1.0264292022855197 +3.8265228143203136 3.8365401906859367 2.2485789599262267 1.4908952191188454 0.7577499580423066 +2.505756501322741 2.9911048782505394 1.2781764723508018 2.866491806727146 1.6608156575615147 +4.75155540994199 2.088148442619651 4.694319148123464 2.8642491943794104 3.231546488784889 +1.185172676891188 2.8997473854312292 2.0979660174396453 1.2245244191186488 1.9242314457576832 +1.0114279697088397 3.4996972302318676 2.157862907313188 3.261745346905644 2.7221389298315413 +4.749161929131076 3.4188336405408597 2.181413614479789 4.368168007579303 2.5596226540573124 +1.0514567162295636 1.0338988624787726 4.9151032024879395 4.535513808775116 0.37999524476972474 +2.180651348986642 3.0338224638550004 4.678599319518943 3.373726139344694 1.5590365510736994 +3.939571970722996 1.7440511621362274 1.5291483526477867 3.7499858570641855 3.1228882211760247 +4.095789982814951 4.13648533455013 2.1587954268965874 3.7404114248910765 1.5821394618569355 +3.2034727048518463 2.6336676271771537 1.1044829211236196 4.1633033274074105 3.1114401977929766 +4.651652262747062 3.647528012637109 1.2813216711142723 3.6303499872373806 2.554642742069239 +2.8577843789277577 2.7956273317039426 3.3517680462687545 3.1740519853643803 0.1882724005874223 +4.477635588657687 4.4028427730572695 1.7899933672089472 1.55356870271009 0.2479729566884972 +2.501040408132562 2.331908234221074 4.5001139747053855 3.897164855188046 0.6262214727863946 +4.469442489156783 1.8461402638850588 2.3855227682955142 3.283717114830462 2.7728086211029646 +4.658843522744019 4.911643510183201 3.5698772196617123 1.0322639866395114 2.5501742595474997 +1.57944158770982 1.6500507453012667 4.915913123454834 4.051941713298109 0.8668519197094584 +2.6084393547368414 1.0575839704156906 4.878354727149791 1.4819131687701441 3.733760528283284 +3.450202024288726 2.1666244302252347 3.5688317240684935 3.355891245217631 1.3011207044371618 +3.249437899022795 2.3794557503338987 1.4698722623978515 3.927795228667962 2.607346207766703 +1.9367707681882251 3.885719789782271 3.8588379794877152 2.8679991915734937 2.1863585690384166 +4.7200760482950335 2.9131023158144664 4.824009559294053 3.461201509753418 2.2632719345601187 +1.6674188983553964 4.835209332715554 4.78751469225052 3.2207604767434 3.5340649410888085 +4.682353828160245 1.5508842303934935 1.5113380436159156 4.870194999246088 4.592169627760135 +1.526550272775388 1.39037313595193 1.9170356981223118 1.8006208030408013 0.17915535266989335 +4.405131555813266 1.0362777384243467 4.791285172025896 1.1713766158756158 4.944988776309397 +2.407160528190776 1.6931227609668285 3.72893214429613 4.9744137707167155 1.4356442507715577 +4.322935137911337 4.917437737406284 2.97625111680664 1.211429518017082 1.8622643787498008 +4.593162242586248 1.0804649137275883 3.9704345803377183 4.271230810562438 3.525552566093458 +4.423530884486157 4.56907848214302 3.2500365576544623 4.4003568239277735 1.1594916205746317 +4.466897416685061 4.698273250310165 3.937237533887952 3.703390765366 0.32896669669416573 +1.6431716527174713 3.3570084751122518 2.438939113872332 2.6073080246916445 1.7220873218065103 +3.04083974113589 2.51141069414306 2.5169036346454265 1.5674851486095922 1.0870559219406848 +4.252637166576502 4.371702382989298 3.3538902033039517 2.723680212308551 0.6413588375549595 +1.8938342711562894 3.5806728557655716 1.0270766961977529 1.1756236636978294 1.69336665022083 +1.666170925417255 4.186245146370874 2.149213464282704 1.8430582191613407 2.538602984562634 +4.23850136156805 2.566474849993565 1.022552604311378 1.6083007275356693 1.7716584093071441 +4.704686430201563 1.2739245637421828 2.9364670799653263 3.901018070013359 3.563774066457425 +1.907059172537772 4.2406875489936 2.9897544927122457 1.952494291314351 2.5537678290721466 +4.2756947427232 4.297743902698937 1.8653506322133855 3.213518789059753 1.3483484507315489 +2.043458198905218 4.2678685211071326 4.909534148400654 1.8299398806709983 3.798934342069073 +1.6385756678179422 2.572602122636319 2.0483798170058036 2.273234462110691 0.960710689919619 +2.404725473587657 2.459006697434442 4.349485055874829 3.993414064822286 0.3601846775356288 +2.9046695666992357 4.8789060228990575 4.434177931651965 3.3617518600237286 2.246710320467773 +2.018583897631627 3.145426586383414 2.764618251436052 1.7126363373018703 1.5415707550608158 +1.3514069843101408 4.496438549527708 4.604316685048027 1.009750953098309 4.776204177746391 +4.572664679822426 2.3482724574430733 1.4430812107438529 4.859743873507897 4.0769479405687346 +4.967376716548708 1.5563974063346433 1.409815534583935 1.1041180747918653 3.424650462694221 +1.0453001075702169 3.035666217060592 4.745714353014705 1.596922268158934 3.72511058137315 +4.827911690419462 4.3212009996192595 3.3598742815014258 1.2177293742556214 2.20125885070574 +4.809497103116888 3.5224064627971865 1.8254769230345946 1.470638580904886 1.3351076980693126 +2.5761694787984273 1.610037964272593 4.001158999580323 3.6815405071414564 1.017627674578908 +3.9556291416624703 3.85932571098335 2.4742564199331647 4.988187807500413 2.5157753023981213 +2.395280370760947 1.4695736854552321 4.882214004699449 3.230590998504807 1.893354542026168 +2.538893637089538 1.0415941759907756 1.7235414534208435 2.65408161006342 1.762898368973956 +1.0841924159470318 2.0847115820818596 3.278342555211534 4.306766299553167 1.4348149705550175 +1.2730283810113794 1.47343611269145 3.9967593060793605 3.6180614873749124 0.42845687858716675 +1.5692578374420791 1.6323689823939223 1.2169091511451575 3.4306037698649323 2.214594066994225 +4.841195235602838 2.1407788272041426 2.1455719762072745 4.347801951776729 3.484546691328091 +1.3718053111886483 3.286649349527526 3.784657984550166 1.4033481063768578 3.0556937718049753 +1.3445304198643018 1.742022132599407 4.581338093823094 1.833589370858546 2.7763506093875088 +1.0428130257017427 1.2924778517208342 2.310254226974043 4.928678812246325 2.630300331541907 +2.5748299553025245 4.11319488804514 2.9130909600884136 1.7589367533488969 1.923184494328798 +2.385146264793756 1.0450267382299532 4.269649686544367 2.3569931149625374 2.335417629952457 +3.353780362093096 2.2012068323918563 2.632340120333449 3.310943146031316 1.3375080589866641 +2.956507205067098 3.30579033710058 2.7051000764555204 2.4438258695384474 0.4361913771766518 +1.3268341935443368 1.424431216640357 2.9122189454138465 2.6150779397556234 0.312758622840019 +3.885959541988547 2.6487876310493372 4.315078770807913 3.189903349986803 1.672308005373693 +1.6082680918370862 1.9975484958307992 3.2864571710776254 1.6533888774142995 1.6788243757766788 +1.0284767760895597 3.1251878902300585 1.755889866070238 2.1995283003471306 2.1431314837237463 +4.79657365611759 1.7227963651427731 3.0183659137388457 3.2387277303774398 3.081666134535788 +1.2430118601235374 1.3157400942392647 1.0036789018100225 4.676264318593538 3.6733054650557637 +3.4713421279266274 3.2237385362250444 1.6663740641929783 3.690638015366272 2.0393508973796637 +2.8087309455574685 4.821947544097909 3.9268044459898968 2.7681045092441185 2.3228488147215716 +2.293660565393395 3.087145103348518 3.5856630866873314 1.1416811434365473 2.569565226046954 +3.0722984043160717 4.329657028535168 3.7725940714192387 1.9166734992345726 2.24173858425919 +1.3423856825047453 1.2439857248195336 1.1026726557247422 3.071883735486422 1.97166803197917 +4.30147614234461 3.6967554841290777 2.0406856850304127 3.3552354386738092 1.4469720554580663 +3.8403658185722844 3.5487960025161107 2.960826721588381 2.5342893809493083 0.5166691984185657 +3.9572103727001813 3.481850151704857 1.7722161350719148 1.1238725233190352 0.8039382927846468 +2.9029245346514276 4.1761358910187205 3.0151545396466415 2.3248569503162755 1.4483017364547888 +3.8882620537740396 3.821596199227699 1.041304636923249 3.984499881342799 2.943950166517132 +4.958338503839036 2.167241685876186 1.6603785330477963 2.818087952337816 3.021673798866314 +1.721398502361203 2.147414844224729 2.4388742608124967 3.0067380881051906 0.7099008732790003 +1.8324924856358678 2.3548521598948517 4.085535884790616 1.7748774497264757 2.3689664482269506 +4.530463575903151 1.2792854556572149 2.441795726266449 3.9452165260696694 3.5819594178112704 +4.120435252615026 1.3057293771401666 3.1270013144611677 1.4386387245539303 3.282245786109104 +3.64124790671478 4.802709461099942 2.8090094973003366 2.6582319967675114 1.1712074098902052 +1.639376895169944 1.1923129864996902 3.9890182650650545 1.293785014852714 2.7320593718815305 +1.381580637803602 1.2351339006321918 1.1357013725273615 3.920279197984762 2.7884261354493898 +2.0670937766614372 3.187132091864951 2.0527679719251903 3.796646782149416 2.0725827202485756 +1.8339583116187592 2.683023625938204 3.510832009801952 3.2153809333311907 0.8990012494808385 +3.494762961554235 4.747602677768878 3.699670179491099 1.0242158529924286 2.9542618718903784 +1.7843231323595954 2.472098854021675 4.246946363918506 3.1260277631936844 1.3151022594303028 +3.909450145047151 3.58168196523964 2.536665695793334 4.969370819809852 2.4546865787938286 +2.9110434047000164 4.430695039945306 3.2509851054318166 4.705373478255973 2.103470140389395 +2.715632574695704 4.382670022750201 4.782080917790186 4.671824165386505 1.6706796235863581 +2.918583095885779 1.961719305401831 1.029369794029868 2.3361740050911117 1.6196683486401493 +4.942857802845156 2.7321734922764565 4.081324752158368 3.4573342910662164 2.297060995387062 +3.559165796655387 1.176735303470056 3.0548866424402292 3.9384157778357007 2.5409838228434216 +3.6069833953340242 3.2239844681411487 2.2109610408445715 1.0480506747514045 1.2243564422984987 +4.23270642550467 3.1253334984264676 4.940153756460656 4.4482242834488765 1.2117216702045868 +1.2907456988007748 4.842884913106431 1.9437253829181276 3.654379321879078 3.9425917740352756 +2.1107961349569364 2.9447521035234945 4.229779881719933 1.8399005246361 2.5312064117576862 +1.8755251597095772 1.7148024460007174 4.507437989508187 2.502913940269797 2.0109570991637318 +3.7317040532775856 3.3946472204383826 2.1223922881563215 3.0856260625637946 1.0205031174488695 +2.4211143380997613 1.0261502184989322 1.2095002607654375 3.8450369390050287 2.9819420647155264 +3.3775053992272674 4.089948599448107 3.4830326497011637 4.809614063792372 1.5057866919830116 +4.209434287224738 2.1829987816742227 4.708553801106494 3.06326755247712 2.6102505048528757 +1.0661288399998106 2.4091360787802607 2.383698651895025 3.671409799465011 1.8606096965760173 +1.3985061796681495 1.2165370392656651 4.476846650082406 1.589901060559162 2.8926748183863547 +2.880716839896029 3.314155315922989 3.3428788537329988 3.862619920770145 0.6767567430513605 +3.2825624963882225 4.347305475495514 4.45989882741146 2.8312419645942244 1.945816226769617 +4.886056676175199 2.706870004824237 1.590001249687711 1.7388248544799434 2.1842625789810715 +4.163968451276024 1.1850173602373788 1.9891532396792528 4.280285964208545 3.758116385133562 +2.7581344180715055 4.020601448242985 3.262914275809158 4.995615151744202 2.1438459197750346 +1.2985911001074188 2.810437876068061 2.0284498831808913 3.3584097390403387 2.0135724203962146 +4.258430362041915 3.912974656610886 3.8609992999190936 1.5614193236344964 2.325383347266407 +3.3341433303235766 3.0913248814241006 3.0302242948542393 2.883634809417992 0.2836358164379301 +2.223429943727447 1.4119265194570922 1.4592753285581899 1.7913166074955202 0.8768062605392651 +1.2891155578345845 4.553373246946688 3.2738579907159817 2.299133538989417 3.406679617710057 +2.651270196197579 1.0759869043906938 2.8519348442092203 3.8725868464427253 1.8770316883604279 +3.0528341071251863 2.4612074768227754 2.4872641478566035 2.526434093624455 0.592921878778682 +4.387928030959468 1.0798107618472703 3.0470329264689404 1.485614722352877 3.6580960449861593 +1.4870429787504849 1.5737724984468948 2.4470741574500936 4.608834523427758 2.163499454471541 +2.985167215750864 1.7342365613615502 1.9039568419948147 3.8409570716945054 2.3058181610759187 +2.4151991546037466 1.5287126278576078 1.5641243598381283 2.313474893456408 1.160768962514261 +3.41347135703863 2.2100045245844413 3.5633295936869445 2.599509583481287 1.5418435163433908 +2.235017831742495 3.6401625707837315 2.496625595735034 3.1752102251300585 1.5604194426199793 +3.6286238167073006 4.8461101794431976 2.990043702169765 2.4475400982115296 1.3328852927973802 +4.621741508820725 4.168166718503402 2.5065119309561497 3.1887575014863594 0.8192613190670577 +4.44384098189455 1.694784752622359 3.3608687854855996 2.1821917787639844 2.991085026854714 +2.88512163022421 2.2139965443318683 2.984630028769385 2.458577353638866 0.8527252183007011 +1.7502526814298576 3.2288802609501706 1.3318203692934518 4.099397824070726 3.1378056802659966 +1.8835784912978237 2.559416000489149 4.9795489251613985 3.945457909445503 1.2353544299569523 +3.2833620643717025 2.1021231490910615 3.9195948941761776 1.7466007265673182 2.4733032623266205 +2.4184996919225057 1.1366919574459895 4.024020937225777 1.4800548067594046 2.8486478794550703 +3.541308264125117 1.4686102847976206 4.753939098776808 1.7649451571129835 3.6373289233737625 +2.0877413279342623 2.3228779157713197 2.1065424401880564 4.021612925568906 1.9294517819620416 +3.3615707601315052 3.735585624787096 3.4937977766239885 3.138170500585187 0.516098709983001 +3.9134961312597065 3.5550896318351928 4.97180755776917 2.097790492851419 2.89627852739825 +4.714075376994213 1.9349260822108025 2.3743513539153067 4.181452147826575 3.3150089113077605 +1.4200932351391011 3.4727229977729253 1.826651613301563 3.3720508346967 2.569347717989701 +2.17149120823571 1.6574553739727378 2.355719533057662 4.519026672663934 2.2235401096400076 +3.1780240953530576 2.497066192654894 4.732948944951115 4.344048094655193 0.7841859069174687 +3.670296659642348 4.260584656577325 1.7477710836148175 3.4104003871811126 1.7643061300133973 +3.752587938305667 4.000628917120132 1.4595436253711291 3.705811897792306 2.259921564757781 +2.3575489137723773 4.34217031364525 3.495199668381921 3.0435611461684147 2.035362241857837 +1.2999416192772442 3.3582628136460206 1.6989638348584224 1.5175887593031252 2.0662969431377465 +1.9854451016180525 3.8812536936524924 2.949612114557683 3.5008816550690467 1.974332374228619 +3.6478176730423884 2.8665623712788753 3.86314635661298 1.1362437804085341 2.836610214083712 +1.2128239016734188 1.8254310005226513 3.6579404590339246 2.4408581566311347 1.3625625814554536 +4.513612025240264 3.2437352456922546 2.2368766260252086 2.0483982200987785 1.2837878114142511 +3.04375368674891 3.1191098943942026 1.9300074408558352 3.3343227034424685 1.406335633753353 +2.6249191691697047 2.928403576384345 3.093762386785007 3.364609628267719 0.40676899296924796 +1.8199431219359288 2.1762748412549704 2.208527846605216 2.4955759720379684 0.45756848723149796 +2.8369073257036126 1.40672759175522 4.574677202461623 4.946093323343272 1.4776210631442237 +1.5369820356415929 1.676712021005856 4.064838293317449 1.1161296825994795 2.9520174355400064 +4.597284530265243 2.9695709763275335 3.0344783854593143 2.7553995385163845 1.651464930443128 +2.966499550172814 1.3709710992131576 4.956087977845712 4.708019705957808 1.6146977752320006 +4.705142073853269 2.942493214166919 3.791892037958302 4.333633107301085 1.8440212549659645 +3.6324372097951536 4.130781512012514 1.7082870048346894 1.9399316586284439 0.5495509887023552 +1.909469480581266 1.3284100744810394 2.8752377716629174 1.2380507172522761 1.7372424944570461 +2.292182650792159 4.3722685311181655 3.6156258907664207 3.2426015197005826 2.1132686651111543 +4.342979831302095 3.285563415811005 2.8298486951565915 2.586424779512032 1.0850735820476674 +3.442140731760094 3.614393861571439 3.3362078621945437 2.930664621886354 0.440609192470459 +1.0096881065733796 3.895966241090138 1.9665298306810781 4.52699928954261 3.8583163840660095 +4.294471197372729 2.8402904648842315 1.0572695511512902 1.1012439353108974 1.4548454726200308 +4.176868506282593 2.00866203913989 3.7407932983676866 1.3697583316360644 3.212931075766093 +3.200291509791977 3.9572114478717437 3.4023181614442053 1.8878894534619817 1.693051122743606 +3.1026524806380933 4.837546249882244 1.7588396479282213 4.899598308837372 3.5880665206539883 +1.8610798833342375 2.6926925778606545 2.9124398156504068 1.9069594751934371 1.304825807816105 +4.302937603692177 3.161018741743842 4.040333315482846 2.814619648179447 1.6752172042716515 +3.254802617560228 1.2997302194123823 3.539563461843935 4.351540616237408 2.116982517938325 +4.888800744799811 2.547048484113833 2.0428033826684815 3.974683606231816 3.035780764255385 +4.1473078368807315 4.563474681132078 3.9166844975304183 1.0344165212037515 2.9121578819858556 +4.085518587965561 4.993459866130879 1.1249386662503693 1.4586260655779197 0.9673182749573455 +2.4250910016693785 3.5841993167590713 4.690158382335728 4.10397483762931 1.2989007791954887 +3.739053579785732 2.4291341260241173 3.9964591358575343 2.514920631876558 1.9775857286401815 +1.9379597788180196 4.10471333971388 2.7667132472797684 4.6824960340923525 2.8922386969097627 +3.380452383525228 3.21668355387489 4.413612636921593 1.8844497416478725 2.5344595440437376 +4.431039927618334 3.486086573418467 3.359987315800728 1.931583300821278 1.7126806099278968 +1.7555274696137548 3.351468073410573 1.9058798124567042 1.1184370747793984 1.7796326800685816 +2.3951375189925104 1.3629354462197285 4.483415866007266 1.3843874144487405 3.2664075775392236 +1.4940321231663822 2.0981128121349957 2.315817730832943 1.8030752965963903 0.7923498486474395 +2.1851670632596605 1.0010137462817168 1.1181524262417013 2.1322154771089665 1.5590198681364174 +2.7031573977604917 2.613215891698333 3.1311760270924407 2.928128962382667 0.22207562900954353 +1.4459276036920867 4.748408327300539 2.3076732322823856 2.8388035377913923 3.3449182846873105 +2.5901358249826956 3.459254593994236 3.7018775537959696 3.404200638748798 0.9186832862309712 +3.284422444837916 3.6755378765752846 1.5208606680204486 3.5254220884671024 2.042360832293406 +3.545949429886985 2.573887461090319 1.2762621222916968 2.633802884351324 1.669677032193437 +3.6683653059838655 1.2746823233045244 4.345100041114369 1.5864409725981803 3.65238525868716 +3.4888227292451455 3.648454766590619 4.95908081962857 2.4665500690533566 2.497637269482921 +1.0604579425320986 1.3483705982770609 4.459261837518413 4.114172193463455 0.44942247359482934 +1.5248128156413339 3.1098331382414477 3.777917841328491 4.218766472879256 1.6451859891804184 +3.524756901299513 4.123890208837353 1.2669102958738039 3.7706260153737237 2.574403450174862 +2.9516005678067176 4.450003425532271 2.6299568175611374 3.6258565915758334 1.7991741116197255 +3.1675492343438205 2.912812651668604 1.7934987116297858 1.6501691434297059 0.292291107756409 +4.672239663584247 3.005689498103824 4.17797314655081 4.4697252117986075 1.6918950090473055 +2.7839311919935312 4.175483423079747 3.0195866052795464 1.0871066435800403 2.3813644018106825 +4.105417605068141 1.1427482523619092 4.617110694949823 2.449424264969382 3.6710045154134736 +2.6488083438410115 3.619169048485617 2.543453462376013 4.24116325990569 1.955458630026888 +3.149121704899373 4.695146239183712 1.3098220246412007 2.506504868322938 1.9550554183887772 +4.823241746839798 1.69191605681607 1.954390480730384 3.98739300748473 3.7334032531715797 +4.122004736524415 1.1373416255916031 4.554560478783543 4.597505703766872 2.9849720565043825 +3.7072103272379477 2.624561853208246 3.8807432369471235 3.6250827204467027 1.1124252864871886 +3.4922564271575096 1.4042071181959788 2.7653362394144207 1.425373844087721 2.4810177624403242 +2.738074115729789 4.5839953679152154 2.263599142835807 3.4437581767197427 2.1909360133348663 +1.267369157812814 1.7762005982955733 2.4342271679479235 1.4500430417541512 1.107938549322822 +2.7636672312304005 3.225252796490181 1.9039263767240433 3.737096294294956 1.890389690181138 +3.7975868528319414 3.1231698737040183 1.3119145004229806 1.9176216864343094 0.9064874278895411 +4.707018761811693 2.200875677682494 4.933543313078618 4.975125467466098 2.5064880278373805 +3.8623303418677626 1.6685931046768303 2.533842630435887 3.469692673580721 2.385015381311469 +2.0003409872951883 1.1579710359998554 3.8269227026504016 1.53430820983051 2.4424717700585834 +4.693523106089631 4.711110286202683 1.6591260979352063 1.6625487775941665 0.01791713259360354 +4.914235399302521 2.2509218427180295 3.9625793047001463 4.353973454226304 2.69191910743433 +3.6820256005366545 2.7816520799301596 2.3803181799637754 2.0955553709586723 0.9443316864332209 +2.5775276826799765 1.1964773269944597 1.5699482032452625 3.230589123748127 2.159867669971402 +3.5061724203024376 3.720745476364536 3.5734030339649667 3.0892845048085817 0.5295397498397735 +3.2902272038546596 4.315944548313475 2.7889977228433356 1.379664587894517 1.743076577775144 +2.5415034567396293 1.717135906911564 4.878738045290007 3.3476475878398504 1.7389134096051064 +3.1823924953741622 1.275120463889364 3.4920555945790634 2.888473739473234 2.000499352136147 +2.30730597514858 4.165519962711532 4.092547070057568 1.724002806105474 3.0104752372133827 +1.8405650591489477 3.321471278240962 2.6297975904293427 2.3926219592031055 1.4997784869083064 +3.5100888591506783 3.16832779190432 4.848919652213491 1.3732933220330183 3.4923887260912334 +3.4439072332169944 4.190959059175399 3.1241246092819135 1.1140168499147238 2.1444392355429356 +3.2711925602915035 3.7632045052715988 4.853558193017177 1.0247167644178932 3.860324136566941 +4.932973375687821 2.5292214439954437 3.5622949818532157 2.374752222248252 2.6810970058923655 +3.240269919093814 4.313490003996193 4.816741520866733 2.948201114136683 2.1548189256224695 +4.912651277084967 3.091514154452522 1.2064327584178067 4.645871014043064 3.891821672904412 +1.467380701450471 1.6378917188051263 4.694737796083796 3.4941920138090174 1.2125939890899509 +4.610405309186476 1.7465006377474515 2.9317568221161947 3.159139091117938 2.872917099978112 +2.3034375550409507 4.226707342897212 3.0802680567839325 3.6795211691785594 2.0144654302308878 +3.558555856294535 3.04923378023407 4.282567420334752 3.9349788745346768 0.6166253111363117 +1.9185886029746326 4.964852942238876 2.7794624657779003 4.664622449804645 3.5823950912830274 +3.4025127017498034 4.091947905237653 2.182414692148913 1.2106288308298532 1.19150688628642 +1.9770733158671114 1.6783068652419835 2.778803424016983 2.058462384858274 0.7798413971541814 +3.9366705633243897 4.114739253260719 2.605231245875234 4.571408788912262 1.9742245538638112 +3.063110311275261 1.1964503068902501 2.7775079971894856 1.621585786386158 2.1955809548725598 +1.0403929649765504 4.43619987719066 2.4143133655564846 4.400958575109877 3.9342424650347327 +4.024749636330453 4.251874041171957 3.944122579000586 3.7251264745111903 0.31550719335086125 +2.4395152640093527 3.748422183675498 2.1309342763654175 1.909399617779064 1.3275221012491238 +3.1144126616754546 2.9847084864533633 4.781966936061357 1.9995238173397123 2.785464572022318 +4.863079446278203 1.8177027127525136 1.4314972931426633 3.5085089760146504 3.686230727977607 +2.0075809695084303 2.520574243439139 3.9252119061987387 4.041635009941469 0.5260384379332348 +4.591658931352777 1.3568432948533817 3.69239618773605 2.194868524152598 3.564634806728271 +3.2811570993810433 3.2551707613775376 1.520299365645334 3.642869990293264 2.1227296922550303 +1.297100914390648 2.9695995686732104 1.9527817701980261 4.742611595719547 3.2527530192048735 +2.653818206244345 1.5313711809997068 3.730020425899012 2.4736154152326235 1.6847673059826824 +3.1496016869442367 3.2587500241253564 2.7934222743972525 3.034901044900505 0.265000671910782 +1.7362512505449446 3.586931386161276 1.279621439746545 2.4921145631299266 2.212500065224151 +2.1684412083880407 3.3986672513286513 2.10528070730457 1.2235085151973837 1.5135978050667311 +3.059184635332226 3.606570588480952 3.0400115092428974 2.3677728778123193 0.8669118520888937 +2.9080073063452887 4.831034399032823 3.868478633000032 4.503986717381984 2.025315709840095 +1.569568893975914 3.9702628211535833 3.3806172590035977 4.779786138805355 2.77866962523317 +3.108855028732508 1.7263269159829404 3.1246643823604767 4.153048775826431 1.7230665812055026 +2.595190214951407 3.20723402155076 2.224688581509055 2.272898296610106 0.6139395718038956 +2.2205373401614783 1.9714403757936836 1.4939434158661098 2.7607650055480595 1.2910794854467917 +1.7545382027797896 2.5740339355521296 3.089878060558861 2.23147991431874 1.1867689891046829 +4.433274477964412 2.7502987630472058 2.39622613240623 4.86704201818597 2.989538158047594 +3.1750112046850956 3.628103929738316 2.376139469590943 1.1911993389284579 1.2686118913011102 +3.7108075284300472 2.7253497673017093 4.0336460241180045 2.864585043527457 1.5289965910058168 +2.230521795201586 4.035440308624284 4.06425657030281 4.5422446891642565 1.867137777955528 +4.252017187973664 4.924076980828161 1.2949060184094172 3.0705442841562474 1.8985667267589097 +4.417430816450593 3.0676375616532536 2.7515879729696597 3.947484567507366 1.8033608888747916 +4.7618462408239495 3.8043342143215524 3.5401244326047587 3.363222804154644 0.9737163175407042 +1.515436515252377 1.9476003071450192 3.258813560781686 3.0356938702674183 0.48636194271160804 +3.193923518921119 3.2245151918466153 1.2016860414838884 4.659460102543059 3.457909383975527 +2.540495414682329 1.8390382534508967 2.7323818852308563 2.4318198608749477 0.7631380474906104 +4.403107750027267 4.092865668501722 3.9558383353443074 4.063111103489739 0.328264521285634 +3.490205636807396 2.911767965134599 3.113864025065655 3.680518957928745 0.8097456100210236 +4.320968009957507 3.716817435498754 4.189444821117023 1.909992342157584 2.3581563816789535 +3.440313729340959 4.318062861597106 1.7311793962442619 3.5846422454206017 2.0507969359381475 +2.092729299506034 1.868994542172239 1.2663109817150584 3.8395627207061653 2.582959882355893 +2.156877652332474 2.2825504385635176 1.4425380109936325 1.6075495893333693 0.2074185868846972 +4.538794289785086 1.8061200276472578 1.877674041237733 1.850003651870518 2.732814350335247 +1.806097565255663 4.519130898076574 1.734006874237941 1.1665345187231408 2.7717457926856954 +3.3623395710201387 4.149192665552196 3.9750512326203644 2.8252710061815085 1.3932452625020697 +4.695371719785539 4.707940360400682 2.602457915887135 1.6352675421496876 0.9672720350435525 +3.7721471537453803 1.5022479844739327 2.320291462722055 1.9723998359844002 2.2964038892610725 +3.673347104404469 3.5302840994255096 4.003367901411808 2.029134037587503 1.9794106123955826 +3.667113257696588 4.089663620212821 1.652520433569891 2.3365178243177365 0.8039908204777346 +4.267536507945427 2.728759738354818 3.886053288440099 4.066974387374264 1.5493761295022124 +1.1702784501623738 2.138713407772158 4.626622226788479 2.396541098122384 2.4312811658780453 +4.571452367477909 3.6547897526814337 3.7046815622949727 4.521401980626758 1.2277225220242387 +4.285352835696373 3.801644600623507 4.6119342860887595 1.1156926863298486 3.5295437354652592 +1.2620095157551798 2.937230215255502 4.083732328725044 2.200319633425563 2.520636382513274 +2.542816620758512 1.117828976769593 2.135164920197407 3.4625597804846957 1.9474513859499039 +4.072567106670977 3.4323263228068277 3.446180078684346 1.7538781121922402 1.809362928523747 +2.5014582362705857 1.1896307912362136 4.565317556542798 2.8504493927114356 2.159088711671606 +2.080931827802751 4.584580933911641 2.3697229319607143 1.0580267144638245 2.8264475607227344 +3.8053539763816002 3.754680516236479 4.811467205856312 4.225240547575785 0.5884126905853007 +1.3753463685018952 3.545147413571793 1.9281696202951237 2.1981605987776036 2.186534176190335 +2.964620143189004 3.9124658243534145 1.4776718112405374 1.4393607868505223 0.9486196128542979 +2.1743390611612687 3.150232241904227 4.122771665815813 1.4637001388736683 2.8324951695660556 +3.353042730309543 3.3237396039461924 1.2759552970738808 1.7355181849532837 0.46049616842132696 +2.5352308380361004 3.5291239127880516 3.6054134046793807 1.578830833747888 2.257179736051869 +3.413512782628048 4.1675554477036485 1.338460055106124 2.8205741532889084 1.6629018434010114 +2.3246799313297064 3.7585782797956866 4.412171080116505 3.9531700795426685 1.5055717825003392 +4.780384350740521 3.0474382712634926 4.048082850009747 1.2252354215734709 3.312335991200787 +2.6016170028058485 2.29075659292626 2.244314573467446 3.6558333577056064 1.4453440672337088 +2.319958100038949 1.8073409197294241 4.082985104245936 1.7707424272622836 2.3683839576413734 +2.407288922462652 1.0545952126618614 4.7682428195166535 1.3854729601850022 3.6432008171026347 +4.198877756976858 1.0829114059551626 3.560437773358608 1.9345681509681523 3.5146405690641456 +2.163202067420599 4.582529188228458 2.2760580441626916 4.200745804357677 3.091531447635756 +4.051890809072456 4.735703150264259 3.1382249247336453 4.029906345811881 1.1236970564446254 +1.2481434604486874 4.364756476184511 3.1621529948807363 1.8569991003974287 3.3788612546446606 +4.957992914300515 1.2126332087965284 3.944544199343248 1.5250654798795718 4.458878401296732 +4.329324228014766 1.7970014771489602 4.857731108328841 3.702151876768077 2.783526876997441 +2.560235955425267 4.864914132675635 4.121156815575318 2.027829521052228 3.1134483555519976 +3.3679872490260956 4.877863971277443 4.2600932339879005 1.7377219755471107 2.939742247511616 +3.101408167082836 4.355113710813342 3.2894165148996035 2.676675880314081 1.395431358273445 +1.7270755960340325 3.320508974657859 4.714041078134379 2.166353046933672 3.004953283569626 +3.1983681669853707 3.197588723051298 3.5670124726197385 3.0951050136654144 0.47190810265302024 +3.5268282796371464 4.300742426852379 2.973400446078477 4.349891110027092 1.5791357304543452 +2.187769438015196 3.5304364067106384 4.4462701311582755 2.795781897634271 2.1276432966611196 +3.5837854702231415 4.3984129611814025 2.749812699937828 2.686315301804468 0.8170984448612406 +4.965611190206326 2.7139535794948304 1.3358148814406494 3.642479534957511 3.223455260998524 +2.179178060290867 1.758293656057528 1.5921598123483656 3.4553515052252037 1.9101379442679292 +2.6211857224074473 4.355097007933926 1.5680850214709512 3.4606021230214097 2.5667234610953 +1.0604897080716977 2.0269305789375642 4.951469195252672 1.1187138765230822 3.952723275177499 +1.524586077490194 4.156674038508596 3.6260409465293506 2.0742903288355006 3.055456923939733 +2.952562733985944 3.134034032628537 1.8949609352562335 1.0711347040203294 0.8435766067781767 +4.525009133344576 4.014078224921958 4.6424838825592705 2.541646815705052 2.1620746459477753 +1.915595318755512 1.7484196892922124 2.001575474895211 1.5946436085305455 0.4399332164652726 +1.4851748530310327 2.788222465075843 2.8804473839741855 3.8766427289027736 1.6402250591041068 +2.456060132321242 2.8184943895120194 4.432535142488822 1.0232687910095515 3.4284771613814504 +4.237638394298848 3.4812889204314286 2.1915790840935614 1.6996861887455044 0.9022323132727054 +3.354255994555055 1.9862668434864164 2.788397944940463 3.762993723592806 1.6796521214848212 +4.6175028056672724 2.0840972858987814 2.7491598994379807 2.7026213623655666 2.5338329390522767 +1.02563991064233 1.9641266712012153 1.0929814014874668 3.789306135960593 2.8549823945999884 +4.5964137278107735 3.585102663757266 3.7385815405004768 4.066292266974438 1.0630824937525445 +1.0811495680758498 4.640166831449452 1.5511254136508152 3.2162666037453933 3.929287348100278 +4.28419710754355 3.0036629704970292 3.2909670771083657 4.232710312450396 1.5895433298447552 +4.15682131659878 2.1707003332039783 2.4446227707147177 1.200879690603958 2.3434106362318436 +1.9965224240345139 2.0122006848662366 2.2503932133122655 4.525462362326824 2.27512317043727 +1.3918009736762142 3.1659918652068826 2.4294855439267327 1.3789224324278013 2.0619011059778556 +3.0161953163812245 4.3166635514457035 4.86275906613481 1.2636165887740463 3.826884398927448 +4.081563250028916 1.964985933062957 3.8268731753572762 1.8940585445893179 2.8662993450799057 +4.584012825368794 4.4716006731986475 2.0889971665527507 2.251865525587234 0.19789541260501625 +3.846049461697555 4.25204923789931 1.8737763627157267 3.5648555717651025 1.7391333213859534 +4.987628979583558 1.3364134213439862 1.5968286240186975 3.547635724834871 4.139688804406137 +1.7603170729255133 2.347420048967542 3.688957974124771 4.437193616976227 0.951076485731163 +3.5945773033995128 3.786962590209474 2.072580037545877 1.4430717629984993 0.658249775012926 +3.743710098267982 2.119300921022456 3.124375802386528 1.290350226334123 2.4499704056853098 +3.276958005809664 4.410670823675391 4.774765701229345 2.985189019354217 2.118463937315016 +1.5391111757068332 1.865811082722301 3.4673356302750067 3.256173301181452 0.38900174610421717 +2.877531933789567 1.8725894523496982 2.5921125979418673 1.8943025833626077 1.2234574808507352 +1.302764283836872 4.578551076688951 4.1630921301954515 1.5563625676157038 4.186384851474039 +1.5161090758935 3.038937140611182 1.9001927312132296 3.9001773877368096 2.5137509703671013 +2.686023048636099 4.563527934331535 3.8592514911992115 2.716750129258978 2.1978020743109514 +1.5805342574576593 2.9494374186866317 1.4741014564539663 3.5569003258581335 2.492377779393395 +1.150237990306843 3.953644107364003 3.202195245702191 3.5281881861155715 2.8222964504730657 +4.552972592834817 1.7847549053982648 2.3823011682734387 4.0958998970337195 3.2556796169533366 +3.326109800930051 1.4841981864080345 2.669981513473322 1.3499466761935572 2.2660826038216957 +4.235566269040324 4.334801682417261 4.681083427404152 1.1789256251171825 3.503563463016988 +3.2898146119033367 4.211444376813094 4.481712976853387 3.0180256656829196 1.7296768393110455 +4.281762537418839 3.5525053369895203 2.0676035444857286 3.5594844471556084 1.6605796253504685 +1.5618836680413999 3.5202890448022317 1.1642130556323789 4.777465699623924 4.1098596434717365 +3.9804396308026018 2.7302019623069564 1.1633364443145648 4.472837209572953 3.5377803129888217 +4.550696789996348 4.533955464177403 1.6473796656131854 4.091947864069304 2.4446255232434213 +3.5936674207439054 3.204326743726675 1.6715874253005558 2.9115069905319038 1.2996102073405433 +4.399079856857 1.9716544903592959 3.0800844094354694 2.7560006923785694 2.448963896340232 +4.933630010328315 3.216436049553911 3.9655452773233772 2.7796080048818155 2.0869121479080563 +2.165425720116792 4.449525748240887 1.534840424275183 4.822396999921937 4.003141413509484 +1.890799997971384 2.382973663628691 4.516871059955733 4.00647833150837 0.709038542265859 +1.525709429420265 3.715110329926146 3.91909964596896 1.4685526714496508 3.286130973875159 +3.802343960423368 2.3248204621627218 3.4635868656394475 4.788473546028893 1.9845403507577624 +4.342990491067462 3.394627321431994 3.3483767940534634 1.6862281719730388 1.9136694446546625 +3.125104686259407 3.307315073663968 4.656690353942253 2.5873302918852605 2.0773665280144082 +4.6684045631117455 4.477410541237419 3.2256379336516963 1.7413377883423649 1.496537883836234 +3.265301981330094 4.609215094928805 1.8589470295152095 2.709573147886463 1.5904927696025302 +4.1390878796507335 4.349786097710643 2.573287200900451 4.633879698597598 2.071336568657877 +2.2774045765921502 2.802642232803629 2.2256156942799366 2.973085601103246 0.9135567071118106 +1.8569017842087594 3.2864667208799 4.772451087341176 1.527859705153828 3.545564714615144 +4.601516645594403 1.3661684772713083 1.4299045394122816 2.7080884510887273 3.478682492315173 +1.2892151741610696 2.779304379990361 4.615797888587684 2.969403096374778 2.2205813772872065 +3.145871682976376 3.4545904096105837 4.29448495997952 3.949694201961861 0.46280440683839463 +4.5747188229071885 2.9451100505189554 2.790908767651274 2.949636233617996 1.6373207259107487 +2.8763474401811844 3.7287437144825955 2.2517497750632693 3.7517348158125357 1.7252636120067288 +3.9439247137040057 1.0843192341084436 3.142744895766139 4.937464324758542 3.3761459280866077 +1.0549630915110932 1.5133580830147184 3.5035593274674612 1.7425635014710266 1.8196791660654013 +4.682456081022149 1.741112870166397 3.971788425130984 3.3708911789177085 3.002095498906376 +2.373148409985267 3.6791863009504793 1.4251550217781936 3.801014474260755 2.7111700630147855 +4.123997509289072 3.7398510704165093 2.839918614982811 4.514352933870455 1.717934450078699 +1.7803468606749129 2.181147344174922 1.5270377869104457 3.292334311120208 1.8102245291567867 +3.9936818414735225 2.537369638698759 1.9272766456605979 4.338869668676702 2.817201828164009 +2.1912212370832336 1.5174062993245125 4.235645185014237 1.8762990454099135 2.4536790288896 +2.3767926844443994 3.4594368920538843 4.856878689282656 4.532970201079326 1.130059816558635 +3.413742771300513 4.738283867634248 2.999991552074288 2.4358540110295848 1.4396736717370842 +4.274656840886511 3.9613660232537398 4.803512841110823 3.07420206061165 1.7574603585753137 +3.80386204411146 4.186094230735486 1.247553691128183 1.2196945188223816 0.38324610627239036 +2.5434422350113204 4.1216471097053855 3.1883559289532104 1.4766760792941254 2.3282135929156196 +1.6035378754602565 2.685528386216087 2.874205207256704 3.2852176510074518 1.1574258914866316 +1.6037148084291983 1.2927236288538864 1.9788630639241376 3.862685102253192 1.9093195085862076 +2.175758037591613 2.760625248310587 3.3985161342660213 2.828998555326462 0.8163454703098252 +4.984944886796644 3.3251240788842384 4.952333907695282 2.85144629190892 2.6774491383672436 +1.8289590994156208 4.850159674929255 1.7017531606160543 4.296041637997696 3.9822086360911673 +4.165682907356337 4.303253829566751 1.4410911420613823 4.91815117307804 3.4797804841586464 +1.5505892277882056 4.766527666759411 3.9321095026467647 2.1722820439535977 3.6659586369219994 +1.2595696832759278 3.3990431205759557 1.6670676022494106 3.0782442103979664 2.5629603992840115 +3.507391622421177 1.7605646067400396 4.557997378475035 2.2236934502536863 2.9155410221814897 +1.6953583408287924 3.0375807952794536 3.2031543240075355 4.7665909094745995 2.060556981500019 +2.540578700818198 1.549141156515378 3.255940636921852 3.6053070409593744 1.0511923175724391 +2.692305397156677 3.0516731285736545 3.442372535484365 2.2018337536109174 1.2915423476277663 +4.747697024568593 4.405573244654512 4.413579416242105 3.3707677506482923 1.0974993624969633 +2.611959662627644 3.9670936836341326 1.9677787816024637 3.783124096028392 2.26536240489185 +4.393224967764425 1.1352737021577903 3.693490341230797 3.409597629070603 3.2702968551930485 +1.9213648973658217 1.840645345051354 3.3497400133809085 1.9556614464747568 1.3964135121205887 +3.0449015201613174 3.3468455994399893 1.882857223773624 4.9205501044384485 3.0526624877724697 +1.762674698514242 1.428034401724131 1.1558199449907653 2.5638966891979544 1.4472954936062266 +4.252352368996383 2.448858854479973 1.6259362666567387 2.482747303957371 1.9966757399595303 +3.1548674671550865 1.092445933634095 3.755646084110552 1.1351149861811516 3.3347812247801425 +1.4154321408592803 2.9936513297948366 2.4342023403695916 1.1536455454046681 2.0323881306126648 +1.9777131959527838 3.006291340344433 2.702294944899836 1.1431376841010428 1.8678716130991886 +4.850164415440453 4.275799193945373 3.234151544511727 2.623665381128931 0.8382056808116601 +1.3770799446981092 4.7710569585627605 3.836723914728725 1.6998665810631084 4.01064075118704 +1.7609830919125735 1.3172673223209004 3.922220097214336 4.705009338801725 0.8998014675078555 +3.0552220436609936 4.529360116912843 3.2213225567186234 4.044808522033669 1.6885532843477362 +3.433625241107222 4.747421587452633 3.350484912888245 4.664176093207288 1.8579142490757194 +3.194935457028916 2.9448110825205656 4.499197246150317 2.2431580128029083 2.269862380217346 +4.584357280266994 1.4370443671411892 1.3824457551561289 3.89156401665873 4.025078014564969 +4.561658702122642 1.769725313806143 4.644034793958118 3.429999489100241 3.04446608886317 +3.6021910576144203 1.2291748354544993 1.1328842423844847 2.831711759057123 2.918427816828483 +1.8732890678781478 3.2609182922002784 1.7585855030805915 1.0836493986006155 1.5430663010134862 +4.618649182311454 4.009131329373357 2.902230408939803 1.1255907664191964 1.878286568238728 +2.046753349854636 4.752260168231954 2.518351913205548 4.301502426739089 3.240276670008456 +3.81061968031282 4.883118667971571 1.1075340630684267 4.418478501345965 3.4803171050767787 +3.5251072682954105 3.5329342434641897 4.01990169556003 2.279757181381374 1.7401621165185626 +3.769250587811117 1.1550551711788888 3.2068009737635665 4.813057350744492 3.0682368267349958 +1.3295095013959566 3.617456332388753 1.1244042065099542 2.9070076928606268 2.9004096074519463 +3.8860156517326834 4.971156430622399 4.468871913441529 2.9111187441407713 1.898453435424723 +1.5419597358291073 1.7554536603734023 4.3309871363242625 4.42651749885626 0.23389250946282997 +2.6043494269523624 1.404229370409079 1.97339992881715 1.3822173421114567 1.3378284646924987 +3.7595168795187024 1.524168120418687 4.3184248865693355 4.156441506176615 2.241210095090023 +1.3363380345020182 3.4653910249140263 1.1336142188243326 1.8091553581552495 2.233656747781724 +2.6826553759340985 3.3618506165565583 4.90738277726123 4.749577948294515 0.6972865543873731 +3.50812674826294 4.249387500257644 2.3633669812094626 4.705468324687035 2.4566046091235774 +4.8651947562712525 1.0654667326443352 2.394973560154885 4.5559084836073405 4.371220973244454 +3.4006123536532864 4.372390946032324 2.538887843340658 3.78896794506336 1.5833678957618231 +4.461532468350196 2.551138579303006 4.909945456600877 2.0544432509721635 3.4356218734982016 +3.713924256092921 3.2623619683515117 1.1568414949788077 3.955420727827378 2.8347758680787356 +3.447494933802088 1.9784339812608827 1.8188971236322153 1.6234890186616568 1.4820001382487986 +4.540190524317227 1.088789377899602 1.5774521538926805 3.081074980089025 3.7647113404551455 +2.682725177391535 4.087849157037205 3.888768299919622 4.624099801812044 1.5859022087917811 +2.8554903342124724 4.903189035637683 2.730475552104579 4.792525205232544 2.906048647869415 +2.4380781600040016 3.519564886831508 3.001263339521083 1.926152420478422 1.5249514839983696 +3.8086547491638107 2.588330172660209 3.1348365807520207 4.155157000264211 1.590674646334764 +2.546398112263087 2.742532580964852 3.995504065035518 1.2958768628435093 2.7067426476538134 +4.390206160029411 2.2536344374053585 3.9073411909097113 3.219150728191807 2.244670318530673 +4.38600279865088 4.13012304711995 1.4462523581671318 4.397853836621133 2.962672059957932 +4.251693273611698 1.2170023450153922 1.2531988324867163 1.9563221952291743 3.1150812983514524 +2.4615025434969473 2.8338249221058653 3.8389622342654643 3.9476018303964646 0.38784857284835966 +4.635906770583459 4.110589706611883 4.668637899914184 3.074685545208107 1.6782854723713616 +2.513289939070351 2.2667102568554203 2.9136220715689527 4.093180189475394 1.2050555560637866 +3.6293932467064467 1.787852738481611 3.1657347136978427 2.951844770330723 1.853920265628103 +3.3031797392114735 2.6057498346800947 3.2199952535927694 1.6372934139831976 1.7295530014538933 +2.383218421533353 2.02957548897308 3.268289214222746 4.979480373609966 1.7473518557276342 +2.4032981091432797 2.0745196505977854 4.054181498158175 2.46517769489913 1.6226608892726972 +3.833913789756556 2.2531443640838473 1.9902723548545849 1.4628558327222674 1.6664333664925743 +1.954923967700756 1.4207408301671722 2.7426191056693 4.163026072737946 1.5175333856368276 +4.483069843436327 1.128927093451865 4.990445783939631 1.589012955679558 4.777030340330555 +3.149422618374905 2.2380897351975313 3.517505301431434 3.5948068147127383 0.9146054602482779 +1.4693298598483282 2.1295388474638886 2.9796932297509025 4.002090802054476 1.2170343886598292 +3.5606855687023273 1.2687655006167025 1.0554271142876024 3.53036004347921 3.373157364027146 +4.338681674803283 1.811590103758629 1.910333611853686 2.2997909986020515 2.5569256666039006 +4.524992905418328 4.426657432765053 4.891232478592961 3.7670620037755485 1.1284631680445536 +4.81133244697141 3.689576706078965 3.6296558749474594 2.664708583511947 1.4796821339307613 +3.2763088046467623 3.0993174832654113 3.630622997490749 2.075138828226532 1.5655212961425684 +3.4794634767054538 3.1808303728384675 3.8672504653177806 3.310801264433333 0.6315199473414679 +4.575798741982602 2.3434363084862535 2.0112416202331445 4.744421767685969 3.528982254548184 +4.156769649578555 3.2625471324182764 2.2458984969707707 4.126982106775593 2.0828128714007903 +4.334621098593697 1.516828117918804 4.216284029295567 4.469306540703605 2.829130197290314 +4.521465792283507 3.137950942207605 2.1447807883445664 1.9392110157680724 1.3987037827137303 +3.130853019651082 4.86379517313301 3.33147630175886 1.045762562710487 2.868375115668987 +2.5615624683646283 3.3828484500570988 1.3343652020626737 4.4832297253831115 3.2542062703446772 +2.518979195768235 2.7815843180476385 1.666936105251061 3.25664320126729 1.611251098175493 +2.343410949607548 1.8833118694500968 2.360191919230072 1.2214375820647545 1.2281907848435252 +2.4359846385491313 4.446620651441609 4.774240563071999 4.318771562097304 2.0615792944218874 +3.273188787664265 4.497378678226189 2.5083684859998736 3.2126020181397514 1.4122980407634305 +1.1132050483205052 1.6487911076686195 3.1314072086508933 1.7673400868680127 1.4654458501415444 +2.480580142040138 1.5706211288608585 3.2567309171921095 2.0803855199026104 1.487216829984921 +4.263407180172979 1.0303062719192781 4.305886128565435 2.947874794304549 3.5067272872197996 +3.72178672653916 1.6419267779272908 2.24223841370921 4.004192612105826 2.7258576637614866 +3.353122487851716 4.018069604600641 3.101307285022105 4.125217314000951 1.2208793615735218 +3.2977898127761276 2.536800537900132 2.8363591863361846 3.5921451589728193 1.072528373941966 +4.076552166927234 4.625870623643163 3.114540562432303 2.6222917334004867 0.7376040106805031 +2.525477631292024 3.261403147378818 3.796584230922312 4.28047565420079 0.880759487459593 +4.056572682347285 3.410596810554913 4.370950661245751 3.7911593482476977 0.8680108257193123 +2.0021703922442944 4.945315996287439 3.7575346624814885 2.9770551039587927 3.044873460075191 +1.5898633457475646 4.835834360443114 3.6645348973969964 1.110199180407407 4.13049134889935 +2.79539288641643 3.835455124372502 2.062805167509934 2.87513085724321 1.319697876418249 +3.6660340874099338 4.705805928967903 3.0882655287150462 2.632247880344829 1.1353755229535092 +2.734090438503493 2.7877346347202376 1.6313255062799499 4.695397152836128 3.064541198126928 +2.8159493711406656 3.1253684742636425 4.50943894876238 4.803988122120058 0.42719948139378533 +3.7620132775281365 4.864264806600957 3.3744198358918625 2.9143584289327586 1.194409867472871 +3.984441241993569 4.834707597636572 3.208293678610704 4.870049015769052 1.8666503893639772 +1.1177077857123479 3.1862220832809154 3.1961037778431756 1.8702596303977068 2.4569521978583517 +2.8162512661474226 2.524250082050772 4.792413557260804 3.919681333039625 0.9202859483377399 +1.231788284826497 3.309535918264966 2.2504536164281688 3.768793518946099 2.573400724301856 +2.8658146925921955 2.7701387933855024 1.6938691559099825 4.598057878828328 2.905764273993178 +4.9476400959954 4.624981253647862 2.9388841698911587 3.3090447745010207 0.49104745366429914 +1.3337295934000135 3.3367131300739836 1.0607175931510482 1.6170756929218384 2.0788163419040964 +3.952430887722257 3.2864129525110695 3.6439171339817857 1.9790159339168572 1.7931748091027302 +2.6627304136008094 2.617859082363632 1.6320123991319089 4.391072871984944 2.7594253259015744 +2.212503297822653 3.4789342204331812 1.8565305517521593 2.2074738981291993 1.3141569594650666 +2.9521487861511964 4.515986886648365 1.8209743820792603 1.8535296173247104 1.5641769234675724 +3.314022881342483 2.1169283225529303 4.254391256200597 1.7804601920766085 2.7483395519333493 +3.819078607345069 2.1157814621936324 1.0789932135230282 4.329420092732624 3.669672473364519 +3.8566794751385776 2.0903686929905474 1.2283765727868805 4.864445888930881 4.042382200007353 +4.579555371704808 1.8483428402889608 1.8979678853598099 1.2163268406688883 2.814987816238339 +1.342279551692283 1.9208517004701129 3.4666901602398528 4.413618071188287 1.109692840327701 +2.359675855944375 1.7609088319571864 1.0772476183910866 2.1619381985326416 1.2389816801156899 +4.0314739836267695 3.2386996400018915 1.5342128473419856 1.1557662948761922 0.8784719420579695 +4.927458484989863 2.8039198279201383 4.987453166999481 1.4811969415917972 4.099176642483174 +3.6442582628615416 4.17087885908753 2.4957720859079413 3.282469716998223 0.9466902424407238 +1.8346179048333915 3.4351414699639284 3.0128321363260127 4.8551646163132 2.4404640233680777 +2.9204193198393713 4.775213037087064 2.6649927936688815 2.91803421322125 1.8719748111421242 +4.972578339977678 2.8891979355682897 1.237707485854325 1.8876647661110826 2.182411138084616 +1.074398135202332 2.7395805319533246 4.210239412710541 2.142083298363332 2.655202841170732 +2.594584613634775 1.2376856070443876 4.696279191659415 1.040652177422237 3.899331196667783 +3.1050860600749712 4.117153493440641 2.8894409327091104 1.0895714510241299 2.064899668453733 +3.3816955147269403 4.558069802781636 4.702501488524758 3.933997931893343 1.4051527255609364 +3.7175512625605696 2.7121991093576767 1.7559211545253253 3.052794517255598 1.6409184839317943 +2.982228220616214 1.6033179660384094 3.7868813791375953 2.0251980731059103 2.2371682013050678 +1.886645969412061 4.9017412715071975 4.409423748371173 4.855968354569979 3.0479832292913636 +2.3257286483787225 1.2171526809740625 3.1984647135990683 3.17722300938351 1.1087794575591483 +1.4207435542310969 3.8631314816250755 3.001082625912224 3.7101054066363846 2.543220810599362 +3.409926871561571 1.35492461256728 1.3523457970713375 1.2097335471451158 2.0599447901098364 +4.90403843727117 4.990106951065297 1.5558344369396115 2.8570411258185016 1.3040500896245872 +2.3595554012709856 1.6917538604283373 2.9887957145555397 4.6516775496771405 1.7919639771851437 +2.9460637412608 4.065436423888758 2.8911933077568284 3.0250501204749907 1.1273477054240082 +3.329027784180129 1.90223647821355 3.0002949237504084 3.5773558675134143 1.5390687975521 +4.013925195856892 2.2410571493552878 2.491980618063028 2.0920670477167564 1.8174135396363473 +1.604856080981678 1.1076703417468563 1.8571158823634986 4.508742200689783 2.6978353899634206 +4.036796714250521 4.55967114537196 1.0022802110599303 1.6507317812903364 0.8329988653382714 +4.167167233088435 3.7680786926948246 4.602504434960938 1.5650388835024942 3.0635712231593786 +4.1517155509811445 4.853295503757419 4.392279225183916 3.744819674296804 0.9546823032676895 +3.521871712454596 4.04357371594439 4.944241549767708 1.5112518592045312 3.472404238558397 +4.080067687327441 4.056592622417907 3.492317579257052 3.1251212385493945 0.3679459624749277 +3.6049417476341237 1.844235214748469 1.490295095266092 1.0253243161231596 1.8210670828948088 +1.61126948866201 4.132744419337689 2.9175274297264653 3.138107626441167 2.531104788271046 +1.3906690113873288 2.4810066915204736 4.14553138327449 4.228559041370255 1.0934943295358213 +3.7258327795392923 4.410763551308506 2.5341383153964205 3.7571571606426284 1.4017507831079454 +3.2531089851756643 1.7701965283433099 4.977631617648765 1.7938973342842384 3.51214939057256 +1.9033777277532318 4.2242671953362745 2.75054062362846 1.7348474537778227 2.5334088765967357 +1.1249629778071055 3.6222936441458904 3.0556687817026438 1.6944946893960693 2.8441967876015095 +3.345957626035893 4.318762951070846 3.974126692357555 4.703773886618152 1.2160325770754339 +1.082954452764631 1.8095115694355344 4.395293073393045 1.76503630822548 2.728760871621931 +3.2805959325866785 2.724581615075052 1.8919827729064052 1.4022256634512735 0.7409547540435688 +4.979656445013006 3.1289567887085448 2.253879422669149 1.9055820527079144 1.8831888582315277 +4.308669548173043 3.4113621675150907 1.1310693131628913 3.809892643493977 2.825111497004917 +1.7543725155821157 1.643529710536812 1.0441792345425904 1.8802335425718222 0.8433699860704961 +1.8949910450470209 4.62853528818953 2.524384187212447 3.0819081564552815 2.7898202640130494 +1.6533305535405889 3.652312568051841 2.9125143680605428 4.779336277271946 2.73513311102973 +1.287525921551135 1.9001418798961027 1.6602504790171206 2.5510424997181036 1.0811145806821143 +3.619462729317378 4.916351706268758 3.9546832741237257 4.3745192780671065 1.3631519683238342 +4.2132569058003915 2.646676535501461 2.816589870141671 1.1021740614495572 2.3223685370111626 +4.787098396969242 4.600249855905432 1.019151645176986 3.195186764943394 2.1840424033783044 +1.19291731871802 1.1901093218310406 1.1484340256652525 4.8724415344436665 3.724008567428991 +3.799866529901796 1.388821876775022 1.9182909605625715 4.90107887410584 3.835382647996287 +4.35806251149481 3.4767541775609163 1.9950196495984778 1.383224316033444 1.07284570634984 +1.3287855842161882 1.9849903428031008 3.138340417824776 1.32896577255999 1.924692518850525 +1.6808688750132568 4.209232870465244 4.734979556447172 4.280428279885989 2.5688988607030323 +4.312869840144759 2.588632121010148 1.3778815082941365 2.7877150913020623 2.227246381490717 +2.9436391828415016 2.4709616196688153 3.5413348992694162 4.889387885382683 1.4285205396128415 +1.3724556794285987 3.5501312913183294 4.379305272874822 1.350524666079321 3.730386445761328 +2.7330988779714125 2.9069924356553933 1.2627673019823726 2.0625390278882403 0.8184581742291064 +3.976592078142431 4.6522692313903855 2.4088936988130882 1.3485344235126293 1.257339018776151 +3.7940780560209597 3.033672140680887 1.4851009393428152 3.189787490816758 1.8665940626875188 +1.834044334672829 3.498722218736326 2.2698066806530988 1.7860037430546005 1.7335563850417606 +3.5682721678909903 2.4122468178691876 1.3156901505164873 1.2705778786215602 1.156905236814387 +2.1676444222268634 3.4729758316164165 3.2340057969707754 1.6352203801728815 2.0639779304305876 +1.2770308813690114 4.275896315503647 1.0684355132494954 3.215247334249997 3.6880882428210695 +2.7477198265314287 1.1461964441714287 1.0638957422378632 1.5051004184161347 1.661185934965556 +4.060849100185411 1.84526383749865 1.7377336743844514 3.834370259221098 3.050361130277896 +4.7162596901495775 3.2065888161103935 1.0393586855058081 4.115188885643276 3.4263446364894365 +3.20442960169547 1.91438616702828 1.7719571144539379 4.124160971945033 2.682736485479688 +4.950614195528997 2.0158348711117067 2.748674347474429 3.804526708955393 3.118934736776667 +3.0537673128583958 2.354022608869041 3.120285400339503 4.18429749783647 1.273485137086823 +4.441958345093271 2.6492691739756524 1.6681932017332528 1.118568374833766 1.875052509821169 +3.8833119891177468 3.432243737898258 3.5361403672966216 3.314486505527122 0.5025863126822497 +3.437271565647344 1.4833001041774514 1.6198240160178043 2.9590797020893476 2.368883759265901 +1.2357661962442688 4.7174584799536206 3.0990509586697566 2.153040670955791 3.6079241431745626 +1.1988705507384987 4.469765250283922 2.1103354798601006 2.5047363867319974 3.2945871077960165 +4.896893773014491 2.0477012470592975 3.8669442262850087 1.920323404797331 3.45068553661563 +3.9458639466589114 3.2551162950882215 4.2661456674711715 2.0382601124255584 2.332510742640068 +4.1361645518021035 2.256173528934489 4.521809413907159 3.305167403071047 2.2393266909037988 +4.756207821761297 2.7686784118421945 4.302191212556597 3.651456342584183 2.0913462234387183 +1.9953584765900088 1.3985901979703015 2.0583485014819702 2.248114322829509 0.6262135780374254 +4.0750735611101625 4.533428701231775 1.1794133481647036 3.5069926122112753 2.3722804777039923 +2.7350971723259025 2.8718479059286866 2.780419801805351 2.638441015153131 0.19712620069421583 +4.411231943123129 3.820400690615876 2.511178334517339 2.8667110215464917 0.6895542476741471 +1.9798022635149337 2.5907474695887145 1.39515868537667 2.050545473147785 0.8959831953834151 +4.9755133622204655 1.7046487820741807 1.4993463180848634 1.3519357091873232 3.2741846296858514 +3.0127181069795865 1.0698278749223236 3.9919087601059817 3.3440789685867953 2.048049289593226 +1.1548684860856264 2.8033325403339484 3.0710283769591737 1.9209548940274361 2.010000685147036 +2.4334357803162434 2.3205570657246875 2.1169646787499605 4.788430103383815 2.6738491205043684 +2.5184414449488988 2.414315851316115 2.6258040678269596 2.829417400850488 0.2286930882959298 +4.187304281271315 1.0514341228022448 4.671004018716729 3.1564868607711047 3.4824479712536296 +2.8502335321128407 2.5236371693047666 3.1562739958530597 1.1050092885672815 2.077101847179303 +2.8529298453125698 4.814387506372128 3.2262237535847302 2.4401676852861054 2.11310205589752 +2.590877368753195 3.9067258305376154 1.4079891753389573 1.5832608653381834 1.327470278272026 +3.667514681767678 4.917919155229872 1.976230426833684 4.971647681355112 3.2459260428942236 +4.025817142532179 2.2152874496644235 1.9206041371047542 2.256758984690191 1.8414716534095759 +4.526202987922788 3.7717359132493007 1.786177578070817 1.0356838768316328 1.0641716789907814 +4.7617031222480755 4.52930651840478 3.237753295938909 3.9996497952257672 0.7965516035408298 +4.871664168924884 3.179816986388977 2.5522084001400795 2.5148279810682594 1.692260081897777 +4.303263503555778 2.980642975336463 4.594883973703188 1.0691819081967626 3.7656208142062595 +1.8941246246129433 4.182584370739647 1.992008582915759 1.398615148501782 2.3641412347082635 +1.239024955465542 3.579647660978279 2.779068325969127 1.723073854845706 2.5678082040146606 +1.638541958419562 3.721520506514109 2.321512213589528 3.7814270788509354 2.543649159305052 +2.2289309109407984 2.2176427519751103 1.5335062275058688 1.8221765348563168 0.2888909290348811 +1.9559935037607996 3.9517749332477456 4.910215968264573 3.679996332252956 2.344479444805075 +3.7380069695440503 4.8434617834156235 1.8930618884417756 4.660897784032642 2.9804271322132885 +3.7964400958932436 4.306314112044637 2.938178224410065 1.8462298923604128 1.2051235091111487 +2.610048021111662 2.6409063882824864 4.92362788854791 4.354601029379946 0.5698629706157496 +2.5605849893508883 1.5152988560366456 3.497424682742209 3.833433612879462 1.0979640711931435 +2.520095144038504 2.062017681544383 3.298426710392588 1.3371429926934146 2.0140677205488755 +2.0762390799304065 2.492142172641263 3.8008796497404407 1.1980600006083466 2.6358386726874183 +4.456068522239122 1.7970687728239345 1.9878925835547085 2.6753822716669977 2.7464380092495744 +4.69858341752441 4.124543297925486 3.7745378475635545 4.651168061074722 1.0478561877231924 +3.100603418744061 3.7538972200163645 4.437575342475822 4.245639739661144 0.6809053285212634 +4.505956721218244 1.1738882176381504 3.886257363233575 4.125997061702913 3.340681911761826 +2.8685708064228135 3.698644202982785 3.123448774388282 1.2993928559701104 2.0040463660287324 +3.159878395798237 1.9926593450106327 2.65182930282908 4.3892281573504714 2.093073121564022 +4.761406491659196 2.338450058292369 3.362725161189149 1.246347834810222 3.2171059767443952 +2.411319974364129 4.35733025988875 1.9725904998242876 4.36947301070539 3.0873940147534316 +3.233337686089917 2.6002861268800284 2.373749657599836 4.927776629843676 2.6313129900426335 +1.0935942529476566 1.8460878838603576 1.6807591847411585 2.984221468570238 1.5050782670443088 +4.712006512230793 3.926238288160477 3.459441732647034 4.289366838819326 1.1428943012429924 +2.914184531217455 3.32274099420978 4.364911408035459 1.249398082107922 3.142187401713154 +2.1455560665203643 1.41420688857488 3.634304242933043 1.2672833822981202 2.477429993917573 +4.542884567048034 1.652280104397677 2.610313107603584 4.861747103303541 3.6639526738875374 +3.3212245102908295 4.466283836306028 3.067654311110493 3.8618619697249015 1.3935302885463814 +3.029918403806574 4.321200126819653 4.875818212083599 2.7659410510188005 2.473659257652614 +1.5302652120273428 3.916614985757153 2.758348907337746 3.8864139904414814 2.639544671775447 +3.795625735589803 1.9139833180126944 2.7833379662650706 1.2196139947484 2.446591679606815 +4.600652470716598 1.0760222969648066 2.775445975167338 4.215274290701269 3.807377501632175 +2.0378752057070866 4.963172098112311 4.2420088914041525 3.820132921639683 2.955561070690365 +1.2946359104569716 2.8229777650070638 4.425427023130802 2.8839711940202495 2.17069456567904 +3.2066776496095617 2.0510928478517005 3.3966157211280614 3.4637144976378194 1.157531200384189 +2.5471267240483564 2.1118033893528096 4.54341460733192 1.690208302481056 2.886224631550908 +2.83084375341602 4.0256111300547825 2.0459597072916735 3.5413965422055784 1.9141056427213174 +1.1135738571396878 1.5283972022908823 4.5511352474471884 3.5805526085081905 1.0555136506422909 +1.5052341132396885 1.5796351261111266 1.0490341949686486 3.0835019250864657 2.0358277077412614 +3.598198352968827 4.730967513071496 2.3038226221318756 3.467887480057866 1.6242576653776217 +4.573493994385602 2.854229102082572 4.981383436285673 3.39196963364236 2.341390186606843 +1.3595199232006157 2.5764680398194355 1.8354477536623088 1.9749226290454822 1.2249146743366432 +1.6142991267498399 4.398548581768147 1.1719112453514593 3.5822888179645607 3.6826573381630237 +3.450510010427226 1.4037387673600565 2.285282752598071 4.327294392270977 2.8912080620402185 +3.87258951718916 3.486982367288238 1.8647794393348684 1.7215387341808177 0.41135237165688243 +1.664323617053907 4.72968385271934 1.3805428982684904 3.3742117064288593 3.6566581315499573 +3.2411506885891836 4.546705810434207 2.042102265817943 4.020527797676255 2.370367431704338 +3.955940058622623 1.4985340109906717 1.153944034450506 2.0751610494082118 2.624401888352025 +2.998595106683049 2.9900216535396695 2.4638521077320217 4.442021785404156 1.9781882564003557 +4.666055475781757 2.5759748320056564 2.320987177914723 2.064048800047782 2.10581443330328 +4.42290840235969 1.317732788700619 3.6126094648411007 4.377279176935895 3.1979423634984614 +4.33183851613478 4.841637800297132 1.0109331518060674 1.3015525356405804 0.5868176346982076 +4.012170412897353 3.1539414541188986 3.3366398689028616 2.307415523710596 1.3400968988929114 +2.3238986911127792 1.2477137156895015 1.3500488317949366 3.085774629419337 2.0422825822754453 +1.1787897213874263 3.243913447298241 3.7172097326080866 2.627972745413822 2.3347747680647495 +3.454170020993298 1.9753919242769462 3.5376522218370257 4.9445654868938265 2.041124590690344 +1.3826271094268523 1.7895663648893283 3.788703953984902 1.4325301294764015 2.391057224103047 +2.8176008122880085 2.641401167881855 3.5140356228166376 3.05175990718626 0.49471724444417 +1.0303882379322156 1.8608009797410614 4.042766804387277 1.8398852877231442 2.354203113203904 +1.258456528962585 2.2217894027444713 4.666121541428825 1.7804686650747579 3.0422036007669453 +4.620632790149939 1.2070091737967763 3.593381376332226 4.160074800939796 3.46034212638252 +4.5549856184449204 4.1362411694470005 1.1115653293283132 3.470758126147036 2.3960671038449486 +2.146200574401785 2.785851058586347 4.6117504955483 4.806235352209907 0.6685634610029403 +2.0202724314936265 4.329132780624568 4.43408670575894 4.74630310345891 2.32987450107979 +3.999719041970461 2.2980340516319138 1.3154202294766901 4.728174994450502 3.8134796304943017 +2.0859051744216703 1.8193731654947833 2.1491000968111917 1.8721366551315461 0.38438009809254775 +4.636042092527806 3.8868419162063415 1.0938674781359548 3.379689407731223 2.4054693508791063 +3.798329284220953 2.209417134795144 3.0192770959741324 1.8839238703117323 1.952861686247892 +1.1457972813056494 1.3204802533262332 2.950890252309492 1.1370633890400899 1.8222189853669244 +2.446692461556389 3.9555806016615995 1.6953301860867716 4.4263668461773875 3.1201449738928906 +3.996997584221787 2.886002736287248 2.4821049013154153 1.7072496082947533 1.354514775578039 +4.4969146083860245 3.6586836927289688 1.4121980984636013 1.9313432825525094 0.985973016936048 +1.6259308157382417 2.9204293889940254 4.651955893114591 3.570806750388303 1.686597173298665 +3.709737686821111 2.7493976438169785 1.4556729916100877 4.758132254972663 3.4392572140458566 +4.520434720720272 3.5556808261355206 2.651496115812976 1.7461575770708229 1.3230222775328546 +1.2608027445207313 3.598133268375836 4.453816730045775 4.844767827650983 2.369800991320473 +3.3328227629970306 2.4125591332992444 4.094977406269356 1.0202060096029077 3.209533344569376 +4.16799153611751 2.0277389438143554 3.4798238922198124 1.775600259705755 2.7358836503915485 +3.766297497503981 3.8978247513539674 4.7761665243979206 3.301289528503446 1.4807300805764798 +1.091765852160513 2.1960255386975245 1.0174688518419464 3.9058483515393783 3.092268680044347 +3.184699624436623 4.877239502878098 3.650322330385942 4.0228495952101255 1.733051586985243 +3.731513573399284 4.337340143517558 3.3268216309488716 3.811761856647041 0.7760108604661814 +4.641728893497763 1.1326884377709598 4.194942046833736 1.2560662623487358 4.577155863258286 +4.7581862068783405 1.0687967028324574 2.9937186627195906 4.7026400185635 4.065957096800618 +2.172581074525346 1.6593077493910076 4.078440537683321 1.7107290746517347 2.4227065605363007 +4.982092167957055 4.183696821513697 1.9409596521646786 2.150116765831881 0.8253374021695639 +4.75077127993302 2.3964331780943398 2.1446489869314074 4.170810915975988 3.106161628196288 +1.8363392708802997 1.108700315727079 2.251660337014686 2.494072485926423 0.7669563866325626 +3.3131584751069005 2.1531333354747586 4.914541421123402 4.09298035390702 1.4214854595613318 +2.4620936222253884 4.461825085326591 2.211868594090679 2.108941256461707 2.002378575931201 +4.118817529137999 4.848897523009344 4.28398006638271 1.3468298207207328 3.026527442968822 +1.3356652820871986 4.671388104558721 2.8025698670632555 4.480044912206656 3.733760741589669 +2.16915460347345 2.304023893476992 3.386508324822853 3.6332699662673433 0.2812135008751155 +2.45598071754482 4.833684083903577 3.2151966523669766 1.458087539545172 2.9565022801877214 +1.4987177490595256 4.42665900737099 3.9097737784545252 2.932549445130282 3.086714662835477 +4.686822839257559 3.3551317935760747 2.2747366018080544 2.436400803288311 1.341467985152271 +3.6714467973021203 3.4782204852748455 3.6186970143980624 3.5862489342944825 0.19593183907183154 +1.3365917267965157 3.7976145533236907 1.0705466580150644 1.4739864057528353 2.4938718857917546 +2.6777167474693275 2.737584462940986 1.7314412268728558 3.0931081879738644 1.3629824123259446 +2.2355409614206603 1.8679013006779739 3.7735792849463476 1.5945855231028756 2.209790201422697 +1.8131031637676172 1.0702480842962605 3.025281998764541 2.0451280138701358 1.2298518216438832 +4.192651318235772 1.1690790229690706 3.061302137287908 1.9257988841197244 3.229761146379075 +2.753682709909865 4.598890080165463 4.992448353636691 1.3831052693225474 4.053658562278268 +4.855088265853743 3.9278723149324803 3.1731606174204976 2.8779188567889213 0.9730863871536042 +2.4073680337816117 4.93343895850143 2.1262645150997073 3.5697182956654325 2.909397383195414 +3.9038856897070713 1.1254849504049758 3.2417057280115293 1.8857407316073092 3.0916260672383924 +2.8321082175539773 1.4906479035203644 1.2576250380574305 2.7597803993968246 2.0139479893303713 +4.664775890627631 2.7122813735419737 3.5058855586025715 1.5267696776609414 2.7801321028765735 +2.3593176832690252 4.029971186569453 1.4236016095359818 4.91735102531212 3.872643555547825 +4.910291090318355 1.588946251805286 4.211520042775575 3.046541686783376 3.5197309707203046 +1.0231368018013827 1.5511253009832742 1.272169450918906 2.9632264835049154 1.7715659013220324 +1.3134809259569504 4.819924906143774 3.0281834229711153 2.7663766114561366 3.516204230806858 +2.5706541220472303 3.5644292813408827 1.3216673615203942 2.637566099921918 1.6489931949392167 +2.131715181814496 3.4576390624840183 3.868293702643509 1.2465203226020365 2.9379873712498856 +4.412085142408212 3.0044967633022464 4.229277405311252 3.7015629548475344 1.5032589884056513 +2.615155400559226 2.3907697591208157 3.4297571816498476 1.7697202368859406 1.675133300386812 +3.1929870420595163 4.0947192489769595 2.7140517045742265 1.845982761401721 1.2516647566712236 +3.254782803564488 4.914081356672543 1.7762616426400872 3.4653237461668223 2.367742063214793 +4.6066867181156805 2.5132292934155194 4.076236055612871 2.2252949502721053 2.794377741908264 +1.706167658486791 1.4226524884287852 1.322510991041555 3.493580915276448 2.189503475121774 +1.5272492731783998 2.1805654717599023 3.435017680283689 1.364594345516021 2.1710538548086404 +1.5823711073076403 1.6030977854776536 2.834865400636201 2.5882236476287415 0.24751110988106353 +4.598817545462974 2.4511473738699854 2.0690309571404675 3.8071326061630413 2.7628761297396682 +2.970236713396926 3.048016330287533 3.7997221540525357 4.394389002644391 0.5997318814418806 +2.7194138942798505 2.883994348612558 2.5389126367473276 1.874713712242905 0.6842857131792188 +2.982389210758642 1.6565048474171915 3.2059128070732377 2.55544000465563 1.4768494207732823 +4.17156350436769 4.555026217784507 4.119553076913614 4.03250958428629 0.3932177795951639 +3.2357843184759276 2.9419462754193217 3.3341561674499567 3.8805163854832467 0.6203630254913005 +3.4918003478317305 2.9308287125307864 2.318653905552498 3.7392879556205796 1.527380201464277 +3.677539343545029 2.6836885858732438 3.305677597448958 4.4529816588038305 1.517908408872606 +2.63108034215923 2.863869007743426 4.1276071070403475 4.277844944464707 0.2770595073597349 +2.383267940852599 3.09507358965816 2.214253739794984 2.595064161226748 0.8072693842470078 +2.078947014670925 3.132328931461451 4.9904408126469555 2.94257540813938 2.3029038576545613 +4.909604638544943 3.3227002095503027 4.373189861504057 4.412910796070689 1.5874014676211092 +1.41324932205058 3.5345204497488707 4.999889927882893 4.919693724949068 2.122786524399329 +2.2397641638355474 4.019087001568136 3.7393878264845 3.8498104499755543 1.7827458923400714 +2.7498504355074256 1.0038282747464562 4.377823550794206 1.099517211503659 3.71428133561541 +3.915498526955269 4.763625488326207 4.619834601595112 2.954240250041787 1.8690970778776164 +1.2697422555696782 2.341462688840478 3.456083218609982 3.9839801037687823 1.1946797932711988 +3.4022343762231744 4.413470912457978 1.771805644493333 4.21023878889349 2.639802176665024 +2.694509627040272 4.6858057093458285 1.9928753293750625 3.79003711345566 2.6823591417938824 +1.0474067975848622 2.3204622291183212 3.7359147620049393 4.999124655843186 1.7934239230164395 +1.1746757010762536 1.528219765957378 4.191904885423368 3.387479946454083 0.8786881632572536 +1.9319117950749072 3.9000349568794555 2.4852989199499667 1.1106421850324621 2.400664474449852 +1.5001052113724866 4.151519477784244 1.8934979040495055 3.2461011870517402 2.9764968088879615 +1.5211980940957575 2.597165862710755 2.9551327767934885 3.2642933930244045 1.1195029815621824 +1.7380540266828595 2.3239646741425304 1.057640879053253 4.687418572297135 3.6767618075118067 +2.4851911762445953 2.05759467670702 2.7210108376299518 2.5823516785368397 0.4495165501037715 +3.8390727495716006 2.2449037082496965 1.8007729076026826 3.807841862595699 2.56314274327552 +3.8000812578597296 4.7525797460307055 3.949741110735146 1.7169786770946125 2.4274433989373247 +3.2191882117971553 2.843943133898624 3.3925433762525916 3.907048133583359 0.6368076741081774 +2.7035768450414905 4.511053286778941 4.551454349339829 2.6656192313897145 2.6121533606451584 +1.228187207529868 4.073027126647885 3.589883960681852 3.253167430167032 2.8646975734498294 +1.8317644903864294 2.160693850999966 4.377860888887313 2.8159246217383718 1.596195297233017 +1.5479041629605002 4.701042244166073 2.0147462863974925 4.364117328942147 3.932152598093838 +4.18813198222026 2.9697666006712367 2.820409127331687 3.662262513108875 1.4809224578287725 +1.2844118418735948 3.606616858792889 4.044491969638912 3.7339869775600714 2.342872060252335 +2.426165489676402 3.425343161546061 3.086611204054799 2.095334884548473 1.4074746042386979 +3.3247036193027215 1.2992871819763625 3.7915109053471214 1.22295535529256 3.2710532490786344 +2.8338813945619186 2.743786318266533 1.3651647270470786 1.4799273536366506 0.1459026498539655 +1.4090023978793376 2.6022698485171936 1.5997323823977965 1.4477907246205306 1.2029021057924338 +4.98432581993053 1.4623422379918818 1.061876191462002 4.397670022568187 4.8509678245780465 +3.5361067559668755 2.2947897858749395 1.7197898240149163 1.6948104159390027 1.2415682788578513 +4.634160284642036 1.5953228314908587 2.869905628247893 3.0604031273567225 3.044802516394298 +4.568263823240793 4.683206551296838 2.7732860884899018 3.629153299164418 0.8635511062124481 +1.445669493796319 4.2288454511409945 3.420851148017226 4.010011519883627 2.844851200558512 +4.846389469588601 1.114113094999353 3.0047099514629547 1.0861216060550176 4.196530492615564 +3.0452327116495157 4.185789093102807 1.1740033721213585 4.550731890165044 3.564149876736854 +1.6842130472897745 4.531640004501412 3.164996520542506 4.2077682332047495 3.0323609813780537 +4.315551048258664 1.8170189208152228 2.633631179100218 2.499184878692002 2.5021467981636296 +2.559598531653307 1.7335876285789773 4.681713425396351 2.109995477831671 2.7011159201011643 +1.8776626747428051 3.1931162620107285 3.9303410693907512 4.475156848607447 1.42381261883 +1.9224268353194538 3.389318536361962 1.7257508854243784 1.9048669707023813 1.477786802821266 +3.431524347636942 4.998590122507469 3.902095975279764 4.341773693595941 1.627578458555619 +2.3003453741509814 4.410887471451547 2.631749680997895 3.851117290578432 2.4374669868065952 +1.2331545868298854 4.568552126799535 2.277507209771419 1.5795751821046102 3.4076364044420426 +4.207155870771842 3.417829111263672 2.6643356106822877 1.1684108810666913 1.6913980991922524 +4.000939628048061 3.2513416932351635 2.4182264212859477 4.544450193840062 2.2544898746390523 +3.848370646556277 2.520414753941794 2.4934058874174037 1.9079659031630625 1.4512776536187868 +1.722294581284018 2.7406375599977135 4.762702939649099 4.524607035460656 1.0458069046849872 +4.720769255747866 4.17594631727142 2.3092197065358913 3.189314751818491 1.0350842105940417 +1.9137881917761277 1.7969517680091531 4.891071855836666 4.948623764248203 0.13024197510966282 +1.502206577426053 3.6003484046145404 2.9166276283509323 2.682028248350113 2.1112167098842822 +2.071009043944758 3.004183714015765 1.7423260117874801 3.7229611813772463 2.1894589833742066 +3.2337010807848854 3.436915144134522 3.4564211480090576 3.6438622359680006 0.2764599735916618 +3.6647650278083637 3.5100535219978077 2.1815772620761935 1.85614326535794 0.3603372534864886 +2.769038329744969 2.4253659098789075 1.2066413680890609 3.8531954912332345 2.6687748985083064 +1.0159410231243404 2.675318801991672 3.7068063938397566 4.817611381652088 1.9968531077541565 +1.1719251871886645 3.189027962717177 2.079905544448262 2.1782450244235765 2.019498517049875 +1.8568398644047033 1.9662109206806764 3.9722636303991705 1.0247156409570461 2.949576440442802 +4.971213056733848 1.0530160773078858 4.479625164376976 3.1170264992296164 4.148366267802797 +4.600832155687526 3.4424930171023727 3.376395482067835 2.5309782317189318 1.434043195711236 +3.8656772137650037 4.702642112760024 1.8251020784273946 2.407114243424271 1.019435335052742 +4.180346519480976 2.215043789855302 3.9263544124934815 2.0251676525263558 2.7343968101481577 +2.32962321713216 3.0908101543217703 3.147956096088298 1.0105474686812674 2.268903081637051 +3.7031295772473602 2.028532787457415 1.4788340354222806 2.772657566393973 2.1161884929445316 +4.348186052425147 2.1891727782088335 1.7953764754981836 1.9895039355441302 2.1677231808942157 +2.989313199537538 1.2290365603207634 1.8477709720102968 1.161236280018402 1.8894188868222708 +2.1454696600057734 3.166995724351077 1.5254291611660808 3.711869727188565 2.413304342366608 +3.496368431876161 1.7335098138783076 4.39907046900848 3.862879606073648 1.842599020010621 +4.120334434420761 4.564199923290327 4.831669316845064 1.4627633978712704 3.3980205507186207 +2.414518351348409 2.771331066211328 3.6720846570488463 2.6711860557299634 1.062597441936476 +3.101468305613042 2.254247398902342 3.653981563353936 4.64048754327024 1.3003758353561972 +3.750425359538972 4.053311208426996 4.717355510511075 2.665867906325655 2.0737264109768803 +2.96386581604696 2.7358877238761856 2.1506835893292298 4.1116611536658905 1.974185153004036 +3.8896096650542256 4.217495922820016 1.4647893459406007 2.2586311865205198 0.8588913003907818 +1.7665258741958523 3.0058885155302515 3.320695268679496 2.192877835576186 1.6757063940759782 +1.097384761706556 2.2910910404885207 4.830204530448264 4.938035545410161 1.1985667306375556 +3.6180895177959354 2.3325508090100007 4.149976410911317 4.363328435611798 1.303122733371958 +2.738254338511999 2.0545018028234763 1.516744187874342 1.3022245250467956 0.7166144122191016 +4.737085505123898 4.635915544304066 2.9653072823935753 1.5168229317372028 1.4520131800602567 +1.942563854378526 3.5963932625477386 3.9091223269097686 3.893172653751322 1.6539063163913454 +4.850907516745126 1.6872361022475388 1.7398326217604834 3.7762932146276706 3.762444493306199 +1.5588706928799825 3.790061582298941 4.614111911699476 4.229543239287809 2.264090512507536 +3.4254268084549944 3.6966566742847173 1.6910520686772772 2.795500204155404 1.1372648434200012 +4.041336027409769 4.764869829923656 2.031385522385234 3.1380727053670103 1.3222169581261405 +4.885403313249178 1.9565859450071068 3.606922194001993 1.3921009208659836 3.6719755511784427 +1.473431824854845 4.093655402151967 2.3364533882755807 3.2575823919169706 2.777417908124938 +1.324808820319058 2.2855055001961246 1.8970299963185968 2.5808130211773244 1.179193510757149 +2.9655304099051545 1.668281748247269 2.5116203104631105 1.0763001808373946 1.934682910629532 +2.4937813347067617 2.1909534715091055 2.6594326182247827 2.882066970584439 0.3758600398811531 +4.482355704520723 4.991379764275312 2.88931810211022 4.915695602519635 2.089332732614543 +4.429794875598663 3.665004394160365 3.7713318794039288 4.889212730076709 1.3544600683665513 +2.166157831202418 4.589302134167545 2.2006616594613186 4.105030704666968 3.081923064148394 +3.330856470739151 2.907383919809167 2.2351062476247376 3.4190037195340115 1.257355250271107 +3.4785420060401324 1.4996960731818811 1.644060769901 3.105126395825572 2.4597853543039085 +3.5379256620814483 3.399856040445958 2.9626460654729083 1.6606111379197084 1.3093350117471976 +4.8591701666177185 2.774580585889052 3.6239351077940722 2.6237170109015384 2.3121310433091455 +2.1034131473298845 2.8033608925976545 3.6891659327013206 3.5533059613859534 0.7130110643680415 +4.948554125626021 1.2518775930268604 3.766982189296751 4.754186675469329 3.826223998172169 +4.220350239616673 3.964386414077525 4.962185472552573 1.3012295441169996 3.6698931578360976 +1.176692732062138 1.0012112099368222 1.6341573258391406 4.993378013251434 3.363801033257784 +1.165317667849333 4.7120537113651295 3.432895390138902 2.246838764274516 3.739795032101478 +1.3924832680670018 2.970856436154595 4.36016768722491 2.6704780081537614 2.3122095643125493 +1.579920962011185 2.2395222100825674 1.1834564809411932 1.4513389075026342 0.7119233111211988 +2.556026613703718 1.491000558550636 3.6263751712248875 1.6851620769064053 2.2141790297327972 +2.872847413483996 3.56915910883104 4.062269000391926 3.5088295246034082 0.8894634508725721 +2.5807959345138447 2.333350756784215 4.3561633771766175 4.716537599779528 0.4371483687471567 +2.1813675329934994 4.2707283856005755 1.3927840146235648 4.76073468567323 3.963397594871206 +2.0031234717428084 1.702341646424649 3.1123495202144817 1.3587314778795703 1.7792262208174237 +1.9379330979493345 2.129980151238331 2.263504121741779 1.8676530517476566 0.4399774315717549 +2.0826125870234895 4.14068399193638 2.898443684999008 4.868894285957309 2.8492689375587297 +1.1997484984203575 4.065204067587825 4.734259804937494 4.236022556473118 2.908449066879151 +4.691429295562016 3.573067221444563 2.3002288059977203 4.101620910254956 2.1203177219710736 +2.5792238916974553 3.6827271827321084 3.439855311468555 1.321657822478599 2.388405349953744 +1.6955846492935258 4.732423019558825 4.082881729708362 4.8739898172639124 3.1381904488592465 +2.4518058789751924 3.5521883376359833 2.5137864843883464 2.80624489355021 1.13858397864095 +3.5603058499385387 4.484152629778764 2.1210793557450267 1.0883241743985064 1.3856681194352558 +1.9142037728675652 1.092044012989767 1.220688442093126 1.142395973032237 0.8258791567014928 +2.5418786649284475 2.5707503346324927 2.038006603746146 3.244164613739244 1.206503509477701 +4.814215119419423 2.909227232859689 2.5690272659853317 2.048708868063043 1.9747683618986147 +2.120475382240015 3.878237279147715 2.511029630927774 1.7106323514804385 1.9314146864843014 +1.4637767354437332 3.0750965626822753 4.424471691378126 4.982994162557416 1.7053735474857894 +1.2199816692092758 3.313215865169707 2.210956409332201 2.097247932914699 2.0963203516512694 +1.295650785252516 1.2996093812842973 4.048942139223773 3.441841399772896 0.6071136453122635 +3.7542033663244267 3.7322801364420473 2.695773551568702 2.706678676069486 0.02448570498991724 +1.2839719438952422 1.3965668747497584 2.441878850357396 2.7577612143079326 0.3353494987458794 +4.45619726340769 3.2690342638632557 4.205036712310654 3.01633825069539 1.67998810118817 +3.2424876682645314 4.268153681301087 2.528996508975185 1.8636575681975782 1.2225656123142725 +3.1490946289611226 1.135826213769993 3.2420453518003174 4.9471925861798525 2.638328410664294 +1.9220744537582948 3.8391625185326195 4.133133331336028 3.869812940071312 1.9350876663748255 +1.9751875615497902 3.9802441546573646 3.630153261285087 3.900397795696952 2.0231866077907 +3.6172766442909987 2.510131508634846 2.173965501866927 3.7933560727499755 1.9616819753650199 +4.165925714091983 3.955227254439164 4.397821562340616 4.356558866799397 0.2147008405745031 +4.095515341951572 3.7665716566031504 1.6645670605163057 1.561421496141513 0.3447360665506232 +1.061922794712581 3.2270122617406773 2.6838834435466 4.885525890193103 3.087853925157666 +2.4846771681216535 4.710062870270738 2.5892944925703736 1.7002118367291863 2.39641596811722 +2.1720204538869474 2.6494932191800897 4.918521242894954 3.359770335968074 1.6302406667244107 +3.6261150267753965 3.421900970607456 2.042837465123047 3.9514903020998013 1.9195465695929272 +2.3421042886973242 1.8695526558433402 3.0317186684002055 2.1998508900541554 0.956717850969323 +4.82337133959173 1.3686348065338376 2.9213285228684693 1.7318880312661245 3.653761513277528 +1.9317461606680446 2.972384280325781 2.413067933419479 2.575427225242318 1.0532275327420964 +4.16206576580814 3.81716630246011 2.9249437735067425 3.1311509826605204 0.401842074607362 +2.7808829066483707 3.661482041180476 1.8448628356102752 2.1523088550251233 0.932726053347245 +1.1810101622446934 1.4619350924598642 1.2048359984054668 1.2276794677165372 0.2818521607271522 +3.274606981845281 1.9551223398621085 2.8875577855321413 1.9159622174233788 1.638608454878117 +2.0522840802999687 4.243317850410692 3.48181859661039 2.5134630535970905 2.395483550235775 +4.207107723225496 4.181580194607358 4.954008127656297 1.0652560438806438 3.88883586999848 +4.629556439633266 3.0128952800149706 4.253402253295554 4.996462474025924 1.779250346817512 +2.438695832936449 2.3952864457215304 4.402124858651558 2.612235700659946 1.7904154749091883 +1.4130005294437291 3.3426927166305735 3.70402527602692 2.4719747845614264 2.2894672635375923 +4.109323817963938 3.4786404306457857 3.4818434894139916 3.4991918948629084 0.6309219462110339 +1.3278378588530386 2.360098094926207 4.947228190422081 2.4293994421665897 2.7212171542380896 +3.0609490555012773 3.67550343496384 4.321592473313393 1.472166354695056 2.9149453323829206 +1.8067781814533541 2.318854442436069 2.95189107034355 4.419994202278026 1.5548469066303139 +3.0774469300588736 3.329453317016576 4.165340974290369 1.4373871647169958 2.7395691643456193 +4.592199623137423 2.810258194263883 2.2590159152254707 2.05731863807552 1.7933201185358902 +1.7887413532287613 4.733247248096726 3.4772693537456987 2.6204103100793286 3.0666467657076253 +4.194549298330896 1.1238315834407664 4.661111628344267 3.7200495899776618 3.2116825877715205 +2.541737549981042 3.8435629653430716 1.2858589778758205 1.8088780071350077 1.4029605543456107 +3.194858518564923 2.7488086078512963 2.4890163304293345 1.072465427169345 1.485118508528638 +1.5225321936412208 1.4175866880744254 4.155199103021365 3.8357196281676176 0.33627472993297713 +3.129959156205436 4.942743383930775 1.8582132934216742 4.8809373848348425 3.52463439084103 +3.393605669138397 2.833815529114954 1.849604275205829 2.084847982726583 0.6072105094574501 +4.464653520413048 1.6581651370228014 2.891954311941615 1.7943561470753964 3.013486150229015 +4.58146498793579 1.4129504190814632 2.5256417981478783 4.477964310631322 3.7216995802713284 +4.036767247921031 4.536022046858373 1.571564227143695 4.091146028624808 2.568569214293587 +2.9033831896031 3.1632952184847145 4.635589865875886 4.854634672986142 0.3399042369246469 +2.0466316894566075 1.2637352986543258 1.261960885297936 2.415048431895302 1.393749492860597 +2.629480814867972 1.4279120855253402 4.579823837939109 1.1435766026023515 3.640269560581136 +4.330458291573554 1.8040880384139046 3.1101677299807258 4.35350495050082 2.8157475206382734 +3.103744925896558 3.9332130103371816 1.893493460412973 1.7369500845897523 0.8441108526844846 +3.0813394738783417 1.0111137367591554 1.7462809552753327 1.575855671310812 2.0772287741231263 +2.418638589705864 2.8197256044176755 3.4008442992895334 1.1729712836303432 2.2636892382287828 +3.114409850539334 3.0844277187269915 4.229791952967036 1.8612726753518474 2.368709035880681 +1.513447157720588 2.1868860573598567 3.4109278053008496 2.9848493481963203 0.7969082777559319 +1.400473205490727 1.9530541037652265 4.131599681773222 4.750159240293069 0.829434492033048 +1.4691183427945793 1.3420678205528818 2.0914195877977635 2.693845998454262 0.6156780128105601 +3.675057126861508 1.0673491784823024 3.0603908381336495 3.7098760047116195 2.687372643614 +4.182449888037125 1.8892406416090273 1.7880277812903147 3.361515300714508 2.781127760763073 +1.9097897278747977 2.6444233757821434 3.8229787908292803 1.0223662559963338 2.8953613188859655 +4.8730281014793615 1.811358175652639 2.7566559233057193 4.48505075448316 3.5158457627081283 +1.2608642554770926 4.658046670076963 4.3893313532024525 4.971421305961902 3.4466907420263437 +4.4211778209342345 4.185461885613536 3.6332304835703977 4.460330146387237 0.8600324728728802 +2.619518550614641 1.2919537887930153 3.2428634002277317 3.4890980344943783 1.3502072773996363 +2.31204234945065 3.7129405641701307 2.819367798203165 1.8233858309772382 1.7188647087666484 +3.676751540856745 2.4727794240781624 4.524724583718128 3.871109623688106 1.3699494056188164 +4.227427460840525 1.7832934924077417 1.4664387057142747 4.0160349111540645 3.5318878332189376 +3.8214867981735887 3.9075172981015225 1.0553734540401338 2.259951080928086 1.2076458529373837 +2.55933592323947 2.3027119371704305 3.0447724863405403 3.8360788445942173 0.8318783702192643 +2.800501356149401 2.3823231062903445 2.634800990133354 2.2918866175742796 0.5407987754819413 +1.7445206674461646 3.966190350159199 3.03177256115564 2.103333544528302 2.407865275857886 +1.6483270770448728 1.6452205415910424 3.278703866375909 2.376356732699624 0.9023524811382374 +2.5055822735011044 4.328187606416892 2.8362011893311188 1.6859933963146219 2.1551956214434336 +2.491549887503165 4.870701469035284 3.2889382862804943 2.0756844541461454 2.6706454480322663 +3.85107042050944 4.057956363756766 3.850846467279913 2.3545527779718527 1.5105285823765342 +3.881896285632417 2.0545551193574574 2.75682895101707 2.447864522734848 1.8532767618213126 +1.1773970873310362 2.3079306534789037 2.513654970306979 3.7070875228219067 1.6438939751666803 +3.3196807887789506 1.2523284568540594 1.9708902562289308 4.166078220134127 3.0154263149991785 +3.7595940285131886 1.7312947051206624 1.2182629084535863 4.205167672471875 3.6104844847457422 +4.00596428650894 4.677816792503263 3.7765538021239045 4.261219188786182 0.8284240018489005 +3.1003681315135427 1.5108420627886576 4.617471025894192 3.8881911146454566 1.7488402763279873 +4.112618228892533 3.263229104192349 4.11910625791265 3.7875957661404485 0.9117900478256995 +3.570133273752073 1.9665236090588314 2.947450182701607 3.9519264185396104 1.8922305528293464 +2.5090128467473187 3.9220962193891307 4.753302780826592 1.091205600166485 3.9252720133304733 +4.897969765179239 3.5514148513464137 1.3002776247027388 1.4607019484896346 1.3560774681521002 +3.8026248612089937 3.3451954166756113 1.5078138533569003 2.189750975175275 0.8211455016256543 +1.9331920409561487 1.913901288257116 2.5949392251278147 2.4965098403424855 0.10030192883944776 +3.694689742588695 1.3351183603774541 1.5541480379151147 2.4034192561675067 2.5077557117674294 +1.0951064714728744 3.8873524668211794 4.029804112883441 3.876100030482365 2.796473250986929 +1.6319126111219622 4.833001595128168 1.7273421371576005 2.8399062755093216 3.3889186543014267 +4.714815387558085 1.8709303772422379 1.9583285450445076 2.6811769128136946 2.93431281813745 +1.2652426130809138 3.6103453398078575 2.440363463417135 2.0185317737681583 2.3827397619744914 +3.0944355154268632 4.407561583699017 3.409931469703877 2.1960987320410013 1.788208596947805 +2.6480948551532966 1.3501611816206793 3.5603563536901595 2.952337551456508 1.433289463004427 +3.3074903708061267 3.434310655134563 4.101505806228648 4.648372442832939 0.5613791078656524 +4.521541492644738 1.8054904598077122 4.9896327407662096 3.5402654888338865 3.0785708768759785 +1.8189434156669617 2.5312639091073685 2.79451259069234 1.306629655326922 1.6496048359309563 +3.919146886841937 1.1173948731567291 2.2692445646242123 3.7412438777574355 3.164900681546547 +2.3721147460527576 3.6004596474419865 2.9874136578411563 2.861500676166045 1.234781468812693 +4.91709647478743 4.418321571590065 3.566758321798391 2.664049008084633 1.031339182386234 +4.440739695834511 3.766298495171117 1.606796745914247 2.2995648391700056 0.9668498147000391 +1.0651201039364495 2.040914863835421 2.49504988652891 1.7581811816226995 1.2227636328074398 +3.7741364878599724 4.987644671262361 4.939591882958611 1.4513577175334569 3.6932884674804227 +3.5373250983674556 3.004022265272965 2.4082572762218346 2.0037261392456442 0.6693708632513514 +1.2550406162694858 2.851691627163981 3.712491143107669 3.521683968073564 1.6080117625922108 +3.0483638528277104 3.5112212338632642 4.716342807961914 4.198200081378028 0.6947725097403293 +2.6268844553989865 3.905317242256576 4.803619055755444 2.1073806521432794 2.9839725065130103 +4.35203566257739 2.459780828684428 4.279205913559024 2.969202549956407 2.301464135945084 +2.9514657848135886 4.207807763050608 1.442047251002009 3.6155144822880927 2.5104491573730194 +1.74680627467293 3.464275807088235 4.460078752281984 4.333886813514717 1.7220993003264036 +1.3820379721618772 1.2351776454078598 4.63712023225809 2.9637089804678447 1.6798431989898615 +4.251530529251044 2.256256634435012 4.703112976959815 3.630056533710363 2.26551716959583 +1.8119561030414624 3.2665202529862234 2.3485094174888714 1.1236392115258846 1.9015950903807928 +1.3211666298718288 2.4584902743794896 2.3166615635269205 2.712969702922341 1.204394127230471 +3.647148749783331 4.124303690824827 2.806485030858825 1.668293145971301 1.2341627139822886 +1.853189564341144 1.3371959263320083 3.782565763139218 1.4129421395579005 2.4251526863066903 +4.575204301795759 4.392504062976361 3.11322076956083 2.1959703991863915 0.9352687417083443 +1.818737619557231 3.316185260152669 2.2933801841140027 2.875618315022269 1.60665823291962 +3.648157347790957 3.3391862005175237 2.6610691306945866 3.936197046209559 1.3120268178558774 +2.624518945848899 3.050913413246076 3.469888155731805 3.1802833507062878 0.5154446477758695 +4.756636217512865 4.417555388509433 4.47986570369816 4.011457925930548 0.5782574295855156 +3.31369908064457 4.804199306739701 3.976641939237609 1.0802054330056312 3.257443070664926 +1.2414403960371274 3.270413542187494 1.4727979638732958 2.0312334015468654 2.104419674363692 +4.617637317248526 1.6009472032267689 4.0759212063422074 2.570300406506212 3.3715446366517807 +2.466343953119564 4.010503943679041 2.985264010857087 1.8708767012241236 1.9042817943559818 +1.3575000162748094 3.542146657697915 1.0841597844100677 4.070070790925904 3.6997764103677495 +3.5254221070935943 2.216344210587645 2.0367600790541287 4.785924567904685 3.044928624102276 +2.9070790160449245 1.5392048220828962 2.309325963511467 4.370401128543466 2.47368361890096 +4.678472520382301 3.497844659156336 1.042027717005546 2.611484430310238 1.963944123858966 +3.426504135000066 1.8059410574389072 4.932722743876921 2.0553450430313926 3.3023517562000557 +4.495834860845427 4.958396469299856 2.589998295985965 3.67930250423341 1.183447041367522 +3.4913226104180755 1.5987231317018815 2.3098071982795956 3.1296209663938632 2.062529369785197 +3.6378056317582974 2.305847493579077 3.9162253100473254 1.8592127355922088 2.4505944612130994 +1.6606113008627474 2.3579717538448843 3.9197640392533333 1.0078868649579542 2.9942178076362267 +3.7106981399208556 3.954950405157141 1.3059009269701978 4.37870102394362 3.08249243389711 +2.452181455111779 3.1983787750965447 2.305873714100635 2.6111432359003772 0.806225726017404 +2.9222364100533778 2.354996289080261 4.762714845469688 1.5860404798546521 3.2269213470422993 +2.3594484809897565 4.454179269520298 3.0825552189417746 4.7191923143813215 2.6582847963652396 +1.1832029386582765 3.3227379439918234 2.9390736938782123 1.271423399180593 2.712686407318892 +4.672306480710988 2.6974795479370837 1.5069220827577507 2.807038806214122 2.3643698756793783 +4.216410028953016 1.1015815028788793 4.528858063564103 1.8071870986528844 4.13638121890209 +2.265040000092223 4.02744576095218 3.7398654013219077 4.391473669421342 1.879007025257731 +3.68658593788391 3.867728869004615 1.9471076455441731 3.2060413856434913 1.271898943884874 +4.622927892311733 2.2067691438259693 2.735611501892127 2.7357005232128295 2.416158750125721 +1.2684013916224268 1.5975266311959908 3.9570744896196657 3.6154328372567996 0.47438638466295097 +3.2005404141177123 2.513906718902806 2.8371752355370057 2.1922596508928067 0.9420095236893551 +2.717184436908532 3.759617612379299 2.212531861043922 3.761588824728915 1.867148735924119 +4.51171925940514 4.073538763348496 3.982379151245775 4.576053577086526 0.7378695487833826 +2.893385795780818 2.8766787702235797 3.543100306291179 1.5183389872806439 2.02483024564141 +1.1600220809940835 3.8720270985180427 4.715327789991179 3.612230976651469 2.9277625919249934 +1.3860083211755154 1.1513152551484929 2.328747303157318 3.75964436693161 1.4500162903771308 +2.8113755411753796 1.4362675684749844 4.809628436141331 1.2070506189368162 3.8560976213781513 +4.581154444460185 2.005115968349936 1.2424084972772764 2.7356978238521323 2.977563978030161 +2.070806325315261 1.6935619676208646 3.3861455293928793 4.5299081166188415 1.204369611601889 +2.77187777879134 4.445363819277052 2.5228498646877675 3.047310739532494 1.7537430646886225 +3.612141779184655 2.779973297036406 2.8485290081251415 3.7425000308879257 1.2213470318547708 +4.880509551281213 1.410623130436901 3.304765791204049 3.2493376147833146 3.4703290991347027 +4.003098765157434 4.235392632446926 2.331841995571474 1.9623154556493452 0.436474861231582 +4.742848792546948 2.02265148531689 4.677282092609763 1.1314768843811267 4.469027630812208 +2.683663783583959 3.6381500987684907 3.653414211067956 4.472315298617071 1.25763393603372 +3.338218237472985 4.773065433647574 3.218662800456447 3.8990181774894492 1.5879766734520369 +4.128561864592864 2.2878860519649717 2.4515962245348684 2.2767078143496087 1.8489654954083055 +2.939109748718292 1.3553726081127637 4.9087285734887605 3.597246685571504 2.056260701581486 +2.4021046141254807 4.035366398261805 4.353742304263326 1.0824216034907224 3.6563756895077844 +4.180878274437783 4.58788591816912 2.3381513499771374 4.17855052418008 1.8848671949139042 +2.343635489836854 4.978478966019665 1.6565479015346778 2.0915886474961907 2.6705169152487818 +3.3231859292776083 1.7311752134811802 4.327787256896922 4.127393878546772 1.604573346811308 +1.4642652786043993 1.4449807775719958 2.5984914612282175 1.946516867258766 0.6522597359654356 +2.2655051759876312 3.02053972409726 3.2495642390784876 4.411271026046071 1.3855106739847434 +2.7939219525067926 1.26275546694621 4.449646005713397 1.2732049777395478 3.5262229666740463 +2.9941122181418867 1.2085117159508547 1.9350997965231418 3.8574530458623437 2.6237018063548785 +1.582594809458925 1.9855412098386633 2.9834088769901164 1.663836308304723 1.3797237279999048 +3.0259139847465213 2.227813188998389 4.827408478250149 2.7223952717560906 2.251231991530015 +3.353178678470093 2.8304332043233287 4.98967451912854 2.215332352812527 2.823160867988212 +4.554462224927095 1.5535937510122748 1.2014508090027838 4.1580412619048595 4.212675955248345 +2.9648145938346766 4.055320251220492 4.341215549785955 2.1984986457003397 2.404254212816255 +4.281231226241162 2.274762846756066 2.808709723748288 3.6237237923354035 2.165678482570409 +2.6805522359988783 2.3686854769563475 3.8730674867028707 2.5981022788504053 1.312553677618547 +3.8749539259982013 4.300721093540139 1.3731903247996087 2.7421637641345327 1.4336547557069574 +3.5635708018094423 3.6320159602607758 1.4430611038424046 2.5899978534523536 1.1489772179296085 +3.326189070611497 2.043129416460403 4.007275538958092 4.020627260958434 1.2831291223375374 +2.9402097718317313 4.92531241713923 3.0716456535641217 4.808434660075993 2.637625554461308 +1.4968546692478912 3.9229886412185753 1.8691284172384348 1.507806201984847 2.4528921283224028 +4.240271895569919 3.5954923632771876 2.312968842467683 4.311846493390225 2.1002981951668795 +4.0119583340219 2.6510566058952834 4.0496666562386086 1.0855446273350626 3.2616058799078234 +2.749523266525365 4.025434300775995 3.831210069480603 2.2329473446945873 2.0450899013889177 +4.178921490239332 1.9273276775623156 2.3828386394113177 1.444910598466758 2.439135852566544 +3.621065531666485 2.021358616498195 2.6854915754531903 1.6861323445961713 1.8862081239185613 +1.7005397566829576 1.941183864174755 1.1769247224117638 1.3644135899009755 0.3050600955597288 +2.9461797761693314 1.5390240227490577 1.744813604077351 1.8283273381974108 1.4096318165288602 +1.2370090910250933 2.094317766518574 4.213111504736236 3.4033325316699816 1.1792879844620756 +4.444502844331669 4.780009304837874 4.625820681419652 3.9312490287778683 0.7713587788409103 +4.252664101382439 1.2053457859342198 2.4872502402652366 3.5020018693447668 3.21183277652896 +4.550939777569052 2.846124652349909 2.661421501658734 1.9357530843207242 1.8528327671697238 +2.786588962075631 2.086592787454242 1.3725533605670486 2.251663236116483 1.1237565651746468 +3.33339113759894 2.8520657264012224 1.6881202284621444 4.170420819658018 2.5285352235070873 +3.7575770940857116 4.498748144107585 4.570524063237725 3.007205253176177 1.730115668758243 +4.8687222184262255 3.034820887750951 4.994830702659626 1.3580473859761293 4.073007117985427 +3.8165669398671924 3.257174910745863 3.5731660464572053 1.6505273265906526 2.002363375957165 +3.1502722299079284 1.2995730967797523 4.85760806511084 4.644670206218635 1.8629089653310973 +2.402300777618656 1.320625629288393 2.7535951149443014 1.0677225663621677 2.003044526858581 +4.342688620788277 2.0417160592124306 3.9593265477181863 1.552934400687589 3.329444081887461 +3.410830432327864 2.260482776083809 3.588506584654238 4.1308458721691945 1.2717828560758404 +3.0769185161056622 1.394947458255229 1.1911426029078664 3.2791332935609367 2.681181038964059 +4.610799100025798 1.31074740812663 4.463002750041577 3.5557476882720587 3.4224922083641003 +1.1750189128960384 3.7203713833893186 4.302985416492854 4.812757430927901 2.5958980538047736 +3.940188446770721 4.807322807787228 3.67123608930861 2.2214923591329754 1.6892835413982668 +1.9127252703218458 2.795836288737867 1.612424673906339 2.8449990946572634 1.5162865077343592 +4.953658974110921 2.062718666765335 1.1845399527013285 1.7944418838630356 2.9545754731044136 +3.4926415526678136 3.1330655736755615 4.765152333700247 3.659484260995703 1.1626679541754028 +1.1653982414319137 2.129514477439623 1.116917795500345 4.782012749128848 3.7897811461411317 +2.643048093695588 1.5691465518131604 4.648299386429348 4.715470314371263 1.0760002115325225 +4.107877988427135 4.514923772186096 2.7946662860913047 2.3039872552438583 0.6375360236012834 +2.1933942510009734 2.039181862791633 1.0839309019688277 2.2397646546136776 1.166075951398666 +4.19710866238003 1.1760741057241173 1.9804025476914577 3.8048013548624344 3.529175654471745 +2.8256773728566658 1.8768007300701086 4.9064596386586175 4.1960297391421655 1.1853596607582204 +1.9830159213301513 3.472084421286914 4.484908038131573 1.2314406082057774 3.57804070898466 +2.7333989021298244 2.487796659107373 2.3134438685300514 3.152191199388916 0.873966559314788 +2.661398623103438 2.781345161715525 1.618303970396405 1.1807206305832603 0.4537249733120793 +4.504798501429174 2.925468929220523 3.2005003013737414 3.851614100119709 1.7082830785821663 +4.588546812611758 2.066189117306462 1.113246795100805 1.5571902140376093 2.561127506057273 +1.268843176432847 2.2473193984068343 4.225656972310297 3.575524757748569 1.1747713025859223 +4.040521789168281 3.2828660945210655 2.9568399292554046 2.3169041319756505 0.991745923244169 +1.7409857656043028 1.2089607535652402 3.9457566296579896 1.8556550469219464 2.15675108429111 +1.565182556131755 1.8879970394246706 4.333546062643075 3.155897784268338 1.2210915846825963 +3.6805296204188633 2.0804406558922413 3.1857182557573394 3.835433549651514 1.7269668953167203 +2.2647124019386538 2.407840322722665 2.0405086083631843 2.0412607793589403 0.14312989718839664 +1.3238441073686777 1.7851896512893668 3.1458875728151994 3.7039301349749487 0.724051940179221 +3.202122757324551 1.7322390945182886 3.0768198728703755 1.9239863656524108 1.8680425791585233 +3.829608711635891 3.710662484375832 1.7788884984921536 3.4860533733628842 1.7113036302689826 +1.2354600760099963 3.739147258379515 3.064313570199973 2.0599474495659678 2.697628738621907 +2.3893970259665682 1.2376292751931115 2.995628745101297 4.383557101424489 1.8035836753551926 +2.4670096576152627 1.4021834917473752 1.0103600575266616 4.929514608478356 4.061234683906149 +2.4608393281307768 4.571493147167049 4.968859284584661 2.2139603575460605 3.4704938613993876 +1.3529171779730018 3.024216907556776 4.092206810088024 2.1617384897822856 2.5534194175283575 +4.897886654710982 4.04312026165117 3.4196296585002486 3.833098002266459 0.9495165390877898 +4.125735943180271 3.0971757602393084 1.8196437936596324 2.6005353739263852 1.291405323693167 +4.910559861862854 1.469605243013893 3.2873602577749246 3.1435275282470485 3.4439594281961914 +3.481420192897919 2.1055087636872516 2.110538386531663 4.381154214069498 2.654962993583501 +2.0976613049284993 2.371494761171041 4.514456044217755 3.1376455244669534 1.4037777491662302 +1.497276921016673 3.925517096468326 1.0972661089088658 3.7480246875986074 3.594839550268514 +4.59047329048669 4.9913696187247085 4.762565014614725 4.4596318277430775 0.5024802301612845 +3.9043924697064862 1.9941444388489598 1.370915943086647 1.4822583124953566 1.9134901783444311 +2.3454123974750716 1.1827289341555391 3.873825258812831 1.5945708434725359 2.558678081690804 +2.988006859523648 4.908684475022389 1.1478590857037343 4.211863409197878 3.616230772098033 +1.4251826692353151 2.363091660851828 3.9074919189387995 2.4253141529221462 1.7540023394024369 +4.622799066191121 2.9815798158193574 4.67940848257794 4.508406351933182 1.6501037411253572 +4.90105932897816 3.2932812506286546 4.76473303382244 1.4271648754966235 3.7046337957606026 +3.963509447382923 4.5988915803964705 1.7006919703047045 2.158911344211331 0.7833743993622884 +2.0897094536310963 4.342025536812791 3.2904436602354536 3.9742369623995177 2.353826887993968 +4.441039669909687 1.4219445251862064 2.8528133679367653 2.71096776588082 3.0224254610685617 +2.905018723697178 2.5626313895595776 2.6244507076557855 4.562489197426271 1.968050373951266 +4.553616416758151 4.859587581769215 4.519324714079227 2.840857994126196 1.7061268662699483 +2.3812942153713625 3.7656307871101613 3.225103524169524 1.9030740909265864 1.9141968462554142 +3.1220732527291144 3.7123618111093277 4.586010862060032 4.189072865637215 0.7113370193928833 +3.5597638645767193 3.754481589534007 2.276650123156219 2.100385597111386 0.26264838768656407 +3.472246843330091 3.1765987003152354 1.4083318637563713 2.1530924412964016 0.8012965383214207 +4.56322526460659 4.353544944211503 1.0781376207594344 2.5582917159122807 1.4949320995144655 +4.656082008621329 4.120219621475876 2.091030282878167 3.6584610762421192 1.6564986537702868 +4.994260824617674 4.391930757899181 3.34998121621592 2.8867695053152884 0.7598464307928245 +2.538446498598771 1.2408303187579932 3.212903808562848 4.056720641644189 1.5478483769336058 +2.275410789558499 2.664005746025786 3.2002006944907344 1.0131442745441355 2.2213108346698007 +3.031642105871763 4.485105256426576 1.2574378271610542 4.664273013756198 3.703927796089374 +4.483601214745796 4.543170269374908 1.378164835881452 3.768014180655418 2.390591634509324 +2.2243000123717076 4.836753931579169 1.7175367347670898 2.14144909024139 2.6466237294156865 +3.5798664721416174 3.336768531871337 2.9746919444165094 4.56225300882333 1.606065609427015 +1.0811153972214527 3.3422635667442058 3.5298210464123025 4.86346371542264 2.625146436513802 +1.4184915003640017 3.584425662399669 4.290552794025684 2.528265990278174 2.79229754376853 +1.7766469198899246 1.9471818361723172 3.168468186389791 3.516056685655111 0.3871691135575772 +3.727450924372777 4.647573871679588 2.9002584622373537 2.0726739782173027 1.23754689460695 +1.2021931101568488 3.7028799575243143 2.8252283732159955 2.757226396454506 2.5016112762457925 +3.9113762291475105 4.187333503880419 1.391551226072664 4.802028944250036 3.421623983383088 +3.162875442408184 3.387865003951991 1.7098509694303523 4.613435443895128 2.912288293276708 +2.813536801254319 3.1908328953495233 4.011171143153215 1.3356435805916131 2.7019992747309023 +4.560598702960229 4.5276385120308404 4.928907337474102 2.9459780520154055 1.9832031981912084 +3.311142818753711 4.915427567991795 3.5923189431293028 3.2880846803885606 1.6328772284722775 +4.695211019078112 4.249607661641949 1.834428331973906 2.325233280844416 0.6629116456920668 +3.960519163351216 1.0426824780755974 1.0174162742175148 4.581712393553401 4.606297618288799 +1.5954844586223245 4.234656280845408 2.689329822307018 3.8610321189685664 2.8875792940139764 +1.3399481704222875 1.2585876562967226 1.8247110504172017 4.389906064499689 2.5664849490173185 +3.8424126897077127 1.3421358984088965 2.266351779198094 1.269360024950891 2.691723721176529 +3.5082493954119265 2.054911778943128 3.10502070408318 3.3655945479693004 1.476512429870063 +1.14199927683305 1.1050136140296107 3.6963743450209186 4.860769779975552 1.1649826900843634 +1.4335598369924107 3.4481347912943847 3.055668350664824 2.5574637254238537 2.075263861563704 +4.850008471316403 1.7706269675448039 4.026664647966731 4.081155208314225 3.079863579273864 +1.3560487325247697 4.106944857673666 1.751340379747674 1.3305173874929124 2.7828980366103 +4.1555474801150325 4.572709395413655 4.515308267340176 2.6614884875570666 1.9001767916409018 +2.9635275556536844 1.6571406520740113 1.0519391391003023 4.568918746985036 3.751771888604308 +2.6982830244551788 1.9184067814107073 1.8031083103019778 3.814189258483573 2.157001051136541 +2.8276991337644937 2.7196551013487418 3.5922601128162652 2.3211544900221663 1.2756892322346496 +2.5429143083460217 1.1743537132091793 3.525390222246704 4.84986833449146 1.9045210349000457 +2.2271654462434 2.3021755582967836 2.251249055179992 2.6646228193619828 0.42012425045961 +1.0386422540136073 1.4097240969185356 3.5077796922053595 2.089655929006369 1.4658706429570734 +4.98919549700544 4.433384212380673 1.1612314616336348 3.0079943645935296 1.9285900040872066 +3.4920520043063616 1.5836404710549812 4.191613613726447 1.240290092538737 3.5145903185097844 +4.702966257393959 1.8457952716578272 2.1772441770304756 4.498692975419543 3.681378894554922 +3.499470286313278 2.497799114145169 2.818913083759605 3.394082599694109 1.1550606517464637 +1.535009931289259 3.994356362285209 3.5278733803316054 4.913295723353171 2.822725621840685 +4.69513702323602 2.1241190925251554 4.415020978021634 4.765660769095702 2.594818194618121 +2.3073441601376343 1.7494018932304978 1.4596233919444375 4.1944368987221905 2.7911475220875563 +3.754797129378245 2.925568177755478 1.219322009040499 1.6231021258404073 0.9223117894358396 +4.76103761137882 3.2142695137603123 1.1678251184870816 4.656166528204254 3.815890110912259 +4.104145049688815 3.096124337321901 3.5802324014968225 1.5214919959255195 2.2922735033351915 +3.402470723864292 3.1530435841752618 4.450747334196006 4.25637259379441 0.3162205523359272 +4.8951897356761265 3.1327258562568945 2.2908392121114094 4.335795403011552 2.6996527089531925 +4.24149596218498 4.514164721779193 4.098009182372555 1.1508888082534607 2.9597072071416988 +1.3690540574019296 1.9004546213327944 3.1889928347612275 1.364843178448477 1.8999759282611892 +1.0379153563753505 3.3967230691989916 2.3557508716749163 3.3464771937995663 2.5584199169461868 +4.183237556609855 3.8759045480239243 4.2146555565511985 3.994810090227488 0.37786982841921857 +4.792156684237737 1.8526868458342105 3.056860845290226 3.299686408714182 2.949482528365987 +4.14585248863564 2.697596458474201 4.4937557294470345 2.5281014619060675 2.44156552818084 +1.1341341648777181 1.2616226893882914 4.23489592493581 2.9279059018399707 1.3131931481522223 +1.5760819244037325 2.893259846943292 4.711561662132265 2.739476898750322 2.3715134394704247 +4.38278551744876 3.9947586310560426 2.302607156770101 1.424850690169861 0.9596985355944675 +4.917267876048296 1.8421563166589765 3.378821809247547 2.0809090876505176 3.3377969584103253 +4.823221603090321 4.071292136939402 3.6398251960512957 4.368547766622113 1.0471076864035265 +1.836061173991907 1.0595373989691823 2.788915838896177 3.8643622344662125 1.326489397967479 +2.522461154014721 2.5587113392375396 4.320984288146518 1.3222510778632737 2.998952307454112 +4.326332352773383 2.3433212075074796 1.65342979855249 2.0300388195693504 2.0184567265512694 +3.4711888751038233 1.7827480393632182 1.8988220846398223 3.283858499575065 2.1838402703707755 +2.789384745979213 3.7036027023836695 4.652041157623064 4.387246843936682 0.9517933075899317 +3.38506321688637 1.8211746233425998 2.361939804851176 2.960254242183965 1.6744335456915462 +1.1518588551275672 4.036225116552929 3.57745197771342 4.5714367927690525 3.0508317788121486 +1.534450168370503 4.333819143079937 1.0368928821532242 1.6278933187967444 2.8610746534612796 +2.2587320994528324 4.582700585881412 4.62277611195154 2.4300640252193384 3.1951237567916877 +2.993190502611176 3.8581628275385564 3.3242174269026528 3.68411021307367 0.9368564139868046 +1.489768648691662 4.151144706514451 2.746790941234765 4.594346883144405 3.2398125685968298 +1.7738561534389876 4.227083210814026 1.1296501192746042 4.20059434049579 3.9305243167914368 +4.505356255766878 4.798107612305708 4.667904676586309 2.5825593868350567 2.1057939914063435 +1.4763245813487824 4.620123666849185 4.038194350050641 3.8859115942574225 3.1474851433652784 +1.8565830945476365 1.1714813165888507 2.497384210598409 2.4490142480406707 0.6868071777727185 +4.864637455192521 1.807990575624205 4.4170695406158025 1.8126693157798703 4.0157179529319755 +3.989532447515708 4.85423298257415 3.1849073420324334 3.0076264917005426 0.882686532821677 +3.682060745627005 1.6707139775875226 2.642564910346807 4.393440428927621 2.666661002615163 +2.5679449727177324 1.1682102833676864 3.3605292041199237 2.362410437238417 1.7191562678741363 +1.2840199357956283 2.53900906413117 2.494759261832098 3.6273117167934354 1.6904652541473175 +3.7143175107251567 1.8404395290222846 2.269655977539286 1.9433811727270394 1.902070960444457 +2.3880867876441916 1.1073738217630127 3.135339033879284 2.2178477246813357 1.5754415265029453 +4.7511122795144 3.9859106659617387 1.0848161308704145 3.565337166604479 2.5958655816707448 +2.582543214112317 3.545174567295201 2.17552913901991 3.532816955793452 1.663997998704505 +1.9582841287378479 4.729210528380548 3.3180864353736026 3.3367711105563123 2.770989395382729 +1.8418801238229987 3.0603172170804407 4.475093040245359 4.101219599799345 1.274507865686432 +3.92673038468271 3.5920848163159245 2.326968882955306 1.4695108328176074 0.920446611256445 +1.3464621136196753 2.3576140235056995 3.0260503800337903 3.063094474086065 1.0118302475071144 +2.10015032233744 2.1371829538852727 1.3327821702736546 1.1975110660210007 0.14024866289947263 +3.9138476768398034 3.6712096762786413 1.7435769760578328 3.8931188174838596 2.1631928548692816 +2.8678187352421545 1.7297913243544092 2.845054304305671 3.2389799744989523 1.204277302604799 +4.041579094043394 2.981528583375538 4.4711789216093845 2.65981633965396 2.0987475999927683 +4.695376236916254 4.896111098777454 3.0779207712004952 2.9842719013407115 0.22150529472780042 +4.148326463675552 4.3694053209676555 4.24487798134424 2.542990991188926 1.7161862336009739 +2.757712013954424 2.140874952507753 1.6054889100983987 3.1732223039897303 1.6847183606455405 +1.57352247828649 1.6696028747460518 1.3797860848524488 2.3911746193005925 1.015942030923512 +2.4288410480847604 4.097096360788736 2.5290080405586237 2.5149453016497225 1.668314583341721 +4.732598253361051 2.0752887141030523 4.135633191789623 2.6934630052706137 3.0234332859045905 +3.274329348163644 3.490224020380041 4.4466545178153485 4.148567232079306 0.3680577935717524 +3.9632604411979333 2.486525846232969 4.1940944345421745 1.4103948518633005 3.1511471610467314 +3.884580015476185 4.02192367414377 1.4319326198138254 3.517525505610431 2.0901102760049795 +4.037379523502935 3.86436792964372 2.928436728584625 1.4575837796559417 1.480993385867037 +2.1426185648863436 4.055509389992714 1.0115755143328133 2.3830721078969663 2.3537532187836105 +4.156885188606822 1.1694431738282924 3.0250338911511148 4.164729423002529 3.1974545652731448 +4.212984179240583 2.9501992613534234 4.1823875980172875 2.582071021144771 2.0385384212852724 +4.249176913963824 1.6185281977011976 4.83114086859643 1.3888212289207162 4.3324216288435435 +2.570898671558489 4.586617399584748 3.4832006750015716 3.677610650297868 2.0250721540257537 +3.1306819870004596 3.2307388850198184 3.4565621309365344 1.3851703232342518 2.07380698326951 +1.2030990335137268 3.2898819314811694 3.1741777817548753 3.406648573761439 2.099691770804838 +4.565627637560823 4.647212941906359 4.530025931368179 2.8469007734964578 1.6851013200831162 +2.8479243880712772 4.002643737113023 4.517247672894154 1.2281583632011817 3.4858980567693005 +2.482494372996597 1.1975204185490833 3.908601816934205 1.7666867839879883 2.497790638137927 +1.0866576598004682 2.45781359842593 3.7864117776719928 4.455030802728357 1.5254900880357087 +1.1515998850032632 2.4547392460250768 2.083828083751718 3.3370755518785753 1.8079826909046222 +2.4248197184560047 3.1191329312106286 3.717216257146925 1.1633464389780066 2.6465679446331607 +1.1626494728694001 3.1153316228892804 3.3757158384041888 2.517455495196286 2.13297407291547 +4.042250345427579 1.7522177971556574 2.308918410000169 1.7341159171867582 2.361069032851285 +2.0499096880029417 2.3048619147076095 4.591312591579083 3.6760603723491863 0.9500985542073618 +2.8548368822410217 4.679831482456665 3.585287559118674 2.212986452615589 2.2833781153645685 +3.5312387695208503 4.566331604954274 3.313918161064194 1.7096605537271925 1.9092039306119832 +2.522639628812562 4.087312406883534 1.6881502969374873 1.4828538954437227 1.5780834942748188 +2.8287746128098044 3.4696600664090456 1.2650524942364703 1.2381795782896319 0.6414486092015408 +2.783043698654584 2.9482509072728984 3.6042235327865026 3.3165551808050924 0.3317325768011875 +1.0313654641236734 3.3957932969770606 3.9331375799683093 1.342967086255903 3.5070646077981134 +4.654361363577212 3.93207049854743 3.412908735390751 4.837446050938398 1.59718835992915 +3.4634430010646646 4.7010152246167305 4.5863814898152295 2.4960168820297346 2.429240457836525 +2.602882140470909 3.288825774693128 4.104376074020289 2.3191561341319957 1.9124667064042569 +2.104594929246429 4.861284358673415 4.905945262370688 1.9510479749697245 4.041132834912019 +1.0231607866949193 4.129910630941698 4.97372235010914 2.46823216477673 3.991162194589994 +1.664519872081092 3.3674294646126444 1.8020061299656502 2.75050977950482 1.9492460731075236 +3.8445265233776205 4.341800023992768 4.546267080682845 3.294238591178413 1.3471660153614298 +1.1435979559299447 4.663377755213466 2.8407671915408126 2.131626323103226 3.5905056199277503 +3.1430950642250233 3.2180909525793964 2.148131331038054 1.9414112716032483 0.21990353849538488 +4.422033980160791 1.7683026999594373 2.200137423809353 1.5952744935616048 2.721791482077017 +1.454594081607964 3.97696425990203 4.246813157010278 3.516299038221297 2.6260240277075297 +3.820276531665568 1.6839827687978741 4.101854331560113 4.2787974173887475 2.1436090821066163 +1.7672650041577969 1.270375849869621 4.7221020835861784 2.890858555947006 1.897459272071361 +1.3942059527156636 4.2795037313228645 3.639026367891424 4.642411328171644 3.0547871693052833 +4.582912496266107 1.278784276355882 3.72340326264582 1.520888611880427 3.970936171791648 +4.995458790478687 2.452755040781974 4.677466809423159 4.4451687993966935 2.5532929178188666 +1.9495041399033628 1.051824292296983 4.026911732145631 3.9931348535468536 0.8983150818763369 +1.1560170187156928 2.7338305407797328 2.222701492795156 3.846198117370845 2.2638985843930346 +1.4201735955117987 1.0542875225182957 4.296543599376518 2.685906217234403 1.6516735134899427 +3.0295099944689468 3.4547992719259795 2.39297145467647 1.4065156578055347 1.0742280990088635 +4.44033784752924 3.8862792854481487 3.6240918874487784 2.1535368168861115 1.5714684552268101 +1.6326310754851034 2.624372298637724 1.2857169167056473 1.178032073218768 0.9975703881015363 +3.6740296959378957 3.097298088005546 3.0961421521593864 4.334306850099265 1.3658957378997805 +1.7375561448004353 1.3896378808478405 4.341659426014038 2.0781390104909803 2.290103008574388 +4.343227144103382 4.774233280450593 1.0829766252428064 3.9401196159466423 2.8894692175029326 +1.6877190688606434 3.6963283419841653 4.735626069448969 1.2195679439956622 4.0493426569807625 +4.881201638368463 1.673402329805612 4.972487815708897 1.5634206100015278 4.680995152427073 +3.3874997498983928 4.683333523598442 3.6460683133985134 2.2561211047369785 1.9002995584716909 +2.828711397445387 3.3898136715869596 4.7752898995148705 3.522224674210709 1.3729560156514167 +4.77526325378612 1.6367215079001904 3.2128801270328857 4.366193742319031 3.3437369193573074 +3.359906341907439 2.7478804946736854 4.896287916866626 2.361065574930772 2.6080506054777604 +4.22873399030326 2.758132547907777 1.995956309866326 4.115038067300581 2.5793751369404037 +1.2558253138780735 2.7843773843036383 1.4979882651537269 3.215207379455652 2.2989808434448014 +2.1636669573059666 3.530856824171952 4.448938330954862 4.089422749335736 1.4136688386917107 +4.108180424919345 4.664961206828282 3.31482568269273 1.9738368214261044 1.4519834589775078 +1.8900590642432107 1.4704841300771831 2.1380908568009747 1.860887353834653 0.502876632423128 +3.029965542643474 4.6352577228872205 1.8961928812658173 1.0246365481256405 1.826628978689562 +4.3072414885472785 2.3396459147063617 3.3887626123538235 2.1039620380266113 2.3499244366553365 +4.017715442204487 2.4869554606524584 2.179959880140958 4.449163135791004 2.737244880637086 +1.4085756653464032 4.779231318101633 3.9579453201888666 2.452297672571863 3.6916519836281156 +3.5615634059010564 4.8612956101943645 2.0296642656099273 4.150731744029949 2.487615535183886 +2.222602317531263 4.015304189675515 2.5908296004136013 3.8076468556138123 2.166662002930425 +3.108839650006962 3.99165108163479 2.73564641729002 3.488338235739997 1.1601297329929565 +4.995013913917701 3.5066328556227804 4.481670812078415 4.920606576883982 1.5517547423212714 +4.513329310457807 1.278696243864336 4.199700870117287 4.326792247687303 3.2371288657933475 +3.7699184764628426 1.8490926302395256 1.9346159990431855 3.9064245373765445 2.752744238639663 +2.863765553622858 3.2343337582250533 1.5537145286438334 4.628034345567799 3.0965728040841376 +4.390288443653258 3.0012046660730443 2.5671562806854396 1.099983536186845 2.0204330237194337 +4.304926988503259 4.061861511593554 1.7880842680460232 2.999418584957232 1.2354803330656814 +3.791941837566498 3.2294451705858487 3.5461536941739458 4.043338760987645 0.7507299721117319 +4.146440489883577 1.561115402790103 3.427454212814817 2.9957001220666655 2.6211290317023015 +1.8710545515231356 1.6853738258206787 4.2567069357431535 4.608188521818544 0.3975130655053532 +4.682067413467782 1.528081864561773 4.607309835086259 4.0611619878726195 3.200922103663885 +3.716582536140372 4.915064499105578 1.762609709513404 4.194176759233655 2.71088128342762 +1.4226737135549166 2.184488663036537 3.2340645184778385 2.2242403695608846 1.2649532912283894 +3.2979577383885013 4.08284500968173 1.1722024979894798 4.287359664421156 3.2125149338499206 +2.3326888256170686 3.153004120970186 3.2428064988571226 2.8139213905788067 0.925667121536233 +4.5217654628121124 2.257849646535878 3.486455178234 4.375421940441054 2.4321958653641738 +1.6481990755174163 3.503754533173879 3.1988598423201764 2.981025311626871 1.868298139805598 +4.213136489192374 2.078118679424704 3.473191689213939 4.98628111625634 2.6168188057740336 +1.6626397642851467 4.1809467089975785 3.041943617775362 3.1061307972589463 2.519124820606736 +4.167349169713224 2.7164964548995 1.8143087359371886 1.7453471015273636 1.4524907253069903 +4.939234254509172 3.05382892755048 1.142801603385887 4.858332354465994 4.166523971987455 +3.0017565040595855 2.685773839629559 1.6014132598293762 3.1559926755363303 1.5863676131212694 +3.0055794471007595 4.122157694593658 4.122801607110281 2.1587029320530102 2.2592986938729545 +4.9924139485083465 3.1313725527869387 1.25138515717122 1.6879983899180666 1.911571654842773 +2.7267026972226014 1.8607635254217962 3.205932086011694 3.4141550171844433 0.8906219390545215 +1.4973968225987524 3.4956468704792654 3.1823945832163423 4.498416278654312 2.392679743868347 +4.571314589299411 2.3963839414990153 3.4994953841472207 4.699260128696857 2.4838999104242716 +2.6110870344069985 1.1069955968019731 4.999189675910975 1.9671425722002667 3.3846123399581884 +2.2245864642324893 2.9186173967850597 2.9170536101239404 4.7318721460980475 1.9429990359892082 +2.865476780085815 3.87341242820514 2.3435463274870294 4.133329756177824 2.0540834920630417 +1.0910120171813462 3.5148249896908395 4.564647796479957 3.335676561259276 2.7175797362184526 +1.6023130393310523 2.8575366886918045 4.765620138586557 3.360492597828347 1.8841363580462371 +1.8541591836652254 4.310582106501183 4.742056274182069 1.6109389942751138 3.979687047541035 +1.2334232927343787 2.6503482115172874 1.6800615898552085 3.711984852302264 2.4771734638376532 +1.753738456807096 4.403039798019255 4.985165769427182 2.946057725068227 3.3431660462977226 +2.6270833289254063 3.453925489674944 2.415414758096458 2.891329692942865 0.954024624421626 +4.89198031533782 2.5610362454177973 2.7872644168624277 4.112372962931251 2.6812707651335685 +4.747383259323344 4.175542264397523 3.7658896706680873 3.139793212678707 0.8479380273254651 +2.9255983401632344 4.461025394932024 1.5262985080918319 4.824428974955728 3.638021552571098 +3.4006500113009372 2.1656705732759276 4.941297738372221 3.0860068646588132 2.2287392037716813 +3.5625617789829715 1.648651997754591 3.0078292239622666 1.2016309819803794 2.631615994027268 +3.4637577426464263 4.148097010782563 2.163183397871784 3.5042427398832188 1.5055764320383225 +4.384880042339997 2.0212409547604633 1.5458592230931343 2.0650935306447087 2.4199987608410822 +3.2226988043522216 1.5852159691346794 2.0546803610232063 4.486897333229525 2.932069138939352 +2.3672872248252586 4.549651496188051 2.699571507203211 2.602076237803659 2.184540945021664 +2.4317693877794104 4.458082367221697 3.6295010565903376 4.925253216396982 2.4051856373884863 +1.7446961585109295 3.283575414359257 2.372194511236541 3.2360433591946665 1.7647617958803627 +2.862494331696072 1.8936346797644856 1.6054206848360124 1.2717259732163084 1.0247151729646398 +3.4235072288150654 2.2463981712953083 3.0657607390739328 2.1325216571359014 1.5021720664929137 +1.3109498784723006 3.144394937210964 3.6144804052285795 1.1464669267662266 3.074509930588136 +4.837197906945194 1.9130611231995251 4.2026983424354505 1.7006889798286156 3.8484577145431556 +1.2194383749276745 2.8961617873576246 2.9567114581096328 3.8531738490158016 1.9013274889139802 +1.9682930321453616 2.699852399452105 1.6176800041889212 4.913219449611759 3.375760557893896 +3.937303226266658 1.9740154853149554 1.5821356920077099 2.8008845672156784 2.3108110209603745 +4.29029464169248 1.8954657963361061 2.232879464918569 2.333726321765162 2.396951248375064 +2.122395659059529 3.796333968512165 3.8006497004051734 4.434919232870381 1.790074664271516 +2.2451247333266804 2.9411788510364083 1.4691284625570185 4.1405655049745285 2.7606280456412597 +4.755756172496984 1.463747115930186 3.9410859007569687 3.0665609823434994 3.406188113044243 +1.687746714809156 1.1133991551126674 2.4364561688105737 4.898433812585011 2.5280840646177967 +3.5789565933148846 4.935732647341055 1.8657960653948953 3.204309545517329 1.905901255901862 +2.9851581487380168 1.886819323405342 1.797911116938684 1.4186744996469 1.161967549946243 +4.800842285743253 2.440730667628936 3.317967498922958 4.822884443001154 2.799089469547524 +4.572256864878176 2.5246114083978246 4.723862638505921 1.1658875891739342 4.105123428974283 +3.173210911852262 4.378944370952158 4.91209651965295 4.302111972047806 1.3512491712153065 +2.478798303806508 1.2857959214023515 4.395574445200131 1.989674789242271 2.685443694989739 +4.838378707231168 3.782373655273011 3.870847776330895 1.2551672561908696 2.8208032992750742 +1.5456651260546832 3.893882197652508 3.7116302237629335 4.3516861183456825 2.433884747380941 +2.398089372562097 2.1478481050942486 4.100566660419926 4.410939937726315 0.3986881779158045 +3.613171133984251 2.6510996423661632 2.6737070288770104 1.6614859460349534 1.3964859739840567 +1.9730446809494997 2.491768854280401 1.6049386061070652 1.1740652659246953 0.6743341925764549 +3.9061959031906777 1.9294992063660295 1.6823772278297349 1.0408460214549802 2.0781944374841648 +4.245721000683671 2.5578194294838976 2.6630052489437053 4.622511115472636 2.586247272597878 +4.903741487604121 1.3799552845991685 2.7901775439386 2.2829318938725858 3.5601077728067376 +4.708383727923149 2.1403379621134087 3.897603515729043 3.8266702345452592 2.5690252209102256 +3.3399750338449268 3.7294211458263034 1.597457280690997 1.016768589534097 0.6991906965734916 +1.3836305255100836 3.396754869814184 2.4772114297639027 2.840497488079425 2.0456408252174287 +3.5730903587194374 1.8572724207061162 3.6992274238762715 1.6252884604455753 2.691700953011734 +4.957307950643159 2.426362980525381 4.6513148134229985 4.187976877901159 2.5730068954936987 +3.327620630705731 2.7275307106614113 1.7848885964530328 1.7068134611487809 0.605147617438568 +3.9499893408554327 4.45719601543593 3.634286418570117 3.8871558167722315 0.5667464541451543 +4.622263886451828 4.801843916639799 4.836835185561297 2.9761411804567532 1.8693397679058505 +2.758431890878557 1.0436000486574342 1.7778066943017174 2.925564546881278 2.0634912975957844 +2.9702664200931945 2.71747384994876 1.7919164484289065 4.957005805595445 3.1751684557467375 +3.4021436210167875 3.050217662552365 2.9252288289163935 3.825859427376453 0.9669474417586651 +3.7735097393103567 3.213590040034391 1.6942630855341787 2.420765425798553 0.9172326422707061 +4.151618242161245 2.93072071413419 3.0558338678680803 4.119251813000268 1.6190887869328656 +3.425815331901589 4.093762556664862 3.5518002958217765 1.761949897949088 1.9104234980323027 +1.1010577212054558 2.6710123841337614 2.23135623346718 2.09442921004432 1.5759145450797052 +3.045610886640716 2.143019023805657 2.779109754560223 3.4456570331509098 1.1220326846632913 +1.3538026864549129 2.64138670122342 2.4528143871614723 1.8570848629391685 1.4187199375202704 +3.2746496697061964 3.234020316218773 4.48751015020366 2.810503357833917 1.6774988900202168 +4.940559293062661 2.737970982004894 4.1751912788408125 2.8314296471731715 2.5801338319456195 +3.819803836369802 2.5825880417630973 1.5545332656644533 2.3014722982925773 1.4452061586111988 +4.173957649186786 4.107533128815264 4.699051690320756 4.362855027512001 0.34269580241130787 +2.938900801882124 4.050746474570083 3.348649781328978 1.5999055406378657 2.0722710293842534 +2.1789911872928474 3.3697699087474935 4.834173987987297 2.964374736642695 2.2167776622381408 +4.357839230461751 4.224631297824244 3.589011387554046 1.7911141212595392 1.802825264263517 +4.542722899456681 4.580976099818486 4.826351489364329 4.948688989434737 0.12817866929172442 +3.832164556893056 4.6193193567974795 3.695831337593307 3.9649205902444673 0.831878419545148 +3.3474873880019325 4.440896543527751 4.7996739892192295 1.2476719617113083 3.7164851654228444 +2.768146384445428 2.35676868710122 3.1814301595132726 1.9139532155904337 1.332564975244435 +2.9707627185621583 3.548802066090614 3.889567973800952 4.904846469070504 1.1682978688022714 +4.844822635196262 1.353130505535296 2.6031743420700186 4.555181328107729 4.000280640389667 +2.8623227494208705 1.687875534908251 4.850635585036851 1.0344664038796725 3.9928027097378984 +3.849427502260184 4.8219087165404515 4.6183464094094955 3.7356612290947524 1.313336529483321 +4.493790119232642 4.1332428723621835 3.8555794197406374 3.404824057237372 0.5772128845160318 +1.3650682595951649 3.751859177136066 1.8186652136111943 3.106707735211827 2.712162314742068 +1.7895014218534238 4.196564812403045 1.0458034458876995 4.243339481512201 4.002273212218463 +1.1071668136793718 1.4773954324652032 3.4457297581193553 1.4725934780373113 2.0075696774817233 +3.4170845286971425 2.5166410039439233 3.644719474218525 4.199263126892744 1.057505179179405 +1.516561103550703 4.795958238645866 2.3779077001030253 2.472687674590457 3.280766497822453 +2.1964771474378177 1.5095565077719204 4.712590092752926 2.881396350712807 1.955794080696099 +3.366952317477733 4.312305975919631 2.8743645217906524 3.3470840334099257 1.0569566103653663 +1.3495817863444293 3.641873259012769 2.528731865517052 1.848839441561609 2.3909943337072117 +2.5923618128843233 3.091977890275714 4.638899979574132 1.26287757068599 3.4127911641503728 +3.771790398073395 4.61097851796017 1.6619578790280394 4.775976675019985 3.2251123642983703 +4.988757620810217 4.581642521211953 4.339071639039668 3.41053543585941 1.0138649737205212 +4.650786190648259 3.7073351125564566 2.048705313448979 3.1667165486231834 1.4628906516648241 +1.0194940739794487 1.7140881960260805 1.8296014790405106 2.472400145740084 0.946388461622647 +1.9511122662038662 3.9047555119300736 1.1701806626108966 1.670968908248097 2.0168070801492184 +2.505249823541969 3.7754549469453496 4.9187131164863995 2.9337287934942657 2.3566042981469626 +2.2675153373213432 3.497696117767524 1.4914365169179153 4.0928250755918665 2.8775974676418716 +2.1794327936973104 1.1425325315141697 1.4187801909531887 4.365823580210495 3.1241361833122223 +4.8446317571952235 4.216226408776097 1.1309314096417684 2.621247918355592 1.6173857233408249 +1.6972780171988702 3.0968171328182024 4.495257935034737 4.24704591074332 1.4213792404391536 +2.931002134771905 2.284020798668342 2.861898035724324 1.5650266729338447 1.4492964434139715 +3.907128773136191 1.9429641262548607 2.857245146864267 4.770351099436963 2.741882044477396 +3.6347296053506706 1.9103619078936136 2.686392704995957 1.6384474632371981 2.0178288296478906 +4.319237469778397 1.1122403910963952 4.816383705410789 4.883916748182859 3.2077080563138765 +2.32799076339411 1.251251052557388 2.6135363144067 2.9875000685020967 1.139832134250421 +1.7940813551951829 4.250259878840273 4.990929543130129 1.646600698548228 4.149379274146662 +4.707203998564861 2.268062492548455 2.2453411503615626 3.9145994938063553 2.955644549591854 +3.296794561747829 3.2283229099921886 2.94918806793953 4.687943698459094 1.7401033043350131 +2.858975616031055 2.2057268427793106 4.933862780804957 1.9028956729823925 3.1005637501037113 +1.4915902928484206 3.076021105144897 4.532874326209482 3.790985418993368 1.7495199769093213 +3.617330747924291 2.5193420891965816 3.1023676584162634 2.914131518703362 1.1140071539216831 +2.6697038952088006 1.8026309498595956 1.6416673418230219 1.846969252790044 0.8910467817142131 +3.334256080779751 1.624796396995623 4.583407953386956 4.429109078400533 1.7164092033385883 +4.898520069461426 2.8020472623328256 4.250716676956642 1.6493748219185504 3.3409845371989815 +2.606150084771815 4.280262948023158 2.59841207015138 4.602767163654397 2.6115308192236784 +1.6066522255934585 4.267380497454301 3.571460712019644 1.3592269179820202 3.4602678070001587 +2.170642303941288 2.9033607660480407 1.7678789712277863 4.157598997091664 2.499527584710146 +4.725359210563431 1.4882592072986713 3.0103894375273765 1.5041305640001212 3.570382644089608 +3.684161099470449 3.181161486324339 1.8180945383581384 4.280272053993347 2.5130313824790775 +4.665902644185908 4.747410872811612 2.1734640087422767 2.2881761738821425 0.1407212569755394 +4.863273979739588 4.337216552760289 1.9578371586974974 4.816325755550926 2.9064916092810527 +4.010230651528934 1.441684960940722 2.250906999038435 4.592614476558461 3.475776298168868 +2.053591749379634 1.2021585166388151 3.8527436581807613 3.2847366552253527 1.02350891799821 +4.754157156028887 1.4683653341441167 2.660541823360663 3.221154828551441 3.3332738918897546 +2.7201045871361975 1.0006249522798325 2.568671619746782 2.7598432274995273 1.730074217568873 +1.0204246802536634 4.288372464015085 1.098653775475614 3.2054573242532403 3.8882006006034704 +3.515816626486473 1.7694176957851853 1.9191609840532164 1.8599203573281295 1.747403409922672 +4.966774222160004 3.5185158989154375 4.6635116240385965 3.1840182157645662 2.0703509161428335 +4.824873038708089 4.884273718200646 1.3955410924834362 1.1781280758211095 0.2253815887298485 +2.034266475211534 3.7648753428840727 3.235314941577437 4.607587775527259 2.2086511231209656 +4.204543925179621 2.312457140313094 2.5632067334167483 3.208374122684202 1.9990581186250524 +1.8386465108605474 3.6118262386576405 3.7133098243761027 1.1761535691761855 3.095372063318179 +2.495684673820836 4.736973010438444 4.283918091931421 2.4960606879608593 2.867020666962566 +3.2565022116682205 1.1959196140108275 4.565780139735599 1.4734412628318978 3.7159871328327463 +4.343668862443925 2.696810427176503 4.85649918170296 3.624895832049267 2.0564507085485073 +1.7990655193534515 1.1537549787657069 1.6695900698612474 4.084363738389405 2.4995114650688413 +3.2904872281281774 1.402650520428855 4.785260454243941 1.3920435323912832 3.883020539951372 +2.015141003732236 2.24363799472744 1.6748539451812463 2.1924215280947577 0.565762386322029 +2.90380003293541 3.8234989859853346 4.456678680609986 3.67276411076974 1.2084569570526482 +4.306209626764593 4.00743256483374 4.400094049761006 2.0163634489397917 2.4023820075141047 +2.8889303480213275 2.62034096133725 1.8494767198180155 3.312637866644443 1.4876090885114124 +3.351091480351623 1.6730347401673868 4.832168672264557 3.37709652234728 2.2210604189761773 +2.28014717885999 3.8306389770869784 4.849564116967999 3.6521089073689974 1.9590619682299355 +3.0353205509226138 4.961751056644059 3.6010215360673534 2.1594694915427284 2.4060770541375662 +2.528735101619823 1.9765987703624068 1.7296357925107393 3.1270166488258138 1.5025071666685155 +2.697785640261895 2.6784136371361527 2.3991719652048893 4.549548600638554 2.1504638915183185 +3.1425307949105425 4.9614641908918715 2.1299787026984283 4.609296965869004 3.0749858128302527 +1.4239221042701895 3.859819549549583 1.3597941741348238 1.1734186548223655 2.4430170277993692 +1.3153722705666318 1.8918613237296666 1.4825953928862265 4.5746678005759325 3.1453539391955285 +3.0882762950602007 4.116713070303928 3.678570473750343 1.3771325551456681 2.520773431680272 +3.4529944695466206 3.30394028884237 2.7838858693344775 1.926976454825641 0.8697763468037587 +4.086530869401463 3.760273570918022 3.8304008239977674 3.2162963249102416 0.6953906532397842 +2.4117711015082595 4.259480212648452 4.355047418129664 3.6720888817213297 1.9698886572198677 +2.114496022692192 2.691851655498657 4.1885744242465925 1.7141351616120422 2.54090322350159 +3.7479465845918334 1.3745883580057825 4.779975312670224 4.344669507205923 2.4129484901204603 +4.2309586394750225 1.0204820849499283 3.3013903621016074 2.711003096150094 3.26430954888672 +3.891080236838764 1.192065239646369 4.557389198447064 4.65772183264885 2.70087922583653 +2.6637460343773727 3.5809895993075718 1.2252804598469784 2.6811091382595085 1.720689657751866 +1.364510783099428 4.008965053944436 1.301606697021024 2.347647034373672 2.843824674265143 +1.8410458456905374 1.3268508902357268 1.7045817411175777 2.3974472457586304 0.8628204098980711 +3.8733298251481334 2.986407992382048 3.0842275483456962 1.1005502293896585 2.172925687449473 +2.537232224396923 4.544721544518867 2.694742728278248 1.8061550440720668 2.195359069247345 +3.6887087626684183 1.146658680491702 4.123522895473034 4.385561688879888 2.5555200937470186 +2.306157210315296 3.654612854118885 4.395954870869023 4.798518150030118 1.407263236581801 +1.0248673397690182 3.370574567131337 4.2775122570672055 4.700508452112841 2.3835411004475886 +2.1161757486094346 1.9718010747159447 4.59724388301973 3.798281933670225 0.811901621485148 +3.3422301903382254 3.5337818384500754 1.2528968634574746 2.9428168715349523 1.700741505224985 +2.2503120732279496 1.8029133086859916 1.0014013396814514 1.263502024670787 0.5185194534301961 +2.880311709097029 3.42446758682351 4.7662584322319095 4.559984182115645 0.5819404484354944 +4.565020298578715 2.427883336287815 4.100906570176044 1.298225587507198 3.5245389891734193 +1.124361951917345 4.1985236468551665 4.897027017605545 3.751755788050682 3.280566462650785 +4.528622672144602 3.4388106281622988 2.9169771260451793 4.109783779680112 1.6156973739424876 +2.5222357048650594 1.171821386743272 1.9409429167227086 1.109275778414177 1.5859662857484185 +1.5462134077519067 3.237831173962095 4.018807646433509 1.3342520932990705 3.173075666419397 +2.596744661272577 3.806681044305036 1.0211602669963078 4.5367195971390375 3.717943444263141 +2.345411117639741 3.8084534362627327 2.774526178864863 3.500879751226917 1.6334265634441167 +1.705463131919839 2.2501231620522764 2.601971288729675 3.826799620440319 1.340469690289544 +4.782007247398058 2.415804715033162 3.319833097544331 2.30447345444821 2.5748533218415233 +4.081571526341392 4.2555343889520945 2.8412735357103065 4.24484707615901 1.414313176427137 +1.6789492835422566 3.8092965336756133 1.772463025199 1.6857916465509475 2.1321095970956816 +2.647822653588287 4.937967182766382 1.2420368191016236 4.742400008316345 4.182977936940836 +3.6001489087903003 1.3611548545615846 4.626585322474398 3.230377786953007 2.638653038411503 +1.3317539999113985 3.983247117033394 4.054786818488605 2.3961528932474208 3.127536130583673 +2.045098303375525 2.8727284963126167 3.1926110480545997 4.124741979391657 1.2465311104887744 +3.6895006925197507 2.972457001932402 2.1137850866690204 3.3016225001002546 1.3874831079901946 +3.880458332757952 3.067811807523488 3.1637831975768616 3.1264104294971036 0.8135054386847033 +1.218702018496864 3.1276026313851806 4.99506756646899 3.5267447170578867 2.408292660784426 +2.980113022390927 4.581868165597514 3.6346388509906973 4.0898233083784765 1.66517639577198 +4.981970765178843 1.8533828230352078 2.3352828372120626 2.5321451447438093 3.134775475190093 +2.335930295924972 3.4452848537658887 3.4712235042925816 3.320235891668787 1.1195824195512578 +1.5667556547468058 3.9072956215102903 1.8510912847503214 1.763929991793805 2.3421623400198084 +2.5170957531570077 2.6187176986514396 1.922038930064455 1.8541503600503715 0.12221242876495983 +2.3330181004332813 2.9726513946395774 2.99257332095666 3.2231253815214527 0.679915438630327 +2.171998211565494 2.0480187285516824 1.1437795797095651 2.0840099740289904 0.9483691826553802 +3.330195247357882 1.5867873700338966 3.3222793985164025 4.169049749021496 1.938166931203255 +4.077774720624145 4.073116542381577 1.1106648615423325 2.804862837885143 1.6942043801349982 +3.8432316216043603 4.293284597369684 4.091841387547246 3.3185196928738967 0.8947480787616616 +3.806922898502698 1.5943006992346898 1.0516420249286735 2.708107219251048 2.763977918995566 +4.302374484834603 3.1573690931965968 1.5043108503664833 1.5100058401442613 1.1450195543258959 +4.278477737257644 1.1588155204616308 2.634982941182566 4.549154691089472 3.6601018886154355 +4.998778898302078 2.1288862309359686 3.4434102734181145 4.03009232215282 2.9292455937509425 +4.623099320779072 1.5505463170431892 3.881477119731835 3.5926979136220045 3.0860938726240676 +4.936473242255142 2.4723513946002913 1.575839823900798 4.625470818626488 3.920732799373295 +1.848025476829632 2.712251761250726 2.9619980804462265 3.860161870358439 1.2464290048750304 +3.1979127231638755 1.1367462536348176 4.25163077503989 3.7824602639282614 2.113889349896921 +1.5103945217366452 2.4924717305265216 4.182033343598336 2.0253463119578163 2.3697625612012083 +3.171591669716053 4.83641240906225 3.6375598965700746 2.661278154236174 1.9299622106589898 +2.267706112373087 4.160601154669223 2.2371979123978294 2.245126087427691 1.8929116453518362 +4.0901662908822995 3.2356292934757027 4.609600869858701 2.1002391140295518 2.6508734223939534 +1.74835263130538 4.111033429952677 4.793859752867759 4.673525898392625 2.3657431798125237 +4.720376801932052 3.3344646646767573 4.384035000647923 4.899532780143357 1.4786786036378095 +4.046985050129297 2.656777272852615 1.649697080879461 3.3479655632306806 2.194719458643425 +1.5861589724001215 4.86234047946968 3.2705085059824905 3.280435717137904 3.2761965473374586 +1.1421216886545804 3.915624360991393 3.7443243801175434 1.7760475673584653 3.4009455575037473 +3.7893117321207117 4.562662627291768 2.6834378473733214 4.111184581494834 1.623740232874865 +3.59537388193314 1.1374765484020495 3.399275791056878 4.64750941517956 2.7566912200262275 +2.4222767139177215 2.8926399050418254 2.7463797002159955 1.033738794070295 1.7760575455114107 +2.2969194697737465 4.4201515021175 4.136532310919313 3.9275773127476197 2.133489267475119 +3.502201731235628 4.481786415858178 4.73307722817308 2.6257077978428938 2.3239173974642977 +1.8589994775639727 1.1366090959379997 1.6814951360919053 3.5932980466251245 2.043731448157758 +4.955071689456142 2.9370540348875127 4.490791650549801 4.651773053701493 2.024428380138789 +3.1318982359612653 4.980818811765582 1.8226504711334273 3.3289299052482897 2.384823899005953 +1.4082647398113104 4.4963960194312 3.462308830340949 1.0973976528504554 3.8896477575207564 +3.2842330864392677 1.3628793606422573 2.286495194118557 4.739826397710649 3.1161569495377917 +4.228067319603797 3.906785401146404 4.864227959822304 3.635395543924674 1.2701382513287554 +1.3662450348087005 4.514249741358666 2.174531264971379 2.641149501291993 3.1823994423905524 +1.7725940652954324 2.9484711259891903 1.3842591355616563 4.565206363932661 3.3913289624492293 +2.115614623159145 1.1323297317417205 4.332355657918501 1.2283543182599872 3.2560211139198136 +3.6570595268992867 1.9219222808690355 2.0222396646554346 4.174564181372125 2.7646341688948968 +1.8603726868110355 1.1226056146419845 2.4502683596805195 2.5125077416355275 0.7403877318290971 +4.783062688113732 2.8889666067047126 3.6422152873705524 1.910946448656698 2.566104393338397 +3.4349270259328857 3.3394521933767654 3.52874853316863 1.4038695855632581 2.12702279856802 +3.6473299494071854 1.1337605117424485 3.7937049450408273 3.132342319447274 2.5991213593239966 +4.236749758024876 1.3941468635049823 3.4865111915491025 3.1325372833058496 2.8645573381676064 +3.8877363324332475 2.9517793717889744 1.117171153932159 3.7667831960523164 2.8100639505047953 +4.2884814136487535 3.1315453375231566 1.448410453236404 3.196593790941003 2.096341114052979 +1.7321317835607606 4.2931755463807555 3.5352316174692753 2.1411222819905293 2.915902260767358 +1.8102286110647068 4.675527853761551 3.0706309237723564 4.167144866506952 3.0679443568634808 +2.2506229273724285 4.770143506105904 4.151022790700633 4.107304074387315 2.5198998537278325 +3.176752162414647 3.5849184871390127 4.189150226510509 2.8940428238937588 1.357903874709731 +3.2041533920043928 1.2841789503215888 1.7551691727610934 1.4226452364309545 1.94855690831643 +1.5221381998365153 2.588826781876606 1.625262235685219 2.0889787470370593 1.1631240406573242 +3.545625347424259 2.6180631380262733 2.8349275587080847 2.9592978403253207 0.9358630344515286 +4.439311048658601 1.2090590690484952 2.440986313086818 3.4586679246753214 3.3867689195367876 +1.5965962376858958 1.0128880235533257 1.7678031755619497 4.003281214446625 2.3104279563711803 +1.3976462430511685 4.3967385098724625 3.6156132644872057 2.899086730213577 3.0834987756160155 +4.170121611445772 2.386890607316438 4.644826595641426 1.0574273168301676 4.006163551292389 +2.192602609991723 2.7190566066858928 2.5663458298127595 3.1180624035437976 0.7625909705502558 +3.0742607827491213 1.0723360399275497 2.78920252093539 3.101474704734624 2.0261334094022434 +3.4882824271836603 3.190247950022967 1.0933707381631517 1.3600736766889985 0.3999437547890573 +4.673895799597545 3.6112206223943386 2.202578405380304 1.4581220492997118 1.2974952016684533 +2.3456566013215263 1.0354968876272386 2.7284209069117757 4.7067085499502355 2.3727917047196034 +1.0108809609415519 2.612753502121244 2.7650472152404704 2.269511536943873 1.676768095668078 +2.5894254633592704 1.8857547936917274 2.3914801704201536 2.168518354195608 0.7381492957691665 +1.388800492784752 4.6366250568255305 4.89573305740455 4.932735944709064 3.248035346552673 +4.6363525255980385 2.1109363970224213 1.345455251182225 3.2992548533601016 3.1929703268180063 +3.440229843150493 1.9237456298631224 4.971874139545747 4.099693919674807 1.7494063864876956 +3.100613628409995 1.7234931615037983 3.2732248328754463 2.467130330118613 1.5956970664091379 +4.050149334693279 2.8372035098031585 4.0224463481121475 3.4434568805819628 1.3440485027071236 +4.615996758994054 2.1966245111688467 4.180469372897834 3.737766156903221 2.4595422767252386 +2.3979087508577988 2.6940730252494083 1.4025276723688065 1.0218576628005072 0.4823099974193337 +4.556337426848598 2.5580045174036674 1.7998622855728712 2.1796108709795643 2.034095230093475 +2.431159348352975 2.36924122645619 3.1889548909115986 3.138749602898018 0.07971464585477193 +3.1703737398174288 2.1455295363489726 2.184717610045608 1.0164122936801427 1.5541051938754673 +4.672826431660282 4.84602697678758 4.9972751774916055 2.013104213846023 2.989192996294786 +2.211613900742888 1.7527203381917955 2.705216515472867 4.103870337084077 1.4720108065019344 +2.0359231986462167 4.124896098464631 1.3759416318957682 1.2252419276850306 2.0944016274403907 +4.027882034657557 3.262625920563142 4.423832557150145 3.3512360888411123 1.31760392530832 +2.8427092012138857 2.752471460627338 4.767107563726471 4.718487779103538 0.10250235745067285 +1.0832278976253353 4.55758115251693 3.5091258488375883 3.0297271630569687 3.507271537777479 +2.341121963845729 4.385467710478907 4.3011755138812084 3.0248470621318577 2.4100547397356067 +3.111939569049413 2.801812396316048 1.6024526803897854 2.2377530033670467 0.7069549940714777 +2.4106196705685567 4.831269355709905 2.840809567031391 3.8358235524612323 2.617173614679753 +3.3775115215044154 2.207873685630974 4.571457034207402 2.2737244888147226 2.578299345937827 +2.9998908115385237 1.2371423935708563 2.6264782975788967 1.9796288030040161 1.877683746981715 +1.351250610100116 3.0980233641961363 2.2193825348645912 1.2901287191761823 1.9785670846407162 +4.229825294516493 2.836242584170066 1.6116341133148762 2.9459916055634356 1.929399566625938 +3.50548960939282 4.44962359785189 3.8551445139379905 2.294262463762256 1.8242099009501167 +4.50189327818617 1.0711757007224754 4.470635761662676 1.6972783259013982 4.41150026213427 +1.1288678465569837 2.8317664887066063 4.867158744003534 3.3057160943997057 2.310404062807381 +4.651338620692832 1.5535467924683646 2.9975340250988807 2.882872202689369 3.0999131511273927 +3.579368886917148 2.9547068710404933 2.6611149513941363 1.5675521988255903 1.2593975257576062 +3.6913678734281334 2.736230953861779 4.9107323266523455 4.460533558878181 1.0559192514695814 +3.2459073378057104 3.4706805692372997 3.3401404829963695 3.3954343928553605 0.23147445223111135 +3.2805806976703438 3.003464296559336 2.7599279618448085 2.0448611226003206 0.7668859656766573 +1.819486527139432 1.7615055729899942 1.4482746389649122 2.2888219769600284 0.8425447278659782 +3.287810037760645 2.501360461046831 4.613330161910177 4.0004831477221146 0.9970378124788252 +4.444520730169493 2.688482901767102 1.012665057089877 2.085379380196484 2.0577621033001483 +4.873084730954228 4.935004106573914 4.872718541315169 3.0061823881059535 1.8675629093324235 +4.637109958657 4.181078328822268 3.823542705135124 2.973246697329575 0.9648669070393986 +2.963502449902264 1.4949260955941246 2.0339951836774746 4.183287762422112 2.603108737160198 +1.079254265941156 1.9794657519395011 1.9554191344757417 4.137219815126765 2.360219254563571 +1.909542270055769 3.9859010781029216 3.01657683188877 4.029131704237056 2.3100937793239575 +1.2175113932610468 3.145956491501045 3.382765939559453 3.5689279138092425 1.937409811470577 +4.5997093240016635 4.121988965220433 2.9854796042930327 2.8098250133810243 0.5089904483411574 +2.1869298990608894 3.3938030250959828 2.87861749709996 2.355412459130535 1.3154034567775414 +3.5441094039623278 4.236644521219867 3.3990542632595995 1.834945265473594 1.7105676968743613 +2.108106753605845 2.1549355859377446 3.052506575471501 3.745862725799811 0.6949357457604721 +4.2044939053230825 2.2674349643144573 4.197608807208432 1.7164105216435313 3.147783708140008 +4.909194202940133 1.427744770688053 4.357824184132743 4.435727879783638 3.4823209408560265 +4.890122510867869 4.731576862874351 1.3439995533197684 4.9583136440250195 3.617789804392761 +2.3216295770229967 2.614332620264992 4.1181325231942445 1.4717113029966828 2.662558984555098 +4.60124542979408 3.251377762610392 2.6635092381971086 4.57029674285445 2.3362322887130254 +4.149577409592315 4.006212736917845 4.103400826774294 2.5642583389017117 1.5458049771383386 +3.357929212770279 4.930431639219963 1.03250137335033 3.8351232759831366 3.21363554410068 +1.0363703940267848 3.8619828909274467 1.219839088526089 1.9047926518686942 2.907446881127311 +2.0760067255409664 4.832529031626773 4.041749994948983 1.624896993766793 3.6660051354672123 +1.5039421363416636 1.5236203471820726 2.054710033501253 1.089658144016723 0.9652524961788708 +2.4234574951845578 1.6567265927274102 2.1504674939079256 2.622052952120231 0.9001494993500037 +3.7654149469219416 4.04687858785146 2.595320061155379 2.5392233237695017 0.28699934688190704 +2.3698448503077603 2.8657128525540743 2.1204286959624516 2.2380110023192916 0.5096181653159002 +1.6906354339209186 1.1315386582245113 1.2090739733519733 2.6441343504370396 1.5401258034568643 +2.511014213992286 2.87213200466879 3.3878031112923614 4.0841524872952455 0.78441603260176 +2.0668555768705534 4.951338644099708 3.9522370884682028 4.8387231286093035 3.017631532261147 +2.648784895297866 4.702037721231001 2.9560982331612826 1.0369528552432796 2.810509944616179 +2.5528920847543106 2.7869806097009358 1.7141553818861248 2.3818537763941405 0.7075440506005747 +4.448747946993992 3.339882743806312 1.2660183170775285 4.330562876420005 3.2589899347859337 +1.50426818354681 1.6190670946978836 2.4633872921289868 3.7204216441437126 1.2622654840193301 +4.60572848098767 3.4566651078642168 3.3483344022763153 2.6088402817834675 1.3664546057946232 +1.4217557237092553 3.1664483071452314 2.5958335037506566 4.0430912655108235 2.266827571667406 +2.7607968046742624 2.2805740304630904 4.966473376844849 1.5556834136381834 3.4444305895143836 +3.7240961040380935 2.608218087700135 2.018501733639719 4.521985925459911 2.74091532996551 +3.179559981488534 3.171885867710966 1.4266857140623488 4.486232535503893 3.059556445731199 +1.2601712392598836 1.5215508514946112 4.579819460935546 2.230433975574354 2.363880593540592 +4.148552544910996 3.2270397149224577 2.9314927795610304 1.2574174112075456 1.910945900532336 +2.065422456413142 4.19757080057452 3.316782477041872 1.7266209088659 2.6598252526085195 +3.0342870706812324 3.331516196864794 3.487414716392838 4.525451666215826 1.0797526858728603 +1.4105171203492595 4.1158231627204875 4.742694390372133 3.3167463649128646 3.058105386379198 +3.993428972697089 2.2622356955194576 4.087603049584025 3.9088051756710875 1.7404019198624248 +4.285551382254056 4.241997030670542 1.8080679969246578 2.181750107008922 0.3762117767147758 +3.916364557576689 2.824895797502832 1.3441334016715198 2.1911553517601416 1.3815752741523333 +3.785882408151884 1.9101190149460154 1.9009686393670875 1.7324771367600906 1.8833156118245176 +4.734209719728836 2.9426302031918716 2.8953450980751847 3.7309899715655637 1.9768812606389834 +4.984753729938499 1.8074262950810915 4.557415731286756 3.999552307810882 3.2259295137293034 +2.857475910443842 1.5899497699068186 2.881490084298777 4.536301019041942 2.084471574929778 +3.5781435870588254 4.487312234574702 2.447198589489903 4.711054624325802 2.4395966420883526 +1.0223621852215468 3.2084742324572746 4.430435157608338 4.074382405387608 2.214917480501958 +4.177521079419841 2.540655954234061 4.318458448702264 2.0681953103648434 2.782626749998935 +2.511623535065045 1.2783276902297587 1.2926765285953654 2.078239979271092 1.4622341043504414 +1.554736134797381 3.9434992683382157 2.4871729157294546 2.712799070815322 2.399395021671642 +1.4849461837368625 4.547554220999277 4.533612045611443 2.1704259297364046 3.8683609718030314 +1.0786388189187806 4.490436164864816 2.9202145905152963 3.5656335868794757 3.472308570774227 +4.96106453561481 1.9137132449865488 3.1666771840490875 1.717133847749476 3.3745408239202463 +4.052676762831247 4.534042353612957 4.607292621649281 4.875789117346404 0.5511834542058207 +1.2667642474686671 1.898184472308373 2.779814470007714 2.1495018085970146 0.8921802236494955 +2.3446556294703003 3.9308838495645966 3.259735927999093 4.356349259434215 1.9283881261055194 +1.1109546202364107 2.8152119474075326 4.272557169235858 4.543847621134186 1.7257147929213725 +3.5670885298578354 3.7579002781272055 1.9581536658397014 3.2914529404014305 1.346883840137837 +3.685510606506492 4.558403237553746 3.662484819521935 3.9323932793235907 0.9136695912686922 +3.0274316298372104 3.9909193552613704 3.7088593398147776 1.4610915814962584 2.4455609770315037 +1.4241009455438616 2.1586433014940782 4.187715476114164 2.611212948035454 1.7392276141216996 +4.434538686522078 1.6736134974425512 1.396195819710056 1.107673501807878 2.775959838978487 +4.239450552329027 1.8626380823014697 3.479680672406016 1.6867385015722398 2.977226754151022 +4.272561761240723 2.1894717894286497 2.6292011117510374 1.1294326870045661 2.566820827118741 +3.9791235345200215 1.4385646254522597 3.634607441111493 3.643742207127036 2.5405753313755004 +4.270573904175992 1.6051267060732122 4.696422873305657 2.262210604735589 3.6097088711322685 +1.3163272301888713 4.059831999314273 1.147132586479803 1.0313384559750784 2.745947322669022 +2.030886746974374 2.526098212331614 1.7454767221209448 1.4673004076203897 0.5679933603224393 +3.2684995982293388 3.1685937779747264 2.8069007768276433 2.0651042105566653 0.7484940338120007 +2.1020158505088093 2.6503663503597177 1.6193171206577075 1.3149247502767203 0.6271706193954697 +3.9193252049740557 4.966256307650914 1.938381265867636 2.1564015726416232 1.0693912230414118 +4.693204587625303 2.3718384677086823 1.566970768520191 1.0576206729841755 2.376589611716607 +4.641634412974678 4.003568997590307 4.165276271508674 3.395942865205276 0.9995005574605845 +1.8763787807979555 2.0932917288171407 3.426219202718292 3.6767079463362804 0.33135454983701673 +1.4624589389883864 3.0624079715631196 3.5749086130836956 1.5707426182420865 2.564472312526747 +4.927792815227104 4.7912697549476455 4.35651987498774 3.430925705384082 0.9356084185129765 +2.6415610384476236 2.5537846315124524 1.4370264762794398 3.7935771031944463 2.358184800822013 +4.914621355054102 4.645759947346003 1.7009810863514376 4.78824626232533 3.0989502615137097 +2.8749576279265017 2.2637348144068015 4.039678432374663 3.5137747119051803 0.806329988882084 +2.670814467987848 1.5153163751629704 3.7841729706885525 3.9694755799654535 1.1702618935634697 +4.308224612565432 4.105254274109068 1.837004708172306 2.1120696782398665 0.34184454954168697 +3.5382374225394457 2.049474321526877 1.4903135223914563 3.3987197448623827 2.420419360545257 +4.55704660834536 2.863015138958901 1.186706582338381 1.892314954934486 1.8351092051290483 +1.767167595906343 2.215067343084645 4.091545248803948 1.4343586938847483 2.694671514520045 +2.615246825089749 4.273817638311954 1.4518990840824717 1.5019263175611544 1.6593251238265805 +1.237874237794196 4.03358407526154 4.836178833778053 4.067571904119145 2.8994396195870986 +2.5332759665391 3.6955655774049676 3.66164261042142 1.6090092150289972 2.3588601050946103 +1.235969216876915 3.55579178917222 4.494454727766325 4.92078899763508 2.3586728634118237 +4.972589193742168 2.543523857819849 4.40845120054909 2.7315748782346536 2.9516559092343737 +2.254806217494312 4.70921307664554 4.297937878362536 2.366468246394426 3.1232495848816852 +3.663624299041061 1.6452534056137362 2.1650603702200635 4.151325761139436 2.831796473371401 +4.0672717403514085 1.9936310187128745 1.6988610869966325 2.5988607541666395 2.260527647108901 +1.6769398528615929 2.7671405294743816 3.001327965431819 3.8685455496290486 1.3930555816721248 +4.466089159041145 1.9918498310745543 1.7807660728007235 4.056066952471265 3.36137685258379 +3.800541579560023 1.5277815358364744 4.488335806844389 3.448074251361295 2.4995164172620217 +1.0986461659518447 2.885315037652716 2.4903583321627702 3.1357475848681515 1.8996612710197769 +4.841673118316084 3.1717074105526826 2.5963405323340885 4.8838186847555285 2.8321973382713153 +1.6415996124102956 1.5957879240842723 2.348814213239864 1.769315763146496 0.5813064290440081 +3.5419243511612315 4.533679041651933 3.2408287223774805 4.0972359290385985 1.3103475377667582 +3.352339263423196 1.5576622391040447 4.926792960587511 2.4694946689948525 3.042890158300697 +1.515034323829826 2.9103970488788256 2.3455268973832233 1.1580322033874464 1.832261112048251 +1.0181192208260468 2.4542680371778727 3.8529692582562056 3.8246927738819823 1.436427158709176 +3.9103208984556708 4.315014228906318 3.5038947611908617 2.0038020755935526 1.5537228701070804 +2.3376266676591215 3.0768209700038955 3.0472736038114436 1.0944210962491834 2.0880711513047596 +4.974696117421397 4.955927982747287 2.2478615154675645 2.650453800444631 0.4030295160434297 +2.893231580195305 3.0705140399725623 1.0530083278934108 4.204156720830442 3.156131376361622 +4.360379652433714 3.7890335969927222 4.372744382751287 1.8015256948272231 2.6339327736671496 +1.1841838225195018 1.2781188253881757 4.022626480229455 4.763903133164828 0.7472046981590831 +3.7070325354385494 3.348613037325846 3.977911603278689 4.669810865319738 0.779223411763475 +2.6167366368809297 4.779499630994049 2.9830304826393657 2.431385131492253 2.2320072495732104 +1.9308209209950284 3.655014772814166 2.6187550337268957 1.5196480584719705 2.0447201719807393 +3.010059514252338 2.1771672188037003 3.7267903478430107 2.0627942974481828 1.860804243209717 +1.896786008365253 3.2573804660732444 1.5760282903821845 4.859556130902854 3.5542611549828522 +2.1369754132922067 4.802191538199068 3.0377097128116657 1.8894336951634823 2.9020535496729756 +3.3047221173874317 3.5465806084644735 3.742329004754946 3.5472986993208364 0.31069655573209304 +3.7799008318677156 3.639968275779386 1.3598777011289758 4.668918004131937 3.311997712431478 +1.805149689785508 3.6259675672802856 2.525297086186113 1.6837771859061048 2.0058747432409287 +4.330929340229814 4.248316701050511 4.898693976189602 3.9538230039165314 0.9484756203490036 +2.9447711484605 2.0036308125430113 4.95645557168303 1.5657731288046453 3.518873763057523 +4.05203487825567 1.602338648802951 4.8202691076382616 3.3308577466425087 2.866942241981531 +3.8190785721549525 4.622258616501801 1.8386048304578324 1.5503145790393646 0.8533518926562061 +2.159638029810251 2.1709832392919646 4.1378595139616365 1.9925617937325102 2.1453277190672924 +1.1004077381155435 4.129553446037007 4.309794929701882 2.4653920676961687 3.546483559414013 +2.338935185196357 3.961266943828587 3.5170736301316956 3.6492962985085087 1.62771102137309 +3.4815771137418543 3.4375078915760096 2.0082930114210087 1.098844718162093 0.9105154004484808 +3.271975675232926 1.8300167789676238 3.742100835288879 1.846582540089087 2.38164545345351 +2.8870362925410418 2.35493938810945 4.199308084259561 3.487736387464575 0.8885164013035317 +3.27464667452873 1.4361252049122033 2.2875669365855535 4.204643828228175 2.6561899410078054 +4.812928270697862 1.0396899709093992 4.736482883958491 4.245257544260622 3.805079447442828 +3.362581979331765 3.571267371917665 1.7566508028130716 3.367887288874535 1.624694619642234 +1.7701996517719083 2.3016210968447988 4.634732676717302 4.754153658771175 0.5446743276840488 +1.2839073303641761 4.197244170919726 3.6034479989684307 4.934885727501098 3.203163744097142 +2.0512431760829895 1.9597181461350424 3.4523845978700267 3.395374311041126 0.10782858577986698 +1.3840518893214306 4.238143666768361 2.236590990550282 3.237992140604863 3.0246725669766006 +4.020676480597011 1.1047676371379498 2.2883920860713576 1.5450790313932905 3.0091591318203164 +2.4004698681883894 3.2989294196323145 4.411682079404965 1.7429837008855644 2.815880075765461 +2.998245766293277 2.1069868687334172 2.636535870687528 1.3293396758304272 1.582120195917017 +4.675492441168463 2.7207327846072977 3.3901742784030646 4.786981076137947 2.402530862469305 +2.961256736480507 3.992006965668155 4.773861762279791 4.961439682172259 1.047679106884152 +2.4652937598145765 1.153112224411562 2.9829607186341804 2.0064980399209915 1.6356343554634543 +4.221967554936439 3.0585717631558365 2.94149105265241 3.8555453961134054 1.4795219197878504 +4.280106328101496 2.3881967479137436 3.7409533568625406 4.931821396579887 2.235506329140321 +1.7523843277723108 3.175964643314807 3.048701796541737 1.1587988082234606 2.3660757004065665 +4.18046518847731 3.5279088275317316 4.25334751017102 1.0616705276966325 3.257703449466717 +2.0058211985054037 4.449396750052713 2.963000827084855 4.736802136105812 3.0195086620184086 +3.945979067522375 1.3011414139894248 3.768380378724697 2.9554268756835387 2.7669585489581467 +3.43663783169929 3.5461175276937893 3.521685083682206 1.5041313048149894 2.020521975742019 +3.967862363612738 1.2306646746162997 1.9018810849878278 3.359917721990835 3.101309727113769 +3.8963979224829597 3.945946793119592 4.584164496567544 1.616798795138811 2.9677793544327047 +3.1016916714023783 4.768373128957272 3.4321370646740545 2.7524280966543 1.7999531555470503 +1.8881491334461162 3.391145221292026 1.5497689559995753 4.847829118846321 3.6243893386109627 +2.6189741597939955 4.8579898135840605 1.9144734484903947 4.107916116988481 3.1343869955551047 +4.7174661172688985 3.926175088360103 1.6807066300645293 4.425901741867375 2.8569630194137585 +3.2329603136575797 4.478462832532351 1.6428931639523614 1.9402990658539796 1.2805181744158554 +2.148764437017919 3.66731042237426 2.651388118363111 3.910505316479479 1.97265253611331 +3.868478721244102 4.957928156516599 4.340612084991881 1.4141376293953623 3.1226835912840265 +2.4888872152917916 2.4557524610167034 4.516649627099971 2.171792513845627 2.3450912121963117 +4.7924356610138386 4.879980605338959 1.758808892168953 1.9027910878239616 0.1685081301971083 +1.2242617776549958 1.2364737038192515 3.772563358154621 3.427843831721106 0.3449357665496405 +3.8710947198194003 4.262835135198417 4.777552746937523 2.7941445519774613 2.021724170324937 +4.587946926069806 2.9452982014396394 2.140542632129018 3.955869771629832 2.4482049456565766 +1.8095693288012735 3.121158613957706 1.5869182962832626 1.2632929240459214 1.3509255473537092 +3.6458848900818164 1.9171542816757103 2.502306321415122 3.716969268749385 2.112798048102777 +4.24707128055786 4.369744268132404 2.2497357994954044 4.654962376928012 2.4083528708784847 +2.0370307383933897 3.2724032882758887 2.0227256370683633 1.54429765320201 1.3247787259575128 +1.1842055910583746 2.339003736438583 1.2886715250517438 1.7747591188704774 1.252932522300405 +3.4921358881389626 2.463149591024977 3.8922993937057884 1.9130970002322134 2.230707267657475 +4.1675958765019105 4.361289849855657 2.4346816395053272 2.625122406533734 0.27163402043913754 +1.6592748316202734 1.5643346657774004 3.1774774426705585 3.2668103513160447 0.13036105115154223 +4.312306514634912 2.7986318466732594 1.6795908043146097 1.1395232257677885 1.6071353364997754 +4.728261220810947 3.7036696830586453 1.234919935847453 1.054945791417718 1.0402780935388583 +3.5901839627463903 2.027340009390026 1.4970893255612685 1.5888700274276468 1.5655366235823533 +4.7748830416325845 3.568674804027941 2.1884395013164473 1.5385080333758787 1.37016394109781 +2.585369279860506 1.1066126050275682 1.0589895835780974 3.7937647253017124 3.1089735250002346 +1.3189224578307877 2.0912157292161897 1.135179351219438 4.263573874670254 3.222311156822727 +1.5839528370835216 2.6185632917207733 4.159391589898763 3.0837335414531934 1.4924674301405816 +4.824885530576468 3.5790802935624453 2.3856863258524577 1.7231290354488373 1.4110325480436492 +4.720315387054031 2.8228355271910375 1.7194323562798663 3.5536921294821116 2.6391170368465353 +4.642368216601607 3.8047821993326627 1.2520003906533699 3.114656196712724 2.0423116775289403 +4.672375154466623 3.6853035446461537 1.595785060648935 4.341140571557544 2.91741105163291 +4.574615908478865 4.613513279119964 2.171315312040677 4.102400978399514 1.9314773765849143 +3.7967093813322057 1.002353742549567 2.292969223986587 3.414870850789391 3.0111603571080545 +4.060817119503522 3.2569490709118285 2.4579791971078135 2.790197276164783 0.8698118713830709 +2.535194215511983 4.3840998459322 3.5613807590894124 2.941934467861389 1.9499142898896178 +4.763528155365031 3.4634864345304077 1.97878758343492 3.2467797310146067 1.8160155732356467 +3.3266162983329215 4.624686488943725 1.715887680062047 2.7727267129192352 1.6738861852356883 +2.879975873261048 2.218692993564856 3.259624111378771 2.209215201049684 1.2412308108800831 +2.574270268917945 2.05027271086159 2.4620299184502255 3.3297033170084473 1.0136224974883885 +2.643431165412673 3.903565893822219 4.13940406547736 3.6602907263793343 1.3481428431162108 +4.625573587488 2.3589358226191073 3.114408243752273 2.9280177380851837 2.2742884992306234 +3.935008978429774 1.7857874277289025 2.705185284242451 1.7749923775843262 2.341882174148424 +4.403050887739156 2.9633242176077506 2.356396047662384 1.7698866152505612 1.5546080531747235 +4.0821603219611555 2.395848244602141 4.3592565600534625 3.574513563296581 1.8599650516087245 +3.6571150200978124 4.254634600735526 2.2741514972809664 4.903799960133297 2.6966795670652255 +1.229448769032687 3.7166107897034704 2.618469563992877 1.6991921563548211 2.651611937908886 +4.867570476509933 1.241240307607454 3.3323650818212163 1.695907156438762 3.9784752148831246 +3.289192184479461 2.2308884672247418 1.0309645929350952 1.1703873990913576 1.0674481143510643 +1.655974385625314 2.2610438635933146 2.740643083884198 2.414092348750223 0.6875641466692459 +3.5507919775874544 3.708205876026563 4.167572962839224 3.968809195483978 0.2535471763499809 +4.915420741717773 3.835364514399049 2.237677122448268 4.122462002462297 2.172311096067838 +2.0830031113702363 2.009728418496079 4.545680858355418 2.4992232190951644 2.0477690421291292 +1.4971498642311096 3.1892100291269934 3.169932848092326 4.774981726446841 2.3322198660363416 +3.3067893717136387 3.9507865081078415 4.334611859368648 2.176658388917585 2.251998111081739 +1.094929589097433 4.2319298025658245 3.8177207593972895 2.166043156391609 3.545251647425232 +1.104404710882199 2.043291246381928 3.2417102221506844 1.4572463716628485 2.016387651281508 +2.663320599944481 2.195725605332024 4.407322466880487 3.0321365552810375 1.4525086472886253 +2.599747270387283 2.157007659671811 3.4913353907265914 1.1435714602614682 2.3891450010599047 +2.7870377480867012 4.247895215549935 2.1043884935595636 2.7377321029718837 1.592240141381481 +4.311052873854301 3.4715418297662732 3.979328592869117 3.649320216484544 0.9020445230861681 +1.5593276059392545 2.142678017387526 4.669674639428515 2.266376011102315 2.473083500299063 +2.8509715390046004 1.8052497109739067 3.247965066127473 4.678744244802749 1.7721916374225877 +3.1230198216913885 4.9131282018474405 3.0098654981180766 4.9928009684928085 2.67142678963418 +4.321965074882238 2.206308637979999 1.6593663089440285 1.0709106294645228 2.195969545717236 +3.0114915779655784 1.9859318317195318 1.2899046524828668 2.2844738994690448 1.4286149866814741 +1.008602667993725 4.364149162202278 4.805269698838638 3.6284135834293467 3.5559362467810858 +4.263524132222113 2.951394405123396 3.685213623927177 3.7146732687003277 1.3124603961287036 +3.0310292533268757 4.1131257576956735 1.7391048908646751 2.636832457252784 1.4060041352073929 +4.549091374165762 3.336938558793255 4.3505835156707615 3.316675525467312 1.5931980981729896 +2.0157811800984664 4.737008687617652 1.2903354316529763 1.6245540352777246 2.741674893689614 +1.672779058366035 2.9984903774657976 4.5102442064789905 3.058955037908482 1.965642580022958 +1.8330279671750773 2.3619521903517247 2.8146425075261647 1.0093565643042295 1.8811746784011665 +3.0291169170502408 3.4660518921921946 3.1079013804322364 1.8783522120423304 1.3048767489654374 +2.7582529301758876 4.787722621363287 2.7335888788545177 2.2604889211754955 2.0838835853771127 +2.607443128342076 3.0329832102678362 2.010205770121973 2.4974560497007223 0.6469135925878758 +2.629867339922087 3.3663293312128952 4.9920411236877555 2.983769453684447 2.139049173150047 +4.5991432469794935 4.410847627891728 3.3062086542330134 3.6452004347551905 0.38777656895336093 +4.522066583991746 2.3178333814748227 3.8317280124541235 4.835569738581401 2.422053307050075 +1.789919934951922 2.5877089602558048 1.9505635517449798 2.157960265377196 0.8243062087117644 +4.853581963223469 4.714817004791502 4.195353966634515 1.0986996116936605 3.0997619114478434 +1.6498496584096674 4.871207424287993 1.1732534023215906 4.281015882422273 4.47608461587872 +4.735025707745563 3.1102223124144235 3.4643666344336737 4.803244839119909 2.1053695448693643 +2.3789723164702323 1.1816607075671173 2.7928867960431676 3.678906076410348 1.4894916092400594 +2.560330261760517 3.934108220299213 1.6934410108099875 3.6959619045636143 2.4284472012556853 +3.566018853011119 4.5547750789374435 3.583398201613992 3.4711224544470975 0.9951104047842897 +3.6992849769278844 2.809149545763124 4.374444797386098 2.719441262566255 1.8791960478037006 +4.73168687290692 3.1408105605957126 4.5722394328800515 1.3434401152385727 3.599448912635792 +4.522577647056249 2.288722328141952 1.847013960758214 3.5504142284411966 2.809213779295579 +2.9266667756303946 4.601033904680175 1.3807712118362323 2.524106357798679 2.0274911932818287 +2.034883537223173 3.9812553854920316 2.792483899286632 1.1184227560505309 2.567263929366534 +1.3203903945305706 2.0383358375278955 2.088149853200055 2.570661813015139 0.8650222254284674 +1.5238267823308385 1.8017441433851173 4.317956533923649 3.6128066216329406 0.757940933304811 +4.127703333786408 1.0681833575351414 2.8751569174523883 4.184558108608053 3.3279414003976124 +4.471877168003031 2.880317552213983 2.8482796731331 3.8781534936300184 1.89570622638517 +4.998940829184255 3.6011681935385584 2.172058594024041 4.853373863067711 3.0237757709470863 +3.985932466960411 1.4468066077013146 2.743526888288426 2.678475256412707 2.5399590240726204 +1.9268776364783138 1.5798971981635441 3.383497331145181 1.369617531961452 2.0435526100723234 +4.63496246592187 3.585882851444455 4.967256454399385 1.4344203160592435 3.685308564811658 +3.3265594989638587 4.74065209334508 2.5372796984377017 1.1650412983670302 1.9704558082109656 +4.867005683576322 3.3485144864556826 3.298336961054742 4.030784991445048 1.6859109208245584 +1.248730672878303 4.973266277761218 2.140346504307891 3.2930087897360147 3.8988197978733163 +2.3713171765165413 2.2946353689495305 3.2381140742806886 1.149971428862579 2.0895501447023195 +1.4393446166022228 1.6418240153526829 2.3434348372447786 1.5684827777714756 0.8009672910926273 +1.3835757973682359 1.7190831105764501 1.4356403202994357 4.30483769804394 2.888746916860689 +3.7258777187118635 4.433494604634967 3.6143008893054582 2.738333702846831 1.1260728968391671 +3.1156542058158876 3.705322815022394 2.382712261033913 3.7125503180608668 1.4547090178454107 +1.0470618087227126 1.741392615487992 3.098287193415145 4.570001446961751 1.627279359334336 +3.306669558821518 3.8496040724274545 1.4733638114683587 4.763721579231369 3.3348511399975407 +4.2908159148095635 1.3064591000161498 2.762037476055554 2.8146150796734504 2.9848199279698755 +4.309403772687306 4.219417534018959 2.8763269893267647 4.646866834425101 1.7728251087545315 +1.993681540375206 3.7403754527327506 4.975932851753848 3.784367752637268 2.1144188347864317 +4.728879911187344 3.9263269527707334 3.6731012839913024 4.758665790623424 1.350015388476256 +2.3846394087872063 1.3844948217703972 2.6990837001504717 1.4502898557121702 1.5999297674729402 +3.7014261428109023 4.559661912017968 3.610934729959237 4.309983210950151 1.1069044287209928 +1.3088096287104105 2.7808579078827966 2.4640206322564713 3.0683624638000326 1.591274704621364 +1.938979844113001 4.872298618703903 1.77222302950773 2.97396539224791 3.1699438070369355 +2.962132006568757 4.093853903660506 1.6888890998974606 3.6685190301981443 2.280291453586413 +3.761075049591037 1.3492911551453552 4.552081404975994 3.264207493758899 2.734103283473614 +1.229057290648416 1.6524687602171162 4.239042378991673 1.905978606158257 2.3711735155129454 +1.9555145979647657 3.807342766841597 1.3707845159117293 1.072066561620086 1.8757665055283141 +3.1279848478288987 1.0030826226235607 2.577018312049707 1.5087804375724856 2.378306461150499 +1.5035871194023471 3.0575339611892356 4.15289229728784 1.2083104059219036 3.3294614132107974 +3.001059481935749 1.6676099007365717 4.254847875104936 1.5277995281144006 3.0356021597739176 +3.192320406243174 3.846409373744182 1.3041523927571483 1.8413647082312758 0.8464215553160306 +4.432965801520901 3.8813832602595966 3.525658101872587 2.9602313567368945 0.7899055031704879 +3.1396707942379476 2.296205653363807 3.4780965191557334 3.3842261408335212 0.8486725468613845 +2.0949430287795137 2.968561387786362 2.120952787373454 1.8892568678352886 0.9038207987894804 +1.6754814632703097 3.5234659443970924 4.69531940370973 1.3195465971802807 3.8484917414214546 +3.5574767418225757 3.4969937385561796 2.6794085655611104 1.0289105292050014 1.6516058735968138 +2.633259706792854 3.337264303914108 1.1260940072801504 1.6559792702049214 0.8811361215117179 +3.7345065051366633 2.2259879699913365 3.434929885572516 3.317167172330163 1.513108134770018 +1.464766734720361 2.6439954541840334 4.85786029883541 3.2282805138356268 2.0114946304894463 +1.9404472935722001 1.229530856423437 3.4326164264253234 4.929530926224274 1.6571527389823284 +1.7764068095259127 1.8306579107397818 2.5854049691709307 2.2572473960732817 0.33261174778449465 +4.627794252434953 3.199512793125435 1.5894058576652697 3.3000923382635037 2.2285502376901665 +2.7343293623842886 3.628875480184759 2.8226505023063324 4.9538301292647615 2.3113068509470054 +4.220654255730805 2.8747457336939495 4.9105985589921906 1.2209913280843332 3.927425526736182 +4.176783212518394 4.519623366138474 4.145320988534766 3.5676757397290544 0.6717242026323396 +1.2256461036111141 2.2756260282600085 1.827158688381675 3.6144106615176073 2.072854905111301 +3.20231189412805 1.2898487750099115 3.32897769332493 1.5965144652095828 2.5804929797926075 +1.7998698137690177 2.9948648507131286 2.9815377221320754 4.452925841509002 1.8955200173473834 +3.3833139229188864 4.378768878948817 4.507578772035577 2.369468254296905 2.3584840799863973 +2.615597158332657 1.8628287080062451 2.6247422152143356 1.021939880861261 1.7707726174793004 +3.324812525339657 3.0492908546627864 1.6602362459021691 1.8834553038932516 0.35459686809530666 +1.1206989878979505 3.0649848962978625 4.029996164904988 2.0469474240334593 2.7771802250258495 +4.063296705359729 2.9621538925501087 1.3931555886287752 3.8030611431505568 2.6495585058490816 +3.141509984441166 1.0301678083021866 2.9313904962970856 3.1929310324392604 2.1274795502633665 +1.884405190834062 2.7195742268731578 3.9886468045357577 3.1135673368617995 1.2096575521621855 +4.36946264377219 2.2333105550198997 2.16118396140664 1.67601422751209 2.1905559607022327 +1.3677726656596798 4.156618803962473 2.411280996494405 4.872530372831053 3.719598268045078 +4.56844620050234 3.7621918901938405 3.121652038595609 2.258763466918944 1.1809414464829444 +1.7402213493462244 1.4561384814311862 2.0485569935275523 3.8342228198150634 1.8081220973744812 +3.6190880045011187 4.751248567819951 4.606190673686663 4.699561104434617 1.1360042158691468 +4.982489471032885 1.392945169576103 2.9645881836726864 3.2893175781880504 3.6042027512035406 +1.6745264916204907 4.920620900750329 4.787400782253579 2.776352479303586 3.8185657241668682 +3.8493270958731456 4.7931336066890005 3.5497987591633944 3.166880808665419 1.018526821773471 +1.7247184084951863 1.1999609708131267 1.6185950715883268 1.936957757928234 0.6137794135161286 +1.4394360575842517 3.4289598603518203 1.3678771398120197 4.5679084947089965 3.7680771799556476 +2.617006061808861 1.899254353165814 3.270251632486804 3.260779490061652 0.7178142076764266 +1.3456439596921417 3.5150443704715992 4.468705933433778 1.8200099775284575 3.423724347712485 +1.1150694211564818 2.0457335751702748 2.689404957540033 4.833850358311782 2.3376872854291944 +4.949092186607059 2.5147704488617273 3.6782105845119664 2.4478654593503206 2.7275761125711004 +2.6184201228908255 1.1488633794278806 3.3515873595178527 2.845763771878529 1.5541732606340042 +2.881452855239662 4.787532545387579 1.337204293475882 2.9893101235530355 2.5224181768630873 +3.6731003061531133 1.129053095184367 1.138971383604455 4.3991839097651155 4.135355115026124 +3.2128363612232476 3.784693671624059 1.2585441619433624 4.200452704719888 2.996972915713512 +2.449555288781279 4.411849858626489 3.1403723447044807 4.809033631558248 2.575855288848438 +4.6850954142874315 4.051738293451982 1.9689693742156997 3.0939634193487 1.2910278246798867 +3.2575860270612376 1.7640384288543833 2.243726368063565 3.5395469881187056 1.977330399166905 +1.709499886667444 2.205852849598097 4.141575780603224 1.4867516741107294 2.700825299834055 +2.5385222222027193 2.0535794026273453 3.8108976924699265 4.540623899175269 0.8761677208219226 +3.6384545042534104 2.3381509472891566 4.622482778797259 3.694028438042086 1.5977536741065608 +1.3989123458948645 4.098205662304518 1.857230911111024 4.681680581912435 3.9068785943389672 +1.5096158479775177 1.3311883552069266 2.3156142057931457 2.409083798084456 0.2014272445810227 +2.5476915095084745 3.878737228783226 4.7478360172102585 2.6018194160813266 2.5252861143087557 +1.7716042045397695 1.5909927908740427 1.43226529837824 1.2436652063613534 0.26113306465308145 +2.993884418799997 3.4450789976415335 3.258993712261809 2.2773866952821162 1.080337393483981 +1.091442266956499 1.9630610817460479 4.890081650513714 2.9518456759771516 2.1252007084703406 +3.874375137090599 1.688732179378328 2.596051374178214 1.5288561876231959 2.43227068904829 +2.274705625981852 1.9407059296494475 1.6622193058566976 2.1584782478151627 0.5981878756911357 +1.4669727611162218 4.639318606382127 3.3325004315128672 4.90863305689755 3.542311704915007 +2.945702239790569 1.9705567290284751 4.675697749758479 3.4686306436145964 1.5517473266914403 +1.4295133089938599 2.810365067524073 4.516000901066886 4.811263532626878 1.412066429255973 +2.1601364289131055 2.97862375574356 3.9522699118522358 2.617364278151804 1.5658526607146708 +3.1167708715808256 2.3665327766548563 4.209584177783256 3.249146845078385 1.2187276435411625 +4.09227368457405 4.976048595983032 1.9168996737155295 2.3392201864902984 0.9794961508583367 +2.5337035627411493 2.243505388169001 1.546577256170988 3.589801273840777 2.06372948006944 +3.6782126739930106 1.5345961707684337 3.5316182201737223 2.3584734449535705 2.443636711240667 +1.7724699131915007 4.984113624116823 4.251477373011384 2.9762551848939656 3.4555530606537 +3.259922593724483 2.99480396709855 3.772091560943875 4.689060418712639 0.9545259411361082 +3.5141520579607226 1.4953392353213713 1.6693445181853748 2.8266344384457813 2.3269991775652614 +3.7876582129035983 3.4688974884659918 2.9006572169689857 1.6059327831778205 1.3333865751910963 +4.210423438178173 4.2278125248067 1.697004477062444 2.3757635651852493 0.6789817965476517 +2.5304602394721916 1.6474780761233285 2.290409656372621 1.8560484068212992 0.9840361761155044 +4.700083126827823 2.76707057466714 4.751777060294944 1.5531259875571894 3.737366213249264 +3.980981013589439 2.3284679319458905 2.813001489047805 4.193722847620034 2.153413790942326 +1.633617548360835 4.583442482740915 1.7634063828000595 3.641389774208003 3.4968970190576845 +2.512263001842473 3.9060367206803375 1.0665802693647723 3.8833325653130983 3.1427215396934702 +1.5258934152089187 3.945884513205888 1.7513242114668826 4.3337826013470515 3.5391310020748104 +3.3928340690338157 1.1046674909061287 4.056823173148663 2.4656741235542006 2.787016610514894 +3.6516863563238178 1.8043146888733705 4.579638632985679 2.596531254557496 2.7102577279799327 +1.9144588758785548 2.7137454561330494 3.9822176659699187 4.307724294522037 0.8630258412158304 +4.119693682511719 2.36347076955176 2.606197971047298 4.106650924230405 2.309908652895493 +4.4407603539112 2.1634670843690196 3.251370795435627 1.258831604214647 3.025934081247255 +3.193609246225284 1.792147508425031 1.8615070337320323 2.5136096672540447 1.5457466956666768 +2.1514078936585195 4.459200606460365 2.6986212293870206 3.781489542938236 2.5492177211361433 +2.612586981610904 3.627285404876722 3.7952032273640293 4.598335373929529 1.2940765568640227 +1.6758182006730769 1.3133479867175653 2.768470786171256 4.828348299330031 2.0915257648956023 +3.6693567267247067 2.9546196587106146 4.418518203519555 3.576474362771884 1.104484905344781 +1.1724635375595418 3.6602387255953968 3.5171597672145962 1.8650583307022925 2.9863798389911573 +2.653797400369955 4.340625127392317 3.292001236940479 3.4326385261307197 1.6926803087890545 +3.0583114337153727 3.571394830851848 1.787845431497308 4.280844965737677 2.545250724415927 +3.479994018531001 4.778068664584888 1.8654142667151157 1.0194794775905498 1.5493880902405137 +1.7514418031673724 2.7113723355605885 1.964005698616647 4.364902277345112 2.5856857908049795 +1.9145410704946895 1.2738824412917888 4.479479011420975 2.672475299395588 1.9172130540046057 +2.243937657635552 4.615406410729921 3.6299636680840917 4.482527530104671 2.5200653137818487 +4.969809580009873 4.119308543559196 1.8954087281283423 2.0325287545960373 0.8614835544931642 +3.2542650276304825 4.019028921916711 4.263571663581827 3.217021221975676 1.2961989202394306 +4.9928187411833065 4.883938662388784 3.3760413879450026 1.9625790265316052 1.417649716499333 +3.2593357468838273 1.5331181553411968 3.0215095802703233 4.397116459656656 2.207288259373081 +3.294838775515279 2.49635712597655 1.1433093663642704 2.223882398359744 1.3435814162625133 +2.6639789799302065 3.1375310645455725 2.3381116085733553 1.6145784974270874 0.8647263959013605 +3.3611939301129357 3.831592059309193 3.6729781419110066 4.893218732716026 1.3077696660343217 +4.6824079939986945 1.413185521897935 3.6021823644381175 1.107609614401663 4.112263218388755 +4.606943565232017 2.688563720871182 3.853361473508725 4.834192214153131 2.1545788843862166 +1.227241473153668 1.4861561058819515 3.9668428136857594 2.7417784485500563 1.2521259863792322 +3.6118817231181235 2.4554935475243673 3.5810008627791876 2.8217962289029495 1.3833384577724315 +3.760976241347752 3.191753078986338 2.2240169369480403 3.3947354228157796 1.3017667923714986 +2.688383267671745 4.941990210108983 2.081680082901861 1.0883073751054444 2.4628304017118396 +4.943336785874864 3.7325211097823265 1.8147218788372492 4.279987784315734 2.7465634138293775 +1.3079499631854175 4.594521011514773 4.100933627392793 3.7877173503419965 3.301462356581744 +3.7105641416293844 3.740217121420229 3.1116361926077105 4.860812018986568 1.7494271550420828 +1.9973635064064208 3.100077484460819 4.213127344056651 1.909622725985244 2.5538425250733163 +3.6315108238359133 1.1807978455100758 2.0363536537590248 3.5271533030357944 2.8685323244506824 +3.0967154180343353 2.0888703426102926 4.307673139901532 1.696106865015111 2.799291000267859 +1.4996085099863148 1.35451374746652 4.6385003637314295 4.495285298116009 0.20387016733672625 +1.7285758521639991 2.6747461905918155 4.411951824448046 2.1895918924561655 2.415392716856529 +1.4115919205740801 3.484263224116147 4.701462053612117 3.3862738951660756 2.4547273218513417 +1.8630200221604212 4.693103491896211 2.6840503611191413 4.513969537425777 3.370159734713849 +1.819650498623628 4.131091419573915 1.8977946777704897 4.745649380820909 3.667837992704954 +1.402484621815851 3.2083016231811423 2.550270185414179 1.8538437412339763 1.9354546841952702 +3.0194359402101343 3.1856769387839647 1.7469790893973802 2.4156774261012797 0.6890526359556184 +1.1570192272096267 2.7658547500824175 3.8466662421464 4.911319359008239 1.9292065723765806 +1.5707309763318058 3.815873169215143 2.659956162673819 1.4613666870415885 2.5450501365123133 +3.3719899778492457 4.248041864032044 1.6269221377895788 3.8010230016297166 2.3439670376169697 +1.2661369288938666 4.8117420924944305 4.524756408767958 3.766257652790472 3.625829055398279 +2.5180020511512335 4.066871184297935 2.19278640980611 4.833297229017779 3.061256764465943 +1.4845726529760834 2.8428867451758806 1.1493089091470212 4.66801097056039 3.7717742999897608 +3.781794929085395 3.9875130119523496 4.707619950337445 4.705949501974142 0.20572486484669203 +3.3978232110718225 3.0878065818025915 2.182984121373743 3.91157423205117 1.7561702881996542 +3.0200329268294364 3.1248212274894875 1.5914452054234585 2.5201694406874453 0.9346171906839177 +2.256166523068111 2.2029249291713797 1.4025210983907317 2.055068426862687 0.6547157270270435 +1.4996900413615744 3.7822387124455696 1.470036100786011 2.001883221199501 2.343691488946323 +4.801628913829248 1.0368831672356889 1.80165544818726 2.3622867685639397 3.8062603712675243 +1.024088451674729 4.6199175138300115 2.7047463357611123 1.5080089591574235 3.7897449772776026 +4.5357278012543105 4.748043621057373 2.2028925743080245 3.3085481514706436 1.1258562353379984 +3.353188150595795 3.3222604998250453 3.978641521509568 4.586291226720654 0.6084362611032622 +3.163479087055712 2.6372704969171434 3.124328717968051 1.2841389065383844 1.9139472360609036 +1.5997745562229264 3.2821169276468227 4.790808541535809 1.8981000751917319 3.346346982299786 +4.473807924955054 3.191370853425628 2.720116900140982 3.768305800751996 1.656304565530475 +2.3710419389308908 4.8427664761318345 2.7122591602235295 3.002587781248126 2.4887171185145296 +2.4618824104981107 4.340222602226377 1.4653626941695057 3.3446053612183984 2.657012396944887 +2.838645336543088 4.699173028413794 4.025522452257701 1.8871763731537974 2.834446550252231 +3.583609142427735 4.6559762660450446 1.612621943455978 3.6346729875789983 2.2888122843200267 +4.958626341522889 2.913576162435122 4.846320809575804 1.713753741694099 3.7410167962418837 +4.0315997290643 2.7545899653899744 3.5814521002099315 1.5680526837115036 2.3842254815507213 +2.3400497820205883 1.1748070705704956 2.481386759314383 4.432453954473331 2.272543459785306 +3.428515663944756 3.339360403701942 4.755803919675344 3.008831448105545 1.7492459737988986 +4.385759627711005 2.1254423629862984 4.014248519631834 1.001190867962948 3.766636503499243 +2.24963081464289 1.27773413169567 1.6460573624187118 4.0630415992111075 2.6050712011817887 +1.1119676504128693 3.5018016148942723 4.090533326472718 3.9380920790482996 2.3946909428369274 +4.0794045431811465 4.900150926188356 3.8447991306682927 3.675383113199341 0.8380491705111685 +1.2151459851210338 4.8848234807346325 1.239486298242416 1.9105429312451903 3.7305294431903246 +3.4791001690442496 4.554776840822459 1.8409969805451785 1.9535700882770084 1.0815512039622757 +3.2709816697142484 2.7257063217785786 3.322681159191172 2.1557349108382042 1.288056191170025 +4.862453983812061 3.1516067109605905 4.978902855198229 1.5402189034017755 3.8407741031419422 +2.103428497810118 2.1822015039365383 1.3439854932798694 2.5502963592666252 1.2088800982280707 +2.460598733261006 4.408109288158574 3.9534864341925133 2.4560042901068377 2.456674608753236 +4.0520842254554434 3.024366258237292 3.520045168044933 1.996160439632113 1.8380502946418042 +1.0421968400961354 3.2923199619969306 2.98805998146481 3.475715416860743 2.302360069012616 +3.3978937723900384 3.838435379084442 1.3246314609636989 3.292167263091473 2.016252474241128 +1.5253592143211936 1.378128147446851 1.1451711466708052 2.7314066551368295 1.5930536950685068 +1.3850736379477335 1.572563719270934 2.925603314508254 3.553085466779567 0.654894176194612 +4.950191665456801 1.6311387104068955 4.594177295524414 3.6134760146399327 3.4609084819963054 +1.6700394867499928 1.6623967519907548 1.9809366988452446 3.629269886887183 1.6483509062681712 +4.6439906799120845 1.748200040591807 2.181809219370889 1.1414856461004326 3.0769914793312565 +3.46566888171352 1.8867095966697978 2.4060827805508356 2.2644415275515035 1.5852995516232897 +4.889767048021119 1.9185997318276327 2.9810482649543983 2.914480738721719 2.971912928799419 +1.6738581260620409 3.907395373953675 1.0014234394912576 3.9344078869106793 3.6866090661370032 +2.6850711608215305 1.1654224982043462 4.303892343954559 2.338486924533952 2.4843813154349093 +3.817367102259565 3.1851756564562663 3.807054277499613 3.1210079063251013 0.932912454386038 +3.1865228734325095 2.029340073196093 1.0931769425384918 2.85249802128797 2.1057736562354514 +2.1549490501643094 1.8111102402311867 3.5542059479084207 1.2830266689702015 2.2970590859389217 +4.268585646150106 3.4966387544476536 4.004942861450976 4.9966302121844155 1.2567202573420169 +4.3731223424489105 1.0176997085530464 4.137258338842018 3.42287925362785 3.430626550566542 +2.3546835570001106 2.5824962844474433 4.59563600945623 3.517106175017955 1.1023271939675834 +3.4854725308831283 2.813228729321254 4.4802140465137 1.0129706960241842 3.531810892481663 +1.5281728060714896 3.65738448923789 2.8805722683299617 3.6271951144142545 2.2563218001932492 +3.6870690730169993 2.181556314085844 3.1028858176779135 1.73355998872043 2.035097514409223 +1.218260347580046 2.7474412516995548 3.581692367709721 3.9386137812858655 1.5702825010146906 +1.487570153701646 3.073953897439504 3.6796926910093033 2.1533238975355045 2.2014574890481993 +1.6169285134281988 3.1298066520718577 1.169217799643242 3.048330104464679 2.4124392876334184 +1.8165733543569829 2.1743541479043555 4.856835375363284 4.047794844670445 0.8846206398988989 +1.8804704716453182 3.7913437320427126 2.6240575918193834 1.0309493841727377 2.487856583200261 +3.2611806696852725 4.577587888065608 4.446430219586786 4.743719117864081 1.3495586884766366 +3.1038864087606206 1.389063109487433 3.8880833739713236 2.3389342259221446 2.3109482968322066 +4.539111360694255 4.0907030786682075 2.2453503512048774 1.3609666788073813 0.9915666731959243 +2.5444449698949305 1.0471702373268665 2.074132510134599 3.548079546617343 2.1010358138649208 +2.643985029519716 2.8597896747931952 3.5055316873854885 3.3396220956159306 0.2722088124266987 +1.1585076310452451 3.218842142887872 1.1206793538131654 3.8940526103332 3.4549352411688323 +3.8538434719972607 4.706875470197791 2.2817623305661754 2.3976287832862737 0.8608650444871881 +3.3622745835742442 2.498780430675094 3.0396165735048624 1.4496945955030611 1.8092744535377105 +1.3092992707703126 1.618880635501589 3.639378619501505 4.378996469424282 0.8017949771065359 +2.31471362878645 1.846329034994965 2.429896752117198 2.913290464928492 0.6730925711124005 +3.822204320841936 1.767164503815605 3.743356649779746 1.5015108426472112 3.041226935386661 +4.783485950823776 2.963967386872902 4.598819468590483 2.985377741972493 2.431839223664651 +1.9287014771206024 3.9236615841781113 2.711654283533816 4.244799932980423 2.5160288971249845 +1.3598618554489916 1.2808323514854263 2.89540246889835 1.2204319737392368 1.6768338683812098 +2.6542269771309854 3.637089093673942 2.382058405074422 4.883908774664405 2.687986832548262 +4.021740016561528 1.852698036521231 1.269665758350544 1.371010214406987 2.1714082550157414 +3.8845503819253135 1.7736574216734828 3.7689313583586124 2.523576958237239 2.450872634704301 +3.629633610557962 1.1454986206819782 3.628312424554434 2.6802977538982753 2.658882935314276 +3.831587760872634 2.9611152102633698 1.425748245522457 4.361674811979347 3.0622519924055136 +2.5918617798690393 1.2467439042628894 4.454021098943098 4.630140908825753 1.3565987935673187 +4.733454107761735 4.272347818505141 4.1771086832451765 4.746579594728676 0.7327456100297245 +4.44667238391936 4.66951604788933 2.4493746444308724 2.119740391870984 0.39789199417967336 +4.339532386673003 3.7410810750681645 3.3760185039469763 2.158178095941842 1.356937445769577 +3.2751700068261167 2.588425560785151 2.881572444965008 3.1218154614290734 0.727553875068964 +1.5326747327303805 4.52372893157203 4.266635781781979 1.2377575266785095 4.256819082912369 +3.1046435712003806 3.5994746719100483 1.9924648351205252 4.561775077373253 2.616526884856013 +3.3019530314597287 2.3171596182477483 3.3688366103903427 2.723338777202373 1.1774911971458921 +3.81679615511541 1.0564474197041003 4.68396251459532 3.2327547868103483 3.1185780429980645 +4.378232957849525 3.38983299979391 3.155553409922091 3.14900184863018 0.9884216711706105 +1.9897478350299105 3.3032744707786197 2.8411005455494927 1.9864611860417494 1.5670866784071416 +2.464537523899676 4.943625205853087 3.6340261961557756 1.5502519713958862 3.2385167522473646 +4.566208563151681 1.274342561892123 1.5976341136625303 2.9776481318777983 3.569428590225506 +3.7087287279714496 1.4883166129334158 4.257832315013722 3.840664980947712 2.259260619144993 +1.0451578601866687 3.865953949874562 4.772221310506746 3.0333006708826273 3.3137192956720494 +1.7972633087674676 2.365207121419804 1.3704798623920382 4.172983416969735 2.8594730891810634 +4.537313116199678 2.90952895997719 1.6595845579050166 3.3549022461110605 2.3502730316270153 +2.211962534373888 3.3741742778838284 4.476232433976747 1.2877637103172255 3.3936807360898573 +3.368613213571719 4.305299274191441 1.1913693250883983 1.869002252383953 1.1560999785115629 +2.088097849274519 3.581320917351471 1.9276231214252864 4.262279909059909 2.7713421743057207 +2.7924897748022723 2.7106061181925423 1.4831822243581763 2.716965656218008 1.236497670823364 +4.511739984329074 2.095888041162941 4.37426508481083 3.0668188681491215 2.746953989560545 +4.8937633833419465 3.677142893025421 3.923069667058159 2.5833489582432088 1.8097008026427062 +1.363602634884142 4.533793534058945 2.5191964031013394 3.7803079959924197 3.411819571274985 +4.955073657601463 1.4413933870111175 3.202895480054848 2.5795709949557892 3.5685406621838918 +3.1150488407841403 3.858121355232186 1.6129874086664597 1.857004168322082 0.7821131252708721 +2.9944589070670413 4.523215555575678 2.1374275312170425 1.6354949935196785 1.6090472841898327 +1.8310858389400826 1.5951524323691908 3.345002243983203 1.6042411237396026 1.7566769338976078 +2.395554041295498 2.6893158268783477 2.257932336760462 3.572882206435948 1.3473637765757254 +1.2488378479379532 1.9441232953343928 4.73049379536557 1.0263972827275896 3.76878665200063 +1.395970498118916 4.603749403629193 3.205618874857552 1.4965399860050663 3.634665893167893 +1.5041766312316938 4.128379374258376 2.161881172223113 2.3289238128211167 2.6295138866883203 +2.842891133292339 1.580065087146095 4.33521823464697 2.235113008930834 2.45054516014408 +4.1405139632203305 1.2572844474989453 1.5420171454333897 4.208093765497902 3.9269551798284623 +2.4721996630997607 3.6079309164000968 3.50072785582038 4.984261409426097 1.8683568407553088 +1.3100833368512235 3.762906138449431 4.59262183128571 3.769170885503865 2.5873560165058644 +3.545577333715791 3.897152890410491 1.0234644901540229 3.7306617215200046 2.729930808936524 +2.968348499991792 4.344454898398386 4.15375433233015 2.8827468633665254 1.8732668805850612 +1.0997305466739697 3.936368324133786 3.1641009806634894 4.583109299054281 3.1717658312325687 +3.3342854775734776 2.659433460901556 4.34350393690813 1.4669843186142018 2.9546218639338613 +1.8275593300326083 4.438736674375044 1.1813252530137066 2.5961867104598393 2.969861960996472 +2.971626738894302 4.45193442484174 2.3336287911648372 1.441130671993069 1.7285438200404997 +1.7803349255853949 4.578226808545242 2.1308207015149194 4.583507195520068 3.720735145990355 +3.26248950952118 2.4400947137500837 3.4834635369316285 2.6264298310539083 1.1877878485326752 +2.5694692851081884 1.444683100881519 4.033754380548226 2.386686286307089 1.9944867177532974 +1.32092129972178 2.7926297776388074 4.775291953501779 2.4686687448367586 2.7361353165961964 +3.5250616728741737 1.3935270559499942 2.258884388030357 1.9580798521691953 2.1526549170595732 +4.256188675290783 4.756678486408044 4.999035699661496 2.2971382638977595 2.747860950706721 +4.819073737411747 4.207422914691598 3.1917145792257466 3.502666948693814 0.6861545780740957 +1.7249778366313242 3.6034364842394164 1.7095169396583274 3.519006697889767 2.6082292989532374 +3.660344075958911 1.3442018805213225 1.1192643404689977 3.3224975590430206 3.196678164112631 +4.077852511289692 4.373304204846573 1.3828045443024362 3.9316512254615814 2.5659133086060444 +2.511331891778259 2.3877132151163587 1.0286998508273166 1.253971164147473 0.2569605841848657 +1.2819704714786426 4.460824820735084 2.8039226841771447 4.87454175586355 3.793755173152066 +4.288003259020464 2.1756954071970305 4.102179672082233 1.7929699212617547 3.129583699816847 +2.0048019199718103 1.3470710226722722 4.412746357333276 3.407275317815643 1.2014915499374623 +4.264998357010247 1.5891364711320959 2.4679825893935967 3.303343613174788 2.8032240139432556 +3.7519607896211578 2.2390814742065346 3.6020988257779147 1.504832897411776 2.585986890395019 +2.202198565012462 1.373371907516575 4.1925973451092915 2.20762477249482 2.1510624682252995 +4.7079921417642145 3.6016319765205043 1.4551504560559612 4.015720535596145 2.7893640758198837 +1.8389275807201693 3.6746582054831447 2.8653669166540503 4.307708480091606 2.3345783585718767 +3.695551793504471 4.99597031720443 2.6285684187287326 1.8683589662736786 1.5063222591411152 +4.218085152745486 3.649419965189588 4.957097861571501 2.2431958711387265 2.7728404406335683 +4.307274830961392 3.467494643830915 2.5775006507459177 3.1287409173186913 1.0045380003703797 +1.2050324231966147 2.7404775360615337 1.756973040860573 3.756725253394031 2.5212299788304167 +2.682656904545553 3.176667115211063 2.263233289467978 3.183075609736633 1.0441053502396223 +1.4000652872452712 2.109244982186625 3.1264020304744533 1.262262977231456 1.9944799446328885 +4.751542199969798 3.5618451224898617 4.310627371314581 4.979318582412472 1.3647443247597204 +4.36192862116258 2.5893833312167174 2.062162133520938 1.3137735219425397 1.9240588137709056 +2.4447305828165984 3.2823360342661196 2.2333599697271107 1.947118921132911 0.8851648604628763 +1.783681987845338 4.649943359987038 2.093232498021884 1.6241792216217172 2.904387238219682 +2.7190618988578663 1.2642003562737965 4.444145524366059 2.9650870967688485 2.074665259827819 +4.422525675242875 1.8199242661789774 2.71370532096309 2.535527911540231 2.6086934054599107 +4.896465127798939 2.0004152126732038 4.32376564677887 1.0976473498929518 4.335313642218043 +3.16026263553834 2.726937968307153 1.6106125072059605 4.4760706270517705 2.8980373537657003 +4.6491502403811555 3.3513859295795076 1.9548632651931253 1.763283296886605 1.311828910585067 +2.2318267770075138 1.623715700769845 3.3352841291872366 2.4841874579767143 1.0460232429485339 +3.966980577820849 3.006196222935167 2.2283278673711235 3.7270795528579526 1.7802705388065903 +4.095930226418435 2.4804320373260085 1.4799360835310265 4.485094324323438 3.411863193500503 +3.2686348465181787 1.127651322780555 4.897516077106927 2.6506530990400905 3.10357917429592 +3.8046639974911094 3.8595727698199362 2.1360799361224525 1.9512211361300076 0.19284125391965717 +2.21388770919841 1.2754161732001577 3.7398551242455182 1.0840400985458771 2.8167503039160047 +4.730684114123489 2.6131599079882943 4.843480546214529 1.2630192202764499 4.1597610592565 +3.4220534722743974 1.537165344276398 3.7948904437321143 3.7213914280143694 1.8863205879116307 +4.4337577287465635 1.3551482970567807 2.1695339292753077 3.993444731500342 3.578335737093776 +4.647377682006247 3.772644956571936 3.511034172573066 1.4613878801861855 2.2284988814987146 +3.8522265187715656 3.2498878703587373 1.5255243465119461 2.5694050192736553 1.205196542617523 +4.304280387860295 4.193331122571323 1.0181516178286234 2.988493898123315 1.9734635646459369 +4.255380340961521 1.73520624900585 1.1426223990394035 3.8652571484169145 3.709988872258586 +1.7982907043575391 1.6290922126811709 4.414234194319151 4.087705284444284 0.3677625029412698 +3.0545395346142916 3.794940152471001 1.4847775008347668 1.923331152536342 0.860536100546272 +4.5044489623642985 3.2540466312391807 3.2509979515002527 4.350582588906177 1.665110316015803 +3.174675461494152 3.2684787037190555 1.890474605878083 1.2321962504511927 0.66492814760351 +3.3333874387610063 4.37909311692181 1.2271028152303227 3.537753418676261 2.5362583812661565 +2.588643350335639 4.846204622800509 4.952778602352243 3.0117586154467633 2.977270812086088 +4.79637664348243 3.545793571791668 4.253682921731729 4.492271134919314 1.2731387806015286 +3.3559449662422773 3.2501324639949893 4.913859321488623 3.3707911024683783 1.5466918937468257 +1.1121247545943187 1.054812669017207 2.4839833663426316 3.5469115700342244 1.0644721890947806 +2.1338892684777777 1.5140133539038363 1.3708299210358956 2.0645182965635716 0.9302954970390356 +3.122688482700509 3.895443518686563 4.882431884558361 1.5419990432196595 3.4286501590474288 +4.5776759067591275 3.8600228092792594 1.2099549056498637 3.663768923037495 2.556605014516414 +4.836773187452373 1.6397556908814859 2.036666604707048 1.2690902982785013 3.287870779025671 +2.8392196594068984 1.626873788458869 4.118027995655204 2.660670966331037 1.8956982939606442 +4.9683540387801415 1.417620447781018 1.973119814523474 1.708671304809001 3.560567658188752 +2.531654890851011 4.040345188661001 4.2909141703265785 3.6199961157824534 1.6511442852213947 +2.4427555353589954 1.3042501854105355 4.408908430700182 1.7484472340019765 2.893829333426232 +3.5028845713375265 3.8145389405696526 2.1767270274959722 1.3560832147803663 0.8778295467856393 +4.039867564706144 4.878462396774435 1.0000302480741556 2.9922347587894933 2.161508756606409 +2.8098488172690703 3.76763461582324 2.7530959529030885 3.8355301391022785 1.4453433513752887 +3.185116256480739 3.20726317072737 2.3925894396345235 3.630005510779438 1.2376142448026217 +1.9611960235046064 1.9611530404733557 1.886462816625262 2.48610376512096 0.5996409500362373 +4.567329974131507 4.801855434841979 1.6175072586955621 3.634235666105915 2.0303191032390346 +4.8054020249313325 2.4717272867355957 2.0335633884856965 4.532734194518884 3.419340945477873 +2.4027236497397464 3.7969880684918813 3.5277740404923588 4.408296384707205 1.6490278554529745 +2.7655539433208056 2.5018435221682562 3.1255489809467742 1.7918686022143087 1.359502312922059 +2.149197556383047 2.1214462278430175 1.9336351863620669 3.5922818205364653 1.6588787759489232 +2.9963807691961195 3.9056924154741934 4.463880396945136 2.5717496476991757 2.0992871271693687 +3.6856858278603837 4.907432395684729 1.5194158610103905 1.9688340798675976 1.3017839342346151 +2.309849977289705 3.071828234315048 1.0814870451537488 1.8832401132956158 1.106082658056927 +2.614080316268625 3.6992310144029528 1.287968962588946 1.9634047054797032 1.278188358746788 +2.3194525383850277 2.5687254341430266 1.6877167391261376 4.518487912470343 2.8417252527991 +2.6950721690004373 3.6139192825000235 4.5732735547248975 4.392983994893961 0.9363676325944602 +3.6060549184209916 2.852575342402109 3.302576185351403 1.7715351527269432 1.706405026673728 +2.6903726810059587 2.359051094568452 1.0821032836757025 4.622151705364971 3.555519205621614 +3.160841400223342 3.366497470400853 1.6821883307184637 3.4269771643269187 1.7568672383209865 +1.9983407122526358 1.3015521693231675 1.8816901526579217 3.810400369198213 2.0507163072801338 +1.1724696131127637 1.2579195490947428 3.086949462569359 2.2881772109404626 0.8033298211392512 +4.890944368650899 3.8033909707824543 4.23946767932256 1.0927136337882288 3.329389345856366 +1.060114594249467 2.352207572399754 2.918126642353877 4.006150870895368 1.6891716863831767 +2.905621602185773 3.955922116811162 2.047728150672796 1.3358456066686806 1.2688214718706994 +4.035688981192441 4.334776268381173 2.4044417052931983 3.5838287542282177 1.2167197773331249 +1.8158882008383102 4.296298112103998 4.9580366833918355 4.835632560684543 2.483428295151845 +3.4595367164215816 2.4291449250315993 3.2978350981030253 1.6263474793891879 1.963562604878569 +2.594079659640847 2.247496497573864 4.390804230431543 2.4615267350237944 1.9601611011636635 +4.759096398645307 4.149598451387675 1.5673025634750948 4.029637447275622 2.536647556853775 +4.179763409713669 3.4940416877563822 3.406438865636815 3.444368446021156 0.6867699272916645 +2.065335093450535 2.2399771968584496 1.8063712712287687 4.580637399807964 2.7797576182941808 +1.0642118523054074 3.588955982927905 4.450803005603724 1.4175934359683993 3.946478584566254 +4.424873975211025 2.164379681226136 3.5159784855847604 4.251640566752014 2.37719017977224 +3.847350650354728 3.923841803907113 1.413739939533257 2.577589448825909 1.1663603974983552 +1.1032032089496253 2.6380706450685865 3.7549147350429313 3.9046352632666994 1.5421524837155363 +1.072261691907714 1.2265792189597837 2.7915062885139 1.4423664294874112 1.3579367652322696 +3.034153803900687 2.112370659778811 2.2399782235897607 3.540100393211337 1.5937383162642247 +4.10800371211621 1.8560162495732802 3.4577388779723948 4.572319688860928 2.5127152475860615 +4.994799989158485 3.745220000516953 2.301866982783464 4.846466025823165 2.834860567620908 +1.689576667008963 1.5425045693508586 4.419588800545118 1.854293671314251 2.569507599125787 +1.0689155000187451 4.437934358422812 1.4679936954076367 3.1039590243573065 3.7452197032761165 +3.3717610567086935 4.2493623317524944 2.9436853291639222 3.044133865951814 0.883331142042062 +3.8403406688664052 1.2809475462358622 3.332087249390075 3.031318521048481 2.5770050415388677 +4.23852038485961 1.7382170113967415 4.904076179109228 4.665275453124297 2.5116812588544617 +2.6818077040255623 4.9736774355583195 1.1429406056703142 3.9391837386042106 3.6154726557942607 +1.9350369044908455 2.540691463624523 2.9143046836247644 2.4303560719972546 0.7752571855169119 +2.3245808336793736 3.443651136650574 2.460182372506236 3.5038304869785346 1.5302025126870096 +2.4909929746271007 2.9054530480717213 4.999166957988466 4.917289920759137 0.4224701193045176 +3.140091652529878 4.630874715880042 3.428680548890857 2.451567923922524 1.7824654902253239 +1.6011805102468104 1.008169120635431 3.632466305232321 3.194152924871282 0.7374151663834559 +2.0590256429784364 4.722851276237166 4.719124115838942 4.61826769179549 2.665734237068111 +2.904947271346623 4.544585155119528 1.1944466411585197 4.808422579774424 3.96853051831506 +3.6120223873513733 4.563057028349583 4.382090220135476 4.738983476687103 1.015795099885119 +3.4197139369099525 3.659866662466064 3.0687102026902475 4.488096415568105 1.4395591522753675 +1.334262257730603 1.8277045775269296 4.319545173827265 2.964527429975734 1.4420674079662412 +4.424734171907339 3.283471538391501 2.699686816977912 2.010992124671159 1.332959405935154 +4.999293902877781 4.971157159602345 1.8506248358686053 1.0470584959705076 0.8040587907232735 +1.9144642767409037 4.642139620218565 2.1427475992295597 2.42037561182644 2.741767694899491 +2.2846534777693557 4.9646777065020515 3.070694833813643 4.678454093017871 3.1252871391523707 +1.0017354629395396 2.124865230273034 3.340841248888377 2.556584176512484 1.3698465716430421 +4.9432564869261775 3.806177000826897 4.275452407610451 4.409552451636824 1.1449596409986156 +4.170322313901982 4.25533004517979 4.321889441253589 3.530929029478069 0.7955153596085371 +1.4287075435822643 3.083136605834511 1.310985530145731 1.112947782431089 1.6662396200861198 +4.9704156447337 3.318342001885079 4.546128326775669 1.376685672014439 3.5741731999463915 +2.511235142463087 2.035909486151547 4.905779526995879 4.956480461031479 0.47802203323704495 +2.164888019306053 4.931347719842836 1.3875351482034834 3.4474516600062484 3.449138343165106 +2.133675502726631 1.2903061268086553 1.549701597118767 3.628015580520032 2.242913488710055 +2.860775916269074 3.938340274382478 1.4131915832584028 4.691174107038473 3.450552763266186 +2.5333519757881757 2.643982810385276 1.5405404083115082 1.7880384796841655 0.2710986479066909 +3.7683614407519994 3.801811192812414 3.4582894889914506 3.6715984230320005 0.2159156947848369 +4.2658686767376865 3.314453630646633 3.0088587363556734 2.265553710703059 1.207349556296301 +3.9364235171128614 3.602027787726373 1.8453502295406108 1.4454296668108069 0.5213031366930805 +3.9329771532663704 4.079461027237192 3.283529424735446 2.6960043898934236 0.6055106868583076 +2.915057974753111 2.098511637069118 3.7532700500272616 4.855886729751397 1.3720464511054349 +4.732994814136568 3.6170697279400046 1.4806090959359444 1.0931586477283655 1.181273316307052 +2.709569261454914 3.8732615332050337 4.193042150391813 3.9210207649241533 1.1950629010569696 +3.0274603872683015 3.9150334134103604 4.796975872278503 4.128524487131749 1.1111314643369554 +2.556452317695555 3.564014572142194 3.2585191658210944 1.378646841476515 2.132862314454987 +4.298979279290752 2.046102771312634 3.914416784843593 1.1702570796860234 3.550473918733971 +3.566064746108698 3.578956412954362 3.5198770401570774 2.544796925736048 0.9751653319378141 +4.3257310255923285 3.926832087348176 2.4387083052786727 1.3778879015633692 1.1333403248234892 +1.8759585849748017 2.1388968410409324 1.911336734329904 4.660686398721044 2.761894296237778 +1.073737171413638 4.044565270376493 1.2105185489998416 3.7948630421995433 3.9375952119433095 +2.096946193665619 2.8968506698365206 2.498599589490018 2.2223773245011196 0.846254046178712 +4.6246405281901835 4.452977936368591 3.043988493713438 3.5628059441025646 0.5464792697433093 +1.8815409395713125 2.354222495841104 4.9637509074017485 3.643495457497275 1.4023203295396156 +3.1618035113520326 1.5488267520842647 4.407820052462782 1.1237540010071272 3.6587954105499647 +3.064277327878767 4.366616061095859 1.9658988591779214 2.723112651219621 1.506472337248736 +2.5224983525347477 3.081546809619601 2.2077689623348653 3.913374412941674 1.7948886122845087 +4.657471602444195 1.124665812024218 4.893615016231623 3.410300051223285 3.8315714841618975 +4.6301896117938455 3.10617192226249 1.234729916400688 3.287216304512432 2.5564292071928145 +2.0917352703293495 3.6531734065585266 1.1270311328742162 1.7882400606385347 1.6956669187744644 +4.123645001988237 2.3038427036855387 3.784970351018566 2.21480298427794 2.403561100634842 +4.7417050319332095 4.28338413551141 3.0993441900793113 3.333768780268699 0.5147940681304946 +4.40472973263102 4.255115362076932 1.3192622217960066 1.4270363856039987 0.18439015771132689 +3.948558908155788 2.3648047092643436 2.3101759642104733 1.2404980318438223 1.91114840907201 +4.824337109465095 2.3597148582963845 1.999754870133216 2.9086078488268483 2.62685678670083 +1.9925936685766246 4.645015173001952 3.534382942946927 2.4280080971221647 2.8739180810544487 +1.6913759500870462 1.5512043341615458 3.953124724580203 1.9127436155926194 2.0451902483203286 +2.1590669187731106 2.226490117323333 2.5523490884105766 4.544606404771956 1.9933978785727122 +2.8052864967727063 3.208684760233285 1.021143666087982 3.5492169879740207 2.5600556399802956 +2.613790456780516 4.360543377789368 3.7463896729096593 4.79104399040073 2.0353005699664335 +3.8782040872905825 2.3899104699448017 4.2534530057177005 2.8638757539724247 2.0361588420356953 +3.5986347977681596 3.53406756402601 2.9982575744497817 1.3282022291830113 1.6713030197804422 +4.3087517109128495 2.2252624305573345 4.125279255634565 1.4280393458237177 3.408229850293664 +1.8043317719648004 4.11529423833733 2.2461227461091435 1.1913508537901407 2.5402935392999004 +1.9700187322623135 4.778899013613073 3.162885296131923 3.4340241096726034 2.821936337192845 +3.821646655404455 4.593906842486592 3.036977958462043 4.724779596539516 1.8560873271613973 +1.3302482641638607 4.83098898991107 1.5381028074251022 4.049572430979954 4.308441168095933 +4.5620566529581135 1.9355687067391414 1.6484985214856458 3.55495589007609 3.245461235307911 +1.098439548285926 3.725635656442779 2.0919772204662626 4.4591216342603675 3.5363161717345286 +2.4268749133641254 1.6327728271046253 3.867049460914816 3.890114294189133 0.7944369766920863 +4.478966536274157 1.7219417741624214 2.9657435965838084 1.368918385797004 3.186069097289259 +3.4915117961837274 2.793776176570507 1.191097021703838 1.5611932557685422 0.7898140397244918 +3.7171145730888675 3.036890304038167 1.3939370879134576 3.2328154921685868 1.9606577574481094 +1.4830566264394363 3.653656602519073 2.0377404799893966 2.8444381622883403 2.3156565822209925 +3.431700354958311 2.9922413111262394 4.172216465416242 2.3307210472606417 1.8932061763827701 +4.183916810059218 1.8239612920966155 4.497491793005969 4.642979430014723 2.3644358099310976 +1.8144160872238126 4.867686091748049 1.5682132847537802 3.055719762932388 3.3963411552950267 +3.2822307141455975 4.0073804801404105 1.403192720425376 2.115552643388469 1.0165130805682312 +2.724303446664455 1.5048354784832054 4.417757804973979 2.574788700513713 2.2098953019125545 +4.910699829169216 3.5766824810213813 1.677997914932396 1.4630096260162109 1.3512299025445265 +3.308587307326657 1.4629537212912291 3.383656260820595 1.4995809319775097 2.637442545091205 +3.6220906263976347 3.4139557037086283 3.585625088116438 4.698201926532425 1.1318778058706125 +1.299543096100956 1.2218396789784984 1.829953257552817 4.89459615856641 3.0656278201643326 +1.300457896709717 1.497395652989757 1.803556821226025 2.230204944073203 0.4699075447124009 +2.3806623105972538 3.7914880640822344 4.914508734736647 4.830305970441815 1.413336270040274 +1.9900172304384505 1.7952021964395537 2.1605732334429586 3.9111723194184527 1.7614057049102079 +2.3940474898279427 1.9054219045864902 4.337874395576689 3.6454406189837383 0.8474783168431675 +2.395312249072107 3.1090672905332255 1.7674936333062972 4.869758036691075 3.1833144186082962 +4.360329291855097 1.5374694498850738 2.9814180531885133 1.21293695211769 3.331075365741774 +3.1314045077039694 3.3020202472443385 2.38976164067378 1.1320173790192145 1.269263707156198 +2.693218368431687 4.708137454383962 2.8803721593566776 2.433335576184393 2.063913910420952 +4.549635410216572 2.439505721295513 3.3234114781597297 2.1370113615011586 2.4207834560062484 +1.3478464334068159 1.5959738389578657 4.667635738322885 1.8958763354023724 2.782843401462571 +3.9317051256258875 1.3466859490568455 2.293207021952319 4.0195794477897895 3.108486109977273 +2.496048764680384 3.7587327252380405 4.101840814570139 1.681806513777235 2.7296404161104753 +1.558304131733756 2.0558953705288143 2.491810198322005 1.3323110870356856 1.2617587843955618 +4.647885642882226 3.360320403967388 3.6544397437814884 1.3208338017771473 2.6652468810637022 +2.387826090019084 4.614868387987576 4.797420278194634 3.6352242821415475 2.5120543246877856 +1.2041433152411298 3.332708979751644 2.976147828217147 2.3740108359026184 2.2120941990897838 +3.9471225568754686 1.282135577075083 3.3302673666191764 4.429516396839764 2.882794483300272 +4.881297305525949 1.6843734584095933 3.371082391676732 1.669947819676513 3.6213507033033423 +2.643096140601663 3.238900184211547 3.2703696736605607 4.9108664869753955 1.7453401539178592 +3.646287386723151 4.209034050225123 3.557118882739708 3.278938169802504 0.6277486091843234 +1.614461066722649 4.181794685452281 2.2656263735284528 1.9383492323115528 2.5881097807130384 +3.8319765254098965 2.033415146133759 3.479645765639841 4.109906892053151 1.905794354722318 +2.2917208501235304 2.6721288784305157 3.237506438349678 4.683660274610242 1.4953498540915278 +4.0053267096200145 1.371066664581647 3.645030209088035 1.4531014072332837 3.426934177553743 +1.744646900294807 3.4317211574585884 4.467877455520924 2.4023853423792043 2.666922799526707 +2.7083967456697042 1.2033106548291466 2.091740151326619 3.0644499139070445 1.792051456588504 +2.767948199728328 1.6646939082802272 3.3252621819930903 3.3691699326322757 1.1041276747572466 +2.2238079524661516 2.1893812765672824 4.431491939021508 3.6150727533506393 0.8171447134656934 +2.1345302991917645 2.313518465553888 1.5355709043549215 1.5471233158677222 0.1793605918518232 +3.4948277925344198 4.186959052152925 1.502687973180055 1.7432837427952714 0.7327564430954104 +3.622178703919073 2.2549176142721765 2.66831409313464 3.1313064390846668 1.4435251295598315 +4.412623084049001 2.0929956138904897 2.248567948851496 2.571433123656923 2.3419892231639565 +2.587703988548662 2.9945166988815957 2.7764000118501886 2.058952706792378 0.824758884052268 +2.0276472862140555 4.606818455552505 1.0651726014834773 4.477066217164882 4.277048277197043 +2.4081188963296967 4.342664540432525 3.249903642209312 4.088125221352203 2.1083363737454293 +4.571320488026435 4.2325812314798625 3.125301110146244 3.6480024981817745 0.6228651739983502 +4.095959715493397 1.955417850135797 2.120273658672626 3.7034528954197308 2.662400415605387 +3.7694224440925916 3.292793519331988 3.6117121459973878 3.5073119782261744 0.48792881340325306 +1.586153359221817 3.006149090775457 1.9184869546522414 1.726451862510292 1.4329219637665285 +4.7988618552383215 3.0946687231979495 1.9321539217484225 1.7264888838372645 1.7165582830514583 +1.343766497690022 3.9082988745327065 3.1148793968655584 3.865189409337986 2.67203881459285 +1.4623732346134934 4.316317181371444 3.5712919281750817 1.1147737895273768 3.7655646876320596 +4.896565631588117 2.5755443500598303 1.6104866833996598 3.769804404558964 3.170140818673489 +4.214352889983858 3.6227388557950695 4.9553427890204915 1.2052482370248683 3.7964741951390093 +3.041304705631711 3.841301490503736 4.213054109610466 1.004503526302655 3.306779657227024 +3.781140288164008 1.0237562067433346 1.8713699755832214 3.942747301840502 3.44873469553761 +2.2338077740710798 1.7740629086117514 4.26063432024004 1.510082144674854 2.7887098471914564 +3.577188121417327 4.593868903312749 1.6175394254296358 1.6623164616323636 1.0176663477027166 +4.8583728840289755 3.385860938617619 3.404123838581197 2.999044850519744 1.5272132843673243 +4.127932084659864 3.2364517696841735 3.718429028999147 2.1586928590462504 1.7965283387268034 +3.796392933929289 3.8905680758250956 1.790415695325811 4.5776313189233955 2.7888061764449614 +3.4724704869306264 2.1508081636874894 2.787590401882075 4.936144578930705 2.5225138945888013 +2.0913782975035584 1.7455395390401671 3.138085890848882 3.651950971976047 0.619404365868798 +1.0625074062274806 4.926426191938257 2.4287237549012275 4.7182478513210135 4.491301478486551 +2.789360339695325 3.8935860896917123 1.9254896980326444 4.165445344217133 2.497341747504505 +2.7616579662851666 1.653437868849164 3.914970998090678 4.477056351011206 1.2426148753048378 +2.252303823672339 3.542016478059882 3.629796277223449 4.961522676402575 1.8538753823161802 +4.665277733797611 3.381050995546607 1.403724524314943 2.97203701872603 2.0270279710365955 +3.9824731861912905 3.9028527055982813 1.8289238428941785 4.2424741851153644 2.414863282955345 +1.9413788314689602 3.9532354897302175 4.269903063136734 3.3885993535376384 2.1964205976869007 +1.4287820714929653 4.404430215091751 3.1772038521357002 3.286312764296456 2.9776478349891886 +1.136225755101579 1.7887569625733315 3.5319547688574007 4.1104105775476185 0.8720138183148229 +2.898982429858966 3.176020308624187 3.1483831996175313 3.1850525550212834 0.279454160635443 +1.1349688034228 4.805424307661198 2.328526475430862 1.4321923495976678 3.778314237027819 +2.1639224124657512 2.957781597170059 4.148420996701842 2.899821587196262 1.4795988951594516 +2.0714776895089893 4.840966698306308 3.6713705694884387 4.73462084181897 2.966575552966771 +2.6831158469682648 1.753141982798688 2.1219368142336337 2.2663396914124214 0.9411182598249842 +2.5957515181031448 2.762295655055504 1.816794340249237 3.6705885861797496 1.8612603406827009 +2.4777365442340935 3.5274106667482643 3.7063962734933877 4.764990435199955 1.4907841435550369 +2.151370588269934 2.5973431943631793 1.253474763659003 3.3167036639311167 2.1108777937871435 +3.3207963572164574 3.0075351471460547 1.536027295247555 4.6409787270113165 3.12071401755217 +4.962701820814679 4.2295862363748284 4.441541804285114 3.2408646594540564 1.4067992274195507 +4.618281170428284 4.831226213580971 2.593844934821214 4.86424142844949 2.2803608989988557 +1.1765920158496446 3.741761874877853 4.670608569611256 3.4892781518549687 2.8241172003978594 +4.224318664268912 2.404432230796222 4.670191677479266 4.981974427508799 1.8464005832846584 +1.731881293693962 3.386375559706628 4.055301559398638 3.561808078889226 1.7265245702202106 +2.1207316563342244 4.734001531102535 3.994206148021939 4.714879250186581 2.710820753675018 +2.7272401368889114 3.7590428103700826 2.5834150734301233 2.3098874892159444 1.0674427836324236 +1.0721206769185563 2.736516918560382 3.4190343971843604 3.858735223544309 1.7214969259028772 +4.358012312244031 3.130363425646498 4.010374331605558 1.0549879176823334 3.2002235303750486 +1.8618153124526686 1.3863594288914176 4.425365094491056 3.755536980070886 0.8214182856990039 +2.4425166623279573 1.1702377396770287 3.68852876494531 3.51719115287568 1.2837640882699324 +3.65833445452934 4.31227631869391 3.3833735049141023 4.960827928699231 1.707630645317162 +2.887420398743511 3.4489717376881726 4.53527811571611 1.0556504399779052 3.524648729736597 +4.193513138388835 3.5329238270720627 1.8624972107459663 1.4066812492426854 0.8025873341806036 +3.5286287609811833 2.213734730745926 4.696098916949076 1.080442709131185 3.8473258406171382 +1.2787250601290165 1.4075857278525676 1.5803572981624772 4.636837270999027 3.0591951386005234 +3.943345991496851 1.2662188327476427 2.8611464575026266 4.377345385920272 3.0766652425389776 +1.226219865579881 2.9207904842538186 4.349900510211453 1.3340154628655672 3.4593543039818098 +1.4397557945861772 1.348009184930358 2.9019053670983284 4.064768064006607 1.1664763573446881 +1.1296362162381812 2.8434597276594 2.819281772183876 1.3446102477013877 2.2609394360353092 +4.16200024789145 1.2626813627109459 2.648539344534251 2.7919391007135426 2.9028629812715248 +3.9578384454745796 1.6661879527477028 3.1774539495885215 1.200900597203196 3.0262890039850796 +4.944274911408254 3.867721666766465 2.239565881999209 4.689700512775175 2.6762149759457747 +1.6403926068835708 2.592744734305167 2.4967354981566046 2.6217991147729767 0.9605287516808684 +2.3089005714045046 3.907766175543919 4.139695367203697 4.7611549215937305 1.7153959303445818 +3.6926023465669493 4.811993838295672 3.69761671375586 4.257284589178336 1.2515052706778997 +3.598682376366811 1.6747816389847912 2.667904387581798 2.39387221427709 1.9433187281825854 +1.0671359248542553 2.6069501217823294 4.692789185605066 1.0169689728951168 3.985308268782763 +2.6470130662280216 1.298025351293675 2.132767945664399 1.1057795519212341 1.6954270895343615 +2.928591351552865 3.2432073012048868 4.9649740633405735 3.8806431160164245 1.1290512827592596 +4.857128463698535 2.101419103427933 2.0617330844547164 3.6762937868221752 3.193859787140368 +1.17730374342042 3.8904475679855186 3.348762513604352 4.115101230070763 2.819295025557119 +1.52291867346909 3.006802984255221 2.3333933737760213 2.772365895098673 1.547452591284656 +3.671147925993483 3.655350819834149 1.0217243980371395 3.5955374126147155 2.573861492499532 +1.5588749286321315 3.7841022713794663 4.771612844317387 3.687959264437844 2.475064000808083 +1.6132851574877511 4.868451591458136 3.9111529273766346 3.0783578659386417 3.3600083522519677 +4.424762791820298 4.697855881491593 4.429467286687741 2.194671842744501 2.25141966587655 +3.5057134164962878 3.278757360552178 2.2833475694253735 3.6905589060752972 1.425395663430253 +3.5163588304264892 1.1987771483479275 2.564574243432326 2.38249402603824 2.3247232219497382 +3.2521792521879727 1.607492300370533 4.121613291149864 3.329486381292769 1.8255027282363319 +4.778364316033613 4.6820207578016255 1.4693254467646986 2.0369213106912194 0.5757144656505462 +1.6112627980575098 1.2854519773426052 1.9153445142673404 4.392004712150446 2.4979988844419654 +1.645949873055231 4.937494924669225 2.6227971615602153 3.357876514772095 3.3726266443712625 +2.4771614707050285 3.1279991414252146 1.3996038243464652 3.422898079597735 2.1253962729244793 +4.347442139665415 3.7149000660715608 4.667327677873674 1.097766532466546 3.6251725815010047 +3.8388742302880905 1.9447638740674549 2.0054375932686543 3.2600873503054673 2.2719595186479 +4.996406592819609 1.526181265189058 3.983498952315526 2.8913784450394924 3.6380202070551264 +2.6015134623666913 3.3385563058150782 4.713809787882058 4.144731638995397 0.9311724290477846 +4.062996944851323 1.9505018232947187 4.783845145897496 3.03441413524923 2.7428351207497443 +4.298282784363829 4.650660146424997 2.712292136890086 3.1541667819530197 0.5651752004844875 +4.597531441328394 4.61975636051622 1.7216193257738945 1.7528533262807988 0.038334186055930385 +3.658881562683312 3.053758788592683 3.158922107033826 4.1350735385552735 1.1484969259795648 +3.513501390851415 2.8713078869665734 1.4552573215398468 2.9763797757437938 1.6511287100390837 +4.741071670675979 3.0744567954731936 4.1590412407995565 3.759837518860285 1.713758662664426 +3.1722364582034612 2.6914443881454986 4.6755810670119375 3.3554310175044884 1.4049758602357343 +2.339087748882488 2.697059551302447 4.775277181960439 1.9339792125635356 2.8637594106744997 +4.898242269803646 3.833600048936654 4.334787162002533 1.89210124181158 2.664615837818225 +4.941743968786771 4.71071188112216 1.7019699767222227 4.349495596534953 2.6575868251282877 +3.4185342310664333 2.4976115311821014 4.34053206472997 2.7449745739927076 1.8422546852729231 +4.330314379768969 1.6163782956685941 1.1038843478801614 4.660988979212501 4.474197405884999 +3.2574012899998315 1.898965794251117 2.711597933102249 4.009171896641579 1.8785753077705516 +4.1024934867656615 1.4723993323416664 1.4171520460160134 4.395788132930333 3.9736215470781207 +1.617051785170693 1.0595495862973077 3.8343370850296323 4.157597035370101 0.6444421597341236 +3.4838766451958567 2.6805957709804153 4.372510852544048 3.6714331808191556 1.0661941965099602 +2.285002552264378 1.710430224275608 1.304155282776367 1.0750666369283546 0.6185587827740472 +1.5993780255817187 3.505924877704486 2.531917355999486 3.4040068210002388 2.0965354598252164 +3.2453980359288215 1.079945844555518 4.563219596749214 4.253845348442114 2.187440426306286 +3.3115182411927235 4.9099831181076 2.2203782763585163 3.701139091932959 2.1789315169759647 +2.2889751258124478 1.2177356366565566 3.7220443461088943 2.2604612896887977 1.812120049539016 +1.0824524071328483 1.499621168376779 4.002922408307919 3.56723826699397 0.6032001710462859 +2.5322644453036376 3.8315693531030837 1.4275369815687862 2.341541428142384 1.5885834481663328 +2.9382039054867124 4.485627769591606 3.6347768744510347 3.332604174369089 1.5766511839579902 +1.518967905049883 3.6098981681069002 4.60311618180256 1.3242162771434312 3.888852523526873 +1.5386015155174912 1.5205835406816761 4.284675310310384 3.435638929031939 0.8492275455680772 +1.2183687337964004 3.5884268944209614 4.352295259676721 2.7348399992002226 2.869379236766408 +2.350577559231214 3.3696692551978824 2.151671997291657 1.581166537124778 1.1679145366286194 +2.32200249396365 3.9021152125079497 1.2106722141349548 4.627154172762695 3.7641871867555015 +3.0052820886703704 1.1946441478875172 3.403633374483458 3.798757668089129 1.8532492978549193 +4.703065338465401 3.888740931274693 1.3637404507720072 3.743569455668033 2.5152952774358135 +1.3330718384218225 2.3751295262906513 3.852772059314043 2.838818980884126 1.4539549752671277 +4.357303041283828 4.000122047098669 2.003801446768998 4.510514389239814 2.5320323928729263 +1.0500383406167386 3.7127351510512363 4.619199899946157 2.0703510125871443 3.6859985017481116 +3.5550195605460133 2.6341401117603387 2.760882185277983 1.6784185997307164 1.4211778119685279 +2.9398438067552313 1.4668650261168872 2.2378166115656684 3.0610575742339665 1.6874217525046455 +2.3927977660500197 4.359757030416825 2.158538301642066 4.423327544327728 2.999699828560034 +2.664412692638993 3.6427102437835988 2.5394759667023674 3.8891057014408843 1.666903272378422 +4.340386718016553 2.68045375329763 2.7345501344692447 3.696762536079705 1.9186532133696086 +2.239605008546971 3.6616366058170287 4.726523670576058 4.397963287699035 1.459495045839734 +1.8470167537975684 3.9957653850213632 2.6997997920734735 1.8819448846051365 2.299131864390595 +3.6015866277589805 1.3514100100763717 3.7419293719917586 2.3555708671745075 2.6429689204840585 +2.498534230211101 3.028670828077092 3.9724514132180535 1.5524694594055664 2.477369061963726 +3.266039095105422 2.2812720425459645 3.2569886110452386 1.6582259262726153 1.8777135750768825 +1.0979338843997661 3.9879742018745037 4.759557635361201 1.8716217423693426 4.085646430940907 +4.027504467112469 1.851418025910669 2.6803173208022795 1.214606375973874 2.6236731453007045 +4.833356975417814 2.9311266136841914 4.180101005281804 4.522191086017277 1.9327457081672261 +1.846625845358302 4.5619200141479785 3.3873409007909987 2.211974014782613 2.9587682808540903 +3.02337618176364 4.083274823886134 1.8130874028652344 4.67398190503534 3.050918301777392 +1.3736256336764745 2.581236546828916 3.0907769712804054 3.0868057760203698 1.2076174427179607 +4.236909728118793 1.7318922315506353 2.2204859914623705 2.2245613646889177 2.50502081164599 +3.373985804146102 3.6676273032593882 2.794462578404589 2.9746025088563077 0.3444934317873829 +4.140341804124381 2.509769055709361 3.6495036882271807 1.4628938334437582 2.7276418652216226 +2.6793309464811306 2.788558707823057 2.4201936127858303 3.980832014599036 1.5644561115805857 +2.3388240748738522 4.749365633340485 2.679249423540882 1.0418925548432543 2.9140432598995583 +1.1909765636828706 2.99355261500663 3.188833241599876 1.311513519036874 2.602615945837953 +4.322657497688715 2.2753276235406905 2.526970820558517 1.8395556777972217 2.1596525628157175 +2.885712797067539 1.7780162257256138 3.934558218206013 4.814991479815913 1.4149750606677505 +1.6429851097200245 2.42173214164651 1.572051857608812 1.188250685821263 0.8681879285038502 +4.171734038445811 3.6228975049237246 3.4052643775905227 3.420697449891297 0.5490534766752515 +2.3881332614726625 2.598494110095613 4.042065643546859 3.8571992876938133 0.28004866748433754 +4.290315424961504 2.236000642011377 2.2220000472985784 2.9217721095626947 2.1702281369876304 +2.398650219132817 3.976422300955763 1.315561857737161 2.216800389955977 1.8170293432236688 +2.799344956470725 1.4794310142528482 4.463231764113152 2.3510436680375064 2.4906849194678955 +4.190150216116807 4.228068786327551 1.4641682826863653 2.4805190922830027 1.0170579069721484 +2.7315741901740243 4.330830642569431 4.211612610610734 3.3112800096051513 1.8352710952232152 +3.274192358069259 1.100933913015513 4.210011978201534 4.723205832547041 2.2330293775800225 +4.379951324831392 4.771498448915164 1.8008924349365327 2.590503987309847 0.8813600592378055 +3.917983802338994 4.496422151260764 2.4165028462313125 4.245983673180751 1.9187472526831 +1.3751721272677258 4.165171019903074 3.218433264725151 3.030258299504911 2.796337540148204 +4.0697021443614965 2.818293024673346 4.387090698772951 2.9237403927035 1.925465892482188 +1.6601196781613856 3.48143773470441 2.065533078458575 4.600040754390905 3.1210460782323546 +4.728075334593715 4.421489447105401 1.3242976481506985 2.7896361389423636 1.4970677336054612 +1.3943692542496184 3.548592531671764 1.680267816575244 1.6590023672778038 2.1543282359754823 +4.877313901124369 2.724583178894579 4.694666922257801 3.371487256639375 2.526866436901262 +3.9022580795249264 4.400546328015416 4.075362908372618 1.8446577483527742 2.2856807934448935 +3.3613391788204607 3.9904521776611905 1.9731253164208242 4.266543843113904 2.3781403877587706 +2.732370894699589 4.549445120345808 1.1205613451685026 3.4484360540008714 2.9530931921511034 +4.228645095864348 4.872966281914406 4.187017055306001 4.8868727612453 0.9512874433780514 +1.9617690564526389 2.7374092978817846 1.9624530648395102 1.9253590724360432 0.7765267209804771 +1.6808449991759615 3.115057418875916 4.9560176588887686 3.5305636601136627 2.0220990004066413 +4.7303795550674606 1.1897877633590208 2.1920480835534586 1.6845173324101292 3.5767831495450335 +4.828908173538556 2.287474671842707 3.973326042489286 1.22384539166158 3.744132488683857 +3.114443606399305 2.693844695316371 2.0527778723661245 2.3304636689452423 0.5039968706509287 +2.814265831974752 3.8965152842673545 1.5059999143773282 4.791627689361444 3.459279368992147 +1.8570627570380522 1.5401203126010485 3.281317044836792 4.831784136423252 1.5825298465363233 +1.576150772296364 4.271140971814457 3.6678051623436594 4.309419493601938 2.770314264767552 +1.1770912955788502 2.73340162741029 4.903089706780543 2.3361871234107454 3.001847884466471 +3.8663444491498136 3.619310384055721 4.933369397773516 2.284769334034879 2.6600955108704696 +3.4347141653514273 3.5695831451387017 2.7234124676700415 1.4138331395822323 1.31650585196716 +3.395767582929926 3.049908775886455 1.6500552745001675 2.1765660441000705 0.6299459539628895 +4.785549127549324 3.6322239255719735 3.1964665906413257 1.485585974124061 2.063315658228423 +3.0979078002463956 3.029331238607994 2.8169600635579997 3.8844874554539075 1.069727758476064 +2.9838217712793482 3.5236302009172435 3.19796754405314 1.215942230801509 2.054219434013406 +1.5707281697437265 2.21054002372592 3.8319781792238365 4.53950215579035 0.9539126720578902 +4.540108072727004 3.996538980484959 3.0680892165873295 1.2105456764764377 1.935441903403082 +4.502502113454929 2.9524222464887497 4.160670310363328 3.9119185579492863 1.569912426953473 +4.733745184402556 2.474484926912603 4.054205673195881 2.692163059676641 2.638070695056501 +4.768786640244955 3.006300837898214 1.258071662979758 4.116428938767619 3.358059338296934 +2.904748999177729 3.786654174271386 3.8818086350752092 1.4398581103239199 2.596320300577352 +1.1678294877091275 1.677656736449555 4.941048528877881 2.2450141600045193 2.743815799521648 +4.309486493887659 1.8739812466435528 2.624644775539522 2.890284473219213 2.4499490317835053 +1.5806824615653583 1.287158319537642 2.145539395126337 2.03703738137306 0.31293626977648864 +4.193590099526597 1.344004727943703 4.366494058044207 2.027976678545652 3.686299000916232 +2.638389045874726 3.868685038358832 4.391685448186342 2.4998322266344934 2.2567092947516656 +4.299328294405841 1.3170592375026922 2.877990948481471 2.138562973631889 3.072569357679685 +4.543699326059842 3.4740519029694066 4.516128450646313 1.2167455008957746 3.4684396288285853 +1.855730184587134 2.2643471652125884 3.2449261672882925 2.4507209432390553 0.8931571948781256 +4.665697081930829 1.9947228914893689 2.809557716533773 3.8561196316052424 2.868692205183832 +1.5646089780279038 2.3611465820817625 2.190380265767403 1.2887787835197164 1.2030616723439773 +4.694919205156204 1.987305079558142 2.991367824540598 1.3179573564530789 3.1829980910837894 +1.9755353860934695 4.870909948754747 1.0164116367334355 1.8085430503996593 3.001777146062451 +4.646340135556041 4.021078483430506 3.9402440679262245 1.8910218812612065 2.1424900709078942 +1.09314897103132 2.437958238050863 3.4476638274564304 3.5139067482426403 1.346439782989172 +4.953026981726869 1.5833972835273196 4.791081215563764 1.6117349167623263 4.632779639772519 +2.692589922217994 4.146946499681276 1.182764106653012 1.0198836049287503 1.4634490466882195 +1.7598517483443628 2.0857075503346634 4.881371421696084 3.8640673011564184 1.068217991496925 +4.839224626253243 1.5419044528844124 1.3742534969133486 3.243605661468553 3.790355898966782 +4.668399528462602 2.2146970428764585 4.27775631532861 2.492603299504226 3.0343742646019307 +4.862623609980996 3.807304912342145 1.5976740044640443 1.5055868499995526 1.0593288429961334 +4.492028566591373 1.1165564240829626 1.619074734773779 4.261444191212215 4.286715354344055 +2.888907782009733 4.50051703893209 1.6037166691000966 4.633136195786166 3.4314234751287525 +4.405464845519348 4.961691957862476 3.0989252101813323 2.9527140934777916 0.5751228487490917 +1.9769806611101677 4.275791569224997 1.9817485278994451 1.1693167382780438 2.43815032433506 +4.519114651190264 4.223094981799491 4.424646500834308 2.8057749867783155 1.6457134087343899 +4.997864943869063 1.6500042901012022 3.215200763452652 1.9789730374189847 3.568813520998448 +1.4390596528545663 1.5212872381346436 1.3897285154076848 1.446060163543156 0.09967261591154779 +3.838195808616668 4.025479652181298 1.141076073428366 2.0438516187995073 0.9219972469484399 +3.3035918767478374 1.694930469885187 1.6428934045701231 1.533204179996642 1.6123967402338835 +2.2588655440927554 1.9652294099895942 4.318008098754303 2.669049923308413 1.6748985771147127 +4.33687343612976 1.7396461674289547 4.481947363694442 4.132341737792461 2.6206513653947483 +4.352469445308005 1.2757046192220032 3.767642290866197 1.5047669730518614 3.8193044522548023 +1.5107629549910682 3.4170134756478032 2.713187301469635 4.954772695383486 2.942532264175193 +4.212311035848929 4.867187657606911 4.293569377733318 1.176949251286207 3.1846796388805503 +2.7638872373683276 3.841214052268877 4.3105412313386235 1.243260920688976 3.2509754797910677 +1.9799747270169927 4.395468763116058 1.2727295029106993 2.312257538835837 2.629682485758409 +4.683613244180153 2.5191868116505436 2.7170789828689585 2.6630609655277575 2.165100396755385 +2.069156659515533 2.265514463894273 3.0660653667664675 4.749502528057951 1.6948501595591179 +4.445133453731348 2.5079035381435375 1.3291293471875552 1.580429881234823 1.9534614673089399 +4.987233567611664 3.89770384988067 2.299248210193788 2.3249342048237778 1.0898324532418326 +1.9276462571118254 1.6295528737320049 1.4627045523071889 3.879787848314066 2.4353955171697055 +4.0839055913802955 3.825927769928447 1.778992559532993 3.4582198131723016 1.6989281108175405 +2.5673347960999724 1.0141032933041347 3.4844818418503407 1.7800816814480909 2.305972247893853 +1.987988441360025 1.7911324255687755 2.1244579721956613 1.6602438935739445 0.5042291163189747 +1.0911105765877833 4.609394888456776 2.012650029045441 2.804833441027883 3.6063664618787166 +2.7005080048745915 1.1147761961361242 4.091451225569825 4.709486558483826 1.7019145225231176 +1.215307605488393 3.6388364138226375 1.0352049962612173 2.2110060431418126 2.6936963426992855 +3.2327548039503986 1.2001078784219241 1.7226875443582261 2.6764676749331984 2.2452950944898022 +1.9616118305699528 3.4177291270314853 1.3762656918753984 1.6644021197528427 1.484351771691743 +1.6017048740623303 3.5702474790189287 1.4806224589894033 2.5233642809944348 2.227660318560189 +1.7143032525575546 3.502451084507727 4.181243481418248 2.723365964321644 2.3071366504314086 +3.37421595419101 2.6945193673353436 4.750455440310768 4.461095021809115 0.7387265407298527 +3.884579624846621 4.037027435860704 2.1439012583723565 2.1304355783312374 0.15304136572167462 +4.1209982549792095 4.950717831546893 2.371415928508664 2.581036890127018 0.855789415270754 +1.724194849922029 2.4422654642348496 1.2327714621603252 4.058238422123626 2.9152853975183715 +2.562009359186621 1.2355318024997723 3.898889455858812 2.706789940429356 1.7834359991547375 +2.9904683302850033 3.7248631330936885 2.751382765722318 1.629259083675084 1.3410806404551703 +1.0850701913005798 1.0620496206979504 4.90863426645672 1.4705003555847873 3.4382109789479762 +2.5495475623156914 4.4359906303416015 4.0369907505548825 4.032018934204522 1.8864496197515666 +3.303180822877396 3.0254623813299646 1.8682396594483817 2.405715134336275 0.6049854699755195 +3.0157621902347005 1.7977946604602288 3.7397722242598372 2.8734850241306993 1.4946231687928933 +3.441311762690051 4.545242183932245 3.887305147181159 4.30279753637626 1.179532237975301 +3.2180684986994144 3.575250886727431 2.4317944337602233 2.5000200056747497 0.36363991389898453 +3.58430669921924 2.7197258201329473 3.4758690628280853 2.3754793149664164 1.3994133391106054 +2.554328561947466 4.286953609215843 3.265514977714756 4.40000768772185 2.0710053750487916 +3.269610482814189 1.8899353832715486 2.811605007554503 3.140519718773762 1.418339968961759 +2.435527435126122 4.179802214348769 1.1333058457526461 4.240348518981913 3.563173961329966 +3.642141955281774 2.8280827608833596 3.442675045596772 4.220269060291786 1.1257641065845478 +3.8257206822467174 3.4959397242748187 4.8048008842136305 1.066872232967862 3.7524480119043453 +4.531914591879028 1.0511478749341672 4.358002294685969 1.713399763962843 4.37145965134053 +3.841120294119334 2.2254501734066237 1.8387356180357157 3.109893612718007 2.055780286511311 +3.0435975166874547 2.0437113953313366 3.4521948055160956 4.234062628405227 1.2692870235490366 +4.332040925723886 3.725638907748925 3.998107217059883 1.7430517311837086 2.3351656583172713 +3.9915165838940374 2.8928811337257567 2.1511105682977334 3.9985838946096646 2.1494551737127554 +1.1315113512416946 4.9996396370597065 1.8193817643801125 1.6376737565628159 3.8723938637037327 +2.3206545592770933 1.630610941599806 4.223502294988632 2.096481486222589 2.236152435595773 +1.1427278215177288 3.13837647930933 1.2195244328125683 3.487567388363907 3.0210316803323116 +3.92075138288957 1.5264695453631445 2.4182674931557915 2.9098957483784815 2.4442348207245193 +4.639586685708126 3.6116216686434757 1.1788961930338804 2.0655566268072434 1.3575267220677079 +3.3894249811897894 1.7404091989531034 4.167551302163221 3.5149573325197614 1.7734519839230716 +4.57590792108192 4.560972849416275 3.817098918281995 2.2732813536394993 1.5438898047672782 +4.264236606665161 4.5017641316886206 1.283168493394319 1.4051426388361192 0.2670150132483707 +3.242310915791483 2.653036649742214 3.5813799681375413 4.469370255369165 1.0657255326047166 +3.4497779737032315 2.6794755354291753 3.0645446507097462 4.6021741608949736 1.719787881397999 +4.841524623704247 3.8580778036164376 3.8534813944947834 4.497243957449347 1.1754139208817684 +4.439902720039246 1.4949981429214572 1.3442774232377679 4.238751223999193 4.129218031495018 +2.9365450777209294 2.7601661536268303 4.521710284981323 1.2512348653708054 3.2752280829189866 +4.521611985973292 1.3859546025230447 2.1449395718494064 3.5353686084061406 3.430107889277849 +4.728878980228069 1.0305728514747345 3.4867809898938527 3.0629933049680895 3.7225077869454104 +1.0075060443536712 4.337463149777873 1.7308009479972508 1.4717205596165752 3.3400205046688876 +4.961342384693214 1.525132158359987 2.504130499301077 2.0502352726059296 3.466058510235176 +1.4357094529641632 1.7840024721921615 4.1252779785271 2.5139485127160093 1.6485419844923603 +3.130944873785091 2.8089094400180827 1.7547783098002565 1.0547640943641103 0.7705366457308753 +3.8034617547342155 1.8053918775269775 1.9778087587594504 1.4564178881046197 2.064977402831602 +4.164381373659243 3.2875340556717334 3.3666951469213773 4.2875071619059835 1.2715171984687816 +4.797546929005923 4.024957965300009 4.237919948510324 2.1400942523078017 2.235568464281015 +2.9030178137955676 4.034530119281236 4.1135794031016975 2.9183429454544547 1.6458767533307654 +4.7038924335473284 3.503635340347751 3.8936150016909856 1.7607811160296065 2.4473654148086093 +4.527566023009683 2.555343094010148 1.709129478538681 4.827727529999246 3.689893912871363 +4.956590257089403 4.710251090467587 4.329345771998519 4.25733014711967 0.2566500248171083 +2.7247478473612685 1.285133260437655 4.02442815744642 1.7673247502365448 2.677126435139303 +2.9343685304167546 3.355980628642125 3.9582235279287885 2.560114506793437 1.4602964070181268 +2.504248247281711 3.843330720826678 3.098995329513404 4.143802479275818 1.6984592580188569 +2.821834480768212 2.1384355985248202 1.2903693355929424 2.505589628199787 1.3942002696223315 +1.3715710931843734 1.9215790104328052 2.822650843984219 1.7952099322140063 1.1653941548742912 +3.7359218049982243 1.9054656416156668 1.4448798968954266 1.8251185752021324 1.8695323529015546 +1.0730958180125052 3.101431315403428 3.6624099795584404 3.2262935307883 2.0746909280333687 +1.4729115034518117 1.7415080706699237 1.7491792425284634 4.952753131992744 3.2148141130053935 +1.9956016121483326 4.438916181592598 4.475774865506999 1.2406032280696837 4.054148691024721 +4.101212796920976 3.7348210671406603 3.367240699186873 4.805609537191182 1.4843004459317786 +4.397600795268113 2.3272554436852784 3.824299052889192 4.406928143377383 2.1507641739399856 +4.597249287243763 4.8555448112860855 4.875537819547693 3.332037688914187 1.5649630126638612 +1.603097780994807 3.3279602525936527 1.1502484498209768 2.0749485415538333 1.9570949914556606 +4.990958698054969 4.522647457678724 2.815544163825032 4.433060033656487 1.6839456662907344 +1.4670598182019154 3.2638948051464 1.7039313014862265 1.3144481903221412 1.8385627713488164 +1.9187947575311042 2.9876145896190422 3.534598682926709 1.627682584897748 2.1860248942741904 +2.603163125986531 2.007483843365736 3.5182644218408146 2.654030709295139 1.0496350402135524 +4.51656965500494 2.553578710320665 3.5350053983740977 3.107901304428546 2.0089179565073114 +4.493985864527893 2.9975409150041243 1.3799712734866127 2.7463094976003646 2.026382893144708 +2.6308896725073234 4.054102223635365 2.3622282398295864 4.725578391996867 2.7587964599508776 +2.988815277713232 2.581324735708927 1.3841766020395214 2.440004531237266 1.1317336956620845 +3.7912235404919357 2.4088485776654585 1.3166931164237052 1.7113569832502233 1.437609163030051 +3.4512250224307515 1.0310965975131534 3.1081313944683293 4.872589938958425 2.9950518440117597 +3.8254746422260975 1.9366813921755988 3.833818979989603 3.2305857365731265 1.9827834696201923 +4.304228979953347 1.3533628334995127 2.1107925179630778 3.312782793242879 3.1862817885671246 +4.114163031511272 2.8075884052697564 2.1524565897679926 2.4191869896385767 1.3335225382997014 +1.93608516175411 1.506598409542006 2.959276060780493 2.59052718569504 0.5660694331992219 +3.898329731591252 4.06885967001045 4.496226287520358 4.866779501898469 0.4079094808694762 +3.237064703852032 1.306580896858919 4.248694884897427 3.007375656171323 2.295134234999729 +4.536495131709664 1.266505308745772 2.7158545587600194 2.7796101045924386 3.2706112902501596 +1.6471498946903833 1.3622360056312828 1.3813850994422645 2.398545933997797 1.0563106018271748 +1.5044623640814363 2.2877716689285577 4.267308833897804 4.600929606176896 0.8513966682787631 +3.5916078233882205 3.939821348147377 2.3840218876469907 1.0187912405595636 1.4089383870744492 +2.5666041073515617 1.537272034343585 4.278867494673849 3.1062758460738484 1.5602870540030018 +2.3267159796584833 1.8971527463771487 4.444889647216675 1.5380820048790786 2.9383762932850126 +4.308535750154146 2.273695279898928 3.489675811149231 1.44904878606313 2.8817936072696506 +4.6784909488354565 1.3850478566295763 1.7986944236455864 1.3256675953165042 3.3272393634840434 +2.4717712819909736 2.697526889123579 2.1091448594973046 3.940595614136076 1.845312293574921 +3.7532246057916674 4.630018716570287 1.9191449305970223 2.108374623390498 0.8969814877302563 +4.267899109548361 2.0737097739168284 2.0384486058582634 4.248458839331057 3.1142594742014706 +3.56217306130129 1.8640081852565435 3.1899902774783957 3.5766413367754097 1.7416265351353521 +3.4612807417160822 4.723661443557902 1.6613230850782026 1.392942918449502 1.2905940299808827 +3.1650511025357733 2.411186780370698 3.3883615018705977 4.380279647187464 1.2458784143094626 +4.144863795940752 3.1001855888146848 1.0819495262205812 4.246958464547477 3.3329617663773585 +1.4970627518423654 2.805532379940241 4.631861968611361 4.766079370718668 1.3153353483743329 +1.0612625445529829 3.7396412124936815 3.627455115874579 4.516500572114701 2.8220762059414692 +4.247881184663006 3.7572074943168356 1.93339940855781 4.292970895914865 2.410049434004688 +1.0959916314056213 4.4001244312470655 4.53840613728361 3.038573862341952 3.6286072275660715 +2.9746459716920106 3.610200418284936 4.915637551916125 1.5071812192625065 3.467204064688231 +3.521003224522328 1.2737292334715642 3.6428214114442246 3.7262055777264704 2.2488204263657456 +3.672668300280581 1.884192642602906 3.3764117776352878 1.214667015009645 2.805670258039064 +4.63607998898423 1.7762965233071686 2.9302416221681207 1.4924965910422334 3.200854924092481 +2.342502474779513 2.2570372253587263 4.853796000985065 3.096715500054495 1.7591578086143898 +2.83199636991981 1.222717065036707 3.6376422889411835 2.972858786490583 1.7411826401200798 +1.1655646085606812 2.2236064148068446 4.391699139251849 3.777830784392091 1.2232280330596048 +4.707522266779632 1.1651888300683688 2.0070141449443883 2.6720393641164164 3.6042176292473562 +1.5566732996209036 2.237457580837161 3.13623359348278 4.26468581626591 1.3179042668780319 +4.46898588117552 3.974869200155496 3.8251681746493444 3.034583208495664 0.9322960276491905 +1.5141314262334524 2.9602344762930466 4.098381911139773 4.3557801780890735 1.468832154883656 +3.058559536628934 4.27768123696496 4.356474638423533 1.3628653651956681 3.2323295316205103 +3.2089628153856244 2.294298660545264 4.8596633539505865 4.73153229130635 0.9235951956155747 +2.1342276514101415 3.8031567907704593 4.2274010491595995 2.138923447994733 2.673399177596441 +4.211664704625811 2.132641309338181 3.8626649167672915 3.3760244785133646 2.1352183013212676 +1.8335162157946212 4.648790506896868 1.392680452015238 2.9278672365400147 3.2066443203948856 +1.6005758593838588 1.7872475746069432 2.4280745107445147 3.822524774260535 1.406889429445053 +3.268923303245745 1.5472516735825348 2.7107565953891797 4.257803323889679 2.314628864537741 +1.6759986902259612 3.9887460832095933 3.021343149356674 4.88972504237481 2.9731551257730597 +4.072237282228413 1.9742725740516587 3.506144700944828 4.4528085328341955 2.301657734625771 +1.0092432620040426 2.182895324904269 2.647906394326458 3.681669921889786 1.5640096533174381 +3.391311899095788 4.571203216230975 1.3068238511384291 3.5933920086328057 2.573040508643079 +4.109300250982685 3.4689204632531907 1.9407441716520966 2.2478680022540054 0.7102192054964873 +2.6188913997140455 2.2774614194191716 4.787573267930577 2.9534045913609406 1.8656765972572447 +3.14154123519516 3.8037079025292746 3.491175064829174 4.765662787052882 1.436239412294254 +3.9836419964804852 3.5122553660459435 3.745036941898225 1.4593913721510794 2.3337482781690886 +1.8221274387613517 1.5420724568062987 1.9300340735123638 2.4321955918700664 0.5749756372553175 +2.8729420258854166 3.1834871657306785 2.4648108735906074 3.4091436324227633 0.9940838210558827 +2.264136899555704 2.9799253540815855 4.350199698669683 2.9528036158334006 1.570053796517411 +3.817431027524806 3.4930614748992537 3.511316243282195 2.749380996672505 0.828106832900605 +2.8702451286655752 3.351520420796369 1.3612367158313439 3.1460285817310227 1.8485421043074022 +2.7302018011253173 2.589644205944692 3.2530700724095363 1.6194179101668338 1.6396877217211874 +4.0295940207895935 2.0426715583853796 1.5602685483352396 3.6114323529300676 2.8557194933827716 +3.2790495034387313 2.1119576521218484 2.3529833772330573 1.0692027849061945 1.734991642240786 +3.2818709568689335 4.602199982070941 2.5666863688878605 3.3398705965487534 1.5300596670373525 +4.0950399745524475 2.7552249777233127 1.795031625516713 4.955027469740198 3.4322992237329704 +1.4885986250705079 1.9872964191555629 1.4370457529530998 2.1270539082404376 0.8513581762033737 +4.510340472624693 1.0083079523168483 2.8446261150451515 1.5394680207797302 3.7373345347078932 +3.866702626814217 3.990965365762783 4.643332728092567 2.5665155187004065 2.080531410365736 +1.4743975491000523 2.74460421438142 2.421469106398663 2.998679304810803 1.395204854376659 +1.0196041134459493 3.590264580956197 2.9896093399268375 4.643920394781713 3.056965865925731 +3.633865651167964 3.6485924401557592 4.562813923968058 3.833725520820128 0.7292371205024393 +4.609841962335342 4.276633018588948 1.8432636213346765 2.5502850018343275 0.7816056759493373 +3.581190933376487 4.409209608134281 4.094624699302944 4.163304356714172 0.8308620951095178 +1.2431702198375763 4.097279563538249 4.3344729649831475 1.886605943831377 3.760052273445401 +4.460988673043194 3.795251422000884 3.5143499989946876 2.169376549519316 1.500719716409114 +2.349483713410091 4.530037257733563 3.1910756529605235 1.4231397950125149 2.807206967339604 +3.8444309863653086 2.6060515916412146 3.4580199793415267 3.263084300960364 1.2536281123136708 +3.843134680595572 4.819845098009356 3.587476539310309 2.2274699948421715 1.6743897516649977 +2.216638572796687 2.1685185906811415 4.081152416340764 1.8527670529059486 2.228904856796116 +4.818445024417125 4.268228616579264 2.6874794995053684 1.8687420163037611 0.9864426804702348 +1.3217257070149997 4.061706175966494 3.599936727694282 3.1277713444966504 2.780365644897415 +2.0049422779254975 3.5297769808237485 3.9144903529222033 4.195012506005046 1.550423667754408 +4.298187330494592 4.282427252472463 4.739859486500241 2.0088117590955914 2.7310932004275075 +4.1991397962570325 1.997929655109362 3.2295674844887055 2.592443231257732 2.291561345359638 +2.942727656592468 2.69307219244455 3.601249897594191 3.322586793511596 0.37414031639995676 +1.2532426589850454 3.305610146327426 1.4205070997633777 1.3957110147430272 2.052517271287239 +4.260171568354563 3.847824343232784 4.738191764191091 3.8815830610941027 0.9506885422088225 +4.817653759289167 4.268161315219212 4.887310839975472 4.997400374895338 0.5604120375124404 +1.4290991053398265 3.9958826134547345 1.143627508755689 4.935502910518525 4.578940558690923 +1.011944369115525 2.4133739482544825 2.2008937932425483 4.70473394400038 2.8693588771418255 +2.8632273058242177 2.5464963543676946 4.514876892860128 2.177774186400808 2.358467204806977 +4.734059526796251 4.949257386558812 3.7500187592380314 4.0446793556097695 0.3648766721791557 +3.744577949024362 2.650052815065961 2.590252722328023 1.0404227578506848 1.8973555775495754 +2.347378762613267 2.3580087588611396 3.923673532222955 4.023282150960213 0.10017421697709573 +3.041893305355262 4.597494937967845 2.3734341330550426 2.04860594327736 1.5891537975479841 +1.331115126768256 2.835968059926368 4.424468323817216 3.0828092578284583 2.0160931029554163 +1.9019832308409321 1.672549400284141 1.4855577516153513 4.537189324042911 3.060244293588449 +2.070984402793387 3.448085938011747 4.0088089760766445 3.800020331419757 1.3928393074717642 +2.763527635140696 2.8299664036377536 3.2222406837349187 1.7149865054383961 1.508717756226038 +1.1948015523068576 3.7187806252610716 2.1245612999673478 1.9604127148315933 2.529311194517765 +2.7866216943008966 3.6541091994109984 4.495597313252524 4.633540901133566 0.8783865919739688 +2.2858219245825318 2.633059875418874 4.915743303229652 3.3267409378647637 1.6265001419109166 +2.6702692905233705 4.663305887125343 3.5264056387926015 3.453970619838959 1.9943524531450274 +3.212355382757774 4.656151618811773 1.4823064338727612 1.5306913977565553 1.4446067547861356 +1.3057613360049483 3.764544768624521 4.835399321592971 4.0332779487901265 2.586312948046235 +1.242030473326619 4.574636365095865 2.7925786105081323 1.9349767971684813 3.4411833575237667 +4.970314358573645 3.460215025973474 1.6515777450839062 3.7772537103217454 2.6074697128651945 +4.055738486873388 1.7367973596947381 3.4582849161553564 2.9314221126782605 2.378039605433082 +3.935378265606403 2.506766929837797 2.702243522764434 4.931297748013714 2.647567390603727 +4.202165401183082 2.604375172281065 2.211468665940155 2.0124682879873683 1.6101350148357474 +1.3864910579533833 1.1313037915749784 4.415049383542401 2.961623306897802 1.4756584635992824 +1.976451008509474 3.159501606218698 4.580435154774482 2.283103338483747 2.5840553768992334 +2.4936190479308333 3.6129768802073983 1.6239230707717827 1.7206811794523484 1.1235319702947177 +3.5114014823227144 1.4904933444761492 2.52177453166774 4.99515644548817 3.1940081078839615 +4.707664348698433 4.721458805035082 2.1708120017987405 4.277898886505041 2.1071320382754677 +2.7732662516409925 2.735151925779759 4.596482541798098 1.817848200402536 2.7788957348232057 +1.0940832658812676 4.819121075609636 2.00932791859689 3.828262568639596 4.1454107088480265 +3.3088460030115003 3.774763026556416 2.4857851827530615 2.968863286591023 0.6711505995204309 +4.103699517266188 1.6050077494000696 2.702133357610284 1.3457331459572117 2.843111338828363 +4.035399154476101 2.4472745402189844 4.976329712252497 4.31208665927128 1.7214408569111874 +4.556962563225753 2.2654787294152605 2.091638420525285 4.11273598321849 3.055443260566173 +4.0888072565511475 4.793680388128953 4.066059273689913 3.8252002258877154 0.7448887249304312 +3.1363072910979124 2.653716708185598 3.905289331697984 4.609383467573556 0.8536054257618189 +3.3228512852624186 2.5441190133655915 1.27631550466393 4.337116186514093 3.1583104289015065 +4.085875179565299 2.1020225764261364 3.120748636162585 4.459432673610022 2.3932710049425245 +3.2167688333188864 3.378423981781205 1.1190783650910534 1.5911382704212 0.49897188422262956 +3.231169876101133 1.1271473786691777 1.022867282835008 3.2501320263617295 3.0639221444835956 +1.9603870195234245 4.322754623857155 2.9470023156605425 2.532603634032428 2.398438443100137 +1.130322632531061 4.115234672920334 1.2758461891108364 4.195536681380935 4.175439193607454 +3.3007968112201436 3.396310275432733 1.8743925039982314 1.33806393102841 0.5447670695166281 +3.2567831270202223 1.1674833239556581 2.498532012329693 2.350448406949693 2.094541100400746 +2.338686097914383 1.9312186841794556 3.7934361002606276 2.930498125882073 0.9543016508842441 +3.6627829932081983 4.782453926444775 4.676616382100471 3.534824095092312 1.5991724814435089 +2.8824908811395193 4.342398721620533 4.096384646146853 1.468656554735794 3.0060415541187626 +2.696085371321147 4.141945356767781 1.0783054241338443 4.45615851646031 3.6742894021640717 +1.0178831779986237 4.934977905033286 3.752484337440196 3.1928963439929667 3.9568636346193498 +2.812243926480214 3.52286076785559 3.132018182021049 4.7604454370291815 1.7767249703034058 +4.9004570756010715 2.8638267154578902 4.222089016628528 1.2446271160221305 3.6073733648486686 +2.9776520776625586 1.7994618538499982 1.6132907868791997 4.3512224872035965 2.980671434279319 +3.4532117567571494 1.7629949998276553 2.6277191457440963 2.714774209762295 1.6924571691999977 +3.486076239460579 3.617650398941837 4.9563099204897645 4.040216413909023 0.9254939612134696 +1.921258923733062 2.1928130007970585 2.4567954833051675 4.052263100721188 1.6184123501114391 +2.555258975099349 1.9796400616125962 3.040168140076202 1.2518218381785382 1.8787015806334757 +4.0058324314651035 2.9547960976050107 4.674192845157318 1.4531401755816695 3.388193866247101 +2.354666933520666 4.226022302873514 3.0619567912058074 3.944550230512423 2.069043764040001 +4.432195580227656 2.321530026343615 3.5214486851725013 2.5436883038323748 2.326139386122641 +2.421432603495838 3.4094961830794075 2.0628116068182467 2.959967627197042 1.3346005253263669 +1.0172384844617213 4.52439454405304 3.3095493889874725 2.546511028829881 3.5892020234865707 +3.7070902099000915 3.6236240724231785 3.961417019892107 2.4970700624960878 1.4667237666787478 +1.4627047707931191 2.8574671177888877 3.631693464162479 4.231486889269625 1.5182602403405376 +4.5826525338724 2.446702384725345 2.7279364782034596 2.852325587164989 2.1395690430714245 +4.311222080141816 1.8805227769292703 3.366518035839462 4.267862873296458 2.592435460845329 +2.7766361597068574 1.5481582550596045 4.747650855569017 3.447056375824843 1.7890511348051297 +1.9683855000437869 2.3207470712389218 1.5508283670736973 2.7106675711639547 1.2121821877093502 +1.1650693581722487 3.968451140366032 3.5140551208531963 2.3091475699939013 3.051352425213079 +1.152214734878609 1.224498675141771 4.570099484974432 3.6563514656766043 0.9166026460744436 +1.8680200387874035 1.8454186290393446 3.508372688972457 3.438698034031091 0.07324876288237281 +2.64507974793554 3.1372029406519064 2.340633993658241 3.354189140576693 1.1267117078712878 +2.6958162332774744 3.352243875517951 2.5922575626702846 2.2664912109214352 0.7328171432418501 +1.8156952318782218 4.891771118204678 3.0868402755609345 4.210153555046678 3.274763439136957 +2.09947832942624 3.1116589748193455 2.365534273112584 4.613581667456778 2.465406000261645 +1.5404236208426725 1.6823017117444956 2.91144194352627 4.538674353419495 1.6334058615313152 +4.68367973630234 1.71284406141609 2.2795178997995897 4.529503197637108 3.726700745654502 +4.517528494251186 4.135994222909575 3.934215670416889 3.912315907208967 0.3821622689862736 +4.780119238497576 2.6715827559023757 1.7501544197640224 3.3022282120926576 2.6181785949908636 +2.436907794342602 3.116013285510074 2.665947593016119 1.1921831235162048 1.6227032937953187 +4.481117017412303 2.422228541400919 4.932595751553113 4.420872016753948 2.1215284436955555 +1.1437678028508529 4.833804192618661 4.740174066019998 1.8938819552703374 4.660230395326652 +3.3154773697011004 3.1981313921757857 1.2754473205997443 3.162366001674962 1.8905639866008266 +1.4055552057136476 2.116133267603357 4.7454062649604865 1.5447090287547942 3.2786253186196337 +3.589811806602369 3.7198491222673127 2.0037726095685815 1.2052997831012773 0.8089923102675513 +4.144840887935986 2.2623289521934833 4.3414570670564 1.4061652124065205 3.487088966485787 +1.37722650255759 4.664798522207434 4.652907737202563 4.934046601944657 3.2995710093363693 +3.424719358917068 3.1761838095867834 2.107123383045446 3.9669207841263914 1.8763305392036727 +4.663766926146771 1.2664415109161853 1.208937014770017 4.470332952951972 4.7094079715566615 +1.266964840919345 2.197087409213175 4.246393970358451 2.7124282135246474 1.7939283528581107 +4.518456008515794 4.8875030695611175 2.054742838452922 4.947506549670907 2.9162094613051788 +3.0662162667612596 3.2544604618569606 3.243577531812167 1.8898230577223387 1.366779811493225 +2.7725258504237615 2.769038546567764 3.544363953159191 4.132741005839334 0.5883873871938076 +2.3933310180763887 2.5574972108310114 2.9676096531154577 2.1048665493039884 0.8782233212673161 +2.134763300520262 4.458266368214095 4.638795280680032 4.841223725642298 2.33230439285109 +1.5507020898863622 4.882505235194536 1.2075084943559369 2.6221543704878756 3.6196871624413265 +4.557843499121059 1.7494562364872546 1.1690477216815993 3.6435171545518443 3.742998529405667 +3.4709963805170334 2.9200604961051755 3.0623300817119334 3.230324463047867 0.5759795663850578 +4.288707914243996 3.0883332786301256 3.323996562299751 3.0478692198480446 1.2317246344352186 +2.4368441870526043 1.7000024988024696 2.179269795853527 3.1806499442215017 1.2432609843024816 +4.567793749783208 4.692949350567745 3.5809807165857532 3.8165698242143518 0.2667698484480167 +4.813158462166956 3.372698643264916 2.75034732410793 4.802059109407081 2.5068796819565806 +3.9859270126752255 4.303536310803134 1.5311921304244618 4.288097063529363 2.7751397219663447 +1.4215049866364429 4.949930721447235 2.9048447579905767 4.341461569732049 3.8096792555086982 +2.522607832475837 2.635692099648499 2.9444474957165236 2.2256039598908752 0.7276840526494299 +3.8350195371786193 3.571953640970742 3.415809625904224 3.8520808973160205 0.5094470414154146 +4.593508245781239 3.9543109223719393 3.9055551208526844 3.7164860508981277 0.6665735754341705 +4.092720657194362 3.6474755036094404 4.849682165471704 3.0820721600279173 1.8228242861383666 +3.4465241651952594 4.743053776364453 2.7711433337637703 4.121352472005816 1.8719117900240034 +2.733600249152142 1.6924536356432505 3.7219092019642943 2.1213913627159156 1.9093568615042429 +4.459625834069568 2.4399656564143952 2.1977781193364265 1.5484725016807088 2.121467656676716 +2.9696417210861688 1.7818717431985092 2.488958269370632 2.0752271947067817 1.257764255539867 +3.954147585564942 3.021595265379075 3.4738248194076107 3.9330069271816255 1.0394719996151078 +2.0241236707966723 2.2595373693213063 2.1745656479621944 1.5774343074613104 0.6418609251710451 +3.6210478307890774 3.363575241379752 3.770480849213048 2.6523165327967235 1.1474247569247968 +2.2261443988746374 2.061455517945103 3.805700289265038 3.5471672304074597 0.3065318417784333 +4.342571608144587 1.0958934963799276 1.2014139479617034 4.747428693989667 4.807820643541052 +1.3322351210947248 4.781667319439929 1.2608325289623612 4.307990299749575 4.60258112052895 +4.595887985219774 1.317071912703914 1.2644140706961662 2.844531810961923 3.6396987389742694 +3.836576446487556 4.202435296943504 3.349124498429888 2.841269931792338 0.6259144984033852 +4.913957891458642 3.18516008761823 4.900587879028333 3.174963635292133 2.4426462857183315 +1.3803208010205492 1.6428094236701156 1.8230518204933857 4.364119051136631 2.5545886063453342 +4.066246545344717 3.0066007551584883 4.484606931728301 1.0194763163565854 3.623531341418998 +3.785546163718171 1.3266381942687948 3.9793551276416497 4.116715873978022 2.4627416382673477 +1.271668870378841 1.4001082629409933 3.3418986976984937 4.053861117787655 0.7234550194593646 +1.0138591383611226 2.012811508646955 3.472701441118107 3.5572500391797117 1.0025239665633263 +2.5072951745970595 2.6254412659838877 4.56676967410082 1.4048015377527348 3.164174614996867 +1.1327583675753634 3.201740863957592 3.091900049192424 3.4312387719109427 2.0966257031411866 +2.827126986610581 1.295789254170118 1.450001819196335 1.351080354144702 1.5345294741528626 +4.180234444369402 3.0140024257333304 4.450059003300749 3.49544751192538 1.5071098900736715 +2.622297163925531 3.5894746679612597 3.5874607089565935 1.0640580804299766 2.702405067706879 +4.262466361484067 3.2800120016200784 1.3838071680426065 2.5000901709931136 1.4870454975863927 +1.1023911115656295 3.7491275042544245 3.2880608209513884 1.545153144214268 3.169059908239742 +2.2616261532669943 4.035967701779494 1.1568727870224231 1.0950412553497988 1.7754185616599594 +2.450282488004203 2.129906812310164 2.3917337885986867 1.3447205339304626 1.0949325682558535 +4.770685684421233 1.5499666076502652 2.6448850441926095 4.005521822584659 3.496335769657933 +4.297933887023294 2.6815697150339397 3.9240913017308987 3.1743904122125968 1.781764451389511 +4.525447752232324 3.9295678097500613 1.9648303061607781 2.8831635944947105 1.0947186553242245 +3.240132879253655 2.494721439586603 2.8721168828810217 3.784250377072413 1.177975265280347 +3.4875088848621316 2.131565652773779 1.55782553376548 1.0023906992163396 1.4652951593712573 +4.0183958665796595 3.022129878525539 1.9143619429796237 2.0413401558762136 1.0043253384754687 +3.0946745618669746 1.7838429966144944 4.199043443875452 4.901774255419056 1.4873163704992292 +3.2665279409300085 1.029385315664996 3.054440068039029 3.876662721587386 2.3834548910742437 +4.591405382369116 1.9018814472991483 2.1266347525281617 4.371382292182507 3.5032028936529613 +3.884886887813788 3.1844333525393327 3.7582575544259726 2.469152368657833 1.4671153107553587 +3.906042849251871 4.697806263492772 3.0668711514800737 2.197645869368094 1.1757728926935933 +3.259937587455008 2.546417448489743 4.453540006434454 4.142664760658413 0.7783022595016188 +4.852579182169373 4.681274211916758 1.1815886956308042 3.9009783559642353 2.7247799025905968 +2.6597613216058815 1.9786551089948636 1.6915467774238944 2.7939293514540635 1.2958213659230606 +2.412336680657456 4.603257864153899 1.351348598318793 3.0196405536412088 2.753785336675127 +3.367018933105918 2.840800400292628 2.0177795870989117 2.125199918748631 0.5370708258022466 +1.2605398952038795 1.711354165465694 2.2758897399594944 2.1099430431832387 0.48038714849862807 +4.201604536760739 1.0626703240184545 1.395535196256649 4.309960200513362 4.283314265537934 +3.455470561028835 1.2770023848218028 4.030010941595718 1.0845321793276512 3.6635459235171344 +4.437961764922045 4.626023273070664 3.2342997768187143 3.839299214918282 0.6335546155998908 +1.7115515500723841 4.935448725066513 1.1319305653698137 1.7308795027738761 3.279062796677212 +4.1261303210551254 1.5068506189454052 2.216729802990079 4.782701405164222 3.666720117632122 +3.5208494471333736 3.613013234025702 2.1306272597142386 4.26956242961902 2.1409198547983834 +3.2682613688738376 2.521389333381901 1.0252625751953928 1.8803042685800029 1.1353035430341485 +2.219198541264203 4.709281481818325 4.05285817580037 4.7530965473986715 2.586667127385606 +4.686140624366581 4.918814635771844 2.119622033827685 3.3173680475125127 1.2201363484796737 +3.342669443684598 4.388884751085314 1.7916869383379668 2.5709279848699715 1.3045240810502001 +1.2895599104840563 4.985555925125004 1.1090521722455908 3.97910283135066 4.679484728693023 +3.6581467732319513 3.113729237566451 4.149099518384142 4.736923230997245 0.8012035760344233 +2.8003692786798 1.5061863641158286 4.006074739268847 1.8737842839849805 2.4943079204548853 +1.9148211419963213 4.9399015573458005 2.134841027220016 1.767924793867309 3.047251063110606 +3.8494979658962647 3.8073664047019298 2.9318079714160143 2.322483510081574 0.6107793117232917 +3.272924994845711 2.1360071749966703 3.640841758319936 4.384405122940084 1.358480256130184 +2.096417503641303 1.2654165655109497 1.5059608205824238 3.9682755201589215 2.59876051973321 +1.2611824967325993 2.653343431568777 3.162677358087096 2.197424780373191 1.6940556682905314 +1.0762009718420864 4.726071434466954 1.9812472058305444 1.421619579495518 3.6925245394037454 +4.237636407202286 3.685654930569479 1.104405264451739 1.4641310273202928 0.6588521647661921 +1.183101489296814 4.631578673232758 4.093613504963641 3.904737574543786 3.4536457556064932 +3.121772111759463 2.5041015340416464 3.346148776178475 2.787866192684452 0.8325841612780189 +1.0053984942705791 3.1150743892202906 1.7519831099438616 4.355689947685406 3.3511224505580124 +1.437313983962755 4.346878956142607 1.5372766272779148 3.8481085334282756 3.715576997697458 +4.825905700461041 4.288572510816734 1.3536743836608474 2.744411998224101 1.490931946553703 +3.6933364541176466 4.862367895658689 2.5996234267083502 3.446278002412337 1.4434190250485222 +2.4840021560574175 3.285374322956359 1.4367433311743234 4.634956365032298 3.297084160257262 +3.655382933066953 4.00150355429223 4.006156880211144 2.6610950230886457 1.3888811626353046 +3.753788189907276 2.343089129908855 3.2281954097634036 4.236074713654427 1.7337509997379326 +1.5666496208883145 3.10326699506534 1.3645465245317832 3.1812581411986334 2.3794188476926412 +4.727606545562367 1.752651617541781 2.7550068458329378 2.169425323351578 3.0320393373479764 +4.8608232953683554 1.8320232098250124 1.3847326945005536 4.474022964773264 4.326354623951786 +2.1125760230600363 1.7133063111744509 1.9845672478354328 2.7645412342618574 0.8762281223124071 +1.0131769984288725 1.3359764644959213 3.4602905644007533 4.942793158703761 1.517238754253371 +1.6967987437160978 1.3545895818700404 2.057322415891758 2.1003451865735983 0.34490298527052987 +2.7946047645271066 4.402895131150792 2.93914403858449 1.8113290978947019 1.9643228970354283 +1.5029041801265937 4.647131780721953 3.113047393332106 3.8574842651288983 3.2311535804471196 +2.036694239621849 4.868598988571044 2.4821983914966483 3.1092699841066813 2.9005005239405643 +1.5481464885875864 1.1747852768256184 3.5495635480511285 3.3651165093281215 0.416436435175948 +4.676169162218748 4.929990919160607 2.2201318216691166 4.072318978802083 1.8694979939399115 +3.761755538086756 2.4819880729482895 1.3319407539240542 3.8936938763444053 2.8636312306331195 +3.0583523923387728 2.5357545488202273 2.7237416986453535 2.675922295491991 0.524781098524116 +3.448806400426647 3.9414337713013894 1.6487519252843104 1.6311940867429842 0.4929401629297455 +3.310369460414391 3.0483140877652564 4.737954164356994 4.524988089765214 0.33767968144575766 +3.3096711027094043 3.3564853807202835 3.7747159426556087 2.086932670613736 1.6884323942669572 +3.6561669581430554 4.676870504337467 3.1201745445641174 2.766422498146322 1.0802667446323735 +1.5649237895369965 4.604452843411107 4.896552644739049 2.221489883762609 4.049036631657923 +2.1938354296104947 4.193940636416645 4.731667921553652 3.999359851369093 2.1299520999192696 +2.8429645291296355 2.2740660695373425 2.355576334359103 2.1994172063733832 0.589941633197509 +1.5596132961821918 1.2298012529400952 4.477124945616367 1.8834365306351741 2.6145736895094736 +3.8841921857588995 4.927022024783289 1.538719132664434 2.8156244618421247 1.6486301261477727 +2.943659072474199 1.5922026984419624 3.8250891224350574 3.711285575530859 1.356239498835046 +3.5568762083993364 4.025134333458582 3.7071583968478903 1.8983853837039018 1.8684018531252808 +2.886840620313682 3.4124840276022614 3.384573060422323 1.7715392829127157 1.6965196606620452 +2.05498072450153 2.3860227678380315 3.666329966010786 1.4944782352583799 2.196936224570169 +2.362308719000769 4.090519003044595 1.5025740074755083 3.807264684916468 2.880678722898149 +4.974625317921689 2.9977291985449543 3.2910752020009877 4.1087623263679 2.139329451057556 +1.4262603616402334 3.2792441982764315 3.5022788688008433 4.864416349945868 2.299775557826267 +1.8017118847993756 3.503503947526491 3.1141836648861467 1.1876157039460264 2.570556424761375 +2.664671663162878 3.7963036012174163 1.4822779066530258 4.005751411462237 2.7655938553408657 +2.849482253789642 1.5599153143138338 2.301199400814923 4.7137016092956685 2.7355346456064993 +4.585128332075282 1.8953883366987152 1.6270177002917383 3.9459464138570906 3.55135630728968 +4.074696643438105 2.299834859261368 2.7613455953949537 1.6267582558549019 2.106519115502065 +2.0572577941408694 4.823197245041148 4.359488437068048 4.014367652429959 2.787387558635459 +2.8014036680050967 1.256859195762043 4.190976770797988 4.701667485662787 1.6267829089911452 +2.5246904304990303 1.6494670834775293 4.699175457575169 3.1339230713904027 1.7933295680461592 +4.543919415504902 2.7254987325690685 2.468641129791717 4.924725395065607 3.055978353695394 +1.0192193932959754 1.6801132911045973 4.852693096508101 4.000847508863485 1.0781565977863674 +3.842845857944005 1.0313740723355553 3.3638854328397794 2.9031078485056767 2.8489804463170914 +3.7470324684704397 2.044953820475894 1.9739977641836717 4.285597584715436 2.8706385098513234 +1.0949224509192983 2.9092904079744426 2.6679217183601884 1.0024114122694834 2.462895788149148 +4.420976280169365 1.833265077062968 2.623541417461702 3.916477128203687 2.8927378074748216 +3.604975027014681 3.4294704448269804 2.2360453752802414 4.174807399599214 1.9466895092207896 +3.5733975651271224 4.592875440593318 1.1329515380591944 1.184921204035974 1.0208016382955138 +1.800527509284445 2.269719042727567 2.4637130504050497 1.120122136208776 1.4231574894457348 +1.5410981708671314 4.398311077165188 1.9416875347465972 2.50661944371579 2.912527021966966 +2.005556738245598 1.0770809299021473 2.727951575222671 1.7131304419747084 1.3754741942929 +3.2112580306139358 4.846631981832777 4.625223875454514 4.9327446014573635 1.6640363449295346 +1.5901783259085436 4.199093343677532 3.7187028243380054 4.63923663621069 2.7665538253830193 +4.188829728829463 2.475862260472449 3.100357977292019 3.5562669623780025 1.7725999408585027 +2.8938665910148957 3.2910279557673436 2.1463534955188743 4.281068582275397 2.1713465064972786 +1.6740363468675894 3.0648531340634473 2.9565976790041684 2.925975727710678 1.3911538518247466 +1.4801955746848035 2.2622025033088002 1.9309506032684034 3.5085645792707103 1.7607954718517833 +4.8360997635159215 3.423533981653197 1.8779382510353524 4.347757773813981 2.845232954116043 +1.3977332054661367 4.908186258498462 1.3881533968650848 1.9359533139969853 3.5529375714686706 +2.253901645711969 4.052232895933954 3.8876857438451413 2.8913221661698105 2.0559026398258626 +2.2232440291496913 4.257809490638603 2.064956524801613 3.683409796592937 2.5997783771036387 +2.114588437535514 3.523919580695009 3.3556353559607546 3.948851647893117 1.5290911810919685 +1.0157840088626466 1.595093265687236 2.852327224717875 4.235978152343295 1.5000297012263935 +2.6439888059263423 2.1877392501285677 4.530610910672944 3.6796412217556496 0.9655636015414335 +2.600406496524731 3.2180669544521705 1.2382894258269905 4.726058439418504 3.542038556178667 +2.0525890447047344 1.4012788275773373 2.0698363932512454 4.672752708120351 2.6831657312112314 +4.124112984208558 2.7296664652628597 4.756839074371478 1.3502321945520843 3.6809579633340834 +1.4714900838767235 4.119069032529904 3.7011852846021105 4.1128183700782674 2.6793872595073114 +1.9011078060016682 4.459088033449422 4.55150143308486 1.0988434773490727 4.296988457433798 +4.418890431791034 3.9388921698354613 3.318488181629877 2.338345566501742 1.0913651439690522 +2.296175366090561 3.9477091771350845 3.2569839325531382 1.9877287747835308 2.082924046754466 +1.4844412235634628 2.012914753798184 1.902655801768622 3.7945146520271167 1.964284648786968 +2.308761934694916 1.934691585607799 1.0313895175652679 4.35898010859691 3.3485500993099193 +2.0589674347480567 4.7106670142821425 4.033477130337166 2.3955752662360137 3.1167664616597888 +1.0684631336626094 1.7628334244780413 3.869371568119804 2.239633023696441 1.7714959282895038 +3.0914556974750322 3.623378979907565 3.846813360229551 2.70842625225875 1.2565299781493176 +2.908080475129126 2.320786091263843 2.1726974699587323 2.6790022983611563 0.7754091001421831 +3.063901031634188 3.076273049541009 2.6933408015256655 4.480890293770959 1.7875923064428012 +3.818736771821289 2.4008747797588463 3.568872357523455 3.7042870466405997 1.424313787956843 +3.360710878529876 1.8427796951226751 4.750197867219766 1.410084311724976 3.6688518150996554 +4.152924068611995 3.8383695992872693 3.7958474459197435 2.3374321030232337 1.491951683724411 +2.9502991538082397 4.0330966940733255 3.4105191654012543 4.793471546869146 1.7564190281968117 +4.952148976272422 1.0547687560474808 4.219225772935033 4.259526209212982 3.897588575794629 +2.587616630308612 2.680276325245055 1.6387905234934927 3.234843022634135 1.598739941040695 +1.6498965337197071 1.8685629199323373 2.7051762267047565 4.7188265346559675 2.0254882253845117 +4.806761682754384 2.4126586000123433 4.060803334752128 1.6610865774046317 3.389744840882471 +1.2121244065037966 1.3582472249050688 3.375258257976756 2.6199318764912554 0.769330761522969 +2.4016613723958673 3.8644196477218755 2.561785641539546 2.4774700374833687 1.4651862998001572 +1.3331001671992682 1.406613876637326 1.3170773485481635 4.754867273505184 3.4385758438067553 +4.8475900808628225 4.17711583219949 2.0690512279589623 1.0331508932647018 1.2339470092108253 +2.8760946926392243 3.666715518236015 3.1734570891198643 3.977136421165668 1.1273782677632826 +1.6423222583444015 3.495196985159029 4.846898075483014 2.995874169932656 2.619052166755615 +2.5839308042287987 4.337927471971039 3.837763465080031 2.9314602630861817 1.974307423983202 +1.441923965427541 4.576070587162182 3.313089477245979 3.0738767778083225 3.1432622801959926 +1.470324056825894 1.674362871094202 1.9518771047012122 3.5090463559111056 1.5704801541699267 +4.392899283133555 1.9301044777116512 1.3920457790675136 2.909654431159091 2.892834989161381 +3.9560149587289937 3.8715212511078416 4.704674058430216 1.314320948241452 3.3914058144660593 +3.4537716560106637 1.937968048326642 2.331220850690006 1.1258927326798798 1.9366146878338315 +3.2843940630428836 2.069732763354573 3.034381437436637 1.6770349927631036 1.8214805636702187 +2.4165578921096866 2.4215796225836135 2.4345727492915263 2.117064753192046 0.3175477056507578 +2.39469021924017 1.365635221684086 3.268516300278104 4.449226587575229 1.5662154930035683 +4.248873422393508 3.7792989088386895 1.2027250681090629 4.9386905891569235 3.765360354366984 +2.429841192540506 3.166219026976163 3.349655305406416 2.9320144831744166 0.8465672870143096 +1.6780999149991969 4.043900488088371 2.5164089285124924 1.3982559913903603 2.6167304680505246 +1.1764214523313101 4.06261286058526 4.936046368845702 2.3989115269693726 3.84280549220771 +2.2566368487461195 2.3252960975383545 1.2043413967722736 1.8534423441028336 0.6527220942101963 +2.814468096263255 4.500380059358784 4.99132456179692 4.715036266422971 1.708401114922741 +4.52718217825051 1.2876703634498807 4.043926054031433 4.0877516776638 3.2398082479553683 +2.6078861232092962 1.2865753530017785 4.0547766838085 2.415504314285684 2.1054871296085693 +2.8998731580351853 3.9829395934934593 3.090749421587934 4.6671039014447775 1.9125706130182567 +3.1352989913480003 4.504340417712021 2.0836170088767294 2.6837207372613405 1.4947905913277433 +1.219261272410809 2.383362714281075 2.2644333147111966 1.4006803765683369 1.4495521050016986 +4.355625335796551 2.262287239508277 3.060567399804483 1.0893260492397925 2.8753881212017136 +4.674387428757231 4.355381051930408 4.847943703311962 4.756749428124049 0.33178526833364047 +4.726630452699096 4.361002389432389 2.798731804439075 1.1170082744265146 1.7210107239776486 +1.3269647782636906 3.9292669572321133 2.2508282441108878 2.6204748496681116 2.6284244793533214 +1.3166242026323056 4.727387156954364 4.367988060801534 3.0603521505371605 3.6528366517528092 +2.622484385742258 1.3056685065582236 2.8551530257887023 4.227613612138333 1.9020126499985202 +2.988837493249846 2.1258608005323922 3.7260376583451653 2.9422609817681122 1.1657764154930075 +1.9835827449735293 2.952793364595703 4.265554299210813 2.177524488336878 2.3020073232478304 +2.9955798992035647 3.579728324346337 2.0547920818032424 2.2480249096363747 0.6152790491713254 +2.287312406527983 3.4839051708380566 3.4946879303641816 2.6127261456988395 1.486502887050442 +2.4132390846896703 2.1120985853724012 1.8680498816423143 3.496498235684295 1.6560584657889015 +3.331559464662141 2.2469994671377047 1.5692092530966009 4.710713774458939 3.3234501720305993 +4.061502183736481 3.414411110351819 3.516507969008152 2.0392345323914767 1.6127813440722076 +1.8700298402867679 4.8277765978990965 1.4894949011983085 4.972802899526689 4.569649931163734 +2.5433801509397354 4.1960460792686725 2.596272610678427 1.232111580362929 2.1429512330640628 +2.191440605384272 2.329779615129039 1.1143044638902437 4.008806477106443 2.89780599525396 +1.0629273428794432 3.6645433975739445 2.09266358652512 2.1132664165415913 2.6016976328253194 +3.6572712932775056 3.7654381799572736 1.9962779173816685 2.4155977897653207 0.4330464533394035 +1.3833431733700183 1.8974030903040324 3.790202197526511 3.269949188605481 0.7313827940891082 +2.4184429686715614 1.159901423056457 1.4898883120726727 1.558565218940314 1.2604139556416227 +3.446185104554314 1.0172678763356728 2.8540067934918496 4.762913168165797 3.0892656811624604 +1.9797298491143152 1.9919155870879353 2.5790269050149193 2.9715423648856203 0.39270456891595956 +4.3521477914558275 2.4927441896299025 3.1377585063278692 2.336309799102538 2.0247720327968723 +3.1367476249575863 3.4337503969510457 4.410856388283792 3.187728950838689 1.2586704790384267 +2.3492412407978263 4.617379645704036 2.30528708137502 1.3333295644112022 2.467620967367751 +3.4635242162917708 4.78453604487281 1.582137927319017 2.987708440889277 1.9289117968090672 +3.7756218936011354 4.57383768026816 2.33853953797299 2.6289623340124004 0.8494079364732862 +4.720774174151865 2.3550450209994387 4.209632031596231 3.1245672803881397 2.6026985880792215 +3.5722611548421477 4.2115937441367155 4.048079297512206 4.6460023768678695 0.8753617358328243 +1.0442370569386505 2.5041607566312853 2.8857540125480434 1.0256105203941392 2.364637608667923 +4.554707471414398 3.413039522296561 2.6075641393939257 1.9661270178533643 1.3095217779529933 +4.8684442839043065 1.6038444673271095 1.170350390655118 1.390847629888845 3.2720377435025965 +4.956467483460948 1.7246656274029282 2.149135107711015 2.1475665359237603 3.231802236715222 +1.5665225550480804 1.7821428450682104 3.2302633349436918 2.864197033439872 0.42484896912320547 +1.4968289226705416 3.1597478883502346 1.5393765638963313 4.11725928236962 3.0676992676304584 +1.575604799840212 2.2592975678495333 2.523449216646947 4.264178129594789 1.8701799243390527 +2.682520029141505 2.719887427767582 2.8091968356773305 1.070900164844593 1.738698259707031 +4.2978123910964605 3.7425423044712622 1.6980878411377995 4.574657505858173 2.9296719790942873 +3.4326499267152113 4.711590040392274 3.055467075922035 3.195206679455918 1.2865515812310457 +4.954960275839986 2.073328796194237 2.998340461749557 4.338413956709771 3.177986305253727 +3.088686980957741 2.3283380190470955 3.6991831224882517 1.6590866508539044 2.1771826192245585 +3.7652039310907104 3.0036713312981873 1.2263884241319012 3.590472782787495 2.4837122931987894 +2.6500546111262175 2.672040290085368 2.739120677064546 4.206771431311338 1.4678154197720061 +2.7073400770079603 4.649128329676989 1.803298338074279 3.2114416447330965 2.3986265216351352 +2.2318271254182234 3.2967091612255595 1.7061358686852999 4.960925811670867 3.424562938996036 +3.4144801050115032 2.114169380727733 3.0061900694052888 3.82238433002719 1.5352462508534308 +4.750110905381893 4.0825299911956545 2.809574560642361 2.115613982983711 0.9629359066573753 +4.558237555789585 3.2775747305549987 3.587289974676182 1.6000352994610845 2.364165479847402 +4.9245632442269525 1.8739611148106983 2.6831617380150736 4.884916063717029 3.762166325768473 +1.3308756212172215 1.4953813264805778 4.177125541468099 1.9594382288124805 2.223780372199083 +2.2745701671457983 1.395968573121964 3.925903574227928 1.4572461456844903 2.6203454467920677 +2.0352896023835383 3.263910523787857 4.567584197111351 1.43707643911047 3.362973117855107 +4.030817998906382 1.6073202316403448 3.8733412800200986 1.8580695012824946 3.1519298485403664 +1.9754541191447226 2.53499561583589 1.9298808464170873 1.3633795961187678 0.7962476707086503 +4.991411971978254 2.5677653116469155 1.8928309204358413 2.4797391083913367 2.4936969252947425 +3.4137518694980606 2.949210379966092 1.0625667451483887 3.7881697006427117 2.7649069182335904 +3.2875724517044986 2.9845759168940553 1.7332635801984582 4.086882078818384 2.3730417057340247 +3.859390117545966 1.0723734209650604 1.6760166527948748 2.9577948785528254 3.0676403777248638 +4.234574105581967 1.596470350436229 4.231945375813197 1.4670351135333521 3.8215599146650105 +3.790750287946806 4.052928191308425 2.5449564588074116 3.935223481708133 1.4147719420374187 +1.0457055663835209 2.3030602226884334 1.7881244351933052 3.547028514469276 2.1621018227237347 +2.737333188674593 4.641172103771314 3.8945950688751445 1.4127326942137408 3.127977535308814 +2.404575836583199 1.3842182006124828 2.5687749523237122 2.7791670819230117 1.0418227073168818 +2.59381766030548 3.4278777531967055 1.5530140488848718 1.2960413397380552 0.8727492261812518 +3.578909824949403 3.918904688658644 3.6172015870214245 2.2994322997955767 1.3609233636411655 +1.158710525750163 4.461799156469406 3.355548342992463 3.3923313782154185 3.303293431420669 +4.7149820838093195 2.6781595370344644 4.903988073668572 4.493124012396521 2.077848734603982 +2.807846129955273 4.404020116965336 3.945154925739197 3.786629751770004 1.604026691669925 +4.753190037113249 1.1429441269513378 1.748777489139731 2.1185791445422977 3.6291360950203133 +3.803981113000516 1.3525218379973065 1.3297790719503402 2.6080283173821375 2.7647013781683945 +1.874588098548894 3.206124537365697 1.5941789363035008 4.76000652622192 3.434450992078006 +2.506622663254713 1.3129044889281567 4.541822332767474 4.282245250475169 1.2216150544950373 +1.2461227016354708 4.898264618574167 2.720299423785928 2.824340301889955 3.65362355556471 +2.6703072998323654 2.4322204029199517 4.084610877979716 4.769377073985501 0.7249759400653342 +2.6486748394548614 1.77142459527471 3.9546239172309368 2.952692639192171 1.3317035243726472 +2.916120100187685 2.566452208255381 2.562152428942057 1.942193892945303 0.7117697809008333 +2.647907852295167 2.4794195593001174 4.281765031819845 3.359159677154656 0.9378640335002 +1.7578658801847808 2.142705489346353 1.2075949531236647 3.0766394183282166 1.908252797113475 +1.845730703876168 2.310224039121337 2.67483652668077 3.8188136299422326 1.2346812022840827 +2.762572157700455 1.1896288281296794 2.226444082837445 2.1683010586308646 1.5740175759200037 +4.86046590254415 1.7687653589967325 2.8551342828580135 3.0625430798467144 3.0986498124247115 +1.2009596592965375 1.2128334942422216 2.743615890078777 4.541763326147592 1.7981866393111618 +4.541385181815205 3.840758592588085 2.5914510751225843 4.670610536938211 2.194033200566818 +2.789923632594577 4.780210533374586 2.5350532768280734 2.808480558338198 2.0089809420924105 +1.9184625647806053 2.478087662982534 1.2844872366268558 4.261742689430559 3.0293943754134918 +2.947564509002884 1.9062262958658622 1.3032821031308983 2.2271924478407326 1.3921191038130503 +2.7619081992494894 2.9364215965096228 3.6538118519798175 3.5725416461216373 0.19250914831120136 +3.8201760758669137 1.0874667192479817 1.1339240274452873 3.9669211000218563 3.936187602360953 +3.673294413227241 4.743537103395008 3.4704600085290003 3.300638412352786 1.0836322209981466 +4.942320779631701 1.4491200739781531 1.2107696354685262 2.0263216557781782 3.587140402578299 +1.5915884964579545 3.413475120755607 1.2894468649545345 3.8672200682000946 3.1566098205457025 +4.231461311153353 3.5435916566227803 2.591861529187143 2.16639175842561 0.8088196260328266 +4.872174500428305 4.737534731223763 2.2225001578743697 2.8831188059345236 0.6741994257015338 +1.054686375889884 1.914486920081746 1.8881760969377277 2.1786888299822476 0.9075541988518475 +1.7610400033223672 4.878990580757214 4.678846264115808 2.73083362422354 3.676461484703238 +3.1140260474241708 4.919393747081089 4.551537584586676 1.8666692129914098 3.235408892822842 +4.43125489150113 2.2311693947675386 3.076566240660637 4.8099038434885735 2.800863338028971 +4.414891629596306 4.618231129881247 2.939057231595232 2.8308471816377168 0.23033967805816158 +3.6264272811992333 2.2931196090489077 3.4584419154929167 1.9066290322238841 2.0459307352143346 +4.009126045570781 2.6495568014378654 4.864453496427229 2.962307328331297 2.338073688828944 +4.077233021252056 4.5003200556269665 4.629294352341544 4.830142372869059 0.468340224629465 +3.5049870452684404 4.563537078562856 2.5501591425728956 3.8352911656431887 1.6649602066440965 +1.080203313073386 3.999602825566931 2.2082328867040637 4.743821109092009 3.866794686437335 +1.1321551554192482 4.681431115277194 1.594972075483858 4.077957740825321 4.331579117771801 +1.854521975452752 4.030553370915866 1.3579280262770603 1.6748914463751507 2.1989948712358167 +2.4168025956634724 1.5430614377207452 3.945163999286051 4.12796953493085 0.8926597755838892 +4.525120960485683 1.0683179468655104 1.8240903066213927 4.059512461332491 4.116624744222713 +1.8933573077209873 4.640690426072837 2.737608756070976 1.272629495478697 3.1135194711384733 +1.9513328290455036 2.5909718756216815 1.4129080552721782 2.260890435053908 1.0621733504118653 +1.6875072601720151 1.4538421154875443 4.989191819614922 2.9257268534382095 2.076652851701284 +4.365152778831643 1.997669557227928 2.7946200899301825 4.584034225903746 2.9676555990540954 +4.609116512404551 2.8711491491849577 1.6599749811955578 2.115444773094295 1.7966589233765948 +3.9359837956049697 1.0377541823942598 3.6445370629884217 1.457495330594229 3.6308244835195893 +4.536116070954527 4.15362235661279 3.669578864027428 4.2852162446261755 0.7247832958211893 +1.219184596413183 2.666105780943632 1.2747916505509345 2.096732983723117 1.6640818698068498 +1.7127348230847956 2.58364255164077 1.2714291310475176 3.7654087154227813 2.641668873825624 +1.7429620427188448 2.252770606365135 3.195730170777348 3.2483350946026057 0.5125154139904035 +3.321525450975474 4.7718207392699306 1.0559790005269805 4.369480598708991 3.6169945071016953 +3.2362061593207176 3.259526589926963 4.17356467461658 3.320439572611727 0.853443777969265 +2.2753712519056393 2.067684369468766 1.8005007695072694 2.2937292013570234 0.5351711194761121 +1.295979890351759 1.8888348983218548 1.228819897999192 3.1491949384692597 2.009805303141485 +1.3720607888894985 3.2665692560215165 4.631575430249992 2.956925194220023 2.528560014132577 +3.303292388381089 3.3283909576636552 2.639042934748934 3.105402240119945 0.4670341956282897 +3.065788697499458 4.712228698539828 1.0690059012144801 1.555262197706572 1.7167439712735324 +2.3010079869189677 4.811330154695636 4.684776287070271 2.127181508234601 3.5837143355404923 +4.644715121435963 1.1228845683747695 2.4324405872506323 4.230580021147384 3.9543135773746934 +2.0158285795795585 2.0600309217521593 4.915096604920588 3.7591228801166676 1.1568185248735405 +2.9172859831472966 1.9522115836234786 3.4303528736825437 2.8816688590855604 1.1101453708819042 +2.0114161964473802 3.603887796458595 1.5896269245738557 1.0374075386157346 1.6855005330969914 +4.98431245108105 4.465240894725929 3.8304268951334763 2.513532186416346 1.4155023682297754 +4.889769267820764 4.097995519350816 1.59799170732212 1.7018559277048175 0.7985571019293852 +1.090038606257429 4.523158860337331 1.1739998121863686 1.3722803113819548 3.4388413507073716 +3.7374591953713177 1.56496098782572 1.4466886693427332 1.2710012572074438 2.179590449733993 +3.19741616140656 4.68834442301996 3.979805006322631 2.1223801959492956 2.3817837868849425 +1.3216033175629542 2.21239323690418 3.4686418191351573 3.263939691990674 0.9140074623641886 +2.5050765596943876 3.230179250492831 4.660323422884282 2.8357915187163303 1.9633365940484773 +1.5099127087476685 2.0008585397124556 2.1150135791647586 1.0131894698105302 1.2062521199550051 +4.568871764100435 4.150053474868814 3.876675444229989 3.7483625868882573 0.4380330452763822 +4.148402463678039 3.1045958911119884 4.464310134259899 3.0170137253246585 1.7844324185154588 +4.005356381070829 3.306270972572472 4.615101885922446 3.213991349168926 1.5658324126729053 +3.2990958179020677 4.619982946138707 3.2712345243676126 2.583995555870975 1.488972869249658 +4.551579203575633 3.7313333961998474 4.9280517816685805 1.3060319324137786 3.7137354473512696 +2.0099783378464244 4.241972083882065 1.6429438096709337 1.2347465371906292 2.2690132427120324 +3.6666225257265572 4.1502387453396 4.345269179498176 3.585510863949413 0.9006205338089426 +1.9742779629950995 1.808816236475912 3.734564472710204 3.191456207451372 0.5677536179850976 +3.9756767926093 2.017024876319848 2.8614953710137288 2.2348374736038203 2.056457500064261 +2.938541051163545 1.8848370673418473 1.1035801891940307 1.9767039173183987 1.3684433236840725 +3.6394406931773045 4.98628894784768 1.583328231803772 4.371485071995799 3.096420318144523 +1.5894721026729637 1.9922636542534997 4.160577303110773 2.139509349930524 2.060814573268749 +2.220205699729791 4.289385141844598 2.45579632150668 2.0021938569818856 2.1183150755951083 +4.085110463327937 2.1175724461961205 4.76097432907223 2.5650790087468076 2.9484168814274025 +4.765456121511023 3.9750477143521885 3.2280397777517145 2.0647298158839247 1.4064265062519992 +3.2764255639179636 2.802788362777403 3.9763187062073335 4.405112735106837 0.6389025884468867 +3.9380805757992774 1.988070863467415 4.059544346904935 4.0319698508663855 1.9502046638802741 +1.9593776847248305 1.2194514371699214 1.2145070256755708 1.281570498314013 0.7429591921384482 +1.763527657813901 2.911012282305996 2.9016080524538457 1.731019064409875 1.6392069858244172 +2.858666028276944 2.371967443441609 1.4601421120786284 4.083565677249015 2.668187908444984 +4.481398532103682 4.4633734445802 3.6848996366580806 1.13799679809676 2.546966621856663 +3.5460748291230164 3.311537864957274 1.3621488787463707 2.474372638522239 1.1366834560993886 +2.180380946434658 4.441323673273679 1.209029276381314 1.4730712471762106 2.2763084537003153 +2.8157947508221612 3.9577817821733388 3.201633775328358 3.659691109720814 1.2304271215171572 +3.2109897515093633 2.940220466628089 1.7684736769143274 1.4055620214213773 0.4527923092630332 +3.0262298322793577 1.8677699026248824 1.9087460900092128 3.2081119534689067 1.7407989705130826 +3.9250976121923777 1.7457484231318396 4.782810214783261 2.267569609731117 3.3280622273572202 +1.2332684167949535 4.358910641808122 1.6632989430345928 1.9316721597660487 3.1371425696394577 +4.362435008746642 2.7298085017655658 1.5340625598153368 1.2222008139660248 1.6621453185029915 +2.2324479472171244 2.875463824425043 3.7826676523405682 2.0387769716207353 1.8586619177900405 +1.8136944246205866 4.662613407972527 2.460137023057631 2.639530242585746 2.8545614901269363 +1.325965721825931 1.2962275031771422 1.2382214714204656 1.5941373176579936 0.35715606007931444 +4.927003443590417 4.2571972279867 4.603266238008428 1.1240335949954772 3.5431201151906007 +1.4626850342830502 1.1534676181920358 4.781457819878895 2.6043109758019 2.1989960871016625 +2.69625920685382 4.368834283229759 2.4997092015867572 4.625659339548994 2.705027056281625 +1.5216357189486431 3.3253563152858767 3.2336615813418805 4.698130872575566 2.323376485767565 +1.1864564774613644 3.7067380721021235 3.5360386553776957 3.5986087238437734 2.521058176590302 +2.2867320667761706 1.0008558614790504 2.2826409828020098 1.9324735194387652 1.3327020926477045 +2.2094548933277096 4.97871557473081 4.920406540515185 1.0189284447223406 4.784384605517885 +1.6989864313660346 3.7496333430411424 1.7578682174010232 4.990785627525973 3.8284341103186916 +1.1669376992246794 3.1796468200113868 3.8009344845646362 1.5891464377984454 2.9904856409479383 +4.2172939453855225 3.1440129273656763 1.2115305840787056 4.597005188309862 3.551530717808284 +1.737703550137459 1.3908957702357423 2.6345919382905816 4.070359587378074 1.4770593685991713 +1.2872253684737687 1.4304015993619483 3.4462552204768775 2.6410854697787087 0.8178005628089874 +2.1958169928235955 1.3568217257777326 1.7690527050744 1.0932214371658402 1.0773397610820137 +3.355898636858762 4.267247256479192 2.980675199938905 2.674199022305465 0.961500886084286 +1.549651439195943 4.8487874554710135 3.5916957126813487 1.3009459537672217 4.016445307961814 +2.6767603717992756 3.121063508871243 3.9658163865835188 4.065976217156327 0.45545281783337876 +3.5955831715782924 1.2150785696886626 2.9664788688372865 4.167519834678114 2.6663273544794857 +1.5569895279130992 3.713693738566938 2.8296556954660717 4.323392221738859 2.623475149905844 +1.4273280421909043 2.1019675325705762 1.832004597080235 1.8642844200567512 0.6754113035411377 +1.140570683021168 2.39940693218091 3.9515927111915845 4.122934143776686 1.2704434614412732 +4.363792292788293 4.8642570594992165 2.808050474301468 3.7970002651848325 1.1083711795275395 +3.414893875359075 3.981053064718643 3.059728282885201 4.800032189829745 1.8300803032169726 +1.8685564362102731 2.3175463124611873 3.34897967815313 4.15205511380721 0.9200663369164209 +2.1983972365507287 3.086284393797323 1.9094472283212451 4.807724637260462 3.031230037983072 +2.1081554482842106 2.9919960518071766 3.6798813745137258 1.3421478256250094 2.4992343543644866 +1.6066826353857926 4.908708274623569 3.2875960865822007 2.9289789334192053 3.3214423952142207 +1.8918769794559784 4.736557123822348 2.6078736000003047 2.953628760955014 2.865615423443817 +4.640668819200073 2.8508992028244005 4.285538016291742 3.413090937623334 1.991089948942177 +1.9355802241697657 2.584036179801382 1.8409168775058498 3.1748550013235217 1.483201282553492 +3.6931810625650696 1.754884285011007 2.1812916744417725 2.3790960623963233 1.9483636656873218 +3.86194390474638 3.4242509105189862 2.684382726430523 1.14140342672219 1.6038579352686322 +3.139919241939279 3.1377029473593887 1.7850930656372261 1.9779600356692182 0.19287970367818946 +2.810114066983096 3.255494722822279 3.6291229375855276 1.4553420408595255 2.2189383307263504 +3.680900509578109 2.9679455801353267 4.423477634547993 2.0007273679497977 2.525474922805291 +3.445806981761518 3.197173873780429 2.741547368378754 2.4196891169395442 0.4067077038904492 +1.3509530317079421 1.5392608209370207 3.1656972700833665 3.8950514384372137 0.7532710842581674 +1.594775782163302 1.2763471071891845 2.714170279392602 2.247478766325851 0.5649759193225016 +4.713080197132513 4.166741229291645 4.607333390340022 3.4428634016903352 1.2862646004019649 +4.808221777177989 2.7596308934353257 1.6313498372278064 3.269239870227746 2.6228626287234507 +2.352529165569536 3.6827781473521717 3.244531372773595 3.1806423318594828 1.3317823257134267 +1.9877788179079379 1.7585260641106597 3.0676987505587148 3.5695543426153393 0.5517389422563361 +4.224859138828911 3.059219029692894 1.883424154075302 1.8486092316531417 1.1661599130693387 +3.180240089144445 3.6471815658641082 3.9821278762266252 3.7341695541381426 0.5286943088156666 +4.020045555817452 2.7703867198893186 3.2064874421032257 2.6354428186078125 1.373950205879484 +4.811923360497438 2.116532150920241 4.662408522764377 3.3053615389897835 3.0177326403837945 +3.5196599740110783 4.00337176246035 1.9459017384485837 1.8221695970077554 0.49928622763934366 +4.6095702692568805 4.756676192046433 4.80276078799854 1.4466468555365757 3.3593363749682883 +2.6266672089126497 2.0472462469760813 3.9447636778758803 1.5533425614847793 2.460614477534577 +3.635245609783999 2.5462994602354883 1.1466047561611976 1.894612320753747 1.321105231729935 +3.470533984985743 1.7449255043787755 1.7909811280093861 1.5413256102238573 1.7435746344517193 +2.322098498198982 2.8649897717797765 3.520833814642368 1.646447391501936 1.95142394117305 +3.791339324817607 4.596331515486712 1.341499919038648 3.4082316992022452 2.2179703961451867 +2.0811676943353556 1.426250938275381 2.240704382974449 4.45576984040537 2.3098551768610465 +3.4208289968862564 3.7028137772534144 2.8602993039697666 2.5636595198585677 0.4092805613222464 +3.3566383387801983 1.8257901641533065 1.619660801242257 3.67739440003101 2.564715129861911 +2.8280844443249262 2.6451697849343687 3.0613223599992785 2.8258295064731747 0.29818560777111736 +4.57822260000278 4.943481033495077 2.739719736467115 2.6791352773431556 0.37024883514278534 +3.917294165241049 3.821079393276962 4.17064622908261 4.533418902052138 0.37531492722453386 +3.172050724811486 2.35337082755675 3.4755899127851273 3.3706462595952718 0.8253786673484221 +1.14755928216985 4.759012111566555 3.0918239146422284 3.0676844078989887 3.6115335045854517 +1.1385684674527718 3.58741446973004 3.0671950507049432 2.6632216446879022 2.481943040369454 +3.7533218651099722 3.6298069961336545 4.983418933617701 3.5506884436432893 1.4380447071494522 +1.9006921278228752 3.7190872658905523 3.3937580850525553 4.142480410867744 1.9665060384657538 +3.6972872706310587 2.5941791222293453 1.287247833859091 2.8872958562163955 1.9434508640353576 +2.8654487593680598 2.593814761962756 1.4976448035390666 4.651767797874091 3.1657979865966372 +4.8225934464170885 2.4560954554266248 1.8945033511357985 2.6436608597414946 2.4822469083598824 +2.9269738169570165 4.3620897406206876 2.2785713842244584 2.8372705308286883 1.5400332628775675 +1.9864162899012259 2.9511496282687846 2.93022908884696 2.9964704719310125 0.9670048267670139 +1.1555661120121123 1.1010904005322293 1.4075806390431165 4.7474626354688345 3.3403262345450453 +3.9985823125161377 1.8506719170418209 1.6330232203939792 3.704107841571031 2.9837745516480845 +1.683902913899121 4.1933415884434035 3.14067380738023 1.2478974688709723 3.143228392738758 +2.5214282031493216 3.6311972762370015 4.464259621061149 3.0853626546128585 1.7700124970355964 +1.8817159055876584 3.4898088718892146 4.55214100873589 4.6513886000942515 1.6111527154987433 +1.7651262127194314 1.6369015353919236 3.9314836563326248 1.3099746087465682 2.624643071819728 +4.905170732725132 1.215822095001228 4.439645756889709 1.0652421538370263 4.999789300257578 +4.92208369816744 1.6189853872768545 3.913369063803321 2.7844090495118907 3.4907032479540776 +3.9368361900216238 2.4873473198200053 3.221803041749967 3.805351509507796 1.562544975052198 +2.6863613209530115 2.990273941935731 2.602528697536211 3.570559592637209 1.0146165261134994 +2.9271206026472694 4.0402888787252085 3.519813248745978 3.2504829107487136 1.1452870565199154 +1.941625504577872 4.544537756253166 1.5222382254132896 1.7631412803265856 2.6140364327583323 +2.0501692963162537 4.008911781998359 3.263807626623696 1.5069972831519562 2.6311698364312033 +3.0284159896206146 4.790771975894543 2.3724490229173147 2.3092503484231304 1.7634887849979013 +4.450859074518209 3.892593396487799 3.9320522901673596 4.170410196864239 0.6070214649842884 +3.04432260096432 3.352622679796806 4.146286215885464 4.915213792919161 0.8284313835985628 +1.1874682648012094 3.9897098481876823 3.980419743289244 2.4205501528981723 3.2071406315731052 +3.4659488170482686 2.7451247503984857 1.1711031386064477 2.527682307489109 1.5361947716705402 +2.878013156585975 3.9911831412091145 2.3515043586475146 1.3370152652856548 1.506099443999648 +1.2118248693485665 1.7491442838694975 4.041301333311587 3.390231715918995 0.8441586343293849 +1.2365609645848847 2.5130665910891383 2.978648270691673 2.50307399692312 1.362217862299384 +3.6673538948140485 4.299783844215564 4.0053291809844564 4.88906268340259 1.0867164046779747 +1.1797749219595426 2.350761048290033 3.6085960229583582 4.396756750769867 1.4115260680989403 +3.9477780359236334 3.3644899736481855 1.8054598549301382 2.931317975936859 1.267983230263646 +1.3803443451068294 3.705732601981009 1.306707011985723 2.1535873027851706 2.474800349958132 +2.2059500015633047 3.6266081823448846 4.358282108964692 4.223249602191032 1.427061121503633 +4.304480605406859 1.4218702846001179 3.905312087058837 2.659391863754655 3.1403438449411687 +2.886809667440998 2.3237045537120107 2.8249404042672004 3.629914203805016 0.9823798588377527 +4.622019133910898 1.2500658631092638 3.4060714846253477 4.898599551600833 3.687507137780132 +2.8318176404161357 1.274377321917703 1.136646005694384 3.1593118042881736 2.5528018486528783 +4.27795521907216 1.9624400505727602 3.9899019667603666 4.223141792419881 2.3272325435642407 +1.7081479457808944 1.5724460856811318 4.425424337129895 4.573662235376089 0.20097131464710194 +1.391669248798491 1.5353658654281999 1.3824499555561758 3.5790899428425265 2.201335038420141 +1.6780280079166783 4.292292828982584 1.4977579998139126 2.510929042374236 2.8037289662421943 +4.558804891872078 4.16421908709989 3.4213911881393013 3.9522429947511273 0.6614390356720372 +4.642788558152817 1.837779713247659 1.5873309601001262 3.1627331906995684 3.217136429835369 +1.1890470111956808 4.607144900824119 2.5300487313656452 1.0307857512714254 3.7324499549978407 +1.4531413763890222 1.3105408790035367 1.7950242994038286 1.8052624568190634 0.1429675547872558 +1.2157169201059075 1.082994018474987 2.5089544974252145 4.457526762963312 1.9530871057486412 +4.985111481744822 4.990982589560666 2.471299618115613 3.8366205113597633 1.3653335165577638 +3.243419147380186 4.5918797848174275 2.4368500587259043 4.653602829409115 2.5946751120418416 +4.498240290023281 3.7772445438434783 3.8198396459392416 1.2910810801835781 2.629535082460778 +1.1847838383972378 3.281574123690487 4.244391242896349 2.117817044824334 2.986443925541844 +2.405013375010388 4.112971918128926 4.117440596234285 4.884602428977467 1.872340690854492 +3.8743313655594687 1.2924797973406195 4.285560196596107 1.0229392278610483 4.160607300135862 +2.1359843171395765 1.9821433502685961 1.7507898863671305 2.582538773119274 0.845856520753507 +2.027141454409419 1.0382412582081413 1.1840924092359382 4.354954954848521 3.3214895575954526 +2.6207701758713045 2.801357460829453 3.840904794034721 1.8377052236830682 2.011323018847446 +1.025165985012134 1.5310086013998805 2.5909421028808826 4.53475710942525 2.008555085682511 +1.8865475808710879 1.1527886173521584 4.169055154982376 2.681218753831332 1.6589332033371522 +2.601705214277896 3.3601253919615517 2.6703747009315006 2.4311506659235 0.7952542391230727 +2.9176358021675655 1.9965945550351831 4.60043000479273 2.1580783136835495 2.610248793119738 +2.4085586113563178 2.4540244654263295 1.5216771745396915 2.1758316563815847 0.6557325903141854 +3.0706519676865076 1.4734600097438504 4.71557989075357 1.6604295113954342 3.4474579027174306 +3.3025884202585947 1.2934778607697246 1.5239220854524405 4.062332944039292 3.237291294777366 +1.0666170001270383 1.8014821737577478 4.9563112348180685 1.0540067702396465 3.970894981951043 +1.8430299986706116 2.6380560738880474 3.6449266835277405 2.2883335765891806 1.5723903198852551 +4.801411325260479 4.267003592247724 3.4347448341928106 1.043231826730445 2.4504950703818036 +2.5543539653660816 2.929483876810098 3.6260810243889328 3.9416424448704626 0.49020552889203167 +4.183760189345547 4.551633435590577 2.530231518771126 1.883479359547429 0.7440558317514694 +3.0307588609632745 4.961429711778402 3.2127215135549494 3.648600435393875 1.9792625820468273 +1.949080938281655 2.8556729789234976 3.8373861863901633 2.0814303388864204 1.9761806765925347 +2.5297768654744663 1.8903803939203692 3.4071940719888314 1.4378689652225378 2.07052390084633 +4.979122168769313 3.3442155533145703 2.733925596826534 3.5394467514158876 1.8225761909310254 +3.1284157011630076 1.886153342194115 1.509125966196264 4.456755797055765 3.198708706381962 +1.9214186607205965 3.087141221496952 1.4484949066537687 4.685565994267703 3.4405723818819807 +1.6328494306211812 2.678192445389154 4.051099287855269 4.740400933430145 1.2521496624271502 +4.200699444385057 2.1620031347142667 4.003168475653062 2.976803053201592 2.2824786140223274 +3.742796286622342 4.009450076386072 1.8455408628696834 2.9886167401098374 1.1737660349165446 +1.7387346673561455 4.449254994060733 1.7873686675623373 4.136974215842079 3.5871390653256934 +2.1439994999358887 4.264507274744156 2.620791687818598 4.971122259438772 3.1655342391000487 +4.254352950207236 2.8032082342215583 2.9460293893358798 2.131683846466947 1.6640251350035706 +4.356016905648484 3.0590778523205953 3.540951221230275 2.4715298879696004 1.6809856918130144 +4.978178959173417 3.451593780047382 4.067141552411057 2.78244993336521 1.9952179994110684 +1.5596163059012569 2.1354678475701254 3.57066964053116 4.013427432256929 0.7263879543166254 +4.414932768235346 4.6824661103883045 2.0001279714950795 4.068085974705417 2.0851916919566933 +3.7169940723497636 4.668652827982753 1.9826004370138226 4.15253991303325 2.3694496653781014 +1.2355129450436353 1.3444763585719834 4.05409959695008 2.303089403070698 1.754397253918639 +4.297820170613953 4.364501419014057 3.6080231004494 1.497624568140477 2.111451717198348 +1.1875333046496137 1.0349941564633203 4.221354773297255 4.176749925541939 0.15892697748549467 +2.216174322662661 1.1894791135651062 4.631560184176976 2.329103680517003 2.520993654024139 +4.794550157799337 2.1971467203060984 4.5030441997982695 1.9329859711099928 3.6539983464624086 +1.8841256261546353 2.605863174485732 2.223749890805991 2.956019985665475 1.0281656386480242 +2.2868291654200292 4.982540817971325 4.493957578961401 1.0745958925424972 4.354181399097925 +4.429960826397917 3.4718108622860493 3.031247445363758 4.443976401801368 1.7070015987353007 +4.103704315464709 2.826013872174066 3.629916975580931 4.540863782281843 1.5691771581038352 +1.2466033105361936 4.232323910403419 4.851860094178127 1.2592513372912242 4.67133441112194 +1.0352338068042903 4.061158502965946 2.6073917388856334 3.582370825160383 3.179120080386105 +4.262342518350861 3.342367064955979 3.708752966097589 3.373056091338529 0.9793095662619247 +2.6714284821816667 4.626271001794448 4.775792312799518 1.9710075394571387 3.4188048937105653 +3.810084903123817 4.198856950998307 4.084475695752351 4.237934739062235 0.41796337540759415 +2.4843853612714457 4.454427044220099 3.9392491591200107 1.063830607423892 3.4855553474293544 +1.7474009146229474 4.447136724940324 2.132907995050825 2.095837793088158 2.6999903046832547 +1.5200368627877867 2.5481242535137842 3.294413747936378 3.726392231106611 1.1151542910700047 +4.097882347610833 4.2433223257114605 1.223627277086397 1.915965744268973 0.7074498854128327 +2.7485311179383425 3.452190494289923 3.188763999943475 2.492086833492026 0.990199773875108 +2.5381793602722644 3.9017714464506392 4.141736728482045 1.5170158171816288 2.9577936438680066 +2.9976210103510805 3.6278644967807243 3.345180536867143 1.3030149961215094 2.137205406131076 +2.1128228222583427 1.6811881632487182 2.7247171838795325 4.086644610603514 1.428689887456813 +1.0010056179130071 4.557946788573323 2.4365082957630273 4.6258055125714055 4.176703579985452 +1.6319787657200626 3.5993224136301745 2.573239281157281 3.261760438573066 2.0843469992257617 +3.1218091366142486 3.16503240149322 3.2532744322733103 3.8480121555738145 0.5963063056378533 +1.3764648946576217 3.49493017524434 3.9620010980269083 1.8064584000511115 3.0222937428132526 +4.190929616631374 1.3288207031001114 1.2882387308461607 4.652261612275026 4.416822090563766 +4.967177867333271 3.5573645554592432 3.085571778444256 4.959343301300929 2.3449079500496026 +2.3112814252977762 2.692719326952677 2.430557670427224 1.6490737903216663 0.8696044662280266 +4.3263720549302205 1.0778651085123547 2.553724379637185 2.547487249948216 3.2485129340533465 +3.969367876366511 4.018361226798831 4.542222950478191 4.916686334513164 0.3776548349611162 +3.7038876936433867 4.7678403914556995 3.478377969189915 2.030638553725924 1.7966482010316092 +3.2753268012960874 4.09424600676895 1.7867291065645525 1.8314196285631845 0.820137737120305 +2.928763894715563 2.7216957430702347 2.4793285170950097 2.1096932338222536 0.4236832095633993 +3.218081723615672 2.5949712810874526 1.4821318260461172 3.6216733903851384 2.228431001651606 +3.0501876411646944 2.6759645114423503 3.2935527407917493 3.290702102090405 0.37423398691218845 +4.815870758437483 2.1165065376771652 3.12004036635898 3.8393941521836106 2.7935706659222324 +2.970464232857949 3.714910313223789 2.412688251250363 4.28255213670341 2.0126079888278365 +4.211748679175426 2.489509645753767 3.2682690363879776 1.7238986208622697 2.313263337493641 +2.9355722688352057 1.0993709669821614 2.1356105643372385 2.981764026955766 2.0217840891717738 +2.737396541965463 1.5915634419629816 3.3100939489480075 1.7042889584039465 1.972699460312571 +1.7201138452495663 4.73303095854058 2.1284991161968345 3.476778882285164 3.3008374481644887 +1.6423197297697296 1.035795424333784 4.2606685463706535 4.8291639185568505 0.8312994173471308 +4.499156027819911 3.8694361070941654 3.006827710965343 2.8050179764557863 0.6612672285102725 +3.4579020386736743 2.6412251876647996 3.87692656054804 1.4618360797689305 2.5494358413820977 +3.194966460414826 1.0384702379476334 4.507302666084164 4.359451437422656 2.1615586837585483 +3.3733393919159607 4.416935953436703 4.279288238713635 2.1598014636330722 2.362481316954553 +2.614037229981062 2.147201980749569 4.07881165635172 1.055390144147351 3.0592503641227506 +4.834658906412427 2.6797651106854703 4.165300417273067 1.657724587382575 3.3062824763642804 +1.4347034571201571 2.7111860990893457 3.8319502808290586 2.7043671355567866 1.7031886814885628 +2.7263361764740055 4.50928372849428 4.881972062330914 2.8574771628840305 2.6976807763598596 +2.4980191414668163 3.931117957768933 1.290345390106315 4.410453098079836 3.4334886524702988 +2.844837629654012 3.2308330142213166 2.630807633550051 1.7455374760849098 0.9657617141953894 +3.298211512388254 3.6192119472984743 2.431983436493749 4.123400702390412 1.7216078666717032 +3.582779289933888 2.5670722264921713 3.837569160631818 2.0516385677263362 2.0545580842120574 +3.775580046464754 4.600933254853974 1.6791028584964454 3.8634333585085363 2.3350605242437403 +2.528974634011501 2.083594439136164 1.1389336260690572 1.7212216632289143 0.7330913150533651 +1.6558475003761672 3.89826541982631 3.985311397108736 3.953510828411001 2.242643396004056 +2.1120111374028085 1.170205535390501 2.565263356918332 4.323143693604103 1.994277079567492 +4.851692387766042 4.191835622942952 3.904239855747998 4.097545013059014 0.6875884189875744 +2.8880182012039692 3.9077984659989538 4.728283961545521 3.4421036543516843 1.641405364642921 +1.5830931018231573 1.1706788196041558 2.300645615241165 3.746392879174695 1.5034196657452312 +2.4991318459295497 3.101721937056344 2.26245566611846 2.5979775148784534 0.6897026380401354 +4.654930469690596 1.5394493747551903 1.924339267887551 3.989824336744959 3.7379741869858876 +1.9082491357812126 3.2264188921716754 1.5330348608897526 3.375787397703632 2.265680564112355 +1.3283730947882564 1.845435369786975 2.4005752540295524 1.5957969539840247 0.9565675660668305 +3.712201321104513 2.7956992252404813 1.6002629500466994 3.682637727594782 2.2751397332672973 +4.680720217859172 3.7981394800121895 2.4997935117341292 3.855976760103545 1.6180796525438246 +3.1859065163917677 2.0066148089256606 1.5090698958338726 3.825479136561977 2.599323123782205 +2.768191365722828 4.680518011560983 4.5730125939956245 1.0476131901209516 4.010665051736745 +3.9001718141228916 3.9464161801226627 3.9273747009500832 1.8109897910601425 2.116890084108425 +1.557199974316056 4.696942914155329 2.333785503355582 3.4236099885707354 3.3235076556019902 +4.974851501417421 3.1335670749424818 2.676977528893414 1.1327951700428427 2.403087076359169 +1.0213530708719607 1.6594118120581105 2.8090053986917716 3.216233949135593 0.7569372824089392 +4.623515755440396 4.814250106207105 3.9795283343404333 1.4119962435589324 2.5746068883919393 +1.6454842173924882 4.2828167623354325 3.670507982432718 1.2381274663069268 3.5877566706569715 +3.43876096057089 4.653072349224914 4.369317577561801 4.064019063744453 1.2521019651585665 +1.196241049599283 2.8083823829690013 4.48177203163105 2.2048483239068877 2.7898711887030627 +1.4925719864454368 4.993875356218419 2.5175530463173836 3.695577688282063 3.694166664385847 +3.009231148678964 2.5718908881509757 4.07352728927171 3.4605352314310505 0.7530111330215612 +3.1051882541435325 2.6419393674511444 3.454935383136542 4.714317829707731 1.341880649593462 +3.398240974490138 4.2069418471930575 1.018614245176161 2.6887155999926993 1.8555957633252185 +3.77204313023584 4.936600712897283 1.7496752215584341 4.104674478616344 2.6272068559741486 +3.0776736840103185 3.7681084635745354 3.0795157703123786 4.172810107858589 1.2930555646771316 +4.872709842043015 3.208245365522184 1.7083703225740412 4.209409790331261 3.0042703628134206 +2.6630818543631833 2.7995975207626604 1.3196584743511366 2.3889120412281066 1.077933076518026 +4.082550472892713 3.7244501677974666 2.455974307522343 2.2610669357376407 0.4077066495475989 +2.0116289159136422 4.97502925027176 4.300793575273298 3.6257209166637114 3.0393197653547444 +4.003718432756573 3.3474782886503496 2.4759658891483087 1.1808099966794678 1.451922832843852 +2.5721175459071772 3.6623835292956377 1.2610246849574547 2.2117948450281846 1.4465973219299586 +2.004160093486842 3.704465426013465 4.704542760179747 2.474963037566354 2.803937225279354 +4.997628543581608 2.0986322321529105 2.1404122694268124 1.9538719652703445 2.9049917209437934 +3.8668016526798645 2.0692759881156113 3.2717580480205912 3.756095524735091 1.8616340419420054 +1.472091681568771 3.507529061014907 4.185963706076754 2.722147628746027 2.507142364106687 +3.797330562296795 1.8899440563787842 1.5043897848521097 2.3697291209038975 2.094501241221085 +1.773173704456886 3.161698020550836 2.2075961383119225 2.9350587794112655 1.5675463854634104 +3.0811046210982087 2.0324176097259716 2.6912660887683573 1.1066387280595116 1.9002074413410543 +2.5656467273257975 4.684877843800161 4.54733808237542 1.5778441121399744 3.64815500826073 +2.401014283960368 1.9734424209380688 1.4811483263235434 1.576914569418602 0.4381653470607891 +1.8407659466794177 1.8393681403955804 1.5411215127837332 3.7822887987914013 2.241167721910474 +2.9685891807818683 1.5733294327726934 3.70413092448584 4.6893163583070905 1.708022278375839 +3.28552838655961 2.261319911235642 3.9108014932542456 4.406338617924899 1.137787345180243 +3.043453174280701 2.8786698613183477 3.633850760044496 2.3103188970800983 1.3337504011294086 +1.18508197827745 4.325030500210833 1.2710887877392558 1.1527669714441875 3.1421770753098874 +3.579870680695611 4.3989369054087195 2.081837913147848 1.995671230712091 0.823586168914807 +3.9504940380993108 4.788339026861328 4.526599861303675 4.210113941773937 0.8956269103003819 +2.6042305546238746 4.636403195763396 4.904661633989845 2.83312859042601 2.9018915889420853 +1.5844386789608875 2.1901549926346604 4.0178944464850135 3.147865333407519 1.0601145741159095 +3.344442185832609 1.7927050882613398 4.772334238087254 4.8678686102177 1.554675154570004 +2.1788340800798167 4.04109964626455 1.6600494515695936 1.1087985619224043 1.9421407215580864 +1.713332412066975 3.9367175915108215 3.3081844505620395 1.757722610437586 2.7106039131257544 +2.573711513468293 4.271563936957511 2.094826139450745 2.1668352466575893 1.6993787580963045 +3.8803271769485206 1.3013025212223073 2.638442632484983 3.370220272366156 2.680833207992204 +4.380621463424858 1.0299378851688705 4.200339875462232 4.947702069498471 3.433020636504973 +3.966273575024063 2.9782724269763285 1.0754160312879737 1.238194197753368 1.0013206279816058 +1.8687494410720045 1.4227455133790272 2.9621463101024874 1.6169364884147948 1.4172187438368844 +1.1978652988928413 2.6298381285495056 2.6970529634843765 2.7361973053710544 1.432507753688145 +3.868905405587175 1.7508196170606203 3.143649815219324 2.12771169137927 2.349131260493931 +4.700158288718241 4.652691967934988 3.400147855378821 4.14377995239453 0.7451454538012555 +2.5941928805368426 4.245727264503341 1.7851569444063862 3.3870021473692784 2.300755066424679 +3.3595488570046665 2.112677709231052 4.78163167797196 4.940862878467874 1.256997308812418 +4.57206081015403 1.9580723885117362 2.7936741130831706 2.7469363350078537 2.614406220995388 +4.092274644838904 4.8078396940044446 1.2724146869640118 1.3448390099920369 0.7192208437978911 +2.3943129559614573 3.6566294754060147 3.3148418126645742 4.177594495629387 1.5289817484932922 +2.3129761927808916 3.1095330979063442 1.2417886721557938 1.2803373499235748 0.7974891244779979 +3.648616013765504 3.142605212275053 3.457772768197661 2.0943864749208205 1.454258957655125 +2.108489291306866 3.85044127338981 2.636339796434887 3.053296913301704 1.7911588274601964 +4.775692879390065 1.902301648553915 1.7023416327541754 1.672616088375165 2.873544983715187 +1.491141179479754 2.2227517525499207 2.9241155975047164 4.607746307042807 1.835719585537996 +3.6364810102497547 3.4643032318876124 1.3517280154253033 1.9345675315906625 0.6077393264925293 +1.4372124486896256 2.5727443393349634 3.198201213864673 1.7371651464098439 1.8504213209635387 +3.6090750306825337 2.616925061238211 3.3041857714902427 4.5213398331580645 1.5702947403920215 +4.6623333874054165 2.4453877556616543 3.6726867668538774 1.6666137476253766 2.9898456302264673 +3.4711964753204505 2.7182312554818626 1.8013343728036637 3.005956912782331 1.420588640708924 +3.0152220641150134 4.5674835171631285 2.8127159339997596 1.7402050193947716 1.8867419750898302 +3.095152316817936 3.760278059875038 3.0941128651071748 4.595880585323216 1.6424672111065557 +2.521365231422543 4.221921796641201 2.047122915987733 3.7977101002075297 2.4405835615817124 +3.4158455173648066 1.6249894270070069 1.8622461311376983 1.2759134940580945 1.8843968524905645 +1.2509869123148079 1.5739408879447772 4.615794886139 1.4830884340176431 3.1493092870561283 +3.6408228438982695 4.1991227345470605 4.237812164061237 2.2991353161769696 2.0174654119515734 +1.125876727701561 1.8602767773754465 2.0890698369824214 2.024775208175058 0.7372090831334636 +4.26798460441964 4.496636080264224 2.71863623482147 2.4082395640048495 0.3855224904722783 +1.222828324763571 3.4184114928891507 1.058498367192254 4.33681160186919 3.9456207512651686 +3.5857190513966444 4.908757378007576 4.307341872537927 3.30273118225252 1.661226370100468 +2.662334090964187 4.428569908424339 1.0940734148385522 1.3722497968582612 1.7880075677671798 +2.3418151416958533 4.724867246135236 1.113217039991206 4.339590367484055 4.011037544181088 +4.202172474306363 4.524302233631577 3.3287739304428303 2.9504845054244733 0.4968606151866329 +1.2590969099570084 4.147833734558602 1.0353033827633698 2.9059239025034977 3.441514429823319 +2.074778746515481 4.745447114649256 1.4752318900614005 3.1493054776334373 3.1519822190419524 +3.4798675628215756 4.4344782279325585 4.630542044435714 3.129724663271827 1.7786889367023286 +3.9427487607372127 1.4911333696170694 1.8459808199663867 4.788540234712953 3.830022706889716 +4.361290149716492 4.241938063580184 3.343258653954093 1.0129708073382475 2.333342317053073 +3.686013895889482 3.2003010722801855 2.5582662399819167 3.2060791018107455 0.8096779921483435 +4.587396804122844 4.052078653065863 2.5104865133099175 3.998975007329356 1.5818228471226863 +1.072503883153293 1.9517074419794929 2.0319703471770607 3.86775341564644 2.035460235998607 +1.0034372681792898 1.275726499469516 4.526466959566637 4.538387437217752 0.272550038092188 +1.8799777882478632 1.1183167861575374 1.45022564319915 2.6962462618673237 1.4603749053758277 +1.8142875291720415 2.7078307296633883 1.9200276609442626 3.749388684948287 2.0359226918744664 +1.1134616927115069 2.8366454515602286 4.5173201270545755 2.05754426920304 3.003308099018359 +1.4375987455599137 3.288584139698088 4.6125033027246625 1.9392785631965697 3.2515038731851282 +3.5685468139904613 1.5884944415875482 2.606332633625444 2.938382900894469 2.007701366601078 +2.057763303098757 1.715548961869532 3.13662925889808 4.014247800611226 0.9419792779576747 +2.5332370518065654 2.7779649857670177 3.0960767598814156 4.921965885789584 1.8422168335378566 +2.5355601711773383 2.8490958867472225 3.9491635944102246 1.7279462730506334 2.2432367315211734 +1.2901102635370894 3.7283623197666733 4.166676552718878 1.2654111075666177 3.789777602042412 +1.3045152463135241 2.433447990402448 4.783992990954374 4.40390024926793 1.1912009204827143 +3.848998385989965 2.9806969276866617 3.0514182736029825 2.49608757196557 1.0306986032166452 +4.484709128331 2.6148744480823245 2.7176101060847553 2.713464357017195 1.8698392761668037 +3.3208321036056296 4.774056709597135 2.290482898521339 4.648816144877165 2.7701258917829668 +2.872791816773122 4.222728674766609 3.09042332408918 1.8897244664510424 1.8066563777605458 +3.8041585499911554 1.5449642850121257 4.673874932555558 4.4361381717112724 2.2716684384766346 +4.123455678526286 4.365600735709956 4.010747403912822 2.3320045183554967 1.6961167131208326 +2.9690218433451054 3.0679592622996354 4.679766914762292 1.6506631973737065 3.0307190472834544 +1.437540592212632 1.0430631736112415 2.4526848450518877 3.2229636229210348 0.8654142530730607 +1.761601384697149 1.522328442625954 2.6117820916982644 3.434205099058871 0.8565227048032467 +4.591298955980878 2.127363220715297 2.6949683720659117 3.3289841528745328 2.544200329736851 +4.81144445801311 3.427851991049105 3.5668314900379046 4.814889812047217 1.8633243651539153 +2.910670749546719 4.206337423843705 4.910007509584302 2.9824888721829264 2.3225159264068496 +1.1037805013711153 4.3795511265312586 3.5585950352947275 3.732179750729856 3.280366571298819 +3.828833753688175 2.8468035414725144 4.2701334464145555 4.404177585525259 0.991136301895085 +2.5826208248572673 2.0200669308895782 3.542491350950223 2.2504195530613096 1.409225466175693 +4.177106451635122 1.7389211158986786 3.741888116372448 4.9350155166173 2.7144614059911176 +3.471602164516485 4.4254961715442285 2.6062573177792494 1.6549294120481859 1.3471965561365185 +3.956841932881103 1.543784561116757 4.3845859148445685 1.5199738215458454 3.7455104224256996 +2.8705608329095793 4.871693161340634 2.962263833582251 3.5069112480542985 2.073926566198278 +4.073040964675654 4.332833478161998 1.7661698173165394 2.1312865345605534 0.44810977145627784 +3.7997958426726233 2.372087793069826 3.259676821266294 4.622839097949826 1.9739710401811001 +2.9201797341171254 2.071660374011996 3.7012458171389793 1.833778620295576 2.0511993651908575 +2.788591373198586 3.6259098571863317 4.038392622159784 1.5622712997121853 2.613862859276894 +2.351195397200967 3.0437296149109905 3.2702800044607048 1.5552191114848735 1.8496046900119738 +1.2833628003320192 4.474789920060973 1.6438098683668767 4.935159543283989 4.58455992905736 +3.940034667989367 4.908154177075952 3.1741609227583627 4.968818790920816 2.0391302674501817 +3.9795544353737737 2.648554817192009 3.1248497636782586 3.0188413195547743 1.3352145047989425 +1.4870722673519787 2.548757881061222 1.2900598812684523 2.4172132151249555 1.548435010060481 +1.3389766802688334 2.42822249197883 4.29830399175542 3.799050600365658 1.1982113282480467 +4.146706859698395 1.2618445216896794 2.2744044276271094 2.1492060789738807 2.8875777627220027 +1.041938767790756 4.830422270954717 1.173399091313462 4.381784877166789 4.964508697203697 +2.8868171409816696 3.3329258905287533 4.313865463386883 4.0021979871691595 0.5441963176597101 +3.7323336579631543 4.100789518263932 3.231273732880915 3.2009070646038293 0.36970509265120594 +4.071521695555412 4.786781690937627 3.471769942634698 3.102283390003083 0.805057248628792 +1.6836377935752065 4.886183338634965 2.406974529496815 1.6594393182206142 3.2886329774360443 +1.5851288252839009 3.3268772842416836 2.2653866936253984 1.338578938790889 1.9729825920932995 +4.47443325416573 2.3008904352205755 2.805508994352861 4.722943807513149 2.89842106128614 +4.2657813932881306 1.4640721863937474 1.4921652274793056 2.7472060263190126 3.069967733828641 +4.554211488740618 4.655644504366675 3.16002044342078 4.952558852459848 1.795405972068521 +2.7372536447864255 3.4310591763223366 2.146260957423634 3.9460841998520664 1.9289193398313533 +4.304802209898149 3.2568101932854785 3.351874407358704 2.6327809689609607 1.2709770415041262 +2.9104207893699368 4.098182757365023 2.228117289469801 1.652518025578277 1.3198837089713715 +3.6025787643355773 1.1252258623345033 2.274084148925618 3.1183052583523243 2.61724792151122 +1.6992014957970771 3.826235425336196 1.1937561799886405 3.1292329505965135 2.8758205206468133 +3.8384508802056945 2.44124597651704 1.2080508745043566 4.260852460085285 3.3573470276122865 +1.1049392862416183 3.9198046819377006 2.849103033858116 1.163811120639767 3.2808041740778164 +2.4562560876045456 2.9813285928931283 1.167800117471141 1.582633528405791 0.6691695559704618 +1.9927077815040728 2.2728346960292773 3.554186845071722 1.4459973065354124 2.126719120766856 +1.094305060208025 1.4156646831865132 3.3281303236601145 3.255778873190052 0.3294036121022323 +4.2736676580233866 1.3749479729440734 4.141324626765206 1.544889477223112 3.8915358534188 +2.682779295549996 1.3191472844795462 1.2459557104068324 2.9230262406770895 2.1614943500081143 +2.420564546664839 1.344884747268186 1.2899370428108132 4.393355554696704 3.284553773459351 +1.1130471344231028 4.620174422661835 4.958074436619485 4.808713197936391 3.5103063392715046 +4.6360502209463075 2.3927565274744698 3.0318443750693436 3.8591554138307753 2.390985183983171 +3.1108141397481424 1.5416167364578497 4.298335957053185 4.186876789345982 1.5731508626190243 +1.2511342228166495 3.7349221264638155 2.813058020914623 4.278145688696758 2.88369281037202 +3.2576174602259376 2.7845843083623274 3.1832717922353857 2.9526916116539956 0.5262390924655519 +3.0831638082297967 4.522981430828625 3.396810831685992 4.051379299913195 1.5816240596119697 +3.0060776414955774 4.571975345057508 2.5164065225936065 2.3171005352829015 1.5785304857995055 +1.0838978042345961 2.1310128232667522 3.870131934254419 4.990991922717714 1.5338764542233023 +1.3413093185081508 4.368983219445914 1.699017796551126 2.212788473863607 3.07095580549213 +3.847061315749035 4.892989438613057 4.865004681339759 4.762620933320868 1.050927242988901 +1.5957318074091575 1.9399730898726286 1.757350728569743 2.625441069966619 0.9338537901505997 +3.6827166444626203 3.4080797378696084 3.5170594193521576 1.5546291310500076 1.9815544572150015 +2.721404664003794 1.2107758152145953 2.889292814131328 2.4767651613838297 1.5659433524478272 +3.4075225459452785 3.2176364890476568 3.113083915844892 1.3750320430035257 1.7483938421567116 +1.1782645486941092 1.7886006312949534 4.648809727589393 4.925300270219125 0.670042650797864 +2.0173398456967035 4.629162830663286 3.149179963854964 2.6602063736238524 2.657200496150648 +2.976961795907921 4.70901131731029 2.0210106031204904 3.6682051394746082 2.3902396083206874 +3.7115041342520283 1.1184061026194363 3.728390034348547 1.960336072323829 3.1384984011925394 +4.502281082366169 4.453482257997974 1.7571321849458714 1.9303788258349912 0.17998812138327783 +1.8435030295389083 1.9007423785825113 1.6803291325662326 2.195878685115899 0.5187173452016973 +4.97768086364435 4.257228015044884 2.7448541931014265 2.92959255337247 0.7437610965966955 +2.337339785192822 4.40773225588019 1.161382517036134 1.5043100799575368 2.0986005565829235 +2.352527799351431 3.484082748332776 3.589579563879554 1.2638055829108805 2.586434072833685 +4.033053799831061 3.095702838333305 1.67444129820226 4.760959711734093 3.225712749469771 +2.6847015752938015 4.003594514770995 1.275901540850247 1.6163507162469153 1.3621248939913932 +2.122765308872144 2.0194243262514613 4.9851467099556075 1.4602875605820071 3.5263736871766427 +1.9086736585207071 1.2803266599012888 2.6468495411128674 1.0984552969094485 1.6710310248934062 +3.929121145779729 1.1214963883399443 4.0527887730669105 4.102109763820078 2.8080579300857886 +4.639733704120151 3.307294743726123 2.2056725694840904 1.6990707398630338 1.4254960529413334 +2.6931832881724156 3.4378512359897 2.200997976716219 1.8160956679914038 0.838260186200024 +3.9316454668370246 3.1979465552714217 2.2761336739907443 2.4164999664225744 0.7470052134246511 +1.1594944915382017 3.3890546554722047 3.020501584178743 4.061385195843745 2.4605644103811217 +2.6386400562158627 2.406604245305807 4.365391676318273 1.4755493540870135 2.899142850034066 +2.52316782036792 4.2589345234948075 4.194320853687012 3.7856799750534216 1.7832199570929035 +4.331857011222194 4.387380812150531 3.8432794661064302 4.180794858734508 0.34205194449149845 +3.2451510166712163 3.397932222964532 4.322268209852205 2.262700450407392 2.0652267315578134 +3.5960452684677113 1.6748289438743345 2.2225008486423885 2.176726517754195 1.9217615500504597 +3.3885156058551678 2.904341704873594 2.905226921117432 1.243825010015298 1.7305145698911457 +2.4918216523618812 2.823979256299097 2.4569436103066735 1.1072875341843633 1.3899281267990742 +4.036339449777362 4.479896920907018 2.8530851795336805 4.012226929617432 1.2411095144998923 +3.4614549444282225 4.418801033153883 1.1152436181735204 1.4034337171622098 0.999782509725706 +2.3492556495215795 3.260876947443792 3.031621327083488 1.9557189068663585 1.4101841754375406 +1.7806858273268404 4.641928847628121 4.397706367290606 3.347281850463028 3.047967074424401 +4.7726012053503055 2.280632456968475 1.3580404111518516 3.4575575972430133 3.258508962332904 +2.077640441350751 4.046647707440512 1.3637804790596832 4.167345373755655 3.425925529354937 +2.4752201464958046 4.34206139987394 3.4203475419449827 3.0312180257585966 1.9069656645262127 +3.047049776509847 1.488805963755505 3.8995740739554345 1.3272821313376042 3.0074589969015038 +3.8845336264505796 3.648126468615501 4.176677493860763 4.909859666064199 0.770353452586934 +2.5148614088465413 1.984143468326855 1.2804007879001147 3.252795332707222 2.042547863031438 +4.917073526386533 1.6813312453552336 3.238774352418582 2.9843875258189954 3.2457265391281878 +2.8052993012267744 4.746114583048551 3.6472623211245554 3.895997619092461 1.9566893485191066 +2.130289576558787 1.534733895294638 3.8676967218999727 4.815835457129037 1.1196667498536221 +1.3250321323515197 1.5797458103993942 3.204593257355601 1.8956125289118537 1.3335327537116586 +4.0916223556489415 2.228137111384202 2.414787045747571 2.0036153625051982 1.9083079962869678 +1.743924847859426 4.946835614449172 4.423045446121462 2.717380667973302 3.628764213082978 +4.234832255765386 1.9968625781959215 1.7093323595368832 1.9515879175440012 2.251043321019325 +3.911723435409987 2.721124598532278 1.8293047627773222 2.5002241447577447 1.366622993912932 +4.637026705569086 1.7469327153722976 1.4556052343612063 1.1584878726367025 2.9053264874725744 +2.5161959004702124 3.76801656515062 2.756492494469454 4.18089702158073 1.8963077897261287 +2.826652796538683 4.679256489812987 3.587644558560864 1.14434133380714 3.066247069697016 +2.4493532521089483 4.621912010089982 4.975242260993789 3.4873693931502068 2.6332066435707584 +2.388535119455526 3.9865697366358925 3.745722097014685 3.836415352318698 1.6006061052815086 +3.769580854804872 3.6881571326406517 1.4913326915725107 3.048915992909364 1.5597100894507567 +2.755787944905199 3.9266659695666677 1.9077988959244783 3.1765541792437424 1.7264690317482352 +4.618540617070578 2.10865381523608 4.867631382184863 1.3889983016274985 4.289571058645727 +3.40913763245773 1.872083341172881 3.916563958447571 3.1180855444057975 1.7320807348526903 +1.9722759057954002 2.4298225241131988 4.704335905776567 1.7920136562141509 2.9480450799182747 +3.6161897141954262 4.819930953089653 3.425463391140114 1.0539839844392493 2.659493851585465 +3.9790535811640564 4.246163730087277 2.299571038422274 4.517100978891447 2.2335592377492475 +3.473074656782011 1.8280435764629597 3.728185458015392 2.24153591943335 2.2172627507316007 +2.680956738778747 3.7233790450749304 2.0553280963601304 3.762555068485255 2.00031702462769 +3.874691609343701 4.338115227996247 2.112924559918481 3.469688625122899 1.4337259776383484 +4.560251044453748 3.9339692343464563 1.4359721335278297 4.020102829621472 2.6589397060040074 +4.2075659776866825 4.8409468290801225 2.6422911512918974 4.631893393968593 2.087986682662515 +3.700604667670018 2.6061525133203807 1.6957132216415425 3.3722553930644072 2.0021536331460323 +2.0519123392200216 2.261194381804114 4.011479559773624 3.8363742096358426 0.27287516742101126 +4.147876695414402 2.130323796862388 1.0085376075603274 1.4191602329935096 2.0589149178567996 +4.577428209268166 1.5686994570800024 4.251797665857204 4.010300535197755 3.0184051365515017 +4.173041943478129 2.9753541633675646 3.931044224685971 4.911365962788474 1.5477360010100183 +1.0822113430680984 1.2044440467613367 1.7005116336682602 3.0744286271399024 1.3793435898289865 +4.190911885642769 3.3137954945702375 1.1587453257524016 3.593512118806856 2.5879378856627864 +1.21190976103673 1.5951202555747566 2.389860218410073 3.7485987840433572 1.4117438765099264 +2.675637951892596 2.2974577424677936 4.489037662931882 3.7816180582233976 0.802161310414866 +2.723908723549757 2.225215571531385 3.979341202171572 4.805220787687519 0.9647652303239435 +3.7040610464378583 3.7196710241806414 2.643393882334238 1.8195661143153505 0.8239756445211911 +4.040617266089664 1.3245130014466704 4.557926363179664 1.060946770399481 4.427876313621793 +2.958489692084394 1.5717179327196216 1.4720338991401798 2.5922762506113632 1.7827167017227814 +2.1003197755149055 4.958263204346893 4.211268527894747 1.01672613780535 4.286366961015122 +3.0009003168168102 3.911584252103184 4.686235844796316 1.4922023652018979 3.3213242989444294 +1.7449332238638537 2.2132454732260833 3.155594260693315 1.6627224696031981 1.5646029999764557 +3.392427477402608 1.345863643858415 1.2694641492997887 2.4326371781010723 2.3540167840739485 +2.5312630427161067 4.1932731309710025 2.4133583959986833 3.054336602390415 1.781328323058444 +2.17364310583023 1.5241361865197605 3.973873341955217 4.930812026459243 1.1565426425914755 +4.756602234724268 3.7684943541244187 1.564298986666933 1.0834199605610317 1.0989093781800596 +3.2489436816525763 3.9222041926174325 4.209601827712307 1.4273869856227748 2.8625162258348755 +1.2833624786381592 1.4930066458795097 3.110816230273716 3.612783014504883 0.5439865157609133 +2.9647772924516222 4.348860689521491 2.1331632499123643 3.943423109053139 2.2787557147840234 +4.984174961762252 3.4944158864167907 4.66422178918698 1.4612055106930457 3.5325196932036063 +1.535817996001144 2.47068056846992 1.526566040038348 4.327822190920779 2.953134614652639 +4.354902669324165 3.5812208874507245 1.0493402531559761 4.122701853189808 3.169248337408316 +2.6542063502483226 4.7976728791154715 1.2501506309259431 2.3739171603071054 2.4201859376773442 +2.6994290092808884 1.582330631646483 1.5837323457617396 3.8307598933898737 2.5093906800482717 +4.037733396267075 4.337446855064748 3.543208757628897 4.638795799812678 1.135842913604461 +4.667884533218806 3.807148501512933 3.042603970711628 3.8484782326667686 1.1791097668828443 +3.396248746965056 1.3161552154004097 1.8063778295816184 3.4344924905618193 2.6415045806047273 +3.4819301087731263 2.5440339843862136 2.028958750432518 2.026919395123129 0.9378983415648355 +4.022799113555396 3.675143536345039 2.5357713417952783 1.2118068816469791 1.368848527814982 +1.205208231871557 3.8477318518696686 3.3492169574251776 2.4431818440827073 2.793533731469414 +3.032798259275531 3.136513467151529 3.8491243366402617 2.237210516301964 1.6152470425734782 +1.11002895073343 2.633816619033414 3.679947682165673 2.5978573829528897 1.8689163367346096 +1.165346052291833 1.9459230077461318 4.941885406420684 4.035370090027801 1.1962735482493925 +3.456570169104287 3.890319670746095 1.904707457925371 2.9387802428645124 1.121358620034781 +4.807916140121479 3.9711688532554996 3.9978537748840903 4.934686516322344 1.2561057310227879 +1.4126920054388554 2.181917978973941 4.141600789692699 2.365238210036765 1.9357615072014642 +2.30339506158359 3.0129730796855085 2.4129737246762755 4.243981124011304 1.963692710225577 +3.6932064784004126 2.417995767910042 3.1412080581213133 4.217137301957155 1.6684681878569103 +4.811206724837019 2.6018867060212005 4.731376104239075 2.3743670633033123 3.2305706252291184 +3.0935451586516716 4.915431416466323 3.712560101605555 4.981161474999052 2.2200493194948936 +1.2014355298686379 1.1657418775208472 4.661349665221146 3.0209574317091823 1.640780520540238 +2.6078412943297935 3.6119849428863353 3.8096726329541775 1.0885926927042835 2.900444881077179 +4.968917586708963 1.3155927189711778 1.20249664031084 4.660490974683105 5.030358576262929 +4.503743161962637 2.4111961207083445 2.463682337039587 3.3107702387379927 2.257501059372044 +1.6706881889990761 3.2514742768924454 3.7205578818770015 4.874103213790619 1.956923986376814 +4.748491563997751 1.203744684015457 3.906476320498823 3.1635442807792606 3.6217645504347846 +2.1794092608919775 1.4017727685095518 1.4334395619130604 1.0770037820328686 0.8554326270745365 +2.851048784193527 4.72544548114459 3.6957797385195366 3.558757152554731 1.8793983522940356 +3.1235542818819826 1.48603385117177 1.8431192936521925 1.236691934087839 1.7462036832573553 +2.2400386602507387 4.2476420322546975 2.4434380350888665 2.2222568527766433 2.019750582297403 +3.561123088405572 1.957152977455027 2.3220589859680647 1.712772951970838 1.7157941566652959 +1.2586377822966646 3.436576380069656 3.381893038889891 1.5723528807743317 2.8315812048221867 +1.2696273889961183 4.015638648761386 1.3727987746234365 1.908978437672801 2.797868200938951 +4.0162722460125 3.4670513822746334 2.76665981621545 4.352201185671139 1.6779704977800978 +1.3473150893418504 2.57917973744248 1.6079837873731262 3.327329597952655 2.1150982311934037 +4.81600863091468 4.66478922705622 4.048644182315856 4.08923921786762 0.1565735131328314 +3.5803675378717443 1.4159423196983476 3.9706854508661347 2.810910273137651 2.455568159905176 +4.3906464755915415 3.0766578957863135 2.3161052001303233 4.435660891796645 2.4938087973887773 +4.1215884086869465 4.4677778388142215 3.2735319195077666 4.747108765994249 1.5136960870772225 +4.596640667670585 2.514988712076743 1.78725907421251 2.0475587795255175 2.0978633894545435 +4.664295165835522 1.121747230863238 4.1757860901689385 2.288014143055306 4.0141411031359615 +3.9596530833975776 4.672761027151527 4.384093694194895 2.3595082311974713 2.1465016273987496 +3.0676933944373395 3.1531094853958748 4.122071815067022 3.7720174335155505 0.3603248237882313 +4.331350595672564 3.856685210564409 3.279802736161194 1.1747381538404174 2.157916616452364 +3.4728306707519363 4.285343708930936 2.1181699994409464 4.425492062732763 2.4462036998099883 +2.920346660404166 4.216764109826654 2.5915494220893245 4.28223394237726 2.130519267762758 +4.905902928724565 2.4049072425347573 3.9515189164105444 2.890350339860766 2.716810293376538 +1.3975707206656884 1.2999942106303464 4.131728279567124 4.643701614330239 0.5211889012816198 +2.5829136719707138 4.465838369782914 1.4213019153147362 3.751596939503099 2.995943977678523 +4.0212958482608 2.7494173322659723 3.5463109967496207 3.2032054782851898 1.3173444334151758 +3.7834594501914642 3.033661159471676 1.978900613736462 2.37298424405158 0.8470533539563249 +4.304044367418443 1.7725637993971728 2.5057278182886034 2.1626302877021835 2.554625174416747 +3.965440130452246 4.894997016356594 4.5850302344054565 2.741268577213066 2.0648324514751843 +3.0173685198146654 3.8969914846780203 2.2954174182270934 2.3815521300360665 0.8838301583977624 +4.954726273490943 2.117753599070815 1.792303647390665 4.333537622983062 3.8087116029061105 +1.2512553159225872 2.7843021494754177 4.532486496942314 4.8877792708670125 1.5736789853936115 +2.3076789403301343 1.5585696052877052 2.7279085076323355 4.699496529118557 2.1091050524607975 +4.608460566075553 4.443873667145192 3.0188682833603977 4.243233248059068 1.235377842638069 +1.9808705255672892 1.9213666938549059 4.4250864015105105 4.537837347219627 0.12748914364272654 +3.3605363215341026 4.2790570536691686 3.9664457261007198 3.690215661468956 0.9591576429182045 +2.3749361764391033 4.9553035156310195 2.282592089316327 2.946305242982063 2.6643593517987183 +1.08504321741434 4.44823984512363 1.205407691470962 2.326153867209105 3.5450195411403325 +4.696954241537696 2.839852426583107 3.5113803882644663 1.173624171125327 2.9856207531902523 +3.071288904295463 3.745437390564287 2.1152618152505624 3.2389738056691026 1.310421618773494 +4.671499969312408 2.821489695473015 4.5504996857911735 1.511081370670539 3.55817392880141 +1.2853237225614031 3.517638870031848 1.7234676362098784 4.731196386966619 3.7456191952405815 +3.6005828959355264 2.097827262886371 2.156789953489407 2.6378239890696418 1.5778682568730427 +3.8470811199574486 4.265958403060503 4.606942750983103 4.9268955498781875 0.5270938927938685 +2.6212744083375217 1.735744503727016 1.7528051005353813 4.315803051298092 2.711664010819435 +1.205211665287154 3.743927766652152 1.459866338782534 4.346323087196666 3.844048907570685 +2.369290973131782 3.02473227893549 1.442270696604584 4.268517330142403 2.90125375293812 +2.352920225653371 4.73603237959261 3.4747158678494676 4.615620289662381 2.6421367182576256 +2.6216783917552426 3.051926720169114 1.9507733285937743 3.9134636060858474 2.0092950877023616 +3.6484537446286076 2.95912122324665 1.2469060818528797 1.6470629525207467 0.7970601270779432 +2.4465786578922932 4.636946608576755 3.0976027130198136 2.2572474790749504 2.3460410649867525 +3.8031495451303945 4.82571834329001 1.4976439933640533 2.929579386855437 1.7595698105227096 +1.2665634933982988 2.2324645787600645 3.978784018101542 1.7557301992590428 2.42382614644146 +4.466484993879554 3.992261581416413 2.16318139942609 3.1378063510198584 1.0838734433490573 +4.288028920974904 2.7263125150825793 4.7112609627615285 3.7152272807680555 1.852307001579035 +4.036240155497838 4.133024077542065 1.4700237054604006 2.1301077948226106 0.6671417634921389 +3.354234138875781 1.7822639212017655 3.1847987041878723 3.3199660544704814 1.5777707621313413 +2.8920101095630284 4.496101305598635 3.288210399371959 3.8572309557342987 1.7020261333956799 +3.2831178644689945 4.7834207305364576 2.9808738586768486 3.5736840001109282 1.6131746817122248 +1.6633645159388912 3.48470733947461 1.6922229112060196 1.7219418765611931 1.8215852705121565 +1.377179240208398 3.213012582074065 3.6013120619781342 4.11673617430079 1.9068156897480313 +3.3642177808314755 4.877661936788339 3.0864578201347856 1.5497665786717603 2.1568340651958273 +1.8968400817200033 3.6789027824099323 3.9787003762152806 3.9563277736774354 1.7822031316700686 +3.8006312073066417 1.8401818056363606 1.0815810069532166 4.416263471661633 3.8682643390729083 +2.2094974707010717 4.868986957956986 2.0445520454578276 1.684578685968246 2.68374088771009 +3.9268351672589015 1.3971213181098427 2.7678477079954953 1.1434576062953603 3.006342522248242 +4.365931964735045 3.67574631770359 3.2425469788265002 2.8970089597455364 0.7718502121517008 +1.3607129800445574 2.6967195241237216 3.205657434431817 1.6679893081387211 2.0369920845305396 +3.300796642201101 3.820709350295413 1.2151282951888076 3.1372684610108323 1.99121371055552 +3.1372929914115955 1.4025536048718923 1.143458353624224 4.262142004207883 3.5686844146870094 +2.4319291370177005 4.575645280340428 2.64529998216635 2.5478730618423184 2.14592891493318 +4.133325024217031 3.9792836079101335 2.9139629606747026 2.876552772456143 0.1585190213204177 +1.4776670355549326 2.8256617428984563 1.9305988995564758 3.80998914097431 2.312833199900662 +4.620423756760012 2.643321594853458 2.124916318043675 4.074455096958202 2.7766228424305512 +4.809978492945206 2.4801627216802027 1.1078941058478127 4.418285665956946 4.048053088742404 +1.9836680183111728 2.6309669730830705 1.652131919987728 1.145283090095623 0.822126312200131 +2.3556371442312503 2.1067662060338304 1.7216109641828576 4.264458420922949 2.5549970512955227 +1.7536406264395081 1.756122023700431 4.863923539557432 2.929402750950599 1.9345223800422602 +1.5530539640207586 2.0066032444458703 4.413438773060022 4.809333954335007 0.602029853355205 +2.733429267913713 4.409590453728644 1.8087417914749828 4.919806085820616 3.5338700265268397 +2.295488490511261 1.2415556346889174 3.1754401953955402 3.980361453151032 1.3261495751869485 +3.8901039595824467 2.0622323288016005 4.674890162339031 1.4658782644279325 3.6930843558668434 +2.382057695612139 4.005907667000276 2.5498210127218264 1.1823810677621047 2.1229179759587273 +2.245780598053392 4.20005667691712 1.5126942581741205 2.9201929119304815 2.408370289790371 +3.1219293102955006 4.138959311040523 1.5853696199087262 2.58933710125802 1.42909087395528 +2.170140389326229 2.9064271317753656 3.4772965317592863 1.6892819336656193 1.933678972865563 +2.9559983952437983 3.5067479084187196 1.7936759287157535 2.6398362400790356 1.0096099735981314 +3.6368933264556613 1.4348499910898789 3.443925033787581 4.560790957731916 2.4690857301634734 +3.912615603189209 4.401422513020986 4.7525479783423075 2.701040757379748 2.1089367161583614 +1.7337420620711876 1.7012266484031588 3.12887127907752 4.235009048706596 1.1066155689877084 +2.00854612254666 4.549697840238354 2.8116637763458625 1.2059307680677898 3.005965825853846 +3.898846070290453 4.489565081781768 1.7925051011014483 4.783467110433011 3.0487378850603037 +4.323436695162638 2.0268724159249527 3.54156617247197 1.1324941658533856 3.3283382372805503 +3.0317000665622578 3.390927996498198 2.8991966472756556 1.8112196315323117 1.1457480929208887 +3.8843027165165207 1.2394149078445045 3.25009638783348 3.8927347448753236 2.721840476296012 +2.8296862739066206 2.6089969053852387 3.672546659483129 3.0396619352681533 0.6702588093587672 +1.1143704957265212 4.54022424571976 4.178061330214345 3.673204376736574 3.462853514057098 +3.511726752822969 2.856448935206456 2.2647518122981674 2.703781743570263 0.7887561719651017 +2.351773726984027 4.148003610905544 1.1534786360554228 2.1047850345372137 2.0325908736597986 +4.019354489368125 3.5563850134931907 1.6053125434827273 4.357157784544441 2.7905184045882785 +2.6164414740895037 1.303625771968075 1.899263362667809 3.6935957188774093 2.2233114204441256 +1.5537244188822186 1.8833966113265688 4.572963737824546 1.9378692341170156 2.6556367970678334 +2.3916161028083054 3.743722491030533 3.283612738331223 3.633627232972362 1.3966752777686908 +3.1397128535301917 3.301572406006043 4.384369389361653 1.62654490794554 2.762570249790172 +3.00413442389731 4.945931196556567 4.301760214406812 2.8577228310107388 2.419879887712464 +3.6520894149408214 2.074054374047058 2.1218814840152715 1.5178849006306296 1.6896764373775537 +2.542047538498063 3.9729788005428457 2.4144050381112345 3.43868630890317 1.759748958912099 +4.281027498053327 1.6753812116559827 3.083889482120275 3.258605747931887 2.611497337420704 +1.4846005306713503 2.467208664644339 3.2592431894894354 4.390545603786777 1.4984538356402155 +2.325513008919095 2.5104731186213596 4.163579081504565 1.1627180292944468 3.006555719898218 +1.223993442634685 4.561509553075209 3.690475481892562 2.7773727182674635 3.460169135228773 +2.493404672079115 1.0735225056098807 4.384922233710395 1.7665826161157931 2.9785512786794204 +3.4838578514141427 2.336956549037559 2.2266832599401587 1.0138314653603522 1.6692489547723437 +3.514301565756331 4.834388118610797 2.2177401658035514 1.511848497104788 1.4969674528744814 +4.011741617897574 3.8811104448715414 4.795825057627798 2.3053341147575708 2.4939145213669196 +4.771134446661328 4.074945152953083 4.335574453082572 4.9854324506185215 0.9523628245765479 +3.505068887924069 3.5465658517552825 3.819113928581165 1.1032307929987795 2.7162001406648995 +1.9897231199369587 2.4969240872002225 2.0053622593928546 1.2880952680860993 0.8784786611016999 +2.996006657049326 1.251189133301501 1.676274304131836 4.569952223739173 3.3790176225643656 +2.3163244318778724 3.1008050856578855 2.8407172954542386 1.4456171452339412 1.6005356369977561 +3.433482844673549 2.989994195324179 4.933678656257641 1.148780861461621 3.8107917155301863 +1.325377823045502 1.4254699350094593 2.2145346722546 1.4591167577794826 0.7620201154742184 +1.1326369595846728 2.5770883342684203 2.7394376708570096 2.523671491297804 1.4604775993035097 +4.831989543674139 2.385645371186688 4.694284534127612 2.805864427760158 3.090425586937206 +1.6141878027579604 4.901634243362505 1.148085641160519 1.0312531910913614 3.2895218377801734 +3.408850581648281 4.809904190492502 4.091516933155241 4.210251629141281 1.4060757955694685 +2.473280069759579 2.8070889234022336 2.8872274486744143 4.504610220248381 1.6514706720237295 +4.984870471974226 3.4736414764579786 1.4572000007258348 1.008769061157023 1.576357632154459 +1.069440667078124 2.235162742032951 2.48519498606594 1.9305766498815187 1.290933559432461 +3.4297744113478066 2.2433029405866596 2.415617297057289 1.7081793249473876 1.3813699849472223 +1.9927245802080416 1.9100560871001888 4.886017727246131 2.673690598399636 2.213871135541294 +4.459664394225821 3.3443630343375945 2.769611879030494 3.1020549928805874 1.1637936016815325 +1.4519042197451952 4.075604360336815 3.0189226554806794 3.4841325549217643 2.664624303401601 +2.8090947065053364 1.0726030408784348 2.3268520339880343 1.2809715958463168 2.027133245664725 +1.228110269887861 4.5645488323631165 3.979008130136179 1.571766875010184 4.114198918568781 +2.37533264533384 2.2066457135621214 3.201297958926797 3.6976839420346375 0.5242655101916335 +4.1073711334939045 3.0317239775413785 4.679295616673928 1.9805506947066256 2.905209279544773 +4.608352076976033 1.8454198186133253 1.576393895120066 4.619908676235113 4.11056892499895 +2.6218163426898835 2.2370092797977166 2.202332216982933 1.5508383437247395 0.7566510044562549 +3.5447702560939223 2.886789841454726 4.547318610560671 4.3769937177426845 0.6796681507634641 +3.788446543596933 1.0455446704373221 3.012105477744976 2.241282629684553 2.8491540058190052 +4.666646372500075 4.484204758610899 4.142249037183136 3.5022287156716763 0.6655155553599931 +2.760116453757154 3.4213616583501527 3.974581740721346 3.7249168037253573 0.7068081786188157 +4.300895561607586 3.702025880023064 1.861800257612217 3.743790299052409 1.9749763065923605 +2.788830116090894 1.5111605440424607 3.479566474787969 1.070489884479318 2.726919425526098 +1.7895857537352646 4.123539426793569 3.7927212645463775 4.205897550225224 2.370243529899348 +3.5616972516323386 2.014670817825425 1.6957400142157635 3.289792040822724 2.221326777047244 +3.550515156392589 1.5139991869296852 3.297371204568648 2.0886181981215644 2.368223199884735 +1.560613556036313 2.73127518990364 1.8868834716654828 3.2051021406863565 1.7629943619773953 +4.122909712162841 4.443417923711786 1.745735610146074 1.6745457958637613 0.3283192095017498 +4.268718664822627 2.067197635978176 3.614117044209228 4.573295894178459 2.401399364260894 +3.144110327606283 4.449890910723633 3.5016523842506024 4.525986059582594 1.6596151390203189 +4.629607100063858 3.571936881817693 2.2619053427676747 3.0976749527369725 1.3480271256592433 +3.3228925453545686 1.2337664914083772 1.4777517534816078 4.382789771132948 3.5782249165300404 +1.0249716478120283 1.4485677073848184 3.2475362775835572 2.189686559630759 1.1395085113584758 +3.9045291487986344 2.647870315611093 1.9406160321878625 2.5275837977374915 1.386983266237411 +4.669357916575616 4.943670394928022 4.0507285806683875 1.3114482572112318 2.752980934597873 +1.366003621939495 3.874561143927484 2.329499556973211 1.0241821280092767 2.8278462531544277 +1.3181483579749629 4.007221252462269 3.795360781321214 2.1770415863645343 3.1384821249501447 +3.245477162827299 4.676210165537892 2.1728763807983653 2.27590622819948 1.4344378949612169 +1.7545935527548582 3.114627796029449 2.3835300732915474 3.2149893100521463 1.5940569642500255 +3.9939602224210105 3.3122338191236276 4.8173056209995355 1.4729950537523377 3.4130871742681963 +4.242985315665222 4.880672431578409 1.0243493313935725 3.6783858825795757 2.7295704557371243 +2.660515729622562 4.264785514268739 3.838171805712962 1.8585763168844718 2.5480345055196567 +4.457896029324695 2.4454333586674646 3.7736186974094226 1.671966095191523 2.909802340571968 +1.259876259102672 2.343141692985318 2.496897129329523 1.2062192207774411 1.6850262502018576 +4.742602794559235 1.518551947930213 3.6474336622259385 2.0333108132276916 3.605536913319226 +1.4966514412518204 2.177703256700245 1.6987560985644459 4.606398632560548 2.986338339979057 +2.192890017690469 2.733058714806497 2.8140754651208253 2.3314035304097698 0.7243993497386236 +3.557644123845284 4.510989072139692 3.6943336309990285 3.779545082182847 0.9571455384900038 +1.7063459734284812 2.2734068356253987 4.433106799743112 1.9565616300365871 2.5406365342237036 +1.0387378205559559 2.4151318887265565 1.638405212569272 2.510970530290347 1.6296720113522525 +3.4895115178030336 3.066127627471354 3.145110856328953 3.4774655776967336 0.53825048017428 +1.333702751510295 1.1218267762153262 1.2814955613531174 2.2217821350916656 0.9638621632060117 +4.905804350256691 1.8041722536223284 1.637207508559166 4.518180529266083 4.233217122817304 +2.009157506485131 1.4222717514831524 3.906980879328687 3.5879689487620157 0.6679846564615964 +1.5977760120795508 4.534276339213589 2.7223441069598313 1.9785774286678377 3.029228126601861 +1.1601687240153704 4.822805833576529 1.1149860089535948 1.4468302309729268 3.677639349368306 +3.4136909206494255 3.669188509383846 2.9530104371716375 4.239231040998673 1.3113513867603477 +1.8537601489623303 1.484248018516245 2.4388645016848662 4.8321979688330785 2.4216903806057637 +2.4694848177400552 2.19906320724106 4.469895689273162 4.142898822837745 0.4243286439582558 +2.923774782711506 4.111300011773385 2.926971000672713 3.7732366968207263 1.4582118495387937 +2.7622414981482812 2.1266657269185805 1.3543197166322214 4.8027980334084965 3.506559462243634 +1.8121445811786923 2.709239839122375 4.22702638467496 3.075915459378776 1.4593958558805349 +1.237206508416095 2.081512660193346 2.447402685766855 2.3862122723368877 0.8465206108681822 +3.122906071704124 4.536371700893295 4.936833408056119 2.7717001992079533 2.585669525859075 +4.787562577116526 3.5513453634395544 2.743669754555901 1.7894852815131927 1.5616340826157218 +3.516379718755033 4.528615782079756 1.9644634295757366 2.8813015376502715 1.3657283640288156 +3.7822078586856813 2.1716006025570325 2.644313719474021 3.5638266121718987 1.8546049965779434 +4.0005683348461964 1.3657677201892096 4.5467792365559845 3.9637290888715957 2.6985406711242326 +2.8449346335020373 4.968678004177901 4.922372952655962 2.671051515364907 3.09495300747781 +2.210205788506995 4.893621959797847 1.3081666589567242 2.2633905182183414 2.8483635599494517 +2.4619292187697495 2.550714098189144 4.49936592733067 3.2934973466686053 1.2091326596537946 +1.770685730214748 3.8612621811596735 1.561875883968451 2.807126176978815 2.4333430069531663 +2.53376002629394 2.5178518968371346 1.4090295452177273 3.9796174134167965 2.5706370916010393 +3.234998251013537 3.0544689701529144 3.902815399770706 1.8273589695172259 2.0832931179093763 +4.647897658466181 1.1791257426527997 3.386002541268694 2.2901467438426093 3.637757349341486 +3.8583326538784863 2.62468098749203 1.9039634534073198 2.5979125709592568 1.4154369684762345 +4.138517367649934 4.192067806865875 2.140688103474858 3.7949342460862816 1.6551126698460727 +1.34402694693169 2.1502769288701145 2.858025580961004 1.2327309870885026 1.8142826544524115 +2.7749767897801285 4.7282051561754415 2.3454109421979097 1.2019955171999972 2.2632940342373677 +4.931691785779834 3.7373130901227034 1.5913217915866014 2.293789553912109 1.385641160526864 +3.197528220914012 1.3800474995619396 2.703228522440131 3.4135570540579643 1.9513592173961198 +2.8649606168428714 3.593760453729272 1.173674795221313 4.805398562485658 3.7041283352441194 +4.112066805128222 4.649184182075791 3.5417083357349495 4.539350388059482 1.1330422503972841 +4.899181701632231 3.0208394148009137 4.064050623266285 3.6998846185276864 1.9133182237949797 +3.11622423547605 4.722358000213637 2.2072122117130317 4.339400717414703 2.669436924536045 +1.0876126622844224 1.5320353838556144 4.0733741043064065 2.3284392179828286 1.8006413615592147 +4.111136613628755 1.489676394998376 1.4497690197999034 1.2855677991979482 2.6265977458889296 +4.263030128503807 3.2988834750090055 2.484750414501336 2.6149075846413803 0.9728924187103576 +4.733299570131465 4.622711719419725 3.8187411422708815 4.326504622643877 0.5196666476940186 +2.5743416553877303 3.494656021994147 2.743124851437778 1.1466417521833754 1.842752511757103 +3.0900623213113287 3.3230523728696855 3.1526358669985015 1.7818073081114045 1.3904874332354251 +4.021729112523575 1.965272312723711 2.804841147148329 2.1283172879704617 2.1648785419695056 +3.450154262151303 4.551206034948738 2.0579324057445656 4.627538661856882 2.7955663679891285 +1.9927399507658325 4.4875371517377065 2.268188600557517 3.7572085076912334 2.905373187357796 +3.3081279155142904 1.2587166094480975 3.926924604531083 2.6134553849164996 2.4341914658273867 +3.7023501244582797 4.296956953504273 1.5388274341816381 1.521453973459371 0.5948605872686463 +3.9791900296137697 4.013452296147249 1.0697066802072293 2.213057677060785 1.1438642423443572 +4.869208056610164 4.944338280824617 2.2924626578620915 4.940999293995873 2.649602019838708 +4.084169573657265 1.2440132803200146 1.8781629961099648 1.7588480630038879 2.842661398029195 +4.014257936476538 3.5920183499428497 1.728990751443214 3.679687299244821 1.9958715615092186 +1.550432015143651 1.5049301564556767 3.7829648608191286 3.709732295873736 0.08621732837742964 +1.8098976143844046 3.9399245128294753 2.846139016856218 1.741233582787232 2.3995480004231426 +1.0759439191558924 2.595508285043852 3.680586397301816 3.3738147247150136 1.5502208620639126 +3.170247594202657 2.976517593640381 2.8365513315539523 3.608603020032716 0.7959868860733632 +3.609204426370023 2.1904198037990996 3.265642367555342 2.943639932328487 1.4548661015831466 +1.9268630807843468 2.3392915367299847 2.3382403994714323 2.5201658393874595 0.4507705591122196 +4.616456126734206 3.0852128588532546 1.9427517450081706 1.6699197078063603 1.5553595294832716 +1.8312163461948603 4.531700553480363 3.280572033261702 2.040836268760887 2.9714575076182443 +2.353158936983689 1.766233554152182 1.237168372666693 2.70648222307494 1.5822024510199129 +1.1986231250163093 1.9005693302507103 2.004983254493961 4.2313639763211555 2.334416328242834 +1.144144128167806 1.7275915715212786 1.5432968255812796 4.124621490148759 2.646440617709023 +1.7427595631920298 2.276598620044382 2.3923771733149297 2.505779629934691 0.5457510932544302 +1.1034897752056523 3.931171894685579 3.673063367818127 2.441503803000224 3.084238176684958 +2.15637094262052 3.284127209003185 3.501281532283828 3.8060017611199886 1.1681988761453808 +2.93490332213988 3.568954547478134 3.582880723583853 4.84422906904328 1.4117438170384082 +2.0727068915707627 3.1712226842372933 4.688831303918496 2.6122526640220616 2.3492372792912812 +1.8573930399245477 3.87391576689524 4.564283486491609 1.401843363988358 3.750652134870374 +1.1093749114934028 1.3601356195229344 2.090413646962121 2.0073794987590943 0.26415071921021566 +1.7899923705869725 4.7910373870787755 1.3080754463467033 2.596084926137874 3.2657678440210978 +3.3411573952157987 4.478827117289642 2.441535302447351 2.799670559999392 1.1927083714074629 +2.029996395720327 4.022118813983164 2.1689394138194507 2.7685485637593823 2.0804044948127425 +3.279165273038592 1.153690061921877 2.5711727987843624 1.071779937615152 2.6011197252715674 +1.7133381343627052 4.536863318015202 3.0759023458519725 1.6099526924675436 3.181399511060784 +4.299442293133653 3.4663008270326077 2.0635099364127054 4.7385095098657075 2.801740070119058 +3.0132179014412275 2.0864939711690487 4.371787708216631 4.791941352012563 1.0175196938310886 +2.1112212150040945 2.156554413183698 4.403549181480554 2.8286670554992237 1.5755344520487853 +4.213762683648619 4.739727165213949 2.723595383795781 4.038517112613122 1.4162124800976272 +1.212147677949985 3.2349243895222872 4.6149082705388675 3.292317288187953 2.416789716023141 +4.742226525838855 1.874717769946836 3.7073568037802045 4.287798151932336 2.925665501003499 +3.1949739979842797 3.6956517367530575 1.145229476587431 2.460388928599238 1.4072393479130028 +3.6587390026583444 2.857474830543205 1.1531048160163206 1.160263249817243 0.8012961479314884 +2.0447793651625013 2.790048146674014 4.0494496794198565 1.710633229328868 2.4546869339921673 +2.8850887300775865 4.427264408512478 3.758688802794641 3.9892827207543307 1.5593201653785276 +4.495719757057435 2.9223351601830023 3.3928077787986766 4.894949899466075 2.1753091827059596 +4.617877191176568 2.2428377596116813 2.699221733994787 1.2031511245437208 2.8069626947915327 +3.772816358213225 4.9805878890628 2.611634466427773 1.767469031432435 1.473542450142375 +3.1682755609933997 1.366500740424296 4.749834641045135 2.2401062091520636 3.0895192677646923 +3.9981579083605228 4.529060873922713 2.984758454084017 3.9001815798858783 1.0582331775632339 +4.370906894176304 4.881542678576867 1.1343168848647274 1.9502775285492011 0.9625698293382974 +1.9870016278151565 2.670174810734739 2.790356656110096 2.5473913112453435 0.7250915505408415 +2.7435383390398815 4.7579186922978325 1.1313497779381003 3.6937974691689797 3.259427308268447 +3.5570573304250406 4.9088349605055335 3.841212690062409 1.8863129162045538 2.376749016412025 +2.482416522377868 2.718013129922166 3.780133867912811 1.472412203387771 2.3197165866554914 +1.5646747563925243 4.119001386031582 1.5807811357013866 4.670282046804566 4.008690610485 +4.735661403304196 2.16245097351866 2.8286704316775957 4.65795697059197 3.1571666344066145 +1.835149082475915 3.4374061766205024 1.456963327401978 2.912450438074105 2.1646409690914923 +2.1977724819918656 4.015448002848994 2.9648612890313473 2.4693955692550826 1.8839932533309787 +1.5720296858600085 4.543199348446397 4.689106376433948 2.9969982810736164 3.41922198317946 +3.404961544482119 1.2372267582781582 3.4626922899315105 2.7045823387369508 2.2964766058941137 +4.847116662069485 3.2264200242254755 4.353594614224373 4.4797286831043674 1.6255975502107218 +4.2238099193008125 4.271177832857829 2.8261537400821055 1.013458134671899 1.8133143900350597 +2.250848675297535 4.254925949777986 3.598949707425553 1.5875825389856209 2.839352674178934 +3.2703999882183177 3.963885120432968 4.598045648716937 2.046352006288342 2.644250758421614 +3.089108957305535 4.70971297244976 2.6879104330100945 3.6381481179379285 1.8786455311629693 +4.906315205504033 2.961416742300605 4.702326338900266 4.121834339840531 2.0296800223541207 +3.05670917787277 3.9449006475714454 1.41378013349865 4.9709110970674955 3.666342152449184 +1.3783475357789725 1.7405155075950058 1.0836846558218176 3.6041353542327648 2.5463380299814027 +3.0968479702983998 3.374770000225745 2.34541793539168 2.917792696464225 0.6362810085424435 +1.9163158425154494 4.050573360149589 1.7786555509413793 1.4368203049321 2.16145934197062 +3.547319139113516 2.965520739270599 3.25964827111033 3.6112055565092507 0.6797660648905893 +3.671177550101786 2.850394021262408 2.3509355133809198 2.2496465903832403 0.8270097019600509 +2.1360219445565782 2.795925046284429 2.055313399139344 4.00529058839959 2.0586119455364402 +2.523940170526173 1.6785294419792378 4.787440576111771 4.918903847942136 0.8555710910161727 +3.1276791320077435 4.466251238213098 2.1570815818240505 3.244908826530909 1.7248603995215248 +3.3422710578682207 2.6111302551279842 2.27184341106055 2.5903547195963292 0.7975063179040098 +3.8290034773975026 3.8019334810631613 1.7969133149434762 1.0626367423644645 0.7347753872714585 +4.883204964251158 3.515917234179103 3.9764334791258036 3.804477257288005 1.3780583003031195 +3.6209989930258972 3.192100328179958 3.534704155317938 4.637933259707712 1.183667403234241 +4.896779025827219 2.365907496669255 2.4710178266356126 1.2942640886055283 2.7910679062090455 +4.978643698318338 3.7256767072598476 4.458278855248828 4.360992263286748 1.2567382232023359 +1.6436284553041043 1.053768687102473 1.1742906575865808 2.6168114717538473 1.5584610503470002 +3.4619988797432355 1.0258252574211122 1.8827786168184004 1.623532980759848 2.449928614860747 +2.9696601579463007 2.6215685258104857 4.853771660869004 2.6226665039990014 2.258096101890904 +1.924186511614018 4.8397791709335936 4.378049176070993 1.0354013477323458 4.435535487331295 +3.1325178920878805 2.005260237836175 2.18981460717303 2.814978635044264 1.2890073238012432 +3.018753416298138 1.8428162604023117 3.7879092735665285 2.856520041980883 1.5001046947896883 +4.36375227817666 4.329862184147952 2.514250196906407 2.45437052177256 0.06880489784462784 +4.346901426805079 1.9114660752791663 3.8377643168454365 3.7860418786704972 2.435984515975606 +4.698178092110595 3.394620982205282 3.2981341791111727 2.877830906417656 1.369640821464362 +2.1397846332941675 1.1177268268303915 4.511745258587201 3.4648528525900177 1.4630741161978489 +2.31047645963011 3.4407086451399445 1.6632731407246326 4.255920685615337 2.828293847037491 +4.292403954503563 4.223985553252965 2.677905700004184 1.7762238601894587 0.9042738622128562 +2.6765100560419213 1.7591196642535594 1.3097756548553066 2.948526389573773 1.8780599302167962 +3.958375356894506 2.967178011013629 4.787822011915957 3.4968843693680998 1.6275724793164557 +4.075510223686291 2.589266881205144 2.9613083788042487 3.5628747829090193 1.6033718881211174 +2.223673805820353 4.530086500835331 1.0300851890878437 4.009388603698785 3.7677298677106177 +1.3940955299115059 3.9829627846263107 1.3703942832626472 4.355087557418295 3.951028676601137 +1.175032525768187 3.3093154972832988 1.5405718410021279 4.0394857583419 3.286294960707846 +1.4827441900370095 3.3461371965344826 2.023889227684592 4.441357657963277 3.052275726086649 +3.3419585862706547 2.706627419472412 3.6432079589188704 1.8563074421686538 1.8964860000188262 +2.3141176716426104 2.404440364344231 3.9372275295539487 2.4267361919991544 1.5131894361397529 +4.638257746256507 3.8009025012893134 3.0995047773672417 2.16631577564544 1.2537964424931989 +2.9213409406165467 4.381040427476542 1.3019305433885533 2.867505151135729 2.1405014469422943 +4.459578820238113 2.8251357282891894 4.985204133075083 1.1802363403332548 4.141157341205738 +3.9520646843744682 1.0319651753796455 2.2394919019825017 4.780756603233667 3.871047329116111 +4.623820023909358 1.985327117541937 1.96719509408014 2.330946093084593 2.663448818022967 +4.861174490934138 3.7903353529628014 1.4442320094356984 2.7679650863194714 1.7026349339325137 +3.4410215334657273 3.1798474529825054 1.3963376775767773 3.804643141583482 2.422425872608036 +2.9519930469742293 2.27942024913181 1.6297095754531576 3.3302431844761724 1.8287068446895527 +1.7496380288666482 3.3231920581240018 4.358159117021806 4.698961294543581 1.6100367720010733 +2.307205435945182 3.32191276168484 2.478857598592782 3.87227207696752 1.723727027534833 +3.940736187094455 3.860290997045564 3.8606408057778716 4.731310099279925 0.8743777486014654 +2.7591923505593168 3.763995592729249 3.0756580886173492 1.343122490686968 2.002825292822914 +1.6862857540446319 2.481876455251725 1.3011140902795315 2.2763133944983625 1.2585619757469577 +3.2194373776196508 3.4545863790675173 2.2632521603823683 3.35640737353076 1.1181607097888184 +3.101481382116693 2.294004392443238 2.1324594341785947 4.300533166675972 2.3135606320987603 +2.7940178167346494 2.5459186344449636 2.470731962545771 2.1052247937970043 0.44175637478088536 +1.4843052327558781 4.082196256544188 3.777452042624102 1.7033951237003078 3.324266817572792 +1.8533115783117138 2.012173973303174 3.59599673413164 3.1787606693269383 0.44645626248954756 +1.8272931642660946 4.114098037304843 4.998191721810777 2.529246710154265 3.3652883974389685 +4.100466568765219 4.799110424500648 2.150605737833195 1.1688118707287103 1.2049989355351505 +1.117608079517538 1.5438642054490437 2.5963464930950755 1.8467971982330735 0.8622751476891004 +1.6350866619762794 1.5422963997903052 4.306511963177359 1.0979141311777227 3.2099392642648716 +1.317342946543905 2.709659669031629 4.356392772220066 2.9261889326643216 1.9960032260492346 +4.359374174124062 3.7667985566258944 3.6521276818254553 3.770918888103954 0.6043651323020175 +3.099186557137715 3.8816209541998266 2.3176302402284796 1.117671567374651 1.4325168069740304 +3.9613991920560427 2.299125681834971 3.139802090361182 4.839679326589298 2.3775482836378368 +4.129164332364403 2.75114758627728 4.286901982224547 1.9221379538848389 2.736976262634732 +1.3455168425407216 2.225325594444682 1.4427133584633167 1.9733815645223598 1.0274590915694541 +1.5078994545894133 2.4394742774933795 1.9892388357696342 4.662010840615386 2.8304667177968605 +2.2163806142182434 1.893851272767269 3.7977807203796696 2.511959918329155 1.325654672636365 +4.012649654489525 4.826853336881344 1.9068265408441576 1.1258160248546512 1.1282309437817208 +1.2402875416806434 1.4827433850754432 2.4260968968763286 1.4814664851458765 0.9752494300240975 +2.7854551576689297 3.469596906943118 3.156487999268148 1.035881207939953 2.228233178221527 +3.446823292621834 4.012162548986878 4.171885926058955 2.5126934557747793 1.7528628378270468 +2.4063650568020116 3.0516559863456503 3.050840902009494 2.858647388654624 0.6733043370772105 +3.7173515638165795 3.2709642263396272 4.228168647340778 1.9257231552925016 2.345318080541143 +4.887382180092665 4.055974309306623 2.3451123763189043 1.2446147295947418 1.3792512889428088 +2.3937109382264636 4.2023712545996545 1.3374911576402009 1.1404585626536754 1.8193608722598975 +3.9349271199780733 4.704597899469556 3.9786964809645955 3.1857302971365313 1.1050739692427247 +4.596069501639068 4.678711488757449 4.700575664202981 1.989850305626042 2.711984820692577 +3.405521361320972 2.232956042730052 2.91710211643436 2.0136208769936177 1.4802661167450957 +4.78018774056647 2.6959488065020754 3.9845436219203902 2.0939719331056263 2.8139497587586373 +2.1153443693432465 1.2655876295779906 4.332212547910601 3.354846162945062 1.295118360319659 +1.262892262342295 1.6151689526224655 3.7464118925272243 2.3820311074902167 1.4091251871615071 +4.970154045691307 4.92258350577254 2.317582307483689 4.481567732411226 2.1645082294985567 +1.0665416894150614 2.156219612493553 2.5193153840965326 4.636664114820983 2.381294526837261 +1.7294844048128857 1.8191947307362244 4.868431488098061 1.613636372170339 3.2560312021300137 +3.561514430282892 3.4539059543807453 1.9354670127241587 3.7572352899399255 1.8249436265144428 +2.1266848035668637 2.32411801790798 2.4546837733815243 1.1672879544060408 1.3024468775503364 +2.8334449625318157 1.941518703465381 4.1376154750879905 4.883500941720151 1.1627027053143555 +2.1566962741590983 2.3857277364705034 2.4287720129193984 3.061015726008695 0.6724489002663635 +4.382158009489625 2.351148318802055 1.1735586331526173 4.290954028183259 3.7206389790767216 +1.9103394571346355 1.603572396187663 2.7921548979321864 2.5899390409829794 0.3674197633276492 +3.290201447053393 2.504381691228344 4.768166031826353 4.614425305083581 0.8007177403457074 +2.2813909176369394 2.2695993563630448 3.0154388243418975 1.252277486319692 1.763200767018189 +2.132803389910746 3.1622831378925653 4.0042035463219765 4.663648366512245 1.2225776140517566 +2.6749575071270733 4.37572338521184 1.9365745445418163 3.6472232751057083 2.412244525631119 +2.66137759108719 4.121736627897212 2.0184737760115676 3.2924182847277934 1.9379326943113684 +1.268851451106106 2.596793372025018 1.8963223690496567 4.098040750009943 2.571185247000339 +2.7714368103133222 2.8197754013245335 4.5524816019075445 2.109150161719801 2.4438095559987607 +4.362734608422965 4.849918431497197 3.6926961928682616 1.256555156761193 2.48437743212863 +4.314555626173009 2.1963348000221927 3.791158658926317 2.143427555366119 2.683631356572425 +2.7745590310053996 3.257172143169043 4.192215154172642 4.097663071726179 0.49178807664200264 +1.733019392700331 4.171855411568172 3.947204506606167 3.787782946286662 2.444040990004433 +3.948393306311776 2.552619579785235 1.6468809665327333 1.1545368498143147 1.4800631827489759 +3.0459106055848526 4.257528356899552 2.4225848124292026 3.4787501417376974 1.607327837789855 +4.920706245494724 4.244373654124832 2.627361690483973 1.1855439619458483 1.5925652691415668 +1.8162765093641666 3.4831980493412895 2.5754713280500394 3.0447978598461245 1.7317317384304778 +4.406409980221161 2.442226739462663 3.373686399761024 3.9062037725454855 2.035089815117215 +4.917011047992904 3.6900043383696732 3.54051464315006 1.7072991735336869 2.205952044696622 +2.6839109582618277 4.685309573093409 4.18726877663013 2.2446555661587713 2.789147271290567 +4.006544092638572 4.065754344908204 2.322961246770815 3.1121888164070532 0.7914455196965591 +1.292536929187719 2.27223056901712 1.3849039284418367 1.8402815773800385 1.0803556965530678 +1.9956229150410407 1.9813358573133808 3.4562372358746916 4.1573309832590635 0.7012393048310791 +1.6189828449779426 2.7945847537916917 4.573520703232697 3.818462876619238 1.3971943921791166 +2.396487889490007 2.7460227750664057 2.641138353880659 4.4711786362124295 1.8631215932385765 +3.4564655615903077 2.003614984556749 3.326136428533358 1.2418618686661516 2.5406643304648457 +2.770490310254113 2.238770294305693 2.2937286957601084 1.3214911734920172 1.108138969202954 +3.1843828170209845 1.5028688524231688 1.5562693555614873 3.627948491043375 2.66820982187092 +2.474322208403156 3.6107286634276052 4.497442752391713 2.090014556391294 2.662166439184272 +4.688482323212634 4.6188680009059695 2.0975321237217215 3.4441582491710316 1.3484242936156399 +1.7451827603756924 2.334253579748044 3.675567462397212 2.2200480594761456 1.5702041786072638 +4.240294041740542 1.5896475445806302 1.272223851105314 4.728600814178428 4.355739726357468 +3.585170515082854 2.412584667047579 3.2195382363910756 4.620764062204273 1.8271265380204194 +3.596779712669381 1.4034062397888079 1.4642985065942087 4.061010887306798 3.399088463056269 +3.9116764166008284 2.484314039545482 1.4691216712950963 4.502847808960767 3.3527388257645354 +3.057439238355228 4.524106731072761 3.0859891789731844 3.5761952539354867 1.5464202307666184 +1.3783395111361645 3.3060149782938875 4.738133324671969 1.5223050907307831 3.7493311319347393 +2.9382212680671818 3.1361390635514095 4.529280333027637 4.704680718571215 0.2644555709720863 +1.9472262195664984 4.091753799512609 3.4131571905489966 4.096399805932232 2.2507374375135907 +3.4796744796042276 3.914418792979912 4.129629372509497 3.978283217495375 0.46033496135971874 +4.703090735409156 1.8058409574595808 4.305267298371998 4.689911573096493 2.922671294194268 +1.7299651998769776 3.6292884367208655 4.338142499302971 1.5420885345636157 3.3801400165895212 +3.3942498195028037 2.0737386495596595 1.7031009088747444 2.0064805125235745 1.3549128879211139 +2.9325686226746583 1.7243521766847425 2.4293041771612582 4.715181036733906 2.5855405619502885 +1.101553148348728 2.8756968467109574 4.919254933438197 4.912974690063899 1.7741548139593821 +1.6322827774200555 1.664535206953337 4.965526072177634 2.607782728648367 2.357963929573005 +3.3695353706856825 1.5202589585429673 3.671587658894667 2.6175987512071255 2.128547830337813 +4.622354157736574 4.994235203747024 1.0964878216881324 1.2905378921434414 0.41946506675233075 +3.8540313792866794 2.3236894191995288 1.952445103323992 3.412479016221322 2.1150994164846413 +3.409514856242412 4.2152407903607525 4.849985116599774 3.532756877212898 1.5441128571283647 +4.792671119713875 1.3262075960386643 4.846087657134236 2.100194777883732 4.422250226444607 +1.915001761558127 4.98016010686467 1.9049033299893452 4.675095711322591 4.1314841777984705 +2.2341144444381134 3.1882422578242733 3.692638523108346 1.7767909914890683 2.1402877490395387 +3.1746713571230467 3.675825768266177 1.5181229784660424 2.777294718877772 1.35523769710694 +1.5273972664826037 3.2513603844384256 4.546741542072448 4.977810542964654 1.7770394805974807 +2.833657697158706 3.2730496633606725 1.9315727786714656 4.664111927607038 2.767640782404461 +3.9065312503993184 3.8418442301114526 1.7041043381817889 1.93875426031663 0.2434029509919913 +4.226086305411961 1.9436932688561646 3.9881839677162545 4.824991155092264 2.4309595311651195 +3.1235345332687205 2.115009248910485 1.8869844418436608 2.371010416490668 1.1186618762266127 +1.9073349416345162 4.274664361617798 3.206742342085748 1.1875104122941815 3.111518306069909 +1.5262738890314296 3.288381979939976 3.5873343393980766 3.5666735612829736 1.762229210913746 +4.7935978836044555 4.643236316129434 3.1601640180188726 4.396269867731089 1.2452173596068705 +4.4400292369437935 1.2032292131782523 4.24171540724887 1.1650203235105336 4.465750444454802 +2.351823337667353 1.847989029003584 4.937902652019767 3.863108894815328 1.18702596058904 +1.7448253140880428 4.606886956962409 1.1090551165919966 2.9973351007858 3.428847932807704 +1.9616959144803858 2.104764181205496 1.7249332496536205 3.147216889772745 1.429461185864882 +1.2330496320093003 4.621531291591725 2.984068346927605 4.6208073602967925 3.763073551661089 +2.8556347040364267 3.991513909620755 4.088748119799785 1.9452837568293782 2.425832031490024 +4.313810886758294 2.577700347704562 3.2702533307638646 2.2634451056402494 2.006923667205607 +1.7778855666678024 3.080379570594825 2.4706189895783317 2.9153975302828763 1.3763424648455453 +4.614402257009106 4.824528346923813 1.1647922292468285 4.903410779985039 3.74451887985449 +4.02430678289999 4.4118378146155175 4.254658685487664 2.1116166501178855 2.1777992253429477 +1.1885952233093335 1.8864356846385828 1.5762545910901613 2.9234261572820697 1.517185729640303 +2.255720593132618 4.179334098447714 3.87375662645025 3.135695820471155 2.0603452795959085 +3.670928429551962 2.849391952536114 2.2264394180530003 3.7775892496719465 1.7552743327466211 +3.839552152703017 4.596213627963156 3.7286249909619653 4.8099996439211115 1.319813520238887 +4.318329463361811 4.665552412180871 4.501866876831237 3.873023986809298 0.7183363811737141 +3.741162801876798 1.906914457444516 2.834173623901586 4.678233630980031 2.6009660318348495 +3.951466144361884 4.97447663917848 1.448196471373791 3.7436073314167255 2.5130581944929054 +3.1114556227042547 3.981387969623131 3.3083792238855554 2.3911318565036908 1.2641696963559699 +4.253973865966526 2.054541960322909 3.8437289683667513 2.841665816454562 2.416946682900412 +1.5195926084914455 3.9622931779901855 3.1474148971189324 4.663240338406268 2.8748065744817364 +4.912657285205647 4.559582993301339 2.1516389321077654 3.6701906157219284 1.5590576228642539 +1.647822669581318 4.607017201507059 3.620092186104087 3.0348826246282905 3.0165050155141295 +3.5222088033507104 4.177235703041019 2.1172321844009403 1.703057339071668 0.7749845429564541 +1.3959347306734675 2.5261811905187863 4.672395701721337 4.475352536886755 1.147293802302141 +3.8039229100349035 1.2108214164123354 1.296684681329523 3.3196846279490297 3.2888758170916277 +4.984457023464756 1.4099765974851781 1.8789714200645138 4.44403816425196 4.399599722457435 +4.018214881490777 3.0789784123755073 4.7580341922633576 3.924976888960569 1.2554479740324695 +2.0489363659497615 2.4587035825710357 1.7013911182443882 1.8393853259674442 0.432378969403763 +2.153355507674803 1.455640624058789 1.7435276764522696 2.669531160072968 1.1594345649914777 +4.000707226752808 1.892582913131069 4.236887335673259 3.994828063898617 2.1219756861790846 +3.80257772988314 4.613998545511 4.573919157724932 4.984720194010907 0.9094840468352446 +1.1616903267400462 1.5876509102159235 2.73227681404237 2.975973027605138 0.4907446007649396 +3.137506685298176 4.02711045196083 4.196292243741342 1.0325067974135314 3.286477325656766 +1.057954168196014 1.6462357244460732 1.469275397412606 3.7971393974645595 2.4010468533874705 +3.704802270137994 3.6013962098455727 1.3948417336518526 3.269979765480002 1.8779870744266438 +4.600732265812972 1.9504758028016056 2.1125376070669213 1.7658108671614792 2.672840951478216 +1.316838930000658 2.075228506225516 1.7346002789749893 2.0559833499503277 0.8236758025073087 +3.622554253203956 2.9158970984644856 1.8261169415340373 2.7586838080183678 1.1700620901511538 +4.06655785041179 2.3000454679703863 1.7614250070206188 2.583369593226578 1.9483733985332714 +4.746359520737531 2.2660238743635412 1.3963554586410805 1.566208107420478 2.486144573626171 +1.3051647021361852 1.3688647359604307 2.9756222004700996 2.526346067690626 0.45376947649052934 +4.86891736934189 1.47552501468738 3.2800364016403196 3.465691000236297 3.3984671989894966 +2.8297957755680248 1.5035073486261479 4.244113780899798 1.0028040918403067 3.502160689036254 +3.402709127664285 1.4023312764975633 2.3310741382291127 2.1512962134195694 2.0084401035846744 +4.944459224754192 3.272384335672208 3.6143167478128615 1.1424083401466891 2.9843199578110324 +4.829032980788153 1.3766007322193925 2.1337832714984497 2.3310986809940526 3.4580661939560904 +3.937341255400185 1.4506630448922588 3.4339874978515077 3.1560531211597946 2.502162272987488 +3.9890999726207683 3.4542118943518187 2.0096826881827785 1.4203601623284117 0.7958682653263798 +3.614204939661208 3.6339289602384857 4.265761794165335 2.4961659339961475 1.7697057793078652 +4.051090038696588 4.333939446171954 1.512808001338966 3.1682840037678317 1.679465564376663 +4.110255929455313 3.9588099152290424 3.3573128834042656 3.5716345874333126 0.26243034893650974 +4.187765581772565 1.5892562648955253 2.74276415229007 4.690410702895704 3.2473955342678544 +4.192889286858058 1.8724814654792348 1.4363445480951418 2.8596461053042335 2.722146171731019 +2.2653168145817655 4.406971351313988 4.449886522686807 1.6488220484376797 3.525995794609836 +3.879926043426377 4.906981866509937 1.661270990675106 2.349906511966295 1.2365526858625298 +4.594639656847611 2.5685718565677473 3.8713852257773036 3.7915385439112343 2.0276405559013426 +3.0859941795965886 3.8658321069153123 3.8703789037616017 3.6032495238744864 0.8243211136951654 +3.5269129114561264 4.600469316747464 3.666064796836731 4.473822751908085 1.3435014958395526 +4.632139962217969 2.835292529349469 1.6304832057027028 2.3813774312945926 1.9474349373042894 +3.0869300428778708 4.7573791290855585 2.3021238268361084 1.7807523143954773 1.7499223993071036 +3.546776723131484 3.0324079277841793 4.792349725079216 4.824053253192824 0.5153449052061033 +1.558737477882051 1.1063271850426117 4.241820192786916 2.3746776286604323 1.9211705879072498 +4.931175953336774 4.604923511703434 4.960941465075027 1.682589486711715 3.2945458487795185 +3.549112248413788 1.656152026391045 4.025067563805732 4.430871627978025 1.9359688377293531 +4.983389104771388 4.72300539200296 3.562193987236563 4.792695675359268 1.2577496103548982 +4.482491713049775 1.672868818931485 1.995390815989031 3.2204109933972047 3.0650701855276967 +4.933896492332355 4.322841290756377 3.2277564114388726 4.511666296213102 1.4219047266234242 +1.4321871935770498 1.655051835436995 3.260466128775713 3.75403587902833 0.5415530878462357 +1.181674005756641 2.957555061547441 3.9397707657882597 4.349158682777554 1.8224576787660887 +3.482542474063293 4.43277648035454 1.1996673273039473 1.0782863568310663 0.9579551172707682 +4.149669173171874 4.027791717889308 1.1353316146562809 1.4618600148438134 0.34853250958150706 +4.916299851188984 1.2018375055258326 4.697145770140483 1.6905130821082648 4.778814773360989 +3.6447651432024673 1.3127360474591026 4.524388696646863 4.01676176535179 2.386638809030321 +1.386941969746164 1.759239599885543 1.8871031615505713 2.8574900708271764 1.039353779568247 +2.0199320281097077 2.7461394229771927 3.9203114520568008 2.6797034479323476 1.4375275302608568 +2.7336766377256234 3.923933721031024 1.7154744229962269 1.2754837103246497 1.2689774432967365 +3.2322194237462143 3.258865520635226 4.445414458578005 4.729412709623646 0.2852455452349806 +2.251943042642942 1.2086896140955683 3.4782620755859055 1.862074315167992 1.9236529294809188 +3.5046806804319397 3.847362451953199 4.488676387552395 3.674248516184611 0.8835856235779352 +3.0829362418468813 4.0360775601076 3.7428471836755324 1.5465073740919748 2.3942403663244254 +1.6880499299715508 1.989405607785172 1.1454682049724503 2.915505303803646 1.7955073310318903 +2.3569348098694936 2.555123971736319 4.487405210816002 4.136650269115774 0.4028746368395574 +4.99938293242299 4.327731872324696 1.250394921702426 1.889821631735522 0.9273519634070505 +1.7643085280134376 4.760555057583163 1.515860563489443 2.4059561942435073 3.1256620895173715 +4.20951150872942 4.204857754938544 1.5126956290157758 4.721911603151301 3.209219348388479 +1.753796695887806 1.7179716359889858 2.918137222954037 4.4686452780635495 1.5509218754909082 +4.057531965705221 3.5828398818180136 3.2776398495661963 1.159538708307088 2.170641614617281 +2.866571226671854 1.894793635106487 3.715455807891376 2.578735796363862 1.4954879043561995 +2.885996369271564 3.2553140468624067 4.90537482565418 2.2933218925906007 2.638032613920294 +3.6471880546295816 4.554632492649104 3.91451445444139 2.2623866481870403 1.88493546210245 +2.3790944889654724 2.934944699123546 3.729483205439698 1.0499546881728614 2.7365749635226484 +1.8459635669548127 4.507734324684545 3.350634270612686 1.6346784036017072 3.1669430219431662 +2.0938245317549584 2.4275171684088526 2.050121165713417 1.132251644749994 0.9766448859594011 +2.790631501857899 3.8202144060821395 2.250163239738974 3.1327745161259037 1.3561134251515197 +1.1798638660214351 1.9297874102801473 2.1607417662968325 3.613789739543291 1.6351555689869972 +3.4584120605705038 2.440430979323778 1.3993305809557741 3.4016241128498943 2.2462112255176008 +4.422823507333522 2.120364852308483 1.630069104299026 4.679977841812806 3.8214210923768412 +1.2086938251873693 4.930437105887586 4.326568080656525 4.480191985709222 3.724912529394597 +1.2887442706344192 1.6922797020379887 1.6332697769915279 1.6303112380434275 0.4035462765913872 +3.370782974021567 2.3026663746729508 1.1235640660586141 2.375684078710806 1.645806062659929 +2.6625993146290448 1.7563316038952559 2.6835013323660886 3.3016368161608445 1.0970016589982166 +4.381989642892765 1.897242329034352 4.698874527616906 2.457316465042135 3.346423727148216 +2.052327148281507 3.915122535446746 2.9174766730270094 4.48523152365725 2.4347200919446035 +3.824308670170672 3.688667794768463 4.149720042972039 1.0580002562769306 3.0946937952763474 +3.962002087877387 1.9544894897623615 2.914811737218492 2.183920522268808 2.136424302352219 +3.9410115805643575 1.798427673023411 3.516781635774249 4.293181647830632 2.27891701901903 +2.816614077428892 3.1396363943655343 1.7857793886766231 4.766622766321939 2.9982946251646205 +3.641840107703084 3.1530640185621976 3.178377159706065 3.5647404368789744 0.6230398440418157 +3.0245899657741404 3.904188211787844 4.352003702468327 4.839916936231933 1.0058590348910943 +3.739606846636463 3.209514858014874 4.179638787030436 3.1879745151051813 1.124453442617273 +1.2398572529520773 3.053615940437141 2.912504592109208 2.264423954776326 1.9260657021278726 +4.239646688987509 3.7706055249407275 4.793779123452197 3.5474060707391133 1.3317077006985019 +2.991354945739601 3.9848628055936195 1.1177164130953972 2.734009903570382 1.8972249510649815 +3.1488313160025525 1.1889100865841482 3.7432060076392433 1.0756588541683265 3.3101509091755528 +1.716361137622021 1.3769376873998773 2.8674990171703687 3.715500907586475 0.9134087172290364 +1.4021111278129261 4.542807791257026 2.8177358628547493 4.904109247594953 3.7705343695981868 +4.998635830464858 2.3445157712807188 3.6106925541221995 3.1911075613952224 2.6870811031089694 +4.896212593420209 4.1957895805920815 4.954114965038775 4.112427420490703 1.0950024290140155 +1.6642022536511494 4.095372627506579 1.106753817587982 2.60016495293231 2.8532203220015773 +3.7673622018167983 1.5388010732213764 1.8161809597179213 3.952926958018153 3.0874209569053837 +3.6137775939736203 4.106921266874938 1.7335189130870705 2.2364428496879465 0.7043601125338683 +4.672300573718999 3.5158407234468436 1.7739411044628728 4.718257971143748 3.1632896163192177 +2.5011640245689293 2.255580633349102 1.0177071955257517 1.9482350947705034 0.9623894083560361 +2.505651110896477 1.2800142090108593 3.9989722300253057 1.1070108128669216 3.140959511613689 +1.7057728501792253 4.2928246434620085 1.9129044497993362 1.4756260775397396 2.623747197420831 +4.766305586246695 3.4789446788441536 2.9252827423833954 1.3224297324746237 2.0558297296424874 +3.3778874267617676 4.759270705056011 4.315784018899693 3.7828427453190367 1.4806235722278376 +3.9147549999339075 2.6466817673845364 4.505226613513448 3.870627669318141 1.4180005441049768 +1.5947916475119088 2.43387475676767 3.08627175279273 1.122672115757088 2.135365073893647 +2.972135453030204 1.7453587091297962 1.1492548981125879 1.802899352795876 1.3900475720323748 +4.790002040258564 4.805778093382669 4.767224927541077 1.25017398106659 3.517086328759825 +1.092516547905301 4.7672849508679445 2.1068381514057553 2.5446636444856656 3.7007585678889243 +1.169257386891227 2.2517971265708527 2.6782907032468537 3.5661300068012562 1.400053897863078 +1.3649247927674826 4.282297807405167 3.7840668449793853 1.0598259135330292 3.9915603414083423 +3.309950848157388 3.1661785954763 2.482796818522492 2.3725471183649542 0.18117797058644175 +3.151105505308535 2.484186735512247 4.739745284716348 3.812916160455773 1.1418374976695322 +1.1558495461824836 1.5783470945495721 1.3081347131591583 4.541241859350825 3.2605959573568484 +2.1020961448733484 4.917667939505003 2.9896053873012933 4.315670606066561 3.1122168136465516 +2.000828039097218 1.4802875217624325 1.1121878355385122 2.6542243501109044 1.6275254352733595 +1.9896811483638568 4.779303784620481 4.522598307009455 1.007456416698239 4.487562474410364 +4.992488843269751 3.2988365956233068 1.8030456776682917 3.771033980893457 2.5964275259650362 +1.0027035094461452 2.969127024865281 4.310392298422125 4.193287825149373 1.969907332758026 +4.414315865712705 1.3094279548926853 3.837539118531851 3.6161787231052025 3.112768761636455 +2.5186818505334627 4.804837995012557 4.31856148895268 3.652927893578571 2.3810875666867397 +1.6675278370171998 1.0465231332000569 1.4290667340866192 2.4675359652348203 1.209985614048594 +1.3821392654827767 4.208515031019559 2.0306479263908566 4.032459471127229 3.463473607327397 +1.0779619506649576 1.5635318248714598 1.1165934720175037 1.6811941351342572 0.7446824904137307 +2.0597482670044 2.14473975599053 3.233386831630093 1.8714983387972128 1.3645379511434241 +1.2942052547335652 1.8933817012264296 2.9181545062410823 3.421348013494424 0.782442406681626 +2.762168838244166 4.669127084933131 4.03694967989065 1.1196459990627115 3.485276247413868 +1.0720412681803078 4.71531723783025 1.4050626424575055 2.4171951720266898 3.7812527088837697 +1.3598002883736862 2.655381945359768 4.969297574068323 4.061315852588742 1.5820754205978373 +3.806258680554047 2.853512937012346 1.2590076928584146 4.937511189802487 3.7998832125299065 +3.7022449230403733 4.953465950242983 2.172842065888069 3.232954381210329 1.6399366390235561 +4.07438609725975 4.3295473848546315 4.204070275332547 4.353230591057309 0.2955606240252387 +1.5847539691177954 2.6067320540823924 4.071588428101395 2.5308683048513423 1.848853078082616 +3.1913767443756114 2.295070288995443 4.621489062357279 3.2283071492984954 1.6565992589731209 +3.949004927239805 4.337599397052166 4.494608346865288 3.501268251100724 1.0666443680169617 +3.298613832515327 4.4260243764363105 1.330210637011255 1.0444065870523493 1.1630728650936366 +4.477116303603978 3.7448837732505473 2.1103494298087933 3.591442063123992 1.6522106000653602 +2.166692890504181 1.3697376171367095 3.4426392077225296 2.6344889650946066 1.1350086001470614 +4.902566050323429 1.5046946350681174 2.2638731370761866 2.9623283185758953 3.4689147863810272 +4.078402910032384 2.4213582482592177 1.7644234214667032 4.974024671961994 3.6121097987591515 +3.5170070023587003 4.97559962887289 4.079002656979396 3.1349552673856813 1.7374458045994612 +1.60169969055646 2.4125771201667794 4.48781587499115 1.1602236761815914 3.424965992156663 +1.2858456822107724 2.8200988851129996 4.749456532652188 1.1104802110214886 3.9491874556678916 +4.447167921781931 4.028177952643288 1.726745028096802 4.399791198778738 2.7056844651282166 +4.604876606031203 2.6684273352701107 3.166510755857001 4.840142060304856 2.5594682106756075 +2.5732922827835445 1.337165809017384 2.279851644733606 1.13866840482559 1.682351879421341 +3.2720660349360595 1.5626146654939 3.348450415206296 1.0335311880926379 2.877685704267958 +1.8068811621471905 4.254902948800201 4.041447210863476 4.731745940955169 2.5434863877548075 +1.7944764598538816 4.1986179671342185 2.4619802751018947 3.2400894641208136 2.5269250675601462 +2.8325344342137018 4.27479592931075 1.833312628810873 4.588151039645763 3.1095422315914725 +2.7641634476474404 4.6091893927982825 1.5514328860118685 1.5229661666172514 1.8452455371556518 +1.0055305379060058 1.2016930296620671 2.996063240754678 3.8226784204524473 0.8495718795244593 +2.9320638257716127 4.679920950755145 3.159491975950658 3.553776474427339 1.791776993683842 +4.029745354591553 1.846620175379332 3.8922110082466483 4.959489711818475 2.4300451393355536 +4.662773273295356 3.9994371317112103 3.894793853038699 4.803863625507338 1.125354472132192 +4.08888729211709 1.6403364237016045 2.652874591551868 2.3541649225632724 2.4667040401242923 +3.3447395188961586 4.052071912978422 4.585950903085035 2.0245584028172274 2.657263753590583 +4.414321551405762 1.5439395248650678 2.409066287835797 2.809127480939371 2.8981273154427356 +4.475437653553838 3.500800248455975 3.572538014654443 3.0875076044660146 1.0886563140970853 +2.761178963706695 3.7507678272726994 3.665593259041259 4.993559360309165 1.6561340782106195 +1.2911985372253199 4.085244748428524 3.5845553196533273 3.8586286228153495 2.8074562161937844 +4.160991211094457 2.0097184862633775 2.1980625555300435 1.4231062629787083 2.2865982576672814 +2.485917621870402 3.5944864864553043 4.5715881029329255 3.7579912124091894 1.375087207342484 +3.44995411537129 1.5132472695906887 4.525839080292897 3.761287063953862 2.0821559000664505 +1.236352730055445 1.2146975085163136 1.5250528069424547 2.6085759409631244 1.0837395123265936 +2.8043407960733187 4.0989010582159136 2.3358920683236377 4.677166459490168 2.6753414823253707 +1.193950855668723 1.3379448660342952 4.181903425703895 4.207952060628713 0.1463311532196987 +1.5657807427420152 3.138871622455403 4.410740382964678 3.8782920391267934 1.6607577049928588 +3.7443352465403867 4.876597914967087 1.073767743335051 3.624959599876053 2.7911643877052237 +3.542681491472079 1.6201638437287467 3.608208704099642 3.4493612777623346 1.9290688455155098 +3.712141761467903 2.8487328010394233 2.662231788394247 3.3447200768103738 1.1005749846209307 +3.1823664244077445 4.745938163498686 4.610147482928001 3.0795404024519266 2.188038989160697 +4.778596840074164 1.6711646076825128 2.2838871839275576 1.2015756351653009 3.290521747001639 +2.1886205015359748 4.687600956993613 1.092251794554929 3.8828810046466513 3.745999827145807 +4.730149988527419 4.0677296620698 1.0978027029461095 2.268078732281814 1.344747810461858 +2.1345442149744813 3.4953220254387376 2.933713602433344 4.208154199477137 1.8643806169463453 +3.5437124433823084 3.2758057145524555 4.786219312044666 3.1423042205588203 1.66560224644638 +1.1394380866122669 2.792230779210173 2.8754314802930696 4.622763920495132 2.4051807294437415 +4.043583788098266 3.637662679360957 3.3137447058064584 4.208825016331411 0.9828228267637924 +2.6086077787237736 1.5104031689938844 1.6386897663880204 2.694998839131389 1.523759240166219 +1.6491572628555002 1.7661660384238909 2.6967139913214937 1.3371782600742947 1.3645616358735395 +1.7683242951851703 2.026718606274162 4.191570853042666 1.7612772401760295 2.443991543509004 +2.9075309163778056 4.807927973537041 3.8342454838280844 1.048998992022523 3.3718106404385564 +2.3865119356099527 1.8553096376550071 3.494249532034639 4.708006539365176 1.3249082814280375 +3.358214205717677 1.2855308856090257 2.140628057537513 4.945234544052417 3.487382068207912 +4.220384117127756 1.050352207377474 3.279875207607263 3.0896819364791064 3.1757323232944943 +2.2837473997808537 4.54475100895978 4.9439477830646155 1.0605876496786153 4.493620282833415 +1.0843706219541942 3.003369964469816 2.8291169163904764 1.816901909006083 2.1695939015745727 +1.836203430199713 1.1215199622962557 1.7491921589604984 2.9168768238440976 1.369036133890861 +2.3802043062677183 3.9432672513752496 4.694256436378016 4.6551410455228845 1.5635522965893973 +2.061843317107749 3.7986628494989025 3.2587400617957973 2.8021467507466427 1.7958339399260321 +2.3141313801314825 2.673005889984637 1.4074077068860538 2.4594927319516993 1.111608660361065 +2.0072016526072254 3.60030036442571 1.0769194532451047 4.680105869322032 3.9396593576855103 +2.614416720927076 2.9755206463394064 4.602923562828476 4.960814145643972 0.508410969803179 +4.260200661435981 2.3750641837677655 2.981919367942442 1.4377738142380956 2.4368268363714782 +1.2185696849962047 3.503875093743524 3.8779288062955075 1.9619081982727642 2.9822400610309012 +2.4773816348679847 2.4869836886951866 1.3677217394423997 1.0559116055012403 0.31195794438690655 +1.8104730814543282 2.6253080351106837 2.0791011515052786 2.712580743562452 1.0321106506828994 +3.750294795358835 4.340149770993092 3.6501669385114406 3.693413897047497 0.5914382399736333 +2.2375896549668433 1.9742540523996475 4.814288315737555 1.9717737468602228 2.8546864475558977 +4.300366974452295 3.156530347756418 2.793219486881706 4.498258089055657 2.0531728771524094 +1.0158238990963055 1.2166029152155282 3.1857713414251814 3.552163581025679 0.4177983802664527 +1.544501116913887 2.6366886582921523 2.3361697923070888 3.4733892615247783 1.576750375522284 +2.8674063332127027 4.3826929477139505 3.7674642248839203 4.084939258013689 1.548187301571551 +1.224461190835806 1.7252496004332571 1.1084981618788894 3.253368880477219 2.2025574750021075 +4.6832033025391375 3.3954633805949 2.2475682758333706 1.8636787615517747 1.343743005840146 +2.75328019687744 3.8574830061349354 3.2761646522260905 2.7136225082528838 1.2392406980559174 +3.3166059725355543 2.0499855094368877 1.61827142536923 1.2536150652722564 1.3180673952797157 +1.936763369928602 4.251485876651582 1.6657426875921097 2.9795148340254416 2.661566744583716 +1.9072393619750576 2.832110869333733 1.1643331516556312 4.9043693136980036 3.852694874825743 +2.8515282774301705 3.820589805012057 1.7218083801456219 3.245574109501501 1.8058079195193475 +1.0263321009880704 4.619171716521398 2.286076321871508 4.275809565861152 4.107010455937899 +3.8539273983328255 4.013234095760697 1.0978956767490775 1.1362589081673669 0.16386079875988824 +3.9881497912135484 3.2428504438215686 1.0086816494968907 1.8936902087145215 1.1570269085511269 +3.0851079438194566 3.0734674836470037 3.5440495707840207 3.612728380464587 0.06965830325356714 +3.0674828190902237 1.0053857496068477 4.455593508143671 1.0004663643803529 4.023698286842838 +4.700183291021025 4.193765405322349 3.28583978179974 3.3702396885431085 0.5134027845793269 +4.332718113248365 1.7167148663839118 3.8379847313347484 2.7161551631630716 2.846396769185493 +1.0122278646106109 4.481269849498927 1.35372005216984 4.781098965069122 4.876594970417836 +2.1203952993867925 1.5684261531379633 2.4350484706581943 1.961504589298107 0.7272645639547124 +4.1427516926668355 1.99924664545288 4.591016791343391 4.73944277188109 2.1486377449747733 +4.749637673742282 4.106051567824581 4.042410705598017 1.4408892198302392 2.679947222734376 +2.8770336600586077 4.27876897442594 4.663826314093424 2.0515757057238613 2.9645767206249927 +2.4088302062641263 4.387387175291289 2.920749911889741 3.010839889628815 1.9806069483304813 +1.6997936541753869 1.849729411110598 3.4600998973436594 1.0792227990737229 2.3855935295590505 +3.077279562294043 3.535761369807765 3.958076396326943 4.789323928366603 0.9493039699395944 +3.9232229378726946 3.948799534750983 4.555743760642546 3.0754475584320566 1.4805171422805858 +3.303146240509694 1.7733874536887928 1.778861155505287 2.160779232892758 1.5767128348850012 +3.2441956545079336 1.9942257981124283 2.409813107066721 2.0725891710676443 1.294660042214986 +4.042830853455856 1.3640771228715756 2.315490528578982 2.211032601241465 2.6807896239173354 +2.9757948771451237 4.57184249644732 2.130169383468292 1.7005108113997967 1.652868564536257 +2.2941230300690005 2.2065274730420708 4.281216648402248 1.0200870015781898 3.2623058647229364 +1.6944682004863765 1.2564406216135344 1.7810283976825314 4.329922401693427 2.5862576831274757 +4.53296971762498 1.0244812736854998 2.783298766942161 1.8033872589516151 3.642762375553638 +1.4344875232252168 4.36788483307666 4.359384656003504 3.96514127943269 2.9597715481796296 +2.573099386449153 2.399591567030135 3.0198271181233176 1.9111093863765105 1.1222120887289209 +2.6231840982508126 4.086589562622352 2.3797258234316856 1.3344294288278205 1.798388196615047 +2.623976106650943 4.024518277033025 4.985340136440313 3.5821299724244304 1.9825531860245345 +2.0985277281038077 1.9975731333481486 3.0503426085998933 3.3973259309403745 0.3613713549587428 +2.3229899446225635 4.665263771566169 4.208260155562613 1.4762728607510027 3.5986110180730986 +3.7833247227377926 4.220164308023113 1.8650554931008765 3.97799385514858 2.157623077621549 +3.8373127490736616 1.7870241185865896 3.5285889819838463 4.738765177658491 2.3808002631220684 +2.7871713381693546 3.5531855990845305 1.091162797874806 4.455192508561382 3.450141119187363 +2.0480018474839334 3.816664618981031 3.879996994222572 4.304007919015556 1.818777958856879 +4.7161021063130075 3.776020345393635 4.043982267722518 1.372357067163466 2.8321961318869606 +2.690154667116161 1.0395201883113256 3.0195030665295333 1.307422112897871 2.3781958233937788 +2.751913085022222 2.6113931463364803 4.083537123704513 3.8811758761849746 0.2463654352093827 +3.801237833308742 1.3774303247362876 1.1145120122689955 3.157108724108556 3.1697072681605776 +1.3950977405718255 1.0377478138414515 3.4691960532456867 3.9958561751932433 0.6364509833318028 +4.821775761836305 1.325338781860911 1.097656783025796 4.680542661372961 5.006210420287884 +2.5068171942839106 1.355712033602328 3.9862730758615106 2.427004803560873 1.9381332864256748 +1.9661488989841698 2.4184345894034496 3.931084071706262 4.997672814514305 1.1585222881079522 +4.221524796841703 2.739525867643678 3.8029836956911223 3.972599907515267 1.4916737195035876 +2.5738725827007167 2.770509877838466 4.338546483219659 3.0587911419579314 1.2947740958665381 +2.747914283388726 3.4992721237270046 4.1067297440017105 3.1161310683629324 1.243311843591584 +4.8400579896719185 3.885625225268541 4.693270416665105 3.978933181360461 1.1921491465036396 +4.417324428644 4.1506157098258 2.19104419254497 2.7802357053615805 0.6467458383853519 +1.1686306164881506 1.9613539906781963 2.0647228034469487 3.7739100174455014 1.8840730560366774 +1.4176749652857876 2.949797856745859 1.2887242121965876 3.3392249447116784 2.559678458045247 +3.8945159460170804 1.2267166333611428 4.179038641370642 3.845557640607915 2.688561464887348 +1.7056779788456398 2.1818305304411427 2.9134441048297606 1.065268577112692 1.9085266656882667 +1.962173012960987 1.6377592312017413 1.0346173359802804 2.479083403185977 1.4804480811916465 +3.3003784023000127 4.4318691039674345 1.7072553938456125 2.5512595319914264 1.4115998700648469 +4.8678975736292385 2.40986170528355 4.10449681113579 1.769369831562543 3.390392062992836 +2.142840199686679 4.733513426454071 1.3385116407893234 2.6974657643422417 2.9254647627019628 +3.1759801734118605 1.3383538815277274 2.6431448757375264 3.653505032329168 2.097068915093568 +4.7378344649643935 3.3142549122313167 2.6003063725192948 4.418098173177433 2.308884097026021 +1.295537508746341 3.2042819702207663 4.813212559601187 3.573573181169074 2.2759637975523357 +4.39551338857126 3.5990192388917044 2.701670686409672 4.419444686596352 1.893449351366734 +3.487763344105395 4.531161598332812 2.348977254031938 4.1017513298701385 2.039827658861228 +4.748094571903794 2.0187725379653165 2.2992966400385644 4.701050589882111 3.635604599035921 +3.3053927180894678 2.8961697371420225 3.1288208699506823 1.875718199560894 1.318229779163531 +2.839194502126591 1.8252682128261233 3.269196108672254 1.036211158899544 2.45240051909268 +3.5756373223757705 3.9771680503671725 1.403476442206245 4.050913301122307 2.6777133617078306 +4.976598034550313 3.8995624586197963 4.926763631048301 1.6811194992983118 3.419680023303806 +3.619362833738017 3.003919196181251 2.2655005820462035 4.410439163396189 2.231486587181916 +4.764836094176259 4.315883253552547 4.880765305907907 4.336428295860904 0.705592965959136 +1.9322900896243613 3.0830217455132263 1.2038534076886762 4.556515186530976 3.544647281066868 +2.197172109071924 2.5886974840590216 1.6272604878117907 3.4491308605671644 1.8634655280907646 +2.6485077718105097 2.5636965660640127 3.759420160442578 1.7654929829330124 1.9957300743916842 +4.383247263866617 3.4661444017265404 1.755838012574415 4.467522113495637 2.86257023021872 +3.641601543237053 4.862403466728834 4.035968019130719 3.105589383677226 1.5349142457184812 +2.7147356470939807 2.13723590130086 3.001203899854707 2.0912277687513137 1.0777580969628662 +1.8485066002690718 2.331071896584291 1.5094880656625862 3.034462270372256 1.599504795315627 +1.0271861292734825 1.4146742879850622 4.988161312289487 1.5322527531885641 3.477563952252885 +4.831472851594576 2.1444879922214506 1.5691626485690162 3.532577539660257 3.327895080837021 +1.8905923333930663 2.3098980946549768 4.627985796039106 4.068759685260408 0.6989643513113518 +1.6738361620323978 2.7442447458278467 4.021998333098228 3.1447335624671324 1.3839682128045454 +4.95345615235711 3.4247576703872373 4.876820226636088 1.7103924233607484 3.5161319773484165 +4.901508172971845 2.714340554500441 2.567644134204112 2.345086424510998 2.1984617634686563 +1.9827202533115114 3.9305290901884047 2.1415046298902642 1.8269790204549206 1.9730396914422148 +3.0943599352999795 3.35485938940057 1.7517767626275114 3.1338495667135216 1.4064086182119593 +3.221092844379933 4.827627870689755 2.6493698033717776 3.1026601299767327 1.6692593899552957 +1.8118029678589123 4.317777676538327 4.653620325520157 1.9994249735048517 3.650296180750341 +4.6979662212175235 4.910940211259571 1.5124338987378376 4.4694303059831935 2.9646560800363293 +3.7703770459208976 1.4478147551504743 2.77293439808629 1.9386471072613296 2.467859574234484 +3.871856842956078 3.8080803345317777 3.5200030660858777 1.4247721939619469 2.096201290555848 +2.6321206845437652 1.8201024953459504 1.2137726869020002 1.2448326031133479 0.8126119971937126 +4.554960154114367 4.354434463528531 3.548378005502226 1.9173400037466717 1.6433184462409218 +4.006603475314598 4.137694582979584 1.99457683227309 2.3287735670490672 0.35898793300577403 +3.4532343900745395 1.9608052142323795 1.290866893788607 4.111566489592711 3.191189598672311 +1.7556435507974033 4.743123821958308 2.952282115273909 1.588605063367837 3.283999615175201 +1.1411214654725863 3.207600998218329 1.647336947222283 1.5720187224733073 2.0678516615648235 +3.9356776183026407 2.1823068774206207 4.5880181138638605 2.8622442096319185 2.4602041629728872 +4.33077072853971 2.1389575236422815 3.255684700861908 1.1033503324443257 3.0719030516333437 +4.361863042189027 1.838966742646361 1.622660435341396 4.796531651041434 4.054437597509094 +1.4826636360200425 1.1950416748266854 3.1991189875609156 2.7208361372737633 0.5581047190622165 +1.862967514874566 3.191181247481567 4.606279692939761 1.6132373759589105 3.2745158467663464 +1.1541617099494919 3.8429451206107674 4.500454970752935 4.662035238816948 2.693634053184456 +2.5103272396481158 3.259102501680176 2.877457727710834 2.085662265862579 1.089772658142363 +3.1474959724622544 3.3414268811919983 4.591393552874873 3.5417031920005964 1.0674544725997046 +3.874916458729028 3.9425717425268765 1.2520637603746176 1.82325023426564 0.5751792984642502 +1.0198922029156683 4.082611020932297 3.031276944010826 3.4044535330404133 3.085369884605885 +3.5208049920635127 3.75852914537601 3.6917805693719163 4.670738230298502 1.0074079982583997 +2.2590444577496767 1.626159939734904 3.112411631354832 4.39830013949946 1.433196451475236 +1.671899950185308 4.536703320233617 4.822691277044775 2.8852062551073017 3.4584601427907478 +3.3630273484412405 4.359028722615481 1.823502261525792 2.436191042054322 1.1693614835210333 +2.4423519349354263 1.8952767697484574 1.3332203095005934 4.793817661418562 3.5035732143721514 +4.620309053726526 2.0232266848703153 1.5592366536809426 2.5481326263655615 2.7789840005684896 +1.8296729978610666 1.686172087281884 1.3425411270865641 4.781492491664311 3.4419440726525763 +1.5273717476179356 2.9780444646555244 4.106008932636451 4.8906197797909625 1.6492621118032575 +2.284278617637144 2.2773669920384947 1.5847812855685506 2.520743004796021 0.9359872383893157 +4.660018393348219 3.1103063289680764 2.285521352692713 1.0489423993399725 1.9826081282896835 +2.007500440297602 1.5114756797344495 4.355814770191689 3.718870127610125 0.8073035617443348 +3.557179283117626 3.1719607392297977 1.0662294577302696 1.8424881406945306 0.8665857542288978 +4.048043500420931 2.2722145031257317 3.705260407657368 2.988876304251494 1.9148824536370663 +2.165285490646033 2.4150761693796374 3.413416685618382 1.125898048221206 2.3011164463411293 +3.8257831457699036 1.2065499950597878 1.6414957424963723 1.3872481248576904 2.6315440617351986 +4.364322217139842 2.552308021853526 3.751332148940608 3.4607470890219534 1.8351662379651175 +1.7920352302043807 3.256142479937553 4.507690155455522 3.7039473805734078 1.6702133058075053 +1.1379291081629819 1.4717742722296228 3.023271790498039 3.4168478225401984 0.5160956176608491 +4.0739878584252125 1.3799005228936005 4.546469787108678 3.6309054874399265 2.845411140468061 +3.5913570113787863 2.0934821992249066 1.1799641154823033 2.9047627673934056 2.2844166306782516 +1.5047529034532685 1.412910803751486 2.280484219463953 3.9974995421211124 1.7194698571120988 +4.565668058837447 4.893511949186507 4.471209168575715 3.214104224596269 1.2991514371376314 +2.768592033070134 3.168523459501452 4.148008681057366 1.7549841612759591 2.42621340737422 +2.7398682429259895 3.7031087791220636 3.7694612631870665 2.8538618956029644 1.3289674685603512 +4.0688471442019285 4.221129194971272 2.509668547439358 4.452600226779978 1.9488902825895256 +2.7169721777544216 1.9807080416558525 4.249753026894062 2.733431775202285 1.6856200688284089 +2.8667549090446003 4.695023226126495 3.491981875511403 4.226102117650637 1.970151661462648 +3.1376630713739546 3.2214127076603605 3.8944685309764964 3.1299951289179404 0.7690471923315811 +4.231628939008341 1.020261997923677 4.546787189182529 1.2177955261815967 4.6254797721556615 +3.596447002460332 2.176352452775203 1.9238667293690965 4.3419108503905 2.8042121712259185 +3.074208560826315 1.905011769842297 1.6231245534498036 4.019565276580053 2.666448813595408 +2.8419307128445324 2.6139397175003554 1.8780824956150104 1.2933299064679935 0.6276268672325688 +2.8555843150994678 1.655153786568563 4.665193771243214 1.7333839095366472 3.1680502709125156 +4.333674205615808 3.815372862743895 2.2557689726771692 2.985726014842705 0.895250560139387 +4.8550816270720105 2.9801360026503447 1.566982982736358 2.1875069220826666 1.974961025904008 +4.862443934928191 1.7704817044952788 4.648753166073469 3.380359672843498 3.342013238766686 +3.2359619948029192 3.2067228544264137 3.277706141511463 2.9003245272225335 0.3785126287632622 +3.1559623497958027 1.1419870060344 1.927503137347545 2.540171476340785 2.105103127849939 +4.067780539234466 4.594312144616062 2.794053340093998 1.029849419603 1.8411004873557362 +2.7034588247121696 3.6594649242088426 2.084446332171196 2.159288654496037 0.9589311943438998 +1.8102266076671074 2.2718587176505123 2.351154290147383 4.3851484238801905 2.0857220191164507 +4.7785120856484795 4.4792997025518595 1.8155813760697543 4.098137859945449 2.302084306075982 +3.38516563307284 4.712648009734639 3.9565370196364604 2.1373519395067393 2.2520310424401875 +2.174904402358067 2.1836218928817 3.73333159716046 3.663923765877127 0.06995313920393587 +2.3834489008084465 2.727630325671284 2.9482361467530707 3.3952958186348687 0.5642013855385983 +3.0631855873201506 2.825291767338497 4.705852789700318 1.4828222283648254 3.2317981788608092 +4.613912013304242 4.326290747566151 3.64581018806776 1.8401543303404475 1.8284198284446977 +2.4560543594226214 1.079263787777228 1.4656597527248971 2.5272427851827834 1.7385369748653985 +4.782372601126777 3.2919796345524337 1.683364377783319 4.013840239436025 2.76629516439591 +4.922928181731279 3.5678744525699146 4.158649174967594 4.210663029342019 1.3560516398577906 +1.3605490501369304 1.4884922520956123 2.795957934826713 2.8110343344024846 0.12882841593223288 +1.0142107906947104 1.1504929994380415 1.1152084241670552 3.7446267701121227 2.632947716612021 +3.46293523886613 4.594734114987169 1.621981180424577 2.185424853689745 1.264293268562082 +2.789117571080717 2.4481639022476824 2.0594147390731505 3.6655039495462765 1.6418806157235961 +1.6885166674613745 2.3486586664800555 3.244192557774337 2.1806867140504784 1.2517316559483411 +4.158469277285565 1.0569853161624083 4.481572394236369 1.9139474160125785 4.026400475598883 +4.869744242769031 4.604778215430075 4.806318094780623 1.2295405603258773 3.586578387073669 +3.662471832445958 3.8518247540129016 3.910162192001544 1.5160321336320046 2.401606392666057 +3.429680659729369 1.4061989176418495 1.2970890809390823 4.804208654902637 4.048995686172047 +4.6621657085864845 3.532658512934841 1.777716685444426 2.809905812173303 1.5300983296396875 +4.921839272915323 3.8212455803356833 1.593659416613511 1.2178194868514836 1.1629970459763048 +1.1105328312502518 4.3536660958796105 2.694927991370104 4.148176987720868 3.553849464670667 +2.2146351853828254 1.6387977865103114 2.1835947985676656 1.4445237744898063 0.9369176530366788 +3.9019320904127492 4.526518191286291 2.1790199936051473 1.1693761969850303 1.187218763942812 +4.63165376000679 1.8302358900773474 1.0433428876780617 2.165631484983484 3.0178591381311666 +4.625837072919077 4.999723311068131 4.432063470816 4.2752616420558756 0.40543523845340634 +2.5920818997555948 2.2946399360201473 2.1639079530038385 2.39181693523306 0.3747188625777448 +2.2754478274669303 3.6150309349108687 1.7992697455213271 2.1152060452839274 1.3763352234309931 +3.356915514205034 3.7228958744171705 4.416554133665301 2.7468357917417205 1.7093568864976778 +3.8510842599511 1.271971939325716 3.079582176028842 2.5431575845561154 2.634306683880663 +3.098904621617135 3.0016979837594935 1.5360785243559563 1.3208128170992293 0.23619579836298019 +4.732386473257358 4.2173715823863045 2.4979188400382366 2.151484982392974 0.6206905473276526 +1.8598897133305763 2.8093959753923095 3.6724844621201513 4.081588836764292 1.0338899994909603 +3.089335944323936 1.6023135774662336 1.6834109969107196 3.556161049119746 2.391323540967218 +2.404124932010103 2.476196807470817 4.313790272608886 4.587270026688051 0.2828171337165156 +3.1248275771588148 2.7721727985664253 4.097527151528913 2.2076155474003465 1.9225325131929134 +4.205381626301195 1.223899828418681 4.105157448778359 3.924604429926968 2.9869437731100827 +1.6045221023726448 4.00531743739227 4.090833075474547 4.291354069487289 2.4091548123132003 +1.2915785259914943 4.191249904797605 1.6773067088392462 4.669005819589782 4.166336241151556 +1.0551804030257435 3.4551844481372584 2.0092192182881488 1.4080472020761579 2.4741518162045 +1.2301764858274171 4.207825369194329 2.0912181233514784 2.7586505936463417 3.051533872500864 +3.9184205691095846 1.6896563446147366 2.316897203202652 2.6111443396884773 2.2481039445982542 +3.3741962523999933 4.436085166653903 3.0041417859237285 1.2620240769737499 2.040240715712847 +1.7295664149415035 4.378573609143837 1.8567051240008055 2.5137023435319534 2.7292644542820286 +1.0054974638904874 1.2080387851521701 2.661824661723175 2.5447748431930264 0.23393085909381195 +1.0578673048691254 1.774609130341604 3.9707520218591177 3.3930361491657752 0.920583768020842 +4.53253841582744 3.0173620842860074 3.963020166127375 3.0376419988104475 1.7754109575560777 +3.3274070153117448 3.8749447053974992 3.6307293400448923 3.880809804943009 0.6019449816952558 +2.158204022906281 3.0114329371080117 2.634369147357896 1.0465675699176802 1.8025297305041885 +3.447842204035306 3.642064549410583 4.576911396069832 2.697809530225102 1.889112527528262 +3.7987397602386204 4.39479460998407 4.1027744648021525 1.008249561725171 3.1514069492321473 +1.2287050452417008 3.8421125174224278 3.2157462219504347 1.9098009982375004 2.9215392420757733 +3.9778196476648113 4.564869010506833 2.736842348243088 4.033363072904788 1.4232332710734814 +3.152368817862994 2.271027205947672 2.678884418388266 3.2781696506709865 1.0657888282983887 +2.092409704161699 4.17746460323754 3.0587870721130264 2.335976549111103 2.206787027404883 +3.7027239816293407 4.219904771989382 3.373956291855907 2.4318629987960665 1.0747165871734614 +2.5881258900263795 2.3973638414133025 1.9069717276768587 2.9071630028956 1.0182203819482056 +3.532651235743223 2.2930059939890124 2.132269049346567 1.7066156150035714 1.3106872897727522 +1.2299834433402497 2.5066952256406703 2.6326736446758274 1.4866338829851808 1.7156340257877467 +1.5635754877718875 2.277658276953603 1.4690863786816046 4.238459669751801 2.859955009278732 +3.049283109079389 1.5130046829751849 2.5816529993662716 4.830899121511331 2.7238317716954916 +4.744718296555667 4.756634354464683 1.430662693490508 2.5714490138367587 1.1408485531065153 +4.653553502383922 2.611495671069522 4.181379230040509 3.745521106724583 2.0880547143437 +4.32106016622395 1.3226937791799651 1.1746933349688988 4.002379091291754 4.121408464040704 +2.2017525342229507 2.398467991555902 3.3573241177375737 2.596883159805316 0.7854727376902662 +1.3672726823626613 2.9674932730734715 3.059076741879249 1.9387404578089105 1.953422465402553 +4.042312641573691 1.256429671093898 1.3343830218662491 1.9160012358580372 2.845948641851485 +4.770863739320454 2.33889286359939 2.4980605079620206 1.7228406200847104 2.552537603036631 +3.5436051631423977 1.9225114086499717 2.5922218791732314 4.110313844954726 2.2209340776854845 +4.037398847796243 1.2358686493175757 2.392093484733403 1.7407331371412682 2.87625481405999 +1.3456150429040408 1.4968363773651245 2.302626147350936 3.924066996949124 1.6284773012670102 +2.8601958742666005 1.9530534153773953 1.4599079099116463 3.6749932106012726 2.393639557253933 +1.7914558524930273 3.534650360455505 2.2361850843623854 1.1719427320066718 2.0423855848341095 +2.5930793849394354 2.307670577033179 3.6805799104767716 2.092239146180566 1.6137795918760172 +1.4226471122648485 3.807434384608211 1.6174341130954297 3.717782230204887 3.177840862500219 +2.0850873371487615 4.8422952140748965 2.1081852711800617 2.910019713175883 2.8714340927408166 +2.418196683652542 4.731293761151248 4.200502163539373 4.489449699877683 2.3310745952648175 +1.1563144313410447 2.405764197205317 1.8188503954700797 2.7412162129417466 1.5530239594605297 +2.2485758754426564 2.600512286629993 2.316512594032304 3.9705617396191393 1.6910759336990049 +1.2598835688153258 4.038125318147747 3.1528348709780016 2.096235919233956 2.972377594209775 +4.801512169891268 3.2349013710824828 3.651061009939378 4.826779985719469 1.958720119096571 +3.933480935144692 2.2050742949676736 4.007376884543963 2.623321095117623 2.21427187627278 +2.4824608591461486 3.307374322766481 4.711364694624111 4.189767059770453 0.975984792477333 +4.128999953617527 3.883210203309651 3.864995381751045 2.6911028908084176 1.1993482320193307 +3.2284644656334547 3.3875609304087337 1.2285188008032883 4.660809474722884 3.435975982945664 +4.0966775315088295 3.640969008302787 3.482459655972446 2.3114592811506163 1.2565477054037775 +1.558588419710587 1.129384554406792 2.8854595398077705 1.9083282805452364 1.0672401116054924 +3.388860428195866 1.486819849886459 2.9300716969791734 4.93453745979748 2.7632664286757365 +4.5613360208959675 3.7791696853135788 2.810194041036113 1.484066719456532 1.5396096419411691 +2.2711363092925536 4.802616170493023 3.634226840026301 3.0457454884529125 2.5989806826548727 +2.1192141591743017 2.5120820798022403 1.3758613049198303 1.5061203203113558 0.4138992801990479 +3.0352721939900804 2.1539022663634686 1.5824922521942844 1.6127087221301304 0.8818877391028422 +3.240671182640673 4.988604108046449 2.0262161004532313 4.420616898279464 2.964527735128901 +3.577976062009115 4.312780859909081 3.093494974495752 2.528630761240426 0.9268277458262498 +4.6802022585752905 2.0337219669303725 3.2374054562767847 3.146660546850387 2.648035606379147 +2.5750816113714174 2.0875990072882455 3.572342808738452 4.429331352317298 0.9859354203542454 +4.75523766043763 2.584493305980667 1.9128369209773677 4.438017874283577 3.329965450173205 +2.6002406045120026 3.2084110364040477 4.57815885619387 3.227024119099377 1.4817004933559144 +2.802260588791486 4.839220299182307 4.582036571012915 4.939224796307535 2.068039721582875 +4.451172908839835 4.461719943315497 3.8308009615711556 2.61437787661135 1.2164688082969335 +3.8598465732022027 3.835964500200253 2.7653184080664426 3.060850075738959 0.2964950589945288 +3.4257833312737658 4.069835242685275 3.3998562117982094 3.424510156387783 0.6445236082383982 +4.884626379763332 4.3783950410302435 2.7417883962191207 1.9786215532783227 0.9158022704054187 +2.043606408701147 3.52896128305271 1.5992018293336008 1.908542382533085 1.5172246638562497 +1.0723281910480122 1.3712583684571245 1.1698535306530777 4.109677607787932 2.9549830550220824 +3.000326217558637 1.185650929232406 3.462382232145885 4.23263021711413 1.9713772750058602 +2.6709775246385785 1.539186903903417 3.5522614911565875 4.3137995024305855 1.364144476145851 +3.1511294367268965 1.1886677456855335 2.389843868647535 2.8469646728865383 2.014997597634558 +3.7781113804644977 3.908587262648703 3.3318099192093347 1.8162943085745962 1.521121797197493 +1.7725617880313176 2.883744083350714 2.4768390750434293 3.981491179744474 1.8704823040094676 +1.8588353370134985 2.2413521523827633 3.3438513695538146 3.4144937597905187 0.38898516853293913 +2.1130691922983136 2.7405424795169355 1.7073484201833682 4.538010502687435 2.899374165487994 +2.0015768818039374 2.763179664073012 3.3759506629762104 1.937591262598937 1.6275492504417999 +1.6331995081347714 3.3822993351091934 4.640341002827993 3.8021901132000897 1.9395481738038887 +3.683374508805028 2.855973381749581 1.7504486759957305 1.7707295739426523 0.8276496480239435 +2.2840475050851095 3.239685935146277 3.7105953474300932 1.8483810917378016 2.0931045705156177 +3.825736963813236 2.032957952445919 1.257382155395395 3.114960903540912 2.581599385877104 +4.817953010281272 3.9287237281155614 2.2284011104341097 3.186748752090986 1.3073480479697217 +2.1439895888446476 1.9336619718627155 3.9177284556195913 2.6022917203410096 1.3321454541399267 +3.52689848012294 3.432746277769056 1.8827753444197066 3.795830648009897 1.9153707818077004 +1.164985987544295 2.636917599727679 3.5727734540630607 4.216629664693073 1.606590641984328 +3.639407822769051 1.1352268844333935 4.1291891090006505 4.1318890719862775 2.5041823938610737 +2.4852312945278325 1.4835675163910849 2.2657467223070187 3.2564127573465558 1.408811384611915 +1.7594584911409132 4.27863217669683 3.924007762200861 2.616940559280968 2.838073418878767 +2.840643282870466 2.076492927983943 4.0952389784380365 1.0147383592956523 3.173863549273946 +3.0832812950369894 3.3714822034566962 3.9604469092679726 1.3044326897441336 2.671604629792135 +1.88847732062922 4.816365037973201 2.175863039990103 4.194791998767695 3.556487118768254 +4.1450911658114595 3.4854327401472442 3.7827847105287318 3.9531330336291868 0.6812986054094988 +4.395753425753051 2.859107672532605 2.267057679309653 3.403920872400391 1.9114753701512608 +2.4327588451142836 1.3185017058881998 2.2100557827327685 4.43049610502975 2.484335765793066 +4.074574700619403 4.554522245263008 3.9560430449446544 2.9482779718086145 1.11621686434237 +1.2672917464323743 1.36047372548372 2.706908910241274 3.777602949320589 1.0747411811873144 +2.103750740467821 1.7451619677833343 3.4270858689622172 3.8127977948910474 0.5266494068154771 +3.0722658381541863 2.441680923715115 1.6982121200278084 2.573752492546645 1.0789848368853727 +2.0317604906451976 2.0078423371156773 4.9505611033650805 2.793441725555614 2.15725197605411 +2.6329636373918137 3.805038780908445 4.660211808045966 4.766187846450828 1.176856432520773 +3.532492820290406 2.779639618478333 2.885820310419855 1.7080923085293809 1.3977951172885168 +1.7946559297261264 1.9741669894658433 3.32404919858785 3.332919078095799 0.1797300624029318 +2.1460240178645678 4.60690749224187 3.4631640210887094 2.5168949326968577 2.6365455926475554 +4.268510425384539 4.430288324844605 3.694162149958408 1.4344151588893985 2.265530523387216 +3.272141122852321 4.709619187060374 4.636162711256031 3.656098033669403 1.7397902049765404 +1.428680906692584 3.264399857734626 1.0970919233012064 1.523098389636425 1.8845014132587734 +3.3117115607745227 4.010803647979392 3.4555569077398176 4.30038863264039 1.0965721087967433 +3.514102703184674 1.4929476288718821 4.605468196682524 4.207098922060812 2.060040269844979 +2.316602957569075 1.2918558074055482 4.975187076014764 4.278731437492754 1.2390145996707915 +2.2387424214353673 2.220801290993911 1.6200328277506948 1.8795863596518174 0.2601728657717104 +3.0705057245688816 3.4863468666275863 1.7577316626546589 4.557886249342554 2.830863748889717 +2.67972159335594 2.6726808345065525 2.1695411281980386 3.2797837854873526 1.110264982042581 +4.93442621350459 4.712392530164266 4.297165580000051 4.256249889853226 0.2257721201518524 +3.7112858924897307 4.624221502309286 1.6431270027006155 3.6412646925428445 2.1968171647282446 +1.734819323797257 2.643537899317814 3.5519598516984914 2.0468422329704876 1.758166230963832 +3.6423306802148354 1.9615835909852057 2.897648189860096 1.9287039291400871 1.9400422052976365 +3.01331328693612 1.8978350138012012 4.765652194493793 1.0543821112782763 3.8752828810819175 +4.447776243370072 1.9172305646389356 2.6088939539010267 4.215779102131591 2.9976226099608985 +1.5229495527747385 4.856791063509655 3.9138468253332706 3.13228431442177 3.4242282600845346 +2.936523836088613 1.844443408689124 1.943101468894127 4.7401079200481 3.0026462908084914 +2.450605477362265 2.2527283141857586 4.715219340141065 2.3518595853303967 2.3716291241181713 +4.876370845811057 4.913360043099292 1.9138598667534445 2.3145257347677655 0.4023696540591713 +2.090834037025284 3.9619886628605836 1.6904435587492097 1.4070746688620468 1.892489778450791 +1.828891828107103 1.4994331481996404 3.8694102732781617 1.8804096242740047 2.016101833614891 +3.5536081827476718 3.1542524853418086 3.814652094033852 1.7192986850883543 2.133070763343317 +3.8587166128417985 2.941544126214262 1.3788315367775366 1.9463088354955622 1.0785341231443935 +3.285963164335142 4.225231641909641 3.6273746190178278 1.4649091175204467 2.357643382306034 +2.991740990809206 3.2904581397627117 1.9584741572609334 4.000501517832879 2.0637605666363856 +1.6876657976380538 3.8366089107875956 4.733634401287558 2.9210901549068007 2.811276071224744 +4.860327186744994 3.1069354027187317 3.478874553044148 3.070475106159795 1.8003257639955736 +3.5216735736714693 3.908461217224395 2.790659734823061 2.9770901672077232 0.42937278363254144 +4.725333162610491 4.3604226303991975 1.6771862115326552 2.6800005073934683 1.0671439492877932 +3.733188580604427 4.139512117741884 2.722434802210136 3.5275861848025403 0.9018689293474715 +2.480665182557605 2.1486004986369713 4.924128739725354 3.897379305852074 1.0791113725035115 +2.310320866705531 1.3080891001653474 2.171665625069356 4.306160468432379 2.3580790381591528 +2.9052931324774387 1.2310456387355444 1.0422797191599886 1.2629599878819429 1.6887286493999585 +2.453579392500699 1.1050256165165444 3.5355690609641117 2.1195478242710086 1.9554317757178301 +1.3022229785530044 2.67680652910599 1.0632166866657506 2.8663523486532703 2.267328417539467 +2.062285341935212 3.5102278893968517 3.2956709804122837 2.3712620551843897 1.717867713705189 +1.7026886563535673 2.533379801367392 4.316389058050408 3.6671254173982026 1.0543201854642335 +1.1982164821385188 4.946128543315735 1.2705251407252711 4.715633585652123 5.090738356626076 +3.9767544682723956 1.0590858090651034 1.7187888748149822 1.4607764382678439 2.929054595314582 +2.896545174970172 2.694738909696271 1.3648125891872036 2.39340322688256 1.0482005860799448 +3.7221551653264 3.085931787050787 1.326745877938992 4.349754281654875 3.0892329138479164 +1.6234798684767933 1.173886529422076 2.614528729867567 2.3075440818331425 0.5444021901601696 +1.0803664861211137 2.8031207726333203 3.5851578416862053 3.9115216822292815 1.7533954739619377 +4.074494274337219 3.3607961021478054 2.7178615458889634 1.1671313182620335 1.7070821069481046 +3.916539188077223 1.2276708968466683 4.872123160464348 4.348283101567702 2.739419846407258 +4.826312234930738 4.298174881533997 2.2481913908666726 4.173317421737531 1.9962563209141002 +4.904503751036416 4.368029226673152 2.319009254087133 2.1313688453447206 0.5683430639005019 +2.3299531812172427 1.3354741648414787 1.746717569742184 3.997128167595426 2.4603528960175396 +1.5916310280063266 3.225453285108971 4.396093884944226 4.900162734025191 1.709813022648321 +1.0420513212653524 2.354435055918865 2.4500180179136115 2.8923346481213064 1.3849169896933868 +1.0188363568675345 1.0459489240208169 2.250363146178029 1.648007523311433 0.6029654946152772 +1.0021827746271157 1.2270075985372006 2.533396950922557 2.196504225000708 0.40502211078563943 +4.702823066912859 2.6164554785185903 4.46094687565626 4.2083631775950145 2.101601350977014 +4.554002508228444 3.5261738268571254 1.619004698158884 3.3200638370503404 1.9874692430967698 +2.448324396158102 2.115593057158048 2.4043767963696836 2.202292706612918 0.38929182278284397 +3.4335382694943264 3.200021568104072 1.3532976906431053 3.241219011762194 1.9023083253153865 +4.0792258486826025 1.1560893689751168 4.6953566384353085 3.241172748407928 3.2648702370862823 +3.0696183960861103 3.9405763485648033 3.7624426100908024 4.342326695317539 1.0463428249312583 +4.0202270202182655 4.639147156241938 3.792359415017205 2.7812978458637723 1.18545671848219 +3.1293853477555396 1.3978944793918937 4.692545254106774 2.3030817178831335 2.9508637071489896 +3.9336804343762335 1.3322849760854747 1.6328734614606666 4.032270870827713 3.5389781376116294 +4.217089507563694 3.563361771637883 4.190173609739395 1.6824694753566938 2.591513067364079 +3.4482749165159126 3.556963245153839 4.36171690388619 4.542626908047179 0.21104876779463771 +3.197673959270654 3.4653013752542665 2.757182698926513 4.130932376484283 1.399575868031506 +2.60955201091107 2.1895486981152263 2.842069011679404 4.615671660905054 1.8226544214687894 +4.53318122502216 4.975564425675019 4.514940828582635 4.553966198056715 0.44410119982100515 +1.421985399929686 3.376677940228451 4.2714080854970415 3.8393900858804164 2.0018647504495375 +4.054315689666457 1.527211980451383 3.947797648545965 2.0417578674991304 3.1653184364391604 +3.6625202314692973 3.3826933373613937 3.150663053548626 1.7238197114711848 1.4540237320954559 +4.610183420894951 4.355567202631999 4.817074234132238 4.853170074851413 0.25716206625346455 +1.0366129040958016 3.2525588942166386 3.056134712157073 4.7510187941545325 2.7898115854912113 +3.413376791317502 1.9799986174675896 2.325316450383603 4.1301421998137595 2.3047709159644123 +1.290189670169966 4.042292184741756 3.28116408802539 3.394359699210969 2.7544294322244025 +2.370339165086191 2.978355492384681 4.067464271897291 1.826052146729698 2.322415158646242 +1.1747120222317968 3.959412267962273 1.3282029289471233 3.100208823068184 3.300690889400453 +3.9156157975102235 1.0626482912948738 3.2938870249827468 4.50999826454057 3.1013465041010004 +3.0117094687740154 2.53770129047722 2.2817208299728042 1.4743500028439294 0.9362325595657365 +4.237935190473544 1.485653227058449 3.2232992451809372 1.863171348579756 3.0700169219815066 +1.0398806203685838 4.104628911016126 4.285255098321441 1.8648228467122325 3.90527519768544 +3.2576692379450227 4.9802663206541515 4.351970732699409 1.8903060572017472 3.0045188772831852 +3.1586427634402487 3.893306772392544 2.1179455507187237 3.775792741902543 1.8133362940629456 +2.341743387313068 4.089821970450776 1.3083588633914394 3.4967373500729075 2.800853286731565 +4.757068791114751 2.1541529848390906 4.1547784179043745 2.8699403230373752 2.902753800200963 +3.8878729958573968 4.406097849904542 2.1404372644191536 4.492453785761626 2.408430757987476 +2.837807943578636 1.3974837419275152 3.0320376418875297 4.319034233112353 1.9315522337452466 +3.624001441572205 3.7535129430757945 2.3975420089940083 2.1322288856909126 0.295235977513849 +4.158117985479322 1.9538408480329799 1.3906408572557614 4.638782004477718 3.925462853084335 +2.082373663984044 4.60911028276907 3.1615549515546206 2.3726136224558165 2.647041057760414 +3.744182396247357 1.0351647970149727 3.669881719582555 4.178238084062055 2.7563023321576328 +1.145829322469929 1.1002211295175215 1.2465551140163034 4.217302476800376 2.9710974404675636 +2.2137059222311417 1.9086412488630096 2.607167575708841 2.5318470893233678 0.3142254455109411 +1.264948909866932 4.48406619988896 1.9764138225462595 2.984705851968133 3.373332023906696 +4.19183520444885 1.5773623511768933 2.3637533128879524 2.175313366679225 2.6212550264755152 +3.951652020319161 4.919189711352716 3.325210614760053 1.9297244664646156 1.6980903314179068 +1.1510734076753195 4.0789747079518275 2.9027537338836717 1.2100751491147879 3.3819767615251375 +1.2947816871583457 2.422182214441678 3.655651043861316 1.1320463692578726 2.7639848955084916 +4.848350951454189 3.7048468092518227 2.889173977039708 4.580349722970675 2.041488948502816 +1.8396858144737682 3.727993145415898 4.762220622179067 2.9961925425590055 2.585451557097195 +4.396815123528842 2.389434470403633 1.2244652476630264 4.496941904156126 3.8390989247261715 +1.369550677910246 2.924886216489587 4.314775677218171 4.006142688566818 1.5856616786855118 +3.061220900249403 1.101465345495416 1.5366304049047996 3.1375710600261817 2.5305439762251885 +2.594763404073394 3.790311244628249 3.711480812147558 3.1899377792028494 1.3043549264937606 +4.540889513689178 1.2419188510566412 2.737374049026444 4.839829934588073 3.9119724160125275 +3.940295991697487 1.3254480971715443 1.6960251211634936 1.6148978763509754 2.6161061028478234 +1.204812513200658 4.532514238065172 4.419794029125257 1.4756596726353166 4.443143693234633 +3.873222072412423 2.6480211460364904 2.817406881003098 2.3326212826208073 1.3176245240550581 +2.8202388349949072 3.7852320963716792 4.407201080825769 1.299610037967983 3.2539720472297424 +1.2605294780333223 2.9118531695052177 4.498010170107914 2.8375226198036465 2.3418131519683283 +3.0353344234504744 4.468485359563 2.438285725797577 4.694647315140302 2.673029971313722 +2.52903067735462 1.1252769101645201 2.9240738170389897 1.8432950677712845 1.7716115103964138 +3.805679150895216 4.873931520400166 3.0345638968242294 1.140891083413596 2.1742032676830116 +3.946170046962794 1.191594810851596 2.3292151629531697 1.4296295851161864 2.897747218659585 +1.983306673493141 3.557976457165383 4.283002721340738 1.6761162077772833 3.0455610685404766 +4.415467605060142 3.9202138632166084 3.536492420128271 3.9329256438514157 0.6343780967857785 +3.531559407455154 1.3655170651158346 3.5219265625439973 2.5219445472767363 2.3857291253754647 +4.610529908259821 1.6126549153472993 1.0195380353561596 1.842419032934857 3.108759818529949 +4.086607186237141 2.303335575875084 2.4635958558946838 3.9137914840922754 2.298504948084013 +4.3592322590022405 2.3916782007773025 1.5075944457945885 4.006426836293939 3.1804767390826996 +3.9358689564450917 1.3204730546107522 4.166195291430178 1.4885792928349924 3.7429831898186174 +3.89551308984619 3.4085659724821653 2.171912044012698 3.897512762299829 1.7929906118165244 +3.146688499676296 3.5325485344266085 1.8868368000471523 3.1536564380766414 1.3242809225065044 +3.9567213027102004 2.8116366051846358 4.835439053302869 4.00060732535225 1.4170966722493672 +1.7472144918412456 2.7752729812075723 3.4347440200969213 1.5455209567765231 2.1508296168083336 +3.594707111181218 1.82806288874627 4.072551143101881 4.647884863808811 1.857966818553351 +4.564825450667676 2.612792891293938 2.517005795161937 2.2548266539533834 1.9695606146905056 +4.292837012955971 4.47238434944442 3.0287776427058 1.1200350909148113 1.9171685828475469 +1.2027666334315854 2.28214555803768 2.0192179552995797 2.3629279289649863 1.1327821542030416 +2.701768272986586 4.342341117790963 1.1244566307271806 1.2728902987304158 1.6472740551913094 +3.583722634162277 2.688842420664107 1.5460077714690512 4.424307174805033 3.01420272240518 +3.978294363255043 3.5165242308613456 1.186172234494724 1.8949802952147148 0.8459553901433141 +1.0574239981420637 1.914341725534372 4.876828572556338 1.0698481842869634 3.9022311141431434 +4.019957586561349 1.4378888317910303 3.6933483226235637 1.287240969124389 3.529367032617031 +3.921672825074677 3.9351648205894985 4.81308226148695 4.429720326565178 0.3835992793136306 +4.066919559359644 2.606577719432433 3.2185071044668017 1.1084719136907624 2.5660956326207467 +4.910647798882323 4.843100860598476 3.041730983070003 1.6510759561864137 1.392294506441837 +3.986363746629237 2.0251289347928596 4.622919915012346 1.9435489954505831 3.320462394268623 +1.2488521970794642 1.9031923224570164 4.872210552609134 1.7453174337933293 3.1946238551943393 +2.1191395102894646 4.403265519028135 1.9972488195980849 4.47384762870602 3.369090869221442 +3.767966387495836 2.354477105256197 1.6327632859124264 4.2552463373432925 2.9791558042587294 +3.2313659999608753 1.7116557390348892 3.113738274314405 3.3299466888535725 1.5350131451167672 +4.598613947661662 4.289505548717112 2.1648052011142176 3.6477344173502417 1.5148026480913124 +4.154422102853139 3.8348606383225303 4.894414686934585 2.1112956490067756 2.8014052025526697 +2.3397274352315782 4.459400402688015 3.8106972437934497 3.3109132251616415 2.1777964905484937 +2.0071307377165635 2.9752944198938516 3.5625312905626396 4.750396986057703 1.5324378701993293 +4.257868455134323 1.4440658003888034 4.779470189357037 3.4364055704509444 3.117901209212746 +3.0808308195415313 1.520708859281211 4.783121345645432 3.199511869764104 2.2230158575654917 +2.9250494389463135 1.7872536478063528 2.6855877587246173 2.378232780864912 1.1785781029490363 +3.2873501443935247 3.5841513841579533 2.7870408838943987 1.311233103320764 1.5053569613641076 +3.6283582103051977 3.4516273044766304 3.9628659035782574 2.379346179352682 1.5933513517383504 +1.0117241359658897 4.041701593789759 4.990758395430366 3.399384558595165 3.4224602384080938 +3.0189399647476245 2.9143336274648903 1.795104512654763 2.1772622064510174 0.39621583603811317 +2.3516182728700867 4.365756719542471 4.329380451307266 3.216449624409762 2.301166814427543 +2.386248328971983 2.858817383408005 4.373309768637031 2.420110242900012 2.0095546517947387 +3.235271176108151 3.494511149253084 4.690493696222823 2.602231455766638 2.104291935210339 +1.5302118214869656 3.2204180683840025 4.146157953086329 1.2163373989991326 3.3824023468832873 +2.8596034598753053 2.6014882082584982 1.1942200843271573 2.9047397169934297 1.7298846484242718 +1.5245270732442382 2.274147861874069 4.847810578242229 4.547815341057568 0.8074208748103376 +1.4510984065353867 2.3821527177424584 1.368616530809788 1.9516866356724765 1.0985594556517464 +4.195610129329932 2.6621066151512327 3.6046938942667013 2.3232238587296106 1.998449018608644 +4.783295768426447 2.8356076810539443 3.8761920837723842 3.731092850873757 1.9530854239076503 +4.50993793865374 1.661832520042727 2.004147756845278 2.5242337727178428 2.8952018823266217 +2.223414153788406 4.98832717355292 3.860564855010887 4.312412938926625 2.801590744166901 +1.4211434925222202 4.364693920008813 1.8025982366727598 3.956224885476591 3.647272523625637 +1.0254468066921354 1.490464860363483 2.311965796022657 4.825226310920744 2.555918661848629 +2.2842745877844357 2.655306204938631 1.8726635003124428 2.673898192060041 0.8829730982243605 +4.636337691905499 3.3972421403567354 4.849183075332194 1.6039768659426659 3.4737186309959367 +4.015910218926159 1.6354235083844348 1.5136444421687192 1.6542402595146242 2.3846350167102974 +4.895529053446351 2.57499000300776 1.4982634667570442 2.1367695243071845 2.406780311980855 +2.7267976438240966 2.892855794073884 2.4642609404840026 4.709562479799974 2.2514338346305123 +4.818052240947146 3.997101187271543 1.0894637719641147 1.4430256918175757 0.8938493517934369 +3.3283103963983733 4.775225930774829 1.0868893705452556 2.215878210637775 1.8352602988876958 +4.433057852012221 2.1195639556042125 3.152581203973577 3.348183063914983 2.3217480690914 +1.855204048839616 2.031988162503639 2.0058713172292992 4.8229529906844535 2.8226232086059353 +1.537873628041221 4.6259844684337565 3.8903056247261945 1.6154118800764117 3.8355664655949586 +3.023691935860273 2.2707861141919583 2.118527910160067 3.708293387315292 1.7590399224169475 +3.1939170231215637 3.9823542777946264 4.272978529555147 2.9548396827671 1.5359437893256762 +1.6478970595839662 2.692484426875845 1.3464000416770494 3.750330099351408 2.6210765898950803 +3.0895388705818876 2.7615843245939122 4.64614857096422 3.7205884654351795 0.9819448524133664 +4.385824938644592 4.434605319445028 1.6354876071153228 4.693022807506198 3.05792430043327 +4.322147304345204 2.8344825897249852 4.298641931709024 4.54113067100097 1.5072979439412288 +4.8092661928384555 2.418400922112269 3.4342841882588964 2.089490139944083 2.7431200803369045 +3.156705788516946 4.696228927035161 2.693187661058717 2.943071450539946 1.5596709275608347 +4.1862409064173285 4.7668010607327 2.178010988145624 4.93849154684248 2.820869193656805 +1.5657686234970725 1.5840801301262877 4.629001692972567 2.0712670809940694 2.557800159626985 +2.3026157727701966 2.0024453405896314 3.5761685017665132 2.2143992289824506 1.394459694883399 +2.5432687705014385 2.361538401122132 2.270036279189154 4.8885097232798245 2.624772200508607 +3.883987283082946 4.074863579565841 2.783537100145231 1.5052212780259122 1.2924879502879771 +1.7888231401295314 2.857406500592641 3.2631326777735365 2.1304178073367392 1.5572133366906675 +4.01726627596263 4.175957186433264 2.4580023611893553 1.3137768463715611 1.155177403616451 +4.059727953145808 4.649914068428003 4.390017356280941 1.5559823734642562 2.894835735322586 +3.303914913301475 2.4687207874135066 3.7361757715302257 2.911810488820066 1.1735106932855657 +3.8493079819873066 2.344535350994214 3.5064283585804175 1.770772032915049 2.297138122057113 +1.8049277887192985 2.2413431609816215 3.3098800258087424 2.416562640299784 0.9942204626738592 +1.6646875770165828 3.0862477590284585 2.66248400926797 1.091005627408418 2.1190511215479333 +2.0278617289333303 2.31938327150988 4.646736337004806 3.7349691050199567 0.9572378466752791 +1.11814996395105 1.389524669691065 1.8259558630682888 3.441025186434674 1.6377097270867733 +4.5485092498447095 3.398700225981836 3.2717367675080373 3.173949345585118 1.1539597788670213 +3.2951293703288997 4.305641861509249 2.683181865023571 1.141694001197875 1.8431821204518624 +2.8433519212572578 4.404569501430007 1.0929225715006052 2.978783100010845 2.448238196261421 +4.192849016546143 4.218705614255359 4.038296539126794 3.3434578855236445 0.6953195798955567 +3.093519011771045 2.1485432206037745 2.7136188376446135 3.938077053933908 1.5466987972228365 +4.854145596610556 2.4553053955183315 4.936944100317001 4.874471105925407 2.3996535552876033 +1.386230460498218 1.524681303586636 3.7499706124158303 2.476178166209615 1.2812945921855394 +2.1192931897579803 3.586569509647632 3.6402805105133544 4.4861213537468965 1.6936193583538626 +4.091164155185426 4.73440606180189 3.070377136043449 4.34633657032667 1.4289270899398405 +3.947450924039162 4.463815760831041 2.8186846513591832 2.1022974429249026 0.8830873552958197 +1.165054726812401 4.665797950335975 4.5428367600538655 3.1739829595479465 3.758851399590801 +4.138795868331817 3.3365925664424263 1.3543086178420345 4.841840893327295 3.5786046876001323 +4.553486732274206 4.669235984122325 1.0049670444558743 4.019945541035313 3.0171995665086215 +4.701672423240618 2.5254368912512613 1.6696367986714744 4.718137260154539 3.745578213621424 +3.272673636961027 4.74447020935725 1.5735939751192247 3.218464863347221 2.207212130597607 +4.407794726168984 1.8073981926335008 4.734460880720299 4.168142530338818 2.661349019877355 +2.8589028249400434 2.798680999482402 1.2854639405639472 1.3351573966547283 0.07807757578009865 +2.927290697989024 1.1762334951683733 4.633118298105224 4.4850718757172015 1.7573044900449024 +3.515363082993971 1.185946905701039 3.0106348885386476 2.47078068516549 2.3911550112725193 +1.405802216844359 4.000405238267443 2.0135620077258074 4.590687664155331 3.6569853004633606 +2.960209595662998 3.8897030480032475 2.0211573151684528 1.994395010637695 0.9298786473982467 +4.668401823405022 3.8303709630603544 4.435479535147934 2.0542865906625654 2.524356464875142 +1.0742386774266932 4.988882237204704 4.481814417612716 2.234224019466439 4.513989011722425 +3.4729545978922793 1.4659077432885002 3.8725346299682832 4.7804281384790315 2.2028408247921316 +3.1570577435185374 4.350671202131334 1.8819163506186887 3.4707266757385353 1.98721698306678 +2.320994646379773 2.3573807540720515 4.985443192128605 2.063943250320644 2.9217265201960485 +1.2907714548767535 1.4856920230443893 1.4863327249094151 3.9811175659923195 2.5023879457813583 +3.9433594628868103 4.550293398453956 3.1690871865894987 3.1785200399311875 0.607007232959534 +2.359637104311362 2.167290144828327 3.492235507853591 3.8090680761798748 0.3706483902225901 +4.7069188559689215 2.371854592888876 1.4545045849650955 2.6308567087469013 2.6146375335482968 +3.42467131304859 1.9807192783178138 1.9026713950436207 2.1499497053444188 1.4649723688003016 +2.9085674788503537 2.7225392244441 3.9619902188241887 4.97608729330455 1.031018616663669 +2.735134506316503 3.260744843102913 4.089833550650553 1.1118046025958672 3.0240573145343035 +2.7280350758555145 3.976874038374531 4.482354424834833 4.063002158580092 1.3173667209697386 +4.791870230851223 1.8039535196339989 4.154652296576357 1.3693900027863535 4.084768331053733 +4.377466196500241 2.9751605151389904 4.388178189463581 4.217744066229056 1.41262486681382 +4.1920190381044184 1.2359750367390743 1.6134538815015849 2.7350901452302714 3.1616868988119746 +3.4801024329164276 1.5486460854608688 3.363159402481494 1.2965578957075348 2.8286684871025036 +4.75274472528461 1.4160059354044465 4.607299186356895 4.9312551288585125 3.352427956656645 +4.72380931997726 3.41330155385397 1.3589570054451379 3.959816693413067 2.9123704643410475 +4.994015607782098 4.1405133813757615 3.3245430880694014 3.594241176739012 0.895099496990482 +3.2719350650257595 2.8920233812164056 3.5269052463478285 1.1321104807022202 2.4247422248681327 +3.5551420973318217 2.0632793362175956 4.747759758472265 3.8135473778266653 1.7602293231709558 +3.6196031671152986 4.968456752885384 3.8696075952220528 3.6464638400645932 1.3671865751647028 +1.1034652295245468 2.3070454628170185 2.9844707029233786 2.21667377282789 1.4276265281355685 +3.4377117379231374 2.2162624997557367 4.236003237067279 1.4709725327333678 3.0228021829635177 +3.311581154661125 2.518582927753833 1.4796917179984104 1.206839123757133 0.8386266905258287 +3.110082394897718 1.8035265431563765 2.215723953016212 2.4736173101973518 1.33176468544473 +2.0008322610439717 1.4785473160166815 4.021316133180557 3.7309575592368076 0.5975697994919148 +1.8245810222925747 1.5030720934362107 1.4827936639213979 4.62151846539507 3.1551483912361884 +4.223307711572906 2.8677742786780076 4.196891026755897 3.2939349950655443 1.6287419939517174 +2.934398080558163 4.627871790653437 2.490897081401638 3.134190194563607 1.8115405698535898 +2.122149091481578 1.5431137881482666 3.0814077224534575 1.683585647097079 1.5130064232712013 +1.3912565148910385 4.183470472720627 1.0391275798589894 1.4664236324478592 2.824719579508098 +1.3345410116631387 1.5502400843476982 2.5653608643739796 2.1339764793156153 0.48230548164950604 +1.2691455022676226 2.561319786072465 4.132003820786652 3.445334408343104 1.4632939765174067 +3.935420546507453 4.596456978437015 3.4276252745541838 2.8958070173382797 0.8484101738229731 +2.2220201047041166 4.418811231212484 4.056086726767586 4.890356151229826 2.3498716403451607 +1.7560360804371413 2.3482183516681205 1.076064451211408 2.6616538194251222 1.6925641751356568 +3.4536119759133825 4.918682559199382 4.78594132504599 1.5161932470839585 3.5829714354633615 +4.943821686758529 1.1020962313019642 2.166190848647716 4.642161838074356 4.5704799327406835 +4.940878601440721 1.7716077967449646 4.150859136637902 3.7016841474103614 3.200942924271604 +2.3872742833086744 3.700299228934118 1.0986283325260011 2.321875590637235 1.794538481702566 +4.708851070899212 4.223979002681412 2.5410963605755383 2.664777689134362 0.5003978352989571 +2.9878399602575496 1.3675132283885443 2.837955913361404 3.5302767749517723 1.7620348729246313 +2.6614359033174346 1.7191398627062662 4.245925026115799 3.726872854434384 1.0757959774412051 +3.7154515722023556 4.5901665381813395 3.5491827020708406 2.2833739743376356 1.5386351116860586 +1.8292779359470512 4.912337918058938 3.2488585386673696 2.188476457074263 3.260317317725911 +4.8626151824815675 4.404879185911112 2.7859091295279077 2.3630155748402477 0.6231863294013383 +2.9391820535473214 4.123377671672122 2.624655544932065 2.1254359614406475 1.2851223500224884 +2.5464144526044348 1.690821680060489 3.5641417051966813 3.8702308077766867 0.908696611167704 +1.5586977512308389 2.247436674361124 2.388537885869035 2.3456211442273363 0.690074743015425 +2.52937561141041 3.2518115393748572 3.1643407495272964 2.4457406365145915 1.018969966405156 +3.7034741393258805 2.3278166572909678 1.8454753728199353 2.258964229405175 1.4364562445124478 +2.1952563309901554 2.8377542364601562 3.0423018372931554 4.488631746455225 1.5826161141193076 +1.3679552104648396 2.3625580981063616 2.6047335060295 2.8307880355825676 1.0199684085481828 +4.564119128162588 1.6294474735575522 3.5523039865960677 3.0043601766306423 2.9853877703276144 +4.406644605306669 3.012779504867828 1.4687597625299715 2.3261162670407254 1.636435178688199 +1.4848869948905659 3.4126271497809504 2.508762107359593 2.464004822241249 1.928259660768738 +4.700436168653538 3.9837313855330425 3.169592558598153 1.1368613785052726 2.1553797337521736 +4.632595862168722 4.138638355602371 4.048639368275072 2.0866798871180308 2.023185365703117 +4.577365860946981 4.939382698542128 1.8114432648651482 4.539832614656801 2.752301697626717 +4.215245396400757 4.166499701320017 4.820605341042176 4.631729464398061 0.19506470610284016 +3.030864309360251 3.845377639609789 4.218946079794733 3.356380656801985 1.1863604317815275 +4.740009091235924 4.5080467292465 1.4331437001359255 1.6360393329034046 0.3081771814651898 +4.592876664735838 2.180284046119824 4.669196568128244 4.920271531340065 2.4256219368550194 +2.301089977889121 4.186421399096112 2.307119910069483 2.9629765177160308 1.9961519124515574 +3.440562684379954 2.725274574369236 2.0420574789079637 3.789949531330835 1.888587754711372 +2.6033532642339607 3.651008784510688 2.8081698675698816 1.23078134853841 1.8936041373894912 +2.4377061772320596 3.9859282408325676 4.523897748753695 2.389523708946643 2.6367677372157172 +3.9871569144363472 2.2534638031408 4.193458324596069 3.3346028944851476 1.9347672867775727 +3.9732446043223737 3.853705995033135 2.2259161053340777 4.676343606163803 2.45334147968305 +1.2597602085499235 3.341000307320203 1.8084098119191525 1.027352109703128 2.2229735677511546 +1.663394829452172 1.1610062884500456 3.9163253619852845 3.9735473869863314 0.5056368323960051 +1.5223149388795525 4.301061544555805 3.9859534601808355 2.0065678241896854 3.4116565176648987 +4.03025739024185 4.133408380177013 3.147069386444076 2.8744436331406 0.2914874407052418 +4.583028842604936 3.4493825649957706 4.412954673567098 4.239133788322789 1.1468947566730923 +2.6958968598641215 2.614523285916146 4.413752783768906 1.9328667355700282 2.4822202244532843 +2.2132727928698572 3.0997554224416883 3.395934299516209 4.620782481413491 1.5119869447947174 +2.0702731296338754 1.0825531500099537 2.0435181420440567 3.811636315069507 2.0252981587734524 +1.498323439041056 2.5666903052414125 1.7379041326278464 2.399967486636595 1.256875350031213 +4.5819895978987955 3.551349123590133 4.8682233657572045 2.9828341600700923 2.1487001289627794 +1.6757851401270156 3.0398518231777936 3.1900461528017994 2.640847664572228 1.4704750576880923 +2.7343122974532736 1.5097815053275516 3.605071325390486 4.022886087060927 1.2938488458602015 +3.314670800034016 1.6702768131013617 2.401846015548918 3.400889012344143 1.9240890035821767 +3.0939268511137543 3.2977232257683937 3.5056848160984173 4.547814274385086 1.0618694694505721 +3.8212127737328325 3.50896191372037 4.940117413596852 2.0201071268798385 2.936658079196776 +1.6873548071389637 3.0674466524893353 3.4718526170312587 1.3420954914102787 2.537817746753287 +2.1986663581657817 1.7789323340064556 2.120767339170642 2.4431551986145337 0.5292547429676906 +2.2075362649308308 3.739214969757073 3.4547634541368937 2.9886178697805086 1.6010407117350733 +2.5694297377051067 3.051755782599086 2.5249110521311673 2.2062872882586753 0.5780653219899482 +3.39450872432779 1.8547818399341445 4.738775590523323 2.237889328842856 2.936867544235978 +4.876959234020491 4.979893797342109 2.33263691775457 4.177036564972701 1.8472697645402463 +2.3745822646670534 1.674341816785443 2.7020471573992557 3.396340123120496 0.9860930012424962 +4.11909190778309 3.912538769656308 4.821570990818053 1.2604090145528954 3.5671471542490063 +1.6464441570837955 2.7251114041907494 4.343125730520224 3.7046225295846456 1.2534789059199498 +4.148826869952173 3.0213699416186115 1.3944959448318759 3.455152720184324 2.3489285793853547 +2.38508875601885 3.0318616653975954 1.5433205839559632 2.9592498952701245 1.5566537864743215 +3.876669426003592 4.70037515637445 4.558808944537999 3.628216152242625 1.2427767600489998 +2.162992479026324 1.785430660549923 2.2458894041303084 2.224066139254209 0.3781919904771373 +1.6502502355465922 3.966769908954681 4.1767238748953694 2.0912158742804294 3.1169868491727137 +3.857258915115299 1.582575680008786 4.1913671168563456 4.307133957441322 2.2776272261837884 +1.349529234690225 3.2545566513411335 1.6660796901587944 2.5333957873854236 2.0931714384397817 +2.319013290774723 4.846985952322701 4.853437484254578 2.8552145740715544 3.222350163516417 +1.4923686519820216 4.872136825293274 3.175042297851052 2.512005884574578 3.4441907889456718 +2.810210017588221 3.729014050330567 1.1471383499125372 3.555718499190478 2.5778788152431344 +3.3037974419049854 1.2506837215875688 1.7876574699291727 4.394141108267982 3.317986272648448 +2.072795625463979 3.841655548772468 2.849342969656957 1.5190712532433128 2.213252870274207 +4.940625808271812 4.164893012433641 4.825359837333231 1.8821836335013975 3.04368978993275 +2.7307007782544277 2.591184768204593 4.390788300377432 4.306516433001196 0.16299222279392192 +2.4409146939446673 1.028917042392115 1.2552550226125074 3.2448455104362943 2.439714671273839 +2.508481081405544 2.0834222293418194 3.6953667861773716 4.68830151394897 1.0800899968672004 +1.6517016435933738 1.7598439472770333 2.1227078401689576 4.489461024934281 2.3692225297432086 +1.937224548961404 1.2358892821720242 1.817864479989006 1.015708861385423 1.0655162095903692 +4.343382707189425 2.730071302214633 3.764196452165719 4.3262130386216855 1.7084016895547003 +1.1383770998146603 1.4220073493088825 1.3293770639664895 1.1732740917794473 0.32375029938794375 +3.2858438793966105 2.173133570773464 3.0322500401127073 1.290375623752499 2.066942358481831 +1.5299275190558896 4.207750470093362 1.4850033361813915 2.4937142230050977 2.8615089394058697 +3.635028113875004 4.678832506438291 2.3352584538526577 3.4395232664399362 1.5195158394215016 +3.4562235820897427 3.872861844920675 2.23098185513028 3.160087535756319 1.0182459466289826 +3.7497988693495596 4.489007543671856 2.3828766700224517 4.712144061456669 2.4437504056249466 +2.440440940865924 4.480605701537963 2.257358749311948 2.9134751754987103 2.143072797503642 +1.0367102220153153 1.3773591232722686 1.0593645322933898 4.834480517579161 3.7904541121464232 +3.2048884203499717 3.23247641580388 4.54935342817492 2.6886234669434663 1.8609344658309634 +2.9495350414866683 1.9627936102833976 4.629450953122049 1.9225150951657368 2.8811734399620503 +1.8670890681056296 3.5013393681896776 3.6532676912135744 2.850499315686139 1.8207721186550936 +4.476881582816912 3.4570264355581553 1.0243906226669433 1.756441482941225 1.255389574362674 +2.526425903649846 2.2676625032438693 1.895154076088712 4.921662140497226 3.037549927378879 +3.0671881882385548 1.2639697514994355 2.0285264705217436 1.6544630349980416 1.841608043094857 +2.8117926467869827 3.1790399005069236 4.223969384003587 1.689184641641715 2.5612505218106603 +3.954496402973017 2.0190781830016094 1.2270390694950861 2.7041638567691524 2.434695324548176 +1.7107455358611037 2.360888086638161 1.1818049230504766 4.080996905108126 2.9711949591297877 +2.4487953175719737 3.393623271406023 4.586485781640493 1.6862194765541862 3.050285970653443 +1.1214607645971753 2.9050298192989947 2.9057907416546165 2.9046122820154037 1.7835694440242755 +3.850357779413723 2.97832537502029 2.6398121519360127 3.1822436446835023 1.026972462452846 +4.08676141713385 2.016267912873306 2.1888947045978155 1.482429150636499 2.1877012890518164 +2.224037494791676 3.8517448794297353 4.227330230844131 3.291136536750646 1.8777353282253801 +4.751724397878956 4.919132675515494 3.811335106529448 2.042231937068038 1.7770063465333035 +1.6510370689169647 3.805182346385223 2.202175890632697 1.6582612222846844 2.221752696157457 +1.8439356808775704 4.670713409098379 4.352763649219575 1.337100818606733 4.133387791231916 +2.6518657286483154 1.5557952262786383 4.946814368422613 1.7539746509495755 3.375736365245104 +1.9361299506033305 1.3379570884748757 1.4104503420469774 4.653231275387027 3.2974897959843195 +4.987365757186536 2.4133929804078966 2.728932429306156 1.152155575878277 3.0185362514144933 +4.303500980740713 3.85667066204327 3.917421726636399 4.078038409994932 0.47482107438524035 +3.053655951123507 2.1433522618125487 2.1637152302183518 3.187832568120289 1.3702076954113533 +4.854296129224339 2.9192155357584397 2.3661802207694835 1.955027972588454 1.9782778051610075 +4.39324634768364 4.085006593049977 4.864496739098913 4.101466847550257 0.8229376414609881 +2.1440521647962165 2.5459666389801163 4.7181315630937695 4.483565855560595 0.46535611708567803 +4.429492334047255 2.632873430787159 3.7192024502550924 3.617137457016114 1.7995156977354727 +3.0800908209539197 2.940953239811793 2.2163657213359906 4.510685894372644 2.298535255959547 +1.2143368722757373 3.7250396230322633 3.6344371619434233 4.809228392531379 2.7719600895616714 +2.614990656114133 4.486062963771175 2.865062222838635 1.1097747720754665 2.5655302795499635 +3.074985175414346 4.789499507965653 1.2744200930791614 2.45660856471735 2.0825774845124223 +4.565987083596671 1.9002072788798574 2.1949900086657097 1.1829092655558813 2.8514363744979043 +2.4325516105909126 4.732262054640804 2.655804905311044 1.7490813773935088 2.4720064082747384 +4.030584668437699 2.329856780702403 3.1349494827567748 1.0395336180130141 2.69874841256839 +4.9104905865817585 1.5257652441449872 4.6539095269380235 1.2777602844637803 4.780664111940215 +2.9201524790389386 4.852935601775064 4.343534583513019 3.8481266370554494 1.9952643015267213 +2.2080243345135626 1.6368719222651058 4.685417216094736 1.7837839020864106 2.957311442337477 +2.227249643272394 4.1677800558468245 2.062994639129456 1.4395616861179286 2.0382166050317037 +1.2390778390136106 1.4522766502320197 3.81620390753685 2.3040182850245916 1.5271408219407039 +3.0790738440630068 4.1988716936099575 4.795877169995009 1.2790575709463163 3.6907949436541423 +1.7515683076488653 3.460932140015673 2.620618305031298 2.4157057530122286 1.721602121681635 +1.8027404220286347 3.327710240818884 4.026218975486342 4.1000156170940745 1.526754365487044 +4.728169201646898 3.12513778164585 3.555025851748146 3.3726218318452705 1.6133756413146023 +1.8174763773826421 3.5863602856435612 2.6411499251564114 2.4369810456069194 1.780627757921604 +2.348859070982747 1.7866453579188248 1.7662039715269322 1.071197215824863 0.8939343653919104 +3.251004084791193 3.536822747445687 2.4032548639039044 4.174220611814604 1.7938818211338527 +1.1006328738119109 4.445959142045092 2.01898575230396 4.835785013505584 4.373278623508564 +3.3824988992614426 4.0183732164278645 4.133676783258169 3.0280596525949157 1.2754314512540093 +3.4142576343939837 2.090398520752983 4.496810654428412 4.130616657563026 1.3735723483350202 +4.161857020455923 3.049664399144448 4.236191747906379 3.624264065190283 1.2694203069803083 +2.125413217472811 3.212747640725038 3.8851736420271847 2.3823764320848975 1.8549112114059736 +3.977592857472545 4.799141532681677 2.9323499035463474 2.0431845971603675 1.2106019857155172 +4.087487977603352 4.089192221136784 3.967167723305208 2.3247243222175813 1.6424442852718968 +1.5843954428930753 3.769878724544976 2.09004789298485 4.430543061512324 3.202226539188071 +1.9240675751897487 4.305005502921643 1.5186095450875436 1.3561922778192792 2.3864711991597845 +3.7568034764552607 4.190416354606086 3.940692104574821 1.4965896856182463 2.482268471065856 +2.879548658819793 2.7682597798026354 4.751662989525157 3.334404307403932 1.4216213935647173 +4.699933384831398 1.7358532547278527 3.2218075581553265 1.9057345169991518 3.2431187562796273 +4.2929015929294 2.4717114704099594 4.162032057418729 2.0890388008789693 2.759354001215084 +4.564127050357044 3.089401055595433 1.4596559840757597 3.035755394080915 2.158449932206958 +2.1866760842136292 3.7619752477996427 3.3845834699600044 2.4555058512091623 1.8288665004473477 +1.5193430791214744 2.234728005369356 4.799839793223057 3.6044838445218192 1.3930726602722934 +1.6287919539049045 4.827562312306748 3.551755703997373 1.4350547413957009 3.835694822436882 +3.2597214650775093 4.222918223187151 3.995025309882303 2.8486539269296145 1.4973026889997172 +2.1222029299462224 1.0246687541739297 1.3875364000694432 2.0407830350560308 1.2772284185334533 +3.910190972946181 4.692143301313747 1.024344855698073 1.4921766189109822 0.9112167703188727 +4.584048146273494 2.9348237924288285 1.2978321438758926 3.3787998210718104 2.655252802060197 +2.679877389886895 1.3908383696449809 1.7782442789208468 4.465251221355089 2.980206017106209 +4.0842992534388305 1.9648282902512326 1.2118523222117412 3.1925215378465848 2.900897741313697 +3.583801947862951 3.054502650873703 3.9252062071261804 1.6184797866317426 2.3666737258862685 +4.307029064723719 2.8729386592224073 4.923609005140565 2.3475460388346567 2.9483411772594623 +3.40300110253585 1.8594023162775777 4.3380390009911505 3.960724983095241 1.589044707061059 +3.6120682695533195 4.1448531127346495 3.4660197572242804 3.953154653737161 0.721914189169578 +3.8078101958470847 1.6061929858853423 2.3677511978771983 3.518550476103552 2.484241799416076 +1.9926219513127457 1.0205131486186692 3.155284670296427 3.657356987618015 1.0941079179386193 +1.1428078563736541 3.5769881651294897 2.557345769944677 2.5427662337980754 2.434223970469625 +1.640013702347085 4.261017675155657 2.2956705095537187 2.3904542456061764 2.622717251649209 +1.4944653111484039 2.65866825248286 3.3264213870717305 3.752627945449685 1.2397663162935908 +3.413251605250156 2.6874284198671385 4.882906292906869 1.17116169131597 3.7820453836355177 +3.8209264117093413 4.202676040331307 2.864691605063395 4.210668015076607 1.3990658580871245 +4.8035438513164195 4.947944012782855 1.4254546027064188 1.85479985176798 0.45297764792897544 +3.3195519923226633 3.8541632540366026 3.3679163171402675 2.190917000652931 1.2927244842436565 +1.3524586009675104 3.9577900880569357 2.1555421538383754 1.1823553645659777 2.781158874360455 +2.721224883775197 2.3211162673132213 3.3199727374252124 1.588705728623916 1.776899648469464 +2.3243376390990327 3.811621531405531 2.40996822551914 2.5924861943406006 1.498441251853765 +2.6587147117884764 1.8476884803803704 1.981293801779748 4.786840462361017 2.9204204513615406 +1.620415589742024 1.5397492351460285 2.0229459817396305 4.226898383384011 2.205428132920644 +1.5516654561635437 3.6522234794827044 1.0536240107313133 4.998125461912364 4.46894122893778 +3.5756391737051048 4.334713778567947 3.0322173845053064 1.3678686130995872 1.8292761105495823 +3.8212454312112096 1.385776301738738 2.2522657547980676 1.6589253789120653 2.506703548940309 +2.6275970018866737 2.6736182695738266 1.000398531703544 3.598831381643073 2.5988403630704973 +2.4244181282683748 3.9162455889149923 1.1107180674618418 2.3666299728449607 1.9500933019787519 +1.6268870167795 2.210411069176918 1.8647879473434723 4.274031821055715 2.478902249534313 +1.828043122886728 2.019657322108793 3.8399317371520283 4.635762548899692 0.8185735655825065 +2.7027263554810212 1.989460013591819 2.8063399501677195 4.189823175346072 1.5565264883136107 +3.6346819877096426 3.3671952359928534 4.373989626260622 1.7360404347775376 2.6514760227447387 +1.8580736632693822 2.2606744084602677 3.9611555930673203 4.769225228939094 0.9028088925382808 +3.7280281410847134 3.7356995952937586 3.026553700765866 4.112005668374765 1.0854790763509503 +1.1411243243957125 3.892732704116179 3.014819308781681 4.496748279058399 3.1252939299037625 +4.876958515116426 3.1168736525138048 4.55969088702626 2.209457385995469 2.936238449603564 +1.0620025301195541 2.968347958225399 1.5588849089342558 4.47623256993378 3.484977799986601 +1.7694049413201784 3.5671912175623826 2.248904667503693 1.3614065409877893 2.004916062984695 +4.732580075052804 2.6681915426569867 3.2991371240010285 2.654746847592365 2.162623138925826 +4.248753731354412 2.8352961135673067 3.6545365789334543 3.3615396500703807 1.4435060227112295 +3.030617309172559 2.8200894836606314 1.3157696724092278 1.1883350453154762 0.24609256286467532 +4.621155397448852 2.697250730202623 1.0483351830989451 2.9342411796757513 2.6940769470407075 +3.460320209998661 4.014980236545812 1.20738428120538 3.6282046172495503 2.4835496460619217 +3.7996621904286227 2.378600142855806 3.3885285589616316 3.972586096701485 1.5364050736842114 +2.261858093777381 3.265183095168655 3.67747297064337 3.5825407391173636 1.0078061257004283 +3.755253607149409 3.054620226081044 4.912181903374564 3.660203348780926 1.4346907108605895 +3.474412621925148 3.9431548700902415 3.314820536765006 1.727668458951372 1.6549232650860286 +2.6263727968288126 1.305586479185716 3.0829774552393583 3.22975190204719 1.3289165643895617 +1.7242992693238306 1.8882122156813033 2.5295068410680446 1.516328836785215 1.026351363981227 +1.2922896655614782 2.955656042766881 2.9632636426482515 2.595643551186758 1.7035058662838773 +1.8206734777069755 1.15756183427035 4.638854555893898 1.7426031250855756 2.9711932623308903 +1.5333166129742932 4.538448075319864 2.150688468731383 2.4353104942021013 3.018579931584102 +1.9984500901641291 4.168406118182082 1.2167339238755392 2.4728237882457544 2.5072835720965103 +3.576641573543091 4.957324632014943 2.1962576024988913 1.213839547275167 1.6945297115072229 +3.078910293056293 3.292093518278882 3.967042924010654 3.544193372524688 0.4735491850992753 +4.952961051752061 2.8124261343863064 1.596781808822668 4.645927326409607 3.725476898315508 +1.208464664833628 3.9148664420893757 1.655245102098334 2.101415266634455 2.7429324446029035 +3.1742129234032403 3.715399121726601 2.3118577671286094 3.6433544598585224 1.4372772676162342 +1.3216519855654258 4.730822607958135 4.547117258071998 3.1138251647688917 3.6982118053608954 +3.222550929556152 4.497376912867079 1.512759979693925 4.256370347261648 3.0253229805674913 +2.4970715638089422 4.704759863930226 3.8955726175289684 1.9288712489606397 2.9566538356089205 +3.377705572122853 4.768099417753724 4.433235700453281 2.2196076989506497 2.614066559023457 +4.66670944101849 1.8308409012056748 1.1699753210773989 1.0701102321966824 2.837626369182036 +4.0134592156006565 2.6941695488899255 3.3543319308600665 3.4167494158316765 1.320765371714406 +1.9790964345838136 4.389686880676904 4.671179026317191 1.186199370607059 4.237455545431573 +1.3419179884164478 3.5819351092369978 1.9718597323598295 1.6451924095574415 2.2637111656207525 +3.610704507791184 2.394471698780424 4.625954471189226 2.168497950616745 2.7419545576501463 +2.4114771021768755 3.4467157653325344 4.988011531821218 3.389420198474867 1.9045244395235208 +1.996784767140361 1.9224541190252071 4.659160138468246 3.660816517800256 1.0011069024723032 +3.214495100156679 1.8375068139600157 1.7605851779812132 1.1201665043041085 1.5186285977542915 +3.919818426146747 1.2313665500008582 3.112246211606777 1.5334956811848466 3.117727814877347 +1.9875086156268642 2.9018144959659504 1.3968706255715704 2.4726482150744267 1.4118260037622226 +1.5381799664428208 2.171328197672661 2.2619492760551436 3.702372840646204 1.5734346914119735 +1.952395428487316 2.4477246772145755 3.341990993548882 4.964722935162778 1.6966466983372577 +4.398366359632467 2.538764511940909 3.507141261980758 2.8450342393826924 1.9739566209295312 +2.01386478502794 1.605769514884829 4.031969839182449 4.020578093384126 0.4082542362125741 +1.7956148348518566 1.4559643173532346 1.3233744536326144 2.1667151711938875 0.9091677732596138 +4.3948478752194875 2.1390136092048424 3.8511617713328046 4.027522489994372 2.262717688712548 +4.302910930963022 2.5678007320606286 1.7964401912406163 4.214975840125419 2.9765621255505046 +1.6794411346755185 3.5687447122578417 1.6991810137894698 2.6166401794593304 2.1002855350968357 +3.4433908274007203 3.9450810390018756 2.443878196362627 1.4876766076656769 1.0798215346264322 +3.638294331738053 1.3702701738427217 3.319963442726351 3.328797587477079 2.2680413626982876 +1.9141140836763606 3.3048506238278814 3.8593283945132186 3.3488879340978412 1.481451176293598 +1.5743463659419792 1.3168450149105184 2.4632812759122147 1.4806930131133815 1.0157689894720434 +4.297559144311496 3.8474060868182907 3.0233662000363055 4.459309536348696 1.5048491752565907 +2.3698871082043964 4.834928433684066 3.1415738364900787 2.4428302475799764 2.562161458488816 +4.551459720485598 1.8066551803927635 2.3020139572929184 3.383724217423671 2.950262539196533 +2.978672828450675 2.271211659464114 1.8115460705932094 4.7697313710066345 3.0416050988262593 +4.568898288993143 1.4929483149005192 1.9291286260060114 2.0278708772601868 3.077534447460037 +1.2059213296844025 1.9907997660982177 2.671818465056205 4.17289897810025 1.6938939950858694 +2.8909337896561285 2.9743187190346 3.756787574031024 2.7629734973608495 0.9973061041802784 +4.878027289664747 4.587143638012602 3.874892235872694 1.6185950584428155 2.2749703847910903 +1.113686850796253 1.2988656753969647 2.0309142264333406 4.891642717437469 2.866715663668662 +1.2161493567380153 2.4026625457229005 1.0971600704054842 1.5626976356820172 1.2745739571789014 +2.835479504247849 4.279498865693778 3.3419039616287094 1.730486170209868 2.163760433766152 +3.7288894418980285 2.721171403796076 4.190205593881069 2.610070490197879 1.8741191504832169 +4.581975757916205 2.3292377481370234 2.918173495235597 2.693355190787614 2.2639284022951642 +3.0637860265261843 4.624607771957022 3.560341263086537 3.1009368503817543 1.6270270235685678 +1.0944034444314732 1.413581851601919 1.3800074113444283 3.5795194799474954 2.222549930942926 +3.022442673245264 1.3799338131305023 3.560070171991855 3.8754014723147003 1.6725038668172907 +2.3738791953813205 3.572613866055652 4.167355356217788 3.1693517397731172 1.5597999965102385 +4.939519565744352 3.811796573689607 4.192817737694899 2.5754833002937776 1.9716819797351972 +3.7006721516258794 2.794858322393735 4.969082618493844 2.228171931303493 2.886709214379322 +4.375938946145645 3.61506026127601 3.1856493478562866 1.7571766680803607 1.618477855874204 +2.6687548978457865 4.068813508233652 1.7961179401789455 1.206529204271256 1.5191375810078653 +2.386976148022714 2.0129075994507786 2.1671253158837147 4.140105684811189 2.008128186945223 +3.681607455343464 4.4817212604097705 4.247215248674512 4.674519881370514 0.9070674452217703 +3.1570482550331516 2.9033289003765153 2.247339044438122 2.4950439530257253 0.35458600179050076 +4.3589394874581 1.0621603876560881 4.3233472025535935 1.4021476382093878 4.404788227328998 +3.244173164052249 1.1872678018946874 1.7082982016421049 3.6895188317785372 2.8558877523724093 +4.231383286448095 3.912725304158012 4.634048384215095 3.8923372883356953 0.8072659161811596 +3.0748966268345503 4.470859560137395 2.643143758304854 4.87935732757532 2.6361645697006173 +4.8624081137242765 1.5317715470960236 1.440137379729189 2.7348385974329465 3.5734284912510605 +1.2480430566717073 1.670367101008663 4.078014771404378 2.2599534369781247 1.8664684873206117 +3.3491657619724298 3.767945077856877 2.1357734028882827 4.131254780937339 2.0389512121561926 +2.810575048025054 4.288490051917336 4.978579524946051 4.5682153810861195 1.533829028704248 +2.0183609994959912 3.691468423330185 2.1451698339805194 3.637708486311869 2.242088330194012 +3.8253332545884247 4.05301683562598 4.854549599303084 1.5329267124042083 3.32941712854435 +1.7039024764867703 1.684470978654054 1.2502101645714916 1.3741868734046134 0.1254902683123896 +4.025753592146039 3.771635305536139 1.982012954573586 1.8928498465156642 0.2693068202405945 +3.676246818784406 4.980159699844888 4.42782612015265 2.35019396620059 2.452905250622397 +2.800588634622229 1.9215291457328143 2.7993827173153827 4.318522772832359 1.7551444650747812 +3.7036316592762137 3.5652069394116666 4.748601027443996 4.19324137182053 0.5723510724754458 +3.5028009092908476 2.096803405763685 1.2596161795174488 3.737378985909662 2.8488835540725828 +3.1593270402018985 1.2698194073924673 3.3832096688975657 3.1838474726598487 1.8999958893991917 +1.9161458329682737 2.8832185518096467 1.767030517832525 4.016311021975303 2.4483652566241085 +1.854324775717549 3.8821416555744235 4.01621517331019 3.802007863025443 2.039099328137768 +4.921603494928892 1.529858732562169 3.1580729263983183 3.109876443568801 3.392087179598902 +3.1166040183901047 1.470960626252039 2.912731114297931 4.39599251777196 2.2154472607406897 +3.661946814298787 1.4310517663913518 3.9214780980643456 4.036272540886934 2.2338465656532605 +2.7688808757115453 3.2887899990363794 2.8183210767600246 4.68587092864445 1.9385685300731403 +4.546426613947931 4.399191720634738 2.2121270869136893 4.702077847181046 2.494300082661454 +2.9226799763414237 1.4754772571933854 1.267127832251938 4.2257780464448995 3.293631248372157 +3.3122322110166134 4.889114877073837 2.4331566062980663 2.2871030346554844 1.583632087418442 +1.1631081811614195 2.708745771292678 1.5452584596602716 1.8924179947246338 1.5841449753140868 +1.8623699773824 3.183848939278905 1.9700665678095106 4.6219682135114315 2.962918997409754 +1.6835860562322278 4.333826446244617 2.8037555180086096 1.3169295936637528 3.0388197469012472 +4.363981604414512 1.7130067032269598 2.309007218618806 3.317800642817616 2.8364294631513602 +2.54539359244018 1.2432361117378194 3.0190601179521455 1.1620782889060743 2.2680378343309022 +2.936149485061957 1.3861189645709362 3.128343998191431 2.3867706111384077 1.718291506944895 +3.5995087965344323 1.6738608202219587 3.788113222054825 3.820458512531978 1.9259196105996679 +1.238425323560623 3.9777863810998584 4.356736148725613 1.7830221457645776 3.758736858653475 +4.017018092043817 3.26750499076965 1.2728014119570217 4.114319002365226 2.938705855573312 +4.863924131246282 2.8293607786207957 1.5225342258596108 3.020975292967111 2.5268109678883626 +1.5715809567661028 3.183329570161222 1.2031804048498795 4.898334282181127 4.0313640086126235 +2.631576026211071 2.684109303193794 2.86753025169323 1.2913112386128893 1.5770942021282393 +3.1487359370674204 2.736333791793966 2.3631848278607097 1.732214123318787 0.7537901295561501 +3.2333959720570538 3.1624323811822603 3.317257983944035 4.794468731242001 1.4789142717420987 +4.740189496242937 2.9147716240605437 4.5928307723881 2.5397042030636845 2.7472675730166407 +4.374274430142615 1.9227114097025804 1.8668845758197752 1.6895585755454108 2.4579678097083306 +2.4586961256818003 1.3055813793961883 1.3287597220302678 4.455625286789028 3.3327108902776805 +4.939018488114488 2.327960132804686 1.1762290120431538 1.7066302398540145 2.664385707305982 +3.1140420251924836 1.7747826747567972 1.9807008903821428 4.896393327091607 3.208563228801045 +2.083931392288957 3.1047128464876153 3.998600024420632 1.1465749085769978 3.029198250137951 +1.773186914366231 2.034266687174064 1.6997715235742432 3.2283249319862346 1.5506895789091077 +2.699037524361675 2.301547753854877 1.0440829307197403 2.0392029758357393 1.0715698865912642 +1.2919535260417834 1.9296516098760996 1.2528292761822817 1.0465672757516722 0.670225976031663 +4.609852820355852 3.0232177327161396 2.0226068107066513 4.960296801296253 3.3387772285883064 +1.6379822190142757 4.593778012845741 1.8665522621489181 1.784165804526586 2.956943743670369 +1.5479238557459003 3.546930544774968 3.768456787692528 4.279689750585597 2.063343617803729 +3.809309545348903 4.004336099144711 3.7111468961024876 1.881745421163651 1.8397676791361075 +3.057450731597836 1.862849342823432 4.4828184152381185 1.0964510290928606 3.5908991286319925 +2.854858569545351 4.150775022625033 4.960379028636202 3.2881592526823398 2.1155893818162848 +4.090654744970919 3.2671193030441152 4.488212652278329 1.689960090675764 2.9169209832672696 +3.8014746305632343 1.9398852334080856 3.3275564774141415 4.043244675473958 1.9944233954811543 +1.4434559300418455 2.3726045972725642 4.824765166750495 3.75253617450864 1.4187995833170397 +4.185919917340241 3.681797751234505 4.365121013966997 2.907158048868094 1.5426584735316902 +4.7556358572525355 4.660619297597028 4.640366849409875 3.8657148828095194 0.7804574402019415 +4.026163725416124 1.8226173383107116 4.803485654807029 2.658490130577634 3.0751621874446644 +3.349891380295935 4.7262743665463915 2.7069519394176926 3.117300428967641 1.4362506771854446 +1.3536544052842916 4.093109318950056 4.513509959257826 3.278017976752285 3.005171153668784 +1.6020994182353325 4.011747202896789 1.7880307711910177 4.059275917734915 3.3113376393571032 +4.8388057684606745 1.0711314620666905 1.4716428713718996 3.475181259261426 4.267263262421051 +4.793579239743045 4.281762238628241 3.8887819920657565 1.4237658176914438 2.517590392132351 +3.1852697923043554 4.85771121749884 1.8537353724704202 4.7614944812859274 3.3544184824804004 +3.8163853227931614 1.2760177657069671 4.787318755974603 2.7988762315167226 3.2260457216487968 +4.356959650667449 2.128415113470581 2.6513767617827777 1.3625325026186705 2.5743990131000047 +4.313523955133818 1.369249956973523 4.0824339519510655 1.4445981544899578 3.953090824988731 +3.2127481295057474 2.3508096178767603 2.156899121932153 1.091090842851572 1.370724365284977 +4.962824619691251 3.183036890110037 2.746094321257754 4.827465774395556 2.738567415329558 +4.479214986389502 3.7433524542186216 3.283520716753592 2.556876166244633 1.0341692168292902 +1.6327750227641444 3.440349889837371 3.345501377799285 4.701905275416354 2.2599023061950194 +3.1023881071038195 4.298532272076177 3.7140519126219695 2.7465085095201225 1.5384736267753576 +3.6613656217107846 2.3302521825447915 1.300113303576798 1.7520699460750797 1.4057481263109113 +4.6276045719736265 2.668192949290413 1.8571269804846313 2.8654053695008233 2.20361503372598 +1.3340246387028913 1.2798076504100164 1.6072876692693918 2.3013763372216665 0.6962029594876142 +3.7996525376303047 4.183056854929232 4.449124216907914 1.2522924367201722 3.2197410301671443 +4.5526557682070115 2.952067120163166 2.0272470093674277 3.1313573821078466 1.9444648969420382 +4.884766878729785 1.1673901927905534 4.775226484479489 4.173334161789574 3.7657886017775355 +2.528025845228187 4.9258955569269265 3.5054433041522084 3.424887613108331 2.399222451887643 +3.8835332755099876 4.831689473410855 1.4589658394110558 1.4870293240836991 0.9485714178646757 +2.187843260680635 3.2716865492175127 2.952606734053879 1.738596686663636 1.6274325390844604 +3.20450804380642 4.568873578945617 1.3414826125573516 4.274411427725914 3.2347433821435874 +3.859481451221693 2.937670880765349 4.10369756742886 3.8683936779251487 0.9513688286992723 +3.4085271763214893 1.6921868035545908 4.657419768782583 1.1222443183040829 3.929795127084297 +3.270084855939203 4.741399628417163 1.515563452345741 4.834963773521124 3.630865689051456 +4.752692775918606 2.5901813286437103 4.047091011340571 4.759061538833951 2.2766988803120554 +2.6741763481020677 1.2159508334093014 2.6649231600273926 3.036688061908985 1.5048690288433784 +1.6813801590827793 4.070041827690691 4.577668753963465 1.6059379391426085 3.812727187045064 +2.2831882938792263 1.9566506987870809 2.177356943883914 3.0942409327956364 0.9732949450866542 +3.017178518621998 1.7190456609154756 1.7233283641503943 3.249440393315773 2.0035385800679193 +4.984192164534454 2.683158308532365 3.6849301874255778 1.4467408022327146 3.210023135501962 +4.779467127511779 1.723565619312613 4.098737431920457 2.4828681309709255 3.4568146646247992 +2.8406923198679648 3.8734591114223105 2.6900672963904446 4.91175804726959 2.4500034771974093 +2.417454581270572 4.260898396939632 2.3445802515959775 3.022349603872286 1.9640917484714282 +4.953761097859585 2.040403442445512 3.4067986591748527 4.861733875801937 3.2564534869918664 +3.6600573688351763 3.821023043958472 4.8645878368455895 3.2297582047682956 1.6427348765049943 +3.050253566292967 1.5409174264360557 4.7730183343372925 2.5549206468663326 2.6829187341852494 +2.8717302462684935 2.5399419816523823 2.570250730176586 4.725034149668587 2.1801777536372144 +3.9532431393034515 2.0189347869453638 1.7974295996494307 3.7066658998218993 2.7178543102783337 +3.9819692710165064 3.540740678442958 3.6569775974918994 3.5086547823672465 0.4654914912121773 +3.14352079898644 1.7414892900545174 2.9848584061746317 2.9802499317907674 1.4020390829338787 +2.7480366834219314 2.3391121213914814 3.7576227682099543 4.7491920322180174 1.07258048777576 +4.3907461930976375 1.637713640026531 3.781775050304503 2.552726587122772 3.0149209547048805 +4.856329819396859 4.906543214740108 3.1144805643707265 2.091640470996774 1.0240718928303487 +3.6901964614030263 1.4203245036167762 1.0241740534823829 3.8377966540039465 3.6150782623492552 +4.1306512632950145 1.4173465700764663 2.4204701842344236 3.9721355411075994 3.1256499704800857 +3.2123112503876268 3.607301996427065 3.5106346667913133 4.596841470664826 1.1557953582870555 +3.914120112910302 1.0081392228119146 3.3591530242839367 1.2316737240777709 3.601512613669808 +4.927280358543648 4.3298003173939135 4.512951565818872 4.590045033594027 0.6024332347620664 +4.423841044649649 4.212915500216177 4.074418871596004 3.633442798514142 0.4888245925945791 +1.0559875053733592 3.062503966592132 2.6293058187073686 2.6067411633675075 2.006643334729048 +2.3176722486920465 4.2697854152604595 2.6199029492024635 3.744318811508909 2.2527886821661958 +4.061206711783882 3.3634354890060014 1.902089892690146 4.4409302742709675 2.632982180433888 +1.1051303148897107 4.732954957058929 4.234904353346475 1.901874663037173 4.313251577429137 +4.216967292304711 2.5721554109163702 4.375311369664756 1.3443093615931834 3.4485329196761563 +2.137504588871752 3.5088608835695734 2.588516448276801 1.2118832407720492 1.9431255942455594 +3.7536886396492894 2.440036142431445 3.2898992118621107 2.692560564388349 1.4430857019638377 +1.5212078225178196 3.567891494196129 4.918047249392134 4.16443764353088 2.181018452457695 +4.928631106750642 3.835008429756355 3.805277598896498 3.249993501505568 1.226519868755256 +1.860298514639823 1.8865082205389188 4.278092771374531 3.443415185534866 0.835088989860631 +2.170466873726077 4.814321752304155 4.20020437890607 1.3684954034373775 3.8740862588139486 +2.2743919543195585 4.241796313084977 4.412171096374168 1.715192330864455 3.3383190938703664 +3.2232969954128117 3.8227034638013815 2.488464881802613 3.078368533748099 0.8409960956655377 +2.469251645622943 1.0035541810352973 1.627243416088405 2.4703675928134516 1.6908954536212286 +2.8562230902784274 4.814557043923527 4.061540642986749 2.643256845736446 2.4179745249985545 +3.91937252247893 3.203387127306542 1.815667323111517 3.4348552756753548 1.7704250088123001 +1.6873179023190383 4.764184853516231 3.715167886540598 4.841159072593239 3.2764258554769317 +3.988619406659633 2.7781985699319964 2.029159562523341 4.7730056669566565 2.9989681636853556 +4.301881614653512 4.769842616454243 1.7692495880774772 4.764118813662657 3.0312091939626207 +2.951788628645486 1.2356725678681184 2.199351991855393 1.1196349342395857 2.0275214569923956 +3.8447629535470638 4.066641285269845 2.167830140630939 3.9030612420423116 1.7493590167239572 +4.200139631630379 4.781625742049887 2.5547806482161595 4.0642487811969845 1.6175970267948152 +2.671902808548368 1.0630882975392115 2.041793943702553 1.305072196053814 1.7694753641382643 +4.260819877099761 2.71035244331379 1.279005964524809 4.545337659027176 3.6156426817014924 +3.009136294998763 2.219356417134115 1.3161019428828444 1.8927278931930411 0.9778802288885053 +1.3224484684981244 2.9442847749068273 3.5810456565616495 2.1430700749884823 2.16751626937057 +3.099281439862553 3.1995153588966723 3.750898964783165 2.247126784586307 1.5071090234150117 +1.8091509414720148 4.45707604726754 1.373172180614055 3.9765135970455567 3.713339992030062 +2.521992168933158 4.795775678651229 1.0630273168302748 4.9954101274285 4.542436132534417 +1.9318404015505446 1.1969978616896166 2.8057264100557004 3.371459600312492 0.9273875139052642 +4.244312168952859 1.0632417135374714 4.639216997621697 2.40068691834489 3.889759138834137 +1.6378759094639772 2.901471662605663 2.047238810438612 3.4324920687627296 1.874993551203654 +3.9290248903770815 2.1795400089138286 2.1366704408382353 3.955982374860874 2.524003419915608 +1.9732814137369443 3.331587206473596 1.8399951105265084 2.0485814131775424 1.374228100511546 +1.8243634967719249 2.471495112638948 3.862517277373582 2.8199642013084527 1.227068149968667 +1.3177928676865385 2.5186118407414195 2.0613919246983428 4.332408705721619 2.5689459756362925 +1.9356448752743787 4.760744771378657 2.1033293394514145 2.16982387668506 2.825882330609383 +1.474392791681399 3.912377835624947 3.663416169159029 1.4747148341997343 3.27630654978209 +1.9791856391849447 1.4583685091243441 2.677020822753118 1.8630861042324387 0.966302338286469 +4.105359415500843 3.57137247736281 4.412909574956927 1.3053658441822447 3.1530889757155705 +4.642466812064797 1.360720236782698 4.3332275606753745 4.9674162481823245 3.3424625466469444 +1.6594488425593443 1.2532656105060354 3.692713221597143 2.511703723963763 1.248906822585865 +3.3453700491171467 4.1485782689719475 2.7883148712805284 2.957289637952333 0.8207898124453719 +2.4982813987413093 3.7140066490629975 4.460213823209733 2.628589917723228 2.198370763865679 +3.2220279229641853 4.174445429166906 2.575749815168152 1.3928139934192023 1.5186955799297872 +1.1913406892683742 4.178380182974855 2.4711007497890973 3.8916828555912675 3.307636385137821 +3.0627067467575744 2.4636356438956484 2.841338775249895 1.9206184358073966 1.098458979546944 +1.3640922804193623 4.99747652460276 2.7854103059552084 1.6752861060552533 3.7991915988909635 +2.585617796105597 3.9849120377575007 3.4357651041268857 4.9983684771869115 2.097558980390956 +3.1180603729015512 1.0084174737836125 4.0451473521207415 2.7405339838397818 2.4804453637393697 +2.865334971350959 2.775253464708769 4.067154825734168 2.0601834124553196 2.0089920187888812 +2.173832592716229 2.922355388589303 2.100115533712145 2.1643834451509227 0.7512767402111863 +3.6472194607102875 1.6627882523585282 2.298990498136413 1.0862713609118892 2.3256515058088594 +1.257663943741815 2.2056597152242503 1.744843216912546 1.2505092545250132 1.0691407994826203 +3.638204482734785 3.6560499624530576 1.4093863419942259 3.7029709683330765 2.2936540496169644 +1.9709017392203458 1.6149128759272875 3.3180028490666524 4.3281187179484775 1.071009868934721 +3.8825096154635723 2.210676072679363 3.783512771581671 4.5911693830984905 1.856700459660963 +4.078294189007383 2.732285797456546 4.8556359418729045 2.206836099818501 2.9711747160664754 +2.056568518439988 4.1338386203978414 1.9885808730395111 2.154195807920747 2.0838616516323025 +3.772346253091419 4.340903149644699 4.147514588741985 2.4794768001839556 1.7622732502866458 +1.5466707453787958 1.823472095785906 3.8146439656998847 3.8162821913627676 0.27680619821550667 +4.116148102744405 2.106432604459991 3.290476214240626 1.7803048079089105 2.5138763017591943 +2.645650214429801 4.921471274190525 2.713552499090232 3.0202453404970933 2.296393257920045 +3.2595346154407516 2.796852468391645 2.3301886354836627 2.863195015017488 0.7058119932543845 +1.937199443250576 1.822210430379399 2.448049702723959 4.674372788922218 2.229290684774067 +2.625082473656767 3.117043263897255 1.371590989667348 3.8952823505578307 2.57119495646816 +3.1716338662139543 4.266330954099116 2.1323245031965383 2.263569983798408 1.1025366617045755 +2.851335199520202 2.668310272538928 4.675910811883296 2.867040538452593 1.8181060997636431 +4.017969918737875 1.905866605409558 4.678132006139834 1.915937300531386 3.4771683879075796 +4.715961350248259 2.5034002338477115 3.085646985098942 4.078571649205378 2.4251445487637464 +3.256918167411576 2.023755868000963 3.495374506378078 4.277688320609247 1.460378088244476 +1.0997490642241043 4.913894302365887 1.2379781324793084 3.36887869608477 4.369032056372865 +1.933710096951211 4.968083436329287 2.5211476608199885 4.661018084995838 3.7130131961778683 +3.919305786208964 1.286166775313117 3.287573655520728 4.117787431349372 2.7609194056106046 +1.0107424161269067 2.590599765890222 3.3119281913965506 4.718826222014461 2.11549316098108 +1.6276503543814473 1.5402976422998549 1.54142349746679 3.047459422059198 1.5085671024090772 +1.7101646812313422 2.1751280517160168 3.9561691805866097 4.893881194032683 1.046658853711923 +2.52570119780235 2.479932102710371 4.370473536973815 2.5402568176368296 1.8307889145956113 +2.8220563589420316 1.524387942041097 1.1153678559992715 4.265361725205886 3.4068173852235515 +2.149626196165927 4.665222699190968 1.4392673539140008 1.379184044203655 2.51631392519645 +1.8266136550418555 3.892234176047396 1.3038478956645583 2.8579192047798894 2.5849421213277948 +3.8996487408335896 1.3693275862553453 2.821180296796494 1.4553025970412343 2.875438581502811 +1.9383325158021707 4.503743181196324 3.349380276992029 2.9177172428994878 2.6014735933928006 +4.136512588133304 4.798297180539164 4.049901516215391 1.810611975452698 2.335032439627977 +3.860734453374707 1.2214966959096456 1.6883245637104096 2.8585070509969257 2.8870232063461603 +3.23300107308279 2.5055308129136815 3.313148078819324 3.9150231765625314 0.9441750964275142 +1.062261679968271 3.8021551111630387 4.858488733815141 4.73697556631311 2.7425866374976406 +1.7761107998404775 1.9352951183480758 1.135182103082998 1.9075057857807276 0.7885578723939745 +2.4002364423127114 2.2756960601410223 2.700851443220465 1.292289259205495 1.4140571887404314 +4.09018836622414 1.893730877567807 1.9364850732993726 1.7979231579740498 2.20082368758906 +3.6137497248845993 4.781323431776547 1.0217324881629923 2.376878170114383 1.7887560427114997 +4.380485541084367 4.882218379739294 1.9937342588796385 1.8851792283201947 0.5133420263766577 +2.8859842740285293 2.1779838742524342 2.0037556482092316 3.618278642691478 1.7629376239093175 +2.81536443130639 4.214079169041458 2.601045537682166 2.8945515802912483 1.4291776357770665 +3.1634133896437677 1.800142669580914 3.774766867859956 3.4546337192444447 1.4003543440940842 +4.25164920243386 1.8060044570773686 3.9532415612081504 3.747763444230307 2.4542614932086146 +1.348346588906244 2.0656724783375617 3.8233892165133954 1.190771470923191 2.7285953576968645 +2.2807158184361382 1.1521406416506572 2.960806518047465 4.6517713830775005 2.032988958263774 +1.6925188760010386 1.3399219190816423 2.722765014980599 2.1756702477764596 0.6508742569275343 +4.628323049970425 3.8171889026519894 4.179865378949579 2.708910364586686 1.6797759550682179 +4.222659175447614 3.7643131483039283 3.2808245163502114 3.864917068289009 0.7424588809010079 +2.2684386018669422 2.0692410248037665 2.4229649279953773 4.14835393641874 1.7368497071122748 +2.0946677292828624 1.5740665819247055 1.6364475835140335 2.6029531905700387 1.0977971775794135 +1.5302328638416967 4.207628945329956 4.171388212769438 3.3192436429572107 2.8097331092168085 +4.909675635091264 1.3312691222471456 2.7799927095887305 2.9886275461372835 3.584483458768759 +4.234501502317307 3.8163249160808252 3.8601315978002697 2.783178552983726 1.1552919622398583 +1.776507668404523 1.8644720694944317 1.821288284775917 2.758752900659827 0.9415825199596014 +4.509592202199799 2.7217388318041613 4.615672066978476 4.771606112249467 1.7946406605528629 +1.858219409639497 3.490488132490386 1.3140549027395476 3.755508182427102 2.9368342310206046 +4.000749453791904 4.520694501236166 3.6638006767765092 4.025895213486145 0.6336050077743876 +1.126021678024495 4.101163843371534 1.7986804068112274 1.3189244033597602 3.0135754058715025 +2.436852998801874 3.808096422109838 1.1043303620047045 3.9609299776164506 3.1686700506487764 +2.8316720678546945 4.337628861045717 4.687065949616917 1.196820053171019 3.80127903219635 +1.62705350116598 2.012992244263057 4.156523422503865 2.3498300790258306 1.8474548846429752 +2.661675874849563 1.5753183358273892 2.041661706699501 2.9498116014256257 1.4159480689210973 +2.9622198719148343 2.003741658542602 3.014310687775873 3.1755430285612887 0.9719446245668376 +3.048254910702684 3.0967050038778257 4.797157041089894 1.3257324384523819 3.4717626911016954 +4.789223368833911 1.9162287300778824 3.4098038895321783 1.513142125542596 3.442589728867057 +2.933585318425028 2.4628567568272706 4.0780733404612475 3.6318096534648183 0.6486421640901404 +1.7450371231046002 3.782964020673045 4.579577922004733 4.280950030201258 2.0596904276118617 +1.122348576822716 3.310108207987794 3.9693465757718043 3.5501575025338705 2.227557335486033 +1.3912093725356143 2.9697897005610434 1.5939997240278507 1.2210626113880862 1.622035123544788 +3.4221034946443467 2.6632058551697235 2.9968895383202896 3.801853636255719 1.1062968978376262 +4.756678016719812 2.5873088058874987 2.8135452564262695 4.944439097874592 3.0408668725265833 +2.1192857874983484 3.4861766069108064 4.759713188691598 1.7732030073385303 3.2844533145593036 +1.2434063504509418 1.185039228487497 4.067315333268057 1.444216651754283 2.6237479707253892 +1.3255812949653754 1.1499755037241175 3.9123927134282486 2.619940471070722 1.3043274867503432 +3.579071484610456 1.9874350654621251 3.384028093079295 1.8458745650663873 2.213418796002663 +4.663536744803735 3.723475911353154 2.8483612783359837 3.8653523904711364 1.3849134603828845 +2.3817966119048264 4.884161194406296 2.7190104321426722 3.6048106985077055 2.654518904745287 +3.4119881638387315 1.542482577248144 4.791146332649809 2.5948044407170987 2.8842622704171643 +1.7109440537730007 1.122220866272631 1.696298145421888 2.45311376574529 0.9588351655347708 +1.0018309872367874 2.2168884390986388 4.443792367001723 3.3358703708818025 1.6443405245907445 +1.9758263983570212 3.253866621781686 4.6398533936888455 3.9315783738150154 1.4611777155666732 +3.9075403939045854 3.549643318367378 4.647154449049042 2.619069037122695 2.0594224323209036 +1.542760169297141 2.6460681073784773 2.9950981069639977 3.929353038468717 1.4457249680607227 +3.2274748612183912 2.572545564848283 3.2684762382154715 2.6949714992553915 0.8705401018066397 +2.1183758206466723 3.8082778759097087 3.112989595864071 1.7136887987743203 2.194040035441069 +3.2971549800434348 3.523234883647433 1.2122706765820155 4.629904841952438 3.425103708082542 +1.255666733359471 1.3362347923918994 1.5979326975881225 4.548302202243494 2.951469367304467 +4.988836911791331 3.9778690365370046 3.039118114913106 1.6899841968750988 1.685888007430159 +1.1532767920769196 2.1776582687152786 3.6992455225748095 3.730395629627875 1.024854984302268 +1.3924585905969122 1.9421481297544676 3.121784525132893 3.190856277336951 0.5540121807431533 +3.3824463756983545 4.1364809778087634 2.3258955564428674 2.810873338404949 0.896533117166713 +4.497490030174832 4.8464798322223945 3.8958405056220866 3.574866256608404 0.4741501349394453 +3.0680966337468534 3.2554822167453326 2.5504506773015128 3.188101210021202 0.6646138417106457 +1.4092509263397197 2.708364870368557 3.441365372539699 3.911625637294355 1.381608394653594 +4.608766688394497 3.4219955330621468 1.8205121390036965 1.5365761466454209 1.220264488906139 +3.968452240792791 4.526371566007276 1.3715780157612456 2.1995491167692465 0.9984037848246505 +3.052906219795231 3.8743344912675 2.4394402919429523 2.111019558096342 0.8846494128151932 +4.922698624174372 2.612861494545184 3.5041135065413846 3.7782309788276756 2.3260455614682685 +3.8759436579741147 4.62792397033477 1.456372487845067 2.4392414157346343 1.2375401890802642 +3.9345525725596255 1.2459679285631258 3.262850082575598 2.291613358272742 2.8586339679238977 +4.134940525373053 2.505838342269251 2.3909327923639037 4.247604314615593 2.470061348334081 +4.209135928103869 2.0973871884878528 2.9358307180890857 3.3963751861532057 2.1613847289028154 +4.881861634869097 2.429675847132396 4.655037481645492 2.9234147808574367 3.0019547490697427 +2.145348359070952 2.7010709432242397 4.100963815728051 4.1932920577773345 0.5633401235647246 +4.8943222216400475 2.930074758144479 1.3927048370240125 4.001440330404033 3.265542676534709 +2.52747931010214 2.952492205876954 2.100180648118769 4.64562549810689 2.580683135510042 +2.8640022061555652 3.454237702835822 4.41122289378171 1.9862483953596453 2.495772277179698 +1.0004921210399416 3.5495036653660472 2.7073052175132544 2.081466991044145 2.6247158586821846 +1.0435030901886875 3.0074474778497224 4.62202310249058 1.9660724696536045 3.3032031911301503 +2.409930851272135 1.7934864594373985 4.447286224814124 3.134666873128053 1.4501631806956274 +2.493362869824206 4.232575806604936 1.6468199508914627 2.4904036382294947 1.9330015719104534 +1.0569067503792522 4.901083217209044 3.204152937570138 3.3914475978448047 3.848736415746782 +3.5589392569459393 2.3520397641476474 4.948239352720922 1.2074726110545373 3.930641449086156 +2.301537575768199 2.0307520418125447 1.038085544719173 1.4762343388200754 0.5150720058125113 +3.6027735426487073 3.4914805081388858 4.201447414838086 1.663724863090767 2.540161784055757 +2.7722570489812806 3.2703062271109795 3.340719621101671 4.617840415142595 1.3707992217707847 +1.7405460801374852 2.8865915400783755 3.6986898503175203 1.090860122273027 2.8485428005778224 +1.9253213489876302 1.6233568295607372 3.515144298089714 3.6231836522807446 0.3207102633947491 +2.170278241164836 3.461014590041691 1.4426090837937164 3.7958819049921995 2.684006947327712 +3.917067680767694 3.1277045165780835 1.6801495807421563 1.801112473958764 0.7985776271063237 +2.769840153236729 4.956223329943885 4.206019431240441 1.3568915059997728 3.5913509059648114 +2.5723884545336495 4.675050934571788 2.545722768747733 4.854138924964884 3.122494940787655 +2.506035146954223 1.306263703619051 2.4860509666297834 4.373034839288564 2.2361036764687117 +1.9023765521570266 4.754194516370203 4.1466086293153435 4.332003313003144 2.8578377997620303 +3.7221487275316836 2.929927736325704 4.564432197172648 3.553963623368874 1.2840018837807123 +3.000655032260702 1.607703702119815 4.760690832773777 4.429140048298104 1.4318656818388036 +4.4061291186911316 3.1565392876544855 1.5468145126404154 2.4031851170192957 1.514874700387607 +4.39456060967974 1.5997994808973668 3.5314146573929 3.8317332861189217 2.8108505911401274 +2.3855176002374954 4.358930948447707 3.160903711182558 1.7925751910492118 2.4013919259264096 +1.0967902892303223 4.971458074199859 1.2338458097608198 4.204306367117535 4.882282905229141 +1.0414165044609645 4.263323087816036 1.6089192440883422 1.4951293309483429 3.2239153487954924 +2.6931922212053343 3.177955487461103 4.582305729817925 4.461313823892638 0.4996343318972333 +4.019384545985292 4.9756312136463405 1.2034671684523075 2.20826822102054 1.3870951101691216 +4.141884734891722 2.2439737981256638 2.778580578981212 3.2059177631791833 1.9454261725633453 +2.4539926227387885 2.8185397778402344 1.6257853207060347 3.052489468807027 1.4725418005955335 +4.478023894456502 1.7845604299017466 4.096007215316812 3.620654485348326 2.735087869297767 +4.1519761416393495 4.800027169354356 3.2403350311304893 2.1312533863713012 1.2845358030293366 +1.7922377821554862 4.788418784760028 2.004091741837001 1.3408205300312006 3.0687178594290305 +2.6546899984189185 1.857767569159893 1.611881477651937 3.268905799261678 1.8386992578076298 +4.722956956573926 2.9019222884298506 1.9290229422260703 2.671459260037795 1.9665652668010878 +4.347984673244612 4.8650230184981 1.266045574757634 4.690423388755969 3.463191023242362 +1.3951504611673937 1.4643968806125938 2.6791056101829795 4.220983544455025 1.543432094651725 +4.258508950537874 1.1011543649705642 4.907943156310488 4.890027564627463 3.1574054138530063 +3.281385957088294 3.9183019881767196 2.619224967609803 3.491082722444849 1.0797212488987327 +3.947733638482895 3.580270398612888 2.110478866008016 3.9401779418126894 1.8662336243504558 +2.579270505377709 2.5162244140752277 2.3797517318343218 4.990807294345528 2.611816601553262 +1.0732049787744522 3.5500439016112244 1.0082861689174982 4.246648419881333 4.076974505457052 +2.4968220337724487 3.2608857010552774 3.970768993756535 1.4568069764868974 2.6275080041621397 +1.089520663634159 4.2860354927542526 4.886575111423239 3.702519359111272 3.4087673838746637 +2.2166624883135952 4.85712500505733 3.30413600492417 3.5459661794122246 2.6515135556171647 +3.74281980613858 1.8565762452877586 3.6813029976496012 2.689979278323399 2.1308771638341617 +4.430720556757175 3.6377381525184993 4.3233194268881885 1.4624464488357463 2.96873968040022 +3.147653418384801 1.2284111469342243 2.7249646555586433 3.860061820372048 2.229783951437941 +2.485275716218082 2.4838429991157174 4.598075850035649 4.480004539588099 0.11808000266385973 +4.745377657777787 4.033586664292722 1.3594643237224653 1.7711366837933227 0.8222654987610548 +1.3258921062037854 4.099959070779242 1.1220725930252304 3.1701424589168425 3.448193396479115 +3.630922105354597 3.727398849006357 2.737583168621564 3.439612365302686 0.7086273739126856 +2.1832768059971124 3.1212035529742264 2.821328004994441 1.2934115794762762 1.7928288222982351 +3.248131912242882 1.8937188250137789 2.1081736919765546 3.155706674696632 1.7122383481115857 +2.299958230975158 3.934379483560431 1.0113067795883302 4.743225422732922 4.0741317590319275 +4.5666955401032165 2.8102808965431647 1.1304850581866326 4.008617242778415 3.3717409853212708 +3.4258416314683258 3.6076637595848395 2.358971211633703 2.271106705004253 0.20193924283817308 +3.7847156678199347 3.9540485379704835 1.787983198581344 4.277093227519339 2.494863194059572 +4.645374181824624 2.291529119157302 4.589725450852134 4.240755019603357 2.379572848418238 +1.9621948650841086 4.900881788973433 2.213294566467078 1.1494549479833043 3.125321674723068 +3.014491674281679 4.0477611719180455 4.473358139648527 1.964285931355895 2.7135012808495547 +1.7531422749084271 3.2164092230069743 3.397134209702501 2.8763388107001044 1.5531831859184229 +4.582907445243714 1.9303064434545303 4.633895193811662 2.197412887523076 3.6017687465397232 +4.715617021179301 3.2593043682488463 4.748690518063141 3.8588619285985897 1.706646261447817 +2.4293704359402915 1.1578629621955745 1.8331596774548542 1.6821891224872711 1.2804387389703156 +1.5890632754918905 3.8656667336027355 2.592381279433957 2.4337389330084482 2.282124163923087 +3.1065469057039996 3.0276960833125464 2.4519384096738386 1.638952396687484 0.8168008995485115 +4.017397503074924 4.335642193746235 3.4298569927211853 2.8449930832597103 0.6658419299886715 +1.308072112879986 4.739989838359348 4.359164757017958 4.343047135654987 3.4319555725821735 +1.5684049027684277 3.837409850011978 1.8320371494396102 4.405281109820172 3.4307386858008795 +3.6709144618204133 1.6497980641190737 4.24557308643589 3.4494078048177963 2.1722777558846516 +2.209195273203936 2.1187553421993455 3.145877290122644 1.1134843584355267 2.0344041903938046 +1.1039665830062821 3.068381341811996 2.4539301129085165 4.2852616676682125 2.685647148839973 +4.554538226236826 1.1907796467656637 2.7369131397570357 3.830730214264007 3.5371326768229716 +3.879523515187267 1.7999900132672555 1.8604252951149625 3.947217307987992 2.9460414950571177 +3.185852969491649 2.9741687574246924 4.407997513884336 4.155593190931608 0.32942092812028984 +2.7931849270237383 3.8896119339316506 3.999123986858561 2.3192565122810205 2.0060176753011345 +3.3862198828583363 3.4808006503631117 4.947077011878816 3.0109568161353093 1.9384289860471207 +1.3143499233395284 4.3615203147135055 2.596565307238601 4.7837959047052685 3.7508965702296613 +3.9499258094853933 3.655514065000262 2.1824483596522155 4.438403752646587 2.2750852754284105 +3.8060818253040907 3.8031555988269656 1.52563201877672 1.0371699130269665 0.488470870733229 +2.9289351115490176 4.583204820345713 4.607761074135874 3.298007098302265 2.1099914091422862 +2.1170121215457374 4.606810361669511 1.6658402945357054 2.3231026008301714 2.5750900985788747 +3.991986029237585 2.4797889542457976 3.169966879133417 2.3177506232636826 1.735803139869941 +1.4033948038717736 1.1478110125007914 2.719388412079881 2.4796552668218923 0.35042125413115793 +2.7025272761260144 1.9263552101419004 2.7812006014843136 2.1667522241301667 0.9899443845222781 +2.1434667165935415 4.876241610623374 2.9148918580058867 4.482403926397549 3.1504210363050316 +2.2933422495514457 2.814338757560467 1.5527270163172968 1.85465207490337 0.6021595323166428 +2.156490957413935 1.5735714602849113 3.5917641390754693 2.232341280547216 1.4791300309378759 +4.480078260397216 3.7249048556633437 3.9346602993571196 1.3928995880599353 2.6515720591210257 +3.921891339814714 1.8433442984209614 4.37325247408702 4.4980018780373765 2.082287256137513 +3.586948799659153 3.6572836755194573 4.195111126282967 1.0511117118230895 3.1447860520051814 +3.028445851223928 4.724829358507834 3.5610755201650655 1.5548335215391513 2.6273035532338755 +1.6369775188216198 2.820364447623765 4.904344431021792 1.4418616394187032 3.6591244451927687 +4.624047605797159 4.505925518674229 4.4998981420581945 4.4111695856233775 0.1477348442084112 +3.9673524334059143 4.597059364600759 4.549383731187792 4.501570180048987 0.6315195601621 +1.7864384426539814 1.0732435514355072 1.138078056170401 4.40329592471832 3.34219907874213 +2.3361752250055234 3.2424065556000494 3.486462536879104 3.386736685270338 0.9117019633796006 +1.8847308699918783 4.440711254542203 1.4278852412712304 3.2058376351846456 3.1135430687929255 +1.6671103434540897 2.5584969808453804 3.662170884151634 1.6380521473113183 2.2117022399382305 +2.4468839475139634 2.8201337497029217 2.6991618521487917 2.122356425787894 0.6870370548329059 +2.8849477139470365 4.0711586042153876 3.994372677795629 1.218481643123103 3.01871948225842 +3.5259940535604612 3.1112514909651994 1.679803897773168 4.636492826517747 2.985635747138095 +4.707521913981723 2.5316854544018645 3.7466727376924602 3.1659471984059646 2.2520005441421644 +4.284052418434362 1.1307335069676872 1.390898348601886 3.174927252806247 3.6230069401603395 +4.369403343519604 2.7950178757656214 2.984537741951998 4.497495422302114 2.183513348620825 +3.439881127230619 4.910359517103926 2.313984304085444 1.886802184075786 1.5312711251572457 +2.344102628294393 4.95284270264621 4.481094227149685 3.2921235745329076 2.866910530224669 +2.805592640645388 4.898167241510047 2.2931985355789695 1.354764320185252 2.293365918645672 +4.016634240889405 1.1567861970992688 1.1349034327581542 4.4011872127094325 4.341352388915588 +3.1765174454507665 3.1105665004330603 4.6520453321634045 1.1722125500383829 3.480457688106651 +1.3840519389464703 4.680327674119333 2.202485615468271 4.04409702481714 3.7758398145754706 +2.3747917078222325 4.4988026134618595 4.163951627196312 1.9800044968974806 3.0464811496571857 +2.8579513832812165 1.2094866404090316 2.4040330355087853 1.5430397434854681 1.8597702700607426 +1.1224576404076676 3.3941929432598155 4.365844787561064 4.301332942511282 2.2726511092502664 +4.272167541406762 1.6992451491382377 1.5382768055014098 4.644965312932217 4.0337876888650745 +2.8939251820814604 4.921167040158256 1.1071968465804933 3.8167126588147826 3.383960030480014 +4.015692315823985 4.688553571256955 1.3584911496201966 2.481441442106256 1.3091064236559833 +3.945853715116724 4.552968659450839 1.8438241897532324 3.095633691206991 1.3912640236718992 +1.3651961920585851 2.5184322179441563 4.6683017689225 4.642152118074323 1.153532459725268 +3.152973464988368 3.979207811801132 2.3196803064578777 2.8516765720856934 0.9826918247828542 +2.9051537038857673 3.4234637390585 1.3899218182762922 3.4449888493903544 2.119421099010937 +2.307512633755087 3.743852822099488 2.0970103219719634 4.956015500770731 3.1995286760789323 +4.552047714090665 1.3496170072474332 4.222749446149484 3.4693941458922715 3.2898490300556458 +4.540264297596375 4.920868642676551 1.1942076596661653 2.3209872820313975 1.1893241714820417 +4.764471555707498 4.639430232806194 3.976325280980027 4.90738522344423 0.939418942162842 +4.118214773610726 3.383706035631912 4.680017889970652 1.9917807297874859 2.7867762944945698 +2.651053671249934 4.327561726851339 3.884670870286634 3.982017375621701 1.6793318917347324 +4.187722147947664 4.786889219146822 4.884678653847281 4.036291773924208 1.0386344290629812 +2.7297730017507296 3.1714424108214034 2.3886485836911864 4.619765188231797 2.2744127088032338 +2.8169512426014522 2.8399170821322963 3.6098841384870526 3.387236354472323 0.22382909889472832 +1.4571552824900151 4.097769695256637 3.7579020087918806 4.350697456807328 2.7063353303126805 +1.4393887131326388 3.7288604587461203 1.5520249243503907 3.7746757577875094 3.1909023177372826 +2.6694182810984106 1.8486929736107207 1.001811723000463 1.9991571534205907 1.2916222117673082 +3.3209343507649987 4.691824864273837 1.9977877147181502 3.707913608486025 2.1917735678130392 +2.3000536071009625 2.821944686182879 1.4702412322867024 1.3504847287152884 0.5354548707154857 +2.853430828278324 1.7019080768943717 3.473081287910822 2.8305444658644294 1.318657732180851 +4.6055700107562 4.504835683058236 2.2293807373456245 3.9284811333900334 1.702083887655079 +1.1171912857776962 3.0083448762225324 4.0026462852226885 4.822914085255846 2.061383313802562 +1.330440060211473 3.8295638730958466 3.7444527816071718 3.185579102010042 2.560851347085997 +2.62550645311083 3.431493599801569 3.440860921167605 3.5725282720363905 0.8166710304127868 +4.045280467201092 2.808115142526135 3.6268944081258154 4.238611689510936 1.380136251579276 +3.7860592714575523 4.766434460929615 4.615919024333101 1.326713969059215 3.4322012481455206 +2.2629392660405827 1.4940703916775986 3.8535605645820943 4.097679687967471 0.8066929356122111 +1.159655039520739 1.4860082523249107 3.3812517347551077 3.165362727834265 0.39129845746804665 +2.748439491767743 4.785552218231396 1.9293771911209068 1.9329392662605143 2.037115840765929 +2.2716046262738065 2.886865548915603 4.685555256537221 3.595310045164873 1.2518708495089936 +4.9242796412073115 2.9202588981291306 3.1192881654081073 4.148041552118755 2.252650143576728 +3.668929309827662 4.22246722301066 1.587569017286603 2.2349324841278455 0.8517532973412549 +1.6082949563884879 4.937680609918768 1.346291269486806 4.756115857138653 4.765680701483088 +3.078096509261121 2.69367611069995 3.3091821867220483 2.3724373858232553 1.0125561045398173 +3.306473862333486 3.6619888079283687 3.3420061962018397 2.8184240003829033 0.6328737570162879 +1.6578056200907283 4.21042340347392 2.871192303019929 1.415465101051483 2.9385369207472958 +4.619376741183909 1.3763484022786878 3.4149820575480723 2.1830826660045854 3.4691222114286444 +2.3754284286997067 1.2191024593589601 3.35821758122344 1.408316623803168 2.266981140442132 +4.3214551849556075 3.598851364794592 3.1175897464401565 3.6811879907925813 0.9164056208625243 +4.455486856308163 3.469084314190255 4.403859106026875 2.0639896011293857 2.5392871588392465 +1.1599838535712395 3.816064539966718 4.149583124591599 4.321623387374897 2.661646570200789 +1.8891120620555126 3.9847405630662163 1.277039646249332 4.381533643901355 3.745602994940308 +1.2844721527164817 4.172822260961004 3.031997208448905 4.011775010727036 3.0500050638700764 +2.889857571496859 3.3807671060834434 3.994810703985418 3.861596753230105 0.5086630788880357 +2.6425082444876375 2.0646731484685064 1.466229438001717 4.552889852660421 3.140281183845243 +1.8603066364512677 2.408863052230917 1.1510854649864006 3.7121476273294403 2.6191513016010015 +1.2382915786949429 3.450270627269604 2.6191023315375026 2.9950836992826093 2.243705261442497 +2.9883670263569404 3.1801720768779282 4.143970613672911 3.699142246699469 0.48441867580597875 +3.5065008599354783 1.1238887371810913 4.539812118865818 2.261094161295017 3.2968767125344267 +2.723983388752845 2.8765898610268423 1.9226348484456306 2.3776566840347697 0.47993083485313154 +2.8122561380561737 3.083333256864535 1.4265684176295137 4.499372011765104 3.084737384685128 +3.0966504562295243 3.285410551048064 4.831276864052466 1.911266188913451 2.9261053836664375 +3.152004659503876 3.7472192592010645 2.791539279011523 1.4992196037644945 1.4228037681715877 +4.475566990328687 1.3257704067666318 2.842135186648077 3.801248884791943 3.292585246244416 +3.6289509034047236 1.5350735338264045 3.740620613797662 2.093465877218513 2.66410231880597 +1.0295696509538885 2.1635836846107708 3.6820471002910367 1.1694916521044174 2.7566143561882237 +3.4232902988167306 1.3280200869414673 1.841919021670226 4.457315945261291 3.351187599747501 +4.728759963126203 1.343300711657828 3.537810851219697 4.918508197279671 3.6561810000012125 +3.8362814634235813 1.4728323146572562 1.5293670408650746 1.315410538652594 2.3731138328456276 +3.6933094603761996 3.01345821424946 1.4800230247672825 3.112144779899906 1.768055185913968 +3.189136544864633 1.45872432474455 2.104516985495613 4.813707437709942 3.2146600687957965 +1.4595525847557824 4.862572718357449 2.397877737942521 1.9126305461396433 3.437442489242676 +3.1142283816942458 1.2309894585174046 4.172202830543564 4.426201615740264 1.900290563216496 +1.5201102046516697 1.8649825305158227 3.229968002207508 3.6723759003682375 0.5609471182758184 +3.2208938574180395 4.770864631972719 4.478629147924542 4.013307373749947 1.6183120080795996 +4.654040398017722 4.097697222525195 4.415885458853621 2.4031431781833588 2.088216755347691 +3.9129344998555253 3.9667066596733904 3.9989107307806524 4.867354043710996 0.8701064492031474 +4.876826568819679 4.61483837620079 2.620050047689535 3.463724437665908 0.8834162605327779 +2.8975751268552656 3.241102017375475 3.1590427653105677 3.394430918512432 0.41643523767600205 +4.389807733551496 4.904686484975277 2.6115758884034137 3.7280895500088285 1.2295132716726735 +3.4827384620357678 3.4268046384121345 4.705251873888976 2.384646057462681 2.321279808178392 +3.6972392506514873 2.8721795582481855 1.1410091051004243 1.8621609874353737 1.0958026890931925 +1.1850060368787085 4.70193320234671 1.9708572523407275 1.0854146240492946 3.626676899753056 +4.7515219338634775 3.5433007575945363 3.8567564678695847 3.475771074505313 1.2668655338044494 +1.2810235585290153 4.629215587377319 2.6095178300946515 2.948346597368058 3.3652926760647928 +2.044651276862315 3.0824401233115437 1.1402938620264784 3.394414814625158 2.481545276387034 +1.1853169550379987 2.2934460954655442 2.101224324087489 4.013160667640404 2.2098531113318782 +3.334273733890988 4.296673798063293 1.8347315514023745 2.4243400149005008 1.1286505321610751 +3.9450634442063954 2.905007365810822 4.863892919844693 4.983722072263184 1.0469363266106078 +2.515096988865255 3.8740418435024395 3.7718643831213443 3.393341170931873 1.410677475580834 +4.642591140452444 4.712008562120944 2.0859622413422834 4.021756123403435 1.9370381339190217 +1.4328958779522543 3.17635066167035 1.3731504061464608 2.6769264158231154 2.177031572182152 +3.2961552325573735 4.184339126181896 1.965980796378504 1.878356220975855 0.8924957675577576 +3.3653387378979085 4.327913592582 1.1603313280996788 1.3386009624377109 0.97894351900256 +4.320229886943999 3.1064331700788252 1.2199363709364324 2.3571107720778266 1.6632702992851047 +4.243505810162956 2.934453684755843 3.650382925996776 2.4702307195664637 1.762491616256717 +1.3928157955331 2.0070286623894105 2.0507214039013695 4.394448235974787 2.4228728627793794 +2.85343854697179 2.1005171767224566 3.4744529428566895 2.8173599576094617 0.9993306665159671 +3.1549344031902806 2.6839024100216173 1.674174905655196 1.6931307723637796 0.471413261874459 +2.3515016043870354 3.2219968641833634 2.6514912262529706 3.6439450599092065 1.320123709834361 +3.7858035777653405 3.9823013528673457 1.8878622497091713 3.453647618275593 1.5780669174774318 +3.0133234667374977 1.0347774431141086 4.335327177092341 1.2049013638650279 3.703270195343004 +2.6889784936633885 4.090018831567361 1.816240990605297 4.1313294971604515 2.7060208464861932 +4.940339831938985 1.4476088784828978 1.6741972094834932 3.5801854527902788 3.9789396447865295 +2.235047046897458 2.4509647608466603 1.1771298171808766 2.8310209631551735 1.6679257723079954 +2.1868023568472066 4.691566192312594 1.7717021675767044 2.9793235856177156 2.7806818158082494 +3.078606689981093 1.3502209983145264 4.578316126361657 4.634729381914292 1.7293060904766866 +3.0790820244928194 1.1197785285292712 1.4017715579779564 4.7750969312357405 3.901050405103701 +3.6684658436399817 2.7447537712246017 3.619905505752211 1.0192468438044746 2.7598314203388776 +2.928572491310814 4.895514197529215 4.703462517682265 1.3402545974640017 3.8961554371303273 +1.9523104704254068 2.841278300310471 4.011723885675298 2.9689063499332775 1.3703036945953337 +4.493290477734588 4.116659611028474 3.937516432048822 2.4204250340986433 1.5631433457908541 +3.1113016380535354 3.7864788109448115 4.742494218684928 4.749594427242147 0.675214504994533 +2.91167691174246 1.6113119129793563 1.8605933932547485 2.58061120087775 1.4863965733620355 +2.1155585841714393 4.4136232941290965 3.9286436545475443 3.0302618063453646 2.4674260589391395 +3.1730409892744764 2.998946160951841 3.213918465872156 1.6215118277452318 1.6018950996864247 +2.1709733361514907 3.772359424691005 2.1514022586392896 3.218317370497592 1.924251870332857 +2.8961142126889254 1.3651778706848217 4.018504317177616 3.2989054884898374 1.6916230542049635 +2.58347713649621 2.9768992114802173 3.3058828729241845 1.8711124554400067 1.4877321936331296 +2.1346650416357056 2.9675240349668237 4.738475547858293 2.2048190586636176 2.6670338033123637 +2.661427420258698 2.4920602272203576 3.6852376576758257 4.849900078265218 1.176912826003196 +4.795006771737668 2.69638785563043 3.6807123420877668 2.06307534437096 2.6497076841465668 +1.0514212271036558 1.6040551186030068 2.80046506562581 3.7644725980990503 1.1111771869053386 +4.6654976584143935 1.7753323064103208 3.5562965784474607 2.4523508790977955 3.093824796111998 +4.19566697071161 3.226992392513134 1.893942201623263 4.188907487712463 2.4910231036267967 +4.967843796879928 1.8688466342420207 4.914039037578613 1.7389882674165484 4.436747773667613 +4.895071202166193 3.8820907585836393 3.1671642118182595 2.358781646319977 1.2959983608331809 +4.773011467722794 3.606320699257974 1.876583578008029 4.841562531882428 3.18626231596508 +1.1708674765776497 4.784562215970627 2.807686367445231 3.5591250684165177 3.6909957722590114 +2.9931834818542007 3.7035308910786306 1.3843221592395492 4.135919818694499 2.841809832010196 +1.8910882057463185 3.9785234931466116 3.1912577734748915 2.513640438736247 2.1946642867241106 +1.337089849273318 4.764186835073078 1.8129314897841668 1.5658141196849344 3.435994869711327 +3.0014795134548384 2.5847153125110403 1.2965509056778495 4.024127310321495 2.759232763352356 +3.986668743237179 4.679585870211747 2.8302087874180004 3.73824640911135 1.1422199732386074 +3.6351625207782536 1.9364217686258347 2.9019271113250835 1.6258096185060782 2.1246637377481714 +3.7266935585258993 4.561729583933094 1.9697517228216053 4.166519914642143 2.3501224760259456 +3.9179335213073414 1.0104040315278384 2.3455070979868258 2.238776458033326 2.9094877836901705 +3.7838501722495272 2.492280660505426 4.687215102843687 4.036395885361655 1.4462771026019945 +2.084178251377397 3.939998516279361 3.321850770181135 4.7287991086468555 2.3288564753398284 +4.932506147508082 2.0373355016414716 2.819879432036146 1.5876500503261224 3.146490476362062 +2.3908605395754043 3.6306387440637313 4.408951817380786 4.970336035936851 1.360956368576195 +3.0611730706273477 2.541637830805112 4.932588134520213 4.400843272151089 0.743417422497688 +2.093892622687658 2.623118750532594 1.2037126315915891 4.702929635460577 3.5390111520818355 +4.504913234293561 3.6262178532113265 2.781392463492798 1.9726888953400996 1.1941972340774192 +3.4435924519601615 3.4484459491236854 2.985536150757468 4.070263759790894 1.0847384672049245 +3.8686216755734124 2.809920837360697 1.945434651850849 1.4847071807325563 1.1546069753276926 +4.60717600834729 4.834129953949919 2.060854619117336 4.575137722109485 2.5245054199617853 +2.402280152033952 2.228231654401998 3.9243756340721534 2.5403600259349965 1.3949165147402924 +3.958639793650702 4.372603871575123 2.608121018444384 4.654091183866117 2.087429082773269 +4.11335575436496 3.654060497493676 3.345484467909827 1.7031754641810735 1.7053243083686425 +3.364021811909822 4.109922403956372 3.046996840384523 2.7677755761141216 0.7964497521100471 +2.1790568659649416 4.359758069634851 2.006463046920621 1.5424478137972617 2.2295218940970094 +2.698413638680287 2.8045162306253153 4.91888398228896 1.833495079221751 3.0872127304718937 +3.0860016237197794 3.558582414598965 4.609667111743789 2.2100660558519083 2.445693732122938 +1.589488206500008 2.7985823484065704 4.749238741086277 1.3802951831440695 3.5793420262099938 +2.393685391369237 1.8032070778684814 4.132176614593481 3.5852099867970137 0.8048833024965397 +1.7438255573249162 2.039930426435832 4.099716995595198 2.6750022031840954 1.455159899538949 +4.224493484920956 3.6201081637253814 3.3806664754664757 1.963276816960533 1.5408682813648513 +4.542582688683384 3.9604862418610405 4.180221394854689 1.7471445526110214 2.501739233746318 +1.8441889020074713 1.2633368921242831 2.6470582006201067 3.4322883874313437 0.976716695702981 +4.019817767848025 1.4339796579461592 2.058238606126971 4.53725751606291 3.5821911571607714 +3.988452615264789 1.1798371935066188 2.417016690039834 2.8313536525962872 2.8390131570456543 +2.9742220277919356 4.490264684863123 2.4287066282989294 1.9925207507225124 1.577543488420074 +3.551460287158271 4.320088927310427 3.161593826859576 3.013339043377043 0.782795929529277 +2.8212365476679313 4.4524560460980585 4.894666338877627 3.1881862384145 2.3607099324854124 +3.015928955628205 2.443678801006068 4.959369943455943 3.2310964472713524 1.820549235005516 +1.9870725142359156 4.043883635690668 2.086710305408047 1.0092712223818094 2.3219274250011295 +4.566201934561514 2.192007285850989 3.588417393664906 4.737703359134848 2.637737375174388 +3.466050846047759 4.644146044757285 3.785767022272559 1.0136615573543915 3.0120552793485724 +4.685773751769469 1.719915305812303 2.912389466190856 2.4756311583742012 2.997844916085941 +2.917445275177213 1.4146675384838052 3.8275120716046183 4.0674178499146 1.521806725037013 +4.276841402566859 1.268199768631734 4.871999838229618 4.674208973289814 3.0151361010245386 +3.9382714440411877 2.446519341405178 2.210451859018095 2.6597068891276576 1.55793273853453 +2.4657381478655664 1.168040687053577 3.0190748373057525 1.38246520692375 2.0886621991257943 +4.190490864454141 2.5881202678877866 3.662183513894288 3.0160140546279526 1.7277518626321786 +3.702091731403307 3.845761672039523 4.911736274521477 4.853434189943702 0.15504897583837152 +2.1824013716090667 4.384821637216472 1.4998355689474923 2.6130527687802765 2.4677738065636685 +4.098966635707973 1.6440896325209304 2.2625862787239903 1.141248451808671 2.698855243033195 +2.887969249876816 2.5327934153876575 3.4090997660026425 1.2854993601837275 2.153097433234114 +4.452364253593029 4.842793792054497 3.821952655237862 3.020720360798906 0.8912959183992426 +2.1821259579257815 1.5375437478466245 3.974875954206172 2.9749692580823575 1.1896636610839941 +4.375493703296993 4.669898435499183 4.388246884375427 1.52343113453423 2.879903371101402 +2.1258659557401898 1.757039432582372 4.153318495447337 1.8305367353260915 2.3518818229955 +2.016915270880484 1.2200913844052033 1.329754735019515 3.5672203091020096 2.3751169447549056 +4.077178621622412 3.679651670911828 4.763100834985937 3.2890061574050264 1.5267556435178562 +1.549658215088682 1.393016528193757 4.2827859731369085 4.9003233871087755 0.6370942439924793 +2.2331777788880003 4.288652912762753 2.316574919904337 4.157500267456974 2.7593448789955977 +2.5312859988916387 3.3757720191317584 2.132400561311312 3.1694098466085223 1.3373649076350203 +2.9034459225804556 3.7055116840987012 2.2533460474035727 3.4594568521713813 1.4484518491056215 +4.839439925479695 4.367101683422089 1.7500756054484996 1.386487654652412 0.5960701409013609 +3.0285023416490255 3.353378531014294 4.401458162040505 2.738944822613968 1.6939584239843888 +1.6626754167433475 1.0448943955912111 2.772534808948453 3.094982919397073 0.6968688355979639 +2.217111578123342 4.505029151567939 4.984003186900252 1.7666292375176167 3.9479186862247593 +2.9179946386451037 4.597631638485595 2.444618764029447 2.875988302991964 1.7341453602215418 +1.21883828658521 3.08211985336125 4.770637111764952 3.3851369236321194 2.321945082986135 +2.624178550908999 3.761294290047442 3.414556618549244 1.4491718783129177 2.2706319343632466 +4.832183746507172 2.8138433995722325 4.945768019373693 4.608171499587616 2.046379526441057 +1.5391042192783728 1.3716847359192932 3.4941997108643355 3.043404513069283 0.4808800201331947 +4.2589683191990115 2.4084269576760384 1.1807089157807447 2.650134751735847 2.362988704602637 +2.074487634151961 4.420205429330702 4.855278626031513 1.3369908869058924 4.228562473217096 +1.6452816477302186 2.7771764524665064 3.8186682878584235 1.919263498751857 2.211091224230687 +1.2036934199192806 3.7148619913846015 1.7177339446180002 1.5585080420264084 2.5162115337092166 +1.8770037852358357 3.225808880083629 1.575518483794284 1.1976840027832614 1.400726268379455 +2.5975441043314316 2.7277270881325424 2.6659505761162237 1.5095905352055525 1.1636649661677922 +4.123166565887326 3.0026362969645843 2.363651290118345 2.1397193405362955 1.1426870094718364 +1.5518761522194287 3.7080457375646416 1.6502129132774748 1.0827633471346512 2.2295888165496853 +4.275051248597471 1.441760971626692 3.8008667153376057 3.2099786875779017 2.8942498950379023 +3.2253078259630508 1.513143389922348 4.141007925112296 1.367974521170245 3.2590215273024845 +4.752555200400481 3.793189923023565 1.7695187760521316 3.6265069186237815 2.090164275143988 +1.488989990724515 4.113222129144235 3.6580073204431223 3.960437515361354 2.6416014724241084 +2.3844570597449866 3.0615275592725175 1.4217963441200823 1.372551972984144 0.6788589466295883 +3.759107558448637 2.773398394723181 2.611210282669579 1.914212696045924 1.2072399062371724 +4.10298885844037 1.944769279495945 2.020348213389224 4.340333343852281 3.168634209956829 +2.1620264098171185 4.019674482782344 3.3588770051650534 3.3448821552010912 1.8577007882909804 +4.614406944686789 4.221902358798407 4.168553458228069 3.93655009330578 0.4559445265365898 +3.664971664531372 4.558737786537196 4.356459224947276 2.4865898077934583 2.0724935507867057 +2.5983703436618057 2.1866468603499634 2.9559083625998017 1.6482502096073417 1.370943496938546 +3.031553467048511 3.2678435799351946 4.5891767333983955 1.404340676603474 3.193589473634491 +4.444332445729856 2.4370436076128272 4.959006280398442 2.652420919289805 3.0577024884232724 +3.3096091949937176 2.767156788831801 3.6280288167871655 1.4234045299873386 2.270379452624274 +4.637088397402417 4.849041037168832 4.210552269589909 3.455516433394892 0.7842212923930726 +2.6073877726749224 4.259612194110325 3.3710131988895995 3.5217072761917394 1.6590823498914977 +4.759917332246216 4.068613177517388 3.575676813284599 4.130160905716852 0.8862020328941692 +3.2138827830415764 4.894706665961634 1.4555818417158828 2.2973894134588146 1.879842789500811 +4.08731387682691 3.0946458072679253 3.749634648409412 4.7332932214207855 1.3974884917525199 +1.0370185039770634 4.848066763720281 2.9274609147513164 3.7457598872476323 3.8979099587446004 +3.701289325127938 1.773585491128328 4.677210579992995 3.905203450029724 2.076544504779737 +3.9576863054974276 4.124316352754432 2.2568106907923324 4.866093714020447 2.614598146552415 +2.259651934106892 1.932100031209861 1.124503718094715 3.7005769590630764 2.596814123483755 +1.8217233033115505 3.0986683978803646 2.0074841292610524 3.1093870602929807 1.6866472197706646 +4.883332809695354 4.559821120510907 1.2548275828643685 1.0709448200304745 0.3721191791703296 +3.6767110399188785 3.2981350754311634 4.514104385357132 4.537655487474259 0.379307810753661 +1.2008544457027743 4.869266814565483 2.799016224231649 3.1763511952102643 3.6877677514111897 +4.209797255326098 3.93560019491987 1.589290561213145 3.6329422903626827 2.061964213557382 +3.6901243691792414 1.5033104479109864 4.006951518797304 2.8518854445009874 2.4731220678007273 +2.3329158421791303 4.69009756735538 4.0448616702157185 1.7676087751396068 3.2775274878538263 +2.7568028757481167 3.437153328483644 3.830656258037471 1.8007530254722548 2.1408838997283692 +4.328487846570283 1.533178708753924 3.0675059397760176 2.149079814241868 2.9423221652333225 +4.4333392105573965 2.920590394416468 4.5098745678636885 4.954280938644445 1.5766756175974508 +1.3957321691421347 2.6804121707576236 1.8902627106020655 2.6573266420607142 1.4962585944600522 +4.589068287285683 2.6036636149872603 2.3135573770981255 3.170397447693162 2.1624075978782806 +3.1540392916265185 4.504706695083012 4.426037939366459 3.0356320796960867 1.9384351651178882 +4.907281373559445 4.91931564872927 4.759085664355459 1.2149022303668215 3.5442038651209606 +3.064544449775028 4.462732793724576 2.4652530050363395 1.456812939595343 1.7239147341858354 +4.371057303606899 2.0827610818721585 3.7152139291702304 3.6944297548114338 2.2883906092075423 +4.619979143573675 4.052728225814289 3.448908833279176 3.2381849375499745 0.6051265685211289 +3.055952085208919 1.2923946973241676 4.800788503434534 3.5445503979515527 2.165241057718599 +4.217516077500638 4.731965214452405 4.788341044066639 2.723372287648671 2.1280869060009717 +1.2191189804723654 2.3023628182233313 2.447493045364396 2.1423600222251835 1.1253992064309963 +1.9967183860472675 4.608873968319862 2.354191607373015 3.7269300516467605 2.9508926822886963 +4.384582496021723 2.481167772800051 2.0162022344970656 1.9908307848719686 1.9035838093010544 +4.248596378895045 4.477084841891109 1.8562773441947042 2.290827751383092 0.4909592998507079 +1.3431194196889606 4.972768166164023 2.672924042298606 1.460039927020893 3.8269358369171798 +1.212667792155282 4.710546615042569 3.432024930134786 4.4106645986105555 3.6322020676605695 +4.59101199919934 3.585477696637311 1.7191701717158354 1.5593305837365774 1.018159087527232 +2.167004404378834 2.423042647554682 3.7624085170988497 4.749591478841679 1.0198459598997875 +1.9540199013285173 3.6054946171369644 4.492185377776011 1.103295205743764 3.7698733844853916 +1.8272856931862185 2.3855978190914393 3.581459067041521 3.366656379516417 0.5982078438977666 +1.4123358806605673 3.205320001972107 4.825581738843659 4.8995140329620215 1.7945077440314705 +4.481131957234802 2.7378058662896807 2.816658138585457 2.1959199507104743 1.8505409363903074 +4.149495522905982 2.037822886498338 4.256541323522934 2.6293477050350016 2.6658807916710487 +4.315102519566592 4.9401367204718 2.7957492040505385 4.095498978240408 1.4422264828409679 +4.916841223389115 2.569902309335552 4.45739032271843 1.83689529737088 3.5178283704823023 +4.8575465719044235 1.0816196210631466 3.453080266007524 2.471238602459743 3.9014916878506583 +3.3752643919256946 2.1248025142273117 2.53831329648868 4.89239517745832 2.665587441800873 +1.238721082927074 1.7003400982805115 1.1204158410132772 1.1153090379301451 0.4616472622832361 +2.6228939828187863 2.4258098474283574 4.950662085398372 1.8408487247094545 3.1160521970502826 +4.991376951701286 1.4669008411018223 1.343476572277623 4.154576195253156 4.508238341578616 +4.416004757001998 2.4014345950912546 2.0038073311712714 2.7734404014316727 2.156577844664906 +1.272632700521989 2.265184198544955 2.8186353343749198 4.156136004931313 1.6655529171918964 +3.7286179166941387 1.243815731351562 2.8193196538533765 2.567577617246528 2.497521962521693 +3.1089985579801462 3.51665206192813 1.4883865826368785 4.88763201338682 3.4236020326193612 +1.49687086024483 2.429210181196689 1.135294301240938 2.928647999585594 2.021230837079088 +1.5638918115458829 3.342389748462407 1.6094514044718293 1.783865573558805 1.7870297182740507 +4.3059369352743335 3.890477081322193 1.0554875380496833 1.4674211554170795 0.5850608475734145 +4.4096294316701705 1.232923506687726 2.600532964532882 2.7816768214321326 3.1818663753701073 +4.071217071079126 1.670081295406343 2.834213974999078 3.054549706749407 2.411223931513141 +2.740563817882236 3.1264105645527946 1.1229477070951797 2.9013888120204765 1.819816055430923 +3.7615692654030815 3.735712790002333 2.3159726118169637 2.289226445411196 0.03720100452346049 +4.9697182558610695 2.3116483925093583 3.5313185807791836 1.7237773499414333 3.2144269628717703 +3.0283811226761825 2.5542953999854157 3.639767530576449 1.5008934554428088 2.1907851518891603 +1.6526445825401024 1.815260993836732 1.9980073839329484 3.9045739834732545 1.9134890372577735 +3.692371056523063 4.249114760186851 4.735623472025573 3.1161423398240617 1.7125077194354363 +4.335064952766363 2.599289985496276 4.746991522399702 1.750520951387105 3.4629107149832823 +2.2767644164440104 4.932152546989191 2.0224163391958117 3.0618963325547206 2.851596882526292 +4.761036732743554 4.327567297138589 2.418793231510177 1.6639958170016307 0.8704107585229365 +1.7317930033952407 2.8376727228673837 4.6868019965349195 2.801359565250469 2.1858323621969746 +2.309602405226526 2.457262591237421 2.324171991202428 4.016266582926084 1.6985251360734168 +3.827875434805082 3.347714009252261 4.201917464682969 1.0537647495591749 3.1845597046264085 +1.2226124657845867 3.23078701604124 1.6648856272690975 1.0663167060315741 2.095483184797713 +3.6875386771499827 4.7978960942803575 4.030999818839142 2.93318405198653 1.5614394166046357 +4.706864915201864 1.2655904965098994 3.4842275529345637 3.3966135139019498 3.4423895544489627 +4.0832111496149635 2.8904022656088624 2.711887788173443 2.7026486331678026 1.1928446653898817 +3.4349211871357257 2.805086460081964 4.054712277854977 2.265044112096096 1.8972622188125823 +4.56277240615454 4.593741053736419 3.9345979480857904 4.541421073045218 0.6076128390007696 +3.001373888873916 4.737569289986984 1.3553671373250236 3.0483528634585624 2.424989719511832 +4.470726765530691 4.058794104449336 4.042010973932285 1.6481648303375898 2.4290302337494203 +2.0772014811272674 1.2120626536984553 3.801121112670724 1.8881103234384518 2.0995417286741365 +1.8929004066305812 4.223848220266146 4.9743459048794065 3.660567919953604 2.6756924904719757 +1.947842802591532 2.788794960857974 2.464419722928927 1.4206755536278228 1.3403739864094044 +1.9214115657285031 3.85935959329823 2.14977143324401 1.247513323695312 2.1376885305880706 +1.0418532483932914 2.760677949416056 3.7428719213216337 3.918510816420521 1.7277752673069358 +1.3209084706772787 2.291516332039593 4.453560093143963 4.756226045150881 1.0167036436654386 +3.7215592388199616 4.257797022229585 1.7331571355187112 4.5383796366082665 2.8560154483082205 +3.3219284696790243 3.856152520505692 1.3874245225436654 4.411258758037653 3.0706626027988104 +3.4365721672274963 2.6061644896539535 2.45227943631243 3.5950616679687726 1.4126316363307654 +4.262448301347648 4.016094469821683 2.8398110805903265 4.832807648038457 2.0081647163934426 +3.703704452559258 2.5571445037180944 1.0430988944245434 2.4407047184728907 1.8077338730301293 +4.974968685348687 3.7629080495626646 3.8113681870617793 3.548896750936309 1.2401541192947685 +2.0322876278761908 3.973365832679975 4.949900689928059 1.0753625057178282 4.333570206892626 +2.2499756475285695 4.571067881094688 4.130273474710034 1.269781809216611 3.6837320376322555 +1.622865439279293 1.1036445366321166 1.1862151448584375 4.44769722699329 3.3025529091647328 +4.365789816017644 3.248042187736884 2.237219280149144 4.063718493416383 2.1413685195671266 +3.873464104804644 2.848631451763543 2.6670787230419286 1.1390278850853859 1.8398970976983886 +1.825026600026932 4.896591333167007 4.119734781179395 4.4945874512268755 3.094353637532657 +3.2050488677078595 3.8350941512622687 2.2206612959975893 1.8975158346247922 0.7080819504372314 +1.05474109401802 4.5019374183479055 1.8349632746449287 3.935367962464505 4.036689528696494 +3.1011802839521523 1.8587266537900349 2.7814716543682363 3.868822785100808 1.651067383424561 +3.847533060777268 3.37553145341414 2.569125136082351 1.0446328767157453 1.5958891459691285 +4.610702911129344 2.571981983091649 1.040475881973097 4.2486527122878766 3.8011552976677323 +3.2274206425981116 2.982536253110856 3.007156252514062 2.7538300727536433 0.3523386404675959 +4.491485651754198 4.116897407732958 3.185628265023163 3.020306274941219 0.4094480589324735 +2.7265384946897386 4.904751925320813 4.597100431991559 4.444748943709824 2.1835349150776713 +2.826390946503343 1.2943231856425652 4.538872833981161 2.463966623303865 2.5792377569693286 +4.0572502565034405 2.2982163762545382 3.621105610868466 1.6533896002888184 2.639338267474443 +4.87372601478998 1.625132056008784 4.557238796755138 1.4857001000951375 4.4707619791384 +3.437072231856333 4.329392952741976 3.3894334221145903 1.0430677809332427 2.510312329380197 +3.311614129026367 3.2747351108069824 4.721811864244961 1.133279405448362 3.5887219549334817 +1.322037484962442 1.8687148895691617 3.2343590702385745 1.62027599455788 1.7041479865042206 +4.015787393133026 3.3526960415983407 4.782886100715883 4.1777699696204 0.8976946432902796 +1.9679307094170415 1.6593618661496992 1.2908441676572924 4.8867271910139305 3.6090981489424503 +4.831065865264449 3.937790998448797 1.5638029826857873 4.592204850955016 3.157397324288009 +2.500692563698322 3.338229091739859 1.8193500261698574 1.0803638960457693 1.1169458072438643 +4.375410442763764 1.7652120988462725 1.6514120472931295 3.8254050794879566 3.396966455327646 +4.6739728913753495 2.5830050237818165 3.443822837268897 1.4890661850510076 2.862380162155044 +2.281398609339362 1.8968480564599504 4.073974423209229 2.0079629520839783 2.1014953072850258 +2.783066474737653 3.36469981331146 3.015605541641646 2.5494164801176016 0.7454056490429771 +3.9624091679901747 2.8558149811457554 3.172339588563864 4.9536456447526245 2.0970460081201407 +3.365039256617342 4.179010895127275 2.4956268369462 4.131136895582486 1.8268669848128005 +4.204708654502635 3.5549072282460976 3.681928652375138 3.9157765234931814 0.6905988129091098 +1.272858560668496 2.7695532100042115 1.8820932949804998 1.3876036277961217 1.5762661273726204 +4.7451699724485366 2.5536563891050217 4.536470563523685 3.5556222731082023 2.400998782754816 +4.036348709669177 3.4321245150113406 3.608166215175297 3.6587383993112814 0.606336889211101 +3.932162829382451 4.631178810803631 3.6028073844733552 1.5613599611876179 2.1578069710523673 +3.507875496298773 4.5842565630231995 3.26499387148796 3.9183650983045473 1.2591624838894409 +4.921012849335957 2.364031309084611 2.799744550289312 1.6648826355767006 2.797510708228178 +3.9948024377689335 3.263646988244111 1.8203471167368463 1.6938960033515906 0.7420095521259925 +4.744711959877641 1.4110184630537992 3.5714796974993432 2.7032363590623643 3.444903311488693 +1.8699244981052638 3.6629641727156605 3.9364100090894585 4.255590064676076 1.8212268344748364 +1.4806386558156244 2.508255211296885 1.4821601375696747 4.7071969650760845 3.384798121582996 +4.873924457704996 1.1440634461192158 4.153518360053763 3.0408515318129585 3.8922860424710763 +2.3090620436302034 4.250746189464886 3.0122440626994833 3.224182699291976 1.9532166566631686 +1.4180923749243837 4.902626553498386 2.4972635307734588 4.111888668149412 3.840441742286519 +1.0146972397104514 4.75397209385307 3.5823657294855127 4.51391279376569 3.853564112324112 +1.122133124607755 3.6054482801395693 2.329631331491769 2.275768453133022 2.483899227295481 +2.821139941952682 1.879405448543269 1.8797434069118144 1.348506804867331 1.08123826394965 +2.8281041594142167 3.051940478990368 1.215741071005021 4.6249051607828715 3.416504425431385 +2.4554909031084233 2.294541232685525 4.97998223130786 4.049167749808811 0.9446271197555055 +3.898654031135815 1.2124397510526328 4.266770223380874 3.0516846328875604 2.948250354150287 +4.387151455128489 4.952292255644873 2.1495614535855334 4.536463832211718 2.452893615609865 +2.7153363977380875 1.9391855814604413 4.370633673366719 1.3560090972107668 3.1129361420967037 +4.319386610675203 3.3675103072748622 1.1215417618931238 2.963974495401312 2.073795282682828 +2.857405586456787 1.9939603287129906 4.324438516305911 2.3663138483196637 2.1400443753568523 +3.437032550477982 3.8181792511340618 4.113631223759379 1.0794856957896082 3.0579914800927703 +4.627534504551413 3.4630476475380165 4.356032622530588 4.752330964431927 1.230073987998563 +4.449340876617033 2.3594712051893367 2.758459928174775 3.174037923490709 2.130788660037432 +4.092001633204709 2.3352077595784766 1.9958713496313218 3.9438079536260355 2.6231244209135642 +4.685147268357953 4.361286718129616 1.180478807361164 1.6776561421699374 0.5933556760002862 +3.1287835529395362 4.671929840761613 1.0468437720623989 1.7487826715529269 1.69529309685288 +4.968552197585818 2.557502642059552 2.148891744116896 4.075973419905352 3.086552080293324 +3.885708127694929 2.5934462864694727 2.818667333610019 3.163044158681582 1.3373616055255122 +4.213791744288212 4.77942193398908 1.3830699725206062 3.325378536735164 2.022992849745707 +4.367884667166953 2.3504385891810244 4.474923837354703 2.793633864795705 2.6261806201036975 +2.787777011973974 3.6558515651058547 2.5288324144128302 2.334326405997233 0.8895987955842132 +2.0662965089008707 4.307766598164607 1.4896869109989948 1.2165785508577116 2.258047018430538 +3.2961201423834128 4.466609111111524 4.897942714831286 1.614343592709563 3.48598158639898 +4.970379897952604 2.9851401030391878 1.2244631807316195 4.4159780753449045 3.7585827602763136 +2.850759172278612 2.4309851057679115 3.1849148582027342 4.84442486859502 1.7117779474882642 +4.030761423871043 4.306670811548433 1.744132445010683 3.685362064715047 1.9607392551346705 +3.712349511625764 4.576270398409786 1.9391623868346408 1.8258711207428844 0.8713175136506577 +4.432119390625161 2.872867573517362 4.196744995470169 3.1320859806501287 1.888058539079642 +4.988496612248219 2.7008777247356623 1.2177986044588525 4.595143966490687 4.0791741650660285 +2.518530485232829 2.0585965888228985 1.440532671809649 2.3419273516873766 1.0119543260338837 +2.2031090602344485 4.248245926631778 1.7649892258406732 4.13074155253112 3.1271982466001016 +2.9916688246428635 2.6099918691984425 1.143023721320648 4.3200126690622 3.1998337569925868 +1.1813427776550456 1.9818116265341272 1.3684274019023057 3.5226812627636916 2.2981645013057683 +3.0173494624154973 3.0313481666284843 2.2748171618739557 2.210022885795356 0.06628922938300368 +3.327507113022172 4.88532111440008 4.40178449761752 3.628038315219745 1.7393871385244226 +4.8474404759535785 1.7118978656945605 2.305940627175959 4.163002699605482 3.6442155536694276 +2.8221167157713314 3.0336304412259163 1.3252431837611036 1.4180620321636401 0.23098353766978844 +1.1203030681641293 4.926037535766605 1.0744274459017764 4.112160472831162 4.869439062232432 +2.736902532138632 2.605871260891682 1.3288618162888146 2.1429731416084645 0.8245886514246413 +3.8391037974729074 1.0210484813522802 4.144014160270873 3.6035215608552265 2.8694194560466078 +4.874281869983811 4.744773288464936 2.3322065705955723 1.3836147235422969 0.9573917510522931 +2.913436232131937 4.665780093244085 4.389943038987397 2.8999873387623354 2.3001471683808807 +4.6790947813929 4.955959818014598 2.7613172779631086 3.445406841537512 0.7379923979926568 +4.448609841674516 1.1578310500963234 4.873732347832832 3.2053662527746525 3.6895352664313306 +3.7565012241388565 2.710705161680201 1.1245445554743627 1.8606049494258663 1.2788566408312037 +1.4667329205873472 3.266547173739327 3.2736628635904768 3.970167857574128 1.929883559309521 +2.756000742870902 2.4663646488104316 3.4786614842088732 2.967488263133456 0.587526279350314 +1.9338874427674404 4.135391737197963 3.745231831589772 3.4518089521379176 2.2209723421469825 +2.19686104721987 4.492903457913319 3.736826557702945 3.6015288065392697 2.300025267942275 +1.6433617171163881 1.9406900979298625 2.8155575476620465 2.1706233109933617 0.7101720465243485 +4.012703477843903 1.8117662721803467 1.4470031915058783 1.8981793189416978 2.2467052501923983 +3.955879740556284 3.810954751700075 4.230746231571662 1.2479837873943849 2.9862811406144227 +1.7263288782947543 3.8466094986667927 3.981778293230364 4.627691138226654 2.2164821931286602 +2.9199419424146718 3.649531800927558 4.597055078960713 2.1400917858909785 2.5630001921843326 +2.800612787777639 1.2166584109434746 3.790328327572367 2.136646262921995 2.289885551471606 +1.3842666942197908 3.3906835256749353 4.371246899101084 3.0776893427617815 2.387257768467622 +3.0271182005503126 3.4117159943517272 4.0226246293216725 3.4273311789486716 0.708724033072047 +2.873605494133176 1.8160803528592617 2.187885397036348 1.010628257069352 1.5824960657232874 +4.637070870768884 2.8458076502543417 3.3307675423875978 2.82943175665262 1.8600971735978304 +2.3254293232138203 3.161298980343343 3.294294983684468 3.014859874420628 0.8813410599757167 +3.799759662267487 4.0786275041362625 3.054942385088876 3.0338033811939984 0.279667893606356 +3.52068938451979 2.2710506149951923 3.5168893010055453 4.688217017359079 1.7127771814795223 +1.2506963412452587 3.322701345479624 1.8050839346569272 4.398590552575646 3.3195604098676146 +4.135561563908997 2.512818358376738 4.874905854023517 4.680667572530174 1.6343267791658431 +4.7930901831874335 2.8868949399666644 3.066657325334764 2.7253097901116097 1.9365170913473524 +2.812782941943347 3.0471082116749684 2.1416405236293077 3.747879857697099 1.623241550214058 +4.560083743204411 3.35659819039334 3.394373384642516 1.760641372476361 2.0291519813462573 +4.476110332429538 3.96230093578446 4.347332488729602 1.8190991886921721 2.579915447354609 +3.8063847369436514 2.7809881072595295 2.886997766963649 3.165279427955047 1.062487143927722 +2.7735817543531325 4.510289522373226 4.223352908407642 1.4322844022000987 3.2872811376341 +3.294644762711504 4.109316978017868 4.009577617472385 3.5914218712414505 0.9157210527765149 +1.0281761146563624 2.4843348442115047 4.349205567696783 4.527965685959922 1.4670901218197527 +3.134346386709551 1.0806652899037354 2.9772735896274907 4.222998726742253 2.40196527131787 +2.0293394312836526 3.4644368412625584 3.5158908895190626 4.500675948992704 1.7404902152815072 +3.4698920507032986 3.4687057476279852 1.5860580440028818 4.340597335354229 2.754539546805122 +3.2422769859340117 2.380903997565551 2.2570097307548846 4.771369248024908 2.657812485330212 +4.675841858643089 4.996519405977834 1.8396809372181329 2.040372739350203 0.37830052710463574 +2.2315401049498744 2.5249825069629472 1.4788204665495024 2.210341513234656 0.7881823932584037 +3.3745595328718463 3.1460645712390582 3.690738572130785 2.994051156093561 0.7332007250106846 +2.59945261610454 4.6627572855760375 2.2126149344559467 1.9163475722751566 2.084466480650732 +2.4277084896002514 1.9564127346765599 3.0194907547615344 1.5257753351567627 1.5663031135045833 +4.210838879881141 1.9575110227988786 2.499320715112621 3.9247014920924688 2.6663077074648784 +1.1589327184160374 1.5296324230553267 2.7171887891301383 4.816181265067636 2.1314754713723265 +1.1789221444445577 3.762389611344137 4.611345943496106 1.9953041683035955 3.6766803943341215 +3.0888286778655494 1.893868811906846 1.639849144083675 4.6008562708511604 3.193038096550037 +4.109965033374854 4.702208165484466 1.5890861414964506 1.5770519301755788 0.5923653853603523 +3.277824535261771 4.72051979070697 3.981375516802019 2.8210322642771 1.851422713419114 +3.393080686607534 2.9162554780365357 2.666670212887843 3.63077936652813 1.0755783279992985 +3.4006981294689123 2.282703913746067 3.4300630461687924 3.13167856250269 1.1571276362106413 +4.025954577049054 4.8963223275235555 4.384680210483313 4.717991266210524 0.9320065884617081 +2.773948981080648 3.3339430019031964 2.054379612568168 3.069713454000599 1.1595240889757061 +4.224571534616473 4.259654295795199 1.3015127402459594 2.363790477787436 1.0628569009081898 +1.9548117615076221 4.634767014713801 1.7052818463005757 3.801017731954996 3.402097744275892 +4.397201327760913 4.42225518660837 2.3701943707907294 3.2458211402090766 0.8759851226848318 +2.6648935139532126 2.096542061991649 2.5992006264058345 2.9276349264001733 0.6564239958743044 +2.390201689848504 3.0418642761954233 4.69010249583343 2.9561912737399334 1.8523261733685348 +3.6079144181195915 3.2727130340161663 4.454874945117808 3.2370719009659714 1.2630931170148672 +4.932368044760004 1.660776441292748 2.480954507677841 4.129539940001893 3.6634881666996733 +1.8761500389744792 3.532178157287849 1.1335174524399942 3.2932813720786895 2.721582134938724 +2.1883306179088864 2.899290419189942 2.191599339819949 2.6814621206605196 0.863382524197968 +2.2190095609112244 1.6743502526401866 2.3098382067386014 4.983505921873206 2.728580732366075 +2.4651820529540847 3.7536875125701106 1.713672039751506 1.2357671120950662 1.374277788272303 +2.7712361865440513 3.483009308376064 4.0295736298794775 2.5637270968738495 1.6295174240513997 +3.8559108257858616 4.629793213865366 1.5021755895022175 3.5118794549312087 2.1535560306850305 +4.950808637485574 4.720458869634172 2.1853569415708045 3.2831026247856596 1.1216535118146085 +1.3488673618807399 1.7416669667940123 4.739676979682492 3.8874530238563523 0.9383907504360732 +4.191024509306523 4.968711314033854 1.328808433062688 1.0172647213248625 0.8377686139802488 +1.2426418641564698 1.454532355716876 2.9237875809900675 4.545096515533544 1.63509640133058 +2.012318159275114 3.35657981374028 3.4688060637469884 4.4511398874779005 1.6649381781048869 +2.4107010406838025 3.5673930950100767 4.834052710143158 3.2574656928169894 1.9553933445071767 +1.1925176030540845 1.5421800472294027 2.333131842849336 3.101948677005745 0.8445964417098505 +3.5013224435658965 4.913895337123502 2.8383038874695155 4.583994142816451 2.245617208525744 +4.04028934155325 4.739421446758617 4.321365897737424 4.315675899421325 0.699155259302056 +3.496406068988056 3.461195923566792 3.844158171894583 3.9732375644018103 0.13379553023409027 +3.0874058580621595 3.4806258325727963 2.743220713353485 1.757611662134651 1.0611536883028 +1.7087310621183756 3.0184330651843765 2.8602268884909856 2.3825364651246916 1.3940973701327193 +4.4138739174238735 1.3796130352218654 1.8608664313625929 1.7021539281640217 3.038408919143844 +3.9769695950899133 1.0099586870531523 1.159856950742547 4.594401084359063 4.538639348325526 +4.557408698917466 4.31684598427935 3.4807770876155812 2.409658538040534 1.0978002399880462 +2.217507550848419 3.53916555711934 4.960225874216397 4.091604220506784 1.5815446445906134 +4.132154671262494 1.6090598343387654 4.011951478631531 4.608409533859854 2.592637608258804 +2.7325640782306992 2.747831967569205 1.4878228163052412 1.4515264971990014 0.03937678536288659 +4.795033218592881 3.458793172892113 3.186026688464825 4.472830869102068 1.8551017381911632 +2.0963780401470316 4.75523952721128 3.0548663734428385 2.0300777818629823 2.8495150578345316 +3.72109018254659 2.373453275225386 3.118889674362632 3.7940048689019825 1.5072842332725982 +2.2965108358382453 2.3908714892104634 2.168795902448342 1.904040844787827 0.2810679161015262 +2.7963308607922226 1.6947275959681862 2.2769752917043657 2.7472033398810645 1.1977663254420887 +4.791657377560113 3.298456513294677 4.888187018639931 4.039545316688519 1.717510279251345 +4.310971869721211 1.3997546918009944 3.9211899221057585 3.924350189083265 2.9112188932309984 +1.0861320828670067 2.352465354683444 4.03111861025418 3.8668987449928225 1.2769370068471588 +2.5774998457044775 4.772345810388352 2.7263774741232543 3.47493191737276 2.318983088165514 +3.355453677995423 3.5894210768215267 3.415685335621607 4.667116688329556 1.27311475297944 +2.1831552023939875 4.663889102535199 4.595120919266458 2.802591125819028 3.0605887903647746 +4.673484098790525 2.8527807186829706 4.602565618479341 2.629991559210054 2.684401091051259 +2.1102534233019172 4.618367039995007 3.3003510565450247 4.155493225730751 2.6498871756663456 +2.1456334508751285 2.5377532206525744 2.87242376427542 4.301673964215149 1.4820641173303104 +1.000762817778309 2.8742540025966177 3.22561269392233 1.675602047207065 2.4315637405839445 +2.0513665816033573 2.264830721363729 2.7859151139464746 2.316371032992163 0.5157892815121935 +1.5491050277585057 3.405085406532904 3.9346057464459885 4.318062827333539 1.8951787512734413 +2.832070451834158 1.0995706222289416 2.012138028102443 3.405134184993706 2.2230595927000993 +1.6709451885152826 2.8130337113494037 4.11321232279199 3.9053192125807152 1.1608556065517976 +3.6964877217402976 1.8407912627838896 1.1349270068736343 2.267908593369538 2.1742255225992833 +2.084896086614131 4.686098307337937 2.794384029790668 2.1126626621725917 2.689051322709464 +2.213725050946363 4.9506683468390165 2.8903923773058517 3.9537347609429245 2.9362485640304214 +2.2267569431736707 3.63980100802216 3.520917338776612 4.30168548812352 1.61440157093523 +2.999067159154756 3.5222170558633406 4.604747323538465 2.8939638854437293 1.7889845685431294 +3.2366392247506695 2.3635565270186274 1.767953049012751 4.017982864520019 2.413484528177202 +4.642831335476805 1.5697187397822918 1.3697385168334262 2.9541290919623195 3.457501196004642 +4.488751193028621 2.830089586550545 3.7021910052728217 3.508195702599443 1.6699678147388854 +4.568951459378603 1.8807117392298527 4.3003754174584286 4.5897908519994015 2.703774045059234 +2.70623994847953 2.6825558704229664 4.113270792977308 1.4519041840832867 2.6614719916785616 +1.1700697570396987 3.9863408719175712 1.0760441636125009 1.5799109605135815 2.8609901680213463 +4.613299692228823 2.305234808749253 4.371619081042146 4.133169868871568 2.320349442031594 +4.7503521064032235 1.3918659817847359 4.606412434509293 1.3693242869100417 4.66456522353182 +1.0968125732554181 4.98344158013666 3.9584105615927725 4.594675517501937 3.938364905801487 +3.653614356223975 4.446110138073326 1.2613557182581867 1.807317244789651 0.9623531330554191 +2.93324075222572 1.073891301172878 4.642421591557529 2.8734057695545188 2.5664367047771686 +1.0962363554473682 2.0834190648247306 1.2208652960606186 4.46785152794191 3.3937367740766664 +1.490992394298487 1.917780629576817 4.020337960717346 2.581270515621659 1.501020755787947 +4.447974262816132 1.985246569570918 4.192936030982648 4.944674904705542 2.5749056342598378 +1.3946619700848815 3.924447654604759 3.353416270326459 3.388861672338209 2.5300339891245494 +3.9414143772189343 3.004451258874958 2.0307126702624356 2.4074263035437764 1.0098579338881766 +3.214330615367857 3.328072401336888 2.5852714911054204 2.771152149371893 0.2179192809115383 +2.6064518259862774 2.2852891103741126 2.221217577535295 2.101799427131312 0.34264585878905435 +2.2974638374676966 4.640864658438951 2.292710997142845 1.5987035144000492 2.444007731950073 +3.7088498050627443 2.5105886916367783 2.363230473018827 3.480770241378483 1.6385129934834786 +4.817774756406364 2.4158023903498695 2.3733563294506514 1.722869289811484 2.4884944516790797 +1.8186678882618672 3.477412451464057 3.677090354891355 4.961539236423729 2.097913834079605 +3.9739920548745524 4.426268196286712 1.5639673271383923 2.348034516019499 0.9051602425927645 +3.387255277402054 4.8064746806932455 4.540820606971582 1.0759951035801647 3.7442221466720955 +3.9548370343304686 3.3674124051444116 2.7876812366052195 3.388473371973709 0.8402492992529098 +1.777274139859665 4.619866454096455 3.3784760003160614 1.0924675862635533 3.647761715638363 +1.4215662233386777 2.2027365595739554 1.3656265224756758 4.028287068215285 2.7748852725927766 +4.184870658488636 3.7771682251240852 4.297387711156511 4.645693474969075 0.5362258659151289 +1.7384789330185133 3.223851346555302 4.963497996843638 4.04549151020097 1.7461578154376884 +2.1915513667491426 1.614529717211787 2.513905351054975 2.8207458718572083 0.653532775950064 +2.2315304306053374 1.9309222167481557 4.410339379848388 4.753335323540775 0.4560827947070976 +2.6986634009780897 1.6684941697901667 1.2939105898974765 2.576637806907687 1.6451862381338704 +4.960219765658007 1.4128411291930534 3.9220538458139487 1.862134232226904 4.102092637287528 +3.370441934258277 3.5870240216685887 1.5643297904983622 1.6338220949498963 0.22745764653005754 +2.4754322251808274 3.9700932048504756 3.4205687466371804 2.780206881333725 1.6260611189872147 +1.1913739045958156 2.345363236801715 3.287849065457625 1.9564748953656212 1.7618877829286375 +2.7263023528295287 2.495878405427824 1.7942498457849676 2.325402021152163 0.578979990097661 +3.4535290062830644 1.5497728251091138 3.3995938401141395 1.188336135288584 2.9178670693690636 +1.2676425692589919 4.830251120790453 1.856818120238863 4.534075355257469 4.456443199896591 +1.643254991231648 4.7486407827160555 1.351702160527401 3.9640699877731036 4.058064388200571 +2.33085297844754 4.840670376209503 4.946086982402349 1.7879892531325026 4.0339514917420605 +3.5022874910063857 1.242962334658369 3.7217001758637336 4.951563320385104 2.572375073032505 +3.356301741262491 1.9417803557699194 3.8776558862111368 3.5077869441731866 1.4620785834899905 +1.9263860672009416 4.138857068407038 4.511437419720438 3.813236222614165 2.320024319445497 +1.1283748301982044 2.9111899135735895 1.4558664522340177 1.710538522762139 1.800912958756714 +3.0289035435154315 1.742397815923943 2.1277697597663354 2.7075572056931754 1.411116745552994 +4.976802816582305 1.9331176254723768 1.9030909996242333 2.0361426786100454 3.0465919142318394 +3.1314638727502837 1.2474249899305119 1.1804413200196073 1.5807927585718766 1.9261058606233576 +1.414648170214842 1.3618292550952256 1.4439960153066815 3.0484463707394323 1.6053195260890256 +2.36120363030623 3.4448321512627467 1.1550748008440563 4.055152986122368 3.095917352281478 +1.514773065423134 3.114169483194006 1.9705844203300917 4.956373839041193 3.387182804937678 +3.566208146559452 2.5086044421666474 3.1156242510254097 4.666095985102807 1.876829292641809 +2.4134575032280954 4.755960230276148 3.6892462036401654 3.7188062716048136 2.342689229036929 +3.290033194746557 3.015284156356829 1.7268314076867655 4.43479193937462 2.721862831825889 +2.17874296374028 2.9395266961248923 2.969997128946047 3.8990316509565814 1.2007901692420717 +1.0937221214401274 4.297553338789847 1.3984995234294906 1.8352252991734521 3.2334600465234993 +4.5372688735090065 1.7315835832980868 3.0517393973828244 4.204500583664171 3.0332702319942926 +4.7051856770502045 2.088715163314929 2.5526634535081203 1.8496647153580854 2.709266538214112 +4.026319069323011 3.1453854727518538 1.4747227910379879 4.162636915630719 2.8285908758165967 +4.972905012429685 2.851513068911015 3.1325193517586696 3.9783404845179615 2.283794466813538 +2.9991709478474347 1.1156593535972248 1.2359632205559539 2.9535514381387338 2.549063594901892 +3.182346338429159 2.8980035890081863 3.7023006876852693 2.834815268236738 0.9128974488430079 +2.6287620628076516 3.071581778239069 2.6749978148712246 3.871786525324284 1.276084839594397 +1.5514143626505241 3.4272742825574336 1.2404826361499302 4.4037624942613185 3.6776609277972274 +3.27689881215063 3.8850824754872906 2.5008343750912325 3.511145696470444 1.1792439673183022 +1.987644771499724 4.25604346297564 2.665564865145451 4.848862876009681 3.1484000425189542 +4.0375442346917705 2.9840458285384583 4.24208913758317 4.645554173704937 1.1281147668301788 +3.8266379113156908 2.0653722650660593 2.7608690516478465 1.3012159145732767 2.287497313054327 +2.89801188743693 1.0773112365217377 1.8080356015492756 3.38963312785654 2.411721707715105 +4.476317872158189 4.564929282505308 4.390131629369311 4.1138155885978875 0.2901767330977801 +3.687795928231378 4.901660666342268 4.897688801105696 2.9047359677442675 2.3335227872108653 +1.8353752895801874 2.0841816984422357 3.3237533943018427 4.117105441111678 0.8314518021317798 +1.568346773873059 3.998385684882887 2.1939506940404634 4.777129422155324 3.5465337232862937 +1.1003941303802698 3.8891490988890047 2.067066880837108 4.104747709406024 3.4538815025271874 +2.848423769772002 4.692658811702858 1.2012351748826013 2.813613137677405 2.449686834024306 +3.816859507648683 3.8389500123145566 2.1233012095608332 4.878909619551356 2.7556969535140996 +1.6543718003953725 2.0216629121303087 3.457997366947103 4.912657520913843 1.5003129421217511 +2.044238126069446 4.4072320760246715 2.499840069125607 4.657308176113528 3.199751402874142 +1.9871278794256129 2.667442530899204 2.762298494434508 4.0651661894349385 1.469793269710189 +4.463628899566128 3.5406318629225964 4.7152695727229315 1.919906476843154 2.943803384647031 +2.632018351527723 1.5128382421278563 2.635637892150905 3.3835500689762843 1.3460819965811794 +2.9965162262449883 1.3697587123108916 4.5244582237853965 1.2251695680315065 3.678538520000484 +3.864206826204775 4.237741377404097 4.090128832459937 1.02609004244467 3.0867234679604687 +2.9541100786610617 3.1961749305534832 1.622241596935218 3.5326488909266787 1.9256820665565422 +4.392823166379382 3.6104430531412226 4.664163763241495 2.448642237429895 2.3496072592935864 +3.6210407998806327 3.6696813344231023 3.9602492651205483 1.4350668293899123 2.5256508538044375 +4.252379118980832 4.697692009471693 1.632749644389759 1.8309596538177662 0.4874328448871457 +1.669793483541397 2.631391248649318 1.7421243674747218 4.970837327119824 3.368865927525283 +1.719564987619576 1.6891324569405786 1.616644250314644 3.0785006605242833 1.4621731439862178 +1.3491330204772853 2.227552692958973 3.6889317483157362 1.5436937835075581 2.318117133938052 +2.425556713465201 2.9387802015476425 4.529173770383461 4.167887032745012 0.6276356072698085 +1.2271845743455607 2.3827196051954997 3.0753471623893827 3.9586719546434144 1.4544840652726305 +1.6104275814354572 2.043632449552925 2.0356531715542596 1.3641883300600917 0.7990816548535329 +1.2840642224563488 4.305692183598469 3.6625366587512747 3.4146278897331555 3.031780713262746 +1.3898952275648786 3.3651230983225506 3.4904036202316404 3.984736316982035 2.036145858354554 +4.202709512482333 2.4712324168284083 3.7276480249362507 3.1669614472200553 1.8199951569180748 +3.3773349631203566 2.919856652469403 3.3215379428773306 1.666640414177187 1.7169659971047455 +4.5791886248981575 2.785090307156646 4.510192759688875 4.36264478803464 1.8001553204271568 +3.277470770334545 4.560647313995251 3.2311283838279237 3.7489103886904753 1.3837052600754678 +3.748692610031568 4.237179171252754 1.4366118945418216 3.124082609064775 1.7567516992638164 +4.65312442774605 3.363803758426502 3.7441450376875096 3.6775120958363865 1.291041338329003 +2.8270824375466614 2.26820031217831 4.9901957362660925 2.5494190781138957 2.5039448726033986 +3.464542179528989 1.6952564984390492 1.8239967730404865 4.485464153697039 3.1959005678538785 +3.9734403994072975 3.3889706921604255 3.9536655142408073 2.225287527331309 1.8245260492310253 +3.351865108480251 2.7539283009711997 2.9696297296694256 3.575476352260673 0.8512218018115713 +1.1744230488461813 1.9247167160980072 4.58762806386263 3.8212733781059365 1.0724924668730473 +3.1934125532785 2.1465237552252465 3.110686220693538 4.210216748500513 1.5182040498789584 +2.888901477704433 4.606768217563271 3.694778753263658 4.23865628830095 1.8019070200849636 +2.1140762191778664 4.417165511970349 3.4815890039302446 4.144487577074298 2.3965923326364456 +4.715397050941684 2.9258431649509005 1.6606482268779224 1.3505059646662096 1.8162299781895774 +1.6230084740479822 3.352574919341756 4.507353536862125 1.7377249081693291 3.265308994499736 +2.8889106823476336 1.3407408497822821 3.6492889397468535 2.7121471666390065 1.8097139368886863 +2.1047551636758235 4.433913165240069 1.041933304740796 4.401878840720898 4.088301725778488 +3.4043506773466077 3.483825501818928 1.0303367316327599 1.467198468216206 0.4440320085484947 +2.253712040167049 2.1869699488805634 3.8100519761563953 3.60399662372039 0.2165948176130259 +2.206118824222398 1.0740413237633546 2.7861158742596244 4.59783062217701 2.136330918857599 +1.2782058751915577 3.8223613575636937 1.9314123112624282 4.0957845358524985 3.340244638504965 +1.482585973905056 2.424553278594853 4.109843202411939 3.6111040300404227 1.065853256861556 +1.5297688052832807 2.701887423001737 1.8971751282115452 1.4116635601691776 1.2686936339026782 +2.167820439420073 2.5647423499570405 2.856578852486117 1.0235725507756985 1.87548903093951 +1.1633611138254225 4.777401195807165 3.616749658649471 4.0978966453100085 3.6459276099427864 +4.522736651866447 1.654364877155872 1.0846314140570463 2.7576406361210295 3.3206198962042355 +1.470014821770227 1.4824605608011843 2.6091946913760466 2.3575312561761543 0.251970992450792 +1.365841027725558 3.340158221107203 2.839212444174429 4.146165065174097 2.3677106101929515 +2.25239811833042 4.561912058437534 4.720362456606946 4.036938126914222 2.4085106298218895 +3.573771184883258 3.199394701557761 4.16473675117748 4.808585569249297 0.7447812106918664 +2.7559093448350716 3.9530138352576656 1.5574831343662119 4.698906353247126 3.3617850914527625 +2.6697151688140095 4.752089789710528 1.3032861129925353 3.003592387821037 2.6883685554579553 +3.9423490953601505 2.9353727837942962 4.458224859198616 3.9831817805186858 1.113403439305124 +3.7760801677250804 4.337857965797854 1.3450377195306675 4.754132111661185 3.4550714708762884 +3.2009454580983547 4.7754033882687565 4.966800255934742 3.238013463637787 2.3382945809065334 +4.33509744099983 2.383736331815737 1.386244804604929 4.77981388149732 3.914603588880546 +4.335523924869402 2.044190983397455 4.287312182425065 1.817393041592613 3.369081063276009 +1.7537016790521953 3.627518795377568 4.4388871912623475 3.3108556302595202 2.187154724305624 +4.22071347994284 2.217167242606778 2.377636832405309 4.361914271092784 2.8198500809134552 +4.200604940665279 2.2136119983319835 3.7004992720588015 2.7565272152956295 2.199823674032085 +1.349701990399815 4.2697465822642044 1.8391841846149743 4.706102902458332 4.092173426578725 +3.733053401683785 2.650403289961097 2.074033465621343 4.5077284839615235 2.663644628456837 +3.8451910128614553 3.501160942348733 2.054465045409928 2.990069860739677 0.9968515736483555 +4.3237772590334105 3.0912489957140132 2.3540891741719157 4.886430710080391 2.816359276507247 +3.466417466674123 2.0750765009214764 1.1411860491181254 3.1974659488796906 2.4827639253752944 +4.153253193707657 1.7689201149148999 4.757893003372088 2.694391078262317 3.153265676335738 +1.9861917318775126 3.430792682147402 4.293453899552535 3.5321068003123752 1.6329486553600125 +3.136426985633625 2.6868131297045688 3.703847031960564 4.547475409080134 0.9559610128686175 +4.545238775377873 1.5679263013050408 3.541911276280332 3.6376550448402036 2.978851529950383 +3.451025250765651 4.266039077955487 4.203408760103487 3.99882161036948 0.8402996134396996 +1.6410250066927983 2.0789347069856903 1.8244240453281062 4.122238921627536 2.339170389551299 +4.720067774533552 1.07900881890582 2.594804095526193 2.3865875473349516 3.647007602034521 +1.0282216716276174 3.165583959049461 3.4935735750728516 2.088407343001233 2.5578916488873187 +3.3257405012068544 1.4001988606802325 4.630048805312903 4.192137182546457 1.9747093960266398 +4.337159553847778 3.1785989216887676 3.8408218523604236 2.4823480637069397 1.7854169745040616 +4.301887893100057 2.3008950655359555 3.3518434024638615 3.064701549950424 2.0214902273886524 +2.999093151949079 3.3447329955241227 4.050154789466465 4.576201851133713 0.6294381721466585 +2.6662072070033824 3.0286660072509304 1.1777867777065834 1.234253158839584 0.36683079760994597 +4.089686811223713 2.709942124841715 3.8444404859981853 1.816356196440975 2.4529209700167947 +2.777420951036765 4.687313150762191 1.0684322905797612 2.4968789408404533 2.3849838672856927 +2.2350307885529412 1.1024017668887458 4.094278853187187 1.9575849011080901 2.4183278407956563 +1.6581148479476786 3.39105254136807 3.788279630287468 1.7992830267050177 2.638025879012507 +2.9330707112567898 1.3265741403688387 3.681137269199502 1.8054331317819194 2.469635042551871 +3.3504435681275377 4.425842286309888 3.548788687698354 3.4238172645533385 1.0826357927166146 +3.13705234239234 1.534531354819455 2.6143348320407966 2.0814034595379733 1.688813004275286 +3.9151067574710536 3.813129370281181 2.306179367129553 2.5028147346875045 0.22150588089873335 +4.414513370805415 1.844213954622905 3.55601505651576 3.5340481478836567 2.570393283897039 +2.393239119884977 2.473229411577793 3.644502857625447 1.5377098354974494 2.108311002877024 +3.066285103944298 4.296616197131576 1.5963537848332279 1.6036206236495527 1.2303525534617241 +4.883524419054718 3.7603881184245016 1.9638627859055267 2.8085214371995213 1.4053054425992653 +3.298687977318213 2.2654536922523443 4.9149181499021894 2.1429236796287467 2.958297894239544 +3.4502725668648675 1.8025414427326605 2.5876071357484474 1.567036855203093 1.9381902783180007 +1.7628035748929962 4.15361197874496 3.087516275025626 1.3854589244237108 2.934785179304814 +3.2301404655781467 4.298111818701722 3.878052326604709 1.8631872029866403 2.2804044109466757 +2.496991275460924 1.493250163033868 2.317009755838227 1.1612880976562736 1.530747781957285 +2.81451127907452 3.525037832585063 2.6899188038532906 2.5933642876508034 0.7170570115706748 +1.576378434042621 2.3010183887331586 1.9705510219298161 2.835478836546384 1.128363057012811 +2.7527324157760207 4.345094395612504 3.7171817367314492 3.1501654989804226 1.690302957668268 +2.4653066420845273 3.2087188257116224 2.31161485607956 3.394455918686765 1.3134711422918686 +1.9389970784130988 3.248792091187163 3.236570443230362 3.917615736055112 1.4762742517454406 +3.669801568482994 3.9527294159981032 2.5876840771450182 2.1020990165111155 0.5619973469780474 +4.787069596618039 3.7407789421863824 1.9591922855535557 3.860210533010236 2.1699296096220015 +3.4099884958366555 4.800286326626142 3.980605006329053 1.9823086585563665 2.4343615901955915 +1.2538636129892686 2.842206351493451 2.073839733466789 3.8527932324290126 2.3848497240767403 +1.8179532495636535 3.8509371363541645 2.7697378187962878 3.9168969784257284 2.334308810220185 +2.45245934798195 2.509609285262263 4.920405070924442 1.793981254132238 3.1269461136285472 +3.932911975503481 2.820276746599024 1.8719946552571898 4.396442265219992 2.7587665519297166 +1.2858457555723155 2.5979608815933064 3.3118352811539293 3.2725882009048517 1.3127019605535593 +3.8571882707559753 4.963258081890248 2.2479715487408485 3.0295436803018085 1.3543431706681097 +2.995121239154473 4.444884300433307 2.347310751582008 3.765721397217476 2.0282262431742177 +4.489209003698663 2.1665322872153663 3.996319237918847 3.7744944521712087 2.333245243189326 +1.8523393280939842 3.3466505662374093 4.050549658482417 1.1514529977168713 3.261552931488875 +1.1305425149440853 2.9189395060224514 1.4258338732036164 4.894199372134414 3.9022971480746613 +4.05893784908989 1.0817899647224896 1.7598342955681283 3.9328658407175743 3.6858480193312197 +3.151201760738892 4.856473440539954 2.7489881907256843 1.2730779358361564 2.2552743918245532 +4.283054156663226 2.4735532254852197 1.0960307216908785 3.219354159621309 2.7897663059831332 +4.720570870962096 4.1024863333336405 2.0232398224515764 1.5614007628203468 0.7715722990468488 +1.0223628701168477 2.8720118725511066 2.304383137108105 3.8789216630283785 2.4290683402928863 +4.914528294054813 2.4929910896783616 4.148328446676105 4.021972044400179 2.42483161736551 +1.837234294282633 2.045144312814495 2.4472522019745355 4.361783854308128 1.9257876372001965 +3.484287642031354 2.293689256496715 4.462235647503171 3.3261990255531866 1.6456317091163564 +3.5190518996370566 2.734329092180419 2.3709770027907227 2.4497070872970377 0.788662355351768 +4.544372049975685 4.275051802936371 1.0689532919067357 2.0393894607376306 1.0071145680807632 +1.2129382803953699 3.1178174645542396 3.6222215186095688 4.474437462100833 2.086824554336676 +1.4138031996582527 1.221585008695536 1.953976269999112 4.194728263499381 2.2489813981694935 +2.248778026975466 4.846390545091726 2.528443957330238 2.0036105173301046 2.6501020610566437 +2.09777436755738 4.346289712115299 1.5996315452420191 2.30853565387273 2.3576187753633793 +2.754092333091129 1.575678322362899 4.5058954491821215 4.712133150086369 1.196325026886449 +4.452859971584656 3.081842196028561 2.262862204735514 4.99915657343926 3.0605549518168456 +1.1217983795186086 4.606667627209301 1.1667185003868856 2.882001667043185 3.884135684462472 +2.4124515056963234 2.0904581192201617 2.644174516737531 4.249218857848495 1.637023847678071 +1.8443844536125331 4.544220586599074 3.8387045642474265 4.710191984934733 2.8370064274505853 +1.7042934534126206 3.737388864625132 4.306076634628645 2.7925234864535007 2.5346242489655664 +2.187102410473567 2.9507409943339393 2.621142982478734 4.050248678999443 1.6203354524876066 +3.1301953925845387 4.113364480791557 2.5090878162043238 2.7469969869678827 1.0115444772916429 +1.778895242145195 2.9683579414541548 4.052690815966908 4.758868725024811 1.3832963356738674 +3.5489893751998456 1.2898434838156936 1.7727965788818048 1.052350324817101 2.3712408067410107 +1.9044966062698605 2.7747245908531877 4.519637378334859 4.568247188608122 0.8715845677883255 +3.375335929823718 1.909425832766169 2.2291781808899587 4.626518521099133 2.810005893134303 +1.5547793458725963 2.418636137377743 4.949467167328411 2.8417362175348173 2.277889003649513 +1.8145969524666903 3.514596042824176 1.289955495716407 1.0250789346790699 1.720510534638845 +2.0943155909505213 1.2059584770645828 1.1063023953436066 4.332140394733065 3.345924260962393 +4.692800757060307 3.743024052349556 1.264565727105857 2.4376539330807523 1.5093746148019753 +3.067079188139423 4.51057279457767 1.321841616311941 3.725279018388956 2.8036021717659603 +1.832428329899515 2.95001721808998 2.347978586888347 4.567569451253801 2.4850731434268454 +3.58002243437779 2.954562742743257 1.7192210417033214 3.2056499871663857 1.6126595535853199 +2.678970078393715 3.6317548728500038 3.8486257257857024 1.1785412700262037 2.8349867487231064 +4.770159020801803 1.193641942618775 1.4796866200068601 2.026276505843754 3.618042967383618 +4.072936705404972 1.6624260935068182 2.955171419365825 4.934012212965504 3.1187132437093057 +1.6106953389883536 4.443229112917027 1.2249190948311535 1.6696418856877533 2.867233150818729 +4.052095906466111 1.3695526537901528 3.8125271128289207 4.252161082494448 2.7183296948238596 +1.935307810504717 2.388665745273495 3.654653423615967 3.8624002204924257 0.4986904336662577 +3.769356498925536 1.5970558112684379 3.2160890601268233 2.05831376728746 2.4615714302666043 +2.6897854007437045 4.835218172733789 1.2978641134638376 3.0680564028265795 2.781449715606659 +2.5276631228587454 4.438731897327309 2.9548574025592353 3.7657550369941246 2.075991048699603 +3.3618932114218145 4.432332160022783 3.5951022829188317 4.139823408137623 1.201066462333194 +2.9684087885630905 2.727680529939731 1.667924185899667 4.312283134223845 2.6552936451703397 +4.463833630085619 4.719181729127448 2.7391102239450866 2.978992156581148 0.35035124274003565 +3.4533034227706643 4.644943676717556 2.639881474648616 2.596904378260947 1.1924149972390183 +3.9824390841774546 3.9862315062603066 3.238743991516455 3.51632141251083 0.2776033269093563 +1.7202064807912776 1.1377602077210982 1.4505363510959488 2.896595166946206 1.5589514937648283 +2.693975906796119 4.055307101686705 2.3297829254178377 4.150722503713289 2.273553071732667 +3.497470255415806 2.883138318375441 3.1888111557194345 3.9213509683213594 0.9560430460573575 +3.9808080258240905 2.2019511498816278 3.915441743003635 2.430840701205093 2.316974759982744 +3.94035674895529 3.023888547030399 1.1268923474432753 2.2639958543597096 1.4604514201373138 +2.869617235981835 4.96373981033536 4.762866120266264 3.1642202775381825 2.6345811596701316 +2.6633696849928232 2.4398144031969418 4.308006826658575 2.692066179815826 1.631331093965109 +4.281373333345687 4.267615079010746 2.380024002178033 3.281189252371172 0.9012702689637596 +3.295842425468871 2.0493809229275035 3.1463403696632284 2.2789646705328837 1.5185542073826466 +3.0167889846850673 4.067207086930074 1.7045877869104795 4.199692623281628 2.707198983083197 +2.1482671110478817 1.097092663592825 3.7917591383849736 4.328428651093656 1.1802465356244085 +4.245139411671611 4.2511277436124635 4.808527344455317 3.888948213885223 0.9195986284784708 +3.0725136293233155 1.0037600226950416 2.1492813208704047 2.6916752575811644 2.1386754469806974 +1.5701174314561022 3.6696708880102493 3.2702972545961715 2.3708193725674467 2.2841158414553644 +1.7108039881087138 2.477672102553162 2.652452303749374 1.3794266141514453 1.4861632182663738 +2.0718030155955898 3.5876473281843366 4.837468875932653 4.906309167044153 1.5174066579819554 +4.098656947559595 3.2593377765279374 4.501506394575053 1.4925560814726837 3.123817961658476 +3.4102328887341877 1.3911136435713027 2.179646663038193 1.5827317897795288 2.1055046644699096 +1.0481842073567877 3.0938915167477092 4.0591325864460135 2.1647931294587845 2.7880890183052105 +3.3706506116576267 2.1999601130929043 2.9506275413580254 2.5620502755564205 1.2334944405742447 +1.3449651167876842 1.7238063400905377 4.761981771439767 1.9738523941933406 2.813749472987627 +1.406831868109141 2.0890607273602124 1.6554813011587601 2.0607504135126926 0.7935233265778407 +1.3319923596873924 1.8011849288976753 2.91844006663219 1.8105311721456943 1.2031640725538786 +2.624466731578689 3.5399343007469617 1.3582775745194264 4.787845455137013 3.549650224735202 +3.5339388779085317 4.1531551991529225 2.4461073644132565 4.499674809083206 2.144893494396331 +4.702741414507463 4.539565370649816 1.3877542581539069 1.7933132139916212 0.4371549930507596 +3.828771837854859 1.5650694841235335 2.8014331290263104 3.6780535152373557 2.4275114104385884 +4.800373335959225 1.5727390396028875 2.378540912819604 3.634081467503668 3.4632362373179277 +1.5976011729812258 4.728902851288015 1.1077927412767248 2.3885090268572706 3.383087998370445 +2.471819813267578 2.807825591607995 3.0786198141378156 2.692758328506858 0.5116531727366487 +3.9238694190887125 1.5586166266250672 2.942960901215577 1.2772232227861422 2.892940162809552 +2.9122581515370354 2.7926509696692827 2.841919723548094 2.684252173361315 0.19790132474606179 +3.2840158034621223 1.9477818465577945 4.723272636566135 4.317685153133291 1.396432022800102 +1.4830088094744642 3.887770842785014 3.6461662544340134 1.6669273835608616 3.1145251555938858 +3.61777879852091 4.57092810654968 4.198160292420178 1.5908810479618194 2.7760401045336276 +3.190586749399785 4.2567292073459715 4.167017000342647 3.267090722735628 1.395179933113705 +2.050944656420667 4.182220075798268 4.828328165175341 3.8712070355717154 2.336325270585603 +4.517013085136808 1.0370781432032539 2.1781281036792026 1.1851864818782287 3.618823049610859 +4.106728432222645 4.8173572330517285 4.87714321330558 4.036457767839519 1.100793037217374 +1.8084867459539784 3.2834817680157857 1.7118997735053232 3.9291368502295687 2.663034090939842 +4.771835100241736 4.085535776467509 2.588293426473609 3.5565515249488118 1.1868152792561177 +2.284352285895114 1.9983406142340683 2.916853181258569 1.7180880220593808 1.2324125053066448 +4.600378720019862 1.2077669678064358 4.565948908945169 2.2805179722034543 4.090600086524319 +2.334598419243235 2.511273940694154 3.2085662440196843 3.8361505111760037 0.6519787207126386 +3.7343977415806573 4.3685996176371615 1.1824538821622035 3.7485475754866626 2.643302643004231 +3.689207444458134 2.196687321411933 4.169601150907425 3.749507117298651 1.5505145322671237 +3.090592047631716 1.8915474007038466 2.7091503142099604 1.3734753453543722 1.7949194098214425 +2.9695545122855265 4.651523975850235 2.055988643406868 4.260724562139115 2.7730636032576466 +3.0973334905340324 2.9354157424267475 2.2941653375231166 3.4968617074901207 1.2135468328350345 +2.381219310737411 1.8292448212946155 4.507474119176736 2.2915906772940757 2.283597001444296 +3.1456861934724216 2.9165629752626465 4.2139614932641365 2.9923159612951418 1.2429461995205635 +3.348850440865051 3.194936174554403 4.553332677730525 3.311915695435808 1.250921950124654 +4.187077106566224 4.565312832321046 1.6415146440169277 1.964210293980655 0.4971868328332818 +2.7436892979758625 2.1275264659073545 3.377551402435819 2.598183474131419 0.993514470600291 +1.3337267200300866 1.012021505868423 4.029120347261989 1.5040087806476938 2.5455220817482807 +1.992140496471888 2.6701022793898015 4.370220450166116 2.185081278838388 2.2878954034588346 +2.2621089590354813 4.6226339368605185 3.928535533460436 3.821479903164495 2.3629513492482137 +1.9772243149396775 2.699603971873799 3.7096769627251462 1.0685299627792166 2.738154459499252 +4.272881805954608 4.36780219641275 2.287577085549438 4.9936529094396205 2.707740062333838 +3.5063636993113922 2.238564878043763 4.58430492823273 1.5259472817381132 3.310719762389998 +2.294094903153562 4.450938551544569 4.9918174841538825 2.868857062862913 3.026373320324603 +3.125363232386227 3.210912134967357 4.787417400856285 2.070020284186108 2.7187434054026185 +3.405268934963406 2.380892344647214 4.195037024301955 4.972806080916874 1.28618509718294 +4.965850712757164 3.9567064884177974 1.8402411578479616 2.2932684118731554 1.10616714758987 +1.4893082426866893 3.893167583217257 1.419851423453808 4.951014947706012 4.27172746837451 +3.729658321110204 2.354876544721153 2.7942376157240827 4.412354350597956 2.12328205859945 +2.379537446743955 1.4370664741511834 4.737987792387145 3.9609974876121745 1.2214603832684328 +3.7350604487240346 1.0950868316957583 2.852312687656544 3.928080512212579 2.8507432558817682 +1.5110430695774055 3.2187515121285206 2.577341875598499 4.577371928159028 2.629902723658354 +3.5283615840568245 1.1724899779132882 3.866063822935338 3.3757207652092514 2.406359769214382 +4.682319066183098 2.3866442319170584 4.152745664315406 2.325899324390424 2.9338525004471014 +3.0415521720036796 1.7826070625326698 4.370271861695724 2.7029219898636074 2.0892578547799094 +3.1449295516435813 1.9673269490277052 4.421391459081935 1.2616366812127362 3.3720614089833707 +1.5643152950983832 2.01779746355772 2.419361357424992 1.0010284938802179 1.489064870622399 +2.840647627605688 2.0088198793016097 1.3138357197769124 3.4888583772846724 2.3286607660886873 +2.7581219238159544 3.738543033313679 3.6309036975214433 3.389958020282563 1.0095941616951098 +2.31902114874078 1.8155818576367992 1.579094736304215 2.3580482224743533 0.9274802711884984 +2.2232534516146814 2.0676525262975214 3.757359028966675 2.650294127081395 1.117946485725422 +2.330175068922493 3.430371154130425 2.696541404821235 3.738114070089005 1.5150264165815277 +4.016565389822705 2.62366226979559 2.2108482682850896 4.825037724787341 2.9621218098297057 +3.3356795867780282 4.434022116094219 4.855072080473656 3.7171800541047926 1.581503896732008 +3.8796361293915025 2.548757341255239 4.052448494849568 1.6048279961064047 2.7860517681081913 +4.279150880268979 2.6238512078485514 1.6457081895161054 4.086724794997559 2.9493353613570927 +1.4235845745782152 1.47310200363476 3.3784551891878847 3.452727751194406 0.0892658347150942 +1.2594769463028026 3.3264550767462344 2.4544638566909027 4.95888201679916 3.2472309607435466 +1.267250751312682 2.2613454438285765 2.9609860130881893 2.3565698241398274 1.1634187496989776 +4.448858250261079 2.395035246064741 4.621944007405606 4.515632242475488 2.056572664393025 +4.893271844202943 2.0568109288182783 3.590667011628275 3.133104284698606 2.8731296826944868 +4.151818072914407 3.1199853130630717 1.8708075037758984 3.9451184058537248 2.316774603361611 +2.0372114640033097 2.129779475936971 1.8698198346921475 4.0181283331935145 2.150301895447834 +3.263789912487409 2.978860152929359 1.8546439740049419 4.044560103156907 2.208374429439386 +4.200705147880196 2.7431282083064428 4.6713098314608565 3.1487735994953625 2.1077587889568563 +3.667077016677631 4.502081787187896 4.510059149538916 2.5710122045875763 2.1111930327423933 +4.898650490944435 3.4493748667444564 3.923551242293674 4.006358546429986 1.4516393782611996 +3.2694397503394828 2.7569055377269955 1.7625544370584825 3.8551871408131992 2.1544843819164896 +1.6094971836800052 1.651186589603919 1.851542321851059 4.641229727293701 2.78999889366494 +3.2990648914463843 1.2503200668481025 4.438955851032322 2.135055128478673 3.0830689086852194 +3.0403980460072573 4.437927850521172 4.064811225026821 3.0780553733536213 1.7107824716532496 +2.726666172646438 3.563558221720413 3.855895894359916 2.3953023525416524 1.6833662097726856 +4.910499690486958 2.276452960180277 3.581439906057528 3.552357769851895 2.6342072712840197 +1.0679923755409795 2.2005480261824024 4.408519548577717 2.783385850795607 1.980843718587302 +4.8906442505196015 3.961292500232209 1.6150167773645112 3.6541393469153816 2.240918456663246 +1.7643887718761024 4.828152857969136 4.4986800669976965 4.847269211552542 3.083531217116986 +2.8363749734775787 1.3713858974759812 4.773753836412839 4.840557136834203 1.466511395711333 +4.6865294319997055 1.397998212375907 3.5703613470399027 1.7081436395647414 3.7791920264091416 +1.0152710612718079 4.983518884569955 3.2069631640396867 4.253938774505212 4.104040535377318 +4.549563618052402 2.6506756431631917 4.856725619349494 3.9012818334455863 2.1257112619547462 +4.89225377343346 1.6206931118492434 3.028569670721455 1.4171677157434677 3.6468788604685285 +4.958665490619959 4.586894851742459 3.5279707343150775 4.6825589668539145 1.2129663617135225 +3.6407216410393897 4.67642596969853 2.098935322055905 4.881713227984518 2.969265284565816 +2.8811344629187143 2.4354023675993615 3.448662710301773 4.791422399879049 1.4148076493825734 +3.970395486924418 1.3388914695335092 3.400869175367072 4.045543447277698 2.7093206363234286 +2.8159241685285856 1.3241387052061961 1.7533279618068933 1.1175509344226833 1.6216153357468899 +2.026235002570786 4.0919268043683115 2.0023614220141326 1.5070161506360522 2.1242527057509264 +1.641421320587749 2.991108193083592 3.5453717633349573 4.777123199463098 1.8272564828702473 +2.260877663329305 4.36077119882677 4.04707982061459 2.2342287961402048 2.7741632427385863 +1.8553170131370997 4.389746255796787 3.400676280234866 4.072334022206213 2.6219183260350816 +4.759077829452521 1.8208875797762398 1.590360256298598 3.4393604465123717 3.471565014039539 +1.8175650350667119 2.9498203815859334 2.0282470752724007 1.50158672100798 1.2487486930825142 +2.7740830962908856 2.3149443737974527 3.8914253155300087 1.067238567398339 2.861265306610947 +2.0859434905582694 1.7439756733412728 2.832980505286934 2.929447111515791 0.35531365598506137 +1.6442067115118175 4.544759745321273 3.519910753312917 1.822125328598844 3.3609051236702263 +4.818517106325309 2.8880715537606934 4.0880703442182185 3.1309304290243682 2.1547011042540904 +3.599070322658558 1.26394597399357 4.066595744402339 4.9367954012404915 2.4919978263412115 +1.6756856880431394 2.5838739648099933 1.1277012294460986 3.0367674099903788 2.1140812727411107 +2.895119662211131 3.9391648371211088 1.391586024450434 2.989319140728356 1.9086071984837443 +1.7522374190805023 1.2336104227333884 2.9670966795327383 4.1883506194573314 1.3268139082483916 +2.000150381498854 4.800094580167887 1.9999068034703442 4.1745892783648415 3.545268873057956 +4.072882857995387 2.6636040160360026 2.758935338099102 2.6666429439353947 1.412297681232555 +1.8874536269255047 3.078508248231152 1.042716132568407 2.301528268748328 1.7329798340221372 +4.208463378229797 4.438711583465252 1.2018325043281197 3.7854108447837334 2.593817895937479 +3.386603911360091 1.7565624528154675 2.2765658847169785 2.9043861188767264 1.7467665565251367 +4.552336296098694 4.4533225580769304 1.9786356009193016 2.3954321732796373 0.428395965256872 +4.829683102551124 3.053694882008966 1.060954496268212 3.413274587608597 2.9474639898781017 +2.1153236283636314 3.013776809711949 3.3347649779293342 3.6603381418244165 0.9556233589252447 +3.433402097290089 3.4958446411404034 1.487245609364669 2.405919594083366 0.920793658471553 +1.9173833073077144 3.2497544257815894 1.2921530590931503 1.4746923993402317 1.344817239657926 +4.915187277428887 1.5461962661951372 3.0966490948324092 1.9451271227545166 3.5603515677460797 +3.052804419385595 2.1810578391947106 2.389442283960314 4.230578827033286 2.0370875951497998 +2.584495963397654 2.15418693120709 2.382834836933395 3.524026192331498 1.2196243572592913 +4.932161126312256 3.806431146691219 2.4396130017117406 4.998394833239939 2.7954664098100657 +1.0288233374644573 4.628100942270541 3.6973776309150432 4.134000387771284 3.6256638989657275 +1.4467978447823517 1.2369428698367515 2.3222374997576325 1.7409637483761906 0.6179953758358333 +2.0380328518153092 3.5913423454874187 3.053050479787149 3.2194166687621615 1.5621933593399935 +1.2493150278657739 4.873301398221793 2.6586102190207206 3.8282295500865002 3.808055487007635 +3.590785774998045 2.078064234133316 2.4633048780580893 4.594763300212376 2.613702635260676 +2.6193035665329467 1.9136896474812604 4.984606882275946 4.863283347965295 0.7159681576279127 +3.253216447019731 4.899274855518329 3.4591464796863858 4.616395813217682 2.0121466905142795 +4.2121512953581846 3.839790871574193 3.251722032448219 2.465086200807452 0.870315010109417 +2.704513676133042 3.2285864966706304 3.147377340062021 3.7242054494433443 0.7793477971988215 +3.201401293656074 2.9132641554873597 2.0522922671603494 3.8525522109021626 1.8231727497506465 +4.508482532515703 1.2052614552871819 2.7518509974044534 1.1027554139878988 3.6919893998074724 +1.1811975086205688 2.7355092696424634 2.522021381167432 1.1721265229691857 2.058664901979204 +4.090890940406796 2.6222077570173785 1.1824717330040269 3.9448927337494535 3.1285779642723046 +2.674948634414105 2.2190525468312914 4.318079214737571 3.24668650102123 1.1643554395792473 +2.885774350925536 1.310412035844208 1.2045960772490618 2.917027319791272 2.326840601376265 +4.503466841112406 3.8864564495230067 1.5676042789704847 3.936569069627148 2.447998366564053 +1.6354039127024418 1.0303667862055712 1.4739897060844371 3.542449975130606 2.1551328982367046 +2.918235556095547 1.4852706564827014 1.3068219551330817 3.360590929884331 2.5042674388278203 +1.8492261416354494 2.2426609709333825 3.47330794189548 2.444607812667837 1.1013695659394547 +4.704981083488434 3.488664294322413 1.1612467377990305 1.539125160677738 1.273663469714209 +2.3652519713681492 1.6776185570020976 4.520957321629693 3.691483032665155 1.0774355241061713 +3.6423189046143434 1.0340368081961744 4.627692717810072 3.666798264157024 2.7796499142080373 +4.939181877318415 2.299741926668171 1.8412941509404663 2.7338609879528954 2.7862732837291704 +3.7601812790982145 4.237423510467674 1.6444249779958704 3.0142663349157406 1.450594874708501 +2.7471991279821744 3.287183773901549 3.731160368091792 3.116966012598976 0.8178130129485027 +1.0604539526081815 4.500948454258641 2.199977021221207 1.069283071322039 3.6215288517731876 +1.1549277705007497 1.50849545096334 4.106304144110296 3.5172222338572023 0.6870426490801936 +4.800209323293194 3.264344023038739 2.0787811938079788 3.482808094374513 2.080906955642221 +1.9965587604943686 1.771762545147233 1.6265575578710831 4.441447360092292 2.823851613857101 +3.51239561259615 2.679563425744465 4.582989165554604 2.8453334672744557 1.9269293648760535 +2.8373407960568247 4.793117799788233 4.941417248017703 4.708332847165274 1.969617228358175 +2.225929731120203 1.132015352954304 2.6587837801055323 1.9206425111880745 1.319659501400706 +4.771066176450159 4.125332058574541 1.5282371140378603 2.924260108490879 1.538132878534938 +3.833038539827713 4.8954636365944815 3.161237007178919 1.7677854678017786 1.752271177310293 +2.3098905802637826 1.0991412025378056 3.436536110121384 2.789464234190638 1.3728131949702316 +2.0420519922071314 3.10828036367286 2.9454570644157454 1.5763776409143535 1.735287125513632 +4.39089762216902 4.990803375440498 2.7996108435006812 4.310283662469459 1.625428952239775 +4.459618528634696 2.5325064122045124 3.8179948410121876 1.2328485001621994 3.224398038844166 +2.9085699450078106 4.226676446451566 2.6429829605222683 2.2623529154788993 1.371963549201659 +1.524383706045343 2.1176009667450986 4.893456846426427 3.8534763378583357 1.197274478385666 +1.680424151910593 4.873934324458426 4.081285253718964 3.103256005182252 3.339917429093087 +1.2936072716357359 3.0938385217494946 1.8797479384575233 4.141852965821265 2.8910122290835196 +1.2358445725648854 1.4163104629338972 4.858879757834882 3.484161614750623 1.3865128598436125 +3.590505371006313 1.8594982038749057 2.731355188621313 2.3028594285126722 1.7832538880068036 +4.769258572740663 2.3144071404702458 1.5732652310567516 2.1414908975741773 2.519757123734208 +2.4664085104200306 4.393913919906213 4.30800165855519 4.425864658559992 1.9311055875763572 +3.6246978465041475 4.922230331226972 4.184727129144994 4.3732428375867505 1.311155490870661 +4.956738256293267 4.477003396884806 2.156614739312524 3.098841059162529 1.057324913708998 +2.5673979747811235 3.081015916573041 4.325477149626358 3.2468902082165902 1.194635166195204 +4.581897560072587 3.7542782384420526 1.8004503957505573 3.6543376508278858 2.030234394367886 +2.5810575544384466 2.270667117325075 3.763963097704614 2.4264046536495876 1.373100438684051 +4.273182129450306 3.095047577343729 1.1842331164264803 2.759734109321116 1.967283508160262 +2.405793256153772 4.6746568839067 1.1592255910651836 1.0589204033122854 2.27107976346722 +1.2458775552733563 1.8156483954993492 3.152695307691912 4.546653756900223 1.5059080212586273 +2.881394232506386 2.6790847122153525 4.393450312065859 1.6342286426995343 2.7666285191006534 +4.640830053661054 4.836515089602296 1.4916890681202286 4.587815862420148 3.102304588475029 +1.9302866837875552 1.8414746078244528 1.5852202553035966 3.067096553838437 1.4845352636418563 +4.163902829794477 4.0782185206089245 3.570823517219842 2.6949112079130915 0.8800932759859547 +2.211618711838861 3.1865800252940994 4.392729977550463 2.5010210510795563 2.1281710986723024 +3.204151285576053 1.1949685187488628 3.084735792588637 3.0545162401889137 2.0094100158660013 +3.191710203316113 2.4302220011509714 1.8075645834697918 2.7752322639169718 1.2313590141866526 +1.663205313068246 1.7850277769725476 2.7753012342975043 1.327986044426419 1.45243312119467 +3.3052985602693723 1.1992547652082237 1.2725305597636591 3.3050332075886506 2.926856245211091 +2.622955188488462 1.4959975227644544 4.339126511187348 4.495421899778133 1.137744184265008 +2.152757541951826 1.4648806707712527 3.8735372597322075 1.8007485734874304 2.183947693450904 +3.2649749295482935 1.8868891406613275 3.6697822879470703 3.5133616328044495 1.3869347002968302 +2.527129543686999 2.5914044336142066 1.6536499508875262 3.853042588879374 2.200331619899122 +2.886658371690898 3.092172680726284 4.948549272405401 4.005336277980033 0.965342884197714 +1.0340790275976968 1.885685820151692 2.781898564443422 1.3040459858466522 1.7056618578104001 +1.305804925044319 4.260830714052123 1.2716941515990565 1.2099230311818108 2.955671342524198 +4.4492495193167025 2.534339808691177 3.5546119665839995 1.7403173703504078 2.6379052450325706 +3.2232496353381177 4.127964012353532 2.9798830776702503 4.68292818171711 1.9284373804706154 +4.565709802362369 1.4901458924345032 2.162489071086923 1.085653750841932 3.2586297229016234 +2.8087795340017974 1.0659981754101988 3.5763892656937943 3.7801515374029173 1.7546526514459893 +2.1908947883197953 1.3337855239258776 3.105951719291819 4.9009655622256165 1.9891483070484821 +2.830001639965015 1.5739877658783237 2.6684089779610414 2.3869979150199985 1.2871530749075133 +4.849272478414046 4.806702536533825 2.300731241183232 4.386554343052701 2.0862574654735355 +4.864310184288379 1.213032806943902 4.424211215817334 4.029497931250055 3.672550212498319 +4.8094760092434825 4.526320058394079 3.3769614730159097 4.310925431907123 0.9759436300366826 +2.6198076730772044 2.3890359924376012 1.7401352536645138 3.3003967630555096 1.5772354124455534 +2.473773302780003 3.753598302062698 3.240533680409996 3.6626545901260985 1.3476416776014688 +1.2649768292428876 1.1849975815004674 2.825967231385449 2.32124982180523 0.5110150130894492 +3.8306803243806837 2.2828039963022655 4.395847943154578 3.5364487236239843 1.7704485718470675 +1.8598323689260696 4.434422546735159 4.51124913224639 3.549443521489159 2.748378543169614 +4.882377625509458 1.9312645229400314 4.005972241327138 3.9190201483715055 2.95239381022016 +1.0656963714970216 3.008073206329546 2.7289426860740353 2.8266898552606894 1.9448347687086478 +1.9079236311226646 3.72917190455344 1.0870042167528475 1.89381772488212 1.9919571557577347 +1.18559150967577 3.3099448668046567 4.564516496121256 2.0579254092149046 3.285707848075227 +4.339794454606708 4.238064787685863 2.8389280864518245 2.893040305408686 0.11522611410726938 +2.974860400491055 3.979237129873502 2.684277151420642 1.6224852916648898 1.4615657932397572 +1.4758048787665792 4.32970519661797 4.470956022484096 2.209327034970139 3.6413888423780936 +3.755796551662257 4.989895947612785 3.139296752925284 3.3145614444068245 1.246482663804667 +2.764790847419019 1.4071434154838443 4.09216055330795 4.594004843853129 1.447430219870018 +3.54010981637575 4.958124472005768 2.2517048827823287 1.411381417190821 1.6483049142695776 +2.422236184129565 3.978071167010039 1.5833175576693126 4.57480532160281 3.3718869399371205 +4.1909615949352785 4.030991329297965 3.205980442283153 1.0968228667920719 2.1152153942659098 +2.8661523055696687 3.611387313395448 3.541709002384911 4.808474036439598 1.4697172749861322 +3.915012358908873 2.84729433576092 3.635248896732569 2.089839261969216 1.8783803438532813 +4.222181502067702 2.148836301718116 3.2588218761372056 1.5989928043944501 2.6558977516491638 +3.5149005055906466 4.967472911825233 4.587989029089682 3.736580704961439 1.6837050602017563 +1.2660504185929025 1.7384573801367589 2.7318587692313074 3.8093284700917547 1.176481743839402 +2.1510710374759263 4.2009405014181915 4.875928421537941 2.1901571595605023 3.378658327038535 +2.0354755424830127 2.7451496998683957 2.615629702067412 4.8415087258903355 2.3362737079279783 +4.824534758310456 4.72475078512109 3.70310059760164 3.015078640541293 0.6952201483721584 +4.469003003807039 1.9756696574797599 4.0442206012588855 3.8871537434920294 2.498275640059828 +4.405320717347928 4.76489036043119 2.7620486533339603 3.465206186985394 0.7897599922494121 +2.7487602916086926 4.660210641962597 1.8401936363922133 1.9911563008766677 1.9174024533040293 +3.801175314865023 4.183342757573657 3.206529708998796 1.6557578202481755 1.597167932687613 +3.8792332664314375 1.901995473818101 2.7389011674943573 2.973831885295139 1.9911458336105996 +1.743741620872282 4.063905357659639 1.9502971440328634 4.943291034587787 3.786974015543567 +3.8981781292975395 3.644002376696251 3.1628276346801227 3.8920893297194517 0.7722874678913717 +1.9012839455596788 3.097754959765664 2.602340203092156 1.034207106606189 1.9724564117185872 +4.766377373543516 1.913555555599196 1.6896266316841233 2.1051494528517525 2.882924130089143 +4.443881400690808 3.006254264551761 1.3116173360991796 4.226796518803408 3.25039096876598 +1.2083490353935709 3.0716861993483886 3.4896923639626607 3.550404336623073 1.864325972087366 +4.411301743799447 4.769539893583522 1.5335195061888829 4.1054284785074175 2.596738403045886 +4.417681466372214 1.9149387964698223 2.7737840452157267 3.5506027952044845 2.6205282372232217 +4.239676684430714 2.4136982633468764 4.147000076344257 4.085189520476925 1.8270242853012253 +4.140220855271384 3.8186807551765463 2.0934079180468803 2.5029769381797484 0.5207060766128967 +1.4008195389998197 1.2473139032124156 3.968446595730762 1.7660539161944189 2.207735830006337 +4.843357819370627 3.9395476203150577 2.3593927576852827 1.7488137196955167 1.0907243636911093 +4.3457982170357035 4.653460018374513 3.609478789755619 4.894912832380456 1.3217399373333139 +3.397932891922843 4.449676732346085 4.9032271798989475 2.734648003177692 2.4101661253069815 +2.163491104553227 2.0924417260985355 3.601512771228009 2.7361956293267635 0.8682291000922154 +4.228324208204967 3.272293624456536 2.7117223402882904 4.161262315479359 1.7364217853791424 +4.409019852701299 3.298849250991965 3.574925130097362 4.979477997335209 1.7903205081118077 +2.9008039503793457 2.7561758598666812 1.1585147638269846 2.79932760883239 1.6471745738992187 +2.3534481431028036 3.1211367203696114 1.2570033514194083 1.7140908175117442 0.8934622002774644 +2.2887476301422973 1.4621349221277513 4.257174858019676 3.7220832027638013 0.9846886048775078 +1.3855071902413343 3.9573736626414036 3.332279628206028 1.885960460710078 2.9506501463443193 +1.7850519220541265 1.792118702197183 3.120093313467696 3.8239416476336 0.7038838092254349 +3.455568976131027 1.3797955074708756 1.9854351580084 2.0712297787305207 2.0775457179417853 +2.2598977399028324 2.7737462834560063 2.7615627180248 2.4712345474595274 0.5901955373734167 +4.660325790600864 4.1905336448551775 4.885718831568358 2.985522411665712 1.9574092812733797 +3.877293371292554 3.372155821872535 4.942353724272596 2.474295866432946 2.5192208187211587 +3.8465628699486643 1.3381448944691043 1.3778674915469553 1.1037482037848525 2.523351367454041 +2.3122951611107307 1.7908279326799752 4.026027088232191 2.3722677597312263 1.7340265242871047 +3.9108768017783544 2.504921224903725 2.4841140707541514 4.984455256335886 2.8685217671234686 +2.960945201165968 3.8488883145481902 1.4654849329282849 3.9468942776882576 2.6354952682304384 +2.8297247826724914 3.318172761082341 3.6336338466578026 2.7788388012317 0.9845079975793399 +3.2817382655680385 4.835374231186278 4.131207382528066 4.4251717520564515 1.5812019998136673 +4.456008893952733 1.2418789155058017 3.6255553000841343 2.9497895519145563 3.284401142484039 +1.6803531860287335 3.2856594604451246 3.2434229552822975 3.5050871929978396 1.626492055922773 +1.8377258834219372 4.573946989599975 3.425705820045617 3.5430467637439005 2.73873599292852 +3.933014088613921 4.1604840390407745 2.4525193837533594 3.4108191215505874 0.9849268834839625 +3.9154623900526158 2.68836710543636 4.747097685072406 3.1185141995030894 2.0391289824325862 +3.184758244445651 1.082930788010609 3.135934168740986 3.4432035143387067 2.1241688038779425 +3.917623183291182 3.8203622627785045 2.2247039947994307 4.685549084531093 2.4627663799709887 +1.9474085460192287 3.922519892987642 2.3603732848370895 1.8692849394598365 2.035247551500492 +4.719684438121991 1.9243357532956775 1.5820200384064171 4.340503935448904 3.9272391931231927 +3.332209680482525 3.0861566932490927 2.0926780236567315 1.4461763042770408 0.6917416755461478 +1.177797211722916 3.651374334043087 4.649008299010379 3.0268492137199683 2.958037166442633 +2.907491822654571 1.5972499486186815 2.3355884416579404 4.3439752596408905 2.39798902814937 +4.479897089341641 1.635789917330229 1.3855795671717246 4.259136682992717 4.043052819809829 +1.405303154494399 2.4495572203453864 1.6522853637477959 3.190308865166599 1.8590273922034808 +2.6702568147178662 2.345107897334261 2.305166693844899 3.1707416026685897 0.9246305971905054 +4.929889543523665 3.787588684725044 4.740242773137245 3.881432373593427 1.4291278999364192 +4.725211585388135 2.2043641049948417 3.672138329651227 1.0573693089377314 3.632036488127319 +1.1360988351874326 1.7081208990568784 3.2064707826186054 4.1283483336303615 1.0849273987750947 +4.3123876833748085 1.3896725411110022 3.2440081965573366 2.131031987607882 3.1274558101603356 +4.0639262676517705 2.953616507383622 1.9497020565226753 4.424224904944319 2.712204102037212 +1.488778259588948 2.707429232789894 1.0260704702922396 4.691709763067831 3.8629032629906677 +4.555356559599563 4.147079685978841 4.1026937145904565 3.121098786474005 1.0631174010604159 +1.2174560692871048 3.4033559873399892 2.0177881412863923 3.9709639541613093 2.931391172761356 +3.4025320630970946 2.978331265350721 4.0905015981702055 4.5604932445889474 0.6331180494284298 +3.178162431846631 2.5004115301048153 2.531400779453598 1.1895344059914383 1.5033135564613034 +1.6631008672006504 1.4578266008564404 1.2692102128639449 4.423111740082897 3.160574689485631 +1.9045192893430518 3.5317671671714397 1.6128157187376382 1.039708625053414 1.7252209704058694 +2.0826307217265194 1.7148946082996348 4.476733273850009 2.788021291693779 1.7282875940642324 +3.4590449749209236 4.347920607490211 3.121524196545771 1.1943490183553127 2.1222874587597405 +2.990816268289601 4.72379687925555 2.58850760540424 2.593324361642438 1.7329873049519358 +2.131080216296616 1.5991592951113724 1.5734415675769995 4.57903534594011 3.0522997603331157 +3.7754115179980667 2.768873168513349 4.1273221254127055 4.301390207270918 1.021478901448883 +3.4106434774557726 4.8014908416008035 2.544212232287245 3.512285031451068 1.69458588889146 +2.5144476798996442 2.229638347874734 4.307237731682762 1.2125086968857683 3.1078069686555514 +3.3881426564504227 4.70516082577811 1.6757511477882532 2.0467038064005583 1.3682626696913098 +2.5212206506575705 4.080696965717108 2.7835190071287497 1.744149998859621 1.8741009344701862 +2.3190307665651693 4.007984744474106 1.5395506431833543 3.0248460037536224 2.2491482493659647 +3.8227300728601294 4.40007027451124 2.522475862807836 3.7172378451454025 1.326943066933068 +2.9932408671579185 2.2523499390042625 3.29728044231555 4.187713048068016 1.158356418727635 +3.5856126066432634 3.0691341571715527 2.716717820280724 2.3034081277251404 0.6614944374135684 +4.730142454978129 4.820557758345436 1.4066640907564216 4.485909796218687 3.0805728431073995 +3.361698397323813 4.168798834311318 1.6330542102619874 1.9413582280408113 0.8639806032336526 +3.996624003162178 3.493206338467687 4.703142743624834 3.9176094561360246 0.9330015492374232 +3.333885015111642 4.245119105300024 4.081399162896988 4.33837024524672 0.9467743682026042 +1.2446828199734647 4.876595761235677 4.5863149529270935 2.301554470809622 4.290795039797822 +1.0171391599060966 1.8687739315903609 4.7677612342290665 2.3122012760700557 2.5990491516044076 +1.1110805360356792 3.17904486969238 2.6514162848435645 4.624867401120055 2.858493623153483 +4.928839957043111 1.5648742536032745 3.244926173318496 3.998596139433015 3.4473589415293757 +2.4077866024308143 3.6124872677546023 2.033853359955163 1.1368498617819611 1.5019716937301244 +3.1896231023409234 3.8920419316510673 3.2355034739035684 3.3943082645951312 0.7201466332046719 +1.8155482179361688 1.797531764110611 2.611612906697621 2.1326532405060687 0.47929839812664893 +4.896970593553772 4.004669283965482 4.631965092415779 2.386542865922557 2.4162207271527896 +2.3918270022623713 4.6585105887130025 3.6128125274185408 2.778092690965557 2.4154940874390047 +1.796254794248755 3.7774855045868523 1.6901950458059187 4.008491428887446 3.0495529586147034 +1.6368693386580047 2.9790817776224285 4.07671559655607 4.87803228473881 1.5632154893267214 +3.196987385469579 3.4819866104368975 4.259770867070916 3.8266438445451354 0.5184819918512313 +1.604672084914454 2.2300494108949236 1.164540181937682 1.4978549326380781 0.7086575497974672 +2.773952007543577 1.538022834037844 3.5095399402503635 2.0999242962438776 1.8747098937570006 +3.8366310515333333 1.7405231798805159 3.8637094060024655 4.671680094745787 2.2464382572136854 +1.7744639910230284 1.7585528449820056 4.535789173261023 2.239327504116754 2.296516789056248 +1.1312121839395388 2.7319661696662583 2.3610992687476133 1.7496588572569607 1.7135555723768743 +4.565188134515431 1.289877913542028 3.2830557046222073 1.5348656820810032 3.712657457741753 +4.1022026226453505 3.2831668998744754 2.2175976639627764 3.0620292329090435 1.176386071750199 +1.5900854505363848 3.7639680993166142 2.021814654979226 1.8279819920198577 2.182507015314651 +3.260683641121157 2.4345624163067194 4.4934205011936355 3.769396419943137 1.0984931262049547 +3.5998568932068187 2.11070578172051 1.201057385749606 4.600528719713498 3.7113308102732034 +2.006484355183332 4.410192646907246 3.362908415822636 3.7026476073393986 2.4275988692440027 +4.128565367345696 1.0632569989928484 3.5629480011074315 3.8002555625126075 3.07448048811406 +4.7290238631937935 3.1315795147523873 2.3452074465798733 1.576188519193885 1.7729124504738762 +3.390585697405234 4.74737868767653 4.939541835584965 2.153306560094965 3.0990311758409534 +1.8327707982231014 2.651195225907748 1.9763844929610097 2.353048315030409 0.9009407187417325 +1.9391588014251027 3.294614859615554 2.2227767336516866 4.112663840135824 2.3257115902321557 +4.478431110758242 3.8710878818972208 1.1205188306816711 2.9823880709994457 1.9584235664648284 +2.737593846434784 4.322691970138723 2.202458406176812 2.5002085578722606 1.6128208873289094 +3.0765733697126225 3.119635309889559 3.611638780527319 2.6768459991785356 0.9357840962281825 +2.404265872849242 2.4445517853659093 4.056989831181914 3.3887293781387875 0.6694736647910099 +2.0116443166826725 1.9505340391464054 2.7467720723514217 1.0100603126324028 1.737786581363457 +4.771612445665174 4.248380373082309 4.207235462211145 3.8139077668831827 0.6545826744509565 +1.8590610552432647 2.877194171421383 1.1940691715934286 4.217888775863303 3.190623769958687 +3.6484229185266717 4.924457789141272 1.3698596511348446 4.533684631921695 3.411459145303565 +2.0817857524808425 2.3434502064520975 4.288903419711765 3.6893057465054526 0.6542061266806503 +4.705683201181754 2.0488696878841246 2.3139851924391737 4.847599608694999 3.671220512949371 +4.009928288446238 4.500391400019527 2.222406117606332 3.7460601488695477 1.6006485156956856 +2.0226005259199455 2.9547136184336114 1.7036436022028463 1.3997836201622653 0.9803905884498748 +2.2700802363562422 4.551133960422716 3.515217114526356 1.9169913047145637 2.7852346097278926 +3.216146933631745 2.3425232811375145 3.8875168952368386 1.9803977682154725 2.0976943654517686 +2.8497010082306127 2.9685854952916326 3.3444828997071987 3.9351850471250356 0.6025467187096829 +4.577047904432287 3.0465141710494867 2.163552255747737 4.06861781314538 2.443728357859254 +2.9565237368047814 2.9082489072565103 4.659888228305333 2.552872094476381 2.107569084842397 +1.2686437862068725 3.2149298544236453 1.7319399130992417 2.7418215425456607 2.19269021177823 +2.7956167781249133 3.5142900631830045 2.437784189226308 1.9487430914409454 0.8692827422532333 +1.6462469184067916 3.331269688529883 4.888627836827791 4.794079096099502 1.6876733096801058 +2.243807492073523 2.9018050970895017 3.025435174772874 1.9412409361044478 1.2682420886284178 +4.471965546329471 2.20091494794339 1.717451656280546 4.057762612096758 3.2610927908207654 +3.104184132975014 2.048918989683552 4.458287941977747 3.658021204747386 1.3243909443073363 +2.9598987190488413 1.4071072465974872 2.6877331942770932 1.19278400429697 2.155466176385023 +2.237838700544661 1.573607947007821 4.56864614334348 2.9321917936693036 1.7661215508881745 +1.8294599331140002 3.159351575977293 4.991136989862648 3.9791096430189037 1.6711705874976428 +1.6652031516114985 2.0251322095339046 4.579605249308633 4.764351970547226 0.40457419312818405 +2.8769917780309493 3.981764522454061 4.122790861411268 2.6384119512932465 1.850379303176335 +1.9731758732443097 1.037501777943405 3.9524556447961277 1.275808742745391 2.835476088926685 +4.527050499468592 3.0266510104152617 4.830616266629167 2.1631311694665354 3.0605024702385433 +3.808410116674799 4.500000278480662 3.9223103486617537 3.65960506721618 0.7398047153175338 +2.0403007013894903 2.1358267637721373 3.5445799304725454 3.07025733201818 0.4838462111031094 +1.7542642603616247 4.005874400510038 2.3010288984944522 4.221110858408389 2.9591321288523265 +4.470560980053673 1.3835180005925696 4.736569741193568 4.017779634195878 3.1696204149642013 +3.8588489949738904 1.986695223766071 3.508819260008298 2.2478915622930815 2.2571881627177333 +4.836347881523281 4.656393954798666 3.822886572273864 3.1177124556515126 0.7277732823467219 +1.116975385606528 4.21929813013414 2.290253366234893 2.24225209123611 3.102694076704122 +2.2073797013556073 2.2270959047778303 4.345857087928345 3.059012015514048 1.2869961029755856 +1.3999334856167884 3.814158889183034 2.8333894598645806 2.3347614877676865 2.4651803491391986 +3.9783499685562256 2.0648353114309055 3.05815922386045 4.4915420359032385 2.390841824314842 +1.7932702367443998 2.2777184915641366 2.0270253802932228 4.137216852536156 2.1650861786831226 +3.9439832819867524 3.7773229395508365 4.722843990052686 2.6116905897009914 2.1177214995266445 +3.731996282767636 1.47052506729143 1.828863057385445 1.8127920203077958 2.2615283187836006 +1.8336629807165319 4.316507660427394 4.144542580017294 1.2296780096110234 3.828962413941702 +2.8427776661530944 2.528116090030016 2.802642770852576 2.63194083444026 0.3579819249391987 +4.795624633272421 1.5893156997234166 3.164986238987351 4.671604408793015 3.5426424159015433 +3.8514630232412266 1.4566867937786223 2.8536958025339274 4.200746489940901 2.7476351183595553 +1.9790001986243424 4.571217941766534 2.260093468028208 1.3172869630058095 2.7583467754750757 +1.0044822991325417 4.603319163471122 4.327006401940887 1.7011573237755528 4.4549646639927545 +4.31741260720921 2.123273229757633 2.6344182145108572 4.2193665133532345 2.7067154851751485 +4.871622014104117 3.5656291423253674 4.030236243518697 3.4396863920117546 1.433306146031537 +4.696065954144423 1.4429320377147636 2.5344159247510034 1.4490629474312624 3.4294126849362705 +2.899806764548384 4.966468426168467 2.138696744027742 2.3340823590395554 2.0758771548826838 +2.49659933065197 1.9040930687808642 4.166335128746996 4.8148851929245975 0.878453673281205 +4.386091483380257 1.9093490083363056 1.9702588558029603 2.6698711699329705 2.5736570629687994 +3.859220199880411 1.4136166697707861 2.383841565640673 2.5019676221359974 2.448454694640641 +3.5293432463810945 3.58071863497718 3.516008533601433 4.395971021454709 0.8814609523866195 +2.825756622433679 3.0067613682005128 3.5183527339137513 2.249217264691361 1.2819779862495506 +1.937108574593314 2.234182532366269 2.5058302365896257 1.9792691462026242 0.6045821021965795 +2.3323834820022222 1.4682705856516942 1.2326339132214552 1.5657340635774468 0.926092224244693 +4.2388746896142795 1.6216671942327916 1.8632951033543272 4.666346851436234 3.834954260001816 +3.7848486293853782 2.71693155894458 2.9531167763275117 1.1979386579850626 2.054530870161604 +3.45915446653803 1.98441689087299 1.24362696852325 2.1578364144690902 1.7351166612464417 +1.4949479312899516 4.144565970423933 3.5910788359660226 1.6928242105310614 3.2594242399984434 +1.9192600505789845 3.9000602224694396 2.4914823344294583 4.981638391283688 3.181893541344378 +2.655852661390401 2.498185476129363 4.115384832992378 3.7580945965890518 0.3905320144844507 +1.287419018574052 2.5672357359614812 1.155166076986283 2.532285855391256 1.8799972644071843 +1.3903625551999799 4.394448437974022 3.0640240641304692 2.568630245525993 3.044658770140559 +1.2050936136408246 1.0747744195582194 1.3811015889985785 2.003818980153267 0.6362075460043215 +3.952986084180196 3.022425540628552 1.517547202487881 2.7031991893812153 1.5072204746616342 +3.22934110630649 1.7600647232689393 1.9884244020753377 1.1381566375594452 1.6975654217516216 +2.7796021950949417 4.024608701101594 2.203974978739128 4.879092600569978 2.9506432333694352 +4.2580735363160445 4.729202611769793 4.311608059769279 2.9780838054505048 1.4143017862515577 +3.909895383423196 2.5565738514522884 2.1723947713840466 3.3302747767212946 1.7810573476606162 +4.419828272746438 3.9617953578288905 3.0816972307072925 3.082825142670809 0.4580343036643244 +2.8896690575780934 2.7205481931039888 4.218246694980339 3.73004947376127 0.5166608109838493 +2.5677712911313324 1.7445856473239179 2.009960183526939 1.1256754753505778 1.2081366020799056 +4.6331998263735645 3.445535547593464 2.865184658394415 1.12230218154752 2.1090722527192436 +1.0331416129751516 4.480389939463838 4.258153448051177 4.432869730487644 3.451673044166766 +3.8326362582887805 2.9291847212418562 2.389176889122591 4.953597079169807 2.718910736106327 +4.2388762326931015 2.868542006836274 2.7568000650292315 3.278172615832258 1.4661668483789578 +2.7045096273209857 3.519941033802562 4.04496910596912 4.651280983547739 1.0161409703232285 +4.074406244768722 3.219295741946831 2.726462393396207 3.8352903410806847 1.4002547588215792 +4.346414651423891 3.211095757792574 2.910636919621108 3.149496962373274 1.160173741411089 +2.5454595984377675 3.1212168913107163 4.561584888334153 3.4620767508689605 1.241134402330611 +4.57717510763917 2.610537870400542 3.3612177807851165 1.862415560142333 2.47266457884957 +4.040602624900181 4.411201639076722 1.728404231625074 1.7012742866583341 0.3715907200436019 +2.3713927316251935 1.6017477240481837 4.712957625951363 3.412593319546636 1.511059484950762 +2.5313367908506987 3.596929034899003 3.665845488714207 1.447101628466756 2.4613636764935123 +3.169494539889595 1.838636799517745 2.6491614677040594 3.3429009324625 1.5008186999338042 +3.941350056743016 1.8071624533349233 1.6653624317001499 2.240424981890895 2.210306237418847 +4.286213254314646 2.470805521335828 4.581811079716102 2.2717205412331176 2.938064589648753 +2.7052467155675552 2.385302081424714 2.6761507282026384 2.6005928692441906 0.3287454318575108 +1.302671023177739 2.9381565994008736 2.614116851886658 1.4349057618267396 2.0162717735846574 +3.14023294269901 1.7776452117144053 3.9523572034060437 4.257951520326573 1.3964358958304885 +4.189125242893448 4.078175494853356 2.577113320957371 1.528463853159574 1.0545025144127267 +4.1879933964361395 1.8456253573822736 1.088527324907501 4.449838145243023 4.096962101519334 +1.211949763639915 2.864039873022659 1.7473828243996903 4.141441974548309 2.9087662236643586 +1.9573476203699882 3.902171701869329 4.566066904638653 3.7137209766886925 2.123401584456561 +2.654833851580151 2.444019656087176 2.525078847189239 3.27311539176382 0.777175203567657 +4.385187031185415 4.475037086257801 2.6774738927417623 3.192473905517957 0.5227791556250035 +3.6906953480591342 4.492495880980419 3.258801748894511 3.7230240416396843 0.9264914633575648 +2.6163407645073 2.1091889632420364 1.0890399132626083 2.885585499402728 1.8667562756305782 +2.5806671849358067 2.2698370387645643 2.846088103640558 4.105892315885376 1.2975831506915554 +4.4101929607947525 2.572211720430561 3.052028471374865 3.3759158270728165 1.866300634708059 +4.0477938178895565 1.2314119361439202 2.3545459511201523 2.740656565996368 2.84272550745674 +1.2074216600885856 4.9136316372285975 2.3403252507087626 4.019774035153333 4.068972918836462 +1.7434332405920667 4.76506744934632 4.267095637183601 1.9026515157634512 3.83677850479178 +4.012180496328278 2.4696972802561112 2.903047747869655 4.857274283993583 2.4896296564660494 +2.9200340488135197 1.5927899008623272 2.1110299052100596 3.884294103331983 2.2149589035943027 +4.975620709955168 4.723701785204751 3.954348538655772 3.3788928244768446 0.6281818396201735 +2.302886331309634 2.4819868275167596 1.2676102424355915 4.561688675681989 3.298943726728402 +4.752853077237756 4.73389341576007 1.793324318435514 4.4778095193009495 2.684552153046926 +2.269968000575302 2.074502373374479 1.1014048021296778 4.473586194502532 3.377841641415822 +3.963239692924064 1.045912116330912 2.0310341098413827 4.096499221661977 3.5744854618950312 +2.6579669401286155 1.613847730630896 2.629833065625344 1.414708444581838 1.6020963667358672 +4.207398309697879 2.448356116950762 2.5381698531273473 4.807111551908884 2.870945117610964 +4.921074797784698 4.064763265050669 4.353285663275778 3.8771205499048595 0.9797972526420157 +3.5216903805303006 3.795926424645339 1.652179802468027 2.9945563879896637 1.370102297366366 +3.1717661341203716 1.9737353532124078 1.005204709213221 1.3232318460114927 1.2395237035825706 +3.8575990434463407 1.0196514043004288 4.347500318166144 4.8169809567713955 2.8765185333244507 +3.9345676875513864 4.786260818562518 3.467180249941348 1.0001060045037269 2.6099495247826443 +4.672155968203503 4.267906299090976 3.904038552303374 2.9455694066404643 1.0402311753477569 +2.636549029033021 3.409601199979389 4.348829643018562 3.33802940389405 1.2725277138117912 +3.548847390428676 3.657318585835779 1.8097651398587682 2.4792316433857238 0.6781971686594196 +1.6139496321039282 1.8173418071405876 3.8015307546358437 3.672725202500733 0.240747268160978 +2.972633549871354 1.852123104763781 4.94111006090684 2.870429816012909 2.354412948951216 +3.674714389275722 4.958704372542728 1.8592942771710996 1.5494717764659018 1.3208407394811945 +1.9178979145908133 1.0791784888040996 3.4360038933246515 4.698092543208296 1.5153606948040836 +2.562708629640263 2.8105443375349166 4.535783093391711 2.115308158616396 2.4331299693981014 +3.9066203593380515 2.8597398516680643 4.225585258225189 1.10280577704129 3.293586265067693 +1.9837302333392497 1.637292853258466 2.2846030139171587 1.8485262240301896 0.5569396960132768 +3.1997720548033803 2.856232119285274 3.0772444870766713 1.3063634257585526 1.8038956235411656 +1.1578362511218434 2.2839874117745493 4.7131219651724 3.0019335649858063 2.048507304739866 +3.4804062624079464 4.662802944331445 2.451890103562532 1.0413771600348656 1.8405457552809659 +1.9387783774849705 3.8746832941057368 4.910561580731348 3.015013738619181 2.7093965136045606 +4.975435137183474 1.1147322632777739 3.0380712492248443 2.646889107632424 3.8804703514502683 +3.6039561254326724 2.7730437991449954 3.041636853259174 3.763507443114788 1.1006872591591543 +1.9331516186655575 3.8682965656470816 4.7527186885754915 1.2944390971039694 3.962888302566269 +1.416487201591608 3.6261581613382616 3.594352507215001 1.9208331744529779 2.77187891284521 +3.407274537386203 2.7747897461780435 3.184852821006931 1.4918763762522826 1.8072648543043486 +4.372726504729096 2.1963921718937858 2.542841816721786 3.3203799981065516 2.3110596599371562 +4.293757179846477 1.4121406642243666 3.0985470797275796 1.594532022957432 3.2505038123493133 +1.5633189292493266 1.5483447168444093 3.6721532339673875 3.7460998094533178 0.07544748546667389 +2.962838980628611 4.615132085919208 1.5407606717810252 4.080801583637182 3.030161767908423 +4.808478602098352 3.4032434087850585 2.798846944429649 3.576731274713988 1.6061724626664982 +2.4679295609241807 3.250433087797367 1.0908796480398042 1.0914836319917933 0.7825037599689789 +4.124399762667679 4.525645687805603 3.1559083480773595 2.0892638228627294 1.139617846302054 +4.127446030775369 3.692347709849743 4.3938843253591005 1.6271797869372913 2.800707866200282 +2.830513090917371 4.180297208394329 3.6280128493257986 4.9796720197173485 1.910209327978644 +4.9711127522177865 4.496428732878606 2.522123537346968 4.510135557597781 2.0438974315942864 +2.8426223799118535 3.6403477309144803 3.8546142610950485 4.726775133390348 1.1819603727685464 +2.03876333160613 3.504018181853602 3.90020471882699 3.6888721126364215 1.4804165787416186 +1.9967697236109259 3.144517675208504 4.51207332697903 3.422142557119447 1.5828058767527806 +2.329659267000985 1.2971785190063034 3.879658327208232 4.957374368429674 1.4924772562708195 +4.970859015918231 2.4039665959319065 2.2721823319529517 3.3179960758844365 2.7717617290775984 +4.843089217584378 4.642558383892438 3.093708086751928 2.5192296768920532 0.6084719045743321 +1.5857466559883533 3.1363437205625053 1.6587969779008431 3.1988267993521275 2.1854160033332906 +3.707122577367233 1.2830257413744683 3.6266586278089203 2.735372492061562 2.582757527536333 +4.122640681475609 3.313434970934337 2.137353125147929 3.3029356045895346 1.4189419996440469 +1.5954963560101696 4.192052164477183 2.1989477863253963 3.846223390932397 3.07499902179125 +3.0287377332013077 2.573435649091275 4.870334122479395 3.2435951404918435 1.689254185524735 +3.5766852883963556 3.6166555833548895 4.9673434588140655 4.0954800010150745 0.8727791894427165 +3.4537118709324512 4.269646717104111 3.3557530946193626 3.669476609538214 0.8741693869097734 +4.653747462279073 4.167896816762031 2.258660834211942 2.878047487023509 0.7872043415978108 +2.1570130840677564 3.7402100270482785 4.827684390910937 4.419035657250136 1.6350860368144078 +3.097570833646493 4.563140126666106 2.0813434756094433 2.6288148979838573 1.5644865966056316 +3.509809709642228 4.0321162213480894 2.7112918811700415 2.302150095368434 0.66347652035266 +1.3306193282933676 2.403193982263796 1.1739427000821756 1.1178311869379574 1.0740413819993706 +2.1723358667979666 4.748361380408145 2.479360595910893 3.786048727042228 2.8884842597476768 +3.115540304375322 1.205977558552981 2.0289410397064973 3.4588980038809694 2.385625033324313 +2.305455063546745 3.155165655736772 2.731011817053772 4.803864252397618 2.24025117100535 +3.175707409014857 3.87844148605129 2.2163178381380866 2.8758491330050138 0.9637513745448526 +4.951863632641592 4.049764745175521 4.100236103841582 1.6857169034309938 2.5775347469857532 +4.593747194751018 4.224061631677172 3.281362384977185 3.9073483214580658 0.7269978048227325 +3.378395851250564 3.4143756834683323 2.891606606144992 4.328744352471002 1.437588066951525 +1.7121179783985014 4.086102351322184 4.309518405441974 4.044228828423611 2.3887612611059383 +3.6573908725682793 3.951990820614714 1.3116628987385246 2.101665943570577 0.8431452663882277 +4.238340537574141 4.848611507490219 3.291501929879288 1.2178039676045858 2.161632229465633 +3.641855760982598 1.0079461211107188 4.131227806213117 1.5308796592378693 3.701255256867272 +4.170667251919697 2.439533428194122 1.0338569410242266 2.8523561979229974 2.510729747103043 +1.485191479106848 4.485601092567435 1.4634539560503144 1.9430729709701406 3.0385016452224236 +3.716754428400298 3.6822696261554873 2.0118940433740633 3.275887115739909 1.2644633994603063 +1.1880498478540926 1.3407526541244517 4.4085608267081655 3.632288827097563 0.7911487625107471 +3.7447177045345486 4.474368902696323 2.0593994038689933 1.1485925889590343 1.1670303873787253 +4.173302895066839 3.232731743462979 2.2353514565096613 4.8707982346616845 2.798259068010196 +3.3312905912062654 2.5440870247195875 4.879326989371195 3.5165979872586353 1.57375976193574 +1.7691573468309594 2.33129148043887 1.3049692429126916 1.977350815902415 0.8764084457963939 +2.948119389861332 1.81184818505578 4.3520214782222535 1.4136832782420363 3.150387853635365 +1.2296814311485669 4.313912809605776 1.6341676501579792 2.229897478002983 3.1412381672907737 +4.852471932203571 3.8599813098610882 2.110532487572416 1.6500982460654368 1.0940920099287241 +2.2651894567671955 3.1263881061389505 3.6825097427398217 3.5728031995891847 0.8681581879414589 +1.533282316540368 1.765791477813012 4.823106998815064 4.741110243347878 0.24654406904822077 +1.1671667864269244 1.7628628033000298 4.715573901828188 4.80239000556629 0.6019890201546435 +1.8557173534142648 4.505183195231576 3.6366622252723424 3.8745825891942465 2.660126941806621 +3.1689907161515936 2.2905594553346282 4.905811748082496 3.8157703657950925 1.3999398898093867 +2.7743837652537966 1.3492060068382452 1.8761600612025147 4.141189422958345 2.6760959722510695 +1.162725804382387 1.5216356596312361 4.623683776112772 3.7210807099443057 0.9713436977977808 +4.667968621574404 1.9710943797891383 3.0964385474093787 4.329818006987104 2.9655278732989663 +2.2534813985284057 4.394390694017635 3.8358235191028274 3.932690447246895 2.14309958081286 +4.311765160382545 1.5298362255097508 3.893374743575612 4.813442465973504 2.9301285317338763 +2.980305642031354 3.5439351294126578 3.0358164151543794 3.699879744337876 0.8710099334749176 +3.714181943792379 2.947248920764498 1.3879393691141875 4.726234873158991 3.4252595717896233 +1.4584400172063958 1.5248738185052049 3.7715405722304145 1.6313055926472209 2.1412657980237957 +4.28180964159268 1.8814404243421974 3.4753426385335433 3.480557843144757 2.4003748826970406 +4.838364451084446 2.507989044637858 2.10150155226677 3.2196845931195464 2.5847597272903067 +1.0513578563804913 4.89748184665339 4.660270592675225 3.7299301338405417 3.9570447455010482 +3.2357269884207214 3.883328163973142 1.8352176021597617 3.5039393268903902 1.7899775074466273 +3.8426516228725327 1.8424152125904172 1.5583235674128701 4.089050832612423 3.225759784584508 +1.5821680144874186 2.3959619818173343 3.2842118647881775 3.7639180658632805 0.9446579595877393 +3.0463835874097973 1.7294514154924303 4.4560151629600995 2.272775074021284 2.549675985567688 +2.325493541513745 1.3064019892285899 3.551143970477845 4.538509140613477 1.4189565078380426 +4.603882403344789 2.1452989203550206 2.097183506930008 3.914923090943028 3.057582368165726 +4.721086427993825 3.6753959152023805 2.624491072726025 2.751724150728412 1.053402536868027 +3.310468124842586 2.5830977308170553 3.7632749482670653 1.806522469998606 2.0875698674091394 +4.285437275793427 3.70337789059576 3.6230516744574413 3.3806810541214958 0.630505071747022 +1.3981106918926591 2.133767354681188 1.394829382254334 1.2646573221420314 0.747084661025132 +3.154844201867413 1.1098056844544022 1.634961008898283 3.754959533556855 2.94560287246216 +3.8776112847090065 4.311110967357401 3.3826149366066174 3.311439576742479 0.43930388879231197 +4.890480011340523 2.083480850907229 1.1146060031969882 4.009996386127134 4.032682699672464 +3.7849516811405874 1.2092209975587114 4.517801797799905 2.7320963053180045 3.1341877193660856 +1.2244759431544905 4.594231938321785 1.6298770043703699 3.0791222346147205 3.668183093079178 +2.1541396778655058 4.227772737827776 3.5603662965925817 2.318899965158938 2.416855957530733 +4.062184470906045 3.2261670100296054 2.712290345016484 1.2088850065086714 1.720218825249881 +2.0575256496597696 2.0549930532551786 4.986371617154662 4.402360049617226 0.5840170588793462 +3.836951663205355 3.5538385739838105 3.4622239946403837 3.742131928859453 0.3981224345943759 +2.9663943795570975 3.898293276515343 1.6898796417557729 3.634641840219086 2.1565100423424544 +1.8390969547889178 2.1543458277489194 4.189754500509351 3.4430190372129696 0.8105527151561536 +2.6641229829684145 1.190728939465505 3.834541198266374 1.0379613789779025 3.1609727447545946 +3.857680388660192 1.210531882361399 4.48770522235254 3.08606385013638 2.9953286548737736 +3.551992650521158 3.1801128636160696 1.6172981186732867 1.6088012066155386 0.37197684527815855 +1.5357188782151594 2.8446558354549394 3.2149974212841554 4.103606208906033 1.5820687518142051 +1.0787819394439024 1.544359568767756 2.9548776738487237 1.4501798025591572 1.5750803829615085 +4.9514819657822375 1.7391041630819988 1.5431096731929386 4.113676171338965 4.114265823773659 +3.948879347797871 1.7564966448609352 2.9617983945431696 2.653325648079086 2.213977721533837 +4.511639932188064 4.359102580044378 2.0451084064025014 1.0353225231296523 1.0212419761526328 +3.38277708694454 2.18785391189202 1.9140132354280763 1.6435707343765902 1.2251451100390427 +4.14784792838114 3.2167258537769134 4.369582226379651 2.7151206713636227 1.8984813285469346 +2.416746454623667 1.1490294479016367 4.548411420214929 2.3687730690950493 2.5214935555747218 +2.5321851001727462 2.142424569828876 4.076453812943703 3.2051863172210573 0.9544738446477964 +1.6490425620836908 1.606725599234148 1.365610824769358 3.910371977464564 2.545112973840541 +2.122886433892061 2.4456381680129176 1.1436069863901785 4.701793327605937 3.5727942455020285 +3.4934581807038607 2.233725616815433 3.4552132181486517 4.002375591176778 1.373431030295545 +4.507972160787187 3.3395951827972414 3.4322775647885275 3.8605231690657487 1.2443870219026232 +2.150172992915857 3.750550358574267 1.856389908897662 4.922757389068271 3.4588751402673674 +3.4631302488095597 3.173589318792575 3.9061310035616903 3.9117512539491717 0.28959547194236007 +1.5390353338175582 1.9862795253696581 1.2963450492015083 2.4374892305042795 1.2256579495920807 +2.321288620122456 2.8967697728458686 1.5416797352011549 2.4149133064121426 1.0458085039957186 +1.8318311747043254 2.239789701719131 2.0433907649186382 1.1559044053392151 0.9767610752909981 +1.2517884448790815 3.854751696569885 4.5103404789694945 3.023494192443209 2.9976873701921902 +1.1784297393992889 3.6491480760024415 1.8395800958092012 1.8012504441390491 2.471015633504613 +4.207989196134914 4.971768499845697 3.9054448061514013 2.161034523710851 1.904291484584555 +4.528343408444183 4.994436026459015 4.979285921824657 3.938815398164435 1.1400970305959468 +2.0817576148426813 3.9581868219403034 1.1108937615608734 1.5792275724182798 1.9339915014397637 +1.5612778953990367 4.597248659372003 4.110332172032459 1.6264128135152327 3.9226233389550957 +4.272399690911763 1.3549966996571379 3.744410227972699 1.3582487652906488 3.7689530030726544 +1.5024885591738566 3.0794833621023727 3.510486244358152 3.897809004069681 1.6238631496077816 +2.0073794200351585 1.2489600850539238 1.2474299500097787 1.572218712171777 0.8250379553087853 +1.0589445957734336 3.7048569396926743 2.568072204206845 3.5785243849335244 2.832289840612982 +3.30322857521249 3.6215272380556662 2.6484376016015707 3.4263568579738477 0.8405191301823834 +1.191897585983198 2.9203429626476582 2.4638820358989095 4.316235148278558 2.5335223450870368 +3.7003167709672584 2.228384576968599 3.9462860236626844 3.889866884327353 1.473013069532327 +1.402395112056706 2.491630582428658 4.2064305158541595 2.1385025624380907 2.337254785092113 +2.4717872615625835 2.5407439584846547 3.48217522615709 3.3048637742776688 0.19024819846187968 +3.274877876279478 4.151328768544403 3.034256974917775 1.8921419181855788 1.439650294122281 +3.5225781403433114 2.752383547742613 2.7238528754965214 2.8720174799178104 0.7843165562925933 +2.5999680837273766 2.841066490817676 2.6829795639246505 2.8391670172636343 0.2872681020962768 +3.24410264303007 4.71895795745352 1.9799294974949428 2.569145281625464 1.5881981736394353 +3.2088551296506287 1.6931683031117761 4.93243179570417 3.388691218279266 2.1634328107273393 +4.613096384555339 3.537576506437109 2.638365847776045 3.41086032608972 1.3241943691364078 +2.185403812505565 2.8362959342866993 4.649209500557489 1.2166902796328314 3.4936869860097604 +1.1719328765543544 4.115226257761118 2.804209687484519 1.2426111054567364 3.331901267931978 +1.3756281980205896 1.9532252470850868 1.5553892796012523 3.5273838249926954 2.0548432636436336 +3.8863983029085696 4.77759976928722 4.537618474611895 2.869228374038656 1.8914982372093923 +3.169796761495263 3.2149157856489 2.441663099940273 4.942973963561525 2.5017177624205074 +3.2841928306217403 1.914184642028399 1.520298718471473 1.0421847314858264 1.451039427915079 +1.9609720734228508 1.6576918172355675 1.2658238521027152 4.4910742478474255 3.239478203205639 +3.130324303225346 2.7348267161006765 1.5880266602505464 1.1684456660994722 0.5765991259742242 +3.2250397490307576 4.1239810381913244 4.500112354517943 2.7431668498191724 1.9735635150252648 +1.8365301958393014 2.628409866505173 3.7561834355706827 4.385775503977509 1.0116617939878303 +1.7112124419474135 2.684672859474334 1.3596309908669109 1.4011731801995353 0.9743464158020153 +4.1096949913511605 2.9268127898169007 1.4430908259793611 2.6252398154102137 1.6723296732160566 +1.7021720698050649 1.8871681020267346 2.8516182615941323 1.4287734137698878 1.4348208922781125 +4.513213444724982 3.456801665422172 2.9515914402871988 4.665678264687685 2.0134794483761365 +4.494416749078138 2.8730128867736133 4.343532594562628 3.6274200809864263 1.7725032064276942 +2.8069167913705013 2.617777602086396 4.171543638817205 1.68790375461924 2.4908313285531665 +4.623514617813614 3.0555580661573676 2.699532791227953 4.317308335271594 2.2529281965449863 +1.1857207853042926 4.96672652023803 3.4427126564656443 1.3330506714708932 4.329743417170792 +4.6208218110989545 1.2411029886076137 3.4732934672438205 3.7623012544023315 3.3920531865141084 +4.579750681548516 1.336854040929143 3.426585498424638 4.229485245785772 3.3408122703996685 +3.365001632376856 4.403124922154836 3.6943908719363803 1.261946876158703 2.6447086337391363 +2.4737663470184965 1.6591646651615917 2.6493872593949614 2.313869421784199 0.8809926897761978 +4.883454137812434 4.612284346290833 4.3091545235988375 3.055683500954783 1.2824674110643903 +3.7331803035009914 4.40806556221854 1.383632878456643 4.375665589409966 3.067202284794556 +2.7908032521321045 1.3097445555245746 1.8967553380195898 1.9930580667252205 1.4841863354555402 +3.316425912591638 1.3591207809312427 4.1851578072763065 3.392392353125149 2.1117576669020544 +4.576032805648978 1.9187612147524713 3.189884723159362 2.4992119963329733 2.7455638989773035 +4.324283193427931 3.046268894626646 4.111143127975342 3.208235787121808 1.5647882329912055 +1.5866604850397064 3.960571162663888 2.1878900361079694 2.297087692499728 2.3764208451996782 +4.806012166582813 1.2701198950864203 2.030123196566998 3.7087713435285514 3.9141274579304874 +3.9805257157766003 3.4821763451748664 4.819059380931285 4.354606356935575 0.6812258852083528 +3.00857174029011 3.0960920608895495 1.9894552206190808 3.413831334470319 1.427062409366803 +2.864206976756611 3.1390399101381425 1.007099550507912 2.190276789389301 1.2146775374057448 +1.1673562237758834 3.2179259479579696 4.826732073076046 3.7002302982427855 2.339624423371128 +3.0778154977858603 2.0935266602002454 3.5661226179378107 2.4672440893476795 1.4752486354482939 +1.8057263061772635 1.756461613117538 3.967700717495301 3.193412593960343 0.775853793075445 +4.931732996734697 4.1522943547471725 3.511027541045412 1.6452539710596161 2.0220374900285347 +1.4478873793078306 2.3227916107090043 1.9064736453358226 3.816530905512117 2.100898891254848 +2.8197125445274818 4.724265900913039 2.59872712371042 4.760262971740987 2.8808958172139296 +2.3408710534942685 1.2254070853740706 3.6506656135372544 3.626807466250705 1.1157190844322797 +2.9971708520950764 3.7050167304192825 4.472636240402414 1.442151261017322 3.1120547870722377 +2.356729866589252 1.4804029951858593 4.475827606957769 2.239294660510753 2.402088342689883 +3.9633481591950392 2.100248522271831 3.233348581922691 3.7801637412968763 1.9416866574256535 +3.977794317395539 1.78329663868071 3.917375744044336 1.4386238779949374 3.3105937345630543 +3.60279633339561 1.111647868890981 2.778906827085867 1.817116008120061 2.6703674375730926 +3.545615691428287 1.003996074302 4.515385676703971 4.203078939939997 2.560735397496066 +4.851143678649186 2.7512571620662385 4.188410322990318 3.47158143061949 2.218866161683587 +4.702967214711619 1.1434322525864737 1.745826742661873 3.69949608089416 4.06043261608172 +3.916456982528813 2.787810482807961 2.0728017434721644 3.4765310747255986 1.8011937588036844 +3.315615858094513 4.1518562876397285 3.7843656630081632 2.9686648047268287 1.1681891739811974 +4.034646026745931 1.1959063265248973 3.4771694830759663 3.094107995177028 2.8644683955530654 +3.3601884281967407 1.0188707526960195 4.715640971299689 2.8907948622129407 2.9684729709837594 +1.022578005257103 4.92337608588225 4.623440886690199 2.7122126903213903 4.343848395651487 +1.2908803738289851 3.3908369957170965 1.8014776526290621 3.6519057964001362 2.798910882659859 +1.9599493056064499 4.48450875193852 4.686889718057988 2.561574647311692 3.300055234084094 +4.059677599880431 3.1202989403370647 2.676960921190611 4.454914743780558 2.010858538353132 +1.8981403641368808 3.78538462374925 3.5809190557852877 2.63306732877931 2.111898149018568 +1.054138142834013 1.5328631215442163 1.3658952607261168 4.057918330037984 2.734257817205315 +3.899171575775341 3.8278281211367586 2.73579449126312 3.480062450573728 0.7476795328054289 +1.668374429232693 1.2385039952485686 2.049186785357749 2.9581246681176427 1.005463407951646 +4.262432359751923 4.029512418039853 3.217249869031953 2.648302642147918 0.6147785342919736 +4.587874917559883 2.8178204515241623 1.562274477379264 4.871860908933611 3.7531926623425074 +2.2312255569057116 2.0726188705314867 3.839872131427627 4.134930541553453 0.33498588977536353 +2.7422253395006346 2.5210088584413803 3.9665963090184717 3.811614230425128 0.27010400992460815 +3.6879104357538646 4.251879857487254 2.245684218666367 2.2984935833294378 0.5664365256994036 +4.3269695086032725 3.118349466817265 2.8715532877740237 4.750670092026683 2.234243131226218 +4.074975826665218 1.0058368935797803 3.073178667838736 3.009169691942455 3.069806335842069 +1.7998994679064686 1.2317885538205045 3.9168163438784718 1.275042872126996 2.7021689596976417 +2.930655137513864 2.5293788528661367 3.685932292303026 2.43427584256442 1.3144072902996755 +4.760786724944056 3.7398765049701286 1.2440270665266189 4.968719942965955 3.8620712967325126 +3.4035774557821203 1.4925623622691742 3.433986443603032 2.6887462804496267 2.051185410539771 +1.337079674609312 3.010645424119691 3.0348114285111576 1.1140356189719034 2.5475874918136596 +3.0990736105893113 3.021561179062278 3.7887965927133886 2.6622720557619517 1.1291880752978587 +4.578187497009129 1.5751748268638703 1.5248980795636715 4.208494102841881 4.027377895505657 +2.738740615719934 2.4631648767665206 4.043340458720859 3.0851588971260684 0.9970225137277251 +2.9697978398915685 3.146325649007871 3.2767103214776685 4.075920570103486 0.8184736336009505 +4.841926447843766 3.52170148257081 4.218358119901405 3.705529606342113 1.4163287200538612 +1.3248674316416853 3.220126065126004 3.279570389355266 1.7135848379711418 2.4585190735360762 +1.841403207830676 4.52367081855985 2.556202275137501 3.9280267689026958 3.0127167104228247 +2.07922627936666 4.480281153448831 3.529244295719484 4.831015047283861 2.731239937827183 +1.8410697385305665 4.292635857866527 3.8548540608513595 3.536310558368045 2.4721744275941204 +3.5630323497408662 1.7771395832036503 4.854206768887482 1.918246305921166 3.4364628346122608 +2.7717693946333015 2.491217917473595 3.6099805923444235 4.922420171609128 1.34209045170473 +4.39427246300967 2.704213277111554 2.817351234304148 3.9877273901478074 2.055743271424227 +3.2371028762864427 4.7413962613220555 1.6363993132478787 4.173597553485832 2.9496226027287746 +3.363858347207011 3.9379555278845237 1.7022191127537885 2.277935343016659 0.8130416659987106 +4.949508834666686 2.6739973618512782 3.2946050546928762 1.5473844356782744 2.86892529606895 +3.178408494847695 2.1037626010798762 2.5979483547524294 4.525914531644959 2.207242029373678 +4.43332748548138 4.996522701181872 2.5060059911503325 3.5687344565258368 1.202738808764105 +1.7805212117173936 1.563871813001969 4.17721669319198 4.967439516101608 0.8193833485072887 +4.651936301012716 3.604716872628493 2.8535828921157464 3.525376289859192 1.244176394422054 +1.6468376986098514 3.6694500428722256 2.6698135679566857 2.849085243281033 2.030541560455273 +3.381369699466121 4.028801831772345 2.351913632479699 4.424294243732605 2.1711586224501316 +1.1412678666461153 3.305296493446188 3.8684318858806197 2.031385824342572 2.838619053311427 +2.296818292029479 4.5469174137586315 1.5347832527001382 3.4080907583464457 2.927836584974833 +1.1279855914704946 2.1506840393104834 3.5648592653181157 1.5096839390470072 2.2955735093714336 +4.786676369790136 3.4521921491789658 1.7683920181841821 2.903244026841575 1.7517811554569032 +4.259394228158607 3.443242668753903 2.2783308900795824 2.767689140181513 0.9516169738195897 +3.1216734085519553 4.694721646541135 4.4820753531676285 4.827249831417097 1.6104738990358258 +4.749334202626759 1.0442302219824078 4.284028902191222 3.963516698262425 3.7189411907495815 +4.802003549463697 2.2497501096271724 1.930901807363929 3.3309676467156 2.91104482543242 +4.815686078846104 3.0455686991627595 2.791004713136336 1.07934611283439 2.4623344008977837 +3.3918679065649484 2.598814993265639 4.284889280649217 1.5017803058424635 2.8938950376512316 +3.9930081827398416 4.551695112751867 2.752274545238378 1.2083176829763382 1.6419299249031014 +4.713313127660969 4.102758681623124 3.1361882199097075 3.7845902816056642 0.8906188664002955 +4.182802387929073 2.8886339372605208 2.7538248932311533 1.995200532213079 1.5001276278490185 +3.480631239366164 1.237890814232928 2.3368607209480614 2.696608093203805 2.271409867543003 +3.0437518118937548 4.6037786255367035 1.2849066367961326 4.567617098732498 3.6345387102342763 +4.9146007548498805 2.0577026152694473 3.8488271432808214 1.1099639213545998 3.9576809785982277 +4.623831041945552 1.855869462521245 2.8246574010475713 2.0382347879554983 2.8775113955554836 +3.9053675219558914 4.348497571661324 3.809355841267143 3.2384419386209577 0.7227080497591243 +4.999544918743023 3.4094990496298445 4.441170762250114 3.994149347477777 1.6516882306140424 +1.6314250329306907 3.631925218172544 2.950521197485104 3.5879005800935966 2.099584117992673 +1.5157350496041246 3.2056219949120943 1.22762340394415 2.5417944337684952 2.140738980714809 +3.0583586312938027 4.1383917572947 4.395344347802354 4.066598533178025 1.1289576448619691 +4.60554844988339 1.777098321158892 4.737784665653708 1.8092541272766982 4.071415140327545 +2.3520535295098686 1.8809739973381308 4.212591708499998 3.195177241753644 1.1211815744008244 +2.42554755336997 3.489315222369026 1.40574430084754 1.943746913179651 1.1920773735307033 +2.9745401241861185 3.023043799885765 3.256455006466771 1.2527817689027474 2.004260224992422 +2.5771333040476643 3.880328107253218 1.4038800389860029 4.888541789122728 3.7203742026801425 +3.712782314307366 2.959473083714868 4.748318486944769 4.78269070077592 0.7540929955778107 +4.971244087749178 3.236623006071363 3.6437018767542058 2.3476809453185816 2.165313037812403 +3.48599099883414 4.25423006047841 1.8256776322177637 4.0135732786283755 2.3188528662721524 +2.6365792372040557 4.814360911029825 3.0775502647259 4.863599154532677 2.8165055752885326 +4.490771139133138 3.1469392813593675 3.354926235848067 1.3169077921388475 2.4411888986448087 +2.2072437146618915 1.301907623636943 1.102144963016685 2.35575228021981 1.546339142445004 +3.6272668449980956 1.7645213451876378 1.8900954027840213 1.4738740100627075 1.9086804459686233 +3.4354910053927346 1.4664593206120626 1.2896507190279904 3.325872173799493 2.8325401300850066 +1.4903917787015821 3.1309134999221913 2.519243911709496 3.2862134220531902 1.8109538226010833 +2.165921095595948 2.8382841845762368 1.429633577114445 2.3016310308963206 1.1011138373597844 +1.8610990024125411 4.426680655641631 1.8149539714861063 3.872068805745979 3.2884541445362645 +3.484275948454849 1.0039496227198001 3.2468706292539546 4.111990759945102 2.626871051776504 +3.8455972967578553 3.381214725704554 4.007969386813639 1.0743941880650976 2.9701034694115656 +4.2083407870852945 4.803380090536583 4.5687420859497125 2.729962955491594 1.932661497329553 +1.4490333585115076 3.8339086588396003 4.648525063798866 1.000277722797803 4.358593679070847 +3.506358538915241 4.5218261246281575 1.8401005232964533 1.0140535254345209 1.3090179755489728 +2.775026520728919 2.9164610934116793 3.2090509925141015 4.997509294119915 1.794042038228956 +1.3710487806045317 2.2117059817189166 4.642148274736469 2.3657520825002436 2.4266611122719746 +1.8884053812707307 3.982306498289778 1.4516902443600106 2.930279432636949 2.5633275006411234 +1.8374979025395932 3.406214903994891 1.0202716919413812 2.7631811496270156 2.3449107463494068 +3.2726225156876856 3.6183247523066067 2.441085907629001 1.14766330942948 1.3388248779943268 +3.1406855830874543 4.436545871618026 3.4372378642425314 3.6346933033775626 1.3108175074488995 +2.764284161631245 2.0884593769369904 4.874254991842916 3.9676254316264834 1.1308033865642944 +4.676339283463028 1.1159550529558646 2.3245349815991307 2.9188967448502208 3.609653968797983 +4.474134533988598 3.48309872004792 4.70699087648186 4.132720243039356 1.1453989457597367 +3.3074128972717505 3.7277557370547054 2.3748982243564947 4.484799464194806 2.1513649957243524 +1.2583090063629956 4.778311351192045 4.970681526321851 1.7465900091390507 4.773382722846776 +3.094546632125439 3.945935918448493 2.364723693387373 4.842693142734051 2.6201519629138224 +3.4783969034782602 2.6909206036924807 3.0286310208862433 2.0779110247061356 1.234498859400448 +4.88574794206319 2.485065514075366 2.226534817952873 4.61798367312182 3.3885548168708124 +1.8057175946313784 1.7590427637380919 3.7258888401551147 1.5558536864464352 2.170537055240101 +4.837937142604133 2.5671487545282217 4.792550336247777 4.259181352932345 2.3325870564211177 +2.237555511189069 4.655923598050178 1.7723716650753594 1.769606010159575 2.4183696682673173 +3.9497511933199156 1.007391786473653 4.431468747849941 1.4825095642797685 4.16579393938533 +2.0140765630068325 4.876095252025291 4.308816463869222 4.6796184914563685 2.885939209330937 +4.804005467460662 1.840598072913084 1.8570719770905222 3.1932711018610584 3.2507247633561374 +1.4096697352809104 4.820712972880768 3.963185794220646 1.1182086445415984 4.441746385260153 +1.8678932776970165 3.6212840871297822 4.108452344447233 3.450963726648839 1.8726106410937997 +4.955878838247489 1.1591807359055872 2.745209837741718 1.0834346169725442 4.144443673726189 +2.370990271080443 2.115901818131603 3.3289892811270376 2.3078191493446187 1.0525486007174945 +4.428801738218276 3.2935314032800362 2.858398484313483 1.07492456521776 2.114147098355609 +4.10736370718471 3.872625948804372 1.5709679067520699 2.766596710846645 1.2184539598975621 +2.3688526290521423 4.421096156533155 1.5647834121391067 2.041693936938653 2.1069283672570096 +1.977266031025521 3.5278725714638193 4.033927532843447 1.1402701550909384 3.282930651578183 +1.2078744199371112 2.099199267000995 2.3561677317982093 1.5373190565466714 1.2103607462053017 +2.9626447643017295 4.622905069541605 2.0425417537496444 2.3990608418615724 1.6981078120494482 +1.9269387154703193 1.2130096444978422 4.244916452615544 3.225318701691317 1.2446984743580938 +1.7377436943999154 2.048707353665886 3.1962268434079113 1.3199399428027716 1.9018808928969564 +3.812710067239962 3.765642706969758 4.805869600734249 3.546270240467636 1.2604784348757687 +2.08338440160627 3.4424512058547543 4.6572595111550115 3.834328024967617 1.5887979133196208 +1.4563967463534824 3.8095940308322125 1.909970995213102 4.481552275825184 3.4857664497887035 +3.4069220174277266 2.729372497407665 1.5530029419981348 3.3223465139672985 1.8946371757537155 +2.5972586721431683 4.35882040341108 2.85316882478445 4.1409197989763555 2.1820637718911433 +1.366643496450977 4.145512592127018 1.894763594354521 2.98624665171103 2.9855399369962696 +1.416596276816097 4.341914581440912 2.696105552588471 1.1501212881526923 3.3087088915853626 +1.824164521730733 2.5022147241034967 4.610966929539758 3.897165322209931 0.9845124740522037 +3.4978228421536794 4.110090456324668 1.3329367933015974 3.189314001408316 1.9547398727556387 +2.0077396160908023 3.20112351800701 3.937635998857564 3.2839805044239805 1.3606728639742784 +3.721005423999674 4.3327071683853235 3.619320084752954 4.251608868291622 0.8797545850254234 +3.6471515707941373 1.5960846432228424 4.40947469103916 3.9535484636747014 2.101129283546241 +3.369953666591674 3.4044631635772884 2.1873998985087284 2.903927783758753 0.71735842904581 +1.6300392409907136 4.247599800444746 1.795576736241864 4.37089572767971 3.6720418284749634 +4.780994992803947 4.978590769280149 1.0760533667274501 1.3714625832982161 0.35540216110230255 +4.459088184757794 3.5820152151751286 3.5786849108327896 4.186716202567132 1.0672202423589465 +3.4899151587039436 3.9892409734705554 1.2562129975503948 3.7027117124368703 2.496934566870649 +4.689697192142131 3.0785795419482476 3.6475855996379645 2.852447481197874 1.7966481876435099 +4.831206324012567 2.817392480449261 2.287202665127021 3.6383732664075317 2.4250996248179066 +1.5299025066134577 4.431709558827523 2.171425059637278 2.0210920992982424 2.905698567856545 +3.3754622870491042 4.190731221423541 2.4023468501759826 2.8695108846750896 0.939630603208257 +4.8254580738942785 1.9545030834416401 1.8429753012451346 4.342400376674826 3.8065086713275234 +3.6502572973910334 3.0693761168894764 3.6524967698269886 4.406169452089527 0.9515489781664902 +4.9951635292225625 1.241967898979846 1.2988204071902394 2.984913548785519 4.114533694236525 +3.9395366179268003 4.250344137059465 2.8439889472172895 4.15593399563659 1.348258552363501 +1.9706898319140782 1.147762138504369 2.54765718364328 2.463426108594907 0.8272272133969173 +4.019359582895413 3.8039275702707362 2.47368240119831 1.6515097766217148 0.8499286891655592 +1.5296568531339352 1.8937642808867974 4.715382725900366 3.3786884721603725 1.3853973245702198 +2.259212616633391 3.577919354736151 3.668660038259228 1.996316356831569 2.1297231862213075 +1.1087421024301798 1.3592181592936248 3.2653718200762647 3.7003345095468183 0.5019270826457932 +1.9105900632835504 4.2097381431926175 4.801250151799539 4.229892395429996 2.3690782129581938 +1.8028272360285658 1.1178436884825045 3.4396165046157385 2.9874428211831447 0.8207700654859355 +3.035349269887801 1.8626365733295511 1.4722058196502261 1.4153873396180772 1.174088330723922 +4.045922549800882 4.802165507899439 4.3814586757578065 2.6825982772165196 1.8595779266826966 +4.853327060358683 4.978493342963207 3.3582050418928104 4.291031279921488 0.9411861604676147 +1.2066509037728421 2.132003669424945 3.879210045915022 4.704666738858458 1.240022779155734 +2.2082124707190585 1.6805887740167567 3.553880798493547 2.1774382193361825 1.4741034356649403 +3.476916889548399 4.919997665661549 1.8913892835252533 2.890834741355174 1.7553841031421562 +2.4491604989315703 4.138268989437065 1.6104925838848958 2.907031637056447 2.129342858512159 +3.7490414410233086 2.016608990692918 3.704194748292439 2.760021822190831 1.973014117876766 +1.0615845768344907 2.94937570719171 4.5484606732019355 4.61653712995022 1.8890181989114845 +4.352792128663859 1.8706344049625163 2.3202047153637855 2.2820105036331997 2.4824515631004673 +3.9733331517547406 3.624681863381447 4.716597442079678 3.4073438036835677 1.354881105683377 +1.7952303367218998 3.0658512330671837 2.772631254643288 3.8084879508895897 1.6393524811301552 +4.884998818886293 2.4224066025686595 1.1562973811219708 1.2701022215861926 2.4652204699744975 +2.0369448585285097 1.3690916420901362 2.1917739424460265 2.933890582002294 0.9983812024539362 +2.6127227260584176 3.604623405215135 2.0960306743121224 3.564718981520965 1.7722619166036189 +3.6273129428546547 1.149019307560629 1.6578717382676023 1.6268937161581074 2.4784872363182937 +1.2480854075366068 1.9103187190194952 3.150475385737919 3.089262806922702 0.6650563424573902 +2.7759341099748287 2.891337345521634 1.830409099333743 1.3721645387434211 0.47255262573102746 +4.911008666260378 4.5563019700119 2.815434798405722 4.410055432301583 1.6335947497497496 +1.9876989299762386 1.7454092057856658 4.756921080454792 3.557524686542776 1.2236241335383562 +1.2798352282011671 2.102060306543834 1.3622082837707037 2.021249492611794 1.0537501574881643 +2.428296004802715 4.036412008754533 2.045415068980919 2.623523923304646 1.708872999849157 +3.326172392378371 3.802774139304911 3.751957395017969 2.215541022652121 1.6086405734182083 +1.8506725447340413 2.4559115466995847 4.92088930903963 1.415445894422429 3.5573090648105556 +4.170203614507214 4.594596163568799 3.451062531406088 2.0075503472721326 1.504605084878478 +4.21257989444468 2.2159949847525073 1.3066549227575814 3.50482885977285 2.9695656178949315 +1.4762641363453968 4.387136643146982 1.7586352906943228 4.884097455300976 4.271029441860715 +1.8843742483945598 4.814752797805131 4.40577032559657 2.275488932755082 3.62287417053536 +1.8065745108787676 2.226621524528673 3.14567183601685 4.7159850139133015 1.6255223684562006 +2.4740298751586387 1.1611972011335419 4.6883861048958515 2.6452629708648194 2.4285554905747313 +1.9639729886237425 1.008221996100164 4.415347077715177 1.0536346924594793 3.4949349236990606 +4.044693070385647 4.630293910640667 4.2771012697899256 2.1161625174120755 2.238880219135388 +1.0063175987315387 4.670549473949985 4.117190636332177 4.3379887435375375 3.6708782381757588 +3.454600669964457 2.2552022391761533 1.423242555860817 4.362610950589108 3.174656383879209 +3.7400416150327427 4.614011851062199 4.4380548379767895 2.177425758262457 2.4236888846375173 +2.3610749412258696 4.628075596169601 4.7759392025451675 4.545435849469866 2.278689045327217 +2.875008452258102 4.647251804358273 3.4324528060772628 2.5948144315654043 1.9602256363791695 +4.651385584842019 2.298762410778495 4.222969464728971 1.843273205344862 3.3463099208034284 +2.6099276801251032 1.0061104122435474 4.119941431809989 4.586866430806092 1.670403778564503 +4.2194674477384195 2.206895415125409 4.352673406444464 2.0363996028366165 3.068480164468402 +1.676217956796564 3.492524617925693 1.2779491078209828 3.2686236058320923 2.694764339287172 +2.9336067905506957 4.627503020037835 2.7560934849804766 3.1427069758886037 1.7374563095580036 +3.291608753384939 2.108436407535366 3.377384644638685 4.177732985246715 1.4284447018688573 +3.9590559218782935 1.1110645623424116 2.5707115093044393 2.73584755804802 2.8527749120086012 +4.28080186369305 4.824176688786627 1.4385622390487987 1.4483482198793043 0.5434629389077887 +3.0739669919901447 1.330783648792214 3.049235137371207 1.320684513586702 2.454908435560992 +3.724274234920018 1.4281562959663239 3.641897735492305 2.8897573951389117 2.416169009231738 +4.212446980671453 4.776852421417368 3.8716943101648478 2.140733972900105 1.8206529572456314 +2.9891174820255797 3.6154596566938073 2.9521683392055182 3.227758523088575 0.6842912166766584 +4.541919126369521 4.000898226380909 4.2948821593616975 4.621260910242156 0.631843891519714 +2.090773121415282 1.7345656527682252 1.4635542298354944 3.536093168474688 2.102926868175786 +1.2412810861768535 2.6468134503575733 4.978117994055729 4.426417133657388 1.5099321395757206 +3.3213695014403273 1.1338466282026247 2.5622831697080812 2.472406519712414 2.1893684324828877 +3.956027229353464 4.349340428298321 4.709833107697186 1.7996449845922484 2.936646077470909 +1.848212565891132 3.6511180003875623 1.4695437221763954 3.2304840413250404 2.520194201513069 +2.718287952825103 3.199550577615431 4.002702830722207 2.117612591083228 1.9455536295877889 +3.8219728947212332 3.1335910580056723 4.090821403149965 4.189520431332107 0.6954214918191618 +2.381773670824295 1.8383545823954792 4.071209202316741 1.5049959289412782 2.623119301541051 +2.080997342692791 3.8216321884122624 1.7584376227393936 2.730648150708043 1.9937409502806345 +3.787983916849215 1.9771030445372322 1.6732094010865675 3.6574269042342418 2.6863374012776204 +4.466852363394212 3.5327006043524065 4.950423091024387 4.707454746753768 0.9652321613158696 +1.7469724216739242 4.054742775351462 2.2200510880420685 2.313156304827568 2.309647719178322 +2.137690246875874 2.805626374292631 1.7582673699958464 2.9706349291330105 1.38418704254761 +3.746657148498525 2.1301364977600667 1.760026921927134 1.8922661907375082 1.6219205401250056 +1.5249848719046422 4.468017126072951 4.789788891559272 1.8230976346691397 4.178839056817497 +4.81013594749881 3.7678740368265866 4.419284985072624 4.709354894546786 1.0818735798698766 +2.2996662316153675 4.719771600811921 2.810510949869534 3.8160587120066456 2.6206938584949095 +4.384350094794611 1.1133515346779368 2.4350541651100133 2.887910479317197 3.3021978168490556 +2.571475315860455 4.665601076500721 4.299655657836611 4.316315858337915 2.0941920312277755 +3.7353178757220697 1.0837319289740548 2.7313537742017324 3.481432223960789 2.7556352650132268 +3.0559632782592003 4.3065418342349595 1.9761975602694024 2.1687415758144404 1.265314159641242 +3.9497912481775606 4.563362636165618 1.1438936317333792 3.1737592183573087 2.1205716559262267 +2.0550946983396234 1.9551051396318586 4.190859063464016 1.5632005656526542 2.6295602470699992 +4.785493915961921 3.007453661533423 1.2977275834144706 4.383808327627333 3.5616458984814274 +4.624329934310918 1.89335158047856 4.480950959293721 3.2887710602206663 2.979854976480355 +2.6714236794505446 1.287471140174655 2.5455416717191293 2.9854543246383507 1.4521872376407288 +4.727355558298507 3.4618518661278763 1.816066416470918 3.7400756505812045 2.3028919053744468 +2.893611867988978 1.5691860958114483 3.447819789765395 4.14513127560896 1.4967788528361181 +2.8025482749978767 1.9570134575571334 1.8869225205935716 3.9171973695718125 2.1993055926583214 +4.802879250464905 2.511736596368829 2.748570773896571 2.392922489250813 2.3185815413286375 +3.3453138946622833 2.592694891756823 2.4896716701295936 3.632188315933101 1.368129982667037 +3.607310055559161 4.88882640895089 2.173901059069147 2.659654920269457 1.370489320528053 +4.520349525034022 1.840872950054524 3.9192948073194795 2.2306311546862903 3.1672037584576596 +2.034328334447678 2.554287103336055 2.429019293576625 1.566756715362874 1.0069031110944793 +2.6776770224997057 4.900391118027535 2.3070128431382164 3.220769089803029 2.4032079453882185 +2.508072836788512 1.689336865110223 2.4824233355399157 2.809501339672086 0.8816510716304248 +1.4926696799256516 4.813932967866021 3.9627865350953826 4.0711250635763125 3.3230298019388704 +1.8642790971560346 1.7230835183945996 4.687628214899094 2.3101238862193942 2.3816933103051885 +2.016437437134419 1.2504750215596405 2.5584017955444156 4.449677443925802 2.0404955281091857 +3.55702716199658 2.6958926064054576 4.2094158701622595 3.1591541011473394 1.3581614433812605 +1.401361285502941 1.414769099955044 3.8919645917248973 3.4341374725793044 0.45802340607608144 +1.2981617100988863 2.816446422945779 2.4200289891003335 1.1274035709524401 1.9940082599895586 +2.6316183075614594 3.811219292342844 4.066436347494559 1.025802245815448 3.261428249033105 +4.132284829153245 4.805580918036354 1.3265096571764272 3.352605914458422 2.1350395001211098 +4.050443364092209 4.605656858354616 3.1306018512624694 4.348797820131329 1.3387544370717923 +3.608259892505491 2.436786872751255 4.7485299468263555 1.8664496703987563 3.111066658846302 +3.38659289030034 4.213581955710205 2.821714996480584 3.335395287286469 0.9735390877976602 +4.912237112096131 2.280452702696784 2.392456320147125 4.420957421276131 3.3228159586168866 +3.2869063628391637 4.077517830271753 1.874407122821891 4.5261866098495585 2.7671286454114545 +4.8610184197313 2.626570528297889 3.6131450915890913 2.5596349394453033 2.470352408099145 +4.53945092960028 1.6940083932076475 4.035350508452476 2.39030094153932 3.286750873661358 +3.1719040362545554 1.0219482535706943 1.4019010852560898 3.5997481851031643 3.074547404383606 +4.1821876066521835 4.842304357630334 2.14888235814018 2.2408357839711956 0.6664904781345412 +2.464100107151397 4.8229341627472575 1.1796229901391881 1.46225658419614 2.3757061792924574 +2.2894679283776065 4.892708696436909 2.3737927818678632 3.132244286898259 2.7114776749899416 +1.0991387995990416 2.711111098347918 4.360024512469744 4.431995571011844 1.613578174493386 +4.432780293300581 3.1239754742632933 2.0618108538843267 3.4488995876617228 1.9070881494329013 +4.9999904367421735 1.5359124803948911 3.158201438635182 1.229257391909468 3.9649289051696424 +2.0456082924147445 2.847946347703527 2.938969916515704 2.5848654154071213 0.8770041919340773 +2.030082613111467 3.1320029338950945 1.3016836917781567 3.738307293877933 2.674203240530828 +1.7209538727589915 4.719320791396138 1.1644845344361276 3.9964743395099 4.124363033829515 +1.9359710776318804 2.43425571614112 3.3754988177637473 2.1959460668716835 1.2804812662086544 +3.6524163726840957 2.0785723875005613 4.952873136881047 2.1776604563359148 3.1904216511233883 +2.853459462832794 3.4628780337238356 1.4956634312717854 3.939678887259039 2.5188494483893757 +2.448975231370488 2.77366993100085 4.413330506844618 1.328858418781906 3.1015149056559435 +1.543478496924894 3.6100230363661665 3.1957032430035976 1.429327076963796 2.718582552259175 +4.2238482106219255 4.53678002307681 3.6921004977973078 1.3379041631163524 2.374903514139373 +4.062501390020719 4.811834454365261 2.3777393757347305 2.1780826226466297 0.7754758928384974 +3.2301942924118556 4.9699222003596715 4.815616462724485 3.7167880503300665 2.057687311905704 +2.141738487160817 4.982667674233831 3.942767655179444 3.4788468481900967 2.878558868795457 +4.999972874637187 4.052814607157368 1.6965623021717922 2.832085710938842 1.4786893505781782 +3.4445059857408884 2.864767199813556 1.1763050532463217 4.543116054918826 3.4163596679640613 +1.4267690717428394 2.8810214090521336 4.689531091466915 1.7735985077255982 3.258452499806289 +2.204753588293392 2.7717553128592964 3.003610662671331 1.4530981369136295 1.650933084104936 +4.074080991911417 4.929446651740873 4.841519919229206 1.865809884156635 3.096207458302348 +3.1134837688286887 3.085759789667871 4.786302299815164 2.50544063977104 2.281030146946714 +2.2622568208976594 3.363458590213272 1.6564003794548388 4.156608056003035 2.731974334179289 +1.4985408267517375 3.9684146512051255 2.0012572581813446 3.5618075904831406 2.921573899179559 +1.464392240771676 2.757267275346093 3.0636641806268488 3.5535352282342902 1.3825698891230824 +1.6498504623257064 1.950827993518614 2.8161718590763694 4.540287841304128 1.7501895310097608 +2.272564052802402 4.065458583065423 4.061442169812216 4.590741909102148 1.869392684980726 +1.6363029300327145 4.578290030826828 2.5604127930350766 2.253483431746897 2.9579543157492685 +4.03504554998738 4.7393642549353885 2.058942928617315 4.92162631306824 2.9480537643928812 +3.0620338398857645 1.982821609704192 2.1209547905237796 2.046488358145011 1.0817782986012916 +4.471235361148912 3.994376424618175 2.2742104696328846 4.4478346088684875 2.2253171333580615 +3.324788417316649 4.390109592110173 3.349491902295525 2.837177795606106 1.1821061497921546 +2.274213331997556 2.439064519565976 1.3093204700693386 4.181072084176348 2.876479314573448 +1.393343452519705 1.9152368127288613 3.9940203948976603 1.6277589536468038 2.423131421896259 +1.8749075214376862 1.7940631949121366 4.140851934287159 2.812231745343789 1.331077537786318 +4.80099350892293 3.8610242010741724 1.1011404116231178 4.677813244307502 3.6981253158539946 +4.007220547938482 3.9117813198953675 3.525178168523514 1.8960161292813882 1.6319551453263133 +3.503074473743726 3.1994704989413894 1.2982901287812147 1.5521420473722993 0.39574760907446094 +2.3812242740256724 4.215334766970133 2.64630322699584 3.0270635660886036 1.8732164146608925 +2.8881998441964627 4.189972495317215 1.9856566171871584 3.832249203037935 2.2593176432996334 +3.3455653955128333 4.505805300066381 4.175661412875629 2.186551376741196 2.3027625522335446 +1.1796151958766115 1.469284929371705 4.750356760691335 4.817766013026736 0.2974097540490834 +1.9004533072166283 3.4173102764049714 3.6984562732557733 2.7408133326345596 1.7938603810488962 +3.015632869834788 3.713213493578031 4.0752910199360395 4.241276808410328 0.7170564891258173 +1.6744226347905418 2.7352253306706196 2.9735163242930605 3.4200617849351542 1.1509583867397208 +3.276573753223599 3.272274910022315 1.892857872356331 4.964705999634351 3.071851135246359 +4.092474235933607 4.094263874947707 3.7697769238039847 1.1523073299688034 2.6174702056488646 +1.2858519389120446 4.775997732689212 2.5216928457873578 3.859609371412527 3.737798588923884 +4.306885555273196 4.229073142356716 2.5143687873254836 3.134194728462069 0.6246910987918255 +1.5485227014035878 4.142666448447975 1.3325464927457098 1.033108989666137 2.611368338358268 +3.612575851066472 2.057270613061432 1.250682108270734 3.470337950221165 2.7103222022613087 +2.4827232679639075 3.870450561007086 2.057089753213748 4.283874532753735 2.623805917793444 +3.408051884727963 2.9505518627139287 4.230302946635968 2.150046940433703 2.12996979356127 +2.443697485857209 2.1235791770437467 2.4714156554201874 4.147767609769966 1.7066433741382274 +1.073883747597824 1.9077569859611536 4.131616953632524 3.343445677817586 1.1474138476061257 +2.6039170702722214 1.8878969423352072 4.570586236287023 1.7201819420134576 2.9389606095393863 +4.251530198405059 4.768606178916036 3.411584073440587 1.7093369477570404 1.779048297972622 +4.159452958728316 2.881631281016365 2.189744068280845 4.25950946440104 2.4324384956268004 +3.8834095764571432 1.8073783229522742 3.4407506111336974 3.1183896494567556 2.1009098874397925 +1.9208476506195056 4.024345561428037 4.457421511591134 1.2254339891694226 3.856221830479347 +4.052121463156203 2.2646216346063026 3.595595302321352 1.5378875285926084 2.7256773321744494 +3.3845788607160663 2.4462771492038256 4.90727825016503 3.4645804042749053 1.7209843626142587 +1.0813047156120446 1.615261324861089 4.335849679929764 3.911706745460719 0.681914136398967 +1.19487874790185 3.191095874904183 3.0235440327665444 4.331996922602425 2.386824623439543 +3.456769988521699 3.5117984886255487 1.4449728291292998 4.3820240108257895 2.937566642602075 +4.540639580304221 2.3835258325699007 1.6598563447275843 3.6099909638494934 2.9079485472343145 +1.684226425148157 3.0534008705658 4.733065170590811 3.3982104369582093 1.9121913664395813 +2.0854986947325784 1.9587200512793403 3.9603559940367896 2.644730198815981 1.3217201131428047 +4.80030719738215 4.177257812098822 2.384299959438086 4.915979437310845 2.6072191152996753 +3.8282273919486443 4.258948497481057 4.708635466975188 2.518443346065956 2.23214296075407 +2.1904790391432774 3.184280598568712 4.917139412424008 2.051288382729792 3.0332727645096194 +4.983513260857123 4.929238064188111 2.278354785078404 1.6520969028321368 0.6286053865892649 +3.9748810915933688 3.2053315053943123 1.2647507650256693 3.057034500357812 1.9505095625387938 +4.294125294334976 4.659309500800971 1.3593674432493712 3.460720672648926 2.132849009977063 +3.656380027578926 1.2600446225746569 2.2436207508912482 2.3009587726458967 2.3970212810936227 +3.6840695200223137 2.0671363049267417 1.7113207833015585 4.940221562498702 3.6111318535854133 +2.3517714808446377 3.9914544265931924 3.4626377849622143 2.7006718878604845 1.8080796970611392 +3.4127022730898604 1.4334268988394543 4.912942085905254 3.12599151466597 2.666593960685895 +1.44864870346316 4.857652810640537 2.0692247126508008 1.3208832625029023 3.4901753435553466 +2.979323945414402 2.032966849967166 2.4503868205797508 1.2950482074971448 1.4934520624991512 +3.1378428018791014 4.7257106244635825 2.9997730860533847 4.732087650537666 2.349944248769223 +3.6789807767555653 2.895587260772974 1.8716156180505727 3.9910709289200623 2.2596008974277852 +4.699772181545317 3.82452081965564 4.354830346496082 2.8569343047813507 1.7348652680465981 +4.125180198970561 3.120909949421011 2.5666084512834866 3.467982963896532 1.349457204256112 +1.9196037658265057 3.0529546109116144 4.304660267255598 3.2540066509378436 1.5454310594577507 +4.656634105101844 1.7755099928835802 3.210216951089703 1.1732397878819127 3.5284773080516665 +1.4455710028873958 3.589862404623558 1.8981079758386876 1.6534334181848203 2.158205563592762 +3.0927778829929053 2.5145447921065833 1.105218567464476 4.727809212021695 3.668448784626744 +4.629151386049486 4.7077284694283925 4.381292340025297 2.1720090733287583 2.2106801918273176 +2.9063270887528785 2.613277704477549 3.170005547845764 2.668543899259308 0.5808112659265453 +3.6585446308449403 3.480246911981687 4.189296414251487 2.9197871987785207 1.281968691007166 +3.748422833418767 1.4622340563326222 1.1556190770547787 1.0475347765148104 2.288742305393479 +3.9818100594669072 2.1679294448528545 3.2898482681298638 3.8635972578286273 1.9024591420719148 +4.707547170509402 4.299639768618009 2.6092197038311453 3.890847511700982 1.344975199185111 +2.9959922124527614 1.676910400899569 1.0456372056271537 4.538233195798048 3.7333903594625975 +3.657319254166182 3.2138358294428007 2.2435446575489637 1.1357388270260196 1.1932775478257391 +1.0671645275665482 3.8893705228092816 4.152387742840453 2.5625082986113146 3.239222642358253 +3.2941430289790916 2.780774480997622 2.9226726165524335 4.839330922346928 1.9842193243761197 +4.188348702805419 1.7696029102919115 2.5530169227979753 3.7331636556495216 2.691296624280195 +1.2534039937607986 3.22664751102634 1.4210563429380443 1.1795189810626292 1.9879713970810096 +3.578362053217247 4.941012828905197 3.7950764367756844 3.025904089527158 1.564750215291495 +4.639796093882964 4.754986341298156 4.655953502220116 2.5930200651875888 2.0661469354153907 +1.64507083252047 2.144881623807987 2.8340602278231195 3.277538869150154 0.6681946815118527 +3.718090715605509 3.7163463890930557 4.394943966955079 2.0839026905050635 2.3110419347408433 +4.7555690514615385 2.5907893581956025 3.547130439232553 3.0450513917183986 2.2222408713569464 +2.254471673353972 3.9484524701745136 3.5026948583830024 4.807562777654841 2.1382823075406985 +1.7695517470940811 4.810395642817326 2.779189679119351 3.2832128842438713 3.0823320699530923 +2.362963155173638 4.690098727287548 4.2254552781782735 1.1703657602171034 3.840459859672296 +2.581798568115126 3.099849313242805 4.062500846484353 1.168888606824983 2.9396204462538793 +1.2058215177745062 3.2069142133457302 1.1680370714597132 2.490978639479458 2.398863557742092 +1.8278240034021818 4.909864382035121 3.8603801223393264 3.733072539086133 3.0846685585776696 +3.036784641508248 1.690427778403917 1.0949504761041586 4.541018798853381 3.6997383269474304 +4.479311203813492 4.740024965454978 3.706770588369445 3.158551234443183 0.6070552903390112 +4.82927283476384 3.8599310384186567 3.351166514028685 4.398769681805655 1.4272686906388892 +1.1822813647967756 4.155447048881847 1.453299237512105 3.4001662677757967 3.553871891127874 +2.781185920654343 3.278688514927751 1.3263334150996835 4.057932147984282 2.7765338947697926 +1.0380349947092653 2.015838643917834 3.4349723817451663 4.1136432437330015 1.1902496021074342 +4.910366524098714 2.6274988809125963 1.0961094187651934 2.6322271067742924 2.751570865473132 +4.072166652828988 3.354004244897429 1.6173025198343098 2.059696745275161 0.8434867484848033 +1.3176134730959324 3.0763268678469915 2.7260365281063197 4.994335033780763 2.870235341521964 +2.237729803600101 2.268584445754505 3.2129782226823904 2.9461773536159472 0.2685790622462698 +4.284590965699261 3.7508747423395605 4.395778800373728 2.5603794703120504 1.9114245231942057 +4.471319416081843 3.8020035766612073 2.6466757751154453 2.3820556923972425 0.7197273657970348 +4.867349275402745 4.604193083904246 2.7838578503451674 3.4972239630758737 0.7603567530551126 +2.548997294861787 4.136029719027855 3.6246333431780537 4.999959005308435 2.100045854801461 +2.570899651423196 4.825434330430026 1.8679464645804735 3.56537479717541 2.8220895739044956 +2.1783648586918796 4.883910471714803 1.1082370789581986 2.1444891856411714 2.8972047723197765 +3.7245042618994617 2.150645121992122 1.1372233822698345 4.2861189509221305 3.5203090623619873 +1.5942410532729894 3.8844353333166013 3.8123441086618146 4.541973412738859 2.4036116079168095 +4.716038163837558 3.2344601707132266 1.2645305237539315 4.992446954669424 4.0115376435476735 +2.3216299571767327 2.1116000824024543 2.0942571726683075 4.156476516161993 2.072887157801221 +3.009245889751361 4.959734729180146 3.330513470997513 3.6885435345550928 1.9830764582202303 +2.2670878522767937 3.620880086340714 2.574378041422363 1.0705839544858131 2.023400619975469 +2.629913831169573 3.9517563266289484 3.9201743606941277 2.277675500476382 2.1083334861019645 +3.6208001901388105 2.1971915791815526 1.5857270053332537 1.508596146306846 1.4256965478690775 +4.156424598114495 4.538291291781235 4.4606147155482985 1.4224672202605357 3.0620519876147227 +4.0348691562816 4.974583002769624 4.057462117913218 2.32590652662408 1.9701134178026383 +3.7931182630927864 2.704361524502718 2.6309824320427215 1.5903739323147579 1.5060734661799755 +4.764893599713771 3.035837922527914 1.6132009746615217 4.224193973497945 3.1315999065623727 +2.196453612596508 4.8581834648090645 3.891977292840174 2.2109596738291826 3.1481146805008327 +1.2146884635125939 2.28270517801821 2.1473340503220877 1.7929045991165053 1.1252910460610894 +3.8152334991463057 4.77129191623102 3.809517727014017 3.4844832091942384 1.009799551719481 +1.1441969116840687 1.3565513209827182 3.5684111880537555 3.006163773085261 0.6010129372878197 +1.9096665470617218 3.554024344373698 3.8176345464763664 3.7595075192679928 1.6453848537265612 +2.886889185281632 2.1762718691452143 4.907159048593263 2.227239675101619 2.772534006718181 +4.533421759789032 4.806492896901632 1.9605201021665977 2.661024360235508 0.7518470998126164 +3.436446538630667 4.216355386461787 3.471976791133663 1.514034489296777 2.1075568481650953 +1.1696573002092694 2.4359075245077304 3.5185845240672693 2.14580110081351 1.8675984465875453 +3.978531790621224 2.1114171656458196 4.1394752954642815 1.8614512991802594 2.9454219308008946 +4.157962868115984 1.4675563372380358 1.1430527853293224 3.013725267027565 3.2768434254895027 +4.429702633824888 1.0886722686720165 2.5106259196437417 3.550640200072492 3.4991589852947897 +2.756695774107561 2.2330685718548047 3.569007031287566 4.761331096159553 1.3022373526404118 +3.2646989141124267 1.080985576270817 1.4117973537977364 2.4103595983604365 2.401193556990657 +2.5556503563828388 2.111123202116789 3.643647874054769 3.186675692585715 0.6375170315501055 +1.4592416924172311 1.727740243454435 3.5600520304822383 4.73086324556472 1.201203718472431 +2.342748747829919 4.826837802933307 4.2009062881714545 4.901884986367806 2.5810985198185468 +1.368841370813803 2.637914849307211 2.6359202570490723 2.8091964753226866 1.280848211785676 +2.5158597110167555 3.796983555019892 4.905454022539213 2.7052806174931305 2.545985333018524 +3.6459556962423014 1.0914685373529927 4.323164476432514 1.068274741350633 4.137597350210841 +3.058800291710537 3.7480058064098376 1.086559199283864 3.2231871699257844 2.2450352617322826 +4.846519242780275 3.3836291367893763 4.792607964522375 2.4155317318133545 2.7911536823177925 +3.8796422778290593 1.5504933635427252 1.9866521069573277 3.0430991204075624 2.557540802636222 +2.34115514478627 3.4643262629302987 1.8474497855181795 1.5891485296575123 1.152489869548581 +2.741334256781469 1.5403718322527915 2.507942534511647 2.625248172949329 1.20667781861567 +4.989257975682573 3.626694439495346 4.709604646033532 3.8471194360880787 1.6125942228352717 +4.912074872615642 3.4244603172619823 1.4975419617044317 3.7533152976022097 2.702130716350979 +1.4482844437523714 2.2731165508484716 2.760564905440512 3.2648853050214597 0.9667921546692854 +1.237671223740152 4.430849269982163 4.074149849063845 4.040968937498523 3.193350436124143 +4.416345531690975 4.540853301663313 2.698904902121424 2.785185621648928 0.1514811781894649 +3.561871458887786 4.998484724334931 3.4350043204118177 1.5441451006649451 2.374701299818666 +4.686133609039247 1.5353444205511528 4.008593278761412 2.1839547308093112 3.640985902330056 +4.115843266380798 4.811487208877505 1.3275117659168592 4.693727831443877 3.437343610194442 +3.341405707000965 3.9821522455004033 2.364316596386051 4.560928125909746 2.288156100058613 +2.199944844415041 4.404181658727213 4.346403405104342 1.9568971594068416 3.250907570478809 +2.8118146931790964 1.3984023046948977 2.767168665360435 2.692790279622537 1.415368052552262 +2.355718916566473 1.106562909435735 4.626221542602295 1.892650811238041 3.005461640667222 +4.574548510540726 3.838626843668452 2.605632086723236 3.9693991352012588 1.5496584340707225 +4.02717609906766 4.199916558234303 2.5187269622738557 1.4213635219172716 1.1108761346182305 +1.6660420553087998 1.0938222227963426 4.6310133748898945 4.697256460354087 0.5760413900861646 +2.098609618863286 3.382791448607613 3.0974521519731306 2.7803627362322865 1.3227504184162473 +3.208911764404958 2.5655117865734196 1.202860056780417 4.8301080445837545 3.683869093289959 +4.115583620720959 4.93705716801608 3.405528788004458 3.0831482630431912 0.882466991892576 +4.986015903966928 4.26352676473562 2.4207862700738034 1.9737154208445338 0.8496251529573359 +2.5616145424713515 4.847815961661469 2.867642562894457 3.4735872726004406 2.365139725328628 +3.9743193734881825 4.428104182561171 4.990361568065472 3.4834665916102128 1.573738581534908 +2.5433856489379676 2.6966437756876456 4.084530837811482 2.4866221528939096 1.605241483001803 +3.299554899014947 2.4030167729695777 4.262490349935387 3.6725997022665395 1.0731969006944229 +3.0548753820921575 2.4515732053821595 2.3254965533080387 3.642047335678663 1.4481987014853053 +4.411113353887395 4.255018169586415 1.81600971005393 4.031532983517424 2.2210153267864574 +2.4739382007158035 2.8835045520430556 2.0267219897503543 4.57145537714983 2.577481834870059 +1.431319612326968 3.4406272259512645 3.18622992786537 1.6263043596284175 2.54375408886314 +2.6224491595440416 2.28718146456101 2.7121031934109854 2.67733960989268 0.3370651777301673 +2.4119012788788288 3.604166327517271 3.243669055060699 1.4996759063184277 2.1125832644099045 +2.726168291014849 4.265922575539413 4.816070652664111 4.978982289762175 1.548348622957286 +2.2678598307432436 2.4294702987684538 2.8394179492329563 4.168416666051262 1.3387888305031643 +4.556731791439736 4.731406642886181 1.082308150313148 1.482009907435589 0.4362027033096019 +1.495679955164411 1.319335632962133 2.976556315158383 3.8443474934485247 0.8855274411847288 +2.5074746578844405 4.553530071293015 1.3965807382850146 3.4901589714090235 2.9273559013125108 +1.0462828646202178 4.381924848315841 4.608658507270139 4.019011848137511 3.3873574694766337 +2.0415879338455984 1.9128784200171194 1.639965223194828 3.5873709731310757 1.951654501656152 +1.59514106730217 1.498740232419371 2.023797256560395 4.6192218744095825 2.5972142899467694 +1.8414231695219478 3.9512427786865953 3.7378432000392845 2.195356987254358 2.6135421366121596 +2.3533926728896546 4.487477050651334 2.7276255773397566 4.850928682919564 3.0104372123615715 +3.490311859344737 4.8115160193561515 1.538347264583816 3.7752377976226663 2.597933734572593 +3.850131464485908 4.804055308552405 4.59502402043943 4.725764639484222 0.96284152888563 +2.7867778267728855 1.3697042693314319 3.1697325766827036 1.9991911049751399 1.8380056594545857 +3.4521595141200687 3.860533693801569 4.972938363014265 3.171046458676623 1.8475886732571383 +1.1471864642314604 3.835510654273405 2.6415718231939747 4.343966325523856 3.182017283474067 +3.359725356894188 3.027753584168891 3.383234511205798 2.799302227073946 0.6717009530571013 +1.262533233452749 1.4279751736418058 1.1403715282066051 3.914408633341116 2.7789661560077654 +2.322152808201155 2.0668535305081632 1.6887861675993925 1.5038198723183407 0.31526219497516744 +1.236548045209096 1.6167919734196365 4.152298150504462 4.647049100148709 0.6239903421647378 +2.466630577631574 1.56755064269753 4.744578480156438 3.6056041887809367 1.4510710409264356 +4.742156665526393 4.033112612185023 1.2839611590150475 1.3087728705071964 0.7094780409610499 +1.2229843808228544 1.0799866471534756 4.936651728571844 4.003845528217447 0.9437032156637947 +2.5031176256604617 1.8103921650342842 3.3801321510828353 4.071590984742633 0.9787665106887941 +1.3513042376225646 3.9952967244841537 3.08937557915543 2.7292741432947905 2.66840201519363 +4.92477725884089 2.446732627121466 2.066925231334376 2.79450328610332 2.5826488384166386 +2.1232266556647628 1.7789058002551923 3.4911676456960428 2.006063205640765 1.5244973103754162 +4.40429162455016 3.1582616486342086 3.451615151674312 1.9713630510051612 1.93487389315597 +1.784928570735346 2.7076363718535026 2.3372769919316223 3.087206958043486 1.189026761816926 +4.7463407046987705 3.430863892485255 2.4474207604188134 2.6348121834779867 1.3287568584611613 +2.184604639836102 4.2603338493569005 2.755659370312842 3.102344972328634 2.104481565113577 +2.4180183292726967 3.5153537699726054 1.6748472497853846 3.0151162214695146 1.7321853208809093 +4.725454818399886 3.098128018014616 4.670612091208801 1.4741649508651813 3.5868463636268366 +3.8636867954158958 1.0767110623814808 1.3612095309597194 2.8742765102447643 3.171215133087865 +2.6130650499277044 4.501737381318059 3.220357044438348 3.3557594411694147 1.8935197343571564 +1.7840482605621046 3.644489864524533 1.9425966524680733 2.3205408240613346 1.898442719334879 +2.7420529820796653 4.898493003498034 1.447251004026199 2.1832182728620575 2.2785700311319306 +3.56085198978662 3.845717957746744 3.013497912842951 3.5401009298898165 0.5987147545072858 +3.7186950805020174 3.613575463556504 4.502345812559186 3.2007046477983896 1.3058789590412332 +3.5093273251001196 3.977304076508447 3.324759876530094 1.727900362116943 1.664019996463533 +3.873451302887497 3.757969136421562 4.621109730471282 2.630713179206867 1.9937438556787939 +4.697265380092594 4.063875640283539 4.934235649820238 2.3932129927606245 2.618774275531528 +1.7075154417290221 1.935791697470206 4.521089027344528 2.3465959188748857 2.186442390669643 +1.4167562519530046 3.7667215852039884 2.794895948263822 3.9538627426484845 2.620217757738404 +3.824771935287966 2.0294855795088464 2.1579808596513557 1.243224760787585 2.0149024342769395 +1.5188392966493716 3.721524560700947 3.556759761662727 2.7619582532812204 2.341694217910502 +2.12689598123672 2.3981570200478357 3.1357689796649115 3.327139436501038 0.33197168994743104 +4.26533356710795 1.281726074031749 1.9303650868630604 4.658937058404993 4.043144651954055 +4.7578697022460625 3.550089455347464 2.5299826187065633 1.9211921725442287 1.352537959591883 +1.7725643379761693 1.4381842084395497 1.2338261777740125 2.089322749979838 0.9185229752623739 +4.066692465930815 1.2564261509083505 1.087821850888107 2.610312608040236 3.1961812944455454 +2.4107497422678272 3.967369802041614 1.3755779369793149 4.730484895906729 3.6984411193839137 +2.6199720643425572 1.91432974952057 3.0394779115834427 4.9946473622291805 2.0786097895482185 +2.682452436504744 4.3389131477944325 4.468371299335219 4.1365704429378995 1.6893649387720628 +1.516006358610626 4.610398488788985 1.3614704098204347 2.868487417754153 3.4418545752996685 +4.580374918658459 1.944100507586477 1.5030232281574007 1.2160558113069015 2.6518471050961385 +2.7496170288810555 3.5264373469354853 1.4684540897264742 1.524059151854313 0.7788078899680114 +1.9177234734246853 4.282583895043425 4.749802023069934 1.8407526035028825 3.7490176498947245 +1.1385378145680347 1.418289342825532 2.0384315190501283 4.328498711050523 2.3070909521384233 +1.2772832272896908 2.5274133740316285 3.6701169754551755 3.4398887450913747 1.2711531858314582 +1.5333969443118316 1.81176129147084 4.61146218415076 2.95225435985103 1.6823963011094338 +3.955157660599843 1.5380636450239873 4.19899767821499 3.4758845959338993 2.5229419354988485 +2.7592691299876013 3.463673642738901 4.476803756418712 3.627729699440968 1.1032282047777069 +4.114940956854094 2.455100269206383 3.2430972211060296 2.3707958770030584 1.8750948624788761 +1.864376709837451 3.793910240503066 2.3921174604679356 3.086409726723333 2.050644141957587 +2.7579230419242187 1.2662150661056395 3.973264057593368 2.168165488416327 2.341703125839346 +2.945747488052558 3.137696153833505 4.969449180734529 4.361612059393664 0.6374247064360108 +1.9956364411619374 1.133144222564678 4.830600765949356 1.1265909091878563 3.8031016087040284 +1.488490501449562 1.174818579740585 2.853485285693502 2.2123282429445004 0.7137733729519807 +3.9386056713651083 4.566404973935033 4.148526581180073 1.4583028468371233 2.762505331239998 +2.3666083697049816 4.411772810474291 3.952931701578107 3.299579981753227 2.146989999880151 +2.4208869666131587 1.7115185362327305 2.0469933481352127 3.244643834095436 1.391966327373314 +3.6507694065248737 4.582827307103683 4.472262301339434 4.8195583175982115 0.9946589631328893 +4.156563358292046 1.6508222646693542 4.807330942008158 1.2753775673578858 4.330523417437306 +4.72618393212907 1.7267281374979242 1.3271619996834234 3.656985458076266 3.7980011073226327 +1.4860505523419998 4.881689175653998 4.37657991136403 3.17489575610519 3.6020003427440637 +3.3817795552573724 1.0247920047690324 1.3439521139239212 1.459351257761087 2.3598108558855677 +1.6985281379178416 2.719863270627385 1.5030742904742578 2.0356606725111286 1.1518566350192825 +3.008122802632223 2.7892226139564755 1.324663734067776 1.1640141802961907 0.2715245324630674 +1.2330723811210822 3.1106547338858803 1.6305416449092318 2.3691148385816425 2.0176238137535103 +1.2613805710398882 2.0882847153096415 2.4209033636244537 1.3229416448099167 1.3745146051580046 +3.533259254171207 1.8109780318839683 2.5323658004886256 2.883983986173778 1.757807713359952 +3.843055987006276 4.325875218202109 2.9684990291567486 3.596696082125692 0.7923042012834469 +4.933657776543441 3.2498367826375616 3.37913505972768 4.354678147114711 1.9460055125478977 +1.4150749436739734 1.8831461173542299 2.882068345193082 1.8631235814532952 1.1213113105570383 +1.3479867749620746 2.344007231821912 3.83964732373122 1.3583838433978377 2.6737100084563035 +1.7838853557942471 3.055951802811628 4.464722927901331 1.2642179009931165 3.4440362182898387 +3.1331264725920183 1.8734245470152802 3.059582355637336 4.899084290652826 2.2294879031354875 +1.355597211896085 2.620193722692986 4.296169540147023 2.3522030137400374 2.3190968481093104 +1.672482743317596 1.2901074508186032 4.566578742081457 1.9417006956034015 2.652582821175645 +4.060463926587827 4.980574332353404 1.7825041139041824 4.7640241740248195 3.120266819953041 +1.4428074125546928 4.108067096755208 1.8535064739866032 3.638620300026115 3.207840481716954 +4.422032018706509 3.666472483636244 2.810166269560695 1.7463270684892418 1.304846372862316 +1.977245045786908 3.9743228502854997 4.974975597579329 2.972495366049589 2.8281171890302415 +4.1426854105945665 2.557249741058025 3.0133610107987012 2.4684701292731455 1.6764582711801923 +2.147074995519701 3.4839515850504825 1.1676182037150449 4.3540779488366494 3.4555411620925445 +2.8553039515325556 4.685742903747144 2.520294572579203 1.8882703667483458 1.9364816948632813 +3.2951277158463013 2.9946477894009176 3.349579319168193 1.1895070171034408 2.1808715084442603 +3.754491486358409 2.8900644338728743 2.0260297410054755 4.221753044206066 2.359753155159866 +4.946906536464541 1.772184804028298 1.960109419924155 1.4764171167107327 3.211357395649211 +2.551169621892295 1.0895249958524573 2.156028403401256 3.4595630846425505 1.958470749853053 +4.591088557708467 3.1705918203677395 3.915726533994191 2.585275354759348 1.9462557183276397 +1.5976347686239394 1.7418170854214403 2.0266169758810353 3.5528350882102955 1.5330134594578695 +4.651551590356501 4.488630719974654 4.586847878178249 2.0493728274196954 2.5426999121461624 +3.1692249586963728 1.9587568489330986 1.9498912139166014 4.85581460804346 3.1479554979839905 +2.2255690014860354 2.691718527616709 2.737558765210862 2.5005258216886412 0.5229531499347334 +4.198943967320937 1.9422494367199175 2.1905060309921054 1.2701151695131672 2.437168345096107 +1.681793450126098 1.5397311092336827 3.7416045122317954 4.943471279362125 1.2102336281198534 +1.3159563334813584 1.899020167527238 4.9333479267564595 4.305419271769308 0.856888458509189 +4.515731436318051 2.949914040968793 3.091408402176994 4.757765905895932 2.2865982257009523 +4.536188601088531 3.6878604167652322 3.39517925068972 1.2625878035489704 2.2951267914289923 +4.005119755654821 3.3973343811370094 3.218437835443118 2.8810331649209835 0.695158236064212 +1.961577097877829 1.7437038345400935 2.2473650075638605 4.376041919885415 2.139797690420349 +3.6027452117829073 3.1639158599280788 3.364314973007206 2.459622889442941 1.0055043342090477 +3.705943483094327 1.2575730831797225 4.373362842430261 2.368957910685196 3.1641992265946115 +4.841894408843087 1.785046784750774 3.420572327114604 1.2135686757578013 3.770302708539605 +3.1214576337810067 1.1585560507883352 2.0347901252005256 4.397180446726386 3.0714606713669954 +2.9732162865640848 3.319355140775091 4.8834696404019375 3.2309521257044804 1.6883797685285051 +4.708743858002027 4.819510953541753 2.6683596418436264 4.552708482113003 1.8876016267419486 +1.4293049202491468 2.31115953919019 1.6296161867862229 3.5260240219723644 2.0914182380153044 +3.3757124087942976 1.6800880190097152 2.1495932547791683 3.135987016167139 1.9616612153319049 +1.7482980660954919 1.7318548615756737 1.3655747644438545 1.7351216305413595 0.3699125102201436 +1.6613510780230976 1.6973634003462905 4.316643820653552 2.790748362482307 1.5263203584525575 +2.466695573736152 1.793922366126874 1.2677617553574239 3.4677872450627896 2.300594693602115 +1.9240576782669838 3.9973059470004735 1.3388206685233164 2.5927442532362877 2.4229491823201412 +2.027091678841132 3.855421336433026 3.5250874482254764 2.7717778589209985 1.9774389179360694 +4.7597865268156525 4.820067475004974 2.5365213460499616 2.022227494819781 0.5178145982181022 +2.80288072759443 4.851396467047371 4.150889437814641 1.8593825192540292 3.073665676777092 +2.5264209050295103 1.0960728027653412 2.495771776334141 1.8280161557517238 1.5785414984947717 +4.234206958550756 2.4263688841121223 2.9415241186132555 1.9543857598771504 2.059786552698652 +4.5038756403735425 1.7547632682691159 4.957704219360661 4.621537217068372 2.769589696667687 +4.279735444950312 2.213654009344755 2.3454644209507576 4.577981429595097 3.0418456062792183 +1.3724876260711074 4.031606855452649 2.611810953351487 4.3720763513325895 3.1889574075857854 +4.043936111950746 3.3393996202545626 3.555527133368955 3.823509143156426 0.7537811523919249 +2.5739057138487413 4.084545330164417 2.5173971606718437 1.1482715880814505 2.038758662496212 +1.5476576340370154 3.8732484387155113 1.260959478548708 1.8691004492774441 2.40379034674076 +4.12526501252186 3.541229922348074 1.3907223657649124 1.8623134821193976 0.7506631518722441 +1.1153860386665193 4.81461457632115 1.7762527743688383 4.702396009592889 4.716630789752988 +3.0881481736999805 1.8626126524749087 2.7842774470983276 3.208874452685548 1.297004213924551 +3.578409374552969 4.564032970867565 4.571322925982061 2.450286353570795 2.338856561467216 +2.90471411576044 4.384381676577483 1.0225341283022429 3.5546796885779153 2.9327763687260675 +3.023652046638219 1.9409152386127406 2.176689800668207 1.5174648857198445 1.2676342074675475 +4.043001183853887 2.380602013701658 4.021386941004243 2.7736147256469192 2.078582811037497 +2.7606089915182324 2.6791417047913018 1.0974367331012296 4.8338480501307535 3.7372993523175193 +3.510934337283973 3.0265457312596413 3.6241698002909515 1.1940023530636843 2.477972183703701 +4.898275900997203 1.4467686994892897 2.13107990838611 4.078463876138876 3.9629794700353287 +3.8264326434534826 3.211372103578532 4.250998833398873 3.4134160638801756 1.0391556012002614 +3.2330649452341222 1.159912155290932 1.3551739596981096 3.753799621376043 3.1703891804176245 +3.333085402355196 2.6334845272630143 1.243612148987482 3.038261851611085 1.9261902656686676 +1.4843146873408428 1.3155240084202253 1.90446737282746 3.0005108170711727 1.1089641675726514 +2.314569113750814 1.3572761276431815 2.163982091677959 3.4414390884188584 1.5963415172741535 +1.0031007831096228 1.277354773122915 4.323639385211471 4.766657409177501 0.5210376383688391 +1.1011393250370678 1.377261755480074 3.797682559973574 2.2626063508772805 1.559712333838263 +3.2245199647127354 3.5053502166294503 4.335987260886137 2.928153530470947 1.4355700759232741 +3.7071986499441927 3.245363167941759 2.830081367880141 3.847144094015145 1.1170087740611472 +3.8023067152100234 3.0710440906462835 4.213193235511863 2.9885097136863177 1.426392216297772 +3.0705764973152627 2.008764324952118 3.380652726472574 3.53125074588862 1.0724387408288534 +2.3718431995411127 4.052640750571755 2.1440414671529573 3.518055340290476 2.170943235353005 +2.05926665367099 1.6790746849559253 4.152362236631824 4.99131813945335 0.9210824827096208 +2.044180362836189 4.756769178001948 1.840869610677525 2.830867491630398 2.8876000215496527 +2.0004221319867184 2.0053125410612176 1.9063208225698416 4.939583683601143 3.033266803334766 +3.2095521026843463 3.3499575035588873 4.4520996544630185 1.777698063718983 2.6780846784911354 +4.860877435418832 2.078797556466822 2.3028990778112557 2.142218598892 2.7867161084644683 +4.977363439189497 2.326886405508155 4.826666147981637 3.414113407709637 3.0033870463398786 +3.285376720103078 2.764981446969881 2.035077358877325 4.537692963407078 2.5561486858817895 +4.170907052799092 4.90645458329557 3.4885905614859247 4.890619604750713 1.583261067473537 +1.533121078567691 3.637180008667584 2.7533808014157723 1.4243525141784152 2.4886502706507736 +3.910137041208361 4.3284915456752895 4.543398915215804 4.20863356114824 0.5358062464097925 +1.291164788280816 1.4239244701956029 4.8021397017994225 4.781915742430323 0.13429125688099872 +2.8936653351472694 2.0673243550244482 4.321817033342415 3.874541122690401 0.9396250080111391 +1.3860719752620527 1.1539194385003637 3.5734353219667803 3.700046763429474 0.26443384320874747 +2.739758131905279 3.688736999566785 1.8318426721882615 2.0477058629076716 0.973220328792858 +3.1644214849128045 4.35004538927123 2.8168250074675902 3.7243048058950734 1.4930584808171792 +3.838279273646999 1.480711052224887 3.161065629266118 1.710510403876011 2.7680748509688033 +3.957901708462829 3.919434113472339 2.6524131058744405 2.7480407685943278 0.10307475802358644 +4.279133724847028 4.375999749929146 2.5876036482998606 2.6243554289108078 0.10360366882154666 +3.8230028482676035 2.5737102536766296 2.664936942796922 1.6909651583934822 1.584093754710834 +1.0685399622797163 1.2888804989532012 4.108213039648673 4.256701790409702 0.2657044621456898 +2.983928061222958 1.602952495430157 3.008455406467186 2.928991504280203 1.3832599267916095 +2.7943846012818914 1.2374977162846488 4.176863376231884 1.8406785042236922 2.807428811007743 +1.5184836153275274 2.0855538822807533 2.467632662688244 2.3537789812788916 0.5783868501555557 +1.1324580878309165 4.660082935294145 2.148739587648928 1.701770063260009 3.55582885136116 +2.4971041537824186 1.9774960301041555 2.592490752211454 1.5790744930113636 1.1388613245709727 +3.4659155221143165 4.12473707011301 2.822595277521596 4.314297669233412 1.630712070705968 +4.026180125809309 3.5611189391773936 3.224733352239364 1.7396298010089675 1.5562180005348287 +3.289941926750818 1.6720287821295292 4.455381482644183 4.855467089530412 1.6666467641272609 +1.044424703773199 2.3574203497506327 4.351999427271959 2.0862693755936164 2.618681010248107 +1.893265352280411 3.40544653382667 1.3480768294906627 1.5297339877577323 1.5230532653102802 +4.8039141000189005 4.035737297205314 2.6507975648706936 3.5114640627739804 1.1536214374715876 +2.317670079234247 1.3678712184458197 3.1892828006303278 3.0738882347066583 0.9567830379974898 +4.523407521627757 2.4805318714081186 2.16608770992666 3.772638705773864 2.5989126619642207 +4.3637149743931305 4.052892401784979 2.176963855029027 3.749450587563935 1.6029114746738389 +1.9862252495804809 1.930967571473997 4.589086515408164 4.710540962089347 0.13343385480586267 +2.523539490765422 1.3809965489036173 4.9388900311390564 2.1896277658798944 2.977221418903231 +1.3527183708972266 1.460302262588678 3.804677941569784 1.1279051166159073 2.6789339391188864 +1.7169406297569174 4.408031190936031 1.4131317128162704 3.249810984338119 3.2581220288542516 +3.733606847384747 3.867488363450239 3.8372922081467795 1.5855198273547555 2.2557489034114093 +1.064405176141877 2.285943840667593 1.7655520379266325 4.619592377404896 3.104465005166022 +2.177028518517677 1.8569330660165027 3.281317345159332 2.9023652264179804 0.4960502061389461 +2.4150533348712044 4.919083229815062 4.012685457263338 3.4581776322739017 2.564691919655665 +3.357038617220365 3.828365009250795 4.160759357041124 2.820009884874651 1.4211818022121938 +2.2728465210449835 2.1229993989726057 3.5237729636400945 2.256927927743125 1.2756764891500383 +4.106622632920773 4.714004549931494 3.36853961047014 1.8393201896145874 1.6454254253029548 +1.0258227053980171 3.921701563879618 1.9101356002265288 3.2733650965317334 3.2007044572401937 +1.7130086640128548 3.341114599690036 1.802793843825337 3.274382630414441 2.1946075946742876 +3.7259906310178934 3.1309834823528164 4.102918671295744 3.3206729817342557 0.9828233950207299 +3.239662830429419 1.687283146241906 2.8731198690109525 2.117488830065066 1.72651699988635 +4.691178198177175 3.0984116878020327 2.440802709938002 3.518723975437997 1.9232315022351625 +4.6338777430995535 4.825465051066544 3.3335665156333323 3.306184412727118 0.19353417303826492 +4.468738192127295 4.373904003988633 4.8301086679469325 3.5520882073287274 1.2815341669259888 +4.0801906526370875 1.846162850065208 4.666903933704378 3.7737350785046493 2.4059573617508137 +1.1520815759774066 4.800422065140451 1.815589741371113 2.742681120542937 3.764291002327152 +3.388916958883256 2.5297771566346388 3.5021180854321767 4.646414856983878 1.4309214867320426 +3.592465123422786 4.463435630496642 2.073700026732097 1.9110823710616174 0.8860215156124892 +3.2374973755979344 4.391857221867108 1.3125137876100919 1.9451631525536413 1.3163555270678458 +4.586588346173796 1.7374585937497438 2.1805976602569874 1.7513634896131784 2.8812813676203546 +1.0231956629386265 1.1046013158434556 4.733890990458279 2.7836377027969212 1.9519515276662982 +1.6091645902531888 3.1235910160494527 1.7295950752126767 1.1999943207917028 1.6043579270952326 +3.8599832655526756 3.891394410965895 2.4593647595132033 3.1340798505219643 0.6754458631830763 +2.661529647316955 3.0970390383282176 3.9300353548720683 4.4114008540923315 0.6491387937094609 +1.8229814561310476 1.4158899096086932 1.6980019268258655 3.433802239864817 1.7828982735972583 +1.679173166214396 2.090193628381365 2.5679568814639366 1.2293506873535969 1.400287243114968 +4.2104151448382225 2.887617395661209 2.6282561331865204 4.866251872793985 2.5996959083186892 +2.1953115762068487 2.5347998808624674 3.572888269395632 4.833298534803623 1.305329975961553 +4.793688093262018 3.9773342101667652 2.242927006643892 4.256629715551293 2.172885699319157 +3.3231671620274956 3.9241932810539426 2.8662921615045533 1.5890322284954763 1.4116038156020778 +2.250039656228125 2.5335703511319387 3.5977824046962428 2.0329638214399637 1.590297724785151 +3.1391880139893296 4.4822885595001765 3.069452357800447 4.289897477199828 1.8147741911370967 +4.661096485612578 2.956826211147815 1.3958449501132648 2.8253698555382023 2.22442770699665 +2.5867346195284937 3.476695221632702 2.9967576506279245 3.7722840961076853 1.180453786023052 +2.9296933113677746 2.7139802345965487 4.099143985032677 2.43286643328002 1.6801824338341769 +4.221385147808583 2.7502143587032397 4.448654382528345 3.503033341204442 1.748868961503789 +4.4123543533521685 1.7383566496750444 2.483866537563068 2.4610714474672255 2.674094862827983 +1.6279293507368449 2.741770276627424 3.3004174571969993 2.052755876275547 1.672513386701643 +2.5610236807151736 2.437348768835571 2.5417385717782666 4.419241061536433 1.8815714397483139 +3.188879703583585 2.734729781195551 3.3336102834657835 4.812573526221572 1.547121335069675 +1.6928880348488389 1.3594458704153407 1.0459261957649573 2.068295686084731 1.0753711228031044 +2.975999714116944 2.0513344750138334 4.788107362858495 1.8514772581054344 3.0787663400374488 +3.6197042913673694 2.3838357386316336 1.4592014644584097 4.0218924759085395 2.8451285207892476 +4.559714418882278 3.1420273059675035 1.580347390148384 1.092993706858477 1.4991165274056808 +4.133856719346721 4.480371629452046 2.4190544105563885 4.403024043595994 2.0140030009284016 +3.0123531168725712 3.337778353106009 3.0771545870424384 3.0531716944548197 0.32630777421700824 +4.763914729880546 4.649713397198302 1.785606507167195 3.957104098129765 2.174498501250954 +4.196312276297887 2.474653604278454 1.3573790510393513 2.148187297198208 1.8945939578528594 +3.1598905799540806 4.642591015353989 2.155404731099142 3.0454711652750523 1.7293405790594567 +4.726163704042827 1.8596477721255638 1.1871465459592794 2.7170639224510444 3.2492400291186465 +3.9389239982520845 2.0801126170544864 2.293028695573402 1.0547673030813796 2.233488532991832 +2.352954311616405 3.5828734407480303 1.4795109524677765 1.2149738152169829 1.2580464861000726 +2.664135764053773 4.908500850268037 4.277162034219986 1.6631403742306956 3.4453278333288875 +2.821700811797784 1.1182296184296812 1.0855116025656915 1.6765702134280502 1.8030985519681084 +1.340391355206 4.131912512834997 2.6306027150497346 1.3936937366807616 3.053282527749457 +2.239113098416646 2.6618820717204006 2.9654205831949687 1.7535327035741997 1.2835130842963909 +1.5130388886077117 2.481695617054419 3.3696201032439 1.6225142293476353 1.9976673377136414 +3.684083677500808 3.9550352589239823 3.8962310385489576 4.446872450759323 0.6136943248203822 +2.7400372429738167 3.5618214018367342 4.420103062732361 1.5601542584179038 2.975674102965196 +3.3430218127752793 3.5603449457535357 3.0508298472661592 1.1124843208348811 1.9504903803822344 +4.435548383681878 4.248356586058135 3.491099070527309 2.8045778836734154 0.7115842248791686 +2.274452088665273 3.6386106718268376 2.9702137682944003 2.949954271968562 1.3643090145581915 +3.152969269733739 1.018803056798013 4.547479700279391 1.1962836691279053 3.9730567908905967 +2.8841189987741536 4.6176494274833875 1.4931395443535451 4.927116612732826 3.8467292929728734 +2.7007195265064396 2.699599588442915 1.1140498193812274 2.5140093228607636 1.3999599514428747 +1.8647324320057423 3.9431658497508524 2.7648466937289142 3.6735335533010525 2.268390901224631 +3.759654110879187 4.05192115554375 1.1859626279029065 2.935343210692715 1.7736269192924896 +3.1895708649888244 4.988274604832817 4.717859176554553 3.620995216536988 2.1067618969675195 +3.4646383910423637 3.574468732911174 3.6161678039433656 1.1309198790452961 2.4876736024256036 +1.8062955536620273 3.2532119033481783 3.2297615834831546 4.3056735147749965 1.803095506867353 +4.140349046786136 2.3275613650454408 3.5821694131016835 4.509383057412054 2.0361542970183093 +1.7584772078665236 2.5036508320564725 3.3711054476093816 1.2126802879455942 2.2834366424444603 +3.9114907759007016 2.4147934912134743 3.215570508314125 2.5613465963008135 1.633435547868394 +4.192613717862455 2.146566665177727 4.417217094979852 4.746913258746989 2.0724401323566934 +4.871630185761781 3.8974524574763234 1.6648598362165852 3.3030890495009917 1.9059950686048115 +2.180977018226711 3.6598949831973138 4.82578858100293 4.3924151625645536 1.5411070264331912 +3.9579293037469103 4.140093488581369 1.0238819126815315 2.721975780098905 1.7078368109385906 +4.0334279665413195 2.349140762122905 4.717260218253518 1.2591187854497168 3.8465004297727465 +4.62444778275594 3.2808347961668685 3.631350227658781 4.923455884031467 1.864090363947278 +3.5940185679940453 3.508003733467721 4.330539803064386 3.6281386501137796 0.7076481692373205 +4.884645763517624 1.7036431026795595 3.9604199927297836 2.9276720219189416 3.3444500742981287 +4.255173390246416 3.6706062130212125 2.781522913641943 4.001017404912043 1.3523629686320022 +3.0963716402471886 4.121637148602456 1.7559283244437403 3.540775910326741 2.0583610634325944 +1.7220056306651572 2.5418591473801593 4.7448402480489325 3.3983032504977015 1.5764903027434833 +1.8632910669321578 4.315555844548942 1.014167898334981 2.6364261236605246 2.9402932318352666 +3.1988607099758606 3.8619220249804895 1.956249172803501 2.287866556866874 0.7413638761557664 +4.58539855543125 4.470436086769009 1.671393067143062 3.446843150863702 1.7791681677077478 +1.128780255453965 2.261899616636964 4.034801084518727 2.803165173499882 1.6735849258400326 +3.8330182904683765 1.0275378949926512 1.8027544056605662 2.93721495840649 3.0261726644616993 +2.887241283163149 2.6347849865668898 1.3150075680265862 2.53026455752103 1.2412025347243685 +2.1290030954494914 2.5040807575381265 2.34149244546844 2.377260300422531 0.37677923515753 +4.0202526935944025 3.480516683542139 1.8816384926051026 4.00851181420937 2.1942891985103294 +3.3350845211563085 2.587020493529177 2.557796965598815 3.2192241280588907 0.9985417771278843 +1.2706525371046147 2.2890573944835846 1.8438594403309896 4.686394963531631 3.0194629744692394 +4.110068719530307 2.392394387239762 4.87962684446982 1.7863670005754937 3.5381720667116974 +1.771363700703445 3.648284831313498 3.2720648412106716 3.466826345039059 1.88699893320161 +3.2462778409330344 2.341554815966862 3.489149038175146 4.201999839017203 1.151815964538217 +4.799084199672486 4.734191373700127 2.8353995956791316 2.9741647027794325 0.15318888279257373 +2.931718011790057 3.889271585305431 4.369732930962737 3.366122992889603 1.3871343676627812 +1.7043594249885952 2.101467735307493 1.2617646792049455 1.596834134368358 0.5195830539074926 +1.3285019528639195 1.8278359889389337 4.285234713223922 2.862822220983006 1.5075117835910856 +2.083659797807844 1.766606890561734 1.4989673160452806 4.479623523776873 2.997471263362184 +1.9435745626420426 2.960724807476645 4.2391686265843855 2.51091303970196 2.005358320639334 +3.6691870552638246 2.4131057668523885 1.4533637309435057 1.8531316199843815 1.318163331384063 +3.8811724166971318 4.177777826611301 2.349029879922623 1.0648424737810762 1.3179954716473445 +4.663582061443038 2.0268304152706014 4.50075960224607 3.822096668119212 2.7226903279202963 +4.097081543096856 3.233832626759703 2.767186782769408 2.786854812942521 0.8634729428118516 +2.120768735540869 4.841685598526361 1.9862615468959208 4.439503786416701 3.6635755841865394 +3.117853608167695 3.2008264446625128 1.477605700027957 1.147825678891635 0.3400578685116237 +4.4130665791747195 1.7340553305419002 4.199938063792681 2.6081316680118936 3.1162395402070424 +1.9621921392281871 3.285596956688281 2.741605067892416 1.4021886892004733 1.8829329638584646 +3.102926871212746 3.417703365606498 3.0277802151946815 2.896677378420566 0.3409870895401175 +1.3650806912704296 1.9763614790851416 3.954825636679497 4.103874231567845 0.6291897052476032 +1.4061216940773797 3.651867246592619 3.014590163129289 2.269496799072107 2.3661228217918073 +4.668770895860813 2.3569369244909137 3.917631349699871 3.4260267868315166 2.3635251971182596 +3.67101098549107 1.6152394053649242 3.7299113181604615 2.067208856000272 2.6440076148392437 +4.742441582937616 1.4550410893735095 4.399658862959423 4.969368569041401 3.3364009282892764 +3.4574792091865114 3.702785600933116 1.6475136240201582 4.40457720019525 2.767954983178579 +2.637902688773009 3.3638939205258778 3.0097084952007767 3.4824609112686638 0.8663475719825574 +4.793305219845868 4.529176239252228 1.6914407436235406 1.6722952135532263 0.26482195851384477 +2.896148536951021 2.0043111034296426 1.3140983605379244 3.59297798145856 2.4471751744567407 +4.543354252342035 3.4403846821545176 4.204428467613706 1.6341299192988639 2.7969584373438625 +2.441900381013604 1.9940615707514988 3.668357182907268 3.803761063826679 0.4678608884540532 +1.4704694281866728 3.4263800041475 1.0572644957542487 2.992425778225059 2.7514424163208444 +3.074914634640135 4.808898166565012 1.873337335712232 4.470037452950269 3.1224270028057832 +2.618558275872634 3.230483752061191 3.2155066523727998 1.9319250595384085 1.4219825926754044 +1.834186710214985 4.467349735981276 2.572004848969973 2.5686105183193924 2.633165213529766 +2.796659769074504 2.19665479087755 1.2294478721277224 4.96912831787971 3.787507862724632 +3.2257628700829666 3.9415676804615556 3.055781436047605 2.6793168350335237 0.8087658019339217 +3.5559285109445296 3.7475677331197215 4.988641720160068 3.245440658378762 1.753703376649365 +2.2211376758085857 4.212001189616532 1.1717683130726817 1.7771050178412828 2.080858009752667 +1.417105441944413 4.785704676716963 1.354134486482653 3.050736684994039 3.771726371902379 +2.284226981191305 1.0359906938547532 1.7087775292652143 4.56899914820416 3.1207309301619484 +3.3265475143681975 2.4441131138110546 1.0459094929128976 1.8093125274376018 1.1668224648198076 +1.4997481059954518 2.323846618657196 3.7058262766632777 4.459061393805753 1.1164683158370134 +1.1141597633708824 3.4693002798004273 3.8921841493979445 3.428918809491026 2.4002711570335333 +3.7549433914725445 4.004316984410112 4.860746631712018 1.3753994577172075 3.4942570186132844 +3.072839810650574 2.721182972249613 4.174480786243262 4.788194466482013 0.7073238390626685 +2.520285661063608 3.978507312896332 2.660625747263473 1.0437288337058912 2.177330019759474 +4.440172101183668 1.5860733935929563 4.839131149194239 4.38363049118983 2.89021803366345 +1.273806036165659 2.254226206411633 3.1350040163478474 1.7253188649589744 1.7171010268098423 +4.869260501694898 3.6695418294321493 4.428938650094638 3.250102591897387 1.681956998463969 +1.4876406653599634 4.991202605525373 3.269471512674971 1.836687061803421 3.785210370803042 +1.4549934738270784 3.557588914222128 2.884592965766976 2.4662776146082135 2.143803936694103 +2.305961121469996 2.3676886652435027 2.6034455781021975 1.3672670169582695 1.237718758317972 +1.6658872886916787 3.2063069897602525 4.531353731263805 3.980117487856879 1.636078925811825 +3.0136242243865334 4.274945328950253 1.1851006921998577 2.2028549576324505 1.6207265881770674 +1.3048222305025479 1.989684018590315 4.362562841376448 3.2557046712197013 1.3016031183219852 +3.4892979373316595 2.8859605008614224 4.471731989982672 1.1429864968114751 3.382981321342764 +4.711450824668585 1.1753502315898077 2.2492602915463267 2.6838349042960887 3.5627043798803584 +3.3726265700571316 2.3275408563412103 3.6754333943652147 1.6861943471291903 2.247059442040108 +2.331247562594021 4.73830618312565 4.638663621555852 1.575190025155897 3.8959981620266846 +3.4769263698006996 2.9663436794037885 2.012287428797488 4.679640715824041 2.7157813316878636 +4.6135200939425 1.8804103073470122 1.087724148379864 3.064416800060166 3.3730109612616053 +1.1980780880836028 4.454807515919908 2.213798862188477 4.777910422177031 4.144991514852826 +3.6861327625593328 4.432098230321744 3.1266551461252274 4.220231361465895 1.3237724192068703 +2.303908288397866 3.7842886081509577 1.506972347596181 2.191503311747682 1.6309839153083177 +2.7046775475866935 3.553926894913853 4.335945874067665 4.945605386977997 1.0454229649370006 +1.9286541756262907 1.384360835273748 1.9793765124707212 1.06141098730664 1.0672000495417417 +4.244030547564738 4.269882992546597 4.024408581259557 4.615384249410376 0.5915408601760713 +2.779777544174314 2.434370599406946 3.258343740383131 4.1584758707726355 0.9641285234101707 +3.4990749699882695 1.3075031478883212 1.644783998455384 2.3444886981377357 2.3005594359155466 +2.2167818661162495 2.130019146062498 4.032665921970095 4.6428641914159865 0.6163357020535861 +4.629401805641788 1.1487839966108133 4.66318455241001 1.1718766232278393 4.929901762602769 +2.542995872317838 4.865063332534035 3.631976432308724 2.2881565695760613 2.682880748984146 +2.7203782111874886 2.0969822948459313 3.1904106111608908 3.820884127449611 0.8866337029759205 +4.037846981779293 1.8649430625356853 4.42156991565872 3.3799586689855485 2.409660854033253 +3.5529480517843424 1.850973292367875 1.7191191937424337 4.389985429830938 3.1670561303469693 +2.5721263164945354 2.497355041630878 2.7542191976007175 1.1819593721463382 1.5740367537902575 +3.0113519807341373 1.2133081608594396 2.3993872056200143 1.2549772791878286 2.1313459733009363 +2.756711071738249 3.7212042573086315 1.6780081799828492 3.0610511961188616 1.6861361420402277 +2.813251884141771 2.5709012391387787 4.963466369012616 2.3274155889652324 2.647167835654133 +1.961298536359858 1.4521479797815626 1.8110709323684988 4.104769124901749 2.3495288224863904 +4.306727292059072 4.738115258808964 2.0794143267927803 1.6814916933280104 0.5868884051335007 +1.8949163678343957 2.7142578652108593 3.308893007170087 1.3382990228257121 2.1341417807768406 +2.412316459823481 1.6232518707076338 3.099072593717393 1.2232324935659582 2.035042753146161 +3.2319618506852903 2.7817335442803492 1.4772643992786798 3.4120964383201273 1.9865247411470985 +1.9046832157774682 3.5499226349528787 4.715968391389332 4.081361067985856 1.763388556537091 +4.498849521163034 3.0174911160628106 1.4681155954933436 3.062406974363582 2.176278411670034 +2.08278390881862 3.6437104589646143 1.7670758607666968 4.514959358121005 3.1602777425382755 +1.687637182558503 1.0873826127390749 3.7632535122162762 3.1206155066299144 0.8793686114554713 +4.653595648316563 1.9646345163752676 3.805066046412593 1.8597813315377696 3.318831811197524 +2.686419109696925 3.11891505494646 1.5884985055428889 1.6291517382160086 0.43440238026979494 +1.2405762748685238 1.6954439341348424 3.674221753458815 1.983787584466877 1.7505634142018058 +1.6896713806067591 1.3392319398115315 3.5717140176557716 2.5671284571703183 1.0639548627647435 +1.421631750077689 3.2156026187716407 4.574294146124659 2.3376240834365842 2.8672328902702704 +2.4667853992562168 4.79716192437426 3.4049220292537403 3.427804037523306 2.3304888618321464 +1.7469420809239553 1.5185217971411946 3.1865873617808327 1.9855791014986757 1.222536979935319 +3.1616125719412422 1.5997283090537087 1.0356824885786025 1.2920272477485533 1.5827808080115306 +3.808831730010712 1.5129096794742023 2.6303202232079235 4.772704096127281 3.1402335456275727 +3.752073044015134 3.3452778972107464 4.692830785784121 2.2329690942199476 2.4932713115681095 +2.0491343222311698 2.710627859690402 4.773494625248266 4.741595332960639 0.6622622327664324 +3.783813880755515 1.7068005797490557 2.0188363341464424 3.7972920964635306 2.734390087583811 +1.9184283238715727 4.467727096654721 1.6335383839352642 3.0289811016204586 2.9062320298376565 +3.565053506131752 3.6946271303839424 4.71893356179334 1.4114280023179306 3.310042650792069 +4.288686212824634 1.108769626896287 4.4289643604747155 1.1169352203458454 4.591449283017833 +4.5839791548466255 2.3015191180113135 1.951942349825151 3.498238336881501 2.7569285626103603 +2.9143280993846705 2.7734532280517796 1.1672968951903337 1.0844774040895038 0.16341602577244077 +2.2418842649550816 1.2898056901112507 1.1020553461691498 1.3931756913261277 0.9955926215279913 +3.442126692499066 1.7475802509703735 1.3623865604778036 1.137947195510197 1.709345100044054 +2.052036812543582 4.934664469568485 3.076407003143644 3.1726227747510385 2.884232945472832 +1.0529828337526066 3.02215053824271 1.1347258799890914 1.2727887189402134 1.9740017213533696 +2.113000024447584 3.992785158563509 1.1014443501594582 1.1560966960575292 1.8805794397885427 +1.2765291033878947 4.612465728070875 4.5451187477477015 3.144745790823181 3.61794383350361 +4.375681466364949 2.0995608905016763 1.3180485283344172 3.5689164886418303 3.201114095218508 +2.520213543932378 4.587493766395797 2.098649186426765 1.1600780052992792 2.2703663537481007 +2.1175696901902157 3.8962250623522365 3.6776362649080134 2.8976641415992814 1.9421563907315882 +4.193431151615275 2.4632339166935426 3.1036773051977202 1.2403133276105 2.5427756064388527 +2.1669516622902125 1.169258387752762 3.436546444599669 3.3642061171753572 1.0003124477027752 +4.022850647192392 2.4190016907199583 2.0116660773748323 4.596870445127248 3.0423039128633884 +4.797565896149365 4.0427295104854535 1.1782221945465898 1.3535488704831997 0.774930585547595 +3.5003696307728345 1.2067597424873857 2.276963637709618 1.5284559871226815 2.4126562172485255 +4.680271307426564 1.953786394077929 4.769323455092968 2.8805515355596123 3.316802578800165 +2.816163160389309 1.4115375527285354 2.6621684562698635 1.6516393599016697 1.73035896631396 +4.127964871030327 2.319233899912091 1.2681720413059283 4.863913433050254 4.025029674696292 +4.705269133766469 4.652374941343709 2.1544425952348942 1.8825247088514523 0.2770146792632016 +4.387098464117983 2.1326630776418187 3.3220452857076452 3.0474908005579144 2.2710920450549263 +2.879175076292996 4.896454486542958 4.723092412712159 3.2776244784579194 2.4816917149347244 +3.797054058578811 1.6187213729659966 4.974996816772309 3.919467411343046 2.420594062401829 +2.473263566923929 3.8030796956018107 2.7050665007084524 3.207746759818611 1.4216533962224704 +3.8206071085159556 2.19406776299252 2.0903176758192505 2.794190570683928 1.7723056436915696 +1.7130751010378829 1.7984298212262892 1.4116392863630223 4.416617192814865 3.0061898886334744 +1.3134282220299562 2.786535256507383 3.801324681278977 1.5589012622548077 2.6830033777867155 +3.122203648736814 1.0526116339640441 2.6895596086529956 1.2936114912971752 2.496373820957204 +1.73943685571049 4.0334461703635505 1.844244095260485 2.3890289439802532 2.357810269531801 +1.414792968294257 4.290694097984474 4.870864550754485 1.0055498640009937 4.817827823343805 +1.443081476182404 4.1283833177520535 4.263518139466279 1.7368454101388866 3.6871291083258915 +4.773683523086014 1.4386668377844423 1.4875783135465492 2.382868774122788 3.453097348763671 +4.097890122557989 3.271816907854772 4.343592340581065 1.4033293117203103 3.0541027544821615 +4.674875710502434 2.042463683039323 4.128968955546169 3.458903950087649 2.7163542099425424 +2.6230215517577964 3.8946489304304905 3.23849443064255 4.465610524901793 1.7671587645087374 +1.4413182682423358 3.201759296860414 3.6430457835821675 4.41627602921949 1.9227682200437555 +1.053988441966133 4.546732926951936 1.2436787423993967 4.710933098277563 4.921495383087834 +1.1007658952329011 4.753089214425732 4.68979935484067 2.0460821605041764 4.50873665582169 +4.295523843956368 2.15276616222083 4.5632150854471965 2.2078866202698886 3.1841769205732193 +4.777095047082698 1.2108550947684495 2.243329721155362 2.5117585331912675 3.576327924647478 +3.884472872128384 2.948353331682608 2.912380533688481 4.938526155719048 2.231946656100464 +1.299477211569398 1.3843340954032612 2.9601349595942987 2.1100801546843546 0.854279732923869 +3.038556509504477 2.127020967319694 4.632438635961357 3.471227654918632 1.4762479423051922 +2.403537452030207 1.5022380794115247 3.360256944805599 2.0516767693707343 1.588937580468148 +3.6157661192598205 3.821013420343963 4.277769680127172 3.78966720873476 0.5295002145247014 +4.7653071471205735 2.726885276766911 3.511214661089813 1.0263992098798687 3.2139495248226604 +4.21717436448585 4.070219498849094 4.155209960594176 2.699620227590175 1.4629891330290106 +2.9563549234698705 4.074981625175492 2.8953944106014724 1.7382236504686102 1.6094626015770803 +1.7056038527140425 1.5602051706069653 1.1313451884054082 1.8863261641670706 0.7688543753666923 +2.189121298940343 4.215286490198764 4.4452226522945955 3.805144187087808 2.1248637188979322 +1.0327327410463596 3.339281426768981 2.077583820093193 1.7764765830041913 2.3261196030806595 +3.0088360194727377 2.995492945579289 4.977180149105935 2.02964974927383 2.947560600828308 +4.9749577889392445 3.197426472252859 3.2431746157768226 2.9535557467691342 1.8009710356044395 +3.9427990561751076 1.7617940305811457 4.394171093848504 1.225099836525613 3.8470502408541805 +3.0097955227301667 3.256114003743018 1.2478250583298056 2.0926534513784123 0.8800044362328917 +2.036277277301978 3.899707521074949 2.4212054804654124 3.1731593246262526 2.0094294854898638 +2.2819935553594903 1.5537990823957233 1.0833772149920553 3.5726330614030406 2.5935808950842945 +2.961934909519933 2.9408423980492615 3.199411485779839 3.3406268077915064 0.14278186583386326 +1.6691660235101131 1.6927901127467897 1.0941219401835864 4.6128335988436255 3.5187909620183957 +2.7453522183873726 1.99168640662019 3.541465875627802 1.330076073349216 2.3362912946480816 +2.8324511161285457 1.140884680639302 3.237991687154924 2.178733887622453 1.9958517208310236 +1.5162851664046233 3.4797844466175296 4.650743049215446 2.7549977845821614 2.7293185105033317 +1.3545564881549788 4.992594448046738 1.627177390492014 1.4325373726771669 3.6432409931472223 +2.5643742139772607 4.929923569554468 4.397549938670853 1.8522997379215038 3.4747837829261177 +1.893343811795464 4.612253063629838 3.6025138196455075 1.042464814838473 3.7344769950722743 +2.2196775852137822 1.510501652525678 1.452041126320799 2.2574292636426314 1.07311721412098 +3.1867023594321964 3.3725178510086136 2.075822582700569 2.4752857818325382 0.4405658229714746 +4.962926472095917 2.3074402148827566 1.4561176279389487 2.1424713947327994 2.7427520404586465 +3.7153374370534458 1.6144767791849257 3.7843926137751867 3.2797394072321158 2.160622679380635 +3.8877935328508393 4.944156826425115 4.801670208004467 1.126781295006245 3.8237039543992344 +3.828416966697168 1.6259292484022336 3.8749084987226285 2.823244365913416 2.4406862964087335 +4.945181755952571 3.8977737468489453 2.1129980111212783 1.142691192411316 1.4277810966564404 +2.8483074037566096 4.945998395262678 2.7606651412525802 3.4777647825172133 2.2168760432977703 +4.195549562650648 1.703380652717907 1.3968340308361125 1.351392952401747 2.4925831515206514 +1.9837631092463517 4.680141671584261 4.675126341305874 3.626051661324429 2.8932706467963936 +2.0590814475986576 2.8909867482595235 2.06176438961579 4.389703815319696 2.4721182008581786 +3.5169218863133733 1.9672914299933764 4.585593477540643 3.657220755933501 1.806441380554258 +3.481787210038252 3.3977134205639277 4.0442964664379275 1.5463634864007565 2.499347429797217 +1.6446887232493892 1.799851196004604 1.596200839020189 1.8117372096213384 0.26557733337660583 +3.5888387516389693 1.7660839348611126 2.995218585358178 4.141859882367298 2.1534208567053574 +2.8439477061218392 3.915694746320235 2.8773267007887062 2.9915450112080206 1.0778160977685687 +4.3358467399575735 3.954510327194865 4.201246689335232 2.346744470522841 1.8933029179924727 +4.444166661064269 4.235280393196968 3.4817068745034785 2.353144616815038 1.1477309102670188 +3.088790794651307 4.931140991638824 1.247980728121004 4.8244345064875045 4.023092824821714 +4.881180107435867 4.375434494606502 3.7496836758880403 1.603671802868932 2.2048005769309684 +3.384144199969973 2.7773666826440793 3.695354903680968 1.3781599715233748 2.395322798528208 +2.2169924490332775 4.362366127364152 3.6891025199256795 4.423198721789105 2.267493209089115 +1.0402338796331434 4.475626938801275 3.1007140498100636 2.646605274341798 3.4652763599658054 +4.842755352665963 3.275757374656486 4.280045658351237 1.043669912196691 3.595776777468699 +3.149225404608288 1.166962103602633 1.7978526800846968 3.012954154206381 2.3250461042582633 +1.1489261919806224 1.0704247669151385 4.653369436007086 4.489199490448948 0.18197319792176458 +1.4752878977410782 1.5008598486986866 2.1820437454758608 4.7984178143740435 2.616499033647559 +3.172351247447799 1.512585665106946 1.6263129958776683 2.914904640534808 2.101259197482182 +3.6976536754845872 2.4472166709938366 2.4097458311593085 3.5109721029755567 1.666220874895677 +2.996828113115754 2.156292000394101 4.378491649522547 4.253218123077124 0.8498202240575943 +1.0064280677945132 1.0687429377182416 1.8365187824465448 3.2571333543636927 1.4219806274900346 +4.757349908417842 4.102858765290918 2.5542655935741223 3.9153807064274737 1.5102956686918554 +3.43336602063779 2.867835828756713 3.4843848698394573 2.566792284749409 1.0778685217322592 +2.4249158264992134 3.464219114944205 1.2567750368352684 3.8019581802456335 2.749201440213656 +4.2779722841184284 4.9979799078988005 4.796420729550355 2.145905347046471 2.746569272964286 +1.0232059504496194 2.209767107243675 2.950157284252914 4.790515390923346 2.1897135291174563 +1.2854331229940503 2.04732263491391 3.464228941932575 1.0572126860419004 2.5247183772641737 +1.178802901091299 2.0917612727119494 3.921601825882639 1.6787605269206347 2.421534654024551 +1.5705133469813313 4.67700558511587 2.5654946629100746 2.6404952226673326 3.107397481744818 +2.8040482637598547 2.053721443890218 1.53075222903865 3.101652539722473 1.7408957816946464 +2.823953165329839 2.438100069872698 3.506577803068724 1.4586716069684487 2.0839391544140047 +2.360185460110453 2.0778894817090903 1.8036825841941329 2.744487490806923 0.9822448227037307 +3.13442743888817 2.201105673789837 2.6342839594617327 2.241105839054616 1.0127578938587152 +3.504944288329191 2.849105308843999 4.002370883674047 4.061083114314047 0.6584617627766265 +1.0132544526932983 2.2772558780676238 1.7683091996959428 2.9701564256374042 1.7441721124509222 +3.298606316273021 4.918687525951345 2.5356213045350695 1.7154179776600387 1.8158735152453902 +1.077846490595023 4.368581803942924 2.946764015156525 3.9061001836587503 3.427720056642817 +1.7553272213789204 1.0125482075715753 2.415146920435751 3.236799653247519 1.1076253322715488 +1.762763194043711 4.561007419707909 2.0571259570611584 2.7668035476126995 2.886834430478144 +1.1185577616088827 4.472199475083064 2.90183141180398 3.355355311314997 3.3841685344825434 +2.5940389161290893 3.650191065353521 1.6365411935627936 2.4892028493977887 1.3573832405192947 +4.846313716978266 3.686686819619064 3.922373218754436 4.919682042617648 1.5294964632957977 +2.001093241795818 4.97098768128377 2.647800449290411 2.014339446630981 3.0366998244132963 +1.5772026492570501 4.557269235571225 4.223067200535533 1.0804603983885133 4.330909185352072 +2.9713968029758604 2.072199752912413 3.2652123637623798 4.707187908060286 1.6993671778624089 +1.6970715791749975 4.6927023297277115 2.9084608937254828 2.537072451020828 3.018564720033613 +2.7491334752452157 1.5462155636099122 4.432177626086187 3.3247192140169415 1.635076645480564 +1.933494110517862 1.736573708677927 4.876677113152737 3.5123378496122233 1.3784771563936316 +3.088803172362407 3.37471787272037 1.8993725791385052 1.3990684502349993 0.5762390452569834 +3.208902562337448 4.142348756779153 3.8484300694066786 4.598719155612922 1.1976040709674884 +2.0062054096130715 1.5603898236963123 4.3383111802001775 1.2180717165053934 3.1519273226780813 +4.650753382090283 4.891031049217642 2.455009255365128 2.6041479962598695 0.28279979023301083 +4.393968301317467 1.8504556281631617 2.9028337029246116 4.692359227371022 3.109961144635373 +2.7635417683656986 1.1526639942186958 1.2510469051043902 3.277102338175988 2.5884025616429414 +2.8696230727115357 4.1999864477054585 4.470625299034715 4.488458938196208 1.3304829003827758 +3.2538058158592946 1.6074161185455518 1.5808038934563253 1.3202028669788768 1.6668868979093745 +2.321962546551789 1.866813366009203 3.967995524425297 2.4292248172914506 1.604673195913045 +4.972399606081499 4.358926734981734 4.863381317918188 4.7783861491071065 0.6193328202966581 +4.346571256045468 1.593351204728466 4.755645608546083 2.549363087185044 3.5281586153455775 +4.802525517363371 1.8979811258319006 1.0051815467599092 4.652490042983395 4.66253551074959 +4.005563672236654 4.5571742812613785 4.928092707859712 3.0932977933593375 1.915919268201315 +3.1537619459189283 3.067330204129846 4.377636762293138 1.7756649532205118 2.6034069488263585 +2.1472994182862872 3.6046769609409766 1.712110093676479 1.700781624159501 1.457421571150852 +2.9303660489414565 3.129558203872713 2.0861892253484084 4.137361374326616 2.06082136521583 +3.7407712618239684 2.69729654903192 4.627782752825807 2.0302258885169286 2.799310832964896 +3.2245918499561754 2.19339770836804 3.8070141906479122 2.719324432043812 1.498809650562051 +2.5207602149614767 3.070684202329142 2.719246962400623 1.5691062129774727 1.2748490637585288 +4.278107767753996 3.4514990543733974 3.4978498460954555 1.8084922301642496 1.8807474895746892 +1.9958583598157857 2.7423687581656706 3.8085047744991187 2.0473989178370333 1.9127915759993301 +2.3881672967851726 3.6210753993651816 4.398657829571462 4.7958071775702065 1.2952953308119604 +2.6327533149889617 4.720138550160572 4.949303143826223 4.426153172705699 2.151944007704625 +2.7977344559780417 3.492805375420999 4.488050009532017 2.2318221957596442 2.360865843434425 +1.0746004221349148 4.965876896708222 4.918965060390947 3.194008366121373 4.256466633097585 +1.2689001139364593 2.145682398287968 3.8601161703679563 4.116400684584729 0.9134708130969356 +4.284413983998858 3.9713505114273384 3.740008641890641 1.2258397701432857 2.5335851778698717 +2.1017764950206437 2.3714788878601185 4.349402990504381 2.0746389609058205 2.290696568962991 +3.2265196516293178 1.4985701954115909 3.26072302623575 1.5115403236877603 2.4587495704394597 +3.104775292386506 1.8654139011889668 2.0044015174782457 1.9156554162952575 1.242534719219661 +3.860992004720948 2.12399696034192 1.007492996098978 2.2216595782553883 2.119281074662509 +4.0443082864797475 4.469427726563772 1.5548311757191864 4.569917192050857 3.044908902449487 +1.4951243077859866 4.142172549775412 1.3017214090683549 3.754084797408154 3.6084554291121247 +1.4955263479037004 3.1614250248462876 4.424481852761333 3.1197268157768168 2.1160349969637857 +1.8329189924254936 2.4140747250728114 2.7799998657652676 1.5476720778650832 1.362488077900061 +4.298657614382481 1.764180168396552 2.970277453159463 3.965829402651392 2.7229946030700356 +1.0976657457453447 4.875822636491202 2.2769813912115944 1.0036705225341214 3.986952477693029 +2.6163373385166264 4.243080251687049 3.1839242948172757 2.061562885926683 1.9763571634998238 +2.630952373478288 3.778743185028117 2.753664236671129 2.067684834734817 1.3371579887803515 +1.7929203494038841 2.627417646621275 2.134996632392652 4.2983940029169165 2.3187656030427983 +2.6775351721021305 1.8379843958522342 3.31239419069025 3.1092812088846546 0.863771028270666 +4.8214636720506014 4.801271266396114 4.6401373762543106 1.6330875254123671 3.0071176463009675 +4.358332598407928 4.378458996503587 4.607301739064906 1.8181128396848556 2.7892615130756746 +4.760883264796354 4.798768864513267 3.252015630819432 4.033542363287749 0.7824444722972453 +1.1173418084005937 4.579667596303084 3.142559070593655 3.1236936376141373 3.4623771842674946 +2.124932848902892 1.4793468904481215 3.400647622646943 2.5907680866339255 1.035705601320484 +2.932899554224672 3.9211288643720867 2.811567593986754 1.3010785532744085 1.8050413600653417 +3.6819339661053276 4.139622232589854 3.9572913803833267 2.2146660667764633 1.801727374743757 +1.7459657940335909 4.748201269742539 3.2163768055997526 2.442279843968231 3.1004264154487666 +2.8547941712990563 1.1900085383240535 4.248255047008504 2.716603548734087 2.2621820253742286 +1.7687430410817577 3.7556867904821147 2.876606827995402 4.157196336462293 2.363864410763998 +1.3732443411455106 4.125599201896767 1.970219760782142 4.413797706903316 3.6805611607838884 +3.7744585517739244 1.519078839633893 4.707711705981619 4.799230228899141 2.2572357621590737 +3.5597580051879554 3.4970645237521123 2.2333877424110278 2.782937797946137 0.5531145777803982 +3.550805101569394 1.4950126667797536 3.95347371969334 3.7219173366690956 2.068792133941346 +3.8672157209240066 1.9638608535129238 1.4678818196339765 2.696019443468562 2.2651891255203225 +2.14005021303494 2.0356722016791893 2.7064389768097747 1.1134829270542532 1.5963720574187261 +2.663466802623499 4.591227148769196 2.9572587697411628 4.598977350888133 2.5320939658423027 +3.918925352690055 4.2590460600557 3.4847502806780604 4.916037308076496 1.4711439937606232 +3.51766590180956 3.2818593438085855 2.3889280155143635 1.9242609403480535 0.5210760247218059 +2.9873304880535025 1.8660295881393503 4.833350344546574 4.812973007979101 1.1214860427102389 +2.7869808607425073 1.8434149417081147 3.407235961341162 3.6832520080099633 0.9831080823499988 +4.501899681554166 3.240062655466933 3.4163451813012315 1.3971148062206282 2.3810762247464536 +3.2694496048215167 2.5152847878448004 4.127506066605894 1.956054948376452 2.2986875668575353 +1.7002104347723659 2.6624138517868703 4.308570094279371 3.737867581759301 1.1187210436525763 +1.2282051807995757 4.381733751613423 3.2203746387046523 2.201356508531599 3.3140821348543263 +4.4883666134957565 3.3519954708736757 1.3438916152559002 3.2592415061378746 2.2270843222217263 +3.746389775576082 3.7186549118054364 3.577231682291172 4.9030793359178615 1.3261377090241324 +2.109621178145333 2.569677123530882 4.244099638794793 1.8428047779697585 2.4449679919191816 +1.046709978941998 2.712574120730519 4.605724883427021 4.225611284130206 1.708680686163212 +3.0575345523560444 3.224950030630655 3.7085020667155866 3.072400030024024 0.6577642004921448 +3.5910469124009823 3.9393725044860535 3.11423581688193 3.4821286094900072 0.5066318436047869 +4.570315837642058 3.7438061446960402 1.4438642455545208 3.7622152433543543 2.46127398343484 +4.877848863227852 2.107532498199938 4.641609111952773 1.8257218970650344 3.9501738657063816 +4.73708204494684 1.9844230756473191 1.9697571829086877 1.558866217232052 2.783156982087029 +4.130646908176145 3.0335332461941547 2.2920444094860275 1.6425498069575255 1.274951617129525 +1.1827015038570368 3.0474091230012856 3.407075986058466 2.400429225142597 2.1190734310441024 +1.710910844244033 1.1081312552918683 1.4627593297961377 1.2888396490144736 0.627368542581262 +2.65990909004537 3.383185937195238 1.2899786410296064 4.062339861470949 2.8651555165872002 +1.7864114982786834 4.261002539692932 1.9210222199566735 1.964732681949823 2.474977055799772 +3.100486556343287 2.2910523830417535 4.35464471335033 3.828173348654445 0.9655857179728193 +4.4769989034480915 1.4561607572935245 4.842841786951304 4.814254055166499 3.020973413267843 +1.0537705641609905 1.0063841666127846 4.477384428513746 4.7200766684897015 0.24727513829162723 +3.1293406649821143 1.8800268409433674 3.660616800954676 1.5913989931149932 2.4171155055592974 +4.893676081046779 3.9752696998057244 2.249136860207982 3.6445355462852773 1.670511231393112 +2.6792601980665185 3.6156706391054176 2.5372505164488413 3.0399183589690675 1.062797945985315 +2.208721704194046 2.037531385689385 2.09250890128627 2.238310217640192 0.22486473489692346 +3.216037515982482 1.0168558776621182 1.7928239873043665 1.1885607303999928 2.280687168809024 +1.5505699658702885 1.1480930556416213 3.774830213149445 1.9315557926296574 1.8867030112367376 +4.782056956336628 3.0496816107804396 2.2420572345122514 4.875482217216238 3.152150294230974 +2.3108767241513353 3.1589257853518093 1.3104204357454972 3.1445068261398945 2.0206583327304384 +1.3292562567118473 2.3371942799954923 2.667668864433234 3.0620764076311637 1.0823568583939258 +1.6481489462214403 1.4894648942944944 1.0321191278520252 3.7307661068596247 2.70330837043109 +1.2798842150275758 3.9968983965841365 2.8798363159966276 3.902617956038427 2.903144561675505 +3.115095535119978 1.375997320404478 4.103614281884997 4.8286153656718 1.8841680317632705 +3.8079967936373156 2.91551543025501 2.53925212289872 1.7463039585636184 1.1938550059815247 +4.781843982470985 2.3121592355417047 4.214649995684413 1.26065583630968 3.850379753067894 +4.813065018171757 4.819173336292717 1.017786370108822 4.530743490690755 3.5129624311395036 +2.0635680197607513 1.3967140907816669 4.373965281346861 4.645875502764797 0.7201592401034601 +1.1291708658350728 4.709695443484011 4.344890972318408 3.243851196542496 3.745990501721645 +4.292375177753552 3.7523879771087727 2.571156299577557 3.223760056120671 0.8470406365189154 +3.1709503215022594 2.8635207462022945 4.22292394459382 4.276380681202802 0.3120425715475357 +3.035719363072784 1.7242718257252223 1.7940392800805993 2.2772604036174777 1.397639902638454 +1.3197623203869906 4.964922669648134 2.5195591289333326 4.293650547923045 4.053960327230467 +2.880873692545804 3.661783194189727 1.5298576264380803 4.4766724239135804 3.0485303181005654 +1.6410902243743202 2.346679921852588 4.4023115047192585 1.3512074895493091 3.1316277768236858 +3.4998061450204165 3.679618220786529 1.8922487416712666 4.052910888118014 2.1681312906923287 +2.1616478201636333 2.419438312813063 1.908173898504629 4.912852326590393 3.0157168955829348 +4.148917552775051 4.910870394095703 1.7993914717150585 2.8077870389170783 1.2638962585391642 +2.2095763077588155 4.909978769072796 4.345419714697214 1.386424621087245 4.005973716473746 +3.9063556841643763 2.0545018929665173 4.101620182037872 4.035281398167161 1.8530416342379705 +3.1866009892934675 4.997296207301158 3.5044111211967985 4.845505090972592 2.253253249922191 +4.234706161175935 2.885012465381502 1.2181725163910313 4.014954151593601 3.1054243812196742 +2.5166097665879 1.8052415478126913 4.899358065251288 1.869324117732846 3.112418748465188 +4.3132589169930675 1.3639809884820542 2.0972474618792156 2.9101118939830037 3.0592464569860383 +3.5929816676642115 3.019949262572559 1.501407047518636 2.4820173391170957 1.1357652403881446 +2.5005146139756977 1.69894349531892 1.6097666310342258 3.7613911538110494 2.2960845684075473 +2.907422785458009 4.133181408983846 4.789376902023843 3.860508852238852 1.5379467016315385 +3.0430589439460403 4.687648809147994 3.8714331330249965 4.666523657340447 1.8267032508268 +4.981812246634641 2.959634589033027 4.974267415666082 3.8518701358509864 2.312785794802337 +1.5703349302704441 4.7177926277620745 4.4287205830805965 4.612772519763718 3.1528344506009387 +4.832538645246 4.285783582129932 4.779126711327756 3.5310901227206277 1.3625477700048438 +2.929666838923007 1.7727922240965581 3.909040683209393 1.6715997371871865 2.518829264036487 +3.4949202463841664 4.460499689283576 2.2813171015616382 3.272054158880132 1.383439039963107 +1.7822827452137866 2.6443470478643563 3.1348122768740128 4.2627400255875365 1.419639344418987 +1.9774905231098145 1.704353094281362 1.2577442901329303 3.2230005306685774 1.984146200760247 +3.1340895121953056 4.833317534984033 4.3250492367475175 3.4614545656462754 1.906088043450499 +2.7193027540097265 3.3727312186474303 3.5000235803419253 1.2969269312040907 2.297956397288935 +1.2046016271375866 1.8715173331298525 4.362953358934639 2.530016082335973 1.9504962493796543 +3.1359855134455294 4.04083213015431 4.541315443259776 1.1723819383808394 3.4883320312242647 +1.6077105239644776 2.66458107196269 1.0756101659529334 4.9216757702008 3.988633348329293 +4.545891613334232 3.3640466868737855 3.609225332948529 1.7565091701834077 2.1975701604206894 +4.518278090047662 2.5420225013978315 2.173343232293285 1.9725356912474838 1.9864314285196332 +2.265995612951228 4.538459908924169 2.889554171188161 1.2357414061779064 2.8105498818171966 +4.4391159029686 1.652566746897941 2.124564505744497 2.914626700717979 2.896386450583626 +2.667251760653949 1.1539996050180426 1.9702089514328138 4.898375009650962 3.296071684754069 +4.168413204566192 3.1185497562008395 3.358938799348391 1.7455006871721843 1.9249404671408177 +4.805676849579026 1.0851684011320724 2.8990080955010056 4.690417080069872 4.129325521796413 +4.813736014744823 4.305764506627555 1.4503882867977067 2.0598156455926757 0.7933705053168685 +3.3715213637139008 2.734363292248409 2.2621388479406215 4.776866551121737 2.5941907850387937 +3.4511446332820284 3.6743833309760037 2.286892577198135 3.8385671482668564 1.5676509466872408 +3.386243996055511 4.739180494410064 3.406520922853119 1.6402923587951173 2.22485966053463 +2.5290803701200577 4.61189722830254 3.888620005688184 2.1352375616343378 2.7225862814326725 +4.308930408092364 1.4227546929669082 3.8795770758841766 3.3861792445311663 2.928045709780465 +4.116488350067556 1.3428464895702943 3.1105802912958693 1.3386904254551246 3.291304128604928 +2.385365282417234 1.1393694504631608 1.462435949445517 1.9771782547698198 1.3481339896825908 +1.9783661183927723 4.9996190562177 4.007238846307647 3.2847766458212355 3.106432189095301 +1.2287747324888927 1.4384252706614253 3.8105790772242436 2.8853510389744024 0.9486834408377128 +1.077448307060434 2.164712644706331 3.966826668702658 1.0699273361537567 3.094215487460245 +1.1808970120898765 4.432222177950363 4.433049968353874 3.0643133361340404 3.527684127375666 +4.1061737926224176 4.20058741612783 4.352403304781187 1.8868831190837807 2.4673272418519585 +1.6237442797028638 1.7364600729598614 2.1948007472222435 2.257279891107697 0.1288739441090146 +4.628035268657644 1.0910880928045712 3.346835315549282 1.2166737555610863 4.128871952050145 +1.739256714876524 3.312564064193848 3.473553674659006 2.273205633250692 1.9789217862080049 +3.858819897968726 4.323976366756263 2.66488110261955 3.1933600137816067 0.7040316044027595 +4.799856248102566 2.1673158716070366 2.6325931345424527 3.1898122070507444 2.690866389965549 +1.0008362652188336 1.4150694441882283 1.2631122811951219 3.8363692335232726 2.606384558975182 +2.201221023954927 3.419374087484398 4.4589145310881175 4.7707326765330205 1.2574289013757136 +1.4665361229116054 1.3071477593851668 1.5196522456137802 2.7965091383869485 1.286766558102124 +2.329998242581785 2.823479429621128 1.5399213213526988 2.1938409963983365 0.8192280655431375 +1.385578655403676 2.049468643674261 3.302711448371685 4.061956570395342 1.0085648575290709 +3.689771904541229 3.8029054403606035 2.37545045534065 1.5379653125739394 0.8450920430828651 +1.9206744145704016 2.3532615472968397 3.1892777306164004 2.6789750433010107 0.6689846486144427 +2.028456994922639 3.409173078328018 1.11709010894463 1.7764479106230122 1.530075035286975 +2.981132269909019 4.128371563800748 3.342697414031931 4.5543526473174545 1.6686121184377718 +4.25496178554134 3.964332678808237 4.105737250176243 3.5709644209000855 0.6086437846659635 +1.1049431978311026 2.4883744951469935 2.48878621287349 1.8144523873946623 1.539028350154096 +3.650911667237213 4.009937392036093 2.1126455751884325 1.7737610726740511 0.4937025188428566 +2.250830610793298 1.257414394551759 1.375424571390953 2.043656507315588 1.197250892203151 +2.2021583741681092 3.455448446840511 4.573705000205182 2.549898189325571 2.380447439878036 +4.310004346779391 2.4904378435974404 1.290626866349351 1.7723507290292995 1.882254005010238 +1.821880695674266 4.892189723748768 3.4314320815481625 1.0710058831390898 3.8727779907982973 +3.2625854927080846 1.196570133204557 1.4259824832261523 2.697103544839845 2.4257304506029542 +4.955107994186093 2.5128090991366374 1.2947435151773545 1.4349962791023083 2.446322695506131 +3.7630487956072303 4.707993191691691 4.048941070157515 2.5659146572242233 1.758490049203922 +3.8397797402491416 4.929638433596672 2.5670575986435367 3.0913327629546563 1.2094033319693798 +4.956593147025447 2.2208451671920724 3.0249907258271196 1.7336220902683475 3.025218994067589 +2.704393307528454 2.4092418213498132 2.597408140142987 4.824074637647549 2.246142936436302 +4.070549463930561 4.4344290320576105 1.3221934255758572 1.9061283755206193 0.6880322418806547 +4.141811549278735 1.8720622930397823 3.817970533980316 1.0121211317455066 3.608954496002785 +3.130355342315404 4.670972627057429 3.589094587206274 3.2456827237164316 1.5784274851989422 +4.078144825758995 4.094995707097405 2.3734422456767827 3.734884702141587 1.3615467360567548 +2.7296728919197712 1.214210945169273 1.0204908362202398 2.8885195715733283 2.405443050282768 +4.0118746598387105 3.7847021875722384 1.8464710489224143 2.454393507296714 0.6489815463875018 +2.9778993482005354 2.9547120334472403 1.1089545347088086 3.3697235414997957 2.2608879126644412 +1.0339246084383635 1.1270633805279875 3.754684441362168 3.4150029276080116 0.35221919546310637 +2.721562932050837 4.4609217026916035 4.806930925524155 4.877563526382259 1.7407923188332772 +3.299290391353694 2.631887622282494 1.725315458631182 4.376843463402313 2.7342324729710676 +4.796760270730024 3.020649306344359 2.8867136851016126 4.7956689689989895 2.6074279345229647 +2.45541815364382 1.207929614946051 1.9117432781576031 3.6430038260197852 2.133890985679999 +1.6796007492995493 2.320168675632936 1.3854240316951438 2.978902420758576 1.717411029619656 +2.584808239047532 1.3130063469463802 4.473000657148209 3.1591371122088363 1.8285834592582106 +1.444820764550916 3.01742871704329 3.0385692017986976 2.6126064825579345 1.6292759159900578 +3.615047103046322 4.162987444070938 4.283525516773219 4.89459513326374 0.82075860855677 +1.1156177126273352 4.109502866255354 2.126507324018233 3.6293879920976546 3.3499251656717814 +1.093572998479074 1.6527317355116034 3.8415453316868144 3.489988334469118 0.6604928580178112 +4.4422480489736 1.056056019603413 1.4367688386253277 1.7422949325730497 3.3999474486899257 +2.776261438981257 3.3388387605358014 3.981315606950703 3.261957490088209 0.9132192195871914 +3.6347875146335573 1.202149143581138 1.741084042905893 2.4002625933975343 2.5203662046902684 +1.0045432225901134 3.934616640201983 4.426287344479799 2.95310968688007 3.2795704967947747 +2.209791844154112 1.8423956507522492 2.9214115868552226 2.640625840693307 0.46240739416004445 +2.257379446373479 1.1642821859591894 4.158065662435078 3.819607906854227 1.1442968465560202 +2.5004567940844913 2.0928219834440727 4.0670518325149985 4.264975207832084 0.4531443493443979 +4.269925832505455 1.0865237712581601 2.647121136496784 3.3881182843493027 3.268505079800106 +4.437320220563716 4.60965783765938 3.933327112644603 4.409217742744403 0.5061345138231496 +3.7065999580605373 1.4283754404180042 3.8803008403118637 1.5201827551897975 3.280314669129747 +4.349402049291527 1.9530805289639503 1.1378719333344631 2.5749684194045277 2.7942088574514243 +2.473271101492669 2.8586234788808884 2.0417518098679186 2.650276528480151 0.7202768828171909 +3.094585534266058 3.4713533557081626 2.5230874532954335 4.281338933944163 1.7981663606234208 +4.848179505771968 2.887145844620377 2.5092883200502745 4.689597655483637 2.932473668824238 +1.6525821830817393 2.8480297292112384 3.848062041475511 3.861946747857704 1.1955281764217691 +1.827214591288079 3.9489218004169655 4.9852370913817765 2.1718830749272726 3.523719952432397 +2.187732633293649 2.0823955201174655 2.257320758093777 3.6051285893434506 1.3519178441718418 +1.9089256710803517 4.317183234100783 3.8000185775889697 1.5484254945524358 3.296873655665784 +2.809857764890461 1.6617475659367162 2.405275379039489 1.4754828050840714 1.4773866316994506 +4.733882702132597 2.8485766986142047 1.1959287217765286 1.4357152773785193 1.9004937040542804 +3.4710405342853856 4.807970395351165 4.550109945605547 3.0599691780682305 2.001974265690263 +1.9452512480885904 3.666659050072894 4.314967749896508 2.7360880998572497 2.3358308521895417 +3.278074845484633 1.209616189912416 1.9074340438275539 4.509703250716049 3.324203097726085 +4.812662888965096 4.094196513979226 1.61947267939453 2.727551443739508 1.3206182188572253 +3.7630060258751907 1.5993330541266144 2.4322499536044107 2.6872857462113915 2.178651873105473 +4.180938753313584 1.610699250326053 3.693214250072209 1.7642145358391077 3.2135916044558273 +2.8942949271202245 2.8225992873274395 3.3238765122662293 4.3924865127046475 1.0710124172026638 +2.8169997495758965 4.177262418444155 2.28675424037942 3.7921657669280204 2.0289352854593425 +3.8782350562257553 3.846487297239269 1.0713031935801212 2.065864826803173 0.9950682200130644 +2.7980675274859683 1.3373953649823993 1.0047624226462522 3.799106889736473 3.1530816936880313 +4.227415016108372 4.6135317642742635 3.3331396654511085 3.513266380263322 0.42606546046733573 +1.482068183775168 3.7693467411779666 3.648029422489229 1.1477054295088158 3.388696396703037 +1.985442907302997 4.190190187416944 4.021820192496044 1.5702226129622376 3.2971565418017175 +2.2000111503093565 4.446422957043486 1.8048650232053394 1.1152015889577847 2.349893967389301 +1.5138641876830041 1.8818910935559447 4.422980429540707 4.024968705823252 0.542085911699382 +1.7438192550768292 4.098847528887989 4.945570966810794 4.442279176058949 2.408206967245168 +4.187194982327648 4.7219043922490505 1.5362344777978052 1.793733868552485 0.5934813302013174 +1.8596059365640318 1.5262987987001928 1.4219109110907389 1.3458224421228988 0.34188170945643487 +1.431559600776601 2.3271219562463163 1.118697595536604 1.4808018252474051 0.9659976219996183 +2.734103519102942 1.4995894281485893 2.9073388089039307 4.689565501089597 2.168030678543068 +4.660674423136118 1.9044846000960542 4.3806036166745645 4.888158198420591 2.802533495621596 +4.861416688275203 2.340840251412735 4.405488462057017 4.765015242234927 2.5460881916641047 +4.754013287911832 1.7385893767549154 1.6575856789803907 2.337972345125955 3.091230722454335 +2.6206435645893826 2.4491836586593028 1.1033146388372015 2.4353399489793945 1.3430152367717045 +1.4799474889815247 3.5626701453347662 2.031448060995028 1.7043087314691046 2.1082584766128116 +3.8025233899154363 2.483066641448303 4.843535257235098 3.5246985968827937 1.8655552116634555 +4.499210560131479 4.1901027665346415 1.6962313704834249 2.5170835033477506 0.8771236241774687 +4.281492462303451 2.3426262810053626 2.0303691978568903 2.8040543853004367 2.0875322364579154 +4.525968506872696 2.9704919871793787 1.5824045775363684 3.2547012470525676 2.2838746362688576 +2.837471736729018 3.209162598801338 2.8712892251152193 1.2649076543407944 1.6488225640958984 +3.179678619995845 1.797757656269936 3.440072746290299 3.0447535681897806 1.4373527063874108 +2.0134161631811054 2.45881061325601 4.876445103093137 1.3821918164872793 3.5225249817585915 +2.837237706107279 4.170719945633481 2.473200729143849 1.0556826807337627 1.9461583442002233 +1.6676605298166751 1.3353761916087534 3.6894846942499613 1.4822472064559933 2.232108915116219 +4.9541372660407195 2.9847433371894394 1.2200321942611856 3.9419088045502617 3.3596316358545963 +1.1296024980451715 1.2926037286526002 2.252302679134997 4.024369155275712 1.7795474135412377 +3.133871675919977 1.11748600121039 1.591249673636184 4.908842984873434 3.8822978463714217 +4.601761753098021 1.7983910930036595 1.7991404341066612 3.3320591723450637 3.1951098441086985 +4.486983521034553 2.0553461403828286 4.274665617328182 1.7971581510486923 3.4714411411477792 +4.791761039348522 4.302351136681722 3.1220381519093565 3.6160074406317433 0.6953615685592838 +2.6297464331747675 2.829559216937036 2.3924596541233045 1.265638445538333 1.14439992339729 +3.8856166379768813 3.95305355503623 3.78762008018328 2.8927115367528886 0.8974458417571359 +1.2019926865710402 3.935635079542684 4.774159509617389 1.6531566676116412 4.148910636837059 +4.325049992146617 1.3263635701757153 1.3113930539718552 1.478998674198405 3.0033667610273937 +2.9017151081764863 3.7820301174802435 3.169433493079291 2.7878481319695037 0.959459172356365 +4.10042004668663 4.64381325426449 2.960235112675658 4.695712797406817 1.8185595872122475 +3.7321020032171877 1.4291452326737715 3.7751551135478625 3.8833023068686874 2.3054946762929065 +1.624028339875156 4.406664372469949 4.110872031664153 3.5806405948887265 2.83270342013417 +1.8650724154493212 3.4161865120419264 4.459153235280823 4.282045832791009 1.5611924841815574 +2.2129216408156003 3.2999241186306025 1.1472430889809373 2.476350700554531 1.7170036196580418 +1.6524031211177954 1.7068142333965692 2.91689197000674 4.362189924069773 1.4463217986182055 +1.922902750395413 3.8650232362478083 2.2106782140111076 1.3597524556068374 2.120355306990653 +1.3969276721606394 2.300957755007956 1.0245055765889153 2.9822428782051933 2.1563871945531283 +3.395882302753781 1.942774710203771 3.36442566613563 3.249856267125961 1.457617172894146 +2.428851442739065 2.9943074671349406 4.55671053543251 1.6926411304991715 2.9193550780610424 +1.9183857811550262 3.4892119136500885 4.287102326153305 4.755919356862521 1.639293795148509 +2.019379712786423 3.7301780776908995 4.94378906941596 2.2785656463782966 3.1670565104002217 +4.002091534928708 2.8744131706296874 2.746499250794318 2.6295915360363113 1.1337221472115877 +2.526096330667418 3.954584311544496 2.4486966170122675 2.6197892780392755 1.438697539501467 +3.674127154169012 2.4844199308175736 4.501513065247779 4.957457900039101 1.2740835803303783 +1.1993403130079292 1.2054719511893346 4.146360353268269 1.8493882432289905 2.296980294056761 +2.456949086689012 2.748707193100132 1.576381421849026 3.2801366903876517 1.728555699921101 +4.870042244493927 3.782710862594219 1.734916096702415 4.0187436712485205 2.5294580297607383 +4.448511740139647 2.8762731246385598 4.30931561517672 4.785520302621039 1.642773620562711 +3.3376290010988727 4.3572961184322105 2.9873790533510043 2.045302049591354 1.3882471362058122 +3.766947292942194 1.1368986510316397 1.7267383076265683 2.8612235858701665 2.864299688469593 +4.853420462681947 1.4936036286137306 1.209082121863347 4.919067727139664 5.005233496036489 +4.474390120172758 2.950539324539589 2.6942642600234383 4.59722773438305 2.437907141812141 +2.6127281871167725 4.578663238967487 1.059202079813622 1.8465865734782283 2.117752338909992 +2.9460426875467274 1.0193843574211994 1.993133031643234 2.058473813975201 1.9277659969191907 +3.377703201278254 4.487081516124039 4.656395319537612 4.9802564645732055 1.1556843369682916 +2.044336142210715 4.868072471081328 2.5539432577386223 1.1601710453841507 3.1489820315325976 +2.7101750605466473 3.1073070445725497 1.2141542354322366 3.08648369570936 1.9139831296429899 +4.447272557076234 1.1779431128182742 3.1246679017400667 1.8827438513145753 3.497268986240166 +4.695865747765622 2.4901834112743932 4.059481015609462 4.227176837146221 2.212048023454802 +1.5125475919143145 4.034370532705522 3.5964831364931413 1.2741102654269634 3.4282658439749065 +1.1734229218903467 4.820695330720813 3.9836780377379757 1.7664866274044257 4.268317440663577 +1.2753474749279863 1.1663231079731613 3.0881213945381822 3.4408464547820787 0.36919003333508443 +3.990976022842514 4.632602480122811 1.170471030992783 2.168467157658658 1.1864572388089483 +1.141209097236949 3.292624005399179 2.8223781433976343 4.730297633421105 2.875542190174597 +1.3842368956296607 4.902084540418546 1.321364165820695 1.4573446497362195 3.5204747895635617 +2.1846717228173023 1.5721121940528544 4.971869484385831 4.235553093970534 0.957805305411457 +2.6019105841866543 2.3881751758990415 1.6910010599073941 4.186234366862903 2.5043705957577442 +1.2563765798888409 3.440853072295979 3.7844081375012784 3.766910299983325 2.184546570846499 +3.9350890424936553 2.312222581360005 1.5639236038207893 3.85753665369107 2.809689728992813 +2.779532859268073 2.077902339034614 3.0620766675686846 2.341879530343214 1.0054696929250715 +1.718402261303484 4.638412814514467 3.760703159429587 4.1382201814991735 2.9443132871377324 +4.585208269922917 3.6464692183294902 4.210951875796068 2.9473879955397844 1.5741107605485842 +3.5249866027785575 4.3239186584140565 3.844983403634968 1.5298988513165082 2.4490628644249886 +4.235724033097291 3.1941927962924908 3.860934461162227 3.9112496017569374 1.0427458609906841 +2.2847649324178105 3.6885946968278858 4.791420531215941 4.024540987916756 1.5996381595143363 +2.310753620204179 3.969726105978386 2.6011302850568288 2.5375405685637737 1.6601907603042243 +1.51512090519691 1.5369449677808142 1.7269607278478607 3.0628783082656357 1.3360958316591474 +3.190419066479068 1.493931892882749 2.2178078140292583 1.9542197752121981 1.7168422712597249 +2.7981294807693486 1.0070703474660925 1.7216485481038704 1.3150468545526812 1.8366321777067138 +4.640624847920762 3.330249239897046 3.813767196951869 4.696085236736514 1.5797371165586196 +2.4121472279268357 1.1181637292771756 1.184122780347935 2.2931002526013327 1.704178490869765 +2.7674781937605935 1.063196364573335 1.0224112000665149 1.6011377369398851 1.79986137182265 +2.4328035546234448 3.055319201838443 4.7684837425425926 1.9033989927392403 2.931933893283279 +2.997381716944269 4.749633096596082 3.4479276678080697 3.0194134646609863 1.8038872802341226 +3.094737577549625 2.5936920922419757 3.47804168479722 3.498876073259621 0.5014784642332908 +2.0923507723222547 3.7368338336486002 4.272210394676263 4.490470286842081 1.6589038307019197 +3.8895023440190526 3.663193815471166 2.0794934750222698 4.239802902030611 2.1721308364172307 +3.346302420676852 3.4399449967186952 4.465205911563205 2.386519199505598 2.0807948911251715 +4.70044869968847 1.685347153943511 3.950894330531251 2.452386177256928 3.366951739568487 +3.91370247344067 1.1061088598221769 1.569037413237337 1.5912613143093162 2.807681570443879 +4.658793611749242 4.34072542934978 2.682880400446389 3.353561248160901 0.742280383780923 +1.5405544467913024 2.665168662714491 2.4547433930930667 1.205281098802216 1.6810452580198678 +3.061179515744534 2.8711159406882056 3.413042463199851 3.405744021569677 0.19020365352280055 +2.2722965791188567 2.2884345368120043 3.989205588137856 1.4934438354250683 2.495813927355665 +2.376841907366145 1.400353273872065 2.8488781088684374 1.6494463818145562 1.5466630270380786 +3.436626849467192 3.250362435134047 4.360779640405969 4.516253851816608 0.2426245297999146 +1.8103394662381374 4.6494681775370275 2.56911217852883 3.9380796903985305 3.151939702449337 +1.8730262419728931 4.869338050048086 1.1947996726415684 4.387084510989528 4.378192200024696 +4.150803444792179 3.012125946875728 4.296311918693814 1.81773130516242 2.7276268626839206 +1.9687561669045426 2.8041407269736025 1.170451646109187 2.116094680338048 1.26178766493707 +3.4914920164310908 3.2046537687748926 4.493345721521763 2.331549509823235 2.1807427728259436 +1.000402522419788 1.9694833538217296 4.4845091473536485 4.110413960740603 1.03878047076258 +4.315213827739027 3.7612998214028335 3.7941997716734166 2.9711974813287396 0.9920451080107174 +4.0681622328658715 3.3724842131995696 4.094175418113199 4.81434648258176 1.001306281386773 +2.7585385040790684 4.8952440945181 2.1762866785291592 2.4164611609029336 2.150161520025163 +1.2874028701143443 1.9282374911083382 1.9358210490440872 3.8886744159392634 2.0553114810311213 +4.199269798870593 4.363085294613963 2.605605007894617 3.317523105755607 0.7305223437429248 +2.7135220535602347 3.9308976868705727 1.417580971618594 4.691002682779859 3.492462330745987 +3.2552713755928404 3.1408659440604554 2.8724400835722963 2.104452553914019 0.7764621358924947 +2.534271157338928 2.971342098886645 4.1914817315817015 1.6575688483833466 2.571331465910999 +2.5160020900811126 4.126263904767631 1.3263953854457529 3.736054299565484 2.8981716985427557 +2.3457555228524165 4.529110042038951 3.4173716851015485 4.12156385977706 2.2941062694056895 +3.0309654271175903 1.5836875115122515 2.078692824602956 1.9091257610321137 1.4571775300377685 +3.556077257573854 2.3779211210299 2.837417190767853 1.5027538137080794 1.780274757485702 +4.087021830811988 4.185877472066916 2.9429715715657836 3.944761863767123 1.0066559627582643 +3.67023603008539 1.5261259689517845 2.860916290958655 1.5305171087756317 2.52332517488484 +3.2181409316991534 2.876185672235546 3.955860791582992 4.908472458951204 1.0121276541429287 +4.722123832830475 1.5367380264798007 1.2031619924705619 3.2505963024702846 3.786643631115077 +4.11203848359619 4.062253532865119 4.633766496168237 2.591276214767674 2.043096936255117 +4.803974009024614 2.8765926796153667 1.7209862534722928 2.721160007914978 2.1714387691186077 +3.030408131136707 2.645498627007818 2.6797727262090105 3.7922528240903586 1.1771861766733591 +3.76926834927546 1.0239507538382235 2.4585854677841645 4.324638473967918 3.319476242075655 +2.9706627313562564 1.8144111969839023 4.588826084175752 3.4545280191506698 1.6197375438811277 +1.976046212482459 3.798136682820938 4.6412477150343445 1.2026116825360287 3.8915589994363513 +4.077875489189831 2.868130668270269 4.464184254292815 1.6537573911706867 3.059735557969052 +4.447339884196435 2.687553809515818 2.6151764613928643 1.6589041020609052 2.002823969764224 +1.706740038884421 1.9956751972059008 4.859876302214252 1.570431022415565 3.3021105030728632 +2.960201954373063 1.793328499053485 3.3077501110732546 3.1701825353644884 1.174954679388034 +3.4517431412709345 4.26874622594565 4.2328610345261755 4.895343440721014 1.051844560230124 +1.666599069092578 4.661734141102194 2.0962915336915082 3.854881544202739 3.473251059836006 +3.616822310336432 4.935834704380667 4.722423484402086 1.4400731208072868 3.5374592018895727 +3.9455574159919857 2.6178805102984555 1.5778047291915827 3.328400119281749 2.1971140584222955 +1.3411466708418573 4.060212226665414 1.5467562186934338 4.282109826174762 3.8568739744548544 +4.8613205034081854 3.888602432949115 1.0578010015917787 2.4918560479535588 1.732828416374023 +4.832130287646468 2.8282354638121636 1.3163164191158674 4.845401275838135 4.058329014623673 +3.2827522469018144 2.4704949856151055 4.896585237932915 2.819414542372136 2.230336287874417 +2.815438229463643 3.2024335812655265 3.6035062899895163 4.808521811939362 1.265633363362519 +1.6238733451696392 4.43774192395489 1.0459747512597386 3.3053501614213383 3.6086886292277733 +2.2903241726450694 4.8747485965547925 3.949622055958346 2.9674984340968944 2.7647452706387545 +3.404477419331701 2.496002507073072 2.830481355715296 1.996114788669869 1.2334886438092956 +3.5870563882473907 3.9078988096534677 4.820308248866414 4.948080519760849 0.34534853783277464 +1.021457150386797 2.2587444817670894 3.6642321928496457 1.0111941410972927 2.9273692702561607 +2.7468069405733258 1.6817058460457242 1.3604083970082619 3.8672805796379803 2.7237563183233893 +4.2801449347674865 4.143842493825998 3.2175252606038223 3.868296293730574 0.6648919408170532 +3.617088095705433 3.9476165453941077 4.979866303653305 2.1965501753757026 2.8028731198510966 +1.092548068070434 2.9620066304750745 2.932848132004999 1.2179501285000889 2.5368780969871514 +3.7866033206137435 4.061211222359757 4.516906472082133 3.619128863625042 0.9388365853269046 +1.8465320136259389 1.2493783151359712 4.229947343185216 4.899690572666525 0.8973006926645608 +2.5882903509136685 1.6653385925676227 4.833292657653024 2.8974788124070883 2.1445780917653505 +4.168016324052427 3.794650125613565 4.8943477489385945 2.3448308537977556 2.576710832970062 +4.5804113219876506 2.531741791331996 4.443883562000876 3.929387915094186 2.11228611142591 +4.265447214928152 4.605185277376574 2.0074737819631068 1.6186471832592746 0.5163410451782803 +4.157512385848957 1.7810003624195772 3.805733842597625 4.60007413550006 2.505750565884947 +1.9151640411709412 2.6977741149897128 4.459931765677066 2.0637615088648427 2.520736088382554 +3.019282270814627 3.984966289034249 1.6433613338289077 1.8048990570125105 0.9791016592040569 +3.8762929641969444 2.248570925301348 1.4893725509902045 3.80267312278672 2.8285753607391344 +3.074547254184121 2.4995977603496047 3.069923020750249 3.1009151055822004 0.5757841868120357 +1.9852021971712595 1.9918022680446383 1.6493286930620528 3.5572291977337374 1.9079119205723314 +4.008046190279373 4.564393680718113 3.2818312379750485 1.8414071255804978 1.5441321684639282 +1.2151143423871429 1.3800015160889583 1.747478683602837 4.204596026410858 2.462643582896096 +1.9817471814251393 3.563443960255639 1.6611049455249445 1.3042828354433933 1.6214458727955827 +2.369599767401237 2.5847479661520127 3.691814582010258 3.7812942323954704 0.23301363749524018 +3.957883874216346 1.4635343795124687 1.808401591360814 2.54885081486656 2.6019309088290083 +3.5139635222408327 1.3528294772361624 4.804910580904351 1.3634096005062468 4.063794945437007 +1.281690113799634 2.8640137759071553 1.2996849203866399 2.412470569857895 1.9344353370775982 +4.189639643290109 2.1745842659617427 3.39817198020715 4.086971143021115 2.1295286944282252 +2.0249747759099708 1.3066997355796661 4.879465903641345 1.5935797360040813 3.363475425840272 +1.7732730087962962 4.831568517462943 2.1627015853747884 2.972383618613126 3.1636618677222046 +2.0291018110701113 4.687999361105538 4.900708624365157 3.041984638723927 3.244162609423642 +3.9934305254622333 3.6178546452550493 4.603365217117748 1.2665872814007888 3.3578481553043655 +3.0065455626405053 4.1962593840185765 1.8035762790345276 3.7193950170652927 2.2551674912892405 +1.0480916426235551 4.509483939094451 2.5702347691331444 1.6822275453779554 3.5734847781275723 +2.283618885566383 2.5894379590812573 1.957147675798475 4.915907575939853 2.9745227268269634 +2.793256851333608 3.332960950191682 2.5774151132344185 1.200382254771506 1.4790199483478057 +2.6108692863957095 2.487226887081746 3.9906057360685963 3.8626127931057828 0.1779596481126989 +2.449746802877738 3.1712891090568003 3.298403939961499 3.7866460912418582 0.871208182866227 +3.2187561255313053 1.4785276064501631 3.2734804543083635 1.2331965952209738 2.6816326229138614 +2.52911332415088 2.688817674402466 1.1110839066159652 2.3914550552048417 1.2902928960620066 +2.121750882311865 2.9442073744462496 4.819816360931533 4.858952151946267 0.8233870849074243 +2.3963932309895237 4.522809477133694 1.6869941289863295 1.4862063772013476 2.135874943233506 +1.3955964291450638 1.3214472391970937 4.712535038889705 2.468789697360579 2.2449702136116625 +2.501415937581105 1.6778251448991428 4.714216843471334 4.92121714596014 0.8492060521575197 +4.822259870230561 4.291182749039786 3.2815551186113145 1.17354286639765 2.173880991253939 +3.3162144664235047 3.070261687750134 4.852097859684523 2.606451245183306 2.2590753609735845 +2.4750265425643834 4.1328064229511705 1.9747863963981485 4.0889771349737485 2.6866403947856643 +3.516439930075404 3.3863411018993426 2.3912086913170545 4.2609184285767085 1.8742305639105208 +1.7368573163544454 1.0160379679724425 3.9606014541404355 1.336967565946884 2.7208519460418032 +4.835019224567601 3.369308567950776 1.2342947838438243 3.2810570738362586 2.517447834743592 +2.63426212454569 2.1329698613859276 2.064585967351648 3.013703977447979 1.0733680311025924 +3.27788659208186 1.9414758795807585 3.7306622065061332 2.226681797259595 2.0119519536721264 +1.1180616749853463 2.920427332776261 3.036980177756146 1.2776873939549525 2.5186569960038288 +3.679454688050268 1.499921610216628 1.6765577740538888 3.6776918807641263 2.9588683901806045 +2.7271760952616 1.1004390243838604 4.6900799524495635 3.7809869429392178 1.863524509553997 +1.3463525655276283 4.312513966041466 4.984468448613335 4.143242875476045 3.083143512520683 +2.382441562065127 3.658245344891156 4.273900483478835 3.4008289223054566 1.5459395988210296 +4.717352814464085 1.6541744922651334 2.179424715891581 2.0881026046551017 3.0645393065826827 +4.719272509439698 4.086781518609973 3.7036591140492554 3.085107843421277 0.8846753799424134 +3.955811221333262 3.3397787848031446 1.9700662063150047 1.4645899084824334 0.796870284630915 +4.812387360507746 3.347879535599469 3.6024143597536984 3.695381218427375 1.4674556231890703 +4.918797079962665 2.4997055595261264 2.219870032894749 3.6643120129930864 2.8175195506186586 +1.8524429435595549 1.8075407086750124 3.3481676413704453 2.6228381414688204 0.726718029310659 +1.3149369588865736 4.835858433566379 1.3163003230791417 1.0805844815826777 3.5288029115825954 +2.457096216367734 3.800630622507445 1.014298298841394 4.077795689056562 3.345160827275175 +2.486307995319995 4.691123653426373 1.3436309550840027 2.1419395316345384 2.3448899056512658 +1.9530366223956217 3.8313286763854206 1.0182234082819526 1.6155033209193297 1.9709704041718463 +1.535156014347307 3.371925558333241 1.478487524306428 3.8104879406827545 2.9684925972105196 +4.2350197098297615 1.2436168390693414 4.880265389119868 2.162393805015941 4.041697302232476 +3.841366146727893 2.5905231047971387 2.8404568524196865 4.593123116517882 2.153241126500817 +3.8614099578891916 3.8153137342935297 3.4310659569732764 4.9961242571791225 1.5657369973507662 +1.1920444258832732 4.664628467362737 1.594128861266448 2.5879929824050385 3.612008557080732 +2.4786877784616905 3.705387691071358 1.2820105395899937 4.742440081128189 3.67142551164351 +2.6570626313745715 1.3801524073242026 3.7816991752197295 4.687745119294952 1.5657007929548752 +1.8341360561636222 3.8258387871669317 2.7621696789454884 2.0385233017259674 2.119090335013819 +4.893238218308527 3.890325415132059 2.2624844408998346 1.2229423446245296 1.4444659430750646 +3.1420929840048526 2.292731053195022 1.6757465678414656 2.987282811044201 1.5625437615450481 +4.616955159085488 1.3070292811531403 3.2220366838146774 4.7026394139873355 3.625988659938273 +2.297271763706021 2.081828257847084 4.719573037301879 4.576675464074629 0.25852586070067957 +3.9091581045674544 4.9159095028640465 4.907825546911664 3.8178639086813306 1.4837670810426735 +3.2202915606142573 3.3916113706292665 3.916288610741015 2.7630937470802754 1.1658511358132693 +3.6854114245385055 2.5973098864941195 2.8927277553180066 1.9104432207182955 1.4658949021018968 +1.862623216498652 3.2685475153310035 3.3672517795979187 1.7184207725313718 2.1668564382328888 +1.929461244469639 4.409741334799136 1.4733510597724244 1.1709925982026093 2.498641624116545 +4.633927353949993 3.7170366347318935 2.5695022756590653 1.011028565125594 1.8081838671474342 +3.241261442897964 3.762363165992853 3.581205762597047 1.285597998670942 2.3540097730490146 +1.3741817709816826 2.6312400423149263 4.278247345724639 4.944886766444226 1.4228856646915344 +3.576107180077968 2.7079933310721827 3.9818424285319147 3.337455108621883 1.081136750321842 +2.2420486500869945 4.030311640278312 4.244494503674026 1.8188904910954395 3.013542657392679 +4.677820672220762 3.342283534760907 3.4418962794598698 3.226478660753104 1.352798653157135 +1.9453037524905628 1.0173502853689103 2.531987103362745 4.392190581738861 2.078810866362233 +1.158398706851957 2.191525255510943 4.108690278938237 4.2644275599029555 1.0447988161489807 +2.893054341331189 3.7559775094749757 2.3300536368586786 4.937521062672783 2.7465474273714885 +3.6390004357323993 1.5111186048971632 4.0488990999750145 4.609121060860865 2.2003930856684457 +3.903004482687471 4.438283273153915 4.95029705097782 2.7946898189602627 2.221073146532913 +3.4958594693449694 4.740962483846415 1.290203765411786 2.5398439649362428 1.76405276139579 +2.0695931537180527 1.1021052124371113 4.738617059265293 2.217742156574524 2.700156142066645 +1.5167335647100808 4.864177060049309 2.6549878626888694 2.322949409703528 3.3638709084549916 +4.551179006137637 1.5450200584610867 2.519853242366706 3.2905694034048873 3.1033844459849345 +2.5155505550190926 4.459384167942075 1.1962687338498976 1.6638122132911741 1.9992713722497184 +1.5919709595541618 4.668360761070725 1.5853131235244868 3.0878788116675637 3.4237228068376098 +2.10125628264468 3.846693599466611 1.998113782034391 3.4410957344795423 2.264674003479742 +1.8956329327372812 4.191729611028713 3.2189236569552957 2.877502430549949 2.321341941615039 +4.267952669898758 1.1619570085773674 1.528440636308373 4.379337880427555 4.216019941209203 +4.505896637130826 4.283173164335604 3.8038159765267494 2.899646755576161 0.9311969316145527 +3.4275175687055692 1.2854653759494217 1.7047717306616703 4.271401610659693 3.343048988182806 +1.31555916394839 2.2633799950327083 2.5259576532363983 2.7105144653680187 0.9656218435503384 +3.7181143818379865 4.037809756169482 3.841807758851234 3.3613603358527424 0.57709172462863 +2.090051123131558 2.6192948388028094 4.076473231837561 3.391844711689077 0.8653410432761266 +2.861647564873585 2.309793165204286 3.5166155958045935 3.416788416328756 0.5608107917974329 +3.252061114270163 1.7996167963726415 4.937265313728669 1.6060153127971946 3.634119021894955 +3.210504335931208 4.453629834684812 2.8210893243475508 4.56537517106764 2.1419370020426403 +2.3660790854290363 4.7803568823510965 3.340029896813866 3.369881701801301 2.414462344078251 +3.6395954452309565 3.1083216653665477 3.8455058762174796 1.2862364204185344 2.61383090052835 +2.6500868109791793 2.469825037723737 2.1705739419938435 2.7037446211737866 0.5628190473272899 +4.822584983160416 4.123995670075786 4.034763526464886 3.21825094405946 1.0745789061685662 +4.992407402000489 1.4000800220069145 2.7095744504696597 3.4287581965724487 3.663610414019201 +3.474103252397204 1.3123011786828735 4.919981289646536 2.0892393572316257 3.5618096655840104 +2.101364520773467 4.603729564740721 1.6027689495999908 3.7991026298404176 3.3295213542231106 +3.0352649930786066 1.4017365890067235 2.921036664253972 2.4746897232325535 1.6934109479594168 +4.370856421428077 4.165539743577991 2.094951338100196 2.952609652743398 0.8818915595922288 +4.714177925278283 3.6442759135629856 2.215176153521874 3.215692288355491 1.464828607972564 +2.457655341246978 4.650046112945595 3.6956717854732783 4.485690294536532 2.3303876373882053 +4.57654621488013 1.5307838160434355 1.458151154131147 2.629278963687203 3.2631593489259796 +4.6797211157287215 3.282889627347011 3.4735952602437563 3.5008170706936057 1.3970967160146186 +1.0753639243659068 3.6257446958864787 1.525976845758851 4.351372946445885 3.806219279747209 +4.00963699261456 2.4356793981899374 3.530712073698102 3.2427278198826985 1.6000866974925325 +1.87098544780117 2.038277504067522 3.9320442302164924 2.9784589132621426 0.9681485365380418 +3.3485572331000726 1.686779759051094 4.6437614220159436 3.420959790426233 2.0631888433866306 +3.0637368681591273 2.4094588328652806 1.9339866688395784 2.774701259292317 1.0653078287838178 +1.1508844711237107 4.327399611841651 3.9995962884386835 4.986344919809564 3.326247330058699 +2.095372465115295 1.3045868224666726 1.8362017843058034 4.6135022543652555 2.887687627429887 +3.228723902234901 4.1313394009337525 2.6227347115195276 4.259035981594361 1.8687419792309183 +2.4344967177876806 4.803073735081654 1.6215370036103964 3.734837937533431 3.1743027461433457 +2.4326797483983964 3.4250797171475726 1.4483961820537008 1.0627555891761156 1.0646954329048008 +4.692934133598154 4.841376177295395 4.777185819302762 2.609282751720176 2.1729792338563656 +1.3555373207464978 2.897428410247811 3.497377938704976 1.1004213537916128 2.8500577190371215 +2.120434577663549 4.744082722362309 2.183958705106548 3.4744513690280425 2.9238503557494937 +1.9461061523437615 3.5407758769130826 2.408588474591562 3.7241205115413862 2.0672677791469947 +4.563441347206076 4.757583874280176 4.446025049715502 3.014200188213655 1.4449269029378267 +3.8564446108309176 4.7959553436798545 4.977564306237733 3.708338894645669 1.5791179698076363 +3.951681589769164 1.0666732059603707 1.5707270673434302 4.814850131723519 4.341383170314489 +3.864263381550049 3.58941268817996 4.343064224080024 1.6129023258968633 2.743961897318747 +3.1605844473988296 4.660211382130312 3.8908315329283245 4.9533602606013805 1.8378923364829247 +1.1849778672473867 4.275542808185273 3.1587080294869394 4.059644225619049 3.2192045110019643 +2.41864227719768 1.63690804053783 4.1155809986004295 3.562068651274976 0.9578540261479782 +2.535355040773792 2.430900230373551 1.154242593789856 2.733038529884262 1.5822475834217482 +1.4487295933654667 1.204184474286654 4.767526467526073 3.659656208236487 1.1345390370911197 +2.390480574248575 1.7534644678294566 3.3762003132687552 2.08516373002672 1.43964057288847 +2.2481605231119466 2.677997418882981 2.4369449249527744 4.107375912166814 1.7248476570442246 +1.6295186100761674 4.794771586859358 2.5044999991441808 1.5534136452860974 3.3050554699626318 +2.2797459545876486 2.0249961447833087 3.230336973783069 1.695848681021189 1.55549085057374 +2.153680984621338 1.2838836609670023 3.275114894914666 2.4199654362214624 1.2197655434301806 +4.027974542728848 2.591157905412706 2.596620082846284 1.1045691990124835 2.0713903275862067 +2.160312237760703 2.156928781780881 4.741603128837678 2.125377717136062 2.6162275995424515 +3.822145188409772 3.7555960550523264 4.870052036354425 4.515100715801168 0.3611360230067444 +1.2284177906327032 2.7353484072430985 4.911735507664564 1.1793034856980817 4.025156976054299 +1.8719524624824913 3.274437769774453 2.712462753917212 4.818543778862996 2.5303245485128016 +4.78113519390557 2.4009353254002 1.8047471463013127 1.1279412734057033 2.4745540211559267 +2.030023252444079 2.115879695350625 4.670595427947935 3.1770420174290948 1.4960190904066115 +1.6191058721374132 3.729904627652074 2.3649640079645264 3.7919724841118265 2.547905920021083 +1.2721165138120698 2.5038597825379987 1.7827015920825962 4.142062437318755 2.6615362252062464 +2.6925732275406435 2.304247498302812 2.982817708068317 4.578453213441911 1.6422087376448031 +3.5687548430547484 1.7677128435544098 2.06059769052655 3.4773054924199784 2.291465312831483 +2.5169123034998164 3.6771921816458506 3.84332480966023 1.2877471775289329 2.8066397042513995 +1.2000634091273072 4.418443689172265 1.2087968438281909 3.7438504988176775 4.0968852388928125 +1.0986676756084695 1.5234012091750366 4.355766553804664 2.7363645429839107 1.6741748556188036 +3.114731509612819 1.565306649528733 3.6848881909720164 3.0198109659948438 1.6861331834199593 +2.262204062524601 4.142511722652556 4.894513112219139 1.4931073043310037 3.886530376398852 +2.2938166781439224 3.779810963980868 2.174104774363305 1.264743041843324 1.7421589416903942 +2.795674328817149 4.628950951036673 2.723414532552891 1.5922846711057828 2.1541490052997685 +3.8841749415546825 3.966377675014874 4.957442999360321 1.047541635746268 3.9107653934465767 +2.167571227550627 4.665094771585876 4.571221921107792 4.7213280483878215 2.502030316054823 +4.859027102162302 1.3732273243776207 3.2934669619359007 1.4089263873402005 3.9626119249935674 +1.872894097759751 1.9314812123801897 1.1420823772741535 1.016164659876877 0.13888024176998257 +1.0609025039676658 4.982670693194552 4.310587454437191 4.2934432345618525 3.921805662485976 +1.1217287827471698 3.7570953968738587 4.4852216932720035 2.1240403756516733 3.538408456570955 +3.9069121380755463 3.2434299108033553 4.739054338568984 3.8569070037020143 1.1038082199000714 +2.081681187866226 2.6779428607198112 3.456199174174024 4.531456272137103 1.2295144607665816 +2.4883654588539943 1.6016416545228163 3.559175994467527 1.6529584057609976 2.1023664287325587 +1.5422949961860528 4.344422582329697 1.058976539360541 3.663774756678641 3.8258192275603875 +1.363621714617739 1.877917920298358 2.99962920157203 2.072629584586814 1.060107955383893 +4.408742466026482 1.8077915424233275 1.2032234088369962 3.554454950016089 3.50617105504388 +4.001843933483792 1.674238035855883 4.210979285514684 3.7239468039929684 2.378013846202209 +2.5234884845719594 2.523488345865256 3.7287317762826646 4.161916085692349 0.43318430940970654 +1.9472679038990002 4.138782670626377 1.5495792249660183 2.609121235026243 2.4342075186529617 +2.881682315909977 1.9986279018003628 1.403721792497009 1.4135939593795888 0.8831095956660371 +4.425207972198542 1.308514965552022 1.1088404812007977 2.691550672457981 3.49553241255015 +4.181402816086257 1.301527321691815 2.7906011328640656 1.1644734422396388 3.3072608196858564 +4.9512269095933625 2.9224299619895877 1.7518325811124367 3.8972061708926673 2.9527351547900307 +2.9827552841643468 4.195981808769925 1.7019354106856235 2.8546101255803746 1.6734926346907615 +3.515021459679338 1.6569618392072347 3.199097212870986 1.9589815721835722 2.233891751071768 +2.1392315925417593 3.547574579635394 3.1837034565359903 2.3437372732938067 1.6398088785850207 +2.081180513746841 4.747272580839361 3.540736788766729 4.437418841824721 2.8128429772189496 +2.268655121335295 4.243913325373795 2.2277713714276612 3.1512141375190947 2.1804567216223294 +4.727300114617762 4.527758342332872 4.226060975034391 3.633691025639729 0.6250752561351554 +4.8076325550931305 3.7876129475699316 2.132471039494807 2.5183439694077356 1.090567704350064 +3.9893637859363302 2.881015477250758 1.5874533619698354 1.8602170867253998 1.1414184258669988 +1.1965297661123508 1.2699195956558338 3.9078951747121473 4.718459594904892 0.8138800564965463 +3.110776135831943 2.550464128379736 1.7576320898848388 3.9253894856528504 2.2390001502014316 +3.2967856832681988 2.2892652188525746 3.9773624846994062 4.653314256901751 1.213263485216532 +1.6376965312919602 1.4176621235310294 2.6811884616278725 2.300429869246605 0.43976385284703384 +2.2303188208232614 3.2681357933114525 2.0800999254392583 3.2542009633594975 1.5670281795902516 +3.114653158409906 4.722206475089213 2.6618247496771392 3.539316496870665 1.831452820129251 +4.158118244589954 2.2748447485235492 1.8717840670714079 3.080691321623837 2.2378953977109095 +1.0771195207811841 3.056132373588611 2.9417163782661353 2.90284194899972 1.9793946278667576 +1.5616242921490455 1.9113767751920072 2.0179821535761677 3.0837947087987776 1.1217322328723847 +4.198319277347823 2.8792475304176515 1.1254999773932153 3.552884555637003 2.762633917884377 +2.999168041174174 1.0740587012092817 2.0614746311340033 4.630563259411716 3.210336797092467 +3.8289839205682292 3.968265390797434 4.078946359646338 4.790441362290418 0.7249996322321192 +3.997904953459574 4.026687076843535 4.323446785333405 2.2039505215080313 2.119691681116904 +4.749623246815738 1.0375930239519735 1.8939021582117084 4.329003942683525 4.439469458864633 +2.733889253260685 1.050106266994666 1.4632776823625022 2.5274197045424613 1.9918642996469826 +3.351109721503693 3.453439402286054 4.469911319766761 2.593449892609261 1.8792495446797328 +3.5684899737388456 4.51278785812228 4.249808242646473 4.828292616441814 1.1074035692449335 +4.334877149172991 1.4085485549089571 4.264929015662284 4.809059689462254 2.976487398222496 +4.952810274056191 1.484174188494519 1.9796820735704048 1.5969901491801202 3.48968328119532 +4.364456353723416 3.600650023750125 3.351364043263939 1.840702197325525 1.6927785804650657 +3.667791046508633 1.514523590191709 4.549441659794867 3.156442870624048 2.56456748109012 +1.6979405350590966 1.643400792178273 1.4970470539551508 3.531072389988044 2.034756410771872 +3.8004061387978783 4.078417134583826 3.266224854093825 3.8920773233064136 0.6848221864085513 +4.575786234029286 3.842656101032768 2.736386062097417 3.2332501674131824 0.8856374715755471 +4.81374172415603 4.7965291458476145 4.8205458535906605 2.6316327007336398 2.188980827600481 +1.4007528000391214 2.8090537122778447 1.4805159124662315 2.6155007104405805 1.8087293747394313 +1.7837370821391327 2.673043631527343 1.395005726867511 1.248424280554059 0.9013058632828863 +1.3490072875559993 4.55946116210135 2.417482168588487 1.9480449099509345 3.244593259621365 +2.792817436847769 4.668770721790315 2.396398404588003 1.5757323221307278 2.0476067850499278 +4.396547295533724 3.8899303200699524 3.7072620406006287 1.6909621693983774 2.0789723255585377 +3.78033985542678 1.7199947662818604 1.7700985562156757 4.724257224089283 3.601676737484411 +3.2841835854724093 2.1032603764398567 4.107900605588032 1.0284425906888668 3.298126936786765 +3.8812792606869935 2.428783201736496 3.4017688625729985 2.8206528817788388 1.5644297952931876 +2.764792564227804 2.3275013838043623 1.7968476960891482 3.9095651809088623 2.1574982612134512 +2.0474502607576426 1.9795715328380212 3.0919051334539573 4.308676284656752 1.2186630199129533 +3.776078453036671 4.32702266337046 4.054472308085802 4.910909531298838 1.0183438712955357 +4.559787902860053 4.221694095408548 4.89535640122562 4.617723270340724 0.43747866005327124 +3.440556071869974 4.549548577438474 2.485671620865109 2.185901238713849 1.1487935669310703 +4.767821622885748 2.774069141977795 1.3987539206602468 2.3572143582163108 2.2121698319719436 +3.3736995689799976 1.5940909791746818 2.976198110419299 2.1752968560255654 1.95152492994538 +1.2566460874743575 3.7566315365930247 2.619962352516979 2.6542995790216 2.5002212483956483 +2.224172369742018 2.524409231395064 1.9152240629331572 3.6512453095632886 1.7617922527490313 +2.3848053630589225 4.727778330519085 4.494088010623111 4.910083918888935 2.3796165493505432 +1.893650125061117 4.012749496369757 1.9277290381669134 2.021410856898074 2.121169118349938 +4.5017951416821855 2.630901646664832 1.9144151817077688 4.6934320367680185 3.3501010657004375 +2.989809478849624 1.5627261769120553 1.1278227107245313 2.618721673691477 2.063818419446088 +1.4609259460645831 1.2037954790773755 2.7888243628400096 3.0501093515779965 0.366586855182874 +4.140677014561524 3.527038323833814 3.1286172374844416 2.8143369426460865 0.6894378481645036 +3.2278401408923614 4.106518841117287 2.690604930616304 3.7588186739353926 1.383169136311516 +2.3597137317728527 4.657433422748163 4.715100772791666 1.1706625871925742 4.224045197417833 +3.685266068471644 3.244590581751051 4.0204418635171475 3.8011323804440447 0.4922311793885298 +4.78445619838689 4.56515877119734 4.426055566818719 4.332694648014781 0.23834349735596147 +1.674480339143026 1.9785463748521934 1.1572437863515428 3.9629514051222605 2.8221359634326513 +2.636329946473384 1.9523691154915412 4.798675728993679 3.4179373228687724 1.5408572174168897 +2.2305139459340824 2.080571548071428 3.156918067475506 3.8359159365699593 0.6953566199523886 +3.929209530250906 4.099679969144992 4.852869371980383 2.647165745774947 2.2122813241521864 +2.1915928344644953 2.6047175412992547 2.131085206665717 3.231760108164718 1.1756518456529301 +3.599254542594744 4.536454377398195 4.531240857034224 4.698144534413017 0.9519455698085793 +3.6364031024654775 4.679585225350816 4.170052270036365 4.684289306688109 1.1630428501873558 +1.8123704793898425 1.823085427143162 2.16555895779393 3.507269744861796 1.34175357135341 +2.3546049265872067 1.1327842629570508 1.1588264322762485 4.373834277369977 3.439348946833958 +2.39665029168923 1.4789193238243183 1.6422502062308695 2.7073114512427696 1.4059109449053186 +3.2150926429739575 4.551016306949159 1.6891964130373114 3.276650575347449 2.074777760003396 +3.14996320687265 3.8921560593919344 4.171003866945709 3.4920194116014724 1.005917551755521 +1.4806987461659915 1.236016174821052 1.570948146049707 4.659132836302626 3.097862850713777 +1.5891512519992395 1.1440090406050443 4.121371750461444 4.228433326925167 0.45783596355006007 +3.818535677845483 3.097434910870034 3.0642209512688123 3.8657955825061956 1.0781967378803963 +4.873006215740441 4.745847069708355 2.2017927377544475 1.0914378305615697 1.1176123962926117 +2.532313852490427 1.4307421294745555 3.024833290547174 2.1534180462735497 1.404572813669913 +4.812736530465026 1.3503378487199096 3.1095030282554887 2.856387514167549 3.4716382436570665 +1.5930679140821535 3.422138610932743 3.1060253986512505 2.777936606525152 1.8582631324966503 +4.751504068251465 4.048875142502988 4.924261703590313 3.9089384913823744 1.2347342355935162 +1.4688642959449245 3.900676282806948 3.6862285290626446 2.6257178515074164 2.6529968783725453 +3.223798485598271 3.05539826473161 4.341260919023455 2.5780831085689626 1.7712014638846247 +1.0111261210550837 2.3219049755170493 4.066482279021612 3.678965420611698 1.3668615587748862 +4.155925509960408 1.2254745644676248 3.2278574799107216 2.5422695176305052 3.0095803026274424 +2.9880110137259215 4.929822595310684 4.2804766014239295 4.0413431425836706 1.9564807766787853 +1.6192436112852637 4.746616067722883 4.300518161058279 4.436438216939978 3.13032470246707 +1.2880613419565021 4.064759111243309 1.0392264882252435 2.8682666108523196 3.324971920504292 +4.305323320584778 4.465979611867906 1.0172206100376706 4.840587580631221 3.8267408372862866 +2.3225347786383614 3.7294768467023216 4.285258747484351 1.774977169213368 2.877672598662806 +3.0800806741848126 2.2935565988165556 4.324262700882972 1.8055833873882539 2.6386294937637826 +3.42745144639976 2.979606903920999 4.058044021999874 2.454123238982812 1.6652707324702718 +3.021391379165095 2.3800201407324977 4.240501559025645 3.28520146309915 1.1506325820024979 +1.5434475205905804 3.7552504582587183 2.690091663870779 1.1260708303984668 2.7089173857120175 +3.335237295866131 4.94397221038909 3.8696128194950328 1.5077751900803338 2.857674756322776 +2.406653708358056 4.747178876689456 1.19819527350682 3.7348136291967595 3.451447630490119 +4.081227950407622 4.618090431074541 2.4399562487561948 1.5957123153139925 1.000484453803156 +2.5892243684190808 3.5991554208858156 3.785530030758915 4.628073952242456 1.3152341960143183 +4.560653741576557 3.3657338712913694 4.585162300652907 2.9404630746417464 2.0329459019964307 +3.8663843761734102 3.6918813491334035 1.0541124814673868 4.220142103423219 3.1708350435725787 +2.977612596050558 4.71772775160361 4.264156650207511 1.8417704389712486 2.982608876633508 +2.49489704523231 1.923866293329151 4.889220903771735 4.384650795885028 0.7620151661167184 +1.0143869727811428 1.6438061792671181 4.62932986757969 3.7176184418097273 1.1078746595950886 +1.5676556564998707 3.556468908070516 3.8260416461443425 1.6455328088949566 2.95127039407535 +1.7469898876705798 4.894336029626321 3.344615091527555 2.647731159059637 3.2235748715697046 +2.7852699286514175 1.9949810506437595 4.811675424306889 3.9800507727973002 1.147238454594793 +3.786201482543615 3.767680775604272 2.1088553969711423 2.33099577563733 0.22291111327049243 +4.5534441150451155 1.4594259682700623 3.669234110184818 1.9968544842830354 3.5170729173141577 +4.485759652167328 2.070063613243976 1.836034578372967 4.900428461829879 3.902063201107602 +3.1800176395587596 2.5540212629573293 1.3444465594316766 4.537007980609218 3.253355174509737 +1.7644755202475695 4.41557171577083 2.040671558236631 4.355209687765901 3.5192893872148048 +3.6889496258354586 2.4040846438295147 1.1843709531820354 4.325687821178347 3.3939283562183937 +3.738979121291298 2.110077101284703 4.95611916353685 2.3727978807929664 3.053992573772744 +1.3106889542249052 2.152122500047344 2.35017572874861 3.9855141369989826 1.8391144938622457 +4.404574133018183 2.2716524866360093 2.277080487832975 1.5871905116903702 2.2417187443539137 +4.060421951832266 3.5047495038413286 2.65520759914705 2.6115322429824714 0.5573862271283209 +2.3334192991573315 2.5905951320841467 4.791577090179871 2.1877502150396624 2.616496475201911 +1.7490389995148203 1.8132027291254014 4.710906374621149 1.0415180432888134 3.6699492789840353 +1.048077241999 2.812701527542943 3.9019084796512487 1.5547459806454067 2.936506541091101 +1.3313105582718046 3.188631263242987 3.6961649749029863 3.979659945685309 1.8788319774725786 +1.589342121655445 4.515913979135316 4.095675690045842 1.506169011548566 3.9077317813502983 +4.2885824230011815 1.459115640637688 3.3016043396217873 2.5110124749206992 2.937842366266435 +2.0949132662645047 2.1337040024297598 2.0249721505835154 4.836502585988808 2.811798020915179 +2.8990738638404157 4.313194316654741 1.1703342658071976 3.007112253833486 2.3180789530052017 +1.3086564149515856 3.4158222109068803 1.7631553525946746 4.963378531294241 3.8316544840486166 +1.556849582289661 2.6440692016235032 1.6099997315594603 2.1481765139697444 1.21312849681718 +1.643198431703968 1.6309968480382908 2.3255081814601697 1.5243637326431312 0.8012373596596123 +1.9961039950762718 1.3889964418229623 1.5812477874070798 3.042290648126489 1.5821585957407602 +1.2861966207863724 3.0708969408628555 1.1579110055933732 1.5032970590042347 1.8178137303837902 +4.174646005140461 3.9379186229689167 3.75390369740939 1.224201268966437 2.5407546575653397 +3.5052575494738645 2.0497170257656783 2.8194801422909217 4.873036164543322 2.51707976685003 +1.7299437281443852 4.332214409366869 2.1706704249257163 1.2680447069862253 2.7543685093022523 +2.6130497094921243 3.015772824339805 1.5884867136860517 4.243893623266936 2.6857720980534667 +2.173269957364874 2.446502561274914 3.266236479205818 2.8788478660106502 0.4740527327974557 +4.453623555441849 4.64791383762886 2.3340868557686463 1.6681952037404555 0.6936572683920649 +1.7871882298920991 1.392942860432545 3.7634138762699676 3.86191488311945 0.40636419587687866 +1.0602978836989516 4.890766821947215 3.3901760216635175 3.094645982250417 3.84185245566254 +1.962508101752706 4.4964114273833236 3.808899795775162 1.7212434280092364 3.283134961209411 +4.102965294120786 4.178854063736775 4.925773564001258 3.2622562572285223 1.6652474096320473 +2.4480299897161717 3.654914876245261 3.1780133779485973 3.6648427148040192 1.301373863482521 +3.109479692613741 2.6806363793286034 1.2635682908460368 1.2172451027762818 0.4313379476724955 +1.8351133458174598 2.7477412407185984 3.58727553375624 2.166252513433286 1.6888446047044867 +4.17253933302794 3.530766377676136 3.8751042725087066 4.588619307014501 0.9596750651584077 +1.2156028947473079 2.781509639961289 1.5915209115203273 1.5358743781420956 1.566895169238727 +1.767414358971577 2.1431007552606687 4.441099648012532 4.860693156715765 0.5632042088821555 +3.154009835781133 3.2300585037006404 4.753645096473559 2.110541464183506 2.6441974606517573 +1.7126360008642445 2.3144614675668906 4.3224288783746285 4.862384566461586 0.8085456310371835 +1.956756475166093 1.3438950738184459 4.623266877457112 4.301462905295539 0.6922115960894968 +1.298560012294129 1.083878314889923 4.450321420826931 3.9301174624901143 0.5627613965702017 +1.556160362741959 1.0530792800302873 1.7517641184946249 2.500559748648596 0.9021005883603173 +1.2542502458098777 1.7266908169695006 2.058965685793503 2.5261536248197696 0.6644280725926932 +2.4746781003025964 3.150310356255138 4.960153482947381 1.290661080247511 3.7311731987078254 +3.899131159390888 2.0472621530462076 3.222608066704939 2.146138127963136 2.1420098845884943 +4.348901417592886 4.061431280660539 2.6758136925559164 4.180005406399708 1.5314149638893522 +3.829275501875768 2.1418504894774055 4.645318247672457 1.8444119262081773 3.2699356865366904 +4.779727135885226 3.476633440746478 1.4740969986963983 2.381079614344287 1.5876620054022337 +4.921416384776667 4.025681787558285 4.477107421716319 1.1031330483409416 3.490851406297287 +3.506527437516934 2.0721624105965937 3.5916287074382973 2.291979437868329 1.9355855068546934 +4.63303859137682 2.0725611634935763 3.1469561395872194 1.8992658779257554 2.8482934623638143 +2.589675130702325 2.6243140508095593 3.6118841434387456 3.0157730310210282 0.5971166662672244 +1.3504343624466881 2.5449460208733314 3.605029615705212 4.09988152727427 1.2929565021688552 +4.225279103574479 2.5021722494693175 2.7121807161423703 1.880012522526901 1.913531064061783 +3.2235571656543143 2.6108873998801085 2.746446991393232 2.236410223935801 0.7971836338336644 +2.288971522173543 3.9705704809395947 1.3903124007242655 4.974818347229338 3.959350696598281 +3.3294911417103794 2.269586844163573 4.377975957814846 2.1107730276235146 2.502719769895613 +4.169966514895372 3.6323363358535334 1.7248459473501194 3.2490832989513803 1.6162752591786416 +1.159315941078289 2.6292064802018387 2.5526716622002987 1.8049814383240288 1.6491266985544397 +3.1760653261493346 1.4501658845503074 2.5493254421896765 1.6279237765890588 1.9564534014086372 +4.00668211847627 1.243919216587054 4.788140039759694 4.484923923274353 2.7793522384454574 +4.789949460665259 3.166272906802584 4.386636564748802 3.1098486583786302 2.065553898937643 +2.295982588858958 3.9816230118368967 3.9777040345578563 1.2535913889498271 3.2034627111203933 +1.7272524177981325 3.7620280816429448 3.381805820664026 4.228034768930472 2.2037276227018694 +1.5511910830088471 1.0312052717541609 3.2744999480269854 4.308148116651606 1.1570712080106504 +2.0163343198447436 4.113863453124646 3.7210989149597693 4.209627760089319 2.1536687065288262 +4.266939448713382 3.048672077740446 4.2452958491268316 4.491651506653591 1.2429265855925486 +1.382944666006999 2.1308923576279253 4.700822762273166 3.3752796537116216 1.5220020637489537 +4.029235176078833 2.886320229319518 3.518677120075501 4.982250284146943 1.8569601455378466 +2.5287982913776705 2.403422978574189 4.450404121995822 3.395460953678421 1.0623671952014178 +1.1192088549787278 2.275212765200422 3.9738391598675706 3.071651986927223 1.466385602584103 +3.8307874158047213 1.1952447862943503 3.136838144851643 3.3307367369951764 2.6426656269762328 +2.1575144624638187 3.4449150630447494 2.1515289895492473 4.237321741341869 2.4511082615434963 +1.1787994186867392 3.06184333446255 4.732263407077463 1.4628207916235136 3.772944394565955 +3.5724407983369284 4.009749582355711 3.1039839272332244 1.295764740759322 1.8603482466765 +3.2185457907370068 1.3269175233121429 1.6432856346754048 3.889918642098302 2.936940137653957 +4.757797014704124 3.2427032871137853 3.4643034991974595 2.111915711747953 2.0308770841747563 +1.391549917655135 3.1559844078784387 1.1886627230644673 1.1552083161977031 1.7647516164118895 +1.9767672492857113 4.266230761924767 2.3776499463678453 2.869708599769631 2.3417439855998654 +4.644550213095647 2.7745357431800937 2.2164415521688334 4.354690206301604 2.8406093403694483 +1.3975626619245896 4.813430026633075 1.969808007854441 4.429361486892235 4.209222394876209 +4.309827549600518 3.7025716204551564 3.287591339551196 2.2692556166879023 1.1856506264248772 +3.7183614730986307 4.481127183504608 2.6895884760919597 1.6742039764707601 1.2699674055038297 +3.3908730949754493 1.7987013449948264 3.601358251164968 4.0481278949181 1.6536668334388458 +3.182230576788814 4.437324028606113 3.619664197512628 1.7324086511674706 2.266493562753978 +3.044031308946579 3.2188900568735757 4.089356234829754 3.229332282363484 0.8776199522243684 +2.9793890886398167 1.4464086062087338 3.432676402176494 1.2831460696124117 2.6401723069011407 +4.020559153077159 1.728954841042877 3.3710120991773045 3.3296331090310107 2.2919778672054503 +2.1816364679315723 3.842749397227523 2.341821673556267 1.4380771979493314 1.8910447485620823 +1.2601893926540426 2.2751638562848946 1.0080511716914637 3.962473860240586 3.1239056618977084 +2.0741521748299854 3.1123462357661156 3.473380128847949 1.2537722424818312 2.4504093693466236 +2.9004245272924614 1.312066915353328 1.0413809772152027 2.172413333644533 1.9499010474111425 +1.7587440870852098 3.524515351096295 4.693917599881173 2.1349341448440664 3.109074537537007 +2.4851142856987307 1.752836456880027 1.9495909582296505 2.3131390124607534 0.8175561181439814 +3.744041770488407 4.932966658520841 2.1387015081776104 2.5200768195299332 1.2485950174063714 +1.8240688149232591 1.9815441706735735 4.7543764944111775 2.5012709298801616 2.2586020394459303 +1.0563490032434233 4.3424749320781295 2.126548557531205 4.930918088162745 4.320082416400679 +2.0092759400723463 3.4434439119958205 4.985863119734628 3.362954461872276 2.1657955313130715 +1.8261499643894883 2.5249699802230583 1.701799298259688 4.9045262456836705 3.278080126275954 +3.535672280341246 2.938999872754395 4.411288889357966 4.839564725272327 0.7344645352933212 +2.946618020852114 1.4459851183163828 3.1724085999125533 4.656208705677642 2.1103463843742105 +2.932987679441296 1.413288248629189 3.9846866533536858 3.13910323556253 1.7391082992309634 +3.1258989671660267 2.3792242661115357 2.7990519554680104 3.8650734581478403 1.301508721972533 +4.6763175189340505 1.8640884185938162 4.265144228820388 4.768484811132884 2.8569186643310527 +4.3178799191865265 3.36735008669988 2.5972419407207736 4.532013834002017 2.15565517684953 +3.93266714889693 1.6647719433701371 3.6715180590417567 4.361554865789375 2.3705483454082654 +2.20096183347058 3.470720836103349 4.521462100423845 1.722558478682172 3.0734588672317735 +3.0551792131763684 1.2942889979522483 3.734757135770835 2.6937225989100733 2.045601930241793 +1.5164934714881735 2.162137772296461 2.9824096062401377 2.098095929569597 1.0949279619741163 +4.575129085792143 2.9315239847236554 1.9991070445565287 2.3817331247602564 1.6875545755650163 +2.5670221210797015 4.822708655175223 3.739135732652347 4.880819317877828 2.5281540991152367 +3.3163354494010178 4.705732068261657 2.154873743608625 1.4679271851455535 1.5499414629867911 +2.189883028013461 2.0134638267193106 2.831307097779593 4.456844205769768 1.6350824517553624 +1.7789403078748167 3.9163572859839033 4.473451116974147 1.3830825670167557 3.757516348983026 +1.9666572449930588 1.1458505550336384 4.8422524795822515 1.8154423879423147 3.136128656980689 +1.9658023894460195 4.786131716525169 1.707725088574224 2.036937218728495 2.839478497862493 +3.2425254817085434 3.3194966577169476 1.8051735709634409 1.7378851907996595 0.10223643206402648 +1.2368863725562713 3.7139699270867337 2.0715891352589253 2.592653269608293 2.531294287164281 +3.7467712405091156 1.442936556267083 4.606495549221321 1.6776720021779732 3.726346954059989 +3.0517675171724767 4.507416462714232 2.0797176012039493 4.834763428793501 3.115957535778596 +4.9296671660345925 1.8589343231974182 1.4713424533175736 4.93685476109104 4.630245754537037 +4.680025638081974 2.84382786277939 3.601857137649919 2.9361750658847234 1.9531397519624039 +4.914780964195421 2.987560819124743 1.2652679803858637 2.8639919031558634 2.5040159082568425 +2.5885912044063666 4.421457066037114 4.407127104623594 4.301893444935903 1.8358843617893492 +2.301867398921273 1.0260874431675977 4.272174818381984 2.0888884473595946 2.528705968157422 +1.8138970042544726 3.9054944489719143 2.668107243744855 4.834152696477908 3.011068377512219 +1.7668998496245303 3.9939440978019594 1.2105449004763345 2.463704247673776 2.5554127715123616 +1.3353657956813998 2.558652917630189 3.9007584869360494 3.8699950540711696 1.2236738828329154 +1.0021780936206732 2.873408684955997 1.4452243521193453 4.659141601559359 3.718974053713901 +2.958044242444224 3.0047775113221604 4.479289261406646 3.3115063159924567 1.1687176759253097 +3.11997312725542 3.7129998255811887 3.263290346269258 1.6890087824444735 1.6822731963405266 +4.259430687535828 3.8750472327650565 3.393251883988373 3.7072798147161685 0.4963508653953322 +2.127075072969384 1.539125009484752 1.487585398249228 1.2831769888109053 0.6224693365947336 +3.5360422743738 1.434591872008598 1.647352810359941 3.270981569151143 2.655609937467234 +1.7126014912415384 3.2869270133815895 3.1772221980556785 2.7831102374553174 1.622906370419996 +4.107645784077384 4.573231761150973 3.683075712102135 2.796356477148862 1.0015194974056603 +2.8755246701113633 4.050613713987657 2.9027848748546186 4.1289954526659916 1.6983599860378844 +3.968690763930927 2.4869560812774387 1.8949679172474374 4.351143233875294 2.868507426483359 +3.0329347384352143 1.1469293311923048 3.289133806656911 1.8627396267771283 2.3646599655224025 +3.24989318423123 2.344764535741373 4.692306992770096 2.2765417674807304 2.5797634569926085 +2.3155302765773134 2.076187813546593 3.201615796142575 3.9379445421144266 0.7742511457880391 +1.3672085581987532 1.7284855461674122 2.156379477326455 1.8288479956339385 0.4876452947946918 +2.2169861297732814 1.0499290771360883 3.3348565476881458 3.4964634627545395 1.1781930907569813 +2.965444043210939 3.7718364791963204 3.366540768289326 2.823658845627805 0.9721057261260768 +1.9495756848741603 2.486752675112349 2.5166324527292865 2.509374647572048 0.5372260181497726 +3.3905505851444726 3.8275736328364944 1.1177291940066607 3.8233960420760695 2.740733886563209 +1.025365348693522 4.346495789955664 3.568590217417378 2.7546870894583133 3.4194072161091933 +1.315108673792032 2.7487440350074843 3.3017632153204364 1.2458413225390772 2.506416800563116 +2.0125903647832173 2.0567336049232794 2.032074182211601 3.997179971693502 1.9656015337563586 +1.232144532743635 3.709051830210766 3.1144863683567725 1.7503015054987978 2.8277323247253725 +1.410505672273843 3.783846788307388 1.1716660280919182 2.4376864962371614 2.6898988603324945 +3.3643926266147397 3.3041112437787397 2.2563224644924587 2.770666043582484 0.5178640385929087 +3.600992242952366 3.3261601504011313 3.2242643388461563 2.2183602148448283 1.0427731228694808 +1.8325622336166534 3.179466101047738 1.9428528178271942 4.470551033551965 2.864159265452779 +2.656629646280707 2.7318662562153015 2.7241962527055517 1.2055986168342638 1.5204602353065058 +3.0460275069715896 4.2748139493133 3.500961154476071 3.4111660995741326 1.232063014933749 +3.2790331851784575 1.7394340974115372 2.27257007436371 2.892476059608008 1.659713463702225 +3.6665642696568517 2.878510721635601 3.31939695102733 4.855454285603705 1.726412618598103 +3.274101160026672 2.3880817897387296 1.1578048076258716 3.132591535261584 2.164442871542607 +1.8850248015934516 2.001936120974687 1.5541164691185214 3.693808239019976 2.1428833675175794 +1.9969998021384714 1.255389792808181 4.072151912605915 3.00817013539878 1.2969358612389925 +1.6560506290712622 2.732553116255374 2.3555091836128246 2.879059983765575 1.197064344659118 +3.161283915156152 4.22689666079648 2.0748171700555607 1.555706097419665 1.185329839919804 +2.997983228014553 4.457585126330074 4.353065541793657 3.9661481721286176 1.510014156395491 +1.7690772613587784 1.256448965450784 4.281662754683138 4.239280061430406 0.5143773541407995 +1.6973300347610887 3.5057522395049383 3.1628000622389765 3.971734732823969 1.981102261844415 +1.804303498050004 4.052565239729034 1.2206739429323648 2.167396174406571 2.439459744014057 +3.420845176676985 2.1182761143082307 1.4729064081960495 4.857848265243301 3.626915705917455 +3.9273677536770095 1.8231747098497442 1.968176232040391 2.495593328545309 2.169284941951317 +3.7529372570489 3.1596927148342373 3.6190864033269077 2.4189751618867974 1.338733012477995 +1.983983153649453 3.1084707419324813 3.6422858174053747 2.454342734427645 1.6357509298781445 +4.571703867326052 2.9311434159005727 4.165269443286661 3.04069941772806 1.9889938001829581 +3.925998511595603 1.187335775332992 2.301459431820444 3.1109779091033767 2.8558000189186723 +3.1704750790184315 2.236497255690381 1.129862701484003 4.692479813692296 3.683008995735411 +4.684923454358676 2.352669777037737 4.6538056697073715 3.945150691791548 2.437539557238389 +1.976230614013648 2.930564556738369 3.989182742401487 1.5355399977132005 2.632701272989015 +3.7131907420499743 1.8654633471916742 4.276230949874306 4.295818748095366 1.8478312172785125 +3.726188040695896 1.2110416222707983 1.5978330062514825 2.274236750067252 2.6045121483234794 +4.9872065609217895 2.5335997514164856 2.8188543042500545 2.4155851305081875 2.4865261716179954 +1.309026601112179 2.671334714999071 1.7926649973303768 1.304661733631514 1.4470765641605847 +2.6850254759468895 4.680713753439501 2.950348360374768 4.1762800956468045 2.3421529242277357 +1.1529585669175568 2.468548188827026 1.3222175483801277 1.0234361203042495 1.3490909513590852 +1.6206422465578005 2.505757616476604 4.934354814185985 4.349974262299701 1.0606271010536261 +2.783925183384877 2.441704466784353 4.84592982987712 4.182360932454307 0.7466181758419118 +3.3048040615000835 2.259334415564283 4.854704907282798 4.515079985845723 1.0992505937384194 +4.156631759523613 4.222722524514664 4.873957080375864 1.0189868641018016 3.8555367145933386 +1.280972434808056 4.255596584995057 1.4793768645601504 2.646901250691448 3.1955440893667864 +3.390438689889678 1.83479863099757 2.831944324049235 1.089124968171033 2.336115429522598 +3.4965202733809857 4.4658051545597965 3.8365600380913243 2.168745608653081 1.9290199978030902 +1.2507200582658324 3.8803259012614064 3.5105537021646596 1.5819939737586446 3.2610074387443437 +4.519173238326026 4.467842218502669 3.271918890601172 4.395379444727877 1.1246326023527813 +1.6646364645691283 4.529863586233664 3.112686318950484 4.682195277425243 3.2669381428877045 +1.1730880075085404 1.7947018478882715 1.043779731963932 4.66591274774046 3.675085216771171 +4.775885363102146 4.719961613343255 4.110090749734538 3.7149759136219997 0.39905287807925044 +4.036214278983817 3.613333355823073 2.236081197192337 2.7436571634478173 0.6606524325948305 +4.655819037497684 3.3479282407533786 1.6220767127181208 2.1839073928637984 1.4234577792689918 +1.344798214502712 2.682462855081751 1.6624549275634597 4.05224416220441 2.7386929869303036 +1.4867821311794205 2.318900352545869 4.424028397084317 1.6426622722930193 2.903173824363024 +1.394552176802665 1.5014656697347815 1.6923484718761386 3.7488497913930936 2.0592785562293225 +1.730830571218779 1.4639045927232601 2.1051089820234674 2.958576585556425 0.8942351079420221 +2.8126591450155667 4.304826431658125 3.032057896985611 1.9183088290662655 1.8619882377763357 +2.07533477536294 1.1696856501332897 4.279901571040976 1.321979312666993 3.093461560228844 +1.4499173894836317 2.2238071103766317 1.9253848580356672 3.889658471532554 2.111226214498097 +1.9587519984138866 2.1994874654225622 1.2170553268007311 1.6937791437069567 0.5340591378129632 +3.2409774722680083 4.810314265114647 2.4180338738742577 4.05931687519545 2.2708209660402723 +3.3082269625762537 2.040772390550027 4.112080082644489 1.251445012102355 3.1288454897878526 +3.2077999464055105 4.763480608499286 1.9524363524629686 3.5439172306687414 2.2255232436681367 +2.0592865539054954 3.7601204231766805 3.9148978419662863 4.128570416894085 1.714202969352307 +1.6397652045725013 4.701736731141807 1.6125651602973985 2.0750873976796282 3.0967073561436553 +2.205834655528716 1.374483324619439 4.807890738446921 1.4819762520728923 3.4282433119714892 +3.2871953637673297 4.239317412509672 2.1784219247124104 4.340838188308722 2.3627485039180853 +1.566850862457537 4.309564064546721 1.9961436471985055 1.9902474971745314 2.74271953970861 +1.9025675330597487 1.0390722642485062 3.2979797854923305 3.14001385203842 0.8778253330767831 +4.165734330037255 2.692766997955528 3.507809537332717 3.458318420550967 1.4737985384781274 +2.9540751299382615 3.711157038953498 4.721995578249983 3.4761894749358975 1.4578085827751117 +4.811874216210008 1.2523908499247147 4.810101925275674 2.878254086884842 4.049933074207154 +1.3111041295360493 3.6343767844751875 4.818720881644897 3.9517692536340165 2.4797582451720306 +1.0373320604588039 1.5968782338814385 1.3762480614442691 1.5135939034977346 0.5761560557013078 +1.7644864322547398 2.2575783052438445 4.608269195094376 1.172209271495677 3.4712602025444594 +4.875415946235535 4.943477012970806 1.0693205907958707 4.546946899165446 3.4782922605021773 +4.860310665009161 2.8794120327760555 3.962913247672123 2.5570033623808097 2.429103125999969 +1.6141362538057398 2.572522671826389 4.897254955968215 2.9089623403177503 2.2072181703892837 +2.3464512241118824 3.401683921919265 1.7437384787420478 2.6404233806888655 1.3847598564015426 +3.7895957959924704 4.154611462700601 2.262069327300895 2.473703032653833 0.42193039969146034 +3.299589732241033 3.003875872762065 2.4377618982978313 2.804677512185759 0.4712470205770022 +1.8529818150173125 1.459724114431685 3.9241769834308466 3.3360907248332814 0.7074581730541937 +4.440992178307052 1.9038873573936161 1.5032374483461126 3.0653134713783663 2.979426517643028 +4.091331422543861 2.390760450736011 2.6905600271909695 4.979759460028293 2.851732047976846 +4.151053723775746 1.2316463337974222 3.7710297541111077 1.5987223444378191 3.638936519201939 +3.15219781374682 1.1269556835897316 4.431228693628093 3.5066099669614164 2.226325554690043 +3.364449654650931 2.5601760816916634 1.579278860723739 3.545420832611857 2.124281109877119 +2.5315380585015492 1.543609321897304 3.1471852427951754 3.171059098282248 0.9882171570987208 +4.746049206047987 3.117283889554412 4.045399235142894 1.309865489601345 3.183711879113591 +4.941800895121244 3.6047114473887794 4.946769094332912 4.205939475886866 1.5286061346221342 +4.492145319253492 2.4457119614138954 1.2938900658440171 1.608020055903033 2.0704026513538674 +3.7016478085363187 4.7633667688277725 1.4760231860474469 4.365667934899305 3.078521386186798 +4.745153922178272 3.4737096626725754 4.339012786050277 1.7696636857563264 2.8667272811014515 +4.43873574382655 1.84662674575381 4.027127375231881 4.546271453369961 2.643584617854231 +4.314912646534249 2.1041242980743124 3.973117691674164 4.951825543289159 2.417737409335235 +1.0110355235398356 2.850884154011084 1.9902241025141896 4.41501588094674 3.0437900965409916 +3.08987759589072 1.0341680610618198 4.816777918194915 4.082489041888971 2.182915904347462 +4.086016959995334 1.0401259580315791 3.9759594101283944 1.1890540043074038 4.1284735359255995 +3.4280906579250545 3.617593016627356 2.915702353907682 2.05692033785034 0.8794416950868592 +3.584255050033163 4.647158831851389 3.5100129779373783 4.432005377580214 1.4070658955438589 +2.3564488013018545 3.180664712487624 2.6653203958101868 1.7302248778709641 1.2464892682738233 +3.32727063898073 2.149157804062554 3.3470595870284305 1.3261623788582764 2.3392253798616465 +1.513864475860859 2.104652129622253 4.480954847236892 4.267251530896207 0.6282508728620277 +2.149928338433637 3.0215760297784766 2.8509999930471333 3.1996571266804876 0.9387925727551402 +3.1164078891900004 2.878583661721551 1.4975581061833632 1.5836375513122043 0.25292298045977174 +1.9559634075663461 3.979622432538627 1.4032990656233606 4.127194755062828 3.393346957842459 +3.04631094536788 1.0676428845008945 4.548040638313908 3.689411851311289 2.1569354855824283 +2.6488979779054715 1.933188686462493 3.1804396065057854 2.4944206765221146 0.9913938481520606 +4.080650560565008 4.701932213112334 2.593946163756859 2.0438895347289225 0.8297910501623366 +4.059787747023069 3.8968919096204706 4.341529592430355 1.7059478177601122 2.6406109794547623 +3.1569110787672625 2.359165170598537 3.469897495340477 2.3731204922357714 1.3562147059146956 +1.493067314123997 1.9807749449650567 3.6747034588984446 1.010758921823356 2.708220675977644 +3.56189081192941 3.450012101001876 3.881246309696162 4.90428574125691 1.0291387294660252 +3.832846077332528 1.8401756268851424 2.1264738747385983 4.4901435003329 3.0915480948940925 +3.3008696894222402 2.3615832036124917 3.861526775732119 1.5615909552500464 2.4843437525353393 +3.815440936857051 2.518365509183406 2.4025288664620046 2.3763045153379934 1.2973405033631862 +1.9372992985615687 2.3659340709813135 2.052812636885682 2.1114704016290244 0.4326297510481818 +2.1170368266398785 4.691693425921729 2.2992246315852345 4.003771493934057 3.0877721111132534 +3.685636535933043 1.3158568780712283 4.332716174134598 1.5294377605109504 3.6707254720428186 +1.0228276107671768 4.814841810580424 3.355382469717652 4.11015663710341 3.866400876181641 +2.3471425963099257 4.49811081254734 2.055522667248481 2.413017057884446 2.18047391789027 +2.427211626911753 1.9253103001097593 4.376058027401237 3.4488757692519942 1.0543110934028586 +3.887126186427371 2.960484625103442 3.593234322708657 4.655976482947358 1.4099948518777192 +2.138424489388107 3.4630293575245443 4.398711751496898 4.929529329608922 1.4270057315664373 +1.6470701318172174 3.199064067807461 1.9735466024143498 4.894431033385711 3.307605030296299 +4.4005923670659755 1.859107395620193 2.5646869444174207 2.9832321243079796 2.57571852648817 +2.8198930584038497 2.3457968904681086 3.8279295736389027 2.956128290147362 0.9923732434668181 +2.4272869005831486 2.986447266283695 4.768071619471815 2.803577779553284 2.042522059035893 +1.3017942209933167 3.9282496387528183 4.900491179001763 3.069355952256367 3.2017689298427134 +1.898878342551542 3.662547239313976 4.244710363134595 1.1828446211319346 3.533489748033341 +3.535030338202203 3.966755928375879 4.913693133327026 4.6997231792279415 0.4818403537147684 +4.163106589809733 4.055516321817561 4.979056369098995 1.0368843342469996 3.9436399452961917 +4.047889734393883 1.3641339075655483 1.964024648828044 1.6713509992858708 2.699667239341059 +2.878760713048055 2.6931822616087313 4.924906988793811 1.1003287735763871 3.8290779420056618 +3.7397413172763283 2.090916640506766 1.47492316102264 4.281773114116966 3.2553078923367402 +1.889194962994122 4.007375932188916 4.191964869752233 1.574804982498319 3.366929832014608 +1.2731034263653567 4.851084763637061 1.1343869409664138 2.2915370521410754 3.760445030798369 +4.971239128789293 4.425814715476122 2.0338777626029194 2.5976367802710785 0.7844182689357665 +3.4243252552043875 1.0823010642685538 3.9218784523808514 4.836777564161642 2.514382169771717 +3.802231530618831 4.582391954255781 3.039267341257316 2.0964643557850864 1.2237351658037514 +3.518165518159112 4.045918176259619 3.074361675430187 2.922822326636303 0.5490783572178246 +4.498288005660733 1.5573839333916202 3.0171454998689877 2.3561205384855683 3.014277817630784 +3.630937757838266 4.154649938011534 4.825194998825555 1.6416848256298913 3.226299965983034 +3.3372439533339597 3.4384550632556174 2.7687043945018868 1.9126902442814453 0.8619767480327984 +2.070786593378695 2.064346746870952 1.1479476218798945 4.275943390106358 3.1280023973241624 +3.9571961745478723 3.678490289423788 4.443279692333249 3.6227244308939226 0.866595584732902 +1.9594146839990159 2.9613170123274455 4.308748594977764 1.5385842582098697 2.945779816654775 +4.84667661002209 3.7827935373278248 4.190005584669512 2.82631624856919 1.7295941135882513 +3.6295168280755656 1.879703730114128 2.030886005692311 4.68362721671086 3.177873787681563 +3.2386858285135167 4.6950827467128935 3.8627767064987863 2.4149191143379167 2.053626935574841 +3.3451661015360354 1.8103130731830155 3.6433483077042 4.895361779733991 1.9807351041440469 +2.4921456821765697 4.912409363031312 4.729413306599836 4.390816470307479 2.443833894194067 +4.703545855127164 4.539180663230207 4.275373749402657 3.448223564839413 0.8433227994844754 +3.2075034517948953 4.858087304772926 1.5985457748761034 4.373889027625896 3.229079934949831 +2.2536890908205964 2.037787485982322 1.5716683499798245 4.908490922879663 3.3437999919232073 +2.1634747731989825 3.336950827859599 1.2107667603303045 1.1555025257018618 1.174776653875499 +2.7502087780528863 1.8825436848836756 2.362006906421406 4.9398899656655555 2.719985989126104 +3.6896180437106354 3.9656750678346016 2.4633222090874427 3.9357135796742484 1.498046671084273 +2.729780954850103 1.5296314904652517 4.293186837838431 2.596946968418458 2.0778807548733718 +4.1887604049756835 1.6518134028709976 3.1470112999916076 4.4187290328555715 2.837845324109229 +1.9065197987998705 2.5094822225718305 4.77145420390938 2.9489080529873966 1.91969741280273 +3.718516818576669 1.833168388767072 3.6727851652248256 4.368120135808655 2.0094848651090476 +2.0193486443669477 1.4006866181843551 1.4613081951313927 1.4234010688405512 0.6198222752241006 +2.131205681857997 4.851162040738966 4.469272844741395 2.0499725628371293 3.640216538646991 +4.569442082718414 3.426515870708372 3.0234004233227196 3.696522094691383 1.3264136272542464 +2.8814485580480533 4.048495824302549 4.79034588792079 4.11643316992055 1.3476489428462302 +3.3149017090297628 3.803441246891975 4.454494174552808 3.734752934552929 0.8698840914806912 +2.2754771270242418 1.276799778380025 1.511073209952643 2.506174340488838 1.4098165507219216 +1.4050373348042529 3.878010709862605 3.864658502861558 3.6636639526581116 2.481127994070234 +1.5368247434725335 4.0890007265074235 3.9864339375372153 1.7779460226368973 3.3750586837329006 +4.685411201870495 2.663235239817004 4.408033391248356 4.946582830486677 2.0926612530485844 +4.786497754047127 1.2230988207728566 3.204929789486616 3.48912402747925 3.574713739947357 +3.5002491082594496 3.6523989071781973 4.687441743966387 1.4512047413451925 3.239811645519787 +4.13225727337408 1.2243173504570941 3.029020978400402 1.0535895435406517 3.5154578576803472 +2.46016022069387 4.098190114677834 3.907015936255601 4.60082366884563 1.7789072779059716 +4.8218972635123265 3.3823219506963276 1.153679585137509 4.242402927551538 3.4077248960622644 +1.5345612980671581 2.448502410909972 1.5899985673596526 3.7838606014066287 2.376619233738778 +4.116867905087995 4.282443067606036 1.0052727194664888 3.2100487198095546 2.210984474421212 +2.3385701402133554 3.3510902188583795 4.892121035079679 4.923072979369341 1.0129930564987286 +2.685989499010153 1.0316323322184102 1.0876000879930152 2.4786685114422546 2.1614738013755233 +4.627994791258214 2.5466884678809274 3.523226137838125 1.0260092126871445 3.2508350285720122 +1.354330809343553 2.4356533654167607 2.976660715469496 1.994207665381603 1.4609833900149922 +4.50278180846645 3.158203767381744 2.6843422493180733 4.7500233618705305 2.4647370178830728 +2.890128058142287 1.9345488486824567 4.880330803516573 1.8834686028788474 3.145522957341603 +2.8853488738076893 3.0439539244285863 3.7006631460072272 1.669585126672263 2.03726127011439 +3.7366971597469743 1.6450438551085638 4.804070686702843 2.957546120572938 2.790101525057111 +2.2220005352647023 3.5522057781647143 2.075826612875586 2.9337780288140594 1.5828855360857623 +3.9401424914265357 2.9407131727630325 4.282495458538269 1.6309762604816154 2.8336218909140283 +4.220933201797975 3.2856299837860576 2.254930895734671 1.6930257346002717 1.091113889441851 +2.706515410192045 3.1404360549163717 4.094484693625958 4.384610810386713 0.5219772883417924 +2.2075718749676603 3.8851573177522525 3.3482616550246145 1.8620464031676707 2.241233743431277 +4.141198591635204 3.9768974258849887 4.848067573927067 2.6184122897701347 2.2357006864148454 +3.9162043103925295 4.013431100920423 4.522679864242683 3.497755660939257 1.029525459283799 +4.22189905625312 3.496271619473382 2.6198513664354928 4.69686633901061 2.2001196270450265 +3.502445923646554 4.328713782855356 1.9988473999641405 1.992557185945444 0.8262918019403905 +2.6032299775312215 4.047374488203028 4.988455016639056 4.162768052365566 1.663524069761145 +1.6778880298796222 3.163114855947178 2.4074524647853637 3.7278381597700316 1.9872888839800946 +4.806078382478658 4.474648102023083 2.808775381731618 3.717249105425251 0.9670421590833755 +3.3627749312623236 2.226693623624272 3.4391808630834926 2.9663208486990915 1.2305597631843004 +4.346650475616076 2.8571853774748877 2.1002088671683077 4.526862217584091 2.847306228993447 +1.494717232672674 4.277568143316959 4.738414462083768 3.0063313670529443 3.2778607412404335 +1.2397686605281244 4.751771272693081 4.312804186056201 4.887557009547122 3.558722124016466 +3.6919432249191106 2.5315833835151875 2.5284859495982634 1.1980773268001905 1.7653390793721195 +3.8764631673931893 4.863222403824156 1.3231362487695377 1.1214914014919741 1.0071516445478386 +1.7064846108089804 1.9903420004104442 1.211233713826008 2.683978344483844 1.4998505808122498 +1.2423775633910124 4.047895796091261 4.084822097350028 2.4688762139574254 3.2376246928986423 +3.465392597275099 2.196684759356542 4.950529849557832 3.85968993932609 1.673185969266529 +3.9639147127969623 3.5067232534384947 3.0989483612726 3.2589518396719384 0.48438119659026085 +1.9869621709973946 3.727190297212495 4.987068411190214 2.074601362882486 3.3927655737979374 +1.1297584606184676 3.6618235303957003 2.2636863779980265 3.219472608021522 2.7064517056634334 +2.244927293041851 2.355791722060671 3.02956241545584 3.203622065029157 0.20636783477871473 +4.619096219742909 3.629766269187697 2.8843199077875274 4.706836941730611 2.0737266189346832 +2.471739890147084 1.1863634353987225 4.309233468678345 1.4721930632704447 3.114641374594913 +4.994719399641141 2.948611882323823 4.096579940894061 1.380850915059812 3.400255889514946 +1.1124358272060935 1.8965777986251249 3.157436926615735 1.4287289356159443 1.898238643976952 +2.083942592459719 1.5166824807671921 2.257637630465699 1.2144437581021577 1.187449994591039 +1.626212295473064 2.5441895707775184 1.7474119649427347 2.0588519929964497 0.9693694698356705 +1.7788061204223906 1.4105218162866628 2.3196192134809426 4.988434799379923 2.6941065235454325 +1.816272044248115 1.0612047216214 4.149051651067312 1.9290045136935978 2.34493836888305 +4.480796436471193 4.592793546130448 1.0714039320123439 1.669883658268974 0.6088688982960437 +4.933203633775419 2.2193480302617656 2.0420403943950105 3.2327166618513257 2.9635657931967962 +1.325050024187679 1.4037150994582732 2.014488968942253 2.300723784282103 0.29684771109100055 +2.2245414588788806 3.2898731084462822 2.7756680011412302 1.1639005744340443 1.9320263355773144 +1.4225171946548554 4.427842471971078 3.476530569249586 4.738496924297855 3.259530503577109 +3.878257814298845 4.803132888463628 3.431026386068878 4.04703223365549 1.1112412461172476 +1.5161354819827069 3.9893756568549987 1.331501424188863 1.97990358748589 2.5568227017082332 +3.7336307627680876 1.0157041439033914 4.2168909781173145 4.430153495156514 2.7262806177477725 +2.9473860738231434 1.3508721460553361 1.6637401945949373 4.642055114552584 3.3792331206945336 +4.311333792367118 3.819983182457439 2.1938039394431317 4.5562416041084735 2.4129933985172953 +2.189026070207029 3.218734865896186 1.5566755659045994 2.2919575358121573 1.2652824898775579 +4.267328337722622 2.5075096259455445 3.671237380947395 2.5533542854318076 2.084855993482582 +4.131119002432197 4.485549995909161 4.771656587024809 3.617446125958854 1.207403460973652 +3.7092677195920967 1.9727243645964165 1.347064022477677 1.3130364415629816 1.7368767083597383 +2.406845200956912 4.433645150869296 2.776934739501835 4.691670757637198 2.7882130578759052 +3.360726046318389 4.111542515415636 4.898010761623331 2.627440102973693 2.391488341219398 +2.3641562622585304 4.769209755584488 2.879442437909423 1.4377773626471502 2.804047163474675 +3.9084063298824128 3.3681488024597495 3.536653859229262 4.257140957408696 0.9005441991262125 +3.920455513411361 4.602119381072523 3.5089257884646488 4.255007327536902 1.010595513258987 +3.255306765725089 2.194937448804571 1.3619796332218943 1.3535857480426525 1.0604025394042058 +3.9701492260297195 3.1149569334566296 3.29268064305299 1.9388181183270938 1.6013424346883445 +1.5059930212780426 4.605532817608042 3.0900011617034835 2.8000481020725134 3.1130723932833257 +1.3876026217287287 3.3501946942400225 4.465179220935671 1.8522920899694824 3.2678657870623904 +4.280263150900091 4.15273893749999 2.510287974371667 3.121540948487559 0.6244138238130529 +3.002199051550342 2.2444826520370706 4.168832171409672 4.591584419388254 0.8676713693918334 +3.515182675903497 2.4346077774595685 3.224293947608233 3.522330586445525 1.1209228114533742 +1.4953402314875266 3.5488333565904187 1.1654085925898023 2.343471757028817 2.3674177565974506 +2.234051979956702 2.777472639414913 3.0189923613490155 4.017891944959108 1.13714835938958 +3.7554630441772625 4.660217456168786 4.667831840276753 3.710704486068202 1.3170699746757526 +4.302939884753206 2.2579807839119046 3.8001385287335947 2.5483419415515143 2.3976764627018317 +3.6653216542781797 2.9695540423424824 2.344172041594022 2.562151510395949 0.7291142699453038 +4.083854589174754 2.0873317783774183 3.0976642847919837 1.0489944978864654 2.8606207770016625 +4.108628140167525 1.3314293677918938 3.3201404541919235 4.722966395816121 3.1113909500058856 +1.3362980796845112 3.759684305420364 3.2074543572746284 2.0459890978017197 2.6873411298249303 +4.626739299411119 2.4587412590642024 3.360634328488778 4.50756264582923 2.452684257719585 +4.738554099972936 2.026428630634655 2.590194553136132 1.5222777008765913 2.9148020455552928 +3.6911838606782004 4.258128516484314 4.744565903487729 3.1362948710604943 1.705274745163276 +2.436638268146277 1.8324226801830892 3.037171056884829 4.580615362911496 1.6574971500861897 +1.7051763528561903 3.1943383152045906 1.6325070344676855 1.6038567783492295 1.489437540577312 +4.169569051730477 2.9183984404354613 4.81085563098973 4.823625823615483 1.2512357796946352 +4.803161006790192 4.814966343518401 1.128636740141261 2.7984210342348277 1.669826025302282 +4.897810668037598 4.282971602980693 3.0269328723779476 2.0234129164509462 1.176893953533529 +1.9625511025815046 2.672188277762107 3.6845555039016094 3.490716283423001 0.7356348032781344 +3.216348199168142 3.915791056920834 3.654279145378623 3.2474438003875292 0.8091571597627217 +3.5917018089720125 4.949464345528444 3.975474171646829 3.3502051916894073 1.494817849429538 +3.9249974680818465 2.1599317568434393 1.4246945545768277 3.5924181792772485 2.795439621611219 +3.4349758986217 1.5869615246664681 1.1434798587394468 1.4722546156160328 1.8770322232461556 +2.484909638048639 3.1943914649295526 3.8970368455379667 3.9011835862523405 0.7094939450994852 +1.8402199772677204 4.967784551921919 3.2198773913576026 1.7909082970486137 3.4385480716607915 +3.381128360836529 3.7399183185675544 4.801211863067006 2.9212230078241577 1.9139196246462247 +2.2493324326147066 4.693345868717509 3.570544738796785 1.3158856419774976 3.325160044076224 +4.340029302055184 2.1815447146900007 1.5774053178136747 2.9664200534348932 2.566791314007808 +2.3996488126337057 3.2343875371853876 1.0784760168092937 1.2613895627163019 0.854544383600082 +1.486827518576464 1.4997483005699084 2.6294159001643376 3.6973111723884644 1.0679734355525723 +3.2670685630905245 2.6326278906690885 1.8657252053031987 3.6875113764726106 1.9290981883477756 +3.341943667799979 2.5929777625715764 2.517004020664228 2.0086301310814503 0.9052038106438367 +1.534486860311095 2.4209985654121406 2.0962083560308615 4.861305649104362 2.9037331219386475 +4.4400921868962655 3.3051403743023284 1.726851893238007 1.247379669035185 1.2320751725005517 +2.9260636571086884 2.488761839234587 1.8714319338003569 3.048163015139721 1.255360074921177 +4.758036518498557 2.27625702270528 2.3959297284313728 1.6241123798639063 2.5990251028586937 +2.5254350168857145 1.4543644764038133 2.870085592264804 3.633097117441879 1.3150584360556905 +4.781417539237549 3.0815027866777482 4.037537123982457 4.616267833109223 1.7957280973624095 +4.633990101825232 4.365129878665456 3.7890243825197096 4.692678937539591 0.942802935085431 +4.424971776575564 4.7001119550069825 3.66897709725908 3.219928596711315 0.5266371365859692 +4.931366661641706 4.522876212920606 1.58339130642437 1.6089470451682688 0.4092890695817712 +4.628127033611058 3.592425556979016 3.022357233371031 4.442873450301291 1.7579942750929678 +2.4284154729354546 1.3458358567531779 3.2228621478601687 2.9443737471356215 1.1178257532869251 +4.467374932993222 3.1108178267504543 2.514102204555118 3.3500194302211566 1.5934254895234223 +4.6183762783141 3.5058551011951664 1.4975523669642317 1.0924123366735836 1.1839940091410959 +4.179833103300904 1.2792215696517304 4.7325010362794036 2.702496165117488 3.540404926852254 +2.559418284269677 4.9026371947676175 4.013323474678858 3.9308409459374167 2.3446701751126398 +1.3784710304725727 4.607020568287084 1.1801561633557331 4.481613433695344 4.6176998847911905 +4.765338088296943 1.3495814522393186 3.084360258983274 4.020427599323 3.5416966926068625 +3.6566740392018033 2.984218997493517 3.890241763691012 2.898590362693509 1.1981520288424183 +4.8387806782701945 1.056829659163026 4.897510713283404 3.7970174172401214 3.9388118774018595 +1.9504842929789774 2.3645515736742833 3.5642360231646895 3.640906400661552 0.421105758364709 +3.704742897351374 2.330722413025698 4.061165298608777 3.8086464015610138 1.3970318839284896 +1.9748000987182377 4.027777530156817 3.575945363111054 3.0036951750761305 2.1312406273581943 +2.3327848095053567 4.679988998657107 2.1366702405175726 2.7802525726682186 2.433837653547991 +4.657792138638766 2.9312297008450834 1.6443914544788019 3.136693177779281 2.2821004107982725 +1.8942872985820909 2.3244924803598694 4.478841561629009 3.4635829679090246 1.102645233314293 +2.3718287400853018 3.3576967238489206 1.6738462705917914 2.266337283791683 1.1502092340669055 +4.070914893167225 3.3351345074619916 4.347441343481696 2.598769304360477 1.8971627964918838 +4.2630630748464515 2.819631153139869 3.8616479742970538 1.0326176802259703 3.1759893131705397 +4.919938308103893 3.6654564004618058 4.55783340325903 2.3093270789271076 2.5747826213414564 +3.2541438289181 1.8831101960797088 2.7276130972612624 2.7267304575177063 1.3710339169498884 +2.0948545538671994 3.4480847262582017 1.941114124348832 1.2229563080709602 1.531986471399269 +2.131038640369462 3.8931905578754 1.5515565653712664 3.8887026949273102 2.927017494185617 +1.376733790762004 4.506092877747859 3.611457740479911 4.199511914012978 3.184131907806365 +3.935934274222182 4.4441201431282495 1.7282574050160884 1.2623464575248073 0.6894388213235735 +2.0484381976671027 1.92344810391567 1.220088207827318 3.753619251683302 2.536612322314544 +1.6389380441577903 1.8310369286397816 4.92244686417449 1.0664219986619559 3.860806877437692 +1.1150009128547342 3.269934544762256 3.2240618892312787 1.8146574881052229 2.574909653529544 +2.342132079225565 3.172493088271754 3.5206609399147486 3.61502517729029 0.8357056985803513 +4.4631225518691915 3.8990988377148166 1.293650011049794 2.717125822543622 1.531145367375844 +3.722310784835896 1.3921987992079172 4.239856293801136 4.749031351774434 2.385095617628206 +3.366209058851171 2.971564556962283 1.9771054891455897 1.206221591755567 0.8660290215266229 +1.8392550745020801 4.447611914132676 2.8422316807127554 2.9575191791232713 2.6109034088103424 +3.00337229206141 3.563090248276797 1.5732575878259176 2.864400376020796 1.4072433655972854 +4.18051908099222 4.00853021651681 4.590776467247329 4.930999821126033 0.3812244745920898 +3.992023686865681 4.073522312700726 1.7692999501514826 3.165427109728636 1.3985038690407587 +1.015204577413726 2.0638701513128708 1.0187686691723519 1.2104414335700002 1.066038430120162 +3.377716805060285 3.5752637853230174 4.248115695628414 4.282444806565312 0.20050759902966828 +2.789453600949736 2.0220798064150087 2.3063358162241197 2.3879685248561935 0.7717035957265167 +4.507758241136904 3.0572952737212247 3.9930499909424846 1.6543309112804758 2.7519901441355876 +2.680537069434379 3.504421128213625 1.6894086028024318 4.620233064306294 3.0444239137248887 +4.918108412262905 2.042144201407134 3.7572628272966724 2.255245291106758 3.2445688189873976 +4.315146388334183 2.2883603723184036 2.7023418307880056 4.3889759842482015 2.6367776399111675 +2.3792292122470338 4.066243812221585 4.93936702374295 1.3647863122536061 3.9526757422635814 +2.27047643094352 3.5368699369777583 2.821963038702211 3.1811825261488176 1.3163552530708014 +4.768247008658667 3.2726100927178083 1.229799682732557 4.85211785738125 3.918943574831784 +2.2676007342694375 2.7729649589111265 2.6190292817479746 2.1818290456648426 0.6682342747710879 +3.1468240213790137 1.715171983619629 2.702626197085365 1.6013972390118223 1.806192895379765 +1.9133458855311312 2.0343011782868405 3.105538867780212 4.673445104317353 1.5725648315467573 +4.874883511136039 3.4636739703880286 1.2616475753453225 2.593161790444692 1.9402171200435019 +4.5424710947126465 4.206399353674172 4.022588441107201 4.992630931374173 1.0266092966888518 +3.776299879738008 4.690888861988473 2.925822845852429 2.4394386359396347 1.0358776984308689 +4.9185299576184445 4.191665168897872 2.1712478521787966 1.509199783625304 0.9831785525311323 +2.3524928822340594 4.543231866608058 4.648556135638923 2.0564213715937005 3.3938915617072682 +2.2442867133204247 4.969961229817619 1.5004585522581992 2.4710941835984745 2.8933432390073506 +2.8714423068179418 1.4904223612113463 4.582090407756298 2.1978879242890286 2.7552926473125754 +4.6920186881246595 2.747840433056771 1.849474787400093 2.3446154889174564 2.0062386203485185 +1.9463472197242995 1.7205701719909463 1.1337357011639164 4.131428964716694 3.006183656670512 +4.628551342828574 4.345406698549601 4.190054056422376 1.8490697780253917 2.3580454366457224 +4.401677366156589 3.9673624846120155 2.6816556453366274 1.2971629889684237 1.4510166545800092 +2.6731628490768853 3.270922439651337 4.693514162368185 3.9252677544261414 0.9734059129877881 +2.2105626744860105 2.3536943408609123 1.7682133734340062 2.7559080569866152 0.9980117543583065 +1.2322757785140768 2.012903060003781 2.558850861935006 4.2857237141033835 1.8951170940504316 +1.5116976674193139 4.305800489810645 4.407482645400126 4.22384017867531 2.8001312715085303 +4.403652418095291 1.0017410396657445 4.654111181508107 1.1086115583050669 4.9136105467183 +4.694064776874906 4.804383286214895 2.64256143489751 4.414057701339853 1.7749279409379297 +1.7892361932739194 3.790065422058978 2.8557511882055855 1.6282407764589863 2.3473600945971023 +2.0480773362172853 3.538627671435687 4.725313251838864 2.9721132225328373 2.301184617665072 +1.2522710796235756 4.419880544788141 2.769226212480625 2.1443872331464364 3.228648861969281 +4.357718390522233 4.3392179952031915 4.353986487915369 1.4234072148245578 2.9306376678969426 +1.5198047975404183 3.289911239789847 2.9010627384601513 3.583785942673318 1.8972052578632665 +3.0048754297245797 1.6246891932718528 3.327239693661487 3.448194142888516 1.38547610086979 +4.541232023887038 4.820538540439877 2.345079508480968 1.6615465493978703 0.7383965305591415 +2.98319767185291 4.0131102873654605 2.169828754257443 1.1182905600006725 1.4718874174245435 +1.6498192573342636 4.990649453041663 4.341533176435535 3.9826805137953687 3.3600478612713656 +2.9178709695510308 4.1773862143876075 3.776542072100672 3.755333388389227 1.259693796222127 +3.4522951673434243 3.288145912950865 2.6873506443404667 1.951173292273003 0.7542559720775804 +4.94446648252899 1.602449667094222 1.1347361811104233 2.9102448395159164 3.7843767506316843 +1.98180742999112 2.545926045848558 4.52836586429636 3.394893473515244 1.266092205733836 +2.7529897653740387 2.565040942410783 1.302336745999765 1.584771074079435 0.33925493324502726 +1.1738954088165166 2.706896968093263 2.6906060655075597 1.020319780678439 2.267145794613395 +3.8512710531961396 1.4672905785274524 1.6311677712402672 4.418754154034469 3.667969567095834 +2.1904453724371193 1.8514787664539045 1.0621505859569371 4.2105973877636345 3.166641063300134 +1.2115560182719576 1.755191333431966 2.982571837208611 2.7029063194653666 0.6113527277306601 +3.771953733222289 2.2941055071821164 1.2609984273657933 1.0027391365676328 1.500244393588476 +1.7231501283385864 2.5936038129676433 4.648277847056176 3.6259595331262253 1.3426929478033607 +1.316135393922818 2.812211793186237 3.5587037098905205 4.711869268651951 1.8889244024964476 +2.820049412013423 3.2502527081860335 3.37521749065448 4.34556055386482 1.0614332463034142 +3.55689532363261 1.0365556771172275 3.894797922720659 4.190693316923259 2.5376497035855037 +1.0595281961967484 2.2834508763271244 1.6541237660343855 2.387879599152997 1.4270193935518571 +3.065366759622328 2.2186861140335257 1.6725820775501732 3.698765702134278 2.1959709005693706 +2.296059401958688 1.9779520630236402 2.637808829373636 1.9012038784211711 0.8023584815106156 +3.604814598815385 1.4560614444027995 3.428534839710385 3.8491024253576667 2.189524426147199 +1.9451031078740773 3.161171744478354 3.1208642386901344 1.3191770928345017 2.1736833947182834 +1.5342937694351502 4.295775203019026 3.8232696793649144 3.6751916409586536 2.7654487544495754 +4.006077363472212 3.8062309341252814 1.6495970604867978 1.9957208950376293 0.3996752483790922 +3.5128656346908147 4.357694887451633 3.1311042929524002 3.526567054651491 0.9328061225201482 +4.7945057797863875 4.883134804649988 1.218594292507079 3.1232826836356056 1.9067493205316863 +4.552843255758611 4.9047413890357205 4.505602132503135 2.3687576179249437 2.165626185583934 +1.3220940244792465 1.3516162040660369 2.784665616043787 2.4594644523064013 0.3265384448785543 +4.7767798777741115 4.205740902003612 2.308369956438201 2.1169875183564626 0.6022563818301403 +1.5371211266882376 2.8573924339010324 1.164501050726205 2.543943816974137 1.909444597259404 +4.047439981142826 2.8208813633427696 4.773725353771661 1.8569048401904373 3.16421995938143 +3.6568273818126125 4.814043311501869 4.424870225129311 3.0439919040149777 1.801658581876741 +1.2980445806394894 1.549306132012509 3.4028977936245015 1.094058574198506 2.322470862757597 +3.001783271598639 4.660004805668834 3.6565649946228813 1.1680927749596504 2.9903499200076498 +3.5318777513085418 4.461907380712129 2.7450691225256985 3.8540422115956168 1.4473342474528301 +4.2567835006290125 3.1731183097244062 3.777062303367227 3.814402073920316 1.0843083069142623 +4.369148642613639 4.620228082528648 4.503866846256592 1.158334339562177 3.354940929211281 +2.5253009253146605 1.1815953208801129 3.264955742820481 4.877511124693108 2.099018725737145 +3.505480555296581 3.891131825283227 4.139316059367146 4.788150886469316 0.7547937035395934 +1.1877510307305954 2.6117487551940863 1.7154799100873332 3.6999435993962444 2.442512160351046 +4.266387044667586 4.781374028664212 1.4481136114487576 1.4380466785278059 0.5150853684821343 +1.5001902466532795 3.1217471844750273 1.351847814412861 2.0659180334714544 1.7718191725862522 +2.1872367428948984 4.381824054265166 2.1312344687223677 3.2182365135475606 2.449037956562031 +3.161315953339361 3.076364979974538 2.82655617901436 4.727691062670067 1.9030319266182132 +4.659039931622527 3.7655589737095974 2.49951681347749 2.9901452631459895 1.0193255111970467 +3.4258692547208587 3.0895349468252613 1.627398791680236 1.588287586451795 0.3386007280589215 +1.6795650823178776 3.558992895109644 4.479943629284561 3.0436209736845585 2.365432661160551 +3.2011446536839436 1.5662708547130735 3.548435403428911 2.5242684327143126 1.9291786652521747 +4.702913511707053 2.702415502172637 3.9352252248118624 1.3025197434042957 3.3065284571563285 +1.9468585020167293 2.519915808988921 2.300858062142373 1.616568632913546 0.8925506708464983 +3.607438375778588 3.2465317430478824 3.920662060370265 2.329487118892033 1.63159164374462 +3.3031995240545027 3.67159102758539 2.113258816167727 3.6900439930700863 1.6192479099794301 +1.268884515050905 3.8477224904980973 3.540059416924712 4.348167104843149 2.7024883605450474 +1.6062447625271865 2.1617352007241424 4.809328999139884 4.360401366652362 0.7142168061163906 +1.560079604703474 4.537218188522507 3.143127776411537 4.037526963174082 3.108585538881872 +3.788540347158763 4.9578885876472985 3.2566241007441827 3.5547233685586854 1.2067470658780062 +4.8462299742093595 3.7177468898448947 1.4946087839786628 3.2005274904609804 2.045393044092758 +1.47710060640751 4.690426443300296 1.907589388625527 3.6933576896771907 3.6761979488438414 +1.3022405556991283 2.1661510228232013 4.317798665044656 1.215477794974452 3.220362724302913 +1.9291306586561618 3.074293290059521 2.7830533222849945 3.0421432163491806 1.1741060537995944 +3.422302996366879 3.912078506049276 1.652421522337849 3.698232428653025 2.103621238313298 +1.9533732028182906 2.495329193573243 3.413099503108651 2.4115081986415845 1.1388158047284127 +4.750708063598436 1.3962905759698114 2.722413321564641 2.0987834390766835 3.411895501277945 +3.7979545903845557 4.929117804950211 2.173443847609452 3.119149390398447 1.4744114729777216 +4.686855867897892 3.6117626192181964 1.421959820408719 3.920485846814615 2.720010624608716 +4.936775555758786 4.729110954033391 2.863528726269145 2.7814545325966162 0.22329523075238836 +4.118765385902966 2.9965186583946037 2.374720612384122 2.88081765611209 1.2310856733279847 +3.8464277563760274 4.566913600059756 1.4317783778279978 2.8983093892884004 1.6339562596727386 +2.541944107661248 2.696297893743228 1.0055419235993122 2.0608109493853943 1.0664979175138358 +4.458401721035903 1.328417109706563 1.7420148033050968 3.102927092849652 3.4130464290706457 +1.614107884406637 3.831431894281864 3.3062096187074537 4.536386925936577 2.535717250008497 +3.0615680350211547 2.7987615487272772 4.370460531975587 4.940348266736818 0.6275661554524918 +1.9249253456448079 2.1086224521578356 4.120545080710378 4.616007584107882 0.5284200215871654 +3.109187937970902 3.160254289855873 1.3600872240704711 2.197744406304504 0.8392123254833066 +2.414720315336975 4.354799790251024 1.291883813582205 2.1252681534767635 2.1115013206162714 +1.3534796645351643 4.981605434331891 4.20740797940437 3.195664290481352 3.76655305200108 +1.4369287915949749 3.1133337326453314 2.2029293565747747 2.359997551227191 1.6837469952903907 +3.229599567981235 3.9929789476943096 3.13296640629168 2.187368543296077 1.2152791431901435 +3.3767971926293487 2.1176498494440943 2.036543807149974 3.7685293219292286 2.1413140487223368 +3.880589616153203 1.280421304066909 4.033245068766561 3.6704507770423422 2.62535615665482 +1.2207287517264285 4.453348135677743 1.3285701897250206 2.7593622602760726 3.5351087721100667 +2.13996194964741 2.4769504641610482 2.319464283329756 1.3093011657561138 1.0648900332993116 +4.741804449633619 1.9132987582771972 3.8008040424985627 3.637283776124467 2.8332284277041144 +2.535132833278193 1.4543101277945318 1.5496145598852098 2.5818618323800617 1.4945608559915124 +4.45781000258525 4.956989095409826 2.641685874737519 4.3417975380394225 1.7718801975326468 +4.176431947350508 1.1255322419355216 4.494375058434316 1.0425861521541302 4.6068249007337165 +3.344738471828798 1.2525018702955575 2.130681659321009 3.4561297860700892 2.476745189456923 +2.0400324415435724 2.126758925821302 1.5184757152141604 1.9171895748833916 0.40803703872015185 +3.7403337807877923 3.736507623014422 3.0976581518341706 2.1211848780883398 0.9764807698174127 +1.5221668382285696 4.508006249366501 3.788876357605205 1.472313468294566 3.779113733302527 +2.161700204657367 1.550352165827233 1.690153236766827 1.2423880585743863 0.7577863019236749 +1.8178662112470922 4.415914738811252 3.957665164074823 2.519220668358479 2.9696765343779354 +2.540650931062727 4.680761226984922 3.9678450455019596 2.8447817383892926 2.4168871033821633 +3.7016836317154724 2.612060572439108 4.423216319249291 4.765301711623393 1.142059905163703 +2.5996227345712057 1.6526117590432503 2.7089606219237083 1.8557947750433028 1.2746457351176324 +4.40871402815765 2.1631504634756715 2.5190487095313348 2.9242232764608485 2.281824303646921 +1.021985171420352 1.1722676285995894 3.502575409992066 1.8815962882273585 1.6279306281696746 +1.5475636551999172 1.3801398669858722 3.3456187331110665 4.700631327792404 1.365316760537639 +1.8413046817510819 3.8317875856128985 3.243410658117941 4.323403190133668 2.2645984323442225 +3.6022712874408045 3.33153288752192 2.040176775674551 4.473757634476685 2.448594510636412 +3.7668375829900116 3.890891033429647 3.8603446721510326 2.5591417594715025 1.3071030099160785 +4.442551517873125 1.0550169809575967 4.357482725964667 2.0494250090548496 4.099087784298168 +3.663083062759529 4.750048280181687 3.0781546638035038 2.0073342068909037 1.525827590138581 +4.8625588078678685 3.8044771901459504 4.666820390582167 4.115063686937514 1.1933030502675523 +2.883423077483546 4.328320313301288 4.296697057803548 2.8152414541179165 2.0694054044013 +4.318356780057469 2.8230774835423724 1.7276210919237682 1.2414160370975704 1.5723407804687977 +3.9427579293076787 4.576736765919733 3.595677382205957 3.7787426965597692 0.6598803486931812 +2.806405815515755 3.6324417751903644 2.6903641431945897 4.555771752831253 2.040117878154575 +2.1933122107812553 2.9361262110572826 1.170993454687662 1.2510738859216435 0.7471181395687662 +3.7482942856884542 3.3219430222274684 3.313521707492005 2.1957520404219792 1.1963212062304236 +4.580679893381291 2.977673813007527 1.4694147213741293 2.7039645523391536 2.023299725411692 +3.436874257307108 4.851254949128465 3.9000165150570822 2.2722132421929464 2.1564360033500303 +4.785212419261134 3.42593035372753 2.7894951676900126 1.4145352962124011 1.9334327973464789 +2.1450245845720795 4.347149244358459 2.2589607498407136 2.9070169602837757 2.295502095214269 +2.50886876644278 1.56518399788136 3.4481232264488684 4.177987676923782 1.1929975098389218 +3.76237801311533 4.70605022340488 3.094573894937233 2.443470325572449 1.1464960089386818 +2.1475174297477375 2.8175090078670237 4.268861818768476 2.7247759625610333 1.6831784950178768 +1.3642458108857887 2.7329906919377245 2.2362946024296297 2.41871974456286 1.3808481023951211 +4.38234365967529 2.9156896576762685 3.021194406637556 1.0756699416978646 2.436419382056098 +1.4987835616157246 4.78626088963439 4.776467661653865 1.9054314537411248 4.364671360982715 +3.255039752563117 3.531997340405266 1.8727084200118918 4.167769116500628 2.311711293832061 +4.743167830217525 3.672946845691513 3.3885742474042853 1.1811004413408286 2.453225134425316 +4.094659151686534 1.7534447559990727 2.351712981924836 2.6559874138215864 2.360904016786852 +4.826961245093546 4.240605025527959 4.972128237276383 3.678718722734738 1.4201133013003227 +1.4972120436811438 4.030650534263136 3.2948688311874657 4.2813968145029575 2.718740158129661 +2.7910643610768844 1.5499705452090562 2.8862296287040023 2.5164558806637434 1.2950082951568718 +3.591048104082903 4.75869787119913 4.831550433037865 4.262147760055929 1.2990863645830302 +2.2533978616478216 4.98414300430219 4.264910940855326 2.4822859486156768 3.261091979243737 +3.0873560624233263 3.2100713132606744 1.5570461810125082 4.9140688558671535 3.359264841044289 +3.9054436493573177 1.8759086243800343 2.886236419247798 4.284162965788127 2.4643885747040204 +3.06303674966957 3.294378864340576 1.1163883522335714 4.132379188435058 3.0248503926759414 +1.9859454026687104 4.493590101888019 1.3446611036325313 4.804684819454739 4.2731775122939615 +3.5912021861168677 3.695215189713055 2.928796635183363 3.304544841244688 0.38987872380447297 +4.921696725117426 3.461227959445268 3.5011484776862596 1.5251997108496846 2.457100434387438 +1.9402367294241465 1.7592478167275272 4.962758122873046 4.075646873643592 0.9053857492961477 +2.56739404768 2.463646368229477 3.852949980325947 2.8688992792161594 0.9895046050150715 +3.789916420018518 1.282293876924307 2.6309706376606266 4.810486741685764 3.3224179848928093 +4.066078689627139 3.7238072871072023 1.302243107346603 4.516248503041366 3.232178893028357 +4.746383755518156 3.1212565414070816 2.1678440079602233 3.0231252487179257 1.8364488729165476 +3.023295829782087 4.836179255705883 4.708994142130702 1.8433177524116071 3.390965568474954 +2.4069422994534646 1.3377016104005226 2.3179866508803117 4.797875614622714 2.7005786275570234 +1.0604054556431102 1.4341734477319306 4.42653059479135 1.8534009328381842 2.6001343752070434 +2.479143364080997 1.9889681198359397 2.3750959899132775 1.601144352004567 0.9161183918535187 +1.9086273509954683 4.582549311977983 3.2888029610604854 3.663161412048139 2.7000005376389193 +4.166635349334582 2.0721895772055245 1.889113461879362 3.881814146551064 2.890944328602741 +1.6645833822733036 3.8742124573095444 4.256404971987754 3.5914885805379724 2.307503945145948 +1.4939588011047746 3.80865789029017 1.8767138025089904 1.1706365983114675 2.4199952255661765 +1.6500459251318391 3.7951917306199983 2.79306087482205 1.9138005078763731 2.318350560136428 +4.408302346090622 3.9110710164983837 4.975733468394873 3.7799909671378726 1.295005453440414 +2.5415086570746346 2.9634968090935194 3.5586527705426128 4.3423763665681125 0.8901104849463657 +4.522831538354282 2.861996178707959 4.289010718256947 4.556870067917022 1.6822968593716894 +2.356407360834728 4.3459993830507155 1.946550430385824 1.2806700297946008 2.0980641369503057 +3.1488033298741507 2.975125867702953 1.7897520062757732 3.1702246385230057 1.3913549328801156 +2.7995097614038893 2.106721664255948 1.2174592903008556 2.8763746986714667 1.797764077869868 +4.570478532068966 3.785955789209658 1.8006727708221741 1.9269611092053562 0.794622349594496 +4.185532236539307 3.2635771497595023 3.041129262083938 3.7086217226488607 1.1382211414967531 +3.3978134428828675 3.4201938845157662 2.3165596971094544 2.4371758478419294 0.12267493625514023 +4.695712635454356 3.2139565947669646 1.7706110277602605 4.509418341727427 3.113947088046555 +3.209680208539656 1.5179505767943224 3.268713389030567 1.8849306096930585 2.1855900638766275 +1.8225445215863951 1.7981980018005719 4.476620053418771 4.788589121716482 0.3129176450765015 +1.0919527682016685 1.9711255263259408 4.555479215100276 3.54371393258743 1.3403782024212942 +3.0151876346942204 4.817911899835316 1.0441917322109333 1.2173558351448182 1.811021971891396 +4.239519647454545 3.833402605255745 4.589234254748152 2.5652226953164594 2.064353129839324 +1.9814081477080925 1.7317034130618736 1.6384159743472284 3.4902286694378692 1.868572372749742 +1.4071806546291312 3.0903181212950668 2.6897432752496067 2.8725380272771437 1.6930344512334745 +2.2855230674708196 2.8401257850614567 2.064427304560089 2.7498394429439865 0.8816881386311757 +2.834836138415426 2.9177211633006994 3.480587145208836 3.578860676487993 0.1285597693693787 +3.2800870005372875 2.9757201798054114 3.9988326981235347 2.0913030372543124 1.931659537459508 +2.004182246890724 2.571996530747295 2.0601826136379042 1.1695223822595664 1.0562616667807578 +1.8855341155239307 2.8288009185763383 3.104746525829311 1.3623837396525782 1.9813077349049686 +4.258830136303429 3.0393393400749815 4.8001392214893155 2.8137055211223077 2.3308961040852196 +3.519070506538838 1.708915232206894 4.37783018368839 4.988034351120313 1.9102385304309624 +3.2485783746855037 1.6406838675608544 3.897780772308861 3.2830638398428498 1.7213952634714786 +4.17884662501595 2.632836230498625 2.021575889547923 3.7992202051800508 2.355879337499022 +3.136187295612716 3.3688799595825953 3.3105984958137658 2.4739114071935804 0.8684418000816871 +1.241527406352866 1.021692832332322 1.881698889762331 4.081510098142926 2.2107683262729476 +2.071970220446556 3.99393061681887 4.978698760024011 2.722007943157562 2.9642174697806816 +2.8987769213395547 1.5217624487654393 3.333155096362323 3.308141819174356 1.3772416351948742 +4.569106633961029 2.904408447773071 4.0334712504180885 3.105684512944739 1.9057828526169813 +3.86911685721479 1.0934383925013966 4.827118624829277 1.1401514447773624 4.614988399362849 +4.4887420207034 3.8571244317727658 3.5753475844717713 4.335890698049067 0.9886185342468523 +2.316014521680063 1.9596420365506235 4.378155872302786 3.3720775500466256 1.0673307541109753 +3.854612253280539 3.392072424633283 1.9520378575341568 4.97114962668918 3.0543377298091 +3.5061056166142506 4.642652652501927 4.448464683469379 4.105067444671244 1.187291383106627 +3.3050172433237703 1.693586923144962 2.6380939244832504 4.3489055875649 2.35023067449299 +1.0863330593943172 4.156753783225955 2.394958982621755 4.302831241910403 3.614894186431737 +3.7929507930420296 1.40918411209472 4.109374788155899 2.586650631756425 2.8286096311928657 +2.499128974895854 1.5976111769908687 3.5943075941016653 1.8159394426375188 1.99382236472597 +4.664761936615647 3.354423367950138 2.7003364666931313 3.063926398519899 1.3598473454980773 +3.10110032476303 2.49337453270718 3.468117390329699 2.3787071353340576 1.247455547111631 +3.700751337799237 2.6836550168659676 3.1114370401942906 1.231506892887714 2.1374335743615798 +1.826000035349293 4.787722409904029 4.198712827598431 2.3259150775413295 3.5041647844468002 +4.049584571297535 3.727212888737484 1.342824816200845 3.187577163748048 1.8727078590900172 +3.415942981625342 4.938499725852502 4.512646280423573 3.682842710043 1.7339991363342588 +1.977587123637552 4.305270728744171 1.4538110532994293 2.3472991742945783 2.493277358787343 +4.486873427104225 1.1288798019288007 3.2354314545607523 1.806172570611265 3.6495071097433582 +1.223199992790435 2.6875575667362237 1.9053068005117528 3.2695138805067057 2.0013505593675367 +2.4148433635124076 2.631245303074079 3.7617331366964204 2.633004268400955 1.1492861512998473 +1.821604336245891 3.9437636958501625 1.012717215223947 1.6460656192882253 2.2146535955961104 +4.6223869818462155 2.5518482800720452 4.765024548332642 1.0825746625972594 4.224638171074204 +3.883949549629612 1.5422160785044077 3.853662074861312 3.765802728411107 2.343381086069177 +2.0070198471672467 4.380952287171917 3.624700434580168 2.974430065965394 2.4613831034613285 +4.966584588172526 2.863681702309933 3.155425252019387 1.321824673765644 2.7900343417136786 +3.7522903101301543 1.6215506673807267 1.838930421044099 4.041873768876747 3.0648019216491096 +3.945329216047452 2.476227114875986 2.4651137812227053 2.6700303334727664 1.4833245690180115 +1.2089434321538004 4.6478189765727915 2.78911825491328 3.459963333296931 3.503697779374611 +1.0198995053440973 3.5229111311901433 3.9150948053448036 1.384213050899417 3.5595546988499875 +2.7384264271884855 2.6607251742689315 1.9751152600662887 2.6638065945612857 0.693060775772059 +1.7837507454905803 2.8583217211427234 3.3294021288156768 3.060325549793356 1.107747709134329 +1.4801426908977309 3.0849436619294655 3.6283626468190238 2.04271879070358 2.256025840955961 +3.8617042126467958 3.060650523290858 1.4391579186395753 4.470943849226057 3.135827313825316 +2.875798210709371 4.77079850996698 3.7706836813005875 4.639863885367451 2.0848262184959547 +4.78370321941766 4.576352777009092 4.949996605361756 2.619196583105204 2.340004903780796 +2.3801389982832286 2.5401701911287344 3.825620414958329 3.0952994598215677 0.7476487679354702 +2.400962228818474 1.9478024725872998 4.544309925775617 1.9795441815692443 2.604491713813267 +1.6068582515304075 4.795114788144446 1.562968014871879 4.562864299110151 4.377711440861392 +1.8149442560402105 2.69747408292346 4.034242813762546 2.729789364866021 1.574946886620821 +4.075253866131325 3.3556669950676605 1.859631617972163 4.639477767024031 2.871471726729291 +2.832756035397242 2.9033957330721836 1.4749071736675337 2.857356089519576 1.3842524956914812 +4.743618550685555 1.4110787418051651 4.706191942175512 4.638385576180998 3.333229557207533 +1.9165040751853746 4.498689901183527 1.184089815624937 2.50649412970492 2.901109582536156 +2.0287150894028767 2.481741145021121 1.2866449538681617 2.0857493484593794 0.918586109476962 +3.764455453123176 3.3718755683899104 2.617051850315061 1.8993242520411915 0.818078157159303 +3.7464622982433053 1.6913273952236922 3.253359008971713 1.9337257985911913 2.442337257536034 +4.826148095016556 4.057885126052043 4.269432966817334 4.332091381070791 0.7708138986544847 +2.982363116128045 3.8186946747947186 2.243314341784673 3.72837654845659 1.704365052947018 +1.0634881129426668 3.9639924171188716 1.746597546349093 1.3844430934570453 2.923026011908589 +1.6217010825175358 4.2297246361652885 1.7799233315024794 4.852907012695257 4.030510583196448 +4.117599140741673 2.413379539632789 1.5271129499801819 1.168894175997686 1.741460633731709 +3.6814068600806835 4.5168502423214285 3.9252209118669286 1.214545956863903 2.836498608603662 +4.1161715951728235 2.6788863034958146 1.731666845321941 4.198246879496182 2.854786519979745 +1.034826518575867 2.81599514450651 1.670147417078438 4.377073225554226 3.2403717389509423 +3.897157230754032 1.3376182145185322 1.851137400955042 4.134999822305763 3.4303451044012707 +1.23839572416282 3.9335030902000154 1.1904995692169016 1.7718216909551132 2.757088885707199 +1.0370636401819855 1.304353246111047 3.935675432405724 3.749509501285009 0.3257322325895241 +2.939779303376653 3.1239830534009156 3.7428812455663456 3.4291201697107803 0.3638365488032269 +2.410142474192488 3.7500625513595103 3.137634112148073 1.0752512823027756 2.4594326073377117 +2.542444878868519 1.7863845313491349 3.0633468738792122 2.8831793465223146 0.7772307167148184 +4.870037108556918 2.287592867943772 4.287192819682968 1.6152471131907995 3.715953728764386 +1.7127196005170564 4.90053290537438 4.899775634207039 3.2869970199572167 3.572563298978333 +1.9070790830651974 2.6632511581691345 2.057065273869263 1.41956263725034 0.9890428801943184 +3.9390048510190527 2.047886998199459 2.471360455660497 3.7418606528997613 2.27826633307829 +1.9221180798258541 2.923901969950256 4.44173214671228 3.469911001743909 1.3957103210625097 +3.393389299432237 2.573197524043507 2.5111834466137033 4.0597879604235185 1.7523956427152663 +2.327982970628176 3.0013818285012914 4.571837609384992 3.9063226541133997 0.9467714494401304 +3.6054590961756876 1.1256671008975787 3.4676784682150346 4.538786041708146 2.701229307896626 +4.256688539594627 2.7276488743101837 3.5744858820404497 1.5578516893393042 2.5307658455859885 +1.1204377635752873 3.580301507633445 1.0171453179723673 2.723074456461604 2.993513631984736 +4.0971886101749355 4.10496630085024 3.41956968817511 1.9051400799050358 1.5144495801700666 +1.3110445682977256 4.524419956601486 4.703704971836922 1.760191428125239 4.357757837256501 +3.8153174353842694 1.7340292372090662 3.418747603862978 2.784180597753917 2.1758758809053425 +2.3469735929900515 4.381412710839143 1.9223846431990839 1.2107826066168803 2.1553004390809485 +3.252716270787568 3.746726500822984 3.3128356683684843 2.051716556711089 1.3544251626306942 +4.450846273442046 4.62008200850175 3.3550537811649677 4.074934964247655 0.7395063568203643 +3.1317420592237113 1.6375172021763018 1.2073349578058243 1.390292682710553 1.5053841544671132 +4.897380561103143 4.602011955639503 3.728869609611377 3.9574516264431723 0.37348674877755245 +1.026505702860336 4.392604387103615 3.3481181179981863 3.653835422668839 3.379953168675481 +1.0700034621646535 1.460086342539039 1.558683594041903 4.472223594177011 2.939537376178174 +4.013557384447147 3.55343340648581 2.7331119128356622 3.847924359715472 1.2060351847326485 +3.669094364403366 3.149550404459794 3.082948814466374 1.4040990568904568 1.7574021835728335 +4.958565424723829 4.394126564539983 1.3310297701867246 1.5327169243736218 0.5993904696019519 +2.460745455640653 3.3449997590213925 3.9559661619111375 2.9771631550077675 1.3190758125939674 +3.3113552193603053 4.491724004402596 1.0882354388428124 3.9375048329644478 3.0840892576221726 +4.395968676606477 2.3117320193848343 3.3666302851478314 2.939039656277216 2.1276456916517885 +2.792776330751439 2.440047062515427 4.569754413003055 4.739599557649296 0.3914911363367182 +1.3854468190110145 2.6641618250447503 1.7363975674792944 2.442316884672585 1.4606279981715051 +4.783419185761126 2.009735336407501 2.7270633158174213 4.474278906286533 3.27812208676606 +4.703464714405063 4.080382379779535 4.838056340259071 2.0312813253341715 2.8751030555667163 +4.245960460452469 2.0247899255857735 1.8226210895437025 3.24747313720339 2.6389016470266577 +3.262481301123084 4.306025264514268 2.143851608470961 1.6201488338021979 1.1675823738503175 +3.153426100054659 1.4301955135932305 1.5826636973465078 3.906041004664211 2.8926814145831994 +1.9208576887958877 4.670643877504835 4.08421954969209 1.5194955011575666 3.7602039211651532 +4.69007215993808 4.976540403190814 1.9396497734085543 3.2558003647454368 1.3469656393051506 +1.5142711904854376 2.2463226709324213 4.0964525134958825 2.4777547575453327 1.776536460403773 +4.171402609134502 1.3928611458437707 3.7425335835657103 1.5213096748241477 3.557264161682534 +1.3810639890767282 4.973830537569905 3.0569098483722277 4.757762198122409 3.975030841090706 +1.1254858629496516 4.2358371352527175 4.553787992998846 2.5303017941026464 3.710630867418732 +4.748079452368937 4.47650311961264 3.1238553992752096 4.899249148730996 1.7960447294318795 +1.819212785762176 3.85641384650323 4.67690823757099 3.5287028481943388 2.3384960504730516 +3.49811729541188 2.6604985626157425 2.686256376154487 3.197986163239573 0.9815663586946911 +1.7387750607452723 2.140926097276169 1.4368764896733524 1.9991976938121248 0.6913252438664116 +1.9246960112300426 4.40785582266057 4.680575047991928 2.0650586063209135 3.6065231048414343 +4.041104518337319 1.6428224067648753 2.6145809652406733 1.4382717486226118 2.671228268004997 +2.6956275346614733 3.546677571914597 1.0956717071941675 3.129886222958618 2.2050657273776086 +4.60050069679189 3.6384819929983974 1.1157876448328734 2.3928634473556736 1.5988754147330448 +1.3312937796127944 4.6273231388381095 1.4105994664675805 3.6815328639241143 4.002617647559996 +1.4012674854424207 4.068876004409683 4.3888625005836115 3.1885014715742908 2.925235342742704 +3.3842148420751106 4.74001193976806 1.7628878297086104 3.4473427579887184 2.162307604278302 +4.7834709952750005 3.7234531399335387 2.762107594059264 4.191451802140312 1.7795119327550326 +3.973260176888663 1.0573022581837321 2.5202908643031536 2.4752855059573955 2.9163052079536915 +3.8627615111288054 3.3438292154957603 3.282108466188608 3.3355270279014833 0.5216744868080615 +2.368417833007636 2.6918400106578484 4.006631110672153 4.875111802458422 0.9267473318016956 +4.139296231725161 3.009040702002305 1.3965359058524145 1.8901586868001532 1.2333454553934484 +2.5006314681413397 1.2870623149226867 4.903949227085292 3.220449934541783 2.075312014526571 +1.483125546040672 4.951408642159571 1.9556048282485698 4.239803235894868 4.152896579535539 +2.703462149323713 3.367616184625487 3.618494265048479 1.3481492719283263 2.3654950793424567 +4.737666315911328 2.5629858095351743 2.789083490524759 1.0744032876725829 2.769361569543714 +4.814395329519719 2.2306379040718185 3.019732065107795 4.8799889981916635 3.183764798260664 +2.6906100745541868 1.9472162641644117 4.350299518476229 3.2087491242024577 1.3622671030280482 +1.6531725353840345 2.739260526361137 2.973330023196609 4.77015768926212 2.0995658564767883 +4.907230360327649 1.1681423879636261 3.276519413433091 4.196236313719085 3.8505399675563656 +3.612242421005557 4.9973055549821055 3.670689774049923 3.823876037152264 1.3935084916512703 +2.4961789306203053 2.6707735677985642 2.6172859788433045 1.8887347962112577 0.7491796266890617 +2.0328930713111015 3.8593389726469094 1.2615585884709262 4.0826609572074 3.360732539997332 +1.046917540398025 3.1823313774318804 1.2751089479110993 2.322386307013201 2.3783990670792665 +3.183781088981593 1.924074653106946 1.134620917781894 1.993959993152651 1.524901292229459 +3.7235831333640723 3.887431942855056 1.4142839892495536 1.9200890339004664 0.531681460618973 +4.8177896303419505 2.012934013172614 2.036794208326344 2.8539712412091065 2.9214710911178727 +1.964442721731987 1.0069902508813762 2.415510797745261 2.109438823043641 1.0051842058228375 +4.640411274089901 2.6561456139578445 4.595764333986471 1.0551363540061631 4.058738314131467 +2.4403178460244455 2.6073565856001024 3.701531358854463 1.2904614722202634 2.416849175838922 +2.90077644093412 1.6385390493196237 1.8136540655817757 2.1024053105962173 1.2948438184920825 +1.58721450082398 1.1268908349083402 3.8862401433795464 2.4192585174758636 1.5375086888017986 +2.2068849394893175 3.3069811150114874 4.97407342092518 3.278046061624734 2.0215638498187856 +2.071893235802015 3.0309996424263 3.3555759151600677 1.9519921134957476 1.699980172685027 +1.7189896323709588 1.9860386955900444 1.8423268863657865 2.3372909053037048 0.5624096213698403 +4.947773902264277 4.711063321046819 1.2533222405763658 4.889104967365346 3.643480195592865 +2.5004180006834917 3.3923181279779793 2.6798929619634455 2.9719580337970473 0.9385029798850348 +4.907846224560023 2.5356429325284195 3.927117499157997 4.009497423466474 2.373633272149396 +3.255718838384238 3.0051631762134923 4.290742336630627 1.2959599881142543 3.0052453235686203 +1.3548627243048332 3.7458503631065247 4.985955195169712 2.212484281570271 3.6618250637468477 +4.317062605262921 2.2160459725079855 4.046855829774811 3.0050038740711513 2.3451495450645417 +3.4586749912110477 1.1266458717109913 3.170027142807763 2.049560360280532 2.5872389964870144 +2.436390888423742 2.7692550589775484 3.06663445504098 1.716247353488435 1.390806916893196 +2.756382760507292 3.4582740337038715 4.276898957464082 1.525880972504896 2.8391462295835375 +3.568014625685451 4.753197598523856 3.770992819002007 4.976311746564433 1.6904000698788197 +4.045994179286289 2.977291914278514 3.630946686892972 1.2673710020066822 2.593957314494293 +3.8160729820218315 1.871346150638618 1.0162715192223515 2.594702360375385 2.5046768991238904 +3.2217179414342367 3.3408064046296055 3.536095101368326 3.3963077657789285 0.1836370367257586 +2.0011991774789806 1.0077828149902657 1.152827150191345 4.347955783215885 3.3460010536211096 +4.1805393026719635 1.4781044597952082 1.7315319628709496 3.3792112185009744 3.1651225899525324 +4.512483552146041 1.7059698678570032 3.361792131436765 2.1161274084962476 3.070537357219434 +4.03251242732857 3.7340093123484492 1.1112112770329818 2.3012840466408373 1.226938183697511 +1.2799909448267677 3.7086621297412123 1.7092877389340115 1.049973053026803 2.5165729831432775 +4.250414589372839 3.5709749102297503 1.5999037804443037 4.20434667902297 2.6916093865104034 +4.054178971641891 3.2632814178677427 4.897485462665118 3.181764563962238 1.8892371854300747 +1.4677510247826704 4.431466414166791 4.0921367128785375 2.943552268045491 3.1784988809475307 +4.270592480261559 1.692205319064751 1.2957442161210575 4.04292673579547 3.7676374758499773 +4.320074009542596 4.318006746554589 4.5310912429479275 2.5174061478440053 2.0136861562368535 +4.216362612297752 1.058970799137862 1.3778054608747246 1.250520475982337 3.159956412545615 +3.5974922303668553 3.6260924941686836 4.40073886441742 1.247356188989528 3.153512370798362 +1.9666018809759547 2.9588601120191558 1.6562250548764386 2.00767524135104 1.0526602636397058 +1.7137828629760823 1.2564495202129176 3.789323765159806 3.2497383947007386 0.7073232347494174 +4.207965222326354 4.648236671992385 1.218441986598652 4.8405114129487306 3.648729351252435 +2.1662502302640996 3.1441780620455018 4.8043037594221705 1.3054855729442494 3.6329150205036895 +4.718096233059924 2.340419969583901 4.239388361001114 4.758745306207403 2.4337370544969135 +2.357756944042985 1.7130376435458206 4.12517435124214 3.687082619528564 0.7794788912019056 +2.5348791884342687 1.4058216779524169 4.751940302700279 2.4299305001113396 2.581956697021583 +1.1124671320964317 3.9508564086830718 1.48438334856109 2.642212020809415 3.065456070427751 +1.6382943346327585 1.4098052234264737 3.341666391699191 3.812868765616852 0.5236782897213492 +4.865245212366908 2.105158810998552 2.9887064680682336 4.727334612060779 3.262039970034316 +3.9021667838604017 4.684248858515359 4.836260794010693 4.727415310159472 0.789619978756496 +1.6789509585896019 4.205173023712301 1.157818029828357 4.410445537625771 4.118420040111645 +3.583354342332702 3.5443060929826102 3.0339339320802226 2.0872025076653227 0.947536361176695 +4.236155242782287 3.8415476811392137 4.957648910610795 2.555185644587448 2.434654980135267 +4.907556991868491 1.2756269722252962 3.787184657326967 1.0383006174702092 4.554918125736688 +1.7403405327542152 4.784112199806977 4.569489547570248 2.1004087077010514 3.9192991918150777 +3.260624512552386 2.5872710597913398 3.845663481187916 4.11819466844366 0.7264145650881788 +1.1938513785271638 2.4610494124227777 2.5020399611182498 4.627589352468567 2.4746213997657525 +2.5861422785712724 3.942955108035387 3.574881935880914 2.9546698556526207 1.491845862902573 +2.816695053215293 1.2277453474438116 2.6244475554388083 4.107691957318199 2.173654784729587 +3.3816549716859323 2.253350356589397 2.455200766463308 3.499287040869098 1.5372662270572082 +2.893206998908147 2.1699129998635853 1.7875193872826878 2.0739420708639975 0.7779409763753247 +1.7159721474645941 4.5722351783032575 1.9157017568801429 1.747000390172908 2.861240754019933 +4.918364541133572 4.167836256262856 1.245146319671195 2.369251329306474 1.3516304151202392 +2.120377357806111 4.026448891698041 4.933985590946779 1.356912960468697 4.053215673515107 +1.483874978845782 1.8417372229994422 3.4329932506015814 2.794130833248775 0.7322640057360225 +3.5011703823415603 4.432116012984589 3.043832079409727 3.5380828553594363 1.0540130913514483 +3.970978805489604 1.6229424572903084 3.778936727910391 2.211085957758632 2.823372226598991 +4.6519550078580645 3.3932991885207353 1.8506761739011481 4.565868909611961 2.992738889981632 +4.676743305619507 2.4589011678463977 2.0066919928817737 1.8673128874854195 2.222217424804126 +1.5565241201242288 3.924933031029378 3.253138197628221 2.0043037160038186 2.677489184245009 +4.677203700707517 2.1497294204167297 3.359715054446572 1.7157262327418321 3.0150995810124703 +1.9014409249455535 1.4699235028471946 3.501659205417384 4.495933265303405 1.0838764651641088 +4.033134053536822 3.6954149738136235 2.5801147386565817 3.543029036817777 1.0204205615393838 +1.202031747893844 2.605901463339072 1.790132940859463 1.3147559102244233 1.4821718858484842 +3.8440774307254073 4.995878020361898 1.989682428662083 3.6547991862762874 2.0246625434315244 +4.217586653043593 3.3014971639898025 2.7890279288645656 2.421446957992718 0.9870844554048683 +2.448876366270226 2.056162210128938 2.738302250965077 2.4653877525011882 0.478232926413019 +1.4229145173507969 2.9473786734807983 2.536625981760945 3.224444871232673 1.6724490389961897 +1.0936214722060291 3.9892808919878413 2.583102388311193 3.9078728219632035 3.184314710773682 +1.2009160545454085 3.108368223858812 4.644064479621376 2.719286807685803 2.709823400998695 +3.494741573517928 3.7565684226463203 4.285218124178138 3.4937299282507723 0.8336707163004219 +2.8217663563666067 2.80425033396547 1.0848395480544952 1.0703820577860186 0.02271189260322036 +4.5173948214259285 1.3607295595918827 4.120804759495567 4.676630491070741 3.2052266408400643 +4.718352879915068 1.523539115947317 4.734972692246469 1.4783171486547255 4.5620872762415035 +3.9446103835982513 4.014136423862292 2.9689416320817066 4.7555748618621925 1.7879855055426617 +3.5458290052287884 1.6485062963140988 3.310643165724837 3.2263547599703912 1.8991940388248911 +3.027330524917016 1.3956916182029486 2.225546524121232 4.098929952564488 2.4843129818661907 +2.0072811490061966 3.210195818053744 1.383993254071656 4.438187493534397 3.282545681841634 +1.3812773293190692 2.673812856271892 2.1670999740081034 3.2671782107117706 1.6972979158958101 +1.4294314070265308 4.7773780162131665 2.458114558232889 3.3736593500734133 3.470874351489924 +2.760272213041525 3.374380231242643 1.1751858079615958 3.1666557836121343 2.084006075311793 +2.490521277608784 3.29198990450437 3.3053512535531206 1.075328390885323 2.36967380200714 +4.978153663728994 3.2530616378296564 3.5805892071184675 3.112130828369811 1.7875669918750743 +2.027447871010966 3.5823057749292087 3.5181940513709336 4.852356319231676 2.048797710453707 +1.2876303015101391 1.6271712065555954 1.5893465320544014 4.5408234673761445 2.9709433057423555 +3.437383082396324 2.4011815771573835 1.1499564083025016 3.5220335229831785 2.588525332588277 +1.6132579960268383 1.6595601347617617 3.5804396591894343 3.460646112860564 0.1284304550855258 +1.9843866680394107 3.204064297701557 1.9924136756876494 4.334591071999843 2.6407212037801413 +1.9200531640046665 2.6055410292415093 4.821849262135366 3.5340581177496255 1.458869303585931 +4.122298308018918 2.438259599906992 2.482326442497466 2.144024438534371 1.7176829207699333 +1.2214581064045684 1.031298473056613 3.8966774556105586 3.100284459774785 0.8187811001551678 +1.298270870236471 1.7482738567615526 3.8909732850043097 4.539702844980283 0.7895269025613458 +1.7374205241747114 2.940559583762334 4.736708815882665 3.078593204452181 2.0486314889640047 +3.506661293377739 1.3931012770827143 3.9068141174469138 1.5070077030568232 3.1978440814131086 +3.5848320689813145 3.441327582455128 3.5412304548979368 2.6382590946406856 0.9143034589773653 +2.991275914514806 2.0991080968687763 4.967557261248841 2.960838813980044 2.1961061771809143 +4.961166904275106 4.737437956119336 1.026122609421431 1.8276705278872956 0.832186101686304 +4.058953332784679 3.324606981435825 3.6870061291846543 4.034151572792086 0.8122650569591032 +2.983576998021976 2.1291742403719294 3.581172523129112 3.101656688428394 0.9797650269369338 +4.632650832895842 3.85850807432573 4.563345693419075 2.3687948589589474 2.3270905387793115 +4.929802310292041 2.3615252469639687 2.6229236791471267 3.744270677463656 2.802403640564749 +2.8621712840828675 2.951971970886186 3.3992331297418525 2.166425405926745 1.2360740460217319 +2.4941606112051975 3.5866378666647525 3.3189019075732675 2.9566807072135695 1.1509607950258176 +1.489705353800424 1.1091731355888106 1.2972437578311697 3.5300245818552525 2.2649757122818586 +1.2116354499134343 4.028830331079918 3.4658089697534775 4.478064263213257 2.9935343287839515 +1.2695911592356168 4.408001713572537 1.4050148431875464 4.122577487087163 4.1514777526914495 +2.963574468938788 1.5617590752637431 4.073492329187607 2.364626951078447 2.2102731230425987 +3.2845658007304874 4.031665982759308 2.353082375435545 2.044667848631304 0.8082562726829782 +1.1178349419762466 3.0890678827526803 3.0908405784724557 1.7619772345105487 2.3773172051133034 +3.1017730838182707 3.3981046195593376 2.579100184031495 1.5786809732831921 1.0433843856934588 +3.5425189294646375 1.9137536092437473 2.26020087883712 2.2845246480251618 1.6289469340963114 +1.8339967884162824 3.7301905632282732 4.417754436055635 1.9373234025905433 3.1221929702394196 +2.299447040494592 3.204335157387495 4.966027208943894 1.3678354935543067 3.710229928830859 +3.5766537991905984 1.0411453369437988 1.0970760060577978 2.5068748962490277 2.901092220683368 +4.503235288689883 1.6095053910463872 2.6667592917348792 1.737578400540571 3.039251527773982 +4.618955009120905 4.051442372830028 4.015401020563042 4.755372264729263 0.9325384895770932 +2.5411235893094295 4.400108880709942 1.7937672994877056 4.934734848462793 3.6498634847563842 +2.169629840029766 1.4881858804622992 4.621199073269655 3.1621220050204064 1.6103638598533594 +1.7120575830202904 3.139243157556341 1.602807333740555 4.6380102818971025 3.3539999404683947 +4.576547491979747 3.3555252267738496 2.8455919146678537 4.891712243925227 2.3827513034156214 +2.0149936576916305 3.599922837165562 2.4439976376404977 1.2223536233153682 2.0011033460779397 +2.500646166081996 1.332253011895241 2.7880588803245336 1.4714618998575042 1.7602755953899303 +3.8837046523923293 2.895313363663343 3.470181778724475 1.7209672541558203 2.0091462845191965 +2.7394508911650837 4.965411192918198 1.8054317472986874 3.7544423142619574 2.9586384461632522 +4.240571024643165 1.3515958715090455 4.294154713329869 4.4504072974747215 2.893197591848551 +4.534515439003993 3.414151231822128 4.426778118817065 2.8673689076459143 1.920149224570757 +3.9229298522513947 2.455380960169836 1.6547947216838912 3.462061938592701 2.328070992036782 +2.8116373513535646 4.69031214017623 2.783890978797574 1.572738703584804 2.2352424467853496 +4.57836615765768 4.1204225027081005 1.8889043597967987 1.8182133625551158 0.4633676814362466 +1.809785019269762 3.9382218826842683 2.947233026807054 1.7346947541434354 2.4495902808869596 +1.5141569453379926 3.8283147036388123 3.4138452635413903 1.35643872350966 3.096489593276427 +1.5050698158565106 1.1896509285827674 3.0335624569646 4.961202529470253 1.9532755370348047 +4.6822267140196345 2.5530382584631495 2.6322005770681587 1.337480147440441 2.4919358880537823 +2.4706471929392038 3.5927039146535007 2.0828608036319682 3.570813102009042 1.8636022453812002 +1.4942827970160977 1.7729378779451 4.586089172751748 2.128377167970882 2.4734585002727525 +2.3732802868720078 4.611734679199978 4.717892014306477 4.448675425431204 2.2545854692732368 +1.8945608962747666 4.421806186183959 1.363514186357763 2.634546679584086 2.828867680575626 +3.4986653280610196 3.279517745584181 2.8819631354475588 1.601995580333421 1.2985925477417104 +1.4489141093658477 3.0678178918382972 3.275638952465648 1.795579980612792 2.193495843867897 +2.836047718058055 4.258874209327328 4.909531818362263 3.7670574945637227 1.8247418460693454 +4.6824894825525725 2.845583932193233 1.290243520462801 3.7406102224818922 3.0624367708256224 +2.7327365933352503 3.588934013986643 4.65272400175185 2.920208437662231 1.9325331052644013 +2.1897091112087503 4.39713690430939 4.1404208035674435 1.5781901775184028 3.3819762333311596 +4.2988320571712375 3.1005156154132414 3.2052400203980183 2.3860501479106224 1.451562724023134 +4.3727615589331545 1.2195930321284152 4.183151689668454 3.516433028210568 3.2228846600472947 +4.021647331602938 3.6104530783377973 4.008417042399 1.4065770916092042 2.6341320854209505 +1.6317458857277773 1.0887924463248893 2.4626160939183883 1.9075961193548023 0.7764313295610819 +1.4782036970089796 3.583901964555024 2.779413613836229 4.001835147563204 2.4348058649645608 +4.356490306000159 3.7996760681800428 3.9555605558048748 4.53483342970269 0.8034918530221895 +3.033735106672036 2.4831184642102087 2.791807298886666 2.968875656370917 0.5783873184796727 +2.8114342359431834 3.3148560733015824 4.101818784083483 3.2678246322183 0.9741559380687634 +1.988613720291648 3.9918985654905232 4.875856917974012 4.09659733545611 2.1495105647447876 +1.2163903546926575 1.5014431243176216 4.579605626467793 1.2838468379417973 3.30806303954704 +3.88600315317496 3.676883098709135 3.710250143707499 2.1143733249000185 1.6095198097528574 +3.506774366754719 3.060761943381217 1.3011437698528416 1.1021442417127822 0.4883931756315503 +1.3296115941993443 1.5555734176749705 4.005283491796686 2.40769454026831 1.6134897594078395 +4.993525961438394 1.6378791648177962 4.135209153525074 3.507788748121546 3.413798732905443 +3.596523622423973 3.3247689329724563 3.3962487321980013 3.75597380624779 0.45083560212012563 +4.289915653488722 2.3062452013980184 2.536696607832345 4.277184379867569 2.63898581790465 +3.054950201315686 4.434913632418311 2.7902939852297997 4.000120832096396 1.8352057297697446 +2.4024637307145897 3.486582438232853 1.4376952106978318 3.4026638874690898 2.2441959078216094 +2.277942533758506 2.539538957241956 4.09334965825291 2.4776042275120034 1.636785259507016 +3.2505669668288935 1.1844839743574664 1.1803406134180898 4.478805730470024 3.8921165270567273 +3.9291247499737816 4.175495851434413 4.842874502471498 2.374528904664044 2.4806105518300057 +2.697114842611649 3.392416067960987 1.1916601942938625 2.8053924382819733 1.7571498368833531 +3.4406932903953398 3.3034793573372396 4.516667689365585 2.190236652624661 2.330473993018743 +4.387983315441581 1.2456628446682272 3.340459230337267 3.4906764472134153 3.145908955021948 +4.004283237913917 2.742347746143074 3.4274732236154355 4.754635046713473 1.8313491447781947 +2.1278271581640724 3.2133114162085543 2.5618028916375244 1.7606944011293346 1.349092616548875 +2.8564763781128995 4.943074893792803 4.087052870539127 3.8618910551489614 2.098711797447989 +2.5166680980509617 4.401176397544662 3.0523598513998103 1.9013436593678956 2.208214166511094 +2.777522417149355 4.2893316153903935 1.1203960680352325 4.453109222426399 3.6595824927630924 +3.9960722127342114 4.503998492388485 2.541401087131108 2.5681710460678326 0.5086312379955689 +3.9275002429681947 4.132587334011384 4.269359026484452 2.089461864129894 2.189523316467311 +4.876015684263859 1.9888949863892207 4.250210169276981 1.4031104899453184 4.05480486683966 +2.2449768761211084 3.880324747355197 3.7796948883062758 4.777044397611463 1.9154813242788777 +4.785401298421855 2.6884192185860525 1.5698961668834537 1.2098119548905992 2.1276734906650976 +3.7022458928285786 3.478129698672524 1.197266539858461 3.162786970980291 1.978256463060424 +4.9292231224702086 3.933845678824469 1.112376811594018 1.3281098758072796 1.0184876093078261 +3.433268278076963 4.915262230886597 4.251443223272956 3.800918213302926 1.548960574311954 +1.980070224704055 1.405410923287484 3.08932643739443 3.17703214829963 0.5813136884935428 +2.6680506409079916 3.1247664210821178 2.8704397304896156 2.2023347631664123 0.8092920061522907 +4.653854180252078 1.4444989214652821 4.306098632082678 4.013197509726182 3.2226933215216365 +3.6288267674180874 4.332606827160324 2.15009091976938 3.8119377348107832 1.8047274611846642 +3.1100717143945356 1.3953357044116546 2.031120338573316 3.0384639459585143 1.9887334480195769 +1.2219043961600091 2.331000771932832 1.8300117341097941 1.9790749000003003 1.1190686297889467 +1.1279153836513567 2.465509602021671 2.4787026227396605 2.291284540595011 1.3506605163891003 +1.8290037356744282 3.547891111487812 3.3928717099459575 2.6448986720317382 1.8745766125120755 +4.770448230251549 4.5232720673207645 2.695900274793127 1.6445350139361947 1.0800300770154279 +3.4509634725468965 1.3179811983066392 3.9092490659776904 4.454737147205943 2.201629085242385 +3.445459834015385 4.372823824231678 4.207250583701336 1.9476419147627873 2.4425059482204188 +1.7679105902706658 3.7586426129168693 1.706100485832517 4.416424092561626 3.3628660453818453 +1.5901868557229673 1.7096497972704703 3.1269976066191174 2.3849420800157874 0.7516101376150587 +1.3210168845035741 4.456625027166893 1.7199986231342463 1.3706947538111587 3.155004218295213 +3.7851631423095937 3.06027998214792 4.711801427232949 1.6499393890959126 3.146498806049457 +4.549069392326258 3.114249841405841 3.0360171899084256 2.843591856956326 1.4476652418515799 +2.7430417006013728 1.745994224594861 1.0149373225385379 4.772667035210107 3.887754655698545 +3.6436312918537452 2.473164634203453 3.153967346952676 1.9713588479034128 1.6638975505404765 +1.044202476733143 1.0167563982412635 4.261113574683058 4.535057138585436 0.275315025794304 +2.3121346414270985 1.8674587896259265 1.7859174589467974 4.378125085293122 2.630071670366255 +1.7765526593051857 3.8232151060833024 2.583162681020862 2.598120345539165 2.0467171037492284 +3.7133187645293377 2.6256174598363176 1.0369231889317798 1.9016578357232592 1.389553934754777 +1.141502793759797 1.0324784054003633 2.3802095639458245 3.523715433208072 1.1486914251853526 +3.5177293621396455 1.8890881718159038 4.1294804470606525 2.6913527474548857 2.1727133743760376 +4.279972924527579 4.471388084157367 1.9521700423745258 2.754687729429871 0.8250299396826506 +3.3318988941886225 3.2340523046835004 1.5689362501220314 4.662809703145254 3.0954203104586013 +3.4183013133089233 4.445551306091959 2.5101073486398047 2.969909126397025 1.1254600048431074 +3.887489278832401 4.541940318166559 2.494743355365531 2.0117544324754677 0.8133784251626441 +1.2129101075083537 4.577351705893771 2.3696299897568434 1.6392837865660916 3.442800146023781 +1.1855334205898203 3.8911369873653427 4.626900692073606 2.7613780410991757 3.2864061559471156 +1.9941010252465476 2.8825943168310686 2.5436187028593893 3.044930729997373 1.0201637504557253 +4.378819082740208 1.1296819667825684 1.5086537899624566 4.36900985292483 4.3288022367878085 +3.448876610364337 1.1802593803351922 1.4007896263057789 3.569369924785696 3.138369743567567 +4.354207325886454 4.862570972313867 4.316028179657479 1.5565665241947668 2.8058977573992228 +3.780213186687598 4.662856917816967 3.1527417754466405 2.2449490791075117 1.2661546254816745 +1.8686998963332706 2.9028796215486397 1.7595369201623394 3.813984510080133 2.300061434780725 +4.131482253195368 1.1763909426012873 2.5575758977159366 3.4376865036152937 3.0833681798587036 +3.542793917600859 1.923659573414258 3.089833756964929 1.2353384018626148 2.461858860012213 +4.163347690585844 2.5649759908939562 2.5022533843694763 3.7303710398220127 2.015704607825802 +2.321329492540307 3.3727948647294195 1.9200133180748318 1.1370654210331081 1.3109488313411954 +4.9325842617503515 1.1619648260348265 4.9310414345912985 4.126396457810154 3.855518702801841 +1.2251066408553042 1.3946335800923544 2.8071283747510747 1.6474643264917948 1.171989798570015 +2.2545949804146557 4.545870384563895 2.1370424719556205 4.046082251292482 2.9823440205230844 +1.2913340804666142 4.700256412494841 3.1249853339138896 4.472695586755551 3.6656615216649917 +1.4550328365123875 2.148483093102956 2.931764314393671 3.6730176642688357 1.0150516179321518 +3.020710566421516 2.290770966013856 1.421484605703288 1.8858560677811216 0.8651315940569961 +1.9104461623205555 4.5276436750271465 3.761483009176465 2.7679290310841074 2.799441431411044 +4.309601095656598 4.899789570147794 1.3506953797774952 4.685790220343611 3.3869130533559564 +2.706832718548179 4.156492595716142 2.76120283818761 2.2846776392217336 1.5259718295958489 +4.778412381339317 4.463940761287455 2.9492406645895977 2.2074705281285225 0.8056769421818676 +4.1420779306931355 2.126265575065543 3.1946308472352754 3.976330123104333 2.1620715092232894 +1.5716324999735183 1.4243444723907772 4.425684429427188 1.492533076462164 2.9368470546607917 +4.554186987492228 3.848197075004975 3.6990567827057386 3.660032357834965 0.7070676504198548 +2.9794547390141877 2.582559484611318 3.1809424352118763 2.9256866293659503 0.4718912686049316 +3.1464403993511274 1.5384968015112053 1.6923956567416663 2.9157842124418663 2.020436134118724 +1.4997529885202017 3.1377771823447875 4.341839210394346 3.9848339888387554 1.6764772553699143 +3.699560716176339 2.2124162275532493 4.781716578287005 2.8360228803335343 2.4489431794751555 +1.8782194760475832 4.770674477713439 2.85964750885364 2.762389332640106 2.894089682353021 +2.113305516460369 3.2452172092154132 1.3022654674720808 2.6006357468304735 1.7224951269936237 +1.664659817414778 4.331316977790429 3.6375087371715655 3.2263473480821547 2.6981686564891874 +2.0267321375297844 1.523103073649656 3.4984676725776223 4.9476647518574755 1.5342145901333462 +1.2766683715682983 3.288604389816015 1.0879830014510583 4.693609350515432 4.128974195922004 +2.0353938301295096 3.083383423474142 2.636683615904023 4.017693238952189 1.7336290741419533 +2.1385969601677086 3.9837945113832336 4.3796521199013005 4.612882764730445 1.859879172607508 +4.093915933905031 2.0278149796383156 2.170709562803139 1.6601649996690946 2.128245499036134 +2.7890296550227682 1.6467199292208017 4.956983206767457 4.199984668973646 1.370371590439517 +1.1663953618987009 4.455998598998445 4.440522961527213 1.2911247645592567 4.554140803774311 +1.0940698162495224 3.3260254215122895 2.336178237297001 3.459698037315141 2.498784217353849 +3.7000642703130957 1.9387571963664825 4.592556180769211 3.696632851551914 1.976077230416409 +1.087559315735032 1.86926624852601 1.3079750068497678 2.87102507053263 1.7476244534660408 +4.809148632750346 2.498694233995068 3.4706854789318276 2.7606991840824766 2.4170808980258647 +4.502553731741619 4.61574595706732 2.9929442053874316 2.0603081040334 0.9394799505167907 +1.7468265257198392 4.7100987887222905 4.919453484617625 1.8718272190134595 4.25076562038888 +2.5879973497781648 4.776213859829797 2.972578374978606 4.845501103931221 2.880300512705203 +2.1270662669875198 3.978078949385066 1.366908126121654 1.1866314877088384 1.8597708506033706 +1.0148869094265205 1.7762872185215839 2.4951185052694216 2.716784511788836 0.7930108757995208 +2.8164518997671015 4.197092392999314 1.233434127823418 1.836029075799392 1.5064158930649438 +3.1683028243246376 1.9006726810685617 4.015306488627221 3.92915104783545 1.270554579728649 +1.3387569750147077 4.858780594820416 1.1915796737303586 3.1327631872563932 4.019795979546147 +4.711492477294312 1.318266910653764 2.2417928603978616 3.325425478579739 3.562055501713973 +1.2374670341074516 3.241840252258704 2.4317975310223994 4.580178028564185 2.9382053637994567 +3.9746049239528687 1.6672751857936339 4.306924154291914 1.9618527786707207 3.2898526224364275 +4.383212189321533 1.143204830937083 1.6197356707612984 3.127849894011304 3.573801364479334 +3.2758199103709784 4.524024582037002 4.893966243004135 3.3997935076604913 1.9469378689144636 +3.2679623321817988 1.7253475925860826 2.2772399276920634 3.56547617667629 2.0097793082860886 +2.0916951800812336 4.6281526132204585 3.9839194495898007 3.7982008857038765 2.5432474702826453 +3.0394814816686253 4.166907818073383 1.8975038273297615 1.558915946556629 1.177171141773997 +1.2660650461386913 1.879164996347944 4.886819813642607 2.5372263839300095 2.4282670433655342 +4.1821163198509055 3.252411779355288 2.387867118104445 2.753982526243631 0.9991951884867594 +1.2450023169473847 4.7943437562212186 2.1412544222430827 2.7557312625757473 3.602139147763682 +1.0066487179294383 4.891138664230256 3.337556971073964 1.0953771112170068 4.4851569277852805 +2.1558499690751205 2.2204731214659033 1.156142854327229 1.3925912397816642 0.24512035984171435 +2.2994614352233564 4.169166468167541 4.724383245919883 3.267661130689064 2.3701975089049787 +4.67833136132284 4.290732493694646 1.839354977667334 3.444541728870152 1.6513198928201998 +1.2267023808560107 2.652309487000123 1.6389705443344762 1.8982296313915485 1.4489896118710643 +3.596637966006354 2.0710565398590526 3.6251057522348384 4.004596040773818 1.572072379663555 +4.083427600417021 1.958907847770886 3.5384143668520167 4.993983505806597 2.5753185623647754 +4.548994710845114 4.634480113056486 4.076177246545766 4.2803828918511195 0.22137682707504808 +1.9286158932308943 1.737097587755403 4.512799378963676 1.4860523329818687 3.0328001816294785 +1.8862423521424176 2.8724005114602513 1.0543023156968974 2.1822314738172963 1.498243004631535 +2.31484036007348 4.370790790726035 1.5631513018975753 4.618813398916281 3.6829340239077295 +2.6179378420202375 1.1349046458848364 4.41602829782367 1.7627663556377233 3.039602999520155 +1.354757152185698 2.7365213324758324 1.6958111475343673 3.850560131803783 2.559729562891937 +1.1163892163298583 4.24975097974818 2.0943588161285884 1.4048112845831207 3.208337846722571 +4.116780328286165 2.270714612704125 1.8993660732930118 1.5260797242610957 1.8834280778997126 +3.284962666488413 3.321659490125048 3.4086829688720433 3.8763992898840454 0.4691537208698451 +2.1860326870023172 4.178135646389993 3.6499057186969552 4.8684993008318145 2.3352611244187242 +3.0363932638189057 1.4900217960952946 1.3441722779838154 1.5534733655821649 1.5604716150765212 +2.648818143506257 3.239436934593964 3.854676745466504 2.5753461264032254 1.4090838829745858 +4.535216108364649 3.524418540145316 3.200753417650986 2.689974675202275 1.1325222504019972 +4.955017647710468 2.1205866397514077 2.600051250078062 2.1870488019058447 2.8643620862377124 +2.03055606426538 1.651612084489233 2.855626941161222 1.6594649312361023 1.2547518056558782 +4.672646900090745 1.8834751965996883 3.256652196731512 1.8247814288482052 3.135240451300974 +3.3422606515920394 3.844020318117726 1.043648380124493 1.846690352337157 0.9469103294859409 +3.3310582726199143 2.2804109527054566 3.7937951135592387 1.9394475930665838 2.131305824512449 +4.34236610430486 3.1524263054841426 4.470522647680834 2.689156403780454 2.142247049181125 +2.81239215847377 3.6014397243465717 3.4921758615452534 1.4926207724380745 2.1496084796037187 +2.3732428730711463 4.793202118507483 1.9116719296813285 3.288941117323798 2.7844340834004586 +2.3771540078702507 3.8131097290283162 4.815656905358092 4.411557500579136 1.4917322688972332 +4.6540522035104335 2.118732929281368 2.090443618821659 3.485870858718718 2.8939697655856946 +3.2893542774143874 1.7498628576103865 3.956774454037134 2.587174234269063 2.0605432763324547 +1.8786609324772785 4.99912013842153 3.3718895840048995 3.9987061288944052 3.182791956271953 +3.8178528841460215 3.041004824728944 3.1676844409028897 2.3029562388239935 1.1624318349437441 +4.91302885799349 4.675218151239886 3.749928005210276 2.5539790634186126 1.2193636880025778 +4.917147523706472 3.309940458506539 1.2845150388691136 2.5264283180300864 2.0311236159783435 +4.828206132479798 2.7345206573921743 4.25190791555058 3.725734631362291 2.158790678501827 +3.603578028805484 1.7610329365311808 4.4462832103308205 3.311892445825606 2.1637501758888074 +3.1475214700829075 4.470951518634376 1.601058342517696 3.1330176077368406 2.0244422154508936 +2.949345681552334 3.4172212033849836 1.3110571319439952 1.4727254230793259 0.49501933324749287 +1.2513566109020657 2.998988586783349 4.077319675893451 2.896514638800292 2.1091510279606087 +3.863612214033046 4.0126977538163615 2.943184539881879 2.3326239546473753 0.6284987879179895 +3.0936465964104856 2.5842424046508556 4.987036053091661 2.767844191292423 2.2769069260859673 +2.8645368765680947 4.7294303053751845 1.5358211121421843 3.4453052294872264 2.669074201891142 +4.371372451516253 2.449529885353022 3.6987222064024428 2.501773570389831 2.2641035502753235 +1.1119062361807783 4.567595820223122 1.7007937889837752 4.778466786757879 4.6275113811298825 +2.5522083953217622 1.2025917661631067 3.8128971306212787 2.116772731039306 2.1675569253329607 +2.0654047026566045 4.593792425771138 3.138301828796391 1.1837388140181533 3.1957880181788165 +4.482044424550843 1.8315903060462837 3.5742191848851195 4.310699440681015 2.7508744430589642 +4.504760849439771 1.962449309625998 4.922325734809845 3.4361726673851494 2.9448257852182205 +4.470064382413046 3.6386802758389503 2.2582325650452284 2.8712389863718597 1.0329454996521794 +4.379207399141507 2.5303571969550367 2.0789800045020246 1.355254665510949 1.9854534586392847 +3.047359925341167 4.570163203144 4.339998838229194 1.8368064067006689 2.9300003706738234 +3.3802472949787035 4.580818910027788 1.2560731553636377 1.524594191019693 1.2302340222296602 +3.5684166568438154 4.077012264013851 3.9900734709468457 3.7058297901943673 0.5826353591058251 +4.360530938731349 2.0190802866977973 1.5933724789484538 1.757464358957467 2.3471934945788426 +3.524382024241817 3.3639297055252815 2.876366389956239 4.532868212211931 1.664254557968204 +4.788114119043108 3.8213269374792094 2.3106900279517286 1.1450594838927528 1.5143883318619074 +3.317044483118515 2.0496082545159946 3.1440134111591638 2.6524066792058965 1.3594380355411393 +1.3601290339508179 4.272899032484199 4.338551268289734 3.7589266414458327 2.9698811040848225 +1.5930454074487885 4.701069406087557 4.5693696111757 3.886756883567554 3.182102027278062 +1.5979389857184283 4.80524591358617 2.4614252754784647 3.8376107504616646 3.4900865592565387 +2.7302968234768468 3.731280233474043 4.333975020292205 4.127607915853632 1.0220348178432945 +2.812441573619061 4.415819822785078 1.122680858500766 4.890767604171205 4.095033520350709 +1.1757368497391991 4.955174858028056 1.5297380092771053 3.439082959066835 4.2343535274922415 +1.494705773142082 4.345199599223868 3.4452604383849623 2.6284295320712583 2.9652196852914026 +3.0015773941038524 3.981338828251083 4.000977187216711 3.3213869960279645 1.1923821936787697 +3.5776919522636423 1.6764509977198285 2.9855306956411396 4.497118973500796 2.42891257335405 +3.0497014156857047 1.8908669519363768 1.6066650521849257 1.0033632306112978 1.3064725034562534 +1.355617690016182 1.9640427819497392 2.398751372785364 2.9682549512208873 0.8333759165858008 +4.9362628379598 4.452953587097408 2.5320030234469293 1.3150746463826106 1.3093901278356896 +2.8932055569700093 4.001843676307757 3.7018295063609514 2.0746808644889074 1.968931482402264 +4.991122502607376 3.9648590466912057 2.0414142274790112 3.4748019004466406 1.7629001395327406 +2.4548216201856055 3.056142650169368 3.7426645795438764 3.402874025057831 0.6906841550366327 +1.3348885426543986 3.575687619410788 2.314590602155935 2.1199350806250505 2.2492379319348914 +2.3146776421063318 4.2959539608153445 4.239038328727711 1.9557193351311573 3.0230781461278693 +1.0169703556150727 1.18979628380088 3.7721127720568113 4.240512389829254 0.4992664653095142 +4.553141639536253 3.865989789052688 3.757985850119185 2.0286678240787466 1.8608381178413629 +3.5265356274989568 4.737281782559192 4.270498411669873 2.479584655259635 2.1617766616587786 +2.0526569040522067 1.186943309451097 4.521599618376099 4.472035799924486 0.8671312472611507 +2.076589477457445 2.7599710456575126 1.1079826708869938 3.277463234446848 2.2745672738830054 +2.2242383926644247 3.2143660776853427 4.829703041206699 4.892684139077289 0.9921287473578553 +4.483051607396497 2.9442486177573115 2.3119284009087786 1.7069198752655628 1.6534660435048172 +3.8465310205456147 3.103444418296847 3.8398863437563038 2.7200599450903744 1.3439452598936918 +4.860346994582786 3.7149584975700596 3.614381633809264 4.482047089581108 1.4369266342541063 +1.796684247718514 3.555942418956495 4.412773478317227 2.1276591524089015 2.8838753085976285 +2.971598747638853 4.240203823214678 3.956052544018591 3.871861362840802 1.2713956869381209 +3.4124728738707226 4.054314042709189 2.0371036941784557 1.4230690826036962 0.8882559260864484 +3.8316004428004953 1.104860708461544 4.191049237231907 3.326258566715654 2.8605895341056544 +3.414200362286781 1.1199526825888948 2.097652560518018 3.778044708622424 2.8438161310482215 +4.043481189198494 1.1530266980827708 4.705499612169984 2.7291727846625693 3.5015132292105617 +3.3043787047634305 1.389000902503641 1.8360460134984464 3.328049736745797 2.427910055083075 +4.955055647198272 3.1089777997711137 3.1526737806523566 2.4179540721196906 1.9869112886255427 +4.8126991186423425 3.6981318326271837 4.842748134400956 4.1530267356971 1.3107157750195886 +2.2210165521856045 1.5088330799068648 1.323750823343694 3.062947175743301 1.8793640547768016 +1.313118307158275 3.4627188224989904 1.3103668740541883 2.3149413108430745 2.372752025518633 +2.09544388094914 4.306846453255235 3.900047011033152 1.3784004538414094 3.353953293681798 +3.039031791246053 4.2568146394724975 4.307616386086373 3.268424731967932 1.6009104782666432 +1.531777586052696 1.865518282150672 1.3214531480925107 3.143013729402982 1.8518816926618458 +1.8851650479044504 4.089934747321252 2.9955701913469057 2.844504573332356 2.2099389693863887 +2.800514140948461 4.341336986924201 3.781983211607159 3.9193244820941264 1.5469316944389475 +3.2464840583561125 1.9524077093927326 3.150088890313142 1.8674995474775127 1.8219958889366143 +2.8683870597921652 1.1597814192131786 1.8775895163186735 1.6611254165209695 1.7222630291333434 +1.8180303608891597 4.255812380657769 4.630396389194886 1.8175680853659828 3.722201531718575 +2.108360765350802 3.2851565631806756 4.794004836232585 4.415464818935217 1.2361799603963577 +1.7884130285318482 2.0040419442941424 1.3924470061633976 2.5818867596725457 1.208827016797989 +4.928985140311761 2.955661206723755 4.278391031106042 1.8484843565585982 3.1302482000444405 +2.0228936737197674 4.735622271145287 3.618915826753447 4.850564137228362 2.979237151350315 +2.957026309976896 2.986761928809578 4.667492124773637 3.7194124273957674 0.9485458974701622 +4.264641133447746 2.0425357339077586 4.4090298895710145 2.1806166156619313 3.1469950946893714 +4.642684392949231 4.364050647719022 1.693560820162507 3.7702935350465654 2.09534138818731 +2.7301741711389593 2.017855465432687 4.3687281125232165 4.2728796670646165 0.7187383828597783 +1.0323568970919026 4.883214970209865 4.614178659120729 4.526715918320653 3.85185119524704 +3.9579321736432305 2.6995196449846706 1.672033268003327 1.480564167634045 1.2728953251077062 +4.681782937065316 4.704118872747371 2.9909965146589945 4.137724218232917 1.1469452123648773 +4.4248392925975715 2.357728395114889 1.0840254052911131 3.191035638602134 2.9516841947893107 +3.623221852829564 1.1981573990844105 1.2253532655044732 4.331537841004307 3.940725849623564 +1.1134265884409542 1.8431460879968502 1.459911354262358 4.2436218811947874 2.877765599521012 +2.040121035255486 1.9180442284159258 4.508812246413179 1.409155415459908 3.102059834439596 +2.3069231454306873 1.654841318902926 2.087475896379137 3.4039776965454593 1.4691452271062069 +2.1516846247081394 3.63478496338443 3.6608272789741907 3.004849792417683 1.6216945080534497 +2.3834549354401147 4.2716273655148544 4.990375337459605 2.9679704784673477 2.7668242696943803 +2.031285287496893 4.640302039469498 3.3567549181850866 4.115107276260401 2.7169958982435127 +3.613974775231096 2.395711435048079 1.2391793291142128 3.6229472326291394 2.67703473714142 +1.7449645568229681 3.280504004328834 1.06434412430478 2.3172655557611894 1.9818409391899738 +1.5030805847425852 3.35492634409754 4.058200340910128 3.251354046956078 2.019983578771945 +3.650640592784464 3.2660057045737583 3.3917371826597953 2.4233503547684996 1.0419774688841539 +2.9357110344405704 4.77940120144822 2.4144041481907306 1.3071716554938937 2.150617870474517 +3.5408408383841254 4.166590425101656 3.188404169706416 2.9853222470547545 0.6578790257980992 +3.704294052520137 1.1043198137402017 2.2993876149210832 3.1855573258269247 2.746845972901693 +4.551765383932862 2.333608092153514 2.162019946260316 3.686025239728948 2.6912476485069714 +1.4787164035041847 3.359224429637152 1.9176777238281222 1.5500147703061122 1.9161123358882266 +4.16769108485934 2.6379942489247505 1.7466325028739966 1.542513669425721 1.5432552958070735 +4.253977819131498 2.468573870570534 3.7286091230639506 1.2698081328952697 3.0386460091283367 +3.2386831357626362 1.0165952727979897 1.0022887965877119 4.18669177992328 3.8830525145832446 +2.8139615451521123 1.0759284976568684 1.8967436035608891 2.6023765516566217 1.875813618572986 +2.292533763022034 2.7989264328439343 3.363537013138905 3.3465502201423547 0.5066774982034031 +2.851685804879945 3.9389922978872534 4.3231756392206 1.2234054778311645 3.284936903987067 +4.791474883164646 1.0887322119842167 1.7048307539920398 2.9707058618025135 3.913150019811988 +2.6732856804471457 2.6703551301276067 3.555939770509714 4.253477012076578 0.6975433975731438 +4.050329180973619 3.588950062095579 3.9945423614834135 1.2965186247406049 2.7371888453967337 +2.8202634208696886 3.6756781916570254 4.999204615615886 1.7273085584901544 3.3818690451754723 +2.4186225801268066 2.7219344888885852 1.6657934293404235 2.7841294070757767 1.1587378793730712 +1.6775674437009869 4.669112490150457 4.02864026046382 3.2462412405215266 3.0921659061801687 +2.2624306427322955 3.3898314890454673 1.2348523851559223 4.729845819316556 3.6723305642457618 +3.685736862182849 2.4977567494030346 4.771903199739868 4.664147506957687 1.1928570902196576 +2.217162085011792 3.672839977327625 3.7020140639478445 4.832099635225975 1.8428487524992616 +4.193008284514242 3.603880873208643 2.528996601778706 4.873640825439701 2.41752510686001 +4.464730013099381 1.2101283838141361 4.671381152988612 3.5528715352387246 3.441438003269152 +2.0481397693416388 3.658943753540851 2.552457278787946 4.258563129868107 2.3463773461662165 +3.3032356249838535 1.5650298143492747 4.427908438306504 1.232608648659641 3.6374854207049547 +3.0442954368220785 2.3783898351389525 4.617474559698659 1.0502729478375894 3.628823171500256 +3.6973849631072646 1.0960872942076305 1.8857420304340544 2.122249028005065 2.6120270140491892 +2.142252557345144 1.0949403321527598 1.3751578019025579 2.3611349905133565 1.4384067274238805 +4.584578951977731 3.1022621335600675 1.7914964760190086 2.8391806231758023 1.8151873794094984 +4.378743026718632 1.833875506634293 1.932618205239152 3.173186822122422 2.83114132250156 +4.694900608296135 3.3286618461941555 4.622242641806523 2.6862528973236546 2.3695283593603156 +3.6211011974432346 3.1165159177659376 4.789841885289591 4.354025674002505 0.6667398851783547 +1.7306514132213264 4.379125800742344 2.3708369770406192 2.321740508281892 2.648929414801271 +1.278571528704377 2.3185002468105336 3.5814265136253502 1.9628353902220605 1.923873427100088 +1.8744589661766353 4.4939197024363144 4.7497354947840975 4.294990675169924 2.658640141081908 +2.4703829603545464 4.126873751971354 4.889715032802571 3.916809260031065 1.9210693338355596 +3.7660166058823847 2.3524185595925844 4.78292386646789 3.9080548210957344 1.6624245194969685 +3.380423429118822 1.4423043630611008 2.824292794395114 4.796186052449281 2.7648993716545873 +4.298146656106371 2.3619114489266257 3.2046953817760966 1.108677220201364 2.8534713790703266 +3.226221109005863 4.2833360959901725 1.6599724786478727 3.92820128321397 2.5024695813476305 +2.3508773783944577 2.145291852950663 4.394134419997454 2.85272612267477 1.5550578598004694 +2.4769582808870996 1.6282042401270287 2.240614612539544 1.250904766530068 1.3038055840479623 +1.5564680175045336 4.905098144583628 4.959553163452744 3.4213385661660256 3.685027527073264 +2.9601293877427635 1.8765549333930331 3.5242388127855517 3.162620902139337 1.1423226827037314 +1.6082952741514465 3.2385882820874867 3.3734789246804167 3.681291195036144 1.6590972501654897 +1.219162521046775 3.549117814709016 1.3289636557974456 2.692195874660456 2.6994617524630473 +4.088540780695235 2.9554191196331594 4.656600487432613 2.2289451419774635 2.6790810318250986 +4.030218402571338 4.963611407347698 4.695499084854312 2.1287408319382517 2.7312031104035723 +2.852127596834309 4.033631735406026 1.1740013746154738 2.8568934557007846 2.0562290208149827 +2.6772159450412194 2.3737530683959918 1.3269509557061752 2.6696441638143935 1.3765590320076129 +4.148665967700461 1.670494444125732 4.804472157709549 1.6553694629878337 4.007266135679069 +2.557048843098666 1.4613633656063696 4.280103692834834 2.5997434026637407 2.0060252666333502 +1.0412228572006264 1.5848195168910095 2.8273766321204152 2.487260854691318 0.6412301228753537 +1.6070470843100613 4.69082369144526 1.7755932103958298 3.916543879310451 3.754110804097322 +1.525268150804048 1.5888242730416224 1.1201880121822643 2.9495554225452847 1.8304711149789228 +1.2458052350938407 3.552685927642891 1.85431846355432 4.119327185895361 3.2329495885238577 +1.9313573721511883 1.253708974644924 1.8529597403867912 1.3176580356081775 0.8635712279723649 +4.658949363299438 3.3409291622669066 1.084000418791438 2.848774212670405 2.2026356471036688 +3.806373178560333 3.856471756669881 3.4770683618889686 4.339129319021122 0.863515466763742 +4.661529445274301 2.33767874974421 2.2536309520505253 4.33878947718813 3.1222056514697614 +3.7028112981181462 2.3928626213429127 3.3956118438395104 1.8660957255989468 2.013798672097801 +2.4114731699509946 3.479046331570849 4.27143924141949 1.651585364644236 2.829018697546083 +1.171292286771871 2.5051056151551587 1.5874717053385132 1.0295506776935834 1.445798695552489 +2.10251651508433 1.4933768910880083 4.036549299968145 3.68861319135192 0.7015059637675092 +2.207688249723305 4.085368818470926 3.8488228762249386 2.27493597997103 2.450062097264506 +4.456596057267181 1.8772031723414733 4.490826764716282 1.745173954939379 3.767210772792142 +3.0662693593873493 2.1971009396462056 1.3457486385502788 4.164834690582897 2.9500338829647648 +1.3847642056872127 1.4464462589692055 2.562445522737486 1.7611167002705685 0.8036992953918146 +1.7728587471732848 4.945831454088919 1.9146496743325088 1.6751932016935291 3.1819954747171204 +2.424050486218004 4.961155422055016 3.29375757608474 2.9247932268602552 2.563793311959288 +2.7766892061414974 2.5189211508540854 1.4254635200543664 4.9445143682824995 3.5284788851205837 +1.349546980290075 3.4610974678354287 4.8552754656919745 4.812116457893403 2.1119915154676114 +2.675986636957943 2.028510465605702 3.573660810784244 4.650832226783557 1.256791013619576 +1.9776496915828052 4.40497878805628 3.97507292380835 4.361986491711479 2.4579724676273864 +1.770090541933845 1.8035440258953304 1.4679301036378654 3.3703367970853555 1.9027008075004788 +2.2012257362901364 3.105273808177417 1.0615537256655228 4.675349772840688 3.7251610417352374 +4.10057615960803 1.4323304252097673 4.305477752886049 2.7602826957318616 3.083368784915009 +1.4181437255579117 4.279317656369662 1.7971419017950425 1.0974557435557757 2.945484167736841 +3.232505128628601 3.850042571982354 3.001070210188474 1.2985806402998326 1.811028224386219 +2.150967672944985 3.661395116935631 3.8837875742139856 3.599518024881299 1.5369450999427159 +1.2923821036081087 4.966587387478853 4.699878746647977 3.4303741462250312 3.887341816526908 +2.879595434584636 2.930047714817319 4.539050274808035 4.541638147398623 0.0505186071187866 +4.319589721206828 4.135897544385498 3.4900390763960343 2.23258100289883 1.270804321061531 +2.8720283901777877 4.503310719940314 4.466196944804575 2.96885185663151 2.214299968945369 +4.022997611273726 1.2868212747164463 3.596669678706628 4.952981373735899 3.0538897096668687 +2.930650600305102 1.3024789533766716 2.3827631992808245 4.2550621787776155 2.4812187288682073 +1.5699868686181753 4.405618026455496 2.243341042370602 4.757800510501099 3.789895840279641 +2.3519695441316735 2.7074453278698285 1.4255132082892166 2.9518514452697153 1.5671858366170213 +2.3087336824585876 3.5246647235034176 4.920741145649634 4.360144714158155 1.338938630250597 +2.778384145136854 3.756146500143903 2.4259480778133997 1.195726301071578 1.5714530991533713 +1.626067684895074 1.4263329922702859 4.568255115839568 2.756176966674572 1.8230527052499486 +3.800620385293884 3.108404005564822 2.3124030584054545 1.6372485138178496 0.9669525197456722 +4.830674134849161 4.835218325409375 2.3067821126139108 1.355305985247354 0.9514869786898336 +3.547852003170568 2.472932515574635 4.659358283904958 1.7987851208404013 3.0558682442243263 +4.884376117986363 4.903373402740435 4.701162003020129 2.2588918595088288 2.4423440279196407 +3.061979891717521 3.6638766880374716 1.1702655674978515 4.549738502605963 3.432654522748896 +4.224451707682389 1.9211162876894443 3.0806720549417226 1.6370518497100601 2.718343862344715 +2.9714133781901517 4.825623804245941 1.3679202911342774 2.341723504197415 2.0943707890118413 +3.8529171227627668 1.8689745517453535 3.4188108514998263 2.784379345402127 2.082914175146105 +2.9675136798839725 1.6737296274479494 2.8664808371295787 4.312580858168277 1.9403820358851767 +1.5623610444230822 2.707389117296109 2.242226674115372 1.79560804550787 1.2290473900898058 +4.0032653694983775 3.595490296685071 4.790466066413854 3.829751374959309 1.0436729508732607 +1.7534069630899531 2.0615263731265294 1.562335091388979 3.9373595099570715 2.3949276731534073 +4.0691308445020535 2.6682412180377355 4.17426169714545 4.615892063138558 1.4688529966278254 +4.857241774751472 4.3896758548868835 2.498912317600935 1.761865407898378 0.8728436495277423 +3.191991308459928 3.4579990709566673 3.0213438631726306 1.1811749922352126 1.8592959966814357 +2.7222510482863482 4.83168164686615 4.642680821548264 3.094353388126504 2.61668020424949 +3.6607716664054784 2.8456259755089217 4.19760153410391 1.5354217630914189 2.7841809622535933 +4.161064425840533 2.8552891833557843 1.138711285792409 1.3128868994361538 1.3173405513663807 +1.5881436215419065 3.818226309485317 3.9849253686535246 3.155953224334958 2.3791728838235 +4.785473724180745 1.2015026218772347 1.2651864323658804 3.262683334085286 4.103028483270043 +4.6971732283217715 1.8040327515194194 3.837162187040235 4.158114951118092 2.910888609219074 +4.082158060980074 1.0944697938915238 3.544524731231983 4.530616546136757 3.146213319010772 +1.854364044462777 3.848000161589647 3.8425534423954613 4.929629898572435 2.2707532206488206 +2.958405847817344 1.840807440204404 1.7788955436840257 3.8259023851831926 2.3322228045029005 +1.4060187099932864 4.075342984102599 4.8929922539304345 2.0013033182170523 3.935372533989178 +1.483841575640875 1.396153740999774 2.1159945629026025 2.6445408223336617 0.5357707576031093 +3.9004881636639097 2.5995943355067177 3.6494155437070206 3.689861090630028 1.301522414099494 +2.8503447996167224 3.6597096771668167 2.0494514227631964 4.12500003748411 2.2277732283788634 +4.983486389792496 4.870460802291909 4.209397607017004 3.4078142418065887 0.8095126155977477 +1.0590816556682991 4.2677964912368465 3.4966962487600317 3.632549578340161 3.211589485465989 +2.9978200325881814 3.3839052782878127 4.505188630331249 1.6837321373636938 2.847749735959205 +4.383822007392791 2.0749287029708388 1.0833041325174313 2.269666053115907 2.5958510931582004 +1.121485995134773 2.3040672135843514 1.6739875788386471 4.168846483239044 2.7609453618454016 +1.8523363910381856 2.277597480577868 4.589952236010706 3.515721541142574 1.1553434900813473 +1.149600747698123 1.1082857348867048 1.2079451936949117 2.8311222711667483 1.6237027914965287 +1.685054349805105 1.9632259532203662 3.027603384542187 2.4348815615168813 0.6547507926204131 +1.7017805301912245 4.012418808040498 3.1661053053091255 2.4324852478244496 2.424303537060917 +1.5117786656290675 2.7774333294356617 4.767116331960895 1.145856482027701 3.836066296188527 +2.876432969250819 3.7133218518559294 4.618383468758183 1.0890483398647612 3.627201325246391 +1.1682924714589333 4.788154581104713 1.0690750781258407 1.1682715785906432 3.6212210148724226 +4.219200014109081 3.078241895539575 3.9829138762324434 3.9203781551028904 1.1426706195342817 +3.70357439075046 2.835605839574525 4.254488187428834 3.090731001990331 1.451792062414655 +2.6795213555361936 2.0509433525881997 1.0956712101484571 4.390309647089683 3.354065106100449 +4.3879553691323965 2.0575832373631373 1.0400091897154202 3.106591709111322 3.1147066606663807 +3.33096831020216 3.88663246231416 3.918460730202698 1.6478822085651297 2.3375819713678903 +3.0778997901122986 2.933855893928333 2.6295265287701204 1.3251098167045945 1.312345839610769 +1.623970469641316 2.550005194076333 1.8526239359687722 3.5471664438722663 1.9310656700255695 +4.2613475848652325 1.8395463129933591 1.714415059117382 1.1382343183927186 2.489398651566728 +1.4363580333541939 3.3956532845634033 4.354905836382986 4.774192022486625 2.003656354584861 +1.5121852165101384 3.8700886448662914 1.4405557546721193 4.3876608023681865 3.7742730080916695 +1.8128942569614441 2.2723173769109386 2.6242472953968874 2.995182992072643 0.5904768363047409 +4.497372829693863 4.386232064740348 2.895461536414399 4.574887945118521 1.6830999173808059 +1.3715884207923659 4.986218669329508 3.6927532782077845 3.647044611653525 3.6149192405692623 +2.188074600848519 4.509589416131668 4.567770675898884 1.36726658624069 3.953815557850161 +4.49443303063531 1.8009536805290058 4.413052210025931 3.1922858444602853 2.957211782870046 +3.7202492986667237 2.8288847214852537 3.4869856366180207 4.614739755405901 1.4374839692660675 +1.6493256026600416 3.9263592258890223 2.5624448197953797 3.457712970318988 2.4467094602051267 +3.447870163160217 2.479672069887453 4.038924790023961 1.890965658842115 2.35608488324264 +1.888188041231626 4.688782091561106 4.407553056794502 2.7290138940338577 3.265091232364279 +2.617289183237063 1.8382365161876688 2.336045343080491 2.722416676290266 0.869600980428997 +4.723175881173548 1.0659823808303908 3.3376217910490467 3.880332997784822 3.6972421820687966 +2.657027016005968 3.7105250555553706 1.5686117971848899 4.565687986019261 3.1768417966610167 +4.358457459023512 1.7974395736358106 1.336366694795275 1.3723702556424984 2.5612709473363755 +1.4558644826655436 2.4641387346266477 3.9463138643106577 4.359609456067995 1.08969271509622 +3.5701994851468424 1.6223232119197757 1.240286886835893 2.961832541458589 2.5996040884625593 +4.342548329137227 1.4073599090690547 1.7076535536430306 2.3396965226708675 3.0024672148084837 +3.778724114331585 4.173796801935513 1.6266834240026928 2.427036171659465 0.892550810414923 +2.60769513202069 3.5902269272903022 2.2375527418211676 4.372579367662238 2.3502568842077745 +3.189370218198986 3.3688910686707803 1.729241956712157 2.688352800751133 0.9757670556578928 +1.9622432169861135 1.922300308525298 1.2904385868587123 3.5807851627276794 2.290694845135644 +3.3132579125290076 3.067071552574572 4.284900377201744 3.956579420261142 0.41036858382922964 +3.871883143537861 1.0227797243690375 1.9526019478339265 4.7374752272925775 3.9840820116762483 +2.373900513247565 4.260008772459341 4.333799038854683 4.791602948357912 1.9408732016861168 +4.246867055383115 1.121737525553086 4.067991426056201 3.1539098818611557 3.256068126998214 +4.749585155169196 1.497841853443675 4.699732395063878 2.372785455083529 3.99856431257529 +4.630581407030691 2.8807188483782604 1.194806127722452 3.8831536957347024 3.2076832169980585 +2.1503943075812186 1.7904144262449573 3.570923779126495 1.3455773228154513 2.2542742436498244 +1.3933188439098876 4.55725119160363 4.152283437429688 3.4509742033421564 3.2407256197646963 +4.673059526515573 3.302924709433543 3.953337390532154 2.36828459897404 2.0951519679981634 +3.4608377796794505 2.100904943660772 1.7208785423887876 2.330143800751563 1.4901749808427416 +2.720303811023899 3.9437375591769057 4.439591220855314 3.8792098406646964 1.345666164910174 +4.887688056133827 3.1447693921823046 4.456020058041316 2.113102693962498 2.9201074028282927 +4.206022281476982 3.1230074140001207 3.8549289642056217 4.298575315518896 1.1703603240923304 +3.163904644948437 2.1262600861441907 1.8151785174058435 3.2821610162294026 1.7968705802785778 +4.948196145649099 4.70004382719708 1.4175601509648712 2.2354712942768886 0.8547269806827699 +3.116457564161733 2.6567759258267105 3.994879929850194 3.3012204719365643 0.8321482152690113 +1.2591336083010058 4.778929372851568 4.647413949982279 2.06109841584818 4.367835879042552 +4.285231628809653 2.2721773523377213 2.477633200886602 4.411590903706935 2.791519284604717 +1.9558893472809746 3.087296249342443 4.082072686412619 3.172530688509654 1.4516708387171133 +2.622012769660914 2.208288337841698 4.949543028490037 4.804179795512127 0.4385183861435266 +3.558816837883872 4.337880368070643 2.9788767291342193 3.5625348178386242 0.9734458118339986 +4.674708411956269 2.1501285881149634 3.663642440714667 1.1841981968564141 3.5385232859695046 +4.291423553352916 3.6276122093907133 3.726083659955021 1.68508099128996 2.14623796301128 +3.7855021264116098 2.921991969442344 1.4792928260692495 2.946599001579513 1.7025384588547896 +4.332763510193263 3.5698001560791477 4.866981681653458 4.071532009879432 1.102203819647921 +4.9458843206804595 3.259341375755373 1.0438998185252157 1.123198189204305 1.6884061527573693 +1.7639427605878577 3.325931712271313 1.587597187362296 2.610623285598707 1.8671882290904669 +3.756630462914855 2.725629110784519 2.6617111561164832 2.729633665514194 1.0332363018097375 +4.6945216179805085 4.477377900243555 2.1678192322739203 4.267731866568278 2.1111097711444793 +3.845339988362677 1.4075602224576156 3.8114303875403905 4.465055845791975 2.523885184934277 +2.210102709020204 3.767676564489458 1.5739760057567307 2.628341813156956 1.8808837207695976 +3.6146882792015576 1.858827832330448 3.574078379364889 3.0920305494562492 1.8208283881810614 +1.0018862063356737 2.160895002028048 3.601267296880781 1.2614775653652162 2.6111142020597193 +2.581564624068483 3.076581381796787 4.074205772540162 2.4803038816629472 1.6690011468461614 +1.3853581091818228 1.202552658487348 2.785670665350985 4.206706747341958 1.432746097228628 +2.9358760020782837 3.6459217464260476 1.9110085695662553 3.5678053348948113 1.8025372341978227 +4.409402541299606 4.584244015985339 3.949385881959322 1.1696538484740557 2.7852252546705114 +4.957076878218737 1.6897619470756213 3.643336625099951 2.0121820085050346 3.6518505230238616 +2.8664513996036614 2.4299647077244586 4.737108348603258 1.0871171746096215 3.6759973071833305 +3.5296700368474174 1.9630070300946652 2.967956463458509 2.041470519723017 1.8201124087998024 +1.4676506389805688 1.7025037643024548 4.12129223624447 4.7730234641919225 0.6927550677947814 +2.9124145522079745 3.6057506440890816 3.5686702785339186 1.1019353158117702 2.562322445091719 +2.6582520159230034 4.295957514951063 4.027469356057738 1.66267167402086 2.876516535414621 +3.9392970029573777 1.7703625011498225 2.0010856325799433 4.9690462540628815 3.6760123944030134 +1.5482402604003127 1.2318619941674704 1.8937452441884055 1.0671588200420663 0.8850651523631077 +2.084690899649169 2.456725301671066 3.1141142502566526 3.0284458945987445 0.38177043291606566 +2.417758290577041 4.669275611356332 2.177835353570893 2.3222149886734065 2.2561417785240114 +1.900575574664645 2.6515717406760517 1.9539034386905025 1.9511905012031612 0.7510010661734392 +1.792510976288344 2.2556526284504352 2.636749531708155 1.3832473565799739 1.3363262674281728 +1.6537140918878475 3.7477966713204816 1.0175835645931595 3.452130960945706 3.2112618819663705 +4.696569249970574 2.5725811636270155 3.3975518697372395 1.4452694586547223 2.8849145574092034 +2.2927145120637733 3.9911347573704017 1.6320203298626308 2.6027615310385728 1.9562642483386385 +3.231583373995615 1.779042119692392 1.7278152069995119 2.779995506402464 1.793588436042245 +4.807311458252967 1.6383617259469583 3.3753777806018532 2.798571574763307 3.2210165794320558 +4.80356600296799 4.769520147415749 4.264423904881314 3.6465295771755573 0.6188315768375373 +4.2012231577962105 3.3206641048664323 4.359592004724414 1.7871316728874755 2.7189954771148845 +4.741050908370017 2.3537591081566025 2.2895729334862818 1.6889825610811573 2.4616805103002157 +1.4114645027050905 4.317052706985095 2.3733725540357025 3.0134454879269486 2.9752539679078236 +4.263539663082179 1.8841380330732624 1.2040300528772478 2.059725919317344 2.5285900285992895 +2.1578564125165034 1.3969094474898371 3.521149028614193 2.466649154295243 1.300388506763258 +3.4487314882026032 1.1573413541180013 4.089041246706581 3.02282465906897 2.527308164497128 +3.5864382903872363 4.944027686628427 2.5498707085747583 1.0953111035976146 1.9896714837424256 +2.2429347109763635 4.944702770121086 3.182032332065814 1.9136081480880973 2.9847027583855277 +4.848972322764848 2.214746373719386 4.563579659072687 4.359040727407052 2.642154901816202 +2.6260952361126857 1.2478411038411084 3.6517968204396376 1.999029130575194 2.1520282269950664 +2.2804811989381664 1.1056698849030706 2.2183300149216403 2.389185685258751 1.1871702841931362 +4.380462756025841 1.116219238253688 4.433947545625117 2.5978903499177024 3.745182474756937 +4.504774064560581 2.8502342745867186 4.220254068232643 1.1735669555963186 3.4669589381633896 +4.298011281775588 4.903168839004893 1.0024968317660359 3.2711854956795343 2.3480127603659553 +3.17499184669006 4.2460560084979955 4.200880515833683 4.299037141008418 1.0755524914084984 +3.3305494434417264 2.523973834674979 3.7732417128816884 2.6764466019253073 1.3614417828446685 +4.107797746372611 2.220589651179148 2.102032518143589 4.7930456247265685 3.2868078639258975 +4.1484884453282564 2.130754958162615 4.3346244703893495 3.9644999092989464 2.0513996724071064 +3.3235310132125626 4.410433616760187 4.568429365622384 3.3711306650636654 1.6170595066224993 +4.400780854558805 2.4526081783929254 1.965899130713375 1.9626099832057675 1.9481754527379336 +3.0304277153143677 1.2318890242617675 1.3127599175990636 3.8283784038184256 3.0924226411378175 +1.3868804426138674 2.9834555498533475 2.895703346501737 2.832547483562469 1.5978237500051002 +1.999596868337929 1.5395291739146728 1.273813284252324 1.215159230571861 0.4637915280221075 +3.4934013313992254 1.8906600867704064 2.258030599859958 4.488267859111326 2.7464045094973515 +2.925957400466809 2.067404516485053 3.7668134161812117 2.9293410694452797 1.1993635754602434 +2.7220568324218193 1.4527239021618605 3.712655545688441 3.225920351170598 1.3594547574026346 +1.9242447067057178 2.0362554343460575 3.0970435486353804 4.19923391577818 1.1078673244251305 +1.6734503277153019 1.7649322934359364 4.607561788852593 3.438230703968275 1.1729041461811132 +4.378664620342928 3.2225816170229256 3.8327146844398903 3.2137853610498146 1.311335738061574 +4.157372256859512 4.865266753101828 1.4558822058615144 4.981947778834513 3.596422255897598 +2.4462457497416987 4.603567283915744 1.6550714254392318 1.414543926876343 2.1706887569101143 +3.489268353709306 4.433464477945078 1.933764176559217 3.9541864294406333 2.2301597254367835 +2.7992983467174404 1.1823491887266946 1.4637298792893345 1.6810223839060905 1.6314841746365807 +4.745190905081634 4.290494931223439 2.6289958692716198 4.382801533200224 1.8117899258663808 +2.2615387454024134 2.8720515037297614 3.6079832088579615 1.1718676967575865 2.511450699571174 +1.5830016077776188 2.2324140596778124 4.448492703071288 1.3078971444941603 3.2070355463008826 +1.4296968320890397 2.9306992298191714 2.4699829486088216 2.222625585822564 1.521247469321207 +4.877739198984896 3.355447526804588 1.8984764330015982 2.662135916416348 1.7030994515291236 +3.02994501109564 4.986582220601264 2.0021271261485065 4.9210291783525175 3.514031639012765 +3.409988931012801 3.117492291536303 1.3716134580491146 1.678472835150636 0.423930373316395 +1.7512649513362621 1.347885890921579 2.995430353512382 4.719899341081481 1.7710189031934773 +3.0598848772846776 4.312450122776536 1.6944465989843125 2.4128054441980913 1.4439387537949637 +3.110513000054492 3.317710798418604 3.5816660955212716 1.1792031631167244 2.4113811538669685 +2.3220760742885522 1.504843891284576 2.8370175110523927 1.773731119192251 1.341061666014059 +1.728575240156896 3.1074929579048396 4.75825266318858 1.6791258829641484 3.3737865671993053 +3.9994425905251942 1.7302714236803634 4.704185848838192 1.0271070222300964 4.320884918801876 +4.429634727969861 4.7612255738155795 2.2256527687379246 3.8541630754304466 1.661926083811326 +2.585207099466122 3.3149580717260974 4.460134717082276 2.266543051549439 2.3117917026863615 +1.5458385395053091 4.421399833576724 3.5846725411356886 4.316464862288935 2.96721633138882 +1.2930947129765542 4.890053904333834 2.5300389593336075 2.3036396808391237 3.604077143679424 +2.195729045420704 4.5457326640077795 4.496595330694019 1.382242432332124 3.9015011191729116 +2.3464094216455806 3.18523571125832 4.605070271015933 4.553104750166595 0.8404343873870332 +3.7258589279916476 4.920907806576297 3.9063663776646447 3.448259232438107 1.2798452948360735 +4.840096335464637 4.446857148380307 3.660643702491213 2.090205184883362 1.6189237770337088 +2.594424895745508 3.3932619683862333 4.724638566334569 1.5861076617656367 3.2385979848631234 +2.341722690566132 1.9964460878969197 1.9383212837287873 4.888178180096117 2.9699952258205204 +4.741882942125615 1.1762380565945088 1.457435456432831 1.071683293707395 3.5864506382719794 +1.6671827370164265 3.8818366899812817 3.5039776195967347 2.476711109383705 2.441304695114503 +3.8863563887096118 3.7512589220109613 3.73007757054789 2.0174452011210176 1.7179525483310347 +3.1209675396145924 1.3486768561455005 1.1095377265195752 4.950648954911591 4.23026591783431 +1.835109751548638 4.719939892219673 4.15526473032976 2.688687216836242 3.2362160841960006 +2.261186068479392 3.196086353129612 1.3176737483747756 3.2509081492109706 2.1474249208797835 +2.9746811550825187 3.023099614402957 4.244285058257164 1.8561976100932274 2.3885782397236035 +3.164901975897743 1.7646506669490138 2.8539346571730757 2.6494546244743766 1.4151027566876868 +1.206055708943059 3.75675083784216 1.8939552159317108 3.125414872083133 2.8324086084670377 +1.742993236823854 2.2497136859246267 2.7494934011220136 1.9844665367626537 0.9176228619255316 +2.29522518369351 3.8803672866225636 4.024312964493385 2.6429062882694656 2.10260787870548 +3.0404041203442183 1.855112817913783 4.1253239901015375 3.452915058465812 1.3627359402909776 +1.1911125959192486 3.078615687494423 2.033097305017012 4.8586656675422155 3.3980147869026704 +4.997982518915055 1.5049853423989772 3.496084360911041 3.423172233538872 3.4937580702543256 +2.1625455221999625 3.0951413527292666 4.37981855210386 1.8510931677151032 2.6952155855835924 +4.267351923182341 1.5336870787054644 1.700272565522667 3.3264537686023155 3.1807843037808077 +2.879137667531795 3.2968132058158552 3.395248042662653 3.922632970017885 0.6727463986394596 +1.6221743270046627 2.560454673667718 1.9956809095382777 1.8264101598084252 0.9534267647010177 +2.208456571812669 3.3794397958196765 1.1114870230444271 4.714875129564838 3.7888794593017336 +2.2305009823870914 2.7244306890631638 2.7917082598574754 3.644915639418116 0.9858647917812289 +4.380987938237668 3.6211531894993394 2.9722278018486104 2.1628107574201714 1.1101823261075223 +3.048349677717458 4.2301709720950775 3.484502636452104 2.707258731352211 1.4144997913959985 +1.1598179303237641 1.440784588277972 3.146344125510821 3.546211736199065 0.48870887955866105 +1.8894726295825626 4.128733533751163 3.2812737530211593 4.507978847966344 2.5532518064034444 +3.190212684342649 3.3574863096315437 1.8572212898181033 4.45860405863823 2.6067552197380475 +3.4480168667821567 2.434289948739912 4.618374974181589 2.133223263380935 2.6839562757352895 +3.0057666079305845 2.7582120439554854 4.089051044635791 2.7480649526868053 1.3636447341391797 +2.9580940650887664 1.6572551718761854 3.1587290803122157 1.7329752970950647 1.9300144238975394 +3.42997909118661 2.806217531462828 3.877488682399493 3.918543209090111 0.6251111561561159 +2.5127534968720315 3.994890518062396 3.8992488012150566 3.6368822391378015 1.5051798438988229 +1.8504782121826038 2.5310542250993326 4.105504082325587 3.3292034417577723 1.0323886835410543 +1.9571080897918587 3.635904614454483 3.8183633845959815 1.6236151152431395 2.763200632789194 +1.676757077571434 1.6809532220457255 3.8925429899078177 3.319546370411015 0.5730119838041894 +3.480560889328387 2.6619003975550237 3.745077620239579 3.7999922420894383 0.820500223329353 +3.0329862602369175 1.3105185055266113 2.478544557280755 2.3608490354759324 1.7264841157304844 +1.4318125047975991 3.2670840190774584 3.2928132995499335 4.693762582336635 2.308869945247601 +4.9446715532728645 4.528985460477612 1.5507013485555543 1.2047893647932635 0.5407864904504796 +1.693368913218932 1.4914466509097037 2.752458446882657 1.5679208930726385 1.201624657038253 +4.017469821507563 2.2881946650634344 1.1131472647144367 1.660262343476834 1.813760589522236 +2.1705070478599655 2.3459684715612625 3.013612048186464 3.2649504401194904 0.3065252003779881 +1.1146382507792207 1.5199365029393488 4.327585304077827 4.047368711129503 0.4927352353623812 +2.71503815138951 3.5883843307321945 1.401908769249597 2.7317225151903246 1.5909551055467825 +3.7346126378958706 1.2504885214564543 3.1452793011270765 1.8967238372166584 2.7802452000383835 +1.8545401156686152 3.3389320636555264 3.0647141382958627 1.3766352143598937 2.247894550170269 +2.956685737307994 1.3915432536183983 1.4619858361534597 4.854461487483244 3.7361159027947033 +4.268155670374495 3.4336940856253917 4.7154729412051735 4.330714839084004 0.9188933200159141 +3.0088669686196283 3.7669368075636975 4.648423949743375 1.0674873806440206 3.660297336642167 +1.4686954224008524 1.320966564019002 3.485065858456268 3.264293851260207 0.2656390309427105 +1.43088140630435 1.4269871341683462 1.4832378503652381 4.274802958853373 2.791567824768698 +2.7926758556127194 3.682904936534474 4.234680579825916 2.541537383050542 1.9129144521659942 +2.6478415089688623 2.7296283362454234 2.528032171404593 4.744987946679144 2.2184638817522258 +2.733084328305905 1.5535383946290064 4.4593162555886305 2.6986830982338343 2.1192351744039226 +4.749219078840245 4.043824060282892 1.2140629683709547 4.586093900603677 3.4450217328980393 +4.054382841339155 1.492862986402817 2.0723285040265518 1.0851117532005587 2.7451741074737885 +3.962289885895916 3.6694355883075755 2.4390904555142994 3.4037272700281713 1.008111017463568 +1.316963847912756 1.1691888209913683 4.902307300449586 3.1795077041183375 1.7291257639919453 +2.1755333095059433 4.552297827383864 1.1382436204796043 2.1192230126580474 2.5712506959303387 +2.9373407446594197 2.7007521345426895 4.492900111901669 4.293035195606782 0.30970979190611386 +4.450600315702901 4.407306187138454 1.527131759385961 3.2034464317622082 1.676873657253891 +3.370560039182572 2.9761459033325037 3.52876981033111 4.823501306269796 1.3534741065620661 +3.501118565525869 1.4579291032857737 1.5264397247248955 3.225695894300643 2.6574601988459228 +1.9040453459752071 4.1412608371401305 4.805807230095381 4.500930321820284 2.257893505705637 +3.673817166190341 2.465851224954409 1.8142327483546783 3.5279938722309487 2.0967019113111114 +1.8281105284168695 1.7964875386800405 3.1840595120873014 3.7376297580513613 0.5544727501839972 +1.582092697791197 3.6565433197822594 4.431646160165046 1.9532325618440187 3.2320085623991917 +1.734072663475322 3.8104385354730503 2.807580186687461 2.675947958067839 2.0805341328630624 +1.5914599896803359 2.3345772124247395 4.140890602248314 1.361588172968489 2.8769332978260187 +4.676596101004787 1.6881867369762715 2.9710393698500885 2.7145771283550326 2.9993938401493696 +4.12994401073488 3.159520007711846 3.0326507660375257 3.4763130570234675 1.0670327896021488 +2.6240993156875887 3.803434357761366 1.6649735621814798 1.8983801185573057 1.202210365128491 +3.0855431323895917 1.3898061778663564 3.1594759056214246 3.7453710740277395 1.7941006012198983 +4.782569159591278 3.828843612582541 3.923539651156159 4.14828579731591 0.9798485848490948 +4.564879262258279 1.546408677070501 4.973516969514984 1.3368607359929574 4.72614359012276 +2.043459144984304 4.749810618104686 1.8721963302546012 4.467288830858156 3.7495124193353027 +4.76508531260672 2.625962154211035 4.529928844200902 4.7803749390277535 2.153734229936171 +4.450150422933627 4.844308120900719 4.985389100353416 3.575517808318671 1.4639321538139798 +4.035813470791829 2.71098946145977 1.4981987796879395 1.087546064215013 1.3870091234119404 +3.2442140176205276 1.3732646541857805 1.520320815101019 1.1156753310554182 1.9142072741203822 +2.75563791129616 3.2264110508256705 3.887205354124834 3.010253672865307 0.995324871670744 +1.5950009023111398 1.4455971788476587 3.1255991507487244 1.2609165628817958 1.8706583402852748 +1.4330894320393468 4.945065923664492 3.178640028837008 4.032892401903482 3.6143776773626417 +3.3488237717463787 4.93773390390839 1.97596019137664 1.3688011556182773 1.700963698257586 +3.3093781272891247 2.8047001402340124 3.623150905148816 4.093030380177336 0.6895553579453045 +4.891491615940598 1.794034202022654 1.7683147767375051 3.229168104580016 3.424665659083201 +1.6570024404250914 4.490485076288808 4.752605169105041 2.512321338631546 3.6121317097833225 +1.6558832616302106 1.4077178342937673 4.3100649469461825 2.2832784305364537 2.0419230304850773 +2.442936238591012 3.525036860434986 2.782345014106731 3.77299851327803 1.4670842209005777 +3.320913820808693 1.0909471832791398 3.88612269441996 4.941635545517545 2.4671559706121164 +1.8932024593079446 1.957326319964091 4.196511563345097 2.421172813632635 1.7764964243521733 +2.524213026172375 4.798445226160116 4.657776813589021 3.7105100380289673 2.463624655571749 +2.4326440974230756 1.732840863870695 3.9431934693666513 4.33224689182607 0.8006791687172554 +4.1762925981715 2.5848025665199317 3.1176122657642846 4.661329782455951 2.217183865218894 +2.474637099359589 1.8948003460166598 1.5519434160110976 1.8451990837455554 0.6497765363458822 +4.266967465482617 1.1152226572877488 2.9785996589581982 4.207502401636289 3.382853423804384 +1.5934933149144626 2.7475807544338573 3.0637558762596426 1.4009453270135301 2.024069351761592 +3.6394921224502546 2.978345877074152 3.7268578105026617 4.711973322571235 1.1864092590219637 +4.038338780392655 2.2170660860658615 3.0108105191292007 1.420746147422503 2.4177135755236585 +2.492955848384282 4.125326533472499 4.2997034366112405 1.4537785529172766 3.28084173607382 +2.1281045400802525 3.960837372445317 2.7125720616171973 1.4839502681635839 2.206449896593631 +2.317528725398197 3.223476173820589 2.8609693057520444 1.681356933358201 1.4873554142866034 +4.901083306471008 1.0729021840338988 1.4982903361218742 3.321177287542289 4.240033908336425 +3.284025496321763 4.164345919539723 3.703134720180066 3.6743730556195446 0.8807901457685258 +2.936546959965274 3.034186954460079 1.261469849483099 4.392317620658499 3.132369923045316 +1.6046291843329201 3.4474170045904278 1.2381390451202257 4.90887029368314 4.107326971360531 +1.2181818984568973 3.8431032170043875 1.5660149513808697 4.671029816384282 4.065873736413522 +4.76446466531195 1.0279366410351845 3.707785292270109 1.4455605441974848 4.367986090522482 +2.8343845015841747 2.5929339898679133 3.9687514584252157 4.58053543032056 0.6577066047076673 +3.8166391289535504 1.7353388861185466 2.0797863912179415 4.226669857274017 2.990137006501541 +1.858764946353162 4.009060601693133 1.4770998632211958 2.7848554978029787 2.5167431742540516 +4.218220922456474 4.910798232592928 3.348804542805205 3.582806950976889 0.7310406675048882 +1.8504623380681133 3.616391415271894 3.1900670950806007 2.5128383443799933 1.8913339965456395 +1.8615808068752995 3.6051472072053854 3.816113413095915 2.661110137248972 2.0914244809643936 +2.798894429704708 2.7463262438803517 4.317192561475704 1.144771572207575 3.1728564964885875 +1.4474783348468239 3.84216721212376 4.52025956812394 3.5865714802428683 2.5702739667990424 +2.2204251698618895 1.387265208430629 4.390261197906207 4.811876738619424 0.9337639881163967 +4.039693690939801 2.366914632311068 1.9234227789911347 3.287774429276044 2.1586211350355082 +1.997765224387451 2.6539659245345346 3.1315362677551346 1.813275132391949 1.4725528105580994 +3.48189012927063 4.23937692559484 4.75878025905385 1.5963119520033189 3.2519212843647627 +3.696460569972799 2.7458007040584462 1.2786101296671188 4.767876221164826 3.616452963600658 +3.7255886401146836 4.69869844967519 2.5763989810019248 3.9272730799205022 1.6648734283998778 +1.9181670507890138 2.066765731185653 4.046535654107629 2.752385591764249 1.3026534273086594 +1.9176840073198318 4.7379832242917175 4.620713849104698 2.226608301565406 3.6994363146310065 +4.655137797799805 4.937652416634009 3.2599184081134642 2.9304182867705864 0.4340332243273629 +2.263409835554979 4.498471809259146 1.6776448341389267 3.178109014996401 2.6920057177381063 +1.9723271350606253 1.3739685948518003 3.4020549611480915 1.3071075458947798 2.17872385017408 +4.349025841273397 3.7639033006924367 2.098653695052119 2.6760594081442006 0.8220497217366431 +4.093690604820807 1.2862992395790958 4.410424502342099 2.4662424203572844 3.4148631371615075 +2.0550168563895532 3.143200130096054 2.4826783977170233 1.3474974290487518 1.5725071283785115 +4.413988635383086 2.2676591985471677 2.5005846457640244 1.0235464968112638 2.605450391945736 +4.473509812562784 4.131857504596433 4.930789421287429 1.3325040080795465 3.6144687319775444 +3.1632882673558322 2.643749680468089 2.858246919808357 3.899545848820155 1.1637112196874406 +3.941586606933625 2.690755145898198 1.7738095654367787 2.395128662043948 1.3966448237561222 +4.761858516816635 2.261984436574068 1.3878543118987121 2.8780661731281127 2.9103439330115974 +4.342942338148083 1.0379471045601787 3.5000571521870665 2.547847649148962 3.439432574090505 +4.423792140493616 3.354356604860835 4.282021257736457 1.121001047026839 3.337025792137192 +2.376887774999628 2.9043373972738 2.7194561818556853 2.9719568372878955 0.5847731911013555 +1.5523532821881414 1.9904886904244554 2.195697272752298 1.80669770600492 0.5859038307436207 +2.8324494334477626 3.234061875381358 4.680087890814544 3.7788296849907863 0.9866908872998296 +1.1993535789251184 3.8850479821915083 4.799662885869216 3.487924359021344 2.9889149185872514 +1.9637837246977665 3.2946642023464605 4.139181862957327 1.8389411794078683 2.6575082404467714 +1.6516593310668743 1.8160077458037516 1.2039632448090956 1.3492479127005663 0.21935823702532706 +4.172648588263929 3.849520114658277 4.838889159256455 2.9482223910843968 1.9180805089268005 +1.4647992791122473 4.1337848021181856 4.420199926768396 3.7090037991340177 2.7621157930067697 +1.8430844264636108 3.9830283718647945 1.8438628327795907 4.69149566004309 3.562074228363005 +3.1091352625778743 4.712697898931977 4.316255316291107 4.257692923930508 1.6046316345223652 +3.3630008981755015 2.365723239483292 3.0090410760664876 3.468851941235788 1.0981751956105892 +4.803052258566337 2.12194104150313 2.965389013054738 2.5562028739479374 2.712156089663588 +4.758455599192251 3.9667093236677378 2.3697930703262298 1.3286505652834988 1.3079907800185715 +1.0785531267914967 3.5840821298111925 1.3774949077413288 3.377662246993017 3.2059858031473016 +3.1679743591305662 2.9314642357046856 4.591819615080138 3.7382281486552023 0.8857513364575849 +2.8824083835577916 2.6155032408219494 4.817417364548033 3.236362072961427 1.6034257669979142 +1.6038214659519459 1.4289450442529574 3.733023883011524 4.4744386918636625 0.7617595957068709 +3.685565491769556 2.794768366210577 3.82388979661525 3.03649198647661 1.1889132980647772 +4.568555833843012 4.755767797767389 1.3770556261818196 1.542488281631905 0.2498325097454065 +4.354666417646373 2.9556962159480795 2.678204884751957 1.1385540529105205 2.0802986105917083 +1.428769700170888 3.4152096688757867 3.5458989394328673 1.7324181608672982 2.6897316378209744 +3.9095798818167755 2.8317385303008895 1.7072060129950186 4.419117203349002 2.9182536358933486 +2.189169974282703 2.073632978775271 4.598477702373145 2.5916076421766467 2.010193084219519 +1.8390104541032493 3.120665974682401 4.384445258718252 1.9370022509317937 2.762719339671303 +1.158509659805408 1.3721143935705333 1.0077428057288693 2.6772096347731824 1.683076491299829 +4.21567548187038 2.7181893034985674 3.2573167055397128 1.6051323659430685 2.2298380987020145 +4.779774979593245 3.0822270891375245 3.823708283670669 3.23575542947865 1.796484733902075 +2.995118733569231 3.745865392063702 1.0339542076628807 2.537678047334259 1.6807158984303823 +1.6218694731780339 3.2865865626787256 1.632855473040514 2.1053709201468305 1.7304779212199548 +4.191961258240072 1.3287266154260502 3.3851250535748543 4.380195701661985 3.0312172826267143 +1.326694148253916 3.8254644767170634 4.1107608428864495 2.0058633291948214 3.2671771757211183 +2.2445466254777338 2.3790207220842374 2.4203447399565126 2.388367407965354 0.1382238489530951 +3.7110626531166044 3.5596008111920794 1.8623287418470662 1.3154968696473657 0.5674202904484466 +3.0457790195467846 1.8773216555368095 1.3362066985792018 3.57405935937573 2.5245350350001563 +4.084045012280601 1.0557025468128476 4.744524790634758 1.4170490102027578 4.499216949372063 +1.145492817633913 3.413166056557919 4.328427370885233 2.498798508922777 2.9137404982355797 +1.3223946499795227 2.4299328857351847 4.409013764801059 1.6309430950508528 2.990705199411524 +4.124557037569181 1.2473969786587769 1.5094622437597285 3.4288301849664715 3.4586158066951485 +4.517124254905697 3.001377029671719 3.0706855991242987 3.106810100253217 1.5161776381368768 +4.459078509046989 3.2673184606988728 3.8189250429158075 4.954644712494677 1.6462536805447212 +4.31870159771332 1.0323829410991592 2.944533613691023 1.7915953155656323 3.4826939331636035 +2.8853233224682966 2.531849516118608 2.3597218763638828 1.3318170323322351 1.0869830266195801 +4.822503343163868 1.3492113454585724 4.737523890176659 4.611400845683612 3.4755811490563473 +3.0131428978055097 2.0073395286140787 2.046509010631912 1.6573206058226972 1.0784748638307595 +1.7033625995629653 1.955089508232959 1.3742037792939423 3.8573718865333952 2.495894686351914 +3.6120984100181937 2.7930609192557614 1.5578590569384243 1.5389990828219702 0.8192546062721251 +4.428375661298988 1.500908255783707 4.5218702208949795 3.8087585587700032 3.0130704693075163 +1.0244650801316029 3.2618708137266266 4.66771216632649 3.693390415364662 2.440345731883335 +2.94294186244557 3.6388549871704092 2.8995292695710284 4.444131404713241 1.6941342429247372 +1.913198350789349 1.2326396234249013 3.486811096509823 4.449390523051701 1.1788635772614264 +4.1242658989009 4.808802702329537 1.3830152404123357 2.115758797850011 1.0027481020748512 +2.2598982742113454 2.0136837160369665 2.185548546953967 3.5378293165705466 1.3745126003539632 +2.594939619040714 4.056659202359293 4.603778251895921 2.0575430476649657 2.935973067914979 +2.768543929535318 2.4928126554675085 1.182501128232739 2.6934678353761616 1.5359193095976413 +1.184891416487745 1.7839062277478792 2.3190240711064605 1.6471544011954302 0.9001264341498759 +3.3550701969091192 3.133027313355924 1.1706860737755522 1.7036838938795427 0.5773990980008745 +4.353096834514178 4.3999867857043 1.522365159513562 3.442248039814791 1.9204553995332347 +4.8286584972555655 4.157261376997423 2.238804596313828 4.6450097737602505 2.4981187820159585 +3.872340079788807 3.238899529460151 2.1221870814553876 4.762281323873089 2.7150220145788446 +2.4018862408748824 2.951338667786993 3.5613232720484747 2.302109195646882 1.373869738966371 +2.2955356132337674 4.947371484647785 3.9660702058530863 2.869675950264833 2.869549416303031 +3.2528631684812943 2.9728906918138747 1.1386058247566337 3.4089366760659954 2.2875285270567405 +4.701637092347467 1.713734843922837 1.377557623909087 4.8305922342183845 4.566290383466085 +3.77238502366519 2.5791165361407207 1.3986451892717828 2.257446110508458 1.470179820850462 +1.119804326118918 2.803861095594093 4.759898889535592 4.96262600170991 1.696215046751355 +1.3148182766607186 1.2358880062356512 4.34554907703062 3.1091848492937015 1.2388811449113597 +2.389893680512149 3.1525070083717215 3.4726129693924155 4.835094366885239 1.5613886916277604 +2.350328332561305 3.681456236227926 1.4266329262399968 1.3066977006821365 1.3365200912255333 +1.4971395432149026 4.847175314441386 3.0915233764280665 3.1815101702430555 3.3512441408465183 +3.5369452187872956 4.735661497931485 1.3301475531110025 1.0424083071430696 1.2327670467511225 +4.887057366473619 3.969696918430433 3.575003627814236 1.2633715342535634 2.4870048507418905 +4.877310630901965 3.6173732119059476 3.3519735047110166 3.5434068929285045 1.2743975211490224 +3.456463320885085 3.1802050125362755 2.672190718475704 4.93151998214997 2.2761562720135555 +4.111767907084036 3.344557671989388 3.5003424706205672 1.0337801072978863 2.583126291336518 +3.6624546903458453 4.469843462655508 1.5055204866646146 1.0714100912386941 0.916694313862889 +4.330961238782958 3.296454939783806 4.976314183748139 1.498580066140034 3.62833816994011 +4.980984010331435 3.137376601559233 4.078940863765558 3.8318872033566116 1.860087037963872 +2.958169744822739 3.808224292453487 4.411765885058989 2.8806214790647746 1.7512840791702213 +1.9260140190897164 4.262176422787304 4.089046185747247 1.9283207351414626 3.1821988073257867 +4.784459849479993 4.135327974441711 3.2766996132797344 4.7875340154235975 1.644382188510968 +4.141727449769469 4.596565913508941 1.1923937462440808 4.425467972472127 3.2649114812498303 +1.5748766507450904 2.098502799174917 2.6556372638434516 4.8634537020060415 2.2690609881491506 +2.040082070769032 3.9530206995259087 1.4468167234216658 4.994499628112747 4.030556808882315 +4.308567926144335 1.409833895929634 2.1586317928913044 1.6383968958764936 2.945047253610164 +1.4172978249064023 2.5441077474236873 4.362483652395054 1.5533303764984026 3.0267214488558896 +3.445266087166464 1.6244238070346437 4.663926734932582 2.333476149504822 2.957442567529628 +4.608866369829576 2.087282545991208 3.3536103212148056 2.9088640730025515 2.5605046779770197 +1.2539482387192682 2.6709830248019872 1.6617064054757242 2.7467578820237426 1.7847476829309885 +4.8577047439415795 4.639112213600644 1.1788759981311254 4.06002695868977 2.8894313544102155 +4.500402447533373 3.3263351150660374 2.9865251545461438 1.3039842136804642 2.0516769041094487 +1.8522519329518348 4.214590936399118 2.021104057064452 4.767047536694282 3.6222715470447375 +1.0189968880474454 3.592494847338583 1.6248326135211686 2.4974332307771894 2.7174111915040093 +2.8768274488457717 2.7055756706055965 1.1276147437002253 3.714896215912191 2.5929428431806474 +2.7109083036264647 3.742104324056661 2.676258315413388 3.5656801506700417 1.3617769397307282 +3.7744225703449024 1.4985986494464258 4.847391650879096 2.701966791861556 3.1276544477649937 +1.0068581551909461 4.565083274241271 4.203535630909647 3.3534407293475175 3.658364025012085 +4.316610167168454 2.3502662944312376 4.67754729001478 3.971852737419555 2.089141696346557 +1.1069426864332934 4.619359646237054 4.948418076005426 4.368265547538405 3.5600070022127444 +1.781388824245075 2.204698122505048 2.070259953601785 4.531583638492581 2.497459718153179 +2.6581829525590344 2.60970340091517 4.523214438153106 2.9139036417194975 1.6100408399930004 +3.347151556796837 2.046837104050195 2.722621144144005 4.637294599323003 2.3144744794421217 +4.339082761799769 1.9764576234496523 1.9163396320405477 3.9075442766360253 3.0898047642241915 +2.8650755534980803 1.987738438996809 3.909931674043526 4.6218747418605926 1.1298598781681704 +1.8869085249138284 3.32298584507759 1.1359027738351957 3.6278357681585054 2.876116847015411 +3.292997044375293 3.886454283457232 1.0421858188042843 2.1784673127226797 1.281923214564811 +3.4647162418887585 4.727341002457107 4.788946759335447 3.9382972456575405 1.5224407644045594 +3.24871788606807 4.122976821772443 2.6762682806163243 2.51014104445638 0.8899027729213373 +1.934406696094435 3.275402686054655 1.818043699380722 1.375945068182673 1.4119920130073609 +4.518660366678861 3.1315815521856396 4.489029658437671 3.6632176780700174 1.6142964611664943 +4.985414383402165 4.851055858072517 4.057847739644272 1.323585835670968 2.737561026324066 +1.8373826137978222 3.8127112214082013 2.6076114607051624 3.272290752001463 2.0841597031710672 +4.456977881688915 4.342685134898792 3.1806296099131557 2.9868677799783843 0.22495883780928108 +1.7013013726612503 2.277239605320078 1.3222094971202378 3.5786974571538663 2.3288286243549354 +1.3883180485100892 3.3951963150189752 4.696026680647579 1.8599658743508014 3.4743058693210127 +4.5316758524583545 3.674757018416339 3.273513148565724 2.054933380395885 1.4897135763390172 +4.071343594957627 4.673565975614279 3.5830270275394285 3.9867160455582153 0.7250080130817439 +4.870812366621756 4.6556733888934545 4.839102770270287 3.0190505892882684 1.8327233073313007 +3.3349349909875308 4.0710225451626965 1.7130382977428447 3.31029002410452 1.758703489726716 +3.2746848185047446 2.091445447410206 4.636178119011831 3.5227932602726786 1.6247095903507804 +4.037617489688895 1.3026476818962607 2.9091826697706202 3.486486070589182 2.7952350645578905 +4.8718843924770265 4.687850842961571 2.3177829309651203 2.2117274870529737 0.21240551906826752 +4.228571835536987 2.7794052622294454 2.6059303423990894 3.098597153304048 1.5306222080445533 +4.530510859116074 4.233695705717022 2.4857771996529494 3.4094431977177075 0.9701845758762961 +1.9465582708354323 2.765833893409891 4.832343757169297 1.1852362113482138 3.7379949166003223 +2.8994889279399803 2.263247119464041 2.9774912248575878 1.9429957931908466 1.2144893729432509 +3.783294152333799 2.7665105651020943 2.8591452763201275 1.5528957449961007 1.6553358273619325 +1.8310109021966512 4.032008778786459 4.801885826354158 4.69127416317165 2.2037755313971616 +1.5608117238700348 3.6849584112698173 2.4906849397741544 2.9472886472210034 2.1726679670961406 +1.9018182186242076 1.3078637339369967 4.09818695956084 3.009992243537545 1.2397377423717768 +1.0860853726518531 4.086417687084111 3.9135092488664913 2.6373512423746233 3.2604559887475446 +1.6184727495249134 1.2721723182972346 4.852615635989621 4.7548414088016315 0.3598385584823906 +1.3582196503376416 3.611794873081123 1.6967552407827626 3.766942005038234 3.0601102142671057 +4.371069633923765 3.5130814372541708 1.1522812969395755 1.4024041007369243 0.8937030617625689 +3.3620262399849694 2.4579674571569274 3.296665443665686 1.568984740091615 1.9499238180787262 +3.1221175132138215 4.450286737493705 4.911618381511078 3.336416130394571 2.060411517208817 +4.6008074892288695 2.8762777121599155 3.7556745297573806 4.477444993628405 1.869480022496654 +2.5208594834557054 3.49653187709715 4.874951158890433 2.6871806031469068 2.395470021580809 +1.2452199023323414 3.6325701491343367 4.444226081889408 3.6074335804098783 2.5297555003276337 +1.1406871286918396 1.8050361989093497 1.3378412911135404 4.897156188286529 3.6207847525552292 +1.3100497898148902 3.005547409652296 3.0862946310368224 3.332412317598367 1.713267665752411 +4.322273062071001 4.624599509137694 3.1917445955614787 1.6078435611069621 1.6124961294657603 +3.8509808618531736 4.87751227247924 2.3198833383130073 2.3711899213983036 1.02781277598103 +4.135811344114083 2.0930035496274244 2.791191575142039 3.404067924389569 2.132763724532661 +2.089639728824529 3.5930395198140785 4.8706109538128075 3.40869021526353 2.097003380385422 +4.8430508978464095 1.1172996982290857 2.4121517969841353 2.370498542201501 3.725984030438659 +1.6225195200635771 4.685944228150609 1.4182368385264401 4.082675254711354 4.060025001863916 +1.5482385674195291 4.653450792215953 3.680290883850268 2.3241348408890556 3.3884365382703225 +3.744675880526033 2.0987753693944207 2.4020702386161084 3.351987049211244 1.9003500834305602 +1.9073315119463459 4.333249573895191 1.6098688062093185 3.4456124326891793 3.042208590062666 +2.686808871610225 2.7603501605119796 2.2094876954277947 1.6064845577567808 0.6074710735618767 +1.1544659560016486 3.2744636685480537 2.3781358663851715 4.789578587762907 3.2108326489693684 +1.533280865245532 4.9747188204746084 1.5693535841744226 3.5684789835585065 3.9799494421605233 +3.6017801679410715 4.250048635667572 4.374585360934288 2.3113592266936616 2.1626729034373153 +3.522754430800398 1.4032574201697487 1.0506848613012534 1.0837734245821973 2.119755276227012 +1.0066622555813565 2.0713579098974026 1.0294477168183636 3.225588392790054 2.4406168697640496 +4.071562140318797 1.355439615192846 2.757387758067664 4.087497709780294 3.024320428648649 +2.8659923151998714 4.1852112390359375 4.410588569980494 3.610508343255251 1.5428761901733736 +4.581165853042007 4.884234760431939 2.8470367757004005 4.681991123629606 1.8598140287703024 +1.003307848266478 2.1053367991523695 3.684609557371998 3.23553236048829 1.19001602398942 +1.0484003616196858 4.222537175233702 4.5580899561442125 3.271056011440044 3.4251424621992754 +2.477479037464467 3.9544721929630744 1.8718452398003977 3.458631445598532 2.1678097804699035 +2.4917703900154375 2.8482990615381447 2.5471384989589203 1.8281666516347452 0.802516797869355 +4.82513156920027 4.071744646172221 3.834527786952337 4.514504380776447 1.0148694615261165 +2.6244868475669296 2.8248300853371044 1.1163695223315977 3.8922839970034993 2.7831346686089797 +1.6364841066125124 4.795757297857531 4.286506557021976 3.7913421434753354 3.1978422245887104 +2.77215561126999 2.7376554227650103 2.431674999132613 3.440851660869781 1.0097662093781181 +4.0676525753836605 2.9319232363926133 2.548688582754979 2.895489342344043 1.187498167702415 +1.6730225396109524 3.3272689215138507 4.052577152214843 3.107097993879218 1.9053771098881898 +1.3572100433524388 1.9433233744674951 1.0303983996862103 4.2724955489872585 3.29465062827863 +1.9027227336796462 4.403798710314266 4.77094588919257 2.956135055716076 3.0901325865086218 +2.9208210333546027 3.587068827784967 2.610461949020001 2.617776145110177 0.6662879415446228 +4.16241281034765 4.0367453379497205 4.92377951695554 1.2815690763042253 3.644377753143646 +1.8999439515062524 4.8534122013629055 4.254894011211359 1.3613939667256556 4.134648378078853 +2.19662080792876 2.1490499970438535 4.44730605689567 1.8480766180286365 2.599664720290153 +4.267161205630228 1.680604889302804 3.308190717740835 3.920081182612073 2.6579472377256916 +3.3192186341178633 3.8524115768645215 2.8917167207472407 1.4032245769212377 1.5811083379789543 +4.828861267754665 3.4599205389309784 2.182323166026992 4.475557569796424 2.670753217664273 +4.21446154579324 3.0652941789072505 4.317901256941639 2.7392773680619182 1.9525980179385132 +2.401347138412727 3.209376198113815 3.9866654298178608 3.4065919129943834 0.9946839931563096 +1.762384069037851 3.312207467973845 3.7436749111244696 3.3694004869585297 1.5943757124574693 +1.8649522760871688 3.622649815517481 2.761334066690199 1.1170373160927363 2.4069093136520014 +4.590772089284698 1.796622340844043 4.107130404110405 3.7977970153365077 2.811220368829402 +4.09172980011035 4.81019034938622 3.044970956917509 1.2892214806365763 1.8970613549188529 +3.651622993563194 2.4746832963906975 3.5272582778919137 2.281952109443583 1.713468559371881 +4.046373713525334 2.5629950691983043 2.67636202349343 4.4260415948676695 2.2938593690394007 +1.2785807860374034 2.13884437247412 3.3751133932081623 3.968846269392286 1.045261769324237 +4.21294079904584 4.647778490193509 1.6749844571701082 2.530440641418853 0.9596296685764035 +1.479174396359138 1.9191180289936565 4.0032163860996555 4.342699106757458 0.5556967855952376 +3.565186410088573 3.649610972282208 3.201623569917907 1.3643676059495151 1.8391946563208073 +3.0632786905037515 2.3469473414979194 1.1147607793914953 4.270266692869347 3.2357917379773076 +2.6336040501913223 2.6478553223239354 1.3773544498072723 2.451831959071658 1.0745720155822018 +4.445913319100585 4.073205677842374 1.042637706739133 4.961144753090373 3.9361921266824083 +2.314943518765918 1.9860598903816582 3.069128462341959 4.888999930827788 1.8493503191196536 +2.2229758487049054 2.389405185779887 1.406099577742164 2.348070062893891 0.9565600447103138 +4.702304365721272 3.807998809367355 3.638473506896838 4.44699377576841 1.2056066743767007 +4.254855875235433 2.8238113895168935 1.5708468040922274 3.446737947324955 2.359418551542822 +2.2789418101337886 3.2839399606254855 3.5622528127924107 2.8584742150782105 1.226917110929788 +4.500622864436863 4.683932807845747 2.9119819550070036 4.869842600449137 1.9664233629418804 +3.542727037267846 2.9079378936099816 1.8106474442808862 3.4610467482193683 1.768268961257453 +3.4404410425589846 3.374501404960594 1.7926676593770927 2.3528279584024308 0.5640280103069024 +2.5669966975258123 2.470852218148789 2.0083336171634385 1.9463501199076236 0.1143928094188636 +1.9418424036203201 4.739165512408089 4.8162117373115585 2.334884190761786 3.7392516588516456 +2.726330348182037 4.550970127765719 4.161966967772306 4.651785264846513 1.889241194074453 +3.6246304981523156 3.917196137214293 4.564639131669416 4.0986405877942 0.5502265861020944 +2.0584898171290495 1.3207399127565895 4.310127915819054 4.774857044261705 0.8719220631596841 +2.4343765904248564 1.5511472977586145 1.3503980673383134 3.9483239607897755 2.7439593530679875 +4.719649736677672 1.2212706939622624 3.6774506828479523 4.571892296258223 3.6109114813728618 +1.678858974529701 1.52172956180216 2.084614382291418 4.490012141259006 2.4105244307391698 +4.204946060048922 2.9707034669705314 4.371295037701753 4.220455708069881 1.2434256238041186 +3.812676318917569 4.267443770223958 2.180856059590102 4.478296164301202 2.3420171795916995 +3.037130808595029 4.067984639813393 2.683062789848063 2.515963289085369 1.0443092762648054 +2.739412633516221 4.847820935451805 1.482923789789227 1.8330126566357103 2.1372757852838618 +2.8493074321667526 3.468804080879384 3.7074829703597403 3.6655002275685518 0.6209175858827423 +4.662200674829925 3.1416626156110805 2.3707145323146346 4.02170748932645 2.2445074590287346 +1.2976683140787992 4.8835015445484995 3.7433783687584308 4.862890572029779 3.7565286542250993 +2.21846775416607 3.060377230801521 2.858392291063734 1.3755358312270913 1.7051905604148292 +1.0797795677994504 1.4816756869295373 2.836723748775302 2.8168026511135884 0.40238953851196546 +3.015996210128733 1.4458322473041152 4.168610420676488 3.368582798834638 1.7622312747942688 +3.926834619441408 2.7749764481330246 2.6229844250430046 4.983117346897847 2.6262148913660837 +2.1781862726681083 1.3136607088413594 2.1836533835063574 1.9593158465448215 0.8931583179929113 +2.5948165833491594 3.1554328286375086 3.6908477321032804 3.777135532048411 0.5672179113009191 +4.23657188121987 4.985595206116633 4.996191325471277 4.096789958742956 1.1704523739615265 +3.8014101383945045 3.9241749927028002 2.186520022975734 3.818015396306295 1.6361076867530338 +1.4364196689770168 3.0261645238675627 2.9672365407416508 2.3396551136883286 1.7091363758440248 +4.256050139959986 1.5394086386873562 3.092344664392137 3.803465847788412 2.808172783842142 +3.1794231451521098 4.960365057354553 3.860442587826794 4.806610948240138 2.0166776293911157 +4.406159065049084 4.125710649991915 4.276104740765867 1.3777985172890594 2.9118431067886323 +3.534927858252031 3.7205065871140786 1.4554118690079711 2.8521307495959665 1.4089936465424662 +1.3465711412601378 3.796248180270588 3.5847208763033476 2.4147636121691756 2.714722379057447 +2.1877930145093103 3.7749220350060626 2.6444255928839557 3.7590578555242953 1.9394286809835786 +3.9167138982365763 1.2478506024132328 3.3279885581704773 1.8826004527448372 3.035124061236865 +2.4990350588348305 4.731878691576316 3.5551086911496173 4.043061744571984 2.28553907658968 +2.913219052563058 1.6234426925201766 2.539701969864022 4.214563098385529 2.1139259350218023 +4.421669323206382 1.0667308873313308 4.959934677859565 1.802045010315211 4.6073722511747555 +4.032198570799562 2.597244111109442 2.1571697631220195 2.1080178829800085 1.4357960191845 +2.9567612749016825 2.43014629806556 4.089100611072868 4.607436131341837 0.7389147754650819 +3.2403257563974797 4.3397627906493055 4.88448416855668 1.096367197919423 3.944438106437271 +3.7792616269501202 4.4828540373064865 1.7700713265461867 4.541812611756284 2.859648935105357 +1.2497282595598525 3.1790463126653568 1.6907400901969307 4.0219828794666155 3.0260471067980275 +3.6404557108387112 2.581842744300795 1.274910590007163 2.3348585052591546 1.498049063271711 +4.089933194643951 2.3331840492350047 3.926203131250981 4.757541663282458 1.943525486000972 +2.516756171224691 2.1096472677662534 2.469291564463291 4.724047991079599 2.291214569315296 +3.239039237015896 1.7623857201758586 3.328368058717432 4.240505215335341 1.7356554385243215 +3.560565860125381 3.1174080528063786 3.081079951470171 3.946662579727894 0.9724310405007307 +1.3782690392665193 1.9963613552049981 4.616006342872091 1.2663308620765483 3.4062242935052063 +4.4818047000436945 4.64188465798752 2.84580809613401 1.186471818323823 1.6670400342500065 +2.208659757639602 1.4344971115227212 2.8679216111118735 1.0498933513833744 1.9759945738321567 +3.554263838358013 2.7162782761442394 4.930902835036459 2.4472641400855863 2.6211983842387836 +4.026911975767203 4.810043118434738 4.629062351480852 4.669866248999497 0.784193435746864 +1.3190769293524673 2.49873223490872 1.4265942103623739 1.204155791116996 1.2004438721920314 +1.192674895089668 1.6684880408567806 1.5406237177070379 2.6908947955820364 1.2447978559912876 +1.9026759564656612 1.5425472071331834 2.1659293338406056 2.781079245721239 0.7128128296983197 +1.1538238597948034 3.0978631762596955 4.313411767688598 2.318747056930659 2.7853143758477854 +1.7500671046688963 1.3763551365497753 1.846498025424688 2.160247968080844 0.48795456922976754 +2.7836577539395932 2.4307105678182532 1.2718488518867312 1.49944493546489 0.419966300375504 +1.694912421765233 3.1510148003040626 2.8637432144103285 3.047508368836543 1.4676524686613406 +4.087046808226513 4.659814447784585 2.2783719285682142 2.4595850082990354 0.6007503218396595 +2.820542090137899 4.432828951119889 1.1916248544959003 4.894274078310218 4.038450222140658 +1.3998037944009338 3.6362512154868756 4.484350335812902 3.2060948480245193 2.5759724686694687 +4.180735999186394 3.852212285934324 4.545475168262474 3.1704080836241912 1.4137670661833068 +4.408544390513025 2.854601129386694 3.7521696305115695 2.832034623749109 1.8059313634437186 +3.255865042495704 1.5517323644953094 3.7948117823552057 3.7792588444776247 1.7042036492465975 +4.984805839227293 1.0069482054606174 3.8645070672251856 3.6187378729708857 3.985442742200698 +4.3503216056311835 4.921057922262012 4.367588854484051 1.9377317703317396 2.4959858558346237 +3.291512581502839 3.737359643718479 1.1875872391527134 1.101216473999505 0.4541360060152325 +3.234032371445134 2.894627043546184 2.995820953993207 3.4937431375988752 0.6025964466646238 +1.8202223727389204 1.6303570102601408 3.0556649101316355 1.2290616902286389 1.8364444393526296 +4.069362057198385 2.6804198360598064 3.754872512783042 2.9906614119998864 1.585300949416725 +1.8332469646998875 1.7803581027252484 2.06442308884321 3.513460781854843 1.450002574994075 +2.821801955332195 3.807159689314252 4.339829019619717 1.5462771286042392 2.9622393609758153 +3.3386769308321433 4.649443174129345 4.961196375714058 2.6414732264656005 2.6644368323768988 +4.9559392445791755 2.427562750072813 1.0333394336015123 2.280963217059741 2.819441931131568 +2.722883904889868 4.281833621566829 2.330662645643232 3.8740382411298566 2.193702907841185 +1.7758412554321095 2.1951502692245217 2.850109933629056 2.2053995707231504 0.7690718439039554 +3.1024998796987564 1.8646251570011705 1.3905768788004513 1.1604132864093604 1.2590905878275787 +2.8930501771572166 2.093388152803547 1.4136646816960865 2.9673721115814273 1.747416988264198 +4.660371151281333 3.9382827295575735 2.04988952407378 3.1905217682370015 1.3499828166359515 +3.526952096674403 2.241451387328304 4.7519210139529235 1.5189909813968265 3.4791304472716296 +2.3959907573075805 2.7667400992433353 3.710002554646371 3.8036723679439826 0.3823991481018292 +1.0871956862684478 3.5985742625293984 2.6513876721140437 2.664832843587746 2.511414566721002 +1.7085719922731646 1.788564667346367 3.976346483351701 3.6779831325121064 0.30890049723106283 +3.3732065469145516 4.842968559785095 3.8359658611249827 2.039448836118055 2.3211363156042806 +4.62901996961219 1.1505076420456253 2.233314606294414 4.924024997655351 4.3977233227216885 +3.699529307115956 1.3860605732643614 4.853338564457286 3.3349049354261058 2.767269099361625 +3.3252602936950773 1.286734978193603 2.5202630785059448 2.6730610971573543 2.044243795745552 +3.8317888421659037 1.0730080182334008 1.6818851883277253 3.767014963902806 3.4581263446391723 +1.4785319456479935 2.140303954307517 4.840380633880871 1.6178252316097756 3.289803263441734 +2.1634960772444973 3.0604601920723655 4.175927261399882 3.882940132831973 0.9436027134315635 +2.414555171301977 2.8116302897542726 1.1646302179846906 3.2276641248871756 2.1008992243140163 +2.0958741971230843 4.457466792501482 3.649912709750968 1.3805200923714094 3.2752499810492206 +1.6278487742244794 4.184986828902533 1.6747039003431912 1.0074356118875376 2.642764083201752 +2.727687235615543 1.354737043459076 4.210428247892345 1.4472803128275604 3.0854462790972823 +4.1308097153068175 3.0137770408551336 1.1241603069018624 3.6074625840519023 2.722967534784661 +4.458716562821314 1.1586518895735507 3.772681219509667 3.182472123279968 3.352428019345105 +2.07093987159786 3.501900019267318 1.5702256729081756 3.721857789550766 2.584021615541571 +3.049228762782165 1.006130143736005 2.365586448117241 1.8625068430632723 2.1041247720060667 +2.6348261373068635 1.072146904889427 2.8017949386855583 4.898753350384862 2.615186602104181 +3.1093817528903305 1.9333237232451488 2.107330667342834 1.0634049286710603 1.5725436200482057 +2.2113123088615945 1.658036450706315 4.935150780668508 3.3206694011895648 1.706652952390055 +4.001309628694234 2.771903374788003 3.272675506194329 1.1110134953582662 2.486809680340569 +4.514602892257113 4.706066009319069 4.011207690762146 4.490701160795634 0.516306220183174 +3.5143445345958577 2.4776427320485097 2.148735550995976 4.831068129079218 2.8757014251920543 +1.288511513704103 2.091314638944413 1.6381781213993074 1.9327157708902631 0.8551288118542527 +1.6054486298758763 4.85966228746368 2.987737785998577 4.597807019184376 3.6307340118607554 +4.773546767934261 3.891915521400646 2.8333976778414263 4.9075694834036465 2.253766255372029 +1.936691491818439 3.513017083569392 2.4728778404428216 1.1840327121085243 2.0361542515340143 +2.995343147800421 3.162123864400254 2.590714910160394 1.0505429759100164 1.5491757145276008 +1.0089970567385018 2.840731521534146 2.082120778788734 2.9283780392889738 2.0177716670796912 +1.079263787907502 1.1124882446631807 3.1655318553255505 4.861864532754089 1.6966580141674346 +1.3804896940469127 2.4510807372214884 3.363183090801557 2.5043211419322655 1.3725192271663025 +2.3327995645673556 2.942154433666652 4.117316427809616 4.16582895921437 0.6112829313814656 +3.4723744520984927 3.2008781453116466 4.307818168230091 4.052205931232907 0.37289121778556567 +1.1813362802674972 2.3051883124374024 1.5784930479521062 3.299271125383121 2.0552665476720056 +4.417710325672102 3.1057718412642683 4.614048085090564 2.7589860092193907 2.272099886053822 +1.8335845406808722 4.097628832433106 3.293191225661104 2.2067505200810342 2.5112247931551632 +3.2308660421060185 2.5144385719830593 1.4890581138589023 2.288103033553304 1.0731920162003707 +3.4280334255382123 3.85460240543742 3.1665951168657145 3.1851981675323247 0.42697443495642107 +1.1022644089871978 2.974692786152565 3.570343668584088 2.4528530306438316 2.1805442791877105 +4.9000690878085065 3.897713219209783 1.3906164380444328 2.4302113396253175 1.4441173244259866 +3.0438074318437947 2.8248400568507774 4.992439941361843 4.4623196144455 0.5735627884732613 +2.4082863272034203 2.8421040124869603 4.922024947357464 4.990072513946724 0.4391221417595432 +2.8930614989571133 1.4767993155294135 4.990235156236041 3.6223880499232117 1.9689602023544754 +2.4250067420170107 4.1272622202636615 1.778163173637597 1.6552482431832076 1.7066873742280222 +4.237037021641911 4.907140554044888 1.4289040221231533 4.818162539244277 3.4548678759132057 +3.2766695084556035 4.607148985007013 1.5611871626805391 2.6642331996681032 1.7282610327258103 +1.7408624277307743 1.6512735705652992 1.1289017694327894 4.821059761067877 3.6932447520470477 +2.1760492322530456 2.4678151756815248 3.1046100795028426 3.832869149153628 0.7845308395935359 +3.2618345862478115 3.6592934454801904 3.8470010563217327 2.07581577518505 1.8152330001676187 +3.4150311362952745 1.8843491791720082 4.9717860806104905 1.965417460119279 3.373609274373211 +4.725858800225437 3.1490237000765458 3.174611465137542 4.412661302230216 2.004788350970436 +1.9640745930015129 4.511244752971777 3.854985745968944 3.121264264747133 2.6507400920967843 +1.2918251854297753 4.214488252177885 3.936701222965838 2.8372722155558354 3.122611654379713 +3.1755644038317254 2.118184128233222 1.6406785225565135 3.677445558614149 2.2948797368044738 +3.1846177349301374 1.2218369525206572 4.8538717189123535 1.4691168987112588 3.912681125861206 +4.993651895584937 1.2016582140255516 3.7928748951803573 4.233068971258918 3.817458173392468 +4.663812344615195 1.9370953604428554 2.664949081175529 2.0630588147626874 2.7923569622411137 +3.982264185945402 1.2674211015016086 2.0304934004370208 1.163930272779088 2.849790277786874 +3.427491471449474 4.47203336032676 2.8790328544730013 4.7266980045957965 2.1224830422402956 +2.1910668751329734 3.9978152673883316 2.1336480901698134 4.207300142629947 2.750340449397028 +3.9657977704713776 4.625199237177 4.830644340933757 2.37185890546289 2.545670071312696 +4.319773397484404 3.835213052046109 1.468195310233551 2.614291355915974 1.2443210495286845 +3.9505849783121296 3.0149208950411968 1.6597113409687965 3.881300248148942 2.4105859348359906 +3.218419327713573 3.982614537624364 4.226615136458072 1.6682433390247593 2.670067522133618 +3.1320095163278503 4.0278197150281265 2.8294923319050653 3.2076951162990146 0.9723750604672893 +1.5870578605315746 1.9539251992116853 1.5609374039668173 1.7292811363950968 0.40364744076744896 +4.8459911561441125 3.0587679637431937 4.253009218479045 4.827275693345127 1.877218347345574 +2.360317916899448 4.842345470950473 3.683002029876934 3.608515420366539 2.4831449885306474 +3.636671511956305 3.794268986742883 1.5945435296105317 3.738135376519023 2.1493773447656097 +2.53564921612525 1.3333539247513442 2.623351398455261 4.185336059669165 1.9711189841121664 +3.7044673999563145 4.798990150265832 2.0180652130970778 3.8637069154203734 2.1457803578884636 +3.5434031579549004 1.9699194794749117 3.3205957758240667 4.634582716221276 2.049978674517697 +1.4092412951496414 3.8935921605163895 3.9527948814928444 2.4708798154069203 2.8927619130064883 +4.807417549948255 2.11686764597555 4.118044501015635 3.2471876110764732 2.827976398155055 +1.494346293122573 4.961604767582598 2.353845509502769 1.875855330648791 3.500050848172883 +3.0001551580188224 2.581443804896343 4.976054388817897 1.9590834639756949 3.0458878440574386 +4.18677073781339 2.470797381621996 4.422889527105778 1.0642887807013972 3.771573084656696 +3.285029482280871 1.7446199751041696 1.4679755612366598 4.141184924893633 3.085273043304869 +1.5435528308719562 1.4835962505609803 2.1848483195379886 2.9102317641819972 0.7278570830088789 +2.511913776285277 2.826344433653474 3.1066134289498955 2.094133775268279 1.060180025944765 +1.4168203600610099 2.1523080370077596 4.416874914913328 1.5478485781033586 2.9617991566360065 +1.2528113497907838 4.070872906242856 2.397759402422617 1.2397716170944615 3.0467042270168405 +1.8447272115132738 3.2551732852956947 4.5769581875142205 2.0257262236097717 2.915157398957387 +3.7684075610500276 1.3986330872787325 2.8973233530195137 3.7220630780545347 2.509188448600236 +1.6102702128749131 1.3326119166249195 3.234083658941627 1.5258517294334464 1.7306502981445129 +2.080249645376457 3.927487984158873 1.587782053829304 4.170425691069099 3.1752696951980024 +4.183099365526321 1.321974848923638 3.602588994398773 1.7939147290886157 3.384868697231869 +4.13417376106182 2.16196998841053 4.501981209621198 3.0266500936152636 2.4629635853408995 +3.521080448820205 3.1625819029293045 4.982878653660524 4.375706160825128 0.7051096676842822 +1.0199277237369664 2.1320348541965335 2.869505236939829 3.812157954011048 1.4578670771441287 +4.303210644585688 1.4680249444402085 3.8615291636697635 4.187365092504075 2.8538477546689016 +2.4654086469659235 2.5483995621129703 2.4234140328921643 1.189508585840152 1.2366932296497668 +3.9959774697834036 3.5146896252713438 4.457406731183809 2.876511090484677 1.652534119483342 +3.105051712253227 3.2982842502485097 4.21038026247346 3.104048757521931 1.123079789057043 +2.445281804443645 3.382243759887673 1.018034598736366 2.8628390422715033 2.069106362862114 +2.130731955610723 1.3619599692350528 3.1755826976496655 4.270318061823718 1.3377054551018654 +1.4328347493940274 4.424170611377768 3.6744899945801883 2.2206357480835472 3.3259257973151364 +3.7294233538538415 1.0856626458636809 2.5662236028052265 2.8032454852004056 2.6543643408256505 +4.6762373822756444 1.9654734683705382 3.5790992712715415 3.65112970599988 2.711720741606201 +4.152618792186197 4.408285157080707 4.527611259845942 4.015217445011511 0.572636631398092 +2.596380365217826 2.882038613782988 3.9949230078693785 1.1996248716908884 2.809856278370169 +1.7983280523610303 4.855113064852338 1.1818114660706787 2.9087662520047357 3.5108841401065956 +1.8906962912078509 4.327344653082335 3.6549416850723726 3.6769502479491534 2.436747753926431 +2.728381231710956 1.4192613975503683 3.437547596991197 3.4076339532666307 1.3094615558593252 +1.0745187689887121 2.4377567159369504 3.269683990560004 2.782229609009186 1.4477670648597925 +2.27721480841225 3.662888446856239 3.4655285682247876 4.408663283518736 1.6761845135518942 +1.8150604650297386 3.8789338821993047 4.057747904499264 3.039282403389223 2.3014876621547438 +1.9032732658898235 4.135987757114466 4.89427549512373 1.0288858957781066 4.463882923425953 +2.275499601949127 1.6647436510924196 3.5243505183431934 2.4828151765731588 1.2074016314644036 +4.227443335420578 1.9739319266709279 1.7067143993508749 3.8400272228292507 3.103117347472072 +2.809099081433775 4.879861999517852 3.8391542137989987 2.3713033512571995 2.53823663545714 +4.47350710970727 4.434802456790974 4.60425465778924 4.342622531560703 0.26447952592258595 +2.408714749687126 1.3870638143122274 1.2653771813153618 3.7239676081494473 2.662411974258044 +2.035734246606803 2.265581820523268 2.671143997588304 3.611506463488222 0.9680451820595253 +4.215610456254407 3.4131774551522938 4.441061801637724 2.3487361752022102 2.2409206251664755 +2.5826912328908183 2.4928165333177392 1.4031187895259265 1.290052519417709 0.14443490942128775 +3.009866847058611 2.171611580077664 3.4727936644178783 2.680145615584743 1.15367362019779 +1.6438880565921474 2.299698291388534 1.9581017953578201 2.015057891102244 0.6582788625697621 +3.72965749860865 4.772732516563682 3.2821661219991975 3.8297997092958873 1.17809508912368 +2.376865733056325 4.589227652498957 2.3527244443921527 3.008788653418649 2.307588678461881 +4.8581344243533024 3.6991102637116375 1.740037783735528 4.130897821429879 2.656981129928278 +4.606516071700566 3.8781966617287913 3.4299064594613635 1.2864177406012383 2.263844749717227 +3.4539072637955077 3.906161765060008 3.524203621507355 3.8299665758838524 0.545916768549058 +3.7691687246008896 1.129962389891007 1.5458344899462872 3.6683524248033996 3.386811547896173 +1.0115474066281944 1.5932394274844253 2.2676938363932293 2.092114748137714 0.6076130539746852 +3.054373150622877 3.69209215971082 3.73406726775806 2.3332978918472156 1.5391037583742575 +4.27235572594885 2.1880694757266164 3.6602933345637014 2.298646514167694 2.4896448012437467 +1.8377616630141564 2.6567871376717815 1.7576684143589123 3.185522782162907 1.6460774051651075 +3.713425005775694 2.3500323098716205 4.376727286821094 1.032052565896096 3.6118815916415765 +1.8867967751508412 1.8051494785505149 1.7875166858395626 1.160142901068748 0.6326643239979618 +3.124134048270166 2.8117384952080333 1.4203733021117118 2.9816165973216746 1.5921908203513355 +2.222860537155332 1.0814229245105542 4.516676201621781 1.7315108204998775 3.0099877115629767 +4.757366602483755 2.867794753518149 1.73192340055148 3.1123775528025837 2.3401144072182904 +3.023783513746817 3.9603322339768776 3.760588628936596 2.9443397925967485 1.2423307402582935 +1.8100501718968949 3.05852509663033 3.3038766960440884 3.875453817353473 1.3730950598165006 +1.604061958725704 1.8390709740406614 3.4972514424142758 2.4607437235414262 1.0628158300299746 +2.2965715865834833 1.0924607575358158 2.5216323597972012 1.1317763427790473 1.8389080011440018 +4.5680903035729035 2.2166358746540444 2.076858539406615 2.5104813744174472 2.391101565037535 +2.587312705014544 3.556100251495022 2.065491409893031 4.01626484328367 2.1780877619229138 +3.0372944236463826 4.893433636335186 3.869503665219736 4.195325713479218 1.8845192447977326 +3.384812278092438 2.2715094731813923 1.9843112188452285 2.210125467748586 1.135973243712452 +3.444566991695811 4.086609444036699 2.2493236064647384 4.143438385518735 1.9999723265182126 +4.816362832670425 1.422064939931043 3.719325854834343 1.1437785217487662 4.260833515829882 +4.539943126002029 3.288566277379254 3.613345472880041 4.32426806094951 1.4392202553801345 +4.949668986040377 3.818243654628515 3.4631692999601813 3.046362199742034 1.2057576204829492 +3.1126665683559733 2.9737781171378623 1.9825910354895688 4.276587422015021 2.298196994009347 +4.343919352140684 3.4683930025736345 3.2208240538726387 4.211263135863655 1.3219364447360589 +1.1685697690004049 4.041727643380849 1.0810732919307293 2.9298765756538736 3.4165932964021097 +1.1169002547122222 1.1990199434346223 4.6004777579720075 3.7528198272762805 0.8516264502393205 +4.4166213822907 3.0901352057741014 2.0068051790054877 2.3968671514192055 1.3826474311309098 +1.5234636734010572 1.1662299300744796 3.5268475247039506 3.359087852453165 0.39466347057310747 +1.3166430187780054 4.158703366131144 3.661164265634538 2.4683171456150834 3.0822380293766654 +1.7434046349573298 2.2576080448015574 2.4121918835694465 4.521909366587381 2.171477148129116 +3.021089113983077 2.474151616087623 4.232127910061819 2.8019655300948574 1.531177670839313 +3.3541857481481148 4.201679305920575 2.336317565614451 4.403527486277752 2.2341893801901826 +2.4307068210846077 3.1299055282230666 1.6969761825125493 3.5824141970718846 2.010909082681149 +1.4659325733633 1.659798577198512 2.7363188597941233 2.340753662495177 0.44051770992457145 +4.6574345285986745 1.375767775255936 3.205306940623583 3.6949797945295817 3.31799882215885 +3.964785456712326 2.855073409485877 2.151534206361562 3.605578754949367 1.8291272172917417 +2.9477554041952887 1.8428138764897546 1.478313286794386 2.1184519859328397 1.276978204114272 +4.125498398608083 2.365867576314201 4.42420387281858 2.6411916807776255 2.5050814573049984 +2.269555027975118 3.997306405806864 4.691132778362889 2.0295038845878555 3.173230718333857 +3.3894448097563386 2.0166503468217982 3.1527307268821363 3.9020241197117764 1.5639709799103967 +4.2145732275087475 3.912734339585006 1.1811967311786993 3.601527802674493 2.4390795825292413 +1.7947056293892847 1.5240997431881356 2.568499717197279 1.1857619407064077 1.408968170038496 +3.3585828599214844 3.5144953759980835 1.9906530202547859 1.4631665279237334 0.5500461001234835 +1.2919207522577487 1.3326922019974519 1.1335329136132013 3.2532601172627333 2.1201192723537376 +4.296131098018112 1.8436282811479132 4.237061366673743 4.703448631591451 2.496454916002626 +1.1665570777906642 3.36449525904597 3.641475216215854 2.706408222501013 2.3885733255135357 +1.3494927220241717 4.37354853084671 4.03643767334113 4.255966628793899 3.0320136043816692 +4.5321632359387625 4.10319458546443 4.270603673265744 4.066819775199832 0.47491260269728364 +2.9395547535893365 4.344029736771018 1.0710862512064856 1.7965268070867886 1.5807637326618764 +2.070786679745465 4.2665091587818775 3.6334618830654435 4.36271015375055 2.313655169908219 +4.1670088501509115 4.208410361411263 3.5424290656623323 4.950519375584781 1.4086988343972386 +1.3637600224936421 3.3978456965600197 3.5036313701720023 4.2832582002232815 2.178376120778475 +4.417328992128025 4.087797573221552 3.3000075741512256 2.140583326600462 1.2053445739103683 +4.0906183266892455 4.041140557047897 4.621943635290867 4.0717262554446325 0.5524375211492588 +4.249132339635766 2.168578821829412 4.253429418119341 4.427366436431132 2.087811540057098 +3.1017552646508304 2.5275343728023247 3.603582862043969 4.017894653148085 0.7080846650529822 +4.883631970814779 1.4562821814524707 3.1269439806258994 3.5749986781738734 3.456512634236517 +3.912578130991506 4.288918821219529 4.188391480746471 4.031939048677522 0.4075655513185501 +2.0430187352559255 3.9724772418375593 4.510486716835308 2.2052502938561975 3.0061478829974004 +1.3384545761332935 2.9511015175568027 3.722775572711031 1.7514517567021803 2.5469094497540143 +1.8228822053227476 3.2817111963894288 2.261920577044128 4.878882640381542 2.9961095550937134 +3.9968842692594326 1.16680166746126 1.9715509255068047 2.4439190400688857 2.8692332022085014 +4.279701003970741 3.6920734256427536 4.9013704122244395 3.725000619090396 1.3149722662512118 +3.270929251697695 2.064734769852741 3.0343258875976957 3.3653287491209265 1.2507869612247258 +4.512068222763287 2.9667128626019665 1.607558442269129 3.915712118249743 2.7777142727649555 +1.5544669085437293 4.0910010567213835 3.0544871698819054 3.9962247563367943 2.7057115823038527 +3.835035718370509 4.7293642116702665 1.9013218972766621 1.1417014723154164 1.173391087381406 +3.743612383075814 4.109445951273445 1.7383419295315856 3.4918160560010527 1.7912302230082182 +2.3166681567533867 3.8894995503022742 4.116654998964039 3.753851665109734 1.6141328481846635 +2.2381165178536353 3.552547630659512 3.661931562498364 2.7536533914810724 1.5977166163805805 +2.1171415079547025 2.0529744678358957 4.49100414614464 1.7082985504306714 2.7834453185675194 +3.183082159762263 4.261467562196584 4.294546270737431 4.647252107436451 1.1345997018442178 +3.534346361354895 4.159818325189771 3.0663749920870496 3.7778637889918163 0.9473286049014081 +1.6766627185912446 1.0900941310646406 3.5126268693442992 4.5290801433085495 1.1735586760045695 +3.3893453167200094 1.9767992585100904 2.198503523617293 4.234433908190086 2.477962650523833 +1.8239671092997263 4.090278476749572 3.859817298528865 3.2440479035756042 2.348475923230531 +2.972788357807612 1.3520954747632845 1.7460225233959394 1.613761347148304 1.6260806990715257 +2.2450771284680444 3.7758928566428063 3.562701255763691 4.863411706491329 2.0087917936559085 +3.496896710317637 4.782096015232813 1.1190055367299792 4.333939314397762 3.4623021890273664 +1.5554889625225168 1.4496297505215106 3.9638384371790565 3.241404148576762 0.7301489396785954 +1.0766309035423243 2.6425180759357625 1.095968420162035 3.7083942421335183 3.045779261858892 +4.542345109283417 1.6074518277807357 2.7699011629880457 2.165973387640442 2.9963857114273327 +3.4422870587708285 1.5578158916929459 4.49003874906944 2.2818107150854967 2.903016126310783 +1.5993438453169575 1.7587388558951003 2.8566328072033413 1.5516478842828487 1.3146833909527458 +3.095427294552601 3.1795181873168326 3.285115101817111 1.749708140095748 1.5377079749901517 +3.447521848376026 2.32106976015736 3.899054553003647 3.1747627421568043 1.3392135506751681 +1.2426576477251166 4.107665511098874 4.625442875951894 3.759548351459967 2.992999061934127 +3.9076084497104286 2.681140914511033 2.1020457690545347 1.703995208835455 1.2894444010459714 +2.7748781118957613 1.571415331247584 2.699876732578691 3.570071876506493 1.4851135488308531 +2.566904097850833 1.4366253422405642 3.1545654469553344 4.491527402983682 1.7507133795259124 +2.4672586285347977 3.231653481725701 2.671460938743858 1.2484438376721432 1.6153257137578445 +2.7770267329405893 2.6004464227357724 3.3690017257367884 4.176296584697669 0.8263810230497171 +3.434964850388992 3.1252484121341264 2.8498072560980976 2.151724794380594 0.763703735412398 +1.7713237552054024 4.293274269419875 3.964404220756178 2.9527782395589415 2.7172820100202912 +1.0659164883322334 1.8573798448160082 4.7638514026771315 1.2693939331688298 3.582966264264698 +2.2402707624251246 2.354251458508419 3.066408546389235 3.6213268663430083 0.5665032576251882 +1.1512613749584477 1.6781834807180664 4.4351994675727955 4.243618988642378 0.5606692299791016 +3.2351672590451765 2.4805857811373944 2.3250035513065583 1.0250358103143853 1.5030999083300438 +3.479847257820388 3.404047273333433 4.628326645632559 2.4333088008185366 2.1963262455063957 +2.843542251967466 1.9701158192737314 1.1516164183580746 2.6684375905251883 1.7503200283555347 +4.563804592633465 2.8025204184699004 1.7491341802266636 4.78717802526543 3.511670876739015 +3.2888071373951413 4.720103163212881 1.9407277961866738 4.659737396166442 3.072722167444332 +2.741701859565002 3.5163869911685692 2.769312214383927 2.303676836730189 0.9038547217613988 +4.104896822338695 1.7717592610772521 1.8529245676535497 4.292235802502634 3.3754659204663815 +4.639338966022519 1.4192998703960957 4.41134923412706 4.275474503659872 3.222904547103772 +1.5762818605917204 2.7081334482752966 4.731228010167284 1.8522117286563762 3.0935130136701745 +2.4034360640482864 4.543218328967329 3.1545113831007825 2.3093330096204303 2.3006509131680457 +2.298319470169389 4.972813010898754 3.5245092998965237 1.295348861120039 3.4816766020423646 +2.2842696244035574 3.187023673022291 4.69163103473106 1.7404918718297413 3.086128194211545 +1.2376652958497445 4.003655151855979 3.227895796218487 1.1605121494939143 3.4532267556987306 +3.5797024525844563 2.9096496411510304 4.964804066274973 3.992671469861995 1.180683088351178 +2.6727180345926684 1.2433266428291931 3.7594159565931107 3.5315988293585714 1.44743234533049 +4.352036819810387 2.4487175646083554 1.8566290803848773 1.9855182807852523 1.9076783306424234 +4.553413544054722 1.8132841522152785 2.251492667486442 1.2550009860479356 2.9156997025068514 +4.442416090849708 2.7740953025476216 3.7999456488823813 1.3494401582652769 2.9645018826483263 +3.0784556117840536 1.0442480401952179 2.5413831221787166 2.425485158711776 2.0375065109699975 +4.6297185811088095 2.353586724869992 4.704594547827863 2.7387704265019472 3.0075306653419136 +2.9695023183783666 1.4029475060093475 4.57837644553031 4.025340623781607 1.6613074972123 +2.738606779537613 1.0322238916715851 4.247665792470071 2.3911524110386466 2.5215837276275295 +2.8090655983719723 1.9021700616654527 4.962123324850751 1.0033016031034396 4.061370327743648 +4.153400310318547 4.807261422095301 1.9053267131669744 1.817749721923275 0.6596999946106048 +2.6797513025199478 2.6568995651968947 4.732513270079895 4.970658307121924 0.23923891942246955 +4.571828858117529 4.232913776068674 2.539623998134689 1.3780590368984376 1.209998591739658 +3.9934110014349393 4.889925245794281 4.640967487021113 1.0127268392433981 3.737361099562852 +4.321441458091063 2.6943444537698684 2.9345134328290214 4.254477256470315 2.0951728227506075 +3.8719746637332277 1.7932204448862468 3.7231110878734692 2.1053296583357617 2.634091087288211 +2.2319742654344124 2.1879158345853744 1.3729498428962632 1.5267650686633916 0.160000840643642 +2.333992982290398 1.5276827115352938 1.1620947123484986 1.4966532822496466 0.8729637388915253 +4.198921680309227 3.545250839997677 2.2859262212310862 4.670598654191344 2.472639921216634 +4.28658542540124 2.4100077899455195 1.2071226183077073 2.537983580930591 2.300594384876676 +4.085015189741864 4.8004171332411065 3.258868975652561 4.222460049119544 1.2001282004968241 +1.1813655237618463 4.003849010360629 4.3754718734587925 2.339375804971114 3.4802442776669857 +3.5286445538924744 2.510821352509474 2.173936565196359 3.888769088561031 1.9941450931320892 +4.550100672426114 1.095042514803319 3.206454895690314 3.4639346102140802 3.4646388954618437 +2.7820599356737366 1.7547711015633642 2.6784218598617806 4.281675878856784 1.9041391225725808 +2.276842141969806 1.6670314828946267 2.243315882960507 1.933804182876905 0.6838614862750687 +1.1702460216419022 2.8744248281389937 3.039111008870223 4.0413772691036325 1.9770591950966254 +2.3525812900918828 1.4846170761664919 2.2500685077409788 2.501631686003977 0.903684629344166 +2.7632737443771407 2.348255065952097 1.8089094136220232 4.082298798241767 2.310960795328083 +4.04428682807627 2.905023436595985 2.0177518824424 3.524235889795455 1.8887602123026843 +3.046905980319861 2.116226454158602 1.2117133494278431 3.84892981502951 2.7966185057773423 +4.666088779749726 2.0462084536208356 4.155759738837212 3.1555821181792654 2.8043052965221555 +1.2280507881609464 2.952981314706409 3.250164235543414 3.4523416706803167 1.7367386207161235 +2.744372579198021 4.600624233417495 2.4308879674780655 4.792964222874916 3.004176166622414 +2.1020612179600717 3.669483623343487 3.4413820767840635 3.7661553978684377 1.6007156858687008 +4.487270822962191 3.3376860911624218 2.033649807019455 2.2039163816084106 1.1621255362521747 +2.2277821164982026 1.1995113943803588 4.526263181507682 3.1899455972985953 1.68614511944588 +3.6799186534091173 2.3630761153331536 3.21571885000311 1.8226497779440454 1.9169548011400397 +2.9933660858068416 4.253474761710201 3.6202569210274733 2.403462479762886 1.7517027679887127 +2.2971148211534205 3.5783994460062627 3.108183556842676 4.760720279188847 2.0910686044668445 +3.9484024650790444 4.923287210166249 3.300817824687458 1.6589798117852417 1.9094586475790574 +4.429511329171225 4.075592673916642 3.1748774409177067 1.76117830322096 1.4573275769235061 +4.951901492788675 4.569042211022301 1.4111326429089943 4.738715354015628 3.3495354795688375 +1.3938286330180287 1.1165715494651565 3.862800185921955 2.3035502050164216 1.5837083043711526 +2.588201701317945 3.4928680004019124 2.588959505461378 4.467587719722164 2.0851055321289977 +1.9382000504974788 4.826319033568764 2.580511341988288 4.810124938076788 3.648617278948205 +2.00655554595045 3.9034759471981806 4.962008124112625 4.055520094811776 2.1023861576636174 +2.47159617525215 2.7318812644840627 4.651796908242754 2.4836156972054955 2.183748632872258 +1.9539061984518327 1.270706744418951 4.961158557813577 1.922583394917833 3.1144342206182043 +4.13804515224441 3.4645378133612525 2.8290770431372976 4.92581466142628 2.2022535674798274 +4.209161815494529 4.857289426857594 2.4585641143598687 2.2654158523495598 0.676295535789492 +2.895585836727767 4.599691946541449 3.5708359734247526 1.518805995126625 2.6673591181801024 +1.208223523339686 2.643375383973688 4.740534127560027 1.4694838194569901 3.572034571672314 +2.5002100652391848 1.4171982170398199 4.999279678399525 2.5251524822132385 2.700781376981265 +4.997114387900508 2.530567618270627 1.9785773013971468 1.109463283261428 2.6151887395160633 +1.2418883014229092 4.544877819267847 1.5704699673134344 4.662298095925287 4.524283471652612 +3.89786301742753 1.6420248032493352 3.7340845447900683 3.565879174478922 2.262100593507764 +3.787878886541415 3.659612905128754 1.6752147516396878 4.428364523475473 2.756136032228306 +2.32119982798475 4.180363160012547 4.203074970966421 3.770729489260024 1.9087720950151794 +4.192502294299562 2.7583330829048425 4.643546257766877 3.5383671334418407 1.8105972008584363 +4.2961985599140595 1.5548818080083668 4.664029086797469 2.7340429545953113 3.352560812986309 +1.759283179437504 1.8344455845100267 4.009919555814604 3.4415518002551084 0.5733160495712855 +2.1812641529044465 1.8636105932366362 1.294569935975804 2.315496515614331 1.0692029110426384 +2.34581836765494 1.4844928449841515 1.8849929741017801 3.5172396198964795 1.8455651624129 +1.6585105406986491 3.195394086425154 2.3346768465766625 2.522156621961241 1.548276363994208 +1.69786140393806 3.9618958271425067 3.5425060655341896 1.4656392721674107 3.0723325905318744 +4.4971562889503875 2.346972362058777 2.2059602603269735 4.942103698282134 3.479909744882489 +1.7988763750816887 2.999712251152394 4.098580877390468 4.197932322472059 1.2049387996484713 +4.957640857344107 4.873896668062586 2.540054160446343 2.403410529411764 0.16026406690438585 +2.838718958411497 4.748181208849044 3.3123869393081438 2.0409379937131487 2.2940419584437954 +4.872939458511038 4.317044896260391 1.5162237069778643 2.483292784201245 1.1154556757045608 +2.0867056673555835 3.073086990115877 2.443707601764115 1.1519141934339459 1.6253240672849278 +1.245228090023717 4.780136381567274 2.249453817787434 3.131294432035589 3.6432429919730795 +2.949071917444009 3.5103093333916497 1.323373833266949 4.841861967382546 3.5629687322472874 +3.843168475743918 3.0987282839306913 3.1815012642317964 2.2393307639825455 1.2007815999284954 +1.5829035878791138 1.614005253664447 1.274566385660207 3.0133234602962093 1.739035214770354 +1.6950907532805717 2.6958152278485916 1.3841660051397358 3.8399360637056694 2.651840126129094 +1.1987259097929863 4.683713346110622 4.252157660070047 1.9808830539193978 4.159786745475849 +4.102971664898961 2.010289705019117 2.6463248846927323 3.6830205035591086 2.335391956692342 +1.3317265310269564 1.1674654521070935 3.3300107188842394 1.8524948759725803 1.4866185684643078 +3.5943032929785153 3.396291919787561 1.919786397004001 3.670365843886051 1.7617425759056946 +1.7098918638854141 3.8167536556851704 1.484838112692179 4.556618719915335 3.724876200447196 +4.824449669428271 1.5593215838682744 4.871926943626119 3.7392600971067975 3.4560086227202484 +2.207721878628659 1.112877071488012 1.158180430648362 3.9501409153218003 2.9989545677953813 +3.198181324985412 3.6515614705034225 4.2375281082651295 3.744742416667814 0.6696202611876204 +3.304518774694736 3.434936174765733 4.960243404778507 3.258511163822069 1.7067223904759372 +1.2806397382714367 1.892038740241209 1.4227062013660094 1.453925420337114 0.6121955400383112 +2.7298947482174194 3.734079705824664 2.6611139011878 1.5773551018666705 1.4774710028256526 +1.8705388510509056 3.609029296274267 4.622017273360776 4.721422771450024 1.7413300896680366 +4.2283354028564695 3.1243543202464488 4.959860463033149 1.3475997648556635 3.7771949357106904 +1.7147412583165238 1.7209057939334573 4.60342584935312 2.7844548967115728 1.8189813984901193 +4.312445371073169 3.7770827212100584 4.956463323162888 4.299415454641874 0.8475405998513929 +1.6772329157581622 3.227648238449604 4.926951542529039 3.740187525469766 1.9524847003300871 +4.829717431097514 2.2943744944711897 4.205616452942002 2.3788803548285973 3.1248885705656098 +1.7366433343762204 3.474925850013359 4.629390830873598 4.5626172875080595 1.7395645461618745 +4.526091961547397 4.3093214535462945 1.4621713744646305 4.965978991980288 3.510506697572276 +1.9072564828824823 3.8335617179707886 3.463104536499152 4.257672332656469 2.083744188094813 +1.3795648969524366 4.891346252943469 1.1893660607057095 1.7581140465864666 3.557538835168161 +2.8867663400983252 2.556713967175651 1.5531047393917294 3.2314929284958365 1.7105325142177368 +4.540877366631858 3.861097355312066 3.993516252915672 3.364932628271782 0.9258608086318307 +3.2176189742135115 4.091593642882188 2.028736550389808 1.8307229845998676 0.8961256015265772 +3.569738599411987 2.488836107567282 1.4488191102796915 1.9018486798899072 1.1720008480446207 +3.096506537959464 1.4650749295732055 1.0352217451896268 1.7077251940844898 1.7646047664044375 +3.1428958317444455 3.271503954762915 1.1037342596437276 3.2006748422790867 2.1008807335042734 +1.1265984040463706 2.870730422586291 3.946521906098392 4.45690411200132 1.8172744685925886 +3.6936350587712314 1.1176835742350324 2.593132232508491 3.7336357340565396 2.8171393802450755 +1.3084995620284605 2.057400920235485 1.3765466132717918 4.979150916187706 3.6796210413183292 +4.001401364869671 4.19097249518627 2.581591989622445 2.1757785364812556 0.4479082185000508 +3.131927491704234 2.869174472892439 1.0353468796405423 3.663566530450192 2.6413212000430217 +3.231527265268617 3.3096814305115774 2.4446910395300363 1.8248656886994459 0.6247331743049095 +3.650295228025096 1.8940808860313 1.4101576385779078 1.814396360947356 1.8021369980352728 +2.754248831140264 2.1186156010948873 2.6465556133413415 2.673434893662693 0.6362013037148798 +3.2924111655701354 2.451005297722821 4.438804050641098 1.5664176265460803 2.9930866348592806 +2.327803045576286 2.0478664776863913 1.1835472678393786 2.300542004135037 1.1515388499543473 +3.9764551433259587 3.542236584235397 3.519045879566251 3.093395742467314 0.6080491725765506 +1.4177194177721155 3.7508507848513752 2.07013727419215 1.539071865004754 2.392808484790313 +1.5262503977143895 3.7576311908439166 4.434732012891609 2.520571660138043 2.9399098795713132 +1.1467026625166992 1.0791747553971507 2.9560540682866914 1.6907213561449264 1.2671333357843528 +2.162331619857538 2.860723927297278 4.891858130603966 2.116678334200249 2.8617083564644354 +3.98035408190527 4.3323077734111735 1.9361567129522266 2.623450293586056 0.7721682892641363 +3.295599624703831 2.8904041145365733 1.2732785146887005 2.7099379349050623 1.49270683362679 +1.7370865524250565 2.732454816999782 1.8623276146038066 3.0554021266101428 1.5537647097683929 +4.5079981249020715 1.7704326007419384 4.636820746634118 4.648966838217309 2.7375924690521214 +4.181579735360069 2.2251572228006022 1.8637305929216814 2.7701504087457973 2.1561970991002006 +4.672460377898588 1.87399146634429 1.7110316729913708 4.299491021299584 3.8120270259771347 +3.503110622779215 1.088731953172831 2.5161045627980085 3.6779596818538716 2.6793901690359703 +3.1601345149385343 1.9593014037813434 1.8275744646775216 2.14123020050111 1.2411204943382794 +1.1412239686444678 2.738128761117368 1.5128280753675671 4.543684241332662 3.425812898421563 +2.807495296126458 2.3700161905253654 4.1424766151684445 4.245010427642235 0.44933411904499565 +1.0390151036162742 1.4744605279409888 2.8212369963240054 3.6014855066324536 0.8935325709809818 +2.3163450233301073 2.8261660050102866 4.912346534230432 3.1530438185425025 1.8316832364762923 +4.323730169545787 3.882095681688919 4.469294595608494 2.879211648904211 1.6502741585156002 +2.6019419696048165 4.348504963971572 3.309225661265704 1.3804889925395685 2.602019875131656 +2.0334877616730194 1.0914425069645102 4.657087035727015 2.2643356696694195 2.5715186877970204 +4.587928274045854 1.3692064329521942 2.8127322290365764 4.930017355727269 3.852670060884916 +1.1575597554904933 2.4979878914531213 2.7899639938050296 2.5845445180121844 1.356076970055628 +2.625510292002066 3.987769285654868 2.8239387953476562 4.408240279167664 2.089440297644856 +4.5459193811325 3.9829278938857593 1.7811451005870587 3.5653473256101496 1.870918756784924 +3.1905598527188084 2.185191034029805 2.274881537120353 2.7581623667365895 1.1154939810983655 +3.5355707463979416 1.7026669388621731 1.7699381928301885 2.697350853147264 2.0541739483781583 +4.473679292587811 1.8737459189800982 1.2595016401497303 2.6589161765265366 2.952628420885685 +2.9128410631802186 4.211601508496272 4.8547082961191315 3.2347500553481936 2.076305227118408 +4.492469743956445 3.0531756185491 1.3700062354219829 2.231522849995561 1.6774321019398708 +1.8901290877921983 2.1144035457380776 2.4163956483393383 3.2939571679325366 0.9057666659563275 +4.584522228390107 3.1114003429104624 3.8139653044067674 2.1984666951931167 2.186303694789528 +2.151581917571268 4.74613108381735 4.308293775439131 4.175154326357512 2.597962949884004 +2.5723898409427424 2.218851347787504 3.2229378957919526 1.92314415921446 1.3470164155601654 +1.2470352956913606 1.0707899077370824 2.8187937822995086 4.0722974334214115 1.2658332592214092 +1.7420280643973136 4.354709156642766 1.148552770719272 3.799659409115858 3.722159171492715 +1.3134940911293795 4.940947992919402 2.5067461516925467 4.1556848535339395 3.9846481214835063 +3.3305104147814144 3.7523179549614705 4.854857862154514 4.6412763397835 0.47279876020466616 +2.600075425247724 2.428246595780733 4.384209495349806 3.8060612560077516 0.6031422164716326 +1.9401803123558974 3.9762030930248944 4.447216020009914 4.873507146354772 2.0801713602017218 +3.027440761466047 1.274715870187456 1.5811535887783634 3.130816452788876 2.339551139984081 +2.5362253831856436 4.142148421189006 3.339242523320423 1.3806567959926532 2.5327942781209054 +2.6979131032080064 3.4025339202825 3.5886227418997696 3.2287329820526742 0.7912086545896266 +1.7800575929249884 3.2421007177938193 4.734049725793858 2.8773257669377905 2.363259181377777 +4.789699657752801 1.0087577856532652 1.9226945645197016 3.0747100390008075 3.9525512132848415 +3.872953243397379 2.981906518654337 3.7923604971815386 2.311292112905783 1.7284466507753427 +4.46975722202154 3.641080965597856 4.797460461835916 1.9576869557342889 2.9582119437114542 +2.407221268279613 3.651783030261232 2.434139728803019 4.028932790855039 2.0229431257838297 +3.403026171844813 2.3886463065991035 4.891129053068028 3.9185746693605976 1.405285928302295 +1.761417901807171 1.446219966648215 2.490756569328167 2.358988407646676 0.34163223905449697 +4.2002188706612795 2.1161964804096782 4.2321613507763995 2.114188426858584 2.9713563619194145 +2.377242814529221 4.040703123459229 4.406895921715271 3.08892388907722 2.1222983951842385 +1.9930813469363655 2.7909922624918515 3.0626038971033953 4.491888909730542 1.6369231736655132 +3.7299600020749493 2.980309684547522 3.9299787447392616 1.12609920727636 2.902363874356926 +2.5783811394719067 4.347831242834856 4.888346395444465 3.5137741543890706 2.2406254738735787 +4.84763181226786 3.774350693888634 2.877227396051586 1.5656818933234287 1.6947223857599265 +2.4830004219925548 1.5600136762416952 3.3669420938931744 3.755091874472627 1.0012815712853398 +3.4873845999323088 1.5381516306486827 2.2568939136009454 4.521027558731143 2.9876094677103997 +3.1755539483017774 4.016259251867473 4.684875389457803 4.168598964676791 0.9865732381471497 +4.019919637789107 4.268682450253518 1.9583934890481007 2.605885786486871 0.6936347829425373 +4.737737917636114 3.2772751978992645 2.838016512099093 2.796688282768604 1.4610473566181037 +4.787925368511791 3.3403464325440404 2.3177587816463516 1.5379651191268846 1.644251480754404 +1.8975783992044448 2.0538317356113898 2.573344260621751 2.4274989877665427 0.2137427162560447 +4.2894228286345655 4.821201876993629 1.6127053006267258 3.4497386280181614 1.912454026171746 +3.3271444685910434 2.265992877737448 1.7101486376338753 4.124425585522982 2.6371909069841446 +1.2053675362490077 1.537812956309228 4.1884238220299626 1.0929274317570998 3.1132969436774482 +2.75986644950338 2.0533209471912253 2.731445582590933 4.243046986967471 1.6685758456092599 +4.23769786807442 2.612644948291416 2.1223976259904718 3.781843265827853 2.3226185273674544 +1.716806810970597 4.042196819035345 2.8000997942328194 4.475728632931352 2.866211906800605 +2.4589457016817056 3.1989549689189603 1.8990880511425283 1.4100225949793272 0.8870167619662769 +4.629673635027135 1.4538612191146871 1.7585054750820404 3.7424049402636004 3.7445482489896347 +3.26649495859989 1.4408449336759834 2.871878957151095 2.34854276872683 1.899178448597998 +4.327369274794579 2.587850425314744 4.285816862022916 1.4946936002846285 3.2888135991436522 +4.312571753783793 2.3202269460173963 3.8085779903773007 1.9494726904772772 2.7250156603495097 +3.363864862338593 2.9503639500518775 4.534702562229013 3.97473240100893 0.6960959602804714 +1.8215681150000682 4.799323852372712 3.792929601107055 3.448870480907409 2.9975666647546397 +2.964073355308311 3.516168821906211 1.76882602603788 3.522867663037976 1.83887777423295 +3.403712926136113 2.7362977286804315 3.8034923829648584 3.448477957343141 0.7559618298527541 +3.211753511571383 2.7100771303444056 3.138162915260714 1.6207997403345646 1.598145861960966 +3.769848703855772 1.618042802072618 4.093554740628306 1.4575010247771103 3.402799998795361 +3.0683225026140333 2.5088600567488673 2.3243845394042726 2.403150470039096 0.5649799112908385 +3.8690847001453843 3.8405510998505523 4.960163411194539 2.278916102664505 2.6813991302760836 +3.477278857878595 2.0367758929212965 1.6708454140535043 4.25462046205539 2.958199163465488 +2.8249052393403034 4.708247070558594 1.5474270606597034 4.2740653426181705 3.313839581793012 +4.097307884518184 2.6116646788027422 4.760366786810245 3.2803890388514034 2.09701451333599 +3.5211627747878476 3.963627369945454 2.4751322347488283 3.88887402290386 1.481364493142647 +2.8270512262884275 2.8599156740225724 1.2626198294523143 3.5006621627149292 2.2382836186239756 +2.284015817923292 1.5047321428811045 3.340630287990964 1.0177758162862318 2.4500889663246777 +3.4334383539023916 3.8693275117763153 3.7730382326999634 4.616643406526104 0.9495625557372571 +2.201829088825835 1.2884308460092178 1.772026931233921 3.2441834482095016 1.7324956451472417 +4.665888497370087 4.501829182523725 1.2424526115905268 2.604408991159098 1.37180196771815 +2.1332598722541714 3.6485952792897827 1.5234078448913837 2.995733869438135 2.112814548978074 +1.3518072185916399 3.455896611343347 2.078536069239571 3.2166496871631143 2.392173651722062 +3.477819703506769 3.6148538967629973 1.991192679213349 4.539446943244986 2.551936159914038 +4.511687885429551 4.181552139615428 3.844983353125709 4.214147929522877 0.49524952814793066 +2.129807549490308 1.8157518313327805 4.058593761761543 1.5485217728116458 2.529642738375981 +4.064172214553556 4.877251496058102 1.5843649732884209 2.192219435831445 1.015177307491365 +2.495125806886404 3.5331479675382336 1.6704072001936252 2.893466033608782 1.6041704759778919 +3.0033078002126707 4.509154926679835 2.124043854541871 2.045660808118679 1.5078857616729442 +3.30653941795102 4.241188057185604 1.0148899732998746 4.753529751098121 3.8536989330977036 +1.4292157478870617 3.2625971125264552 3.4832216435582612 1.9145310349100155 2.4128981441138806 +2.4267900108508518 3.120614742069398 2.1894045701645672 1.239973624712266 1.1759302180966942 +3.9681862927305733 4.955095761145928 4.808660262142844 2.206578557436599 2.7829515800341973 +4.328018976348598 1.848713526618397 2.4109849438370143 4.8013488212589 3.443950490286593 +1.6972859434047698 3.1825537600661606 3.1920172378206484 2.1256815474739423 1.828412505896107 +4.159934455196747 4.303490466746389 4.962902283397022 3.27012474092409 1.6988537714449525 +3.682117374985651 4.26603930329084 4.112707832893864 2.637691792584843 1.5863912309151722 +3.1378278432773006 1.5501186189245941 2.3911545421017197 3.219546648263109 1.7908249670599234 +4.055639019865836 2.4128289280222037 3.1922630922193176 2.458952256774053 1.7990469085726242 +2.0626093038510316 2.5514023034781808 3.518581876929688 4.722866360008565 1.29969985483921 +4.829759098494629 2.7637167967234926 1.6084570802107496 3.007106577554026 2.494945131486136 +3.6376224381190365 1.2268719329826006 2.5222062789798674 2.629426740886228 2.4131336940722936 +2.6500722945953323 2.8043835194386535 4.207548912702807 2.3003167698815714 1.9134645020807486 +2.4921797681291546 3.0106221537280153 4.77649539475693 1.283630674352672 3.5311310457458465 +3.822556980682205 4.364802898514529 3.86863357814792 3.5230495169888525 0.6430077594656332 +1.1356010326761603 2.819200180436459 1.1655674332215056 1.1971529013141038 1.6838954041548522 +3.5320205502090034 2.0962542444795007 2.5126658983164867 1.0835503382632519 2.0257828532827538 +4.107493150094099 4.54956526301947 2.862043239225991 4.072096169470445 1.2882763084911137 +2.2765358657914376 1.6390161804643242 2.1994378605238376 4.5634855124427816 2.4485000816261073 +2.6363953807213445 3.56459954144984 1.321406839878196 1.2777810064643607 0.9292288078480684 +4.444709949331392 3.5043571857972267 2.584675027416377 4.858610737495738 2.460700496496977 +1.3785260195753657 1.5262428113111013 4.864853979366478 3.352863200425301 1.5191893779788765 +3.3936568087932177 2.2974971147676744 1.8682181821852133 4.10359533627865 2.489674094304121 +2.2313773699748993 4.186273603701075 2.0954769173130874 4.719973536193737 3.272552793638744 +2.228573470762014 1.456578140386266 1.7749692811749385 3.7284739925577686 2.1005136151705552 +2.027761957017998 1.2566170940413754 4.684400310585332 1.2998459752802116 3.4712926192310434 +4.526123086105068 3.7725087750942747 1.7451383385871262 3.8418930575365033 2.2280742539683804 +4.409473767444947 1.9659432695188843 3.0924203761640507 3.2360336034905415 2.447747138361706 +4.002162364002764 2.7400199279244752 3.1064234409168696 4.521077853217181 1.8958509000420836 +1.6480471526305025 4.1783912140847175 3.1041740092129304 4.9315165700497605 3.121189181062615 +3.1345010252691514 3.0372554468206627 3.3493455901022338 4.431702761645173 1.086716959156437 +1.6905016953820908 4.097985561728048 4.393997654059721 2.952265676687171 2.8061663637950334 +2.43915813218911 4.2199516858318535 3.19743633546323 2.4440500651014467 1.933601963451938 +2.1100553600955596 1.052519144211589 4.6364283456907005 3.3693358521757126 1.6504260768141716 +1.873483885494852 1.3448027395003512 2.411208177490402 3.1449108158972763 0.9043358423369422 +4.514158933401669 4.109974656838583 3.101102435738556 2.1963090931971014 0.9909671650101042 +4.821400812272664 4.145695463547256 4.53858704755022 1.7838124735403724 2.8364344998443496 +3.331126210650785 2.4829174798408986 4.508145104064376 3.519535113954459 1.3026157390294528 +4.848554003222622 3.174092990501228 2.1590224089345877 1.0325138874919633 2.0181281257657564 +1.224505072074697 4.9303042557111425 1.349937086345426 1.2727713694815495 3.706602505974934 +1.1704739490405558 1.6505554281178005 4.184106179468953 1.40533686904993 2.819935656549562 +1.6741820640844565 3.102407714747098 3.856580624909287 2.244559415318377 2.153703992980852 +1.3380648469909935 1.1002305195656783 3.344430178542936 2.448279079403869 0.9271741798551174 +4.210712190499662 4.179396640078093 1.146272479510471 2.8034519118326906 1.6574752892909141 +2.732695388486153 3.807143065094964 4.604393977683863 2.1608490234830064 2.6693350769378013 +4.8713139052990915 2.9560267012489683 4.6793553529184475 4.545026178510325 1.9199920315187002 +1.507465403721214 2.534107470000994 2.6570355123510088 1.7439985457982323 1.3739106355753679 +2.6115959122285988 1.6133845447252675 2.574993106577364 4.021731051451251 1.7576907052581205 +2.539430482126953 3.2159726160942803 1.9861587345800689 4.441902895136833 2.5472315640988965 +1.5845375799175878 4.566927614573086 1.7274658803736633 4.67687377226193 4.194479375506001 +4.290506562562712 1.277065700669135 2.5923853283786866 1.5601184270904365 3.185341548974795 +2.8517324152086463 1.1026380375896956 1.4220087451970218 1.6813182275843546 1.768211681183622 +1.7298605925873494 2.22161058226254 4.20962575135516 4.643657734369562 0.6558977165877038 +4.765841614008224 1.3783561845324792 2.3750938750401764 3.722495818634507 3.645620596347383 +2.5737326012858706 4.342640041608418 1.763893765792294 4.75395103517668 3.4741151400934998 +3.591042177966465 1.1121201198624142 1.4204201122205835 1.0378591115591602 2.50826782648542 +2.5639386347551283 4.38416117418828 3.9332710825873005 2.3810007586097743 2.392227675569733 +4.506161372235404 2.1087453038898065 3.210231845066105 2.5536145195234456 2.485709177873481 +1.4881651453056906 2.2781880547632647 2.227648737216827 4.899224258838648 2.785938255811983 +4.227179893915167 2.312479268891026 3.0074713132187574 2.1948404720605494 2.0800113863797316 +1.3683044463227487 1.604078975240597 2.353196753706092 2.3197441967568055 0.2381358898882706 +2.3047210865871994 4.9928299455454646 4.029522239108795 3.152934279827235 2.827425629078034 +4.111722202350604 3.716739250755806 2.64658463582697 3.1344235100469175 0.6276928382980999 +3.381490372183654 3.896592885814563 1.3266121356531388 1.5362877461211628 0.5561424827991649 +3.7868024696886566 4.764168444648804 1.8470571428024196 2.4835289982387727 1.1663364316407134 +3.96161615283983 1.7082687159047683 1.5183686416273914 3.817705688818488 3.219398317718279 +2.8865283141512266 2.715916723587085 2.839406058954408 1.4968038236199717 1.3533990827394007 +2.7651956999697016 2.3398905663495517 3.3812819323185566 4.9662757742619235 1.6410636598505397 +1.2188710029828727 4.671387432878703 2.0278588249571543 3.743083202296653 3.855108865300735 +3.5842437943118295 2.5267283100864426 1.8159224770991838 4.605316833809384 2.9831292088381236 +3.375042953446128 2.920379368332336 1.0529496851410292 2.967235436320828 1.967538795754364 +3.2023382850020026 2.4175679975617954 1.1694825884579458 1.1076888822291848 0.7871993814647417 +3.7088869744774544 1.40767895858873 4.17511850792868 2.575025449446341 2.8028300212809705 +3.295616554945945 3.2747076150505166 1.1752050097738214 2.062482720573502 0.887524039026252 +2.991779833567536 4.832093291424908 2.696534292042896 2.850488998205901 1.8467419079884153 +4.616507341880823 3.3090384082983477 2.551528578747913 4.159344406618504 2.07232882251695 +3.4975135376021593 4.049531413997824 3.5397746551362337 4.220827376069245 0.8766735678407539 +2.5795906223205383 2.4416885841034506 3.2665461202292163 1.314138578823068 1.9572716162771144 +1.4625563835165014 2.243342353840581 4.042821224325012 1.5351966189275417 2.626367813740058 +4.919890392956409 2.2875460542837436 4.5637901214404675 2.2106191036894027 3.530814432411539 +4.44631138479793 2.2560939612854543 3.8377187975497584 4.44573092580817 2.273044458510865 +1.3945508240473932 2.107962249213998 2.2748671795511544 1.637401899781889 0.9567224490256063 +4.0737215390597985 4.98894790805439 2.2435467287337643 4.6425034310786515 2.5676122305029785 +4.895596525471577 1.2117238771914187 1.6208124013222034 4.386654092676202 4.606603732727464 +4.335790483722851 3.5995016584675876 2.6603671360321903 4.401492704491691 1.89040722579533 +3.177203816137852 1.641138771901319 2.21710375195491 1.4796506421797355 1.7039169314384013 +4.262810188469231 1.2272597534065688 4.305186512672183 1.0466733419231762 4.4533666509455365 +3.946583479837323 2.898059447251112 2.4831673494105093 3.499821128069815 1.4604751119321049 +1.2281448019701924 4.801335385570379 1.8466286860175463 3.642577076545287 3.9991401035933 +2.888239571086776 2.4933504140976828 4.880870771103023 3.7722389588713203 1.176861054415391 +4.4757026692194355 1.5841261039902457 4.128261080467867 4.773139759521879 2.9626143088969723 +4.256700112989698 4.5347738357096725 1.7046831791035695 3.210984370560971 1.5317533334885658 +3.8802766504777284 3.003826309395881 3.253594370960588 1.1443050979834397 2.284133629514472 +1.2137699170040852 4.474727815572057 4.383948527216519 2.0242790241129245 4.025156714975207 +1.4254243837046694 3.9565440465413797 3.524890211160266 2.3070156687430763 2.8088761362271746 +1.6598842006031438 1.2594073816517994 2.6755328970909424 3.100376617516764 0.5838440453602671 +3.892854006200215 4.50927094732153 4.618381559816738 1.380479556277367 3.2960551011513193 +2.5225835533401995 1.4573576837635565 1.3532822400332876 1.664356033433266 1.1097175578297245 +1.342013263917623 1.628037297038765 2.5595237209972783 2.0961755002023916 0.544519348817534 +1.7799083422964075 1.9577858513783846 4.548240230018263 2.3075857609045163 2.2477039080351786 +1.5572071514264785 2.522962227272139 2.3526422816989934 2.3920261777969802 0.9665577881293568 +1.228941002395524 4.1687734424153255 4.9588195065169565 4.668599655447583 2.954122938766684 +1.8773287779214511 1.2570162760754555 1.3009675306096358 1.5041502757109542 0.6527410113156256 +3.2832278828135837 2.3207961035799825 2.107336633389926 3.198846180616297 1.4552209527645874 +1.404810389436221 4.877164713909416 2.187359600945651 3.0514900048802835 3.5782629738033407 +3.873343336997919 4.340697047089343 2.3347665742830794 2.6774255460773193 0.5795124341093157 +3.9719728003315558 1.117119246881781 1.2779712571235118 2.3031270417436156 3.033336973431219 +1.4271872640829768 3.3159347995089687 3.748659401860286 1.0475628166168995 3.2959505480803624 +2.8526688027873894 1.522490476889757 4.076429136548478 4.5772586736222305 1.4213390179310976 +4.802113074061089 1.0462633862027366 1.1847476752530928 3.3217182267274263 4.321232464894038 +1.1879382331734774 3.8450151444152847 4.593998986889274 4.2334172462643815 2.6814318756825393 +3.6869328661686884 2.4677089561105605 2.6421456048071468 3.529841119620119 1.5081479602069876 +4.343342105577712 2.125274339337192 4.5702071819629 4.701871187795065 2.221972102900255 +2.430257652580173 3.422813504578278 1.7111859154681288 3.773145592181249 2.288415352973878 +2.4668133340453937 3.172044721612511 2.316983061496175 3.5525959966871037 1.4227053931228997 +4.695960763329579 2.8314205775187675 4.929558834562512 1.0528300559497201 4.301806147123327 +1.843189639512247 2.09037813401638 2.1996450164508103 2.450363192967456 0.3520820300030261 +4.221678528263927 2.954843233540181 2.7316513750340987 3.47732678741255 1.47000118523203 +1.6899238812948445 2.870832997486386 3.01127453034005 4.510789393924361 1.9086883367419 +1.6298124140901935 4.664791971553369 1.9236767608099452 3.440556076444431 3.392937336942597 +3.5437631194741015 4.441845200138836 4.205037561818898 4.045421108282732 0.9121561466385905 +4.408394057103913 1.7441219463442463 4.847817308303105 3.582743557576772 2.9493656055071504 +2.8208301101276763 1.6779279124427147 3.555258088351095 2.282643535268128 1.7104891797938024 +3.7719854258069763 2.8438421151663698 4.643319300492083 2.4910999268813248 2.3438212895253745 +4.3840039507967425 3.2975349450842897 3.0233355834671807 2.918393309052354 1.0915254377856536 +2.649160001900073 1.4135628920557095 3.612311982703687 3.7329832491165424 1.2414756430931002 +1.4419345436442765 2.5231247121114766 1.8856774547066908 1.0321496837167325 1.3774911383530637 +3.162453447940984 1.32496214696924 4.9144013352098295 1.1215285778204116 4.214529396610449 +4.908839788526873 2.9811472982350185 4.3891751070307485 4.541511473172585 1.9337023311711938 +3.9542102179562906 2.751437137442412 3.6930488863695907 4.151473678974728 1.2871737931157194 +1.4007160704175017 2.9679359215596945 1.0817025421324207 2.05003365689613 1.842238640793772 +1.1506477051118629 1.0214223955064323 1.811454666007089 3.422690943271584 1.6164100722947037 +4.248394051436481 2.5764667223841147 2.4232400177389963 2.932087409201583 1.7476460343646418 +2.575675229741759 1.1691338342386803 3.788128486211235 3.402905562691171 1.4583399459896491 +4.6638250642805446 1.9314153021794316 3.805622031151705 1.2306792721100162 3.754516389678794 +4.886507936700475 3.163052663701703 3.190808300098662 2.730667233601368 1.783823948461434 +2.820790903082765 2.8821570562238934 1.7080549658500006 1.0407576926517224 0.6701130170122037 +3.9396855270913185 1.911718216977706 1.359958800365571 1.3845500294681505 2.0281164018463573 +2.110805497696743 1.4548388103227547 3.4622715872752536 4.774718944950884 1.467245842254851 +4.157597003298077 4.174984961986939 3.77356223951421 2.5535730563436303 1.2201130882670603 +4.3561512012944705 1.3046910472522701 4.087627657089056 2.3710558708567975 3.5011466363172876 +1.2161580622137915 3.6212631896028897 3.7228313282243746 3.5484099064163774 2.4114214700418617 +3.855516488665904 1.0949770959023026 4.810221142518049 2.7036954863044818 3.4724671458900276 +2.687567020044638 4.941642008995384 4.50547310937641 3.510859513728261 2.4637593755197456 +4.368813961153979 3.0128565971377133 1.5748000119912122 2.496250160674775 1.6394178081071646 +4.836468114943935 1.7766945505812806 1.5749613733731067 1.583827019124505 3.0597864083702206 +1.9855961268281277 2.9418462452271217 4.54679216664039 2.9462425100972376 1.8644499167310702 +4.846370277070723 3.507142984165054 3.720946940358782 2.512104005953258 1.804115013552519 +2.880695549617395 2.3778376961351184 4.644995012242905 2.2657306592999986 2.4318233657059944 +2.132866417657189 4.246683107111842 1.6715362391721795 2.0740128281699834 2.1517919047408687 +1.8333893726614816 4.873246650837185 1.4927268178717608 3.3650120080865142 3.570179842133347 +1.9858243907571071 2.0973286117413483 2.0299887649430186 1.676842447000956 0.3703316259426663 +4.158807598117775 3.124005772860025 3.981408094074012 2.3805281446580775 1.9062086533217546 +3.7515638030562077 1.0435739493626461 4.269146630507996 2.8749325079042087 3.045823709175422 +1.566618217096007 1.6085902196008983 2.339025689665351 2.48132431628501 0.14835952322689552 +2.923113667544 2.5306857699879997 4.675820445544666 1.356048025413135 3.34288626433 +3.5968083600963707 2.313743494941687 4.092483381965097 4.176978694075602 1.2858440441838421 +4.344129534049751 1.056873847565845 3.0029032430827156 4.511282273207398 3.616802074601353 +1.4373531394286077 1.1918164457211913 1.2931701828290318 3.3082015783071332 2.0299359085249944 +1.0371447041631465 4.946863254844965 3.13403499738971 2.10730089357178 4.042286737168499 +4.693949056570302 4.544859673054721 4.4327420485065705 4.7666283851007325 0.3656606760937332 +3.73686994050827 3.726584633125587 2.8544141391786826 2.664216501260363 0.19047553390833274 +4.715913684818024 3.086287718452981 3.9402468086222964 3.3075743896493894 1.7481290512946204 +1.1048934062169495 4.881319875585048 4.536426384385366 4.6905507446577435 3.7795702397195075 +2.6708092330663464 3.6271873419351066 2.219106375022064 1.6252104533732514 1.125775933689506 +2.7678489924536147 3.8404938185646906 1.5896530510507025 2.1219528975850914 1.1974598321461118 +3.22643396271851 3.6187034823572923 2.33043810371878 4.552563271374366 2.25648302381516 +4.741199725057632 4.4172761173054305 1.0479832980530848 3.300583161307309 2.275770780986554 +3.7905127141337642 2.469394658274853 4.692790487066055 4.843255102706788 1.329658797615517 +3.993255553577467 4.796820060565409 2.1696693598733288 4.746725081586645 2.6994318123831382 +1.540390683067089 2.421115297062533 1.9058195097776527 2.8484514483320083 1.290050703375711 +3.1643652390373087 2.328697289795184 4.405781080143929 4.468460699071123 0.8380153077476549 +3.438245620358266 3.85268800883289 1.7481617192343335 4.749313989453656 3.0296332191219357 +3.129134244149108 2.300406899699016 2.401882151691486 2.899611814081469 0.966707726390013 +4.573055376224293 1.193470774760439 2.103469561749128 1.4713811286543579 3.438186711873542 +2.95069692603653 4.080540312805409 2.69866767119206 3.809078720586874 1.5841586969882353 +2.5772383197920568 3.214460919735629 3.694999233013275 2.5216494304066117 1.335216237601963 +2.2295168541784096 3.0859023159902614 1.517029767626937 2.5169804555717445 1.3165475447259747 +1.6986800067647638 2.427163995089922 2.5117786799958304 1.586539946446457 1.1776058913346934 +4.195967516181625 3.9348378364336916 4.922664323790446 4.142416560913524 0.822785075897527 +4.486572607080861 4.820962355998361 4.1163162767077 3.9670947269376255 0.36617424144373073 +4.748755616666948 3.6463017265127062 2.992310293504354 4.869764471150067 2.1772089401514876 +2.8300752972517085 4.074251767894239 3.913124995218262 4.452780517076516 1.3561722502590179 +2.828514603823266 4.92603429389043 2.8788148359532526 1.2160929088355736 2.676608499040788 +4.677020179906428 3.251486143659176 1.8615786703935218 1.2107078654222243 1.5670928795905388 +4.334682207876662 4.114154897699299 3.0957333624201504 2.064614839595943 1.0544371496894624 +4.226035318427087 2.232123561533385 4.714806128769036 2.0946705091032416 3.2925362199557324 +4.245995540905174 2.871040008018433 4.885677586545057 1.7099108221995691 3.4606353837030093 +1.5053773730371267 2.6306078321933737 1.1140561692989257 4.863558632494412 3.914704625859018 +4.3815044711105795 1.894876181074356 2.0331148667914065 1.0926815682480164 2.658521213347314 +2.142460271059401 4.213987416546641 2.5190613481930337 1.1423342300747774 2.487288136154055 +1.4198554796751637 4.0689170020422 1.0522415439710229 2.2752602742653814 2.91775628933199 +3.131351705539017 4.951458884163118 4.36177713843519 2.745359451701397 2.434254768849147 +2.373112782540599 1.8460238240459104 1.1302172320233326 4.080964293996542 2.997454085371541 +4.699438806879716 1.9908181486833696 1.279474657076363 4.684417238374412 4.35089184558116 +2.7728066847492316 2.856159506992024 1.4361506269613598 3.454910107984845 2.020479531001997 +2.7500341149767618 2.5014355441445475 1.785343934828207 2.4036077681782824 0.6663718309236588 +3.864353113921273 1.2048269072494882 1.6479939463667606 4.492902017773728 3.8944295575514682 +3.9052610740721394 3.9728049409090045 2.4998471469803487 4.055376530417263 1.5569951305906202 +1.8188452462468323 2.42660476768832 1.9756931331246257 4.819239647060288 2.9077703507702326 +4.7547797502627684 3.922340621620173 4.950485357504283 3.1945118840313533 1.9432955880245877 +4.4005391997226955 2.0758948033270928 4.773901392670625 1.7008453776661066 3.853264180023079 +1.8582846836189102 3.853504161427893 3.9937159105217184 4.3986933391112 2.035904585754278 +4.879543372422283 3.7729883116429694 1.851167374156757 2.11647137238331 1.1379148975258675 +4.573364756493931 1.9742288846753153 2.4362556237211153 2.0803210652404034 2.6233941164253562 +2.580058051568113 3.770765281828197 3.9385316572113824 2.747470140382385 1.6841648509171043 +3.6318538311627164 4.014235418390662 1.7752220909134726 3.727872817703624 1.9897388117753216 +2.203836659565543 3.67210056327929 3.313070453035728 2.4544378915140292 1.7008964597100096 +4.532835061697295 4.133168045044291 2.708962570939733 1.4516591425453078 1.3192974021245882 +1.0579114689706985 3.276606563485358 4.689960364581986 2.993698972911603 2.7928320091432206 +1.4507288349191616 1.642489030540589 4.44395315079395 2.8802112329998466 1.5754557302860495 +1.5244446114948769 1.555596599348052 4.1347904036725485 1.5146082082868402 2.620367375648589 +2.5709383329400293 1.6357166370903333 4.660987241951462 2.2768194326203366 2.5610341199286584 +3.4429754063292437 3.414582815263544 2.351785535631666 2.7500737016009635 0.39929888852664075 +2.425137882983675 3.1295214585961566 4.55924448029635 2.48629686889196 2.1893533340280618 +3.901417356974204 3.0756117528772995 1.4081099017243028 2.4926467036112867 1.3631489171785671 +4.484044327927071 2.628505577391858 1.5491042051069472 4.077988296166318 3.1366030671334486 +3.7934578329553457 2.2990294729316756 4.18124170623736 3.3479444191473533 1.7110524515381174 +4.079157385924926 4.38188501698302 3.5144441203524037 3.881576361508046 0.4758467201757411 +1.20986247287565 1.189506633045827 1.087018336049279 3.170048047484587 2.083129170007813 +2.3734683756190726 2.8417741707307544 1.0372405116921164 2.0076358534439396 1.077486629628796 +3.719163065672212 1.0597897097108233 1.7537888942183013 3.475062238488942 3.1678144787998512 +2.821804999932011 2.828595260367119 3.057805451168208 2.190661995153408 0.8671700415409123 +1.0886882638571613 2.6346332254233573 2.9309760595436845 4.237823293694054 2.0243012418112025 +2.169733587887664 2.5173520749901375 4.335122651786609 1.9625325690489284 2.3979204142924773 +1.7213686787584264 3.502291364976884 3.6913407354056704 3.387907229885307 1.8065872540677195 +2.727142748252097 4.598488001120945 2.6616822298773797 4.153523846217202 2.3932246997885898 +1.8037275061018283 1.5647381566569316 2.455691477366141 3.4910194958175023 1.0625535350929463 +4.224693586087656 3.756693093240198 1.1568241565532058 2.8290445277933984 1.7364750016329493 +4.5411708948883645 2.0170886074658556 4.895214550837801 4.062186462522439 2.6579930755369534 +4.895250296916399 4.308103372321159 1.5751475987237864 4.647278988465766 3.1277360481504246 +4.5776993836405975 1.0931179910137083 3.67305852385537 4.49464753941281 3.5801279296033814 +3.219284049737487 3.163306329718533 1.2435979483884125 4.130069750797593 2.8870145429564125 +2.3387021383804893 4.4904219192290435 2.5372071391163997 2.266993050929444 2.168620222341768 +4.689552666147312 2.260902697995809 3.3350489278549564 3.2629498113726365 2.4297199325024748 +1.143614028421326 3.8513691200594677 1.1870366251051903 2.682125090018805 3.0930934603096025 +2.348608422016156 3.4515438746942815 3.0797038131541083 4.945519410341394 2.1674257670060233 +3.3713220961316885 2.3085576907725485 1.5449924668700308 1.7632231968256402 1.0849390917444743 +2.8237879456719828 4.136579649286383 3.140032492947331 4.025534707129709 1.5835202014501404 +2.3544983382568985 3.5170069149474363 3.0848407312231014 3.08434002444007 1.1625086845208266 +2.192864107121828 1.8221252498590434 1.7927445377327116 4.672221415910981 2.903245492935068 +1.1364649792162687 3.2444838673700698 4.78748752687838 4.324098039892569 2.1583497050900164 +1.8115187680731126 2.724733071472821 4.7705144317470065 4.372249773062483 0.9962806343048702 +2.707687828627285 1.7680307100720576 3.183012909707824 3.159746730524595 0.9399451130493198 +4.1093851551801714 2.68248046277399 3.1069831939005312 1.2108878065035178 2.373022275352469 +2.233997325989647 1.3302451407446192 4.892408390587407 3.0841238163783533 2.0215491865541098 +2.849480295887448 3.3559117644729906 3.8444032458070247 2.03330154792227 1.8805749632638287 +2.2294097213448794 4.377279920881197 3.795429474917681 2.7684924382149245 2.3807448564279245 +4.524836814805539 2.9715055817280143 1.0563418621972578 1.2990862403013943 1.5721840708884274 +1.7777727826121454 3.011687808894514 4.218117766915478 4.788050113441742 1.3591795950875483 +1.34653201996813 1.61841979945206 2.1446273953460384 3.0515374438914704 0.9467886779980947 +4.213034854932471 4.016883700219351 1.8436049380700927 4.1189898924500294 2.283823978793873 +3.938723756490562 4.001393824922605 4.507890117132554 1.1438189368240317 3.3646548773476983 +1.7202271361703758 1.4755164461731214 2.1398252390295625 1.2258719015069701 0.9461469362459607 +4.421687819188134 3.447314015958056 4.187080607814891 2.8819629765497603 1.6287223028681563 +4.738347857710424 3.3441651692777103 2.628749045578137 1.3715348608715892 1.8773206638592186 +4.263164016486743 2.1514051654647783 3.4841293915868468 4.7397095351304195 2.4568286349948196 +3.465983283990398 1.111837820126314 1.8836725732511699 1.0293335307940668 2.5043753841024636 +1.7495352154806434 3.471967427472976 1.6522122507618828 3.545887330004657 2.5598394540779164 +3.610660385745454 1.3187501094930112 1.6380634367225801 1.9108445093917403 2.308086269617773 +1.6449959451764133 3.6799189260710605 1.401010056703369 2.9027726143950243 2.5290714339175433 +1.4143701533708217 2.777226103013956 3.9739593492905865 1.5261334013045689 2.801647410205527 +2.4328746507675425 4.370125077674211 1.5163140380416302 1.9699755608599863 1.9896602709598286 +2.2001835414565987 1.6573935638472959 2.925560294888682 4.2116886621389416 1.395975335326139 +3.135143387657576 3.746342032058565 3.9946675024442535 1.2474832133831861 2.8143534427966874 +2.3606627528722948 2.4356730755781317 1.7836733175496309 4.881255082520812 3.098489848167073 +4.771615340391035 1.5460802834906757 1.3951055416766258 4.502788378463608 4.479036617103458 +3.3590592849811527 1.8488307032688875 2.774146267354285 4.210541065841113 2.0842313657894738 +3.0113646599834 4.973353379115055 1.4363895157413826 4.026969490878693 3.2496929611245275 +4.719216374998788 2.3118647540724493 4.724544781540862 4.215395699788115 2.460604522109625 +1.7456015225321857 4.702324541707431 3.0431866941436527 2.743803522841674 2.971841398086312 +3.710954129295319 3.4548259500803473 2.7360753568123415 3.194810343875708 0.5253945494045438 +3.958031253494863 2.587545715004012 2.4584697407971006 2.771954291209799 1.405881636041957 +1.495051395475575 2.3536823090216226 4.1158008497466145 2.061100074163952 2.2268907298915486 +3.9931636725647217 3.3560520054305054 2.192103733439734 4.081726914295519 1.994138170244498 +2.8025831377138415 3.519452363389257 1.1333214649713854 2.0843063597168605 1.1909129929405138 +3.9586236959124923 2.975629543928695 3.7495560200409246 4.641677479122915 1.3274630693879677 +1.4215088490893684 2.930949224405978 4.1630501010864 3.6407574746735296 1.5972475807592263 +4.131078611978996 4.177245218398496 3.046261641291014 4.494449525175275 1.448923566851429 +2.6682655707060032 1.4636123177668825 2.047214302331191 1.8436594720557333 1.221729932818737 +4.225075664283527 2.243176849261767 2.391442710456576 2.021625788839875 2.0161070081964176 +2.377776651351034 3.926849379839204 2.929492519488987 1.228643824944192 2.3005461525212914 +2.4009065707675794 3.9148089208353114 3.2568870596844928 2.8577249294319547 1.565640677731754 +1.5552484620732363 4.44613730246686 4.223768371068946 4.317521212000216 2.8924086645380997 +3.9356790745173025 3.5681970545084103 3.829840627098674 3.0371142958180317 0.8737608776636101 +4.997701486924194 3.6622297532789303 3.696020041319042 3.2051508986502966 1.422827208971572 +2.744502589656096 1.128282595691119 4.897508555754651 2.1630460962242712 3.1763897763771194 +1.6179711892991908 1.7903171069595385 2.828686015128835 1.2594995890739558 1.578622549898826 +4.648012230874421 1.303818557332804 3.639021686823743 3.224719288799096 3.3697593093817177 +1.4836618456836344 4.214014625900487 1.7764040849558214 1.7592997369304704 2.730406354951451 +1.3084339983553903 1.0834470239649479 1.990581027474804 2.109602229937413 0.2545293407075321 +4.9165694226768775 3.8540306875882706 3.947540734062591 1.2622895637550013 2.887830052340681 +4.285765482373266 4.362088308983848 1.8955719171707135 4.218979657800135 2.3246609866986074 +2.2676110352715364 1.2099998228856084 2.5600002426998074 2.378164121633083 1.073129000395118 +1.6062416068867735 1.2226146913825882 3.037147023051077 4.351736050404864 1.3694210167578966 +4.3419796411214815 3.6937161241255922 3.1945210758495484 4.682732858467583 1.623274436868587 +3.227812875828752 2.706713080205985 2.862549806521104 1.6011973216725814 1.3647545889395762 +2.9510618762727865 2.570934794337611 4.005663002713028 3.546090973133711 0.596408458015314 +2.081857624337319 3.8135751852093924 4.006487377017366 4.020387616634439 1.7317733475527723 +1.0282074418310283 4.883265604032799 1.288954096306763 3.9844422142166334 4.703948301985449 +4.152449998574564 4.4205021080237685 2.998805256944651 2.8578771313576423 0.30284099782168833 +2.4390155284091763 3.780664568988837 3.101583020861526 3.56456055143058 1.4192851517225649 +1.8019116412275338 1.690230311956205 3.225231968323805 2.9000497932970655 0.34382577893888655 +3.264164909511378 3.69076914040718 4.063718420339409 3.2384516393273235 0.9290083044086576 +3.228379024311131 2.6951497155648636 1.5038832331669623 4.9493895961399215 3.4865237118071017 +2.351253338860483 4.8902560574433345 2.4963052464666444 3.6833039859436423 2.8027666353963707 +2.6240750931777854 4.21900342328893 3.3841753574694784 1.7781155125341823 2.2634541311245324 +2.6479355762703065 3.751771420572581 3.154506191555605 2.8268508169591575 1.1514389326700976 +3.1957516471221004 3.167122972232744 4.9113782016999785 2.1365766727173674 2.7749492114757985 +3.9136654598077687 3.24171861744786 1.9654067278888192 1.2509728614862934 0.9807794392320396 +1.214503006341555 4.810935207315334 4.388328484542839 2.455370594498814 4.082970827826786 +2.281850904833686 4.6256121115765065 4.80458866154843 4.102982092393276 2.4465216884618513 +4.829551943701588 4.263723165418864 3.5874200089597874 3.343998271625392 0.6159678145323957 +1.389298066808701 1.5212885599678967 1.7729349257354126 2.7156779373197817 0.9519379581546129 +1.0095887097220229 1.352299497045513 4.390935528601298 3.0596407774090983 1.3746986572699438 +4.486568475083407 4.607383168796421 2.9022360315200193 4.568662700038899 1.6708004164974044 +2.967827442756017 1.9865931299760655 3.9893257014754546 3.3676508071881317 1.1615939267936526 +2.009778597021765 3.787668092562316 4.731267215861733 1.8511378796244333 3.3846766539520643 +3.6339952784305862 4.800257998996312 1.5633836749365901 4.475067161768488 3.136569696479089 +3.728677838995503 1.3912828110637738 4.367470526203288 3.73197172019444 2.422245703688757 +1.8134405512714435 2.930279112883143 1.7213740469126302 2.49182092279581 1.3568038772280397 +3.30420622466526 3.620869885432686 1.9711379856589715 3.9972622537527736 2.050720708387486 +4.391724604088602 2.7122880621997383 4.363128011353111 2.7004399962733485 2.363268612265966 +3.0091990252268106 2.5033034606660576 1.098912230063258 1.2119787460638252 0.5183766577333027 +3.6664896384852113 4.066380276944434 1.0038281229003463 4.5962318306062055 3.614592220689096 +1.8525278194818466 1.5514916022187597 4.755772847636569 4.480491058115831 0.40792507614243145 +3.4683104405207614 3.91423422635669 1.6431206226235395 3.4482881584308127 1.859429443433321 +4.40489094967262 1.3933786776457455 4.330411744991894 3.4055063292317063 3.1503422342137672 +1.8044029967345767 3.157175894051628 1.4492200678330622 2.1070406198992475 1.5042348189149959 +2.882341920991746 2.070272829870006 2.9372902464512323 4.129590522708791 1.442579688446756 +3.694341711240762 3.9295440301890037 2.393544920321149 1.3857144874998992 1.034911741241396 +1.216939976683257 3.05581131941653 3.979707177834972 1.5530685998634968 3.0446711814619807 +4.525707951517635 3.192484140927804 2.5836080864897584 2.5891875064274523 1.3332354852202633 +3.836162257619984 4.59223150746592 3.8430703700924704 1.487793133393518 2.4736555080032567 +1.8314368775364835 4.046445525564378 2.2470093917027816 2.2385191368436046 2.2150249197844105 +4.600118582828763 4.022396694970181 3.4560737620739506 3.8712270673262172 0.7114174910506252 +2.7009245287579073 4.646127818120366 4.5547745495252 1.461002184888672 3.654482628380551 +4.408951878326622 4.843579655269918 1.878646075576313 1.9434809910027058 0.43943699292278426 +3.6650950864036544 3.983869955951551 2.111044852102973 4.3719881787302874 2.2833050921144693 +3.6247058856762893 2.887241596170997 3.2787038691947785 4.728058654820844 1.626186604579168 +3.323929239980105 2.474493854963274 2.990478332356546 3.822293159204332 1.1888887161894104 +2.141850469991139 4.002620422410148 1.3892951258201758 3.0838819036804646 2.5167616421751893 +2.2116342154593713 2.4272873415427982 3.790164604361909 2.017988826964001 1.7852487940859763 +3.0385150487122035 1.2141507198332406 4.358501079665146 1.9682628138620166 3.0069160566593043 +3.4140788464803054 2.727293461898706 1.8379598304089004 2.584024382839585 1.0140446148313658 +1.3455713444142918 4.637507715395751 2.500298653940495 2.8361237445161267 3.3090215414908846 +2.8453562475454777 4.075877234217771 4.754396300090681 3.3673026709338942 1.8542412557939432 +2.5328217377745186 1.8812094768803616 3.552942256824318 2.4248463280935857 1.302765889546717 +1.5724146758235524 4.1216661237738546 2.7139728126614298 1.939869543192286 2.664191963181244 +1.9528575724893966 2.5089658572851317 3.7672879516796565 1.9944914662975641 1.8579730361341504 +3.9765464946680154 4.254825238807561 3.064752744486183 2.9999068939901825 0.2857342187530786 +1.4406187303874765 4.884498269193655 1.9783755433713623 4.532241712128282 4.287486289859013 +2.4439955473135746 3.8190426853055497 4.013082714023831 2.786824311490759 1.842407202950228 +4.056542644923885 4.349507735754932 1.6121710445687998 3.350147536642276 1.7624956259366065 +3.0382702852336863 2.657808941755417 1.8587614759694921 3.8186089838270125 1.9964350948469682 +1.0639965346712805 2.037144139859932 3.0433320369231116 3.6826648880273907 1.1643722583373128 +1.5558881795960513 4.257619737582788 1.5302693808908403 3.1336568314650317 3.141688197145007 +3.3825747567629563 4.2377398839430995 3.5584635319156876 3.070305282625843 0.9846856712143001 +3.4984872262329922 3.9951654157800522 2.8159721185950866 4.14072449225543 1.4147996591356882 +3.9221024286150876 2.7870136468683175 1.7345354082995335 3.758547239920239 2.3205711445650548 +1.2836022573834822 2.6928654028271346 4.146800142532377 2.4510627862278724 2.2048917875198155 +3.1504159565833687 3.117955672910248 4.346800252188812 1.7611657242106302 2.5858382745812034 +3.824885323235888 3.2874480584781147 2.120322579138571 3.9548943698858263 1.911672688761313 +1.855998808587013 4.962209772702485 4.156034920802703 1.5734833402014226 4.039569187432906 +3.663263004055466 4.615133756048105 2.1472484644190857 1.1148199182302698 1.4042672934611076 +4.911425924293081 1.8485219711170657 1.7971220074976548 1.3309219440308602 3.0981806153866662 +1.4110677413934831 2.5342702931163648 2.2653007049523826 4.060805508409249 2.1178813638713274 +2.1429751132976196 4.041182892731303 1.5417758713104894 3.216915978907907 2.5316569976961816 +2.3636644791550956 1.6243501974757169 4.507693036029115 4.043786809516552 0.8728084521200635 +1.6865982645811477 2.171185106789381 1.0144685175289774 4.702409730998854 3.719641757165737 +4.57197550533135 3.8611694660907165 1.563506762585694 1.2775677512541472 0.7661633922488204 +3.422140550827769 2.7883123355193207 1.5685089362127358 4.958073175764099 3.448316102181832 +4.639130896121846 1.5174145633429603 3.0079352839200304 1.2280035011543706 3.593503863033654 +2.5267812312554496 3.2392185035501475 3.8250787904662005 3.7851575225166307 0.7135548854779223 +3.0823446902618463 3.0432240981011223 1.9928486078126775 1.2643538551310463 0.7295443957811456 +3.6566631573025297 4.680257265416938 1.7083412298168006 3.216644739757079 1.8228341603845084 +3.0430314684941107 1.5971799455765425 4.755395031467975 3.6716385998222623 1.8069351481047955 +4.3570350553295585 4.599046485819336 2.96474274292466 4.235735373735988 1.2938283503094257 +4.569065334053075 4.05891291607118 4.317096525031976 1.7395290990664019 2.6275671875275752 +3.9386382054685876 2.971963897150573 2.1651388569892602 3.2859318579169736 1.4800797847719767 +4.118497516798161 2.4186482498585646 3.934183204742004 4.165822130495134 1.7155594196177373 +3.2948095067251684 2.365325190937156 2.4469824790491947 2.989141907205324 1.0760473683042442 +3.090315935024857 2.5337849207605374 1.6703002024591331 4.19673553078782 2.5870064240479484 +1.8498695260508464 2.9406351604639953 3.5760311318372913 3.759115283650774 1.1060241750802655 +4.052761404885315 1.5884266466599706 3.5261275568481776 1.684839274440257 3.0762458191000075 +4.730267613614391 2.5975918789619996 2.7867481662414435 3.5561425122094468 2.2672171154926137 +4.076495074622647 1.4252279301869892 3.778702113231998 4.336222802881968 2.709252072168957 +1.7452272966681686 2.703118969042366 2.4116566574533627 3.708290933818826 1.612084645001504 +3.6632895698760493 1.0607390341972076 1.3083103646706866 1.2676286448160483 2.6028684740287122 +3.8083215018514633 3.6579942260954628 4.402458177777971 3.057286423594535 1.3535454695314686 +2.093245060456331 1.6347770148946736 4.983979016769835 4.87161350411943 0.47203702951602683 +3.8264205651710737 3.5536447055508047 1.0778791783902695 1.7792767639100124 0.7525724168241232 +4.715882090288179 2.8251546772397664 1.1771826724453276 3.340582130431143 2.873177224827258 +2.6471143520880838 2.133678039588144 2.2098143265687167 4.27570968303406 2.1287415227919535 +3.341732839601363 4.713072426171678 1.4269877212533912 1.9985407864607407 1.4856800355536715 +1.2054633153208338 1.553790709888137 3.799559990439605 4.16778584338547 0.5068749871356405 +4.712578628037313 4.933340296872149 1.5437622351698934 4.7942260809303 3.2579519528412746 +2.577691589774355 1.3425125636566073 3.3734221354404395 2.3786847504968973 1.5859286527348901 +2.1029644749744643 3.8737789122079076 3.9551791319253318 3.379980262195918 1.861890842893963 +3.2932182828665906 4.731683640125763 1.255486746089883 3.1744315566021255 2.398235136475701 +3.423719586092204 2.586063625934546 1.9247470021079165 2.6071865585716782 1.0804588172688967 +4.588578119843175 4.836071159088704 2.7774214705398284 2.975678592949413 0.31710990375754267 +3.5694957363519513 2.709147838398453 2.0326040944549955 2.1793263132023517 0.8727691074890025 +2.9970157724024675 3.837833051718711 1.5601166084430833 3.0434409985432787 1.7050586334384183 +3.922722211513119 3.265579359517733 3.598823018136146 3.8779210040275265 0.7139554703602002 +3.7036222912099155 4.866702042522263 1.2093657225966012 3.022590222125341 2.1541907050221996 +4.567982978112807 4.079863485149359 2.2149476148575014 4.417681439556368 2.2561686421638325 +4.624568317630498 1.8002867837604786 2.8861630476284414 4.178241707458794 3.1058064082856465 +4.98128058593508 1.0320209283471313 2.57032030538761 4.152738805701933 4.254491762030891 +2.2806158424502745 4.841805689857868 1.541755874962023 3.454187551714764 3.1964180503668524 +3.5676875956469263 1.741662016391785 4.388729615768074 3.5580116749946322 2.0061061071680486 +3.822093207432478 2.74458892632417 2.1070600318502586 1.3061716736804545 1.3425489332082672 +1.214761448337934 3.43308497206208 4.918652647037498 1.3369309656977664 4.213038031929813 +4.565665448426093 3.180450687439992 2.6886493688713764 1.0098513023712035 2.1765070370064277 +1.7664170738818878 1.0829907233838232 1.7244178044655523 3.0034246672361493 1.4501483136456728 +4.955468685201579 4.781324883658845 1.8065320044737225 4.320312504960714 2.519805244110025 +4.066850257410584 1.935699387162967 3.3462622721731132 3.7055370429723853 2.161222430174656 +4.912580159854887 4.105932688268719 3.563229945137258 1.6776309429443166 2.050893400566537 +4.030948102791079 3.726534333560015 1.9945995198820685 2.2968699560046946 0.4289931927795895 +2.929079841096773 2.7355370786483424 4.801963101051442 2.2218921440739505 2.587320031216648 +3.550885938429044 3.6863636232274084 3.0546349556713634 1.0815564667524087 1.9777241785731978 +2.1399466731072208 4.450247784929264 4.093344404759262 4.828930595027376 2.424577957212209 +3.985792675672315 1.6657122764485726 1.7264843098345763 4.33881845036762 3.4938607185542927 +2.19623255354243 1.0724890352324001 1.3954266768992705 2.6403995779135334 1.6771276096957184 +3.2267989922530558 4.162876132898223 1.1956881273719326 2.815632542803335 1.8709517156585898 +3.3819629302182475 4.43114856416371 1.3809282316588147 3.492134347947904 2.3575372234461116 +4.393867951620917 2.310043922723374 3.7854420737521517 1.1485536631831423 3.3608783187143128 +1.3879325759437942 4.950401066715774 2.0103832833375668 1.8898792277418788 3.5645059931438174 +1.7808121742518677 3.027957130272257 4.419372484747361 3.823289635884241 1.3822754081715671 +2.590172453503191 1.8254308481692298 3.663545045838286 3.138669215359437 0.9275367164428723 +1.4772487353478096 2.7206735471610797 4.839795695161552 2.7445647364863484 2.436410891623964 +2.044721635027372 4.3403744904799915 1.1391394227329452 2.6191693544810386 2.731393532909169 +1.6815932530089226 4.975962379624995 1.4326462663352437 3.8396654514816286 4.080025649437013 +3.0290182630261855 2.33434115817704 4.55375422139471 2.6177108715994817 2.0569006131283833 +4.216010724154069 4.921229492686118 1.1271451438670455 2.817045285895469 1.8311460896164307 +1.6623193048543277 2.0040290612967455 1.404197774351183 3.779531645970705 2.3997867737178074 +3.859368037980085 3.123691753603919 4.7466721817390365 1.2318982879133604 3.5909407012803802 +4.558834995878573 3.6475374713710336 4.038233594480888 1.744178614271032 2.4684309652893295 +4.612179016044384 3.2702447647929254 4.639907547485034 4.362164205567327 1.3703754590116641 +1.1988364180534297 3.720415648460024 2.1247174657151895 1.5066052900949671 2.5962327470525204 +4.940827570232435 3.3603833360978066 3.0670007493499987 2.0578833107078194 1.8751325238982832 +2.319700099236485 1.1621201352307229 2.3866807639303818 1.1653369845989419 1.6827572612766186 +4.2761123765587845 3.1735788656973742 2.1063107905690184 3.6547047067300555 1.9008166303399443 +4.831341732507864 3.927972122687466 2.818737472176373 2.4485846409800143 0.9762631665640873 +2.1986325310158397 4.118182836087808 2.6141780670445613 2.9378322056276773 1.9466446453125092 +1.1406722544557435 4.313057318132119 4.5924465788706454 3.994722046664256 3.228204084105945 +4.32735806765934 2.5486320771149726 2.2478292686149275 2.012707943074396 1.7941984804257238 +1.370301185057535 1.3509703614947455 1.1462326957191409 1.0434449892622286 0.10458964259566081 +3.6634243391645342 3.5913560551741903 4.846189879733232 3.701308223301336 1.1471476996409635 +1.0643047486516646 1.9052524697179614 1.8276662726442447 4.666142594199979 2.9604291745622238 +1.8829586337564113 2.808142568069002 1.5844078580544942 2.0836754809894633 1.051300847341644 +3.7623165500780766 1.1245661884516354 4.698039752572885 1.3024738359249306 4.299720323993374 +1.208823582341783 4.969608536350942 2.2740715752577576 4.924709346030081 4.601019893691674 +1.5149594709935759 2.849651398085149 2.944002659373477 2.5118977385402514 1.4028960057152153 +2.3975410830537593 3.8146823261961402 2.033809169936117 2.9188541321729926 1.6708063586771524 +2.6806852996150745 2.3390112671190337 4.289292519441458 1.9790390660198804 2.3353826589080495 +1.0410725503914757 1.8731752735296667 4.606206845423032 2.5188763421738356 2.2470744472866353 +4.926264264283114 4.397946797069701 1.2019443536634813 3.5954278899040553 2.4510982812644375 +2.399447695654915 2.719294895343318 4.230743446143739 4.406214706165602 0.3648183030525925 +4.943410267907958 2.716056800013597 3.595674610245444 2.3932395905119104 2.531196050807329 +1.1619519106342064 3.676796564363617 1.5845195893070936 2.8873480007515604 2.8322792062327315 +1.643555771395322 2.9057279910653238 4.752113146928646 2.9117787506511794 2.2315710614337707 +3.3597379041869484 1.6711816349336845 4.412673223359896 1.3726803989343348 3.4774672747552065 +4.571882782532642 2.994594157008039 4.767843847753973 1.5938463680550559 3.544305208266405 +4.145133440888255 3.039985957135152 4.644552595157861 1.7057429492233354 3.1397377431695825 +3.175986341230436 3.3080242500536423 4.841639336329333 1.8854212886563801 2.9591652800669466 +2.944803292912201 4.132798478483175 1.276894879911843 1.7188807675954592 1.2675504273405802 +4.29082618233913 1.5023582277291814 1.008248598055839 1.2012821167354124 2.7951414048703165 +2.233882587065401 1.9538106385023282 3.1580146123840693 1.5688971336738868 1.6136092022277648 +1.4935962814691757 2.037562188310791 2.7856352962365594 3.3842824389399926 0.8088740997664626 +1.6259712323752114 4.847291303906347 1.8279612328698867 1.143341836875801 3.2932668766166935 +1.3891514476168432 1.3133509379494068 2.664201341882888 4.216345198177596 1.5539936511772656 +4.078327918889371 3.101154034437484 2.873446860142553 3.405692046420457 1.11272356799467 +1.4365092256963643 4.96605768412857 3.0055108996471196 2.3105013561637 3.597325476788859 +2.537580881100751 4.486778238703672 2.4157189302349726 4.888953527842121 3.149009322578643 +3.6991787560719 1.1235832524936793 3.917658557215975 4.328173351468356 2.608105556597053 +3.6462815507974105 2.5331675918369614 1.1478181656632933 1.0817625703666143 1.115072207214673 +1.5953640706901098 2.2500259091436465 3.1351621400543443 3.411714149710258 0.7106779416670319 +1.1502729693130629 3.2856720409115407 3.4394349245839178 4.277013033009451 2.2937886307803814 +3.2555236770908995 4.769780381732279 4.180895862519243 3.86175768501127 1.5475214195268767 +3.9356390477324092 4.490396007258642 4.488509946997376 3.8223474488027955 0.8669070066296817 +2.0416074214360402 4.866489470345256 4.561085773946765 3.8936925667521076 2.902649183635373 +3.040479828985944 3.8748611177900734 1.143978686666871 4.671543964345968 3.624901229467314 +3.4391493456313795 4.5909586667680395 3.6158088654750578 2.280841014641442 1.7631800461145812 +3.694259189973119 4.086082188354827 3.410512697366461 2.4599680697838693 1.0281344032211739 +3.8532305249916656 4.08745403288299 4.216318972566954 4.771943538167269 0.6029753805483735 +1.7225421399311118 2.0581045046688566 3.1910216933179596 3.515907229355058 0.46706820931690485 +1.2387316147610883 3.869623954713656 4.8222269788208125 3.5275611810464986 2.932192700411707 +3.4931598892053604 1.4688567311557459 1.5675785630911183 1.5343822361097148 2.02457533122744 +2.250363594777753 4.237247020345384 1.3562753005643104 1.6412239036770284 2.0072123587730455 +4.320519886612513 2.0086546060064685 4.823531891835964 3.1963850344004885 2.827070563557587 +1.7715396757510473 2.4899331906487285 1.2291709677740923 1.8817412421752855 0.97053449463638 +1.4994481581751655 1.9916346677275296 4.844993816941649 4.438560687129655 0.6383067046444934 +1.688770161325884 4.16658392717783 1.2928516605554372 3.513182838732963 3.3270755325108867 +1.1186320968379841 1.094677695380688 2.053474554539562 4.0752970856429585 2.021964431098263 +1.8927052494597656 3.345094424312355 4.385808187242822 2.7347518473734524 2.1989591521107945 +3.7769283848354096 1.4638732859408408 3.7360253304946305 4.833880679643087 2.5603730701161584 +1.8156807653743137 2.3278539473026862 4.9928382064095285 1.9767897174564055 3.0592270030193984 +1.3638344664487905 1.7090842964421213 3.184076064082901 1.9688911137475147 1.2632782388025368 +3.971769383335242 3.579615980626374 4.302150813244005 4.0664709775532355 0.45752516456187586 +2.6300761971004976 4.028568385759188 4.244698973944077 1.081521574100814 3.4585360580191384 +2.2574362520045534 2.788972725929146 2.716340956157147 1.0363517320818927 1.7620711722632443 +4.115423460828088 2.0761220784150733 2.103581595213291 4.811897422917381 3.3902396303069975 +3.4613502022349407 3.8840392858935373 2.511744323394022 3.1212811056811045 0.7417554518876381 +3.639444260993467 1.4663956904675497 1.6522658066117248 3.6494917550360295 2.9514490642604856 +4.87889552149973 4.979773754729151 3.7093334214274134 3.4470907751438054 0.28097619733585816 +2.928865038429923 1.026158805101368 3.518266183016173 1.5893358988927009 2.7094396194335086 +2.0387057124449415 4.7516257100004085 2.8174179599245157 3.0855729068375117 2.726140493204682 +2.190588251539566 2.400903227889084 3.9472785065063483 2.5459979241856137 1.4169755324867241 +4.173669917802281 2.639772507928279 4.227566952896833 4.972490700892251 1.7052133750195932 +3.7067124004352388 2.341143174037829 1.7894674670419768 3.2703656189329378 2.0144077661580053 +2.3131553904498383 4.189993458488019 2.201652637926856 2.6545018262554096 1.9306976772677595 +3.0865033640700785 3.213227171896744 2.4824664034934383 3.7898376898416055 1.3134986120425676 +4.9072173890778314 4.066650236253814 1.776005401291124 3.5441909015192743 1.9578133469827377 +3.041544204064717 4.477777057702592 3.067927230105829 3.3078455980484494 1.4561337964435284 +3.178657733279584 1.35275735788316 3.438850192848276 2.5964980208521147 2.0108379752082097 +2.3733100944987826 2.8089928019988686 4.449476150213513 1.3306152229000499 3.149144789547982 +2.187684140949956 4.886970592565511 1.3896675140790493 3.8940377990846673 3.6821213820696372 +2.5969404144927566 3.255526461513083 3.573410319340038 4.727374459581187 1.3286718249034835 +4.324673058467399 4.249182613966652 4.677400220440159 2.834082818572594 1.8448625561918455 +3.343439932212942 2.9871879261978584 4.8836039672993286 4.007185446915625 0.9460575641372627 +3.718899572050738 2.6421999237378473 4.624482685391003 1.0798820456809373 3.704520998416679 +2.6592056984149206 2.5858761602867784 2.2303724461264793 1.3772137732869414 0.8563042346055568 +1.5515404944587745 1.07686208552209 4.007318666590761 3.8198780559778944 0.5103465238615685 +3.04853003474235 2.5342025916533495 3.7503683798240854 4.801787264064991 1.1704761376691368 +1.6277477121559705 4.346017441654329 3.0806491248626924 4.085698597553658 2.898122627644225 +2.0525810909169064 2.031999839840705 3.8892961430628668 3.68066726385228 0.20964159209595595 +1.8241675028309103 3.018591523520788 1.8403179609991587 1.3217204329308743 1.3021490457391995 +3.4291562736221253 4.241574317371308 4.001895964265078 2.29738089241802 1.8882252799819808 +4.621561009951505 2.8701679293351567 2.3864984076875904 3.6571759571551734 2.1637927713974285 +3.344181149623962 4.835511295315756 2.4752696257973734 2.4758175694820053 1.4913302463543714 +1.2059411297833695 3.610770053822873 4.128536345279504 2.9122839487431023 2.69489740917489 +1.69509341327369 4.512884442019985 2.776357864550789 1.6603283985749702 3.0307537099885526 +3.3876279474237654 1.5656881855480598 1.1992431327393054 1.2978646498001392 1.8246069986523354 +4.089741418172004 3.435472105844444 3.502474630102455 1.6161134578224354 1.9966038178214593 +3.419358218018841 2.2995587134689512 1.6186679661325751 1.8836427354524767 1.1507226246000006 +3.8363062372920473 1.4339248406105645 2.456745642428766 3.692759714952803 2.701697089349346 +3.5006948415229524 1.3947789832459634 1.4629024501548278 1.1946558542210224 2.122931425734845 +1.4944644554859163 1.7807759547191755 3.9496090623472404 3.941422074113071 0.28642852750650205 +2.048356001984582 1.1383972698809277 4.973955042559311 3.6546560085540203 1.602677395878217 +1.9339699243787085 3.369568655337673 4.862021040774906 3.792270725179745 1.790337804451142 +4.240271067540743 3.9538527876728673 1.5348737922114948 2.6198151721784875 1.122111059123452 +1.3090235133270842 3.3337994544812215 1.7816865651498497 2.316630876815623 2.094249991873031 +3.3716514461210365 4.193877873112971 1.7537001061585151 3.2441229174271076 1.7021799122283452 +3.6704507802986672 1.479924162987452 2.861503474911635 2.8010471878130963 2.1913607242530055 +3.9542527929967117 4.319988191946768 4.0891379611322165 2.2578262976706487 1.8674755127646336 +2.7740835686631478 1.1852705899077347 2.221013284635181 1.1063275361815466 1.9408377055455428 +4.6032732937163985 3.822922490281958 2.8839405782375005 3.4108841041061964 0.9416033431736051 +2.4966707245522692 1.3546724553240277 3.5912048519366437 4.646838219269906 1.5551597516485762 +4.345636399905546 3.5812580941616643 1.7206386258493143 3.957579820040924 2.3639331844540936 +2.3949063571080007 1.2023470565649212 2.1317109034213497 4.604864969310397 2.7456672629682073 +2.6538275037917347 1.6372251505911861 4.537321038242101 4.807600301522307 1.0519178792530262 +2.070952569511106 4.822450233151621 1.186457761058437 4.018799377152743 3.9487844235003404 +4.591790714156806 3.8060216723411373 1.406722677216297 3.1343565431010076 1.8979335503719998 +1.6594351846203796 2.6351781545260526 1.2829638448751046 3.0257862526520425 1.997374348581093 +4.771441977552716 2.801432038674128 2.238922820329711 1.7670404290544117 2.025737433745083 +2.8625550015119865 2.32374490735039 3.2856617645218944 2.8439722848974376 0.6967107821624063 +2.420943286140754 3.185416662554608 1.598435810269598 3.8471689122835704 2.3751252824512186 +1.9327090207171933 2.2884005216749923 2.2820328626425144 3.988751253511534 1.7433886857451348 +4.756054158499102 4.451581826296545 2.2265126568431453 3.4710821867715667 1.2812715230984866 +2.3151464010424476 3.550138077949713 2.334915896688256 1.1486588373628472 1.7124281745023893 +2.5805194072622335 2.768586391934923 2.186046104580111 1.2245201462117201 0.9797455584692029 +4.866744643995948 3.172850547489214 4.828741047480641 1.3096277868611863 3.9055646648401625 +1.3443653191697837 3.712452256855063 4.495058141214031 2.802374812287695 2.910843966354223 +3.161140965799879 3.2906217005489555 4.063037147755343 4.573372649541316 0.5265050665039244 +4.06155511999842 1.6198956316880393 3.3035338102654492 3.8251088845111445 2.496746205550439 +2.9313525896275188 4.945726125925296 4.010496535257159 4.951865939658975 2.2234831007409612 +3.6829576149888936 4.88818184901077 2.495985888867941 3.223646175575802 1.407854732252367 +1.6883126996354805 4.705847054884203 1.8805931776695175 1.9475822324291778 3.0182778398556875 +3.4499920546678617 3.315660560574655 3.2457699735696295 2.937671177766677 0.33610983068119676 +2.1825781032855924 3.985207195409774 2.528959611208195 1.0079087233028923 2.358615578548137 +1.067405759212357 4.496122126868208 1.8180970035726496 1.4240151533158212 3.451289097501538 +3.2186996611200813 4.429952530712951 4.283213971816172 4.570772689267205 1.2449190857557948 +1.8992623926365266 2.4201298608243964 2.570541938238119 4.66173336357943 2.1550834083249453 +2.6668847208253887 4.792433403024008 1.9567223659670119 3.341855287082103 2.5370357525177116 +3.900463183330917 4.744828878027194 1.3263607253062966 4.507000987543643 3.2908093083837575 +1.8650152062400376 4.392123422571877 4.77557986795986 3.920478065569107 2.6678596345204904 +4.360591046888462 1.549012366981354 2.110743291046153 2.3724545324946993 2.823732892326882 +4.2169361115203285 3.7347992473671265 4.475210388088844 3.423767002082213 1.1567148091697337 +2.600853759711955 2.349401772380846 2.2446489696866174 3.962703060853073 1.7363576711341937 +4.6781747391867246 4.489778139764875 2.5566509105213755 3.374935411097127 0.8396920879442795 +4.377799970243309 2.9196077739046755 4.291747062863557 2.960307008483887 1.974603023361766 +2.292228548669239 4.142134146156511 3.1708674155461853 2.1974521296992626 2.0903798789538683 +1.6945922869724002 3.209960629772827 2.4012874528596444 2.5068206935344524 1.519038669438352 +1.6310097287005867 1.4584112435744427 2.427788316472751 3.5414978959101444 1.127004553849919 +4.958130769969108 4.776030448275765 1.006766503425652 2.75523391636739 1.7579245778132784 +4.366658981820091 1.92570830147997 4.309110181220365 2.4647730650078588 3.0593822288318218 +2.0665670879872695 1.6714900976786868 4.8661142324701 4.200328068158816 0.774181532238802 +4.8116514782562625 3.1704367824348036 1.399022765554378 1.3046725771779442 1.6439244617156203 +1.591301727250487 2.639929923043186 1.1599315094078841 2.3267372799136745 1.5687755732089477 +4.840490865650752 3.9772612756983814 3.353722971946357 4.279308779401939 1.2656517735667023 +2.6588176501223266 3.6426105516764586 4.309345265053556 2.2725026793536323 2.2619850114598576 +3.749224569682588 3.489465465610352 1.2724716710425312 2.6095088213205297 1.3620363920879361 +1.2492253710960042 4.372978180056787 2.000085504735935 1.7410370360013085 3.1344756691740545 +3.0915956312041994 2.995643716371233 2.5714269492343647 1.947838759815172 0.6309270955849176 +2.5321916233614896 4.634484107494657 1.79211895762738 1.3768352850868975 2.142917221341393 +1.0979719320052066 3.9720447352790766 3.5050099912294383 3.9266421016814688 2.9048352991319066 +1.1026238577250607 2.9391286054380594 3.35764894356915 4.656861880249979 2.2496008408629313 +4.076397198207807 4.783845318987129 3.1739882467670557 4.7919539669591105 1.7658697333922422 +1.5945583277286284 4.258704810637189 1.1767264996546367 2.0127376920871503 2.7922376682987586 +1.2574377086365325 4.1343976230080886 1.2155118369854678 3.2220284070021337 3.50756426807154 +3.682645173922905 1.9398596262864904 3.8971869390028515 1.5894099348377488 2.8919087409535615 +4.013997341131718 4.511770516818897 1.149829570239798 3.102336478355238 2.014959394298608 +3.70480466654087 4.780262315318176 1.2150372015517665 3.5571226531489364 2.577202634038839 +3.517693413074756 4.987407593884511 2.7924379147267926 3.615290639865611 1.6843830860411972 +1.8500732607405452 2.3212823692834967 1.2153158336358079 2.483968402858844 1.353335644018162 +4.883666864881809 3.2945337514374176 4.3611619844054115 3.3995513761202942 1.857428064343795 +1.4851574428266376 4.192714360470935 4.194708749187907 1.696433484763583 3.6840526270831035 +2.6769706582319697 3.122316637600898 2.5824680256680685 4.1749403391127675 1.6535722271579132 +1.732804848291114 1.170036677122328 1.3744541191208803 4.91686750267896 3.5868371296299557 +3.619365116980622 4.6549993321163825 3.158402780314554 4.0127132287048735 1.342529169064394 +4.911312420054568 3.6072494693416495 3.701755915186087 2.3985074262072628 1.8436476896217646 +2.1905312777870196 4.052056480671785 3.088044532184467 2.9732227627938994 1.8650630337072118 +1.5600301737425784 2.839774197934082 1.9590685439688125 4.0753857155656785 2.47316459991033 +3.294961302942085 4.47504544099519 3.1864960355082705 4.771436255400825 1.976014694661353 +4.90532479260181 2.5416245673494524 4.118882901511188 3.9329134685180414 2.371004720549042 +1.9166639328356507 2.420737067673961 1.8802197086397023 2.4495184788371747 0.7603885947422382 +1.3808255956625057 3.5401133618812466 1.0327123781764525 4.6731995039861705 4.232690653771927 +3.408002328927031 4.653314885719057 1.4063203812558362 3.7121727212928195 2.620640833490527 +2.8557989630057596 3.1642924927275793 3.0230436935861658 3.8739690241730678 0.9051199788506802 +2.8259583081273747 1.100216368942886 1.474285273570787 4.577561791494167 3.5508464325220968 +1.261200006530573 2.469893725858861 1.7663891816329302 2.7807358546600223 1.5779225837235427 +1.261063193450601 1.8431963468235222 3.190770349823186 2.2905599190860233 1.0720344340849735 +3.4531051796737975 1.6239104290167647 4.523736776796232 2.485448247593236 2.7387175035245526 +2.8428566058229876 1.3598412058270815 2.7026078069378894 3.103840193400568 1.5363339821053084 +4.673290483617939 1.5153365636985834 2.5354662904748 2.5433847470523054 3.157963847527168 +1.6199460559880952 3.550700835493192 3.3351544599214438 3.4954305198962428 1.9373957866122296 +2.072021552366432 4.628862413928706 2.790802317109408 4.554007777011689 3.1058539381599592 +4.0926839466260585 1.157658826211747 1.3759634909655372 1.130780212656862 2.945248257350343 +1.9816440998711986 4.676080520196928 3.728525378490986 2.36442485233498 3.020059249193105 +3.420058224998696 4.066518379777225 3.241127933112589 1.134280957854703 2.203795568756227 +3.24870968322525 4.360390764692042 3.4942831134502894 4.09085807226494 1.2616404037505606 +4.624286422138523 2.605528187185547 4.458194800191812 3.020178679219013 2.4785631271702786 +3.9425457044212235 4.1611403977266015 3.7581785670475716 4.574819245878096 0.845390819835449 +1.9977698358163067 1.4325101126080746 3.5190664605648547 2.4464450556313064 1.212450095056727 +1.6809747234394017 2.6533048686710585 2.4892724441114544 1.3239605925173876 1.517688249540006 +2.0444793036066846 3.3484881897776178 3.6608751263066335 1.917041676240765 2.1774742884317573 +4.603750842750667 1.443350054200979 2.4780078782896724 1.3961320400782342 3.3404473463252184 +1.7388294985951576 2.216501610360492 1.2744225717765598 2.0481164254019397 0.9092704908309985 +1.0695387625569355 1.2260177434033355 3.1152550860997597 4.54795858669636 1.4412234358587435 +4.8870924024677045 2.4489692385790773 1.8623499727649357 4.440720800064934 3.5485829122851236 +3.299712823451869 3.3874750108238123 1.2392657645330685 1.6516656994963248 0.4216348039358304 +4.40210065372452 2.2532251389294617 3.4494422761597767 3.312836582538205 2.1532132020809174 +2.0864246099880503 4.665070277318081 3.585747697983539 1.8052941713301744 3.1335966936114072 +4.01926393282171 3.1842935306891227 1.714873779408538 2.4424610915574383 1.107501182499376 +1.8174936899619891 4.615861893114193 2.529902419388691 2.2745286745220463 2.809996503553075 +3.140446263031751 3.6015836487648527 2.3104223822065952 2.3077660657055064 0.46114503633684867 +2.4700101179773744 4.3663693815651925 4.6835122101258255 3.8167616554678108 2.085050354450776 +2.7582317380538983 2.817118819394051 1.4658439873076095 2.076836286383137 0.6138234908166683 +2.3007695678609883 4.774889553552697 3.380971449395959 3.2632037661156903 2.476921260521687 +4.168397481001918 2.5348961827878815 4.022482409049142 4.5982287578964645 1.7319960593136363 +2.607189792474792 4.738195510954108 2.377506536575498 2.2203692795667433 2.1367914006125583 +2.418050150269683 1.677697289972429 1.8414501073931766 2.646858809780156 1.0939860765252012 +3.9470978703202984 4.507152591544507 4.310867536746025 1.7571664520324486 2.614392954556148 +2.5819200947604592 2.2162779119051303 1.8498868042579062 2.9299260178183246 1.1402538790600174 +4.532265826954638 3.9545062275314438 3.7124694812254764 3.8662927272603147 0.597886064184761 +4.840626108063068 4.8954909478080735 1.9107590748131575 3.3108297803660798 1.4011452926758532 +4.495591746879035 3.628402671728968 1.480656020404819 2.0116113657511416 1.0168237166841958 +4.485850543291479 3.119707416853804 3.005312101721023 2.8091257882093843 1.3801580023758842 +3.6489392435258794 3.6885212883032508 2.559841624765284 4.960082017067564 2.4005667412317786 +3.6706939033275705 2.3387938392912586 2.4370006488703515 3.532863467290897 1.724782043441012 +3.990474604712792 1.4586686431419742 1.1453966656455572 2.4873420877489285 2.8654596390369433 +2.2981561607721117 2.777011922937822 3.5664277004609115 1.5045125910862938 2.1167892571596836 +3.0502248834103303 1.1225326398910154 3.4005381386618483 3.289554580192304 1.9308844439725263 +2.5481224022141205 4.520292260816545 1.2622898754650058 4.80458397881867 4.054294200700541 +2.4782375563833194 2.7226278556358996 4.450647652193149 4.483967504478808 0.24665123337438186 +3.7955940186589827 2.9953002581978705 4.763321883545473 2.841278429994506 2.081999313249434 +2.848662729227353 4.80542604921494 4.160533483770887 4.2020831642581555 1.9572044007710176 +3.3070972930924887 2.549790970132974 3.404800142296105 3.467327181701872 0.7598832130342865 +3.703313490825254 4.087342921782742 2.858854843331839 2.452278817002007 0.5592697640921495 +1.5684719120703772 3.3957264244235756 1.6428115103044525 4.714064741521399 3.5737173171888768 +4.947589841233291 2.540645765021746 1.233361813379679 2.3855561659406512 2.668507375309884 +4.376797725559843 1.303919074306613 1.4613489525831946 1.1421376144360562 3.0894140356594417 +1.4415263776368832 3.350967400897527 2.239172688000047 3.4017127228376878 2.2355009178953513 +1.4095128984315566 2.9632380316367346 3.765874552821276 1.030390805349604 3.1459391478913115 +3.4341143927577757 4.0227344243489425 2.6403142485248923 1.9777778389599652 0.8862437788721402 +3.0004285457745032 1.514866589604917 2.8416604519042146 4.256532829364874 2.0515258151238522 +1.2394819928632579 3.4297549601741513 4.138710921887203 3.452492939925927 2.2952539707186808 +2.772799664731166 1.849384303265536 4.112544480272905 1.5873834738670949 2.688704899772956 +3.2170757726782013 4.309664464988071 4.0556902125413 1.73115629500928 2.568503062937662 +4.783465362921433 4.0963127721287 4.081156100763198 1.432265239718563 2.736567462489999 +1.260087478644889 3.559288883218537 2.7522793046864247 3.9530102362934185 2.593854635269917 +3.1946819627541885 2.349514474762434 2.659497369618469 4.209821433892982 1.7657329319653456 +1.5008048503927376 1.0798370230947971 4.4860976205317 4.430603453449514 0.42460983761577425 +1.6570819085564246 4.292028726173562 2.4811116900235204 4.520770500606291 3.332139372123952 +1.1059739850669792 1.2260737575174896 3.0067436842955684 2.0355726038942015 0.9785689667829359 +1.9202713960717048 3.7750413221536765 3.8965356459894944 3.9296317877223355 1.8550651830315084 +3.965404815562641 4.545956711385488 1.6007570188985065 2.684176026433782 1.2291611975783419 +1.0442512486933935 4.12708030636028 3.1782494897700495 4.861067708285031 3.5122232496470436 +3.565860409523071 1.725470538860423 1.1807685960473955 2.980865787694669 2.574370753293721 +3.3920309219172022 4.1530742981981845 1.7245340370524769 1.6530783180421822 0.7643905679431393 +1.079581852007638 2.1066604984341772 2.005672484730897 1.1523348838720344 1.3353185413918776 +4.01659284445504 2.5043301378261194 3.9524485723121154 1.353989039708316 3.006481404639015 +2.772406015244772 1.3350365388340402 3.6864775383565034 4.147539209872672 1.5095061697981045 +4.0049363617026525 3.9001371920697 4.313012078288425 3.8359332915778523 0.4884537180583116 +1.8436105550674964 1.0877337500795488 4.136346868680327 4.7901456934231925 0.9994011444629927 +3.6260776035724613 1.3386247508684384 4.433445521579127 3.8574500401218654 2.3588580601644846 +2.0123679213447416 1.6306121633691353 1.983749905790038 1.675659603351503 0.49056813309080494 +2.3048042950371874 1.1833486335272534 2.51765502396843 4.650341412240204 2.4095671875779656 +2.2321006164369424 2.1876749089687886 4.408814496706105 1.5489029570284667 2.860256572104217 +2.9131812917891566 4.883835475018948 4.719469401908592 1.1046274739936668 4.117105788499097 +3.1436289509458155 3.8177448042952666 1.6729033539525315 4.834163076023397 3.2323358758217906 +2.6187545389566558 2.8154029805482867 2.928074055160882 2.515825954831504 0.4567484053673292 +3.529966058695726 4.360547368511126 1.1903113869358464 2.6336774837558 1.6652840603524472 +1.653283159481469 2.7743582858776845 2.042149466848816 3.540621311811256 1.871423872127699 +2.5497707918948542 4.290700964789401 3.6657037868421867 1.76986958379845 2.5739124290319433 +2.4158218503591153 1.1076988194457233 2.1802753836246693 4.836791461908577 2.961125383732839 +4.178220879486507 1.5144974543497831 4.867470524111464 3.659992739964103 2.924623921948178 +2.3341758919433464 2.6675702211406898 1.1553597171277006 3.630308434824596 2.4973031321748778 +2.0035696988974707 4.957333145406022 4.2458386308381115 1.7061359890422287 3.8954855931802723 +1.8467788052091234 2.0844634312719488 1.968034102336818 2.1507120724872633 0.2997752862477361 +1.9553359731150528 2.1090629709003816 3.2562910926172512 4.536455617709789 1.2893615478807694 +4.818751546117571 4.571553999669902 1.966844491556131 2.057823209325264 0.26340796126287297 +2.390214174253657 1.29940124588963 3.5279668232504466 3.0948555402236804 1.1736516638982777 +3.5342228670937734 2.1725695933581424 2.8711289296731812 1.4700223876226088 1.953765385109449 +2.9489344739004335 4.432335914440294 4.325970755323965 1.6547125638527356 3.055503257942606 +2.850325973867935 3.8298634341336655 3.274075041053114 3.9772231362672805 1.205782268847551 +2.355743782648475 3.817985775598816 3.3262376282398907 2.2539620144751513 1.8132640838614584 +4.7845291292268435 3.3803353849630287 4.249628836113774 2.961414182919737 1.9055857535501952 +3.831660728146415 1.2538047211116639 4.828663478624601 2.3730557804233166 3.560245884833035 +2.4338891634925393 1.5072155796578008 4.155010427982777 2.192391129151274 2.170391311059593 +2.1241768024740266 1.2706496686729976 2.3954095006449823 2.8119186091217556 0.9497307016089963 +3.4257321671469008 4.173420260952348 4.2686828105263235 1.1189528972169924 3.2372574831814087 +4.074716161698931 3.9024635706053195 2.136190734327485 1.4006401251457903 0.7554506296284524 +2.257029925568713 4.0400497517043 2.5087600340096117 2.762049036338362 1.8009206032174971 +3.567820825558916 4.213314600211225 1.4364834826280184 3.1423820570929006 1.8239386391751788 +1.267611902854604 4.009220692426546 3.269033639958391 1.5806654465111598 3.2197835193848667 +3.261801658173457 2.1651541625168096 2.660546993261503 1.3946264563540458 1.6748703040815012 +3.0458267676744235 4.203265947829459 1.5378838503225936 4.443210223042591 3.127392969836106 +1.853318260196184 2.083023842850433 4.962365397885224 2.2666385528009707 2.7054958654580177 +3.3120761512394967 4.962455163067323 2.087152057950794 4.876194163502971 3.2407571259236185 +4.567105364748876 1.4011166001296202 2.5809749029794653 4.267389442678131 3.5871268248282533 +2.8684714881755293 4.239921943612886 2.8163424015453757 2.0085185309998352 1.5916833094376885 +2.210236223850321 3.4609376178060223 2.9884296323838044 1.8774847407496056 1.6728575937870072 +1.522159518245343 3.0994790291862406 3.469991844341819 3.810987311401577 1.6137579583537722 +4.606426321327824 3.0322916702545086 3.9971258848037956 3.4076849155164832 1.6808749376393457 +4.768003401310791 2.5517332632975025 4.9591826520966364 1.0702023389831403 4.4761614359218305 +1.9404897343798728 2.866820303277717 3.250800388797524 2.312020780034403 1.3188614319571417 +1.2803844873985284 1.487493102724112 3.580427003808275 2.307793646711725 1.2893756784339139 +4.751488580659915 4.727156441046821 4.68842682651568 1.0627127704504824 3.6257957015484057 +1.2346407031899886 3.5192814864391417 1.2136291299557422 3.512952037778103 3.2413684367751197 +4.856984370256939 2.9420157802155624 3.680197834334139 1.6871784185562104 2.7639158982343965 +4.816547500547699 1.3882586064383178 1.118289312343336 3.7898248385840607 4.346293456433888 +3.849510343513533 2.3049048188416164 2.998371720455535 2.202583307121655 1.737551560571214 +2.4727090871716193 3.224137555529602 1.9436942882822734 1.5818610760979395 0.8340072041046511 +1.2316754194290578 2.049678269424197 1.4933864927462426 2.3729869382094853 1.2011767589573588 +3.2961697766718703 4.9695534524670055 1.9026614368340442 4.867794061690298 3.404735585828153 +2.7189746190051944 2.5560888468349194 3.566097537429624 1.871810097325978 1.7020992052370134 +4.777974248079886 2.0510249333031476 2.450203931931201 4.09803195544311 3.186155953564183 +3.4625931008354063 3.9041125896272266 1.017411065958747 1.455532504246709 0.6220047055051136 +4.001995794882748 1.1515978322905447 2.3982803113724342 3.3102345908532382 2.9927293818541525 +2.1748636243896993 2.5352457061897895 3.3089964885112817 2.731939116508643 0.680345835193513 +1.5372895245283744 2.496532317413067 2.6010300705110585 3.1149396330764665 1.0882324081727186 +3.5015894807186014 2.529289446232705 3.8332563681632212 3.5125354302110496 1.0238306877126688 +4.465257645488586 3.915005140021657 4.5308451266646586 2.5897379938525256 2.0175913166017474 +4.558739524067704 4.601184173543691 4.866628683494016 2.1431802950142957 2.7237791160411526 +4.374652135938829 1.2592331594182085 2.881292374038195 2.3374528719435577 3.1625301268609816 +1.1725763567506924 3.869661666942855 3.866098666924446 1.2579971111607278 3.7518612575135935 +4.789108185829011 3.074189188851067 3.9468945065963474 4.138039660771642 1.7255386510190194 +4.282360590161088 2.6000200972875063 1.143155649503036 1.0662347887380315 1.684098082886788 +1.0298135118630882 2.653553667500214 4.354719889222235 3.9891208769987427 1.6643901978704603 +2.310130099521365 1.7626891025240692 1.6986742891119757 2.2193516883885307 0.7555108201149671 +3.489475643197854 3.4843732433432177 1.7340130309403237 2.293410516425861 0.5594207551135535 +4.435186694068589 1.772838801513557 1.2644472656853543 3.9562208780547024 3.78599279994563 +4.324342550140716 1.7872587651111425 2.6323308965275514 3.7137757802824862 2.757955251424452 +3.9547005600444014 2.0427230257953077 2.0803645885490263 2.010002907701632 1.9132717678377305 +3.456205088373629 1.1467562087501872 4.577285076010554 1.0595626965491722 4.208078524286044 +1.687504277628101 3.618025342520012 1.0117077654897018 3.2694380968572614 2.970565237655701 +3.480283365303328 2.6927497493615764 2.3167890635687254 3.7313795024743173 1.6190353010609144 +1.9108589458883465 4.962396212891219 3.0191916960133365 4.050293742145933 3.2210326172589734 +4.94347221101296 2.860031230708831 4.48038189145668 2.1255662294959476 3.1441824247689882 +2.803090406602201 2.3496280973639645 2.470805059821901 4.892182913160359 2.463472909235584 +3.6674348525895035 4.331123329652998 4.710326141023176 3.1522021984352198 1.6935857271046826 +4.057992936606406 4.74505732112441 4.234637359540442 4.433469377668095 0.7152563455893406 +4.79697972032659 2.862220755775965 3.6500714877833467 1.9349378190682724 2.585532005694193 +1.410508738822716 3.0271534115442034 1.1905651133043813 1.3119065673895993 1.6211920757017906 +2.101636300578974 4.564400962886152 1.478000724864199 1.0063403540674192 2.507523337336892 +3.9463865275701413 4.09890626846752 4.060496060432566 1.5546403623325395 2.510492989646411 +1.3006326899988605 3.250596706998005 2.625452520305534 3.671581381022436 2.2128590693526515 +4.656271339148768 4.748034476952974 2.561979073632442 2.914249895364213 0.36402637995514936 +1.7534356297794647 4.93250409979774 2.0270411164572577 1.3790447827066243 3.2444376378069895 +1.758316775342692 2.602595576176498 2.225496701437522 1.4272728133438917 1.1618812628925048 +4.074096119499465 4.841130109579264 3.885069093036998 1.269406161517209 2.725808818179374 +1.759854433704616 2.0297924136937198 2.89022447324965 4.012915570676763 1.1546868897162959 +2.8334362620479046 1.9905478357567659 4.686509685394602 3.3820148986296754 1.5531154328872097 +3.892813158258415 4.1565790364328965 4.026467409074776 3.6054660681779236 0.49680435538157586 +3.6214809499551657 4.226478512745119 1.7468636465965068 2.9918757573142547 1.3842244062346414 +4.344789356040851 2.621546995819198 3.117835314163644 1.264079666124383 2.5310026145185534 +1.9480563662143928 2.216244649269027 2.2363033625459594 1.9641918455796192 0.3820597241708624 +3.976868827348846 1.3841783308271673 4.400328176191482 4.311391543881869 2.59421543733754 +1.5284662018283686 3.4451434959210863 4.111086336391233 1.881161564016674 2.9404449221402387 +4.016817159823095 3.256864213892216 1.8065190134898832 4.561419819225729 2.8577975662165143 +4.56494456674708 4.241157642760054 2.752274771272847 1.306197998994954 1.48188258761166 +1.178170436932811 3.2558066803935932 2.020867776220258 1.9976034184479112 2.0777664908464546 +4.903650821916825 2.0416882035460775 2.03415823950409 4.9232411323394984 4.066648496074594 +3.6822007946901403 2.942910800944981 1.4848368656355055 1.8884454935285677 0.8422883231776623 +3.050050752779433 3.0544273647910853 2.132219596254358 4.008740128101027 1.8765256356295286 +1.5964632129936938 1.9713826831788328 3.213325220742009 4.613782049490703 1.4497737541812357 +1.3658282113212206 3.9637166900501883 4.7501507406537025 1.797787941784688 3.9326162594459166 +3.2884625474889497 2.2551649826793563 3.3591222551533533 1.4911692770992735 2.134701896205309 +4.25945958250648 1.5890743374015637 1.814245666877515 3.406802189257559 3.1092110951573013 +4.617513623137958 2.3156859347722896 2.88739088339113 3.4180199494102785 2.3621976870345103 +4.313696935465005 3.2821981468720174 4.588975678515183 4.25759783958334 1.0834209814305518 +3.7034913738805804 1.6430561454478316 2.063004163921347 4.378428754742696 3.0994490423859085 +2.736138610856601 1.0933120207394018 3.4313556183509735 2.757924631075585 1.7754966910188281 +2.3616542396021725 4.437703430407187 1.9252529276527661 4.132790598267702 3.0303799777958824 +4.75598686259776 3.5529760419155054 1.2702123275159418 2.4762034015684216 1.7034228791973078 +4.6892027807725505 3.689155106602723 2.9299726348862927 1.9417422773068203 1.4059497111398165 +3.0975668254175885 4.080534287585264 3.0966116832208077 4.870051020037671 2.027637076266312 +1.408299610546809 1.2644682921776713 1.3503929335835578 3.292232455330395 1.9471590013046673 +4.757891207924074 3.6519910829242033 3.649670594136741 4.255169850288157 1.2608110229826863 +2.7245164700665856 4.722736781469283 2.022874557173462 1.7655927317289528 2.0147154515232053 +4.226327072000526 1.1569777468926707 1.3016196458508276 2.814200509905731 3.421813283895707 +3.9963104318184297 4.91725643651249 4.898693097066909 2.134235407814179 2.9138235806634714 +2.444566627310474 4.258408660705136 4.3050871188105155 2.260539507037916 2.73316626989913 +4.751453292720876 3.1574315666616317 1.0659813965119658 1.631895993273453 1.691497736911465 +4.773030382391115 2.2827662142093974 2.3418784552398746 3.1891543964019897 2.630454741637257 +1.4146767356124705 3.1017638299513886 3.0549622693526763 4.114983965969426 1.9924630137553834 +4.13031499882929 1.504768744201718 3.2715382044381953 2.1760849838964695 2.844909645943806 +1.8707009635382978 2.9950077977449454 3.363939253792939 4.445066663721133 1.5597763730553875 +4.05593922225332 1.2039199935991647 4.632871660183406 1.151188885875034 4.500680906432791 +3.5592658031650246 2.048000569080323 1.5447709676573096 1.2808354182896151 1.5341396878945266 +2.019382451214704 2.9795450445654277 2.968047952387941 4.60140516197241 1.894668303363824 +4.764760973413474 4.578115408799922 3.3596466074120266 3.8138574637379516 0.4910642206414979 +3.7447700570167135 4.592765102937799 1.296518782536205 1.6286511937038393 0.9107181432554915 +1.5663607038639538 4.891153124196529 1.3904113034302035 1.5039944747680147 3.326731996285859 +2.729351871977883 2.424567398388904 2.7852529176825707 4.3926597840854065 1.6360471904868437 +3.332915841443072 3.5010267783502527 2.711326111847253 1.3115182434575972 1.409866431798914 +2.1473683403108605 4.6159980665576335 1.5175983726996645 1.009890023302348 2.5202976993515995 +4.327701958070829 1.6653835753957198 3.597315419808573 3.471352723933935 2.6652965635144277 +1.1555968049519842 2.035064772616652 3.725330459218507 2.97189115091599 1.1580737012140445 +1.047895915917719 4.113330262504878 2.2472812560085274 3.481770993731393 3.3046713370287386 +4.123450962544168 2.1305550794235284 4.525624636176687 3.6203020020768513 2.1888908316251543 +3.461353652749285 1.2415451368483401 4.150846727582918 3.9439514964891473 2.22942940769958 +3.1835183148807835 3.9537379050855455 1.6307817643270637 4.351021266491955 2.8271790120672384 +3.924103975864461 2.006165898071889 1.069799613988101 2.0204078131872016 2.140593940622841 +1.9124291163349887 1.5226804563066128 3.8258530384365708 4.141799239722825 0.501723051195706 +4.543334676902854 1.1109725381769433 3.6102715774207486 1.5874732994302287 3.9840711244655913 +2.850657792647064 4.7675640316945955 2.870281101590559 4.133264967427035 2.295573517590452 +1.460696755210527 1.736222009454953 4.8627299805777415 3.532839857523912 1.358131770161712 +3.2440893784844973 1.5916060053187233 2.0423568819696394 1.217409742711585 1.8469540008238923 +1.0099899622795907 2.158258178355808 2.41535981952159 1.795683017538742 1.3048062059043666 +3.628680813375956 1.915238041869526 3.4751093197658807 2.100036479522617 2.196977798522851 +1.6034182589837433 2.750762411153089 2.045600786756058 4.127533502140881 2.3771500657103704 +2.3531345798758774 2.922741311978553 1.2435607235585118 4.206827824856281 3.0175161545367692 +4.397414855658225 1.2456944848760516 2.6124349752795823 1.0533711097103726 3.5162510479951408 +1.6732929756674322 1.4232674835506312 2.8634028046836977 2.7260128534700647 0.2852871280004287 +2.4872213688269555 4.930377265486868 2.9876919969188993 1.6423886955582727 2.7890592872931013 +3.1868354803900925 2.820040555111786 3.6488384190757084 2.0771969151123564 1.6138759351914589 +3.6573528373638133 4.572478961346874 2.2771603953874555 1.5597283397285189 1.1628261165295817 +3.9496850540664523 2.2153233408376414 4.173000771084087 2.2919707292126454 2.5585708062777655 +3.536223770851102 3.1667419016906666 4.043195375766371 3.3972474372651806 0.7441542789584876 +1.7311971875088066 1.7553820572884362 1.8514440632903395 3.5474291333479604 1.696157500288405 +4.4046754647774 3.141240572573726 4.857584359338539 3.4259628819801757 1.9093998484527672 +3.5064778240959877 1.9469820830289346 3.2027721889574874 1.9611623544913872 1.993394578965543 +1.6538148198920455 4.084189910765628 2.790268876481385 2.8305754812376063 2.430709300744486 +2.3112690340267346 4.423915108953647 2.3867018874546635 3.4987710958563745 2.3874612797235684 +1.382715018591127 2.116073630666343 4.971093946804293 1.5374675992272175 3.511068889765676 +3.8572519210052074 4.756306401931164 4.2308407737213525 3.8286863687108315 0.984899550788002 +4.660426953598533 2.651393059236 1.413240348138327 3.109303846969019 2.6292296553864007 +2.7794894244937245 1.80294423832978 2.2075982603417685 1.453234863311688 1.2339791875873498 +1.4909406492935138 2.881779649289214 1.7449702554038482 4.545116126405077 3.126539624376168 +1.2065504952854047 2.8576202494848846 3.4273547871549908 1.9188319108438123 2.23644195131161 +3.30376803691847 2.963389617940177 2.080456223540234 2.7590469353372566 0.7591724588282638 +1.0744483717882907 3.4976404081322325 4.035145553670308 4.716233616912898 2.5170897073589256 +4.049476738110382 1.3298472027166688 4.474305020132123 3.639176534198479 2.844964744562513 +3.7277269994654674 1.5618808517465785 1.3884527128302913 4.162190342841388 3.519163249371692 +1.618584293738491 2.8754796851917344 1.9145544543490831 3.884343204801921 2.3366329935329926 +4.770408570675407 2.770915797232923 1.6935573338030618 4.617529755416902 3.542257200346556 +4.819954997184032 4.2531099439776465 2.9313742477201696 1.254232725621402 1.7703437517872966 +4.752332375279006 1.7722883601835613 1.8735991384396509 1.7052922817674063 2.9847930464119403 +1.7601167507778541 4.324720059960244 3.49219294312957 3.3780780292515464 2.5671408895965673 +4.315287541788733 2.2397900210249007 4.807519252274735 2.1775453589214684 3.350291425893657 +2.188529231400629 1.3448745508783442 4.351133903552919 1.6660547397778047 2.814498771665467 +4.488270631535348 2.016774877257217 3.0214112248340657 3.5313705569985117 2.5235589519320603 +1.434433455843954 2.8016717200809973 3.8043677305668058 1.4841132053444022 2.6931248639840235 +1.9898226222269781 2.4338562147101763 1.5428962930442727 3.414515084235893 1.9235703082536697 +2.1415632634940263 3.5387344636998277 2.1414271343576514 2.0311137993512633 1.401519316515028 +4.047355054904308 2.706242929050318 2.130785147418661 3.7281751603502533 2.0857220782084562 +1.4632341663370596 4.812539726446177 1.594922704850617 3.8615622462186003 4.044193682981901 +1.0375889758635766 2.577317531361649 3.053880690859542 3.0697405442341767 1.5398102349202796 +4.919776437864341 3.3660116112175404 4.517396279862659 4.956368397895559 1.61458405074962 +2.58208185162771 4.297557277818294 2.39277006145517 1.2276909902341284 2.073708074937514 +1.141135905168916 1.708290340738707 1.6939349042758969 3.455178776859541 1.8503091991610263 +4.025788267079289 2.6625874584338987 1.4838294485576813 2.3583766459521005 1.6196139185503065 +1.262069953372806 3.293616367490689 2.6319356025820393 2.8993981984738895 2.0490771271273407 +3.746495585477839 4.886734756432817 3.4625008240048496 2.3787292702965117 1.5731198770619743 +1.0543228153147641 4.168923393556659 3.7588829735332827 2.2591200536078917 3.456880903063899 +1.5268442055686435 3.8242755953913434 4.401548346192663 3.837094812282559 2.3657554359836666 +3.1480314953244495 3.7841052252475804 4.386018772736376 3.5970857052652017 1.013412637994909 +2.301879052667295 3.966244283596059 4.793144212245949 3.983408512787568 1.8508872264138385 +1.0596465526522167 1.3611921318774365 3.8036867032324015 4.933973506211085 1.1698196413712874 +4.804653321080826 3.9254045016843215 3.8236606256131864 2.332254170985461 1.7312919162623581 +4.298735500330247 1.1994535577246088 1.8239444400072848 1.419729155986421 3.1255301239305706 +2.5082077305657737 3.6435851794047847 4.623830148978189 3.4657906985769373 1.621769811045271 +3.116285277989426 1.7015908515991556 4.251116774489814 3.277960021750433 1.7170889276510852 +2.705219975340537 2.5623215756793156 2.3198930726589175 3.5556535100215325 1.24399510094549 +4.811660864538004 3.346048524299233 3.154414143316364 3.2838724249143345 1.4713187888878687 +3.834224162810619 2.8114790578329223 4.822116358569586 2.938260512978728 2.143576543238586 +3.5498298111242246 3.593852748290773 4.9487991718991395 1.744969755645997 3.204131855502473 +3.187761940066038 3.3958911847608455 3.42794553689822 3.221463725944388 0.2931766033502759 +2.8480859761720314 4.615184863807865 1.3781050022930894 3.382936632317156 2.672449876691564 +3.198375893207103 3.093082875962021 4.316801447696396 3.845382383523073 0.48303473327145413 +2.1698322827469956 2.5774118212416255 3.408553645033252 4.539703661822834 1.2023399854793848 +1.9450666269929542 4.944640828776854 4.4720015630499255 1.3263584974173215 4.34655216100877 +2.125308070782617 3.638257166532612 4.038789383238578 1.5458294759351827 2.9161385539361606 +4.77773097531246 4.9207992898383 4.248943208816231 4.494214951288198 0.2839485345559994 +3.796544889870615 4.593166995200976 3.535927977735712 3.3705494266335707 0.8136073032278044 +2.558307574857452 1.2444099125093313 2.2138474063485445 4.425741930332938 2.5727037241695756 +3.835545731822024 2.5986381970953962 4.713464098502131 2.7926827303930444 2.2845877775954504 +4.99694110392209 3.5554877159840466 3.6109599562889967 2.385456751533536 1.8919952363745447 +2.563473690989012 1.3318088729294635 4.796907712796645 4.7982731116032005 1.231665574886122 +4.32621214952149 4.5260788868797865 2.4006119964191783 3.4771662663109577 1.0949501398349024 +3.4516186521686985 4.7430342668034084 3.3326959372870197 1.3524224877292172 2.364156768225387 +3.643933022069316 2.5390839205613966 1.425591688682097 4.282680690810393 3.0632742455068103 +3.6409941590159227 1.0051393917808928 3.551069790841606 1.4552455252178471 3.3675227848275955 +3.992744748106709 2.294293917394864 4.17448973009872 3.1724432503400584 1.972012264653159 +1.5362097525973595 4.870221228428463 1.1025067950446137 4.54786985198575 4.794388294152682 +2.422175749011217 1.9902003615663189 2.730981367162909 4.2985114553938315 1.6259622728917833 +1.212386548461125 1.3019289711536732 4.420497869379094 2.709474056082442 1.7133652077504866 +2.6549281628774706 1.1990929913651325 2.418926866942209 2.228557985778073 1.4682289867483356 +4.485211137857532 4.72086380924962 3.13022858963895 2.83145389666499 0.380523979133919 +3.5096802231952493 3.8190518617187768 1.4114579765127138 1.4452846178014411 0.3112154436778618 +2.8399195517335185 4.917681642628546 1.3724029442849779 4.487104024312634 3.7441231449146977 +4.59774522238949 3.1543953526618895 3.2045894978889984 1.1686200193897007 2.495682384403789 +2.540514292878857 3.395349886635733 1.439366669828709 3.49670328458637 2.2278639632563255 +3.6775996961285533 4.3865095907793314 3.687878553302235 3.783518634996698 0.7153322752122268 +1.3093691705894805 1.3632353705494125 3.4742824953037093 1.3444521938149294 2.130511365995946 +2.2776146762183713 1.8677929425095718 4.297845915340272 3.6879262201757785 0.7348169077869905 +4.9249239960151465 2.2119332637313627 2.757690768865597 2.6708328702917643 2.7143807780048776 +4.870504817987998 4.07227351076823 3.2745619372104873 2.012612499553355 1.4932145200971396 +3.6545751545754848 4.0176533863200605 2.667453681085119 3.154533568209167 0.6075134721202019 +4.604698031476518 4.217349947481724 2.4571431385362414 3.0888276610933425 0.7409884440479696 +4.65184984162487 4.451212809449544 4.024417224410313 1.6594382188435381 2.3734744396036236 +3.9461975328720262 1.2515756470707298 1.9493170650083318 2.6678889531544825 2.7887869523994224 +3.6624494577614644 3.596203496066301 4.542544344761635 4.909953627568495 0.3733337763095757 +2.4788480399195243 4.403724408252518 4.612344105846607 4.375492201744826 1.9393936830472187 +3.9536116139800326 3.945066995757181 3.8134137119221583 2.3876091955825838 1.42583011937429 +1.5524344396503014 1.9998897067315924 1.1228735267844292 3.8577536748769505 2.771242616673856 +1.5506406375326978 3.840423596272946 3.2853196052474596 3.343257508922496 2.2905158368410166 +4.098571694741221 4.317939368735535 1.179799882471734 2.785243706734853 1.6203617032188418 +2.3520818649399335 2.3579707108055943 2.21936652933157 1.1475925776701903 1.0717901296268217 +2.6785704016029306 1.4634848372500966 4.691849708759319 3.29922570365929 1.848197648597003 +4.040104640432828 3.2812966066213076 2.694100499075922 2.17869854303417 0.9172942867305833 +2.086475790890209 1.1060355355626847 3.928483481188825 3.851248855547486 0.9834776467539355 +2.3816709322248637 4.858898610938097 4.77544697380801 3.8641922296137774 2.6395155201285427 +4.2772837412153955 3.371747284158602 1.1594736967980421 2.0613788172225225 1.2780567754629941 +4.099610393544502 2.9455758851768015 4.406997888514412 3.9185135516858796 1.2531610406608926 +4.9862270564505 2.6238651286486463 3.165994603030007 4.945846829987066 2.957807943009771 +4.4503072556019365 2.300025395551897 4.082394206574282 2.0759625135438484 2.940999866789734 +3.3823412634191303 2.385332039594833 1.0613304462439532 3.53818189518268 2.669985110913654 +4.198414208255462 2.9596315904541286 4.190687868138896 1.07646738655469 3.35155957459886 +3.7644286093019144 2.573381323463202 3.043876342843416 2.285912875279968 1.411772734991213 +2.511079294403333 3.101817466951663 3.616753837163741 2.9345957603282473 0.9023919493754586 +4.435218728125351 4.811344250579862 1.0475366219403321 1.8093752485017887 0.8496284491251015 +3.377747116138084 1.7411659885632007 3.86692324829481 2.519051849357708 2.120178081012757 +1.89570130443022 1.8984279053783446 1.531049830906999 3.5894865497501636 2.0584385246673125 +1.5372401926080403 4.9053784513164524 3.796851651435993 1.3438902546266247 4.166698326494528 +3.3435312397943595 4.0488086666061704 1.6770118087643477 2.2184326842357014 0.8891303690497003 +1.9724808350043865 1.424105153755257 1.0121298450003602 3.785639958107452 2.827202545855666 +3.6307625730360553 1.1911112175665006 4.241954520650911 3.9822661499628498 2.453433672654522 +4.351473946402466 2.039080589619607 3.356172495538283 3.685537087165674 2.335732020312128 +3.127679850526704 2.876836257547693 2.2084404190100426 1.6782992166395312 0.5864914343700778 +4.752333330834768 4.348569452862405 4.198701499328182 1.053461559157428 3.1710502282998627 +3.2476807218710557 4.982661503293276 1.226300891372317 2.7058371381564075 2.2801723218766625 +4.400662004190596 1.3270849930046937 4.070246010257219 3.087201749774167 3.2269570281860176 +4.255262175734754 1.3194111186265016 1.4476861639478384 2.372924593515437 3.078195507285455 +2.0993266425732595 1.4862608030716746 3.0665400105689873 2.7089026447511326 0.7097564434317711 +1.6511284681703624 4.974405748503122 3.2724078882030643 2.8854064215004485 3.345734899421333 +2.895200084131244 4.4509590841280655 1.0515657562013447 2.9800961490749738 2.4778247602097334 +2.7559905185464686 2.9891292074090763 4.235989731139036 1.8496234776789189 2.3977275791669608 +3.4014070301697807 1.3521987295028146 3.499521495496856 4.611887464030806 2.331654500022434 +1.0130265422742726 4.51288618195347 2.390894180565678 1.6161029767964643 3.584594664239396 +2.308623882218303 3.32557328703471 3.7810759778387513 3.9186788167614504 1.0262166599875635 +2.858731527339446 3.71425716705341 1.8131086426563554 3.5426519600411654 1.9295709903806186 +4.004686988677614 3.187537746119186 1.002654150905439 1.1069050783923897 0.8237725053045303 +1.05699397241534 1.1175727130105058 3.769715327311255 2.358599252258908 1.4124157890236282 +2.808596780560146 3.5189095887448487 4.281249723228938 4.841942593755029 0.9049424183504858 +3.064986323371418 4.078868879860517 1.83829142945886 4.225252041787202 2.593364379172307 +3.0289558549333804 2.5168306799764046 3.8229900652989133 4.164263703909292 0.6154184683896643 +1.0011095411177862 1.6184833684420044 4.777417035375145 2.365809836841314 2.489377376511072 +4.290563442289559 3.177079348258975 4.663154974689919 3.853443080820735 1.376764387516009 +2.870708270067241 3.561162621233458 4.597710570409004 2.8660161899526395 1.864267319444428 +1.1584840252723057 2.982068909948577 2.967426370654534 2.7866533251081367 1.8325230491363236 +4.967732230930732 1.1552747197529634 2.319105668343959 2.934324370475774 3.8617776121869762 +4.065999227794557 3.5616858762799 1.6420158070188067 1.158290609147059 0.6988004175528285 +4.432882538969698 2.1843454356098633 1.0971186393009495 3.774288063647133 3.496162929818906 +3.160867825295551 1.0838946216276613 2.2591798026264738 2.2212156212910483 2.0773201409072524 +2.2637635482431757 3.1110126809890795 2.356782511174995 4.471193366255994 2.277842039524042 +2.88274031283733 3.131347148344756 4.696385930268666 2.9257334705131286 1.7880199920301092 +4.151441828193178 2.671999355104406 4.703511813744386 1.58242146252018 3.4539766953012094 +4.489564261344334 1.7772978187008355 1.3469121998914342 3.544586656654693 3.4908684125586436 +1.3948167107952432 3.28289159221355 2.1989542112086053 2.304608412660204 1.891028706320221 +4.627135824091555 3.295562794993684 1.8719682811476162 2.8013342013982228 1.62382503538532 +3.4748162284896997 4.834967871643043 4.000954988256138 4.657677002336718 1.5103960726083712 +2.060346774390701 4.589475998573166 3.1340262515508983 1.7675167239299205 2.874690056630924 +4.214586656720135 1.9919307059003497 3.1652657826502404 1.413735847105825 2.8298509838545964 +4.370667947096546 1.13647934017761 4.015419449625779 2.6826044464472774 3.4980525693336797 +2.3077360660124944 4.62527369703861 2.73811162922988 4.952878795703973 3.205647247111544 +1.721752582738005 4.555198342024042 1.4241982306896221 3.225075421775244 3.3573164176449715 +2.62089188147265 1.0044921107652787 3.2840469458684622 3.3223224837215297 1.6168528799927295 +1.857373370298986 2.0162268762769964 1.6593280499836993 1.9785772515954614 0.3565872811686548 +4.763874285367926 2.8287170645468587 2.388113239485855 3.2928981813519047 2.136227810961057 +3.756598451342773 3.9435087739433636 1.2345971742448452 4.0373012618323605 2.8089296308869014 +3.878726656150301 2.2554975510728164 3.855019919822293 2.3170010989327054 2.236151743728777 +3.176365770409613 4.770515511078569 3.526107827295557 3.799191961947063 1.6173708109995253 +1.9002024342496853 1.4967033196652806 2.2124942016415585 2.410020897611172 0.44925308133731323 +3.2347037625873902 3.4021060865059747 4.841991612972897 4.516508391418427 0.3660093790694691 +2.218805569574962 2.180744210984121 3.392113857287822 3.839629617230181 0.44913140884886643 +2.0854497702107695 4.940027583366689 2.024220062279573 1.8848949171628582 2.857975854940665 +4.466949383491523 2.3747966722457132 4.7896822004481265 4.332549494772168 2.141511913992498 +2.1120004147094624 3.3509891701555676 2.5290189230325857 3.2354910023548795 1.4262524092824014 +3.9795807899993307 1.968590209965452 4.120866366211543 1.4630721892253034 3.3328595830318086 +2.3600770201456585 3.701755352057148 1.8072776794432306 4.6295555607499 3.124956509398756 +3.114121773819796 2.088980120105313 2.7774060071241973 1.7749694851231652 1.4338041675284636 +2.0334898124007963 2.9785538921616976 2.0957881259076707 2.5587022164334425 1.052347646959702 +3.2085784010771374 2.4155518487377967 2.3540180487234257 1.2010300464826487 1.399382880424939 +4.835598996889932 3.4710259160121835 1.282949199360814 2.7607061290996504 2.0114236839729576 +3.7513321376800817 1.2837599514627547 4.565204578470499 2.399544686907444 3.2831380202663216 +4.383222416470735 2.8113839117317694 4.8082241357381825 2.1711918811656123 3.0699536473106757 +2.7144474082958743 3.224870183725484 3.4419580667343723 1.9405441995073835 1.5858042156517203 +2.799661935225405 2.4325519826281807 1.6623730009080866 3.828479866902491 2.1969953737329617 +1.7986009232014575 3.8122062513319395 3.6760139728916337 3.24998967030686 2.0581795655064474 +2.0448236758928493 2.669495990648554 4.735009189284677 2.737126880123981 2.09326281724955 +3.545900473645558 2.2679707217313565 2.7601881203462755 1.7013962742060231 1.6595615759231641 +1.778480047027395 4.806729545796159 3.084929882801962 3.640137764437057 3.078725518558451 +3.596248838565772 1.1464568608118682 2.8446084406310077 2.1315128362288513 2.5514674356701206 +4.652072785595536 4.790287958107303 2.139808072433533 4.962595872463396 2.8261695628376393 +3.015278911203379 1.4545368363941416 1.3725337807846634 1.2445954987004404 1.565977020298352 +1.1562360347882517 1.3679767512547958 1.858984919037054 4.7422573388569464 2.891036834407999 +1.358282909389549 1.0040558000275084 3.199680153193399 3.859675094408288 0.7490461717652869 +1.0013970000303618 1.5231729230398336 3.6837513233333605 3.700652660807291 0.5220495848487899 +2.65577590267271 3.4918704537686045 1.8952808162353199 1.733495990389501 0.8516034454170597 +2.703327260281159 4.9437687096432406 4.227826285613434 1.9063582787351372 3.2262658903102137 +2.2764509983494707 4.081741752259232 3.1291713615680945 4.870726846121075 2.508403917220797 +3.52326874857513 2.801207405048754 1.3748517977822772 1.4658727579633162 0.7277756515626186 +1.8695344340160176 3.1614293626132777 3.04815694585799 4.627831504146506 2.040677391612731 +4.6962243365162735 4.088428388191858 4.9344549389247065 3.705439579089904 1.3710925094644215 +2.5189323323174695 1.0685271122435145 3.1386527993779776 4.075505065792436 1.7266636822217827 +2.954900790257029 2.195127790558523 4.086701743124399 1.1269375776093447 3.055725597388923 +1.0510894038655092 1.466738469912249 2.6360558128038862 2.478838024136829 0.4443889953395409 +1.7298309026323535 1.017258034566419 1.8703462189530238 4.682739184424025 2.901260809464479 +4.539719547727598 4.248845858977052 2.186951534485748 3.3268788445149675 1.1764530483439624 +2.623550962990989 4.813443417566099 4.338005912563735 3.810736553413817 2.2524746257623787 +2.180382710652135 4.273618508436103 3.834874165940537 4.876052323194977 2.337881104818642 +1.3913051242095573 4.807922448361701 3.965561893774368 3.5558169554823 3.441099367084962 +1.1882093383589227 1.4950573635039421 2.239309094581915 1.7635402472733879 0.5661375332944136 +3.48899753168538 1.277154071445942 3.9961693643453247 2.1757403584441404 2.864648889153843 +3.0450053008604274 4.996532025247599 4.5836729100169675 1.2789134185262094 3.837954123305225 +2.699454215277851 2.3458076463623105 2.294714576543126 2.1661803589102346 0.3762804018391518 +3.3586095457004883 3.5515162984329107 1.9114837883414308 4.8203957253765966 2.915301300496305 +4.681242793622719 1.2299888958318999 2.029282066562302 2.8814055940782177 3.5548935248699767 +2.39993294385811 1.1523056192290446 4.046018519520497 4.483746666557087 1.3221875327914592 +2.506844859596777 1.8016289602789364 2.6367368515898626 3.787488751751537 1.3496515848086037 +1.0535546967843872 2.631766011016457 1.8526902530497718 3.824100230081825 2.5253134953727305 +2.853864490748041 3.0401075256719774 2.5165109100718546 4.753369595086729 2.244598682344831 +2.5292037602329187 3.8563200664009685 1.7244106398450403 3.180970040104467 1.970482929786815 +4.401987264960024 4.561370498244206 2.0484574742490658 2.5049587002993365 0.48352495740915014 +2.569106665955609 4.681357039906784 2.301754595545112 4.7091201128583995 3.202656768404312 +2.339192241037897 1.2322636069663666 3.5773983553870567 2.0870769324926566 1.8564344708245033 +4.961922500999611 4.013007664970442 3.780715311653847 2.4818983593628836 1.6085287817116145 +1.1530227579082188 4.7149285027453 4.075979390862249 3.940051528179248 3.5644984105701285 +2.739219169984094 1.737187254373711 4.488845074861743 2.359061194914202 2.353730514563257 +4.159771967354372 3.509345360495973 4.410779144533588 1.9511482212246234 2.5441774800133428 +3.796973832895655 2.772749868991799 4.2317019536823715 4.821618579046587 1.18196292374847 +3.2846194348460176 2.529085928368499 2.6845104312314882 2.051723686146467 0.9855201388939293 +1.9142600627583413 1.5663242686959244 3.7527144750688097 1.612308493471009 2.168501114329778 +1.1650571858848893 4.354668766070836 1.5456868878566992 3.364087227627189 3.671539435731792 +2.8503726225608372 1.6348394773894737 3.740423712640349 1.351033378591425 2.6808034235013602 +1.0958980216487388 4.077714984659327 2.5130629728721177 4.421714301760305 3.5403647123092177 +2.774655061949946 3.4016575052481355 1.5103726889292983 1.1034753132546027 0.7474607268832614 +2.5085109233508196 2.8839612418252796 4.544612216133785 1.202000166190837 3.363631706662662 +2.0545749562547253 4.639535711185078 1.399742938666206 1.284191093485254 2.587542141387232 +3.8988870698437164 1.1802143491174504 3.3124069562208014 1.3368895199069812 3.360632455892951 +3.33994974469204 4.6415831547425785 2.4559001032670755 4.165859289717115 2.1490020831736474 +4.320787617014528 2.5763576422445262 3.734838644739636 1.1301589889838701 3.1348671496546774 +3.261597615671454 2.4380172838367358 2.387973218385837 2.9293051399334513 0.9855581222187846 +4.9103353733332105 4.3248670407134 1.5263504040564637 4.170818663789623 2.708502454353096 +1.2179740020775398 4.105022690651948 2.698542980091749 1.0751544316309367 3.3121655317137932 +3.2352388565305827 1.814907981878226 3.787673818985791 2.8081197524873787 1.7253596618341072 +2.7197990778321732 1.3775545605709905 4.713990588378455 1.669452003428364 3.327286512966326 +1.4933410709742039 2.926389399081647 4.66788060783451 3.8687647161818695 1.6407966720417657 +3.234896241675625 4.445690529735645 2.722557794556559 1.6267125146450483 1.6330645074531218 +3.7801750674805774 2.17707491033582 4.772825392474011 4.144065209698622 1.7219957843389997 +1.377389092444719 2.734834858277518 3.0548905382531406 2.928570001318901 1.3633106341655041 +4.926319508901135 2.502967279420652 2.3216945317842788 1.7606338067141203 2.487453550389289 +3.5671405791238042 3.482671216348052 2.726721721957497 2.0529488461022924 0.6790470981352724 +2.5961367381069893 4.931061337867037 3.889662020320582 3.3014258000913634 2.4078817947221114 +4.395461390674706 2.062499255347924 1.212284395212972 2.311638232829858 2.5790097295573498 +4.124532597065891 4.33062798371081 1.855763327081382 1.799513241350318 0.21363375328133602 +2.4610255575772935 1.3308880070643982 1.0730252659060207 2.833864022042 2.092310686344117 +4.781344986367124 3.097078589584134 2.738420860232977 3.2627361901754033 1.7639897563605607 +1.5510787273347688 1.6570856897522654 4.110715716839183 4.284485722662466 0.20355218251055057 +1.6487005612035128 1.8225903362606557 4.744299847312808 1.2052063611972668 3.5433628599587257 +4.595301438156169 3.854691043459515 4.388486873691953 3.143658587561519 1.4484823846644348 +1.4894073357662965 1.1702851718078122 4.462182535631552 1.698583985213857 2.7819625992094736 +1.8629398202351464 3.6382160146757587 2.685342903521244 1.9034447194348534 1.9398377088883334 +1.01699646910498 4.962147584345731 4.940642467624244 2.768442526183564 4.503628526830363 +3.4480544783701617 4.398424096631549 4.212768524307455 4.90974587707925 1.1785498893093476 +2.666849384688069 3.7674722613509632 4.822532038834926 1.1017072155039411 3.880194335667965 +1.5600188358595708 2.3179603222132266 2.75343434832257 3.92217501005076 1.392993191337573 +1.5606652569240103 1.3175689236301267 1.5988341497447602 2.0569301949449237 0.5186017873946841 +4.79652289854805 2.8181484886972177 3.7371052305428996 4.625020751571159 2.1684923975046613 +4.55571187315576 1.7588776845972678 4.918705764409116 1.5474461562245674 4.380373594120286 +4.229116850472446 2.6114021701393413 3.7565389219477776 4.799768078857451 1.9249228194376276 +3.671725902168806 1.608788095765978 1.452284163723295 3.7391214030175517 3.0798274224555326 +3.7349900256368374 4.118908941659562 2.9463652937618914 2.334029051695762 0.7227374401729396 +3.513280228921884 1.562491248434989 2.4726568095701476 3.1740236533450856 2.0730395789603047 +2.38151007074423 4.9485231349636445 1.0114732367210557 2.0265435500430407 2.7604209484896938 +1.526997664091422 3.161304366561442 2.8572005353095515 1.1702313391972994 2.3487919163625475 +4.796348864650868 4.689497001536445 1.27424386015478 3.0786766497766327 1.8075937079204287 +1.5062266174429224 2.896966716242446 3.3810719603745683 4.709144133058846 1.9230012267981649 +2.489348887721651 4.041323110483953 1.5906213768216397 3.4096942161741053 2.39116080241135 +1.1034191148388115 4.794731811816906 2.0598339575659237 2.0731296706515003 3.691336641767877 +1.7340653043826255 4.545926389820922 4.885328916490478 1.9274241194819886 4.081147332793569 +2.092998422965227 4.1508537373098555 4.302497864445929 2.953846664298826 2.460412273265326 +4.23107657728656 3.0124102663508125 4.743820857040663 1.8012678790155987 3.1849278807994876 +4.5597945139934195 4.241421734603461 3.7602729496990097 4.551196742915451 0.852597016961924 +1.8898291429284106 2.518910372610643 3.9783962757565314 1.6729466255832266 2.3897366555800086 +4.279886166706024 1.9587640042985548 1.1094158124718643 2.896651827060284 2.929474469023587 +1.8767865379857467 3.7888057811662272 1.5939565373209477 1.4049001091908169 1.9213432591054054 +2.824293812627905 2.5056123669112105 2.845769486959407 4.202654621190625 1.3938059876976256 +3.6910547233949496 1.2560930762921019 3.610642416953653 2.7125061906073618 2.595320192950644 +2.871525914734378 3.633189025270648 1.350766851004137 3.497704299627892 2.2780410668499513 +4.577650028710871 3.2013590436583037 3.2238675081490937 1.4902130509171205 2.2135344254420923 +3.518171415086594 2.89951016774681 2.912473991995182 4.585959240374104 1.7841789751877133 +4.877061598448606 4.949943740841578 3.1395039009123464 2.2175498696122116 0.9248302776782125 +3.8107902570834806 4.937136493555574 1.9640897522618816 3.322763442297669 1.7648371144132002 +2.3176226143615932 2.752026040660725 4.585880446583821 4.835240246235599 0.5008858617118274 +2.503520484087864 3.940382439652717 3.969584522345065 4.158179975788887 1.4491861593354163 +3.586251444313804 4.602527209648393 4.047135924666003 3.170914787192992 1.3418568898958276 +1.9660345757517144 2.5625039552851243 2.2411156891152415 4.0937410243807815 1.946277563347203 +1.6646308101353742 4.127374888710882 4.844986059302908 4.003522021823359 2.602531483561748 +3.8337804668358393 3.0031250746410287 3.553025755009361 3.02498207287034 0.9842857871722267 +3.2569873710438046 4.654648861877931 4.696552577352396 4.214816047885924 1.4783530453795781 +2.6492528094249526 3.418314389787189 1.6006080411859323 1.248766383216176 0.8457235166838908 +4.686949417448653 3.2192241558686057 2.40346144521071 1.6417882905354348 1.6535910734015238 +4.550559646711113 3.256664438862279 3.904729899806777 2.142953485198085 2.1858684644702744 +1.67142509167377 3.7155989207589997 2.281673254401335 1.8015816119518049 2.099793949097591 +1.5805373133218827 3.5641272224516425 2.4126721351003524 1.205438545764066 2.3220770587607946 +3.4981128961040118 3.690829273653862 3.2857799816551 1.8134999702351622 1.4848393967707851 +3.642697036013973 4.489262568769693 1.8232912736360811 4.440625213463841 2.750838082080492 +3.3098155437517254 1.3965209435920998 1.8396904609204903 1.0644588574704574 2.064383749690859 +3.7783380761948275 2.2639293076474982 4.787657867981218 3.877043290114436 1.7671029476735463 +4.923414116104777 1.0455167102758862 4.798791772172725 3.122539742022815 4.224678586438989 +3.499893557435771 2.06433478630182 4.687640927451415 2.4773070708165466 2.635603297760494 +3.786825679016014 2.366671830640643 1.5429178365885554 1.1287374055672754 1.479318215427752 +2.0291820135842227 1.0115492237461452 1.460646951742329 1.1419800823958952 1.0663606653345228 +4.058775668027108 1.0601214268374721 2.233874206635223 2.039035465363387 3.004977436405303 +2.4051175771933937 2.9053436822268224 3.300484404773081 4.53617521716492 1.33310087389759 +1.7652988761545116 4.002802575983623 4.735970879317092 2.151036729516787 3.4188166615881572 +3.4824028753262524 3.6249809759220484 2.936586898999834 3.763236758595335 0.8388554733318289 +1.7973314875084339 4.873343355266346 2.976554214632657 4.493650816410322 3.4297858693674828 +4.350067578490365 2.9792002192514127 3.7306367872605004 3.9940260027124346 1.3959409713319415 +2.4682283583908027 1.520466875362355 2.7068326286425384 2.3789298597580193 1.0028818746763835 +4.748262618720201 1.5676568028272362 2.0564719259555053 1.2127350719109558 3.290614719921666 +2.5280444548634255 2.290833413764651 4.59128998543134 1.7034250141622818 2.897590925286384 +4.370811294550673 3.080433506761661 1.9036081292030236 4.853227127115033 3.219522801295669 +4.333965474765179 4.1464241792918175 4.66079232491417 4.3899096909082385 0.3294679634104328 +3.4410017674900906 3.6994790070026244 4.951321768401251 3.5446945098630676 1.4301785650081131 +1.0052041222893568 2.608894029325272 2.476867388854014 4.742102453158209 2.775447930421699 +3.2883824800690933 2.51817669763107 1.756735487731314 3.120673362244253 1.5663790961423867 +1.1269967520114639 2.659324886699893 1.6322729251713328 1.5563747286822753 1.5342066512005519 +4.606069864946495 1.0202110679613319 2.531449574899492 3.0646965665169232 3.625291114653404 +1.644859734843446 2.976982348956292 3.6049158254602545 2.458515813219999 1.757493569574381 +4.421900134884181 4.822535799176585 1.1522324177787717 1.7471005699591697 0.7172008463335334 +2.811868118123975 4.147787845039602 1.114708708703401 1.2636228222561452 1.3441937843843508 +2.2921712374361785 3.9322693845308967 2.222621790305743 3.5010698286281903 2.079507470242423 +2.8376813631420643 3.260202642085718 1.587023842233401 4.319036018062499 2.76449177246716 +4.3225804039483995 4.899237301756658 1.2449276425890226 2.156106839524561 1.0783230994084922 +3.8049803803731423 3.9304605551058294 2.057335264260863 4.776369554084993 2.7219281297437585 +4.7099736415475615 4.551260050487137 3.76974626222554 2.26984264743838 1.5082774471690827 +2.891121283447427 4.393828857490724 2.0077053541108647 1.8914109064750106 1.5072008663870982 +2.911079716542302 1.8170833746389388 1.0377042493766275 2.2901442046958147 1.662959361433065 +4.812126001363638 1.1929496852676311 1.4724413984714482 2.576961182732923 3.783966326596377 +1.3897986615514317 1.4284293888360189 4.478318658657592 2.677792207341771 1.8009408193992609 +1.4243513791779425 4.147574950836787 2.8496674730994243 3.7597330601503356 2.871265573570768 +2.969261867482029 3.5610095368188674 2.629979053692396 2.602961875776344 0.5923641043042093 +2.90700566868414 1.7186570449621645 4.200838313541418 3.3888365751605383 1.4392773445849425 +1.2190591307045557 4.99311517407628 3.9469526734613956 3.5986609263144866 3.7900931597575913 +4.241122034699309 1.5283026566741573 1.2832780733985425 1.827173738533403 2.766805282693609 +1.7484284150162392 3.665604676876834 2.7005583441240577 2.2001604565984816 1.9814042658886706 +2.51833456326665 1.3141435521424474 3.0077200909524215 1.8987865517740903 1.6370123962838246 +4.979941487495162 1.0932318614577863 2.4670050309921128 1.8887167698411447 3.929494755069232 +4.122729720668993 1.567743220641899 3.804124826473585 2.167732752558133 3.0340954228392376 +1.4660186284712977 2.0232468452821557 4.563706510239874 2.411159114887753 2.2235025466248985 +2.3290203909859386 3.3711451026916235 1.9334708449291114 1.7352459365571393 1.0608096101783455 +3.3601954849670093 4.474362604112897 2.369181951682545 3.761273832550101 1.7830558527884695 +1.8701225080049433 2.3300208431107574 1.5513400130507402 1.7363497632530467 0.4957167399866778 +1.2678992719722566 3.434300011041987 4.069214900883631 3.6476735233648547 2.207031783913023 +3.690176742135641 3.2607943594414923 1.2955599538096592 4.20857430418994 2.9444900808271637 +3.8770456291348867 1.272430292121391 2.255373000912702 4.921433305229497 3.7271837357527318 +2.352688550934288 3.151732807949525 3.4241539965105234 4.053163829764138 1.0169194142107683 +1.0875567587795412 3.6923963157979265 3.6709342341546276 2.2770877141400017 2.9543184051765006 +4.4457383632528735 4.598588772152334 2.0073074795568 1.4486175900867866 0.5792215811731709 +4.866328316405359 3.373284418037002 4.462338499120412 4.243403189390143 1.5090105209380316 +3.7661232319001323 1.088418066293198 2.2327115342696113 1.0643512870684457 2.921501432681153 +4.54246793638303 1.2735897894262145 4.442368037033891 2.61145665942307 3.7467053276601 +2.3816088656080505 2.290660001425955 2.8720146112164247 3.0830555800255435 0.22980423497382452 +1.3485666052574592 4.872214721679013 4.311010290730119 1.753658597247313 4.353865378318505 +4.146464497057384 1.059469510208816 2.658633794150466 4.835656727364189 3.7774286095923335 +1.2864523913408683 1.482618420577619 1.6714094600261329 1.1070292398178152 0.5974999112877782 +3.9284558746514366 1.842826537364135 3.413454073849584 1.2586943843143237 2.9988062712018526 +1.2939614299858064 2.36149355912911 2.9166235260227893 3.815573693329661 1.3956132164945585 +4.352068376149408 3.171258173246411 4.723530910079972 1.9008423757761803 3.059719480110865 +2.2802554217281523 2.0978998422951842 2.9822442558644453 2.877759622678663 0.2101680183146356 +4.58598250128936 1.8849290288286245 1.5255595033689224 2.1659555790992973 2.7759317345538346 +3.7456064208395845 2.819388449080407 1.853906000797481 4.922526789287537 3.205356965263466 +1.3267456152969412 1.4183774470596053 2.0786864360847366 1.4677926234987861 0.6177278064390331 +1.9771691801476856 3.3623913809376327 2.600422478757774 2.250694922547086 1.428688177712143 +2.9225260300964497 3.6565985003824966 1.2797099307583433 4.1126223752530855 2.9264748947846857 +2.379973567062562 1.561164302453431 1.9932322524745913 4.111095998358956 2.2706376764999514 +4.611688256610117 3.5197823306759384 4.24593742265568 2.540419509486444 2.0251049116604602 +4.089256484281962 4.410123724530426 3.292787113305807 2.078129477034165 1.2563235885780695 +3.521706520788709 2.9862636456462157 2.780301221397291 3.273279039647774 0.7278229192790415 +3.024594346762797 2.5012150021701385 3.6411078293752306 4.7716437640307525 1.2458079458302052 +1.7373264217495827 2.845274877019118 1.679240580754608 1.3473174267938832 1.156599654015764 +4.728062734941089 3.3267717377643855 4.809113556557096 1.2983360568978326 3.7801025265040407 +2.0230529587171913 2.6559235923022273 2.8983803070703513 4.418076509185097 1.646208305645524 +4.68781146008769 2.1231320262499636 3.9689847493423516 4.266144071224774 2.5818373808068977 +1.0760847201358983 3.1127590646590146 2.4581238023068437 1.581775031704471 2.217212112851397 +1.5421561263007022 4.291577583193087 4.376434437795487 3.296686094763261 2.953840691692949 +3.310721318029447 1.9654019200001516 1.8861398854749338 2.3593342825416848 1.4261126253312784 +3.7949361042744165 1.182934868072695 4.256623977356497 3.5646344164113395 2.7021102883443513 +2.128318853705151 3.8411257524076663 1.9365958786223918 3.7359347997429095 2.4842157767195014 +3.1723396217518114 3.365727378226292 1.5945806341677855 4.90988237610741 3.3209372870414366 +4.635690008067968 3.1167902552896334 3.490962278200579 2.6945127967665075 1.7150475898547792 +1.0456297291736432 3.7032811201423073 4.867038875878504 3.990249725167918 2.798547861073929 +1.4405549218949574 2.9603398367393625 3.8262627106005156 2.446082536255332 2.0529596929906146 +3.992611287808408 4.7089157695959365 1.9465532188834667 3.9220006131971945 2.101305431946959 +2.8765151287687383 3.883529227853364 3.4729646531961746 2.286443548954532 1.5562486069282206 +2.2967453370445687 2.963182293949234 4.7736166697914575 1.9073149187784364 2.942757880864252 +1.0119557492900397 1.763345553917119 2.6019559469731197 3.2705110129107795 1.0057596704424119 +3.8396879388994765 1.1420798432090122 4.694808818246789 4.506254217902084 2.7041897631723044 +1.7816859849114857 4.434359019141542 2.0720518995532613 4.344048487189578 3.492655539952711 +3.012856365346002 4.96999314782381 3.724154948125818 3.5019972595134727 1.9697051616770376 +4.037155302893681 4.85989431621733 4.119107139659848 2.1802543094680877 2.106193196548543 +1.36492180740664 2.8950041985602657 1.5047687363277125 3.8887450851792145 2.8327540231375075 +1.3810405766549105 3.103906617512605 2.0077691687023824 2.455220237147713 1.780022430587192 +4.187580708449386 2.8323948362463285 3.0959148377757817 3.1185690282949454 1.355375210252438 +1.5744512393362675 4.964100458983777 2.2318123364294093 4.894386198248204 4.310338896409147 +3.5533241495223 1.879968022310933 3.750696985657217 1.7205388280303135 2.6309053334270485 +2.7486048110533474 3.948114532427662 4.454157662920848 4.69218370721528 1.2228981844102722 +1.2268446955056005 2.8957747354377505 4.020395064989529 4.149272657309497 1.6738987161683707 +4.155063469486196 2.3509259837734393 1.4151874710788181 2.0109430557935837 1.8999570479547108 +1.5972134277910341 2.556239708672747 3.7145045942493136 1.8170967480062803 2.126002808654409 +2.6900624515126634 1.5702964429735848 2.029510161401531 3.7392633312316 2.04380327224112 +3.849542168648615 4.707527631605259 4.728423855015013 3.0007194546044764 1.929015694555868 +2.2445976829023344 3.353841791351422 2.2004927095552733 2.5696003931882885 1.1690436152025898 +3.7107985525357763 3.702990230100018 3.146627682954365 1.4020535852931397 1.744591571723806 +2.7212004466247866 2.14856682766381 2.799068214756174 1.725933443801524 1.2163582935123325 +3.4032071885804815 1.2146750305176264 3.3575683815376474 4.707760376935065 2.5715153958921806 +1.0182708789573796 3.872468934638965 3.723049043295388 2.3441971582165317 3.1698074171851607 +4.63198211809096 3.6755262449296358 1.8462024121522247 2.368957224463165 1.0899910234029624 +4.502359045675394 3.713249535945574 3.479732109641927 2.2127976749125287 1.4925872437647112 +4.765732271835677 1.9147715342668792 3.5288023580875403 1.2635833493090023 3.6413176577841226 +3.534827205826509 2.4273338037440944 1.7298700550233508 2.1005831651712406 1.1678911959988407 +3.994901571311221 3.8575937368582656 2.275903040579712 4.308980674854487 2.037709034281017 +3.072892476628491 4.386303861478382 3.527241324843831 1.8309413582500338 2.1453398431296207 +2.5548579571658396 3.1851597257694784 3.6444139836672793 1.2118490068062653 2.512897269319958 +2.984083228999709 2.9536425022362973 1.5572282190238762 4.284312005234614 2.727253676294044 +2.4013955469946886 4.579260950934938 1.6072970918222684 1.0304908800802166 2.2529543101412512 +2.1918864414250523 2.293925973280692 4.683850178159639 4.855139741737819 0.1993794890456929 +4.430026339481602 2.017813502528448 3.456463242997704 4.650396770451669 2.6915140792387193 +2.794865826477336 4.899497128882397 3.0932020338793813 4.9900721253910865 2.833300030553568 +3.01731002054716 3.6555430140231775 3.734290641927641 4.599593308092606 1.0752162843044906 +2.654076742177521 2.219284690291968 4.076058367269959 4.414238226874787 0.5508264207762644 +2.2165481405287486 2.0764235021674944 4.709767160005812 2.1489772166735617 2.5646208390612957 +3.8927933156462493 3.634654679898414 3.5297442206575456 2.7620848742903124 0.8098990229224391 +1.989409329185042 4.55135240865857 1.9777646026672278 4.9895679358485605 3.954050032589938 +2.167412885273928 3.771597789982039 3.062196639723312 3.531247753281824 1.6713521937712148 +4.354276224372723 2.192214281470213 4.3497830331570775 1.9605507201078036 3.2222574215394646 +4.886946796224338 1.7185235825050147 2.602727213989225 4.257279061480546 3.57441568333517 +1.2746742196820406 2.803292069817189 2.2662072246266667 2.87177196226017 1.6441962118971496 +1.3464718540545069 2.9878903841326676 4.464913464104864 3.26204158168967 2.0349829376161908 +1.2760589297095097 4.651894808226527 3.004388411818721 1.5961109671876774 3.6578016949718997 +4.915384871831167 3.9322665972229482 3.4946704425387534 1.1886434334078961 2.506847045335963 +1.0163128981921354 1.6787514193509092 4.234946703214855 1.9560159409777853 2.3732573002911956 +3.9281019856355077 2.7909250654415065 3.1578471182787937 3.6479848041790652 1.2383078369135792 +3.2170744603920634 3.906721060299819 4.954956472354056 4.349750235644777 0.9175440162281784 +3.3687707329418766 2.6915300569653913 2.51685153978687 4.293573600298993 1.901419525908875 +4.958198199419044 2.6760742282424363 1.3183518341686593 1.759919203081572 2.324450808493818 +3.6473766627423414 2.6482117836756136 1.801974305791616 2.3940409939749387 1.1614100993261582 +2.7646201753795197 2.8107405545043527 1.4522608324378612 1.601024564261861 0.1557489559413522 +1.770688202713222 2.188517750298674 2.1591765223392705 3.1805982155105617 1.1035777299838787 +3.8579505342389466 3.27108758772982 1.087092459973725 4.631836869812485 3.5929961103608936 +4.231025650392277 1.699058247118424 3.430619908317045 1.4140704340789902 3.236870512283603 +1.3495558579087863 3.2047129597455526 1.8935280990662244 4.38103150476635 3.1031082910309644 +2.1277961354127863 2.3344999087499994 2.2883996994041405 2.009745041959727 0.34695081499732117 +1.9409841764447466 3.783803210562655 4.452965076260794 1.506538985394358 3.475256638213317 +3.2449591529861967 4.600374268586778 1.716802042223132 1.8577696693627361 1.3627259473202629 +1.0026214110224911 4.834195543237365 3.594521702207418 2.1628700509348904 4.090303996190199 +2.0727419156481948 4.023008733682995 4.17730584078708 3.3505442553042433 2.118271791049883 +2.527544577576629 4.742668438899548 1.4476415759115815 3.636543588975696 3.114171758878802 +2.6393783909597994 2.6263372535460134 2.9803944240795492 2.438903113755999 0.541648327257604 +2.464650567272166 2.4655696857014067 2.931796843569469 4.114656832119481 1.1828603456415394 +1.2225191077874986 1.7488071979981377 3.071766794435305 3.8267307411816343 0.9202987095418292 +2.0697309284345367 2.957602888665353 2.4909944926669474 2.3006263076293707 0.9080510247990545 +3.47371831700593 1.8481320377044028 4.082845440152166 2.9292683928064016 1.993306488128796 +3.2113231499250676 1.465939374902156 3.608834012736382 4.036854922876408 1.7970994467837127 +1.116857117862096 2.4652696657256468 1.6763914742117696 1.574839686474872 1.3522311802456088 +2.4207862394068913 3.760527043236628 3.411098557265919 1.5526678131937457 2.290997654289284 +4.869288617185349 4.578646494028581 2.0442130505042804 1.4696242351163726 0.6439139309891915 +3.3858654392103 1.8430063635377714 4.067047623311314 4.055439134502253 1.5429027462538005 +2.6934391978444205 1.730758657331915 4.883597568819234 1.3943397273177878 3.6196234759379027 +2.1695515329374984 1.950091462183134 1.5361866515190115 3.6322823212545226 2.1075530312045463 +1.5907023978742725 2.220072788928067 2.834127496216585 1.00353648031003 1.935760976115853 +3.705837435626129 1.2092218214602837 1.5356160345974104 2.5089786239232716 2.6796500247599213 +4.173635755958959 2.085588594504646 3.6484087609270195 2.6434549735791495 2.3172986564450953 +3.545149551664873 1.2296065505471265 1.7130640631341048 4.414944165866213 3.5583557269566306 +3.618849449466564 2.685721745727023 1.968592873972351 3.717465418029197 1.9822417831440475 +2.928079241669789 4.141231854750714 3.1905286406989375 4.262038162577862 1.618601840509975 +4.642295568207387 3.6016664504965674 3.0987647243912293 3.765590759502193 1.2359473782202084 +4.373369190387079 2.026936182369937 1.4687274878211865 1.9944479701979647 2.4046059732735516 +4.5243426433123926 3.18749546159665 1.6342414052157737 4.413219645414388 3.0838094050636 +1.1250882081947782 4.582426621756451 4.765474003591725 3.8117626795024755 3.5864682064093656 +3.814490643213891 2.4993410623576446 4.035110377019427 3.8326918659902263 1.3306358155534668 +2.9266695393135223 1.6997195154464602 3.3863531932440236 2.1519142122377652 1.7404729124278706 +4.829429905042473 4.085867861669796 1.523063931822795 1.1359693985952726 0.8382879517201617 +4.057623894133419 3.5011359872996652 2.0250653581248166 3.5765606660529152 1.648276821706572 +2.875560127967454 2.2444246314692737 4.78410105466771 3.2504881491569546 1.6584030146165154 +2.5325731299128904 3.5367720936482443 1.354555463445967 2.5505080793988393 1.5616395929828615 +4.13629925560256 1.412663232885694 2.3882666924455305 1.2653111943546818 2.946051974241699 +1.8999361187301762 1.1188880334144633 2.7077976731286446 3.0549125761532716 0.8547074747989146 +4.731190115718121 4.591000500994165 4.607290808703783 4.967009902998635 0.38607117851085443 +2.2105846697883176 3.9454029037247205 4.7575086263083275 1.2532590111058557 3.910161079859101 +3.0411523266125777 2.1836029377665818 1.9996901837534073 4.146889569132384 2.312110757485894 +2.7497168078393903 4.944429195899469 3.687736509614087 2.1083188590658377 2.703945743014775 +3.2290503106731534 2.272564336111552 1.607574433809423 2.116248922282981 1.0833351996297784 +1.4716761938875154 3.559574372448836 2.792171302760626 2.107941202334114 2.197154895397535 +2.345266575568735 2.3886437993733427 3.6728652256420893 3.036908895547391 0.6374339474271135 +3.352859502539717 1.0969365515673193 1.7460674115692423 3.6391017202656633 2.9449562398490317 +2.5947061011823487 4.24553842846939 4.138667611978395 1.6020314235503257 3.026511279552553 +2.2776230557915262 4.746236783959681 4.713350627383128 3.1346490389411406 2.9302478468978572 +1.2682781697047134 2.315514524731534 1.9714107509173813 4.350305673505746 2.5992008456459383 +2.8322730095600352 2.8667897931826847 2.6794152365841506 2.7231863776379646 0.055743350642078186 +1.987034367261049 4.4875244754282235 1.3638161708257948 4.536419611930247 4.039537520007668 +1.8343611774332622 4.462951414049172 1.9244559898708906 1.0746935887136893 2.762531949218495 +2.468827818748586 1.69364585159585 4.368274922767053 3.6425447433270755 1.061881055273503 +1.0793490017923562 2.98925777863719 4.184623263543003 4.971244612679415 2.065556748866058 +3.9965192199088158 2.502225508914026 2.3024509831145368 3.832574894620243 2.138736280909851 +1.8319875487803916 3.76470927473131 1.1920267227025318 3.0283324794965285 2.665976763289108 +2.1948588723847786 1.2388409483927658 4.099830323141649 4.965188317891161 1.2895017371337247 +3.360963152308347 2.881083228378728 3.888226910010579 3.128284447034216 0.898775438263239 +4.666038495633008 2.133795427954781 3.6378023562911372 1.46313134977694 3.3378809056612413 +1.6621017524429385 4.357141848071091 1.9682242327871005 3.613785150852961 3.1577067394090226 +1.208042062044071 4.796553752235045 1.3602686149624503 2.2712183079087525 3.7023297386532503 +3.4151236208353333 2.1740562322494963 4.488401828550284 3.6385843771414126 1.5041402739539749 +2.640712765378462 1.4633217565737096 1.4075981059328355 4.0027718751525745 2.8497677940598 +2.5020573498751935 2.3672541463129173 4.938015406278218 1.7271602840014735 3.2136836371897997 +4.871365240814556 2.5578563394150944 4.509907813472392 4.730198550006268 2.3239732023965294 +1.2510795106238173 3.5036359704104494 3.196037894109988 4.956161441435386 2.8586789792447536 +4.299840338347587 2.3824623231183835 2.2050284628726726 3.8484170299771345 2.5252850207004234 +3.2670652084529466 2.31113619685691 4.664170871107645 2.281871164593946 2.5669343908378788 +4.805810060895441 4.157833372443619 4.666499649902704 2.4974655659391414 2.263754104617514 +1.1481902612714325 1.3918781260262136 1.588749983902387 4.672279383013388 3.0931436000629833 +1.7668680752557555 2.5811352983572537 1.1600823484856657 1.8105165698305785 1.042159194611835 +2.5468662916770923 1.2458720950585112 3.310962607094138 3.9457918582794207 1.44761668883572 +1.3195597024547068 3.9193523963272683 2.041769854076749 4.600857767088184 3.647993009537487 +3.017959811848003 4.836631261381431 2.138257319585961 4.0464620588383475 2.6360597808572717 +4.913332921479164 4.055533119811325 2.1923971202463965 4.466842789143119 2.4308277603533415 +1.1034648304629693 4.2367629810150795 2.843647160176365 4.143660396503472 3.3922841441835256 +4.27022907956399 3.8035464954509215 4.438576992052164 2.5836950827505287 1.9126890839258042 +1.3384727318231882 2.243319068457979 1.6117605876595573 1.8060508386628928 0.9254704720067195 +2.923022340133833 4.318090157427964 2.2317341371540573 1.338782573680294 1.6563745680129383 +2.2327712541819587 1.944240289320423 1.871290338166471 1.84930680694689 0.28936722918950425 +1.6493539347649295 4.9970299101315 4.352271617620761 4.8740723814226365 3.388098356475317 +1.1608158646890558 3.7895723479413084 4.284880493858915 3.8150640222844805 2.670409737325604 +4.205969124092048 4.819162563009819 1.0911656597242545 1.4679292455756912 0.7196922906044183 +2.428449462963825 2.55154454641794 1.5394243221322332 3.074207450938054 1.539711548322464 +1.386047631109807 2.4207494641532867 3.782948769774936 4.305502174531382 1.1591677808350658 +2.6547614116855947 1.0354016686126917 2.826057383509367 3.078077565000602 1.6388533031861068 +4.078842550607576 2.2547149211959314 4.490663709067115 3.244708875518912 2.209037133147625 +3.919944858683864 4.603306561024727 1.3550796963708023 1.768206292582661 0.798534157518511 +3.9590359607980563 4.694997815396017 3.704843234842978 1.0265618695453753 2.7775584463920215 +1.5956667416471544 3.990930825635837 2.1506568377738686 1.7129245322113529 2.4349331825286744 +3.9800722759037175 2.560518258944627 4.371622875777007 1.0567075912325414 3.606077779356846 +3.503380905118532 4.675931207827327 1.680481281043562 1.2004619490215411 1.2670014883564085 +3.889641658341854 2.805476987716082 4.001853389194728 4.3372273547199365 1.1348518536730654 +4.371996779713287 1.7186120875881707 2.3042050241898355 1.9098291908436495 2.682532874417646 +3.0042313222290264 1.9295250774025212 1.4449393320582118 4.253987080672173 3.007614131942835 +1.8277620095038665 2.843929543348526 1.486939700827104 3.5010816218118066 2.2559619089665244 +2.331872888385221 1.756367625164399 2.4320953199591107 4.190888201885377 1.8505563243277328 +1.258629051544315 3.7578194302124923 1.4146224470082376 3.9099858048068894 3.531683852820316 +3.188263992583095 1.5615572900155898 4.767293983435737 1.7385435470243253 3.4379505380735718 +3.6920384285835914 1.254523002767007 4.478270435615091 1.3328946756091944 3.979305231158635 +2.632166069797293 2.606017591727129 2.2590149829789934 2.5179366372309966 0.26023867111937793 +4.7827901970157445 4.458961565115374 3.842211278579312 4.098935696749055 0.41324618537024516 +4.986306833453813 2.3387728446092004 3.1041584719017217 2.120790926716225 2.8242606025315045 +3.1647847384687147 1.419474622288352 1.678539495002092 1.8990209401961429 1.7591814770842626 +2.075848927708009 3.7538554310226186 3.5962267217694923 3.639903513682945 1.678574838164201 +1.730865517583065 2.3130786642789514 4.79426055916023 1.4868738738868768 3.3582404372094894 +2.7437561433751596 3.5562960792261245 1.188730437431618 4.4723415375486475 3.382650292915964 +3.6674746899830364 2.8973146878610354 3.1356348062849215 4.327850829826799 1.4193398027458284 +3.7721219068859035 1.6523533370421695 3.642408503321416 2.371420497535886 2.4716046003655254 +4.6932479361530826 2.223821401375468 3.6262836451395195 3.3399046882596366 2.4859767331186724 +1.5784464675801315 1.0454355837692733 2.9732940581451985 3.2401532347041737 0.596082563387461 +2.381308551594067 3.2107565077878064 1.9849771396851024 2.8788402776437536 1.2194159345503315 +3.076404695334655 1.9484570634989988 2.437097276424033 2.314566789526873 1.134583439145363 +3.1166442762378317 4.883401854952938 1.6184899612291996 2.6800598742254547 2.06115574911896 +2.777619114457694 1.5686401140169335 4.146259684988227 1.903790551789363 2.5476063347496223 +2.9184301574107447 3.832825824853612 1.4892236864245496 2.614816520069031 1.4501995255102311 +3.715810003396142 1.336354034857489 3.4244750112777402 3.256520624176595 2.3853761511260108 +3.2361096454427134 3.8492655399555575 1.4606584970242706 3.2449594272763855 1.8867140643654534 +1.8017502689893456 4.683741767433728 2.6114611965268395 1.8789337025685624 2.973629352577501 +3.971110379744666 1.8235253226607888 3.251504604272062 3.018943343864046 2.1601403466563287 +1.1983496098306694 2.2019376621576554 4.385468528979565 4.430316636502615 1.0045896333935924 +3.448349272830739 1.7013362377760881 1.1487790275462513 4.517499838846349 3.794777259489317 +3.367347255257386 1.8266428119308387 4.986248083224563 1.8090891227963048 3.5310209913728547 +3.3625531457860154 2.5445893997802362 4.687475900728656 2.018332216651995 2.7916648609792216 +2.0222106288883874 2.631974353299917 2.2305354383058478 3.7651932410903606 1.651358946823981 +3.3302758354209043 4.176569416700255 2.257417812506207 3.992344152727702 1.9303321557983177 +2.854549143524505 2.103084416576968 4.1842160537429836 1.9393678039125404 2.3672859777840825 +2.0208358803302193 2.5098099704849255 3.700961897742824 3.359914829696366 0.596161692383625 +2.2398006697848056 4.559354879288824 2.440196700866203 4.793118612350659 3.3040237971860122 +1.2504649621685768 4.200117452164385 2.316353722088516 1.2330270072834866 3.1422995692245395 +3.56664687647654 2.5448232192690825 1.2143926801734657 1.8198816961456474 1.1877459892130913 +3.8679061680115416 1.2596223519236398 2.9353028577095497 1.4360041869114264 3.008494801312292 +1.6302765404528246 3.3041377557920533 3.835101698207209 2.2534609865447126 2.3029109207707466 +3.891388208703563 2.283719944085357 3.633093746534736 3.8421328663799117 1.6212015922414336 +4.264125014625088 2.485278617935271 4.0748445504461515 1.172900598372927 3.4037586876849404 +4.268634646473769 2.2632965870201205 1.0354895175205359 2.379656271552054 2.41415927298448 +4.303858292769112 3.9272672927151677 4.369923589244971 4.801162693013975 0.5725276813754279 +1.0433916221278707 1.4633767125120123 2.4489358493947857 2.3177506656348568 0.43999662337693213 +1.2354398730152036 3.974030562310105 2.17162368287292 4.794940429740272 3.792317196370503 +1.2767588611378202 4.967360455981101 2.283078620283225 4.042925213548238 4.088716199944212 +3.519336090430633 4.48545378254843 4.970339081297744 4.2252668625939585 1.220047542560207 +4.794786866395057 3.7754122104194385 3.9321071393167792 3.6502597619931767 1.0576212144948702 +4.877792648178341 1.8080535001461548 1.8300693870486957 1.7748238512115129 3.070236229704696 +2.0985555978857553 2.7600697813780175 4.92687065324213 2.642177122199861 2.378534327216621 +3.80310756039801 4.225242365539191 3.7740137418361996 3.1081490274466894 0.7883993985161369 +1.7639067719090789 3.483606385998724 4.1743574340480185 2.4568195872049206 2.4304943978619864 +3.888091553717059 4.013798381567019 2.0126883764430086 1.753287031235082 0.28825555409008424 +1.6414535260669596 2.126553767184883 1.420416511338253 3.615557192106762 2.248102500398392 +3.5428466984837015 2.112080257366461 4.737331821950697 4.025567652510969 1.5980303006906718 +4.962270931619454 4.419932560011377 2.326986943392913 4.542030329253404 2.280471028222636 +3.8713509385613674 2.628814789161154 1.8019454002178659 1.676771815586772 1.2488252515286944 +2.5660584324627185 2.013360571743941 3.3497782189154863 2.735193677928659 0.8265525290404125 +2.329228756589205 2.2123004819799585 3.2066294102063733 1.2642318452488341 1.9459138012142452 +4.224867179299478 4.919807664482528 4.64824857020266 2.896737629353574 1.8843388373274332 +2.408575402706023 2.155763044110799 3.0754391923880635 4.226014192433268 1.1780224613255479 +4.222213337382952 3.9047620597862136 2.821916260798537 3.765585535590451 0.9956339758335381 +3.500722560043217 4.04367491165459 1.3316889677282995 1.0043666000624905 0.6339851642543944 +3.7641171278683636 2.5680990310136234 2.7253578244374586 2.4202082726903646 1.2343320205420774 +4.926748659218265 2.553311319444238 2.6895909507378994 1.4050750373764713 2.6987378415682306 +1.0813793526481783 1.6859913828639805 4.45213165379986 4.772263926139997 0.684134766603287 +2.504719769664262 4.881359187798866 1.631783987700953 3.1995103526651216 2.84713555687729 +2.553042577806979 1.7128402857956218 3.156010996517165 2.40196147364928 1.1289510947948205 +4.661606137876877 4.358558632369207 2.894160668812606 2.8544526032776965 0.30563789206010733 +1.068164282359755 2.6836364422745502 1.4793840907523226 1.2168884595598084 1.6366594807274144 +1.7773499432805862 1.5365634395054237 4.300647357881127 1.584938221296905 2.7263628252540575 +1.163113432521401 2.6122943488262576 2.9186218789941383 4.121526503129738 1.883375921835307 +3.782657612586719 2.093435415617843 4.1818475913415805 3.041332757181033 2.038196682774412 +3.2748840331037883 1.71511333894916 2.1579537428469426 2.593383280298615 1.6194083797575547 +4.049564473181536 4.49811625442749 1.234677397831859 2.005307799568202 0.8916669313926786 +1.2567840858107693 1.3905742579159077 3.7519091818423123 4.828607632208266 1.0849789690000304 +2.461147245446637 2.0825992616421516 4.830513989295632 2.925754435004054 1.9420112089551624 +4.291491886182855 4.225641672691301 4.766261143045739 4.125468770193946 0.6441669936607392 +1.338547190529943 1.3909158188575388 3.8596104432099305 2.8165222083520756 1.0444020006356696 +3.0131291571221364 4.312818250331763 3.3930778190017397 3.7533638738997426 1.3487022578619898 +2.5908162890877406 4.929421177246722 1.5831399833075719 3.8745052559373336 3.274053700771376 +4.794133933728022 4.466197887112303 2.9160018679723256 4.852489864302533 1.9640590140321468 +3.5465543491412848 2.533184437049216 3.076078406101341 4.035150889879113 1.39525574998749 +1.02243986666091 4.333962637045537 4.414947563126402 3.356866854777459 3.4764519044790587 +2.017199067234511 2.575642487773975 2.380032189842973 2.5007839407856522 0.5713493146049443 +4.756338861365585 3.914315009056184 4.9902631343302986 3.0462828037725793 2.1185050609930727 +3.8089482829463917 3.263522884607242 4.0102939631580234 2.925887388345685 1.2138478012706733 +2.7833987143949366 1.6369770896658284 3.0785453799795555 4.427575865252367 1.770357532206962 +2.22445837190407 3.0218998119334675 1.8085034548589318 3.882811649942137 2.2223112604820914 +3.9275218304428052 3.9339185401530283 3.097385632552112 1.9585363986597364 1.138867198330151 +4.948123305559633 4.16627064392941 2.515250850396421 1.419765055425244 1.345876187277974 +1.8352355844084243 4.186545378963235 1.78424220133838 1.0070425831790746 2.4764282740342707 +4.565310562135237 4.19433618480231 3.289720072853375 2.8076411065363382 0.6082944339732655 +3.4411132161532936 3.3631368836188433 4.007830862458132 1.680756456377806 2.3283804671637376 +3.0177699209294557 2.6064567696388425 2.647976112097523 1.8521300583103097 0.8958512430941283 +2.0923170228599295 4.292224139356501 2.038789651082281 3.979835799642004 2.9338117649315527 +4.086391191849472 2.369484532812571 2.4471915519567764 4.690459192785976 2.8248925969382728 +3.3053197276666024 2.344329903361701 2.4971600067060398 3.515409754278205 1.4001192773647333 +3.1926112231298784 1.4876376308733859 2.5506218468634114 1.5665338693517117 1.9685944472580117 +4.545259243022058 4.492799727180177 1.3351430903066936 2.1212761890001985 0.7878814946829354 +2.6612419052135516 3.9803703916173365 1.5111388317966195 1.1137253283829045 1.3776928018747514 +3.4981994363446782 1.7718517857577871 4.706785319269107 2.3817215890211823 2.89589322323895 +4.473588376492259 3.5826666361423642 2.862526963453728 4.928576349059934 2.249955913166271 +4.9917969008446175 2.135292601873172 4.472186531727341 1.7143471855857784 3.970553446204807 +4.38292402674381 1.3895855075633992 3.9810412189570736 2.6879985305157637 3.260680126068901 +2.795389600994661 4.977415636892443 2.790241320442583 2.2538895385311752 2.246978160840762 +3.913656250436614 2.0466068126604866 3.724231819045659 3.4132293156739815 1.8927747251597598 +2.1523020483548687 1.8043050006066914 4.442534547487234 1.6874665724685909 2.7769590368269346 +4.756605754589964 2.1147447981572056 3.807746398706465 4.995875779854064 2.8967362219349533 +3.149549797320626 3.8046084023581277 4.41256129519586 2.0566043113709864 2.4453292387052654 +3.9368975841432827 1.8005959821292388 3.019493947938607 2.6737507032378676 2.164098640548523 +1.4295552705405101 3.156491933788233 2.2107500330267196 2.1066020984610714 1.7300742848627828 +2.7392877179420534 1.3167560700520897 3.647439647033761 4.079709364265863 1.486759361054928 +1.044352179823124 4.173778541556162 4.65157553036529 3.7477441888670593 3.257333333784581 +1.707917845279527 2.336594109875816 2.7810626166182004 2.6315973153527885 0.6461994444048241 +2.7464913943759632 3.466434934041566 1.3142978201420243 1.0161450937183365 0.7792392113979607 +1.8761759229278674 1.175242584501356 3.8048968135700623 1.4492255000959 2.457741825750382 +2.5515041143945303 4.91896869848504 3.8626092568268597 4.36383509033532 2.4199412995151555 +3.2813269377793617 3.3106326587737427 2.4770079281403405 2.6789569421124693 0.20406427793054704 +1.2813881186398137 4.882104447020327 1.516062060136178 3.3239338099280715 4.029089021250542 +1.8688110930354562 3.20168991703179 2.3768793009247435 3.9840136445455574 2.08792882012375 +4.223865008883153 2.680609952651687 2.3915373952701855 2.308120622708485 1.545507853920062 +4.266295845654267 1.0327253941735157 3.083831230289291 2.505513778501387 3.2848788318188977 +4.297719206841541 4.793651703735838 2.7689337048119165 4.152123984143102 1.4694095379818706 +1.4812101738358114 4.306698431151814 1.582345979334427 1.7125772143895337 2.8284879470866757 +4.7568001163555635 4.798301734150209 2.78187855210101 4.245352929202326 1.4640627161128235 +2.9004788876648355 1.8423123734901736 4.649388257539533 3.676909512881942 1.4371608401745988 +2.5752083754078114 2.3562303093162824 2.938178121116463 2.5200438202558733 0.4720039056886713 +1.4313418499766604 3.2310639392762655 4.751981583637889 2.0773612259299425 3.223754590005064 +2.9021021576594785 4.928678184641499 3.2014011844027115 1.7755697923741907 2.477903458900734 +2.6287447633037404 4.421490906663206 2.7629054752502773 4.487265018314561 2.4874393597205753 +2.653427566200156 4.89261834281756 2.40042527130946 3.8328136265690094 2.658140653609513 +1.2683280045396468 4.391651133432919 2.820151464868174 3.944075470324557 3.3193903864295295 +3.90691886783061 1.4050991158398314 1.0748478755170892 4.636448434132826 4.352482120650598 +2.445700464004435 1.4776481041027485 2.9256367353605905 4.4795856996582195 1.8308147790404408 +2.409683348669654 1.3990039263844927 3.966133922643978 2.162493087099205 2.0675089258030575 +4.5157562056103515 2.4704779266051804 3.3591505547488603 3.1074781290968208 2.060704308823548 +3.410108335142902 2.868635671268965 2.7721334367653396 4.31880959756438 1.6387189484798168 +3.3128521707701815 1.3099047292401673 4.181287488688823 2.5936577051590746 2.5558495227775726 +2.4649843690627224 1.130607208885173 3.289776980879826 2.33787761494303 1.6391079306971752 +4.317899630325719 3.1861575907624466 1.7234094732283038 4.008670463858305 2.5501485916334463 +4.678882385507771 1.604612700419593 2.8682354928178198 1.232614961359963 3.482296457738578 +4.318249168910137 2.334693170063509 1.615723879087203 4.155286381924766 3.2224016053836353 +4.161376452667163 4.9734406704719785 1.0306494002725608 3.6813954169877516 2.7723460712851846 +2.293928010364914 2.3030277812514424 4.521116614610059 4.808096195533037 0.2871238159695487 +4.869926632441288 4.522227222357964 3.2665908295325248 4.240640041905683 1.0342469472505404 +1.937500167976316 2.3896174217026354 2.0499997726187025 2.6003292526508734 0.7122306843358469 +1.2256417098920678 2.088199166982547 4.624804441324184 4.515672450978797 0.8694338146743196 +1.3492376037881222 3.8668462533761105 3.5995250885697456 1.4483501456242824 3.3114810806701995 +3.690089696791678 3.221650372832853 2.6584991413111108 1.0971284649806075 1.6301269242411078 +3.098858904884862 4.832198266527997 2.67442425001695 3.525667029207105 1.9310824973948706 +1.3068464373952975 3.1641394496511874 2.7484625413471497 1.2775030457838876 2.369231768097474 +3.0719417186849425 1.0746191053014864 4.196338362977501 1.8351868198604873 3.092625782647615 +4.178626917464362 1.429944584337271 3.327703978332543 4.232426344039807 2.893747937788628 +4.844408267157549 2.331753754305462 2.137325783655903 3.6174079865898126 2.9161748967436183 +4.829049985299018 1.937140888300266 2.470675693797503 3.282551493207681 3.0037111277504787 +3.2360612586457966 2.158729971390039 4.556311310016375 2.6128754729117323 2.222067855724206 +3.4510278740319267 2.8089341970020696 4.21001632143221 3.574137153601495 0.9036739490340557 +2.6850527211711235 2.036505857586702 4.734965775980331 3.1912588211702957 1.67440861100093 +3.9696983442371896 4.340287336722415 4.4182327346656365 2.681953147139373 1.7753881286669644 +4.777085336515617 2.0418493498570056 4.400165068451437 4.997232563743601 2.799643816032097 +2.0634032400414486 2.4637471234696084 2.3003046993042346 2.29778939320225 0.40035178501303914 +3.9755697861503454 1.245678592399381 4.240632256888558 2.795198666119282 3.0889454826919867 +1.2769127346547235 3.884042141015173 1.4378342455461608 1.9041802791224285 2.6485094609122517 +1.3198371201259942 1.5574059407565146 3.068603356359428 1.1960350771567816 1.8875780526409331 +1.043331993077551 4.7397622140856495 1.1065793607739693 3.823238187239705 4.5873556171498375 +3.332141676334521 3.033408221282035 4.205923709403786 2.019734328126374 2.2065053111147743 +4.084445981938956 2.3236746654143907 2.485363918054571 1.315015949572632 2.114244545085892 +3.9351120409947113 4.766753285434095 1.5480633427401083 1.6184519619921334 0.834614711811919 +2.5247746571611596 4.557716065373562 2.566305879119514 2.9780609687853175 2.074221064180556 +1.8964825665808651 4.529110311720396 2.5815085115238583 4.5769418555312225 3.3034047700599554 +1.8914460918858085 4.985846215381064 2.2688652906079048 3.1850776257299738 3.227190289914322 +1.703862126123315 1.4238468630256453 1.3535698115751185 4.4021542198880415 3.0614172277192653 +2.2999948623120146 3.3258420986187187 2.8677656497391384 2.599316405978322 1.0603902813180894 +4.949999407865464 3.2580428639347683 1.9293079922676464 2.0204681607896138 1.6944105532234088 +3.297611668662269 4.695639937350217 4.19874146235391 4.465450356889008 1.4232416079059644 +4.61737858673917 2.236456502596759 2.4829863141632336 1.550114813474329 2.557154513820901 +2.1300178984591955 1.0354426543981985 2.3931968624124704 4.0359832706927925 1.974042083680526 +1.3638462891156564 1.0707791564817235 4.168866005856039 3.710582155109609 0.5439783378823563 +2.446572781363001 3.019609960740971 1.3390776965768345 1.7779008224780073 0.7217598941304071 +2.254923363786835 1.7492698124999473 4.517800750482676 4.491981937441777 0.5063122801551254 +3.044555734184902 1.6381496174316017 4.342879903064512 2.5381676558410655 2.2880044712629823 +1.961625818019583 3.116132601462456 4.247604718225494 3.236339879714168 1.5347776668380826 +1.8535142065303019 4.830237273076193 3.287689391896535 1.6343272813223115 3.405067764904074 +1.6191623848071375 3.5835630591287337 4.697478811834973 2.846640882275523 2.6989759263044664 +1.450402515806866 4.4831679083608105 4.750154440348419 4.710894164907412 3.0330195013386554 +4.479259938626001 3.368966576631557 2.3082660559349724 4.034663011938646 2.052607560978882 +4.616523204788383 1.2543112600488526 4.025582588571332 4.434132622631866 3.3869429123739354 +3.133590249134594 4.287460174030813 3.7472820305342642 4.582504654905708 1.424434145842456 +3.7492920598654753 1.6649854359209901 4.172922647848307 3.1207891751041763 2.3348059763259736 +3.6336999444569007 4.747223891880877 3.2455137113931833 4.715448830065654 1.844083738498153 +1.7421375579309744 1.8218238360394268 2.4588945019549886 3.8899485493910944 1.4332709407512725 +3.0727991052259034 4.577995149396333 2.4150863850029647 2.836597392912218 1.56310161575471 +2.76982522384531 3.6548246958393786 3.4236093662867972 2.665779033428953 1.165131271071724 +4.122059995750659 3.8230272687399656 1.3631009508137826 4.973907352392704 3.623167597766735 +4.919819332637861 4.997863158353523 4.305191152684424 1.7952898398674053 2.5111143818657347 +1.1104606594127406 1.7414418490955121 2.4605040728248952 3.818673273491507 1.4975850023864652 +4.993292789674383 3.1811530055576434 1.7183247077407744 1.50296143941204 1.8248923076510293 +1.717406962050402 4.7587590590938085 3.5859846859099145 1.3489094880212686 3.775490434261336 +3.3164068833324967 1.1644242209675846 1.6663726455904233 2.017414511025783 2.180426511122884 +1.7455104762397928 2.562090508451035 1.0143452628362088 2.177177834637702 1.4209090537569913 +1.6184131638110473 3.5259586546559767 4.149885505358578 2.4060882491253177 2.5844842174966884 +3.603004121802338 1.9977236840553694 1.2817158216341564 3.473638462889822 2.7168824319543736 +3.1950455874575976 2.4415778956732908 1.1197719423223842 1.2160851235735914 0.7595984409182914 +3.5583977698264753 2.491812834650653 2.5746513280652064 3.0456787644367727 1.1659632368813277 +2.561988609045407 3.498207751054739 2.7355217323605663 1.0575890180543883 1.921448535767635 +3.8299001794181304 1.0804641335942686 2.783630734517067 2.2059891272662657 2.809460516985929 +2.9855638852906035 2.395220464128499 2.0722981731494827 3.7278806154867867 1.7576855743519462 +1.0053335642134478 1.6817017131216003 4.422704660269482 3.7160208439395386 0.9782003317930813 +3.504699188568722 2.057324289838052 4.198673094539512 1.6491540526837967 2.9317130559214863 +1.3681335500579888 4.576665136318686 4.6657854245784485 2.145794657329592 4.079831909166365 +4.347348808852559 3.1733364850881753 4.357728434405361 2.890827864450729 1.878856625313351 +3.5570200679018766 1.9883783887223192 3.1174552662634225 1.5996958124617793 2.182711725643935 +3.0553559135272264 1.703049739508589 4.636388623857899 3.494079628727366 1.7701982455773286 +3.520802084459375 1.143776767588196 3.8793919511854273 1.231363216620864 3.558413345316439 +1.3887771686077506 2.0773829724754513 1.0624518451635256 3.238886362263209 2.282771377151732 +1.4361811104594282 1.0358470694576134 2.7728655670783096 2.256275885293836 0.6535535507600172 +4.362512814482091 4.332453649549772 3.8734249571685218 4.579432626800392 0.7066472832859771 +4.864885764988644 2.062843424735299 2.3219950548312442 2.211196021705973 2.8042321056421025 +1.2871266068149825 4.018312737933225 4.927416747534948 2.5367564110079783 3.6296879380266116 +2.0157806646398506 4.669701494073922 2.001243548430954 3.275067823068704 2.9437941591694923 +1.108664832289712 3.1342016198860394 4.068115825140884 1.8370891165290653 3.0133502040827143 +3.474767370681354 2.384118551555768 1.6197939559762906 1.4829116489779963 1.0992049911773556 +1.0182951360043484 2.3286449484426712 2.8772173503675966 4.483835570777934 2.073219413644303 +4.219501262076557 4.940109206832435 2.780112648161931 1.4520696623800755 1.5109513500207996 +3.2341312209368733 1.1123804858460473 3.072472057964463 1.9580341667744792 2.396622205350363 +3.1383041032922674 3.125007364137931 2.028233985088114 3.5738364652573664 1.5456596746947509 +2.6105617708161954 4.308637092589779 3.7741859988500637 3.1780182494272142 1.7996876906475643 +3.005491116608031 4.648831515845162 4.810811540143677 2.885254370678449 2.5314695496181248 +4.341132236144597 4.935299774190849 3.674609323763755 1.375138985990501 2.3749945047445875 +4.2561126312603745 3.5511611260714457 1.774925496552807 4.297301850140595 2.619034000124276 +4.0542443035681295 1.412396269703244 2.3040521977145794 3.9884436817962627 3.133135124070243 +1.0356937160077457 4.357972256561824 3.2115501528340684 4.048328363562218 3.4260374304691337 +1.1041253787511023 2.711525627970276 4.075028053510777 4.599453314198244 1.6907860347296995 +4.536708471993367 2.296572781450933 3.8287160166474377 1.3271449321669557 3.357985378579079 +3.2774999255602704 3.4273051552315614 4.38275122733319 3.4948279073309942 0.9004717813682951 +1.9099132859055343 3.4861143983641747 1.5943749250314099 2.7451674445846574 1.9515976455139432 +1.7470641764685642 3.446435758228018 4.999657668869316 2.8722997879638705 2.7227771349014476 +4.780479185582934 1.1201494283619722 2.4792272922597793 2.0810001016056026 3.6819286830374076 +3.1499562631563256 3.541744994160502 4.200377918850403 1.2819678780456525 2.9445909012988287 +3.7701372926939247 2.77286454968154 3.6801326271604244 1.775472654710979 2.1499494260578706 +1.9020228266149712 4.832062685595627 1.5753219597657924 3.5582768100078934 3.5379716665504906 +3.422634945629807 3.061995995912617 1.9604286482536617 2.52021517621001 0.6658989479902648 +3.129076411890836 4.159728944828874 1.294515081518782 3.9348658081167573 2.8343776394647997 +4.434903466653596 4.710508870368385 3.4917116959171453 3.9148928085909156 0.5050154380616521 +2.1293717621920893 3.2538526088560937 4.324318115618253 1.9172291472253353 2.656790258238891 +1.9998251312344295 4.119567746035649 2.1804302797487485 1.8549215188585975 2.144589635902532 +4.684044353570185 2.000903305902229 2.722778968803419 4.307307124260406 3.116083336035257 +4.329333034566247 2.110732846821413 1.7022115091858692 1.7930677969157807 2.2204597852880545 +4.136167182969256 3.6753541191555463 2.32611149921703 4.051216433544693 1.785591138593331 +3.033719112585966 3.6387390040431087 1.583901059257439 2.9620406178278533 1.5050972433552157 +4.036100358851474 1.9048472305007467 4.82050057874009 4.31683818473306 2.189957922938625 +4.170622690858264 1.275402742711476 3.9949214228467396 2.4173255194159164 3.297136239628081 +3.338805038093626 1.4727904236812033 1.8558325190528837 3.813496203354132 2.7045254005153434 +1.281841353827422 4.984875631444792 2.1777237111718977 4.658735947788891 4.457340527652386 +2.8396299355677654 2.6351150954847204 3.909832085542922 3.041983152091398 0.8916210468058396 +3.765436883829232 1.0645387605838268 1.052071051209075 1.152358000177086 2.7027593574500606 +4.735802595988323 1.8092480939362487 2.907410648013866 4.6927285566420505 3.4281308738654914 +3.4523062042948394 2.0868777189456997 3.3314298466516474 4.687311955002177 1.9242690145475823 +4.4259553112061 1.9650657573123755 3.8835548931702 2.2624153115713423 2.9468747749929545 +1.9525891391644659 4.031770935914875 1.00417266768127 3.8024320933773854 3.486151568339422 +3.9266477453578656 4.417780412386666 4.8731872885473795 2.1830016000343706 2.734649947489264 +2.7839811380365775 3.950641382382648 1.0006905932974268 4.631311704896753 3.8134637512015708 +4.751388767252634 3.703233819703079 1.2854176600752987 1.9523190903482233 1.2423309992802574 +2.0949910667770473 2.941486267570972 1.7905908946517677 2.698351138099515 1.2412021529756787 +1.073913323868148 2.773469547296261 2.2782663151997244 3.786141936287663 2.2720431873678297 +3.9202344365695456 3.096930908735656 1.2119716426947034 4.298065225966511 3.194026033653319 +3.9028724855523538 1.9043745012116897 1.4050926108372344 4.193850545711094 3.430913145612348 +1.6636409629596889 4.9486065041710585 4.880070653214163 4.866210885022738 3.284994779314029 +3.915864495782781 3.22564414412087 1.4107904349685776 3.838722022380129 2.52413468875951 +3.7352107454709826 2.5575341512173653 3.9000311351030077 4.334883304747102 1.2553957822523443 +3.8265844994598535 4.857550847639148 2.5119068788888645 4.419560753679626 2.168417606708255 +3.1876829350518667 4.426332245122737 3.7587840130586243 1.12204994486288 2.913180162592613 +3.6855792414856032 1.1120315472116844 1.7565026945108464 3.4569197105099034 3.0845689752381515 +1.6629071418897032 1.0422680941441151 4.96417294982121 4.811816847457261 0.6390658882416463 +2.297343283356808 4.2076849334999515 1.7454869017640067 2.4545009815081444 2.037671756085129 +3.800376441627479 4.273177533154234 2.4134387974056395 2.007507620282929 0.6231540681959161 +2.1438848794630334 3.1844040989403184 1.5588876672708625 1.2668394506414202 1.0807277210000934 +2.211690190343382 2.451854176581698 1.3814024663926072 2.5371850477386855 1.1804711413791031 +2.9775308062996095 3.3030223049860834 3.0316628408910096 3.773583316315149 0.8101794292443791 +2.8151386341797493 4.232155903036304 4.272444521100276 1.294622861948461 3.2977810379028134 +1.0921325337760526 4.6343293966298 4.063144215122697 4.727767049359587 3.6040091741004225 +4.670551624993368 2.7922817155592674 2.574629232623824 3.0855655026741196 1.9465234970938554 +4.283717827802834 3.336617652579944 4.778007646413725 4.171676965961901 1.1245601966833079 +2.4040306998784677 2.058140953516036 2.713108159929647 3.3978844406851434 0.767175515331399 +2.5979118398290137 2.727833789627328 2.3204714248891496 1.8955274155660726 0.44436147908990375 +1.8501325857221045 3.513363438264784 4.320649563920492 3.5352350089877116 1.8393512149532798 +4.284266382717584 4.346055488260454 3.011782288046436 2.2792161837903153 0.7351673215457674 +4.502221244585375 4.437380195733629 3.9622353658724947 3.6200692110394272 0.34825570939963224 +1.218738467369596 4.037513479568655 2.2365314342713254 1.9149271143216389 2.837062196711257 +4.203072786471283 1.392596492159519 1.7644391582957488 2.898452560469876 3.0306374572355113 +3.7890375883012566 3.892767875504104 3.880100151105147 4.831978941022392 0.9575140746628757 +1.0199697084359984 2.707885394517777 1.3753660666393355 2.5341233370597966 2.04738315297191 +4.20878554625142 1.5023246879719743 3.731559871525663 3.497577573073776 2.7165562930643534 +1.69761670154828 3.7676396281173914 4.219860799084392 4.2771092213041015 2.070814404616791 +4.937157542282025 1.6182634543907586 4.128692274644319 2.0764911235908685 3.902126027055598 +1.5374630637975364 3.6867141835036636 4.076955900278147 1.2440536381813416 3.5559268274461497 +1.37999450334764 2.8720541515417377 3.669281071569402 3.5487103782188876 1.4969232732054503 +2.9961007347215274 3.793027996096014 3.7432239340834466 3.3492942505381165 0.8889733716484219 +2.9194147370597 4.779882566027876 2.551430056332153 4.314949572235724 2.563462819234623 +2.9616752371164012 4.693086974893317 2.8172368759517883 1.807218605274366 2.0044758698507428 +4.948050242364074 2.15202575606181 4.610729026734081 1.1553747260485157 4.444910153340343 +2.855939007271592 2.3880698456630824 1.8613404784164032 1.4678448637193857 0.6113430715809522 +3.832704639568756 4.227578173665098 1.6406257406100346 2.725604262488319 1.1546010137129286 +2.2358386492688442 4.845656941823848 4.310776730802525 4.433262673884095 2.612691012425177 +4.54607903328509 4.997359841266089 1.5378075981451107 3.324730503511781 1.8430268140686519 +2.807987603522039 1.0056769899079505 4.957365742610589 2.1268477384165347 3.355615550091024 +2.3871054716050355 4.980948744418536 2.780831635008208 1.2858920612906233 2.99380481210562 +3.620304396046675 1.5913927840466067 1.9434685099648257 3.72560111076269 2.700459023228324 +3.4466182788588875 2.7044992068448876 2.3995242588973977 2.645803929467172 0.7819171267998143 +4.96586871409421 2.85518687515102 1.995764330861741 3.7516754898774844 2.7455785954149294 +1.8583825816481232 2.619422612407179 3.109181058066728 1.5748164851368087 1.7127336544483962 +1.0438990457388044 1.0816849921540905 1.938876614683576 1.9788745038487403 0.05502371201734425 +4.579811124549015 4.190290742520624 2.129649250307082 3.4579800706852346 1.384264749382155 +4.316317128879922 2.1711131208199226 1.7368097539038083 2.9857420389110603 2.48228364389127 +2.4814917889249615 1.3449838727089327 4.290841653747549 3.8363427306856224 1.224017775478016 +3.4414850093277214 1.1956835502383845 1.6371893292300261 2.904135730134671 2.5785223242029587 +4.847299368578865 4.7126932939982265 3.505714843022573 2.636180583319853 0.8798912569805235 +4.605421276509342 2.662792629963784 1.6239461356031675 2.1244824271450007 2.006076428636227 +2.2793120629714276 3.309087182062788 2.8718479873933545 4.521783294379784 1.9449224439910267 +4.594991949299603 4.319386873730303 4.774778074104663 4.196630884282057 0.6404782047652644 +1.0944887831019945 3.6107439751879555 2.1012904705760667 2.864002550904923 2.6293097780936976 +2.1848368593081853 1.854000450394906 2.517859673815393 1.9088052540033376 0.6931089494121642 +2.0108102853815923 3.846276218799107 1.3929497189420892 3.0695765406720246 2.485963131681653 +1.3129935711915763 1.3296776644705903 1.8180237606013536 1.3861538788769665 0.43219203337079104 +2.1178587143695826 4.221728355216008 1.6340108504410127 1.5696600755306438 2.104853554978786 +4.1209486770486645 1.7227268981268402 1.5672357443585243 3.9628347988679593 3.3897437264285126 +3.491968646217557 1.4747299626025847 1.069729703579366 3.5224927683357166 3.1757359081802807 +2.348457360455291 4.390749474773765 2.456081025684389 3.750232435461429 2.4178058134671034 +3.695288900561989 3.590799811025896 2.308951194373592 2.9012058785230463 0.6014013474619523 +4.850821063738723 3.549116161722239 4.040225570629072 2.846355171858673 1.7662848527329718 +4.808166527299833 2.0487399571752523 1.273398198661114 2.6746571868730533 3.094828225920504 +1.9506914468760672 3.504896023097482 1.2105208454594405 2.137934531386035 1.8098751364642647 +1.1060867805763408 3.488488398482789 2.2584009914510097 2.64137143630415 2.4129864961566345 +3.8098350211165415 1.306005043670678 4.262725288206047 1.826909502109972 3.4931880996807765 +4.225222687595002 4.969783181931556 4.444057065337425 1.9019967414576842 2.648856549526657 +4.607372718659189 3.5418182586755056 1.5178473943524589 4.630924993297497 3.2903887983404823 +4.14104733063284 2.6695364018178345 1.5952109343036942 2.9621467339664647 2.008446637085909 +3.917823832752328 4.7406932856163655 3.04534131985216 4.5334489063314685 1.700464149987889 +4.418662770276523 3.203641012638784 4.266103043030077 3.1500336003696567 1.6498147994164196 +4.503514494384975 4.213578240882543 4.978754182143019 4.333562163007036 0.7073441684581794 +3.3612119584303866 4.43101733353129 1.868897244665697 2.169896595844491 1.111343398776832 +1.7835498192673596 2.7312424325245925 3.560750066982057 1.983997558457689 1.8396384868664306 +1.309692737242563 3.9331548809453043 3.910732019726538 4.828476297253974 2.779353913839642 +3.3926458247998097 1.1560681652005873 2.7100280795608054 1.5509558966475572 2.5190728359103907 +4.784719423944798 1.8275250657356543 1.19896841531305 3.433774433293816 3.706663784352047 +2.710997456604749 1.0674788030765514 4.01361376230356 2.639800575414584 2.142082219935823 +4.012962274372255 4.013833798017997 4.059746187782987 1.776973656400203 2.282772697749215 +1.6725689432678084 3.5027725472169884 1.920467607631028 2.0082703527496237 1.832308531322967 +3.4693835545064315 1.0975576655747257 1.0022919678293398 4.292518579114452 4.05600162734378 +3.5915066949020114 1.3685273366703896 2.8685425351685243 3.039181330214429 2.2295189672883677 +1.5173719394042 4.026674740475157 2.1154842312838746 4.55665874432278 3.500847547462369 +3.1780233274333884 4.073898515414955 3.7307978396643744 1.9975551214958278 1.9510824361172696 +4.104007832186259 4.186185520796496 1.4593493160368678 3.3800943411038524 1.922502177846593 +2.489359947288229 3.0016748408157228 1.7370768582098224 2.21373389264565 0.6997631589382545 +2.443030388264716 2.9319115496613035 1.9378460575980778 1.8574214731296341 0.4954522214658018 +3.4583891493074757 1.6910815472327343 2.2908780490002565 4.510045379071496 2.836913780714297 +3.090917705031765 1.0777323716673175 2.7180005690460853 1.2379659805833252 2.4986831670941907 +2.030207578998595 4.233310529912641 3.332012906022803 2.1127638191403606 2.517981522606917 +4.441016793721378 2.9780989646717915 3.59470197604598 2.2678067071693846 1.9750391462242585 +4.508668642506729 2.5389098133610744 2.418263849994995 2.1251293329348124 1.9914511518210447 +4.5120570464784535 2.845151149431987 4.73083823058716 2.959674440965336 2.432199917621047 +2.4756004121315534 2.7323964291100364 4.580567394629452 4.807119466675072 0.3424471283047606 +1.54039455509607 4.815751270293351 3.9034765241327762 4.283772157547968 3.297360517229286 +1.4676712896611566 1.8539045126360292 1.2214761353030088 3.533213696005252 2.343780418915372 +4.164550899824794 2.839066333012715 2.3338875370032994 4.275953718600684 2.351282711747197 +1.191061965537184 1.610494579157101 3.4607724747080315 2.910346548527569 0.6920205326286605 +3.0868179360583095 2.244776353925931 3.726794198324766 3.8579535390679403 0.852195282024128 +2.850957778974835 3.8205973793133916 1.1339756558365952 3.9019663611199977 2.9329121192221264 +3.3439804731747946 2.505016863181381 4.830171724186069 1.704868444803072 3.2359512553521723 +4.323319434397723 1.6078015661545328 2.4366003510649072 4.805661878599173 3.6036772627402454 +1.1827724961457857 4.152477243106693 4.256329084169691 1.03129635293852 4.38406003627169 +1.9921994349911945 4.457624296252598 1.7033105829501776 4.221257404914391 3.5239716152042844 +1.6064328963661723 3.0359422612613964 3.420432037357446 3.024276136536995 1.483386841682914 +1.3592735126272166 2.581260348221518 1.5720755880632837 3.222436452268709 2.053519614823937 +2.0376266558745715 1.4970476961168218 4.011765354296658 1.5279380814302774 2.5419723706538613 +1.619321509930768 4.679952199316473 4.144263625317512 4.157119618098113 3.060657689673902 +1.5599986152001057 4.383262437184694 2.9482478134938574 1.9666036860724687 2.9890539977437554 +1.4206854679293728 2.751527417586026 1.0435228408625266 1.9815760793712025 1.6282150267217586 +3.8246206048149403 2.3767069652542214 2.5612327584070655 3.2874483405702226 1.6198280709391786 +3.274263734284965 4.47537258023453 4.621387653737985 1.9551010813335825 2.924336941257336 +2.805898865149931 4.117526662935443 3.8256023406915376 1.9030427700602957 2.3273596160777257 +3.528948648370284 4.501820548850281 1.1366316897818804 4.312129734019365 3.321184662691861 +3.090329443836561 1.9155614677613118 3.6149322811331412 4.387935407411977 1.4062765129407482 +3.2628547496302653 1.7359352017441525 1.3357166808609517 3.490597425516067 2.6410214556875746 +4.747284622454671 1.2988206677445833 1.661137801108481 1.1199487903682699 3.490671739404997 +1.975777712817104 3.919479830408046 4.9998284643864475 3.502327891683601 2.453667843692961 +2.8763580181724633 2.2355269869183134 3.711125197641303 4.086355369421903 0.7426049369838285 +4.9424212062432336 4.5619436095029595 2.689100788898518 3.4211153014195195 0.8249899685224142 +1.3325672454338502 2.6420781694356754 4.060736452904074 2.2242167920511493 2.2555760516505434 +1.514797319158133 4.94283655645391 3.724658417680806 3.493529949867119 3.435822082278609 +1.6766523197336012 4.702385208535278 1.5997444672237475 2.4517022101683916 3.143388539480838 +1.848614419322904 2.5527302042917066 1.9063074750619666 1.4453855094120032 0.8415628895459086 +3.133724205724406 4.229866380034805 4.226015231500371 2.6833573500249748 1.8924378472172045 +3.2680345138074274 3.6689489444418335 2.131102951128503 2.9220804845251145 0.8867794759854887 +3.808150919184171 4.080492964003419 1.1710669048200142 4.707161138856588 3.5465663142486186 +2.874746204235083 2.589916192399726 3.705009233233622 1.8157820604947603 1.9105777780182107 +4.485601091495473 4.925244697396463 3.180872635628833 2.3244916715219133 0.9626395254166134 +3.9895258682524366 3.6131358425215963 3.4707444177155753 4.298850832342722 0.909631620721427 +2.499869156684811 2.8748240420088185 2.1548363044873855 1.6469993302981747 0.6312602936839865 +1.0500040768238024 1.1244996439170176 4.4590417253727015 3.139911052046988 1.3212325014263346 +4.73066273756269 2.2781353100396142 3.40305827146846 3.8169237601361807 2.4872023290161027 +3.8503128793827344 2.8068467545537423 2.6356056994709816 2.0939385630293623 1.1756805860294273 +2.1791587293754233 1.4529150541695492 2.108571136134809 3.274299578327412 1.3734455492349622 +3.113716199791055 4.604842416645351 2.176971328136429 2.578594849652522 1.5442664432102355 +2.2085863207846637 1.5932276231831208 4.4428984583972895 1.1144230349424045 3.3848803481448266 +2.9168303426926907 2.1140840166896138 3.222447671879538 2.576782939299962 1.030186687357439 +2.7641574046034147 1.9143980559886908 2.5856261097298097 1.9857508293194557 1.0401640748485408 +3.205892174096686 3.4167708690906413 3.721221176258214 3.378090491614016 0.4027511523841364 +4.9779365709022 2.686834120344784 1.688719014997408 3.7216575069716407 3.0630033220844965 +1.4204013279415708 4.849356000459151 4.161654225678542 3.3895023043917205 3.5148184498956807 +2.650812422684576 1.9537348559493442 4.36562187724679 2.4876173964816544 2.0032019278693394 +2.8583943115660593 2.0438906154718857 3.9385362447836814 2.3574998955623694 1.7785084223894259 +3.027880047434069 4.173118202886874 1.9047345576137622 1.1596527456221928 1.3662786462744647 +2.69059198092819 4.101240704418376 3.2174140176853885 2.5460347848212628 1.5622675492391538 +4.747296318365488 4.064782555807343 1.0942570496924096 1.930453431597701 1.0793745527817376 +4.015331671460137 2.4744120350529775 4.1693590982643025 1.2442395671627162 3.3061696261833178 +1.0608890113424159 4.160056779066224 4.92288194003945 1.4974667474733803 4.619340872241473 +1.7108153470295493 1.8851065513572447 2.2821475897326153 4.501910077807863 2.2265944685487775 +2.7103549551325963 2.292725623236328 4.998416059661471 4.509167645896687 0.6432559904357525 +3.5676555030063843 1.86023735789902 2.8946011034294403 4.438298412143448 2.3017988841714088 +2.3488237080603622 3.8140096916922612 3.625154328595202 4.552782926123184 1.734146701286574 +3.7005776576266487 3.5308329083415306 4.406823838678736 2.825705293395763 1.5902041171332735 +2.5912926589489778 2.3707659568718906 3.686605814408594 4.20344131447498 0.5619172185098688 +4.8417379162455205 1.9793965710890946 2.414519305057245 3.536888573589207 3.0745261018792585 +2.1192128807751707 1.3152655685877974 3.336199462298761 3.880694978766488 0.9709823109752094 +4.689973689132391 1.8952545832424734 1.5813760777183297 1.8823979865572542 2.8108840371717885 +1.3288426949548033 2.3936094327932285 2.0972582855279978 4.9523368093650575 3.0471628744264203 +4.15464373538345 1.6659420201349824 2.138728135424687 4.2855784854294585 3.286731302190107 +1.8199527504993496 2.4249772833414784 4.148604842587069 3.031052515717811 1.2708178030826172 +1.018283593414846 2.0659875518162774 4.021959279964326 1.9787539987142932 2.2961644988497785 +1.407710284036837 4.068551337103887 1.744476745256165 3.376964509184254 3.1217128966421464 +2.1836101101361964 2.5499507450004573 3.905679268304936 3.007471570876227 0.9700425395171767 +3.841811839878325 2.816598587556185 4.968334632202941 1.496973508725358 3.6195870292518855 +4.896768973347308 2.0031303372807425 4.0411806637834005 1.0442690264321501 4.165888130786582 +4.135438675864107 1.2870012935770618 2.9560020860634175 1.8559853586864064 3.0534623497465136 +3.832554959624707 3.013020284736186 4.511563183751543 3.50885006442309 1.295017638110782 +2.7798731847282148 3.047990513609883 3.100541964963619 1.4310895615746495 1.6908454184897705 +1.2978515230417975 4.496038127884427 1.7853753401830028 2.0448551084423827 3.208695577572102 +2.6446423168432514 3.2609923519932504 1.3047928839938496 1.5489776206058363 0.6629581822586327 +1.529067776227515 4.2601156553204165 2.695227699792489 3.758796251445976 2.930836157475223 +4.9613412876989855 3.0473515560775524 1.9268101984083255 4.492989578554648 3.201348669520465 +1.5448216594827264 2.5592211116249457 2.7271286730237474 3.5840163666399425 1.327879048700339 +1.5933994353853174 3.6078928000517068 1.9016102757319224 3.141433696063231 2.3654482936405388 +3.723278037969505 1.1983352534994491 1.5269213649638966 3.6144321464528852 3.276131457631114 +4.206083617740182 1.5186463034320674 3.26916123540355 2.736998613441965 2.7396197499924404 +3.5393352732106944 3.509931871462088 4.176418695266059 1.5474982494518308 2.6290848731934213 +1.421848639642461 2.903969169764624 2.397542721202211 4.041146084629622 2.2131681549488054 +3.0792758747510542 3.5649376723569994 4.640262737688824 2.547109939334128 2.148756854302955 +3.921721903831788 2.5330969292106342 1.8181201958680058 2.3688228917591565 1.4938382708323483 +2.60343762372068 1.9397265204804177 3.640175332314859 3.969101369842118 0.740746087892329 +2.9637256334801694 1.5850015025103796 3.599881634546807 1.166760358239142 2.796597821378584 +1.2328226446349033 3.5289320907384316 1.2117942817593077 2.5125424227652404 2.638951366512131 +4.097037815009875 4.89828010739702 3.6343699353724532 3.2767271519046863 0.8774380728441062 +4.144656461083027 1.3702148169036903 1.3200793868176923 2.910816069242148 3.1981197022261854 +2.464580096428512 3.045270314528401 3.1794288629667893 2.619998437084827 0.806327185948341 +1.3195316527426257 1.9354140278244594 3.343691744094632 1.263023090738189 2.169906252582483 +3.94741029854927 3.8197812264202344 4.090197470913728 4.628386421884856 0.5531152926831089 +1.0812149703536038 3.832315101662883 4.03999649126644 1.7950117183986634 3.5508461756175973 +3.6245372157516047 1.0601053696455534 1.921850861391663 4.723424381487412 3.7980422432912166 +1.0487552026455256 2.729311507975426 3.375008232244934 2.0948431303605393 2.1126031769991185 +2.097282893399582 2.7777399783174013 4.4748005705118175 2.0280948060882595 2.539565108848033 +4.492253959527457 2.500320685871495 3.64885407341125 3.223291523196645 2.0368852817090404 +4.528110062495337 2.061007253779925 1.9308794054177367 3.719102591925103 3.0470212394294256 +3.161693723031203 1.5242506287009565 4.97633817204955 3.7149365022251155 2.0669673581858237 +4.290399409927743 3.8342671648943614 1.696488030139522 4.901913239761376 3.2377163865043057 +1.7052515106435417 3.9099255913780495 3.212845583340631 3.906358576791727 2.311178936029845 +1.9174568813468542 1.4641789721128626 1.7201977349536008 4.780762264888898 3.0939483035270006 +4.171368684740229 4.60968724008586 3.549255870313701 2.711936674461188 0.9451066562581072 +1.473898479967712 1.1275983266660994 1.8423210420284692 1.8020500768023942 0.3486338291344661 +1.9278750321526439 2.348657551450435 2.4720235244836055 3.0675722369226888 0.7292024392680305 +4.000939456375384 4.56004275169394 1.2943883814555206 4.430629245922539 3.185687249996286 +3.8250673778908406 2.516469380566122 1.508854188194217 3.2805481523830196 2.202573091033598 +4.016808180096314 4.790670805103948 2.422159732297118 4.816053604247133 2.5158678885314196 +3.451254814063261 2.5186096660653092 4.047004517713294 3.420546579253161 1.123510801347206 +1.4404210871254222 1.2665406277140447 3.4045558546968038 2.3457854491677463 1.0729534872441007 +2.9438025491911652 4.925703219751339 2.768183609414804 2.8447642806584765 1.9833796578504579 +4.821821207703376 2.9611085736679073 2.8355854733635737 1.3803554087794097 2.362190942182457 +1.2245903864398522 2.1239960491375345 3.072044954643262 2.048423220230162 1.3626195365014917 +1.118465127399837 4.524696884972262 4.940020219106803 1.5749202717249444 4.7881429011845835 +3.432684768973835 1.5805243635042454 4.319355590910234 3.7995049684145017 1.9237314878377583 +4.287655431512603 1.2229325216402076 1.3269389093114334 2.2092805134137463 3.1892088706490465 +2.0167018948618005 3.2738885961100577 2.5706797184971104 1.237964138317719 1.8321160496672602 +2.2606433062229687 2.652421532455309 2.4417721359028413 4.050809000551892 1.656046439671728 +2.158489270741299 2.4438608178375945 3.87719172483159 4.827554353082515 0.9922832484064917 +3.900642317082724 1.69535866210378 4.224842106776048 3.2751059925034465 2.401098641387086 +1.9440779608913816 1.7520568861342687 4.817407552551636 1.2696556011561344 3.55294469444452 +2.699209065643587 3.7759962396952966 1.403525105475961 3.554493677510896 2.4054389237900584 +2.772182012381845 4.048385261789775 4.329499648600898 3.9884636231034016 1.3209845966121214 +3.658477457449638 3.7060040066929725 4.487820467943623 4.562576268889076 0.08858443801241485 +2.9931964913799134 1.8734098858248625 4.851204748913357 4.827011976226299 1.120047915149522 +4.294372017049736 4.753353354036818 1.6587058671594845 4.587002799044685 2.9640490530675643 +4.820748405160549 4.637161629987917 4.277736377244596 3.174773665818489 1.1181372218179293 +3.5179804914281725 1.9297119935812987 3.875023405580875 3.5983989562480874 1.6121780010970976 +4.003675855845989 1.0388202788989944 3.61681378078246 3.415188131786035 2.9717034667824658 +3.150247557113449 1.478908744442311 3.2999117161613833 2.956772389569562 1.7061998781487642 +2.4102290049406125 4.969167488367779 2.175048465496637 3.7815852034442505 3.0214444314499453 +3.161704474717412 1.8065668603075036 4.425163435755742 1.9703577276339845 2.804009454088153 +2.503817060523953 1.8744981088568964 2.0773456138894297 4.901778593226657 2.893693832749949 +2.4055749773121824 4.866686492305805 2.4573438790038686 3.8442687019524966 2.8250009475653783 +1.7296896572741454 3.152501387166958 1.9736843136477322 1.7736739396777672 1.4368010886744844 +4.089614006742175 3.079174725643001 3.5328846385095165 3.448856950250315 1.0139271143343596 +3.1819721849082288 2.711532365033458 1.904712876885923 4.428883543427682 2.567635328070105 +4.322358028671626 2.20084163698521 3.1411801413589555 1.1387178706965453 2.9173081677499564 +3.9979610520047557 3.5360358918288104 3.7251187879632 3.9945341628523114 0.5347518095623549 +4.8022181894685145 2.0089637073963753 1.1834033370594703 1.4889390434741707 2.8099150644655477 +2.1727107220746493 3.54179624067848 1.407654295212014 4.93954244560218 3.787958429565614 +1.711525150666426 4.447339521779925 2.3897412187876013 2.6617293952532703 2.7493013369451287 +4.406017885425465 2.2442603047146887 2.392737616213296 4.621037381867193 3.1045958969524072 +1.6238189533767367 2.4885609721509474 3.6095021234502553 2.225029857988294 1.6323425537757303 +2.2101887009376937 3.4484493751600054 2.6447705941241217 2.481970002637047 1.2489169427604203 +2.3253644476664035 1.3676607243123917 1.3784372880299522 2.7405683150175566 1.6651118149867423 +1.1084553726749138 4.755386150702507 2.0541833132285756 1.465733491136402 3.6941003360554863 +1.535197019585735 3.20105093596518 4.470052539084679 2.1393202960056037 2.8648528862133835 +2.6680027341948285 3.7857516364844606 4.750791267671785 3.7124559718672088 1.5256155462904977 +3.1406597897319233 3.9203953015271984 3.4785805973837993 2.7683730194112046 1.0546953456635422 +1.7501906208740463 1.1704948139020215 2.757504304233684 1.7245151786393942 1.1845310304998355 +3.56696184613314 1.4332566560698439 1.7460195696168292 3.9711675290599633 3.0828527826539154 +1.3776446654862684 4.249982077269098 3.012186238232729 3.1035528773482466 2.8737901923888862 +3.6740217401106667 1.8857726094937304 1.0422517048509303 2.9350517225405195 2.603944480997615 +1.3920045672574943 3.4090034023935867 2.8800253056375795 3.6587379354146177 2.162100289236053 +3.0181690819367293 4.8750388187996165 2.321259445720317 2.7661549169450317 1.9094232637090993 +4.080506517827697 1.1951350308694009 2.4028962972473593 2.126031150522454 2.8986243163305816 +3.3282820953516987 2.548651618032285 3.4142814203084404 3.6496641606337703 0.814388553215453 +2.8374496453167195 1.8179996914117438 1.0119976334396834 1.8229071236934207 1.3026328761014874 +3.919027184861763 3.2097599976042415 2.230556010768279 2.774414232550487 0.8937794517219007 +4.5909571171152646 2.9004344114694693 2.1577222786934795 1.7112736243872932 1.748480317085607 +4.054902994879939 2.246084968599746 2.360302433048146 3.4272265335051335 2.10003563977665 +3.2774127882765236 3.4271661322928164 3.2405857610526394 3.0186224923524776 0.2677568985033297 +3.4451060455857188 1.393350322607858 2.4111781308015936 1.1339210413562046 2.416834131526388 +4.497379203490913 1.590216303239799 1.1285692851359856 3.3957698101870903 3.68670508033779 +2.7276808353392714 2.9828049066204243 2.029904458371656 1.2493146992896218 0.8212238816125714 +1.398331099387005 3.1052315680738585 2.8286279311989913 4.180507838426358 2.17740407218515 +4.189509605911817 3.3843122935204146 2.0434289625600055 3.0971409985230207 1.326141684216155 +2.9246323107789545 4.385746212717734 3.0313221372609878 2.6560864892633296 1.508527635135329 +2.5911467215290096 3.2944882659515886 2.8197728880156 2.7458217677148964 0.7072185633200445 +4.559935063408567 4.591308842929758 4.30747903549892 3.019295435198151 1.2885655986892155 +2.9752680470158417 1.8535206142811806 4.971534702545014 1.3272082353369772 3.8130608049754224 +1.3165173643095303 2.524177989600381 4.49360227733578 2.2793552469953267 2.5221685306992088 +3.440453790000876 4.997692249004592 4.196661485411157 3.092514761672931 1.9089608706681567 +1.1113035679932675 2.645711072858089 4.656617879527754 2.533200800187471 2.619791305394288 +4.857215261844754 3.0896936918154063 3.339097042380036 1.0953784729401859 2.8562922678479907 +3.504057668385829 2.581793619825906 4.332640811412945 1.9095905759947924 2.592632526723775 +2.0096338056692753 3.0328101231120175 1.9053045233089678 4.875424410715226 3.1414171837153138 +3.9240677244106457 3.2966006682506435 1.6249293214092928 2.518814748555417 1.0921291422859791 +1.0764473497169367 2.0430177819412654 4.355959998471976 4.244368763395205 0.9729907523693556 +3.8504334154049062 2.6915602511729833 3.23169350498623 1.0744034609530417 2.4488542922888703 +2.7148109351026433 1.305116990896892 1.5430987563775114 3.233974963272683 2.201431207958716 +4.911658202048114 4.071068980093556 3.9075687087204565 3.6352957404451414 0.883585202071436 +2.027149008974465 4.264583748391851 1.0895572875287471 2.115108734387652 2.4612740569278624 +4.145674767889389 2.999078130553646 2.07321024011794 3.025695344856035 1.4906078369234388 +4.636265739290787 1.6485232593366113 2.3212705032923644 1.5720034396919695 3.0802607453134687 +4.55251760202453 4.278194758177314 3.8966760960337146 4.209210220117219 0.41584925318325083 +4.85756578155339 1.086857151105641 2.2924359275864186 2.831870712644853 3.809098773077981 +2.16411761124409 2.8591781598215764 2.672306816934493 1.2408524236815568 1.591279625380771 +1.9460866894940034 4.2738753774117075 2.4119084843599965 2.550153480670216 2.331890189224707 +2.932762173899119 2.2503854413982762 4.784042887768706 3.1617583815483608 1.7599559722280316 +2.258689388307695 3.745485467591543 4.743531718040911 1.7644450023945089 3.3294924899622003 +1.1923050770490051 2.9570024167996576 3.2360715689235344 3.178852118765493 1.7656247524316764 +1.511264857814222 1.7518466215804827 2.3212410131247982 4.4302057746033014 2.122642680767294 +4.329188323632911 2.6233891714049764 2.141643996572166 1.6051653334566245 1.7881722802123343 +1.6888118610017604 3.1591048950707576 3.202353816228069 2.8935954766918717 1.5023625788287482 +2.001107657277904 2.7000364680307722 4.642981439965304 3.8235736400876266 1.077000754410504 +3.3518803797922785 3.8865716811057642 2.974688371941912 2.7094284553779175 0.5968731951058333 +2.7066735578788186 4.683858293633389 2.3816628227326397 1.4929905130622378 2.1677172217048506 +4.859919813511436 4.461140815841623 3.4686957188452388 3.2737100153118295 0.44389651222436854 +4.235975352694342 2.5056736173174436 1.7773358868866387 1.5125226413552233 1.7504485569296768 +1.8642128249332504 4.70232851965784 4.767733162216171 3.487857075497469 3.113355664551742 +4.569571166380701 3.0249958353510635 4.824340757161032 2.9566256077894346 2.4236486610929155 +1.9332831327763662 1.971336442935058 3.356626816998043 3.146078701030745 0.21395925675560812 +1.750173069635379 2.5714880821108665 3.7027791399052172 4.173046410712805 0.9464193867997568 +1.236817652862809 4.920994495123553 1.8990371252229936 4.936753923595056 4.775026947794343 +2.1273722729218476 1.4096179702639358 4.760997896640566 1.522838616651192 3.3167524420078816 +3.9279326648743105 1.5622679972019657 3.336061265493479 3.2584344501564186 2.3669379464474094 +3.7486639404061544 1.772415648850624 4.3249262780582 1.2540057814616627 3.651863908512046 +3.5707258967963615 2.5176946881179774 4.54842647282053 3.9572942656286156 1.2076059012899214 +2.782957948580714 2.082407057588632 4.521016217023939 4.695392750381979 0.7219270920638509 +2.5773209405275654 1.294777604551018 2.2969713208641207 2.5549231596826427 1.3082264940780353 +4.240053211152339 3.6358810765265837 3.2535115492112556 2.9260290826858473 0.6872181124939932 +1.7859493190916371 4.009546636061486 2.6974286984553113 1.5500395899121813 2.5021764115343488 +4.707796014865625 3.4082350532135 4.269702248973226 3.3898535723928895 1.5693923622632948 +1.6598305420663673 2.515865890673108 2.1447238252612357 3.5534764517271755 1.6484479004927477 +1.710254386443352 4.3803330815639265 1.1448840809178615 1.247809715398779 2.6720617366314894 +3.7613249826317747 1.1726350516299138 2.2482540398697655 2.526862533718153 2.603639424289563 +2.3438560637666597 3.3677584549614155 1.8505699136704274 2.5809506844426156 1.2577090987220034 +3.2839152249633545 1.0891531157381942 1.8488608809501734 3.25227901559815 2.6051032948329094 +2.358151957713031 4.315439928456623 2.5130526532684745 1.6157102772893732 2.153183582545944 +1.5091540811745854 1.656780179097801 3.3014446048109014 4.463808564998642 1.1717010884740877 +3.5362199012721485 2.1590810526002033 4.380696714912345 3.612164856278041 1.5770709008340076 +4.1697159488360125 1.9598320850800097 2.216385921680803 3.6059091873320224 2.6104332201907003 +3.868569448328617 4.213649405808182 2.6341563374784496 1.4494636898976525 1.2339274072189568 +4.094023905526688 3.256616995941842 3.4579173231391063 4.139857479655568 1.079950327232757 +1.2007634224248602 2.236655042028741 1.5478453578091549 2.800499778944833 1.6254890176055672 +4.441491824104435 2.415190673078072 4.156742920459799 1.1404415690763385 3.63372676421996 +1.7564787313125736 2.6815093995408255 3.678035663248096 2.6375093786426884 1.3922559700419816 +1.5266384865535665 3.056649254366607 4.262660102469196 3.6959542191073727 1.6315907905662972 +2.632802492488668 2.2092186439597765 4.664469607473995 2.5082755882984484 2.1974066362562357 +2.370098064737382 1.500016324918478 2.1894951770264535 2.9117181140454838 1.1307732773295827 +4.035270612014339 4.071737098493969 4.048186343921113 4.490683804727439 0.44399753091229566 +1.369459168065024 1.8636696389994363 2.1648998086678937 2.2854376471114364 0.5086977099200025 +3.7924526396210316 3.832393453015206 3.558070265087088 4.71339738096629 1.1560173066439547 +2.757577709276594 4.4014932749887965 3.4474961425317807 4.47335578961189 1.937742604862214 +1.175610037018846 4.510561810616752 2.9680728515126575 2.591887068163897 3.3561017677981013 +2.555842361319514 3.934416183359919 1.5692417309402749 3.634872656912669 2.4834042975618487 +4.565536373682299 4.275030801913138 1.390690125509297 1.6887628265410477 0.41622208294285734 +3.8213605725979956 4.380091690589642 1.458418842919584 4.164282317639266 2.7629472680516844 +3.0488566844501994 3.8166298642414183 3.765396993547421 2.4319550724710983 1.5386822324607616 +3.180217301246834 2.2929605276020038 4.6327011767986015 1.1208053386786472 3.6222419797941288 +1.5169613300319646 1.6242047999480582 3.336179449410238 3.7420226192958452 0.4197735584603227 +2.3878309168885665 3.8071969440709608 2.4784076039670477 1.8013908255555027 1.5725621251226547 +2.427288438353336 3.774505367584859 2.3646064557919626 4.528851382960401 2.5493037400793046 +3.8040252177319793 3.122750197960075 2.831824315799523 4.426514442144677 1.7341200222671824 +3.557507783081774 1.2639809334708563 4.846838889662712 1.893880032002309 3.7390147666091416 +3.012199277038899 3.554805618052576 1.955749118944904 2.0672056750166736 0.5539351994589536 +3.725048553635557 2.578878568993419 4.117695483909113 4.064899988153031 1.1473852875414996 +2.8407687447334222 3.540184760687083 4.950715915166361 2.0102470454470662 3.022505572726171 +1.744710233703374 3.5858464073022627 2.617938083877293 2.8176026695644434 1.851930980493598 +1.123084453730817 2.655056891958537 1.519834835505919 4.432841835667692 3.29128384289184 +2.1533425639478936 2.9576112299947215 4.355914191930008 2.956744211612618 1.6138539961861822 +2.3624939682090207 2.018463319909312 4.755259175978185 1.8063603872158938 2.9688989799811685 +1.3419680087532773 2.5993398059470887 1.1997057849199648 2.105508240474388 1.549665100873998 +1.3292074613820453 3.7675560211890184 4.1145951766486615 3.153152097084887 2.6210525546722283 +2.6571329525952345 2.3631488381912993 2.107591570713423 4.557206224990674 2.467192455803098 +3.1645774619089617 3.0232851375910004 3.8620718621534764 3.6189247163476055 0.2812188745883061 +4.5115567133924035 1.9338925490600807 1.0847821777963929 4.5330605177485195 4.305226597272906 +3.0200148889412723 4.578494337210117 1.4169828505755633 4.704203366945292 3.637949548017183 +1.8961847015914728 4.068659324691868 4.494154135431508 3.3866289643319347 2.4384950261655947 +4.011674337286539 2.3172233295956195 4.551522754439008 2.788191300315588 2.445506498573616 +1.0767252115691393 3.830833060930624 3.3584615247434075 4.599695602995121 3.02088928677102 +1.3135163356014736 3.48863066637946 2.944146133634407 2.8651221836582486 2.1765493646195124 +1.4534155678837646 4.970236937721884 4.646273340344996 2.439197741681879 4.15201339660221 +1.4987630511574723 1.3473576449972602 3.1963005733024654 3.096257350487758 0.18147243164098512 +2.189104421144995 1.0036947425593965 2.973376286103104 2.4472409764288447 1.2969250056076642 +4.910768363904948 2.4708534744709794 2.183916848272894 1.8554238747468528 2.4619285735653573 +1.6740113029416275 3.2392467247928676 3.16004002140724 3.9994107649107025 1.7760926695607369 +4.9444048802400005 1.502133436230403 4.188291773524655 3.024024958442921 3.633834051101465 +3.5325314698588213 1.4827969052158472 3.403855600183458 3.507528131685253 2.0523546913923316 +2.5104998844562583 1.9937851583012263 3.8219064097259148 3.2056780913980707 0.8041961505345773 +4.502111063845021 3.1783827684910593 1.622647957890094 1.482023344279809 1.3311768785077913 +1.1644270671869141 3.5633669222877535 3.9382605661823193 2.7716809529663666 2.6675495163843386 +3.121268196353251 2.9228960468755507 3.4550705479862933 2.2135701198828555 1.2572489103870492 +4.531395209483181 3.226549359215274 3.0889442564333383 4.975490006678787 2.293834684699519 +2.976535289296476 2.042082485447242 1.1251068341928665 3.0302109998671187 2.121938718410851 +3.6056737794853344 4.890738958478528 3.2757186722636753 1.1581067622768932 2.47702900983793 +3.349383421623843 2.2117600346683846 4.072858018657483 3.982562128957794 1.141201261059883 +3.640836519000741 2.945462102792514 3.6078763624903742 3.296523797741173 0.7618963172852573 +2.793223605950855 4.657286110247783 4.9773766167507345 4.255302938551596 1.999029618758504 +2.615931314797423 1.6804504270661202 3.621174109344078 1.2322788132345166 2.5655302038925476 +2.6612248405547163 4.634234925896926 1.8447724139887565 2.0062405518717816 1.9796062124608234 +4.227563118165641 1.2883588573333933 2.715508620928767 2.1549141843794306 2.9921877964433494 +3.4364749541398676 3.8309893091779412 1.363288063802957 3.9934409097018273 2.659576201036743 +4.8684047593625 3.080931624720029 2.231813376267503 2.533267339146475 1.8127147317777326 +4.547751843132587 4.408453073986822 4.019282909015189 3.508063290960614 0.5298581366454519 +2.428609975413717 4.9235178727717095 4.182326438465408 4.228575149797168 2.495336522315002 +3.2280079014900016 4.558883174841668 4.998137764087293 2.9709632052657735 2.4250083886766443 +4.094194447320828 4.157898741058854 1.7447454430269382 2.0010921315666454 0.2641436385111977 +4.822182261841562 4.933794821359088 3.1345132282999604 2.6393047027250733 0.5076306208692565 +1.5555376755184112 4.799762876386456 2.745390174748804 2.512677926955165 3.2525608594183866 +3.7559634716572967 1.9876481837149087 2.26864842668884 4.725514085252538 3.0270658766865983 +1.0900837190833506 2.6307210337762816 4.696383793876754 4.700607465802937 1.5406431043005338 +2.4752929825925403 3.440925637672352 1.1186899086903423 1.2963395417443597 0.9818379788339384 +4.65021964797212 3.2963437243850695 1.1583138587164417 3.4848837731659326 2.6918223535906303 +2.94903887719549 4.349551124673697 4.825036035249786 1.6389364766445138 3.4803254090215714 +4.231524274248547 3.566038623653665 3.2326131215029825 4.416536330870683 1.3581403892187318 +3.7119649344539645 2.585070632943957 1.0651357644118593 1.0356387034651466 1.1272802860780553 +4.93666839148004 2.0694417240399026 3.966705576963888 2.956130655002267 3.0401069776206255 +4.731040271801067 1.2191623956014759 1.8524708510787544 4.483887698454026 4.3883528620646 +2.042722480828988 1.9023699152230646 4.006321781111114 3.018208969563071 0.9980309469237633 +4.057878889175378 1.284783883982576 4.349980884632352 1.412909843565659 4.039361608979549 +1.1327308076531835 3.366075338472428 2.0301543388477734 4.275799031677728 3.1671355954198694 +1.9525575712909475 1.8611330502403445 2.137331951228408 2.7279789091423874 0.5976807441622743 +2.2301875675881893 2.9258753845080716 4.986302689078358 1.4132567761300052 3.640142666798608 +1.5358420710028335 3.4072477364676805 4.136420629040099 2.8440183399299204 2.274304913953087 +1.5287232774058301 3.2781360406990716 1.4150433499157526 1.682822701922401 1.7697883482875558 +3.6806207486475424 4.53159168884751 1.3536456336008649 3.800863659558195 2.5909511009734065 +1.8574632502864996 4.570612394588176 3.4568296245032437 2.2187748470503186 2.9822739497234205 +4.677740226547023 3.9297618144110418 4.7410979435614005 3.626945739905172 1.341941443556124 +1.1697782020528988 2.9637231398668025 4.763091950029436 1.8992069106391427 3.37936028839064 +2.8936186899871834 2.748147924833982 4.371306267310549 1.4267620052059247 2.9481354539789257 +2.320636328878761 2.8637551441897355 1.8387654683955206 1.5682152869396129 0.6067746272139443 +2.9628289053211865 1.3980645983043494 1.1360376180604361 2.3367841409507295 1.9723791594789812 +4.912893338429797 2.2706965384677704 4.374533067368361 4.176005159920562 2.6496447421805764 +2.1620751782288052 1.598975143764637 4.371016395551187 4.746623142918876 0.6768767077405474 +4.501350243284554 2.254797596542827 1.8933777250610118 4.244348639278526 3.2517784417267714 +4.070310657076863 1.4620120314908047 3.1414702108170793 4.416697416139565 2.9033474035031905 +4.6777305977282095 2.943353294810124 3.2495008104300553 1.0509083863378605 2.8003344936191117 +1.159943254060464 3.6735725824886507 3.520627004331687 2.6333688587414787 2.665625520895708 +1.1869641532370925 4.185021273679274 2.1400355240639013 1.23679242099713 3.1311650548432852 +1.6876484244155727 2.748455537556413 4.703359475676571 2.122328870254417 2.7905251687479997 +3.3191071724653414 1.2014973622096274 1.720680963076647 3.4201974295152335 2.715258280198615 +1.1784605700051647 3.392790576182416 3.5008533967398763 3.1915398957611165 2.2358292014697105 +3.374577249070301 4.080114216638805 4.742504455693786 3.9369580938167115 1.0708348863102801 +3.0305999410283073 3.51906396508314 3.178817237842879 2.620021559429112 0.742192504010747 +1.4195139949901487 2.2557684573281382 2.4487530577891428 4.362148201728634 2.088157681457851 +2.7606276086278827 4.587801939289463 2.5854099884413237 1.672848430543402 2.042384545471708 +3.3336602915157014 3.4371333855071753 4.6503822694199 1.1754032248306188 3.4765192422184006 +1.8496784782846913 1.598501701925338 1.8808388403043264 3.1299052715455535 1.274070925276914 +4.399288380764881 3.863147656357214 3.759796029378503 1.0384739500655331 2.773633129259283 +1.5728199067006674 3.1824600334590194 3.9217374867943238 1.3883505192809262 3.0014981034205857 +1.0203708257671282 4.211985221751703 3.7994688151341722 3.7127045866734396 3.1927935235458564 +2.998864904082397 1.4183860309686738 2.8840260302332275 2.203302337189527 1.7208422980127724 +3.7690719232422145 2.732822155871405 1.9891985429870864 3.763785893535991 2.0549875535156503 +2.410966077604375 3.5595234172841996 1.403139118966927 1.6428396109557988 1.1733031528092401 +4.863666574595783 2.5246384963867694 3.4534793379230675 1.9327801096088044 2.7899065385144617 +2.320700106386257 2.953800539380929 2.4780445468479697 3.3256598077852475 1.0579545306069682 +4.243023771939541 3.558016584456222 4.372679434677352 1.8315540694322872 2.6318345253445683 +2.4673529057695847 1.6312391148872036 2.5619419081873773 2.71841904843436 0.8506299822623112 +4.039561703060483 2.3260683585018933 2.5929651612053157 4.005155019064256 2.220436812090413 +4.545930529708572 1.6398214893630136 4.653193197796126 2.506898126666764 3.612762417698177 +4.8802434585098755 3.250900310548475 1.834897389694485 1.2669359121000485 1.725496836809625 +4.998172339431431 3.964489644879479 1.8726657910286906 1.5477354694748762 1.083549549804368 +2.193772197397394 3.0286639008505802 4.754399354526157 2.9725790167026735 1.9677214926854756 +4.8635814470547665 2.153644684219773 2.1297929731043266 3.4213678471887867 3.001986494628331 +4.861351604360628 2.545845132417832 4.747883698309993 1.081042851659018 4.336737485285109 +3.5950402331248523 1.8186523929395841 2.087098084139664 4.43367025063846 2.943119890752828 +4.609224845677078 1.5246041413172873 2.953357688913096 3.6192132648710986 3.155669269394284 +1.8690806231957797 2.1148326373710904 2.275793736816529 4.050003794076061 1.7911491785309495 +3.514307164105796 1.6310422803268847 4.18276727212254 3.9668487296202577 1.8956021311106153 +1.1202959584032972 4.957794922512393 4.755002761020494 3.4881455230513168 4.041203479278577 +3.632470980798411 4.983245492689032 1.936810907814499 3.576199378478741 2.124190749372614 +2.5904466332094516 3.53861912457893 2.8725451495722596 4.571590163375779 1.9457093905104137 +1.1529970811484884 3.08533485092124 3.025876949923006 1.4240756303689697 2.509919664813076 +4.498689870901254 3.0420735524370612 2.9671554172906345 2.146100844113543 1.6720830455904976 +1.2664795574154404 1.1853104911796404 4.696018361911845 2.8344462621608195 1.8633408437226489 +2.2665647746394426 2.395576220965288 3.898728928609046 2.0664988713997126 1.8367664347500483 +2.093601623749194 4.299723837183603 2.148071838951212 1.6088228671397369 2.2710712613673016 +3.6130621777325365 2.4121862212078926 3.2115916623882756 2.587534832027567 1.353347697555522 +3.934903739012851 4.951683432903194 1.0663070246875308 2.306614089323877 1.6038087668093628 +2.472272980517815 2.398034049173309 1.4932332601647036 4.378051180723414 2.8857730080004313 +3.878292183226435 3.6567821362069504 2.677090937201746 1.758171224069259 0.94524078419949 +2.023571997581814 1.180399384299701 2.0244985507227757 3.1401001116615643 1.3983944002169235 +2.0481051368116328 3.387748496387193 3.4288975939038626 2.29759960273111 1.7534193667478408 +3.3021440584597794 2.4075003035843965 3.3620010170421115 2.3473124913937093 1.3527676268376814 +3.1114562334786817 4.114388101392681 4.499873458738639 1.2107831169134808 3.438602566212763 +1.6468994032496442 3.318299890849984 1.0473863494587565 2.322352347514489 2.102169804309087 +1.0781015395888387 4.139020495866761 1.886224995764692 3.571880880607308 3.4943755692549807 +3.6542773912005404 4.610512612598494 2.295989897951375 2.1080594364871788 0.9745274018662269 +1.377273750532333 3.96445288775992 2.5826935417967465 2.0995524613455308 2.6319044799774267 +2.1098018299042 3.4684585657696108 3.38382813473804 1.2668195092595482 2.5154867612974603 +3.778032292428638 3.340878993905824 2.3365165979790588 2.126986727021996 0.4847739403398865 +4.804105361994756 1.0152706343122673 3.3060541440641003 4.9221322992573295 4.119099075937066 +1.3272318341382436 1.4196401171033335 2.1613207995863095 4.361127039169651 2.2017463029310074 +1.237271519225681 3.318605745609142 4.039220352717272 3.495878992689352 2.1510862361681897 +1.4150342876269324 3.6883257956103237 3.316314096068776 4.379184934395145 2.509491721292182 +4.128646325690967 2.3592925523357446 4.578619883721927 1.1921170872901006 3.8208656042220257 +3.414616357913254 2.928849823336688 3.1140382078681377 3.168442064099833 0.4888035450847351 +1.273190996286492 3.6189474556060204 1.0704831033996065 2.9756594467367146 3.021964636730656 +1.4022838073173558 4.888914149012069 1.1937015311899604 1.3818563675610567 3.4917035071832814 +3.3550666461027654 2.760163202353773 3.015287890854643 4.332315106197331 1.445154245517663 +3.7574818115369912 1.29622473051894 3.574300576187821 1.5857965456319048 3.164164138978669 +2.8388937972883985 1.8623084301172614 4.1728572424936035 1.5929652978450024 2.7585433521037013 +4.9258553160317184 3.438310395172142 2.294638226023687 1.1572621747758074 1.8725421686913601 +1.435957003476969 1.4918888589514476 2.3532116575554145 3.7992716608583508 1.447141287369449 +3.313288553170728 1.9806996139819115 2.0501595618084987 4.081296461279598 2.429261283855947 +2.7192994708045255 1.635094973346964 1.74722942625203 4.379491419627227 2.8468056825281858 +2.5101959044443056 2.9621724759680497 2.5823328241279175 2.5843085804443615 0.4519808898829463 +2.5110994155190025 4.173910828322255 2.080438510313182 3.764996629306856 2.3669976448691816 +3.1212017911231436 3.714756467579537 3.280544570531684 2.268101707142068 1.1736045780295072 +3.5297533060242827 2.828036677169378 3.335830990237139 2.1556153736895505 1.3730677801020228 +2.5716561497749333 1.9727017649182148 4.419894076923072 2.4434937387470943 2.0651645580634024 +1.2654494071997102 2.9904638891473594 1.9618178109577409 4.2787940465890975 2.8886075952627364 +2.657001644744197 2.3905015326695342 4.9659423591711604 2.288804209529219 2.6903700455521142 +4.042260731702735 2.835707896441624 1.7402832820572463 2.4484521936067183 1.3990257151181278 +3.81543837798335 3.8314552988324553 4.5422636431726495 3.3606559159347267 1.1817162784788302 +2.5315975621080358 2.162498852292994 1.2774620913142893 4.7609019410344064 3.502939771706793 +1.9465061041014655 4.732174873892184 4.717021718043952 2.3923317893562634 3.6282411385586415 +2.9980091401420585 2.5679604507156437 2.027770228665547 3.1205128054966425 1.1743203202264874 +1.0598394984074093 2.472084366086462 2.75586170869026 1.4835214862519748 1.900864331802807 +4.915140629673681 2.6887948646086803 2.647086713008778 2.479237144606441 2.2326640909988487 +1.217454623277988 3.650756397300234 3.8281327872819624 2.1544567882197114 2.9533284397941304 +1.548118871954244 1.8708734935526672 3.236910027973201 1.4707031107694921 1.7954546555514483 +2.7805421360108986 1.9133123383551962 2.652004993359881 1.892837487368376 1.152572264153234 +2.379458254467259 1.9467853105857396 1.1294600627375995 4.686337531012557 3.5830968729144304 +2.6772534806113115 2.842720742390599 1.2115701018170846 1.6093235850055931 0.43079838452497293 +1.5771122340254826 3.006587568598349 3.4438309127555966 3.6155711781639015 1.4397549968361711 +3.902171676718689 4.851853466503747 1.7049765489117363 2.9979222213903354 1.6042456214154015 +1.0072163354506132 2.2658106314069957 3.3316600399039817 4.060367130889617 1.45432927023652 +1.1744324823564223 3.549506493602733 3.004180809478551 3.6093344765843347 2.4509564499821734 +1.9044630130389253 1.7164543366052412 1.9802400715511999 4.449454139191469 2.4763613173862473 +2.042748390915822 1.4645223470904964 2.0339605119854127 1.2418403839453824 0.9807138497054283 +2.3126384106151283 1.9183778385891093 2.7444242107591794 4.153382979324469 1.4630810675322476 +3.611458084837569 2.7075711121866246 1.4993891270699202 3.705408776111663 2.3840164326795956 +1.4543007031806532 1.4914445910246168 3.8580996146076747 1.3561031834552946 2.50227212946622 +3.423855614954996 1.9238250276683417 3.731739796680348 4.819536967359603 1.8529421057694537 +2.0009432763641772 4.608202279206621 2.5081611514105604 1.2179576791883875 2.909024666041373 +3.4563421684790523 1.1136480843156527 4.819212402628849 2.0054055459702416 3.6613828806276434 +4.0323077626828425 4.943294685601687 4.521976939249646 4.392545679532231 0.9201356556080098 +3.6820210571238845 1.4753664899907823 4.249691149531067 3.4458691333178084 2.348500417798244 +2.677558419700798 4.562655763886369 4.6574601979043475 2.3396500913729077 2.987613711140511 +4.1202497345928695 4.418692561763596 3.2032907807727957 3.2331476420646315 0.29993258118426525 +1.2700141832403604 4.871344863619942 1.723071236392379 4.182203078075158 4.360838461147282 +4.934059573694413 1.7421551260409545 3.5900337293500635 3.671066218564448 3.1929328629425036 +3.6917433184248702 2.405323215915812 2.9614551835015392 3.4872299413930903 1.3897178764682185 +2.996593735630494 3.0438993138243395 4.719937425677619 1.0422430417636712 3.67799861326788 +1.9284254713131244 1.5194436705361771 4.824362992457329 2.847867757316817 2.018365558539855 +3.4686793376790823 1.4657841493829262 4.115562104206804 4.4490826590619115 2.0304741061660336 +4.610081189883362 3.1543512119143178 3.7718958003517993 2.6957025583233354 1.8103429683199503 +2.153008379838933 2.47910909566689 2.7426460784409525 1.7506741513709843 1.044198247919624 +2.0656939076644254 4.158420570570303 3.627420621418649 1.247794154726666 3.1689315244444995 +1.7898886218349603 4.159246142576034 2.7905275477240394 2.2794281340357307 2.4238559511169018 +1.8416046341262509 2.0521866635853776 4.846653375609358 4.039659415145271 0.834016812394472 +4.448111851790303 4.663729084616025 2.783342253018837 4.947555813033953 2.1749278435030264 +4.430977377311263 2.3718973463655906 1.7017832855346606 4.976157063639801 3.867988393542793 +2.0424243400615567 1.8929722061385919 3.171518194615518 2.5872703572500515 0.6030600930258548 +1.7845515773473286 2.696635762072541 1.7562661142738856 4.231180725490116 2.6376314929946982 +3.6858705853955405 2.9600425397377554 3.4884115914396654 4.835323965393801 1.5300324489938653 +3.515481280490812 3.0828439020633684 2.6861299293017007 4.512684304164834 1.877092428609796 +3.048896773717796 3.0899406990606133 2.331721121023597 1.2174801546043637 1.1149966524857433 +3.8731134301203443 2.5451319701712793 3.9585222197892094 2.550599586344206 1.9354019995171967 +4.733636476471406 3.2678065924321524 4.168539115217382 2.187009377582196 2.464775314318752 +4.101630169081693 4.418498309640478 4.433930559760141 2.7117584487303255 1.751080294706691 +4.838176741104316 4.543130464035775 4.414417522127099 2.8118894076375107 1.6294626916077466 +2.1259006481866303 4.5553328087780445 4.268986744776244 2.3544741301014045 3.0931374322304137 +3.050164658631166 4.561148779890932 4.548164500474067 4.9573569236217105 1.565410953666987 +1.842753894994797 4.582608719161072 1.57032842803966 3.2452779389648616 3.2112708265818655 +4.333792243149914 2.440756900677866 4.582776155901866 2.1508150635296026 3.081885390902906 +3.567856838643934 2.4589132811625247 2.9172869232183936 2.494602819231863 1.186767738625558 +1.9872734635163365 1.655380320042422 1.2282420475325124 3.309503057235087 2.1075579349553304 +4.1546734305542525 3.8470835737015396 2.222893527281363 4.018779384357857 1.822036643892226 +3.0645009384665203 2.659478085439283 3.4271040596034585 3.840720657310998 0.5788974014222932 +3.159480385912855 1.721843450001011 2.2458467439586753 2.0480986039969786 1.4511734170512862 +2.760972502953976 4.792712135874542 1.7560882238528719 2.3428376616202153 2.1147673249557477 +2.337655794262166 1.8805511574284721 3.6148754820945626 2.612944580810404 1.101276613736508 +3.1721280112846117 4.537363747048207 3.80433014086506 1.5430428288183808 2.641455833783571 +2.6009179412012178 3.5487316651038205 2.8648705534835326 4.735838815426971 2.097349063083627 +4.465144237253488 4.121928306578889 1.6186781821324954 1.7946289899357666 0.3856888147658098 +2.084250220902213 4.159750421984578 1.4833193957481554 3.8463086950817527 3.1450627201151367 +1.2027353288949403 2.3462776530899725 1.2023491518471068 2.237287986059424 1.542331818314764 +3.564758144004154 1.9641952488946708 2.163273248638231 2.2425031358561327 1.6025226850905454 +1.796202943656883 4.563324933037242 3.164525028611753 3.6117225372848574 2.8030251008287004 +1.3265008505059148 2.800753091054724 1.7911530356066936 4.750669481154397 3.3063812938362833 +2.61511352012653 1.621712907217499 2.1820650181090344 3.0601250269901104 1.3258333820372277 +2.5414427010374903 3.423628460464521 2.531539746965553 4.667108641288099 2.310607326339521 +2.578641965255083 1.2112612235345357 4.818789327502048 3.6029634169569738 1.829743899451777 +1.7370838152712134 1.6351095552337052 3.4159665304363527 2.252920706759046 1.167507746305532 +4.566456151985841 1.0398108292449542 3.28954580115903 4.408479872399965 3.6998973888736417 +2.8733695367503853 3.1247486151826784 3.6296676310247897 3.5080633288154557 0.2792472871654943 +1.1250519424299474 3.6590649653890233 3.241423396360334 3.2429416249922403 2.534013477774807 +4.496934784619951 1.246804803516829 4.881478699385525 1.5361543713614085 4.664176213838344 +2.834488339393953 3.309122657516956 1.4135900585473187 2.3759857985536406 1.0730718970891018 +2.0332421045766447 2.954648976735826 1.7124327237366246 1.6230215303231308 0.925734835452243 +4.0471784802352175 1.7724443040961977 4.247705454866265 2.188565308217576 3.0683014381959364 +1.66006012932607 2.553916468272691 4.644921363304423 4.112461767548012 1.0404289383653922 +4.597641779990862 3.7680253259216916 2.132314486817205 1.1373856230503172 1.2954330954621989 +1.7679512293885695 4.21737562740757 4.253968344339311 4.075547451051833 2.45591406542905 +2.5437858598042116 1.581682744774124 2.042929885874086 4.5086609397366235 2.646785226257064 +4.654391519580058 2.9016839106871366 3.1614014226011844 4.366427887833906 2.1269867757422487 +3.836407758136056 2.0653929874806436 4.83598688624696 3.4935271441757965 2.222316691419434 +2.637478400940501 1.2016657135281554 1.0713316642226127 3.2242687905038308 2.58779758541009 +2.193930707448462 2.4434879965120593 1.452859036921684 1.7209851726761407 0.3662928680706044 +4.721892044197499 1.8529670166413603 1.5754315679471973 1.964992717759253 2.89525278744031 +2.825745861523964 3.8763153094231297 1.2963263643679919 1.341997412365556 1.0515617002745743 +1.502890316910805 3.093698117834507 4.978505318737822 2.047352165502292 3.3350154823032376 +2.9782307364916263 3.5580578090902977 1.7567203344269675 1.7415958519387322 0.5800242961194659 +1.6278117515908712 2.702916158582303 2.3379789592601226 1.8484363190646116 1.1813134564974657 +2.2433622035040255 4.474311261641889 3.8723216618000587 4.825167459932933 2.4259119553326114 +1.9415323665328614 1.539883616125938 3.5756097183306914 2.7027887360228355 0.9608008044648452 +1.61180700946858 2.460870896736157 2.8603734544592117 3.7661644540606596 1.2415179497779802 +3.544076328176318 2.018582522840663 4.837913104715392 2.487821354748678 2.801796313685039 +3.0283800908541636 1.432284419762496 1.0236536607300648 4.843130207916493 4.139555831944379 +1.9757753461614085 1.2348753810299544 4.206356971693538 1.438903024055763 2.8649143286715733 +2.568681989446772 3.4262073982713903 2.2128464017457725 2.2496790796845363 0.858316068207959 +2.596540978435173 3.172271538885841 1.3752226196697084 4.832850107985925 3.5052323070228524 +3.223908811924649 1.65751777565657 1.538538000417418 1.464122352910647 1.5681576984139187 +3.8358833875627263 1.3589518113040402 3.464341607608471 4.100381348019441 2.5572908682528457 +2.4096807070838784 2.296804475988671 3.5296727828313115 2.0971308470043115 1.436982060239176 +3.1531049685015935 4.332184283668871 3.8665703992918727 3.3607606520044957 1.282993192462944 +3.210196894825435 2.744342043364973 3.3595525666936408 2.1101123054018984 1.333462301366644 +1.708352501597123 1.3943714710188675 2.478736255317232 2.5997563763275897 0.33649659322546654 +4.928619164372472 4.012984960689976 1.2827172017433335 2.7626996824859327 1.740325871283392 +2.24661110617293 1.3220564441521367 2.3631867796937454 4.763911971231142 2.572602333892017 +2.8723217414285345 3.641074475220494 2.861102571736703 3.1043697593981756 0.8063248044710852 +4.17810318575678 1.1140081061470712 2.2474884279921787 1.3084778481101589 3.2047495262529946 +3.4892579549147658 2.918921847215477 1.6829446400063053 1.915057346468429 0.6157593557931108 +4.2476981131093225 4.037157426395286 2.287063312054086 1.0688008479165654 1.2363214841975536 +2.9541656332261073 4.246039401918242 4.295612272628313 3.1284536979821076 1.7410333060010603 +4.769886054409827 4.798406780790953 2.708532479714592 1.1929032607337358 1.5158975431281057 +3.0967877074113512 4.759258752262701 3.4413148747601037 1.1610455584485448 2.821956436566859 +1.5612970125581485 3.6010894829643263 1.9072259173080326 2.7301904776673838 2.1995508609562084 +4.203216151643676 3.9062566425303418 4.908289855221552 4.903432307278029 0.29699923539439604 +1.439425021682267 1.0110281005917585 2.4267954872459168 2.9137239327308513 0.6485547263124387 +2.6574023083478684 1.2578756808920177 2.319692321123517 4.35024207670803 2.4661320100234443 +1.47052393295726 2.687546678350386 4.309012311383298 3.7345160778089186 1.3458046980135598 +4.32841470289355 1.9129673891083079 3.173234100516429 2.549320045176486 2.4947253303967303 +1.7925339166665237 3.775633497603272 3.9949845118619156 1.3535405277848098 3.3030153298052736 +1.0292325442485102 4.648764190724538 4.558242094787585 4.200612587178757 3.6371566098470383 +3.058542706546922 2.1110555814393646 3.8617570740103893 2.4262125195036175 1.7200348892445845 +4.430316600228789 3.5506673043199455 4.448482531164004 2.1496001402899116 2.4614311143852685 +3.284014474059631 1.8386562595365001 4.926509018547717 1.226104185974774 3.972663626991176 +3.2589087926885822 2.2728570787803952 3.45605564847473 3.9516032452837457 1.1035693921111005 +2.274478681123738 2.750536330237332 2.152943190283704 2.278879875433125 0.492433684820592 +3.9044227020658404 2.8524123357703197 2.709776924274468 2.877769219591481 1.0653390174395727 +1.906287783003218 2.9746280477100875 1.886470430470884 1.7210738028182737 1.0810675120605557 +2.948874487043807 1.5941859030335124 3.833206902987126 1.1099282813193918 3.0416159538772036 +4.500635832847021 4.208136318031607 4.324038942696907 2.1790453824323217 2.164844876600583 +3.1845329051601823 2.2773114760002295 1.1432662427739397 4.0500548291487055 3.0450731694666446 +1.5815653842043362 3.52952515237834 4.276903583529327 2.0002039449255853 2.996315821612089 +1.2012602218238135 2.799953705490478 2.2676553516245783 1.3789091375113802 1.8291229285695367 +1.4408616335898081 3.880921005758472 3.638690111033846 4.989260481565112 2.78889405777005 +3.988420905873802 3.7917624009365882 3.208494529666605 4.0959931692298905 0.9090260737684164 +1.5971265362865403 1.3285730755916516 4.475103093728158 2.4974339527031835 1.9958196793833012 +4.635668545470204 4.99173674257694 4.8193344747760865 3.9082356172748005 0.9782053409846984 +3.41872992811682 3.634278993939639 4.1119424262826625 1.7497695400250062 2.371986961251667 +2.8016636615902035 1.9911921958802248 3.294052220284652 3.95418871480377 1.0452962202773293 +2.915993909235424 2.008519784805187 3.9848668635402 1.3865937383798297 2.7521868612870497 +4.111168379062226 4.0417276898845955 4.76543018953112 1.2892872720223645 3.476836434499004 +1.0625030167550666 2.5744961757969773 2.867110832174189 1.064275340576966 2.3529426518196606 +1.0960602748007027 2.2459446263142158 4.042914520706531 1.8711029011458642 2.457437635569696 +4.791155724969592 3.659673253136306 4.08956352619434 2.1874401262876138 2.2132162145932974 +3.2786055113088968 3.018083235859812 2.2656178584798443 4.053512553051317 1.806775939313447 +4.061865703776564 1.7493393763581069 1.5207854682134005 3.7130047552561574 3.1864719389139067 +3.272214931655444 1.9740780778700597 1.5431207565471667 3.358041193054823 2.2313886891370935 +3.16919571766168 4.177259325429997 3.1476593802924184 1.6864934800445428 1.7751614082539255 +4.594339329435638 1.6218980380286618 1.5001945473509646 2.7935226739177934 3.2416207171459823 +4.209436202984277 1.559768791872712 4.007285299004794 1.8620313060496194 3.40923042398087 +2.3278435961023685 1.7699141610923506 1.6745456070548315 2.8400667484590656 1.292178310261717 +1.3012901925915288 1.989307624878268 2.191636995717754 2.09543916992443 0.6947100177900132 +1.6191755906867802 3.3540737191086034 2.888385603453471 4.77077662692511 2.559935054107457 +2.5434498871549955 4.986963574052789 4.711301464458886 4.846483220560905 2.4472501394911945 +3.148096964082701 1.4488506181636178 2.050899102958213 2.2507980676454817 1.7109639798085752 +1.1237413485824241 4.05684528112741 1.3136138513406292 2.160570343247479 3.052938580825697 +1.5637427921720213 3.713968784387001 2.0220329024746833 1.3649024330889623 2.24839771201449 +2.4217775756762787 4.103262899511222 3.331935298243747 4.752149805561501 2.2010002592158218 +2.7056401919560855 4.622245332276151 2.2211007301507153 2.439540616639011 1.929013024297741 +4.518266951426477 3.532867160726233 3.9397848695138094 3.6129977098165345 1.0381727193752956 +1.3470300957388681 1.7669587365772141 3.7073194764849773 3.2104669882590895 0.6505401282415993 +1.1641921318921065 1.5163246590820791 3.8456674490287286 2.699405376058563 1.199130541949065 +2.7461404151831434 4.553170457593193 2.1461075988127805 4.488372638959415 2.9583040906008264 +4.49373061061727 3.035342794284488 3.0046215467163937 3.0567377212500633 1.4593187172362054 +2.9706334130816097 1.882524377577115 1.1304493653496137 1.4886028365493216 1.1455370714555342 +1.9510746348729024 2.9076430979051238 1.2683542208108949 1.4953541352100355 0.9831338594540641 +4.447767990235805 1.1814932240601608 2.5087999776268166 4.279468670560712 3.715349037209289 +4.050392965128438 4.958096547001192 3.610813580211148 4.663696083782288 1.3901393307402172 +1.1419809191509382 2.1136714290592518 4.211981643852877 1.0090066796549224 3.3471228044881727 +4.171936871098998 1.6005552114051986 2.514865108428406 3.577089053006288 2.782143660604936 +1.1628976377922804 3.3939954005086146 3.9391551355616903 3.099732869143841 2.3837841697930435 +1.5384758884582945 2.212240564105394 1.2776640093694263 2.6013976369919356 1.4853381955125537 +3.190042010806983 2.642104048265866 3.231598233989836 1.4107076968221848 1.9015463073878605 +3.4088030289480273 1.2448322284225832 1.5066318923611965 2.4847621698943176 2.3747649284410763 +1.63070857718881 1.6670428090100389 2.152099555338463 1.9343309110632982 0.2207789818607787 +4.483244651718616 2.3314531228560154 2.9750125809936403 1.998159580745027 2.36314378906142 +1.6172213779936397 3.8684837525283298 4.972539389045206 4.792107379161484 2.2584813457689332 +4.211442392134248 2.308487239181388 1.5572890373005404 3.0116733892320044 2.3950933504339544 +3.9151559567442695 4.509687950071926 3.0971294935184153 4.970910774906655 1.9658394088966449 +3.764614268883305 4.060628144804648 2.864206892781094 1.2336755104191397 1.6571833946806136 +3.067997325273807 2.2265082531937357 3.678867188837394 1.1570038150001198 2.65855199962914 +2.6945553859373113 3.3561678439136204 1.8388639012605474 2.5722791964428953 0.9877393582098791 +3.7508568281036956 1.7253924282890813 4.770011818894143 3.6941728470865036 2.2934549326674145 +1.8241276115157836 4.532246397069871 2.7094211119456992 3.165218007692637 2.7462079613247594 +2.715398087372175 1.096537315686442 3.794999616800171 4.101171430150737 1.6475592181749645 +3.9998128149653525 2.1577918340618694 3.6606060530990168 2.5013678161513897 2.176436211812805 +3.738256883353389 4.316552364573064 1.8895245502138334 3.660479281943754 1.8629831790533407 +1.749048483273806 4.938099747760209 2.130245893869513 2.946393009727239 3.291829898741004 +1.0512369539221558 1.2296417949859109 1.6084156930603033 4.1042468526369795 2.502199325479255 +3.383618024457767 4.147361081555159 2.5830459199071973 4.479545250138573 2.0445080500777015 +2.131523231673359 1.8179266516914052 1.6098567852551073 3.766531830174644 2.179355424054338 +4.968225815970632 1.732683588680914 1.9979279070615852 1.606868054627172 3.259089031119115 +3.0018361687362374 3.4146571988077548 4.205802844868574 1.8416326468703406 2.3999420676283654 +4.581543647663143 3.9669175431099304 4.261921548212679 1.8889782861616116 2.4512496758412468 +1.737501037150306 1.24221252104677 4.172167071094788 4.334958723150783 0.5213557673634797 +2.7205970637255206 3.824637510120435 2.9949918258048713 3.556085891922281 1.2384392832545523 +3.7997962765385105 1.3846197522518175 2.194885806846394 1.654966421001499 2.4747910187885926 +4.735238713359442 4.083432641048169 3.29542150002486 3.3986453529616147 0.6599290262724895 +3.674378586745747 1.343002574279152 3.4413838881463605 2.387878325089331 2.5583565198964644 +2.231145871364677 2.4037245334958355 4.374417492008137 3.7350960118474266 0.6622049151266259 +3.851206194748119 4.54283596501718 2.470810126196478 4.5254277590864245 2.1679034472283862 +4.783526828770718 1.5632858435656352 4.199723247675747 4.529632925512702 3.2370962911728602 +2.6493090018439145 4.85265196315173 1.8208010010471236 2.230038798119114 2.2410256088891596 +1.7321264119130477 3.986410053155999 2.5746250441404706 2.304149143316868 2.270451925961419 +1.2302246350732582 2.6972267810928967 4.214279439935775 2.5889017599100317 2.1895085976428805 +4.1505048744281146 3.492826922656012 4.007799461773462 2.316941902184266 1.814260062688665 +1.8772488247285128 2.2840840317839097 2.094853937199407 4.596982579054805 2.534987697424377 +4.174414488592221 1.6912124971892526 4.956807756070377 2.3730039029229077 3.583620303777645 +2.9372681551652504 1.407093875946614 3.9521011017956513 3.8675330642233874 1.532509405439685 +1.3526994251865938 3.12495095974711 1.660865227646497 4.026625893690147 2.955959916973063 +3.385548697790512 2.512250023413746 1.7541856000056977 3.0345001999266437 1.5497922600913159 +2.189903419252403 4.895382233708922 2.894444366858355 1.8798809627529347 2.889455747441554 +3.4696784437057024 4.0401576904699015 2.881678079815344 4.841077371696002 2.0407577406471042 +3.461502877325675 4.573064520541534 2.844571331042651 2.7210788522865594 1.1184005002583215 +1.1544754314309196 4.2170887169247315 2.580025033115989 1.9926807422045174 3.118424835161095 +3.2718086831317814 1.6591128927073786 3.328467193638149 3.6844081211440987 1.6515089028904402 +1.1586758481909998 4.019149204140307 4.897951235982897 2.406481070676149 3.793379944681198 +1.1200359567780476 4.68970190996271 1.1251237301643569 2.2936553368152177 3.7560592557982635 +3.07650498963732 3.702917321012343 2.8342013940102015 2.6092993677617335 0.665562416539094 +2.5678115341914602 1.2943738116424628 1.2819586712958237 3.8026664663515595 2.8241125015242448 +2.2162496350790084 1.8613840875938328 2.601724522472019 4.957036936867151 2.381895490191747 +1.6341349511769132 2.4488151006920713 3.670861929628512 4.1942955988575 0.9683421668483523 +3.0444746442655135 2.2639351543885087 2.7884878750493387 1.3242763840310157 1.6592640494169564 +3.422466021108158 1.2099413153155423 4.321258280209891 3.8415320962206856 2.2639352431877433 +1.8163362753804972 2.493986648041802 3.331434051187088 3.895347564933107 0.881594282282608 +3.393355432980948 4.157121933094692 3.208177717657072 3.8479180391462697 0.9962966152883889 +4.67666727454259 4.51777619339053 4.849930769724837 1.652285684466019 3.2015903027947763 +4.466068218224312 1.3855196990307732 3.5399999713765418 1.9573867154192093 3.4632995679030385 +2.749631805922046 4.580902607376325 3.355685092447398 2.40751012179108 2.06218052634538 +1.9226697318165265 4.710436052657432 2.4509511742571064 3.9430431670159884 3.1619581867048794 +4.604853863113283 2.6022222911800417 4.855858105429746 2.034731600727132 3.4596658752601233 +2.71253699023204 4.813995990694968 3.504771701459391 3.9460922691467823 2.1472991813183766 +1.91261269329901 4.278219144722225 3.9001858719682425 3.059345255000927 2.5105988979040665 +4.124198025822611 4.6195218571253225 2.927446352190416 1.3264986540115333 1.6758219565815038 +2.4958936641958003 4.42252170037195 3.33130018852633 2.0232401510908535 2.3287156656225054 +1.6781772087809954 3.903922992967329 4.689224208520503 4.330623300411281 2.254448692501117 +1.8283908748644917 3.0269560879322106 3.6257574952253195 4.162938160778164 1.313438859414424 +3.761542279446547 1.733540520194257 3.3023467287490638 3.3695215361575763 2.0291139914457132 +2.1627235270235357 1.309125305503605 4.249821126236586 2.3840434287973404 2.0517690757109297 +2.3130099410095095 1.4584222851483357 3.098816986265498 2.2088433862891916 1.2338448323047282 +2.0020392064283676 2.4228222541917264 1.6988329572207692 3.4382423500118438 1.7895819089985336 +2.3295974547552825 3.2072845252910684 2.1747719731963824 2.0977454187649793 0.8810605449532193 +4.645830707740068 1.106279144643056 1.6445901786817 1.4525781801255202 3.5447558273331095 +4.540397208197517 3.9814029822443207 4.571886559949249 4.899393819563379 0.6478700099163178 +1.0818684783424546 4.322071729398499 2.9454948062277038 3.0350045835379333 3.2414393575059037 +3.907543485771367 3.5885562910873263 1.3280888237096242 2.967457330790545 1.670114347097564 +2.9106472122928397 3.1074186609782477 4.655097083640264 2.2621751553099987 2.4009986168470796 +2.739344666423707 4.930422290830026 1.9856773670588495 4.531042183427469 3.35852693968372 +2.2200098321295947 1.7014664745448802 3.3682208565348457 2.791946226321197 0.7752287811498657 +1.6038374276479943 4.661832775904243 3.9892505271761505 4.808301281095593 3.165782634271163 +4.719029067452255 3.441673850207957 3.1309484404047376 1.1510025218838544 2.356230504702104 +4.561906304724502 4.13753258133665 4.971643868722043 3.23232548202265 1.7903411706746422 +1.7431786232240158 4.971347306683716 2.965004144727133 1.4952563298049601 3.547003198241924 +2.7296274542182277 4.890161095792605 1.1281446376842408 1.406754039872712 2.178423470164251 +3.0689515642141236 2.3157880514520386 2.028017843324659 2.130142598798427 0.7600557496899161 +1.5171893631090727 3.6860917687898804 4.517893580658697 1.859300714481685 3.4310717966045674 +2.6219380666942964 2.9057305084222342 1.7578182495123773 2.488228921409365 0.783605704166907 +1.35001043531754 3.0687416796850657 4.7355770830572 2.395029641131433 2.903824963435365 +3.1983242144124557 2.3139901185930873 4.466049233335648 3.0716566662791402 1.651174558940119 +2.828903065247568 1.437898592970631 4.288957158245374 2.1328188435132938 2.5658966998205788 +3.0771362363019357 2.4390807504013234 1.6813348088004183 4.186704186901271 2.5853414714140412 +1.5375127943320703 2.8960600236050715 3.339542541347223 2.5415618254065087 1.5755709432388638 +2.9069286465621267 3.8659395304195128 2.4873894902342912 4.691799557657946 2.4039812022384215 +4.737037343193871 2.5656088830248414 2.301551507744263 4.139476735508562 2.844832279851396 +1.3064912468807122 3.903400930207491 4.335775258291253 4.4005892279359955 2.5977183746544776 +1.2069649996046738 1.076501934679985 1.9850448498622026 1.2009252659569833 0.7948988194564374 +3.024840999911473 4.328203301120907 2.740460213282383 3.067507942696436 1.343768397280141 +4.516183493412408 4.00494226258357 2.4762096146634276 1.4704863583524777 1.128205151727329 +1.2328321064112409 1.8174308280624718 1.0600512915615523 3.9308594743618666 2.929726145527854 +3.8507671852541927 2.6938793876954663 1.4947940723188098 2.9539446612478417 1.8621250810061662 +2.197698977777399 4.179022742211815 2.825390445629732 2.104681929480017 2.108332190325635 +1.8700505273372103 3.783613899250931 4.9315688457602995 3.1338885214680094 2.6255245812365655 +4.364298760372759 2.7135246270385824 2.744150633182824 2.9743493497161078 1.6667473378946114 +1.9125646842220707 3.510007287737521 4.666476700682554 1.9002413648825396 3.1943513902754717 +3.5813095474165597 4.300869368961411 4.597638087196007 3.530133756817759 1.287374006323714 +2.372434196613626 2.289806651890582 2.0573637346442584 2.8134863319886003 0.7606238842961168 +3.3585640043141414 2.654824862689322 3.9938267102779297 3.5758933959669275 0.8184845964743728 +2.0475110858208514 4.626075786501845 3.406869518968935 2.9233176073812084 2.6235126008460883 +1.7472344082295432 3.474959191049536 4.064221408576655 2.1780720299619145 2.55784917530709 +3.7445988659229483 1.098933933682587 3.585023408751656 2.4521326116547177 2.8780174585699325 +4.258710668194427 2.3674259974274654 1.124478123795893 1.5496589230336082 1.9384881784314587 +1.6955883515365522 4.243817246086848 2.421926615666352 1.022429189835767 2.9072432894285707 +2.248191269038148 2.9225118760005406 1.055186946507669 2.175524049202408 1.3076174917186494 +4.034848050450125 1.9089779566463378 1.5981250225980128 1.2379797574209332 2.1561605384940132 +2.4171948779250974 4.6413814707489545 3.596237208030252 4.788059827183018 2.5233801051806597 +3.843617861676869 2.568861537942694 2.8154790641839416 3.3605674088201654 1.3864072231341438 +1.1804510342685401 3.1438363005735495 3.6727960145642253 2.60602862821444 2.234474067990753 +3.425743728682405 2.12691910486152 4.203656207294304 4.988857113250926 1.5177239097275117 +2.380126457446909 2.7363072127680015 3.843259119299508 3.5463110729255676 0.46372715329857894 +2.09386486951867 3.319157504128354 2.057646187390579 1.7803489903768805 1.2562785423226788 +4.823178137456104 3.0967359889271338 3.26927445130721 2.564281622111414 1.8648370924654032 +4.91714710110504 1.192272846609855 3.8941536129422736 4.898140087264952 3.857807285547574 +1.240454219567852 3.438171291287755 2.8130428177283915 3.527401136924896 2.3109020177269217 +4.854698894188182 2.630018836345131 3.726398192043353 3.3799197091279467 2.251499211389585 +1.1742142981160284 2.817079168459532 4.158589354372885 4.1241151502604145 1.6432265373216093 +2.1663970075585812 3.2632227796728936 3.378895578609626 2.544778278018952 1.3779616995834212 +3.2752984228829205 2.4653145213125915 2.7311976739321278 3.4975775559446056 1.1150838732384896 +2.918702409997281 1.0160708973699766 2.9998562709018888 3.2222966930941603 1.9155903565918109 +3.2344794282760105 3.3454658985155334 2.876340691952029 4.521182642538503 1.648582129887785 +2.91700338640302 1.91643347735591 1.7516305411271889 4.333439527707438 2.7689127443957267 +2.0979088089277917 3.287478733587721 1.6212933465324446 3.6178150406978857 2.324042917187347 +1.8181819433761555 1.079284193410614 2.255766367221643 4.388524214940677 2.2571278036281566 +4.091574304752234 4.354333610680445 1.2929487833605031 4.535494837051918 3.253174966576751 +1.8479974528941172 1.3349982643396858 1.8819532689192187 3.996408658881823 2.1757963515916225 +1.5012624359252338 4.435198942696934 4.449353777615585 2.035455447452863 3.799327384436632 +4.8495721188238115 2.5346906127044777 1.584556110384459 1.7649991714659703 2.321903547881733 +2.5376717135869495 2.4151089963460057 2.90062893002691 2.2222508359481914 0.6893609056099411 +4.884842893893585 3.434992434724074 4.551538351159161 4.909428976620246 1.493369362799093 +4.047757595077032 4.751455787688208 3.1389485061325693 3.8109819642823552 0.9730468206396833 +4.023258753139362 2.439775320025696 3.6743316901719703 1.0312537293416768 3.0811168251094054 +3.3002896230262078 3.9015901177920322 1.0110262234116023 3.881100366350886 2.9323860371673933 +4.847322982418682 2.82439348361251 4.238965423047149 1.7577936577171611 3.2013211469971137 +3.423492073046243 4.04011905580937 1.0036950802045133 2.4505354144470277 1.5727605630427504 +1.241157748262816 3.87371731891958 1.6895678775227934 4.540887014519244 3.880771922447738 +2.310702155362663 1.0084331000482853 1.655880749674128 3.7263000570698033 2.4459233023269946 +1.6012158357137216 4.3466759467805876 4.025579640932566 4.27898718830447 2.7571301395698264 +1.2744984955636132 4.5833181443873565 1.6533632135452638 2.1044995876559063 3.339432810596401 +4.6348187904366895 3.9608744168985144 3.6456243829049395 1.2984068989821167 2.442054654477813 +2.9596856943986163 4.742648965833046 2.26951429069302 4.48557825530926 2.84427451603301 +3.1060489978513917 1.4146842143071368 4.63551178328216 2.1001230874054335 3.0477714268286578 +4.2209855700023695 4.291736948448026 1.2674154270514224 1.4333485076827621 0.18038720797153884 +4.250906389046696 4.107148953280921 1.2694351573655904 3.432890791678227 2.168226575332256 +2.704840973107437 1.9094664763321694 1.7591892406332752 2.01950405249298 0.8368897128021494 +2.262246265636312 3.0223714098664196 3.708005435255045 1.1393929771114086 2.6787236130331804 +4.548012200514684 3.6119636183125894 2.863093364685455 3.8472659311737942 1.3582277382202133 +2.414630316430861 2.367880871212215 2.619557768826957 3.509725725426811 0.891394694613677 +4.529064255561558 1.7494999381815246 3.3874848290001944 2.653187692741785 2.874920882175652 +1.7681704537852987 3.9321632794371486 3.118272896170785 3.0906009139325876 2.164169745670073 +2.475624045558132 2.8348073850596283 3.827292041290815 3.974837034475218 0.38830683278720773 +3.4020589246665938 3.7122564845139 4.588500032029823 3.249673125997771 1.3742925490777358 +3.629132860774354 2.6258290400572277 4.820370092313149 2.8092240154232053 2.24751576173681 +1.9714711495861454 4.514244807564033 1.3873377912775107 1.8599763285930142 2.586326557622217 +2.5498283610266963 1.8601166943412117 2.426298676183274 3.4407194252326536 1.226683186182958 +2.1315401335652355 3.6992815939133252 4.1959228049507695 1.9073792639205314 2.7740304298413134 +2.5691047703884053 2.3139063545168668 2.0891369305914824 4.983585076567925 2.905676565141036 +3.3447985464693994 2.1912021008289075 2.5478535724523024 2.3963138716024894 1.1635072154172603 +2.2434555932964715 3.303664164060756 3.319703188494459 4.04939891178868 1.287050139705491 +2.3304567030242787 1.3160911940243358 3.252975766682964 2.640926469588307 1.1847116644664124 +2.0547023874303223 1.7103673504602956 1.0941320384445703 2.503590186885731 1.4509096766829885 +1.0429433830743196 1.0889576443170181 2.7451224151894715 1.7405236370495225 1.005652035884177 +4.80716677882935 1.201930972154595 1.1233018806441937 1.0141333754948163 3.606888268888617 +2.1204560342323178 2.5340097627000944 1.3451931524217327 1.2878231800808249 0.41751407168620797 +2.2121659812952306 2.9283125287092004 1.3467356212429524 2.723319933759511 1.5517249262803108 +2.301831579600191 4.687731732970851 3.3928547380053633 4.911638190226744 2.828289715816899 +3.4906213054879602 4.088782443551519 4.307968738293832 3.969334475780868 0.6873644672495016 +1.2077923142836555 3.8439951084564576 4.477692870894523 1.3474813199171454 4.092406324630619 +3.55320791103909 1.921003525072274 1.2403118368480839 3.2345234468638884 2.5770081689996904 +4.334312330352304 1.9607983430675189 3.426416855177413 3.6207793085811715 2.3814586729837766 +4.119666609949109 3.145876418327513 1.1934774958520946 3.386006124754062 2.3990517138763736 +2.82971746266237 3.5067491259599466 3.637141234592405 1.2846395688580512 2.4479861029814676 +2.827406480669937 1.2248081430252946 4.9948107699716715 3.551227477677164 2.156908471311015 +3.765765041499518 4.157486548955399 4.796192109969823 3.6595616596099223 1.202237297744858 +2.9068825900457185 2.8069192644124166 2.741711145745473 3.8966896144460526 1.1592963079530638 +4.574165838436035 1.6592047296239087 2.4848348471592394 2.0107204270646033 2.953266454153586 +1.5327922935297043 2.9680300960076056 3.172908769068418 1.694599909670507 2.060413704438006 +2.5919510321672923 1.2886842579972493 1.775027853302952 2.53892684524624 1.5106442183874935 +4.1412075532451595 4.077910913695385 2.0038884028062522 3.2310757017156733 1.2288185916492698 +4.926246235478393 1.3844822774934458 1.3001464528049147 3.739733813642628 4.300660231318015 +3.9257647535478886 1.0888323316258992 2.9624987096040933 3.7216216291073967 2.9367419317106127 +3.587026170353701 3.201739103742935 1.900632264700838 2.2390443699956193 0.5128049109628096 +3.182962297558363 3.4468338155711495 1.0430034392014984 3.615945171523276 2.586437189637777 +1.5995030469836844 2.206647866341771 2.2380846237613765 2.9777401382196147 0.9569300453752326 +3.4970723139076862 4.805950892824917 2.801373519041418 1.160622476542669 2.0988632918342067 +4.187070055098099 3.573021518044035 4.695268159097776 1.7331739694527406 3.0250715023263695 +1.9342306319755238 1.639320226483299 1.336544386229591 3.346698815030066 2.031672457581131 +1.9962163781792643 1.2268641201205877 4.5053989055029255 3.6777978584377875 1.1299674287709789 +3.3440566424273364 2.3053233087756095 2.7231330038441586 3.2908938785820756 1.1837733521761649 +4.029877675681876 4.59263680623172 4.185471430846694 2.049578449299566 2.2087862430845355 +3.3462573272829084 1.747809770776687 3.2140955248431373 4.205268639604979 1.8808133172453347 +1.4451409682403686 1.4971715835637602 3.7909749293874646 4.2556017362611165 0.46753101992973317 +2.367345230191064 2.217526903767584 4.794194430205609 3.649802082763938 1.1541574311225442 +1.8866685779273564 1.5789331774536692 1.7169183604576417 3.009769272784031 1.3289712405495755 +1.2333992675274401 4.886836328784438 3.43101639997451 3.5570510862952465 3.655610359806161 +1.4347208299241436 1.6251633265662844 4.0841240273282216 2.780904148568064 1.3170612730328575 +1.996365020605963 4.700576099705948 1.520661778353837 2.514527267046851 2.8810633748569483 +4.150767411131338 1.4292443861289916 1.1188970878533677 4.646856475556958 4.455691306285009 +3.3926646870945607 4.822118945624684 4.06408074480049 1.8243959580575169 2.6569771209398514 +1.2996463798187512 2.2410145453744996 2.162813096128598 3.1229801316004355 1.3446541410818516 +1.954158384987351 4.4055728688399185 1.5236408046399417 1.0886546166225006 2.489708006053741 +1.0762458649407782 3.2693483851535112 1.5787345615694557 2.26599978795061 2.2982672071706935 +4.278005559675967 1.503148602241748 2.977313845429045 2.075186339778427 2.9178185637000285 +3.417346506838791 4.302161950330724 4.853737028643819 4.009270487173916 1.2231198259794354 +3.8729528675533147 4.920121627944619 3.4355752061536857 1.5648038867828822 2.1439094528733804 +1.346487816208 2.1539595238474267 1.1694126376075213 2.184742733552818 1.29726857757768 +2.164120722898128 4.008434298724378 3.945886280771711 4.809586160214463 2.0365338317166337 +3.7092400565246546 4.918284055695508 4.490659281902468 4.31437467643647 1.2218279969191048 +2.491434639115341 2.412368232597252 3.5620140920503345 1.5287602452537876 2.0347905794338246 +1.9871674532872454 3.726873141106487 4.695755139735248 4.008348903704377 1.8705890017758444 +3.1053410645540134 1.203169673693203 2.5212459426971643 3.1914627543210936 2.016791157951833 +3.204940612879732 3.7806029219748964 3.316490129516601 4.639531923896158 1.4428536598657031 +4.722631158216462 1.0340704932997298 1.3915763826741303 1.9935236817382074 3.737354723547325 +4.5066704719258635 1.7456135602765968 4.041218273373641 2.0342075752430966 3.413433346614028 +2.6164360666040656 3.293897724430878 2.746041926743073 2.08909252029537 0.9436825845894594 +1.4369723749373113 3.4624331462296714 4.657837161886155 4.526976484758998 2.0296836829571303 +4.562689254637311 1.9774823364275953 3.6881652892665477 2.4895547373702045 2.8495547134730774 +3.426268600484286 4.755041717230895 1.107290596645952 3.202057728257916 2.4806626799043663 +2.8889365200530692 3.1487322166486997 3.383344584922751 3.2704431284963364 0.283267616985801 +3.1745822220542186 4.286233399912625 3.1344209821593236 2.7560020695145364 1.174295199122114 +3.114592003236604 4.835275123596064 1.2327989336992662 3.524399938677108 2.8656911150201485 +4.366150812322697 4.789897754383109 1.6117720608478323 1.2463788836437604 0.5595298426829761 +4.338523309877086 4.836345932187082 2.3425307423609874 3.41729970000653 1.1844642989985332 +2.8406485887683157 3.7140420419740874 4.782708516536525 1.2414324059713726 3.6473898359459955 +1.0789333793234368 1.0558309496034735 2.111522302958145 4.210843001246229 2.099447812287729 +1.7644041144884532 2.47464992558489 4.736222989818435 4.183798738213931 0.8997897898625162 +3.5242440655496496 1.398237106818729 3.772331639306047 3.4907405843069266 2.144574342574259 +4.903285133372607 2.6253668446154848 1.7742134801655358 1.5017591136059867 2.2941541169048647 +2.4140906484333526 1.5840872442752847 1.8095908182413107 4.742606312743803 3.0481938163288893 +3.6029928170722973 4.435015478927729 2.85243191483791 3.217468365638974 0.9085776357881786 +2.4881824111474016 1.2787723539754206 1.9972982503807244 4.933358919122149 3.175393666448158 +4.759289389739868 2.688819821142028 1.1598274452974082 3.359539582081681 3.020857116648478 +3.057082652103208 2.666672104538005 4.7522462679768545 1.5860893074125388 3.190136406892349 +3.214170371967682 4.359986136110704 3.195191431537776 3.5806044815631344 1.2088990795300105 +3.6846528445234727 4.5636054837452225 4.653537299554722 3.302064415645711 1.6121528146972357 +2.56788706967919 2.9607437798035754 2.372885730075938 1.0786171612767923 1.3525781023183632 +2.658644688081405 4.069707217917305 2.309769648490287 1.0005307868295499 1.924890609876206 +1.5022817840826712 3.544436082943705 2.8598810824820284 1.753120989094744 2.3227811099350775 +3.162140476750006 2.49386834562407 1.6627586791545683 4.971926237527111 3.3759706116352515 +3.106381650681259 1.7558858984273935 4.365376004317467 3.3847402015368697 1.66897733793808 +3.380459526249688 3.4939035260049405 3.039676980168689 1.252149778998938 1.7911234005512386 +1.397825177626372 4.517142223312355 1.684446109900816 3.3680284986815363 3.5446563290846305 +4.680621443689509 1.7931898961951998 1.034488533440777 2.1559153040478374 3.0975569314057103 +2.310832649574687 4.634319488713118 1.8325942664839938 4.420662663555442 3.478029488024716 +3.498804480468254 3.8913771162251614 1.0421879207517404 1.6960052828581142 0.7626207559048356 +1.7014835067957375 2.555619239287197 3.0025111078177806 4.8569232963335125 2.0416641287034527 +2.9418058456943608 3.758774969090933 3.1529311153101496 4.8325149658393 1.8677367211525533 +4.03554058245054 4.471911787385152 3.748555190593172 4.796938854201472 1.1355739230084698 +2.7220550218601236 1.9892687766137738 4.16328479166274 3.314926660677301 1.1210206062474277 +4.547569221081834 4.832888866505828 3.6185526690130456 1.2121121425094756 2.4232959595690438 +3.3644334252847714 2.3511601660182593 2.954768935215762 2.305321146766872 1.2035385859480094 +4.552011123174563 1.4659192813837159 3.228979360764518 3.0209633926313493 3.0930944859422587 +4.308819442253721 4.849520887008969 2.6025510839439905 4.22977156124003 1.7147024622633407 +1.6103672020703614 1.5112356605945587 2.942742583289251 2.558248529980808 0.39706767627814366 +4.9525172367023105 4.091974433009778 2.7574195606305927 3.397508464329802 1.0724960240606303 +1.8979632843273229 2.7850654311236904 2.026159489293505 1.5047312073772572 1.028998382910709 +4.681115874204746 2.9821393450696685 4.234731881922276 3.491803246387604 1.854309630037358 +4.5796445991882315 2.2790628032230953 1.8650793546986204 2.9460901978022274 2.5419010686558483 +3.847297130136914 2.650285404606817 3.160786404422152 3.779459464238067 1.3474395815763043 +1.9901005501245752 3.151662826213323 3.4668582709732876 3.5648643005512204 1.1656895397429383 +2.6041579432499806 1.0776025551703285 3.4328980169433927 3.004915391981709 1.5854149236537767 +3.6501227717196802 4.665533295687499 3.416037842191554 4.619307994958989 1.5744578726423795 +2.222370998184799 1.1791510790257278 3.7436000559826486 4.414951147818106 1.2405724840729457 +1.4393193830881965 1.5891348750232743 2.4774121250902157 4.640166180446685 2.1679367577456228 +2.592652672896653 2.2326495066013674 2.269034619903359 4.47998231138776 2.240065171869522 +2.9909273657929183 4.449708009135091 2.004975974666592 1.2948835770264124 1.6224278654461597 +2.4452230527341214 1.4383389378586533 4.196461239680146 1.926198200534071 2.4835277102745055 +1.5518328015879783 2.3985356546131533 3.9762928814254983 1.7517001853955514 2.380276955429926 +4.001965239653666 1.6349981072550066 2.7065479436871023 4.18654444857261 2.791580745801355 +3.1198300965196983 1.217637489719218 2.590713310259388 4.499563092268405 2.694818027927355 +2.530294041631453 3.543522326452308 2.893805291742143 3.1328929892766526 1.0410545059089678 +1.0449079345286485 4.076919511000563 2.892816105171712 1.7338345627208938 3.2459717213188077 +4.087487352147862 4.13520896070901 4.046191360961154 2.7089130741435206 1.3381295035674117 +4.6293312077612025 3.842244936629725 3.509697975703138 3.464855489384761 0.7883626365974404 +1.9078999969396229 4.395687976534639 3.7427770264435933 4.068265169149816 2.508990147939963 +2.214228463923259 3.4505087435285766 1.9152207319490664 4.746861876442454 3.089754116580933 +3.5601002866124563 4.166419302498568 2.1898408353625034 3.508565229164123 1.4514326632098895 +3.069196630341932 1.6938708643144476 3.493876568031774 3.070245176044389 1.4390915603172216 +4.540041684643887 4.830475114115637 3.952216193383708 1.1796512514206623 2.7877352697767535 +1.7291286619313344 1.1823789883679807 2.227930752222893 2.9553795798736293 0.9100093419257103 +1.003025138521609 3.482064769762739 4.2943039586725025 1.1541890731668323 4.000744804088165 +3.403402853213818 3.882051314416812 3.950489448765149 4.427642833125675 0.6758547932941641 +2.1347742152993208 1.4785972392045377 3.4456054145763217 1.0251024272280342 2.507868205412493 +4.839198970352283 2.1156310618836165 4.285545208369754 2.443204455565316 3.2881669059651473 +4.008581892638542 2.629985478152925 4.429347065612921 4.267487352162707 1.3880657912616339 +1.6230232955795953 2.8848011765183528 1.1033465440617674 2.7986926436683306 2.1133579484501643 +2.4727558978453494 4.193467354808184 4.891794038378277 1.1677402708460463 4.102368143108827 +4.077245407305346 2.8379744063042525 2.680480303569692 1.2010423324405868 1.9299039676473169 +1.3750303970901037 1.2484229575843773 1.5174457961641168 1.7443996464099474 0.25987976812288227 +1.435265345020869 3.5900562924559294 2.45070659432595 3.8637585126243223 2.576788650812246 +3.854635401655182 2.5648515338080244 2.603277401464652 1.9810256281687635 1.432040395774034 +1.4435050100756452 1.5532997396220116 2.715974990081154 2.473928369376574 0.2657845917856536 +2.905651331244691 3.4555237644552155 4.177438827840499 4.401944563850579 0.5939381435017375 +3.8855207405683787 3.5196928455108774 1.8465159748304645 4.015052775959846 2.199177552326018 +4.469419777865632 4.514873701212654 3.4160624156197836 3.6146361358803647 0.20370955187659825 +2.797624586433251 1.9098212348490629 2.178929428939283 2.68311264802236 1.020977722327521 +4.554387670561711 4.592178256919933 3.2387344427924205 4.30689790860186 1.0688317538824017 +4.900139680297068 1.789953161678886 1.8445055345040533 1.8212442577513208 3.1102735036633757 +2.4701882816242455 2.272638112237686 4.3371377063751915 4.923643448160083 0.6188821007036023 +1.4414651671297647 2.7383529975263525 1.291967282528573 2.847678008350526 2.025377472736437 +3.540109535252965 1.05758802228633 3.8629017698874377 1.8093988944440889 3.2217677014018644 +2.346557998626235 3.2665057427516335 2.526877724402007 1.9900827912861923 1.0651068735766482 +4.699801840516289 4.7637946956358 4.669410421070145 4.013772508941061 0.6587534875257444 +3.460415282407374 1.9007498875828155 4.435982666383731 2.275071221467046 2.6649755001847883 +2.747141797423608 4.830474856294975 2.094256325734149 1.3554784575171208 2.2104455145408184 +4.795105240115166 1.9755374777052714 1.3030387219242883 1.7632350249899762 2.8568764418813197 +1.5995487570453073 4.9056060040647145 2.8883571586522065 3.150569647199164 3.316439342083544 +2.8695145546010923 2.3608386246853352 2.0655503399928303 1.8464416999528122 0.5538590053577231 +4.728107799101676 3.9894710270677467 1.457778848535372 1.6200867151110052 0.7562592971679994 +2.338248682300465 1.4449479403693397 3.5776653918272423 1.2551927792953084 2.488345886627421 +3.6463202516438558 2.829272566316417 4.031457879278144 4.004876398339949 0.8174799662547048 +1.2484516190595483 1.8229034251084517 1.590360485373731 1.4669402373679765 0.5875605799325283 +3.5018363710415388 3.077385154275123 4.356574881641906 1.9867089511730285 2.4075762425750113 +2.5606561699124293 3.0295913767914624 1.6013583733186878 2.4061369663003456 0.9314337399795105 +2.6685608491719344 2.6541201824956726 1.9063695656348933 1.861096141360456 0.047520688121996946 +3.661910838697022 1.3628259468052941 4.825372250446968 2.4616888911451977 3.297391448276182 +4.930318196532569 2.6629948551116156 2.0607632266992937 3.2928778257285543 2.580476994606484 +3.432867060701407 2.4249914854645276 1.9628431913879547 4.543688844998375 2.770663722453316 +1.4700547057395572 2.385706647248197 4.10609628001105 2.9402741124256555 1.4824168794310355 +1.6391875467648997 1.7075012717738436 4.756764036117428 4.476466182208245 0.2885024296790081 +3.0293249807377305 1.9694309693890686 2.490022918098551 4.029871798820939 1.8693608241200381 +4.628350559589116 4.432366181870228 3.5482971279924 4.294453755677511 0.7714658705012661 +1.9821820588025476 1.962114078653621 2.534916844765044 4.175327899399644 1.6405338009302515 +4.669444609832521 1.079802703433883 4.318326472184404 3.1581995207307365 3.7724559055955083 +3.081122129127007 1.3979114626171079 4.674974761619795 1.5239832888184317 3.5723865145753204 +3.7142138051516596 4.6035937467176336 3.144702822302261 1.4356245222113073 1.926640941198354 +1.1049472634939774 3.1863933392934896 2.936908757710604 2.2282288493646534 2.19878261293708 +1.7847241404173322 2.6851092629682447 2.543065530503638 4.4008073632211655 2.0644365056692107 +2.4175783642065714 2.231987196964168 4.394128060031884 1.1273427329633399 3.2720529418865962 +4.082284828086319 1.3840884255181582 2.785956660273697 4.943173259207165 3.4545400969659976 +2.8741792805796362 1.5908926719217398 4.941923967642536 2.9199371816487765 2.3948392603041353 +2.1601399592619117 2.61088685107654 2.163923644779902 2.253440372235763 0.4595497850885748 +3.8125388238319937 2.4283421870866957 1.5866402754503706 4.684441149746728 3.3929884447148173 +2.0827096788782034 4.018036616401154 1.0667085528274187 2.4779581152342876 2.395227689071655 +1.7174402301530671 4.4189132409672744 1.5846630758960636 2.1042170752903155 2.750980331889732 +1.9531421491577774 1.0048317858883205 1.7585184442963047 2.7934479194919066 1.4036992426132078 +4.276753622484593 1.1998254249780786 3.0463140607235335 3.938702936316653 3.2037236207096638 +2.531145291283632 3.696032542010825 1.2025915620354652 4.609465374124351 3.6005210009669177 +1.5285531699284598 4.601208597786679 3.736461808859066 1.0335587362799146 4.092297203051654 +2.5203048924028795 1.4152211511539106 2.799745950064988 4.298930696876896 1.8624620748477814 +4.692521896917617 3.6106005488825725 4.074721346604802 1.3183906165852086 2.9610661756509784 +4.739714128195715 4.209695644967276 1.259894677665676 2.6042340213940496 1.4450494329467796 +2.2029034264526905 1.1422810112227513 3.097141573594203 4.648545779774979 1.879301710381703 +3.218777708543601 3.469103390010756 2.217219271578253 1.4184620754460244 0.8370639194081984 +1.897754772968201 1.458123945985736 4.623888963740054 3.755751772819471 0.9731071093629757 +1.027526899474541 4.412703737568977 2.3226933701021655 4.498080279841412 4.023894933051299 +4.259867865025302 4.640261019483619 2.7923749827296005 4.007860933946828 1.2736188792433936 +2.425946800619496 2.0594272280096617 4.421507721103329 1.1149385441442896 3.3268207524785094 +3.811269184450324 3.0911285544621063 4.263129698739064 3.1066290155822798 1.3623862730892204 +1.7414593285702846 1.039738591259105 1.812654571572105 3.426910145677925 1.7601798350464808 +3.5106522887254115 4.5921310605626235 4.604891491341433 1.0071972434893675 3.7567273303984097 +4.226763232444126 4.670196617076021 2.3711449259927067 2.0181791663871245 0.5667609673045981 +4.364927455421361 3.341292100725118 3.4835822063835282 3.2414171698494427 1.051890319521792 +1.6099285383039943 1.392570154473458 2.3791700969965346 4.825978043887457 2.4564433223646733 +1.030082118230811 3.6444595184834667 3.5315026330229005 4.435094401597781 2.766124956539042 +4.536147507161674 3.6625934663981683 1.4043276532537545 3.4347010440683046 2.210319607717857 +3.7723256392153717 4.182032982485292 3.638729610992874 4.866738830866794 1.2945527224584747 +3.7892521798938565 4.4647795845433 3.65158239820867 2.135511735254847 1.6597612869029261 +4.035217363767658 2.3288208570615994 1.319635650617339 4.9799016666190905 4.038481935826378 +1.8965764260651996 3.8933895623483723 3.383794174617098 1.95303151312311 2.4564902798013266 +2.7243401228695068 4.220054264216222 3.066184447363465 2.9886388808597952 1.4977229742208398 +1.7481325753005823 1.0075929288253063 1.7351292444356199 4.727636748741525 3.0827747454734484 +3.688310564839193 1.4069766103278094 1.51300610860739 2.1886846628802195 2.379291096253413 +2.6169441303028553 2.5905042087415193 1.969217690032941 2.740219302709714 0.771454830954058 +1.3854787388329228 3.818847705377924 3.0359144497747317 1.1202466205999082 3.096944907336853 +4.893671658300619 1.6634268070433191 2.1074526435272394 3.213693198131944 3.414417953872434 +4.0404341212085 3.143118864771619 3.877461891145219 3.4998891086687043 0.9735172702635757 +3.1448113540364564 4.083625032418126 4.576133256052148 1.9697809743672372 2.7702785670326837 +1.1857414210344728 3.318496128354045 2.3788070881886174 2.1830269887117044 2.141721851442195 +1.1510020919401809 4.847992761105395 4.999470299030934 2.46998904521135 4.47951062297204 +4.509819493765108 1.686089730002093 4.544949441059401 4.351850621785323 2.830324527817645 +2.107794353890999 2.0200367471846454 1.690842725735906 3.87111865898787 2.18204137051811 +2.52775407561903 3.718796830296123 1.4340153331240653 2.7524913429910756 1.7767841264665867 +1.5350054279491085 4.020129350070027 2.8174869537354423 3.955368545710057 2.7332426576600075 +1.5396927019067355 3.609283621819237 4.166741330397997 2.0647764053043325 2.949824252749355 +1.6148677533009588 3.2500059349673727 4.634271775346776 1.816083329112074 3.2581993480501024 +2.3317710641444718 1.649417580132496 1.2220366325860965 3.7930687367733857 2.6600399165999375 +3.0810304897219183 2.3396465393285615 3.230229438129742 2.8548478334899605 0.8310003074625162 +1.614329052138301 2.0204698826582574 4.383275086229207 1.5332173852159525 2.8788503388193694 +1.4227439239184645 2.536277369511447 3.4321236200873737 2.1486140915883896 1.6992214229469518 +2.678774679206143 4.94267377077454 3.102489833047738 3.390309351709462 2.2821216383284395 +4.458883661355797 2.333288198165814 1.7578265679454028 2.034935058101255 2.1435823260258267 +3.6470654524424377 2.982008812320135 3.142617160713167 3.9534423777753998 1.0486838738126865 +3.133076672166414 4.478186965676015 4.4677050766346005 2.177950123041866 2.6556165855047578 +4.007659207560048 1.7019316476094404 1.9227472659439009 3.3782497844691273 2.726695282232516 +2.4444570466819346 3.063555718611389 1.575381737242477 4.176744125328173 2.6740174718448886 +3.6677604080355746 1.0243114889938925 2.5255039983661423 4.336191085339568 3.2041238918797985 +2.3048238914871826 1.1850557807978594 2.767198845123113 2.0328244472142796 1.3390990919348342 +2.741863010597841 2.8839130706505545 1.7449583003785905 4.270005644935614 2.529039800362077 +1.4830961158933627 2.5387477896662864 3.8531585016628473 1.4504097380702414 2.6244241420329475 +1.1098401272066742 2.03495650159023 4.7492918763780505 2.552561505559792 2.3835823099334954 +4.671380210788014 1.9122484439490104 2.3938687136380876 4.590780262150743 3.526929040790075 +1.491319906262428 1.1373223026091597 2.405064084079435 1.1381709290866437 1.3154210616984376 +1.9314675864734405 2.64274447511822 3.3457817904778544 4.994287529427539 1.7954069131175372 +2.1119182196207547 2.5467900825068543 3.67903530532384 1.8986625143320337 1.8327140562657285 +1.784760972170497 4.1705198312287095 3.2976993665821532 2.4541213173400496 2.530507707701729 +4.874744076602811 2.7938338967673033 3.0370387626494915 3.1979551712341414 2.0871227244929385 +3.932161539016854 2.7811040940751233 1.0526552009883856 3.418467567927777 2.630969668604933 +1.1334987899334084 3.9595145925734876 3.0905160400640286 2.6332172325636827 2.862776190363593 +2.6261403956782425 3.5966466261802403 4.6735861067059785 2.3003480458855563 2.5640088215078114 +4.947442835476544 3.780937782920939 4.911435341338434 3.2018426496668226 2.0696476050416743 +4.172611992378513 4.8621061858910295 3.863384690365608 4.299943310028617 0.8160794515790398 +3.686469798927381 3.41205146851954 3.922903001355547 2.6135431899977912 1.3378073611931744 +1.9414572935620567 2.4814690941504702 2.2998898652082134 1.2090381957556882 1.2171976460386793 +3.3641917610554946 4.457438000982617 4.975770154498076 4.082008347700851 1.4120897664115524 +4.418208754038696 2.5264402476825456 1.1164070526159913 3.1717532761706657 2.793427317887731 +1.535502759950433 3.815426317667403 4.042756210123656 2.8608077517988595 2.5680836409994847 +2.395406931404861 4.821583348396211 3.1418709650193897 4.467175384810585 2.764554902960522 +2.116244057557757 1.3456259940366553 3.1764693713956014 4.654912721460903 1.667227320786618 +2.1333900313278717 4.792408274727402 4.341531801513666 1.8853108544306623 3.6198617873643806 +4.036662067793392 2.93728862012741 1.2082868928143444 4.888454371331415 3.84086639280354 +1.885768768196467 3.8235518974855878 4.525897701862973 3.188058224903148 2.354743706280935 +2.218156829774005 2.5396437060922388 4.730337186520182 1.0130789111656027 3.731134264179856 +2.140986328767214 2.8241582213862997 1.4721395038260927 1.6786121672431138 0.7136909664576551 +4.590562202865575 4.901114918192462 3.068341420206333 3.610629353186484 0.6249153472693618 +4.324764863198491 3.1380613332228586 3.3540824086569154 1.8660954399957195 1.9032526072390292 +3.081403026700831 1.959031141366355 1.319087189402452 3.3481441734437305 2.3187908257270546 +1.0319186892590873 4.407186009869591 4.571612856970384 1.5780279313320742 4.51153856157632 +4.986261116201196 3.760149241867886 3.2446976982530216 2.9475318226090494 1.2616092445874005 +2.9090593400322002 1.6543918520413414 4.777197387816121 3.885968950366481 1.5389862355265618 +1.4005203429166357 3.541140317452462 3.874943701593658 2.4480873680320734 2.5725809748201454 +1.456089154923157 2.6293831407774837 3.7741704944665746 2.663278155802453 1.6157662471238141 +4.3498126083960535 3.981175656601651 1.039567842081874 1.8651289114638248 0.9041262530793688 +1.707403137132058 2.9851022083352534 2.9474811845676756 4.395800261173415 1.9313578291486044 +2.843116911982473 2.539780231330993 4.700844904198046 3.310389684566907 1.4231580585543329 +4.145272971293084 3.592376781741403 2.9421241876384365 2.621876159347574 0.6389467865518638 +4.702785868165326 4.023976988534644 3.382909481503053 2.2542122547530665 1.317094880689532 +4.084337489774029 1.2371451753947427 2.08087083211891 2.8384145159590517 2.9462478694072174 +3.086489115360527 4.165328628841069 1.4217011481225792 2.49785094429313 1.5238087411630272 +2.8391030660741867 4.996669057592394 2.340411749212447 4.7692923278430195 3.248776981112235 +2.9514124021794834 1.876336165179315 2.1965680713334255 1.184967849408105 1.476185599564567 +4.995784987444867 1.8829916206424624 2.6049836408806546 2.694477131573431 3.114079579793269 +1.167037506761826 1.1442518638374266 1.5688467925899636 1.242401303887478 0.3272397326390592 +1.0934357093312626 1.5253880577908068 1.7158041692174382 1.4183420300092822 0.5244678785226107 +2.111621618353509 3.737317005790478 4.645723521828586 4.007373691557124 1.746532564409104 +1.0814622850363094 2.9996731554408775 3.9861582589500926 2.454552979738601 2.454658362103933 +1.5627855973408096 3.387396220311262 1.9162823706321812 1.942231591609012 1.8247951357689243 +2.3928038926755897 4.702250653122763 3.776411584668779 3.1337768731525273 2.3971907958661784 +4.112836008048751 4.676823713893246 2.5181098339318133 4.251168168490033 1.822518401368131 +4.195960012674217 4.015423064356482 1.4593794762189813 4.807438366727693 3.3529228926449095 +2.107558789009301 3.537092288200075 4.854878044855455 4.6704688463226045 1.4413787766621744 +1.396157680124876 3.7458400703536623 2.8448963626784556 3.1630356536879103 2.3711220853079795 +4.252481050285342 2.20560699192791 2.7705896898627937 4.056609298714905 2.4173414829371462 +4.975028796717584 4.228336091005387 1.0938583865642997 4.121246964502158 3.11811346788285 +1.039639005197238 4.093100938766949 3.2729986174703187 1.6361578762659752 3.4645169059806395 +3.0648087643659983 4.073041350043788 3.256415890779028 4.404129586716529 1.527671324161398 +3.7452884397835366 4.894419941918985 1.943196438887305 2.3403542188398543 1.215827911908963 +3.5088749036760394 3.4559214873248956 3.4491121811021768 2.4823567172095133 0.9682046226235322 +2.5969566137216837 3.164284155215113 1.0699091466881216 4.585121659891588 3.5606993066417734 +1.5590998020938205 4.9814312017459415 1.9340230666684461 3.1384540364604567 3.6280857445819783 +4.108450418277153 3.3273382246891496 1.1685886290617042 3.415617864955617 2.378923421620344 +4.862412704739521 2.387990156551426 2.476801072236443 4.968960082685354 3.5119258933444706 +2.0301786587635964 1.5379422674020642 4.35940568712088 2.8322520589062647 1.6045232529164812 +1.8233967593003726 4.513002346047639 3.5338542719528943 4.247162154085893 2.7825862694578167 +4.89257406220279 3.234971864099138 4.966716227717281 2.006468723347836 3.3927437766921904 +4.952610514764448 3.432108144097279 1.7082103142282983 2.799460127457347 1.8715644830133198 +1.317677883105766 1.055443606906655 2.029602283286523 1.2483478698118509 0.8240905740192186 +3.136151862481676 2.9757840197061958 1.6814858915797686 1.3177803025076584 0.39749163578464375 +3.932788837649188 4.8790730123012 1.3888468527136997 3.8011221967276794 2.5912402579719624 +2.83463204041363 4.962998879740217 4.421435654508187 2.6855443198225024 2.7465003419955907 +2.5789553661755873 3.0189898891276545 1.0095593867247854 1.4800975643557526 0.6442333102207033 +3.8416158634635047 1.1988070414523988 3.9722387543221793 2.0725842753120487 3.2547082218415495 +1.5136628107274417 4.0320445957097775 1.6380926749415528 3.763711234011823 3.295527434811427 +4.166705357456376 1.431065143474871 4.582632121451392 1.3079781579733365 4.26697620814498 +4.752446809759505 1.407807268907042 3.778398035675848 1.82920141410131 3.871173094527209 +1.861057377234106 2.6140663443693466 2.9036912733427407 4.6021500974697105 1.8578979740127957 +4.742088756017379 4.870796583081579 3.5072655770643317 4.677692091477918 1.1774820297524395 +2.6294631950251386 1.3281948625290507 2.6572784447466136 3.5163914316484477 1.5592865026737517 +1.5487948088904404 2.6381430306893643 4.287393756736222 1.351858899087524 3.1311410777553665 +1.2174952293971706 4.8762244297365145 1.721158778237288 1.5103538086409016 3.6647971426290855 +2.7991706801403184 2.5290990856815627 4.131584766042371 4.973052781104532 0.8837460531771263 +4.404166930033972 1.0242849177350397 2.254332170041502 1.4640145999209406 3.4710523301591327 +3.8601587819389795 2.1439317876642603 3.170800487027893 1.9497692252122052 2.1062650446248323 +2.691045004017706 2.7622175035792904 4.297045851533886 2.7397817716113146 1.5588896494976596 +3.5031896851003643 2.358542501183953 3.6928405907891015 4.340947975619136 1.3153936133032564 +2.2760069600053185 1.8302284906382646 4.059067355922788 1.4777418442368924 2.619534279415271 +2.3252462339482043 2.1016279731220013 2.2580136944215785 2.1552428310835117 0.24610358982791644 +4.770646431287831 3.361160058055172 3.2273077892807276 4.461355143680425 1.8733725495024869 +4.589169864083617 1.629971860536512 3.053692913309441 2.221185571147903 3.074072429034495 +2.1008884234404346 4.1129785920384005 1.8673514388876677 3.2302300153502492 2.430214982413956 +3.809135214543302 1.9785650344082022 1.1842879642971416 3.0561134490838966 2.618151605598313 +2.2244429780306914 2.7449727877414154 4.606226179218359 2.5350418090515237 2.135592652642557 +1.836861850484107 3.166879929514039 4.891493720521446 3.4615124655535903 1.9528938732317005 +3.20630799732299 2.3952967273205164 4.177856537051221 1.742461393751762 2.5668830873410684 +2.4075675652945794 2.613450121104325 4.027690292675844 1.575485984412213 2.4608318910997284 +1.7641287361270708 3.8710586987293394 2.2384909973272444 1.838893277945448 2.144488797976415 +2.3628930438937195 4.102284871119219 3.5300540642274005 1.850887239529683 2.4176610915891987 +1.2816803704786492 3.74061469753005 3.043040648517055 4.805777053121991 3.0254913083450203 +3.6610275962944825 2.7134371179292756 2.845822735321595 1.270905515915386 1.8380130474701715 +1.0409216624738633 2.024144960449777 4.132124930042465 3.2787141735054863 1.3019362400116419 +2.6198937455913436 4.44756628484131 3.936489327400312 2.611166615661446 2.2576242382157576 +4.374274447140101 2.142000890073219 3.9105903890686036 2.6275526739863673 2.5747293084717615 +2.5091349332240807 2.430939169685194 1.3022465297223813 2.085004504981988 0.7866540696315938 +1.5671794683877835 3.706692081854752 1.812235059273854 1.5238995987801287 2.158854224111111 +1.6929998838523095 1.5555726757750166 3.4063923483248413 2.2079250946994113 1.2063208509896528 +3.924853817752532 2.848664469437185 3.144786013849768 3.393809761877706 1.1046249773155112 +1.0755485561804092 2.6453529830360925 4.756861434001191 1.9391972430476274 3.2254484078276158 +4.539805229920683 3.8758508333302077 4.855609272688394 3.2538294875551137 1.7339359621431927 +2.060151544191569 2.459821922885547 3.577980271660614 1.6553250726748852 1.9637564578613715 +3.6292641864704134 3.3172402844427635 1.1920647527589847 2.3529099625182996 1.2020484667673381 +3.590991291629155 3.447672969887985 4.235035887462795 4.9674917550148905 0.7463455896956843 +1.5212847983072577 4.294484941887776 4.615375214853586 2.246876055348629 3.646975089705261 +3.7296158820249397 1.966825420845188 2.786158004018425 3.243484991383469 1.8211474908416145 +4.455318610260359 1.929269782273114 2.8694794840787963 2.1570864556426783 2.624581206276559 +1.0540039896200053 2.4899097226451943 3.3216675548796726 4.2994567970758135 1.737209566025098 +4.857219559719887 2.2526454376127676 3.5771532480280923 2.79804313030485 2.7186060643441516 +3.1271608237141377 2.34326189983753 4.447044779015139 1.4113648952375932 3.135259140745236 +4.015214192544898 4.770015589723006 3.0405513835833657 4.275859880443091 1.4476574980277137 +2.5268884621585412 3.8683691377900202 2.179573826843 4.545688105057009 2.719938819286362 +2.2838818660402773 4.396134465323713 2.2809307102473726 4.834682462587715 3.31410003707809 +3.068112017566744 3.095513429010415 2.0561341989218356 3.3352925073964363 1.279451763642814 +2.0147367919826826 2.6551810390448605 3.9311280208205694 2.158520439082022 1.8847563429876077 +4.041444602678585 3.301759557327715 2.809559960419982 1.898234672887932 1.173732399659774 +4.650152395136111 3.292527188323682 1.7865041851655517 2.0212797974755987 1.3777756676280966 +1.271601946482852 1.7134988463673486 4.811906476701149 3.2876210058198914 1.5870472793421206 +4.442609400411125 2.9127958418038338 1.102974287107752 2.282882958964118 1.9319715313690722 +4.308189117422156 3.338060815282805 2.181759659184847 3.184054183424831 1.3948990056392025 +4.101470702308001 4.732614673271929 1.8948718680594783 3.9733539190663865 2.1721948228559054 +3.118248425743036 3.1853843379237476 2.5389745061414812 2.179966021761585 0.36523187506170185 +2.0817971645388544 3.610547419386541 4.77572498261943 1.9268831037309915 3.2331064616875014 +1.513539527522327 1.60691487012758 3.718973244271493 3.882732536281856 0.18851010669559282 +3.4201973924513394 3.2458670480910787 3.2941628657576527 3.4378780253587014 0.22593166237586518 +4.910690121406167 3.928679865285574 1.9382185653667863 1.9042437818269233 0.9825977961722753 +2.5181165985067118 3.65698175554991 1.635573118893089 4.352142849047992 2.9456348967108785 +3.895490244049804 1.1174232339500136 3.1692874745796833 1.1263257932169601 3.4483834972521827 +3.9633409803823927 3.838455315393163 3.7846667841022397 4.768814507686534 0.9920399040139212 +1.5397844320583882 3.442447148680728 2.0195841218578376 1.3783220736514474 2.007820317581869 +4.504310562466612 1.4647239919664332 4.679075243673422 3.9060939586401253 3.136333302851718 +3.242796584202924 1.233981560777154 4.565537856177207 3.025922313450675 2.5309590707370577 +1.8791189272407554 3.169373845053847 2.8013020875441645 1.2484074459792844 2.018969915759466 +4.2649809239760685 1.1891765610888854 1.4740414682739575 1.4757424953526055 3.0758048332507952 +1.3508298706913626 2.910376788839101 4.531797015510711 4.8150972248865855 1.5850695879161023 +2.138730665877798 1.2634119715571073 2.4967401788459678 4.853272255242729 2.513846901407106 +3.56116764126102 3.3378833361624385 3.6471494403765283 4.23401713192321 0.6279088853366286 +4.6367653419896895 1.2991838261533943 4.898562836782462 4.104512570302774 3.4307384337119853 +1.3995024827102962 4.617353710315694 2.3505233050292915 2.1493209614419913 3.224135373408906 +2.2518954761441656 1.6551720273554915 2.126233363356126 2.946932865181641 1.014705152559549 +2.5150643374667854 3.9691499966166672 4.391292975543831 4.761340924576169 1.5004334669449315 +4.303162029498111 2.2264074382634416 2.6069438471591906 1.0071120660770427 2.6215208105172 +3.6045304303154633 2.7423085478966422 3.498166170304231 3.9530172444024774 0.9748415636041498 +1.0152594051694552 3.214680409056856 4.23281453356384 1.1672521245784515 3.7729465455695705 +1.4840680027442135 3.7527803187338837 3.0954792311287678 2.777290006051068 2.290916837355464 +3.996433970088742 1.1921293619701498 2.916760597715363 2.7437288029141302 2.809637759058506 +3.46706673927019 3.2676702252702303 3.345134828630879 2.6434105566478077 0.7295038887391262 +2.548110307657353 4.787991837822056 1.7245827057184169 4.779991435373115 3.7884814602190033 +2.1345025730205855 2.2727861623361227 3.9728123618956133 2.141475648123812 1.8365501654685308 +2.5740191878645486 1.705537218903053 1.96574565076551 1.212227985816532 1.1498042449919015 +2.7318816157764796 2.0221183705808343 3.937439266284464 3.6306572788564666 0.773226391195312 +2.6723008980493805 4.961105090758567 2.3851493083687014 3.147509179932518 2.4124297308593157 +4.184460062405427 3.1617780486353833 2.3238079162094976 4.2115978370965745 2.1470047244222794 +1.0100281593484923 4.5895804504699385 4.953839158018068 2.2745505542704185 4.4712170632887895 +4.692492720783712 3.554615732369808 3.7713968949402408 2.053270375497619 2.0607578163321167 +1.288074074334908 3.6672167724921536 4.339654929420629 2.6010160206878092 2.9467244922378795 +3.5011603136186387 4.637917847812421 3.494149259215322 2.1922189122298557 1.7283634802749173 +3.307694594843747 4.693070590050089 1.6137241213771207 2.8948646330857284 1.886951949264993 +2.9238489026917502 2.710370915887592 3.4216550003107895 3.0303781874717197 0.445724573156402 +1.509353450881652 4.391529439753066 1.2365347163360303 1.5378541690974497 2.897884028638716 +4.288105079829295 3.9879729041128744 1.2788202847698562 3.3508175576086874 2.093621747487312 +3.3728557742078484 2.968573527758774 1.799914440916588 2.361971451530862 0.6923526687856155 +3.2009374622810216 4.919374040653112 4.315514811171315 2.9451852401108267 2.1979143311808134 +3.915043900054271 1.1928453982823584 3.069116877965129 3.0931795794052896 2.722304850058098 +1.096676342359249 4.607068362127563 1.8029884822086029 2.477628887500495 3.574631702554191 +1.4729232015700613 2.0990019568999707 2.5317182133784932 3.900934879098824 1.5055659685187321 +2.253896488330171 1.2380475058926725 2.261121512738682 4.602885134505007 2.55260768927531 +1.6063464212039253 4.643932850475394 1.8872371066179885 2.3359743575150147 3.0705531155863124 +2.2229874549284108 3.3087292461748614 2.093934342110483 3.3230800652943744 1.6400105018201263 +1.9041111876692116 1.1379914982094053 4.637432510693028 1.8599709961351376 2.881185839793782 +4.671621511892625 1.4079091438811275 2.42930590774233 1.822436693014748 3.31965490147625 +2.1284192496342205 4.989676494652793 1.0914144300823065 4.182720412347349 4.2122399858221415 +1.7393284058535405 2.681090354759483 3.7013162679080436 1.9293307822982162 2.006700807200469 +1.4618408463424708 1.6808187420496754 3.700007524322731 2.9630948616265766 0.768759774734794 +3.800459533515544 2.4475276769159624 3.28065211334797 4.889689415245742 2.1022430039128337 +4.152634495711254 1.1632123052181753 2.610639669001227 2.577010262555694 2.9896113409589407 +1.3567967659042037 2.8829185669531765 4.264003105608275 1.2736497445344281 3.357269869361504 +4.7203554160074095 3.3787265260784913 3.332702287946076 1.4065019336356066 2.347384903086343 +1.8183898400948886 1.6759637127494544 3.654725304838221 3.7072510247191897 0.15180300721537707 +1.264759811990491 2.8668309985277283 2.5726889508077644 1.5784961922800314 1.8854843748601617 +3.9413650423643163 2.389237168306806 3.3256869368944257 2.2209764544390254 1.905121042735377 +1.4559129091990597 4.148229950349874 3.40830497640584 4.105461234017641 2.7811145063801974 +2.243290287967123 3.012321790052924 3.4472433372399323 2.5082061026302305 1.2137546618587214 +3.7371167780190118 2.9035513328835223 4.188427270790219 1.5758125160642633 2.742368904421083 +3.1727360989277718 1.4926056028882395 2.6723311477981015 1.71762725751563 1.9324331817277745 +1.4399158109890626 2.0217475911250324 4.040598586707626 3.612878292267856 0.7221307850049289 +3.6246249603990215 1.3324107137864778 3.3310895457614347 1.7067908637051539 2.8093757956000265 +4.763454656205549 1.4256266828908544 1.727308194931374 2.172642605152961 3.3674052794948053 +3.6795261751716337 4.014571842721546 1.3418033930138313 4.088624562314008 2.7671794548708903 +3.4342953215309167 4.580223803187063 3.1126695866691563 3.3323261209671586 1.1667909316285288 +3.021487731387798 3.1788428585565924 1.4648588827463547 4.7956648984488055 3.334520857677448 +2.7042941059054066 4.436983246478788 1.2466305055797982 3.0510724624505094 2.501643946203441 +3.4461759143586406 3.3647230338157894 4.083710694472927 2.659673641795657 1.4263646445234452 +3.2060117053541175 1.9384646137028607 4.078152735313571 2.941963340528582 1.7022344052378449 +4.4336239298301034 3.82152253308587 3.4648973554492004 1.009127218412019 2.5309040056588197 +4.844249741821116 3.675227713995186 3.756082677540745 2.03779358009964 2.078251650769756 +3.3224252640019425 2.3365005881702015 2.2975257363003534 1.445929222394764 1.302790884566697 +1.3003939237387305 3.9328176224677907 3.798143901465146 3.331846605590827 2.6734037663192756 +2.282480395860658 3.276439050016092 2.4695157393325373 1.0833905821120604 1.705666074485265 +2.012884264408535 3.2035768030534646 2.3944597369403713 4.299609270310956 2.2466293566333686 +3.443457166842346 2.762903033345714 1.138721684991828 3.6724699241548238 2.62355370977629 +1.9145438895834692 3.372477057762302 3.333880668313094 2.9696590219469554 1.502739674913 +1.1713809574079486 2.0326236471429286 3.565989972897331 1.7657230304097005 1.9956703221814232 +4.323848048518432 2.632760689541231 3.4923862232432157 1.6291273339042958 2.5162492214391223 +1.2313848747649359 4.97567273284111 1.8298134080402528 3.524054911648316 4.109762260360662 +3.782792181537733 4.951137338217642 4.533577661731087 1.4331784024939211 3.313231952613002 +2.728239270318199 3.04293947011704 4.708564084768667 3.59629595695412 1.1559310549965804 +3.3525878652565204 2.578510499612805 1.9147794347901703 4.19826578847912 2.4111212527547368 +2.6708688282619986 2.521122205612124 4.211957950706487 3.789109867572711 0.44858059744593576 +1.4415724749043015 4.045587733862234 3.1983482366620715 3.6384630485791996 2.640946140411538 +4.9423736606000865 1.172800432923088 3.2002923856724035 1.7723317100557412 4.030974325138623 +4.088577816097562 1.2249799060129987 1.1930262778804255 2.4964773568449052 3.1462958706857727 +1.092581988801295 3.609025698430508 3.482847751327467 4.966841797724115 2.921425555011308 +3.192905377165362 1.2363797661964484 4.905097317413542 3.314348755782116 2.521601366733 +4.608592359441117 1.0970345425148564 2.6929054385686086 1.302973503385667 3.7766319765178764 +1.378424510019653 1.9218749770418042 1.074242910405013 1.1421247081581667 0.5476735784870348 +2.496062730137458 2.1987836324383787 3.9956475469299186 3.9178627866992155 0.30728704960171455 +1.26265802118635 1.8857231358778797 2.7508073068514682 2.7452721655957557 0.6230897005522477 +2.5377962432978394 4.450820747821749 1.3699583415143222 2.597806095257982 2.273163623957215 +3.801508927596458 1.9381300540139712 1.525284431459033 1.085227455791165 1.914635988470782 +2.555307589771681 3.4562249721861287 2.7548062776490543 3.1312905976059753 0.9764182367766007 +2.7545162574033326 2.1188263226099067 1.8565274104787135 2.3479549617967868 0.8034940767623291 +4.139055460869344 1.343925223131933 3.658453206073898 3.7571826219290063 2.7968733513459436 +4.974183449950191 1.162568544508908 4.881710120411277 1.7895192636746087 4.908161823113416 +2.7152900545578382 2.7143870611516934 4.300325339589208 3.02044570858298 1.279879949550633 +2.1183365952049806 3.238939207168414 3.6701626317585774 3.2143964701693695 1.209740884648043 +2.6301936901308767 2.713121875966525 1.7329207754074827 1.4447269758726757 0.2998878958816117 +4.11359219550626 1.4669263949288673 1.8170715800957593 4.317675500166196 3.641134414577084 +4.8932348091686535 4.046029929602604 4.145011975316553 3.91998359746359 0.876580788518469 +1.552172017650249 4.954872767406933 3.365124670065161 1.6055552838895264 3.830725364361324 +4.696634790920789 2.008650940284925 1.1054029375672467 2.0549508902571976 2.8507715614789064 +1.2083040036629944 2.2466964536601384 1.1935615791724392 2.8729170272367317 1.974460331623376 +4.362050279806942 2.495212405119382 2.62058345027091 1.363888170350445 2.250414778866852 +4.696643903152805 4.251953204155107 4.737906426395493 1.1103208992889697 3.6547402882076003 +1.8353714254081548 1.5427143107502572 2.959723434564278 3.6194168912068814 0.7216949795425709 +2.6024636913820847 2.4504590816884706 4.457072369521418 4.990384627683294 0.5545514999292922 +4.299657393871851 1.2996846476123758 3.6381274897484825 1.1334595562384369 3.9080939005419384 +2.377766156626563 4.428696010592249 2.893095921850638 4.116567864833104 2.38813669230909 +3.8512182908231862 1.0062320234981668 1.0375232362784148 3.6904529215771618 3.889984932670981 +4.789435180978199 4.909609846605051 1.3088282453345679 1.1966738015727492 0.1643793463731031 +2.7763694304487503 1.2451722878241145 3.9433461256378752 4.313637609181094 1.5753350349581154 +1.4754912661785151 3.3978809251789155 4.002753265113055 4.337945634376198 1.9513933292506447 +1.007678405923834 3.9273827104321652 3.766201777371164 2.6822317397097613 3.114428401538899 +4.385971098012 4.0886426344423965 3.5406366723360407 2.120109206667543 1.4513106131932014 +2.4048517846406674 4.538996442284233 2.205282998923866 4.024120567240294 2.8040584016150216 +1.4731513274783632 3.249761125459083 1.0259993278142092 3.394071949915705 2.960424009804634 +2.749442538465857 2.846857037007726 4.181256899992301 2.1477194871729024 2.035869345970507 +2.161310889757511 1.7865633148430495 3.5778505715291584 4.405653992614545 0.9086771972845694 +3.544594975465865 2.6415147263357417 1.6243992117007524 4.102071597637397 2.637122368871401 +2.1267613166747616 3.4820131569100026 2.1779886137792066 4.102772380280264 2.354039102956237 +1.5586014372693313 1.0585667986071767 3.3092199546103234 2.1165232086839665 1.2932749775686965 +3.89074384502815 4.968551450434024 2.724736567699936 1.4879690172619222 1.6405069972685848 +4.997941757918312 2.148037934133928 3.782153583058686 2.8658069978652017 2.9936003188496314 +3.7324560328303398 1.209099294607645 4.542698332849351 4.144071683661487 2.554649180176531 +2.7640386193016413 1.3524629579987923 1.9623941390010775 1.5198612781196852 1.4793178091750416 +4.137045691558377 1.8914822608948163 4.594326087142814 3.204146987629031 2.6410515045826832 +4.961007189990396 4.3284575877566525 4.249534483585034 4.755586956783883 0.8100667286814955 +3.712644100167222 1.800256637698085 4.105269388409763 1.8897903518406336 2.9267000475085285 +4.613644916303215 1.0013531811154652 4.1955186955741635 1.324881108189191 4.6140233785941245 +2.4825619011076423 3.214301015943757 1.9787525273926287 1.1195099833500688 1.1286008513526256 +4.3970970486503145 3.4998473882220082 4.53627907144617 2.965095100082859 1.8093302697428397 +4.7837981676130825 1.6399008344924186 1.750537177576986 3.783062541080824 3.7436946716431923 +2.2128501643597156 2.3976938051789802 2.4279451983170395 2.017718868316949 0.4499475673638702 +1.6877779017276895 3.6853151503512085 2.050559782813273 4.376597311188329 3.0660407112508397 +4.249668004724963 2.330791065713592 3.9476649447854357 2.9734380668348277 2.1520238652930965 +2.133687094177443 4.492235355736372 1.7699940453155443 4.913517284073804 3.929947614754663 +2.557153158558902 2.080557531452508 1.318719574007658 3.933291284980643 2.6576547224192124 +4.915192851219057 1.2476556347042722 1.8454236222689233 1.5471988308111584 3.67964227347728 +4.701260598496463 2.8910388140368846 1.5990364732185385 3.2499634040898218 2.449992375499992 +4.636330369383684 1.9673182621697953 1.6595241779160528 1.2341393458324803 2.702698259854601 +2.9328834002674284 2.726624137375511 3.0724764824904747 4.1685030510081775 1.1152654941427211 +3.7545555470140513 3.905388411773278 3.235167827747058 2.789595752401162 0.47040942530897917 +2.154478407933491 3.7783690666205008 3.633770180968431 2.0431420505834943 2.2731297192511497 +2.366853142930052 1.0281203051495513 4.1237671813962145 1.0304101900188094 3.3706176121083957 +1.7928536037304084 1.765876784203023 1.9491257747332376 3.6757889886243054 1.7268739395209032 +2.5861904168110974 1.0044877253992208 3.480502385693721 1.1259050667686692 2.836531674123985 +4.003157372260597 3.4356565999486977 4.103778405160744 4.307130120733055 0.6028341785273993 +4.801604292584584 2.991593219052991 4.5828158450093905 1.905228971073964 3.2319671337713634 +3.805488101312133 4.562805201146384 4.863943749755135 4.127739306586765 1.0561847242988374 +3.3611105191779895 4.855722102093917 3.963896757904563 4.010744498143324 1.4953456104031382 +4.032151003081084 3.5892359472380013 2.806762821645318 3.2662455905765992 0.6381991551524007 +3.6818082788609585 2.540181453427735 3.4092002029256663 3.507287773931962 1.1458328761798795 +1.0653097334625987 4.148404837243484 4.105734232994694 2.9209714280102195 3.3028984730131117 +1.2399024352793218 2.121528130051941 2.347142483713647 4.357799906065457 2.1954514651300605 +1.2629089374595628 2.85332101974637 1.9632475720955682 1.4549451808189988 1.669665209693649 +4.52518054435847 3.725611291466996 1.002482876894327 4.9685480174045065 4.045860067889083 +2.0637689338277387 2.0923963074554583 1.7896480621701252 4.110783197116106 2.3213116639524123 +4.090162035422 4.144526916272481 3.962423534902695 4.573779384174717 0.6137682907327507 +1.9940131592045942 1.8848500429198074 2.5358515529319625 1.3862551464249901 1.1547677185524152 +4.334709278684597 3.118536938767493 3.2815595084333253 2.2586038465124005 1.589186410285314 +4.670361118026463 3.759179431430321 3.942749505728395 4.787493115190371 1.2425151233345357 +1.4569298923164995 4.957058284754053 4.829286310425422 4.813546352813894 3.5001637832840204 +2.4028852438241075 2.7836224046766223 3.7790700190834867 1.37357498930507 2.4354398214578614 +1.0239847387318597 3.12038394626892 2.840357245898909 2.8209288987837784 2.0964892315568044 +1.511515243027438 2.9706651698376887 1.6539607158224987 4.109041966777376 2.855966116343211 +1.4953070869151355 2.054616136188642 3.5036721546335388 1.2607701278649923 2.3115873581332993 +3.1930393186001247 4.110156290414248 1.5302917524321873 1.4907976150587636 0.9179669530415453 +3.241636635888444 1.178069434761961 2.6798648612258176 2.6446653194704877 2.0638673894668647 +4.23385263674054 3.795803127272406 4.493892864154555 2.0218231229068704 2.5105808448121456 +1.5261802706659724 4.8959564169694225 2.2456491829276257 3.531679136762313 3.6068357764605503 +3.546736948030274 4.171118967125143 2.883876799028138 4.682383127992782 1.9038061668917 +4.032523800824732 3.5210734931230263 3.607981336370022 2.196403862969736 1.5013768283343474 +3.3881656251389494 4.838363324223184 4.644785954752811 1.9500756121916702 3.060153132889788 +1.8770446656065332 2.7486436493374264 2.4766941499234707 1.6725393788361416 1.1858961524110114 +1.397529332422137 1.9658833254639503 4.818102561248065 1.3413487993478341 3.5229026359373004 +3.8420789639353865 2.2546345156288723 1.3369817374665702 1.5664868802510146 1.6039490288109786 +1.3330392432413922 1.5028895851617858 4.441335229485807 3.6976476798230977 0.7628370141608226 +3.9568722598401975 3.3492610539888426 3.8973234889983854 4.862601796829901 1.1405935249010546 +2.7537659265525547 1.3799455655961599 3.8456340361649173 4.483027305469715 1.5144809552891108 +3.9725605361357768 2.132179851576494 3.5398430890237425 3.3056889373095286 1.8552167611532344 +4.52250949425988 2.7439695032432385 4.912597363042131 4.537970242399391 1.817567049428038 +1.7347799159359671 4.781750737369202 4.247299965309336 3.27854332151698 3.197267680623152 +1.221896055524084 1.4955790957529524 2.3291796616301204 3.1824922156747877 0.8961276256198945 +2.3561858526674677 2.840912108471418 3.237791949606624 3.1820344069027167 0.48792258262361116 +4.229771043696273 2.561035336295815 3.1721684900417864 2.1412886595083704 1.9614770164735325 +2.6880754710989754 3.2945713230591345 3.213094873324209 4.9142204907120774 1.8060081906176773 +4.1999021217589885 1.6623881670189777 1.854011662762614 3.0028251921621227 2.785453211926498 +4.900589599138215 3.7898004695974543 3.3342050026970673 4.469818720589322 1.588543674744572 +2.4746528968973203 2.5148768741736287 2.420042936672309 4.866616707085164 2.446904408108355 +2.6345218273407522 2.1054223993838805 1.8144515118610793 3.4924386139519785 1.7594280091688046 +1.3561176319074244 3.141766333528866 3.679044681597935 4.256594352456961 1.8767271799363137 +2.9237147993627945 1.8954602059624617 2.254216047698361 4.399726154720535 2.3791849714099964 +1.628398561481185 3.1557256213496765 2.878156837827123 1.0923614549260412 2.3498495903775103 +3.5352880194066714 2.2256068328068763 3.391494226184375 2.0384689741396547 1.8830672168576792 +2.0102797630990077 1.0502135400370407 1.0064606098941464 1.860239076370453 1.2847820136050725 +3.5021115866740287 4.999420882693888 2.438068036573397 1.8377022156996112 1.61318760434766 +3.376145004963325 4.488427830259985 1.8000342054772105 4.9777377011840365 3.366745103223186 +2.3176553660862305 2.8078445306383077 3.0056514821172726 4.09525174336275 1.194786234583608 +3.5955427773170454 1.8356340698904035 1.874578844052452 1.8275223061632797 1.7605376952040048 +1.4563922800979214 2.502011330849005 3.6225172717290834 2.2868091465296168 1.6963005025694802 +3.8389925699422065 4.987576475559022 4.08775889150942 2.428110498737635 2.0183353972697273 +2.5850406733330624 1.966665663524036 2.8236751437651537 2.886875935082664 0.6215963262274585 +3.8917612368113725 1.815060888185993 4.350370830685931 2.9591678113621196 2.4996260078172616 +2.192819471314842 2.5303323753714047 1.9455382239181818 2.7558467702812686 0.8777897816184427 +2.6981003436500117 2.5744328175787854 4.902063654401938 1.6742795432683124 3.2301523067947224 +4.3493155473777945 3.824809785713096 3.7134385625527924 2.1443316479130723 1.6544493958987223 +1.875268984037639 2.066524912330867 4.935792850242027 4.044512827147347 0.911569476054874 +4.422678530569412 2.186713019172593 3.2391156051035748 4.770902805436641 2.7103346279122533 +4.596623587905212 2.3848470466940834 2.8347050556399935 3.4344683871058552 2.2916525744586353 +1.5733630492679502 4.7420062271101635 2.6341531674242167 2.65059461053751 3.1686858332024097 +4.3985652895422485 2.881543674705199 3.360344519519915 1.9561871209488513 2.0671266482353388 +4.433081489048622 4.160098046762014 4.681857659869447 2.5273285515151054 2.17175404650453 +4.685031435178327 3.6263034525767646 4.824705078000234 4.644011436519751 1.0740368397848608 +3.0905375251543377 3.6046379391099967 1.631081574631581 4.9000647291745905 3.309161540377765 +3.21461706666663 3.733071900836859 4.70228452823528 2.227985096908031 2.5280334433984115 +2.618964281238362 1.4264961864734356 2.428909621001574 3.6250245047455816 1.6889851900316455 +1.0577451677638603 4.069139435532786 1.785525683189634 2.900002446422062 3.2110051217238147 +3.179640632279545 4.030108481832183 1.7302945127278555 1.4383576772278577 0.8991788915696596 +2.860844434482046 1.5143360049780017 1.4717106563318505 4.223688382047673 3.0637340539873037 +4.749488063986888 4.583633845447029 2.636568307563139 1.2378964357903524 1.4084710244431222 +4.9812916921701405 4.874241098254622 4.988434187647035 4.23672841146926 0.7592900655195589 +2.0536371771516677 1.130267997336167 4.055246191893611 4.489774798739999 1.0205026959303019 +2.75008717237404 3.6504464157299754 2.438067394386704 3.2520096925379893 1.213733426999631 +2.2885172508979714 4.185524600878088 1.3822097943594098 3.4086553165249724 2.775809492775656 +4.190880667907022 2.0159483557218874 2.7052993062612978 2.4463281866976403 2.1902960081584935 +3.713908697221145 2.40007244186295 2.871925269324698 3.438908456789583 1.430956198058307 +2.3761497657467316 3.3742346024675496 4.234228073755364 2.3467655182383353 2.1351084843096135 +3.5688214824302107 1.2496192190600555 1.7154566872414607 4.200511028186589 3.3991461009894053 +2.350858213751813 2.129740544241234 4.866480504209843 3.0070075739597435 1.8725737908297984 +2.7338424654675557 4.8812806985977915 2.7082110450910526 2.838577290863482 2.151391717736755 +3.3835102186517743 4.565279158823456 3.7919748063302205 1.3603028066626286 2.7036284030764817 +2.29412303457946 1.3865657523745494 2.381538508485462 2.3156146850518344 0.9099484441325629 +3.3064215258552285 2.3042871885382574 4.758624393855282 2.743552141912817 2.250508700400468 +2.4301789180189326 1.8643147527941593 1.4102506884304953 2.999599130154907 1.6870775686664041 +4.525150049352396 2.796145455219842 2.4151071129729265 3.298452365905165 1.9415858781958109 +1.7634921231136018 4.8607807292279395 4.772991102123159 2.143399076483007 4.06299777638088 +3.747814566111496 1.1484007247325292 3.6211850842371494 3.644165189841239 2.5995154171510757 +2.364881552012766 4.957402244129263 3.262372101780727 3.04811696679026 2.601359029799997 +2.488222346796359 1.6116209641422907 1.9394648576789812 1.6071559747497584 0.9374748944610156 +4.4887100233561625 2.6147161544805853 2.8413727623725373 3.8861797779511917 2.1455709544048243 +3.401940652572395 3.2290445084267883 4.519548076667407 1.7643079005195008 2.7606596140994935 +2.6614857414322124 1.8638481590859755 1.5770916492771239 3.3096798523441016 1.9073771504812593 +1.0063537212594116 1.6887521678773751 4.737638501747873 1.0019203466114215 3.7975331169803774 +1.6762277398415062 4.3678340334512775 3.3401065171631363 3.991961216989109 2.7694149182607037 +3.500401584538498 2.6248761478528024 2.770015517322171 4.472952751446172 1.9148211440365863 +4.278725392421935 2.702910260669455 1.9806888378473166 3.4010795326637115 2.1214860488301794 +4.784754522598653 1.2258361293441302 4.511732133409195 1.2386330085300363 4.8351916209319015 +4.279861614536861 3.457747443220379 1.8746206184031786 3.1811707254200243 1.5436790122383335 +4.121382454776999 2.4488665746649976 4.303105364275994 3.618858251681379 1.8070704137694495 +4.9580289210111 4.525196296560884 1.3193399402228794 1.3716444124609297 0.43598146589569947 +1.9671979192624494 1.9036143500551428 3.3214503004827973 2.9361799414788163 0.39048190713552494 +4.0359978811710135 4.895741635852395 3.228665594031427 4.650990842113415 1.6619772667052721 +2.631047463606611 3.495678669708225 2.3115722874567988 1.1482278706609659 1.4494679557185004 +1.0949220277315876 1.4795518837789765 2.212252709324626 2.0947778609286973 0.40216969822287896 +2.858965316174521 2.827132353024677 1.0317566840317505 1.5010453428259924 0.47036707241876297 +4.402403011695243 1.8860994923339018 2.598126999284516 3.7295999957229937 2.75898795633829 +2.144910142170782 4.657331670503904 1.6904273271500134 4.142698654578465 3.5108256293013818 +4.013637944283567 3.8461899958858443 4.880237825892061 2.6405247220835375 2.2459638471698993 +1.229954659238997 3.3422673603981043 1.8333782019368292 4.053609206631778 3.0645212777343915 +4.6495065458252824 3.581136141390124 3.7461290358967814 4.232263180043061 1.1737724341531368 +3.4529949441057646 3.471353538275983 2.9625990286745494 2.0535216309251947 0.9092627524971235 +2.521645393043179 2.478418549981443 1.5027019149920076 3.4728277812821964 1.970600032727786 +1.434284018387085 4.843568645329077 2.7565789365433764 1.32475183983665 3.6977493833907413 +3.737132975054007 1.9790316405065345 4.207701897108278 3.9657872998612693 1.7746670039471595 +3.091155521806117 3.13748839524753 1.5499384118618242 4.557382442255504 3.00780091281187 +3.9144325872351886 4.636787213292809 3.613746683219756 1.3018202513528734 2.422147813852734 +2.834050697800553 4.526302770934183 4.792605931762379 3.2049646992566614 2.3204141359199966 +4.226584666613713 4.715603655083886 4.559659408828237 3.9530945406889337 0.779140879652224 +4.069792265405041 3.338521021247621 4.663416041446827 3.0718813665016365 1.7514965755274643 +3.131045890059192 1.3574453540358649 2.3285714959770236 1.972726442482787 1.8089457049559419 +2.9954694933807646 2.6551166031576448 1.023839365877842 4.216307699931473 3.210559788232949 +1.6928776954778875 2.850239950945953 2.5564703692122217 3.9137123037656996 1.783702065730876 +4.102053015271457 3.7830917916017635 1.87927682848396 1.5311115304181317 0.4721814661569587 +1.564783093513899 1.292208908937019 4.270659195144297 3.818081586381572 0.5283210937026247 +4.406155776625821 3.460161425317491 1.898281419995934 4.78056126070931 3.0335527674477643 +1.0072074967845186 3.535097688814246 3.5459371286743253 2.5294363090885157 2.7246105665174825 +4.797613290896642 2.8331595900609785 2.352651534918485 2.3101507511318222 1.964913397417152 +2.898882133174442 2.6067078926172735 4.057336615642893 4.819727625411562 0.8164593306596772 +2.5813776990409605 1.7201918993686003 1.164303473813391 3.064978663097958 2.0866737063372525 +4.331186075848269 4.297000914817043 3.2419507382139776 4.063739026903299 0.8224990070885524 +1.2487512192483363 4.0720412855684 2.569301692898147 3.9636449855844944 3.1488347077039394 +4.351287430778006 4.807062988247056 2.176859961457055 1.6656545785435362 0.6848812322629235 +2.3539501292341516 4.352755152082056 2.4616328012817386 4.943418150734239 3.186609489742833 +2.3107728786407984 4.582212821750066 4.765813271972511 2.5556994002421574 3.1692337782446987 +4.309853968514009 1.9718007040626615 1.8017140587982254 4.077355137834211 3.2626730433814033 +2.1930695172264483 4.370607415709598 2.596171765844891 4.789385363712631 3.090607898974305 +4.391430886103587 4.75176307915582 3.7388181773287665 4.8878498319173564 1.204206391195639 +4.768546562726576 3.3560652629135 2.4295770482603998 2.198653947484006 1.431233349525444 +3.3917770994947016 4.714843441810092 1.3557914631369172 1.168485713522688 1.3362589531997058 +1.3886617229641591 4.656119045396997 1.2704837230292338 2.1851078446863115 3.393053880774213 +1.5462145673502676 1.4315591348940027 3.745682331625971 1.4231897002966285 2.3253210296152287 +4.585106097038076 2.022388659809941 3.298121017876765 4.712338700932765 2.9270347312837646 +1.9710261235664168 4.237162874261933 4.023107531626219 3.930089888436045 2.2680449851794133 +4.844681642308203 3.6634976257605505 2.246071108192413 3.8805499980479214 2.01661025543632 +4.573672038168652 2.95367892523832 3.4167158819285444 4.767914246367852 2.10952949872837 +1.930233536889399 2.452080819089345 2.589293453896865 3.6449612284752515 1.1776073353298853 +3.31134040618395 2.8749925295419305 1.6508860815851634 4.464048842071643 2.8468024494927473 +3.2428299070527036 1.0604821998590754 3.7853883534455037 2.0350520094770754 2.797555867558332 +4.503456540318959 2.3458811213647586 2.2009208137208636 1.7844561294162986 2.197401766120228 +4.623208460002134 1.672851437633081 1.7819813966964273 1.3481745655874358 2.9820789604165765 +3.6000967681989553 4.021211021704238 1.494896154871605 4.321111485914521 2.857416720033557 +4.800160301419148 4.442517232190921 3.817512615527372 2.0900473414770753 1.7640988742178407 +2.282869681021865 1.4413352120289624 4.420055422914404 2.2466846067407746 2.3306052791278047 +1.5444113414300005 1.7128717964095777 1.419359557237898 1.8864696409831012 0.49655891415659514 +3.941848540547667 4.161356734714527 4.550863095127376 1.2672914409702387 3.2909005842308017 +3.6522526705750016 2.224429278494667 2.0191084164260893 3.078743573571741 1.7780625144327413 +1.0993402145623792 4.329016654989884 3.392865402772795 4.247293416012998 3.340786904258049 +4.370262399866073 3.5165883389331443 1.644493527340107 2.120145324124814 0.9772430783045936 +3.0600715151106956 4.900586179495337 1.973708064718363 1.6675678077207787 1.8658017276145549 +1.6961099840595275 1.4821093907027092 2.8279619423204734 3.7612079355649746 0.9574676693570315 +3.366713419856532 2.4103584438794052 1.997815353581447 1.5463307599343623 1.0575694674000777 +4.01867055795738 3.4520306477875535 1.8077162098821264 1.6741546938714786 0.5821679022037642 +1.1391328681588648 3.9423740284623103 3.746178913337897 3.700853790609189 2.8036075634028705 +3.2022946955187 2.719461251448802 3.38183963706459 1.0527518508623053 2.378608427326587 +3.282763001267571 1.9140656222981498 1.1575319375274087 4.580248087503323 3.686233627770181 +2.419379587108558 3.443153211971885 3.5978900438535093 3.9827899966309213 1.0937369010021791 +4.617866671432414 2.8865401361625707 1.7059699127258883 1.076882722369152 1.8420755317848432 +4.070556677675185 3.4673745634766218 2.914930819096621 3.8888838455321872 1.1456060232872587 +3.9645745164053614 1.5828353552125076 4.7265722050272885 3.3621283221402867 2.74488406704316 +1.0789909296663915 4.024878034898538 2.1216035937270505 2.0486122894458285 2.946791232387138 +1.543639725378258 3.6206260030149755 1.2594524174978656 1.0594577002601437 2.08659288899733 +2.3996371732711443 3.5238226665015238 3.9484155933301883 3.0782728812954803 1.4215981719518171 +3.7146384946667377 2.965735420530225 4.4601154747953 2.815405570570824 1.8071874511254231 +3.157011947566036 3.0237563438809403 3.3226855348550655 4.537016113881517 1.2216201582620503 +4.7081495341810395 3.694428022148271 3.23828221531896 2.516237808140883 1.244580021491243 +1.8289905317317277 3.8629451754732593 2.815391302789365 3.7267821566793864 2.2288124150210855 +3.414915713894547 2.907669130917845 1.184624637962627 3.3083560750080623 2.183468413473529 +3.8214383477746723 4.077407518816803 1.1959386588696255 4.749350884952942 3.5626196351845345 +3.844207157754903 1.190819319925616 4.8899559182010375 2.1517949410337116 3.8128719562584714 +4.077112562080753 4.549770343357843 4.070178564244129 4.1051599098858995 0.47395049609077367 +2.816357499562799 2.2137381966025442 3.0013204952756167 1.0415329657731647 2.05034562576499 +2.1019542495756887 2.5595508327370706 4.174758630327938 1.6359206893342395 2.5797466394105633 +2.3432782940995653 2.0593940344231445 2.4219724616187435 3.8197551229909092 1.4263192634626667 +1.9804966406922997 3.8104544521484094 3.0211073762810554 2.4386167251146422 1.9204272832902336 +2.814269481488111 1.775273311359458 1.6360803548527878 1.0431454487268366 1.1962795845639929 +3.3276347576324947 4.158583863625909 1.4588500623687448 3.4386600682949617 2.147119949214953 +1.3557698365329416 2.728249950704649 1.4835668490272798 1.078985729521762 1.4308695069981474 +4.186008409545048 1.88687515442814 1.53470269254111 2.622765378633319 2.543598658131951 +1.1947449238190417 1.8648366206635032 2.4231195319734478 4.218543251732476 1.9163948485772018 +1.1245072800273275 2.7307243375443613 4.672326803809953 3.9492810323677574 1.761456335950204 +1.440547276072838 4.443457659191971 3.2447667828291573 4.339457644135679 3.1962194622511 +2.6866678772129076 1.4215154549413023 4.629146820752247 3.1185459900375876 1.970412525674644 +2.3738401647153986 2.7558358381713934 2.1325098633345307 2.566143674767504 0.5778918384585358 +1.5683761744018012 2.928101281594184 4.583305591005692 4.980854950884151 1.4166502252387883 +3.7446510682539156 1.356174024476862 1.7189736766754478 4.535325906674045 3.6927851917039587 +3.2646324941245792 2.8982849474648247 3.3763034093048967 1.747145572603778 1.6698400467794183 +3.1198944994230535 3.047119587613229 1.096329944080547 3.206043880483788 2.110968754208121 +1.8849629618854475 2.7371332262628583 3.4580186485593254 1.9238803131098532 1.7549286571780471 +3.9064036083929023 2.1798243166828106 1.0340775889442346 2.2202680665938765 2.09478492925379 +3.748416838239066 4.829349980042148 2.339677410595849 3.335239794649717 1.469544459208807 +4.196385669089894 2.127351058917736 1.9660094378809192 3.4894108260885615 2.569368795576693 +3.9032379562436406 3.4886805583031317 3.983827859404 2.8201361663376736 1.235328374440893 +2.442989530287118 3.301361073880659 4.243855618749899 4.628485661093315 0.9406072380777514 +4.4333804052891 4.417662992649786 2.7965933552912743 2.954990180890125 0.15917471978887604 +2.88513187989485 4.208365295216945 4.819607439525498 1.0719233760560631 3.9744285766645437 +4.058034861968492 3.400797436392891 3.5312499388962215 4.72740517806932 1.364825406335366 +4.984270033255822 4.661979457307704 4.279066813149537 4.838446527830547 0.6455825900235977 +1.3916048967143961 4.374175465369194 4.131617032997733 2.037627592046435 3.6442446372082835 +3.962000005152918 2.363473450647155 2.606938557315762 3.400973585246783 1.7848750015173283 +2.0469153747761104 3.519371521462797 2.2057375684219616 2.3914799486779685 1.4841251078458892 +3.28965275711236 1.981977355770177 4.135609874326578 2.8995566716930745 1.7994005877002432 +2.3586230131446606 4.264577520926206 1.4945593802856547 4.439907166192726 3.508238327947587 +3.532457285123348 3.666150585345413 1.1808444654981742 1.351198661495621 0.21655126556592494 +4.988562210265373 2.772230434095675 4.304272894989483 3.280743605168362 2.441257616307885 +3.56129649251139 1.1564277810081003 2.3034784837408506 3.600538005116668 2.7323537328755876 +1.9378818065681522 3.9963847835727617 1.4681737716350636 3.5215517287237206 2.907541150352721 +3.233196466526595 1.9485087605752462 3.032245566080297 3.413305043825649 1.3400107564501489 +1.0711939920306661 4.721336886163758 3.7752879317837373 1.7126250471806532 4.192627019317294 +1.2738845116223039 4.820738673203769 2.228768459562499 3.174648340047597 3.6708123340528127 +2.669119220037425 2.004482158535138 2.5613525376371293 2.104020141994021 0.8067808522932727 +2.9140371230237734 2.766085754290928 2.5603532001266416 3.889392654768151 1.3372492211639997 +3.0347623945883684 3.1690681070609643 3.486616465635482 2.8922819281755134 0.6093205780379704 +3.0446258647053557 3.1815981825809723 3.6145852809696155 1.0276513482370655 2.5905575824882403 +1.315609346550891 2.4413695962004267 2.4960065684025032 4.56707025039054 2.3572528321206505 +2.0429102748271615 2.6551052689967483 3.4852617320388726 2.0095883622144375 1.5976215463292 +1.472853444833023 4.7099961622238276 3.541627982026872 2.3442685798743725 3.4514869999290614 +3.5892960982863045 4.148247870196842 1.6751204753137068 3.479264301760237 1.8887461528291878 +2.9117245729561656 1.5061499173149269 3.979253194226273 2.7603542696295693 1.86047163401219 +3.294855767782602 3.8509602804311966 4.493511467539905 3.608928563946561 1.0448632170374084 +1.3973272867387267 4.336010081802556 3.0360135183790016 4.146227410843418 3.1414059681972253 +2.325143071799663 4.26354088049243 4.454097705190678 1.4820084612170192 3.548337714886907 +2.5302710442797216 1.881967134175032 4.563550463761719 1.0525441425360729 3.5703589942110128 +1.8143376336836208 1.5531388881811106 1.8085136894598124 1.4642393806593992 0.4321453278147149 +1.9461333795832885 4.217720674340715 2.170620745726116 2.365147888977689 2.2799012362742777 +4.307429562018479 4.0256144719877955 2.2710934731068564 2.053217301335626 0.3562159053084083 +4.911474829824715 1.3091854754330687 4.504138818277617 4.784556805896159 3.613187351984867 +3.478603332421636 3.677243334836523 4.354769902575603 2.4475857114369166 1.9175008186409495 +4.93975551730887 2.1268028350778168 2.333182510721197 4.582943200638026 3.6019614037862655 +3.133537896979713 1.5194574726421997 4.973498381324541 3.374693838740807 2.2718784258001024 +3.202238486075382 2.46969386933581 3.7665111241681513 4.326827535958193 0.9222668251842275 +1.8305221475899311 4.958677919508388 1.4352612575908128 3.113091320727537 3.549714390504135 +2.80361363322232 2.8934051257453293 3.1263685250696835 1.1233598474681612 2.0050202678966884 +1.081224582038081 3.171050944628716 3.5895034774520256 1.7019185856533916 2.816087880291605 +4.969568231073452 4.4089182821563355 1.456955747767323 1.8017046734950921 0.6581642553430077 +3.436866623651397 1.2752852725802817 1.1450658751415497 4.946364696407933 4.372905974962145 +4.165100966718317 3.2425532563175516 4.157396961357639 4.45153667843849 0.9683039043245137 +2.6842118217819633 2.350174974017299 2.7982517863464427 2.6739945162811734 0.3563993333728711 +2.695893508236672 4.2621930331115525 1.4518991002126747 3.051164980822164 2.2385141407873483 +4.94846497558472 4.167670980138571 1.296581198539565 1.775848545375771 0.9161530729458788 +1.6116398991633476 3.8532291872179996 1.7924265346103958 2.331646144453387 2.3055325467146606 +2.396267732728165 4.1380362410739275 4.684117040896079 1.0328909426117634 4.0453936220666495 +4.567820985728758 2.8215488316851074 3.133662195958928 4.767741166058839 2.3915853563088727 +3.86441791072046 2.6049949503578764 3.4014938563967316 2.75840586343114 1.4141104482270705 +1.0274685789136915 3.3539895094566026 1.2205514309345387 1.9154616572016665 2.428085637456983 +2.5953230552381954 3.1676033802397976 1.4750577622729129 4.460172719383911 3.0394762834330082 +2.7904394677820368 4.689201720746375 1.1869911410047211 2.815619736467992 2.5015453614201912 +4.8754529860984 2.06226099538309 4.096000491436476 1.1797778952012257 4.051962907951878 +4.677763789158615 2.2037152807792055 3.33489778457765 2.3984208504615876 2.6453553768720375 +4.063023835951647 3.021902227031143 3.6967338849835407 3.3056431442343386 1.1121538437019305 +3.714910587367886 1.1172147645667607 3.9490728247819757 3.9849497924735675 2.5979435607051125 +2.461383325819383 4.55089992334968 3.809602720597847 2.2395542172119876 2.6136434175952092 +1.4598273323345556 2.132808690599182 3.1460711176807052 2.883760770946714 0.7222953873419158 +1.921156682363121 4.9100592267204695 4.852857587764882 4.375850274796739 3.02672668014324 +1.6740461231132402 4.617090082911707 1.2251206016829626 3.5949672570281987 3.7785818661446573 +4.490616963344885 3.598089231528353 4.508073706817031 2.918746485160788 1.8227909286473631 +4.588019526324846 4.843793516632547 1.002121847375855 2.7888056338867573 1.8048986916441763 +4.851816119445623 2.263714519561224 3.3311877699261085 3.8833803530950046 2.6463534420464176 +1.825810284099973 3.60794442727519 4.422342188892381 4.5293315447686755 1.7853427756432907 +2.6549322282061256 4.531772945178755 4.428249446251243 4.8995962206876875 1.935122440223867 +2.0894725520083552 3.207008745193948 2.1776362222700922 4.779743499505668 2.83193386669288 +1.0437071892223613 4.588070847758618 3.350209617428755 1.0849302859679741 4.206424157582771 +4.5878900097760855 3.7202680039834575 3.5352959857407575 1.4647794948668813 2.2449513321932604 +3.0352970211523367 4.960219559682084 1.2679780391332307 4.116320909577679 3.4377876442490636 +2.1388311042207975 4.669526072866941 2.653847474264145 1.2455014563323439 2.896179471399393 +3.42213071016575 1.5033583286441967 1.939614177366193 4.988516518567476 3.6024287554749166 +2.847455273296635 1.366387321657069 4.9759773198292905 1.7698542210234303 3.5316833949365156 +2.774898214331222 2.3062385710135467 2.8426010288288004 2.4444126599205656 0.6149762909319766 +3.575300480419354 1.8814974107901898 4.54840858600167 2.240582320125633 2.862696440797122 +1.9314683524773675 4.250186061560429 1.2798109304809726 4.606263107400904 4.054841044942545 +3.8439829146403417 4.497508428250516 2.9054555341913377 2.6369148971700027 0.7065477129474458 +4.479383822170394 1.3026562602427294 3.489382403476211 3.8551462107698025 3.197714991276863 +4.179418517068204 3.747524034106001 1.4420122354682032 1.2431862681506956 0.4754625218594328 +3.0479081284601843 4.5415815229156475 4.063618673982233 4.255201857052611 1.5059097998683333 +4.634049578379404 1.9319054112192138 3.922410228251051 3.7958077922396587 2.7051083669461113 +4.74395853146784 2.046008743734984 3.2566785039763593 1.6565203503202381 3.1367880345729335 +2.742401391648184 4.866338567281495 3.8968032881287002 1.7966679438304385 2.9869177408171095 +4.755940390983299 2.042094763593225 2.673775152944107 1.157021108496552 3.10893887374008 +4.295810886691205 1.355000119832472 2.810731397711042 1.6293034230577832 3.1692491264912506 +4.2236379501473245 4.85596199629422 3.2464399380572844 3.4958651010133095 0.6797401056662916 +4.74553241612193 4.940596565419485 2.8838590085396656 2.815357059170842 0.20674268888767924 +1.7326238609458802 4.007052506065795 1.4487649040195238 2.205462596212542 2.3970016810824837 +1.7502433426057422 3.9708131023586235 4.9059532897812055 4.195090172988175 2.3315780983586354 +2.593152860717894 2.8208443974952333 4.498406005354248 2.1414266534735558 2.3679516678158685 +1.9843869839888693 4.150019466885565 1.9996031884843912 2.432747357927243 2.2085239239138086 +2.5134376440546995 3.894445382962839 1.6116112625002095 2.3526641962572783 1.5672720968466614 +4.718444098332498 1.9133411495883403 1.1995819495749558 2.615848432686394 3.1423579210901496 +4.728709452328282 3.1928586311362808 1.3910040292969885 2.5216867091423776 1.907165715783108 +3.8932297816243535 4.1982675651094254 1.3687004317226306 3.381799366522961 2.0360784293950247 +1.958764431142379 2.9237321171216806 4.818433652956356 2.4933059742823644 2.5174156107246484 +2.886746034449132 4.235096164552171 1.7363352757599397 2.4611475270622334 1.530817060587836 +4.450090739906443 3.4520185887975887 4.52665884645668 4.767108224361214 1.026627450516366 +3.7249075720839224 3.0641943772504114 2.296810802842045 1.2031063159942015 1.2777837964140137 +1.6571582596793477 4.820427551430738 3.7809200680662576 1.5968990911982144 3.843984942678234 +1.7650302821070802 2.9864038913423983 1.255601801849254 1.969342588586168 1.4146304831963492 +2.275602515664129 1.117784479715279 2.8546597628937485 3.049989995143326 1.1741790766314677 +1.4113202912697034 3.646048551401083 4.858468311309357 2.1083485570826594 3.5436096087489286 +1.5894400347128395 3.7732961339134854 1.4016172852369544 4.278554787070401 3.6119242588226474 +1.893818037980358 4.923146387787579 4.032650145817136 2.6765611237745786 3.319007033232994 +1.7205743510185032 1.5078593515162266 2.6380002003527308 2.8925977594557915 0.33176435630502865 +3.3093244496424985 1.3032570295705184 4.843334402821476 2.97475833929556 2.7415110795063837 +4.194260054943674 3.4425818591013733 2.0115824185292595 2.4386120992191627 0.8645082175982235 +4.000849076584226 2.6536644970716736 1.7794320045670275 4.276444686538994 2.8372484250070955 +2.372443944768406 1.0115853658869742 1.9447816704452991 4.981052730681914 3.3272928970779785 +3.384587133064592 3.277900687982138 2.6726902250833393 3.13532540726612 0.47477711545274165 +3.9399439654089585 4.379477332075933 2.483709290785908 1.849382324414254 0.7717255215942195 +3.470531344328158 3.718856936347553 3.415898708825959 1.0527121777420172 2.3761978411631337 +2.0664521692074858 2.9921824126688406 4.502495132962121 2.8242573261830004 1.916626885901847 +1.6419106465228008 4.345348990758115 4.8710573977393885 4.4441232638185095 2.7369420227305783 +2.7191546342983517 1.839168686184685 3.880438139171231 2.328583993325814 1.7839917485389658 +2.099209727942918 3.1379730947704623 2.2573846816960157 3.764569891501509 1.8304744163520352 +4.165206002539287 1.5819461164267512 3.636681195524943 4.380283778251695 2.6881548393342314 +3.251446485349369 3.162586161287224 1.0013594551703613 1.3034084974004876 0.3148488226189929 +1.2287539075363214 4.544452083214097 2.8950924369638518 4.508268328871484 3.687301296398887 +1.0149493488558816 1.9329197433816536 3.7125644049677993 4.724494414135263 1.3662620497838125 +3.399220658149064 3.3649236689669504 1.907100126598424 1.2058687707042135 0.7020695819904114 +4.495803559185976 3.609364737194025 3.5768360603542027 2.1247287697640984 1.7012905009196435 +3.8199206521255706 3.7700883781610584 4.0311969969403245 2.065321613565062 1.9665068722202093 +3.6973070733378988 4.8919250239722984 2.8788782335463523 2.093158208613191 1.4298489450144378 +1.093218548692303 4.726779028924377 1.498351713452986 1.0942632541764095 3.6559607829440486 +3.520915380822402 2.1574813782046753 3.372306357880843 1.0393044271651584 2.702193606723491 +3.8122566645316485 1.8427846236911472 1.0994142527115702 4.24813472930716 3.713927942136843 +1.7946857545474226 1.6154751932609228 2.0440243355196768 4.668485219399631 2.630572438898533 +3.889880391186402 1.2455190343685167 2.0616638285896887 4.968145837507812 3.9294127619272143 +1.020810552905235 1.71992240224785 2.149708918519647 2.511608923662641 0.7872286780940786 +2.6868980529956117 2.565873767825032 4.06185092903562 4.5336038776142935 0.4870294879098417 +2.8148527428016945 3.59290223148688 3.2121074222336827 4.75086718546263 1.724280318212698 +1.7919078654075515 3.751263825050365 2.8166959502045694 3.111264994249222 1.9813749514660752 +1.148931166250644 1.9756237958031004 1.5590190825644812 3.2013251598752195 1.8386380707817784 +1.6754180902340918 4.508569478858883 2.4392985939506167 4.976998397474432 3.803507208310692 +4.779506727539958 2.6082497970242686 1.326832716024417 1.5480127015392404 2.1824933549279706 +2.055845325738218 4.6160556356925975 2.4818442048825005 3.272110850177916 2.679402583014201 +2.693293270847791 3.416641220424438 1.0383498619487868 2.3418322115455283 1.4907375663969098 +2.902198172111156 2.132109455530567 3.1890291702161346 3.6823366600477283 0.9145430066042202 +1.5772181327238104 1.6543864369454542 1.9046809077501914 3.500298288936227 1.597482323632855 +4.222917234022486 3.646077413862328 3.8489326017075842 1.4344398446935727 2.482442235339128 +2.103788497874703 1.7431475826113716 3.8061775361256984 2.030528682164083 1.8119025145788534 +1.1423522003707172 2.7352659307723237 4.22266093106889 4.257211793403644 1.5932883965528768 +4.177380696997721 4.640254952638037 1.6739460109748188 2.404100800062404 0.8645106087042033 +3.943612962366807 1.9038397069061448 1.2315240191951968 3.524522157135602 3.068959985775434 +1.5814225440187815 1.0836986010959486 4.312434952234533 1.6525607245205052 2.706041394845235 +2.2896346632307445 1.2092715622389916 4.770034593697264 3.9732361361365323 1.3424128321629218 +3.8901705188437874 4.8624479191016 2.4016081780337384 4.172484634549598 2.020229384821005 +3.7161292341371976 1.6991311269166212 3.6725834491660483 4.6279292657519955 2.231808010067098 +1.0886036000395185 1.0296375412566374 4.672619097843059 4.823664287370768 0.16214698692189042 +1.4677659187702745 4.282364266933995 2.983573855325554 3.9410342752948906 2.972994167046717 +2.3755843774915126 2.800689085508075 3.0752367123873317 4.459533103102521 1.4480989296746773 +1.7386928291920953 4.001611302788721 3.8223097304415936 2.5978633056899905 2.57294948750104 +3.0977122262437478 1.9253682084658186 3.96922660749717 2.00377997854349 2.2885303028985833 +1.2589625515032834 3.5732478224310125 3.668149249665711 3.9503774376207343 2.3314306906510023 +4.690952219446661 3.8029026061831765 1.4536794557872037 3.17768538843662 1.9392855827411826 +3.3828248093858044 4.887315899622696 4.358253927941838 4.175039438996409 1.5156058160226646 +2.3744312681998725 3.5610469540851644 4.274306694368642 4.582456322778494 1.2259742980495765 +3.9737859801210944 3.6677952246380507 1.452613385899724 4.344190547325829 2.9077222740354927 +4.360389688380797 4.1406486494121655 2.3264728171208566 2.707038951476299 0.4394504600353245 +1.1980622310831786 2.566279533618186 4.607685689272058 3.9789927702108527 1.505746782641049 +2.9067240072637954 3.8142565227276246 4.699988986709279 1.3054055332011223 3.513803080631507 +4.320763214744874 3.1781785752225162 2.553852852868896 2.179581098271071 1.2023223381282453 +3.2574563291054144 4.379849104630362 2.845519219680185 1.544071430418244 1.7185842693116302 +3.976693107150285 4.637039240188999 2.6878555837268157 1.8255167060701272 1.086133212519247 +3.657678444816845 2.958550980354263 2.239310325831583 2.9241333863243817 0.9786530722112929 +4.451547023017221 4.075522946453445 2.945436362852315 2.444567174449026 0.6263098674357682 +2.7747947076758828 2.3094473438207634 3.8880931433554964 4.428602173470375 0.7132308046366443 +3.152166940884122 2.4832040971403266 4.178679774153558 3.9162151544826562 0.7186090473190389 +1.9353996049256468 3.9766250161419188 2.773035417238708 3.5173358898546203 2.172690583799568 +3.211783066911867 2.8510010115323294 1.779673300820522 1.9629187904540402 0.4046512090120474 +3.4699758561824 2.4026270070500595 4.818792601973357 2.2743737556216646 2.7592210551918104 +4.199818787572633 4.204678006400492 4.7146836643506855 3.0452655410581904 1.6694251952049406 +3.680455450775609 1.0849155535686426 4.452624773692552 2.3293145370058 3.3533973398945585 +3.577188215360925 2.5391109707028567 4.816715030877156 2.1913993522030997 2.823098790083108 +3.343311208701428 2.0564721975867117 4.7043650698680635 1.9064721482241271 3.079636251493339 +4.330031558738823 3.9891523730146203 1.3044063390514378 2.826952559182427 1.560238959805567 +4.094804915428968 1.8042895534432395 1.3354634468301168 2.906266770290515 2.777387928339656 +1.4044969032089778 1.1555981034920793 4.086850154559027 2.528531877113539 1.5780704883880141 +3.3628721509845185 2.945422297112473 4.138371066279769 3.0826911389673954 1.1352200180705279 +2.9321989469554763 4.59678783742393 1.973297157602563 3.6313350507036732 2.3494564965604634 +3.1143082708782415 1.312190739695894 3.6714057019227866 4.133302897255327 1.860370021057861 +3.385096786936023 2.5148229387365664 1.8821741407199126 2.7217397765770563 1.2092340665777246 +2.717003171880331 4.198655393791189 1.37093280964814 1.3293306007036376 1.4822361655560976 +2.9942921658425994 1.6721237684112134 3.8422041073089708 3.2947949131372782 1.4310087690262354 +2.4667617037536647 4.6491148328426934 1.2533699314914948 2.436986068422174 2.4826623491017417 +4.683439125698559 3.8740403169841913 1.1341867952300424 1.1313430208195419 0.8094038044147899 +4.157209557959357 1.1163869911825968 4.053283236502876 3.148044328123576 3.172705369848034 +3.733078951625016 1.66480891395461 4.973500817177662 1.216887321756285 4.288343025307928 +4.0543339258900435 2.3225354793402824 1.4379600707648699 2.645727511341465 2.111356921505482 +3.7489409775907325 2.8392566107889303 2.9694650050255653 4.3210798522220895 1.629229370704346 +4.846899753172169 2.5539705711318748 2.3802043774536985 2.832466964248714 2.3371062622967083 +2.061027374543719 1.2286776389557676 3.365763356403912 4.536290014500365 1.436293403050986 +2.5225411835121765 4.688286594571377 1.3643325825587151 1.2530328981148466 2.1686034227772697 +1.8384028479973575 1.3468338844933587 4.793166826302017 4.267020163893038 0.7200488568454948 +4.294327802161446 2.954946665145431 2.106466353242911 2.086007076318262 1.3395373873866276 +3.832507992831497 2.427684127394112 2.350981650710508 3.137118812372334 1.6098266148402902 +2.7098606170721027 3.832804052425609 1.185358395377326 4.883483804113096 3.864858794023482 +2.4055366075577056 3.579860371286085 1.6767891382111646 4.601272508946408 3.1514503467077124 +2.087167715459116 3.4345513051285805 3.321965687132579 3.190077857065603 1.3538230820274662 +1.3575245043573054 4.8602028448679215 2.522957196199811 1.2020277379533812 3.7434756832047684 +1.26273970190203 4.611077931515912 1.098191589021372 4.473360617919946 4.754275430970525 +3.7533777822486054 3.7319303444437177 3.729258534065898 4.7211617623902455 0.992135074951318 +2.923017791817048 3.1168726850180497 4.613689384635707 2.9759345951287353 1.6491878213748117 +2.6129456262726127 3.3619457393737298 4.055564866968176 3.8868072339738977 0.7677762096596361 +1.2074893856693194 3.6728578457790344 1.745508024214331 2.9734687390719996 2.7542565532893817 +3.2418386697112496 1.1994566013109709 1.6834495576134128 3.4109696235809146 2.675004690022685 +2.6381253420566133 3.5125956616299177 1.2694102101437248 2.8354060550067706 1.7936112527364902 +3.5059314672805977 4.997542184337403 4.49100984144699 4.3721012900342 1.496342799908432 +3.5995690495609978 1.2362320556815178 3.056478223263778 2.166392990881821 2.52539372525231 +3.7159596409686424 1.072756970741092 1.3217903425419073 3.2406722925848777 3.266286621547283 +1.349985915177629 1.3718965318327578 3.4439420823596647 4.33967064954599 0.8959965073569628 +2.321002714716092 2.5530592604337405 3.8040355441010036 3.06073045734737 0.7786865174152136 +1.8504204453038318 4.4519895386966315 4.607114862448353 1.7370524421152034 3.873683007720845 +3.97119666762271 4.149839053352163 1.3202713698449724 1.149489280286907 0.24714292240104643 +1.3684803812409916 1.1928595728506863 1.648418387770493 2.5003230335761524 0.8698184832969061 +1.4479388430404443 2.3506199549749227 1.0079007755924088 4.736910408974856 3.8367103142799768 +4.091035973102995 1.5389020248908247 2.5249526972451743 4.047562202549427 2.971822234801386 +3.8843730126794873 4.188868695712643 3.022386875558474 2.1042434907376233 0.9673184047024627 +4.936253823799644 3.6365236049914538 2.840567699768684 3.6914345424436097 1.5534712825304444 +2.751973186981851 2.5826645067044613 1.6478815932145348 4.058553281084082 2.416609901476257 +2.9827638345630976 2.634941850613563 2.180460247990833 2.8420145656167985 0.747418388647314 +3.6399778928188415 2.8714967998374936 3.5890583004688907 3.6148135501798535 0.7689125588501472 +2.196770511574968 2.318443985319566 1.691774658280889 2.762809807444782 1.0779242668005948 +2.472235151576734 3.843314003163338 2.445949786159396 3.8317058715059717 1.949404305254071 +4.359885886458752 1.2637259595188168 1.4509544173589597 4.885518137643805 4.62411442785379 +1.1924902273652114 2.5623160252328065 1.1466268318833146 2.0233700082047186 1.626376744093981 +2.150103463117167 3.610445849865874 3.7575803616332433 3.0256523015981815 1.6334988740741756 +3.001719157010185 3.8530931503586743 1.6263934981434884 3.0489578823245056 1.6578682407508958 +1.1155075356852815 3.994507758333438 3.1228564659097295 3.4261153571236687 2.894928019331127 +4.010799177478035 1.4561900886206072 3.417925060209928 1.9664670319989863 2.9381555446454795 +3.526351614854294 4.639800863991544 3.3376688520247386 3.0249527578551128 1.1565295439187935 +1.482464808049817 2.2153455768132684 3.5743521614253986 2.2048348104058184 1.5532842611598803 +4.307433399666946 1.844349507169479 2.6754709699870753 3.412651055197671 2.571034177040744 +4.47190621198598 1.6831271333499624 3.4867364566315806 3.1746572333399086 2.8061864141657242 +4.149620222867053 2.549611059124767 2.7843352366780802 3.4800597392078196 1.7447240204340468 +3.3309677523185752 3.3952407987314315 3.627482846297954 3.936298646827266 0.3154333894053527 +3.7074122997591488 3.940605503666301 2.7584916812198785 3.5919328798781174 0.8654497685997521 +4.422365828133671 1.5691819924072181 1.3868609520959523 1.4812339981279 2.8547441693202673 +4.528099368863984 4.813815792955067 3.3246063340369623 3.218549415267513 0.30476539340001374 +4.312648292960899 4.047855184652941 1.2759278508236225 4.581428900631229 3.3160899536180524 +3.705798315307248 1.5535664051833376 4.61887770009119 4.634777215010572 2.152290637792742 +3.3571054628646277 1.5293487323450106 2.0296937615989883 4.538998839479687 3.104401172502939 +2.5799954300684314 3.361974055352783 4.595760148757318 3.7591197040675035 1.1451889818245609 +1.33088492205388 3.1799051295942786 3.6180721238773974 3.2636889255238475 1.8826744750933524 +4.46690980593533 2.577374217958588 4.293511606460022 1.8328025517138595 3.1024883223535857 +3.782297698233243 1.13215823847601 2.9997444800024886 2.272218872000386 2.748187160013158 +3.1233567685216936 2.4085974173357783 3.442949461765868 2.8977562443566196 0.8989530434993579 +2.196105948402441 4.489258172790773 1.2362345553714778 3.8517584667091898 3.4784353458123207 +4.946030157743644 4.546420547514908 1.105781731374862 4.267103272212626 3.1864779498926428 +3.4363388211452133 3.550027552308843 2.5772027879005432 3.6801266152619063 1.1087678280663784 +4.946227789015089 2.2309323089301984 2.2143024683961103 1.0668804175420097 2.9477799963626303 +4.068054511240684 2.9856224693310236 1.9352423248528687 1.9759208873379999 1.0831961368092913 +3.134467849480581 2.801601664230032 4.483418641123495 4.65170593726784 0.37298862090796703 +1.8905002403060873 2.262474256250771 1.2598655232399483 1.4581148484644317 0.42150618440300347 +3.7545880967362453 1.2382676903464143 2.917688998700062 3.3127444448737875 2.547142947140071 +2.2577692759534584 1.3980407467081992 3.787910097491657 3.8195447196389405 0.8603103470937786 +2.7204424867347785 3.2267407374220447 1.6699731953694004 1.3805258420873479 0.5831960982130892 +2.894285736116087 4.9268441530896645 4.23601678125235 1.0889057782504956 3.746411801127243 +2.682544194204775 2.3774598479855484 1.7026856209044698 2.4000633207243696 0.761191247003082 +3.8241348698777227 4.597971510498425 2.7160118571536485 1.4822514927801689 1.4563611444508247 +2.1861335373980633 3.4490774372679778 1.7873819807520221 2.1196040826944573 1.3059091925695594 +4.879066253212091 2.174976592797806 1.3740439469072019 3.8644447056265587 3.6761660504647216 +4.316717606251531 1.935111556062545 4.616198915862398 1.298297031072598 4.084179268272696 +2.1997247859110742 1.6716801341556722 3.512838870132511 2.100761835266605 1.5075784247073756 +1.4158294902119493 1.3025292244105935 1.1267407375368061 4.006986341224083 2.882473189431351 +1.1926967477411528 2.757149908147564 2.8109729853909844 2.7206733732970765 1.5670570222713398 +1.5970724671997867 3.9549971862812834 2.3387406033487625 4.511303193901346 3.206218518866752 +3.263257819136823 2.3258399447832514 1.0902263091517246 3.4863735695972333 2.572989305243628 +1.206055983224596 4.750715288074304 4.527410317995416 3.543189825003832 3.6787633202317074 +3.0637529305257574 1.9443679368069748 4.008465828150143 4.603955885167787 1.267923961509394 +4.066312895096649 2.3145134142062105 1.648136665284174 1.4001863316271912 1.7692599552379575 +2.0627615552877696 1.6067482109666442 1.7012466512354436 4.9517303816748255 3.282315136005386 +4.228374940516056 2.2924984102211483 3.8425584855815615 1.039401469991497 3.4066563070844773 +1.7850268840618608 2.902413138588425 2.9851798725472145 3.211070318851475 1.1399905857227248 +3.148184894441263 4.071639761706297 4.026457549386553 1.8695300826026853 2.346296014752221 +2.9539946774362265 4.8072004609528385 4.394880454524081 1.323119637645498 3.5874902358292213 +4.592786483394956 2.408984277830676 4.420353069947071 3.964153252122261 2.2309438242167383 +4.523143335987134 3.6977968155618526 4.227787763536319 4.621479422948302 0.9144342521300702 +3.263677261595464 4.612000093028139 3.944864664327304 2.006383423278159 2.361288626928538 +4.0988101271289565 1.2550806940502253 2.4087564083739603 2.535312307014488 2.8465441300002703 +1.3721474910897098 1.9922382667383673 3.4778392484249565 1.796393684012286 1.79214166742688 +3.525350184394395 1.7621875553375737 2.599927920465666 4.108682330357249 2.3205780154672375 +2.646660993443283 3.8771211644728423 2.4715398816483467 2.716799691436441 1.254665137312496 +4.749818721591792 2.3132816142846515 3.8893838286679183 2.4956977807550227 2.8069688055679767 +4.299537386073271 3.7261992231752328 1.0602501415984338 1.8879655248573939 1.006890959696642 +2.359958964662035 2.272191078099082 2.454429303673214 3.301311575190762 0.8514181015943043 +1.9593965791937875 2.4541123262962974 4.557689231268766 4.507049337807718 0.4973007834710707 +4.614436649118601 4.908737279870017 1.5835087830587247 1.0849960336417785 0.5789022565096152 +1.3041250661835218 3.041509435005922 4.957025348738507 4.688491589733632 1.7580144552175043 +1.807384602277235 2.0288276440107764 2.304557779757006 4.5612639517854845 2.2675448766460238 +3.3027227645494044 4.810692545785515 4.924218062918914 4.384186101028522 1.6017513480513976 +1.0190983423739177 3.5756995432962286 2.9923565010738966 2.3659463177806415 2.63222328427717 +2.0795365447362277 3.709597368407165 2.23862332681366 2.425265244318005 1.6407112769273187 +1.816267389869029 2.3506622720986994 1.9874781927298737 3.7444306715753584 1.836425850143304 +4.4203356818080355 2.0481797833420585 3.9151913399273943 1.4712523554967625 3.4058716015502926 +4.008876158249935 3.059739706134394 4.633409866811045 3.6226158119964658 1.3865657669158626 +4.456966978714561 3.8713854856143572 4.961279113573768 2.976704090699833 2.0691649780712376 +3.058689812070559 4.517328162646493 3.8028239761373244 3.9905363690806106 1.4706671208112918 +4.624163356330868 1.0809395894625062 4.570772750070362 2.1810912272946004 4.273758584945658 +2.201947062180255 4.665439376927679 4.760472931066934 1.6881926145044308 3.9379818090434364 +2.586528406381472 1.0949026862656033 3.6135918397061157 1.294693390049059 2.7572154991463917 +2.5329560123124835 2.799681073924897 1.8418561841126788 1.9614600563840536 0.2923137779073253 +3.337082600973461 4.468126986379428 4.238925733071216 2.0576651855412056 2.4570630797700903 +4.99922817666116 1.7836369052500398 1.0278635095153845 2.292262352873577 3.455246975233597 +3.2363936985133184 3.9055510094594488 3.349214622914629 4.2780024039497295 1.1447350125652493 +2.1622391607462856 3.0379166249121283 2.65607772620078 4.432737920708013 1.9807403837945043 +1.9465617431917068 4.310268158531802 3.630516937700379 4.676428563753411 2.584770617952939 +1.5653466281314188 4.414911540151399 4.71812510217987 3.1692059557135797 3.2433271050119656 +3.0285293512476605 2.550229953070372 1.5106255716393755 1.3153084649518658 0.5166421261003952 +4.638431490891309 1.7398312037336394 1.8168722023190553 1.8854362233108586 2.8994110867010714 +1.7130527614142101 2.0189091925291276 4.274001596037475 2.8141570229825352 1.4915409259997905 +3.23934406498527 3.313797096478048 1.2634489386844927 2.38740610784884 1.1264204241820182 +2.1634158608560745 3.103167004667834 1.5352084474386531 3.0880953853012776 1.815100563076291 +4.08654281760762 2.49689741484362 1.7690864757230682 3.2016889922278633 2.139935157154205 +4.131569000995844 1.4008814498401407 3.3929999202126337 2.5463852061961543 2.8589177980533016 +4.61976675294112 3.3457264362521535 3.575102783693266 3.6176061374512245 1.274749098305073 +3.1951343652331325 4.2866029644973 1.389397833662842 1.7030327215350485 1.1356366258932895 +2.352181875743349 3.459461692214716 2.3863586791482603 4.711409819722891 2.5752536570699704 +2.9042363806593077 3.1969495723504964 1.8590651150793707 4.342157474190435 2.500285718966093 +1.1624113614835028 4.66330089925629 1.0426104342878846 1.1296161602042702 3.5019705241519667 +4.231816436451846 3.045524685990279 1.2166236957909375 2.9065614050357853 2.0647463714318257 +2.9527621151777166 2.3016058070682517 1.5597098116418726 2.7880035979817075 1.3902194658224998 +2.8435807325405484 4.530318027232353 3.551748032258581 2.6849568168600584 1.8964202362335925 +3.471289688456248 3.0561380761730392 3.3194441191339044 4.451757457666899 1.2060200486729413 +2.5355992210639555 2.2320611474651524 3.8650644674826045 1.616125443050581 2.269330759879955 +1.590607076127268 4.83311833487757 2.837998786301289 1.6331809413152096 3.459113369451682 +2.2907358418734973 1.3693772456118563 1.2248987347877387 3.3078317121304726 2.2776109086073255 +2.4249025675925586 1.2462740728858988 4.440375158503743 1.8768220789463381 2.8215190093711477 +4.140719140700877 3.9325034593282218 3.898113322550249 4.605670945402359 0.7375578347666085 +2.203216717501572 3.943206213469464 4.926284902293 3.2389144065764763 2.4237950895018385 +3.9445815045747383 1.8110160298951845 1.142036098687417 1.3144571172135375 2.140521114676091 +1.3826906837839021 4.5306717857091545 3.253196762140345 2.3419468338140557 3.27721855388883 +3.4555839119454155 3.7831394419189666 1.3550649579725924 4.514128084803284 3.1759994434063676 +1.5170618873128743 2.3854685100685193 2.310354996508214 4.046531658261968 1.9412468836457344 +3.477530124818646 2.8002667662603753 4.590261104457033 4.315629583092356 0.7308270174074749 +2.1346499439238187 4.862537931145487 4.880433348022315 3.792713252251279 2.9367512454364317 +4.656572530935575 3.0682534360676583 1.3995804654320958 2.951942199894071 2.2209422553825733 +1.0533613384369307 1.6719295642505205 2.9118719611919897 1.7537914534063281 1.3129269258032863 +4.766332357596648 2.1507036948662823 3.617769024875952 1.6426001629993885 3.2776219022674655 +4.969254495060698 2.013562860415125 1.448106612560454 1.9040718475702891 2.9906550009406616 +4.783014207154263 2.666677907176544 4.5480838291788075 3.608524933740924 2.3155237534086837 +1.2305756836396853 4.839378202273403 2.965386124686244 1.1390632692014684 4.0446150361886275 +1.9798789268695423 1.1338416904641706 4.583529790176082 1.3774846438835455 3.3157962068635 +3.1364886062072697 2.7796135545218403 3.6239102186697285 3.20826446307407 0.5478331832411796 +1.3486012335591555 1.9454831129166528 4.689286459166065 3.8552120028569954 1.0256452488909644 +4.625832036244107 4.5250567621361135 1.484923969476077 2.289788633928738 0.8111490516274035 +1.0746830238996883 4.194894758850049 3.5150850952387445 1.9195302039315854 3.5044994909539 +3.017884705704026 4.492645196557419 2.405983139143583 4.897843079852631 2.895562893375421 +1.9074736464201067 2.5315165518122 4.650849487431449 2.2901022041507844 2.4418348190013273 +2.60151988134444 2.165923574737769 3.3983330003846093 4.083264750094358 0.8117115522707745 +4.2000464720156545 3.860005817200721 2.299838241485231 4.083509583585125 1.8157948957840493 +3.8194491665373747 2.852484364804689 2.0255669304969737 3.160039945910656 1.4906542021849818 +1.8820888201947268 2.0732621422511217 1.7815689112242792 3.6357184952944213 1.8639790554546365 +4.445881079502093 4.637583697962748 1.4342722588475856 4.422446551028983 2.9943172000271563 +1.894147433189442 3.8962872621264366 1.3563629699182083 1.2551351082743576 2.004697227660288 +2.576106906437349 1.4108437360238222 3.734643941098052 3.066907387373157 1.3430228447433734 +4.426336640673668 3.705959095559585 2.7908594665964075 2.178495676733327 0.9454804168464133 +1.141075226797354 2.7812956913950675 3.516875744335132 2.803000257215198 1.788837998141772 +4.0636586253293085 1.278976221792072 1.061768714387827 1.9748238565962555 2.930550422921123 +3.5083235856047295 2.7182239902634175 1.8729956411918538 4.678049785043051 2.914204200205482 +1.146048251123263 4.088399955922136 2.2071019079247374 3.1460885701984656 3.088548122769142 +1.424441241019914 4.873962978075461 4.691592017111489 3.7480022858373028 3.5762496830317665 +2.343932477852785 2.1204357746019107 3.373520077861326 3.167479769958372 0.3039792506812817 +4.934716715867855 3.5246469393439464 1.6694322245754902 4.880026914860044 3.5065959333732124 +4.319348874497165 1.428641195056013 4.2348837667530645 1.790121774645503 3.7859017533520047 +4.910832937854112 1.7941263808460324 4.6581005434424725 3.899982377527853 3.2075852157015103 +4.0200176881769725 1.346612453066029 1.3895548368929296 4.871305827944852 4.389724993072988 +4.849605706482092 4.525739747701101 3.0486732658456 1.9194331089244816 1.1747648663712935 +3.0269796889575318 2.2079427831417178 2.6953493200414473 1.3394362412048202 1.5840838773400114 +4.607774888873 3.3438016345027077 3.231010315647977 3.6148082060334343 1.3209576860852719 +4.207861727922435 1.993908531620645 2.8372944424265416 3.448026194213412 2.296645821204386 +3.643937306607882 1.34084160562705 4.937318780863727 1.5870686582987052 4.065516657403255 +4.705659344139503 2.3804990043475702 1.2510876667044046 2.612092329064517 2.6941982660352415 +3.087369239050726 1.8156540867593565 2.8760703117908677 1.9134082107313115 1.5949851878258496 +1.9877223615014858 1.7860320520585091 2.13649811332538 1.7116334760113974 0.470307283553153 +4.302814986464529 3.805640566163595 4.293680499819395 2.15243015525386 2.198211873842827 +1.450952788203828 3.829639677091322 2.217921358045122 3.2711276723272347 2.6014216989578944 +3.2142916619986353 3.1181060803558527 4.112556435495893 1.41864265330896 2.6956303774762347 +4.312654447075092 4.857230524556896 2.2691024355366767 4.929316336514757 2.715382312515585 +1.6056556877500352 4.427502274055403 2.742609625206125 3.211315415846388 2.8605075204975376 +3.694078275973015 1.96458049211502 3.3438064531697607 3.982747828691556 1.8437485364667816 +3.3784750076284955 4.401875653631672 4.6321026860328 2.312559652905745 2.535276861561273 +2.3894404321069103 4.522122833816277 4.486291164683395 3.056887557200893 2.567397300700619 +1.8722016886039166 3.4487854323555283 1.4209993644333614 2.6080681470892806 1.9735117420015655 +2.1645405785723724 4.064229705726705 2.348487864895094 3.2397098732209395 2.0983554150697974 +3.4336669101311434 2.0633905797262493 2.778387411130249 2.0911674864192116 1.532947633348167 +3.7565947920761538 2.6425542539398412 4.357320882748985 4.811646304969933 1.2031200729300828 +1.323255715535884 4.858612744382236 2.4142904378889574 3.2298759072166034 3.6282129181170863 +1.7173664982268697 4.368880763296531 4.35733935936288 3.163909536961186 2.907714332403657 +4.3167324994701985 1.6947435477282853 2.3522418394333187 3.1567440831178533 2.7426355797207376 +3.649609688992741 1.7325125352833508 2.9271164897203454 3.0650761498054515 1.9220547246557376 +4.996282220259776 4.848174217068472 3.990852208656403 2.816179131668225 1.1839733182847445 +4.388192167838461 4.829643989170123 2.061397873502669 4.4008737597338 2.380761880746157 +2.6841415444314816 3.569901372497766 3.6105817012053087 1.1959800782892605 2.5719392431402475 +3.300018522176427 2.6428283533487233 3.1667594671049577 1.7919692602548807 1.5237936313210734 +2.020624184197763 3.0238380613443887 3.8933390824484646 4.089998378043904 1.022307664963762 +2.4353071500557633 4.6547687391972055 1.7379082399268824 3.4981382434261734 2.8327406183576658 +1.901942126160749 4.579804898785463 1.5136013159363308 4.81121301988437 4.247963274208525 +4.815979025465701 2.222063909894904 3.9436293160979687 4.825570896621146 2.7397475391434116 +4.289896134236503 2.108815619604991 4.21917254545383 2.6161249620372775 2.7068198621265713 +4.733027108224304 4.554687853979912 4.619831407382028 4.114035128661351 0.5363159191858196 +3.123758460312721 3.507937495500702 1.3980661773221206 2.7986252674271586 1.4522944935355984 +4.354875353920698 1.7364094003179873 3.5218590320235106 2.4207131356998426 2.8405785036092572 +3.5272988716801486 3.156351046925392 3.732390766818301 1.7147579189108857 2.0514493894915544 +2.475730461449642 1.8400706336447747 3.9980325175122955 4.9840275108688346 1.1731366261476432 +3.6539384955448546 3.402988904227334 3.4673184937058323 4.010974224721236 0.5987798019709114 +4.149541993394116 2.679511842198944 3.9175748170819356 1.424162398523272 2.8944937613416033 +3.1810412907125056 2.365953867386343 4.8025170078076655 1.6798526322535556 3.2272899327484077 +3.3344966943780485 1.499685895410289 4.465982358704187 2.643890887733625 2.5858360343595597 +1.1264402579365025 2.705344528349314 2.860442370685717 4.192399060565384 2.0656832571435078 +2.744953406246699 3.198959744059815 1.1273161419806348 1.1704706638475448 0.4560527025816629 +1.212084542247423 3.6865033330549224 2.411107446165268 3.0998523355959877 2.5684855216680087 +3.2846057637795236 3.9137910815892827 2.0658303523148125 4.888603130446951 2.8920443152052835 +3.506783193261365 3.7173704974377175 4.086263452911979 2.525731105437284 1.5746771796768837 +4.521160524945229 4.874067756773158 1.1090040925215883 1.8397502919376674 0.8115007838797791 +1.5184824943426674 4.155096660724937 4.40971912971493 4.670053567635275 2.649435464761309 +4.554868810612342 2.1133682745143325 2.252598723819699 4.559169846866185 3.3587490548474728 +4.894810358330107 4.718441906248627 4.7551251356557 2.323084621084871 2.4384271355534817 +1.921731737606983 1.698327511305803 4.9927958592778605 1.2328002635994593 3.766626650976999 +2.2104596170049504 1.9920726624630727 3.914172381907677 2.0959450580006056 1.831295569621776 +2.152245231363795 3.5910772509495574 1.0630700546109653 1.035565187359483 1.439094888569814 +2.769135053023434 1.3228359606661915 3.1509119338187292 2.6499755738418633 1.530594100766188 +1.4290535380709954 4.498332688066992 3.3806091258008 3.6898601724875744 3.084819396735733 +4.983553058988963 2.637502564522706 4.03802190120018 3.243932228618491 2.476798605193055 +1.2398184795469973 2.868844126995747 2.7190676320608738 3.847271963328971 1.9815573605469796 +4.241017336474757 3.4573257639851747 2.7454365355266392 3.634513665668185 1.18517113706499 +2.864507263534819 2.7884916816933174 2.468591817090241 2.4928147056013423 0.07978168342748404 +2.3061704148573616 2.183673039298573 3.732039266658588 3.507469305725516 0.25580710383465194 +2.4119241714835455 2.085617089091159 2.909610593403733 1.2509279548426555 1.690474610126804 +1.0452237348920668 1.6806721038066277 3.509701211991027 2.5464554817009577 1.1539657561982612 +1.8729349800408572 2.0310704796275827 2.2372094761293373 2.937954303562231 0.7183663058659552 +4.552723771289033 1.2819515837324222 4.538639493824344 4.361443655981686 3.2755685106317984 +2.077776034182243 2.0047405371732543 1.4222534135034053 1.2902871690093236 0.1508286229772775 +4.014138295579219 1.2663471704420703 2.4957481332712796 3.8040407090503283 3.043351036476248 +4.270466649408159 4.249651755413765 2.0802523882991637 3.5012100498610224 1.4211101068401926 +2.0915100398019097 4.958576046239891 4.869474459642568 4.6141817927322055 2.8784096009863567 +3.1498305445125694 3.0483809472491874 3.7212218623186746 3.660614161518719 0.11817493042587048 +2.4844983213901135 3.479127736787334 1.5092487728420632 2.2162391692661876 1.2202963142652512 +1.290724592714286 4.491765786780698 1.5945993417467448 4.007724086961904 4.008719965535114 +2.24975453788343 4.807521472256365 1.38026632708721 2.312026650318698 2.7221956194439754 +4.969191409780613 2.192073795507546 1.094500425363893 2.7077287273106405 3.2116799027468037 +4.584523824531733 1.1975228968964404 2.703027038416676 1.5660050805141723 3.5727572288856644 +4.967659531288993 3.310983396746516 4.573591518458752 1.5624555192898226 3.436788591149253 +1.9990722867800268 2.890876998476076 4.983255990839902 2.28504397130013 2.841771233965213 +3.7417406455088034 4.887204985581184 2.3172312445294296 1.3704506330080646 1.4860962555400727 +3.7917356592098352 2.729790827377416 4.297947078946976 3.021976579573073 1.6600685350695832 +4.674704329151598 4.594243741800529 2.1742159791122173 4.2371187803378785 2.064471330249359 +4.11172431496704 1.5856949411067776 1.8402411211823937 4.75245208275407 3.855100139075909 +2.1433524688342565 2.0498580554411663 4.5455080665021725 1.7140191719540985 2.8330320445213455 +2.831394911799966 2.0737697892839444 3.875187655131602 2.6610180624190267 1.4311546478753572 +2.2199241877019342 2.894841726630237 2.618466242594093 2.879164465374322 0.723517275338887 +1.2417355800976173 1.9537358793384154 2.281297185233044 3.0194721725067906 1.0255957965765958 +2.5491725335325266 1.0429766448773639 2.0245936171064507 4.9224684521188955 3.26593089553348 +2.529118419643926 4.625534739531938 4.424510874594903 2.5715822488142055 2.797910984740283 +1.424319269934938 4.392407172354931 2.41226523245532 4.484006878836567 3.6196214230002552 +4.996464785225264 3.065221214165561 2.9326139328419725 1.2368573645605223 2.570076277006018 +1.5659451140909133 3.166837861356662 1.239502128227417 1.083184949876637 1.6085063408316507 +1.0559914832862436 1.7798822903170444 4.8164186988534965 1.0819498675501653 3.803981513162199 +3.285058445393225 1.6430217509872094 2.32577652586385 3.9662899505528966 2.3211136987146532 +3.2531102248630814 4.7571217284798095 1.6140979851384842 3.2669681468621277 2.2347327299987785 +3.2630371931811086 1.9192104032090258 4.917212133691864 2.0502577328791314 3.166275095089839 +1.1884202870354228 3.006465768723135 2.8080912778724363 3.4111379194917117 1.9154515460990893 +3.3327208713473495 1.3317344349964197 2.152738861060866 2.3209817254705953 2.008046906794058 +1.9643513599674045 3.432421230897725 1.9919428607588432 2.3910472449391706 1.521352508594023 +1.829627152784766 2.8384837664670672 4.533514355118697 1.4232843827459885 3.269758729327909 +3.909833860896284 3.987821162498477 1.6848360112850567 2.5907099481350073 0.9092247294674842 +4.79810367805794 1.4777961609288415 3.9517494421165207 4.561014277100044 3.375743717679335 +4.732860754554331 1.826115018371798 3.915448233157906 4.310424195882732 2.9334581616150137 +4.922916215809018 4.875161428233293 2.1303081085902393 3.697796184482886 1.5682153512199895 +4.047629199102847 2.4825792153111137 1.495073019012319 1.809382267966674 1.5962993941440793 +2.2572826531608476 1.7997903430415185 2.9879151665312773 2.1074198504459036 0.9922556200226847 +3.5110058867562293 2.121115241576288 2.530877899524894 4.624189988983789 2.5127179526229124 +3.212831793394656 2.7325246810999575 1.3876671870633435 3.3909868643783287 2.060093359932576 +4.383881474837343 2.1093946689724516 3.044599609156259 1.8346060968463438 2.576310254974265 +1.5547942236245067 3.068403990221898 1.057752460722861 2.8306889139791385 2.331162412365118 +3.449955398934427 1.139341745194113 4.598340273378543 1.7300291697149484 3.6832246801208086 +4.287895360289189 3.562437696025455 3.8902821542459756 4.467480173359629 0.9270633073893705 +2.7508197804954455 4.567242261234243 1.0819130501386267 3.7883439455712598 3.2594721689693213 +3.56770452208426 4.3528362947695065 4.65208657788509 2.782317453473359 2.0279222073549295 +2.500219236815212 1.2127353039813675 4.351467078286648 4.870574343774075 1.3881956743871295 +3.081723438908479 2.7021127581466966 1.803759609533511 3.5466122231220623 1.7837150842107232 +3.9777756185144733 4.048168613293683 3.7752785548137053 4.542813695681609 0.7707563598058069 +3.5676229079615625 2.9514659802018928 3.273041392467399 3.4966818081394795 0.6554879061799811 +1.9480088302367702 3.3430028970536663 3.2349205101449314 2.9243834371372057 1.4291402031174367 +4.272284170325143 3.429097263725738 4.4227894812380715 4.086135547838504 0.9079097038439861 +1.4066343893973365 1.2792575166981566 4.532881402773506 4.529830944411896 0.12741339409512256 +3.3976585097172016 2.49462239898445 1.1141085761064495 4.012673166831256 3.0359761039723288 +3.6736334458074142 1.1201227934198883 2.965381287523212 4.153583455354845 2.816423448896909 +1.5120349536286426 3.290395849628734 2.9679336678932002 4.479106587996469 2.3337118654357676 +2.6117280069322204 2.7520467661723425 4.5044476530814705 3.2019605654242915 1.3100236515835764 +1.8538983285774502 4.418752429625691 2.492655568447335 3.1223680561917164 2.6410252510881445 +1.0433887221175797 3.7406121360951623 1.417603654323408 3.887386111601331 3.657162770671639 +2.743493285344224 3.9204134667420845 2.164428754462754 4.770133135638806 2.8591670877130713 +4.9213547758475436 3.898178965008284 1.5252252568680182 2.0831195080473006 1.16539037896555 +1.6646417619131761 3.821622059072899 1.948530948132266 1.6628937456637995 2.175810794570442 +3.701508227102969 1.6261226145725325 1.2808315392639877 2.0902816930974684 2.227652349950364 +3.4456382795342693 4.394090521104509 3.054439869196889 1.936551451892932 1.4660273422013514 +1.8844189669420555 1.1028821846624028 1.693390065851431 1.02497422749255 1.0283868314136655 +3.344692164336384 1.3616978043626053 3.0587548679780783 3.4440252619033287 2.0200742333199373 +3.79183129275394 4.614845945572791 4.256324814053928 4.96664027978853 1.0871527857740597 +3.056248167883855 3.4027134601989353 2.550959936426738 3.5181703894597676 1.0273919696178924 +1.3622884991895008 2.3918259037011533 3.783098099271306 4.937506524984618 1.546805120448752 +4.506317891052387 1.6148703806715714 2.9223552604521172 4.648386004691121 3.3674398042646083 +3.6943939109408936 2.380408151340758 4.4856343968101875 4.481549386864648 1.313992109465731 +1.679082091208917 1.5543286019813638 1.2867554837213797 2.532987930695392 1.2524610752295993 +3.1365254777328313 1.5283341438083071 4.667332824693101 1.0028736545398536 4.001817134281646 +1.0600779388773067 1.8419661049509628 4.22364558369552 4.751837613488997 0.9435761360819689 +4.325545797420256 4.921085353760934 4.0350319380941 4.919749831253164 1.066486340110488 +2.0211272947297223 4.752377397433863 1.015467500347167 4.242049741631833 4.227358523155441 +3.9237636661554975 2.6103333188655737 4.10985088503711 4.4188763557918636 1.3492946374892798 +2.857451545722031 4.007099802521148 1.8860840748417416 3.228285955108344 1.7672569144729502 +4.660282459633148 2.9979745597019716 3.1745608708364776 2.7051623761002084 1.727310771411524 +4.246465988382778 4.688298774684625 1.811749791676541 1.5947082825026144 0.49226337234832906 +1.790083941966214 3.620658148147576 1.19469855815675 1.0388502447982124 1.837196402433127 +2.0628090046972405 3.933597403422681 3.0080277317604027 2.692194959256318 1.897261071385094 +4.354593213124048 1.2393050222065947 4.831228927109237 2.4117803972065284 3.9444583533507 +2.4913510221940562 2.9540273520572398 1.5518233793663772 1.9423399027558514 0.6054523443309698 +2.065275011980434 2.5791922705436834 4.360640445408562 3.5203168678461045 0.9850150575785797 +3.8053725690662206 4.176832581780447 1.3684332056024298 3.2040148239945356 1.87279000927083 +1.4129711241294278 4.997219202494406 3.1841549687551645 3.7367403058621074 3.6265941104635124 +3.1617483033038556 3.7552762529837937 1.5801086130600694 4.9851171406910355 3.45635045970325 +3.3970189354951983 2.932131340597456 2.5240559601588495 4.751338834274525 2.2752822851722794 +2.535389618329825 1.2561110575634205 3.7713831237709634 4.128447807000224 1.3281749975233594 +4.777732745405958 1.3626714486074425 2.47592699438207 3.2375083649743144 3.498949820292414 +2.8505671569703086 1.6323371532716897 1.0583772171467047 2.482478956021978 1.8740731321320185 +4.164140619588974 1.9902613511964211 1.8253950335578737 3.4129642092356027 2.6918631022228827 +4.209455282320276 2.876867489707638 3.410313097070246 3.2040831796457963 1.3484513353699934 +1.9907846267092668 4.9762777932050275 4.994322003371045 2.6162742855735512 3.816841678051993 +3.3631402511474797 3.3767017635703778 4.908267593295869 4.51100323382137 0.3974957684402191 +4.518077850486728 1.1908648908723518 2.2659110659948096 3.168506055850635 3.447466286178691 +1.4567970207856504 3.8292040817653388 2.435925359470485 4.71528463063072 3.2899534875147394 +3.9257244143637635 4.975083153200824 1.564379888567688 3.2389699688929934 1.9762099331542737 +4.116592471163036 1.7993901975782385 3.606676646674132 2.8162537018438165 2.4483044762489783 +3.3296427508514412 3.0137446664488245 2.588877514584224 1.6805570330563482 0.9616848220140918 +3.434204617774969 2.070779941504875 3.175893753633774 3.9091977711576247 1.5481155092494978 +3.1328812005504982 1.4237627899379057 1.2870657598904334 1.4202359913562193 1.714298705606338 +1.4308301970095632 1.2539756747681605 1.9983144691758064 4.663038163434914 2.670586057176054 +2.544766157514557 2.406379051282297 1.3900316236194592 4.3305531908417585 2.943776159708959 +2.2966274872965102 2.863412759641127 2.8039807842577265 4.840912745816343 2.1143172328120006 +2.0541614828921007 1.386530708782911 3.613244900288076 3.596833924944961 0.6678324420461678 +2.7159013817007027 1.864074048143507 2.365854495876123 3.0183625202342697 1.0730221470440084 +4.871971467776885 2.4243908271934953 4.74246210629003 2.876537805419059 3.077714166185583 +2.058806319461344 1.886598322493465 2.1643400026964263 3.4280535127026432 1.2753930490605325 +2.882261319907761 4.3171163074513395 4.628599124819116 2.5113759316479993 2.5576244612883228 +4.261612385483346 3.6534767429118724 4.720237545646285 2.3476060913614627 2.449328270695361 +3.5677165781726243 1.4609641051462825 2.740490973469407 1.9149185043820474 2.2627363709273793 +3.642309017173469 1.2152283721802957 3.486384423033827 2.1392588124946097 2.775872451657521 +4.057044685319803 2.5807664161015316 4.735813583290428 1.3274455070156121 3.714346573966326 +4.743166538835593 2.6578734283886076 4.44668407907172 2.950096852962675 2.566752945226795 +2.288475331694082 2.6892067137024305 3.117838278785588 1.9573715022026472 1.2277087521391714 +3.401325859383581 4.296488470121288 1.9481348511359906 3.5333974851236474 1.8205421495752934 +1.2639849065295787 4.887351287607844 1.6886476709992078 2.2746371958471108 3.67044515757417 +1.241651180866528 3.1556204963832504 1.5428199460134442 2.9941578978594054 2.4020117383576585 +2.498391380995938 2.8095380191067933 3.4055921644926546 4.630664631315468 1.263967871179889 +3.148252310035574 1.309467479646977 1.641985584896156 1.6413365426341553 1.838784944935943 +3.901929467946045 1.3083161868970081 3.082652621751969 1.8576081272848892 2.8683730345019725 +2.440135650467521 2.443402960615007 4.94175909634847 4.534426963147395 0.4073452369351315 +1.4854315682395716 3.771468121530452 2.9408965739242365 3.87181688671677 2.4683143543219526 +2.020906778621636 2.7021075210381302 1.8346127868055908 2.8074690795904718 1.1876379153091756 +2.293590029445952 1.80997650649025 1.381542750703082 3.0950022074940016 1.7804003340967611 +3.9135374838549204 4.860918118510627 2.5520420916044837 4.458171299885711 2.1285813645673657 +3.096283223404076 4.623417405685641 2.876563424782537 1.4952897746251863 2.0591395550840645 +2.984375760139305 1.133876701683775 2.200741358176976 1.0371441935994037 2.1859334680538125 +3.2026630078099436 2.7803227024101553 3.1563866929975974 2.7491036329139376 0.586728919175028 +4.155832862899207 4.2084791293638 1.5306274311986896 4.288305818200847 2.758180870702913 +1.314852324832609 3.3811585586541195 2.05569636473747 4.476939423626206 3.183086458478079 +1.7159910840702275 3.841334509726121 1.0991770767883837 2.912849476097317 2.7940100660151086 +4.390586009517547 3.8517224919294883 3.6770250663137087 2.1862923760145363 1.5851365381297549 +3.3785781391689786 4.772561613665487 4.565983006434736 4.290838273819164 1.4208780915530552 +1.0264666491504046 4.452526893611227 4.801364976332669 4.4415775847391705 3.444899964559872 +2.3483682865595563 4.675608692452147 4.475751277164982 2.764369978294735 2.8887495317077807 +2.238941219824789 3.336444710879614 3.594646691880276 2.747499000531528 1.386424582815467 +3.324460091758688 3.6778561765611815 3.6890179608691023 3.6967793128181317 0.3534813026707465 +3.3350865915853443 2.4896565161142905 1.498265253220454 1.7412303750825395 0.879649966152702 +2.8698134861149467 4.8505875268540946 2.3958455595543295 3.0198905912458858 2.0767517911500657 +1.6754933149621234 4.374041443536523 4.468373173863547 1.346866528136653 4.126253232843273 +3.7530760339765172 3.565833139376413 2.398984601958029 1.266210719895303 1.1481448381897141 +4.826252247609531 4.142577526787337 3.4157242222091093 2.4134669664595165 1.2132315239038305 +3.0167915211989778 1.9111989848724429 4.0896796311222 2.4184720672638793 2.0038137582814937 +2.551688419311064 4.205501777058946 4.020903430531093 4.634633285788752 1.7640189787810987 +4.728958014926942 1.0905533328526866 2.0879676466502897 1.366185397737424 3.709306976429098 +4.019736197282924 3.5752794461856996 4.1093755506038185 3.9890339674073507 0.460460530601845 +4.609311447654679 4.948830418529457 4.766781694509074 3.2247537318716617 1.5789627510297886 +2.248626373048748 4.658723024926362 2.1908451025089186 4.029621217474096 3.031445772623702 +3.836720223644424 2.137689462126369 2.333002405497295 2.651940328176642 1.7287067209644436 +1.8299435833000581 2.2484377388300554 1.6094536113507174 4.121719198340488 2.546883534397641 +2.320087416562561 1.2786055768032925 3.136038493012451 2.2077645144854814 1.3951261598001232 +4.497189410360088 4.311170455358463 3.459340160840158 4.9765237126810025 1.5285447267241794 +1.6885940226940885 1.2550653733994044 2.73526158613587 2.0458938071998296 0.8143555884222092 +2.909796258397475 3.944810922037452 1.5754562436896897 4.9233062389118825 3.504191054217651 +4.632861475317052 1.5079870688220631 2.787902983824287 1.7059062022229448 3.306895385669627 +4.444316553910165 4.007012434245057 4.251689594059087 4.993648254353159 0.8612418630451314 +1.5084200625142583 4.800822346796991 1.9034703907644204 4.592835891549713 4.251188021996238 +1.6125563036000217 4.585789954544563 1.923231666155484 4.24452723055705 3.7720725656354213 +1.7594886087961354 1.1816620657586765 1.0776291932411328 2.1771068969249026 1.242068731889003 +3.728106714430299 1.4110549007197988 2.772674984581201 3.8899767878906952 2.5723709738484 +1.3994117296148243 1.9452962915757213 4.793675510606937 4.5349297587333135 0.6041020767220445 +2.349212616218322 3.1998664970081268 1.3316388367059355 1.0739724832492747 0.8888216776195372 +2.5796456662239198 1.0109834764225405 2.5707251400152638 2.971622339817556 1.619079871569583 +3.4201533922117076 4.0816670320129695 4.459851558548781 4.540260003446873 0.6663826330675517 +3.0602558350925597 2.0615934188997533 2.5256792742627083 1.3972268708575069 1.5068946374139864 +2.4672440834045344 4.6939077029769996 2.4979462621194464 1.3331292216929183 2.5129324727090396 +1.2328815840147156 2.668669360043539 3.5035155766413157 3.889554389384709 1.4867792380639848 +2.008612841648949 2.034772310015689 4.799539150587517 1.6051842577259992 3.1944620046783383 +4.682693577735223 3.010860016743644 3.2116059553002483 2.234634836082962 1.9363625754084537 +1.090702878986895 3.1827363905557333 3.419017776103751 1.1568006248537737 3.081270947666986 +3.0634316911707447 2.8911966121360377 2.7747032268420586 4.307739930324097 1.5426815798061393 +4.245110662003149 2.3871271061949284 3.7309650920175 3.1266962944228878 1.9537767716400452 +1.6338488176350685 3.6177506761009726 1.4662147510529207 1.989738291250894 2.05181468002495 +3.1913269392644383 4.356426442766844 3.6919424483337053 3.159369555633602 1.281050638772921 +1.5365450887911325 3.7768010856641254 2.2241033230846536 2.6627293002982206 2.282792079759338 +2.4990395768468088 2.640546629362607 2.304657768065969 2.695408379663384 0.4155842710876614 +3.24345335329547 2.2740271415354014 2.6440106761672806 2.1715916184016275 1.0784094520114633 +1.6286976367734693 1.8630217771786688 1.0734957749843894 2.3878882490947166 1.335116241671302 +4.981066525928086 4.609319269673321 3.8701511792941194 1.027896694745022 2.8664623802646356 +4.338694544400717 2.0939647655589018 1.5816857916549112 4.7770594453092565 3.905025552603663 +3.461454144473088 2.00650980613436 4.454992515871945 3.875301518566919 1.566175175393996 +2.0735673011299527 1.3823685139985509 4.689119511669377 4.196793728962131 0.8486108882463288 +3.2407517291706647 1.9369348112798677 3.3344893644522138 1.7037278034697119 2.087898901804478 +2.8690304512042544 2.9751995858490807 3.91413080004761 3.5900255691303284 0.34105144166118945 +2.4188719100238467 3.8914205435434246 1.2963680946521476 4.147526716271563 3.2089725713559942 +2.4962482023865546 4.644810604484144 1.200731572669738 3.983328546851801 3.515560597747468 +1.7222419753846236 4.704554539973586 1.8518692451598837 1.7497979574298603 2.9840587763454085 +2.112160189289496 1.2672241656047918 3.317793440276034 2.9529653682761294 0.9203349424200334 +4.387011563033263 3.0430261739174327 3.0132235333174626 4.290081525970072 1.8538239019814369 +1.19349029794338 4.49396746581178 3.509470126595932 4.405163839735898 3.4198562489348983 +1.9203799561231878 1.5563871027815335 1.9679742378048979 4.279909343576936 2.3404133674598944 +3.654517096268568 4.695589962366929 3.1381924049591126 4.866044147448216 2.0172516839871237 +1.6890086533619093 3.0835997870643306 4.413984361495031 2.4745901865196 2.3887515978288825 +3.798827642553128 3.5211399858199064 4.568790808104901 1.1128323615144748 3.467096655598413 +4.8419934449734905 4.948302572309311 1.7259293179567647 3.0472194016273204 1.325559925375329 +2.425927010854737 3.764914917081552 3.557252938168796 3.67959037075526 1.3445650078867584 +4.825238582785053 3.009575794353503 1.5598584151956514 4.324590011205293 3.307623339993394 +3.4440505056928563 3.6108914531734184 2.1381233704981053 3.7103172928180106 1.581021704827565 +2.3285826316484957 4.420166007475864 4.001021789207336 1.3643832916911065 3.365499009749082 +4.500848188411567 1.0326919121240778 2.787052204086581 2.18003624349962 3.5208772107472894 +3.2498402721717548 3.838745124040885 1.7054132050467516 2.096585093757796 0.7069825818736751 +1.0334149825994525 4.6557629490510415 4.179582129423668 1.703166224454673 4.387942630030544 +4.462998631164942 4.274064421020582 1.9040063949482473 1.3359213947687714 0.5986791320831122 +2.648905938809756 2.436767462680417 3.583817464398676 4.601248382835662 1.0393115061645408 +1.1991796745179961 4.7865752560855395 1.4416928244994658 2.880053092615581 3.8650080620285125 +2.587279038173504 1.687919557309007 1.2232715814150081 3.671706576282256 2.608386742780188 +1.4600557946840378 1.3783990382824949 2.972198678623266 1.026646297293007 1.947265234724295 +1.4779216486976408 4.825774842228425 4.089272847697386 4.469903351476265 3.369421402235291 +4.520054051180523 3.871817934073578 3.445017791079855 1.5749133322279283 1.979267730889317 +1.3546981230706763 1.1629666407124253 4.58623630101158 3.5686423201348374 1.0354991411120862 +2.449116679655712 3.984568300068762 1.532717060511898 3.57577079363628 2.5557152100855323 +2.0999184844048155 3.3199294909453325 4.9466084993728625 2.23169106711946 2.9764414188815165 +1.079502428907119 4.0568438598995 3.385678623834074 4.136433882592315 3.0705366721889047 +3.197390750552406 4.9174307861067845 4.8198490286297755 1.9259445646175952 3.366484928042829 +2.39495758878087 4.4465068871632525 2.982482651201584 1.0784908523856083 2.7989353857586172 +4.3296823911218745 2.5251918727218423 2.449568077533738 2.246606814692671 1.8158687466911416 +4.1069632141424215 2.9226894965931636 4.411964978212707 1.1807172269582553 3.441433751805327 +2.193176078072239 1.8215363862111502 1.2171023868948563 2.7757588601747525 1.602350168428839 +3.57561616246286 2.3563629618272177 3.1288469369858762 4.027312757437495 1.514535967806661 +1.523230322341881 4.883259619690147 3.7122521147992527 1.1474151745669854 4.22707764407264 +3.1299878271981774 4.375545206258593 2.9137802744011196 1.193395509157134 2.123943719832391 +2.56049613078344 1.542712815905392 4.082074545402761 2.325537329116165 2.030099965086451 +3.489340882909076 4.757560970499541 1.135614901521901 1.2047863854995762 1.270105068395383 +4.588326479162071 2.552252977659007 4.985235586433287 4.087288280564315 2.225287547181329 +3.237525243277095 4.617335231644543 2.034489890194937 4.645660303838736 2.9533178855462383 +3.2195154425567725 3.6215814477898305 4.676822639097831 2.549600189555413 2.164886237750454 +2.6781762396622777 2.818873351625909 3.352119411683138 2.719124768153345 0.6484426698269604 +3.4620216501636683 2.0995728536597302 1.2226985306675435 1.9729827290257673 1.5553755499560455 +4.677286666713441 1.4751398903395603 2.1851628774293137 1.1961314207867648 3.3514067493621424 +3.665450369749661 4.806989846766379 4.966277839980966 1.672682511307686 3.4858116080256054 +2.1052416770561657 4.1777142911904015 2.626362505897128 2.131899874631082 2.1306421637747937 +4.289104229678719 3.8902807862911586 4.853026956429144 3.290541358151482 1.6125822099417484 +4.844184260395314 2.847079462408404 4.932384504275818 3.150614021602625 2.676403113708359 +2.4681092583521433 2.3158323512392025 4.014987910181422 2.143979693079107 1.8771947168326115 +2.2822548643658154 3.100314792168811 4.434293109331871 2.8842635620842243 1.752659020693354 +4.233914469622524 1.4570750061216664 4.000449078191789 2.200763593904941 3.3090338844455065 +2.597534560982029 4.757997456036042 3.215519635892053 2.866052717657864 2.188544504424178 +3.871529934519806 3.967186922846979 2.300273612992461 3.2299444160916986 0.9345790825558885 +3.5129956634415915 4.496437236278276 4.94243130759892 4.500512112324914 1.0781697001562958 +2.0433805682617057 4.693711260242555 3.4331474990805138 4.088559552910174 2.7301680785550366 +3.314322367015306 4.719100180815062 3.8599004886385324 2.597619595708996 1.8885851208772693 +3.193909292302562 2.221606185569827 2.9058738708906544 1.9685189084638988 1.3505582760281736 +4.970489481434127 1.3734110202158885 2.478752501557267 4.519462857397505 4.135634438945706 +3.6774413000769792 3.250744228723699 2.5798432717215904 4.677281705110586 2.140401451260662 +3.2165005206344275 1.7162775175701075 2.313130855872177 3.5616627456688477 1.9517942869991634 +1.3438869085777316 2.9052436036505194 4.874295172975034 1.089809386039391 4.093918343197201 +1.2326740881569629 4.437550840526422 3.1811390877362498 3.2619261838158824 3.2058948131171103 +1.777428909496101 3.31063957868636 2.560740061369183 4.1213975269834044 2.187781223316501 +1.22004729746071 1.4720906393166087 2.0572572271499623 2.8843675526428485 0.8646602435123507 +4.092708456414917 1.8675529826012403 1.594893746130285 2.038569194449676 2.2689567616163124 +1.4899159353147247 4.415503054959095 1.832944277243321 2.3619434313782044 2.9730287754585336 +2.5342867808204663 1.097695023647475 2.7677430082402528 3.1338087967999995 1.4824979050006284 +1.7036206684212511 3.2767032318998957 1.8220512505736677 3.3107627717388786 2.1658371925817925 +3.781080915387934 3.8924690022641317 1.9706063776939793 2.5745557896388815 0.614135325548476 +2.4625066596944287 1.8576642081670918 2.5859595343504935 4.923980599117739 2.4149900394131985 +4.194309210095128 4.8411389672561 3.8870651931312197 2.1812616914456107 1.8243229760960114 +1.549362968562888 2.625616837060174 3.618958491779088 4.131374023010206 1.1920117726357582 +1.3204466430792645 4.580606639940383 2.865510318946822 2.2569493414644 3.3164724736454314 +4.890413705817817 4.39941290892077 1.5621257029859832 2.3750321124774296 0.9496834278567837 +2.4577332763745354 4.9079425488635655 3.581443296033576 3.323400965367745 2.4637595912358567 +3.967626685517179 4.818138644653929 2.4043428297468106 4.347550745034804 2.1211854220394173 +2.895705307835694 2.9211176024994927 2.85885443711535 4.860094002667211 2.0014009052287047 +4.2310507821619225 2.7460755553284413 1.618982990775022 3.0103829437244913 2.03498040614079 +4.32680815561611 2.3516795328236495 4.776404977296098 4.078044181166825 2.0949560563754916 +1.7158821172379812 1.9283950617299102 3.973106536347819 1.8132463075801044 2.1702898330382405 +2.5428434124499755 1.5935542490401873 1.596150138965863 2.485209494445919 1.3006061868735932 +3.7100110635296732 2.3079900560350075 1.208483280157247 4.685724799376033 3.7492494566826746 +2.906380307957348 1.3939124487384902 3.94797962419091 2.764505388804689 1.9204609579455332 +2.443902833518898 3.518539906763818 1.7873240174807088 2.8609881243519517 1.519078488286906 +2.6048604518837792 4.965164333953538 4.467138958287655 3.955030421382498 2.41522039766244 +3.106197790113524 3.396652261797517 3.018615984432165 3.1549025609872574 0.32083926048776296 +3.9627087861170684 1.2915655519373135 2.241791728665808 2.6619829340606986 2.7039909072693815 +1.0049506780739708 1.3664702309415526 3.005829158991751 2.2946529580875685 0.7977894307635836 +2.7781211525162206 4.241736465708323 4.702209582953966 1.8952804870603361 3.1655995852894354 +2.4975734719962595 2.756443250670691 1.860406395774712 1.6311097459462394 0.34581861710080075 +1.9538559179703179 2.486149584935648 3.8186762302914583 3.320977242875488 0.7287254832694409 +1.5067041105624575 4.227755735509233 1.0218134900519282 2.864255915233697 3.2861399902826975 +1.1661980036528758 2.3444035534776693 4.289539814526924 1.2728908126589076 3.238570597981344 +1.2247139631779214 4.69730252808098 4.597467334182871 4.335120087239563 3.4824843745628233 +1.7655713084286777 3.40065033636608 1.0048580260093596 2.0504816573652165 1.9408277115835215 +2.441914768949126 4.24247304016016 1.0362194386347765 2.969503386994289 2.64189267628551 +2.7769213127350083 3.866270254972794 1.2435869939778454 1.445359721018666 1.1078778593924838 +3.1457225863991933 2.087520140251357 3.32556177513116 3.200970593164768 1.06551179235945 +1.3741683439988104 4.272548388870569 1.2731889465808721 4.174862335272861 4.1012577752628605 +4.173889903234297 1.1165972503996957 1.8882862526360729 3.5588254030719515 3.4839258629045857 +3.580343233436134 4.171043554994873 2.014572264812404 2.539547722857206 0.7902696384392782 +3.4944008492011953 2.7898154040212066 4.43070322392518 1.4934809615214153 3.0205488356124577 +1.4423777225075476 3.7038722312646764 4.362286809221427 3.600480312719758 2.3863584289143978 +3.503202810375189 3.0065781446392923 3.776961024057504 1.2788002321770429 2.547046014642473 +1.8530772199149572 4.028613120117771 2.4834237286804948 2.623564366043348 2.180044919562836 +1.778935082728196 1.5944963667284089 1.8709674835633252 4.9649906949339915 3.099515651268775 +1.723422891121765 1.3026193104944994 1.1067494867769065 4.89512221228267 3.8116720164285773 +3.2522357651662626 3.1455849602538497 3.524426835210143 4.612900293594526 1.093685907285874 +1.1600254947803026 3.223928118832203 1.8783470023444098 3.9722428978197453 2.940084023060698 +3.680965493743159 1.1944255785729476 3.846796188988426 2.0772636663128368 3.0519053226699735 +3.7644618939676904 2.4382233506751065 4.314699828429031 4.283056884589804 1.3266159766901826 +2.5292325236341737 1.273247212811146 3.9526267770025982 1.9028943792017143 2.4039346920409 +1.7690453305357923 3.0815289655989457 2.6753260623343196 2.1645365553002556 1.408374670606047 +3.933661495282818 1.329743613862619 2.432845192051428 4.110448555294391 3.097537954173275 +4.299121886499648 1.807532173862327 2.181302979731359 3.3521599475876065 2.7529848047705707 +1.0389246468835007 1.1759799246608549 2.360711558911172 3.026929924619635 0.6801698758206536 +1.8652937785121457 4.117122405451445 2.771972480503056 1.0479363356470706 2.8360241172940013 +1.7845930810356565 3.1226515604824745 4.704378000419987 3.441816079706771 1.839691033313631 +3.7402767516385476 3.381743562615077 2.1504143248333034 1.1384390316823754 1.0736107495639406 +3.9556272242465553 2.314758162024538 4.457916497174747 4.281990603366846 1.6502730681525015 +1.7699721686567118 2.6792517493516304 1.4264716891870828 1.4581892351934025 0.9098325992144873 +4.108906429529912 1.4973141866640076 1.4994565591995959 1.621746564467763 2.6144538413186518 +1.6617788594764407 1.2642194833571816 2.3249474518893716 2.51867146921525 0.44224704909045104 +2.396730993238434 4.145892552339351 1.9264548468101164 2.2953635065866362 1.7876408361565417 +1.2512304352374182 3.5132716825579386 2.527656021908247 4.221074075776128 2.825684927543242 +3.965798443997939 2.4636206974335386 1.7461056529951087 1.5095932618457653 1.5206827721258893 +3.864819559427412 4.01319161234853 4.698943808684162 4.40682198562355 0.32764222193771475 +1.2971161852333304 2.815277132779834 2.433305103123578 4.595115851371063 2.641635549028982 +4.986370152102009 4.441942367781154 2.4658182011590513 2.4500349283323875 0.5446565193235425 +2.439550059852051 4.934028363144966 4.7373894777730765 1.8991329869552236 3.778640220141205 +2.6573713114536717 4.810278724902698 1.9127404486156707 4.588259050804848 3.434153479613878 +1.7041717345033556 3.5494440846568995 1.3355104370510378 1.1419069883970052 1.8554008573814764 +1.2262225659859944 1.0642616651278112 2.8370660074844682 1.5027985089477038 1.344061416401181 +2.0765814889459486 4.862878776090433 1.0177289541477412 1.9573784984373832 2.940475104202116 +4.138975311681039 4.555867849403881 4.840804522319633 4.129725015778362 0.824277533742106 +3.3508288872379692 2.3058296292912424 3.632021310456221 2.905378020891072 1.2728055308566468 +4.449848218400263 4.3267268566553 2.9298583884819847 1.4038930704748545 1.530924237667735 +4.004361731574751 1.5243630571587805 3.2695176655171023 3.0072795827134193 2.493824820868042 +2.5220704524497535 1.686668770764225 3.7925928670261384 3.048816708014906 1.1185253436898563 +1.1172230256825082 3.716377802324818 2.150478421541364 1.3114603066801829 2.731218949481668 +3.1238766229105885 2.678466599290961 1.2279761098524125 3.358988470083162 2.1770631062504977 +4.875041694960043 2.755569146586048 2.1455955475418467 2.239214203325511 2.1215391431745245 +1.3224596847002585 2.166876756819017 2.1718428405665473 3.7922903676233033 1.8272630844051911 +4.040834760885701 2.019554982061434 4.387813943850911 4.757936589574845 2.0548875193454177 +2.232434866101221 3.9200064170745406 3.983546771663678 4.230708350749479 1.7055751481042052 +1.1475494453155068 4.947961928589249 3.9476772852318196 2.621222168732658 4.0252475972428945 +2.485107793198879 3.405334875521524 1.7542488887009706 1.440111599468982 0.9723683044639361 +4.111801079514198 1.3893503867242902 3.326475071748618 2.298405177794567 2.910097160152379 +2.5286750124433555 4.209285586571939 3.134815197731495 2.052439315217144 1.9989971117841883 +2.9716431536589574 2.71525089900865 1.8216937162778324 3.2780440027695925 1.478747153914184 +2.4908765118680773 2.6539929430584683 4.723131374206288 1.4624830307928511 3.264725806178687 +3.434057533305214 3.969009848238658 2.5865670592901515 3.8152161965565163 1.340056969594216 +4.930718337884311 1.2797868599440583 1.8974297944247973 3.2511806380399717 3.893833843810467 +2.125553443214378 3.304822472311401 4.58359536485335 4.547833173570581 1.1798111617173233 +2.456635083047366 4.301878264103525 3.8357732024742073 4.927947593115772 2.1442404941627995 +1.6372727280812702 4.025092654412209 2.882851259756815 2.7414028449171854 2.3920057806459694 +1.3964093516028027 4.644306417584997 4.858417518956107 3.8145375543862166 3.41152762434165 +4.586873885405776 4.617226953373921 4.161286913993955 4.732613994269082 0.5721328004849752 +4.067059115894475 4.984999145370928 4.0056442248399255 4.621116573817907 1.105178768377182 +2.865516264213098 3.967271579661387 1.5904053745703037 2.547783346582014 1.459601780079695 +4.2795175368455105 4.256452326610503 2.512323153283168 3.2499876066741975 0.7380249655125982 +1.841980126938461 4.518383310604282 4.335890348474207 1.3339318561424571 4.021801684720326 +1.4873089916992108 2.4586338326978727 1.1523207351330362 1.711813287968866 1.120938831257009 +4.756604638355888 2.1222150432830817 2.127682925977406 2.5098379800148307 2.6619637533133718 +2.7468567666163377 3.9070858925775966 2.183681054622162 2.4811880020435475 1.1977654229826549 +3.638813839331704 3.6733117773908543 3.35971919912533 2.9698734270329177 0.3913691783325076 +2.664297916991739 4.960121832678883 1.7883335977658943 3.764688304221247 3.0293209433087926 +1.7088888761463155 2.8955796916159895 4.487118384063676 4.437320406621811 1.1877352104225 +2.8768198868971475 3.888074994661742 4.0858139241323 2.3577601524628635 2.0022004721707933 +3.391815154485946 3.023396765766481 2.691487792072152 1.2187721801880804 1.518098607677947 +2.074000414356002 3.234709009654619 2.185368295682389 4.512335882630133 2.60038893127653 +1.2782669120180756 3.1671785810971196 2.4352915424376893 3.245570006030725 2.055368210843417 +4.344462032905978 2.7773373874366474 1.6949003310166564 4.870868870553673 3.5415612120315343 +2.976201765712684 1.2238758764830093 1.9090772386328383 4.47142983242686 3.104238527721013 +1.7392289967680594 2.1797674958143163 3.777006682880341 1.931773201760996 1.897092714915574 +4.5040107004914 2.6072935100784087 2.8789185829570028 1.6070715324038711 2.2836661359333705 +1.776109723927274 3.8802758522597 2.599264623772081 1.5836643230304626 2.3364415392831757 +1.52296880600348 2.3017822138345463 2.3465274607862407 2.278482948562867 0.7817802631565698 +4.356062341793731 4.846342737624276 2.1854652533465657 1.9069356358384928 0.5638737574714306 +1.6087610363477864 1.409641262099616 3.402623331121998 2.5467738485410294 0.8787075857933366 +3.808709113385781 3.7757404670095616 1.770361578475058 3.7359632020132536 1.9658780923800618 +4.8435156047129855 3.1142556209291303 4.296488700757601 3.747884552233486 1.814195855825387 +1.2589413723447618 1.2537095948130235 1.3921508694332196 1.0625221191937229 0.3296702662973932 +4.815328311837298 4.94164052296782 2.4676817427781126 4.842827221824136 2.3785018018310273 +1.5491298198152208 1.7527000409822264 1.12293488368391 3.22482059761493 2.1117207176549875 +2.290650379579636 2.5099226005597917 4.187276607801401 4.9861891522837904 0.8284573378423877 +1.6448073093685487 3.384842029293 2.8359889589789877 2.0529251873268266 1.9081167933375232 +1.8291275999851262 1.3903416969475684 4.617459113391442 3.352625455072287 1.338782003136247 +2.4247415401538164 4.929184896390668 2.245110069633458 4.484687839149164 3.359753727627644 +2.343999550706017 1.3267323966671167 2.6467075856286892 2.586221910796027 1.0190637759955783 +3.6342683470465236 4.9689245177689525 2.229754706228212 3.6226646936614983 1.9291203506103125 +2.6792539931647257 1.433266359621876 4.042165554111348 4.324555881698185 1.277587366897588 +2.2977234539873836 4.03578485757688 1.9464043158903874 2.279390376950862 1.769671483498579 +2.527886213640828 1.2625388489099794 2.265143685791631 2.4102506119652447 1.2736404411979303 +1.7842085764928233 3.02211816220287 4.488550923901354 1.4683717567633479 3.264031608916684 +1.8667648299798358 3.0140019322580933 2.9834968594425404 2.0864867025930733 1.4562898716721608 +4.340870040862901 1.8195004563050983 3.582489013044495 1.933599135249115 3.0126636737328067 +2.495451561495293 1.5660139408334728 2.775347006568298 2.2029690955271097 1.0915451267581107 +4.2843632702120455 3.5581520869691787 3.810997400704219 3.1003681057324592 1.0160593868170626 +2.2020122150946793 1.650215283029354 3.794151707081235 1.0497228197124575 2.7993516699516214 +4.587296331214672 3.8573373828708597 3.0916294276563074 3.460359646680442 0.8178031796763758 +4.510109644127173 1.1835059934144074 1.8580943741851486 3.737548274582988 3.8208165112520325 +2.2890187144944076 2.459092836326152 2.889650679647073 4.2693120370031 1.3901045528658322 +1.1965919798270286 4.722085112527099 2.252262056728165 3.18277791605665 3.6462256640500437 +1.163761015738085 1.093024641945346 2.9967166378825913 3.1059419787533313 0.13012997220346836 +2.1907203228119 1.1110919465603444 3.8097212171191837 4.062597409045145 1.108847960385258 +3.276877755590389 4.395584747566898 1.2806185070326803 4.737966829953923 3.633835819062751 +4.503555239842482 4.719000150562021 2.158337805329701 2.7729009995796257 0.6512330069043034 +2.7144077106357565 4.084326644736194 2.9461447655454434 2.7106934379119463 1.3900054725400384 +3.5719903989725617 3.4268784676552992 2.791178553498975 2.5544374230349085 0.2776757739955541 +3.5479436080372837 4.713268231707021 2.024828067246657 4.150890196103743 2.424483791303077 +2.910461698150309 4.4413567100134115 4.181481171391217 4.3182645301596185 1.5369935668646417 +4.4310025957207255 2.1549079100583026 4.474740302438995 1.3813147786269977 3.840558356472696 +4.849089917862345 1.648100906522279 4.232144317625494 4.0529857044084245 3.205998823987575 +4.715576661182077 3.9737085611206657 4.304469692617751 3.94821624798057 0.8229731433677435 +2.916617229618258 4.746020700672015 4.042008872952049 1.175714896600823 3.4003467791933897 +1.508823569189007 2.9767950596168142 3.94794754103381 4.987640905440703 1.7988614701250794 +1.024219490666245 3.8617858284266684 4.4495970402623595 1.0078702285290166 4.46063517537528 +1.1990632612629977 1.1876307634039467 3.9594066619798727 3.3046995833795805 0.6548068881560627 +4.2350667619927815 3.9355510975070938 2.648957388709232 4.532132955509352 1.9068455230210068 +4.320797874131271 3.2969913851785986 1.1888135191509037 4.0244388340218915 3.014788658124942 +3.36242586213486 2.546009222796731 4.673344277384265 3.920478772663539 1.1105595874092293 +2.6481468541375373 1.1684942334488717 1.8072710986105962 1.8730766286408929 1.4811152033833845 +3.363427123774558 3.4619065556515976 4.503282083168054 4.5660433707513075 0.1167783272783624 +4.083608848800769 2.0846806601815495 3.7923923262826764 1.9938724017714047 2.6889380472819644 +3.1209748673999167 2.440522550382753 1.4749984869716153 2.9708073701208653 1.6433075094583587 +1.505235649526317 4.560313049952789 3.9030354995853505 1.9439686602484567 3.629247966671059 +3.918628442870442 1.8583601680988386 4.983772363910754 4.562112559258251 2.1029746443763764 +2.3544709471612544 2.5655795146807017 4.8235569736449495 1.55704734527954 3.273324300994944 +1.6516709089424793 2.8115023818458162 3.4764411160711015 3.832369765700776 1.213216488992928 +2.7288477916190885 4.9631131078876685 3.459687359561886 1.4199894083510398 3.025278373250049 +2.719471827899071 1.353625829599976 4.339368032954354 4.027743443822839 1.4009443870550455 +4.513719097111755 1.365973507086041 3.448971224683369 3.3863945456635776 3.148367535768891 +3.514656140861235 4.507342488759418 2.2255715506163636 2.4387758209509074 1.0153237149758287 +4.5157141518525 3.6907404774207486 3.6328328586013576 3.684822834854452 0.8266102595154643 +1.278801757320697 2.601864334638431 4.041528282874642 2.5699813769943765 1.9788746498210619 +1.8844615108812102 3.5227515700309087 2.306004721827673 4.338530916233852 2.6105855758538135 +4.682386451133237 4.75109707420175 3.9906697901592283 3.9903047279824566 0.06871159285634593 +1.3919849235261559 2.049098033270544 2.968211476824499 1.1587927172254169 1.9250438661461775 +3.7195457628734734 3.3501780041509033 3.8095366404764692 1.9466259737730618 1.8991757931537219 +1.5232653587461602 4.14781732140698 2.3338847656025563 1.0385569704673858 2.9267980971629224 +1.533694440108738 1.1489431995629782 1.8929898827730516 2.9386130363899508 1.1141639450643028 +3.1250159490170404 3.772730690540513 4.4699695803059685 3.58517899031275 1.0965348943500917 +3.5317772332760127 2.7246722890978097 2.090214929395619 3.7642037870131553 1.8584017559033257 +1.7892475666608623 3.783843044140586 2.8829711613116427 4.886078315578281 2.8268090473636094 +4.992724018985381 3.402260424175823 2.4760218575507773 2.4575280702172884 1.5905711133377465 +4.421405811886661 4.952718205177208 1.4941757792390944 1.870315262780903 0.6509790859491777 +2.0983525334889688 4.444285248223987 4.602357593646538 2.9760014264240655 2.854546318546361 +2.012210816025381 4.437256670292152 3.832268793969912 3.702791690549265 2.428499889974602 +1.9100117532829248 2.7115526801371015 1.5108643144113798 1.0953881105327739 0.9028224262897048 +2.244401699472155 1.2804263444226938 4.776054662978597 1.2837655739081573 3.622889946821898 +2.150939188136128 3.1737439636389526 1.522872369051821 1.2648021023434848 1.0548601193287643 +3.8967490299475083 3.9375038366361204 2.6684772687355744 1.4068232123457527 1.262312129496155 +1.0398011778956833 1.179598136581868 1.1348641057744775 2.5175184284965613 1.3897036251661614 +3.4885228218891693 1.7468521308279903 4.0738357367683005 2.107228910398383 2.6269676826383463 +2.4155603257309903 2.4230408331920597 2.9239610540041423 1.505283245428624 1.418697530320156 +1.9367165473013772 3.4854121098528785 4.15196833075837 1.9703478594161403 2.675430026452982 +3.0364603211375645 4.668889180716535 3.1852452205796 4.413682558680198 2.0430081437003578 +4.021780030154579 1.4457040151158291 2.08173564073709 4.621543859184526 3.6175673347915813 +3.52536954759823 2.127961935570923 4.181811131468622 3.9271893110522504 1.420415539757295 +3.828186696398436 1.7472767067745574 2.6880678105533145 4.979189577914578 3.0950646742504513 +3.9757613382502512 2.7656530783448074 4.201829550917816 4.040173475611056 1.220858176601593 +4.3442109569628355 1.3837737445558287 2.0365108253352058 2.4654225677691914 2.99134648133611 +4.8302402420482835 4.525320473853702 1.543462881527827 3.6358781974930556 2.1145160012451325 +4.669575411582809 2.8974871032928617 4.793044789889559 1.602034401193055 3.650047160400389 +1.4311728682047606 2.6043659667843975 4.194628688968184 1.8377511245285634 2.6327274641165817 +4.2899734896757185 3.80320814507784 1.6050541861649692 1.4333368151657555 0.5161660161269559 +1.9070846018830605 1.1068774084226836 3.0523636538006453 2.6143346989086145 0.9122504687801142 +3.3672076243075737 1.6855507988933809 4.941052858222879 2.8286887605742264 2.700009585075051 +2.7120032810315173 3.2595174887057854 3.7551178848116904 4.439530535913672 0.8764659061216383 +2.249593814121566 4.789637090733429 2.4358202805261655 4.762245389126171 3.444426459221575 +4.876877574000297 1.7094659382786817 3.308931368954842 3.2024699868999797 3.169200292814216 +4.469597962107963 4.696644977058964 1.2149714141628545 2.960505286145335 1.7602382921741904 +3.596557332180362 1.547888924722347 3.214215719135227 3.7934100734740226 2.1289688451958364 +2.6019353500065123 2.209111918303581 3.588707982259976 3.8831035774647793 0.4908961346057414 +3.0231381892985456 4.468413193512506 1.0626308102083342 3.589849778891361 2.911297915617185 +2.666429072610738 3.6263057792792783 3.646833909785214 3.0850606874387423 1.1121836383216495 +3.467401654727048 1.3925751735536225 1.043460954951474 3.506488880645275 3.2204675886780803 +3.594436136245821 1.4819669691111557 2.902813708956397 2.2169819725476136 2.2210112905521466 +3.9845539035976683 3.5024447753003214 2.0147055746708875 1.2655400670008392 0.8908861708827615 +4.825251517722087 1.5140144970120026 2.41017652141331 1.85955090749037 3.35670659635736 +4.801296913666436 4.085453423235913 2.291323922564976 2.984524537382596 0.9964732787060975 +1.6706386471316002 4.18530823293294 2.5277607482829754 1.369607946438423 2.768552155581445 +2.8034441247039257 2.7548754308788572 4.681987242070235 1.2164806972178805 3.465846870598062 +3.1824997761348772 2.978805757959623 1.4521034433297717 2.720582669376899 1.2847298548541246 +2.7529772758251663 1.9195030575314687 3.4386558069430295 3.347972408963723 0.8383929575261017 +2.781554732328955 2.767576368540042 2.632310063520694 4.96628061979346 2.334012414748992 +3.078565463447854 3.8174024992502193 4.406704542896938 2.8351647446756805 1.7365533400579827 +3.497566726837964 2.867140963464439 3.295914935304581 3.3549613141430155 0.6331849003087674 +4.323531351810129 1.255645812590878 4.007678201069044 3.532185252927695 3.104515296384082 +4.175189391039904 2.293852940433548 4.276628279852998 3.4202299931405205 2.067086080903306 +4.281218890434991 4.488028887318743 3.9612071694724778 2.9432720700397152 1.0387310727364643 +2.0555691423362394 4.075380022792988 4.912312065944768 2.1405128822324895 3.4296511058181296 +1.7786687002766066 3.695805042500623 4.593717117067007 1.438955813969176 3.691602718901318 +4.843546411316007 2.2064764893425575 3.6643052135972893 2.9447944942232733 2.7334654650591745 +3.9641178478365817 1.0708370473713908 3.045984478982909 1.0148107418401429 3.5350729187385945 +4.369610720322289 4.504047828085185 1.9028033538657474 3.155250327851225 1.259641519873425 +2.577483712935404 4.691484656658117 3.909809230384318 1.627648352343098 3.1108291922447933 +1.7997545833656465 1.202177659755061 4.971996052175722 4.96813911775247 0.5975893703665057 +1.0613759424249718 2.3059335411472266 3.5467159350442192 3.781423447221792 1.266495650529401 +1.7249990904431738 3.390773571160274 2.7704737626123896 1.095458763023398 2.3623039324897284 +3.3834126887176157 1.527248181885212 3.2776266929061273 2.5099181895713145 2.00866199807657 +2.1846691077646008 3.790821198441556 2.285308842174308 3.9052462502451912 2.2812105874849355 +3.4615735526300346 3.4026852067573765 2.3148560696019467 4.7270921160772765 2.412954740809398 +1.2612220421245905 3.2276126685516657 2.4084680605161273 3.8145261238257704 2.4173728245966384 +3.4300353950440052 3.596972225865185 1.5505236627383017 3.470971540880085 1.9276897982154435 +1.892075905252804 2.9957853088122466 4.9028382523897145 1.5922858263121316 3.4896893577098966 +2.668254954460393 1.1229879090207406 2.7017672632366723 1.3852847421146257 2.030018834922881 +2.897011459845453 3.605127208866505 2.23515441044679 1.6591944153671894 0.9127747969481516 +1.258653107717301 1.3594307702980188 4.739383051978272 4.767704846559376 0.10468171437040594 +2.1838634718182623 1.0681171225282626 2.898835746872556 3.427966288610276 1.2348558807219634 +1.4957947109825942 2.8635520030933863 2.9424137339483405 4.085510529542836 1.7825347946732064 +4.546726112548297 1.8643865768875285 3.4011148277538115 3.053688821260302 2.7047458687567776 +4.169892920489592 2.5205001776175058 1.5410630416115731 3.8536689735607883 2.840535621449906 +3.1921014411160384 4.980929262410943 3.820753293413429 4.49456159548957 1.9115236336978438 +1.3823435664365236 4.163917214434889 3.86486124289302 2.009650093866831 3.343495232045353 +1.3128554589822579 1.3405527960291286 1.77115210530699 4.764379957735628 2.9933559960409055 +2.3637186368693026 3.9193104101266 1.1354717328312809 3.9476360538111326 3.213741422892927 +2.2382100655146777 1.7797413440319918 2.9663427823279434 4.5890845863324845 1.6862634820934363 +2.8154375111958188 4.049064771021188 3.682896708764576 1.2499804951260063 2.7278045235628015 +1.266310190586835 4.890730677601184 4.558644099548315 3.1051914021801297 3.9049902189603727 +2.2572590181010046 2.6279947724250596 4.22010108793144 2.528621672193457 1.7316314889142934 +2.5053904204519006 3.2390169442811088 2.87223761736552 2.7911228138591846 0.7380972075638812 +1.0985165192416098 1.1918270491232734 2.420236174702432 2.878091929393807 0.4672673186633166 +4.579962192891939 4.450896959777015 4.064966846757968 1.764837220758555 2.303747844448087 +4.446097186109425 4.00715750814577 3.9631922067671996 4.508350827154272 0.6999042522182396 +2.8422352609362345 1.526369752418347 3.7962822019609224 1.9906051852744668 2.2342720347121423 +4.8611123997355765 2.516935334206454 2.3389711112166127 2.790902061117458 2.3873432300427617 +1.8814676109782908 2.6711067402409587 2.070918329545508 4.7858839042749235 2.827466715352902 +1.4655805174072563 2.0263956426987275 3.0899909792327516 1.4847330308122753 1.7004019188776531 +1.6569798428522833 4.5244931512690965 3.074633513749448 3.305032900567596 2.8767544996738454 +1.8005199628696906 1.287489192889773 2.5736222497446444 4.85815920787182 2.341433254225957 +1.5513639367688898 1.872378622588676 3.990879930280546 3.4063245051730404 0.6668998976867463 +1.3609075343207566 4.297153350289487 4.408237809972449 3.8103607066897025 2.9964973756744127 +1.2050514470398856 2.8627059199916842 3.8435817015422185 3.718478317007498 1.6623685537567015 +4.5578498773299785 4.950420297384811 3.584798218683821 4.429637813921236 0.9315929778518872 +3.621552141171617 2.829642620579408 2.9744707803895545 2.599299889202794 0.876284135653756 +4.049187144945245 2.2659731001261343 4.221425699256132 3.1617219405189383 2.0743250434591656 +2.4248734108781194 1.366942128643156 3.911603097893166 3.6495417773168133 1.089905837067375 +4.366450692375822 4.497982389529562 2.1316428076197984 4.353785098498741 2.2260316593141387 +4.427243801515729 1.6187811565907602 3.4282621769693433 2.1339196293088487 3.0923753101173235 +4.268971572984421 2.1733612232055175 1.6344678483082324 1.1026086077379658 2.162049257043058 +3.3841051004904084 1.0280426136263459 3.317318543477891 3.0615208269623224 2.3699077859238846 +2.8089634767329024 2.646263095132991 2.07528731800584 3.581850315961591 1.5153228966072465 +2.152120866152605 1.8253366949788767 2.831345528267719 2.420160912369239 0.5252244119243517 +1.2826144164033613 2.4468608830237892 2.1869922754636413 2.779889295551169 1.306520842339234 +4.164942063387499 2.64306943793643 2.9404407842555926 1.2648279024527587 2.263575670871404 +2.056076543153024 2.846993143480672 3.9011447869410874 3.378488282816029 0.948007853331433 +2.2692271507725734 3.3262513502315443 1.0328548666290711 4.511150917962215 3.635360171834645 +2.6436318713336924 1.646158486174503 4.0801323452421405 2.898418618312127 1.5464153667484537 +1.094242975485138 1.9069935496441164 4.126546906728938 3.7300608513675457 0.9043034268937536 +3.7737789203290046 4.272532742398987 3.762674697764458 3.044223640567845 0.874601221481165 +4.761083012917355 2.6678277261087517 1.1411815656838162 3.0546280455331156 2.8360174764976054 +2.037580734644883 2.953021144767639 1.8733907987961471 1.8642983282587728 0.9154855637890708 +3.496359634511618 1.933142558863031 1.379171235789781 2.492152351447567 1.9189514296641719 +1.0693394039178856 2.5547104257291275 1.1368356171825744 3.6936159284355163 2.9569329773343296 +3.9295842445352442 1.088230126500691 1.7026634146031183 4.205786950981768 3.786676730649802 +3.269370171020834 1.302453589698095 3.7833658884124715 1.4229577410047938 3.0725050789593293 +3.6598869804471645 2.6273012822213744 2.0529839909423364 1.752701462631575 1.0753617163490365 +1.8660563192533584 1.3803205292150271 3.929459500424949 3.798323544055317 0.5031261241250943 +3.1620440018716014 2.209619450528095 1.5137935434495997 4.840343197501068 3.460208827061139 +4.702189553247724 3.1691328007770427 3.8193914895095653 4.992180052870032 1.9302062119486247 +3.453750694140449 4.449301604702162 4.458883187079266 4.119942918306567 1.051666354561163 +2.238993750992886 4.86327299778333 4.794980759675621 4.114700717379017 2.7110187201644496 +1.3074009835849805 4.485581424443264 1.6960489796133795 1.1210549610378777 3.2297753847677644 +4.205673217633507 3.2884765896514407 4.484203650279625 2.786084873750967 1.9299888687712317 +3.3047178832708535 2.744033178265351 2.9964902289135593 3.1920543994225263 0.5938119931543718 +4.552390901493302 1.7683769277615307 4.453340649805158 3.8601670189844444 2.846504656984562 +3.6669685912564383 2.9943868656583668 3.5999955144075604 2.6675435547864823 1.1497098914985764 +2.9473161476627388 1.357997123178671 4.524125405358761 3.031712156251234 2.180190878730272 +3.418365795636738 4.722072268488041 4.205236488958455 3.434592885072112 1.5144444960332213 +1.2598922313893954 2.9141652314234987 4.541628061425495 2.3840029814431354 2.7188168648165174 +1.6171916735162606 3.1854836343872357 2.3457086915018928 3.574294618296162 1.9922256533960858 +2.919376441358893 3.3977871159003015 3.9164518239604384 2.1181124932576596 1.8608871867654107 +3.024979280285876 4.970776229038682 4.458192600845386 1.2161838585750386 3.7811038666946315 +2.707507795570505 1.196648232432001 2.7420512646575257 1.655757688074702 1.86084130275856 +1.5488754943741392 1.319084821123783 2.6206969422285558 3.2273192218711744 0.6486866297925827 +4.219099909684747 1.5441563646229794 1.8272737262896515 2.8637141704928335 2.8687160479294054 +4.88560824831995 1.9764292843603446 4.535811415558196 2.0398857231202836 3.8331406583266356 +2.7617876392384275 4.1834536366773545 1.8141310461862528 3.22670442882777 2.0041201983966226 +3.0154164137245156 3.6485811275949724 2.3530228426690774 2.0777210713532432 0.6904264046082632 +2.814304181810407 2.5467719359125165 3.0099438600448276 4.142833137730027 1.1640496630682309 +1.4972220697384646 4.929364710413793 3.9593128165169023 4.776588263762129 3.5281074618854373 +2.5530543181320153 4.4371052401377975 2.7436496437663687 1.0283178144192044 2.547942534964697 +2.607958805220175 3.7446985769537364 3.8346256803486716 1.6785651089430198 2.4373704060341206 +4.992794010490538 1.536559771583844 4.316152078612406 2.4669714987974327 3.9198244770596267 +4.041354529137924 2.643548346285556 3.34247783592362 3.642064805191704 1.4295504457610244 +2.279597758370744 2.7223318240855887 1.1337399198166085 2.0627192536366588 1.029085057519125 +2.5444686136720835 3.775245073029667 4.893096258114815 1.1854810403335772 3.9065613134868116 +1.8308768200110639 4.480916818656569 1.649868310160338 4.280380232598809 3.733939604293568 +2.9434259035689574 1.368570201791063 4.205397836682922 2.0026344236835234 2.7078288600040996 +3.945372464639078 2.11537140638597 2.955269115549229 2.735266750560321 1.843177938726538 +2.0514146621321023 3.522725624076592 2.9206326872706017 4.480182676402775 2.1440503994403164 +2.55359055774361 4.544822956783975 2.903978770664198 2.2440394210315833 2.0977431711679015 +4.121675009992138 2.31224316318284 2.5311987021255256 1.85046903496082 1.93324506672224 +4.475393429831061 1.2845944695027254 3.803666542483236 1.508129205915227 3.9307365300678874 +4.675570323791574 3.467856950749928 4.83538763061858 1.30720440890211 3.729161894772771 +4.7425524922435045 3.2427702232605093 2.5618350106288412 1.5770170483258021 1.7942166182572525 +1.101786254846226 1.811678978950495 4.6629808741601115 2.9020852526210206 1.8986050325677852 +2.5680737925215134 1.7203992846380798 2.257376079599044 2.256516239956766 0.8476749439730018 +1.229145758616352 3.5902910091879323 4.299054484223714 3.3981567638546086 2.5271770014905925 +3.5051318484533875 4.751604438594651 1.335703718521188 1.786030826627929 1.3253257796742843 +3.1225286309472446 3.647619156071372 2.4565715926044316 1.988441211803048 0.7034672081940851 +4.643571775761238 3.0772227530291736 3.8007255209292814 3.844395594825153 1.5669576689776161 +2.166125672315131 3.2951079056256742 4.622111361995812 1.2608998019323217 3.5457501370845783 +3.7210789295509605 3.3423311844605057 4.9265027391823795 4.915341858319167 0.37891215297578806 +2.877134974244717 2.7013653672112894 1.9684516064446798 1.8482830831308972 0.2129211796700853 +4.839242123241135 4.402075043610177 3.8503609879315848 1.2108046112737125 2.675513580804309 +1.5443730220754697 3.1764807081639503 1.2665949563121948 2.4307083050434732 2.0047282578153696 +4.784916166042253 3.9668890500061176 2.9454888812638966 1.1700098172344435 1.9548642585553861 +2.4953081174496625 2.0193992288942506 3.803798297948287 3.6157149179120767 0.5117271031046655 +3.9248600106624676 2.3253771982579194 4.371418325696875 4.5422768549736166 1.6085825761222747 +2.1617905729229165 3.693070185647126 1.2544019101406687 3.4873853573147673 2.707587916891772 +4.852801490208978 1.671574654990255 1.3301474079896924 4.8017258215042045 4.7087217860365955 +2.0874508570856825 4.375097915939666 4.119250570754339 1.5219386294577046 3.4611209725008703 +4.291491763884052 4.908570388712432 1.730879343294014 1.619805788397517 0.6269955054204377 +3.311558448913924 1.465215869501257 4.027021121690785 2.7534628523781683 2.2429738263936048 +1.4279994043037925 1.0502245975760998 4.663489383145038 3.194561302876953 1.5167278957012118 +3.971190028414781 2.81298503759711 3.001904269829257 1.622924699122533 1.8008396533787958 +1.8775207308252027 1.0077572709404992 3.5270470009376087 1.3165813020431858 2.3754256633579214 +2.6186380457374514 4.505694205263231 1.3166012085324312 1.3123783621975194 1.887060884453746 +4.552069360507023 4.542095981822807 1.2703478605119116 3.7124029461420944 2.442075451237045 +3.414148178632142 2.494812335929414 1.949192012062957 1.4940360630185294 1.0258388419378885 +1.4936286175452822 3.82928589279798 2.2638854969937245 1.035692276223434 2.638892475071115 +1.5574252983982002 4.725495659985109 3.298388747711517 3.287078721722676 3.168090549945388 +4.126382814165472 4.287230479798943 3.403659478639223 3.5572098310561495 0.22237284516572392 +1.971564418846444 4.570238543529246 2.222479556753465 1.5154433538119525 2.6931408055587958 +4.830042146229612 1.296739146961619 3.423391412373531 3.968912968637971 3.5751676678143887 +4.81818848930367 2.036675835454578 1.9390141053802101 3.6114951933764194 3.245613290770729 +4.572047191888316 3.3662802937675624 2.7443537211875624 2.424993523345596 1.2473430757291293 +2.056643103648514 4.247378625428853 1.748169480598976 4.661404916755243 3.645032624389907 +3.77382169134392 4.369306219460627 1.3094820358258912 3.8452507609088036 2.604750439165909 +4.166818946396389 1.3912794335580552 1.8393713645116176 4.072162046541376 3.5621585895473222 +3.600107269131928 4.395951469099059 2.8110324390907757 1.492161367288682 1.5403859563946067 +4.019269352407702 1.2034209894098566 1.2404113794659963 2.6065805466799414 3.129763600792189 +1.7421254734655363 2.507987125250934 4.918580125727965 2.1993611956391126 2.8250125060659506 +1.2851117423912308 2.0665205214365057 4.271621194876337 2.3056548384190627 2.1155669204000422 +4.730898541901354 4.549270358785144 2.332872335219847 3.9352882738871977 1.6126765445672178 +3.1271109466299927 1.0966731497110427 1.5719177631568022 1.1056189188400083 2.083293608536314 +3.493685065899711 2.7031454155538883 2.750959250725669 1.1086628771548201 1.822660230929741 +4.393309136418285 1.8938853297313374 3.76880488636417 4.53407065114374 2.6139531472804047 +1.870535256466351 2.688083938531637 3.8116085183792108 4.29672882826564 0.9506458660358184 +4.859629985102799 3.198587975342494 1.5521676414107248 3.3850727517306436 2.47358074491726 +2.059173149060104 1.6529727967979149 4.956572319855732 3.8294553141800227 1.1980782406259212 +3.209542537162317 4.252392195193572 4.606040510704973 2.73831970516798 2.1391391765595 +3.5967559268079237 3.4255880838124644 2.0255124501492796 1.8785603353400369 0.22559555519253272 +3.479841588205192 4.456398617069695 3.6723649530211526 1.5022335437129342 2.3797340112480514 +1.326063813406456 1.5055347346578567 3.1812339757804944 3.2058029568133177 0.18114482163125095 +3.169095358210463 4.675544974813032 3.6154706955439804 4.507256367782953 1.7506204993009609 +1.9566940804655792 3.158047072205802 1.2313311549383035 2.3847935826997477 1.6654502643491065 +4.638536836359751 2.6843238237376656 3.3170422096048457 2.117625675068951 2.2929344783529206 +2.339878551488058 3.334207413665692 3.348069328509589 2.8721839234964825 1.1023415100883922 +3.5987451163457167 4.339030174306695 4.630242390149695 3.5335709575669965 1.3231440579480664 +1.1257290760057668 2.545615250921701 3.785123235590854 2.9337242476045846 1.6555835788209083 +3.1458060142475737 2.634158160405236 3.038044565501579 3.7755476677940343 0.897604786212989 +3.3546051353148996 2.533404310136585 3.858840861163329 3.776604564302219 0.8253081871609985 +2.617809313291201 4.744064732420952 2.989428321196772 1.285158032759941 2.724976939980813 +1.1631900272911913 2.9732599886300415 3.72002642140767 3.810384679406322 1.8123238893006341 +3.6298976471850404 2.0258060327961784 2.350942904892124 2.0376788232261354 1.6343941667219388 +3.1709640552498697 4.387214259317423 4.620994749989764 2.6455964893333217 2.3197980185996503 +3.2999208355627383 3.037269204480531 4.403128305516877 4.74462147744218 0.43081720692394426 +2.4465714253991164 4.544553841645441 3.126624251232427 4.82862212045041 2.7015415905925493 +3.6110976714488867 2.4513944946609545 1.5211315791591287 1.0635531725382528 1.2467114567764754 +1.6437877117886153 1.2128970489872923 2.4234439203749885 3.500255122903465 1.1598228869875722 +2.870347835094626 2.312414414580394 2.986441807794042 4.30450602040565 1.431287172545806 +3.7055398741795433 4.308999850883558 1.2079810671694142 2.099430265362265 1.0764969189190867 +1.9956123441680877 4.622192169845568 1.200058484766454 4.5179553028880495 4.231708978221134 +3.348491916235436 3.377047575372882 1.7915968111784588 2.0478472575666435 0.2578366090044583 +4.934138270558564 4.477456532166707 3.06477632652708 2.5759960329525375 0.6689277880066161 +3.5690375379534593 4.743278755908964 3.9337995939318855 2.5365033157033237 1.8251792588940456 +4.106503980215385 1.8404056789101846 3.8250146467920563 2.0018908508019497 2.908432891899638 +1.500433911455326 2.858300096257612 3.0795888556688293 4.492538325319057 1.9596496573659217 +3.1027267279853925 1.8254167965873784 2.8647405673707005 2.4460025431489165 1.344195742359409 +1.0890280601900857 2.361509732137294 2.547158897598069 4.187070475782498 2.0756973743069844 +1.3539076215719361 2.3804268379208557 3.1323639695855108 1.2638642662990387 2.13190826320347 +2.696590511149081 1.8091837521591598 1.873085725036666 4.9753119123580944 3.2266543157276457 +4.961405649538303 2.313872754130009 3.674006714052228 3.8603205334342006 2.6540804945520633 +4.381635570369757 3.3756607538848695 1.8531510133389038 1.0498208051006244 1.287371257590428 +3.983330602413232 1.8682730248316517 3.842686497765957 1.6529862744444093 3.044380992008014 +1.0728147520471945 4.783244805271734 3.6047339211092573 1.8125713055860846 4.1205749623506085 +1.4785500677219114 3.7854807575754488 3.023498898806632 1.9547499556100676 2.5424699627275618 +3.7676278963304424 2.881130597074862 2.483294139105415 3.937177045826895 1.7028367414536065 +2.7451720347569424 2.1547703950376125 3.5140479446150232 1.3614747598466024 2.2320719997274585 +1.1667362660895395 1.9659168997673064 2.7519514047608244 4.473574172998175 1.8980712951200847 +2.659973228968957 3.6788716740240077 1.8997388315707262 1.8480556705039972 1.0202084054120755 +4.992453612520945 3.1246464305568167 4.343015549341985 3.484959686434583 2.055471608382501 +2.751099284108022 1.3562626503597532 2.6089547967020255 1.1160123883744788 2.043146169374344 +2.4881863975577057 4.888046717846547 1.5471491335581962 4.812691487185235 4.052541970199553 +4.9295090827122365 3.3052774598596617 2.1883922302290566 4.731065256312949 3.0171699458679697 +4.689800250623733 4.672325010489087 2.8619702244407343 1.155023617701581 1.7070360576965191 +3.9688232102794117 4.251250460478414 3.9652721510245437 2.7244681447235073 1.2725406609250929 +2.340823471714591 2.608612477871405 1.573806607684535 3.3956390331419755 1.8414082486690981 +1.8160923918783003 3.605832075666517 1.1339326898518576 4.660564771571449 3.954782165371464 +3.623539699891518 1.1276063748117404 3.6413421866992253 3.347064514740403 2.5132215404650062 +2.1177496482132536 3.408168751781793 4.715006817309966 4.403707834661242 1.3274368231493217 +1.4805078769615383 3.4588799756314628 2.55778543152565 4.234023063563219 2.593015379795222 +1.1032819710726116 2.6365549817951575 3.8903784300226754 2.0785983386190114 2.373493885607639 +1.81800412657909 3.633709786680167 2.650893704374894 3.9175060763822476 2.213841445326467 +1.914027632629789 3.6125146262493018 2.2302259602679797 2.790750839315914 1.788587769030738 +2.8919729952655926 1.032091819172161 2.890364805544636 4.2029272844609595 2.276395890491294 +2.4392256095227474 4.78625172427585 4.322525123371269 4.663805400957874 2.3717090485982113 +4.939801555870165 4.979682165915607 1.63587799262153 1.8785500550175604 0.245927210623671 +2.14311462956984 4.756802712389238 3.597008716940452 3.112343690870094 2.6582448310432056 +2.440365680445654 1.4779918935585221 1.4213771453701112 2.4117291932857 1.380927400154722 +2.3732530206694133 3.146490371609082 3.971182588205709 4.339619487060714 0.8565288957916657 +1.6903473794673367 4.615636307025248 2.51324677335847 4.072070100357694 3.314701415586304 +3.909268019836279 2.624525187036332 1.5273257575852495 3.694649015912099 2.519494840739973 +3.4812833547387587 1.3122116636833274 2.394359807655891 3.4367711379623263 2.4065521773876624 +4.667049248627742 1.2956607030288834 4.724363392390654 1.378868380734731 4.74958920312166 +4.087488021094077 3.07565454481008 2.4410394806305407 2.0136545695312034 1.0983919364071948 +2.7048309081531237 1.5290900038367594 1.583878915556828 3.946754400473189 2.6392323185542783 +4.456206405684716 1.9076217127326385 2.4930954943019725 3.681564861401046 2.8120710114935767 +1.8622501879434057 2.2121973475376535 2.197570599878384 3.8711780499188473 1.7098025942602333 +3.4416713047126843 3.7452209593830323 1.3050881795674547 2.3751950040522125 1.112326844348971 +1.0587939230653505 4.510452814442784 3.016590169965206 4.563163074385546 3.7823057585435977 +3.0426707362706185 1.1455394807460197 1.64320430646415 2.1146652583867 1.9548356529069284 +1.317769634896747 1.9099031425280537 4.207763115506548 2.682237719922804 1.636413707908454 +1.5978467025508167 4.128340979593538 2.101599474536198 2.418534759777657 2.5502645472925063 +3.3492715242398514 3.1513307466552583 2.109593261886962 2.686072361743304 0.6095151384518448 +1.3733976835266741 3.6868815260045773 1.5401325583128425 1.7097682672833563 2.319694756463499 +4.826309714413713 3.003021700867393 1.3776565343408351 3.9270343642357872 3.1342792632280845 +1.7171056985739392 2.270791819139266 2.5933108816564148 3.3624791233268327 0.9477278639467367 +4.580831827677278 4.546642253025091 1.0434300216675911 1.8289308847189312 0.7862445757328298 +4.626350332810187 1.893536995248279 2.7402229797438604 2.640519562535069 2.7346315125368106 +3.4213713881014964 2.439568049524074 4.7171024157641845 4.796709589184623 0.9850254299771982 +4.232851340342899 1.6437987430725869 2.773735260329519 3.470548151447593 2.6811828652034304 +1.329204004677114 3.142488165305433 1.9182936024079535 2.5628982038753847 1.9244517503482734 +1.4538536211495567 1.6397441232786525 2.841290801089148 2.6742694329168937 0.24990281352545665 +2.135427041346656 1.08845702639266 1.4879410147978058 3.2586155456464136 2.057045091000367 +1.6331552018081892 2.044949791426225 1.5408009758584598 2.6613305052381513 1.1938011602652092 +3.0814989197923874 1.725115435465113 4.1109585234872466 1.1891829024097995 3.2212651142801487 +2.297210905084813 4.269601652198535 4.961122364879781 4.780048076662108 1.980685022196453 +1.6389984677594183 3.7376034691046223 2.6591520216202102 3.3921960434104803 2.2229477028381837 +2.5172341881973552 4.685769762342693 2.014011702469304 3.5159889869145067 2.637893534493618 +4.3025855965369715 1.521485075928498 2.147536568425264 4.468308256259229 3.6222232582739062 +1.455769478895125 2.159134137040729 2.073076830905448 2.8098090697822653 1.0185755907779894 +1.3899144458057817 4.586026588703556 2.483403165293596 3.3115463077607172 3.301659263823861 +4.938447282720656 4.093433246307104 2.816168289272339 2.9650263537939727 0.8580253172890943 +4.993884818726637 2.6816177987436007 1.1431301176788953 4.399492442865589 3.9938044975432287 +4.008057915965022 3.3808722983710924 4.335166890974971 2.4271968714356498 2.0084101658718914 +1.0770600827620451 1.1858225502286128 2.0695713640235582 1.7070814540473451 0.37845502924915564 +3.9414918331505118 1.6836871413357253 3.5754933306585985 3.754704870136148 2.264905914660204 +2.6875834456811134 2.7927586213488147 3.436303273293062 3.345664073416388 0.13884265241998053 +3.0386026277753397 3.227900100528795 2.9118703208418215 1.6333095609951833 1.2924980270044741 +4.747606209588556 1.7390610805547655 2.2346186545166233 4.348650954159925 3.6770200376620323 +2.1766023890827007 4.344625631508771 2.1431999600841127 4.765823611007727 3.402716502161701 +3.7595673048510623 3.5388521170507903 3.087465378432068 1.5493099012987592 1.5539103789990287 +2.9844622929414015 1.555972433944115 4.302542511059007 2.272070080731371 2.482619899940123 +2.4541991724468555 4.308848519430434 3.4820431618814336 1.6241373152087513 2.6251739628769655 +3.8333638016537686 4.739593576459426 1.0064007428642765 4.338594342311384 3.4532255340392384 +4.188351088699353 4.052925279391133 2.3773275107911958 4.569618207247046 2.196469587222565 +1.9656523252372997 4.92612293375112 2.9975553118433784 2.0978199170854226 3.094173557584391 +3.89650387454354 3.00742484384727 2.7495926006169693 2.8357044728181013 0.8932394848851021 +3.97766753665799 4.2856264344641675 3.9640158440433355 1.821746443816425 2.1642913080005113 +4.660552050531284 3.817595049124951 4.176785840379684 1.4704883313550101 2.834541005802017 +3.3749031795476254 2.827232902474569 2.16175757939277 1.9029190595481218 0.6057558185809253 +3.823673030197154 2.4009238934771964 2.488897913510938 1.4720237756018948 1.7487847547327386 +1.6262607131774476 1.5989676408233087 2.452468037178317 1.3311173135423418 1.1216828237953247 +1.4419032276092407 1.9784577135031416 3.8190457025471516 1.7250753533591912 2.1616203504804488 +3.61783675630483 2.45661419172568 4.061256858298082 4.291354345048216 1.1838001089273926 +2.15235585220962 4.090897521271878 3.1905830011611553 3.2795154086857754 1.9405805254610826 +3.2452667760660576 3.9348160277809288 3.591790075596766 4.4017311907999925 1.0637117939729654 +3.6285003623211036 3.5758637776622315 2.2367711597102016 1.4093154271594441 0.8291282164874508 +1.4214336779232166 2.8460454536103974 2.940420022025284 1.4030023814368642 2.0959894353309716 +3.1606121442408606 3.0983021781559597 3.6202978278609526 2.482175692672237 1.1398265335041213 +3.303635456915701 1.2915042732598332 1.9372723880365208 4.656698237395089 3.3828906057394073 +3.5035629561538117 2.3305204834593227 1.0508532202976175 4.836672321949765 3.9633893214242115 +3.5224068889443387 3.746405178211065 2.8235459211090395 2.0728551941445397 0.7833976009312954 +3.0179565997458977 4.914638736377972 2.5468861963098113 4.605728482977595 2.7993275422484305 +1.6592309852450602 1.5872069419784807 3.2269558989041167 4.702483469957458 1.4772843584588033 +2.070992130540551 2.764795391057243 2.5435028325068947 4.775015485992441 2.3368807601094446 +4.017784080139441 2.4572950729778142 1.0529923025477226 1.7851410920554538 1.723707571326968 +1.1091108281581619 3.154872333708001 1.328481432182988 3.6728415236394643 3.1114569539049324 +1.0580746658275704 1.3931774724555326 1.7390922075957809 2.190962563058477 0.5625661820229872 +1.4224688056079082 3.013867348787259 3.395976370657255 4.276397061978561 1.8187055608151765 +3.5172418477217544 3.5097802302916317 2.8552391155009693 1.9979475817629373 0.8573240050025316 +4.38311222670513 3.2449370617111444 1.009853211402965 1.2547611517449666 1.1642261831154834 +2.112644292134286 2.7530900538062393 3.750365504124431 2.7148121713708253 1.217596599297431 +1.897216088866752 2.076654807614754 1.167587042927971 2.498358994635593 1.342815043569902 +4.258582439833231 2.969749121611569 4.790949089270688 1.7032574889362952 3.34588265498565 +3.3740114695454957 2.8706281599362296 1.450267362439789 4.021278173218458 2.619826586920204 +4.590706298770268 3.419759597540608 3.1278509820179896 1.8339691479861187 1.745063430812273 +4.7779386969058795 3.4874087319422595 3.2901035336164313 3.5191693782167004 1.310701625707177 +1.9940447317069294 4.259169746718554 1.9900025320203572 1.5610337629366922 2.3053862015897826 +1.2341044778461874 2.320863204519799 1.4969724315791502 1.456785585712022 1.0875015000366657 +2.7458918618353603 3.5493112196963916 1.849862341216455 1.0394503476341304 1.1411618044466392 +4.401177496258327 3.7838735584569854 2.1536462940471646 3.392372787816356 1.384018597415063 +2.5583618695955974 3.2791204162883445 2.2870876192394913 1.252263118066657 1.2610926337340356 +4.504117806085798 1.0751653053270913 4.95127053546709 4.20684301594596 3.508829945192524 +1.4103865366241841 1.1453657217292634 1.8637437780732888 2.9843944431306837 1.1515615248093125 +3.260188776737548 2.8240873889440046 3.304612259318596 1.5012398171273618 1.8553534934589233 +1.104809393761275 4.992902484996045 2.342167148881392 4.876174511408939 4.6409547723988185 +3.9646022991038254 4.430893642614742 3.1719744509417986 4.348722176414441 1.265765707561337 +2.0770848113208786 1.9073205878499566 1.335450154156188 2.078537047386928 0.762232262805766 +4.260521428827834 2.438031153921664 2.1158593355040236 3.052455360431905 2.0490687924123674 +2.693279960414513 4.5373401997008855 2.944228496528764 2.716251799570298 1.8580989049221805 +2.9566865991178846 2.7759477862062716 2.987631214997992 2.397726410854486 0.6169717955014532 +3.848070237222771 2.146464234064568 2.20700339623287 3.9086623365233146 2.4064717199781165 +4.356401279574671 2.933386702019443 4.070144502712206 3.673872609916333 1.4771600796645932 +1.6120523042375425 2.0379885562161264 2.820778103765557 4.4666465879780155 1.7000896323645351 +2.0734484358961245 1.526023487217309 2.9191724555195697 4.224980733565931 1.4159128975506958 +3.7151638068801325 4.1050558696675905 3.037752541077191 4.651056472139089 1.659748593794986 +2.7364219433996357 2.6436539241351826 2.093012363824225 1.0552805223021156 1.0418700880182317 +3.5924656807180573 4.478890236182233 4.7211817622621695 3.172750022063238 1.7842055225184545 +1.944223149923591 1.491939056001872 1.5806546434605036 3.5420214871112616 2.012838989334996 +3.7636124732899283 1.8111222189548046 2.5951319979236684 3.654773941391591 2.2214993228966136 +1.7325070664455677 2.7995292073249156 4.581355336200277 2.5952862968570156 2.2545523897582447 +4.403154316618846 1.3969731517190396 1.9257926903850606 2.0833701962898075 3.0103082676971002 +2.0559899061325275 2.563050757202155 1.3452241933291313 4.278744324114935 2.977020501174457 +3.405573805857258 4.132555173940146 4.256085584684085 2.370972017462911 2.0204343767766884 +4.048578726241266 3.5876627697059065 2.532068884902663 4.392758756143639 1.9169273110704186 +3.7069434380206157 4.538852667290019 2.408835222858277 4.120266214227161 1.9029106663113473 +3.673646226398101 2.9288146678343305 3.757766627185939 2.447120193312259 1.5075039387206688 +1.72805029901631 3.1265825613198226 1.442756704182195 2.552024323384728 1.7850398146021946 +2.531880134343856 2.159626241800122 3.1062487184949767 4.322792517657637 1.2722231627332847 +1.7402183344807463 4.7263123741870405 2.5951584456310948 2.2838405148325 3.0022785460390202 +3.813523302719936 2.0723249913984043 1.8467730821641934 1.9615800890102246 1.7449791426174404 +3.170179922473281 1.4555699939345623 3.3884093071465102 2.360882927591778 1.9989241275557224 +3.1297125038149813 2.756319847051465 2.069785458772953 1.0606528115339637 1.0759975724175623 +1.849724048227559 1.4180146007593777 3.2721099766959574 1.6173959418532564 1.710102799289766 +3.301522039002982 2.9999352475956758 3.019727181484994 4.0213808620017435 1.046071072367506 +3.3564810770232376 3.817115406825547 2.3090936121495873 2.276973227530382 0.46175286128026133 +1.3076522208119972 1.2218953740655838 1.3617585107660068 2.565121115848322 1.2064144379417812 +2.181446340671931 2.437657149829612 4.459464771763181 2.0148668315655582 2.457987605328329 +4.423628498407464 1.4252620261926672 1.7637024949318834 3.7690170606441327 3.6071440239002808 +2.9507652243071183 1.488502470550653 4.593336971655756 2.8565395097707245 2.2703915487496262 +4.980976769116214 1.0434349307828024 3.452109833754124 4.2606695170481785 4.019702039961998 +1.0915985733836489 1.5098986153664886 2.98088467960339 1.1300249553067152 1.8975396291372701 +1.0842002228969982 2.563312006238474 3.173388432478006 1.14230975528859 2.5125788068343464 +4.454399189250163 2.58780667689657 3.7108527166540926 1.6306038344623262 2.7949245104357634 +2.5518201617135463 3.5624910879847853 4.372418672894566 3.4209263322377086 1.3880898369841306 +3.086261938867329 3.3553228706659177 4.437174595682494 3.317509348637646 1.1515398605607734 +1.9273710507904989 4.701840907114049 3.1891442292102705 4.82073021995035 3.2186574575166125 +3.9812370355743987 2.4523276631487625 3.782814451575189 1.2117646249689749 2.99129755791409 +2.4522326871154005 4.87618609139118 2.0974609497890246 3.4177216911104114 2.760188133293569 +1.3295174541760417 3.793642526659786 2.1888839533444284 2.790042043530733 2.5363957542622297 +3.0583379385864657 1.3123635188343812 2.5368880678453243 4.4592815033053625 2.5969257199867073 +4.184565401804566 2.398756522056308 2.7122561374674707 1.257858428102987 2.30312527926563 +1.578645862727071 4.380207463001267 2.457272701207386 2.087285095569818 2.8258871577712257 +1.6638646083433093 1.9673887294113275 1.5221455695457555 2.6084312111072707 1.1278933403176143 +1.4184945724780995 1.0769862617262471 2.097241689887927 2.3782435730445655 0.4422555648605914 +1.1928948922939098 4.755611943790674 1.1410005160455041 4.9792422261067015 5.23689337430879 +3.2857841965256975 2.8964230089263805 2.046097531570098 4.95589905734381 2.9357362030338785 +3.663385603477416 2.6776398337364626 3.064115061021054 3.815357317205316 1.239378735511871 +2.761406767836009 1.501301332997076 2.857047777166744 4.3920952927276105 1.9860102169777993 +4.977333330265082 3.337056742820187 4.372870245110545 2.1146128614314827 2.7910990119056813 +4.677665231107206 4.310853200513215 4.491176941011977 3.022932230083938 1.5133715990980694 +2.1663259182060264 2.995112554387237 3.65496276440113 3.078327635617523 1.0096511080862802 +4.231145887318784 1.0371924521524623 3.1045853233672016 1.8454256856067017 3.4331940724893344 +2.522481028252887 4.372211939919021 2.5381961413063303 4.123832887827174 2.436339126125596 +2.8030657354121926 1.4535501340549946 2.1158022312183378 2.8539613865070037 1.5382039191352221 +1.8700570164359993 4.785554663595963 4.8264771761496945 2.421335324497152 3.779528258548401 +4.438876184200867 3.6572932386344954 2.974965763132645 3.452375198379519 0.9158557035160856 +1.3666188202462308 2.97602059156798 4.823126990929242 4.833448906748148 1.6094348708412392 +1.8759527906365245 3.021875505486052 2.5765125364318506 1.916594881374028 1.3223578108307628 +4.054170617644531 4.5476990363973835 3.3857826098951302 3.6783226567570586 0.5737159394113693 +2.5353783842567323 4.066226857815876 2.9749574493190405 2.946340683090491 1.5311159225570539 +1.5038406129439754 2.269466630473297 4.814501048705866 2.4996413812810157 2.4381875396671395 +4.639753747889348 2.891781762596448 4.231002736623218 2.4300150161130647 2.5097734620473533 +4.260130882164388 4.190884279651457 2.6763903452068574 4.033154759155692 1.3585303702595346 +1.1540109998534045 4.238919742613329 2.6736307337108216 3.8169393055506045 3.28995690573584 +2.4053225556701654 4.014062083328545 4.27414024913404 4.647373646473827 1.6514678430839356 +3.2835016123066993 4.294520138986323 2.1627132294080598 4.488035125717333 2.5356025679796104 +3.0522685366761317 3.4063135905956936 2.3295310472592816 4.864479011431741 2.559552515825179 +3.934768983593249 1.4691786717399937 4.56737618335058 1.509180695234487 3.9283196445093753 +2.6504567897898768 3.8641266016122544 3.35861731205018 2.8724939073826 1.3074059724104694 +4.29405147279911 3.973376710624799 1.1639607783156238 2.1332318234984893 1.02094008743189 +2.192833013510757 4.478524316405402 1.768183558080426 2.142992667445784 2.3162181677448843 +2.730869077862247 2.320122163855988 3.5944007285467405 1.2234905453346059 2.4062269477804175 +2.992000898127093 1.3869218729380002 2.9800884968316974 3.7289492574112235 1.7711778893825756 +4.705950694287275 2.3094745781379067 3.4064870892695405 2.4184308006444275 2.592171484444267 +2.810129179486481 4.338065876542227 1.9836167583957782 3.552317441699974 2.189843004420333 +1.7655951704656525 1.8674199478024556 4.636034672085398 2.068170034545411 2.5698826981027874 +3.6789030876085675 2.183374411024377 4.967225282044007 3.433118002789318 2.142449804954105 +4.761936827955269 1.2568313238517375 4.867373121678299 1.5742680735846486 4.8093976184837075 +1.7115201420519486 3.829263301566482 4.997296307318507 4.485087181559512 2.1788056999607357 +2.049871136491685 2.935113289080794 2.7380134273723242 1.4565677704992135 1.5574840738317541 +4.193354468692612 4.92521555918869 3.0339274869017454 1.0879731385729614 2.079028374400362 +2.273735243929162 4.83757425951149 3.360576700732047 3.249524104903606 2.5662430081468113 +4.317718954368438 4.796208732845283 1.1163870058522432 1.7286321291550308 0.7770434731177313 +3.2699600803587665 2.442512661413213 3.5836536959349523 3.004635107780165 1.0099167077281281 +3.715420799836879 4.837962179682611 2.4071039737472355 4.6373854154905985 2.4968489058913463 +3.790852375407458 4.501005510883769 1.2865002890295423 1.2420534827223264 0.7115426862934837 +2.4956178625658096 3.1667901269343313 3.053936215693194 1.6455426345855293 1.5601425216187275 +4.763952559547295 4.883086783625458 1.9464502040260072 2.6680420241312266 0.7313601836232742 +2.296771892004063 2.1406038133330543 4.067321208329421 4.598058084595994 0.5532360261452559 +2.8863186233608 1.8066022342376127 4.746361120346535 1.5033959082379162 3.4179834475737167 +2.746272208836626 1.4142928701270137 1.3303706803226265 1.4868888693370486 1.3411438782776628 +1.031969957535483 3.4984490710435274 1.6701213558335612 3.2474948045541896 2.9277339725631215 +4.260439202471821 3.7326963711011403 4.279475824697073 2.940262640885203 1.4394458821917095 +3.01356009471825 1.4219186603348768 1.1033580107829977 2.5568322863895028 2.1554372933341894 +4.190868191702061 4.086210063482265 2.169695121991236 1.750065934955991 0.43248350074231967 +2.6624368980031683 1.2308324928953889 1.6716833089931633 1.7958550394271682 1.436979398378061 +3.041782640281911 4.034020036255635 4.568911935241736 4.171602105447067 1.0688265298074264 +4.2077397461025186 3.644367135178373 4.780557350989601 2.7522387280999694 2.1051045424634807 +3.358803918667799 1.8209811533272444 2.6275991282761453 2.145260228758064 1.611691555970926 +4.131617197903154 4.653780513368679 1.6595308984538146 4.21711903267991 2.61034702527309 +2.18032190494488 4.5195143939338 3.7014233418987956 3.7651821573589768 2.3400612571236388 +2.7985065201181616 4.821462340242062 2.69221393720911 1.583747805969975 2.3067395635999786 +2.8596794917704926 3.4641981096222554 4.431187877122824 4.258272440261086 0.6287626798995716 +4.845697651567395 2.176486557158444 3.147127040382432 2.6733422240443607 2.710933403591525 +1.9510191437685527 4.8906240586721745 1.4890236754783404 1.1617594455434266 2.957765868340566 +2.032268203629591 4.465179125574618 2.0109362584207573 1.5943745291167049 2.4683150585855493 +3.227817268809403 1.2801858596926552 1.643755948175837 4.853824327873669 3.754704663234374 +2.9544450078271587 3.157170563131706 4.079169575100879 2.6062604480866685 1.4867948571391083 +2.5200043759428845 3.234758704302842 2.8836410477861905 2.557355132089717 0.7857074829038986 +2.167530677762011 4.740755311378205 3.0019731182665907 4.736746097605307 3.103372730577641 +3.477812450291078 4.65445547602102 4.532160501529955 4.5326471046837025 1.1766431263478079 +4.06121397951388 4.4598672958634715 2.3724553771083596 1.7473102805007992 0.7414383713087713 +2.808481612783892 1.6126586177603714 4.169149555522283 1.5402251116624819 2.888119867136852 +3.798305678350003 3.7875599161847107 4.492918087035983 1.64340544361024 2.849532904959632 +1.1938925882923925 1.0142628167146008 2.6349050225614654 3.540735513781309 0.9234694005004563 +4.267046816435482 4.665134271501685 3.1597201111405653 1.0964493130460666 2.101323394470874 +2.8981116290993207 4.7299494323781275 3.4231561379015845 4.718453060715952 2.243529330268203 +3.988457725379943 3.118163422443336 1.3168732445673457 3.187730638317825 2.063375768364733 +4.378524311800881 1.5021598442021191 3.7247666760527953 2.3434570154601144 3.190844547907556 +3.9540010386696722 4.6319537709002425 2.379478834318364 1.6719707857759158 0.9798915990512617 +4.91334037653289 4.786815074033433 4.9713224081252925 4.972551083004163 0.12653126812980642 +2.861072508848977 4.329455024582971 1.70948450867628 1.5348821378213269 1.478726884999885 +1.9366820526221336 1.5929048703734732 3.3736313225821966 1.4477019933283017 1.956370755331204 +2.3033369220356708 2.7576364469526427 3.15047223051334 2.2077199674865153 1.0465036491966886 +1.9687039334974088 3.7162586202775993 3.3835055119764235 4.694635116235185 2.1847215434583753 +4.221455073216596 3.679615477772042 4.724430124873374 4.496552562959522 0.5878080727714782 +2.5411964853845608 3.006341517894349 2.8498074440911143 2.567880906663891 0.5439140316026382 +4.319952887968967 3.6795001926574655 2.156998683683304 1.3801121309344886 1.006842773611503 +2.4604070900752695 3.116146645471209 2.5589713880482123 4.543475362730309 2.090035978168774 +2.1724445724725383 3.367602531093274 2.492296990923996 2.673677342464442 1.2088429914506764 +2.5858405919574823 1.7846168319747613 4.49333606480864 4.581804228432615 0.8060931270863481 +1.3922495674514757 3.323594116660743 2.9149681969427257 1.825420917467738 2.2174771795830717 +1.4117678120489012 4.045022861104494 3.3587248897222417 1.34417478967389 3.315485523868502 +4.451929611420997 1.7457057681597137 4.610557866382983 1.135541186088318 4.40447368231007 +2.3719668415453796 3.422254470559205 3.0476059099468875 2.991221182543121 1.0518000480813263 +2.859852296427874 4.059433644523562 3.7455336310990957 4.585431017009398 1.4643848638790378 +4.549885140382312 2.7032800772919034 3.8004344252540854 1.8346334157620392 2.697095450285562 +3.1943758893793555 1.156963090280894 1.3604611024565658 3.265599525451964 2.789373285292526 +3.9027692729430994 3.9113842624943262 3.4008365203825637 4.543621985149385 1.14281793673677 +1.078449157370462 2.7653687333259924 4.090143842160976 2.3118902898638822 2.4510983970455404 +3.0048795525222305 1.2778598284931464 4.719480864083548 1.0607623217234665 4.045839653198699 +2.357480022650152 3.206641799973408 2.033071171343521 1.3879191305855523 1.0664412218969044 +4.7805027113563545 1.7934467658117788 1.4547141520564217 1.9177752858485975 3.0227353234185252 +2.2819553905755097 2.483654845568294 1.4321380832724335 3.4985135639094445 2.0761961123945456 +3.172292107373952 3.5318671920690567 4.155659401733592 2.6343966418372213 1.5631809320040386 +4.880641571278621 4.281302679144711 4.49041982402263 2.985238652347549 1.620116498030148 +1.9290235705215788 4.872788288650281 2.8005124886858925 1.2247138039213934 3.3389956889167864 +4.442534365112759 1.7236589457584688 2.2455519550396317 3.9661417684944595 3.2175631854143107 +1.7891773613561703 3.192358575970637 3.2314454822839602 1.6141204768831683 2.1411813781512303 +3.2181012516799434 1.7454669310316469 2.6040392578677056 4.629499066027752 2.504224286445406 +4.568945036015667 2.043038855078383 1.564716809709203 4.632233610168217 3.9736458518589046 +4.4288814022057075 2.2848281191971025 2.2996728034583476 1.115599488161176 2.449284404959704 +2.0049273456593464 1.2388683231939903 1.6445373407228252 4.416995617858414 2.8763468713557856 +4.147899864221226 1.512225155035705 3.640480832534639 1.40083395632477 3.45872798912502 +2.1921491454112294 2.772513152649406 3.866328244308864 1.0388763638715304 2.8864002697280515 +4.773096064173096 3.669972768064571 1.1333122995881335 4.67827702001463 3.712634627254054 +1.2438640057114623 4.042739795640157 2.3878853532945254 4.697275880810814 3.6286347702725523 +3.427142313890691 1.1765442160226223 1.9046422589759056 2.0308775570556645 2.254135565712199 +4.61310841317026 2.1728745432500602 2.6627588709222554 1.1649586482675636 2.863240619803051 +2.0032931328902666 4.447761292998802 2.6627463079647575 1.845204289995562 2.577556893053876 +1.8632357000832793 3.0005117440651423 3.4894270695966534 4.215864753544164 1.3494845345071798 +4.019609721643456 3.8206541935514915 3.421331841720203 3.6544158019817927 0.3064497262024862 +1.3710670370021125 2.724137309931348 3.754060980149597 1.5300642740009778 2.603259593748711 +2.0991999103043293 2.85356403682041 2.041681538447883 3.9485625360749084 2.050673151549366 +2.8715893335087133 1.9691508817019656 3.5837358236638464 4.623072010203558 1.376450096425682 +1.7386888024993103 2.669496910014767 1.0394198292001664 3.894833435733549 3.003296621613071 +1.6893450758741806 4.4866856885556725 2.602405005218084 1.7848572392107172 2.9143607966517977 +4.475780604025383 1.4269832097448774 1.2515731932602758 4.324055777593598 4.328430983902039 +2.619184710517378 3.9412565424976966 3.6053442035315357 3.7171752770327626 1.3267931707377125 +3.0748955606030592 1.5521436574023246 3.732482515806298 1.792397975200569 2.4663133181732615 +1.1538724306383559 4.109720681100065 4.154293448495934 3.8769887346976426 2.968827509986442 +1.481325003694225 1.4014351312875135 2.357537026726194 4.412124959063788 2.0561405505024286 +3.406488169244627 2.2109753777041314 1.4327318591288503 1.648758277386826 1.214873758100947 +4.881791242772605 2.630679579983786 4.92550698553565 4.6894531719325805 2.263454245453262 +2.522587047329625 3.969482847044799 4.34101131683297 3.0798522411741533 1.9193826271356145 +4.969868291524145 3.7903068624557936 4.901609824892741 3.1200787366014886 2.1366371202181216 +2.646873338231101 2.1381162982336384 1.1262520889763143 3.5476884816708254 2.474305544918086 +3.647107474336498 2.7934779543192256 3.5456575221776285 4.770849659475379 1.4932444979778594 +3.260987920623877 1.5901044928379031 4.1993570107462155 2.0459781763305167 2.7255993531257157 +1.7987795961493926 4.634585054967389 4.7037997744851054 3.9401484776923765 2.9368275235967065 +2.61057531024787 1.2759035293601437 2.109597370291094 2.502144422314306 1.3912016211714708 +2.190884131163426 2.1110939400864472 4.867014525436462 2.9575791785857275 1.9111017289498442 +1.7654327314947436 2.7505859103323385 4.343102916323993 1.7007112126133856 2.8200639534614216 +4.627508712466151 3.8872542649260042 3.466648680726786 4.128816909958841 0.9931985757678489 +1.8060270025919474 2.828529055631377 4.8460995774638205 1.9847226571064085 3.0385832765984735 +4.161368941550226 2.688892585829067 3.292380816851217 3.027749450902692 1.4960669697582545 +1.3416784047172605 4.9946521615961945 2.02947791785183 3.3309761642647935 3.8779008437377835 +4.4944181970495345 1.6690054114871842 4.208623714981497 2.2888200337960125 3.415933779087724 +1.5109968208757234 1.1851248716656473 3.512626146181248 4.2528578426992105 0.8087864315206057 +1.3194338849979599 4.500794224954762 3.720492791931406 2.6703621475478596 3.350198200543285 +1.5454001473333454 2.335957878534917 4.72440250340294 4.580852980300136 0.8034849046158979 +4.705090653609531 4.732603280705639 4.185901223861101 3.9342037479563703 0.2531966903941318 +1.656999670880512 3.0398604670257905 1.7064883884327249 2.7078775331983973 1.7073617662259155 +2.577244771287682 1.8450391010896308 4.263190103939815 4.234399196944201 0.7327714922100939 +4.369432066400297 4.98088609974768 2.0228206546983896 1.2102699372887282 1.0169143047768276 +3.2439296242083064 2.293060653986049 4.4493079203923696 1.0206271307621098 3.558089902702167 +2.8063400605897084 4.958895945284498 1.258468462410363 4.83324332356874 4.172830231953375 +4.043167606227713 4.760944677650907 1.8201146021707006 1.9039910780607103 0.722661184420877 +4.384344857034117 4.279374666180088 4.463110717928259 2.888910119305935 1.5776965061984565 +3.321375973787923 4.757142811685487 3.8720236216471258 2.7879751726073088 1.7990518204520964 +2.48921935686183 1.8971793254580982 2.1189163594070988 3.400178079895973 1.4114329580871496 +4.422649044260236 2.254515543785257 3.3045413519863622 1.7505819677413355 2.667506821690447 +4.830227216942391 3.592495252411308 2.4150114613565465 4.741712918260692 2.635435464127674 +4.590105086346252 3.168819986602128 4.335069103681078 3.6907885117567307 1.5604963363895001 +2.4495153931196625 1.782903850082819 1.1713812089163111 3.256375831523309 2.1889663144073412 +2.8636275800004247 2.074935652951609 1.3397110468016105 3.8749930298215576 2.655125173926369 +2.2990680440663946 1.6965387235230533 4.597488347974632 2.172655485489963 2.49857079009181 +2.0609901877674504 2.948063956436536 1.0627125068566445 4.763571527931848 3.8056875022700547 +4.558307111922595 1.3782813318594704 2.393790017175289 4.598824740544281 3.869721190619429 +2.7463927015908234 4.926228011792293 3.4598179060694862 3.629985922919528 2.186467272464835 +2.8613156166482465 2.1909510147122138 2.0628596822029506 4.177965879681487 2.2187976307317823 +3.247384921779731 2.9573828265934266 4.397017431120469 3.2478333785145965 1.1852110368943176 +1.4710016909078005 1.2954468283025031 2.3820555642801806 1.7616352360833507 0.6447797247310332 +4.816276549504361 3.8414100186881512 4.517446550659668 4.795124320174496 1.0136417989548197 +1.7303117782463722 4.019257589945465 2.721042885127799 3.645713768757861 2.4686614129783 +2.1659530841147743 1.5554055650034413 1.674118371085116 1.459899396066104 0.6470378986977499 +4.830860682170414 2.597253639455681 3.5919325283997066 4.372365545554819 2.3660253835347342 +2.373174998806464 4.770870952180967 3.879556402600619 3.3859405926758757 2.4479792590289913 +4.483539631897502 3.559029492513666 2.667043020915159 1.26779042437746 1.677088795127143 +4.584521149645525 2.8515318111131616 4.1947604841412005 1.0209294087738172 3.6161382360792733 +3.3750090546568154 4.1230113258651455 3.42661282456074 4.484819699976136 1.2958816261176151 +4.134385436943893 2.594894802632557 1.6738514435642093 1.972557602959343 1.5682017672458188 +4.995659025497365 1.5518563989113847 2.3999973892978725 4.076703187327357 3.8302896579796926 +3.8865841729321384 3.6151503716191673 1.2657327643331673 3.9622184916830747 2.7101128364510894 +1.2360902831787755 3.116128261399839 1.036498141042809 1.2942666603849138 1.8976267834106275 +1.7200346607890067 1.62702280737602 2.5118402227870305 4.965858205084418 2.455780010977013 +2.846855104774559 3.7889952595880936 2.3535839351231598 3.7284913203726053 1.6667328488169717 +1.964911337292322 2.541827560334373 3.146675755566858 4.393838852205002 1.3741354074563217 +2.563226021500071 4.804962740399366 4.2452657329882 3.746528630474721 2.2965457135195284 +1.5829274986258253 3.1278830523693526 4.100266974512683 2.262592351641626 2.400819793859433 +4.7784323363058885 1.690618174763149 1.6387472625063073 4.129698559647688 3.9672956356886506 +1.8722521571368675 4.804133753441722 2.232582609338706 4.27272403798937 3.5718492050544173 +1.703620609611749 4.601854714011614 2.589250410068181 1.5407883031211709 3.0820502451469296 +4.112393512803845 1.6913654867123324 1.4614088983385325 1.0632776176015777 2.4535454387114606 +3.9878377210959655 2.0805278986287283 4.9572289534968 1.8819322807527459 3.618740165343549 +3.3897453181939396 1.8905845873983727 4.456491737154643 3.302879699020862 1.891640460364145 +1.4431465494472953 1.7666576141312795 4.140900727930548 4.751879038093322 0.6913421037824355 +2.783687888306907 4.887459611673088 4.963355606007666 3.261710676653076 2.705817977919671 +2.937712111567659 1.9037389161315832 2.412932891778586 1.5010139050513538 1.378657610588616 +1.875108667441733 3.199485050269103 3.4448673722971366 2.879443771003724 1.4400266151326926 +4.733787601975222 1.0184583144675439 1.836298910285783 4.208896695098328 4.408275395561138 +3.2469611941510834 4.471734916348069 1.1415425533510395 1.8751455064757483 1.4276708175968131 +3.6333906721175344 2.8080795967132826 3.082742293785342 2.8002755830589603 0.872310617758092 +2.654225405752248 2.0056042394906224 4.749635076790851 2.4007097786686415 2.436833903548024 +1.4990561620930816 4.461944055456898 4.770655324999533 3.4820031522381076 3.230995062052032 +2.1791332746207766 1.7152104636321854 2.8402812212444566 2.1253474489626454 0.852264438601457 +2.360433830617496 3.5996854444246886 1.094888717683368 2.4533614027991177 1.8388019465209748 +2.922606887833895 2.233866677365773 4.577956978991376 2.2566666715965753 2.4213119932633056 +4.2398153135743275 3.358187851683947 3.23826386701562 3.114691442159363 0.8902455423893623 +2.9706252848059926 2.9990073496082266 2.514752080215906 4.7714123562974144 2.256838749943537 +3.4796654302308982 4.710257960940062 4.106832366199838 2.4469047178667735 2.066329541563427 +1.7171141819813527 3.3387726796061057 1.910104588150102 1.7855300084537653 1.6264363217860973 +3.894014976812067 4.829553666982125 4.32360691792827 4.06605039354399 0.9703442708946234 +4.351232542834393 1.478454941607826 2.5220311094346366 2.6948654534754772 2.8779720041357413 +1.0783957184996829 4.841544614942886 4.757597828642702 3.1282478185752263 4.100740307811332 +1.6371459193046207 4.982014339740841 3.397107632880978 3.73956586594666 3.3623536981444957 +2.4489732107271327 4.5989941616156464 4.498406928215367 4.788030892296968 2.1694405107838035 +3.165178633449492 2.0574062924167986 1.4359445675464269 2.2524521701192466 1.3761701292413913 +3.83710383012754 1.8191138544178842 2.0552710182397345 2.192700723373328 2.0226641999891535 +1.158315070986419 1.428773317965653 4.051433769160333 2.350249327706707 1.7225493221394172 +4.098189760549657 2.6016475927156857 2.962524484016787 3.306102327726676 1.5354752341843676 +1.0671100271573764 1.824987845982688 4.646005216884573 4.196667023551748 0.8810695774199785 +3.5324504330693944 1.8360855086142287 2.90968065356326 4.052754073124296 2.0455490215168983 +2.9660942331495908 3.6246724617537676 3.291131293751821 2.8864610771000625 0.7729704182155981 +1.4952808168223082 4.576732424798141 3.6174394491173345 1.3678697214351239 3.8152205666253507 +4.411282517469777 3.655793358945134 4.395011293901645 1.489743311291424 3.001890390975049 +1.9662437862668436 3.1389665395560105 1.6942511940095941 3.625053435434386 2.2590431495598144 +1.0548156486808078 3.069690946087179 3.595298465727752 1.46547387067994 2.931872314711026 +4.721983368126722 4.831229532958355 1.6745484687725107 2.8231952508864233 1.1538302104690563 +3.6766663341830896 4.255997564598081 3.174890741778122 1.8497911715011761 1.4462066054621292 +1.6572457088946622 2.567947907671167 3.198495694918646 2.05789257818017 1.4595732132270332 +1.781012639366899 2.4376759405228796 4.631518235673558 3.8603945517963525 1.0128368214680101 +2.208231241418383 4.270617487521407 2.844832760329373 3.69106465568148 2.2292477315960517 +3.1658566750865735 2.6807391151881794 4.112288570477502 3.9302643856765402 0.5181426934486548 +1.5637763317334157 2.8177059459617455 2.1929906140469484 1.246781651340008 1.5708758316766325 +3.2918570366012556 4.162003379107633 2.299281466148647 3.521272598841118 1.500138988812788 +1.4274126075612292 3.1951106206780824 4.8484248084478985 4.399123102407289 1.823904681892196 +3.1783333132187312 1.8564802872067143 2.4014406346745822 1.4589448805572407 1.623451160000307 +3.6500925711417134 2.6009838694196725 3.478089927606691 2.4676333061815168 1.4565890469898788 +2.953725080020485 4.309808977995207 1.8353671567230396 1.0777639086361783 1.5533596556683447 +4.08810022018097 4.417299025063036 2.96796471104512 2.543058336970327 0.5375102602417634 +1.3247821643650979 4.6988103079368235 4.918140124029229 1.238757044327615 4.992186470957249 +2.5505364657821787 1.4992727415341793 2.5248557532514115 1.7537438027109062 1.3037519158897357 +3.7945765248160526 1.959733809401082 1.202280248156233 1.7631331697767778 1.9186463431288434 +4.176226809870034 2.6216622849223628 3.9470298872127696 1.0007565210970406 3.3312456544224847 +4.667873164289077 3.8697932258364864 1.7817012331868107 3.090433724150726 1.5328771382811817 +3.131522496776861 4.236273589057825 1.6560619743740204 4.961027392105161 3.484719700104265 +2.6792962701153145 3.682653603762125 2.9914757333597657 4.14361445861541 1.5277923881262592 +2.435451059589807 2.5316468880126384 4.918119013741614 1.4500788417626596 3.4693740461163554 +3.829673027369503 4.727270724168795 1.9896667724829666 1.413179202168724 1.0667799885760008 +1.1921578182382508 1.8862152712412117 3.1586699836753116 1.813855257589243 1.5133546826725401 +2.419421576328943 2.2849851257975597 1.2241590499425188 3.564949484115012 2.3446477381357154 +1.5611654281098244 2.9171380793235717 4.465871730936019 4.696687694664488 1.3754773134994052 +3.060890866345069 4.602577063571978 4.701956716335626 1.4019111357966003 3.6424026636761515 +1.3067736118639637 1.9101179108833404 2.263170399276908 2.983687134722962 0.9397705620081008 +2.7265480986943103 1.5802192150753038 3.9678735011114408 3.0446790270279136 1.4718552735909731 +4.556273233609588 2.5923693769853573 4.421644181587485 2.6712582381089027 2.6307355072661585 +4.8330942781195185 3.415289221359407 1.2285003961632066 1.1252296124264975 1.4215611255757306 +1.4422391511862926 4.177011933291203 4.096001185906279 3.1697054664679962 2.8873873882095413 +4.6426368486261005 1.9444089569927567 1.8517096762594045 1.3787229079327985 2.739370409090411 +3.491216960803806 4.267764256522371 4.305190021136632 4.39763086163682 0.7820300579135036 +4.737294304047516 1.901927182868429 3.9407169392876 3.1560198103804353 2.9419477044941726 +3.3804349015164994 4.70190377005135 1.474779983512501 3.8414259113601346 2.710589035302948 +1.1039852502737015 4.9468515135242175 1.3686636051400618 1.0661988710793273 3.854751098654674 +2.6124053028705263 4.053434365283971 1.727499027191009 4.076272583630668 2.755594668696827 +3.227923299358155 4.109872612519945 4.440879363345189 3.1467896807649827 1.5660468375968497 +4.560914436317244 4.77924706791457 3.7062158855976737 3.591516213395894 0.24662755892926733 +2.557624005329395 4.1497280746702625 3.4875960035983904 4.713816750855079 2.0095802269664436 +2.071479795571448 1.9890896281894985 3.710647596700388 1.8441293216520496 1.8683357864074248 +3.1757465486574934 4.380534174141941 3.1990810778681946 4.178634084250264 1.552751530294723 +3.3086267176885835 4.312022561336972 3.485185800028243 2.209137947530244 1.6232995228594187 +3.9114603017765424 1.042103787187048 2.445394782671146 3.940208457344468 3.2353786068723904 +4.645884391894901 1.9428698763395804 1.4777777552596847 1.4630991617839575 2.7030543709679966 +2.510693600838052 1.741976329747482 3.122952608714573 1.6210083083381512 1.6872352901436576 +2.8129202834405964 4.573135266895784 4.090061790300869 2.800726435078294 2.18191256612337 +1.4396813536989779 3.3010201757144024 4.89599664187181 2.3311730216931865 3.169053867160978 +2.3941645430680767 3.501201524418402 2.102890429196845 3.798513407812344 2.025010657672235 +4.4649838439393115 4.916704059884575 2.7772554716216273 1.649814446784446 1.2145675847722717 +3.3484935697128133 2.6250705641011933 3.314753002386663 2.0254222595812834 1.4784162503812048 +4.886946001630067 1.6113507822182265 3.9458280420517786 2.377898968248184 3.631518363152292 +3.0960744920512226 1.4222592610346751 3.029473772147496 2.89699096355929 1.6790500654103193 +3.236358502034943 3.774249621767412 3.7335623359892343 2.636336777728999 1.221978225005067 +4.563572222404894 2.622005084716598 1.7211580486683977 2.8736096328447496 2.2578369303432226 +2.8194693568747473 1.7174387815274188 2.4160255899677874 4.557770022728649 2.4086387450721016 +1.1733072371263478 2.7101218526124313 1.387969971714842 2.8723183183566614 2.136606930754916 +2.4651423127214316 2.4784644814414865 2.4249137317865728 2.1963095252679987 0.22899205972564302 +4.090753552536532 2.0117639400872975 3.6605004260026424 3.635707228864695 2.079137444060912 +1.1113146735960742 1.277530704187119 4.205703194558636 4.936547234268875 0.7495070241201385 +2.4046247339078977 4.080822903317916 2.302155994756178 2.4097544970244362 1.6796481002947816 +1.3052353168261885 1.6438284077722072 3.2336663465664772 1.9049538923703624 1.37117543267528 +1.9027213738887183 3.6727393328512408 4.604681002981895 3.127425038781952 2.305482326719109 +1.532120789388173 2.7850488912413733 3.6713392470864328 2.156211349852335 1.966072575819744 +3.9391459368603057 1.1152641716703893 3.378440496260397 4.270847378782467 2.9615364707774368 +1.2383145287233233 1.4992093198766172 4.469123525904658 3.9366097639134225 0.592989880825111 +3.2111604191612666 2.6118108514571006 1.2368012829050032 4.079273756639933 2.9049732646356556 +1.3885470732970906 3.9965506405873965 3.5137296432429443 2.962949089005987 2.6655284327736086 +2.105912053440727 2.150765389287752 1.5680410188995868 3.219035281282002 1.6516034258127044 +1.6620526828341973 2.5338867130643936 1.319579948781492 3.3948308943202865 2.250946703773123 +2.024910555295887 3.059259164217787 2.688378754779595 4.657271856175231 2.22405420111606 +3.6661495752965076 2.0140045157149107 4.378944909017125 3.5339369199511235 1.8556998139476242 +4.734739307512184 2.519026116360622 1.927329765780601 3.432376361137104 2.678535084638101 +1.2648750246453075 4.846661967311831 4.267898881828961 3.2469155216685843 3.7244603265950857 +3.617075988307315 1.3368231713946699 3.400710566964786 1.2804784123680135 3.1136694266450515 +2.750838393450989 1.687556327604554 2.4958185625878264 1.9926671123663118 1.1763205912550694 +2.6914644832091064 3.70324410162541 1.0778974717638308 3.979750792150504 3.073182501785698 +2.9989624621770776 2.5007643826878185 1.2504288363318885 2.996339245764751 1.8156003095871107 +3.4982188022271337 3.792883127693718 2.763704475536866 4.296123192412164 1.5604916496195718 +4.93863247318334 1.4582890181064259 2.0132657949535684 4.31382188032754 4.1719718200448 +3.7416381527182505 3.5908993419792847 2.5840466092090533 4.265815426336699 1.688510747175131 +4.334254066887866 2.959260466862672 1.3185419041380424 2.2737587157007653 1.674230138661438 +1.5700861486505686 3.97675590512273 2.5213607589835108 2.0373572668158415 2.4548561459173674 +3.3263936434796877 3.9932208113066383 2.745455105110625 3.1503922441639 0.7801490616137172 +1.191124451464587 3.622285623602451 2.143431253365586 4.826191289499368 3.620462132986242 +1.2714159660914737 1.5463914902879918 2.2144834393425366 1.520378305366994 0.7465878889443331 +2.2818521834729886 1.4964980255611962 1.9732599466163894 3.3330413091167603 1.570282301738355 +1.3618380198606 4.761912508737875 2.718103442927623 1.8404444120895427 3.511522732992868 +2.8033088672826105 4.0188609758276375 2.430155634343352 1.6634936784373102 1.4371282069536937 +3.1261998497283296 1.6067895863979942 2.5253878227676827 2.238140172141837 1.546324274239924 +4.101258359617605 2.842005071757609 3.2917969941385055 2.921889737496888 1.3124596075698238 +1.889872171279328 2.909530286905724 2.8627488885372574 4.71562160917518 2.1149089795182556 +2.5388312598871594 4.224926628590271 4.030238878378622 4.0353529264766195 1.6861031243224809 +2.1242147853117257 2.0553680696780066 1.2767690029873089 2.710646985290294 1.4355298458711439 +4.455232375661007 4.6369152338757775 1.9205550090445342 1.5472654863228916 0.41515506590049 +1.348953897813359 2.6490773054189467 2.5113747012722123 1.289725507644206 1.784025680111114 +1.829072781554724 3.08950307404485 4.9405671239185835 2.7758102520027297 2.5049664342528937 +3.2881479688758275 4.607664641454194 4.662947155440586 3.5215133078601477 1.744704982974075 +4.908145645693162 3.6554363933122596 2.225855508777264 2.767031395249243 1.3646068338900594 +1.7264538093423996 2.7222861808333554 4.104062817817126 3.226163869811497 1.327549876659514 +4.413546301614952 4.518142868248759 4.331059210831757 4.7934516977192425 0.474075156153087 +1.2587886667493144 1.4910311636631897 1.2381711040093415 1.2252271762219538 0.2326029291289266 +1.4445348834114422 4.698231488937305 3.622005776759408 4.4708624640698815 3.3626030506740205 +2.1259730134699772 1.8543951455986276 4.0940517667219005 2.762975754202147 1.35849839507562 +4.4566190959611145 3.4987193430415635 2.0899020151424295 3.959025344973452 2.1002842566571664 +3.0079362764458395 2.1217174189697854 3.5980375201996853 2.4443013735282086 1.4548164693467385 +4.047615925439054 2.7874439526363277 3.741850105355548 3.466902409465775 1.2898176756862225 +2.7927394961688274 1.6285161155217254 3.8283499740038756 3.1704244795675183 1.3372666287149666 +4.688940966266923 1.9773693597248578 1.6553846900928346 3.0352413821524418 3.0424702246738256 +1.8642917257599327 2.867476302599923 3.875081902756545 3.0653015142155775 1.289233715381036 +4.611250840454204 1.7257945782866808 1.6652585879870956 1.8639935326260555 2.892292070158618 +2.174430080771301 3.4367650275443618 1.6161590874279916 4.646861010996045 3.2830844746006225 +3.022000186716788 3.0380888989553285 2.640261333468857 2.7691511126823283 0.12989003752094266 +4.973090988796267 2.770142603930971 3.3945780558875973 3.330690513593889 2.2038745890909825 +3.8149522805133556 2.396720748986006 2.8402519080501527 4.361287815501403 2.079646823086666 +1.3582749307029682 4.587016532961833 3.579819194033877 3.073417418942235 3.2682128284389784 +2.3817453441828627 3.9920852162608496 4.418189835850663 2.5105886935839283 2.496424767859328 +1.7637667597759235 3.996036258893374 3.978426530351245 2.9797732641030708 2.44547244165176 +1.352601598266808 4.743093215148152 3.338835330433589 1.77216222238264 3.734956228877748 +2.281823531542185 3.722040501470299 1.3038540522992625 1.6034627499845446 1.471050744263293 +3.132405992862008 3.367602091892593 1.7762907684293796 1.517383152556047 0.34978616118482697 +1.9694003567121334 1.8059022290146487 4.5286688239154635 2.9095310324159915 1.6273717539709145 +1.7534045769067474 2.7396794351394655 1.5972423618965235 2.0963030347817027 1.1053504653287916 +4.104218854661747 3.3430902836768364 3.9344629775442175 1.703980711226135 2.3567706383797686 +3.542450715681022 4.743009925412201 2.674733446264793 1.0857785739168144 1.9915119890246038 +2.5987189806016175 1.3055532278822009 3.1094702263991203 3.8244941067142473 1.4776795367830187 +1.297941621522276 2.996520007339659 2.766281537072054 4.602100597842112 2.501079798137725 +2.7692157528417125 4.173042027821365 3.0810348088796773 1.7366453703961593 1.9437363948409458 +3.36586770542805 4.233718009199382 4.061615581261604 2.666272433457032 1.6432122960473385 +4.844491651001254 3.5995356961608413 4.085189471180473 2.3914057705288383 2.1020986071271137 +3.1122530060182436 1.7436182697067415 1.6833792109186634 1.983957116725715 1.4012523394798697 +1.3016519986870025 1.0875269268715386 2.8198934089770558 4.870694628674678 2.061949366277754 +1.3776665336357223 1.953815106496262 4.939428348692092 3.957590475628185 1.1383992212716472 +1.9780527709629085 1.3256906667200372 2.070935184484309 4.22387139947862 2.249602333943983 +3.8795712072150814 1.856626931701335 4.364971233060716 2.7259809472422756 2.60357306385687 +2.3136690500571633 1.4614642028381324 4.003671607967523 4.81195242510935 1.1745513956328482 +3.6383532481826037 2.8201121416909105 2.8722599067352657 4.17398092888606 1.5375292282952084 +3.958791740840576 2.107433908171742 3.2879265829296362 1.9631703903942084 2.2765115405473364 +4.12574143225827 3.345386939949394 3.715039829137325 1.9163880445725425 1.96063800222905 +3.2125202519181806 2.6208758821147895 4.472590414757799 4.687140837615457 0.6293448532151922 +4.915408840733471 3.7339578667332347 3.9550269841925045 1.8555361762727367 2.4090844851324134 +3.1711833956773114 4.571186984704748 2.3840475938627983 2.8884130494096203 1.488084191851609 +3.0885744841459006 1.5743819255445484 1.9850479440104376 2.868973033529812 1.7533119141800022 +4.3444622650698435 4.547883886945901 2.037972538986463 4.75367233695569 2.7233078689227894 +1.0371403952167628 4.69822780348378 3.577506841697356 3.2196674134937764 3.6785336844112724 +2.3256156558265 1.00454686173165 1.2559894037021961 4.1232636006945 3.156973880073936 +1.1285096685459366 2.6185943154069466 4.549944896550815 2.719553593015177 2.3602297724733905 +4.437063566493407 3.3009638062763687 3.3607789037106097 4.141838187913468 1.3786864293974512 +3.095849888873131 1.6736759495448599 1.0007571497390568 4.377502725443602 3.664012745166795 +2.065452672135234 1.9521651186236815 3.656451578723673 3.861101064565143 0.23391340670387187 +3.738400608331523 4.350203566010761 3.9998286946997204 4.122734678664454 0.6240262333583448 +3.405804914444715 3.5992035340691686 1.4942758325223253 1.7908990197167216 0.3541021621707583 +3.036716240058151 4.691489912438494 4.027772292071669 3.1793004841487114 1.8596183252601004 +3.35778079197263 2.4456381344084823 4.25076295511291 1.2445249103089764 3.1415714872933833 +4.483318777039489 2.067235014910992 2.136149584505152 3.6565723083626263 2.8546709100775827 +1.5470105797121283 1.9470889746100424 2.691617139637511 2.8054047830528606 0.41594512842213943 +2.002082376865414 3.5047571724395343 3.5142951183438056 3.463249948526768 1.5035415360459363 +1.5895374229021488 3.5506798786409424 2.34367559584819 1.5286729214227979 2.123748829551585 +1.7863663381745716 2.302819493222597 1.7685356779706898 3.8656363166804137 2.159758076784479 +2.220292031649881 2.991422599374007 2.201432173962376 2.3437178786161192 0.7841476737371251 +4.707554138855145 1.885471341844903 3.7845805697295085 3.357154584753049 2.854267731978598 +3.2535354261158353 2.361727529267855 3.8919300288306315 1.1549056082392402 2.8786496841043476 +4.958249166009455 3.5890953633914506 2.0632496143200334 3.515688311209143 1.996036147830063 +2.7587035655178864 3.581119638167731 3.932583152056289 4.015017008755947 0.8265370755647771 +3.2709913351279654 3.6798880222403456 3.2452389203637955 1.4292359081630819 1.861468087573232 +1.928429707976084 1.2523754557156836 4.929366842175147 1.1565813171293398 3.832878809719209 +3.908886161664303 1.9032512432616384 2.1615517827089357 1.8315034797280614 2.0326099744458155 +2.5906157845859776 4.1067879341426226 1.1858621290343399 2.0521716177531433 1.7462159423551977 +1.9318690826440523 3.552138296208997 4.188872256306223 3.112614456016203 1.9451486259696142 +4.456351292163714 1.7602828114615123 2.4251687327857603 1.016190777636523 3.0420394689636105 +3.1136056413616453 1.8918653399062961 3.560085176724341 1.795618593774245 2.1461574235241447 +2.5184876601753188 2.179951378632388 1.0722972859785314 4.185302864357417 3.1313592168480087 +4.9013611661277245 4.505819726057714 3.121029185850605 4.445543612994754 1.382313820565233 +2.03956842349293 4.644307567266779 1.8153021273324854 3.9188493535040996 3.3480706294584075 +2.5043200049677763 1.523744236339029 2.317809392740491 1.8071974122315533 1.1055557121471167 +3.6828175256439746 2.696219832580624 2.872965165697884 1.662570136694192 1.5615476727256115 +4.744756082963139 1.1933421489190081 1.316010627179646 1.5012274340157075 3.556240458188585 +2.9396936425485816 1.3086862973458557 3.5017329188831847 3.398007748095148 1.634302258200805 +2.379868987241347 4.230184739743358 3.8525353514661345 2.3197600833442813 2.4027210421776184 +1.250260298835042 2.0006680799128964 3.616352170596944 1.974516656252399 1.8051968574272463 +2.3804923476408075 3.641446828166186 1.7548242934767857 4.557182124776567 3.0729815516212002 +2.1113404467646384 1.2087421331465733 3.1320273942557337 4.257941157034374 1.44304037260242 +3.697844351897085 2.2108040752924913 4.997961969442148 1.683095765320068 3.633129055714233 +2.804701044206018 2.4998552464840293 4.404964027238883 3.696776916721744 0.7710122851753853 +1.2469666900557734 3.406212167803968 1.490201155390238 1.1838762710454596 2.1808658757348813 +3.1340461863902718 2.813506142371599 4.773744208770216 1.7537554330276737 3.0369521111519737 +2.3166842751968 2.5515992234738687 4.34663597440322 4.719473368534317 0.4406730708660155 +4.0382295009784706 2.291620103735733 2.4772563621800336 4.690102817266233 2.8191015980847864 +4.289389587895727 3.2849202509575295 4.629643735767245 3.0482465252850464 1.8734395603194518 +2.966319808801512 4.192769190875879 4.825375019169604 1.5494647195848916 3.4979660343856676 +3.1507002713898116 4.148472957771126 1.1383961521539026 1.9284939527233784 1.2727155487984378 +2.273947281854542 1.3035076849559868 2.3344997030911965 3.0505262275898386 1.206004558454998 +1.5951619370996868 4.512610938735734 1.022770197461547 4.2287308571787765 4.334707882753081 +1.7350142648499292 3.6073000002388476 2.216709621930898 4.86608498633682 3.244170725541711 +4.0508296951506875 1.2702289912037146 2.462130175933811 4.017931691125106 3.1862609167269924 +2.2403933784362793 2.1945015975140088 4.299903872832882 3.3560424158103057 0.9449764577009304 +4.619535231053266 1.5956563624722344 1.0690241302836032 3.3100945039095575 3.763806561367743 +2.7467411558307053 4.7712814898429095 3.0475906107536845 3.3565215917620974 2.047975076769507 +1.4142695918406831 1.3537576575318577 2.9421133834971003 3.4990528434483656 0.5602171509732656 +1.5892637605249096 3.8358869294224913 1.4460231924504652 1.303334456088899 2.2511498702911523 +4.92760788184402 1.7418289931605173 2.47220826001815 4.7568412923071275 3.9202978483537985 +3.6485371250454857 2.4697795906431 2.044835086647335 3.5000291498200244 1.872714363271514 +1.5451677599897677 2.307837202677463 2.2967174321286583 3.867307044487288 1.7459714800816164 +4.33749325330559 3.0612039213867916 1.2157400081843446 2.609011495952421 1.889476090718589 +2.531333513212898 1.2254722467707575 4.37773817167121 2.734363672810266 2.0990363004722736 +4.813933851848209 4.7484635250841665 1.9358295462252548 2.5272786429551455 0.5950616755506896 +3.5660594404347976 4.710955381543338 3.1195580255782085 3.959089305080135 1.4197181006203137 +1.659019317956806 1.7743528430426996 4.096626618646667 4.726581393868712 0.6404255154456263 +4.702069429992179 3.562678036830561 1.6473203507333123 1.7534004028258021 1.1443188909839415 +1.8224226358757636 1.3205266065540608 2.7307357230181 2.4846800488858083 0.5589660267150304 +1.3010255896365468 3.256399601036605 3.424645267318434 3.4319242759568636 1.9553875596478345 +2.8633642455537864 4.535670253888872 3.279352599206298 1.9880738028055047 2.1128199912789327 +1.4513282335696696 4.857339662752921 3.520177985435149 2.710968053622066 3.5008191283572287 +2.108129844824194 4.1079128766257575 4.047770305375414 4.971237650624582 2.2027083583677163 +3.052845628968864 4.55062376629779 2.667765550451605 2.0921407024095973 1.6045819749529446 +2.5907046336252795 4.049289845162106 4.541952350865268 3.2574786170927177 1.9435389350526338 +1.2518157089405872 1.7817010231621402 1.40084394494292 3.0042440992674897 1.6886889888655423 +1.83530989818157 3.4841396516394525 4.552438593204588 3.9264079887388807 1.7636762383203104 +2.470757749500367 3.2321978885595417 2.7585444162251953 3.047968571681724 0.8145903431370767 +2.556663947787223 1.599552306117654 2.026335057538095 2.7637093900296095 1.2082150474301847 +4.124521945749449 4.395575351583322 2.7427546571285077 2.7455009491647573 0.27106731808554557 +4.258046619930363 2.0879652965322015 2.9275586415868813 1.3196984597375119 2.7008271537694157 +3.2269419490336286 2.0228406818215348 2.846800463682676 3.878461391121602 1.5856179019252765 +1.5459050359340987 2.409603123348405 3.2242138854038562 1.9468629060205567 1.5419467924460315 +3.7169435897835426 1.2929446165707752 2.5463568866758672 3.56360251312894 2.6287943408860373 +1.3598518868818594 4.424344887561988 4.181263277321955 4.403122203037212 3.0725134229384623 +1.4888304190638562 4.643410269033934 4.734928014028208 3.2322497418217577 3.4941974786206065 +4.070001627334053 2.525942999653558 2.9329549358521856 2.280893237246434 1.6760971047356388 +2.3495549365897928 1.054288052906169 2.177782717996279 3.405512040073872 1.7846668003458217 +2.588900083128346 2.9919772624144954 4.130346196453772 4.451524707253812 0.5153899962756456 +4.227292989981219 4.0517246115029115 3.080945990094415 1.414796294463085 1.6753743055728998 +2.2007190744058023 2.6742609111774054 3.98980033567188 1.4020310990957077 2.630739723527025 +2.043384111425842 4.0185382275581665 2.8695489099851197 2.7348668886296514 1.9797406469916354 +3.1439745965897803 2.1611614802763777 2.538443465115843 4.462134742131459 2.160210580212872 +3.0760923609690978 4.8224821587809155 3.238815048760646 1.7047678105590744 2.3244737587107904 +4.655801689019853 3.667197572832576 4.605460845128814 1.8430493127151863 2.9339828855932737 +2.9783654281908496 2.22182895627107 2.038364875643108 4.127737598113091 2.2221219153652343 +2.1499027425277544 2.271803635375676 1.7809758910861921 2.7259668785961706 0.9528209664738726 +1.618752857806435 2.7801557284485634 4.538854078670406 2.1635412057833543 2.644043848357798 +1.226817469392481 3.677982282982338 3.945041936382986 2.0813501844453435 3.07921351803044 +1.2764505802431954 2.805589436934568 2.471694767709755 4.5579652444430785 2.586656170644349 +4.017074158384015 1.4909019644598218 3.5963877236179957 3.3509949282081783 2.5380629577287515 +1.3823659895437959 4.417467806474541 1.248072000212924 4.640221104669125 4.5517599438018825 +2.4586149595966544 1.1730654440552377 1.6199294537675675 4.66593587042842 3.306174926897828 +3.949944728572965 4.2219196462749125 1.8196256119756642 1.2504807649485508 0.6307901495398429 +4.434418836576846 2.1051039442163346 4.84364933608202 4.569212393544165 2.345426081376684 +2.7254710398242703 1.3938913328129283 1.6984696092495533 3.5837747443792254 2.3081334382289778 +3.457786658380898 2.0253494041815694 3.582463207143244 1.2841926927242149 2.7081218297310814 +4.653702591432374 2.343093324996959 3.8154819724532305 4.492560254409771 2.407768714398131 +1.0426232722893047 2.744381573008594 3.328732891159002 2.951736117109069 1.743016890827814 +2.6919533507912385 1.6457725886931422 4.911601499530624 4.525315296954366 1.115218013343104 +3.992326967129997 2.2218966685012806 1.0459806619859084 1.289182728346709 1.7870564309457966 +1.5960547041078161 1.809904889354283 3.8048496791368716 4.508443627296863 0.7353749693981384 +3.510095815948192 1.6191777667794676 2.997525708580003 3.8466379749772206 2.0728151653290925 +2.5354226699628684 2.042955938693992 1.4358180591287955 1.8849968100007048 0.6665470963416618 +4.126753037785079 4.414532500187121 3.827437560931865 2.233092372492395 1.6201091317810967 +2.066962493496436 3.4696712966904384 2.157764259299341 2.820403321291425 1.551348611059326 +1.0985061142009251 1.0668731247246366 2.0231163732206157 1.7395249125874663 0.2853502454305061 +4.763320064287248 2.0271189631211795 4.1219197098930564 2.7845030298648945 3.045567244708275 +2.240875346852811 4.306004191736367 2.646931966037648 4.281098037917714 2.6334874019926535 +2.151308754363097 1.9104102773243041 3.2272150139613762 1.476119976644228 1.7675875949882527 +4.634733619982889 4.328059180955593 4.624121276498808 3.977221833244818 0.7159106796486758 +3.02604720056789 2.954168113548715 3.5201197414068917 1.614611490893822 1.9068634707089256 +3.9702872007234458 4.961890412246957 1.9953365043263775 4.588111171901668 2.775924603789501 +4.67661240112513 4.546427652906498 4.412685552378896 4.634695880369435 0.2573648274399887 +2.6536397928291438 3.2610419985244703 4.245420851814817 4.042397094626423 0.6404342944178112 +3.1037033917252312 3.223830458484791 2.048452608242402 1.622805291521067 0.4422738409631845 +1.06208860333806 4.49864006186907 1.0684836386369403 4.405679689183472 4.790278009355509 +3.877568504065149 3.0227988193340374 3.055997736407738 1.1676256255299235 2.0728194429511837 +4.7815456435507535 4.061061022605902 1.7405910241509326 1.2937621386238223 0.8477936906815515 +2.4969922873471595 3.3832285068594383 4.6568654362032635 2.2103305459646423 2.6021044571520027 +1.6652084916932126 2.457719230585462 3.9878173513076667 3.31236289620905 1.0413030261034049 +1.6500674497812002 4.116939277759302 2.8044864485352554 4.687260075510702 3.1032713619833987 +1.2377265420772723 3.1714215250465885 4.265535921391786 3.860493446649177 1.9756608245107055 +3.4011850976340616 1.4672338476036826 2.015979855288745 1.1179985355559592 2.1322612147865705 +2.6354800365207947 4.168020805583277 1.5033218599934677 4.833821144774028 3.6661842145154746 +2.118889602108778 4.886983481106908 2.881391176879934 4.874502297361433 3.410987490673915 +2.805397040225397 3.4549402140399788 3.3101854301955216 2.48444720583911 1.0505950455872137 +1.2081057088072629 2.7140590993534377 2.1836519875454368 4.553036967758019 2.807468752979185 +4.778324539157739 1.4788936282239646 1.465513359696832 3.8234606609056456 4.055386518114298 +2.126288229119331 3.6168574834569474 3.105689582195043 3.3252924181152235 1.5066592539525265 +3.48743079012916 4.9356026788877845 1.8557956597779142 3.176408827594714 1.9599033033294895 +1.2011905287155304 2.028346427476682 4.723969689583546 3.8088846556115747 1.233518342082862 +4.708542636133121 1.645391317249974 1.8062883481386116 3.3001708045151363 3.408017135497579 +4.036999069788033 3.123301959351545 1.3651585128676635 2.8371671878943996 1.7325276185313627 +2.619928713274503 2.339072229902832 4.905396870067921 2.655630970436703 2.267228918171998 +1.7810349905163112 2.655976405671422 2.964907029117926 2.225650443797377 1.1454356284372451 +4.3983054858665325 3.7199551818948735 4.450560384873932 2.6454089377454326 1.9284011206096512 +2.2379532590945455 4.564303017588999 2.3067418148346674 4.664100321651841 3.3119544574934143 +1.44531854073393 4.887568954303383 2.626686272780503 1.9346381125328866 3.5111278196359046 +3.694073469361994 1.616049368757281 1.1836992441930105 4.19714392975019 3.6604689638906702 +3.6432318208229986 4.751357309535127 3.2416659194064654 4.076805582161832 1.387587962992127 +4.267552328138677 2.1413460063934115 1.6251975698459082 2.1038326538902674 2.1794138813698702 +2.1146763613164055 4.179434708490966 3.977232717390601 3.7561734421102573 2.0765582667997773 +1.4523761502347172 4.0827118394072395 1.8576260697585907 2.3080066300443027 2.668615462523209 +3.3552893736321523 1.7034955314183655 3.354278523101742 4.245823160068895 1.877038821356734 +3.406860648097361 2.7923340035912605 3.559877923420192 4.255075261282464 0.9278697836327665 +3.1825905192571007 2.860216766983461 4.424793867108738 1.0393710653683694 3.400737035217306 +4.9540754513572125 1.4392590265645633 2.8683098659871225 1.8686532236071334 3.6542096139448015 +4.72588527915011 3.366195524464052 1.1780831138722747 3.6077001017716794 2.784204542932794 +1.604198862517027 1.21366598473556 4.65963886388948 1.1725692355743171 3.508870262826245 +4.829203640592388 4.710818425363241 2.165198489976138 4.609858663249728 2.447524958396729 +1.0225596858028672 2.721987858179327 2.0372649659182613 2.6147833483027756 1.7948770417660427 +1.0735559167954118 2.8512295392868983 4.145336346790479 2.2116281067814922 2.6266615818526486 +3.81509860959366 3.5328844033198097 1.692919792173413 3.1035775664445096 1.438610515161857 +3.9620282873753245 1.1631760995332088 2.613782063721056 3.372565965117846 2.899883890504503 +1.5555928101003595 1.7259232728594038 4.8612123685984 3.3090697672006497 1.5614605731870035 +4.616873829074384 2.0960580792362484 3.830964704749872 2.156131458534967 3.026479546809917 +1.477823318862117 4.079692166911197 1.3922110293243528 1.0195122400399859 2.628426504580693 +4.152032974990291 1.5261077453779408 4.363808111668783 4.202731219869855 2.6308609002731935 +4.656365227097474 4.973850570795793 1.8954013457522376 1.5957625013632826 0.43655512885543823 +4.982606321851097 2.8930980695639037 4.606221413327972 2.5936061050087544 2.9011489302786826 +3.777407848200204 1.7521682488921893 1.9873105007355547 3.3463513067923385 2.4389726007343255 +2.864016386791819 1.7997198186067949 2.2611526648287086 3.803244831550185 1.8737063365730922 +2.1996221583588884 4.267919836740744 3.7379303078699087 1.306862025302376 3.191856557069197 +1.811525823769812 2.5274806996910746 1.5621027196705914 4.775488154102286 3.292178205166482 +2.360080339876886 4.35643682607335 4.956225674194712 3.9768781515876643 2.2236368386081513 +1.8942617660745573 4.59593771331749 1.0143588044338645 2.776419832951145 3.2255095709252473 +1.565317603062256 4.615925110571267 4.114355287725774 2.286478536710484 3.5563098264595214 +4.083091389775841 2.0216269356046066 1.9615280744486547 4.421376722470421 3.209437811671386 +4.801409647026624 4.290327515282938 2.490329919149933 3.2798052955157253 0.9404660096332987 +3.7730382903544126 1.479931654519321 2.338313987072815 1.5005831398266904 2.441337956068074 +3.843215656836052 3.5562714256170405 2.2381424673058605 1.6152611607598821 0.6857974291832062 +4.280183682871876 2.512804470866902 3.1720738369434187 2.9459487479310273 1.7817861361308722 +3.890342172192101 3.210382209262843 3.8060758290445666 2.112784235407308 1.8247142166019765 +1.234435289651603 1.5389013696341194 2.9420998691220848 1.6145168980238007 1.3620485083175515 +3.9276036267379566 3.5736577176443567 3.972716670030063 3.440073969480045 0.6395200958635398 +1.4071837860762564 3.5011091756225206 4.434562393627601 2.6293358577799206 2.7646638824123073 +2.7185930699263414 3.4680272865106962 2.282352525377134 1.8820140660226548 0.8496602421119419 +4.184776993042944 1.2407003550274611 2.570633257824149 4.642189417802512 3.59985168784116 +3.9579895910905956 2.7206097484183696 1.749551715235413 2.411998053790244 1.4035469448922058 +1.7741142106774506 4.7627986302449425 2.2208190464730313 3.8796294750809905 3.4181700656673004 +2.3580542928058947 4.041660406186737 3.3400436315046083 4.671999793240154 2.146773570220817 +3.1722510852985804 1.922849547164844 2.2192393026568804 3.805615032375063 2.0193048703278667 +2.22879476427048 3.4663947741057735 2.735965602445744 4.48699636452745 2.144239378917559 +4.781448150588951 2.966218420988498 4.005479416498238 4.05006136336752 1.8157771122062285 +1.830851464353492 3.5514801582861457 3.9286612098125917 2.554887025139441 2.2017762404156263 +1.5480119376334818 2.891386945768924 1.1700402528560807 2.7554441339865985 2.078018738795829 +4.1131608143050435 4.392818129129687 1.7586356293927152 4.63885846694333 2.893767752892938 +1.349122270022992 1.0973457813965344 1.5413599317715612 4.2912672083127195 2.761409319495949 +3.9211997164461345 2.5371953567470973 1.5518115646459893 2.5834788498516654 1.7262113008057824 +4.698225254107828 1.7134277648705516 2.162407545709444 2.4132890337741273 2.9953226158146466 +1.6438920353589164 1.1309991831429431 3.3511859450287678 3.0328806963616946 0.6036367361114161 +2.3010237798821844 3.8378878975258854 4.206900880082824 1.8363334571975316 2.82516215862838 +1.8825511383196964 3.7519509144005125 3.8864629151143357 3.098563445257284 2.028654997137766 +3.421196740326702 4.140825388672251 2.590057134707526 2.8206513942288356 0.7556712936481202 +4.856803522533093 2.6930349906046436 4.356433182461771 4.211632505900232 2.1686081932189776 +4.61212130659989 3.793481746348607 1.585481182147157 2.9269123288515706 1.5714987276345889 +1.1915789562910803 1.809235023610769 4.374105603538171 4.740594046187653 0.7182010833272715 +4.009285316119557 1.9866965545254471 1.7636518035544166 1.064396118535139 2.1400522917813425 +3.0896496412477936 4.593189473805886 4.1682791899738 3.965707666989102 1.517124665284022 +1.015174161081648 4.408160734842001 2.8570021194588495 2.328101524172269 3.433961812456935 +2.0971042950924583 3.8767809371563433 3.696829504301549 3.754121017254053 1.7805985700780993 +1.254111933069975 4.811517223904165 1.9454381875048132 1.3236621464537341 3.6113346353502385 +4.116098398107427 1.2745023029143043 3.947886157451967 2.3773925383467005 3.246708883757082 +1.5911798291818413 1.4941095473611532 2.398640775841859 4.892225735676526 2.4954736206833372 +3.2080348983979903 4.27043944585494 4.983210361244488 1.5490361587912092 3.5947539380676425 +2.1900893409656486 4.95488496622464 3.166634262948232 3.2206111492972496 2.765322468304771 +1.2762304070496118 3.8787811750144487 3.06498493441603 4.191950658223307 2.836075147535908 +1.9354240501678288 1.89497433555885 2.241442148225648 3.820957653105075 1.580033357105621 +2.6625092892588156 2.06110777688595 1.840323624010633 1.3543671032953064 0.7731995338268872 +3.5418863003480845 2.6246637950898646 4.962469579381986 2.015652839917713 3.086264087880202 +3.841812169836452 1.496846600002662 4.967786631204339 4.293002312359908 2.4401224150981142 +1.152493264417545 3.12175117896907 2.6556665387649936 1.5121837316296634 2.2771758088118528 +1.536553702950326 4.581210391554135 4.447831663339993 1.892230646872739 3.975051057134785 +2.976733412779584 4.556265561926157 2.4079189686105056 1.9514464798046758 1.6441681614798953 +3.165236907566107 4.228094645510076 1.7318613292413954 3.1736377164690524 1.7911967289704964 +4.747938871027792 2.7605092341560247 2.4468030636176534 3.1217801817257755 2.098921311408741 +2.051506200645024 1.7686274687576544 1.017421103915268 4.438985611790528 3.433238130177672 +4.682514333734392 2.6252210715205906 4.161080869709474 2.443793285090453 2.6798380949297926 +2.3964876713554175 2.972065290200482 3.879823677659408 3.1567688596537646 0.9241741530450462 +3.622171489544955 4.573910304783862 3.9575085083487407 3.128407963831593 1.2622260040701858 +3.198631166190191 4.725753942980916 4.245796856858513 3.423613591188586 1.734384414638427 +3.6997450737678688 2.2871512139248287 1.669809467510842 4.955596992672728 3.576565541602129 +1.759344526908861 3.8924261479325764 4.79311901101852 1.0464901053369178 4.311295090670329 +2.8251107232565387 3.70041737958283 2.584884651334693 2.3218450737503846 0.9139756900404099 +2.8606687969716065 2.372784917792263 1.2409294772556438 3.8707087751473197 2.6746532177429505 +4.684607688894117 2.82247852849375 3.7244836722679824 3.03762321190702 1.9847675687648285 +4.281932926849539 2.7335081098113814 2.2571999529589832 1.2406963356525424 1.8522686138939812 +2.2467662988258765 4.128761472433451 1.2144923985697784 3.4256818970771787 2.9036640356266448 +4.322680624724291 2.5951499442214225 3.050848601407391 3.332785092123765 1.7503857965820473 +4.195329961500152 2.880076468362366 4.571102724759182 4.26359398940956 1.350723277924635 +4.9469132806127725 2.6691046195725887 2.704150224709138 4.595008212989027 2.9603642053219645 +4.263590678410745 4.982199542451936 2.3312908625137108 4.060917427178657 1.872967365618855 +2.151988088080139 2.282593120347697 1.912695537232286 2.5190698936468063 0.6202802064960107 +2.8451014191181723 2.2151278101636347 4.808086672310459 1.0751423870673626 3.785728435150664 +2.7010439652489446 1.660779861010119 4.125448349209741 3.9804964006062895 1.0503144643256819 +1.0362288064493952 4.758089580388468 3.6365329570107625 4.096511214692885 3.7501770115724717 +2.30715014633927 4.6621130925749075 1.1738238400834686 2.7634698951709087 2.8412717326221886 +2.7754841412117868 2.916426766045784 4.413971982902224 3.8562377104995758 0.5752671919270279 +2.558216941256016 4.4019573404653505 1.9729398615316232 4.3036272714086214 2.9717810252836174 +4.342246283167723 2.412706954679241 2.020643133663127 3.5332184480292264 2.451735324584097 +3.347386027504936 3.5056198655733066 3.6361096785000404 4.011580953716351 0.4074513787219398 +3.5502963710220037 2.5686558018019863 1.6891261867863432 3.4249374946416062 1.9941562385171325 +1.5047309810445544 4.385355567758815 2.2973923211213645 2.0579325206014136 2.8905603272804665 +2.058157666257389 2.920473123896733 2.1412132728303575 4.773159572233837 2.769608144020995 +3.0618528049458886 3.2401127002517547 1.2820934753975304 4.649484913739907 3.3721064172555404 +2.6207185953350085 2.7591791102501606 1.37675291484789 2.6923436811911956 1.3228569003026498 +1.7026074503034616 2.5189674516027774 3.989266206659907 2.844282546183319 1.4062116606257342 +2.39661161098154 4.876732277919128 3.7714054013046487 2.386066657615424 2.8408030479667867 +4.476071739179687 3.0674699376210395 1.8879193067187812 4.930703035070454 3.353012355013918 +3.267473361042684 1.6334696670674198 1.602870606520563 2.5635148365445652 1.8954697065907482 +2.079289635471529 3.9524486945541852 2.2225655362294003 4.129635219046635 2.6731329251917217 +2.5333777046458956 3.264206616913509 1.1276014821980307 4.949452565162332 3.89109966453722 +1.7837882496540645 3.9914843765270795 3.3062517608402366 4.320623223963993 2.4295826089700965 +3.1248136019619666 4.983255053194027 1.9493245013512022 1.4636011771988113 1.920867453855985 +1.9389983664422084 3.4138505263556795 4.741204515266771 3.1488973156377167 2.1703988369864082 +4.248737513206193 1.4863796869299057 1.9203637991994493 1.7265530075579396 2.7691484942751923 +4.032277179792568 2.500714515421162 4.7702434762208865 1.94213642934172 3.2161893077839867 +2.7601806928916037 2.180292928700776 3.0448346639425243 1.2660589135760794 1.8709123413858668 +2.1079624677855264 4.120424429089853 1.320916116026503 1.5922473952850198 2.0306707780437776 +2.5035696781266297 4.469506463026606 2.754940856265438 3.8618318312352726 2.2561283369286707 +2.1330526780020227 3.1608137726844445 4.1170958957628105 3.5086316645558533 1.1943707918402406 +2.651762292612947 2.0540013125676095 2.157246950057554 2.0181296712895738 0.6137359420113591 +3.869257825360344 2.6558532706924787 4.050987177229281 3.706101559085464 1.2614660926442545 +4.426588023225577 2.6010557169311173 2.921844960730391 2.727270156988687 1.8358724235566835 +4.2392387045200355 1.1248803748815979 4.251072909404263 2.756176708200095 3.4545538724650062 +4.924724825446017 1.9202856372025625 3.281140026624723 3.2271161869114526 3.004924859478245 +3.582104372545844 4.663423742128643 3.1645962329121455 4.415464701308894 1.6534580443011453 +4.998115874682711 4.072815453816323 1.7929073642871263 3.2321415280479693 1.711016027684103 +1.7331416404935145 4.20906603055784 4.110112377332101 4.126832300025116 2.475980844257536 +4.429008054452527 3.8091022653128532 4.677061617196105 2.461033613817257 2.3011004539498328 +4.949059076380342 2.8147408474297344 2.0336730764467656 1.0291749740959264 2.358883367200951 +4.253106086078029 1.7817290355230355 2.861514291264815 4.3144927007030365 2.8668538128588845 +4.804140634337921 3.968387808976911 4.2852254101308365 1.3668661077481037 3.0356718865685637 +1.1292218199486705 3.358185917566443 1.6806904358734975 1.245543748977195 2.2710424010981916 +3.9798823303763293 3.2021364992405053 4.87151605806884 3.9313665905764124 1.2201514656285297 +3.30202099852889 1.3678699175383557 1.7655991733577063 4.484331683042802 3.3365321612889436 +3.499918847850261 3.4216885216104833 4.550574502758831 2.273538667893993 2.2783792873887774 +2.1369495880077998 3.1147208915421727 2.8653730148971372 3.3570658086605705 1.0944398226737717 +4.915349741484208 3.477277122892179 4.384108957300967 4.487063732179643 1.4417532874990973 +1.6253114354027889 3.393422787634571 2.5609064758949556 3.0782147083294955 1.842233850854839 +4.285402384048565 4.003886431807395 3.942556840500492 2.600436130601549 1.3713275434067151 +2.053102657412992 1.4581821665590469 1.8628605667401374 1.3727091827177378 0.7708299226787794 +2.598669197413647 2.549917405728058 3.9106458278066865 4.59312492674065 0.68421813603139 +1.089363354517681 2.259715816535728 4.823509519761187 3.2349002930381405 1.9731710925769457 +2.8031122446874392 1.2385041969453208 1.5051677772561 2.87792392885888 2.081455691294599 +3.2619681054491134 2.7467457054265867 1.0322515106665686 4.983873523605411 3.985068462978748 +1.193009830670535 3.05553594411316 3.554338715825534 2.192443577235317 2.3073278682864635 +3.4720998786272794 4.332376243825717 2.3633801691952674 2.4934618077007293 0.8700555483388983 +2.9227065369882923 1.7964276467501397 4.3290229118677885 1.0542959939960554 3.4629958887110717 +3.399843999447082 2.6484483125194513 3.8267747831390944 4.839029337473525 1.2606564802134808 +3.0658304809310906 1.8000605123666742 3.038921628814264 1.233990603102106 2.204529342262857 +2.6669879051868035 1.5881110163657368 2.9537576890547457 3.866722890823265 1.4133226103308676 +2.995480170133622 3.931926340370619 3.360161414428511 4.328427739832341 1.3470230535007834 +4.043483821350192 4.0182448960185315 2.4172237627481814 2.9810834157068284 0.564424230155424 +2.878525632437376 2.0342968121605276 2.800179971117192 1.9931773880470138 1.1678936039160328 +1.6289542057055324 1.944328901434882 1.0774347228909273 1.765537439621613 0.7569323268816903 +1.504577240447738 3.815393090837942 1.3819651101515902 4.852314610512033 4.1693159569726275 +1.0232558423341094 3.5719187624046063 4.934527750976926 4.6084392564900725 2.56943892443058 +2.9252344312626537 4.3360422951122555 2.4344802420948843 1.032773403825781 1.9887586301887523 +3.2193022674468064 4.329248878600016 2.990160392834324 4.013595073060541 1.5097682021754972 +3.8288749317502275 2.175646363011697 1.668273927611847 4.204860846626713 3.0277777161163235 +2.415014784046464 1.0610317803455258 3.6083472574304225 4.596481410610505 1.6762097359793418 +3.138990495904433 2.664943143913314 2.4808449647298128 3.4148601296813648 1.0474279069650887 +2.2487235340621927 4.4625996663746195 1.5731271051199025 3.2845507561082026 2.7982527481242205 +4.8496625635023385 2.4578799198210795 4.709473305744847 4.795550311332368 2.393331039682105 +2.724297953320003 4.579099742588912 3.218403553859486 3.503284779088028 1.8765518884280454 +3.7306374450986834 4.862631735783198 4.903504272853018 3.1761676304414634 2.065212567838953 +3.693490792049065 1.158580494745315 2.5981717255188386 4.823408103123018 3.3730471611866855 +3.762195446604559 1.5472864497888974 4.616362141740526 1.6181928531848042 3.727578429357816 +1.781245366680976 2.3381563498083078 3.6176599476799463 3.8313454792256274 0.5964992451963469 +3.6132385119672406 3.7460800951522693 3.2672903632229824 2.739571635875482 0.5441819010371169 +4.929872164776274 1.5769310028084953 1.8462300504579643 1.220614526695885 3.410807707741663 +3.1036274755344073 1.901108338632572 4.868895379503369 2.872882522222645 2.3302617022654553 +1.5426586577952461 2.7136788344135394 3.759865204030859 2.7345193494417295 1.5564775538279538 +2.97721057382546 3.2364198392757575 3.9815228044872044 3.968417161418956 0.25954036521419005 +2.667956653450699 3.3359274535673116 4.142139099225989 2.767797099170814 1.528070980983569 +3.7562489537774306 4.74181325457791 4.642308782582371 3.1456965647971606 1.7919779913370324 +3.2008177137927407 1.0165617478297113 3.371372135590206 2.1627809657902612 2.496330655294584 +4.370046392750762 2.1803984034311683 4.204186820711965 1.1578687186369865 3.751614625219525 +2.291207982592638 2.059571589649513 2.954092351128818 4.216907574508833 1.2838838370101944 +2.7638773163212758 4.223284526354211 3.31425131128021 2.3616613994000275 1.7427842508216589 +2.167996430185647 1.4866974018892658 1.909107294606033 1.7649957968738659 0.6963738146543147 +4.5332724912476285 2.933470960263389 2.903376659981927 3.948973603351459 1.9111875644538987 +1.9844508710622781 3.6522263532344788 3.4683694395947633 1.2080226266540621 2.8090287954568747 +3.2088626640333113 3.744746006615467 1.013506651314704 1.7277549923226743 0.8929286922759632 +4.175625817428009 1.5231497951599415 4.415743417527999 2.3837546280212982 3.3413481544711763 +4.776742271179932 3.015456398978082 4.751244006015035 2.7578401625989577 2.6600351137839935 +3.1584773358481897 2.793270992863002 2.301306346256193 1.8868898547872535 0.5523736971996765 +3.3465728368820042 2.9594874879615363 4.211076500471542 4.271575211674111 0.3917845854625374 +4.5929912137120805 2.4067222693634513 4.425707731962184 4.660091911594948 2.1987969075577203 +2.502752010854597 4.603703890357032 2.7441475229693837 4.2189458109291 2.5669103588075926 +4.8779997874775205 1.907081379204354 2.416465582153086 1.163050212944893 3.224500934467794 +2.8424768376954086 1.8148523575839186 2.9928966164649475 4.792872333792947 2.0726612494797254 +2.6616530393555515 4.4763025152790945 3.9979374457809196 3.9797496588610035 1.814740619499832 +1.620415785718674 4.503656182027575 3.1969624416239646 2.0614361835938975 3.098789290284719 +2.443713229434165 1.8528190763765675 4.1249811709100115 3.752502243028473 0.6984958495463202 +1.1951964322147886 4.195029732819541 3.6729910648914412 1.666828543124205 3.608834700448426 +2.1794557012162303 4.2203305953642705 3.9248714753344034 2.3766072517080596 2.5616971795520755 +1.2945205507439361 1.5097246756307943 3.881293341498024 1.7810833524443672 2.1112069565746223 +3.6285129607972193 4.033281624645787 3.637753339214339 2.862473014265425 0.8745840459822307 +3.950511815676206 2.0405864406058996 3.157825268497083 4.117111624305851 2.137298587183905 +4.627419788262348 2.6862989544222997 3.238473306739562 4.558599572671431 2.347484494000142 +4.236707725392762 2.3975193522762503 4.502824046243246 2.2931069147192957 2.8749719430209044 +3.4320621062092718 4.244143045669133 1.0000911202505325 1.1323575977022062 0.8227817895964181 +3.2719526845693125 1.258040033664117 2.6972916829861715 3.1990810989534886 2.07548471048399 +4.186750103742229 4.3942063921338015 3.3371649586699395 1.9987129791265694 1.3544341302318001 +3.838764323312682 2.122727758514846 1.0921690774701576 2.6644941854053528 2.3274423165282916 +4.09430920933301 3.65808926706081 3.215379334157567 4.133632029646609 1.0166001430301164 +2.079308110190323 1.7199161600788684 4.33348482929374 1.2478477453151902 3.1064962236945597 +2.480432206430086 2.8998872828850217 4.67383451891092 4.993579290541223 0.5274270377490431 +1.4675431632706828 3.245180707495964 2.4732663262427326 3.1658236760752843 1.9077816755190768 +1.4995916697425327 3.8120238838527793 1.7728226551719866 4.884468872107764 3.876813759290682 +3.867391011456017 4.585803225263845 2.848330009934109 3.9526191178521644 1.3174105445208488 +2.0559668686507737 3.1989789149990964 1.842312428897662 3.5132667516185134 2.0244912661498145 +4.893140138461989 1.3669048291075838 1.033035385516694 4.569695744686567 4.994226862394352 +4.821017230913929 1.4766434296189783 4.534307152274556 2.4538690715178624 3.9386620482913526 +2.264460847834239 2.720649085294102 4.5597743916868385 3.6551858515736653 1.0131081555790666 +2.0831219603583175 4.344445070288664 2.4143714788846746 3.2754176317658774 2.419707148581533 +1.3815915489048414 4.137788432109122 3.087647128395425 4.539114926891914 3.1150248841794563 +4.637462790342307 4.162045222435793 1.8397595646616254 3.999927808178401 2.211865435367282 +3.27985266633655 2.532877578670354 4.284921167248092 1.2506370151125545 3.124876333152209 +3.0393265375640603 4.336833762816907 3.6438213014160463 3.710695202650445 1.299229432490524 +4.017632690446074 2.681354686281893 1.2848715623332443 1.3088578025724265 1.3364932637816849 +4.736788860892654 1.5779080596366057 3.7323587587355984 3.049819558291682 3.2317777888782317 +2.325764899687867 1.165201616084493 3.9217413842549176 4.235077426710953 1.2021175528001644 +3.7235288039307344 3.2616229011783906 1.7043952312031188 1.0733997906279376 0.7819925249157594 +1.952000192669415 2.5865606833974963 3.551596142344748 1.1646332696674797 2.4698701933366416 +1.0649715986107706 3.5184486307186615 4.304972570703335 2.7251864617153223 2.918094189232491 +4.607641186206143 3.0678777238105286 2.9299316179257495 4.150665989637371 1.9649590139254047 +4.8507851255290495 4.537877437154433 1.251368347430093 1.7086721108344505 0.5541100553750447 +3.6257205965716977 2.6549203667597725 1.0008191901072752 4.454578137781776 3.587604208220935 +3.128136508293953 3.014075211871548 2.1269245078677836 2.878028251303343 0.7597149549301175 +4.156420885386284 2.5407598248974033 3.078898122068928 4.953573633196795 2.4748270514123982 +1.5601451485536835 1.623439173870823 3.3606385251047755 4.9000871240054655 1.5407492081121263 +4.109663159373203 2.1770074782266633 3.610619378494443 4.995577763857549 2.3776601336304513 +1.7342718015672984 3.5323573038560703 1.7657938359019423 3.928815240911849 2.8127874203487355 +1.1729481073225059 4.472750236348936 1.3584433814047236 1.8452214060783487 3.3355129944331683 +2.9216923319376265 3.5774973830927816 1.7102247311590517 4.101362998976201 2.4794399530821902 +3.088073743971463 1.7241978830466453 4.844345406474052 3.3742024284164334 2.00536224656433 +1.290537497695592 4.617153250303375 1.0673674956271868 1.071316054191731 3.3266180959967415 +1.2751918597766365 3.5031183242850927 2.3813926468767526 2.873474613546025 2.281622447553111 +4.447142044160113 3.198010411168653 2.166487805938521 4.665394311157643 2.793718589687651 +3.5750733763667597 3.5974514092671677 4.922486205518037 1.0877076863983386 3.83484381260285 +2.872500313283775 2.592805155816107 4.214569067316214 2.452603182177548 1.7840272311552159 +4.808819248123415 1.210169911433824 2.9007464118452106 3.0174834761903924 3.600542263416493 +1.325143936793988 2.1206218584921346 1.9765676600566522 2.023053006497156 0.7968349963090832 +2.5861609964390886 3.4796671702480264 4.086165617963447 1.2530549090867225 2.9706682028437075 +3.1512875553271624 1.414168222758485 1.148793061589183 2.718963925490831 2.341584958405203 +1.2087789490232508 3.392825125791122 1.8397943519813533 2.9570225818937277 2.453213529223963 +1.1550663971639832 1.9261453239131172 3.619734489648607 4.919234781473216 1.5110472261742323 +2.0459856981420597 4.701500774880646 3.9260579232632087 3.3736182791601914 2.712369791006125 +1.8624446750230823 1.9307079483995415 1.9691808401662994 3.6317966820219763 1.6640166201338045 +3.5141299615361703 2.777110037067789 3.877122057950318 4.3621212016236 0.8822825728910186 +2.800269352396214 1.95505570425387 3.4251187235158267 4.716717390764819 1.5435715818339824 +3.902211453718424 3.100911570710277 4.7597022193475045 1.0479192307698422 3.797290409858508 +3.7750119065862644 4.947887981699498 2.810609173150645 3.003230390402432 1.1885879104671158 +3.632361653530316 1.974741430299665 2.761955902845 3.9779810809862703 2.0558263638587624 +1.1125929165983255 4.132387664807352 1.2838506740575468 4.922918410402357 4.728844923553378 +2.4855961351677114 1.9356949705547049 3.721667416833809 2.886756213040648 0.999733969144835 +4.751516391016452 4.125702564829005 4.597343031532883 4.710316580312644 0.6359292160069895 +2.765438096456786 3.9566028886125877 1.4583516536958143 2.208621147724675 1.407756326834263 +4.758044383441417 1.364467644513466 4.808245113850452 4.907900759280654 3.3950396655501653 +1.2207521713500857 1.468338732758348 3.626727049908413 4.928830750828759 1.325433194597309 +2.531808298285394 2.8060932599104054 3.941902539819975 1.7474711037968018 2.21150662842786 +3.636476238487268 2.9344397470105212 2.53934812826326 3.6147228955536477 1.2842453525280269 +1.9756197804765043 1.528360582386513 1.1709669581741498 2.0994667215468947 1.0306078792922873 +3.001458959874921 3.3669756157602033 3.631101690464881 2.0749850638181244 1.5984684486895702 +1.0392124093793167 2.6391084540671077 2.114127212155182 4.9454072622337755 3.252047674278574 +4.518070465710907 4.914426065756022 3.3584311904124915 2.0310359178682655 1.385307175777229 +2.4010408500311997 4.926451065514621 3.6797905831074025 3.8604458522336675 2.531863559264422 +4.964385587215764 3.950087307498014 3.9284864380220776 4.342340899480089 1.0954800388446553 +1.662470776269278 3.423619673649916 1.764841477595299 1.4537371713211753 1.7884158711349383 +4.8203399277274634 1.0020410647481004 2.0678926094287955 4.070411970448186 4.311553084247834 +1.2970163895839457 2.9751388026493926 3.7955585087022863 4.418313169516813 1.7899492173798717 +3.2428826570176987 1.043278029029672 3.6835276223156064 2.760026933280254 2.3856055923213955 +3.270362264652964 2.502768088796695 4.971507588696206 4.306909949369959 1.0153279475157206 +3.7317092156141682 2.665902558860464 3.5185536380735503 2.9539389837743784 1.2061233508351794 +1.7626955012809864 4.725389295200643 3.7587426943703774 3.5744300392721273 2.9684214106759534 +2.291952234951064 2.6988189533440377 3.265088837835938 4.058745807776133 0.8918698966051715 +4.912945542007609 1.5456580428789573 3.168520358708013 3.5788984650092974 3.392202130168472 +3.421278701177539 4.525405190162239 3.475187592371225 4.565225603279086 1.5515405791991541 +3.1031552744448434 1.6923459516924435 2.808413844025564 2.8001113648331883 1.4108337521925909 +1.4492912377884855 1.862612302174922 2.2635906934899834 4.92680509461252 2.695096519349912 +1.294054928212303 2.3444985205659625 2.4630177986577606 1.7407697938516344 1.2747838723341658 +3.5776838396987976 4.234212706053531 1.7699429557946358 3.7563871308239105 2.0921258597093932 +2.208728751512689 3.540038726704902 4.139052673708599 4.6855842888948205 1.4391257959067896 +3.762071670257487 2.292727996865904 1.4110690614749108 1.5279802947049301 1.4739874717891042 +3.0737642587982053 1.28574781058169 3.084883183276639 4.5293176271918245 2.298563395223498 +1.9941466038474243 3.603205996621469 4.882295224942893 2.596420998390163 2.7954057145774778 +2.8545034777655633 2.2002166545032376 3.1406948917869 2.1461091150028677 1.1905007830639185 +4.688492276991955 4.540973060857152 1.9090917980628697 2.574607877114455 0.6816696931837463 +1.9942906597537178 3.9340118527506673 3.6347749354067806 1.1882859706742894 3.122150951046308 +1.533647556262491 2.919504472796629 3.9265640525065395 4.053466399346332 1.3916549855258507 +4.432255574730892 1.6331507958021838 4.853271308521249 2.1934922726235904 3.8612707860524633 +3.2168251269480286 3.4060083607147797 3.6444318685749137 1.2840060289617061 2.367995025385856 +4.1232871934417545 4.924116492039509 1.9358545706979844 3.860435210868456 2.0845474823115815 +2.9737954165702103 3.7199614190230275 1.514514779415813 4.043422290884265 2.6366905212364182 +1.1996964553789962 2.0168320342517565 2.1722014691008753 1.463352147893461 1.081747620490072 +3.9871516356060597 2.701562442121797 1.5496624299415616 1.094073076196291 1.3639286028416409 +2.0897562716740348 3.163617336416544 1.509176534040844 1.5563005602827746 1.0748945344633423 +4.264377770183367 3.1754329599446747 2.8375175778379127 4.015314619911381 1.60405943532738 +4.3891417594883535 3.6943347629260592 2.0515208525194932 3.5479798420097852 1.649892805517444 +1.349281715597464 4.6560218856799 1.045779894582647 4.872910375797522 5.057811609053942 +2.0733475706622535 1.6922108891095147 1.0880010242864784 1.0239754360782807 0.3864769669339164 +2.6898164905079587 3.3721619893764347 1.6879283931629816 3.793648652422317 2.2135160243561085 +3.208067010136271 4.947421031362142 2.6679854294861522 2.039721678833074 1.849342518718282 +4.357499508655343 1.8001682200529396 4.314927342063572 1.3959481448417024 3.88077091226458 +1.2949576305901216 3.1121715319580563 2.660312861417936 2.5489105664947562 1.8206253965709205 +2.0968053823416057 2.66476001725797 1.364559856609636 1.8142750885410872 0.7244420316037298 +3.8331847202065847 2.736474509251997 2.123955796528367 1.631291361561713 1.2022859611145216 +3.3197365674960535 4.339878598715664 1.9557957488159805 2.8097729190488834 1.3304009813360294 +1.7055775902512855 4.674754130846194 1.852922448688914 3.8118996287435354 3.5571900316392866 +1.1148405973080173 1.7881084675519139 2.68054114145964 4.961367739339437 2.37812102187813 +2.5985494059919785 1.5445696274456386 2.648618047998859 2.5016802774429068 1.0641729568075602 +1.5199460963695306 1.7544272816157873 1.3972742585552016 4.834963953014308 3.445677271832757 +4.568292737389868 2.1553138943924144 1.5475671529125616 3.531956353949974 3.124142666068121 +1.5930207682177038 4.484179473082552 3.758866772739697 4.7893418629251405 3.069312230485599 +2.1040040336461736 2.2324759010943915 4.39869601200032 1.5404476339318824 2.8611341827073558 +4.667068787293848 3.757554481301793 4.484444118407341 1.4983481804839474 3.121535715523178 +1.2958555346307796 3.8384428512567856 4.109290684371242 3.7069271919677544 2.5742273875255397 +3.9260747413096757 2.476627848588258 4.253296551346796 4.421314165077904 1.459152566849563 +3.408496249848881 3.216584824232141 3.932523216473521 2.1227488175980693 1.8199212538204097 +1.4278678018062991 1.1457954999902156 1.5646037250951745 4.882150182288536 3.32951637315212 +4.973985843512493 2.365365853585501 1.6915408261128668 4.813844466204172 4.068621175874465 +1.4933558132386962 4.795601023007615 1.1685904652519037 1.791350095386656 3.360454282142125 +4.394517062467307 1.377564056621173 4.506472980855177 3.2734614747621102 3.259190515088358 +1.3000418901401818 1.0728142461818484 2.6221170159880547 1.2790712346942565 1.3621322890343375 +3.182388208660995 1.0886019396200157 2.0702052390517287 1.12262188090327 2.298228700774676 +1.321694511928964 3.303940443972343 4.352119882027453 2.5921459255738983 2.6508125664590665 +3.672197936612372 4.670797968860349 2.5329508517074872 1.6176025255008417 1.3546455561123611 +2.242311316557571 2.4908413580310507 2.869990052041199 2.860923167432259 0.24869537573369002 +1.8132604602662687 2.9065286483371655 4.843369039435657 4.067850798356222 1.3403969088649685 +1.4584788212768127 4.275271793918023 2.378325436435114 2.215894582609827 2.8214723874238636 +4.629439219708663 2.5473362976303116 1.1749146464888005 2.9446123060407823 2.73257797406606 +1.732227196426987 4.8052596601416955 1.0997866281879398 1.566293293262504 3.108240175984392 +2.297041017644761 2.751259802540443 4.527275190527188 4.8506116649981905 0.5575492626445193 +3.441452221145086 3.582682892043691 4.013222492171687 1.6670618796440184 2.350407565121138 +3.5302341927207253 1.8370230147078312 3.5455998817048973 1.5874822342808588 2.58866545047854 +1.0121259017149344 1.7314692439549728 4.498192460304827 2.136308232153026 2.468998167520036 +3.9490239067880886 4.380587105167298 1.626293381855195 1.157576398513081 0.6371360958764029 +3.776587453397829 1.1365508592108382 2.3754070110586047 4.923987842504188 3.669476457624208 +3.9376508037561058 4.268993885880386 4.451609653644922 3.5967661404501805 0.9168127781192544 +1.4483848891535422 4.550452371366233 2.9959607219504782 4.254493839563374 3.347645183159323 +2.112379895129889 3.0039677432347176 1.0069790590262602 2.348601170063307 1.610862743908276 +2.781878775051303 3.4892639885910115 4.266380579733738 3.780141722442316 0.8583834030750401 +1.1843108893960959 1.0858734155568301 4.784869135026781 2.1221579734769547 2.6645301023065744 +1.3369103586400275 1.6000230925463255 1.720924777912138 4.864323880031883 3.154391577777062 +2.6943010362588877 4.004076863176392 2.9874747375973 4.826822185326179 2.258032716823247 +2.3757008996143973 1.547286456881142 3.559993271075946 1.682708659457051 2.0519424947961276 +4.405782249754118 1.2754023242737271 2.647217000885491 3.053763532673908 3.15666890255532 +3.552967618267469 2.8173101291427143 3.424679276474228 4.467531503003098 1.2762181269992836 +4.839304728760737 4.720263901923335 3.515828313908125 3.2454724050888277 0.2954031751482039 +1.7002869651367427 3.2681538625760758 2.1306729422849227 2.67611916251473 1.660035598187287 +1.9156402157003383 3.5518615119264214 4.219055898581376 2.998446037499021 2.0413496915509723 +1.2072599628286778 4.912034050826389 3.9657418225454037 4.662912822972432 3.769800849771204 +3.848397815812717 1.763684377123028 1.3445132903315837 1.4597547696410156 2.0878962426343923 +1.691288952473974 2.9130161835418913 4.174674115773207 4.874042475260986 1.4077405760243997 +2.9447040715108463 2.0116996113949863 1.8341893842108914 1.4139181747863954 1.0232913622557438 +2.6751383586953805 1.296423507798854 2.0875964154883206 1.3620985169331221 1.5579479583383524 +2.3188804504872436 1.45019514428011 4.7342807103640245 1.0067785875102868 3.827386345418934 +1.1194089138285075 1.4996285639943805 4.346626568046018 3.7065364816506445 0.7445013774828729 +2.474266918240257 4.47484255788868 3.1768711604975977 1.2755835018592458 2.7599271096978635 +3.8921790843982587 2.9520393176063906 4.092082773986318 2.4334599282793423 1.9065394109235128 +1.0711856491148053 4.888668821269352 3.303879293878574 1.7761282937208311 4.111836680629001 +4.072639069235999 1.3109214833926166 1.6999435960477691 2.533037532999267 2.8846368110633867 +4.2477157163380745 4.474533932880352 3.90233480023461 3.2182129146774034 0.7207421575388572 +1.294688852425368 3.7454409755491334 3.4472389800858663 4.054707955561705 2.5249167362828637 +1.9071528818159096 3.2908716608037687 4.484622276530514 3.7773625821693817 1.5539929004314832 +2.7108057744418574 1.478411310977564 1.6291074143489266 1.722793527104836 1.2359503231524949 +3.6476846967367202 4.842277848571861 2.688574935380742 4.220068569075831 1.9422990368272346 +2.7453389898217435 4.51526040337815 1.936462234209924 1.2762590254875268 1.8890447551534764 +2.9646425085597143 2.884702328599038 3.68510588587376 3.928746561856607 0.2564199901831442 +1.5316562150881716 3.532987716521853 1.509005062802387 1.4097518382893721 2.0037911520932075 +4.873353675455255 3.2260999785969875 1.2674037576529988 4.346618591694105 3.492135268856581 +2.238422408786308 1.4860919853454422 4.74339011518704 3.0714636231685293 1.8333955549057155 +4.927284727328134 3.021877150370643 2.55956801686847 3.8487986332909765 2.3005854943140394 +4.776444369271179 2.014527916073593 1.5628733694102825 1.5124616688045207 2.762376483030779 +2.334229340814962 3.8712660407146906 4.034275551602326 1.600629218859845 2.8783877934895385 +4.444044080649478 2.3271277911139885 1.7048050667780688 3.4772713170428244 2.760972869339412 +1.9642821134465773 3.9527617505604784 1.5141072878906385 2.9303878041166262 2.4412910043372507 +4.5685362546454495 2.4317354430231846 4.467562880314838 1.556838956862654 3.6108491338058486 +1.4256256625259836 1.9095722146945038 3.2753684741103566 2.8828020982901217 0.6231473539865447 +2.235727980330436 1.4487146838407479 2.276223815167372 4.874555848573696 2.7149068648255703 +2.5880880321850173 1.4413040665614436 2.69057886060073 4.854632295998265 2.4491306080050532 +2.815908727535286 3.5317605349616237 4.295297403686375 2.8877223003788135 1.5791489738611888 +4.781240518682607 4.594883640630212 1.1965973672669326 1.49575698761134 0.35245618797525025 +1.7437128965029922 4.039462762229787 4.692665469601083 4.380234187009126 2.316911899992456 +4.628591927121963 4.866626909504593 2.46352628428617 1.2850258060445316 1.2022994760265302 +1.6799885837029227 1.8305448532387607 2.0064819641118294 4.8148257228268125 2.8123765497191067 +4.4478919692365295 2.6624064551625604 2.541322764754034 3.1753891537992196 1.8947291908567794 +2.8868206215426446 1.5766208210061055 1.0825562537338116 4.043414823027225 3.237793536451055 +1.6887654735131674 3.519089662816268 1.831834163536782 3.465871916052258 2.453602660292387 +3.582214157285814 2.8102620068071316 3.316605717783692 1.4917335202824353 1.981430962673625 +4.00864038591442 1.9288265435016396 3.368992007189929 1.7960095434828798 2.6076616824698933 +3.6345779768664896 4.496085275403207 2.63312560820356 1.5071739623563127 1.4177312630460532 +4.927804745218592 1.0843801968775804 1.4535577383099705 4.645414977173521 4.995984877086395 +3.238554715912212 2.7142688125480356 4.508590449574781 1.8699127256010382 2.6902594372033417 +2.8810434168934056 2.1491427254666826 3.796289654155971 1.439169297797236 2.4681359355739803 +3.9774268752853965 4.668873880885698 3.152644212868719 2.7632264430693794 0.7935648435944697 +1.8899977962533594 2.447784670921724 3.613697429921893 3.170823881148745 0.7122241064125979 +2.6618803145216825 2.628151051581979 1.7335442137597856 3.377229900555233 1.6440317211522035 +2.887606363237726 2.461765764121277 2.784677268474042 3.4146701473680663 0.7604151782500379 +2.51860314907202 1.1899682760820753 1.3843404266068737 4.131235482504097 3.051344469875143 +1.441541513990857 1.8315888849579345 3.3467280627730283 2.828778985123966 0.648388925442009 +3.0478283923388316 1.8553243954777798 2.1285656709384555 4.091107928367755 2.296440265873527 +1.6294959843618453 3.6452282945086307 3.5999440374305443 2.640185130131661 2.2325577050345737 +3.479134561342461 3.35439242736174 2.443837021220817 4.900354116109014 2.459682263518606 +4.1145655122658535 1.041555734912135 4.885157791720546 4.4323769084347635 3.1061873124427968 +2.2640357850854174 1.7955100664640549 3.869060682832826 2.357693960675182 1.5823228867254642 +1.9173219117365097 3.8395983392498687 3.5147087901579557 2.9408247850280724 2.0061130364756212 +4.002174589496985 2.754110866545892 3.417133829076173 3.0221533338288658 1.309073201991527 +2.4672764051469422 2.6080983936884725 1.773825074155853 3.805572415807276 2.036621735316702 +2.2915508584721818 1.7146536545350752 1.25644120702119 1.80248598547586 0.7943395268951816 +2.665608181491822 1.783436635959538 2.2473271302721107 2.4522690436232284 0.9056642996137344 +4.149405072426427 1.0346994529975744 3.5538387760360535 1.5538943587442646 3.7015089852596965 +2.1196944526211627 4.7105958168452355 4.242226714047986 4.183698187214197 2.591562360351665 +2.163046176136617 4.43091301464504 4.3805704129411644 4.79823599272669 2.3060061868398725 +3.739325026893676 2.1894290690404956 3.5746183916993757 3.485246368553933 1.55247055968567 +3.3538908567963888 4.799191166390244 1.1768395591812717 1.3285424528464556 1.4532400878239236 +1.671990543948263 2.8404542588999226 2.818353653011236 2.821208881301686 1.1684672034281596 +3.2027615713311754 4.389256632771014 4.433716639599244 4.453052756899643 1.1866526097613324 +1.0752852240785034 1.4175310060818043 2.2683941259381992 4.6511022044236165 2.407162221907514 +1.0513604291316496 3.504857613511905 1.2716850737065895 4.424378516516003 3.9948872797734 +3.2864489290206285 2.4684404677228247 2.1518066290914275 3.709609459808162 1.7595134276679654 +1.818723721239548 4.813275132325263 4.311505082893414 4.709118301690369 3.0208333991462557 +1.78472127271487 4.045758677353271 4.486010401558287 1.6969056522176493 3.590458946704232 +3.785218190572505 1.3390445650207061 2.2610188108678018 4.7170331767337395 3.46637735563875 +2.5288018515709916 1.656780687870489 3.040498775891909 4.419767995628872 1.6318101882435316 +3.236491782162954 1.9002154538128764 1.450692067795336 1.8683092039980886 1.4000137492749678 +3.6360860727537596 1.131485748976599 3.200470818531134 2.0312349362424427 2.7640794725000353 +2.3862513259441385 2.876376775028016 2.096239433114086 3.545739688910952 1.5301222001509722 +4.458164497902507 1.4089325910589916 4.599427498076798 3.86686960900122 3.1359936674935116 +2.8282878968652336 1.189060205010219 2.6333598067153265 3.622560111804296 1.9145716673272979 +1.1282614687134842 4.405671114841381 2.1355678240114604 3.721366653792806 3.640902623947538 +1.230098514825734 2.963364434187838 4.812402584047749 2.520212307819598 2.873733983801745 +1.2517502207973785 1.407840805452985 2.442324608714753 1.3358768293325793 1.1174036688313997 +2.9314722800437014 1.2643323429122812 2.394097489538173 4.514042936874734 2.6969472129913052 +3.463502448033561 1.0956063619974237 4.3366254105343085 4.119978585733204 2.377786306832819 +3.5404815196436155 3.1889090889527028 2.932621370536549 4.326628346006853 1.4376573380613966 +2.3611525049993753 4.108188668159158 1.0761389936522545 3.781351435128374 3.2202965249966105 +3.2950115189056675 4.461589539930008 1.5499822253866529 1.9127056936835478 1.2216679555388181 +4.130223539778281 3.4959716012776045 3.675679324522338 3.165481900417772 0.813988288032942 +4.291591877735582 2.159054433226282 2.8583055140356803 3.6299911567550587 2.267865666968279 +2.6284139671540836 4.6517592417598035 1.265892978053862 1.9138186386034892 2.12455495618917 +1.5042274409853538 3.0428258617800212 2.934427568097004 1.630742378156432 2.016650732016387 +3.9658544937446427 2.1984921239419197 2.4624948142554444 1.5748714681989977 1.977737331057676 +3.0856964605304706 2.601254327101977 3.888020461603575 2.5002598578250423 1.469885598963575 +2.919578194648429 2.690544391467143 2.679929643819176 1.6128970601466857 1.09133634486279 +4.496993908321491 2.9513273806814087 3.9655556467718887 2.9902813897743865 1.8276336862262574 +3.7580671792899185 1.4845658972054934 1.1429007685098687 1.6051180257453743 2.32001139491293 +3.6823580332424517 2.814929345019599 2.132141148877161 2.0106271531401694 0.8758984988638745 +2.2345124086785098 3.495799930896107 4.397334325014169 4.757888635358366 1.3118100565286066 +4.2295814306188895 2.525527087363167 1.5349381415297754 1.4678592083507502 1.7053740903523569 +2.5842366082798733 4.889537687132859 2.837395201496789 1.1355377836598306 2.865437442138184 +3.265819117554449 3.039844440867376 3.1625496515475855 1.9970815568675575 1.1871732957832744 +2.3294114553176244 4.249847505597833 4.801110198153843 2.441782935301918 3.042120930609466 +3.2086182930368894 3.729647795807994 2.7959933548693408 1.7384260362391872 1.1789488437555198 +2.4905982139495393 3.078957407897185 4.770781294981025 3.264922660146008 1.6167179003183902 +4.273121195700842 2.7587083816942086 1.076838825941174 3.04429399448349 2.4828060760863626 +2.916287400223369 4.2151288090595775 4.86595208736509 1.8229788916199179 3.3085759588274857 +1.7495226842553424 4.996258940693853 2.4711722399636726 3.2060779518293994 3.328871088553178 +3.169293312180789 2.418490858362405 3.130171663645614 3.899131490494513 1.0747109099507623 +2.2434305070762823 1.289033216379555 4.637140463466588 2.7407086063135333 2.1230468617800784 +1.0313388614137011 2.149581552379187 1.8172806367734604 2.033573479476064 1.1389685288462117 +1.2985599350590964 1.8551060707611673 2.5159025078606745 1.9336956198077413 0.8054243984764731 +1.6228547928630017 2.846694578967844 4.995708432338214 4.799405253591722 1.2394832633154527 +1.0095351619029658 4.428304995857626 4.828768206461081 3.5842747348179325 3.6382346238967043 +1.293568502501738 1.6677465735888024 2.8599658054969153 1.2724588414627687 1.6310081513405594 +1.1108394141089888 4.044503725647783 1.7073354476040712 2.575793477335093 3.059510686727647 +1.8243362601857926 3.178453394285517 2.4482984964650094 4.132591390604147 2.1611283548438402 +2.8320119669093424 1.6894090573015745 3.132315084325425 4.374896814711699 1.6880612446632033 +1.9966788347730233 2.5307264334586432 2.8262213116502175 2.5236866581921973 0.6137866520256378 +1.9996677882990035 1.8880819219177556 2.526771196508918 3.1695080224876278 0.652351157771058 +4.584628831868978 4.829415073254626 1.0773321370139133 3.134045520504533 2.0712291630336668 +3.9130609430224563 4.986244795765928 3.0526525033378085 4.6238804253626835 1.9027560970181985 +4.396360124594242 2.6811112760929903 1.1343116116763303 2.9333822357351362 2.4857058801548124 +3.786653964555224 2.587519281243512 1.0293940701382636 1.8322579169613613 1.4430919392944659 +2.5206648746964966 4.204756483219434 3.3035631120746687 4.375769336035983 1.9964445227951502 +3.290497386528659 2.8458936697129293 3.916284778637139 4.145383263670576 0.500158555711064 +1.9115738697995344 3.047269914776099 3.0871928207938275 3.665489753052146 1.2744539412763385 +4.25727502372998 2.589471416679314 4.366972618082793 4.897133494478072 1.7500398357041542 +1.0798650697648213 2.1350141688762467 4.350492405154744 1.1546302675584132 3.365542218406633 +1.1915595705359032 4.525750568400981 2.2181921089466576 3.0218289777138505 3.4296737202081573 +4.8128007086314515 2.31702846536701 3.2084527993529526 3.9603752498578104 2.606581374486984 +1.0583369597428227 3.9484293233683347 3.6420327118928544 2.196532839594807 3.231424415192188 +3.494117701926569 3.6208441922418175 2.3690715684842765 3.3802590901400933 1.0190975455274405 +4.623054104383005 2.735731664464576 3.8105787620694804 4.333950592118171 1.9585464162761543 +3.9727965618546452 4.124238709528366 1.2927057912913207 4.657307687245023 3.368008408889039 +3.00576083670824 4.104481785954093 2.5697021999237704 4.66802435551611 2.3685741687693445 +2.0277830025580132 1.1196777144238137 1.161056982116207 1.3378402325362106 0.9251527073766576 +2.649535850213524 1.555518383142212 3.4728638876764713 2.9312918912220276 1.2207270151843044 +2.2809768490223536 1.302990769412883 1.589100776859592 1.124637144096984 1.0826741144356138 +4.074264622926483 1.8625501372432773 1.513018497346633 4.542689095624288 3.7510778318036824 +2.8144653474939396 3.1022440576673747 3.688060085045006 2.759570001064262 0.9720650297586343 +4.240645446944807 3.3739372673567862 2.422485433887424 3.7287326809393835 1.5676303578955095 +1.006627290453177 4.6059664860596765 1.6111951832232712 3.366783599439548 4.004663947471999 +1.1267088713118056 1.998898205470899 1.2973269916458778 1.5187334548789946 0.8998527971742268 +1.296301114691429 4.421727982363265 4.659175688262351 2.1819824169040962 3.9880796893777837 +3.3385311719916384 3.706644518802713 4.398977134021021 4.889640198772062 0.6133984669130942 +1.689706002602985 4.299917736374371 2.6224264317180914 4.187236663721427 3.0433265282089197 +3.0455967191852396 1.301449130814082 4.148271390221645 1.1681522765014023 3.452993012153608 +1.1903273247795725 4.1571171788285834 1.0077256537577708 1.28651537173509 2.979860021030858 +4.761650216286286 1.5419166750387898 3.3774263225291437 4.425521584659251 3.3860283157607705 +4.953335582059436 4.992419877466212 3.7644058226796617 3.1582216378932944 0.6074428763534534 +4.510786633454815 2.276076729951046 1.1569664886625297 4.401075138520429 3.9393107626716466 +1.0544970215828018 3.3792775660613996 1.089324035924816 3.0402344630384297 3.0349062711403176 +1.758137843345978 1.221587080931867 4.186851895495811 4.850714269657132 0.8535806771912484 +1.9478917197462295 3.224372526570924 4.664812746543413 1.7254256159546566 3.20459045022334 +3.1612832654853062 3.6915827447658134 4.057122719643973 4.97540527519325 1.060405766464558 +4.70135032542197 2.4559184929503126 2.5669427176057726 4.140560701114161 2.741940493938195 +2.8163811962095675 1.803648354453034 3.9528198226374527 3.5315024913032715 1.0968756093809455 +4.484799983949126 4.812454387312697 4.105275574957721 2.682021354009085 1.4604827919190446 +4.1155346139361955 4.057525188039682 3.827522822187205 4.796360806762555 0.9705730955723375 +2.818266450363987 2.3371244861785168 1.3326918894333741 1.7481261319549164 0.6356753885118566 +2.6910494124315822 2.5629310100552956 4.520371134012944 2.0464952084964847 2.477191236032731 +2.795995080603363 2.2751347863947986 3.927461349066974 2.287424988716676 1.7207599220559748 +4.052536997685914 4.106580876349279 2.4837992180458217 4.390855963877219 1.9078223640166345 +4.74715693373226 1.359982575957841 3.9833038130953655 1.8492619973881457 4.003384143590459 +2.7942013791730034 3.3682533846856333 2.7848720562093483 1.4470263181688363 1.455804562373066 +4.808938413445589 2.16718490218413 4.903431163524811 1.4111825607644084 4.378888205668676 +3.91776249282394 3.8022445225378747 2.1520165422378335 3.640185794772801 1.4926460148506397 +3.851011174132269 1.5375880731192915 3.295410417518719 2.432320989845368 2.469179986242804 +2.965974462156212 3.569903366312112 2.8945497307174137 1.1450398218741293 1.8508146969418044 +4.804523272867289 4.47948780594283 4.070693865100049 1.011850667387654 3.076064005015206 +4.7723230859490915 4.036036773288155 4.46321535196383 4.460132719834359 0.7362927657071503 +3.6707988736074126 2.3020105490240392 1.116019937483642 3.8131763045757983 3.0246047586521976 +2.974953763026556 4.993225516264642 2.2451107337919907 3.9632295504635877 2.650538273279552 +1.6767372325176617 2.98841426287168 1.5525362720391116 3.3241651298906296 2.2043514787643574 +2.8862582417866323 3.9816347971263344 2.2678643446832436 2.0500893729358713 1.116814996455295 +3.998068997959191 1.0235365613943603 1.3005458435740174 2.44353742713169 3.1865769998950255 +1.0907219687500427 2.9542824289669953 4.0926418961131885 2.619974287246369 2.3752068278551106 +2.777625152942249 1.7318870559445152 3.03890034711277 4.908887750573111 2.1425267925075735 +1.9846000509534956 2.41481194153056 3.5089470215137992 1.6626650506039513 1.895742436857034 +3.4125417227889048 1.5839715582160632 1.3940675532521634 3.897213488275409 3.099904582207224 +3.230054498972052 4.524398166031217 1.0928423587284253 1.6551408924294364 1.4112069902953548 +3.86364028409388 4.294135317406798 2.4024416841806944 4.60639112322061 2.24559994289977 +3.5047244656244505 2.8806827582063845 3.3253864074524113 3.9270497908084376 0.866848821576563 +3.0039837095521182 3.971532312186115 3.796511557917448 2.7297360724670505 1.440194512840863 +4.025853339992631 1.6950036780553446 1.2634303824629316 1.776340144143965 2.3866161338139102 +4.6982454306943655 2.79924946083302 2.3940658097034238 1.878449464244817 1.9677514856438865 +1.307739375695102 4.205533503610038 1.3359656109677776 1.319835242091027 2.8978390218537653 +4.791225837528723 1.1775644714540952 1.9044027783908124 4.442148364013949 4.415733362195917 +1.6382011969943364 1.3741088544851054 4.637909387540633 2.420567234314409 2.2330138803522743 +2.5565025764071065 2.0869776551908 1.7813787906129583 1.959632511903163 0.5022230986294686 +3.789567300038717 1.7767942716822125 2.514722797930776 3.136642043641148 2.1066653298197062 +2.789099432817891 2.846306218999005 2.2164452829029986 3.348640521191624 1.1336395696995625 +2.3374521048247963 4.75805434829341 3.7529029234195384 3.727989326180429 2.4207304493505006 +3.831694199339733 2.537833929301872 3.2829916022522556 1.8110727658795454 1.9597498460903728 +1.9347607765738246 2.9914220182254443 3.6847368721067713 3.075070524068699 1.2199287010062607 +2.181904148311798 2.970269164965479 3.4124865414332453 1.8301795647608636 1.7678276974607712 +3.602585058623412 3.515143581211124 4.447331232796084 3.3225954964543303 1.1281296417417062 +2.9933733378605125 2.4896150739645857 3.6673289943438507 4.02461429621202 0.6175962883425281 +4.675139702080185 4.03637343931391 4.816288077603684 1.857889623880216 3.0265729380673774 +4.0663936117385635 1.7874593102235807 1.4038025734979298 1.7990836054678958 2.312961012394464 +4.6538074512969825 1.2123880695642066 3.7311390323771727 4.118101316581592 3.463106577967635 +2.3904539982523665 4.27868183046022 1.9812259703570239 2.0870914855070173 1.8911932353999008 +2.4384364324163283 4.023245798391599 3.2368234378029794 3.6927835081561557 1.6490968171212428 +1.881438593517267 3.7529277606244418 2.695335393639685 3.6917964213461065 2.1202373174569975 +4.6753664150643335 3.489314766064281 2.299444762777984 4.147455929763305 2.195874264933717 +4.4424001577326155 4.501347375608699 3.3054134438818163 1.2045491314203938 2.1016911366490882 +3.411382724722699 4.4970012451589065 4.068893868673371 3.7224763808826316 1.1395493178275995 +2.035778780019768 4.836609829703738 2.126855077564884 4.120444302800837 3.43788489741159 +4.78360943035653 1.789699611632698 2.773585728604794 1.0037160941585328 3.47792100623144 +1.141435826135111 1.6885199688370065 2.0082958383890164 2.114606768849184 0.5573177488032968 +2.411942025788773 1.9809284103267508 2.1586926780701905 1.3832347142343075 0.8871909548626707 +3.929136607625967 1.6071820154145486 2.668120855067683 4.011201791368709 2.682413005065949 +4.170356836576671 4.943656881967968 2.0578813430056093 1.6507760728553453 0.8739151338581459 +4.182948737990074 1.4800368682113723 1.4481997808994054 1.0565846958913183 2.731134370659285 +4.925963342216518 2.9395639067234414 4.590457546408697 1.1437753894340252 3.9781152080520226 +3.645362201159456 4.951129845620571 4.632865797538769 2.9679283687543583 2.11590306561732 +4.943895049317044 2.2922506792600026 4.680791970236283 3.2506240141909397 3.012739326220262 +1.4561622026054848 3.0343730520870937 2.7917362371756202 2.015291133060533 1.75886795556851 +2.294282331097948 3.6049041733533245 3.1982794558722416 3.2311814074222056 1.3110347637697 +4.6141152611552005 3.644397006334553 4.401267793997652 2.3422847167168297 2.275909665663646 +3.6222178022461122 1.7877109795436388 4.954017268886558 2.8417968571790144 2.797658011654732 +2.052783907593678 2.0630050219612643 4.2026121916158 2.4189817739823254 1.7836597034990385 +4.883849240467939 4.131961812487603 4.966090101964875 1.7697349643476632 3.283598768139437 +3.8631498161921294 4.057376162945106 4.989570529126799 1.795808093976793 3.1996628519186676 +3.7612395342443827 2.378261700011482 4.213303197181188 1.647671894436662 2.914634054491592 +2.948216428497074 1.794925011025819 4.812010205635483 1.5130179752331734 3.494771928161788 +3.651545341210716 2.365700448903055 2.3116649230770645 4.933512886104358 2.9201855811410464 +2.8583745674239163 2.635222246873241 3.1327830799032257 4.769871260213913 1.6522271842213794 +3.554654679884035 1.6481374386122285 1.7140813489622775 4.236740510021876 3.1620590181311568 +3.4793005241360992 4.7607264275684145 1.6615309801711744 4.814835453211547 3.403730518957655 +4.28499789922818 3.126295823047989 3.195400231047675 4.5695830692857164 1.79748963119464 +4.9571128298311224 4.3587056956951145 4.400580311207802 3.593588565228496 1.004652564951486 +2.876371844472406 1.3604905926743855 3.674702851335972 1.8919349874552283 2.3401190623638453 +4.500048385830709 2.086435718439996 2.812861330265717 4.622724865374177 3.016808267673669 +1.8653169703689905 2.147356607799876 2.658082935573815 1.3002464862399457 1.3868187265182697 +1.0230131574716537 4.162645979701463 4.415837258861555 3.1937381270918594 3.369097883157295 +4.869481913446709 1.1854947679377084 4.228212381453279 1.0590474566131163 4.859564549330805 +1.8222771139297027 3.15454592331455 1.50375564814148 2.0116501712423145 1.4257969796066838 +1.4338185836107744 1.218491057370056 3.709562360151581 1.7326955414556444 1.9885593685927359 +2.6743818116387286 2.8667833217255656 4.802331509488953 2.0970040075012397 2.712160620998464 +4.981941226029815 4.167040995088889 4.811369895263156 2.707859938574054 2.255840536092426 +3.8791267044030233 2.875623507012608 3.7843469413658997 3.946439356521497 1.0165100187522804 +3.170144208642423 3.549684171938786 3.5535909424256467 2.7431700506114645 0.8948925106558324 +4.489584256485545 4.461354852051539 2.113105716658352 3.345078115070802 1.2322957801294396 +1.7436025299652704 3.580686196775479 1.398324581635526 4.0843493475688595 3.254167396135002 +1.6011801703212938 1.6490447906565975 2.4013417175999514 2.6835329277870024 0.28622176889027 +2.1269546654028706 4.167553892932893 3.9541144745819845 1.260277881640123 3.379467531560074 +1.4241867895118525 3.2358220836686287 1.6312437580946768 4.8044022930259045 3.6538962118321594 +3.292909932375028 4.718471139922349 3.2021357125556125 3.546601779590254 1.4665884316338005 +2.8402283410811906 2.016356557442261 1.6150645840924645 1.2192824276501817 0.9140066910228257 +3.352082423662103 4.267634007864615 3.0615776728550794 3.0782990763855103 0.9157042692221964 +4.727015289562725 3.651569458661429 2.2126136430134133 2.313837558251867 1.0801990632375034 +1.5350730689974834 3.185194178231051 1.040094876682582 2.6303860870253546 2.2917080548865076 +3.9111986568457873 2.9526991184372884 3.3457315453982464 4.701625285201702 1.6604725829617022 +4.328047270602571 1.8916235622446393 2.9305623654780906 2.0766914647763524 2.5817157089257163 +4.6655666762052395 1.639321547001884 2.106008976298564 1.2580196521669915 3.142808533122588 +3.926475472752893 1.4412118130939784 3.9796585502873545 1.2165286565955808 3.716372191726003 +1.6586514846434017 2.668309846110726 2.3857509502999 2.30304329448594 1.0130402574484012 +1.0642034024968106 1.100176497408384 2.1688915481345585 2.5550657572573106 0.3878460820339688 +2.97430028530359 2.8340393671735025 2.5388878184947745 4.659065743031007 2.1248123580319893 +4.850904099271791 3.924929022335084 4.258503828666884 2.7293628453544057 1.7876526480146504 +1.8643732144001963 3.2817750082133283 2.98781125117377 1.2039944963272866 2.2783832118359113 +2.196813601255271 1.5486474958159757 3.075970398764419 4.393354901144383 1.4682034012190708 +4.747453921420462 3.831610677131378 3.042962677419064 2.3385851344744477 1.1553858970554598 +1.0002024481905956 2.795091191061509 4.35518549108758 1.0912278288561703 3.724922176384878 +2.617823809138237 4.151782207392776 4.3653235008212485 2.092829156915612 2.7417620083914542 +4.361927783987321 2.689470078510987 2.6988579119158738 2.17355802401939 1.7530130486768265 +2.58106535805316 4.032857461439089 1.7650046010640756 4.28652562597743 2.9095993866052816 +1.9467282669295853 2.298198791130774 4.870130505032447 2.1445535151375887 2.7481450939181817 +2.746841041292468 2.1579091264525645 4.960967003474666 2.344585386155332 2.681845179678262 +3.2051299582727464 3.7449804985987325 2.3362973271413483 3.784774249325668 1.5458085263029246 +3.8626930222149927 1.2425939706969373 3.002089303295592 1.2197230735564233 3.1688717892462033 +3.721760830373233 3.9641539250030644 4.710770366384714 3.196235858932343 1.5338087190351413 +1.7585892650368464 2.552063213462294 3.222964870793974 3.346973312932752 0.8031058464184884 +3.1250644016408566 3.518066595839103 1.7764637789871442 2.5369284700226498 0.8560124245338749 +4.921251262323049 1.276978323550476 2.2000457480581233 4.8111565145443365 4.483148969990882 +1.049517409711454 1.528724948686354 4.300107956379021 2.026704814662187 2.323360004428576 +4.501059872019784 3.4362908214622028 1.7409083835153125 2.854665551987555 1.5408400829899904 +4.783424514764519 2.076392198538011 2.285729432800791 4.166260150315513 3.29612192441528 +3.0931011661019303 2.9731430398426535 3.1685820320879965 1.384913131687568 1.7876981563763248 +4.3953875422527435 1.3611116862665793 2.3136181893398455 3.423896396614875 3.2310288868672195 +3.3589015467725423 1.2382969426142947 3.8697975281274997 3.54184048661398 2.145814462682051 +2.8511988742526895 2.3218765074548977 2.026281113974297 3.212480097160484 1.2989419523998598 +2.668789070128878 1.2538289383779717 2.1066121031457743 3.136646186659876 1.7501663885600356 +2.0338125297157488 3.3519141720221803 2.2408284141085137 1.6907368215636631 1.4282831300689098 +4.750124013450371 3.2262548746126636 2.413507891776814 2.430012851274654 1.5239585184610511 +1.7084948655955778 3.941606872098468 2.5568394310702 2.8382734203205864 2.2507763824717792 +2.502199591208608 1.3327024239132852 3.320374747191537 1.1364221426259857 2.477372116437181 +4.477414769910613 4.753895126311457 2.0005055950570116 4.153763318874241 2.170935331292504 +4.695018007330139 1.8757784184011048 2.1375575453683693 2.692263073951327 2.8732925509292033 +4.803821929074893 2.955652612347355 1.6651622829236765 1.1154474516795636 1.9281898814647058 +3.094577005877395 1.1212759504371448 4.48912906535352 2.2718329997949884 2.9682181351347734 +3.731875407040008 4.223352769826315 2.789302118564039 1.9535709032928859 0.9695342501995389 +4.270379064699304 4.887246596084955 2.218404272646292 2.4043211659015955 0.6442752847002058 +4.478087717375791 1.1901327167585944 2.4526880385722505 4.908103799258045 4.10362213707693 +4.062461764771954 1.1189060629719934 1.221871694245018 4.383371828341988 4.319676291980016 +3.2636693936126004 1.8766876841761815 4.559900978495272 1.3911552772791347 3.458998060318468 +3.837022703079963 4.633805084665366 4.362138154731483 4.254936414898694 0.8039616760941307 +2.690757351113222 3.066659671487077 3.9469989538777197 2.7097134028433225 1.2931272517664067 +3.8793255013985384 3.4685362795549604 3.7443737388025125 3.2546458682072035 0.6392035450626569 +4.085296319334173 2.064750237187473 4.339012122165292 2.786536026174154 2.548095072539929 +4.047050849524992 3.9643981828837975 2.1706872053972703 4.060280313838597 1.8913998992206427 +3.673713047796303 3.6122224563489165 2.0754658503646306 1.1444131172739804 0.933081070771516 +4.455309249660222 3.174183457871428 2.8779109276188186 1.2525526720801383 2.0695585889832175 +1.5841772075336582 1.7478602923316093 4.110649161867336 4.043830333124095 0.1767962333410749 +4.953328755415354 3.3114259977784233 3.1356816295911054 2.60354934031725 1.725980717975607 +2.409941304450734 3.0086787353204762 3.986252774199123 2.578217671706242 1.5300488099981115 +1.6700016501705117 3.0360680064749217 3.2007005090400007 3.9823985556950303 1.5739088683818692 +2.7956844413419155 4.534887615666973 3.8990086611371915 2.793105917435948 2.0610309459365945 +3.533935547906139 3.796906599833761 3.274249432711849 4.938021519148595 1.6844261128817741 +1.8855826918794292 1.2975631536533818 3.5105458671287524 3.8644850056972975 0.6863234595627762 +4.513415360004897 1.3229812046540617 4.763304433620281 3.3956940025107176 3.471199848886388 +1.7126210467521115 1.4866848136405864 1.8378315925452968 4.424925980271533 2.596941384097303 +2.402366910432348 1.5789199233873403 2.9566798963470027 2.369311192154887 1.0114677133442402 +4.129023182098278 4.961562751509821 3.0280141072116558 3.8908149723515306 1.198977675989872 +2.826358426196131 4.511319859945316 4.777042827465112 1.9648574353881814 3.278335204434255 +1.693292876455363 3.066848926536285 3.278375849469633 1.9408796035210312 1.9171730309600399 +2.721140925289655 3.1913744760916556 2.3385986191380694 1.6051937114040506 0.871207409856116 +4.986830763689193 1.0152999998992902 1.7060657315535672 2.2107471033764168 4.003468483052489 +3.176786881884875 1.2132855904303983 2.142030612503496 3.8903976119518067 2.6290919509030655 +4.252426847646078 2.086961826236212 4.223311791446648 4.388632695101608 2.1717665068176464 +4.703068399731465 4.179171968287738 3.033496977568921 1.6820328263925455 1.4494560437606765 +4.09244413915437 4.1351034478357445 4.310970559270087 3.008148891353773 1.303519894366565 +1.9310938477241146 2.768898250348403 1.5318856592982746 4.096186444172282 2.6976943363476322 +4.700658067190359 1.018954881392908 1.9346591360779977 2.5325417670517294 3.7299332418598556 +3.5842746765169347 1.3372103826607233 3.1026022701106273 1.2631911392502366 2.9039165361725905 +3.697103815570489 3.9080442301346614 1.6580674163628193 4.152457999620127 2.5032938781412057 +4.978122973554353 2.347278201483269 3.6512883755772365 4.579773248576505 2.7898796343430696 +1.2313159470537443 2.3717482701295856 4.542063464233575 1.820227713708627 2.9510973783241834 +1.0279439520469147 4.571476789762073 4.944963148862558 4.638109718253326 3.556794062051147 +2.081477049130668 4.974875597451197 3.1697686261680347 2.348767638503508 3.0076232778008407 +4.209598758589362 3.6155927580200315 4.877778135319312 3.428052856258333 1.5666992415459982 +2.232226361801209 4.397364580080078 1.898277593876419 2.2487333299802783 2.1933177442449816 +4.6596243744900265 4.124820620816043 4.502803786194829 4.0775261289240206 0.68328335316875 +1.8635901437665936 4.48341692204961 4.092300100910235 1.001800073223527 4.051503766423068 +1.1736288550693326 3.510180397417085 4.505483130285482 3.4947415323644893 2.5457949029361227 +3.879742573840665 1.8237696984759797 3.95605629681158 2.400937129581215 2.5778712319513937 +1.1516553135378254 3.513545964036962 2.8856489566206713 1.6525433310792303 2.6644093020137096 +1.2381790536511734 1.250716651037202 3.3950291742605683 2.77404823364509 0.621107494686627 +1.0040362221110128 4.994173826376624 1.2483144205682093 3.9659371359230784 4.827698346415948 +2.039752882013088 4.730319723795913 4.4927993802131665 1.3215964161211486 4.158807301326572 +4.351760520410309 1.7814102949352395 2.0889689515414696 2.5667948237808424 2.6143867054781813 +1.4183846740310426 1.256109844878328 4.592409866134835 4.845440191968647 0.30059518620248704 +3.172424826892356 1.7665602766125308 1.4046504722663276 3.501828268936802 2.524798971122477 +3.3285013480946635 4.993656939648158 1.5371273236748775 3.7756949123894112 2.7899691742607247 +2.6988012509168278 1.5327218206760551 3.152371025703846 1.0043234434756743 2.4441459966922885 +2.8411039834619194 3.760169092036692 4.310497651137857 4.01646002833234 0.9649553344195149 +2.5323609563052427 3.742959972717958 2.4446293912023314 1.048945865305873 1.8475612257779725 +3.387072399253923 1.505840933876195 4.702033864611289 4.677631606546589 1.881389724784817 +4.118611173725267 3.2198724437071666 3.8344204426812634 1.6055876576137509 2.403211786053479 +1.677671114657152 1.1002773533005383 4.052096919950671 1.3942759473698025 2.719815412476415 +2.6671861039748883 4.108642787897376 1.1969305646419888 4.874120315100808 3.949622998781556 +4.176528059670598 1.0993488226449974 4.687021905187529 1.6044210142847835 4.35562398622469 +3.0860373123589446 1.639528379307139 4.73837180111604 3.0101965724344457 2.253658739567141 +4.167163486251699 4.899911503056223 4.716834027846147 3.947483806573444 1.062459137615805 +4.766672031869218 1.8389071227117193 2.739924689519955 3.9253897063600425 3.158660264961347 +2.6597471599342284 1.44644919928044 3.1943732774414744 1.5117461272346877 2.0744459665027803 +4.321719355886511 3.805997470452976 4.808869813507039 3.1906918555789274 1.6983724463849246 +4.543126036911902 3.6306575217194874 1.0686008512902148 2.647642790199737 1.8237248246521713 +1.4064923882555176 4.703962321640443 2.721412602537501 2.301359603465343 3.3241167975278936 +3.2443336554123587 4.1835341684064815 3.1995086023914556 4.266425310579404 1.4214108715705782 +1.917972374973508 2.797266523453333 3.863606170095211 2.5938733756694385 1.5444674061925496 +4.552188703638852 3.9041624164137216 3.1385717224541785 3.457144898114313 0.7220989801855217 +2.6624025505671085 4.8416440264504015 3.9923388241940283 4.794811390010334 2.3222953363208996 +1.238507590276054 3.683742962968763 2.5000435044869773 1.0247411634640406 2.8558174005519694 +2.5414099783103854 4.262265205341794 4.042029724619635 4.878791424478193 1.9135079970440432 +1.1490373521849389 4.664403350292856 4.625553492072271 1.9640474602213747 4.409241710116602 +3.9159712616161757 3.1424644071347694 2.873668305242664 4.930495561143933 2.1974647243011804 +4.821026012951431 4.977789433452987 2.98921204253007 2.3658015341048824 0.6428183507199359 +4.184776945347902 1.656242410440517 3.9929366161396778 4.18813961057066 2.536058182150821 +3.2356246779693625 1.9238964436344603 2.176890506892068 2.30004992851709 1.317497325950368 +2.327922389608326 2.58639154783901 2.5520894858683203 2.9265997312441816 0.455043107461223 +1.5696317173724794 3.9586403009781646 1.7706559435124172 3.114988923492958 2.7412758295372255 +4.479844187148917 4.018204659410973 4.141947449292296 2.6305125311027835 1.580362795529131 +3.739336907851515 2.6063892108170585 1.3391862830228072 4.848015359639423 3.6872011028862928 +2.7396183924318294 3.3792634152829204 2.3284550166246096 1.6547692109882366 0.9289770287655674 +1.9730894071923837 1.413231659067943 1.6701981776839823 4.124911384503775 2.517748523159229 +3.7849926664026765 2.4837009189118557 1.500065636868837 3.9489617911087342 2.773166526975737 +1.3512366358422776 3.285613417987948 4.73816025385992 1.1631566385525662 4.064783436391771 +2.4764453564061903 2.822561879948233 2.745357434118877 3.994716528692603 1.2964161349901926 +2.1083509349654888 1.167573712882036 3.629312007066861 3.491608760971615 0.9508017488289691 +4.023228683805762 1.8764989100919713 2.084085157207753 3.420232905552578 2.5285844907291923 +3.4889597225302325 1.0647107015068804 2.7613478943266667 4.016436990994768 2.7298776449701605 +1.1634307463832454 3.3225054908758938 4.709766768318955 4.861943111425942 2.16443096256439 +2.4871581059997174 2.403312385693174 1.002559979002951 3.4394513188414084 2.4383333461595025 +3.807547387403981 2.939877623592715 3.497437221600813 1.1211008599509782 2.529787604272634 +1.5158387772863877 3.422158852554475 3.712745182850711 1.1412693599773545 3.2010223580900417 +2.9464921843680343 3.8074770733538914 2.3089601511747455 1.515886653460532 1.1705812880097843 +3.137919217278234 3.1493612940369653 4.150947725608159 3.7421912681885026 0.4089165716901431 +3.4362926847579844 1.7096084499250006 2.014116266070573 2.3760156477200542 1.7642022586027497 +3.7888179286531196 2.844335306904194 3.083433727659465 2.6411001730588084 1.042931635492651 +3.52404072790045 1.171694418278721 1.4870518622925566 3.902412213349444 3.3715721534394927 +1.9682194412921477 2.2423589995742805 3.969234538966082 2.9674476417321145 1.0386190277887186 +3.8126507464340267 4.229090039041585 2.7734417612223754 1.7570630903155906 1.0983839433921665 +2.022427439680721 3.1605277850377274 3.0201881536920037 3.230852601816943 1.157433326721467 +1.4239557818755997 4.483456729951008 3.4887723897023584 4.507142638509066 3.2245346974298417 +4.890535900395127 1.7290970203318397 2.2430713300661362 1.4877567867216834 3.250414719964739 +3.3836373196494782 2.1386618552332695 3.5408520162483086 1.4511066011726168 2.432488398087076 +2.6857660318881527 4.386706980966688 3.773000247632841 3.1016068616870367 1.8286522881466447 +4.053681750149099 3.843105301654183 3.14532091203192 2.2553180715178516 0.9145750361691722 +1.7749028332253691 3.417341714727558 2.8426893711418155 4.095131201745719 2.065482030547983 +1.3913097258755398 1.129711137224544 2.0202295234467176 3.599376741330097 1.6006685344983236 +1.1523673111959076 4.882694414033548 1.6750286581556728 4.342799848023915 4.586103293173419 +1.5052776589337364 3.065078455321434 1.0463601943357101 4.166224422984289 3.488055522725045 +2.268316976104208 4.097707698959663 1.8923256366895522 2.179749655774166 1.8518323313994594 +2.356662574786005 3.398610368287614 3.266457962040369 1.9227395100946443 1.7003630443179734 +2.0678743583903008 2.8966060457225637 2.507335261198625 3.3515613288864388 1.1830105083862141 +2.981354224063392 2.8359478881202476 4.883292848603389 3.2903396360606423 1.5995758624968899 +3.5345895206887064 2.3060796780411064 3.475928233245249 1.126565492018122 2.651177422080286 +4.258527021736073 1.128491476123766 4.844365072144123 3.9127763208343764 3.265728114580788 +3.4426738979300464 3.594756851084593 1.110166353033085 3.2643144337386607 2.1595099393722927 +3.1392160556473936 2.884771369939168 1.8134168107912259 4.19023220831691 2.3903961035778853 +2.921538314914714 3.0710199274303513 3.1332802242932423 3.0984419293557943 0.1534876518630206 +4.121164021015408 4.985142543281092 3.1918005773125353 1.055393070979552 2.3044947212029605 +4.126586888041247 1.4262870549111542 3.4727068279515994 2.1064444571651073 3.0262670164130485 +4.149940533244375 1.7039081867430972 4.30971087519093 3.6840567148818932 2.5247806574913696 +1.325782043271984 1.2828043446391604 3.3171844999652564 4.1166254011591406 0.8005953016858539 +3.3064103173706356 1.9510410992492302 2.329291191762004 4.541320963166963 2.594243902761054 +1.7159447284439384 1.6258015772540162 1.3334968069716933 3.123965723976753 1.792736659542533 +2.9594097182837125 3.6009475533953665 3.7891051049485283 1.6137654269266224 2.26796682265332 +4.545383615618418 1.4105926392164618 1.082564729663062 1.4396833884107036 3.1550670677747634 +3.916886545512254 3.889221059498071 3.939286037847713 2.132777557617256 1.8067203071479983 +3.7427657764701285 3.344203681451326 2.147133069197701 3.746724921350987 1.6484980549157335 +2.3615000582035717 4.087796672598131 4.818711251326354 3.7826209956510217 2.013351191117807 +1.6151293526138217 2.8910624243457037 3.4055414343116883 4.736233645878842 1.8435690834532452 +3.0699036327808944 4.718148417564172 4.093414343252041 4.265021515848161 1.6571541546433473 +3.816076935984725 4.7863778536645345 1.4497045405733635 3.6938448294462667 2.444923210858132 +3.4655446844672193 2.840818568979815 3.385655402950911 3.0647486300450653 0.7023274708202905 +4.046906948355405 4.178415069767592 3.5024389186780187 4.60479555711087 1.1101732046371584 +4.2581593009654215 2.70990706503694 4.167898386663936 3.580551683459764 1.655917007528563 +3.5326461880951268 4.18866481722878 3.2598891235276177 4.039187947383274 1.0186594615636801 +2.165684810504576 3.4707484112512526 1.4385392681813411 4.726939382598761 3.537904226303248 +4.314795723968334 4.6414685704378575 4.662444763182043 3.396433212213755 1.30747864066899 +4.782942197456576 4.044794252480523 1.2271113727914589 2.498164658078574 1.4698431354098769 +1.9531264497635248 3.130948077671065 4.283344684740992 3.6542740295944607 1.335287862722213 +1.1739733110456303 1.654567356637445 4.644659998434674 3.7692119733446923 0.9986890813923306 +2.7703865934312395 4.321172564094697 1.1411729262194044 3.832455243745453 3.1061129469861495 +2.280391525950722 3.8640334840784685 2.570853255396364 3.281987679880564 1.7359821488797509 +1.156700759427706 2.9104972414502495 2.8766808639535375 4.859644215342817 2.647252491415893 +4.3152000166663855 4.4901106836341675 2.1782607988712726 2.993714436222641 0.8340014245123872 +4.081581834108337 3.914337173735101 2.892348453181299 2.8320306503939454 0.17778923970941846 +1.6315456740780112 3.855806812311741 1.7040165732526682 4.484466497386667 3.5606515403326915 +1.4817834862564525 2.2516838403376496 2.051321157945755 2.8318052728968204 1.0963129155972307 +1.0670829006073035 2.238563081751235 4.784262972975072 2.608503942344716 2.4710914944984466 +3.940049559000058 3.3137704435097204 4.492056175070852 3.7160101704963653 0.9972326367078965 +1.7041394079411085 2.5769732624676 2.4148918768677547 3.0108142884592786 1.0568644464852766 +2.606372619750791 1.8828117540138338 4.271008899713745 1.2360487350742626 3.1200197959908094 +3.507646492461905 3.7718535895812804 2.0779811255079985 1.0545100824820888 1.0570233517197198 +1.4666808677540124 1.7949235891195223 4.547966554680066 1.6833744061261031 2.8833368623326767 +2.486393608448652 3.072835102339744 1.113919054125788 4.9269681929763465 3.857882497050189 +4.721563780269369 3.737814754078914 4.803872959964895 4.390825795035029 1.066944284856181 +3.641793452439514 3.017205362705033 4.556699949512597 1.6939240823960322 2.9301187599111347 +4.673058418867447 3.13168160940886 3.1311367082972277 3.887633277121646 1.7170118017590472 +4.844648580040549 3.3200767067592576 3.6068517518410865 3.8529986794529543 1.5443146398235008 +1.675462439372827 3.525470576996745 2.8264514303587243 1.2761614496594844 2.4136961560086982 +4.614222691303151 2.925142024928471 1.8332839626627626 4.905432393489334 3.5058650114559313 +2.749015863393012 3.7807668334120152 2.760101017449421 3.771129061398593 1.4445372164769044 +1.1941074669524077 4.260754129292272 1.2635255925216833 4.759421049020554 4.650334051916022 +4.825159816750156 3.6836342896789223 2.653093787103673 2.472229114519929 1.1557649236519 +2.8669700266331337 2.4294905155196584 1.836466188350101 3.8867044099227757 2.0963933523653355 +1.4443024994496652 3.8811791123880304 3.235389204698032 2.9284858996391163 2.456126475844036 +2.0094920512022463 2.1266889428909717 1.7038380261198696 1.8092302059860859 0.1576154275394757 +1.6790728401872435 2.048724046637307 1.937950931894624 4.818570703735644 2.9042403971350925 +2.4203076570080766 4.182506348994204 1.1854807053899759 1.2896158317382365 1.7652728838842984 +3.673674076753605 2.9119928482830817 1.6549373324695211 1.281697619041529 0.8482135211632594 +2.2849205070281196 2.3919249180500963 4.058803327934566 1.0747925551427322 2.9859287057992323 +4.616661529768653 2.496665331730741 3.867989360477379 2.0404207060326836 2.798998225509262 +1.5632049204676761 4.818194605818928 1.248200835990724 4.157696630435991 4.36579014951907 +2.9775716184409324 3.825293155134216 3.8999041807488783 4.723087056731065 1.1816352445166511 +3.1263224006519637 3.5137170868895238 1.1572731264754919 1.0183041985682428 0.4115665266379031 +3.9709112801612103 1.7123842454641842 1.8625519212426056 2.9232433159101467 2.4951975074488826 +3.569156436080125 3.5473392898501475 2.7031854500664703 3.3997425730682833 0.6968987110579149 +3.174755154959562 3.2907148749852126 3.0351073492967635 1.1907762977633447 1.8479728581120431 +2.6747062729625815 4.84033871038331 4.2117903414193965 1.2896016017534997 3.637189970875732 +1.4027891788871463 3.477725448619726 4.823463960643614 3.271783878928822 2.5909595904687857 +2.3048095052504833 3.36424443292031 4.319702216972125 2.6520056581964493 1.975756609028299 +4.804955539832229 2.5017521970131193 1.0483288724488213 1.054366073988776 2.3032112552207527 +2.8187088985218898 3.7364195501641047 4.324085199806818 2.3995515889726056 2.1321403470147438 +1.025253340938808 1.8991456130241207 4.6973935406085126 4.78331958673388 0.8781064790862032 +1.8024991857691126 3.887951505790727 4.5465638139315026 3.2145375513739425 2.474551543861351 +4.724582718167989 2.807694115719711 4.236514888071161 4.25593500751869 1.9169869731522615 +4.3671978910156355 2.3798783366558043 4.780114542612102 2.2347227844418285 3.2293123437818947 +1.279594599009021 2.62957057332598 4.902816202698209 4.776706268392706 1.355853549157711 +1.8300875227909308 2.165346326306293 3.684752429074111 1.261108164491874 2.446722294535472 +1.516584961428717 1.1778159814358782 4.113100653881123 4.6153652519342785 0.6058334327708289 +1.6548021870713638 4.6531306755108055 3.0554183550884013 3.71183546455841 3.0693414841285596 +2.2147542216173846 4.712545174913904 4.253101698826999 2.3437385546205176 3.143982707144554 +4.091615565042222 4.834496401982868 4.002521957558521 3.9646287517955803 0.7438466461150628 +3.9002756917659287 2.9955774775525494 2.203857229784447 3.4092526268706456 1.5071353363641473 +1.0283125286992147 4.299718480646306 1.4472975539634336 1.0638174259060933 3.29380538451344 +4.111909825760572 4.083199340439787 4.245493593804656 2.120573332526057 2.1251142107566037 +2.2002234547274147 1.5310418834146278 2.990322955459055 4.345160099297958 1.5110882375659629 +4.168517835545105 2.7636074189257345 3.063965640332697 4.235341428556947 1.8291786451748215 +4.556906094305276 4.624227837138874 4.536215077283833 2.7755837805121213 1.7619179266441989 +1.8825967062670377 2.3098887100878835 4.4373040902751955 2.177793640180302 2.2995577684888158 +1.2325200772425302 2.289879785880587 3.8941298332171703 2.26329100072209 1.9436164361892683 +3.782641906553912 3.1312143443787903 1.606688934882408 3.4045482256953865 1.9122384522658171 +1.0332194500464267 2.637215652174977 3.572063371634116 3.707310681511689 1.6096880602377386 +2.2186065085085063 4.632243205820392 3.2894986774299815 4.326990814274424 2.6271718711619676 +3.817973083091227 1.6630170517726288 1.7509738422500347 1.8178833791221178 2.155994522961698 +3.917726195528027 1.1473219817373739 2.138768683323645 4.262066455241614 3.4904917899947594 +1.2725433023865258 4.038694170524213 3.5524912446544925 4.81840303952066 3.0420590555872122 +2.7449009369950246 4.196696324955166 2.09336278500462 2.3416020206418646 1.4728654271901767 +2.79949562817764 2.98457204767438 3.32476105212683 3.9503027333707728 0.6523462853632508 +3.896210393784025 2.0567818197352317 2.153514383310019 1.0691664321662397 2.13525360511975 +4.560904203659385 4.8634353705608415 2.14777095031663 3.9842105595785777 1.861191968984643 +3.22260002639456 3.68703647237533 4.012590178081726 4.587508183383058 0.7390750470519969 +2.1187531691977806 3.2358406530169845 1.740020606648852 3.4243916945569417 2.0211359202899253 +2.4924508487967794 3.435203768054448 3.541683271924276 3.3386105648559252 0.9643762705111135 +4.170839253303584 1.2626240862896037 2.5411354701550897 3.754964692425069 3.1513642820985797 +1.6878828815079947 3.817474576071398 1.5580768290075353 1.4480937756659973 2.132429848219105 +3.7614969328460206 4.558115120896469 2.4352353951675045 1.0396425304833032 1.6069474109286324 +4.372513880041964 4.557633723644161 2.847864660405999 3.3123103378688703 0.49997914337424815 +3.856731626370059 3.135575615605177 1.0624845450859857 3.4624936661554755 2.5060147192462905 +4.483727376874 1.4410029721756001 4.234988360521571 4.793543901314328 3.093566888738228 +2.0514518724431547 4.258965934385383 1.6445125659618096 4.01631518917044 3.2401490732884524 +2.8015565949917693 4.10301444958869 2.0858073860647344 2.2323751697189764 1.309684947801316 +3.569984850926557 2.8926502268553986 1.6879617589800544 2.4399928848231767 1.01209337869709 +1.6670411339778046 4.35900704635406 3.05527014404529 1.8098361491865167 2.9661062538192406 +1.2544028258438393 2.0102858562045385 2.6899477991444454 1.7666954479721673 1.193211657474236 +1.6938785839183161 4.442648059361979 3.327937880956833 1.161512289230442 3.499876208327642 +1.8314959662312202 4.4720828926779745 4.7226928688829695 1.096058249659511 4.486109447781184 +2.867891297378868 2.8523421515824903 4.799795586514271 3.758519109134617 1.0413925668445971 +2.6459006953334367 4.873293033206577 3.096212017089197 2.3335229169859852 2.354351564705709 +3.9510163534389613 2.2941848650639787 4.670064790416812 3.627005077206917 1.9578212753447053 +1.1297556719735566 2.1130083311405454 4.424639082654288 2.235958888434805 2.3993971710260036 +2.9734714677468452 3.993602100470161 4.644831610010675 1.4809860063155105 3.3242420958530823 +4.7227471985030345 3.313705054710348 4.509948289738954 3.2438859674832097 1.894284447177746 +1.810421463109836 4.6989757746556435 3.5451067125925246 4.1638242283819125 2.9540747070943323 +1.0990148942815297 2.0194544258291964 4.195627173425201 2.7005651587492125 1.7556820210284991 +1.304705216511278 3.0624454869948345 2.4042615653623867 4.036294920355662 2.3985795234451186 +3.2971144072042198 3.2180650916987577 1.8109141138815894 3.533153134752486 1.7240522147812771 +2.2601569525936758 1.824113974103628 4.108066572178194 4.841513255731854 0.8532745845894718 +1.8413996618842297 4.933600459751053 2.780611399742902 1.451567330207332 3.3657189296041774 +4.070700446992242 1.1369253149376788 4.368063437128011 2.316868139519299 3.579726061361939 +1.3324157286912208 4.270852556818151 1.7740174883267357 3.4763930917575028 3.3959525450231083 +1.7042030308721765 3.428502455512879 4.566475708031131 1.5549051994988474 3.4702687840681237 +4.729984617406684 4.148880553668989 1.4584867203538647 3.6090660892277007 2.2277058950225563 +1.8954166064175801 1.2363943122895025 2.2009215737163377 2.160433157954202 0.6602648680406691 +3.7629171075782706 1.2259858598572593 4.088525769375515 4.224536630442227 2.540574562966298 +4.492027551062039 2.5866019737002297 1.7097431883479741 2.6115455717472496 2.108054593593154 +1.4366055555331632 1.2442957485291348 4.660061503357857 4.690259061921777 0.1946662641886056 +3.631955592744702 1.862149759553974 2.362283063742749 1.4613038361070774 1.985944675922997 +4.568452254566841 1.5684313458481594 1.0391966583784389 3.7671154219441316 4.0548324544132575 +1.837530709921345 3.1680600067326226 3.2031489587733413 4.699392105912583 2.0022616624792713 +4.569164730986152 3.901813147896522 1.150425611177098 3.881140250359836 2.8110781874752515 +3.3252048142198283 4.095731111951574 1.6258698182128621 2.548107661530804 1.2017626284520249 +3.1056847315098914 1.213980589060303 1.0759627875060738 3.51425509546565 3.0860677150081735 +3.79239828793517 1.238625889081633 3.3106426580910884 4.8784304256633995 2.9966167504863743 +1.1215343508127096 2.7646273966166417 3.162057078319834 3.540291245415163 1.6860651951592915 +1.0374773084884494 3.649420719902816 1.1722666609405894 1.6583619161557324 2.656790729728933 +1.1035999181657585 4.310774312030374 2.451004166840213 3.7323091617355897 3.4536517025613205 +2.4839838734288677 3.591453617788059 4.975387798515989 1.3862840422209994 3.756082401668235 +2.895087155481399 1.5061847362973944 2.691905894052034 1.5865706606559487 1.775053776143686 +1.4365614257368433 1.9152205365373551 4.6298771713690865 2.1460455378910663 2.5295323931150646 +1.826422523586675 1.952752628414101 1.9380169411475272 4.39033488537374 2.455569708837358 +3.2523077514075975 2.5635600438881947 4.7139372515975 4.0968071993798585 0.9247826263308484 +4.197057763282793 1.390277836037125 3.315567446368059 1.2800214416029418 3.467197874004947 +2.7755272064657053 2.403527577967353 2.2191891288354437 2.1317287808179 0.3821426907298659 +3.482908870114916 2.680883923634995 3.4729718692495593 2.0868636170496884 1.6014181532606344 +4.597601416067162 2.727758055990327 4.231170637605718 4.2554079401518 1.8700004379834083 +1.8667675411820137 4.398885460231799 4.744709884680163 2.0855178345911747 3.671910063608516 +1.2295369108412726 4.439476454017431 4.708157416126935 1.480879364472865 4.5518167245105605 +1.3077899436620024 4.847279487772234 3.485185414868373 4.150808786521958 3.601533104909233 +3.8207074172467324 3.2860172547869273 3.1852034977405013 4.653838762312635 1.5629405331541417 +3.629822426904065 3.0069671430343625 2.2183946917093023 2.2760636502700575 0.6255193149902644 +4.546992747807144 4.732938057894321 3.563843229733228 3.28190641194389 0.33773366365909535 +4.248639147535421 2.6088805150658994 3.5825129256837673 4.5558268587207404 1.9068687382728309 +2.989622231984299 2.2279574543929757 3.7397072224299985 1.3156480957703214 2.5409045403094774 +1.1765133811439075 3.8439169502894863 3.9298994287014613 1.150984608251337 3.8519357964545464 +3.939481027033738 2.3794062477071987 2.128968991142147 4.882347668229839 3.1646370181320824 +1.3388013948376396 4.67781469848121 3.4216459267456503 4.253589610410121 3.4410957752869886 +2.7499148953428403 3.4036092320636935 2.788342407586683 2.935162007261314 0.6699793136429922 +1.7314779503065623 1.184927693891356 3.5901751261133272 1.498340237392814 2.162056979928117 +4.685815353002489 1.9642897782483089 3.278756610922026 1.8661535221251708 3.066292376881156 +1.8294363057525542 3.9072691995807483 3.1297743985301456 3.8229132638239305 2.1903951746785792 +4.998100732828245 3.0141473239865735 4.847157549102821 3.265305492200032 2.537385871006236 +3.838458403871446 2.532447870912981 3.860801738951069 2.797946819221954 1.6838420628404667 +4.374801006141002 1.9541912990605819 4.7840308959871205 2.8054190935504044 3.1263806580059676 +1.4730172107131652 3.219601338154289 1.6073909046017736 1.1835999927642717 1.7972631557969838 +4.366622052803375 3.952529055881422 4.343822866575721 2.6191363217825474 1.7737014088877585 +2.7047798744043257 4.804254936681941 3.0629405297696044 2.177483360539433 2.2785587408857175 +1.805158244777033 2.6021568538973625 4.067824887736361 2.654848090894956 1.6222546690800237 +3.8850719718105227 3.1085539147976697 2.0490439911655196 4.728900715818575 2.790091818835936 +4.687421663421334 4.629629396239591 2.465022289809487 4.220991431549406 1.756919910778187 +3.229453988861539 2.767668026640031 4.3870422304101595 1.0839735307548377 3.335192514615542 +3.750976836819897 4.957311812422823 4.711318640554307 2.701737312595701 2.3438560508364814 +1.497303566394156 3.910731962983401 4.073333608237551 4.928966320649675 2.5606139818436247 +3.7535672434447376 4.5129113231709095 4.682686268157283 1.8988265644475724 2.8855637718397262 +4.731697643078633 4.53538571449687 2.7182542517668162 3.66698470131489 0.9688280751522331 +1.9298528210348795 4.5112330950698984 1.7438576390831324 3.559826511324167 3.1561475035437563 +3.262833410584157 1.9185625640061312 2.012840962676948 3.7218554794420684 2.174349265291462 +3.6395526335142976 2.01567726526864 3.6729959385291338 2.09879411615768 2.2616548342204155 +2.4911710669688856 3.758381231937742 2.4455956663247793 4.070134636799073 2.0603272722531427 +1.4269589910912628 3.7216911411415636 2.0795581323240104 2.383745674608119 2.314805758882443 +4.901664055068168 4.592603589013278 2.137734099009169 2.7496499865558546 0.6855358671215637 +2.3581571796852994 3.6303828045213695 1.180599059307605 1.985154498092729 1.5052798725048617 +2.659280075071257 1.4357839850421676 3.1617032886915593 3.8011071657077884 1.38049990954721 +3.2147405106069717 2.0582963863379273 1.4017241223817192 2.105519976694525 1.3537694106103482 +1.7189703113744228 3.2146451517687105 4.558909355001022 3.7661737883607773 1.6927707779864667 +4.515000250609782 2.6603737739411484 4.168811119326047 1.4157658363553804 3.3194725029810606 +3.0869073157219913 4.594158091241379 2.882902229969158 2.8581585766621957 1.5074538628703602 +4.106959571708245 3.826810050763302 2.0998424304274126 2.8095097832384797 0.7629623226159654 +3.651495061036613 4.112859339023698 3.483249980308555 2.8820764098657934 0.757803839262802 +2.568085613251197 2.6434966090430674 4.083851745433872 3.327301703689617 0.7602991410948428 +4.829965617046261 1.4593169485479875 4.4873486119953325 2.9258665170898626 3.7147676615314125 +1.9926956266630116 2.5540749855035387 3.662783122001618 3.4912494375999183 0.5870013538456476 +4.199044420509415 1.4611410175603328 4.651027043975487 1.4151254081524431 4.238770392531591 +1.7490388177317828 2.238123509979759 1.503245017516834 3.6408208877227057 2.1928142732747995 +4.781731777111336 2.8602747135444435 1.3945652870183562 4.505791583219064 3.6567371129603887 +3.3993125080782747 2.378406569889126 3.357149285803781 2.6548400218764843 1.2391477865161873 +4.709348606317424 3.642051622946968 4.910181975421489 4.3825255273965285 1.1906066427892938 +2.8679790178323503 2.1508604212160676 2.1855291596710202 2.809387590741919 0.9505042996384342 +2.9145082437974725 3.804121463897002 2.2104305055677207 3.8387065588305647 1.855449968876843 +2.094416576614708 2.869792865321012 3.8991485903663947 1.2473982130103294 2.7627863567232263 +4.464752915271957 3.317128740237075 4.845831902160409 1.3186901049914002 3.7091468701658497 +1.4250514977065465 3.0381858497936665 3.5837294650975897 2.48665259272122 1.9508408704419358 +2.457429250692025 4.064062988167333 4.74739281203959 3.4955896602130725 2.036733437963024 +3.6401353915973407 1.2497416854498185 4.413542293563079 3.0462465796790648 2.753811838088304 +1.011437815163474 3.8382136576568793 3.3874998686640847 2.7886651008493386 2.8895094294443897 +2.4227156844532938 2.0476947751168404 3.3373828336883493 3.726572994758191 0.5404717050069409 +2.3215078791069983 1.5519841786753084 3.8479692932017344 3.720684408993951 0.7799795941394044 +3.8306593166054 1.1333557256598086 2.5272050565157804 4.663429869847731 3.44077071523563 +3.4525117357258304 4.098456365903468 1.3344309810442763 2.0565773196092603 0.9688858547621271 +4.525809771883447 2.8812157557850115 4.019463954643206 3.1139640339933146 1.8773970235631408 +1.357900217002956 4.620234205706373 2.501407311703773 2.426657761194487 3.2631902410296103 +4.465656428154198 3.4866071656965816 3.022241041717914 3.2148523362290597 0.9978158993983122 +4.094265654559839 1.397729572459188 3.0295245922459766 1.9730211721931665 2.896119182398061 +1.4629695704752192 1.046404248732459 2.3239745240401763 2.470753730640537 0.4416682043897668 +3.2573007735477812 1.214542216817473 1.3463120387329348 4.24516627588376 3.5462964356272 +1.5624180652990676 4.141943071453874 3.544883289564792 3.135033659261898 2.611881692733684 +4.542735755320299 2.2307989374179873 4.016059571499302 1.5292199298299582 3.3955004422544817 +4.125163161756884 4.967788535165342 1.9038930994869 1.5340979096927847 0.9201988927979695 +3.7689597195227416 3.5442235075246016 2.3484714262335165 3.7755366970163338 1.4446527790641281 +1.2266652852343185 3.901992655514271 1.7603932560284012 3.6708825485820116 3.2874527943578205 +2.5545355485396595 4.350202339504209 1.7579218250610418 2.954857166990642 2.1580253559523004 +4.683900864933493 3.896436351401046 3.71452768439481 1.3996148930845767 2.445183345159342 +2.240514621259162 2.821460374174814 3.3948976650483433 2.796383297070112 0.8340967668724746 +3.257861214057247 1.1971840487591328 4.9883428193045045 4.65841461829248 2.086921895377041 +1.9984655852482915 4.815632286594497 1.8516376442979228 2.203000828308327 2.838993538254674 +2.711160787678577 3.249585221872096 3.525712874503622 3.3237197712125437 0.5750670266271326 +1.5760171313333626 4.258525252580793 4.146162609305435 4.654256484766478 2.730203143877657 +4.439967042746847 3.9553604575982306 2.9658031078151126 1.2615216321377294 1.7718405376067234 +4.193461522211317 3.2136432049108974 3.2209744472913746 2.6860526762642802 1.1163266708433464 +3.9920234617184454 4.5842432452197475 4.712863678832253 1.6662453200253906 3.1036442605732617 +1.581222856805184 1.0937461379342595 4.785748356659385 1.3685838776686183 3.451759931964765 +3.9772953505185167 1.3615718412084488 1.6039682612240593 1.7654185153929567 2.6207013682845623 +1.1773986060793176 1.3948893075054336 2.4146948540473554 2.7384927219391684 0.3900605907523957 +4.6116109759777775 1.5939709320023443 1.3065769831207645 2.075997304113577 3.1141867422106753 +3.0376963190162187 3.235901069239402 2.75972294780066 1.4680870442779645 1.3067549235720999 +4.252485978219031 1.9327771463234877 2.6139080430756194 2.202342564544713 2.355936163798281 +3.9006938986423347 4.664349946789846 4.578128684367329 2.7630721630254063 1.9691624451878302 +1.9235629519441826 4.3010828203591345 4.7435225279959425 2.4780201493264133 3.284067866604639 +4.995903482135786 3.964606089270055 1.1529520069632846 1.452362737088492 1.0738813239114287 +1.3310500141897972 2.262777233588266 2.69549336400804 1.6581240920946367 1.3943638756358208 +4.656824354524051 1.529168678253729 4.368286722334744 3.3568878790121692 3.2871199627607464 +2.9130043131701653 2.5062357246113263 1.1076285547325053 3.790020914280089 2.7130590585531684 +1.192667573218182 1.0468052300556452 1.0435938357538035 2.8771357747891093 1.8393346257150205 +3.3438379313681414 4.766040270485082 4.098716918355732 3.0585787513195872 1.7619724458444315 +1.308508560328614 1.389717634511113 4.966999301096391 4.243375565787633 0.7281663436549218 +2.0966118076430322 4.429169507834062 2.2393210465003075 4.8812058907341935 3.5242560853197333 +2.3544554147379597 4.643795147086219 2.6064448733589236 3.330251409389493 2.4010356748097204 +4.0107987680780095 2.8904329285145987 1.5073447830622921 2.500139595668037 1.496950618556772 +3.8430333555034464 2.0489721479758436 2.7182599798154445 1.40851645270464 2.2212797489654585 +1.4231496759089248 3.318485441768975 2.035921921774382 1.8709797541019895 1.9024992993493508 +1.1842024629773933 3.0196302571055686 3.1954074877492475 4.049901017613151 2.0245874592216295 +4.06783732835404 1.840407522441533 3.8884239552874194 4.873211804681869 2.435415908747903 +3.3439157780212163 2.983985844364008 3.784103371168027 4.580468876960406 0.8739265277804733 +1.8881278810545852 4.090311397111373 4.452178992565469 1.695692149835776 3.5281485162240758 +1.7863049399020996 1.4444682955016255 4.509027469676184 4.278641271579872 0.41222577761252305 +4.988286543719662 2.6667619863503833 3.8203129824013216 2.0069293108959556 2.945816798538379 +1.5998416253621102 1.6804187913853643 4.5513029751203185 1.8341622216491222 2.718335254132271 +2.875981222196678 3.5541827780733524 1.0545004482206126 3.153709257453925 2.2060450981691835 +1.196851425761957 1.6030928180919024 2.95131008980163 1.433183287815619 1.5715409812507104 +4.171292532953076 4.227499438192487 1.4862486360330558 2.466108461794731 0.9814705774185454 +4.86599561526215 2.9664076841522884 3.7154145355902126 2.1701899541269465 2.448704415640355 +2.8318381214120905 4.444379049685349 3.4846830723730586 4.749888071786254 2.049641904308293 +1.1349367025073147 1.20401317771194 2.6305844486839933 3.4050598670630454 0.7775498267635992 +4.675810634540602 1.6439011226745155 2.1799569547282225 4.312804420338137 3.7069547609463327 +2.6234525944884552 3.3842115975867975 1.8295427370490889 4.544484552244637 2.819514731419661 +2.8437952216213533 1.841859930600945 1.9503057482227852 4.066550228016767 2.34144507209771 +1.5884086975828886 3.333504382730852 1.3563984078330207 4.3415064679153845 3.4577780554412008 +3.355034033782416 1.0093003217542407 2.3398336845868726 2.8029987281202584 2.391022481135793 +2.11502758105856 3.781120582747635 2.5193559373917 2.3146114666464555 1.6786262801999923 +4.5326952304615356 4.045405934860798 3.0246617025868248 4.461496240726511 1.5172159858102432 +2.3633468675965474 1.0346553289248597 1.1798248942028131 1.6469275271138608 1.4084055078741242 +1.859584901508745 4.006121805667134 2.918443574838244 3.1851554741591293 2.1630432076482515 +2.2827890084984217 4.183570349139499 1.107477362563893 2.1879723743286115 2.1864215456717697 +1.4940915439864075 4.674593447976672 4.417234176490696 3.5949087788762815 3.2850892561462324 +2.4268021508299475 3.160905802691911 3.666843961538861 2.317275130512494 1.5363086282889076 +4.429771842963408 2.513152614304672 4.8481057829301655 4.998520044908707 1.9225123453104165 +2.5647801825319885 2.8429976685211797 2.109336973226909 1.5707887645703287 0.6061675861982044 +4.804648982858149 2.7932101918588055 4.787454637929903 1.7725913259166814 3.624263621766528 +4.378419665721489 3.799720574458041 3.2951222917487106 2.4041302099645336 1.0624309521240625 +4.815679822141618 1.6208532395296134 3.5368214367055852 3.059945283247063 3.230221007717846 +1.2533620595661707 4.017468240081367 4.273481139878758 3.0354753848561806 3.0286863863119486 +2.9024903098060584 3.2686502175371452 1.913553693778817 1.3460933782627515 0.6753401274285651 +2.162947174467399 3.0113121816113866 3.6104821692896585 2.6861410013206357 1.2546432880100842 +3.709071509311231 2.405896321688176 2.808228794948414 2.158058654085537 1.456360800662404 +1.4844581342579306 2.142186935831406 2.7557045985243893 1.1862587687980102 1.7016954453910966 +1.0327627839319242 2.201040352554475 2.783911210445463 4.1725213933909515 1.8146930091689122 +3.824923165963127 4.960778073892856 4.791174137341402 4.003075354901368 1.3824854656565173 +1.8324375560847024 2.373108504974109 2.065993667494619 3.9090719520581443 1.9207453339791298 +4.070726301036006 1.9272815816449431 3.1059074654617604 2.0823178775542 2.37530859249029 +1.743292829403439 1.4574038935784657 4.89063047438993 3.4960752573816243 1.4235577743499621 +3.5589248871108032 3.271125138720381 4.503030351430755 3.3650799235772384 1.1737801631590095 +2.218789760147962 3.460629788220253 3.562266001264435 1.2814280801747966 2.59699601031713 +2.4962439698992833 3.050502958952944 3.282211582522225 1.9293121561041748 1.4620327920224891 +2.199084968625584 1.5972643725692075 2.5085469458537277 2.673026063498802 0.6238921461109718 +3.3779482831147383 4.618692101538622 4.890169931551291 4.972335113980547 1.2434614349310205 +3.195061393748775 1.7704897574110903 2.7613134747484063 4.034553280783565 1.910639670563311 +1.0222462529685474 3.29053460399107 4.421437287494188 2.147459500673115 3.211869707559779 +4.2460536911851 3.013742769511543 2.084916184718433 4.838860170248918 3.0170843016255713 +3.375241525262448 1.326982018314705 3.4842355218535697 3.4218417178615055 2.0492096024024513 +1.407750311702722 1.4724159054044232 2.4017838562779157 3.7674608500905853 1.3672071132195018 +3.299531587135149 4.658462794953776 3.5003511797080993 2.4852954773266513 1.696181625451852 +1.9246572419496033 1.510870129748112 3.132390548496461 3.2451329141716783 0.42887132713914783 +3.1061482213374494 2.449122746182238 3.5916772232439 3.7970268815240042 0.6883683295726839 +4.186371224218609 4.71382012311537 2.152401944146881 2.454920720560108 0.6080460106192301 +1.4661967634383348 3.938746530091124 4.464999021000041 3.2175774969056348 2.769397553141978 +3.299445644253443 4.282962758077692 4.426463669014794 3.8747155515158744 1.1277109108050616 +4.500111257082937 3.9977943046886533 2.284286235187794 3.52055877135987 1.3344257582780759 +2.793644227410499 3.0774259063308538 2.2173233243065287 4.422688329254285 2.2235482559052038 +1.1426821122830693 1.6148715968124177 4.344759312694434 4.477772362916993 0.49056638779027745 +4.448419718172338 1.6431333289415888 2.4231304793554496 4.506974654726507 3.4945726881596237 +3.6102455035168384 1.1860602587344937 3.345082432868485 1.5094328630618068 3.0407702057458863 +1.955779408329342 2.9769844410699817 1.651104994618819 4.666233938904969 3.1833727820610207 +2.574846346761338 2.628665726003988 4.083728652829212 4.68851009205738 0.6071714048083614 +3.3211166798204 3.1605122768438467 4.020047236145567 1.7647661146361444 2.2609924173451477 +4.512316660621314 1.7311223637861621 4.032922780753056 4.561827696723042 2.8310390542847683 +2.3345219573318516 1.8237356156200946 4.764090978703221 2.1647880270307414 2.6490146321703367 +3.8787117447854675 2.527519248383998 1.3513826541407377 2.7666336372769624 1.9566953026978129 +1.887963818200323 1.1613335015356343 1.7129425895762584 4.803483648673419 3.174812696059663 +1.4348662364924936 2.486834624433989 2.827380844097241 3.072440516768972 1.0801350528513571 +3.4568174863348307 4.648928128058858 1.7014365449344329 2.9547894299564454 1.729746003465444 +2.3985823223267757 3.3861163063163535 3.896564241326127 2.709521413454021 1.5441159427766216 +3.869075393230384 2.003255119299279 1.7169258518445698 4.597210777111714 3.4318109716785834 +3.9396554472895637 2.6290528838642517 3.1004199956218192 2.6286905540053813 1.3929134019546066 +4.19826531569947 1.1454130133323028 1.0744230634942338 1.2971084328523625 3.0609632395366466 +4.905327195947359 3.2280457444611 3.708981616857653 4.176329282957336 1.7411740029384408 +1.3575997273822171 2.687401453396664 1.6931202847462394 2.969136197670489 1.8429837873803743 +4.664692892301398 2.683601648148019 2.4019035575386085 1.4511423375914787 2.1974233581666818 +4.53700092993444 2.797793334971405 1.1215958339905776 3.360018560719129 2.834674471947703 +2.4635029426986947 4.714275625647753 3.5675531750758065 3.108743996360535 2.297059758208977 +2.492689162798058 3.07489047753577 2.7613516501497735 1.4158762922392407 1.4660362579509405 +4.203666656609507 2.9678629633916414 3.6460056355395474 3.089908575107292 1.3551585548533844 +1.0033897851464362 2.5942980199391372 1.5153284084492986 4.919924456447366 3.757959986691621 +4.879658143968355 2.687602700926213 1.328218598153927 3.9507395970218924 3.417999920256598 +3.9212805294601236 3.147891881990593 4.806167236289989 2.717517626644388 2.227237569705457 +1.7275558847612138 1.1240963794366299 1.938871572389941 3.026532980105704 1.2438531715603844 +3.728173767857732 4.752354457962049 1.909327232373517 4.817448542047632 3.0831989293205275 +2.905986621678344 2.8715231731197584 2.898608667328905 3.4358146553323867 0.5383103220572194 +2.086611945232229 1.298065335099853 4.399298921926279 1.203906117179642 3.291252183133016 +1.9435810287440205 3.5310333683092385 2.514237431895173 2.4090921303106883 1.5909306913993384 +1.328072163178407 3.2102061552743404 4.317279440665755 3.399612713408727 2.093929460731091 +4.233528024017453 1.8060565330926042 1.372168189954091 1.9893325869978882 2.504697533082855 +2.1613635826394932 3.721035761039233 1.6914976204314707 2.5367190135506408 1.773971957912667 +1.8192619866254156 4.734434890482641 2.529276890248567 3.797475831297627 3.1790818821573823 +3.5671689595870437 1.4644058243402815 2.8860313150712145 3.855237548061282 2.315377620393613 +2.988866139891357 1.9682724123956605 3.942551853621201 3.4349521368669786 1.1398548280603662 +2.8291540653506204 3.8397577093460677 4.710681744943651 4.973257564396121 1.0441579316454064 +2.195304798280514 2.839991160479391 2.5523778741211802 2.032491892410488 0.8281919702487535 +2.1543147264568843 4.7423494236489905 3.0092241713114327 3.7634963612030856 2.6957095782584197 +3.9172019332952948 1.6093344858645162 1.0648542079226324 3.3141966787947483 3.2226997542712126 +3.515665340211897 2.1435641954178 2.408731288289767 2.6289255221395016 1.3896571707316674 +3.7764904206774754 3.547628067672111 4.037891580598149 1.8652937720353493 2.1846187801067334 +1.9140927908697765 2.754405937226265 4.206025328111627 4.867701980412708 1.0695523251061194 +3.8090796792304316 2.3178460987846705 1.6838263452379958 4.992621329002331 3.6293114823659196 +4.698224931847735 4.984594682059181 4.120612793207265 4.872849401684305 0.8049021983876091 +1.31918723846678 3.210367515639213 2.4350366078348236 1.310416038869127 2.2003032211281077 +1.0803613738850495 2.7718333766265277 3.490020668005665 4.40859875737695 1.924802130695846 +2.9640300560386494 3.9196932878871005 1.1392926586186736 2.7151068783078443 1.8429548740220463 +4.472713078921791 1.1973924402725449 4.594678070559966 3.767262691905139 3.3782157265035955 +4.7460087604069505 2.4251565009855045 2.443755663477708 1.2724721258029779 2.5996654276443847 +1.0105936730071026 2.626287789966368 3.608911261454188 2.0555537213086863 2.241291397186824 +1.8896960587494656 1.1395043332853372 4.256277606218015 3.647179864171667 0.9663269034445878 +4.37492773999559 4.63574701461948 4.478651472736579 3.000680919873864 1.5008076656069729 +2.2100713524798636 1.8408967804222427 4.133253469273212 2.9133806669433078 1.2745114823014116 +4.503200253157663 2.7047100678639664 2.366631452493605 3.192921444665349 1.9792225993457475 +1.8063743895906565 2.5687216032349847 1.2990775983377905 1.6993060868529701 0.8610203930049602 +2.244774878386791 2.0969436599836007 1.0095982815498314 3.3136725010134778 2.3088118325085705 +1.4816552058257333 2.1930224059593506 1.7699607804133057 3.034505224201142 1.4509017691562134 +1.8065041162475364 1.8886510595868407 2.3774773724155853 1.288423477691436 1.0921476575600155 +4.856801864598093 2.7625437581653443 1.5855984013849516 3.988596486677731 3.1875251864542253 +1.453567883241551 1.4486036332025019 1.5241405247562905 4.952814232785908 3.4286773018048837 +1.6459718478312078 3.966173482904715 2.0407755555163036 3.104624332548163 2.5524713216390813 +4.218547629681591 4.594422596665519 1.5726052327972018 4.140842488973151 2.595597155726469 +1.1262462353731548 2.132051932040869 1.8920766840660939 4.248067181650033 2.5617057450368965 +2.8441418473826143 2.78049721044725 2.283661909703656 3.6170977829108444 1.3349538822620246 +1.5597152391869749 4.146293499752691 4.576631436937717 3.5533271846911973 2.7816431637967107 +1.4779924929063548 3.371164287237991 2.4883268648773975 1.0109810655926892 2.4013850281695857 +4.9578889249146885 2.597299745321325 1.918482051249641 2.2974465131384014 2.390814785421051 +4.560705057548752 3.8648085484476877 1.4140452062542566 2.096046004089925 0.9743700732409304 +4.583028902968546 2.8274861275825214 4.711305228286745 2.4582687761820687 2.856239431616771 +4.763899827218463 4.3373794107486265 3.3593791917115086 4.150236222356593 0.898540209777149 +1.5287940787788243 2.4498307007084836 3.2025703808131647 3.7083814798798027 1.0507870035714175 +2.14181702682261 1.914216491978424 1.2277930820075058 2.5211566276668567 1.313236941569147 +4.775414969041547 3.468020732884757 2.2092715981639928 1.1948940050414558 1.6547633033654896 +1.634867408931433 4.498772378597641 2.3959722678334883 1.618929931535669 2.967447803698993 +2.590795370654235 1.2157896554708616 2.0211375892254844 3.7154328576927638 2.1820350990617796 +4.079474614645433 2.676442370565452 3.565322851237522 4.159663972159082 1.5237259746904637 +3.237478410874193 3.4426040171911003 1.2975888586332296 4.170287124071164 2.8800124719551126 +2.9594379641013027 2.0585138317967138 1.5505899462758999 4.555998956808358 3.1375384639488426 +2.4831438523194147 2.310472961562221 2.8533293618532163 1.6948123221160105 1.1713142054446113 +2.489002837976922 2.8741991111791956 3.0148515938742886 4.448759395350601 1.4847450124595647 +3.7645494944557467 4.953615443153373 2.493173867786438 1.3927502909748526 1.6201265008495445 +2.996883974315909 1.8301362367585177 1.4764376477837975 1.6079810105514234 1.174139659232881 +2.664970632226674 2.6742238683545785 2.534168907686883 4.390513706767782 1.8563678610268879 +4.142912749531126 3.380728433488445 3.6540194478014905 4.848796089127173 1.4171859984768862 +4.714477988839986 1.6099666597420148 3.9591055974130174 4.195461332643543 3.113495563843639 +3.5199479787062753 1.6915069263497742 4.41022015989975 1.3101892400452368 3.5990816031310775 +1.1144725082468985 4.325531305821798 2.256012558526089 2.172191165303694 3.212152646971327 +2.8402907492607006 4.22848917237021 3.6099246622901395 2.5965381077780907 1.7187341768841193 +4.261826394243754 4.117960846940202 1.785925005102638 3.801926631855288 2.0211283617747493 +2.9573457232485163 3.2853549200601186 4.188458888448343 2.8069009675281293 1.4199620847228196 +4.4715945236555115 2.3768977217319445 4.65889216356613 2.2775606996821645 3.1715129249102185 +3.271099256071418 2.574211048540909 3.071090547766543 4.414053147089078 1.5130108119158383 +3.7472890147374374 1.391948687745589 3.731217303477301 3.3628258336037007 2.383975740444877 +2.8222045178859116 1.3113915930708355 2.9082447465268007 1.7904921696851797 1.8793420435951431 +4.854034629574482 3.406294611930262 1.2834909850968974 4.969198237881411 3.959847107138968 +1.2813910898614687 2.4718833072686954 2.758636980690903 1.0721848757266752 2.0643140318385305 +2.936331736750564 1.8807213789637922 3.818548585046988 2.533867368068919 1.6627444351802743 +1.468173171024699 3.4180629555396957 4.202705943049044 3.8645012583999465 1.9790029258377906 +1.6431076707323125 4.551216025918972 4.980435228841826 3.0171851621473644 3.508766881666872 +3.679572682668789 2.519442360308047 4.9320260960410245 3.7722596717515686 1.6404147413901122 +1.7973905388513414 1.6758168747519915 2.8027682522928865 4.3295632498505086 1.5316276049906912 +2.8857911882626825 3.7928505886518646 3.9398180095869 4.560386767795032 1.0990279066058177 +4.167314085785222 4.054521878315845 4.695866178513571 1.8900048285522502 2.8081274894976866 +2.4893656517515432 3.6546300983418067 3.1189195673057215 3.3638146212334803 1.1907202937405548 +1.112947657545781 3.6908489518049183 3.1154703834979527 3.428601195290276 2.596849242493036 +1.130797094444393 3.6024077973339144 4.614732851351777 1.6140435079870117 3.8875436977635247 +2.0215886429783207 4.048947639495731 4.779669292480583 3.5968150975426667 2.3471958902576295 +2.9142769867215987 3.7295679885845985 1.9132319181354283 3.8428186580450037 2.09475640697281 +1.18213130741379 2.5260673326052325 3.936265911138259 3.2739927597190976 1.498255574626052 +3.482637691140734 1.3310260525142943 1.431095355867937 1.277381636678169 2.1570953968102344 +2.7146505566858945 1.0174622707898466 3.312153986180898 3.5650153553045336 1.7159216036223346 +1.2184457678625078 1.9586645614199316 2.433950143478935 1.1863475005997128 1.4506675073409576 +3.766380503625142 2.8314354080363793 4.941288326574277 3.0818318833842895 2.081273791668516 +2.2684405084013544 4.910904648315478 2.6161485819287598 4.4336233880219 3.207153161530548 +4.868981839386747 4.375444985069219 2.831384380316494 1.1022187350111428 1.798219245663307 +3.361131362666195 2.799857722362029 3.9574360325320357 2.8655114261121253 1.2277326441068375 +1.1905889927770281 2.12060755154931 4.70709974863818 4.8030119859245755 0.9349511628540573 +3.9264645173452712 2.0643620531854716 4.481552358895264 3.8881210854526715 1.9543761826551447 +4.875472030077738 3.8421204702897027 2.0241120299355124 3.004777516923724 1.4246123133983475 +1.988687158502029 3.0013133770694274 4.214440635680782 1.8847123689019538 2.5402845619257683 +1.2408555887607626 1.2302285119913132 3.1922867039876226 3.462414539790393 0.2703367944549028 +1.245962673921638 2.806907969012113 4.295074885729343 2.65971957202341 2.260738201634882 +1.0181012712367559 3.428986070183706 3.631061940456248 4.04766515144771 2.446614752919199 +2.0476498605456133 3.268361348561664 2.837309526199968 4.785042346402361 2.298651708255935 +1.8569554208461923 2.3259657753111247 3.6958367642253425 1.1937224917476512 2.5456917616105623 +1.803981251422412 3.1088730795530735 2.0667836109665827 4.405284677972427 2.677933890802693 +3.7747518709397805 3.204160588551475 3.0322120968284025 3.9313226312550276 1.064882230415393 +1.3712245043659146 2.3783826719734242 3.4469801244909526 2.264392269023491 1.5533452966026733 +4.015490912253241 2.8414082850812177 3.586696910707767 4.547403344088254 1.5170454398487263 +1.9208129026771954 4.966722159708594 4.987424625077972 4.184789554891367 3.1498867055757773 +4.9604459145160495 4.372139162644855 2.5301651968455308 1.8518870601914337 0.8978675096918195 +1.2476979079025696 4.417021093417143 2.306141859913482 1.7273866613376865 3.221733544866607 +2.9818845350369623 1.2182893360328344 3.7560905518453196 4.64076178499532 1.9730461770352845 +1.1272468231050534 2.531068777801792 4.183258324544278 2.6414118026177693 2.0851874682304814 +1.5489465334625123 4.4609316125088725 4.0274220299872345 4.014411815167048 2.912014142527179 +3.960169960458853 1.1861570778400465 1.1314803368873751 4.386569367549568 4.276768882050144 +3.0499688125496576 3.043627868443122 4.10128074533041 3.894423569289466 0.2069543400168169 +3.8227955491015906 1.7329559815609255 4.76314558485528 1.7915943539666705 3.6328427072822964 +3.147878846443462 4.206395439435301 2.3831934748970376 4.373001100242465 2.253839338444926 +3.280125779351843 2.419622099350248 2.293094077011101 1.5708612871032983 1.123426359898278 +1.5669299389678266 2.003183487721481 3.92955109177856 2.328250171249208 1.6596631576582963 +4.72463465389073 2.422400383215121 1.4159233791524253 1.3282826235606753 2.3039018076111546 +1.1056780945289995 1.8789908450753132 1.867822578399664 2.426536228309066 0.9540301634396006 +2.834076502309033 4.327150023963862 4.81524745048512 3.087770993977168 2.2832966186757297 +3.2533363943985183 3.6883485744786286 1.0220598270285453 2.1527122018480473 1.2114497057257598 +4.129608546313012 3.540538683011163 3.359858154083714 3.645979837117401 0.6548808451561923 +2.228358900057417 2.678483182363971 4.976101229088274 4.025486263314772 1.051798784309312 +2.423560303567967 1.4240340622812098 2.7189992410488197 2.3025839558754986 1.0827993335548425 +1.338962510895898 4.635963720307892 3.2317342953242663 4.680374514271955 3.6012186074739976 +3.7944072591284033 3.485379847667298 3.1859400894479264 4.055814123078847 0.9231352963784235 +4.592899757081324 4.081037453899642 2.5407784934980056 2.0432126866179847 0.7138450459270713 +1.2550894138634021 1.37784910953657 4.095452200615674 1.6275288563540706 2.470974620677668 +2.0516503409575892 2.6466702421272164 2.8253519498245243 1.2641006170427027 1.6707945435932352 +1.917736522949943 2.4933616865034445 3.394173005476944 4.154678626978864 0.9537888284374151 +3.860873684365855 2.798915657029223 2.5330507073437194 3.704829808259516 1.5813984675494481 +3.3177140955062114 4.246703259133792 1.9924306081764147 2.76257509539138 1.206707668544902 +1.5003869193893826 3.6276170336628457 2.331570742449471 1.4009181332313494 2.321900565940839 +4.724050330879571 1.4431799036470032 4.608356102200057 1.0004815715414805 4.876563276454439 +4.747681506764473 1.6625664941387863 3.077123220446178 4.569397730686952 3.4270713233083923 +1.5524966170057688 3.99416176995479 3.7442177075350913 2.884887652486356 2.5884699848821175 +1.8460926843754182 4.189870199047183 1.3215302364669772 3.577387321576492 3.253026932984071 +1.6062516795211579 3.0013958870883126 4.416376661919532 4.1286923865287 1.4244962626189415 +4.854239031459608 4.457237537260063 4.86571933319502 4.203803896144615 0.7718433987554083 +1.8337206689395238 2.231457117792457 2.074396160088341 1.905291885982093 0.4321927096413623 +4.355079606729066 2.544284826600293 4.2676948018563685 1.5321912893796 3.2805422116647653 +4.197053290918639 1.884277509254308 2.3604892012957657 2.843121728824825 2.3625972938446673 +2.3115988174152773 4.931602521707394 4.64710284693793 3.9007435486632924 2.724237803978468 +4.840518205236521 2.336074010962964 3.256366513087546 2.6168235385180116 2.58481255385217 +1.8467053191214005 1.8274125476986005 4.362250154806336 3.116950974045266 1.2454486182229136 +3.1253944140570544 2.6500797831291987 4.898186768612231 2.018233768653563 2.918913030623731 +4.211789589832657 4.769461136354568 2.759318991282437 3.396743934623806 0.8469404419402158 +4.944657015795997 2.817955597536812 1.7079800401274285 1.5427619301983841 2.1331094548274248 +4.381307316489323 3.6715698850234086 2.182470729100703 3.6731805400280257 1.651042992177614 +4.618729141766771 4.145432273997145 3.5162431743881513 3.3933053660141557 0.48900268891728965 +3.57443004883616 2.2525595661281734 2.6279157619443643 2.0273511721744413 1.4519019937792499 +1.8910345535355928 4.166593881328726 2.6869828782498844 1.1954002613609251 2.720843427562794 +4.465118733917964 3.898615552101539 1.7800868241298247 2.18511601061138 0.6964011034669919 +1.1853827233393508 4.4083289591712855 2.4983778099279554 3.3333768104749217 3.3293551582818064 +1.368667638585332 2.543778701673075 4.963502474199292 4.436898504226149 1.287710274783377 +3.2575519595297866 2.9378559380065377 4.217448284880854 2.0282969090966576 2.212371870250486 +1.3694056659721214 1.6889656656705463 2.31245747442673 3.1833284273616336 0.9276501550007977 +4.9204900808674665 4.13809831558372 2.16800469191697 2.4071812433801796 0.8181334225868356 +1.9876002901255565 3.031269436931742 4.867420010360973 1.4401833961402266 3.5826241915459724 +2.5405692207393606 3.6356510566930145 2.269629223393414 4.7850645411969115 2.743468437122761 +1.5121762342968923 4.397528385198664 3.7934067622897345 1.300186430698278 3.813319375108056 +1.939196025710391 4.647158274463565 2.1566123805613233 4.548840082240089 3.61328284491425 +3.988984633156533 4.546083788565689 1.3753809787367888 4.773279252324183 3.443264751163609 +2.916062710555829 4.726415164988726 1.2273550803675932 3.1966028048748045 2.6749416086614013 +4.522668474515919 4.71553397196687 4.940609403064974 4.557590552575078 0.4288362623864772 +1.8571489583305283 1.4367574454383427 1.1360332482343996 3.4942451218129773 2.395389793916382 +4.67063129626846 2.5342067940104953 4.973328491133435 1.9625272662336557 3.691779201104286 +2.254369870984068 2.5119692638467246 4.233261379742612 3.5475080925111055 0.7325401136811734 +2.0601615075043505 4.699433102238308 4.169447113535485 4.997290094830069 2.766058306046391 +2.9351210545389073 4.0171519971583285 3.7518928005431076 2.478427221045249 1.671079155202317 +4.474666312182987 1.383577711482367 2.724704461877207 2.3892369997994143 3.109238999416776 +3.077697246874301 2.1586754519716798 3.599640471339435 3.435013133223999 0.9336504806194927 +4.0516987165021465 1.8455991036556725 4.104349161628306 4.2007952179219945 2.2082068163050237 +2.94641087886529 4.259626777867359 1.9260218387368102 4.832504163952329 3.1893848159452354 +2.016947760874382 3.4831953498643764 3.3166720552641573 4.86063628835462 2.1292504656055824 +2.973022869358709 1.8559900008933705 4.182299307460815 1.4853112644086797 2.9191620259242352 +2.119314074561783 3.8022694799159464 3.0936672866632895 2.964227176264601 1.6879258391857213 +4.3949149406054815 4.299746687003253 2.677069163876584 1.1429940002846282 1.5370242691783962 +2.51178326319615 2.489009789003334 3.297210860153385 2.847391595412602 0.45039538414458663 +2.3591431942172627 4.378141854192087 3.907718300648652 1.2701231784482538 3.3216356840622168 +3.702685995498835 4.695053004970047 1.045502036140539 1.6639093043418822 1.1692817585385846 +1.2070738296882038 4.223685917764385 2.960364131095109 3.4535032612495256 3.0566541661785673 +1.6131149660286401 3.2777571237868783 2.4881978523443875 2.893514504130935 1.713276131159674 +1.1246392952035933 2.2044681195024385 1.9807201940341734 1.6215015111482023 1.1380106993877335 +3.582907852139859 4.1612337321304 2.887814058455518 1.738835696190757 1.2863172627386472 +2.361756687590566 1.3837865602091477 2.7175497319933846 3.0673014308834365 1.0386297804929845 +3.064270429790733 4.791006333504055 1.7574945324732072 3.2782808354525925 2.300958031017161 +4.468007620030228 4.092049178657693 1.7569226966985374 2.0355622092341235 0.4679580404110337 +2.446393428920493 2.317869437437562 2.5735282827486214 4.419891611890207 1.8508311537213498 +3.2468136747321044 3.7678451372278428 4.306216096704244 4.0236971854282775 0.5926978320687577 +3.005077416388555 4.830561952882563 1.3819693521936016 3.4557930041735543 2.76281348130673 +4.068474141305096 2.706210360539882 2.9042285964477936 4.620878815249074 2.1914950563702438 +3.3836935537941524 3.401740968234959 3.9364275800885338 1.0993388222193765 2.837146159293799 +2.1597587530725657 1.028396117245301 3.8614845186668765 3.8326096152000244 1.1317310518830153 +3.299841824498551 4.901187122818042 3.543725208749749 1.4117271590212184 2.6664062797136143 +3.9791201889902093 4.080865613969518 4.740701934810369 2.816089591855485 1.9272998734391358 +2.6687075610795925 2.7845575241246276 4.868438652945072 1.7281210330333936 3.142453813163414 +4.410830568021648 4.038468701795869 2.9487994348700983 4.427743605805556 1.5250997410540448 +2.092960117204814 4.639006138098514 3.3384206236963823 4.002860145238719 2.6313172021434537 +1.3888273895246859 4.91929203726466 1.3590668859427169 4.612616339137418 4.801017045723258 +1.1780574595443465 1.601683894410721 1.679216161229272 4.319956253877438 2.674503242330627 +4.543878791385217 2.598937405420342 2.2976440718177655 2.5875500940471214 1.9664288689306353 +1.4706867432863109 1.9376049004243487 4.166396769330804 4.450254878946646 0.5464320560324594 +1.092150618934479 3.9159703769632994 3.064596235483337 2.231912244792631 2.944031360938016 +2.633429109600831 4.962816543945294 1.8570983693537628 2.725093109829856 2.485852105169582 +1.4387092834987172 3.329150396610502 1.1794324726418313 3.855704875371001 3.2766143465096844 +1.1553336807945058 1.2038555308328793 1.1708420685692098 4.649252974225174 3.4787493152737365 +2.517484053327677 4.434422234311332 4.644338769159468 2.4377468660465027 2.922960796281165 +1.2274810787160297 1.5458984653296755 2.476113065160313 3.3585128651139735 0.9380932997608096 +2.413654873567185 2.238282716023921 2.8657667364635167 1.6569956463245967 1.22142660115007 +2.1448846670042157 4.115021861335665 1.38594223608346 3.529766640468437 2.911601559507206 +4.990178687668049 2.98569531857522 4.208324063057205 4.554370282034913 2.034134106355455 +3.8245527279831406 4.091181910230377 2.5460066899153837 3.3649245774749836 0.861230298695365 +2.971300518634587 2.674478783989924 4.916032430810164 2.090053035963058 2.8415247108300643 +1.6207648663317937 1.1494245130404708 1.211904090793169 2.843083698013359 1.697913024760633 +3.8085088910746894 2.5593167717506695 2.3016529189488035 4.746721994070997 2.74569549169243 +1.4406693089096545 2.187921196715112 4.505552225551751 3.1837524236004224 1.5184005072007163 +4.631889944666872 3.678653950519001 3.7104233297740805 4.778189610665915 1.4313572898297129 +2.2460111675816843 1.8395349082830044 4.660642828534147 4.132178798775293 0.6667062172519581 +1.4836825817450854 1.9432626394535943 2.051504669658099 1.107552441119498 1.0498855362401884 +2.9662876421077984 4.906501369304504 4.051224741816487 4.212033933059892 1.946866431779769 +1.6970696146247164 3.9617656291662486 3.1699905751464557 1.0566200315645196 3.0976092543702327 +1.496345276875389 3.5151182977527147 3.701085139439348 1.2312414746887406 3.18991727763133 +3.6165025423313213 1.9642916663342689 1.1392677938170888 2.246554654514075 1.9889406654385482 +2.3204026629153742 3.413155413464949 1.054174574470864 2.9926771158397485 2.2252866504626514 +3.8543766955371486 2.192122923380415 2.8504480263810525 2.633208190706467 1.6763891998140559 +4.361376798622567 2.9875350824025118 2.1559909582673473 3.354052175640568 1.8228526385312311 +2.286080271274221 3.266103266386383 2.1784181960326916 2.194051060219977 0.9801476712165931 +2.1889448715443764 3.59727797945973 2.079871459699965 3.570388777687341 2.0506203983357816 +1.001539549416024 1.2587975528117434 1.2801324409702777 4.655533805774437 3.3851906968194467 +4.6604912777843 1.9690370579222365 1.3912411321746507 3.1810454249829427 3.232232235494272 +4.463431165767615 2.3070889314364487 3.4179745564225383 4.7117413415889375 2.5146857310527144 +2.7663903360838944 1.8511207267046732 1.7580283134819474 1.3435830480878104 1.0047304792136091 +4.100459946761074 4.819045516004495 3.5572819121970887 2.141947322608052 1.5873050182028843 +1.3983786928278623 1.5525530910521117 2.726856792366192 1.0285966172673917 1.705244078539614 +2.480623906591366 2.997177738894791 3.737857783993301 2.3890934827560155 1.4442967153460737 +1.2689555128897712 1.3773293322496052 1.0488994789343344 3.253098066283948 2.2068611866623304 +1.70637256509562 2.380884591260108 2.7035792760090747 3.8853630156502046 1.3607274821655866 +2.6189076619116203 2.7141500970412045 3.0911803379561356 1.682262138782376 1.4121337094667923 +4.360410101203727 4.729763739314336 4.127484276404804 1.5295578652068778 2.624051018556095 +2.7169480516267352 1.91373822591465 4.9430619221783765 2.367602509496206 2.6978022926993055 +1.8589207054312658 3.6298295575277897 4.118218385127164 1.0593687434974752 3.5344984499263683 +2.0775418590753247 3.5968475776257183 4.65805485105327 3.416623166931659 1.9619996158921509 +4.608509621024048 2.948201517658168 3.435960913318402 1.5414358758209024 2.5190966864745996 +2.9812764352193244 4.012697812531377 3.751651468658161 1.59240859146214 2.392939585593009 +4.106037610123849 1.1299442307387348 2.999606108507943 2.2025856950205136 3.080969545830595 +2.9054515743044074 2.600075688298956 4.840593883632073 1.390841691277405 3.463241923459788 +3.608280105722504 3.484008775713606 1.3106136169887832 1.3517044531456728 0.1308885796326506 +4.070042769100297 4.420720099866028 2.942798941100117 2.5376972543709466 0.5358003050613135 +1.503128181739775 4.590115121887951 1.3079009361182194 1.4698725706866123 3.091233278005747 +4.645669814478362 3.8949370277328854 3.924245727629211 1.2175357354769867 2.808892788753484 +1.761714976324984 2.873196214221557 2.090218634538292 2.3658775557920766 1.145154305350549 +2.698316181573559 2.2798830507947487 2.7802163042653287 1.7257010522585992 1.134499317605865 +4.171414693773479 1.8485916746831736 3.1506922951462557 4.143736438287016 2.526191490810221 +3.8353456385094464 3.7564073961725013 4.236070928333691 2.8653506220350113 1.3729914071846157 +3.0941503517007436 3.4719249878865264 1.4636060941036972 2.0067034068226417 0.6615650888822955 +1.7535616981149835 3.109574128029584 2.074936387379753 3.4229964834253384 1.9120762883926292 +1.9401931409590931 2.770178056781334 1.0425715349037645 1.387919409034275 0.8989661365473758 +4.494334560011972 3.659076319629498 2.5932457124816795 2.162672550086072 0.939707175827758 +2.7773344184199793 4.625009254156591 2.619314867915935 1.9181209404973973 1.9762528235180208 +4.107718968997787 1.171088452605717 2.3916708866749667 2.288749892031063 2.9384335148074467 +4.844667302954983 4.323643621535007 1.1914667749042986 3.939374240586332 2.796866302945402 +2.4163602365995387 4.536105030111907 1.2781582933640818 4.048640845798701 3.488393837135858 +2.9920676451256165 4.362702751884884 2.633652684286224 3.4944063699099397 1.6184985335785136 +1.2092528735909225 4.47471313116071 2.262050123952651 4.346342324394622 3.8739520738634567 +4.916880018000841 2.237967847416124 2.661602961186064 3.2836610404841786 2.750186661251737 +4.478794765278973 3.219414295616178 2.257701925627049 3.380395363031883 1.6871513630258441 +4.987548514816886 1.0985706054402127 1.337578645472154 1.886886293523335 3.927580434800449 +3.8691722728078126 3.269923059428369 4.298034071547321 4.0935398744394815 0.6331804611535815 +2.1014186953428973 4.12491992902654 2.2430829989484 4.487039059332881 3.021571783634383 +3.3586265683980754 1.1520107210167474 1.6871139397624688 4.430876594613704 3.520992332293655 +2.474799619994742 2.666302611636883 1.4483459376830115 2.5901608333758226 1.157762778739183 +2.078002650834596 3.8642988252556685 2.936453028849969 2.8341470755346956 1.7892234435181942 +1.6049426000131644 3.440836108614341 3.6456819844268633 2.743218323283657 2.0457139669582203 +4.715416342293539 2.2150822559575114 3.571986391058484 3.819853922729495 2.5125900693408973 +3.1752753026307774 1.8203209951035841 4.614536849322001 4.203248967288744 1.4160010230906963 +3.9149985984019646 2.9663878408024975 3.4499071074283822 3.264751078857522 0.9665118335279544 +3.548415156960536 4.281024342722577 1.6665011542491683 4.412761559582695 2.8422987937522657 +4.0463753709285735 4.540180016483651 4.777329633695167 2.139757656279735 2.683398770965458 +2.061499418646192 1.1717601904436776 4.504530172384104 4.349647900139028 0.9031192681247608 +3.2443596952075997 3.018028395769327 1.8148555731352296 3.240541048893179 1.443539030609352 +3.70024398319497 3.367244416219356 4.477978841060372 1.8128012386847834 2.6859002892532025 +2.5027084901493977 3.602870197619883 1.947543803148457 3.696291992818955 2.066029044679725 +2.6536971590161462 3.4403149515910347 3.9674273875428248 3.638479419729525 0.8526278890136599 +3.4182076722740127 2.8062086793761147 2.6117912548540843 4.411889601168559 1.901288201118428 +3.0287752143886744 2.4197467422686927 2.2575425952376964 3.647878673847831 1.5178768366826754 +3.388652158904276 1.393619250056898 2.695125737856463 3.943683451682724 2.3535192100637485 +3.2541569418033385 2.5052820255132624 2.5742061105829417 1.7557041962237405 1.1093957923383997 +1.4489796528371817 4.563677551835547 3.0329686308995467 3.207073353568298 3.119560138301616 +3.6959392025024926 4.145797091831751 1.7645150003007224 1.4386479464564017 0.555483084686611 +4.619678993761513 3.747345629238346 3.2202404745258257 1.2735169055060074 2.1332365440891845 +4.7376425822014125 2.375132614035702 3.506057085164604 4.9365696579962695 2.761850750984169 +3.9998783183209756 4.395462615134649 1.068071776084671 2.732366424644587 1.7106617471349335 +1.696555262408184 3.0713213862790156 3.0332907249485777 3.6641310585464004 1.5125942687438172 +3.991828356514127 2.1051959572531764 4.724143428139973 3.993935678841007 2.023013882077281 +3.240437412925647 2.739091414869801 1.0314734921852717 4.007497197246307 3.017957074388538 +4.442510429465106 2.462087846388714 2.0328830867826566 4.854070000119432 3.4469071945066414 +3.489910698501829 2.238362031994264 3.996422453905976 2.0341141564950034 2.32745094872584 +2.656819602153119 2.2920581536165257 4.626917901904177 1.4586775588258298 3.1891688236667113 +2.248962996632492 1.5855189464221837 2.9277267321938805 4.91597638818431 2.0960187743208603 +4.977194192060867 3.382309982499948 4.8400185496918935 3.317108641911963 2.205200723090992 +4.97151560363755 4.275246803037149 2.5879046717495915 4.658349277396704 2.1843834616986895 +4.876581608963193 3.032542303816397 2.017798495622555 1.8454729426646361 1.8520737175200477 +1.3206506445931225 1.2160870243294508 2.9427109170561043 4.96426260019688 2.0242541239409517 +3.755783105472141 3.1779669013297958 3.270943325384895 2.7535623174776007 0.7755995571895564 +2.848360198610443 3.3295671148324044 2.305904390875794 4.057933060554902 1.8169107175635775 +2.054956932932701 3.6096222870004286 4.316756923392219 2.83070654153254 2.1506580622134783 +4.888308926595961 1.2955492006220295 2.5573000887180832 4.11247740937462 3.9149072718603084 +2.307796322206424 2.7178488057775976 4.116735498926541 1.4376695648084814 2.710265174966236 +1.531551314269282 1.7708017695351632 1.4421020302742442 4.261720827140062 2.829751038516281 +4.149896391890291 1.7697162296606361 1.1401729186581622 2.2452534256994423 2.6242066480584563 +4.906990047247105 2.8474942427150247 2.218451810461828 2.3960357568963104 2.0671378828990794 +2.098660303050938 3.0836688688429224 3.7056153087165047 2.9083930348513958 1.2672037044730564 +3.065045685992109 2.418743831491904 1.6488247876315754 3.7730363191979506 2.2203559890184206 +2.741255940083082 1.5774214528191757 4.8262315062562156 3.584935996506564 1.701565530994762 +3.566207641459793 2.1847586099043723 4.656611256801359 3.3026693763574313 1.93431125789141 +1.0098914803824521 1.7347625088417873 1.3166871505518167 1.8268785012779993 0.8864159420133987 +1.8253802005752569 3.1641784427542055 2.196639865673279 1.4729388160729728 1.5218817110583949 +3.5124762482381287 4.90054971019364 1.9537278660697965 2.374715114924666 1.450509634398734 +1.2015313068725666 2.9446632919801026 4.977095058064977 2.420925842117573 3.093947345715842 +3.5376594606762612 3.892431786972343 4.107655250601285 4.090239629487195 0.35519953176253355 +3.9504786583925244 2.9501144643811834 4.043752984338373 2.0706574513749376 2.212201279915601 +3.1093326703751893 2.1440236442910274 4.774980991115951 1.3747340939178248 3.534614615165993 +3.7079998262246496 1.3999396833529199 4.294216550831348 4.916148822365177 2.3903851935385427 +2.2648326096629026 1.2110091102435758 1.4069369785959052 2.5510910333979213 1.5555167852030047 +4.932045858913337 2.579028959598868 1.1807630524630786 3.5524861086408066 3.3409218463867876 +3.776479072319128 1.702370262684747 2.526520180543065 1.2009850239099609 2.461497675333718 +4.2470923334592925 3.4832590535607535 3.972635736089499 3.452845542811903 0.9239172714632629 +3.1816046463518237 1.2494751443229806 4.3609762427063 3.7851758083990195 2.0161028130426977 +2.1735051452484213 2.4301093877111652 3.5010497153391262 4.556040959321257 1.0857496314200816 +4.061979523072265 3.591542304744001 4.099443884734757 3.7252298755455127 0.6011217023714269 +2.3814345074029055 2.3629250778092135 2.2619928422639077 2.490999878187224 0.22975382801221575 +1.4076153036506245 1.3669500627910525 3.5311101222451127 4.100206591056359 0.5705475025163087 +4.183851472468253 1.3159605524653637 1.7962823615029584 3.8873911462524635 3.549300533723732 +2.7122703128735477 2.345020863657887 2.3986622063617493 3.838405457337201 1.4858441326998495 +1.413483287002495 4.840284927204376 2.1923562038572473 2.4794940144450464 3.4388104925336402 +3.849612467695969 3.1704523756311835 4.5775165871333545 3.216082785788856 1.521433674563824 +4.973846808560031 4.559156001962178 4.0783335373526 4.749482646486751 0.7889293959337186 +1.4200610577759822 4.058749729716222 4.002124341279167 1.9233508908548074 3.3591631347130115 +1.7090031810116506 3.6405498949042796 3.6512836250509437 3.109679319229327 2.006042853987404 +3.4576660564270454 1.8495853199835723 3.0103850263678056 2.2722578951120678 1.7693940535721282 +2.6940156919626475 2.3811627202840375 3.1486445925760096 4.62495150672153 1.5090921398781474 +1.4442029232397862 4.705129550472003 3.197493992216903 3.558138281175656 3.2808088593136064 +1.3860608366706044 3.0509306680905506 4.807218650657454 1.181104342014407 3.990049690783076 +1.2912777023041944 3.4060715440849574 1.9162831578416117 4.765255729265689 3.548097758794219 +4.622315924171463 1.120029089970481 1.813713019807289 3.7013182385343084 3.9785759425682725 +4.504636042555988 4.05844448444098 1.3633873361384112 3.38514109735004 2.070404592708021 +1.8640054433972928 2.882294064809162 3.2917773357386366 4.681722931243181 1.7230381524967366 +3.641181270688841 1.3062916822552948 4.439491105714501 1.227811426510363 3.970717284318813 +3.2646309335813983 3.1903403495219593 3.245875548481705 4.333730499771731 1.090388685710796 +1.5893252803812215 1.9345955439242548 2.782605025633844 4.897051893230776 2.142451192157607 +2.9331312050277716 1.268648090846654 1.1659369403418243 1.0363895074251612 1.669516868668708 +2.661118255213941 3.1844186275038786 4.603665960346376 4.380510590472598 0.5688950683054739 +1.7919589413007508 2.0324266517576675 4.8348267121737365 2.3326264342963654 2.5137284957572454 +4.34658605370106 3.3056031665331562 4.946196044561345 4.42424154497171 1.1645092833542767 +2.535578254827107 3.199265155795118 1.140142851602882 4.376027023871059 3.303244871161117 +4.497753986179336 3.038771407672614 4.345432361198725 4.702725092434084 1.5020946242430089 +2.495141922626473 4.1365702661908195 3.34794827291055 4.481465967381045 1.9947805319719012 +2.359420378349652 1.6914697813508393 2.5480928843083723 3.2209266132782206 0.9480839766974979 +1.5463938518846416 2.7166407116825617 1.198230675234051 1.8959515853555953 1.3624581392790491 +2.338215764057226 3.7231576568659532 3.8283006579345926 3.2158440116619817 1.514320702500007 +4.365741391374419 1.212016986781577 4.627934523152547 4.694753279824861 3.154432178121398 +1.5551813158995427 3.843856705162487 2.856604200177276 2.6469260264197905 2.2982602058879587 +2.1638376531093133 3.969035594593377 1.0011045144555486 4.015020943850378 3.5131797351280474 +4.112107786355352 4.001756187131842 2.1705654142314743 4.899545006099752 2.7312098213584277 +3.7280003065895624 4.812613237269273 3.909009649710749 1.542066258076607 2.6036140705945967 +4.629607842969996 3.426248762032457 4.45653019893024 4.789796649959467 1.2486551185401256 +2.4408382161190167 2.7070202960340763 1.5186978069988135 3.2713534862916487 1.7727534599671035 +1.0695308526881258 3.254131287532069 4.034643183587301 4.0088762226993495 2.184752387844844 +1.55019004449148 3.729578906437442 2.064590955728714 1.396896495766601 2.279375287976557 +4.058082827406065 2.4684501637472733 2.8534432179623033 2.095266674476264 1.76118246540879 +2.0015820327153797 1.6403557812242724 2.3299771068749515 1.974382926039918 0.5068842335386408 +3.0168153610139776 2.6938681991353124 1.2620154401089643 1.6749418144104236 0.5242166154932841 +4.873113830092017 2.074682155293939 3.0301777994743446 3.154084574494054 2.801173455430592 +3.5719982756235633 3.089049880680456 1.21767759401303 1.0658192250467096 0.5062609173175773 +3.3755255024207 2.458944224953935 3.9700852325754092 4.658586686930121 1.146366211492279 +3.401648690427431 2.2052226238286745 4.353731224314343 3.583441746650283 1.4229480708152855 +3.9044529864362274 1.633283488546775 1.122124442908055 4.596944998634098 4.151215338023272 +2.917517058240171 4.395140589127488 1.4738213237627762 2.071744874515201 1.5940150161075297 +3.310724011624497 2.5673624869497234 4.1533849002489305 3.885650929087655 0.7901062179736283 +4.147628189141285 1.9236292901848193 3.9416369389376023 3.095731306465847 2.3794384719103396 +1.1684508896208663 1.2585771032129953 2.6768611201864 2.696782434740487 0.09230164218483296 +1.0595912355293309 4.028423762136577 1.6886674033578557 4.193177234976738 3.8841390381546343 +4.869685715836743 2.6631572525825553 4.249225624021605 1.443443064001757 3.5694794625074424 +2.5451461751772344 4.059933618936662 3.756350413878124 4.662355411902286 1.7650569555161622 +4.39097114041726 1.5074148191677357 4.510053759739402 4.4597410325950415 2.883995219886953 +4.221408538807109 1.417874135430592 4.886836386260745 1.1760650853312824 4.650766474326298 +2.296516367223662 3.4368465552029357 4.074876712890772 1.8752022402605864 2.477684548758726 +2.315421166276202 2.3378085425282538 2.1414470748559498 2.26306281452365 0.12365913937260267 +1.1997546083467374 1.786179918951134 2.454742499725674 3.192072545186657 0.9420988487716979 +1.6265083249548424 2.545371383134687 4.727226699754112 4.553430441738225 0.9351547780918094 +4.478001433782115 3.873525049341641 3.026572473868745 2.7950173020478233 0.6473094290547948 +3.460774416230761 2.253949213908606 1.0985855487680927 1.655736608218597 1.3292269828764125 +4.176423197452998 1.152532949854518 2.967781600374326 4.085805905768662 3.223955734338436 +1.828090125540497 3.475931526724406 2.5285397592941927 1.5124200553298808 1.9359443525680868 +4.773730509363532 4.916786956207395 4.702088190496321 2.2263645313089317 2.4798533794649606 +3.9434888933782797 1.4817700316438134 2.848136773407919 4.735142815621849 3.1017497574064734 +2.2022007886336206 3.579066186885921 1.1349804754220476 3.08184071081514 2.3845383412852295 +3.0429775270858213 3.67651125016308 2.391264959555116 2.4380242193466737 0.6352569611207636 +2.173652082710549 2.097604145150628 4.850185284821152 4.974361186719775 0.1456123051786971 +3.038349737368507 2.5848726286245296 2.078888697293603 1.3132068799212062 0.8898933270957218 +2.526085810632538 2.441444549549471 1.6506059636198902 2.7109772831398096 1.0637440849838586 +3.291294465101747 2.0556700141868562 2.3976994401670573 4.379408596106826 2.33536698667131 +4.618055396513215 2.2905119920723824 1.725268337454533 1.39121887497013 2.3513926390422633 +4.410420588751391 4.258758675351995 2.5085780050032622 1.6354032264039158 0.8862480070262407 +3.61585117221619 3.7880968613288997 1.1720267474072528 2.7298821908184117 1.567348767818985 +2.1144529509603602 4.522961314750907 2.5078446719754224 4.12041424744014 2.8984984343903784 +4.7075077118357385 3.399123214919666 3.1975475426066793 3.2067747109493503 1.308417033061687 +1.644713136651771 4.815205060698096 4.619898099603388 4.329672441349105 3.18374778730227 +1.6903904921956712 2.966403717474893 4.566282642721587 2.4377652956438327 2.481692133988099 +2.689083139191193 2.0313083172225945 3.7656534501284233 2.366658236051535 1.5459156915646663 +1.0642486902287085 1.2990728688733992 4.5509468299017914 2.336227280267303 2.227133825886838 +1.827904805846432 4.996860771924009 3.009556659302886 3.7103923316318363 3.24552808561988 +3.0400015342490745 3.4632830049302417 4.938289349645287 4.155406990335378 0.889984264996107 +4.289250622791348 2.100856993771081 4.260361701611069 3.3548531997122057 2.3683353484140754 +1.789408917974765 3.107203914244301 3.5553747501560444 1.2324963696120368 2.670645544244271 +3.099831795137863 2.0116418308609685 2.0311176015840267 2.6814976829240336 1.267734849468446 +4.343751239661977 2.0325541476876197 1.2834122391909726 1.5378159689244932 2.325156608844456 +2.2675352701121443 4.361752617570291 2.3251320261679314 4.758729136988071 3.210629408104705 +4.935087246181075 2.4831467411555357 1.326087995076266 3.247637086288154 3.115182683266285 +3.450976083963817 4.4648497099680124 3.4376707735608982 4.94604286246776 1.817450436215564 +1.420735272026481 2.2570385032323115 4.710331575950843 2.4786445104820216 2.38323944510537 +4.803451642027916 1.0827732370460943 2.655008380891803 2.710771854807097 3.7210962575995232 +1.8176452329842179 1.4951857634675911 1.924624714466217 2.0916946584106224 0.3631700368292119 +1.674313296749002 3.9663754130407938 3.9176358989954205 4.2856327029833885 2.3214156010256684 +2.7351731770590786 4.522629019297262 1.430865959421824 2.385430027280075 2.0263738420137347 +1.6406540482137837 2.884919945873224 3.066813179948428 4.3234178468561275 1.7684040581757507 +2.476381655674506 1.6623783218221213 1.6744605302695814 4.088585123268063 2.5476653975832226 +3.195165764183103 4.873092635294534 3.3159100545360207 3.4479753323242446 1.683116104846923 +1.8197560756511457 2.126253951586868 3.7295508202866863 2.070756046085707 1.686873157907727 +3.08464443675334 3.231035405599666 2.566262612406252 3.7101801191252317 1.1532465382293298 +2.6448788019550826 2.385980978469185 3.0423909513984206 3.1293163230376355 0.2731009030383285 +1.5409458133292193 1.151212221209771 3.099683059066546 2.9093577313191323 0.43372341786960145 +3.858016245754336 3.115506663481215 3.5090773368328465 2.033093772444805 1.6522251547870321 +2.454644676462405 4.2067037597996295 2.0338669917241474 3.0168156392082177 2.0089547220122306 +2.541648310604804 1.1429486164537597 1.7422736088030355 3.5149102557000425 2.2580083074117527 +4.076954922057543 3.7330263276594944 4.461078365282072 2.0518396419749236 2.4336635149353074 +1.2333635640310616 1.140475483152846 2.2832389968310998 4.173021972671123 1.8920644522172099 +1.194027522801178 3.7578779427493028 4.082989259903313 2.2602229549645414 3.145760000109404 +3.5813221646504894 2.1583452811439305 3.46720787001898 2.5231227977466677 1.7076767360017107 +1.0355823347763216 1.0042804138185337 2.043117006731377 1.1304541119970266 0.9131995234780466 +2.412486922777131 1.5309639776666573 4.647737170908468 3.733558135857474 1.269962995871537 +1.3287210040776491 1.9016692478593131 4.595350655136826 1.8488493874727725 2.8056262943116193 +4.033660244384802 3.214520118116341 2.4957785879195424 2.6065376239072586 0.8265942841055938 +3.051999845814812 2.5931516721104146 2.962443990498415 1.9124414106449175 1.1458826572607077 +1.4779249286468867 3.9385905654781723 3.813780848485228 1.281880957577624 3.5306362647347647 +3.4051920713623383 3.208046742535873 2.9204887922142206 2.9673061775994833 0.20262810331345268 +3.8472727724933615 1.2844110987463866 3.523087043383197 4.92747763513289 2.9224258575635753 +2.9634928253568007 2.0625817339753754 2.216951916528018 1.6581102693798644 1.0601626201490657 +3.9941246250680793 4.558901729327291 1.2179214833378555 2.8596864229771315 1.7361927584586268 +2.2359842783054527 3.732110415379705 1.413330005431499 3.4026797436013 2.4891576484411306 +4.3490500135579016 2.4553008916726426 2.1593200676227595 2.936625685325142 2.047068577247199 +1.588838009576993 1.68336231555721 4.335902883944662 1.2394132669395428 3.097932018725 +2.69670707555669 3.0490327628168306 4.532498958442333 3.5903786847219 1.0058449184931013 +2.5703791462223355 3.744464926254908 1.4105454664263712 4.36545178514787 3.1796145633228776 +2.833357374932322 3.2377159272045346 3.806422122667209 3.3209721067999425 0.631797085068623 +4.000894285992253 2.878437753414335 1.0790235905903751 3.310416666104972 2.4978037803200905 +2.880696064497735 4.302059492729686 3.022842536784153 4.148569295638084 1.813156013892644 +1.2642536652101137 1.4082578450458727 3.377104978064272 4.060089521353255 0.6980007809321067 +2.6116815694056568 2.4915928889121512 1.626725393682674 4.366929181720538 2.7428339525315293 +1.4538612841150917 1.7470483637581724 2.748605211976902 1.4557129581024766 1.3257183123869605 +4.718359676333446 3.9896841249442603 3.7156489429694686 2.1342034395774343 1.74124608811943 +4.770062809924026 4.6293050803148486 4.629383000373246 1.082696412927405 3.5494786219968923 +2.7956914556479235 4.318785834622239 2.6702936133487873 4.021954419661226 2.0363701585380656 +4.934232680203134 2.4522670247224947 4.098318879911711 2.6597371782814556 2.868740285778907 +3.1426592829472266 1.8198736993182871 1.4474970608589897 2.5124669631555627 1.6982115866564234 +4.927605188216152 4.517962811145489 4.319332557141131 4.529515591526235 0.46041696866583104 +1.9634958586722995 3.3684141620032335 2.598537475001783 1.5879886335117992 1.7306081012381225 +4.686426523820885 3.1035451067444386 4.802452890541355 2.477944536952229 2.812268242261319 +1.2977642019580227 3.7421116746419556 2.006439427473049 2.518238366139898 2.4973531429969698 +2.6884596711109077 2.793702224354281 3.0716512051504834 4.823571822021123 1.7550788708287686 +3.832454910418594 2.1743341595071177 1.0948298767051847 2.9826210463406926 2.5125922718891416 +1.8360524186441776 2.24197545273498 3.764511194227686 1.9291729234954165 1.8796914846910384 +1.9064959985263084 2.117709518091041 4.410830227800213 3.4521853831137848 0.981636943625691 +3.3625153305758353 1.3437436724065681 4.8129777525295765 4.510046443216343 2.0413736517329997 +4.6543689419492065 3.1929121680641037 4.209498196672077 3.4482313617941145 1.647841951104463 +2.065893549307812 2.2941813273428124 3.51687168965631 1.2131596807941385 2.3149955354980576 +3.238586419340426 3.8018450051083406 3.048124944472899 4.913380616720074 1.9484452666912488 +1.4255229300695618 3.7849445711873253 4.95840369881995 4.008612965031577 2.5434175666935026 +2.559597209128291 3.9386863921251667 3.6365426061502943 1.653222603504751 2.415666617634335 +2.940129289964488 3.672653477501792 4.068648462394758 3.5593296978947597 0.892186801739967 +3.808107241405607 2.7507366219481817 3.278856842191939 3.22015957119728 1.0589985819225634 +4.120686620050075 3.2068660695153617 4.5281131728072666 1.2946242517082394 3.360136693863766 +1.6118105988385172 4.7649372396317915 1.3519877164609766 1.5111858680428272 3.1571429591241755 +4.242964777514027 3.3359547990449454 2.4532626354657663 2.7516485091071106 0.9548304721945108 +2.3427217413435195 4.088035472443771 3.9680221621049214 1.1430806943354757 3.320604510671283 +2.6480711885687835 3.993093528929128 2.6788277317051468 3.2641007512354174 1.4668434147714946 +2.396970500033178 1.130913011717992 2.3779626441719937 1.436551728566135 1.5777059535099747 +1.1378212384228514 4.805519996250889 3.2759070621600155 1.8478450480051545 3.9359084458921765 +2.736533607172463 2.2563067854764447 1.316395115166697 3.839065331225272 2.567972511392066 +3.5373324620926283 4.686080461069844 1.8823946925668684 2.0345097534302736 1.158775628366266 +3.034630129671095 2.6766587670622335 3.085358737645749 2.2950586052323225 0.8675931049407463 +4.589925260383605 2.7821890887363976 4.092246378113732 3.1828741414134236 2.0235780022433096 +4.7254512648702685 1.8422852021738239 4.52842369376678 4.199645234851891 2.901851446943997 +2.3227681140724816 3.567352460150377 1.1181714088233572 4.9326990674475635 4.012432111937996 +2.206640499918994 1.9709599107355547 4.095818449133301 2.8325667893757087 1.2850486745637941 +2.295856727105561 3.5174144792164515 4.171824869495332 3.074814662722256 1.6418388275060731 +1.7056851984270276 3.6852870979375476 4.613726060511265 1.029874192765111 4.0942420410245965 +1.4568317258163508 1.9741062676879961 1.0394291789541854 1.6925644548583088 0.8331618331986145 +1.222919180341008 2.123333618936313 1.2103787251218168 2.9679371180759153 1.9747804095327388 +4.735191327917635 1.6944674057399287 1.6160879487524507 2.5086902926409325 3.169028386622465 +4.194044381069331 3.6409779341772897 2.5519841882151098 1.371792032457304 1.303355676394607 +3.4589062968516737 2.582104636389812 2.967320564108245 1.8529091070101726 1.4179894384303877 +1.5406213431346796 2.1307075489903884 2.1393466120873446 4.490268547620222 2.4238472883642728 +2.3697802180887164 1.3179677398779477 1.2300695201570901 4.711437232988329 3.6367885065348093 +1.692546427377576 3.965202065125031 1.844767053462815 4.428543230983211 3.4410555042468 +4.5704381315402385 4.318191206173092 1.7734252136506732 1.2485346706479148 0.5823560710518175 +3.5530040309561812 3.1048782130817165 2.5809195032959362 1.023659367716955 1.6204554540341816 +4.613996017643954 3.587811040195466 3.5969530912308656 1.742788225453792 2.119193940493193 +3.8932643903230915 1.6222507407273108 4.462699121214932 3.7673086184885825 2.375093881919692 +4.886723335384727 2.2401719864504095 1.0671759530651186 2.3995336845134987 2.9630071156000164 +4.947725392212757 1.7522927830999935 3.911508546798264 4.9540897600648535 3.361214831818644 +4.9227971967000315 3.146405145464765 4.415566890451973 4.732778689664487 1.804492184868496 +4.108830672037328 3.2403973736466383 1.4027542141018485 2.924077023309009 1.7517418427290306 +2.6427378056408486 4.9242849440380345 3.0000098104006323 4.800209435167244 2.906230554126468 +3.866316046847957 3.352782558579571 3.220813906207383 4.571270695431095 1.444801087739594 +4.145042304611859 3.1245760980644772 2.3376118022269594 1.7676683302470169 1.168839954808936 +2.1044334860790075 3.4249488679511253 4.316708465210775 4.827678240829857 1.415927605973229 +2.8175741558872986 3.484043643800231 3.910522669414223 2.8533190844344527 1.2497443732271831 +1.4202457687648242 2.0737652796856114 4.115956357886525 3.5976739693101707 0.8340889553654067 +3.854687388214794 2.860828826796238 3.9456134603117907 1.2617696396215954 2.8619525666862313 +2.448850044930651 3.569368529390254 3.4979164567641687 4.60138815874265 1.5726447377214388 +3.9881829611730235 4.107990370295876 2.041902670065562 3.461334893851146 1.4244794323547174 +2.1611654301636163 1.7840896518003215 3.5159872496059137 2.773449024579052 0.8327959883755006 +3.688952276919118 4.384253675401956 2.415974716707105 2.427315766144995 0.695393884165329 +4.424811007402463 2.0554803828381565 3.3237696143814217 3.3592884024286143 2.369596841828294 +4.535314732882487 1.3076659990662525 1.5480775823626365 2.167560619417645 3.286559840030977 +1.123722426123634 3.473563796161066 3.2440736415834195 1.9371561526476575 2.688826470270172 +3.926589282536861 1.0423285897895402 1.9052278455158973 4.359443456899796 3.7871010035233676 +3.9946115790894896 2.4135542731567146 1.4310982225266278 2.2404882885765214 1.7761910042739368 +4.967257188518251 2.327461130650599 2.3301361894493557 4.932468556450392 3.7068392162966566 +4.597101587861811 3.887431792684735 2.620978784136462 3.5723736519704827 1.1869218225003646 +2.6174987898899422 2.936718477498694 3.402486321554901 4.385225435009902 1.0332847497526276 +3.5808534664341356 4.068363973109605 1.307833789121923 2.4664333254811233 1.2569882178328988 +2.7495480515680315 4.882645771897177 3.2974370279310263 4.758584893138888 2.585548098271407 +4.782807101282756 3.707626242802689 1.3424899296935875 1.1587467753750773 1.0907682729163197 +4.980126146435557 4.088752255608149 4.58661484388414 2.7803017378760453 2.0142776497259267 +2.8297435601940593 4.846430693467346 4.490880559926991 2.504378214692753 2.830762893838188 +3.883125796679403 2.438463643559056 1.382275872760208 3.05414412992681 2.2095683302354803 +4.1724167660254015 4.7940029624052976 2.926472167075226 1.2288296564187098 1.8078604740184423 +4.2759489185591395 3.712543193572749 3.802751015644089 4.91704217493024 1.248627566014268 +2.1403975280110834 2.249745999985977 4.097267146033562 1.07145166245745 3.0277906844714653 +1.7524790481846457 2.644086349484391 1.4636363124232887 4.880369541370325 3.5311513048185654 +1.0545586511759537 1.9534760790311787 1.8568567530400677 2.9996563632617677 1.4539750655443588 +4.4838840277837395 4.863448786167551 1.4161640477380466 1.6919270207524706 0.46916374869837807 +2.2907226355077204 3.185408261402969 4.226104718276428 3.6599164825769264 1.0587877442755402 +3.7050198422422898 2.8708632019969995 2.052513726495772 2.8598318376582412 1.160853062655325 +4.336320594491639 3.14856705704867 2.203454547359236 3.9039274326055318 2.074214670463534 +3.2337904120085543 2.0641437075840425 2.8995414446449264 3.4348866020423445 1.2863389330654607 +1.8784788056981032 1.7292944173304217 2.3659818311011716 2.157041583974044 0.2567333414307232 +2.7780029183326995 1.206297472547694 2.7983721436692774 1.7680236033484023 1.8793286362027268 +3.7307323859842074 4.071848389548385 4.95045027962135 4.371893726057204 0.6716307121920638 +1.2258303744855121 1.6328255793705404 3.484036212446403 3.490833705830328 0.40705196562074314 +2.911948421120871 4.87348403707259 3.068367069075759 4.725077255817425 2.5675495351600706 +1.4616297678795962 4.020199933021944 2.566114689655514 4.373701061879339 3.132674541506958 +1.276801420870202 1.6214130232778938 4.381789410774331 2.3245035759467076 2.0859487440242606 +2.4039465522842995 2.187968907371354 1.4813953425895243 4.87177915187795 3.397256057083016 +1.388852525911719 1.2101193368616352 1.2455375173862482 1.0311848110269692 0.27909252156150705 +3.0396057316672076 3.96731267934631 4.321203843920159 1.6781476833832514 2.801140133682029 +2.2279551381365295 4.023133267845304 3.4168057132028125 3.707092797816526 1.8184969367250037 +1.4705245234718274 1.076000565494975 2.336038313559139 4.622339608256704 2.320091111045746 +4.053431630265642 3.8722443880868687 1.5778245293616506 4.2146352293086355 2.643028468269545 +1.2026228747742325 1.6689442739071954 3.0986499143237536 2.0384660444811993 1.158207876490079 +3.254179951135669 2.262855500961492 4.035901636874998 4.0067798739786555 0.9917521074277207 +2.1930008147030087 4.482845108837445 2.1051345458933004 4.804424620146638 3.539710976385307 +2.231521678237903 3.5311567302312272 4.970634171618926 4.5660183713263764 1.3611631842714784 +2.1425080504339196 4.45909919819268 4.982347051276017 4.654706134730436 2.3396459381857504 +2.463355050733245 4.708606618266472 1.1152976276274038 2.67142521204651 2.7317920236541533 +4.643798054391158 2.334775454022287 2.613639548514892 2.3789425712462893 2.3209196539633252 +3.3311086440663193 2.3415632377848254 1.1370634550584864 4.31604702771287 3.329434886928897 +2.1413206314116584 4.9542450610170174 1.8688641340847472 3.9971831147859596 3.5273624041603213 +1.1538081152859725 3.5555175102614904 3.2695969473001494 4.295779014651195 2.6117537505030093 +4.435445575523657 1.3994496113604238 1.5938330289382607 4.591314478431965 4.266399715740933 +4.287442274898941 2.690235152311322 1.8001544809478212 1.9418758070837852 1.603482312570475 +2.3801074081804674 3.7473344633974386 3.3298849925683203 3.7577813398140845 1.4326217590500079 +2.3147763288802876 2.043843023435563 2.029314750673553 1.7775076006471138 0.3698806521077333 +2.1840203755067735 1.6127879556726183 2.6773704459102774 2.1557905817311243 0.7735321791539951 +4.438202759680477 4.246395906450735 2.6509946947502896 4.492430288456803 1.8513980973078576 +3.474874338458034 4.904324566889821 3.6032411066505072 3.925821164036622 1.4653961406346472 +2.5180128958841546 3.2309883525094194 1.1940277336266902 1.182644714293272 0.7130663187103636 +2.017890187144871 2.914352115388171 2.562267726488204 4.090751631343074 1.7719782832162718 +4.590361122241231 2.7578560162289207 1.833843452953547 3.413322610721762 2.419262154745818 +4.836544994465392 2.735923090351315 2.4063788124616132 1.0089139984195952 2.522998273984614 +2.0571628805661075 3.28911383380172 2.7068549303547615 1.7157122259620303 1.5811600208862706 +3.9898655911671947 2.4453950241620532 3.3874269651954805 1.6500024386349432 2.324657677560137 +2.889967960286291 1.8724427004518431 4.28301859549352 4.0558200608853525 1.0425818090343122 +1.9481706955632334 2.5824836948552528 3.90647744418589 2.1085338638625464 1.9065555588801395 +2.863935252693434 4.011608623909579 3.15219344788754 2.531317333467784 1.304852986529749 +4.101972017370745 1.6445311104007385 2.92364842112667 3.467747557832251 2.5169544457167525 +3.3011499185523996 2.839344880150946 1.1237178126513547 2.662948010220001 1.607013843935447 +1.973581196092856 1.2856786922833319 3.8044698465394684 2.7549240060304725 1.2548929540311984 +2.4706861021134467 1.005153783436052 4.295758128558089 4.1994111340665 1.4686959251102671 +1.9213452830584399 1.9454131291369876 3.524447094151181 2.591288586140382 0.9334688330564663 +2.8590309296236294 2.54564077469651 3.6039512797104254 3.287577574875553 0.44531529315327434 +2.747267879447901 2.735999440820977 4.644819520136775 4.146109902706165 0.49883690744257664 +4.584619682724407 4.426547378141617 3.912590071282948 1.7198452326215974 2.1984350754461923 +3.0888650959969217 3.142458393894889 4.836627507719854 2.3706995190799596 2.4665103054188067 +3.728994436358842 2.387207874929969 1.6145017836436102 2.445703769409355 1.5783814233486266 +4.286189725453076 3.746792221523198 1.0676553437036356 4.240478374741615 3.2183467267419794 +1.9741441054956699 2.6801354389605687 2.281704566331374 3.4167472945800257 1.3366920953898425 +4.6026354550579684 1.420882862542864 3.75489890740819 2.0620490171375847 3.6040658028074057 +2.319239663891604 3.2955134774994304 1.6242372617923149 2.321112431879474 1.1994772035434336 +2.1745755436397673 2.9951770464497964 1.5395563463202984 4.274367641422379 2.8552722543099103 +1.2651428702932157 2.442405840995796 4.698595089248382 3.520103611340828 1.6657701719289475 +3.7039180110186014 1.5282589286515669 4.772226894572098 4.86640509452865 2.177696483909827 +4.034655076559529 2.853849742410452 3.738063254164713 1.1004240551429771 2.889886119100706 +4.959315250258259 2.057296290088248 4.276835014552944 3.8034694242470017 2.9403722599820457 +3.952519702210271 2.8382094772535145 2.6933004582993942 2.253977489085268 1.1977862700508357 +3.227528337134285 3.124798827370902 1.625821790407389 3.267510487880298 1.6448997329887685 +2.3409309906739266 4.908809730469291 2.5616704562479122 4.312055362396402 3.107707924172651 +3.9986638629812803 1.1732454523901108 4.030491933984268 1.1518660974235488 4.033543839085232 +1.1818230747747833 3.5802889225892733 2.940840706377261 3.0372541730532263 2.40040287862037 +1.0518508811401874 1.2575818143279722 3.586654558428737 1.3373097200592658 2.2587335873824737 +2.8146218496939888 4.041153975970005 3.5515501646464083 4.573849755310686 1.5967083358771303 +1.4986685014543277 3.4338885146563727 2.4824317086528884 4.599895056197577 2.868575871001651 +1.152757375037766 3.319173481417387 2.4222486321203864 4.349291482222048 2.8994573444196368 +3.878890636353319 1.9717320421892173 4.572715800484694 2.174468107685234 3.064122370159509 +2.47793174646247 3.9361458893375776 2.0921754598817226 2.911662888967292 1.67270682814122 +2.433087684336097 1.3303762235812275 1.4079802420394172 1.6160093893916891 1.1221625068715546 +2.2145718743953475 3.8292139572704142 1.9612199681879443 1.5962704691120706 1.6553722217878568 +3.0915346966768666 4.320605961694065 3.223041324300925 1.9412016827916414 1.7758741625001546 +2.9858950443145704 1.3100841595534862 4.3097386044226695 2.0624907888018846 2.8032953583766584 +1.4358959750582496 4.658778502367616 2.659743246962247 3.042179345275627 3.2454936687858704 +3.6808634308763235 4.528252364016728 3.880868763068967 1.455205198645387 2.569418559087044 +1.131689971525435 1.1111997084499268 3.497968547924253 3.0785668048461354 0.4199019802023643 +4.596866755491268 4.378868264458749 3.4112840292815854 2.022952560421447 1.4053425239135848 +2.645911644029104 4.744713190166019 4.935312410859643 4.553318023313711 2.1332809571604243 +2.106132405201069 2.102877016164112 4.523400515848599 3.7100728863789945 0.8133341443812797 +2.8188104267582106 4.199361729615255 2.4130119182955054 4.127629619870696 2.201325910076759 +4.489931553792232 1.3422901582398556 1.3762842667725823 1.9621791771468686 3.201705670575827 +1.0262280291157815 1.7378622406403719 3.800805511638574 4.021650577957486 0.7451146182498568 +2.6141993536739587 4.203835412491842 4.699665218719167 4.624004861791301 1.591435606333007 +2.8875097706810897 3.811615090736602 2.995485509057738 1.3533758429456624 1.8842756693471403 +1.7049142490977882 4.805294127595616 1.1766786028384675 3.046559897542604 3.6206092646512715 +2.2005984410494754 1.714182371202738 1.2949245845036113 4.216901045310799 2.9621861910616696 +1.1876433957162695 3.992619106859583 1.7692147752794165 3.3915133612229296 3.2403304526017496 +2.6610326882174773 1.7254784426267755 1.4734112801485812 4.369412829605539 3.0433676611444573 +1.572123436395359 3.211351752079765 1.834331649077448 2.825637408047362 1.9156608725733408 +4.6458068710219464 2.486136615350497 2.094481922399441 3.2689400388330614 2.4583586964657522 +2.105831810754544 2.641738714072264 3.8453031387661665 2.7482325151702263 1.220966896431174 +1.0911016575569499 4.326212099826147 2.3872369309999204 1.9065429131721734 3.2706278162540268 +2.5913450830463964 3.692209423074362 2.87896994932817 2.0508031530336877 1.37759302322198 +3.975151648193758 3.5218996113516527 1.7603582081566698 4.399929793777208 2.6782037944332835 +2.183300949842875 3.5329536957340304 4.366856077129119 1.6018530049960407 3.0768172716943885 +4.803536711182971 3.000447252168459 4.9935211359316 3.8659923185517093 2.1266059416900305 +2.1378478881575926 4.978921846269612 3.2833303806822673 3.5010555286304625 2.849404407154478 +4.208562865114745 4.003790191126015 4.382250710232189 2.1240407365599063 2.267475277308545 +1.914552175191087 2.214998413762493 4.374833573049586 3.0053385881860755 1.402064355098586 +1.6838516321560708 3.4015884805440018 4.231021989609118 2.595322425517839 2.3719470787262735 +3.7347709942014586 2.804734480395145 3.4070362183817626 4.41092990441515 1.3684920350044802 +4.996812631408846 3.7848600733007287 2.399174721635708 1.9046831951175434 1.3089502942828177 +2.9442209468113534 3.7827797463050965 4.993899833941435 2.5849684863790365 2.550711880530057 +2.1118626003025924 1.8865850749214372 3.328282071684463 1.4165097036843073 1.9249996235040618 +2.982382803539914 3.1055648658949266 1.281379359007265 3.654217413569867 2.376033302305855 +2.999086525240648 1.6760683886913696 4.879509910193554 1.2562325290782184 3.8572679411910613 +2.197217788730597 2.86786072037213 3.7124812740797832 1.1147615498169725 2.6828920417312365 +1.8866194318103577 2.988767923467965 2.9799932657380546 4.681353672199037 2.027155280272387 +3.4318960366386837 2.5177220857189737 2.771982806459238 3.1276269406650097 0.9809162873227895 +4.06219710022512 2.194720415157854 4.878578256714395 1.0751729378957133 4.2371406854727 +2.305631775388415 2.1286389372081604 2.403951974898927 4.175174990720327 1.7800442231985578 +1.1792097731556321 4.193536638267943 3.9584505104945222 1.43419008944745 3.9316735778803604 +2.702587340300553 3.049134111231375 2.29042548044734 2.6187425133408704 0.47737484069710984 +3.970914147674934 2.8656243932443823 3.9521175936446715 2.6346352598325264 1.7197165874516203 +3.1170700400639237 4.131014166822513 3.921170494349996 1.5787290768421984 2.552472230337517 +1.4164393221862226 1.2354126280883877 2.6795901051428084 1.7315996558801956 0.9651199696768902 +2.407329705875796 4.908282894554484 3.1895100002877546 4.549077743271648 2.8466104931522356 +4.373749452055212 1.6417713079471765 3.5485738775135176 2.5390125267984445 2.912545055572811 +4.429891991223598 1.0994335157574855 2.561548105640463 2.716783997973231 3.334074360159415 +3.2222277326476703 1.9904170802894652 3.3675603062078108 4.667762396179636 1.7910563804722202 +1.5482877133473845 1.3289306640747647 2.4559902269425358 3.2101216586328376 0.7853863579976768 +1.0243011654007637 3.125434540213041 3.903790088273645 4.160099774571422 2.1167087929236024 +3.330349031971531 4.112540920833675 3.1826917775922117 1.2468368953600732 2.0879076311139184 +1.8856454275654553 1.3672696256699326 2.9419529561286857 3.9103113119835906 1.0983767010205747 +4.132636158717258 1.200655338059363 4.658367424735073 4.096576044333684 2.985317585751814 +4.607070816606834 1.8364513399426219 3.5710978865705396 4.535215638025209 2.9335738141626977 +1.951762118432255 3.667454768969934 1.3273571206248471 1.973709429429345 1.833404641154241 +4.404839245123629 4.3232071486450945 3.8817890560946773 1.9377200497161882 1.9457821308504524 +2.134061100582265 4.9192854546577145 4.240502434145187 2.8784829666032223 3.1004147678170897 +4.133232380953747 4.982095772751572 4.264142573416947 1.0782450524716962 3.297045961447854 +3.0760129316593843 4.2313719018763525 2.3809573497641874 1.108014573549276 1.7190804697798585 +4.375051839522904 2.8507138991374146 4.9519658861537525 1.3869413887169841 3.877242038333815 +3.021324099961761 2.922983409285743 4.708839790463589 2.2357919010706557 2.4750023746803715 +3.519489493156658 4.481511289065958 2.377946944969561 3.099011800277496 1.202256404168765 +1.9871530051793065 3.9943391655675438 4.617000429604653 1.9947303715060007 3.3022865623768607 +4.67633214438356 2.724571473047798 2.649131872575275 1.9436387660515888 2.0753530402139932 +2.361555271964434 4.0283295159662575 4.268572121267398 2.463617335767542 2.456826847412467 +2.5132019767038623 1.6083500277807294 3.1505066305926475 4.398024928324265 1.541122627387316 +3.8139868599082822 2.9755290058415134 3.1340007172332744 3.114159333056076 0.838692585857487 +4.5619556976925395 2.271809211029338 3.0343995737511746 1.8161685484534207 2.594004194555942 +3.9584511462161536 3.910600729899054 2.000775629757652 2.9369376429003102 0.9373841140071842 +3.4814952958372736 4.899096193312033 1.6722187845300875 1.194740672964521 1.4958534859890067 +2.6905327165815853 3.159209245307361 1.2749284400094703 3.458949182842422 2.2337422173794006 +1.4900234784935469 2.4188205123942295 4.283559100909886 4.63110101792666 0.9916901301648615 +4.294359017838543 4.237562485618991 3.0586163349434807 2.3892344498562332 0.6717871345561208 +1.7092527217521019 4.573950034776 1.990362662418026 3.0334780494284272 3.048701429439131 +4.785221355769429 2.600749591838471 3.423091824141338 3.072050512611126 2.2124978847023744 +2.88984040609823 1.0473987888810852 3.883802814833706 3.005800362132993 2.040950616698551 +1.4503327245409618 3.69379990570313 3.0260401500039724 3.5017749849521382 2.293353140302401 +2.381476482032365 4.743427955207087 2.696970371293756 3.3539598957105174 2.451621911475259 +4.823430834030411 3.003328401887702 2.101413027943269 3.1417731467566803 2.096454635881554 +3.0124075222579565 1.2468023738639298 1.2780333748189219 1.7036397631445848 1.8161779477295465 +2.4266064790685666 1.8077820950280503 3.670001278596062 3.1919813529240653 0.7819505531826073 +3.459336641044078 4.1162365246791435 1.253576589863374 1.2884524794151186 0.6578250411711221 +3.455292018751738 4.652258444940285 1.8986773748561214 1.6310832770706472 1.226513443298607 +2.406400362239377 1.1952941368605834 1.60027386531279 3.364642442818285 2.14004083289082 +2.0515065639528176 3.3369596267131443 4.453927048309807 1.1625184247916716 3.53351953490135 +2.348500571433715 4.5759052459197544 2.4925358146827743 1.5611883494690013 2.414278294828991 +4.459942097192125 4.876556423777014 3.2169101695396742 3.525622598362608 0.5185275892616859 +4.264691637978148 2.850198462633754 2.0090772026822505 4.748000150821622 3.0826108834785377 +2.65181062717738 1.6596466002578127 4.58415661141426 2.6673959699102356 2.1583236117719165 +2.648018445784053 3.884389890066156 1.6890435175061165 3.3121443105197925 2.0403603928026626 +1.817094497506301 4.695759537004564 4.511941092231586 4.336935229325881 2.8839797956436706 +1.3184740051712494 1.7406548660040344 4.926096971139067 2.1623619743881335 2.7957946654787427 +2.579238221245581 2.6350671880315377 4.143180293596967 4.628397632213941 0.4884186106475947 +1.477210956654769 4.7495373662223015 1.3949099772343811 4.443691067788578 4.472492176502266 +4.636340578558755 2.485387952934248 4.038418555139048 4.4968728325165275 2.1992674967194574 +4.536115609189439 1.1003565797545667 2.624495928129778 3.299672611620437 3.5014716423630654 +4.168277826114688 3.580208491339804 4.696355048042475 4.278510005738227 0.7214014290814884 +4.997421297994793 1.8319010824749067 2.0835099604539566 1.3856468284737233 3.2415322281048407 +3.2696735945696154 4.526279322083841 1.3439167568384138 3.4235819837073125 2.4298282676496346 +4.197828878918119 1.0289026625785365 3.2845190796151447 1.7144276536330163 3.536563367246075 +3.5145497612446155 2.348608322442946 3.4003542881732387 4.198317870442676 1.4128571468280788 +1.074262675931061 3.424300134935119 4.769300398689641 3.8855432186159637 2.5107175890677205 +3.4364458242546596 1.8552303301053237 3.0951765621706113 4.0823449259652325 1.8640664734431758 +2.521939676365823 2.8127693287180398 4.946658154764787 2.6003107058970993 2.3643029073059183 +3.0094441975486474 1.455026691605572 4.683477816305476 4.859291605655579 1.5643286966964243 +1.7191805119813561 1.1616145279679535 4.493768427643861 4.045240536991571 0.7155816481868624 +4.20774504863966 2.6667642180591207 2.92236306874119 2.5057538908037773 1.596303582454909 +4.648178815453745 1.0041266365348722 4.888468787125945 1.5100410369062107 4.969194134478765 +3.2017267861800875 4.431091970473043 1.9546234741612176 1.3943331931187468 1.3510232993484244 +1.6027437738500012 1.778002907213394 1.7092402567160017 4.997586203482133 3.293013032078757 +3.6817064693043156 1.9750723143099158 3.620446364888601 4.724207870086385 2.03245900311665 +3.4603517536372776 1.6180206292234276 4.009074439975743 1.3193242496826838 3.260205523914949 +2.104998831490054 1.4026873590985032 3.4459161422875573 3.93455576818176 0.855575881057206 +2.430015350357054 4.25388341194413 1.043045112617072 1.4095682534803982 1.8603316690487526 +2.5946137781508205 3.7826698555251284 1.9130320797612907 2.1160625889078144 1.2052794823734136 +3.7045289170364755 3.3998056786546202 4.35103319200079 2.8365404005918844 1.5448445446838535 +3.29252498702506 1.6868920156508591 3.5684936507570106 1.2761186652664382 2.798756922790339 +3.0527012725845752 4.624005129521992 2.964424087630318 1.9642792422514068 1.8626018153551787 +2.143724054495626 2.8091741138396453 1.483136976258113 3.5135962179325055 2.136723780366079 +4.710774348994228 4.455857424897831 1.678353858416863 3.2647458002475966 1.6067426773743998 +3.1412957643876425 3.8287478730711015 1.5948687952336282 4.872695707157983 3.3491401383443016 +3.3861850886308473 3.0877507831848305 3.4211580504445656 1.0574398241791134 2.382483344715455 +2.3910115716510583 1.4428927519746275 2.07970832175215 1.830164390416129 0.9804088279341762 +2.2264676846168894 1.2670534092289212 4.944889243855705 1.8780957292769176 3.213362446547344 +1.9962087973365428 4.364782421472036 4.88852444718648 3.6915945460319346 2.6538240712654964 +2.47489281270233 2.71329340350282 2.3279846720338395 1.2600310860502968 1.0942393264314396 +2.3912170443265355 4.911258611492114 3.6295353574124856 3.255242864297678 2.54768608165222 +1.2771165448552755 2.6704637420430615 4.4661315685878 3.9008408594973334 1.5036522196622002 +4.174406817774808 2.66403199100363 3.763438583245667 2.1029208483805673 2.244671749977174 +3.2167802665392293 2.4292527264259918 1.6237469535634856 1.2842680793604497 0.8575812104208952 +3.359542933574245 4.844746227045751 3.2590350287162533 4.60579132547805 2.004889359991258 +1.1367297345375884 3.299759209475468 1.4711789493071965 3.806216952410196 3.1829387341551647 +3.4400610912774554 4.871197142431274 4.130277121997386 3.0429423985716713 1.7973444849776077 +3.062660823419134 3.9615317457724895 1.9324783168916824 4.45356326369014 2.676534745529404 +4.084821820261529 2.7458794886262594 4.089105620562654 2.041764632879137 2.4462975467620063 +2.360331925423308 2.349958077671233 2.8757830721453077 1.1073056652952968 1.7685078329643107 +2.4015940267260434 2.67725141848395 4.1522759401564695 4.630698200646826 0.5521547400534335 +4.502833778239022 3.7836709217065017 2.7699646051655016 4.61671244882467 1.981835717781825 +1.2313599277831586 4.958828209730694 4.209210337624423 3.6322450134245843 3.7718574705645938 +4.085769719461261 3.5165086165331925 4.140843438738028 3.480371317851369 0.8719412972072164 +1.2343892116982853 2.4405344815936423 1.3357490427222438 4.392511961520389 3.286120197714974 +1.283295764590989 3.418058225791646 3.5449746142380536 1.65993899901994 2.8479062548462193 +1.2991730032731739 1.0755007822987341 4.779675327649725 4.667116145110569 0.25039734824778337 +3.4770735177552043 1.4555733802159523 3.4338755416234243 1.1841020401927818 3.0245567631986523 +2.9805508960114886 2.110263810644566 1.8338756321805945 1.216162217198796 1.0672251280797922 +4.145897670183759 4.2332266304212816 3.4594056466720353 1.3349246846413063 2.1262750775304635 +3.479030349114655 1.851318034834382 3.7413071765159076 1.6794734137036853 2.6269004251269306 +2.32305994823708 1.8548392629200579 3.4444852921068136 1.5442672986103334 1.9570536612383758 +1.323162574776119 1.027258401925875 2.1654236084169525 1.479599402028061 0.7469364909944753 +4.775914961170022 2.0829370306133304 1.6888890168920883 4.343019954360212 3.781076720682989 +3.787932206351007 1.2246438792729948 3.059920644302095 2.6756147049195036 2.5919371332613625 +2.5670460622545614 4.231603672504995 4.337323593028464 3.6217626028948624 1.8118442450838907 +1.6445862322989173 1.3260080071715592 1.1655922671461187 2.267851777713327 1.1473744437458762 +4.792885755298404 1.3665719588176395 2.9254364076832777 4.472425068084743 3.759361667539471 +3.743766243781899 4.535945753708649 3.143161273048374 2.9015340746533838 0.828210165931328 +4.378848243120791 3.6470465965194276 4.022193553525925 3.7824010828853996 0.7700870593279396 +4.496073908535456 4.341025166718861 4.6381184794333095 3.9257505581213636 0.7290460668937263 +2.9163395350460055 3.2878771974889047 2.1562143492017287 2.867998554790525 0.8029177977471964 +4.071026167607782 4.979587293729223 2.971729496791778 3.0967206994319616 0.9171183787475314 +2.4922653296269557 1.2665060641107884 1.5078268217410646 4.195827188368248 2.954290396692005 +3.9721080824223565 3.2375445753732417 3.1619225741944095 3.948261559944318 1.0760634490579493 +1.563229186882786 4.6820944015317965 1.3752554116862603 3.3061564960752787 3.6682010883868275 +4.593470061742856 1.3868199015905809 1.637798088877675 1.65342828377086 3.2066882531042853 +1.283678080939851 4.637190441400204 4.55132561018023 2.821223195872387 3.773499637704262 +4.151139778537413 1.8979996840442315 3.657704122457846 2.6211297141682843 2.4801465257789905 +3.860919927896943 1.117986322769145 3.976747929352536 3.7233025320665027 2.754617819506883 +4.695671332867757 3.3780836973269186 4.277278816585212 2.7838280271096036 1.991590429258841 +1.6543098989619445 4.816064949743264 1.7011856969017063 2.132468644134675 3.19103431221213 +1.6763857509959 2.5703989471657516 2.686746496072174 2.6320949267076106 0.8956820802940312 +1.2398034870751005 4.947230720929987 3.3382279860378294 3.6745980406171155 3.7226551690892036 +2.8838843008010886 1.7027587280414727 1.7331710858123035 4.105792148561307 2.6503562639816827 +4.577604617569227 1.5289310511658831 2.38125537684747 1.4398745220503018 3.1907065719468988 +2.653666479418461 1.5343932328862881 3.647273883306199 3.536356333256935 1.1247556638273046 +3.0171691333114556 4.85988710030188 4.835682298087798 2.158199479469398 3.250311331221373 +4.9506811419157195 3.50334537153759 2.334130149704566 1.7349209699084476 1.566471344572888 +1.2203618516223655 3.409042265244508 3.878691593684481 3.39255873931823 2.242018533613732 +1.2557113890023373 3.6777300113210254 1.5952442083289524 2.354939436733838 2.5383677918929846 +1.0701571745273624 3.495036457683284 2.6005600466260446 2.9138877816276816 2.445038610615389 +4.1729873288330435 2.8121654447566193 3.7185742590959148 1.182774070780118 2.8778670565618105 +4.032088245156456 1.4031222756540376 1.3680522856262889 1.6781072595131694 2.647186460307204 +2.8316181296992955 1.493823880363823 1.5167258098875265 4.590305660912877 3.3521018114287755 +1.0009614107806288 2.265873589954637 1.067995152584757 2.487506008029242 1.9013189868476756 +2.8050556347596154 1.1791598822799094 4.5068121994477135 3.3392684275353965 2.0016731644458816 +1.0088401661811508 3.641334106625046 1.352224073109563 3.501050993468018 3.398158542524323 +3.414021226192417 1.2887043686239625 4.014717833976336 4.326855704342411 2.148115870985855 +4.706815651901778 1.9279905466337057 1.664000905106417 4.302320332291441 3.831787881071971 +2.95160442438992 1.7792888309461103 1.2087931605764841 1.8915655247839447 1.3566510059543528 +4.665584880625641 4.224273012928078 3.0062166352528967 1.0881750832392192 1.9681563860175715 +3.5709318649415995 3.358416626906759 3.6439387623507504 4.400451197778492 0.7857950059359103 +1.6730611636761643 3.2374296482776255 4.629114929256216 3.50544511505959 1.9261055544676031 +3.400193048721421 3.1252962444998618 1.681412429595047 3.6503732038894836 1.9880580433381148 +3.8478198801228967 2.9582583921480237 1.6412548750081544 2.2850448292091947 1.0980824859810159 +1.7962823691071348 1.794129559513709 2.264761992432455 1.5891124091559 0.6756530129962627 +1.0059839804072421 4.735414859246309 1.9870945558146165 3.166152728575547 3.911372247024397 +1.4856583774611165 4.0020316290826266 3.03855476362006 1.274933582425775 3.0728641382647126 +4.440678932148055 2.1898107912116624 4.416862686154918 2.906166128157085 2.7108322482641656 +1.8954971919742754 2.721012435153467 3.9569823882994672 4.804227296709286 1.1829198415562914 +2.276401663209703 2.402987468898367 2.0503232092639485 3.7238793034554463 1.6783366666456851 +1.6203069151683898 1.4483894522001282 4.177466272672959 1.5353433363832303 2.6477101851489904 +2.5169576852280926 3.5067718851222356 3.6836372555871257 1.8016837100392054 2.126377505974062 +1.0571723411941192 4.695491482544471 4.220786973671083 2.150285545741403 4.186208587418358 +4.22842499005996 1.446399408618888 3.237097807289789 4.555940592810641 3.0788005178499196 +1.7107760989970413 2.709951167276921 4.633529851410775 3.5895356923194974 1.4450863715670443 +1.5809328595231094 2.566765734381909 2.2053270178628135 3.0746336116953583 1.3143669241247309 +3.664200898958004 2.8878449608206616 3.9008820246170366 4.005759109020735 0.78340777728724 +1.0196708728714277 3.5705970397579843 2.617887818319377 4.4164799270994255 3.121243002823139 +3.298957443082605 3.6230596814604152 4.574460682797156 1.1770926007494587 3.412792426421208 +2.161411754927235 2.102075681935578 3.655081741843228 3.3062044409770652 0.35388718628643573 +1.6687226507058197 1.960851279060634 1.2978250582375654 1.5733847701664456 0.40158721386865975 +2.500704727618684 4.109629738445086 1.1355156156239232 3.783568033843745 3.0985192108655037 +4.77515542435588 3.521442706824088 4.696945275491913 2.5351030383488915 2.4990713147880546 +4.360999712202747 3.2202959983294632 4.0208454373136036 3.257700716831531 1.3724411926359408 +3.2987685961112243 1.9054468028510603 3.753355218313036 3.8748583165261 1.3986095318026017 +1.2292415244059676 3.595288832821614 2.5809984584261834 1.2534529873709084 2.713034618905608 +1.6134769540465221 4.909015799784207 1.2003393518117593 1.569484251138907 3.3161490075787188 +1.5827307758307594 1.7855367173428776 3.4902110078179494 1.8061399094317343 1.696238696154633 +3.0804715468212147 4.537788365119541 4.359023377082131 1.1591604718161053 3.51609085795471 +3.7121872160201175 2.3292772324119944 4.809463639354565 3.71093953569961 1.7661243526643138 +2.872298021347516 4.32325616440175 4.9298558411666615 1.2555852832271368 3.950385255368977 +3.0506053270398237 1.9767533697998667 2.2173833612297447 4.641787969291174 2.6515836267516777 +3.769143798690361 4.85237983807472 3.551128563658151 2.2717531798740596 1.6763656193246756 +4.908677639997066 3.414740324156278 3.501838198485219 3.739228392488337 1.5126806694971733 +1.3895038404235622 1.631353141341735 1.3327797533917285 2.4400800159034866 1.1334041449161978 +2.0150790831835366 1.8166668329797129 3.654145426314988 1.7108964651667007 1.9533519769961691 +4.726519116761867 4.077371574996978 1.755396396006582 1.9367867903439353 0.6740140993608805 +1.8495919778664254 4.698877133050089 3.120788131467249 4.687121189152883 3.2514343209034404 +2.8393749561193853 4.590164395148049 1.1844501331395305 3.304355686845359 2.749411430915191 +2.59685834207318 2.270891856048648 1.1933030039972246 2.160130540939979 1.0202987975107953 +4.6124807952508196 1.5218345456347935 3.2685084604425647 4.468881582373981 3.315567805387334 +3.5471219928485302 3.6885259679002007 3.6699799749558792 2.5424200164344923 1.1363918972877118 +2.554396306441259 2.330965984481202 2.8939187883900335 1.7294080190200067 1.1857514245194676 +1.7443685057730334 1.6458346166892328 3.584554516511437 3.5180779190920597 0.1188615383647573 +2.1187304271627374 2.3615529114230895 2.0593923046684903 3.596121505393061 1.5557954220339982 +2.779856068877176 3.6823872925663363 4.213649232495316 2.224756542287936 2.184091743241158 +2.1067672940744884 2.85173266349668 4.968219674152584 2.5933825767405336 2.488940465515966 +1.8594128277520876 1.7057800664476712 3.583941633107369 2.5340102851366937 1.0611120868209631 +4.035295003829479 1.5349248282630756 3.678703124934184 2.0313707485331602 2.9942536587939586 +1.144160449907491 2.71388217795898 1.512615306193457 4.94241533525528 3.7719430725912915 +2.9690422808536088 1.145180745314771 1.958839202578158 3.529137582198823 2.406721400963845 +2.5108979786080203 2.6658950826686976 2.2501617598842714 4.752284035973522 2.506918424434519 +3.2939537986645395 3.1471056295392033 1.626233820893484 3.7069950764875643 2.0859366691146013 +1.3313683687681621 4.531682794653472 2.7635478952620205 4.917957838666537 3.8579132479580034 +4.604349577170309 2.2451684367588465 4.5748865539193035 3.716038668632153 2.5106483910208013 +1.7024249765829889 2.623440118559233 3.9627190623994912 2.616226271484295 1.631352729404685 +2.356250836333153 2.0425695235950156 3.896529999439006 3.028819425162351 0.9226687415712334 +3.8726484238160284 3.04799401388577 2.0361920019227613 3.5495364520277515 1.723446059637782 +1.6058876424848192 3.0824063078702637 2.427333774441861 4.541777303435609 2.578949167109571 +2.1317490504694705 1.1223653741643522 3.6514291016619462 4.958186289180446 1.6512025172953486 +3.9351207358782614 1.5090492651803515 2.975291351567223 1.4542494263233507 2.863457930419776 +1.5913826449732054 2.232681077128696 4.567477837446038 1.425222539773861 3.207028536641661 +1.0047248233043784 3.523475047707094 2.0035575209514174 2.558101746934925 2.579073863133892 +3.1743541108044937 1.8154184764941692 1.4467541163290591 3.3850936376861096 2.3672486473231076 +3.9575792819980142 3.678862315376205 3.8683271773189785 2.6108135888228885 1.2880308896665391 +2.2354700183588636 1.7240981638399613 1.8397765988106936 1.7039325160282415 0.5291075395617673 +4.785285098865217 3.357564482481307 1.7798698459741167 1.3984322977553019 1.4777959133922498 +3.9947779013194213 1.0268157339036654 2.7986892378362453 2.511382336916491 2.9818357906711337 +4.836219687935229 1.171554369481718 4.746263879839547 1.8767954494632817 4.654419509369777 +4.494753516664039 1.099361215010215 2.576249891316587 1.1388051840070101 3.687131156970466 +4.509256243514546 2.7374152249204147 2.92299155720851 1.339724395444243 2.3761640306792304 +3.601066750272579 2.32934991745954 2.6835655733058017 1.1121003636737057 2.0215752788219574 +3.838226253931569 3.8557806977798488 2.301420596691331 4.456431095543643 2.1550819958095593 +4.513242987867761 1.0031298722315007 4.969572890177179 3.6154712920982526 3.7622447052898615 +4.442781033039904 2.0479394896411542 3.88846528080608 2.9178837828669986 2.584046141641085 +1.768235414514515 2.0180639838614702 4.452189241891611 3.7621289381885137 0.7338920471082636 +3.2829683921660857 4.736335729443642 2.500383501701006 2.2401746461911003 1.476477316300873 +3.824037670939405 4.184847823716799 2.4264811047320145 3.87370471580485 1.4915227610713637 +1.764321098837764 4.26465199943846 4.30124106107454 2.072253469130114 3.349632860111821 +3.3587061497515447 2.247457543465571 4.948965456620922 1.20776462677116 3.9027499425714 +4.550757951410461 3.880684222769159 1.6087687313102736 3.6058320416727785 2.1064806354228143 +1.4899672886537183 3.9632822921766935 3.901738536778578 1.2430944167513922 3.6312085679022874 +1.0592360361796938 1.8522051005275322 3.6675822439165717 2.13843990288305 1.7225203151644295 +3.002178589949285 4.437850403706722 4.0272746842313145 3.4876184453198924 1.5337478322767375 +1.849857675977053 2.0548502005950486 1.5554876497763543 4.565769209244811 3.0172532214623793 +2.4361067997813524 1.6321046989377876 1.3988255077606229 3.0656054849869774 1.8505606908835908 +2.697020257964951 1.3190489169999746 4.975213579602604 1.5912065727200795 3.6538073894433514 +1.7619618186240107 4.551476190097478 2.4800782725910007 4.816336306110188 3.638611277374921 +2.819862619166119 2.0545851003553364 2.48118668281334 1.1586744632030364 1.5279686684666542 +2.6697783185285395 4.367527554851568 2.337075834082804 4.227204778539546 2.5406573747966457 +3.731798479560077 3.4629803576879663 1.536436255019272 1.8772625261351594 0.43408032635632 +1.6978735719231564 4.58231973856552 3.700700473255843 4.316951397780253 2.9495414711841255 +3.1805447688100914 3.616381535665063 1.1939255534936501 2.977564142875943 1.8361155478009141 +4.8758526645799325 4.529697291264827 3.1927694294955593 2.1359382308342805 1.112077211770278 +3.7482473335514 3.09626131666567 4.359942356843473 3.236535919509179 1.2988948339487116 +1.5345212869764393 2.2539588541047535 4.023355860267141 4.475484801613195 0.8497122998981547 +3.8424367115423 3.831736452683224 2.0576445631420386 4.354493649758906 2.2968740109619397 +3.7817330025758795 2.317504417334234 3.369611467587186 4.833931664552299 2.070796703947227 +1.5934816703063541 4.512253062155674 1.0763313101987473 3.3573778247366635 3.7043757421951127 +3.100877979316232 4.342108515109308 2.4193684053341 1.4243484772755823 1.5908230260524718 +2.1143264360156766 2.365461334716217 3.50897586483221 1.4313979766969118 2.0927012731429335 +2.540212724490587 2.0547386418467313 4.4898232940195975 1.8520188552262442 2.68210688493893 +3.0224949792535862 3.777148106658502 1.118314936896172 3.089436967046202 2.1106452568929712 +1.7806076915224605 1.0604382286914058 4.2719111527438445 4.748960826212064 0.8638405212482829 +2.978082458171382 2.3103397458624233 2.13885638914995 2.093909848770561 0.6692537047591149 +4.681589762262947 4.2908611759297415 4.9377705928634015 4.467362890119576 0.6115163407290671 +2.8635238950897524 4.341866242045569 1.9223905228117588 4.399565383206372 2.884768861412281 +2.5462450576536577 3.7519360867823326 4.38622122449277 3.7292480095610574 1.3730639689610509 +3.4850381517346483 2.164154673961967 4.0768771758185185 4.104501616045306 1.3211723095609809 +2.0457755139570932 2.4749638918358072 3.054515395242051 3.1693292177427086 0.444280179102528 +1.38669161119304 1.3493097478117195 4.067040882809279 3.371959173514974 0.696086191721508 +2.7118532726483764 4.4743580739045115 3.5656748113892296 3.528836645815657 1.7628897370209387 +1.1577695514992343 4.877749344671763 1.9510860888008539 3.0124627925144063 3.868432520905305 +3.995777681653704 3.7721597925303136 2.7445362139119966 3.661691342762278 0.9440225054056587 +4.203431514171245 2.5725180930206895 1.7114861054904127 3.8022291785387137 2.6516193514131063 +3.4648858502403272 4.189613324925524 1.7469655313678296 1.0547142065097237 1.002218443918982 +4.365530983733744 2.9862500001311245 3.188944405744559 4.364993699633514 1.812597024543657 +3.066067267745958 2.422783919234349 1.382405064797883 1.7464828749516483 0.739165825994864 +4.808575844882508 2.1466176703331445 1.308873318653938 2.594632697042959 2.956213541367657 +1.6791322008025236 3.9672668874875536 4.744549299118942 3.2724845049236126 2.720760022993674 +3.724905343310954 2.45222876183605 3.4769951534401784 4.047270152503064 1.3946036195244946 +4.516588934581338 2.802900364481931 3.7642144595625466 2.717014013030083 2.008322008669711 +1.7487703906268375 1.033046441825591 3.7493683514670417 3.5817055811183596 0.7350997044269875 +2.819534645894914 3.2226000239220034 2.0617983581157833 4.740958729746282 2.7093102435637366 +1.3068815298216188 1.594300873991311 1.2410958793619322 3.721905237281705 2.497403641733801 +3.690912832541442 3.4304680139279307 1.514920209897467 1.145664738160924 0.45186403591124813 +1.4380228996037623 1.2724217523108567 1.4780322529664032 1.2328232722944379 0.295890493573063 +1.6025317622390225 2.820837214884389 3.503011734411385 3.5465192156870904 1.2190820632231396 +2.4375171596907004 2.7386114834368294 3.7174379131261484 3.454931081510661 0.3994591699247127 +3.364277460973013 4.261283136588387 1.851241286451892 4.294384256348 2.6026076833512515 +1.9606274115557984 4.856417861275693 2.372450372003364 3.0451941072525486 2.972908754402996 +3.3466250120298757 1.4473442053325374 4.9540940001567755 3.006457877401594 2.7203959361368204 +3.5220295852316372 4.0074334456319 1.9250099239087421 3.471095213060822 1.62049271180834 +2.2795753354987145 4.732446059607997 4.056724402656711 3.6466110722436267 2.4869193257874103 +1.9863930965026584 3.0733030190991433 4.686446415927623 1.1871720416005926 3.664190814717559 +4.075052106195006 2.2610411838811157 4.855849588379881 2.5344886395079533 2.946074045441096 +2.4541722653072404 1.6183397180443073 2.713972117494059 3.0444025796162912 0.8987771344234095 +1.5720558895349641 2.373491722686162 4.699206691198199 4.172007336603653 0.9592906515460582 +2.557927990638811 1.6031993472562123 3.637285516258694 3.4884980212348444 0.966252814314478 +2.77452079445675 1.9969157396427057 2.0842418308493853 1.4925983227484312 0.9770934765672917 +4.906288424574997 4.665499905376165 1.299295728995494 1.087873238846071 0.3204349861031867 +3.8294309609491086 1.2406868777941016 3.9814860865671364 3.2498580445587235 2.690144144822564 +3.3520385947869062 3.62169116431787 2.2950684733804922 3.6699259831191378 1.4010516337164027 +3.9677501434367577 1.5685175529689244 1.1529482812271463 4.903329836516498 4.452154403591319 +1.585710455470315 1.3797770558425322 1.0045830887457208 3.656460888951936 2.659861731802766 +2.2156381017865354 3.988749768900628 4.333365100116577 4.486773510741978 1.7797356895074976 +4.9895090588776005 3.2041143780798675 2.2233576912436672 4.968386453760395 3.274571280834326 +4.108940055679845 1.3227150096556008 2.621065632570558 3.8183553503438703 3.0325818497409927 +3.817048033449285 4.220526545952927 4.0034146525689245 3.4532293042102165 0.6822747449530464 +2.3669763167182483 3.7339731918007883 3.6189298162267183 3.7762099041108104 1.3760150735112815 +2.144735661502227 3.6790571605126465 2.86984741721528 3.776046123494313 1.7819479671380345 +2.0510186976920317 2.1774068562706566 1.1665571246926483 2.357549641161345 1.197679899185644 +3.1727254523175157 2.4149611721357718 4.380591417442142 3.0288688413995843 1.5496324167048408 +2.457054268824831 1.4209336970952529 1.716591786975055 3.740135121631271 2.273383704171565 +4.568578245660458 1.4046765359213573 1.987055536608314 4.048869973260086 3.7764206333611283 +2.793556739775228 2.018534134301917 4.592370404239248 2.0481701950835136 2.659626805260979 +4.687674413173977 1.5662674740547464 2.630321886135808 2.540978674087306 3.1226853010063036 +4.15956098142313 3.086822104112845 3.9763828441348177 4.3356497369016544 1.131300755383496 +3.015656357273526 3.895481331421789 2.6232079941712803 3.1285326939364904 1.014615709186385 +2.2949747142215613 3.6924476961916 2.7217341138410243 4.7989642518216264 2.5035606206902887 +1.6728232162970826 2.5993483585679265 1.2969563026786641 1.390183706094959 0.9312036232789003 +4.002534397125201 2.908960599474118 3.662997189425086 4.957921573915298 1.6949138067926541 +4.319616557062531 1.7405535138824875 3.4198899202303887 3.2303082506045966 2.5860215370632957 +4.003171759117214 3.5933810635754786 2.5555548232239564 1.9401624636237633 0.7393484769760957 +1.72392783302579 3.6327485999786773 3.810599229719324 1.5466347946317107 2.961271970571461 +2.4778885425562804 3.723643822417198 2.5624919228533094 3.5033978519480646 1.5611566816649178 +2.7065972405770884 3.2670717872829482 2.0090284877343763 4.778727929441779 2.8258391169525976 +1.1327063076339292 2.5724540824570146 1.1580165838927678 1.027246592317753 1.4456743913497794 +2.8169299816053943 1.7539513508006395 2.0908478086038107 3.0953004936969624 1.4624803472656969 +2.0634840634056006 2.0033026460995065 4.339053147752645 3.4137228989252324 0.9272852163083217 +1.0311102114363768 4.495163198517578 4.4911364408912196 1.2508527866438066 4.743321753506625 +2.5973267466133607 1.782055570164827 3.507861955918108 3.5246613740944777 0.8154442418699397 +4.052737452047689 2.3183924963384346 4.553236265194213 2.554176356833181 2.6465435841131644 +4.898925624069583 3.766914106517487 1.2332253308446801 1.7053899647953283 1.2265355752787395 +2.9115427618170866 4.609148967753385 3.9391512549196013 3.418011777977657 1.775796493087189 +2.74389349851989 2.545221277485101 1.658586383561437 4.622600503878839 2.9706649687993836 +3.9160863731070426 1.7363856058454155 2.5032007014276867 3.2201964519984756 2.294597642537248 +1.1999580215087406 4.463643994383613 4.600646302682428 4.904265028221349 3.277778281098049 +4.5328295240644 1.995872919483161 3.3396245859753746 3.612467953882829 2.5515862354503036 +1.2990777065986343 4.796063097092583 1.9881129004015023 1.884846257000206 3.4985098000387946 +1.6939096178209918 4.490910512337725 2.191226639739072 1.9749741887069252 2.8053483075199086 +2.367539629326599 4.5419629270638495 3.4266293438796462 3.9914536522799158 2.2465847807510806 +2.8790245139699233 3.0501433252005477 3.2307882582034146 2.681825827789173 0.575014258573901 +4.890058513151564 1.5679823129142498 1.2537180109872317 4.979663055534839 4.99187908058399 +1.947263122134531 1.6879122184039974 4.008350233971476 2.0628082996244017 1.96275222826744 +4.994971761688392 3.4756440406016806 1.6933059749081467 1.3727651467556319 1.5527727285650144 +2.256143108298793 2.739486654396311 2.665980460385464 2.6286499886598245 0.4847829902888325 +3.0116740788167156 2.7273821559513873 3.999046367479829 2.7507322987088485 1.2802772792243196 +4.038417522220476 4.861669461751164 3.5457696416653857 1.5168538975251389 2.189575952727197 +4.99199307730466 4.007811683106658 4.094078048509495 3.817502235666475 1.0223048454034156 +1.208409469915273 4.80351674197984 3.5562767620184554 1.2311873831140492 4.281452664405577 +3.3916128008940656 4.818882633575586 2.359447974295344 3.9753877055369222 2.156005656367311 +3.873233901533844 1.9962081530566471 1.8787594580215727 2.2420272296442603 1.911854893642845 +3.896447465476651 4.009680852149216 3.648884324211172 3.380965999265724 0.29086427882934196 +3.2087536432355193 2.5432375119300463 2.9107995712231203 4.270865081215878 1.5141631063064718 +2.0490967238648676 3.0405507006109667 4.7193035756970705 2.787036576637916 2.171781928200602 +4.3240322918457315 3.6750769284680063 2.166882543323789 2.9991984102970957 1.0554111834125326 +1.0916110992469963 4.717457058418685 3.741448524281866 4.705549498334937 3.751832833137924 +3.820832925857191 3.578750160594184 2.6110788797587854 1.8301109392883892 0.8176276593168533 +4.908157148916262 1.635543868289429 4.473609052665025 4.159720260991377 3.287631952952377 +2.854160889162375 1.552404878372827 1.0275467243119252 3.5030325499321227 2.7968909139387663 +3.5852468981688457 1.6011907899905 2.456073477858356 4.562416535964385 2.8936412560701545 +1.5608041432328816 4.214893870887856 1.683171968081305 3.221727765029032 3.067791750227696 +4.320021864044276 3.08313648830852 3.008221371420752 4.010318103986247 1.591880427082205 +1.7736559498707773 2.5030995059407033 4.084038249097621 4.324816605866797 0.7681550094742621 +1.835107735875329 4.607066099626239 2.125412434613133 1.1744545305387493 2.9305416062035645 +4.81195510785032 3.4677489173499936 1.081826283886997 1.581688787309373 1.4341383492909896 +2.416830341888137 3.5940866923898795 3.9286727777851085 3.2099859803454684 1.3792908422848054 +4.25585158379699 3.005955505200217 1.5350514051223216 2.326290445430056 1.4792901764693416 +3.625434770922267 2.3427776834901533 2.850069291651588 2.2420815139171797 1.4194570588130724 +4.376614769720529 1.8831070554214162 2.2664067991396157 3.163449252700567 2.649955826945015 +2.545184963417614 2.950557660051331 3.4125274910090755 4.368837415462464 1.0386797845265576 +4.3813841068502 2.318008403041767 3.9435308504250557 3.3327329040561007 2.1518813690246685 +2.096516942112395 3.484911992407044 1.9889969951141473 3.105496984439795 1.7816321286525039 +4.809516202530773 4.850266369962666 4.900304687531332 3.1694706100128744 1.7313137150860025 +4.407498055834097 1.9544215203066808 1.5983786062869907 3.6833704894731447 3.2194371623169373 +3.2485765010064296 1.9674604163651215 4.237464308374095 3.1377726337002674 1.688366133773597 +3.56754866430114 1.6563067607819835 2.9286712375738366 2.739391627140417 1.9205916756805324 +3.602305907271025 1.4775380786491832 3.3813770091548547 3.8345478867920733 2.172556597625218 +2.3978423129435606 3.199795035710529 3.6567972383916025 4.647327045513805 1.2744714466597131 +4.940733199708605 3.8257289133289056 4.66403202614779 4.844499669636563 1.1295145545726684 +4.583012542266543 2.4002270373972654 3.311076853656296 3.1298023923643417 2.1902997490261726 +1.4332407553892872 3.555195075960874 3.6939225531674755 1.9397152177572567 2.7531679051956575 +4.114289736825123 3.4702388257387193 1.4663505820156302 4.969890229148208 3.562245308102896 +3.821290010997571 3.9069638166362504 3.1470823480706143 2.3157572847464185 0.8357280430161431 +2.645488686269499 1.2811925437581482 4.5777205974672 4.717053482840699 1.371392583259023 +4.642803958727764 2.17829195338343 1.4179270345061146 4.990804587626543 4.340423186058954 +4.249153381516434 1.3725840904212 3.005211025982708 2.7732878428853303 2.8859035412380223 +4.352478922811825 3.584137973062147 1.45156543541396 1.407146880199027 0.7696238192192462 +2.8314079482029673 2.203335844973569 1.84931116327741 2.2337190826421334 0.7363721989084838 +3.4995643069971547 3.023764147686859 2.9753071677286274 1.612113592148273 1.4438429679515892 +2.8273622065108164 1.6783366899336647 4.809898473715665 2.508066597467993 2.572681407453179 +2.807211569177898 1.1517541039798065 1.4124448423188265 4.328592365552769 3.3532753833145805 +3.3708318345309425 3.947020972168366 4.952139773477036 4.0874289505487 1.0390951494549272 +4.630537267944339 4.083631557118222 1.9631791472467293 1.4535383313501224 0.747555762309394 +3.1484927329719397 3.855400882519408 4.766702728390845 1.0057418928965043 3.826819245537855 +4.609960177367789 4.587827059796393 2.2321547307328453 3.433992583359384 1.2020416377561132 +2.395986325653857 3.8089925687723696 2.1051157245435044 3.1498685447125845 1.757297669247626 +1.41326674561695 2.0892102833795936 3.212754228188209 1.147547839136148 2.173011066613452 +2.0423376014951042 3.5416934434087897 4.410343248470692 2.651910331879274 2.3108773794454995 +1.8990767267837105 4.346787183481226 2.182118757048594 3.851054066038718 2.962538024299489 +4.055385944593597 1.8766986016010203 3.6830061343823424 1.4493889757295348 3.1202121963008054 +2.5650786399046837 3.1700245187372382 2.963117231979384 2.491552868253083 0.7670283341918229 +2.212165767107226 3.134212514323315 2.7773770409214995 1.7770202894155114 1.3604719160406742 +1.2069218073178858 1.260393601002039 2.00923309294595 1.812841553596861 0.20354082992781933 +1.7920559788161392 3.7340745415573946 4.594056578024311 1.6536429512785586 3.523842844734101 +3.8828948742247364 2.27766101303613 2.2908757378142157 4.496089047737064 2.72758895205406 +1.576777152073387 1.2853310406643619 2.2131337894311844 4.668269579151379 2.4723738758166096 +1.863965708999051 3.6483473672431592 3.4101783055525074 2.398066071780488 2.0514358571568794 +4.373363780438725 1.9751396588878807 3.4148574732487305 1.342162913447475 3.169785745980008 +3.9714289658659734 3.0656431121946603 2.4220549912962923 3.366453199946279 1.3085625660289892 +4.641250672344603 1.3883455220684402 3.8966887268569534 3.1332594811381456 3.3412895908484166 +4.412896022125916 2.568375820204944 4.12326317489451 4.218899311329572 1.846997846746663 +3.0209840268788337 4.570222736359054 4.315176572796533 3.3960263680152347 1.8013821576504638 +2.0005367453265377 4.735709945616451 4.450806635040191 2.5234293309853624 3.3460358198575557 +1.2361526466328736 1.2191618464776792 3.5881864370785816 1.269565899471413 2.3186827908758176 +3.7773487281695894 1.2717778491523886 2.1470007761075562 4.438530176238064 3.395437000069581 +3.50751162579683 2.366556976329067 2.784304115856465 1.761747963904265 1.5321222523145457 +2.5038185301760385 1.6402254352028498 1.299588980035999 1.7443322936368864 0.9713854274581579 +2.882970818161686 1.0251431243168363 4.137437552072964 2.4446686949513072 2.5133623184208504 +4.614346576107165 3.8965299830567965 4.783759480678976 3.5978859366754405 1.3862022664914173 +2.5436770047527006 3.472917594194696 2.2129371791164956 3.0294373888169943 1.2369966311625369 +4.214220482453757 1.9022099043847005 3.1142068424031555 1.4871268776506965 2.827150884689757 +4.717553078091296 3.2619321533600476 1.765314844818855 2.4146771001178213 1.5938957353360395 +3.3797360450835847 4.286700546955028 2.2608725754663257 2.6748844259082802 0.9969906819831797 +4.07168802609738 4.69835743881365 2.5752479563093678 2.4386600725204484 0.641381947697384 +4.467847305165525 4.735595678177679 2.676978257085679 1.3326085567463228 1.370773169580287 +2.5063320321529816 1.3614127717577227 4.178633270253517 3.1946791926948803 1.5096376186251768 +3.459428847087621 3.7727670173288854 2.7908059462871555 1.2592409053230065 1.5632889315905933 +3.1789701173399525 2.175164488980925 3.1958513389749714 3.8710637872312166 1.2097675767706184 +2.1085372211560993 2.4381462986595843 3.218058075033819 2.9080647832083013 0.45247981717367114 +3.880019280994138 2.4856893804263454 1.5028723223260232 3.6947954249413137 2.5978226959121042 +1.0530709191552003 2.7964620287023685 4.385355086094175 2.0913610485995897 2.881288115567205 +1.8638112014867794 2.8694070633011943 2.9434965763816616 4.005104640153183 1.4622703985115046 +4.909789187237367 4.23349448116201 4.060959164363819 2.1015928534861033 2.0727978361789416 +4.780835186718921 3.2320043044933895 4.553214549141561 1.8540383438849193 3.1119815694761375 +2.3238075201007122 4.891402189135333 1.9890465468964207 1.785695219946784 2.575634707528842 +3.9776363846794514 4.397392366061121 1.4578860043709447 1.7481949516369033 0.5103668962308955 +1.359701422097774 2.2080772928204344 1.260732412894869 3.414728933426701 2.3150470035158404 +3.686288376113426 1.1516977546762215 4.2991472984693 2.193946199461319 3.294847687760672 +2.4510051792013727 2.7407482286519644 4.664470624700845 4.922560217749483 0.38802225805350327 +2.733000997938997 3.803112248773618 2.855444297094704 1.5284019203211345 1.704752052034454 +4.090997660289228 3.8521009698382107 2.150579014327026 2.550578730572501 0.46590922045491867 +1.3518671462317653 2.34980969723359 4.883607882121215 1.399604988004326 3.624108925144895 +2.0983659406884128 3.1636701186544647 2.0523849714183093 1.265272182988876 1.324545028793315 +4.1602197404961965 4.989802510611908 2.0080330357847953 1.8725634776698992 0.8405709807319685 +1.7382345513710584 3.935675856075732 2.1374424016702935 1.11891978591819 2.4220108600955292 +2.581661573155704 2.2668385058480833 3.005073069633206 3.7125502257038625 0.7743626347331092 +1.0501348356499105 1.0031794893647623 4.002639323753178 2.017298667324341 1.9858958498909365 +1.3757320007780165 2.645528396181889 3.4732177377902245 4.622862436883144 1.712911503824152 +3.990539218452858 3.4234491541724963 1.575826121753352 4.845490518355184 3.3184780257538438 +2.3776531953065136 2.9668500976455845 4.183910558423966 1.8050475790889067 2.45074316569012 +1.4079627560143995 2.554636718129213 3.780001738679716 1.443466144524065 2.602740816552502 +2.243020668195434 2.6583857368500805 4.1030439109837715 4.733281615186538 0.754803089591751 +2.7356283041274154 3.8936310066991706 1.439900803532157 1.171669806859199 1.188662326625883 +3.355001312212747 3.2536522024873014 2.4868343928359398 1.5864951996457544 0.9060255541851424 +2.470962061555875 4.962913191215713 4.42258041393725 4.604906708584192 2.4986122769114507 +2.960814414182466 1.1471232824619682 4.356309179533535 3.946944602984492 1.859315701492019 +2.1354815818062134 1.881548016023431 2.5574665093391955 3.1072291357032866 0.6055750995358891 +2.096136737905065 2.9294409025533796 3.110967711595353 1.5322173579150316 1.7851746441359637 +3.031329534817161 2.3068043005200156 1.6672314256746623 4.787276807571182 3.203064157994206 +4.472518680446677 1.2325643408348568 1.4581642705206965 1.057068630937183 3.264687096011251 +3.709991132840667 1.629443047299441 2.2160706339594256 3.3252366129575206 2.357738218126869 +2.718279132272972 3.0146700657712753 1.1422067390082784 1.8240985529577425 0.7435213725181584 +4.773994475712218 2.841132550762941 1.4020617137354798 4.8074809376058205 3.9157164492879586 +4.675126949854641 4.44920495886565 4.603712525241329 3.825407586926065 0.8104315659069292 +4.927113068218725 4.284966227857533 4.328632388959565 2.790498847075097 1.6667955355279545 +1.2894311553025588 2.6226197888754594 1.8029920361183738 3.084384961658947 1.8491510923430263 +4.689248353955741 4.24333658625374 2.9898205046297557 1.4237741086694395 1.6282931612198766 +4.096227448084881 3.2574757397485827 3.1654409140831072 4.455955920104454 1.5391339801990391 +4.83285487787543 1.173283580627758 3.54489661261177 2.698300095624346 3.7562198740508057 +4.455159626981784 3.682078722662695 4.870847255802458 2.355143860315353 2.6318088187951965 +4.73339415459986 2.559986692305878 1.5583861393868856 3.6134397384729207 2.9911444786689314 +1.7813505978922723 4.037782212291814 2.6468335917504113 2.7818586497070625 2.2604679596795707 +1.7207429877660512 3.896526545084769 3.86687402954849 2.082043476397458 2.814188016419641 +4.246508713545104 3.5980999628588317 3.9703378815306847 4.534303014145104 0.8593547455919077 +4.770441117334496 3.8175689483412074 1.4893088107021546 1.1966517105530623 0.9968016596643736 +1.8059601297155763 3.0151885689628455 3.1470677163846803 2.482674615298584 1.3797288179403902 +2.61309258175991 1.907253296365723 3.5535176241684185 1.6584339702322732 2.0222638680997465 +3.220412114482142 1.5356147155729851 3.1520601607849406 2.5238593884992073 1.7981041364925037 +1.1517680013489002 1.4550771958785864 1.4246374361044474 4.546995869230938 3.1370557298846893 +3.698461160530455 3.9663675651966357 3.546843136145117 4.057669912989063 0.5768169879623292 +1.3962021554222264 4.748858800092917 3.0900407245222707 3.817176984808431 3.4306025298885143 +4.023387445259637 1.0455611149805328 1.8273166919950294 4.826240728658213 4.226227044419137 +1.5267097284150348 3.9789678346536186 3.919638362705422 2.3889737741710775 2.890761820386775 +3.749423512209956 1.7792228813140474 4.2461689544633385 1.795661442600764 3.144308762141139 +1.3677621602144483 2.679022877966527 1.995546771618736 3.617875824317952 2.0859904662178184 +4.8974137718815856 4.359465470971209 2.859087950876123 4.837136841367811 2.049894091807613 +1.7400751965528642 3.3163723751138208 4.7322442561227875 1.2112144142433698 3.857766704006948 +4.621607247570292 1.9853222678476583 1.0931316302211451 3.411630037739441 3.5107596556836587 +4.717290908654068 4.017172087965495 1.1866485125612676 4.882182961642863 3.7612685662461236 +4.927368280339229 4.149320213660214 3.8453992329648794 4.567630788015121 1.0615918298353857 +3.5289740287656484 1.536372046013709 3.067348057342627 1.9682937229586752 2.2756060932409 +3.299003157087714 4.192552768496297 3.732679260525687 3.4141688429266592 0.9486199418985122 +1.287992854769593 1.4094472454318727 3.5988416859656494 1.3567801427799182 2.245348777460537 +1.3811363564011225 3.0846157344351743 4.596143685036736 3.5828175399421416 1.9820877547978424 +2.831998586532893 4.331846440054724 2.707071014280409 1.6835648393080138 1.8157941716837473 +2.836405079313356 1.3906087311161373 4.190250357243105 4.922143230216067 1.6204919802236077 +3.1769595711919405 1.3823984480697118 3.148499525003778 1.2254802360391106 2.6302951945270117 +4.016161861035003 1.5601524207185267 3.161351861042313 3.5726383568116673 2.490208616266092 +3.4983795853945128 4.871273855184542 4.511744700187266 1.1197220284220788 3.6593245936636087 +4.375291330501003 3.759881787765618 1.4748126750509418 4.781661680794317 3.3636259084618376 +2.6198010846417534 4.235162117090782 2.177556855187154 4.590258993536104 2.9035362704034515 +2.2695218746057315 3.5020271061691157 3.4625956031557275 1.0949689186329312 2.6692180995743904 +3.733768278285153 4.597306270743948 4.25412065736375 1.777804664948877 2.6225633946025826 +3.4471139636075234 3.6116305981140604 3.6226020105892793 4.775084937957856 1.1641660624264054 +2.8873289844259324 3.323223385582723 4.800276886789625 1.3297352635213726 3.4978083263376902 +3.438485335968045 4.9783628607947445 4.833262560132688 3.763975085535525 1.8747262452947049 +1.348770956668906 4.684173968698378 2.7897404466359754 3.6341101529413216 3.4406210854410357 +3.4738805839963507 1.1023112135363151 2.336431905904751 3.4321210489887375 2.612446358717501 +1.7739732584565684 4.123784465840982 3.628005802010769 1.0241541930356868 3.507371652949188 +3.4064720105120805 2.265348659988051 1.963020899544203 4.213322947206782 2.5230976609765987 +4.189660317289478 1.661124939108293 2.9593609375660517 3.3903002971021325 2.564995105319158 +3.2980359610124643 1.297969994626639 1.5538195886877317 4.277003488302974 3.3787563423571316 +3.5627920743124775 2.3139063480599726 2.1748786507628446 1.836317793703425 1.2939625230933294 +2.138950321704481 1.109344968197163 4.181894391477019 2.7859114182477622 1.7346053284585874 +3.7144426866692966 4.508635311506469 4.651054279902703 4.399678334564431 0.8330256846223092 +4.8621139549036 2.6563909941028743 3.7724260262048377 3.345244244378968 2.246708270899327 +1.4761854493208424 2.6440386371829696 3.7510470740709114 4.116449048589695 1.223682831203396 +4.090723618212079 2.6917800891280677 4.903698196737451 2.070852666389401 3.159439316774252 +2.2555099970131574 1.3734204143330722 2.378839290541401 1.7839948283330949 1.0639182140054826 +1.6146434788172375 1.963350384512513 3.6350062826083933 1.7428912444357665 1.9239791640656025 +1.9132701519228634 1.6065078727344813 1.9183248743264438 1.4942361561119872 0.5234064738323664 +3.268991425642299 1.2434730504356803 1.4646104682003567 2.863004134147522 2.4613470972743388 +3.9483648524573174 2.357709873167269 2.9283956722478215 2.056936294053377 1.8137322600051178 +4.73015755838334 2.1429949786991602 3.348117036927942 2.4728069177857397 2.731222806435029 +1.2791223560251281 3.801259810013891 3.1594919311696934 2.5741790415009245 2.5891636710770767 +1.1816306467973061 2.77525194610517 4.77196459345169 2.9759569940623125 2.401098111838015 +3.2734353755335843 1.7365152433339541 2.924165534044591 2.8463086049816355 1.5388908974204907 +1.338205425482065 3.996154786829712 3.987629315013819 3.331139624799113 2.737822770167303 +4.044419023798996 1.4859731466822845 1.2286484487821183 2.187748586977424 2.7323100814552057 +4.30237556803017 4.676335327643788 1.2436964822270808 2.129100391749241 0.9611378594184082 +2.0914403483923416 3.2891382995949123 3.0976353262615257 3.879906908729078 1.4305345892536552 +4.107491299380064 4.840679713265043 2.3886927911597646 1.3318281442447946 1.2862846233061622 +1.6943030644946973 3.6750025842475664 4.181951067203659 3.369809093694744 2.1407347273037365 +1.1905965330470258 2.7230744260040955 2.002335268978996 4.874943034939484 3.2558199995482933 +1.8448167013262862 3.0618789241227033 4.131488880028487 4.555185915890498 1.2887046334813927 +3.0383248586560216 2.3698512430424783 4.880537336152817 4.982281189434002 0.6761721574066375 +4.739356959476116 3.9042175220002058 1.9168171248828063 4.151126960900379 2.385287891084104 +4.005288540059821 4.985628753685469 1.4318086844669922 3.3146084987075235 2.1227345747774873 +1.032643134344669 4.958945916479364 4.476803787112097 2.8411756293535113 4.253367255181639 +2.574881463673645 3.2626130613338558 1.474851700958447 2.757628154721106 1.4555034114519174 +4.367079220447342 4.954726256557493 1.3415495558558153 3.8727692483684852 2.5985384682188144 +1.7248899434184715 2.5155300677082537 4.009958057786278 2.6806013925746695 1.5467064845921774 +3.921122526674972 3.7608001911114877 3.103014787265414 4.119241305945122 1.028795212152744 +2.780258509561308 2.193075946291767 2.8597380580607625 2.897709284521738 0.5884090215545129 +4.031370179799161 4.440990731254785 4.920796908844514 2.6992983217379045 2.2589477569637304 +2.0683318243039777 4.8921789812363885 3.3369506579278516 2.7461374437353845 2.884990991282242 +2.70996680226334 4.826590349296922 2.160507289830102 4.668976962801496 3.28215102334951 +4.796083831336337 2.402642215063104 3.925240538730392 4.420006557529612 2.4440450453842 +3.4382684518567026 4.336127943908809 3.1244528795991036 4.93236620934667 2.0185891794386985 +4.928839086567084 1.9157651461382592 1.2572227123013544 1.6902760496136722 3.044035112059094 +2.9488505663380367 1.635275861346229 1.1019269145332378 4.677465442891037 3.8091933888115177 +2.201578406331603 1.8530226524712199 3.496789889083444 3.883033927819846 0.5202649046481872 +1.7500037282579322 2.9944692792481695 1.5479676214212246 2.814060096750777 1.7752984717189244 +2.5131231271387926 1.514820738386529 4.336604669668065 4.985126979977804 1.1904574105603092 +1.1516569838960833 2.6795376800032633 3.221442632904792 4.717921160158102 2.1386601890125507 +1.3771094434586701 3.3939499364172407 4.689286963108693 1.5676536504490937 3.716482222847772 +4.021853017403598 2.9335724172017446 3.182842600688695 3.8421254645918723 1.272402671881854 +1.3770229508989482 4.898998493747547 4.7916471045910995 2.1031686218305494 4.430827042064512 +2.882363636681617 4.206230111837375 1.9135487707509249 4.006927421978995 2.476864271908896 +3.347594313918117 4.973546996705321 2.5004601449066164 1.2380570452040214 2.05849063947389 +4.514260509091457 3.658380899899593 2.970144159402225 3.8746246025439994 1.2452368358896064 +1.4695786946623954 2.1062670587564845 2.2765815379141143 1.2616513520112784 1.1981049015965055 +3.752574890427082 1.1111965042546936 3.962263395517204 4.8625977508569385 2.790605979056102 +3.6293065883106252 4.037251913196305 1.1147141019087132 1.6856546474045624 0.7017068437653864 +1.8389196894703281 1.3636600915750683 3.610925486825495 2.027509056417836 1.6532027333259818 +4.417216355860674 1.2955352150361699 1.377462875522928 1.705843541772547 3.1389053835606324 +1.3837171328813591 3.622493098300914 1.3503839434214635 1.4446409421843955 2.2407592921052575 +3.779927994533576 1.822207797754567 2.2319915518412228 1.7919599922849079 2.006563266453865 +2.3787177323820856 3.4009372900550434 4.218008303879414 4.230387165610802 1.0222945076184564 +1.6584813590216458 2.0291618468364767 4.406261363185126 3.4664555459736213 1.0102667955105846 +2.6798861107602616 1.6316098430901107 4.945115621225522 4.7468952732701695 1.0668525857418178 +4.520679609030647 4.521258943924429 4.423355738019675 2.813426979032023 1.609928863224844 +4.546888151104993 4.579552433502893 4.513621866019022 4.60207369639169 0.09429041118186372 +2.1626761585294134 2.5418425550037047 1.7748957282574134 3.427871936002028 1.6959060998725923 +2.8555122037613763 2.723692263373879 3.877291466940133 4.514656708407127 0.6508540141337713 +3.7199385701159744 2.309183054441374 3.6776537830429747 4.598340710044887 1.684605456051515 +1.1297425451315357 1.603046151629874 4.94019006042233 1.332715630467474 3.63839086227723 +2.5686705105884027 4.530105560008981 3.2551100542028575 3.3153351788381022 1.9623594264896629 +1.4556158441306164 2.951330605120508 1.4732731137753392 2.4114882980641195 1.7656189787927288 +3.542062777152142 3.7285934924509165 2.1968279705129348 1.408871025220868 0.8097344350982473 +2.7041043794828408 4.320254078478067 4.291173117155763 4.087558827357953 1.6289256055978207 +4.484696263719046 2.701777533761703 4.19264448335863 1.3963769550232814 3.316309890172416 +4.636068338841918 1.0716962956292067 1.1671265504969677 1.843237939270785 3.6279298053388542 +4.747843962052361 2.8815479101571064 3.113676455488899 3.497659804321783 1.905388192862738 +4.213978146807847 4.111186510374561 1.9307102283942177 2.777949118780738 0.8534517314435628 +2.7090278806018926 2.823900066013556 4.691459555299215 4.338580605391439 0.37110533850817384 +4.193524271779743 2.4091205228288097 3.018476670478823 4.426866590120701 2.2732485356904997 +3.0160178002755793 1.3789660145919478 3.499081859224902 3.6866270418683347 1.6477596137005923 +4.421728102356418 1.0356355170520524 2.8873294137754324 2.5019632650018098 3.407951006818293 +1.5977483718621803 4.815233123489504 3.4881249226032205 3.646971365118426 3.2214034704231134 +4.398877209126242 1.1008704116593195 3.319664018935596 3.681322030709626 3.317777170579479 +3.720894516608492 2.4659733382998845 2.1402000352381947 4.708221915900516 2.858244836141213 +1.5096208567937928 1.76176647890596 2.3792965207919714 2.102996297069518 0.3740577874866524 +1.6179220189076484 1.0549745151644405 2.201305121602715 4.132547790946347 2.011618288807354 +2.8337898430270174 3.8522734719738776 4.411053317447805 3.55727388511753 1.3290027168907415 +3.713480425837036 2.6057220686218328 3.100905070264683 4.326811426715137 1.6522635905828567 +4.02797560314797 3.4463577926598292 3.530395254553518 1.2132072124562607 2.389066700599952 +2.6498993398824133 4.296546602241378 2.5327689961436683 1.2774078955036723 2.0705986331576516 +1.9202393007755427 3.2479878814873935 1.4992808204217254 3.35666621567114 2.283155010083231 +2.330692633171642 4.6419206897476375 2.097621072966511 4.201882135057636 3.125650291849189 +4.6242607391962025 3.4744773443943644 2.0337482107353577 1.6328119590579377 1.2176829361008468 +2.715258891213874 4.118311514506656 3.6021593057363597 2.883618771728889 1.5763429711647456 +1.0113316561482013 4.206104572285186 3.816860116743992 2.3029546874920768 3.535319452949173 +1.4669667879468138 1.682359417921142 4.896174851664389 4.124819388946358 0.8008640552005099 +2.31000499919043 1.0455096504236203 3.6339045506596745 3.7747182464598223 1.272311669355348 +3.796091803885027 2.472502240660843 4.411984703114237 1.763825499179017 2.9605128780775143 +2.519335594769258 2.1333382379707957 2.130330145887409 2.2372280507655278 0.40052605598478963 +3.622024839598281 3.58145814219701 2.994087989342618 4.244254711674646 1.2508247241578063 +4.541248948028517 4.676292694234197 3.5614954934453236 4.937240380429521 1.3823569754055665 +4.2140943402826085 4.6123982197113405 1.4077782700244836 3.9585096673760862 2.581642237375899 +4.700346620828638 2.4827963610810424 2.5638749177051054 2.219488958882605 2.244132536892757 +2.029198628738322 1.3765662872479885 1.2968339314373059 2.704129294400018 1.551260523501938 +2.722288958409275 2.359314977596402 3.994975870189065 4.180682095122052 0.4077216117965846 +1.9344227862166963 4.028324944919021 3.5647613115728514 1.8123730156528532 2.7304378751210674 +4.023437871205461 1.4232380826815425 3.760087891791622 1.562791711523818 3.404283984049996 +3.26045835879632 1.2252088768397296 4.744749015327551 3.1896560302278596 2.561357969146609 +2.8787703456278355 1.6334106914140532 2.2340046140030556 2.7909192394666893 1.364212068704412 +4.954570498451913 3.3687182550915558 3.2572396477409957 3.763229053465101 1.6646178589923009 +2.9070501361152643 1.576508977995032 4.641136767861428 2.974673978798067 2.1324722743296722 +1.6110865529491774 3.532533443086458 3.7903053955713366 3.162913864264999 2.0212813473569526 +2.7795471672226704 1.1294636675734129 3.0429526256153823 3.0941540775238994 1.6508776891375936 +4.9655072354414935 3.476276974829077 2.1984367043755966 4.162381571480253 2.464728425232779 +1.8814539603536202 2.6960750562117792 1.5113505383240864 2.5891904710483744 1.3510538295686985 +4.572041408126495 2.1038537613930908 1.116356504004397 4.810091434029566 4.4424799372394945 +2.9046800995100788 1.0287065943264868 1.3096063566847818 4.204673011790781 3.4497373131381255 +3.9797891125051184 2.366824915255174 4.272636694396679 2.9915401807435003 2.059820812329191 +4.699765150759995 3.599158636259703 2.8256540460775543 4.906492832487827 2.3539806190344597 +4.997580763063325 1.5379638686314978 2.5788847280465723 1.5240230289342578 3.6168608295719977 +3.9948718467984934 2.055794627103981 1.614950929446548 3.7581377876406723 2.8902024795979613 +1.060559569765013 4.222762073362552 4.5528978455618265 3.703102553831341 3.274397152393986 +4.304607902883863 3.33293905943653 3.7187615155520497 3.7587047285697452 0.9724894866230966 +1.1126181594490325 1.1141072947384298 4.2485871321155155 3.796890170102507 0.4516994166652104 +3.002107620961899 2.466292137980873 2.8263965556963475 4.405094860964911 1.66714923472976 +3.3370423627227606 3.3205474901146603 1.1171256457860115 3.7514719561565038 2.6343979509149684 +4.735015862476375 2.2414214602323983 3.7798368648218523 3.4592105029008957 2.514122969717505 +2.53514301932838 1.49816461295163 4.7138681636170725 4.0589191941048455 1.2264918947782704 +2.1354890982824823 4.980045532041827 4.249227160790868 3.9896511428040538 2.8563755029679783 +2.9107599242674405 3.420318251104712 4.799559589022419 3.373196686883681 1.5146487437841296 +1.349291276278091 1.5672008739577112 3.9826048770084843 4.446010050723373 0.5120829501034186 +3.2975002988653923 2.4620338226392247 4.8854289745735375 4.556846358805544 0.8977587472604801 +4.6736627397602355 4.485579434214046 2.754814724438488 4.428489586306657 1.6842098661017924 +3.5621041951443915 3.2676831967128743 4.624917233500316 1.7200287945132824 2.9197706360736517 +1.7649935228598577 3.8830787411904675 2.7837483771340374 1.8917051916010923 2.2982658760392347 +2.666307796369852 2.0098730818109454 1.0434070471470611 1.4924418032927744 0.7953230455009295 +4.8916282360592955 3.806260247104327 4.26392885987172 4.400828777687797 1.0939676681448134 +3.9887199537151385 2.7588785884056004 1.5049922376170173 2.4894187453368186 1.5753111860606568 +4.92782047669835 3.6114578010901948 3.2218234949205 3.455986938011142 1.3370277528212813 +3.949581418693455 4.401037275201429 3.049087335191423 3.1494727854442286 0.462482030999916 +1.9357287575721984 1.2337496870280957 3.401844615120275 1.1133553373830352 2.393733023918974 +2.698205060093727 4.595745934809113 4.13097349825065 3.423959752500471 2.024976495640216 +3.4596494183800828 3.9925763238092435 2.059777257178384 4.49330527220047 2.491198443807244 +1.0379224059647187 2.6358470959669935 1.2954842152562112 3.5591973596899504 2.770877210415675 +3.70801556269732 4.160400499658913 1.4586646484783623 4.013696899821728 2.5947720394274505 +3.2331887255955443 2.685374468777408 4.470155693298706 4.678153293414114 0.5859722362253834 +2.850849610636501 4.149969820967338 2.3789347681813404 4.624131251365675 2.5939584748012723 +4.460241818217487 3.6555872142689885 1.105041431821316 4.263167120547744 3.259022383698721 +1.831941477260103 4.049984554037572 3.666241282893071 4.3721251498547336 2.327657003099299 +4.78780118892629 2.7331058939554 4.005456067403505 1.0407667145320154 3.607097962934342 +2.9922935398789017 3.3703117657525477 4.863185573150476 3.930261873725235 1.006600421240691 +1.5232732824852073 4.755851016467223 4.830540948869059 4.525776658114969 3.2469123916661418 +3.8325943969158667 2.2873418419567204 1.059226799974513 2.946265382097624 2.438999809149023 +2.6755436113286923 2.6496152367962966 3.7211472962527394 4.011188593319144 0.29119793029802665 +4.2838126735622835 4.165747289304116 3.1437688964602097 4.988535704347648 1.8485410491637015 +3.7768451637636025 3.880085612237944 2.6419443105372378 2.8815345225201003 0.2608870634569223 +2.075649805824671 3.126769355062287 4.657903311172445 2.1930167816804627 2.6796488408111463 +1.42896701881758 4.34481035504181 2.209781620611443 4.627041974952931 3.7875176543581133 +1.5139138743975105 1.3277229342436265 3.200859447099111 2.2947950967589907 0.9249971206185732 +1.3086119324909302 2.2058567080762277 4.784186573508381 3.453400885150593 1.6050042790139294 +2.9436485746748797 4.905597823909483 1.3840002670741556 1.6474732639947915 1.979561283890591 +4.336822740429318 3.520606983207355 1.879788910110784 4.653968595969166 2.8917608980976857 +4.248506341293563 2.965744054683219 1.0753792518626533 3.7464852111640314 2.9631547596717143 +3.96953567218307 1.8721218769465224 3.8272906267628812 1.3317897876323186 3.2598572156691037 +3.3312281196048925 4.903206757304612 3.118765197201764 1.038880935139066 2.60711246035923 +1.1582854524724486 3.529527283419735 3.7685978692230813 4.56813170694516 2.502407276703142 +3.7448221199198453 3.972072077736896 1.6184817805335863 4.772689504763365 3.1623834225025043 +2.874262746088217 3.890680175601555 1.8127280824016894 2.326727929585572 1.1389908840388305 +3.7423874024228527 2.595258983631168 3.1483510645819104 3.669574584842285 1.2599910980924145 +4.92103846460652 4.06411084786325 3.8696620822845125 2.709549305710575 1.442285198810343 +4.159116694450693 2.7318468908097415 1.0719470714740367 4.67736623863739 3.877647026656007 +4.403978325015004 4.236511155319107 3.1368103317287876 4.72273152483497 1.5947386255024019 +3.384793401375569 3.923431132250343 1.4716183074437077 2.0523044860853954 0.7920397989920782 +3.338093771255295 1.3028573159171275 2.66558857625185 1.7584424926187934 2.2282507592702085 +1.1312377816651638 3.506737250233127 1.35541713612735 1.7720362364321085 2.411756455346481 +1.7523167224236715 3.3505544621598373 1.0720351429950807 3.404499745395652 2.827499777925477 +3.60043951453051 1.193623412442503 4.9600838265930145 1.9114760182362418 3.8841695790019255 +1.901043583518176 2.9187488868524154 1.6832748691170232 1.7096638941011038 1.0180473785999582 +1.053078438915319 2.252493269129403 4.643870361271074 1.8898778367632003 3.0038426656505717 +4.1513525520173005 2.467496373862906 3.2724427558168854 3.7189801875462702 1.7420583533981284 +3.5446528231845518 3.238693897774192 3.9980900382022497 2.79400624719984 1.2423480348891758 +2.352112356973001 4.5885146795505225 1.654723443627938 2.4272118046609226 2.3660586671427994 +1.449314538755936 2.1298430581633037 2.3693892378132007 4.105025140338439 1.8642829859925725 +1.9563855434902249 2.582606652709494 3.865244270025886 2.300365347981452 1.6855263030551504 +3.0161256975722237 1.0108872033282559 1.6769773598708295 2.581099185499577 2.199640355689101 +4.118969876600259 3.7644028847586775 1.3692139182404954 2.419422071370466 1.1084470743360963 +2.9834185385776117 3.713410798822151 4.6310916421367185 1.5374738319285597 3.1785782758418986 +4.64224674431715 2.2589792219469675 4.1883110515601345 2.386436602318961 2.9877609700263323 +4.738118722930403 2.0783399748439635 2.7361769852290965 3.045111572873081 2.6776600919861027 +3.220933328581182 1.7034524633528814 4.570979764777939 4.651136186194074 1.5195964030716422 +2.3969268163939006 2.710318317395844 1.2980969382753527 3.9287152996829255 2.6492201109524505 +3.78228539689765 2.6137566506961925 2.4971663462466855 1.1706211393024089 1.767818321198755 +2.3841152608466163 1.0158701791356202 4.226937362451102 3.419914560405702 1.588515157827441 +2.1578549673703606 1.7290445782287587 1.032391114777531 2.2912910187281788 1.329927561186218 +1.0399813274986758 1.8537619738435707 4.834581725304931 4.9898604083304905 0.8284626785605174 +3.325042773761808 1.3547849168639452 3.7016669267919724 1.5922742956673885 2.886425695373164 +3.5586779570140252 4.290759777708532 2.7069568795682297 1.0234683193712693 1.8357770900916643 +3.3841836623036032 2.560778441594052 4.817966799052714 1.473032469612928 3.444790534380361 +4.628637467137475 4.574419870892661 1.188433729644181 3.709266168870628 2.5214154228129337 +1.3338752817242585 4.966570567041074 1.734530779168133 3.880392375028354 4.219146480575282 +2.9390302691342374 4.425248773257074 2.7791967413387737 4.737050474808255 2.458055467978196 +1.097330381374901 3.497877783663317 3.581365380347291 2.481437195268909 2.6405434749239567 +4.613999550335406 2.7145936362578 2.233750086945473 4.327759229283079 2.827121701417621 +2.1535560169576806 4.289052631858421 1.3821973938140317 2.862952453770411 2.598649907132344 +2.980029424165921 4.62601130516015 3.053233179210235 2.9851023698928296 1.647391319553294 +3.206694405264719 1.9134873366722496 1.184201642166662 1.5610049596531552 1.346983764685512 +2.775574157692084 3.058563604942807 3.0485043547324886 1.6005755592390463 1.4753239725817378 +3.2783822354756986 3.274841626167212 4.6653292206498165 1.0381792976667463 3.627151651049397 +2.4175835710600664 4.028562744451483 1.0653490403832628 4.958876092709918 4.213645310690066 +4.285723595384267 1.3435091608405374 2.713790310039218 2.635105472387674 2.943266396796887 +4.648084299777824 3.3511497552447804 2.7807106815442384 4.431755767890386 2.099521157300133 +1.4092270155594204 4.007527429040322 4.847775810038444 2.1484834703768514 3.746644388469605 +3.0636873112004306 2.307711345742707 4.057431257610029 3.593017319025589 0.8872316308051965 +3.0644126821542863 3.4447686180686983 1.1235896952991578 1.9229738280119517 0.8852602044700271 +3.8086665755985836 4.053582858120528 3.592487341888247 3.463157932655044 0.27696584904456745 +3.616027707173365 1.0738611315547342 4.536351451113678 1.019946641751368 4.339091342838836 +1.5183821920103666 1.0037898135787096 4.903557006292181 4.47665918880435 0.6686157809353768 +1.0232073135830184 4.6225794339986495 2.42160223089457 1.4528328982485652 3.7274647793239715 +3.78034933819288 4.676320094664717 2.983531197879241 2.340061241232985 1.1030943665702637 +4.371507568911191 1.31874832548323 1.3537528913325385 4.767655387202185 4.579745544202195 +3.733109685069287 2.5512320955688965 1.8585150660418925 4.635490112438759 3.018016740323706 +2.318440757710491 3.986010455212115 3.398345616347747 1.5482036461056174 2.4907456727006645 +3.1030496773662946 1.2907548651576972 1.2473977701588126 4.7436816131189214 3.9380722691314465 +3.8487361469987076 1.8971272990339925 3.277106948460905 1.4388652237352413 2.68102773838253 +1.7127841775212684 2.3648230224948126 1.2864322579442562 1.2895870414102126 0.6520464768811733 +1.6668581936596572 3.441801304272303 2.427429132252811 4.352370785214948 2.618362735225946 +2.675510760216049 2.020422467211714 2.8084492315097447 1.3622824114586694 1.587620591655315 +3.985565552824956 3.0436881246853096 3.098982544223444 2.055859718629012 1.4054317197626736 +1.5031472740908183 4.211705336003966 4.544868881439923 3.052447155485293 3.092508590587277 +3.570417550072482 1.1590985144491142 1.203074661742796 2.4706532293081884 2.7241906901886916 +3.52891949295342 2.3393549449075883 3.410922477551146 3.3258755758219856 1.1926008508554793 +2.3977452819069556 3.783330222777546 3.0716856809600364 2.042386401696337 1.7260656518974382 +2.009220995931037 2.3010374282983164 1.1996060941108753 4.079201264112439 2.894343651554857 +4.047108947524377 3.400088401156096 1.2132363244888658 2.438981189988846 1.3860324897787473 +2.5186603634430065 1.5421729217685742 3.0291771302653308 3.248636106075735 1.0008446262090982 +1.5443462241622057 4.968499072744761 2.893456907939697 3.0414967860150344 3.4273515337584777 +2.1111615254814935 4.152533592296418 3.6214515320541665 3.1977766955683116 2.0848741646064766 +4.730349288197352 4.31897828999751 2.4745899812493164 3.0781614415711767 0.7304276869581253 +1.8463889821798456 2.0869682064924184 1.0770615315423222 2.1033795785387084 1.0541380823978022 +4.200152171506382 1.9078935151373315 4.738638973189909 2.921379731291051 2.92521467587691 +1.3727029779597073 3.3566210718365053 4.399884955166566 3.532145120682499 2.1653875919941408 +3.5433169276379135 2.553158832093618 4.403464672810388 2.1355500027074656 2.474641389179441 +4.414563024571329 2.449426392742367 1.4236879151994808 4.636566349080068 3.7662115995587735 +3.9358904397474754 1.0798855939559662 1.84723556544883 1.3433329483663754 2.9001175022207515 +4.6717794995545265 3.9970165864902234 2.357066520942854 3.9959807486762227 1.7723839411126159 +1.691060000600387 2.38933804159128 3.8894551394956567 4.75688795100649 1.113567198248794 +2.620520696619691 4.855547331205498 4.1366035529261875 2.484421553861332 2.7793973115303077 +1.8012084763683887 3.7543900755592032 3.092050848872273 4.566836161369116 2.4474292793406716 +1.7423426660676187 3.108254954446831 2.153156470627871 4.061150656004688 2.3465204433324423 +2.3758994094700134 3.4890945101075292 3.621278262165403 3.949815263309164 1.1606635572826023 +2.345568145526634 3.2473086199508385 3.098537984165711 2.8692322257814276 0.9304391511770025 +4.140300481489481 1.115334522634818 1.9205195762794727 1.7039950842663871 3.032705377690196 +1.1523673384043458 1.5183333110691057 2.4258291035164907 3.30427627717464 0.9516304587687672 +1.603899237488942 4.86146740227661 2.3011662032448843 2.870200963019658 3.3068944503975364 +2.6746188279422216 2.6943310835348075 4.51804156098758 3.9044835425404187 0.6138745922591639 +2.038197234073884 4.773286567602156 4.255968653648267 2.5967353278526573 3.199026241188229 +1.032182463448593 3.660464228901989 4.203473806563921 3.10245843791348 2.849578895314058 +1.2256918555060752 3.4513903984787864 4.876179708648678 3.867188392620693 2.44372614668885 +4.275725278867203 3.346770895093197 1.7216951800192608 4.746426564281014 3.1641675357147205 +1.1812683717556522 2.583095188882243 4.633777699150686 3.34827065705775 1.9020112461512413 +2.025241267195578 3.612359130662477 3.24635120464275 1.2034640656844178 2.5869539955432326 +3.8343236283338706 1.2374103241433883 3.0021852592061675 1.4937322774479456 3.003229779363677 +1.949011572846401 2.958143534354281 4.5077287841160585 4.675901174531198 1.023049005979031 +3.672941776820581 4.660605366166138 4.1533822660232484 4.030685898239993 0.9952556276586194 +2.3257853132980406 3.462343292612348 2.7031381604045523 3.4605139750658873 1.3657899417468786 +3.709010749397013 4.443321514810445 1.7793192792471286 2.506943444660612 1.0337549159717347 +1.540210155729251 1.09321130148557 4.063017276375943 3.6356196566322887 0.6184470074773624 +2.0567597523150316 3.0654008759524087 2.123430694300165 3.069934938108969 1.3831945632630818 +4.879909079877904 3.4147753580739213 3.988999786814623 3.1180473477156405 1.7044573840198107 +3.8401555585905167 2.6876716904141795 2.9686966550126437 3.1894407775738443 1.1734338643707225 +1.4509405833852722 1.4530451347632405 1.5302507719802847 3.070137725943984 1.5398883920999282 +2.443359542364746 1.5418757886945431 1.2960676896554642 3.1559596653406503 2.066850531448625 +4.977615913890001 2.182422338575265 4.6929484572244995 3.9298066756769106 2.8974976276477613 +4.90474595803019 1.3731900792354104 4.832265117643396 2.497174554868327 4.233737693978118 +2.206497369187282 3.475646844642968 2.3312956601363553 4.439276672684047 2.4605536653995244 +3.2296733328176774 1.999488349504798 4.1914913517700345 2.748987150493847 1.8958305472451809 +3.7781940136279606 2.8653328189704586 3.5174926765326906 3.681986677210832 0.9275633870364991 +1.4478684310995447 2.077509401928255 3.9895194929688924 1.9566402017439097 2.128155531167191 +2.709584762179619 4.334810994757367 4.74118314069378 2.984199244570448 2.393397735081986 +4.76398554651124 4.246960731554111 3.1418349825785548 2.0055006937738016 1.2484271204979718 +4.172786248737042 1.2721201196904466 4.620947362269259 3.527398250471811 3.0999538145125882 +2.311714977688307 3.6767999634868125 2.6586071622277303 1.6807851854102607 1.6791643269197123 +3.7940178649579144 3.5668761315501234 3.6820385150163184 3.2580525824380833 0.48099629736592747 +4.330365845852725 2.245665178549275 2.209959858035231 4.587769175701828 3.1622703906272056 +1.7076855706293608 3.36870410196462 1.3032314860192087 2.0028368302263786 1.8023402007063967 +3.259705798729401 2.972649316053617 3.9701439666711438 1.846280297154638 2.1431748204330674 +4.935363489468514 1.3569469468838555 1.0653410689630838 2.604497757874434 3.8953906434739114 +2.9537020224987627 2.0241030806405846 2.5715795513403075 1.294402647006954 1.5796629506531994 +2.951131793354887 4.8734771913196475 2.5233976157333666 1.9368107535806343 2.0098497396388826 +3.467996166290222 1.3148117053843476 4.302375547730929 3.922020598510205 2.186520800285975 +1.337823675862913 2.1541820996348795 4.501907645343021 4.572870972112597 0.8194369224105387 +4.277580596304341 4.824964918549407 3.1423261777422313 3.541606801605084 0.6775356911868173 +1.2174510583750515 2.088336604323382 2.8282385657489097 2.602651211769756 0.8996284168572254 +3.3707612730152015 2.2402551789330647 1.3056990238039647 2.2277538946399638 1.4588451643643474 +4.422424960164536 3.4373974485024807 1.512199153259584 1.475173078187868 0.9857231502639858 +4.710312626717841 3.1614796534856673 3.663280428495551 2.7408542113182683 1.8027073265250817 +3.2088082006727343 4.876449048246661 1.5741079760399357 3.182933186679145 2.3171846182135294 +3.2092397909427106 1.688759678555622 3.8672073794853064 2.597119026567982 1.981157287138226 +2.180465422856302 2.0315527503055137 2.4143536052485413 2.09297180801353 0.35420508697677394 +4.453669453553234 1.828628142953045 3.936849852517456 3.8008458169145367 2.6285621506933854 +4.780126947801545 3.6174173718640046 1.1674043873001314 2.9650325981959598 2.140878497856754 +4.102073402773416 2.970226066970168 2.8496783152625556 1.4207000560230556 1.8229254666453214 +1.5251017738128057 2.1146215132279798 2.5506054300299157 4.046003957458016 1.6074048273519228 +3.8623896540885823 2.9676116723165467 4.633182654453321 1.68492268387641 3.081049251597612 +3.9403693797698534 1.9251572111721869 2.57361250124965 1.761473535097057 2.1727056369438342 +3.9295098850950634 2.730287384731452 3.1603420430984714 4.149848221980072 1.5547530618793513 +2.597132546112086 3.6956532896841585 2.707673534749451 2.349467194343687 1.1554477947380526 +1.633804968694815 3.321739204763246 4.219156764810606 2.1963948598626724 2.634518496689767 +1.7186655654128176 3.809681285583043 4.874283049851945 1.5844317148753664 3.8981365481786527 +3.1580144374463526 4.778788024799864 1.703049389876079 1.4746549750762137 1.636786800464417 +2.2505151735178384 4.758996122964444 2.7024612790471076 3.0311978518837575 2.529929723936404 +4.9413804050825565 3.8708734239245715 3.8038648438334857 1.8144407995670502 2.259157636070003 +1.424741143950755 1.2495219267857225 1.1973650640888183 4.578674408410244 3.3858462245145327 +3.747271419688623 2.827403999538712 2.4127245448992993 3.669764226386481 1.5576600500387263 +4.266494310267932 3.9085508665452475 4.677709837355607 2.35846645951907 2.3467026557582207 +4.286899017486286 1.820430742201006 1.0985650936238196 2.1421404395313934 2.6781551963198207 +1.9051680416959953 4.500004610261568 3.0939556159256334 3.9418876974946016 2.7298654971479897 +2.0971640595956775 3.9857426410359786 2.7239781672428136 2.410054066983248 1.9144914204557923 +4.591274534136456 3.3831913287917716 3.802235325430069 2.477234792839929 1.7930676067566562 +3.68391108192025 3.4479803704011025 1.2596836813469952 3.4047025864944396 2.1579549124293287 +3.0215036551705907 1.140099188083782 1.9551621426499102 4.109894830993154 2.8605166888149944 +3.652716722625242 1.02850179515384 4.4187339372321945 3.4931844702180994 2.782650858705384 +4.979081226629052 1.5749058400700662 1.8789616517696888 2.7159183752789318 3.505553682299181 +4.884735461732691 3.3818624637734724 3.555835508848614 1.4882211088049373 2.556101828030899 +2.106445033078598 4.9948307431368 3.5847954329125082 4.742426361785235 3.1117328576777212 +2.237274206780623 3.423975279059876 4.16444182874876 2.3715025649156036 2.150090844300145 +3.6484089878997406 4.929311042339273 3.319999711083559 2.418966817201243 1.5660684368587967 +2.409094472559267 4.253895332232952 1.329687984183027 1.1512746273256167 1.853408087216061 +3.024752313819101 1.2501818701703886 1.3515045597747877 3.6544947156314445 2.90738093779337 +4.147650584717946 1.364913909136141 3.8938302250866084 2.576054460820306 3.0789862569546673 +2.5371700496984775 2.948728870697459 2.8160820278193652 1.8196443588471585 1.0780856604597044 +1.9066013818342928 1.4986932884167983 2.309910480787956 4.033035904102702 1.7707484963001148 +2.290931840230503 4.333338956905921 2.9145136327086543 3.7206406296208807 2.195738501141955 +4.3375737794996 4.184518508592812 2.5302835333247873 3.7340184618486294 1.2134264271477895 +3.0772010972022206 3.629086465613273 4.247779309706324 3.4633566795651305 0.959112257529759 +2.019838868924908 3.340441930301499 1.6561875640668098 1.9802889956596244 1.359791963381802 +2.947065320549791 2.714329265515023 3.2978934356787923 2.4298252502935007 0.8987260126374776 +4.225697074684049 2.003282766985101 1.9957687092105498 1.65934546757701 2.2477335145822366 +3.6978982389886546 3.848494974191037 3.214169014947413 2.047416178830588 1.1764317053022126 +4.845107927269773 2.8721901507257823 1.602069519255822 2.5804775513781286 2.202200451894588 +1.190519533227711 1.39609712657915 3.9846729443474627 4.807581963496137 0.8481989157529045 +1.1503811332684615 3.604656018378355 1.1362647314156682 4.529825735087298 4.188045068683238 +1.1900275576799286 4.8170240056590945 2.3961136358409383 1.8950770778034318 3.6614397258651628 +4.8619145867587985 1.702631809248318 1.343908500523058 1.516306869877337 3.1639830698077938 +2.1007555143139416 4.707259057518243 1.0942629435211173 1.8978909722811275 2.7275774469930782 +2.5397383242791647 1.2480246360614582 4.111113591993442 2.627536574815176 1.9671108301843472 +1.4382075041960483 4.5473742703205335 4.364415607154522 1.1766435592185744 4.452955042348253 +4.04831186687191 2.2235697048225123 4.704349775720042 1.939960462236317 3.3123303329323495 +2.3649165400215697 1.3627278850599711 1.5859785745383563 1.3628932381982501 1.0267176668508808 +2.2907573621904924 4.24308824548986 2.508087796087128 3.0278662272808696 2.020337965643054 +3.28566613575958 4.256278432121226 4.78887063680893 3.5718568220128217 1.5566665844852596 +3.2519526492758843 2.9920649033620617 3.1083339381685406 4.329736802119132 1.2487460096204006 +1.4930061585979022 4.413534023166651 4.287761752693292 1.1784331539899076 4.265841926564702 +1.643853898865605 2.4849808161233433 2.6643927468480904 2.940825392927645 0.8853866380028842 +3.479265805871822 1.033290538989477 4.850699248372116 3.504005909720563 2.792199483304985 +3.269245014779974 3.5738321154733343 2.8915611085204884 4.466107427548077 1.6037360794944149 +2.1450875227760604 1.7467434774408988 3.993699600380852 2.3438122805748063 1.6972937714228373 +3.4862779527395573 1.5313509199492796 1.7275863544342518 2.878578280932698 2.2685947452991257 +2.7240505611645833 4.1354852559854605 3.994772645019284 3.754799554122674 1.4316895550707125 +3.2594529143864257 3.4055153592383753 3.1608070657100087 2.4003569313359665 0.7743504663042617 +4.025614532285777 2.474934447958161 1.2597005927709892 1.096990154979966 1.5591931921658875 +1.6301881781939396 2.3988273415011103 4.421441964391287 3.322334575309517 1.3412096093093322 +4.754323086653368 3.6931653757859144 3.3711670833024874 4.203760217906078 1.3488020666956615 +4.235263237837392 2.3232523601004855 1.4537022208591899 2.7302869797997675 2.299011579645398 +3.462265981952296 4.429681814269156 3.3483987816836582 3.3167368346627324 0.9679338156643142 +2.95326854069944 2.7616468978031925 4.451020271738803 2.445134820793995 2.015017443184627 +3.6558884766934296 4.121780359806937 2.098116415810525 3.34394453443731 1.3300913306657571 +4.452698519574852 4.6118859089167605 3.2860172764698445 4.431495432010292 1.1564864157204091 +3.6359705486638547 4.108049569159691 3.4943217700315645 3.069623691500999 0.6350016216513645 +3.025737089713797 4.465964334191871 2.436166816455356 3.084873647983796 1.5795806623938438 +1.6740517783437339 1.3030617744279778 1.8958923440590785 3.304376305025224 1.4565234812059487 +4.3495339095609085 2.31700465408549 1.7989429666996757 3.2910709012503734 2.5214323206126292 +3.494499894317297 3.390218296016966 3.942882050709447 4.612498119702444 0.6776874881519548 +4.63767809112173 3.5004844959950367 3.971849400029908 2.975492845107014 1.511931102046317 +2.159138920147043 1.598106428003439 2.9359066644051928 4.23539289180623 1.4154228740718595 +1.4396936608846307 1.1217169811262768 4.8554640564566816 1.862979345476691 3.009331140688765 +3.1123414199757815 4.542409278960206 2.8018446927281113 4.960503756332466 2.5893827515802923 +2.338706763344227 1.7805469776464804 1.5675576960746809 1.8848723004494996 0.6420521042093876 +4.810938797173461 1.412166028782027 4.191443303917557 1.4255169015205853 4.382009264553856 +3.744374229035482 2.5966558779044444 4.028973007387812 3.6565987353174085 1.2066151051693783 +2.129806030382605 2.971033138737608 1.3135852437903712 4.159875384102639 2.968001113657161 +1.644240808399922 2.1062490517124983 1.5060038936521694 1.104874837636351 0.6118464974721308 +2.49651164741925 3.55711268704778 4.743478413559279 4.856545005758912 1.0666108097768168 +3.0853411628014293 2.7495270943785477 3.4935529758312294 2.734268164447206 0.8302316022347014 +1.1804194742087946 1.4711980504174074 3.1518848261475942 3.3940682339114274 0.37842434300400274 +1.2081012079900044 1.365426812914818 2.443400048157904 4.94620093945308 2.507740745657909 +2.6126379377632154 3.92707236314052 2.3344855299487417 2.8943477026619866 1.4286999373738913 +3.1113013342334543 2.2020995923855424 3.6939054039361796 2.467597886464895 1.5265902969644023 +1.0416433892009405 4.660333168639766 2.0276748940704716 2.2432341586799733 3.625104345584276 +2.0889934105074337 2.3536506805082555 2.4358967231032143 3.9695241132966093 1.556295743911064 +2.3571622875468226 3.051993762294141 2.691860178506806 2.0160700023596108 0.969269384885642 +2.2238524692577246 1.1331709025373882 4.182201241700535 4.545013065304447 1.1494427777537792 +1.932734520730948 1.5462040231871477 4.193192656413821 1.904872247851368 2.3207361154976 +3.3170628435375553 3.840418715479668 4.585009215661856 2.5484688352340497 2.1027120796270045 +2.816641112492066 1.169339395934918 1.3670978869462052 3.5013931592522174 2.6960747865665597 +2.9547036602207415 4.489243111725482 4.046427076294691 3.4984413579838516 1.629447659698561 +4.366263326564852 4.390880558589313 1.7244278624977176 2.7082649583943064 0.9841450296449095 +2.404813990706459 4.858820780879929 4.438285837237633 2.8295825380010915 2.9342930377165866 +2.2804904930290313 4.449637266220304 2.9387795091519293 4.860556566768438 2.8980035857167734 +1.662719416769857 3.2521620778220597 1.416914314709747 4.631148106544847 3.5857533157409693 +2.736665441233476 1.1350825665988067 2.994724236672507 3.6278670393497228 1.7221897435837348 +3.7097688167147735 4.406395726811201 2.8574683961421026 1.5684190229448056 1.4652430987419256 +3.1179974285053675 3.3581422498739544 2.9604718956580367 1.1822471230172793 1.794366985112974 +1.3045076667561974 1.6943468525667353 4.815421976529313 4.718517444076775 0.4017027249139196 +4.1902313701604585 1.5152337163360152 3.253135328629848 4.266900677334595 2.8606524832983005 +4.52060882633975 2.477715893100677 1.4789454793793073 4.230253121978308 3.4268214544825373 +2.1411201322451485 3.811234281527356 4.856363278289093 2.8847137093900024 2.5839278809929276 +2.6220522857374373 2.654453239736513 4.8655879771837345 4.847348693870156 0.03718189446280536 +3.2477306623731153 3.8636818735283263 1.9840212671918724 3.8352715196926876 1.9510313662029894 +1.168368793033066 2.7953315599791146 4.020982964065911 1.7018466647854518 2.832913874382524 +1.4044388988047873 2.2917466423453376 3.7570499293186748 3.4652314921321343 0.934062648878017 +3.435924847171161 4.382533951584933 4.705166270176484 4.30031763568023 1.0295490340010645 +1.0195585268390799 1.9498771652126838 1.5437122252514777 4.273855821415236 2.8842983244767337 +2.289044646681696 2.3383081790122175 1.435779548792664 4.5664213889349226 3.131029419674461 +2.6819542752087386 2.5931775668193775 4.010340180493699 1.4079145614146094 2.603939401520633 +2.9859798381932285 1.4305411488830093 4.903683321829304 2.302302974097484 3.030935372087042 +1.45878916263832 1.0436640495978144 4.714753098984545 1.2279832649076363 3.511394699447159 +4.1495834831501535 1.039263588001781 4.31162683942784 1.8238520129181444 3.9828524247793977 +1.7707257834591248 4.377412701932245 2.198361409124566 3.583837556578016 2.952009628388997 +3.8565664949328107 2.7977473902658963 1.3123943366735489 4.928128505772728 3.7675763400359887 +4.3128846841123085 3.5499132462130945 2.002564782084084 3.9164596098044533 2.0603686142592967 +3.517081230979362 2.764350047325944 2.2818799379554537 3.3541385651654796 1.3100926678943763 +3.1236653775401315 1.6886146926706949 3.5341292732661316 3.042388426193177 1.516963918102295 +1.6436332669458515 2.7302859676726725 2.520563707886188 2.4557750113026344 1.088582411763983 +2.529872745690348 3.3841607929113886 1.2190765370129308 1.188195051006673 0.8548460292957405 +1.5475015147261364 4.181192555919255 3.4691504971970866 2.3436795148742715 2.864090332463621 +2.864923676382039 1.082905177460622 2.392514571090652 4.89075212579758 3.0686773714820843 +1.3102700798096834 3.489962695751607 4.502734349532485 4.085888911921312 2.2191935514616556 +2.432957610448762 2.9643329951310244 3.6416532927099765 3.935591179753865 0.6072555317871122 +3.511609534132794 3.920175300208306 4.059810811511763 1.9016979757565267 2.1964464475739853 +4.004754615722174 4.308395413305092 3.063909947168578 4.141200646744418 1.1192644840918489 +4.132020174431627 2.3096642746256353 4.127112626577551 2.5072980797869464 2.4381919923484614 +4.913590429881765 3.740705501598026 4.573098387611633 2.414231389042735 2.456901661138483 +4.296343508472081 4.633953685380314 3.4755696747534013 4.590216386908122 1.1646535641422897 +1.74065131756331 1.281747744022454 1.148730157400383 3.2677957660761874 2.1681862336250375 +2.840395307405748 4.293056827840145 1.628885657527797 1.1075773301821714 1.543368998363861 +1.4178631131377397 3.329013344766889 4.828508631280296 1.3717905668134711 3.9498601222153957 +3.341065871891301 1.0097741197520773 2.4762748964822445 2.791397152271084 2.3524929903584875 +4.820455791808199 4.446750651914337 2.354866380834816 2.2395250126481723 0.3910999396551448 +2.4308737496920614 3.5814846865491368 3.1752959352935277 2.7223919394212 1.2365385386199002 +2.0095954544941312 4.978943612904934 3.596140797739285 2.70464103054697 3.100290360718102 +1.2589393623348464 4.5968838161803625 1.675442183380936 3.6391109087297657 3.872708101557764 +3.2676666538937873 2.8646166325370475 4.349167319201003 1.0976608531038128 3.276391859773111 +4.7066801751591765 2.9982075295460486 4.847800978884992 3.442304260776123 2.212306444736606 +3.669199394365689 3.3361226931617125 1.9052240054359406 3.850697552868884 1.9737799808099794 +1.370593450937632 1.522786863658645 2.6955560169763446 4.077670383652679 1.390468610738406 +2.9575361076687128 3.6903038939072 4.344563979620679 2.2967186567696736 2.1749986424987924 +3.210306603553486 2.526427481863771 2.653404763826557 4.839123682764407 2.2902091270637137 +4.001041582091116 3.001918044325919 2.0400908099349224 4.675690712960849 2.8186228361642702 +3.5318911742999517 3.4151577337973555 1.0441632987224012 4.822560501990606 3.7802000108190787 +3.7691303992063756 1.627508464247644 2.4801705403774763 2.0351002432648597 2.1873801868144214 +4.575566023874587 4.2354978948995505 3.560290728588741 2.3830225706896826 1.225400607127165 +1.1726138087688716 3.322833322916146 1.2861618139000939 4.348967665778847 3.742221752558562 +4.583752379652685 3.9348274027893337 1.0054146884812405 4.034500112943993 3.0978157037321954 +1.4347246173426598 4.552712801990152 4.984696161045516 3.2438320769265743 3.5710583975870023 +1.5336270992316705 2.363043079654784 3.0015652366500314 1.1262316708483802 2.0505625695412393 +4.347307915456772 4.7139066835267345 4.4215934205598595 4.204033847923753 0.4262942931778691 +4.425231864806735 1.6930399218769367 2.573395031304731 3.408719777342676 2.857033469239355 +2.4965217933758135 3.2222395464386393 3.2656977665232296 3.9090798263526874 0.9698488191573739 +1.8689395416471615 1.1429354098848155 4.076930988329642 4.462818328684901 0.8221867420376306 +2.617626266636035 4.799823896810723 4.925098859178222 2.471111616730975 3.283906192818831 +3.9264133343466363 4.659818011542452 2.3329066968622807 3.068736109798772 1.0389068030748283 +3.7841063686536525 4.933428008158479 2.206003565214512 2.7171897148767994 1.2578757930100324 +3.8893762765743567 3.243696702912831 1.8084863187893379 4.988934065052103 3.245327406988643 +3.0156259854473326 4.149325931855298 1.7970421726927386 2.951463978633488 1.618012754744821 +1.0090427435026554 3.098184547332807 4.042589876262067 2.4807612238776526 2.608413735571797 +4.442557565188087 1.6298892618345495 1.1796700389295856 1.1871526068964666 2.812678256308931 +3.8217005772209403 4.260369299678729 1.7156358903500748 3.285526371231035 1.630026493656898 +3.346358586710089 2.4274536605927275 1.6047766399974952 2.736190649233772 1.4575609501968896 +4.079245911009556 3.483769595886723 2.675259401811016 4.555826174413206 1.97259307209766 +2.7150998481392263 2.3048356858543015 1.3500602860884787 3.4277140883632766 2.117772887956184 +3.4886627704207873 4.531392280033906 3.844650087163408 1.7733125545277901 2.3189920233418277 +2.7031310579735823 3.8484883342796734 1.8296396924944944 2.7021252243477116 1.4398174515126905 +4.039844047687632 3.7613671884434314 3.4308039489476014 4.162037273269464 0.7824650380261832 +3.4753400324305526 3.367112210416668 3.1347189060876883 4.395169603567465 1.2650886222850657 +2.55560853741855 3.2080088633621293 3.323210340319367 4.299337610951974 1.1740743731825303 +3.9746771856109815 4.945389838156093 3.6831594529718643 2.7001283818421458 1.3815328952354364 +4.470096110819258 4.9867408763612735 1.3974714840136673 1.4507391332751456 0.519383534798523 +1.9375019072164248 4.563864085889801 4.914236641641839 3.2926628232557595 3.086629220045902 +4.321031922691359 4.274002621769666 3.532795474109423 4.740114474002217 1.2082346306273961 +4.61998887091368 1.7942228239227291 3.485028442615972 4.416070623113267 2.9751963454857937 +4.34101721025554 3.0915927702469808 2.0585287786895714 2.4755009236295433 1.3171663527992745 +3.762434939797694 4.188315595779824 3.8809622976659215 2.64117102760028 1.3108992053055586 +1.5862143531315547 2.6869207065565286 2.938443751497907 1.3386506960343287 1.9418785484112013 +4.360917384685689 1.9898254385531207 4.143963045177154 3.7162057432183575 2.4093678271268173 +2.7108865421354222 1.523230044618502 2.8769643975859185 3.0151642352799657 1.1956701682457496 +4.352407508874939 1.680442091419227 4.1175670553839385 4.212297034944596 2.673644135091063 +2.618149014006423 3.5451113561213234 3.164048697053591 2.9400574894992895 0.9536410460759205 +3.4217687301199398 4.129168284582375 2.6860689528159547 3.809721512694151 1.3277835685737625 +2.019604620506986 4.576120285074385 3.3570464486855816 4.148739505380005 2.676294124194247 +2.2346617520581393 2.442767672171266 2.4555040893258946 2.938704932914673 0.5261094270501511 +3.3229526774585385 2.017673454035879 3.152486284085692 2.2569352822248883 1.5829609748925433 +3.6544030242684653 3.882439384731507 3.195332175561147 3.6080986686888465 0.47156840388449417 +2.7477682247351147 3.846475029287044 2.1428964917480178 2.870077161405823 1.3175539338838034 +1.3795144618036734 1.5373656667526938 1.743175592041386 4.868787126550409 3.129594936658689 +4.680721466721106 2.462390086629754 2.3108034376374182 2.3469695133706776 2.218626173318062 +3.0242263628712482 3.536742633460364 2.0708680582070156 4.381621937606459 2.36690862070722 +2.773357501405984 3.1291194608646093 1.4856924476810174 1.9632594952001443 0.5955139433077755 +1.602076441968649 4.155774117662897 2.109467916514378 4.41045803185717 3.4374303381670788 +1.528340808321703 4.317422747218224 2.927717912795615 4.716058373891082 3.313176673023931 +2.8931362225510027 1.1121714133171312 4.194846347727043 2.101181066907226 2.748685132902596 +3.356351443676698 1.4826771672457504 1.8061477405344526 2.0125953138658743 1.8850134998703507 +1.8017866604907682 2.456840414656103 3.6237473926684873 4.707551441706586 1.2663832901446053 +1.6495183906022373 2.452430717220589 3.531708775281059 3.7279736985969842 0.8265519489783449 +4.714017595701976 4.418974479775865 3.8276690568497003 3.282485925300308 0.6198992556709443 +3.086648056566008 4.698458354983385 4.540136777014774 4.667548824981797 1.6168383555728338 +3.4326239705076227 2.222044054733523 1.2097484248645443 2.7250675507928466 1.9395091610713626 +4.376349504988417 3.5158583016270133 1.060689937628171 1.088589317538685 0.8609433700666654 +3.2887089321181295 4.810064997633491 2.0765172891253134 4.754231654080514 3.079720522769528 +1.3978568982134845 3.936280967121764 4.353447029900414 3.972232528988444 2.566889411197613 +2.6323041888641217 2.8195233855447697 2.455488306442677 3.8396976755755365 1.396813017264994 +3.0558461406786916 4.02135755413092 2.4995453748228567 3.2875881301500396 1.2462839458687487 +1.4538340628944306 1.387571876609635 2.848259345993139 2.248843983860451 0.6030667074975229 +4.223387034225115 1.0194458867742768 4.338838198510038 2.4681932769490764 3.7100608214543342 +4.010835906475146 4.9479819093937 4.022212402333013 1.819658041565643 2.393634964425775 +4.788876368288152 4.466384332682644 3.3304901729737475 3.270428532221731 0.32803736634537345 +1.2202350333872976 1.730188697480072 4.919170958124828 3.4347267637819514 1.5695946309923199 +4.874329619463938 1.078163102916374 4.0986855343467745 4.92391132493153 3.884826614767138 +3.9203475546144375 2.030655428751379 1.7724908507815411 2.5562928250556682 2.0457961446402386 +2.764296250370136 4.417386681056319 4.977954181118578 1.8260637748522548 3.55908992653177 +2.7720801129419184 2.6858792192894314 2.630916285153313 2.8553129381983715 0.24038396777720375 +3.8326112347431582 4.142937242835464 3.254545231546633 1.2058582465187855 2.0720570923410864 +3.354143274151739 4.509292701619062 3.1774828549719563 3.4655407583289772 1.1905240675704654 +2.7751633176084556 2.4254614927650278 3.5482741037240584 2.3518910258694277 1.2464444774139531 +2.354371087827148 1.280112894160208 2.5737689962777015 1.046456067226575 1.8672748726171218 +4.605131083052349 3.234468485614908 1.7710811766324013 1.7289167339363631 1.3713109772191792 +4.205602953271384 2.0793980590480543 4.773590080911351 4.2185850038755675 2.1974480398304617 +4.921165997608787 4.623044957966208 4.688811118401865 1.1161916411607815 3.585036413126082 +2.4447577374579503 2.931065811118886 3.4401211094621917 2.8495637558075835 0.7650186471343977 +2.616183879550787 3.211692829290845 2.5830857721284217 3.073948208360915 0.7717362506223261 +4.756508086326306 2.984830074295265 1.0569715771942985 1.1530221297783219 1.7742797656981715 +2.2182793770554614 2.732974876574264 2.1222272825876725 4.815358686328354 2.7418731216157983 +2.5229095992278303 3.67506526430856 1.1167971269162136 4.458242936619871 3.534504601180164 +2.1268104182382883 1.3385947046223068 1.5220657311141301 2.77929986311478 1.4838873521459028 +1.9007254970712153 2.457718889958678 4.467749572379285 3.5898954178439832 1.0396487658604596 +1.2601728989457852 4.192484321913259 1.3850051750936334 4.421443920949894 4.2211859161381025 +2.076147049707267 1.9395177403560329 3.4224424536532942 3.802557780969647 0.4039247828923266 +3.3388503686200974 3.3608479156521995 3.4485693457412747 4.722161349629854 1.2737819611080838 +1.2435761101907459 4.340531065498982 2.9684763586596126 4.286621057716518 3.365803833092484 +4.530341206451855 1.939490007677021 3.2004932570231355 1.7956993281917941 2.947194584121379 +3.2422304135774573 3.3906281010083266 1.453688905538503 2.970133342392673 1.523688158285937 +1.2498189335907228 2.0005564734317964 3.816188568755833 1.6778460707410234 2.2662999564362267 +4.607306963478847 2.1944937373635733 4.249702662224102 3.9085240373178523 2.4368156512567207 +2.6642980746270095 1.4175602781356003 2.3804638325553196 2.927088886171544 1.361306020864227 +1.3807185009857705 4.774065559061378 3.845466460091498 1.730935650472111 3.998255219640187 +2.788710506989001 2.838855995678773 4.022869153109321 3.7626974851218487 0.2649601231493514 +3.268280716228014 3.2774447365633685 4.535591066827143 4.30603494195472 0.2297389686908826 +1.5700120397462225 4.5118532052622005 2.615205316956911 3.7640281354623 3.158199378038548 +4.334353912606067 2.7905682758725705 1.3267095161964955 2.2365181671627647 1.79193355723858 +1.060250053634019 1.7018105417306422 3.2221066083347836 4.446243771016931 1.382067890136471 +2.1492214581100857 1.3086478264007635 2.139506744292199 1.4789638438530668 1.0690561040682292 +4.318945662143737 4.894703938854972 1.338594911281418 4.682317532288751 3.392930674127846 +1.3282672541389418 4.323682717026508 4.585260658034072 3.895687180877058 3.0737640403427764 +3.901795002135935 2.5871403854321144 1.0902821202528332 3.3513480113560377 2.615480018109677 +1.7417934347049857 3.2381948800837876 4.88846338402754 4.584747822514039 1.5269120564188459 +4.798231472196592 4.13123557398327 2.7516664833200823 2.1139493479187315 0.9228037023213017 +3.28962133886617 2.207178418049445 1.6509092667568002 4.963510398999803 3.4849690010334196 +1.0709543797193994 3.801128592042681 1.9377429840100948 1.2391544170892796 2.818133640455599 +3.7961868388742133 3.8426226946157938 3.6586354614392826 1.6969445815542983 1.9622404024284021 +3.5361221865676846 2.604083700284074 2.835668225019514 4.878553260152563 2.245456525226975 +4.487820763229051 1.7271702223177647 1.354735087425539 3.5955433096696465 3.5556170910139597 +2.461633666091484 1.786852232013783 1.00630061361529 2.8492193498751694 1.9625696044302912 +4.285174133223779 2.488523505448652 3.726243743738146 1.8277281460332935 2.6138697276286305 +2.4928025326765404 4.165517746020544 4.7877170152385276 4.134220987839054 1.7958377551380778 +3.0454764873245628 3.3028311330931213 1.1597726870017708 2.259452547928948 1.1293924075481807 +3.550099232624527 4.036863677125243 1.8720995815355304 1.3154082370283544 0.7394896060657635 +4.814134744988719 3.298943048681032 3.192558998660668 1.573975598931352 2.217119324357414 +1.3430337238440413 2.66094571266272 3.3194274700816755 1.9604730084435422 1.893052888610932 +1.8582941219325453 2.666896150603604 1.347764227722152 1.5504320610802744 0.8336135144352134 +1.947868493651816 4.046482126104028 3.0140922283645275 4.369472018762898 2.4982460956708405 +4.9904010759810475 2.014030592223569 2.4608599245940828 3.0306940857537024 3.030427730173946 +1.9514738983199842 3.760065793283146 1.215566597668797 2.7068590096459544 2.344132611553171 +1.604132569624643 4.482511256023283 1.9672276878554467 2.651899585644278 2.958688809242317 +2.370746955997551 2.8599084596569653 1.597765691671909 1.4511002925258811 0.5106757444494529 +4.697597188727199 3.183860310394473 2.0649945031734367 1.3176279620220774 1.6881812946650763 +2.779770248774973 2.7684705821349183 3.0687121529130956 2.118730065324507 0.950049287776876 +3.208384284775047 3.6107202126813007 2.7241496337435964 3.372486961645149 0.7630304644211211 +1.4357082878086613 4.434083854415108 1.3553398799183496 2.6020561899964294 3.247238456941102 +1.0391582419673235 4.483501715960621 4.734646517471463 3.638026832670857 3.614702850848517 +2.713995788006794 3.964781074366521 4.371301989120331 4.1095677447538215 1.2778766165980544 +1.1846298305912675 1.705027801395873 1.8269040608082951 2.737876547257971 1.0491353197208908 +3.6889457594017716 2.8676633479577465 3.497272736685999 4.554878772134246 1.3390426899706638 +2.885443827703894 3.633692453963545 2.4766016435026215 2.966529838352092 0.8943744421705687 +4.9138442369203625 1.9397702270899444 1.7333840130428633 4.86648912128063 4.319891646235397 +4.072441791285354 1.870786122587916 1.8628937170083057 3.037500861304631 2.4953936817543503 +3.994372706152746 2.803317535072054 1.626571774578919 3.8317754069422487 2.506299160265286 +3.9504547375457726 2.155691117043609 3.9113618353573627 1.2788394480838612 3.186118417914533 +3.3491240141665233 2.4153884234835608 1.254655229757088 2.025269493589382 1.2106644856977713 +3.171481241256276 4.838214888989485 4.814449482836349 4.652795385179882 1.6745545974303668 +1.7252110123101163 2.654870942070992 2.1772275166994857 1.793975447874363 1.0055594130938923 +4.235881231732385 2.2612156054199097 4.325295185466771 4.545256908905967 1.9868788326212503 +2.957660650575541 2.484561525848908 3.027269028312582 3.0345989725381415 0.47315590443262573 +3.2254919205761743 3.4956677948426518 2.5099441458463874 1.9030707335332488 0.6642968776144053 +2.3975091864920004 4.117752836957708 1.6305752466019325 3.972674768350349 2.9059711606865175 +2.412812104539549 2.902581556560327 3.1961384916190387 4.768079522196292 1.6464728117235976 +2.4973792848269616 3.289022058311346 1.3006613228218065 2.6339982906055694 1.5506404323597551 +4.4759921057291265 3.892569419845656 2.7243964858542435 4.965380572623181 2.315683853110155 +1.8462443400472757 2.446098093830152 2.1254612548049114 1.6371426877442645 0.7734853255644683 +2.6672284341452928 2.8356312170992584 3.7277091356231726 4.133451858903292 0.43930246391456496 +1.6409156307715382 3.0934929969824636 4.565925774726852 2.7122873902179414 2.3549854066114873 +1.9837807213805192 1.0315870528853357 2.9872702128877555 2.1592783849258907 1.2618412140574367 +3.7953765313499717 3.6307404972097106 3.811439301083519 3.7872326273283807 0.1664060900079108 +2.5430405671093554 1.6720466804703817 4.717011573519624 3.7306922075733624 1.3158481075728692 +4.81656454566699 1.897026884303462 2.722775096635583 2.9767414737251956 2.930562928314634 +3.129164710193433 1.14322875300127 4.617644919974623 1.5140372916901375 3.6846060761517507 +2.8490227171442184 3.732190574524647 4.317797824143904 3.166590718697192 1.4509525367636715 +3.6937398419375116 2.1417535413832205 2.2140814851159036 2.019268166141632 1.5641654983913837 +4.339601485458706 2.7130516895152414 3.8385894976735697 3.190578684495818 1.7508804221530998 +3.2431923668054345 4.482371168197719 1.4456064030578277 3.0826326746572383 2.0531485858862446 +4.380089486564641 2.38804394910588 2.719079463591383 3.992006456348185 2.3640195752569904 +2.598595288841452 2.0082060469458365 1.5161985142378436 3.1392689351456524 1.727112343818992 +2.2427627658921145 2.87541287377584 3.0105225250513126 3.450404453259179 0.7705467343186654 +4.72761897091776 1.9336758022530054 4.494318200337088 4.481675612250427 2.7939717723631317 +3.1798296575053877 4.4423374161127915 2.0327270640287036 3.7899764266226144 2.163758573150109 +4.558425682101774 3.750488280609048 2.1994670586913965 4.320405898861201 2.269613272888501 +4.901264283032646 4.406755629963252 1.5867437144527003 2.347388350017873 0.9072590972674676 +1.2246957916975871 3.525015437664472 3.3063068843659056 2.0956101214558553 2.5994724705874632 +3.8401647462841857 4.927677719637101 4.740825026540349 3.2575903717507226 1.8392034983600374 +2.541710296864302 3.9368938823942554 1.326385119674987 4.5873613903149355 3.5469005448432074 +4.662654577680577 1.0557072731382653 4.959075864263374 4.138861742544451 3.6990296110212735 +3.138297261111087 4.238827570045643 4.114197870399635 4.487677818321917 1.1621765065529504 +4.146130249199769 1.8115394617872846 2.2737302988947423 1.243741475441635 2.5517035723433 +2.4548865259209776 4.805914447729706 1.2692914230929069 1.0206716702434315 2.3641370668028543 +2.6592722027801723 4.2531064913789365 3.2908129299547264 2.133808916104628 1.9695090828880095 +4.782282000225979 1.324037783263154 3.793866111603014 4.144794827619805 3.47600403162626 +2.9462749953484515 3.3134579578685606 2.725579465967532 2.5778223005420187 0.3957973065846031 +3.24901053015859 4.900336589363766 4.097850817070535 2.9375678114035657 2.018200784622202 +4.304919058596676 3.4380409737869173 2.445730525889211 1.2456402440309344 1.4804371984431197 +2.170518764708054 2.209405679331789 3.6155391453897705 4.356644193135249 0.7421245743962276 +3.85058599607412 1.1797010830608663 1.484887843577995 4.7463718137668165 4.2155549938721535 +1.3901037365246052 4.2784771275262266 1.2929618791833568 2.553666736151798 3.151519884473208 +4.568307291365801 2.2322228135480713 2.445219797712192 1.74650164627537 2.4383391361023232 +3.5971177078421324 1.9734296641424622 4.202495678322467 4.785555245797646 1.7252018207959334 +2.9260722650005175 3.919486876838582 2.458526565275711 4.432235029950926 2.2096148294542117 +4.082004810391837 4.3679055025580364 3.854973579828177 1.553357393509185 2.319305127598931 +2.6739144344427475 3.891115846242622 2.2074042326178906 2.095096268018687 1.222371611172324 +4.232769412659679 4.886657871599905 2.3992306576040927 1.3693395688140946 1.2199367899626075 +4.249754693757098 2.157506595397955 4.902232812384952 3.5307403585674733 2.501698154447442 +4.799537182945262 1.5879950815171608 1.0097182512411176 2.627628467437304 3.5960584167831895 +1.415176313369268 2.8406615267247224 4.204592712715813 1.4345231352747887 3.1153320139849208 +2.5170293555171988 2.3337675197245846 3.5158264037866687 4.369048303917075 0.872681219759094 +2.0186531177939475 4.495785819534038 1.3448266472573547 3.858982334011261 3.5294709574194214 +1.5296479833532355 4.680878921811557 4.246745634188562 1.0755258047288758 4.470670154938209 +1.5612735721852022 4.823096606189887 3.688677863890525 2.4741892592521686 3.480585019211562 +1.1576784687158588 1.0016330754535345 1.9067929883256505 4.742234708922529 2.839732366907097 +3.902704501799837 2.120630628895756 3.04119276109779 3.178838047991842 1.7873817481141225 +2.6375790224338242 1.2865088691323185 2.418382988977145 1.9394663389926752 1.4334405173478602 +1.3871741991011102 3.454885616773491 3.830834978006502 4.563808978462204 2.193782439558846 +2.0564790235212396 1.701777581480321 3.264540341055106 4.0537717185452085 0.8652741069746809 +1.2306864563518856 4.933443129522873 1.440741475267345 4.732247207427562 4.954232227657061 +4.413794758107273 3.245272995881646 2.7323777524197985 3.3542289257522944 1.3236850042853423 +1.52650752441386 1.6509265694458666 3.5198296011190933 4.18014547508192 0.6719353779746742 +3.818466544133918 4.870378948744857 2.377887434629391 4.799853575289546 2.6405377659633307 +1.0387015596034654 2.207861409085485 1.7025481586249387 4.025466823314091 2.6005549170133 +4.326759867929518 3.543556427387196 4.546931145509324 3.679219737649027 1.1689014999597824 +2.5079514430751804 3.825901793624209 2.568497196949058 4.783517935595002 2.577461929717669 +4.060596716105698 4.506190071391774 1.7846856313345025 3.5778588627171337 1.8477076814318685 +1.3311885484084751 2.688889208762439 1.8274537692244501 4.066194994722771 2.6182653337412756 +2.1310754172178537 1.7251907297529852 2.7201995864058173 1.348135057078221 1.4308401211027781 +3.634228046427642 1.4711332431296862 1.730593989706533 2.2579845182079277 2.22645904916475 +4.862698015995706 2.790501188788864 4.598670169830633 1.0310134152454293 4.125793791408332 +4.394174153461879 2.4378361734227245 3.1643385329917733 2.583435839387841 2.040761189257573 +2.1007716612906946 4.7520209432662135 2.6898429041656042 1.7780665532341735 2.8036509892091668 +4.204469161719958 2.8112892895129513 2.535852397767499 4.316066538258493 2.260555803851526 +2.893689906282376 1.74623247426995 4.32286041848044 4.734431761322508 1.219036311407242 +1.5854834390857429 1.6092059669474077 2.2593712270936215 3.387356392144378 1.1282345903679472 +4.563123418648551 4.710780922455244 3.7415623787709156 1.304123349155628 2.441907402323507 +4.743641568912734 1.6914031546161996 3.1027861831923462 2.7592453393154854 3.071510971674861 +1.3736979898010135 3.6515597229852745 1.1595190704213065 2.6613675884592576 2.7284066864450387 +4.004216114193291 3.9022358284835157 1.68021521841552 3.7553800140488787 2.077669104479702 +1.5944475579240294 2.5581609943712005 4.678102367651167 4.857829894840586 0.9803293179429242 +1.3700150702320526 3.6252392671871685 3.0700609129857304 1.2167349652607653 2.919050059016201 +3.0968284309495204 3.3955209621609503 1.4099992809550352 1.203529955461129 0.36310716127804427 +1.6460818317610197 3.0896759591782397 3.992746517063291 1.1745230797231496 3.1664408011972633 +3.895631305727051 1.9212863638756863 2.536717365926744 2.7483420664024893 1.9856542909745185 +1.060854387900601 3.250661027866513 2.8309429427578645 3.9070820200883403 2.439944350635171 +2.7237915503644183 3.7505011472706182 2.578074943328105 2.5452444641363288 1.0272343631047656 +2.000812562090022 3.42043200420666 4.198000549235056 3.0669713746208775 1.8150885251865772 +4.964198017649985 1.439424268734169 1.6900597261095744 3.208534656931886 3.837941648407631 +2.7379436607318643 3.2974903246515788 2.2540817882630315 4.025316170309855 1.857515465682177 +2.388984895555942 1.3862485469677752 4.562424600546651 1.8737598077663877 2.8695641746990193 +2.117899098694305 3.2045645461064307 2.2034789140457907 2.8714723160868996 1.2755614370816677 +3.953705982073432 1.7119363457347716 3.6606963079937764 1.3196212756481707 3.241321244412832 +1.9421453174449699 1.5474328021931396 3.5554428087404446 4.8814108640378615 1.383470004505208 +4.011465620517582 4.266480112422316 2.4574964713239837 2.2035592748443724 0.35988399636182045 +2.801029931583832 3.839075206453579 1.0036113616400426 3.438951726553558 2.647342192776843 +2.039414792493902 4.979826415464206 4.320994912042492 2.7421954633053747 3.337458346081863 +1.9025823434505091 3.873266596446526 2.100932468040105 4.677250544188669 3.243610835858135 +3.1049225476679805 4.585084169532868 4.935905143156223 3.2203025516250294 2.265870843386763 +3.4826315813899944 2.189684346303226 3.099895503585652 2.0469292578175327 1.6674682807914298 +4.38452288977876 2.9623963715360313 4.69311456758351 3.586056047495352 1.8022270669338447 +4.378170378234426 2.3859537479689887 4.670262684738454 2.4946501915186348 2.949952003433332 +4.154028466937241 2.4070913655910804 1.7924818848543862 2.854694113719112 2.044525386296168 +2.3407501946231526 3.2903782903893224 1.7840525565348173 2.5298424381586404 1.207475079577611 +2.0334840998734762 4.910671285034182 2.1309685983527324 1.1041328318407175 3.0549300793702794 +1.9514934640214663 1.1233332060275263 4.798154454836071 4.706507777554274 0.8332157742010068 +1.0659268811588722 3.3875834254057384 4.563202830278049 2.5214245419908154 3.0917547910475447 +4.44670839071734 3.590269432544166 4.643678563057936 4.193747358403446 0.96743257025934 +3.0295061841738646 1.3490857648166679 2.9936588524856362 2.625352716004516 1.7203087501847645 +3.1169788729957855 2.347941095069208 4.142356156751978 1.143974520409905 3.0954339826640815 +1.1622315036366149 4.183184817423363 4.6743090654740715 4.055102555396039 3.0837599819379826 +1.0422765714600342 1.2647637184055407 4.317034731335922 1.6108994221735222 2.7152658879106903 +4.937203168755246 4.581019620500628 3.2796839065487844 4.153058494878605 0.9432125378659539 +4.687711181681376 2.801841399344647 4.550301262857529 2.109723685061602 3.084302797906038 +4.368235904389067 3.500741925096595 4.907870683753545 2.54271013441928 2.5192320711351406 +2.491028876180464 2.792605657196845 4.920640139851969 1.1732926481222545 3.7594629641241557 +4.837712788170368 3.9275483765109738 3.790224102255478 2.07605574733901 1.940817457992462 +2.9810729534223537 3.2837724571510476 1.289048400931895 3.042189795452763 1.7790817122156504 +1.9506690035442236 4.78102468094039 3.7388204470697954 3.7207645533164095 2.8304132694481106 +3.43774726662941 4.878856708530423 2.14498812013446 4.553365650683769 2.8066133957478074 +4.463186318514887 4.848675528112954 1.0503062544214377 2.367675599706621 1.372612080164551 +2.9128701604632874 1.4699622417538802 3.04268372616791 1.2165617670305475 2.3273815053656315 +2.025030639616034 3.912280873513584 2.2218029340554364 4.192070747237782 2.7283087620371527 +1.3834829781586446 3.0578611237490847 1.529958033100384 4.309125377770691 3.2445821463036943 +4.212386413779962 1.2011863520391444 4.4113931429654745 1.0485546086227102 4.513979266665776 +4.4767254290210285 2.1961565745828304 4.54285125901381 4.088338798216687 2.325419505563117 +2.7152871392468536 4.9105808378192926 1.353597692013306 4.933041752845768 4.1990158617967435 +3.363121769039504 1.9388534240018402 3.2559205810269995 1.965870965504358 1.9216577034389972 +2.902121899212871 2.7286655910096655 1.828557699409445 1.4650672132800957 0.40275603578597813 +3.4922455306124562 3.1345995142139516 1.9861208285320622 1.2489241142927772 0.8193715082494127 +2.028594476344209 3.9700713656912607 3.6012676077474115 3.3686528251085432 1.9553624086012373 +2.9041645906722433 2.018038704178639 4.871203946848514 4.587875482213663 0.9303193567729404 +2.790835761799798 3.6939260733332695 1.1472310553640601 3.333432474911947 2.3653855410099256 +1.9457231339932797 4.301023916589676 2.436400378104964 2.7381585420091366 2.374552540160359 +4.4420914292786575 2.4073575892405503 4.854304929955008 1.5868250786913793 3.849229322632 +3.477178543584469 2.6464764598407613 3.2390060030551533 2.022555801499913 1.4730298859153952 +4.715541437235222 3.734955791098252 2.2663262664764456 2.9807634836841395 1.2132471911120721 +4.890496601283913 1.2600424989690278 2.251744594487402 4.374036843478813 4.205273044541103 +2.6317556383997647 4.581747950887962 3.602081457129049 2.0675758933633492 2.4813660237842696 +1.8317243318522731 2.9722015949121374 4.095015450319342 1.464801918256021 2.8668295400678305 +1.082472103028 2.4918774271070507 1.1189446939800742 3.636413914614824 2.8851472483021916 +3.121005755724385 1.384941719867399 3.244551350328922 1.371159823455427 2.5541170978554315 +3.831487404705636 3.1018141390212994 2.1413897701233973 4.920605552671706 2.8734062435757415 +2.199274580734448 1.6012733794086866 2.4745553906366577 3.30700277256726 1.0249751609039939 +1.8833721567601898 4.2929454634823445 1.9924334907620889 4.621141442204458 3.5659709777905197 +3.7358019130374505 3.9185080846507283 3.7436637730810305 3.161555108967948 0.6101082215321296 +1.199298219464242 2.259608305705404 1.0136596305447183 3.7300316176667723 2.915979123966109 +3.465710875473153 4.330213406704848 3.2540060534622146 3.69317751850065 0.9696577758209405 +3.4937843167581577 4.3627224401775795 2.5750336849466002 1.2533466663266823 1.5817427216586373 +3.2205311136897112 3.443945674029244 4.9977839620089375 2.8828479994589857 2.1267035974622317 +3.735413848471003 3.1922723616840525 1.2399150519659043 1.377376394775959 0.5602662719067449 +4.016322645872144 1.1174906381519274 4.11509901367553 1.5727080444748887 3.8557721469578827 +3.5594573059599437 2.1799505848210896 2.6724060499154705 1.9988199247562175 1.535173300208914 +3.7783259979460726 2.9020202998307676 2.232718605047678 2.3856623991732437 0.8895524047018678 +4.306295520535176 3.7296045263568773 1.192613200971929 2.3055607167890226 1.2534850121679935 +4.622223163632546 2.335676816234902 4.0314193584861995 1.22994827090303 3.616149119348085 +3.385917497356605 2.2932997248808746 3.54142355008292 4.138662725495912 1.2451940529001162 +3.087971846424589 3.7557661606772146 3.7180128056392467 4.172323853716472 0.8076804903878522 +3.8621110935317597 1.411049925076557 2.9099881243480543 1.9880716870439317 2.6187078433610176 +1.2828653327844322 4.6936037385720475 1.6246466748380044 3.643466037992272 3.96342883041455 +4.582464731080074 4.256155877100255 4.978177506633086 1.8922378942527276 3.1031436897836135 +2.970623160410514 1.8469279184664482 3.738669944089613 2.3925586056643193 1.7534841693624919 +2.331002718860388 4.675936592062779 1.653919968259547 3.1764351416181156 2.79584822957167 +2.3487749956954023 1.458148189401257 2.8630467565444553 3.099918049645839 0.9215878241303055 +2.9295365600730263 4.462972507600285 1.2013049933128088 4.829118389434241 3.938585512877299 +4.792546063582169 3.579089666791538 1.8897185493930002 3.6167282795305082 2.1106963388658557 +2.2748207981157775 3.2285808633356963 3.9003755691968376 2.1179244853268067 2.0215810961714475 +3.0404871720837376 4.294987695396006 4.257275156760837 4.896474492514932 1.4079585767412452 +1.1764809334945836 2.2831220774938075 3.6511037339315973 2.3639939461522403 1.6974410821555286 +3.52625404494926 4.59333357540878 3.137403402629919 3.096162809016579 1.0678761683300593 +2.6259121665608993 1.2290532478802874 3.022770717223752 4.275713600131121 1.8764542910835313 +2.802824931392397 4.824929190392064 3.341403262865895 2.0137857146956963 2.4189820149133068 +4.856825325931443 4.419135837486163 4.908317188382849 4.523682220990843 0.5826801407600405 +1.113609764978491 1.4614520103974389 4.990856609241275 3.2577101891799667 1.7677077646119634 +2.229097729922624 1.9933727549678766 1.9838005275512884 2.0784510605205786 0.2540176907398124 +4.1653342152558315 3.9238507607016015 3.5378085494466154 2.656420472870377 0.9138704505312589 +1.9889477390281627 1.482053287051576 2.2297098651320146 2.560324063693266 0.6051840494716816 +3.849669999092011 1.742274293590477 1.4049259126992646 4.988013849963976 4.156878134578664 +1.4412003770110955 1.9108792397022345 1.4709946907278968 4.247482526428469 2.8159337591378257 +1.7504259821965094 4.555306201544345 4.64965465882486 3.7738646837907286 2.9384283427129962 +3.864416333383766 2.34105336337563 2.4738540713709907 4.628643057849944 2.638891872480379 +2.9577404475538667 3.0920360913727327 4.7243791021670205 4.631193359684717 0.16345917701585885 +3.2991243904208942 1.5363958182994568 4.087154736165676 3.465512801801493 1.86913100491467 +4.916574721310175 4.574398766052207 2.7944566432524356 4.832417045359357 2.0664866282926937 +1.3517661891206343 2.6858623055851862 3.241658264798956 2.2926712941534775 1.6371892738534177 +4.49653726795707 3.377039495514205 1.677587680391588 4.643680477235485 3.1703283334685994 +2.0963249577643883 2.107678783588363 3.8350319885051776 4.482956718872455 0.6480242013862983 +3.7148465556711243 4.617200115310974 3.123024022483395 2.0237955502707208 1.4221621499385073 +3.374173846600248 4.227815675838142 3.524787159702764 4.9804535755321275 1.6875038034914542 +1.3398597232941643 2.735151751994272 4.6695078789381945 3.4328561719708564 1.8644428899001688 +2.950402451251239 2.5070025599649584 3.852118643339452 2.9289462897194065 1.0241341016102625 +4.498630533141748 4.9660818263602975 2.0449442766170396 1.630569928391556 0.6246733642464586 +4.441936053249441 1.1045183584446625 1.1614137029705942 2.8387939358038907 3.7352324312010263 +1.7176896978969993 4.977632868524466 1.9160558783338661 2.503909525118184 3.3125219072118277 +1.2008002703227882 3.612981234455397 3.5731238319690983 3.7473025544141767 2.4184613354520104 +4.482580369335634 4.698208439735841 1.2403204177575367 4.918259270970779 3.6842542899099753 +2.7410470589718985 2.963179594868542 3.8516466406953493 1.9955759488481783 1.8693157241723264 +2.850507259382906 4.249573820414012 4.12251189482059 4.42392924014557 1.4311672362998544 +1.4006301439936064 1.7857940021311416 2.2750167598515834 3.51063070507359 1.2942538465241211 +2.8194355419148933 3.299637148340092 2.9849494440594198 1.9250657345223332 1.1635923085666373 +2.2988364096889673 4.488856847048301 1.627317470998725 1.8269455224043094 2.199100014769578 +3.9769184773384465 4.675792053402978 1.444828690848647 2.441336936223207 1.2171495218011268 +3.9970743499866455 2.5736252273452624 1.204258535504818 2.110619608302554 1.6875123107792682 +4.446242911550403 4.9257967587706855 2.947121087587977 2.2199173589515038 0.8710896367920832 +1.7655612335247413 1.1978679826589547 2.01949796045976 1.7592899292812794 0.6244868666099761 +1.3515631357100206 3.1119750761961655 2.745586570273425 4.129218639446767 2.239081933081302 +1.6013462533464096 2.4711874099924884 1.8449415259074189 4.233087499958716 2.54162641455679 +4.587291940835979 3.4734061190501744 4.818850801303757 2.628022516648934 2.4577368038134257 +1.82681624421167 1.5938907941550027 3.918559525658121 3.987778716024592 0.24299292499801464 +2.786232162191923 2.2533880186978426 4.791787718835969 2.8451740939349497 2.0182238443508256 +2.2763457512874723 2.3001758158120467 1.763362909815628 4.831447452954016 3.068177086776436 +1.127487047646266 2.870823485052496 1.8796244251993168 1.238128278301926 1.8576165482877367 +1.7320827217209636 2.7041356682505535 4.4862201289407295 1.6771495226634308 2.9725014048622365 +2.0753157499841652 4.217371687624789 3.9345344983024235 1.1749729605499302 3.4933627811357293 +4.888859888593048 4.806659638340447 4.569329078422353 1.8447120100324468 2.725856755316243 +3.5124127247359156 1.2362425441325344 3.9071596526194767 1.8458808473662534 3.070801361868622 +4.806240962340929 1.1454796841511574 1.2888033198736886 4.497372836430076 4.867863132676236 +4.772433900463934 3.417257800698708 4.975091113240448 3.4655785521344584 2.02857842675891 +4.229502703378399 3.137060159127131 1.5609686976754182 2.26199111253686 1.298022780473575 +3.0087381739485815 1.258018720503006 3.0964037164965887 4.628943788891251 2.326735412153305 +3.6333385861377456 1.0404812787436142 4.769436589081172 4.593079247203054 2.5988480002765573 +4.073454517381439 4.479153443986113 4.440852744457278 3.7508690575439085 0.8004180827884579 +2.6899323147953784 2.441670345923807 4.80392792101144 1.6580470807881387 3.155661620971433 +2.000587511403499 2.7255084561657656 3.070348434289462 2.3877180075375923 0.9957382566128795 +3.287168291301993 4.531217320068059 1.6019683376727567 2.564117772283141 1.572701344977766 +2.7643711622555864 1.7280369600010506 1.223451830541861 2.3775009687888917 1.5510699507924393 +4.16813378949108 4.2107965863019405 1.7780456901639905 3.4909312871883147 1.7134168152335556 +3.7685175395427093 3.5004269076860735 1.2392973100925753 3.3392687516961996 2.117015031226773 +4.906939215254684 4.467017975020042 3.5959175939942005 4.78976235000171 1.2723191419829443 +1.1101090116541537 1.7937693701396458 4.38138888894785 1.8668533019693547 2.605816705746165 +3.3806127330786735 1.72672064401428 2.2484845417085 1.8431542067154454 1.7028363757963847 +3.4934142848904206 1.8145872351049142 1.4180441079566113 1.742368638526865 1.7098674405406762 +3.576598596692831 1.8348671295279373 1.4936766272294117 4.892827772802929 3.819405322058151 +1.2092906094696954 2.149559639921635 3.205316996596027 1.640171094257056 1.8258662451657024 +3.3577600184787513 3.7691886774664263 4.6081947683429245 1.8062303841498322 2.8320095253587994 +2.0916383249257025 1.3231517178144703 1.0508459833316337 4.17995777169484 3.2220974922219408 +4.392766166642588 4.831963303847596 2.381633040849075 2.21162295860934 0.4709538760773037 +4.32579664091777 1.1370624124008297 2.5913637410848054 1.7530816030525833 3.297080970049022 +4.867213324448786 2.187609668629923 4.36529310423545 3.8280283402886943 2.7329341702383863 +4.147039397586781 4.562079938273127 1.15065297182819 3.6216195116060663 2.5055806295378056 +2.6968509454692433 3.076099880833265 1.2421145626260381 4.339462102394313 3.120479376166958 +3.2215177085711217 4.518780885647473 3.9796967847163134 4.042118966897499 1.2987641354096942 +2.4302801749043264 3.121486670273322 1.889818495714143 1.4177187468834225 0.8370451553448709 +2.2658148693222024 4.310639943820068 4.207243647844903 2.6940978881195434 2.543800242839449 +1.0129147184169867 3.1369985781220433 1.056029218984476 2.714810031761518 2.695048427746113 +4.084225547864797 1.6456878260279368 4.492591853710818 2.0265066774388045 3.468146813133762 +3.7377155083347686 1.6284934924758065 1.192173827665329 4.868179544596488 4.2381405761365105 +2.7230069702093043 3.2992796066184464 2.079161154263779 2.5859332492119202 0.7674034842845523 +2.2167851192993036 1.4161244743198909 1.9357071466017999 4.990131631324261 3.157620370039901 +3.7461122631256654 4.067457379840291 1.5470105816521547 1.6402917461182005 0.3346103101825731 +2.654448418033711 4.651535791630035 2.7785845647460254 1.6425398163577976 2.2975977994675953 +4.341870819023417 1.0092001130035366 1.1018734833591641 2.4624703731650865 3.5997108121781944 +2.0211946819123705 2.6370481617008585 3.690748125331386 4.267863306596746 0.8440008536811675 +2.6343331339676244 4.229768837794756 1.0317385567229 4.739531752178993 4.036476862973066 +2.718209833786684 1.896489453276423 3.7291813257573656 1.3169620445131738 2.5483379376668576 +4.328755232426563 4.749435000431217 2.01040647650068 2.6162060090345443 0.7375395181457726 +2.7582657428195527 4.119195947087746 4.45518219794296 1.8794224362281535 2.9131888663384986 +1.8933646925087966 1.5811478657283486 2.2818049546820034 4.694608805450466 2.43292041982634 +1.8514556036351042 1.5115227462128802 2.80170905188648 4.629944626360936 1.8595697522086074 +4.691563079408539 1.5697946168163321 2.9150785299486284 1.988822530014056 3.256284464147766 +2.1314338825051493 4.571766591688192 2.1050530896063493 2.7678288551495394 2.528733961273904 +4.499928135623853 4.990317053817083 1.487215193903963 1.00902925190083 0.6849402063072005 +3.3731417966078645 3.7891569072038944 3.680076470627305 4.085764996143222 0.5810780945617433 +4.617704825012665 3.4602472231119505 3.7143254684338847 3.46099506907633 1.1848562745904716 +4.147472037305606 3.6459972665013067 1.4501079280943525 4.220060218885646 2.8149800423827447 +2.7714563932480516 1.901226902883839 4.012674745016005 4.5656853999281495 1.0310771796261986 +2.1855936255580803 3.0156171433115517 2.222812115056311 3.0483006160770687 1.1706281669861465 +4.622801161605951 2.3067816559372383 4.322204886140259 3.912009570491178 2.3520643162163735 +3.148366459155911 4.191573618497486 2.9106856098385276 1.5402903608598444 1.7222846209976057 +2.904790416003363 4.22151613193576 3.5604103979631994 3.632050095939747 1.318673142717275 +2.452334556927592 3.731742340007746 4.931544889436328 2.300120253502545 2.9259664881890424 +3.1061859446952744 4.078132967877044 1.9279470531629892 1.5433230082226648 1.045283058227847 +1.9809679800244901 1.047336604352716 2.2082640602883825 1.8739447640315596 0.991683889900621 +4.240519128618667 3.9839465226497244 2.556495166591009 2.1068068475597013 0.5177345713846984 +3.0459318926517804 3.5619230855391755 2.9267941173804086 1.218896304736878 1.7841417683496774 +3.1360787512149733 3.2860275607031664 3.0873847893367308 4.05885940962961 0.9829789333145044 +2.020893413048344 2.859865692474081 4.377920525995712 4.120533125940716 0.8775663845840311 +1.440739330571661 1.8560789090213534 1.3188006174052438 4.785535773027998 3.4915268300068227 +1.0628973218640052 3.4763692889551256 3.9721361478506187 2.264637281641138 2.9564166340421885 +4.448199250163482 2.1739301657795473 2.6187797218126487 4.823665065448783 3.167620439188694 +1.1067546263694017 4.317458612627045 1.6656573868848303 2.254935590418275 3.2643328397285605 +3.7209703209587754 4.778398000746144 2.1228174959924555 3.063766385317204 1.4154639205228705 +1.0292496531152904 4.416892863760249 3.215355560021826 2.91687169290992 3.4007674342058385 +4.76143606782686 1.9163993792725207 4.668009602997457 1.8885086164060483 3.97741869730644 +3.6549222718623477 3.3959779717775236 1.65117745347223 3.2719688905384676 1.6413461039688306 +1.8220071874172268 2.7759375172148464 3.486150063191666 3.3371990839426573 0.9654892378100514 +3.4022007352398274 1.9752039017002208 3.9874388339565616 2.783066393372373 1.8673063322794088 +3.532254267046267 4.485134787200695 1.4103358246064204 2.361013657215225 1.3460199207677235 +3.748521659843406 4.3786381543938795 1.3008723199214574 3.2976981496935913 2.093886384489318 +1.2971172066848746 4.981707893161153 4.512929601592077 1.1470866622570983 4.990501700143871 +2.6049735319923912 4.501194901988368 1.2594664398032767 2.0389922488985173 2.0501990076758427 +1.7958845619945172 4.66128215254367 2.474996516492801 4.639210918281917 3.5908672112508295 +4.082158263845536 2.3538774314239976 4.412481106229738 4.299098017300071 1.7319960625159976 +2.865346868349465 3.1106721709580354 3.3038892564478872 1.0618384035775952 2.2554326704551366 +4.895963991891481 4.3283754400533585 4.542242546966888 4.538331292833768 0.56760202790916 +4.491334773547769 4.566525182425396 1.5913371821561006 3.8373318882352208 2.2472529491186832 +1.7966668569608846 4.939053573703492 1.0909434535890767 3.2854377401605386 3.832805689224954 +3.327323509775707 4.353236065771567 4.444885915149037 1.496537301980215 3.121739277602227 +2.5520085832009767 2.076006732571377 4.44053855225061 2.250638752990386 2.2410352278808054 +4.400377165031967 2.2081251685772294 3.248923605419484 4.406699024231477 2.4791959858722485 +2.303089093775171 2.9686156467276845 3.1769149974328657 3.9125239422696865 0.9919909840360424 +4.309647856675511 1.38711171157306 1.10310068840458 2.0364250035149407 3.0679491189728876 +3.617198002117881 1.3938977354498348 2.4856284724516375 2.89472601510779 2.260624885993585 +4.31330435500975 2.5667955047122564 3.0350268528314377 3.030816696322742 1.7465139248186088 +3.800952580625829 1.5292616769526148 2.4052622559559236 4.861284365507048 3.3455379484375274 +3.1012898038355066 4.5906274036711405 2.1727812649911393 2.779064890860711 1.608013159548678 +4.001008830721929 3.2398639264078213 2.373160337521053 3.5678586610891276 1.4165612057725219 +3.327124393998301 4.6448793094641765 4.317682424210577 2.7504774607387166 2.047586241105686 +1.8517570429699912 3.626421959861582 1.8759512254914408 4.1781180330616134 2.906786469131105 +4.950244305314623 1.6293778475944132 3.1162512357413124 3.5240260153960796 3.3458084674609916 +1.0281283629717382 1.7169805699026983 3.974148150957642 2.0708623626749203 2.024108236945998 +3.232842332111249 3.2997451270665836 4.6384292942149745 2.98579795375638 1.653984985251924 +2.492910649445802 4.378206720908716 1.3421054477817744 4.605308550533552 3.768664984697144 +4.980241613909614 1.330664866951785 3.4060948149861536 1.2714504319779425 4.228015737180243 +4.214304195869177 4.338804661206932 4.895700826930982 3.027047486637374 1.8727962174405888 +4.549814976195889 1.7783304142803256 1.1197077880997037 2.43084429421248 3.0659754752114248 +4.810571004192152 4.937221352459778 2.929081103602913 4.864000318474172 1.9390597409039056 +2.529376932593327 2.2978301143869175 4.859334045157961 1.7456939116467103 3.1222377888356734 +4.919601480365511 2.7306838338868227 1.0241687118144118 3.7574352795006623 3.5017290861940156 +2.2025476706715144 1.3150524694353933 2.3349804399508614 4.3031326367652 2.1589976382669462 +4.798914702593591 2.7724321777127305 4.129879699961982 4.170615004064398 2.0268919035429156 +2.3693375203782105 1.4324441027866661 4.596230419345008 1.3309930501980367 3.39699048464964 +1.7607399935009664 2.2050920040973407 2.5936848064067486 1.8688018701989817 0.8502376023949033 +1.9738418249141212 3.021525299607514 4.577846954598317 1.65201091484757 3.1077575829929134 +1.3156026962401421 1.979256429646116 1.595509483530111 4.654962444509449 3.130605164869714 +2.9731772760562185 3.53299492033747 3.1156279470623978 3.6881748250067843 0.8007532218433306 +3.736481746546311 3.5308360462969652 4.413913252177968 3.58790210020575 0.8512253386815472 +3.667699199679212 1.254082304615721 2.9828569132615836 1.2871274355670907 2.9497533757346504 +4.465366346609942 2.933506501642512 1.5254329457633133 1.7183861172300525 1.5439642194697103 +4.071033292947055 3.2586249952768656 4.373624957912799 4.973598298896064 1.009938241683122 +3.4740698482099823 2.231525893488798 3.594807493783923 4.157106778018219 1.3638533515244822 +1.7567112696459959 4.267092976484696 3.0049652596516463 2.9565159352502026 2.510849189231671 +4.2111058790514635 2.5681118056880536 2.4799201339503036 1.3475390785566197 1.9954238596653602 +3.864118235411373 3.214726820949409 3.9919249813008983 3.8736997407908484 0.6600654639280632 +1.8692749674097708 3.731270523966561 2.7614267380691913 4.299908124592591 2.415357619342567 +4.021431561657721 4.263105521829896 3.9927001656662915 4.8585423486459085 0.8989377002063106 +4.76191774370014 1.5953028825063784 3.225373626273752 1.4382985820521794 3.636081254979421 +4.9092084428893825 4.308143648173561 4.566856578850597 4.124550891467832 0.7462661780744941 +4.473909481523366 4.172965955230367 2.109657667856548 2.2306926721966667 0.3243708961871846 +4.141399591677136 2.3180624448350478 3.4968205796783183 2.5524852693367395 2.053369798504929 +4.037138044714888 2.233251089669879 4.393375615390531 1.4783809666714327 3.4280026179456944 +2.4152036627890103 2.4167266240474037 1.6329584880566435 1.692400270948542 0.05946128962915423 +1.1859979529804523 2.1214569562296695 3.557090883347778 1.1080539030248775 2.621615089548641 +4.131140381999497 4.170804746208156 3.880388959188536 3.2481635226545817 0.633468439931009 +1.0788954490103242 4.631363869224918 4.161715954160735 2.871977866902146 3.7793460029940915 +2.365854011100325 3.4010233126470593 1.8703359809098488 4.894061645483035 3.1960119488924486 +4.373323996248599 3.6976259235909836 1.0717453627338096 2.1524431221262126 1.274549148738085 +1.8082860381285268 1.1266754451145378 1.497986252623246 4.326478283400975 2.9094604600650626 +2.0889159601478555 2.0761046338020273 1.4360073646131712 2.8576672513713457 1.4217176103924454 +1.1715244839112926 3.628039518857122 3.2120300309417495 1.575158279192637 2.951917215741173 +3.9282482830765426 2.809437260861045 4.161090505355682 4.010068671926807 1.1289577926579475 +1.7343951612795823 3.3473220613932813 3.7966428084684156 2.593689845625183 2.012120527186107 +2.202244044183025 2.94968665491452 1.995041099964649 3.349693501116563 1.5471760030079835 +1.6470237922496347 2.1640629407250724 4.360671805740524 4.399888592555534 0.5185242881720197 +1.506719767201604 4.376678398646781 3.6908238293702755 4.348327527694229 2.944312085957661 +3.244881824295914 3.8575179797729087 2.614485722167077 1.6402201626827333 1.150876378850037 +1.65374672827723 4.749533305445634 4.201218712888543 2.3295666228767122 3.617592580352535 +1.3472918286127236 2.5206807730354956 1.8186092648031802 3.7029496512675983 2.2198153767722353 +3.035541302670575 2.5684280256325995 1.2931750934752024 4.366602598967955 3.1087218346298786 +3.9471500301070916 1.6866621045762087 2.8791815468086575 2.2228008338666774 2.35385668675753 +4.5129383041167745 4.74570327355085 4.426508672859011 3.415699211699707 1.0372633695281102 +3.6527160029519816 2.96606553736114 4.128349648828962 3.1587619372962945 1.1881031909103161 +1.370827686481975 1.8035574192309025 3.6618285499189427 4.777859688302967 1.1969881049733533 +4.572910163378946 4.305534752920558 4.76146962490178 4.177136874831081 0.6425996988195508 +2.865214979239111 2.287148966530542 3.719622228802542 4.918516328554567 1.3309798561469675 +3.5857238724304223 3.114581769632256 1.478850501501344 2.54730269271037 1.1677178451699912 +1.5992285868934966 3.8211143843243387 3.409604150411413 4.893153017923334 2.671646260102709 +1.637807959108696 4.260994931035162 2.907195769027947 1.2029129649814303 3.128208715200026 +2.5714509447138036 3.3045784827487594 3.229697485857758 1.1881175069037626 2.169222164161843 +4.016426984910183 3.317853724420411 3.821507868499925 3.2076188213846755 0.9299808398237994 +4.55990143193904 3.2982822516526027 1.383175550568652 2.7073160358094874 1.8289425854084258 +4.468451441412679 1.4678662376324723 1.2093907918884401 1.7108072316909761 3.0421916460422005 +2.2210589960361173 2.440664132407317 3.903163178772273 3.4676835141057576 0.48771810942251675 +3.219445300712541 3.166107006760633 4.51849626389256 2.3412138868157513 2.1779356104189445 +3.5951909910582307 3.625601989105356 4.20065874405813 1.945563654790035 2.2553001331182725 +2.456909320220278 1.8842410817212425 3.8937400287944137 4.8561142837802755 1.1198719203753529 +4.446005878028527 4.458796176676647 2.935527302978765 2.804735347654322 0.13141585641428208 +2.694982659017121 4.316667795516464 2.0978733221279144 1.9912838078646589 1.6251842992392493 +1.3037921469675617 4.016578969242163 1.8642982613361392 1.986961151296947 2.7155586032491117 +3.1656660735003133 1.9229027786112467 3.9988026354144783 1.8194203884231261 2.508817965820678 +2.848805261023143 2.088139089352487 3.1307318299432656 3.981690173260316 1.1413777318596112 +1.3120441461128944 2.687136063831333 2.314451942054083 1.1733490614321247 1.7868949511200436 +2.7727531077058507 3.9943233435351098 4.851344556314359 4.652114069300682 1.237710235887083 +1.7601727911688565 3.9586570314493277 3.39352468169958 4.627610734083047 2.52117062878517 +1.371934547399131 1.2602185166826052 3.78177175112952 4.351249414652049 0.580332043549324 +2.9797920165918166 1.071514072299454 3.0747789838435744 3.8230104648335708 2.0497256064695994 +4.561472577396672 3.9963195653929557 2.226180845086648 3.623337216061417 1.50713100025587 +1.6850092245477737 2.7754792178202203 4.683900286239348 1.1432653546361111 3.7047564731189375 +1.690881534523133 4.283967848368116 2.2295921681676187 2.6599463478758913 2.628554992965249 +2.909235967472475 3.074287932908647 2.5538760319393394 4.1474126043313575 1.6020614716187531 +1.1294746201201522 3.43826399890148 3.100274651426026 3.2469162099185556 2.3134416228317902 +1.1146035425913756 1.1685045599112058 4.048965666167051 3.6909276429229974 0.3620725697379219 +4.772764237355774 4.431331828759902 3.638669381897921 3.7193130140238977 0.35082685906590494 +3.731292564860651 3.4672767192738645 1.2414739846722442 4.545071420156064 3.3141304112023375 +3.2397949040148983 2.483550564165733 1.5543779892119218 4.218063463093108 2.768957530429013 +1.277641146307519 1.6947392507227441 4.8241264977877805 4.235722118820328 0.7212423600252884 +2.448311031568522 4.577680259647886 3.1744486949845507 4.833183288362408 2.699187611256341 +1.0580307245829221 4.841022714438165 3.181952867022999 4.978507811809381 4.187915718462507 +4.895250805394172 1.3933554387815672 2.4402662698528164 1.472144575611185 3.6332534694904117 +2.9757569704770632 3.155823914467373 1.837220872874537 4.020375066103226 2.1905675830090283 +4.220328947935316 4.580540779052338 4.733055530670075 1.057774531338863 3.6928908712987596 +1.525724417808188 1.121213928739122 4.610107509510046 4.602371755130246 0.4045844505943344 +4.987516629299307 4.532458220587921 2.929627359960078 2.5931492499083952 0.5659467058680447 +2.1534593247232086 2.7645853426687337 3.6071096364453243 3.8934342088245297 0.6748753740936834 +1.2603245494796829 3.7537786169908625 4.677445457924445 2.774124292049767 3.136868605353847 +2.8419967154614962 4.5423685634759785 1.7005473258469528 2.562116673473545 1.9061915334745083 +4.427986417073757 1.0800552420976315 2.8349742672270812 3.1064555103060583 3.3589202458112526 +1.4440138813421086 2.8672382626398067 1.724645500233132 4.495776654514888 3.1152424486307884 +4.849106205261757 3.584910536745115 3.366257995591121 2.5453953050287685 1.5073175660933247 +4.462731833287714 1.0846803819903936 1.921665571952874 3.9179299984539067 3.9238123385459494 +3.4264209522049804 2.120963559085495 2.310825421834592 2.76916770485355 1.3835810976062637 +2.106649093881768 1.491134988793824 1.5869022105161252 4.918180908644688 3.387665180942081 +4.734205925996503 2.8465366043523526 4.640278552119071 2.716797830445367 2.6950090082459615 +2.2499597178129926 1.5070314318976954 3.263353041965237 2.9090880525628062 0.8230711516809139 +3.4021040926077384 3.842733552150209 3.884013189172602 4.041867390866829 0.4680515672543052 +3.3988714992889864 2.717167719085265 2.8188740989228673 1.8392061018136463 1.1935113859968143 +4.554939849802837 2.1930052448066557 2.347770043119185 2.0677797429648668 2.3784721243813163 +3.3011860909277386 3.545993628311674 2.1456228343546258 4.905877322157433 2.771089238511731 +1.2694273154154456 2.1036367326171583 1.7761210587785623 2.3771052860810564 1.0281475542033824 +2.5983432069580346 4.584030426243125 2.9198792283183086 2.0992714517594764 2.1485694905636596 +4.920861838286192 1.2782274492521681 4.456481866071913 1.1080200218155625 4.947825988716046 +2.080212271687746 3.285957666319945 3.5863521363768083 3.306918925290639 1.2377014487083242 +2.6181723690777785 2.660588401513013 4.709633805065046 2.226507576876901 2.483488470865816 +2.450099731237778 2.6878530312147553 4.197899174053368 2.7197279928020395 1.4971695537686738 +3.295026412821916 2.8762583537069615 2.562089684778619 4.873135227636343 2.3486800949676945 +4.608046668696141 2.7249724698507696 1.156799704218475 1.8971930663296415 2.0234007929758784 +3.4104874119455606 1.7234588823766601 4.691280688152068 1.6104178350510727 3.5125177834705705 +3.784695151194204 3.1224509307939967 3.2534780210682896 1.4360814304916634 1.9342951622989248 +3.844390246959101 4.542701689802485 3.0770127619254906 4.285457727832 1.39569986273224 +4.723963561359091 1.6584347606324754 4.048047522593386 1.7508695749037066 3.830730132942822 +1.5893740458993775 2.49730349530591 3.754007737357735 3.5794516590330714 0.924557034249232 +1.7207385867840324 3.647140647125025 2.7762510288236406 3.722078558635511 2.1460695734845237 +2.0289269820603626 3.5392155325423125 3.7241136300134867 3.4175976769446206 1.541078692086353 +1.0375399255106696 4.532232438108804 3.6479870300178328 4.93271299258552 3.7233582363915687 +2.601910956152805 2.8196506366895737 1.6507463638152076 3.707582698668812 2.0683293443874606 +3.8561233618897606 4.600516874720758 4.824934007759227 3.3088608299092743 1.6889640560239658 +3.1348585178270056 4.036110121068802 1.6473781119061575 3.245769850836439 1.8349688290067703 +3.121226616977098 3.0531662122163508 4.498998514335556 2.0715620519579647 2.428390412923019 +3.85378792066106 3.040074034616306 1.4146319025463225 4.250216948169127 2.950029294651451 +2.2317654148364667 2.0838942571431174 2.833708190888309 4.385320352174434 1.5586424151576816 +1.1398931550685099 3.3998773131570386 4.370074362849273 2.5426876245672543 2.9063500625458234 +2.8295314977432127 4.933662874202949 2.7983104303293223 1.1937011430361388 2.6461556670517106 +4.415688256659619 1.1958153182376745 2.1124840637207605 2.680246880439827 3.269546811965037 +2.827231601705042 4.751284817386221 4.966646814084507 4.18461441391462 2.076910073086594 +4.8441048697568805 1.5861768974039747 4.861479266904177 4.353337563021157 3.2973174952170825 +4.602105016214249 4.397851799363131 4.566398275127931 3.630366092837024 0.958058256515911 +1.1345190256549902 1.9097475059221272 2.376205140133444 2.543649954961447 0.7931058962270291 +1.6283503890480904 3.320717139386161 4.808511902225664 2.2785739122824844 3.0437955664938436 +1.775685270997862 1.2569880799238815 3.5679232258561275 4.008135771892391 0.6803189411708063 +1.8199308731183845 1.2926074747778848 4.388610736794934 4.367576583466645 0.5277427422936399 +3.119200588140481 2.1093583334164094 2.3406555802203384 2.49455146798104 1.0215015045000428 +2.9299616126495103 4.587041415186187 3.5474792223263893 4.538060978610952 1.9305868765374947 +4.172115233656103 3.7570682514145575 2.178550446307867 2.865461844867974 0.8025654284478095 +1.9754366682352038 2.7692530933784587 2.7394023680107473 2.7931990152764734 0.795637226431902 +2.6317732232925115 3.4363858129563596 1.8698815874971793 3.1738285811658806 1.5322138172406645 +3.483095368681246 2.3243844218973186 3.727081455836699 3.2354681935984035 1.2586876728583165 +1.1921851607245908 4.709328374634377 2.5707673752183706 1.3974191478419722 3.7077004261184583 +3.131541357429347 1.7629262990234364 4.349597740292886 3.3630121839485896 1.6871449961644074 +3.6241465662549475 2.419043338828251 2.7095380120223385 1.4930798422511082 1.7123213096721688 +2.282760383642889 4.775638726508074 1.72424594865304 3.857930368336948 3.2813185817789967 +1.2705256397807227 4.645821209766654 4.360248553824071 3.6004910184095467 3.4597473458889745 +3.708920404671217 3.993240761779481 2.694084831645095 1.5688163252324432 1.160632274663397 +3.947084790647682 2.905262793429463 3.615622086179241 1.1211772138481741 2.703266227175287 +1.7568665925221163 2.6568743821327425 4.292181654876762 2.9753045681301034 1.5950483638304427 +4.028795492748435 4.591654523697091 1.1742133038283837 2.139971991564941 1.1178104184785083 +3.858924941765677 4.5567696511122655 2.691676055276573 2.827995906809391 0.7110346969627812 +4.095630992121524 4.4350857889488395 3.153159142507582 2.581553439468673 0.6648027067000246 +4.224924508314912 1.326165703857809 1.103708586481 2.2922354027672225 3.1329536542133902 +3.3365687749492734 2.8137673375052947 3.9748505980994966 4.142800863452935 0.5491162305248141 +3.1823464129192507 1.9295463006719964 3.982521892580055 3.29392186296948 1.429572706100119 +3.6064112996111164 1.4135131824603846 1.6738900163607155 2.6533388642744073 2.4016915284612805 +3.7048613947928795 2.201770657069559 3.297980589826871 1.0181080333433496 2.7307692395433825 +1.3863833795370644 2.817741717574638 4.3024805540627415 4.419637340789219 1.4361449803365114 +4.6396714246397694 2.2430085638058825 4.99399628170854 4.376111261840715 2.475030255628713 +3.0364430097426935 2.740498930769935 4.880772234003194 1.4390642556909214 3.4544083003978243 +4.885966769788551 1.2797197257063528 2.2230257801607327 4.483902933529841 4.256357979021265 +2.2022995753248686 3.126558975720692 3.9144302324906324 4.16142794802818 0.9566939482931907 +2.6377186510674058 4.586855236032152 1.66185336635749 3.9514336353896287 3.0068773229364236 +3.367206168176054 3.3017301973130966 1.457803290575066 2.1142383128991002 0.6596923838381055 +3.9093287918657316 4.464428811404439 3.562833722899925 2.193274703780958 1.4777780410271293 +1.4013721525632685 4.9455866504365655 1.465244184931453 4.149012596544607 4.445679846109913 +2.1885035919401887 3.8533874952737204 4.4808680548288145 2.831693191515445 2.3434197535575585 +4.335264211079551 2.504668776026527 4.557201522149466 3.4559311638357992 2.1363230207385024 +1.370706141854674 4.618555379923734 4.825585726855964 1.309905226092149 4.786286039997681 +2.392119946200958 1.8409301378068266 2.9884441011021 3.9196293638851447 1.0820888126682984 +2.6568379452556483 2.6626334545151296 1.6500633600155257 3.6618811055758513 2.0118260931996605 +3.049730505906908 4.119335806919282 1.2161922389656743 2.387254312145902 1.5860144637407767 +2.402806851165277 4.2026641776762785 1.2619917908460945 3.3192936563289996 2.7334917891800536 +4.771143444525446 2.9161178634270186 3.8809819754186576 1.0074760259967395 3.420256766368969 +2.323194923359348 1.3965501756405394 2.9494268360406077 1.2537063068071892 1.9323919379200794 +4.344275474918968 3.0483138080421113 2.6333010258021865 4.5151187611781625 2.2848970723404167 +1.1737217615171023 3.737566014436418 3.349236449301868 1.4578718408945797 3.1859939477599544 +2.2255982859804915 4.048231623728098 1.9236174320616373 2.290064443330328 1.8591061551016221 +4.4718443801296015 3.4919437946981016 3.1342950917187404 1.365188751762517 2.022360600734276 +1.099703368301348 1.6958362803136544 4.479148034138165 3.5451114306832223 1.1080608401066783 +2.608597683312845 3.52366472974967 3.997047193188977 1.2995820291165456 2.848449755719578 +1.500940290969233 1.361318844203101 1.9758851925131546 3.213525178473116 1.2454906194925923 +4.555520526100401 1.8936510141399383 1.075909485620076 1.0082578192558231 2.662729059943293 +1.7203780747541817 1.8766781186049442 1.8083698397042416 2.2140182544706786 0.4347186907763152 +1.2487248020614738 4.205288801527638 4.232265613602706 4.832748882261628 3.01692738375962 +2.336804124103987 4.702535176074441 4.74151901640968 3.0368996703452376 2.9158893197846862 +1.4320099689837278 1.4318787571454732 3.4614911383499 2.7761857534674084 0.6853053974437139 +3.075093285422352 1.9133440848148004 4.4742080146493395 1.3471544567961122 3.3358844642455487 +3.1341391034137067 4.031660592598804 1.8966752738122756 3.5116970186133103 1.8476579931711425 +2.21984024434932 3.3394628277760194 4.524702687468055 3.453251303049264 1.549697647443533 +2.0228496175450865 1.21342634297195 3.5898157015499357 4.477177084787673 1.2010729627638321 +4.408430212858373 1.9737390107169435 1.3019431933177308 3.690283452532537 3.41055573822964 +3.3454792450634843 2.6297082904786184 4.411963439891583 3.9168677385843234 0.8703147780431268 +4.019893608488058 3.7923452067427807 2.5616686415976866 4.778548188142764 2.228527136704137 +4.990053328090651 2.5685398361535143 4.856079287033683 2.1894205113412015 3.6020544995337467 +3.0812562860405017 2.3787183933262592 1.60277243748137 3.285390162200278 1.8233929631973476 +2.7567667988873685 3.383056348446969 4.088816339966122 2.7140475993030155 1.5107043688928656 +2.001092212937157 3.680699181469495 4.9375785717396 4.365308984177631 1.774421609874817 +1.5228240962011976 2.626789347539771 1.6094453866291634 1.5035941660799303 1.10902829407315 +4.565795290394054 4.540790682724682 4.182278925130008 3.1627049090668353 1.019880583517446 +4.2891539997464125 4.138231951964692 1.4005450982934842 1.4499145273312228 0.1587917032786669 +1.4280300106416628 4.044051313657414 4.322482669521224 4.264720217939406 2.616658930515204 +2.457378398833189 4.77400380581142 3.887089660609815 3.165386062329119 2.4264396468959117 +1.3121342418704507 3.528861580757658 4.817165621669995 4.403077066801835 2.255071933718027 +2.6503217708960265 3.2052052576327723 4.593098821397515 4.615432322757652 0.5553327553243474 +3.972660750957682 3.783957379227216 2.5384951325131397 2.249912779292854 0.3448024609723723 +4.206538292626752 2.5744263825176184 4.070552506097795 4.880849638474473 1.822188445210306 +3.421378612050054 1.3318949955727382 3.0559621941553607 1.2609766623652363 2.7546170047509326 +4.908875238015929 1.1709004723918333 3.507401275491874 4.133402852232489 3.790030781210655 +3.648457010829861 4.753115108398546 2.931300174290809 3.0987858010255698 1.1172828413999754 +3.8304471195044445 3.574829124546828 4.218186843233827 4.685608489501833 0.5327509312484071 +3.661076084039447 2.273228593247328 1.6998079014137413 2.6575920089821508 1.6862594860840945 +4.561419214494359 2.946172828601173 3.2208566968932524 1.0434381008558216 2.711120179835379 +4.1808722651540515 4.223601812883258 1.8927083586954185 1.509428395680771 0.38565443637750635 +1.7414083763625388 2.073557520741046 3.681208708321814 3.455403918951263 0.4016352288010269 +1.3024572129929215 3.679643246061441 4.288424271905553 2.5827965662384504 2.925778410296185 +1.7669658851485828 2.310149417080731 4.53424630935301 3.801842690555829 0.9118461548909934 +1.801574159726779 2.8364563198147272 2.76980258308293 1.6118639183224084 1.5529980800424954 +3.8637580730035332 3.3676013371457527 1.6338223704492765 3.35715890427496 1.7933377583030388 +2.659463455238368 2.046618153651422 3.489624363166549 1.1852307211502606 2.384493535542147 +1.6720666846831622 1.4077922789505224 1.3309352624613076 2.4112127854611516 1.1121333050601525 +2.285040953240509 2.538779443820378 4.71802259836412 3.352853868741963 1.3885492004030413 +3.2511398510387264 2.874483927730668 4.331283856122062 2.192934770915516 2.1712684068918606 +4.5836060979616295 4.207835137461979 2.101212854597342 4.790723840832275 2.7156349459810003 +4.550565855382592 2.913668837321336 2.789090647198072 1.074401146118706 2.370567850294447 +1.752543237549979 4.406419713517332 2.3674177815004054 3.4613238824640624 2.8704861796250487 +3.985805543103131 3.8612310088820747 1.9033310918404265 1.900349009594163 0.12461022185565915 +4.87907337735655 2.493483195418191 2.1539132140858226 2.375392696980866 2.3958492601798107 +4.239020993701269 3.605358028444434 4.850484285281388 4.620933727140773 0.6739600969499248 +3.706092428678683 3.6005387371247712 4.042077400862657 4.417490584558415 0.38997005050804023 +2.119462159567925 4.003679827536791 4.0813424083561145 1.151210058492405 3.4836693023310716 +1.2295194462817762 1.9741051754108883 3.776756023299463 4.2917926055656395 0.9053566087985194 +4.271763813589036 2.0267727728362934 4.942262813867605 2.348555030107741 3.430350541941244 +1.7883980182018782 3.4064674879148757 2.468656672702819 2.958115226013078 1.6904787736691262 +4.012351048948027 4.621827964705657 4.963999411652605 1.372623052289374 3.6427251152721536 +4.498477651475751 2.964412742804291 3.941944940218156 2.3059875946072594 2.242701848368487 +4.219760418211246 1.7595186361685236 4.230217162073853 4.002101659267927 2.4707946715033104 +2.2994560582782464 4.959519920297826 1.790627285193049 2.114073116419017 2.679656126401292 +3.9054095532453807 1.3596803430819802 1.2274652908646693 1.361085286941035 2.5492335151630616 +1.4462042345905592 1.2186599639145026 2.8708934747902584 4.7223228588044055 1.8653597934737691 +4.555956915293965 3.6723893392144875 3.4701311646019475 1.7898723776419394 1.8984101908321294 +2.038862498419609 1.8244673906364466 4.9926488737324775 2.575241761929189 2.426895631550411 +2.8995516006349433 1.9136206104591462 1.232122885730357 3.7312041174588084 2.686534369809257 +1.9928067511637186 4.5830682786734505 3.8242956385017575 4.676046290383806 2.7267075299486274 +1.2668783493757707 3.6798519757588593 4.271163777146652 2.2092609491169264 3.173938404231773 +3.0133752602978587 3.4812760472158155 2.8817364528592124 4.6200921813522635 1.8002254817613959 +1.4784163070110279 3.252045189322667 2.1861449289926 2.2626418286033796 1.7752777776506123 +1.7355755236424 4.649242956602732 4.677533130296466 3.843042210392963 3.030813917959175 +4.535121337875605 2.7067036015712787 4.868933456908897 1.874838658581314 3.5082353227519567 +2.9471440266321007 3.1017753763149813 2.9625058221770226 1.5043606964763057 1.4663212683138402 +3.1801972908128135 4.883521738642536 3.1891146902246947 4.129006994102496 1.9454335551396116 +2.5448998449380973 4.835613285204687 2.2502113333471465 2.235824066907821 2.2907586208183504 +2.3334871854726242 4.423839857418143 1.7534842461107072 2.4518681385481793 2.2039315675233393 +1.0807554630255338 2.4147040117253904 1.040959450652089 4.989783497661197 4.168048714304554 +1.0545556905458642 2.303978207076698 2.297749125428012 3.1105940225573803 1.490561455158255 +1.2925635428726387 2.6391366915987633 1.8821082184655067 4.062729307258165 2.5628826695261466 +3.5573600601336866 2.5579661268074654 3.2530622144672954 3.865765380931805 1.1722599558821805 +2.172417949307917 3.985439855993189 3.8604598582601506 4.034721910895856 1.8213774175358355 +4.771986998113684 3.5244581382409383 2.887018186881107 2.379917202731874 1.3466549908348886 +2.490766392762378 2.8885469687458882 4.192092243671881 1.7468145939173105 2.477420467142993 +4.508445916406783 1.9258458348804797 4.044447137122954 2.6824397692053696 2.919740956208522 +2.042188435414896 4.099704824300881 3.6420028756090566 3.3220855751773333 2.0822393641582 +4.3506698163316635 4.930402668084367 3.7024079403945893 1.501354734683631 2.2761206896322106 +3.361795003126411 2.775976611994523 2.896523432632776 2.9446325122500303 0.5877904991831469 +2.8228567248464436 3.3104243668462794 1.0906246220639555 2.4092748802314596 1.405902097903871 +4.049267227540334 4.850384947129651 4.304767505584705 3.9397419509113427 0.8803597311352809 +3.733604986029884 2.7098659681598667 4.072526761224204 1.1520719226853955 3.0946886823482274 +1.1529113517030778 3.1051535641298185 1.0599094570474215 1.5806311046185857 2.020495159665096 +1.9840264300556845 1.5314985213003345 4.816141393471419 1.0948255685695254 3.7487295150314264 +3.0127026904553986 4.384649001317504 2.052807488443106 1.0831355730623762 1.680029851927124 +1.4854978951338174 3.8427577807409388 3.732922983551644 4.621630146954296 2.5192210285276055 +3.4911857789752467 2.7595905500532396 4.119104880691449 1.3852919522059568 2.830011432297733 +2.0983879864481625 1.5162838970778307 1.1417009899788368 1.7767640511136382 0.8614814347852005 +1.1717958006522342 3.9936931254659935 2.2705452269710076 2.0871106569379756 2.827853028938077 +1.1507682462196067 4.149720901542771 2.4064681876676497 3.790739833410802 3.3030175624840865 +3.2314899421966548 2.6089270059775376 4.225602020906317 2.8837937192470777 1.4792005029594266 +1.499152298156297 1.587470522270955 2.395994968967507 2.6503134738429437 0.26921740403035693 +4.304706838639444 2.4941384537269333 4.568673115737796 2.2212092697777956 2.9645816542193626 +2.9632150442275367 3.7461859373956465 2.1385185897275094 2.7977354360088564 1.0235283435106195 +1.11574347647143 4.927643846146884 2.9341227929659635 2.3004267801881264 3.8642146763530607 +3.473604687003158 4.5057853225958935 3.6430043384715014 3.0806077448937894 1.1754517399538094 +2.8784393733472498 2.232691907645202 4.661178005333921 1.8293533138203437 2.904517321849981 +2.1510027601292125 3.4844131534738243 3.257027632414169 2.2866088869596903 1.6491500291389127 +1.4104973968817447 4.838842427790443 4.731587511336482 3.1265882910910388 3.78544213374671 +4.454440413572603 4.411137128612845 2.0341928552289326 3.2995159831801004 1.2660638975250946 +3.3789319199790104 2.8246909934630433 1.533841490424813 3.0997356740000743 1.6610862707216962 +1.6811927419789985 4.4759074369732055 1.4313219016413203 1.7401928126444677 2.811731044406715 +1.6666560947056852 4.316841295683393 1.5242479923459857 2.7081887736990997 2.90261905410136 +2.2930978585055684 4.79347471044977 1.171332118804616 2.3902400283284346 2.7816579397255374 +3.294785172718245 4.280897836889651 1.9073147920566718 1.766901464128292 0.9960592799121704 +4.681376496489953 3.4253475362555617 4.448521172382872 1.1307805944002318 3.5475359465042873 +4.97217553064711 2.569787388262471 2.110026701441138 1.228719508524796 2.558939459025243 +1.435184955101747 4.844414670083777 2.8192539040292433 2.983880319913405 3.4132021777684547 +4.708836944685332 2.6467526931283456 1.4785784019383184 3.8543742468665605 3.145885782621111 +2.891041446153326 2.863346755930979 4.111617014379878 1.1231918966182959 2.9885534427770963 +2.623509878886568 1.0529232402790734 3.2093300564581515 2.252847851388449 1.8389128848282588 +2.4543452085777466 1.0277611423858168 2.101407113574805 3.619892259437602 2.083492077287231 +1.363108446112638 4.305107606838515 4.506391570183489 3.107477596622162 3.2576555016049356 +2.413496031707111 1.3342053426002147 4.680325081240673 2.246654583851622 2.6622585301684563 +3.5716857279037737 3.8709184695556758 3.589158310529272 1.1558849787240857 2.4516034224463845 +4.668857287441892 3.0713357512852255 2.4881056957570666 2.6256639279667597 1.6034329813662342 +4.265595984313732 3.9082622888073586 4.140177869346161 2.915067027113563 1.2761598433190517 +3.0284634290375037 3.2995740446546757 2.8511295253785316 1.8179673140279338 1.068140964883933 +2.0160369994289327 1.0295370631514107 1.84541632895829 2.2211100643622617 1.0556173109121243 +3.77572269681236 4.993974848272993 2.883736320539037 4.1662782874363025 1.7689127172902477 +4.602854157284575 2.2447851633320117 3.690748329148295 3.5536157738665657 2.3620530726379863 +4.766170019599262 3.9652123400624433 1.741335843677133 1.3279398534584783 0.9013486834393594 +2.7532137330318918 1.3724387285839703 4.2270695950747825 1.7768824601009712 2.812464508095939 +1.0610060650776365 4.2429988678477795 4.864503500388652 2.291729249932878 4.091973306448768 +2.4640062237284988 4.975146683954583 4.910762552214136 4.1949133599087745 2.61118105023545 +3.1257225777911923 2.011131933315119 3.867477940492957 2.6955704034435484 1.6173062728335654 +4.349918430616818 3.935080128301538 1.335999426792649 1.3750401946362927 0.41667133165319314 +3.3955185744240652 2.033081414299142 2.6207362433295325 2.3125504844638987 1.3968584313583294 +4.346258086221223 2.5059049815267027 1.9157949271822536 3.8528638692012365 2.6719160982510846 +1.6400293108124897 4.222435993723105 3.8642759356500305 1.025422066954559 3.8376966482186488 +3.3604917413306423 1.120010712918603 2.368573813881973 4.024273840006007 2.785874694809764 +3.6350227222245683 3.6327517683100514 2.674232394743545 1.7559234126861702 0.9183117900576762 +2.402783042090282 2.4497980823550294 2.7633272457287354 3.1019594503278745 0.3418803650442198 +1.0945750436632031 4.924770912698568 1.0316293652038961 2.6474450332591997 4.157073570230454 +2.2026964505630073 1.1128387814040348 4.142214810390399 2.5052424483601596 1.9665879723713073 +4.256732983045576 4.849583657612108 3.6235904782063413 3.8006289496948917 0.6187200843038749 +4.322161956177608 2.457786162856635 2.581984572724685 4.831371963549658 2.9215818887588254 +1.7633718173040447 2.945946305194514 4.817503977413496 1.0982142320272485 3.9027680727330836 +4.554959585440122 4.728300703021194 2.8716581675457564 4.005761353536178 1.1472738032038732 +2.4316577850465007 2.7936849610350887 2.5904898405776473 2.033028818354867 0.6647002839264772 +3.5922076223370243 2.1347390735367338 2.7834566225422406 3.5954815051578044 1.6684121135765124 +2.6240194588700514 3.72839877386643 4.613345911262751 2.608330095976634 2.289048293710582 +3.345246326870164 2.7468238530771725 3.341346141800797 4.921593402508771 1.6897605931360746 +2.902667402595667 3.40730720100767 1.1623556341412011 3.76103494133946 2.6472241060782387 +3.9804312784816376 3.2419733558414427 4.338338344114791 4.0177906314399525 0.8050285334142777 +1.3227578162217295 1.5582810151287738 2.3675086690999314 3.912913632650234 1.5632490775910663 +4.878813349087732 4.695256084132595 4.2658512269827185 4.301644724260128 0.18701455549009657 +4.355558843808021 2.256852368425944 2.7955351322724393 4.988166602279422 3.035160890805567 +3.2447212866164796 1.0047214900569723 4.223101523408891 1.3675543479318661 3.6292903934462792 +1.162425619386743 2.921043551971643 1.6093373240561566 3.3925129254299407 2.5044864260250934 +4.559209484676511 4.240136617522551 2.533993856269995 3.47376720775616 0.9924623150111985 +1.7617063798079862 3.607326948493745 4.176098092052525 2.300342164218777 2.631496833431382 +3.013506156184994 2.6586942389405075 1.8322161720436045 1.63291099130754 0.4069570636897013 +2.5068894368107726 4.806393976368737 4.01237030671992 2.5872253687580966 2.7053205395379485 +2.5428331148774284 4.6905018272840895 4.071844556759883 4.759607749259613 2.2551051210992155 +3.4565470227353505 1.0842715241879533 4.03546382118555 1.9679039304937889 3.1468229919405424 +1.2811673543662523 1.3395335439434857 1.1645478340535131 4.580459952498309 3.4164107207746226 +4.721696866416886 4.72826784404791 4.918291233201243 3.5461364704547687 1.3721704962120638 +2.787886350180766 1.2228450787294576 3.8989170965533413 4.540956616232018 1.6916172516781547 +2.7725700664078996 2.9966825455445036 1.2754828228263126 2.656881784780376 1.399460430091726 +3.2479599269678037 1.6764679224527423 1.9073662545645278 1.4835559879850533 1.6276370179843327 +3.141945066936998 1.5894536831889163 1.921213565512483 1.0853672673924804 1.7631983809806953 +4.647073032514424 3.31253371779113 3.4900805691336796 2.12476892496377 1.9092069212759681 +3.6334727872640555 4.068562018514302 3.1453933915755248 3.591627410602375 0.6232394715410651 +4.54399073471307 3.2897788876287333 1.896614685196008 4.285474741577866 2.6980918676619288 +2.2247940670233737 4.219817848416721 4.6474221709998496 1.0662738257180369 4.09935889612506 +2.348715419924896 1.6039383491114507 2.022641498521306 4.192315384839302 2.2939436911527915 +3.671240131944528 4.863595816541324 1.8159807186359407 1.4779027773943412 1.239358210100878 +4.46456365505725 3.9549694733944007 1.900533401488778 3.2687352526503166 1.460021416112274 +2.076919333008419 1.3028092814271477 1.453131885070639 1.562159289339209 0.7817501818616357 +1.416603592381072 4.318231090304992 2.885188548325175 1.1974299906684496 3.35677986851264 +2.7172413712566676 1.8953624038901964 2.7580159794251746 2.512627547716425 0.8577298638941382 +4.560804017548487 3.211635477406049 4.4927699207276195 4.919262107310516 1.414973969699209 +3.362691878751643 2.6749452749898035 3.87950286952623 2.6775773741098257 1.384781675036868 +3.8899037862328902 1.9620043414843336 3.0889755480201067 1.5689602790474448 2.455044335031819 +4.449631053665064 4.73409364543358 4.95744297366951 4.727722501556827 0.36563706243122485 +4.512096811395395 1.6750764479581783 1.5875456342184697 1.2226207284758392 2.8603941562988666 +2.418964207498757 4.858607242769699 3.3554545038295687 2.5592054749178677 2.566295122465232 +1.1562082297220027 4.110815862988915 1.100478540179247 4.155509905997128 4.250049754142906 +3.303645480050943 4.550051498443022 4.1938657281239555 2.6242311691503986 2.004315496973495 +2.014987804459939 4.105251260300049 1.6311056924919618 4.880901167979209 3.863983947600976 +4.114462697764959 4.020420683719645 2.8902874065434294 2.9319672797313285 0.10286453341486766 +3.59875053614372 2.0052104734615703 3.3993091274166822 2.4420506345844872 1.8589550165274025 +3.885443874007201 4.717045429398895 2.21947515179274 2.939936239433289 1.1002842022559844 +4.49573952606667 3.541780204717497 2.2119191958397852 1.0055858970031717 1.5379461676765545 +3.652172919526946 1.7654647105984695 3.6258018558065457 2.1986973981255953 2.3656489593282726 +4.753283236304167 3.1518791956749186 1.6488187224981528 1.169660626977878 1.6715523868088311 +1.3989238302034779 3.691975149050521 3.5442193883497377 3.7615811988337597 2.3033303079504375 +4.203820647516094 2.899054926348455 3.369844070051965 1.1622158404332317 2.564378284759028 +1.0357537418656757 1.055577428082962 1.4930668067877364 2.19622382465735 0.7034364010445648 +3.6272119993409957 1.5294978854535701 1.032148978218347 2.170690430209638 2.386772117631875 +2.23675863279864 1.6636132298967437 3.5917979667409647 3.3028318757128807 0.6418699670740393 +2.472367370248403 2.888176385831378 4.299531178186411 1.7486160652136467 2.584582181133526 +3.393618899594061 2.292937612380385 4.411573488491866 3.955707167284561 1.1913494024984597 +4.982826442270959 3.3869910288054648 2.256139076207668 3.5254591898183056 2.039084161501704 +4.483801628319757 1.2011140472923136 3.4466796058778373 2.274122187888124 3.485818218598685 +3.8511704687958055 2.8315058659432064 3.9269196908499566 4.570454732466789 1.2057583721871175 +4.318323860550841 2.211546325676317 1.0953469819906974 3.4358842411682304 3.1490675196080273 +1.3586057296737941 1.2161481510107839 3.6190786336105405 2.084146299404776 1.5415289268479149 +4.939873064487127 2.9116803232819346 3.0255866262371987 2.270301534601675 2.1642600040485696 +1.5191768798451686 4.298975418257314 1.730106627821415 4.240961666345662 3.745887470098494 +1.5169532907183272 3.3342985684242463 4.669807678048793 3.104805619969999 2.3983276048511106 +1.878758472421267 4.892857523572659 1.0515370478116606 2.862801226078815 3.516457167892922 +1.4067618855680015 2.7036593067226935 4.836532650021541 1.7865346730621172 3.3142767809062454 +4.8898056549899644 1.943741318448923 3.1378683883327305 2.436301169115254 3.028447067082327 +4.8193275421898125 1.8224160459742773 2.697279785757448 1.13245144532732 3.380852888127809 +3.5427811240322145 2.9348297869642392 4.775218624372693 3.184703562456548 1.7027457210120533 +3.087644841943234 3.7282050577843013 4.235434041125821 3.386232293106531 1.0637015553985862 +4.5692806322043715 2.2391605121083766 4.5432916419967295 4.481744000597519 2.3309328360632744 +2.3422228166252648 4.158769367353576 4.273310433338578 2.0898656012695622 2.840294475164823 +3.6187043833030095 1.6330735189568082 3.6224668472782318 3.768677344119424 1.9910066395747632 +2.3756053666151504 3.440024918374118 2.762609261372462 1.7492621516735554 1.4696466741710028 +1.245568204188758 3.331860224410956 1.423280602822913 2.9234383995082767 2.5696474093927177 +2.571206631494374 4.825096748361485 4.744219171094932 3.9857241746815215 2.378094892659967 +1.9012229475442886 4.758732728368849 3.033641970386266 1.337731670468913 3.3228713325787673 +3.7068997365339897 2.446771277319875 4.846066847251233 2.1148851394174693 3.007869221712788 +4.490714789097611 1.4879030731756608 3.2715200547730343 1.3661173084813774 3.556323639217038 +1.5727850968340604 4.416325545848636 1.5440927307128156 1.1533110377142997 2.870266993985891 +1.9438382750676237 2.067406539958136 1.9944948736732835 2.8221676940477076 0.8368461111068185 +1.271781890204732 1.842123436884168 2.326340694935529 2.3341763571878777 0.5703953694338901 +1.6838055865001942 3.0796901949789834 2.167913180512329 4.3975347733490775 2.6305334606181807 +4.039550694758344 4.442529921111714 3.309004181361469 3.3983639062197386 0.41276799451884144 +1.3931003444803562 4.243320445028823 1.0857094635215514 3.386614712451203 3.6630478547409857 +1.9678780387947472 4.19090413378271 1.9828978502648038 1.5022568149848174 2.274392407609656 +4.435370002440999 2.640137417947719 4.157421780211671 3.6572668664658115 1.8636026857059824 +1.3112075412419273 3.426939769862662 3.3984213021819065 2.2984716651859203 2.3845779641588702 +3.0090103119936527 2.734628988557018 4.348760362813759 4.472823785397326 0.3011259594820544 +2.551165014788458 2.8117755207566124 2.491263309936606 1.8795277700123987 0.6649347386227757 +2.7240657452721395 3.5344325961765453 3.506340117249775 2.9477886181774857 0.9842124822215094 +2.1217302831244127 3.2910840599061064 2.5151354910489476 4.677211961686082 2.4580404634904482 +3.4078420968735275 2.038325335616143 1.0435463032859662 1.4109064936587759 1.4179314753667271 +2.7418684558680306 3.9121732529293367 2.0824454748395103 1.954626787062724 1.177264173824076 +2.735259022660636 3.7649609252760547 1.6052187678526089 3.9494566021501076 2.5604173550422673 +1.905228174793327 4.02749907004509 4.5706330645199404 3.453501405846882 2.3983362765972456 +3.748437630564128 3.5852033968687103 4.869449560932839 4.5199902602948985 0.3857035362198393 +4.420692844822657 3.130088289630198 3.6688128638792223 3.195757601010181 1.3745695324761216 +4.792926118479404 1.2132839517202627 1.6491972600474063 1.7684234345945389 3.5816271334042047 +2.7313481606857137 2.2980030533689177 4.56932709554898 4.658426451602172 0.44241007819047135 +2.803473266711527 1.8126997677849408 2.6446653624129732 4.014132261502952 1.6902874648645867 +4.088309250868466 2.2208479473401397 2.1871315731840126 2.5668372308883045 1.9056726126668153 +4.841810175287011 1.3822498432370307 1.6061002940969131 2.794153535975652 3.657872085876207 +4.05542436172564 3.626252712659514 2.943084373651417 3.9995297264526974 1.140291667871672 +2.1597055984983844 4.767524211069477 2.036974314153855 1.0552951980347167 2.7864694154245933 +3.624852289299524 3.204470871171141 3.1232026927187113 1.794441617789749 1.3936737534136177 +1.3127858806787729 1.2737452213158864 2.2195403793060704 3.5179427595618504 1.2989891893843322 +4.315454583088114 2.7586585462932907 2.3245866817172747 1.715369373864485 1.671753459206072 +1.2433857489217108 4.863091594607008 3.7412806469763398 3.322499408725746 3.6438507289403352 +3.1630190847657507 2.7602634202827154 1.2252757438262258 2.543803973740375 1.3786692200646646 +4.210191214972096 3.456633624018019 4.209574140259427 4.230288879741043 0.7538422536023722 +3.2513779599590054 1.195123454398888 2.325488155477846 4.653494028245214 3.106089814425146 +3.3137078380919562 1.5658124433345209 3.4942806700236035 1.880242801093908 2.379129368771981 +2.755885519713775 3.718157045334066 1.6779413390009532 2.701555813785521 1.4049032286987206 +3.0724180377042916 4.90722713601162 4.422802751007799 4.459458117089113 1.8351752077373724 +2.550519131509185 1.8289457481177016 1.0399453558639502 4.977632157411395 4.003254362977699 +2.55209950721009 2.9813638331805725 1.891815251872512 4.143233562723495 2.2919756263943962 +1.8276257051183045 4.187067264572514 3.2391362187703057 1.591177156467014 2.8779738608102847 +4.743114457210672 1.1007607529641144 3.571231415277175 2.6239544757679076 3.7635188463676736 +4.5878642967631205 2.6657545082227263 2.5084602718685822 2.234708305617679 1.9415061622948908 +4.59756489938829 4.082833518981951 2.95131399825405 4.079108895057568 1.2397054985887068 +3.077332534671922 1.300363910802849 1.262005574929665 1.133600147459151 1.7816019319755556 +2.2075982644226197 1.3780083327358454 4.082694557620474 4.934187976957214 1.1888063332308758 +3.4500865663976383 2.169282547105059 2.534213212900773 4.537731373945294 2.377928501337087 +3.6404112064039347 4.482882184429868 4.202288510273933 2.308807401237805 2.0724449471801796 +1.5154724935585402 1.0615834491346816 1.1928753921596082 1.4818633202774887 0.5380792574016106 +4.036594531261046 3.4482010569798596 1.6030889543800821 2.902045131622542 1.4260063222065424 +2.311413984007585 1.182084055326028 2.5971616909400037 1.4151339389290731 1.6348014235190478 +4.302674610783431 2.8375314915788055 2.323237009602191 1.4997272320464528 1.6807179160949526 +1.0014176472158485 3.007759861361461 1.7157296478687467 2.659673821623016 2.2173045987025213 +2.9459854214220575 2.9589226100125896 4.918781391221675 1.4581117205271643 3.4606938524685305 +4.051857394850645 2.938625183811222 4.313153736466148 4.913587203901219 1.2648344968855902 +2.874785170763776 1.6897647374990732 1.4667724887242253 2.5496865837565825 1.6052963478668396 +4.876238284017168 2.8847324425752547 2.2991355000444114 4.062744408524963 2.660152608135335 +4.344206422249326 1.079574672509807 4.109412039314569 4.976297735943417 3.3777672022250136 +3.321672497489953 2.711987956313794 1.3809882961844826 1.1873000367388662 0.6397111704482391 +1.4276059621394084 1.1394391558948422 2.7534092410575894 3.1170410742487356 0.46397006189100914 +3.2759838229049567 4.510803267675388 2.7534079655028623 4.620641366178869 2.2386021606759963 +1.815956946340894 4.339839451756728 3.3737489609683875 3.840823899632256 2.5667375984841074 +2.061843491364956 2.0347491846253156 3.77645722079319 2.20763026265002 1.5690609057823262 +1.8436200600516202 3.0366021272570918 1.8801072690412743 3.002409647819565 1.6379160058089826 +3.604006213355918 1.4557726860087028 4.987957919591818 3.1133371256227202 2.8511594850516495 +1.2219101921279987 1.5936032433585106 4.045689217300112 4.069406638456057 0.37244897690735623 +4.604464421880028 4.0144221686159245 2.815395496632149 2.925999527502614 0.6003191753407309 +3.1046825734404355 3.4132222082002355 4.166134935041284 2.14547363543399 2.0440814059005454 +1.0391071289034826 2.0197254887948186 3.140233283229187 4.562865110435202 1.7278581201983854 +2.0088647650862024 1.8834454487463623 4.71954039052846 4.231362258395212 0.5040316394873041 +2.478754057338443 3.360341475538749 1.9869235955578692 3.242614739089135 1.5342609373479918 +3.3547957931805277 3.5858440373093305 4.694742232377028 1.8198005107698108 2.8842110175493176 +1.088281548111738 1.8876670621163592 2.8662772491815103 2.924659792966778 0.8015146420492086 +1.7861981867539387 4.618998194310722 4.494032546020813 1.8609052707978906 3.8675722527622676 +4.995772509915517 3.5839375659849524 3.6863557650109637 3.9629209175295763 1.4386682009730605 +1.5932985441973537 3.791261725276395 4.358628429280369 1.5143535184229302 3.5945711724644136 +3.34768669552362 2.6945613754399074 3.4943357335011256 3.4973293334476545 0.653132180630454 +1.5352287701903342 2.493847428686178 4.834379648576725 3.978629777604451 1.2850126746789055 +2.252339550230646 1.5386179750304705 1.328154931414097 1.3962029576870774 0.7169581722707874 +3.8346184501774614 3.8780274972367543 4.067920079444592 2.342789315921974 1.7256768227622248 +1.6221054547150584 4.766673463683236 3.584932219353084 2.201899024923325 3.435271281852522 +1.735200668561899 1.744427468608741 4.567656779195225 2.4148572573994502 2.152819294525953 +1.4905047192044858 3.1175660664738025 4.978895126291215 1.4466239629927196 3.8889932114684838 +1.4386024973815155 4.654102762465548 4.8227224936666655 4.486423968944394 3.2330386098043835 +4.322273820506848 2.175304449023559 4.7469145332270575 3.384490286679678 2.5427696139578875 +2.034250397751499 1.385839954810193 1.3912437084784646 2.8514398158674163 1.5976885724537144 +3.2888002958582936 3.5366169974650115 2.8213149675258324 4.396515303100262 1.5945749323217864 +4.835251471416795 2.7379927100182493 1.328670825405223 2.4979533666841154 2.4011905325489242 +3.491325507991927 4.107709426385249 1.6133904664630503 3.037200580729589 1.5515039079362964 +2.357561318711648 4.710988744727048 3.9909537970529207 1.9971160229532172 3.084478840736038 +3.1161414458478305 4.248504494789014 2.7749708660972314 1.388547936702135 1.7900878787813332 +1.0462760351463047 4.45070335755916 1.459413118941483 3.424269943682816 3.9307490043659308 +2.7432432908702546 2.2177309207334472 4.894307928978769 3.7129145365069722 1.2930017783989416 +1.610033178586579 3.1662906815153637 4.739242396263059 1.1937630546944722 3.871997052802566 +3.5832185983734197 1.751778792270286 4.733885130590182 2.3557087403290744 3.001648664746498 +2.089112957329249 4.575559337585444 4.893296874709954 1.7532934926065162 4.005251158355761 +3.8390836274016196 2.219759891184456 1.2694213378818096 4.013937301336756 3.186624740432319 +4.500495835149316 2.573804808135266 1.524185669770195 1.7382548079791795 1.9385468551237013 +1.9581428605722557 4.411919278157939 1.8164880616304782 4.911383570856364 3.9496071855978516 +2.411292377584158 3.621031115906387 2.264297461897791 2.212865019006497 1.2108315783705117 +3.241590600935099 3.2085664926866757 1.5014280625973684 2.9268541744185153 1.4258086098727123 +4.859962554290023 4.535014154130285 4.25839277519268 3.0236809438609686 1.2767555636052192 +1.3960230586164384 2.643798333054161 3.5032422312038687 2.5192214309585412 1.5891003967067623 +3.2471078027730473 3.527550008966573 3.616166294715349 1.9342687449169884 1.7051179428509982 +1.7596268742993448 3.2632250640879152 1.7017882930015875 1.0902668813239003 1.6231962152727368 +2.4952994301184956 2.9846116652992816 3.013937726701913 2.3941013411566456 0.7896984287330439 +1.7142425298651456 1.4169445938591076 4.778511838333886 2.740096865015155 2.059980986854843 +4.676907984329584 1.5948765218088683 3.9209430274599306 4.6328277343499 3.163178428712392 +4.206785686276026 2.69224015650408 1.831753915108532 1.155556318441473 1.6586414173927082 +4.165970268224408 1.7585653694280752 3.9321534649929344 3.8453992450973193 2.4089675467756466 +1.4172675416441467 1.4421980749398324 1.183473934879963 1.9660473798867328 0.7829704517541969 +4.824266836979724 1.8219718122823774 3.6324587712284746 2.066799302962015 3.3860101869153993 +4.127934927380744 1.6103076794560152 3.7740811202423323 4.279177068168988 2.5677945548865417 +1.262692251612723 3.329083453755265 3.6489143000129163 1.7458533791700557 2.8092015713955765 +4.392112237291528 1.0065300108370643 3.412142666476213 2.3560078245014053 3.5464895060492587 +2.0088103734966736 2.262404021486388 2.998354817462479 1.4228384076314349 1.5957950043622875 +1.3325250050758277 2.206335034462974 1.7883466993072705 2.226135321830805 0.9773447935445397 +3.345356889777259 4.055069504449211 1.2863052811177895 2.918022363846955 1.7793798451973868 +2.667638554325182 1.2870866684628526 1.9325008550810092 1.2644210435489724 1.5337060162021652 +1.8943460500667775 1.2246344998913306 4.946098817151093 3.454776569997231 1.63479527932229 +1.748561325486739 3.011955933432228 3.4376934247045616 2.701822907097295 1.46207775240215 +1.6068416325453327 2.91961941438165 4.505058421765374 3.1043191210730394 1.9197541751451228 +1.8450635820460626 1.9223676145916841 4.293464147377069 3.3753480752536906 0.9213647677977896 +3.5875624319127892 4.5614943739027325 4.078423958463917 3.7037746098985136 1.0435063785184946 +2.8641332395734445 2.801476627701298 3.9797381001785106 4.772190306795874 0.7949253743490804 +3.804288183866568 1.2838627643736968 4.962097762785283 2.896527634763491 3.2586997788998264 +3.4460576368223954 3.431689055983622 2.0392327790111793 4.9094348315666565 2.8702380177624636 +2.3123001989973213 3.963291012782201 1.5554231742685283 1.0899574139333486 1.7153509965154263 +2.7025780338008007 1.2962975257606515 1.5758537645731008 1.4285713865032919 1.4139720528297433 +4.511171021347717 3.6040595521132404 2.895158316445808 2.373846172199277 1.0462397284349547 +4.558386602123398 4.212677684956392 3.05670798863103 4.702181066827935 1.6813971293182284 +2.247632764740731 3.1685277471093416 2.5741624431122485 3.2905922372092684 1.166755852105136 +4.900546547671973 4.502881068597796 3.9007012715265366 3.7883164713551327 0.41324106349304257 +1.0894039961512973 3.464711188246689 2.264287667452764 1.2510130178293069 2.5824038747627442 +1.9050815314660632 2.3994093193474018 4.771906984574572 2.129007357463907 2.6887317457963986 +2.3177846601467755 2.4862889562640387 1.1758775314729726 3.0689649024215786 1.9005718854742326 +1.5504217748937568 1.9988256967314362 2.6233298304383204 2.118779094898021 0.6750092753834341 +3.5598182891908747 2.380491716259785 1.774384784837058 4.887859576387161 3.329344746829223 +1.791297085712996 4.899091524583488 2.5078138550694704 4.233814742775431 3.5549212844500677 +1.6260428530429119 2.4839349534375903 3.2590515749110205 4.573583342212381 1.5697046292739383 +4.984399997983173 3.4048479191360492 2.8407987563400607 1.9664995986009774 1.8053763560580773 +4.309180169540671 4.956816539256099 3.6881946748754926 2.434076234919492 1.4114694218493902 +1.0461743713431368 3.0948728765343136 2.4562545521361265 3.097317420563547 2.146654878281312 +1.4749977117131188 1.3262513269109881 4.187926084280377 1.9602240074628599 2.2326625428059623 +3.1027274147727795 4.7103373224349925 2.8530858888086525 4.923370590038113 2.621161643119032 +1.7880031806239214 1.5186896075914587 2.771060405950478 1.7973155065581965 1.0103014053796007 +3.953158255085364 1.13699077538537 4.11594582103908 2.2524848268606354 3.3768752050593065 +3.141998418960438 1.1037092639675694 4.682626059854876 3.409438729304817 2.4032537648019456 +2.423273489465653 4.938316017561462 4.093215108202996 4.889146403046537 2.637981338872941 +1.1146865961939332 2.4756032988937497 4.7316532994489915 1.7374516221224137 3.2889721732165254 +3.0178540444001443 2.667393969293332 4.445507583866085 4.5370999679531785 0.36223118179779906 +1.7444918201523043 4.45245163846938 4.388289618688345 4.875993907464279 2.751527185202845 +4.2796224455735175 4.022312575546865 4.9309191528712635 1.1985764432868287 3.741201741553269 +3.8838797644831304 1.1685245977956944 1.7504902086672667 3.768341491060557 3.3830278566858416 +2.0612518144184415 4.771974841289839 3.33534048188957 2.4320985237816224 2.8572478652188207 +4.71837379079629 1.1729519923563703 3.0715512566999914 1.9503847611905765 3.7184714654688182 +1.502577958788844 3.3613503404234444 4.517358576730993 4.554244775045877 1.8591383376052708 +3.896663457518671 2.410457839552309 1.4086627110547552 3.072269037488249 2.2307830795988033 +1.396533042891193 2.001228327645612 3.3471348288926053 2.266709383626937 1.2381338902484438 +3.6794832840742626 1.1388972874338572 1.069021330418758 2.911828303732497 3.1385529702745285 +1.108595503671728 4.013242770263458 2.34185768460804 1.303435669914525 3.084687346218243 +2.196782734257674 2.1287891094671783 4.935549785719703 2.6245933924114415 2.3119564409357882 +2.6523716135511624 3.5466420835256494 2.8416958943446384 2.2914285679325754 1.0500065733056483 +2.0696286409063034 3.3132196106734613 3.353393420939108 2.075157964892855 1.7833688292611243 +2.465955767920991 1.8915037708327826 3.832706710763314 4.564889345425515 0.9306376886090058 +2.816942758500606 4.756076495847245 1.421697140436975 1.5845705010658526 1.945961814352607 +1.9353984451733273 3.9910145080304806 1.6912807997302992 4.677442126559351 3.6252885219973576 +1.6407225396487792 4.087276844045791 2.7577984137906535 1.3076950141454544 2.844016145176765 +3.308432354637387 2.35368945173287 1.6029201567071416 4.005556836715874 2.5853814083747735 +2.1004696967995313 4.2150039680827245 3.9595781746448178 3.1660676142274746 2.2585203549946122 +3.558678732763335 3.208656193636577 4.9701130762615335 1.2906125555829808 3.6961114511835924 +3.559447127974052 4.577450510251642 4.146897372589698 2.8486721338680283 1.6497635154113903 +3.413699128278111 2.100130805342428 2.268277787144517 4.096155204083837 2.250910391458715 +1.4501606516778383 4.6322196511634655 3.528198100610695 1.0490838148299595 4.033795621764891 +3.9947273430775443 4.721858057447804 1.2318528369440491 3.879565248485243 2.7457421747152244 +3.689023554270906 4.276138422201015 1.1688263332639761 2.601767447372229 1.548555489689146 +4.079108477033962 2.330441981414095 1.1983845346624076 3.990340794216643 3.294367051220544 +3.854352495007789 3.604044437716643 3.518125826404502 2.838727994037753 0.7240411163528664 +4.889152611364478 3.901137350823062 2.0782855370265367 2.3316197520050337 1.0199766563708672 +3.909743955398668 1.5318046119444348 1.9100801480618927 2.6745976466475847 2.4978155509947633 +1.7310095437229425 2.42740854269512 1.0558639612615655 3.206245304095452 2.26033437468387 +3.2107178444060445 4.453518477967294 3.6283129971768617 1.5265846060999597 2.441682953341598 +2.38352027122044 3.9134116852043426 1.2379474306240486 2.6757909720243944 2.0995146553735586 +1.2391314476336603 2.681693924372152 4.440615837380261 3.9974212809227163 1.5091083175728277 +3.6300485386678822 2.1443999887491474 1.517261392709373 4.617529619603525 3.4378503010697035 +2.1708309280278844 1.0518765070809248 4.783053750693519 1.315454282079941 3.6436664324394337 +3.4567028192357063 4.074827517885974 1.4582783858983022 1.6913115827075758 0.6605926232532678 +4.372733277780812 4.4430296302818135 4.177273643869629 1.4048177525997825 2.7733469393878267 +1.805084290856961 4.899903882829551 2.436645733562593 2.23796239471507 3.10119063844727 +4.469387777058028 4.294948822527131 2.3931515495187914 3.056889984677533 0.6862781208553914 +1.7545336941397527 1.892861915169481 2.48965221401383 1.5443497181838324 0.9553698264837929 +3.6106542143116656 1.695124193092239 3.1178528267243486 4.390354242665023 2.299677176423664 +1.5939053252559425 4.453613945467687 4.04120276816648 1.001320953957198 4.1735853695442335 +2.881974931341606 1.0895235755105488 2.2584527957959817 2.399410994805731 1.797985282723045 +2.1182224975008026 4.3459826427650965 1.0821219126842916 3.805181788937041 3.518233982339098 +3.5848452586017494 3.2271790764447825 4.70365487391996 3.7824211555982905 0.9882290532217262 +3.722936798152804 1.0920148128519056 3.779795646825738 4.509259044897757 2.7301771630915086 +3.188712374032466 2.0332222404690725 1.696757501700406 3.370036915749912 2.0334752140717645 +4.913096507675963 4.498648857188762 4.657002389288602 4.039715976237183 0.7435115135169381 +4.142068953934482 3.7394923491924636 1.1067399731154652 2.7492924929120415 1.6911672604966348 +2.809604057893832 4.648514882212782 4.766408846642339 3.6877474013077767 2.1319248423545907 +3.0603182827131556 1.2470762089714444 1.7287752226984532 4.321765569489058 3.164086875630377 +4.869898933009871 2.5058918738244396 1.9181942186526064 3.9941222217439645 3.1461097326535556 +2.9083590054740545 4.1408624773667055 3.0190955712629446 3.858518979796443 1.4912063797548065 +4.542572139103344 2.751537799889807 3.9523237360529584 2.6532517122453845 2.2125533049582278 +1.5494458943575284 2.562329255190285 1.9897032805124564 1.912744427880694 1.0158028192765844 +2.440647475459271 2.217092581033642 4.29309199528977 1.997143888775196 2.3068061250632903 +4.853634960670433 4.171282927153048 4.247144125767477 2.023742170637109 2.325751610065627 +1.835362170079983 4.780100688630954 3.0217173738512457 4.655174350505412 3.3674421505376952 +4.937664503349774 2.711204942684697 2.1758500805440013 4.907211168319224 3.5238410246618073 +3.6987681257550586 3.818409997295431 4.724782925592586 2.976982442339937 1.7518906092230404 +3.418558482927727 4.807938899907841 4.737571236798957 4.136542878825214 1.5138074613954209 +2.7340575789688017 1.4106324164602828 3.529607975632955 4.801618265802033 1.8356100727160773 +1.6110791188852809 2.4536876213236796 2.657271939370357 4.138395938289566 1.7040297499034192 +2.8262115132778884 1.467520603236693 3.086526507218945 2.2972119681575203 1.571323782866638 +4.139493628659285 4.3660173684639645 2.1153623696357724 4.1892443010476 2.086216496467121 +1.4730486277352561 2.158146296980188 1.3355166659140432 2.1188714857735933 1.040674584201049 +4.5855707878116005 4.43987570636106 3.471429782574402 1.996839029753712 1.481770881433148 +4.114716052201873 4.042219177792611 4.939116110952878 2.4901899902245086 2.4499989676701523 +4.248495254080147 2.5535623130906613 4.893405716732412 3.532719940798305 2.173537083944203 +1.4777867450712923 1.810260762786566 4.762268928880596 4.374108721980179 0.5110844535658569 +3.219163418707118 2.3985159252364014 3.9414154599360116 3.1932611207697503 1.1104941349476254 +1.9301835147573376 4.242447295518406 3.7265401876967315 2.142971192257999 2.8025443002982673 +4.487933416981808 2.772438797261061 4.157906736560724 1.6794017232028144 3.014284142467515 +3.129202733002098 4.210596105183495 2.815815276242163 4.066030823122403 1.6530125647008582 +4.457139750112848 4.101840522998867 4.727571051365402 2.874112274533225 1.8872061302899645 +2.4111676738270247 3.0051515942179865 3.7522179737162182 3.080792106392676 0.8964538989787412 +4.8503257405948865 2.92285703513475 1.5009334013241302 3.949906141557403 3.1165049483249403 +2.069029639391841 1.7293940507022314 4.789214709939216 3.4953009255281136 1.3377463192225942 +3.482309805317229 1.5175776389974835 4.749048104785185 3.465774573233082 2.3466920211552442 +1.4589818726768886 4.042742570077908 3.7300262962566397 4.600424817688132 2.7264286030527796 +4.06835429946764 1.830773235268789 4.932082605618187 4.910713472128032 2.237683100603699 +2.7367141563376687 1.6988110389006104 3.3232624061156626 4.14854677262653 1.3260230642009243 +3.2014206261998828 4.105017142254219 4.171415991677567 1.9571772824266724 2.3915141072907353 +3.4992598892353426 4.00110271570578 2.4260214145230092 2.8180037072074033 0.6367859453991992 +3.311980808775455 4.2301124764431055 2.8114081500542585 3.5960710193058065 1.207750627222463 +2.6522280374436034 3.8774442989854294 2.4988639509708737 4.3743724405634525 2.2402426167896112 +1.0985682191322286 1.3031472742279706 1.4726109566033605 2.3616281802575085 0.912252275271263 +3.505451091011013 2.594801601355229 3.819096507600335 2.902390094420333 1.2921428485177961 +3.944003970293059 2.2532036489103437 3.6929862241073472 3.6327946788197614 1.6918713748131096 +2.210569986454438 4.297231377077649 3.2501931567597575 4.827192632056187 2.6155464255491254 +1.4399911150255855 2.277890695746109 4.977627880485003 4.210970135944402 1.1357111448936787 +3.7809917183131616 2.5631343879596855 1.455930828555812 3.3609542688430234 2.261037546158714 +1.6580368273720851 4.203473858133547 2.5345788148902315 3.0069411539317703 2.58889471723292 +4.535386351608045 1.297403436934899 3.614434054793225 2.593140380237715 3.3952281404056337 +1.9096081333927302 1.4999601821218556 3.2091570924155843 3.4812048162258913 0.49175340162605274 +4.428241688533076 3.6821490370925525 3.3067612347492434 1.132026171589252 2.2991578544047475 +1.831114245847012 3.18690682266009 3.3220183621535897 1.1306008064274509 2.576913738347904 +1.0519391591087333 2.8057912212979144 1.8475799146445464 1.6114789306035413 1.7696724924997773 +2.1257490421356424 4.691756176777116 4.918565721722157 3.772215495787554 2.810429051858677 +3.9523724150502098 3.580795708276188 1.244075141553799 1.2833707907599363 0.373648761624549 +2.3779911778381044 2.110748961574072 3.032853877904693 4.112139975682123 1.1118798869524276 +4.486317705576677 4.339276247095789 4.576952730819754 3.3362955179512186 1.249340430128998 +4.314701031763792 4.033759091139183 2.807861924366612 1.38118964296195 1.4540708966657385 +3.6596091018350534 2.0764196031033757 3.5621574649844767 4.237710908742737 1.721296442879002 +1.3304916996298854 2.889997261235894 1.9250414507007143 2.0018554762267646 1.561396167280293 +3.0664925972620174 2.399469870575491 2.0370711811827618 2.1485460559708094 0.6762735878513512 +2.3950045354548632 4.9773738482204966 1.0025253993162804 1.5201335021444322 2.6337329810797083 +1.6623190644294366 1.1933284650747655 3.828917715457436 4.233560462822622 0.6194254880760873 +4.780103522779673 4.010722569814707 3.8288118064930448 3.203907791364197 0.9911872067926599 +3.2697548141623423 1.355295999656918 1.3445406619767177 3.2950765919849823 2.733083051553816 +4.451073391852762 4.42892957790189 3.315805557828669 3.4569476803173425 0.1428686362953692 +1.4488498816503053 3.199883930295063 1.1481585914513563 1.3262042091495956 1.760062635673742 +3.8460767053243177 1.4749526400405832 1.3542209413182071 2.092532670405989 2.483411673942976 +1.852629232767617 4.767520334804301 2.339246698065201 3.8974415506180264 3.3052324177362706 +3.5673897388430196 4.552150128579304 1.628919520087675 1.6936434085679575 0.9868851032078488 +1.8603551883487093 1.1174422495437049 2.405716192996917 3.1184376464902215 1.0295103228785503 +4.1304704872697435 2.251667587400769 1.426809231627813 2.5970676205317886 2.213459968772012 +4.293891876326249 4.551593117409487 4.363534815451725 3.6098679204243584 0.7965071991614596 +2.061457911116979 3.861208076952715 3.245561033549738 3.1241023590243255 1.8038439148227956 +3.610942272214015 2.355257618498787 2.8321093216996456 1.0750976795955176 2.159591132614083 +1.1199505318230463 3.2902065883043816 2.4106170368334303 1.469340914179032 2.3655891633530146 +2.488126880924838 2.0964907975230003 4.652771687568049 4.2897055652737315 0.534037293622986 +4.863325526057254 3.7319764853624844 3.5636980445299122 3.2630862050899725 1.1706058815384623 +3.221040281530135 3.9523486581934386 2.264425541928592 1.9677331529183353 0.7892010615011422 +4.008733076676281 3.4149054781371118 1.7153048513080886 3.182694590758005 1.5829920606969858 +1.4209613457953543 3.703373948905253 3.003478021417437 4.733818285230198 2.864172606426945 +2.909681630263327 3.7556020584869474 3.008524156782118 4.249455874470344 1.5018298501663514 +1.6710285192274426 1.5792271385220658 3.082148962307054 3.2983016843519457 0.23483929131818992 +2.9142591864984757 2.625572758198585 3.8275517170282893 3.6510203520291125 0.3383831803045486 +3.6726079639601337 1.1074846484628762 1.9100333244854557 4.774000133652208 3.8447579257628735 +4.9482055410873915 2.3699457129927746 3.5029993974071085 3.793362410520513 2.5945586176748403 +3.7021771663770915 2.014431197152689 4.6502875101912124 3.957985334483548 1.824217300412093 +3.6636692811570364 4.9494529829747105 4.255367210920193 2.7653669661522735 1.9680803990864857 +3.0685401400822183 2.6647111057674397 2.122165284843185 3.8793088672162934 1.8029507641726126 +2.193345101232259 1.8185206192429901 1.6291612979594388 3.672095535119561 2.077034831113705 +4.182941714126543 4.881487687997122 3.600510788201833 3.566916902888696 0.6993532917926589 +1.1716652709782798 1.4543806901997627 4.96627491692419 3.339907189431016 1.6507573998916045 +2.0218870440961694 4.916302379758736 1.907593655218084 3.2893832360323727 3.2073326271164295 +4.436246860839193 2.285281303900839 4.189487914083713 2.3727902356976354 2.815500538410265 +3.4504908457441137 4.667805081093109 1.2515649948801006 1.435643007842247 1.231153387047853 +2.800542365215083 2.283326555655399 3.6404318655353403 1.3018427270079012 2.3951015328158825 +4.7102819527985345 1.1355788899058505 4.688414646567983 4.431796187072949 3.583902205921353 +3.083800002461235 3.3207692721122606 2.5140356337856606 3.346509789070121 0.8655447151797048 +3.4505501115530803 1.2372390283270671 1.7252344088979799 3.7003121501147946 2.9664251271490443 +3.7157614531134326 2.277172188052716 3.5793018200648556 2.400179505892294 1.860072177451077 +1.695129061570828 3.593679034411844 1.153240802767451 3.8093727701619193 3.2648934174930475 +4.520383105697977 2.409417635900157 3.687277787610699 4.51513624890759 2.2674930753189937 +2.473317275352213 1.9492750387121602 1.130104999531496 1.1704882773310934 0.5255959236034354 +2.5491082289986005 1.7363984086134399 4.599057371140054 4.747804321025594 0.8262099655963557 +2.1757018158419665 2.1546873488807297 3.451434120679371 4.74134629534356 1.2900833407840608 +2.066270671257886 2.8721263699593367 1.6643169472380674 1.495517735485798 0.8233447522258163 +4.631670741166242 4.3975441079184225 4.826426864021901 1.3622778230974637 3.472051822501164 +3.258536708561459 4.722685505605549 2.7723243567284293 2.148396933529421 1.5915455159389595 +4.06698892076163 1.674057564998821 1.7892651518648117 1.7417047659961602 2.393403949127019 +4.359773530792024 1.8846839392551384 4.126406580609738 3.811828262348903 2.495000602094926 +1.296260259160007 4.6813036768090015 2.7577663987760648 4.49298524752116 3.8038800444295084 +2.6578647372909354 3.5208244723023885 4.060447657426392 1.1759983135784355 3.0107719145554594 +3.5699200992697224 4.069059333786642 3.4404532401869536 4.188218124831787 0.8990507761756491 +4.441030360491195 2.3483353173292807 3.9249690482432613 4.64500591436118 2.2131031680071667 +4.156578830064284 4.707182034305954 4.836967942538237 3.8657269038322237 1.1164555717931326 +4.150080616425196 2.2596136450232263 2.6813635968948257 2.483360133547977 1.900807918086171 +1.7888640523267214 2.1585482273822363 4.527655457552541 4.143925622586143 0.5328367250197903 +1.4468436433369134 4.700233493447146 4.413170708636698 3.442853540048584 3.395005290784852 +3.34513012563367 4.861838786233987 4.242206189612865 4.340459017675981 1.51988775222462 +2.437448838173359 1.8295414478625265 2.2631189657093422 1.750466094002657 0.7952134066171407 +3.7576956023425563 2.825191922635767 1.2032792694969632 2.0074616166197283 1.231370114990039 +1.2578357218409106 1.438157904185187 2.9724094396592955 3.0544634546130753 0.19811347964093107 +3.1679877687440574 4.338481677729641 3.1938233260618754 4.822920304267354 2.005994256066197 +3.3167559173326557 1.5795234864559444 2.420319305497945 1.923221589718679 1.8069539722756558 +3.2037460689231954 4.941176699026395 1.376500864433523 2.9819556505004234 2.3656183683185072 +2.5166833923466214 2.1734902334941824 4.365738170477494 3.554343676801902 0.8809895394669482 +2.5409594188514113 4.8695209467121146 2.6636706915089094 1.0851618529151694 2.8131635115207096 +4.110489136286068 4.8587152320480556 3.899614141895976 2.0617584175911596 1.98432758226539 +1.069786326219306 1.9712466199386558 2.9179047634500583 3.379888687192626 1.0129461026871842 +2.691183388437318 2.9318212175772183 2.4550424888852507 1.1091639331353242 1.367221873596481 +4.462886229955799 2.2055165945112307 2.0266796419292095 4.013710609770769 3.007326011291178 +3.7986379569496482 1.3003352369441088 4.467822108196779 3.8223567449934066 2.580337577892152 +3.9381503194388254 1.7928541893673224 2.9503085484002134 2.5352161517860257 2.185085166172403 +1.2222080837399822 4.390400635673464 4.867746061133956 2.104772992681327 4.203744072029282 +2.3140805189988356 3.855279043240111 4.8514487245646265 3.5462901374573215 2.019587044081889 +1.9244937643608808 4.46869085841295 2.280433475173859 4.113271295205166 3.13563922158148 +2.4838322596089206 2.7242507898820874 2.079813954746675 3.2883513659174004 1.232219032436177 +2.1244761797363365 2.3739176104408837 3.941888487600748 3.5368440781673547 0.4756910772393967 +3.9780420543978474 2.905437828412582 3.1884506577672447 1.1002963755782296 2.347523829873889 +1.1621931670021404 1.2690728264518252 4.484877036756836 2.268434739872553 2.2190177369777278 +1.2311343818020255 1.9126583711932739 1.8218787896869126 4.370511981917586 2.638182347120016 +1.401144640759016 3.2837796617833033 1.1383862958106463 1.906493130813431 2.0332984858021 +4.902867888202409 1.1604993336826013 3.5088996338600387 4.839398662037403 3.97184466738562 +4.943859484707506 4.944217779514866 1.327263314916359 2.115833844963622 0.7885706114446507 +1.946370186267818 3.7980352989260178 2.1457078919125108 3.0902260500160903 2.078648176200793 +3.5786897339210832 2.9262506541206856 3.4405792370077615 3.906958583976608 0.8019890573629277 +4.4404484601951015 1.2752326681716877 2.8308256892958354 3.9255160611410203 3.34916975089125 +3.339024052495982 3.6840519548705424 3.126242659051567 1.4855361573990549 1.6765924006692308 +3.2910136512858825 3.1711862908835156 3.81113388885347 1.6387804869747367 2.175655739990843 +3.590466152053192 1.4045794649164236 2.2154825876807323 4.65409614418031 3.2748949123514297 +1.404932968728374 3.7964266226533607 1.9026986570427242 4.500258463371158 3.5308014450286627 +4.366227018843137 4.436893934943642 4.051360223998761 3.5621841943550483 0.4942539843128652 +3.4300410463644364 4.665671092287605 4.8833396459241225 2.7036333290976637 2.5055740336300696 +4.641749877840649 4.639717843777917 2.0367627799212804 1.8988155168926029 0.13796222866978938 +3.1583346833928623 3.6475735541743344 2.5293204264311093 1.2377531495349197 1.3811229863529781 +3.7001218388016883 1.9162095860639763 3.3489005960076987 3.867933174088469 1.8578852877874106 +2.3996265887580357 4.68394675150523 3.4736098744738424 4.19541110109242 2.395645135799844 +4.791782175935196 1.357406158660536 2.736706755887303 4.093019231210675 3.6924953837139953 +2.6799340633178472 1.500664515139722 1.2501616441000376 2.3907084893108523 1.6405864114336013 +3.4516025621969497 2.7945525405568286 4.020498829077541 2.1294224933722754 2.0019701392382796 +3.6796085806429346 1.8027815271904561 1.3622368386328718 2.3367353222299387 2.1147404292499106 +4.658165131182971 1.993752128962274 1.8899727589366346 3.8501461353766184 3.30777513022074 +2.7453181143553542 2.15284212820323 3.701627208144536 1.6959720262380729 2.0913346224062708 +4.963913316511288 4.511423243546566 4.857892993905233 1.2241732814898487 3.661784566919218 +2.6392938955314715 4.268567306103327 2.268358752149175 2.28161402898293 1.6293273301459055 +3.2474873647119895 4.852180168913394 1.0604608242316602 4.283427603295079 3.600354684583478 +3.502311057278956 3.2676141056201815 1.6339943520985747 1.1343585225322599 0.5520132437762165 +1.3665819374359969 4.494754905758415 2.5526901530630637 3.573611396912578 3.290554103169606 +4.482905248023586 1.6190493706947384 2.182330747980329 2.0645826387757173 2.8662754758278632 +2.464332371168255 2.7123087195412645 1.5610148737520166 3.252377245117294 1.7094440443087884 +1.4414994782207877 2.5806828489435034 4.289664702412707 2.3612836939720876 2.239730355611056 +1.9811701401251836 3.107621282225254 2.6803563627842646 1.9574120820008694 1.338484444682109 +3.181276862509966 2.1271085729007457 3.8754103338150037 4.48555433872227 1.2180092321250722 +4.436646701569742 1.5237588120141132 3.3966291558214383 4.086117688852385 2.9933777399955748 +1.6735691475770507 2.1293020297935494 1.83242829185291 3.104247033955735 1.351005319270568 +3.3866222597436932 2.637499882385711 1.769284251925042 2.215769182345711 0.8720855057568749 +3.8957811314965416 3.169081447174637 2.099535428458643 1.6677334689237813 0.8453078512895181 +4.939357072271795 2.0476668139973575 1.8992350874936457 3.5810682975738897 3.345210829877259 +3.1037375267651908 3.4462926061890418 4.758340760476006 1.8721823414976404 2.9064160751480133 +3.495607450799872 3.8757764721242114 3.0478764936410006 2.1104908853388302 1.0115435054542814 +3.5876915071896054 4.03898958898794 4.1131747798958544 4.35395757874355 0.5115137484523621 +3.3185567343801665 4.337683685630532 1.0275543327207952 3.5167638136954853 2.6897553016843654 +2.3074214670414777 2.2522094282181118 4.050209984216933 3.975006383596702 0.09329496651631322 +4.018805744046052 4.572508457117395 3.0176842631749365 3.7299915830292756 0.9022019798141863 +4.355671500396772 4.78949496905779 3.6095939253066884 1.098509470074188 2.5482833326126397 +2.038299696789916 4.308823168858627 3.049673920315967 3.3988793030627704 2.297220328256368 +4.469729483443478 3.889618782922859 3.638361865211425 1.7507904692738179 1.9747035725952313 +4.47329418014839 4.954372508252702 2.5034056637780133 4.855111744636655 2.4004078504535755 +1.5350110414032758 1.8869664434709934 1.6263885749899 1.8996801318665106 0.4456017056797364 +4.913542857833674 2.3561251273178274 3.1696479548301615 4.273510752193152 2.7854799449572187 +2.5360315118497905 3.959544609203218 4.82439312691617 2.830232038537191 2.4501159125114023 +2.2974229074154078 1.3727170601206389 3.7734096768365646 3.9549187253728526 0.9423515473121934 +4.721889491286004 4.755461788757573 2.5599590318254783 4.079906780082673 1.5203184720938034 +2.3935381617771645 2.9489557079896644 4.511558277778587 2.4051222531061662 2.1784309437479226 +1.0206904117903273 4.079499658678312 1.5082715868038425 3.5726153148483157 3.6902342793329526 +3.876748107587735 4.00220366849549 1.5717887756728324 1.9273735691615195 0.377067159963675 +3.975932954353496 3.748196105039362 1.8354303384104935 1.705278032373553 0.2623045849813951 +2.9400741257045158 2.1633303239236676 4.759350858188114 2.2387705391310577 2.6375473604132185 +3.1009689294892744 4.759041969036788 1.9790718427944847 1.6875302176614748 1.683509050661601 +3.7075911213051107 3.9765266913843527 2.7324626278635002 1.7590749258013303 1.0098564053268755 +1.1761667946069632 2.2004078641930325 4.0296163557043885 1.7947937513308037 2.4583534818341217 +2.239400738473251 1.0744590294800402 1.9238848189006434 3.157035997477459 1.6963935317541774 +2.4312415039735926 1.3709088510936782 2.688836120708673 4.349739669230258 1.9705090540910872 +4.2198522638805995 4.364759087655186 1.7480226914373693 2.763744343675608 1.0260060732773546 +4.567953719735691 2.152020930671052 2.260862686136744 3.6358105880061573 2.7797864979405786 +2.257540691925695 2.608125122220907 3.0278995527859895 3.4632171635297113 0.5589372639116493 +3.80894645083533 1.560272424107359 3.8809436395546846 1.6628275703401663 3.1585714769478708 +1.0488359463251875 4.199643882307024 3.616291942632396 2.2135622579336225 3.448947842136967 +4.461637671920493 2.555158897689181 2.4634394914923257 1.7562380587373938 2.033419578710984 +4.1655499915942915 4.411305189028204 4.159589767279537 4.961806248315092 0.8390154346082379 +4.298098606339611 2.938449893871216 4.063791383927736 3.046807179894341 1.6979109200928069 +2.467063490424986 4.4991186073273 3.481439836012744 1.077475110353718 3.1477443352886447 +3.338404241879079 3.3086657506463326 3.4828838606860537 4.215809902072001 0.7335291132616862 +1.312061896762986 2.060746775094507 1.3715276619767813 1.1947101727125817 0.7692811394750166 +1.6201859599859927 2.824988349307428 2.3424664554382515 3.006393283659989 1.3756262684854548 +2.6515641218982027 4.407368074169258 1.1712984827102506 3.988691971494201 3.319721914476099 +1.5780095958575764 3.2518131795446235 1.0085014325247266 1.9227887938848673 1.907233550435418 +3.3917697478414253 3.4975049174536297 1.8926909831448726 4.824606676204773 2.9338216641956683 +3.624173716592276 1.5894952133430862 3.747283393625323 3.9836304615816833 2.0483594772685607 +1.0904567918938848 2.7274455807458273 1.6220198642755053 2.374184314522895 1.8015225935421701 +4.819748835936835 2.5954228970136697 3.439286376384468 4.8476047312423525 2.6326766742606353 +4.183799960479122 3.977549000386488 1.778439670645477 3.142610203074073 1.3796741282221872 +4.201474577705909 3.363782372747283 4.624183466803159 2.6119130998937794 2.17966975934201 +4.887121470244656 1.8526642596327672 1.5020828759907743 4.987483456970704 4.621249589984263 +3.6793244845237068 1.3147681003308596 3.6106579767856055 1.160305223922475 3.4051953699444435 +3.9999066104064966 4.507118053002072 2.072158423527573 3.5956211486889784 1.6056780880537982 +3.666561357860011 2.064587255605367 4.627437709544086 4.614260391479311 1.6020282975047455 +1.0290027157983679 3.8366851935933663 1.2221299894549968 1.8214764185546777 2.870940096587109 +1.4054017690444636 3.103871910826547 3.6399004879686965 4.139733554381225 1.7704897392542556 +4.515707670545373 3.392152521009325 1.4192632562884802 3.5730655927120343 2.4292469364872176 +3.094374127756661 3.6270546437830915 2.350192547206494 1.9524963349034468 0.6647637245174971 +1.9212315893414362 3.815800420269613 2.238584696303024 2.071210015308669 1.9019477750355085 +1.8128648470037363 1.6355199642580343 1.5743221311421656 3.7288815914748654 2.1618458954202127 +2.533813239337124 2.449393203145578 2.1355468051572575 2.3276362111280906 0.2098215489333961 +1.3890777089362443 2.377623924438911 1.168917850806444 3.5210294070597827 2.5514020446109913 +4.42334339959661 1.7056514631605162 4.182440364731631 3.996456721889153 2.7240483433255593 +4.028694516458388 1.933303082017051 4.980711780380181 4.912958354951094 2.0964865347021666 +4.37537435173912 4.352049179526975 3.942408673230607 2.7430257212653664 1.1996097403420753 +2.377046823091032 4.388056248209793 4.3604316476203655 1.3729623469624084 3.6012680725392037 +3.7506513699222443 4.673946143226489 4.82079735766017 4.52652342021541 0.9690564424584253 +2.490850586021826 1.284923033852722 2.5263199682878055 1.6136327094144844 1.5123687690475045 +2.3260318641775655 4.251986538780368 4.256097187285598 3.2037508253007285 2.1947059653190855 +4.85498868591344 4.02600821626654 1.3762867791652451 1.5752169418324034 0.8525150020232944 +4.234393727887639 2.256903990955466 4.546203822634784 3.452040981080417 2.260012828173858 +3.547206449899631 3.667320685163252 1.091135365279047 2.40072383053451 1.315085312001896 +1.998809992636648 2.540720356417339 1.7569698320665466 2.7779185340782817 1.1558560007684209 +1.8030817976886349 1.1888462363658934 3.555630576435901 3.3365756739645813 0.6521275757780702 +4.071125281253911 1.8342308330417643 2.2803219539158013 2.534947357544989 2.251339794126078 +3.501762403406545 2.72807739983224 2.9074304905369077 2.6566272924431495 0.8133208032073377 +1.3753714729845306 3.8898773735272516 2.925454775882375 1.6199872295789044 2.833193505272057 +1.787984469663522 2.234165538326081 4.259604909758968 2.5751280332317013 1.742567041346737 +1.9730078281590635 2.1475605205616777 4.7271161449704575 2.51335983495096 2.220627308346933 +2.4425542384471344 4.1742592022378435 4.631324167211678 2.9525178781530754 2.411885701645104 +1.8168106503141144 4.179307820722992 4.2235973639658795 1.9349324092652695 3.2892826201262637 +1.7574816655523864 1.9725625807830878 4.40941242132881 2.2815568747212818 2.138697974779258 +4.451954761010322 4.306254440035785 2.511998567875187 1.01386678924155 1.505200122802303 +2.665301125077078 3.069676844306654 2.1619090668784082 3.998113961560321 1.8802042808046822 +4.267711850086643 4.1393831638339265 2.326934988420611 1.027955211268849 1.3053033031309582 +4.41119031566449 4.599168242035361 1.1317463274859123 4.366328287112722 3.24003952975051 +4.3032152394960725 4.193859220665719 4.9595149701973655 4.133968585611811 0.8327578111051887 +1.9556596684737677 1.5780962181066363 3.5261672701791555 1.4765231715046205 2.084129336265981 +3.186851136760525 2.1003718860136975 4.083195455411355 4.002871922143754 1.0894443686118072 +2.428345241849336 1.0323696468006518 3.8672252516170227 3.6065341125493138 1.4201083521900528 +4.864904709801739 3.6031543196916704 3.831936294018203 1.2353041289966478 2.8869556019044422 +1.2980779425622195 3.6868403738610587 4.620976684736123 2.938068349504341 2.9220483257429795 +2.1202366932406056 3.6761855508219523 1.8744529495664466 4.490394157712881 3.043702556408449 +2.985240249727072 1.1910665434308165 1.6525657974660488 1.6569410109905132 1.7941790409148766 +1.4359369154521615 2.2757663854710026 2.4555865517350126 1.724578940896607 1.113411723405049 +2.1735550442073865 2.9130016245668187 1.6407458993906388 2.9473017879985393 1.5012892909966549 +3.435247484161332 3.7958157852320866 2.2125212901184503 1.1455845634302917 1.1262164438921556 +2.8264142615235315 1.524359908665268 1.3488979899916624 2.7253435323240645 1.8947157752032076 +4.3714846997736245 2.1293844906008896 3.6658703352205713 3.3331190649976095 2.2666576176845536 +1.5733075713501599 1.8544563168076382 3.4871640901835805 4.898114611750383 1.4386889835478502 +4.129367095504663 3.2662457877439564 2.670825968793608 3.444307741149165 1.1589876807269552 +2.5814459294058976 3.1036675432770373 4.308625752945935 1.1886669683386275 3.163361855944161 +4.147064288906838 2.347110358484954 4.734225407639811 1.493550059301458 3.706994856345109 +3.5741375935428725 2.5282915253215466 2.00267544268553 2.5020435255402007 1.1589488688410527 +3.524494008099375 3.0570455149266653 2.2283848063677585 3.179139099176455 1.0594535473835567 +4.632564275872328 4.442077568255386 2.496450230925999 4.28383090486926 1.7975023948147077 +2.8274570476513503 4.614684161033834 1.4990779192258668 4.383795189665371 3.3934900154827963 +4.822063439111949 2.5791441029940816 4.994723591003119 2.420037531089608 3.41462962200066 +3.48795044024044 2.5941885495724883 1.2861312963048346 2.7657493047180117 1.7286063079923457 +4.438963491858076 1.799509644015131 2.62007010644159 3.255930279152627 2.7149649673859586 +4.963253253400815 4.47011391716539 2.0067399608276175 1.2110212161140028 0.9361381979341116 +4.684722876681072 2.798093815011065 4.338673335109769 3.3682645570513987 2.1215707418963405 +2.435803951579851 3.5504932759518777 2.6443897794117848 4.386540600433994 2.068241226998757 +1.6268113395329564 2.144949717435064 2.9698733249678915 1.2580769418610664 1.7884949638935623 +1.4811759389620258 4.570210246191025 3.3669280590707085 1.216436780387947 3.763873761290137 +2.459372641828519 3.6683934853305527 2.852906890877597 2.2504743882732883 1.350798401026763 +1.7196891918869248 2.438218276379831 2.2289477056439977 1.576098054757749 0.9708226985008698 +2.438607510377376 2.583062791993172 1.2404941200142519 2.470032445782362 1.237995081944733 +2.790445465359176 1.77919361801451 2.936988029571834 1.240208192345833 1.9752701371647103 +4.537300234979067 2.76945957138272 1.4064943064252815 2.046291958940491 1.8800536290299663 +2.741010640819967 3.3068011724709647 4.212265399325629 3.645891569950789 0.8005612033484004 +4.421311148964168 1.0871117614646288 3.317128345891435 2.713157288601789 3.388460800075143 +2.9411429158417217 4.326406860874634 2.584919072548387 2.3929442192615804 1.3985029644954774 +2.709455148132135 3.3275718094661584 3.3238564053976583 3.6862340214291667 0.7165094162810416 +4.137145052532753 3.8702179197286757 1.7246252774426378 3.3029938761559823 1.6007802871197945 +1.3381477538070379 4.113381189046843 3.592311132325996 4.959204123441577 3.0935929061907657 +4.636672258970416 2.4440470810304564 3.2062121209236656 4.502968678649969 2.5473874344006666 +1.0790933081134177 4.848106851464325 2.1494636408695 2.536708186903412 3.7888548967195317 +2.3742881497999915 4.504907196311264 4.33819665349602 1.896906511440283 3.2402831788371715 +4.055011963958091 3.779724796288988 4.259743787522838 4.177267613267453 0.2873766587652541 +2.4345790644088363 3.8295916705365753 2.7591013701057157 4.181847801231713 1.99255303029482 +1.6832766829747707 4.3265691785558165 4.876093553636392 4.209698388877779 2.726000317829903 +1.0449353165350814 1.7253768187930407 3.353652670465209 1.5900594775723458 1.8903072734381339 +3.933354096446593 2.7820499026773406 3.0709238307033124 4.584064376089547 1.901340489413303 +4.098118832957185 1.0106555051734207 2.876931667164981 1.5085143641110532 3.3771283238436443 +1.498163994674746 1.1589439464752922 3.7392304875204223 2.8666630121457644 0.9361860072561137 +2.9619242818039933 1.660351851865332 2.231843408143249 2.099369577716447 1.3082966430150238 +4.977291427194164 1.4314640747062968 2.644010495682364 2.2766264151379323 3.5648089256352287 +4.724624069632515 1.847739128404272 4.775992513232208 1.1263322676481016 4.647202047820051 +1.3219364343585003 2.9790218362562504 3.2696352693179325 1.0025854510145868 2.8081037922149283 +3.4654250589717046 1.0159848944826342 1.1638509394159269 1.561387729596079 2.481489999770094 +2.605326896234458 1.8930346199048929 2.38579545270721 4.671542752528525 2.3941597702658 +3.8821245165637848 1.0941617901114067 2.9223192771414315 2.827362876070821 2.7895793378558102 +1.1040322714378448 4.344093171501017 3.198950678755311 3.8614938120474287 3.3071072011035128 +2.4357952284762874 4.647460121570946 2.545463478947337 2.5027773805552322 2.2120767849112624 +1.1532640538419283 2.461613420143465 2.7493571109196306 1.2478167046490625 1.9915827012616916 +1.873814793834311 2.2878068036848442 1.3064666650551708 2.814441735066139 1.5637705061787897 +2.704263346691589 2.72860938249406 2.8506613831516834 2.0553044005415737 0.7957295138713616 +1.0192292416165571 3.3235689511954756 3.7805001994829706 2.9910317622462537 2.4358246879722767 +3.8788496334904896 1.857621015188288 2.012625509293223 3.4128080619852383 2.458836372820883 +2.9209789360060294 4.799993241107422 4.269174312827344 2.2970075322196464 2.723992762345047 +4.180586189114264 3.311498837845365 3.40641203731576 4.974112614987533 1.792483730851692 +3.9509855909218774 1.7212681863478636 1.2066797562507028 4.57058678701535 4.035778762009645 +3.9230660922704708 3.4778141405052003 1.31514092502769 3.7186713691300373 2.444423837283054 +2.5779447762943346 4.84351855638177 2.0479997481599224 2.264991466059787 2.275941554314787 +4.413379033743658 1.7021060382799482 1.4369682497048597 2.1639619110919845 2.8070484569433094 +4.429818486405608 1.9512605598949162 3.2709461347130415 1.1757308878647872 3.245485530039284 +3.8866432631087178 1.144684039043069 2.4875411365736255 4.619597793141353 3.4733277952496007 +3.468767998510553 3.2621191326463133 2.9876554606664167 3.965829171031512 0.999763752799827 +3.157465468970782 3.3491196042107436 2.1399824533600498 1.431825188756373 0.7336334363737378 +1.8761776175979845 1.447504189838281 4.734674166742961 4.402197497933552 0.54249575387265 +4.763665898516307 3.3868865470016227 2.442587750251123 3.6210594196532835 1.8122684288870428 +4.956521955777825 1.0696160024275772 4.465483696455763 4.5454308167809385 3.887728055334875 +4.803640494951425 2.48709629772232 3.7157862148512044 3.1127607488256 2.3937453353252174 +4.137689115952478 4.530129599525857 4.90934386429058 1.0964189197305512 3.8330674617067997 +2.826383093785032 3.54740167958163 1.4316529160235723 4.84154403181658 3.485286964172134 +1.9415414162627016 2.0392346889163995 3.463697804893485 2.9317676820955536 0.5408268032019236 +2.6965298300857 2.538285444414097 4.160245202235514 3.258394939736231 0.9156282988017622 +3.83242208368505 2.0108506138857076 1.1638656723147651 3.8309721512646635 3.229795595644322 +4.219799516666601 1.308461915355081 3.2833359610146724 3.1490850541255817 2.9144313227130367 +4.849976558041211 4.936524112484719 4.924468170772482 2.477028196608225 2.448969764271762 +2.5725280465946754 3.2638650295477674 1.2429390231591229 2.797725824513847 1.7015607017281338 +1.0069940039998064 3.9149350796161184 4.8726094840783585 2.9433654809814542 3.4897139886732726 +4.917906625873618 3.0115500469334497 4.087392819840709 1.69582135401344 3.058399823801272 +3.65259176127007 4.259698345890964 3.6675307787232283 2.5314625241124107 1.2881108198538342 +1.8068979996310723 1.7946482506530894 4.264760311899483 4.991966004232175 0.7273088582652447 +1.1422700276721964 3.2487880950154397 3.07834775215797 4.925180241970996 2.801465440349478 +2.0273302419525026 3.954154244047817 3.7873807847619894 1.8575460417957577 2.7270703823352536 +3.9278216128439034 2.9263597222183377 3.47720985339273 2.706411232980988 1.2637469808486101 +3.0550146672912426 1.3013764168100441 2.148573886911781 2.2620384174830934 1.7573051281005603 +2.0236483524409703 3.6625199774793313 1.2093992974542767 4.468221973640675 3.647715098274886 +2.6895300295142075 3.3898646161473427 2.1502749099256055 2.100390907706128 0.7021089280959453 +3.7006403316742524 2.790079520270887 2.332893667426764 4.841349922540809 2.6686089588181208 +3.066111318234735 4.1959084719704 1.2622911907905259 4.09865966467675 3.0531013295082223 +1.4491885325298144 2.322882831632323 3.6530408505238796 1.5713403286391845 2.2576135167692533 +4.223964255366833 2.540017658317924 4.733440255562327 1.1038423347757917 4.001206968939565 +1.761569090050688 3.065622318018228 4.170068291245159 3.3626000141032653 1.5338056721641955 +4.973843289239822 3.4096226141018984 1.3443329713114336 3.1073576930728493 2.3569137638171784 +4.849494558029017 1.845917270624799 1.4836932933131175 1.4107470875692791 3.004462958723722 +1.4170837012701276 4.0295310862384355 1.9410699492628427 2.6647876858058663 2.7108391138934653 +1.7412034630802937 4.058500014921661 2.481382003389166 1.0970992221598115 2.699278075260859 +2.837747014851012 2.124742724180456 1.3346134364911744 1.5609411554618822 0.7480637371836084 +1.4438905301331264 1.5264953320428414 4.108639638248914 3.9770283265061153 0.15538690638919192 +2.6347465855649093 4.2639029111123445 3.757564928816965 4.387231965419571 1.74660553934056 +2.335567525049555 4.199766435941109 4.9180204833580845 4.123741921302138 2.0263553522299387 +2.1147760339721935 4.863578108996419 4.029879445212629 3.1576719092264116 2.883861791675988 +1.3884072753638197 1.0587596232701144 3.3844626377194 4.021720852537006 0.7174716767116415 +1.3805069718145453 1.2714160472342528 3.1195458194074046 2.0055859922280845 1.1192887591659104 +4.533010386236544 2.4253751440804336 2.021972053638501 1.746284955035796 2.125589257197736 +4.018430364539946 3.245241916898405 1.5914647526401104 1.6028818615982101 0.7732727371007578 +2.0667286290952815 2.644049971454329 4.336982313015914 3.2683936706722276 1.2145705491609684 +2.954391599169279 2.0038980298446605 2.1848716734042792 1.9940380276360332 0.9694614513659908 +1.2047075485472098 3.523968193909247 4.543382022542749 1.5262655320734297 3.805517291799767 +1.349251773305594 4.103332082650226 1.055614462159558 1.4138807279212804 2.777285197364987 +2.8573716961063584 1.3525562225634262 4.524073396444037 3.16208310549288 2.0296519805275626 +2.236473552667831 3.073376580504585 3.0333106814320896 2.8728857778842714 0.8521401455633064 +1.9622352261449767 2.307843028756641 3.8477880392391457 1.648894221397911 2.2258883115211474 +3.2937588712463217 4.263605797854913 3.3420988503679654 4.992976548561381 1.9146801914274143 +3.4376677292978277 3.807028979131683 3.0751364580583687 2.599154777274432 0.6024834382128104 +4.537029600547058 4.9496255287652975 4.7619799052326055 4.729788079620665 0.41384986845292143 +2.280699687139526 2.948397491595577 1.4645829469256415 3.5274338910339886 2.168219171505531 +2.296370602695574 1.3471154177535545 4.143243819517421 2.0633999925414708 2.2862274057383867 +1.2998826576339333 2.8584115698333568 4.044339071535813 4.750834118819578 1.7111831059235034 +2.113874077422856 3.3595462097679563 1.7994301487243236 1.716619816195927 1.2484216485124937 +1.6692191219633061 4.635250427181656 4.643258894101988 1.3313043385582808 4.44594024718304 +1.787099113188514 1.053936902019021 2.105056777320385 1.0123392379150267 1.3158869437801417 +3.9781004150737256 4.7658861922451345 3.8728814960120848 1.452689611879614 2.5451788123301355 +1.1321210244307425 2.158688380096485 2.527610364825778 2.1845956107971274 1.0823583774332286 +2.2962037814818084 4.297163416935071 3.4433391083252562 2.114469835375676 2.402026853992852 +2.429386741658778 2.2545765381010305 2.2735201635668103 4.43436356243377 2.167902857993138 +4.7048039098954035 3.2663058054449543 2.3533837157085804 4.839810529857812 2.8725589808788663 +1.5181852399542444 4.428546510264994 1.1395032141302113 4.811883647061954 4.685784968167525 +1.3539737809210375 4.10755893519792 1.6486915572231333 2.4791354794105427 2.8760855880435914 +2.4366475411789312 1.4278614624389023 1.3247039288608171 1.0393043569764968 1.0483807840147763 +3.6773460335270776 3.815690838035546 3.1875326851556376 2.1512196278447413 1.0455065938039527 +2.53720144437684 1.7360927391741843 1.559518808069162 3.9537779787909164 2.5247281307373868 +1.6868768500342064 1.423681428405215 4.472590730437865 3.505550943080828 1.0022164338594763 +4.410025703841344 2.63127888839894 4.0289849513092975 3.5117671542649083 1.8524185496334098 +2.487666915608189 1.3607483562621425 1.52774282595739 2.934812183406362 1.802717286784157 +2.2574654176004847 4.134211872797462 2.924323430309039 4.550703649143522 2.4834028817955667 +4.727566219068857 3.664337251911263 4.680719605029033 3.138349504870824 1.8733289520169827 +1.7298895787550843 4.738293675903391 1.3946182071972504 2.0784972955013594 3.085155720406731 +1.6946620060838296 3.5527861791951945 3.023659389572569 2.7840751675066158 1.8735063496459632 +2.3810344917302846 1.8818113103030085 1.5869707641495792 4.888177150435321 3.3387403896871253 +4.249014391635652 4.089819201862715 4.558233995160709 1.1775057572968035 3.384474335363947 +2.4375727390926634 4.41554299503764 1.1682750527421524 3.7378844973357093 3.24272401402701 +2.155395948490431 3.7221651559576108 3.3758999816050617 4.63317799113057 2.008858816020618 +4.142688869056036 1.6120930191983565 4.680073036382877 4.546968606031972 2.5340939494612167 +2.463004775850005 1.4183710439013066 2.1540673420054977 1.8762979475219992 1.080932685432721 +4.771635511810015 3.700303173963515 3.1414205888355515 1.8394429109331827 1.6860898113302538 +1.7556164575284394 2.5346363923202633 1.265479018373922 1.8050333343169926 0.9476238276108576 +1.4523737389371942 1.2789260635729258 2.9813306101090804 4.942591146366556 1.9689151802884326 +3.0403737445821073 4.1561912545579265 4.085907971874481 1.0050345097722677 3.2767102412411013 +4.484406861529916 1.1164117872810966 3.4091878055427163 2.1810779564227585 3.5849190537123365 +2.9927160756555775 4.880522657433257 3.422565526894713 2.527665215359898 2.0891769330978733 +2.9224901464056363 2.479850410982597 1.2121077480708933 2.006049195202026 0.9089955758132464 +3.302891458486008 2.7566184740384383 3.7153458103780848 1.20726277539476 2.5668842365615987 +4.537508080467456 2.6017727259074506 2.1301845650792792 4.3257776783216775 2.9270634570864695 +4.926082343146229 3.286825094514415 3.0745427794469027 1.0746312615159517 2.585886773767333 +4.6857046984214055 1.8709370609011313 4.522086956181278 4.831632458284723 2.8317371472479467 +2.1404983381942486 1.398779358192444 2.1676394278561757 4.984000773988361 2.912393908330811 +2.154737914132444 4.663771277508967 2.973069171729928 4.525665957211433 2.9505601496705687 +4.234098600531237 3.628509516251074 2.4606381928965133 3.667420408935693 1.3502079306342856 +1.3033238996323515 1.7768743715154223 4.739230297690369 1.5444298955716134 3.229705816138498 +2.5393349383664967 1.086108294574291 1.8123159008691285 1.017333938246325 1.6564612881450513 +2.8538034651688835 3.3418713056627727 2.083864806743207 1.2730918680463343 0.946341891203983 +4.732949155713215 3.00581904370333 2.127449267089943 4.346609398167817 2.812054428914356 +1.5892393333188664 2.5717486872137885 2.5149614994891816 1.5755430484689565 1.3593497182874819 +1.4361584035629495 4.275351764248679 3.5585569259492944 1.6848083168619366 3.401757309012319 +1.555027121094457 1.6260179347691488 4.4078432583398435 3.937548582617575 0.4756225159082656 +2.1442638100025695 2.418001429911906 4.857259764078649 2.3951238438418443 2.477306112347436 +3.7413324690804632 3.938468932802538 3.4345252136350815 1.4967659497141677 1.9477612148926693 +4.526053422627408 1.8262188821032925 1.037414738952136 2.1611182384425867 2.924348833667787 +2.2618346603050883 1.215724842175053 2.9745702650317076 2.3878117893712143 1.1994295562255757 +4.03234828641833 3.548072376298615 4.405169158282868 4.779184981432516 0.6118913245737244 +3.449697423246944 2.2075493004361753 1.6825470746502558 4.9321058964777675 3.4788740269689735 +3.8413217377887094 2.7053997103247704 1.1348458360087963 3.4407211665477746 2.5704824240725763 +4.607770195402269 4.288312781384686 3.4434119033915453 1.4361646658723481 2.032509412499546 +4.746661775128329 3.545072020136518 2.2292032500068752 3.833443553645693 2.0043464997650595 +3.939392492880183 3.1135385694213285 3.576991688968887 1.6860354140476073 2.0634316893361278 +1.980163023999165 1.5569790209051275 3.861839051721931 3.4173098850948658 0.6137514810221214 +4.880984698921691 2.4127000597483677 4.992023584278051 2.023347971873464 3.8607595045100562 +3.2499072704112715 4.650976162525625 3.0132840930908897 4.513977528238721 2.053064740028024 +3.0468676206231557 2.5163272543197635 3.7289644255505565 4.450615119362246 0.8956856614662484 +1.4149790538561868 4.1942330537951324 4.188398900536098 4.115060236333191 2.780221458057558 +4.962397092819008 2.9174238316677092 1.5958815352623694 3.491280083486808 2.7882703053031075 +4.530042479267673 3.609416640666253 3.933178630791041 2.1974869101121723 1.9647334892890025 +3.259934374279854 1.1365830868822133 1.069928984493178 2.6280616154896794 2.633704232724187 +2.347704069098172 4.673041628191212 3.9106732163949527 3.3540537971501965 2.3910290549487576 +3.6490423679869544 1.5951425564001287 2.9353906335047584 4.539804907669643 2.6062712059915083 +2.331407555507056 4.37733428260997 2.9972232511036836 1.8739561704205183 2.3339976664985174 +3.8141468629589492 1.6935350135347376 4.182857943065708 3.772893544939139 2.1598762519296457 +4.449299117361065 3.9131184352361594 1.0868149817434642 2.2554183001804615 1.2857384803084533 +1.68727403835975 4.493530678790549 2.2780223686637955 4.131680767780596 3.3632017174975117 +4.437266495962478 1.5375325862114742 2.4778622643723724 1.0970982016471367 3.211692099855362 +4.07509917494154 2.8190674982057033 3.863771056620394 3.886273681014284 1.2562332351392596 +4.082273944924293 3.549369981466501 4.658104832457971 3.88446136687833 0.9394204841832549 +2.0495040883007696 2.3727941183723664 2.280846082124233 4.719334429834252 2.45982557622715 +3.1879109376670725 3.490959443719706 4.5049141024423305 2.5473666277495983 1.9808661016577134 +2.6005305795165388 1.387723464635502 2.6627742261412117 4.867376977963915 2.5161825035657293 +3.202403222864622 4.144750144366809 2.681093951115755 1.8715218087762482 1.2423464790938268 +4.8079171753482655 3.598764956691109 4.19836344925417 2.5174025366478956 2.070671069386358 +3.19829449596916 3.412759804377939 2.555917408317844 3.215842034972333 0.6938990426394456 +1.7190043923814766 4.991672571626385 1.3007651917497465 2.7968644368731876 3.5984260396319265 +2.7374396021676577 2.17990475697494 3.1693924244113423 4.957281836043775 1.8728036874780636 +1.5844040492721776 1.9055073539197638 3.0442770293627595 3.873775533760522 0.8894802420817035 +4.436940978206604 4.538965341538559 4.131073033090336 3.8494864165112763 0.299499571535141 +3.1710295111159637 1.184387790762789 1.7561734998447016 2.8703054607565366 2.2777259166486807 +2.6262846652857146 3.5588165327246934 4.06194891593748 2.461471618667279 1.8523345439921362 +1.7650807331023906 4.079819879908211 1.1473154694873169 1.2673049162305725 2.3178470150303467 +2.0782572272694146 3.4384953340193936 1.6940876572335695 1.0656302172445802 1.4984013016986741 +3.511597810218387 1.5163089538804413 2.766746104592345 4.782290040442437 2.83612323032136 +1.5472795616245651 4.771839872912665 2.123694738872012 2.3221802162583556 3.230663350748216 +3.8701839069019823 2.7397270404861875 4.943610502632879 2.2150310191912763 2.953485859841733 +4.078427510999608 1.789202543370061 3.491558366740917 1.1733139301594964 3.2580374798579608 +2.4594299339732233 1.833734749063066 1.6668316948988537 2.1450217865285794 0.7875025258071249 +4.43698963193701 3.823321355063625 1.0964124664175992 1.9186897432089727 1.026025669254033 +2.248945636949884 3.2038709251256194 1.4275252285615916 3.226467117832736 2.03668216149991 +4.770724962849554 2.4436125242117157 1.7086030053665793 1.166033475691115 2.389525893685859 +2.2696468080361125 2.9893694162409368 1.9170177577907284 3.6011539322294226 1.831478988908733 +3.6702821034892126 4.588017484329181 1.9450458730919267 4.833223659869274 3.030480020933908 +2.454168995735766 2.238719519992009 1.9641688643652113 2.645393588678112 0.7144827510958169 +2.9056307040220855 3.5438299888110167 1.7403272265892462 3.5624618016448153 1.9306663970551834 +3.8029177350835255 1.9384300581288882 4.553209114546805 1.212029257777477 3.826198783753506 +2.8831433464607614 1.179184336340335 4.222843919070119 1.3199428117342182 3.366052754658278 +4.333219702473815 3.964445088908441 2.4636913059007153 1.7909380724547748 0.7671972554188778 +1.6148286376767516 4.660491854667873 4.83346639402949 2.401192328911387 3.8976943901720733 +1.2126945860496972 2.8335951738800933 3.187195696490858 2.6008128980396794 1.7237063270604882 +1.230086067707619 4.359901599014069 1.2584244186036848 4.967292178842044 4.852983136478281 +1.5560626320989699 2.403830964438538 4.898881884337143 4.535141799168668 0.9225063657645848 +3.559064065873485 1.200924051146286 4.873596246305125 1.899457919265092 3.795566244636771 +4.538917537489297 3.693333189456665 3.116551036907535 1.3844942022178572 1.9274422866153471 +2.630491242056734 2.7734137963358823 1.1863277081998662 3.7741442917811585 2.5917603142999215 +2.5118537282078046 3.9885953428569034 2.735338796868338 4.628847308234235 2.4012788840639736 +1.5126507370209024 2.2479071049366626 4.300786582265063 2.145002533815625 2.277719646951689 +1.9443612239071344 4.097847930996199 2.4792798708601542 4.98192912069989 3.3016296378201924 +1.3873306853882026 4.794200212502735 2.750431903641334 4.567598821991165 3.8611987237031222 +3.103903016750429 3.910910854355551 4.007366075450275 3.3405002822095846 1.0468866395893253 +3.2160744305003792 4.145274031668208 4.0228275739059285 2.699866343381243 1.6166750806151007 +2.9233140843959973 3.108317062265202 4.068474175826774 2.5150192997522556 1.5644322145175131 +3.715234656116635 3.853063001446293 3.261913933070141 3.5706690723132666 0.33812185493598806 +2.8737262508593884 4.425180082588101 1.798054697195707 2.1818237659150443 1.5982139062376512 +4.249717805767537 3.592245179871724 1.3742830220221212 2.045865363863037 0.9398367388407756 +4.958230809765634 1.0879966871206719 1.7641487817731165 2.682676626700983 3.9777387503446286 +3.911468765354213 2.4484688879521848 1.0549992689157226 1.8608275409087263 1.6702478394602343 +4.703806126760756 2.071629084345932 4.592990320131571 2.1619018512690724 3.583091838908383 +3.6483271146347063 3.956742279996389 3.85478221989702 1.895942159488364 1.9829710780762437 +4.798347891410877 3.701519575524233 4.124805538658305 2.7557307102688884 1.754251475775421 +2.5900153854018897 1.3217618791161803 1.9031631760426366 4.853191608660221 3.2110955621809443 +2.634822483866162 1.1186139495301464 2.086729428798094 4.643489150582145 2.9725256255465022 +2.491231845331742 2.413127256701136 4.6955176378771135 3.956605192396035 0.7430288883024564 +3.994097764953061 3.114015862157022 2.5482111038999378 3.4354349570158664 1.2496840885467702 +2.767409476942053 2.769039129407337 4.015872846541879 1.9565301864408835 2.0593433049103305 +4.855246039680496 4.929355575303605 3.8310420019820626 2.500163256298878 1.332940530924587 +1.7762758864000023 2.0597072040837396 4.677272061571992 1.2165677041834497 3.472291456818103 +1.5331046925458636 4.585157499402872 3.475689146366321 2.821275766644233 3.1214232663006514 +4.693754267038441 3.717248119840837 2.365481264002885 1.3088056285809193 1.438793819144746 +2.946538694833207 3.029421848766556 4.96578269172463 4.192909974631393 0.7773042223177635 +4.200151923746923 4.9588636676358 1.2920404073184883 1.4299875408380585 0.7711503886799037 +4.621556408419792 2.0779575848791825 4.896607592524376 4.4738302071831475 2.5784948502320377 +4.320464582468672 3.267170261540434 4.97862415679298 3.1486275816050107 2.11147256475176 +3.308726437340499 2.3380488552033882 2.3056059875492303 3.5427521180088335 1.5724965871424703 +1.0192203114617802 4.762347627272331 4.4083349914875525 3.6102035325465005 3.8272726487824813 +3.1153744979016524 2.5216950562780545 2.460535650422356 2.796411616040805 0.6821055223985747 +1.6653818562587914 2.0119790889078577 4.928673009668661 2.2359081043851625 2.7149792774174983 +2.1158426043596825 3.613420553136119 1.6219039139526963 4.636973044687834 3.3665088111830896 +3.5086274826668102 2.508977057731413 2.7935850017940154 2.2959784779999883 1.1166526875425034 +2.0216893675599867 2.7716762912589767 1.070852440562073 2.407308252067924 1.5325124866790605 +2.9773848753991117 2.617864420133576 4.732797776771719 1.0619311268007903 3.688430142977243 +2.279419681524392 3.7621653998114684 1.5766813415940275 2.128094178404535 1.581957958258711 +4.302557294823615 1.2047291766167767 4.201997168681546 1.188300596867339 4.321910003333898 +1.1165439477862722 4.990931797044299 3.906274157726985 3.7098435069940554 3.879364149835073 +4.674188482068959 1.4953933939077282 1.3979581183628405 3.484770321908635 3.802567998785245 +2.7109189369528868 3.8406264079992045 1.1315383106047903 1.427399586709718 1.167806861101742 +2.9735359260614347 3.0106878072550436 3.518098404100726 3.0692899429822904 0.4503435322592324 +3.361726547659135 2.565772116846856 3.170460607794305 1.1888926821141914 2.135451919387062 +2.05234001010591 4.304806413823318 4.022770008391117 1.49547376921829 3.3853849382917662 +3.4727453538498363 3.9155260276908836 3.546682179037368 4.571480581659404 1.1163630642151365 +2.7594542869481353 3.796825423249443 2.2186736853516402 1.927156972603679 1.077553185806828 +4.8185690336884806 1.2297778777988793 1.9646320847654186 1.3818145891724298 3.6358077773392674 +3.1301133390585516 3.5645097090683713 3.0831064656490685 3.3028240484694824 0.48680183080813655 +3.957667902535641 1.4747055302346244 2.0000083439684904 2.3564574769343296 2.508417454622494 +4.13585613083026 1.4436178234192427 2.0481370679700466 3.360280217101623 2.9949735804684936 +1.5305715847829173 3.8149292951805465 2.0497158900776453 1.7650013508058673 2.3020322582287673 +3.511037837557639 3.748354871998479 4.329885371218712 1.2091060824578053 3.1297895686443242 +4.7265573455283185 1.3578004809877986 1.4801122564602633 1.8686377240665406 3.3910875617370237 +1.5971712798404778 3.3339212803676084 2.382541312384201 4.7445750066828385 2.9318089530753975 +2.8138724682168696 4.167218483992167 1.9513038588209337 3.751444118725801 2.2521213097311685 +1.67542871649285 1.8907757355822405 1.2239423647241767 2.2943888925215536 1.0918929011144576 +4.3892177201543685 2.029061502635988 1.6744052829141056 4.851200358797673 3.957570507931444 +2.78333313358602 1.0767071105012342 1.361693413219558 2.9439402449832275 2.327246746543297 +3.7480980386635543 3.0829062776572145 4.661271457978197 1.589762929379924 3.142712955419671 +3.1427940090867743 2.71721897077476 2.7462126753820404 2.2736327156635605 0.6359606368021471 +1.958836178776874 2.0358605537219434 2.950886808038352 2.413582586100469 0.5427969981935719 +2.574129566010638 4.4066953857972955 1.7474720304559619 4.818136480405814 3.575930319236684 +2.9164201334802193 2.249809452174962 4.544591539897102 4.438989177288506 0.6749234470803166 +1.1472010097470875 2.3381875321674377 4.503221907132351 4.285421528616646 1.2107377509058286 +1.811476235372512 3.674662861958762 3.272639685766619 4.390421782355914 2.1727634986222983 +2.9413748090833414 1.7234606270624617 4.777060990604781 4.1473307603211484 1.3710853794350901 +2.297284993574818 2.184479270556578 2.203546562348972 3.304914591131032 1.107129922804432 +3.1688719922341573 3.847843266849989 4.191368013413842 1.0831517751745197 3.181510675042291 +3.217952275305843 3.749654938881363 4.116624460190813 3.093748031636084 1.1528156446484323 +2.9632438252840743 3.201695053684939 1.1729984546065522 1.1588634027788767 0.23886981394904735 +3.675125662849736 2.6121649320098763 4.009749216114654 4.037681077594642 1.0633276560841187 +1.5324202659155217 1.6394364412166533 3.6560095289196832 4.591239023888793 0.9413323908355957 +3.0586578219646605 2.0553347063183627 4.798324293269486 2.5782911584310373 2.436227492286142 +1.3916717384533497 4.744777287130365 1.2914949214711666 1.4241138514212737 3.355727134489588 +3.2102863481190496 4.098390434566019 4.967272772223644 4.51392016063999 0.9971245954210162 +3.270395356132448 4.103434928365795 4.660127415699117 2.00532642355928 2.782431173771129 +4.326586190117471 3.216145201752468 4.549139182365213 4.520380723399302 1.1108133225718615 +4.49480043638546 4.37260201348864 3.6707403942097443 1.2881769993489192 2.3856950318700023 +2.233234160432485 1.8755834894207486 1.5638415276046742 1.6060591698868452 0.3601337693066434 +1.0589002280946134 3.7566925157454447 3.9400796578719075 1.7034181655574776 3.5043883715294055 +3.58873532462074 4.941756155937416 3.0361785646517228 4.7537502497997774 2.186485276328015 +3.0870435283669115 4.944058798257112 3.5766096891864056 2.1591420769948035 2.3361763940716327 +4.0531210996292835 4.166848926040785 4.255050487625505 2.403205656558924 1.8553337427126957 +1.6475819869570576 2.1211843505270114 4.824360975183457 1.3441249163232274 3.512312945079073 +4.6033705300036 3.154399708374201 1.4936231297675038 4.120359697789352 2.9998769040939957 +4.223129640490514 1.622909151377642 4.660075723485113 3.7620268005667508 2.750934106800309 +2.870655843767065 3.5797509698390133 3.760091696957999 4.037319323802213 0.7613613169216487 +2.5040147668614194 1.581328904344117 2.5721224828668854 1.54156402824627 1.383257000444722 +4.481308394314457 4.070483665295786 4.178469393004134 3.406395930007497 0.8745709749567977 +2.8165860744885958 1.310665093435905 1.9231935336255708 2.523923295917369 1.6213186757938303 +4.945176578422789 4.918736866151129 4.603018116222895 4.576996519249059 0.037096925668806006 +2.2624693927816546 1.4740158354108104 4.264103254868488 3.697901374784465 0.9706923205328354 +3.244848633047873 3.8147257542525495 3.6629010758341027 2.8457912553555906 0.9962070025827744 +2.6602738378609314 4.684312334188733 2.6804583656199745 2.213824072322174 2.077132494160747 +4.655068532119056 3.8871685110372147 1.223511374427094 1.759521517106303 0.9364706698196579 +1.3023301507551421 2.2435923347828886 2.7326705534344606 2.35877754087445 1.012803279971922 +2.215931740665259 3.1927255791756424 3.640923489668249 1.0664359959811867 2.753563519896162 +3.6767064591449783 1.5639866647231826 4.504507342034824 2.076449774527346 3.2185475731876334 +1.0920919378741556 3.1935328533198315 1.6619468387201093 2.0397254131585383 2.1351277648922773 +4.302065841263541 2.177298522847122 1.3796532759141198 3.470509629156072 2.980992527213501 +3.464479504344228 2.8460089432780125 4.205579195425609 1.7379919748551056 2.5439128377419737 +2.5136539514575698 3.4284599866504943 4.292582843161607 3.8416404673268447 1.0199113237673647 +2.41398917325446 1.3159927606093937 1.324438849196952 2.5433083571508823 1.6404996188970271 +3.61758046933829 3.3223109597447382 3.4047988522144643 3.8232502123916277 0.5121382861393342 +1.955017505147139 2.8119076558112357 4.518426793475498 2.5609570274482305 2.1368080436052233 +3.88165482734411 4.325015879707038 3.67728605275588 1.7056401805732433 2.020880122136688 +3.5129035660039376 2.4972607911360454 4.6094074452824145 4.794402463573805 1.0323533324080394 +2.531168473114733 1.1882865510025922 1.1265077884581376 3.25566714143835 2.5172706265156934 +1.968188520570434 1.3882570247336279 1.7155889703831217 3.4653134168391055 1.843327474538698 +2.554783301182075 4.458659659203455 2.545445472978336 4.246181909575881 2.552890442890817 +1.2614782557876842 4.628423207435748 4.180589224475204 4.307473293160486 3.369334930563377 +3.18751580449124 4.4754531164890725 2.2471345184175977 1.3650212988523864 1.5610593364020167 +2.211548394093589 3.2499726413643493 4.260835498194236 2.75660159113866 1.827852446029364 +3.8813241865548633 4.739288156180475 2.0105783026798956 4.604828568533705 2.7324415117360332 +1.2382864861382057 2.633541973210167 4.675117016152754 2.5950922232644373 2.5046438895049534 +4.6405315721455445 2.387240959676427 4.336901571679996 4.360900469748678 2.253418410182619 +4.850772245970642 2.122255736572292 3.226044045496414 3.1327904588697133 2.730109626641044 +1.0493648269284228 4.167660650956275 2.047552411080371 1.9403386759044543 3.120138399359861 +1.5000625936876322 2.5426310672418317 4.926202513869585 2.37221650418576 2.7585854272996224 +2.7178779645860587 1.8168121536898938 1.2752855347912155 2.187337954393809 1.2820917329383685 +2.4348334052599485 1.9159360722439733 4.261418490554374 3.4685182221807747 0.9475997455666699 +3.6797196307629787 2.338141815773709 1.4216341258230067 2.526965049615523 1.7382714071063243 +4.092579677412691 3.2842754145185014 1.8672727537228795 4.929870331644111 3.167468974702343 +1.2305599865469063 3.470008470478207 3.6675345799704036 2.6429501517714744 2.4627023292899057 +3.8161988936131346 4.217931723658635 3.6565978469537637 2.1277570936388233 1.5807413816728406 +1.5762499677679678 3.601509466697035 2.166871876225553 2.7159730256635366 2.0983774947126483 +1.2287637082750522 4.632292043426331 2.873541197620782 4.557037634021658 3.797125936751648 +1.8815396441080328 2.120436695556914 4.07913885729972 1.6426156491543367 2.448206924469833 +3.0686042428244984 2.856455431847187 4.061090091519329 3.0734930439582544 1.0101262526785644 +3.4949483575756624 2.0882432126068986 3.8643544145689206 2.306542862184244 2.0989512137314548 +3.165498424523745 1.8330771251817581 1.8271009832308414 2.816427391417664 1.6595521265919995 +1.4399434607847827 1.2257751526295757 4.752782396256491 4.879288663007636 0.2487406274523238 +2.946801189268457 1.524527888310422 4.266903242075799 3.765876995499952 1.5079418564307931 +4.867912297547647 4.193683791812434 1.8599064060009827 2.5104333259677696 0.9368934579488816 +1.2729894626207057 1.3547856118029884 1.171592735242049 4.684317372733143 3.513676847528524 +4.962942887097782 2.818426958625457 2.606110551333327 1.6431980913564073 2.3507762490399466 +4.600962749669392 2.8277887570287596 3.0557798206857676 4.509107461530409 2.2926637869125455 +4.452134161982281 4.360933408510715 1.2111786002439109 3.9461445663656587 2.7364861434471117 +4.880520288853584 4.866441661416374 2.1687870372283062 1.6041974464134912 0.5647650961302018 +3.216472202833898 1.2784407339233215 2.614799668434856 3.8079917034130513 2.275889541876559 +1.821987324100352 4.37415895287255 4.40296496672274 3.592377044182149 2.6778037274748883 +1.1263155305043773 3.562259089348177 1.291662403955823 4.258904008474726 3.8390550610092204 +2.8757405719479343 4.132460962222208 1.7469735281355203 4.878258004200028 3.374061144877742 +1.2771430495537888 1.7281702135312118 2.676919937204494 4.740214988239927 2.1120160913858657 +4.175003627023325 2.4401645200582918 4.171772348871409 1.7813558346639504 2.9536008258481665 +1.9442036429908818 4.192259211146929 1.7615344355856322 1.0040253631043936 2.3722507945849225 +3.9320476601595717 3.8899968674354986 2.8530423083098837 3.7313653697576314 0.8793291018951136 +1.7391177344714959 1.9576131488943918 4.359709529876115 2.815197074484747 1.5598906919982904 +3.820339973238176 4.832810282749316 4.63558880435175 1.7034660435404412 3.1020058046543553 +4.724657116963428 3.4079744572384647 1.908975031341574 1.4662246497762519 1.3891296292271078 +2.143654904485591 4.656859931588922 3.2957614719726886 3.978421033435494 2.604270259614782 +2.041648880215188 3.9905855832149575 3.738725718324728 2.075618240918157 2.5620852354489028 +1.815453863603536 2.875029216698629 2.503624726537695 2.5280483615675586 1.0598568029855082 +1.8975494363058591 4.319722030207593 4.8702351704981135 1.7467655369652237 3.952591887135673 +3.8153570292106336 4.208420333388132 4.523628873843345 1.4654538411286322 3.0833315247975794 +2.1824719578600433 1.3982155353984296 3.0920388588196737 2.8961662106193184 0.8083466029404152 +2.0217742053981658 2.9896491465388224 1.8990910160657326 2.883768515776219 1.3807141920484935 +4.656090588403112 2.8297640713978516 2.8426800041731224 3.753188740680969 2.040709363425787 +2.809666518592933 2.9518153418043576 2.1948380940867995 1.6435778958382845 0.5692926260837962 +1.9936385854979877 1.302328524824084 1.430923653248601 2.816108362633124 1.548110551317845 +3.356551438271866 2.40196692064112 2.4934783690768256 4.451080670393056 2.1779436107068806 +4.236942393536722 2.9228431832949 2.3348595079031034 1.8009172222643524 1.418432620448118 +2.2091914546754405 2.2373786749063482 3.5492193405286168 4.021292501097912 0.47291393330523646 +2.8253685489129228 1.5422494668796314 1.3149677670386093 1.229248422724281 1.285979154056408 +4.309415779097455 1.7946910216739722 4.424713945742237 4.3783176632189775 2.5151527231225095 +2.6217294477489363 3.408912222128893 1.2842296316226425 3.4586308915694213 2.3125046074632296 +1.8440025708173353 4.219843729005946 4.26755605538303 2.8426082295294663 2.770396635023187 +4.658286520685602 2.101621570661453 2.456380564748011 3.3921003455583976 2.7225185352687356 +3.1997393052880825 1.7749497688418892 4.025316024531989 4.591784125861022 1.5332681869098692 +4.378575308838618 1.4667182945613448 1.4679292914299449 1.3700482736696857 2.9135016672783185 +1.8423425069381434 3.672206682881644 1.9914079932314883 1.5544797824982215 1.8813051755991004 +2.347990108629317 1.1394626668026708 1.0546397279922797 4.646179604587925 3.78941911944624 +3.1350027186109948 4.514423475196667 1.2860421774439952 1.9968063632170217 1.551769103789923 +2.8467142310471694 3.3876274475263206 3.5937526296410427 1.4435833830275304 2.2171637054679434 +3.4851391226426953 3.51188910042032 1.2714107587579226 1.7339123497923827 0.4632745223088686 +4.084121381758575 2.4675638909329045 3.593305185035371 4.902049617531509 2.0799206981840017 +1.4281074526053188 2.577437340445316 4.722784304547437 3.297230949267682 1.8311639904256711 +2.6962751985928537 2.633213810150903 1.994236831371874 3.2144261803031773 1.2218178202815773 +4.865634618756763 4.608523797770376 4.79283217097392 1.2809249942445335 3.5213062906017796 +3.5395057575190942 1.1392396929204733 2.122166912960182 3.4677242002422592 2.751690679240974 +2.7197576607761302 3.3532901773708366 1.608956639967642 1.3421382952221244 0.6874267078573247 +4.2690399942235615 3.9415175862063756 3.3671199207675544 3.078140250742249 0.43678390245212834 +4.571286363898368 3.115353983943265 1.4748301044247492 1.330132251634165 1.4631051102377903 +2.238921678190632 1.097408077365432 1.7805654662993815 1.7754017128806137 1.1415252801485756 +4.19040702389208 1.4420541707629662 4.240783379431358 4.860321670828235 2.8173162938885477 +2.071262264804629 3.010808650203855 4.487118349022265 4.8157585118991815 0.9953651425343956 +3.160597560572102 4.422376702917001 1.5851617786895091 3.389184655855952 2.201496115235391 +1.2936423836179518 4.826897153680887 1.4234388262101483 4.318302906676738 4.567726711893802 +2.985411832982202 2.5185784748519526 4.415736022306511 3.2027132376892777 1.2997529227755993 +1.2172721474962747 2.2853401319925792 4.312067059302138 1.0004263331130376 3.479616863802719 +1.6623436695850078 3.8262664467917085 1.9225799017129872 3.7761497623324525 2.8492600818301623 +2.121668231928296 1.6551869442656768 3.6091262757308753 1.5989576608000173 2.0635849030733917 +3.457712818573599 1.7345574154726235 1.0713939499360268 1.7879262149591724 1.8661947996003216 +2.991299751753922 2.5241747971683095 2.6107174954763663 2.363451242324451 0.5285322347259412 +4.16100491511693 3.788387250033413 4.3598702028804786 4.768248461631793 0.5528261268726793 +4.659941692434125 2.9764017086785324 4.958079631603757 2.5908017299631876 2.904877198867374 +2.2578101617274537 3.7241757280465526 4.45412412549242 3.994317847299291 1.5367660158762455 +2.805200889616409 1.3463516235913855 2.337764196555708 4.191858469970864 2.3592174032277367 +4.253916021108571 4.603361716102518 4.049405895215852 3.744132322626993 0.46400888770687126 +3.4679482101673353 2.158463190778993 1.4847442042504437 3.1428469365611544 2.112831201705127 +3.982249147772934 4.340083303064346 1.95773224977887 3.49832944469282 1.581608358497719 +4.718783309071831 3.9144507924546623 1.0308627263177152 3.087203804164292 2.208051046902433 +2.303071626874055 2.4722084737520484 3.6373004488203535 3.364950780677634 0.32059571848245144 +2.6837359788646915 3.412834659282997 4.384653378741024 4.88142630998421 0.8822517956930787 +3.5836907988062507 2.466894329053517 4.728234938157505 1.8914091967798483 3.0487398448859264 +1.8317634583066726 3.0407607765700244 3.298378433777514 1.48739121190117 2.1774639453656572 +4.718417985005413 3.9661517265716846 4.804612779806154 3.9805563748763575 1.1157837971953626 +4.015015813702657 2.3200190381411074 1.8609379361939995 1.1379527829545948 1.842748382435501 +1.0110202735256326 1.2925219616705141 4.3518742904791825 4.406029178997459 0.28666348281363824 +4.963908716676993 4.623664513384405 3.581619891419395 4.077650898026315 0.6015088340080155 +1.260992768361671 2.272057958107745 4.473179526525353 2.834428745171998 1.9255536713637706 +4.634750486393472 2.0991894279303396 2.827599500793511 1.4146903003114852 2.902650907360621 +4.18275952553874 4.302389644787567 2.4024092876872185 3.446896557861958 1.0513158531043694 +1.2691182098122997 2.588615387268302 4.813982312102718 3.4603106457691184 1.8903702763079888 +3.082111951593719 1.5584268760967093 1.8208374605647322 4.987456696167062 3.5141277143238563 +2.729673029497408 4.053586688941303 4.487760050503054 1.873428869998989 2.9304393696198363 +3.592322021241349 4.601342236613879 4.167952416070893 2.0574052010257278 2.339344211946017 +3.25482327722697 2.425627296599159 4.5480040210062445 1.0010367511535314 3.6426011019182054 +4.883756605050159 3.0591444943977706 1.3678242655755422 4.46748736481268 3.596820913405579 +3.656849657155137 2.9555610124177076 3.9193391129778594 4.57192110452673 0.9579504261346466 +2.3966419219191417 2.2176894802224667 2.992312031258407 1.8813841680918904 1.1252487251932013 +1.8091864467703989 4.351921587946487 4.960216240094537 4.731438845592777 2.553006285618348 +4.106462208632863 1.6307119436958226 2.7091057042806836 3.9830206049964074 2.7842770243999384 +1.8862654402607952 2.919027954040038 3.0352745322973544 4.895013829218401 2.1272584850882628 +3.066914402996281 2.8420335404755006 4.023130957826471 2.7315011342877926 1.3110602592492255 +4.43455062988925 1.6652726265489344 4.9093374614139975 4.689621895467189 2.7779804876391503 +4.986985049090929 3.296336756889714 1.809297789182784 1.2994724833194584 1.7658463949113805 +4.6250428549949785 2.285230089715511 4.370826052043097 1.3333794082531152 3.834162997374495 +1.6430796093277675 4.393659623923405 3.2091257873060033 1.082889163251008 3.4765748371300336 +1.1020866067354342 1.323422763164663 2.070174903786134 3.779704237526343 1.723798200794138 +2.2796586983217235 1.7997960313123884 3.0596785451668636 3.687125020348687 0.7899096520535794 +3.8801085742745114 4.701465013401288 4.804008845118539 4.491081132569301 0.8789483223582129 +2.720503903774026 3.7857553577645398 4.391617564066657 3.2424517864446094 1.5669533000975453 +2.96384214559579 4.649627141626304 3.1275895683692343 3.942292240688233 1.8723278284331828 +4.721458032991908 1.3231006818511992 3.5878320248666324 1.4100278297747129 4.036293324104686 +4.145627958733973 1.6412909494760775 3.41961356065002 1.4527453560325365 3.1843797496960042 +1.1729827088720124 1.5480415076579996 3.420070636819051 1.9141718612414218 1.551902131203186 +4.88461778335352 3.1413001768779947 4.325711659021265 1.135874043595936 3.635136901112516 +2.4401816542132844 4.9809475720260465 2.388554970331633 1.5191144911723926 2.6854083853149 +4.752597048437622 2.2425109984591534 3.957064106477718 3.454594029336089 2.5598844029993275 +1.2856873495920325 1.6116178780342905 4.641717464460496 2.6484819612250856 2.0197075235609656 +4.032512332426837 2.8347683741719756 2.332031451512323 2.3348071268715582 1.1977471744528236 +3.694340033649529 3.3353243481870707 3.5454787024985692 1.8395869503264635 1.7432610052820248 +1.328814429187247 3.5992463969324056 3.7752279600848393 3.4929613242203583 2.2879107880075664 +2.4703873766389988 4.529077987878058 4.981085017449713 2.663330327849421 3.10003126338558 +2.555334988618692 3.5286900615046735 1.3876279697765348 1.7473482846869013 1.0376988016144606 +1.0680057880418548 1.9310418121614616 1.7065186246557493 2.6935535321389765 1.3111327497696799 +3.289358826663952 4.110359199752214 1.5491515073683475 4.433444192938017 2.9988641030633185 +2.7456273023868243 1.6624662506823227 1.7093909045268028 4.328598391364094 2.8343404388030247 +2.1272111305605907 4.7254658393087725 1.1538683326195844 1.9365040491996743 2.7135670613417555 +1.3666203237831263 1.0087114555758867 2.310661805258262 3.6978069192329706 1.432574718876923 +3.448805499277428 2.554360222089509 4.059922330274333 2.120764868778653 2.13550088137611 +1.952524281220244 2.650175464464989 2.624132948940755 2.6535614280923507 0.6982715867540142 +2.501553606092457 1.0215322887450617 4.88825350326259 2.640128675756291 2.691566150005038 +2.8203808423374603 3.061268964404941 3.1533257454476433 3.1202348708307595 0.24315035129752072 +2.454871603588928 3.3430506676189125 2.416271098836825 1.5349192062430927 1.251256651674521 +3.0981357354273102 1.1549090421703467 2.6396364248318687 1.1200767750079672 2.466818094379748 +3.41536776843846 1.2003447152944267 4.367558303219242 4.685818022273486 2.237770402595405 +2.0440752811602216 3.821281234630829 3.6297777616644056 1.8814094126958234 2.4930408911059794 +1.8410538037055053 2.4814235400331643 1.2727617231821302 4.8266192632249485 3.611090806684809 +3.190443417671139 1.4772109183271946 1.769522404326346 2.979379679584579 2.0973602988765605 +3.1081731313247984 4.943657059073551 4.461388993083589 1.3040321093192886 3.652109491852319 +3.7439865986303933 1.4467815263939086 1.5075056040798116 4.96535906651487 4.15137347291028 +4.531883583744976 2.490579159655889 3.7678603119725653 2.010139707778456 2.693790168928193 +4.64507003822513 1.0435666227189788 4.111477887432914 1.8983912334257518 4.227124245872965 +4.999715279289982 1.1928838853562431 2.6356503802228497 4.786484191143801 4.372419392514885 +3.4030888887548354 3.8731230519623123 3.1869812695359405 2.124104458373371 1.162170052225261 +4.103971523009803 1.0346891242612246 1.0533114631487281 3.0962146000850628 3.686997107426604 +1.9265213648154411 2.628505122249604 4.5352051857946325 2.7653758874074033 1.9039634820897215 +1.0675992600867672 1.0702323520634147 4.441125681584809 3.812308684741296 0.6288225096898581 +1.5942858372955477 2.2233016213505445 4.9383038665364545 1.252559844238911 3.739033278066992 +4.358120545315393 2.723024716036548 3.25892716003973 3.60660669423365 1.6716517069719923 +2.4914691805225386 3.2741890775689884 2.7147295295530274 3.2059960961248217 0.9241175664728185 +4.555260083582745 1.3068079854109427 1.1256306269899738 1.7800475093769945 3.313714304231723 +4.895750574456949 1.6898138586805422 4.9728419581256675 3.743479880585188 3.433563941920677 +4.318027084440624 3.842791224933557 4.869031415343331 1.6319806307733296 3.271749822961206 +4.0304473446214 1.0538063356989782 2.2842341108373736 3.05611662962528 3.0750925707706847 +3.385208555494596 4.186306504967928 2.1331263148372113 2.3500380142342867 0.8299449439485154 +2.866252981427352 2.125775409190853 3.0148668180412916 3.2109350860226034 0.7659959534452195 +4.843756630438633 1.9948719499523766 4.781247709972325 2.462284117591363 3.6733821017555055 +2.4940100532362535 3.56676640530149 1.7659175342899531 4.62674169552794 3.05534303678316 +2.546323887252475 3.0636328212714528 1.8246891583503464 2.5834225863898177 0.9183054764294823 +3.4364098935326988 2.7880785908832406 2.3653472046373536 2.671802326462914 0.7171110232650607 +3.3532213787998697 4.130686831285908 4.219403929736113 3.282313384969816 1.2176170247248173 +2.7096169218101234 4.3029036776789 1.3213632628316705 3.757502770833238 2.910899927663775 +2.8069098202175033 3.1314348098179896 2.8982465981217986 2.783091014281545 0.3443505152671989 +1.400766732108906 4.516097860048889 1.5617282998338622 3.9991189542754633 3.955522878087177 +4.351486609689674 2.4047033660306396 1.9073892073844774 2.7704611616925865 2.12952064937272 +1.9450875989078957 3.1161616361386937 2.0186663287768294 4.873820742292868 3.0859878686890774 +3.5571962396548873 1.4723177299324797 2.6097387679742545 4.059681328005611 2.539498341738504 +1.7259841323805794 2.6296140316422445 2.867254596678881 3.0921438342063565 0.9311939454245483 +2.955428103966768 4.278986768690356 2.7592756047784017 3.9022259073434773 1.7487546806509158 +1.5470740900617193 1.7911210057882405 3.459881902613891 1.0443284389795253 2.4278503728095786 +3.914242654002595 1.3690780710248922 1.5007928437496512 1.4582889227645937 2.545519463241868 +2.9438151671917345 3.309510353401503 2.5774955082415962 2.90138321954337 0.4885040621625357 +4.431356037835359 2.808319822431919 1.5112253872790111 2.7194524821016746 2.0233781824401325 +3.874942675808266 1.9326422756994468 2.660162918638591 1.3122638485482607 2.36418331510339 +2.766545997700412 1.5015615927919597 3.0811047857347584 3.2238344501362395 1.273011116118689 +2.1714566835456446 1.7845970560676898 2.1723227441376185 3.878069745858968 1.7490663810312503 +2.9838702206593837 2.4665152395364234 2.620081778826333 4.010380032843222 1.483437026508085 +4.797242510086608 2.2739428099543577 1.706241899480299 1.395402957706144 2.5423733448120442 +2.483033328872775 2.8961298894520686 2.141653295109701 4.486154001296395 2.380615955939208 +2.2565957640545986 2.7220552706933607 4.160668724174524 1.1087954806962896 3.0871642079064663 +2.8258927319820724 2.254423153833255 1.13187156012898 2.583404783428271 1.5599763386318448 +4.9432753451441 1.2443684195511677 4.917844638547745 1.4584894002638102 5.06448922487173 +3.5049905290972383 3.24889475441615 2.5807399065185943 1.4085909823168974 1.1997992108335054 +2.836762513044934 2.038390968125936 3.981386326019115 4.455974719359688 0.9287794500471754 +3.2979366239673777 4.918672023096663 3.3808898102593243 3.759718050132241 1.6644200399286162 +4.492782969517378 3.9735004297827343 2.1380338028889603 2.880574971158406 0.9061025011819663 +1.8164870018919954 3.721538341967808 2.1243582824522758 1.6079987440554158 1.9737902069921383 +4.332510857025631 3.0956202640961563 3.24923006194367 4.591067668486819 1.8249456159597943 +4.695330291396747 1.8131886125316803 4.003452521974866 3.1679869833611987 3.0007904497418965 +1.5876017836566882 2.643271884147692 2.233808994132242 4.708744781736797 2.69067770530706 +2.0054636208108354 3.9194997868879073 2.198187073905477 3.8333599552640645 2.517404376929054 +2.0826592484761903 4.347703282699554 3.3406298766241243 1.3974123432434724 2.984379141297036 +1.9190258190766158 3.0073723050264562 4.138043930606067 2.9778159574140006 1.5907944629199384 +2.6373282576693837 4.117213478812738 4.158131750634034 2.7498253728196276 2.042886957604666 +3.228852987711561 4.764424683840152 1.7009043582280756 4.498107543195916 3.190975727257333 +2.8863766341740775 1.000008905759703 1.3625054997732318 1.9859028011822395 1.9867076791031038 +2.363371052139496 2.618839416165142 2.5704256630063265 3.4723063107167436 0.9373648103766757 +3.910385022363202 1.8168386121982927 4.190722372025871 4.765552301864378 2.1710287929349357 +3.2468877634907685 2.7849948460020966 4.980094179456142 3.999089098616686 1.0843044018443457 +3.249663798641811 2.628099807183976 1.0396937815101035 4.1288766637627585 3.1510938855387693 +1.7330014603317219 1.9281863922374418 4.399644801820008 4.526907506473742 0.2330084840490233 +4.628049030099776 3.469283434465325 3.771261474601772 2.5376191169590743 1.6925162250910026 +2.2184030763946643 1.2225591909682203 3.4968229379705753 1.3336973308815483 2.3813478192371456 +4.4238201018687136 2.32008953763075 4.4875317077495325 4.9654690711207605 2.157337806236015 +3.768515209974793 3.3698200684728326 4.449413326632152 4.87237632459007 0.5812533986987243 +2.7235069511238086 2.434078707222003 4.109483387714329 1.0324059743473812 3.0906591717983254 +1.6619285906279493 3.2230516941915215 2.7078084269575933 4.1005703759773215 2.092102098636009 +2.0224173437930593 4.018350177584088 2.787439940926137 2.216358440311764 2.076025519435888 +1.7827822139703633 4.5715809019458105 4.10022327597979 1.6452282381568506 3.715427129925822 +3.825798083408755 3.5892135828535 3.5375616614172256 2.703702284933052 0.8667719917334397 +3.597846877617376 3.8855819420197797 3.6700912053654906 2.64808131188232 1.0617418187413252 +3.9833685213815895 3.3117954140797408 2.686504943885613 3.191561814220995 0.8402933301675264 +2.045233026846536 1.0603837883571536 1.3298851772402558 1.3918532819646328 0.9867968729967926 +4.895805804761638 2.2581916594789075 4.79314050187466 4.635999924680872 2.6422909643709462 +1.2266612573904006 2.1375161948309858 2.851433648424884 1.3016913492753521 1.7975978167635747 +4.874455981380056 4.742365184974072 4.853644395062143 3.3911239650273632 1.4684733524188596 +1.194219837844686 2.903436596642501 3.0741674172418425 2.580312786521483 1.7791330261785514 +3.99497653529685 1.7604109293953578 3.5378403528674855 1.4614393807441584 3.0503646411720355 +3.2005554788061574 3.2336878360016574 2.60179875274686 3.2672215048922912 0.6662470954279127 +1.4813233009696192 4.544385327398356 2.8444268546395843 3.3400765175854223 3.102904698202644 +1.6554810970938085 1.5032918052608504 1.6056957813039512 4.796402151776369 3.1943338465354376 +1.1036017912623994 2.8881240470298346 4.300248411019409 2.884188120690843 2.278101496240832 +3.8240041441534744 4.301500230280744 3.2300395674035607 3.022134712410645 0.5207945285777164 +1.1574383444785084 4.996862038059643 4.095912931843456 4.423453814652602 3.85336960707685 +1.7516887346063323 3.8397114555216367 2.292296057801896 3.889278585077074 2.6287244198433517 +1.079725683996032 4.142952192989224 4.813480584031421 2.9150084486233374 3.603824786850707 +1.6322071679901407 1.5268356803601466 3.6297116557548854 2.3092606526579447 1.324648633406261 +3.6500693833263926 3.2016660730691817 3.955961797763493 1.5296775751714895 2.4673712038216924 +3.793840001477021 4.371462839098473 4.785301514176867 2.395414937216696 2.4587000616741075 +4.205225012762861 2.3192246265986163 4.054518615582656 1.1785877730729597 3.4391824126542363 +4.497086809874789 2.0178075721878956 1.9475638651082892 3.0792289882919905 2.725342453611231 +3.881491308462906 4.241578662257378 2.682090883571923 4.0690739975014685 1.4329637332076497 +1.950236123415669 1.2247952450630257 3.9574717508826898 2.3908228112484746 1.7264568827636748 +3.828627726723536 4.781537167587217 4.971147681893907 2.2197530432289763 2.911736399497945 +1.7241315074126136 2.6887823322443594 3.4873124602295427 4.817876270504653 1.6434571083731966 +3.2644454672914973 3.606623446304346 4.741864194938391 1.6132394972741162 3.1472810913797 +4.186109908007247 1.6153145730167928 1.3945289891641708 2.668699889204054 2.869233370940246 +4.607307085837606 3.996902071975702 3.7934371823195314 4.650048559509536 1.051844728312648 +3.4123368241203442 1.19034819517992 3.927223298646561 2.5061230823758156 2.637566926511118 +2.6277586075063883 4.398782591716749 2.6359602395447435 2.3622956972576614 1.792043033622111 +2.6602188607831003 1.2022662722662734 1.060957462367436 1.121681654218408 1.4592166315660158 +1.8436539321150627 4.320127275913265 3.0321075219431317 4.891772456837762 3.096978187301244 +3.359487163783119 1.2090614802786757 2.464960934327846 3.495616694677526 2.3846555131963045 +2.682051239644338 3.9608104066842422 3.305613933020221 1.8920720583840778 1.906128442324507 +2.583185820091402 2.0778379711796284 2.3011655665807464 1.347002765329285 1.0797236219013606 +4.243746968334962 2.099502591125896 4.657946185642876 4.238564964226175 2.184871748654749 +2.2716148137147325 1.2180551345815211 2.924736789207836 1.3099727231400604 1.9280692380096238 +2.3038258936085665 1.991233733484313 4.282829052142187 2.3133008893392977 1.994180293415034 +2.1780498447022447 2.2439822057973156 1.3189658814738716 3.2930315888546158 1.9751664469852177 +4.322714488286495 1.2167535131615632 4.671087967196942 2.654323243392496 3.703286854968305 +4.28987239299089 1.4116234657543245 4.99762360697218 2.4026368597925933 3.8753416759269284 +2.1589615142548086 2.838486067495205 3.0549957079364165 2.2269506512682002 1.0711732979911466 +4.325946180831943 3.638894641483289 4.689221905558009 2.022433495607531 2.753870047981123 +2.794687177057496 4.985054050554899 3.8522609056000072 3.420447985763349 2.2325253499686513 +1.4147438372219057 4.989197509851413 2.2080495486469243 2.904428903178001 3.6416566646502653 +2.0306288172204603 2.2804420157722927 2.4587030625953847 4.596581297985274 2.152424210866549 +3.882837897604142 3.121082291305582 2.3440166841075403 4.300030734974515 2.0991099473148895 +3.3965710797944038 2.6276245129695517 4.410638779664824 4.742115130261187 0.8373502216136386 +2.881564732985002 4.872452972261414 4.871952574141551 4.333299660279797 2.062470107153286 +4.6064817678661605 4.958392795699286 4.689700334078272 3.404031041687641 1.3329617027157201 +4.234421947873066 1.700212541821677 4.591320924450001 2.0375941051647053 3.5977406773218554 +1.2340731372388176 4.006882823470049 3.2501823506938385 4.414638584633844 3.0073961955185546 +3.5969898811768277 4.911975762436887 1.6991629139432254 4.91903548040105 3.4780407145605685 +4.365404449566369 2.2407131330522945 3.556463971155612 1.6429067920749918 2.8593730550736627 +2.7141652099364393 4.083303753769462 3.1208910626966997 3.531907631519146 1.4295016516450012 +3.527237066738056 1.5779735433176936 1.277532639273328 2.0647219203336333 2.1022119892992253 +4.091754464791327 2.570446313688064 3.631703313280752 4.26399906560971 1.6474757688738464 +4.072821907521612 4.806677198413753 4.351321013812687 4.930139334516037 0.9346519332629841 +3.730150768262831 2.5707799110670795 2.932920083373002 3.246573361371293 1.2010491927118911 +2.9511615175716086 2.0513349349059538 4.029534514887933 1.3289155357327131 2.8465822927583058 +1.983009928866537 3.279536044700885 1.8961330983202727 1.3630896212649177 1.4018257086641561 +4.985187397141659 2.549282672297184 3.5826373932441173 3.319569900843204 2.45006863864622 +2.8566780840547272 2.01571242589186 1.2801520436650349 2.6561350606685115 1.6126228639366658 +3.865970820839332 3.022623741466951 1.275798117258903 2.956528184461259 1.8804488440486655 +1.3935146380967813 4.9918305778384315 3.1457527546066673 2.0552235745461114 3.7599376982554356 +1.4784023802493977 2.593462039821139 2.8203146060327113 4.749307451318348 2.2280869465906004 +4.8877522489806005 4.394843786495597 2.623639690725841 1.3844014123057637 1.3336679733317758 +1.8218953307236925 1.589831807494142 2.556184628059122 3.325330126303692 0.8033917327702595 +1.9647338641068655 3.5529348920836026 2.5659012285926974 4.630543660938672 2.6048283779761516 +4.750170007534127 1.8057457791401519 2.567118614753434 2.9450899272276856 2.968584906956 +3.4622113684128286 2.936680840428506 3.8100119186954147 3.9337174938928507 0.5398938832570801 +4.405587917925569 3.0193662110303183 3.560202694066343 3.83849716098321 1.413880628265387 +4.001869212687806 3.907113668773497 1.9766727884788535 1.879027311139732 0.13606341296352042 +1.839378854775736 4.6891373616526275 1.9067351092948526 3.916894224363278 3.4873863014311857 +1.4404278873291925 4.20246506036344 4.3186014615047235 3.371857972342334 2.9197898176914023 +3.899110654675383 3.369293655996651 3.5115204899045156 4.148678133201786 0.8286591063284534 +2.2507881840608737 2.616950262164627 2.059204693719709 2.793393894703707 0.8204318681540721 +1.2876164363314344 3.3895027145392023 4.110702373272658 2.621900547156928 2.5757439321414766 +2.8916182637614325 4.407458747588857 4.044806668355125 1.3183905235083597 3.1194738927087142 +3.9472630556371593 4.612277258849117 3.924995338999344 2.0968368963138495 1.9453552842696598 +2.905372925006628 4.521125166697024 2.948532639852568 4.963724556801668 2.5829544650776417 +2.921562279696695 1.4514820228147127 3.915442532355677 3.980911639630447 1.4715373477019027 +1.4426686938789417 1.993780716471726 4.007198532384371 3.2564359977946404 0.9313263900426672 +2.3400922050000594 4.87395153685292 3.35647149791096 1.790207729598014 2.9788630894265173 +2.093022479700093 4.242854525716957 2.598823108560795 2.6678978907658113 2.1509414570410157 +4.892878353463524 4.6924218507908675 3.216051133439294 4.6224686104516195 1.420631172792385 +2.6986586484979864 1.720489794609772 4.947343086244997 4.398016611965652 1.1218617927628873 +4.943648890316943 3.404131469872307 2.005744884702828 4.723229792982392 3.1232736214715 +2.8391710522184797 3.523385084952501 2.79344392375967 2.17009094389892 0.9255905034578892 +2.122786142205398 4.731756310763069 1.5583816352264992 1.5828125561071427 2.609084554076184 +4.320950222259974 1.3596621750514477 1.5009138504997774 1.0880171773871283 2.9899348757468918 +3.630735140398039 3.631284652074351 3.557480197378897 3.806196268023066 0.24871667768719793 +4.182673991736736 3.0443184587206717 3.2388417620991343 4.935636482536227 2.043273266807814 +1.980919434648757 2.5816721900271897 2.972923468347366 3.0905818870888524 0.6121661347996359 +2.340174674930845 1.0266146263035232 1.2446163866761273 4.157998733954775 3.195815498864829 +2.4631000626866038 3.6931647414304276 1.1505532605104292 1.0900388229022195 1.2315523176268983 +1.2106848634955334 2.877014099342329 2.5716868728379234 3.032914827546914 1.7289836171701582 +2.3991451851311414 4.058956687212958 3.7255072256688506 1.0871383199572122 3.1170442257159463 +4.9152741031003835 3.7285532343774115 2.818144213613683 4.775137954898075 2.288696337151106 +4.513085781182268 3.5903559503140365 4.348905424787784 3.122341067151784 1.534891026814975 +4.735249677971684 1.9027900152984731 3.311619989806455 2.095721971947774 3.0824074569244586 +4.259686302066365 1.7653250116129104 4.10817412141648 4.152832431968302 2.494761033047848 +4.550357231755106 4.867054157665994 3.30044346625554 1.6976672976098652 1.633765096230151 +2.8725620460650694 1.8593091519238532 2.951830067137393 1.544327028456379 1.7342855103418926 +3.5535593717575447 1.5320380170822836 4.526186176760021 4.617946948899927 2.0236028826604824 +1.4181210361719998 3.3935646374683146 1.4156222323627534 2.18998058459583 2.12179364679407 +2.346609443072833 3.7703278901067563 2.505669226844445 1.8905076810645212 1.5509345388606934 +3.7804539804511363 3.7159913358211862 3.2094534261423693 1.3871583748903697 1.8234348593712404 +1.1370106519193248 1.506287385046114 3.159792073222883 2.5327884865817953 0.7276666841965362 +4.430276202179478 4.524268705164095 3.8772414585607446 4.9890501514255154 1.1157746905836248 +3.5120617902285516 3.1855497764621994 3.6154363727689223 2.680322929361423 0.990478292127187 +1.8387988238361914 4.226759382320688 3.4570077871745313 3.124020906844282 2.411065302174469 +3.1224478799728828 1.5275837073924552 4.7982671106818895 4.248553651230038 1.686942979618213 +3.9159668324202297 3.0407884901546396 4.437144755696627 4.525689447173994 0.8796461181404533 +3.650315414638607 4.931338333720545 2.313005643788619 3.914136623336457 2.0505219171910913 +1.0846643371879874 4.561272832337581 1.242459692106498 4.475808267108318 4.747773123898469 +4.4600582947338925 2.7634778223586687 3.4355561350337442 3.7707432726318264 1.7293743714002856 +1.7885623664226036 2.085135880868018 2.5318052441452377 3.102689632914384 0.6433232739539476 +4.749569066722815 1.443072821142017 2.557627549964465 3.862746576263731 3.5547507781626906 +3.619697310609499 2.11122487877778 4.14232520763351 1.6809195250525293 2.8868680281298356 +4.202343607170684 2.209411031041706 3.8347300359652694 3.6189799480566003 2.0045768514648383 +3.935209989304559 1.2246835051162064 1.6742365235675338 4.38508842443192 3.833493426354939 +1.965731768040567 1.08191342369726 2.4949178202471893 3.675001944114093 1.4743586419865629 +1.4486724870164807 2.3403300616786433 2.2530185882088385 2.2754840570987147 0.8919405404761307 +2.2963410424097734 3.514456961886695 4.441447654069261 2.939463508066849 1.9338466247677715 +2.7103920219656015 1.1621731930351018 2.2185005268091627 3.2619389782963637 1.867015089466857 +4.3622215083595375 1.2165265035828106 2.05141719256281 2.8333994842140235 3.24143384438636 +4.002482368773906 2.210523637608345 3.1909841339319596 2.424215668146341 1.949115177285252 +1.6632112387960594 2.059220834893443 3.172095308434859 2.535073195602068 0.7500805106381355 +3.8084774319518995 1.6739230924124922 4.983503000230015 3.0543337722757915 2.87715417357708 +4.768931674804797 1.0247017151063886 3.775538025509707 1.1375015407340463 4.580228649981425 +1.4569743036583707 4.259820073637935 4.954810723156197 2.074756200212863 4.01878818369651 +3.8343543771551922 2.971975813552568 4.592253004815003 2.128012717598581 2.610780913845855 +4.327790529321383 3.7019242822773184 1.375027535522653 3.1373047526858 1.8701148492328772 +1.615220159301571 2.172387620110385 4.76058917758402 4.577707594393357 0.5864138921056224 +3.3956600677900193 3.3228614231329345 3.4933526630599285 4.990670243451493 1.4990862480903355 +4.3901575374476876 1.266675177866205 3.5100750812675936 1.1289819450517227 3.927562421394603 +2.943412462379336 1.8958997193736074 4.171631149151357 3.5229082924655715 1.232121865541697 +2.2441774120699645 3.546246796957605 4.265067405982485 3.0383207691392795 1.7889359949611932 +3.1793081409488813 4.249638742167122 3.5571861876149575 1.8295311629886633 2.0323384265472817 +4.500045211087176 2.204310413594605 2.7742090134181656 2.87818393591782 2.2980881281898364 +3.9301037062930733 3.802573461238338 3.137334655521403 4.419927406932665 1.2889174253521565 +4.459651368908999 2.070585422092744 1.532230541945999 2.333596049015455 2.5198854684603695 +2.593084280062726 2.5736944935630097 3.2894539421419586 4.473942686158967 1.1846474363807549 +4.259213008015939 3.0289762388502433 1.9793962925181123 1.7917137054499728 1.2444706753057055 +2.835191344232461 2.0985041628669663 2.6292019959229127 2.158030931707688 0.8744770865734248 +2.4701467537366546 4.893733169999784 2.409134165147427 4.345998809174003 3.102453185202857 +4.577885792037784 4.914736246796302 2.281640673340565 2.56874225803783 0.4426008911047303 +3.367182012378342 3.9486632866235234 4.013947657772301 2.6564770128492947 1.4767691167293149 +2.761630954127587 3.0906484390471105 3.056140215165267 3.3424865894920046 0.4361728458682831 +4.603748170669318 1.3648164207212532 4.387565943674492 1.8616804200675228 4.107405088275185 +2.08222235344104 2.752728732952447 1.4555627150175625 3.423343067492642 2.0788791019567356 +3.124946580824429 1.0850236796827644 3.2773566233667397 2.164619235387513 2.3236759535720672 +1.0634556970172055 1.7808835381131898 3.8451734673930984 1.1347505855513749 2.8037644169207296 +1.792591864981779 2.3434205636478405 4.632968590226846 1.496233043231069 3.1847326649282577 +3.1271892663314675 1.5491108819076138 1.005425966777672 4.003389143067873 3.3879366277688603 +2.75987411204509 4.433477018016784 4.789649594006315 4.84396904370632 1.6744841860980986 +3.435823526837236 4.104499401181705 3.144179974440824 3.8538303934659015 0.9750544303539206 +1.9798471566663243 2.6989682761048015 4.513726136508071 3.095505702274714 1.5901208710344943 +1.7933211624622452 3.054491515043324 2.3080448120683563 1.9059928291847315 1.32370557722257 +2.4699385850553246 3.5260183479344698 3.593672877566834 3.0245947480858795 1.1996476078484104 +1.9645995031450596 3.965012752050105 1.684071458991875 1.4017348993374523 2.020239366835607 +1.0306201506777795 3.0830817611949315 3.752877060865567 1.5052329606433639 3.0437645546116636 +4.288458064445763 1.9594305536170964 2.8959215933424125 1.1104020423925474 2.934697465331134 +2.2004772593899045 2.5128462236329923 1.945594976740706 3.7582056683738694 1.83932919545283 +3.3001306952187015 4.070077200055712 3.132857915235673 3.3247151141590754 0.7934902677975719 +3.6344528295844003 1.694653774011683 1.1395750164806344 4.123824972017492 3.5592932125806303 +1.2540355724299768 2.5701559328044783 1.0800211791792873 3.097849114877426 2.409108212819864 +1.1415963336759716 2.6277540224049907 1.861207246449808 2.648942009311336 1.6820198370973178 +1.288303908092022 3.012693972541096 2.417921821088597 1.8747008337907927 1.8079297927219087 +2.353360612605172 2.2827594326780765 4.69391170891362 2.4966804525806503 2.1983652381744165 +2.972318260039731 4.058192739768186 2.320920938135537 1.5684587728856654 1.3211066178995805 +3.5890260927374102 4.790391123048768 3.8007625556041935 1.1919900330544313 2.872102367685675 +2.773247881098269 2.315739521800271 2.923798549210749 3.406411999888121 0.6650034899173584 +2.4237635314782615 2.791390831794506 4.588505009587795 4.143364110283833 0.5773216193517704 +3.937878403425785 4.101779533650845 2.128309965062706 3.8385365463224006 1.7180624376710745 +1.5201681231437192 4.335490595610542 3.612395276958332 3.984696110294 2.839832483524185 +4.2274828824024375 1.1683939405721238 2.4169005399760772 3.4544327470969654 3.2302473952998785 +4.91484287909882 2.737971812197796 4.370646125188685 4.196234506594898 2.1838468477920574 +2.141658463362805 1.954170006775818 1.1232795782338822 1.3563570261659645 0.29912709353701655 +4.145046122996998 1.135894736521767 1.4387015054208518 3.272676698995486 3.523983126715127 +2.256237283436873 2.6455696603644623 4.327319668855633 2.8676439254235655 1.5107061182400918 +1.7784852072122286 2.811246074291772 2.480669011074641 3.3841349739296995 1.3721682676000448 +2.8756560519984427 4.933780846377402 2.701228809541587 3.4611204029747844 2.193926366815413 +2.2659086899928287 2.1253503993587692 3.7056530013350093 2.435521023381909 1.2778857047815442 +3.8605700834097427 3.490650126233344 1.6644962189352746 4.8205599078888834 3.17766876553376 +4.572595008225093 1.2603776903812403 2.1855792586386205 2.9044155434220595 3.38932281804876 +3.989670893450349 3.780646676147331 4.901927839536678 3.25123015304837 1.6638791950129648 +3.987851706948512 4.527763075396037 3.544288873660182 1.668166090712138 1.9522656024413254 +1.4838788089455144 1.2192855866852055 3.0320477610565173 1.6337595023953022 1.4231021142475708 +2.0889721165008623 3.2976273636716473 4.469593247024028 2.4182788323898143 2.3809112403026655 +3.617053426389832 1.3165178726572124 4.871011530346564 3.7127223829284675 2.5756741997027484 +3.898996462433305 2.745488122957785 4.752206727338257 3.4146060305303934 1.766283418180801 +1.1433108509571315 3.7119221157641347 3.1770012817858526 3.6959040204738347 2.6205006929805075 +1.419471381649179 2.172144051512205 2.7541344356846755 2.7147038316453216 0.7537047966502827 +2.6544942626683046 3.8505026519889873 3.7306113640118967 4.385517538444711 1.3635755074933247 +1.7377081589551335 4.687252728334359 4.640437368520956 2.284141696166916 3.7751744942861727 +1.4471281317526263 1.7034462439660953 3.274705302014582 2.819380738487 0.522512614967581 +3.0077953806651676 1.9979943947568373 2.5449386690431908 1.4862954897477354 1.4630185959892053 +1.8540435200519267 2.5965408351380943 1.846112642572781 4.718230709887255 2.9665408231649866 +1.0201411835446241 1.0536511042405619 1.047031989601373 4.474153835092808 3.4272856692475555 +4.764726273682134 1.8667489257192336 3.7645514054375258 3.425837992912512 2.9177044889999446 +4.2889934025248735 2.7555197819581307 3.2102176922739964 2.2747387270650914 1.7962912456843958 +2.907932649908099 4.342518432174588 4.402672790704886 3.774840383376333 1.5659533512761865 +4.87112128417962 3.9508679041984287 4.95565150866781 4.649611146565849 0.9698077059924332 +1.6005881447272081 4.887698019469074 2.614531846228193 3.090502392465239 3.3213911677956083 +2.7085187440134657 1.0416222727026851 4.025683245762282 4.778641341913181 1.8290679978140554 +4.628889086308661 3.7596165945399056 4.43171715874189 3.6021880686124828 1.2015628058144867 +4.2343636298052 1.1575536742417682 3.5603446103787952 1.0020747437072215 4.001437768274553 +2.950931090145414 2.7752513986868736 2.3700498028300077 4.183560525950969 1.8220001363517182 +3.770733560614059 1.3209714852663987 4.889683866695666 1.173223075937551 4.451226239482117 +2.3901686089942316 2.599118241704963 2.4427227462598062 2.4951499532435726 0.2154264631888762 +2.8428162872382856 2.1361253501258286 2.3571207031588433 4.115659023095386 1.8952227054576254 +4.82275065851357 1.3426677018557878 3.969006156315163 1.015842896725402 4.564225084613026 +3.716064474718384 1.1205020272434454 4.613750447054931 3.374122799373178 2.876390294038535 +1.7992298106725966 2.8491388353299985 1.4034240640456623 2.6118065420509478 1.6007801764162533 +2.810311676968366 4.379282488527888 4.6883089084279455 3.130862913084138 2.2107255451408276 +2.4222886098423486 4.47335410982612 1.8011977086806419 1.3516413417384503 2.0997548933820687 +4.56843204285207 2.8266953729801383 3.7180573280191345 2.812235361140174 1.963201483000926 +4.747619143261344 2.0933361074811843 3.929854077496905 2.025729018229063 3.2666359875814304 +1.460041418061258 1.927156463734859 1.2095876522431932 1.636076693133246 0.6325261796115379 +3.3791981945611616 3.4001538138391076 2.7781643658349835 2.957862798025728 0.18091618089914976 +2.0844891487199115 3.365180176222094 3.868077038649403 1.3646371713043193 2.8120065215673606 +1.4478073132228393 3.8702540450289855 1.8572928333344372 4.7580279435037 3.779221129784147 +3.9398742889408163 2.2906335953397488 1.0878283425602255 4.688208401147195 3.9601428549612248 +2.3612246261262677 2.633223764906451 2.712916526303003 3.514093819983096 0.8460901768757983 +3.2541082332417273 1.9916188759108433 4.283325012651533 4.020351649839635 1.2895868977786438 +3.0607888333756303 2.9968002310299933 2.2600238391299983 2.9176647825262 0.6607466622399196 +4.231470161822239 3.004290853437269 2.2615753549856237 1.56772997941632 1.4097483676625135 +4.618733253197448 1.9431082137906661 1.3797643226916185 1.1943497360890616 2.6820417447209017 +2.4274982546724693 3.5534249944324547 1.461469180995124 2.53387104274989 1.5549137520781138 +4.201254861427252 2.970285729967157 1.1565837290054537 4.890842386596818 3.9319171817834206 +1.7789459998326218 4.196114436492145 2.1409675854446544 1.0123094257038403 2.667690479184676 +3.9099831041159683 1.081688398624559 4.6271329759491255 1.6438390570161152 4.110875034327049 +3.9717733826417168 4.3938060672251 3.3016584346610895 3.5311805835541747 0.48040816363708566 +3.7014552399742446 2.3214455990757066 2.553443434533739 3.010710368655788 1.4537949160780177 +1.5106397326947145 4.557932076940602 2.0643625370334693 3.412111915277989 3.332029264255956 +4.003660627946667 1.2643194035874021 1.0234359164507958 4.398437608210765 4.346794998945404 +2.790995785018715 3.62116150646182 2.064967701760921 1.2163173831937222 1.1871741608809379 +4.013501146523182 3.746826008398602 1.9548171570869002 4.994729012136045 3.0515864260679386 +3.12171286422663 1.4021616258687057 2.5908573436942532 3.4230332268435957 1.9103332593643598 +1.6603498747355925 1.9734607023029769 1.0662745273576872 4.610634418805651 3.558163210203398 +3.178825438786569 1.7026883672470539 1.7280770855804817 3.2210445691820784 2.099507694928728 +2.1033787432901025 2.7819701147407194 4.724453442268587 2.6673955746639715 2.1660963321332862 +3.8325966476762194 3.0116984452523554 4.379782399302912 2.6465747238537545 1.9177806717606172 +2.8382772445152713 4.71504928711826 3.9476772687043127 4.830075912802072 2.073861294060372 +4.128301144020792 4.526991778083925 4.385982636554452 2.644039866028344 1.7869859645441641 +3.1480553653019414 1.5182676699155975 3.0730251652326777 2.565404225828751 1.707011116001901 +4.382606826443798 3.9086562012043977 1.746093833525471 4.062034839720673 2.3639399187249373 +3.2837533783928707 3.6924300693859484 3.54075562420643 2.6843637707993264 0.9489065519549885 +2.1473586953929367 3.126886835036417 3.282625392002794 3.9915192494738365 1.2091343504811995 +2.4041898850570513 1.410364761843673 3.010415081679892 2.3337321312287633 1.202326158312016 +3.9861899689985045 2.6951424929816072 3.193644856110581 1.4899067368359087 2.137645238200015 +2.1724340028620075 1.0309141981419248 1.3256458249062573 4.3307975173442586 3.2146545940631257 +1.32795293768964 4.9203529426293064 1.0742963746613259 3.7516833644770613 4.480372628334063 +4.5760866915230105 2.585040411953002 2.809902207354137 2.232790093776624 2.0729987166005377 +1.5532340122762958 3.9365061590591712 4.744724242880174 1.257571897338598 4.22376817624348 +3.230865334582544 2.1021627283914515 1.8077952263908172 4.028367178298103 2.490965549103379 +2.596395417432307 4.3322226958096355 1.1806807429086437 2.418390022880913 2.1319053923868942 +2.2147850313543147 1.0661291843901823 1.2931015819701854 1.0437675187475692 1.1754053470390493 +3.72458441265447 2.511701173979663 1.4214454935447622 1.5716129056084838 1.2221440186427308 +4.123994367621125 1.1818319344703299 4.357510804176142 4.072492029796683 2.9559356361045106 +4.813763818501841 1.6462026983160052 3.196386806127368 2.3073557670653857 3.2899573915977354 +1.3204998517214985 1.7071104301817321 2.2711346447290883 1.9445613748010135 0.5060808631126765 +1.5702002798959906 4.644419472610837 1.3284575424317349 1.5194885147836157 3.0801487751818137 +2.844536777576498 2.114747565592668 2.2738864396008096 1.6615169550907787 0.9526744876856209 +3.2137311049177946 1.6950806457865149 3.132500790286329 1.5838032700488247 2.1690466168825053 +4.98414683432507 3.964610865935729 1.3257491820415108 4.530343775467016 3.3628678384753052 +4.043277896922052 1.2675224414367117 4.619083734399547 2.380786409416328 3.565780877126869 +4.371654721816416 4.553136860065472 1.9038833670295396 3.0299266544898438 1.1405740886666935 +1.869305838808633 3.401801288249467 4.511259017437679 2.6840018784577118 2.384829334461927 +1.544696150331252 2.9697841693262275 1.4640876138432346 1.1764747453696742 1.4538215241200048 +2.538226534700997 4.915193896075987 3.5368075053692487 4.702911369695069 2.647597412643696 +3.6088021241806856 2.7081561351264627 3.6749285317449463 3.0470798146918923 1.09788761223753 +1.4032877223581872 1.701956101041839 4.596898321731105 2.442940529798462 2.174565926766275 +4.849935663140556 1.9942297515810767 2.6372727007269723 4.391148967427885 3.3512890374022484 +4.961696038659211 2.9807912870682487 4.309102530074579 2.387106406194299 2.760082016007219 +2.811208091921379 3.833428443100899 1.4485870458494055 4.496272571195302 3.2145484142828638 +4.601817930850391 2.4538193239289483 3.381378991330056 4.510248544245881 2.4265705188262783 +3.793775992204914 2.534631173426795 1.6409996618655538 3.392836843198016 2.157401025436543 +1.8177919991775378 3.5355305748368147 4.0277502732135915 4.361170434847855 1.7497985079694691 +3.472916439192269 3.7077910067258895 1.7330177289396018 1.8862072897932056 0.28041594824229465 +2.036389324382563 2.771547060200278 4.376519405361044 2.676666793250644 1.8520139846748407 +2.4347377854773455 3.967291106427652 1.824984637404048 4.590718171192876 3.161961679318687 +2.6416334999684654 2.4573711032104852 1.9774306924601603 2.619506106943577 0.6679921172761296 +1.0164402864329767 2.679403909553688 1.6058434779378374 1.632109630246835 1.6631710442945677 +4.395494529573641 1.2816369123644908 3.8118590182271523 2.0597135865225753 3.5729711549485907 +2.0025211588399294 2.487848975722075 2.4688045151014335 3.5315715420877556 1.1683393528803758 +3.1456132153967453 2.387092270516527 3.1236767284589826 4.848662239100313 1.884390892502007 +3.3322307240733204 1.8155683335955488 1.9523421580556146 1.9775184494049798 1.5168713367770703 +1.3527183693578007 1.2455330308466621 3.3950931679796312 2.149139732121265 1.2505553410861174 +4.09667660421894 4.95270440114708 3.3994330896091722 3.0040151747524213 0.9429416294253345 +4.7462525147014105 1.3888118488191732 3.227907204903055 3.1355512230276155 3.358710683031204 +2.7600461557436877 4.950852779772271 3.9008689569346897 4.8196452168567046 2.375664850033313 +1.2249721405605576 4.909484207614891 2.2327875321832926 2.1583053415523987 3.685264816670597 +3.133826454583545 1.651624017761078 1.8751809377548612 4.25489293003614 2.8035608125970435 +4.635281942736517 3.335880819420451 2.9744469976135814 3.947844936910344 1.6235599242104488 +2.6201442373519646 2.219216150883171 4.396663583377139 1.4738199266072014 2.9502132757547863 +4.616833192095323 2.1780948896840946 1.5634270905413867 1.923527012796404 2.4651808172334277 +3.7403093411964083 3.4257779878706796 3.2194150751764976 2.3604564619875834 0.9147348639886517 +2.7740228318661235 1.6601322177670177 2.5105208302768682 4.935506649991835 2.6685779969858014 +3.2276293319659417 2.909819466105981 2.7203393847216844 3.7614069507883365 1.08849657232068 +1.5888164517745262 3.7300498143406564 2.5196117536859726 4.2230143380968 2.736139740134583 +1.4150202521872703 3.113524880820938 4.744345788047392 4.33179204153744 1.7478897468803318 +2.467758565760504 1.828293964738588 2.486934568410517 2.518831579451785 0.6402596311446513 +1.972713441361189 1.5377089788836997 3.619724924135512 1.9790748149260438 1.697339583944347 +3.8756269283563998 4.973756807124518 2.6194172985430324 3.882065028970411 1.6733704078286709 +4.479510783642722 4.660705511542389 4.951230154133066 4.8503085601418565 0.2074046709993799 +1.014703895110911 1.9440815331899999 1.6245773736854963 2.3816641509651957 1.1987173071634643 +3.2573128624586065 4.853470493871024 4.145110935266254 3.103258354507358 1.906089185833147 +3.0074410918504273 2.544515692959962 3.132468500817032 2.8074278718495727 0.5656424094933636 +4.621952766528504 2.311528310609399 3.8732843896446 1.2544731273607517 3.492310638241366 +1.2315707606249569 4.735268359373853 2.0009228300911737 4.820433270124958 4.497280954636733 +4.313612767273359 2.021274794070394 4.492692749606363 4.5005686694793425 2.292351503042699 +1.7414563083455983 1.5801503917609363 2.3619416384122562 4.5556954877508495 2.199676237588867 +1.771477390359188 2.938798005466151 3.964434243413909 3.9109397953022627 1.168545709175498 +2.5553443176041872 2.1338290838751766 3.6039885998124643 4.894300942821238 1.3574170452688497 +2.8846016418467255 3.431144537365278 2.3096528559996843 3.8980099081466646 1.679758096199226 +4.265743352791401 1.3317035866613405 3.8421686928554806 3.7735555828049674 2.934841922166055 +1.9372801886001154 2.5008193438372954 3.5228966635570114 1.8251037513611719 1.7888759465619364 +4.652547902937895 4.147791913185418 4.579333559638442 3.7667413732899964 0.956600580443871 +4.627602428022604 1.6802898017419645 4.6059841840907385 4.947021046624812 2.9669778999244945 +1.3913280821180942 4.719545800554869 4.981769908919326 1.3200619580400956 4.948245982047443 +1.829122308377618 3.020236323652769 2.0081530546409105 1.6187112142496507 1.2531630159050435 +2.0465249311931886 1.469212039136838 4.195485499519308 2.7650229576905145 1.5425671002941042 +3.0970652023783636 1.7734807289706205 2.3780653356082224 3.324150240373839 1.626945759781628 +2.038880442369641 1.5858979715109913 4.9094819443964965 2.5108892840070056 2.4409915750324793 +1.3605472431116405 1.8489423481856369 2.494544047703039 4.204493163619362 1.778329485130147 +2.3415589851078473 4.247360167885674 2.227185854348228 1.826674796424843 1.9474309373624192 +4.1636142650423755 2.238968903435044 4.679802169657329 3.302058251672363 2.3669469938089405 +4.047060490244138 2.826328938093074 2.6725046316833954 2.73254071681087 1.2222069603526968 +4.31786274454508 2.7580108561140717 3.561929640991035 1.7679339021220408 2.377300701409456 +3.040554794076422 3.5347457389554817 3.9702942181420493 3.60105800650972 0.6168955097754011 +3.6537998284529394 4.582697106251134 4.581870381683759 2.033672122727979 2.712225012724085 +4.013010233893182 4.707880124835167 1.6475936929656498 1.1328124972807623 0.8647796509912161 +2.1364714445209625 3.4908544810036153 4.978011523935987 3.5202451534387293 1.9898332092074245 +1.7679511207804741 4.963922715672357 2.5810050541492857 4.931802103364777 3.9674275295153194 +3.175215323319762 3.647576040363804 2.245457770019161 4.722855704692098 2.5220279882919803 +1.3890514270678942 3.554158168535827 4.4706607720274105 1.0097670002017098 4.082336696282145 +3.7651252265299613 4.49730036935237 1.7132621126966172 1.7751982275369413 0.734790121115226 +1.158352075684554 1.4980320425147076 2.7263635828198267 3.6167156112084906 0.9529476451104449 +4.600839729122557 2.6933727507435385 3.5803989446736484 3.156819046247026 1.9539319854993646 +2.3814091311240357 2.0648530028768 4.674018082686411 2.516783169604155 2.180337187811071 +3.345219433896755 3.238775338670712 4.513536516104808 3.088260827792016 1.429244952100232 +1.2375995565358342 3.6447463307001553 1.0368211073320608 2.1991723837204398 2.6730911099495636 +3.9868587715562063 2.3513090228244367 3.301866769671566 2.5600781199172253 1.795904613692198 +2.853976497106648 1.924028528181116 3.3887955281780475 4.7430730424748475 1.6428240352023835 +2.8490312284366714 2.3771995650615763 1.4545424491646561 4.679513331228865 3.2593039607752616 +2.7843004038242762 2.794065281711239 1.2696964707180016 3.810814837512267 2.5411371287081894 +2.9277608655030978 4.5316042055675485 4.044947226296999 2.4427339034527873 2.2670247002113992 +4.885227351484367 4.842268042861935 1.5240009472010256 3.780039376941314 2.256447406580163 +3.98985535075558 1.0731143403575434 1.7021593090101046 2.1714468226188037 2.954252679133387 +1.8690130916389416 2.550257705435882 2.812352515731212 1.2496024217747532 1.7047821209727252 +4.7699958216068055 3.039737117549611 1.7634318310055983 2.699368887194325 1.9671739516659175 +1.1005865876385155 1.333939409869283 1.828269908275312 3.908219432696021 2.09299870133285 +3.4026463453074873 3.91088781785051 2.0742770178028014 2.761680085896879 0.8548873448810969 +3.954049832674639 4.608419077193087 1.7876562740701707 4.253711936968248 2.5513975857720252 +1.3006265037668379 1.4686365395380419 3.690990142763937 4.31606971058572 0.6472648903100708 +3.592243038598332 4.166864726492711 4.336358606050111 3.893922917775943 0.7252168106554217 +1.1728091561477165 4.524141618871271 1.1554931693759913 3.387773726327764 4.0267239489005995 +2.7504249131208733 2.0058956419999245 4.029260970341463 1.4164835310653605 2.7167866649308476 +4.9822665672120365 4.423762448833278 4.276900539879554 1.955073077874255 2.38805561358357 +1.4880734843752985 4.971845482788128 2.251029882564685 1.7625987143837363 3.5178448435051717 +1.382673174526182 4.943149458803751 4.289731565916053 4.688048126347271 3.5826871832769265 +2.372834501668607 3.8561901665384655 2.140646975986031 4.779681018572121 3.0273494523146445 +4.111290849078702 4.230598053943373 2.9894004624278634 4.2611850885264015 1.2773685232982763 +1.4957294877385143 3.8153597773998444 3.4247550278938577 3.5391440796571367 2.3224490383811673 +1.4819126105917468 3.2741190059119294 1.9949115565859663 3.397726830554284 2.2759381486115497 +3.5018829983982167 2.8821612105455827 3.7684577507322645 2.1057954613128826 1.7744015844775853 +2.446139933967542 4.2313359277619575 4.934839416609167 3.458188770097955 2.316769705452316 +4.224492914998281 2.7739775745564472 1.9685609026696325 3.4649856478274685 2.0840541669490706 +1.8888592319372326 1.9256592083568638 4.075028536177188 3.8600170107807132 0.2181380166724823 +3.0134566866384795 2.6518728170667707 1.1293600006944353 2.1676109372715064 1.0994125258689824 +3.632917153550733 1.2042412310970736 4.451016517554242 1.8760062889024174 3.5396531488223046 +4.637859497489858 2.9363166408808876 4.0690109806648795 2.0064948803290994 2.6738026772784353 +1.4049635274896528 2.101298969196618 4.487300896162665 2.518340415105234 2.088465566712352 +2.4685353490554793 1.2055437847978454 3.6076108344086273 4.862123935952778 1.7801547161221323 +4.296521574124984 1.865502713648448 1.170997993170551 2.6368391556482007 2.838757300934066 +2.5907445755817853 3.718408028518696 2.124383969072167 4.667758688844366 2.7821538110366775 +1.1441214183477442 4.4676861996034845 2.525280994441843 2.840310152052957 3.3384616555157085 +1.6393048307274274 2.7085606002067433 4.506097111697743 4.983262532536406 1.1708948455813366 +1.079353239853393 3.857187237871348 4.277315995627179 1.4588078962258089 3.9573159624846155 +3.748579300112422 2.833293272890666 1.79539678342908 1.035521502627784 1.189604536810546 +1.6745562652399166 3.4403008415542313 1.718983628878485 2.2337723366713105 1.8392556435836824 +2.5047040572120576 1.8340448434835 2.285799276879348 2.80434154154398 0.847743983288901 +3.22445333379491 1.7373651887172312 3.341379546038207 3.815467199081059 1.5608299888194905 +2.6847763784661165 1.1996499994897003 1.247310797047946 2.3672398977142444 1.8600649322136111 +4.4594178620339315 4.39473269373609 4.3264681540756245 4.185964112104097 0.15467888287693582 +1.9523055863708798 4.232482193574703 2.8999549626718166 2.99357455103568 2.282097716436559 +4.815752688363908 4.4651211605997645 2.7559242509452453 1.7040624603006833 1.1087631374104217 +2.87432749575502 2.274278740362083 1.405750427096148 2.0064917840202505 0.8490869724401761 +3.215107802548362 2.8794164560903734 3.2018432366395784 4.82973612998839 1.6621443837110974 +2.125662255699048 4.835810647284532 2.4066300659380047 1.6430033012113716 2.8156757874833978 +3.1393977742513446 3.964093818317297 3.5542226362097393 4.815927631194045 1.5073231436776846 +3.2447317707116046 1.8622697392327354 3.1751272250390414 4.012824283009034 1.6164583599376332 +2.7203754547616175 1.0811183393536545 1.6441777735895657 3.395689263614338 2.3989490178210193 +1.7217866810322522 2.0318772879888343 3.7811663721613207 2.789493408695451 1.039024278345738 +3.4737491176107653 3.409133572203799 1.5401683113556097 3.396641538883744 1.8575973765154192 +3.9515765536372576 2.8772285030913345 3.725007498728119 1.541368465177031 2.4336193544923486 +2.20440724512711 4.2403365416635985 4.272203117070573 2.6246955669073717 2.6190244802865656 +1.7119135621233963 1.2206179368541736 2.4993981157315934 3.891532168607651 1.476282023390448 +1.291820152333023 1.2855862104933786 2.923797430964025 3.7711353446283855 0.8473608451916642 +2.339783075434563 2.5533193323429475 3.338848070030321 4.1718947136595865 0.8599793273541102 +2.1584174099028717 1.2009322832417086 1.7556308978423898 1.7339697159694367 0.9577301157306669 +2.4750962979152127 4.369990367389636 4.158192307445018 2.868924477208462 2.2919064275428473 +1.0647095258577606 1.7302453393080879 2.2595656973443456 1.806506822151892 0.8051088518800672 +3.198121946239884 3.281979517714473 3.6910934147661614 3.7839422532164235 0.12511194625286035 +2.526563467647366 3.626494994090906 1.334226021247039 3.4822333946589206 2.4132519634501963 +4.762823949237218 2.867143581897781 1.8601596447534892 3.822561163489624 2.728483786987577 +2.2236661122383374 4.2134548142850825 3.3792513785990534 3.463997786641943 1.9915925869687912 +3.78682282912084 2.586064480009528 2.6249327829187146 4.707442497735371 2.403885880250199 +3.992381249028446 2.9321685393392536 2.4127205398745604 2.616622265355614 1.0796420255995274 +1.2444460520669347 3.442136910937385 3.368022768651789 4.763546047505773 2.6033306230646374 +1.6709946579769959 2.3804305702169977 2.543746157698416 1.3878571728245017 1.3562369479293255 +3.833614354463773 2.009172442390467 2.0486695810282423 4.109007993734261 2.752014292368711 +4.375088118200525 3.9654095891355032 3.1190175180332247 3.123943320812389 0.4097081408879971 +3.107630553913867 2.233649821502383 4.221115866625848 4.1382340171584895 0.8779018860884423 +1.1945781631505579 1.1521597849763472 4.861128901390465 4.766235706444612 0.10394247088636117 +1.1680886145391294 4.218775816482957 1.5605408012622566 1.682696206255129 3.0531318915292265 +2.2445545437043775 1.4621078635592388 4.736867589694036 3.6552081094921736 1.33499439638551 +3.3105019242208273 3.8566391044220065 3.537026374030172 1.0841243403641592 2.51296522187653 +1.5765266661193205 1.5388769292581967 3.0500329108802617 2.437511770121826 0.6136771549941608 +4.315035698675455 3.698091869187568 1.8852088352211847 2.0475603587260913 0.6379480432821655 +4.240892884184669 2.650287978943808 3.4261350238289783 1.3750525172509458 2.5955661065298865 +4.763924330090994 1.0780922015576215 4.516632330673749 1.0878945465635441 5.034044226257236 +1.4742061390245986 4.269290619112853 4.189515322408453 1.2442758420763615 4.060410428434184 +2.4438100269870247 4.697302305234949 3.430723636244051 1.6391451052372727 2.8788853886334946 +1.8206642201568437 3.378497515542537 4.012550236400419 1.39343331195239 3.047395287806023 +3.4561662912783455 3.3363962977591095 2.6884797071055933 3.876692031698357 1.1942333857591394 +3.2552419604976826 4.732602682213578 1.5015231946103742 1.6634099468427488 1.4862038967171558 +1.4473620272248384 4.539536526469149 4.734584435641033 2.828759235803503 3.6323150780339204 +3.572878790793204 3.983372744883573 4.532948326608331 1.502362199301476 3.0582605450434577 +4.9639862960155865 1.3864709234501382 2.8074759832953764 3.652639024336391 3.675991948696813 +1.6814258054007079 1.8743407236516996 3.655028559058543 1.9273843594875202 1.7383816169055595 +2.8323059716829504 1.9813906529620242 3.333009688668507 3.72133111497421 0.93533438393017 +2.3791962835912948 1.3711026631870245 3.5788753879838184 3.429195976355442 1.019145070029388 +3.72125297120297 1.5086558742024612 3.642856648762177 2.964898407223101 2.3141333779464475 +1.993636288697835 4.091311004678898 4.429123485905469 1.4654136881801425 3.6309523515462625 +1.0149916892625779 2.661699901564401 1.9696256807949326 3.676108766702021 2.371441008954101 +4.2354821905707905 1.1380973564479784 2.0491583474719053 4.056871630697808 3.691165864370732 +1.2743617775177496 3.1337293549450096 4.1171012697432765 2.269215068525539 2.621436858030084 +4.432942584364127 1.3781079173587156 1.560108275214163 4.585485849141214 4.299409762695198 +1.0326574306687348 2.569095171107245 2.129588820061433 4.44415737156258 2.7781052013633167 +4.394217717232619 2.6107092895755613 2.0451273274911363 4.572723673860022 3.093484378771144 +2.944929617726882 1.4634987768727323 3.2075003866210916 4.012350720530639 1.6859482187268218 +2.138623554714656 1.1321569970184804 2.3784005517517945 3.334040372586017 1.3878841446334251 +2.4073413902396843 3.8938046900464927 1.071257010523461 1.4474178051125333 1.5333199552143146 +3.7886590007608008 4.633412809012375 2.378459564392454 4.173890218240519 1.9842329070280103 +3.970137120169933 3.7059308062763843 3.3903965743170805 4.499510005220571 1.1401480513125166 +2.238976131475225 1.3077944157996257 1.0593697157955524 2.224530667142308 1.491542634372826 +2.0897381599332396 3.8042656618766535 4.761552895786709 3.3674465084244667 2.209782155372906 +4.625239606671145 4.055398917505077 3.93610094895149 4.975959449741922 1.1857588762878335 +2.1782590409110845 2.0917968470456714 2.4256070512484715 3.5039993511548326 1.081852884391104 +2.418902479672309 4.9010050941949075 4.723657794637525 2.2852357891584965 3.4794734178930415 +1.5650788117972065 1.6017372458447832 2.722152752124593 2.4250518757254076 0.29935392354867285 +2.699663895310386 4.4758580989880805 3.9824334560429855 3.8740760772339273 1.7794963250090203 +3.394136623838997 4.26371325990494 4.664327498562395 3.707496106706399 1.2929384511386628 +2.681791745928309 4.293286640954216 2.258862757320733 2.5550636040738874 1.6384903839546465 +3.534360010697989 4.897001312459063 4.695538195927444 1.359761097505464 3.6033595667961973 +1.2945972191733648 1.2553395827256324 4.642964473318656 2.7402086787639437 1.9031607330257205 +4.032505815910792 3.2991228403468633 2.8960885187686225 3.9208780263083516 1.2601762272041646 +1.4873645011052763 4.58019290866523 2.6423447970647085 3.6302515582476147 3.2467749117240543 +4.743049513660574 2.7342873423048766 2.26031411653461 2.2926474004072275 2.0090223747673 +2.016829755724326 3.599183606513596 4.076444500167975 3.6395549366255873 1.641559075951849 +1.534985367490076 3.9499836793802667 1.2655335610133163 2.2069242969655782 2.591994090303682 +1.6512865115694937 4.4465471665206255 2.7988046517642724 4.573746033408463 3.3111778927431277 +1.180421042310031 3.8209249905670806 1.1007175067008688 4.343222084538424 4.181638080711741 +3.268786446340359 4.197846766053576 2.7314604862483223 3.7128124587319915 1.351371441004735 +1.9994367392780736 3.603596528692639 3.448929744992228 3.4267184549550773 1.604313551454234 +4.255156326163951 2.2774053738719715 2.3881643103740737 3.257497838762601 2.1603795066775375 +1.6363018424669318 2.9582720410189367 1.7764026651197051 1.196469170872143 1.4435816788840923 +1.6748230221574412 3.2237121963458892 2.713612439126372 2.593749384558613 1.5535201401232257 +2.234969881654434 1.7249182751962797 4.112647802731234 1.4713116605482361 2.690131828972831 +3.6773883137311056 3.9247468634095317 1.2884320780415117 2.945464134402007 1.675392935375253 +2.692408838007552 1.2932125481804402 2.4699531371900694 2.392834801681482 1.40131991177517 +4.993744741813095 3.005124700048955 4.765428505926202 4.123838845298065 2.089556642718961 +1.9000961780969607 2.8677791117172022 4.18357713941959 4.617156023492136 1.0603777198401854 +3.2115252810422197 4.851415626874154 3.08547351361442 4.928762919035678 2.4671757494128856 +3.48697672577631 4.460863032288337 2.1133777740029025 3.2767459852162975 1.5171948236378519 +4.163291634627415 2.188897077749147 2.934167269673445 3.1619247629757887 1.9874876960589967 +4.047588621347011 2.8938949225540007 4.7360468334519545 3.3489439424852003 1.8041794757626042 +3.124588456099255 2.3579732349520213 1.151024577369549 1.1211814181356692 0.7671958755413644 +2.356534831253122 3.78750707557732 2.4649248250422486 4.884714896049719 2.8112391488047703 +4.0460083647544405 1.6929030512315117 4.2358974572356 1.1465394727948066 3.883456884343886 +1.1563261503822564 3.522849708420044 3.729249683002812 3.2680588959799386 2.4110434862902426 +3.798548148891471 3.973366738262426 3.432290873593401 2.5293327973861937 0.9197254082482831 +1.5318245797318868 3.559105414929578 4.504411095984178 1.065698575951513 3.9918180544946247 +4.503545048989855 1.2037211620304746 4.928933509384549 3.5387353856846975 3.5807106149598713 +2.359817004736608 2.6039823161074236 2.4268716664189713 1.011061200541958 1.436710121967439 +2.032831275798972 1.4193402347907038 4.40741477461547 2.5118808781246624 1.9923403349184674 +3.9322489815507224 2.6545201430171184 4.54183525732279 3.989452837154023 1.3920191532202195 +4.3425859146074695 2.8568006437907414 4.39167159167762 1.0368126979457868 3.6691465040016484 +3.4250638749644877 3.9556945676192905 4.816394705484174 3.2600940507787817 1.6442751168292211 +4.728335727971414 4.417154031627245 1.1136663341636979 3.319318359363506 2.2274952086160926 +2.968928322291118 4.9310225219470665 4.345955518107278 1.1580455610816283 3.743338555678179 +3.4884163802960466 2.767516645197246 1.501684687585278 2.702819930403339 1.4008648398775392 +1.1033440283002611 3.6224428231268413 3.5854143412306256 4.187644878905662 2.590085009918611 +4.722183523695675 3.0476113217871568 2.7006622398331803 4.725027337187358 2.627212611645759 +3.072059339640644 2.261782004130685 4.60819929307668 2.085592092636942 2.649546460840333 +3.232164399846315 3.2788884672821634 4.234085685934063 1.6117304033219724 2.6227715048629925 +2.9143448695461815 2.787748859479319 3.273811986908952 1.9911576540989917 1.288886607596267 +2.2144482660660105 3.9648709955470745 4.81145350339761 3.2029136276852035 2.3772631877099393 +1.6718574723206432 1.8079509793029538 1.3409031202797062 1.699891273431792 0.38391917996668207 +2.0505879204121604 2.720351810690416 1.7149938143100538 4.602830761063469 2.9644874598747673 +1.157687907587046 3.9561295504642326 4.110374653169253 2.8939420470726804 3.051390488574687 +4.266696362046041 3.8139612718219853 2.717008429914007 2.64881916740195 0.45784149816516395 +2.3354569125371185 3.293295030675111 2.4359154564636323 3.195655770812945 1.2225625570111833 +3.9492507259982363 1.4237703463461906 3.3892654963568423 4.001606559887293 2.5986559460792504 +1.63210980916371 2.4929530394126544 2.6817497168236577 1.9546401604240238 1.1268271269689552 +1.4859804138717707 1.469017192679615 1.03497542097073 1.8978781035673284 0.863069400746904 +3.8763211079444853 3.7268369677013307 1.0565046909853848 4.610942392750552 3.5575796384499783 +1.8830194696135 4.831744583601184 4.8067508629919 3.009320235231585 3.4533659897949596 +1.0784187855881533 3.4500003347400634 1.0422737102577893 1.6104490395087039 2.438692733627416 +3.0372428861034106 1.1904022411703359 1.45344265631255 3.924974002694806 3.0853342710194145 +3.297587251971638 1.3025981658537313 3.7708701975592867 1.2187692684414126 3.2393210100473024 +4.175586053130165 4.4721139041676725 2.9206616222334048 3.2663489770060767 0.4554432057794356 +4.299892631931207 4.963799268928352 3.5329379029114802 3.6701638503907033 0.6779402505460419 +4.999877553729175 3.897621554600781 4.447540787562152 3.0736472008166387 1.7614062209822545 +1.032888696655002 3.9566314033238523 1.6344250410291012 2.397658658252933 3.021720862233947 +2.201864335349767 1.5127523635939277 2.5355872434056947 3.074690858782585 0.8749331504347373 +2.1790405684508225 1.6843611621237047 1.465351937706929 1.190432448856117 0.5659403152224989 +3.7930890750071495 4.520585598330851 4.950570918904587 3.091302233429922 1.9965297984840504 +3.381787100015905 2.9403697544018783 3.1106290665026837 3.988444667364751 0.9825525442060415 +2.1835267412116144 3.5650072381869573 4.136576107037024 3.413132762037633 1.5594417709382895 +1.572395370076388 2.5892540004528883 2.147814982291329 3.7992919735774433 1.93942716463357 +3.633414742569784 4.993784120942849 1.3482678815322813 2.002194025595808 1.50937876210874 +2.6108459815831324 3.7809839588090894 3.5916440830132834 4.443002519564262 1.4470777702780802 +4.767487652449557 1.7256023890775576 2.560964268713775 1.935328893439416 3.105557208990751 +3.0730143077953533 3.3217304129065455 2.000478130216992 2.4393070411957885 0.5044110566319081 +3.0056735469821785 2.0456849917293147 3.9872637454622843 2.610456974301976 1.6784441936893089 +2.360447951531261 2.1978872235089755 3.0456798477931617 2.6851239336699653 0.3955079740085518 +4.931659373695041 2.5912311488890523 4.976685418224212 2.934027352108225 3.1064539672329308 +4.4236660491826365 2.3067282810379703 1.032330560321404 4.1417628058205995 3.7616478308777777 +3.2607953616404672 1.5327991116495925 1.565878910324205 2.592519914934918 2.0099658684491684 +2.5841079380811154 1.2544606258182336 1.7716128226780041 1.9266362236014118 1.3386538872470977 +4.867277888792897 3.3861982623447906 1.659011756349014 2.5568117433432302 1.731947365403024 +4.039051623738502 4.547352730163198 3.8959112480122284 2.5217525279094546 1.465156033611118 +4.026923710987296 4.133311342398883 2.1391386561744556 4.551068947919651 2.414275473171078 +4.8376181085207355 1.491805654643012 3.5271480248922735 3.3941857737691223 3.348453364875642 +2.1061254377987857 1.5040294906451805 3.503921853879026 4.800066142854391 1.4291639330119725 +3.0362705947648787 3.9864858606319853 4.238555587528424 1.4805032643998892 2.9171495794013724 +4.878370762050775 2.5245372495155296 2.4958129218138527 4.494911489863009 3.088191588860736 +3.72765207008022 2.152531295205577 1.3771524381605267 3.5722805909453377 2.701775909025423 +2.8810034168528884 2.0942695608707083 2.8476462181812794 1.3704161196433544 1.6736663120750677 +3.8066367335209743 2.212204606858194 4.097072949885561 1.9897591964972214 2.6425338336063073 +3.1020856943553836 1.60654409307794 1.531534151955356 2.2363790756178212 1.6533151688544585 +2.7282592770841685 3.605964007317542 4.658113164365563 2.8767935848627073 1.9858159627201786 +1.0365538307607807 3.80322088983091 3.129487780094632 3.2637098432258207 2.7699209696262006 +4.910488953152523 4.882315358437186 1.7750560504232338 2.7467259532967336 0.9720782641276271 +3.016281892923969 2.9710441726342234 2.946842775416886 2.47070208463516 0.47828486151572114 +1.45588694652659 4.552852839812645 3.2055525467266857 4.65950151173757 3.4212812420251737 +3.2189141642947665 1.417003718879172 2.904976311206263 4.39522333939643 2.3383150896163354 +2.5217688056893266 4.12692796523635 1.3934638197412577 1.6299007684515279 1.6224790778907223 +3.9667195669559003 3.1883279260337 2.089782345324916 1.766871000052888 0.8427130493607811 +1.69699735535391 1.2530051144904668 4.792083468425824 2.826052658644336 2.0155411816574214 +2.2284286590781797 1.1729126278578956 2.7187283919043477 2.895438877950036 1.0702059091789407 +4.019865522603634 3.0144803462316303 1.321754639175777 1.5502543539245197 1.0310244771627988 +1.9275352154994092 2.7177939169466163 3.2286964767570123 3.404787771529504 0.8096400183462269 +2.004312327134173 1.7325115568173795 1.0688621147525996 3.201952029927739 2.150336774778938 +3.8197553241711186 2.319431813674083 2.244032943333861 3.7774730546054123 2.145322635644032 +2.616337943517308 2.915174136705788 1.803510197697857 1.0059545105564118 0.8517030846786016 +1.242433154216105 4.872003659041248 4.260687870151704 2.406803831483678 4.075618735643057 +4.537904094134884 4.751829264166927 2.8163374370478653 1.7957773371914327 1.0427400902392745 +3.696025727824669 2.693235669653391 2.344556035752183 3.8206598693324603 1.784508455647534 +2.1782766964576674 3.8651656646442953 1.8590438087327752 2.4411465137741994 1.7844993556194662 +1.955100259198585 1.3563489333944418 1.74681034119455 4.345697830791636 2.666968191361956 +1.4852153437084303 2.869163395059629 3.8973453873535533 2.7464363986322984 1.7999732523452012 +1.9735832593351925 4.894464566411301 4.810684231577751 1.0890597891883869 4.730965662548882 +1.5573577497099347 4.227226731631429 1.6264554101241617 3.586997993240538 3.3123900133950337 +3.526227525744187 3.620989042680486 2.883960743386906 1.1703143122786046 1.7162645005774275 +2.518739988449397 2.5607477374617655 4.821211995424395 1.9420511848132307 2.8794672466163296 +3.2749965995145582 1.576132683321421 2.9585961055836902 3.939644404086402 1.9617834665778353 +2.7589933696958275 4.26787210388419 3.1972905052341405 4.163533505316787 1.7917423279296014 +3.5061322601162455 1.5400567973498793 1.6703533504943655 2.5036587624191027 2.135380676796303 +4.072990617521426 1.9435532350090505 1.315413107801426 4.156315453484293 3.5503844444999997 +4.949146489454452 3.4829298241138096 3.087461805214436 2.9575875024415064 1.471957419303761 +2.2517218415395996 3.432077614187342 3.131391001460022 3.2079629434351715 1.182836849409374 +1.204001745541952 4.558674376529622 3.7534899413657348 4.013548893828953 3.3647376004458356 +1.551872553146763 4.472571088440397 2.3401080420199656 1.0916058173491496 3.176356047277187 +1.4565207152033213 4.406761058142028 1.907591862285496 1.4919008533222615 2.97938199901187 +3.050107026217677 3.7171413683396364 4.159965780770131 3.9826767743415044 0.690192875485197 +1.9195832848603231 3.0187292531813115 3.381042985627088 1.5788659730258132 2.1109154043743055 +2.309478773511304 2.384514814900869 2.4017952926327695 2.682437989949774 0.2905008279932783 +1.9605247679317408 1.5909329443323488 4.013435708594157 4.150829453547337 0.3943033822119507 +2.1553269831452235 4.925644341678497 1.6431250576286938 2.6459425845628344 2.9462350991251665 +3.3028141804537587 4.372031836244062 3.7058134126702136 1.2516195225836149 2.6769934713390886 +3.4549484398638453 1.9149744516722773 4.2675618036134555 2.301433917867752 2.497434433055954 +1.9200104296217724 1.5480643501991378 3.392750936874938 1.2037431363113114 2.2203826329996086 +3.6752734346611113 2.0658967797353447 2.8683084365919016 2.0252047756590406 1.816842591007389 +1.5206702150977165 3.822995720148102 3.677393122457828 3.4230420952321468 2.3163326998201863 +4.887512681188722 3.6904655700975746 2.492861367660778 2.5369136512402757 1.1978574163314393 +3.6349579707482405 4.872822182020099 3.0032670536963564 3.5243131514853387 1.3430550404092998 +2.8513691526879907 4.027803395270226 1.1103098986112139 1.1446542126690296 1.176935452362677 +3.4026294375334722 4.37137405517655 2.8688012230336524 4.474769970222168 1.8755270595645062 +1.1941695167138109 3.5670694001479686 2.0781309624993156 1.1261764278295376 2.55673058668296 +3.236201001156898 4.224093257358418 4.664550942706063 4.572676955399228 0.9921551992539202 +3.260565271381458 1.6088642356245257 2.1201231699938186 4.1018431315309165 2.579792688856048 +1.6908870019660682 2.1250739161533887 2.2321735217197447 1.3886492561537476 0.9487104210717633 +3.777029821931986 4.11893045372533 3.421501612301789 3.7017133138002607 0.44205728099122654 +2.9647083796783464 4.916036075739475 2.577589290560235 1.517069536461198 2.2208966491598647 +4.148761008366408 4.097809461229206 1.7261540833548286 2.4344600824532394 0.7101362182810229 +2.980746121390406 2.4524117616398877 1.2584220673082753 1.8544746564678278 0.7965022816896361 +2.0216464876802043 1.997844601990491 1.9554702112165865 1.6865050058347744 0.2700163170411495 +1.3677244284998489 4.363863966840205 4.619203497495138 3.0466756009459974 3.383739960255756 +4.516905531662502 4.129999662070329 4.531961810297693 4.892778057591121 0.5290411290587792 +4.0639281624027035 4.27425114399329 1.9864097058238772 4.586928822247648 2.609010431460676 +3.412450425304313 4.646685210083781 3.9728498715891076 3.23492498408159 1.4380085686680044 +4.0969120208985625 2.2768867403479063 2.8469055365795057 1.5949893029728028 2.2090238291633453 +2.621096756393506 4.124401294720894 3.8398337874625943 3.7070896891819585 1.5091539121587496 +4.59957355542101 1.7316360494855276 3.195544953212256 1.0196798792429096 3.599924215601082 +1.689121592759748 1.5548170075376153 3.6165366838885418 1.3682415696102397 2.2523029641900694 +1.4000724902898534 3.205617672224692 4.969421392488085 2.839925236176562 2.7919074633221035 +1.303436346712167 3.971234931231685 4.2441650253699486 3.209075289004912 2.861566013547929 +2.1998549081431533 1.0804155929221153 4.8938074368128515 4.689654986430387 1.1379027214396278 +3.0535096223694578 4.106456196937752 3.5504457859652305 4.851750190167349 1.6739443363776874 +1.8114367319575204 1.5248891412614527 4.159180929815068 1.9816551142115624 2.196298750023191 +1.439869460645363 1.4825840202524825 2.351743165716091 1.13774292417596 1.2147514643176713 +1.0261971496446582 1.5299414716931157 1.5575571067758327 1.5602307900065076 0.5037514174452297 +2.2833727428258817 3.829744066061286 4.113160259982276 1.104644468214509 3.3826663356944993 +4.5393771245536785 1.2427523194795729 4.665415121353134 1.7310087659242148 4.413442620473446 +2.020895549423814 1.0338086440291976 2.0243729086775835 2.8508890057519336 1.2874274416543001 +1.497961936460181 1.393087557115075 3.9058848022839037 4.196827851629685 0.3092676727458641 +4.056058195645535 2.78518447373594 2.8297373683673452 1.12028648653674 2.1301038318428938 +3.75186103260103 3.412672289250723 1.4315304070920671 2.107135385713172 0.7559702975336955 +3.2018914555739477 2.0717079909590312 4.962875572012347 1.372228683767064 3.764313979964279 +1.2910074770433813 1.707295870504172 2.566137396506954 1.5081685478669904 1.1369230894052316 +1.8339353117158792 4.157007054092187 1.7979469899210945 1.5867993440841155 2.3326477763626876 +2.2842114881983457 2.847873755045305 3.4617880608624976 3.538541360859822 0.568863973307795 +3.2114568680638307 4.5147555691903865 3.2369577569158965 3.0134319265132454 1.3223279854920118 +3.0187314546234605 2.24825877978058 1.588687465386724 1.633869006833542 0.7717962907186414 +1.8955670357963266 3.1546077648835897 1.7375022209251143 2.3857626756304873 1.4161303522753137 +3.337748646849238 1.5751118762227558 1.6205806788209274 1.6641367345500204 1.7631748396444495 +4.9041291420927635 3.602883099844416 2.403577993793165 3.265079295928787 1.5605850685074365 +2.657739999411996 3.993122022192906 3.664071144431547 1.6743574053030201 2.396290030535381 +2.61864529390497 3.131281305755787 3.5625789185272914 2.0933508848801825 1.5560934083469609 +1.8805510207108882 4.678153335879399 1.130107241453068 4.245157041071515 4.186897893182868 +3.6061837527641982 3.464238999070293 3.3630310731330946 3.326294293712593 0.14662163572752135 +2.6005629238996604 3.743078756472522 2.2692894499363856 2.561214469026374 1.1792212025105169 +4.266951128263757 3.0266943366549945 2.545076534653208 2.46038513443295 1.2431450206644952 +4.492106014334505 3.6139080136422357 4.172512766947511 4.3353340199073935 0.8931643123386227 +2.31350635942194 2.4257313516253407 1.6150331577542034 3.5150770569379888 1.903355265761118 +3.2107480976064293 3.274655125905543 2.8146922260357172 4.938290070448706 2.1245592279485916 +2.920489509401997 2.9931138763496783 1.2073888310371852 4.065110045882934 2.8586438813629815 +4.958937949317666 4.764162285061637 1.4507651678271372 4.562826874720317 3.118150994884191 +3.964967781637282 1.6346722501900386 3.597969484954952 2.451024043781405 2.5972603082694223 +3.6849169897410072 3.490627125536261 3.8672661895208957 1.4876160325333196 2.3875685165003526 +2.972372264601281 3.124169561709608 3.474173468464183 2.7269629506246056 0.7624735912669258 +2.285368717413833 2.9697636528640543 2.2156115663939624 4.984734608326647 2.852444363880291 +1.0882190718561673 4.356212247087387 4.44513648406 4.465870641735789 3.268058949690528 +2.76572982495164 4.830202508273121 3.9182458461135528 4.7549394265365645 2.2275779689388373 +1.3923605361831566 2.1091384306239522 4.006192123973394 3.927441887230718 0.7210909441575368 +3.9880115788680044 1.9051281938998783 1.0964231727387705 2.8202890344674323 2.7037227492126075 +1.530647847427483 2.716844881610878 4.948924018533008 3.7868772558441526 1.66054692272791 +4.233663648205643 2.827354255337404 3.4743990831566456 1.933647318431361 2.086054196077732 +1.1228518527141316 4.716639743779705 4.417884503577502 2.8867123180042737 3.906379355342059 +4.220379007045355 1.9899072857820563 4.425401245971956 3.58421244076706 2.3838210304797007 +1.9486362983590113 3.4627128681462684 3.016678886391163 4.536227181527206 2.1451002028878747 +4.533450563150315 1.3808267354749293 1.8837289362261909 4.516593001084512 4.107433527502166 +2.0185252494615993 2.62046683555899 4.448559927357046 3.830133069943189 0.8630095312591982 +4.251979781004528 3.537732888595055 4.920805943944215 1.8025560750665477 3.1990046683417295 +2.2104718668035193 4.309113792386272 2.350768075848581 2.82849819798723 2.152329900691874 +2.284156109963307 1.0934462404923182 2.571936114324075 4.599461103863478 2.35130763118363 +1.4062968685677082 2.0672262383624944 2.4107312977849533 3.8143250002750904 1.5514196445602024 +4.319783672777036 2.1133282013181702 4.039647402687207 3.2862193834406273 2.3315444511560552 +4.696706002718875 4.61330480747475 1.760156097328235 2.6189327253176287 0.8628169308427959 +2.7671223932152937 2.213499716797261 1.2873884894741114 2.77832044834605 1.590401261892728 +2.6130246489311735 4.758802631361251 1.2926278717295245 3.359872710421092 2.979574528851161 +2.6554803923089665 2.718316687806539 4.738718175876032 3.258522693019356 1.4815286252722788 +3.8738201147735123 2.8010634096855376 4.337671114481328 4.2478051728191275 1.0765142060289041 +2.824255767918586 1.938716187079724 3.20572192180379 4.290355855557001 1.4002182399473422 +1.1640456706221771 4.045754664849987 2.8864532153317137 3.377517490908417 2.9232500492022795 +3.519281130067633 2.2782108822383607 4.674816959341975 2.4990544780158417 2.5048348718415476 +3.7372887189604085 2.4266429870140995 2.99473048865238 2.851647742625829 1.3184327464378205 +3.138424687969303 3.4440005228503927 3.8354344817223134 3.364939519396369 0.5610188057787071 +2.335314894255789 2.7364854745922442 3.9897265452844546 1.5677921689567977 2.454934613745369 +1.5419932222396717 3.6095604922215103 4.1919731409807435 1.7920116757525126 3.1677514818054444 +1.8415578475196828 2.06755678098112 2.0030309000998114 4.192281373995456 2.2008846301835114 +2.7221369216051845 3.052577780049432 3.8495771564124324 3.540285990116932 0.4526059947435542 +4.574232455924431 1.0468675299570682 1.0954211487168122 3.2394424966416895 4.12784821199888 +4.220728779686473 2.1401802305813202 2.737152645408192 2.8581784533269716 2.084065620695747 +4.924421255170995 3.0978184820727797 2.6211436912418966 4.065826281042627 2.32885926495429 +3.23254511040501 4.229478986873302 3.073581011964018 2.3168587335651525 1.2516012786328021 +4.487548926874005 2.727926519333065 4.267307468251545 1.8240560891661777 3.010938112702206 +2.8814447810330632 2.301569459349019 1.0569293171564431 4.06013008672152 3.0586713211808885 +1.3998399643481276 2.6605129420615965 4.8152292071874125 2.4679471905502375 2.664400349490524 +4.151948020469774 2.587662158873928 2.4629128641072646 1.1719716842612242 2.0281813002320446 +1.96824635349147 2.0951110796014247 1.0481131281560523 3.8373021360272594 2.7920727032727 +4.577746472921193 3.15111428590675 4.078917749610211 4.379184879602859 1.457888797672729 +1.1016817271999195 3.695736455777213 4.396888680915491 3.239221806844555 2.840653538567382 +4.20107576251031 2.9566355769547146 1.6111981762860008 4.560017064559358 3.2006505918739965 +1.7930912835706048 3.5283183455493106 2.46171385112445 2.8473888770780276 1.777570865610579 +4.082371229458314 1.5081611201910166 2.1970007786917964 1.1859188162578995 2.765654429138451 +4.336238809489505 1.9415131400617884 3.0005646911528987 1.9135839958865994 2.6298741535856105 +2.707760852218714 3.8046869719687 2.9057612638795502 1.5829091631109877 1.7184832244446144 +4.197816339625037 1.6415349182758114 3.822085571742313 4.3565831609045205 2.611563205812838 +4.045366419671156 4.418595070151495 4.953857352587308 2.7421624936750537 2.2429653975213864 +1.565037310192706 2.2769097340016815 2.0596189940772005 4.629964908360117 2.667103385107249 +2.6614300804132744 2.0237277177666604 4.375236273993074 1.791062237897362 2.6616949021546916 +4.924392478229726 2.6729899539868462 3.3823610241530173 3.1245834562751966 2.2661117802677375 +3.356944282804917 4.128383083560408 4.951727617448869 2.3639092944985367 2.7003558091311857 +3.5997542327974106 2.404593066397439 3.965538867848675 1.9663941454761567 2.3291607575821027 +4.833595113773294 4.394103317737642 3.8384870627094525 3.056378489491085 0.8971325760913564 +2.1940053343275414 2.1077055920226138 4.347812568967216 4.710255140753311 0.3725751781383402 +1.0623073581977107 1.223291628706332 3.032762420417932 2.3191344009396375 0.7315605822730651 +1.738060533572459 3.2513600683158974 1.5904162813041332 4.646577370695979 3.4103073301635827 +3.9397179889769194 1.0597521831387828 4.973893452559924 4.682415579620762 2.894678288378528 +3.3731559027146916 4.9322949614354314 4.5916163567272505 2.0951490691193566 2.943342236731045 +2.3151884935886917 1.7662129357324128 3.9809050527802063 4.270077826450038 0.6204796984233378 +1.6212331933051387 4.431933828612735 3.2612094257965554 4.0875520516341055 2.9296553033752315 +2.7989856546611636 3.3873528457296103 2.2583017654416353 1.195273419485631 1.2149918583396897 +3.7433401087699445 1.7695370484846622 2.7128605935057917 4.482285853801413 2.6508044576248495 +1.1540086989607925 2.382212710348774 3.383967276559431 2.7939125752565417 1.362589316015347 +2.2192041096952524 3.5456947712708353 3.5436472831111483 4.73082203411954 1.780157679723643 +1.4801134761632175 3.3325835263463763 1.226568119366895 4.688400928872861 3.9263127343345388 +4.892480443141433 1.9625367211709412 1.6721751460102565 2.9080442586816444 3.1799280931444756 +1.764329303293282 3.50604905878213 4.025811120966285 2.656249169935252 2.2156912339881796 +2.865778697312698 2.645257138279317 1.5622178563057147 4.814743897707413 3.259993160728212 +3.504906251285688 2.3828832728237574 1.636149985893962 2.9876547454752362 1.7565593298740065 +1.5495959417414467 4.722616081047668 4.584141935901389 1.7574132920902708 4.249523694508023 +3.8518589597355963 2.7657944014959646 4.1482973049986525 3.6554243161607136 1.1926692784633506 +1.6239516894249433 1.667017792554152 3.8200141603082938 2.6853875594295737 1.1354436193225685 +1.69334653415968 1.82801822447915 1.2846596034197462 4.658517531754049 3.3765446516753976 +4.488173504456588 2.6689602807012873 3.655190767057599 4.354013355441089 1.9488175295602088 +3.1984124765314075 4.653411929377066 4.333149210479985 3.841664898007123 1.535766986618767 +4.791180253034204 2.8001704884173435 2.2139414598726472 2.1068084839498016 1.9938900063267713 +2.7759781511534976 2.4422243550568976 1.553395883337815 2.8712861029357257 1.3594948426973603 +3.761526509474363 2.8562678418617216 4.08195222452475 3.689690775497284 0.9865912525868767 +4.400370839858695 1.64714673260882 4.780345776198734 1.0282696122366928 4.653849860590045 +2.6386578490045114 3.0174804622582294 4.950205990081562 3.4723803421961295 1.5256065081994028 +3.034129494937244 2.4506006560409124 4.348393947567294 3.014110878802492 1.456302583056185 +3.228080437602793 1.6568939708652048 1.7132874093762216 1.0675302734808092 1.6987139817577273 +4.07083676466214 4.283199188669466 1.3869199361611484 2.963477895810415 1.5907962783661915 +4.024650807464031 3.851916649411391 3.549665902753693 1.4021291662379056 2.154472353975106 +3.6159604136748444 2.9314975206442773 1.6927704563095953 3.4132002389703184 1.8515852907716124 +3.262111180732139 1.886481811168669 3.5264589742795036 1.972812545424556 2.075132137551564 +4.706528419518492 2.4215492777232157 2.979608307642923 4.848321568964179 2.951816208959732 +2.087574449566672 1.1571600919141534 1.0935575949734844 3.174078470023999 2.2790870954061644 +1.9575128612158372 4.8211175170452965 3.821438550686806 3.4385962378827277 2.8890828754747293 +3.558173713067765 3.5863626759363 1.0067727294303634 4.1150404518048855 3.1083955429743657 +1.6075743676586365 4.158031670190653 1.3830174052375028 2.293102029863704 2.707967222109585 +4.88123157361065 2.7786512515366018 4.499836139445811 3.8477644321128457 2.201372645027901 +3.847612428298314 1.7672596317656244 3.0354263597225657 2.1521923899515745 2.260081857676577 +1.6205063762044047 1.5450273605334375 2.8217570466693958 3.674413635002339 0.8559908524243892 +1.9046641749510207 1.4755786145568965 3.7657436146411247 1.145997009898064 2.6546537799120875 +1.6862808646467657 2.3903810823924556 2.9410745537610086 4.416317718452076 1.6346557777089474 +2.5358408745512335 3.128063180763304 4.931147645960678 2.7825158434811152 2.228754334286693 +4.089699043729434 1.2325334329587823 4.035641234871553 3.6425040576556538 2.88408601943141 +3.346150332356596 1.1133413354743138 2.083554407771393 2.990896783991403 2.41012576523364 +2.146654150884698 3.0011622975333356 4.692664831804356 2.7791095489325337 2.09568079470504 +3.742955886057702 4.890859779972521 3.4473585129523947 4.182890634928764 1.3633381283173536 +3.860274829339038 1.630029218227294 1.4170606707985405 4.667497199012885 3.9419960819150135 +4.259223402968036 4.07528126331332 1.8634943493856282 4.874506915129571 3.0166258272793254 +2.9094477314787652 4.125541568133702 2.874603143018229 4.88013214921814 2.3454276399538156 +4.861781525589018 1.5888903626034923 4.889876343090579 1.0589694182388212 5.0386173134726056 +2.7694785648707603 4.497516252480822 2.067488559552633 4.871531337607483 3.2937471291770852 +3.3667366805521244 4.970619040664419 2.9696570706942 3.8069697177534527 1.8092902182913486 +4.496938591669233 2.114824901826669 4.849078435570259 4.751276719577801 2.38412055210856 +4.1137896277038974 4.152564499054076 4.670860702335343 2.1388566898845753 2.5323008924128687 +4.085739685017211 2.540942831389727 4.900467585527659 4.669703815019366 1.561937654567742 +2.0394528233379257 4.619217690699248 2.4424820659945228 4.861815872957232 3.536716392416058 +2.6573378498289215 2.592406925462664 2.3139238610291866 1.546344214189737 0.7703210624027041 +2.6847983079663726 4.2252361729604955 4.99737823160717 4.410555545604682 1.6484264256298569 +4.836490055822427 3.933131350702585 4.747572649732607 1.4851543541833077 3.3851779990497683 +2.1458148322130826 3.07114242765885 4.5623574155689575 3.4593102110474647 1.4397723064068588 +4.9138901697779875 1.1950560934978767 3.904358562522866 3.339882715956469 3.7614305614033334 +4.189574369948064 3.903321087316334 3.8329786115953572 4.799742247656933 1.0082523839934328 +4.637338706128983 2.7730410504756575 3.917257590823257 4.725501583694881 2.0319606543650273 +3.8253262319599117 2.4949109965156326 1.7200972800042438 2.8544357081463025 1.7483501846775586 +3.26535072926844 4.23717448182817 1.8829547724731608 1.4284896722302234 1.0728373284790653 +2.3578705153958657 2.8617337217924605 4.716933503812422 4.468476104277792 0.5617910733927414 +1.1042203408472275 4.381174180429485 3.5325709898980087 3.163411304664653 3.297681813024794 +3.4573872706571733 3.6780872097291573 3.129355332415935 3.6053729831805477 0.5246915922195038 +2.564121026961583 2.576025731550156 4.043344755442918 4.251952280471432 0.20894693462662522 +4.50166433383016 2.0477887680405713 1.5021671819192193 4.5755262519595 3.9328159460846925 +1.8451383210614187 1.1765129414496882 3.900969074413612 2.9296647993131915 1.1791912029392368 +2.564092726406612 2.718426364109071 4.226847013695914 3.1860934762326996 1.0521344008579268 +2.999242887938965 4.2600251323859135 2.6606164449977157 4.352396012342405 2.1099028348238384 +2.2799170432107885 1.1495178478230375 1.56674691613332 4.192567187312355 2.8587994748614354 +3.0992279372461002 4.355450150651956 3.8817594804110924 4.15885260529185 1.2864193909104802 +4.290810996077846 2.004006538732279 1.8482625529401164 4.223071915441029 3.296846088970115 +1.937328490665505 2.8453309288941813 3.1393757163931344 3.2356286821072144 0.9130898429168822 +2.316265367400999 3.6475023530646453 4.499435749236445 4.104539212733743 1.388573075693412 +2.8848344400495773 3.52353120233054 3.411155672132511 4.698580098898574 1.437148290463483 +4.95506011757907 2.2534203598082976 2.1788049994473435 1.8966784018823657 2.716330760018247 +4.5152575608586325 3.7830810639384804 1.5569851492062403 2.1914511952986366 0.9688289767995094 +2.6713330247801252 1.2372209981080267 4.556581539031029 2.8056241884439688 2.2633004547828843 +2.744896150121461 4.2977685491274755 4.631207629233731 2.93875453729811 2.296913179899741 +2.400707023534211 2.1679800093376262 1.0133995655170884 2.1975122195586354 1.206766191355299 +2.3393909449591086 1.1479816823702955 1.2954450355416154 3.7309999958141717 2.711343577544291 +4.3315710292432446 1.3164876028175225 4.02261691073738 1.2263764087639686 4.1121392258997735 +4.919979555808448 2.5056400555194593 3.7353675491093243 1.8541938366579527 3.0606943263046964 +1.048591323694596 1.0985957551872443 4.867749590771579 4.366855659722205 0.5033837237446182 +1.6668947486988 1.5025244927990826 3.217425164215721 2.1535518449235878 1.0764961776644633 +1.5623083115974774 4.1326599961575665 3.28398810785494 3.5800071983505917 2.587341315763879 +3.5846924309205304 4.146148557211845 4.335952423429708 2.696536561663071 1.7328927692047458 +4.536510447915684 1.247419545690565 1.1012373834819082 3.4403548440748635 4.036036354835135 +3.278871948887296 1.8770881765688756 4.983114824305812 4.581462481048982 1.4581914651989165 +3.9575822275993384 3.524564753412102 4.589686203264698 1.362530830533586 3.256076770086783 +1.50457508363789 1.853484740090686 2.006209801298499 2.1775298012197033 0.3887010300205154 +2.092120710139196 3.8523230953543646 2.53553900128644 1.7551675073700714 1.9254329657078257 +4.029519245928038 3.28103663230648 2.467061306657888 2.9750622004899956 0.9045944566644094 +3.967259410037788 3.291501135188421 1.852191662290183 4.294313877342134 2.533892294332504 +2.6613938695304085 4.7937506217930395 4.227513136020182 2.662395370066165 2.6450971513774175 +4.310445912784134 4.215099258226385 3.4533297321829526 4.510842535450328 1.0618023891524153 +1.9772087000173655 4.124543354781869 3.0852074947649815 2.1828199475042873 2.3292379451236322 +1.8938336072299187 4.474640334387798 4.028057799803281 4.364829155393634 2.602686748129619 +2.8338481508537954 4.890458460315839 1.6706876586355142 2.938484972108526 2.415979303105668 +4.009330726872565 3.3530946021622556 1.516863786528345 4.152833670170976 2.7164283680682155 +2.177920415394261 2.488390796605636 1.9131751204619531 4.516923203255919 2.6221929632013716 +4.63143665555648 1.598323389575766 3.3714784836173983 1.4312829886233525 3.600574210186951 +1.1182782106486728 4.5493157927986125 1.167267797189627 2.629230371318744 3.7295245619622266 +3.6251179108742457 3.0974419060582754 3.247323131370795 2.76892106467999 0.7122573295323659 +3.2587538369271694 3.0592623441788724 2.920256354490652 4.970142588148177 2.0595704471121103 +2.524168929180891 1.8163898438575918 1.4616945300043782 3.5514127166623335 2.2063257541147676 +1.3614837459887523 2.3414313748474784 1.332215840820976 3.407901198612387 2.29537950236023 +1.319550119395843 3.6553668171532747 2.7837584098882777 4.7053457750097945 3.024654963349884 +1.8510241996126124 1.4070760005126504 3.1675598322742196 3.657158275022793 0.6609059226742696 +2.1069042466515224 3.1305727313078644 2.6850545627185283 1.5099789123580374 1.558428679968622 +2.1904514028741398 1.6499660719754923 3.338381146042623 3.4251916511519536 0.5474125105566712 +4.367666404718454 1.1681862984671643 4.1241178860880385 1.9474987620435913 3.869669722528498 +3.5970161115011123 1.5400670319310126 4.1406647160493755 3.26980643581594 2.233704022514043 +1.1272695992351696 2.6822757886943442 4.652831192426637 2.590704185954195 2.5827140840749947 +1.9711887081957928 4.45383726525087 4.128473688617667 4.292722529405772 2.4880758709388053 +1.1339570182509027 2.784467218423712 3.5737958070476226 2.596162182568777 1.9183199484408566 +4.317753554778351 4.4448211462853315 2.677851825144974 2.1364180398067667 0.5561445106418339 +2.345246306313536 4.207004827259085 2.7226419313145027 2.7134515023873385 1.8617812047330438 +1.492752028356724 1.1923691882013023 4.827155563186245 2.169776673839334 2.674302229032175 +2.4745309496179604 4.148734729147442 1.6429657447962742 1.4935380700427778 1.6808589843806165 +4.8345299726485225 2.307878626146593 1.6643772129740482 1.0536806246003905 2.599407115061286 +3.1706279237878157 1.1483353851331688 4.599528126288 2.8681162934895625 2.6622272717881734 +2.076169917969925 3.6627321967972346 3.111774405146854 2.0749113353614326 1.8953271195449488 +2.5817032000472726 2.471972813243169 3.342929450158231 3.6352061301378833 0.31219611696513194 +2.741334212307783 2.168829320027125 1.457517130278807 2.5757024688020786 1.2562246228177871 +3.978099230595596 3.56573187257965 1.6158682998222722 2.561776445967443 1.0318861656698597 +3.6047791565296152 4.728137844935426 3.195524945501174 4.4244899735915215 1.6650194542665055 +2.8968896241787045 3.147011610482683 2.176584954493307 1.1308721724906312 1.0752098541570494 +2.243814594422603 1.773720734324863 3.0821243422131177 2.191162973780633 1.0073730179733222 +4.782530413143698 4.371820108956344 4.899715912948674 3.6976804063806528 1.2702646625864658 +1.0675456344030048 4.96472579555453 2.3911769733423704 2.6545858176434307 3.9060718666876895 +2.088965347905002 2.9338108076866156 2.2819717560779456 4.252958135600295 2.1444232695940006 +3.2783337071592658 4.352334383657639 1.3454224472560736 2.7154991997814903 1.7408583402820446 +4.231001490129353 2.929588379348633 1.5302324904607554 4.308119122374494 3.067626154647435 +2.455837672303087 4.5134427624608175 3.0659130772514085 2.068619486738326 2.2865548785720144 +2.3913628645198717 2.40422605546355 1.1236620857547064 4.4363692964516765 3.312732184388734 +2.359619178860756 1.8785317282241163 3.0659313577390592 3.638002647414867 0.7474695282293472 +3.2491388851397764 2.727080920094564 3.4939362016014193 4.57133872623604 1.1972220842250627 +1.7781779149198589 1.6377136847205391 2.9005869160766533 2.161313993375268 0.7524989396703067 +4.318533223148096 3.5261809608616517 4.592150470234585 4.095748122175139 0.9350066303023619 +4.2064597518467615 2.167129283995347 3.8393890113354963 2.66019424423589 2.355709883636388 +3.4696187228630597 1.7785098525911307 1.146781916796142 1.6824563683823022 1.773921173331705 +4.898733254335284 2.991528999996739 2.6846099791778157 3.6925505712115663 2.157167658026699 +4.054343074306733 4.892801807078012 1.0496547613086582 3.729894110297762 2.8083261944492763 +2.322833116570457 4.585975539426337 1.5208656807256937 2.907797385280584 2.65431595316562 +3.038651765075087 2.2471322828547033 3.0738547366475792 4.670547533369524 1.7821141876541382 +3.7016744258341325 4.965405136943227 1.2462976826915728 2.3150272101715577 1.6550522992062484 +3.4777408771392047 4.757527862846254 4.412653360946228 1.8832886501932724 2.83470290661782 +3.043559016501152 2.973167474800261 3.3298255801197194 4.0950339378904275 0.7684391972987662 +2.7613739998606817 1.1072658581415333 4.504197790869547 2.635584201436155 2.495554145098182 +4.3348736469075115 1.3387762428770853 2.7303736739042193 2.6370480421175504 2.997550554700661 +4.934439613503184 3.3656246769064437 3.266365341798256 4.914887999875662 2.2756992902146864 +4.319087419701793 3.6798356699330004 1.9961493035403186 3.8020067676621783 1.9156628044379564 +2.882710067979157 4.592050171407115 3.4820148388527623 4.577504241404306 2.0302562942372178 +3.7275579338521685 3.0136840158897877 3.84133706378243 2.2293064737122044 1.7630254093657072 +1.312930458562195 3.846560067056706 1.4973419898167615 1.6675161395773563 2.5393381488661158 +4.3038609253291735 2.268048822399576 3.3388986540947547 1.2557549766683258 2.912733853141467 +1.0830629492360981 4.938747265059343 3.5174263099284326 1.8635019128018588 4.195446037633646 +3.7937795596576596 2.4519406268168513 1.5631006230716875 4.3762753179943115 3.116806632731706 +2.7479794134595137 3.8130598169245564 3.341782257323739 2.930872241634589 1.141596823243178 +1.8666283449474212 4.543559889405774 2.5506924033033194 1.7598873468767682 2.7912963173024075 +1.7208142124405739 2.6947296612545633 4.223590079348082 2.436359416150453 2.0353635412162587 +4.820746401393613 2.9441914585836546 4.504587119749964 2.3121491729243027 2.8858694710720383 +4.503462246444751 1.3375647119897027 2.299915973919831 2.706870551401102 3.191945993716296 +4.474104085318169 2.4979494038918424 1.9773415406616115 1.899347422048578 1.977693203573651 +4.241862125031291 2.824105567688502 4.691235729895132 2.041400715289602 3.0052719112449653 +3.735903793944869 1.7321684717179116 1.1973970249623616 3.422766177952882 2.9945322019677323 +1.3042351475871028 1.5677220351035506 2.943106091325666 3.4072415992592657 0.533710698429295 +4.953021107587244 3.202689966621299 1.7968288692820829 2.3178330939015646 1.8262268493006266 +1.8661298836576492 2.7080091064558074 4.271676744893911 4.782365528689436 0.9846642370238613 +4.2449625583175425 1.165269660615833 3.8664808314981416 4.88293265037534 3.2430976926779613 +1.8287617437011439 3.529392363245683 2.9453221020865183 2.3392228485179145 1.8054087651578692 +1.0946147990149329 4.475330987379987 4.343163616429445 3.7034685514109267 3.4407051199547145 +3.569053902078217 4.3482786764440835 1.4819123072108713 3.101663525091749 1.7974385265738917 +2.0418280969452174 3.8228366162106195 3.0117695347165974 2.663413447817838 1.814757093656161 +3.0088782398747087 3.4436157277696324 2.309875790326332 3.149847065349753 0.945805702163854 +2.1082198283510483 1.5594301017550816 4.083493480510394 4.378275519719754 0.6229499294949028 +4.85318234293623 2.736290854313287 2.7260212702532742 4.321187227538031 2.650619551328416 +2.688849940755691 4.7654994509176785 2.6607115407850173 1.754453412335001 2.265783966630038 +3.751549733624815 4.498962969200565 1.7328021796777833 4.2152516725413856 2.592524258195585 +3.978751068947087 3.119042298250328 2.286442448730853 3.9346043590577047 1.8589074353138701 +3.1145663283860876 2.1884539751378407 2.33729908577596 4.396387572283122 2.2577709108998105 +1.388152072698777 2.9961128269619177 4.9037700203913355 4.080229544454015 1.8065870316033923 +3.514043600632526 1.4198207079912755 4.347081259553036 4.298819338627389 2.0947789231978917 +4.1943301534551125 4.435377980404045 4.971373934988827 3.957622244658132 1.0420156162578096 +3.929661233098422 2.3534115773394806 3.4816491935459872 4.3194582335999545 1.7850733780089636 +2.1128384511345524 2.49830791653632 1.6291623495679324 2.0159031459250376 0.5460358525994903 +4.257735347475098 2.7884464831081517 3.9034043281436457 3.0389426666268773 1.7047298117839795 +1.0111685379761672 1.3968337149773258 2.4664275935664954 3.263041382386451 0.8850599738376036 +2.022349362351426 1.5247899511727496 4.520553433829193 1.575233011156954 2.9870516834937164 +3.576812505310109 3.3155268002425107 1.6104484691565535 4.911488712641147 3.3113648105845264 +4.8736231669293595 3.6893726885289184 3.8817953551723097 1.429207741999647 2.7235335863322216 +2.5773398061846624 4.429350722227085 1.9326036604991583 2.280820706637815 1.8844626672772862 +1.26248752461855 3.3118377356992204 4.179523027191189 1.0101491236602684 3.774224056417321 +4.055449116229219 2.796108131377622 1.6399039379649145 4.528694528509728 3.1513569763115137 +1.7969895132165528 2.126653941805329 4.802577387821092 1.2207744462000698 3.5969418883381716 +1.8583003472392918 1.8943686341080288 3.950564000945779 2.402198528403354 1.5487855106111927 +4.663540421517977 3.0810111296214195 1.156926821651607 2.0677836663965086 1.8259406209757365 +2.018580627956786 4.057913225939727 1.985530348807603 3.5660262005600942 2.5800861579805203 +1.2756133193350765 2.3015101176048387 1.7554666600640827 4.793204734195335 3.206293319040976 +4.627067326349392 2.9739963299798524 1.7491993632338843 2.311745415150061 1.7461677409586576 +3.7624147075662338 2.2509513911455197 2.2895658199849174 2.5074842949718614 1.5270919483207746 +2.5049149842417493 4.531410707102635 1.7598614705616105 4.768152240251487 3.6271887557411144 +4.525719241434793 4.625557730267556 2.8459179924787796 3.0403534151742506 0.2185700287120271 +2.1102870416770316 2.1001290669351818 3.6580803422868717 3.991310019024321 0.33338446560900387 +1.621375689026403 1.0073793193023368 3.525023903001919 2.1980036342550413 1.4621813621091495 +2.193652447127792 1.515801083182537 1.8442263375973607 1.195573632548177 0.9382072283723173 +3.77282364366731 1.5428379079170353 4.656728144666941 4.9423392516446985 2.248201522568374 +1.3987969016041837 1.9729457827021615 1.6363816134919422 1.8245522448066267 0.6041979180330124 +2.1378462479254634 2.1682861670615377 3.0617176515124265 2.3280106376004 0.7343381856751788 +1.3076092443561786 1.6330098695605297 2.9335996561296342 2.2652156990288996 0.7433859569517165 +2.4397012814754455 4.39913214554829 4.52669228634894 1.8667551547762256 3.3037304452694882 +3.264207169003578 3.6221930257562294 3.7244564822007953 3.59663667249851 0.38012074053813244 +3.493517826028201 2.1705808695885667 3.297172096933672 3.896181207078894 1.452230733991928 +3.546265536152728 2.612631453306478 4.821477892365497 2.8113992597857016 2.2163232412728107 +1.3630952770745624 1.1795514106383083 2.629898144351521 1.6686551893854151 0.9786094059318764 +1.8164104562855283 4.590891315865733 4.958864896918386 4.95209405808103 2.7744891213402645 +2.893936472658719 2.0502965689111607 1.769401628181091 4.872733157842825 3.215959401203291 +4.362748891719239 2.328719367638947 1.1020809854630271 4.948389419048938 4.351018808406188 +3.7586949561097343 2.8905777323985564 4.011098777519864 4.457837639311981 0.9763212200599345 +2.44458048183024 4.141040471972845 1.6902057980780367 4.7373756660504345 3.4875809241411972 +3.9112363299346096 2.658704988088441 4.8608786327436135 4.246366406163649 1.395155919215924 +2.4572313482683605 2.87995072374181 3.086224969241539 2.2807391986327668 0.9096697186637968 +2.8517210734460945 4.082473596142007 3.91264960972869 1.949856690751016 2.316745090619866 +4.53461588910993 3.6038573298098284 3.766298213450991 3.53497884000521 0.9590725458700973 +2.3441078607598156 1.7301660239816838 2.886743913456024 3.686566062684266 1.0082856982733563 +1.4736086266199586 4.689016363639622 1.4432641499177974 3.006341993876978 3.575200590395173 +4.397932937155283 3.5999986774313917 2.1962783382890336 1.062571190921071 1.3863588925073902 +2.014303907865048 4.471071915138212 1.008133583678244 1.4869434698535668 2.502991799559115 +2.4376548012878656 3.6103963304532374 2.7796387493085626 4.251504929866641 1.8819438747475339 +2.129295864059526 2.6583329321388542 3.2271099485505563 3.7901873463862783 0.7726165771942896 +2.716476789608358 1.6592654329450003 3.2369944464555234 4.200978290088243 1.430720344247222 +1.6329799690253899 1.3112201614029755 1.8626265398582404 4.771525019432428 2.926639666626254 +2.943019348480131 3.1230582820409833 4.871309641902863 2.04045190697741 2.8365770803884383 +4.203911319310501 2.3311081194549117 2.476813645480443 3.7538639480412366 2.266770676680804 +4.171879106274723 1.2288965408043881 3.632135320386005 4.996429951505631 3.2438320272733283 +4.909779238358199 2.578202458236536 3.2000938399357475 3.1394646441134633 2.332364933064412 +3.6055304542222184 2.3332340276019594 4.199393483385966 4.673943203036824 1.3579159155159013 +3.618506864399318 2.5410556152674286 3.9678837712176986 3.197806160684394 1.3243567195059465 +4.40600430857594 1.3963475429371819 3.2366757762665297 1.9906416463818304 3.2573969515232055 +4.066841825383868 3.189336943431664 1.7764303482400758 3.827729058571666 2.2311076210837513 +4.154158731241485 3.887305435386274 1.1728922978518486 3.8161153234720238 2.656659301581116 +4.435519085601305 2.140852439042393 4.4228180407145 2.722838039450125 2.8557708282578886 +1.8087340801426954 4.662148418688302 3.488237487197129 3.140204112913793 2.874560943349907 +3.6912788411154516 4.910451909584471 4.904851580014732 4.092567589509219 1.4649874580049227 +4.211443740977132 2.4790434110935875 3.522120103142414 4.035722266549267 1.8069305701207266 +1.338450398991918 3.5431765012602314 2.597881914643757 2.457447655517792 2.209194189554075 +4.94706004239505 3.4472630209970423 2.067754781409191 3.3158794004522854 1.9512063371298805 +1.8730009647496777 1.973603822709245 4.148807532981184 4.455067167544705 0.32235989017341177 +2.299507441556178 2.3844238033095873 2.5085451832484833 1.9280293916210147 0.5866935936434814 +2.4530070239710833 1.8115235838540338 2.0804838847882943 1.2124113361466202 1.0793752608104634 +1.809100189467209 1.2869001823201893 4.146751749761542 3.4169155991482287 0.8974149843892768 +4.99713443588571 4.381662936716044 3.155613260036865 4.945313165101447 1.8925725657100518 +4.651455000879687 1.6588450362373997 1.872128862818839 1.7016007719565658 2.9974646336945234 +2.2113817802089546 3.867305626329129 2.253198812161248 1.296060202383373 1.9126416555322 +1.9395973070862915 2.546011315267738 3.0137064696919467 4.543567516825254 1.645664842200412 +3.1287747420692864 3.629402438017724 2.7685453174826207 4.478141920252737 1.7813895234209065 +2.0832964501894686 2.908047381384958 2.4245575587844916 3.743971891864561 1.5559782391939005 +3.1442170135063323 1.3897878290109014 2.665785735179625 1.9745319910926717 1.8856970865235843 +2.466910453746076 1.5554223925051303 2.7336816314873604 1.5865935434113196 1.465135341048985 +2.3499605298898416 2.776452263362174 2.4034258938450166 4.564144972559075 2.2024082582117157 +2.129948160826862 2.1922112378228036 4.379670462327285 2.803228606895174 1.5776709461466416 +1.2183819502893067 3.734839609504936 4.223826499611706 4.4283132701389025 2.5247522630835775 +4.202841765381068 4.711425815576752 3.353871114435143 3.4350534278240192 0.5150226248628459 +4.79074152146249 4.253800797208797 2.9974982962351437 2.448123346686682 0.7681914973191615 +4.7954724965814215 1.3269490140064693 4.837676429565262 1.599312932822492 4.745276945153985 +1.4904807958091055 3.7435409238860227 2.4568160113202833 2.3234798206712304 2.257002100235349 +2.3420182325188432 4.352087589458497 2.5351481577254082 4.33153407288904 2.6958080747534816 +1.5414656833483118 1.8775559944281692 2.4369776316584253 3.4086288252098953 1.0281355645690657 +2.8486027936867724 2.613509574734206 3.0030656640076634 4.132952886498285 1.1540857668063715 +4.248425765832209 2.9132813440454433 3.986184278842166 2.4193130775285105 2.0585664887329767 +2.842971150229513 3.5257004952375213 2.28189333104222 1.7978429837523362 0.8369134347389345 +2.817341544992627 4.189976388297152 3.1412654063832672 2.0634147843365813 1.745247368283381 +4.976229940892893 1.6620966018292722 4.018979992434311 4.479153488577998 3.345928785202412 +1.604503154201287 1.7827209914698363 2.7532762497588883 1.0986195698854502 1.6642266449526846 +4.718104421958635 4.232608844867824 2.147077212961671 1.3607166099468437 0.9241585109431081 +4.7964048158027985 4.811823197447563 4.6395576723682375 3.2143591000858702 1.425281971024766 +4.996138887099313 3.466462629088166 4.396817354542096 2.8545884696833244 2.172183092562806 +3.882231578824089 4.74453332034506 1.4973792406533177 2.9049180467222393 1.6506755538324378 +3.9541845055295406 2.9225181385296586 2.9673775073766175 3.299529842480843 1.0838176352661573 +2.452706342673189 1.9592405294249584 1.2864369096588164 2.029230992728426 0.8917687809561176 +3.4429979568242057 4.529133215299579 4.04185421590889 1.317310069358249 2.933058234370181 +2.9353612579518384 3.3126903540649475 3.7048234845771697 4.4804874250664914 0.8625727768420228 +1.6125587550085942 1.5444338293099826 2.5234618135196243 2.9111346685230086 0.39361306889878084 +1.9377099643920594 1.522213668053078 2.3314154505395885 2.208402572102085 0.4333235979414123 +3.2630912011615227 1.385782485459349 4.467448946292164 4.2724812246711705 1.8874057397723008 +1.5058943447060167 3.0918882739033515 4.6385614248798 2.019178634000919 3.0621141305645736 +2.0246534671769254 3.8231718633958893 2.4517887686553226 1.1085259560339487 2.2447769166020746 +4.275056015075959 4.515860934217984 4.829767423654993 4.542710837149395 0.37468452455264695 +2.4813536068881206 3.824479981795774 4.22679795594752 4.314838626310866 1.3460087736009014 +2.351081613105987 4.684461498680705 1.1529613607105067 3.1709684967626615 3.084965881750089 +1.5891889256642702 2.1493199487544064 2.3913760211998527 2.6892711422364295 0.6344196293979242 +2.4130064269137512 3.274948224808072 3.9648336459483167 2.4621098389891833 1.7323748159561325 +2.6535214157535916 3.789404351722526 3.416661353858325 3.546440240740182 1.1432727599771195 +2.1664003450569673 4.594154777177344 4.437389708140779 3.226029274230997 2.7131873660921815 +4.49849910426831 1.9004514949997784 3.5256197545714616 1.4989567636425742 3.295028718968434 +1.9139226393865023 2.988492887352206 3.8225122345223386 3.3032993704402793 1.1934333731052473 +4.781507261280112 1.3384048992450333 1.30511121251579 4.39525236710776 4.626437747420204 +2.424966951288669 2.510485351662567 3.3724662862694617 1.5248976249762562 1.8495467971898623 +4.230899214438601 1.8287273150842265 4.940089156528117 4.109208500149215 2.5418089029650592 +3.600698394174184 2.333585244086771 2.789620528659837 4.9468222683068355 2.501818354849225 +1.2721191052165417 4.406053001590631 4.6077266188583685 3.9589191719889048 3.2003894716043155 +2.797568971237814 4.5602100901201155 1.267696752482379 3.2213830862655346 2.6313103208830615 +3.480395742178034 4.095137007907049 2.804602023568401 4.679117579625112 1.9727431139630704 +2.1453445533659137 4.387190580851616 2.3595730776363095 2.2351716485941164 2.245294930850102 +2.7322264493502275 4.121814931736883 3.6939735477400952 1.2165531073220763 2.840522520414626 +2.776395490967022 1.0883139382938736 1.554197104596243 1.47449161155979 1.6899622167656803 +4.1622378961692945 3.5370691511273087 2.3736036958295497 2.4874955271707004 0.6354583456243317 +3.7020905403759308 4.9278785818375095 4.3249259687770305 4.364628839206314 1.2264308543536149 +2.7593332707816747 1.9217188183319949 4.817001815858973 1.2321963061073928 3.6813623176343104 +4.2527180112360075 1.110027906248856 4.6624293564708355 2.083715251641473 4.065251225992073 +3.533292175836222 2.8544811289535628 2.9726008321188306 2.885574467862556 0.6843668792728046 +2.979317580090004 3.2542889438356535 3.914430524612114 4.178627113158255 0.381325436182221 +3.603300977401331 4.366233730504531 4.548468278174163 2.839796225348718 1.8712633619734957 +3.595304655132461 2.8170323096553496 2.034826320524709 3.8576374553381 1.982006124343244 +2.126928105082459 1.5487984558050396 4.846942583112368 1.7936396155431358 3.107554167370331 +3.5096304965994465 4.239148195847992 1.9354115483782093 2.745782563733929 1.0903656524513012 +1.2777656297020439 1.765993737887824 1.708579514837607 4.403707831223234 2.738993122920591 +4.031343857065938 1.7781444267015938 3.4551191079221484 2.108059888310785 2.625162131018612 +4.189075718647686 1.5954625236846325 1.9656038465526446 1.6001076623325345 2.6192397495773307 +2.0992076373985693 3.5169302117199877 1.2639746221786887 1.6004204589252753 1.4570974911805525 +1.2796669275022823 4.34818734008458 2.02423709750819 1.167937206167442 3.1857600390400425 +1.8720340599289313 4.584436490262027 3.2986551672336226 1.9084125210505558 3.047933982116899 +4.981856327450586 4.75198507619567 4.743525168456101 4.658835528594586 0.24497576870656837 +4.16966408018256 3.2096747642648933 4.100435650007828 3.6758789264980276 1.049679902710082 +1.9956852636853375 1.345684804707648 3.411550431107833 2.0585203979520426 1.5010632456005197 +2.1731043125490808 3.5007706318206004 1.5541875891664123 3.557140267021344 2.403022531116641 +4.681942630627697 1.9008330797926813 1.7939332358249 4.8460330966073055 4.129150505120117 +4.449007030788479 2.4113662805259515 2.0402095410758028 4.5632311530211975 3.243087707952712 +4.525515511869348 3.419838519500258 1.9997721273447837 2.6047967965671392 1.2603874252871528 +1.5623949699552981 2.771567274221332 3.3618534645725604 2.953362269469757 1.2763082378017259 +3.9237595725475916 1.3524826392657578 4.843575532264925 3.854103682636494 2.7550897642063026 +2.2547803734071286 3.770624120881714 4.2494165601563525 3.325703766855344 1.7751134023677886 +2.5377186717932423 3.0155461004761333 3.7901206857410985 2.4732790376030658 1.4008536604058948 +4.50356266142418 4.493287687760009 1.689677991736271 4.708121993342247 3.0184614898843574 +2.1799771565244326 3.036064270243552 1.2151214616888186 4.8992277923740275 3.782264480714003 +3.2871562460938155 4.263178182704595 3.0144902409684278 3.1364620550766698 0.9836137169551432 +3.6514942920101174 3.8318811428865485 2.5441122723881717 4.3129942958979015 1.778055969047373 +2.0451240254448533 3.1947593034596 3.2922490824787154 3.3256075293973453 1.1501191496696623 +2.2560855374432354 3.190063477443335 4.355519714356281 3.157246815363922 1.5192671696796392 +3.230551164555804 4.255085603793043 2.6170980414237843 4.915110326704572 2.516054705383926 +2.251261122159232 2.2498865911682677 1.880186679566585 3.0591959999200755 1.179010121591772 +1.9793972374166202 4.732683478720807 3.0851238889943136 1.2894033990274112 3.287125979429737 +4.77056277658497 2.359996284329807 1.649961277343193 1.1142853619279052 2.4693682390318714 +3.6954851562271878 2.455631552182775 3.897097378601857 2.859906129527031 1.6164784708183766 +1.283116576867624 3.940692238833375 1.7086456564424357 2.949860221012304 2.9331420003765705 +1.26170240148097 2.1339790034198223 3.479678339854141 2.07205750432495 1.6559779246432875 +4.518647275223923 1.9707749795294336 1.4624804520012455 2.5034171946748387 2.7523085832470566 +3.1542727801619628 2.823291437441444 1.202605458488577 3.400469360965197 2.222645806924449 +3.245801458432725 2.8441203738464838 4.51428973764191 2.3233668534508576 2.2274404095702356 +2.3413441416948317 2.319170314920779 2.061398754994562 2.094981501993162 0.04024275698529697 +2.0381206113452786 4.1911229951308115 1.555333612346192 2.8088182509970285 2.491313509761428 +2.5361437008869427 3.5811561761694053 1.905703549005331 2.7863388971835 1.3665905348555816 +1.2553388655118534 2.015298249307321 1.8048767578275169 3.343908271170862 1.7164370842191374 +1.3046823684568727 4.93179856725304 4.955617326801107 2.616578838081773 4.315909286729736 +1.852263647844841 3.9780011689924337 2.714493730000508 4.801048083379435 2.978669011222842 +2.1311189882740313 1.0218193585458613 2.1953525034004113 3.9546917603918716 2.079860641895586 +4.486771828200804 4.955203605473805 1.231295364072078 1.6921517700524955 0.6571278086432882 +2.635156691681113 2.371209016353019 2.2585633125939135 2.647626679155076 0.47014750718366094 +1.0646927205848304 2.7836856149900058 1.0244657698532147 4.79425427819375 4.143216379653836 +4.146493253074798 4.488250908499395 2.6341963013675156 3.2036310278770057 0.6641191179270893 +4.6525251718171505 4.483471040206094 4.60280690324032 2.6218444426852927 1.988162862932259 +1.3192350446262981 1.505401124406872 3.901550657300386 1.4320546216939931 2.4765032766254436 +4.635596954739444 3.1314744188337373 3.065880249949385 1.9854628441570963 1.8519412446830905 +4.435341776696412 4.225151787241325 1.3616430863444622 3.3607905537233487 2.01016676621482 +3.7162225563627986 2.670811195209794 4.6260835316815125 3.0478215888679414 1.8930915651815274 +4.8662719091719175 2.9308903175984042 1.4013194683450707 3.109100160537321 2.5811270401950903 +4.11380629791685 4.606254578263989 2.453194507734191 2.5926743461058215 0.5118202166083626 +4.902997688123834 1.747487692461298 4.195305492761115 4.959238710437834 3.2466655654372665 +4.525973807677547 1.6182743880033899 2.5052504765647234 1.5983769516393354 3.0458390478460986 +3.0162210776446168 2.4286969591720813 1.5073864937863886 3.1088535490256333 1.7058374244937846 +3.1402610223555927 1.9269168929337588 2.861590183279142 3.5049044515161905 1.373337986119876 +1.1041052129037507 1.0161203462054704 1.3690432749078405 4.0200979889552775 2.6525143606851693 +1.4079572223171812 4.3419887042014995 2.302960699822389 2.9038164264850814 2.9949237621267826 +3.4386132973740438 2.102584006068096 4.5219876272693345 1.9295129167502165 2.916487509300984 +2.1116266842079954 4.544539214357586 2.1287897538674594 1.7061329135955643 2.469352583975708 +3.7383744281042635 4.340484354895364 2.788313820624511 3.5690811410876897 0.9859685454636147 +2.5701122795075158 1.8952752901408116 1.857896044775189 4.860394290968513 3.07740161184911 +1.3644940357964974 4.8663715339923375 1.385762198018194 4.273794626178388 4.539149404731598 +2.9456493556557115 2.1114924529483186 1.7632942741385231 3.8969769570882145 2.2909429346567722 +1.3256941347331734 2.390017106829484 4.505533974683525 4.229513931672308 1.0995319245369086 +2.1197594741844097 3.4188811078569774 3.979363628284651 1.8037806126515852 2.5339452395399444 +1.958416587953522 3.009836553447533 3.9850334373314316 1.3529752650905635 2.8342925335785942 +1.6366550698373725 1.0186613934423292 3.144960168405599 4.926755216817627 1.8859241179352584 +1.7349948337369159 3.2602484642756866 1.143159736552612 2.3674278142055076 1.9558197676247209 +1.5700036262784254 1.0590079348530743 3.5600305169887263 3.046875542315377 0.7241854905252371 +3.534842547266696 1.1444855489652617 3.03780690541683 4.872109720880561 3.013050513706468 +3.116264118028122 4.5641146017164065 4.359252954596824 4.513908899230113 1.456087045587184 +2.8246053083081284 3.591020192843177 2.025239696263737 4.428878703126294 2.522869844155281 +2.4305252723193385 3.178540720673376 4.9387692329876725 3.85497453584242 1.3168667573207478 +1.378428345808706 3.5460327766296023 2.9446653889049386 1.2644751744169773 2.7425440972526736 +4.302332151608671 1.3333151206565472 4.938157383205849 4.667132617412902 2.981361526845895 +1.1438427603517498 2.8597448450032816 4.34246796930536 1.6569189868841678 3.1869253679832186 +4.018002866121971 3.1698184088209964 4.331462911353876 3.5931900591262544 1.1244837384076551 +4.678522925679799 3.288959702706688 3.2768655701320464 3.7911538967042535 1.4816809486147346 +2.9778901099827384 2.3395100722010866 1.7086265363604531 4.768572347776592 3.125827481074616 +1.641702981811488 1.6653514777268201 3.8242456889220247 1.7424111723502982 2.0819688291971357 +4.198024291941095 4.80232651163012 4.129067233885674 3.5028013183996256 0.8702816610848826 +2.1541298213615168 1.0661016447980782 4.8911575604699244 4.926315317904354 1.0885960595665314 +3.944508089613777 1.18540690497893 1.5769974994205604 3.3971321457084023 3.305378870518595 +1.9750117751099254 1.1011302391648017 4.4960003260224415 1.067834871361042 3.537794132422011 +3.416267517464087 1.308193008994348 2.977155753629947 3.072997219066 2.110252051238634 +2.276054237813447 4.508885220848698 4.396259643115801 2.228822740429712 3.1118028417506842 +3.348506645045802 2.654663266876077 4.6066192116991065 1.1730831230978334 3.50294000878652 +2.9668021188563225 3.909319518544326 3.103855877714564 2.973472305946299 0.9514929976104324 +3.64099687048277 1.1233754186791516 2.8522230919315996 4.6648579289121175 3.102267368686514 +1.2150968694929447 3.2497966765697734 3.0479312854906806 3.709011970114253 2.1393996766618564 +1.4459763072937992 2.4192230936625743 3.6670702302719205 3.1367046931523546 1.1083757982477214 +1.5374417315058548 4.050671063059448 1.7792528797395897 3.177234614204346 2.87587805772053 +4.865187942143258 1.5078547030759486 4.452946585039626 2.123296146891911 4.086435811573215 +1.4199063346904346 2.8138707979035074 2.8678626835410577 4.0569827094258395 1.8322509000301064 +1.465472185016531 3.1646705597073437 2.6595168587345013 2.540711182730762 1.7033466779263124 +4.170460475275438 3.9072105023850745 3.007608538854807 1.9234989538617264 1.1156137954062086 +1.0617578899644817 3.3932181605286096 1.6885264549301446 2.5809844992134345 2.4964351291441385 +1.0895638544423423 4.556213821769409 2.5712174326150965 4.787350135909864 4.11447519795433 +3.6943943910899923 1.4958318185790476 2.0164598205730213 1.8783736012183465 2.202894729491541 +4.173745303551456 1.4608608311003493 4.326494602356262 2.784665696767369 3.1204131993977597 +2.8666199021580154 3.0332676970975805 1.1027595666814407 3.8280963024990755 2.730427038240601 +1.3070044249877348 4.189574437067998 4.726243029563696 2.205921960255503 3.828998324228309 +3.687723680743817 2.5051432573227745 3.903011469447075 2.5144750181597786 1.823877719150111 +4.279756973461883 4.132469016769682 3.6935150453652494 3.9613283053761563 0.3056430670311915 +1.1495891333865034 2.7654355253233636 1.6483302911230062 2.672466039773426 1.9130639283618112 +1.4087099488499355 1.6116977994427342 1.4103392494082239 4.904467892457178 3.5000198630384096 +2.9887965951494557 4.42909457411127 2.8079257926353214 4.09366149897779 1.930692770682444 +4.245386592215446 1.713910393219165 2.9045304342830724 2.6364549945851636 2.5456308034461492 +3.652066480259567 1.219797992114426 4.793403685247478 1.1343699755583772 4.393683840135181 +2.2216740473141052 3.589772148735697 4.578772094026533 4.793544125741953 1.3848535809682312 +3.366605994690268 1.572525639939283 2.6378068980604037 4.385796666621055 2.5048338368634635 +1.2858128373335527 2.5161851713963754 3.09002831252629 2.673364879739418 1.2990090440982074 +2.3099364594730045 3.53735911207665 2.4363237016451316 3.5611390377389207 1.664865132206316 +2.0997151792387667 1.1841498809283637 4.725337867362107 1.9259903221808568 2.945268492715479 +3.15795081417793 4.965399601040682 1.9140888729042929 1.5561986444411762 1.8425407818447372 +4.16303003381166 2.307029415097332 1.0323470550643443 1.8743842729247007 2.0380787455174487 +4.382906479993233 1.73836523219298 3.9909162905498508 2.0878824749017415 3.2580878003542386 +3.316217266552963 4.826864072892114 3.1613334580710113 2.424519444654542 1.6807583597500153 +4.434143619595643 2.123691643284824 2.3600888616620663 2.9546908303488104 2.3857367490996824 +4.797864083122928 1.892176382344665 3.891628595298082 3.4142744918907657 2.9446371515848724 +2.858205032209959 1.169050150285904 3.84938557686796 2.328241116386153 2.273131031151164 +1.6914331500936748 1.5241744408661821 4.627818527769968 4.463668058212221 0.23435198413599076 +3.9437578680981082 2.960799500883523 4.826800052068611 2.7210440310122013 2.3238794228385617 +4.6979925214211935 3.6268613184432645 1.788036038708591 1.3786379673579732 1.1467034642044782 +4.061343840713828 3.000540399995429 3.6195375033754136 1.3361752034588834 2.517746479000636 +3.239392842332088 4.951568368604338 3.103440746888353 2.2695578054346623 1.9044436964145501 +4.659389713758955 1.133377413993951 1.6380648486372347 1.540121335081369 3.527372346370845 +4.657534464084519 1.9105812152571202 4.960226770415133 4.491985629169004 2.7865753026966416 +2.1371672762504694 2.805153048413404 2.032119119924878 3.162224405509773 1.3127615732946443 +4.077614080976243 4.331159323580836 1.3147054115088492 2.4158985317693658 1.1300050788189027 +3.417153866535846 4.054078987768081 1.1351769850162032 3.779346183194883 2.719798587883592 +1.3544720348145276 3.534089518093099 2.795340070927272 1.548919618728719 2.5108357805863086 +3.9687337044274407 1.4937949299290012 3.353066114493 1.5000880897822904 3.0917389116121434 +1.2091131119503258 3.0470841257384174 1.9741347384466885 3.6787368309916024 2.5067520303040993 +2.0721713553286527 1.9926985181057195 2.4735580755119018 2.41389249389019 0.09937763071496528 +3.1752127519555775 3.137978656097578 3.4338015206366976 2.837244584917939 0.5977177891350715 +2.385781633664403 3.13853011391607 1.6092906475323132 2.861900279723883 1.461390148174092 +1.9586745559468932 2.7728119717249347 2.0314498997251613 1.027006486683847 1.2929525520187628 +3.9722072812138554 2.4079770950938273 4.726404250187851 3.9967094982856866 1.7260563450022886 +3.064925752203072 2.9290236714533715 2.3484859575820267 2.252989513319031 0.1660992065573268 +3.0220461281756617 2.1525541258355783 4.160762098755455 4.145821470465843 0.869620356539022 +3.4813802469555273 3.616142602388146 4.513815593098235 2.756093373371157 1.762880680637244 +1.7105163609326657 3.433232241490391 4.215374128450764 2.5699524210517497 2.3822599774805577 +1.4231599811139977 1.049828649795134 4.013328835122687 3.5114174520131023 0.6255328284265276 +2.0632279537909266 1.2956965782414454 1.206232352681793 4.014317817762015 2.9110905845829813 +4.979473937529894 2.9100066168853496 2.9569506272843222 4.451441683361315 2.5526845688235427 +3.746329085984003 3.8643810414196325 4.235503776640726 4.737483267332103 0.5156739990119241 +2.8981997082152113 2.3802491962606314 3.6833233850372245 4.231266256515999 0.7539987554621139 +4.731340885616623 3.441970417475361 3.883934576069809 4.927404078668136 1.6587057626256736 +2.5140684569231633 1.99557934218414 4.185377496732529 1.6376616686972674 2.599939788249769 +4.290153079484098 4.793236394886995 1.7309698934511344 1.569148962591135 0.5284683868512554 +1.9903534131048048 4.309855151427513 1.703109766594833 1.0182097714693117 2.4185070430753357 +4.186258604606803 4.724982289011516 3.75281619465853 1.9893431847328853 1.8439252329947657 +2.8418527319236553 3.3814666938183375 2.1583143937322573 1.0518690783595912 1.231017653724671 +4.669815051794274 2.7550147383256287 3.6162993137685335 4.396591119816366 2.067683617733866 +3.093941518118384 3.1535090653074906 2.1362421742419477 3.8364892446590053 1.701290214260904 +4.198634085217998 2.197907257143943 2.2880064859726206 1.0566093794762685 2.349307701103212 +1.2305535204504006 1.876474996334181 2.606814678872278 3.4919356751347643 1.0957434604105916 +2.7664924502495887 2.344318036059806 1.7242777810996346 3.316658381876217 1.647394067527887 +4.543365948934873 2.2670787037218885 2.9332586435559347 1.3748824231362686 2.758626481981351 +4.16288366113279 3.886705523825593 1.8142711341182927 4.162612920677084 2.3645260645686714 +1.545953012345655 1.1285235608071376 1.372288002890795 1.6693248003074732 0.5123262691208643 +4.2475685144903075 3.7298606419163547 1.5016368594421179 4.513057167203765 3.0555971120755276 +1.985157519681021 4.8627892218513775 4.779370175650142 1.2713572963760842 4.537280967108884 +1.723293137723784 4.518782636589839 4.593858775759484 4.214763889659206 2.8210768282586303 +3.9628139852257824 3.249883106577804 3.8667937437269084 3.1236463171735025 1.0298245167613405 +3.817549618976887 1.0739843437297925 1.794169319931492 1.3159950488674874 2.7849238864014323 +1.7028269127589444 1.22903256469416 4.382610202035677 3.615322392080691 0.9017824945981445 +3.4376581801619293 4.831429838687111 4.675825818978144 1.7940846955141154 3.201098458150226 +4.257177932624787 1.0502224581437938 3.172543685381849 3.430027306346522 3.2172754358880575 +2.8140412637431447 3.024940853484278 3.5022952096643336 2.085577234770376 1.432329730662816 +3.5753927462109645 2.574701167306552 1.0822435144271445 4.511399601325663 3.572183520538015 +2.0707469588419927 2.28376748468317 2.2420182488756475 3.368359433557685 1.1463080775867314 +2.2013716501791123 4.3241957508181 3.239942094097315 2.1255204245641566 2.3975649771755503 +1.6052501852927166 4.951834057709069 2.3999001344205766 2.0819319162521204 3.361655455706675 +2.2263285399296735 3.3990994885686026 2.892321511867321 4.544598531145437 2.0261813952373635 +3.741594920027259 2.5687488139240293 2.655786391461722 3.094741130151638 1.2522975889219943 +2.3801924089900837 1.8348071440920175 2.282222654955589 4.937699176687271 2.7109040271902156 +3.619712030676744 4.950204168738383 4.111738969587053 2.92554042248391 1.7824916051957826 +1.3019883839195883 3.3206781072060916 2.7422513038656873 3.8465173905477203 2.3009806146724903 +2.498591606145095 4.720334011981619 2.960343637306103 2.459144140312354 2.277573325642679 +4.361621464245928 1.6877636880040603 1.2930019504728705 2.0337408364392653 2.774564741495834 +4.50819865637655 4.334207555615616 4.630344184479994 1.1543398465109256 3.4803561686591475 +2.1381641116213776 1.1497244354365486 1.92721619234807 1.9358671315403488 0.9884775324736917 +4.623013895542496 4.580400755501404 2.222875628741912 3.6304183109480426 1.4081875876232506 +1.9550959609109726 3.1458661056103447 3.8632635122158594 3.304505475839832 1.3153494139285415 +4.400190205185461 4.6805163847105575 4.954468353959833 1.5215190670247551 3.4443756435085877 +2.3838289301906324 3.96903718607187 1.037614269764937 4.680366558144387 3.972723177998658 +2.1147635925543407 3.763861220121335 1.4159863015094292 3.9453066300795223 3.019434435414191 +1.7557634808949878 3.9603042809241495 2.0231592429439154 1.0480211149680545 2.4105797036450554 +2.294208366280852 1.1162787919495076 3.5271663216455855 2.798705981247014 1.384981064714614 +2.8093011706462034 1.445640256876604 2.229481313155816 2.524101832839317 1.395124488481768 +1.9685037959877958 3.583843022137976 1.8938253058259864 1.564402930914949 1.648587248716758 +2.5949600419087364 4.061590132913731 4.242452639292155 1.3753170379421622 3.2204767318473064 +3.718847006192618 1.0562313844767481 3.4694273132505224 2.815281583244203 2.7417929508062584 +2.2144660061226507 1.8229004393745893 3.941744284135504 4.289044308115827 0.5233936374464856 +1.5265789844279798 3.159245337839935 2.818612680634729 4.580992516056115 2.4024117269659264 +1.2124216936933352 2.6587954255444473 3.0103268644371663 2.7357605512982626 1.472203665427988 +2.973370499178474 1.0982981050136953 3.0843046624801094 3.375505626044849 1.897549600021003 +3.566604398229728 2.781261607592518 2.455997416901636 3.024790640954009 0.9696850161437652 +3.9457924620839346 1.6718099016270833 1.0745412029321257 2.1942125371227186 2.53469141748459 +2.8851092654519093 2.903080961188561 2.2497433618734375 2.1891324839306066 0.0632191456178548 +1.9543152001531512 2.1032133531474324 1.4360840332769653 3.67029304755275 2.239165152336085 +3.250806214340904 3.0725407270132243 2.359969371266383 1.9330011953859318 0.46268823973260326 +4.393150007976455 4.18563121886891 3.5894577614269405 3.9016739735603077 0.37489066532999915 +4.531073484966952 1.5270101545581118 2.552511231281549 3.305331655075356 3.096955776821513 +4.280494376409341 2.0797868470477785 2.235201663588296 2.58917450726077 2.2289931367876057 +3.074172163171007 3.951573684363517 3.2139854103670236 4.030337427467511 1.1984423412141967 +1.9551548770224692 4.007684500773202 4.640252141218122 3.0935124546767034 2.5700742234995024 +3.1450939499853323 1.446471308340643 1.5921035833507777 4.665544364890947 3.511603211688677 +1.3568789244151551 2.5646539973979015 1.2027865662672776 1.3597435370217736 1.2179310808033867 +3.226279798856196 3.8457306248138092 3.994181834072017 3.089093076016804 1.0967702520297935 +2.078459563897355 3.86486215754436 3.8177023877661482 1.2625733406270463 3.1176784109530478 +1.2129978063131008 1.9781882485767013 4.990703462288321 3.067697260559895 2.069654382938744 +2.2513689247019997 1.6650045789305032 3.944971407332375 4.433645306503161 0.7632989753188552 +2.2895390624960417 2.5149897087556745 1.403848057288037 3.90515503110005 2.5114467087994314 +3.372523940609538 3.3751810412081573 4.92256811897321 2.966618777504716 1.9559511462648105 +2.30318460987226 2.046093099730709 2.107133181899469 3.7171426361971007 1.6304068472361803 +3.645160748524314 3.4340304855076056 3.092411236342639 4.391826203928207 1.3164555617060936 +3.1026608000894167 4.665321058567626 1.9911460588276495 3.6554280447498044 2.2829239172806823 +3.8250307528938703 2.569625552628759 1.3438593241610408 1.498240362266018 1.2648619378331591 +2.774968674005746 1.019794559797591 2.992010376765023 4.15883640777948 2.1076335444852208 +2.593415974396044 4.884606043079401 2.482062038085236 4.094988095759708 2.801978300836493 +2.742916354825298 1.5550374297891558 2.057471355826814 2.843908412821592 1.4246191017811143 +3.8426769521232966 2.000493324380355 1.6619988347538648 4.864564268185317 3.694599555260912 +1.8576309642832118 2.907453419233155 3.9420446776027176 2.8830032622985287 1.4912061917275643 +3.306102211069546 2.137951196565172 2.8068890535170783 2.634502562666067 1.1808022251484473 +1.6932282040178839 3.2661263625155157 2.9321057472094623 2.184486628614247 1.7415346575633595 +1.1509114453625289 4.141960522829651 1.0201177431048651 2.980158534726074 3.576050123898715 +1.2916430962391647 3.8556983797205486 2.267676640595227 4.517247271370101 3.4110038873612654 +4.440665812294325 2.970470327013798 2.687190773716711 1.2021678099011242 2.0896813077593612 +1.6012455531640772 4.629174962327339 1.2947894262550523 1.0191523706515153 3.040449357134166 +3.725535201429038 4.39447596226664 3.9957414150562185 1.5487968174506537 2.536734043068183 +4.534933819509861 4.248652407094803 3.0607918638561418 4.80984474225272 1.7723270066558585 +1.0680001412203954 4.555774520784541 2.0100008885577156 4.808473023232305 4.471690554062771 +3.2137177268767685 1.9956418520062562 1.163871936393281 3.9933033711077055 3.08048552677848 +1.7872809670840994 1.7167385457497253 4.6516008963940045 1.8225953772295198 2.829884884703057 +3.015442771722421 1.694593475911355 4.588192530427198 2.24942032557075 2.68598181089405 +4.795230348433587 1.2298450810266872 4.1346044546005984 3.662422749640557 3.5965160457783503 +1.3419965229388051 3.7126774139723544 1.3276919058306755 1.505942467118893 2.3773727410128997 +3.5026057295564392 4.091214550236568 2.5060142114484405 4.891478708227297 2.457010624554736 +1.7411822865920152 1.5876229382649325 1.122900629523119 4.280696563037615 3.16152742059583 +1.713487694697152 4.800805640358263 1.7807321337371835 4.990761698097064 4.4537424601862226 +1.6860529842422873 3.8967888727974995 3.6480477270944043 4.585023898170166 2.401099230375496 +3.799182591378537 1.6619107315621502 4.26938973198388 2.8004988417439027 2.5933706735044626 +2.2486870136925163 2.3389115109233773 1.4380025887147787 3.2282163024556576 1.7924858718457088 +2.6730945242275306 3.4103649791777997 2.173722594896974 2.67495872450579 0.891518581616672 +3.05437469782287 4.014456523965348 4.785720073336286 3.396738115018714 1.6884987395378155 +3.846202954579087 2.9386919567798704 4.852746331855332 3.7028849057386815 1.4648404385452867 +4.0992244444887245 2.5570442163048215 4.568566683821862 2.5682269349396134 2.5258026382042704 +4.456193169014593 2.460514341579901 2.8827129090797334 3.725415658471416 2.1663060508855643 +2.5798337614825524 1.308133521216507 3.9276975421208187 3.4062606055671436 1.3744518834412498 +2.644671974493434 3.1360957291868186 4.170432382152265 4.563986317345407 0.6295887598924801 +4.4923406602339515 4.503799321057356 2.4835971913523363 4.276362860379056 1.7928022883041752 +2.723858993104501 3.388745499116211 4.069702812010593 2.0693991855576384 2.1079109715254347 +4.909706744482584 2.500564469524413 3.220984215014422 4.8183805110297 2.890612638786796 +2.5485586761590047 1.3892801238830512 2.4411435486506416 2.1555115458889578 1.1939482412435982 +2.847074725883469 3.888435207714759 1.7921981798425892 4.7501553550639395 3.135911718075521 +2.7127026193999466 3.3371125458065083 2.396415599764714 1.516586023471373 1.0788826810712868 +4.146440589488965 2.5156759311681793 4.81201995907824 2.6652501740149215 2.6959254219820172 +2.094857083667994 4.155771601982184 4.8444082016533585 3.0042067153314393 2.762916966189829 +1.7592980778771934 2.183167211985638 1.2222265662691547 1.5221526755786847 0.5192501457827381 +3.956812866516246 2.911200983408129 1.6188422198503072 3.3288252260484454 2.004331831704352 +3.309371525214977 4.719175184591452 3.2379175680424654 3.9536747494142994 1.5810928817361278 +1.4667585620941872 1.600337634146563 4.61827291243235 3.1130057652570016 1.5111825015052902 +4.798206602429753 3.7137995350640334 3.1759885253820532 4.408139916340761 1.6413822644326939 +1.0829436840108455 1.6031957271283317 4.229069178210978 3.810617715012581 0.6676554616123488 +4.816847380362432 1.018070713086773 4.3626260424727 4.246295235877172 3.800557462320644 +3.872405956422 4.674816287802232 2.192300139359514 1.9114833761697532 0.8501296338759798 +3.1995487565629843 4.161306410666235 3.0625839667351755 3.2090742378584953 0.9728500319987514 +4.415848818981829 2.1382895992879205 3.165001657681923 4.9081336884673235 2.868062983262878 +1.2668100312545243 4.017631480542871 4.908144195453054 2.0666270435195546 3.9549005512903994 +2.44860360547049 3.659448521787521 3.223427196887384 3.8301902466994666 1.3543658331440798 +2.407390896472327 2.0552301456732263 2.2131199199702545 2.3312701039679613 0.3714520970220498 +1.7077032715401308 2.6997612467388974 4.398372036741268 3.7309062174641276 1.195696301766791 +2.827330083431474 4.37760483693639 1.0837392431418666 1.2135431521665363 1.5556994780974933 +1.145513124730261 4.229564439783083 3.1528388389773454 2.471024126981564 3.158519244103624 +4.749697119594018 4.852071036946986 3.814587406336849 3.3627961334251038 0.46324483076814527 +1.032220916643107 1.3193012185646578 4.661120979467651 2.335130029840112 2.343640116890943 +1.265698508958161 2.5638411967201575 3.4612596191484473 2.6401417815408474 1.5360367642173547 +3.3539181354024796 1.082585593978373 2.27845170880966 4.741878021238298 3.350734353913758 +3.503323657018143 3.533661172879747 4.7955549090086524 2.492994354744532 2.302760402413101 +4.602123228537409 4.244208974726266 2.9724902457473035 3.9094795171212033 1.0030211900807375 +4.18705647337614 2.3448532302580336 1.8191165807121705 4.000182433908568 2.8549537728191328 +1.259090804555007 2.9794432496049095 3.006193732569298 2.3691373497527013 1.8345172035379071 +2.5190913681101548 1.8275415764944434 3.3661365133830814 3.2619171985310302 0.6993588348422896 +1.21128003368128 1.3214217578129066 2.5113863696806975 4.024236056665769 1.5168537750243154 +2.8180504429463284 2.407583892873569 2.465176358411679 4.527524234040003 2.1027985040981205 +3.648025173711941 3.22400142601388 4.018500120826172 1.825230888004254 2.233881390373077 +3.5409290223130667 4.733121842907304 1.972986788553937 2.185589289316879 1.2110010507043747 +3.7980956844850904 3.4926494445093277 1.9769001204229517 3.135349233455357 1.1980407977197178 +2.660453679314693 2.9445435359961394 2.177595933721276 3.5454412102816666 1.3970353421720785 +2.3499136267294443 1.509183031978052 4.458801910856588 1.0794211712916346 3.4823902877037773 +2.4820394357832054 3.753433339081188 3.323052681792212 1.2141871439603933 2.462469555953528 +4.443186194799209 2.4335566056284357 1.066161553534521 2.0581021924776026 2.2411062707639497 +1.01758076558357 3.055167547232169 2.6744267916535813 2.075643090159981 2.123747116283733 +4.972388791625159 1.4613521266516978 4.068635819144186 1.624436700567201 4.278023818779002 +3.129182420224506 1.3670846516173945 4.855993089838389 2.91929727421662 2.6183542977177536 +2.2214378772253287 3.430489322064506 4.5898691949708645 1.1895365074757382 3.6088873329484157 +1.95042834637003 2.4746652577649697 3.9538197392413403 4.281179616513449 0.6180524480305177 +2.8461960966408957 3.998794980648294 4.665291179090584 4.1071266536693845 1.2806372729441278 +1.7189290837336766 2.223227535691037 4.583859520009279 2.515675386188011 2.1287795893508137 +4.536822721765034 4.898372254078941 4.97319857419695 1.3066720601967106 3.6843092625596943 +3.860654022347681 3.9877728701488118 4.370008537491142 3.190457507173872 1.186380982057964 +1.7714177267794877 4.424922358686821 4.178980536021033 1.7063147168764647 3.6270046987451714 +3.4117674785229637 2.683225838485443 4.583710857666034 4.777083176437154 0.753767719483582 +4.127096550698443 2.29114967175052 4.239399918305457 2.494976281322774 2.532531296466544 +2.0806837731923262 2.276409235926316 4.800216590785219 4.941385105062336 0.24132344723553711 +3.03650463621618 2.0902285526337487 3.758489006525899 3.6825836413291557 0.9493155696741498 +1.7623980759348954 3.147954547753335 2.7602616567045146 2.9428496183100674 1.3975353663937216 +2.5504639326141816 1.6932555618332255 2.430379224999443 2.805086437104494 0.93552749063856 +2.2729085117310177 1.7708519180512265 3.1426698333140792 2.129312167931861 1.130908741343109 +1.8626417497237573 2.2717249686519203 4.961285605724058 3.4526498501993346 1.5631157739771804 +2.1147868184438767 4.731499286949072 4.1837856476194455 4.703162991675503 2.6677587912607987 +2.743279062834338 4.271067909956064 4.817675708391506 4.567371768049206 1.5481572348894068 +4.736287293075986 4.646060652188432 4.481142161976066 3.4977561856462143 0.9875164936182417 +3.405746289324129 4.37487716732063 4.570766525790644 3.6442396009910527 1.3407709726365857 +2.1232066672488097 1.4071451578374665 4.084833999316337 4.2482490255570164 0.7344716169204178 +2.6764277948505346 4.390028291759757 4.7680791957024695 4.508851269238639 1.7330971642889126 +2.7912418634758627 4.10914613042727 3.8246409471945815 2.9673473609635317 1.5722035332111488 +1.867244639999143 3.171773736315924 2.5034606640736032 1.1159335812992381 1.9044756676233534 +3.152410196441101 1.5840753345459886 2.727573556926322 4.220602150642163 2.1653657013744034 +2.6949054064581794 2.901395521704064 2.3593605497653733 1.1299090687585371 1.2466712124069288 +4.088767451138505 1.9423288669041079 1.9675124860942672 3.82222823075907 2.8367532655128254 +4.635908668305128 2.4388410961244866 1.9856102340727944 4.33734586338259 3.2183483942688493 +1.8577866451264393 3.633512328781191 1.29643211334986 1.2759169476051646 1.775844186750816 +2.335746896487221 2.409651803451724 1.3082983203472156 4.945452979691932 3.6379054346239426 +3.168263575620674 2.179126840877264 1.9400665425173331 3.44186614844844 1.7982751559184937 +4.0976806174057145 2.3230873916699863 3.835094504806103 4.215820072456841 1.8149746760465046 +3.9087700767154603 3.9692239953452817 2.4204008682788616 1.575872002967829 0.8466898373201613 +4.266491273679183 2.2032849410212685 2.9255395393078114 1.232840303632175 2.6687171213106504 +4.174059796267662 2.878833954628853 2.0833382917997643 1.729163169633737 1.3427769725499026 +1.0715076267311234 1.5758126158862842 2.9588199694241277 4.165724138067485 1.3080295082204763 +1.3284004231551574 4.704721397039092 3.5937569074791447 1.1575693403687302 4.163478495300765 +2.1673863456969533 4.094404013048548 1.3378566126862097 2.8783998341096293 2.4671178543715393 +4.759114288976155 3.8649824798748913 2.674033481476933 2.765683820169338 0.898816709139929 +1.4511510539564636 2.345799564277242 2.3403498134830985 1.7011549300423185 1.09952992502981 +2.466461571406959 1.2720844036470838 1.6620815010350851 3.78587278892508 2.436601373508507 +2.166796538862615 2.96163268772121 1.8801673229823406 4.408828340521902 2.6506397426199912 +4.530246908687517 2.8855785965711944 2.1447830301607698 1.9522090538201073 1.6559041618533388 +3.0636319965930667 1.9508616070664728 3.35965164938596 2.8269376064294387 1.2337107405588437 +4.662297108740663 2.2689437046554444 1.4759693374763136 3.2136835072828007 2.9576664877556014 +2.0576008379305075 4.811014843933125 4.634730976964639 1.6111186889175801 4.089440054198198 +3.900259648019618 2.3100215674699753 1.6835016105312328 3.1947521303496456 2.1937947229587444 +4.620261845430578 3.505973843966405 1.754614651192505 1.8463696974822548 1.1180593627919113 +2.9340317367237407 4.105487435796748 1.9762738508598412 1.5557466794283856 1.2446491701691562 +4.947302629356384 3.2782667796108718 1.420068189914104 3.212561514667037 2.4492270182691414 +3.7865307585464145 4.15461656934249 2.9473776077397127 2.752090305159309 0.4166824866232498 +2.301515418518396 1.9924073634270165 1.593003036037914 2.5417486867288837 0.9978306967754634 +1.1225359251235152 4.739917264443016 2.7269075402342646 1.9503591066353878 3.6997939434219598 +4.550901897499372 3.3678018290189327 4.610507907418895 4.235302905009704 1.2411706433328584 +1.48277023842701 1.5030515165046174 4.3376715393089755 3.897620696997633 0.44051796110871966 +1.9846501110757382 3.7901395750171454 2.0736002864694427 3.885454509023776 2.55785220999795 +4.405781283799566 2.8680353008259067 3.192236807623837 4.138238178300977 1.8054310569707872 +1.7659617793701279 2.7708862893245065 3.9382485973151473 1.034295504154914 3.072916666293106 +2.8475098174279196 3.2359449292922617 2.7666772763330703 3.2655471301701278 0.6322602052924658 +4.498429033485638 4.221916076103001 4.15506678133826 4.598857449796768 0.5228858125932866 +4.445068022002015 1.0332127502311046 3.835540492796075 3.3809465150216544 3.442006984324658 +4.4162413125438755 4.8300012758732045 4.318412989803899 4.917987485557855 0.7284825895056786 +4.479255104765532 1.767960140624326 3.128763108436826 2.2642402339481387 2.845789904945838 +4.217995828357099 4.977400065874882 3.8139525803799006 2.134469195054998 1.843192675100018 +1.58182986922376 4.381293677132575 2.9389006362993944 1.145807156033528 3.324482191374061 +3.961375065060002 2.1926816815341037 4.41932164733497 1.892996743447596 3.083925064739712 +1.593922612671825 2.8473561022549796 3.0880168497486244 1.808029035557683 1.7914977860120032 +1.0093788519029636 4.382727397639002 1.8868449523499065 1.4873839405414389 3.3969176485417614 +4.345652278801861 4.997851654511019 3.139509223492774 1.5861446529271812 1.684727133622488 +1.7852465505298731 4.537982646759035 3.5852471520926255 2.664436837178036 2.902662166277032 +3.7160319764514353 4.215880948920024 2.3556225452719697 1.220454013521716 1.2403453514057812 +1.585521425469989 1.8978635419876313 4.412135749581298 4.62319247015227 0.376964901614055 +3.860107820291568 1.1227882815985009 1.408997041805414 1.9624833049860264 2.7927164733356777 +2.8375360262867484 3.749296252127963 4.6838366757437955 2.901099125885466 2.0023635736551197 +4.207801734076727 1.6887381913976767 4.358820659177324 4.796483844821433 2.5568007736471916 +2.3036272112249216 3.5276353581417808 3.9012366882646456 1.6132918645284668 2.594780811586986 +4.578373707541894 2.0216742828362615 2.236066425990371 2.981714860763477 2.6632130099880666 +3.759294792479019 2.609946720073438 4.089352936818984 1.100908191769999 3.2018436854027272 +4.213837164591227 1.7172082531454191 1.732448339567116 2.539147766256893 2.623722524675331 +2.8842352654784817 1.716014206387157 3.6295852210376682 4.122585222359878 1.2679863738259 +2.255377484660576 4.855733750173172 1.208040276738307 1.403446704734919 2.6076879375594415 +2.8324362886783656 2.212429230751104 2.054697652574252 4.801733231111982 2.81613444665409 +4.8626407468701505 3.5570803466120404 1.5790391002809687 3.0646182995460296 1.977734440214645 +3.3097852786361375 3.493304665014659 3.301954663196094 2.5047728183131843 0.8180331649680643 +1.1259581931203995 1.0363431995439703 2.759458312621438 1.4037198814163712 1.358697001144876 +2.5582666612705656 3.257436150206486 3.119109859751304 3.4585660365376323 0.7772184186040031 +2.8529530876467675 1.6585182034591543 1.2530935556109988 4.77226945339222 3.716352202373793 +1.332152266543385 3.807448365316457 3.1457098776974726 4.490274735022751 2.8169035184321345 +3.394307711951899 1.9880268657564435 3.9666016967889624 1.968231460023913 2.4435853620376364 +3.2996333418377524 1.851449374798868 1.5081268007957176 4.1320349934802 2.9970203546231096 +3.8428576969212194 2.7471764447531264 4.9163513808802115 2.0761604441260673 3.044207936980164 +3.5238144708305716 1.073452154477084 2.354233681029251 2.544035713738628 2.4577022384792344 +2.285667206197893 4.867942452997884 2.8441509092986768 3.1367684024346687 2.59880173301565 +3.057505580288619 3.576232723185429 4.320599672935561 4.447749345269395 0.5340832219350173 +4.500744146622433 1.209606757293968 2.9706309139255223 3.776786436022341 3.388432091874202 +4.503373341947206 4.622046708047017 1.82602761304834 3.9969793921939614 2.1741929526141415 +1.8576428636645441 4.540109840145368 2.660909992835399 2.374493410578305 2.697714502778603 +2.7261883134115568 3.520173847638174 2.0972317968944916 2.5565000858328943 0.9172460900900778 +2.897791375618551 1.1697572730912809 2.508578667271288 1.2537974529135103 2.135550925499649 +4.334396290448546 1.9316017559511267 2.5185644536423286 4.45586998573563 3.0865149116260526 +2.782293646456525 3.019910173373339 1.8588651759533095 1.6560514278364997 0.31240203310669706 +1.8240597064615236 3.415462864251043 4.3286479621583185 3.086308562153364 2.0189034636225487 +3.687867214640312 4.970182616618693 3.9441383610321954 3.697275196047338 1.3058614828446846 +2.041031883481132 4.9489689793738805 3.8362318851141968 2.9777831485562034 3.032001383074745 +3.864548300080002 1.5752559078322714 4.405900554600162 2.6534728571086843 2.883030088663422 +1.609100500625979 3.7177406378273594 1.5456901854756766 3.7371166750340135 3.0411697235364277 +4.7365962856904975 3.3283376802548346 4.4019879881302995 1.5753969860435868 3.1579754579257204 +1.950098687434894 1.5772844761453113 1.573763729754694 2.570520735294249 1.0641968634757641 +2.8088607256055385 2.216585640974949 2.3334845007439684 1.9037517015726038 0.7317513611588491 +2.505799911264792 3.795135727104719 4.882470654394929 3.8953438148260924 1.6238245728540903 +4.121907363053873 1.6049790489203004 1.5086689831353355 2.9534625107993056 2.9021296449447207 +1.0300044626055374 2.8881505832674095 2.8994537626484194 2.5909445535002087 1.8835830053013376 +3.8115817259504223 2.952337385838778 4.702656782157186 2.4917697288937477 2.371987014783552 +4.121782760820267 2.633843060337999 2.875551320148083 2.400271273777848 1.5620037371110715 +1.9393742375911942 1.0034524164873733 3.9592583090635443 3.6386727808709973 0.9893051784483831 +3.8972366887567453 3.421403666345533 4.768673585311105 3.1182142532888952 1.7176824712024596 +1.3714692599371614 3.2125653706736035 3.881822755172506 1.0429591762473942 3.383604780218332 +3.5388971966138296 3.019019113378389 2.1989350264179044 3.9112112939186683 1.7894589231594291 +4.792805941624355 2.988244380332707 4.786551365121348 1.2136434489408092 4.002763221325602 +3.4866394169841652 2.325567536424334 4.748115292074135 4.583629224556599 1.1726651603224711 +4.651096268110533 2.471586496043842 3.03287896962268 1.2341222572739396 2.82591375607145 +1.5232952189442321 1.9901454828015677 4.482850824275849 1.057120986940383 3.4573941180134704 +3.236085961770356 2.102161560230989 3.675866112616925 4.941330140972504 1.6991714908944122 +3.8480565398306785 1.585301383797753 2.653155083835489 2.8058472207033214 2.2679011849758477 +1.7285479259374217 3.5552228407691024 1.7757103139711488 1.2769749906296153 1.893535890133565 +4.3009937952783845 1.0572414261486527 1.0098455177907901 3.511396969217953 4.096301880522491 +4.058480808528461 3.226204183826575 2.0351150694146027 3.5852924108712045 1.759469854811563 +2.580279033649549 2.357163565406569 2.1703842722310793 4.13218477818638 1.9744471979102802 +3.977426967158298 3.376877149896016 4.28444806402773 4.885727539920206 0.8498217996399541 +3.327256064361044 1.664056013893454 4.72385819457407 2.45155312655986 2.8159553849445937 +4.831754171945796 4.913335419209029 1.2592464913710675 4.070909790204028 2.812846601915801 +4.7729453527986125 4.654228868655352 1.7361779498701022 2.5515087184739373 0.8239283135318616 +2.9006290505813603 1.7215107401834269 3.068014382479293 4.694540686227812 2.0089568951825467 +1.3604141566553838 4.863526380443506 4.5081456621871485 3.383192028967433 3.679309164686763 +3.015995725292516 2.770165215730841 4.332560047414621 3.0483166988297943 1.307560177512194 +2.7724511002279804 2.6816048317753354 3.223610199224174 2.483829874589041 0.7453374894697253 +1.7455805904558677 1.3163509711692143 4.271162529931088 4.193855754455699 0.4361357628163134 +1.071512373752057 3.287223883797494 4.009953832162512 3.9573549231387575 2.216335746446896 +2.0879502559846754 4.794649405867939 4.228840638255803 4.606291632100955 2.7328903272421075 +2.281002897125669 2.6843508485113134 4.545208637959995 4.503476494101038 0.405501099527561 +3.3529544764768726 2.5210498389847156 4.750527300495076 3.665281529814829 1.3674149731008214 +1.334405018225051 3.0984249971756874 3.12953954427522 1.7851996942498878 2.2178855061754508 +3.532188836841189 2.181504835057434 4.475920788307377 4.2338057203117625 1.372212439393077 +2.861151791795737 3.2115358957869296 3.2945604142731586 1.0778391956703235 2.244241961405621 +4.248172898087345 3.922096692235841 3.3984309412853437 3.800538436796939 0.5177027428642041 +2.500154654865764 1.3033695504041214 3.236090795905659 1.1134637056189205 2.4367684236874894 +2.0993621347784885 2.8346924212169355 2.6584339017359673 3.127036693294445 0.8719513784667391 +1.9693625730532642 2.5531260868155137 3.38428523179508 4.230597684021802 1.0281170199904563 +2.416891851506522 3.5825238826990953 1.7406047722116753 3.8698884635792936 2.4274569142347793 +3.431907079896339 4.869905510745655 4.858390954266378 2.857032240433197 2.46440179121853 +4.3557170407796075 4.500509151228906 3.2677684022876052 4.09802973074955 0.842792162272381 +3.273565810900671 1.149054067190367 2.6068693331429844 4.134005346960585 2.6164278231706883 +2.624756912141704 2.364392898501159 1.1339093714870208 2.8191748923263833 1.7052593044252777 +1.9849800004700198 2.368245338674041 1.9811081708699567 1.46132565669323 0.6458066130913511 +3.0434201266064993 4.632637465592254 1.9583221575517893 2.112251882815627 1.5966546623652733 +3.2849157756269 4.416369348800272 2.25943317500968 3.912115911338632 2.0028847733223554 +2.4851301273839193 1.916852796775684 3.6263014853433084 1.856952249297799 1.8583691354459289 +4.179265393319469 3.5779686344542694 2.2785000616408597 3.2786568212793155 1.166992431883039 +4.443221048515495 1.2026828038236337 2.688308037080829 1.4944691200042532 3.4534532681414962 +2.8717914558201323 2.8308941414314157 1.31825824712358 2.7123499450649913 1.3946914542626898 +3.4283399761613778 1.524138457899146 3.5901969730793164 3.907015585944311 1.9303775422465648 +3.1206226588698103 3.762356927074262 3.0391863064134235 4.757917219351591 1.8346277066688954 +2.4150919382423064 2.190291049911174 2.20062621344124 2.5262499634805575 0.3956845536334899 +1.6362913222864446 4.908704939781428 1.2790345071462341 4.6941531811297175 4.7298759435483415 +2.4987709209158204 2.1417474077272938 4.237711313540422 4.339975181165602 0.3713807851668399 +2.8409553022904572 4.4296002202105464 1.576849062637295 3.840368570038179 2.7653775936782425 +2.871943446308099 4.239254170683333 3.596934832977625 2.0030378956717576 2.100010967529587 +3.3361676021829285 4.597912461307899 2.610973838826213 1.98411271863029 1.408884293879941 +2.2708165478811133 4.645323992695508 1.5906112562016461 4.470360666698096 3.7324579398479014 +3.132843427981129 1.0286311156638228 2.6231855742931596 3.492920258414847 2.276872389061802 +1.481043396424091 2.171295603170502 2.259936540389739 2.026523266307553 0.7286493432619398 +4.2304208802324155 4.863526778201361 3.7682944528354585 4.994745458327692 1.3802192387138996 +1.527831870038682 4.747330857293403 1.3472824962542083 1.2334038934819875 3.2215123878550473 +1.7922320999149464 4.0621300156423725 2.5383768350520515 1.2492418184751921 2.610422501969429 +1.8695248454690097 2.51105530840672 2.3173268070508968 3.6605768361902333 1.4885838826414524 +3.580725146938513 1.0392656442912611 2.2632543428061327 4.369275673764205 3.300657851102781 +3.2774431766436276 4.1736017689928655 2.103236992435615 2.688985584332593 1.0706080681326198 +1.6561281879546423 4.652067087852451 4.920471147797329 1.0812388626122016 4.8698413148200945 +2.920727006399456 2.199329322835712 1.3830165570319326 1.8495753237068056 0.8591226342102238 +1.3590459376310449 2.9920777042420426 3.4184971588013324 3.039857766884268 1.67635334576931 +3.7132480031732134 4.828099815099894 3.4595333519498714 1.1571433186153666 2.558103678147988 +4.297977321267581 2.2946205240363007 4.642099238038287 2.0321156405599026 3.290205591770669 +1.3660635868928295 4.57655596402793 2.211807690349444 3.9749230386960153 3.662763578941158 +2.183908539799957 3.5711175143722866 2.9640737389241756 2.1806235689526177 1.5931550169278812 +1.4406214801524437 1.209213696357132 1.3532378718652698 2.7511642389859206 1.41695013684046 +4.902293975231252 2.268973840436141 4.41242629875704 3.942515746676475 2.6749188509698767 +4.974520213672735 1.0730411633410526 1.6370323998698404 2.1871586261309353 3.9400733045207774 +3.525665486127736 4.589747686098866 1.3997838649833922 2.143036013957968 1.2979578903996556 +1.610775739306335 3.0992470265289533 4.4596190403677385 3.1117810625951883 2.008037347066074 +4.397399843669766 3.365904697264506 1.2137766893142645 4.235103583208634 3.192553591848852 +3.767079465983933 1.8283952602830853 4.153919395708019 1.4957912807887386 3.290006310747482 +1.3177395507214462 1.1764408630200074 1.3255862673700496 4.235555088351261 2.9133973052484503 +4.552259865953482 1.8615570361993812 1.397261051434056 4.679093438900619 4.243855032570175 +3.7200186072411845 4.703611920983949 4.434105069416512 2.8556104450460524 1.8598658784992834 +2.967205136030635 4.931143302699011 1.7174474587542186 4.929869067779089 3.7651966371793493 +1.022797911068027 1.705186411975712 2.2853726073732092 1.210825697777488 1.2729120657346102 +1.3362732915242757 3.2872023717564445 2.0198781967358417 2.4874930145175704 2.0061874024887545 +1.8712270559065125 1.6710939717241948 4.841353618693574 2.5947289965499016 2.2555211025850608 +4.720854874704752 1.1186730479764657 3.9978873503801684 3.644897334773418 3.61943584884849 +3.5021314935564494 4.037361337405288 4.879001521399189 3.6944620331072144 1.2998479853696225 +1.6369620817344126 1.2074938940721878 3.2501359922488993 4.46403743787536 1.2876333499517196 +1.8301381948514486 2.975596859996631 1.7110339596613175 3.6573404054251974 2.2583587700757843 +3.279748055906464 4.464460579750575 3.090985271387875 4.363619017529203 1.7387180380874852 +4.362000394957173 3.7786323145556704 2.422928324926029 2.325092124550876 0.5915152063431514 +4.599814420779915 4.709891139529901 3.0015949607499413 2.5930984417974137 0.42306771326478726 +2.2519780694165448 3.1306739637377414 4.91975975732257 4.335565087111986 1.055172918245811 +3.2368890322023587 3.2521009469295747 3.2551613820596326 3.3431286131829205 0.08927281837808224 +2.6835259908440063 2.677284169656539 3.2167982691299857 4.573010036589115 1.3562261310439168 +3.6100720220448053 2.502215151156406 3.8150937144302532 3.1866625471499006 1.2736846463642333 +3.689679223631818 2.1634842475351825 4.0550014015408955 2.2241633848120927 2.3835349690243826 +2.786511119859052 3.0626712091267665 1.6941626732621669 1.46113246519058 0.3613412137830933 +4.828584964899413 1.8836700048256492 1.5661831975575131 1.6061498232783058 2.9451861491657474 +1.8241730779857863 1.4252759552834862 4.481112406737511 3.989541958933277 0.6330564111156517 +1.4678271923810415 3.4221967966695996 3.258904180060585 4.278857381858341 2.2045101687278534 +4.092588888193999 4.843746722680223 2.687614545920279 1.1741455114735184 1.6896232155540605 +4.1661127592289695 1.5254700363145588 2.1825778838160197 2.5547457414642953 2.666740126886634 +2.2599914504480685 4.5333952727997495 3.2181305952400345 3.2134126490163566 2.273408717872746 +4.38169626775098 3.8316527594031546 2.9642329475636773 2.188436615204194 0.9510035806336431 +1.2260045620545794 3.5436870703507997 1.07427366087476 3.2332566055430454 3.1674689524335986 +3.8989229194896784 2.862187226602057 4.1036228399879535 3.7787839622384807 1.0864350847633342 +3.1126950806330167 2.0111812475283224 4.350371743019584 4.7261782543493975 1.163857061016894 +2.652782500183842 2.475198737405219 3.982821123851494 3.7611429326269388 0.2840373448460691 +4.2954340132579425 3.8509307670405977 3.415755206630617 1.909266635608414 1.5706975999594182 +4.380968417202791 3.4193729861080677 1.2575387578363508 2.5817577371125413 1.6365273227714598 +1.2582209776498248 1.5107031736073266 4.26603834302251 3.136510650514911 1.1574022928165741 +3.86291307993594 1.1981895591961398 1.049439037952351 1.1613348828732022 2.667071825447239 +4.788441419805217 1.6257205256290077 4.065456811014837 4.1503821480000855 3.163860895697031 +2.8603968309032544 4.267304636282789 3.649828494325766 2.423834033420807 1.8661328974667106 +2.532107704116664 3.056788658408331 4.661989752495089 4.542230003502634 0.5381751585451992 +4.142542037865958 2.335469626099066 4.342299317397277 4.289858307233963 1.8078331673348513 +1.8242134003391994 2.023540033119665 4.769500823785915 3.7154376328954126 1.0727442924228803 +3.7286254094123277 4.639808763657588 3.650741913073709 1.1056359074632955 2.703297927504077 +1.148361966837519 1.5705327369363897 3.3980421055955015 1.6429769103860434 1.8051265879603808 +4.041893247778169 2.9364139118738892 2.5482653056728966 1.6253582988549797 1.4400839924618887 +1.4905469443173636 3.4848021905043938 1.164873566019851 1.7908604182683465 2.0901946144157177 +2.7218745061315595 4.303723558072838 2.2609532585842884 3.1902343522638255 1.8346143393633876 +2.400855470444866 2.114419225063144 3.398020340727744 2.892907363343632 0.5806761942685618 +2.434931789307364 2.202008473357297 4.77712889677878 3.665249881770317 1.136014179105774 +4.523281389434699 1.0166583061948566 3.6171661939153017 4.300758133315915 3.5726325570262594 +2.6770879323666636 1.5167537737600658 3.771938882236392 1.701258683884022 2.3736242001373955 +3.2993994647392464 3.32214208658952 4.9458976334894125 1.5908173129576375 3.3551574007888543 +1.9195636867834027 3.3867993359162574 4.609865692476722 2.130005635187366 2.881403538872242 +2.6675146571198955 2.650069882031167 3.1984934002085157 3.024187584583076 0.17517658958532686 +3.2607828085288957 1.3760815268966233 1.4790206570440998 4.256828025360105 3.3568307518337916 +4.004263577812425 3.052272040642083 4.391872326019165 3.671933646308451 1.19356591329828 +2.0524664683284173 4.374822751103939 2.1625973411129458 1.502868207454556 2.4142454792221497 +3.6014537658903767 3.5010112793567383 3.6100679343781272 3.3893312098919424 0.2425147307648548 +1.6882133530028702 2.8656170316720218 2.603297796553214 2.2129389342545265 1.2404271296286518 +2.0622671195338076 1.9742672157941321 2.4268879260459406 1.7656454961096144 0.6670723605474067 +4.78158828832807 2.9344715290404046 3.056191463461365 4.999148830346469 2.68084383207498 +1.878021560267161 1.0639497318614528 2.182221789362669 1.5874620742528989 1.0081924719622082 +2.862537865868063 3.5161580932595444 1.931183786724623 1.2193371057844873 0.9664083499332874 +2.550203795759987 3.176493675779965 1.820043188331958 3.12138856244687 1.4442087094827112 +4.815443400687213 4.698493418142618 3.6301023064083418 4.255820607158665 0.6365537607390696 +1.7353717271794666 1.1729034178750295 2.987100012164571 3.58173048549828 0.8185083987283593 +2.3167506272523464 1.9076265488620727 3.9603984610230776 2.6043345697507547 1.416436298861098 +2.004669765589705 1.0770130787956034 1.6147729924893581 4.743047480753867 3.2629201955426956 +1.2582239243575524 3.5075554641482767 2.474686890603315 3.653167201305152 2.5393519288608286 +2.179188485069397 3.3271187295899765 2.138386714444118 2.116175320336361 1.148145109432291 +1.3607414010023842 4.694447181209016 1.7148981901948388 1.9012052893505693 3.3389076902752093 +3.6313009358206094 3.213212696654983 4.220056001843463 2.2823939947428036 1.9822542292778615 +1.0026075922210258 4.545725266421824 1.9031832602776104 3.3877646503823335 3.8415706107111123 +4.811291776716093 1.7166088888851534 4.073397226458702 3.4189075682993044 3.163134345688031 +1.3558711418000544 3.3514111288177735 1.061486302720677 1.1343947425122956 1.9968714230965214 +1.0990842782378492 4.370976790016231 3.785093846514875 1.18183074180625 4.181179187857014 +1.4746256616522646 3.489508194830395 4.6594752823456735 1.1808057695594791 4.020061343026305 +4.7277615443039736 2.2287332317838913 1.334605801273856 4.627353194034264 4.13368212364079 +4.183307292028245 3.089958933943484 4.137477802567677 3.829819871897313 1.135809858396648 +1.0655786507347087 2.791700314486828 1.2001232230181604 1.0783806589448712 1.7304095613413386 +4.056761283419286 2.070453042051521 1.4460672001844075 2.030336284692961 2.070456662873668 +1.6050544274937009 3.699068509614307 1.706163933026184 2.9071056140675196 2.4139502682080662 +2.296362238916015 2.0925219252892653 3.50802228756983 2.5171967636468375 1.0115760437637522 +1.082757537020346 1.217047147214279 2.9835949387218306 4.942093621833023 1.9630972444467223 +2.2347738083752526 1.5422484796733005 4.0616005954494705 1.3978576082925307 2.7522932315655475 +4.006795531611894 2.016569104882437 4.359218970227722 1.406640300306674 3.560719313807963 +1.7404299314056884 2.7629674319450235 3.2795487315673872 2.2110077313432175 1.4789735660819971 +4.258819422183189 1.5586889607501835 4.90226510816112 3.3477724939634115 3.1156302406340903 +2.084730689241238 3.9080716954591104 1.3624785421357823 2.6402747982348815 2.2265075111161154 +4.238968968759072 3.5142978613880067 1.532676343467183 4.359430133290811 2.9181646975694586 +1.5798917311823635 4.274527866883989 1.8787765331504276 1.7278220962345454 2.6988610830966415 +1.9340103467763803 2.8493339748302255 1.1759229607431059 4.470068306689094 3.4189488010631672 +3.346559484420676 1.5292214257730055 4.135343293316603 1.5921384121225066 3.125797288235237 +4.710195382204796 2.7362654274448364 3.477301288307006 2.1331146062288133 2.3881451594438388 +3.9617512975193514 4.217043214565878 4.065225672206979 2.7141969559545265 1.3749372913147857 +4.583068768879128 2.457519065055268 2.4083756007718935 2.598759683556506 2.13405895944874 +3.0666733741292744 3.984837745119139 4.793010758521964 2.90627281833272 2.0982864120764746 +3.5042108624394066 2.2085633991103366 3.490478752924219 3.46806590774765 1.2958413038871552 +4.8124500613942605 1.5737264599482343 4.870726146362858 4.220042649463295 3.3034405669999516 +4.913131091531532 3.760169805187521 3.4556431726760746 2.93761765975344 1.2639897783790794 +1.87742003733773 2.875017909940883 3.7503669373589075 4.3107652272481385 1.1442236489135813 +1.337953083510401 4.004681636355234 3.5388639503949015 1.200781978911392 3.5465572714865488 +2.353928361583937 2.345107904901514 3.650648332760534 2.9074793054885024 0.7432213691441765 +3.7146858698623446 3.478703302576914 4.770517512595395 3.4487111978944243 1.3427061129100386 +3.271202514751418 2.8360281388178654 1.0489399946748952 3.8985317629931937 2.8826290055323742 +4.017471606530693 4.8674749374802335 2.069467218119616 2.3306806742996016 0.8892345766527568 +3.675539183980456 3.893571258922202 3.9350204751321165 1.8957302752383929 2.0509126029857994 +2.52400646466745 2.2369082681847807 2.341680529372286 1.933664080095863 0.4989015908009727 +4.2840593449527615 1.896813139584994 4.4825906946009635 4.612739640458958 2.3907913319967413 +1.4514139180155414 3.9769264461584677 4.792436783290352 4.268339358567787 2.5793199957368023 +2.9116452129644275 4.724101069139206 3.979195425674604 2.734272464360911 2.1988245519341243 +2.258086818674749 4.45657256470129 2.887514616161815 4.452481508680764 2.6986035185188455 +2.3773568283118998 3.6755722996004483 3.2084842192776044 3.6880051677837136 1.3839449952758769 +3.394688234389525 2.8926612134836014 2.3117872458140716 1.6427526764488696 0.8364438921561673 +3.8736900641985654 2.8451070648916086 1.091928619088319 4.580642707786937 3.63718421023015 +4.829727650581179 2.441615433219361 4.535465635600328 4.835480145537488 2.406883601025528 +1.0898452091906816 1.4117075339514153 2.3825026105387686 1.576942884190407 0.8674801604733282 +3.5323310566003983 3.1173444044889225 4.242717077705228 4.022695221845284 0.46970579992879047 +3.684516384893198 1.6189474330795832 2.1023436872101886 2.6428669951463886 2.1351207322113397 +4.808765145363828 4.935601726177662 4.178654488184982 4.400149699788438 0.255240371014861 +3.9116039358237154 1.745544650438592 2.366387416250492 3.784915883833977 2.5892152944758884 +3.9243659686277548 2.5146181731954567 4.074984044374515 2.8123978118494293 1.892488531349164 +4.177390143504425 1.3760006693097209 2.381216206905738 4.582899868890863 3.5630315650553968 +2.599510153945232 2.64079418207986 1.5939007710012927 2.8515119878330943 1.2582886567398537 +2.941809491119723 4.577309046949862 3.3221052348300972 4.660127023855422 2.1130927819258467 +1.5325677338041341 2.9131718222196388 1.9907490723694528 2.2287953595784753 1.4009759754555418 +1.9183442905151527 2.358195328373467 2.2865169968036785 3.1969702815574457 1.0111350647781732 +4.824623330412603 4.149955390751387 1.0848666348959712 3.080451354963552 2.106545799116154 +1.4034758292597913 3.624197744249157 1.1973482934921034 3.893215976579068 3.492750834002723 +2.6953688634011304 1.6716580208324703 4.969457049236822 1.4829227233738673 3.633717861173771 +1.8502313813986566 3.9255760617089734 2.2058633475944425 1.9652598354497486 2.089245220683463 +3.5931626220169326 4.099386964852979 2.351471114632786 4.917843562097687 2.6158231255929314 +3.683634974434981 1.2404725623928083 3.67462936330354 1.296558648272656 3.4094373285489827 +4.415045959070104 2.938896314228448 4.7278208659941985 3.648333861626029 1.8287454624867598 +4.86906206234964 2.078949782489345 3.922369091252152 1.2281677915483975 3.8785882969906216 +3.495910813571592 3.3276765906205283 2.6560529078181334 1.7143749991736352 0.9565877050229238 +2.8770977035198593 3.856029033544059 2.8007791925468766 4.396004261759549 1.87164354788713 +2.2872894911064465 4.071439018341256 3.857758559040358 1.4208383944013785 3.020226717376738 +3.4576024227627498 4.317865044578422 3.8649850828477037 2.545113040923972 1.5754726229119616 +3.319636942951188 4.47854376468586 2.8667442771177365 4.071719451541407 1.6718343794887438 +1.893231211130404 2.1796897836541023 1.143253430344369 3.787914314454852 2.6601296407724866 +2.5665812299116095 3.2222450227975945 3.2813624652608557 4.425402344024338 1.3186061783196676 +3.1097164006559677 2.0688726272763485 4.00465913954388 2.678369398349765 1.685941943893643 +1.1300193070791908 2.512600009396592 2.1608416954756295 1.6157087513001707 1.486169346086065 +3.809865825007087 1.2860181600770986 4.280265121549487 3.3865210098372223 2.6774214410497463 +4.243380222087909 1.998049038367816 2.6426847606214334 3.9189722811919148 2.58271600447084 +2.7560647111382446 1.242228718054304 4.580268399513717 2.167990476167169 2.8479438536287143 +4.932926249300154 4.662221456719625 2.982542629358531 4.380805057852159 1.424225720756006 +1.9877638129958624 3.8649570488186926 3.824710595193749 1.373818270913493 3.0871876570488657 +3.235119873396656 3.104446038910984 4.222903715145778 4.519874270288266 0.32444901238996937 +3.4443469916218974 4.248852714082645 1.2743139548136924 3.8358597374853804 2.684910846600907 +1.2889301607955104 3.242054846440832 3.823023381304508 4.855397730593285 2.2091837485249077 +3.497839716996843 4.837923177906706 1.9846654171880522 3.2655506076200163 1.853777374247535 +3.348628703690743 1.4854921152365521 3.0608026373226402 2.0676544526624054 2.111307950994038 +1.5291869745101851 3.1212888490427764 4.380199412595613 2.5726092991164586 2.4087694778118087 +4.156902033157387 2.536719687268804 3.0142744572453557 2.2903319915257554 1.7745657292986379 +1.7655203002561617 2.776247376705194 4.718768726892593 4.3810272873214835 1.0656634098395108 +1.8692620828982291 4.97046502732735 4.245373576150605 3.7268149571540663 3.1442586954434026 +3.7426215749350042 3.672389657206627 2.8669910202484123 3.6155618975940023 0.7518582849698152 +2.974921051218046 1.8012732156768756 2.467442363316468 4.966365897059149 2.7608093141981906 +1.7525868045799315 1.2316795664625984 2.9407471029386207 2.259336292527666 0.8577091833879024 +4.630672395781673 2.2195454425751038 4.25447718498534 4.866227936689992 2.487523299728145 +4.159801117234978 3.695481030088537 4.673443359708358 1.4365155963215033 3.270060318818646 +1.4418325987959744 4.693004524303943 4.551866080055473 2.6839325311936784 3.7495725932664126 +1.0997461346112303 1.393698833116496 2.7276621693998604 1.6559383328245145 1.1113056154102283 +2.3580857114891045 1.4854315364980222 4.727584766409622 4.444214640676483 0.9175096387980791 +4.284517348240878 3.2664496134543195 1.3447335501210858 1.3141668895373728 1.0185265010556546 +3.4912844730073727 3.2885925310343986 4.856209846979764 4.421599925710128 0.4795516729266776 +2.175901841615051 2.3771076696557123 3.7651241574898986 4.700823867022468 0.957088152500522 +2.4416505918320004 1.595124810519796 2.647453290376835 1.4387328644554036 1.4756730554109623 +3.46360748181625 4.296068562783956 3.9726799979153014 4.632355617766498 1.0621503541175243 +4.526800957125098 3.249390408251391 4.537034734837926 1.4567243710332805 3.3346798418643027 +1.440181619058937 4.040372658753862 1.0718303134845284 3.0554228476030887 3.2704178302352536 +1.8633938207766794 4.712228100020621 2.379935618968697 3.6698214623892293 3.1272451518312483 +4.036072024047 1.5571833247225442 1.214140180613592 1.7008251817086202 2.5262128718556873 +4.358190338777627 2.8992847417857868 1.0774024869889383 2.816756708464727 2.2701891217913466 +4.793157745745826 2.6626225823772556 3.814110637292539 4.57007158388087 2.2606762340319024 +2.2614221175373452 3.9119460900303875 4.563128143555959 4.529889785579277 1.650858616664431 +4.612188815624276 3.7370228421913305 3.4974197133003027 2.9930565925099804 1.010097836186272 +1.3962116111781038 4.507290758274956 2.5389205470932077 2.9306581420304454 3.1356453566671227 +4.799508630210525 2.9956809248630463 4.405143393200266 3.3801499861688193 2.0747062141510746 +3.8692650148868037 2.1844909783885123 4.249727071839671 1.66174327675217 3.0880614756986704 +1.407208362662212 3.434751532658247 1.598668578605376 1.451310652749422 2.032890962277648 +2.655192687717634 4.487936726155305 3.970675788787422 2.6777372126247174 2.2429090200359143 +1.6687041909204874 4.289741002831008 1.6222914902354257 2.5466449111239413 2.779255874527994 +1.5278275314790797 4.046062254541496 4.60883056266022 1.3707430621135899 4.102038125326674 +4.124014263191154 2.392829695926963 2.406850534049 4.482315530582319 2.7026940185246193 +3.6665429760536563 4.087111586915957 2.3014263474825656 3.882613814273457 1.6361637331206318 +4.70176648461575 2.677951478382634 2.9800884283468365 3.7109587769942762 2.1517431645032308 +2.2114717238570063 3.8461161117889047 3.314533604671097 1.810230556165803 2.221483724167155 +3.146669934796875 3.0152540992721235 3.08556131299292 2.425772423512795 0.6727492107078872 +1.6936435952811117 3.9329098520642085 2.830181842475816 1.1423227226659374 2.804136547512043 +1.1520521338853151 2.6594571334698425 2.267819095050243 2.6618758130680953 1.5580598607843763 +4.104567573394393 3.271364306236061 4.492649412095254 2.646207433696197 2.0257284279975787 +3.354626454869485 2.377229354677313 1.7352993255089526 1.0438102430681666 1.1972728354885809 +1.6436535910484973 1.2741953835021937 1.2674694929757093 1.3583984181508 0.3804831619885757 +4.490312713593767 4.037534579311227 1.0237793689844121 2.271561245519073 1.327391295094531 +2.9206888970574503 2.424307468278622 1.9875169070097973 1.833284377996799 0.5197905307354651 +2.7227733150924562 3.900479217102589 2.218246242554895 3.1982365980124308 1.5321136669383535 +3.925288989205294 3.094529931754653 3.515373486474886 2.68844851749439 1.1721627514384132 +2.1676855286496357 1.0718342388300028 4.498477333707487 1.855960604591846 2.8607314996439945 +4.84453256824831 1.3279989961209266 3.7600546895569864 3.3760688826447787 3.5374360013728863 +2.19056604526735 1.859967195541449 1.7273497327840666 2.049534119430104 0.4616257991475045 +4.243677744053917 2.312730331080865 4.5885599069752585 3.2666146518953 2.3401062303014664 +4.3857316529807076 4.933751614146424 3.0187083827897574 4.77267985427561 1.8375913040233736 +3.6331924324870672 1.2895807779068957 2.1303907417516106 4.8519634340634825 3.591583704582381 +1.5964939440255859 1.312287904303696 3.4001728028720897 3.490753340903305 0.2982916473594675 +1.9812509231291826 1.2723139713000768 2.7493204015924197 1.3212593657108487 1.5943493732152592 +2.9915850960709527 1.374969680106497 4.822621373666083 4.050751179009046 1.791432108826294 +1.2066478610465925 2.229597293374022 3.7469349576097466 2.458811057670071 1.6448977848774708 +1.0371808020603583 1.506907019068795 3.271580352117585 1.3786059809098883 1.950383215933277 +2.6392801014912957 1.1668294629258478 2.795420120490032 2.5700231797884197 1.4896021830977026 +4.034170936718863 4.1830507001519734 3.8307052314542176 2.030266531661984 1.806583708458993 +4.738019838655456 4.284132773979586 3.9004306585920063 4.329577278076338 0.6246441294808648 +1.2465310675550776 3.911627934416078 4.270588826860646 2.0733105926327795 3.4540950983381817 +4.188281909693786 2.3267164082836973 1.5840204824966455 4.970702388121161 3.8645880046810546 +4.295162714162929 3.050807829399451 4.74189421398779 2.022370737874596 2.9906900568874604 +4.993101951392855 2.676643781955168 1.507439516258041 2.4532824179353407 2.502118551429555 +1.6719804744765359 1.1186188696361423 2.8208890944322254 1.9212257571643243 1.056221182392946 +1.853776992058251 1.998641062874285 1.7570159393148335 2.1851094947694696 0.4519399199397908 +1.9128527607679846 3.7599133573055665 4.754912686545085 1.0285832646757274 4.158985910960866 +3.4047461313733676 3.6677189153215153 1.5265393318986384 2.3058005615610697 0.8224370791449298 +2.1236474846715043 1.9623990741091006 3.093191264915094 2.157120132257491 0.9498579974416117 +4.838508121545319 2.586776944683466 3.5045368484330863 3.6787311141020425 2.258458973513491 +4.27481739747793 2.93207677080255 2.5660724459159674 2.150572719885061 1.4055576874879063 +3.7077088054846197 4.0287170354366815 1.7352235401472171 4.237406872150753 2.522690569739633 +2.22272810301488 4.116570331316454 2.3588732271467534 3.134994310230279 2.0467052355688677 +1.2308147380530454 4.8480147944587655 3.6436576774555545 2.519068219863569 3.787985968319917 +2.047758795472783 4.648242833738241 4.83697532797596 2.2010904175354074 3.7027566074968554 +4.254495617847358 4.698644545023919 4.668809699991273 3.6103411545287574 1.147878012353937 +2.178673996939234 2.0675733507984244 4.3249720669225695 4.5706106551366315 0.2695953812525409 +2.3764185047529023 1.390893710457938 2.5785154559040047 3.065546049107573 1.0992988305671718 +3.5913817000891 1.0930938942973154 2.9205697677570712 3.4136063449554928 2.5464734491102523 +1.8586059847956662 4.624382789235922 1.2517688572268848 2.201449010959521 2.924280035559761 +2.7839971764204567 1.369033650104773 3.2328174529139466 1.1704678027144766 2.501081338237841 +1.5345928700017475 2.0456852234779106 4.027009842732422 3.7958958575465878 0.5609180581246082 +1.7268028276070266 2.734480019390186 2.4138403741326004 4.681582614945166 2.4815455251930376 +4.7609114187530865 1.8805391143141392 2.2789342516642708 1.114992473540672 3.106654965560298 +3.1229184913985244 1.717232046431557 1.1958907539512982 2.433044514270976 1.8725661025013216 +2.0186807928792745 3.7882608304080745 2.5490383349410055 3.4474526592917134 1.9845810155846417 +4.772387455827204 4.658155731702832 1.7220120379849173 4.284854790783278 2.565387273369755 +3.302870837484943 1.803366315414722 4.085122771160657 4.465764857056543 1.5470624451728552 +1.7340510616565479 2.736216826918522 4.67862088550878 1.966015895553975 2.8918094772288896 +2.059779679072753 4.811455053983039 2.9612727816763584 2.849562572343439 2.753942000071328 +2.3240426445308717 1.5425037247081828 3.5725391623279354 4.7499502862506215 1.4131878990192699 +2.538264415760502 3.3207797975469138 2.9736751700868727 2.801603489677137 0.8012109497076062 +3.453095023908481 2.4594095873844 3.631472317168135 3.134848896166583 1.11087603675988 +3.79673754945014 3.222823755254891 2.2170698707723213 2.2043787640768913 0.5740540979356746 +1.5897370303577265 4.42251653713096 1.422224324207125 2.9586898348073563 3.222633395106932 +3.9697408636336355 4.989882729514951 2.6370058061268917 3.1370490699598066 1.1361041731410402 +3.099018125932706 3.977590993586864 4.8865633183632315 3.0518638887134344 2.0342104809815873 +1.1174823246648797 1.9035737820496283 2.738145643257731 4.718545044462226 2.1307091701272607 +4.163189406128616 3.822079587318333 4.617135546119743 4.491800396902296 0.3634072207842654 +1.6047418281486383 4.03050054138049 4.175242836865096 1.3860016927984846 3.6965080135952997 +2.89645513326744 2.4442307215716763 3.2219597069577812 1.162154968350051 2.1088628404247727 +3.0228867782346365 2.1701220683970925 4.491785324154211 1.7128731937592256 2.9068127354201385 +3.818263945951856 4.886827178561312 1.3829306176806 4.9810303770490485 3.7534183433840753 +1.559261423677484 4.233569051847028 3.799993162228929 2.7708775517673243 2.8654842923634347 +4.381940302839917 3.2335074271713413 2.317709174226024 1.0138049327154892 1.7375454932017054 +2.5198095425122236 2.50418628382184 2.0373333128505173 3.0670566626996325 1.0298418633152324 +4.837576175551432 3.281884082486939 2.507376191207015 3.8983242200995516 2.0868431439625303 +2.2787779537389907 1.613362078512273 3.1904787152145606 1.4285557315530468 1.8833881403891313 +4.075171444484534 1.095155420855086 3.143828862038919 1.9134773740939957 3.2240130714649022 +1.779344878553371 1.329399752320961 4.162716845531699 1.3683670055260895 2.8303430260234674 +2.151407235214607 2.3032350744666443 3.637722139203431 3.8680241402502182 0.2758454358116095 +3.1493855441487737 4.711999163599896 1.5126480385058474 3.3531832227897675 2.4144007720925664 +1.8959959960341033 3.5573927120909365 3.415208214165856 4.379333271716456 1.920879010953417 +4.528296314890806 2.9890489384725423 2.9620635657922354 1.5772458684949848 2.0705077977535287 +4.114987210663093 3.1330981148620283 4.294980691061622 1.6598532980908183 2.8121170981376538 +2.547440288742755 1.0746664944527753 4.482695677206806 4.569600903636701 1.4753356118280798 +2.838275268338138 1.38654304560233 1.2195209116622312 1.6539614197784052 1.5153431959862058 +3.1078641613551827 2.1476268577487905 1.9513790139409974 3.179943465102371 1.5593031423987838 +1.5053951535624934 1.1884282180001629 4.696104275257784 1.3697790722474927 3.341393032018417 +1.1672529647409182 1.3273716640319995 3.2638835678572047 4.233536507606651 0.9827842191587179 +3.7677015438428416 3.4210172271103634 2.5008856320643877 1.523374758099898 1.0371680308354505 +4.782485359322348 1.8000459508466808 2.539964309656028 1.3470675375035563 3.212156212614896 +4.089408142346727 3.5019600376558375 4.694214448123056 3.6186192083234046 1.2255612573774464 +1.9469429991746852 4.337482014588588 1.5962913917924308 1.3097172210056622 2.407654779983666 +2.267960562259734 1.2913143252197967 2.340652227692767 4.843547104788423 2.686693253446688 +3.807741008768714 2.903008479004534 4.981916859889765 3.2849689392359105 1.9230634924060444 +4.566536835522552 2.8192251512877697 2.6419673350822364 3.005024684679531 1.7846312675059806 +3.331103557055495 3.3639911870146983 3.8310707470787833 1.9483827507689448 1.8829752222622282 +1.695546372692232 4.545734915916523 1.9010548245036278 2.364414803982937 2.8876075222422575 +1.7104571311891923 2.4718621114639876 1.445338764421233 3.47082220932355 2.1638670776091167 +2.9723512545878235 2.8177111718343233 1.963020179795687 3.951431768213304 1.9944157540862637 +4.197021982085053 1.149690581693124 3.4932462995263456 2.7973562807580343 3.1257785561418125 +1.706678435412715 1.238881839048371 2.960281303994915 2.8257631754855868 0.48675330760839947 +2.7819378468413505 1.5727059039546512 2.1581622324698793 2.961737473643556 1.45188672420574 +4.875234860683431 3.469244330162543 3.5065005229555504 2.2811093035338303 1.8650450430352234 +3.2726949650932 1.8162999251834995 3.3395080179184387 1.7989090108517507 2.120031087708018 +4.395894303998098 2.477476951065149 4.310294533268884 1.4620128691541394 3.4340986558581164 +3.417096872223242 2.2443933048892175 3.5680909424207186 1.4594888660817817 2.412765295916456 +1.0537023599033417 3.319222830228826 3.3373631011204927 1.2184094490387563 3.1020231432299683 +2.884056985159686 3.863801833427693 3.7317223243152915 4.254455959127483 1.1104730616596092 +1.5143008065817267 3.526438246300485 3.289876249267385 1.3471583100862272 2.796935835433885 +4.709950127028734 2.918603467975958 2.384166157918144 4.154678149193057 2.5186574924248433 +2.2481530929683102 2.5438285830593674 2.4533945095204106 2.799420629728262 0.455146208713953 +1.6311970990592841 4.6331298179813505 1.0300375739279097 4.843636043312202 4.853363095279916 +4.8382797219790366 1.7595228342927127 3.1951929860922994 1.1496700583776023 3.696337108717559 +4.208056886869419 4.642970651137194 2.6930648670345723 1.6455052641443446 1.134253544828976 +1.7406300372785806 4.477166466901621 4.671207329809166 4.845263860759602 2.7420662476717292 +2.9420676968833543 1.8882023423464274 2.796265870835415 2.9508385961560912 1.0651407948746983 +3.644449135435604 4.721652849804503 3.382178235334143 3.0854219631535216 1.1173325947669708 +1.0293824719117897 1.2622801633758005 2.6224696764463618 1.8691774835334178 0.7884735015159721 +2.6374414622147424 2.5113389189512354 4.425321156202122 3.0184542013601767 1.412507161059289 +3.398007687673992 3.9323695776316985 2.318856524473207 1.6059062114417015 0.8909774286091052 +3.763634482590597 3.307155355220409 1.4360034881342338 3.4973990755118414 2.111332508484753 +2.0153993672728556 1.0885131258246172 3.3636544991813193 2.9423446552656096 1.0181454165129467 +4.09068572591667 1.109118108128032 1.1635917330130674 2.3301496018167214 3.2016562464939198 +1.032596011807914 3.190802464717337 2.5218076749669818 2.9811711358486264 2.206551581670602 +1.3939198235352506 4.203189307415176 2.7275627934611264 4.709224169028414 3.4378738837360245 +1.9060706066238762 4.254758097630092 2.527253935469302 2.6874818351971372 2.354146535426431 +3.2871558079336376 4.722084436183538 2.1214588486554202 3.5976861727994214 2.0587052437686406 +2.511988626842652 4.975679023806352 2.4884186167492492 1.9578961944641589 2.5201635686277175 +2.4794792370742336 3.01075552845319 3.2931891715982644 3.649257557449929 0.6395617196052213 +4.290685345686226 4.583298796640905 2.4850738927067226 3.0910033361241944 0.6728841817726239 +3.653071837471268 2.08646183231944 3.8539696138523114 1.1916207916074706 3.0890723784900707 +2.1844228160200725 1.1035957280787576 4.855281255714967 4.167110014067243 1.2813145015407708 +2.404640785987473 3.6717881883876244 4.589555647204612 3.556820857874765 1.6346876412641087 +2.0387516609029657 1.1209341894310092 1.6230750164711276 1.817315589085844 0.9381462098142637 +3.1814378387823363 2.4001917729587374 3.2276395463632035 4.882280144783618 1.829803520956804 +1.0182588098807317 3.320633744657562 2.3445255413333026 3.8887127357784332 2.7722634131295925 +4.218380830874469 4.874191023046491 4.989565218431419 3.1410057835646286 1.9614430892564112 +2.0118827840344085 1.5278074458547222 2.501546240611353 3.7109132834173875 1.3026502129348425 +4.5906838289654655 2.4382449265321373 2.0382986204477973 2.914973995847942 2.3241241237380965 +3.5635043708573972 3.323093076547307 2.222806593369866 2.5107963510489535 0.37514755891503876 +2.0148056483797867 1.674411576967192 1.1702973617426098 1.1882660071130156 0.3408680038802265 +1.2208852815330076 1.5563875791969517 1.2903892042601153 1.1289077400001397 0.3723413152435968 +2.4517325496248397 4.732037351870467 4.14101139400371 2.8232870360547206 2.6336642676462287 +2.6995535226978147 3.520353996409659 3.8126766115264052 1.7392248543196414 2.230003499349139 +2.6742212785286594 1.0714715252689988 3.159131134114721 2.8783756683515045 1.627154080943112 +3.4170278363367004 3.8093890160181387 2.7716840170906862 2.3558061611037853 0.5717531691396834 +2.5367304214481408 1.8570173155496175 3.937402760619227 3.7303777505860243 0.7105415266608031 +2.838982134886541 2.4990320799717978 3.9344151058020462 4.281079644527599 0.48553304959223686 +4.836164519534792 3.353886368723052 3.4950188453033184 2.0924143312229337 2.040697904956181 +2.6739842736526462 3.5604217951513704 1.284525513436983 2.1975903643743337 1.272579624832194 +2.904154746973536 2.3917279467349086 1.7059864506223241 3.3578741134604564 1.729541579794954 +2.7212722757294756 3.6665048653850354 3.6975083527561847 1.2316122639647555 2.6408536819111776 +1.4690613839999358 4.418654520162079 4.916965962946639 4.397773336031553 2.9949391734620945 +4.768498657854675 4.7704013407767265 3.0256467655847854 4.488240865743844 1.4625953377549061 +3.9161720880387443 1.8416529551986032 1.3892973750451412 3.6679616980584955 3.08154843049622 +3.795142471970884 3.188448272802311 1.2194260897799492 2.3429048109590798 1.2768250813040487 +3.834201512145886 1.9231756787970142 4.124162532321474 3.0264871116075103 2.203840072456785 +2.136592935890781 1.1094330465529096 1.867344365544589 3.296467726352011 1.759957675249632 +3.8745501160165996 3.0283295688851144 1.5370417741592326 3.2770597632910388 1.9348777265992299 +1.3599662280581994 1.0463653876539154 2.629205216595857 4.414129477918724 1.8122638068893988 +3.4565932192884166 3.8432076375400115 1.745877053649152 2.195935311738802 0.5933153833120368 +1.842154554187795 2.827352216299654 3.7908536158026513 3.372565346376071 1.0703174808301301 +4.835499863444334 4.575419768962246 1.418036867962047 3.2209391165007037 1.8215647595766549 +3.066412176751144 3.083779762878011 3.263761912880364 1.9677918705952808 1.2960864105252683 +3.873004541717128 4.250030910019985 3.1473671391468647 1.530348117557709 1.660391338985118 +4.864546810968182 3.554956945848616 2.813260519263045 1.9445542489283487 1.5715203463343075 +2.7097618750980796 4.437599751112464 3.2635124493752885 2.2973987583639053 1.979595764228025 +2.2514773828045507 4.24407393491688 1.7278197474384274 2.284565594290882 2.0689144393805656 +3.9335005886077665 2.8385901064519654 4.104404854275755 4.3476524524837075 1.1216052594244492 +2.524740347938509 4.1884621533291035 3.3040095416852906 4.453829879879328 2.0223889477192043 +2.5287218760695835 3.6493185733887312 4.791176102505869 1.0745884779021107 3.88185014257382 +1.723462372445082 2.5675805393040725 4.290482759173984 4.901147298592255 1.041847714075484 +2.6694209364871475 3.182008421626458 1.6767805414138013 1.4119615247737913 0.5769532403025609 +2.9368860019614615 2.260418061577976 4.292144199136523 4.822095383399375 0.8593352850129423 +3.6976854849037304 1.5110539158221883 2.6288192151365153 2.612629202732453 2.186691504397831 +1.8786929797010816 3.5770552876476396 1.638436420929335 2.186265721322348 1.784531162917212 +3.5128179265805226 1.8730742481251625 3.461036988236165 3.381356353850382 1.6416785113201782 +4.593442182463953 1.2219133302538885 4.775497622097214 1.7058058330611847 4.559628765695748 +2.81371118312469 3.806532856463779 4.6314972725022105 2.8769646880067183 2.015956216069253 +2.5835138796932178 1.2150361608520277 4.872626683773307 1.766786073312899 3.3939618684584345 +4.248794312884371 4.653460689735194 2.542043895530832 1.2603832623091753 1.3440271036343394 +4.870387491647571 4.70253773075626 4.934805917727594 2.2525071050354795 2.687545434555628 +2.5502426092303736 1.8702975770241532 4.752556751809282 4.495221562517781 0.7270121363977432 +1.6292202083196337 3.8418897799472136 2.4182206187340913 4.0786325874314 2.766382934266305 +4.660157422629861 1.9704027161959203 1.1064837521178537 4.394604211814415 4.248119176560217 +2.624338854464179 2.6648372285770283 1.357683217396668 1.0519375395734762 0.3084161763159437 +4.213942138087495 1.3779719777913586 1.3180700483035799 2.4340557023081066 3.0476467528297966 +3.778526235029236 3.4756356414911806 1.0421932005852645 3.3053416724775633 2.283327334720601 +3.899538099578253 1.0299788963658334 2.2871247876825893 1.229523404726677 3.058249614725939 +2.2673967084840623 1.768947815453477 4.318684982660001 4.405245350092332 0.5059090789592889 +1.3631958542554181 3.0951289917707094 2.482881107400001 1.693724342907153 1.9032500602307572 +1.2689172449085997 2.294453094364962 4.020970473931833 4.351841614845695 1.0775896669928788 +1.5826557146297238 1.9130744036898055 1.6749846153791745 4.476745331474491 2.8211769920256904 +1.4793929625043032 3.1999880080247594 2.0242401761954776 4.6513776633709565 3.1404296978585955 +2.4242007648984747 4.893295515509752 4.443549628786732 2.943002562401763 2.8893027508263485 +1.547822632958264 1.3038567449447416 1.9151862162979438 1.9423470514986327 0.2454731461545755 +2.7671114916315274 1.44604201832203 1.2147825464130957 3.2153914154819905 2.3974278717632687 +1.0040830344112828 2.388450381155615 4.048510260509422 2.1064332176207454 2.384981381740153 +1.5097836323780527 1.647955374631151 2.4731800706133997 3.5657947180315146 1.101316574882022 +2.4933769939565855 3.904053374065452 1.8324345356512395 2.182551213135255 1.4534749867987071 +3.546006151254349 3.1739657997711292 4.422894172969379 3.8816602223763055 0.6567710502194374 +1.0534048759665944 4.795481244068675 2.29997229267594 3.3108524049179895 3.876211313387669 +4.879813631765594 4.625792628708246 1.924727474977078 4.554250167685865 2.641763854220269 +2.962987362282702 3.5771568218965686 4.03757791232125 4.769942877622729 0.9558046701724282 +3.287075515949755 2.1665513152359566 3.8371315805483444 2.103144169038729 2.0645306555387144 +3.345392354207171 2.8187459058736897 2.144287184552048 1.2139826710614945 1.069028984341943 +1.4300725275094193 3.408522643012582 1.7952693874809134 1.1709979493326061 2.0746035014002633 +1.2008527099625739 4.738151853547621 4.893463688892195 3.984698969808222 3.652169019344434 +4.2705988218057165 2.791914355719402 1.3926108660499672 1.248488671094949 1.4856914071649001 +2.8437851264278717 3.5694660928728035 3.4949487079706687 2.4649406112530587 1.2599720411042 +2.52484415228779 1.1951551188885352 1.6601453731346205 4.644946925611473 3.2675852296780983 +1.034886778351328 2.768703674714337 1.1156734412956797 1.8244551073909943 1.8730970290688915 +3.2010652976561476 4.173221550203836 3.8627450291515135 1.438294492434161 2.6120965113021044 +2.010204941967723 3.621135143765475 3.460336984126809 1.9074068707992438 2.2375629716152594 +4.654038561558792 1.3413389339262975 1.371446938574953 4.711004611171903 4.703894585502276 +4.48036454195014 1.9379939274118927 3.6112627712341756 4.017940592765729 2.5746912809486955 +1.0778259703687878 1.5468768496454985 1.6367950281386174 1.6601311925293363 0.469631029552697 +4.7455126141178265 1.600379513164182 3.691862657078334 2.289838079886587 3.4434771870543854 +2.2200877848630114 2.0145505889061024 1.8111197426352188 3.45042291267134 1.6521381365407388 +3.1798920556177985 3.783929626587413 2.231473167336665 1.3942634785385382 1.0323669164402394 +1.3596833698356305 3.433767385091876 1.2095459275671079 1.7076357160473754 2.1330536654594012 +3.4779343737822987 1.8387949936771188 1.3488157142029285 1.7705348403730872 1.6925202890332853 +4.736225464995172 4.7058229868037635 1.2051219666603674 2.8576770664412496 1.6528347371990888 +3.5993122038243253 2.534917620638579 4.403063139559469 1.2641434403454084 3.3144762341626843 +3.343254872195018 4.8819505325486565 1.5920734334798272 4.918784692463774 3.6653229238147182 +4.777952244390079 1.930211075006587 2.4361244224895593 4.413550179698349 3.466964434930709 +2.4090757093988406 1.2650081409064566 2.75905167666321 1.8447974187044203 1.4644969953782263 +3.266496084971172 2.1564217250824917 4.798766265012484 4.177354222155461 1.2721705905616592 +2.735612811681933 1.902298870224596 4.924386947521672 3.1364400251739593 1.9726039445767667 +3.6740631440141 2.802584071492435 2.325268364504168 1.1028308436584098 1.5012758794487926 +1.8607097961935644 2.3948535659802763 4.903663249786897 2.460084357310855 2.5012771478899336 +1.1602042695295238 4.203413742830308 4.567477476626243 2.9202821801474013 3.4604011679471 +4.898200087416887 4.924251995042509 4.711903579650189 3.8095508395796958 0.9027287352265134 +4.492707793181158 1.0940429101347515 3.2155346134819904 1.5969580445642673 3.7644007619676088 +3.2792675866414807 1.261498463547312 2.6323648920817364 2.888632689775807 2.0339777329772266 +2.8589558964729167 3.9624254383992064 3.8793545280755892 4.712269718207512 1.382531281350087 +2.143051046149494 3.483066451317217 2.8003137048034445 3.7585150844789177 1.647358846790461 +3.996726993980332 4.346049867968231 1.882882291422399 2.926763054630258 1.100778596306536 +2.3619798892649007 1.9089916199753776 1.180748109113837 4.816713083864669 3.664074189986979 +2.5374405715126747 4.191765947176227 2.8640575006823203 3.167638007996894 1.6819493372232497 +1.2214440530529598 1.0056283154125767 3.4354206155609948 1.8994067976271256 1.5511011835135204 +1.4848294748314999 1.9414890488277297 4.155484183348024 4.6282089283339705 0.6572721286076612 +1.4166899353155493 3.6079128066336192 4.9288374447042465 1.6608604555558943 3.9346068766003213 +1.3997852278947875 1.3648475196881868 4.729065741795064 4.034174510347645 0.6957689753051939 +4.690766557556693 4.420129362121216 1.0886013266855081 4.198224762384007 3.1213782858536256 +4.788852802781777 2.1409421824162473 4.924316123159163 2.221420872577135 3.783790875440059 +2.957036222920585 2.7361311915073587 3.061574824068331 3.1423662759522646 0.23521541531369167 +4.872097254502167 2.8183092351551027 1.7361434043244426 4.250725138236467 3.2467162680064208 +2.519436999661221 4.332635081171939 2.1919812454129493 1.2824325804711831 2.0285379110806625 +4.641958403130223 4.455240935118943 3.2111223898334416 2.284683139623551 0.9450677738606936 +1.141150164879698 1.5418133743637665 4.344423534657885 4.329100968947811 0.4009560929254151 +2.08150785914512 3.2108207756809257 3.5740421090071472 3.283886685511018 1.1659922097676405 +4.025921115007187 1.2920894420827156 1.5657530315766528 4.603858063835632 4.087042672021219 +3.9885616184883053 4.223462549866772 1.4442195468705998 2.1692387121529504 0.7621228494076185 +4.505646510348571 2.32767964671817 3.583662125968087 4.195968680190491 2.26240115262872 +4.123545782589945 2.6679248143998744 1.7882203089802289 1.7539107086404573 1.4560252579231148 +1.313824113443944 1.7040154379626942 4.910466718259264 2.339627446284643 2.6002814909268372 +3.964380445126595 2.3327560176115956 3.735609804673604 1.8805330918141405 2.470527855146977 +4.773317614355827 2.96567291429039 2.0255328795197145 3.7458099224823598 2.495382228481033 +4.223617640939567 4.044756913584312 3.54869257592984 2.8798585480337304 0.692336707579329 +2.290853995414229 1.1355844816390697 1.2644455757433897 4.45566013368342 3.393891277614337 +1.6338110020734709 3.8004737300300695 3.682508817781596 2.917281128683398 2.29782523114333 +1.3687873944951656 3.6317602376405325 4.515153233227565 1.7597225612766554 3.5655917148127414 +1.6045002458022486 4.487594381903202 2.170917637126249 3.217491412926729 3.0671727153541544 +1.2412773019515768 2.2056063004481166 1.183250544497616 2.4907433942156594 1.624643951579899 +2.226384748053118 2.240950444957625 1.7100764146570913 3.5029076256211984 1.7928903788389687 +3.9839504550949094 3.6061030857858993 3.9024712279864304 4.390404263630611 0.6171282539040686 +4.348981095478594 1.3040110341226168 3.743479551240611 4.348524403640402 3.104500273469099 +4.333414632538913 4.590191380028646 3.190737232727446 4.3339132056794405 1.171659337515024 +1.7408962053684922 1.222466436807626 1.3321157561090273 3.748506187719797 2.471378591578019 +4.370163841900945 1.9702082969637855 1.7119644310705446 4.452136367696265 3.6425717371035766 +1.5532601497578549 4.487131615886986 2.821371278497294 4.037260501928734 3.1758445149949335 +4.6757678031148515 3.3406533694504574 3.3572502029389018 3.7018668925618528 1.37887316811434 +1.8504354971610413 2.410141771811662 1.3456870046939504 4.854143040153506 3.5528206915964473 +4.5876381979943766 4.145610629419242 3.7045091978796973 1.6443991406608154 2.1069982959734044 +3.7196858889425473 4.6800674745445585 4.143900780508721 1.6257882587673085 2.6950368201778487 +3.557226247688991 1.6433160234935205 3.0539170709280636 2.2754205146831725 2.066182284883188 +4.597162261284325 3.959042329323697 3.8092733693680576 4.077506053966358 0.6922035976880269 +3.0757256047836186 1.5572188807748844 1.0614074072393485 2.4768909259725547 2.0759229905430203 +2.6110276041463765 2.7726717063130675 2.4096624012247165 4.949066880267591 2.5445439520566913 +4.51769744618542 2.6601271986753554 2.937212413999875 3.5198549161810115 1.9468023807727635 +4.187059567069626 4.186616753686474 3.9709210256928538 2.738541490972921 1.2323796142748427 +2.0179575992016505 4.296833578515806 4.319375995319318 4.291668351984738 2.2790444143531317 +2.685199980869001 1.5408916204257972 1.8341035678368272 4.9862087986532675 3.353387691562158 +3.3584373564846155 2.056263405981365 4.51778177385767 1.703498307231953 3.100943151348006 +3.3448928913769977 1.7768291411814343 1.3557779889187667 1.4863875423245587 1.5734938131807938 +2.189217799963991 1.2767904532782675 2.9477980396946752 2.874243711453253 0.9153872962757327 +4.845992500550345 4.427818772812689 2.5425245547582462 2.334327245171965 0.4671352976269009 +2.609082247818849 2.4106689566048507 3.0124628528306165 3.0284647913868055 0.1990575197472502 +3.7209679784590506 1.5569413515710542 1.9840761748177806 4.0433510222418185 2.9872435687626036 +2.6066376634715973 1.6410223693335269 1.6488796910336223 4.6081392881816265 3.1128170938212736 +1.9462029991654273 3.4459530065792525 3.739967069947565 1.9999974765961834 2.2971165121789405 +2.296296359488085 1.8700080519338456 4.06658444115399 4.535831719445694 0.6339674513266665 +1.5488728291214744 1.9120716832385471 1.610022250781959 2.486357032758211 0.9486179724912026 +1.4585519818559924 3.7733566462578136 2.6150673995313825 2.2896656598776466 2.337564314945389 +2.8789390450944685 1.803199978077025 4.685617906868577 1.6535653697572568 3.217228174704237 +3.974150212085535 3.0662988586301947 4.713285578102066 2.8453041425512287 2.0769084533347297 +1.8173163477441312 4.157106437565345 2.146586513699566 1.804424263010676 2.36467601802489 +1.8551960360015838 4.689428428806886 3.0867584626474787 1.1240117428791638 3.4474987951249747 +3.376823492626451 2.946095453102236 3.791094109477127 4.284183884081591 0.6547244991993614 +2.5141418973167173 1.575468078483627 4.827387766291602 3.503298560442826 1.6230590756987062 +2.885805595973709 4.210553540949225 1.7586936446056147 2.1772983955118086 1.3893117199527576 +1.7156742978449744 1.1602731476161257 2.673226190768668 4.161237401080784 1.5882845461975814 +2.501039306476467 1.049420043567284 1.6517299907866372 1.729216017214136 1.4536858562772503 +1.3863835037644447 1.651995176606584 3.0948240033901833 1.3869273232708257 1.7284272130213418 +1.6110714005083975 1.6777601989568893 2.277105433293851 1.1812872964114165 1.0978455196242292 +2.4604973942912145 1.2853187638077572 4.938023465502775 1.8722430677694906 3.2832992950187516 +2.8803500974083915 2.2600615299714724 1.1581801869682602 1.6237175045168066 0.7755532869656615 +4.340249548639967 3.6432420766710023 1.6165264863372317 1.5798198203134168 0.6979733485679459 +3.7384102581916743 2.7718808669688366 2.121636987273646 4.804103294640355 2.8512812127629887 +3.4873581091827432 4.8097795886773 1.3039658869733484 3.3430192923018605 2.430336881835597 +1.313473172270876 3.7446942946929123 4.218517554859055 1.5257775026057914 3.6279036832749534 +2.053738954998444 1.7472983234352095 3.15026545089378 1.2608166830665417 1.914137536050308 +3.0804293490460277 2.6393917610300797 1.1396045416086396 3.3296435318170663 2.234006475522412 +3.143526038644767 3.1192070014912785 1.47171563394201 2.1201540984138045 0.6488943348301104 +4.834790070013856 4.039752822229664 4.605406803014306 3.8951623175567547 1.066082292549278 +1.3429476444586346 2.3402253922950296 1.3516945241427725 2.2972147231191165 1.374253016369947 +1.50829960504496 4.724977378393832 2.2774119409565707 2.065247001045072 3.2236671446171834 +1.47474095297602 2.100697773716322 1.6279474341421833 1.8259790775198859 0.6565352033289457 +1.3136027374665051 4.821515436952534 1.2739976138042564 2.9189961911816256 3.8744640696216206 +3.520173848726265 1.5207874423476837 2.8028614289917426 4.0510227594989585 2.357000786801948 +3.143065948181854 1.107126357567855 3.503460614007553 2.9582525603557883 2.1076768818764045 +1.2940442242478394 4.428022843993498 1.5267658193239177 4.643424422058979 4.419884934591099 +4.5798515540900215 3.2169886677050457 2.582292299296579 1.0373113761413584 2.060184773266501 +4.255786181425159 4.8244633313333 2.0698267231234326 1.7199460991438764 0.6676901615749404 +2.7787172022699287 3.1499840213641734 3.251726528269659 4.855277031744896 1.6459687931902123 +3.2241449774509334 2.329281753120746 2.0714225331650775 4.82178204799963 2.8922755143830217 +3.601517002731622 1.433273621068368 2.0976557902652906 4.912535661607075 3.553143404397245 +4.0629985548693845 3.1372385581741797 3.466525978366205 4.433958638405732 1.3390136381651465 +1.5004489478843914 2.100718576363955 1.0060117988106767 4.752863749126728 3.7946308337521044 +4.927635962065413 3.5745985030231306 4.4506419302644105 4.527471053877443 1.355216986244912 +1.9563944912682705 3.7558188149728617 3.1941125370960037 2.984518314897948 1.8115898086262612 +4.981969444732117 2.86440398809158 2.228476369579764 3.1258769600096934 2.2998720144523768 +2.225215647116736 3.0926234171244453 1.7926569666095675 4.42901996176191 2.7753929598668328 +1.7828994535959186 3.629305699494387 3.1518194449588135 4.944010556789161 2.573162452356355 +4.177146387975116 4.637893337470084 4.044922724657452 4.2391992114815285 0.5000311038341759 +3.6276163827941406 1.7494365856806442 4.110366446450122 4.286077214279308 1.8863810919897432 +3.18800536734094 2.4207679997032825 1.5806975582659124 4.061042301599238 2.5962979844541767 +3.062774443840233 4.665042060996552 4.627693472795033 2.4754868275610638 2.6831427395457452 +4.3915131765977495 2.0780073872892717 1.4487669499191922 4.792668481410134 4.066200497942927 +4.129929669378207 3.2755076199721413 1.0270874815771274 1.4438063959416572 0.9506269994589956 +4.172186071246727 2.4719666774763405 4.731595295639066 3.094736329555701 2.360096028088781 +2.2602000336867225 4.391950188256455 3.145661822839766 3.848883813997531 2.2447449499566696 +4.4728029742382445 3.67560949081834 2.4573567946897548 3.28784993893508 1.1511890863996446 +4.1845031307191025 4.9145844415653475 3.706247632589951 4.919574005213636 1.4160436458496328 +3.5418000761508175 3.080768272720683 4.701155990964395 4.426223393654526 0.536785112347197 +1.1587587264870232 4.870279645085183 1.2348235028258459 2.8879643245811777 4.0630360699537995 +1.74511239941629 2.2734295343783977 2.8576341042018907 4.596222815368072 1.8170882481841801 +3.890619208106247 4.5514286656493415 2.3296976234547815 1.8112296835698456 0.8399274634555821 +3.095098915332776 2.635128390544511 2.7299485989428276 1.7677453986923162 1.0664932640416993 +2.901922594185217 3.526809961475913 4.346899712984923 1.7380738843619539 2.6826211856857127 +3.824281462693224 4.982069031638279 2.0855469850806196 4.181004506905763 2.3940372345845566 +2.1960898218401055 1.960977369863408 3.2173294398339363 3.3748220672527545 0.28298726608414293 +2.990987608050941 3.8022742191591994 2.5345057801087054 4.166616720849541 1.8226277975081633 +4.32601156524472 1.7441398372798447 4.442211568416948 2.962355999244659 2.9759089578269307 +3.6675099192904037 4.834423815195049 1.2292359705861808 4.074930399459271 3.0756568116379146 +1.9040631864505477 3.701379914974899 2.7353072875757065 2.9717602197890023 1.8128037433174455 +1.8112518313849035 3.9140827041509008 3.9578500563528474 4.233424637195631 2.1208109366618424 +1.3651277641845536 1.3194990938550548 3.675224340232103 2.8571437206083337 0.8193521073140951 +2.8000645011959278 2.800744429566395 1.3290759380589092 2.52637399241497 1.197298247416824 +4.138503209018572 3.90956607139066 2.356653276210237 3.1480265636208102 0.8238227315462225 +3.9677849828090435 3.5777279246255485 1.7609594764120264 4.214114706449907 2.4839716365733664 +4.9609636525006895 1.406191756753823 2.8608183820766784 2.854450879412483 3.554777598652544 +3.982752755057244 2.650975305164267 2.8776915512873167 3.585923256695756 1.5083843424635468 +1.7640628132532332 2.647532456367991 1.480297657708912 4.086845815322324 2.7522012841111727 +3.8856113328731126 4.286405806524563 3.8279887094263407 3.611731137809605 0.45541579615897254 +4.150068803033117 2.992858809267524 4.541347522847394 2.081845105205774 2.7181403775478445 +3.404412760242349 3.4944113629020386 3.4409222567537774 1.2418541734665425 2.2009089448255894 +4.805174230568146 1.377172040329559 2.7134164734957578 2.4908851106568553 3.4352174929293033 +1.9862836388146738 4.691941499079823 3.270529227190221 1.3218563685331457 3.3343530657207436 +2.746367097265244 3.5145900023653187 4.110498750270594 1.4253857506532066 2.7928476959251967 +4.249750858812332 1.0087026018695258 1.0801090570938259 1.5641522964726908 3.276994302927667 +1.4435455271055915 3.9029033695257422 3.56568862517538 1.4916377704174555 3.217161473285974 +4.445580178438286 4.965581593656696 1.4213276674271849 1.992940143473545 0.7727498266586666 +4.431843944633622 2.066692344980708 2.258902557415405 3.948664565572271 2.9067572539775424 +4.674722147300352 3.5979149452020587 2.101271153879664 2.5548841311639428 1.1684513184773524 +4.663384351534711 3.60280232699774 1.7728987249291706 2.9346912492440205 1.5730848992742927 +3.806837844457528 4.146823057923902 1.5195473108239947 2.6018697301992693 1.1344654092823294 +4.061395386128973 2.13851787494179 4.194132286472627 1.5047681052143664 3.3060758645960213 +3.5880038275739516 1.6095084851349246 3.5750377866903165 1.4968944923963905 2.869341975378978 +2.6701842733451246 1.3546115361750695 1.359392795491063 1.8628823751785295 1.408628192121318 +4.211369882900508 3.5593721927673765 4.59179888102166 4.409999676599693 0.676869218289175 +2.9973281071678053 3.64184666119382 3.7442331474794224 4.0499393539791395 0.7133445529169143 +2.038303005603881 1.1086499127536302 3.1782063097993976 4.858505189572441 1.9203278882556964 +2.434104720418538 2.262642142832371 3.889879821233971 3.5130157832669515 0.41403613202871514 +2.6355680011981857 4.160936954034221 1.2079108849155968 3.437261878043246 2.7012508755825215 +2.8502551704676042 3.1991082903283776 3.5540065574500455 2.7080197095630463 0.915091386711937 +3.067168034641415 1.1083330402468112 1.5643780540734782 2.7936748143741803 2.312618658609912 +3.723852607255802 2.9425963461253106 4.444408766969077 2.4271459309032566 2.1632638986790105 +2.603415891847588 4.564031786885505 1.168937034925165 4.373071482055035 3.75639351548258 +3.62491174304794 2.398797961216082 2.7559397975063886 3.1078837126007572 1.275625150806448 +2.2283871520481124 2.0020641167204998 3.618341701423982 1.4690385217071054 2.161186311880811 +3.1550409102404027 1.3080085030520396 2.1556418226363276 3.0521519343152304 2.0531096155701376 +1.845999141401462 2.882938464975014 2.9981694766225395 4.098560220237823 1.5119864250076358 +2.1603722547239395 3.964865324433457 1.3298117789831565 1.8985644163805615 1.8920028544312988 +3.880903301661072 4.506854541770913 2.53417785427166 1.205431944723042 1.4688024534079567 +2.0794578991244195 3.3863133021754357 1.3420413248431835 4.8341540719376965 3.7286354719794774 +3.3965284997737095 2.2917595863821965 1.625760711433176 3.687641769101044 2.339202395682304 +4.273183507038077 4.519660031997287 3.3007719843404755 4.60288927386223 1.3252396436220315 +4.483896319695452 1.0622518228551656 2.5715766951274697 3.4250716944567228 3.5264861798449543 +2.5696525854654717 2.5141131583150984 1.9068684234779556 4.391811352334936 2.4855635151097024 +1.716746707696561 2.2945758587958753 1.484593287718078 3.496396866445202 2.093141220089896 +1.0468925379908418 4.147058472811288 4.404955796196123 4.1708628196322035 3.1089915318472143 +1.486611673678032 2.677295400460012 2.3099490903425273 2.615923888865315 1.2293690717414705 +3.4284809575397555 3.453772153486615 4.170158317547056 4.3974968487089345 0.22874101587442258 +3.607128385858504 2.2198406052520143 4.768728968535029 2.543952507913042 2.6218691206766556 +2.9948254592256194 1.4727096013137366 1.210398126488451 4.4004158608774855 3.53455086688866 +1.2970178464727162 1.856902983935465 3.9220253731517105 1.800725232657797 2.1939429466627383 +1.519528232686468 4.224815410617394 4.304639074797828 3.2887922698078773 2.889727226968968 +1.7886943196147436 4.163331800697698 3.0999075903052207 1.1897691108714805 3.0475452707347004 +1.7092928212703566 2.8407784325304957 2.296050727121097 3.6529121800701736 1.7667293768395347 +3.146299182835737 2.41078905173191 2.7252053617611427 3.8203381043728495 1.319200847822881 +4.284605212099429 1.447686413785573 3.846207779201091 1.1706061489815989 3.8996092563050127 +3.0816168532592583 2.568656743435297 1.1572909613760065 4.409461441840177 3.292376179641866 +4.565074599586013 2.925189155900658 4.314843349037483 4.147784447865908 1.6483728173176622 +1.8959395999480795 1.9948843391087352 3.8176691203846875 3.255723427330309 0.5705900659404578 +3.453338395227797 1.938786509354177 4.81588004444332 2.14882707473556 3.0670896560469703 +3.80574528903315 1.9085486717502542 1.4076390466157065 1.1293747631455417 1.9174947238740516 +2.368696273735813 4.579181320795757 2.606645049636143 1.8538573521987836 2.3351516997164543 +2.7875145438490674 3.665755839153558 4.6313729099048455 1.274253850843316 3.4700945447483527 +4.749101094983789 2.1021195739672613 4.774087105805442 3.5203036067353417 2.928904954952181 +1.3827938321731126 4.82952864225318 3.293296954122234 2.2798199380443225 3.5926475631678465 +1.4730073579566323 1.1360897687050522 4.450752028061634 3.121671071279335 1.37111985312315 +2.090284558082662 4.99844756299491 2.181150443813975 2.2708771186429093 2.909546861508866 +2.9001313993354896 3.78387257592798 2.188032065711941 3.3895416072045683 1.4915172293684384 +2.9908165757995127 2.4556461280218933 4.381949484258216 1.3589377189394507 3.070017514840946 +1.6164029072334563 2.775453615251547 4.518230105691709 1.5704304232212332 3.1674787310620216 +1.148624312501643 2.3500509674444974 3.539383135041208 4.938096820845457 1.8438617036164302 +4.723369362719382 3.1803767385225696 2.7484152494896867 4.488063352179907 2.3253390633452677 +1.8606401024336892 2.719352049153531 4.710877241438492 2.6333445065827004 2.248005443017602 +2.9929137831022232 1.390202241071425 3.3093091370142944 3.1374775200802376 1.6118965201081958 +1.3219830585726116 2.9507206569401734 4.647803070076719 2.783012960652239 2.47592978829035 +1.3887818894134316 2.4058462325410286 4.863397726047067 3.608905662644954 1.6149830386726858 +3.0413625192534166 1.5351078063932064 3.725723995790577 1.3753004064348158 2.7916472394293685 +3.246094803033144 1.6483716632578145 4.64641387449816 2.001045469630566 3.090419587830309 +1.7738169170493072 4.562211355144893 2.8816417244913883 3.469095869755513 2.8496045190851307 +1.48049201325315 4.701473288184367 2.3508793800008796 2.039052808129725 3.2360402012926914 +2.633374328988127 3.747450127724147 1.601912997523324 1.1621097549153618 1.197744454187862 +2.3863615079144096 3.260166550713052 4.844447776544174 4.362085592575924 0.9981024643507083 +3.5380494159336977 2.264099592537828 1.9105284940010376 2.6334140886179336 1.4647565447660544 +3.941885389600046 1.4578643071466875 3.9781068443028564 1.4513206378422074 3.5433048515803085 +3.4363688414047253 4.7418774172720415 2.895576174711844 3.235764575743288 1.349103698704973 +4.550017136204673 2.2127649221077608 3.6094253857155283 3.272705267120297 2.3613827200535926 +2.3336873891028365 3.868791297321525 4.046382477234506 3.598122649006237 1.5992125820639134 +1.5182130104058449 3.1416955207325197 1.6725850281240033 2.8781074004502645 2.0221225609531532 +3.154481439215613 4.443423558088121 1.054464766970141 1.5702529359730857 1.388311644079585 +1.700254720822401 4.18284436690045 3.1604341265741933 2.9146375055643965 2.494727906949727 +1.7273218763790488 2.5406573149104896 3.348213724112546 2.181258839782467 1.4224268830533817 +2.316127269127796 3.9093223143623517 2.643289773538131 4.3315079099863265 2.321282173367244 +2.0012253507815574 3.9525558830352256 1.9974745880861953 3.2014141967933303 2.2928500665153124 +2.5814549849519177 1.1685900188056584 3.4943844031084694 1.1951340455376398 2.698655150135537 +1.0146530307290158 1.1190055981286262 1.909684083634641 1.131630715820608 0.7850200643866684 +2.3932687358880353 2.1177915121133575 3.0273192863713074 3.11311593966363 0.28852862342368557 +4.6014241772073845 3.154721703817911 4.393746707385647 4.261514575231244 1.4527330736530093 +2.1082871905132516 1.7390959602129588 1.7866191082665392 1.6322082697803912 0.4001810484926031 +2.5444471318707453 3.137469762324578 1.6547851614231055 3.2765603821893494 1.7267978187737503 +2.9447136828351583 3.4840024031100594 3.9173000818852106 2.548722707181324 1.4709984209261149 +3.5615126710105027 4.336960294550799 2.6153987322964745 1.958568516432189 1.016240596181149 +1.0454285794814857 3.636963205020103 1.9607180738855265 2.9167168138297437 2.762242803618196 +3.83126685387312 3.797071228911309 4.130097788385472 1.1993421129315882 2.93095516341886 +1.2773583861815703 4.868043074269965 4.137551183625092 1.7120902445342274 4.333114041463483 +2.402425127779984 2.892788164786687 2.8846329987630805 1.745388599492729 1.2402958152518702 +3.400735473886346 4.996969293457914 1.8782981173850106 1.6417681089100085 1.6136631778823058 +1.3837330044197698 2.373197406291288 3.709666220816609 2.9711070316612664 1.2347102811820911 +2.520611497299149 4.477108669688466 4.5227312077689685 3.2680222494033537 2.3242581086812018 +3.880200475052802 1.3232030374929988 1.9383148456940456 3.2877860902994325 2.891246882523907 +1.0175835345602469 2.631938575057811 1.3168951609062614 4.69120334688609 3.740601279306627 +1.0962131745113153 1.3285639610112976 4.735431041954657 3.346160321856572 1.4085666550465448 +3.82789994398976 4.622146398202657 2.2241090657331863 3.2292173002427864 1.2810425414906272 +2.3897300560689985 3.8638131793107817 1.3574097398909322 3.647812903684178 2.723759847515996 +1.9053826046722526 2.952989708463694 3.50723123620245 2.7489782379857934 1.2932239764320954 +2.1884838926863543 3.3493796778911227 2.438498966632806 1.5120937984711214 1.4852291270046096 +2.6105507983758023 3.2459474572322473 2.1131716504168376 3.4105386727826965 1.4446072493270925 +3.603825713987592 3.9054187489271985 3.8281129700145877 4.671006035205325 0.8952245964397534 +1.6477138207952748 3.6789039118772218 3.736091466002305 3.485694733773461 2.0465658331996974 +3.8424529697519163 4.072394257695533 2.9232525799896396 1.076058889396597 1.8614503824888577 +1.3604237863725768 4.356883382927981 1.6581242008577868 1.754078239029731 2.997995545565483 +1.83117749043239 2.1711307486831726 1.5745832105258346 3.0254916791660973 1.4902025372973149 +1.0335856515494184 2.119681892523444 3.3248244233533506 1.203350219721683 2.383329150858632 +3.6507025451224075 4.38797562412021 1.5293562919617973 1.9404474481077765 0.8441371521715753 +2.849566947270706 1.3359649021256979 1.4613889671225695 3.9379164343184874 2.902443702613882 +4.620336796132836 2.1969866235695332 4.358051646982648 3.0239968211002632 2.766284211234028 +4.092647749530449 2.0575062200357372 3.7805391151377914 1.2130331847766747 3.2762612453089845 +1.9171235387336045 1.802097427684188 2.3039518404229766 2.575567049228602 0.2949675030875032 +4.86579903101077 3.2856602880742245 1.0379222586921055 3.73901552691374 3.129335918459588 +3.5153126378802164 2.5793429909177017 2.8778242753117653 3.0871296415308604 0.9590870223098862 +1.364239235745695 3.8417302116537044 1.5806960868495041 3.6129526760150648 3.204376441667311 +2.9446166275058765 2.0587916386303875 3.6624509213374585 1.530205080528099 2.3089301064703265 +1.5066528341041177 1.9559708833904015 2.564710670779835 2.59338926447041 0.4502323524031791 +4.350560668158566 3.6899743200128143 4.586733287315521 4.955093249778618 0.756348719376422 +1.8826960167126874 1.8349840671403808 3.698389327909864 3.0479081509378356 0.65222863454996 +1.8445086307576704 3.032924036974969 3.911137070135361 2.4070394560590613 1.9169352650532163 +4.3365548474994595 3.593281449988642 3.473985844832299 1.2551989190969537 2.3399723855766714 +3.0454969009411212 1.0606126264938585 4.645428671684037 2.9065083303750323 2.638865198596977 +1.8228188111163894 3.752775146882055 1.9200463353417514 3.140155052187251 2.283286390027411 +2.5221801357943554 1.0715648748203956 3.4082838709717924 2.4866701051121454 1.718620542409682 +3.040663918725719 2.0834347164055123 3.094529570389583 1.5183866514681834 1.8440483308852427 +1.5000623659877825 4.637439467651729 4.887773874253633 1.53931643910304 4.588605700325596 +1.833936370492233 4.720871509981885 2.8076629210820383 4.235018672199105 3.220518427189496 +3.3953824586789363 4.251002488823051 2.679239319172145 4.337239898615628 1.8657576363018704 +4.151033729378245 1.1366075697956504 1.8327680801501658 2.779330833389697 3.1595484040280617 +4.848272759752919 1.8702274262578213 2.2207144747492786 3.613370418012881 3.28758947933883 +4.213992642803745 1.0560869236904797 3.6065385360501754 1.483822735555473 3.8050349407696813 +4.086693327556258 4.084874611213575 4.878720016522946 1.2099565068500553 3.668763960469041 +1.1649130026972236 2.5307571165913116 4.591656590517906 2.8864863545154322 2.184750712829237 +3.382940608092637 3.6317522485526226 2.2723547265780333 2.165053588566166 0.2709626665188967 +1.2269673618816714 4.554012152249153 2.2341549929785116 2.8364504043602783 3.381122121379666 +1.7526733736983333 2.137190414601964 1.2174638789934922 2.2093616813174544 1.0638207579288863 +1.64101904295027 1.0254343652498465 4.320179100732986 3.4694982012284203 1.0500488027712955 +2.9137631743211836 3.623859812995419 3.0355411250345705 3.4603243407977216 0.8274527277437251 +2.620563759358466 1.68286455520192 4.297515713108059 2.834272843448363 1.7379181491329678 +1.0308949457228942 1.278638779146406 3.3209709463523627 4.144645557053965 0.8601260787313761 +4.44810108148679 1.514850915204855 2.5755140863765353 1.7230467495913624 3.054612430125728 +1.4881214521964754 2.92472580581067 4.06692036859582 3.259163251772255 1.6481212420821403 +1.0487517130522148 2.945429039669161 2.4280330120483042 1.988689487868991 1.9468969190845995 +3.939623313976564 4.217605529591813 2.6361275065666026 3.886468015191936 1.2808690408108943 +2.2812303340762456 4.434347311615468 2.462583260004967 2.3520016190614155 2.155954781130951 +1.9832522272953783 3.290922141739839 3.522849428402734 1.8167842172679718 2.1495718433649724 +3.582394366195914 2.6096642907383503 1.118333735311603 3.4337364058593094 2.5114325247712963 +4.343497586722956 1.2623630152343348 3.523231956190547 2.282395993038856 3.321605656165848 +1.2657779392156514 2.8092330794968525 2.0010543946851542 2.140440722308359 1.5497362092913571 +4.768135268863318 1.8191713513697665 3.095026387382505 2.904249853419672 2.955128402047835 +2.6254458312797664 1.911766215494112 4.488340954070052 4.142299335931546 0.7931477765661801 +4.984554525974343 3.8464458810726465 3.2490188206363557 3.298053531213277 1.1391644703208308 +3.035985557814678 2.35380909855037 3.2471262606078284 4.683939786691997 1.5905338192923817 +3.435894117988932 1.3179328848312961 1.5065080126317438 4.3046676132537645 3.5093385325032123 +2.65401211080442 3.3130308487252527 4.453858689538842 1.0129924391905853 3.503407805225712 +4.262815420974926 1.3791660878523135 1.6594079463904046 4.999785276461147 4.41288501817904 +2.5585163597790697 1.242860464729259 2.1951087247860697 1.4587049194778885 1.5077270968751897 +1.6994367297754849 2.27943913222983 1.5705191314723348 4.284841243775178 2.775598550977605 +3.578892863161565 3.451200857082207 3.231952626804435 3.372688347855953 0.1900310279834887 +3.9618519828231005 1.8783758897211396 3.703321843553048 2.2416030298274885 2.5450922421253552 +4.198980491870351 3.8437315579084355 3.253347128352795 3.02724191173814 0.4211001948009969 +3.521835004337668 4.894728790654128 2.084128824073541 3.535914935258934 1.9981291903020562 +3.224638786992727 3.460855780541623 2.332861231710395 3.3016015000848613 0.9971239519796482 +2.7928814118008183 4.534151916371386 4.913109189586789 2.752981049798009 2.7745588028360073 +1.351732322544247 4.345410727544324 2.8466277652795493 4.814989382855719 3.5828142360595363 +1.0641438762583708 4.04725461105051 1.2642614306951803 1.1123523667368804 2.9869760661486366 +1.2125527065163162 3.5518590302066495 2.898707546851025 1.657754624750586 2.6480782146543933 +3.571376241946933 2.66909479935706 4.414320326485019 1.9238252016054074 2.648901238002499 +2.278792938060865 2.645464798023705 2.6501362394763044 2.170881372319226 0.6034347359759439 +2.063837638380818 4.020540433618196 4.20616152731199 1.9407633912293956 2.9934452632136543 +4.141644545997951 1.9869123035989675 1.5306610613630074 4.893521855488852 3.9939584070321086 +3.6138885222181023 2.4208411817090356 4.681877049491539 1.8667437751949483 3.057505079104138 +1.304530098199685 4.413047926266538 2.7776649066291377 2.7148929134907878 3.109151557986845 +3.7073251409717765 4.369515656282837 3.6831260710208573 3.343809979382719 0.7440643040843372 +3.479207394230618 1.670911672825441 4.565460831200671 4.3984146435117735 1.8159950013349884 +3.286154691071955 3.9644350556962458 4.524759449618156 1.1222869243678346 3.4694212108243874 +4.022777433344092 4.544241121125612 2.556931509910271 1.7584686922115127 0.9536599230974024 +2.9107767623692022 1.8580453951048073 3.85927133962772 1.5765212064662264 2.513800211248137 +2.592989015634968 4.34585400621005 3.6020194221354465 4.112891642882256 1.8257946492184054 +2.319291626701595 2.1745449176458944 4.498074399796855 4.032730033172805 0.48733662834963887 +2.5683935647622693 2.69694443035787 3.779575447268242 3.4466222960772375 0.3569077274778428 +1.1021129835468182 3.4513761169284356 2.7869896124068685 2.5318342589579768 2.363078823116073 +2.7279207698346024 4.438755510005744 3.6182073471992675 2.9382714743033613 1.8409965506288095 +3.5407654162809057 2.9648044116067966 1.1000413406111313 3.6436652111185905 2.608017153609339 +4.68245006113078 3.897994843261676 2.8942103853127867 2.4722047692634863 0.8907630037328745 +2.3915029991385004 2.3723779822864475 1.3166085766080808 3.018757174329028 1.7022560368502084 +4.788498031206385 4.741558608682542 1.3895890842440273 4.988229335902494 3.598946369459176 +3.163881595668867 1.0950151351088708 3.285771249337874 2.0982502107159298 2.3854590017017245 +2.099802505325206 2.308033331945353 1.6181479139210868 3.7516856922721837 2.1436752386511917 +2.3189022857609696 1.6987827114498417 4.9702271111431475 3.1514958828595048 1.9215440580892083 +2.8237666032378836 3.335036821849316 4.723512302507017 4.658658893761141 0.515367054694944 +3.613345789403573 1.165129439930927 3.5051066203596353 2.043667635518557 2.8512395901148837 +3.0103438050993594 2.315759889536966 4.113622121771957 1.9430622187147542 2.27898598251891 +1.8457883052331785 3.015085634894617 4.101190346688459 3.0884006203293413 1.5469322140843624 +3.1944981365826557 2.586539982549235 1.78817078454151 3.102709746161239 1.4483182656695317 +1.0326518438423293 2.660957687809648 2.040235421919414 2.072570267029105 1.6286268644801332 +4.211946550666328 2.6494591252637494 4.262345586821117 3.5080886186328577 1.7350131205848913 +2.3040248438848896 1.669306326146336 1.3986928294289056 3.579204175105151 2.2710124009751813 +3.51280209556331 4.072074611758773 4.429308469716034 2.4516766049223406 2.0551918499300705 +3.8052400600058833 2.573949928682149 2.772737169449695 4.903614761690072 2.461039353729917 +3.1178044660656754 1.681031879076027 4.21335438442563 2.26603836833787 2.419990729989855 +1.7626257357066932 3.0962498749188057 1.8859686593537215 3.0687128321792887 1.7825367101527203 +2.093659425128564 4.736656746638701 3.2273515422029813 3.1872439940103297 2.643301620498838 +4.435081571680087 2.7579370491370243 2.5059938785121827 2.9538665451855 1.7359158029839077 +3.069620517927494 4.295901373042595 4.891096057449302 4.797537312002122 1.2298446952650053 +1.3494524963716432 3.303835725000512 3.670550801551933 4.9399050184982185 2.33042355215208 +2.439748485957582 3.3051689909688244 1.920497745790354 2.727744901251701 1.183469737887011 +1.893145721480297 3.457278135401735 3.7113897433053373 2.8799255026629704 1.7713957750166087 +4.352716545127885 2.285296544476958 3.549919956911529 1.518164937889547 2.8986641606803114 +3.7506056342475906 1.5079629873183409 2.3312482374565056 2.7542489125250817 2.2821865859158628 +2.730285200270194 4.259014065771522 2.758247926934513 2.8708260766077145 1.532868482290904 +1.0343923267812274 4.49506345586121 4.551097528260051 3.364087901224073 3.658583949880584 +4.30957976184387 2.2580752244496174 4.861496601460159 3.285961471017293 2.586693219964212 +1.175241097653425 3.3844658636921596 2.947710143338719 2.296864254265069 2.3031010481963166 +2.8466972548379332 2.4831354201559392 2.8230779149432177 1.8087134256218969 1.0775493143394606 +3.312969978681496 1.3380125442754927 1.387657259491185 3.304376074870991 2.75213878373648 +2.6074314907187235 1.1225126182399667 1.0458232008641328 3.658458030547443 3.0051364047440376 +1.112940375140651 1.4442688351791624 2.745332451077035 1.0762154608503378 1.7016844817694379 +1.1877122509351765 1.6528196914388227 1.9808256524806835 2.496214052722444 0.6942262846620069 +2.6484948797257983 2.126245091861532 3.9975451735607863 3.112369981682284 1.0277548157228038 +3.9729090839266563 2.0884185459531737 4.2926443881943275 3.3250967559900793 2.118360924935983 +4.629069779025903 3.8844979729983824 1.1333209940178635 4.736748790946859 3.679548757933727 +1.4658283638572462 2.7260652503723595 4.678985749463397 3.409041300129546 1.7891215482820513 +2.457200257254687 2.134635592240845 2.762535275994637 2.4152806190274054 0.47395544083903274 +1.5915892561080622 3.2283976546409847 1.3293815822901394 3.671178971797537 2.8571238592352923 +2.409236793180396 3.545086268592726 4.5223535879145835 2.388212151541296 2.417584269728752 +4.693807620181204 3.233713837355868 1.6789465481843666 1.0769527057737704 1.5793259451251576 +2.0226668430975367 3.7760078470309435 2.0782870028856766 2.7122089087361636 1.8644199255509262 +1.3508104877433174 2.4078023734691114 4.225482805900674 3.6495718817052345 1.203704797322755 +3.349155757987216 1.6385735258772622 1.4355383999693574 4.1663513421502945 3.222333145097381 +2.835077388832442 2.3148510341865736 4.010464942793291 2.44469515889109 1.6499304458822728 +1.0843462035518319 1.4304078196377468 3.9245480367298056 4.966237012451929 1.0976677841081979 +2.9404965556999354 1.384930788617384 2.561819611695675 3.464457215186492 1.798482554531673 +1.5415771593530585 4.832620025158544 2.4176286054882716 3.732524426556453 3.5439969194162333 +3.8784839698467857 1.477329231590927 2.0091990059765927 3.0931841266895037 2.634495742827372 +1.6587496444315701 1.0950933587156961 1.8179055421557 1.6808697223566638 0.5800751885187031 +3.3558388365667446 2.855477497291931 4.5540901020806555 3.373846784048587 1.2819265812051142 +2.0904136021315165 3.7971371534761316 2.109061712702188 2.41653497454876 1.734198687424525 +3.2735143814060503 2.2256947273041487 2.1902293917021183 4.050837639063738 2.135366263120289 +3.005719163486613 4.162485408515083 2.348066387093581 3.449011741275563 1.5969310625484612 +2.898882034611704 4.850398592149531 1.0734530220562162 2.634826720158925 2.4992608306199697 +2.7152149473683354 1.0772312393536811 3.909291811398148 2.6293892558313456 2.078735476069013 +4.014034877632244 2.0057484517487607 4.027921736412398 4.156470726016333 2.012396385187582 +3.3584146649673037 1.2901872033804955 3.036029787491815 1.396637194135307 2.639161402418198 +2.0465195298103294 2.1698381141147216 3.708054130601379 2.1761727819158243 1.5368369919043179 +1.2814874665377078 3.355976204212309 2.039825238202424 3.537340311963283 2.5585259269508587 +1.370390750864174 3.382162736445626 2.308556527756133 4.347674308872692 2.864476888933835 +2.732675370190627 1.7078564704462735 4.963137938359628 4.360604798892869 1.1888229310662275 +4.179841416968084 4.955301841630996 4.160026082584853 4.089159268458522 0.7786918360704707 +4.439053802637093 4.705170687900476 4.630503995564903 1.9859019593456355 2.6579575103069994 +2.1285334987820685 3.9499481703458534 4.09731019217422 2.782731018821357 2.246256843907416 +2.4473541126676595 1.5691515679707524 4.781283055821106 2.0492385483416333 2.8697224430876376 +3.1017473590718336 2.4881889761912186 3.2670677474925083 4.163277323438089 1.0861148618905978 +3.318798567427086 3.8947380820179562 1.5786793235057486 2.6113789851563394 1.182444466197213 +2.277642869773962 2.1237103188761837 4.62923110047155 2.51326312340465 2.1215597352416187 +1.7347514043774317 4.270014549495238 1.6742148282628029 3.9411941895244134 3.4009931842593764 +1.7632331198075848 1.7203032419020574 2.3697150007491814 2.9441939515889097 0.5760807576849781 +1.4979250638122266 1.2599444660539056 2.2744484369542084 4.700295016732733 2.437491824300663 +1.4265709908952147 3.5801352369504786 2.782806657797083 1.1901098135835158 2.6785298578614785 +2.565893633471724 1.8079102576185337 1.7762860260740472 2.7050191906180974 1.1987844214010308 +4.365633836516706 4.282057578429242 1.8668604689241284 2.219156630026856 0.36207399249824784 +4.825522818052047 2.263515477431789 4.747948202985993 4.4145762728545925 2.583605708538286 +2.5988309377980676 4.660474314559127 3.687146194837961 4.288061984589957 2.1474340966176375 +4.766139062740705 4.863902874538094 1.7407157376959255 4.782954739317607 3.043809439811442 +2.193333850609504 2.6494817304589766 3.240561795950047 2.283820271722557 1.0599175592810555 +4.581645271045014 3.17357422248356 4.2231656454254995 3.6281455669597924 1.528631077655524 +2.122936474990659 2.4540189280310893 3.466006284196833 4.250921749466995 0.8518848973491336 +4.773173907137534 1.982060567982335 1.9652628717763099 1.7072334731238397 2.8030149558250734 +4.337443442408061 2.220149647457619 3.6524414585228344 4.334402211661924 2.224410817038453 +4.263936604655596 1.0915053249416236 1.6597257001118209 3.744348310180185 3.7960468451951264 +1.933782196650279 2.0908439527787235 4.845620197836416 2.626833493912313 2.2243387405583115 +2.1866081959907504 3.5810102606704133 2.4769471256830857 1.122391073830773 1.9440111150897856 +1.5703143410276952 3.0697303990601026 4.774888223365151 1.3747119787726696 3.7161064313843966 +1.7797319310787367 1.9245365654827098 2.8344073567772 3.4880698288558105 0.6695095290948357 +2.8304601136028316 3.7699508382773597 2.8008248464966803 1.8699608709438178 1.3225545594536166 +3.6931648258080507 2.0168731483275235 1.999416061298664 2.698674099925549 1.8162917146138167 +4.528511963147419 1.9970250122608086 1.455994015639933 1.0675274854941241 2.5611193700319226 +4.457663967392893 4.0121348447400305 1.4733571445857154 2.8129720441919246 1.4117592848565874 +1.3005886450877204 3.2908522932609796 4.89082142288861 3.3629305006710273 2.5091034373725662 +4.024088481263697 2.6978971315605023 1.331113725253167 4.6151206314450866 3.5416782541535032 +4.279222413262245 2.8687696736815185 3.8533436204685283 2.768045564974888 1.7796765997925164 +4.284952834900114 3.0000394667302417 1.1726536307159376 3.1578323356071194 2.3647276490232603 +1.9175842541230605 3.7189239778991885 4.19211594356994 2.2552040656443255 2.6450807971219303 +2.444469103239156 4.038851171519914 3.30164689692001 2.7391849684965837 1.690685541601698 +4.155752970987907 3.6867115348664026 2.7176384255508923 2.7940114408206456 0.4752185878733248 +4.303013266220127 2.447376756049901 1.2667275956636983 4.022779514125454 3.3225305168099597 +3.2483819380730896 2.3934615363855434 2.6223943482193226 2.662138710016868 0.8558437401280036 +3.6992366371009 4.501492121869837 2.2990227401919836 2.5209599140623995 0.8323881137951388 +2.5346841982688897 4.6212431972868036 1.3973330493303036 2.4488059309103205 2.336519564882953 +3.0058554266055943 3.4160656999173953 1.2489386921817602 2.8275057861892563 1.6309955667057507 +4.087526620239416 3.3314385764780834 2.2720901025068945 4.837189668970447 2.6742110828785273 +1.2871023978257305 4.219470536461737 2.081451351399575 2.764748637339823 3.010926449028754 +1.7537707687736321 4.719209691841513 2.5384880793546123 1.1969674814651277 3.2547665847196714 +4.126129815727949 2.8122014315357924 2.432563754725405 2.517760409707432 1.3166876124601226 +3.289113711746033 1.5207804965448952 1.15927106922308 1.8034360807387095 1.882007152495581 +1.0109956080013025 3.9495395264300184 4.409488661882875 4.096388097280901 2.9551772068842954 +2.140885668121403 1.5978906745974224 1.127747543131076 4.871261425939697 3.782689486829839 +1.2994418971698192 1.05332566843331 2.353155520647657 2.3671751607485496 0.2465152091779333 +3.359608355948173 1.3657741431115675 1.9982378743629594 1.6438733135935508 2.0250800256303605 +4.835314894933289 4.848313262089835 1.5328661875618974 1.3923958150874878 0.14107048979795797 +3.7776294173415814 2.3276394419133886 4.4967688879916645 2.4604770842164596 2.499791039059931 +3.5638376336268416 2.109277256929064 1.924158434348243 4.350117870053767 2.828608327985309 +2.2914805121683615 2.029988740289709 1.2970476121479342 1.2104470272291064 0.2754589045003271 +1.9339825760352163 1.1486608000101177 1.0833060688440943 2.4455911603837412 1.572434724410015 +4.064233340722946 1.50382857537568 1.292653169578391 1.8193409864126764 2.6140146554322627 +4.444932607424146 1.7454220349905598 3.299665482478239 3.2659427454911727 2.699721199248287 +4.924544798151327 3.464276810400772 1.3035206167851805 2.9459363647587677 2.197706096192276 +4.736176726980778 3.349051614928691 3.8403606379215427 3.53941633236926 1.4193954880616824 +2.527147221551043 1.5041625892904404 2.612963078807925 4.03222100680176 1.7495115386915039 +3.5827063202686213 3.9136907088785726 4.324894933807293 4.912490675844371 0.6744030112355719 +3.470241209297424 2.5224799669175915 2.710294880678882 3.013988005871969 0.9952290625011448 +4.4838102170043665 3.6790478571929626 4.238651434616867 3.9985638538511545 0.8398121826975077 +2.895431659765737 4.566253320161227 1.8679906710664116 4.9179032053614105 3.4775870208661184 +4.794581583559042 1.2310497179857012 4.8716361880708146 2.3036030393034683 4.392442783932939 +1.3839755833820067 1.672535581361935 3.4127184660379766 2.6104487391622917 0.8525864103393639 +4.611671122254705 3.575508420766708 2.430756412642196 4.867319993508178 2.647730202939371 +1.8451346674322169 2.389675562934441 3.8770348303757634 1.7675391459820444 2.1786456410692603 +4.479141261968143 4.119764245525195 1.8685809723029645 4.119379391261633 2.279308088594931 +3.2606597143262404 1.4896268557600698 3.1294554785449917 2.182409340460585 2.0083460293937523 +2.1847409804303997 4.599053870470728 3.6961411552525716 1.1463229223198645 3.511478285852122 +3.8782690400275794 2.827032617955947 4.643049809691004 1.0439982637073406 3.7494359636800523 +3.28028617389601 2.187657571876807 4.11809323797536 4.246551237153783 1.1001539526372486 +4.751101863481827 1.194551560295697 3.5228923324351396 3.7870477786975822 3.5663466122747325 +1.420688434903942 2.6127162649360027 3.2026950443232796 4.203472892667294 1.5564339527609323 +1.631208268194929 4.977235289109398 2.1072823653211956 4.907998688876768 4.363474389717488 +1.8911379621753843 3.799294744058942 3.005908957464309 3.1118459125286666 1.9110952207298628 +1.809509589312222 1.580372711622474 2.4743157630495816 2.853909656416563 0.44339060950691084 +2.3569880140891035 1.1194569920957749 2.0916572435868157 4.675568894160403 2.8649751217708284 +2.8743332981342675 2.795025760602604 1.7610191593971538 2.820612806729085 1.0625574727870117 +1.9196328026158285 3.5669203096196287 1.6391905079434963 3.912515853038247 2.8074123771510595 +4.696795614859356 3.1702614903221726 1.6351543051059076 1.556083014548527 1.528580616901482 +4.5712416535315 2.5981307533148765 2.1987362024036 1.7316886009428623 2.0276341106284144 +3.8290739028797 3.8078628552372042 2.792137230662523 4.976798159643445 2.1847638964331764 +3.987508547437084 3.5553000657596563 1.6396910739127306 1.5959749652954733 0.4344137081015554 +3.8211552310677126 3.14368014702834 4.6987032806803715 1.659062968983295 3.1142231316956166 +4.999754285151276 2.778241237583566 2.4554793226505613 2.8125829689997186 2.2500318297191795 +3.8515040595517522 1.8779813141032542 1.896997576099411 4.950784008944241 3.6359872942888196 +4.323790025714838 2.9139485229015007 4.2836273757602825 1.6145527420881884 3.0185447591789645 +4.4216647567137795 3.6957407272470713 1.3115802844214373 3.519209486927677 2.3239174667607103 +3.398545446900365 3.126046396587596 1.046415080337474 4.3228911970845 3.2877882346700846 +4.93895790171559 1.7459716978824313 1.800992951311538 2.3467815386522313 3.2392971583262056 +4.946880964295707 2.332999309788369 1.0403655375719323 3.2314484359518056 3.410750880868136 +2.141320168887061 4.74745282959741 2.411471646847032 1.2818423873080005 2.8404206922968127 +4.260462100723317 1.8876562103508028 4.289387116109035 3.272100658286673 2.5816815316098283 +4.160634872988174 4.514170442825913 3.229125546108991 4.54249767799463 1.3601226988600414 +3.007644154807715 3.9311524899085337 1.0642688528676154 3.9032840255572987 2.9854438188924135 +3.1063816986418833 1.092878792774628 3.6798466034482304 2.271539972720515 2.457136853756325 +1.6011102892265252 3.205008445870826 3.689980983761414 3.112680646066736 1.7046304516784203 +3.0368489431436245 2.173378138788275 1.672446471148485 3.9807243698282826 2.464493596564555 +2.6045885171372887 1.6085566754000022 1.5273763753193088 2.7309698986444517 1.5622793601481144 +1.7297012488449721 3.5325072795232546 4.429847040702866 4.200994323934404 1.8172735485397598 +1.5158282413854578 4.152520914441466 4.920444917890519 1.7216436434247417 4.145416486394476 +3.0655141422321983 2.1521857440749272 4.571138344353958 2.309791592660687 2.4388230551383256 +3.6650799740990863 2.087402058403314 2.6963510794589025 3.8019676755855527 1.9265138627336258 +2.5813896300855452 2.1611790806361575 2.677225307805553 3.090046947432506 0.5890658808765299 +2.4339221367442474 2.153767473764148 3.4877938423876738 3.9761103385531515 0.5629739209029332 +1.768515366420528 1.737093910929267 2.289660179270971 3.008570705298141 0.7195968679044201 +2.532105567564952 4.124940749042449 1.2809707248413211 2.7795410025071527 2.186969774015155 +3.232795724527003 4.396742682442772 3.4576573584199193 2.8528405138312034 1.3117072601535846 +2.3961633557131807 3.495228682964499 3.304452477823458 3.1213824766484826 1.1142078885451554 +2.096530550428143 4.385845028154506 2.1304974423566914 1.7398494673233982 2.3224053518550853 +4.748915989242995 1.268409007254899 4.84408645411788 3.0889077139364782 3.898022737446853 +3.7232694129145467 4.3381082377997915 1.8832803804653908 1.4372558464911824 0.7595819017677939 +2.781568400991966 2.042764630953571 1.4804992157664199 4.350785536372736 2.963844559500833 +4.086411581797763 4.542160921287163 3.335848803052833 3.483049400149431 0.47893159869716206 +3.500527644945402 2.2343266215079303 4.594994940417217 1.0799463974756587 3.736151936282794 +3.144298608135686 2.2042637838601915 3.1562825037752824 1.3599614567105545 2.027420719776332 +1.5351699921243083 1.0550359533388698 2.4728121137943964 3.3756238250803015 1.0225447086731227 +2.716106854670711 4.666603085249807 2.523343324030537 2.301551823738246 1.9630657184886007 +2.972367730089187 4.669081446873834 4.395483151534133 2.354610053059175 2.654053586648911 +1.271397694038015 4.9076098740571785 4.159279821074019 1.8967335392744613 4.282657433814281 +3.6463673634350133 1.7512053019739295 1.006113204415644 1.5668305219115743 1.9763712073750863 +4.353514300957909 2.528599667566478 1.8587729414737004 1.219342262055807 1.9336972392148182 +4.83672206031034 3.0574419492000477 3.3097020703648887 1.1006316244064043 2.836517221699856 +3.4629365726467594 3.0568030665273405 3.6598800500016817 1.3864710940338258 2.309400940908206 +2.182717380023868 4.811233632473847 4.810692066500398 1.1050279001725012 4.543241640392937 +2.6151469876439304 1.7782745341633515 2.6989393385776435 3.893257312324035 1.4583384126492347 +3.3291034956850565 1.1550768498615116 2.7750389730775744 3.637307153939105 2.338781364830203 +2.6063407434686146 4.3198420569315985 4.796183228735524 1.0515719625742532 4.118033545990281 +2.6633504562127093 3.055553893600042 1.8860263608710848 2.2010670285980094 0.5030647658306692 +1.6447573398224091 4.603638600718893 3.569203882078743 4.317648596319293 3.052072706597762 +3.1447946670184015 3.0829197171607348 1.6173484415671968 4.305683861443326 2.6890473850753267 +3.294028870653745 4.215173486166617 2.156816062177253 4.057297307568605 2.1119508438343497 +1.3849512444862198 4.504838340850091 3.7808143584473335 1.505588856490276 3.861391792969671 +2.2767175622661897 1.3503275535899704 1.811871587432528 1.2047156289216394 1.1076266546677187 +1.599813714014227 2.819574427365592 3.466049154427838 2.8673568842562465 1.3587673208458633 +1.7192288612491349 3.2007984983643976 1.6209042406963463 4.947609425206666 3.6417050916115783 +4.114251826466982 3.789477187845109 2.3557883610612382 1.6312236267964915 0.7940230601387541 +4.404222886176856 1.3387134729065822 3.3374304920312277 4.400440253805601 3.2445859083211634 +4.696766841232052 4.5803032907865955 2.4482779594811417 1.3312810577714003 1.123052018835959 +1.4135023170542844 4.5026355874606026 4.268412327549056 2.4367905622090817 3.5913204610001537 +1.0592641223121784 2.7664027445458887 3.351593827466925 4.494118023247889 2.0541868983777865 +2.168173169315367 1.641095924960784 3.2049365296702588 4.625528053096232 1.5152196863643732 +3.3369009211624143 1.0786105012899903 1.9634498879087974 4.492273032567992 3.3904014684770867 +4.8524310606891365 3.445668785378918 1.4974297442186044 1.0408897101427397 1.4789891486924356 +2.140302100425324 3.7216046963836202 3.051159854274189 1.9194756570013602 1.944537740014704 +2.7286990946964638 4.973984557952955 3.199317206769345 3.2164856500860783 2.245351101043406 +4.733050124661192 1.9230978576080782 1.6098398156922609 4.370102371098994 3.9388933874754017 +3.213364927625567 1.1778314858774723 1.0123864967220317 1.2848807012802537 2.0536916720853355 +2.4977175523280377 3.4011346096762063 3.3844997354917163 4.639002909611772 1.5459432697822126 +3.962060409819278 2.127482918546376 3.819145677950208 4.509808879507895 1.960278100033536 +1.799288203568584 2.092314485868478 4.714702399847856 4.81669453868628 0.3102689132080966 +3.022219697328308 3.1738476806480715 3.470023100079188 2.207300111728306 1.2717941620543 +4.0701131896016705 3.471666456114386 1.3389863258905832 1.3460442183673034 0.5984883513217393 +1.6713842250444118 2.633707912143751 3.5522956521954265 2.9331903390974876 1.14427193772222 +1.9561148082203728 2.5755150677621974 4.000315314730461 1.4607267835823032 2.6140326296853558 +1.7940463419815407 3.8908639627581496 1.9612762896988705 4.638868987324866 3.400903819454372 +3.201728519364106 1.5482123376341042 2.150353560362169 4.130401684070385 2.5796717495533015 +2.130812313733953 1.017050402574069 3.9075942929203404 3.6533904856636785 1.1424032433314868 +2.0890293451062254 1.2356260614985568 3.9528395120988407 2.9008147800398323 1.3546413552435859 +2.148909204563248 3.7934331144555853 1.888808107927666 4.68458875950625 3.2435857229228198 +2.044026398077518 2.6605907434010945 3.3553978166449863 2.305121533352873 1.2178800692885097 +2.356115704834783 1.3660659430759874 4.562037396526407 4.1229299125190195 1.0830576684876694 +2.4076553477614784 3.597263592319969 4.363199690606164 1.6319553717770465 2.9790708794283267 +4.470508679861927 3.333236613292077 4.853552836207482 3.195699634625695 2.010439004644269 +1.6936003332032077 2.7331792446694503 2.9268291073051973 3.291510469737101 1.1016881633522833 +4.680658990636691 3.5329428818242765 4.6702706165350385 4.222913843851117 1.2318199334698574 +2.647959715392781 4.055836787289785 4.992820144881346 1.8374747711279866 3.455187734008097 +1.0491567024026134 1.4486100574176506 4.99709040979836 2.7587698187887932 2.273684685916274 +3.42225019752123 4.157965370048279 1.7899382160488608 1.4405113393504618 0.814478948313401 +1.1720251007119873 4.726855336219732 4.841568016951175 1.6924178848545166 4.749101447407124 +3.426394587531091 1.839162402443053 2.6986101475253776 3.4538029505515864 1.757732112445446 +4.208210788523575 2.5415184981083443 2.0836735704210523 2.3627578726455254 1.6898968130266676 +2.5463164180544893 1.4348565032075697 3.6375633601475603 4.134580677929492 1.217525916145799 +1.9569592116833827 3.647488713350797 3.219565254454933 1.394488524656984 2.4877288971384828 +2.275491079309942 4.821127791418166 4.433895325864881 3.181221504318559 2.837156670545467 +4.56985016718681 2.661489662889924 3.0703857842949334 1.4138251819127494 2.527060118739776 +1.2470394924615666 1.6705326960995035 1.156254180295293 4.920972185182611 3.78846250474388 +3.0034212510232106 1.8691836625403635 2.3729473635859084 3.6802292974447384 1.73074578194519 +3.5904547622394767 4.485543967004222 4.4252007227539485 3.6786710972754295 1.1655432922905449 +4.819701765808826 3.66181728794519 2.1149857072980764 4.313177168151027 2.48450038491532 +2.0756124240272267 2.913918270011154 2.9585519485778637 2.1795161621883086 1.1444009122184502 +3.9509762481570228 4.239277241197651 3.194833926542835 1.2369108754602323 1.9790351529340808 +3.3939600288506457 2.627821645739924 4.828927492942345 2.971916240765983 2.0088451440529536 +1.808869507729261 4.747339820844708 1.7785222476570186 2.169306134053869 2.964341381644196 +1.9194664211585506 4.085860203605419 2.0253872782929934 2.578359894228826 2.2358534689463365 +4.5527145481438644 4.040597029219258 1.183799894144626 4.512056585882824 3.3674258654482045 +3.080614599328996 4.32564418214265 4.727620641251937 2.5383582956200503 2.5185250207378864 +1.6554238938022654 4.936092506397745 3.348628917133476 1.8859691560330853 3.5919577005320376 +3.836103968838397 1.4799253898093423 2.2521460337717802 3.1118499072226804 2.50812046088338 +4.8618187833231215 3.081421002067418 2.2888997548577983 1.1448025110048201 2.116311593998439 +1.9832103194447122 1.3000856346341747 3.1462558928898265 2.4381912884825465 0.9838774410524586 +2.67679837777052 4.24368297956514 4.496636215008565 1.8470698086187531 3.0782023158347647 +2.4496092658795785 4.933074200568051 3.9343297082875046 3.3554397155914994 2.5500415105387595 +2.162804537842165 2.7591317661570147 1.0335281189391847 4.666526144724763 3.6816138877660136 +2.0936062124718138 4.243458694581543 4.130961602947819 3.735674310769892 2.1858906052661284 +2.229586964443362 3.8654335689565715 4.4848037579645155 2.659479063872443 2.4510822818419857 +1.6282981964045993 1.7602735419413689 3.6466834126544816 4.524384698432062 0.8875680474674421 +1.0635047829244586 1.6096282125413892 1.8331115972815994 3.924790722793304 2.1617984097685814 +2.8966791545410167 1.282440550410886 1.8603271406031836 2.472057709383064 1.7262620194639482 +2.837133016483271 4.221489305246852 1.1270145424248983 3.685325709232687 2.9088482876308115 +1.6540633161522384 1.8132778536429233 3.7646956004070993 2.9908713012167008 0.7900337429286701 +1.2460498643944162 4.755625971253371 3.8980761234751924 3.956727465897275 3.5100661574681427 +2.357732419348421 4.353027568830148 3.393424306684569 3.7922680563762987 2.034767571545573 +4.846332740308738 2.1054216094609344 2.661841553290856 1.1486313353688997 3.130878309808416 +1.1958102736929659 2.7837232130620135 3.258084465261389 2.1212182782542786 1.9529291411046472 +2.8331608928743433 3.607224641555094 2.6789007391735646 3.4793222062062914 1.1134851646557842 +2.959164825279839 1.9719085973831785 4.761127146030351 2.6540387037368447 2.326907080905384 +2.793339852616059 2.0686779360236893 4.326949203288308 4.940003976947106 0.9491949477663517 +1.092255363843028 2.7778542969417486 2.436522091021834 1.8362125933790066 1.7893058028810305 +2.1229136153824992 2.0779589265055702 4.000905655884278 2.020886594189257 1.980529325389466 +4.766987804601543 2.91835573637879 4.758664510061102 1.1519416300500485 4.052886681965925 +4.304563527646472 3.2393601721047878 4.96384767303916 4.7765853857485165 1.081538419520355 +3.362094906921226 4.856434607405134 2.880115182787642 2.997722212327716 1.4989604910869319 +2.6303154849953327 1.7882871357426127 4.72347606417129 2.1814504674633364 2.67785471511501 +4.847620612205562 4.74398325514068 2.796149514441581 4.80969224664123 2.0162080835502625 +4.748259299372359 3.785506873257655 1.872910761975012 1.6061443057858815 0.9990278154973744 +3.770594586870798 3.233225386107238 2.737943906893703 1.2546370724239093 1.5776453413597324 +1.2473324473886032 1.651591598117391 1.2079139305352378 1.583851285606578 0.5520456103312441 +3.8086102505284023 4.1816482228635365 3.2552923315074818 1.0699842838621527 2.2169187156743813 +1.2686388108778646 1.632407336738611 2.564781445994786 3.020568912941373 0.5831550012067861 +3.173829215085025 3.153821272348317 4.045735480469851 4.545054927204433 0.4997201493434941 +2.9178434752683193 4.073296925042738 3.1614622585151553 2.315960793790672 1.4317630395588694 +4.466178369670294 3.707946860688459 1.7053571348447636 3.1701230194966534 1.6493799192584175 +2.694427096489057 1.8423511175015346 4.298749963127279 3.614901692000594 1.0925575188018712 +3.970864734182623 1.1691721596735358 2.8894118512281675 2.3307727133039267 2.8568442324495216 +1.643410360213628 4.330421470257667 4.268430140851921 4.7396761857462675 2.728021543230306 +1.683468063330435 4.910864824735567 3.954286044324159 2.2760015111520127 3.6376817933696706 +4.489005291019524 2.228288955175246 3.5617297426984806 1.0731513822354954 3.3621214444629772 +3.9808419798492283 3.9751005398654073 2.926994018510877 4.31147501716565 1.3844929034737612 +1.5189640085315683 1.2640616941679976 4.409493239088167 3.4980193835775295 0.9464458669925775 +2.9205475663739837 1.0644896542570712 1.5379804961448293 4.778910986654011 3.7347799690803574 +2.8668430585570372 4.2084866688442535 2.2991126358025067 3.638713946617318 1.8959270157264168 +1.0845986963224363 1.816194231376703 3.457405892118313 2.1593675642979915 1.4900119218992562 +4.733603855877288 4.6699191923297665 3.946221258356226 1.353225275223251 2.5937779212790955 +3.914458978129119 1.632666430247364 3.4974568709700127 1.334186240222313 3.144251429740354 +1.9252837193418295 2.861712681947026 1.1426059303725808 4.905032412117153 3.8772093356612416 +1.706458711684296 3.8975551125976784 1.8074425555105624 1.7238221575229287 2.192691453227104 +4.997897540599993 1.3531685432765848 1.3791709999766701 1.004734768123324 3.6639121107983246 +3.3758373314150183 2.640392300565672 3.086405662215048 2.0738925288341323 1.2514240842615407 +4.881510223454306 1.586482299565501 1.3150834750859435 3.192051092317348 3.792125585386421 +1.1672417064009077 4.685102211508514 2.771262248998889 1.0250054837030889 3.92743621510742 +4.929820113725181 2.372130298231767 2.5877639119620555 3.814064994327795 2.8364751958883963 +3.4657148831188276 2.0826075333067244 1.3123264538723052 4.715538940745857 3.673532519512564 +1.1272467284199554 3.3616642177803673 2.409977891242289 1.0700797479479673 2.6053691775184675 +3.586829543511034 1.6405322135577451 1.8318225723306298 2.423284595268 2.034183035314292 +1.0857311200938113 2.203731442569483 2.9870972541338685 2.730602171925362 1.1470459660592747 +3.262384333370931 1.250494228279185 3.80825977593328 2.1361642484825527 2.61602852581672 +3.01141989326904 2.501872190175527 3.268512689596371 3.355090027371205 0.5168505559095905 +2.8647030336833335 4.734776817159049 4.963642002983072 1.6163252110183217 3.8342803316153558 +4.174296017776092 2.4774132204400394 3.938741875922935 4.467852284380717 1.7774614066790275 +2.8426936727856864 1.985103492785003 3.180853855214035 2.0022018058758597 1.4576287491136708 +3.4446136667857017 3.3812885745430763 3.513495526136334 2.7401793517863715 0.7759046157993896 +2.585371603855141 4.207824791759814 1.3900921230932242 4.431109903844174 3.446758403164554 +2.828586224728273 4.572559071163839 2.876998354446308 2.359987906036306 1.8189945279933315 +2.0022568542177734 1.1242109235150246 3.5823848679658337 3.2771908499312445 0.9295741202657019 +1.8838087051090966 4.814586689320064 2.0472976771620024 2.687141075015925 2.999809855059643 +2.2363467223148126 3.771650740315594 1.3676000344847496 3.731925938153208 2.819077048689343 +1.1912142920847137 4.494052034600896 1.7276031171146378 2.1685291244890332 3.332139387445927 +4.598700607877427 2.733598120056733 1.9143220323777643 4.8032521560720305 3.438680640836411 +4.1613877322112724 1.428663152433396 3.676578161450383 1.3716120514126504 3.575003831794401 +2.5475758446260137 3.317145319796343 1.2449911119337056 4.327320452969886 3.176946858813737 +1.6642592254887716 4.814993570777638 4.201169365534918 3.3504533667615877 3.263563179279936 +4.077431265827016 4.330868746923562 3.3419315957205527 4.91504566217894 1.5933983880102949 +1.1398161361755834 1.1470457926514093 1.9701215547394515 3.006915387559618 1.0368190390355927 +4.345563582215027 2.0106315197998077 4.481435937635842 4.844712318437949 2.363022950574807 +4.026742869369513 3.624419153434362 4.7459481617908965 2.0495992984178386 2.7261991059746626 +4.948674912005144 4.226080629972808 4.224616648396534 1.9458006174849687 2.3906369442400424 +1.3064324803506429 3.170114780732503 3.2284700479903528 3.410603161460433 1.8725608635713091 +2.338910566393853 3.277723721125841 2.7753633690958406 4.096301365714829 1.620570063406582 +4.418942317900452 3.381274490512379 4.112480670938673 4.906444550264088 1.3065730602112329 +1.4191302678469135 1.6968264906654227 4.959165864103738 3.1378458740372284 1.842368502331588 +2.3657593712161025 2.6980430107643127 3.125810655450903 3.775816163448511 0.7300134091498823 +3.2433089877836667 4.702862440222743 1.3021603908977424 2.914892754051985 2.1751326294485804 +2.6570091657818997 2.914037726198647 4.894827870182671 4.584560529540812 0.40290135708244645 +1.8546483818556019 3.262260406095707 1.221744059333373 3.296323330348249 2.5070402395075235 +2.196390417429528 4.804598966293525 3.4337887197689705 2.3836661285172265 2.811673752593731 +3.3395738360261396 2.655644716706806 2.8392458064013555 4.132662253593905 1.4631080432152357 +4.848207876938219 1.338700737875881 1.342465644642092 1.5768628035171806 3.5173260279960163 +1.8458537931206256 1.0172790444442268 2.6495741119006286 1.2318540659404364 1.6420920323969441 +1.907932664381982 2.4175043984787257 1.4228416340580532 1.582710408228868 0.5340612110472369 +2.1266898798244362 3.9098641896867266 2.0612676605804228 3.128014401564484 2.077897790737786 +1.9295538211285348 1.743611090874038 1.1488617057904595 1.5618490863901595 0.4529164111280336 +1.8546823350276886 4.50869713269301 3.651882770156698 2.9655520029155933 2.7413216645056924 +1.2863565542984419 4.863492404716425 4.282401353051891 1.5713939105133 4.488369664571448 +1.9007107091633322 3.53328775644012 2.01222526022586 1.0018385975217954 1.9199450574079593 +1.153722098392317 1.8454114637623467 2.5723819565917467 3.581197319333252 1.2231690865408873 +2.3617594503453803 4.7021029014452065 4.865186125065832 2.865106691137495 3.0785589504066575 +3.1507949073714543 1.5786694568475053 2.670946023416826 4.061677838333772 2.09897913596284 +1.8978301294993711 1.3746100164412236 2.4446490272857324 2.950792806063396 0.7279703369670449 +1.7123939686211145 2.9878526224737074 3.6490324263864196 1.896038436317629 2.167898223373221 +2.1823321084869725 1.4541313905144455 4.799452700199128 4.40817447836053 0.8266649457554607 +4.374189897252478 4.941754885928905 4.003403974969816 3.9257974860221303 0.5728462127814583 +2.8291530637870577 4.032399654417855 3.7465308507278348 4.557308187301112 1.4509177259119468 +3.85824156292856 3.792324594031344 1.0079157888396648 3.380187243555819 2.373187076833534 +1.118022160193778 4.015550353813531 3.4759024846858604 3.234791818145563 2.907542602669968 +3.3369141757034386 3.650165890816201 1.5691759907981782 2.08124215326174 0.6002819268987248 +3.573350619826682 2.025650998196914 3.0254916777496206 1.7050206954057554 2.034457601918777 +4.507921642444375 3.6898915198594744 3.8074913600124356 1.3711064854958357 2.57004757509069 +3.606117902382774 1.2551718832376344 4.823795691843765 3.156485250640377 2.88216434165025 +3.7233015399932556 1.229681869328921 1.7924687734010303 2.8294737059331507 2.7006514569673836 +3.1949265640065265 4.384281643822835 3.453105482861188 3.5036451226301564 1.1904283939291913 +1.869977172000779 2.305572425256891 1.0052296828348348 1.8720335284074268 0.9700990317275295 +2.379501006866191 2.7931820118952086 1.0283905281708505 1.499486223878177 0.6269474686413432 +1.9057397079247167 3.7068722994681647 1.3366559616292153 2.742948403308193 2.285112041857781 +2.3141145738827906 2.1919480102382387 3.2057563999387235 3.399848371034988 0.22933896859616235 +3.298192250929164 2.2732711883414396 2.1823881848105398 1.562154858247934 1.1979785323263792 +4.31535120420371 3.5444298133480667 3.7507852787596394 2.686902971774242 1.313836121438047 +4.394583486041673 1.0497722101403046 1.805522479755572 1.068213917309195 3.4251111496787487 +1.96417807177238 1.5280326701290532 2.7680630100203705 2.3941264495998738 0.5745009683140061 +3.322130577800421 1.445522758935594 4.417184103928872 4.481432485170632 1.877707314870129 +1.4548980764640693 2.522563183602001 3.0124688052842 2.67269010823323 1.1204277504460096 +1.55283583603179 2.3625453933403735 3.7266225003622084 1.0644401532757763 2.78259670386053 +2.4383640334958945 1.0171800227504995 2.183734114926335 3.771696064940478 2.1310530605996383 +2.9770348273141694 1.5484670450467686 4.31844956208549 1.3415021164933334 3.301972441185733 +3.3246567760489416 1.0290819100455795 1.64128560073893 2.957298532328532 2.6460449734532885 +3.1930301167191883 4.260524067073011 2.52359192742623 4.97512303077358 2.6738638867230105 +2.229943115148813 4.590692628837953 2.8942396787678883 1.874788670832574 2.571462351263156 +4.908636734920594 1.3911493090945397 3.7588126673231064 1.7084306261406295 4.071459726639578 +1.1053089466831625 2.6949514523869285 1.701663042872695 1.1705826037851854 1.676010062237554 +3.84818633418577 2.0965568405223234 1.1945784278129188 3.45002426410191 2.8557383989968357 +4.336759040446079 1.9689567723086125 1.0066098679164863 3.1650166613823463 3.203936245788375 +4.804049934745677 4.1814328037889945 4.134184782415293 1.7778228003037495 2.4372307815431373 +1.368095561034238 2.5641527459633426 3.1119382421725446 2.889453356503637 1.216574006779547 +3.7508518790779295 2.1093871661421884 4.519585275151384 2.284198136992233 2.773330499825178 +2.4416302771748883 4.967381819088896 1.8084591146481221 1.1359386187684541 2.6137529854328663 +3.547780310598854 3.4967344158907263 4.491923579903533 2.7585948048104254 1.7340802536019855 +3.563463656950838 2.7987367907849263 4.815832251728198 3.33691576376609 1.664932778883914 +3.6780204515654487 4.314015306677447 4.593257165935155 3.5474809717426097 1.2239841927364814 +1.8310568005660173 1.9425074729268554 3.565377981449955 3.5018267340987204 0.1282965837798524 +2.131380890336328 4.040636192251704 2.1595323446859958 2.278072780900224 1.9129316879883171 +1.2919602270553132 4.403226813750948 2.6021239827467433 3.382818775671234 3.2077194598636765 +1.1237535240637162 1.6995551255929136 4.14004991153824 1.6489855922349603 2.55674576898633 +2.953443674225824 3.8173017287054236 3.027769419065251 1.3983983862419898 1.8442073367419456 +4.596486154180068 2.193619695003086 3.793288531823435 2.084007910730327 2.9487976299302345 +2.348114222046897 2.915571432631561 2.519437407594112 3.684979993156793 1.2963399263328532 +1.3349276302382318 3.7058132808730972 1.7250534331050225 2.50429075438342 2.4956581439090253 +1.9942711217111282 2.647442099969568 2.401581332921179 2.69669491498377 0.7167456683907486 +3.990960889638032 4.239624314745278 2.762887926377674 2.6167789320341304 0.2884117494384524 +2.221374431679177 1.1201412991150557 3.797764930798689 1.4545978861963835 2.589043493486985 +1.983818032989575 4.841496286057001 2.482485404799913 4.451054672682976 3.4700994165165002 +4.49139116619064 2.172134551104133 2.3927626870539354 1.3448605063573895 2.5450049561702426 +3.8561372415435846 1.728004174007323 3.2335009855629213 2.290197642112996 2.327825498379358 +3.7852906717157326 1.1950593332084805 1.3198438614802912 2.4730094410176657 2.835328771203587 +4.820715458097286 2.083507832368149 2.996511921608824 4.39113866633366 3.072017145696217 +1.090733169601556 3.690544732280793 2.791853912327732 1.7926270519845144 2.785224314103268 +2.0175709176559615 1.3068253073525313 1.6424577596921606 2.007061043090965 0.7988084105909152 +3.06584936438239 3.7966858966713954 1.9736402206201458 3.0537060977091204 1.3040952172982594 +2.9518637096251688 3.6492092840447734 3.9047868075886045 2.701405713425264 1.3908331704242487 +3.7646345925491875 1.0984452257489847 4.4360641299076615 2.661788230588975 3.202595932449425 +4.8559163220812405 3.589067996098561 2.094336582402238 2.5567361021392707 1.3485985306599424 +1.344601822347805 4.690014389437305 1.8857547670342178 1.562215645516412 3.361021095916072 +1.4774709082622737 3.2654142413158906 4.289537410308814 2.451794801033104 2.5639889352644194 +2.910410298961293 3.075711513380491 2.3348103596026712 3.0598282585119483 0.7436231876611193 +4.160130739764405 1.978080724708636 4.9326984141491526 3.556213645681927 2.579932670832158 +3.019739870181409 2.1944913480004486 4.0676664179635535 2.8870065854315214 1.4404835172664854 +1.37727569203583 2.7114273281418066 2.1967944531610533 4.363450076057417 2.544475815635252 +4.913743589799818 3.215364905402686 1.0537208660537054 4.206088601646329 3.5807698189104387 +4.218320860862403 2.935665028590067 2.656918603801188 4.975086191377468 2.649359724188369 +4.651066013673143 2.451354338797647 2.5123086975313207 3.811939724934865 2.5549505396335075 +4.132668574310895 2.680022235038304 3.5621286321437533 3.8924087479790965 1.489720222698969 +2.3354793034535035 4.581844660268727 4.488297958864125 1.5649944403165001 3.686714089518268 +1.5505446315433007 4.526280483415044 2.4575432975022546 1.3764514275314106 3.1660327685341327 +1.18915550533259 3.8555683256212645 4.212841645159843 1.4135455667311336 3.8659818756567077 +3.2386137414789453 1.6898402097108765 3.385287968615159 2.667045404974842 1.7072117129781976 +4.2192234406442335 1.402675145024339 3.455275397790206 1.9148885564549212 3.210254806478487 +4.3473894734971275 2.1082191560894614 2.323265501443363 2.7665566591881405 2.282628038225732 +4.220551806031741 1.4883061951094914 4.774637517778229 1.9452362087246393 3.9332782568842073 +2.3504525156260385 2.0321789196354 4.483903681491373 1.3978418249663709 3.102430638097064 +2.2279782112788635 4.593060803547679 1.4730039850716907 1.3177721528735553 2.3701714262855695 +3.2577884726128206 2.521292942108861 4.2636022420461455 4.790567896600198 0.9056039242030093 +4.493056400591524 4.4209449109330805 2.0822985225839923 4.763070788913793 2.6817419732076715 +3.4646434546646634 1.5736293453969226 4.078908021122018 1.4181615891848813 3.264277245657279 +4.466960792595472 3.6047518909664102 1.8562422713470847 2.2988569799970833 0.9691810823379274 +3.6584683024746716 1.5894542213729048 4.645689209586054 1.8913095768814894 3.444913123556982 +2.72164325198609 2.8164032171820157 3.6347495916780335 4.642023047411923 1.0117209425676752 +3.567388629017798 4.262374822144757 2.5236217990075436 2.421286976239462 0.7024800528044034 +1.2887225488462306 2.3284444037956646 2.1330575096803503 3.3507299843205356 1.6011707564016537 +1.6914131370071832 2.6079577336450703 2.5328238762941218 2.2825075263499817 0.9501117158921178 +1.4016799273978933 4.124380648004437 3.0534037391250815 2.000832394246612 2.9190761637974885 +4.74729141632814 3.199086187410471 4.066486275954585 1.094162856819521 3.3513647874838646 +1.8688774575028955 4.517118476041423 4.292450018364567 3.4985092300030676 2.7646921108315223 +1.6404050789269147 4.598095783382663 1.2441619885386848 4.826836168283929 4.645803330042845 +3.066805888888328 4.322517465125011 4.842728217835511 3.005198507836561 2.225607107695255 +2.8394188719858446 4.8611022639107455 3.6573315124387213 2.908757854509818 2.155821481136606 +1.9902320146733272 3.00124883095406 1.4826389657186327 3.990486436707008 2.703970033218789 +2.5021439056103714 3.433527448417924 3.80536319740195 3.3912423153377196 1.0192994696233313 +1.3997552297694176 3.4354603620473316 1.9804148402180886 4.154739570768026 2.9785539141441935 +2.177877461288311 1.0362638537535482 1.6301918355360203 4.928517597987044 3.4903057837611686 +3.8751528464981733 2.729248373321807 2.085681257956901 3.1765625052309145 1.5821248235520842 +3.265054655959956 4.4133186602669054 3.4965115420683803 3.303513059124653 1.1643704900097782 +1.0988773724201262 1.418669429846609 3.137183496778467 4.345686699696821 1.2500987766800602 +4.318217263310485 1.6981268442670583 4.550699773054527 2.9041631797149448 3.094504250630378 +1.465502337305034 3.3702177959587303 3.3467212505011066 3.90096735146092 1.9837161386810152 +1.7211984642967861 2.140332957333439 3.4760473321169547 2.879746249446381 0.7288680981132256 +3.893626084629732 4.969221582498607 2.754630910330404 3.3295817401483903 1.2196204867679878 +3.3616215182737763 1.4590400316257024 3.7136577525150605 4.0725261955222605 1.9361309027858646 +4.682507276180548 1.1565520119388064 3.146521825319625 3.08780071780964 3.5264441997430285 +1.1602174150404951 3.1048883150032385 4.725462384145711 2.7276081500370375 2.788039893887435 +4.720548848409258 2.7827093540163217 2.242238441458733 1.1062044483014826 2.246284741442607 +3.6529619049955735 3.69718849801988 1.958392442773838 2.095875232618721 0.14442129009972857 +3.9968953015554924 2.9865183543195593 3.1619331942362088 3.257927441910638 1.014926830413101 +3.86290028119876 3.0294193435298373 4.631475715096653 2.2939255223422834 2.4816992922397865 +2.3297314616966274 3.8620121640721137 2.5965529336148574 2.760181471815819 1.5409926831059573 +4.248987364057792 1.657862954202027 1.5819438433677813 3.6524945466710186 3.316791510224892 +1.141067401051326 3.324581905637834 1.5351216612782097 4.248811841611469 3.483080531164449 +3.975180615384855 3.0341253101683514 3.885475015807208 3.480429573152754 1.0245227660190228 +3.4021685973029 2.663680643747487 4.5991873864298825 3.2264405588643568 1.5587810334160719 +3.402430582407227 3.2090920206940097 1.1980704088481926 1.4435353252391199 0.31246251715068246 +4.80220923172252 4.350070780373612 4.787151281573532 1.1680885995116737 3.6471967147222757 +3.974994663812271 1.3510982311517048 3.450490648431637 1.8964372333994102 3.0495761190864172 +2.112933934584418 4.914071486608069 1.0640922810694295 2.4453702980824863 3.1231875617132854 +2.1990635425331573 2.2888677160787383 3.559029980901969 3.054422232122273 0.5125366032926015 +2.0755586802290265 4.6066903742776155 4.799348575459957 3.808628570220643 2.718115851357088 +1.7581613216108702 3.2619762442576428 3.4585128929914917 3.3085162759981506 1.5112770449803588 +1.3115815695789954 2.6175908477024734 2.91535046217067 4.153417150711299 1.799574771944352 +2.08358772233185 4.7949210871313115 3.9886449781238116 2.4159119277365875 3.1344565498432218 +1.3243499207257026 3.5574856768084975 2.2264145044773147 4.635184280316149 3.2846715418881907 +1.9374167361267047 4.277899462994981 3.317273375801656 1.1367322982894335 3.198846477323807 +2.000277177470735 2.286220447713837 2.5474732409676446 1.8575295131829406 0.7468506552897797 +2.5771039011909314 2.4831971160574384 2.6659016552207753 2.8874762613398834 0.2406528420171803 +1.1676287731703687 3.4142087032418966 2.344780019754106 1.733663164873804 2.3282150228273557 +1.9200440929839622 3.009105830600047 2.2232248507457903 1.7375376465179748 1.192454413673746 +2.025863332633495 4.840677806130268 3.150869227779904 1.992044165964475 3.044019718086341 +3.8843929223813105 2.1994571794681765 2.172030555084091 4.126640316835214 2.5806022123680776 +3.2796932004976136 4.2786485747270255 3.0232679526060053 1.437618524894448 1.8740853628647267 +2.5298683515278686 4.744606996197044 1.5730859361413683 1.6635337282602332 2.2165847755703445 +1.0689900877595133 1.6160040451140563 3.293368868382885 3.0269940675229456 0.6084240331165839 +1.097945735229895 3.3205945297323147 2.6561076025583783 3.2794456821536024 2.3084016169584793 +3.0663513925669634 1.967242204071645 2.631616642817101 3.8387170486502122 1.6325233223440634 +2.1604257101331417 4.822951057604746 4.706502417956907 1.1043298763280212 4.479362482049638 +1.1766673664625533 4.135713745173278 1.958112992217516 3.527206481743053 3.349329761345168 +1.5425702816682851 3.9011903353529065 2.478966432912693 3.0136278120991213 2.4184605326605557 +4.339633384024622 2.658810230966072 3.5011499415298193 2.5730006662787437 1.9200592566394359 +2.5331797985561297 4.781091473599082 3.605853962513487 1.3861056168202683 3.1591754647379418 +2.7780525053942133 4.649011670940917 2.2690826704595954 4.591431326102131 2.9822460457695152 +4.297986235221245 4.770580195163588 3.640498786615259 1.858366646664289 1.8437299192723997 +2.3773992883692 1.5594152748313315 4.004024217288489 3.207924621539297 1.1414343663809787 +4.0119792455912435 3.8902865236407504 1.5780750190245758 2.8030812723848584 1.2310359212255007 +1.2538953587071653 1.7083885220649164 1.6865749870748146 3.36082891854244 1.7348458901509771 +1.6446517387265165 2.4409126218310746 4.5487955325504155 2.3203029612698267 2.3664763962937005 +1.8513486130897587 3.048737113347121 2.066805791514303 3.9626384309496574 2.2423025258196088 +3.1223728112773084 4.892781722383983 1.3349023724951503 3.016621949434174 2.4418289145609466 +4.132194938397877 4.0019713886670925 2.4411727805325034 4.431087792534699 1.9941714890891866 +1.975195886103763 1.504058988353167 4.896344136620148 1.0363792942136776 3.8886113923913848 +4.7725915872583595 3.3767796565298602 1.0000500105117727 2.0371789027644787 1.7389443018996744 +2.651741818304563 3.2556626004302074 1.1824052469073436 3.3577869466050174 2.257654944951241 +1.3281935334632538 1.5497998498373615 4.394449953259195 4.026327479312824 0.4296783858670314 +1.4619439965808803 3.0854468051177415 3.3108063175003144 4.293507074993979 1.8977518668428965 +4.4177425413606795 4.911863692482404 1.1977639164765415 3.4814332753772708 2.336514809019606 +2.0004856372411184 4.739434815361642 2.7817966887390218 1.6681373467319642 2.9567008185419583 +2.0075757599345216 2.491212314758133 4.649359518007227 1.0561817611611728 3.6255800514476153 +3.7569662827849846 3.8499540988817973 4.474483768427084 2.917303090490783 1.5599546139810008 +3.372367280758663 4.301533245235408 1.6116637572547874 1.882533365751263 0.96784282522992 +1.6332897392850545 2.798483400163066 3.9545595673382987 3.4155921930250814 1.283807656124696 +1.9221306024614697 3.9128242754237395 1.985440523270098 4.967110241815023 3.585138157736712 +2.4511387494449983 1.6208131195665785 1.647112059611064 3.066648588071398 1.6445438903435237 +4.522343821215596 2.330841729607603 2.4165085741999897 2.767073084297137 2.2193640740675833 +2.9276517382911753 3.433295035570917 2.3357027122150296 1.5945044154174575 0.8972458187473213 +2.7001804010596238 2.7274459215125346 2.58158316367166 1.3820840325279025 1.1998089740538689 +4.038493561466097 3.934779204766587 4.364290328853812 3.2357141233326288 1.1333317781895051 +3.891710434897184 1.347159921441393 3.689473763142593 4.401381021691549 2.6422621482931663 +4.926143861504232 4.507614006251936 1.505708526072544 2.1605252100285735 0.7771435705998463 +3.03384427315792 4.300196486940246 3.75633257911875 1.1357649095481865 2.910502162883562 +2.7949254505616583 1.0472668662649367 3.538607431627406 2.1071128386857767 2.2590899266933007 +4.817703034467543 3.238789384135681 1.784136186297474 2.1399594886161215 1.618511210241447 +2.401645166497015 1.2721803684998139 2.6190713151135347 3.9318452764147143 1.7317812227256795 +1.6685534445276873 4.06420197470422 4.428980914405267 1.9445713588022042 3.451292905580283 +2.0438711441381394 4.340697272872226 4.521829310417512 2.5116424392991457 3.0522551535630593 +4.098581628660229 3.4426290650368454 1.1484896832729339 2.6570758201868134 1.6450245889386674 +1.33770559807909 2.4434530809445754 4.726953935780227 3.5532452232211122 1.6125351586246206 +3.775591414626049 2.079976703645339 4.1242197686400175 4.925376536257463 1.8753563433101001 +4.791953909290672 2.8602703693266114 1.627914727934058 1.0010727805526907 2.030845175183217 +2.492081789881867 3.7532042772625136 3.666849211528784 3.227417567895006 1.3354887111480325 +1.55577292742545 4.227182811036186 1.1134559452379182 1.9904647954981982 2.8116854891128886 +2.862090038473038 3.468660536956829 1.1666527729101142 1.7392301076770589 0.8341298303739609 +4.915776367700541 1.6028416853483605 4.0802601850323885 4.200055255606415 3.3150998579930864 +2.9400206242814217 4.943681086459627 2.064165219194118 4.4541008057105085 3.1187252773198253 +4.414535711216205 3.2629940966575273 1.6523455365632058 1.5393827261486588 1.1570690068432217 +2.2357577432848137 2.6624336334142376 4.902473809217122 2.9153227308339607 2.0324423050943166 +2.007946024481981 4.306349471106531 4.215810322918411 2.5952251118429155 2.8122864060781967 +3.0231728370061774 2.3638428194517154 2.403099500460099 4.24435536245738 1.9557451831431718 +3.862986842517883 1.2290381641672372 4.513886322126238 4.115111404957575 2.6639645408203143 +1.545284949169857 1.1731622271966415 4.257421422346393 2.6676346701316387 1.6327575563219092 +3.3485683014678744 3.736786264612712 3.659943291479778 3.7015301975149297 0.39043905755175556 +1.5193061387317255 4.4348806908468275 4.499633400804524 2.3113059273121332 3.645456363774331 +1.3899558525108469 4.556201984204124 1.5358345170115233 1.9760244023068982 3.1966985628268105 +3.780217084418316 4.363539313337537 4.770205307270107 1.1331229551534476 3.6835625227257562 +1.9598546562877543 4.254791366961216 3.3860923286496956 3.929178141146517 2.358320738519691 +2.2796296280822665 2.3486851947589003 3.0033676734258408 2.3057512731107233 0.7010259005754733 +1.178294429869692 2.9811534244724673 2.1706148399613356 4.07765576857768 2.6243295634957926 +2.9044644084436038 3.818485943398385 1.4477366826228004 1.1742568667130215 0.9540579521554973 +4.995665794961622 3.0139222090971414 4.734228705769145 1.2086406140016686 4.0443885857973205 +2.9345448630734072 4.3699911373250675 1.6005451495394318 4.240144312412008 3.0046613364738093 +4.315084411254221 4.890037112506642 3.7080531276068407 4.1951213834940395 0.7535290933802448 +4.574928703252125 2.0706333931072343 3.8434324569156497 4.727389362129221 2.655724912465229 +3.0083687729600403 1.2441400075457278 1.1898864799522642 1.5475377091075688 1.8001159791612342 +2.1454342550054157 2.23077402891934 1.6977056363793745 2.4019383624677317 0.7093846696296155 +4.238857945937596 3.207629261190699 3.020445779288129 2.711335543734016 1.0765601413618908 +4.862436642609973 3.4211668121268968 2.88434042727157 2.8616574420627217 1.441448314050386 +4.667550543582555 4.853905223610378 1.4881400986859155 2.5310373951271488 1.0594162721483495 +2.299873120583624 4.702782409913048 4.213963984748249 2.1569770940556223 3.1630947063322274 +3.4035418784608495 4.616345146630291 4.112176371849972 2.28717298780261 2.1912391743182216 +4.898167577230131 1.4247495011367999 4.661549206960674 3.6610685562307532 3.61463617309085 +2.4126666863853314 2.7935312333607154 2.7262627171559393 1.791661779750925 1.0092257999779315 +3.8502634950157573 2.679870284717496 1.1836118397330702 4.9031654796511175 3.8993460409330005 +2.334328370563674 3.0009644229770975 3.0594110940062382 2.724348098236543 0.7461037712754945 +1.5634759080198664 2.0718286574049944 4.51679894460424 4.290759890158801 0.5563417761969766 +3.6091731082713454 2.4331631964102485 4.978275224365202 2.32843376675877 2.8990790025877744 +3.9384562711332065 2.4098340276516295 1.3743338683727875 1.5968018679349227 1.5447258572626497 +4.611523519352204 1.3373938008892616 4.649727289274595 2.2766720163378174 4.043676142043929 +4.686999248365538 4.589278524734323 2.5913957475981695 4.6379814122361385 2.0489173293543703 +4.83125561046686 2.5082778134464987 1.1523373165268302 2.01358833467514 2.477494533134447 +4.780112423620851 2.740140717030544 1.051952109661007 4.604148216284813 4.096288776881129 +3.198391896170504 2.469926671785562 1.5792450886954277 1.2597321927068887 0.7954558905691672 +2.816085972375866 3.9376520016243646 4.574340933931578 1.7877716210617534 3.0038107286232347 +2.328001782062367 4.327342873836251 1.7784528633723973 2.337795487014155 2.076109094406658 +2.2459206714009556 1.8210719430997155 4.924109730339367 4.121784551267776 0.9078668046092673 +3.886678033992324 3.932684341891539 1.0795658405206616 4.508793172802054 3.4295359273278176 +2.46436349070223 3.103519077805603 3.548228519789277 4.698123887644088 1.3155908260319424 +3.7193042931836335 4.280572688655376 3.4117605489685805 2.9218698520773456 0.7449933601422254 +1.7917155218505023 4.100171667216 3.20999541543797 1.6736441248144498 2.7729668341464686 +4.35155405518777 4.152041743620341 3.1347360586715447 3.3859000339121965 0.3207623807831362 +2.307204694898045 1.806074437696874 3.363754211390479 3.8795299865279853 0.7191357207796086 +2.482286617177815 4.910974252321821 1.5059475877732993 2.2932300801607655 2.553103474581711 +4.671139643845506 3.207079109590832 4.231782412929902 1.0954501534492165 3.4612213581077564 +2.9951324033437134 3.49051620066698 1.311421419368831 3.408748142757755 2.155037004622366 +3.1887980280678936 3.901969451585118 2.5914798782780704 2.910825593829448 0.781405890278929 +2.241574913377828 1.6830742734688746 3.1127823051314705 1.2023222475281687 1.9904222156307243 +2.7405009439415084 4.176931223879636 1.6426591686229384 2.144513684839497 1.5215748107043847 +1.7739139054749908 2.140454416766496 1.5667223529665253 2.8898142038636707 1.3729253411341318 +1.1127962836031058 4.978341867840981 2.352127596803422 4.6376397032802545 4.490657886398506 +3.7109325152520243 4.880240688500133 2.336210513279407 1.8189185189989372 1.2786213713885337 +2.2515398267239672 4.243531480914539 2.232854113880322 1.9029397386862619 2.0191270998440336 +3.212898201777808 1.096453876282511 1.5063441955380275 3.5994298455590927 2.976633017562855 +4.978720949970054 4.979898983438515 4.9862300833719235 2.5871914460627066 2.399038926542318 +1.2985322379440833 4.095339512422822 3.232473013594859 1.9656449990557086 3.0703394191845295 +3.2845584972642663 4.26540128778949 1.4130611880105053 3.2956390101849076 2.12276985004692 +1.7163976700472992 1.6182524665532165 3.5295070181074726 2.102856726222896 1.4300222153180844 +3.163886676826258 3.488094128003219 2.3464690080052737 2.9405299369604396 0.6767709056318366 +1.2342508925588143 2.4836505822753456 3.719368097315651 1.3751354287218378 2.6563934929084274 +1.4203651109768924 4.626583388218835 2.387324219747595 4.057673563791459 3.6152320219410616 +2.0489957066288182 3.961040273313737 2.036506782813394 3.045888326853466 2.16212060867058 +3.8614793165272507 2.2156146909959014 2.331822015399989 2.0749263555876927 1.665792827936849 +1.6960053563866189 1.02396288856671 4.864388186210489 3.2778966330004975 1.722961557017487 +3.983140017028222 1.0968490602673069 3.407665953756405 2.819977724445537 2.9455140369637323 +2.7178565089872886 4.901700147123517 3.12134901295799 4.51515415577293 2.5907268887255275 +4.3601071331727965 1.0597212990041371 2.50925340837309 3.327794345601238 3.4003758498582908 +4.820780937457313 1.8246264759961135 4.213549597181673 4.267337431376755 2.9966372299698283 +1.397060527761346 4.546676036485092 4.447725506624979 1.4010239621847158 4.38206208920958 +4.024877806729558 2.5353597564725407 4.116941864613673 1.5352920949020867 2.980533434721602 +3.147280568656014 4.607759490408254 3.5166313685886554 1.7787625001335887 2.270063189611223 +3.238899181499514 2.8057624985648277 4.255486143358313 3.3264845826333516 1.0250128223261783 +2.5537174504905975 1.5868182715977746 4.426590689955919 3.855949985392134 1.122730972160592 +4.092365485202412 3.184368024868387 2.281552685787112 2.460195463008984 0.9254040359900005 +3.190530196579458 2.3947356875411923 3.1676961949837983 2.513439998264103 1.0302136048225994 +4.000291982343476 3.7750381687357555 2.358158261189143 1.9823241942374294 0.43816723568323407 +3.5160656255008513 4.621322267519858 2.1125141309675866 3.1966240907645798 1.5481881828957902 +4.149935228878331 2.7349868928872145 4.210464490351994 1.6816828458760749 2.8977259012823073 +1.3728266938531717 4.157901621757764 3.112066919347656 2.7042349724892656 2.8147769451452236 +3.2940139763862377 4.002063585556914 4.824932839903577 4.957020454379556 0.720264803349922 +2.9447429869703576 2.390669188771308 4.900747204471278 3.0718481829106983 1.9109865004536184 +3.4193450875628177 4.193830034047116 2.221964795504991 4.46787456089729 2.3756972885061085 +1.0463437684484953 4.693468489035082 4.143961140186393 4.329919283318096 3.6518624232726484 +1.8145895238808487 2.4304786702591534 4.967256092449796 2.0477587604953613 2.9837533597661285 +1.422628478839338 2.417554785425877 4.437881049328592 4.741850875044452 1.040324954273261 +4.671453351710059 4.416801387303735 1.2599205958988615 3.1378180310185813 1.895084800162046 +1.8482046296171948 3.167719235278139 4.307198933988349 4.493573850217267 1.332611872959225 +2.0959870576618513 1.4174093231897635 1.7230570441796447 4.220840210319271 2.5883176943280684 +3.365359672958948 1.5364354039942043 4.655349243361185 1.5692125443381442 3.587367238890528 +3.6365645694004862 1.4121977715989318 2.246798912747236 3.7321023461044596 2.674683895398613 +1.7611299833006795 4.763165216350533 2.0311728108705447 3.7747774096161852 3.4716527097680197 +3.1527943438387096 3.38180548366082 4.37563535898812 1.8114242238081837 2.5744173802908104 +4.24647601447369 4.3178486941121665 1.4098493085847004 2.0382407753245353 0.6324317313909997 +4.070954624541688 3.3311039201608437 2.1681032320508806 3.9429519535604576 1.9228798841885606 +3.308352350064541 3.684932922242844 1.703996233531206 2.3591280178374245 0.755652421520892 +2.681301555572617 3.234394363865199 2.6656200971013835 2.519207415721268 0.5721436251972836 +4.576974886366132 3.8969762124113356 1.7612446039745087 2.9261434333922995 1.3488467219662956 +1.9137371780207424 2.4169039017556853 4.067405598566784 4.0371679287382864 0.5040744672673012 +2.9186718291117546 3.469065232664751 2.393295148622764 3.9489666780769714 1.650165690538088 +4.403536591485047 4.05787421330452 3.125746649310342 3.810615216574648 0.7671554171848627 +2.911957022928392 1.3348265942499733 2.595340406075425 2.675098111947527 1.5791458706241657 +4.397158877363934 1.496097170740443 1.4812179497461035 2.2894158326430776 3.0115349646909886 +1.096168863302148 1.4401044126714746 1.0682285637316853 1.4927979703275853 0.5463980628966167 +1.640482956681669 2.0167387106207713 2.6386186460102117 3.200781557068122 0.6764580777412493 +1.2048343059733728 4.959475772417793 3.7161540491077214 2.183898007972676 4.055260918503118 +2.0928597549968924 1.5736196729173533 1.9848290945697133 1.6486887802008363 0.6185471475821176 +1.1370274858062857 3.426109728143849 2.2859964304052465 2.8728623320667954 2.3631142796568665 +3.9830736557731563 4.009544011063481 1.5291826971675468 4.68068694806343 3.1516154148506157 +3.4775632277508817 1.346200498256004 4.53237625103444 4.329909264174575 2.1409577215461235 +1.6404328734446127 4.220186568513087 4.069341552902516 3.1594877685392797 2.735500509255948 +4.449796919034414 4.829063401464369 3.168975050599389 4.479646543453738 1.3644423135024208 +3.3783223441028216 2.695354386498495 4.462252271351526 2.552085719780545 2.028591010000487 +3.188657368528946 1.9060950886147152 4.348876543977056 1.6734968522781717 2.9669213836253916 +2.8220726881295572 3.105680652814472 2.261292152832232 1.686427075427149 0.6410174216452089 +4.5587438651265195 2.908652440337798 3.479322608197621 4.514568991788936 1.9479570798403567 +2.4055788097742514 4.391193763036272 2.2880647850704854 1.6091769154304938 2.098465030006948 +4.647517403366579 4.957926827935522 2.788350236238575 2.2955435950086063 0.5824194334855127 +4.324025998247976 3.6745287817287218 2.2136314651967455 3.4984538280763937 1.4396579935602416 +1.58525620188095 3.352778987119733 2.8776430575871084 2.6485011699201606 1.7823138895889905 +4.021162021137503 2.3088498408595597 4.793850660054117 3.135446873846079 2.3837609193955167 +1.776919632101515 4.849043653527914 1.421189064839766 3.6952147848603483 3.8221903377958877 +4.894834303447194 4.23234825751385 2.6911245978473177 4.800906371028251 2.211349563389488 +3.352503457115367 1.7044973678772681 2.8340340674103848 2.2276454258106204 1.7560271224633919 +4.556589215654941 4.762386237211873 4.1096713627612385 2.33264248710518 1.788905821723754 +4.592008474152881 2.1288739183306897 4.045792938042833 1.229380879246575 3.7415516467126793 +2.1143843282415267 1.1868946287820061 2.4821485959238054 1.9696367869640437 1.0596723535728954 +3.1837656736779367 4.836439790376616 1.5470346716720114 2.2716468360946442 1.8045482883079114 +4.586912656734119 2.0757513570759563 4.835979185728179 2.399672343226131 3.498788662340607 +3.2930014035788524 4.133064303160998 2.745565247633368 4.52791981828285 1.9704043977745944 +1.5610125984890955 1.3628556633223305 2.6816305610739493 3.4907259568377706 0.8330075212150849 +1.4785835623099701 3.106912141928529 4.409912764145652 2.6290077450894427 2.4131051883625356 +1.5494748155952647 4.894845001804967 3.819900735841422 2.2132254169839114 3.711186772854018 +3.1104029769282073 4.558279474954903 4.657262254310474 4.204458907742677 1.5170290782318723 +1.1210349712177803 4.4915838390861484 1.6843046036524911 1.629976956977662 3.3709866751267294 +3.4805925384744905 1.664136235099484 3.9332218951717883 1.2058263739217963 3.2769192592136456 +2.007196878162559 1.0089169710303723 3.6093372125451966 1.9397343199776316 1.9452857352722832 +4.887359146150677 4.958687346219325 2.514269260757954 3.0634620396880186 0.5538053995348544 +2.436412010657256 1.9344746788201452 4.660585947493292 4.6063897227837565 0.5048547472932433 +1.7327291697431924 3.653114415272329 3.2509861677297462 3.0165053726225 1.9346474445025192 +3.188883940588186 1.0684190597172307 4.5960505846652815 3.365127462839013 2.451844824382979 +3.347353699669242 3.640786824694497 4.6517120478991085 4.82179658038845 0.33916330440394754 +3.285470359841989 2.5804541225803805 4.3314938068712845 4.3054721496515755 0.7054962944246956 +3.002226174452373 2.590106693297466 3.3174331169431306 4.317566732086668 1.08171609717498 +4.192381588646956 4.116179713164412 1.0218399976331902 3.5523931087079466 2.5317001745461853 +1.1999280280957776 4.439590153181691 4.13340984172782 3.2893224070545353 3.3478193323549443 +4.807091402564403 3.3700896171955628 4.123516688596942 1.8869720205067777 2.6584029385169914 +4.897371570186666 2.528121247921364 1.963196324245812 2.905216591875622 2.5496566973182047 +1.9172128905285533 1.9437057128879216 4.315924756385923 3.723299348659298 0.5932172818788352 +1.2834048157877245 3.951557518054389 2.5168601617131405 3.432556116558794 2.820910832396798 +2.58921013556592 3.309190645767381 1.8344427020961205 2.1646381920097615 0.7920864830492095 +3.4595188327962507 1.9357452571055078 1.7164139093203317 4.776613353635645 3.4185825350517876 +1.7317844990496156 1.3928488673475568 2.152056355098765 2.7703050293666087 0.7050594199577933 +4.01084840842647 2.1654939377778453 1.6559672303219548 1.378865897593514 1.866043480453428 +2.3024790497813687 3.066437961735518 1.4919983809966606 1.6462548950402596 0.7793768608824941 +4.5219546335977245 4.189241260738438 4.722434330019976 3.473092603701735 1.2928855083104784 +1.2240934805353776 2.2310309686616527 4.772664142281504 3.6269043175210802 1.5253487080104302 +4.162914009893562 4.960102488793524 2.506279073607165 3.373954374099635 1.1782910922074956 +1.1541278279805787 4.284701117776164 4.755142169938425 2.2402060265680626 4.015643526013252 +3.8496097966239864 1.229378684915384 2.738242937058745 2.3083649218691384 2.6552600977510763 +2.1132837714899084 1.4506179704792501 2.442358383423927 3.5681152784780976 1.3063133431880365 +3.2009525793692624 3.0762485241682165 3.3769983127670824 1.113128575685221 2.267301763740037 +1.5894726270864528 3.3839974681424807 2.683709018645384 1.0895520740501898 2.400344927123651 +2.015705589995439 4.04479301599609 2.289666424988301 2.9501392502466426 2.1338744422431897 +4.213947059191834 2.4403496365295547 3.074323014484736 4.433891238937489 2.2347423955829653 +2.725016780885267 3.167044139903738 2.875543023588922 3.7940382923335902 1.0193241608179338 +1.9415661174350611 4.727642452895212 1.8079316513590995 2.252527041323257 2.821327065015406 +3.7037586469463326 4.138412159807885 4.168602576134049 4.94290462958052 0.8879568380356723 +3.160519585367889 3.1013754754101925 2.281523298810691 1.3333640111265024 0.9500021371367939 +4.519818236903576 2.3440906149371905 1.0305031709640833 2.033588409638043 2.395823591384202 +2.8107096276106596 2.6178519597871865 2.955229475344858 2.433949799313073 0.5558116413697283 +2.0610790094661837 1.0721404117938942 3.696316931337815 3.9840452929977124 1.0299452218780973 +1.500272643070471 3.1211794882455113 2.979399374390219 2.9716902811440664 1.6209251774384836 +2.0978973400344127 1.3522308572265782 1.223066522361218 4.1845398625082595 3.0539061622755668 +2.100289180415083 1.7505299760752737 4.219933598417612 2.175983445283677 2.073659501826819 +1.8650226243246606 1.3196291534383993 4.987314433397165 3.9916037029956932 1.135294629918593 +2.0269313153979467 2.1243981866419563 4.484850405034377 4.765221351678402 0.2968293427411836 +2.8813649833727863 2.0659545206126153 1.6373206760047019 3.1170946607049115 1.6895636325910584 +2.3610158115107827 4.337595681019449 1.2910568865800602 4.07733643406533 3.4161706188774614 +4.680546277926072 2.001840814460422 1.1787543940380956 4.7562005866924455 4.469181605320803 +1.5380364960495254 1.6789948603451235 4.40087944643981 4.80446863040938 0.4274967717797569 +4.675485092690952 2.010458115841472 2.515992445661881 1.489985005384841 2.8557065771607775 +3.5080445748875824 1.0596293051473777 3.3412017579295896 3.2263280822537848 2.4511085847959224 +3.7196750984351583 3.963558220605056 1.6282902765676535 2.016603936038986 0.45854822582947047 +4.465210391978301 2.0376508570385647 3.0261482228593546 1.0234974393335983 3.14700738105794 +4.042171274553456 4.1681134117725644 4.905330128594578 2.5433173119745693 2.3653680406660826 +1.9458574590115711 1.0701523290741135 4.057460017850643 4.347761482815357 0.9225694635957982 +4.694257638892914 2.0443537204488034 2.4786597640150054 1.1267558938246967 2.9748335837859883 +4.282904204402644 1.7604937423767506 4.523448646622951 4.12375171939045 2.5538817851609315 +2.989064140947976 2.9971975362912806 2.2069283322705067 4.044964201900132 1.838053864870381 +2.479740762170704 3.687299193001729 1.427291672284563 3.212833762481859 2.1555412127206512 +3.485264146393778 1.0614436595201902 3.6053901673614197 4.2664637652085045 2.5123542851991645 +4.68127534893125 4.561539774516168 2.2307202632576297 4.853961690906505 2.6259726189573684 +3.870924444956731 3.9323908976533626 3.9869199750853292 3.844400619523525 0.15520918631594965 +4.003209920634571 1.7381062782977343 2.829518633926402 1.3539410372466714 2.703335671786013 +1.1239805728534393 4.843284715441916 1.3517665018699425 2.8114845990192157 3.995497494458093 +1.130947680766591 2.3132764508118577 4.826155007727827 3.6624259931219774 1.658965502930141 +2.556986054431553 1.730967950571483 1.8943827653148468 4.853743943056416 3.0724785578142852 +4.272477905093389 1.560530760968351 1.6699589553320124 4.3393017474120645 3.8052658585383594 +3.2439017895413866 1.1078602256691346 1.2163513118555476 4.709897327615513 4.094818350894475 +3.180783848017834 1.039327060616213 1.0869881542386612 3.032926115264027 2.893529284536106 +3.836889089809047 4.535197094687136 1.5193244378535522 4.913811195045406 3.4655698542126787 +2.9372202370821308 4.755987464280905 2.453029857174978 3.1496225543818754 1.9476025294023154 +2.8462208645823983 2.1327176400938703 1.0725312800729965 1.9914101824373165 1.163368079571459 +4.826304060557472 3.550629090449266 4.225079000698074 2.074658736167535 2.5003307668114965 +3.6571314090886293 1.4497496518405604 2.051665477268311 4.897343091782027 3.601446280034737 +2.177598805252757 3.2669826970816596 2.0946508917836124 4.1179797622573275 2.2979593081403173 +1.288672346825011 3.4146588020461617 1.1510641175946423 3.5851961387670293 3.2318442264874965 +2.0896161867644523 1.9349889185020577 1.9691777382867386 2.666099515300483 0.7138694245912806 +2.0729022749337425 4.337734512874808 2.615893064241901 4.630840016489055 3.031414898424039 +1.4605393908874231 1.364462082829296 3.7706895889035663 2.159633517926319 1.6139183724576474 +1.8011620266795707 1.8171348836257235 3.0310626542559236 1.5323547925042784 1.498792976709996 +1.0499253326687672 1.3405823546746114 4.246113847528045 3.8517850570332315 0.4898741669596475 +4.231052389906351 4.485113817947116 3.204124247230062 4.052499694421853 0.8856004226602341 +3.4338173868129687 1.011239339823656 1.0907701719498601 1.111609988010327 2.4226676808196346 +1.9888356487901548 4.401855932791614 1.143266406526119 2.398043254541592 2.719766870398661 +4.321155463499065 1.6568809167452732 2.051859564585521 2.6392755796922898 2.7282625304915284 +4.706369897347396 1.6319003024141345 1.0306842057504721 1.27723704628308 3.0843397337750895 +1.405210460492523 3.4739736264014875 2.560082837160675 2.9366555270801022 2.102757244052398 +3.5889910232173423 4.60062416224332 3.567516683880408 3.89238898070645 1.0625175844288792 +2.9017761582153967 2.8319010372136777 3.5091708223658515 1.0066286259713437 2.5035175208634057 +3.93121202717993 1.6831189084807736 1.3215470482406295 4.671620934082112 4.034466223794611 +4.3490304282946735 1.1939633151722377 3.854405952512093 3.439408694947307 3.182243110149354 +2.74464158883535 1.5038761045770728 2.0134641496912704 4.004445705619352 2.345955358265046 +2.171834638554302 3.0705393403439944 1.277055539549365 4.984351544850124 3.814670865479467 +3.8401029127868496 3.557350235021019 4.681209582271668 4.581632144052907 0.2997744868829879 +4.319475652071981 4.2698040018293 4.667914644214512 3.6664766468429675 1.0026691056462047 +4.730799877454496 2.856833152328805 2.545539339159703 3.0183751908225527 1.9326988977841424 +3.0586909000482425 3.034389066811806 1.957906539082987 3.4350133427811915 1.477306700935922 +3.51456478349278 3.497819347009942 2.8433785019386577 4.795505305534196 1.952198623849308 +4.117610211908826 2.337738724628007 4.374887479617811 3.239136970836973 2.1113672654067477 +2.9628090916890164 4.070850750450765 4.651577820536627 1.714053268634066 3.139555193109659 +1.7288646083167802 4.28517460290483 2.5731258113116984 2.002084122650184 2.6193146810988837 +2.2132519030170017 3.892139965089663 4.628991565802636 3.733561305492449 1.9027507656152094 +2.670458677894275 3.2439644474598635 2.9372253180738768 2.601215451290843 0.6646890237551466 +1.3586176871194597 3.2095375639795427 2.3486262269807017 1.2642476439800392 2.145176286887926 +1.93522119952816 2.5591004370755464 2.6785278602780487 3.6504101346724562 1.1548941329510487 +1.6243159771458537 1.336639369262688 2.8218921339995577 1.122032203428995 1.7240306303202746 +4.160861910930873 4.358950703908133 4.178115267440486 1.0105314761205806 3.173771611968286 +4.972278968189845 3.403883985697152 3.3816632178480908 1.8302877887562343 2.2060436403430908 +4.470020279179595 4.2541570845578125 4.296250391608054 4.898379017094041 0.6396528749423124 +3.423002243074159 2.6021484694718175 2.9004085056259417 1.4518117423165138 1.6650025526430146 +1.120436539960136 4.9028944351419765 3.4394467958308583 2.8047743517907016 3.8353352969521906 +1.7962949603825495 4.631357864633642 2.044828660023034 3.6690945106744866 3.2673875228771267 +1.5785900628149174 4.023364100540423 3.280236800271912 4.938272373650822 2.9539807139056617 +3.0522249620234723 1.9657225951528234 1.7531971877401804 2.568022861831769 1.358097298566761 +4.769974756783174 3.2204466186015805 3.513344437145463 1.5405543815054519 2.5085729119658122 +3.294001852704858 1.2087495969303306 4.99045646913617 2.7868367611895732 3.0338452148162403 +2.564196621911546 2.5377264629933904 3.7125316215197053 2.7181710795419973 0.9947128011417936 +3.0049557683389168 3.885926496363763 3.1891665828510494 4.388484499933723 1.4881105099662963 +4.523365946466213 4.597503467625747 1.9565216300817898 1.5567426392135917 0.40659514702376265 +4.945835833794082 3.3940462109772755 3.7734663630668632 4.685641848994553 1.8000319859961782 +2.8921796946479517 4.186519972974198 3.6313305550210098 3.5954309649300717 1.2948380349164763 +4.791853093529738 3.021997724952836 3.4645669637022842 1.0816252738655323 2.9682990285418547 +3.2511976691827122 2.4634068864833853 2.5023319843575274 1.9005183331673878 0.9913596663496176 +4.4745122566886435 4.196467133381908 3.1588571258386264 4.641694670257548 1.5086803086581981 +2.96081794926811 1.055010971587806 1.6334092196231516 2.253012441614802 2.003998101016408 +3.8844634050743707 4.065206796879908 4.993640378038009 1.7114536349346068 3.287159562644486 +1.951191552128249 4.567836124132975 1.4289090199329308 3.0783723836392984 3.093146974266066 +2.2485327156911312 1.220696543808372 4.8560282527231085 4.6785718284626565 1.0430426543252729 +3.971011320279088 3.493621726823222 1.693808422175708 1.6479897786172617 0.4795833316927235 +1.2285438484862605 2.6586280756879637 2.9994689277412974 2.6818272371748004 1.4649358827187744 +4.80720388769395 4.541320390405179 2.8820403838777646 3.403552444922299 0.5853792479627423 +1.280675912445068 2.1162020055487494 3.5135137860950003 1.4679528216559627 2.209620671403548 +2.420744727414517 3.4260228733445004 1.4967782049190221 1.0778700567610642 1.0890675770022513 +4.218168048372048 3.1628800125947962 3.404152366111389 2.742377812963952 1.2456236982524458 +2.9594925178100286 4.287314239164136 3.885599849474979 2.3056696354136905 2.0638047400380524 +2.8159027846836873 1.7883100261804659 4.622558895181629 4.230049941825231 1.1000046162599477 +1.7581839768661096 3.248228340750018 2.195676324513135 2.6173268705400083 1.5485546129558885 +3.123397505185751 2.4793806029984573 1.3138818241266512 2.0053841489798 0.944951446149604 +2.9290586069431956 2.649009429666479 2.715211940210677 1.6118010650067487 1.138394967140871 +1.705479658131332 1.098909771844966 4.794197294244075 4.117207400228118 0.90897873657704 +4.379362241753963 2.8058717344690174 1.0737191584566745 1.987280756730819 1.819468925361751 +3.3721766661106827 1.1381457089323788 1.200004954265474 1.9668595859760631 2.3619822911713357 +2.3400864029153223 2.8879255149939205 2.5841767557153856 4.577396580530731 2.067136416098363 +3.9642383113793915 2.9313019799009368 3.112917608165139 1.7496118177776556 1.7104268891104961 +3.1739159635172136 3.7551270944835315 4.458589211612934 4.680412408188115 0.6221028124819704 +4.0157978359433795 2.644518987280146 1.2274955439576343 4.159671686926327 3.236983567178852 +3.23763300117027 2.3475797053058742 1.7839297878826996 2.867664975323534 1.4023825533628453 +1.6586606514621969 3.5496651829897585 2.854952784943565 3.5132284730965355 2.002304926795876 +4.154918854153549 1.9146734606314988 3.844948422035208 4.147463829146883 2.2605784646272973 +2.1375910289757405 3.6932960156463754 3.9037359512462753 1.265418013865141 3.0628319484194564 +1.7379346924375723 4.451253538476811 2.482036086729307 1.1318000087963038 3.030715530435611 +2.4597808773968213 1.017862555404517 3.540709213243442 2.8932142794640376 1.5806258686251777 +4.280505335307328 2.0472772792659635 4.792560642275905 1.2301021757368122 4.204571069218162 +2.911524171423377 2.2977499577670404 3.502201911856329 2.4365452657080935 1.22977350468668 +3.805307986094608 2.9915715188677665 1.5654514707198164 1.8418845610282877 0.8594081053331486 +3.7787505200846163 1.1383844204927653 3.048130758491593 4.246379342607183 2.8995401030523613 +1.9753653419091295 3.591540737441928 3.0635074661551664 3.661581883055156 1.723286371232553 +1.6879108567483097 3.228046505927484 3.668013554870767 4.811124965870066 1.9179993524058774 +2.036563419590312 2.541030137047799 4.807361920404647 2.1870054322609884 2.6684742445785194 +4.23304769362095 2.5548799734822842 2.1977175082490166 4.582183941646482 2.9158064182854524 +3.627225099377017 4.319575960549843 3.361635917046521 1.844062621459055 1.6680462890600356 +1.6185631868999018 1.9743615649889166 3.994295223227131 3.307213020376375 0.7737405503946533 +3.4164026251429065 3.1858987224782216 4.053061236823311 3.7362648129380482 0.3917805805934509 +1.1237231784507804 3.4758303822990144 4.963622044858383 1.6052681038724885 4.100115789990601 +2.466967672513717 3.4983550426745076 3.870937273718542 1.8951318904348993 2.2288038989421692 +1.7238508988294452 1.4950810024582908 4.068487710168112 3.4068642678187793 0.7000580297031451 +1.5020151622102982 3.9325414168501487 1.5410055808020884 4.892604196080237 4.140129364214121 +3.4665166014004747 1.6541677784155278 2.4466209252211875 4.0872355495374 2.4446317926622716 +1.0148973772202514 2.8753107288343993 3.7844464815425605 4.576238590891652 2.0218982623494366 +3.682681294569347 2.5056975126467997 3.8707802383079097 4.645271415747429 1.4089454946307731 +2.840666083857433 4.781003886156546 1.6148371499421121 2.6828653836777576 2.214857804710594 +2.281739718585013 2.936917209500733 2.835042520184374 4.046851263307605 1.3775841079631126 +3.876752894485447 4.391367241251286 1.4518137820030068 1.0633309451963906 0.644784336340879 +4.245131548976121 4.131461238829026 2.5049708305005605 1.7903392806247322 0.7236153615608677 +4.319917384446963 3.050149526398529 4.582839913497868 1.3312411398631014 3.4907312984582513 +4.156428282502262 3.369454615486886 3.2213007093004005 1.061106408318846 2.2990795920473945 +3.6407427423284857 1.7759666503493685 1.8327598737399273 3.9771569371127877 2.8418002460797727 +2.4865126965576643 2.9332974472834046 2.5545551280328436 2.569170252188988 0.44702373017006763 +3.204264410631321 3.1393976222959807 2.1031693644139637 2.6001645009758345 0.5012104009246959 +1.0606477043436628 4.205817484591607 3.0686041692834567 1.8143015730970316 3.38605492415361 +1.8566809696355269 2.772163669688528 3.1020301846839082 1.4095966915581934 1.9241724721942268 +1.0476013557525334 3.384088561134871 2.5498836714558224 3.062479947248022 2.392055058494975 +1.5514461056193847 2.28086311768022 4.929896015798029 3.6631130791936193 1.4617756961845576 +1.997902309096915 4.269056436407471 4.839407117756773 4.866698155199241 2.2713180910485566 +3.959867119120104 2.6131922797131892 3.9481968696387044 1.1814318759270233 3.077096302282403 +2.439861483797464 2.8672725957258014 1.5092965369796003 4.890537430624724 3.40814762583106 +1.8389082755390094 1.1756498860786464 1.9809611573243293 1.1978775118402405 1.0262220456676054 +1.9035546780443644 2.3787289090452752 1.1976937083573858 1.9333406357151866 0.8757664937289393 +2.998498766119866 1.8089969521181515 4.654190702034141 4.4330573216672065 1.2098820345082726 +1.9800836332002607 2.2147875241031847 3.8432316373089037 3.9123461432962805 0.24466861536137155 +1.998012878150345 3.689298765823365 2.4088970049002545 2.659800074809589 1.7097953983830476 +3.883634062741723 2.233498634363916 2.3577504861107537 2.091074268980678 1.6715451345298507 +3.993930796731259 1.4216687790550013 4.576563112128537 2.029113066431904 3.6202256314903507 +4.490353162297705 4.843211059277566 1.7365235718692338 4.642365553649713 2.92718744164752 +1.1572097107899686 2.368135215218626 3.647681840902633 2.864799076001287 1.4419590843208328 +1.9650900275284457 2.413270024638767 4.300933791285132 1.14966480947102 3.1829799725341594 +4.775136389258412 3.130219663340537 2.1316674806638845 2.553750861264883 1.6982065290723471 +2.4972404516188167 3.769224436467063 2.5814427792964145 4.23668491141585 2.087527191117212 +3.956587038967496 2.2251279947529556 1.2222647642020146 4.005918460961791 3.2782126723683898 +2.290428257679622 3.3464799967069223 4.260055336398846 1.555835929308493 2.9031100353218937 +3.7450720501441443 4.381293149732183 4.786115672184667 3.2485440641173127 1.6640023249670783 +1.033791221872466 2.7850896106463976 1.5327112548041693 2.572211711561623 2.03656751572864 +3.5198234862371054 1.4943644383427888 3.5334871021807337 1.4752902580688403 2.8876735625428833 +1.202985800070433 2.3646705269242703 1.7051242007417207 2.62482876113243 1.4816773883031833 +2.8845891171911173 1.9336638666883164 4.813165341054585 2.2269392729291555 2.7555079581622213 +1.8996306822054265 3.073973320212728 4.5408495498937675 2.959879692125855 1.9694025293506254 +2.424145831167559 3.002791335582603 4.1423838233403805 4.811572188649752 0.8846715142046617 +2.6983314530235263 4.933396517593822 4.855685498855994 3.572343712902188 2.577301298342459 +4.375349605137214 3.5929182074032413 1.9642252173121522 1.0831533470253438 1.1783405843688117 +2.9006567081968955 2.2109712152524432 2.905314206580226 1.3733547910865433 1.6800493236502843 +4.050225102604491 1.055903474267689 4.8779477051254325 1.7735652502289443 4.313137192368764 +1.2157214625207309 1.1953592795024672 2.2049092316981564 3.5628908505532983 1.3581342701094399 +3.1013148301304154 1.390074002832125 2.7952107499687036 2.1406356574871297 1.8321609429058896 +2.4219763234442664 4.373362807639738 2.6347502085386756 1.988194140152315 2.055710086628947 +1.0363793545638393 4.99857849912005 2.9121979873657193 2.015990989647724 4.062291107722423 +4.712615116053623 4.373386058117969 1.2177724302950632 3.269114103142323 2.07920153244165 +3.7808483990808504 2.5612626448145446 2.1172494103179504 1.4648009663073447 1.3831407679991126 +2.727702591136441 2.955338787936155 1.1838332814618648 3.7858004215180614 2.6119056713491133 +3.7846255482895312 3.701642620893294 2.2982800933239904 1.7265796927046604 0.5776915390652277 +2.962326348012829 2.6217242423640883 2.1678168616926037 2.472980288599263 0.45731226912665673 +3.141805354988611 3.054293776142831 2.319250873379606 1.677308667915057 0.6478796736962583 +4.77102949803043 1.9370029226719967 1.8555084134274251 1.2865641273136537 2.8905716096542835 +3.2680562175595074 2.7512587692488517 3.4558153323752454 4.719805264970287 1.3655585495620544 +1.8862707896798199 1.8414142593613456 3.075873217786033 1.7910045694867747 1.2856514114232422 +1.5905010592491604 2.7580239073526522 1.9029165890889899 1.1954436581540997 1.3651474458274802 +3.015321058959844 2.5058922222574402 1.801910593203376 2.4027758035220224 0.787754238728828 +1.741840629374722 3.1773799422001057 4.528905841981926 3.097670080158305 2.027118379520549 +4.343318552869281 2.2817008790085445 1.5179908152347865 2.336129885118223 2.218021409014054 +4.557469341469011 4.98092878079852 2.003900802388047 3.924954783367267 1.9671721568264868 +3.872571099047019 1.0467434883936497 3.2288832440392965 1.8667743322878474 3.1369798170539203 +4.299642034321632 4.438401130522964 4.613498292822147 3.1904034484884995 1.429843705706193 +4.730734423491831 4.630595973396336 2.092257247040618 1.7864267495174975 0.321807399546324 +2.420625635854793 2.1870133603069237 4.783607547771526 2.1934942376764774 2.6006271655925963 +3.444500017238864 1.0053133535499414 1.6335600050671042 1.1886308046711855 2.479434123682831 +2.503110549503125 1.5301836044785087 1.971734913645884 4.165603614042588 2.399926397816245 +2.862809797585665 2.3709803777138427 2.153786244350219 2.743829570234092 0.768145366888036 +1.2897050558301002 1.4028468697862309 3.2900931978445986 2.0249617662088557 1.2701805420403778 +2.924660526469989 4.328368080462731 3.7841982952828452 3.053937256932628 1.5823008820286435 +4.695969823213231 2.1407758809473014 2.8321060809080154 1.7790921610612203 2.76366683918008 +3.8590100801504614 4.2263453403941025 1.7514102028233434 4.398931510816522 2.672883138054519 +1.7160087908522708 2.6101898167665754 1.7068486628958093 1.0742613909187542 1.09532021061082 +3.0303385284798257 3.9217751014481497 1.7416262575267711 4.022869817990352 2.4492307661349644 +3.706956654908465 1.2679514425246414 4.797834040458238 3.9072432747761128 2.596516577638921 +1.070038248866342 3.085645732433566 1.7054194271463552 3.3580447842925456 2.6065003546699876 +1.051577986518089 3.4795303813207927 2.240672546770386 1.0580903314764156 2.700639466377876 +3.4369466441995704 1.6044930388678056 3.153200414163791 1.933803681868742 2.2010939567463326 +4.623524392819462 2.0690872090290298 1.9567039350299402 3.9362560508317417 3.231683138104134 +2.3374755151957474 4.179230159929076 3.4626120526177284 4.040088282728846 1.930165528585602 +2.572290917847328 1.8488991802834396 3.907204799426529 2.4102813859626977 1.6625508448621686 +2.399545991029954 1.2641894788080008 2.774196992630537 2.5745873443924956 1.15276989096459 +3.811210572058139 4.666629590271265 1.5531036265043316 1.9280983542860382 0.934003609513788 +3.838883433471551 2.3939742392875445 4.377291587550683 4.268300454591443 1.4490140256399227 +4.925973102817881 2.311711449764871 4.3525707823651825 3.5313228853597067 2.740221177014617 +3.237007089520629 4.855451138236907 1.1262176091850606 3.91623558681048 3.2254552321026213 +4.923331849368157 1.370415747824398 4.106182499314811 3.049222312576787 3.706801540541142 +3.4779818063003805 1.2126983060441994 3.0565780334339254 3.6033649611205876 2.330340164186747 +3.2998560930994256 3.387335369612713 2.928892844851728 4.915024139708649 1.988056876507641 +3.343456079773063 4.80365344723689 1.0160279908896066 1.1213813407585853 1.463993060187413 +4.1632727742547715 3.721643275674629 1.914657766873423 1.7849378759091907 0.46028671947810995 +4.210759365414688 4.017771772899777 2.4604652197030674 4.120891088773313 1.6716035048845705 +2.2471860124709906 1.715180229086986 1.9996894324021621 3.1287682024713024 1.2481382225438298 +1.2865705242878467 3.9154710718205186 4.890137774255454 1.425317567438598 4.349263978466239 +4.906195779026593 2.874048322838941 1.216938639015435 3.946305400925769 3.402802698469432 +4.7589590666088615 3.2092888364558703 4.515290034356356 3.6304400398377696 1.7844991832505745 +2.2885417018873597 1.9587713776539726 4.262755567853899 3.1266577633763424 1.1829905697357517 +4.446252867015036 3.395185430881749 3.768229604374651 2.52287541346455 1.629616462888478 +4.989724080831134 2.6026736202580314 3.440216895508397 1.9817433674612732 2.7973478391749005 +2.898936295090052 1.7726969802601062 1.4886641817974615 3.07942313746297 1.9490841565460033 +2.8692771149139307 3.979033511235412 1.8001018938218545 3.6710200236506605 2.1752916833607756 +3.7638335478730705 3.112053243173849 1.9673646011025605 4.209436021135941 2.334887966932099 +4.608060679153253 3.2315186034487318 3.087548720718561 2.469056567489165 1.5091059041005854 +3.4715427667092396 2.461575001586069 1.7578203431053323 3.1957628561397837 1.757189106891949 +3.326838335590449 2.5304638593300046 3.9556311339360493 2.3952765864370593 1.7518329316290053 +1.2565603345610983 1.018212575235831 1.3168076574480345 1.9556003996983837 0.6818106936145081 +2.474858494882463 4.656341013703768 3.8011547306274287 4.353018350938239 2.250204309689567 +3.01588265850162 2.3634571417724315 2.48403616979935 1.13141214357083 1.5017492504442944 +3.9665859785214344 4.550792949039636 3.2625768188152184 3.8351098272351245 0.817980336030398 +2.4916795786029176 2.2724126480492703 4.504870178139503 3.2509039046213584 1.2729923023944014 +4.473733322679163 3.7462715087860134 4.952429196891118 4.342063496704865 0.9496035902609917 +3.4182697161030204 3.008265800816799 1.5277620229610176 1.900292588923953 0.5539695236443032 +1.4495207663656569 2.720789070963488 3.9749914795762207 2.7399025952603933 1.7724467987602786 +3.07597311176323 3.7514275881756287 2.8959628644471134 2.0640427082296853 1.071601556562129 +4.081491343900856 2.480109563780884 3.9602863265477155 2.362062914256836 2.262463630933084 +3.9710523866854 3.862527074221061 3.5496306082445104 4.441644885647559 0.8985917952754551 +4.274484811035046 4.1256310092979875 3.848103365235946 4.2614796327894044 0.43936020856240965 +3.788720912616321 3.5330248121004564 4.43798549364798 4.01538307547535 0.4939365340449853 +1.1076974638537673 2.1437245064618007 2.3985823064971368 3.8734328899388766 1.802369628154444 +3.9095692580963157 3.429024426405128 1.9107693961275243 2.0066282564264686 0.4900125063331795 +2.1209407433276177 2.6752767907261545 2.9725256197428065 2.0508102087886706 1.075568571610283 +2.6581515295091065 4.872016653039484 3.060125891790538 2.2516139710647085 2.35688148007912 +4.734677171809697 1.2388154130661064 3.4165983535421756 1.905881088952337 3.8083219519593707 +1.010305339200674 1.4425923709242352 2.657162475752 2.151720057287605 0.6650895550070711 +2.937027379064841 2.0026544446643357 2.38392558191647 1.5982821014349682 1.2207737132504528 +2.6096549898588544 3.6735734909393636 3.0519111463154096 4.355974721928916 1.6830045710524026 +2.8299672561082154 3.2688799886457374 2.116738057693179 3.053364782743269 1.034366477058113 +4.888007147852321 3.2001291924110324 4.496208884856561 3.0730597877505192 2.2077783731748086 +1.9004339685675253 2.1708726540846652 3.133461690083202 2.0880325320496387 1.0798422139789703 +1.889910195475681 2.1780537928252715 3.8489369106488587 4.129511231008719 0.4021799124011048 +1.747645606971985 3.2366250508694554 4.215072444433432 3.9946767658049165 1.505202325106942 +3.7793126245676723 3.8641146533991133 3.6691147004839593 2.266100812430152 1.405574385852912 +4.389946089858384 1.7409115993133875 1.4229728644111983 4.460584176920902 4.0304424345205465 +3.9766747973325067 4.492172962369784 1.6185267507873649 1.2553821286773403 0.6305651233014972 +2.886797279727709 1.4848317782077038 1.9076584997190338 4.221678573372461 2.7055861044740848 +2.545924809120698 3.2093388769074767 1.7093887995770336 4.477746212643156 2.846738658854296 +3.4804943853528605 4.0701301989775045 2.038976197115448 1.0072159355573476 1.188360059089515 +2.746376079469316 1.9802881563803711 4.479101797180866 3.9101040366847735 0.9542793916627887 +3.9390852871610407 4.958156689579154 4.855346066588831 4.811753318503857 1.0200033582846773 +3.580032601223105 1.9571257012049754 4.187136951042827 1.273623557677317 3.3350243026770685 +4.619425308749833 4.575717851717306 3.258171859396141 4.667857608342967 1.410363163367515 +1.4896659089925284 3.36380608025022 2.5737361922263666 1.3713732081547936 2.226674230099075 +1.6826575850241001 2.9664486544218764 1.8264827208096306 3.16332110216236 1.8534444603826876 +4.872387387665284 1.5193400953623382 2.799780559545249 3.276128435589813 3.3867142547655655 +4.330588429339443 2.6280243725380514 3.108533127479563 4.037218647847844 1.9393764882698037 +3.4335459992011628 4.231650283529553 3.2569241203053796 3.3136306829215285 0.8001162933643278 +1.5448948675428475 4.260185482244238 3.2903567478446516 2.8983709312822024 2.743438718592341 +4.477212792428546 1.0432145250363773 1.488985904761087 3.447641848568188 3.953312181786723 +1.4445368961402227 1.255970606604508 4.72291764134914 4.443145818315241 0.33738630457233787 +2.0288890605879883 1.141488725687838 1.1988188550555061 4.38127656186957 3.3038638607002455 +2.3495394265281555 2.7619586429720853 2.512692739087642 2.7429428708043493 0.4723396375996683 +4.31662258022688 3.2283929323185716 4.341880713049305 2.8056520402129688 1.8826158136569262 +2.088874571591126 3.8222436101825155 2.073283947146423 1.3433381971914078 1.8807947846122466 +1.4342866026407064 1.2343317739016002 4.671423077758996 4.190303949765453 0.5210158815788172 +2.7903621651627155 1.5528081965184675 4.116160854797533 2.5188702819666506 2.0206130256339376 +4.53270850697456 4.501742527251071 4.362280524803776 2.5767402256215868 1.7858087948892671 +1.939429913315482 3.442673009893157 3.0852393845531716 4.2650616350559565 1.9109475006367636 +4.72937075460792 3.8206604394028947 1.0093544850710816 3.5368236824778805 2.685862055430283 +2.4327502418380944 2.471887761755175 4.91992272830683 4.530378026472757 0.39150583672821065 +1.2489186525239 3.9619956445266573 3.4341736672944423 2.6683942472666797 2.8190787297755246 +1.0814760803535703 1.6051380435736045 1.0223115932381992 3.6936686905429297 2.7221995872903615 +2.72177461835106 2.1421242346904816 4.180316346595314 1.2145171879064032 3.021913171644365 +1.5717377125274439 4.320655130508898 1.3232536282088354 3.88072136767653 3.7546222458857064 +2.5364295862531225 1.787627205874729 4.790747159123499 3.1784989362760943 1.7776527605061017 +1.1663551981134685 1.870937204232919 1.0097635707801071 1.2897534720109478 0.7581755391323076 +1.6096839196069377 4.1667616843919735 4.288477821711026 1.8201247984121842 3.5540699687522426 +2.665288490308089 3.310073803861324 3.974692137638419 3.5779516033686565 0.757067468662206 +4.8592022639710475 1.1521137276765048 2.0242981814147587 2.297605338128301 3.717149743800652 +4.545432143466779 4.658683422821289 3.2359329623366286 3.2629598531329007 0.11643154684855354 +2.960317427469627 4.765580351616596 4.613346496637847 1.5245132331220543 3.577689918802535 +1.443152381259456 2.880441050680684 4.964721582335159 4.553298563454422 1.4950142540161893 +1.9649782863106755 3.232889002645241 1.0775289451642913 2.334939566688478 1.7856872782539142 +3.1697332798823883 2.084059352460269 3.4681134183346476 1.9485071675260963 1.8675896321677818 +3.68126966266188 4.956540132937786 2.5347697203172737 2.3851477742794205 1.2840177175934464 +2.6922760914629573 4.081041499414232 2.0144239728381015 1.4888962315722125 1.484873316199768 +4.149369236630662 3.6151492852613316 3.2996190554782947 3.765184169774085 0.708619666739713 +2.9042403719530476 3.015192206179867 1.1678670102771664 4.196715418926779 3.03087990393839 +1.8225260335986961 4.763547041137403 1.7690262241422454 4.1021152247134385 3.754052324005391 +4.914451777070216 2.529211561945965 2.779206966493724 2.3765306431048465 2.418991340468991 +1.9895409135157989 3.431053857337273 3.071285182880207 2.0007444747455065 1.7955547819485762 +4.522868769632438 2.7405171350822277 4.347949615407743 3.356101556327852 2.039740160286195 +2.669237159687856 1.6936887527022648 3.985065004844464 2.7165283818587223 1.6002749320751717 +1.5419547898825514 1.2106990425460382 2.7818298128341605 4.919562990733457 2.1632460585968714 +4.602984448797306 1.0128192895959858 1.5050535512862697 1.6547576197404381 3.5932850121378865 +1.27396156543599 4.14429324110233 4.20605573737379 1.8295234875671573 3.726487550321954 +1.4567844257533005 2.458449964530258 1.8383850422400458 1.7662712713953455 1.0042580582294447 +2.028268040185805 1.5360172114278465 2.803255901721667 1.630914451134474 1.2714933563246729 +4.128230737401007 4.084731069542655 3.424995384719983 4.016176854214875 0.5927796816507178 +3.2077023806498857 3.737775189605805 4.319509548839181 2.1576409704932247 2.2259049694077206 +2.357725412741796 3.8522460541928325 1.992362088891257 3.6926513825300837 2.263752554893321 +1.213600367002733 1.5169946153818912 1.149812601465126 3.66398454456062 2.5324116232157294 +4.77592540003641 3.50981205061298 4.497940387103214 2.261742155281391 2.569752039709525 +2.7689196312681537 3.4164041224908 3.1094335469597825 1.6965736299640763 1.554158715005312 +3.729517444487661 3.3771540582177755 3.067405096029537 4.103930216422359 1.0947804716877876 +2.6700854150394253 2.5492500347165015 2.2819195475169103 3.013391053447991 0.7413850235382884 +2.7624759924355846 1.4321736317980105 2.847432097899174 1.3407361281611507 2.0099346048920856 +4.5814481289627595 3.4245307890837355 3.2053516039278844 1.2649176544421303 2.2591462200640398 +4.87693539512866 3.5829930894310134 1.5160526673140482 4.518759875662478 3.2696387062704284 +3.681698336365744 3.883474193010538 4.772849557837365 4.515436941462223 0.3270699487782945 +2.1489262044645505 4.699149708024672 1.355304379644934 2.8217700657046123 2.9417956296284324 +3.930849557657934 4.334665695576929 2.353433025340255 4.195317307064858 1.8856312419208505 +2.537951092402939 4.077668108467083 2.5974041472494878 2.054734272145822 1.6325498714901483 +1.5225020267824019 4.584880273854608 4.8437733601355735 2.0755780976598115 4.12808254996606 +4.904725549470894 4.332523125315349 2.362353418681581 3.578484372026809 1.344020130018094 +1.2413176796605727 3.5423615789222693 3.7155850092227087 2.966864378609643 2.419790406013525 +2.728535449758058 4.812799698310558 1.020122522675404 3.5221929135038006 3.2564572311722877 +4.904968345754286 3.895118210841871 3.662713613409174 4.652987738010952 1.4143691656842783 +3.796675548223657 4.561412441821904 4.37517045242825 4.795953216840454 0.8728577497259635 +1.72746022943879 4.734328539706416 3.9725819919340712 1.9898630330157978 3.60172618411584 +3.5925784304331407 3.7056015237069753 1.7360153262110907 3.7957776361398854 2.0628608758266735 +2.280912791165977 4.084124733227503 4.301593181441984 4.112121555633932 1.81313893703148 +4.016853853772048 1.9896914189769914 4.199238944103685 4.506120585712571 2.0502594662629376 +3.9855236287108124 4.007099630374842 2.278141016706362 3.7257639191315493 1.447783682555419 +2.88231978688905 3.305738308411857 4.383168031570105 3.538418865845573 0.9449256041407982 +4.2326988080347645 2.681160254036867 2.0052136687130875 2.979526822166951 1.832091156448035 +3.199492748975462 4.7148357270863865 3.255120769034269 3.7559390787458438 1.5959584332470709 +2.980747970393153 3.38287860038257 4.136399631908247 2.9976505659101584 1.2076665429195286 +1.4294305520658623 1.4438086589521633 1.5699470806979887 2.827889947382078 1.2580250338522752 +3.885976968155221 3.1373290827838196 4.688564814120923 4.735013972776915 0.7500874486424371 +2.5002814740628825 1.343627711502271 2.170616184270857 2.7376865044178813 1.2881834785609028 +2.519033668105103 1.119687165291233 3.029120065205254 1.500004390149146 2.072767565994727 +2.9372804361599263 3.912031224808849 3.327833482938555 3.0259265059919627 1.0204346734116434 +1.2603665922825464 1.0316037794633974 2.3271938887489534 3.806389865554389 1.4967809333119912 +1.9352842004515725 1.8608246848180743 4.0527148282504015 4.635393733764285 0.5874171655639906 +1.9376152997468843 3.9335492694066545 2.9821319967173614 1.3968671145720712 2.5488854736541087 +3.7890279626763803 3.7259588390274043 1.2628071757122812 1.5339183905010367 0.2783505077094069 +2.1826860716473777 1.9681837816500871 1.3022878832701998 1.165004588663785 0.25467221166054504 +2.098623816794663 2.8029195740928143 3.402160391560086 2.5896747507672626 1.075251333522866 +2.385626609459702 2.476919935957235 1.7154605070033684 3.9448991268614355 2.2313070230646495 +2.3527947553571398 4.523010366415161 4.636630575812409 2.0535033587906466 3.373778596440278 +2.5008227331266473 2.841814436792336 4.802849861751757 2.5891673840754628 2.2397913862545074 +3.7358656992203567 3.1014224348747175 3.0395929872784473 2.071882811572353 1.15714356924224 +3.4163544206102663 3.6591855409842524 4.666589643381608 1.6430696369527489 3.0332557067114623 +1.9495278607236894 4.945867124930608 4.309070515212522 2.420696757292289 3.5417516056084226 +1.0208797958288245 2.6946275327693807 2.31553909610214 1.78956994631963 1.7544443660135165 +4.776736052240857 1.0113939798521812 2.3646881702171667 2.431544254589456 3.765935562130324 +3.518587336684402 1.890523191613874 2.366773052026187 1.6452796308644348 1.7807710737890814 +1.0440705937881183 1.7411065204436156 3.194114038997612 3.777136300394957 0.9087211015120985 +1.5793692025624915 1.9471179630465238 4.819850517488336 1.714853645856421 3.126698694099181 +4.651139262671926 2.724412123386596 1.4931442490553706 1.404206308900911 1.9287787396322957 +4.800448868340094 1.3153978594513323 2.134869739089986 2.606870410761233 3.516868659562749 +2.806695071342594 1.7612711735297255 3.1022820188499347 4.036758356726452 1.4021972586513487 +4.85504816764686 3.0196543293998594 2.9437272084228607 2.2325170415660858 1.9683725366188938 +4.468147343338199 1.3717141106686088 4.039429020303777 3.3185153157680554 3.179247604979528 +1.6593889684107466 4.353042773190685 1.8221043003740447 3.895991220884916 3.3995261109559824 +4.869652783779277 1.7658582859532785 1.3820231017483988 3.7572496555478456 3.9083553403713105 +4.621182341277833 1.0362472109344503 4.462101534937418 3.8891463638121646 3.6304321391384375 +3.982440310588081 4.388881554158155 4.800260781927726 4.646756829620443 0.43446282677433407 +4.976339985850256 4.415193990954938 3.4776042996430374 3.234744576486571 0.6114455598977653 +3.8990838693311503 4.3879345222825705 3.086686845554088 3.4724758117889416 0.6227423924542049 +2.0460584078908552 3.5405405564022163 3.6069248004334153 4.538199515051138 1.7608945131112923 +2.000633611661891 4.584182768094511 3.431313939453972 3.798170828957342 2.6094655048648927 +3.735501501731269 1.8140691509086269 1.4097902089521255 4.398298709131224 3.5528981598732248 +2.6796063334640996 4.844557404706183 2.943164445517217 3.1927266750729553 2.179287600867099 +3.5952896320713625 3.0873372230311036 1.6932439873241791 3.7606509054244657 2.1288933779921266 +1.8178244242131885 1.0918596355591013 2.79911765457354 3.5213276853230346 1.0240176770352938 +4.16986660396299 3.714004289128128 4.151481239196537 3.6036506549195666 0.7126912369012579 +1.9284043883767246 1.8725217136025876 3.1927173977403056 2.4881565405847432 0.7067735668343099 +1.3513491705884673 3.739171435466463 1.7487084110501065 3.488744683569921 2.9545594254189123 +4.160687241432624 2.8348291565652866 1.5935963203809114 4.692055887280862 3.3702153267887667 +2.6717804535386303 4.3054904583556155 4.5620347588622465 3.5605963701658188 1.916216904787663 +4.5210672412174056 3.0186509744438483 2.1952875585328853 1.8454873824580877 1.542600013564032 +1.4178350702450797 4.949460319087588 2.4565069797863983 4.3145892358197155 3.99059476374735 +2.4501818895081056 4.527098331918969 2.633716436628626 1.6160977715957214 2.3128185523685056 +2.9757576263788494 3.738615844889264 4.4496420556287966 2.73219037286785 1.879253294307952 +1.64179480303408 1.4234930575033538 4.615680855431097 3.88219586652995 0.7652815697800894 +4.762535812736698 2.51132442062246 2.9229196876578394 3.996377850002738 2.4940459414954272 +1.9662748677768804 1.1856273868045188 1.7105813952374618 3.54460106023316 1.9932482587824896 +2.568317167614448 2.7575897527915934 4.915942719475636 3.0244029655358857 1.9009857317281709 +4.279503708569815 1.0646539136635536 4.453620133403989 1.5404993586130837 4.3383789429148765 +2.477429569577857 1.4970953593551122 4.139889335774258 3.111369377825868 1.420882988719061 +2.5329830375754145 1.98752085229488 3.664167482912726 2.7746542434310424 1.0434379707410573 +4.660753016770364 2.1508850171522846 2.0283813345878636 3.1085695672175064 2.732442861876239 +1.172180441418892 3.2478585357848906 2.8359982235967487 4.0471871667976895 2.403209979915004 +2.783501140093869 4.688870481284043 3.0615068441325386 3.933142614658047 2.095275934765413 +2.277741201841023 2.3928205052653024 3.2600808708870708 2.637702583147911 0.6329280994913609 +2.757820026850362 3.9700958123749928 3.0008190693242427 1.5616888174024766 1.8816770345002796 +4.1796568201159 4.071010341197819 3.5341266625078247 2.334969757813188 1.2040686606079072 +1.5014164550495837 3.285153154154307 1.4157543052240733 4.98359094726418 3.9888814116262017 +2.5062642306206815 2.2089314968587583 4.050039674760516 4.738964167962106 0.7503490600376642 +4.848913593558969 4.001185630237215 2.189011547249396 4.3043243597004235 2.2788573878847984 +4.840274873663326 1.0768025034474866 4.470538416431209 3.1779472534143216 3.9792607600014573 +2.8325712078763843 3.2180392263358844 3.8108190140532536 2.375516125483358 1.4861628360284682 +3.056446460046585 2.549246002157743 4.029557187022544 4.1786285247781 0.5286535427128831 +2.6422405129271906 1.9838540368128958 3.1469744035420013 4.008016576911787 1.0839125316424585 +4.834507464772759 1.2078576247234523 4.453420646071029 2.4391040903733288 4.148500964069734 +4.916490338214986 4.737917111336781 1.7102100309786001 2.0516831480155555 0.38534696964765297 +2.362872217974629 2.623448876187525 2.534154565430484 4.0807610845382545 1.5684042590327456 +3.607735085659835 2.5974336222359393 3.0389200036649546 4.482974887269564 1.7623857562573488 +1.8300437315472222 2.2557097663626138 3.3782906573350684 4.362451052579509 1.0722701416915195 +4.1738482844959215 1.9829520686465907 4.167435124956814 2.9436524876035355 2.5095159238606684 +2.3926594294077574 4.378192901526559 3.615293262839233 4.509566819283486 2.177629069116133 +2.572895393885877 2.8147568665459675 4.866364254476501 1.4643834862798846 3.410567418940278 +3.2169452210105405 3.115222841090756 1.3686247443579465 2.775108440364198 1.4101573776383793 +1.375495102611755 1.658248828306918 2.2137754769929594 4.493683078307958 2.297374227227338 +3.5599209256790223 1.8582465012437415 1.1547167683256623 1.9920450628854032 1.896526962541653 +2.244987462687378 4.9838961019124 4.0703946180657535 4.210520376835495 2.742490795297636 +1.976396165878088 1.4275810136240268 4.3706468485451655 4.6564689295230615 0.6187829452386219 +4.175568561304915 3.383148801767437 4.247113719539789 3.17164888896745 1.3358718790001622 +2.4369421451880435 4.18821345618017 3.058408779689153 3.80491568378514 1.9037394156152405 +2.444865812236593 1.0536230997373779 4.10053293292326 1.352231173309328 3.080376413196804 +1.157094818634186 1.6099878432195118 4.351800448923108 3.7538162754570386 0.7501314307732634 +2.862009997374389 3.903501949384808 3.48579916224241 3.156105187293359 1.0924301365397142 +4.384263928260939 4.116875871194123 4.905072448230962 2.4436168479273603 2.4759361957304016 +1.8254955080816155 4.368882594013766 3.9972687289467297 1.5074086279222736 3.559244469204097 +3.581644100264584 2.715534238318409 1.5656931380096206 4.317612129564408 2.8849964348401436 +1.0386564753233438 3.430684638430933 2.027306451502479 1.9558354583491142 2.393095659592862 +1.920010958061808 2.8970497290237165 2.7761222517298387 2.0269750726060436 1.231188960294843 +3.835816743234297 1.198590898198618 2.645242433413344 2.582582497667175 2.637970133506417 +4.433388537316625 4.711065665407552 1.230553385541929 3.64212605642025 2.4275064025439814 +3.081038432330517 3.456194918539447 1.2036406014705627 2.4715153647019026 1.3222136001356048 +2.9051299699695066 4.0464943077340605 2.0841868453849925 1.572218144623288 1.2509294552772936 +2.5017679581768353 2.5538483406240764 3.390210227224564 1.9993161985171755 1.3918687313571352 +2.7453347585102392 4.437923473599888 3.1468941701699755 3.601265579709595 1.7525153169818084 +3.9493265850818644 4.888517457828574 1.9126041245598495 4.511981275102319 2.7638453405017103 +1.0998651465456586 3.0548640147868094 3.7489873013726283 4.253705932923078 2.0190991733588373 +4.940092186622989 1.4260683741614297 3.62420908196184 2.133921785145544 3.8169778073233402 +4.475002281988122 2.8005280849074254 2.717740874664171 2.617738414923298 1.6774576980190192 +1.7410513450224352 4.330185149576631 4.896462384970693 4.749147742617453 2.5933213186446737 +1.1786953944181007 3.320731812662848 4.85785902494875 2.2280081989363953 3.391818890236425 +2.946832556195468 3.8651281765247343 2.9877288319995143 2.4798016330238415 1.0494078738865955 +2.2715223834648715 1.2849326600172009 4.767622867209327 1.558515985305911 3.357339163964882 +3.660607553455122 1.289431186122151 2.006636061483966 1.5716354841535245 2.4107473669541157 +1.3702822241606851 4.927257931541254 1.4091158934695525 1.4357816074534675 3.5570756589082793 +3.9789302823341277 1.133713689541501 1.543857414090625 2.045911455671462 2.889172151425065 +1.10333641147112 4.015075152055967 3.884209991703469 3.8110348303274444 2.91265808114599 +2.390594510826327 4.1293487249777225 1.1410320551371567 3.6097202282295506 3.019550879385128 +1.620017616604354 1.0867903837214623 4.318838636609559 2.686049784033913 1.7176526770518075 +1.8925998559955812 4.436807463729496 4.038958787969371 1.7746196917214547 3.4059101418046773 +2.686770459867741 3.9006976097955564 1.5137659344718024 1.634559584260455 1.2199222234065303 +4.199147766156541 4.879410409445524 2.674756401252695 4.482706228881499 1.9316935168596328 +4.561659823258795 4.288911878797016 1.7533589611141007 3.4506166247861407 1.7190331637585115 +4.971974355973005 3.1631444357817036 2.446386236095143 2.168445363823525 1.8300592363796255 +4.357265617542326 2.8633588990023875 3.5608839425155336 1.3370926018961615 2.678993320318748 +4.988530843209185 4.164326138122872 1.8223586741524453 4.118789320932546 2.439858010491038 +2.2867769085908525 4.615869408380948 4.887582708956497 1.6549441356983063 3.9842971799170837 +3.6708826252885225 1.3657238556309141 2.684519517246372 2.9294618841191262 2.3181358278622515 +3.95617110143882 1.2342290664917872 4.62061874011866 4.3108470471940405 2.73951217251338 +1.882716761305359 1.2185373001781632 2.638854499400409 1.4792637418813985 1.3363326986595532 +4.876969794242384 3.3757564649052183 1.72465124698769 1.5420355372427235 1.5122797220174693 +3.587299313525599 4.538555340990122 2.317742349620419 3.9442243328561246 1.884232382583937 +3.3377181646060574 2.7225489140036805 3.6178402722520655 3.0127627000970483 0.8628743102049684 +3.787119328211335 2.992347678018548 1.4551915047448056 3.1416614805652494 1.8643612727403382 +2.6502288731705965 4.560548362562544 3.559060527863414 4.045070494753919 1.9711738227430937 +1.097449752696059 3.944722137763102 4.571293092441319 1.3628846084716493 4.289620616648275 +3.997806147152672 1.8258671098586206 2.53844857101454 4.181185386114777 2.72321564063654 +4.0565676978286715 4.443281100325892 1.371732907397747 4.066031149279334 2.721909306328407 +3.699635466763543 4.359253479718646 2.9344653922822532 4.957213599520897 2.1275822505609474 +3.4962760123829746 1.653001959628424 4.794373282138521 2.0243645596329554 3.3272522531835635 +4.090943211418143 3.837509365633644 3.2706490615101504 1.0247823212115699 2.260120821851897 +3.4536621044440867 3.7735883222913897 2.1985555889689286 2.608224863420183 0.5197900530940325 +2.7706544469871863 1.5978108293399225 2.2231127579509247 2.137760780220393 1.1759451992156924 +2.567960708129502 3.318464541334155 3.918564839217111 2.996623645422944 1.1887941657282355 +4.856064119812116 2.597154142381322 3.8485322638926585 3.3761087444002507 2.307782110145146 +2.387182079867295 1.3673068730874633 3.2433771055300906 3.152633449891143 1.023904218392973 +2.473978321482267 3.326677325637455 2.121093430426667 2.056716636502384 0.8551257002822562 +2.780868895995355 3.626393539989134 4.894545068951346 1.870093290264586 3.140417246991602 +3.6419887147455046 2.302077642992606 4.677498246681544 3.7647126666248822 1.621277026101763 +1.4414547245812273 1.2290539573397399 1.0029859771124485 4.8239492701211635 3.8268622358852658 +3.032064348092879 2.1332931129987136 4.666780428475441 3.539316284688123 1.441861688428804 +1.3968135775975559 1.8970590101951128 2.237340816865192 3.7552407837598762 1.5982070586546664 +1.834108325545515 3.8716444904884635 4.363755180993899 4.7663967986248466 2.076938587368169 +3.2266907867651105 4.921987060463955 4.007998498789808 4.534542481723928 1.7751839402105112 +2.5179296191789873 4.253457761023962 3.672618176327223 4.902219900801597 2.1269645817376053 +2.121989267455229 2.917852737750306 3.9970660769603006 1.2536256944890711 2.8565475307657686 +1.3881826653600071 2.86590798863772 1.2344914135666212 3.858757667215595 3.011718031472575 +2.765517253987339 4.1738199965452845 1.1363428849948058 4.133173425651483 3.3112399345424706 +3.77202032592963 1.1518530239374671 4.806179898826662 2.8282955854252774 3.2828802974869733 +1.0928533317018982 3.6733024300520345 2.3990712470440783 1.252653809658553 2.8236484359632357 +2.393002092907903 2.49532669152689 1.5180733925215324 4.309229038442732 2.793030641299935 +3.0403417258794163 4.694859376923309 3.2518954755529177 1.7483433651887474 2.235642548842804 +1.7898753341377405 3.1293892626543793 2.0384041907498416 1.319108665203708 1.5204221840530896 +1.2266289684049139 2.026296225871671 3.113447580474498 1.3212946861486188 1.962467762615486 +4.341952421120135 3.8172858642730394 2.4253726458729115 3.444075064703135 1.1458750429276026 +2.5479506446692746 4.947826855423109 3.3867917591734265 1.200457427128168 3.246454009904032 +1.8706046853911316 3.022875831484161 3.2767090284314135 2.943535669896924 1.1994720842752846 +4.936429199649771 1.524519646101068 4.200993556358613 4.611446987969364 3.4365096858757656 +4.298673987291449 3.982315152253501 2.5170917701267856 1.4543130515133984 1.1088649679938853 +2.3080701809109425 1.6742497692384268 2.5564392850203044 3.2012078246600817 0.9041320611293067 +2.5348368425364898 3.784831739854591 3.8705862860721143 4.0261196095282905 1.2596340174934202 +2.9531726083204664 2.3881908702763006 3.112223609828587 3.1863270335588973 0.5698207452628943 +3.163646781577516 3.137497354512349 1.0483423976464206 2.587689775712183 1.5395694667321036 +2.7790377428694244 4.04205172656817 3.669152181091091 2.53451343719535 1.697824903271206 +3.3937726201266516 3.667821744288284 2.3112724731839966 3.2092310229025505 0.9388463556229029 +3.190022160560729 2.351560015147404 1.034865714589086 3.893029046735798 2.9786098103845546 +1.9804000610246209 1.222996511730579 4.475193680400444 2.3831421266159283 2.2249359182177404 +1.417419477061698 2.8402421639060744 4.372847809602266 4.005700342231846 1.4694290255046567 +1.2377115190612282 2.513515020057852 2.399309679495727 4.6089544628451815 2.5515102668299616 +4.280533510420568 1.8882408307608296 2.313713285874968 4.544381091187583 3.2709238943778214 +4.836907801422294 3.2332202772366587 3.901216145825362 4.662714974414751 1.775301140981908 +1.6999310886983938 1.7280080500378299 1.6770939499900397 1.9844249799773652 0.30861088404514603 +2.758086408323167 3.5532001818874517 3.076059310916022 4.425071814925594 1.565899309944867 +3.577038262440399 4.067352814086436 1.8778469680188619 2.106882219564243 0.5411704962452316 +1.2119594352290144 3.3035558228298196 4.8203052041317545 3.6711988061692886 2.386466208112533 +4.126979734290833 2.473348378957566 2.984717332998549 1.3648983539764905 2.3148024071486972 +4.696917148703193 1.764253654414519 4.3443095679903205 2.0695316767190532 3.7114861747486017 +2.3552109987446603 1.8858903552910813 1.0918535517785384 2.37878092766575 1.3698335436028808 +3.3731660952623814 3.1173848620657463 4.795504212664213 2.561078224434826 2.24901834944281 +1.0034093053645563 3.490350652999987 2.0172033302978205 1.0351093474700033 2.6738335508563984 +3.444541908655614 3.4630499543655895 4.431140791408474 4.748973068438127 0.31837070229192954 +1.396549686415324 3.7730017076281914 1.1470906688574112 2.3646912844365446 2.670220116055118 +3.088885828079023 2.9573647074348335 4.2951901940788755 2.7956031275112103 1.5053435406552613 +4.278414442764443 4.722810067886172 3.1000914648244344 4.981618405593412 1.9332953991738566 +4.6889932612295535 2.278913677656698 2.9065208791293387 1.8967062488295166 2.613084228784498 +1.7706720050817157 2.390700194802492 1.6479053956095138 1.165811815932552 0.7853974634630356 +2.633537809468617 1.0929674791357264 4.319387546027521 2.8321778155928232 2.1412962721215476 +1.3269637464960842 3.2570566519081523 4.6382947077570655 3.436542863723171 2.2736459966672173 +1.1236166846302176 3.6740809498602682 2.2266408216760247 2.0438043175119645 2.5570094163828174 +1.5919853817983234 1.4439986018835107 4.118689744639365 2.4851710885031695 1.640208305970482 +4.569966385304724 1.325112432160616 4.33654073480187 4.276262764824481 3.245413781153266 +4.171674832901959 2.5556724875398147 4.835540349768511 4.866748139371566 1.616303655365495 +3.070344536508473 3.115855153112553 3.8643585806367 2.14924489874566 1.7157173887425405 +4.228074987755168 3.216911719912908 3.641479122137939 2.681652651691615 1.394172875795138 +4.346741349838547 1.1479072185142876 2.2835812425574162 1.2812816780989644 3.3521849914106223 +4.571664181145435 3.577978008367609 1.9315361265020514 4.7823282074307425 3.0190110464613378 +4.842812887031593 4.834492564300669 2.6760090680086113 4.251643447441698 1.575656347501522 +1.76986622519303 4.146089574698465 3.1699420126496065 4.52793044511793 2.736890569506315 +3.53260502661196 1.5524485581005276 4.251979353026256 2.3256871500284464 2.762538921195106 +1.4842339083859128 2.4824903006687054 1.4884902258667743 2.6557315227584533 1.5358932482118752 +3.190863630782561 2.219633899785126 3.938374073925779 1.9343027919540612 2.2270134471073844 +4.503582171449767 3.6479246515439447 4.169373053112693 2.9512083754644394 1.4886487071304824 +1.2735474172096635 4.9195953703861 2.570842135276451 1.544491615570367 3.7877514525326275 +1.379867768387193 1.528651403881606 4.481132271906581 2.4853512129917608 2.0013192162456486 +2.2073649008860228 1.8299045925743789 1.6543638178754994 2.4958269878723587 0.9222453853567849 +4.963840797884379 4.527489251468615 2.7290706362096504 1.8049356158493368 1.0219727040952642 +1.0813194298277669 1.0931679704924533 1.1468898870761097 2.0759096909558887 0.9290953578167882 +4.176225420587258 4.191309492561467 1.7947634003246145 3.5115116031408222 1.716814469038516 +4.99857603664738 3.2148267945019473 1.411817840268483 1.4637027265657703 1.78450368458025 +2.605777982172049 3.641805878169475 2.584067583181426 2.7479992437006184 1.0489172467861485 +3.005832325712692 3.4298383276308186 1.7943633499628993 3.4604780010264107 1.7192204978277454 +3.8333037791299946 2.72369078312178 4.835007734432105 4.347108779614491 1.2121412421918691 +1.3611179118532641 4.075473664935556 3.7658532218588325 1.0789350430584879 3.8193267016397923 +2.8671026434097246 1.7917647857083523 4.768773139063086 2.4309477455989916 2.5732817720823586 +4.035884334307115 4.2422870320978 2.0953281847759664 3.522984648979615 1.4424995852469897 +3.5507034825434243 2.8487898159849885 4.0029664956247935 1.2612304273112733 2.830158911367485 +4.4531890896524455 2.612945262540564 4.6305170596284935 2.2534014246836076 3.0061896289360743 +1.9235562411079594 2.617779585323027 1.1139258229601388 3.3339321818450514 2.326021127406757 +4.144239947928506 3.2874001666225032 2.1237109526166935 1.5759136054420573 1.0169839450060596 +4.836775857695017 2.973378414029944 4.161012939069408 4.559673950147598 1.9055656994214112 +4.5101655507111325 2.238827662981104 4.006232420856998 2.9926129993702157 2.4872475011251107 +4.7408245364186525 4.014406038096627 4.73026000930146 2.0166656716858635 2.809141873213928 +4.276698843056529 3.998524998507145 3.53444605288565 4.978369843038028 1.470474957134392 +2.159376217532166 2.873478144485057 4.859949368497935 2.3372126017201937 2.621858569131837 +4.30405018751042 4.600622041941488 1.7177404309045006 2.555086552082747 0.888314916847025 +4.825222721899074 2.144500213297595 4.71761223309656 4.018173441753287 2.7704670709030896 +3.819848385996481 4.595082703685554 4.799859549589487 4.584211881926327 0.8046689778358572 +2.4723567170070497 1.1343320623186073 1.9314153584385547 1.6198358391476342 1.373823778144667 +4.380705891583707 1.3414634985287637 1.636996177783721 1.8324018749179656 3.0455176424074213 +1.868987165329734 2.2218092786176964 4.207651525377793 2.4892715732006145 1.7542272098190206 +3.935482870129623 1.9217987897947593 1.1410114134246365 1.0121106702810678 2.017805485416528 +3.6970616357824104 2.1218639887411532 3.227631566335906 3.6823412075412474 1.6395147102265974 +1.7398743764085438 3.997562749870616 3.0148517823333134 2.786627635241983 2.269194362098889 +1.4263566474129346 3.7833905261258662 2.1710582009687527 1.9634997031314785 2.3661549474675136 +2.859031481963312 1.2758420963194603 2.987657227121164 1.4864761953708467 2.1817500133842795 +1.0751094372187064 2.4140586812657476 4.191277648780854 3.5652429797813845 1.4780745870636633 +1.200756761502658 4.671828491234517 4.212856258761521 3.7243593342121843 3.505277192782031 +3.0186085119506045 4.838602372837438 1.2248272645909664 2.926908237195357 2.491878265679861 +4.086259305583777 1.2257118409413814 1.5036548840805102 4.03747090062875 3.8213813475219176 +1.964722389495964 4.074503863248067 1.4005071688120214 2.374065103962736 2.32357330852343 +4.350766451519553 3.46658714155247 2.0398447540106592 1.7049346008139925 0.9454828728687172 +3.50457263575625 3.884567745246458 1.4302406557724523 2.333014544418346 0.9794881200184633 +1.2404680823220655 4.986381802888401 3.7702581407845956 3.6032344074509277 3.7496355195437117 +2.791897736035854 4.549769745131874 3.274901995676921 1.1357659618872202 2.768757297312426 +1.6271249143949795 3.7681008722969076 2.2011425913744107 2.6091800450458833 2.1795120132526864 +4.649224464114361 1.4469297152721756 4.157266240949882 2.5958687002851413 3.5626751098656384 +3.768943578225591 3.012998043078998 2.7311122210196497 3.023246914055247 0.8104297199529835 +1.8947542588036015 4.653237811285786 3.620310128390503 4.966705100000255 3.0695294311817176 +3.4203912081434513 2.988174388943091 4.361322700124578 3.9308640642358346 0.6100049311365237 +4.49719198759481 3.0815604258794655 4.070479955089818 2.9343918711624815 1.8151332879340603 +2.088041262075361 4.619804776683466 4.278415038628415 1.6043593200864037 3.6824449051911174 +2.3292834201788 2.1292725130437224 2.3488715988801308 2.770683957377339 0.4668297642117243 +4.306104041652205 1.6083440315337354 1.2868505250141316 1.0329696849516226 2.709679787935329 +1.037447265912835 1.6589229660623186 1.3141228257076145 4.124660222032542 2.878428825247759 +4.71155047493804 3.0016048506789357 2.8972173679578 1.482891444001479 2.2190610305031626 +2.2020746409150047 4.5588171315896595 1.4857150479962629 2.3859160296305593 2.522815287468888 +4.759349395677063 2.921169256432831 4.7065024021950705 4.914016057826894 1.8498562488976347 +3.2091627272459755 4.636428371783877 2.2032303546055 1.6365809618182467 1.5356362702229829 +3.1585869598422827 2.496879838681918 3.1703594921652467 2.867292392876296 0.7278090277440616 +4.434199085177367 3.525619310693206 2.6649630100262347 1.4792856187142838 1.493769755641746 +4.750478205053687 1.4598929923941264 4.6998381812957035 3.4160594944898923 3.5321436491839657 +1.1655813981652217 1.8222062565011767 2.5388322968161035 2.555508409893104 0.6568365834300568 +1.190128497442763 3.42597182543142 2.6068168933618514 2.8262663885749135 2.246587071150518 +2.2218874178117107 1.6990380115891757 2.596813890320361 3.234445698356975 0.8245882755698741 +3.551566445796912 2.452452072210495 2.779532516833968 2.7189849367117738 1.1007808209098282 +4.348925212961731 3.8378323773156238 3.619496411531548 2.88005912880521 0.8988789583333728 +4.446888392410811 3.0895234784332746 4.522034296285458 1.2770826998771976 3.517406768164547 +4.490624661774046 3.564672808626161 1.7019270966104814 3.6930221565868973 2.195870299496418 +4.187485698024231 1.5219692315498015 4.757069619218136 3.28213266096448 3.0463776955375828 +4.78195848687143 3.257151222254416 1.5233453008285198 1.0278042356508172 1.6033084985448907 +2.732908638912371 2.4250917146909017 3.889620901459517 4.838816969104379 0.9978599268783349 +2.0649027077592974 3.676240828650615 1.2706782186419026 3.509734411518497 2.758583544991268 +4.6828363661025465 3.8202111642442147 1.4692726728847862 1.4112576471784664 0.8645738731241147 +3.32195994305839 2.1575297705690177 3.2314561544382343 1.586061729917768 2.0157431480341605 +3.4187070513131004 1.1989395434292467 4.0954070669821085 1.3929287816655145 3.4972498726377292 +4.8284400154716955 2.676002982491986 1.3510530241603385 4.834370225694164 4.094689720533649 +4.728179747233437 1.637254235404915 2.4087640756056357 3.980766034938845 3.467709716775592 +2.760294838047246 3.706055927928751 1.8103375562768762 4.779041758354886 3.1157131893949233 +3.7349924476571705 4.755244534890433 4.9717856166052865 1.268142915439748 3.8415990914462426 +1.677597393185493 2.8012628950325245 3.554712064260158 3.0357875624564286 1.237702225340728 +4.645145053196703 4.465631326954879 1.4378725607069636 2.6927929477655304 1.267694898532154 +4.817240096408036 3.1499661753914907 2.5127468365357104 2.537290226177585 1.6674545588042267 +2.6458654355274884 4.656061162674561 4.510352986382363 4.136403957991721 2.044682062638261 +1.2404803044588175 1.942253229816595 3.981719987075667 2.4028460914273615 1.7278101797144467 +3.774748591212985 3.2192331998267085 3.390424014930891 4.592287435081108 1.3240366425300414 +3.945475294459034 4.369810009849428 2.2670470245824936 4.257507308189233 2.0351884657940813 +4.121977623539786 3.5839142508801185 1.8656271120584833 2.531463764457557 0.8560669603926443 +4.363162532969216 1.1879162339675662 2.07258948895414 4.0816795077494765 3.757476781424833 +3.8195358597718423 2.269361597409363 3.580226902483257 3.540417848295969 1.550685333807715 +1.0046874539112292 3.254150257205788 2.3710025491833333 4.315326438820799 2.973294181748718 +3.368713921044442 2.7839956974023434 4.132212393098371 2.1027602865851494 2.1120064520948136 +2.8673309826710836 1.6157791623178217 3.800847598697796 1.806423472124267 2.3545932888055523 +1.153406606679011 4.2653791231852995 2.6384109602052312 3.9293637337089335 3.3691144247275697 +3.3124068441437102 3.2083249705670767 1.5950764595179288 4.822516343671715 3.2291177188566276 +4.2652501042363165 3.587535919198899 1.3599169977459926 3.989957656405656 2.7159547829085606 +4.849107062260048 3.344092800910203 2.246457990576161 3.5668355141564674 2.0021150645361225 +4.9259575459015394 4.427535353606 1.5538530558133083 1.8975160530818727 0.6054163339919932 +4.834202821879206 4.66509296051349 2.579467450405471 4.084430367454418 1.5144343917461753 +2.0620317182243455 2.1847763454077205 1.4868211183781015 1.9342151671633503 0.46392637173461404 +1.8933574223692817 2.225311079117042 4.636514143023986 2.442739638559815 2.218747350796216 +4.768289248366521 3.7913469634312813 2.073139139476 3.280274086494573 1.5529298143857053 +4.779959717267374 4.268329785209348 1.9198995834743382 4.800992622631824 2.9261685337074184 +2.1258606837526415 1.4744918506058853 1.0021128825617187 2.9917729843552254 2.0935684076389562 +4.341779963309986 1.9189933256105394 3.5872125863737416 2.959429632278485 2.5027997381467735 +2.5580065173963202 3.926847620765683 4.235889329888133 3.9408066788669953 1.4002855913016876 +2.872719373096545 1.0947584504974524 4.476096545274772 1.574388145732124 3.4030951615060325 +1.7331938063168923 3.5470150944686765 2.497896662020617 4.529378228929717 2.7233921902737497 +1.3771059759947812 2.8337412109966693 3.099561568715751 3.6256650621349813 1.5487320922732002 +4.698075446616423 2.8569772475154145 4.715960474083435 3.58281042026076 2.161867623887112 +2.978334603548434 1.8129968168284267 4.2641716038921285 3.0282798952115337 1.698658433218087 +2.556921887213023 1.2050187872292644 1.2697173523059053 1.626687004573708 1.3982379355409766 +3.8640273964381278 4.042881673041718 4.383633019778333 1.19107276650952 3.197566234343117 +4.432115035737542 4.890088452770739 1.3702487351456263 3.43660125760909 2.116495310129503 +2.7631288624500017 1.3316387434278258 3.767813114213738 2.0472752406819947 2.23817214152872 +3.9970516960232256 1.9839412617283716 2.2023628216579847 4.054526756096358 2.735530087698004 +4.0451429037084115 4.535329654007903 3.0841213627615165 4.067109793174993 1.0984303821799202 +3.2517636209086165 4.9607441850450265 1.498991350098136 1.422188519056621 1.7107054812129392 +2.5630937695175264 1.7347854663787952 1.2255800363119818 4.399750640607501 3.2804654654823526 +2.623085124066094 2.9120424810699426 3.4553695381368366 2.200072256345757 1.2881256226931914 +2.1967451170850123 3.9182761338725687 1.3242347532928438 2.7984019874425816 2.2664593700312134 +1.3950251643323517 4.913995381297511 2.6923951355619895 2.282387151042138 3.542775456511159 +1.8953437536588953 4.935176711534983 1.7272764997540588 4.721125658265689 4.266581441354481 +3.7427213145122553 1.3068531510987578 4.363308363770362 3.1877600709250973 2.704693605261576 +1.885646356814898 4.095420586093553 1.1359118740183658 3.012071873300905 2.898806390101266 +4.318365350724619 1.94890133428957 3.287996979158282 3.7204377059013427 2.408602231030807 +4.068790649890278 4.6231637779339705 3.257618583312803 4.414249892799939 1.2826244778511264 +2.0129425653861115 2.7335394464188583 2.1525657383190664 4.385807400713172 2.346620588763107 +3.6481492863528793 3.637384325185173 4.9152290259801905 4.7419673518430105 0.1735957721655702 +3.747731486586944 3.8651211398913197 1.055154860057411 2.757592377563967 1.7064799535056974 +2.9103863966604155 2.7004333052222744 4.589436995326489 4.6417241749153275 0.21636600877630457 +2.9989993633322403 2.7219006108456574 2.7390243805106262 4.98551368731485 2.2635145071802256 +1.522291114429275 4.2929324351385585 1.3402694205084513 4.759728966690318 4.401040435623829 +2.738941366838082 2.9048222194477535 4.432520521933357 2.7013057306197457 1.7391437867311441 +2.2010166253545536 1.0950476021233189 1.3789920457119678 4.526522236721343 3.33618251653931 +3.8827546336051575 4.596684356609231 4.492804459805871 4.008085165192757 0.8629301501042295 +4.763399919648181 1.958394450456109 3.707524323378469 4.386405416916496 2.885989470071023 +3.8543758340456638 4.938842591561439 1.1138000401382717 3.1607941005724083 2.316517392900259 +1.968423300254845 4.018060582292364 4.164199357590594 1.4728235795052624 3.3829745146516506 +2.719029248971745 2.0304552435908523 2.9880792669038847 4.723823690893002 1.8673357668870367 +4.792803198524194 4.860900890425022 3.9303349296958676 2.295609361540008 1.6361433246585455 +3.3547499537870102 2.786210761307254 4.957105383432924 1.357714516386245 3.644015837940963 +1.3941774029397824 3.665721287812126 3.379008501766395 2.276742611332639 2.524856771009924 +3.091623121325974 1.561535011108648 1.5242060644573394 3.1221057168885893 2.212341050622245 +3.9228564861894752 3.0787325154632996 1.2190914855917714 1.0769235603431033 0.8560122644705719 +2.841566273316783 1.2321366547545418 4.060526274878432 3.5599803066111884 1.6854702499462852 +2.667655053533872 1.849223639592413 3.407908102206305 1.99206584546732 1.635371295851177 +3.8876990065360384 3.8039690081122304 4.875513615642863 1.9920710708287674 2.8846579731191766 +1.803507040871736 1.3999995648392467 2.550411645808922 1.1142086122335666 1.4918101209152468 +3.0005422775306037 1.1486015024288174 2.7921871229219533 3.9855091062853427 2.2031118878674634 +4.855212994575323 3.2888524058087776 2.172065078446931 3.2602123104095724 1.9072361921033898 +1.0479798150014452 3.145252189326128 4.7975317252473175 3.2423030336216168 2.6109936222368066 +4.029971435256677 4.253925180844354 3.92825762220653 4.503836412246585 0.617613328634287 +4.605948939364437 1.916635295700655 2.295471104853343 2.771816331036191 2.7311742252195033 +1.1952657866389522 3.054697286367264 4.798360362188371 3.1346520937183393 2.4950772943452932 +3.053051404026299 3.3375229321314217 4.980509038790556 3.383858979210093 1.6217939027696338 +4.361703655397013 4.755024991077761 1.216086260472744 2.5996813771504907 1.4384147941383927 +4.76583547201092 1.7410569008979042 1.9901033250278237 1.883580117368755 3.0266536964169646 +2.3961957224247503 1.1276394813080524 2.4305194646542474 1.5447425113331263 1.5472025555534006 +4.908439679853537 4.143747662882884 3.0154884420142007 4.010881426790094 1.255213557511114 +4.109285693051111 4.727908851682054 2.575884960172158 1.364937980223834 1.3598114577545273 +3.309281302705313 2.5742988095545196 3.543359113846041 4.595004156308665 1.2830263288702886 +2.7331520152736966 4.13513967292198 3.263380342474888 2.4362863695693098 1.6277757315474555 +1.206167688224176 2.0019332651183395 2.454226171286486 3.5311369853737786 1.3390219396514218 +4.090222928140332 2.3999391253281486 3.8616706690065046 1.5696020837428915 2.8479181402564153 +1.165241089640228 2.110224785738132 2.921389633544998 1.612821301631692 1.614108195003429 +3.4466904970435897 2.673484105188907 3.4982705723395586 2.063337523101823 1.6299941656949706 +4.058771959341504 1.5810024861596341 1.206710023560713 4.48048059080687 4.105717390322815 +1.1946456726660637 2.7808216861743182 4.232029774447867 3.0864277170711554 1.9566191299521463 +1.6782483539439097 2.577217089043603 4.974449861052104 1.8949600085224723 3.2080215925893825 +3.9392977983325217 4.520412682012918 4.376491185155254 1.3984875091630462 3.034172111508836 +2.4447268010945766 3.528720668980648 4.4457241191908174 3.879577454371375 1.2229328484020632 +2.529219533926579 2.3716099843413088 2.578646269198657 1.2218830992953968 1.3658869167417977 +3.526399470350343 3.3937718480078045 2.9063690966415 2.6284747175611844 0.3079210485378827 +2.9347266120207127 4.724164354714392 1.2713633385925887 3.969048905976762 3.2372202358581537 +3.888039612964714 4.1317043290021935 3.5817826480730943 4.175693722056753 0.6419523795750338 +4.971476078071088 1.2913094599668287 4.677261173149136 3.4013926659573412 3.895056711352578 +2.849488121524139 4.624083186073154 1.9473637311150767 3.825721876106759 2.5840698450270874 +3.26301257865155 4.363881450872396 1.3982630870668387 4.030988170043461 2.853621144503779 +4.149278872506944 2.4772253753396765 4.390444068091925 3.277871507229776 2.008377604080629 +2.2012824240290607 2.7219866708674694 3.3199204032181253 3.1648876603641716 0.5432937180129865 +3.416882064608719 2.7229796481886996 2.125988562540742 4.119556236680127 2.110879587964946 +4.958581807648605 1.757567843031643 3.436964730354609 3.9633877377257645 3.2440116498499956 +3.2247136317321656 2.6860747367870212 4.774265667740446 3.9962980161777404 0.946237563207949 +4.57077405568775 3.4522989291632458 2.7416996745617275 4.4838691211209465 2.070299734139591 +4.122096861508272 4.077016827858657 4.463577089648307 2.573092137952014 1.8910223589434332 +1.6855478288606967 1.4243086408985168 1.6729408900263367 3.7338044421755807 2.07735516797305 +4.464679858109857 4.403278178319386 1.9344654324540183 1.6903041347896175 0.2517635906128121 +1.4713620640249454 2.242378580751497 1.3960839925621462 2.435656444448251 1.2942864257132702 +2.276900769093499 1.9212767149544523 2.9083311044639464 3.2155994222983533 0.46998115603402413 +1.11833496526723 1.8702643938874672 2.4314600600075025 4.454057905284149 2.1578461273554446 +2.647645623378295 4.987612544844431 2.5193245489709937 3.574878778830839 2.5670293971302156 +1.1623985499765084 3.649416483205759 2.0533919470225435 1.1465460343924523 2.647192420179877 +3.4699894171567216 3.102078930747115 2.5581570543477596 1.2061355577596165 1.401185302965527 +4.492860354439232 2.3837766648968794 2.718359065950308 3.535758336725837 2.261940666188649 +4.8091074744733575 4.038113999669345 3.863588217958503 4.294208583513482 0.8830995625755174 +1.260540341816272 1.7679575781127035 1.5110943209871173 2.133823324690134 0.803283053315368 +3.7106855185286753 3.231912918881822 4.414664973770682 4.5976862085719405 0.512562166532786 +1.0971909450486348 2.2701914552858415 4.732231776611627 2.066056195419592 2.9128031905299463 +2.455605610158501 2.1593537575480606 4.694747398397193 4.088534885347803 0.67472866483704 +2.11208344864129 4.055445663164033 4.68871205136082 2.362669903553029 3.031027675593382 +2.8147517084644442 2.27782441574771 3.3860807344079387 1.5121172234407014 1.9493666043360793 +4.349592837200635 3.4449895706055833 3.9517601132750384 4.525709061623228 1.07131903056206 +2.5161755037266085 4.096366537515013 4.564485893763587 4.941288649303452 1.6244950045622488 +1.4251826093558542 1.8946787226975754 3.0763051406259705 3.203281323972839 0.4863636001802765 +3.7998934302751946 3.652482226102235 1.2983066550998092 4.265203704595061 2.970556877997685 +1.2480532179997157 3.5288472755956644 3.7189464445924005 2.2593167319771736 2.7078663983132922 +3.5278287284208973 2.1787676583605946 1.9042414390506104 3.287131485825418 1.9319292565259938 +4.933537680313893 4.8033468532728705 4.45169193420851 4.112493957369013 0.363324811893756 +1.4076068713445435 4.867070084347345 2.1959581174173297 2.38294656897243 3.464513010963394 +2.6104419117235955 2.3024976973071793 1.7636333444211627 2.9928659021288895 1.2672183395615861 +1.5406100454907974 3.240397388793864 4.4150360828182755 4.365772746721877 1.7005010699016463 +4.488040585585281 3.7596187645191987 2.676398104581826 1.9363243531242547 1.0384158641901189 +4.370109586704221 4.972290532380095 3.627095991777545 3.646742954766189 0.602501364720253 +2.5427546852718477 1.2716674360038764 4.367716208099258 2.9087612652259733 1.9349967236628616 +2.907718261393912 3.5798146282142906 1.233701734644705 1.6390325080487727 0.7848608552867781 +2.756681433077657 1.44422961383696 3.4945192646309686 4.71775077303575 1.7941084418123814 +3.0291053122900933 4.392279823489448 2.6128418632616484 2.306054390560157 1.3972699457836222 +1.7274654247009185 2.7261419560183318 3.8685415892218145 3.657406853586074 1.0207510425153405 +2.0793111529885695 2.801804712432641 4.008173415149814 2.12156481446471 2.0202200265360135 +1.0017278078630314 4.679513879717582 3.1619579762445538 4.3406911560342065 3.8620619233078535 +2.8889613159867644 1.3110027908924207 3.4823248949076655 4.6129105201478104 1.9411792711951068 +1.1504679527031723 4.736428913309082 1.5285015558421482 2.7728657286278775 3.795728942575111 +2.002527879870251 4.374552269797645 2.0701794057122203 3.1778394764821103 2.6179019345247414 +4.915605235982813 1.491632277597132 3.2536689307559206 4.834444884862892 3.771265495405912 +3.922745573356438 4.226713724906108 1.543510545575213 1.3736528857272021 0.34820721096147 +4.485495356524528 2.3531087323528688 3.5936005478918993 4.586198374160805 2.3520891053826944 +3.559591346533844 1.7639636913814396 4.496994762857652 4.124279872786145 1.8339015963865501 +2.773405600169222 2.225194364883843 4.372625519838042 2.7250108395927604 1.7364243988878076 +2.3523948976258726 2.5959840221659034 4.190252619402348 4.292269182443775 0.26408907726175274 +4.3884495421031255 4.670389351135346 3.166037517935647 4.816756269008143 1.6746230773100748 +2.1897562963124604 2.3992360185543937 2.9503534270152434 3.9173363133273864 0.9894127836505451 +2.9582626376182706 3.576039128690824 3.071480358645492 3.188529274766049 0.6287672396737236 +1.512224729017079 4.832402719169794 2.5167401110543635 4.713655929588991 3.9812084848726768 +4.040970871513318 1.7661046851321647 3.9973152053295546 3.005472604519505 2.4816865053269677 +3.341927486140796 1.4803026988208345 2.601399881454415 2.330067801844501 1.8812942210588788 +1.837769956878038 2.9873915282588692 2.5708201471161587 4.2933980872957855 2.070967048839169 +2.635500906589717 3.891816115746105 1.292857708124143 1.1219589862556614 1.2678857511203205 +3.8409387277446037 3.876895759513576 3.208042960483286 1.0775476976023697 2.130798670285783 +4.093960379153229 1.878345197628858 1.279344381037594 3.040881370320793 2.8305411491822876 +2.2713009334273186 2.3911919327214264 4.32574551313201 3.379821201126101 0.9534918225950303 +4.389921245690196 3.205437134155315 4.580504531485161 3.5902916567246512 1.543866622419194 +1.5483224521309116 1.3180832047731 4.16743181699877 3.0569424828342697 1.1341061115773101 +1.3376075963093221 4.5753949956743725 3.2351014912184324 4.819059209220805 3.6044679629463183 +4.48212334182646 2.9736950942913185 1.3431507763151909 4.5121516847907355 3.5096898062194564 +1.5593648328196577 1.746533235901667 2.605284628830652 3.3335844124719167 0.7519658143587262 +3.5389508392527906 2.493179830338246 3.4808483701345567 2.234438304842616 1.6270141529646276 +4.317020292746253 3.719302795115144 1.7508791676392486 1.3760599833605496 0.7055179855097563 +1.4799312460613234 3.940194845560798 4.604359088754972 2.811306911258799 3.0443280194890097 +3.5459598587113876 2.91197279606198 3.180587293241223 1.5068866304713557 1.7897523583342798 +2.3707260920203 2.920555881994094 4.233457447453988 2.205185715507341 2.1014754380093232 +4.307589270044364 3.925924066862234 4.162564178835737 2.4109524410166143 1.7927107985912796 +3.7721882183206845 4.160244384691126 1.8197232907535144 3.977657999342591 2.192548698385408 +1.0198404675671564 4.733271320778208 2.8101936154120173 2.215984861035036 3.7606718476035637 +3.1982949360012114 1.1005375300264348 3.4455026870200256 4.001592643423467 2.170212472071526 +3.885631408979166 1.47322789793263 1.8270307645856918 3.4767193617632612 2.922526846372391 +4.428672562810869 2.349824813245338 4.101522853676707 4.105965072153389 2.0788524957722867 +3.5874653462959936 2.8127887463457975 3.0011504535422278 2.8101750022789327 0.7978693235709814 +4.061556866655324 4.457754755167224 1.2473853997157063 4.367590043673421 3.1452583021171057 +1.692792183671377 1.2615455558675075 4.06140331186057 1.2778487789308373 2.816762235579331 +4.138901871622664 2.3847877513582376 4.934104322897015 1.8033397366590949 3.5886770879186862 +2.0358143812968885 1.307946171841416 2.672623615524949 4.50517465014053 1.9718101898526015 +4.060344042247504 1.7070655397384376 1.3567009858860177 1.8240290390247638 2.3992322146098664 +4.641584921673285 2.239390672961719 1.6007490248392258 3.1873741760178445 2.878874186013606 +2.8804508088728804 1.0573483694695014 1.3950446316319516 1.1559198280267289 1.8387178076740835 +2.861433562931696 1.1228873099222132 4.055714222679001 4.461411535084545 1.7852544309275342 +3.8431284662943748 2.7876997863986626 2.1504211115380976 2.8060974569927177 1.242514051564461 +4.446714440664317 4.773914280478628 3.4976907352893227 3.2013962866818417 0.44141832251292246 +1.1516787211591453 1.2909242457938142 2.456399305666672 3.9087481763100937 1.4590087587776868 +3.832596939791179 2.3267815494170296 2.925733280530629 1.941946891587405 1.7986983207190697 +1.044613756750722 2.30412989068407 3.5831424674060353 1.1603214177697563 2.730648774595343 +4.813610339305681 1.133314801584989 3.21010406966674 2.601863398592652 3.730218754834024 +2.3962591658612307 3.32273910582338 2.818801877791411 1.6456124345999745 1.4949041938425687 +2.2286003391192217 4.398107326749489 1.7739818808323102 4.413785771319172 3.4169174923615184 +1.061164130229383 2.717131932169934 4.78942112349088 3.0345321002845917 2.412854086933924 +2.5376315571427583 3.217158268969806 2.979724880183416 3.674261141212779 0.9716672115344465 +3.972212844214092 3.6733400113392918 3.7379395754735754 4.107834927230483 0.475549725561875 +3.298565128836831 2.449201227024633 3.6046550648471922 3.7273889127139443 0.8581856647100442 +3.175754727119148 1.1429012339457407 4.57467285895761 4.520117096230516 2.0335854188978786 +1.2080435672118819 4.227045877004002 2.4979902512628205 2.2795202874413656 3.0268967725415257 +1.9773949453096562 2.3846649557002526 3.584551013220191 1.2552173877225448 2.3646699558791635 +2.0723303785952147 1.3627101591762134 2.7535303382391736 4.485097260345809 1.8713323760203895 +1.1085083675440632 4.572618242334462 1.3573936474528678 2.7970263837464207 3.751346376972995 +2.805628334510731 1.7120786736202502 3.393124020873449 1.8490427625262553 1.8920987799828894 +4.280394535372919 1.942750690856868 3.2494831255578847 3.429555011117873 2.3445691774338653 +4.758741244240193 4.379785916748483 4.134610568918271 1.8697348264534015 2.2963600042328167 +2.5272473678384495 3.8142573579541006 1.5243886244765918 2.5052324960274865 1.6181623574340234 +1.8225334355001133 4.691875117044907 2.6713163827907795 3.1284408394404877 2.9055265365020495 +1.9729610089571321 2.4286378545143017 3.3685659577526312 4.058491708006072 0.8268246056085324 +2.45577712602061 1.0152910497712053 3.0577629952451715 1.0640246822810826 2.459673270263613 +2.267157912363273 2.0458754480849635 4.904816281183024 3.5288149667062476 1.393680575468747 +4.156844920135254 3.1435576730108457 2.571814988181962 1.127886601820839 1.763995530074948 +3.5807370591795133 1.6160806040196944 4.7261542909330085 3.0535657897583555 2.580199077796676 +1.2747107788910408 3.331274456219641 1.6169160242272853 3.4297026011934864 2.7414684628016737 +2.0372271938225355 4.73039825724146 2.3402447139430906 3.585875463658336 2.967282652777316 +4.197965887198855 2.6071455385674622 1.1191801675355997 2.770538716820306 2.2929662971608185 +1.7334110094090396 4.78023395070676 4.196080439451876 3.9779104476594505 3.0546240654026153 +3.5529124074538263 2.360298272793164 3.349801459788247 2.950677935372241 1.2576279505221941 +3.7654125561167917 1.8116606306528342 4.451102023644063 1.3086456902366073 3.7002943658075034 +1.1391008454823663 4.669166281799937 2.3549709148362292 1.9901784253197738 3.5488639795139476 +4.998411956505567 2.2383133070459555 2.1175841856776696 2.751527687500977 2.83196555739168 +4.526502337271647 4.032985017800993 3.0591782755662527 4.173135044151236 1.2183837765227332 +2.8044205895366825 1.745215304210443 4.854054177309296 1.0139988127176838 3.9834584269942943 +4.263023127910262 4.621954940671829 1.4882816886156953 4.651164067994223 3.183183468164454 +2.4166285931547207 2.5830031969831575 2.127319097341036 1.5837632109853543 0.5684483357271618 +3.5013609089451383 3.2227635095655502 1.346397503319103 3.481716479295732 2.153416736283748 +3.7323393787421373 4.859118180003588 2.7962857656699973 2.4310221537385313 1.184503260094041 +4.107219767567178 2.4058316236856614 4.557262488831796 2.263879262380725 2.8555784421913044 +1.4064073308645222 2.1895179499381006 3.1558208258190574 1.3955974934749813 1.926563889787797 +1.4607316750216315 1.0520271502182794 4.74905103551791 4.393665896484301 0.5416068552378849 +3.9822689520090955 1.4504551702163568 4.771941977706412 3.6841390694326703 2.7556117638238624 +1.063630264382828 1.8640709824653947 4.808274552678583 4.786755144471096 0.8007299345560497 +2.4675979475007908 4.096931290880013 2.473896579318517 3.821123247843431 2.1141775801081737 +3.0983895851455543 4.406323592491271 1.963502257395977 3.3841814405434176 1.9310672461102703 +1.1579892859460017 4.214968360727994 4.5323327013274906 1.0509781685537973 4.633028215597106 +2.0033883825768757 1.759824771577672 1.5484570255049404 3.620935805638246 2.086741844768012 +2.3513233125179323 3.16809337573116 1.5677125444509143 3.8444642951266674 2.4188244810995374 +4.193059136897727 4.147001615255976 2.4939611932965584 3.1311116100526784 0.6388129216541237 +2.8063685587226046 4.978842219117679 1.8397879047201937 1.3650233900883175 2.2237452977946943 +3.971938009610904 1.8361810011311253 3.7745894048524917 1.8988885458281723 2.8424833705432757 +4.947707634754055 4.08650663486033 3.1843770265819105 4.809469577734756 1.8391826885957838 +3.8948164050768166 4.708230746253149 3.187442649194532 1.9002492523749699 1.522665337901671 +2.2522365775657454 4.617627914874445 4.514416868558035 4.582607174469827 2.366374039841416 +1.5077684754896832 2.7044992227627467 4.6088104426847725 1.5387042050814177 3.2951049742974456 +4.623594221025881 4.206675730951714 3.8184457895283708 1.446492817615586 2.4083151638296045 +4.250142046524208 1.2809071663858438 4.8418239533702225 3.929628364166343 3.1061964790388417 +2.774115685922237 2.075403103367939 2.207416802253381 2.6245547302325294 0.8137587627659892 +4.415914444136726 1.1938794971693283 4.12158927890959 2.2548916908264984 3.723717105908347 +4.626071667256339 4.104028922985405 4.300310977011231 3.069820981056187 1.336650386971616 +1.0774206437391438 3.4662323454915103 1.3595718147613525 1.0850581226191407 2.4045330344169917 +2.0450856486939517 2.3607321308845517 4.96464682818961 3.728074810249828 1.276222181781435 +4.688916965287861 3.386336781335725 2.5779681125529765 4.941691443219904 2.6988707119022823 +4.915103388040098 2.195277910808453 4.029829827994484 2.312690236808334 3.2165228123265788 +1.917438598054702 1.6468765812249408 1.2540316941260574 1.5039856626528252 0.36834873602778706 +2.100398870388065 2.6913854608157712 1.4732800464540592 4.928917958297156 3.505809254342381 +1.5390930247990169 1.1699823321357745 3.060119708291305 3.7933712052784454 0.8209144055699236 +2.8847032171841303 4.891615864099969 2.4769484111113265 2.0531482566451125 2.0511716025911446 +1.9465866315062108 2.670664625243295 4.997684999792795 3.6963664545544153 1.489200757854915 +1.5146609149435157 3.1925818297216697 3.1962589199077063 4.094044413666143 1.9030074590114034 +3.5736035123718866 3.9143993250041853 1.9760138418404583 1.5961864341310865 0.5103044635851525 +1.4683955073592756 4.9134858606610425 1.7437794905214261 4.777641149149843 4.590529828473883 +3.2805110142224527 2.219515746451944 4.153727412580686 3.8251590253796226 1.1107061462418046 +1.1593932547664445 3.6953483267629683 3.1614293894517513 1.6457922951562907 2.9543567707352616 +3.5304717606907996 2.120173664139873 2.3565148546214547 1.5108672269125263 1.6444028190759419 +4.994109184564611 4.490249463707666 3.1740922007367045 4.186358486962931 1.1307332366797544 +3.079172113155376 4.679379333650752 4.914622012135963 4.408571490564418 1.6783176930808932 +3.0177091648304417 2.834504892081034 1.0354290277041116 4.5995414899510925 3.5688179344284117 +4.404811761183216 4.991244338835575 2.6993621808740773 2.4559260464190174 0.6349522184309716 +3.4882316527055868 1.0720797915855282 4.923988497884324 3.7746952726302 2.6755681141785472 +3.6065213585506912 3.3836527323626715 3.0307781332532953 1.839686359885845 1.2117631935005093 +4.18190830187654 3.9875660807683913 2.9289861566992137 4.740643218120925 1.8220510989279086 +3.00994610401564 2.1169777412113335 1.2857124422742796 1.6510327287994362 0.9648064099684588 +3.384672260930075 1.929550984837031 4.71833414840148 1.2757901116176984 3.737443962567763 +1.7480291979532825 2.7125189636590354 4.486228130637518 2.8757234055571805 1.877222942981795 +4.209070529876444 1.9874738012991888 3.5896621441374457 1.243537594202027 3.231066763196767 +1.702383050961127 2.1237906215220996 1.5030985905888068 2.39918808118422 0.9902326573495989 +4.604334109259138 1.569685670381609 2.534130669996168 4.611510195401353 3.6775802969010067 +3.485133093908845 4.183695865425335 1.1454520652743665 2.1574025558997554 1.2296478118655623 +1.7129882665534972 2.0966100796232 4.080290702424872 1.4738590132519684 2.634511690197559 +3.193818971540484 4.460631677381244 3.647587616019016 4.782206379446853 1.7006393415424983 +3.4037386017458657 3.4114275695600846 2.72752115377931 4.500464719467422 1.7729602385109835 +4.152981243423376 2.091628695047241 4.725199232413258 1.7426520345382976 3.6255705918170404 +1.614394233658552 4.83411520508948 4.262730476156672 1.2848521613994959 4.3856997607420825 +3.1124302916832 4.601877449849585 3.4157611482547545 1.4574131267288521 2.4604023675781845 +1.8323049683856758 3.236856899066831 2.092338363848519 1.1055844469919092 1.7165224782717012 +2.6633474501854404 4.503013111599056 3.7589320231279855 1.1179184249456258 3.2185901527794014 +2.0802880168825264 1.0129436532630613 2.287503045827976 2.4914542102340507 1.0866554504592678 +2.9250284439739427 1.4572312726231567 3.407002884193511 1.355268102740764 2.522705719985651 +2.7265096754575366 1.875993028136222 1.8112287583178133 3.2177752547193372 1.6437005852374973 +4.293319343260186 2.0986844480784432 4.742391154771782 3.6355777950016352 2.457937781253842 +1.6455436479061634 2.5500769848749036 3.161754938341278 3.7184840585018337 1.0621336408016417 +3.9066956096973375 1.6697147380556858 3.5732378484530094 2.3163018484956313 2.5659250823201165 +3.9310793658190852 1.1595469079799683 3.0720931288741244 1.4735188769454504 3.199504931045592 +4.03884662220279 2.5341547351661418 2.970625346559563 4.9550601430842285 2.490397385272439 +4.535140172835687 4.40197749304873 1.6889990742109968 3.1465163645758882 1.4635876984317198 +1.4582547729018622 3.8833435432688193 3.2957603038900563 1.5877507059390705 2.9662016672594276 +3.8889417805393114 1.2766128257743015 4.494360405065569 3.3942714168721118 2.8345120126484127 +1.481218066228526 1.5131163986534526 3.672777776208457 2.8066204126246745 0.866744531048163 +4.944799717859269 4.266214657148595 3.467175891862217 3.991190166927324 0.8573614436698902 +3.1163522974826923 2.7066668526198083 1.4869048059288623 2.549896218883957 1.1392071399656727 +3.4411539859889113 2.0197326120303236 2.414020543114921 2.378940433128436 1.4218541895929353 +3.9435755204841945 3.990011379809507 4.593081470584284 3.350424072666373 1.243524707286266 +4.237301530270873 4.559529868054706 2.0959565814200762 1.4939899229585776 0.6827847095316608 +3.3871386753933646 2.4018883389014563 1.6917255163351212 4.822409929867547 3.2820577573669065 +1.7926723279927566 1.0168433676014703 4.7856203780669 2.5758695721944376 2.3419883005335067 +3.8099125072262674 4.677379688256689 4.666805765609807 3.596842667590197 1.3774325178710525 +1.058862905226074 4.379708036285816 3.2108031099123537 3.894041008256077 3.390402101553198 +1.5391339218105093 1.2222082121928546 4.1516661210812265 2.146177274480327 2.030376176785292 +2.087765182232718 4.460750293201222 2.8414391698487287 2.651387410838699 2.380583543583592 +3.265129320896129 2.4982148190160274 3.331448681259226 4.357991150618371 1.2813849127377677 +1.0024047851986633 1.5694513689049328 1.6335167919064104 3.8131325131593545 2.252169292132797 +3.5884691677993903 3.5154046969089134 1.6864947643697947 2.44530976495576 0.7623244860430393 +2.94097359899412 1.6396622016942968 2.667360131531692 2.5778136507673075 1.3043887169704071 +4.511807535698903 4.065491733158333 2.926345685889936 2.147603844855898 0.897572643619733 +3.3655260424731286 1.3254983594664207 2.4886336625671137 3.1796394830811967 2.1538806817969416 +2.7145345702975354 4.802933703404624 1.2834238594169936 1.847280087386682 2.163179323353162 +1.3846794048874052 3.58417126902678 4.988250274490778 3.8316480818733014 2.485053941543897 +1.9809087430171473 3.667169383258023 4.155885400190918 3.6040808569663514 1.7742500389597968 +1.968946503221611 1.2190029968842029 1.3710809734799434 4.897310577370909 3.605095072540346 +3.8978380717275307 1.237251103627122 2.1892681425800653 1.8360788144018283 2.6839272934199836 +1.5020067643380037 4.16012344667034 4.919896669037543 2.8916219062996142 3.3435733594543833 +2.335164507553025 3.008333102275967 2.868837563152177 2.2667711361431993 0.9031278643982906 +1.3745962774871057 1.7030237015537115 2.6773264756681616 1.405022991576549 1.3140094095974664 +1.956189684984067 1.8004420258052636 3.0071867872820524 1.5268489011462592 1.488508512057847 +4.146664543405858 3.225988550211159 4.476971157203856 2.68497669292998 2.0146683211966336 +1.082877363592484 1.890502179458979 4.273829483758361 4.2823715761262084 0.8076699886373213 +1.5731058338664017 2.207957473482516 3.601159427773379 3.6501327253439024 0.6367377703562115 +2.4178397758309638 3.0538544463965644 3.2871900813837365 1.298064038946959 2.0883335638433973 +4.50982560209674 3.2850585459608195 4.134608155625938 4.024836136301186 1.229676476973713 +4.002259927818786 2.309263140154659 2.8045687339414336 1.0298226895532823 2.452745735927889 +4.34385066896891 1.035328324628371 4.667538431177382 4.197265299299124 3.3417775092856203 +4.875721472511115 4.798773498447444 1.1622860851149235 1.388758270709665 0.23918746112738118 +1.3941433034946713 1.6277276733710062 3.1993474588439605 4.449699031111739 1.2719829842112784 +1.872069344121722 1.1416675486742394 3.1088037562496047 1.9383823200975967 1.3796278922220424 +3.6486014722951428 3.033885805200382 3.0278365464669084 2.4917413373481945 0.8156429516717435 +2.809815756828229 4.6860554758244195 1.6063974678990407 2.5031362962599464 2.0795230245008094 +2.896859631327357 2.156826047362554 3.3514662812132623 4.499328261614024 1.3657367357749992 +3.0846777843852395 2.8611253316210603 3.8225789043680987 3.1139146284279042 0.743088658997512 +3.6167367749491057 4.313279685921191 3.4537999677593816 3.1802421449954292 0.7483354256086102 +1.759162626917413 2.445479049123015 1.5295261136660896 4.454686938139236 3.0045958264667676 +3.9213274750983826 4.827485454804645 4.5546732682423645 2.692356538546987 2.071073607066784 +2.0763404071641935 4.416862563126013 2.9701499921019425 2.782580805469499 2.3480260139790023 +3.8861456369989322 2.0406069216101126 3.7248875701293156 3.474356294044213 1.8624658574845994 +2.7345803983792494 1.1142304695244425 1.3073916578822256 3.827359955749371 2.9959596316030725 +1.1272023488345742 1.4936160569596648 1.9012985965141453 3.2152342021629594 1.364069566148917 +1.9094893341954458 2.85218477041563 2.274094100442278 2.845817019171503 1.1025161138371753 +3.4723886785854363 2.6526929998099544 1.651771300634124 4.553416030651813 3.0152020073359305 +3.243926480868948 2.393978649690397 3.274260362673889 3.665693543442694 0.9357517035687971 +2.099383189489184 2.3123953880484214 2.423286108920539 2.2429416889202747 0.27910268103382974 +3.072820245966466 1.553805868245238 4.008737705813676 3.5628131282350433 1.5831150964514524 +4.589536818547106 3.412254013335987 3.9368553481735233 1.3467733106071837 2.845086952057804 +4.012238712718352 1.049049354302245 3.405520893759306 4.544316512159246 3.174483679957634 +2.6189823410988278 1.4548466406856067 3.5019001126488942 3.409973584020166 1.1677595709915245 +4.601300423576589 1.0776035401096178 2.530035184315054 1.5260405051247488 3.6639384605090313 +2.9174397950316484 3.4422197854017322 4.43364321682837 4.462813217035956 0.5255900752534581 +1.3176958359174935 4.066077598433429 2.6656521559253568 1.039139143141809 3.1936103227044486 +4.261615293570445 2.941775532509717 2.7289551863412824 1.5186051382669015 1.7907887183446562 +2.062091219896026 1.4717927667964217 3.328151699398484 2.3481960990846 1.144012780662144 +4.349637806811255 2.1771866301348095 1.7173098961001831 1.980319698839068 2.1883140248555777 +1.1796059226795443 3.226008948104837 3.7350492267911126 3.2340613088864516 2.1068351232016798 +1.629854422082599 4.475919064795722 1.511000756912011 1.0990616594595681 2.875722130267754 +3.83599668195747 3.849004459332739 3.3086848611450863 2.836101114332374 0.47276273121280016 +3.880416049224818 1.0905974152730504 1.5859500276807696 2.9138833217387954 3.0897402550719866 +4.963043927154217 2.7990843442466127 3.392418496588682 4.855540871660832 2.6121730725383463 +3.279576173896254 1.3096366248163305 4.180334699390892 4.518950563650605 1.9988302905843618 +4.235889579089516 2.6929809895975763 3.7902111713082114 2.191480035772017 2.2218254115165883 +3.7199185990732038 3.768210818833966 3.9745392879516657 3.8677836842498245 0.11717037770343786 +3.2399687080426327 1.114245461518447 4.920290433353646 4.4431351213055255 2.1786180281612157 +3.4729492138456712 3.7322915523931877 4.557167268114853 2.160655147110483 2.410503846643717 +1.177692565997098 2.5463592425895887 3.5235509818847657 2.1041436463303036 1.971792498170269 +4.166032838113437 4.233840998846783 3.048822989624657 4.136354481013614 1.0896433780942865 +2.012919900005717 3.2497025886139816 1.4794599872700243 1.6470534446107594 1.248086129153156 +3.9311877406243005 2.7488599029860663 1.3951044944919837 1.3609891848797746 1.1828199228979193 +1.0172718491274346 2.1452892027231107 2.8142807610514993 3.082068181504425 1.1593676088997071 +2.448811119600377 3.4601137917708598 4.30046158630895 4.223417942057737 1.0142331181038542 +4.329186888631899 2.371115612008521 2.6041881457834735 3.9154538009656346 2.3565781851654757 +1.5139138188549373 2.11053991316055 1.391271127514441 2.9821881070629908 1.6991113948832934 +4.998920440833097 2.2200910993667486 1.7290921953323148 3.080434871849571 3.0899869802915223 +4.604247297032842 1.6678172665684068 1.7075767482305788 3.700472157863605 3.5488383222612083 +1.294810034873712 4.5035704237731 1.677078454427888 2.246555747219895 3.2589028246290908 +3.2945196254090576 1.6949902094954141 1.0259810683826411 2.392372188982307 2.1036917661165697 +3.550006244010141 1.8707599823594934 2.777427639647902 2.023704135815679 1.8406431287723317 +3.823578342335894 1.5778999582910602 4.335060765920399 1.9356976358167244 3.2863376020529476 +1.617049133327086 1.1939922406232295 4.69394203923361 2.79949016485596 1.9411143806579854 +3.978837697740587 3.60878845584568 2.9349148850605546 1.5484803731732568 1.4349693715125649 +4.7972219253587 2.1893116231392447 4.74664404512357 2.762296366337534 3.2770156933902377 +3.683892046328171 2.369826052608107 2.5393025605059503 4.564685861612388 2.4143212197742687 +3.695444173683109 3.8167773328341448 2.587351206314887 1.2613600101265399 1.3315308437578808 +1.2373487823194669 3.090095500736297 1.320290363082107 4.368947616611112 3.5674895167469445 +4.008312615450643 2.4172506720465186 1.7740161962930907 2.730790094366975 1.8565813744041508 +2.7498546122916854 1.6861786529196756 2.665101063212937 2.4477955607643693 1.0856464562371995 +3.327868184991079 4.98851576646037 1.6077399185045227 3.4499750906732407 2.480238057004874 +3.253373349642849 1.976603851881717 4.714041852262411 2.427016390755171 2.6192796360823363 +3.370019536376861 3.7274094851950776 1.817009714977614 2.5312450367454917 0.7986611737008075 +1.4934022294003841 1.530346646817986 3.413636453022223 1.1355411442740784 2.2783948572884887 +4.871906189963025 1.2076610957576297 4.513913216840967 3.7703361190276135 3.7389301960321264 +4.380575599768698 1.3742296196935198 2.7931946707917477 1.7741383249048654 3.174364816464313 +3.638619351352184 2.4088737117849695 1.3615983521270412 2.606594736291499 1.7499400945795696 +3.136314378091206 2.719440726736592 3.745732120368988 4.152920410322648 0.5827400318058766 +4.8003490591662725 1.8788625237267182 3.1687231277258734 2.11288312809554 3.10642586931895 +3.6462934233755924 4.4774344455526505 3.463395112218087 3.288533140597753 0.8493362749020411 +2.1205123568452864 1.4064922668943014 1.811976195157146 4.782026971764822 3.0546728637419536 +4.375045284337187 4.038223099432784 1.6277368644366126 1.382821979397876 0.4164522603580309 +4.475679255719447 3.96585546855872 3.6375565562589647 4.1781914359136 0.7431058922213498 +3.0258460194893098 2.1194436554053837 1.7998250098650872 2.4444715232316216 1.1122654237242833 +1.0021567264120628 4.875887743003406 4.553252327364615 2.141918601864484 4.562929138682316 +4.599167658450545 3.6407670388721023 3.917575844444239 3.5263006593623007 1.0351946764107938 +4.220345291062802 1.4617180867918758 1.716395354540941 1.656170896293335 2.759284515506664 +2.18736120858609 1.413578908054835 3.9847359666442856 4.616345937476355 0.9988344226496846 +1.942659205027157 3.3574474335882996 4.195455169481161 4.129715833386947 1.4163147220816719 +1.0175897868768953 3.0165096641694236 2.156378441138244 4.312981868440478 2.940513393692829 +3.0116792378101787 3.746504950982804 1.481530182401805 4.022175000023511 2.6447769127182896 +1.1059870018283031 1.8387917248173613 3.669872596758713 1.2189268472617019 2.558151252176567 +4.079045512614652 2.1687099879182212 3.0875079927263998 2.599260090765441 1.9717423337460869 +2.5188356843152397 4.419630250592001 2.8401446588861132 4.492596935427309 2.5186541067469825 +3.43265692687649 2.338850090505968 1.18871663104338 3.438707588234106 2.5017739111940007 +1.7894569687022943 1.4562025022462946 3.509301109653019 3.056905492087916 0.5618899662789715 +4.75053876133959 4.359824886085037 3.277893116872762 1.366222163755472 1.9511901919876489 +1.0210903501658555 3.6430963109214107 1.8503294537277153 2.8079671592630304 2.791412766557573 +2.1946723710512033 3.0012964726636566 1.2877136518343781 2.8438781647675837 1.7527950343992702 +3.346337453861646 3.2052753325907664 1.750291012038784 4.067708778146809 2.3217070497223693 +2.687096251727757 2.506477826399015 2.1036733071674942 2.166836107390894 0.1913440746411956 +1.0816538314831758 2.5833166698664733 1.6421041849838471 1.6462294049513644 1.5016685045712193 +3.7304109607307128 3.5824990783570545 3.232183037147515 1.2502837185789728 1.9874110882979823 +1.1244905825588707 4.764643453470904 2.3023963453505356 2.092301354042531 3.646210749392008 +2.654148433599955 4.906388150916347 1.4393809912423383 1.1592147867330227 2.269598388791853 +1.9014663720064737 3.011869124696951 3.281970256057048 2.948096930452003 1.1595109618857258 +3.1055056456935275 2.511168479567297 2.7166071167854153 3.7387929894792977 1.1824130519297866 +2.196423001953858 1.1347846842875033 3.26391636100177 1.6257859476690162 1.9520622860511359 +2.928781352959136 3.3538907726365172 1.4781214200676356 2.837415959637657 1.4242189663121736 +3.4673715153994715 1.4747880161350864 4.163111394515132 4.765608046645541 2.0816799027153654 +1.4500161252964294 3.913157987732258 2.736280845554986 3.0698288691475626 2.485623084565791 +2.627615889888217 2.935353573807289 2.6048077773727143 1.3818712802024216 1.2610615203926492 +3.8418433370746192 3.709557055767573 1.3351674606140995 4.907779222700684 3.575060064225699 +2.3921982633809744 2.6807172638333654 4.566444694661461 2.8467413233853796 1.7437381967486887 +4.62459936240744 1.771109428570702 1.8525953816184373 4.426165534817473 3.8426121500802677 +4.749034980782783 1.8852522816056836 1.426717425250029 3.53207516555433 3.554403263948156 +1.7529088044677565 1.0446522457597016 3.0635384536103287 2.0764665027656304 1.214882047401037 +3.6239487575184497 2.9913089557644468 4.193870180070151 1.0668497288096401 3.1903745895058835 +4.86518277776835 1.9044871607521663 3.1586988313041813 2.1894931424869393 3.115297450301423 +3.1291158897290208 1.0420843830546276 4.702420850968808 3.071839235994816 2.6484895531118826 +1.6543421317710152 4.458733510632063 4.8645273028468665 2.1414221320522957 3.9089529003351142 +1.8116955447159224 2.0693211050900904 2.9221151938288217 3.7148254777836542 0.8335229592793802 +3.3777011218193636 4.847925731932758 3.1596638179205585 4.63325549532026 2.0815938210623 +4.444900683158923 4.3127388968362865 1.8043844142219947 4.2049052943945675 2.4041562415759286 +1.4880899675312023 3.4912262147188926 1.51738139002572 3.856014277282227 3.079246434788046 +4.246353720594963 3.487585229371942 4.103579506635196 4.970811805244711 1.1523113654843484 +4.598356482201016 3.2014397208792333 2.710528010175793 4.890219608089062 2.588905540971983 +4.912619705649713 2.944508593396579 1.946854588552256 1.065092940817176 2.1566095969346777 +4.737774109111939 2.816614147161416 3.2596679299165343 4.772438316138626 2.4452668240566857 +2.4695212410161407 4.915313325707805 4.33995552366072 1.196562574195203 3.9828153555355685 +4.594732435725005 1.9060335855434283 1.8396466685302442 4.883921921489543 4.061614620166239 +2.008767110655073 2.7575568775672963 4.173428825156749 4.521416966432453 0.8257008305076247 +4.278332861804968 2.799853751971083 3.1626406846269 4.932002298475585 2.3057625633998873 +2.2355681109003314 1.0308353574769322 1.7274456988847557 1.4321451220079857 1.2403964841432267 +3.5733822770366936 4.7127509310566 3.186126120919421 4.80866416942089 1.9826221648609923 +3.812397929855755 2.0253028484453495 1.7013611294784132 3.165123918790076 2.310045526255862 +2.7869540562137227 2.6016478681625648 1.7953479216243067 1.3040852609287668 0.5250498882236928 +3.4222819211694873 3.9501822090978993 4.613322081441947 2.2148834783306404 2.455847398941843 +1.4250106256573503 4.164659793779945 4.902638858191662 2.438745289046235 3.6846233300665916 +3.446654075560386 4.769774605011749 1.0980127368556283 2.872461776970033 2.2134401576321387 +4.120483347379007 1.870710969989557 3.4724050935836193 4.532413385728976 2.486984786741063 +3.2067416632952264 1.6003756492820846 3.343858977232897 1.4378355079450231 2.4926566623690176 +1.199115528303829 1.222935065360352 1.7377791459396055 1.9236635407215736 0.18740431843755806 +2.2591023397274066 3.9532149818623123 4.298451224661392 1.6442989174427356 3.1487365901509494 +3.437286145976559 1.03416669043084 1.6762668566484158 2.534155591172143 2.5516575394133665 +1.2561057480627804 1.1334215512873898 2.5497807831613777 1.316278618491213 1.2395882390473076 +1.801092417480322 2.512731260785317 3.280847288936053 2.651587922296193 0.9499458899350367 +2.285997759133996 4.085030447100033 3.9089039725936057 3.8575338349348827 1.799765957954917 +4.968306758996802 1.2614651912622623 4.193657561024908 3.7456836103552247 3.7338124040668226 +1.6500293298792759 4.8729489538471835 3.084409990269541 4.216887354375901 3.4160965856911494 +1.0589533546443657 2.7006216717664584 3.903972530003048 3.468262121694595 1.6985047610621535 +3.0680216219182994 2.606943824880201 4.383644605860723 2.9087855470615214 1.5452514288113675 +2.5334910020838106 4.185298724842639 3.6536050861632146 3.389012812443857 1.6728651542421717 +3.743533115356995 2.016188126642371 2.6894175149321367 4.7333702365739825 2.676091074374083 +2.4038898944258213 1.627398215585396 1.2484536483627813 2.9919487041452735 1.9085896198099837 +4.466753813147095 1.2251169560087938 4.5436427532353925 1.0909765473796948 4.7359384964983935 +2.5423552898009554 3.1685153491709412 4.8690583294374825 3.3642695679018604 1.6298667543066627 +3.171967664208303 3.6800913932529222 4.966390450319707 1.548816340582631 3.455141461584949 +2.1633960726651504 3.5317989311486784 4.340237433228624 1.687042128137564 2.985292566912518 +3.4822134717111677 3.023276879305517 3.7123315894216242 1.4875354658533193 2.2716383046808897 +2.7155956800820187 3.3973026772817496 1.7741186017201969 1.790308580315017 0.6818992194144049 +1.2154758396171461 4.138871745281838 2.897669893276166 4.66606573838165 3.416645648328697 +3.1217782414074873 1.9775484338248681 1.7959745129958948 4.339236115873815 2.7888064531684025 +4.705065652326059 3.4063227971993375 3.2227152341385708 2.441460006604183 1.5156162886075475 +1.377360899337781 2.8271601008035465 3.1995019001406373 1.923896402936732 1.9310844386167048 +4.2162271827756985 4.240162790456388 2.281946038379175 4.998695826437612 2.716855226954614 +4.349811009538596 1.594731595568859 1.725982852900719 1.1668112351601017 2.8112515852136903 +2.897975960903937 2.4825229385910825 3.4106076932288825 4.007069524721821 0.726889214514011 +3.181253723809515 4.95616726957246 4.25150484704275 2.077111253547129 2.8068319497910084 +3.6899722059198092 2.088479950845814 2.108479453624841 2.1927611447496 1.60370846681086 +4.953578088853595 3.660630026342697 4.870323462243363 4.469507448420739 1.353649943407579 +3.2817438813073667 2.6987385281205762 4.98929929981522 3.655637056830153 1.4555240362867297 +2.5253966767906193 1.5186465388456538 4.013783631727598 4.680306748943353 1.2073934346497062 +3.969380792156492 1.1731368114362946 3.1735791283615296 3.759294996183425 2.8569290291381573 +2.5157160613294147 1.4758660133486323 3.1027303328186733 4.865706674420192 2.0467959603566523 +3.6102261890942837 4.071866443355567 4.0894815690677415 3.9984336320887737 0.47053315630521586 +3.8685263812265345 1.750567513732451 4.039158804392614 4.668770431698109 2.2095611703763924 +3.654161746165445 2.8896550346758447 1.222125268426944 2.475000279235872 1.4677078403490642 +1.0603934465519615 4.559782143133077 4.691314175775927 3.708829335685847 3.6346936199309163 +3.234874301512204 1.6499994895193932 4.997907472434427 4.489886496835279 1.6643057054934223 +1.8131453661119932 3.1029990220485386 2.554042961186124 3.2075106272002123 1.4459399863959679 +2.043336905957755 2.2516166585874258 1.5221000655301147 1.1072259901117851 0.4642208028618392 +1.728275383881806 3.981459859601846 4.700142594534427 3.1847847471370163 2.7153544312473654 +1.88248815234437 1.6873913590721128 3.905522614202612 4.889963992997089 1.0035873589418556 +4.232227019966272 1.8976779877780081 3.82321294935213 4.112071822202212 2.352351723725723 +3.7925875741388624 3.2658603711957004 2.3146195282321065 3.006934870355223 0.8699092362191444 +1.4770257785276435 2.613772922852984 4.184880533010322 4.771398019695122 1.279139098112035 +2.3851610568711674 3.6580289865810336 3.6806498808398405 2.1072392274234146 2.023811713269835 +4.542426479938215 1.495833856651931 2.6567045804200804 2.156006337356837 3.087462605906187 +2.7699165512934694 1.6809051054741628 2.9954853057945807 2.8545297679687978 1.0980958030924315 +3.2950200915227605 4.475876519706135 2.2837298053369115 1.1672761994697924 1.6250817081106077 +3.554813593115674 4.397604053204618 3.127264940524977 3.9497086584630194 1.177586272335358 +2.1239904174553583 4.0080432359955225 3.348079904928708 3.8098959863007424 1.9398270840626384 +4.68042808843993 3.3469030366628183 4.334501246482548 4.606424929711562 1.3609671389192253 +4.581293233307514 4.107377523234656 3.800487251265321 4.294006152630154 0.6842199984348699 +4.294372497404559 2.5453134060148943 2.881573552435246 2.3135216257620272 1.8389917608760504 +2.7407282762601968 3.9731265231670934 1.4186828502875057 2.149811875575686 1.4329532757902599 +2.7367436827914515 1.9854603163821976 3.4433961914592195 2.419140892673434 1.2702462807400698 +4.163380062553213 2.5822504221461333 4.767960636393941 1.5722297882642993 3.565482659256839 +2.4231313122388225 1.4653718590625058 1.5297785577828296 1.085957652681036 1.0555946977670798 +2.4356488400998 2.753100967661514 4.695039420677986 2.7923925732784682 1.9289481276625307 +3.858291875833924 4.292274929962547 1.8954592678077238 1.2795148360398638 0.7534778260152313 +3.3470345331223124 2.6779906889967133 4.57525592221631 1.9624835019578115 2.6970723730418897 +1.0009808391619375 3.8565176131699417 1.3239014878051512 4.4197559497084065 4.211698602345416 +2.842691884303967 4.38758855661133 4.778641209899575 2.1112279088105157 3.082498896501538 +1.9223431636171786 2.3934494365411854 1.248940111503897 1.9371331792147322 0.8339968937793468 +3.7662789138908037 1.736687268029692 4.911213678282331 4.81299521137571 2.0319668098152346 +4.57062277153231 1.6536157286647586 4.69528304284694 2.2012854811467393 3.8378319303879693 +4.658133278273844 4.476401512539773 1.0540307085666107 1.876171755339103 0.8419871349759405 +1.1155172208590747 4.317149446471977 1.3648889702962372 4.393482262057919 4.407133562190609 +1.5034526683619465 3.0566391442369327 2.1241204802505016 4.986936711506379 3.2570085972841807 +1.7227270798883016 4.650644905397094 3.620756920507787 1.929794098170475 3.381132659251793 +2.3221262574180632 4.809644369328457 4.328704774290587 2.038015122028503 3.3815684881520354 +4.017032848749743 1.7062445223253135 3.2875543793632387 3.853576882203088 2.3791015453865145 +3.1819128062319693 2.172660212845797 3.6559018654519853 2.53896572718923 1.5053694344625281 +2.5232363522421912 2.1972702553910777 3.8087778433972836 4.75874561889515 1.004336930905517 +4.242074059112756 1.3874867315745893 1.6971863709483213 1.2865084519206778 2.8839773167829126 +1.6095610219260563 1.8414798266222818 2.7534540964070136 3.8501117996208714 1.1209123293059184 +1.625514325315843 2.685792676948862 2.6163997380577095 1.6055798735574358 1.464905110036136 +4.794238376275303 4.445090225956088 1.636190454533684 4.917516503357859 3.299849249520863 +1.9285377802089645 3.53286569951732 2.629443308467773 2.149224191370748 1.6746577181913098 +2.933787645421127 4.300754324948181 3.93862472530402 1.0114512757127896 3.230625683506067 +4.214756006256291 4.907935021097712 1.4954859421664413 2.7222689240059337 1.4090754526098024 +4.24811530249926 4.826380151000501 3.7987985771446184 1.6836438513544607 2.1927767212018194 +2.458770952397232 4.783795959621118 2.294513177820422 1.2453802869855708 2.5507687286086766 +4.200348330599528 3.090717251035578 4.158211459713103 3.2253177900363728 1.4496798721294208 +2.8053299549448467 4.759260473797852 3.805035256120963 4.764450277321959 2.1767686269815822 +4.241131228997672 3.5721324774464693 1.7932003569620183 2.7940955400439544 1.2038897362689367 +4.144423899951118 4.866590966517164 4.471035925544241 3.9932933791628624 0.8658886837553492 +2.8147726447583947 1.6565644881200292 1.1450795937193883 2.2382864218738225 1.5926541693748582 +2.8122162667421295 1.726241373795394 4.671245718293331 1.7208622103849285 3.1438995390833604 +1.4734134509692298 3.973918152441059 3.4955284117595267 3.1865199791241143 2.5195257437705445 +2.8061598182629526 4.717932080681399 1.7861221627297597 4.764746161739495 3.5393606923891343 +4.301680979993105 1.7371163002160088 3.148970313515069 4.544267730680799 2.9195627890335833 +1.1996732195795077 3.028020207951275 1.922115794380245 1.8703976355347596 1.8290783137532627 +2.249457855752493 1.3442244090490707 1.9232412104001573 4.640346498925123 2.863932391304113 +3.7092193660873054 1.3746653522838277 2.079723801679785 2.6930375714882966 2.4137721979513014 +2.9909386771493223 3.215035398121402 2.503194761645552 1.9486446493527585 0.5981180212921093 +1.1471729553893741 2.42485603727205 1.7269043735242975 3.6108486035653424 2.2763391486406763 +1.9468364265472942 4.9397061056395515 2.697007324039186 3.7887565181993685 3.1857785891331494 +3.9248523396931327 4.15299095588969 1.1217059483062441 1.8207195882173544 0.7353008207406404 +2.1224106667076685 3.943830177310201 2.1461861417092027 4.024394266098887 2.616339961114951 +2.328448467777103 2.8822986084367272 3.2429472498611784 2.869047775420246 0.6682445624888323 +4.782738512950209 1.4008839492788638 2.506751718210674 4.133257551986491 3.7526605917843767 +1.8105819315429539 3.6913938687823866 1.4687421364770006 1.3314037008184285 1.885819553714377 +2.379493375456923 2.306724328136519 4.361214070753656 4.839765506286065 0.48405248754453195 +2.118023263428413 3.472233744261979 1.3736094551690736 2.8371273771852414 1.9939334829582456 +4.312750845839082 1.1674443772784961 4.4692721687779855 4.9706601064712626 3.1850184685859166 +3.379061066550886 3.1607754460844832 2.43670626845144 2.706377987654202 0.34694588661659564 +4.305036534214503 1.7962149027131478 1.843151134972136 4.59042986347869 3.720447068672488 +3.463404178025225 4.4386581669536636 1.115427959470436 2.228201512425749 1.4796571640341627 +1.5454479773978145 2.838230665679598 1.2649989884967718 1.2489387496047444 1.2928824426042547 +3.4576263825297002 1.9653277394819155 1.0785441054991622 3.586486490825502 2.9183437508557195 +1.4342762248706422 2.2189376748325698 3.521968466232639 4.774193606664105 1.4777555255809263 +4.568575996323805 2.9883256121514252 3.9334157524297613 2.0470180831649274 2.4608306409187835 +3.042731587637368 2.5626843561915145 2.212753470316977 3.7490006331895387 1.6095032431942546 +2.1509314082419686 3.41186905964517 3.72958677413813 4.413652755728133 1.4345417483973466 +2.7308285519197377 1.1792517721205664 2.9169669238362492 4.805717290733698 2.4443339485567868 +2.3794591087373984 3.987895806158077 1.965816994402379 4.58890649235272 3.0769574458979627 +4.904324498841628 3.5927195933384675 2.208350761635162 4.887474426053295 2.9829534085173375 +2.3382542532635955 3.000332878794186 1.973518184863572 3.870527104530166 2.009226455051569 +2.9555813013554295 2.66247472572564 1.2016414744760846 4.619143533354181 3.430048365127443 +1.2299911303353692 4.857408110951408 3.5718162890014917 2.766656845797244 3.7157012366769413 +1.9282200869074688 2.449199737796358 1.4041587156038022 1.0306344836726078 0.6410461359996622 +4.792958799863275 3.0502814573166446 1.148797940087904 3.222651993238773 2.708836457594971 +4.869519544004456 1.6336621977098682 1.630223405012102 4.646579506682596 4.42370623998175 +1.2562727524864106 3.9966363444853323 2.2191031856314414 1.8160018777138847 2.769852573838196 +1.5600078266709256 1.9640249226078468 3.184699898043571 2.9199373373595723 0.4830414344021135 +4.816165069383132 4.771497988955797 1.1886048302073644 4.753133669386096 3.5648086895948254 +2.122051390333987 1.5219619900768846 4.984748032661647 4.935427595868675 0.6021127749735744 +1.7845808921352484 4.903429856602913 1.557246690430817 4.409511350351567 4.22642077334875 +4.491637635885311 3.7770333916464183 4.561960174838539 2.178916932896294 2.4878814921235386 +1.676829984382945 4.309083444288612 1.076437422574707 4.077550912497582 3.9919219001105737 +1.4678077324087475 4.914969608031919 3.3396700660463554 1.4852966849069555 3.9142848176171636 +1.4714969234919644 1.259792224857034 3.801246052543766 1.4938242950593348 2.3171133002804694 +2.7658135153136993 3.6439778232248554 2.3656826012105165 4.423273510458801 2.2371528560896907 +4.833643442411834 1.7964234871448497 1.786723952893864 2.138470040420717 3.0575202970319637 +4.677266073219688 2.615817257432792 1.7126409949692905 4.891435146065232 3.7887073620366833 +3.247129772386255 3.425249826115425 3.4515915380361433 4.370737426523846 0.9362456503847322 +4.273994112362031 4.4412100273771085 1.0004845704335477 1.1974724964421828 0.2583900254025166 +1.8594804996073973 3.7385256314734185 4.616297489131851 2.6199129588537597 2.7415984024512174 +3.618605226613701 3.068836906377259 2.98001386348519 2.3776603000565277 0.8155213187347138 +3.9215942266563037 1.5880427011391243 1.483534542131356 4.096097310487261 3.5029911419875197 +3.2622676450398056 2.7318951310363735 3.0358468873436495 2.6792670906957086 0.6390963581399973 +1.593869435744705 3.3101797879086825 4.858385673999685 3.377113088638763 2.267132483355806 +1.8702495004000297 4.346969062493173 4.90050803471061 1.6675522261035476 4.072608875114452 +1.8258559213425376 3.532582432909583 4.746421362151499 3.181599719531523 2.3155090495391493 +2.7621199344771843 2.4595736630904392 2.4262962343261214 4.385611967028968 1.9825368563401071 +2.449757456086868 4.8737748342609315 4.024161085570187 3.3883041346189415 2.50602759596994 +2.529059651614064 2.2865396617177627 2.165739452699342 2.5295819826147588 0.4372611714691269 +4.725389849515635 1.0728856996464327 3.4064800676597047 3.660042351451274 3.6612949070750007 +4.0390693709192025 3.988371540788582 3.706539066938601 2.0336997591484764 1.6736073672363232 +2.2992050835898414 4.891606271360223 3.2650487639936276 1.8825598163515136 2.9379958489939844 +1.0237233441774007 3.935390774347737 1.742174950429642 4.390330146328871 3.9358014641852574 +1.1402527566881644 3.9492906698348826 2.0604933719438328 2.3959027011156757 2.82899158987636 +3.9202158710866652 2.4733401817892893 4.5085845553951955 3.3570190102836417 1.8492031973171112 +2.50645140378201 1.069451557343497 1.5142369966727602 1.9932180041720757 1.5147248476899586 +2.676130449726849 3.209489483924465 3.804937818309287 4.122346740888546 0.6206611664129953 +1.850137661575912 1.8386389601678812 3.992018538139041 4.001009946783471 0.01459676551439312 +1.2940576462371212 2.1813040592793165 2.8801548610164303 3.2994484776182262 0.9813324280687231 +4.975107559516715 4.641910629500927 3.263160764752279 3.6039576003538496 0.4766158592913059 +1.3972097445615757 4.99140953109549 1.6763562935375003 1.4038572647298082 3.6045149224578847 +3.675926354674143 2.4174860317818325 4.284214401569276 4.363712956249672 1.260948875441655 +1.5870121738816985 3.912688975793054 1.7086731202404222 3.291482271136333 2.8131934514193055 +4.709944596569253 4.955576401287463 3.0526879992159492 4.208024996931394 1.1811598375238057 +2.3209829969282647 3.772544743525789 2.7200823218074874 4.240959509774733 2.102403130958573 +2.053130728912648 4.101967504828706 1.004064217560693 2.6762963889186318 2.6446346759563206 +3.3734028643783285 3.606564314167607 2.185795295688008 4.990643894737357 2.814523036902866 +2.2622017472141085 4.362995684762888 3.0035797382584772 1.280823009420693 2.7168411648084194 +4.519565453131562 1.1248383725974729 3.515663333548098 3.113848009082712 3.4184247112210504 +2.733771301595231 4.904142347681361 4.381116274924565 4.344565218265238 2.1706788010739673 +1.498278082541023 4.670396317117269 1.073280210594238 1.871057817032903 3.27089944869391 +2.857167572881149 3.5234219494666297 4.411146992899299 2.6990119444085896 1.8371993137897673 +1.4353375693481683 2.8768256688529226 1.0472533765486305 4.58491205439009 3.820067651484828 +2.0537989532010963 3.0544314033955984 3.6262015885490144 4.5785791924685775 1.3814081224713501 +4.8896745777527295 3.928864505150986 3.063321227419192 1.8165194368551592 1.5740618477577832 +1.108178217824713 1.5946672865080291 1.33207539134244 3.2305881107129735 1.9598525861809246 +1.3935416725484586 4.4309810561152645 3.1173395232081313 3.140706932079651 3.0375292664664264 +3.8063436573482115 3.5809828434764444 4.267703844585663 3.9077002169066444 0.4247235670068222 +1.5011645474004531 4.485242974642889 3.342614301590349 3.376453086537717 2.984270283218395 +2.828197010445039 2.265013025848467 2.4572016513159776 2.004949608052064 0.7222936460626359 +1.4723361646174142 1.7477090304842902 2.7413740013794117 3.3754151555451415 0.6912585626460964 +1.0936475272725779 1.2502839534784584 1.0176675296514146 2.64958577797845 1.6394182319461164 +4.277129763352386 1.5305269384368065 2.6215604649411457 2.4244976546921375 2.753663165497458 +2.745375991455243 4.166773756445872 4.809665108552819 2.1000213287791833 3.059826959092019 +1.9033384015634223 3.4793054478725973 3.4407326885888248 4.247033291045047 1.7702521833269214 +2.8561976307012427 2.7716495474172453 4.672241482462546 2.909694553549299 1.7645736184723257 +3.0931777851399227 1.9303562470956899 3.4445368251599513 3.952780270378783 1.269041106090525 +4.3285841162982575 2.872385207573092 1.266016878579841 4.943759394596324 3.9555410850966535 +4.310450567787448 4.904748408542396 1.8052444350158807 3.026495515567072 1.3581767651058703 +1.5735524968453256 1.6918213895874663 3.181706424462964 4.833162644851569 1.6556857125827562 +2.9827602712872805 3.5061636880177156 2.2670917153306434 1.2747640191199512 1.1219025774602327 +4.914505083103213 3.013137593367598 1.4215199711268438 3.5252951650058426 2.8356777668494235 +2.2518987607002807 2.56606316976814 4.628831009056369 2.175531579167316 2.473333250619275 +2.346892779268533 1.5734178938013645 3.7393866184761047 3.1240628468443017 0.9883758102987124 +4.900175858665921 2.7345797646292773 4.156171527737074 2.4891814591084387 2.7328853491160716 +2.5238249435520643 2.4281512781287256 1.3297690807421172 4.7749495194021225 3.446508625432567 +1.908171727219484 3.736667788300615 2.285755817787769 4.244649921917364 2.679676091728793 +4.809662030924921 4.451419946972635 4.127886118801289 2.808803489147349 1.3668637000700654 +3.1461278906332732 1.7952980642120306 4.10148821733075 4.948640523356721 1.5944931011310037 +2.920816900721411 1.6839725710420885 4.351749299446171 2.0189317576869867 2.6404207200745975 +4.175066207800418 2.8581168034372366 2.6687805433989333 1.8688425229898402 1.5408622813699338 +2.655930649672357 3.7023681061422873 4.603309775266014 4.940129351026765 1.0993083174973748 +3.958334215208749 4.687409285823166 1.1078738521607856 1.3517711388615776 0.7687888819769868 +3.1147961823127948 4.20914065377582 1.3072429210312726 3.7825790824265066 2.7064513544737103 +3.849875937423339 4.737242167083507 1.8492116517178614 3.1529912161082754 1.5771049356537312 +2.210865099429926 2.497040420039265 2.2258286836168475 2.9376295165035904 0.7671745171889631 +3.185869220093817 4.286805298365641 1.742963767105718 4.489936533385988 2.9593782500934247 +3.872780673223069 1.6415365691288826 2.8649000143143364 2.4310774983045653 2.2730271066250216 +3.558306691811666 4.011361260674459 4.5626891731929415 3.7576057795366213 0.9238061014675257 +4.783133956880013 3.656892499020906 4.508131777550871 2.714908419384159 2.1175622384419563 +1.8469506899239514 4.3141651169951265 3.6941884599355888 1.6259175982800667 3.2194551381128798 +3.1676281430866755 1.9319353237029713 2.427834266468179 2.3980995198268626 1.2360505244666462 +4.883078672799554 1.74137844992413 3.726941938757865 3.691995934285193 3.141894573922571 +3.8939564686285943 1.1578589462686768 1.1578673990904216 4.6782734216857005 4.458641969903974 +2.040328293514765 4.783044585942206 2.1526817794816746 2.284796365525772 2.745896379070509 +4.230592214429693 3.6456133084173903 2.0340699110537277 3.8605889341134554 1.917908251736358 +1.3583347079673822 4.036947684831591 1.1934236832987866 2.9335832001617304 3.194232712867679 +4.3985232917318715 2.8799592499629894 2.442155580295829 1.8081454319591779 1.645601901173946 +1.6363385479976715 1.9334080751855276 3.8874303722675427 2.134936952257656 1.7774935980648612 +3.5600450633169394 4.095214476186543 1.4188525194233987 3.9143558266908505 2.552242750416579 +4.54946715759379 2.585991622287127 1.6265818588609569 2.7943880211333787 2.2845146990967753 +4.633841375280061 4.879957810158459 4.281803832717514 1.7065300202184241 2.587007636026776 +1.6473628174928523 3.1843884765323844 1.0462424745058079 4.147455584778422 3.46120941751184 +1.9460146362174244 2.38024335877427 1.2334225067708173 3.9573275065432396 2.7582989379830734 +4.566907988651828 3.551045139202894 2.695132617638064 3.268384381976379 1.166445418443357 +4.735152947766403 4.340592341934267 1.6943744689959357 1.6295621748420563 0.399848352689006 +2.114095715154635 2.7749141778257784 4.729710913147304 1.8326489029804707 2.971472586338119 +2.4416827422485894 2.7118029908638377 3.8483493326617797 1.120069448800205 2.7416192429649473 +4.298583535220597 1.5683761860219891 4.2787142702781935 3.5779804710107492 2.8186982859209815 +3.024291893113709 3.5897736731545753 3.303052371866419 2.4293631715948836 1.0407220869325788 +4.231827046448475 4.117423531238874 1.23803040982567 1.7306302142649876 0.5057101260860488 +3.8793834065916277 4.21133185716678 2.2854830163391116 2.1074190288921346 0.37669159462982615 +2.477587612390388 2.880914496305632 3.3785613020463954 3.0104281484213384 0.5460719678638617 +2.836868679005 3.703164888749944 3.861404562956093 1.8630074728973764 2.1780863280810525 +1.3353054309789716 1.796921065969601 2.0914234724324987 4.066179466872491 2.0279916745500914 +1.7626107016244617 4.589046274107965 4.709635921391831 1.977312186303331 3.931199694587916 +1.983838485462714 4.442424786345644 3.421997258454901 3.0356335246440587 2.4887594366859696 +1.056611654324998 1.779494988826245 3.4221745585517485 3.824821965941881 0.8274570985722688 +3.152590133369168 3.201485470947713 3.5815143316425564 4.263760766339704 0.6839963097078005 +1.456374928063061 4.685395395853054 3.328443440280996 2.3714259538862055 3.367856239608827 +2.567910118767234 4.357284313293384 1.2789052341419391 2.4394232276904453 2.132759250685824 +2.2624842440304107 3.771651918380198 2.955381741172066 1.9867444853288978 1.7932777818034018 +4.76525952324762 2.386023078083552 3.922906556572774 3.4719264639917213 2.4216005256650748 +3.5295694741686257 2.933708925940141 1.69323228368867 1.4496769129686289 0.6437150080134272 +1.7128865173419254 4.69494695257216 1.603629313226763 2.5147047189681593 3.1181313048543005 +3.6025142675986968 3.2345377687570838 4.912911186487031 3.360604963887368 1.5953248297514104 +1.5875721890966887 4.4964164300571685 4.951453292533385 4.189426898131579 3.007001670091649 +3.5760053867078927 3.639699783654366 2.8224339010823845 1.858660998878677 0.9658753455930696 +3.4485798905167866 3.2133838955047334 4.490948515193966 3.4356545347134335 1.0811857108323975 +1.9093280023222508 1.6848572722868687 3.9337506613210933 3.938465367385438 0.22452023760875223 +2.6789513194134824 4.499518293910753 2.347783131956504 4.94065629351116 3.1681943344025756 +3.05852519040818 1.143325278846406 1.9000084146950913 1.9258827105819392 1.9153746840850399 +3.2379626667990724 1.3366057897221806 4.202749516836566 1.130049906542535 3.613397413668843 +1.8078793068504027 2.066114182718306 2.0529765843863186 4.20350751681969 2.1659798111864426 +1.2516572978130993 4.99160745693748 1.7355271433106734 3.692030895243403 4.220797806583647 +4.636242979697928 4.146859517114889 2.308517672503772 2.7033303904684707 0.6287871306860837 +2.107677107028407 3.058593447432034 2.627986683878803 3.4242429692784526 1.2402685025771942 +3.0291555198102813 2.4916590924341326 4.870158517409138 4.3189324721071305 0.769904255385963 +3.9905346195870885 1.5436803319407515 4.843103580974802 3.6737521831899236 2.71191419415783 +3.14156337349473 1.161471573608369 2.531510010343171 4.7015781808717705 2.937679254227485 +2.9992742895368503 1.3308352350131942 2.067524382249067 3.898047281052777 2.476792878240837 +4.25260953854282 2.954301153035439 2.926746829192168 4.598992900875153 2.117076188552967 +4.860852973274625 4.911111874804239 4.851903649596394 2.3624998692837136 2.489911070423606 +3.7549442102151542 3.7830538063340513 4.282036827818542 1.0299477718287453 3.252210537078216 +1.1626929962782975 1.0475394130600768 4.15048337145292 2.341146918939721 1.812997172121635 +3.507849954800149 4.832301766046698 2.280736174121876 4.528071553355471 2.6085798640389126 +4.854078267522723 3.1272729954249283 4.587465714217037 3.7837462146423677 1.9046840897485593 +1.8872561394392902 1.0052213449128637 2.7907438215848486 1.7840728457836605 1.338421395628369 +1.807239259032233 3.5300842747746506 1.8593975270276384 1.6650295324589317 1.7337744563757858 +1.7758661558956277 4.433448679354644 4.611668495408726 2.8090660627922936 3.2112490403376492 +4.3904651633703216 3.1395089448460913 2.839013040868081 1.8210759303423085 1.6127887095493942 +1.0312270139240227 2.4674928807540875 1.1735629013395439 2.219583827462355 1.7768003315251664 +4.456525694778785 1.856799737464697 4.67972993108889 2.576940108178593 3.343695574131677 +2.5441597151274853 3.30004163466439 1.3233986816214496 2.4181545474303463 1.3303562988935644 +4.996872360383367 1.3620548249847437 1.1082491505439513 1.1457226680203143 3.6350106987673882 +2.226292253352108 4.458280829121756 1.5812646834509807 1.9111581101302364 2.2562363961545353 +4.19212667351868 2.8425680423832813 1.2176632707713977 3.708943841139971 2.83333502769581 +2.8695872537373397 3.1297914941397162 1.1754937713502 4.757227497338881 3.5911728906595592 +2.35124683932886 2.991685675630676 3.0844013342848355 2.4502359208164557 0.9012922249099596 +4.313624413308364 1.3311593528426338 3.728899735177452 3.5510545357027183 2.987762833940315 +3.187716078937282 1.2649876490994743 2.572628000046692 3.625738431026045 2.192242275558083 +2.435913249245276 3.690726086761647 1.9413456127613307 4.143536734748153 2.5346007565203372 +2.2165503666165387 1.4380163036803495 3.605176763122981 1.1204970692492013 2.6037950127267373 +3.218817226411411 3.2676564696835406 3.086590666142478 1.2650874649932211 1.822157837148139 +1.5793140099169656 4.736190963707834 1.598636639655587 4.974264858003959 4.6217678403275215 +2.9625160011401235 4.626530650391166 2.568845726715948 2.9172195702957655 1.7000909057496438 +3.623507980118426 4.658032294250711 3.2479401696117645 3.7272641103167743 1.1401719153986627 +4.039235323459541 4.179339317967136 3.137974425554528 4.848441427388449 1.7161953541598078 +1.355643797584964 4.6296680676375 3.985679653869712 1.7567641207249718 3.9607195526554184 +1.1481332316253106 4.450221460563252 4.225039869314964 1.7102507967687992 4.150656665045679 +1.155494997217457 4.760608491228588 2.1779814624909335 1.9148872497380558 3.6147007994418017 +4.722582478263067 2.57718008328724 2.9601391694118857 2.03303101507016 2.3371523198574238 +1.740668645216616 3.7533813843262354 2.5549343916309457 2.0005996655479557 2.0876540802335164 +1.4795043234070873 2.399029328397744 1.9497004704143435 4.314581737866549 2.537358792908369 +2.623400958640118 4.019003143398455 2.5937760672731804 1.144816652395905 2.0117626212015525 +4.00171113913075 1.2261469821756616 4.112687937596908 3.5146386413342747 2.8392638746925303 +3.253975218874059 1.0627729597996671 1.6407313079864823 4.226004182825234 3.388953109376071 +3.4428584779719014 2.1956498333492993 4.633115036829935 2.2495771787010392 2.6901267859257176 +3.7078992164646074 1.1699525011316902 3.362472771184974 1.464332424763675 3.169244437493188 +3.5374587016555608 3.412728613847887 3.0311793965889704 3.4383965619755394 0.42589131781474754 +3.8854826079351104 2.3732533052626295 1.436804932336952 3.025129030155324 2.193082511802017 +2.778774090497679 1.3539638379429961 4.323189504005263 4.615458635399525 1.4544777416484913 +2.9668255899014353 1.7097236172031254 4.398215636700746 4.264198344460378 1.2642254563096815 +1.7491805749860232 3.7719592775022615 3.303011108758408 2.633507420885219 2.130696803261571 +4.174292821077682 4.852831590995487 2.998409131524668 4.597688950930388 1.737271079319506 +2.4940479592725593 3.1422381415766982 3.466748429927669 4.8609755022258465 1.5375368748633707 +3.634480525075532 2.4395941791394837 3.588685966073835 4.522943606971457 1.5167698306862485 +3.6130434437831997 1.467601469807827 1.5226856762655352 4.059538986559486 3.3224307339122543 +1.7848033717153164 4.945815386882428 1.2179054670469482 1.0785665579957042 3.1640815873814683 +1.3996856614662634 1.986311638528301 4.359009377411374 3.369739926627282 1.1501235078106387 +4.077137686914467 2.3854034874617907 3.4201438885670794 4.20878830025886 1.8665274200210569 +3.228431286331989 2.7135232981387976 1.2831130183131143 2.5080294733303217 1.328740214668421 +1.0568342553977748 3.9479214446293476 3.440127884715664 2.9810384254586944 2.927310756879046 +4.888604636112859 1.9606032220466538 4.673519443700162 2.900834788765058 3.422806329113011 +1.9531440765675492 1.3052389845716421 3.6693069488168097 2.798221430982339 1.0856200935940588 +4.922933636338225 2.761936475140949 3.3322327472092046 3.8456649716668823 2.2211531644202847 +4.894557407681603 1.9957984598612684 3.3931519175190648 4.827674543722154 3.2342941428783285 +1.134367644028727 3.471428573238652 4.20214646682976 2.9595393050423664 2.6468710481179243 +2.015874559243385 1.1492812277799533 1.78590903102626 3.9890034951182876 2.3674055883709126 +3.1250929760110133 2.856105125865319 3.738359469368835 4.815488323592655 1.1102076527062503 +3.0927945125660568 1.3409577020261656 2.1208512702312383 2.66081132953458 1.833163679654778 +2.8090300657611795 3.1116165956776016 3.8916200339012135 1.8361492672187025 2.077623325045532 +3.433857663456292 1.2940449431752756 2.884572785618045 1.4340641209727152 2.585106161086546 +2.452586891592371 2.2550981582524834 4.746666469886193 4.16390149382726 0.6153184680449324 +3.3796650032691575 2.3215683291269937 4.2212845152320115 4.800901644503983 1.2064512374630771 +3.8309038767433776 4.517851851593262 1.2621476668258382 3.1751792065933997 2.03263060891442 +1.1942782442531596 2.7143066063076535 4.048401249447897 2.8402391850823214 1.941685297678838 +1.245579779146135 3.498275579513998 4.326396972258335 3.863703768002293 2.2997224550496806 +2.6324970112931334 3.3946783701845593 1.712329264236792 4.835693434220801 3.215015421764175 +2.4574013367462633 2.208941617857714 1.097284851688324 1.033290450416723 0.2565687340739076 +4.770746707256539 3.6800053711912675 3.8677109832547827 4.239879498758642 1.1524869049728066 +3.2372762382219293 2.2999773576158486 3.1645732014430927 2.8005048422489534 1.0055222333453024 +2.2009304444535656 3.972995989974528 1.46784313518158 2.1914753436604846 1.9141211745264624 +3.484399897478984 2.5865615559637645 4.975693969691083 3.3968011037330865 1.816319456942488 +1.3752261741872416 1.3673848183000143 4.8256904135303085 4.985675681795069 0.16017731713291217 +4.2950458643364975 4.178107339801784 4.314333533960394 4.632041345784476 0.3385452292004751 +4.704267751505014 4.873605218235805 1.953822430357965 4.637894699133567 2.689408693681384 +1.4079607242223462 3.8883067998433805 4.280889648211052 4.552040523421257 2.495123133630067 +3.8712215476047245 1.665074813457065 1.1063369656261162 2.412408742993457 2.563768105782165 +4.193540211089398 4.451375490261404 2.608383498533343 3.4443537136032476 0.8748286870409139 +1.8357904602983304 2.68260981080921 4.495169341301851 1.9196348691333394 2.7111770192534466 +1.8371636770273798 3.7376955225520607 4.798307410780415 2.378017914361348 3.077307677553532 +1.8708727115146733 4.403656693650794 4.065863053183033 2.96539459738451 2.761525940919783 +1.8494720888113787 4.771139155299587 4.9670094789015495 2.6946625729439773 3.70131043124145 +1.3535910650943626 1.7716875090275481 2.8580648185904294 3.565994748680336 0.822173596235415 +3.6385616476278817 1.367773066433665 1.3734784271281342 2.0190087014209936 2.3607604951605445 +4.482432222048667 2.263827952512558 1.414116649659634 1.8255566051220162 2.256432525415891 +2.4913511008752898 3.8916444206294605 4.796651198649301 2.6181774547151297 2.5897044685366555 +1.7471043589003825 2.8541628123431746 4.923933598187723 3.4786928724633586 1.8205216765068837 +2.938304260234729 4.5904484442044815 2.045811315025173 4.7064183209079795 3.1318381255067687 +3.834795151144458 3.5168577979443514 4.665198253978691 3.2313589382653625 1.468665838046611 +3.191167185380782 1.0010905382251165 3.8061327827510993 1.1962786445880806 3.4070183948583597 +4.270582967852327 2.0775034890131354 2.3024008479329 4.830143787109677 3.3465029459218516 +3.7706502546469287 3.76978049990127 1.1546406520237138 2.5380061268350502 1.3833657482290473 +4.4908208210970635 2.6364245033338944 2.257701624942064 1.7768224641639851 1.915732358813263 +4.588442415918354 1.6031236086373548 2.674871064791068 3.913449292043912 3.232058849422523 +1.907817281334518 1.0708814818473442 1.5659827569917226 4.957956620717377 3.493701221435683 +4.589651180767801 4.051342452892151 3.5137426657656645 2.8166270582929935 0.8807646999562885 +2.960380346120748 3.0085117751901977 1.607388225781646 4.154183951902283 2.547250499077507 +1.791039963996882 1.8490850273811836 4.134102486201395 3.1873808515852535 0.9484993847301888 +3.7517702093786998 3.3320439500839703 2.1598901112106432 3.1949495960896543 1.116923573920593 +3.0795039688995205 2.7397768919827845 3.7549733642983782 4.069239150048947 0.46279311888122565 +3.1207426969257543 4.162812190309885 4.300930884058466 3.609660095010437 1.2505055509004919 +1.143829947950597 1.4514239649373408 3.8997940393852333 4.929004774097381 1.0741921689031064 +3.3397328816903196 2.8869364383638945 4.786945190952343 3.2817752628142207 1.5718018741751076 +1.8032886829951944 2.503722778765564 2.8150798462317823 1.8852412231994253 1.1641339215916546 +3.6640942576375215 1.860747644366863 1.4788738368481789 4.358871372012271 3.3980060050191203 +4.816723192600052 2.044775388132689 3.4553139481623263 2.204371839830281 3.04114300701063 +4.441708337301378 2.908710090260647 2.1680980911096155 1.0809224786326892 1.879370755810182 +1.0208386594758063 2.8785051733897067 3.584103679337664 2.078449046340473 2.3912174202240437 +1.8920564392469652 3.8526465068131266 1.1596188222771118 4.1272877654103475 3.556820542152306 +2.1146831879077306 2.5888970005850584 3.533771342580076 1.825769365370832 1.7726109258053937 +1.825585577583364 3.7234258688753457 1.3807435471104585 2.611751951007883 2.262118357141668 +4.928696715108066 3.9917994884268455 4.167772607983913 1.1052744032809603 3.2026038885837527 +4.29277202129092 3.791404400631437 1.575335994720215 2.2894164132148114 0.8725138022536776 +4.429824969347607 4.850395557197491 4.432921596076801 2.416599674679059 2.0597169004679934 +2.7090902040366385 1.3490576911426961 3.0115959891218633 2.6630689072341838 1.4039799011872474 +4.397039516885443 1.4212381097131663 2.3979905007580795 2.4727729973456416 2.9767409085649983 +1.0486797015272176 3.6577222487106424 1.9656766590926527 2.0346033163362756 2.609952853423248 +3.2666731522830443 2.2549756232201954 3.8066438883057128 2.0865100707463666 1.995593205195679 +3.4641449641536375 1.6322918847395025 2.738934156221434 2.839124658296168 1.8345909193237158 +3.0711034414706013 4.794888796090094 2.582932752834246 2.2527946983516207 1.7551145500559846 +2.05576977509736 1.2610919998937602 2.0474624642584796 1.5320499577606048 0.9471867916398352 +2.922920043591624 2.074495597741296 4.418745363359024 3.255434715252417 1.4398318319563053 +3.6755705690578746 4.649087440330547 2.1868480623835103 1.5255600552566966 1.17687591827783 +3.7765798034269538 1.362963858381507 3.1402529047381265 4.992263756880066 3.0422830451207425 +3.7741073762677098 2.859395442460409 2.7826899553061417 1.150243500941793 1.8712507443462048 +1.0946549152026521 1.1103564013797587 1.8068944603308994 3.3819648436181837 1.5751486434546176 +3.6546086176386323 3.9445606474108406 1.641905359956933 1.9641192522704167 0.43346738282000963 +2.8952418481504667 1.9847443560032048 4.886580542911235 2.4745810008991866 2.5781286767484635 +3.709249805840633 2.8810797795411625 4.390513849687565 1.783865103285088 2.7350472170663656 +1.3217093722410667 3.490755591569939 3.3202037219542873 2.685528907047833 2.2599941642095924 +4.712888625957518 4.246202346431772 4.453981614486992 2.3406669052795133 2.1642308434292015 +3.1729809140209726 2.5560676016538517 3.337410052653115 1.9215405844968005 1.544431411825406 +4.5312870867582395 2.090924833968947 3.525444217669301 4.11037701632931 2.509484868212411 +3.9541701947031216 4.721312389982106 3.1411816643859187 3.5749725703271635 0.8812954656951242 +4.183548017783025 1.1724993902643774 2.0809319634260532 3.1375806177758463 3.19106882032042 +4.658369365737613 1.279156258372053 4.421169549572616 4.779385085543897 3.398146494076204 +1.2075403294854792 3.6582462864744527 3.3731059782310875 1.5100867487872227 3.0784412186850103 +2.011092090071418 3.155060053468779 2.228968331466464 1.8115021865749648 1.2177605197287669 +2.621713344177747 1.7503243962204573 2.1431819998548813 1.5603034639046451 1.0483635277391152 +1.0794903826217972 2.08488208187848 3.795554628127641 3.203471794325978 1.16677956402092 +3.327507131019716 1.0323912366397923 2.779932801943934 1.139810843435519 2.820914214827675 +1.7746409443486595 2.4337351841707715 3.1838923433645085 2.2393789555998276 1.1517424871182804 +1.0023211465232236 1.091416951855825 1.0018181313464347 3.492312935736674 2.4920879665899918 +2.247982409225615 3.3684519721175956 1.005251138224247 3.7801555526780053 2.9925819204697306 +1.6142232015605007 1.7651188536726008 1.8303074084856523 2.6576418181033743 0.8409825938530717 +1.9282708749835087 4.857944615025296 4.1692425387444825 1.296876376843842 4.102861878143384 +1.7590708595756421 4.889874436074043 4.663197193856068 3.3825663214309554 3.3825946351910816 +3.2316939548246704 3.7731378309852355 3.5927152485846277 2.2667135170938866 1.4322856080224435 +2.0470573452684695 3.148624291519337 4.2071997167614565 4.685280876972403 1.200837762906008 +1.4973681812215869 4.278543578413435 4.323797619653671 2.3309591805012007 3.421453146618976 +2.81741242527342 3.867231089285305 2.419457711382349 1.6406935881655453 1.3071315109495814 +2.058927511423811 3.5283726392940165 3.8131398224881257 4.498021302420604 1.62121301048813 +1.0212493085580512 4.074616968548923 1.604059765771566 2.3717939421183503 3.1484075073930637 +4.85847522100098 3.6969312708347135 4.5301455848904455 1.0337609717307559 3.684276009110567 +2.5919030215548338 3.3603742713127427 2.445737080505358 1.0589190514845006 1.585500648792607 +4.4451500038267 2.0675058835839755 2.463247808416867 1.711248859538446 2.493730936095362 +2.1238740050541023 3.01636632011513 2.05454726501077 4.999356686675022 3.0770838568952814 +4.059183787524995 4.8411726622346345 1.606202496577469 1.9329127994572515 0.8474940838598503 +4.756021219193769 1.2280025538268156 2.0701697697531842 2.3655820240891208 3.5403649675124544 +3.4234086666241192 1.6947903009593306 3.1131089457940107 1.5261430870865085 2.346610766790446 +1.1689724712428489 3.8907053395197675 2.6705992051231955 1.297453100439291 3.0485012762122117 +1.7715567313437774 2.269904037589539 3.9350312339640876 2.161625556950434 1.8420960162018323 +2.5472674173316032 1.0874380750280426 3.3889938827181707 4.8627993596484815 2.0744166149740093 +4.1162406938125695 2.5100241589534535 3.8221303476009987 4.435411965964807 1.7193155324947649 +2.232965715744557 2.859560078990739 2.457743312165991 3.178316164573703 0.9549061376276069 +2.653805797913413 3.6314174748170935 1.8135569239801819 1.0357174906011375 1.2493033158276092 +2.4698805544844484 1.6861936750195743 4.869407696429249 4.746426745271176 0.7932776559270636 +4.11996932162135 2.249344255785681 3.215208067225438 3.851540185881342 1.975893899521382 +4.4775724501766945 4.738641427042353 3.4763438525529 1.4958326805396238 1.9976439905926886 +2.741589253664027 4.076730581377857 1.9171767755067597 3.474511578556612 2.051315200977113 +1.088207158465663 3.6996476430164 3.6005780532114064 2.8999125913760846 2.703803523512663 +3.4727997239519124 1.4838784218795409 4.5961514503400185 3.5508962078350708 2.2468570198883 +1.2086153268281823 1.2317541326192258 4.212915311077632 1.3274018292854928 2.885606254834091 +4.040912957210216 2.24205816072115 1.2304961584669227 3.1722015923638684 2.6469035817114013 +4.400218824246524 4.226824691985778 1.0720609056064379 2.723557385629129 1.6605740418993054 +2.2479234955518805 4.016400789383648 2.1078741395917526 4.500414178053608 2.9751907122807424 +4.2069496310669106 4.632956866935379 4.732651748955115 4.225828405619765 0.662081616088164 +3.9236853387807855 4.696710911255779 3.849134732689282 3.414786875303883 0.88669419582829 +2.8188330716633554 4.464483165548795 3.0838388954468012 1.9191814958117974 2.0160831059333155 +4.6606256802285095 4.449952197599847 2.9015487155561184 1.7664576914295904 1.1544760497019846 +4.5441919530519 3.5786889155438364 4.382822658341375 3.56845177336863 1.2630898834717146 +2.3532406307830196 2.661784729769678 3.9498760582323293 4.11005608039324 0.34764507837586106 +1.8136050366865546 3.075706520877464 4.048647638712241 1.833796820502453 2.549208564107979 +4.622573542107354 1.861786594150066 1.9730044396439115 1.2999546550459953 2.8416439932825184 +1.199094490750765 1.4135660384989062 4.394092104489815 1.0701485516269789 3.3308555638772295 +1.095861740205792 3.3998442093177377 4.285736361259076 3.1104753960319984 2.586420993257219 +3.577386006868189 2.243287566534999 2.4975668787968903 2.13428915764355 1.3826747091003777 +3.482103893641227 1.6425293904868372 1.5021643961606346 1.124549280468353 1.8779317155463924 +3.351182303608648 2.5511198964199386 1.556557073772031 2.40142588167103 1.1635734433018263 +1.7511697985642964 3.2210418541704535 3.043573045851215 1.6449266656550368 2.028974015774412 +4.111717401094078 3.794718086405099 1.8007514520538273 3.7482624361390027 1.9731415556532406 +1.473370923822546 2.599068537561339 1.2893827732265715 2.1122151561388804 1.3943630258818402 +2.465271038259956 3.1062851830563742 2.0151828077654823 3.852653682026719 1.9460725442766613 +2.0478190476332903 3.702182301956433 1.0000992018703685 1.4317410564820556 1.7097463168281064 +4.51183433349567 2.4797214859238617 1.4327206315840608 3.246565614132108 2.72387889708429 +4.961152708070793 3.2341521797995116 4.035596756690834 1.490374671400422 3.0758228635764056 +3.699833473693426 4.740226254710958 3.625678316128909 3.5001815999880197 1.0479344276029587 +2.426161686432563 1.6356557392046955 4.277746832990401 3.09874757873827 1.419485432869851 +2.7801998892305386 2.5515760717347615 4.580736716511494 4.10578382212765 0.5271139362698853 +2.84502191222361 1.6040077807876139 1.6571588785601672 3.0897790037690664 1.8953934941265895 +1.523024688929 3.7644651648005176 3.905800370553896 4.996444693756137 2.4927014355129677 +1.637915303230431 2.2590810451374344 1.1052980145225613 1.1174661470837863 0.6212849123943905 +2.6224810581483977 1.4546534910107933 1.8982731726067268 3.383616173809581 1.8894615788072637 +2.347730330099269 3.5930850530568046 2.976415183649255 3.3992594848273416 1.3151827587949227 +3.398569046991204 3.1544080084662234 4.614777033803829 4.207730632787515 0.47465923072656185 +3.54605776123649 4.031066414420694 2.391158993499465 3.108768176843987 0.8661387496723303 +2.467621368819622 2.6637225395706876 3.1764671120029293 3.170279642190733 0.19619876134322436 +1.3197225191966293 4.365418208138783 2.333956109191898 1.0832310122516038 3.2925029229686533 +4.9561929988112805 2.8790946082873763 3.866109944789017 1.3338380850745835 3.2751699948885995 +3.195273451440785 1.7614960650878002 4.643237170261919 2.1853291478807684 2.845527972117445 +3.3851063352893687 3.0195455447733726 1.2046047587804956 2.377555941378537 1.2285964220690309 +4.7910188965175795 4.6910571826560155 1.68899318299448 2.6642772029903132 0.9803934230182157 +2.414040949149509 3.2400997140997427 4.026593143157527 3.0289401346308362 1.2952546500875657 +3.799739707795556 2.117111261289086 3.1373469980094 3.150592481454959 1.6826805792616981 +3.891122727244476 3.125185702642665 1.9910766478184438 3.018395467548627 1.2814224451864777 +2.6581016568274363 4.217169091509145 3.7949217139070033 1.5757092446264358 2.7121200655014075 +4.102490236816074 1.1055304668958246 1.0491281122622853 2.803200355440772 3.4725404672673927 +1.1205135549033218 4.487538313502903 4.150176744354971 4.579802572133725 3.3943238026029796 +3.276073115984272 1.6687718419423017 4.716457838822716 4.2070028443064285 1.686108471295525 +2.4307767622276697 4.878792119985919 3.3683405583904156 4.470579160323503 2.6847176997613094 +1.4951477832134064 1.6684558073882951 4.3733773641144555 3.4812048892024654 0.9088494904185123 +4.853978633489627 1.7026252668467272 1.5760324517147257 2.1513136442165086 3.2034319864635505 +1.621370186711364 1.2828247157672372 2.21918736996402 2.922311906045719 0.7803826940270299 +1.1466177552675831 4.821227384903487 3.9297792271891803 4.370678649634238 3.700965851088781 +2.8749145849976556 4.883154289216639 1.0454744372643576 1.6493842483576149 2.097077435274207 +2.449627834173797 1.301418809269573 4.248014904187741 2.7609598774525463 1.8787540066251143 +3.449094435139187 3.0320888752731148 4.353240248187138 1.5324320611287945 2.8514649682460758 +3.1342505077126455 1.7273316058332466 3.773643209530791 1.920078751941333 2.3270414682391105 +2.3686207393101353 4.906884747783355 2.2466451509118395 1.3841440326817516 2.6808006930129453 +2.786556228654726 1.6677624854403348 1.8107673500558437 3.6053013810106154 2.114722636212714 +4.175790325349917 4.314003446150222 1.8708601963356157 4.080563070651728 2.214021151552588 +2.6660138183677637 1.0863645005225018 4.348988526853349 4.59448933314964 1.5986127152193963 +3.952517418432264 1.634919484905459 2.9323359381054335 1.9161180294429068 2.5306044770714675 +4.503805260129413 3.403500471447622 1.3961536546122595 3.3629986071761033 2.2536968951973 +4.684364926554329 1.56374368723244 4.9907286281804835 1.9846029531147003 4.333020712343364 +3.2883847325600764 4.211099723371327 3.9478491025458124 3.0377241097538046 1.2960441569531722 +3.561690816623248 2.029867900425793 1.9108373931792006 1.8120055868824183 1.535007873765982 +4.756852305530677 4.56023378600762 2.844776211927431 1.4215711741561172 1.4367224581515685 +2.6575797506572783 2.4619073441274386 1.9335876671494625 1.428143068468827 0.5419980931817081 +2.5255110825296674 1.1470497962317534 2.794844283337008 1.1052334988951502 2.180582518668883 +1.331032968261642 1.1136768026839938 3.1908663690029835 1.483008119616931 1.7216339630451678 +2.590305700181749 2.90214406966546 2.242024391949899 3.0690441562164237 0.8838579406045507 +2.3057934316204225 1.4670578335905256 3.6517023170516083 1.3884602614506814 2.413657391935168 +2.4084394818412402 1.2397064874608494 1.8155700275595468 1.2493551327261136 1.2986670548237491 +4.884306415629757 3.094302259275558 3.559838952681879 3.681688802894903 1.7941466678513895 +2.5485428949436626 3.3130521388362335 4.988493756382117 2.0672244501969916 3.0196504339503463 +4.673958035489242 1.7008578386169377 1.43883473834381 1.0452701451896624 2.999036156772159 +3.980103632693354 2.2411758414740177 1.1309555302496643 1.6256639004342097 1.8079287139170084 +3.2325952306331485 1.6704778931692177 1.3037024778327129 1.4035303627623912 1.5653038627100277 +1.892157098578723 3.010429046643506 2.4351107902527205 2.8819739436594283 1.2042503177085702 +4.1288375686648475 2.647890427168626 1.5905894297863732 1.4495950062590706 1.4876437286432616 +1.7230769167825861 4.8149547292681145 1.9005714213263905 2.509251068542866 3.1512218773478757 +2.761383502506958 3.8622451939722238 4.995077399679568 1.6033027258423793 3.5659545568920437 +1.060170001080936 2.129370208243053 2.604135428764014 1.4139988402428552 1.5998794274357975 +4.017848723603707 4.31124032470548 1.1534403916032265 2.5126340148990174 1.3904984491918724 +1.669659884959258 3.090988835482367 1.4373026148716699 2.460567308872698 1.7513556519405586 +2.9582963240905267 3.874760218013899 2.6601201710388005 2.353287632574159 0.9664637993871503 +2.473024687673981 3.810101776795571 3.062377653803479 4.55417227642718 2.003303855720059 +3.369239969626478 2.608694929462262 1.7910721187481875 3.0301479912289184 1.4538699308680518 +1.3970897025474898 4.254977481759182 2.2330625528606998 4.292191457013674 3.5224330231369576 +2.401825641182955 4.620439547274476 3.799838515598289 4.639353321042128 2.3721367525634105 +4.629721632151771 4.940464725113616 1.3716684289974141 2.211848992914048 0.8958039125873289 +1.4949865972440457 4.842573593776531 1.139258835609514 3.0855511004828347 3.8722593249495967 +3.83111826581023 4.532482971745361 3.434417162025485 3.617058254111636 0.7247552823194153 +2.6283259158305086 4.031897899580226 1.9718793040787896 4.054469596879515 2.5114132756746606 +2.120075191493466 1.6167434223974286 2.125969265354513 1.0942766327583802 1.147925327682287 +3.144877218148109 4.795676871931815 3.108885637093242 3.4856072512384704 1.6932391064160401 +3.152704476270604 3.564499480246199 4.026681101265184 3.2548489754052534 0.8748142407441248 +2.0477210292311616 1.5444712582792537 1.6127168517060113 2.1747401192071285 0.754407373489801 +2.0285723442555077 2.390697572197366 2.5734104639776336 1.0555506113205508 1.5604592955345307 +3.4464872180776456 3.92747043244912 1.576694519435708 1.4463383815591002 0.4983348023058604 +4.1937340995407535 3.89829447464155 4.330097178722229 1.5636028361337142 2.7822249225278037 +2.4891238577564434 2.204037098289179 1.078551728775619 4.596380760982601 3.5293619197047303 +1.120556614496231 1.4180286273991856 2.858371753086221 1.2355017917254525 1.649908030754332 +3.1057341516203403 1.189310322872187 2.3267009443857862 2.3411762595982872 1.9164784961340504 +4.154337934432382 1.2686876073039248 4.150989994831132 4.1406477400348 2.885668860540108 +1.3410421134955022 2.6228741194561422 4.2663994813557125 1.0786228229992876 3.4358424461938197 +4.330077769866809 1.8364194684884452 1.0517141834040142 2.0727627370926656 2.6946005034184406 +3.0477550850916035 1.1922793822035413 1.8413300425097114 3.459276492952549 2.4618165651625077 +3.4414205597520584 2.8724153618420782 2.324259807798419 1.3648366569113355 1.1154638935020151 +4.627006395773183 2.6207688799062545 2.7058953825906746 3.7845338266148105 2.2778169072598247 +4.970018219897571 3.903046951456973 4.242358242939226 4.221974465111083 1.0671659599501315 +3.0185776098921027 1.9360238266027712 4.382694284361547 1.7373445766221778 2.858285809703223 +4.841685865692682 2.030198340043539 4.082004833822339 3.698822714433214 2.837479628737497 +2.094331728099193 2.609727652086952 4.32314139019606 1.3766817323919964 2.991196662463041 +2.015798220398432 3.587554310798993 2.915599563352468 1.8013667452008009 1.9266374803676645 +4.379153539584183 4.192318249312123 4.022571779530496 4.8674503203729245 0.8652902255700543 +2.5830870236065673 4.398762027576517 2.5395440473045547 2.7647281260695076 1.8295856332433573 +2.5843587449182865 1.55021811556602 2.8803759834272147 4.152912991650878 1.6397552495954795 +3.160086811587115 1.8699354526040115 1.2399396170219377 3.5395411647593 2.6367892990229653 +2.533725900544204 2.5382227980523004 3.5034179515480446 1.5879122270695047 1.9155110029956117 +3.5348292008668514 1.666630400675043 4.031980537805254 2.8106377219596688 2.23200471120823 +1.0435713350802955 4.911453393839279 4.526862893002736 4.263188346633948 3.8768590233425333 +2.9582006080601966 1.0859862283217288 4.613457559333526 1.02686225927973 4.045843858834331 +3.6081236755213393 4.67686165195555 4.128188829295038 4.478735099231807 1.1247593296520253 +2.7187814063377256 4.491205020375621 4.859141157515845 2.9474816090791243 2.6069000166344014 +3.456238726620683 3.2713791805057193 1.9550867763550652 2.9700883944048693 1.031698277808755 +3.475751344909601 1.2972196384264563 1.8590803677938528 4.7571457349000354 3.6255735088634813 +4.136644916815628 1.5303788030374585 2.6912934322518014 4.707121140962057 3.2948724416936694 +2.6043403666840197 2.100411416693035 2.176495236406345 2.9194425829888497 0.8977277685540317 +3.9588951585312295 1.7250261880951947 4.510210727097583 4.49859038258855 2.2338991941185395 +4.791190868573917 2.6653494917491516 1.3033184614412385 1.950419750977927 2.22214797849744 +1.9762958124591368 1.0325040553986509 1.7108513948757795 2.5908249999428774 1.2903861539516395 +2.8864712232787406 2.1538372538404054 1.7229862947708607 1.4090212892844627 0.797073746804551 +4.251128654958217 2.9588481102207234 2.5049811058740357 1.268029001365922 1.7888654267870696 +3.5864568806366117 3.4488585996407592 4.920181111876802 3.9892291057503377 0.9410658450097436 +1.6317625792313146 2.0396203530584955 3.8131814800280193 3.5951820121221223 0.46246268139009666 +4.973539906319871 4.590503757665298 1.9445499585028654 1.850026907199875 0.39452667641587486 +3.948764333726762 3.9281497794702087 2.7430185413113457 2.163455951948558 0.5799290946625247 +2.523521930622674 1.884039658847115 1.4954089196462097 4.43586096243345 3.0091852372107115 +1.4758974148635242 4.486740200330933 2.323016821328923 4.180198573553428 3.5375554185901916 +4.105386903139435 3.4517874224965963 1.2101264971500831 4.5501401257180225 3.403363530408728 +1.1306827065531424 4.127942437514636 1.7575989658790916 2.0065856077296975 3.007583788136817 +3.8102943929169024 2.907929395538611 2.512660257932925 2.4068528422035977 0.9085470806275494 +1.9006267093579248 1.423122899735823 1.278270898253548 3.0842492009031637 1.8680384144457007 +4.786655554619314 2.858936535425184 2.8566880398234136 1.983163177262298 2.116399372159043 +1.562258674434445 3.0150144163191395 1.8371470148116544 3.251140516259968 2.0272831247058245 +4.429876888885632 3.499582753429726 4.508087579176449 1.0151692226165752 3.614681981040183 +2.393297521943827 2.2339609129545686 1.668351831081845 2.5830987574925737 0.9285203790666475 +4.729453645325318 2.7222710952462084 3.505989275986752 3.321934035930541 2.015603661619572 +4.030722729168204 3.2602625730020884 4.193133332965759 1.983780024723949 2.33983992890081 +4.273567705376265 2.8531991470689304 1.638311814092368 2.088817706276713 1.490101473162438 +2.452911021725382 1.4537775307966956 3.974406631648396 3.9271286042464677 1.000251440673974 +1.0633631463209765 4.077442178918085 4.730487150199247 3.189162086110932 3.385314663059901 +1.7960274410623867 3.8342943252085653 1.1215936223622656 2.1239785647782843 2.2714108971714775 +2.033712956851878 4.980418530804915 3.9295194237441398 3.6683595565603597 2.958255941563094 +1.8852271154006721 1.3082834112617698 1.2381378046401403 3.97342821886936 2.795474501389661 +3.18227763939337 3.908972005320365 4.512123420348969 4.829759116332955 0.7930807883395415 +3.977519662360918 1.4853186529628886 2.3639638300165773 1.7346330112865922 2.5704324831918677 +1.4281017438895094 3.672508097306094 3.2252880575455314 3.8039545854476393 2.3178038807826282 +2.939011277175592 2.188946811321947 4.7884910479124825 2.083302873536348 2.8072477200490873 +1.1079583717395098 4.566767694950583 4.72230352920852 2.2570915045877773 4.247426545646968 +2.703639234859724 2.2085609968122992 1.8989799679336148 1.466855424715034 0.6571408392726856 +4.843585592626722 1.0751297940358402 4.7460653662459436 3.1719770128468836 4.083994766186632 +2.5591823266518046 2.00189869334342 1.874262452149341 1.229843276794207 0.851963098683731 +4.982943849861395 2.6950246722427442 3.523974658431418 2.2437684555587896 2.621736463718037 +2.0259260684386273 1.1349977565870883 3.8695559809494373 2.0635722957511686 2.013785074942446 +1.518189339843227 1.039218392650496 3.863736017406046 1.973842444704144 1.9496437839755913 +1.643855221571644 1.3062761076233151 3.7322259858047504 2.213557968362732 1.555735261982388 +2.3669976554191097 4.7202693370512865 2.1115134273747724 4.793089547085392 3.5677357095746594 +3.027724259005775 2.6951134950142124 3.76555899891135 2.560018307775348 1.2505831752857228 +2.9970898246784032 2.786468734002009 2.3557539262753933 2.539231842898294 0.2793302520780624 +4.757737267850366 1.8587390393779843 4.637859457458951 1.8407550987569548 4.028397140570393 +4.046273288169216 4.082361079189024 4.004872494204951 3.3589995042329344 0.6468803968556186 +3.0168833692206873 1.022951601218896 2.9728860711570735 1.3950509763573047 2.5427008242867553 +1.163312086691238 4.6304255886370385 3.740895775833065 4.421080303265864 3.533203507687302 +1.5052523954848773 4.354887538541099 4.420406874394298 4.142695711788585 2.863135333576963 +1.9406528372911653 3.4273525129205455 2.205474654125765 4.834868832309125 3.020594257721658 +1.5350921791243364 3.6033708278586993 3.812463252841769 3.4958879688675433 2.092366239269264 +1.9600902319134401 2.1533219263155017 4.252716915953746 3.8203730101168696 0.4735607042774745 +3.5060564166180863 3.5400076490320336 3.440086069811188 4.123881536529829 0.6846378067908538 +3.3978496275823966 1.847213391365817 2.4336886786156606 2.0012658429545587 1.6098019275268334 +3.588209316960908 4.9662035532555295 1.9329591665936459 2.37564579407461 1.4473560603430196 +2.186482347594889 3.2737060469460606 2.7747284451911054 2.9608717145307524 1.1030433759156069 +2.832836241217397 3.3052901441404536 1.8657693152401622 3.9540539861661514 2.1410617826703873 +4.318683508706078 4.872681295509324 2.463156814782521 4.859480505752003 2.4595285685847394 +2.393828814498439 4.673724141758908 2.2360944488735477 1.714840959093276 2.3387235629445886 +2.021801500680298 3.638467574464789 4.681180882036883 1.3694521647108364 3.6852620383478545 +3.4231447989654042 2.131434086875161 3.0763438353337116 3.321166355180256 1.314707051001361 +1.0692604034654858 1.19095400605863 2.6717937355831283 2.5262366148312854 0.18972666737616176 +3.6729075625967376 3.3383373308822613 4.151208025769041 1.8319396856122876 2.343276098457657 +2.273874391368079 3.5664151528302535 2.939058578300845 3.7442953810418707 1.5228486229858196 +1.5286745646626572 4.465405176605431 3.9285035597654017 1.851335182938762 3.59708425711859 +4.197402303334785 3.4151449084496512 3.3602456148382194 3.182459185677291 0.8022061120723714 +4.916539671217047 3.589445448934625 3.1075849070422477 1.9793319228375355 1.7418765372959772 +3.930819348512669 2.508174853150846 2.830645099837531 2.2019182207280648 1.555382540951912 +4.6057102698538515 2.9141908064371824 3.5647759267426746 1.1951859201841657 2.911390543073768 +2.709696605511622 4.761431140822605 1.2190537777562245 1.6392126644478369 2.0943132749074844 +2.9470835070082044 4.114293198777931 1.8951812902488023 4.366278623510729 2.732892331398254 +2.2590839986442988 2.8227752326717295 3.4481206340023367 3.8201938239520508 0.6754156246332502 +4.340498793348296 3.2103744435870665 2.944758993355541 4.977943347433431 2.3261598534043975 +4.803452012187942 4.035743366534213 4.045370645535931 4.484560830313857 0.884457225091611 +3.2504645118685325 2.8106756870724343 2.342883846805446 4.088019750763073 1.799698178500367 +1.626665119899068 2.2222293387575607 2.1570122837183603 4.780293939159066 2.69003780318349 +3.6593827539379 1.860284467513908 3.3505662135082948 2.468740211752835 2.003589713884997 +4.3383505069445665 2.211724295331703 3.2167124962341207 2.490105746859649 2.247330952965187 +1.515353902088615 2.4103786820656317 3.52346385197917 2.809461639185857 1.1449316646187468 +4.4652214732309865 4.258932311459806 4.026829830374947 1.7951914896844712 2.2411525833606234 +2.0137714996076466 2.7257124193346094 2.9504401350938387 1.4697102679605667 1.6429914219502764 +3.847561389839505 3.3152677669807726 2.7407149851813255 2.44454157043319 0.6091429984327533 +1.3923440999249062 2.108073360391431 2.7466737610619885 4.338994145049474 1.7457813664803543 +3.008180178257056 4.437641808483024 4.143634332269746 1.75115810841061 2.786988165389217 +4.221716294150884 4.159437838657938 3.804987996475991 1.223527523736955 2.5822116060332148 +1.880974376384982 2.5900912148390245 2.7368532781206 2.8402979995214706 0.7166222861206316 +1.1813904367681807 4.750967660939079 3.5769670485411695 3.950176517130412 3.5890342526596593 +3.2218039823258695 4.894443575088909 3.6962486419168035 3.4201000530858297 1.6952820562938322 +2.403824223274795 2.226987332252501 4.539617281460975 2.3206551010745424 2.2259974043137927 +2.073956600721518 2.4537855553081855 1.5544767912945714 3.5064523913328003 1.9885871310774905 +2.7069860244803006 3.6533125513014144 2.5066442748952014 2.2898300289248925 0.970846183811311 +3.957638446333288 3.940128087039538 4.140933959190218 1.852806986484976 2.2881939725258986 +1.3517191253698573 2.254899908520549 1.140349923022451 2.5318599131894093 1.65892603204216 +3.845358838277299 3.3683557636093937 1.9346830490057405 3.5181410214031397 1.653744564191072 +2.748640084023676 1.9523598687348267 3.916169895743775 3.2749069034636955 1.0223895571299904 +3.2535977531275293 3.811589314087572 3.1302342831246763 2.157244387598536 1.1216344854267788 +4.3790445266752265 2.5533573763200113 3.622491976193548 3.4601816076571095 1.832887947122404 +2.516632396484299 1.0714293370677521 1.590794704437128 1.233045502129015 1.4888238225858152 +1.9362185486183563 2.3550487479601734 3.5117256948996354 4.16270310636857 0.7740738505617545 +1.1863158387812707 3.3382306248213456 2.155724204901915 4.894277926488851 3.482874349211518 +2.3528367733250017 4.666024526595251 3.2924403559983855 1.241034659668129 3.0917798939794676 +4.150164076256301 4.142917298709453 4.23730932622774 3.9030042314961935 0.33438363020381484 +2.5452643749350776 1.0903021755117686 2.904033649963656 1.8573373913277917 1.7923415019446012 +4.547236046148456 2.1837860503442994 2.486000888714368 3.5444536427162157 2.5896366762773426 +3.1780906982319266 4.036849284573885 1.8892314329262754 1.2363023759085472 1.0787875894327381 +2.5057469713439464 4.223866719813849 4.237823860099498 4.312370340640207 1.7197362146106263 +2.70805087602931 1.443844878268541 4.578740012208291 4.04805362967296 1.3710743383867765 +4.3836991472242035 2.392017729844416 2.810004245697514 3.1933299302980687 2.0282340715041847 +3.02133540666049 2.262083167381258 2.789239168813592 1.2572671902500336 1.7097959252362462 +1.7822976087280824 1.4382370974217547 1.803356192372013 1.2520746935431468 0.6498376154020117 +1.7857750496166793 3.278193059151361 2.555630632657779 4.334899009229719 2.322306498085989 +4.084727851534028 3.332504721199848 1.6475665927708714 4.832486115255895 3.272545187238212 +1.486812419955731 4.232193460096763 2.9455423552358866 1.7712460321033947 2.9859820679448736 +1.3135067893013925 4.464546351255716 4.3819938774494105 1.1652687713671077 4.502929127701379 +2.7757286718346874 3.7282685592413927 4.48234098187905 2.0200921182337805 2.6400760791354476 +1.3898014576674917 1.1966678392675436 3.1692216936692112 4.207515185460526 1.0561032002851132 +4.135418019299905 3.610171841306176 3.2232733280761905 2.0695795143977467 1.267632818767695 +4.1150163015019 1.280782741835241 3.250283510907599 4.933103207270406 3.2961738426859934 +4.031972620905664 3.4815449225252255 3.2359330786256204 4.734734527770183 1.5966766845865281 +1.1104857100945158 1.2141865800917349 3.3773725763119185 3.7325906309768606 0.3700455874593372 +2.4493599585056205 3.1154003743558043 4.766742429187385 2.3409457276637804 2.515571400828982 +3.00517566147299 2.357508230887316 1.5920489081859155 4.926324728834711 3.396596583170372 +2.689180804090241 2.9442968364496895 1.3869195936247638 2.6055794061369526 1.2450766757911218 +1.0422706802974595 1.09439070474727 2.3986320329607276 1.0584498141587089 1.3411953163285917 +2.647251427277538 3.4809118391743294 3.914691705098858 1.8738275502136337 2.2045671187467413 +2.347650942084906 2.7213558214289093 1.757224898612526 3.50786733828239 1.7900849947471125 +2.115330583494001 4.5465783110469244 1.7194597291819118 2.6565016975523883 2.605573480679229 +4.906836500589998 4.596496462221304 3.5762572511497788 4.427967098969582 0.9064880607530991 +4.111894585207427 2.003338228661763 4.601901144234719 1.8957094023167174 3.430668105887585 +2.369292585286346 2.571328355605244 3.1916257118010347 2.1802326749334004 1.0313749694037986 +3.0579756431110527 4.891538623942548 4.172668525397377 4.442193981038933 1.853266622996936 +1.6106933970671062 3.5823900502920463 4.01072317908838 1.9339736762629904 2.863647357798081 +2.1726284254038486 3.788678016591004 4.6303732216320626 4.897694073318593 1.638009987430658 +1.8593977608796597 2.6695663832186667 1.8419427687210428 4.572495715397791 2.848208663568692 +3.2708055952400685 3.121976416905027 3.4866663922757395 2.67586512430905 0.8243475119512855 +3.4403812574382577 4.643119637924644 1.3134800113482377 4.8838873401565195 3.7675440416142325 +4.701487260771111 1.3067503664523672 3.561073340012383 4.431534581110741 3.504560079939187 +3.570110094923296 3.974679357669459 1.7712553545292238 1.4740015218372795 0.502032000383466 +1.19837240026376 4.261463487383672 1.1950689794688127 4.812977315130438 4.740441723430773 +4.363344699548607 2.8081926095834815 3.519142911592755 1.2683540614282096 2.735790282705883 +3.3747564965626786 4.666799671989761 3.9244884491563408 4.781543642812351 1.5504577298786442 +1.259281765187315 1.0750826731373557 4.968027153364302 1.969800093609142 3.0038799588798653 +1.9186581120831696 4.79154565460273 3.4467887840921327 2.454043211456905 3.039576714602039 +3.103921561647697 4.640772600299222 1.3613939810600142 4.898073622503146 3.8561657123628117 +2.7837518119449176 4.046905117478699 1.1390905873460526 2.4913211021107253 1.8504279608624734 +3.0178794891049767 3.280746383160012 2.7463415818211008 1.036964295235646 1.7294709340964343 +2.635333501068718 1.1980157390403097 1.3484813208976796 4.1738557349839684 3.1699562976192266 +1.4197513223485427 1.06560876136151 2.4316161573466295 2.4975739601526823 0.3602324045022274 +2.459605194179595 1.641350287724046 2.4232294204881324 1.1085319957117106 1.5485381527919595 +4.245148571427476 3.856290277074951 4.771470584779447 3.183473373245027 1.6349146512671076 +3.9287642728214163 2.0149847449467178 2.6914357083279463 2.7045750306296585 1.9138246322750818 +2.1777684327169893 2.989291104347227 2.2116427612353418 1.4826654866729925 1.090860629685676 +3.0301708289258644 4.634860313823966 4.661954006207818 1.5104013006207593 3.5365679406785957 +2.9578764429228275 3.0489625592301204 4.200948356958876 1.9928844851937502 2.2099417961517323 +3.228257790896134 2.5562201220979768 3.0563269082120814 1.011837062334672 2.152109048858699 +3.0144527091689524 4.095688023952424 4.099110227684717 4.13662019807583 1.0818857628297247 +2.386013348394434 1.8947219270267999 2.091173502762414 2.2106574440096285 0.5056121764014371 +4.377887627560515 1.3194872317163386 3.8167407954807966 4.9105647889310395 3.248116979104547 +2.801688819401769 3.966034822758725 3.7042641314145186 3.1362110309939846 1.2955253530636512 +4.269761775514633 4.534437072933294 1.1634060003584725 1.0460175131828469 0.28953941007233985 +3.983782708412891 1.4639305406463587 3.537316554445417 4.11637939808787 2.585530646556907 +3.399291250760289 3.6384688392157463 1.9797580556236394 3.1396608722889554 1.1843058992200883 +4.793804859723416 1.6636024150728312 1.0240956696825627 3.9861142777343654 4.3094920325882535 +2.723249217855281 3.326974060083832 4.210989709501893 2.120246359568553 2.176164387268199 +4.502958671693278 2.0083433303630644 2.4259632016603714 3.465306659297929 2.7024693382412415 +1.4309584256921992 3.1135689608419543 4.356030317334735 3.1013189178564695 2.0989232737233756 +2.859408426586321 2.2317839556940124 1.9303713608974387 1.002408328644207 1.1202802621181285 +1.3048848211357114 2.9362292048974536 2.7878659573810114 3.7938041028725062 1.9165583870536913 +3.0354090403250042 1.3102947323017387 2.325418698821292 4.687182277043242 2.9247130756985955 +4.757970545090729 1.3694296616611727 2.7109063098520805 2.940723599623946 3.396325264952055 +2.327049326813556 1.338450444355268 1.2975616195538922 2.1935343556058773 1.3342019690235267 +4.348710278895316 4.7932411762607625 2.341522812058336 3.0604734089067325 0.8452796456920009 +4.932611472458701 2.531292203825253 3.553874835283732 1.8406747237555603 2.949811663827102 +3.095126741303549 3.2216757938453933 2.7013016464490507 4.733225287317675 2.035860590762551 +1.135675523344979 2.9772669907474385 2.112760955526087 3.8355540279962246 2.5217999729083673 +2.8297475903005997 4.156202041239351 2.8447859249717897 4.474736477964092 2.1014804818544324 +2.613105421263583 1.8325558182928638 4.869945017914632 1.2368750443067356 3.7159729702769675 +4.569626535403369 3.698758421250661 4.570862053112716 2.036841602414578 2.6794907943122865 +2.233976186862505 2.4725000552447325 2.6242673872374302 2.5943656036957004 0.24039083270166223 +3.805826011348916 4.965866576205304 1.8118459934599649 3.0059948748214356 1.6648380290494265 +1.1125332016889184 3.4321292772313177 1.6769902072523246 2.8803348161825837 2.6131521581249757 +2.7416130246557473 3.631637993718073 1.887422107660846 4.596521476611864 2.851554635002668 +4.8632690043669164 3.6425911501954875 1.2111896283037566 2.3990942707478418 1.7032826727248693 +2.2570074671800415 1.9050921041728008 4.320356392951496 1.8330170650575202 2.512110936007519 +3.275855209112643 2.7197340029526957 2.1719145262927064 4.736993058881467 2.624671155457099 +3.1333121966458517 3.856779999793399 4.764081445646321 3.9440372788913343 1.0935621142029466 +2.863750217699194 3.178012217870051 4.0561685144243445 2.6610582067818482 1.4300676121224927 +3.7967956318258906 3.2258351948315833 1.6799810476184764 4.627338783343302 3.0021514690217916 +4.881529109816814 1.7007328601021636 3.9690179538308805 2.1616454487972714 3.658423178659113 +3.312110965689931 4.897821334624807 2.986339728522646 2.731894763907116 1.6059948985491146 +4.602405256288035 3.6147658943021277 3.074622215762976 4.3153145557275865 1.5857960120364758 +1.6547525405848917 4.6683672182195295 4.061111251086218 4.673549947564821 3.0752161846282178 +2.163868383592238 4.4640709744047635 1.493187934580225 4.261458434831361 3.5992017894724007 +4.0082393942532555 4.707091555956278 1.7097388506732516 3.2850027611076937 1.7233254862138483 +3.3930351390096196 2.0270063692987876 1.539061464788546 4.859383235616711 3.590344170342611 +2.635234922807069 2.8707298980475358 1.8755832916450266 3.948776058909178 2.086524894076248 +1.9496633204649987 2.7975546750973255 3.502003366081331 2.607874986592076 1.232227782623133 +2.2901002294902773 4.154159638707994 3.994334674320926 2.9966306641815 2.114268377699812 +3.60747078514333 4.80083647135396 4.777802226172312 1.2439765584571032 3.7298854554567504 +3.9461492509988125 4.219411341144015 2.683650834522384 1.9149231201031762 0.8158519895340725 +4.29402275218176 3.989440541370338 3.7357929462259345 4.2592249365337675 0.6056000095941159 +2.302003770383801 3.835110305859984 3.7660954246494844 3.887729493132075 1.5379240864670178 +4.095943133520557 2.7681242243454727 4.868801522734255 4.517054736064759 1.3736188909210691 +3.013459855426816 1.208745400388926 4.67085054454753 1.6273796142936394 3.5383201618173548 +4.67382693824455 2.995553409361161 4.91498540903056 2.335125860010734 3.077706504918798 +2.624030121013444 2.626858820827075 1.9526570209007201 3.1742628578384022 1.2216091119432804 +2.8864105607247708 2.7895053181641356 2.666438722922416 3.5827784047858184 0.9214494226995082 +4.800487533019229 4.248536393001572 3.2587019173192777 3.080507206956918 0.5800029446200392 +1.1180983142895853 4.632323716383831 3.771332178254852 4.726690807828091 3.6417702134847167 +1.7245390867096284 3.007423509017454 1.969525429693983 4.447552862389976 2.7904143775063193 +4.9895466929578385 1.9801092438239283 2.8554084461575133 4.590270536083496 3.4736810779505887 +2.694430433719327 2.1065936573531947 3.6912114892512373 3.940305992381166 0.6384357032137786 +4.344458149720896 4.202372588221413 3.3495021787508175 2.199363737232039 1.1588816770688317 +3.464747525358528 4.684167679654255 4.0171309392512295 4.657253619949085 1.3772227703049436 +4.2044151167680965 4.421859647337529 2.074938712947813 2.9045498120404405 0.8576343624250593 +2.2575999624089738 1.50641558397299 2.4021370769774975 3.179357331582294 1.0809020744610496 +2.9336490618843873 2.0612747091097714 2.446912608537301 4.133125885495899 1.8985131621272433 +1.9121878667526921 4.288797364053325 1.0772354652456282 1.1604715266126502 2.378066640061094 +2.510748377413383 4.2219600492959035 3.093602923258148 4.8747332957908185 2.4699536007677025 +1.5151332401537547 4.228607849359939 4.149807699131701 2.2024311926894895 3.3399430702707686 +2.6906838523562846 1.334692896909754 1.8316396981359082 3.336117363895087 2.025380092234784 +1.2494048019289248 1.6436597555163859 3.506580191648734 3.0851764582310897 0.5770771828504225 +3.2481104018761275 4.54081357490466 3.855835300963786 1.8760563811607263 2.364446249093983 +1.1102737431890812 1.2287933617501086 1.9109503823255518 2.353029270663238 0.45769055430250655 +4.283383044321571 1.958986934387601 2.027325976534415 3.7195270585059896 2.875128132397222 +2.504979534472449 3.231450880892982 4.340600545674784 4.893751975935942 0.9130920665354761 +4.392814156755054 4.91870478529199 2.4244323538487342 1.5405078661200085 1.0285346144828882 +2.3047550864406867 4.570990511208295 2.9403729760974637 1.2675009250850668 2.8167931943133575 +2.86214419164194 3.617836334530158 2.4769481221377716 1.7851487547195073 1.024527686098964 +3.6098719236057306 2.5126749907439554 2.5787594030636867 1.8822166336202812 1.2996203057605618 +4.281488771076862 1.9229316607623086 1.8110611973585344 4.188986921348689 3.3492271334487658 +3.8257435438488296 2.001531460533083 2.392801756914774 2.091727121182198 1.84889038647419 +2.442167966158127 1.268630329221311 1.6392307518658944 1.1166314068435597 1.284640284564134 +4.07555318933586 4.912145959548749 3.883271057605558 4.098821417076641 0.8639151698173774 +2.494435340334799 3.9579248321049088 1.066241773239657 1.0767374494771125 1.463527127094409 +4.707648083334701 4.4731426711438225 1.6483771344320632 3.7684013439905395 2.1329546262077064 +3.5971509739478695 1.7566876303140657 4.10307759796788 1.8315601859807122 2.9235418027147486 +3.5031654372196797 1.0339836142706176 1.5194906800163386 2.952141040263039 2.854705926973399 +2.5806965230174943 3.04064767681281 3.384003820632627 3.0031508662076223 0.5971633250392199 +1.450252981933692 2.771133244434213 3.435119412321599 3.837699248467339 1.380867550612504 +4.777998928386285 3.549539633766675 1.8537733494719015 4.51048533582839 2.926983227999018 +3.0445193603569125 1.229773735813839 4.247007981716131 2.4545348732520615 2.550737447556113 +3.9313854812846203 3.237736635771027 3.289336436782125 1.4338370551959527 1.9809156155548397 +3.064184447649456 2.412866064732274 4.658565504239727 4.405515567098641 0.6987488151066594 +3.0967461886214576 3.1780099926468974 4.518925952653991 1.1200719127972318 3.3998253764120436 +1.013462934789254 1.9404484387566132 1.4858329033516524 4.026599882845742 2.704588502647517 +4.718111293684782 1.1362822691980066 3.457305267286809 3.715198587013742 3.591101241265089 +3.2200704663521535 3.1152736734139586 1.0561449644904184 1.0089560670908542 0.114931109138986 +2.696642715725919 1.5546140276250675 1.6048789786208917 2.467864073883629 1.431423347263481 +1.949667198676476 4.474933761293 1.4564202301694258 1.9161906426305384 2.566780092731697 +2.941094503442662 4.0750073711022 3.657451180662525 3.230512569944519 1.2116249290790027 +3.9954401351158166 4.960207560468888 1.298818807600481 4.151611358468692 3.0115115014410203 +4.856543739347787 1.6398346140547964 1.8455035158149435 3.841098136485134 3.7854478581524535 +4.809373128480923 2.0069652568748877 4.20613287576437 1.9586609823876246 3.5923000696431133 +4.509549292438463 4.219769449757006 3.9406266985496297 3.349866239606946 0.6580047697962835 +4.292966562971456 4.85800778204565 3.540338580059595 1.083052428211106 2.521413653353849 +4.618330403345212 3.808756935377974 1.622791746865738 3.1545519181765096 1.7325410305243867 +2.893661645132253 3.3251512736284474 2.947009000268265 4.91997739090289 2.0196008442123325 +3.465956137560708 2.935659044747828 1.7806269758774027 2.269554799665509 0.721294269712415 +3.0562243939708953 3.9420437698479676 2.576073523570293 2.416736920204347 0.9000356214347534 +4.22470170795998 3.578529828591462 1.3013970149759753 3.072883591652106 1.8856571239306363 +3.7888083463287408 4.193673096021662 2.341539520196871 1.4450441695885665 0.9836764606343991 +2.2475006168483787 4.296453057913 3.0492476195847003 3.0837247196450335 2.0492424883778986 +2.6970325852329906 4.275779724655628 2.3225795990790203 3.772822234313272 2.143745841112315 +3.9429166638721034 4.3468696368752004 1.266727713890769 2.994762061133104 1.7746212862600526 +3.525215721995992 2.8442349049758335 1.7492948821728111 1.0423784370046043 0.9815629035363435 +3.466218480684043 3.2167818610639496 1.47397913645111 3.593105578196576 2.133756195846259 +3.6643840692272938 2.952664495992705 2.2885891554408224 3.9089659857437855 1.7697925932458591 +3.8201690015913776 1.0920398375287488 3.8440761392900247 4.699325365624508 2.8590452908190858 +4.708140877617798 2.7005856203406324 3.0200720157993652 4.26171804104768 2.3605005746739662 +4.730469532591319 2.9623795857621875 4.818306146630471 3.487628752604126 2.2128814670133115 +3.0178867529572884 4.889143889771321 4.75940838746832 2.226752878142627 3.1489597013927058 +2.9394349749703723 4.412189790972416 1.459038062335408 3.7296916067989385 2.7064504922577113 +3.9315700298640506 3.595071436733143 4.844574442058974 1.586822691385196 3.2750843916145347 +1.5534629039507224 3.3183445219608507 4.996870817172131 2.4432258152920867 3.104176206534832 +3.814783092131722 2.138055706581388 4.351845095801635 4.51630062866454 1.6847730849416134 +2.170660055296416 2.805317830306906 4.957934690548447 3.653159270814257 1.4509408627934486 +3.703834818134951 2.504716868433998 2.2427769508770536 2.205066238185518 1.199710779790996 +2.364077204958256 4.034765082632369 2.7379250751689987 4.759327386165833 2.622454058226869 +2.9424542844403607 4.128258957601505 3.4111096447891516 2.2236022648576395 1.6781854785102313 +4.049455009458567 2.322768498190314 4.951336769891068 4.98548781795316 1.7270242043119928 +3.4478985886857973 2.6879958956924375 4.817524633712101 1.6111849565614467 3.2951579974394436 +2.26371489153181 2.6768133851201408 4.341071153718081 2.025379033830284 2.352250063134315 +3.931754652491769 4.219554585343838 3.3812331870284504 4.506009732387994 1.1610129535627953 +2.3867216648493885 1.659772844261303 1.6258722599766506 4.383639677503712 2.851970497205097 +3.565448584572357 3.8441228866381745 2.9736385996742793 1.4916112862357873 1.5080001075628557 +1.6449350438925583 4.566517702544773 2.0939953688206168 2.381556725283418 2.935700387483039 +1.9731743459675388 1.6359358270090025 2.379204003853833 4.15137994491166 1.8039782107147369 +1.0869880530563214 3.1280174912919514 1.629295244443845 2.5972237589160088 2.2589127421998265 +4.239845911785169 1.542889886836801 1.3767324505378005 1.3678829644321358 2.6969705437600977 +4.129958960804105 4.007400171190181 1.3724275721552033 3.9765835083106276 2.607038318998239 +2.341426608220492 3.4704125823986893 2.1745289693621754 1.0492090114310009 1.5940371192695966 +1.1761427212595859 4.986683547638762 4.24983406421856 1.2861412613525705 4.827390228608224 +4.005467005462606 2.6718898801425928 4.793536628000953 2.8227071990686032 2.37962110158794 +4.118301356967528 4.369753504100252 4.152171961819784 4.168831232460684 0.2520033999690162 +1.2912130927379466 2.789164523655503 4.77351389818387 1.9194973158657191 3.2232389209512426 +3.138556916326448 3.767665802267919 1.848551818341384 1.8110431528269255 0.6302260629006025 +3.0273760258602636 4.442561934187671 2.6562992489318544 4.397422281850014 2.2437157954800337 +2.5880069476099603 4.174796061242288 2.6195375528340548 2.3731324861757774 1.6058066969647808 +1.9849150358532857 3.7453540664159974 3.475776285274773 1.8678328089575058 2.384245751461002 +4.399960284482523 2.5832475995580895 1.8845404882906314 2.72452096453209 2.0015024806460198 +2.01972687978721 4.854212155773777 1.5515427743386723 4.474183519030419 4.0713800734292755 +4.80713786881055 1.4067771983348742 2.9437032844009767 3.728808968875495 3.4898199989558183 +3.926175330811655 3.5840745761609325 1.626825034040487 3.5840946460419496 1.9869416852029023 +3.080971603209498 4.222026534062293 4.892849969781362 3.4617902009643937 1.8302836985423738 +1.8602976884888456 4.835173206669898 4.118915663482778 1.5684002379880781 3.9185473436414417 +4.956983428921719 4.5044951930654396 3.3067738546314347 3.1751824269296214 0.47123445060068486 +2.7447583139983824 2.4481275023957974 1.4207595174793508 3.8734578284644443 2.4705705501161344 +3.534058022993999 1.64215105114861 2.5625001266040863 1.3381655932965502 2.2535099377563377 +1.6106318629391527 4.4295959876343645 2.3639643687548952 2.5504684149470034 2.8251269875112994 +1.4786456533876944 1.793228965776243 1.1142647055893944 1.1634609340957667 0.3184068613152084 +3.490014603113412 1.9876933155372254 4.6616417227123055 3.727209733767288 1.7692180173930832 +4.615988444544021 4.657033450262999 2.5019790493037424 2.3260219620053957 0.18068090398542097 +1.383168787538585 3.4589581906898763 2.5105544595532785 3.0883800626673095 2.1547120628634557 +4.92186973946435 1.3974862494869202 1.1932572931172767 4.093770982642923 4.564456007844874 +4.795005526902899 3.330059553626088 1.0926723779294947 1.9719937557923273 1.7085879521366563 +1.9662755470221005 3.6877716233621984 3.57409725191392 1.5453531703843693 2.6607050361127094 +1.4761858830749355 4.226126465672416 2.5304868987982294 3.3814390846230324 2.8785921611747263 +3.276335556819462 2.6289621038437403 1.0151745997399484 4.648133456230525 3.6901873178161333 +3.731762465339002 1.6293476310149715 1.8176453820684357 1.4992247554372566 2.126391269510372 +4.652417422906485 2.2226780708233296 3.3626102521650334 4.318827092741845 2.611126953111275 +4.681222604062502 1.438220741783602 4.485526641886114 2.6776492064216098 3.712880539474187 +3.327223064125228 4.233059480347887 1.6783568539699374 1.6532420640489827 0.9061845097042235 +2.471842776286056 1.7280364477411316 2.1856718656537977 3.440060308438037 1.4583340563033382 +1.1684361569493515 1.5941383334712995 2.1981476822052626 2.263859968478946 0.43074406282946986 +4.289792376693693 2.531288795278189 1.152665453417022 2.349035743342653 2.1268842743477827 +4.3165738895023615 1.0661641350560913 2.5665297761287604 3.2206402974136488 3.3155729739903252 +1.390842930581952 2.9904925208263307 4.2445761654309555 4.370891287803509 1.6046290293114487 +2.7368015508059518 1.493772649892379 2.9485389557502732 2.506670917549661 1.3192301587250281 +1.3158316194470432 3.0921117635313684 1.4967785811722676 1.0645578442627053 1.8281099298682442 +3.3990795775693425 2.2134771410269 3.255458749032056 3.42116351979379 1.1971262291791016 +1.3826192836034559 4.841969523196846 3.36180694806504 2.217554548676654 3.643681878770555 +3.574259101073115 3.241969158296739 3.5577497053911604 4.567067122972313 1.0626091734513747 +4.043091781798273 1.9299932371880972 1.438079826666832 4.519726446743583 3.7365400239076934 +4.1702207497132715 4.140099834456739 2.6980428728232098 4.953087003716265 2.25524528639594 +2.2904718633957235 2.608506682281869 1.9595832444981247 4.2244746688616095 2.287111564873738 +2.948996681168036 3.410461963153733 3.499857237189093 2.623442788088818 0.9904809402860193 +3.085186051370994 4.053377648738702 4.182884240148736 3.96637710279863 0.9921039813129328 +3.1199972197826806 4.86175666270913 2.489022019497663 3.905220034755256 2.244848051749383 +3.608639283540674 2.5466687607225524 3.1745119880316883 1.4644355513878486 2.01299349489736 +3.3205909242777376 2.7494441726301773 2.8167987483511463 3.5368599030035157 0.9190738155104101 +4.558845081577072 4.457356652549189 3.020418802262384 4.204528366720449 1.1884508243371357 +4.421492807235623 3.1062147511930167 4.602694209165559 4.426859319079299 1.326979379372138 +2.7271672331040366 2.0885192822837784 4.499781849162252 1.9918795615071088 2.5879422500343425 +4.148876815940286 2.808956916016413 3.234523026677023 2.228190423199773 1.67573585240434 +3.3381917999013857 3.8340262010493333 4.89922310566868 3.7466550948463477 1.2546970841333345 +2.4867547432559127 1.4332372115745824 2.1668400660783456 2.986615267195132 1.3348897220092715 +1.2120716651720191 3.017397334798402 3.277900493841022 1.2781440606085357 2.6941096053551097 +4.989787762626624 2.255719515212184 3.1957208525319083 1.1285185417179604 3.4276018694350125 +4.323855411052734 4.5415750694206345 1.5617105522383508 2.6937117271551445 1.1527482420948802 +3.646639914757782 4.83218844468735 2.0599538885484594 4.220151604724621 2.4641386912653407 +4.942068582741433 2.537580600327 3.3165590831457195 1.8135804072125552 2.8355788400052004 +4.45759692625304 4.843417511638108 3.261503058892116 2.6049626408566926 0.7615135222837511 +4.92550986065548 4.238132238347214 2.9033166633735457 3.3864899627760723 0.8402049945731629 +3.9684376871035685 1.2904309238899208 2.626963390519536 3.427750389453525 2.795170842986121 +4.135534398766899 1.5395494880942362 1.5227333969974222 3.1553978073106426 3.0667133438167267 +3.716125507210441 3.1310716575267192 4.565425624723872 1.5135449379831405 3.10745293337338 +4.483626388525758 4.893003078552793 2.50464696701138 1.8624699015723598 0.7615646116472078 +3.068307098563149 3.512433287047717 1.9352902920155 1.7100713819025826 0.4979674977046998 +3.133422563056897 3.7673172210405586 3.769332152529161 2.133867250022716 1.7540147903454635 +3.745315857909404 3.4173211959430616 2.3946452525288136 3.6019598650792766 1.25107516638941 +2.7440494186330393 3.989781665387572 2.4383550543382193 1.267437277715688 1.709648288454309 +1.7300205954151502 4.07989547453491 3.9637659624768418 1.9177578416985477 3.115776175820213 +3.2915975582847485 1.5140402143286416 3.2219596061485967 1.2739763664235495 2.637109935763388 +3.71389748905476 2.761128642861987 2.8214518064922958 1.1836496353257302 1.8947729220551532 +4.57165868864802 3.2587020293926363 1.980459303162434 1.713913508731812 1.3397394707971055 +1.5096960734782212 3.5687840024633597 2.3772252763764885 3.6953147093648733 2.4448318659261514 +1.6425950411936592 2.066716463682041 1.5885792020979648 3.9089153503174185 2.3587790955804784 +2.6011052993086548 2.082925743832166 3.053603642595705 1.2724914448590252 1.8549584126443905 +3.5314912760108714 4.214109166711246 2.650543412863593 2.07690006856429 0.8916467188091467 +2.055957390472746 1.2532985821642901 1.3610481854822272 4.766311663919648 3.4985826444625934 +4.874244037051977 3.8060103436779986 2.5585484293621428 4.242013797154089 1.9937850606859016 +4.407940887503841 4.553380974305123 2.8851088504818208 1.9436424894142914 0.9526340996786226 +4.809816272064314 4.482843371680635 2.5925128711726226 3.816285791430819 1.2667010057399453 +1.8846597839594215 4.880498833988474 2.021737711788685 1.887507063327678 2.998844690987721 +1.477035438229278 2.999025630901512 4.281603988612149 4.871494866236361 1.632306770829162 +1.3894402828108912 1.7313659624896651 1.9802287757602834 3.29223661639972 1.355831016138497 +1.477078537961908 2.129639586252492 4.142128103854929 3.2695272705612313 1.08961834419716 +1.9703085713953765 2.912577544231808 4.990322103309456 1.774012466660583 3.3514949643361587 +2.741189538663293 4.880469146266517 1.930701895352248 2.2291324858914288 2.159994920567307 +3.591167918989996 2.9256543565232316 3.4719794242688033 3.972113708150108 0.8324918040081053 +4.153823988737582 3.7843672399854884 1.0282989575072086 4.565697153065127 3.5566394648790145 +2.8363380671867056 1.1654025297978032 3.939260256339684 1.252972105266208 3.1635691237440815 +4.3483940235816405 2.2078413909483117 2.862967441441918 3.998375962380053 2.4230390179467602 +3.816544240297111 3.912803769044155 1.8038989161248384 1.6402319004057415 0.18987571964050085 +2.150243012774115 2.5454631037640003 3.4225011987888325 1.3883920423794152 2.072148397318755 +4.535465343860448 4.895190823494083 2.831615262626262 3.489001642738966 0.7493725865384546 +4.332586666740061 4.838309691285851 1.7336418248257712 4.049189201749197 2.3701298344885453 +3.5118107307821766 1.8436894162915372 4.188534299991462 2.2062547814727202 2.5907645221819897 +1.3074809065506212 3.552659964637005 2.882695485804962 3.542417844216089 2.340098842582766 +1.1921092884090636 4.808686146240815 3.563825893735035 4.2203101617550445 3.675676776154556 +3.132419591061651 4.502600855780253 3.354429445372392 4.0765134904541815 1.5488066588013973 +2.2645114808308784 4.452986490565999 1.9585083447866691 2.7253711756678287 2.318944041934216 +3.8725195310482228 2.689667464757002 3.303250276590842 4.468629181271549 1.6604960108968088 +4.761865789580668 2.727101859633134 4.373526715417864 3.6270561236472343 2.167367664932262 +3.670969843576555 1.2548793174637995 3.3906735536623844 4.383791737443178 2.6122360454843805 +4.239353950155798 1.5154085302015852 1.0153811266781836 2.212695685548735 2.9754732066971994 +3.2702586410387116 2.935422596309562 3.125675510464684 3.100524415557939 0.3357793239984693 +2.1411978443622384 3.4816559474718893 4.635480549135984 3.1834740508454087 1.9761454393010607 +4.846071929118446 4.3775994905992714 1.8653939877838663 4.174297803717751 2.3559506057823363 +4.515595383471915 1.7123476322313338 1.7486496790540227 1.5396065228444518 2.81103130469823 +4.476213187738713 2.545254448190993 4.025009218792508 1.1649413113446 3.450882508728626 +4.242405105197088 1.642090269481923 2.6631668055667705 4.6798558796293275 3.290694769540876 +2.2716937864885156 2.197643014627958 4.855792571407501 2.787931687705832 2.069186350031478 +2.6161129435062866 2.697499518308088 4.772939895560428 3.8059318954280847 0.9704268374678858 +4.986912745157215 3.8223386082271458 3.399110930591892 2.183645188670367 1.6833270300780117 +4.378820236652691 4.272574565705607 3.045860723394747 1.9771750179515468 1.0739540398050684 +2.231209387050323 1.0749449886717977 2.1758233992376903 3.6032432611328113 1.836974365931746 +1.5622259456563379 2.2402849036461716 3.605419920135682 4.821149300665577 1.3920351565940645 +4.166887588305098 2.114334080953881 1.8526051085141937 1.0198350887626546 2.215057969069153 +1.7830845012183798 2.100063675830643 1.6565317848947618 1.0490402687590978 0.6852165638064213 +2.5936593870938363 3.404681823276072 2.143983188246002 2.508954790548434 0.889360254608993 +2.7857988020007736 4.15171912754607 3.2890989068023146 1.161442551339459 2.5283709978322504 +3.6819826208044133 3.635971070055052 2.671362651386928 4.4226404400272985 1.7518821181196715 +3.7925559370879314 1.460044332382898 2.7781145966183476 1.9125697739131877 2.487926491316686 +1.7842884673687611 2.6971265938381905 3.6958984772682406 2.193571640111971 1.7579133570162606 +4.012338839045114 3.637099917576824 4.345528690311506 3.3645827371355623 1.050266257306663 +3.64060718819409 1.3031129428323869 3.356236998058007 1.6449533644550378 2.896958926484195 +2.1580024422490562 3.5693305938240707 4.19967093223201 3.7017364625889453 1.4965914230299688 +3.959782504707029 1.4659234001708148 4.900779300155222 1.454460067699198 4.253992182089013 +4.841133075293298 3.0018093147664935 3.7585222868007686 4.547079396230392 2.0012331725389894 +1.443142992231314 4.4592008104382455 3.4156258278244804 2.0923229117041 3.2935900428832756 +2.1061983315344106 4.004250676382261 3.317390816082633 1.1321259300649502 2.8944749654893025 +2.9776332036102624 3.4940716644829375 3.756056772395708 1.9686673807210444 1.8605024916241475 +1.1316760572326219 3.4692629257091183 3.923505221882796 3.286971717675346 2.422702472375089 +3.163791222377303 2.363477641966655 4.051136530576262 1.3002137515141454 2.8649743390391036 +3.0172943776315684 4.229021806063537 3.1737564961185387 4.634476644987827 1.897890069031151 +2.4616331881554245 3.0466474515394797 2.4987998194264174 4.9595038223093715 2.529289599505557 +1.7099788858298388 1.0216032741539207 2.841753145045677 4.0893513232891685 1.424907785474791 +1.25507547565407 4.69590863664932 3.796570742002671 1.0676351114821183 4.391630963244655 +1.265714905396516 4.4485067758747725 2.533065047324569 2.175794156231496 3.202781069696291 +3.0004160132098225 2.366771647502865 2.5559056391364736 2.992438153201753 0.7694581327325911 +4.833723703517363 3.652686067803719 4.107014513531008 3.9123147144457295 1.196978658429598 +2.8455589112723425 1.7946253243861898 1.9909337062910173 2.2375976985913684 1.079492718429792 +4.9885630828241405 2.4756748125870436 2.4240853247046803 1.9691415192557207 2.553738695483853 +2.292491597779629 4.885184222094836 1.056457358948312 3.3860595229183343 3.4855560943057973 +3.5155191441629583 4.417374211304598 4.703562042802059 1.2519064361429004 3.5675298161487947 +1.6478852343046397 3.9026007840551404 2.669516191682336 1.6234865637545388 2.485542233153456 +4.677639750899067 4.271663975261698 4.452817991131592 2.979473496778853 1.5282540133904086 +2.9633850876194336 3.3211406507093106 2.9184567144577445 2.756337108395198 0.3927745022167684 +4.0437894246944825 1.9046617896223443 3.465487830797119 1.4798368400443045 2.918677251120266 +2.4450639862022028 2.7468635072497363 4.546345590825048 1.4338447349731922 3.1270984200346263 +3.6356477813775596 1.4840369704868173 3.1823551046476806 1.8903776606416534 2.509708109992528 +1.5800219607056905 1.9384595757719039 3.8929100602714812 1.1598271102543825 2.756486882894334 +1.469404026056099 4.643806857821427 2.5005097184502443 1.7013454621867266 3.2734533518608377 +3.280304395206739 4.4393760251669665 4.788187377397891 2.6158756407011454 2.462191163327716 +3.928802876522619 1.6506997509495291 2.2717579377490695 3.7620394575497476 2.722258778846218 +3.6151732850329887 1.727535515429885 3.7846627440698537 3.748358511866157 1.8879868501946935 +3.1934701082724453 4.72065594521854 2.3858701775699998 2.8126504996114794 1.5856979611043749 +3.5920033403822957 4.500958509328237 2.8666296970035967 1.2454473264224935 1.8586101737148946 +1.0222630593854163 3.7331045093308943 1.5315754576405376 3.1922696791342466 3.1790826765035693 +4.606713928082748 1.1691693476210907 3.9645057634865233 2.6988428603604864 3.663142820995482 +2.3865433335400477 1.7848948142939625 2.7947829201891663 3.9899911222789504 1.338097002109227 +2.582039320206027 3.5532032808279115 1.2531214020853088 3.421290775941407 2.375735227700749 +2.8052360721881877 3.0457253474815422 3.99288910038819 4.969847482147252 1.006122642236227 +4.883423454273419 4.2662362862183665 3.280787784124667 3.9043017940981044 0.8773196230821306 +1.1193759303898076 4.526686858193057 4.95473240798054 3.003353362071987 3.926531285949268 +3.325797466459436 3.1729139161886133 4.197505800907414 1.2548036390895487 2.946670900034639 +1.1795382056840649 2.9583827725223295 4.792562241705364 4.558922118076394 1.7941225432894414 +3.686360411053482 2.629387769104563 3.8096546483449263 3.1762914230243706 1.2322094550103626 +3.787223907410029 4.276534374730863 1.846953528592647 4.015795242968718 2.2233531243253886 +2.679840929690923 2.993251203263975 4.642736698646447 2.815707117635439 1.8537160217979436 +3.601448301825022 4.590903565254184 1.0908054758040748 2.230569402822243 1.5093321462353966 +1.7065126778874413 1.251163204229262 3.7909392810306874 3.9309502919913473 0.47638873449212354 +2.4064463692660025 4.830904298054451 3.56693700228466 2.210999089399974 2.777870384316599 +4.510314275364127 2.7748365305109832 1.211150745160483 4.100872191419294 3.3708119259087517 +1.1845095251313178 4.054175128231157 4.9467043004599835 3.029230252559782 3.4513312501098974 +4.787989248171261 1.1179599368222952 4.114210227353755 4.813280695878403 3.7360158814068005 +4.906378478871128 2.6281419043669927 3.1292520693788086 4.248229510935671 2.538202593198872 +1.2409054674005744 2.614323543390466 2.3815103064006267 2.4506432908225375 1.3751569295868948 +1.4287617704373785 2.5066278746401087 4.84477685003111 4.1484017889929135 1.2832511695787083 +2.7639041068482464 3.394282890533395 3.000149842753799 3.2324104256581663 0.6718053209758343 +2.3100810724136025 2.678167283098838 2.467602836295743 3.014860558782559 0.6595289783762895 +3.845715171566677 2.1690527752213473 1.748653071124267 4.840049946300185 3.5168069937325104 +4.663681474803311 2.1094508967146557 2.370617066515022 3.2447997544744323 2.699683169924027 +3.240610792864048 2.4764679406064323 3.310164738544918 4.734637519753642 1.6164890977241144 +3.568298094683945 2.3499207908402577 4.456045779043036 1.7113434014611202 3.0029709282684096 +1.7107810653385411 4.84465733844028 3.581076046875835 1.704042904488587 3.653003409898517 +3.087606618152576 4.402720438745488 1.4211993829213965 3.951022974610492 2.851233376309488 +2.4687239329841892 1.3864462518923424 2.4499730366570525 2.9966430024323714 1.2125069197618352 +3.57660027604793 3.241100555926196 4.271834397783997 4.72346588503402 0.5626109334855035 +1.730588766426608 2.0924241713126137 1.111572141986099 4.197809027899362 3.107375576946021 +2.2724702310428517 2.129047892030386 4.34464589613428 2.602433176995054 1.7481061541160203 +3.330936195134589 1.1866396927102647 2.1352167536904876 1.9593456905121007 2.1514967165145027 +2.123978435833694 1.0970559452992905 2.307144719270032 2.047718656058231 1.0591844427855592 +3.245311082651259 2.9663105742962084 2.357700509975476 3.1873242948625227 0.8752810452150128 +3.148233646731772 3.3857102545642492 3.8936307257534226 4.885020432901827 1.019435476480694 +1.0606972317057553 2.323222603479353 1.9274637107106463 2.7290016308460205 1.4954709464870934 +1.4005561886776703 2.478338994479594 3.8806777570798063 3.8695738678559555 1.0778400033577167 +3.4524706649809005 2.852317982473147 3.823134612876951 2.6453790540173863 1.3218515040449355 +2.4050301331252117 4.99053596438212 1.9182534837941971 1.7408630456789318 2.5915840273852213 +3.380588919316871 2.8347344418289104 4.573036861304251 2.6435937365274342 2.0051702876170348 +4.221335544379898 1.0881777001756592 3.161588764177539 2.865249392841268 3.147140781678273 +3.2761500274618194 4.019236304950092 2.45272664130417 1.7211116810988165 1.0428027933351824 +2.2436940731539505 3.170935374455479 4.049490892996679 4.141418305393365 0.9317870357486749 +3.2827862853311682 4.738817674889061 2.8104771166340567 3.2912277973094373 1.533345565861698 +4.8997275580760995 2.8090670147108647 3.973396058927891 2.130426822841792 2.7870050435447724 +4.534631559109693 3.1944136965415284 2.968829365694817 3.6018994273643727 1.4822151065648583 +1.521571034179158 3.240529794324083 2.9203800230590873 2.0951590614182165 1.9067797079396616 +3.1948112778040603 2.1091251030374085 4.575325740903828 2.191868092836209 2.6190809132616493 +3.848569649845503 4.978595944069494 4.818758106469234 2.5540143218401647 2.5310124131765153 +4.77036716360901 1.5515116984824555 4.237785078624317 1.9781923014950658 3.932784004217594 +3.3396330660962055 1.7324287380584162 1.060151203261181 4.765868842580494 4.039238662721689 +4.3712199845609945 4.4348397396862556 1.2422953156538639 2.809237356820457 1.5682330291182902 +1.661527784686335 4.4295950129778765 4.442894496221198 1.8946458983822962 3.7624150617295733 +3.8777919080014565 2.67142549334695 2.490064016894597 2.8107795643726923 1.2482701585796814 +2.673457197872099 3.577503924342376 2.0899398136450618 2.763206563686547 1.1272038858844693 +1.827996667565166 3.9252375848115353 4.817789869349154 3.2941163757002023 2.592296352699821 +2.3225847186934168 2.487380088223221 4.933282420514518 4.90329497707549 0.1675015241198529 +2.193164131711079 1.0373457356392866 3.248503027929877 3.4123051658514414 1.1673676820460834 +2.404516148395057 2.9223354472094494 2.6350437776046576 2.7539724558765832 0.5313010980038875 +4.687077444530999 1.6318448545331856 2.1798275280756636 4.494219768064093 3.83286545804877 +1.6859750118535204 1.5956386435783045 3.7020659666277207 3.3287681891804044 0.38407276664749546 +3.9264897716415383 3.866803610930848 3.556411860876411 1.2869458607107238 2.270250727053826 +2.3387406820561365 2.2740833855863167 4.7364316452354185 1.1706150513800604 3.5664027460455183 +3.591739842885101 3.296544914901165 4.818559626929912 1.4452988209298332 3.386152464199411 +1.6873248532551828 3.2376931559615265 1.2265310984133722 2.7793455930087894 2.194282280988973 +2.647721888657321 1.5678303013606123 3.6241034455095833 4.071193512559766 1.1687837132545704 +2.751509736414867 3.335165800779665 1.5850385480624123 4.598387564962865 3.069352814377117 +2.1444563869141917 3.8378435266552877 4.588677346770615 1.3339704587859371 3.6688795199264086 +3.0957450107533124 1.4160453261293866 1.5156361054817733 2.1116170671640937 1.7822974884158647 +2.9100843370424414 3.2849110628688862 2.3628091946995102 3.1812053490449577 0.9001485098811142 +2.4587036603661274 3.853479709188098 2.5293769828219013 3.303193404327405 1.5950523754908528 +1.5656957285279982 3.837627435567743 1.1661140113782653 3.0296393197250113 2.9384350012041045 +3.0857016473177494 3.9043983241397546 1.5390747283830066 1.727252163365426 0.8400446390972074 +4.721073861791065 4.969908165529141 3.550661597802612 4.416744507678699 0.9011204789018183 +3.303119644964668 1.3189932198118859 4.134314676409584 4.537466638362444 2.0246701399032876 +4.914188895628798 1.8891070950760418 2.2808246119005386 1.1651464503234132 3.224260792841612 +1.8054939765898887 1.570149048940972 4.420806872937133 3.684876067753067 0.7726457046984351 +4.468288021132337 2.7789170576141724 3.528257019510892 1.3408625622012567 2.763814169629935 +1.2523155333168923 4.547302564089664 4.871315455659538 2.7493872354009654 3.919122211017472 +4.659623382440811 3.63718601544442 1.2920881791230334 1.6277706722727685 1.0761323829519 +4.043785596366424 3.916727434267792 3.1918481276012174 3.326338378330507 0.1850173075609675 +4.769207310605047 3.3038775904773585 4.664592014719052 4.421132720015006 1.4854169841722162 +3.197429087436302 4.497661748726575 1.6614237838069883 3.5026966970290605 2.2540831649367514 +2.269886889486504 1.61023149736095 3.6137510951250515 3.138583621210441 0.8129756236362261 +3.586208121990153 3.7210088565480075 3.944137773189779 3.1120806218117263 0.8429058910677375 +2.107346369528881 4.123399070210269 3.3102468439691357 4.68898140433228 2.442412225621316 +1.0273220666343361 2.647851271663837 1.437301200350654 4.276673677527848 3.269273767751012 +2.7391011625669557 1.9887482988120833 2.4653240842031385 3.166151520845034 1.0267368290341923 +4.145718389652215 4.188782082847101 4.4791830030744535 4.484819840836067 0.043431044329305106 +1.6439537581122878 2.2474768710653157 2.2277177681980955 3.271098339914144 1.2053560325907948 +3.055469966823026 2.736855219356482 2.2183076995672106 3.172322463389889 1.0058128687259924 +1.0240613909373013 2.8443785613314567 2.803629306516154 3.506487360557337 1.951298041038924 +4.256088527572947 4.445788652882172 2.520828422232417 3.472824943580393 0.9707128896851959 +4.646446080074043 1.7199723559815108 4.6566404941561 1.7089178447033988 4.153711265350598 +3.6934564533746603 1.4132407633485182 4.806994420761784 4.695246038853721 2.2829523196730293 +2.9333890287043634 2.0526515217524364 3.10664515812588 3.23244742674026 0.8896767766669086 +4.726302094812923 4.014483248973238 3.183911458610464 2.0433876237447057 1.3444257834441578 +2.59571822812199 4.649631583319914 4.617071694522945 2.1715142523600743 3.193636058410319 +3.2973103884522645 4.3360028270961255 2.6249748953767607 4.640228364857316 2.2671851552860316 +4.137230670491499 2.590584757414955 1.0798129549290958 1.7388471521419264 1.6812018479446 +3.8767261533979664 4.13291724744233 2.119356116816534 1.5007556347107567 0.6695524125332892 +1.5179036449044232 1.2030811682045544 4.512172312797112 1.4589842418861219 3.0693762539298786 +4.8226480088209644 1.369849282835328 2.7374226551138414 1.8366431532166212 3.568364156473697 +4.108961263320245 4.735975009021331 4.975217405959947 3.729606600894843 1.3945223250249683 +2.0118030764151915 3.3761160150678786 1.7464302417737723 1.8742063119934715 1.370283371677523 +4.427525065787214 3.305347857271386 2.8524190661518034 4.931833712001052 2.362889535438492 +2.9481510991726796 1.9194862863648097 1.5452162196352663 3.4087531521337007 2.1285960621721363 +4.627214500949005 4.325401719277197 3.4562186844850595 1.049918703314523 2.4251537177180746 +4.502074435134494 4.442328522127264 3.801390702171268 3.4138599245545653 0.3921092675789156 +1.5125264233897568 1.2703559205867787 4.322713669185758 1.8584541435493867 2.476130360485376 +1.196662613934997 1.2221317560055356 2.681162605508188 2.117992965059942 0.5637452626146106 +3.2096915823343126 1.4090921446788234 4.070286680815361 3.7395892356410765 1.8307154708282942 +1.2911613043119563 4.775503100002545 1.8810993484039806 3.396030651185954 3.7994281939977506 +2.6772617000192973 3.3660890941245043 2.6254506923449488 2.896909937567111 0.7403872639952392 +4.516009638773461 1.4213371827860732 1.3611756423949792 2.5743899810114095 3.323986558527503 +4.358313792487257 3.6985941121032333 4.339740971490465 2.229030614402028 2.211408661511118 +4.099955244087161 1.7232937849938583 2.6371717506720698 1.4600706044568006 2.65218528756209 +1.2809471272197843 1.0731271666421787 4.726199938290275 1.558440154767038 3.174569448306599 +2.907877916400815 2.6537815123788397 2.989029490138458 4.68140411097637 1.7113435773663814 +4.785658088986269 4.31572774073568 2.162395988096858 2.3862476736438016 0.5205229191199245 +4.124078298748044 4.921639271115655 2.2148747859373112 2.0549410626640485 0.8134385658942033 +1.611040394467146 1.0936230810133818 4.6920953061961335 1.8623281531201399 2.8766826062131923 +1.9944326315468164 3.8115959002573945 4.149620750083857 2.1454688472359735 2.705310923875425 +3.4679623419273065 1.820917528864591 1.8386271182722722 2.553540298246381 1.795510365087734 +2.002234793460566 1.7154594809344843 2.3108061258931056 1.237633883395807 1.1108279533488132 +2.7704659746200395 1.4747123700977993 2.0840785971418745 3.701190677576239 2.0722038713213373 +2.6701687237230334 3.2735892673484117 2.9515205773330786 2.1506833083354318 1.0027246301376846 +1.4242971346363338 4.538544855889805 2.0128322232736964 2.0763419972849078 3.114895240730801 +1.8759169355984273 4.956144459455391 2.6187160080715186 3.2197371963969745 3.138316119759472 +4.650727672942041 2.5393788934938435 4.163823020913528 1.441663369020119 3.444988655841095 +4.01341711751704 1.8855749609053705 1.6825113196805694 3.8372035738444814 3.0282686396037852 +1.6005458813924847 4.084691315102395 2.689616247840937 2.668503031836421 2.484235154672732 +2.632046324903117 3.0443182267551103 3.3974959396526456 4.924642239905911 1.581816659235164 +3.8772181167159596 2.7176395958568498 4.660986062149483 3.759316200070946 1.4688876356680687 +1.8903062907469343 4.911792161402572 2.7391529044428 3.4214511593392207 3.097564813721637 +3.8361020401562147 4.559836512728731 2.719142909999277 4.617431135082565 2.031573225921153 +1.6206562913857354 4.88700054387186 1.866275145067334 2.5568307875560703 3.338543375653845 +4.662237269059481 4.608914426960082 4.603797804369469 1.6987973438247406 2.9054898040183588 +4.6344336024058945 3.4201529731248788 1.541752972231898 2.2678790853799584 1.4148274024921237 +2.9034819212055787 4.232068658726287 4.205230693540791 3.812393816533889 1.3854470509739645 +2.898807002235962 1.8972176222431432 1.8242659890507475 2.4119027459806492 1.1612485712410983 +1.4125036114622351 4.638677379379151 2.2859512805616613 4.715373828587838 4.038600140847473 +2.7135197893725995 2.198779061225813 3.1524666520665576 3.466820758817854 0.6031388908406501 +3.8488721006243343 4.723610698846578 4.357320330245058 1.3511714987684948 3.1308303071561894 +2.730410193550119 4.5616648921209375 2.1781009470264623 2.5480483246613854 1.8682491357569675 +2.8428915286879133 1.9304585439576836 1.2631078539459457 3.833059974135505 2.727120798881217 +2.6512425780193314 1.5010199204272179 1.2501015717297155 4.2187016281016785 3.1836454665571488 +3.816711206333565 2.3484267962831415 2.0250850501154156 2.412311855372011 1.5184873089711186 +4.641494353300059 2.4109253815696676 3.243757571417267 1.2866945748388607 2.967411921224087 +2.901499255592862 2.861219816261523 3.9075753312096566 4.694097079990725 0.7875524709747774 +2.0188146739387802 4.587561133429167 1.548856842938687 1.2105385196389276 2.5909298834636108 +4.071514615478409 1.6649587002854238 3.071466652094606 1.855119221517775 2.696481493506159 +3.017474544503012 2.2975565232064996 3.9722362689224635 4.003030806302995 0.7205763394117007 +2.4362026399169308 2.7879968267375803 3.3011008519514307 1.1491566924476984 2.180509760469562 +1.256733552472626 4.7608125014624 2.328459024220052 3.8040628836253467 3.8021015281874155 +4.532513392196906 3.813733420345868 4.123670093201278 1.1687168437603157 3.041117122755367 +4.435782244167112 3.0225060668124546 1.9034919539620754 3.3128103605910857 1.995877732913899 +4.83810963467481 2.7253324787837556 2.031630558329216 3.4455969098223456 2.542268308737275 +2.4940811458082672 2.6383259436740176 4.020383549164977 4.93504603002677 0.9259665305007416 +3.52388189888713 2.759641824177851 2.232436589122756 4.463252948525549 2.3580934080673686 +2.176437867708654 4.734354323632608 2.3070103266600688 1.503066138710881 2.6812800772809693 +2.5618285794095783 1.184692712462704 3.8620933143239085 4.129462236945981 1.4028504328030151 +2.029379549317745 1.1414936683708712 4.5945298653064 4.9364629865659095 0.9514513108925104 +4.866957089412672 3.6847207736907426 1.2389805801252298 3.7039604870003 2.7338267405798766 +3.5189542490307057 4.9607294429923385 1.6595761856818338 4.415862596189511 3.110599698880008 +3.1144483860516625 3.4570947136346937 1.427359869100489 2.595787460099541 1.2176327612272866 +4.071690579782599 3.7743003597511398 2.5637048274417227 1.3642216009195933 1.2357997223168071 +1.4224727926583367 2.213622579676963 2.5046474935643053 4.143227069888804 1.8195771523756255 +1.613924136040028 3.2463721805659107 3.9515009779743457 3.746957769555629 1.6452126130645246 +2.4428597104402727 3.64676802525922 2.3704972133640423 1.9099823509030633 1.2889798947375601 +4.862295329521078 4.728054733080317 4.698733077748206 3.9788972694681424 0.7322459481724591 +1.0905959909236174 3.0139460332617274 1.0743592881219635 4.52494678777877 3.950421430448886 +4.09335391968901 1.0808667863527872 4.403053903375135 2.6451431325239216 3.487883169888435 +4.161422617643261 2.321833831571797 4.196333596324376 3.7759803718808462 1.8870039043785667 +1.699602373322322 1.5531000395498564 1.915809797001292 1.278114673213734 0.6543072708622514 +1.1152563399906605 4.16761843403335 1.4469832441126762 4.3061434177926365 4.1823093204480095 +2.5936654708805205 4.227906102701608 4.488190857589236 1.898449324982248 3.0622709952590057 +4.4225643672857515 2.904631115084712 2.688351519527809 4.00696552567536 2.0106875081290276 +2.286516655029437 1.4421974202421692 4.189626982971894 3.0310035274940215 1.4336259211576925 +4.842800371372837 4.959680178413571 2.136258678645424 4.027704990642589 1.8950540996134007 +2.7496754543893145 4.657047604933206 1.0647767736959608 4.348558014377275 3.7975370646408364 +3.512770544081879 2.773803965010313 4.118888271211802 3.2887357252836162 1.1114067007606983 +2.3762770245312788 1.6298774330992796 4.339321411930664 2.3260443616139765 2.1471834647793178 +2.362616288821115 3.7592663276337492 1.9911200319823803 4.895781418382841 3.222993810195914 +1.2116256179206024 2.7249711438990434 3.4767937044450337 3.0857466821099813 1.5630522878893318 +3.2925647045173405 3.1100928683804936 4.46662905444386 4.842068992033797 0.4174339680963777 +3.5026858998176955 2.4289276615560773 2.9336758516633976 3.947595784562485 1.476817654473559 +3.8912667637725034 3.0669292333500286 3.9541342832800415 4.56678649590822 1.0270711259212904 +4.63777050866042 4.739043099193198 2.066128394182167 4.584780811703171 2.520687631952364 +3.1871122080974614 2.404216406352074 4.513650428414285 3.2252219696417654 1.5076384612251978 +1.0967929703835329 2.7373633880446575 3.283337735177356 1.4394535626150349 2.468072149903773 +2.2047526861104343 2.3545547981645734 2.5631110738146026 2.9795467395803916 0.44255998067796054 +3.5013867461150925 1.6641575131729116 4.4188097164869395 2.7596353538568903 2.4755344513834068 +1.0861505795762154 4.173577317485849 1.398774092664088 1.5293239539493437 3.0901856138816193 +3.8933903687704 3.288374235689343 2.749171036496826 2.807120111626376 0.6077850085323969 +4.432449708171564 4.335771577841571 3.426322700968243 4.507492432353352 1.0854836014180282 +2.371865106636245 4.639124774048684 4.317949490232671 2.517702961154172 2.895056815493324 +2.362791897208911 2.2253129347540117 3.55814686221859 4.014245220354941 0.4763676914027134 +3.5394245196055683 1.003856709219535 3.188180990591119 2.3707994565684025 2.664060189490311 +3.515898976521015 4.668200567447231 2.1970189505506124 3.0000065679731236 1.4044885439849517 +3.634188685690635 4.866454752165531 1.1013104730670538 1.769752216787734 1.4018894476148454 +2.4996671826276065 3.71184117235743 2.531762615695642 4.517334072621061 2.326340429071904 +3.7825080751691007 3.779636109237256 3.0030323630579687 3.9784541115489094 0.975425976493059 +1.8889240251322277 2.814469862185336 3.332144475976113 3.0603384797116955 0.9646313265137264 +4.408273403875041 2.117206461208394 2.0762138523947673 2.8896271086581353 2.4311784922635513 +1.2173434882394139 1.6849912276420307 1.9424172019862436 1.8116006662034003 0.48560001462376595 +1.1526114758122215 2.9789291434199425 4.760599235499071 1.437722173586402 3.791694633221599 +4.510287057051504 2.607172244157979 3.268508782949196 3.6608530311415626 1.9431366395970175 +1.305014447273205 3.086260149561795 4.9052983744960486 3.7081928140557374 2.146135590953816 +4.355101574239064 1.4275360446950551 4.828638796920695 1.763279753907157 4.238757600094533 +2.610161340783281 1.286853779016563 3.6828159780892373 4.17043713618928 1.4102897918001827 +4.741834936931367 2.7604773134565765 3.235709820929977 4.888774505899887 2.580387739235392 +2.897738772059684 1.0631082825927272 3.1303814372116414 3.7959069670498056 1.9516129902591177 +4.767760941537877 3.226731196107293 3.842835832878376 4.523805272110073 1.6847824944097036 +1.6162002834317266 2.7886388895019327 2.023030186368793 2.436180368712678 1.2431031164688766 +4.918813335363024 3.77618035380278 1.2840946333256884 3.232466560692029 2.258708325104966 +4.0673436653475745 3.3493765883215723 4.050413368813247 1.0541939839985575 3.08103997468916 +1.4012586295277782 1.6403732607107955 3.1378942553764824 3.970394911469089 0.8661600021014655 +3.9499369617390374 2.767854654609269 1.791302748907897 4.133975156594287 2.624010783240874 +1.4570268497754473 4.6557703406825635 1.69301952447268 4.067419368234715 3.9836835389721683 +4.524259081428573 4.367895110248348 3.996135157008317 1.9849615816339243 2.017242881203815 +4.536895371853097 4.844681982291474 3.6335757060851206 2.5669459852962544 1.1101493407804557 +1.134711461185376 1.3412755490632162 4.780752593940506 2.749955359995768 2.041275612894644 +2.793609172349162 1.0929170775983712 4.38425850362678 2.049501631349957 2.888501904758189 +1.3595351767008568 2.1818815400969975 4.024768361612122 3.0418660850707804 1.2815422063361823 +2.58743965198671 2.7343661679663787 2.5539232746115386 4.875003016073277 2.325725385191041 +3.0347737446315346 3.5631933248216554 4.412437974564588 2.964900914427947 1.5409707308048823 +4.437671885354451 4.4439235989431225 1.5419627324904153 2.0811241018283653 0.5391976132265128 +2.327099374645099 2.1864349970953034 3.9493912027914297 2.9420305276452483 1.0171342079305177 +1.5686885678050548 4.775252787427588 4.343560360203261 2.379097646474425 3.7604744179683403 +1.9180734493797846 2.0194314432346143 3.356335038392544 1.0947820915540345 2.263823132285785 +2.5533373125734014 4.853173505769568 1.8131261524207956 2.9062629295857088 2.546408162319138 +3.3726944180851253 4.972130799593871 2.0028457738147423 2.6959754836092458 1.7431653774365767 +2.8624658195740325 3.0256567778981394 3.8336811859637976 2.9809758186191173 0.868180702605838 +2.272732014788515 1.7008024511405284 2.019956137333151 1.1463492176952657 1.044170712007271 +3.6922813945582225 2.882858822887896 1.8715740052838177 2.8707712740537326 1.2859082710079526 +3.786558835624608 1.17125422511412 4.846836576822305 3.0736639246858135 3.159740410230273 +1.7241812930367484 1.5262278669109244 1.7103832709934181 3.157643629418354 1.4607354668054122 +2.895302879942435 2.2339596573432936 3.4897233118308058 3.0062973297091498 0.8191920032984362 +4.892332366672219 2.8662377469194142 2.9731033430074936 3.7451074160153146 2.1681904198967232 +2.124061840251891 3.0534083974453443 2.554052743221234 3.9292196772961923 1.6597497160537324 +4.146162462590921 3.2770988939062486 3.8221211255228473 2.5871783707157787 1.5100844658711674 +2.2471303524762356 2.8212984996559576 4.997903894150861 2.0448279368596927 3.0083760853269235 +2.558402540603966 3.0117937021635885 4.531281249187535 3.6478882411156444 0.9929485143201977 +1.427512256129991 1.833107043040052 1.6209090006092524 3.958750780932998 2.372764489155196 +3.8205432185192056 3.8746750488205435 4.368833857606154 4.080229224019375 0.2936373436392785 +1.8750185173589355 3.090526578646166 2.257848310615831 2.769146112553935 1.318667998140919 +3.6715175375381417 2.116133835431947 4.360787055745893 2.498425369613658 2.426439677954281 +4.936727121357933 2.648143592585878 1.6407506210663132 2.5802087441883295 2.473903016140021 +2.5796567139970477 1.2161773499425013 3.6178353242126557 3.4603911713775153 1.372539484847181 +1.2513020542878395 4.265856153436716 3.065905345467107 4.495794432849968 3.3364830613854295 +2.091426895371066 3.311779228003667 2.4172461663319926 3.0818150408158136 1.389572453920458 +3.0309974077807054 1.6658761272528428 4.619866314968905 2.5206782204743567 2.5040261114089213 +1.0757717219017247 4.317949255129464 4.538923561311252 4.750000798197713 3.2490412057864595 +4.867959480604167 2.859545380505849 2.3665812388121545 4.175764682366256 2.7031226257615497 +2.9762302776604583 4.005351660699555 4.823539420983526 3.1025560065524598 2.0052118924879516 +1.0552236160346395 4.852766668321015 4.463467208824374 3.1890542102311024 4.005678684686531 +3.664470328897252 4.630331577580819 1.3816438119552439 4.585425442998111 3.346207508675496 +3.878055562286418 1.46566873037481 2.447000509150425 3.7423184602378643 2.738148794567214 +2.36331420372529 4.772626562595416 3.069544375074156 1.3343322627238856 2.969132384628786 +4.793155438496167 1.4056678679099104 3.207709475905186 3.6858026555984673 3.421059065457013 +1.5110831158725295 3.226507678507433 1.4495688618418483 2.242854651339829 1.8899692521071831 +4.873013366724683 1.0507014870493552 2.8347983206710303 1.3420514740531644 4.103457231846668 +3.2133763329584206 2.9522417480983 3.991735309609649 1.2013094362459809 2.8026180307254602 +2.1979049132928217 3.4524749393514864 1.7633935776719607 1.6377061013702892 1.2608502258333152 +3.7819866166574996 2.350196180620011 4.128625241372055 1.3546047564716082 3.1217324522411802 +2.3368225291460996 2.839588259134844 4.401950450743062 4.3838964232277196 0.5030897804176105 +4.288592208084383 4.849553572878198 2.1045352543791314 3.4020321992157183 1.4135685249225158 +1.6685475141740613 2.1225440442498003 3.4809247764439926 4.82352109237347 1.417278277850972 +3.4244264782787974 2.1853325498386913 2.379440306858266 3.6604078612703073 1.7821985408347467 +3.9926339014588024 4.910734346734333 2.2135785298114423 2.82012482705678 1.1003666835728705 +2.0683892440242304 1.5696279672803986 1.9011005766509332 2.348215800600876 0.6698319450929051 +1.0305686196173212 4.941023014822791 4.940317865000312 4.563686931592852 3.9285499152971384 +4.658641760803977 3.087547807425386 4.142232481842223 2.4178856132032216 2.332746950212967 +1.8038092566670927 4.216799548719484 1.305886866168101 2.8443051190320534 2.8616870671483388 +3.371448004836847 3.8729971469256164 1.7212047267417447 1.6837816874931923 0.5029433624142775 +3.170393471305223 1.9601056161027466 2.777531225256771 2.70303595179585 1.2125783431261785 +4.2081877413397955 3.982639893893395 1.6404289076902425 2.3711263874951034 0.7647160508848234 +1.6462464364647977 1.1076465939820292 2.5002512767804994 3.064488406312384 0.7800341842924858 +1.4192681517471057 1.6156139618592964 4.040958325598746 3.996802450213457 0.2012496421851567 +1.468736766622301 4.9913538895312275 2.7138050474005833 2.086727502865241 3.5779963165816193 +1.1525084526719152 3.8642985647267465 1.94620051828148 1.2092162190061821 2.8101515028938664 +2.3990309600147417 1.676881928440379 4.818748217919971 4.683258219668186 0.7347494562298488 +4.840270345897278 4.348481116078471 2.278654169877385 3.5009350134266146 1.3175079153740186 +2.1424482331184143 4.930703618137195 1.5405048372532626 3.6209454182165772 3.478879288363596 +1.5476820565620586 1.8028081973102625 1.4753808032776266 4.140179306520688 2.676983453549822 +1.5712466261974285 2.07035287552999 1.5913345634218037 1.0443037475731503 0.7405064223967679 +2.401345840827803 3.189134014865509 4.40888588911218 2.638595882638223 1.9376627452101218 +4.655091220578004 1.2001531708934707 2.9592444358193473 4.767995419494765 3.899766281215422 +2.8185442119689865 3.62315551572511 4.654988529260444 2.9723968385211315 1.8650775179270986 +3.1350560443066415 4.819936582396132 4.144132927962679 4.9733598808070845 1.8778817233671428 +1.2492637121103836 1.7663583268279806 1.3887110869578794 3.758024049041979 2.4250836589424436 +3.286016593675253 1.8258106316993241 3.7976235745227522 2.8701607562812006 1.7298522279693747 +4.157499744475695 4.157874521592402 1.0792281886650117 1.2450226357320537 0.16579487065694587 +3.0432784403773243 1.8778303824087406 1.5879860472165221 4.071674003513348 2.743533313097664 +1.1825944326643207 4.120536371997863 4.937596986677008 4.030471315352129 3.0747975254431874 +2.8784005850739187 3.619997053116017 2.075109248126818 2.9462355811317074 1.1440395139448025 +4.669015474713044 1.4723400816387722 2.8336600402613654 4.5408053930544945 3.623958998698761 +1.0867131730208883 2.276222775110521 3.7397096434554413 3.4609182681951207 1.221743722874391 +1.7227174915230536 3.9594298574409517 3.4384761173323044 4.283858239138975 2.3911405520630504 +3.9633221020242515 2.5506277370824484 3.3683412813826847 2.3584827348976356 1.7365251661427832 +4.6339370925615935 4.976574291138492 3.13855280561456 2.516500320607056 0.7101757134348062 +2.4877498379694956 4.836500571177972 4.478764136206403 4.298396991267419 2.35566600215752 +3.2933719476789256 1.2623875408451757 1.0451672761789697 4.154673734850302 3.7140177809645136 +3.9033034098357713 1.7200668216281851 2.448231295759562 1.1323742022711185 2.5491178651784927 +4.962628549344996 3.106326530796571 1.681528772276908 1.1918429579995293 1.9198045162910353 +4.221855024549383 3.8600319974730115 4.501827187811438 3.732063455674393 0.8505598781016306 +3.5563020074019636 4.352865325854275 3.4876587047549363 1.3445611467327478 2.286346488068776 +1.5963070876768795 2.761932520054274 1.8766051509870718 1.661845167188352 1.185244489228368 +3.8513174400232413 4.106262265988237 3.471995142081841 2.445751369474176 1.0574370643694757 +2.2241093814680073 1.2313732716598498 4.642996331924253 1.2757331979629547 3.5105535171895466 +4.728452021240832 4.720443618595047 3.7146884829511437 4.9221322284801285 1.2074703032083236 +1.941513213394185 3.200319793517878 1.1037704659717935 3.8928237055837225 3.059969277550431 +4.174918903958421 2.192097289503789 3.548830252190895 2.877099124896953 2.0935148105814925 +2.0013012141600877 4.7261850084044745 4.085275424688451 1.053546115730192 4.076318718517016 +2.0600519847215675 1.8303199657648719 2.6778400782010596 3.3261092092424898 0.6877715222333144 +1.1101064182677107 2.40018168320448 2.4831685745729595 2.8666330182930886 1.3458600108478087 +4.270708171531469 2.853102285562164 3.0026445072099346 2.625543244760018 1.4669055218643563 +1.6063334728115888 2.092461568087975 2.0725269455163016 1.7794781877905756 0.567624963705472 +4.878193480908731 4.537474081070842 4.3433222201292345 1.5362223734127314 2.827702116359095 +1.5985136552297594 3.9888738712098926 1.7167626326072911 4.571140713829649 3.723076173368364 +2.784061505904315 4.128622381731855 2.2114047060423982 4.697984094921281 2.8268217145768855 +3.1601353870598166 4.40593921564107 4.982935197754307 2.5641910465997646 2.720726088391115 +4.182979058275919 2.274861569099713 4.192854256569451 4.916025756146297 2.0405610430223184 +4.902370830222501 4.906040567375088 3.093554688864626 2.607378574252516 0.48618996430417666 +3.941209306436898 3.146959699875337 3.1532638221758216 2.9975180651852154 0.8093757955015526 +2.6796968901407197 4.361675068350148 2.6465784771709027 1.1221474134594733 2.270008955925299 +4.645616439072963 2.634128448488998 2.6159779400015135 3.5984844797646796 2.2386163219589257 +1.2492984808091534 1.9818328585831977 2.4733798235516797 3.322246859917581 1.1212412140344443 +4.7571683685767585 3.5270110638556695 3.4129607837057305 4.274144550591901 1.5016405943856563 +3.3837604043651046 2.587039573209593 1.999012688641995 4.448648302995027 2.5759422986363427 +1.1562742447844805 3.0747259622804934 1.7604677124537678 2.8630591191590646 2.2127279097312815 +1.8170388753285804 2.1308941184224284 1.4455894782203642 3.610380725267271 2.1874245717071936 +4.371934471946065 2.644592447873367 4.161398784793207 1.4231983186897996 3.2375071058912717 +3.1235126234713726 1.7236065728163044 1.800897100844908 3.985329927957937 2.594510305785986 +4.048822011563878 1.6415906664939648 2.980125971741273 4.8827573033111715 3.0683495127769507 +3.995605028271704 4.610188487950465 4.317126618406997 1.5154414324258516 2.8683013632212564 +3.440238169908024 1.2278628274131989 1.4652388434912673 1.3542710681434817 2.2151565414761847 +1.6292237154492923 2.649658888561875 4.644293877777397 3.528854563629738 1.5117846427555433 +3.142565554317728 2.3576382643980343 1.0230870451476544 4.240826970369939 3.312093156423924 +3.0265055030436345 3.1870679095559415 1.3820891205674575 4.807367122657674 3.429039177085641 +3.406163395718012 3.5925350360982047 1.0502518090349087 2.6081330720926577 1.5689896169587647 +3.601780427524017 1.8643584598043859 1.026508232139928 2.742983834336784 2.4423193048518073 +3.836950316714505 3.4117540639845716 3.094066523352445 4.940343752751142 1.894605885436785 +1.4831832330703194 3.6555961150319756 1.0484293378309877 1.009977039109414 2.17275316338279 +1.9600988674072508 4.400425072106428 4.699883772651839 2.8410199136696614 3.0676647195499713 +2.7345986127942234 3.2267287226760732 1.7318277656276293 3.770154828421744 2.0968951475863555 +2.7068976069021584 3.481009761647013 4.991921670458633 3.336527950902443 1.82745122913576 +2.117225967448642 3.4022218656612204 4.904013099902626 4.459038533945659 1.3598591187221352 +4.081815986614673 3.711639208480431 2.1934642140740865 2.8108233345572384 0.7198354886455507 +1.723300366359823 4.670680752154929 2.557896780981996 2.1690146917326305 2.9729245563768787 +2.226253989745649 4.664637947546858 4.9570430883967695 4.883226758952125 2.4395010096646748 +3.8704729591674525 4.341841943514827 2.397123907071549 2.3016149709626292 0.48094768559723095 +2.7743170352970115 4.792600805312912 1.0364462505106555 3.2040774696905205 2.9617721854782797 +3.030465979251084 2.5294486601767363 1.433830209360365 3.0111841582995904 1.6550117323592046 +1.7783305008099464 4.855083265361116 2.7271828902752366 3.827947583798782 3.267734763514513 +1.9474119624969597 3.166354710262576 4.048395219820459 2.0880871892009307 2.3083823334191855 +1.245666700931603 3.018877190381307 4.094996395480171 2.2679530327659467 2.546048485228151 +4.390797892804107 2.4717968006009916 4.49912728258542 3.7953014982028246 2.0439999820544337 +4.519115051480197 1.0783142586379402 4.304294694395362 4.813646022726985 3.4782968349031247 +2.507802261938281 2.247436045580435 3.9796182825678237 3.8767059974331897 0.2799669713593605 +2.6706774040786803 4.22107329156306 2.64689032261777 4.832081566244064 2.679326068090539 +3.636971875386671 4.7913496497254044 2.4908684353986903 4.390668124081458 2.22302202036021 +1.581857896228359 3.428194064793793 3.028394610893739 4.336443897107953 2.262730691557968 +2.154879960571257 3.4507353983829763 3.062461548326729 2.0373411597566737 1.652305397548596 +1.939430327344283 2.2326001834716167 1.4693553337507756 1.6051010684669453 0.32307192548309466 +4.9493542617117425 2.0012235370047167 4.497671692795934 2.421510024051242 3.605817805259483 +1.3714514826786792 1.4980051848269023 2.4811683555520188 1.054601537918268 1.432169237451045 +1.9009386105935437 3.2674825410308834 3.6996907498657685 4.917823481125805 1.8306527974419862 +3.9717289725284224 3.4416220640213684 4.2433264779905615 1.1375452447826881 3.1506968122929764 +2.73945214828905 2.1453062282684656 4.466288249737566 1.3964702509875808 3.126786196676465 +2.0060801228150638 4.227733465188456 1.663117653720625 2.0810806992356685 2.260627497199633 +4.981035811954024 1.3640259646237434 1.3901672182081244 2.522132494855738 3.790000741849549 +3.0370459027999743 3.5046344740660813 3.922808460455764 1.090821812067119 2.8703288049682096 +3.800891075306795 1.718050033462518 4.425223269910015 2.297371170273146 2.977579782897511 +4.403870156591565 2.8501755088849317 4.068138510327867 3.1649734920354913 1.7971294078555689 +2.038583386534922 1.729823766237879 2.7232853343334167 4.707113169821483 2.007711479267686 +3.293228970030208 1.2380608429192952 2.0327631085350863 1.0068781223340455 2.2969884709343424 +1.2837077542387192 4.363084895204494 1.0717612583143663 1.9260287362390334 3.195674654926925 +4.112390985384593 2.8195870414956334 3.8416855515773007 1.3714171489107518 2.7881119092582334 +2.4471911371724495 4.867423103269857 2.7325270914712796 3.5466373613705535 2.5534874781904047 +4.666601979787846 4.831002084414035 2.350747886937638 4.138284605940937 1.795080754781294 +1.8092888817227046 1.941535904268568 1.0931344589241414 1.1576067341452392 0.14712562402393092 +4.9614238399431905 3.129873475339147 4.330864985539437 2.677121782986949 2.467679743822071 +2.671110141082011 2.262100225350124 1.5024171765679037 3.5432570016426417 2.081421702293433 +4.659404513264498 4.018348486934803 1.7665096008261112 3.3234625008114618 1.6837622046080056 +3.610070086007395 3.4627602377657847 4.725080110319851 2.0540258612778675 2.6751132672681734 +4.134513529617268 2.192562917048767 2.796954533082058 1.8934117163888589 2.1418594265854747 +3.4569133633833107 3.1734814597793335 1.8712608256743186 3.719288037259336 1.8696358519078708 +3.8507319502566766 3.139506296434992 3.7026756141321018 4.972347331812005 1.4553034739635295 +4.080967562977361 4.309298455836657 3.4358884137509667 2.440117045377216 1.0216142200982008 +3.795825910242216 1.2878128585971833 1.1166763088183336 4.3399420737635666 4.084063131085244 +4.587632998735218 1.791311763454222 2.9942715537028697 2.2724218549093496 2.8879888224388495 +4.044465326728448 1.3202052312749215 2.4463890818953704 3.71362397935804 3.0045760687703815 +1.827339906027213 2.5052402148649566 1.603450389787708 3.1490004088592256 1.6876829353211689 +2.6005829376365535 4.728033872117465 3.916875201428132 2.8821677727523713 2.3657275712939794 +4.44422113993304 2.06153051214569 3.3353602833973515 1.6997487470545418 2.890058775451351 +3.7930444904388247 1.3359288471937454 4.049737634357406 1.8997998536217668 3.2649119046789252 +2.88084900355118 2.93572234105135 1.6864080643116668 2.6448448120203825 0.9600062929621179 +1.8014450948279048 2.572224062462802 2.305971943923449 2.64043698565895 0.8402184722388861 +4.98902355174614 1.8698175153929242 4.868509035476872 2.3809424158171293 3.9896658988526514 +2.7686736014870803 1.5795976939473904 1.6956577504595072 4.456545504708467 3.006060994965538 +2.0108415357058123 4.304857900988607 3.894002798411164 4.631158817406144 2.409545617025296 +2.548051016314881 3.611578435005959 4.866245788129573 4.904828957576573 1.064227058137634 +1.0030134673428623 2.3881108926258743 3.6345456289882385 3.288641083127632 1.4276360994219293 +1.54294839086554 4.946867478155998 1.5756679562806317 2.641013727428706 3.5667389538517376 +1.9466874685096731 1.325905408465636 4.020833283671983 1.5913162118088016 2.5075732429078053 +3.0716649318088436 3.5319452671739286 1.0471450463600336 2.8510077719161435 1.8616602052400737 +1.7912526232327082 2.6575150637368257 3.1634728940849386 4.458666189933014 1.558183650741449 +3.136998472422444 2.774818289081506 2.561958415441489 2.573655921133157 0.3623690340582126 +2.6447445425407823 3.344255525629841 1.1724169654269199 3.197544030191323 2.1425347707571767 +1.1177618657068948 4.086376656552583 1.1326100316812702 4.267606303294585 4.317508008036253 +1.3911934656634397 2.7896481500122188 4.688715574293601 2.417514962723353 2.667213475178564 +2.464920975135909 4.50474418298055 3.280311990846088 4.0150060753447665 2.1680991944694212 +3.77898437566294 3.8325385172345614 2.9670109360591885 4.092270333714412 1.1265330701274903 +4.415464677642179 1.1048372155232764 4.27981998934677 4.7931091896519025 3.350182084019573 +3.596305287820468 4.3515187525718755 2.4065188511598157 3.59343879911417 1.4068142522002656 +1.3460811567238982 2.5704375879361274 2.9388890922274866 1.3144804392220455 2.0341465391189733 +1.568865265181366 3.486910880403382 2.573192393940318 2.5339356147241685 1.918447308837756 +4.880193808898634 2.866119218367745 3.893879313804147 4.796398530410773 2.2070426802774805 +1.6563404544755729 3.0729197977222693 3.1454323735067446 3.3993679886175925 1.4391595923784708 +3.0670622401314387 3.095338974728613 4.914897025269039 2.5398061589214826 2.3752591852526463 +3.3047966509755557 2.762553467966656 1.3449263441239676 2.9181363569809045 1.6640364821941094 +4.825911340621403 4.744103533195192 2.4074469264429568 3.4590805072653925 1.0548107440054366 +1.5536194490599113 4.751477058417459 4.912948185284174 2.398953523422904 4.067734314036861 +2.9867013412950993 1.0114178944579044 2.729529180291263 1.1376616414528038 2.536885286440174 +3.646368722274014 2.2938557608553487 1.1742455098722653 3.0747460063725027 2.3326365872126624 +3.6551039684608853 3.0143921155120132 3.9776786266132804 1.1361307830696412 2.912886167644847 +2.003430071317248 1.7552758484435662 2.368980270597333 1.7841344470330447 0.635315005072784 +1.4004298630037986 3.2576224572891967 2.264495481935045 2.168982831525511 1.8596470091543669 +1.5421232343843605 4.511635747848798 1.6528562999501144 3.141387762545475 3.3217059597077774 +3.8831368243217534 2.3507959870287922 1.3695962755247835 2.5852028192497194 1.95595698081082 +4.714782398312666 3.0453718463031443 1.9092800599586774 1.7090884125068069 1.6813709545695827 +2.6607933800992387 3.532864672149837 3.9482489242108447 4.52851443450835 1.0474809787579076 +1.8259984484270353 2.5993130248577447 3.7029963911371055 4.281650828802997 0.9658449111273695 +3.11230480733489 1.6180059277383814 3.1597547522093095 1.9339399461603795 1.9327573775029696 +3.6553889537915967 2.306545944133432 4.168864944168817 4.7253994686173595 1.459146374291099 +2.0742397054319617 1.56386864198307 1.608064951468557 3.8880997720713597 2.336458303836644 +2.6762426194016156 2.142821485899677 3.8231661486110817 3.9562313121496318 0.5497676267424575 +2.075266936499628 4.34962148211142 2.019395492508861 2.997496652651972 2.475756546718259 +4.678234750649877 3.7341361156657724 2.868196427592232 4.110070589287195 1.559991559613198 +3.654824549269145 4.371126334199849 1.1845771596805577 2.6354816901078286 1.6180890592020245 +2.0659273019832503 4.510943154772729 4.496254168255343 3.9437216418541383 2.5066700447253045 +2.9749470178704045 3.259580577353411 1.1086667547964058 1.4446550920406178 0.4403458026915853 +4.000544417372995 1.3812927442741585 4.011168568438583 2.743126941980867 2.9100530739937693 +4.051739731428999 3.8903045835507886 3.1336958136227366 4.696359706929238 1.5709805060580135 +4.454089435920309 3.359517027085889 1.2304280746972176 3.0293027395248644 2.1057157495588914 +2.4019041536894155 1.343580269917989 4.46820505979828 2.9897627116377006 1.8181972444692585 +3.8905509577671897 2.9357250806089867 4.5519954793603965 4.179475545727286 1.0249212441182731 +4.704704863175614 3.3159912345491507 4.727800242343182 1.7886809233506353 3.2506842223765893 +1.7588148248091828 4.5207629910643 1.9387918266232393 3.6059109732202073 3.2260880214324916 +1.027361568428327 3.772554494601209 2.9270690582529184 4.689919446098864 3.2624723281337165 +1.1650299479869015 2.943900179129815 3.2977473964629853 4.893871786912801 2.3899774829556946 +1.5773293273895503 2.055745746262054 2.924656960275862 4.978926395597427 2.109242798433403 +1.580557867181411 2.575674144261595 4.685542632849238 2.449048476040878 2.4478894007589194 +4.527378017751586 1.6038957157106712 3.076843451864922 1.0312415776901864 3.56808573299096 +1.1843524057482955 4.533582983033742 3.621913605196085 4.136941645300018 3.388598433263686 +1.3189297636408246 3.4970872609904124 1.7761424102269991 2.6645588348095606 2.352371957562894 +1.7845910303840862 4.260294081922465 4.371750848475879 4.097091969075464 2.4908920288583234 +2.6701734991514505 3.984190096036565 4.480473488369437 4.000855611472376 1.398811254147171 +2.7305049946646798 4.372665029546583 3.3434604800484182 4.07346708042277 1.7971085712202957 +2.445841329030947 4.527484371131213 1.1264264769836339 3.3220004984413514 3.025521944793074 +2.1723042274075706 3.8252061008739284 3.818511750626613 1.9436276868207054 2.4994549117801563 +3.0656618639108655 1.2409501234046085 1.6223584770976647 2.1920488902486706 1.9115752935151515 +3.0645900388259424 3.7090630135398523 3.4011239875577597 1.694206914460676 1.8245304353632774 +1.9923052145060036 3.5904103206476288 4.1827972263034585 1.5629457497778252 3.0688046026636293 +2.5903358775329486 2.0002000672597906 2.851627149937435 2.1173509113896065 0.9420307155622392 +4.612993214869832 3.2137940424685003 2.8128589033604467 3.9299944614027846 1.7904608845465282 +1.7396845748086394 3.5620460863469905 3.070331016958389 1.0616641116121008 2.7121475283195378 +2.093477598495421 2.455953624283239 4.8605838033796385 3.5364120970822444 1.372887314031812 +2.667708517409733 4.363086828486061 3.7879647174743676 3.168358481021138 1.8050538789520267 +2.5182490617896867 2.530067313529401 4.551407024143208 2.8239522537559725 1.727495196753901 +3.4371993768917504 3.1562120503065985 4.43522071575226 1.3866033094660315 3.0615391501029094 +2.471687028969181 4.238026629698419 1.1182204863698009 4.045556365342028 3.4189546550696495 +2.7984952415601447 3.7154455825499832 2.4580819008874712 4.8073814878297245 2.5219053267417517 +1.446945815705862 4.449075055977573 3.8050374938192286 3.356394237391241 3.035467138157274 +2.6865731502135937 2.270784397553271 1.95430797899265 1.155167116997717 0.9008365024513781 +3.7917730653191186 1.8318383791549406 3.3157552467139575 4.8480409826384525 2.4878190349274094 +3.9078098738513978 4.203735318771 4.636440952733851 2.431362486168811 2.2248467166660477 +2.551115529376618 1.242562953244612 4.945447715258932 1.5265485079244492 3.660762438948212 +4.574232416812916 4.727337013915835 2.2907481494247053 3.7386168415223544 1.4559411963436588 +3.1363340923856686 4.575358335464852 3.6337379488067647 2.949113991010459 1.593581104229808 +1.336750098542828 3.317105743863591 3.5864589585609505 4.905375547291332 2.3793590418392094 +3.3772971433615964 2.667612560886903 4.649733424673108 3.7086976320675005 1.1786435294723945 +4.2921927223409275 3.4352718744017716 3.8736730229449092 2.641475144354929 1.5008747288279622 +3.094764905389485 3.668130081039784 3.115327438344976 4.889175335289853 1.864211357691037 +1.2864686848330722 1.3723411592090953 3.3469197217968585 2.686106137228255 0.6663697737786938 +2.0559992323166654 1.2881707220605056 2.94287070288884 2.508013382697994 0.8824179905723578 +3.4109955319696597 1.228308671991405 3.3267716833022685 2.3354583012540666 2.3972534597221 +1.131350547168163 1.5296184949103537 1.3441716782394733 1.69144659909787 0.5284100953388211 +3.4939195258543676 2.2811484882111963 1.0460504207389323 2.296282565271649 1.7418076831180216 +2.0842872665290977 2.3801855496780875 3.707417328379042 3.7007104269204842 0.29597428350735905 +1.5225212557895804 2.0627693046006095 4.314789510386256 3.6515809507279076 0.8554025647893658 +4.274120392334426 3.8930295479670245 3.986334283385888 4.058177963584024 0.3878037468167001 +1.8195082139179255 1.7977253887381979 4.488480338468573 1.2046651234395807 3.2838874612155515 +3.207960835200207 2.025482516064943 2.1719573338727516 3.744648310933992 1.967641198123987 +1.1296878796296421 1.439775892992487 2.30039567151695 2.4532226522233525 0.3457031415291898 +1.8649644734060296 1.3724854385590555 1.3054512153481124 1.8969463653517646 0.769676628358722 +1.6561922194557006 3.545012438246375 1.8312323595901439 1.2198823183302339 1.9852936034402933 +2.8153191482649618 1.3015999792090938 4.531971496472758 1.1263651088903015 3.7268620298999022 +2.6786193378731324 3.4809978297087167 2.8385698522381864 2.8151273587070507 0.8027208697070883 +2.4127027214154184 3.75188515719836 3.023378416328177 2.5632223940898355 1.4160343078865514 +4.143782583939775 2.71670290847819 2.396835374925336 2.70188023001757 1.4593179104409646 +4.224153544352145 3.189399808198562 1.4941601378436147 1.5676862965313592 1.037362709227189 +3.149549341591583 3.208940125477722 1.4053398298800914 4.186229086280387 2.7815233814536233 +2.1137975439439507 4.014177177809944 4.823539619011063 4.895026087603689 1.9017237096919442 +1.9921164479858828 2.8046008004852885 1.0352023207158831 3.5820280280941788 2.6732848719916356 +2.634904372418754 4.613818619578088 1.872146806883463 4.831611410216913 3.560130943658366 +3.5406943515782228 2.6880125906394507 4.237057366098819 2.8942640567702473 1.5906476847546165 +4.949270964191715 1.0776426998951392 1.8919019842165894 4.6167653270886 4.734383344663563 +2.1800686836766268 4.0928280188941315 1.4128373178623703 1.8847595977027045 1.9701164718542428 +1.4780380612006847 3.9791917155037453 2.551099247873188 1.9797555790541592 2.5655804782413556 +2.6603527428205505 1.658120772704788 3.751353988593962 4.394507763079229 1.1908466314168118 +3.460623060723401 1.2972675969972451 4.258142504266982 2.9087370141142537 2.5497062652956983 +4.562828443587666 3.2401901359615906 1.0718595501916712 4.482713048191291 3.6583184221191316 +3.6185478901219845 2.481700179749543 3.164881911270402 3.950527917224964 1.3819053380211754 +2.2685025883744854 4.197840118677146 1.5592513276139655 2.7383519864280563 2.2611107158762023 +3.8949263806560515 3.914435153887655 2.6654337525741063 4.714105902291612 2.0487650351519444 +2.750244349622007 4.75640640624586 2.263029248991792 3.500912778941718 2.357337869538123 +4.548307532729947 4.727510979614136 3.798944686019913 1.0663654436431358 2.738449048502385 +3.898419073774205 4.8272006523834055 1.3068564864896097 4.076473223422119 2.921200453625269 +1.2629317905993158 1.560830892241532 1.2318611034595506 4.177805052173241 2.9609676836672927 +4.8806238264434825 2.340501737012825 1.0036380792518584 1.6269067446109946 2.6154701409941823 +3.974228318840887 1.182006985122154 3.1001385758464886 2.6592662314173054 2.8268124098631846 +4.872104347481571 2.750605482048902 2.7566287462737358 3.7960824136809737 2.3624608700925522 +1.2549291445081527 4.134159436420891 3.4930524541182204 1.7452247816403612 3.3682144597022448 +2.0345089939335574 1.2777257214138515 4.628902730001087 2.134085478233699 2.607073846534045 +4.942873507218172 4.217642178224779 3.037357134813077 1.8653448839682207 1.3782500486791027 +2.6969275391298786 1.3187945449865794 1.2482252959453382 1.7252302132269168 1.4583498347986261 +1.8501139843399916 3.383180607860391 4.7565090752054875 1.5547620025243787 3.5498559956108484 +4.115507115141172 3.1550735291930163 2.680401945904461 3.740718084723036 1.4306302762266587 +3.8030201212111208 4.838631346385854 1.798551727347983 1.1648379426772868 1.2141185158746113 +4.625430789846162 3.987134202647703 2.6339813540138146 3.168802809205122 0.8327403689999352 +1.4926057145903529 4.652243398686662 3.0684506217602237 1.9359432444240219 3.356468866902002 +2.0616894481657146 1.2584620154210366 3.2994213834779993 2.7107979361642682 0.995817187761442 +3.42267596435717 1.687532674115726 4.986452508045348 4.349959279597494 1.8482007108346963 +3.2042481646001475 4.742135255166868 1.7403512871111118 2.9836744513635187 1.9776119928080915 +4.998855776917408 3.9311703552416044 3.75719333457259 4.240263276691596 1.1718825575278 +2.305778281554459 4.86801913265759 3.51922545869755 1.899789596074784 3.0311137709116824 +2.1099320423058106 4.293893438704073 3.431003550875921 1.2804561839107662 3.0650516078067276 +4.951214402029171 2.9949175210351533 3.6624535376201885 1.7229672111448102 2.7547603701904597 +4.030872403565133 4.405671212333687 2.39496146363959 4.418924085191797 2.058372862358715 +4.6061364143286685 1.6899126265562483 4.826603180278738 2.017444764605777 4.049164381044062 +4.169873213466528 1.3393212036192912 2.8881421460177092 1.993506891432184 2.9685681597695446 +4.608371904602729 2.356874687759321 4.263211609372077 2.524010321487182 2.8450062982766995 +1.4266009143779157 1.131034878620064 2.264587562005089 4.284325464652227 2.0412497340803433 +4.907540813622385 2.2350211881234263 4.758989723698831 2.671132460041706 3.3913874892266307 +2.4174886911743125 4.2478809429021 4.122467960109697 4.264150858282514 1.8358675983904091 +3.4061714368685414 1.7220605455250486 4.19969970545613 3.2470675963080544 1.9348740087462244 +2.475228824707551 4.281010221017425 1.3013959200743836 2.0176635641253484 1.9426491678049225 +2.1728318177897976 2.9916063876712147 3.486594899203181 3.2430802112864234 0.854219643602098 +2.8718848317689227 2.5031606503725605 1.4555881775320358 3.869364293245187 2.441776537427961 +2.0335033539155236 1.4391908750948748 1.0051030748786993 2.6921553203403925 1.7886734194366745 +4.884061001357285 4.026139086844497 3.842682039064227 2.713483027695376 1.4181397740271158 +1.126049021742745 2.004584895205908 2.8564660244178013 3.3005588184547436 0.9844001679587528 +2.7888712697240168 3.2450070296172915 2.7737152266214467 2.074309799978559 0.835001666028838 +4.648624275916193 3.8782121232322337 1.7390617823933976 2.6425556315840444 1.187365158882668 +4.5160847678133615 1.9392975540428457 2.0103512826133687 2.468654878060262 2.617226495863659 +1.0078111881408773 1.6604200255970496 3.9694234963702444 2.5029987590650693 1.6050856067220989 +2.15105708645225 4.303128342276352 3.1471780821564526 4.631632049659939 2.6143860219526056 +4.92326286259952 2.2718582661810003 1.6781242013896764 1.2073437517145384 2.6928758912555883 +2.4132162925301515 4.818702196895841 2.2076887412327495 4.970938481681202 3.663592712651129 +2.478572512752906 3.3622497003934626 1.2780309898917674 2.3943947899072358 1.4237814108708189 +2.9292685209018625 2.997730778522138 3.2246464239306607 4.072801703341355 0.8509138961791011 +1.6521988395297464 4.490313275361936 1.5831745064043874 1.999343791394077 2.8684648201865572 +2.9802490044082224 2.223386824344753 2.5118418570503187 2.0259881416704535 0.8993854526057482 +3.091740096097095 4.483556017814076 3.7405880070757593 1.9102088053330752 2.2994433200488054 +1.4319620215439417 3.467203355534042 1.293731666064203 1.6362273385211195 2.063858176627822 +4.791714204493427 1.3220874344185511 3.323255887970212 3.970183386408514 3.5294227731820196 +3.051287169911985 1.9476309764974342 1.7163796981277302 4.323632874751938 2.8312234317127496 +1.9054235991218014 2.1439636256427885 1.4787574592098944 3.7631478298312135 2.296810986920787 +4.250237750955684 3.650762292157895 1.5469386786631283 1.939896048020707 0.7167888948869449 +3.7241171444053696 2.9565820302740713 4.922828611628838 4.236996314780706 1.0293085498646797 +3.6504637071770305 1.0923498298550012 1.383426323964657 4.377717092769047 3.9382386694428173 +1.8380811219846143 4.06993821986333 1.559725944117845 1.4456683790213911 2.234769615308776 +4.610614277782564 2.3952669791986243 2.193686210835569 2.9901734632257884 2.3541783272647976 +1.3439330990283054 3.9097691590543078 2.2868886804337216 3.962516244746963 3.06451340692386 +2.014658720148889 4.872376899451871 1.1862807503785433 4.3757085970506395 4.282406237321041 +4.03554248428567 4.786531581184599 3.355352453310859 1.3498692330529143 2.1414825636453934 +1.8271230267918352 3.4917215179348795 1.776012580165986 1.6110281473392147 1.672754614338538 +3.760118756590172 1.3103709548538633 4.745731920922945 3.2809284940150314 2.8542798341425892 +1.9585279713764927 4.223852928852919 1.8366187347332121 4.744457042458967 3.686084750360869 +1.758209679809032 1.0636006608377366 3.81434921685998 1.586812958900135 2.3333236958814814 +2.5218390779205957 1.0834424161510783 3.054326624879902 3.6731439083575843 1.5658607175992345 +4.308429367460219 3.309172186646258 1.252482284048516 2.5122396221751973 1.6079500814304801 +2.9059421120728555 4.027408376103416 3.4882860727045264 2.03696645427415 1.8341251909833083 +3.307196188558383 2.0207967185857685 4.265939625399717 4.011131090477292 1.3113927656560929 +2.4949842458169624 2.7750355231790045 4.256198176413946 3.9567650001277865 0.4099865180867899 +3.476280874594583 1.6453218194114614 2.3968976415332324 2.451587626013892 1.8317756566128844 +3.5193836734465465 3.7367569487010925 3.1526496471179755 4.01457145463327 0.8889096371765359 +2.6774574463771303 4.939892224847612 2.8387773006012504 3.289451960139025 2.30688508070564 +4.885771992393081 2.094365632790812 1.5164337685387266 3.9598991714069913 3.7097806726870206 +2.999265966060271 3.7987172189868317 4.3990770332511575 1.320145114959673 3.181028774355857 +2.9540235227026366 4.503007602377983 1.3843485443275099 3.5567345201443943 2.6680728076672793 +2.0755694966615215 4.242157143891545 4.4387221994917425 1.4002332912167343 3.7318248724772682 +1.0525181011929825 4.9969879824728025 1.5158018956098016 2.021670597673934 3.9767758030912033 +3.7317584753335438 4.5252397575832966 4.770451470608536 1.7771907683287234 3.09664692483553 +1.187463008874297 2.5409697149188593 4.6059319186507235 3.200051570449648 1.9515327198808576 +1.1692068682340264 4.499724578153689 1.9470088494323439 3.5144633383005277 3.6809321904595764 +3.474029876468813 4.104200435558248 2.049935508047615 4.232117512946132 2.2713505313020277 +2.8748829244469256 1.6562749972739264 3.05742515108383 2.9219236047598867 1.2261182443896077 +4.543046162165295 4.493406890729265 4.28107687001189 3.570852246207719 0.7119572132695025 +3.427473969777056 4.292997225167155 1.395760321760346 2.1323164270485577 1.136505786108638 +3.099876596359395 2.3199016273956836 3.1412160270837854 1.2930427802573332 2.006017273727964 +3.736478802390813 1.1782526575411931 1.85589748955935 4.815651144278329 3.9121174196098076 +3.3454805972320782 1.5933214390894164 1.8746267829043037 4.289863738530148 2.983861804320702 +4.994546172237292 1.6538690396365658 1.1666965201408757 2.865543387757543 3.7478266213756966 +1.7557247023607494 4.0704964346367 4.279925311489411 1.9872733395003297 3.2579780903513194 +2.039615416376949 2.894642362955875 1.9698156655917627 3.0754473588509463 1.3976739678892396 +1.4750959194699576 4.920244767779199 1.1297307880225875 2.8234914174629386 3.838994094401379 +4.02766199773278 4.5911673709538015 3.101443225970696 1.8686722424793558 1.3554566032843578 +1.7663722444687262 4.432206201054136 4.234119825723748 2.8762019846340787 2.991757267432211 +4.160065582033354 2.0368973819088136 2.753411183983675 4.269379721149674 2.6088318864383155 +2.3834271345536533 2.944648935474114 4.294773412152347 3.175713997220963 1.2519041033461695 +4.847064181406351 3.6707148054664724 3.597013751480843 4.78041977564624 1.6686065061317163 +3.060712856988688 4.761665033762418 1.7927512540202004 3.6040899714674732 2.4847909885933706 +2.4069203219855875 2.7807575870238543 4.782487928067223 2.517028110367665 2.2960972292876893 +1.9694082939588315 4.002980074961643 4.310245834193411 4.882204805856109 2.1124751486719076 +3.0035373737923265 4.762915456609566 2.3184586760488575 4.238408325082734 2.604153968781986 +4.269193705302878 2.1395768088497906 2.7985927240046875 4.213112503075855 2.5565864607014612 +1.570402345922056 3.384155062619908 3.375163400832283 1.870205183934913 2.3568194992268183 +1.3682148283438593 3.4736878013072143 1.1886234154878537 1.1166691366164287 2.1067021284764147 +2.2246384386432294 4.143672608959195 2.6381817399433545 2.969380113485851 1.9474045572190388 +2.0576256857009616 4.06454866336692 1.0160417026361368 4.791815969229551 4.276004110212318 +2.833562615479734 1.9780518326787386 3.9701022578921075 2.659964455135531 1.5647235416202447 +1.0635174906034002 3.224907404549003 1.0121926350072759 3.344490384341468 3.1798143266007086 +1.7788675010174217 4.201993579015472 1.3890571680540131 2.849266843574749 2.829090363766874 +2.734627074609105 3.158534567289006 3.0377182815475585 1.9069176946740831 1.2076454486410972 +3.3690146657090714 4.223496605903703 3.5732542771609275 2.043828956004683 1.7519364141180078 +3.7170856431859107 4.571320569819382 3.3006149889672667 2.326906032052831 1.295309400358034 +1.051305370414171 3.9004595450039337 3.729818468763822 1.8835637319475005 3.395045811737888 +2.0495420094074417 2.0302669390417347 4.697677446168 4.292188629143244 0.40594668254555216 +1.206300036050071 1.6029222673207548 1.576996557289415 2.2378792137358836 0.7707626612193127 +4.3669677118247865 2.3014019756804176 3.5819186788260793 1.036751427390485 3.277870977954112 +1.0750981423109227 1.2957229556737886 3.43777005957565 1.4879032170660573 1.9623088471975374 +2.7777329310516943 2.887107169949164 4.751539483912647 2.2203941677099075 2.5335073190874082 +3.97056497185907 4.302784643548657 2.5713040288971567 2.5890149946714525 0.33269143145893487 +2.156336889329446 2.3916959392960035 2.5297127378618995 4.2207922378418745 1.7073792073390384 +3.4812989036615676 2.571283573510997 3.864002178469257 4.135152163389176 0.9495526396314867 +1.4449669305118662 4.255059326215548 2.6378721688118203 4.61943673979332 3.4384905731091884 +2.7906150013953117 2.348941625671448 4.42274589747819 3.8369181701757706 0.7336685197687247 +3.6760784481143447 4.063761695366568 1.551448726261476 2.3800172119043324 0.9147808675308666 +3.2595394420446056 2.364594075097557 2.6789085779934365 2.9737756772844928 0.9422705641503979 +1.562831560679697 1.675087889773939 4.507401430666977 4.396630119543833 0.15770785265691525 +4.218888138945659 1.4502963068856567 1.658778586410734 4.2985382705361666 3.825366900374834 +4.768951741882546 3.344794565594408 1.1302306168720078 3.777913711424253 3.0064014089856257 +4.621201516021198 2.623359749134255 2.1620502504347794 1.518026580774868 2.0990803254282966 +3.923394979035902 3.0237993296057804 2.8709482098922314 1.4443951486178936 1.6865129614399017 +4.139051079528635 3.762659860925874 1.3961509774184981 4.505498361440425 3.1320458974870204 +4.4638686642994365 3.5488596918625097 2.7901151453212094 4.088116774277307 1.5880962339898557 +3.1607540703561403 3.0862160927261524 3.600442423838544 3.245236492591042 0.36294236967123816 +4.160686791010869 4.213101718494575 1.625441783511886 1.2241607633510605 0.4046897351854071 +4.8188785762933435 4.192273975542102 4.645695015753223 3.4948506482081054 1.310372498182461 +3.0026139070618054 4.69088344360627 4.730716742585983 2.139131027788641 3.09298731733024 +1.808579288347027 1.3981342659485336 4.904039154885907 1.0049404280161993 3.920642294100378 +1.024532273440958 2.1778196566522117 1.5753537974196177 2.718317701418794 1.623711265625542 +4.526861714909797 3.4853614107733977 1.4408298053967323 1.316682851686811 1.0488733715905205 +3.868223596742902 1.8644475344355853 4.297337518979006 1.6716805012114944 3.3029067929367306 +3.093521528574137 2.7465843151577607 4.449460301096327 3.533837545595007 0.9791478235919996 +3.8307972029530646 1.318965819279729 3.5036177422577115 1.6095708146369616 3.145903791287316 +4.42806194386695 3.4155519372158065 4.61307424035634 4.088612775225515 1.1402790632015791 +1.6073554560297882 3.2276543285133648 4.381369830678676 2.987045012031702 2.137641255231211 +1.6104804733577138 3.054143776579678 1.8333395380826865 3.820445587095319 2.456166562571103 +3.818631535495218 2.1085823162211255 1.2230569129772908 4.838390939461797 3.9993635062840442 +3.030023612067229 4.426227143216655 1.1814575935209364 4.546372084580973 3.6430802671008986 +2.8528439079092305 3.0760583282100273 4.508068081923291 4.237568599771867 0.35070592705913767 +4.637440170603288 3.242238430186945 1.8362216650601901 4.005924938910578 2.5795736455891083 +4.736216852635701 2.0969397162589223 1.9841644263756608 1.2860540792978385 2.7300442962154166 +2.3399203596255393 1.1598812127629352 1.9831260833605517 1.6260747056946654 1.2328739085654015 +2.727629164026892 3.2961064172707313 2.3961638017245446 4.636975302574497 2.3117963945376063 +1.2766508634168177 2.7609398116055095 2.470482480600111 3.307243631130999 1.7039022579810348 +4.445974548982808 1.6115468375581288 1.314758024680292 4.479568161404471 4.248529587140033 +3.032706319564984 2.459916268294786 4.103349529305422 1.4751237732120335 2.689918041098424 +4.657175683545552 2.2326921580252703 4.62996391500856 3.9697076466435255 2.5127790801092273 +4.037242518395598 2.3236326203730875 4.6019392802363654 1.65248912238631 3.411116403209136 +3.3984544926286593 1.3196383235880198 4.740718993316438 3.271327001840827 2.545700196267711 +4.635578221644403 4.573019201993053 2.4815809864136007 4.291971817270206 1.811471388509741 +4.828184889838228 4.960241392237958 3.9600322112873316 2.0134433668243026 1.9510630561860272 +2.818235546295046 1.634520467783084 2.4012257451026557 4.572042014512941 2.4725745009267097 +3.083052933854239 4.2788934732620945 2.5366429455834845 4.2862129228246975 2.1192049690756884 +4.362894192169003 2.5563450668576184 4.713448834792459 3.8019187320136916 2.023488786832089 +4.5575154268263045 3.8543437323543297 4.618562151832223 2.2691326028140115 2.4524007905940874 +1.8179577007808607 3.8742557473393786 1.0302354574241708 1.1168365822087765 2.058120844628501 +4.706563448643795 1.1170299182751386 2.734872962858559 2.827665587783915 3.5907327158786697 +2.150982908385174 3.807677587630585 3.9516541390311963 4.354785477781135 1.7050372830300142 +1.6107406405580682 1.7540073819056414 1.4833280326499727 2.984752284887994 1.5082440599534457 +2.0802769754507837 1.4743922236119809 4.614020345241996 4.504760467393149 0.6156574156284587 +3.043651846607181 1.079544817271231 3.507023574195147 3.6673463579587895 1.9706394438558805 +2.510630567303868 2.5076881556364645 1.9833414004397487 4.759152069018173 2.7758122280839204 +2.9834222106164923 3.494840717976607 1.9260138994731588 4.237878213349703 2.3677553706931613 +2.98648459649183 4.419059748991973 2.208471806320742 2.5033822317330077 1.4626153720570736 +1.7698307958325872 3.0754879240748982 3.885894817017645 4.198101584588203 1.3424654938756582 +3.925653079319528 2.950553585568727 4.433330040864224 4.789675358933323 1.0381719551321138 +1.9757895781467814 1.3584500104480073 3.7812493655002615 1.5609600142204165 2.3045157724027803 +4.495714679748465 1.3595008594460163 2.130484742243913 2.637545320726048 3.1769399674697536 +3.9567631666940244 1.5453410171030475 4.9692253369869785 4.649652073968097 2.432505673986086 +4.176994968332503 2.2585571264731104 1.7475673862705015 2.8123780651924117 2.1941343475330455 +4.638569734648698 2.4618674683614343 2.7782324762501607 3.458118539769162 2.280411764446823 +1.0622073059421626 3.383361022167523 4.17098079223836 3.9520342819083885 2.3314570870450253 +3.1145942900162202 1.4931507846657723 2.4839693214817293 3.5699765662235534 1.9515354920356627 +3.8841857309942105 1.7333406777076483 4.737739582659358 3.1986084632428926 2.6448173936972386 +4.899313209681875 4.190769568493918 1.8525922516354565 1.9024441133570744 0.7102952200212241 +2.587515282785983 4.445393173101792 2.665801878504597 1.188039200864396 2.373919288171074 +3.181054338986346 2.7763036977418127 3.2859850633602172 3.733251647227068 0.603216775820918 +2.8710606907863445 1.3216379646884526 2.7396729491353073 3.320341461721969 1.6546560686916871 +3.267740234179839 4.031120087988141 2.775054422682084 1.5131970411929299 1.4747992583463856 +4.7127525926487746 3.590744636819473 4.376745896264586 2.723605679634477 1.9979425489197857 +4.881633013608004 4.443005631387204 4.123280748539495 4.690286477664535 0.7168608493246724 +3.931368793321946 1.271067502257487 3.887126323992242 4.085020125189663 2.667651573161606 +3.964250403575457 4.280561522348951 2.9705115129217123 4.099820418438714 1.172770790879338 +2.4794950841823775 1.8570313029279206 4.6816145247113425 1.3249939783539042 3.413848656751278 +3.9082341996287386 2.679034520418162 3.3095040662603328 3.5917393640299817 1.2611854005967984 +4.9619637529006315 1.5226279621822036 2.8070142413874755 4.313507976413041 3.7548041300430084 +3.6185655503254717 1.2162328193575211 3.12777995991384 3.717521042873642 2.4736606669489922 +3.99234514832088 1.6342275585680897 3.872249186973053 2.3891517911092857 2.7857308650907746 +3.953240122390768 3.3876959791020638 4.723166091495571 4.84281189779377 0.5780616722918934 +1.7938440920059953 3.4537150080897483 1.4613433831342162 3.5101742656675947 2.6368313262860066 +3.193895904646548 2.8275238042669413 2.2717961800976174 1.2996022506164673 1.0389367413161226 +4.486658897587478 1.9179595942649699 4.739090201150633 4.921780609379139 2.575187739980959 +4.992150736300278 1.6177905043702059 4.817322673126698 4.761972141534251 3.374814166169559 +1.0193534360768681 2.064633022280826 4.742098721382751 2.8333303385956494 2.1762366949535625 +3.4579148925015106 4.539935034891357 3.5319030397853317 4.902460347262775 1.7461944111745296 +4.286207985250531 2.3333019744659835 4.77517812820677 2.2934973085061174 3.157939451260666 +1.4112108233751064 1.0740132861035172 3.0580590826915515 2.9078993010189422 0.36912076502682756 +2.6581921219824576 2.985053797932651 4.644591586731625 1.5933957971417931 3.0686534997643005 +2.70210900343016 4.9743978023551225 2.356079349212527 1.7556276519677776 2.3502847968797207 +2.7299307387175142 2.9109897868348393 2.381535562171497 3.005112095090443 0.6493304792725854 +1.9181644535122642 4.145412947028904 4.503628699828419 4.075915607955006 2.2679449598330326 +2.093414337280371 2.975410623721219 1.0977707225390785 1.9831253445900607 1.2497080683433566 +1.9830458785086131 1.6801161327445624 1.8787966163977101 4.774834179371701 2.9118379070657423 +4.1607060011284815 2.7453816642428506 3.546698724756377 1.9948605613042383 2.100320133724204 +3.80571112182396 1.8769048921240672 2.091229501502884 3.0207253349302388 2.14108756852398 +4.829778803541085 4.237360868772926 4.228843646861963 2.0145779550970446 2.2921456243358844 +2.6885251680979065 1.742203320438128 3.1544571008499247 2.034519183615543 1.4662148470867091 +3.395254253760891 2.7298292012642826 3.771443136067065 4.807394403731118 1.2312536414016706 +2.7712724396073853 4.3642574007250445 2.1691276334985634 2.138344852847575 1.5932823559970897 +2.8149223197601354 3.9454644909364642 2.5349671800578624 2.1404886351575714 1.1973883760897042 +4.047659261071717 3.1765879212993506 3.2346891729904543 4.095473206500509 1.2246282829163566 +1.212743556124388 1.966010299426633 3.6119885714361524 1.0085061035298466 2.710264147137817 +1.2001841221853544 4.260850065789913 4.716457976150107 3.688732897243871 3.2286057139504676 +4.936545147397017 3.8170351647553864 2.347018038041126 2.665143006588157 1.1638325037767734 +3.959280374294525 4.067407564208178 4.18145098681968 2.4524521465412183 1.7323765407332463 +4.138505068220722 3.7102291258956384 1.6974615265043438 2.3787757185708367 0.8047417667088345 +2.688481171122698 1.822895480426277 2.196348579524697 4.525303492828151 2.4846065234033934 +3.518537547525623 4.881068226387544 2.8474051260237063 1.5734739452893365 1.8653124414122138 +1.719521910030851 3.1504152971692307 1.0950117710490965 3.8440083748129212 3.099102807727002 +3.327758566527223 1.7524590658822703 2.77118134960537 1.903507862115378 1.7984509439029142 +3.301715613823746 3.999469411175227 1.103517037413006 3.820354680733693 2.805007511911994 +3.1885192931851387 3.1021083137874736 4.95041524417881 1.5273631606085716 3.424142582340142 +3.9415827273505752 1.6542413741403852 2.6848246049104616 3.396236677088239 2.3954201306964302 +3.2801198850981605 1.8614914656485988 3.3621778396932025 2.5747699887735522 1.6225035334814726 +3.4739382356298267 3.162188362920145 4.7985778980585945 3.447694143832886 1.3863891591344213 +1.285550342191791 1.8912036583719738 1.2921151606105972 2.74760662628264 1.5764743404331718 +1.8726863815105936 4.94765613693093 3.107048324846146 4.283102546647528 3.2921941816008755 +1.9473075031289078 4.024776768668609 4.948221111538777 1.9298511598645463 3.6642101078447946 +4.608602805236648 1.0963712784321187 1.9280427295059948 4.260625760300393 4.216244050506287 +4.205260993239609 2.8479051292220605 1.0152120835098932 2.585177294931186 2.0753808582175775 +2.631101651866474 1.0433008519518934 1.6238093482103282 1.5852854455641459 1.5882680728656842 +2.7745493201105274 2.870270641774841 3.1301141798833916 4.784065366192996 1.6567187746012026 +2.279343571178645 1.6618782981639768 2.9493973557596314 2.2042897684040654 0.9677027850088638 +1.0766178808059235 3.3019898237677454 2.3993454717962672 2.350050233533023 2.2259178567586684 +4.81928627058816 4.535490734382406 3.674127969610594 3.2892135293395874 0.4782248767049386 +3.361368984816636 3.821467462391703 4.988393092731736 1.5682596140403091 3.4509424250677982 +1.4695751654090854 4.622326115827358 2.997792818851335 4.169421068911239 3.363413639697287 +4.488800127717498 1.1550268019728271 3.3512789530527707 2.94843486311161 3.3580244115025737 +4.088086155073041 2.2199631982964045 2.1840723604208563 3.291184659477861 2.1715388608908595 +2.3254272737334754 2.9534726747993028 1.7919430417832949 2.3553643022653383 0.8437325065227194 +2.8073027845693894 1.076720479911605 2.523258083405891 1.7167861406227485 1.9092700457743175 +4.194517771766638 4.034602040616532 1.6901986233437944 3.7438535242870516 2.0598717176653336 +1.3121873381765452 4.7567640886529245 4.092067048229488 4.352760709942732 3.4544276190390604 +4.583471757805336 2.5950631400204762 2.263944586098503 1.444785875919996 2.1505324512181656 +1.4599104723072682 4.286729712784448 3.4533234532412105 2.1212615757015896 3.124947337784488 +1.8398739705549492 1.8737427928327866 1.8043179385979466 2.3388102118405545 0.5355642699793726 +4.198602651288548 4.064576531253041 2.1832403980086803 3.4820056292004646 1.3056623325364107 +4.944698776328952 1.9986439369830524 4.5402785983980545 2.2615904063804746 3.724467612004935 +3.6179739368778923 2.511822984775571 4.393871723807925 2.1550682092968008 2.4971606086562055 +3.359326250134791 3.880460337572058 3.411372310540787 1.3344015361333188 2.1413519876077896 +1.843623092719676 1.6091759663371423 4.698061976259156 3.332063000174717 1.385972098468351 +1.9769154083085922 2.2639670242658116 2.2655221907083662 1.604067290319712 0.7210556257819611 +1.9172066962062577 3.208753722892469 1.8980403248484894 1.0208309556955242 1.5612783222320537 +3.055987644999737 3.2132549232775065 3.1327378639107475 2.306366694094173 0.8412028929580017 +3.9681412750789384 2.73695610944674 2.6387607416922427 3.521661373022833 1.5150347972494689 +1.357973077561872 3.9624704472915164 3.9230761951101125 4.915841668191007 2.7872907694516136 +4.313927285022785 2.073362599290389 3.2536143959757045 3.943944569418115 2.3445011962709983 +3.905176673438468 3.960573453822732 4.278430442676884 3.017584116451079 1.2620627011500067 +2.5738489212507445 2.3756316781678253 2.8880026626590474 3.747270244150573 0.8818338007003863 +3.521546855375078 1.0229499316281276 3.6840692808000854 1.0591535840263666 3.623971440633436 +1.4024023412372801 1.1839184939130902 1.9327172427612718 1.5127730118076665 0.4733797087463666 +3.549003596593312 4.771775176286359 2.6256697538958123 3.439409923384694 1.468789773774594 +4.606683321911702 3.93422159501889 1.0269453931697687 2.648244837511118 1.7552255303399702 +4.6853161948136455 2.5475084505978836 3.764348768033899 2.489733045032512 2.488949013650387 +4.017530557660423 3.829862713422656 3.0940000899388167 3.345551140834268 0.31384255761043145 +3.6115800760496017 2.427112879567554 4.3842735144715625 2.798666225741791 1.9791697788757332 +4.894312973038146 4.1143706203564125 3.5293015461963653 3.161208358140645 0.8624399507210585 +4.377650455742419 1.4576280974553772 1.1617698947922497 4.373027691310602 4.3403579585785454 +4.3186067548425 2.3722941146709218 2.1225860754116503 1.866735178119073 1.9630569464325467 +2.933385029448507 4.635017693273383 1.4991787307252267 3.0104091594640177 2.2758231766421955 +4.233215670417519 4.372155294809405 1.3034070415426782 1.8490878216804116 0.5630912297646657 +1.5243129290253647 3.1880039072663764 3.0117875495204665 2.839675514750236 1.6725699457999605 +1.1107276924015985 1.814614606893835 2.829337708999049 3.1302469963746113 0.7655084503924627 +2.4415662418468664 3.0895221683730383 1.5064348598908186 4.505101640316616 3.067873749480185 +4.06272183157793 1.2192427593126602 1.093743369960214 3.7822445984150668 3.9132355014506617 +2.882393048479893 1.98936463968198 3.357093866299797 1.6268110519604084 1.9471462083054698 +3.302593907786533 1.1182256656729934 1.3727705125971745 1.6537700927544452 2.202368130264048 +2.2626341848857243 3.6787599126454444 3.394989562500843 2.081668010252629 1.9313791902220172 +4.045133034185687 2.76814543387587 3.278766918720876 1.2992048147981472 2.355708694773614 +3.798932884349321 4.294778553746985 4.639032660559751 3.813381186928829 0.9631008689484871 +1.6327173392520704 3.459961461395651 2.1301178661200373 3.896597262570899 2.541509500276099 +1.8524355528623828 2.2762016141883814 1.7089482089568655 4.315215889093135 2.640494062719067 +4.7018119377408425 3.243002643190651 4.489457200566739 2.0381238142878506 2.8525707578518626 +2.4009490969301677 2.341561749806723 1.0257282498371159 1.6248881588643282 0.6020958840449401 +2.392027142638372 1.199557510688626 3.937200622466979 3.9831385137060544 1.1933541439882192 +2.3555779292957495 2.4683547156766847 3.1422553520864787 4.998657453828551 1.8598245527196364 +1.1279496380438703 2.6852887946852793 4.753946514062504 2.1839994761971657 3.004984696507022 +3.5913117810420205 3.0505421056529287 2.8045938415007483 4.269151147065076 1.5612046448503367 +2.50721580588862 3.405529798609354 4.065479515870701 1.9917597158154572 2.259929609226585 +2.389142335697066 2.3945684048642577 2.782777418067731 2.804113614326577 0.022015346860840935 +3.7136914258272054 1.9787291487017984 2.604588162064737 4.845554514781613 2.8340826200125773 +4.1795177447052465 2.69264266607238 3.397919924595294 4.614232111028091 1.9209926689928891 +1.7475136555844215 2.7067292211458143 3.5640218486610737 3.312951364639031 0.9915295704931474 +3.486402651751209 3.074198902746965 4.899178714760878 1.1215467998678137 3.800054580543784 +3.5629827625560515 4.70655009929223 1.8248543302948335 1.4803455228065556 1.1943335263178667 +3.9236503709840496 1.9823751607300757 2.2322737586759573 4.031278002043959 2.6466895756024518 +2.1227058353754016 4.865335856816239 3.9996443040826586 2.1890121753271874 3.2863974409967733 +1.2717482834851483 1.0613298325849652 3.7091265674399945 4.78760821562072 1.0988169046487442 +2.230873407065417 1.2829126906288875 4.555573639142997 3.125429873719891 1.7157915694178703 +3.3358506284432594 2.233205656489922 4.43758803357558 4.339961020377092 1.1069584309629854 +3.5186149173934234 3.18585754085841 3.7296738024927087 2.5666580245437336 1.2096830871747875 +4.719783112800837 2.3950930244725575 1.229870862435372 1.3895412206618545 2.330167082006764 +2.626267651676012 2.76871877379071 4.579939151777955 4.20639670855606 0.399782789874601 +4.34152756650182 2.1478850842355963 4.379516195536342 3.7553309954257728 2.2807179799440767 +4.032575668107508 3.9105573606969117 4.081708985066138 4.053599245068112 0.1252143155797423 +4.47703110584273 3.239009130947207 3.73150839640557 2.089607407670542 2.056340746844567 +1.7241779287087113 4.6024473906201475 4.439109073320741 1.9718184397641547 3.7910365555884593 +2.1913181113889117 2.1547735727356345 2.2776828799188453 2.3094671033662704 0.04843284180735957 +4.64302595475369 2.201226220004341 1.4546472422339547 1.0358436836952314 2.477454815988919 +1.4079325091533024 4.532661952045645 2.293403135453946 1.739371131058851 3.1734658582017765 +3.6109520077856887 2.6619593434369895 4.481400010492716 3.4735533438935082 1.3843200426067583 +3.751446527848259 1.191286193274383 3.6216390274432047 1.5730185699125077 3.278912429104916 +3.917457538897488 1.1882984140433694 3.6273143843932285 1.5601659635085943 3.4236547902410277 +3.8990730233816158 3.032480308103868 2.7231844190593453 1.9930353520565451 1.1331816245498862 +1.0106394331726674 4.025760287953799 2.9506506682642004 2.0323658230428188 3.151856726740503 +1.983670256377268 3.260183569672942 2.7584801776871664 1.2158779904855064 2.0022756421083603 +1.673717377550258 4.932400691112234 3.7722914879620904 2.4431771647709497 3.5193126917338704 +4.917794239954249 2.3193022543121455 2.7916937782809805 4.270579143839895 2.989859950551291 +3.0502562270173734 4.671966693636165 1.5928831073275873 4.078235430394515 2.9676457011097384 +3.9389326170089536 1.5598922372350756 3.269527486259295 1.0950012423711324 3.2231037082217813 +2.1755390243749653 3.8769443953986618 1.320082764710599 1.2634497623907066 1.7023476535361535 +3.1139542722309366 3.408208079473609 3.507187150914754 4.245661294590503 0.794939849268131 +1.8604773894671092 3.7770344985310347 2.4327017813480847 3.98560024185615 2.4667153830451927 +4.034772533099887 3.0359098040632317 4.487017629080826 2.9173273973984863 1.860552115609104 +2.359223215291994 3.9680927799709007 4.609274327137287 4.209236852982663 1.6578574295994533 +2.5608915141925146 2.801371413423728 2.6138417847037796 3.919520358730991 1.3276396802626784 +3.2715695220416086 4.772484990582772 4.353405455017715 4.771247915896565 1.5579921584589034 +3.165893059118788 4.806681631374703 1.4301179364458787 1.3640686789954035 1.642117426755883 +4.359340101715999 2.1867625637499852 1.9298074182737275 2.428080742550843 2.228983953320578 +1.6024738759907264 3.671983347240641 2.9310444547829912 3.608714279509012 2.177637674852568 +4.3365926435057816 1.0782135676043136 3.4408857343706183 4.240955179610586 3.3551669585102757 +3.540527427597037 2.077292750960941 2.185315892540546 2.9212479202021844 1.6378802362347837 +1.4987764597169657 2.3833446892788994 2.3121290245431845 1.832252161674055 1.0063512092045457 +1.5691937454695046 3.442045255312997 1.2201673097371137 1.7616595243471131 1.9495606162431296 +4.615233686375623 2.5786912934200967 1.5604226524041103 3.4374057250427352 2.7695794578377697 +3.1937075198480334 4.133843656813137 2.7281090006063207 2.3450847345814707 1.015166756937767 +3.861726681202196 2.9622340527758864 1.3619293269618669 2.3172138470830568 1.3121187076543201 +2.920365218125941 2.6424955475872087 2.4595592235727985 3.045326915181386 0.6483327404487274 +4.38126471204776 2.379877061457107 2.994314692682859 2.696207441755428 2.02346743512029 +1.660822768173678 2.152391359469909 3.8952571356583894 4.402361076356471 0.7062535568905015 +2.1356494753161 1.3186605663057467 4.892267847536509 3.4934742005270136 1.6199057208245338 +3.169230770038047 4.313080138369303 4.055369151121839 1.493935868971664 2.805232937981877 +1.3901476543582594 4.620466008883742 1.985567434748135 1.9499942041112992 3.230514220108335 +1.829663203280746 4.156158358568314 1.9009333079636441 3.3467029218272857 2.73912932954031 +3.6102600635599558 1.3991493497862293 4.708329851455476 2.9509087248498873 2.824453859563759 +2.486110996048416 1.6347833925356867 1.8019174567773764 2.9120015870848635 1.3989444109267732 +2.6871487775750045 4.529551244654011 2.100564954386178 1.3282387309165613 1.9977323760097727 +4.769826512620289 3.997665379072948 2.823731889060434 4.068591363320449 1.4648917798991274 +2.281080580469088 2.396569690345186 2.5307299937524386 2.1814595630231253 0.3678689553112812 +3.6791698253942355 1.3346058146182043 2.2180048175186653 2.713167363648565 2.3962817755255816 +2.2814029579558013 3.902828345562183 4.813333866449506 2.66924574899683 2.68814697198205 +3.50422697540878 4.440099727729335 1.7394118039466582 3.3302669968351486 1.8457188445904555 +3.8192280111700394 1.607692473381734 4.588292123416505 3.097347291946449 2.6671718964828424 +2.176651802126098 3.546701478335992 2.3158915785639285 1.9979345160183803 1.4064610939892466 +1.9443832510998647 4.460225649528083 3.9000328028812197 2.1558809591341257 3.0612952532833937 +4.315459580309045 3.909831315952097 1.5018835091971012 1.680969387425197 0.4434027972689825 +2.886423667744262 3.556685269678781 4.182629836958318 2.8778688829414536 1.466850967942833 +2.974113991021236 2.4008335246915196 1.361410715233594 3.485782551520607 2.2003650133295323 +3.6657259881726425 3.476735851835646 4.930977681058465 1.704473718617781 3.232034203296449 +1.1280838290872155 2.0244761097859234 3.4624627283993314 3.5218276783074316 0.8983558972778118 +1.3966169620228892 4.551004372911333 3.443298746374698 3.9259524730009794 3.1910992710659656 +1.5745492064677116 3.233841516677844 3.616257024836535 3.92663190718515 1.6880709518013142 +4.11494539417604 4.127956170822463 2.018571312328938 3.58595787257669 1.5674405601343304 +1.6522986005219544 3.2644287100263623 4.701224003541514 1.9739834886062582 3.1680915889972328 +3.5559382033978437 2.7308564609737465 2.010148127106234 3.673274665846232 1.8565424222308713 +4.843673345791522 2.660177212906489 2.297024635155062 1.7706682925509445 2.2460423775439944 +4.81736912988908 2.601894595178379 1.70020301379805 1.593726030922546 2.218031731475875 +4.216196471681309 4.6990973113449375 2.635599966293112 2.0927206065381374 0.7265749928230455 +4.993669429876892 3.5129536635401126 3.405318486209836 2.546341233965574 1.7118297522100199 +4.587485649271391 3.752957144793176 1.7183464990433621 1.9320151874470066 0.8614476961434051 +2.8304799457265175 2.91448649939674 3.962703935302646 2.133307020874996 1.8313247040262834 +2.2384229874271355 3.562019949910918 1.503184238714054 4.501521893829441 3.2774895290723864 +3.567761115303772 2.923694400093632 2.6194284816861773 3.143873328218717 0.830580718952781 +3.5837261059115915 3.2296286749526404 4.780973525055407 1.2040821224552083 3.5943757589610668 +3.6053587032927825 3.2939549865847977 4.06249388761715 3.2609087564960846 0.8599482526372869 +2.651332976542235 4.698600260327144 3.4596545931639513 4.619451687442011 2.3529625222582418 +3.1760821870907154 4.233207575278503 3.5657035650110815 1.176980482183985 2.6121853021526187 +1.7912230355796654 4.09293940613001 4.672028650994124 2.2487583960064814 3.3421754859922186 +4.347350095905252 1.6298816783372265 4.18153490604495 3.3940214537229805 2.8292776530534676 +1.1577995138148691 2.453426673958856 2.6430877855646946 3.955033297584551 1.8438684238881624 +4.542119401537521 4.334163309886396 2.203028192492815 4.945146502967047 2.749992466297475 +3.8099569639992144 3.9420357143378215 2.5523443157261587 3.5642949383634415 1.0205336148050157 +3.555378889917447 4.459439377533304 2.2769612094868528 3.2514384207927893 1.329259643795303 +1.4854652135203246 2.9903141423413016 1.188000975230458 1.8367167361465708 1.6387197554904296 +4.200991975198487 2.810459567911803 2.6535531527135565 2.499928682231347 1.3989927997117928 +4.809247635992204 4.341334073824818 3.710706056014241 2.344441648119137 1.4441681113849354 +4.899627785874545 4.963299351011269 4.948883396379151 4.78051779641736 0.18000289846959122 +3.235597940390653 4.773721021933958 3.2189751091258936 1.8791299865034503 2.039854790565108 +1.808791763980122 4.2342282710263035 4.444411781161486 3.4159702983819953 2.6344703705325783 +2.4837268785749558 3.240649812361368 1.4439304565126854 1.160111493559783 0.8083845195347881 +2.609090952801143 3.0893779862498185 1.2529857228011712 2.984568593258253 1.7969571146132888 +3.3106197122466456 1.3415378798822424 3.2391661334041584 2.0034100184447197 2.3247314765811558 +4.947268177214625 1.0954814071626457 2.6000509236048286 1.2589836386252369 4.07856871767413 +3.364342125015724 4.124502302340865 4.5274378007798335 2.727214163737798 1.9541362896573624 +4.529565574845908 4.4622815899923225 3.9104456214333108 3.8432234910775778 0.09511019623226855 +1.2449169141912058 1.6562524551290143 1.5544140350599798 2.405466247816081 0.9452443049686445 +1.5385653650837043 4.108539277804791 1.0006271248499385 1.0428058286492536 2.5703200102557506 +3.2074598382458723 2.5769892090842155 2.4895637468164313 3.72162463391368 1.3840040620425775 +3.0072818003543325 2.0358496486916544 4.686618130997367 1.724970503583461 3.1168954256199224 +2.6447911933096737 4.607378123634829 4.416008669104419 4.942290124082538 2.03192510416526 +4.670718869217174 1.4761496605714926 1.1384224150412905 2.200959372250029 3.3666388600890205 +2.5573145821282566 4.231799238927137 1.6849848033621613 4.4341312870802865 3.2189602754297226 +2.7987331055817357 1.0067150842878942 3.463084380127086 2.6496463248362923 1.9679964579330835 +1.5146489329336106 2.6578770034327412 1.3504689814442612 1.3103628733702015 1.1439313445666281 +4.598566547797958 4.8439630319745115 4.88740135764386 3.827866039555831 1.0875819623008256 +3.492846461526995 2.165017366028141 1.115138251119446 1.9709904487837862 1.5797509585691618 +4.269975536445121 4.744048705257445 4.717308319699988 3.5385291125330083 1.2705375982775844 +3.2836788550577283 2.7667023631108103 1.0559043978084275 2.2879972206021377 1.3361577067118666 +2.7231197690974422 2.3793000175354466 3.1145319079845253 1.7662513183201236 1.391428248250674 +1.5144101128730587 4.023283787549881 1.1413495230491546 1.8949011594808258 2.6195967598573695 +3.2506234700206145 2.3846244456482037 4.313293483441726 3.3806367853493517 1.2727147467954225 +3.19146208886497 3.3870400761536397 3.845359190166565 1.2551784952404983 2.597553999723503 +2.147675037281106 3.1976751470803157 2.468232468690072 2.760711991371682 1.0899745417973827 +3.893084125966419 4.984645029306566 4.674139438688718 1.23555426787508 3.6076825224290747 +1.4902019324552547 1.8779804057272034 1.599601093242741 3.888510191418956 2.3215247153642316 +1.0119680283551102 2.6511736366993612 2.3754344542898824 3.8925705346816493 2.233539100363757 +4.664839472307225 1.8307918283813733 2.4685618235633267 4.231357514946464 3.3375551976859685 +3.5611774497096973 1.7537032708505556 4.185518905385955 2.635547329216023 2.3810448954560326 +1.8991632687380982 1.9509420020323134 2.487437740516404 2.866373372978912 0.3824568613207434 +2.0119274969816767 1.8603439928137742 2.39364863895401 1.3456124377123708 1.0589416593225645 +4.988203616416234 3.34502418559731 4.031995343614632 4.765957767159142 1.799649821782486 +1.2913473983981074 3.0863596746014244 4.345929669783478 4.585977212118507 1.8109919641736958 +4.564903594037622 4.877799310868028 4.421075888390433 4.516392885919922 0.32709182140318044 +2.965772334344685 3.3014502094142335 3.5551594602244565 4.755494998671203 1.2463887999614922 +1.4446705938659852 1.3822646683494542 2.150736319232172 1.8945691435635208 0.2636591007904495 +2.4112715077004525 4.0348040517789805 3.265962499214712 2.3954233571442907 1.8421987730857934 +3.665337181655997 3.529908170943811 3.3344947615332163 4.31397519046378 0.9887987295706252 +1.307888052844874 3.756910286150346 3.9918407135838896 4.902284486878669 2.612779700540357 +1.9329142016120628 2.2170463529014413 3.653621849517484 3.6991377050797456 0.28775470891697824 +1.5794580276370405 4.318923873340692 1.163905731183974 2.8705894846973092 3.2276063195940097 +2.2391208710052086 4.038106254004296 3.1214574330553875 3.8466660758943734 1.9396587287182083 +4.965392031499341 2.3828332794436724 1.7354678788150681 2.3166941201239792 2.6471557663661236 +3.923428021047006 1.1644345279748585 3.465599379193417 2.6087621545429216 2.8889816760168645 +3.394064955515843 4.024520212711323 2.870779941361406 2.4676830831464174 0.7483053577438915 +3.9444010095255964 4.27672671327951 4.652058707814515 4.124504822154746 0.6235009828783388 +4.24250972301969 3.2508309484357554 3.9191141842002724 1.553001176756878 2.5655248110188134 +4.117437607144824 2.0207181611141736 2.1258203570076115 4.655212512984747 3.285431039313067 +2.120000340273368 2.8346126192160943 3.825957685677649 4.376761772150856 0.9022504369028044 +3.032613683666082 3.196277383883236 2.8029252807749523 1.3527697763050783 1.4593617762272126 +1.6462937510727702 4.703539797341129 3.80363101211294 2.7251554350278417 3.241891879411241 +3.373996988027582 1.8355539765422022 4.304222336754739 4.640229078214866 1.5747086809612936 +4.936574454071467 1.859005921144853 4.89926251098434 2.024987477609983 4.211043224943106 +2.879473550254715 1.532142796172494 4.907569008655525 2.1507122468473754 3.0684783470024817 +2.980891346427183 3.706147353097361 4.969603543727138 4.4578030328064475 0.8876576131537731 +4.880036201965562 3.588939626880351 1.6633275897369173 3.8222395496245096 2.5155180811797893 +1.9650693941260329 2.3562079471963853 3.5772206238604958 1.310208801468462 2.3005068942655265 +2.120005470543717 3.35900481959762 2.332302022227185 4.328469687284491 2.349426469157171 +1.9452385855643914 2.5232670676241624 4.598812302547708 3.6900652653076533 1.077004226437808 +4.565902732681627 4.024265052171595 3.902000345984619 2.8596588050518315 1.1746690022735873 +4.98985288179966 4.190006451396044 4.024326416810482 2.6441299897913275 1.595210484351782 +1.2891294516858256 2.018593825769238 4.215868737546861 2.2503849983819313 2.0964838663769054 +3.0212298935254793 1.4014613939564589 3.997417282157553 1.0609083446699148 3.353615173531521 +4.498689763060938 3.6959159615796016 4.0427295552286 3.0279367189508863 1.2939282348358279 +1.2136113442525933 4.196176425051569 4.321800237413199 3.9650179290880034 3.0038289027065534 +1.7532865629492984 2.79810650707254 3.0700594280881233 2.902110717618248 1.0582322452969328 +1.5979294308862317 2.254468810594732 4.0954924698502 4.949780480008729 1.0774284019871772 +4.970618069444352 1.7622183748909594 3.1377742629377767 1.6514544911736349 3.5359546184796136 +1.1613004676514822 2.5042866009332787 2.8026906747691624 1.0725793613391703 2.1901819356038996 +2.066615759252863 3.103924846336911 3.5081356019304963 4.105942185070237 1.1972396806789996 +3.0991303284151477 1.0319737999492458 2.0816159064310815 3.9859756874922074 2.810644461489638 +2.4679071130901993 3.5212520846379434 2.106550936816796 1.1542243160424714 1.4200216976230897 +3.9540900747304093 3.389654230719617 3.3662439699621225 4.550450462971872 1.311843298603391 +2.984626558618407 4.97284716603299 4.426467320469829 1.7805194291464632 3.30969204418577 +3.7786457167880756 1.654790948979255 2.8576719796579617 4.36602774571856 2.604975276610608 +1.6830647478272942 1.4356370358167898 2.595967489509369 1.0856085528377575 1.5304916171787921 +3.1920085444955797 4.762649168570381 3.3119518329471695 3.8170908754772537 1.6498719411767366 +3.8094913040550167 4.70328763817243 3.8069875245478215 3.959750459126722 0.906757079411506 +1.95619129444953 2.631951110081854 1.649459508722193 3.516188070879788 1.9852775254856418 +1.2944684935821327 3.341140442291176 2.7074973662067765 1.7532966261224132 2.258177388517124 +2.449494630585781 1.9141552405779594 2.1900330222833215 2.393332355051625 0.572642018365736 +2.728350800385266 1.6325986991729557 3.0882194562087997 2.774004704256161 1.1399138465936147 +4.776511026841664 2.8713970548813914 3.7783985380556073 1.0220103009879886 3.350691773291447 +2.9016983496562934 1.0794766682469819 3.686831764192971 3.746366162421801 1.823193955883643 +1.7968784515705098 2.5124166918068744 2.592073861022679 3.793692894486999 1.3985289681748752 +1.1060378383332905 2.0908305040111634 3.1093627510382653 3.004538593701778 0.9903558442975108 +3.665465211273768 4.199602207946969 3.6609147218801525 1.3662513097509894 2.3560098697117806 +4.674667416742398 2.605083446778657 1.972914327723347 2.416948488136083 2.116682343750314 +1.8463804137548827 4.411561663948877 2.2630770276231744 2.8382018647533664 2.628863523393874 +2.5808456544691305 1.5741335341437215 3.1745005139931175 4.543880031581221 1.6996086480128028 +1.2844650744600838 4.41575842053772 3.212365234174248 2.976331903609538 3.140176707181866 +2.7162555417821923 1.9824680188314883 1.6843485310114898 2.2315299913015116 0.9153423836593882 +4.331703243922784 4.5210470636880515 1.0059630934035053 3.3091296325402224 2.310936431207554 +2.3746256406134414 1.4508693823563137 2.515450083092804 2.923158569766748 1.0097285946110304 +1.3606414421030135 1.8104137156686537 3.9448494262018867 2.5552699594516883 1.4605568090567962 +2.3318098997647216 3.8482056289910163 3.435097773685337 3.1844271193592166 1.5369748809125123 +2.5006384752850703 3.2711350838402984 3.615085705298868 4.503323261546122 1.1758532987253136 +2.3938167286168066 3.3748181039335736 2.007401514714704 1.0595470162892666 1.3641084445742302 +4.281366823430291 4.363023185234958 2.974304446780106 1.1271454202155224 1.8489630150011638 +2.538407403699161 3.755044315198642 2.838372395580493 2.4818661005910414 1.267794191811156 +3.9805928262190418 2.9907002214653153 1.5478863800580305 4.5816920632945415 3.1912167417122066 +4.602868305056095 4.7517983505724875 2.3971407386511943 1.886708568707518 0.5317152984172306 +4.638660747306135 4.777891777828821 4.011130913426793 1.4954620043697378 2.5195188707085974 +3.57100950160652 1.5123326644884227 4.505866354935533 3.6339279335886148 2.2357162007525746 +1.385027813891103 4.164070439988136 1.48994545218254 3.1311948685801743 3.2275033020106845 +3.3996613420890482 3.9764416811643577 4.234667402882453 1.8364165533429673 2.466633879776383 +4.361021240335141 4.165255440074578 1.889383428006533 1.8696545488225245 0.19675740704104633 +3.486815993346774 4.876096728119042 3.3181341305859893 4.074805484712047 1.5819774012811731 +3.8069252994215566 2.5926820304099767 2.3101756303655634 4.52707569294123 2.5276535766967596 +1.0059502502108497 1.122303796158389 1.6562960440768908 3.749368268081708 2.096303766765456 +1.1159009931848058 3.0520038812826624 2.760658390786818 2.9433988673411156 1.9447078122618198 +2.6741406745878917 2.155166261608924 2.7923736001732604 4.596746983683076 1.8775243669378898 +2.730842667608247 4.145889252281976 1.2857392187212073 1.1378300295305266 1.4227557643685125 +4.2383868786014816 4.080525730362424 4.387522413874775 4.692220497435175 0.3431633200805909 +4.606947076079459 1.551300448593027 2.6447391635435813 2.108726674462593 3.102303289576956 +3.1724635619314943 1.680258881514007 3.3567093290971632 4.64883471396574 1.9738953413191953 +4.108081115216324 3.486850769440538 3.4725968846687727 3.374722480490803 0.6288931081717267 +4.205148724701459 3.8335060693864307 4.896597391759384 3.4249456203884683 1.5178528253519044 +2.2395323917628605 4.316744259516799 1.880244964430089 1.8606662654113824 2.077304134928988 +1.729998127240835 2.994199336987364 1.7464933312402104 2.9315727862432475 1.7328063981284472 +2.174377765959503 3.9641500793701723 4.850288617114389 4.465429530428269 1.8306833288300446 +4.173212373918172 2.5358519058934648 1.0036608387596853 3.12774097713254 2.681914565469999 +1.2506016849161243 1.955742994519698 1.3943380772882006 4.380704298935247 3.068486186428725 +2.2572867887259105 2.7088076887479153 4.77176694891596 1.9248555403723282 2.8824946992583644 +3.218017542259908 1.4963149625550591 4.306006412063564 2.7136782828846906 2.345158554114545 +4.808768921803324 3.1543728554556467 1.0217247933026257 1.088498744635693 1.6557430673034084 +2.6776057341577797 1.0016680470544488 2.7494627827832034 4.298494683231629 2.2821627811486462 +1.1620875475137358 2.735045502534352 1.755018081543148 1.127594471630112 1.6934748638639263 +4.164836172809975 1.199827768334722 1.2377000199350636 2.950861819128807 3.4243536892128468 +4.491688075893807 1.8041944652410575 1.5672872581211221 3.6708510280490656 3.412858397509749 +1.3870353500544659 1.1186118516052423 1.6914194670943106 2.179153409950579 0.5567185766020766 +1.9583126464221907 1.1753897753403137 2.359449070719922 1.0123097063593898 1.5581247347605993 +3.6309446731823165 2.0631705823009114 2.9184467331911876 2.1538336449676803 1.7442903355581905 +1.3727685091762947 2.747075446143893 4.6101140744653355 2.1830574590193392 2.7891438420378103 +2.472334926865723 1.6263987759272656 4.331077735184578 4.478096151027973 0.8586165535683982 +4.2382159089414255 1.8708852949505679 3.943563410588249 3.2869508265178875 2.456703954793473 +4.494154893271991 4.585016830316173 3.278234238800966 4.630975729087387 1.355789596930788 +4.430866885582769 3.648058753609284 3.1268414738589447 2.9471038310463813 0.8031775592779179 +2.5223864279998858 2.9594364855461923 4.640404677347521 4.9886315063666995 0.5588154232391782 +1.1782219298443497 4.556093389511655 2.1509098148333643 2.0927168164595904 3.3783726886024077 +1.7831292062714237 3.154271281602698 3.3066651725284646 2.766707813139535 1.473629716279507 +3.086335314425702 4.7909591192695835 4.080874151449164 1.2057997590644614 3.34242353357361 +4.266856207640056 1.7128530372732649 3.6642757333947347 2.8513319914797557 2.6802629948873204 +4.297324790782032 2.300481588301596 1.6593844612272024 1.5977065666147832 1.9977955195605337 +3.226476148194951 1.160542368823891 1.248541932024068 4.505631859098177 3.857034764400499 +3.7861815520357616 2.0365879895473205 2.546092474585519 3.356923449027209 1.9283476094872145 +3.2846903921440345 2.0717399281466564 1.7166913935167036 1.8415761165492555 1.2193625474641951 +2.3743929950191203 3.6750736230601504 2.304103724520733 3.088452016494809 1.518872061525874 +4.686594498645993 1.9624262696892694 4.603107627628424 3.264013353720907 3.0355009494429606 +4.03270725513633 3.769084444188815 4.198580018772832 2.629768911172436 1.5908064865917069 +3.4130030564045173 4.294652611067269 1.007421145581461 4.6937376194284735 3.7902816626990794 +2.794029767541763 2.7529322553687043 2.09938524360812 2.7161230107248757 0.6181055564343166 +2.4979669230706913 1.5076044442315584 1.551524745219805 2.917068956895502 1.6868695366072008 +2.613832847628348 1.7699405806514328 2.1282921119274234 4.110001036342333 2.1539091019281975 +3.9158266661351964 4.757287622000802 1.2104809196033082 2.6335664890833637 1.653248038955024 +2.2253384053232677 4.9768973932022575 4.7730904412352455 4.448020615772668 2.7706943633688508 +2.525954351600317 4.870137544164872 4.475671700136138 4.963340849189851 2.3943717420736745 +4.122491092391588 2.8385199726529473 1.3720603764832067 2.3838724674609453 1.6347310310175316 +3.915933120654935 2.33331455833026 2.3884104238540087 3.3008428533828376 1.8268044373360008 +4.745574542463311 4.708906632757651 4.060292321744896 1.133578917330229 2.9269430959932707 +4.308600993665522 1.1880263134572262 2.108446528189343 2.7351420206279724 3.1828813322208545 +2.836174665004114 2.501818548548276 4.1159347949866545 1.8516992900716969 2.2887892944368913 +3.57306062768768 1.5541244232797733 1.1246453163089871 3.843207984188822 3.386249603419531 +2.336224108816163 4.187716071126001 4.120854558890171 4.7099613877924815 1.9429537674266137 +4.843774352975756 2.516928622595886 4.020260847706767 1.744116179626717 3.25500316482431 +1.8587446207242744 3.657263203558138 3.933981438120033 2.901800835096265 2.073660022775488 +1.1908327209751652 3.7114200845557885 1.25317124926538 4.556356250267635 4.155044140353817 +4.358763921312632 3.358901868961442 1.2914098713143511 3.7249523169730363 2.6309414585950766 +2.3462478019447826 2.5505051864602883 2.202429418149969 4.912320818998847 2.7175784226998507 +2.6089865387369326 1.8484656368379278 4.26703321174282 4.447328758668904 0.7815999785482671 +4.9826953287160665 4.9748468506128525 4.9716947747171485 4.935229078115116 0.037300745799623475 +2.81470576977814 1.7989681493834504 3.499121455301561 3.9777235021896193 1.1228458633180716 +1.1495352340057154 2.5870680181747203 4.265195112580068 2.909104627743001 1.976229214596911 +2.3843902354138384 2.8636192339595334 1.662710191431998 1.7771446122415528 0.49270241496579664 +3.697587760475158 3.4177237327927465 4.422216331198581 3.873035931169163 0.6163789303400088 +3.183548782831277 1.1045728433175301 3.50371328969831 4.322569874485768 2.2344276814269124 +4.056326898219181 3.4246684927247473 4.7182315188673485 2.952992951179578 1.8748492051586823 +1.136033807186553 1.0284811182538114 3.699167308877467 1.047956441436654 2.653391536229233 +4.417141538685533 1.8144453630537987 1.7117466043022715 4.820167748187249 4.054171850131571 +2.1794629928156755 2.976224642355605 4.657563934207737 2.155806151163067 2.625570629635045 +4.898028853298385 4.566031072003873 3.1398177452681737 3.133364934217151 0.3320604847839304 +2.74932880538283 1.5191628828830055 1.902891057992433 2.0415543685545963 1.237956263595731 +4.4954656505339745 1.7863508577751999 3.684341262376091 3.4975812088627025 2.7155445637906115 +2.7533033661288204 2.902524532389624 2.1965535524942337 4.9255137019790505 2.7330368555759414 +2.3488241783063213 4.028815224051721 4.915268799323854 3.079324284275545 2.4885863810847906 +4.629021389886091 4.747228464926152 1.2743733616123856 1.9505259950267115 0.6864075292875613 +3.710481454456138 1.0856430103996715 3.6698021961016787 2.8730445084946594 2.7431003755162986 +2.777159847271781 4.427825183782437 1.8583805578429886 2.7600456037838255 1.8808763670771473 +2.989512651659746 3.4385113215050485 1.1937722913539655 1.0794047073073703 0.46333546141376425 +2.0821964721778237 1.4457852849173887 3.385442226045122 4.067471280665426 0.9328359076582025 +2.2603873962168533 2.885099878889476 2.8178070051857227 2.399874499006481 0.7516204266305261 +2.3395756690409093 1.925812603294379 2.6000560033608564 2.8456307111977566 0.48115154754520584 +1.0003658447904344 3.4189086342329364 4.117859371475015 1.6464980059977408 3.457886091695043 +4.172247079652576 1.8981059800695688 2.4442747597330596 2.455677500369933 2.2741696865684053 +2.7681419527804323 4.0964616695536185 1.5229569955350297 4.606216271206493 3.3572192408275203 +3.7138780216028024 2.459594114902997 3.6381847209470726 2.1636739647987353 1.9358228453562758 +2.5653938860999874 1.9659716067329378 3.0144242329026505 3.5252390341301143 0.7875524300988745 +1.69253648123391 4.241162828398095 1.4901892458544443 1.1440867092351468 2.572019289063317 +1.9786874324329062 4.655824856595326 4.030640687974097 1.6560179678513007 3.578532918777524 +3.5013817178169857 4.642458256216129 1.4987034060602085 3.58868752183713 2.381194924966205 +2.0582416179350504 2.649374748549043 3.675411613940012 2.7282649724089567 1.1164789020277353 +4.03279460598713 2.8530698371496355 2.9943684494073612 3.6347264689535184 1.3423147631631547 +2.3277663026721345 1.3333392409641376 2.3145312942012057 4.396770400415646 2.3075105365969426 +1.836971519213126 4.093593287328101 3.1576018096787304 2.524785996431185 2.3436718323661503 +4.040708417364705 1.0159613638734157 3.2415254034279526 1.7680770817456426 3.364542271137733 +2.5227361904318015 3.2980270311849966 1.3051351218321412 2.0575616438165762 1.080380284317235 +1.1350644244634172 2.880908770567911 1.6071927191489026 1.083410374426312 1.822723354068884 +4.052859699965802 3.3470467138793336 4.622819939378564 1.2457390542821574 3.4500503294606917 +2.434781403818692 2.6482772553410707 1.6985342254488285 1.7854292946702177 0.23050212943106546 +1.8652148265653743 1.6691196676181792 1.746955608147736 4.789293492613151 3.0486510319510205 +3.8317015647876853 2.757894633115243 3.2417200657602496 4.114430811032394 1.383721565713726 +3.512833497142154 4.7006650016533325 1.2016451465172935 1.4303259288316141 1.2096439903166465 +4.290873675263937 1.8178428497998778 3.239584605710977 3.8543785899720966 2.5483039667157263 +3.4405354135297324 2.0467885161340553 2.102839436686735 4.642619824075066 2.897070042329404 +3.6044149777603796 4.834532013687758 3.059030074174448 4.685822020741199 2.039519541336439 +3.7307249618825495 1.2989542694757032 1.056066597437404 3.212353961794447 3.2500898292408342 +4.006247665397383 2.8000593054413194 1.8066258634994568 4.044248627644439 2.5420161278625533 +1.2183332263480606 3.492750071900964 1.7811968330101968 1.562138311404838 2.284941711121477 +3.397420375685758 3.757335122437751 1.3533765447848691 3.8336397797229878 2.5062410776928967 +2.7851950842599766 3.934870878759883 1.9056121337352478 1.8354182167852318 1.1518166600791018 +2.584095783893356 2.0974500977049235 4.720829983170987 3.5477865913550897 1.269982213642677 +2.8276684873052873 4.723261710002584 3.3873312272201885 3.6035530897849086 1.907885101306386 +4.125052410487628 4.829889516909965 3.976176502812144 3.174405564303918 1.0675354722097878 +3.852274307979511 1.9284737124559888 4.914658889677344 4.839105899920237 1.9252836117304633 +3.839756669986094 1.989705673160831 1.804138115444942 3.1538662100767363 2.290077426702539 +1.4733219147985879 2.816325201159951 2.284260211753584 1.4137783824176182 1.6004363287496042 +4.418539596991366 1.635686766709481 4.019291531576905 4.479906594988842 2.8207155318553268 +1.961885454746601 1.5397667733326594 3.9227005542718607 3.4093809220990705 0.6645910215859474 +3.8333191174522887 1.6172680119445304 2.6185497612154744 1.8529321127368612 2.344579468877965 +1.6223763962626272 1.4145191346033794 1.6918457408269965 3.556731425421311 1.8764336539908057 +2.204413730270222 1.3176276239557452 2.066642621614767 1.285957607728184 1.1814646373292281 +2.826274016137483 4.718581086920071 1.713638549521526 3.2912628194267164 2.46368106440904 +3.435322275267503 4.128193599107315 1.2133072317992806 4.317179717099011 3.1802665102786993 +3.0680741358744554 3.87233884434095 3.006777160248707 1.9530643445417688 1.325576259318844 +4.892209345169526 4.534281324526411 3.2226551207221035 2.1534813659773717 1.1274950047767156 +2.702951301408369 3.6982891230231423 4.710055996794699 1.37141103580649 3.483855271774188 +1.6233501910713914 4.8619667958531725 4.9296988062796245 3.5243555944276377 3.5303862474050525 +4.7749766954495545 3.8253160071762515 3.0207895123153565 1.067269212219188 2.1721180874297668 +2.4716957314966144 3.158530384038189 3.942112935066699 3.047561894922487 1.1278135499075177 +3.8183558582057073 4.679937017620603 3.240399436099143 4.963210552284929 1.92623992179376 +4.142925820442717 4.115181710832427 3.6448775810057494 2.1446589531004507 1.5004751471224456 +2.135314599024106 4.257896923585749 3.175052593590233 4.334833210604773 2.4187696881150416 +2.596132506017487 2.2055306480064 2.3767006130938753 1.4458034687696144 1.0095242962865119 +1.0994806479124968 3.7496649563288096 1.297837967437646 4.745284587803414 4.348374991746619 +3.8810023628251664 2.3992538402657155 1.769830580248862 2.677930674131112 1.7378793009343507 +2.964254760920879 3.746086181898071 3.1967309397107684 3.071989222705017 0.7917201947587025 +1.5441296904703763 2.616864774256701 2.374321926904456 2.076459473086161 1.1133205294885697 +2.0445233468122113 2.250731199126399 1.2420744568720599 3.545254794732491 2.3123929914836965 +3.8406717978387754 4.519895519417124 3.2579410553322763 1.950409681823492 1.4734256535925085 +3.9998228729556424 3.4035600120591423 1.8032796258582984 3.567857920788841 1.8625965634630757 +1.7491506848541039 2.2350065779127837 4.387080392037682 1.0445079220537963 3.3776984273191153 +3.954430112015401 2.026383976822812 3.0994484672941374 1.183917213541343 2.717834042677152 +2.925596406973327 3.9039008615126156 1.8892410519007798 2.1553132752309585 1.0138412271156068 +4.7271205545611705 3.3586317190477653 2.826300876272407 3.0349908915082175 1.3843096529981864 +3.397017813983514 4.49763566746317 2.0497804660413963 1.09700195437083 1.455728873004635 +1.3367789107687416 3.7362085424442184 4.780070148915258 4.70395242877703 2.400636679025245 +1.5698078497523906 3.8673733246653774 2.42090816678488 4.61621310214964 3.1777619279532274 +3.0254351425373054 4.294729601108787 4.73574709659489 3.8507094265511337 1.5473849230093824 +4.649080899714001 2.8250399194759765 4.074349335195058 4.501010639590923 1.873276639008898 +2.750846268588077 2.0239690465430358 4.822622619622431 3.078042211106504 1.8899500780987613 +1.4188292599852899 2.6337425872152935 3.552552618958688 4.032909003131618 1.3064289680257284 +4.015505122542956 4.659998435055355 4.658597636870267 2.7612715191769666 2.003800894987907 +1.7551015718502518 4.179423987189171 1.396337710336414 3.0993190867360663 2.9626820183541103 +2.0290424359589005 2.8460971039013536 3.0973763797712195 1.3653977448609775 1.915026976883641 +3.3928732320226986 2.792367365383656 3.5744877250784195 1.4612179852073393 2.1969333829961006 +4.784895060457891 4.482384615314994 3.9828368599381587 4.436432250436837 0.5452167896371152 +3.540026277429313 2.599304965069114 4.999825278258907 1.3890347199962765 3.731322157515651 +3.762117739113273 4.8525368392140145 4.23311056475105 3.910416689258944 1.1371654018411859 +3.8042553177534693 4.171655168846751 1.0626757659712571 4.775264272355178 3.730723263432623 +3.4206859563115755 2.719488650867086 3.787218809023826 1.7874503484833295 2.119139343444673 +3.8311252798511597 4.619432623584217 1.3136886202943807 3.0561779679916254 1.9125108091254903 +2.3373941113588983 2.7707577041885116 2.0646501897553637 3.1265653479886977 1.1469384494714254 +4.286780265052336 4.453984630428037 4.805710235197611 3.8060649519798297 1.0135324326632322 +2.604502779981794 2.3881391371431726 4.591320863952798 4.553943395238382 0.2195684428826138 +2.4623370234788973 2.145463416983832 3.435628282140105 2.789510493958878 0.7196367685835613 +2.0992350341855026 4.485834063581757 1.095263663422466 1.874389614770454 2.510556148581237 +1.4885369419413559 4.708963186909802 4.213427043248144 4.139556704254204 3.2212733547876136 +3.9322716005059557 3.8776523531463294 1.8535691491844668 3.974549150828429 2.1216831595588803 +1.3819775569335917 2.5962961329535985 1.1096835102044111 1.176325123183526 1.2161458418494533 +4.559624144202752 2.850040418783988 3.5416946551473187 2.7863312684063266 1.8690239057447935 +4.233991680593199 1.9212035734252315 1.984373595637106 3.684114753009098 2.8702105899605814 +4.899436325293996 2.345978176597785 4.958787714551452 1.6008107815290962 4.21854922927934 +3.6225151415922117 1.8895115465924968 1.1464821945176817 2.7740567225622095 2.3774566882745316 +2.211018509583204 4.4455156193254055 3.87226424989895 4.851956322657576 2.4398307094698897 +3.887924585934946 1.7719289628113022 2.535337810820785 1.281777629348574 2.4594411165244554 +2.326267940157559 1.9665991406275323 3.638730970012192 1.0778805292205664 2.5859846529819226 +3.0628446945399195 1.7974232193695778 2.7078945017879867 4.465320601424013 2.1656033813937814 +4.4500276637151615 4.484529576851619 4.725546934183896 3.41163161721033 1.3143682292979477 +3.6802110882131274 4.969266102531809 4.329332143459267 3.650602383090614 1.4568242576063268 +1.7658299974064637 2.3825430176526736 1.9239352871718216 3.79996044483679 1.974792480625008 +3.597914022098772 4.971445710783068 3.587011817842842 2.760858907958529 1.6028468206070883 +1.6724396336866403 4.397304233374308 4.685856436528369 1.4765017216949818 4.210088451832613 +3.85422120081429 4.682420186286415 4.8513222134886895 3.783579280446998 1.3512914306682817 +4.909185809600392 3.958078769096925 3.843512263820459 2.1682744994122625 1.9264023904144834 +2.7296048282280347 2.362379527608167 4.734234204464585 2.186453349498431 2.574109886222307 +3.865835636831476 4.2650900865801145 3.133489726020045 4.132089676238226 1.0754561712221664 +4.657175619424676 1.9453762202092912 1.3347152178377852 3.6770464291872407 3.5833464087702613 +3.0906645834513284 1.6699536079618218 4.573058709859808 1.0669138456638727 3.7830505527423073 +1.5017027346740495 3.8040703870318793 4.779652278975927 4.124453268513216 2.3937799710781733 +3.5668147141001856 1.8703727989500156 1.817944400334636 4.0794558980468 2.8270743580179656 +1.3463880715196201 2.188509498016548 3.5429654279417915 4.848039684874392 1.5531861810721208 +2.0877939332771893 4.172348873735736 4.718368055824039 2.9542393736481203 2.7308458958838884 +1.5164078363809628 2.8922956120693044 4.536563565184767 3.6318021518627757 1.6467119925248066 +3.891727665680128 4.9280282196264835 3.500903478417247 3.160943153103084 1.0906382814192959 +4.665586561487832 1.080203211458092 2.699883998299852 2.8709939098000996 3.5894640781715728 +2.605970232501623 3.183228662466833 1.5214421067271302 1.8909550611625714 0.6853955926773295 +2.5582426256927056 1.2847922758357466 1.4187741117857744 3.8234968212740528 2.721096672865457 +4.267603295787632 4.760541479771817 2.3526563911582805 1.5945861325680037 0.9042447512641448 +3.2568591939939013 1.9118881004418715 3.714440325443462 1.7326791660317715 2.395062532679118 +2.6226093990114276 1.392495928231916 2.6371414420614125 1.0435258875428928 2.013154163643854 +4.932728435249796 2.440363643421879 3.249399795969756 2.7968196036428568 2.533122793318569 +4.107402917826903 4.0139803610309395 3.2985155501025165 2.5658772766570785 0.738570655953381 +3.241331874007063 1.8034556384106044 3.7456935820018855 2.921488312089185 1.6573480008268964 +3.593354849301193 3.6773212173319365 4.689923419986775 4.019870998022362 0.6752929728204278 +3.6497635013546956 3.5545699692997634 4.723377641612281 3.4176757910876687 1.309167342629845 +4.180794326107103 1.3854532411869056 3.534146614022405 3.173531979602186 2.818505755821842 +2.3231326889610013 1.1698200695188445 4.17592629441293 2.1489484358774047 2.3321169004056794 +1.7055484938820493 1.4301015227558764 1.0551944540953953 4.715182189793877 3.6703380306677316 +1.0096713606206773 3.83984297912479 3.358601308378914 4.858794954626493 3.2031940881607213 +1.5815832008631872 2.3395883701518456 3.154676877229435 4.838604493670534 1.8466683660260519 +1.127687668810025 3.666345241150064 4.595011376858608 2.004254849329011 3.627230576422822 +4.376009118879361 4.009827280586841 4.436126123683671 3.1110804442021283 1.3747127668745907 +1.2193737309420665 1.2772207189719396 4.774423388060047 3.0528543284130607 1.7225406529768568 +2.2996829224179276 4.176875312691108 2.8366989665896827 3.4932154391161623 1.9886842757959713 +4.331760121596364 3.9345480316510595 3.129053592803648 1.036226650930367 2.1301882670387107 +3.6888338868373607 3.2737266541627084 2.885872663298546 2.0603784418037816 0.9239884871252751 +1.2404848302632514 1.3026122647779879 2.2248474078242495 2.222111646845609 0.062187639507502765 +4.566638009188903 4.75753684109345 3.4772989921301107 1.6555049592148334 1.8317685067683172 +4.3140635587211245 4.11851663847602 4.274605064708159 1.940596531319735 2.3421858235305173 +1.3692123541241856 1.4054850767570972 1.7322580452646035 4.31619980742747 2.584196343286737 +3.6986334798874174 3.5335103558338883 3.8596139108744 2.0292337307278596 1.837813170583582 +1.1816134357120802 4.033287709645232 3.8604085643390404 2.7509575937875317 3.0598901321240035 +2.8782242272904828 2.896119500515227 4.9846151617777 3.5398656951172467 1.4448602915920465 +1.5198811369773226 1.8379452539364527 4.618181252774685 3.629259618415896 1.038812197367671 +4.21085535887504 4.871166973938045 3.61686595188844 2.5272075178526268 1.2741141753596867 +2.328383161139853 4.506059712240422 3.334581253430976 3.9398534780877776 2.2602277821392827 +4.096691912229796 4.62801338400018 1.8630851594392785 1.9487637834081974 0.5381852218051468 +1.6402940696197712 1.359474999759585 3.9671687512483667 1.2665845667305953 2.7151453529534395 +4.893439885858488 1.3774462227677606 1.6460287999755225 3.242772730122811 3.861580326415127 +3.7234236904052405 1.9143393688979393 3.27105776322153 1.9568574077544874 2.236047552408766 +2.3589396013018553 4.650303274373806 1.480301666413685 3.4004548538169352 2.989537714324515 +4.757074816124653 2.3310278972502654 2.7173415574036754 1.6863881505250462 2.636013766985022 +2.2658387546867385 1.0376607252479828 2.623207512590486 3.74706406775184 1.6647747080536786 +3.2512025615188658 3.133095726176201 2.212919983411789 2.1792046606820827 0.12282486532224494 +2.3512906163765135 1.2826960438190778 2.358081202405711 1.2025687034181392 1.5738816651247045 +3.5221675470380718 1.274725992228801 4.80448575414565 3.0250898739346432 2.866573431955898 +3.074471166306521 1.2726652276397261 4.458030190948806 1.1106795106923517 3.801481450333314 +1.2438871648916692 2.31470201266334 1.9834046376884844 1.9604322241773398 1.0710612354066382 +2.943703523219143 4.793392190900552 4.9351301019997855 1.8649045395840522 3.5843595203969194 +1.1358668705251915 4.222817733767209 4.197277754376998 2.00302775853923 3.787347181907764 +4.568501893750106 1.4128556364992892 3.063838279274587 1.1832124154857389 3.6735346657480505 +2.642567975107976 2.9923815469078336 1.2030141819913096 1.8628210554593916 0.7468029494392077 +1.7054155804635038 4.965193456341465 1.3320678131169283 4.961811048545943 4.878646098581668 +3.6071895409303787 4.880401324890321 2.9177808133988163 2.706155465633739 1.2906794856319475 +4.680112275399022 3.6375237321457066 2.7607290515574547 3.4322714185587366 1.2401451613423145 +2.980685397515597 2.2817346233136293 1.3284481031534825 1.6271135010777469 0.7600876296025277 +4.272325702221115 2.892538349254615 2.3632641430128483 1.6014789516054604 1.5761122476695282 +3.996551366487369 3.426108902635828 4.919858753707306 1.699195481167202 3.2707914209948865 +1.6577762079302492 2.218678765065959 1.7629375552525604 1.9313215068117606 0.5856319951505976 +2.0762603061453326 2.8524594809279806 2.469823408837244 4.801696103447409 2.4576646278126995 +4.567565634387851 4.864897831156151 3.903229851656549 1.1887974072680993 2.730668403593471 +2.8627651682276367 1.4255189856173827 1.8285920579939003 2.4584137953913743 1.569188328508124 +2.3129393666549616 2.033011134048672 4.111689905707392 2.0082229115361736 2.1220115953919243 +4.772407576351364 3.8025481375586563 4.314522964005022 2.908668590450473 1.7079384797637647 +4.335412507464554 1.7714079735486679 3.4641029486194785 1.1664369428381485 3.4428750084869986 +1.3053438604220724 2.9936023392447093 3.846666332648853 3.1561579707359826 1.8240116472183283 +3.968322600882329 3.2136840692593753 1.025839953641229 4.011315385972555 3.0793737789466165 +4.533199877440412 2.5041343003763976 3.442219802169606 1.5948402025654782 2.744069696829807 +4.685921726272587 1.4264890105673897 2.83062400837139 3.6436016071249764 3.3592907293481624 +3.8166495752237792 3.5067451802545997 4.636029347623609 4.064942178416104 0.6497547913287396 +3.41601614084951 2.3257931866011647 3.4332809204869683 3.4148399245936627 1.0903789067565124 +4.886134900306523 4.618589785528713 2.699236569653516 1.1381123778932793 1.5838841910128794 +2.621419334646222 1.2512805060527135 2.1983928254629252 1.2983831435115585 1.6392979708478235 +4.444926859334307 2.403111784449429 1.3045176869933086 1.9709165219028852 2.1478119580624333 +3.12137729663475 4.793407698290917 3.1121200472078754 4.651679294000189 2.272867866473148 +1.3997679151398463 3.8346923138676705 1.993458293873938 2.8198710064417063 2.5713449397180597 +1.8423788127079685 4.616358390603686 1.8285598309444846 3.7494705088450475 3.374145896527728 +2.4769405591086358 2.663588548012311 2.429842351186542 2.7468541954505135 0.36787767146896944 +3.042734693878704 2.4939695176735635 1.2443843804744898 3.1138312258594447 1.9483261344896081 +1.57457246810635 2.898458790343913 4.811494908217963 4.7586296186003585 1.3249414074041366 +2.8926875688624554 3.076542490433841 3.9590027360493307 3.36314311900365 0.6235794379322057 +3.8166482592656754 2.515110051504407 2.4461240992503646 2.8999830833458073 1.3784011330910035 +1.3585765336661373 4.314029859672453 1.9038312779492834 1.7608876585574436 2.9589081162696877 +2.270654317851852 3.456939876790797 2.0845810003253944 4.864946582993891 3.022863907064725 +4.167041769508594 2.5114581199268113 1.7487189600679276 1.1710674480192371 1.753464710262135 +2.513620396872625 2.5198626624055933 4.950554875811632 2.3706145604786646 2.579947867023548 +1.179059800142182 4.466550037388901 2.9193202235966913 2.0660440451334083 3.3964205123519955 +4.086822406657394 4.326913873373552 4.69097321652543 3.884354929384767 0.8415919281573782 +1.9889829612028374 4.997167349468672 1.4456253092281934 2.1195351413554624 3.0827467907118318 +3.120807356807022 2.956173882916102 1.6353735785676728 4.883577580627557 3.2523735055683938 +3.9968885113852473 2.7442303268623194 2.7042657530019776 3.765595243177093 1.641819970023403 +1.5684897719330162 2.7895301375359502 3.4364518761252167 2.982110637074811 1.3028298184849796 +2.5315029204397774 1.0834095098396168 1.4325588493541725 1.5696288111824463 1.454566155339526 +4.155639366909247 1.3455999182005183 1.4840336783483803 4.760052682156418 4.316088763754826 +1.3042951014630422 3.7571402600022257 1.9708798467864463 1.5137962136085843 2.4950701031209896 +1.8952455722311532 4.520485165239252 1.8258714754190137 3.70457732385532 3.2282222020248406 +2.5494473086612253 1.945058044369897 1.7876129335616553 1.3607930983636831 0.7399064498360838 +3.2119304538963758 2.8006076455462328 1.3977624386913794 2.973402117664608 1.6284430756473827 +1.9259964857422753 2.902067595382137 4.695601043546256 2.0496559070764704 2.820237663084745 +3.1164231088854355 3.632203974726206 3.33320651630374 4.703041207086006 1.4637202538866507 +4.4694958130871605 4.978426209749424 2.876890406109499 2.673388756573008 0.5481086297540676 +2.5738259743548033 4.006606579442237 1.4794669860571057 3.141813408763555 2.1945969769868094 +2.509597997230169 1.7626646159906842 3.3405575917052746 1.6877703281051617 1.8137296421265763 +4.219021010441708 2.321972003859201 3.703766200325859 4.527235266019134 2.0680658199219457 +1.2368955162857218 1.5912280100800515 1.0638270882570589 3.737013524676541 2.6965676776256884 +1.145877928891958 2.020933867356378 2.095019839633572 1.3766818261846003 1.13213620956476 +1.5397770074246169 3.913542405158247 2.5627120203609204 4.347355033269398 2.9698001358678243 +2.38488415670346 3.3477243327051243 1.1431047116771227 2.2172043931915058 1.4424809636013278 +3.8515247591933597 1.1471137288556337 1.0107173942039025 1.1491356210398727 2.7079510015014625 +3.137667074381448 1.0661020948819324 2.4366614345496713 3.407913082562915 2.287949131440048 +1.0835000477389976 1.9621956777884826 1.3864854429205562 3.423898608838213 2.2188191496655763 +1.665768120787773 4.437997219229068 4.131741784856931 2.322135370675894 3.3105784311038136 +1.5835825747965484 3.57860730577807 2.4004713361675845 2.2769422056046325 1.998845447583562 +3.720913461897132 1.8941104687969408 3.1038026687924543 1.7938898511442511 2.2479058622279697 +4.985772004442463 1.7135046000598346 4.00659139938616 4.922474532923114 3.3980252912658693 +3.5506104319636322 3.842414607115297 3.911351988250307 3.5852802829819335 0.43757563187701454 +2.6184942592856246 4.943996769572962 2.847673637741043 1.7208442460927715 2.5841258489545593 +1.797118297397411 1.502432996270982 2.365455452852564 4.384071125671861 2.040011926742507 +2.941310049482867 4.1555117026732695 2.965908633647229 4.390178942112991 1.8715853082847878 +4.142833235751159 1.5300135704810804 1.790282376438498 4.109096130434709 3.493382863206386 +4.584426567255603 3.497712794581611 1.859347994569017 2.994033376219308 1.5711326293633545 +3.20993899946641 1.314179435879169 1.934848083503233 2.245370890313713 1.9210228360126134 +4.156547347084743 3.8607088357263235 1.1167123896705222 1.8857276887837346 0.8239568890864067 +3.2132128273020943 4.293205779241054 3.7167656683112544 2.3130407915185556 1.771109343311278 +2.8937835293456806 1.5356173883062851 1.5106658946991165 2.460802520745233 1.6575207011739372 +4.58501639086827 4.67214440244566 4.388141695685674 3.569723353723806 0.8230430565049695 +3.2735825727994508 1.130864049456882 1.8843125420273705 3.707308715613545 2.813282374591145 +1.5245299610511132 2.3291144780719977 1.1824015823592053 1.922100516097363 1.092936758281602 +2.9653584731982288 1.1852080158693457 2.0198074841684144 4.66816126178427 3.191036411910777 +2.2868204581981666 4.65292150328767 1.9636376127749213 4.478625979724818 3.4530567098538865 +2.5718822064882056 2.654967120247445 3.014411979339503 2.7929872273878487 0.23649952150317724 +1.477642918285051 3.300561269596161 2.8834481216924526 3.7928934079963814 2.037184833128121 +1.4235416683913487 2.898109392146606 4.3557571990795925 3.43586618701566 1.7379727978356758 +4.126068991072124 4.308825122277719 4.957951137659465 2.1091256622522767 2.854681487105388 +2.2551415373957147 1.699471754687785 4.500539836120229 1.7683114853615547 2.788160803846174 +4.260706429011017 1.674103648602904 4.653753520067481 4.0303591648399975 2.6606642903125657 +2.2934091884392194 1.0698440231819362 2.043581269634897 1.8553376498869891 1.2379609743472844 +2.484861270439804 3.769530224801607 4.442280845507268 1.6306835064053948 3.0911897255823333 +1.6343113657993804 1.5384683300610003 2.3795136909868204 2.5642006098817767 0.20807485554593222 +3.8265322564088096 2.738631287186629 3.204147818336537 1.2219942752661037 2.261075228103044 +1.403211320312534 4.026162839528085 3.85454636738445 2.496352535055287 2.953737489746193 +4.895681203207735 4.217213506132697 2.7425285782059223 2.1437625098917663 0.9048973535924935 +2.889931193584762 3.105720392737767 2.0836181384623242 4.677386667676588 2.602729367724086 +2.0151545998485205 3.3068565848094056 2.8766892553081704 2.9688805715907556 1.2949877438608468 +4.2546322342907 4.304499695225182 3.366612187510788 1.2729718481810917 2.094234140235666 +1.383745286203121 2.5996139768742177 2.136567734576785 3.158894618131821 1.588549316135196 +1.3860068869784175 1.7931148157575136 2.5068992693946606 3.6079431493606324 1.173897138289947 +3.0426725402060057 1.3320689610986522 3.933605793108245 2.1563047346336104 2.4667719102726022 +1.1597223600685864 4.099083568429638 4.145260538101541 3.287197414866987 3.062044519054675 +2.028817904730572 3.785287729934939 2.6328920792424024 1.4636798964358317 2.110033974910538 +2.746970635692582 4.823010754335981 4.937572692227679 1.6080123448694112 3.923762821695191 +3.299130413924967 4.733091813374395 4.865991131791112 3.1394092962478006 2.2443997259710833 +4.066510718089669 3.7119001665705476 4.37955364482654 3.782572996424017 0.6943590842034055 +2.7673051893849383 3.4802093058067824 1.0586851978219318 2.4610372756047516 1.5731572169598949 +2.690390931028765 2.6091011766212793 4.160157013937541 3.2708826635041843 0.8929820236210231 +3.4988235451774603 4.840461671193863 2.05332636049896 3.35773255336907 1.8712210925432353 +4.069277021160753 3.072345676051263 3.634172329099154 1.7677137282243103 2.116019805115608 +3.2835185729797383 1.4717957547704046 1.8381311105021987 1.3946480957122955 1.8652122545242704 +1.236003737893801 3.9095893415217198 4.673570159438004 4.470633008038949 2.6812764623112675 +3.698993347881452 2.3553412018450377 2.226782006864747 4.84481013959269 2.9426981485200314 +2.653328878692322 3.828486107547995 3.059394935319845 3.4604425543590525 1.2417059657055536 +2.9243163317501493 2.0306187196210437 3.9006847211521465 1.2577389785002309 2.7899565624803464 +3.0479501362876307 2.4937175687761584 2.1328221959997693 4.1769438281834415 2.1179251606351905 +3.586666173556874 4.5989784683041615 3.9071443937172115 3.3971383584062584 1.1335265052702193 +2.69920312667421 1.6371765381394114 3.3595015317668886 1.46384588793505 2.1728807594404174 +2.4143076210672616 2.664050514493782 4.930050252107577 2.0245291866733894 2.9162345883860006 +3.751435704676986 2.2539141562066467 4.551042019315011 3.8710406625472293 1.644680100608938 +3.6897967103993365 2.52837776843661 4.969535608318227 1.1227113059959528 4.018326911997962 +4.336402274935368 4.988660532588274 4.025126846700109 2.4061651329750866 1.7454162441045022 +3.002274890061423 2.3662030328171038 4.638800634701456 4.296900887263849 0.7221376910784654 +1.9773475476701954 2.9501450011420425 1.4987157873678574 4.266501336784019 2.9337640895338253 +3.739257471359098 3.280625413742076 2.7471726212330956 1.1930978494676205 1.6203369280837665 +4.693206231447672 1.9972005530235237 3.273881405936133 3.912176911316617 2.7705356468170876 +1.5249428924121275 2.551426769693457 3.4800577264753834 1.5978383485197294 2.143926056810328 +2.1098047046200517 3.041085754208277 3.695698283334813 1.4735522837752852 2.4094018420928793 +3.025889472734558 1.4991451525903203 4.900930960824624 1.077884659085412 4.11662862599173 +1.7798374665603403 2.680053257644425 2.494011352785501 1.7882430424638498 1.1438957025758172 +3.011066324993593 3.473695609500298 2.1298563535230044 2.823801536931567 0.8340178490051215 +4.617736203049217 3.4774836340130717 3.7285462476632953 4.850866399338353 1.5999307622673724 +4.362689335894123 4.455612906139601 2.4939840136033147 4.2069406897721855 1.7154752590284337 +3.1254652416157143 1.7363548521199847 1.4804599440868689 2.101418471947109 1.5215837694742063 +1.7605734616014792 2.4883492270473533 4.899282465144057 2.6348554079678443 2.378505299981913 +3.858772178870013 2.839386667853877 1.4581321298971104 4.059671563473046 2.794128530422362 +2.472883871469646 1.143411540081332 3.4471737272759593 4.79877565092308 1.895870364749045 +3.2346254373197714 1.3885872147826213 1.2270974691720258 2.2610939056336754 2.1158936054734676 +1.4842699785177436 3.2316090070294012 4.87994030777149 2.968044363618821 2.590084898575235 +4.187593749185121 3.157687628195485 1.839671844051427 1.418336938900032 1.1127577096344257 +2.248489465453531 1.3913119249199966 4.154780065463006 4.798586206448512 1.0720259713112215 +1.3094621098680528 1.2250101220511262 4.92941263437848 4.527458231297871 0.4107304230296544 +1.2928357251818698 2.5012830450443198 4.199773428133421 3.0457231257224526 1.670980857274429 +3.110928456049696 3.5143415716382487 3.122093225781586 3.180460641430795 0.4076136614963125 +3.8342901318435962 2.7125488325225904 1.889962471868928 1.794010700987728 1.1258375926116595 +1.2262388585623314 2.938705485706821 3.1768052610680506 1.5743828519951477 2.3452717382390107 +3.040912668407194 1.08310541334968 1.9454004778231195 3.868965088365629 2.7446511725331133 +4.938916179479969 2.9758332127453544 3.3635844095936274 4.250340523943194 2.1540731511766076 +4.933387159667217 1.309993360577447 3.093257621509604 2.699650328122473 3.6447097723535875 +3.779823570878643 4.410118643204415 2.8407837002847205 4.660725464097786 1.925995820833774 +1.1003291520634937 2.987270510072699 4.739518860087099 4.061832420621773 2.004945535120796 +4.556605104895278 3.7415754479775734 1.820872033205339 3.8171129262039987 2.1562121984015112 +2.7664331729520093 2.311861597885007 3.0089351054214073 3.2162225800021886 0.4996032565716256 +4.578740725031093 1.5671651790467007 1.3459968020942612 4.235169272137215 4.173356542499729 +2.5416082108750433 2.3019811331720748 4.579779597562573 3.7872043186302693 0.8280076745677444 +1.2134126482658827 3.779941964659366 2.003617972617716 3.226256115280988 2.842871217590114 +2.594182570918189 2.194047464221057 2.796633168152519 4.875778491274096 2.117298603945568 +1.6207681599185157 2.77140991348563 3.611329668658241 3.916951080415304 1.1905380684280464 +1.5348274183026316 2.1268156782955083 3.2069022199138444 3.2316007644853784 0.5925032641879249 +1.9297663308015145 3.71953012216517 2.5366779419111225 3.5853613218094997 2.0743652668109087 +2.014586385638727 4.117870909157537 1.5971918704711912 3.2494599651636213 2.6746580423695847 +4.708984269663376 1.9249921270259107 3.9042134264591515 3.5412355433714016 2.807555020632367 +4.580277396374568 4.317036390241193 3.0181263000161547 1.701895216219429 1.3422965742572746 +4.203497840927091 1.286696258814815 1.9633225535965968 4.33366235256298 3.758489355043682 +3.553616305626661 2.550455407487919 2.1057484224684244 3.243196869129959 1.5166149004830678 +3.8674726492873566 3.260782232206199 2.552008460146821 3.3370862571203883 0.9921796256117028 +3.4946771550286235 1.6399695848706926 3.229914586550096 1.113472330199825 2.8141193996108558 +1.2336366792963283 1.5440613217551085 3.4182995196779453 2.1047159196006278 1.3497649176940951 +2.1346703348111724 3.5343601366668906 3.415747043144281 3.1123634375956373 1.4321917307171532 +3.659131345788517 3.476341369965103 4.9910086687557556 1.87773492915443 3.118635206777597 +3.4698904681161613 3.060115039090124 1.0189384863696516 2.372051339413713 1.4137999488281616 +2.0267611113284123 3.2588067835466803 1.301511802084637 1.8891253725037678 1.3650004566198806 +4.721858105338137 2.9596583686859574 3.399406518237992 2.4831416624304086 1.9861745134416322 +4.033957053514056 3.395496263620415 1.8982615003036791 2.57935487852928 0.9335525534721513 +1.8773418044484989 4.32956236073562 1.4221955582895442 2.6727988623925385 2.7527067190150216 +2.6727721584147623 1.452074534780635 3.2966243510789943 2.5499065913943637 1.4309752272399545 +4.906908792928298 2.230983104601502 1.0949230337636502 2.785057872728513 3.164985633984777 +2.9610934385237173 1.1847605384122666 4.678666755006866 1.5912414357914488 3.561959246503359 +3.6388472016263385 2.326315293116361 4.106138249651914 1.0299089654339975 3.344536831900154 +2.666267158235808 1.2602657732530642 1.33237431748335 2.922759577638931 2.122772990758439 +3.565418406862592 4.138292051062467 2.921695527927054 2.84826128041977 0.5775610798225641 +4.985512698466343 2.066497235231338 4.250986421734645 1.1835134285269597 4.234388012294526 +1.4774697145401943 1.6603574010232522 2.8158788927220733 2.5774559974546665 0.3004885735844512 +2.345746080892077 1.415316858812004 2.1375097336137747 1.6882762344099533 1.0332034040339975 +1.2621629522706677 3.105947295025666 1.4879694939841426 1.7359673774814368 1.860388038234932 +2.661474059649534 4.89621344852304 1.5961282331091189 3.2191957995124247 2.7619573605132075 +4.244457174054247 3.591664724287374 3.1410284836980655 1.5148459832798293 1.7523148995369362 +1.1166022102158881 2.365450244844804 2.0048567396093087 4.596774739425142 2.8770923397356953 +3.6617174202114318 1.4819991333387947 4.5216519987356545 3.768662460096123 2.3061147099456174 +4.88431244324214 4.691720724389957 1.3964147734320411 2.0924737448830104 0.722211646200627 +1.7415775729950624 3.0188746605596277 1.9778677496174284 4.204283785323778 2.5667910343367057 +1.1313404758813217 3.5249147839359294 3.0797798189081202 2.848663869811422 2.4047063334440573 +4.241354660375588 3.5390651520721166 3.817957823786611 2.4957569376579714 1.497139184161744 +4.700480614230596 2.0347790351602915 1.0037113743624024 3.870533376643905 3.914668990019876 +3.4001181312915114 2.868638088639344 1.1978919780641881 1.1672823187082573 0.5323607676974663 +3.234460075133094 2.7588931303204127 2.247082455338477 2.572861057956848 0.5764508798869563 +4.907634451281913 1.0619981898675155 4.285013044899806 3.260489580980645 3.97976966459445 +1.320726588004511 4.919070765099704 1.126774081173906 1.441673042563965 3.612096644986042 +4.75836063632925 4.577359115545566 4.917503955930597 1.4958998372131562 3.426388228988385 +4.1080292589181795 2.185550820150605 4.966543461008902 3.4121459215839063 2.472261122554956 +3.8264091701902445 3.0107687071816405 3.785676916819978 4.805906766042121 1.3061922944730326 +4.115941177595525 3.08847228981172 3.8053986447044648 3.381056336992372 1.1116468456655264 +2.4530176980391802 4.595119107417267 3.1892150756923963 1.9468043129090682 2.4763244842991465 +2.0322607227503657 1.1588290854584327 1.406749748144899 3.82445265311137 2.5706361395004502 +4.165832533254006 2.019503438312664 3.847881517663062 1.7885016824021958 2.974520783196983 +3.0085956051717777 1.9730153956715153 1.6271401911329488 1.1152061960248818 1.155206815101051 +4.407463826220521 1.7005085225339336 3.8872794781313402 3.084204081688727 2.823568151918492 +4.535682306215838 2.1177458707512082 4.003481863295458 1.2817423186122823 3.6406431787583333 +1.6257429092352185 2.080057853296602 1.7004056859918517 1.17532852461378 0.694340041909115 +1.0623164458458447 1.5213843017653934 2.2256804092918276 4.173697110226278 2.001377616407786 +4.665365261349542 3.263980499090442 3.43119466458079 4.439289890199082 1.7263068197184388 +3.5353141923959597 3.369120204111366 1.3401499636923244 3.372060090935869 2.038695466943706 +2.890838486462359 3.021474717355417 2.045398123377057 2.393284107166268 0.371605277867432 +4.54742792687937 3.331958382631925 3.0738565522849126 3.0807671364939146 1.2154891892432447 +3.397940934404221 1.5796943110124793 3.866802505706393 1.6432012429988063 2.8723550196642202 +2.9974909833231447 2.462769254374867 4.067620171915195 4.353056686851003 0.6061363967525256 +2.4250595116367375 2.0779119759700615 3.1217015253382026 3.573753894646168 0.5699673289903479 +1.2201191486652645 1.8107122806083225 1.979153793452325 4.853667797270065 2.9345580596816623 +2.7547686844875945 3.3729643414906727 4.8920109916954555 1.32319993067033 3.621957793739837 +2.8935458171748305 2.3607461541356014 3.049995632495834 3.6859552333957537 0.8296505860369782 +3.2587782687234883 4.793035816500862 3.2493230313348724 2.9996299267341824 1.5544429450439703 +3.0785562471901113 3.7116330099374895 3.722099766629949 3.1962363083266845 0.8229936599448195 +4.092517580097469 3.987657922302666 4.150426780869438 4.2538645509822635 0.14729195537692108 +4.7812858981158275 1.2355057646173235 1.5556642596498875 2.293890522722458 3.6218137404624717 +4.071012567944759 4.54376081097157 1.2813921061707023 2.5810097938422256 1.3829305967378165 +2.8385748133891506 2.462936084637794 2.314935763378655 4.8068925364568225 2.5201097224978297 +4.385580207128214 1.3059210467135243 1.4379617217205074 4.912531138801061 4.642944451362477 +3.613692736924723 3.1514508764712588 3.973257052839046 3.0945625109659805 0.992860330294748 +1.1976996776168565 3.144139944182701 3.045757382252876 4.075409282887552 2.2020019863273324 +1.1347107883583716 1.6234705465276944 4.551547260089406 4.202438815809437 0.6006353361843736 +3.8928071631964 3.7751343806800097 4.820421028983448 3.0862218843971294 1.7381868590082796 +1.8545981955929887 4.496758352072305 1.4985582664572363 1.7119636400338751 2.6507644455813484 +1.2254036395673484 1.2460532813813225 2.2034549046651444 2.8979434198181813 0.6947954413973334 +3.03150375014411 1.226839844248241 4.3460671643629905 3.555661316456483 1.9701657843055085 +1.2243474390517188 4.136113814971877 3.7905875038826538 2.6426297722032075 3.129886640385212 +1.4961891619044514 1.6826621678583726 1.028794259942126 4.84906697646003 3.8248210167955015 +1.4240792445247301 1.783833846991945 1.0069633078591314 4.068801844447341 3.082901003621909 +4.233277673564484 4.680839694072731 2.199291304708177 2.7808490628961624 0.7338400291003886 +2.5677101527678268 2.508293574280248 1.4758681393674618 3.7644895730490484 2.2893925824344614 +2.9950213049367003 4.290329408453344 4.203967515275742 1.0319809254865033 3.426269401088981 +4.939970481252544 4.152201230336717 2.0640159547461425 3.357343825618858 1.5143570828125827 +4.2028720986209285 4.63461355696634 4.114383042087822 4.976377543841995 0.9640722005683219 +4.12120175363885 2.887861566358945 3.6227905343723728 2.602639921217656 1.600573425707042 +2.8948571655985247 2.9543115721864157 2.218338319788125 2.129954205958095 0.10652031749970489 +1.1327169057578197 1.8162377520753763 4.999940147689302 2.842986643521962 2.2626641744833536 +3.1314493766321667 2.762621240086624 1.440362576251537 1.8775669281396672 0.571998111550709 +4.995764401729938 4.219555096008161 4.022415355612406 1.6985289634226186 2.4500916003476174 +1.148742931207709 1.661124365200291 2.9482361719552985 4.620108456369731 1.7486256515599412 +4.159709078351813 4.971159153982068 1.7251501836427576 3.333631320227853 1.8015723110634296 +1.7242499323829703 1.004012143103235 4.390022440579035 2.8891854076581382 1.6647084647148764 +2.239593440703114 1.2020600041485112 3.3137046652612705 2.4877758061858795 1.3261350278996409 +1.3648134091865192 1.450582076127111 2.3645400483246206 1.2746965974154136 1.0932131593236771 +3.587175345901474 2.68874981168221 4.305137304706497 1.1788970429067493 3.2527752174158797 +2.9962435232416427 4.092524322526483 4.7143149291211905 2.439001319293282 2.525645187659723 +4.3762952538473865 3.061720604336139 3.1504398893533843 4.249319048138023 1.7133715051759366 +1.3397870305141035 1.4731857153085008 3.073214531946752 3.81504414077807 0.7537283181914429 +4.506893628801047 4.052839528404195 1.6531529406796892 1.7136368360765726 0.45806487279595626 +2.637849879271208 2.6128566110582216 1.685112127480492 1.362334441422858 0.3237438772744388 +4.583397811274152 4.80781902770047 2.446693518855155 4.879345674900878 2.4429820700725933 +1.0265999532165249 4.126938686989366 3.4675729209375676 2.185166546334692 3.355095583400609 +3.2068393284532326 1.357476798374008 3.4817996119737504 1.7789851911475214 2.5139050736721935 +3.3747331513383783 3.4286475367131133 2.3356142654747583 4.196950873317368 1.862117270379438 +1.7402307234737582 1.9294661080002946 2.1153977558316805 3.35564154252302 1.2545974179725459 +4.616813690155849 4.161464454931336 2.29871099122094 4.5700939570754 2.316575814341796 +1.4024024294719508 1.1797093178338462 2.2061896281807765 2.299511394409719 0.2414563604942945 +4.8773465254997115 2.8906402963630784 4.615656183721441 1.017219489566783 4.1104438060541595 +1.8579030119468491 3.4995132416508548 3.5975090868398807 1.064971958535562 3.0180504390266116 +1.0074029237237632 3.5888279662462894 1.6972527505881936 1.988675622436797 2.597822653761976 +3.053360699674503 4.374898092798455 2.7543829855173114 1.7672351743171704 1.649521713279968 +3.2374600966608678 3.865269550962361 2.885408297674237 3.471001825742596 0.8585246012933392 +3.930370705582925 2.8603148379440873 2.226344142790012 4.651834250187765 2.651041648287078 +4.373154837700388 3.2575481598550002 1.0419628783649615 3.154113501354456 2.3886729608399997 +1.3122005843979818 3.1491831276956432 1.4366032568962352 4.4323100077037765 3.5140807903652727 +3.8320043736969724 3.5937552952278318 2.3790591354849804 2.566273365757894 0.30300460624893855 +4.416498884631975 2.1080291034750536 3.8235247874582554 2.1916462955817453 2.8270231945924738 +3.783345455577565 3.696716641374372 4.608577083485966 2.628883577532519 1.9815879816360673 +3.7704016366809823 4.41914850659009 3.0492836999143806 4.973376010340628 2.030518091586056 +4.998751449354111 2.2770813822488125 3.029671154195505 4.477574075691438 3.0828413556739207 +3.2880961642121718 4.9920907572573245 4.180367927998798 3.1534461725019423 1.9895139770908523 +1.8406989174608324 3.638337650912496 4.974342236039748 4.432640615881564 1.877483864454686 +2.8135894060284783 4.6717149963624225 3.6447072233424573 2.0602200145304015 2.4419726502037014 +4.840315062099783 4.781366436639805 1.1063160710884237 4.856520368344341 3.750667568793637 +3.4025800562648443 4.1328326353353955 4.011049883769599 4.190155883488876 0.7518961287136896 +3.6055497374107373 3.280964484449091 1.78887766310581 1.2864863417848804 0.5981242564708151 +1.6548655144982565 3.161458546501678 2.2608747857306715 4.311166495634382 2.5443110383326055 +4.396298039023142 1.6727747925467633 1.723854337078484 1.9130487861660912 2.7300867044221864 +1.763528428462105 3.9833317622061997 4.1736871650116 1.919140819855948 3.163938378501722 +2.5202021408854236 2.0512178036509363 4.459928194665097 4.800228184073736 0.5794397219407653 +2.9313539344034045 4.368427653581333 4.009588514779407 3.862587352482438 1.4445726759386466 +2.255977779113237 2.893188889029798 4.745339092492747 1.5366908045654233 3.2713088870083857 +3.2105494407715454 4.054245841719758 3.11215851460116 1.0467339214826676 2.231098914622939 +4.810267342302926 4.925287698714508 1.4268969865961836 2.57905568956329 1.1578857280456876 +3.111168807209985 4.648305154036505 1.388707401844067 2.6216168909550235 1.970495865784808 +2.4380111330720826 3.6528448325170464 2.587470456611325 4.662456398961597 2.4044516169510217 +2.8698052089387494 1.8186439167316735 4.243994336808878 1.5327515216169765 2.907881989552561 +1.0410574146910503 2.698440137209659 4.671622250158531 2.9371972494418905 2.398988864503984 +3.8049316575418777 4.804604151585759 2.188791410773251 4.317333487914809 2.3516029574547677 +1.9411118432121994 4.85364052795771 3.369209566568124 2.7676965433733414 2.973994158793581 +3.134320419465445 3.7684279693731515 3.978913874691617 2.950569761987773 1.2081324426496503 +1.0561038879775095 4.773970072231595 4.676006144302665 3.275944581375484 3.9727448123439966 +2.7349464744969105 3.68188673672948 4.561379551582943 4.394183236049744 0.96158747296591 +3.5800606710430283 4.071031464596279 1.4844967184470113 3.957526209489512 2.521294743517354 +2.8178638232073814 3.7819766961461614 3.779241951097028 2.080823215982255 1.9529822916645032 +1.1892436357397136 3.8377898376447996 1.1327485978577019 1.3131822922723586 2.654685160561602 +4.132938074287857 1.1683028603201975 2.3881627975199007 1.3398214334268088 3.1445320108985433 +4.830765357272476 4.636272763723889 4.332306997782586 3.6713229126970464 0.6890045933675799 +4.984082017074021 4.3539297632581775 1.6158533417498941 4.416331868201247 2.870500276973394 +4.779766154838915 4.519347487520465 2.1980554460576407 3.981842152436823 1.8026960076904284 +3.945426604546662 3.1263251089654576 4.391663372830254 4.766453560625457 0.9007746360388538 +3.2341552338495596 4.359955108448777 3.790832047164445 4.485992267816691 1.3231300351911346 +3.470587252268878 3.077708903769503 3.5421602650958603 2.610719769268614 1.0109079057889014 +2.997645623798555 2.41650719469783 4.207879290534093 4.6381017150236605 0.7230582330015611 +4.281506290508407 4.686872903730723 3.4755925970594332 3.637319408291972 0.43643745552687874 +2.308182058742099 3.5677361585584686 2.809898654082223 4.176209091902498 1.8583004985364602 +1.2572110783861188 2.7996022181708495 2.6447078989738815 1.7945466419659875 1.761177047035216 +1.1450470652582267 4.7485591674472225 1.5205548805698696 3.621875822986828 4.171432508582951 +3.1371874119443723 3.719081247875168 2.9507944724780724 4.044998622873321 1.2393075320663725 +3.1683644815312086 2.8568766459882267 1.0566260453394447 4.57019362030568 3.5273476970020075 +2.3119281071863225 2.7194855422041284 2.565156217685926 2.812255151988213 0.4766140431959795 +1.6329077876632314 2.1800532905218066 4.864003876895133 4.605449685116049 0.6051598725831863 +2.094766815820333 1.3760310861834713 4.307100173896908 1.4692700311540285 2.9274324873712634 +4.073627289735024 3.9638345735192386 4.059503110320608 2.5727568208298233 1.4907947443724963 +2.5219685639650185 3.613493548240579 1.3442151875862218 3.8534748154010496 2.7363864257591928 +3.1919369473765355 1.692687412138075 4.058777325039576 4.610007580684709 1.5973740838173565 +4.252176041531777 1.3918621509892737 2.782206504535916 1.4200230707326562 3.168112886208197 +4.173851812384132 1.423735294859593 2.4382507169731795 3.128951679226553 2.8355261732558628 +2.8628616482493014 4.259712751209635 1.1598285254349014 1.888964981261907 1.5757007885564658 +3.5615849352674194 2.0499055692103614 4.930290911466851 3.733914368311106 1.9278203595708698 +1.7293300107031309 2.025811475547074 4.347845491028 2.0685730654047845 2.2984742872615187 +2.0984765587525427 4.721176758944422 2.216550530306049 2.7117715797314914 2.6690448156373394 +3.429310711862016 1.3338923617193945 1.7282844798579027 2.3680634346237674 2.190911950096518 +2.897089874636138 1.1162012239076433 2.3691196943048447 3.9370227019936666 2.3727377073358134 +3.7827680559362293 2.6111533933560396 1.3050042473985979 4.906795294603501 3.7875558959965576 +4.443520501591442 4.559196134196091 3.7812529714508756 2.8394809791821176 0.9488494808979722 +4.183445078779549 3.0296142300605773 2.6016287236729263 4.360091344681826 2.1032157323824467 +2.5254198254741125 3.7300378805400474 2.614837287009382 4.400689757742608 2.154152665391848 +4.001734441901093 1.8347468897245873 2.5530267212816464 1.0780913613184038 2.621310620158898 +1.5517489299231944 2.9604380196396405 2.193104218765122 1.5832490114298778 1.5350336561131366 +2.386429944612077 1.7342931411023752 3.5539509966723255 4.072443437354563 0.8331367363983389 +2.735704519937216 1.0497653579340618 1.645146277821706 2.725058894214757 2.0021493743027223 +2.373404751840177 3.5885918007607445 4.169552608325113 4.624283969406761 1.2974822444316705 +4.867400358072666 2.547282421349914 4.90654931552065 2.719912634770154 3.1881542017139295 +4.458954217142555 1.568498863373064 3.800672812833807 2.458994268212896 3.186664944613851 +3.4363919056249705 1.2638130254706548 4.351510540570943 4.500529175625493 2.1776835270732295 +3.6967697456507143 1.6947958150851852 4.980808853271656 2.4185148196345208 3.251653476844735 +3.026603827334832 1.7104140419008886 4.630227031769076 4.095469312348215 1.4206763775613536 +4.755530031895365 4.162026409687162 1.1133106165273254 3.9799136179017536 2.9273980455454187 +4.946176064837221 3.0068267807528013 4.151344707616541 3.2885313937199006 2.1226216008314003 +2.9673064067881576 3.3951371521578215 4.781195933946833 1.8723422287472675 2.940147789642011 +2.804533087656369 1.6661725491871708 2.8793467017143075 4.37724096698517 1.881369699308251 +3.9835317601438263 4.263875745841032 4.710039048343366 1.8808027109189642 2.843091803533477 +1.1619937179778552 3.108725921069618 1.3973058564448495 2.38423441710423 2.1826117965409484 +3.94498286241105 3.0076149825718574 4.25026225811149 4.795598303522355 1.084458364612761 +2.5216589338312527 1.5460173933694779 1.8371184673480423 3.6860953576479707 2.090596076801499 +4.351265612199986 1.2111177807934492 1.3457806031869022 3.830341149492392 4.004193990223877 +4.8784694736035386 2.59572856298291 1.027960784505034 1.0629333244013175 2.2830087918288653 +3.73215296001342 2.5222339223762877 3.356438404602927 3.2190234302315255 1.2176973978859678 +3.3780535839420676 1.2705512644400971 2.941913262183095 3.789129754888937 2.271418458192804 +2.055960177099994 2.711976867385881 2.6043088452378225 2.8611825349413973 0.7045154294943281 +2.6522472362825047 3.5188911776673524 2.8116104583630395 2.2253233675499295 1.046328951139728 +3.1267163244408387 1.4919872726784886 1.6241857170397567 3.0144738290094364 2.1459823174854096 +1.123682472626602 2.6425794456323977 3.892648027784303 2.065867813190145 2.3757470334694406 +3.9605558847393363 2.34160508595392 4.438241558013127 4.2773356284054875 1.6269272900381369 +4.113826005485414 3.1556235489825104 4.391475444655039 3.835143356496885 1.1079969945638894 +2.7956985516860815 4.502895108858645 3.3255272232986792 2.4527900605482986 1.9173393648666996 +4.372104321440833 2.886945207362593 3.304869060183568 3.9695671417113325 1.6271205037477567 +3.9966730854552615 4.058867363265219 4.168736625455037 1.0887649441609626 3.0805995659555867 +2.659181291154854 3.427705974576318 1.7800035720986789 2.3038272206068227 0.9300652685507855 +1.0279999157794522 1.7316109918580795 1.1910076934847025 4.385790884666361 3.271346540040872 +3.125617356684009 2.9609985508984877 3.826266152173664 1.6605122428531436 2.1720012308825627 +3.8199636943929898 1.0056581191905272 2.2736860449665395 3.2455630427458586 2.977391604983833 +1.7661128880832555 3.1804666254170644 4.384307050293411 2.020810149330148 2.7543627384883536 +1.8160197619992533 1.021928855519676 1.0871908626287503 4.2960678680444815 3.3056727006222784 +1.5347706046724596 3.645137130450184 2.3757747618518623 4.203457549962075 2.7917863899441633 +3.1533575057272962 4.061421351451219 2.748751684931838 2.0126318803003986 1.1689535126263786 +3.564018158736755 1.7398718624009506 2.0256181659160566 4.906256951541679 3.4096318750982917 +3.9188201357579344 2.8966364557931743 3.616984771357432 1.7775856585942393 2.1043404124856604 +4.889158708914321 1.3463115100309757 2.2103734237073813 3.9941191863835317 3.9665495358687615 +1.950403585523369 4.361181127936382 3.702332304778338 4.799024770792238 2.6485057530642773 +2.693844711834087 4.243861431511778 3.013835419448204 4.843494915262937 2.3979586530850385 +2.332290096486921 1.9979360307054712 3.0608354440447973 4.83886775255245 1.8091963772353843 +2.0379006092773455 4.41201817918922 2.5068858971917525 2.524842084720439 2.3741854730485628 +4.591679486745226 2.761996401643112 4.1159545233319434 3.2039468220236187 2.0443821167175393 +3.150259936844161 2.564934811445573 2.1111494961730592 2.6029060616221824 0.7644802300159178 +1.5530746073559882 1.9468811857101689 2.8962608921738893 4.051083193131365 1.2201221938575444 +4.996120018194737 3.3427395412439798 3.72917247045757 4.151072458720371 1.7063606305989552 +2.463205158531998 3.3037881393945425 3.2002693382153153 2.8305519881317664 0.9182977004591497 +4.414344124628939 3.7896222394520147 3.9560721541133357 1.288199683375836 2.740040319765025 +2.7887302051190637 4.925047084883353 4.0942254326966445 3.727771112998312 2.1675189916564506 +1.6017344375675684 3.979524138531362 1.1179059420832744 2.0749088942676943 2.563150115092595 +1.0766840840181722 1.6496945458929253 1.8144540686266808 3.7391742173566924 2.008205328233444 +4.222276533935629 1.1142066136498743 3.8359634211281994 1.8238552585123982 3.7025231785162713 +3.532199783630082 3.079642074441588 2.178228932073124 2.2510153436122082 0.45837358328188404 +4.10312448602844 1.1048150813205102 4.213384999410579 4.490224312278384 3.0110628175959957 +1.356102111262513 1.1051794549944534 4.108033281798801 1.294936002855899 2.8242660073414787 +3.1882522595287637 4.590181004218211 2.609318028204723 1.45266571959485 1.817484186505918 +3.4365186330397397 3.3256263155009647 1.9897923611544015 1.9688204151498825 0.11285800196856657 +1.0497522419199221 4.594675197749248 2.431913618972011 4.932717403604078 4.338259827626256 +4.655130809521959 4.365257333808248 3.5217714685057935 1.4010440607134442 2.140446535208017 +2.495134962787583 1.7396282113967905 1.6346093576209038 3.4702486583590924 1.9850345321458907 +1.0469829168996396 1.3095724953735823 2.4292427042273497 3.634240792509561 1.2332776165514827 +2.8714988823537584 4.883413221467471 1.5344049915100322 2.715732589277723 2.3330954119321716 +1.5588852370453825 1.5270156342046417 2.121222169524994 2.610462248359188 0.49027698938754494 +1.6797974637381041 2.8764655314750445 4.659353614794967 1.5285371045479987 3.351719929405837 +1.1429732530407435 1.8166019033986243 2.646634757873476 4.396239898172057 1.8748049780022982 +1.2901838394471836 4.219438315153978 2.1126921406362795 4.158320081380879 3.5728315738925165 +3.312264584610806 1.5293514232652972 4.284437651911405 1.1466001041739289 3.6089893068406527 +4.85265712328609 3.177367339522807 1.0062902103794822 4.861601273361301 4.203572201346329 +3.990596183636904 2.4055787598015423 2.9393094891248563 3.202455107266916 1.6067127466380082 +2.9635680951508663 3.316492362139981 1.2896887441766527 3.971611505068872 2.7050444051108564 +1.8419064618301442 1.3378373861632156 4.386996135340157 4.439791925197921 0.5068264283464479 +3.7244437614282946 2.654910042320002 1.1780817277366191 4.994003292106642 3.962973600938288 +2.36743702909484 3.683621698281766 1.9017683899884732 3.6399349747476886 2.1802672221028807 +3.1763606743728685 2.563148174015839 3.2748720341898263 1.8642359924600367 1.53815591304042 +4.306713876659762 2.2649584875076085 3.614466536726073 4.153604021035033 2.111737269671314 +2.6826814878700023 3.825436921775507 3.6795676362042933 1.4947437862778474 2.465632826867775 +3.715132172917965 4.37433119456609 3.344673576641957 3.1510986985533003 0.6870331750133204 +4.190888423001834 4.669064657344125 4.865235991238171 4.9682185031515305 0.4891399685670337 +4.980728787065873 1.6263172343780292 4.307084475131996 2.2008990797085968 3.960819837445335 +3.489491817937679 2.712630058313204 1.1157541910857516 1.0499937350583748 0.7796400651222103 +4.830390630693474 3.3213310502830833 4.555978836436818 4.543750233092727 1.509109126593611 +3.0406925536086495 1.1606951746797813 2.0782800356754305 4.303580992193268 2.9131348221218007 +2.908785263179737 2.2967824302326814 1.8744500792075898 2.951250773353925 1.2385665918509392 +3.155452068745729 1.0672463368291387 1.2481082484312842 4.893942382771842 4.201512788738369 +2.455811810602972 2.633523488761243 1.7112311185726665 2.3395826054383715 0.6529984928008418 +1.4138921982537571 3.9054592215614 4.191150489892053 1.141464660803539 3.9380820062280826 +1.840680407785937 2.7270049978475455 1.6796131190120542 4.967993308936274 3.4057327482399327 +1.0013800625841571 2.2162071208866574 1.1327293306621251 4.33473886515413 3.4247145633704448 +1.2496522178116236 3.5387237714756314 1.0675098390041042 4.519725975500792 4.142178754095708 +1.7909977669106878 3.9874605989394163 3.8730603794234733 1.8521253487226392 2.984732378421463 +3.143738124354532 3.7437691195084954 1.4203688551066773 2.0208413429061336 0.8488842110379506 +3.50252534540207 1.9329144723563316 4.0265915343178875 2.635681173080685 2.097214802012519 +4.687700195292381 1.895836205091053 2.659109768497919 2.6174489355956903 2.7921748091373124 +2.1871489855941304 2.645308633869087 3.1525763795672375 3.3898827704554795 0.5159695596290881 +1.0793194972854843 3.0259121097561885 1.3475102424707188 2.6282392788604563 2.330126533812554 +3.8877728611030005 2.349610101325384 3.43287574118252 3.4074869324105475 1.538372278474087 +3.5409316695600657 2.5248098640719854 1.7794790388656314 4.647272718083235 3.0424897880106014 +1.158560976711668 1.0616522859280564 2.539185772463665 3.011049837854844 0.4817125600987426 +3.76132545237157 3.8069372785316733 4.7128070530342505 2.377909471936476 2.3353430482269406 +3.8752991994506654 3.8671072193382017 1.8190983478380534 3.9722256674700245 2.1531429035444254 +4.61299797612033 2.6325205701447203 3.6487371158658677 2.469075952934428 2.3051878914545423 +3.074029863559424 1.2180826229680317 2.7165590901352514 1.7100347485036824 2.111310353821926 +4.502544553755769 1.8970175584109992 2.8993472881397193 1.5162064638728814 2.9498897374688244 +4.679274580909241 1.001694540168475 3.8996400085704064 3.2525530580022095 3.7340750498149475 +4.076382693643416 1.994347295238966 4.98065118107635 2.916062301657847 2.9321320981885743 +1.846976523671167 4.039879396012233 1.165182805794224 1.1774615714018974 2.1929372484424956 +2.187257055345228 4.283610361135326 2.2022112262975106 3.8845996617979823 2.6879598268208538 +2.9127753110616275 3.893176117297777 3.2643177645093715 2.6150494953401586 1.1758975406975205 +4.025491382124593 3.57461876959024 4.888490065248341 2.088192291212409 2.8363627652336976 +1.365800166464115 4.406705118646882 1.6990406062067849 4.19080914287629 3.931413660319372 +2.312479318491173 4.103735391202266 2.159133287746908 4.191885371411801 2.7093688105660942 +3.284080972941997 2.785905207959529 4.930528308657374 3.970202095812772 1.0818528217333094 +1.7338263058431385 3.2790757201612504 2.4716534715340117 1.6510572033541302 1.749621098352788 +2.8723176761313063 3.099469787757545 3.3306241300192205 3.557984581551843 0.32138894930811973 +4.747232215924734 2.308366497831129 1.8016324866938196 3.1009157178258104 2.7633680365801845 +2.9380210332921415 1.8743087820397686 2.8708575940454653 2.534505734121351 1.1156237390530923 +3.440346222386267 4.609141785741512 1.3366405771034642 4.264358646267931 3.1523984775771954 +4.1499691870325535 2.464774563760025 1.7269325254646901 2.410057179604661 1.8183894553699143 +1.4637154824798375 4.6386001203429 1.7717090000604943 2.562928149557244 3.271990251554737 +3.4720712018089532 1.6164348092448422 2.137676128609754 4.4970653878539455 3.00168354395416 +4.787671853509833 4.892968822684194 3.4824377110755793 3.493991133832558 0.10592890679464159 +2.486496272311339 3.7350731023847947 3.7014913234504148 2.5846617617509193 1.6751872643027603 +4.763842935505333 1.3997270200912109 4.094418930522698 1.3944313527490122 4.313607401291269 +1.6326566497819464 4.810911200163693 1.2044457518566793 1.6248119047157341 3.205933512955595 +4.228167196815161 4.8719654572599875 4.996974146529677 2.1052317737125277 2.9625411644225204 +2.268751345276647 1.4061041393370282 3.252344421622546 3.2198929069563875 0.8632573791862764 +4.538850627596078 2.432688732433769 1.3186983123286296 1.6159566860738894 2.1270356060478552 +2.397455054980935 3.2348844493331708 3.4447749733526662 2.002822025126267 1.667488019574341 +1.3844647159139791 2.0123093834675467 1.0077755580880354 1.6958926720677372 0.9315009871853083 +3.762089109331507 1.3413767898396314 1.7092777881200694 1.7070838547286682 2.4207133136915373 +2.804966178157144 1.651682165454405 3.6030374282140634 4.428442790467383 1.418223545846093 +3.2667257459539516 2.074056006122566 1.1223414857625476 4.823282465594399 3.8883705127608676 +4.938867971227992 3.963073406321624 2.1123950273742564 4.214191311966427 2.317266202840378 +4.131650975691871 4.133724703971486 3.105716195253751 1.302924865781237 1.8027925221639491 +4.28346867051293 2.952791467825564 2.288328297730601 2.5213703141761155 1.3509294575146638 +4.996678503400249 4.648253950700486 1.5088454119089554 2.4550378643077764 1.0083054229252786 +4.81336237138696 3.0832983555039815 3.2449237840871015 4.658028834650297 2.233827966290231 +2.601815673112807 2.2724089225720485 1.659553743042086 4.011294638060381 2.374698727123774 +3.2570936832527493 2.3859144267159067 3.327968333012526 2.953602065977433 0.9482106300363207 +1.1262375432263387 3.495945008060101 4.114060333356129 4.918786938408491 2.502618304449953 +2.7772137385135682 2.889678748198149 1.2716163796635356 3.881771123982555 2.6125765381504977 +1.068099369599798 2.920865248744193 1.41617981100589 3.2892156801838053 2.6345786703282883 +2.9453730664149544 4.791730556404627 2.43994941336288 1.4154129105380133 2.1115660128117164 +1.2096021750159687 4.206386591464433 1.3009379419309846 1.9106896978152514 3.058188032556584 +4.057566937985545 2.8269978080590716 1.9773762268412933 4.842717309137836 3.118409835384746 +4.813406504339371 1.3379416943638671 4.496506871918531 1.4077233766605053 4.649670862110183 +2.0099929018770832 3.5186662459482134 1.5565821552724635 1.0907243344195008 1.5789612941299853 +1.8773943888962075 1.8666736471916425 1.273825993481164 3.626972582393788 2.3531710101932273 +2.9160716370033604 1.9972022215034686 1.1395410289725043 4.240524471195439 3.2342571499004085 +3.9723176416715225 4.621308504854152 1.8248784705108316 1.2210300125751505 0.8864660741651847 +1.704710363593092 3.1333466273291894 1.0584623702541074 4.476185568478147 3.704299317514798 +1.4194301659882607 1.8572567368648012 3.9055718045520162 1.0980360141747445 2.8414695705593687 +4.868386385099392 2.647635614942319 4.406927906872516 2.70396287820581 2.7985395962921493 +1.0554801262666778 4.787127801857414 3.915195459080806 3.30067292004038 3.7819085559715004 +2.871034642651533 1.5016281932477686 1.4131724247223092 3.978502046725418 2.9079529042257954 +4.952141961778686 2.2105290943446883 4.945910704109268 1.5647842073653173 4.3529825983874195 +1.1741341374547254 2.117340945504389 2.4775712455478147 1.0257409719486952 1.731314594777659 +3.1305855899032475 3.614527538876932 3.4566518525693377 1.1486017886206024 2.3582397901125765 +1.3496857384791694 2.113795228661933 1.0800437937837293 4.9350105993888445 3.9299659521813504 +1.5742627306918653 2.1909991906479696 3.618609056524305 3.0880181934430864 0.813566546156158 +4.8900391026398795 4.592932941843879 3.493520721027845 3.684088503330146 0.35297046680219046 +1.4462823261304427 3.937706729943935 2.84512934519542 4.687929511209887 3.098888189622266 +2.7357612229769086 2.1739647273940452 4.465282619837494 1.063148094040875 3.4482074522955513 +4.769280715415322 2.3798735598088183 3.438283963731695 4.199955328012708 2.50786957843291 +3.3248359679151682 3.3564054781602155 2.185660282074838 4.162141568352268 1.9767333935010039 +2.9215097641257826 2.775562079663536 4.345884759582976 1.3255459429861878 3.0238629753415047 +3.4855740755495632 2.4288926502091686 4.194593148926959 3.1691068915102143 1.4724801183072083 +4.169606212658078 3.6189218181276566 3.128199731521056 2.286556387243651 1.005791639130984 +2.4562127267460316 4.812508946266231 3.0883000197017156 2.2451140338447093 2.5026175258858143 +1.0757544732004871 3.043523588317117 4.939944972373752 1.32108614720847 4.119254117784375 +1.0038920536752585 2.1442292361640196 3.2714355038104546 3.1523797562460527 1.1465352854555 +4.303037636870004 2.0136585573719015 3.7125796686371455 1.9796315452340796 2.871300361865645 +4.522970861663458 3.1137001969909903 2.0525306400874404 4.739777124736463 3.034359483575555 +3.537430060657185 2.799294060436537 1.6554351224924178 1.9757936616786917 0.8046579077168758 +2.041179080821931 2.02575493861582 2.5686574894740772 1.2627180661185755 1.3060305056302837 +3.2000652656003155 2.5592029584654834 4.879866953214942 1.7546293790219982 3.190268702139927 +2.791855071277832 1.8415223081159318 4.225526330130586 2.933974729305914 1.6035079975889446 +1.1983608085405644 4.441428726196882 4.863803040582056 3.4265426878596985 3.547281612733796 +2.980214189521958 1.881944481199803 1.193343947068907 3.1458912252720443 2.2402315116604603 +1.414362324817982 1.0994744158231384 4.1415910684476405 1.0585748465895728 3.0990552462760546 +1.9433183934532 3.6976739885236554 2.433196217646372 2.9118529072295862 1.818481723976838 +2.1297703457028234 1.589387461460988 4.478384379351761 4.631805239905012 0.5617398170277991 +3.1923407665496124 2.6546383771755515 1.1636242840275228 4.371464516212546 3.2525932445916808 +3.243682934668481 1.9886423951676373 2.562616388579517 4.298244614919412 2.1418524916198916 +4.095043944221953 1.2806910682511767 4.708586924257459 4.255638630844679 2.8505691128247577 +4.666682974587921 4.3675276380618016 4.330502142315428 4.309887209306402 0.2998647875877102 +3.6401245279406163 3.3191679870806627 1.0520914821775516 2.9761807294446117 1.9506748915617664 +2.3458004211006807 3.6316547367427643 4.582761950960263 1.8858914262673867 2.987730233473665 +3.8660448289235134 2.374025310246448 2.4062179092063736 1.343598255222128 1.8317430969289716 +1.3309277040429284 4.529376721288681 1.7665337090097006 2.2666015083807114 3.237305039672364 +1.948543296542324 3.240510300021383 2.578951126803409 1.285867549465924 1.8279069659199196 +1.7129433374064664 3.4934874857479246 4.378977782258187 1.8287071058595354 3.110340493754959 +1.0538655780788257 3.9669143513401437 1.397520320439516 2.6668164941442876 3.177572333083992 +4.2859877673387885 1.9444601425187402 4.275001430594253 2.952487701498172 2.689199542883168 +2.104960040210795 4.774025032370535 3.7096759626385967 1.879382461180894 3.2363377811734932 +2.7046875245144264 3.6518588306348243 2.9062821336901017 1.9486879641012629 1.3468927487993831 +1.302768889479744 4.807805192542701 1.0002655885015619 3.431496685424319 4.265696207236689 +4.4798457848165985 4.230172345304245 4.5375117638052505 2.6096596314521237 1.943952332393062 +4.242947366020592 3.7092038779710217 4.124928620865297 1.417131688623388 2.759899696962557 +3.4255595273473975 1.768774635983811 1.5102321237626577 4.39492062370696 3.3266144829182656 +4.938100122747366 3.4918709753791815 2.7119370950563577 4.044094729565107 1.966271270673824 +1.7021805847973033 1.4999625173276976 4.9353014794732815 4.046480020199851 0.9115348228543392 +3.1420237787701204 1.6854716284110753 2.6340675556105455 4.33638977627178 2.240411816981993 +1.9491233900150249 2.0430753911760853 4.406094492019305 2.804558119151854 1.6042897905738847 +1.9294548249273826 3.255411435255391 4.784476874088313 1.5276045953105597 3.516443938518505 +3.61505902369327 3.69500702711342 2.2711456053350307 4.332589735251517 2.0629938400339465 +4.3677485336095785 1.946642614401247 3.7276351967217485 4.20202099288891 2.467143237761191 +1.7666185283379128 3.2531457113314777 2.5279957273011786 4.625750825586577 2.5710580542183727 +1.4070633323378998 1.3853918612593286 4.856980158163015 3.6375648430175653 1.219607872830438 +1.3097927397595712 3.6967398878291196 3.1661333614303646 4.750465646029566 2.864895369066849 +3.860478649459791 2.840616528648197 3.4940506309866635 2.300606682236153 1.5698494208921865 +4.9921433855327715 1.5470087261642425 1.27808227258335 4.446533109572756 4.680601833909948 +1.0350533537035522 3.9847982886483457 3.8777535598387476 2.6331636029686374 3.2015620159500906 +3.1381997665582704 1.1420775609011597 3.4832451764121797 4.6833339277147585 2.3291021598290595 +2.360895198930601 3.4584761522273517 1.0013319564079781 2.153988822610643 1.591634945659322 +2.689264507355796 3.732473079492682 4.883301839636697 3.906458324458688 1.4291631740725794 +3.397808255831584 3.924921190172501 1.7792697959367936 1.2165565184801164 0.7710345505718453 +3.4577501819723455 1.765078464453095 4.18593788901549 1.8706052481001585 2.868083468342149 +2.168969799326905 2.9657581425878297 4.404564576807383 1.1162448736546877 3.3834772252962955 +1.6032555863720046 3.642780851738109 1.8571120903724978 2.714114477032785 2.212264992899383 +4.58432329524593 3.1803313447894426 2.8926738724873613 4.938356001863448 2.481130542997545 +1.3406716034643082 4.9590369448250575 1.383071199526844 1.0728737449882177 3.6316373999014457 +3.035779669029384 4.3213822378166125 2.1366260892525273 3.2978703718199656 1.7324151490528719 +2.140737750812486 2.2603619682427425 4.783140921607527 1.0636390645193612 3.7214249983411074 +3.0283213592120477 4.19731951208648 4.754870838891103 4.491760360403553 1.1982419644269608 +2.364295007751315 4.991821109599654 3.487733665266554 2.042432979033752 2.9987976739885824 +2.6028323571407874 4.199504314119038 4.3502656304074385 3.795447252884752 1.6903209074722059 +3.2752683568375116 1.3463508601731453 1.5035310558542854 1.8772886084651055 1.9647944974148202 +3.865220645628573 2.8003911187040598 4.25846798384886 2.635168257015762 1.9413819625582938 +1.8389402624700706 1.372150672857218 2.3940153906166084 4.422535922062943 2.0815350267219275 +4.4327627079028264 3.1075831633714337 1.169885746516214 2.6540804957264275 1.989707234451239 +3.8847873343143546 1.4628162952600037 3.308382042580906 4.437591572319576 2.6722757859305317 +1.6287997773602085 1.8039037974986498 2.7606034248657356 1.3618550074896731 1.4096661140073856 +4.342790171239935 1.6824761010356442 3.7233354384211386 4.865669451430501 2.8952025748477417 +3.080844293292768 3.886942363498169 2.8211170971200006 4.372377280827955 1.7481997186667508 +4.194889627470021 3.931146752568755 3.3055897064842545 3.4905507968954312 0.32213492363802504 +4.043945937670154 3.498962601370318 2.5141473741587212 1.8286629893465318 0.8757258010735127 +2.3442090505831406 1.1232675440318936 2.802312670322949 1.329839643995561 1.9128185945565683 +4.04672986054824 4.328298499395254 3.8422009041027425 3.918700370413719 0.2917757130537507 +2.8849274914874785 4.779949719758985 3.385506052669763 1.7024731894824328 2.534503672163773 +4.184467877151151 3.9729818626187448 3.7973033765137956 4.304833835460652 0.5498304294067473 +3.910028582148667 2.624706845149737 1.1246108147839022 4.484835682542783 3.597660785775548 +3.22658293130621 3.552999045821567 2.1658081966122564 1.3257470871001864 0.901249214995471 +4.596289708027161 2.11504952006475 3.8860678423055317 1.5410244151445784 3.4140564649153844 +2.8245374556455323 2.9368545534685735 2.361914615385681 3.868444632673342 1.510711032412271 +1.1075551452444095 2.694788999383652 4.534450295272139 3.3159416057775024 2.001018424227935 +2.2650216512215593 4.934091929244179 4.922689271996834 1.0572310972414733 4.6974145069183315 +3.8172910690142894 3.6867376797864315 4.280465417012444 4.511316089957982 0.2652097672377256 +1.3671934310842846 3.0117996843079635 2.989962726257209 2.5379858886265185 1.705582829972519 +1.457072008921469 1.365402884490917 3.675293365362988 1.296528593328925 2.3805304175843105 +1.357202213291934 4.701470714431052 4.004875012753381 2.8915429735584066 3.524718433748903 +2.9893943980323883 1.2896943202147706 4.588554808134257 1.1438497455074974 3.8412202908736752 +3.757588286987906 2.514871476178744 2.500126801698121 2.213613055698897 1.2753176853295036 +2.6038612976746487 2.4802074941265446 1.8102044142158924 3.5659184899986607 1.76006311791187 +3.659661802510539 1.7054794212290654 2.474476345929799 2.5999428650390266 1.9582059714770348 +3.046510875100399 4.527964984607063 1.7756592409482144 3.8238028169402454 2.5277654927725415 +2.597304713869239 1.0315739569127609 1.766653666262462 3.558417782135197 2.379481340588472 +1.5506031976474182 3.8728804389682487 1.2702400794289757 2.7458526010312334 2.751436697339421 +2.7415247330386414 4.659054574932245 2.457079963041921 4.02726555913182 2.4783872781953793 +2.943948142461262 3.873420696665 2.070379374377255 2.496649017520099 1.0225580852367988 +4.098660954548424 3.2566258747924475 3.638829043416188 2.597129947875143 1.3394626091051158 +2.1471284265136905 1.3398638071675357 2.201066036133239 1.9152815179554605 0.8563579604804273 +2.786847715305849 3.0117704023014378 2.2933414030291672 1.2551520215669516 1.062274638173299 +3.747790052967632 4.142230439892869 2.5622173766591168 1.9889244735913767 0.6958792794339894 +4.281131036573208 2.234150806131793 4.59020808849465 3.3222097310070744 2.4078928336637366 +3.8901219138689322 3.310471277941221 2.347497180991342 4.524312393787847 2.2526693788467256 +1.2699576378558306 2.375644351384596 2.4910277399827048 4.02480590054739 1.8907719466660255 +1.9173936688180806 3.6598427113949783 3.7635113678413754 2.060686454893775 2.436337692137966 +1.005127218722687 2.855388059268675 3.378133082965918 4.547651212800827 2.188889634968033 +2.283240375096063 4.6249711864577865 2.7487746785133265 2.072993273429282 2.437290237197491 +4.017652049496448 1.135146843514856 2.0491013466696364 2.3249800078123006 2.8956770017018214 +2.3126872606222926 1.364436091009054 3.411749681648222 2.4379572210351173 1.3592100783248333 +3.0149788115905936 4.556486252623598 4.681316341761368 2.1326109120676016 2.978614536678187 +3.4916621487101818 3.1664557452149666 3.796124931980628 2.8504266725931156 1.0000521999790128 +1.4307830905502041 1.3360149641064738 3.6013567375383473 3.4950634617354943 0.1424052606842747 +1.7563424731950312 4.655051648844731 4.990189166143508 1.9969261847673843 4.166789910791333 +2.9620774375963266 3.507537373124214 4.006769227529252 3.8760966959404706 0.5608937972360792 +1.9930887722987642 1.9078194482804394 2.907041154330125 2.871930033057185 0.09221522897865186 +2.8801945545309384 3.773562296672911 2.501567375487443 2.204355967986725 0.9415097150047917 +2.8055442150825396 1.0076650561471356 4.1295091228952785 3.6336893416746077 1.8649951006863232 +1.2138526743562181 2.6510924734900465 4.12427606219987 1.1826787748951517 3.2739353751857605 +1.453656057466422 2.3332697413097523 1.6861159583007748 1.8622841548097706 0.8970816385734726 +1.6371445607889683 4.549534141088111 4.8119313365357135 2.0918705119643413 3.9850651132450663 +4.728994530097124 1.6375969291827932 3.6373421758943554 2.787476167794813 3.2060897302885847 +4.934227576165949 3.9785951753563835 2.2657572139022477 2.4572702891458724 0.9746335431670323 +2.1607103980909654 2.266235024927638 2.931463246601092 3.658247385173817 0.7344049502487828 +4.46759970643375 4.367444252568843 1.4237269428459918 4.511869112121669 3.089765876664051 +2.5774002417470916 2.3822514084279605 2.1214583768988398 3.963451711247373 1.8523019491784394 +2.8451721406252 1.2949558455767702 3.914988282020023 2.2623021257649167 2.2659528001507354 +1.2288738622773732 3.61929181459051 4.72542340231643 3.6436012175914985 2.6238211116811976 +3.5653855602970737 4.746208801260629 1.9067080736977298 2.5543882660007875 1.3467862331867666 +1.82121431828185 1.6809248624379314 4.689460267174578 2.7510319301359574 1.9434982761132809 +4.306429777917396 4.387803606809207 2.950082151845675 1.9527280800902425 1.0006681989928798 +2.7997967876632655 3.041124531287234 3.473983868453796 2.7264605586083173 0.7855126851967291 +1.8839748129237566 4.69830360072546 1.5974110818807352 2.7215991283963596 3.030551977739042 +4.180552303800278 3.4578403276771716 3.504650542724579 2.6782227191951686 1.0978595301473333 +1.6160059183271516 1.0755202649753346 2.3914718751810446 1.3454500462612695 1.1774066451552803 +2.3026403319599953 1.2749514422872723 2.105884615455451 2.6914557177535703 1.182809354800421 +3.3941804911732634 3.172780990607922 3.9423216132914045 3.0039589719359476 0.9641276811409226 +1.882951225524128 4.541358568592445 3.263808445333885 2.664989445557275 2.725016292827074 +3.571724023878036 3.6778267802521385 3.1473376754355127 1.7069862886392095 1.4442541024197286 +1.6913572064354319 1.0631139508112688 1.9917118064395156 1.8285877951940481 0.649075520476669 +2.7311536776362484 2.90629080092926 4.808811331352219 1.4455527880986834 3.3678154701116343 +1.6581080343920709 2.0066243533329127 3.8613722077293966 1.4587111606453687 2.4278063620772956 +4.899267362085336 3.3166555036839043 4.345667948702065 3.8534346422370183 1.6573937137404455 +1.3501639881762686 3.1962165462641785 2.8258727834792343 4.053612748286612 2.217037543301452 +4.0708812026771355 3.921760705943074 4.7838603077191735 3.9104173959016433 0.8860809459358095 +1.8707082522234422 4.185458919701433 1.0957359887047198 2.5274082961078532 2.7217193551824583 +4.901837738098323 4.84312794779464 2.6287136156917517 4.233992167202485 1.6063517881889702 +3.2669889263670413 2.896534609633923 4.194156048449878 2.9092894924427997 1.3372054694517568 +1.1282781750411712 2.124696354649667 1.5232645616247469 1.934247539565627 1.077847946981142 +3.549933485352806 2.6113656797395577 4.899600738842908 3.39806825692275 1.7707369426300956 +4.375347626964182 4.310105881520062 3.806122178023314 3.247751270552488 0.5621695079407892 +3.371814479200508 4.128162973619858 1.4293800977385351 2.0270004804349746 0.9639570357773508 +3.4825576392597193 1.159536978090609 1.6557525705865692 1.1480484905153983 2.377853743429037 +2.379815233841935 3.6192599886264913 2.5397920672530763 4.622843357289154 2.4239071717134544 +2.1906908136969587 1.7840352884330462 4.723097533173524 4.250344538130751 0.6235896972766477 +1.9613861452986678 2.9494164129300753 1.8651490392408414 2.4785131166858148 1.1629356393436887 +2.5282073473825792 3.3247160287958804 3.5725945890344644 3.132655860018403 0.9099297581984134 +2.3720986653042715 3.3168320980964356 3.8079281412935333 3.435784434838598 1.0153877078679274 +4.834715661742434 1.5809656631540592 2.8212581034069624 1.2623759460041803 3.607908346117263 +1.460133963090473 4.18416218006976 2.204799609389484 4.3113672034998025 3.44353840626979 +4.401819856425716 3.354070919826501 4.3609699742201515 2.171335020472555 2.427401710640005 +2.251220294054624 3.3773875143658576 2.164281952078345 1.989811346038441 1.1396019482588917 +1.5866115615272407 3.5104093390153985 3.529418017723605 4.676667399300813 2.2399060320017137 +3.7926825980661065 4.215541540292694 3.0891916394671055 1.323080304519411 1.8160283402116046 +3.3963130589362556 2.4933080525750513 4.073507174417333 2.3749955112753796 1.9236319583908572 +2.98228225631886 3.1277909385826033 2.135185960964862 2.977547494761214 0.8548366687466525 +4.396020021281224 1.237377130396569 3.4564785127065507 3.3353665913668045 3.1609639367804836 +2.820952976071859 2.3456530481529207 3.61817095293327 2.1151087016120225 1.5764219463159745 +3.87868301189183 4.282151168660353 2.168545908565094 3.1084301078805723 1.0228239641546766 +1.1430452510465483 4.261959264782012 1.4449922589903585 4.40171015550213 4.297651142732325 +4.8634417375080545 4.728776048641464 3.595543584857188 3.192776073801041 0.4246840186777422 +2.9465857918128253 4.051950505963756 1.8839259519481146 1.2174811658181137 1.2907284006520625 +4.3036308120432825 2.3500446428916577 3.0306027618265463 4.34484485746076 2.3545129445890782 +2.2562316515559604 2.941507456648757 2.6263863924352586 4.2947234707631505 1.8035940607490442 +3.0963397373326282 3.8107210682376635 3.310076981287292 3.5520970395533014 0.7542641410996098 +4.8209311707152285 3.431127257478841 4.742852239267134 1.5673935407220458 3.466279397771167 +2.3310556590574767 2.138840270983572 3.620938878583779 3.0990322473406207 0.556177388202706 +4.344267415624625 1.5390178833925727 1.576516416442249 1.7799759786959064 2.812618127574484 +1.820041486473825 4.686876430554332 4.647511641228821 3.560781466900582 3.0658971066225567 +3.615366290574966 3.6523596069381092 3.655861153416744 1.1296813103915984 2.526450693119122 +2.752868114686406 2.797571378749902 2.8173324556098374 3.484919808429158 0.6690823981112033 +2.5937444777136816 2.8275627560532746 4.173224159111525 4.17150553423926 0.2338245944231337 +1.2482284906378904 3.2559937195458533 3.31370978150135 3.653647151334373 2.0363395173253496 +2.3142195565267403 3.07422614118447 4.531866205571079 4.5399743018244525 0.7600498338582546 +2.6303906130104915 2.22838330674563 2.6368364093283185 2.8509404378427003 0.45546724285772466 +4.2486642425318415 2.244326711173996 2.3141251066411312 4.9291175499242925 3.294776838882673 +3.5847714525009415 4.835937981344221 2.1182279094181924 3.0179868495262765 1.5410982555314778 +4.963671922809532 2.4945816892908774 4.109667231690957 2.7670289957969985 2.81053091314464 +1.3105025438032776 3.6977517777015474 2.07696564049459 4.144039711051116 3.1578084359116847 +4.261708078264563 2.494153269958064 2.1442343726898487 1.4940854636403529 1.883333110287629 +3.8383832549712555 4.321956970099246 3.25744023561716 4.48052471936503 1.315210702643299 +2.784044154836701 2.820151440765481 3.8398455250786876 2.550885954838265 1.289465203024695 +2.9548455570731122 2.8887651008875115 3.8099032644233235 1.3658671618306033 2.4449292622622663 +1.2281387582465642 4.587275433787623 2.665762526454572 3.4207287249402514 3.4429308976250095 +1.0401407075009188 2.134779426276241 4.523897941559371 3.9038972496078 1.258028132699148 +1.4976283204234453 2.1676677717189583 2.933404731167523 4.404526538480505 1.6165247409935326 +1.3320178783883687 1.336254214517473 2.007733564763171 2.8349584285848186 0.8272357111903127 +3.173823687430525 4.312470871096956 4.69290353500498 3.3977019509171775 1.7245476370037005 +1.4037778036490005 4.266589662781499 1.7309599320737634 4.70044037541745 4.12474312463095 +1.8079283967059872 3.141309475395588 4.588965319440569 4.023810208834211 1.4482076508746693 +4.732850058935748 3.074414830119746 1.66942546115086 1.0483805012926264 1.7709049241400001 +3.5246640471669015 2.6221408920562053 2.192360568596196 2.985197321984465 1.201306856316993 +3.4028335224551944 4.787727282175329 2.7526415606307424 2.489314915722364 1.4097062274213277 +3.9580042938591466 3.7692236427359243 3.6619832178465233 2.507430206109072 1.1698849478262925 +3.5800519287562302 2.1066478549750247 1.0273739693839903 1.882678718415665 1.7036624602165735 +1.837095364573786 2.5966303465748086 1.053844675181566 4.3844371906675885 3.416100099981674 +2.521189885859966 4.5435759215062 1.604966758790905 1.767589521123703 2.028913857216624 +3.484710200057005 2.5957136340561417 4.01612856286113 3.551589309576804 1.0030511513393954 +4.963097995692476 2.0927942173418903 3.0916351813256813 1.2278851006474274 3.422310351683764 +2.0358124357612595 4.434097909912297 1.763964212694952 4.94725548951363 3.9856137003720966 +1.5669093203664684 2.5161784105756406 4.2328405502376105 1.197697075144375 3.180126997468433 +2.5529061446790786 2.102113017809776 4.711088755319926 2.5228386878374995 2.234200707427479 +2.4489961249869654 4.070890561967057 3.386263340360828 2.9190556372111898 1.6878461430442437 +2.206360048591277 1.9808401409249803 4.7174467223593854 3.614536467232217 1.1257309890104699 +2.6987656355166467 4.972283434662971 2.701323969784765 1.8589821291332798 2.4245459285291506 +4.887202389494169 2.205725752556665 2.7891050692181345 4.350405752717675 3.102898125742738 +4.864419498438599 3.938440781965229 3.4855237636958334 2.88941547187942 1.1012636736649182 +4.742460579446361 2.8768884236651804 4.445143581103773 4.867847865558698 1.9128613071842375 +3.9621836439786664 1.7738076411503232 2.6807162414259293 2.6781934343135916 2.1883774570011187 +1.495091893232603 2.4569492728466664 3.4626085090505043 2.7618526961794467 1.1900539181022889 +1.6939459347235415 2.885163226570612 4.867403438566345 2.3872987476680136 2.751348381105413 +2.8531370005956393 3.665483426906744 1.3006298228750715 4.710797811652684 3.505588741998121 +1.157520265271926 4.189864565747595 3.0087224682311255 4.534687305089946 3.394654715866819 +3.847986263404183 4.5303699949823715 2.710291767648351 2.306742035846919 0.7927798831703418 +4.033068568055841 4.416564386040122 4.977938556545665 3.6821278069744254 1.3513676557901664 +1.6134765144289638 2.200642272883078 2.2155902874593254 4.0364233221197265 1.9131640201539442 +2.009267650292407 2.51827298442125 4.288562647259845 1.1710685802775416 3.1587743964774497 +4.270629706725339 2.7450604317293443 4.659115959762818 2.551068092103426 2.602158224465821 +2.276310445790809 4.677097907842234 1.0166925220604668 3.6204262436995185 3.541639412919343 +2.9878086239792467 1.563534352420056 2.897198237592489 3.0759943833191654 1.4354529815888009 +1.5059689874048865 2.6399581029100325 1.1376861423718418 3.8212803989020347 2.9133502102847135 +1.5553916816541746 2.9120986257339387 2.6029635217312834 1.8327893028821864 1.5600711712912552 +3.2161092001841105 1.208141929901282 3.3746251858165563 2.1954867438104735 2.328583265409164 +4.622981958797842 4.720542725335051 4.385760324533857 3.409731682992648 0.9808924570390505 +1.3924034798123355 1.4395484409686117 2.864433911390335 3.941066016846606 1.077663833420065 +3.9879801212265815 1.301585211263971 2.5962626901158044 4.662338076014558 3.3890094588964645 +1.4580201572346327 3.016844218556946 2.462591380733667 1.1770650136317307 2.0205223321388193 +2.554846598321472 2.071598083452287 3.9719169150675335 3.563396300715283 0.6327860771809166 +4.243145503937562 3.780529363838199 4.6097598196236245 3.580821997623451 1.128151911146231 +1.7022958654300724 1.3292696529095336 1.6113134184848956 2.7484683890375754 1.1967748252198842 +1.7604728924600668 1.7579148090740122 4.109505508987011 1.38694912494307 2.7225575858168787 +1.1371609600673733 3.1578253177844684 4.865472529072975 1.5896646429175605 3.848896173391307 +4.380536143400835 3.9210681273989856 3.9450367060004723 3.4047429169209447 0.7092448351920437 +2.3944901595483117 4.523672616510688 2.2597001260013925 1.9620025646136297 2.1498934329618673 +4.574364147015769 2.954590333355038 3.557813622260189 2.758888664487832 1.80608645849876 +1.977074591788 1.391398192604853 3.953439504132474 1.6180684118417084 2.407690798933181 +2.222362084138305 1.1261825001958803 3.3465011014770156 4.704375630172174 1.7451168774415327 +3.0496308730924637 2.968698342984667 3.9465911068785506 3.3913675074220593 0.5610911867273195 +3.6064333690850505 4.895145306216248 2.3354471998345177 2.740669858942142 1.3509196350481765 +4.127572982362803 3.6257036973687833 3.6251132820176917 4.118880411287819 0.7040445704414396 +3.5710918743630704 1.9964001176038138 4.922884693918016 4.51592112996906 1.62642966991739 +3.3845099127043934 4.7618056706192045 2.875292692117352 3.420045090452137 1.4811140335104636 +4.4594743875766465 1.4943175469767995 4.860921297156676 2.379110093070581 3.866722377166913 +2.7178911614987187 3.746111716534581 2.340255390432495 4.530275490274207 2.4193853656474316 +3.149440696850547 4.345588205046665 2.376819392509628 3.0234625019702945 1.3597485695439222 +4.990632363658823 3.4596008266696416 2.914517501711563 4.236924922965837 2.0230716633485413 +4.526148828048919 4.885660982999067 1.3429880511911527 1.2681679824473893 0.3672152396670382 +2.8848565142036997 4.711432549032253 2.7781943154164974 3.9932945364184316 2.193820539171094 +4.853595424809601 1.1018804455271134 1.80440262510704 4.021918003995287 4.358066055187609 +1.5208110282592653 4.798968346920039 2.892384148297485 4.803217375625412 3.794416823248291 +3.830831351962822 2.141846678943969 4.050853196420146 3.2477192761790588 1.8702121054934966 +2.4959317690535174 1.0231001290520831 3.6537825609155927 2.8930858962764012 1.6576768247708915 +1.3287277734252063 2.022261152885332 2.176099619215546 4.800743847499305 2.714727587344379 +4.924424690095654 1.4452604675735294 3.885260580822175 4.061461557548386 3.4836231816138277 +4.8864010901166965 1.6138914578995478 1.1119072952551035 2.024957828414484 3.397496220609619 +2.642287163176451 4.445805426928393 3.306570125535355 1.0587506593887008 2.88190396787864 +2.4977500824418994 4.122099132735725 3.4901893504456707 3.1888246925371524 1.6520685500991692 +3.787627029306635 4.330238072049115 4.1993219745671695 4.240492105772702 0.5441706748893788 +3.3588920137812117 2.001521376456967 1.0178345078005666 2.698104906061798 2.160037883543477 +4.985241182886552 3.848938693056078 3.5270465865001945 2.856935585618985 1.319178570890595 +3.210343562312019 4.3325783211499465 2.476332252142384 1.4091694745332521 1.5486275368397846 +4.419525538774339 3.135311729917273 3.257405654202636 2.651016582136295 1.4201805566830756 +3.380536840806309 3.3149101455602716 2.5230494546511415 2.850161431102961 0.3336301968754205 +1.5296391032448398 4.162983317205395 3.302674696599482 4.017086815708217 2.7285319175573095 +3.70489841265936 3.717690178860245 2.481090703229779 3.2373780828071776 0.7563955511440998 +1.1358356013311472 2.472629230003834 2.716854238897129 2.3340011671013348 1.390537191247816 +1.173022775547798 3.530331494232064 1.2565677591852236 4.254032409653738 3.8133579331074063 +1.557501783473021 1.67643959669801 1.779307385560791 1.8542272458785387 0.14056738200867647 +3.970961926271765 1.691985234853564 3.157482621154866 3.5661567319730443 2.3153291966544365 +2.808994364537796 1.5884060491098926 4.800099285070459 4.041913608442433 1.4368999116163326 +1.7172942350082336 4.716476398156081 3.6523368590105423 1.2007710562365044 3.8736634511887207 +1.8838025846114377 1.4385120599223407 4.905605392541295 2.492007344277689 2.4543307010180553 +1.2696720489092637 1.179339859050001 4.811067046144123 1.1360042320512163 3.6761728185782077 +1.511716087857602 1.0948297234868898 1.0461076280165158 4.28797052481694 3.2685576761699444 +2.607128424698821 3.5927913117950605 3.509923427821556 2.043166212615977 1.767175162613067 +4.953650547187258 3.0333833798412675 3.698172591404438 4.889369917480702 2.2597294226606506 +4.07913354495494 1.5562180881141683 3.1308489586043033 1.3070713609479152 3.113080006694237 +1.8998497194088761 4.704763828841035 1.6911801367062385 1.1408192523048686 2.8583981990567127 +3.125171789340511 2.855222273596113 2.6630618585352805 3.724742627748936 1.0954628230883667 +2.4948270652894626 1.1946833983364358 3.858179041376847 2.1865918815437544 2.1176820317594727 +1.0867956570879245 1.5411378035902188 1.5972348343770464 2.696778061436638 1.1897151315592036 +4.511597415582669 2.453809102861115 2.3602535686576456 4.351602790907168 2.863558007955697 +1.7154552272822126 2.5769202842218504 1.6759759869313116 4.336903298036457 2.7969011779670145 +1.9449472827313894 1.0371911082779848 3.1323448291120157 3.414232618624731 0.9505167006079613 +2.3530880318476983 4.751728475047073 4.424605472111049 3.677614312207148 2.5122642712752703 +1.1822409640337055 3.560827044735898 4.299475155284492 4.368838559913171 2.3795972401252903 +3.8053992280512974 2.102458398684712 2.101233269818462 1.2656576143315412 1.8968906516629132 +3.496266313617611 1.3412162777163203 4.728136722692513 2.2330875256071105 3.296894167715225 +4.976190945682411 1.3808871671411507 3.1076130335113703 1.9709465653585574 3.7707054936465214 +3.125762025141676 3.6064727118299316 3.834531152781846 2.4693696631726882 1.4473246550128926 +4.593433175893367 2.139745373294511 1.7969374218150982 4.144371912663453 3.3957374046658666 +1.6042857584552674 4.27645734620159 2.542587775632828 2.182519113451545 2.6963216491812916 +2.589028156899239 4.216194716799978 1.2444520311349967 3.1368622178953625 2.4957738937278773 +3.8608171132041416 3.6145692663849123 2.0698489959597905 3.235572977898715 1.191448867610628 +3.0892279511032865 1.2857913180300433 4.07525705272474 4.519186738433902 1.8572714544095033 +1.3796827326337135 1.4182136383027695 4.084897687884409 4.329188474108841 0.24731077397846843 +2.0624675038192177 3.090296532447646 3.188587047425404 1.5388788138824543 1.9437000200418424 +2.302303722685033 1.353243100786473 1.9053309585271343 1.3360026883882958 1.1067297516637762 +2.927394279196921 2.5993841049621937 4.551587335451057 4.0507138191556376 0.5987194282196243 +2.8603726322739296 3.2068699663251836 3.6181810400478436 3.718621365055402 0.36076122490125007 +3.182610704250617 2.9961048699011403 2.908737069849424 3.4238540070183783 0.5478411131018909 +3.7304666300253215 4.624282211706571 2.8731644344310414 2.349720678982458 1.035808698155363 +1.1986325743544288 1.3198968391063275 3.833709234584832 1.5262289060337881 2.310664512333162 +2.9313210029106003 1.4735050974073491 3.2614993721169205 3.1869899764380856 1.4597187620849057 +4.178921957475687 2.9855890391268365 2.220017612387476 1.047423366769641 1.6730274112730623 +2.4496656203419005 4.773987070777563 2.204460516677496 1.3950181182058508 2.4612328620833246 +4.640293360210537 2.7132235168317007 4.964183027495009 1.7612716622175117 3.737945879100431 +1.8781024369879638 1.862463151876638 4.088352666462937 4.304068270701713 0.21628178182845978 +2.5687745393077783 4.347263327297721 1.3790728907676306 4.726645548456257 3.7906813460788853 +3.6126458047592465 2.4662215747571996 2.1875946913806468 4.628278568616283 2.6965211483935674 +1.9123583267290698 3.745696909311909 1.4863901009098845 3.3123673785338252 2.5875322948295336 +3.8884408894157976 3.91527706888285 4.32309227616514 2.15332585267487 2.1699323752214363 +2.9189119236571246 3.5113459006294843 1.104642352292411 3.0728403615141655 2.0554273085117276 +4.832267386450489 3.6986495386205127 1.7402386400680365 3.1042165729233204 1.7735628622168544 +1.1109083397729718 2.638014771210017 1.2524293308189223 2.0821511778011086 1.73795638503845 +1.2514863903077895 1.444511247078403 3.2816136499013595 1.506826683399935 1.7852527473146889 +2.516691759228275 4.934270857479196 3.7651314475200373 2.981706022445907 2.5413469052752946 +1.6836909498538515 3.106935007699814 4.6149884693606555 2.924410259526548 2.2099045978864647 +4.616693624402094 2.8075183784214177 4.858925670393041 1.0660278103988197 4.202283813239889 +2.8999774542095977 2.8324993571452297 4.006953719917197 3.5578867905437637 0.4541083578181672 +4.423073899922953 1.2761188748945016 1.5503767184404134 4.373411047848984 4.227629212049127 +1.8196238014525252 3.486464088376143 2.751167081184594 4.724986262124409 2.5834702826155227 +4.042633880091508 3.3247496318054863 3.0387585856528334 1.5356419008875273 1.6657483489282017 +4.236093666089419 3.5481365978878214 2.6850149538396737 3.838339568246912 1.3429231526361223 +1.1289701351292294 1.4145104547493075 3.922659723508968 2.6910021728446627 1.2643233748678115 +2.212338244592491 4.395914539954054 2.883045207962416 3.613176559032972 2.302411176892834 +4.385473089700644 1.174191077517544 3.9541625704873695 2.8494716456121543 3.3959791226202203 +4.177925988374966 3.507298555202923 1.6598175308546885 1.965237019356246 0.736900412592825 +1.6690107596150834 1.0888326582547854 1.8804212714222093 3.393332868855124 1.6203419796280825 +2.987099713861393 1.4271537383647113 2.5062861617588834 4.794164437657265 2.7690826011146807 +1.2881035908311178 1.7966734223156098 4.940567417013735 2.386390504285487 2.6043162202409618 +1.816650831923377 4.616006904389472 1.6035435472001263 4.6333842159952585 4.125085320176752 +4.622557734425657 2.475247268577495 1.6103407471091327 4.05728356344497 3.255529355290566 +2.4392220070446236 2.2151086757112424 3.2442718493694933 1.8185662258225976 1.443212843032721 +2.070015339937784 2.9872073205842615 2.6514961000833353 3.7037423528581583 1.3958736711611355 +2.9597987260303684 2.659454369174616 3.7616875254435813 2.9223966126500893 0.8914123450978388 +1.3788532695685096 4.065904904452335 3.5132910858848474 1.9869508998347993 3.090301094081794 +4.951681816181852 1.9171594032699915 3.5362749086988443 1.5033168222876316 3.6525668858446876 +2.417561433251704 1.1977055618907695 4.4234499809295205 2.291781005711948 2.4560254409917825 +4.337689831557779 4.548642350847713 1.1867116926225538 4.462930681323534 3.2830034765926825 +1.8986818310165545 3.9377525339000226 3.9793469151158964 4.916293125242091 2.2440315354351683 +4.815420178698788 3.3473538176638327 1.4423515000958362 1.6195622858081258 1.4787232678818516 +4.526192119889363 1.9526932488886355 3.307501606267199 3.61526689468987 2.5918363975760337 +2.242465783983217 4.004133657990469 3.024833924635665 3.654485002882152 1.8708111018075004 +3.3810990636308125 1.6887500028433253 4.985350154869751 1.211442202505637 4.135991607397843 +4.177010973909203 4.596888287854517 2.04712810974187 3.0275135097247627 1.066514177714271 +3.4057077099836803 2.561720694609369 1.9267184326521227 2.3422844845090776 0.9407492894371037 +3.703509129288868 1.1881248298154734 4.850790626172292 2.154121847617966 3.687706695938133 +3.6592659077266063 1.5657106235018232 1.570830576529103 2.655245363651807 2.357738144628426 +3.305935077341842 1.3527729934722577 3.9062882367933485 2.1161150435261664 2.649445637819013 +1.9234171830221238 4.523189384796355 1.6866411088951283 3.685977464863656 3.279658726973821 +3.721115973793045 1.160774756263638 1.6861759325747778 2.1394771665963903 2.6001594487541495 +1.3217952690535006 2.695016480098007 4.7601871697754365 3.157274606550655 2.1107025322878585 +1.716570640626824 2.237585350672539 1.2314723366292042 3.6269965249680673 2.4515285976305865 +3.54955725956964 3.1168131605729235 1.3788474272951272 2.118921489220676 0.8573080381936593 +3.885344510434217 2.5743401976097147 4.949093222386955 3.076104332466271 2.2862238932376595 +2.991508322127164 3.983282150849168 2.322681119492103 2.9867931015870144 1.193591241631713 +3.4588301597056184 3.5623664981814978 1.452553081705008 3.8638300937851735 2.413498829991687 +4.2891853597172425 2.30436018618427 2.2384450126854576 4.211595690576314 2.7987237389837785 +4.343714902209588 1.978879411437814 4.1101420546729965 2.115189044413476 3.093910860312123 +4.176156409720906 4.66808816134243 4.2344656606244415 4.538995700611657 0.5785632147899102 +1.533639351705768 4.181154970694161 3.885800282750072 4.118176410168031 2.6576940413413395 +3.4124965585187557 3.9541515283981647 3.1475700330355623 2.649959956407051 0.7355310290921088 +3.337639632093997 3.1075610847275077 4.285469212763251 3.533736033926107 0.786154507792757 +2.840312261026824 1.9929339928547392 2.634164132020101 3.599732313295086 1.284667989038804 +3.669222802081916 3.4570883542542434 2.3338682065483396 1.8809575267043899 0.5001290912073204 +1.9224495081891582 3.856191486827326 4.351906733039006 1.4434783131146265 3.492608468433197 +1.3799433146533784 2.466967372567667 4.041845715641889 4.454050744627865 1.162555068977713 +2.0541301935877874 1.3752852067748234 2.4967873249191896 1.2825724307731035 1.3910960877262522 +2.4327876406855724 1.0135415697533676 1.2860999319582773 3.769506788333126 2.8603442142766857 +4.929808492558126 1.8484779113562784 3.72239252709876 4.53087302187455 3.18563005716022 +4.888370245915031 4.396037332562445 1.0738173266842588 3.931703326447289 2.8999834629203973 +4.048697678453435 3.1627763000229265 1.3018009518640983 1.0957396633612775 0.9095701970599387 +4.486631583910324 1.3724592955798083 3.4115326223946414 3.3381242933790625 3.1150373712324186 +4.293469579302986 4.228435413634566 2.0810941561868024 3.153865712078228 1.0747410170984906 +2.9960168417486495 2.4639641230203044 4.14770508914237 1.2581663691680034 2.9381140396072656 +2.1065546592482236 3.8270577471350786 3.9715222427412247 2.2833160585952186 2.4104296288456593 +2.9735824660354444 4.630340903932012 3.10379597127201 3.2580050580960016 1.6639197588827908 +1.5284266881285755 2.570916302959707 2.3070484128055013 4.9149138960957615 2.8085133035055225 +4.3730858696043455 1.529794341133492 3.540452881214547 4.041016222369882 2.8870175569924603 +3.9676483743874726 1.8863155153923103 4.954690004697673 3.20026220858343 2.722124788049081 +2.6354133454661137 2.056386956977676 2.4219348584488323 4.493402545675005 2.1508719017617284 +3.708966122047899 3.6204722418262807 2.2469989743591254 3.995538254900772 1.7507771938295793 +4.727748066709486 4.2061066881456775 4.084027468790704 4.6523760565003425 0.7714465924362434 +3.778788098531725 2.37815638743742 2.896594916685975 2.252769001435866 1.541519055759805 +4.760049552624918 2.972157297687746 1.9878158010299636 3.684401811460079 2.464743963589626 +4.926851614386526 2.141257524495127 1.3752221187876628 4.4027824718764 4.114080228341773 +4.918791474314846 1.6588244068919278 4.963514316384062 3.4304528040319697 3.6024523426878616 +1.103220995794545 1.155193875304211 1.6041994881449124 1.298421732376386 0.3101632088552136 +1.3903723998477902 3.530640762021205 2.6532020105849985 4.860988887160801 3.0749100075450677 +3.9653151329764182 3.876124310915755 3.131066751071972 3.4729080675532584 0.35328527905011275 +2.8473312210704993 3.196261705468073 2.427129838685676 2.9831302971613574 0.6564213530706428 +1.465171838888256 2.0029915393633533 3.044450381057322 4.692844762344708 1.733912935091883 +2.1646114939177297 1.1705824208376945 4.146523110378775 2.625734098248786 1.8168359908213128 +1.8947930866615628 3.465617246094849 4.639251345186167 3.657590664384748 1.8523353454735987 +2.203112406489232 2.658109605564379 2.7562988404336948 3.7382530467662454 1.0822460508130387 +3.73393847255823 1.4292971991322876 2.226922765310496 3.1040067523569275 2.4658969401642916 +3.862359269614334 3.6414443811878017 4.679274755060083 4.884608305727691 0.3016044677359312 +3.9387599856699604 1.1611228172011283 1.1380756529094258 2.8611530154525604 3.268679219037585 +3.2814046030712607 4.630379489528959 3.9590769658258638 3.288448046144037 1.5064781419613014 +4.685878245869032 3.1165072936241076 3.2314143459327798 4.804422728993435 2.2219992256815115 +2.0000286664839266 3.6812053315615096 4.188348928283789 1.8253735861943583 2.9000012838831717 +3.9039049164340156 1.6359538694641165 1.1413263815737453 1.8336041394926212 2.371255035959027 +1.058906100400507 1.8837015871018834 1.4031812420636398 4.217514450874643 2.932705066163217 +3.6049675727304704 1.822305436011073 4.990846917057699 2.1058755623576793 3.3913041755543887 +1.1216980040657387 2.4527664568211653 2.8716093863373646 1.4531379611330486 1.9452003521596146 +4.370936953196866 4.1153260944936525 4.653195044604756 1.6453715453181834 3.0186651211996858 +4.504886261163623 2.9209989802603142 4.562263922283409 4.112925670785648 1.646391139087654 +3.063561644786621 2.1064174227616377 2.3621180895963736 2.6067713959261156 0.9879171534364029 +1.173508884457998 4.845785173026972 3.06479140837041 3.248608685816004 3.6768739346180235 +2.9020598661833925 4.088705835201019 1.2465937191137964 3.932092292982619 2.93598897239708 +1.8114155168985357 3.97842738672674 2.611196956295832 2.3595894632734162 2.1815697959316713 +4.375027527643535 1.35619373999887 4.9641408479127795 2.18297979440123 4.104657627987322 +1.495765824012445 2.038580151908185 2.340495025389499 4.574905575477867 2.299399465276773 +1.9838400567987127 1.8696552021286728 4.691113582426709 4.260220162632386 0.4457659927114953 +2.8616893946683155 4.130773544521046 1.5850791434723512 2.5882330213684943 1.6176811435340082 +3.472148122134875 3.523765378800437 2.8255967372678423 4.867078107226165 2.042133816641943 +2.8897672274499286 3.600072772628967 4.351099854710358 1.7130582000326786 2.7319951938696088 +2.8133425437413315 4.545421195815601 1.8855919392912717 2.94674836416349 2.0312925478667534 +1.1854260623883088 3.9818386078419925 2.671072296078353 2.5468334746601706 2.7991710217702184 +4.112896032003624 4.557663898004211 2.360834966303226 2.9615898132625276 0.7474789901875573 +3.469132937146312 1.9864104735579131 2.7734253169082033 3.480736027764342 1.6427885882612736 +4.060872989044977 3.6695578719809916 4.270975677069718 4.973449680332395 0.8041127073381525 +4.8335746179177566 3.1130850664003074 1.7431383029757068 3.8968045845711927 2.7565127878103595 +1.4104326692803077 2.001176508150828 2.469093879718928 2.7753919667029336 0.665429786869765 +1.115101344375581 1.3053366491496021 3.840484163711211 2.5071479570134456 1.3468388586886146 +2.449087828858088 3.8674833977839587 1.6274690278336599 2.469350282993681 1.6494271847336448 +2.1986891408191593 3.394619019838731 1.9839977026040043 3.753493103737924 2.135734592632207 +3.2007384563521013 2.865180526519752 3.1706719371213574 2.2180559937686954 1.009988247358876 +3.913882943441728 1.7904671472868259 2.188034375973835 2.2233711217950005 2.123709803378368 +3.4828376049721137 2.028423871566099 3.057255678247648 3.4990489079897182 1.52003308048409 +1.0063422347066333 3.9524290955044727 2.47116471475759 2.792295200258989 2.9635371737307485 +4.408338668173542 3.7912265247431045 4.537453419917423 4.827687969338546 0.6819556373012774 +3.469946403272133 2.011779837899033 1.4582431116224503 1.151695343808965 1.4900406928414451 +1.617149684584466 3.9070691914429205 4.474373391085697 3.9519707142559235 2.3487519887484463 +1.3323814403282417 3.0984331051324454 1.3534344132935785 1.7921559252297543 1.819729388616138 +3.1585643957353695 4.391681379330059 1.8073195980376155 2.8962869507877382 1.6451223026222932 +2.2393387118832453 2.91272151843299 3.4858328157332146 3.671666398515595 0.6985545967542888 +4.77758661712612 1.6815407424006819 4.691104680746861 3.536584509735667 3.304302783292736 +1.753771927177524 1.8592632065345742 1.6217362855507567 3.0655962810851953 1.4477085676078236 +3.0068176389195527 4.930921283425346 2.2919200894539578 1.9051829077581663 1.962585152931327 +3.767501185023351 3.4318081669781724 1.8473465490191887 2.8163953152160097 1.025546348846244 +1.060200677200915 3.4510216182271676 3.4651753490123958 4.993810393679286 2.8377367516796554 +3.552936911464127 1.1373069035828753 3.4552781436439064 2.620950743112889 2.5556546218636864 +1.137235944017024 1.5673649716674039 3.6774573819684697 1.606671312919568 2.114986034042415 +4.702336971764721 4.386065771231049 3.7975934558028106 3.86088128899972 0.3225411944508328 +1.797899780595861 3.11133593965985 4.154283627959245 1.475571690968124 2.9833893787629346 +1.070730365573346 3.963020972042518 2.0141086366276983 2.8029460275109117 2.997934185656057 +2.7986108675316874 4.571901409199278 1.4005316421984855 2.226826471467389 1.956354387641529 +4.026147355137072 4.5557383588738265 3.921077632878905 4.1863769252680445 0.592326215679402 +4.688540883516693 2.857755228586055 3.54233099569081 3.973099915936517 1.880781214535454 +3.8048967283799966 1.1076704712821535 2.300619811495708 4.827558465666547 3.6960043890559398 +2.6163588556577575 3.5232622752063403 1.7368470050194138 4.312666883330445 2.7308097439937424 +1.396470226151953 1.9073075028400113 1.3353642950609261 1.734314459831968 0.6481635266079951 +2.427154236099136 3.0956404654465053 4.6179342449242835 1.28058765989504 3.4036386511252066 +2.6326285326700734 1.0353360088416497 1.1276320260468515 1.1405291082388418 1.5973445906901997 +3.0607117583268084 3.928786505333443 3.0122439132729397 1.2574917459213744 1.9577305573586088 +4.522864579346322 2.7777929268820145 1.5567548393093005 2.6854334271262212 2.0782662069212665 +3.202748806912618 2.7521519902721874 1.377983608511693 4.383232783783009 3.038841900565973 +1.0091164838395246 1.3226239443100947 3.3141281829586577 1.7992840357376498 1.5469452860849504 +4.097394838841494 3.9047697254899014 1.3516212884700822 3.6659043780708465 2.322285652779557 +4.889474363916569 2.0725916684978785 4.993819697650258 3.826253849188433 3.0492684582115177 +1.7865540811906335 3.9401440199803246 3.164304061947662 3.516102932689069 2.1821347506309308 +4.087810036040941 1.2702901362668384 4.481971299643293 4.831691928399975 2.839141226462861 +2.8934013844582376 3.4238816223013906 1.5463017518411548 4.000673112632027 2.511045212538509 +1.1459741538421566 4.67814184241851 2.0733269970092705 3.3921375482392184 3.7703408135416963 +4.07505933375757 3.064747640555853 3.168523797935598 1.1167167655778685 2.2870596440523263 +2.0463578264225166 4.7912222016272725 3.009973574019282 4.128727781887946 2.9641004395755615 +1.9836261066370042 3.3302363988848205 1.2184962934682426 1.745721594473015 1.4461416933369018 +3.475335820175349 2.851875934502429 4.055083000251023 3.090472249998305 1.1485539293156426 +2.3197929624492493 2.0726319871687964 2.1953858607177565 3.5311221418396768 1.3584108216614743 +2.9996377258956235 2.8585415031703283 4.746187832793263 3.431023411297339 1.3227114574373557 +1.3967686460697801 1.5808100450233553 3.5728055887226504 4.268773152052141 0.7198903289637787 +3.6702021013875936 4.27519390381736 1.13747105522796 4.981973779985955 3.8918140091323563 +1.0935702236126295 2.5834409598922403 1.8767311023413162 1.6294832060952813 1.5102471099195787 +3.7920817964618343 1.1391887259672249 4.381127201968532 1.5938306869093242 3.8479687506968556 +1.2485984435937172 4.608668580975785 1.1553881109062827 4.267483105877153 4.5798697127592485 +3.052434132967495 4.679562287412985 3.0586456687210384 3.5868645793587963 1.710719511943593 +3.106930550098777 1.1148089539654027 2.874194819252324 3.95920014400189 2.268432279905198 +1.884033619954005 1.7806271098493953 2.9810270874781115 2.3854813020894934 0.6044565235202287 +2.2059777992662233 1.608502935850134 3.5977467244947348 3.8079688518717987 0.6333794717647653 +3.992727877683576 4.584023237529844 2.4667967259712955 2.3058914568769056 0.6127974446732506 +2.2212125191065986 1.2483075219976403 4.930162712594376 2.84830502528507 2.297972054575171 +1.1112088249949705 4.755686179115019 3.472041252396236 2.6520633054886877 3.735582821743962 +1.4239021301683885 4.348935172569174 1.3626205480812406 3.0175249873349155 3.3607331048742797 +3.4419227479155263 4.057959208728685 4.246484532699393 3.7034807082046237 0.8211906444103882 +1.3031139386226478 1.7046318689055302 3.73137080270296 4.239433622372493 0.647568125427129 +3.219339796929684 3.0839061613996166 3.864894319983357 3.1455080377503006 0.7320238334221025 +1.8215527628039245 3.0408391582545677 3.3568856784643097 2.033700085592685 1.7992997046945947 +1.5136574981258493 2.578948370107933 1.730203815071444 2.6643708542733378 1.4168672129241968 +1.239054153487078 2.980585413278546 1.1033631631367498 2.8956396791453827 2.499037062283571 +4.043749470329668 4.250485802444812 2.494466164335978 1.238575867797325 1.272792342825949 +4.082662287844913 4.256579459681234 1.6562114395482928 1.7768300128002683 0.21165070959693583 +4.4696493983039876 4.898229910952052 2.6268235795037724 2.1751240335412905 0.6226666328336458 +3.0165616011006557 2.3676247604324785 4.787344980646045 1.2726588947472313 3.5740925149731533 +3.8735417724253716 1.1437081853006452 4.652705278411087 4.0894936747657855 2.787328241143293 +4.294172556755998 1.7374537230848892 1.7338760824279893 1.8858087714270968 2.561229145632045 +4.341742425524586 2.1381588354363146 2.9880441094289667 2.860628868905423 2.2072642075709896 +2.293306772613475 4.337706712213403 2.27510645425886 4.601935358304736 3.0973704753773843 +1.527110008439752 4.556153861940285 4.680994016711277 4.135315300900833 3.0778031008038655 +4.921019291268962 2.8739088557819072 3.8195437296798613 1.3916880394508766 3.1757116348398604 +2.7192939261597813 3.655987917366679 2.016645137533194 3.5622812236716515 1.8073147329495536 +2.2765370413043455 3.547437505289565 3.862174976584111 4.041991001856821 1.283558254347157 +4.799709072249019 1.7687957360150048 1.5765802837373712 4.456684479060891 4.181080700929048 +4.555312950912789 3.87617935110063 4.876778221993915 3.571831896784994 1.4710905336076665 +3.019032334411239 1.3271571810858083 3.9923998732130275 2.7554231042943167 2.095841850256007 +2.1015129261932195 3.577769872535265 3.0994201802875434 1.08458654575979 2.4977768408021275 +4.907262840205439 3.6835167354555187 2.325127078097567 2.2271793868751995 1.227659675604927 +3.786364311610401 3.752400051438976 4.281313195765471 4.054432144322874 0.2294092031124531 +2.8861015607555243 4.983840575529776 2.5886556900883675 2.9916281575505828 2.1360935802624925 +3.307246424940149 3.5401086142435103 3.614428667632851 3.3196981048915988 0.3756206914174587 +2.385351491356286 1.1450643487697167 2.487149325867814 1.9864901422859749 1.3375245097456683 +4.195146060016117 1.4690449936849967 1.209112332080216 4.231811008769904 4.070421884020533 +3.7868349691821317 4.827208816869183 4.977412276907993 2.8914165209841354 2.3310418350350353 +2.218206288374243 4.999255392346662 4.782328820145056 3.55740030451255 3.0388622849868407 +2.80751669806895 1.0275965777295721 1.5991893730899998 3.522973851554705 2.620889611252382 +2.8833929768188953 3.1045800898202405 3.2618950655159065 4.3875678327721435 1.147197854731338 +1.5656397056386635 3.930314789738052 1.2795291129978894 1.3801196890774454 2.3668136211701305 +1.7537033617549285 3.300663141354723 4.997023884570382 3.2857117881838653 2.306875300257528 +2.1893037901077794 3.344415251363625 1.8229808272969188 4.428394646150867 2.849993623747206 +3.1869126684190996 1.7449742314131886 1.8350336543549601 1.3076864895641536 1.535344094438752 +3.690678570373659 2.5451902358060634 1.8142101264706048 4.467114462068958 2.8896444311484037 +2.6619993251082934 2.02208219947508 2.524240346110405 2.7124559282048315 0.6670225131296674 +3.1258869322293705 4.164988546064816 1.6297513379025106 4.016413699408069 2.603053858778707 +1.2290896221702572 2.0470515642543132 1.1347264134707755 3.9671811840404225 2.9481963581180737 +2.903328299485619 1.7016767248802167 1.8018872427750776 4.38093957281283 2.845255248272956 +2.2683871478455178 4.678510194438882 1.979777004439471 3.727571000946629 2.977159208699955 +4.518249530929836 1.585874031879428 1.4222812191436338 3.5838045788312143 3.642939651147987 +2.9958912290696897 1.1323173863489244 3.7153020057342254 1.8428716194196633 2.6417613478259425 +3.9688752512648686 3.0178016837377357 3.933727150548176 3.7418627322894613 0.9702334182260178 +2.227976392421584 2.0610542295632697 3.160802432063272 3.3485536009811585 0.25122402330057997 +1.3141344806924122 2.2895582647422708 1.345612420654927 2.8989895777800956 1.8342388477972045 +4.416677421657182 3.5457140668361378 4.041378446381792 1.2694558109475937 2.9055347635630864 +2.192020529017972 3.7900397697386765 2.709410475665273 3.1619310541788743 1.6608553120882812 +2.5181396197604453 3.612539246162225 3.8679254204238958 4.6815083450545165 1.3636816774888743 +4.373436968181229 1.130740784846271 3.4898195253369924 2.988395655398817 3.281235199548926 +2.083369821143282 2.0620445445195017 1.6376461752890172 2.117994001083193 0.4808209658160432 +2.0625558234559045 3.9887841155992816 1.9658638021457047 2.8543458820705947 2.121262793668255 +2.7754015477103087 3.1197589954246645 1.6016873169381172 3.3700515477240964 1.8015810013761895 +1.7636252425083043 2.495824787852262 3.2575416049007564 4.894864294884297 1.7935834982896208 +3.6201869693209527 1.664911986818486 3.6598636601066943 4.7410709875641395 2.2343029208564564 +1.2109528739811397 3.4284348780894627 3.7281909220926925 3.369864246338562 2.246246746263925 +3.5977421778367344 3.31738479925404 2.865868730445805 1.2370200849171145 1.6528000997599226 +4.345964605097997 3.6871037320318214 4.917925450848415 3.4654838277779616 1.5948931997112081 +3.687632404535702 1.1266057456717142 1.763270609873286 3.5154161903431955 3.1030423269063343 +3.5694190501794623 1.1036272385632317 1.4963025498020923 1.1868142926752352 2.48513827372504 +1.3797386687186362 4.986136202838781 4.4462698786298755 3.2468646807460946 3.800615213727705 +3.9987101339881947 2.4183748392259115 1.0375635488635537 3.390962631017401 2.8347745737102206 +2.597232009268741 3.7984855285557884 4.000455257202024 2.881470665786907 1.6416870997312405 +4.692945626235895 1.3135965471501865 3.973994949433177 3.3382827410719567 3.4386233015811616 +3.939475449578877 4.9548568029942714 1.3294081001255784 4.823678243003469 3.6388079262681003 +2.3582474590292586 4.151910491927769 4.900154981630472 2.3635251306569662 3.10672143528134 +3.6004927843602323 1.946704071857452 2.4296465212030736 1.33621132721541 1.9825785303620242 +4.385905420732638 1.896105689034271 2.0640052782448652 4.0530058729827285 3.1867265445646313 +3.2050110726460175 4.8755948599321 1.9298446853172426 2.696076147196531 1.837922969962774 +3.714551547885948 1.7511247263529799 4.561574034063189 3.309200681104668 2.328837456482445 +1.691071877995995 1.1385332352450241 3.181244988292194 2.5833448841857134 0.8141151553825939 +1.1224101368045862 2.971071137690492 4.820883867165834 4.1170454418455495 1.9781142598833406 +2.677805160953914 2.8895982511154115 1.0785901614764897 2.068517906987691 1.0123306052733199 +2.521052599982696 3.865568430673905 3.6315865237374947 2.8575296759660698 1.5514144586670278 +3.460653280169903 3.577570595723147 3.1612477105575625 3.133886205724687 0.12007627002408211 +2.3871530802904846 2.6663381475192 4.9563384641093275 1.2746444901641065 3.6922641860446626 +3.634927814444134 2.953934863188863 2.2314692628361787 1.6534234178962648 0.8932459899219606 +3.3849698205477936 4.912387444868616 1.9729476295090689 2.1420154814538623 1.5367460875652459 +4.49132152054001 2.3152773619147053 4.9649346760767195 4.030192152085329 2.368314119040189 +2.118527123612546 4.828114306072546 3.959853803723502 2.775805362763615 2.9569973638627176 +1.9952814623202322 1.7317646869426842 1.7071421167869647 2.6481024203884114 0.9771629259540641 +1.5460048604327232 1.9367542113679175 1.380987606421805 2.0914894578842795 0.8108624644092732 +1.3401908947427517 3.7196019165048226 2.0449314408017036 2.5687226465259356 2.436381340775058 +4.226030905345287 3.447295975798207 3.395485979892315 2.2057332451826364 1.4219492467193953 +4.364525251124467 1.893212307261055 1.0949529351847076 3.434491223980448 3.4030614263113366 +1.673800892154607 1.4185258031687282 3.391172873224383 2.118359090472273 1.2981603508890895 +4.421652230056629 4.252560277747023 2.0995761564416617 4.771075913564281 2.6768457259696694 +4.034202753906182 2.9912083114711776 2.5167336753902902 4.574525254992562 2.3070205009995726 +1.8659763225448076 3.7218116731172763 4.664258636639941 3.1068082635852243 2.422762165992096 +3.573174044413367 3.4425477892644647 2.125085230623693 1.6917317481248944 0.4526129243935293 +1.2864278332858174 4.008900281441135 1.2632802024001424 1.2874982663533885 2.7225801632984936 +3.57367283206521 3.7135588690017087 1.4999907647893869 1.9895549216286534 0.5091573106531434 +1.2406620824790235 2.391002834779367 1.1243503301605098 3.6209313986916984 2.7488544665280576 +4.897458702027592 3.018488333887899 1.8340357202126425 4.064085648579554 2.9161022491257538 +3.86631356265209 1.5848309193800878 4.01083031449082 1.5508349521184277 3.3551065906234756 +3.4144967756336806 4.663350504045762 3.914869996981784 4.76731444547883 1.5120506515134302 +1.1310916737184127 3.044971026771794 3.275740272386847 2.942453504664922 1.94268223021228 +4.8216945384795 3.855476756322488 3.7026512831025267 3.9090080761104047 0.9880080609878197 +1.3635962555036034 2.2615983675186895 1.0274459090440438 3.4996000897255928 2.630200388990317 +3.2145902484981095 2.0319983600577816 3.4711129143992254 3.547791861490606 1.1850752024795321 +4.63075950774299 1.5009498093393328 3.7133607677994886 3.638763293511765 3.1306985692320652 +2.216771199698486 2.853402314596308 4.89532829004183 2.0789716145145074 2.8874147780052932 +4.164982489791544 1.8262765706981146 3.2572143656183123 1.2214721520067777 3.1006115100545304 +2.9186853838562246 4.13074638832814 2.17687459707195 3.92034513555603 2.123389129934369 +2.3926758025728536 2.9172401419141845 3.5157216881256375 4.317944037478396 0.9585032310376771 +3.4400123217559866 1.7777225312270377 2.8825939326247862 2.2613393232739463 1.774588582555529 +1.7507382885759104 4.522164950227881 2.1430146937898575 2.2326131051907856 2.7728746124267785 +4.262613781947541 4.277214671469065 3.863701673883602 1.480968399780659 2.3827780092765987 +3.203052861583883 3.100889312171975 1.6022960729514129 3.2816198202741607 1.6824284945133792 +3.0738771975201096 3.10182963681666 1.2023944043665078 3.227668056480705 2.0254665400372835 +1.3892627893473257 1.2652107260237284 4.612181458050598 1.092843244058169 3.521523871689962 +2.5891196352224832 1.7667416038672372 3.6725851532872564 1.0406125305815102 2.757459974891439 +4.029083785316656 4.574098662867543 3.4279047411108987 1.293847105014454 2.2025537929715484 +3.4567239932343847 3.651512517625052 1.5585926978599076 3.4062260642963795 1.8578728767070323 +4.626353916222001 3.873694381813842 1.9884521612361419 4.499636284301717 2.621553370555734 +3.731234780985145 2.8642406425433706 1.038315167330822 3.2068075182378135 2.3353881715968603 +1.6239200382602506 2.599369061188598 2.5526323944379246 4.128766607528551 1.8535640949281131 +1.5041767872334848 3.1109123997722574 3.2573037751710907 3.8456285897992952 1.7110597348157242 +3.0207754906089184 3.5676781881871635 4.083778607566082 1.5567967934081337 2.585486346841413 +3.3010282556575894 4.819991281350009 4.483660933871992 2.4178914962650326 2.564108430385042 +3.9416386429402155 3.6211715541886034 2.611528104334371 4.631730594772257 2.0454626022844735 +4.230908676631914 4.297084469519345 1.39602525206883 2.3805451666849526 0.9867414544043528 +1.7000875694375632 1.7832549383201188 3.6407418744057574 2.131880679425618 1.5111515201870858 +3.439098195719857 2.067518911324281 2.123038491536384 4.983274287309149 3.1720937156400253 +4.5273319689593245 4.419647843858465 3.447721389920494 1.0561673931474527 2.393977107300704 +3.534114755357926 2.1564391735216892 4.5405332665147995 3.9261594798712482 1.5084578742883574 +2.915399244216036 4.15687449513381 3.4649385586842762 3.034023032638982 1.314134311715603 +2.7650043243739666 2.408861312047506 4.1782738197294105 2.618558829903271 1.5998589608829021 +1.9150793389757794 2.7305306544589145 2.9182533816474234 4.238684410134935 1.5519339383220419 +2.1226010706605436 3.515617266823155 3.856305910055573 2.501723296319359 1.9430358154722172 +1.7613088773221954 1.3693107833586446 2.358947672819463 3.4150257388397507 1.1264827505116126 +1.0012014304320367 3.8806194367686184 2.3591226570029007 3.885148512700796 3.258803916696098 +2.965729150532179 4.330354314185948 3.807489685030017 3.7552814758801016 1.3656234965684058 +1.406405739740753 3.776075402022317 2.4632417873592782 4.32488451672355 3.0134777185392423 +2.7724691720145875 2.3154614747790174 2.3368907710523943 3.3294720973279914 1.0927368048178765 +1.764689934589109 3.1031024981225683 1.2170459150885886 3.816764307519606 2.924018452432939 +1.7375594801648524 4.17498161864665 3.660789661026998 3.883487720340128 2.447574535490802 +1.841323064184074 4.75063030828227 1.5347762415300203 3.9126857159179838 3.757462189955646 +3.160137875725919 2.142006842258774 1.7746401235737914 4.827863249867631 3.2185031086274263 +4.946402448555089 2.5033710508859865 1.9005455518629693 4.599259699443239 3.640255548769475 +2.476368543588497 1.5778143268182414 3.6849197779808596 3.7997479204862357 0.9058615693288031 +4.636477817564174 3.750485807635465 4.77451816718439 2.9997918532432424 1.9835915232357308 +2.7144219909300187 2.4213820567461593 2.9531199855653822 1.656548044038999 1.3292746904157828 +4.620965514749529 4.207620194547329 2.1570929479479166 3.8991082982782745 1.790383152992582 +4.258091486607892 2.0967403985071518 2.877751828565505 2.3175364256686177 2.2327740198410533 +4.310745810254741 4.101287763872763 4.468887576039831 4.321637856597675 0.2560374056069708 +3.1198438405763613 4.53898225968373 1.9541201421704488 2.9840481552593365 1.753483836461513 +4.7770478914797305 1.759141721630209 2.505248991449691 3.790063559185929 3.2800161773203294 +2.6190536054067253 2.892630624940599 4.002639807264812 4.23487545804642 0.35885621509316873 +2.5263999622107653 3.8152989273896867 2.916086862483582 4.4559150105399405 2.008066549690515 +1.364723696630712 1.1476904668874237 3.186841100648098 2.8795497321186954 0.37620660279356627 +3.7392181972782947 2.9081208940480074 1.8332448620654862 3.775565099853722 2.1126596113805 +2.27751496849931 4.428684557203393 4.092182062671974 2.2133232047301883 2.8561584702939022 +2.777960372366682 1.4509420907657518 2.4893717516260243 3.3614466709433164 1.5879207110574973 +2.245366316944954 4.179497966983591 2.940283101613175 2.0357682124273695 2.1351844005705907 +2.169928323796993 3.527738733292321 3.0068399046366427 1.7278236158732665 1.8653503089382195 +2.4654902164774932 3.630798373403766 2.9163447580316784 3.8180409449598782 1.4734310686692345 +2.5218472767676063 2.5155973018661864 3.058412525328476 1.4368750739821632 1.6215494961008634 +1.9178994155325646 3.5817782948029486 3.5349011226663327 1.5843663883909707 2.563801605915857 +4.518452411539025 1.4811972883994757 1.9014134653926145 2.517282163806678 3.0990664621339876 +3.746373911828223 3.5581354744015004 2.9985459066410174 4.128127274278061 1.1451584062642284 +2.994841415304021 1.3486011592912668 4.770849703776055 1.761236445013608 3.4304342214704624 +3.4030868377584915 2.7593906188622923 1.434763399263054 1.3662087237731844 0.6473365166223708 +4.29936515992033 4.569697579589437 2.505487956211388 1.2904718220305478 1.24472640505611 +4.395301201299082 1.7699282575509914 1.2680806892387206 2.707888530047694 2.9942661391765952 +4.342685519755898 3.924213606832852 4.82829337327815 1.413243332483861 3.440593774777044 +2.9718300942000804 3.9956254552812127 1.9751058256227583 2.8934615889946182 1.3753305964347473 +2.5751950943767277 2.4926319800285293 4.762445044889601 4.095062109384214 0.6724705573143415 +4.99242688529927 4.955536829950646 1.2664404535797615 4.818756135076816 3.5525072240874485 +4.9811783501973155 3.109365072151579 2.2030033953483823 2.961120279629895 2.0195113661727766 +2.3690171987828816 3.4178082758413733 1.44540407528984 4.558151539429209 3.2846856012141536 +4.847325948030668 3.7702422019913535 3.0384363855924237 3.9331214595279014 1.4002038342702157 +4.58574233628054 1.7528450857328894 1.6217424287696027 4.3962561634456625 3.965253244884434 +4.910410233747221 2.7919674001641064 3.900776798427703 1.5002791763111762 3.201591615579157 +1.6594743037371265 2.0742076058065098 2.772409268362534 3.721357741468847 1.0356190981515245 +3.4701875589792106 4.260210807613941 2.3147522193121226 2.0682623140950116 0.8275832325254743 +1.8141278664849643 3.7744864851432793 1.812194489848038 2.7326226204361053 2.1656855398062254 +1.4751927972731247 2.2587911935013203 2.131213874345391 3.7308205947168847 1.7812265735804207 +3.6809509013311636 2.67251262964523 3.856318054122836 2.4257859582936865 1.7502485037840345 +4.1575057349949045 2.0605769369708993 4.698346860963428 4.451800784743222 2.111372859464187 +2.91767415930452 2.917606355285901 3.3645269690812105 2.9270816827505097 0.43744529158551215 +3.7380415543341456 2.943783036786601 2.343487480633688 1.7919941203821814 0.9669495949108832 +2.157112690247856 2.665959680041969 2.6759785650889847 4.7085581850759874 2.095305507702645 +2.823563641003944 4.65856512614949 4.9691910349490165 2.049304072088305 3.4486186113240054 +3.527084071167485 1.8802481754210216 1.3133889077335077 2.7396193930300066 2.178577945520459 +4.026315251085938 1.1755118973022882 3.051775827699974 1.7895333956009458 3.117745294172597 +1.2776214888509072 3.3281043362649663 2.2361680885359427 1.7253699922461294 2.1131480314243403 +4.523176080029417 4.29123446365633 3.5527353727932103 4.900796267450786 1.3678688128291918 +2.8286573731129714 2.455518269979886 4.633249633486248 3.190605713814362 1.4901188775575005 +3.637151182626162 3.048775894996314 4.92159214366201 4.6663773166566305 0.6413424101187228 +3.154083952273719 3.837907167392227 3.641919909776653 1.7130384058975023 2.0465087455327686 +3.766951093000424 2.0184642254168255 3.024791214106967 4.722207538503083 2.436889103845049 +3.424820900793398 1.1191969608123769 3.35356558745967 2.3342334576086547 2.5209005818477284 +1.1521031918637963 4.499381895105468 4.226715210256944 1.4648989638386856 4.339574137649348 +4.8691201539222595 3.373756577890916 3.261445717871823 2.5769598500844615 1.6445768841017632 +1.1364080915323416 4.62520328127493 4.69495676808483 2.1807700825493073 4.300328657869667 +2.597176224944703 3.3596742812146974 3.8892567179699298 1.9932146185801498 2.043619076167064 +3.066401968622533 1.4670118611845768 2.9067692181009863 3.577665456427438 1.734402052112191 +1.4943839893252164 3.800238666037272 3.7405187332781176 3.6587092280903772 2.307305481563705 +1.773653876824174 2.831767366860479 3.3084870858306616 4.1470583733670034 1.3501133145322164 +3.802500870070515 1.554593282340937 4.963748539645706 2.2718792937421814 3.5070284515545946 +1.8612099056151892 4.862350173296698 1.1034865866538626 4.387300755849348 4.448626575035095 +3.8143808368278034 3.630252953601569 3.333230404876751 1.0898710737986526 2.2509029667483555 +1.7325511848370998 1.325811776777965 2.1438993559681405 2.3770792325814085 0.46883877924684764 +4.359657222692193 2.5754878077109487 3.173392741838577 3.2683344579190066 1.7866937148842308 +1.5635464586844097 3.0554310101072994 1.8185333108176338 2.7396659686020297 1.7533410643714538 +4.734613273697254 3.7739227982425216 1.7430282008003029 2.0979957890641834 1.0241719476471296 +1.357707903805732 4.21489081353688 4.751064308538105 3.631666255750635 3.0686391414182492 +3.3524323359706174 4.348604031495389 1.083409467555521 3.1585398361774417 2.301852317969519 +4.09676156038531 2.7289819274969873 1.807584108823014 1.2227973194133437 1.4875472137758128 +4.867185232265987 4.30653908738989 4.569573615617728 2.0394850504162894 2.5914614115451347 +3.3278111972271045 2.85338235477672 1.6792707157741305 3.47145585207046 1.8539175519181823 +1.4746163491047724 1.1400434506176897 3.331455549372827 3.019284114182 0.457591552971805 +4.049945568336359 1.6499565173336204 4.66442135552757 3.69644208215476 2.587842985695303 +2.13111078479718 1.5953692008342206 4.747829159642821 3.468383641437474 1.3870832270786384 +2.765235194567938 2.651884852309701 4.010208601294381 4.863943796453935 0.8612270801270596 +2.7161020361510415 3.2404666006514278 4.128740963097153 3.2478845258910147 1.0251176807914157 +1.7526100961570772 1.5104776633880626 4.692129248001706 4.6975922859246175 0.2421940539773604 +1.5849532302555676 4.0608388946369285 2.0130733932292193 2.4946456105269914 2.5222850004633153 +1.216090266119422 3.9463077745054496 3.034256658090978 3.8905991688278485 2.8613650831015494 +4.598626567434362 1.2166196752798135 3.327106892329176 2.5593982499516454 3.4680465940010117 +3.3600828119144124 4.554431762710393 3.843296243616391 3.4664013856114164 1.252405345827799 +2.8525221176716147 4.860452477816586 2.824222868228695 1.2602311046524304 2.545162974688715 +4.396239779189598 3.876129484835941 3.420315715344493 4.426919906682407 1.1330342961762911 +4.508317038841378 2.981828944641083 2.8169255717208355 3.8681375903630895 1.853432655877513 +4.120231444644681 2.5344339548435553 2.0280647181180673 4.723931705944883 3.1276912403103316 +2.10650632221848 1.1763243822366491 4.125146467816354 2.9821502825174546 1.4736616711702173 +4.761227046122189 2.6381850166743273 1.992623312011324 4.226328903740505 3.081679433251341 +1.0117944523541245 4.794005254282912 3.779946423057912 2.5109001841982006 3.9894356626709477 +2.683840166896402 4.242874256317897 2.8477720212948565 3.1121705560497377 1.5812950000423194 +2.0494823048534996 4.318832365005904 2.7969013436264185 3.9776389951681645 2.5581421182729547 +3.1877520694272357 3.1589352728477085 1.3728283843539715 3.838104331047671 2.465444361795987 +2.4809293685210747 2.8549452405919267 3.474561509039607 1.4281063425851968 2.0803525232202515 +3.4211583907300347 1.340958930078766 2.6136850709367008 3.3015771402933862 2.1909872877718053 +2.1335104824493816 4.448130584978732 1.2571001224983078 1.1347564828584717 2.3178511999680445 +4.750114057015337 1.7139577040755651 2.147988823544832 3.566026756573239 3.3509814948763914 +1.609496565722813 1.3598721280815722 4.552622843055353 3.9220594643271345 0.6781758875548825 +2.839172536440085 2.4851345030324747 3.4403874544715376 1.7719722086562522 1.7055651150184818 +3.690066537774365 3.2495077162117165 4.715568474052679 3.4521928349062545 1.3379873246205685 +2.167172319703644 4.038298711428817 1.2856415281483646 3.0196737563123017 2.551074624961343 +4.322949573454967 4.615894798525243 2.110935583402736 2.4411225237585557 0.4414072048268041 +4.540150281939928 2.679708839782941 2.6203733019505155 1.5381082514211912 2.1523336170985226 +3.9000354845571965 4.340928214124668 1.5449256333152848 1.6950965661707675 0.4657657222898027 +4.888258114561987 4.672480705092337 3.6152272607621803 1.7143465864908656 1.9130884005334412 +1.553718243147972 1.1485035093410842 3.9016677235517134 2.4070564020368885 1.5485677198283834 +3.923343231127639 1.231338190916882 1.2814804403515585 1.1148897384017311 2.6971547227580874 +3.863232127967808 1.1935567458911533 2.293686100551875 1.811277294391802 2.712910780310867 +4.904020748279347 3.1735535590446764 4.163743143178314 1.6597334327906172 3.0437774758897236 +2.6609216697814926 2.3064167869232106 1.2555073243961594 2.371694979276879 1.1711313303291329 +3.560947379274132 3.158708473028748 4.184876410442017 2.664263076400086 1.572914825845189 +2.324278989510159 3.2166782172757737 4.523050380155581 3.736681395691802 1.1894337146067706 +4.88061022180873 2.854708706524513 1.6512105909801544 3.8922247431790216 3.0209967527269033 +4.762203834886881 3.717268946709863 1.7249801204163422 1.9115707754424855 1.0614636089252434 +4.604894898388409 2.9185312379759774 4.3421407477522305 4.428803666630642 1.6885890135459667 +3.4942572972928994 1.7493768650884745 1.315053491758242 3.772216685292168 3.0136785963914177 +2.620807798811498 1.5324920519369218 4.237811763089386 2.66487680453049 1.9127350963350476 +2.0460596534527906 3.150576903197822 1.8290756248554865 1.1696268047610725 1.2864023870112502 +1.526410467576877 1.478953032074355 3.1878444280730225 4.303602936821652 1.1167673249291643 +1.3524228598953147 1.486407717837115 1.8388209312970174 3.257618745889855 1.4251102346313764 +1.5435632823945893 3.1537070420670394 4.485414133500832 1.4240265648892483 3.4589964978388856 +3.3601222089330216 4.729550968122918 2.3506407059670145 2.47599075514886 1.37515372279839 +2.457300229819315 1.7037198953049875 4.691905371669517 4.656671219382165 0.7544035830072219 +3.468492607264581 2.5354068951061692 4.16673387437069 2.009960692209661 2.3499615966060343 +4.546999848385202 4.919388049956276 3.8494662508193525 3.9114161927660005 0.37750598402744856 +2.7681377318833515 4.527532597284179 4.903072399741637 2.920108250421452 2.650965316613539 +1.4718588271977566 2.4828506068116813 4.623614755316609 3.7621218181960043 1.3282599365920877 +4.909134717299843 3.6272365788998955 3.557462250967664 3.010267857064429 1.3938021889609662 +3.12473484671157 2.0943392066542175 1.2463891663320759 3.512542312118904 2.48941062406521 +3.664663855908637 1.5775033650860104 2.7065144365906697 4.629638391407289 2.838070587571856 +4.693886034359423 3.0295286364108445 4.057744307645325 2.5489607213313077 2.24644462616748 +3.7328239094044138 3.7221375763070945 3.7421658171513785 2.069142683946862 1.6730572620064514 +4.8421061281867095 3.705946528082916 1.7303067606586198 3.1274068390292795 1.8007629677143284 +2.147549829462477 2.3502294715588623 3.4026846953471077 2.1787448009409727 1.2406078761797459 +1.9218037068206284 1.199779467418359 3.339493476288806 4.278401370136141 1.1844268805685152 +4.538512468781391 2.905355675767816 4.344976997619294 2.1027551817852563 2.7739430026531684 +2.1984306872102217 1.843623482984158 4.114413978216941 2.513413238028879 1.6398449689691517 +3.675810703396065 4.494176855176367 1.9850520976209016 2.3004132242266335 0.8770266806396118 +1.465032095331844 2.761330391714833 1.5904749319752831 2.5314266118045574 1.6018050246453133 +1.5433976344077904 4.009480542011867 2.93343144744916 3.8171977974299764 2.6196579678529397 +4.617678845306017 4.692892827757014 2.0869846702018995 2.8340721471970167 0.7508640632225441 +1.7870486801686 2.0327243581999626 3.9313320146629933 1.3465240236923308 2.5964569876972665 +3.3709868645304493 1.0844643180949243 2.869052481129041 2.0897175535893644 2.4156879526630233 +3.004815057113215 4.960153869056253 1.4336038167772975 1.7379492836530095 1.9788825211969017 +3.60917063005601 4.018973619983172 3.6124572815815648 1.3023442782158177 2.3461799971171766 +1.8109735010350594 4.962262617898519 3.694096283583291 1.9161069574893719 3.6182688045204703 +3.810640416724214 4.707828198404425 2.281700628545305 2.6959283485463095 0.9881955877322504 +1.835055452930571 3.971799609718744 4.5462979448806315 2.3788643950256003 3.043590607260704 +4.774935991752163 2.439234178809172 3.2484528022434027 2.0094494082357133 2.6439804026028164 +2.1103849904625043 2.565643027828355 1.9035814975560075 4.604279521636833 2.738800777322126 +3.995772213363442 4.55743579576653 1.4140709985182087 2.9288291216241022 1.6155364902450082 +4.467390635120786 2.104932723938837 3.8165388073540925 3.9076988490875393 2.3642160508961574 +1.5283293630043846 2.3904509326561723 3.2154055977949993 2.542296508668707 1.0937684612034162 +3.471513143696255 2.415444909141933 4.06326480933382 3.7965566485029196 1.0892260367290545 +1.433411029975253 1.0453108224207472 1.8939626881212859 1.3129905512066968 0.6986776044607086 +3.020949072018243 2.24150731647106 4.828956078853803 4.905992137827663 0.7832394299782783 +1.6188580073653949 4.86510074169551 1.178026998811447 1.288097367009259 3.2481082765428657 +3.7568242763564603 3.079251062234338 3.5615649444073516 4.320761684149875 1.017587907815074 +2.921919779726564 3.9983254416256555 4.837191339093561 2.851446197964834 2.2587237357598138 +2.098629219902266 4.300194824510143 4.1290606461052946 1.1526074402348225 3.702183787729758 +3.6915380162050124 3.932212092204496 2.6787619324619745 3.0027961518183224 0.4036362052295147 +2.209389992568183 2.523400138742098 1.855600807973357 1.6058498555237257 0.40122052558370114 +2.5297930156312023 3.5631616563418733 3.202904662493854 3.093348210667652 1.0391599317434093 +4.65008307995835 3.6584827735350567 2.9905210336012473 2.731523778778843 1.0248662086849727 +3.681653271952426 4.546803484655909 2.862467205738121 4.495498116990471 1.848046224434487 +1.3154572133411606 4.964113087329629 2.4815497644555244 1.5499010321754891 3.7657215838600644 +1.1489471914756457 3.077669510394367 3.2545086695614924 4.337207989839022 2.2118335384075887 +2.7587076320837762 1.7455225427869032 1.1982676558039285 2.454856875933893 1.6141748645423595 +3.7274129584843543 1.3608062579808484 3.4329677387036854 4.132739337660784 2.46789537168314 +1.2067759185016298 2.530578510001916 2.3671473095603206 3.779036212991615 1.9354285253905132 +4.006267459604425 4.847284032574015 4.0140665211837145 2.0564672850404406 2.130611096694618 +3.8599429469734874 1.4807753710822191 1.483475222809096 3.1233346158954784 2.889563493551573 +4.983656430814678 2.0291651722260435 4.412106064596113 2.3089842532391027 3.6265879212397767 +4.344479926100837 1.1487568784227826 1.7483811600093997 4.063383250899111 3.9461222077229747 +1.2369000502911227 3.635704108184444 4.071796579308529 1.4922801811288409 3.5225226410405623 +3.1061311415870745 1.6070491561430926 1.0135527419505914 3.796132857783671 3.1606959518612836 +1.0180959276756187 2.5937455297080243 1.4024872938984445 1.5459087628641814 1.582163514351525 +4.12323593437865 2.2104402665325362 4.666890282254474 4.346983676214075 1.9393626539456588 +2.9799107176085533 1.7847053648579432 4.546850469389797 4.045382026729357 1.2961429065608459 +4.964122282226439 4.336376957713151 1.160360263561933 1.0325302319794587 0.6406283707600452 +2.3267861467054924 3.0104197688606997 4.83063929353365 2.7073147649325096 2.2306640229089423 +2.2349170495883253 3.294464365389164 1.4890979073358634 3.286386900963876 2.0863576493586034 +4.5990672232215 4.4824181505781535 1.3462763669314755 2.180600308335476 0.8424389861280511 +3.4122981258251226 3.5079392377967302 3.5278828334501786 3.975433980789646 0.4576562594175233 +1.8612482651009223 1.1060410536735774 2.134546848041862 4.060451982779691 2.0686827983529525 +4.042333206544127 4.533801216704948 4.377675550550627 1.8433018782327628 2.581586860043523 +4.5476708907508065 1.15658433158739 3.7634326402295306 4.308346861922671 3.434588703286351 +1.2214448094500083 4.3602402222030605 2.807109946883756 2.7950672555310336 3.1388185149088534 +2.274805328240489 1.1286473868420597 3.0962074793316106 2.9750291001849005 1.1525459757438354 +2.0186343600192695 1.8050053333882756 4.777065241662845 2.7824293184543585 2.0060433263449413 +3.3430822517503844 2.1766029558840505 2.1694869927478244 4.536424240427669 2.6387621874922824 +1.799441688929293 4.257156878789756 2.918262303731354 1.2755259031181754 2.9561709754969168 +4.7027624641972405 4.826782053133005 3.3422713652830076 2.2067045040609443 1.1423191124836898 +4.880844752085439 2.514964071210701 3.693076848851944 1.5659120756925446 3.1815438655323605 +1.1740020292640798 2.336952443488236 2.9836275274098023 3.9900259360561625 1.5379503967521393 +3.144073138969889 3.268166573161552 4.596233597392075 1.9562944584294377 2.6428541083147725 +3.174226569675605 3.7115254918792866 1.770225086191258 3.0276159461526104 1.3673777482888871 +1.971125063136581 3.374003956640841 3.1956534490749147 2.8568486565196722 1.443210960773974 +2.7876261940545435 3.600543260434307 3.5042900785139017 2.4280674341804938 1.348736199924757 +2.202902199451521 4.379025738993104 1.2565626693047616 4.7700234956661 4.132786062418751 +4.7234687757811855 2.604977895339583 3.5950446127025057 3.441583591503003 2.124041877068772 +4.264214026011279 2.018604905567312 1.3803605954581237 2.406586944803746 2.468987817287151 +3.40298658348907 3.1208730256293866 4.657267985929728 1.407060633783598 3.262427913605603 +3.737836520909137 4.586420631376859 1.9114775193170748 1.8599690806911657 0.8501459355828115 +2.962899400310874 2.47052003905963 2.27666949373816 2.9010678538274486 0.7951796950805371 +3.443360918066505 4.047308680831895 3.0266394357424575 2.22833864805016 1.0010180057219065 +3.4859395570755183 4.093751135562754 3.8763326233937945 3.8954219098649165 0.6081112692600933 +4.273893874529529 2.505765044450074 3.140519902981311 3.446002162896622 1.794324098617947 +3.4763012077048323 1.4277655069475275 4.472907388424844 3.0792368174967333 2.4776634512274476 +3.326678485055893 3.524651718158224 4.175426444601557 4.209718187144238 0.20092119010100304 +1.3002984143406047 1.6083928467070736 3.4226744329475594 2.3195901655222464 1.1453021785958744 +2.0889324161832676 3.011746817051233 3.572657683876659 1.1487700159034806 2.5936109664716014 +2.809832631131009 1.3983524973488541 3.472325738402015 3.187315961929988 1.4399676179505998 +1.1490340303499935 3.5717611745466717 4.782919047885059 2.46313063487202 3.35425477511428 +3.0960381245035253 3.139808670581394 2.1606303493431462 2.9860366951126442 0.8265660870980075 +1.8258502279327593 4.729778635026312 3.410028018498124 4.988219078362799 3.305069925880795 +3.5242829196946275 1.938839082804586 3.498993028577957 3.155763431758759 1.62217098854137 +4.930712104956266 4.2567872624452106 4.679932733412732 3.1935589631998242 1.6320176709001912 +3.8861909438978635 1.4200618007583437 1.5150635578731735 3.007958739446238 2.882798809110018 +4.39382796427728 4.396925446824671 3.239936140286181 2.842601558369653 0.3973466551827429 +4.120384093169935 4.9135924276025245 4.385806422618272 4.408415603877385 0.7935304889483009 +3.1318738558384127 2.0266742547215926 4.052714506956933 1.1964311693958751 3.0626492882368552 +4.42283934760651 2.260767177710696 2.099425468140916 1.0183195968587966 2.417301382277077 +4.352437711996452 2.4030019010495445 4.9170648728173045 2.763250788161214 2.9050327179336866 +2.8149497527887153 4.43520182423992 2.7014173631312435 1.559858997189706 1.9820121790476044 +2.773867720641523 3.4566566837354697 3.7938278089991875 1.9410646014208779 1.974571414631229 +4.0161899162352785 4.843202392100124 1.324583159106377 3.8047766231616635 2.6144424366160104 +4.555744272995608 3.631084064377068 1.0725024327555848 3.163648130533356 2.286457266326437 +4.139298489768512 2.4569711856145906 2.1480585201714275 3.4033631513324614 2.0990509463364964 +2.0707180414966464 4.460391873467847 4.917696996082574 2.9396688078828497 3.1021180726272504 +3.9939915346325123 3.16695481513261 1.4654482743094448 4.55783200241318 3.2010665187155856 +3.7255797519099163 4.159260034404144 1.145348348708544 3.0142796501149176 1.9185887513484474 +1.9617706861296322 4.176870953958863 1.7836827399374484 1.647652180591893 2.2192731940013593 +1.1406664758513991 1.0914705321690192 3.233749475287606 2.3881566875317386 0.8470226700505362 +2.2281419111964937 4.530544202527176 4.636180056740114 4.221243797002069 2.3394931952818703 +4.727002636686731 4.68272075219451 2.739936623374222 3.842788586072677 1.1037406112497703 +1.464613491070815 2.70425440073667 4.551158975900086 4.704709722835647 1.2491146531850694 +1.778491110834893 2.8603887455086587 1.1672131659444012 1.015270166512877 1.0925150648796278 +4.4428405690950665 4.722791846065409 3.943665219479823 2.2618544946064443 1.7049516215354747 +1.0693738879293053 2.3473286621755087 2.9680825211080633 2.7199036134668906 1.3018299332926058 +1.2542589053044315 1.5797453611812249 2.4709116232981962 1.91226226734209 0.646552809807063 +2.2034406081618734 3.8985294899452763 1.0097914616524264 3.4399042135341005 2.962899644605539 +3.109416362863458 2.4542885966742616 1.6953515389261082 3.4296800379716714 1.8539384381995219 +1.495725045253777 1.1211921346129228 1.6200337248634131 3.934905370653511 2.3449745494644643 +1.6731003155342572 4.102767907461213 2.4749001592324515 3.013455913851427 2.4886395697435466 +2.4691865713557957 4.0647116656134745 1.8134159156224046 2.3416455308662205 1.680692373049454 +4.546351720334399 4.669956603447124 4.0511058329780765 4.2358946927202155 0.22231754274935306 +4.671931824471903 3.243443716232517 2.3136865198142056 1.7459902476878217 1.537158850856844 +2.098461813615171 3.8122092147651916 1.2151017791299528 1.082530559517759 1.7188674420146288 +1.7694827418748091 3.73950890347826 4.4619593049485 4.3617500916292125 1.9725731833917077 +4.381461469690009 4.601080113829845 4.115728863274633 4.82188472328289 0.7395190649860361 +2.837851501154695 3.4770311335976554 1.6140109649035441 4.952059486480337 3.3986936512329162 +2.4646820521791284 4.709184779341395 4.535189930746009 3.6368585660809143 2.417600408045114 +3.813706816191885 1.1240979157258928 3.437295611109969 1.5028807043911447 3.3129981993357442 +3.97952505786243 2.912108758621288 4.001759442241013 3.103328496281164 1.395190209449581 +1.1065823803601402 3.6206433002021865 2.3516514125241863 3.8394605662595422 2.9213144963553224 +4.044478152404665 2.17990497630734 2.580249218593576 3.4279148251556983 2.0482114416168065 +2.642426970254316 3.7734548018972536 2.668932446855588 3.946479522063511 1.7062679992671856 +1.108945833437844 3.2607047835311453 1.0465458901029963 4.187859970276256 3.807613521564577 +4.571558848798596 4.430912867509663 1.3370587116517862 2.083752287465104 0.759824050825983 +1.1914409008503322 3.3679919566707937 3.0267272690694043 1.4279557949480477 2.7006378367077177 +2.2738442000848322 4.604196887100043 2.9438316568505907 2.217802004997008 2.4408323787695148 +2.1883423193286817 3.0197789648720046 2.187202960055934 3.258843508190277 1.356355543343267 +4.055092209415957 2.063176083141619 1.5683019755447516 4.364522304016572 3.433158600978233 +4.2886004384791185 3.7637230814271896 2.4710848830325705 3.8869555871802652 1.5100285066214834 +3.3111826488697482 4.913456597619998 2.4522922510565746 3.6362905994461796 1.9922685300513658 +2.374055411090944 2.0534768311954674 1.8921362303552645 3.0024922910097915 1.1557080977998035 +1.860676880785448 1.8746278095996858 3.861150758568297 2.090959791259984 1.77024594030172 +4.451174898783855 4.544698049529586 4.25840901275137 4.015896854768581 0.25992061575580716 +4.983265300895406 1.7309169331552656 2.68356197927012 1.6934125908443702 3.3997302417312234 +2.7515359296969124 2.1904362346989683 3.8385429299084906 4.350560971646852 0.7596020950421161 +2.2897441864602306 2.1957970703008 4.540079148532944 1.6635911547523232 2.878021757909195 +4.268096606351109 3.301837518664274 1.906807160298572 4.772418150619805 3.024133425030587 +2.470760785377664 1.6946405940338396 3.4014230193343984 1.6466309124565153 1.9187646780604688 +3.5437212543778878 2.002568986022369 3.8032766493191152 4.994995739735897 1.9481644449894782 +4.365966061824772 4.692271305154567 3.3867545942653736 4.650506917738018 1.3051992364796356 +2.683584950062753 1.9841799367828292 1.3538471045840792 2.4910314395696855 1.3350489070958211 +3.459861537432315 1.9864590838241925 3.6764591905815682 3.9981617344775393 1.5081138276163293 +2.898406614062253 4.501407676336191 4.934426742698314 1.4784978572805176 3.8096006177441306 +1.6866480249796059 1.1929957908843507 2.583683792850211 2.319014393486103 0.5601271455544663 +1.2265735057417757 1.536343266525487 3.670416964789208 4.117713591074848 0.5440878390320015 +2.616964572170305 1.6325360992540592 4.375201533777578 2.670691343087029 1.9683633832339353 +1.2406390731557555 1.3415287285589934 4.920593237353709 3.1452181455522354 1.7782394212131492 +2.05684227336546 2.758048395905298 1.1219130127426493 4.977877262908416 3.919202766487567 +2.844224676412019 1.4583674455167674 4.4891947980168005 1.060646506076663 3.6980459238076384 +4.162161443832419 1.5876070112464307 3.8501619254232957 3.420368409826539 2.610182559208681 +2.070803301109702 3.7613686037390393 2.8473739124166855 3.6055992102866186 1.8528131705015949 +2.29537182085656 3.1948130043657805 3.597786710468043 1.6506972199329284 2.1447964767652805 +3.586139272447026 3.8456219154606317 4.972372669292769 3.890309636164518 1.1127406030553733 +4.377976103328152 3.172119120409734 1.2625398651087076 1.5166104883786584 1.23233231916634 +2.1671149392355016 1.3269581622784878 2.981033521658267 3.404151707320548 0.940687200351391 +4.970002791081654 4.829099985318998 2.5628354225277463 1.8849282281328699 0.692395670757784 +1.7299574426549942 4.88532738444299 3.0536359486944358 1.5188057488966278 3.508854971604064 +1.1523644018678203 1.5806502310647987 4.4818586325064205 4.431397408550694 0.43124828882449306 +1.1566031614763932 2.307241198323323 3.924658583790346 2.986920442539872 1.4843586875802124 +3.8522595351440807 1.4142024632139658 2.9956900273054328 4.035137536048721 2.650391180452628 +4.7052202394579705 3.2058937278724216 1.1768552390465894 2.8333620443676337 2.2342772398290736 +4.4136237257891615 4.89477856741893 4.484497911479365 3.0627940861852703 1.5009169692156956 +4.719669137338062 3.0007664188871117 4.491857687537144 1.5216059337180887 3.431766605782398 +2.7382064472625727 2.6158447551979447 1.12759644785793 3.034630008878705 1.910955097992754 +4.776516827434717 1.5651344864662513 4.584233998434094 3.297292563035435 3.459652410001627 +1.382253674661376 4.679470916226584 3.083948385961025 4.929533488455075 3.778601051794546 +4.127772936752509 3.6284533922101763 3.480393973818957 2.0279196592007107 1.5359041774107218 +3.727079852836842 4.765215359163045 3.7855049556642144 3.7087656598520264 1.040967938515357 +3.12781258600285 4.222246205232574 3.046131678974435 4.8100542072427075 2.0758631054654373 +2.9985927469856346 3.335780906664948 4.658843625122433 3.4473994063893088 1.2574947117701258 +1.9811479977510227 2.0126208586492305 4.145182598431329 3.198681792680617 0.9470239259173259 +1.098663637315762 4.4255456705464145 2.0207876290008504 3.581799684726454 3.674901726734144 +1.7154282770257097 2.1743058928300134 4.802829877719644 4.115367618843006 0.8265428141760178 +4.370290377437943 3.594449735410239 4.418344792108039 1.5788982843866264 2.9435327706742602 +3.9168867780098258 1.5978370842829648 2.61729818826386 2.6118859794569738 2.319056009237124 +3.862858511535485 4.8530512605154446 4.5605617696507394 2.338599532227118 2.4326113262642424 +4.279699940467951 4.1032540049622455 3.8329167452460657 4.000059158221971 0.2430427007171616 +4.593276977867305 1.0171988349109662 3.653412022460074 4.725557329667369 3.733340386878309 +1.0613327948252027 2.5375293190118393 4.7120859128046 4.34687481023785 1.5207022481270713 +2.0354448033712327 2.6442930436937613 2.7856342125409586 3.2210571067518385 0.7485247334235647 +2.794789889170198 2.1834603619048534 3.230883889753492 3.322225417020627 0.6181157379568673 +2.373569453015796 1.1787795947422963 4.876123489754793 1.0501671929254002 4.008174695629132 +1.4405236247921342 2.38815273800345 2.4773193855382005 3.315236718263205 1.2649531187702772 +3.4287614357729623 1.8195678936489212 4.098497501628271 4.80784962428805 1.7586029369745892 +3.7613535829667684 3.8893537750350933 4.299584293034091 2.7220231774120562 1.5827454383735136 +2.9959347564174865 1.495492502076372 1.1243459990470481 2.18381560560895 1.8367914432076051 +3.4206849481705914 4.246376499289026 1.6268735169126103 1.7430580408979788 0.8338257499034633 +1.0882172825598628 3.1193378898243136 4.784498559638607 2.500592794904243 3.056415623478124 +1.5196108622938573 3.803506224785524 4.21214408184669 1.5235619310188961 3.5276978340783023 +3.479186315923761 3.212841744165871 2.2046603869415153 2.904830267739698 0.7491176762577659 +1.3803098337800441 3.4913605901999083 1.4001516687778297 1.4405079968092056 2.1114364611309187 +3.949563004481669 3.7711297637430916 2.7111669627234054 3.160547118136762 0.48350899213955023 +2.7912177387351575 4.577569638299392 2.367647435260799 2.884119607184488 1.859515155476911 +2.6792249285826117 1.2007390810706728 2.3072802708744735 3.8339982852807486 2.125273699269281 +3.2040628713516615 4.253528913110673 1.680123261058447 4.536025679907676 3.0426234730564685 +2.3383091979117303 2.4947375697899 4.284435917303523 3.5130849892416323 0.7870527871435279 +2.726994669572353 1.691104433720866 3.6050198684760804 4.752169274290127 1.545645606208606 +3.4085846407533666 1.2656425782670433 3.060163536578142 1.0394863522315 2.9453924978705657 +3.2366004302974396 2.8355460525500584 2.6066978217274963 3.5837475839134654 1.0561585353051868 +4.112851575376445 2.0791193206690957 2.37538141665218 1.3773994895219577 2.265399481485681 +2.5246940399236193 3.526947020990973 2.5231025282489554 2.16912164355968 1.062926857682973 +3.1040752216612173 3.0726754934643123 4.394017879679751 1.6311885963632786 2.7630077074959187 +4.550144650607168 3.4384222655384815 3.999666332075642 1.5219131452145236 2.7157296471599004 +1.4746336197752035 1.835467972454397 1.4885650913142876 1.4833931807579108 0.3608714157871412 +1.4790866834000829 1.3734983565143652 4.464992429498294 3.347300669428865 1.1226681456697807 +4.622767242956746 4.176710615785595 3.968558396351062 3.392853378701364 0.7282875681970289 +1.8333229726477778 2.590824819708948 1.6105621579435332 1.9974420567421967 0.8505792757853605 +3.279052157911214 3.8051141341897226 1.8347743863493768 4.465244109772245 2.6825570205925597 +4.25337284998278 1.364098100895423 4.700088496497185 2.21227025067805 3.8127612303872906 +4.823107843503687 4.505361978518607 1.2440103679102958 1.0332852344942318 0.3812709227941915 +3.256981963723965 2.7315140222197236 1.3332944605245656 4.602093240468557 3.3107645674846817 +4.775733807839092 2.6174074544599453 2.8064333636558194 3.547892462720206 2.282133704075267 +3.69807149877779 3.1184593964232854 2.5477185530250925 3.0812142034730594 0.7877612571348681 +1.9511027683061122 2.6843964278119903 1.1498286086333778 1.8828435484042445 1.036836772591911 +3.1854620839895786 2.0500196452715844 2.655446733822311 1.084274875383671 1.9385072969662496 +3.7981920996675456 2.643770974365796 4.3930028909848895 2.5850791058924067 2.1450586349202876 +2.0209542537376746 2.530109472318403 1.847217259405935 4.353192873836365 2.5571767277073283 +2.433693927103708 2.314600696320905 1.0115556678538136 3.037520795027257 2.0294624643341383 +2.1950401285298957 1.0396634102182114 4.1580816498145685 2.152504938511222 2.314569788565258 +1.6668555289618197 2.654390666672927 2.6191099836755884 1.7058815505761653 1.3450694477369274 +4.188421841231052 2.701210920470496 3.366181224529314 1.0482775964284148 2.7539922933793353 +4.090921789349659 3.7709620199500953 1.3318554910458174 2.4470195736839164 1.1601573967528265 +2.511289822044243 2.0576396482315675 2.43127545182651 2.642923222399148 0.5005929074493952 +1.8745726723023624 4.658215198938767 1.019268813525939 3.321609241536441 3.6124004709542223 +4.793824265248153 2.45335964105177 3.0604701098196854 4.772571137008372 2.899838716966044 +4.621147075206871 1.2425828436622854 3.149048309883725 3.1826297987174548 3.3787311202675987 +2.2178305387859547 4.672146621073727 2.1827030661005145 2.945114559232531 2.570007532408454 +3.112722976486957 3.622459431137774 4.916692351964351 2.8250405949928252 2.1528674658794156 +2.7563358246640575 4.214613588366047 3.817933550149353 3.67045169331234 1.4657165258684128 +1.5994823854676041 2.2228910207953234 3.9372443907053287 3.15597571309045 0.9995094162754399 +3.4171504391845264 3.812483301733961 3.4412222348253803 3.886278923391886 0.5952844095466586 +4.640544771275216 1.1460329661452033 3.908484727391239 4.4340777581878665 3.533816745420595 +2.760215904078216 1.9370571578838147 4.3815070749060325 3.637038931424579 1.1098752804234633 +4.0746099415901 2.0296277273329584 3.2268922242063947 4.931462250762859 2.662238011910796 +3.5587186345278403 2.510281101477271 1.5682859128869158 1.6989434067317601 1.05654751024598 +3.7229464680675037 1.9283256330601866 4.430232149135175 2.94544625007019 2.3292172735716554 +1.9816887414638518 1.2813350490742712 3.3778621027063025 2.825367513578348 0.8920457193773124 +1.1009570186110889 2.496463017096247 3.8204961557013846 2.209348587743067 2.131486213313626 +4.06406109288418 2.3079068176475803 1.793837041574824 1.6267947781543133 1.7640807680490238 +4.641666813701564 3.6955095099415356 4.1743931741127565 3.194054435694045 1.362452819551135 +1.983593332459877 1.0633610950500008 1.0843903913913766 2.9085917086743462 2.0431685727676285 +1.3803795564041077 2.908931761654903 2.0743290950314264 2.4307506328721264 1.5695566752474406 +3.436713915775536 2.3465061538828875 4.711798291038676 3.419502446922982 1.6907340159852675 +3.6536054531089164 2.445191065216712 3.705494785689777 3.7344648632330757 1.208761596948611 +2.663392480305447 4.890636663944369 3.7284809529256244 1.8801784465912013 2.8942769059776428 +4.602930553291773 3.1560693778085778 2.850223648854336 2.9887232863090945 1.4534749432638023 +1.405468432671333 4.467978276892781 1.1796929869879613 4.789169391984292 4.7336335371655585 +1.634625534114413 3.1926534012003924 2.878606524844916 1.1077505847798799 2.358682173392615 +3.701363998301998 1.8753052234309848 4.2984523588851715 1.0919586231543654 3.689999014439479 +2.3827192513225213 3.528297236623655 2.6475965132725263 3.9883458894606187 1.7635072469812432 +3.2970891623495207 4.050735947315709 2.1418572650073995 4.284677531009619 2.271488976173931 +1.2053179017975717 1.5107219074740326 2.740571445293963 2.6532085261050433 0.3176537207911116 +1.8145167775648954 3.1794140529447796 2.5729344645783145 4.239488698766192 2.154146603142176 +2.5654297597839912 2.9644180330956145 2.0452438598922 3.994071873415979 1.9892516855680253 +2.617635639775775 4.687795737838 2.28902773039532 4.553711385444018 3.068282074557965 +1.0518303567118341 2.1466562879216466 3.0620970625350696 1.7750247289250143 1.6897334143567935 +1.8466593896633596 2.0374324973466904 3.0604873242915893 2.956428925209815 0.21730745278203775 +2.668846915179741 1.3701001804897808 2.266809274277861 3.850308637497323 2.0479778597885954 +1.3756464049019654 2.71840648299915 4.852444537058329 1.1556390710313216 3.9331126707709143 +1.0295390358603576 3.2397940625593846 1.6767320082105472 2.0703112432195114 2.245023807730902 +1.8652141515523724 2.3118054837150535 2.994312786793373 1.3267082033175779 1.7263686931800861 +3.875992382507391 1.6946171670183365 2.384990164919367 1.056062431683681 2.554299659576546 +3.9911834054489734 4.788271939990906 1.1063547375325369 1.0323632393809796 0.8005153800502012 +4.237850035668392 2.0062963935474927 4.07067879678052 1.377170492879665 3.4978305620549874 +4.133776172282763 4.208834915024079 4.755098531091638 2.631345705872857 2.1250787932419493 +2.4868498720680563 2.7102283466291435 2.042039723532801 3.2111278985567115 1.1902374149210635 +2.306198661860933 1.2838806412142518 3.592248012246921 1.217285985653255 2.5856486155510074 +3.6757293119439858 4.040375946185105 1.7996532683252893 4.678305131701151 2.901655341073557 +2.0469955114070877 2.7241788610335136 2.2800317678575026 4.999590992312522 2.802602302205872 +3.7869819386308516 3.871662484396368 2.7473722895905226 3.995689081318821 1.2511856806013957 +4.0534477241342355 4.980153066458348 1.6165764756911196 3.0021706529202166 1.666929517245174 +4.895677771912281 1.9805640884776134 2.9507221941763118 2.331144700787763 2.9802288599471134 +1.1265216094305326 2.8082871816765707 1.7171562535661806 4.067012549219541 2.889664349057478 +3.2496686750097385 2.7091141506614616 4.062052901735388 4.7487628663721795 0.873939225189518 +4.947542078069407 1.8939239056112407 3.412406839360743 1.6660535492233826 3.517717122956355 +3.4676661208677593 1.9426529106868498 3.400018784579449 1.0067467933265597 2.8378541391942353 +1.7637731199838842 3.875781130657346 1.328796249644833 2.6744983449180384 2.5042947043771764 +4.939767152736996 3.461830710403921 2.773594122933147 1.9822193276170692 1.676475527479513 +4.719674810821734 4.971189624236 2.711278548256402 3.201774427329485 0.5512221954479785 +1.5280642675598446 1.620921082016015 4.382003887035476 1.6542358541118403 2.729348059414744 +4.411379028244619 1.5092151122908986 4.53795245671741 4.969912709693178 2.9341344644059384 +3.3236727573126257 2.983973636273839 2.61121521436462 1.8242627240017866 0.8571404289396163 +2.8578281515366744 4.928830402193801 3.054236137853259 3.57355632960909 2.1351214915765797 +3.6382182701823673 4.305962104820008 1.9244082977898551 1.0786250721968744 1.077604330629312 +1.9920649225145053 2.6265699453430345 3.6154770188986767 1.9661017807242356 1.7672111646030382 +3.9567990456428164 3.23278540991839 4.763206416783129 3.127046551389798 1.7891939106309371 +3.8380041947279553 1.2473199559193948 3.377975754006394 1.2129609541882647 3.3762307250308923 +4.650476809682661 3.19975880755809 3.7441949837111204 1.4867444471009215 2.6834056061151066 +4.8022712579139615 3.862838897722626 4.086430965366715 2.676643800091735 1.694117177396158 +2.676842131301822 1.8579220500074927 4.918807631185713 1.588786980694333 3.4292371793514285 +1.1794233968429242 3.805461700322467 4.411664319486093 2.1461052505319236 3.4682611012238103 +3.828941232200032 4.855623140314254 3.0888713215302213 2.7486981317779047 1.081569942017309 +4.9722927932038115 1.934554197034191 1.9644502587297712 2.8058080908241885 3.1521006932338302 +3.3332329591345164 4.3779652020257736 2.1793614994387243 4.479970874911552 2.5267110950502576 +1.9604684255577487 4.5498314820791155 4.8770139357265325 1.9379129056675226 3.917028963815765 +4.729063547002282 3.126809578648374 3.74474654441551 3.6532244122651387 1.604865751326009 +4.199006976942869 1.9512289973540144 4.482920612507958 1.0693679733355381 4.087156403408799 +3.4326380642076417 3.6075878684114384 3.858352533815056 4.710418553769151 0.8698413282612865 +1.9296672820346115 2.8855088574848917 4.075306393738789 2.5182208016422156 1.8270601135359528 +4.724378378441949 3.6153810707309537 4.916228983302759 1.4600768872197163 3.629719319695318 +3.7012298741276015 1.5729548005126799 3.3666186554965685 1.2436921395322496 3.006055851303332 +3.0144560209090883 4.961370229713506 4.3269435678536405 2.4832965944935284 2.6813259963727707 +3.7020600147166536 4.364879116833576 4.994050373951924 3.7743653560244974 1.388150101785722 +3.9021670685739056 1.4292233010043742 1.2864685588535596 2.2574291298934166 2.656730191057239 +2.11460906742531 1.971572784094176 4.1665085175757115 1.2361373781610632 2.9338599818436273 +4.010888753091635 2.838432605753026 3.8236526703635634 3.9578398869641194 1.1801100061143022 +4.932330187906583 3.0077999471334866 3.787108002618633 4.042438152269057 1.9413938634318026 +3.387589742079784 2.6281727440243596 3.4722119332355708 2.372896780997101 1.3361167542084793 +1.2052069651214596 2.9816318456267292 4.207986592218807 4.666804885950074 1.8347205734772345 +3.4237461545897685 4.557244186431726 2.3218607384009755 4.431665364843606 2.3950142692577674 +4.56191628028331 4.4586170248321855 2.153549160068802 2.409220982438714 0.27575136795800026 +1.4930357679379171 3.4714875778211454 4.8685894830258185 3.388982893084816 2.470527721970969 +2.0618393194820674 3.948515583486438 4.747696704652965 1.4867143553786484 3.7674332386169933 +1.1385135478941453 3.0363366814393804 3.762957444793111 2.4169486188285676 2.3266870021113504 +2.8968583058197477 2.247821742202168 4.879657885991357 1.1026729666445672 3.8323443923903278 +1.4843000314089636 3.331135156788521 1.4690790853818205 1.2562485182138428 1.8590580492972155 +1.8634995496456788 3.954478329680585 4.438468829225432 1.5769438255525796 3.5440820539599787 +4.015602682179912 2.9478005804559797 2.2280372406259463 2.7179613363312973 1.174830603959036 +3.9069597617433933 4.305626486793566 4.971999550000062 4.966636582375522 0.398702795430345 +4.545770544211381 1.511341160383859 2.467369883857629 2.7538157334918827 3.047919439586382 +4.952405346632915 2.0074549508958293 2.247742564095783 4.099247728550045 3.478621020943906 +2.384016931856671 1.2118912554967083 1.278705818894799 4.889835766783916 3.796595593650179 +2.8038473983949266 2.959839485633097 1.8793990015770654 2.511416891024057 0.65098398126371 +2.53725924937703 1.6152753397987207 3.725007762446529 1.2428883581963373 2.6478238359975217 +1.9841311703778777 3.539751178053124 2.7380224307626397 3.20740502075415 1.6248918807313526 +3.737711553227357 4.503125742217996 2.634001746018588 1.634060476459477 1.2592622535737679 +3.9372987937297164 2.7240860536227656 3.6053634033928827 1.2786871317272372 2.623986971364333 +2.46602524218636 4.641527509543957 2.6498903028754928 3.045843152813001 2.211241455529378 +2.0891856107285847 4.892779205048194 1.4643303351975434 3.7488306596559253 3.6165009020544154 +3.5355846315230464 4.2200102844434575 2.6547333223902783 4.733753925699766 2.1887816573063827 +2.3387603569431854 2.659072970567205 1.5474082037951105 3.825896566783473 2.3008931723832893 +2.9134957977977387 3.059136763128684 3.0796112191138145 3.7058819771619875 0.642982389470165 +1.8429186909854995 4.471271739744447 4.733573400032066 1.5393508455195475 4.136580408583511 +4.282744157204032 1.9024234820757053 2.2763533274876253 3.4561226105854863 2.656648655314551 +3.008492000442411 2.639018590587639 4.145380142554202 2.5371371455923613 1.6501382178067734 +2.3183519415532206 4.032321675794771 4.335447081401155 4.5632803353600755 1.7290460495618851 +2.7905560570604284 1.3237379547508628 2.821488381570628 4.685239051357025 2.371733944689471 +3.7856892804065905 2.699887422517041 1.1554850681002313 3.567565791741428 2.6452030341654 +4.903193109772272 2.9963959118973245 4.279078084448917 2.194602621252005 2.8250510633427024 +3.711997699120991 4.344441704646673 1.7404330239273431 2.283123123510805 0.8333654446347513 +4.697914864576855 3.911336263358256 1.5837634350007455 3.514878593794643 2.085164658346815 +4.541657758414417 3.687039547311713 1.5798775805929481 4.418471304379409 2.9644538477548057 +4.528900872187811 1.0005488818605732 2.2215717468082796 4.639992015480361 4.277619006359744 +4.401264875095226 4.2879766378664 4.909601822957986 3.1817881521096103 1.7315236948609605 +1.304046624465932 3.2630341219386025 3.547912865410553 2.712909453751347 2.1295217098533534 +1.0314282981122855 4.753296702699149 3.5268938441418736 2.3484260435063287 3.9039839623385677 +4.872253470820148 3.6820152673133917 2.0692982655681202 4.618787249767512 2.8136384027875785 +2.058508516090899 4.898458264190984 4.100031074542031 1.6967558914985363 3.72035565197287 +1.8052854413350228 1.109123201675747 1.529335699551304 3.1216396991661077 1.7378359793480855 +3.776512214245107 2.605842802072393 4.973799484324714 4.639098288632964 1.217576183651066 +3.686811065856648 2.9060032104727505 3.0556785037792435 4.104877704989855 1.3078531533968891 +4.6380210241914295 1.8143966922813832 1.4570280253514158 1.286098596159627 2.8287932475736515 +4.767617462831719 4.888721530883554 2.1665217385446067 4.154953700280258 1.9921164277598316 +3.737205012115577 1.392446677109238 4.088200103117304 2.7772609387555005 2.6863456855437127 +2.0340180115803634 3.218131247486089 3.6868570784777432 2.8583555475869087 1.4451778237073751 +4.193913055917463 3.981058340078941 2.5667966144021475 4.318203001641667 1.764293474260471 +2.2991400761697953 4.606237507810031 3.162771970166252 4.9600928623566585 2.924561667769221 +2.596595303868632 2.1593064764044674 3.7729093424806845 2.2699074733143325 1.5653230137395067 +2.278623411806035 2.690443742526239 2.931464948311819 2.308687080463818 0.7466245759923791 +3.5267668319495096 2.087404283513645 1.4277482174256932 1.4028286572304265 1.4395782473766796 +1.6426879658850688 1.0757859235101828 3.647909210133944 2.5751818674196283 1.2133102972676586 +4.363664901294874 4.3235625019741395 2.213462412597867 4.653722616657294 2.4405896963536167 +1.6145948096405052 4.970250105278611 3.283703268912553 4.3802006200865 3.530259042092456 +2.3018628192972015 1.983862014903305 4.242211169066634 4.759325514759066 0.6070681659550907 +4.129860742246997 3.3794136029707893 1.5077898558563199 2.9086490092933026 1.589206492755433 +3.520955565514406 3.333118969396306 3.8414924317271653 1.5543935842166912 2.2947992777419493 +2.595492287395119 2.7996222858508544 4.5859579825548 2.4996478964493427 2.0962726043277145 +4.2911757975691955 2.0371736993953045 1.1185555466086314 3.4505664582981463 3.243270008927913 +1.0714866101257337 1.5961281465625645 3.809990685316452 4.748541137686917 1.0752328554316053 +4.059796522195355 1.20227398186461 1.7608028404458387 2.659926450228999 2.9956398872641175 +4.377125750848572 3.701262848956627 1.8044293458194591 3.064528460484078 1.4299092422011817 +3.4641503892042715 1.0743992156995352 4.338131729855297 1.5995226931057616 3.6346788203957554 +2.8913960084093286 2.8847741971736895 1.9371978784524235 4.240908639990426 2.3037202784214155 +2.800159464936877 3.701693799963084 3.2445180744891893 2.3108230248170183 1.2979023857800183 +1.192586629636275 1.7736465820895333 1.8285666777878853 3.883941619695496 2.1359299661193707 +3.609288239533765 3.7705957385109934 4.403906111063774 1.3356950260029636 3.0724484327188186 +3.7425906392785566 3.574485318870103 3.6189869998637114 4.830906436477182 1.2235228316591158 +3.3510732448820195 2.3548122303564227 2.2937690055388296 3.1627460829374985 1.321989852498083 +2.577283275052964 3.1674267750387126 2.7992392353710445 1.5624793658104084 1.3703446010150406 +2.3684346056531576 4.169752693565526 1.8503480142583952 1.035220755015645 1.9771644601805052 +2.306200744856314 4.85126572323988 4.011569534664939 4.426656937542807 2.5786921677901833 +1.537576100181628 1.4387247838702084 3.9296435867796826 2.2301369163730316 1.7023790722084202 +2.460352353620034 1.0420027667398983 1.5135478898466226 3.744462314890661 2.6436139511041743 +4.2550584057831635 1.7101965073377445 3.665029579679765 4.971417419603483 2.8605893222306102 +2.3360468226135387 3.9443543009121047 4.8932544744261595 1.5156131601813696 3.741004382842175 +3.5461743695497 1.1101708174262623 3.0918714828566967 4.501581955026585 2.8144976321367645 +4.027766792251926 1.4965334645400628 3.7972581257277978 3.4431755964270523 2.555878830632486 +1.8982655663474226 4.907841377126803 4.290495913749626 1.8295616818077534 3.887639882341432 +3.592320046457302 3.714643231411261 3.047256176261914 2.696280294473212 0.3716813570447641 +3.2101325030793806 1.0779643632452949 2.447132588512784 4.776675770427792 3.157991832308982 +2.390665293418901 2.686903557601846 3.582175970197379 4.697068222985209 1.1535778450076293 +4.134397956492026 1.136581802176087 2.451320336885199 2.0507412110192997 3.0244611637706798 +3.924908215405651 2.364048842598488 2.625375797382274 4.107929411682739 2.152730173745735 +3.3652229572259253 4.319215875087207 4.214169050215268 1.8494067187423409 2.549941836921532 +1.713103216157454 4.823098340120109 3.155402760233456 3.5332857850185952 3.132868534026325 +1.0487191498797581 1.8199247818437652 1.5295569067774002 1.1883888963251872 0.8432993170452142 +1.8442811544298463 1.2262989572072107 1.9311992517498728 1.619471228631196 0.6921534197572058 +3.1738281781240834 4.022460482622355 1.5701343066726534 1.8294357876166378 0.8873635366960888 +3.9576607392984613 3.2337509585770863 2.2474060275526475 1.3234579003444016 1.173765527009417 +3.1053971788101724 1.5706227923087686 1.4473458400331034 1.548398279146293 1.538097530363886 +4.623708280608693 1.7108615515538723 2.3904949315666677 1.8151410847152682 2.969125816810745 +2.867917316535768 1.7919026653742534 1.502071793001638 4.947543479795936 3.6095820636211307 +3.5491395273080015 2.018506050013905 2.2441887896422883 4.474717606196978 2.7051982632136746 +1.654219579740436 1.4807804210406195 1.9807181132343485 4.196611096577633 2.2226702084206065 +3.5957080906994943 2.5894193714711102 2.85505591657931 1.746940765698688 1.4968420671725808 +2.04700784351479 2.8612551349403432 4.310354012247716 4.186399111024304 0.8236282347826329 +2.6369600015681356 3.934704770387335 4.802580500496195 1.283403680474624 3.7508328375941695 +4.283625992819442 3.293354644716719 3.7710632928130168 2.2053705531828345 1.8525741814577492 +3.9627241912167297 4.744880151414254 1.0493262748176302 4.707986897008489 3.7413320481404093 +4.5135116181644985 4.062508010622185 4.3511716204886834 4.94047033793012 0.7420762982297056 +3.829286518538363 2.035462267570684 4.033340914695269 1.5572624586332426 3.0575758312647396 +1.615918216672536 3.7804945111994623 2.1973801339422745 2.4570260777441044 2.1800932436390563 +2.939466564259621 2.1841699885895065 1.366409854441097 1.0360245941144322 0.8243951343015795 +2.304431866091111 2.2941990833597403 3.03496226876665 2.847516591456432 0.18772477669373802 +4.632899699293121 3.651296245806996 4.624524947065481 2.860334788743171 2.0188888663364275 +2.545878634658973 2.027297455552701 2.966236276441804 1.43869501267899 1.6131673043492256 +1.7014883237755458 3.3507572420808898 1.5245552058937721 3.500236919030794 2.5735979088645755 +2.242943053401753 4.571774973230223 3.9005174571604475 3.46985073565299 2.368318377209014 +3.2897104287828802 2.2443345995424093 3.6488103772134353 3.0926367243519315 1.1841198235387798 +2.1772862568744857 1.5846111128411455 1.3416477110601344 4.328686266362066 3.0452689794524215 +3.4416259923810335 4.8022922085021875 4.905561538824344 4.078950416157349 1.592073647734378 +3.9720263718272255 3.118073889086595 1.43100240574064 3.22679330021449 1.9884918354004064 +1.2298958172669643 2.9936792119478484 4.003529446362157 4.721376854097942 1.9042680389443627 +1.538593298235687 2.8910830849037503 1.4290744349685913 3.846140760384618 2.7697361326490215 +3.7478930035297355 2.705570182668465 2.2111055914462354 3.9501429911253685 2.027483154152201 +4.967709584567929 2.523495359761088 3.1931419846150275 1.0130467613371468 3.275209666465208 +1.8162220949493633 2.488854975515831 2.4737655883697003 3.1858227852555694 0.9795205172205969 +4.533147739809722 1.3050201367634529 3.4257588736333173 3.748624039434103 3.2442333049330503 +2.3811484649427186 4.719203494448497 1.2310535151104807 1.082432355560702 2.3427739050243805 +3.855584775734248 1.1475239637653898 4.69523657620732 1.0458351257744827 4.544416828124675 +1.5968849865157333 2.8962243479741656 3.506855035988755 1.787262566347847 2.1552914044000926 +3.922315076610621 4.591801849517077 2.0420634671748554 4.9595557311854455 2.993321507900269 +2.4496807649115855 2.8858219605489683 2.8938331310111005 4.918562944352486 2.0711711565115634 +2.450473867111402 3.802623496180806 4.70972972384326 1.9098231297440336 3.10930628196594 +4.127390848841219 2.997582971181206 2.0768510836297 4.889804027789705 3.031364396848564 +2.443870665927842 1.9201274423522543 2.218281904721649 2.5779441592743617 0.6353454978130314 +3.257788954443817 3.350481590735807 1.9106916694145997 1.6832836734618892 0.24557345427791488 +3.2950137648092475 2.0627653325834854 4.2172291711870304 1.4087710351434697 3.066899623501252 +1.643924877976751 2.2336367986420167 3.348970698505171 3.629513051664902 0.6530422354573369 +1.4660810976742855 1.3327959747349136 3.6039460017479135 3.7935449526474665 0.23175997536066187 +1.6554294860350134 2.2392089981258017 2.5160408682104594 2.277912751252391 0.6304788012478725 +4.527142725925449 1.7327094777426417 4.439974823554083 2.995494160834891 3.145692541161515 +3.5418694871345253 3.4754846915107263 1.404653906332089 3.8694107001666156 2.4656506228262485 +4.6605488038020315 4.591196906690217 3.856439115813786 1.444572797251885 2.4128632004832653 +3.0678696842776576 2.249715808364934 4.697604972502198 4.753462486317637 0.8200584287236213 +1.7607973895482782 3.869121311745123 1.492746937454485 2.1728655711519154 2.2153083570487304 +4.1570711059486865 4.97350753613864 2.22661500271702 3.0898316574104423 1.1881546353406265 +1.2529643803131463 3.0365756524525036 1.669562394512135 2.9196123917336223 2.1780482468613998 +3.502161527833015 2.2318097201555793 3.1418038598814557 3.575916554604682 1.342478136503232 +4.363218426066577 4.621183340544873 2.3954032948768313 4.726988306834073 2.3458121333741637 +2.7391004776614327 4.739716682638388 3.470751459582128 3.0956647386216933 2.035474207121585 +1.664128835778988 2.0735935440881783 4.593190633154944 2.8343072186008214 1.8059158932088453 +3.380623039404507 4.63989477393741 3.693017231911481 1.3884623336323392 2.626164233359348 +1.1734768260344448 1.2913666222665987 4.759067023534117 3.1138810960643366 1.6494043591552254 +2.93868594849539 4.576362877310375 2.9436787518494008 3.458483840899833 1.716685761251926 +2.2817356704236462 3.2026236392263328 1.202484980721798 1.742954304128764 1.0677741992713259 +2.739050970657018 2.8566549613880388 3.6469188899464586 3.1769636964365517 0.4844466766763872 +4.7949723865121054 2.996200664706304 4.297072077058598 3.4194858804141743 2.0014337959845263 +2.8883926589461106 1.7855593773777576 2.4081017202313455 3.056472524870032 1.2793068229485218 +4.048010437192062 1.4692042927930347 4.9605086700375685 3.0989508289019594 3.1805091929255047 +3.0046600905283376 2.490792100244777 4.7343797309739415 2.7519987487649376 2.0479000634947986 +1.653948549118164 3.4303631137478825 1.9977517270762943 1.5392622179934943 1.8346283916280102 +3.433232279929301 1.9309998730875417 1.4566762843271182 4.348847227056026 3.2590420319675233 +3.6881376136904422 4.7826339909803455 1.9812251395283424 2.3836380979307035 1.1661297136214575 +3.1769251884069893 1.8206511744327192 2.3393649131260994 2.866216065521711 1.4550090507493287 +4.3658755682932915 3.6271983194293593 2.846274879423339 3.018980892337607 0.7585983422641596 +4.770054645408097 3.452598518154546 3.951606904167986 1.4643185032813584 2.814657037086949 +1.5888011394993695 3.0173852606920053 2.6116924230916365 1.530286332936078 1.7917286968593396 +4.633251304729134 2.8735774642131813 2.802520871921467 3.864508258711443 2.055302711207564 +1.1036027222164702 4.462542105019294 2.501031187213936 4.188557431596314 3.7590183030710436 +4.734402811033821 2.0371029784831425 3.2900046037282187 4.58775628555926 2.9932567237664753 +3.2777075521013823 2.4264854188396496 4.429295751826498 2.4630701687889323 2.142573724179887 +4.730428722453176 4.2529266320255115 2.705054143314023 4.841587857892906 2.189242919343358 +1.6856384567529865 1.3032327776918398 3.9369598272768362 1.3974548513340088 2.5681354376700223 +4.7273060229607005 4.094155991407385 1.917842850328316 4.596302254629338 2.7522761022369373 +4.143698202433841 3.0131869314518887 1.445625097576476 4.662116988565311 3.40938056230368 +4.176262590168685 2.5408422833557727 2.7212275555621934 3.068051172017267 1.6717913149873151 +4.186856043548242 2.618148909884985 1.9240429337358869 1.8714807011390562 1.5695874806781416 +2.9296496266048506 3.424849201899146 4.753372273707463 2.4044075142881303 2.400595355399483 +4.69046098848662 2.372130631860254 2.9153199207477742 4.80814007060769 2.9928955481558406 +2.022377756792128 2.1365352267505022 4.353459299162136 2.648895983993859 1.7083816972107737 +1.6972192105286776 4.314715086337301 1.6072582141158929 2.23871003700452 2.6925853866692 +1.6061634736724737 3.2431255355915507 3.119080559321492 4.598778187538583 2.2066150237668647 +1.2429264414586472 4.464640163472829 1.472988594721226 3.922224593883922 4.046998429232332 +3.7108800892827225 3.4256092480845597 4.366198767315524 2.7887492256096005 1.6030366525647923 +1.6989653016326542 2.37241316893144 4.00754107295533 3.6336394634724423 0.7702820545379311 +2.25258544019787 2.6991145308783415 2.5126600337858376 3.9505274437298707 1.5056064948727774 +2.1100492811133003 2.605672107412924 1.2833251694431995 2.1666417208876076 1.012862338131332 +1.6455573308749272 3.213737211096076 3.299496711634868 2.000034129636913 2.0366126629143815 +3.404130085077206 2.871231537472466 3.3175057174051887 2.0508457005906418 1.374193749161984 +4.60650605831937 1.734350590154512 2.6469019228348722 4.824814597123437 3.6045222499155227 +1.1808066525913863 4.344478303201873 2.546112721039599 1.5770734464914158 3.3087543620663884 +1.775278849068458 1.5078805089761924 4.395591894392611 1.2070360941342466 3.1997484219302863 +3.7982425312504007 4.655696168471099 3.4896957405295077 4.548758283787965 1.362659242259809 +2.456552014101622 1.962021849890173 1.8513081399474776 1.7834382009844956 0.4991657158998819 +3.610399976195688 2.744985482174956 1.2371151580153357 1.4990030017230498 0.9041722674043012 +3.024024697739457 1.9498141385590082 2.0041150908392455 2.0867297564367133 1.077382712143904 +1.2886787350600644 2.7569893216013153 2.212475602381509 2.1967500534738775 1.4683947941332258 +3.9346589037334647 4.2488559686905685 4.8680614901642185 4.066617833964338 0.860831998528569 +3.3193519002296665 4.460507031412797 4.840629816357329 3.656440027607224 1.644548719012485 +2.699040294990743 4.5792787610793475 2.9401284107826102 3.959424070993257 2.1387520502114046 +3.6075508962328393 3.747507427998019 2.127095973339832 1.8748601929515538 0.2884626833609877 +2.8058341025712705 2.1419903364705073 2.3489615433161934 3.6103460577098656 1.4254050087406753 +4.96083445614555 4.516179541456003 3.63667743406784 2.5373556761827456 1.1858441383744924 +2.1030675743160585 4.398145855870562 2.7098858114261057 3.1224643830582357 2.331867362487237 +3.232077724802851 1.2493854772042843 4.686507981079453 3.4247126100905656 2.3501481031918905 +3.1586074148392664 1.3978276572070976 4.141400527778314 1.4518965657549656 3.2146192490910166 +1.8076885049201343 3.7333053800341514 4.337843335640963 1.209624707376133 3.6733842891735367 +2.4172696253499977 3.6740481574811232 1.1541849693173338 2.3036016008660782 1.7031297283843438 +2.226757411166631 2.9368785485767477 2.448533855066671 2.8368899939782466 0.809377860104256 +2.0844726193784036 2.0512531745637053 2.86666903592479 2.132447725112272 0.7349724244929529 +4.200847768308064 4.798029757143475 4.496219277149182 4.21584531213542 0.6597240999440259 +1.5491272488286842 3.665504116209173 1.7117607090883138 4.1502454465492296 3.2288169442712418 +1.1281903978976637 2.003189206315316 3.0876599903994975 4.10331680443775 1.3405900486855196 +4.499599458587916 1.7799168276761308 1.322913807605889 2.0938596488419283 2.826841188146655 +3.6122815359097866 2.8001653636241417 3.3294959136687345 4.281135262038052 1.2510596015588809 +4.309903353025621 4.2536310347815895 2.031116544251645 2.24869293622297 0.22473553378096942 +4.080031165527714 1.4862953287031493 1.0083488877693152 2.166803776725729 2.8406836009973095 +3.9999629912729304 2.9446083394877545 2.2055387904677537 1.1912572476350842 1.463741947604027 +3.981027380378411 4.708358489566725 3.706976583955411 2.1301040267269538 1.7365303349303514 +1.6416292782990398 3.7669622653206876 1.421908418119556 1.7296273414191474 2.1474941772864065 +4.692319490327723 2.6402220342605878 3.4100630050466485 1.8678857881007245 2.566985496192817 +2.111739629258041 3.491701590843916 3.675560843648276 4.694508955329015 1.715386332498216 +1.9508710876252127 3.692357377204159 3.837850950150624 1.1208038818770087 3.227246390966406 +2.1313199951419 2.0877995837785313 4.759281955736056 3.1840462005381016 1.5758368286911266 +4.862164655677849 1.709133513851115 1.4632279861384934 1.107329758856738 3.173053565496727 +4.487016635819158 1.6588615088728331 3.1076533274553375 3.872012523504799 2.9296256420672866 +3.6881872741245276 3.487331483810374 2.2299943850484487 3.359989370831264 1.1477071562018895 +4.406909765451181 1.448558353968731 1.6635788773056146 4.61364283887753 4.177884686200134 +2.161906399924188 4.8736441765723635 4.108045222260116 2.6010602136501273 3.1023419517319555 +4.394323951824535 4.259033743651542 1.3223762886871646 3.3269819963185245 2.009165867591752 +2.5373101552355903 3.4544909602352822 1.324868766116647 4.611515958212484 3.412223672969188 +4.397816184613747 2.081575749193002 2.2210952740549668 4.132783859368766 3.003252070988574 +2.433744544720467 1.550676372500745 4.290540046328928 4.716201054941917 0.9803043869334191 +3.5546566357876004 3.1062300416586552 1.4275429686426975 4.212534307585509 2.820862132098724 +3.6927395820964994 2.0684806804006564 3.9117220473501044 3.0706965374356736 1.8290819795911322 +3.7630021600034995 2.485445593469276 4.328351948652962 2.4984544199829513 2.231742759846512 +1.854391749187017 3.000817276568202 1.5479545719268826 4.042187529951809 2.7450846141292264 +4.473001358854654 4.448768182464619 3.7219971532135396 4.326605824973866 0.6050941189647578 +2.119660824727437 2.727990799574494 1.4159496199382748 2.306832644916439 1.0787668527034304 +1.4237017073018632 3.0311358075554424 1.331336749036856 3.436287076975058 2.6485203925484844 +2.9010701714261935 4.435536302859388 1.5292125707154005 2.994751815030967 2.1218839707073043 +3.1248041473795953 2.782248593178167 1.6785464420545457 2.072176506812944 0.5218131232500275 +4.952824858019563 4.271309235755392 4.413442068559592 2.720402081522533 1.8250610787303978 +4.8328985455872155 1.50362549883998 3.4011956453765477 4.959748464225086 3.6760231105011223 +1.3907460779882155 3.73596445664923 1.911101857120305 4.374334937780619 3.401112531697341 +1.279738765576914 4.378826128764386 2.935167610578692 1.9080710503399207 3.2648537224081866 +4.209824310213177 2.334365976922469 2.4463512283849 2.515622894004269 1.8767372015194992 +3.9205235775069758 1.6690038487786722 4.745573254290035 2.0667107749942155 3.499377840678499 +3.4309442911141415 2.442718355281235 2.534707757028919 2.268654051536552 1.0234134425827341 +3.577720766603624 3.0973088741313517 3.05817440625704 3.2289807517744755 0.5098729195572281 +1.7489979579615489 2.8424669098512987 1.3720496450206507 4.201996055520142 3.033854155203546 +1.7582193053312274 3.7719885454982265 4.650007605187364 2.795774802988167 2.7374159050816993 +4.744363219395342 4.9796778155305415 1.0027956814207215 3.3359560219337645 2.3449968302104827 +3.9905143058569523 4.332819070684711 1.0910748408027002 3.8093979329169634 2.7397906827247653 +1.1427664500461585 4.377163650041745 2.6188266578764194 2.196726101199751 3.2618237425228918 +1.220319174721205 2.7699379628636263 1.2632012336187821 4.2282657323720665 3.3455830389232686 +2.2263625517466297 4.722387340018862 2.0402912297308586 2.9772872340978567 2.6661022590795653 +1.0778866961221683 3.858209384840423 1.0060430092756625 3.819505739948074 3.955473017261547 +1.2921024882907068 1.8622314379724392 4.06816542564755 4.14839334724809 0.5757460713452918 +1.6721704923799328 3.308558973892669 2.3980402162515833 1.9761512011471685 1.6898986962221527 +2.36923664662011 1.7681582468911765 4.229560267072227 1.5526920594206013 2.743523035033007 +4.166526017586779 3.6617202862236864 2.493915394338396 3.3075522204705314 0.9575143399737687 +1.7583201740341985 1.1913910122465268 4.709456735069306 2.0836584980057236 2.6863032323718574 +1.325972838883661 1.3391335041065884 4.255997932523117 3.335462294183836 0.9206297108837068 +2.5547300784513642 3.5846638431299116 4.098455022305148 4.78693658644862 1.2388585164539037 +3.8357654439508706 2.245700675146948 4.540616212257518 2.217100634394013 2.8154982879706836 +2.071672707031319 1.6898896694351908 2.8852827409247483 1.5607465193838639 1.3784609134719523 +2.108703976393589 2.8368272156928853 2.2537802336338477 1.1522550925062989 1.3204245863144803 +1.5654766257081443 3.0702624975404476 3.2437994184066365 4.592730260885141 2.020889640197077 +3.169340611035474 3.8280985977018083 4.986431366299959 1.1745841271475652 3.868351258563577 +2.593329634331152 2.6214649025163794 3.796516320060395 3.25127219123018 0.5459695534914699 +4.74829400174454 4.5606306803443255 3.821274395621297 2.279235750576083 1.5534158184503721 +3.294263740566725 4.607569637025536 1.9077677594878621 4.096318221894851 2.5523568528274656 +1.949844324641719 3.6685471459439274 3.2459546544506837 3.2927384720565502 1.7193394410476222 +4.682074259788207 3.9093909403157627 4.015351522250086 4.3899814392465455 0.8587124588008083 +1.6602856358242266 3.3585132407102987 1.4107345998674394 2.0196614316621377 1.8040978034675985 +3.624444190325927 3.615784730181221 2.604155252261601 4.426646407237019 1.8225117273185463 +3.9663659294629894 3.166658682927415 1.7020036105280667 1.627644363936715 0.8031568823804869 +2.8050913814225913 2.2287793488673606 1.3175060454900787 1.7353533393959948 0.7118510517604355 +4.82929771358779 3.259302869645774 3.570987576325489 2.7925646242787905 1.7523772716734294 +4.348611071488031 2.354119289473512 3.7613386600445393 3.2101571503072637 2.0692507158872053 +4.695865710008148 2.266864035134195 2.815138082654642 4.790665585478649 3.1309356510402004 +2.090832719217805 3.3690701123644717 1.1030001434622339 1.8744737281239825 1.4930044625081447 +2.020828156921594 3.048944620036333 4.169347938488393 4.261340354514273 1.0322238450713292 +1.9424991218210357 4.497502883648417 3.921476492319312 4.116645807959047 2.562447128180278 +3.7119332890695396 4.575504876866289 4.917354132815513 3.424665608790616 1.7244926549583863 +4.306459396487229 1.3741288123986806 1.367448778861795 3.2224400179901904 3.469806212402097 +3.2258527739868947 2.352490043264938 3.2427248369297326 2.1658710417501115 1.3864979464849079 +2.84037291740147 1.4768636949009015 1.4754370450482694 3.2402475620123683 2.2301824052375614 +3.2256501195882943 2.9581427285296304 3.2742844690764783 2.4882306972157977 0.8303256809995797 +2.5256391605205497 4.638071955372637 2.2298456238748123 2.761821634326653 2.1783871989301757 +4.101869648422998 1.764934621070506 4.187406615517442 1.0439894318562581 3.9169295261216273 +2.8999371725382725 4.053251019162646 2.667835688514756 3.871338049115739 1.6668985454392982 +2.942058862402166 2.489307595620206 2.992752113621417 3.1527686045220378 0.4801968210357267 +2.621336513267784 3.506665048369326 2.479095231685234 2.885998817703434 0.9743598633869893 +1.700906806108212 1.3659577757507155 2.3156976806118155 2.873735488751245 0.6508433361804407 +3.6987993179775063 2.5679632746479153 4.232921097282629 4.856793307791183 1.2915133340148504 +3.596573410374732 1.873351792868506 2.191796853213908 1.876400397830229 1.7518469302736936 +2.277528292621775 3.499978698036396 3.2373018663121913 2.525737239857838 1.4144642842148736 +2.8151521851204255 1.4701402912584673 3.0137739172729017 3.135663659859844 1.350523640658705 +3.9340998940652123 2.8236009206034915 2.444702898365043 3.7224279816432904 1.6928642469193858 +4.131316691246412 3.134542246408646 2.8865424061700615 1.8763510258019211 1.4191708561169531 +3.1736941683116826 2.492488466239448 1.0381044620288629 1.8913667273551424 1.0918322682378736 +3.4102937267774784 1.76743681261198 4.743106303548789 2.0736855148588855 3.1344514970742825 +1.3520125690976825 2.3009776121703807 3.6116635303716973 4.9497399747213695 1.6404216603963229 +2.8057336330323075 3.8582230975996072 2.4441592109592056 3.800831005712797 1.7170592394280089 +3.041477481329625 1.6782728506575921 2.3630342102306185 2.162550562461463 1.3778681207243677 +3.5653258527251155 3.77092175567451 1.336779500577181 2.9549095607204023 1.6311390397046728 +2.3032641929636277 4.45653877690412 1.7127469319874082 4.417295559078976 3.457047108465111 +3.689668352802292 2.927796835074097 4.385307769275844 2.983038505342002 1.5958719554209297 +4.4045954605198485 3.5558078208767654 3.34200357912927 4.271580388261771 1.2587904914193782 +2.6850664845388685 4.95788076077589 2.294244147127755 1.7010386983418089 2.348952413042067 +2.882805783910646 3.6897499086017946 1.364941063971147 3.3436779945151005 2.1369507857393604 +2.011427309401176 2.356891488484387 4.448983318966526 1.8124913571107961 2.659029026535723 +3.1714613884961294 3.576233361154515 4.010245084779049 4.882168637491 0.9612965367791515 +4.225563120455579 3.983725825295296 2.906717348685052 1.9369860156973426 0.9994319063891054 +4.123057238900781 4.404258802499818 3.4814974395626153 1.4655586178464408 2.0354566200911632 +1.3740371862330885 1.4852988734297834 4.5217732456983395 2.173853208893006 2.350554756279848 +3.478893598213264 2.8456616639026815 3.5126698153293474 3.8128528252865994 0.700779938424123 +1.6248866434822302 3.5353121503816465 1.9035145427617253 4.3585918003399815 3.110808569823907 +2.2142367291726015 4.9451891987348935 1.5573843119484407 3.1620858005057335 3.16751768083248 +2.941183891843647 3.0554254083753487 3.2701995677666575 3.0956151474761824 0.2086404656523378 +4.158132157738862 4.715299270629619 3.886128234814144 1.0307951514246376 2.9091858326318114 +4.958925440396512 3.860155226062052 3.819059421294387 2.5892340177855346 1.6491714607718346 +4.314383245374771 1.0244161336033244 4.9866773327024365 4.454749673118612 3.332691199551509 +3.787131659765797 3.9599849152841053 4.78341392685439 2.5260690977082247 2.263953163300029 +2.5933791731652516 1.6191152202233186 4.75683324186212 2.8158447169082974 2.171779616813008 +2.872856858524885 3.7353640653216256 3.556070602531875 2.2425788535070628 1.5713622295742558 +4.7454376300077765 4.457014136223343 4.632310680308101 4.817577962458038 0.34280034656056513 +4.192560327306754 2.314978452531081 1.8456767380405616 1.2210294147974357 1.9787617276774216 +3.1704355407198186 2.35337678469538 3.834731863417775 4.918328631456184 1.3571171528278199 +1.5757825266439527 4.889724746400691 2.8657930355925276 4.645607587302762 3.761642310795342 +1.5122246191129767 2.7770442473135932 3.7746873348375622 4.453749145905087 1.4355812882354844 +3.256995988942017 3.009412560606038 2.2879236108434973 1.4047906208189045 0.9171812427521479 +3.3590833450095605 2.8706298897916382 3.619596340649958 4.9494655479442775 1.416735291585534 +2.490514583989398 2.0990359438002177 3.35160880195876 1.963300123282194 1.4424480971643459 +1.8379824124372148 2.8631596888731052 4.0236863183011815 4.872749691872538 1.3311262376126776 +3.305522225532024 2.3096744002103216 4.566913855158765 2.0834526706913152 2.6756853974177215 +2.646345568221423 4.418091659921284 2.158683152081056 3.66609132259845 2.326233781457988 +2.46364192431017 3.2750382958303974 3.6623210674941427 4.320550829712482 1.0448112229423083 +2.348804069382744 4.2116395049143325 1.7491428592458131 2.4254709095300355 1.9818111644335394 +3.5627963205227373 3.0266715998159333 3.540222853806431 2.860513383529247 0.8656989546819601 +2.6137486625665254 1.7546445666634716 2.108484138092853 1.5236827267706028 1.0392557617265825 +1.8426082080861632 2.5350556079009787 3.869257223448101 2.766030532425341 1.3025331217651732 +4.351101312954863 3.7559503642776635 4.7528182879707215 3.2710153039057746 1.5968546381230673 +4.8639364399899705 4.413508512225553 4.058293991754942 4.6440516554035725 0.7389163407539783 +1.041900147426385 4.357458830405175 2.797927228189027 1.8617584701315897 3.445191043155496 +1.8125140519432335 3.968979409210561 3.269361211430653 3.6063873515871596 2.182642768810988 +2.4657784612901383 3.4402455089061053 2.2485153230902384 1.801816946527254 1.071972698585829 +4.027346731550839 2.8960561114937353 4.063776274598777 1.0739607298740603 3.1966882016403697 +4.141366210991597 4.634552949559987 3.5963170991799407 1.3847685261477602 2.265872955392777 +4.503035455928272 3.372943541871987 2.8035857141966827 2.13806048760651 1.311499737492653 +2.5291878167310102 3.6164942272114535 4.239711273647385 3.9906402785530593 1.1154692245280207 +2.9915083394166597 3.9648828664160765 1.1553677852761175 4.747008104917873 3.7212011710585693 +1.9821510056918155 4.481365256514401 1.4648974180252434 4.6082311225121675 4.015796141399385 +3.438481835949872 1.6131883053883076 2.0685400114727965 2.717302807934575 1.9371601995660572 +4.625830893905825 4.449979431063625 3.9379804527781954 1.7703453611427786 2.1747564524500262 +2.27608302382871 3.6063397928462746 4.603290945036594 3.414226042195084 1.7842248778353418 +1.432849392626074 4.934958854772713 4.5527851091344065 4.5990084327758005 3.502414492961317 +3.3860669963172803 2.035067213496387 1.5351926346696452 3.7838519587596045 2.6232935727818973 +1.9826820218706 3.529053455359174 3.584645685178339 2.161637043235465 2.101480003557876 +3.284330967631348 4.810767097405118 4.306925280004136 4.975954243912903 1.6666154363942403 +2.3749839502819468 1.0855454507650206 4.430184438841373 1.5872785737246198 3.121660680143134 +2.2242732086368178 2.5552649628858313 4.619300087660456 2.248733397763272 2.393562610969458 +1.1203550271842082 4.744811252900942 3.9407603428206275 1.5557659043962153 4.338764962918845 +4.96126617552803 1.7246008844697394 1.96412600743643 2.161864529908934 3.24269991359223 +2.761993520520785 1.190386258905976 1.7783731224180501 2.1531480140565904 1.6156749686007637 +2.6171216907642414 2.39712544291833 2.527219650428604 2.5176048517275227 0.22020625200103197 +4.348687665489041 4.018706777826136 2.922353277244626 4.433228202035718 1.54648971046861 +1.7234817250009553 4.514007556269934 4.036683416058059 3.4065059284537043 2.860796756301077 +2.8634283512302243 3.7491690239880464 3.8606149756316634 1.251258442384866 2.755590328219205 +3.668117592827479 1.93107038464484 3.889280733889746 4.046248742289874 1.7441249838002446 +3.9190813307809096 1.3352407012147323 4.272046745745578 2.5173058332789426 3.1233552581928907 +3.887429414463619 3.089449696421991 2.99298891181215 1.725585520663202 1.4976925539981996 +4.871855338684334 4.002624156305904 1.5138996259203137 3.425483974254625 2.0999327534984817 +3.4849799913035797 3.898842494405769 4.33074429270537 2.891835322647011 1.4972445343324576 +4.315861109842418 1.462812634993515 3.3025132362998413 3.306742555483246 2.8530516095890035 +1.9233269149188041 3.509411156856974 1.768173423408518 4.771707495444255 3.3965983195550447 +1.5322295516397797 1.9636718668050475 4.2508146458038505 2.316859409552336 1.9814957297808686 +4.618248580783783 3.368178314088537 4.714038423204847 2.4676890159977356 2.570751121936012 +1.854403109385924 1.1598026619853359 4.464171872685974 3.301801400705298 1.3540956006359652 +3.025610044733339 2.896261059919544 4.660663141371851 3.474097278493754 1.1935952860245393 +1.5147182481034895 1.3050904044457008 3.2932327847861154 1.824551178457238 1.483566477649514 +4.1953427816196545 1.1786798290611316 1.997749897574046 1.1329509320423314 3.138173452842247 +4.60262232761449 2.6191002933328456 3.9009326516456007 2.382906506993316 2.4977515962018066 +2.8831431094350166 2.0287221576135472 4.905752446428144 3.9854856976774293 1.25575716273797 +2.7962175230945667 1.8071949653886485 3.4307113443655957 3.958660536837453 1.1211137183545843 +3.1924638771343568 3.2209574760128743 3.0118958721664955 2.3844907093255037 0.6280518478092244 +4.332041469911368 4.175209763278145 4.475049190148186 1.942196539998203 2.5377034364908133 +3.576375267641046 3.9820904418495227 2.921205427458166 4.5046307204626785 1.63457653877371 +3.6246770318952946 2.595707529804219 1.4691673301332462 3.1867366788053952 2.0022044610208085 +3.3446381431517365 1.3934307838979416 1.610233444686008 3.001076110060206 2.396174759618207 +3.1136457337248364 3.939184351968625 2.320540785902057 2.6370701144651947 0.8841407275159845 +3.993702495356047 2.202389215548648 4.2579989380759855 1.8216242708266464 3.024024600698326 +3.632889916572181 3.795758790908938 2.4335990946335713 2.7489870291675524 0.35495889829293364 +2.6081955516923716 4.4221634139591774 4.969408367411825 1.5748262388565042 3.848852716439534 +2.788183662785171 1.1969302714820276 4.2022819007791625 3.835845995832311 1.6329000666813545 +2.078756233192712 2.0878026461037473 2.853360680120254 2.605431036843938 0.24809463033624524 +3.92213799140986 3.3964548558124656 3.5333272734286907 3.2515045334974855 0.5964619147890672 +4.802401460613368 1.3119205471719315 3.3451620134001105 4.152953005619475 3.5827340529558858 +2.394781551586463 1.6749723385473785 1.1751770262952848 2.0752810380028275 1.1525244184258998 +2.1434636784898307 1.7455639532452003 1.075314043715589 1.6750716460072277 0.7197453527855305 +2.429350541671737 1.5516830548319747 4.89911546349139 2.631124708892709 2.431888624176839 +4.615088496479298 4.942730003259195 2.7544466500779947 2.4000585150001004 0.48263848504754486 +3.3833642731690254 1.9716983961970156 2.4605741850130842 4.61827930197625 2.578466970891072 +1.623746359526813 1.1856016333428752 4.082975362248348 2.198342825447077 1.9348929168956073 +3.2680211555261427 3.2287155062437733 4.8948574883884834 3.9414490139229437 0.9542183467363308 +4.02971918770297 4.752505288856268 1.7866969504676753 2.2587893060479485 0.8633023457733201 +1.995288458583254 1.4849800987251083 3.0480771027541995 3.087585105668953 0.5118354271007653 +3.484933287790054 3.38413108815632 2.349805965745415 1.5726852048081534 0.7836311380558507 +4.778872821948087 2.7974734351649078 4.542162557139672 2.8131528317064243 2.629718266390435 +2.0114764893961303 4.987171195163258 2.8087847815447633 1.9079068331739002 3.1090738266872027 +4.817165499884561 1.8297955166412465 4.446756257552554 1.3279906248738533 4.318689441064377 +2.92033934561032 2.8358426471493523 3.132444192373811 2.7390623732074437 0.40235425647238315 +1.394213266221492 3.29652633244563 1.4861682193008474 1.1692766454399734 1.928526710084956 +4.737516891753513 3.224603966980912 1.4254766140162585 2.6649448252397745 1.9558085194051102 +1.9078355839855394 4.512556877183728 2.2469015391177023 4.775343437795845 3.630095239829277 +1.9988495839028073 4.616102551739372 1.4571150589578448 3.8786048654099576 3.5656171948767574 +4.468302745777925 1.6923975261132886 1.6687621740326373 2.867709270108429 3.0237598991569996 +4.559727794885256 1.893889929665367 1.669456615798302 4.66249013741354 4.008109427791692 +3.0374380236708136 1.6249272182666599 3.8478339755430473 4.7318485825626695 1.6663338803515784 +4.241929333509962 1.0199059252593585 3.791035309602582 4.014114590334582 3.229736708898535 +1.5216606570107203 2.681405546904235 2.0349516751279064 3.234538196024981 1.6685370930105414 +1.8130988826908392 1.592705718047294 3.8068636554721587 2.252139555337738 1.5702675487191284 +1.7598474253236773 4.641939831949272 2.6899043724134017 2.4583798620719186 2.8913768760259835 +1.6567118501684863 4.592668318282355 1.4128295015129528 1.8596873209829425 2.969768053818536 +4.002870871961207 3.8289103377154436 2.9360844763638356 3.3114179376504445 0.4136876534735569 +3.9430901207733178 2.949626338232405 1.0426526625243868 2.416681835769051 1.6955608087437952 +1.225199857884609 1.8598686945010892 2.671726370392595 2.4330078274719154 0.6780789591974438 +2.8807246360299605 2.094305025218537 1.4065557463716094 3.3433493571072845 2.0903648712259124 +1.7045277901155957 1.3171321639614666 1.1229059084331139 2.6032311183857186 1.5301758390409168 +1.7397435668338437 4.33835337988651 3.7782890322673315 1.0915767216705476 3.737806308572707 +4.76253232928544 4.469529131457881 2.3005692277359864 2.482831205576227 0.3450656495558668 +1.1853401008684252 4.978882665834433 4.484871218327071 4.181002582394761 3.8056932798259298 +4.361549421807229 3.7678435565304094 3.380437342240208 1.7526807561632762 1.7326506162469468 +4.634250629241684 3.648507793030066 4.5806930921771984 4.73546524423882 0.9978193013749088 +3.9112932703991277 4.577856759572951 2.358664062865582 4.38132153571724 2.129659629514124 +1.7442321944719024 3.767553893085214 3.50679857076936 4.555895855530425 2.2791304940640185 +2.2722320531733806 3.5781007382041037 2.7644362294449967 4.5716104379353215 2.2296124421918044 +2.9791393755765267 1.603383397698539 4.783159960529433 2.1239058717367576 2.9940502366238917 +4.20775112911195 1.6953614300357094 4.7797586173103035 2.8010848981338774 3.1980074557423834 +4.8541453159879735 4.649854764125498 3.081125578376737 4.905288238885987 1.835566408925719 +1.8003068466992116 1.252943141036762 1.5119105951468876 1.2631331670988923 0.6012464012222478 +2.1263362504225625 1.2333011891647851 4.920798219693217 1.7700153012967763 3.274896123466281 +4.247242481414828 4.3983969223241 1.2979673536207068 4.549245972213242 3.2547903650962806 +3.555555658107006 1.1005715797866888 3.8820107754471946 4.814952483564693 2.6262762717489285 +1.1286977048654152 2.0597746826900405 3.105153167963029 4.329018514183082 1.5377746012707354 +4.087497830110586 4.802477515864746 1.003125319698448 4.1928013650317535 3.2688268882298175 +3.9426377018459946 4.985718641871365 1.6655779128941677 1.2261058998647374 1.1318805138707666 +3.77977362827348 4.244192215049463 3.3524344503178 1.2227077231076016 2.179775345382286 +3.559975938131546 1.2179676738496918 4.176622434626442 1.0567732317563623 3.9010846900078406 +2.777851766334699 1.5575059447664161 3.2488248289177135 3.1601510279079714 1.2235632256670197 +1.9673522829429961 1.5699045969286467 4.647336312067591 1.8086719595045775 2.866353078326212 +1.0631202532171207 3.2908548349947844 1.110544435652416 1.87646216420544 2.355723102098361 +4.194038339612829 2.112862046079989 1.5376100636703867 2.295733031764132 2.214959412611067 +4.112547131612552 4.5029973295642245 4.238996302714227 4.765826316211692 0.6557447828250249 +2.59890623649218 2.0017183578916953 1.7809830068012187 2.220340172728135 0.7413960355968187 +3.476524857271871 4.98785471947285 4.538375843892061 2.4181475508782353 2.603744604771511 +2.935540324753293 3.4375426711063883 4.578143765150029 2.75310807546283 1.8928184340755045 +3.3778478519172697 3.5789555718465125 1.188384372455197 2.444215084963287 1.2718313935006147 +2.5862589860335454 1.399540075077566 2.1221603190647307 3.6524449120661475 1.9365104464469223 +3.2399882638647535 3.1027246721395163 2.776274372801668 4.120723586312026 1.351438115979394 +1.8166846574564022 4.5169286372772 4.551570442826967 4.784320294581386 2.710256453557516 +2.045093527249672 1.1206553993794226 1.4581725573407822 2.915611339603496 1.725895030499733 +3.2339731337468236 2.548444980514513 2.350870095154063 1.0606422556635766 1.46103960475765 +4.3004439279391 4.594178574766681 2.635709559893391 4.082604850143762 1.4764098427251253 +3.1870453485184678 1.5390978480336535 4.4033789260274165 4.43202788530709 1.6481965074656466 +3.9155129298284397 3.7867926856228884 3.3870373972880077 4.745777781333992 1.3648239199639507 +4.226836426720933 4.609043191584952 3.1343720710383924 1.4749518985849792 1.702867381757351 +4.204104436074539 2.468273890401655 2.421704538237299 3.5322927887591216 2.060707146949354 +1.1412199258335125 3.7881270121730077 4.129812558153162 1.9109979198250335 3.45387543535858 +1.9850943792086784 4.572255199695667 4.01625164134936 4.7850551837859285 2.698973878703891 +4.347886778430077 3.85308632393503 4.524911379099064 4.118206556924937 0.6404969181410576 +2.3889118456473084 1.7664639108973033 1.658360493698828 1.0510366476517827 0.8696457241037421 +4.872028630561509 3.467079405135718 1.6229728262257983 4.156857576373984 2.8973184590338117 +1.7994291027825038 2.0867061893202212 2.06822175523032 4.267625389883584 2.21808576763289 +2.5735197828418443 1.1126135954754108 4.334760804510437 3.635235937664754 1.6197474888454062 +1.2160884285066413 4.941537912626639 4.366324054170828 3.895882594821818 3.755035156347326 +2.7790751612182167 4.418457079635415 3.6406143489845317 4.800739965840292 2.008348705110298 +1.4377630934992198 2.0114438583709644 4.551261127283053 4.434724369357073 0.5853976733227835 +4.831388330056439 2.497127115378958 2.5313332596360376 2.9207441342004317 2.366519859958203 +1.8300954047811602 3.798790088022577 4.582957134759951 2.5202685486963063 2.8513931610530774 +2.0089814679397544 4.814825736748462 2.6452586261110866 1.9831833012323266 2.882898852998486 +4.305504428744139 2.8743581893110277 4.280704652778239 3.755357546357417 1.5245225944105472 +1.8692935558568862 1.7561932444457296 2.956508261617998 3.056972488412581 0.1512770349614708 +2.0496340930851797 1.9071218385293593 1.845171984721393 3.7401919994395176 1.9003711739765115 +1.9607908383225032 4.789641969981349 4.829414227356796 4.7893250097300974 2.8291351806616545 +4.241348760530538 3.16273192812726 3.413243353312908 2.574722717807868 1.3662104989025146 +2.2590439445097124 1.9148661125083182 2.1095703163534827 4.551081988437584 2.465651561953571 +3.1743267132694917 2.858404878854093 3.899493813963083 4.947193141728176 1.0942945155943256 +3.0889805281618092 2.939657572532398 3.7931196571618697 2.8092029293870846 0.9951831350424623 +3.7410384357573343 4.678816609125677 2.8353389200028807 2.5830886040140886 0.9711117980760565 +1.2989403662668164 3.27626643405308 3.2693970233163956 2.3280010839932257 2.189987372776665 +4.844987768690116 4.865097941786649 3.724988202433163 1.7534251322300887 1.9716656305901732 +1.1441320178595862 1.0961391470472788 2.2296634413679137 2.9101473255342043 0.6821741949523218 +3.7615240626889634 2.9394448975384853 1.902166944921194 2.875693753395106 1.2741933136663008 +4.569588316646021 1.8961520175229296 3.9776656919836824 1.210747564905803 3.847479378427015 +2.912020935867318 2.8140731309151437 3.9742806173242498 3.5916122573755094 0.3950048685786137 +3.592802057412192 3.9257449831101905 2.742649787131224 3.679925761347962 0.9946543337342266 +3.995403064691202 3.524250900730199 3.306037444919211 3.060372348127265 0.531352709023801 +3.5426609907410582 3.8652960669600973 2.267088728580243 2.8833684230693213 0.6956249379129653 +2.7345601806568793 3.3395486349278185 1.9217541133934817 1.0781988239939309 1.0380734829842733 +4.161362026048554 2.4573164962723655 4.896513828102169 2.212183689371824 3.179528182175192 +1.9964845838531486 3.0117200545159277 3.014786380678187 2.0893228089742006 1.373748842926892 +4.458650638346883 3.246218137273121 4.926197280280041 4.4707406863393935 1.295157626941213 +2.4797008508560845 2.076210680058654 4.093511345680685 3.2325964106092555 0.9507780200231722 +2.82829692558596 2.4452715013922286 3.4374700187286575 3.665901869315517 0.4459703868434821 +2.7058163016842816 1.4117973578939171 1.5870760697300441 4.809058363694782 3.472125419611251 +3.4499000112202007 4.2430162947817465 1.1548182257448358 3.016270840090021 2.023373241570374 +4.564289645429156 4.772768185360592 3.4841094454925297 4.508325721789454 1.0452187724316289 +2.623057316510334 1.7253864427599277 2.101844225554745 3.1652736061116253 1.391651912301136 +3.3438342108567976 1.7838841665719913 3.89034905865422 1.0848101408338455 3.2100611769978604 +4.497589092937945 4.6993728425111465 2.151401591222623 2.682225336987497 0.5678824972295516 +2.0512904301963073 1.4608910935942419 4.036424728435354 1.3800508949597372 2.721193363183532 +1.213524952044855 2.053851201330963 4.194242365568321 4.035127260963237 0.8552577516472709 +3.278386772846219 1.6818697527680584 2.024678583540351 4.987561573706813 3.3656414260608636 +2.969953732531254 1.3361367636224397 4.479139999347645 1.725461251532817 3.2018907748487337 +2.5318118048262916 1.5106132727822401 4.467860279287649 2.095224471333969 2.5830693213758193 +2.619075628814988 1.1982717716723195 4.698168389328934 3.101954528564809 2.136956314426432 +4.305091887322648 2.0045974400764672 1.7814284101937035 4.901986113246315 3.8768743956815914 +4.59502227677785 1.1374604632794374 1.3125795259434723 1.785769980278865 3.4897912402085836 +1.0020473005188704 3.9527083486413686 1.7669786436972892 1.4899127578872524 2.9636406877330894 +3.3038424222611567 2.7515764829830123 3.604303044449242 3.092582215332337 0.7528983162677837 +4.324685731856949 2.567809340649634 4.940095391653939 4.5352863640726895 1.8029101482860748 +1.4402942080218049 4.429038166301743 4.219831576635805 2.9591449348618326 3.2437511089635365 +3.0098968657766867 4.5663262408896745 1.003381577410356 3.2559810669841673 2.738006000749962 +4.249927004742233 1.8847504923490574 2.03972230536333 1.4786709576441037 2.4308102660540793 +3.2763247696454227 2.8928027954869817 2.652643785908675 2.3883092200432605 0.465791656616609 +4.541223371997421 4.127215260213939 4.9301536478299735 4.435945560449295 0.6447048551507831 +4.405513237298065 4.820718652015412 3.417684456100119 2.5410020717215986 0.9700348135454787 +4.4753323276148915 4.591095349834072 2.9198084758090426 1.8891868458565235 1.0371027053475974 +2.6258360820814706 4.784570736272048 3.039663747258242 1.2446879269885618 2.807503072581778 +4.404770052666741 2.1804084975184423 4.645282306361505 3.7031637662791064 2.415651396950468 +3.2726563257799985 3.5981025878504025 4.188688179183957 2.59067232877202 1.6308187905660718 +1.3297547180856997 2.9676383344521504 2.816231576341663 3.2323871055111257 1.6899254910261454 +1.5974748348264614 2.992862710971601 3.52546415540784 4.229451127143553 1.5629155387500833 +1.6309091893211036 3.2130806709065394 2.0274483311149414 1.627010715146001 1.6320590925040495 +1.3207660828249366 1.4877799218748606 1.2317330834071782 3.916316315603355 2.6897733646207196 +2.6003506437752155 2.3825100890747763 2.399722992483355 4.615576406218063 2.2265356180470035 +1.179325261113516 3.571945687342566 2.0618833030777335 4.095501922513162 3.1401014622656604 +2.406955457915111 1.5206878063657148 2.091830693223862 4.641037375078888 2.698874776086729 +3.0720711518333697 4.099303411769556 3.963594580695183 2.007452588120547 2.209456406215672 +1.1512667808337311 4.991207089204472 1.820130669693976 4.192691011105598 4.51377714840793 +3.1573988313058097 4.823361353416633 4.087925756461958 1.4964200323211774 3.0808007146409664 +3.4210618454833774 3.8174439970132443 1.8068862401403565 4.675428878197938 2.895799660958229 +4.545889965522845 1.8485921457907928 2.8762270556012597 2.9725307604276345 2.6990164749209233 +4.320389060040486 4.318571168461077 2.411348822935525 2.7715236121067504 0.36017937681706763 +4.894797176985796 2.355779130341177 2.632153991235037 2.5727060938457176 2.539713899968079 +2.7126849088441927 2.422271436066791 2.6060653089255346 1.8401948812401283 0.819083327368869 +2.5163179966492755 3.6232100772296993 1.0188982795201205 2.4326530602487053 1.7955257330610968 +1.1087393270863921 4.820911237761198 1.4911044125919464 1.8242875770906064 3.727094218759217 +2.1679553958141438 2.5057044645321893 4.316794709444427 4.3613816448048475 0.3406793627808139 +1.051469739861557 1.7461941967640264 3.304694108378405 4.62445479582943 1.491445722498688 +1.4269473355045657 2.8038326512259233 4.304064369759191 3.96717045147201 1.4175015643123616 +4.202903143407034 3.7516672732352103 1.0015049822171394 4.32812784074303 3.357087048826213 +2.5631542676121772 4.787666957557845 3.8417998597745777 2.852406693813939 2.4346160979873046 +2.632860510628263 2.0329017683000776 4.307438850579749 2.853887592472413 1.5725017495829496 +1.273540230952423 4.758558577732291 1.7260106935554034 2.3535485275081727 3.5410671570071104 +2.696911650110763 3.399704769573028 3.789758749422147 1.670896907536946 2.23237399952621 +4.134306013432587 1.8314872732079892 1.1134230954713842 4.579529147253509 4.161353783629827 +2.5052713423335446 2.808083139231626 2.1313346921851264 2.3536548634827783 0.3756610745159288 +4.2859944659185665 1.8939922650238419 1.4112423158307497 3.2958990420566763 3.0452595135380225 +3.8806413435974476 4.174569823563994 3.8597706400219107 1.2165975721106714 2.6594657016526377 +4.194468770025859 2.236000728082705 4.569148104155607 1.2752561437978582 3.8321431755379476 +3.245803071971597 4.582006896111492 4.498447285403335 1.1086328030257424 3.643663387935684 +1.2293126121068045 4.4754802735348775 2.4685458513824656 3.261870850438825 3.3417015187220382 +3.4602491499571233 2.560614778910186 2.960075357322566 1.4634937353726172 1.7461668169815159 +2.432713615191788 1.6589806142048218 1.5445379964528145 1.7310454490213383 0.7958943313530362 +2.4780209144539453 2.7015296490974112 4.782777738455829 3.443051339108675 1.3582426070366125 +2.2807633798122664 1.9346631941138095 2.7050459137943563 1.3597179217642141 1.3891338109341234 +2.7804446640304206 2.3596499633302543 3.923316821512683 3.785669712219365 0.44273570765655335 +3.6029011680963707 4.5113135974828715 1.1473446427858018 1.574857783514965 1.0039823839888813 +2.814644362398372 1.5318762378180963 3.8689486727414355 3.702706428691271 1.2934954755027295 +2.120077729315225 4.195905809691212 3.2740310979249183 2.0091418432470296 2.4308449242757217 +1.5194338965659973 1.5150761548479958 2.7103827465152244 3.65173279974149 0.9413601397031711 +2.21829325641241 4.590370745834715 3.6112123992143332 1.9330759464217353 2.9056657705275306 +3.8451286723738733 1.120628313358738 3.8076573378713077 4.3865776067649005 2.7853277875340687 +4.741172887295885 1.6443834674792468 2.6403933145705496 4.303374934376131 3.515055131644377 +4.8638675391936115 4.288944937040329 4.4276041696271555 1.5443098186988569 2.9400548145505283 +4.417472085556975 1.1879551007562394 1.700487797715391 3.3367893969655 3.620395403657575 +1.0572453859548836 1.3800822727234348 3.525051355565716 2.43181845422892 1.1399043082749003 +1.7528164199342036 4.748435551890102 3.469903397134686 4.743619731188378 3.2551631730798674 +2.610403472085832 3.902724997843416 3.552255576862379 1.8005447825580743 2.1768292612923568 +3.972297242751419 3.020158008998677 2.7902742950173813 3.7026534111777476 1.3187133016910197 +1.1354493681975368 1.3837885896745235 2.8533992520400755 2.9064539047060216 0.253943232028932 +1.714591989480848 4.834077181605904 2.1516507862521563 2.8040580375246362 3.186977107762215 +1.6381275459515567 1.315856724435554 3.1448222922723525 3.7940575166691097 0.7248205702090049 +4.485338658504706 4.460317705201017 3.819180365486509 4.521585300987693 0.7028504403645548 +4.862875187763983 1.956221378411879 1.6429315946794114 3.0692476404033786 3.2377482653397793 +3.7978226314813655 1.3528064778791422 2.534098169503 1.0533257328595962 2.858459550264557 +1.845719033608321 4.089337014477415 1.239616506232942 3.1260848392027896 2.931311040366946 +3.3635857967050358 1.8030755474674645 2.950026372549644 3.163932105142677 1.5751025047315712 +3.5601105037037963 3.3003714362959427 2.60089481135486 4.481608601791753 1.8985649171617511 +1.9382133219950637 1.2678823308765086 3.714559322189298 2.3492377694994095 1.5210018342834146 +1.872351677671503 2.33225608840052 1.5958474915249687 3.6912338824871953 2.145263665482103 +2.614709658566076 2.5568087858496416 2.435801854496437 1.4086930446897679 1.0287395288622854 +1.4583734095131216 3.0012968864845155 2.3549218869534987 2.8447252425827205 1.618802082706574 +2.4249694807124547 1.1941295080722267 4.292289924304116 4.695770957368239 1.2952852899232234 +1.9392799247457435 4.969007145919301 3.633337226892829 4.2275436712920325 3.087446895621946 +2.5207104872839423 1.401008672841729 4.928593383477245 3.043368608896195 2.192670655606846 +2.3498391442848847 4.472224249554114 2.2493649648701557 3.0131798093848055 2.2556443983415506 +2.145458470632995 3.0720006567550375 2.3737367185907146 1.3316241341497 1.3944457900234575 +4.393202568679894 4.592505806024976 2.3830989360666104 2.8276982479409387 0.48722718369909973 +2.2655138612918897 2.7826047948162205 2.747443966189137 3.0405186294958746 0.5943700798369829 +1.7174640899389786 4.898273040041058 3.7393686956580243 1.875464247795843 3.686690299958747 +4.634187159217435 2.5564231336846706 2.6921084907997237 1.16170536182022 2.580549763710898 +3.130541014574605 2.3697593889893804 4.965453409465521 4.568730928343124 0.8580078139830709 +2.8272748172568525 4.25590068608442 1.885149499722465 1.6225070829032897 1.4525676962523777 +2.8856972738592264 4.865747132431708 4.2792796340464765 3.6826203902368158 2.0679941236996835 +2.5039189809209876 3.948474088256775 3.38368058694662 4.479934357211395 1.8134254291118894 +4.254814349151053 2.487540596893 4.6477073532483715 1.7490999090985668 3.3948757901727302 +3.458285166342361 1.1518299626676938 1.2226368535695284 1.6195469794458144 2.3403575057202435 +1.154365162401613 1.1595098554235688 4.8739144762559565 3.1738150861219183 1.7001071743276712 +2.136514629346865 4.096946523544334 3.6929701481115798 2.2215500619329496 2.4511977239293867 +1.7767142479911424 3.5824028214662342 1.5146764979807052 2.4967322059699084 2.0554670121343923 +2.430736320747371 4.950777284794867 2.6487255870172404 1.2074451386599576 2.9030838415888724 +1.8833102834866429 4.790177738172989 4.017019779262542 1.7131849267352526 3.7091149115165085 +3.068393226161734 4.756287200233938 4.609606957835183 4.928552374416524 1.7177637341810146 +3.324519642626433 1.6422791966670691 4.145673468560784 3.166916311724502 1.9462524219843125 +1.0527566257736294 1.5655822907587589 1.703546353531832 3.1198880878803394 1.5063246898078708 +2.3023529347758314 1.309749876398135 1.055618542981518 1.9314017925063025 1.3237284961988798 +2.187146163354681 3.591059827082368 1.3150974074626944 4.5466300221957585 3.52331897722656 +1.007497893075647 3.0886939989572313 4.448005937574964 2.312607899259866 2.98182863578319 +4.691609432839282 3.9911897149487796 2.1907292774381277 1.7556297964950076 0.8245600884876638 +3.597245923144051 2.0225387441131133 2.5334242764255395 2.5958706942884384 1.575944876826433 +1.3130644717045166 1.2896389217489403 4.667234001393723 4.992953360085496 0.3265606482987514 +2.681705461306979 2.876666712624466 3.8729982419841456 3.6050021815363946 0.3314087776912297 +3.7078086788812437 4.192225838524846 4.209707016468531 2.816612502694255 1.4749143395008277 +3.2244696082347 2.029903547292 2.9900363498293756 1.845813780180586 1.6541563900822185 +3.6807906600481863 1.4962120145135382 4.3292342707444 4.832020991586875 2.2416909566622976 +4.6701388211460015 1.57009919770505 3.9566195460073925 4.817619067676171 3.217384938613622 +1.567933755809913 3.3726389318763763 4.859737238829636 3.65854929133083 2.1679052695488057 +4.732987677855218 1.5545669290222066 3.086003367878692 3.1834391918441645 3.1799138661926096 +1.808718152520476 2.5011750750791495 1.0081031859553207 1.8332693152017403 1.0772166590129153 +3.834391874956337 2.3156866232194293 3.0649173098395557 2.2826897482104975 1.7083165982409132 +2.993745598966125 2.786542905223498 2.427538483301037 4.471358657679868 2.0542964395364454 +4.369778767353641 4.250428297508053 4.633595563367081 3.202512587153732 1.4360511897073929 +2.624866273499496 1.6154366398565347 4.891085957175361 2.035397252059584 3.02884568207137 +2.250344837737722 4.093757279771115 3.0397593479986376 4.858459093465688 2.5895633214125953 +1.2200876965388883 4.948703467143464 3.111460592280472 1.030155926987069 4.270176187767109 +4.024191037412222 1.111127775367156 2.6604672546818033 1.0547209430678177 3.326313091989171 +3.4440474653281137 3.381850255199235 4.6711763210099235 2.426561507699265 2.2454763755340332 +1.43822099562417 2.681551545443603 1.3015362368196244 3.89270427885327 2.874025518009673 +2.155752836078838 3.291186584126668 3.536566920118758 4.289731650771746 1.3625222595266218 +1.4112034016136494 3.3467368805677884 1.698431599925664 4.331519699729211 3.2679416747364636 +1.7908025639862881 3.6246477110245925 1.6365563949507766 1.018376381859846 1.9352350120595285 +2.430993042748172 4.422047138942433 4.994765150072295 2.3709431242087544 3.293742314963118 +2.255196087452903 3.031658931958067 3.57348462535479 3.7150941068789716 0.7892704189025446 +4.542477396682202 3.107166833573551 4.180533322925008 2.346022657900851 2.329280101803698 +1.020470546339185 1.74226531044292 4.823040260103795 1.5032365769570877 3.3973642984116394 +3.4271807043543476 3.2573100591176782 4.322561139094207 1.0291716624560854 3.2977674692045587 +1.6838563697083124 3.722010394425693 3.0494123504983093 1.0853993005853155 2.8304450336829006 +4.877058334959138 3.1899637100335467 2.159482103849198 3.414609898686417 2.102768188561393 +3.110513099260169 1.783783867635866 2.765080006119606 1.8434886381395694 1.6154074110210492 +1.2727629443430106 1.5288978457217617 4.85565699397478 3.6827987102311806 1.2005005795293409 +2.38550822117682 1.9695021084331557 1.401746636026442 3.0397813445123827 1.69003514520992 +4.69825547469552 3.6704743874521544 1.560101535606052 1.6301270075845067 1.030163836494448 +1.0790468577087533 3.6479003526539553 2.196078090232232 3.65565811323264 2.9545527786847963 +1.3648946046893675 3.0358292305641776 2.2429692642361396 2.260025340544492 1.6710216736136092 +4.748466733486428 1.8304202859686036 2.7018496103151213 1.8008476788535535 3.0539809348404368 +3.904380034892056 3.0707945554077183 3.767514375021471 1.1616325803510312 2.735961381197104 +4.868665289947495 3.865542960335313 3.3080000108101824 2.0042615901401883 1.644988838168108 +4.292901348303133 2.2719039676140182 1.4420610723306573 2.3755229783759173 2.226158472074688 +1.0272023843659945 4.661429054070176 2.3403904966385776 3.544606766019556 3.828542844246488 +2.2974635689508576 3.515105090344449 4.429212256652091 2.3859296891320576 2.37858246133132 +3.9135608376940128 2.806516852252886 2.393385056936739 4.859318820055219 2.7030308377428924 +2.9830292837676216 4.600866876175747 4.997487468622122 3.269237759589299 2.367328775683884 +4.353193504395708 2.5411875868279696 2.2019544321675704 1.2435529776361123 2.0498533589865686 +1.211464295991906 2.323737093736268 2.7574810802647463 4.715114446647462 2.2515503933461036 +2.0188972451393403 2.758573222467653 3.060588700485049 1.2815115806465363 1.9267163646394592 +2.251604965195754 1.4163851240193646 4.361717363631545 2.09570762700074 2.415034639420379 +3.6778901785815887 1.8682517404888994 1.4295721742308842 3.054183184437153 2.4319030019937027 +1.8371256272660323 1.476922900178253 3.6652752966809348 1.8803738703647315 1.8208841550925445 +3.188031792966834 1.3678751060593886 2.961645671779586 2.2374452029133955 1.9589376416823223 +3.9332819718766032 2.0040755849451695 2.3813152617284796 3.5649666630068473 2.2633753385431414 +4.8447344425611405 1.5412446245932023 2.063387371996527 2.8836647023350426 3.403806674311149 +3.7622545407321892 2.579702932329364 1.5761562389185158 1.8616973965730006 1.2165369124078282 +3.87429228983788 3.9771048108555287 1.0224099537050724 2.283370118659562 1.2651446368222323 +3.3738546875244797 4.2409658790884635 2.7848931158382513 4.986401291432989 2.3661191993950728 +1.6502681441917986 1.9317229064033477 4.884596659681387 4.369948946229762 0.5865825194570202 +1.1730691525571748 4.649766589595243 2.306685823167997 4.9040364286238916 4.339775943106876 +3.058938546159563 2.230692202552529 1.0003917915239264 4.430954900061078 3.5291295311102573 +1.256082412749001 1.2747650834904398 4.748015263048267 3.196053880410607 1.5520738305198727 +4.190277539721679 3.4677348302811066 4.046285224422263 4.676288039601429 0.958630019402375 +3.066062278722735 1.8569649572139553 2.709051127467968 3.176667197721174 1.296372292992548 +3.397977642706042 2.0299760036360683 1.2452778837565899 4.7398959217017556 3.752836755792857 +2.946180594591834 1.6559885797701108 4.230056620254561 4.686609069728544 1.3685888989139257 +2.9629539671891845 1.190758848989851 1.8325151711459595 3.801095729759512 2.6487704605572744 +2.9769733064759647 2.9817151831339164 2.2688568537132667 4.875289868130441 2.6064373278554074 +2.828885574487949 1.7962894212971467 3.1933093485563044 2.298168385185477 1.3665768035090071 +3.1383018564090954 4.320743348353288 3.0578001385287075 1.7788321888156777 1.7418171253792283 +1.6636634191466815 3.389254046186491 3.094053989687679 4.631360344125693 2.3110547028409214 +4.157152267971518 4.120152669490476 1.5360140951643095 1.8465757312562983 0.31275789374513174 +3.095884253413595 4.34993334276293 2.3438384429695334 2.1598260146088637 1.2674776890695503 +4.707817866659655 3.5120099496050665 3.147943397763922 4.809209103303456 2.0468904022668624 +1.350520524705852 4.078807846093724 4.626562559267418 3.276631454040305 3.043988452163626 +4.553122857152901 3.784776622906725 1.6767420644189759 2.041756021980383 0.8506415960290916 +1.1459215370903038 2.95831549868127 1.0714477236091127 1.2034222656710911 1.8171926567548817 +4.984014748632941 3.512228656784859 3.508872250921721 4.814843234386435 1.9676672761951508 +3.1343529404673585 4.372659997218204 4.85288748696664 2.1289674836598693 2.992180567949351 +2.3580927322799257 2.582055462229739 1.1637547231933727 3.6123645540230713 2.4588309026938835 +3.590505663686677 4.595379455872635 4.932890071206247 4.4653772615869745 1.1083048160954159 +3.952914875679111 3.992720567172253 4.861297528637743 3.8322315603326578 1.0298355500753165 +3.562793465533962 3.1148037719203563 4.4926867252848215 3.5833165263373217 1.0137302029227637 +4.031958985375285 1.5566137360421717 3.3712236330865157 2.3427917863653183 2.6804861810399965 +1.994911528972085 2.4902090139556727 1.2675052045591637 1.4001639647599369 0.5127552489142102 +3.8316390215923533 3.0711244096011012 4.777195898574898 3.616723117840987 1.3874723600405523 +2.65796690315848 2.006027136860707 1.599611393113539 3.0107237244828435 1.554433488645593 +3.2992010029181915 1.6782145041178955 3.3066387709153915 1.0457741242974783 2.7819249054601713 +2.698281328679734 4.1977157266543275 1.0971970399445716 1.8640326273931795 1.684143797900608 +3.4027577435111085 3.460233338950401 1.824107486471287 3.6711223891033127 1.8479089519280685 +1.3956602449869195 1.9137704043654504 1.8958006275380468 4.78450973213725 2.9348046661141827 +1.6671789809965274 1.151678640884938 2.281466131338646 2.3926553083065767 0.5273553201874142 +3.8329182187211877 4.242157657109795 3.959357411437055 2.3543327951983355 1.6563758440235934 +1.4687543999727102 1.4052358130985096 1.0853112644130851 2.9647081396273034 1.8804699480298703 +1.693695274990854 4.810046742528266 2.3999680366809475 2.234678529079711 3.1207318197092238 +1.5391430397423402 1.1515005031588927 1.4971097899917098 1.2288347793089245 0.4714214860670841 +3.6109789893818967 3.123876031618841 4.3160339771995 4.256467401894923 0.49073156445762994 +4.346533914659943 4.386263097100917 3.1016638875957447 4.850310214686121 1.749097591669513 +1.534089395405375 1.954940990458364 4.254629035030396 3.716098620050078 0.6834698771105558 +1.9272400299888668 4.221402615330787 2.1589631564350142 2.3200330505280093 2.2998098788303896 +1.8307972920991609 4.974830620188 1.3520574196276574 1.0446890659250547 3.1590221387307866 +2.604421228600364 1.2863240643512266 3.41347308524244 2.9563176019895905 1.395124105687291 +3.3165660985766494 4.668172734531671 3.430505318362109 1.6997268115474702 2.196004266391384 +2.420732898474296 1.1243354101456915 3.3305037970886273 1.2229438303963849 2.47435960623118 +1.0474055580086756 1.6971046423231924 4.031948699160069 4.142667268190998 0.6590656277544581 +2.3867523544014952 2.4066583554096654 4.413471317284451 3.227819177920115 1.1858192292484397 +4.237135643999191 3.0407081122768087 3.2900660739643763 4.597462890500885 1.7722091509054763 +4.092764206012786 2.157231571018025 1.8624023577272046 2.880735997195198 2.187073382948522 +3.0785470803180384 4.48126953328099 1.6022557704505034 2.6444861706594485 1.7475338300491063 +2.8173509355565223 1.7429351739626067 1.6025820147996286 1.6556927508418062 1.0757276509620712 +3.6224879338216462 4.71142661382455 3.4988510669759942 2.3249238126526155 1.6012159901929823 +1.553814529221945 3.712159811713332 3.4089401238103 3.489583088490488 2.1598513018736347 +3.8512196591036165 2.7726736653621264 1.5568770164675394 4.0743905246213235 2.7388201336255347 +3.87810735091816 1.1773626533614587 2.3586241004723343 2.8637511819355685 2.747576257323571 +2.6206807242852355 3.782900770214835 4.352560803015044 3.872585656054343 1.257430545541402 +1.6423328607196996 1.51657673562676 2.1663432688350395 3.1259614107058913 0.967823114626871 +4.788765330097558 1.3279510338802423 1.7615348062226786 2.6675912673057818 3.577453550162824 +3.483117272019859 2.595918926611353 1.5700896180884456 3.4747480058395857 2.101153130575295 +3.7280701718971345 1.0613285020863952 1.1567585519574872 2.5758993773618513 3.0208395879017393 +4.811480572640704 2.5783620816677217 1.9819751641522472 4.855868633375399 3.639516707911771 +2.8079835952102417 3.0061879992184677 1.310280726936222 2.6071139064360858 1.3118922521381022 +3.5541665507662543 4.675690622605268 3.7278596208886383 2.2800837301416785 1.8313577677620814 +4.922605713753818 3.1874909667281526 2.963455173510385 1.8392374043568607 2.0674836826022265 +3.1987094131315237 4.383612736968765 3.0497136950334225 3.8878632816867027 1.4513754222969355 +4.3524175659340685 1.211079641881771 1.744661478162874 1.6665052789881187 3.142310033169649 +1.782308048338347 3.84530103601218 4.991470307086184 4.1391680084202225 2.232119906166039 +4.919142456320294 4.376232304239496 3.1906884723449545 1.9385979418110213 1.3647278592763987 +3.306246434786258 4.5009710081159575 4.904652450808557 2.309316044585755 2.8571205553114702 +4.037578481044976 4.613036035880992 2.5007253296494247 1.1182197697764145 1.4974889049664546 +4.350255090253233 1.5515731355287241 3.4438454237315828 2.3344261246581306 3.010553415048009 +1.1267059006043278 4.781881020199492 3.4400095649114006 2.395421227350614 3.8015089043530503 +1.8989125194953025 1.662011766683019 1.1021194897090276 4.9922203020028135 3.8973075701683846 +2.841140149508035 2.419943996981379 3.568687827795834 3.468426640393429 0.4329647844832165 +3.0532169625460805 4.964529615243234 3.539639339263971 3.895065418067059 1.9440791531863018 +4.830800539304696 2.2315186717640145 2.037375273328065 3.4623842719017692 2.9642734139990874 +4.130272214979654 2.691504928774625 1.330990913388737 1.4784959191304714 1.4463087604563052 +4.109256057905 3.508030825428719 1.671324348394497 3.413208123553326 1.8427237628922388 +4.949259989516511 2.5426054114019365 4.407116091373976 1.9783385401040419 3.419202633935669 +3.6915108384772535 3.463692125321813 3.8909773504021765 3.4147795682594686 0.5278879557078706 +4.684839011014106 2.9817717089101743 4.064989525456016 2.107341597906044 2.5947685144799073 +1.5309403113587416 1.5873346879393235 3.065373747895235 1.5795911782544145 1.4868524371834593 +2.3208274448540522 1.3076830962355541 2.306592777890116 2.1765274595972572 1.0214589850602047 +3.0847528188431372 1.200706138726075 1.3073765708407916 2.297177917856778 2.1282242831559803 +1.0819161622423796 2.8861419156556996 2.7459905719381164 2.1308170064530456 1.9062185302193126 +2.1009934949338787 3.3548217517646317 4.992971989138365 2.9154065515086924 2.4265950311621047 +2.010602367562974 2.815515279431751 1.0610538018246012 2.5101101277023967 1.6576033998696824 +4.797365195795146 2.9077673295533875 2.735705868265646 4.3993548687325355 2.5175996689028795 +1.113280090963622 2.7300363429748167 2.8511985567147615 4.060278272908915 2.018854759146735 +2.599099983593631 1.8668863593101657 4.129897809137141 2.641531473397896 1.6587257582096548 +4.054218838432677 1.7628314694111231 1.5848196113430966 3.5359870621030636 3.0095698190632936 +3.5787854025044505 3.7644371410311597 4.671182679707556 1.3138552363626688 3.3624565617796027 +3.282856520955741 2.388881344954689 3.5040496194342126 3.3089505979837126 0.915016526340948 +4.56235152029779 2.6573925276975507 2.9945175991740594 2.2628254536068373 2.0406474853274594 +1.111278795237447 1.8850133997186562 4.734745086205578 3.1114342579545773 1.7982778659841874 +3.7180497292683383 1.2072789872209961 4.075974215057146 2.1455976049650047 3.167068609283952 +4.627639166783485 3.4414160000467864 1.9257043186044385 4.429187665468997 2.7702985884794105 +4.564138577692767 2.8936039080326474 2.4768470830281504 1.8792312521554684 1.7742127166284463 +4.183918725943206 1.724012970065457 2.14086741007277 2.8379983469271695 2.556780763170744 +1.8972011616494213 2.46972738075906 3.9429846887821456 2.2096444643569524 1.8254464125737455 +4.64895241457417 2.9510706327031646 3.8949614670604618 3.728583954978359 1.7060140743077388 +3.109573121846941 4.418490879452431 2.0204338269407747 1.4331968837557398 1.4346124646106657 +1.2303108021949694 1.0296503688364322 2.676249206703804 4.331803235623989 1.6676701568923906 +1.7184342638465866 3.906505419777997 4.513108479425276 1.5010859341304572 3.722893390467057 +3.2460042729556076 3.1686900036680816 4.175264101503949 3.167197752187806 1.0110268348857212 +3.650970506688726 4.808160082706184 4.237159823848625 4.221172807104831 1.1573000041250456 +1.0490346784828564 2.4218219039892483 4.216535105943926 4.691241653299942 1.4525464097977066 +4.914474551187967 2.9625062214396665 2.216644745304809 1.6115217385993166 2.0436130293146655 +4.885074503498188 3.307054681044386 1.2511639245390542 1.0029870045865885 1.597416146047805 +2.141565584044099 2.782799535000223 4.474936375903331 3.017478031215656 1.5922832054501297 +1.5389604828372137 2.1349860317558393 2.108406916485436 2.2676087321966363 0.6169211238801051 +4.147972135972706 2.7511277670076946 2.4955972626405205 2.35911579346813 1.4034961284366678 +4.9354069678313195 3.805735911481916 2.1789849887343165 4.209839487395028 2.3239033306667527 +3.1440163774357743 2.7285134383903706 2.2276110421846544 4.814267900965946 2.6198160999268 +3.7487438668550346 4.488733851129503 1.6831416467943954 2.557609142826429 1.1455472833729137 +4.3201134163159445 3.2177382323923553 4.840809461874207 3.9470387777069535 1.4191747890965956 +4.754251071725227 1.3364194305593218 2.72732919521626 4.228548885213806 3.732992591071023 +1.3928580873861875 4.834914028979814 1.361907433359879 2.6840117229411975 3.6872359373369785 +3.1353188617382544 4.669039469260634 4.100344144753264 4.436655744155162 1.5701606267611856 +4.425603666121205 3.894645341117103 4.218667954188608 1.797949021255734 2.478264896081699 +3.8220498784838557 4.8968985287048685 4.2808615687223845 1.0637784913207615 3.3918907924321253 +1.6885421462064576 2.778893329344 3.3771018305993215 1.1784054547188747 2.4542068893797953 +1.3153619911774608 2.1795291282864624 4.9805491395723145 3.762787465968918 1.493227489218074 +4.230140668771044 3.831642647023865 2.0042942308660945 4.469859852991181 2.4975617130196164 +4.9374077932954545 3.048964274954547 2.035397959866519 4.579391473205199 3.168299530958692 +4.706579363527462 2.146852281575035 4.730154390137538 3.1709982268850143 2.997193800121877 +2.9240353729742443 1.7133780931906886 4.675310364470173 2.007797074300743 2.9293887079599825 +1.8002192151423553 3.5866557836674873 4.150743903070607 3.9001238355229058 1.8039307169682164 +4.492026159175039 4.5006268084591685 3.5191328158990127 3.087382416284177 0.4318360553910231 +2.274644192261815 4.1496988719063665 1.612831331612186 2.0542689871946473 1.926317018411838 +4.3531466664011 3.419534111130322 2.253535154466469 2.9550071958773527 1.1677737059209652 +4.835393683884851 3.966421253972548 1.7250535329794645 4.685941406120261 3.085768961095422 +1.7577826626188555 1.1861591472549953 1.5168364700410009 2.545262630403909 1.176611155240223 +2.8134191264463713 4.006988509416468 1.4853684292340517 4.126157207280621 2.897994693269867 +2.327131275187079 2.246730049916186 1.4975803906751306 3.972636389436019 2.4763615555946834 +3.3503944616198478 1.9500018234108514 3.2387807967653433 2.3605047937454424 1.6530179305230073 +4.816837250513662 1.2300776170380932 1.5401216721416207 1.2746458537873022 3.596570877719594 +2.424756106358827 2.9326279587573234 2.328463655448584 4.074795210195735 1.8186829623560792 +3.976517539349551 1.1582487633265304 4.054063046353151 4.452553988787871 2.8463017979667593 +4.738428991851465 1.5785072568724061 3.937865868420516 1.8955783548239582 3.762451814892182 +1.0609209736693783 4.08836463913754 2.420455330464653 1.6779574662885444 3.1171650944230365 +1.498175032412301 1.1983969288168588 1.1530580879947188 1.5265860481124056 0.47894681164505104 +1.3824289480108356 2.3605168605663707 2.683560559050386 1.2812532335136368 1.7097139526661396 +3.523230632789774 4.401668679258702 4.168909141798611 2.8177852621282393 1.6115797031793566 +1.5972782172003446 4.82783180277811 3.0448397781500294 1.9784892678812245 3.4019964550304724 +2.9121655683117305 4.5223364078843415 4.3768071724124145 1.8993311950123521 2.954748272053706 +1.0971673568215237 2.863171787774196 3.9371022259517443 3.7821660487699185 1.772787880470811 +3.082482396761108 3.442585112712001 3.432190067975732 3.8689388691642175 0.5660596093829593 +1.1786079242109748 1.8025558416450536 4.456607659200081 3.6493997166382193 1.0202429446976236 +3.417280655308417 3.86230629518298 4.872228998048586 4.282558177165548 0.7387553702996953 +2.333148958753209 3.1303387135564344 1.993902435658327 4.058425965986174 2.21309035342902 +4.260958679191207 3.3195181898656956 2.5080324349615823 2.9878327678850196 1.0566544157930253 +2.297705732264131 4.635706248861069 2.539184116165143 1.7063832389217386 2.4818951864945733 +2.865988264218035 3.414501790221271 4.662242742352913 4.686788106289532 0.549062440073334 +3.704102531813407 3.5362587785950836 3.915753677580887 3.542079881236664 0.4096384156408153 +2.7909404070973256 4.797195006962152 4.511058814435371 2.4215868746900955 2.8967137425816967 +2.8151327563798265 4.352877453979776 3.0231021100224384 2.0060043463921375 1.8436774706489525 +3.0499318400575213 3.7706057844580965 1.0001190340725548 3.8536309903296906 2.9431108403592803 +2.190819192219861 2.8863709902714327 3.2763200929675156 3.5976862436956574 0.7662039588820961 +2.0053930055549705 1.6908822745694843 2.1575129369326196 3.2853180588726456 1.170837902093702 +3.711245840275451 1.2743925656316666 4.9740710447447505 3.0011841444300003 3.135368655130634 +1.6697663551082886 3.4379561688912696 3.6715882402456193 4.817789798347511 2.1071955840313206 +2.8084038384081254 4.732558581387361 4.850930874864469 2.4821338959835937 3.0518143131725184 +3.1753829700152876 4.756732837279255 4.514792973431467 3.99990250914527 1.6630633159650368 +3.474345885546059 3.03755239401327 4.931951918618914 1.6988215014319001 3.2625022373609616 +2.2484769229749966 1.9696754686373477 2.488970841706463 1.515114257462503 1.0129792187483913 +1.746056893708119 2.0947970163012584 3.2934723780678117 1.2104546364332958 2.1120091347033605 +2.8210143660383467 4.378205685740577 1.6062406311451474 3.527585296498045 2.4731377093150333 +3.0533643483336435 2.9038333528211027 2.198957774995181 4.863672481800391 2.6689068899613093 +4.360072637241888 3.9645329842552686 2.90904727174917 1.562869793044113 1.4030842530858507 +2.8490800957178104 1.972766130475975 1.8989223592227042 2.9115175527671844 1.3391322532398553 +3.325769491388991 3.438618878436965 1.5788581810202182 4.713436820678655 3.136609352845847 +4.5609530991526395 2.738156348436482 2.472592492251786 1.7591066094326187 1.9574601143838481 +1.8458919432720675 2.9448256463037903 4.219651111190084 1.4881377372956641 2.944286092658641 +1.48507043981662 1.748530269832116 2.242869316968952 2.4212520937061326 0.3181689756532852 +2.6263310918062843 4.557832966844418 2.012622078120531 2.720826604328525 2.057244065301275 +4.7149691619556435 1.3433961552420972 4.263061736972676 1.2725030359014906 4.5067666773588355 +3.6852399113294156 2.8258487908660173 1.2409121225070754 2.0389037286097516 1.1727504855431372 +3.8862453616055497 3.2767163595940745 1.9154139527035636 4.057850506930841 2.2274559464066517 +1.5395491426630583 2.480488576121056 3.639382929372621 4.336800087079352 1.1712206065895499 +4.764304212808112 4.075409143035367 1.2924401291873124 4.1881649719478045 2.97654141280404 +3.9274666177332076 2.7089780655506503 4.3843801939456295 4.742625792136661 1.2700607309980079 +3.4780441561373885 3.3953248834626106 3.2991984876261085 2.0639714587991924 1.237993655402327 +1.053992233940484 1.547687366596708 2.7619234012643257 2.6028771213006126 0.5186816009641584 +1.4540979062664445 2.7511480661766887 1.3655945830137695 1.409884857451818 1.297806127945537 +3.1778925770340876 2.3692743792024373 4.470231295184599 3.4414009956751035 1.308569896892521 +1.631419827517707 1.1880637349209082 2.057009319882226 2.5311380438316164 0.6491245425313841 +1.8249389919360146 3.086704449622301 2.4797432841429456 2.450670377990026 1.2621003542042368 +4.333471301298654 1.4835184323121333 1.1242127239742605 2.2682898855252605 3.071016754598889 +4.156394004181608 4.340423378856369 4.762568951214369 2.5106091685083407 2.259466679034804 +4.528341436432574 3.879025924695946 1.4077894375789084 1.568587939708522 0.6689295867794504 +2.454453193555801 2.665010876771755 3.0484633240756636 3.4200883522779044 0.42712960509380077 +3.0418191643561627 2.201910513274934 2.9502465961502007 3.1397296696875294 0.8610170598299677 +4.7651649336406825 2.579029600603155 2.091289635668967 4.274446314940954 3.0895567288213033 +1.613684234303117 2.3259297285361713 3.7836039460367603 1.02578959499054 2.84830364232674 +1.4021862680116888 1.4739768275357203 1.9633238005786917 3.3129884717336613 1.351572642887028 +2.6761964904313933 1.6374505394406436 1.1212633319693883 1.826553854664057 1.255558788787923 +3.976497347119602 4.786351326775842 1.6205606312777152 3.4091086538517725 1.9633561820053487 +3.5033165667431048 1.8508590766180797 2.9738125537475812 4.7730802728488335 2.442944960835205 +4.379165890970686 1.5981028761598632 2.890332360546598 2.5023580923349726 2.807994929686129 +3.6309933250941997 1.0130566686363394 2.4394992377646343 4.14551706988946 3.1247542592584225 +2.2961318208696544 4.2972844112917326 2.9216671418341478 4.929117322339206 2.834513700330761 +1.4316287128226994 3.005077039923127 3.5353119795545136 2.848902572107066 1.7166529971684696 +1.348205228624138 3.117568625410575 2.878997103265073 2.7447057682381355 1.7744523077701906 +3.884331195862208 4.320027376694631 2.5735674321061905 2.0977811609634696 0.6451385415551095 +3.4701904909370556 3.0431798211053795 3.1386583718262946 2.0099632797243236 1.2067687115123484 +3.4770982502933685 1.035980420548864 1.9948190688065992 3.065032889637269 2.6654106402191577 +4.5922683793346515 4.360702407685545 1.3218889281703827 1.0167818122260295 0.3830315279786716 +1.9335503972209436 4.839978766678122 4.603568223384109 1.6672764620996028 4.131480990416485 +3.6683795776456884 3.0716526321056246 1.9835154339244272 2.328863919973279 0.6894553099003651 +4.168289463811666 1.4067761787486623 1.889793173545259 1.1168898542812302 2.8676358144835645 +1.1708729075270328 1.9186567950325926 4.00988554582023 4.975092325806949 1.2209852048838505 +2.747903475454895 4.733504559409711 1.580645236437436 1.2727641400186145 2.009328851665301 +2.5629099462517084 4.712789152531862 1.596718002388906 3.4805634500006826 2.8584706176701196 +4.5200178443862224 1.695544823888787 3.7434399555177804 4.860065106490792 3.0371861272077822 +2.4480224630730345 2.7624371968018324 2.944930765526135 1.5481114551201305 1.4317684207681274 +4.499537827072493 1.8604832851924886 4.36728658791214 3.3694442922234877 2.821400028723804 +3.0062854859270343 1.9959889541721476 4.066700612119806 3.0957761598321367 1.4012113952313063 +2.8653054281614923 3.965148708370774 2.526358884358973 1.507175112106884 1.4994635049388532 +4.938911952008054 1.5940172366125474 3.355015722521662 1.4061457632984484 3.8712291039208044 +2.5982164400019587 3.84767553018476 4.0491095078195425 4.780438792951263 1.4477536190014193 +3.2535099112112666 1.9994850890014324 4.841722106559477 2.522848743485229 2.636238215467957 +1.7738387760124232 4.491927072903961 3.059807957334314 3.294985539332537 2.7282434797453963 +2.1381145093130733 3.666464250136264 4.846142207226222 3.031661324891832 2.372381462292964 +1.1971138796914422 4.0172825658540585 3.0205899895420987 4.85861942646679 3.366259590318886 +1.6266027555296128 1.1589601693068317 1.8233339402902828 3.103972037289819 1.3633501105496433 +1.268476304646886 2.8356144585774126 1.0158358719799012 1.7835498660906368 1.7450807345960349 +1.64937891287145 1.5477723573264206 3.443759322702409 3.4510893453801423 0.10187061088548176 +2.942005737211473 4.036014169337454 4.276455141041152 3.63213980964027 1.269644318634544 +4.456365214535651 2.9730655266714754 3.913756983472468 1.5133419332003277 2.8217318046885613 +2.142867702244052 4.418934644750122 1.4890782326526741 3.7450981951119773 3.20470073451232 +1.241249013716633 4.554220345279875 3.908987260784796 3.874070737708813 3.313155324964955 +3.9506506564830324 1.5615320709864755 1.2456710400275313 2.0729079009413685 2.5282817168226424 +3.6689919772443016 4.733037097370888 1.4588264783172415 2.4377711847945944 1.445864708748793 +1.5209701024579658 3.2212645448059165 3.820893411232402 3.4152883166864956 1.7480036279713271 +4.438780798036516 4.118108512019276 3.396191240165283 1.8916792405915461 1.5383065597860808 +3.1490912288338557 1.7268719968723323 4.926741783829389 4.434200847732911 1.5050927272072043 +2.4228023549999165 4.0130493203873225 1.6259666101549533 4.399691466928179 3.1972542895436864 +2.410217489962263 1.9049738316042624 4.431426200631105 2.2223833212465576 2.266085081648645 +2.224208917360327 2.9388895554355536 3.1990738264356797 2.9121962167040585 0.7701085491052161 +3.3741724330873537 3.9590601075345306 4.1152418963554185 2.3434983479502853 1.8657890537344888 +2.4990100543482425 2.6155854776846788 3.597717584514971 4.705851398988096 1.114248796321911 +1.4071919924274487 2.8788584654875398 3.3818605184629367 2.918688217398447 1.542832067466353 +4.83358784068079 2.220173263080229 1.2850607140338397 1.4982730400890465 2.6220974906355012 +4.694960427281874 1.3760253288696611 1.128586297413963 2.791321886196321 3.712144909035193 +4.901850845042754 4.771865185904241 2.0071038815474203 3.2725201850465058 1.2720749556307454 +2.9469482697577822 2.457030277615081 1.3994756071446912 4.1626088733002655 2.8062296922313235 +4.096087761612192 1.1363787187491692 3.651312945171033 4.526108932130409 3.086283466761499 +4.583101752140782 2.116155730613388 2.9646054060943343 1.3072656792618664 2.9719686477597564 +4.410031978690723 3.2100736302022965 1.813762224879063 4.8998481079983875 3.3111668813419017 +1.9495952821033256 3.722110054294629 1.1940703870704548 4.474246154790485 3.7284529881405346 +4.051265814790279 2.368493639927446 2.5795823512057034 2.639612863074324 1.6838425861249016 +2.4470088761768736 2.6240732284113837 2.908995364139671 1.5464854587803543 1.3739668944463257 +4.664501794863218 4.026510227129355 4.240982776856821 1.8790578946927345 2.4465736018941566 +3.355211511733055 4.544685636144575 4.472419574287986 3.9988783815689404 1.2802694848532195 +2.2364548886432094 1.7030013038180236 2.8776283114020544 4.91196507983482 2.103116452924162 +2.6359335836345967 3.3235340248380147 3.9220761433909823 2.9283590628853795 1.2084154926314516 +1.9610899521108278 3.528955795807053 2.6862831053229312 1.251623671965131 2.1251943425371245 +3.269710293194298 4.967212619284229 3.0735837512106587 2.068662180328818 1.9726584881079525 +3.321132939209328 4.911620497881311 1.8222741908988893 1.957496776230208 1.5962254921764818 +2.8170766646342513 4.00592441396843 4.025526934870605 4.462637972265427 1.2666590030901446 +2.530870443226426 3.9761410290095878 2.657936034045855 2.7968568466174633 1.4519318366561014 +1.249329429206378 1.3614115814952572 4.926202385076751 4.133643967847032 0.8004444100519315 +2.2413511359618985 3.742551881272211 4.589622093084101 2.170197828846798 2.8473175882048096 +3.430807746311467 1.2737697257964435 1.034281593890812 2.710113076053035 2.7315241493630262 +1.4140070953582136 3.1006982148767985 3.2447318415536524 4.964050450314377 2.408523076720207 +4.664573753832226 1.7531270507536059 4.4242891393184856 3.93591879992975 2.9521225403533022 +2.567112788774245 3.2550278545370723 2.3341266550365347 4.918532727274702 2.674393741378592 +1.311618846245842 1.1095551007315692 3.0326817201390943 2.6304609557794074 0.4501236502710645 +4.812012638549627 1.7755938055651854 3.7905080127166846 2.2461522515644297 3.4065927326739187 +2.774800561902078 1.913140862106541 4.636444204519623 4.0947373495771435 1.0177935718717264 +2.67955086864567 1.1504923553292232 4.57359917205473 1.5866847279344216 3.3555443423742792 +4.3539247482138475 2.287929133951705 4.763046935355172 1.9208755482226465 3.5137268066805127 +1.8434035577163725 1.6445937738180247 3.983325698079066 1.9325776478052625 2.0603623215045244 +1.2412949823763175 3.1081202926687643 4.334822292037204 1.9040723501439176 3.0648951073670867 +4.217516707077142 2.0503702161174178 3.212593941738105 2.9560828025210157 2.1822744735301964 +3.7799599031172915 3.90277116049367 2.5608979828395384 1.9136375847905707 0.6588084910054478 +4.527883031465729 2.6041411853788725 4.706336257435365 1.2709987015342064 3.9372994315102083 +1.075568757310585 3.797999807811809 3.122926716201573 3.2075713715472096 2.7237466002570394 +1.6986919424834959 4.3434925290028445 1.055963337903849 3.900635051577778 3.8842151460790193 +2.8240197369647446 4.32552788902257 3.3046365633967776 4.7067321185923054 2.054360892490694 +1.4142241223281782 3.2565215922242188 1.8025721297130808 4.166843397154306 2.997305221967474 +4.580005223096926 3.0837618059138703 4.414002124654912 3.6840820464217012 1.6647905826474403 +4.9742051469712525 3.376562325804061 2.9763314986241074 1.564168302915565 2.1322916018548743 +4.8735973806159745 4.914622043776849 2.2399413303890263 3.1582360114657657 0.9192106093171977 +1.9530923434489629 3.686003802407591 1.3873758831270209 3.3131448185982864 2.5906694342227943 +3.4396194583391084 2.790807041246952 3.1580674808912614 3.5748956585812217 0.7711700735177028 +4.873690455470522 4.399328265823887 1.7729738241034112 3.776175026330366 2.0586001417394946 +1.828637902733972 3.5668957320478882 2.275206487974466 2.080823322506411 1.7490926494009713 +2.1050918044918414 3.527949472953568 2.794123306369254 1.3589402593456223 2.0209587633507953 +2.673449225194581 3.1296826110499825 1.625807125487031 4.661818035481238 3.070099533886961 +3.8009015838800595 1.6803645000506893 2.646107683113128 4.044014500184376 2.539846647557651 +2.3015419860286843 1.2602939775135296 3.152590972621971 4.42041742804723 1.6406039547413485 +4.3005618094064495 3.791755224892617 2.9364064692437153 2.0680284849987247 1.0064613574132018 +3.8747269987298947 4.310818043606282 1.3647440582653618 4.439324987757761 3.105353972000571 +4.395800428430206 1.2593823331977516 1.4208337629457617 2.1186667278874225 3.2131120918917295 +1.8254961064904052 3.2662429516147946 4.338710406114362 4.11773088542822 1.457595081049109 +4.698039183456737 2.5788598320151364 4.785144636494071 3.125905118231228 2.691467425502593 +3.8844322354496312 2.075392729569901 1.0583854641642652 3.264648025833678 2.8531068022171304 +2.8860164728145996 1.3780445377538717 1.6205292141899292 3.3739330897314352 2.3126617797885554 +4.84123572655059 4.033979928807491 4.843254655803763 4.1754925161325165 1.0476488906919954 +3.1383395980165893 3.7967543827777717 1.0406268808831896 2.9450364601494674 2.0150151052518877 +1.4076078822137865 2.200688508201955 4.654938653119671 4.453284918416163 0.8183160196633439 +2.800025369397279 2.6653345924213707 1.7870521068303806 2.4021087021623635 0.6296318137322354 +1.067959753691818 1.4182339475643335 3.1690325397319583 1.5720950216483631 1.6349010513043392 +1.3493747374425036 1.8415673794721958 2.68042558739464 1.8552516149733007 0.9608151131356033 +1.7040608861760194 4.8923785530300865 1.739402376411848 2.9455142318021372 3.4088231623958976 +4.13028501999977 1.16656383353145 2.761151956825966 4.749983444779826 3.569186736302536 +2.2911985945951034 4.35057847812392 2.339352962660371 4.280996957799588 2.8303757539491716 +1.0888897346586295 3.555892133169689 4.283839648385847 1.2383066437770673 3.9193586358511134 +1.0577106489812422 3.266207456671677 2.4049373576992386 4.261505798063462 2.8851870863663738 +3.127427672426451 2.301686786344601 4.347296924353574 2.692906032871302 1.849015206202141 +3.293240671334152 1.2457299765272625 4.4669817221263255 3.068588057453979 2.479476736479765 +2.4359366171859587 1.6794410243027689 4.879802636614152 3.126248578680158 1.9097741793595564 +1.6878937747825127 4.512900949445602 3.170216998511629 1.9358285386193188 3.082917515408617 +3.365601254950062 1.760199518654309 3.0541190455974667 3.6791333016652574 1.7227761187076491 +3.1259914351623435 4.780504435321439 4.319792001027798 1.4015781529528621 3.3546065836088403 +4.0145928999209985 2.4574014734265845 4.274673435122162 1.0062698109573724 3.620401550822953 +1.2859247395423021 1.855015436438077 4.972335874128423 2.450930619138146 2.5848304937047426 +3.6922491780781024 2.432225681541016 2.46675903851256 3.888656386075288 1.8998555942048505 +2.3304503240415184 1.512706225616919 4.279783267498617 1.6279301533437813 2.7750730349958292 +2.133858174690183 3.241719025079239 1.6489234787278386 2.386124102332662 1.3307217677892338 +3.080035287974197 3.0756319339127707 1.3613910084233614 4.0803030301405645 2.7189155873923925 +2.8905626732485468 4.034270877801516 4.962641025069249 4.580361776746976 1.205904590280516 +4.969109598611363 3.461373349987998 3.419895353923568 4.0426818756216285 1.6312975347929712 +2.342431631262167 2.0297874017731816 3.705918450674768 4.675837748982367 1.0190632264301693 +4.916566226519147 3.930691626458848 1.7363983728519656 3.197738634338616 1.7628000700266397 +4.820794282407236 4.461036780230783 1.8963803722608188 2.054280656851425 0.3928841562675119 +2.524985141897318 2.825258034699775 1.4848123249302327 2.3794547907685035 0.9436890122456324 +2.0015969894726546 1.4189217841275918 3.618772544285584 1.3717560810870877 2.32133439659369 +1.7624857093292223 3.6993835846457355 4.089370276269534 1.7176077864685357 3.062161113892059 +1.271752912421778 1.808080714527056 1.9314245464151942 3.47461959058784 1.6337375724607957 +2.039438351239772 4.695160140588305 4.082455137626958 4.598328202303098 2.7053619427497915 +3.34565481024683 3.0093542241811813 2.617519874178124 3.5512561787716277 0.9924523014755074 +2.556124981014501 1.2561188337239821 1.33588115539271 3.852227840447866 2.83231647638134 +2.316013559288079 2.361072211084838 2.688119627551847 4.3223569627368565 1.6348583883059544 +4.537593872294893 2.4024668224675785 4.950044650090387 2.69114470430028 3.108278701145514 +4.671671116825564 4.495134445294579 2.0701128981705383 4.575454619565365 2.511553769553189 +4.674197000236356 4.098719731276276 1.8755875067081877 3.507968017999045 1.7308495661760883 +4.149054011930236 3.6491405518522835 2.68715871929023 3.1600422410117135 0.6881368270066812 +2.2473294229015353 1.0868558667112325 1.0502891930794815 1.4780773135077245 1.236811040780481 +4.123116887767859 2.4383958939967743 2.6065269027519946 4.828782005045699 2.7886739799631357 +2.9463156244895434 1.30599653144004 4.7796087760874055 3.363795025180823 2.1668353200644743 +2.8438486575161734 3.7634877160624436 4.988706254918791 2.3084958171558907 2.8335955937107657 +3.96894840499468 4.368891425661889 4.264339707809381 2.6494294003426213 1.6636976050180505 +4.159076600012557 4.29204933616006 4.160772269203443 2.522969718886795 1.6431916937418682 +4.91493123299929 4.352108934634501 2.49308762140058 1.1507407718509581 1.4555631226547405 +3.904873104107667 4.716727828390272 3.383466327778488 3.718468480872177 0.8782565319525901 +2.451434116705001 4.226941670061019 2.3740542856242994 1.8415095899606908 1.85365339934512 +1.2243307289231207 2.5763656550609553 2.6561697308873917 3.105509291600649 1.4247471643483005 +2.607819357689535 1.720643654652425 2.3291693098032162 2.2009162652012666 0.89639810994282 +1.2590168276009637 2.7735591230341066 2.4837406042919734 3.0228954687173357 1.6076462087441454 +4.271551530458137 1.4983922941442565 1.5338065687593825 2.6571913140420476 2.9920570575921146 +3.8556397120020827 3.6967876619549482 3.2309864367849914 4.551050223654594 1.3295872950689225 +2.1374538810236605 4.69815862997428 2.161754648576551 1.1915294088479644 2.7383472802229902 +4.354664502419965 3.189713790551232 1.8868337864713736 3.972917561797252 2.3893211753050987 +2.9483898263526536 1.6747615054074583 2.2324859982382335 1.390433897124931 1.526820500551065 +4.37971918382231 3.27189061647664 4.603197565959764 2.2418109275818217 2.60833874152439 +4.221732325444104 1.1931075314281423 1.4422832089238717 3.9291355218511117 3.918801164800249 +3.5723426888994796 2.334515520968005 1.8569065719119657 3.635308774974075 2.1667788289360357 +1.8545894484871792 1.6121109391462904 1.5357404910258756 4.032480987441192 2.508487379663765 +4.44526670800016 4.948745776016398 1.3628639555708788 2.0267113044532135 0.8331773367948772 +4.505518777955456 1.820546081513355 4.48384945959105 1.5476119216578552 3.9787647907117547 +4.733813736119832 3.532394939163374 4.49917908005132 2.71023397358077 2.1549319524396195 +4.501125829414134 2.675581274074271 2.794713420073885 1.5157221825949385 2.2289978710350855 +1.5173664484137048 1.1811795705766128 2.253011597962703 4.629981401558933 2.4006263899320426 +1.5667048500998244 3.860844343256124 1.802820434212793 4.229817132372158 3.3396689936183654 +3.7391428500420734 2.9107247656239923 1.3885902983622627 3.3948742719800973 2.1705879169908533 +2.545392848851803 2.800034997293921 2.410677337148958 1.6944912113984305 0.7601086701786579 +4.053060925742116 3.9569083068549844 4.099227388881122 2.082799766672514 2.0187188218582386 +2.6518714896186713 4.885702581605907 1.980525330708291 1.660196201416365 2.256681656459725 +4.354740083784552 3.8009303724121706 1.1483250478962619 1.8636829395379775 0.9046779037560502 +2.6361595962395246 4.328505082569013 3.2911854700580734 2.3317192272804235 1.945407082368534 +4.858260694498638 3.864785980988003 1.9780206437784948 1.1411838230312696 1.2989564545985985 +3.0406245871049564 3.830959921367071 1.3921796324021454 3.1701150864677445 1.9456835352663744 +4.325053361003047 4.166282125160752 4.030073318615214 3.399242496578693 0.6505042900413206 +2.3484452419611133 4.317112056461333 3.8526060625183685 3.644809907523667 1.9796030583288726 +4.201342321070425 1.7313843633847248 3.7204102150123424 3.9623822125665686 2.481782174231916 +2.6770994511624506 1.0536710167470575 4.033061787185639 2.5544193314913213 2.195883283202943 +4.9280597160371 3.5554855847320948 4.271917568276954 3.9642266186571953 1.406639067566943 +4.007495387064006 4.584794033913341 4.506022310761417 4.546111610766495 0.5786889316627459 +3.7185859566477903 3.2415551338522293 2.217766120990203 1.4366024562667339 0.915300539157063 +2.5847362066859056 2.253187435465132 4.066677322025976 3.438535999093975 0.7102718558923543 +3.5100953956640724 2.8903244244930737 4.962886261036288 2.7513628969851784 2.29672628897093 +2.464597298182299 1.031990269233782 2.8996514193071015 2.2909609706165304 1.556556122251885 +1.6602433714462572 3.006372745065839 4.699750402356225 4.446390246181582 1.3697648189591844 +3.7057874577595826 4.237688386840794 3.613181482233114 2.8952434772232323 0.8935063387548099 +3.6978105828866497 3.7220221310688903 2.390252634782301 3.1262125111585535 0.7363580234513164 +3.841737609645382 2.0108787470871414 4.751614132794819 2.405869880132119 2.9756613170030186 +2.1415017288926563 3.6151836105845825 4.137546525383621 4.85586684218666 1.639427450654366 +1.1514080341036315 1.7966678750923504 1.7430808510921416 4.49709292497142 2.8285937787999234 +3.02248483742443 4.07371782792187 1.562900472235338 4.584089187081429 3.1988548030543003 +2.190917332095301 2.318194100524624 4.6070177103126895 3.969308978566042 0.6502859388974433 +1.2249660520840902 4.453752412069276 2.7494713815762974 1.747269010707666 3.3807500573986675 +2.4050381469778688 2.550717663860508 1.5945026130792188 3.3980581824870644 1.8094295271110221 +1.5443847362025922 2.0873683338600126 3.410699802547174 2.261268540981516 1.2712290951631875 +4.40969818407628 3.4134609319127804 1.213745838021199 1.7368558017347215 1.12522562036893 +2.007709639869274 4.187799113944962 1.3290380412491665 3.0122491990248266 2.754267582613586 +2.0585458847711937 4.918793817689622 4.117828704285108 1.219833680676592 4.071780126016613 +2.5271161764347063 4.363922963860792 3.111184659704232 4.976795321058328 2.6180837102912893 +2.4390608148002593 2.629550164649751 3.041222837630238 2.6734031101071674 0.41421919844597743 +1.7603373662657646 1.9128587611733754 2.2218454156049083 1.841062376185969 0.41019324593865375 +4.1382336126077925 1.3094853278166787 2.108187004832625 4.231103882741749 3.536748920862222 +4.1613226207722835 2.853452883812195 4.066272798537045 3.2972968696891356 1.5171839796160376 +1.3073655784798137 1.2077288622429085 2.6753091591448652 3.0621618095099317 0.39947771942493854 +4.422411612777162 2.639665687511825 4.1432577827933885 4.142550587033874 1.7827460655337324 +2.3232040230106232 4.272492590072407 4.8630562846720355 2.734849134233981 2.8859992364609948 +2.323165355038461 4.67516353856486 3.8775679600971444 2.2091054116724185 2.8836890835884876 +2.224349081697144 3.275348275723854 3.900846987453275 1.4361125088917577 2.67946176603711 +3.314903829635627 4.465846878107314 4.214806424006952 1.7627298163505727 2.7087542506918036 +2.9172451768155705 1.4144263886173665 2.960620930646504 3.167805259896838 1.5170331757903084 +2.682000455262769 3.4308853093411114 4.53925782495125 1.7642449829986222 2.8742868328804514 +1.2648129566416992 2.489820719137667 2.8210398769605605 4.894893945263238 2.4086333707708496 +3.821528059495194 3.626884485920657 3.531608466690093 4.516200813741142 1.0036474533447282 +1.8750729256381065 1.2384690740838868 3.739938382022154 1.6779078792189002 2.1580626168637242 +4.693523980467523 3.9403196590371468 4.7262696327931835 2.927282760118557 1.9503001096951789 +2.8853801678125297 3.024787767908389 3.951253448005693 2.334827287851994 1.62242658083308 +1.2859142332995828 3.370826403031367 3.7809071818238538 4.229563783853614 2.132639562148416 +3.4833568055558226 3.835697371077433 3.2628125640871763 3.5247973303506415 0.4390670698950339 +3.1506380609582143 1.730820220681323 3.795093905323213 1.734649705600933 2.502261577001438 +3.1726526735080833 3.5542078869780727 3.37277130562186 3.367956177036984 0.38158559510209245 +2.47888271320525 1.3474477165504535 2.3992468813740713 4.998395331757504 2.834734170744382 +3.070423985309175 1.3446480118762931 4.049336392411227 1.4157721609040688 3.1486446722283703 +2.2451785778229474 4.6376457358608025 2.102982819910762 2.2110622552808574 2.3949071519872436 +2.3892538023459524 4.254522314112171 2.6478029475714484 4.665729991389106 2.7479549077736394 +1.197859947839865 2.188810499493639 4.776728902739711 4.05868308393458 1.2237535674009083 +1.731170054130129 1.1125383910380804 3.9958530570288704 2.5991363592211894 1.527587204880568 +4.847797909205255 2.982186442665164 2.241641445378137 1.6540882092103701 1.955946049720463 +1.7330999923671064 3.0578148618521994 2.356814858665459 1.1087223410544391 1.8200561579114862 +3.782898084731966 4.078547594299755 4.620499026001948 1.6095353112948287 3.025443954825567 +4.287433843140194 3.671716424244917 1.2150456476073233 2.0605937731496335 1.0459730266785932 +4.7377702253896326 2.3400084921305804 1.390854793584019 4.530456820634232 3.950488858070512 +4.435181931571432 2.870490289042445 3.8915138605722013 4.738616868604787 1.7792817209250236 +1.9559501447657603 4.2370582406443695 1.842408812574134 3.8721687646557257 3.05342096805488 +3.517221192680931 1.6848070248779154 2.888020116712302 3.7566697631007386 2.0278791607331965 +4.271959683131613 1.7470884175794192 2.5176553774142567 1.4822254894396787 2.7289356827382694 +1.2357694439893638 3.549378063595661 1.625437444260247 2.924075497592824 2.6531576730906856 +2.4775070970040804 1.7425295766214113 3.3283450069227642 4.241776550440951 1.1724116769129667 +2.2735827471205208 4.632802649131695 1.9027610987765353 1.1135885091487703 2.4877121863803713 +4.011416344079075 3.445760042736283 1.1608340740546939 1.7947110851936459 0.8495687826769878 +3.9046266038720376 4.3742651525913985 1.412054480050517 4.326563260030893 2.9521046382243847 +1.610709931037123 1.8206851642778776 1.4317390952877256 3.505078061342869 2.083944353080744 +1.1213698137065364 2.1626435458519477 3.1062810168017854 1.3684697863240771 2.025892114114293 +4.866929192849232 4.604465034392767 4.566828612419008 4.066282004100228 0.5651852276676159 +4.177943271891735 1.8880029345992249 4.170167892068459 3.777994129775899 2.3232793650764507 +3.600487145405921 4.884907904519533 2.8280807911200094 3.05405723725493 1.3041480133212475 +4.959880150519551 4.671249942389991 2.4344898209726082 1.5197953997625953 0.9591523764437189 +3.917066214201866 4.145804704920289 2.9711684448482405 4.854621868282258 1.8972923062568572 +2.4383524335022293 2.068860794875775 2.990748997456356 1.131388264522243 1.8957179131379607 +3.8992310068166662 1.8661392432763173 4.554217363254503 2.333110469241052 3.011109090287113 +3.095029738771373 1.7691368201283284 2.684320508523905 1.713131306441975 1.6435329318113183 +3.1419191674123597 1.7270897980420394 1.5327171447218633 2.1721511564197717 1.5526165011840172 +3.8954106756968394 1.2451414070282731 1.5175566157747586 4.032989132212371 3.653946899066909 +3.246706595828833 4.7205904116633075 2.764132318364469 2.6135419097596784 1.4815569424570048 +4.91692259787335 3.5991824420953282 2.425094422130861 2.373757116045677 1.318739791295451 +1.6858372095288332 3.030649479261923 3.973319246776067 3.0169901651796094 1.6501773702035152 +3.262655009410413 4.796209826272602 4.94110491462273 2.8319792974285463 2.607719548844539 +1.8893695850930654 1.8451183297231757 3.8649071793875542 4.56413584672822 0.7006275064774541 +4.108258779949837 2.2598488961807313 4.307664058908104 3.4529789319567135 2.0364443927215974 +3.5270089169381884 2.482584696734665 2.9468432663730617 3.586995957524831 1.2249969060110275 +3.583558295423525 2.8541606242459574 2.427376142542389 1.1955501325132887 1.4315782485437087 +1.7147507712106593 3.1664693595660407 4.91834480786873 1.1266300414504054 4.060121639760479 +2.0888360718602765 1.7743945573620947 4.307683398460416 3.6998989086308325 0.6843065483519188 +2.4174023614893985 3.0350278135837843 2.7093575548543467 2.716188964787824 0.6176632312486098 +1.5229645944810501 4.592515334900192 4.489316962394763 1.2841558410408749 4.437927394837168 +4.812209147869275 3.797090253753359 4.9013388984291915 4.184972815222289 1.2424358069374528 +2.727876250361242 3.8816895499433577 3.2707379764483524 1.5746406439832499 2.0513486518599917 +1.2961225824455571 3.8530243832431728 1.9272672443599865 1.6951763219484661 2.567413682129921 +2.6823316934222268 4.951956983407236 4.232152930052788 1.8221837733510213 3.310460737298263 +4.103026492475095 1.1224415993082615 3.245438411150812 2.443764008036952 3.086513916051944 +1.9735104743295424 2.48258517564749 3.0769152720540816 4.406311271500897 1.423534606136133 +1.3814719888022098 1.496082313253877 4.721268705453629 3.4307875857110464 1.2955605145584619 +4.057424847658439 3.4261987878052236 1.017192076983394 1.2140440425404062 0.6612087680766747 +2.813317145674891 4.886972849043598 3.7748104224525307 1.5825403739635884 3.0176308491290444 +2.0108256635453317 3.0049647089791023 4.624221096053068 2.968525015020409 1.9312280948668064 +4.84720819235149 4.456683968899732 3.2246233517832246 3.823711344146144 0.715133268486393 +4.152127448848004 4.224854348298458 4.282472894047462 1.142614592333849 3.1407004563860546 +1.038670458473114 3.947753689597405 1.7840113165860276 4.016560682650833 3.6670208504349837 +3.4064123739536774 1.5907831072996972 2.621548260613136 4.258976538958819 2.4449296514739594 +4.454058327547985 3.7429892731932957 3.24288676423267 2.5649055739750044 0.9824854677826401 +2.672245221319485 4.959499513940743 2.7135812329280844 3.6655217167323193 2.477442811412569 +4.179142328878118 3.1184075320728137 4.439227569709493 1.1653907089872222 3.4413901405939784 +2.1148256772519565 4.150813770514269 3.926712345042986 2.4801475874408596 2.4975582303206476 +4.828671892363424 1.7702830753969767 3.7423065433321354 1.7010393585076882 3.6770251393737503 +2.7192589938282565 4.430457689370706 1.939053258367721 4.337310461919884 2.946156579344693 +4.8307165019386265 4.410136178493252 4.611731229779922 2.5631356312500113 2.091322962812186 +4.529818230350845 2.2176349374936555 2.024327791488937 1.7153312923360784 2.33273882298397 +2.512198455182064 2.5311066345468305 4.664757863766461 3.871019914747313 0.7939631294713965 +2.3922364277281836 3.3469617122052933 1.069750003263584 3.0242085279417408 2.175180105992838 +3.825194648886848 2.4953223461400715 4.408815869117435 3.082863110627585 1.8779539556016425 +3.874887427808702 2.3816394906621525 1.2793392055381632 1.3884481796638086 1.4972288302150665 +1.4441987759949795 4.098334468590576 3.7342634966599033 2.8434795689008054 2.7996307400555223 +3.682384879178896 4.136440850240971 2.785152385633645 4.0204581245303075 1.3161105931524728 +1.5719122603370335 2.632313569161387 4.3984392609407905 3.630404730565583 1.3093234801243987 +1.9860836089280847 3.8918604858102257 1.6324504828422781 2.3789937685777387 2.0467809804508503 +1.2694752728258218 3.7867510041142327 1.059698235925135 2.4044921484567467 2.8539705279690057 +1.9297008043133967 3.3545455029237865 3.2790993412085525 2.4293791295532783 1.6589776530302078 +4.544580429001863 1.5659939389824138 3.9092864752984315 3.089492537074523 3.0893429041909624 +1.3532993481650202 1.3897217877599073 3.714783539433228 4.197599231605164 0.4841875532410025 +3.9515451724787245 2.688636960497545 2.377500803767387 3.23179088587124 1.5247126602315955 +4.442190401184982 2.743836299581354 2.739783492020273 2.648660612544599 1.7007968819344084 +2.607250640560876 4.373939152026364 4.531106554527527 2.660728838424514 2.572839112233578 +3.6468411469622626 3.405895389907283 4.169718314021251 3.9009410124821633 0.36096550481373013 +3.9707080619804427 1.1757265288957184 1.667217825782357 4.903496690182186 4.276145771421466 +1.441303854818877 3.0878452669816743 2.783698833558556 1.660466994309604 1.9931754530571668 +1.5436884521063003 1.4259394632177749 3.8760848571970916 4.168072249440715 0.3148356104596517 +4.665948844740346 3.0869568099529885 1.7993690976293437 3.5585130725802436 2.363853500225421 +3.3392548938182736 1.869530235443372 4.579733559355626 3.658090103196797 1.7347960202039927 +3.1093651921910332 2.9899291358430964 4.463231954179845 4.21969611697619 0.2712465217443948 +1.4730288169577284 2.524056060301514 1.6999721736925761 4.47686398817683 2.9691390024046513 +3.448720247261511 4.568093917719899 2.711402591383982 4.05161526319087 1.7461865363663878 +1.7281396379859264 2.2470998317845305 2.593410359479586 3.1204773660643808 0.7396751396239708 +1.0084173678057016 3.4353989665399607 3.6113432723777827 4.04734587259083 2.465834128238807 +1.7714943471753481 1.0716998525035066 2.1667639612420633 3.242691523465479 1.283484496955472 +2.8490788239549576 4.021700752314617 3.4968153880729673 4.730521258361958 1.7020788352057734 +1.038416117702596 2.3606100473836555 3.757975458308721 4.477342112733982 1.505219309995868 +2.2986615749177375 2.3406059508983135 2.337832364514541 2.961490045361708 0.6250665832981852 +2.899188352105035 3.5588326928108165 2.132707171948838 3.689867519605233 1.6911176790923066 +1.9837739210556724 4.775514671030445 3.1431406746361357 3.386648778678669 2.8023405595687496 +4.945490389946925 4.121996741665466 2.842225953393283 4.740368230043046 2.0690785125666578 +4.8955919998217166 2.769243187930262 4.000085675442556 4.875406440924945 2.2994663973010945 +2.4977012552352518 3.7893176651772653 1.7347876360104886 2.008936375039444 1.3203902762223985 +4.808864364391717 1.3311406198403097 4.883893933606769 4.461881780185381 3.5032351763836833 +1.7515617838032425 1.2637739607457745 3.5658691233048567 4.56688359217119 1.1135380223426998 +3.6423141985508543 1.9143992932586706 1.3755063443301 2.783429971608519 2.2288873592399674 +1.8529875665401936 2.8945297018410363 4.83445402130871 4.695337040970683 1.0507918698892802 +3.695374523937348 4.896353512740591 1.878216832809536 4.784318484876912 3.1444836370532427 +2.9341259853296022 1.4800659397344331 3.9310418064024746 4.63132411926315 1.6139039419685801 +2.261581593501709 3.636345162581878 1.0428670627394059 3.240457773605782 2.5921766535782678 +3.9513621301666007 4.592319009344759 1.0017277240149483 2.413580715255177 1.5505336467938338 +4.744478831021123 3.63395942889846 1.7009624175556302 3.135129843894814 1.8138603996072122 +3.830843532238325 3.5573889850958835 1.3993155401334012 2.7269047853339923 1.3554595506045737 +4.32435232464662 1.9010124555187269 2.243176293411972 4.398998722823185 3.2434775270467435 +3.334956071742237 2.2045728514708123 4.2781561143130915 2.300593315490168 2.277832489003428 +4.094571166290149 4.429363846428869 1.344649534615698 3.2761572810938806 1.9603082189746832 +4.591168409011857 3.1425759285480006 2.1021702492362744 2.60858272547125 1.5345597969915894 +3.3094828270522596 1.262901357278547 4.172480921298318 2.288259413263831 2.7818674310183953 +1.5571105838314772 3.9541295175238584 3.757906408938093 1.889717701883296 3.0390506434817492 +2.130035091461553 3.705326886022996 2.973630109775696 2.3128380395600634 1.7082711722886603 +2.3128636255997495 2.7736996601993034 1.1087757815083181 1.751552875838498 0.7909059639305991 +3.8968808064342975 4.423460752424864 3.734380180587049 1.6766919073175681 2.1239979918705587 +2.856209334903596 2.1832712107363843 3.283322328787158 4.711896825405001 1.5791360965238583 +2.498546336981437 4.945109805670636 2.7284127122397233 1.5079912474178299 2.734063159131943 +4.002157872365469 1.3607525750009684 3.6667352188924145 4.146436758773878 2.684610867949002 +3.776158807671161 4.449866839142922 1.6763765881026234 4.634603876256826 3.033972841020453 +2.8246052999134488 2.950326581034461 1.0997018184074427 4.719283518807405 3.621764421714503 +2.5878076656411526 1.3618987201814226 2.678603062195788 4.535495402081535 2.2250622248567686 +4.316182228075385 1.25849251552571 1.1355991465692212 4.37546280171984 4.454905485214926 +2.2129718103309464 3.2612941828731064 3.175032484262975 3.2159401617004777 1.0491202194437748 +1.2770412269349345 4.782819965515495 4.988373514211622 3.477197446478771 3.817608894527048 +1.22702002674062 2.0233286360042317 3.618711321433252 3.3077510793704286 0.854870559401315 +2.14993381505374 1.9062101541746341 2.599844521227231 1.1036961227502942 1.5158698008527702 +1.6565183903589196 2.8320251396544576 4.329914313018188 2.5112819977142826 2.1654652192789903 +4.9122127252688585 3.694446700433709 2.549492017673651 3.2919855473924917 1.4262716196142815 +2.2814295944964544 4.12520457121065 4.594559231261075 4.653707717498612 1.8447234774300527 +4.086921942557033 2.339284629343905 2.6580173622847947 3.2514470239813464 1.8456421489324746 +4.85321043495295 3.406612541298752 1.710609653364132 4.371460338247016 3.028658421342109 +1.1170937970706811 4.619413879614092 1.2281056326953297 1.395464652377099 3.5063164435138656 +1.702864773642124 1.4076382474818687 2.934173750386926 3.711063346841209 0.8310933442324939 +1.9943663625431922 2.1333451693268075 2.9660606976332176 1.9593265518788403 1.0162818255596198 +1.8994066582375986 2.3228285232282317 3.5676069167431024 1.6607048922538814 1.9533462076020307 +4.420488471945635 1.5563734980957737 3.668583847016267 2.9274891203453204 2.95844147775995 +2.9909066915484384 2.904128452950323 1.8636653658423925 1.8439384240842411 0.08899221834138601 +2.411178171778782 2.3429696216705613 3.3259950941916876 1.1071467919438107 2.219896437831313 +3.2027541101321315 1.4124614926309627 4.478694933409387 2.5683982410912245 2.618087299721096 +3.2292907454342186 1.0095692394769564 2.498488736188117 4.541040183699197 3.016484705702779 +1.766398307150236 3.6579223586919376 1.8034273476321823 4.061916671815977 2.94595269225643 +2.26343631451098 3.4334701944207073 2.5887060372812907 4.6130843634497545 2.3381802513059684 +3.828682174759636 3.95978060976961 3.870104685033545 1.6974994006045039 2.1765570338475073 +4.101197363543221 2.945215883058365 2.413065262398296 1.470764510906486 1.4913832134920892 +2.115141365383452 2.600821172419231 2.709011241584766 4.445195514033609 1.802836848652986 +3.4481648158425986 2.379785144489772 4.886907174172578 2.6310840860088085 2.4960314355497806 +3.302874852748862 2.566063927501828 1.9167925844020028 1.2873962693607273 0.9690356345103758 +3.884345549779196 2.9355905449853097 1.3438831475952893 1.150103555871913 0.9683421860530119 +3.405436867407754 1.4443767511047376 2.4546609879764136 1.452024549529848 2.202506891579505 +3.208979974812545 3.0039154134986807 2.351155403209068 1.6703526460886127 0.7110160816814631 +2.6607032148893737 2.707637739298822 2.396151420402832 2.453664149331518 0.07423317028367866 +2.191934387592159 3.6631088392850293 1.8974576199778728 4.8229723436311716 3.274597786847425 +3.9899985379570344 4.567666059901825 4.568578433156318 2.93770216737334 1.7301610214670966 +1.0905702311375989 2.7549687534614855 1.5967455366807641 3.387646415099192 2.4449025333198526 +3.2134205574715717 4.162577443905095 3.2375854200473717 1.8133191593367424 1.7115586979308708 +4.863166670132138 4.6336003255566744 1.9971613730523678 2.4450642830245095 0.5033067884732461 +2.691454404132362 2.1263032233797414 2.6033401514962344 1.362990732092932 1.3630343133319098 +4.169710349781457 2.4380880413714476 2.332277449443661 2.245996013258065 1.733770545722086 +1.055831471212299 2.6095927927960982 4.1218527060406895 1.9804327946297864 2.6457236215139543 +3.369593183958745 1.44779958667612 4.815516088513894 4.081527097007513 2.0571899450972064 +3.3188772372971984 3.3086828196000444 1.1617434378366647 2.558436150311293 1.396729916351733 +2.350837126175969 2.187480103646119 4.247006791816089 4.281196105831267 0.16689645293608354 +3.0838998038090177 1.1902119341409279 2.9099879942032616 4.910346962856881 2.7545398438216573 +1.7808686033077037 1.41010877082025 3.9554070516448006 3.7971876185025355 0.40310822667118124 +4.192798836150564 1.3430093214430179 4.864709365524577 2.1720674332201444 3.9206658686683844 +3.54348983326823 3.391966416357102 3.760978293788851 4.696529055602445 0.9477418286656022 +4.662928944789865 2.6434316591376072 1.2975883821871976 1.3064202189306182 2.019516597628526 +1.2917516924152563 4.0096697462504585 2.531785046628612 2.8457844711220366 2.735996013510534 +2.1435655308077872 3.0165679046526432 3.5221198177902493 4.775274283463945 1.5272620140554405 +4.0330167105591075 4.0969475133926725 2.150862570381075 3.020209014659235 0.871693975962909 +3.313260484155155 2.7649037380609984 4.477717693926765 2.6610837384491064 1.8975916444750107 +3.999575389988966 1.1709277461151881 4.027591189082189 3.0002089768189943 3.0094454145685203 +4.896946385853026 2.788178218534042 4.970204894345085 3.1612302238803545 2.7783614850988787 +3.195430408427115 2.0248173394090343 1.5482094896776792 2.735726077891358 1.6674923102187265 +2.220370374899036 4.4432786754734614 3.6984794926292253 4.287385804277205 2.299593867764808 +1.1132031075752145 4.560814640247485 3.971740478034816 1.4987851100280865 4.242821411792882 +2.821791786967507 4.307001072614373 4.5735464201362275 1.393727983443985 3.5095714713479724 +1.625545138966657 4.4586570382295125 4.491515125661218 4.203553301942217 2.8477087361007194 +1.5203854824552199 3.2147018902173614 1.3737055939761809 3.668995250618328 2.8529042566305014 +3.4874031979381406 4.649812144885296 1.912164736288085 2.951822241953521 1.5595134783095883 +3.700113657137055 1.6128129097063932 4.297727119365622 3.714953721783407 2.167129263139169 +2.498827353550255 3.062093361006896 1.9605329270857812 2.4593829349146623 0.7524094134625239 +2.311805601132227 2.277156131821585 4.644704486954893 4.481362626926705 0.16697649224060662 +4.691926177012693 1.2761106553465926 1.3331239073037402 1.2619043544360258 3.4165579027386217 +4.099906897417673 3.5483456328750425 4.153733871840073 4.352807381989075 0.5863873216457796 +1.7086386075632989 4.283539069663801 3.459086595189879 3.1653114273422034 2.5916049542646946 +3.017547448675641 2.9298768570899476 2.120876898683606 1.0140564544605137 1.1102871828401826 +3.6243330652035275 4.305099753144216 2.900966881010247 3.1142793903506507 0.7134041701944517 +4.466007059896903 1.180168194265803 2.5431296004105977 3.346083699765914 3.382524550770235 +1.7301117787003681 4.555798710665455 2.095820937410932 1.5722106757144676 2.8737909359645673 +3.096819829904241 2.7287009271144527 4.553002676971568 2.730159472870473 1.8596421358231006 +4.868328843957519 1.478539938408593 4.241200459880317 3.98729232306644 3.399284949239013 +2.6892139319373527 1.9837539350402347 3.632709819835904 4.085514530980667 0.838275559501155 +3.1247334884020557 1.8166170925291159 3.2604262224058105 2.8942442715457517 1.3584026377651395 +3.9447166543982397 2.6059327326381987 1.55168496212351 2.5453726854355927 1.6672605317179274 +4.11899270559244 2.829840133884018 2.019311257294449 4.64856573838405 2.9282919047581624 +1.7297412913634749 4.603549790935861 4.617806236436929 2.798004610480878 3.4015368952940634 +1.8328835095298777 3.744466211116036 1.1489679172673406 4.968703386848841 4.271361314918517 +4.497015312622784 1.969282039556953 4.985860928342065 3.932620471493032 2.738384735516114 +2.173850278389131 2.955661454889104 4.841082222405901 3.822734213658637 1.2838463235994364 +1.7465649836820352 1.0985651206193712 1.9731367217270632 2.593988126241343 0.8974186810049061 +3.0063908619400945 3.745795901264798 2.532533990105614 1.0632248347289073 1.6448675345609376 +2.303153041263879 1.8024183626738015 1.2009430874895441 2.46590527412909 1.3604648293765662 +3.4657746719502636 4.7483701385678945 1.2717923438807883 4.809243473589797 3.7627930618182606 +4.7036782079686805 4.253556770648795 4.6231336644113 2.2650348764394064 2.4006747389368335 +3.9219030844956495 4.811315805153922 3.3840803526887244 4.719870069105765 1.6048019049572029 +3.2027170605910427 3.224634942664681 2.1640962591941606 2.995493126422108 0.8316857245324337 +4.101791940261291 1.2326147059548118 2.8491690964829366 2.2342071649229993 2.934340842358042 +4.375107198651735 1.9058472027243374 1.5756131469942267 4.840286982288973 4.093328740566225 +1.0083811917323864 2.352575258461184 4.161874976390811 3.636195284473089 1.4433283851998526 +2.0236347381004474 3.762171716354661 3.694924066155887 4.6645399132715895 1.9906445478123895 +1.3829689731353727 1.8286174878945283 2.4465760907971 2.2250024547272536 0.49769214873077317 +4.356699143694568 3.012652671293107 2.3526131102871988 4.4545640764088485 2.494926608931523 +2.8760951334402645 1.8217074970536666 2.705615715593658 3.581631363049843 1.370816071671541 +1.5580235833260296 4.01482525460315 2.5888388754149907 3.2470763130225015 2.54345257008228 +3.7081824394216034 4.634656909618762 2.0992182629105516 1.533575596939094 1.0854983046943942 +2.782685822960127 3.742540526487903 2.4535459407893985 4.148357840346163 1.9477444459588644 +3.4689646770828215 2.8980952656587333 2.8993286163864123 1.8988760159017488 1.151866871958826 +2.116858449129281 2.0156583773136667 3.537199235250834 3.8840678509514497 0.3613298923332345 +3.3937639561510546 3.9311648448752554 1.1873389719542615 1.830803184350883 0.8383590566319215 +3.6482484269883546 4.259325641260641 2.674876404657864 4.665935022544732 2.082721724490418 +4.525106507487408 2.8285181719123047 2.936438689512717 1.4276414237874646 2.270436339003914 +4.613438160227805 1.0898276706149712 1.273372374148599 4.490978072006396 4.771668189364863 +1.109041007667173 2.44709212090286 1.990404759294444 2.076071947618521 1.3407906804518797 +1.271319494478162 3.8971587776043974 3.590221733052035 3.9884200493299544 2.6558602824500146 +4.3491022089411455 3.3097956102650192 3.4684763479489407 3.5475149513217854 1.042307683400093 +1.5907136671460398 4.597750447847407 3.6432007467879384 2.8808759435278044 3.1021620373791636 +3.420745779842325 2.2908373367270833 3.4792336527769394 2.067254171705674 1.8084189627377252 +1.7394795266896015 4.480734419294889 3.0890872411495542 3.5915790451882166 2.786929564836265 +1.817005063005651 2.215684223784036 4.345326345651914 1.2015288545290361 3.168975818530249 +2.6497238906677985 3.1079934672067973 4.605566353049863 2.7763156352246354 1.885780791461548 +2.358031039730102 2.7355805019592006 3.1919129451660124 1.0753743208289643 2.1499486842108686 +1.5266539756626445 2.226611021798747 1.5034978010235287 2.2289012160226007 1.0080426483675646 +4.190384042690049 2.6546335905509593 3.7274591694589105 2.3690987666110273 2.0502859398802116 +4.299723304361223 3.9669383843751542 3.7301532543957654 1.9282566160720744 1.832369312713011 +1.166926368729074 2.126333487002207 1.159813707832022 3.011322343684199 2.085316821787123 +4.16999137407872 2.7573937057647044 3.8152493661866997 2.9847798017222082 1.6386310963813773 +3.49846044131276 1.842769005934478 4.767183844500641 4.199386348744397 1.7503451446420666 +4.714182367745742 2.7107773536078277 1.0829705444870847 1.4999961830239301 2.0463484634514235 +1.74277354904185 1.1813597433726466 4.916301145277096 2.0966827058481146 2.874966713748857 +2.357061048595637 4.3362929219415065 1.839729115919361 2.6141580557021955 2.1253467931707912 +4.105160752111821 3.3929431274060153 4.342533490998694 2.140559548552506 2.314291076799456 +3.234878922066853 3.263411536941586 3.1583066373048334 3.776651817902869 0.6190031280053496 +3.6715770920482207 2.1471505474761297 4.2047319122115345 2.1032243655416 2.5961914911089843 +2.7372111621524837 3.7837608377212457 2.238116931291619 2.5182133807065115 1.0833837013763454 +1.3747945048205068 1.6637943771820054 1.7503887155209026 2.599145323880614 0.8966095618825638 +4.049199047552588 4.885349301632344 1.7068949799116062 4.785729409787547 3.190355574851673 +3.8899470894708883 3.835220688419137 3.3539425965469642 3.133565537149913 0.22707053371269603 +4.447298677753119 1.892896928108788 3.3650007167148144 1.8217484935167385 2.9843920189867528 +4.954208162428957 3.9359795528893353 2.9969309125502095 2.8953977044831327 1.0232783070237457 +4.89175710029542 3.50550381624129 1.8540247485201635 3.3910617567465993 2.0698263048402232 +1.7237829260852182 3.3508959884568017 2.296408379138679 3.481957315051835 2.0132121590098366 +1.4414550437747105 3.8131591898487702 2.3472042816020964 2.965928835476698 2.451081522526782 +4.660083655819179 2.6610874650240604 1.172057492211604 3.1824197311297424 2.8350559258119308 +2.716443223527316 4.020492037916188 4.478639002643216 1.9278698314903595 2.864780388583539 +2.78107999292548 2.4647865115620586 3.4554196827868666 1.722637273910479 1.761413194813883 +3.537451813810977 2.9359838269810017 1.9245450723786321 4.632701425393497 2.7741439349024555 +2.9400730641546153 2.8387797883335026 4.928477506992207 2.3015949557421944 2.628834773390741 +2.1340866180254183 2.9985759180721807 2.6349486422987463 4.659724985715273 2.2016041857596793 +2.565769390408705 2.7098025105984336 4.493278140027983 3.994047638167527 0.5195927575509802 +4.2456935061465 4.010949651387824 2.4306387010949697 4.88397669877703 2.4645429613251992 +2.296116966058065 2.8365938517527733 1.3858391091613775 4.415429867950348 3.07742350509477 +2.657832081657868 2.140919424453766 2.502698171623633 4.111131618429794 1.6894546007462148 +1.4942161129223606 4.0908538434481425 1.0590503824706596 4.8398057067149995 4.586571521887782 +1.4243572069608041 2.527300692309974 4.699898299643641 1.2789579526826662 3.594345168363724 +4.604574260994498 3.528617954154387 2.381248620793318 3.4093058824188125 1.4881477438110513 +3.319676512627331 2.2769195762650667 1.2501102846758534 1.6947851065265902 1.1336126876140722 +4.587896735385274 3.7638086290827313 1.1493988984371342 2.0238634459241696 1.2015862231904195 +4.705732536578601 3.328748611440104 2.725927138296683 2.31301687718414 1.4375602991950813 +2.0160945499285203 4.880546355166848 3.049624628688749 2.8227392268470886 2.873423242423915 +4.0762288591774904 2.290045761232295 4.459368577044369 1.5616205919095716 3.404026064050902 +3.2288743877886597 1.152226506147302 3.583935401868377 4.204756893383192 2.167460668305706 +2.4698442437697623 1.1517512570127217 3.6744607564076803 2.6854870447373305 1.6478586480985329 +2.8328221535784275 3.663951608542235 2.7848415632155614 4.482053556771934 1.88978959727797 +4.8580205361352355 2.858013378560454 2.0575512781691216 4.530164287540471 3.180226992600182 +1.233759733295054 1.403792270430471 1.1588177083230455 1.8060323753391234 0.6691770235785442 +3.952766015893204 4.4464116125217 1.3601478717054771 1.0325098317681118 0.5924800927328298 +2.313895993795948 1.952390707232944 4.4793965769833495 4.914950265114356 0.5660327618234848 +4.18092873886237 4.966131611542055 3.6397306882550517 4.879062091555849 1.4671352625003442 +4.705520211111006 1.0102921042638866 2.4062471450652003 2.5935446095080836 3.699971770408482 +4.912880720912275 4.17969862398377 3.013350271038221 3.4209582487139083 0.8388684346912475 +3.8078115715666923 3.873461259201366 4.702605510915699 4.8601500553607355 0.17067561328708986 +2.3656344950722996 2.7882549321708936 1.0289057650301743 3.064160338481812 2.078670058621429 +2.242782234791024 4.157876988082637 2.780896220045386 1.1859141783006426 2.4922992652515257 +4.526635200592684 2.8241375377261497 2.0218625600393736 1.3029223910570584 1.8480728499283605 +1.767068717761116 4.929455229840173 2.2575918398484607 3.8592717806970223 3.544864889483969 +4.575686022092901 4.3080279133986545 4.3674805799980625 1.2713511205537933 3.107677346956798 +1.6930348605922356 1.7622771657267604 2.8411811273837437 2.960481151882821 0.13793836546016885 +4.329440673428056 4.38812119305271 2.216150159316707 2.593454675212242 0.38184041312907613 +4.871128296239842 4.65716990976372 3.7699421829171764 4.365739548061015 0.6330503072077337 +1.527123789060489 3.0872075520075106 1.0398652365910257 4.287575352994702 3.6029824239928954 +1.0420251121906046 1.6969361033507142 1.129068680089592 1.007960836921276 0.6660146515049039 +3.002063492485005 2.8691862241598076 2.8502621341681134 2.011283316769674 0.8494361803460281 +4.437406579136168 4.495631611813584 3.804943425206884 3.947207623722821 0.15371810761802965 +2.632280787148395 3.49846218753444 2.7252514793931755 1.4751391631734894 1.5208717965492284 +4.144369746307716 2.5194262076325047 2.0570170962956587 4.147515583305481 2.6477585668018664 +1.5431039265908768 1.8408699845719387 3.8982859514558896 3.678628332511351 0.3700190465989085 +4.282047192557245 3.3737840784421533 1.6438256825851307 2.6740716336379435 1.3734440666160233 +4.133239245788474 3.677959603869615 4.250596859794689 3.1936781847354276 1.1508069508109462 +2.595607822199657 1.0336195998177007 2.7326215155305564 4.364957004629674 2.2592756263529243 +1.8385658583887685 4.431735850800836 2.0527408539274172 2.4612557604584033 2.6251504791924636 +1.3101095309192075 2.9427414575869 3.1868460129396508 1.2308174292133214 2.547849059173069 +3.1536185104247934 1.1786831452601665 4.077491415611881 1.1270662763839865 3.550405356965016 +2.4089476202961575 2.7010658047163356 1.3877526171362784 3.8009672358295576 2.4308306871404866 +3.3621634900319064 2.4746332396016477 3.4134354447173885 2.6884040582777415 1.1460281221468323 +2.7483274700838893 2.065782686043784 2.1381559486810287 4.120383911347645 2.0964482054650904 +2.0689747654407658 3.1019118692880054 3.384100578821548 3.3589915527742673 1.0332422386320481 +3.0739716651605313 3.1552501700555506 2.115829974908264 2.394606289322994 0.2903832447587671 +2.688334041616558 4.135392767667508 1.1668925534818344 4.589880636554367 3.716292019405468 +3.76791152506657 4.55775750186778 3.6148086856751656 3.6427054118920217 0.7903384682543774 +2.6686372451374933 2.8023877693355557 4.857343299509414 4.241564472624899 0.630137101242679 +1.4649910450117578 4.875267396129907 4.758139972009671 2.651274852970145 4.0085989348924835 +1.62352817322149 2.4951768526526346 2.5197655173407014 1.456866887199339 1.374599912087311 +4.003356765142284 2.93507806914933 4.099126713226693 2.687417193507816 1.7703511347688368 +1.1198733923620363 2.241835809528873 1.1819200668292935 2.5117364277051943 1.7398882777891442 +4.9182558797839855 1.8214876679669931 2.109051301582311 4.88478371635022 4.158685344686887 +1.7534163959977054 2.7024721824962925 4.9075056100238195 3.431152141069726 1.7550858814255321 +1.3731741030477083 4.453914566305171 4.445623890187058 1.5877019783502786 4.202223156390983 +3.8281484940855677 4.262722724284117 2.701097523391464 4.300440260881626 1.657332782972444 +3.9978940205816587 1.601573583867093 4.38202979467809 4.8605156528433575 2.4436244293835414 +4.782290723684392 4.856929916775259 2.533347625117318 3.6337383231773153 1.102919170892511 +3.085568961354907 1.7849806377484319 3.9022892833965224 1.489864562418544 2.7406792993502864 +2.223610437712461 2.031256649407603 3.5004476156367432 4.125742876422635 0.6542126130215818 +3.2274765786845236 3.043529812352632 4.980728043754873 2.4414149475514932 2.54596689165314 +3.6598571094424477 3.021206428136581 2.3337344757240572 1.544543450287327 1.0152325681154666 +2.966528158180912 4.282087566688156 4.589946303659392 3.983530449721145 1.4485982000608664 +4.341739293947358 4.022195915094559 1.4186020533296024 3.808227323021611 2.4108954561571654 +4.437982528142127 4.592406473680823 1.46054569685084 3.045620614073505 1.5925794322934654 +3.206774829458202 2.889392267946067 1.3512129666597046 2.673762703535604 1.3600990761200138 +1.1659979212067322 3.9704680937240697 4.652258394625892 2.9467699243193493 3.28233817131751 +3.027486359952246 3.9565898402668878 2.184128215892674 4.895924687063067 2.866543803639668 +2.895054635268832 4.845907482660344 2.448400839411944 2.5904056915051155 1.9560143686061136 +4.047332492636199 4.680460357865711 1.9107306536467679 2.9636525303353562 1.2286152254223037 +4.3057367152132935 4.220748071901092 1.899123037395679 2.908428668597901 1.0128775477166845 +3.8287044383227666 4.106506548605092 4.529525492451491 4.125370229098628 0.4904237854887695 +4.228725207994033 2.318413753782371 2.46873883799309 1.1306334380437666 2.332341294379066 +4.139810548567864 3.9712915789717544 4.49686891406666 4.086725683722287 0.443414154612876 +2.649548205095177 1.3296520215430565 1.7945975231503106 2.771863701303783 1.6423078634403927 +3.6153626737727476 1.10355670131881 4.588729528356806 2.678561151129314 3.1556160210987616 +3.931104997639135 2.388828827307937 3.793173836330381 2.981616167281508 1.7427683827070957 +2.4637196014731173 3.301303426636736 4.013248774763774 3.487984100548728 0.9886605292788612 +4.97603603573174 1.2923202014104458 4.342999277630275 4.736175104929184 3.7046389269673243 +3.4791984608988447 4.1550408929178575 4.661323388871735 3.948341157295349 0.9823984199198499 +3.4167127661328918 2.629018293778934 3.6585054590423676 4.007224591705403 0.8614334653716673 +1.3916559758854419 2.5504481286403458 4.942111934805627 1.607039751027263 3.530652308610766 +3.762272279616558 3.880040395045156 4.522990214741596 2.511434007085042 2.015000671358008 +1.4248291900312844 1.116802825112127 1.2272488922873164 1.061555429576814 0.34976358454005274 +2.219201865599183 3.4859117673838 3.0333416494144276 3.2165554469281084 1.2798911168058702 +4.381068484003365 1.91391653211006 2.684913578657714 4.529828353586794 3.08067351085482 +4.0740084977616 2.328596548670204 4.4882848740225105 2.755390818685206 2.4595496902999123 +2.948355028451588 1.9983370418031203 4.66586625178793 1.8087801087980377 3.0108927917513886 +2.1424201758556247 4.3245743532863585 4.698872606328723 4.404171886194357 2.201963979843021 +3.805882568117123 2.1253829305294984 1.1880557932633469 2.9776607507763524 2.4549470332142125 +1.7473702958097217 3.672158394529159 4.073374673598711 4.887343361540724 2.089821583275 +3.568247480427884 4.692381243244618 4.3804161800106485 1.9690340529457577 2.660533871130474 +2.830408477634196 2.8386372195403498 2.6906382140390996 1.7174773319843855 0.9731956712577731 +2.3808755837975037 2.3737698669609104 2.696353962606012 1.8709229491646813 0.825461597630407 +4.346477705428994 4.467109300346704 3.0290423529702113 2.400202351027862 0.6403059657189244 +2.1156846204521607 1.5295734403343273 4.59566933738761 2.012431235653675 2.64889512923956 +1.1685986948672005 3.664191421617327 3.785232620835956 3.4520619710529417 2.517734247232016 +4.439730297573608 1.9718280209842827 3.016882467703576 1.9307324526719647 2.6963426158312944 +1.6782554542611594 3.169510494990835 3.562816300213585 1.409696441417485 2.6191156375471096 +4.65684839173035 3.7913301152634897 2.6919990929160424 2.0019083067270227 1.1069540099214343 +4.2322954841390885 2.7508239647152632 2.390052698610081 4.619927963421393 2.6771442918679704 +1.0755095885530728 2.806291546369763 2.7604244975583803 4.208203565060591 2.2564730031182174 +1.8713723665396946 1.4662832857899777 2.67242027226087 2.510966432167245 0.43607855464770173 +3.461589272715989 1.6752776847340791 3.324599798640173 4.2593930985995385 2.0161219216623216 +2.5930718271322686 1.6387896351339633 1.9085485122892023 3.119319068158237 1.541628956955759 +3.5312253674189966 3.960732023790393 4.627257541859927 3.580392566117492 1.1315486049231585 +1.1801292396412588 4.801417657431709 3.3881792427584947 3.7715269530974194 3.6415223838177018 +3.25256947306792 2.06615454814565 3.054273212745954 4.137623573748015 1.6066201725241758 +2.178675822470591 2.976193376844284 4.843097440235583 1.1234653970852158 3.8041683435364915 +1.4117820387749194 1.483801764329824 2.345094300496558 3.2030196797392985 0.860942969782438 +4.509476770943964 4.37214765224486 3.55019355290807 3.5687532292636455 0.1385775899238269 +3.9476877913677617 2.743627541634326 4.3597443429250085 2.0768628797148754 2.580951154139997 +1.924670527764694 2.1534175767158215 1.6406491037688444 2.281159633519743 0.6801315689817863 +1.097527568091544 2.389699745282209 1.264367856290792 1.9614625792357074 1.4682131957802695 +1.7763480357130965 1.2305001059963243 2.1579647390968955 2.492913100240762 0.6404220225828031 +2.9549324706033 2.5426920361167293 4.461634714291881 2.964929216847742 1.5524398609624734 +1.499651293724984 1.1006672762100909 4.551745679120481 1.3852298210597027 3.1915530585567136 +1.829040631765945 2.5925843776262845 4.95627714910823 1.895914752520576 3.1541745434091255 +3.4571747442176974 4.840000882042059 4.406090377506789 1.6831363062742835 3.0539625082001116 +2.620489996331911 2.4922943462919642 3.391669892921746 4.029473052335362 0.650558986447159 +4.543578080860924 2.4276469285042315 3.742465555538733 4.832887967638225 2.3803751129438395 +3.1954895661251266 1.429781576844063 4.938841013256126 1.2636898834545214 4.077310453018385 +3.112791731823676 1.8767203968785702 1.0568139006788324 3.7238299136549804 2.9395317243643015 +2.6773746589509235 4.819615406132495 3.4295853024733414 4.04556880124699 2.22904263971026 +3.575774518246861 3.5579840704027674 2.3248035046623365 3.6833016957277147 1.3586146750136325 +4.319785610129332 2.5074828577608548 4.549828468635596 4.848903894675378 1.836814464420192 +2.0617761137958523 4.715765004791803 3.6820909867484364 1.7558528326173444 3.2793368933307647 +2.867447681302082 4.04058814658684 4.707308221466814 1.2795418690882343 3.622960214767379 +2.92802729483096 2.225146756478221 1.6406200265306716 1.4804885536374326 0.7208905185990409 +3.9524386476489246 3.8192750742997 1.781583823066017 1.6729952649247766 0.17182552844768995 +3.110203858492616 4.9289081776581565 3.785702013038926 3.132025295577205 1.9326092857851334 +1.3471159396980172 3.455070307853943 2.8871198267587665 4.309101055342241 2.5427351872877786 +3.7534701378905426 1.1013085804127432 3.9792025302385126 2.9816375400920356 2.8335660988459415 +3.288432988504505 1.3267856797226045 4.991808199415581 1.5930341543884063 3.9242483577370146 +1.6628181829540645 4.6224488778012685 4.1005745187535725 3.081879445527748 3.1300404952805825 +2.0082320489823426 1.6893175455529565 3.938348952097693 4.012716541422426 0.3274706075964438 +4.831459507285636 2.7648679962167027 4.143090658827841 1.6784291009786294 3.2164199148061936 +3.4773622352214044 1.5855022647272063 3.433496259672138 3.3891166070007683 1.8923804325583002 +3.589495624640407 2.355931347674985 2.1430678068327134 1.2343570746136363 1.5321344654616174 +3.868833929368175 3.4603815780306464 4.463886709998669 4.24677444942397 0.4625700563212147 +4.005395463063429 2.7740159347077045 2.935289292649838 3.2321133264008215 1.266649142369651 +4.257946835514549 3.4217720899178516 4.191288619339973 3.5929526926877973 1.028199438969123 +4.2410642903537425 1.9551546821974997 2.003841924330357 4.331279823871878 3.262261472182031 +2.4219524266309365 3.7043722515042714 2.2395966309892157 1.2051985344144325 1.64759826093186 +4.568308541692614 1.2232783491764385 2.3681951411962867 2.441588197199754 3.345835251400513 +2.2613785037449334 1.997558342250779 4.479995997871184 2.586908931020083 1.9113816260207446 +3.8652541081143315 2.143602502987582 4.900009493730938 2.6050499871639934 2.86895858914302 +4.478253601752543 4.711621215611242 1.9370587195797833 4.192551037793947 2.267533029686934 +4.23667676131247 4.388286395308115 3.6935091676306913 4.481886074191086 0.8028222891263243 +2.485448705921596 1.6332618466698938 2.4295127434449837 4.701745407954502 2.4267805266948446 +3.217172842313128 3.791897878410005 4.790217725299638 1.9933854911329179 2.8552722135009416 +2.6681568936985416 4.29200942016654 2.860831482843196 1.906475090144709 1.8835320947626486 +1.7463477807102512 1.7005930148571529 2.2465218095716772 3.6981382245056187 1.4523373281383154 +3.1009389183426537 2.419652979822495 2.9799199136522505 4.246337831617839 1.4380420275393866 +4.190893881699945 4.493483342105556 1.8343159368193374 4.589808532552498 2.7720569667106103 +2.9557876733331043 4.107631425155612 2.8114515976801657 2.9878523022374095 1.1652730311737425 +4.313773438924631 1.1498509773432155 4.0360036361848 1.9181488779096507 3.807323747732532 +2.015346394441817 4.570299574521985 2.627606509046059 1.2223340102032552 2.915917788348235 +2.743905231641611 1.7742200405960977 1.985419011080984 2.5311475121263025 1.1127034495255885 +3.667389203868043 4.767131099710058 2.803318357662342 2.5271869148403887 1.1338786580516997 +1.2321281710001646 4.9147753139370955 1.0320810192834795 4.541843190484137 5.087270434896566 +2.4478291896513853 2.5489391217643975 3.9751699251046366 1.600442572194582 2.3768788818598 +1.136399748525525 4.168473538586909 4.719977253972578 1.1146579059093078 4.710817240128995 +4.234721767044315 2.678969176521932 1.9820468810737397 3.1312587114109314 1.934180434681331 +1.924078683061126 4.586516946130999 1.4089419599400599 3.778437625422817 3.5641390564062023 +2.0615059322982057 4.042727120946407 3.6120479663924843 3.5915772604067664 1.9813269412573344 +2.7667726331243094 2.3067068818760794 1.3282475668391989 3.993253291226275 2.7044252636165567 +2.3067030350294533 2.186996070906505 1.7257887061882533 4.970392850402002 3.246811637577481 +4.650038597083643 1.4612266068792867 3.2886514088019174 4.461586356819378 3.3976901420158656 +3.7345185174577016 4.988026025915247 2.110212696581599 3.9064707888687886 2.1903936193905102 +3.713969037803556 1.8640037424466054 3.698369425913846 3.1518338892657596 1.929008213265133 +1.9957264250538014 3.902656994127977 4.363302640965861 2.0509621778251654 2.997215810172382 +3.548614545858883 3.528584126049942 1.5029628439824192 4.607709777902224 3.1048115468417974 +3.512001682472893 2.182901001339549 1.4763944213557796 4.286845786414537 3.108881711475969 +4.233891770852688 1.4950724990539652 2.3364598696249317 2.9775098718221296 2.8128412875406097 +2.603178253357417 2.5890445867434573 1.6842443339392426 1.909889215224732 0.22608709158706336 +4.641174126975673 4.99643296665818 1.2629077139643847 4.591165002839736 3.347163788063629 +2.9611535532481277 2.475313043179511 2.796648048281934 1.0781087474087596 1.7858942661505446 +4.206849167711644 3.545981403216044 4.822746050777033 1.596858678028692 3.2928855953109886 +4.44535627512148 1.8020477563510582 4.976908154590323 1.7736023543700523 4.153101007094471 +4.859837472546225 4.5440504554491845 2.347101638272271 4.279860748237712 1.9583868916333795 +4.536744905859823 2.252790261245437 2.1153877831439116 1.2977942334001544 2.4258829384861555 +1.6789995308857768 1.4978199836813069 2.429771315246157 1.5431015323022668 0.9049913437768242 +4.121223042260816 3.0670662085207407 3.5891428097586116 3.274725056982432 1.1000477959533044 +1.5207127596627723 1.7322354494008216 2.0275015272948615 3.4643811532546813 1.4523652804210279 +1.091127785977695 2.2336051964538566 4.86743509108684 4.183748109707573 1.3314212413642081 +4.648264173847648 2.3800097038841037 3.9190461466529385 1.7224812458845307 3.1575109982068663 +2.3015212932952 4.440573981118405 1.3078031492814453 2.6001625166766447 2.499147681866319 +1.0210962573837072 3.4393494456317923 1.049582832534666 4.3919793448568365 4.125477296999152 +4.418572826371653 3.1520245866082273 3.005373365512014 4.10142552587964 1.674955158174204 +1.030463761079944 2.818958087158947 1.3536853257665897 1.117556085566624 1.8040146818954108 +2.020192232317255 2.328401256777305 4.869860593319093 1.7187097522760522 3.1661876801233495 +4.411524803735055 2.506273929460104 2.004932557449264 3.5601562626672756 2.4594108374156414 +3.0724593215626856 2.1021500234072668 4.9488081706266085 4.960852548435714 0.9703840482631967 +4.998123217970094 4.151933910695874 2.5068337211241065 1.2662062811390227 1.5017299319748432 +2.969240572629853 3.709027234567072 4.185343693308335 4.050838262638326 0.7519148994799462 +1.7352139832990825 3.648495169721585 3.7264466969449344 1.196055104483106 3.172306181553068 +2.8002443514985154 4.024249501167927 1.7697028683139844 4.243150413410864 2.7597339300669943 +1.4664961040979967 4.951387236344258 2.469928735207425 4.909713399315941 4.2540586985639655 +3.1449892515874867 4.543154795715657 1.7147087156259202 2.7413010041577617 1.7345773593761298 +1.6263765146229585 2.403986535985504 2.4472090904499826 1.3898119247716907 1.312541851259587 +3.989299566960069 3.4138538066642896 3.821308990983342 1.7832187753872448 2.1177699473623037 +2.7377730396245217 2.726457910140638 2.921276773301244 2.106560494300314 0.8147948499004878 +4.109923289964566 3.717702835678311 2.312850812722252 2.686093311047115 0.5414303716234451 +1.7142338591737492 1.6349824024398183 4.13186978280266 2.960450878298713 1.1740966924507015 +4.533695877311491 4.361090302497965 3.6564289874485834 2.468760398507785 1.200145558510856 +1.9064992754075152 2.924533417910901 2.813349719392191 2.892298657283551 1.0210908138342922 +1.4181161434810265 2.2755211680079306 4.064391262053501 1.2473092890560298 2.9446721750767617 +1.707271901570563 1.9522101651890043 1.6269057623313041 2.768852869341069 1.1679203518187309 +3.7017485590721186 2.1318564816137515 1.3675086087364812 3.71631449026714 2.825146050026363 +4.257256672414666 2.0595508937884985 1.057963756773006 1.1182619575043837 2.198532820409623 +4.76712592090586 1.4623186224043803 3.879168489189153 1.835248010156823 3.885789778775532 +3.308387436249231 2.603997542975302 4.683618741979979 4.674154112406334 0.7044534767885126 +2.257217671811693 2.6760890307963088 3.4182054002111255 2.871809838829564 0.6884775413004338 +2.400534433595116 2.71289717872508 2.223930025488623 2.9198520271213697 0.762809227069033 +2.404068627153699 1.133505309029696 1.6435739727761276 1.5535252651630098 1.2737503346830057 +3.458106206994607 3.7639933578089186 1.1744901935388272 4.449580053111835 3.2893434811997424 +1.1661306543247822 4.21185520209886 2.785959287436097 1.9841127905704283 3.1495072353384677 +4.9379290025452445 4.731319717359133 4.195756703513895 3.5427997675062097 0.6848650648161729 +3.481544191399119 1.554460027449124 1.1411956277859687 3.8806111720346985 3.349335889250049 +3.541606076045498 1.8805699228598156 1.294088360761803 1.5387891033352288 1.6789638339183712 +3.0045913734219583 1.5588796964794027 4.210564226044363 3.477371398964059 1.6210040020092689 +2.0897903822481365 2.527536867199127 3.877908025336279 4.855513527419445 1.0711370140137195 +1.042351344900128 1.4916454523148714 4.361048794535565 1.5065304552193917 2.889660904751624 +3.895495577893383 4.017489976160565 4.5139266129286675 1.969218970728961 2.5476301963743015 +3.0554711814463964 3.5795741459597146 4.967576883387585 3.9055103166835208 1.1843434086117954 +1.6338329032124435 3.294220383127437 2.8560475707252975 1.2089992344547693 2.3387293142794396 +3.9531557312494914 4.266074365508448 2.61446879660558 4.329520795142916 1.7433649730774685 +2.7028517254729922 4.6641364866717 3.4220034400152692 1.7176100946965875 2.5983830722349004 +4.432492247922289 3.6129203248573787 2.8468509632205534 2.4937378919286055 0.892405164817835 +2.9876745420555952 3.135539912341867 2.56343811357729 4.657274419867903 2.0990508915389867 +1.4013417073767527 4.46357627556001 3.0163752714115373 2.2045939929517266 3.168007164549087 +3.541585363677984 3.2657285536038576 3.0924271811639663 1.8800569653191084 1.2433577602331438 +4.207402167475626 1.2657543657120023 1.3297581534689558 4.84054828513396 4.5802771901072905 +2.894939445803997 2.9965646115474627 3.419795124325247 2.201576152294258 1.2224504644886953 +4.887604262452812 2.370808103882562 1.4206216794675997 1.125645765789805 2.5340232227515234 +4.456929299887902 4.964367875702319 1.424990505969097 4.750553443478038 3.364054511977721 +3.771236745621509 4.883195099933257 4.969861854140987 1.997213529724506 3.1738130761561565 +3.7680882058791756 4.578552619267683 3.6775518615554326 3.2809397815084034 0.9023046644057693 +3.0843813819977357 1.7313317374818982 3.2457365848036264 3.9762041208238985 1.5376365505879346 +2.374567731717076 4.455610663710633 3.739107143533693 1.9465268111013847 2.7466495832237983 +2.3337069180567593 1.3881387173724975 1.7913176692653119 1.417255611980209 1.0168685484592568 +4.893794520609616 3.0921268650402793 3.590465104690892 1.755359758326522 2.5716955444569645 +3.620710489064671 1.2367107516148335 4.056993601818075 2.48243305059335 2.8570431704183266 +2.3261382853608707 1.7594713650780052 4.771038992006364 1.9862464431469689 2.8418622307785566 +1.9846115663878647 4.646461613293317 1.222447423198496 3.239079789281302 3.339498730669514 +1.2401459234528769 1.0147429255410305 4.184046546120229 4.965077115186431 0.8129054442452225 +3.979234758268652 3.7886066470297957 2.840302729357329 3.5442582498092627 0.7293095718343798 +3.3780482270752294 3.5709408272765035 2.500856658897724 3.862521208088353 1.375259211834237 +4.282339767145279 3.9264764925909037 3.9106278721367342 4.305184657664942 0.5313320310153669 +4.980949347244524 2.2119278443491157 4.339972621392505 1.707840565395018 3.8204187262271003 +4.252386104367481 2.7002256564137985 2.3176700074640855 3.7415968662360464 2.106364107965183 +3.734586892069322 3.103044805785794 1.4381611667493832 2.8951536347830364 1.587977474227562 +3.9964266664000525 4.709117983953226 2.8956962180694745 1.6086435596279216 1.471201366134883 +4.331289407632979 2.7440788984465256 4.913723716169025 2.612447275418867 2.795551905657206 +1.0659818490329989 3.8613850456137278 4.377941106254498 1.5937898449986028 3.945348815631712 +2.8595851762297544 1.8481831663066002 4.357910801859681 3.070118403422528 1.6374807745891589 +2.387693297002879 1.490072829435777 4.228928203371787 2.5953393899605417 1.8639567900296783 +3.9206108044760932 3.943854581776943 2.4513665246781784 1.6124668546857999 0.8392216212041567 +4.271805381466104 2.8809369670356286 1.9285797038876882 2.241054555055281 1.4255369089829113 +4.825337708228646 1.049760609248637 1.6104551326703116 1.5209340830146183 3.7766382469960975 +1.1279204032370713 3.24793281882203 3.666156693581086 3.916110528420569 2.13469659712694 +4.138206632741825 3.6519445338860805 3.757919905595738 4.736486779862621 1.0927231837002687 +4.182059058237874 1.8361043780913597 2.9622928565667213 4.606479442462273 2.864760529353231 +2.603391094813616 4.460903673352685 2.232061187741115 4.774298445313558 3.1485430365837974 +3.4966693097124075 1.9786711252943339 3.4669205758308825 1.779167707762344 2.26998419192076 +1.4843363822654476 1.2010595267362705 4.505461993776631 1.0784797209453005 3.438670277182547 +2.1842743287618016 4.0121242459762705 1.8096725722167286 1.787022727226156 1.827990244869769 +1.8201886633814786 3.292878877475716 3.462889849085339 3.2700203243954022 1.4852660099265227 +1.1584447913648637 4.139178041059891 4.333704125259698 2.377242716973421 3.565460972714608 +4.62753794122297 1.6398674004857061 3.9754633602296403 4.616058755366055 3.055574859213774 +4.672873196827544 4.1765515055236175 3.7678868109415933 2.3699788293375517 1.4834021525840777 +3.234183985771855 4.032915194673514 4.737961368263466 3.1922423849928667 1.739890433135547 +1.7736244690051368 3.5144781803631036 1.5413344724839027 1.9418305088034926 1.7863282787484807 +4.203492439319831 3.7187594816326888 1.8448009100892357 2.1790019362002657 0.5887753103874093 +2.7405089778617935 3.6529116721503954 3.683700621269576 3.8638291889002345 0.9300134286244326 +4.256977035752092 1.9113429027058082 2.091024056643755 4.024103283040788 3.0395385803834674 +3.35057172054709 4.51701448747801 2.8185754519172526 2.2471154775540465 1.298905397180509 +2.83361003415014 4.64417847749262 1.0615328376688566 1.21163084811656 1.8167794309623748 +2.3929447762480414 4.64650321934028 4.862829412355513 2.632259370575164 3.1707993263087944 +3.271577644556742 3.4509285619820558 1.5924567490964172 2.8388335235022204 1.2592147614126497 +2.2941505876591544 2.112060488039576 4.48882392579131 1.1828457815215163 3.3109890206355286 +2.301565116841617 4.16822580833005 1.562770994637174 4.092361170611211 3.1437634445887355 +4.500015166420009 3.482593316193993 4.110643422878933 4.888892298537941 1.280944391369836 +1.7796056768353274 1.8133442538927826 3.978295756240237 3.6170242443861 0.36284348810366646 +2.870925350322198 3.6637577870862854 3.1463583534767694 2.551387289719283 0.9912486264777347 +4.331802398720824 4.903947604306566 3.970940725438855 3.526350597044938 0.7245760957553533 +4.047167633365795 2.0779930474198736 2.807868859521596 2.4861392459457026 1.9952840635325555 +3.7400707898678753 2.1928659128486134 3.9890138361785983 1.3310551116990088 3.075481671626309 +4.566975367576548 2.185048022609218 4.951926446672756 3.9733672701188634 2.575103092833556 +4.539494323150111 1.3236090088520305 3.0302887604219038 1.9944886742047832 3.3785796088482885 +3.480663191059903 2.4760580954870712 3.1183500467595753 4.080293415319928 1.3908869265213966 +4.956661551325265 3.849433515039956 3.286187400121638 4.4244040955721236 1.5879203916249847 +1.7867055490649815 2.4953573151129373 3.067502530481214 3.1491930763709206 0.7133447068638311 +4.255840460019754 3.807901349300381 2.8692725189713246 2.293267182666362 0.72967910369138 +4.201522189724996 4.821748958345928 4.409265560239998 1.9543158104480423 2.5320860014062614 +3.976622539398345 4.7437661210556605 1.864715166718844 1.6872553246569066 0.787401594119965 +3.1216742446965657 1.5435754308030827 4.2669023808123825 1.7437374574208175 2.9760304260954022 +4.835338940953296 4.716624323731882 1.386729348362672 3.6517766853418796 2.268156211352875 +3.8127311185548347 4.350071931211519 4.862192708383905 1.6571334382423926 3.249790773890927 +4.141196672976621 3.4257617036233836 2.4874749936807805 2.6833680845103265 0.7417690330609794 +4.776510147867304 1.0997201425695025 2.8908390973699345 3.8807671113973887 3.807721394221766 +3.270853287220881 3.5617914589631487 4.000001542402915 4.986287403063187 1.0283019102943978 +1.6364768604582238 2.2454507586100134 2.5573192112645864 1.1361844879609762 1.5461154906440253 +3.0048787991019017 1.5147075736808095 3.6738231072943783 2.1112007437137685 2.159258884949938 +1.5380041506458912 3.6675868733162282 3.046003865916739 1.3435021770100404 2.7264692504090644 +3.2353678571924873 1.3586600043119366 1.1133437041365242 3.991738173147244 3.436158768784561 +3.3595160452977795 3.1436166148000364 4.058856147968828 2.520534667462781 1.5533980627886612 +4.681559700652727 1.1889998059681557 3.7513949213276847 2.7731288572967956 3.62697933685782 +4.719859791687984 3.233923783702262 1.2289572969207385 1.8628861308622024 1.6155096986186521 +1.0745894093763528 1.9908199121532406 3.111441614355465 1.6041392665582386 1.7639270681901276 +4.149000623477191 1.3159362605704077 1.0323715768215243 4.647257222226627 4.592782589425313 +2.878005376844906 3.7026305092449294 3.8404881236605686 4.567419802575589 1.099288986025043 +1.2065985817123512 4.168647593065721 4.2352509446863476 2.7623221089070333 3.3080589022763305 +4.824985563909253 4.905678178658883 4.027188569172042 4.959058389063456 0.9353569689159261 +2.2470641822508886 1.1931224709819666 4.362115735922565 3.5470093971082064 1.3323631165443643 +4.885855004553793 4.833629026516055 1.2946325285817597 3.163402117098588 1.8694992184398886 +4.044348064003488 1.0301876357310342 3.275606744455319 2.8943498364252607 3.0381770714170404 +1.986869901668927 4.286204258780747 4.101536207997812 3.3988530981526877 2.404309056393633 +1.7557486659977029 2.8109982443823247 2.8450960060053054 2.8590456798899764 1.0553417769056672 +1.9425281605377989 4.750694913360735 4.404536479120223 2.0712647308637786 3.6510214410315087 +3.335100258885507 1.1158951063822244 3.8870630539116147 4.328657054700686 2.262714469487924 +2.685804038039763 1.834245056426317 3.6122432128433144 3.40723483196725 0.8758887688490785 +1.649296469854014 4.077042718641264 4.76223168835625 4.714691114538023 2.4282116783055656 +2.6876881461590605 4.469650093766655 2.921789033768204 1.5965943733154098 2.22070467888327 +1.593466283965895 2.0142242738150045 3.7449649193263865 1.8708971299991703 1.920720532772965 +2.7787389968877387 2.8165654418787973 3.486039351418344 1.915487635378783 1.5710071714334952 +2.3485821186579248 2.2432205857619594 1.2112790380838137 4.592797061130083 3.3831590552028348 +1.0870811582615127 2.018367770316941 4.625913825263337 2.927625428492506 1.9368733134617035 +2.556611978901259 1.5843385422038714 2.470887512214008 2.6781653167531565 0.9941225900068453 +2.6367344350805526 3.9619196420577745 3.962278839050535 4.968447182308346 1.6638781709504546 +3.3019311020442053 4.790293741166588 1.1130437815724252 4.8940037406132575 4.063358408681838 +3.566184899189719 1.7232634164456364 1.1856779158868123 2.900093903238631 2.517058157700604 +1.678752662825099 4.08296827863118 2.8621020619046464 1.4105765104101295 2.808412212252196 +3.7065713760605834 2.663272493272368 1.6680334787782822 1.1541224796970329 1.1630034711056656 +4.797718041670059 3.0757978364287175 2.551852649676051 2.069485692654808 1.7882077827937999 +4.51252366614084 3.450428106402125 4.8795941845997515 1.031552045230248 3.9919262623926457 +2.2806321835392414 4.046886044602511 1.314289885412582 2.3033113102100407 2.024306320799622 +4.062323363564396 1.8499181955792618 1.587366685027236 3.72373302686532 3.075515854920271 +3.546265192197037 4.629803161261368 1.1962373100166275 1.730522831685883 1.2081041135057207 +1.2486852553367864 3.919821323371142 3.6354286166084524 2.596459058640511 2.866081931197735 +2.1475986199178005 2.510689367258595 3.1958255106840454 2.3889524331081042 0.884804528764047 +3.6325290852386862 2.1624113648398366 3.6004174716083233 3.757265626790903 1.478461178257613 +1.6788383913523366 4.838986226588925 4.378439491892172 4.80754778996969 3.189148518339884 +3.97727827434185 3.8305500707296796 4.296207838528314 4.5633551063691655 0.3047898102792909 +3.9314094230874255 3.9330128729402642 1.7074045342594233 1.465302313776934 0.24210753027112225 +3.6410533707848605 4.680266488529964 1.9004078894115288 4.304387214737631 2.6189846316251724 +1.4614973987195863 1.5505457781755059 4.052929171805139 1.0349537867613017 3.01928882994228 +4.907773478219809 3.6687122358371247 1.7055261853360104 1.8644998627321194 1.2492179123274545 +2.3267337456302073 3.32382698038452 2.3120332035857536 2.9200244941160176 1.1678391704997204 +2.601292630272678 2.7012731164809076 4.890859508179943 4.735696219755198 0.18458532904110966 +4.339781234095185 1.7730148684637128 3.5362020167047437 1.8485621303163886 3.0718753167838533 +1.6132808637986553 4.9151429158638855 1.2233575513147699 3.73772886484789 4.150223622069862 +1.1330645661492174 4.708489890697914 2.0710246453849037 3.289792302039743 3.7774410455137586 +1.7781634224754286 2.7046561174536246 3.7195339163402235 1.134243600967484 2.7462910859207987 +4.0428415462043095 1.2484850555476235 2.6219611688810507 1.8067603738583489 2.9108384587745153 +3.8151389510975764 1.6581489293182337 2.8444006744925794 2.584494920138289 2.172592220183558 +3.7598763818118837 3.1066227305100114 4.9021871591069575 3.760489633276868 1.3153758297253966 +3.975478192512095 1.405652975986579 3.88039276293307 1.2193435511733797 3.6993492064006723 +2.2766270069740586 2.8257060381405457 2.7415503670912207 2.8614154476553266 0.5620101600552855 +2.3523894862315737 4.4096704961741455 4.469211999319861 4.721800081071265 2.072729092986631 +4.3782933130056465 3.71442437297078 4.979599577022235 1.305226368700469 3.7338640097860827 +3.331572406097101 3.460768509508752 2.7137029062532454 2.2550586417959737 0.47649364576697745 +2.5868746402180705 1.0878874954762132 4.121229690840172 3.2703366931674123 1.7236534900002034 +2.058194906368717 3.224558152702191 4.900371267728049 3.416195021732964 1.8876393595106096 +4.904014817922076 3.8076088762135396 4.540497933029572 4.902726479291239 1.1546928200784063 +3.1093530294502822 3.382883291768366 4.8984515122834 3.040033809890487 1.8784395547824142 +2.441154295967351 2.178779139092647 1.6998760285834296 1.6048204856505062 0.27906321718796684 +2.3020065279078885 4.575590555787762 3.845387121031346 4.243568921992554 2.308188267548204 +1.4964626691761542 2.3010630484761228 2.9037266894719633 4.416569757682144 1.7134981527277016 +3.019062983627666 1.9947102168835977 3.194257679151988 1.9033443111277668 1.647955070528279 +4.599514697567071 4.739510002218942 3.5208757606264527 2.393295124235495 1.1362379930667725 +1.9219603027537961 2.3646562305806964 1.0480401751175208 1.6019701191577664 0.709096655907324 +1.8601781107317672 2.092193705028443 2.775843071409244 4.1670980873399515 1.4104686296934055 +3.4225389465059757 4.647311487125597 3.1005057235485998 3.6264696880444722 1.332931306633638 +4.547096150292638 3.0874109741444062 3.3743761872375635 3.168267896000096 1.4741646587758512 +1.353783658544386 2.184506385848652 2.1926823334824084 3.463498261280003 1.5182468086592176 +3.9368191075315986 1.3023647952368647 4.991715014421089 4.433359128455186 2.6929743442820038 +4.622753005082509 1.4448355656001515 1.7883029823601877 2.448961242836727 3.245863304161466 +1.2420750975100732 4.727369300346133 1.6750707175223605 3.0166143878023197 3.7345702697353107 +2.4135011365926693 2.058134723765471 4.366198060375012 2.2124643384537546 2.1828546063140495 +1.544108142755586 2.617795745448149 2.9905411948980194 4.277496003767168 1.6760243877244538 +1.5252133493999267 2.505911264434244 3.1204522362629 3.4873806407329035 1.0470935271309625 +1.3366665032927942 4.72657480575924 1.8932254428500186 2.8105381299803196 3.511828706685614 +2.3547278390889637 2.556673619052602 3.8621359064789287 4.982432761452856 1.1383528193445098 +3.1865902293410913 3.0134641752199456 4.06779448849734 2.766845361119496 1.3124180974981754 +2.9868589940954022 1.985079193712877 2.1785660406678167 4.97484409110738 2.9703086883057357 +2.146037023155768 1.7717031502705791 2.957925854815411 1.4090204564499058 1.5934973427888195 +2.1695422693688666 4.345299613214225 4.951742261175781 4.247387213905917 2.2869272073923868 +4.914371629455598 1.573998735666251 4.3613065022358 2.560151297422645 3.7950297945323346 +4.436122690655864 2.4772606851034644 3.1274385259592172 1.9683828913128831 2.276082230720627 +4.862115293731889 1.0326152185483384 1.6932635855506963 2.0039349085317153 3.842081141354721 +3.9427787808620307 1.6331611239111026 2.8147185306899836 4.36299800218594 2.780558045277115 +2.894144278388639 3.962225891266653 1.8004072216589555 1.5641818312094915 1.0938924841414266 +2.1277793491974952 1.0893250612895908 2.8347186594742886 1.9858509376468598 1.34125453111436 +4.922146977533259 3.2110002944367495 2.809139689712458 3.5232572444400665 1.8541809116271062 +4.732729548604842 2.149160429215636 3.2703010137213875 3.7493777041662377 2.627611818741328 +3.6716804064362467 3.4428441149484366 1.5096112657481258 1.9618129415815075 0.506806081187285 +2.963148536610274 4.642031168167865 3.5942647322496644 4.531706445756393 1.9228738535765089 +2.6325626546534355 3.960815214752787 3.8387787923805385 1.344520852413007 2.8258764188303696 +4.516863913199819 1.397233763435008 3.3289485885071977 3.0302181103327066 3.1339004722409385 +3.146451256176367 1.2528803022725183 1.2615549133198063 3.371417052390606 2.834983104597405 +4.873947148830205 3.8244574601825896 4.811763118070994 2.637663082872768 2.4141540070232876 +2.4421190131841164 2.154977198444079 2.7154533084937866 4.275181617338271 1.5859390969337623 +1.9834895941151034 2.7616195900895133 1.5272243741210967 4.195347096175798 2.7792742129159773 +4.350500717531201 1.0232113255693238 1.8527628664274851 4.434485403300727 4.211430393021027 +3.233098479397224 1.1822142703204497 4.005345728276911 3.6135945016320488 2.087964334613554 +3.7687558303957513 3.880488219317792 2.6319377504343957 1.7713490440831108 0.8678116432922551 +1.9728984191226706 1.8166499949238992 2.1389316887707297 1.5486798994907436 0.6105822997867072 +1.776367729472487 1.779499638646783 1.5210487197898832 2.910678171185123 1.3896329806967416 +4.270021199392321 2.6285804939011403 1.6765386526188704 4.825725991337592 3.5512967327428004 +1.8159305410712343 2.9825052310115003 4.879514197724436 2.409305050174012 2.7318180283194233 +3.229479691356932 3.697378013067419 2.1757889660853182 3.28306956068073 1.2020811763882917 +2.9429547020174165 1.2863688516147587 1.3916935981724494 3.498873062681734 2.6803884001024803 +4.308025586812983 1.8005173131034202 3.0126032381254935 2.8933982859330243 2.5103401290162095 +4.585406577444192 3.716042079823122 4.911782351549909 3.4547311326356835 1.6967005876887544 +4.932094492405694 2.2022735199036827 3.999314892411951 4.965601185640592 2.8957955284158747 +1.0860878765085054 3.9357082898176112 3.1586610195393305 1.696089128837555 3.2030380945937758 +2.8222369626936477 3.315157800804184 2.8891990562479566 3.6514707849978865 0.907760508666796 +3.7695105698599916 2.7237173713766913 2.895656317921687 3.1594424267086945 1.0785483416068666 +2.0324945982413767 4.395808374410337 4.203014763818908 4.3986950511084295 2.3714010161640102 +2.673571796545779 1.695865709463109 2.316389397512803 3.4377159546069573 1.487710469265823 +2.4418051960359946 4.26552196578107 1.8734247179640922 1.994076073549719 1.8277033692188844 +4.762186162267636 2.1608329790300815 3.340149004582867 2.2210878121020974 2.831843275405021 +1.0732237446130215 1.1814596166861313 4.58641591215813 2.2689955432757896 2.319946587771837 +4.516299242751563 3.843482800661724 1.1509300243617155 1.087050124951801 0.675842145989025 +2.561242446316971 3.615621540370251 1.3685233645116184 3.819160106672804 2.667833524792543 +1.4206574133478882 2.2057661764170344 4.182838596325476 1.8932702439946527 2.420437772355003 +1.9866890077928794 1.697534636517359 4.371399413795736 3.1134942085724333 1.2907113371143915 +1.944747669116523 2.6977412654166133 3.0864429541601393 1.548735993123472 1.7121746564207652 +3.7114981340725923 4.686333224231479 1.256124994115393 4.943525651268492 3.814082728439197 +4.016822936786237 1.0703745802357574 1.984472978103192 2.6989021748235253 3.0318256867678732 +2.997887721200121 4.368594890730292 4.640471155499863 1.5505314709975533 3.3803203100392203 +2.529956547765405 1.2260828717990315 4.890115352175936 1.6021449373750123 3.537066017405418 +3.1883350817578435 4.388673514878433 2.675515173714801 1.80641357818951 1.481941273253093 +2.3262426119810806 2.541681511144557 1.5058461700183674 3.7973986176652366 2.30165734625924 +2.478298889691924 1.0493657054474572 3.879944026364322 2.2018675351457895 2.2040396447013677 +4.66387892644643 4.841953393973506 4.876843161929131 3.2381189354724977 1.6483711979893794 +1.305935907799023 3.44072442421966 4.403703812808185 4.771795054517687 2.1662901864857966 +2.2856611530925237 2.3691873286174823 4.287361044208925 4.942178827346333 0.6601234362684114 +4.89002141316338 1.6960543091718683 4.51825628798689 2.2961191931256306 3.8909277980628687 +2.9865451904006446 3.7128701914789777 2.6252794557613703 4.112317446318371 1.654941084314255 +4.958960039424712 1.6559108494858412 4.716584989121072 3.877959770949244 3.4078477383400765 +2.876872590601169 2.0346667644628473 4.360180976409865 1.5190983532511066 2.9632855288000823 +1.2246925432733926 2.714281381011127 3.7431456127387355 1.5880191262679522 2.6198177566771235 +4.078561460450853 3.8948181558968002 2.763894053216844 4.333745723640221 1.580568210834164 +1.1541803051070243 1.973078930420598 4.000179209422221 3.539185611268896 0.9397393553953192 +1.0231942012554867 3.9446872586923085 1.336965788758504 2.7848125162976594 3.260579983852166 +4.902871908210763 1.1324782232469173 1.7988725528393141 1.1752667031044584 3.821616516009786 +2.1564626326034873 4.159487101264532 4.4097462246668115 4.582129092192479 2.0104285302072373 +1.6433407791261638 3.1777179072810213 3.599236430277677 1.881403558388267 2.3033156421013095 +3.8983664391648727 2.8030621974555316 4.406094817974887 3.8262460048525906 1.2393207930095465 +3.3775691510228993 4.145977468969924 2.9402747104687714 3.2281201432044253 0.8205524579433974 +1.11046035057915 2.5407624016574673 1.0212531066255233 1.212139936463716 1.4429836239973468 +4.966706769240853 4.784460338845255 2.6087788386983335 4.202313205646353 1.60392192454507 +3.1121356773263362 2.0215021359263217 2.775547132610773 3.704063472970381 1.4323491599262859 +4.900383733651836 3.2255600237393716 3.6483050215313555 3.5165138986018407 1.6800009998115992 +2.850792916188277 1.988565187405066 4.2285274814433045 3.0010067776373677 1.5000812426515027 +3.228370346063698 4.210878623097891 1.0804245456979222 3.1073835373008682 2.2525286386815884 +4.664786383869562 2.5273092924949427 2.129364691708375 3.7634411810523134 2.6905416349088362 +4.5431088166693065 2.5683271197516047 1.2871630204521844 1.104565557842848 1.9832056332696633 +3.898070562693802 2.8494694303026664 2.2691076617881025 4.479679792147445 2.4466698752331535 +4.391046575488973 3.767690219219877 3.331589582789036 2.4734328472648808 1.0606630613095562 +1.0425525229264063 1.5110301363326646 4.743341777044988 4.186770140771621 0.7274910724997503 +4.983539334579893 2.0433577708978223 1.9985123974320476 4.411657830565643 3.803674343167337 +3.604765846393674 4.955481587172456 2.7567557658260533 1.7639445911336145 1.676337388768071 +2.0572449466164198 2.8244408024729175 4.599879807037619 2.428976009182837 2.302479702578005 +4.622587061999985 1.0852602276329217 4.625917572194842 2.7700820412743923 3.994597182565483 +1.6185417172805465 1.8958684332110285 4.132747064272431 3.9469218407957585 0.3338279812252735 +4.571448463536251 3.5943304771197266 1.4543903034115524 3.0513694629255665 1.872191762427335 +3.299932527638212 1.17578541219339 1.0977939172627065 2.5233330779809084 2.55815614589761 +1.427322755449023 3.033758485614531 3.566563640242364 1.9458136180878447 2.281987377148757 +1.182002736004459 1.0426513102628574 2.400450526675303 3.9044591232664447 1.5104504885881802 +3.240207396959603 2.768541083116488 3.0225318673362245 4.878281176801837 1.914751840630124 +3.6853081573679702 4.247039735981886 4.069376795069301 3.4881901240680926 0.8082823225591099 +2.0818196890366516 4.702722775857559 4.413169565162923 3.499539002088915 2.7755817041280353 +3.7983306670547217 1.1341078403196883 3.230300466154842 1.941738313164679 2.9594721983175742 +3.108801710294071 2.5068269216049623 3.856643517046958 3.226724262994972 0.8713047187079315 +1.0675875378381128 3.403807643318112 3.983834548720382 3.0714320557825125 2.508067521094322 +3.167244640585092 3.9880566116299616 2.093026133598759 1.6437400345183 0.9357298171146949 +3.7393818553137 3.477519970743662 2.4181398094179234 3.1041625479104935 0.7343016031028513 +4.6877503926688835 3.4326519577749397 4.900010004693776 2.6779273844326634 2.5520429566407614 +1.924777074076733 1.1618567285197936 4.336399351904397 4.21250250779908 0.7729151839910877 +4.736227490429902 2.3833163680935945 4.492363750855785 1.4287106799657598 3.862921289437281 +4.624916015830521 3.3190124725839873 3.3031728681283634 3.422570980707163 1.311350438880176 +1.3413738179990449 1.4315757185484541 1.4217849561313822 3.7610162004417935 2.3409697130080005 +3.684266841106502 4.386033267105945 1.7691956174352983 2.774326018439844 1.2258724402170036 +4.820946635879858 3.226624106724118 4.675622831910095 3.142607031327853 2.2117870086896634 +3.253837241112309 4.902337599570211 3.6873512338947565 1.3574763479919967 2.854097127954168 +1.7434093165482736 2.5960520811176413 3.3817849632149897 4.127179852338379 1.1325251541152472 +2.2301803235558264 2.396230903475179 3.7487785357012675 4.676595842210255 0.9425591489923304 +2.1030079776447193 2.6394538075317486 4.113982779940282 2.216105109142491 1.9722357317815824 +4.106158364062712 2.774627526605285 4.312972218973853 3.1120923874009283 1.793066295756711 +2.511303954741653 3.0119429670886 2.0028182273877655 2.1254244383199095 0.5154335103996092 +1.7930500902412385 4.117897978930245 2.201143817807442 2.536098944410614 2.348853474012263 +2.868556073092835 1.632359913038353 3.9886766081678897 3.125564437476846 1.5076947852030433 +3.5996911640693416 3.3282679345104857 3.5589873203167457 1.3716826958001649 2.204080781181983 +1.8609026996824456 3.0846389487985726 2.539019247913032 3.0667590373411353 1.3326813920612932 +3.8614188185709066 2.7674618648919025 3.5122963292322016 3.86118884830332 1.1482455340067461 +2.504502172286512 1.5058506029339203 2.202430767308176 4.905922473560145 2.882043088287123 +3.461596303513953 4.989068864787176 1.4435994159148464 4.725101309661779 3.619589355729084 +1.4070737479690916 1.5659885355013667 3.7340859599648937 2.5527129710845124 1.1920134431090086 +1.9209539563192406 1.0473307014880135 1.6077276037202446 4.073505460399754 2.6159659840817695 +3.9104678973351183 1.6293123599584693 4.643394462449439 2.2278792814328936 3.3224063832447626 +2.6887803115154565 3.369565362121162 1.4107687493291934 3.1983510332256175 1.9128300255978232 +1.1918432993827537 1.8457836351696582 4.00790559079023 2.6120859633226883 1.5414118188182926 +3.6996700614360276 4.033661705719353 2.438757900931185 2.712119712951638 0.4315983071354482 +1.646966272616189 2.632980695396613 1.1133488789998416 2.9585808596349366 2.092153317586818 +2.670343873776406 3.9834698892831617 4.410364646951708 2.8360358546827316 2.0500758714661615 +1.6173028251023527 3.4437214470035413 2.7773518369125645 3.3624828661915998 1.9178590417057715 +1.2533388177994595 2.669836374616804 4.918028548054087 1.9885418721786605 3.2539756472046872 +4.487356837942991 4.034375807364365 2.353404358979452 1.7471523426005389 0.7567914649542313 +4.053545013074361 2.443802108429072 2.1777485948463196 2.1649625445820484 1.609793683096443 +1.5498090410551804 2.6786650628757616 1.8516879901278496 1.8523410111156284 1.128856210700459 +2.0432198483017943 4.366445112072778 4.327609478907338 1.0250490766841165 4.037855970259039 +4.05569940237916 4.692152821019801 2.1731648577578224 3.012848435328179 1.053632509246327 +2.1584224599690476 2.5222393131655005 2.737468635573136 3.7450237735230485 1.0712282943794176 +4.413678050259529 3.894716309462888 4.9164324594213324 1.1204308540562047 3.831311717459871 +1.6591170502612842 4.580041381767405 4.120515951603136 3.2231142925115646 3.0556715609051937 +2.2539389037079145 2.4473748056582996 3.9528580443950165 3.450095194926884 0.5386909419775638 +2.2442421955886043 4.869753266932534 1.174118583809852 2.941226818343111 3.1648032953573595 +2.7533464738743163 2.7448268748998688 4.715834868260975 2.010432592055607 2.705415690732918 +2.8514556776531528 3.262925393113042 1.7551917744656813 2.0031803197751588 0.4804223614126981 +2.9603812652246333 1.175394934063938 1.2662046519302206 1.5245053938026811 1.8035785194114458 +1.8516883248859353 2.8482525241057495 3.0454672216509495 4.99008412179503 2.1851029933375226 +2.0653053031990845 3.3904734222411173 4.628120510820674 2.2944741878886292 2.683649698500095 +1.2130426030596366 2.585205688600162 4.252517723672415 4.307819672020928 1.3732770437210535 +4.50554429659141 1.0106727082830655 2.066172820888347 2.9844418496580034 3.613494904931022 +3.8218868122728953 3.2357569617806266 4.867721243737719 2.360432634849556 2.574887253822666 +1.5230391029285744 3.043988344580961 2.9445093430601874 1.99752504727191 1.7916656641663335 +1.0649464743069603 2.486553913073799 1.4918623939067528 1.1544485043176276 1.4611009009801046 +4.378933671531582 3.1009068926729406 1.0665951338351887 1.2409764622616954 1.2898687123826162 +2.118367401824585 4.342850985809157 1.1963456356061597 4.691582293323088 4.1430672826862285 +2.2758797624325773 2.2388427485712263 4.973593154902702 2.8120283924060536 2.1618820418475564 +4.26774184139329 3.1326841047948255 3.82775472446215 1.2231772042577669 2.8411582363828387 +2.9917110475851647 4.339258617900688 2.8995679285157143 4.344957283852638 1.9761161005326986 +4.887565670443025 3.3246298786437403 4.092345959872679 3.2730138575720362 1.7646737327754523 +3.925844024573278 3.207859486198697 2.2659044530454016 2.0103535449937104 0.7621076459077185 +4.683111331466911 3.351486267826726 1.475345176655881 1.2640331339785416 1.3482870946112315 +2.4860266116008405 3.856659179622165 3.2328879937430552 2.982210484936815 1.393367449721011 +1.9531907292582895 3.971731977829623 1.3929618933149661 3.365120867522039 2.822041777105614 +2.318533355763 1.6673307298517184 1.9956858751757292 1.9345686906876787 0.654064347165854 +3.289061646563024 1.2718756171269385 1.5420356606694585 3.3226992926031804 2.6906880992496163 +4.9461902828043005 4.768998976948372 4.813858091243491 3.1435840595700038 1.6796464210522801 +3.6684560358714564 3.618890116107269 2.99588042656162 1.8505611426586075 1.1463913129826913 +3.3068923373722265 1.266807908264402 4.4087148166756425 1.4965036438677957 3.555688174308182 +4.554494679605122 2.22141960091255 2.6876565823491836 1.4768243372432415 2.6285650170016055 +4.528447526770753 3.960286715204053 1.070819747850571 4.4218682623207215 3.398872291530344 +2.550273301107338 4.852239648727387 2.630792482777029 2.299623294954943 2.3256659468930465 +1.388362333945571 1.0818192622189806 3.4742639837924774 1.3006309221442178 2.195142214416633 +2.276525706133427 3.554449543886861 3.9381243819138003 2.0089380987091765 2.3140546774878366 +3.9977025146166354 4.203352893641423 1.3048382578013205 1.0932564975579382 0.29505748534942616 +2.469852989502434 4.150915313907776 2.5145196363844566 4.026743221040522 2.26114809522179 +4.608724626996919 4.590858594297041 1.2146322042174509 3.4416906469756716 2.227130104548251 +4.21939527618716 4.539025914430594 1.7322670743853448 2.5047777111816116 0.836024179594872 +3.195595573250642 3.2055559900565487 1.7208910126349402 4.1903252076858735 2.469454282547016 +3.778252572445238 3.7292365131552443 2.0023982115176913 3.7420095155728665 1.740301716158686 +2.516081915035176 2.9673896446092742 2.8660065770803387 3.3045111120289627 0.629257414691187 +4.780280649290727 2.3656861508384837 3.0410753512585056 2.3372576853074323 2.515079700299905 +3.3662118848280693 1.9448875629545301 3.3347542110493538 4.662195934461259 1.9448044521246977 +1.7372008330852586 3.5822376228345285 1.294164472542906 2.119450557082374 2.021202087091436 +4.574311070496786 2.939851796551327 4.208889186807957 4.712884846889922 1.7104001705939378 +2.716754448925153 4.843808188374707 4.735121781972099 1.6228879371110607 3.7696627323415624 +2.0321720979352156 2.5286651328486163 2.368940838191659 4.25503285608108 1.9503457215744358 +2.5730102682292095 4.165521593628904 3.8070820866414032 1.1789990373310135 3.0729322862046424 +3.4687353510627323 1.5890475662669084 1.0439484577422506 4.806116980544225 4.205607942054587 +2.0599458179723458 1.2514979170190594 1.7556367838107092 1.1304895581587342 1.0219574659916801 +4.116233976656643 3.3323523323762902 4.056881473645969 4.155338306795835 0.7900406193567328 +1.3067424350067491 4.096757077551715 1.8008416014378437 2.968509289600627 3.024504841390526 +3.1963365466117852 4.891326888437279 1.4977450983569436 2.644084930167763 2.046237344219326 +4.084910032690062 1.8897729389889437 3.755232281309685 4.434425416001705 2.2978098647092984 +3.058061277776967 4.3356109377131435 3.7750368662227 4.159550415873921 1.334160336491991 +4.497268523142042 3.8110950432912105 2.9943093846972286 1.8293444450587435 1.3520271280701057 +4.72208431107569 2.9275596766877743 2.2394646510143463 1.9293322880324046 1.8211262301097764 +2.783240705074093 1.0010991455132983 2.56995594760765 3.784200322064073 2.1564827704419187 +4.591019495089803 2.3839950427450187 2.1245097157270783 1.634575396139629 2.260750444157296 +4.854912349712407 1.2279838536262027 2.5499720414305918 1.1626611778802682 3.8831999366304695 +2.701903462259612 4.254211847003744 4.499246393073218 1.420122136054352 3.4482847201918982 +2.5935135059720866 3.650942643447279 2.547538018548634 4.175813003491005 1.941503491464954 +4.424092199461341 4.318020582555908 1.713496589002259 4.347492111123375 2.636130421368985 +2.2401019514604004 3.311127887616614 2.4618062829350027 2.5226220260135945 1.0727511876131832 +2.4142716308842247 4.776791380171708 3.897640612894886 1.6321707991913623 3.2732022611771594 +3.4879336358346964 2.721593464207135 1.7321798109232622 1.474088342908809 0.808633702310271 +4.7007516161807015 4.521680304828578 1.2608652076562206 4.807123304654979 3.5507763975050057 +1.9975364936690698 4.635908850439147 1.1512181755077568 4.766998957125789 4.476033886565964 +1.4696340286373477 2.201006192441973 4.929456359967722 1.7419886609376873 3.27029900381419 +3.623228156722448 4.462387088774609 3.268718616430689 4.777176375805476 1.7261612106234245 +1.8898926765967632 1.265877378650039 3.1085170467201633 1.7060778310834532 1.5350019041119294 +1.7885235851908452 2.018300815018106 2.0625765665277807 4.767486197915387 2.7146516699791388 +2.3088028909365317 2.539392881593357 3.674262295561927 4.9766386231652735 1.3226321644707926 +2.34163213908964 3.268849177356318 3.998845773822642 4.486677976296511 1.047717373065149 +4.693753004200073 3.005816242907776 4.204540053039522 2.8001796183705427 2.1957592628941756 +3.4826558955258706 3.5104806646771114 3.0804786282619596 1.207635742069173 1.8730495706577674 +4.2017172760224355 3.830828331246048 1.4467735767145062 3.541864366059802 2.1276663330881647 +3.8762419991706794 4.267464890097541 2.7335446399360204 4.539443317746093 1.847789323732914 +4.518790510373369 3.237251125535365 3.1721113600089974 1.0375934763101013 2.489680660390281 +2.928253719672714 1.3252260242226424 3.5991274197424907 4.762232734982498 1.9805332026299192 +4.489038176653045 2.4118148323708533 2.4682542387542905 4.576400100107671 2.9595837198451203 +2.380206999086924 3.8315825744242225 2.0773104664881132 2.1782432936037193 1.4548809216823289 +4.8654112307965365 2.784413467529384 4.135748605456145 2.4311659509186287 2.6900099845303655 +3.3050441682520817 2.654140621951096 2.18194400160391 2.9261838586845488 0.9887205831045539 +3.3416939190984127 2.8623972604415977 1.3880973562837746 4.074337407078462 2.728664672966071 +3.421101802254391 1.260965583682756 2.2116899540491985 3.6035922516302463 2.5697432729353262 +3.248507577636363 3.0117122572901986 2.6656147715568164 1.3751400395788433 1.3120202199705095 +3.986592382484106 3.613639406971814 1.4099839656597521 1.0466498564978157 0.52067801645928 +3.2518528449807467 4.170221806759539 3.4914978819126135 3.823804318164749 0.9766417549609742 +2.8146171755678613 4.336307653577508 1.3812677243374858 2.5332365657175755 1.9085528869737443 +4.3000503713532945 4.014053696165184 4.44835892862116 1.0808025560503611 3.3796789818947084 +4.298258958706357 4.883674436791204 1.6688913404680052 2.3750883380156504 0.9172924731657942 +3.3559475375621335 1.2036901467319763 2.558876238782707 4.713174864158891 3.0451953046858504 +3.0408894187880455 4.014457919374871 1.148215171913825 1.356495885261551 0.9955985540806678 +4.371916630193204 3.228420701383038 4.4624302703962915 2.76535451697237 2.0463746118599095 +1.2083302210665394 2.518499844390779 2.986599468265078 4.93273275332197 2.346056095895388 +4.1238689544017575 2.6000079081032816 4.020842597576681 2.135669117303348 2.4240527096479885 +4.839650537422554 4.588654272559641 2.1332331440699286 3.179480219097724 1.0759331145472524 +2.0935872242187954 4.485208485605595 4.703918296071238 3.2748029290326843 2.786076630357307 +4.612089350297201 1.4432170941535047 3.245716730928189 1.848623165441901 3.463180879838711 +2.330862893742265 4.119748377809986 3.481989668332751 2.980053496960093 1.8579696432505157 +1.5959450133972277 2.0185535626776603 1.815695989843908 1.656317575887758 0.4516629991045201 +1.8409370354644232 1.3067111831212035 3.3903359640148065 1.223844804345664 2.2313854902809567 +2.753960355146627 2.0262443850467906 1.6647147632970918 1.559435382949228 0.7352919699444406 +2.802504854072014 2.0178921801466347 1.5319961316827793 3.443009676825248 2.065814565202385 +4.882035934481245 1.3771583126325528 2.03315485926447 3.9476712512099907 3.9936875389999957 +4.139135302764078 4.658525307136347 3.328955546105477 1.2672706003753702 2.1261022534421947 +3.4236599363569438 4.557969793996523 2.1457005116217793 1.400899686953713 1.3569772000901688 +2.233762158770154 4.18398561161194 2.7603831862998494 4.42347030318094 2.563050969908713 +2.9560903238094847 2.6965951573835314 4.352260846533804 3.5739934158772177 0.8203888925498918 +1.505887083497501 1.6594299718466745 2.198697588492878 2.4452211711922174 0.2904295015826126 +1.0113914007048996 2.619399296102767 2.9394023178539324 3.8345076314956232 1.8403540187071257 +1.9392290416232898 2.0893208989620935 4.861184922104498 3.435042952426409 1.434018299505523 +2.07726269723561 2.9515162942116295 2.6371895522360203 3.841825684879433 1.488444679487816 +1.6358532335722091 1.0168902840751235 3.0040229331777284 1.2636638196233858 1.8471505019845538 +3.714109262938455 4.9558409837320685 2.574522779698584 1.4057602460675285 1.7052576129267836 +3.772351575092069 3.7527388354964897 3.4563439575577206 1.8010539774791559 1.655406166988313 +4.6769081516873685 2.616539603825221 3.349899099139603 1.2660890164000098 2.9304236918825857 +3.522470220011839 2.432746332636976 4.581673029593221 2.0435954736485233 2.7621252380559413 +4.270137019723835 4.508282338082722 2.763436313109964 3.0150001951000336 0.34640666762949185 +1.2064392049561823 4.608747823774301 2.4611132280807175 1.9365667344170556 3.4425067845537938 +3.1189630087034788 4.845914125522569 2.9075845501659687 2.9748777502038593 1.728261708959046 +3.4744416262545563 1.3589850494538784 1.8546212515753635 2.094696597311674 2.12903562674739 +4.947711349773149 3.2745747737572906 3.1158510503308396 3.788509124731822 1.8032900174566786 +3.7455834605522234 4.231991696259048 3.5815882336545077 2.9079605158553474 0.8308834298207726 +3.7634121440628787 1.2551377096622893 2.144206858558345 2.634744166584699 2.5557909712715823 +1.2632596682001203 4.026171278230345 1.4459015454141166 4.612514483828193 4.202513303556723 +3.6584190003808157 3.0804514659750826 1.373044380434321 2.4166082423642994 1.1929258169531134 +1.5705522162922723 1.255182345565986 2.461164557987954 3.784970524529177 1.3608528180564037 +2.4584696866333666 1.8981074980534083 4.069320327790939 3.5742435607275502 0.7477344365990224 +4.7198785822902956 1.6941835032454269 4.571520102793431 2.225645009131721 3.828571622213521 +2.962044872258556 1.325680871379678 4.379553949082575 4.018058585224489 1.6758180215832563 +3.5414471930853018 2.378672189900881 2.029242744197327 3.365510364539466 1.7713432364184456 +3.9161358674591797 2.719219868932812 3.0630377941867457 1.8319531889845568 1.7170256878376051 +3.1618775699462813 1.2249098383445833 3.3204611825252193 3.0115537759203814 1.961445329118697 +4.948681888159882 2.5105348377059875 2.3457943854288508 2.725252625664381 2.46749865161456 +3.1213719685562125 2.0458760167991596 1.1482806804328778 1.7532302192986564 1.23395927275568 +3.6884901197459414 4.1007093115211175 1.492751292346616 4.96956167790742 3.5011619670062744 +2.550734818123889 4.05085928643496 3.169851468420167 2.9329964930496693 1.5187079046950842 +2.8509634718335652 4.585972401137049 2.273152989917577 3.485793555991908 2.1167789509658053 +4.783195537718438 2.6567134803823924 4.835632315657023 4.731833891482479 2.1290138686803473 +2.835324285606004 1.6918271378620124 3.3141695652360377 4.037927571181552 1.3532964856486072 +3.375953245539279 3.8915377578785457 4.445399929806708 3.2986208666946153 1.2573502332112436 +2.8471834098569095 2.9918272423264174 2.6004978631732905 4.1118124826270375 1.5182205759526812 +3.152667464020739 4.64790065078909 3.793568795676244 3.9284130687110075 1.5013011892301003 +2.72044454634509 4.506281392649093 3.533163078142453 2.6299626887967475 2.001245658316655 +2.1384733668201945 2.618256308348233 2.324714404718933 4.9778185300555595 2.69613671219757 +4.563417551583788 1.654124463091959 1.1830230802125845 4.292839060032149 4.258514025230801 +1.1788095017064757 3.1198515273987293 4.48738912164376 3.8847549132972645 2.032439946117202 +3.8167065023301623 4.979831353311438 2.2548212375800185 4.129476198905788 2.206171036659111 +4.647566314490489 2.8933915329038227 4.245435112310632 4.480888771705596 1.7699060964009101 +2.431481745132997 4.779904387758954 2.7177019214900664 1.8185248122524618 2.5146785842678145 +4.680177325270771 1.9556057064506933 4.924671879955678 3.7254136912833284 2.976828968748044 +1.430041929320021 2.4001742120062564 4.957328747482442 2.3973109936460353 2.7376719207873697 +4.10714010955569 3.6758685321748987 1.429017762165119 4.11427183762916 2.719666270565703 +1.7253847112389287 3.6663211023248086 4.957592019516208 3.2136863718564705 2.609298944578986 +1.504859952598275 2.6633422012947054 4.995174438396351 1.1257507667365418 4.039123750437217 +1.1143849635238068 1.7604185912041084 4.928071707006822 4.299711575746349 0.9012191202207429 +4.45826756464724 2.8018688720237925 4.165901482836379 4.038431304575513 1.6612962635455857 +3.9882174231835292 3.889104646087153 3.574075912958676 1.0379950036740486 2.5380168874579416 +4.235051207060219 1.4138119250607715 2.314029690404293 2.268500386017002 2.821606635208875 +3.8104600871488694 1.2720522897017976 2.054058095111984 3.7104588721742218 3.03103574383287 +2.956718981209419 2.7171351543335467 3.314350354102956 4.547893693272833 1.2565944372433209 +3.0706574784346645 3.4759378077634886 4.817328010102621 2.467449993626023 2.3845709965653925 +2.6894080192460295 1.9256880262456275 1.1218215300048096 2.570800340633578 1.6379279048113486 +3.675280367683811 1.4235866771411416 1.282659864981873 1.453477817426497 2.2581636895732426 +4.9256494153992945 2.1840754184820423 4.236898222148896 2.662015833794984 3.1617214484707787 +2.5436678046920087 1.7652098317892828 3.1877209418704013 3.056782878847019 0.7893931795525828 +3.6205570773338343 2.1611798342699857 1.491149911737228 3.140291753406103 2.202146850579145 +1.319377488699998 3.13494321922936 1.4162177590198288 2.444832750098844 2.086702595423003 +3.28545708456836 1.871601520673193 1.1482447121420218 4.5930348811366155 3.7236496698748556 +2.9601106698574915 3.0338079041781083 4.434564128514216 4.044138219592519 0.3973206170133152 +1.6513504386982527 2.973568627354911 1.1717595767775726 4.584242878091025 3.6596862188113417 +1.9735254529621291 1.5725916651856333 3.9861216399541166 4.6798329332410535 0.8012385790853077 +4.3744603232576384 4.35495773423366 2.335637823565356 1.9671015510423793 0.36905194098360744 +1.3006970316273647 3.7126239193704706 2.822081324452077 2.6467409615495714 2.418291867141129 +4.523443196095149 1.9642199678186074 3.133512887693843 4.515445888737885 2.9084982983534298 +1.029546191723652 3.0135722231526016 1.2494426500944233 1.7459415907614484 2.045206711183783 +3.6291416247412562 1.4725211616883933 1.15729598132739 1.6640254649922683 2.2153524756285665 +1.524828592606951 3.424752120197014 1.1690535745132555 4.563415826495747 3.88991060416225 +1.6341809525004756 1.7372340406124214 1.6800815199424113 3.5630158332529236 1.885752254993094 +4.459620397821064 2.9257234190736536 3.4263896213260465 1.2333998435729092 2.6761995640721916 +1.6596814860152302 1.0383226983859708 1.0888636200990458 3.9021833877364798 2.88112041711964 +4.527782304462728 4.522432666950339 4.013101286923796 3.0940273090042774 0.9190895470574786 +2.43182029111951 4.312300538914252 1.9129770938598725 3.0774541410228595 2.2118347035245662 +1.26323231882593 2.179541464421476 3.8104910972813397 4.188188086230262 0.9910991200496153 +1.3451817464188522 4.3531640309096815 2.124659685351094 3.3889653406499236 3.262886178497692 +4.125456990176916 2.825299747370936 3.1157708920475176 4.413853139219894 1.8372333483923415 +1.3658922781248246 4.526753730616697 1.5287866742821588 4.144073611565853 4.102532252911091 +3.3131372663966343 2.2338001803046015 1.898934544765237 1.1874527069950114 1.2927393205478581 +1.1854066644866554 1.428622303238161 3.9611748418055663 1.9373106663839046 2.0384258749065434 +4.400562060723141 4.5929561736126825 2.0596315808913865 1.83860973574519 0.2930292659554381 +1.4379701127325393 2.593854833155751 1.5938958540815702 3.796780490341846 2.4877239009945242 +3.286176483772314 1.3536306455803429 3.995779016032265 4.9230212186985 2.143481168361047 +2.2766400588737317 3.0256534838771776 1.7614158313078252 1.9065336841069764 0.7629418733012554 +3.3444894071175963 1.2103366053518805 1.9061015783334652 4.320991288470001 3.222778381056907 +2.37363304557673 2.9614106702290717 4.993085451724927 2.669941623027553 2.396347175360165 +3.325635121407003 1.6461038561653214 2.787397566509327 2.0279652251488756 1.843247881330273 +3.9194561159159114 3.8201837557045497 2.2346305025103 3.680119565111421 1.4488939338686604 +1.2005927235229308 4.111523744198898 1.58048209099471 3.194854504172638 3.3286209900743517 +4.066670407603388 4.539239089604393 2.507580043927464 3.412703000484261 1.0210625473957435 +3.8849953912994035 3.1698516313257388 4.908840013516856 1.1658635194743807 3.810682830200353 +3.254353564546025 4.769965989287676 4.445723594426905 3.711952347854244 1.6838946713877512 +3.434075726454903 3.8294297651477915 4.84852371848837 1.3204591541567643 3.5501470935727637 +2.3369423761038686 3.5218314957306376 1.5524456886227571 2.506513687534967 1.5212521067720002 +1.691168984850104 4.847285350836451 3.9292983002314146 3.9306326710083144 3.1561166480648706 +4.529519361052726 4.164218895032612 3.4662349861670965 4.192257745039246 0.8127444105466615 +3.107387226779981 1.916962246308997 3.941367286894871 3.3905187008510222 1.3116957722261098 +3.9629706855790032 1.721017518295517 1.3690330618684055 1.5906065530051365 2.252875677055211 +1.157264835151984 3.2932621298709663 3.9815725999023495 3.3463953103430644 2.22843771109239 +3.119655905984091 3.4915816447397523 4.3980390108349585 4.346828751464164 0.37543474241706554 +4.679008711047569 2.4257409552204514 2.639527258229998 4.358036145127629 2.833811633435841 +2.13658020592779 2.824167387161413 3.1904351024914814 2.464222892249929 1.0000801498383616 +3.228735079216853 1.9810556653656417 4.821368090822078 3.5885342600572465 1.7540191487057353 +3.2974244563220423 4.784290021470756 2.5886256938953314 1.8500593248250357 1.6601956180964592 +2.786549444184946 3.983493628122755 4.315205061530037 2.1575549816804234 2.467413472958594 +1.5356048187256008 4.68721602474835 2.1706248391382488 1.0089920180668757 3.3588754077694527 +4.512522366831066 4.261829221882322 1.9372409482548698 1.5279842823376137 0.47993548683338716 +4.71256307432582 2.0692274465951264 4.022031104059495 2.0939594592366855 3.2718012635855733 +1.700399696509404 4.835435534788887 3.900074689899213 3.204731781896815 3.2112227370591993 +3.4937077659256945 2.9111449572206354 3.951363891542231 3.420294953122137 0.7882979407818931 +2.6897953708173232 3.317244047696133 1.9141347737585717 2.383682787930212 0.7836881903726123 +4.214528964058308 1.5636054517937183 2.786045621156832 1.4966190160635717 2.947883382666207 +3.5257050510302674 1.5254431304590121 4.50294733760035 3.680133149684104 2.162884864879238 +3.9699046261894466 3.597664339678744 4.943791324122616 2.2522912493304275 2.717118967492577 +1.6500370272944949 3.5621865745591315 4.896045008439634 3.2537659883263332 2.520594428107913 +1.1790880105594823 3.2315259429839203 1.4499368352257518 1.9764443508354095 2.118893963946322 +1.5823757182817815 1.5718141092592957 4.836756673276415 3.384918654974879 1.4518764337817718 +3.8104334576816767 2.6717131309143496 2.8837598854344884 3.517624399653642 1.3032529320816324 +2.44972667685252 1.1730325869295388 3.7142114012188303 2.032903127845598 2.11110049721882 +1.884505091729848 1.3065909086767507 2.251243762545469 2.4418337447646 0.6085304793485842 +2.5682841386304287 1.623840737695096 2.546053678091168 4.028904610243343 1.7580728723676025 +4.715686377776471 3.9469016590922674 1.834477068451228 3.512515156275149 1.845763193876753 +3.8948534200726215 2.527853783316074 1.5193061989205052 2.936074733491615 1.9687359110462994 +3.1855990384924473 1.0586229160227467 1.86624921052619 2.795130680017364 2.3209584679438633 +4.589171754898768 4.498491999643272 1.2116866414159921 1.065087911745072 0.17237750884127603 +1.5720526560991264 3.206129302935013 4.620175642180789 1.5036576383567355 3.5189332127640442 +4.605292756557455 3.820437825448611 4.69520008272751 3.4461917892888803 1.4751335464846385 +2.391623158642553 1.078853661076911 1.085404024519836 3.6834963544243897 2.9109186708748185 +3.253074853154042 2.829139245256064 2.270942851781345 3.9186431421882264 1.7013634669437188 +2.8491014146266216 3.890247748167859 4.775984282411519 2.5018683181986567 2.501117571513614 +4.68614258506854 4.08643833335186 4.875488436084497 1.337321452690594 3.588630768399805 +2.4212477528024117 2.235403555080904 2.5373311485710675 3.4198849274799676 0.9019086641634677 +3.4275351461063672 1.848210609665502 1.7111156658395195 4.394971258870388 3.1140563314826584 +2.9593550374265316 3.363592058311944 4.982734792673645 2.3649088109015897 2.648852664814549 +1.736930377432572 2.9531669800655367 2.2363052070294693 3.3389462793994746 1.6416603814618453 +1.0429121859036168 4.53437538924671 1.9696736255702039 4.10705425831549 4.0937404985579455 +1.2463480585277544 3.555956452862385 4.882031925671464 3.3197126249531683 2.788392463871952 +3.3305015431823666 2.1094484298644796 4.1145971716963 2.598284970233595 1.946836767129689 +4.138635131899747 2.069084684778975 2.2386142966706863 2.8559557166863474 2.1596642058534794 +3.7127466553631887 2.117577560895733 1.2077426907540296 2.9480578415072656 2.3607755640647805 +2.0008294170779717 3.4121552441863945 3.3457944566931412 3.6324282443470004 1.4401387150160472 +3.9504848388611506 4.0531765493191925 1.3207741725177433 3.474782220468794 2.156454557377617 +2.9009478449610664 3.2815409409570577 2.2951409265277847 3.2851593022788954 1.0606542740425278 +2.839352971638019 2.7188672319212506 3.7824975655696824 1.3232185709298045 2.4622286626046788 +4.929458195543377 1.8922678542067084 4.471492608864272 1.7316571886220173 4.090381803636771 +2.0091337407774934 2.9231504064569287 2.1654618111647337 4.939046609074147 2.920308048191826 +3.9233305950369908 3.1362332548005147 2.0244435892221397 3.8745788989007224 2.0106026179050898 +3.0352192233714965 2.6209274421646995 2.6736380023975754 2.4928921075447112 0.45200305140746916 +3.6340133258889225 4.821381307752561 4.259646423762289 4.125920405303107 1.1948746262130916 +2.8468890534859983 4.259692117848204 2.9862686776236527 4.9777717711174265 2.4417405820575024 +1.4790996434947603 4.321820175740497 2.5384725913026815 3.9037169925252297 3.1535618433005235 +3.3940583370872357 3.3377906811744715 3.508737191462013 3.7063963610695496 0.2055120347616124 +2.455548252118375 1.3192418961371537 1.4670227251833583 3.670127360204487 2.4788832500734888 +3.8574582122961463 1.7682901372569821 1.2157093201981293 2.032471881286944 2.243150535955892 +3.966020331854816 3.6327798050790743 1.351982268144635 4.5433366708594995 3.208705684916166 +4.663966581078052 2.9706600074336307 3.435506071688516 4.666058079373104 2.0932141304615683 +1.185176610437328 1.9921113970733222 4.879136131510691 4.293792316883869 0.996880700588168 +4.263329846379138 2.0297390576572405 3.868570111559865 1.7059047158815206 3.1090270865863934 +2.1257961993148577 1.1825265183787739 2.4669709153910695 3.054675369271188 1.1113749214751023 +4.931469383055769 3.905072304966916 2.1785302151145616 3.996204450172962 2.0874459482114687 +3.4466527744856554 1.4342111281303875 3.59703250610868 2.114783681430936 2.499396518810822 +3.5147169518909154 1.9433007985886048 2.9847722429476087 3.5979334197034807 1.6868062590410544 +2.70272832437515 4.762720603661431 3.2676435630828804 1.367949579403923 2.802214378370276 +4.9655796299661255 3.1812470232086714 1.2103151780913999 3.728111707400641 3.085958880889295 +2.629253137621822 4.293603816083106 2.4004908818282904 2.584572332996557 1.6744996749951169 +4.324735514599761 4.6196012570330325 4.978403326666992 4.594125551492582 0.48437094726430385 +2.594691566256976 3.5019387426032473 3.066556278309416 1.0261294051656225 2.233033645880787 +3.4754305122704374 4.905414386550374 1.038103075057831 4.3649027637989235 3.6211117146131366 +3.5812789800273412 3.0889010052068304 2.0059518608645965 4.262691801744441 2.3098292644372465 +4.086647508352318 2.0840473354285014 3.0619886762164854 1.0789306874672584 2.8183197901119432 +2.623790914347516 2.502449758787383 1.1422422351885029 2.5619427648958215 1.424876580649675 +3.011542287904021 4.329562408716372 4.855310516357199 1.2754426192296306 3.8147911082719537 +2.028422998538386 2.886705293248409 3.5193815584423844 1.4524708567376075 2.238027780487641 +4.306913672431451 1.5509979208717635 2.039312171674068 1.954791448015719 2.7572115229743486 +4.479350504824733 2.0581629128383607 3.3842461152680956 4.731027636451456 2.770554063971634 +3.065115632995983 4.085195797902291 4.525312836752557 3.1982357706238855 1.6738270765762993 +4.946884865433475 4.012522755506579 2.9287969227671975 3.3394130476952033 1.0206067580209004 +1.9646060765551407 4.146683366264945 1.2717635880525044 3.5887918245979566 3.182778840449995 +1.254937678105985 2.0956050100266954 3.6404542817659706 2.9165188955576418 1.1094160654881866 +2.764897653790622 2.271424679944459 3.060224849998181 3.5583531257943273 0.7011756948612933 +2.654753253454417 3.159066601031283 4.644909747310649 2.22575602780231 2.4711609966077113 +1.570049870839736 3.6465266834876138 3.8221648696674526 4.140626281493914 2.1007554889341105 +3.9781969921627036 2.671377371401971 2.8629003079265356 1.4943587322327119 1.8922694220453278 +1.5156605533046923 3.811318194150107 1.255225632562765 2.191508791611802 2.4792479016610622 +2.2447846296250136 3.9566704028782245 2.710647720729593 3.2954942675535888 1.8090324441531433 +1.3801295532167948 4.8836451084205645 3.3218151034401364 2.5715884229880026 3.582940317339518 +2.177437590720616 1.2971823871178079 2.008679363299599 2.538982769716508 1.0276531157580353 +2.881163355243731 1.3026567772013187 1.055199611388784 4.107917304337743 3.4366798410336075 +2.2858407337303346 2.815419678144945 2.237562340174768 4.136479470199687 1.9713802588717804 +2.8152196151057476 4.9188233420431065 3.285546587705954 1.7392368160411529 2.6107896410723703 +1.3717235886917165 3.474527483031804 2.407485001574955 3.5991451856271013 2.4169894936277716 +2.769537665162846 1.1981808386430153 4.559802144599095 3.5523539873828156 1.8665781702701203 +2.429343132533959 3.860107708699588 3.73453584779309 2.485653282510773 1.8991563743611406 +1.2509112171072552 3.10438685072628 4.929141932670307 3.843095318498474 2.1482246559830624 +1.3527401320973498 4.903397172465195 4.2395622238633965 3.653184991561101 3.5987502937653573 +4.0219117664496515 2.7070606877619037 1.968850617330073 2.0807472960472917 1.319603813966252 +1.4412829261111901 4.938933588015718 1.6608667205822254 1.4414406819042056 3.504526778207168 +3.8509119648418286 2.2835917869887097 3.5120746078065985 4.608556041740365 1.9127896054890567 +4.206683788813176 2.621489463165803 2.3555911910547946 3.0954061509383752 1.7493333658660297 +4.965652782166062 1.8077259032457018 1.009602360813834 2.3031823488629874 3.4126018458192475 +1.7857601983222837 4.6641837578792025 2.1070522797042157 4.865397369382543 3.9867016218880567 +4.063584722009924 1.3719821510040924 2.6891005602713265 1.3908837666402092 2.988325826196177 +2.9631011755168553 2.8925830118058826 4.324320211472399 4.6450246789999134 0.3283659039932042 +4.365707260808142 4.276708504741153 2.609237558868803 3.9990255907241385 1.3926347518534063 +1.9976039000258474 2.3548651334384725 3.4251083267693834 2.9523490143667726 0.5925681027214506 +1.6987322211399078 3.2839435240453247 3.8291720822844066 3.7337088857610836 1.588083151711377 +2.8594555383550637 4.113412343639586 4.387017633397019 3.532782062679717 1.5172758746510406 +4.315735043288393 1.1522990579467165 3.649914555495226 1.913111131094742 3.60885208457813 +4.452430686507828 3.9978302082456585 2.3583571282290126 4.816566039129469 2.499890526496431 +1.317724574742229 4.658672463758101 1.8383171024002891 2.5239677174619772 3.4105790656505945 +2.8071459171415993 4.425591731851303 2.891161852279044 4.890385637861236 2.572209672633424 +4.781649833857806 2.3434180727058624 4.2157711587438005 2.436748003162154 3.0182606761487296 +1.703016707391495 3.9855010306943632 2.0941997191625012 2.1831166764513745 2.284215600904797 +3.8165203363069904 3.4319870285906315 1.230784127090863 1.652448398398191 0.570672079604762 +2.89286420483498 2.2891751020965754 1.9695509670831637 1.3010871435446725 0.900713281874315 +2.23446154920127 3.4336582009200995 2.9861736254774667 1.5482117688180819 1.8723800123641987 +1.0004623824764787 4.412878406979745 2.033810312051957 1.1153851695471428 3.533848874339658 +4.667207583913122 3.0366863336745347 2.5274290803454225 2.09261832953274 1.687501092296504 +4.906868191052725 3.9680703738441725 2.3069701464985375 2.2001041156689123 0.9448606723431879 +4.223216083374704 1.5530268878856455 4.828373794761459 4.73333838252778 2.6718798755342523 +1.2845677176786499 4.229103574482345 2.542907935050394 4.994200026567819 3.831334536416592 +4.649167780038914 2.0385519205364324 2.3938385194103398 1.0968090271780828 2.9150644366130476 +2.741778639106709 1.1412019556132287 1.6311728960768375 4.892875818052039 3.6332563453415387 +4.0972956667364855 4.997424685749935 1.2282993533274413 2.873672775834906 1.8754961877764622 +1.6460188017307327 4.395994912271629 2.1203307845535617 2.2355806213905387 2.7523900765401303 +4.6396455850695535 4.8523574382856065 2.1470517337397896 2.654273027953758 0.5500179758905163 +1.696458481566875 2.9197083293538784 2.4196559557055743 1.8055017168499568 1.3687679201439702 +1.8445521570512908 2.204164161223678 1.6498250686061442 2.024979221328034 0.5196743517332371 +1.2795782067962125 2.6310657862702533 3.635519376831685 3.8256712570453155 1.3647990383281272 +2.05360181430365 3.0907377858381215 2.8077879928298493 4.543216252470362 2.0217225991242347 +1.496914152621824 4.45334142103933 3.890086993625688 2.343469011532165 3.3365385320684724 +4.293709771005484 4.495125444250393 1.448409692258109 2.8200480468977935 1.3863477375274074 +4.3649602697008305 2.868283215043837 4.294777156070939 1.8120713195878473 2.89894299296208 +4.790739032598932 1.6403932214031074 3.069564141315458 2.3029006085461887 3.2422911193471404 +3.5604250150691086 2.6395119864078813 2.8351666568550224 2.207994713454539 1.1141927359962163 +1.9957855845191572 1.8379311216154162 4.50655380948688 2.8714622392894262 1.6426936641959151 +3.9509249477945394 4.403225306614598 2.185171061425392 3.3418138300793006 1.2419332143348663 +1.3463662656659752 1.4704511936020066 3.9160438914189633 1.2010076289999203 2.717870301466068 +1.869111010832155 3.9202824027567025 4.748494670181575 3.3865281335311614 2.4621650891045483 +4.8547412514817445 2.3600929155290182 4.937829389270242 4.890366464254871 2.4950998074872115 +3.851442931339448 3.4435779522298557 1.6878040589997436 1.601643424233853 0.4168662809191086 +4.028823912762885 1.494436057043297 2.995127976770372 3.877059425358665 2.6834539092796015 +2.9524256250826073 1.0055304810800254 4.848170588182484 4.730345207592383 1.950457259734762 +1.7274640391121046 1.0407680956212242 2.48603705558186 4.543837861217522 2.169353699718331 +1.0958782345689415 3.0295126415330755 3.3827348515488542 4.183758946640163 2.092983903596105 +4.18056074535269 3.3368504764521414 1.1813534977734093 4.01865760019985 2.960091482960306 +3.076261826114674 2.7082237608297333 2.862534660380281 2.4825569297505377 0.5289944170529706 +3.4559344914642716 1.257337991611216 4.753718778406098 1.2151593161738163 4.165960829979048 +3.1917146064559883 2.0232933332918868 4.838391300730395 1.0585150041469742 3.9563459263638228 +1.2865847635508483 4.411498195783912 4.302659904481089 3.1360954265819956 3.3355594193548117 +4.509943160562493 1.5398306330953586 4.448698977690439 1.8153096463861336 3.9694215946463216 +3.0716519521807504 4.635286654946979 4.669404935403007 2.3871389932080516 2.7665305555149504 +1.0084868835029668 3.8485909288245894 4.61747418743346 3.1443659305469684 3.199412278022231 +3.765286048606228 2.500304128018772 4.009344887701442 4.462872772976749 1.3438254358864552 +1.4987428240525449 1.9943318699234296 1.6298231925262723 2.607848196404016 1.0964220950880526 +4.77396145255147 2.555234761468024 1.2814446384531926 1.254911696314831 2.2188853342939137 +4.180561038022698 2.3552461854997477 3.510659603050548 4.650615422425048 2.1520394004215317 +1.6781762272307539 3.803574376663698 4.958784408101279 2.4102878022860734 3.318456304287372 +3.790843703104623 4.8941678992646676 2.356418749174337 1.8036976467987071 1.2340279165576198 +4.873538924357035 3.130827393702661 1.3901594914671236 2.4884399258468357 2.05991829731594 +1.1606842678582994 1.9181808804476286 1.8348478317712824 4.438684277056103 2.7117826889110783 +2.332189435330759 3.0064074484691625 3.9823062506537568 3.685424989348114 0.7366874592082627 +2.4623642663063667 2.2868309917357923 2.286420685573343 1.7870381605196681 0.529334333678114 +2.7288240092643057 3.1887348138055183 1.7164343052452367 3.7512598287333185 2.0861526452233288 +3.7029903714535948 4.037948096279866 4.117263286888818 2.3462282009577464 1.8024322325734385 +2.6504442110390642 1.4142325704030467 1.1183636777413621 4.206190301168721 3.326092674113396 +4.7215860954717055 2.7093908741024526 1.8156312918573887 1.8193815312975534 2.012198716130471 +2.9034588614847667 3.2225604123097438 3.1098190773364953 1.834799788119935 1.3143439380973339 +1.3700960891372396 1.7460583863926837 1.0924636340252096 4.439443078421581 3.368028956254598 +2.355140159042109 2.856734688575066 3.36726762966058 3.662831597027566 0.5821985321718887 +3.815199961790129 2.965866934685785 3.6855478533696306 4.276282502188961 1.0345694835272912 +1.2920490523288546 2.3107690490164505 1.2333135730525346 1.1006974677939736 1.027315658901939 +2.017889243150412 4.552015348336909 1.830027083732233 2.955870446450112 2.772962025409577 +1.151696651290579 2.6408230096202696 4.38716795260865 4.312618084265762 1.4909912789624855 +3.204947742553526 2.6718057523690284 1.7305754550715178 2.5315637183099744 0.9621967467953974 +2.2858114593128764 4.003393858961745 3.2022572812455654 4.809762019116763 2.3524797091286285 +2.0015351686331813 3.969952760756748 3.1146295215941864 3.663565292391565 2.043525947337702 +4.317731238913799 4.371368068246822 2.2840089591542987 4.400037189917744 2.1167079115571843 +2.380871164458657 4.733370013046628 1.2207973057318044 1.4387754808581188 2.362575991886637 +2.509523097949467 4.032676906253905 4.695424427421589 3.795352690113073 1.7692163960504896 +3.387016696188748 3.8141249177961383 1.2379620418110822 4.257200152975516 3.0492983135259832 +4.856144971258996 2.246475511418046 2.3782433916116728 2.779655606362282 2.640361046481626 +4.460093707664342 2.8097124595169425 4.2639203133951815 1.229799579330261 3.4539320915616187 +4.44572724132262 1.627245373844917 3.5770895583854365 3.3635173063264046 2.8265620715190685 +3.634702699413824 1.4563121461973703 3.9917389719499172 1.1152234490146036 3.6082858750424016 +2.4895709141437585 4.375759977230667 1.003221884617259 1.806155861884145 2.049978573926637 +3.858362532869182 1.4585512975766615 1.9040390205752709 1.4613190907494196 2.440306313006878 +1.236928140665328 3.959421772785985 4.416540381263328 2.513158558540328 3.3218720535279282 +3.399740935090585 4.953993177515942 4.089982034006901 3.901530862756961 1.565635295025545 +4.959300598036352 1.4709462791691328 1.906946524465687 3.455294654170925 3.816542648094121 +2.8741430431869457 3.657304173693214 2.196091838412815 1.4588805417732296 1.0755565313961304 +4.453003398046686 1.38946087901104 1.320474923855258 1.597857785076254 3.0760744493003442 +4.4662730180428465 2.4459217152362935 3.1933964989547743 2.653558843251175 2.0912302793493818 +3.368662110971187 4.236252920099357 4.256407259077898 2.0819496528534542 2.3411492249216006 +2.759893181955296 4.752261607063513 1.6816975174608868 1.8986050089849438 2.0041409135206676 +3.732645350904107 1.4421975962782283 4.3720166554313895 1.8391712161936131 3.414887543644495 +2.488429948688785 1.1045326468833494 1.1219358452539572 1.672228613732233 1.489293078270308 +3.8703048958244795 2.9127542242025934 2.2811289018159653 3.9789527876668385 1.9492329866101907 +2.036375910411819 2.819683755532613 2.087171630454147 4.539280061501939 2.5741808285051473 +4.20695860856606 3.5544424204300515 1.9549528299431973 4.5689656137139965 2.6942234891516907 +1.1830169306446394 4.696754269548141 2.599032032996162 3.6396169225658355 3.664582786512727 +3.688408240733412 3.903913204601539 3.5857708082283373 2.3385531278116973 1.2656991474263015 +3.2927755044104736 1.3255962770909226 4.253103707436193 2.8838733342223373 2.3967865836008215 +2.6640406851910394 2.44957055017688 4.170666689107705 4.851054248630891 0.7133895639599093 +1.5908414766743113 2.005345142295382 3.9649816715765973 2.9598598827073546 1.0872364504895018 +2.7394634773944952 2.5992392071055677 2.2212552533036267 2.796596647440589 0.5921828820436515 +3.2478555716091027 2.5288400550018504 4.13749347332112 4.087508807804141 0.7207508445425771 +1.8379508879765862 1.1475653147939346 1.9939701714013616 1.6330057050287614 0.7790555728844987 +2.2070839826705893 1.8227940243892204 4.8329650541517 2.7677258651559122 2.100688382364189 +3.6480787127899923 1.0052672875098145 2.656000845564548 1.9047202298406396 2.747521572827762 +1.8701645685198542 1.547711906076148 2.404870666859046 4.878816340946555 2.4948713229049178 +3.5643705318711434 1.8746142769027 4.16123387580129 4.163532227648809 1.6897578180396722 +4.320574474873333 4.238649048800811 3.9788414215734136 4.464168352045993 0.49219305651248313 +3.3521168330963085 3.6005700151424542 3.553354322032216 4.373224395554621 0.8566889290322878 +4.475500821137473 1.1327089084220403 4.840425260340627 3.7880549779320805 3.504531492655237 +3.4242516019237326 1.8037584040166301 4.799384417479924 2.7558823050560273 2.6080450701519933 +4.480105646491274 2.704645085316451 4.9505443898484565 2.1489489613201735 3.3168052625135815 +2.0123376842990623 2.8276814147376323 4.522144499147819 2.2583162254607867 2.4061803447601955 +4.536474056881108 3.977982672792885 1.861716974438906 3.7017612690237924 1.9229341205915431 +2.423696638315801 3.9066163269557372 1.0036099324945038 4.818351797589201 4.092835972802005 +1.6561840711541165 3.080086225450694 1.5705219230023797 2.404329570903155 1.6500704647705984 +2.9886155638164205 2.574869117894661 2.2373641313269 1.0881241257199465 1.2214494307994734 +2.6694405476872425 4.290553213716105 1.3821929859242124 2.2375805818079195 1.8329468664287343 +1.9514590732650827 2.0128272650898364 1.573707445139663 3.8174293886303055 2.244561029392889 +2.214620764093297 2.012427187146313 3.8663497332716856 4.451784796262701 0.619367786971449 +4.839512691926311 3.166367700405689 3.9910108579363546 1.9088105197736902 2.671136913543605 +1.9448474572723504 3.618350189131087 1.0302196151239045 3.506813465415153 2.9890012534020602 +4.192256319882336 2.062269413455298 3.398908736129733 1.2515249198175669 3.0245828598519213 +3.5311858816665973 4.437790567382981 1.0409735442227155 1.6136583639662665 1.0723338840713776 +4.405902570964999 3.607711690776548 4.004351317545883 1.7623283133752476 2.379868868750195 +3.670679555641856 4.461037264512659 1.2129748183586169 1.0453200088764723 0.8079439603796784 +4.130396754684407 4.388137205339062 1.3670649217702193 1.574955473999145 0.3311323324740614 +2.7721355627779123 3.2148331493544804 1.6958185306291624 4.191496274361482 2.534637755917314 +3.141827978802542 3.8948088408032384 2.6645721595553615 1.1530962837805365 1.6886502010743927 +2.7015151338076073 3.0812010544857134 1.2204016989415027 4.172585208425675 2.9764994325602454 +1.128272043243841 3.310916805256472 1.4924695771750662 4.418721635962111 3.6506012201686167 +4.212563901527594 1.8551005694418574 3.6088507547680058 1.7172873877739527 3.022523007932721 +2.0469368245371187 3.9956095210344884 2.853605751899764 3.4702383407433723 2.0439082728190865 +2.141428057897466 3.529450121051049 4.552976347935413 1.5517248623493125 3.306677445342062 +4.858676554992556 3.035087075333462 4.490392300102883 3.6851711490443666 1.9934542112713116 +3.2292558830568563 3.8257685546907885 3.7836932170483952 4.002111734322934 0.6352432731704126 +4.17781231674759 1.5026202209341712 4.455704195948912 1.2632637017727584 4.1651325379102015 +1.1420378613801856 2.296150817434488 2.048279293592254 2.8733367718194542 1.4186953717098774 +3.5948315677641194 3.5882825877264724 2.982871591368659 2.114244622589325 0.8686516563216279 +2.3914242063555378 3.3168969146853016 4.93220277906786 1.9305919029426244 3.1410456197795877 +4.968556871472304 4.091763212433436 4.936312736293612 2.7716626123092607 2.3354822370971338 +3.1134489137132486 2.4368112457503317 4.518102929371674 4.706940439873659 0.702494227078687 +2.876490114962885 4.268803330020356 4.525159219358081 1.6870461963135406 3.1612373559096594 +1.3278940139346505 4.321838184678395 3.398379494383113 3.5395784551668164 2.997271900254771 +3.7660076341542146 3.1856356397284946 3.495865475460541 1.2808511832126013 2.2897860089485063 +3.7451134183826684 4.0337248206110345 1.3322709440667069 4.808438819725374 3.488128386578899 +2.258334572050292 1.2125965716462623 2.7087977142812165 1.2486345694972973 1.796007899446515 +2.576260653153835 4.475929120471392 4.521861146400886 2.0196119848818253 3.1416542063128907 +1.0592778061200296 2.6792585159353837 2.0678879114160287 2.831888326864898 1.7910985832666786 +1.404207872351253 3.8063083762724026 1.0864347114833053 1.7431488952429999 2.4902530694869953 +2.725553452608861 4.505277503335659 2.3687027155749747 2.4502455140538784 1.7815911216435638 +1.616383108720088 4.984576803622497 3.7552544906574554 3.203920808931403 3.413018838943897 +1.284514925876087 3.1262188032477645 4.237890302978254 4.753128043867068 1.9124181293749751 +3.2635987272550335 2.2278390244270914 1.3009730305603164 4.194664069527658 3.073474579527561 +1.012212916712675 2.8522864217732007 3.5940539797795723 2.1493782112871758 2.3394355259538195 +1.6775582295716873 2.949241314962658 4.429432027310357 1.9312426647542131 2.8032352667691254 +1.073529315301207 1.5956820096025366 4.2031954874455835 4.922223616400497 0.8886196522666719 +4.056278388878329 1.864334492186412 1.4932744504396354 3.281859123239116 2.829072847775075 +3.1997569319967996 2.7938164797745597 3.625673923848486 4.040273085866985 0.5802414289731799 +1.043001423617223 3.518325192813612 4.845744261348962 4.358330765881574 2.5228554611614906 +2.293550113133405 2.715252756049186 2.3910423095150533 2.339751831765773 0.42481034844963933 +4.267160010656319 1.1524596989816351 1.0925739601069195 1.2191364318295501 3.1172706155858387 +4.9127183941596915 4.116998394104307 4.861951297071874 2.469114205790857 2.5216739804935804 +1.637333168872384 3.763874830229773 1.930467961851261 2.597536147287516 2.22871249862109 +3.2370560180950445 3.503142591116175 3.8172005139623844 4.471056393597054 0.7059246246412981 +2.3614198473487047 2.2979702686553254 3.1130394373933665 1.9804686575806674 1.1343466931771402 +1.2835000133724606 2.802908087359917 2.892590958175566 2.746065238160965 1.5264569047058187 +1.6285405717729051 2.6871380013792177 3.942092981542474 1.871381302530684 2.325612903207436 +4.751361674302381 2.3458789012165684 2.520408335498151 2.1663709986155752 2.4313966783557794 +4.925177980024926 3.363736839364418 4.187656769263217 2.4748747920877054 2.3176972487977032 +2.445031950447653 4.294649370617481 4.963743509411654 2.402858045903536 3.15899018013714 +4.2656508191250895 2.5923169962506343 1.4499111239248088 3.4744573682583644 2.6265630733376164 +1.4893406486638674 2.1560303178968745 3.5976497772389497 4.692988582367192 1.2822800837109585 +1.6768108585000068 2.915053818237573 2.2549408966440976 3.8797137490898006 2.0428246252148505 +2.1922342017629166 4.57743571797131 1.8661451087516578 4.861771493964543 3.8292249493476405 +2.9390358485275363 3.808618009823069 1.5831015118175977 1.0179859964766256 1.037076988908009 +1.0382391021314326 1.62964632752555 1.3206988014441956 3.548247069641927 2.3047198947809426 +3.5261763468340357 4.362967701178247 2.1532493746059598 4.575220131505008 2.562452364041011 +2.12126547954909 2.2971098556438125 2.256050496462917 1.7148317606702315 0.5690685060492938 +2.5139041553014785 1.471476238665383 2.4518262803902995 2.078474871274936 1.1072701730249477 +3.4267091381435666 1.174092727760295 2.6411543063083878 3.3066823593635375 2.348873832655001 +2.85669844714716 4.306465525441925 4.576414097467849 4.875720238621524 1.480340753826511 +3.9246363309177164 1.2337018497344716 2.9273968365080325 4.279020406832369 3.0113144402199588 +2.478384262267855 2.1485202673252606 4.619803747883893 3.2824058536563427 1.377477180443935 +3.5061189498089678 4.606923129554725 2.652477271638398 2.331204135529731 1.1467285075949007 +1.611584489644525 2.9054954772814146 1.197446103911636 4.767074068671307 3.7968999790252234 +2.363995931763378 1.994016647479501 4.368645795544019 2.9806405985726583 1.436468968554043 +2.470894157576783 3.8998561510408645 4.80576371617289 1.8354658618976263 3.2961495296598837 +2.511468416891574 3.915869858036853 4.613107940741554 1.817719776512646 3.128344353903835 +2.933024193566817 1.6428427611210816 2.727796497339153 1.6605544850308327 1.6743875421967407 +2.000657797446454 2.930504380561783 3.834192343491987 4.720291045542832 1.2844397914684225 +2.6233103441883263 1.869588180724027 4.963384097323354 4.493595180816998 0.8881434150910089 +3.1590854155656687 3.0033054798325476 3.892666352180194 2.6422186159897505 1.2601138556975002 +3.8770727982433155 2.170464981582337 3.8846130779920856 2.6923909697968686 2.081803015455064 +1.3069422274240847 4.851326884168965 1.7723685938609224 1.6869785222122262 3.545413101361348 +2.25201404850542 4.104259524087085 3.8967590354850383 1.3658725042810524 3.136271661645797 +3.9945175898902403 4.540149501320205 4.832723689575181 3.7682899508788292 1.196132671088709 +2.2056062375546923 1.5673703955385858 1.8265674718685045 2.4971091613930514 0.925727361281086 +1.7409687144347008 2.563521142436248 2.802790175920388 1.942637211064969 1.190149410687922 +1.0383333295245771 3.466406064895901 2.821728185415629 1.0264288342450691 3.0197080932711056 +2.4205294931488774 3.8029002976849102 4.833386349890026 3.4834850520577247 1.9321445481958461 +4.395806338381428 2.8557808044028814 2.1113868184303786 2.5989978811054675 1.6153771057400304 +2.7235775342924513 3.911199836747073 3.9886273549973597 4.644232115879522 1.356563428586726 +3.188801713612001 2.5128869666695155 2.4082695382927692 1.8338486085831245 0.8870288324642084 +4.373438718661045 3.1701975543900303 4.697655865039831 4.506281939410343 1.218365002290819 +2.147294141042511 4.596972667614754 2.9061877172469757 2.7447772942314983 2.4549904700848004 +4.727578742530836 2.216230237328631 1.1821110820818244 4.3741569991439535 4.061530309035544 +2.1593351809074304 1.954994630272771 4.389583765723454 3.1615091501598847 1.2449587631826549 +2.3850616747471975 2.8152273713855323 3.5384971584477105 1.9564872283950603 1.6394505010367149 +4.869932961593492 4.696643692495683 3.4130409849356713 1.2508847448576947 2.169089388958552 +4.651405056768484 4.7568058056297975 3.224351957885621 4.224447109402033 1.0056339443093398 +3.946169220577463 4.262655201743973 2.7664144159106807 3.7384271238032554 1.0222387590869288 +3.104377722018426 2.7934170232947517 1.4149567090399073 2.5550656397434266 1.1817550211531311 +2.9908260793525225 4.498859767777373 1.7271079281004575 1.8789646496290469 1.5156602750279067 +3.119177515991511 2.045312220869141 3.7283482511447343 3.397740047426104 1.1236051158811593 +4.2726313292133105 2.9260009266834954 3.8824276251700742 3.593161275900934 1.3773483444056946 +2.7392620427395595 1.4005277293933593 1.0087868400029456 3.7777558789750585 3.075613613657715 +3.535400463961529 2.629662092215208 1.6563736229562172 2.461361861909931 1.2117623788959113 +3.400432555363459 3.7949191604193375 4.022797012047949 1.536424250377126 2.51747277871025 +4.022135564002239 4.835318200009887 2.008481242026354 1.3822894582238932 1.0263440697963107 +3.1470205591714713 2.544861431546863 3.9759037381371263 1.4974481871362229 2.550556318387975 +2.7112914963747596 3.8570194138049207 2.743708761325331 1.5854911246804129 1.6291594626107642 +4.254916656972942 3.988491795412943 4.6756020477008935 1.4359676848068155 3.25057118243877 +2.5475822159388133 4.041333080928759 4.056267633536034 3.000450865753888 1.8292186019686516 +3.635250423256629 1.5875154066934378 4.290364058556635 3.039329438186294 2.399647123938063 +4.113950305813166 4.70664916912562 1.9055642481630812 1.2348219847740922 0.8950905688633183 +4.27046458449799 3.0953222300036476 2.2884129554196426 4.078763486479325 2.141568251864085 +2.5831145779341824 3.6549419416432722 2.586811491918802 4.059543913509286 1.8214704727772413 +4.126585204684398 3.9565014353162398 4.600822682094416 1.5374400436073374 3.068100663013933 +4.100608029985309 1.9604129784659992 4.588465663853694 4.2866134905274755 2.161376781842884 +3.604844203682997 1.4868944857964506 2.3272148697143864 4.993233993153765 3.4049036658971974 +2.035792279987497 2.6965117887833774 3.030313064303343 2.352135222693834 0.9468238770508492 +4.470984786245023 1.4363276739821047 3.1475130770262667 2.7253381941557118 3.0638824097433446 +3.487038040687163 3.215032146233893 4.215313557111298 4.5875176628593755 0.46100228085449846 +4.653721757975166 1.3835532905895662 1.3952768422884785 3.6722128793016244 3.9847759688258777 +2.4022199973955654 3.6061598476751704 4.1024739270624035 1.6413061970359344 2.7398572514667476 +4.837787961350274 2.2384439252065413 4.885485757566735 3.452071558868244 2.9683776180375747 +1.4537750962821434 4.05564691631829 2.578400612051778 4.733858755732345 3.378718215101266 +2.5447799456329157 2.418066337270827 4.368721387712299 2.0550127709231636 2.3171758461429794 +4.647972088076168 3.751344331439084 1.0414709521791536 4.656309816684816 3.7243793241710272 +3.6040283087564817 2.526097459085231 1.0207829941016588 3.9718695129836985 3.141790342877815 +3.5981180809976254 3.863199137446886 4.310722245758804 1.4584911948417627 2.864522636374791 +1.191577997234639 3.479375597458764 2.681506227806305 3.6296712919823477 2.476496486675324 +4.544648796717329 1.865234830140408 4.733450935880508 3.40501423992585 2.990652647742027 +3.267552224060423 4.913430549860805 1.252650061838029 1.0870200656105569 1.6541912703764885 +1.6609595409470876 2.11193422997009 2.6354432334298354 1.6998664889666952 1.038596175093882 +4.932466895756125 2.7265615460741417 1.3496129090883988 1.6511830415812874 2.2264238043479887 +3.4504074653561307 4.730630137319869 3.761442369990705 3.445281893161312 1.3186840170863383 +2.3956406735100733 3.3763105718568096 4.653562375190074 3.49515843709227 1.517765836130165 +3.498975769960188 1.8065100296920953 3.2400013779609904 4.714277293166654 2.244533304751061 +2.197346522922097 2.3938221054456204 3.7096544843290142 3.110415494162004 0.6306266897811542 +2.4769913029536 1.241145939757478 2.8257790939165983 3.6416225995266567 1.480849211560537 +3.9669170341914786 1.5868577707348517 1.9588763845687458 1.2942066112460724 2.471126869493858 +1.6325246749850044 4.305710760396902 3.133509640091699 3.0970508466944344 2.6734346991942353 +4.401463031833531 1.1647330027695268 3.995118327347616 1.8528007135833207 3.8814876064840673 +1.155509169149017 4.35334170332988 4.3959056298823125 2.5131467586311116 3.7109181995755036 +3.304361474124615 4.905794253291624 4.105648876237984 2.922445388226655 1.9911196448814288 +2.1763562150897444 2.247288981804968 1.786504895330307 1.897341228760192 0.13159084391422143 +3.3773276028768486 2.5105830307286405 3.9152393274758497 2.3817847291717675 1.7614565445699517 +4.279120686394099 4.312400591226889 3.6781837438982876 3.1534761682462875 0.5257619157111696 +1.6149970442887667 3.3003638110499547 4.335563408976672 1.3234719232472196 3.4515440395433057 +2.2573835010059753 1.7460200021763121 1.9568010863950116 3.7588218328892187 1.8731714814001559 +2.330021699170013 2.52315286443512 1.7693807986051935 4.8747293456537575 3.111348460981715 +2.6881257119308297 4.517933539904822 4.797729658399756 3.159256919291848 2.4561737731916837 +1.2116457981237048 2.186158339402683 1.8901602566990796 1.4296219715763576 1.0778544452632695 +3.2469651418075895 1.0685395675020684 1.6232144862612623 4.388134452225452 3.5199886933022606 +3.3650078578798945 3.4900104807572103 2.319188344233579 1.8247425492690095 0.5100022547835976 +1.2981475627925816 2.2333768360198505 4.32004575054226 1.9359861120004376 2.560936186949095 +3.8478684151238824 3.4873844016021684 2.1657601927470123 3.930177423571953 1.8008655942175906 +2.6918317257822975 3.458610052302988 4.306543576726114 2.750028418324639 1.7351335511583659 +4.73771863275121 4.9650349173715895 3.640015874906112 2.3276679049380347 1.3318895928465495 +3.392140594733458 3.7278777080471373 4.651757039276445 2.8138408251597506 1.8683295799642112 +3.3706090829440982 3.7010834857535237 4.134570159866788 2.815347337665506 1.3599860975498843 +1.8898695386739641 2.4281738904482073 3.2509593203678957 4.122520834702744 1.0243978955507191 +2.1547780465359834 3.7302801853873757 1.6362032831844884 3.717988879597121 2.6107543467274765 +1.9535886335287396 2.7539989765563795 4.479471604354126 2.808033724583151 1.8532029848775111 +3.334035681675479 4.441494246901666 1.2938026178218425 2.19145381193792 1.4255673046162587 +3.2482633435912196 3.8633283461549697 4.09374171872461 2.5524694533453123 1.659465321543713 +2.7325495687307293 4.745758077862192 2.8116093995068 2.3776690621831382 2.059444759539789 +1.0547598249494183 1.9828839812230594 4.852242095198775 2.8390994594723913 2.216789958755233 +2.669971145406236 4.623471083595858 2.5792046193449463 3.9343811542041456 2.377533480130163 +4.220610159160229 3.4052596776632376 1.5550875715327246 3.515488791895701 2.1231979070444713 +3.0912531804340246 4.011811766824311 1.30892963119266 4.301244903081226 3.1307153810837596 +2.9944034203870844 2.7894692161090435 4.892536782675412 4.867384456542414 0.20647195352631914 +2.2465510571814034 1.0949714069270895 2.58726890004681 3.6343378989570585 1.5564347655326767 +1.104209040020566 1.066375487587603 2.354508847122716 1.959445870686464 0.39687042348903806 +4.568162198427391 3.719841372774916 2.707980258807926 4.9447685999497235 2.3922521410385595 +1.4643979046496667 4.959845125664407 3.269694797866602 4.123309456645474 3.5981674864549933 +3.9742083541001723 3.795050865221322 2.3718901710267524 2.684833141493459 0.3605977101783945 +2.6293002817903512 4.643005642801764 1.2396722817957904 3.5186938786741035 3.041208430871498 +4.315274376789748 2.4299350198368845 4.949095905121895 1.5597627206797195 3.878412552325548 +4.302653617375258 3.8244546227747196 4.610615782655652 3.5120525414224257 1.1981299902038252 +1.2635910242355597 1.9876106712412 2.4448677880587404 2.4566919719051774 0.724116192730011 +1.8556457596702138 4.341058981944547 1.69301346964395 1.400816414314923 2.502530320415527 +1.4436450461129033 3.223560269589887 1.3773169919010204 2.9090150776432098 2.3482327884243945 +3.611472658052279 1.5673757059208349 2.1493892298095134 2.053910020984592 2.0463256410041124 +2.5420351285396863 3.3439387440454436 3.5075782556348245 4.63761107388159 1.3856491543229597 +3.1642543341984224 2.834264545063085 1.080121436028513 1.322301521361822 0.4093219450086122 +1.399588156233953 2.339676597452782 2.7745142894706247 2.7748015957377183 0.9400884851215542 +2.557262339427915 2.230249193839112 3.2404808745776728 3.061052904367447 0.3730040132245835 +4.228926125192477 2.6239951640808203 1.9452014949394418 1.8039484721905348 1.6111349435632292 +2.8160387497003074 2.2231633444574723 1.100914932921889 4.99477043609186 3.938732273931414 +3.1545088023299868 1.3060842746470414 4.997262722212946 4.474647116364087 1.920885292258934 +1.6583805920137165 2.866152750821736 3.441683008464532 1.6778132116516153 2.137744196039513 +4.192470845398109 1.4105307983142699 4.94110881462567 1.130266654970983 4.71823148980319 +3.4436128056367084 3.566628793286515 4.940432281261888 2.107549078896048 2.8355528863810657 +2.4860169099790514 2.8102382000214674 1.8748883048663711 2.51065226066267 0.7136632626151683 +1.5475231031560615 1.0177064439757562 3.193223343541511 1.981006702948831 1.3229417508245713 +1.7347654258740968 2.8252959849405057 4.023819273197921 4.162467435806354 1.0993089707868253 +4.265003922145665 3.4536348888125485 2.279515382313247 2.271137478548721 0.811412285785348 +3.20238625838313 2.3344338902600876 4.978056386505742 3.9863523712460616 1.3178839733499188 +4.191362021510034 3.293153752797086 4.499271542427156 3.877744696191785 1.0922791376638101 +2.5000231840820986 4.320936801509731 4.348030949765838 3.9312591491575404 1.8680003040459254 +1.085193648627301 2.443685062523744 1.4076312393038575 2.3026738959348396 1.626837508425289 +3.4145639177506197 3.8677604064118563 3.608838701367438 2.2097203547354063 1.4706866441282536 +2.5441847810592972 3.376048966134132 2.6446273416834867 1.641481410387256 1.303188314053806 +4.048873086711378 3.980734761553217 2.08973064171183 4.375293778650742 2.2865785978814284 +3.7146186996712394 2.271288047586952 2.9057140559244403 2.208155474182321 1.6030568755375247 +1.7222919350780699 3.1666378322090716 1.8337226348604272 2.4122342326171657 1.555895478269094 +3.4782130476669364 3.8990648916799 1.8126811382550159 2.9643600000258017 1.226164946187406 +1.6244351998186102 3.430030871629997 2.432129454689281 3.5790472605480166 2.1390643242922427 +4.099626333278918 1.7612304820118947 1.5711639591304198 1.4369512331467469 2.342244268439736 +4.539776545458926 1.9620292334006941 3.540182624048414 4.4759089700241965 2.742328390141602 +4.276558173379765 3.720436760264127 2.704420133641171 3.464871038178386 0.9421022260546903 +1.518602489242244 3.1065256454863275 1.3243292379098675 1.2567344552171642 1.5893611939340426 +3.5654935394035565 1.796832379428999 1.4582782770728016 2.3255601085953335 1.969857881698988 +4.151983693154327 1.947414525896392 2.4962937707607438 2.902717435213038 2.2417192973811817 +2.744909623149493 1.3311078806629384 4.3317936345620005 4.5701117402732425 1.4337471487566464 +1.1226310134414073 2.9049176852243925 1.4787153426744344 2.889368059714878 2.272990732165192 +2.805480054932458 4.443694780699719 2.5411107525654306 2.7759610987587213 1.6549628916769736 +1.2438241137913946 1.0654667338345587 1.1848736383923617 1.978019766211474 0.8129527262144576 +2.354386950570023 4.557068443145527 4.939626749226347 2.5429858055324774 3.2551026974159343 +2.565475353872193 1.0510189833661086 3.5708696899633057 3.1855317702987627 1.5627102772100336 +1.4528530424721855 1.9386389026471118 3.085810502291608 4.568855168361747 1.56057982285591 +1.0327803643276572 2.308778026590632 2.7501879247216827 4.767553959008262 2.387034928607819 +3.3712369566908365 4.681166081943978 4.45641413877626 1.741818669424053 3.014123898484266 +2.9079049825141743 2.962596677527531 3.0952839517845496 4.403514485106017 1.309373250764657 +2.5220656178380207 2.895798768848494 4.27549953448683 2.4605724320739593 1.8530075162386677 +2.58977069722746 1.4004482793204693 2.3447650357572094 1.081294781717249 1.7351786353513958 +3.774164063422755 2.9126138148152068 1.0261513594171232 3.0808318537594928 2.227999273946635 +3.4441022853377636 3.1316083620771855 1.9984948838353538 2.4828979649880245 0.5764536382962545 +2.314135308524626 3.742213189240876 1.1207400337973135 4.746583171925188 3.896940453188887 +4.004062740821098 3.4935638783499083 3.282650356899826 4.659050155713441 1.4680209449318284 +4.020467523355051 1.2692910168473674 1.2140875569194054 3.394415184468775 3.510384698778025 +1.2776611774745898 2.5157652229752547 2.902930899783112 2.3143468880635125 1.370887583406112 +4.436276568673838 3.5579351566497603 4.652053477227815 4.659077090769767 0.8783694935638632 +4.160386104332142 3.2345775554930203 2.2292299661717134 1.3153335381341598 1.3008951342377293 +3.85603640243047 1.795169699268853 3.2275911344864565 1.388911479513376 2.761867926207218 +1.9126399837691044 4.331421707540921 4.415972095306122 1.2183805933645706 4.009376066240406 +4.904656467183507 3.669434361128061 2.901087954567038 4.9801516378897945 2.4183216185196788 +4.362160845176126 4.6830310910846915 1.339732574225346 3.9562085154065967 2.636077401270633 +4.635111818883924 4.124698519908596 2.067314287485231 3.9164673342910445 1.9183036063882333 +4.0631524286655285 1.1321042705544473 4.22983000382104 2.4416700642926474 3.4334471416494163 +3.2912870410197392 2.7287232113841062 2.5562144770918023 3.2200889587676507 0.8701766428919394 +2.5499674990632215 2.805605913331857 4.568923360697579 3.3813845590789366 1.2147425258875333 +1.0450123348764029 2.224429844174632 4.359022487637048 1.1889379984730875 3.3823751018592194 +3.3873124919887454 2.0889213591125952 3.790504561506776 4.977220961107049 1.7590097631939532 +3.0594285622233865 4.8960118939051345 3.9514946612908433 2.368193672619415 2.4248464600751842 +3.278122336509334 3.7483277148535556 3.1620861045331226 3.376249452874264 0.5166807888788993 +2.3880882810082174 2.534248487986594 2.3089256459187597 3.1836586952016814 0.8868600304511193 +4.0663957752471855 2.3300322895963603 1.139628038886558 1.2297870050254804 1.7387026178955167 +2.069655339091708 2.4534947582079836 2.933377737176453 1.5237826934631906 1.4609212459706764 +4.722984582759758 1.3733196050340566 1.2901188974901232 1.101369640106713 3.354978650478258 +1.183445571791947 3.2129078270922196 2.48688978649183 3.4017637403072856 2.2261427171361663 +2.7588653702143384 3.6648143736640075 4.630370495376198 2.900521245249609 1.9527216967645364 +3.5061484990651484 4.888041306068211 3.52299892132557 3.172567445592804 1.4256331748493538 +3.489676824355265 2.073056387800071 1.4133251628183223 1.5484068169806138 1.4230462095649072 +2.505698729095058 3.0130722400379706 3.7689467769732743 1.934992141754865 1.9028445768495195 +1.7537091709886306 2.168757771385834 1.282324413001581 3.417505457402817 2.1751467612696924 +3.997992187654816 4.719136551534701 3.609611116168344 4.607861031456221 1.231483693326054 +1.1369998484586712 3.4051433829022546 1.8657207141520935 1.4571647542075454 2.304645973950108 +2.171136606599464 4.0845082021117936 1.35533447661193 3.5316965894332255 2.897851429703975 +3.284926640560981 1.2786931188153567 1.7233558009630285 3.314147507926989 2.560388876464113 +3.3258340449140293 3.0854089466781187 3.621933807518474 2.6542818509370316 0.9970729847597122 +3.627772915416248 3.713070991157821 4.7519906594943535 2.1171811408432397 2.636189856838792 +1.4803547278527516 2.0594327009899294 2.8248616874987236 1.107792991372317 1.812086147563051 +1.4827698581897892 1.6289276637356749 3.2701831351224073 2.109911367120735 1.1694411826781694 +3.425144832953346 2.6943064301928743 3.3428376137228555 4.275248403125271 1.184700236829348 +3.7236459546743172 3.162199296580721 2.58559983564506 1.3458643641750063 1.3609431983391311 +2.5995779777815886 4.761274933755798 2.5370750938982685 3.8557103949889617 2.5321399619197016 +3.0793025719122764 2.797658455555999 1.833433489481858 1.9491998802664345 0.3045082355428103 +4.297958219645906 1.198593584439434 3.142012483173613 3.2914151114580896 3.1029634685743335 +2.423365298997668 4.983752619931363 2.962790724968145 3.5927215717777545 2.6367396733390835 +4.351329121639106 2.6988514143729514 1.443767118983586 2.09791191723616 1.7772416802710056 +3.513749108119427 4.83155566979214 1.2986165065332744 3.606595687371122 2.6577023974043064 +3.871712885186394 3.45227528125311 4.1132633116198125 2.29419395301563 1.8667997308243665 +1.362618676659296 3.2062228617763457 3.410761866259654 4.772548537835149 2.292016433244266 +1.0317405935389146 2.738857450194179 4.937567503925832 1.016422427938652 4.276637308588964 +4.778608592062996 2.0394782252661927 1.3603099188478796 1.6591187515412322 2.7553805335749826 +2.9700907904101483 2.8014022523140887 4.566844325966473 1.0604650990506075 3.510434603554393 +3.1070735064418296 1.937756110680704 1.0249723299525941 2.5704156419038067 1.9379623841768223 +1.0247213914982831 2.3602141406781323 4.623635513409511 3.682412617797838 1.633842532906881 +3.774255805575443 4.542081873689872 3.6569287456649167 1.8276177594096272 1.9839192411261009 +2.0630723033393528 3.376787317845282 2.684700465026805 2.1063706883488162 1.4353788593715338 +2.980975003805945 4.061814625242169 3.9065166607810653 2.553252566795709 1.7319174331752676 +1.6031031171105434 1.4077799585637463 4.905992041194415 3.968286871575961 0.9578319901704427 +3.886990406248354 4.842615489532646 1.067724802591211 2.566527884972181 1.7775348040352983 +3.607594835664516 3.728535589800717 3.012834655312621 4.616362516457812 1.608082170624345 +4.193228338639653 3.486950515431808 3.010448392601484 2.493203527949681 0.8754259612119538 +2.271888955180415 1.9117247837039053 1.3675014222302235 4.463686213619194 3.1170624781745593 +4.142033643287562 1.3131482543677442 1.2034095053536626 4.7370919081064065 4.526533316697055 +3.711165254001435 2.171974145968604 1.1438130056663294 1.5460880362015867 1.590891092199424 +3.0120866749768624 4.845121358294488 4.44280259167428 3.9501907035759225 1.8980733975642714 +2.697892213942287 4.371394195925271 4.313445077723287 1.873015739205246 2.959105310731705 +3.1530899741987315 4.8008348370483525 2.0694732171286696 4.609072227495041 3.0273133743471567 +1.3577787112062327 3.8380295400319717 1.918430566069235 4.169048633955834 3.3491679356802 +3.8609770901596643 1.0382302798952514 4.80056070712575 1.744446048130516 4.160256766569038 +4.217291677897162 4.648701657791645 4.8043629760121656 1.5328235704149127 3.29986130816557 +1.0021382480224514 3.5447552547250623 2.3627528026220057 4.247148341147466 3.1647824235463653 +4.816837058801557 2.7525869508012293 4.506382390635933 2.724906272067544 2.7266803386918785 +4.304145606325939 4.238332022674085 4.941660208642068 1.086178562611201 3.8560433284227993 +4.263504199156985 1.0622701066456042 4.657673638790996 2.8973778484792945 3.653291801163201 +4.0675668158193545 1.3599355933040758 2.6759947587242436 3.5259008660795574 2.8378878111122443 +2.254075751629186 3.0426041393666083 1.6785257022167284 3.3590459407081177 1.8563203630426874 +2.0637485579815222 4.611196109411907 1.176363369763064 1.2823494941163536 2.549651365548649 +1.9516018950679528 1.0625699753600482 2.1732794248242127 3.385248945862478 1.5030794636961962 +2.6994175853418483 4.699044144566855 3.0355758629006657 3.7818565005327716 2.134347948780288 +1.9754357578386021 3.9639745244815745 2.5841138030444055 2.4249399064830546 1.9948991843670891 +4.156130736554923 3.6843952373878732 1.453117571163209 2.8491853012648183 1.473614429966484 +1.6323407749233767 4.0972070737589155 4.919755058885496 2.635902796364748 3.360289723841732 +3.967762559635793 3.067137612455271 2.055883404285452 1.433792097855656 1.0945879996690298 +1.3988688387648693 3.855440159874585 1.4038305513620655 3.482154988511001 3.2177904098541243 +2.5597097543190643 3.68063138224995 4.206512090224314 4.878097303998505 1.3067103716292117 +2.6675276401418153 2.5395989936528247 3.4796544410906494 2.930042658882721 0.564303862944673 +4.876358884657664 3.4013347194450705 1.9134998752226045 3.1867791082053 1.9485728862698748 +1.9348149841978843 3.817660582018016 4.908407718216148 3.8341902315465566 2.1677294005242866 +3.6183056530030533 1.8567521333878605 1.660045973812172 4.931662850988339 3.7157163230651244 +1.5616075820040294 3.1376650254973475 3.40062004963861 2.2330285413522386 1.9614349327502907 +4.941187924652523 2.618504148718366 4.4319996483832576 1.2453580742955532 3.943291067711324 +4.069558584432514 2.8114379546778183 1.7931674167680618 1.2565619494491393 1.3677766435244134 +2.3255115043448353 3.4518530656466817 2.3775230327717147 1.1040270410927269 1.7001286285273622 +3.567388723757818 1.7110311930067894 4.582141693924473 4.166195995210973 1.9023864240091488 +3.4389252886995565 1.8934732958734455 1.7099667445257842 2.250234895537549 1.6371657024039652 +4.487942605064996 1.043248575787187 1.2765808685736286 1.8496132704380748 3.4920313699806194 +3.6508097804537907 2.317319066892097 3.652747226589723 2.210277665440548 1.9644123594594818 +3.2606698771721216 1.7342080702166163 1.5780287638785637 1.5014000793569595 1.5283839842740365 +2.4932524988568607 4.513241764504631 1.1606062355092246 3.827384349314503 3.3454539514994157 +1.3317075804146596 1.4812474821189507 2.333481433335789 4.5508051053957566 2.2223605578031727 +4.353596370632651 3.3996707038848966 2.69322694204083 4.426316540864418 1.9782754447322684 +3.782472065620627 4.617534718502217 3.9378235817235177 3.931209377759013 0.8350888467293301 +2.889863905413529 2.4348650965957366 4.796827497502592 2.0061993591750893 2.827477554720963 +3.0198696184754033 2.499486244762698 2.3036911944196077 4.778037840269448 2.528475860961495 +1.1991672457136335 2.117396842118755 4.099694135679273 2.44647522084845 1.8911050663748736 +2.6501878754016426 1.6688253645547348 4.359914508322527 3.9384109229498137 1.0680532056867762 +3.802129991146504 4.480835133153795 1.2059785513125028 2.4371615603711576 1.4058635323465292 +1.0259146285528593 2.6935775964743938 3.6876467121924015 3.324885481554733 1.7066620887072568 +2.9715750529877085 4.968471935591657 4.84813337615677 2.5470512090254647 3.046732068896619 +4.746002135318454 4.117683184091465 1.2411642919064714 1.933989189306672 0.9353026477716087 +1.9545092527275236 3.4960393124774174 1.2600072142792302 2.28811281817492 1.852920952948137 +1.0576982848399044 2.5293528633281164 4.221970303335713 2.129029634381219 2.5585479948887024 +2.8455221430559727 2.048206811898065 2.136669622318641 4.068483028439406 2.089883913849608 +3.6806126689859884 3.260709522889541 1.844609279738016 1.9123940038315497 0.4253391833844268 +3.4477392804895275 3.298102335338938 1.091432069758639 1.2276622938535064 0.20236078995432466 +4.049753405661466 1.7841717605845298 1.5385759643677064 1.5186460485500293 2.265669303330479 +3.6930241057116726 1.2620348088830649 3.208700953883389 3.0942924996115146 2.4336799821883175 +1.865321705281382 2.8975989280451433 1.2446021560834395 1.9103592861907321 1.2283439342975415 +1.216221668707068 1.2324549683210035 1.259977138413701 2.0194930855098874 0.7596894062113626 +4.988049006798011 1.117332140821254 4.62035719184091 3.088687298335046 4.162746895888482 +4.626392708685691 1.4008986338804386 3.9527928692514465 2.814076373459059 3.420597504003282 +1.444883855154751 3.033938155435371 4.394752692678598 1.846537079513305 3.00308114782463 +1.395060284283848 1.3551478966421286 1.5322075558151775 4.081222603490714 2.5493275019039 +1.018488719365866 3.8693606717058264 2.1662420540884506 1.9186024944207047 2.861607282656216 +2.22893194589824 2.093407526487119 2.0212893225414037 4.196048658606454 2.1789779801684137 +2.9075827766592566 1.5159717801269803 4.4503126889119 1.292117528098224 3.4511994783634976 +4.471514606527116 4.557777339355233 3.612982659699133 4.557403652414758 0.9483523978758853 +3.5226777643277623 1.692640226060484 2.668321852200967 4.134539197568578 2.3449585700656215 +1.7824427133820708 3.2106976022650406 4.778864222331732 3.7948638143449607 1.734407342735909 +4.373773217931422 3.021550288432457 2.022904101265141 2.6737006315355267 1.5006808371118543 +4.2234309958187 3.420342613874012 3.1678579874561574 2.2020566203517173 1.2560745319905753 +3.187415021880042 1.3343526516857076 1.2362686838560237 1.4684925266166817 1.8675567089051863 +4.4185149045564405 2.6869631243211356 1.1610694332446347 4.445765732429516 3.713152480778955 +4.770103254964397 1.2890176689426074 2.844199826985441 1.7186311101280927 3.658532737803034 +1.1715394469300757 2.013878625901714 2.8708557277119104 3.7829937326420997 1.241584081916581 +4.163207451904258 4.968040618056485 3.304848411721849 4.641880221637246 1.5605801761089564 +1.6705178646760084 2.7394019033421335 3.9260133723353543 3.3635385433426963 1.2078456115603213 +2.841443802330699 2.20497954802969 1.989883686758715 3.8052854704200585 1.9237386473021034 +3.769150653394293 3.4440323003355178 1.3113898361225735 1.9510556865828899 0.7175474505151351 +1.089731600253601 1.3628033808005253 1.0714661304030693 2.0569725034258934 1.0226392367788697 +2.068835662376121 2.089707003226099 4.5427155374560355 4.51226890219802 0.03691355397967794 +3.2581954473301797 3.303926256766178 1.2243439773382172 2.1891402575061862 0.9658794796234268 +4.164727940463339 1.053679110974481 4.260714599627601 2.4059581239520615 3.621981005406343 +1.7361705040713238 3.1317891267128712 4.430804050870616 3.123156977558099 1.9125094008152435 +4.08434233865235 2.4975830214388695 3.0252065966747486 2.1987096132190205 1.7891065911301118 +3.0354912009889756 2.881415163918038 2.208060573393365 2.244066720086857 0.15822726629502973 +4.325645050477952 2.336736190964883 4.940418936729108 4.179626600417624 2.129451438854585 +1.41990057876927 4.446440657761204 4.899705945870715 3.604065074941585 3.2922074837662487 +4.210647582769473 4.412188171731099 2.7488471918423167 2.813668294880101 0.2117082530229609 +2.883805390860299 2.7915921770959184 3.262193315540062 4.234296306575853 0.976466846325817 +2.3946458051153754 3.7811576675137646 4.291791694446584 1.8513791954384278 2.806782554792352 +4.607741513846426 4.03469979958399 4.676150796848438 4.563178832994758 0.5840714604410904 +2.6136190334406897 4.335873550450444 2.4743198784158844 2.848055966743463 1.7623391515479934 +1.2461325057816337 1.6256190020525687 4.399109816099488 4.744068060523919 0.5128412924564244 +3.573348081989263 3.685239301641793 1.111233742062093 4.425458074904894 3.3161125694768927 +1.4441199683657375 1.262538190698614 3.81295709807875 3.14970735734098 0.6876570079403478 +2.7964794719130746 3.2066134343267425 1.6765101937166969 3.8812839570995896 2.2425960882037366 +4.38196474821177 4.067464867551591 2.7927074919241877 1.6408299315960986 1.1940402375643198 +4.670492921647949 1.7158536265349982 3.930997326928081 1.6094595583047986 3.7575831295355164 +2.638386700295785 3.33939119325098 3.096938759370105 1.4921256666136418 1.7512373802046186 +3.0805588359891405 3.86659035799098 2.4384932259576266 3.789472985904929 1.5630073145599157 +2.6332468978088337 3.079175319328452 2.428695673028679 1.1528858302883869 1.3514965452978365 +1.5829569187599626 3.10664315087353 3.052322825953453 2.0196809651826655 1.8406436229071055 +1.3870837952006565 4.873840138857087 4.967160818192349 3.4653444318317006 3.7964354674312215 +4.26713150272457 3.265805620320176 2.686643831767059 1.7884695120736516 1.345128481346542 +3.3765236686542512 4.492051653829465 3.8374566591863193 2.1750544649595573 2.001994940323033 +1.8100869298233966 2.4147071220024534 3.0704038079523626 3.042090457143676 0.6052827625371925 +1.6459226644667027 4.800362148033088 1.9067364446649848 3.3301280458790625 3.4607126586715253 +1.7082109004102501 4.292155130728942 3.9689672694992657 1.444275441403732 3.612594166558101 +4.07587863545296 3.9769480711440455 1.3823058855102337 3.8331153097360353 2.4528053511089065 +1.1226953341258725 2.8449432574797395 4.00889404491174 3.3552084960572817 1.842129937403402 +2.809615060926734 4.524460928330674 1.7263264304993227 4.534221615606416 3.290132477499952 +4.9769310605290755 3.4697167665303694 3.73250243287667 3.3995186095167664 1.5435586009780766 +3.817434606608021 3.326205073443435 4.02561344821981 2.707483204035297 1.40668894745321 +4.784759105466092 3.2006471163643666 1.2041284865153443 1.824498845820918 1.701255470739404 +1.9761813693108405 1.805572469292792 4.969199688707851 2.805634604737291 2.170281380222829 +4.1444303047865 1.5684719345892968 3.4259733961532 4.074692464990841 2.656388140927942 +2.7169556275934337 4.368592201524777 3.173561901077174 3.4746665354843222 1.67885894976592 +4.375728881437285 4.0761534624221225 1.526479988035208 4.211304286983218 2.7014860628735033 +4.208276689616081 2.963767430001777 1.7895985852984815 4.102926734189486 2.6268403875601627 +4.3484558046222475 1.924940334077196 1.0998777745985944 4.2265408635547015 3.9559384863533644 +4.687574624552864 3.360531420186322 2.5141558730036904 2.5654181728796788 1.3280329399694857 +3.153869516030367 2.8011412830662143 3.5405063647401027 3.621469674017581 0.36190090325830115 +3.387330559664145 3.0822551612991442 4.241945955670445 1.2006880707189995 3.0565209833186007 +1.0347771969699346 2.811955074242331 2.3358810413757647 3.242612159938254 1.995124690047217 +1.496016534393683 3.346975293768249 4.292270786553797 1.2231242769624995 3.5840910460313187 +3.5570339467429033 1.5943401698648167 3.546104449648645 2.627383412772445 2.167075265281492 +4.828117097783818 3.3297261240469562 3.2090251864915427 2.1778125116588045 1.818948897278808 +2.2927530611798863 4.179715398728812 4.82485949021822 2.1219932375725903 3.2963787469007158 +1.3725978634258071 3.1316184462741368 1.82363737454506 4.357362259372481 3.084463519459714 +4.519816281641827 4.581792690642008 4.006363605068966 2.532284900923712 1.475381002076111 +4.666722452013136 2.0868476389887025 3.69175869170186 1.4462613986049688 3.420235685473053 +4.092347940021979 4.484685172606237 1.0958507290025947 3.6538667260409663 2.5879285819311337 +3.518606717594803 1.4193808566212676 3.0583754256371516 2.7147035905088255 2.127171724530145 +1.1497838868398893 1.4088552716133593 4.216865711226813 1.3564247728591194 2.8721490811408614 +2.4406726300145367 1.360973299373828 1.2710747327014875 1.9494221465683719 1.2751101358258763 +2.313780919078512 1.4833812730119487 3.8593484764432717 1.4734585155455147 2.526268884679573 +2.3329701064139865 1.7125993141653986 2.381169943316966 3.2080672091669102 1.0337403001456669 +1.2552787671294094 1.744880462789368 2.731060997419905 3.642647454115918 1.034746195172854 +4.765353888774765 2.937104687729595 4.005917476094495 1.9749331050121648 2.732653043601216 +3.998822472946878 2.5968711669449553 2.819831066917394 2.33123722737911 1.4846519472372168 +1.9540573495174867 2.1291234234670786 3.6687549715504817 2.7595258455349008 0.9259296592307545 +1.1536116470910103 3.350166367193752 2.2616722831451384 4.3349508777097014 3.0204861809128087 +2.837320337005521 4.099739568740892 1.065211934669997 1.619996127211119 1.3789444575285945 +1.6024331981938498 4.458537389648008 4.2252317343422945 3.397277789549819 2.973691121676801 +1.6784024807390678 4.03236424724202 2.1357635244516713 3.644072209589111 2.7957344451536756 +1.951547626363694 1.4995890595248826 2.038314489234587 1.334404261044214 0.8365142888737854 +2.6279948053096036 1.3332306409330217 3.176638429548143 4.42353113845798 1.797541562492033 +3.249454543480744 1.6216039574038765 4.53807427095248 1.7672588902227155 3.213614072143609 +2.2061200827206173 2.053308669178467 2.0845890567154273 1.2632615862306356 0.8354221339428927 +1.743136597440702 3.3021023774542435 3.368931352749492 1.9156451206438274 2.1312942489673055 +2.5334303662887736 3.9248596472859147 1.8205942489216533 1.4999050442153998 1.4279065130572626 +3.0735210805323345 4.618450019738726 4.618955698773803 3.0175096754350608 2.2251819684836693 +2.77827651267255 3.7285969866607465 2.74624984120618 2.1192144526522303 1.1385439744604302 +4.111856291942816 2.7065071772590468 2.4524300682853424 1.2537532006753804 1.847114605834106 +2.024350111569894 2.392317907044503 1.2722847381297648 4.507438594745887 3.2560130181687863 +1.4887696605021952 3.8619441633348917 3.970082711237284 1.3776014182318734 3.514671602792816 +1.4218810400441564 3.308202567478898 3.6201193091380977 2.027979785901823 2.4684240248212563 +4.96653933613817 3.567705134814959 1.8525267868952136 4.951269812467242 3.3998449172459075 +4.155034144714856 1.887181009151047 1.9385690990454365 3.5371039037401326 2.7746119307584096 +1.9840023125220654 1.2225091271837107 4.733247191079526 2.1962371112614885 2.64882842336288 +2.65802572187882 1.582573816016411 4.81476293083489 2.9756520777079345 2.13047542391656 +4.375084118647786 1.9859789438306614 2.1088517473602746 4.873155389556077 3.653655452091089 +3.2719321101435273 4.94183607612853 3.026592486428918 4.801999051796725 2.4373444007697294 +1.2227623325851265 3.430213116843925 2.3653688678838503 1.3395940722042692 2.4341431544542056 +3.167944274025477 3.144971161343451 3.758897728901023 3.892942179346071 0.1359988183824258 +2.067835743634227 2.6657022242572483 1.8386686845985665 3.724713366008917 1.978537052705566 +1.9770674836305338 3.2638723797419 4.92095508529507 3.507519769906633 1.9114565732559539 +3.1642681246452264 2.954570292515728 2.4052971589561234 1.7086902880302905 0.7274849231570997 +1.5905048471180798 4.450188441440465 1.7005675340579351 2.4757644762806525 2.9628905749062096 +4.284642258086215 1.3203062591253643 3.9190290412603965 3.37990427687091 3.0129625663644157 +4.974171182132638 1.1674028087804955 3.1732612777156857 1.3033856579570289 4.2412168397432755 +2.1652231706052287 3.6666698344383515 1.9446049627738131 2.0189204927060977 1.5032846976952605 +3.6548106149919093 4.961157399204911 2.1294433569510103 4.387538939463915 2.608742528573478 +3.8013438932937507 1.6812135373206654 1.9484528537660055 4.793014905389773 3.547743788925094 +1.832847767950128 4.970275903396558 2.3649113755169697 3.602623506907323 3.3727417074661545 +2.5218690913331776 3.3041107726715007 2.3512286106398848 4.955384506177064 2.719104627682439 +4.9363410093343685 1.6566297270008405 3.9045682031810336 2.7766331648368667 3.4682479072566728 +1.3057253558637356 2.6173418748316286 3.7422277567645974 4.095881668606219 1.3584583108032189 +4.676309894778873 4.140832722168499 4.436346512329953 2.961646201416282 1.5689094331400009 +1.0697862261550912 1.4336821495599756 3.4082755344934106 2.817882043078049 0.6935306177641432 +2.9653237955309235 3.8755998108536125 1.8851491886217193 4.439361739907436 2.711568583166806 +3.8005380808908273 1.2124733451183451 3.4436573313944834 4.447138933125906 2.7757979756391764 +2.603680286444902 1.222471851959848 3.3168831054943153 4.500613375336667 1.8190530754306482 +3.133359155457635 2.2957317618340416 1.2845424629688424 1.947339858649137 1.0681385857037633 +4.670600928122487 4.936550016269168 4.725595778132471 3.7663597718652984 0.9954208322139163 +2.301811111398928 4.5115624120204565 1.7390567303559439 1.2576895130457149 2.2615736133275717 +2.387829368079226 4.476385807317863 3.755905170677713 1.4289192442837133 3.1268085169259905 +3.0721855589887612 4.856932127362024 3.391751079986687 2.104908056359695 2.200292089877522 +4.12209997782592 1.939756899686492 2.091720993328323 3.314739257274909 2.5016784335021947 +3.3363867426556038 4.167156858144152 1.6631098260543622 4.648798200833473 3.0991150440214352 +1.9320254074410088 1.3088433856537116 2.4993356716397788 2.5539022018332482 0.6255664141370268 +3.4684201189985067 1.3505301798351477 1.5768506295148144 4.26608220394848 3.42307234152893 +3.345183989085284 2.5102137145407304 4.269634723462073 1.6198833872406326 2.778193208396478 +2.8444341104067963 4.264437789607333 3.0092348909315074 4.737950078530454 2.2371559285794818 +2.865591885505836 1.7264744935363199 3.558437852881801 1.0009998484115608 2.79965668955966 +1.5104948059238206 1.8104594696846616 2.5185465709891273 1.7453649044638047 0.8293302653081157 +2.302937788420843 2.905166523074967 1.424087479679533 1.9148388942297037 0.7768631795407095 +4.513988075777769 2.9965443495738753 3.821415536410403 2.3062753559447753 2.1443612635600777 +3.476555871505484 2.4985455172323365 3.9957523276910063 3.6000088945935262 1.0550436568717274 +2.288936057978811 3.2880162872842953 2.0532277550027995 3.1157203275257217 1.458441555652977 +4.834200840538632 4.844001358248089 1.8326693072658138 1.7036633985512357 0.12937764347308017 +4.0458259452481204 4.685467143155915 2.822006550351473 2.570826159706034 0.6871917132108865 +2.4921253568473514 2.7339746437858095 4.351908274538421 4.88950467097764 0.5894921229813631 +2.0301688814689145 1.5151968412335992 2.611087747753845 2.4100691213301384 0.552815240739071 +4.406622285888297 2.3536357909467522 2.8937810253959024 1.2556290912192885 2.626460604665326 +2.0710388835539533 2.172256475998042 3.352678948453168 1.8996867481382016 1.4565134174446541 +3.9727703281558777 1.1647937414598886 4.498906517889605 1.9993431318701296 3.759328348543394 +4.490972911477051 4.3463798488806535 1.8910294811129642 2.2995163149666977 0.43332279790342615 +3.7760700910529885 4.465113616108024 4.085728648937945 1.8318987264148459 2.3568051041782705 +2.7612206605501464 3.4079022218988264 4.809502552687272 4.394841132667627 0.768206440379847 +2.4009645807404847 1.500862006472464 1.098662651013171 4.870426465998724 3.8776780320493724 +1.5154453074814338 1.3026967280385544 4.694869715871334 2.889955968356756 1.8174090332179165 +3.7880062284892357 4.098658755895407 1.3030311524336033 1.9374006854376127 0.7063495573634678 +2.2159602638037286 2.8775909309809333 1.5657165760470892 4.722444970053962 3.2253200295906392 +3.448197523080772 1.588982596065089 3.550986596716516 4.868194646196393 2.278534000284506 +4.1614091038998975 2.3368668301616764 1.4131813598237293 3.6772318103736907 2.9077274547820537 +1.4834969997414658 3.0087415738639014 1.0244747851928722 2.232201592145023 1.945501233903687 +3.703081891241021 1.2921858972377427 3.3478379912724106 1.6050825196247418 2.974830436824752 +1.011884411755291 1.3879100044403363 4.062302061459552 3.5571152320452555 0.6297689885726425 +2.3440363280957914 1.3510019339109918 1.9427308893663962 4.729816465299788 2.9587097383166765 +1.9960452664087427 1.2039290933729827 4.371995966923713 1.54671544985163 2.9342218784086374 +1.1783564752001374 3.542700851938676 3.0140346769424062 1.3628120263154546 2.8838620934015973 +2.9160871445541785 3.2961250216107856 3.8693831300253225 4.991060505552728 1.1843094708595978 +3.997693774100521 3.020062622108443 4.896328413284916 4.44198523256223 1.0780493473002826 +1.0298686084322153 2.7068384072852294 4.109920943546692 2.1957474975788194 2.544855140771993 +1.0831134213961846 1.1485261356990155 3.8929740124073384 4.551497012328634 0.6617638284296036 +2.378112233111089 1.457629900059326 2.365208307298569 1.6818772317282389 1.1463983096204042 +3.976210755103197 3.3951877740548917 4.67947590241137 1.1418509949336855 3.585021295684693 +1.3733234299380488 1.0640537308700533 2.094227698802683 4.7699213638204565 2.6935078124590346 +3.963955274432514 1.1454751674194106 4.912622732047208 2.3919887753576687 3.7811936815303384 +1.8240069079355563 1.4140712661045476 3.0178973360964902 4.2486290907194055 1.2972077251853693 +1.1618819947796877 1.3311380708109275 4.60204765608733 2.2652066587323 2.342962540501394 +1.5801822841669089 4.328966846306591 3.325231544654024 2.8066764092602594 2.797269382362144 +4.916885961847496 1.8637296494988687 3.942546512268081 2.578631656904088 3.3439538274798064 +2.641284191943632 2.772875002805048 2.2715832657594146 3.7695992166610246 1.5037845359820734 +3.6959219243532266 3.146496846657622 3.63686153694154 4.854637478298782 1.3359813469316624 +2.0837376857340515 1.114499675322759 3.3343939456000204 3.880193436222259 1.1123485985919774 +2.1859430036033856 4.75508043154652 4.365270548592033 1.6759788824242574 3.719241426605392 +3.835754975420627 3.9311355302287456 2.1561181894337746 1.4804770612464657 0.6823403727859902 +4.114565228215426 4.872296750738888 2.0249933923106673 2.7542586167510654 1.0516581325715257 +3.7522568494727855 2.720082099642701 3.2367065720614923 2.0646932260656916 1.5617298093393333 +1.6297205883378947 1.0564091609729438 4.95410563209022 4.838803936082824 0.5847909659437459 +1.3124354923904011 1.3304142705289146 3.6565697315813583 3.4820052256806644 0.17548790039118736 +4.202498198710247 1.1036591734620904 1.8457667627550087 4.356812222771172 3.9885025519195456 +1.9725795070373229 4.4536822384577235 1.0165813958960093 1.918927511039874 2.6400945580370787 +1.2244068923382354 1.9961281735253849 1.9642725812103046 2.430229659071154 0.9014819655687832 +2.9455538311832727 3.4497979685920224 1.2904058908150442 4.744182877214047 3.490392187403941 +4.056873099126423 2.8637449799669215 4.674152941572302 4.509608649491591 1.2044208287743252 +1.3587585412848004 4.56910723120474 4.723710798365987 3.193288836237729 3.55647720265928 +3.219293945433384 1.8847731253811286 2.88148665465639 3.1632669040224313 1.363944987191834 +2.9439461927194923 4.96885080043339 2.256284540085791 4.885194189917987 3.318343655699604 +1.9681236709111518 4.8872575784412575 3.5978907513853398 3.7003693693192306 2.9209321521092586 +1.5563650874813102 4.249723523222087 1.0703209879513755 4.0731673891685425 4.033765755801754 +1.8628309447152467 2.4269169261776375 1.237374270769863 2.0081028347706966 0.9550997402623329 +3.123788327299881 4.865897788010061 2.7940025974844653 4.989691554023963 2.802854860131973 +3.2089793104039575 4.519227491684985 3.742594692861425 3.300462624889723 1.3828344304648963 +1.078765129551952 2.9832389596337787 3.567026623303301 2.636073304391301 2.1198336376847617 +3.7460853094499216 4.0995507768949615 2.8643205060529793 1.2662470374957517 1.6366968710126713 +3.7801860867244614 1.7768666877427783 1.2341803415489183 4.825772887197078 4.112520593053822 +4.936830225291849 3.735155027722072 1.5175067014389376 2.482078067168534 1.5409157017954682 +4.151871693860903 3.872298992861826 4.699746290689676 3.298328220277431 1.429032366051203 +1.1391883782001875 3.7539594250178205 2.1521303816146444 4.257373347702108 3.356944380465146 +1.6810183999749637 2.053699065037471 4.16874770720619 3.8217059701516933 0.5092434048362681 +2.9548254434041845 2.6869341345193756 4.122481366082699 4.569409782553887 0.5210669465869618 +3.1154669956137084 4.471092000683704 4.280787874332086 1.237172957960544 3.3318629794051215 +4.125704510594664 4.7835461451856585 1.7795797189264633 3.240104724416426 1.6018392265963546 +3.596134618810123 4.685165034062154 2.0814811636196904 4.654363948189296 2.7938706248641254 +2.399012586540328 4.898056930948545 3.8825715987123366 3.373902785243807 2.55028755184865 +1.5395090594028376 2.1361058809318125 3.187506570802758 1.611571631030456 1.6850812152099983 +3.279213860360199 2.3751211576471025 3.0885383806200344 2.5754630505271194 1.0395335056885011 +1.994026177037446 2.349369501298093 3.5342285873942956 2.3364859057536234 1.2493423908282293 +1.1867665450285214 2.6930428366485932 3.2109806230386275 3.315947668745447 1.5099292524423564 +1.0157308026820444 2.320379137909241 2.505113452144203 2.2284718747979113 1.3336558180159301 +1.3540823764986123 2.770357660859022 3.2939401060828506 3.1047895150711318 1.4288504565454854 +1.9290428457428797 2.9590402696205755 1.4195401123079683 3.0436121703939487 1.9231496933547119 +1.8787134073180174 1.4567951023448376 4.063179593142601 3.85053693357683 0.47247429214576897 +4.890793886650053 3.7173446875582252 2.160464471342164 3.965577406589752 2.1530015633639046 +4.450315881124417 4.93164362785526 2.9424343802768265 4.722093685449802 1.8436007274520554 +1.1534324012673305 2.857317607310993 3.7159741279360317 1.262412928409892 2.9871704596816375 +4.738587410292789 2.1904033980564632 4.079984316872028 1.6650073298455816 3.5107485822946862 +4.82614989037052 1.1221030701924866 4.939082971587302 1.0890569230601352 5.342533427168117 +4.206678687069127 2.919296642554388 1.278892832755234 1.256121551797781 1.2875834185696058 +3.333885040508726 3.163605616876409 3.902621718950955 2.3951541368525224 1.5170542485983318 +1.631028633566444 4.006533823150193 4.244338966810579 1.4012557882840806 3.7048814914595662 +2.0894268814376367 4.672840065106461 3.676944975876001 2.6369224781914538 2.7849004422499375 +3.6490585166677785 1.105065890294921 4.568505905475348 1.6526501845731412 3.869639914534374 +2.624903403661109 3.4227884166507017 3.144522268766361 1.4077478487096449 1.9112838303393729 +1.9642092737015955 3.4070163288994286 4.639117994769373 1.0704981412846606 3.8492518568176197 +2.7345160532448087 1.4854278932580174 4.247287660979415 4.267726852797531 1.2492553750059936 +2.5421436967868614 2.6644503303831093 4.739502209798978 3.1090639009225405 1.6350192633952374 +1.701914028247379 1.3667200458877713 3.2014362225921484 3.642880968369331 0.5542819403375634 +1.960896412291599 4.908508948457057 4.492476538957941 3.3806335514653685 3.15033561580289 +2.309902707837837 3.3360774838123755 1.6543358873074538 2.609898750446253 1.4021893795976397 +2.7675487434692445 2.288976041952645 3.18868245987474 2.089431084106548 1.1989100957808132 +2.653251684559012 3.3960366695877813 4.592885151868591 1.887934192420757 2.8050827486906598 +2.3700882254876534 3.3512959758942027 4.96172710081429 2.978809851756307 2.2124035495518353 +2.987177307054004 1.43799408046499 3.6806917694840458 2.8275566484459285 1.7685610547259802 +4.923575184662036 3.6524422531473872 4.665088770450295 2.479535103478658 2.5283242989763384 +4.620036133798722 3.4448409226716343 4.271950392222795 1.782030983276771 2.753322074749367 +2.100240915868403 2.6424504226087566 4.758749193936886 1.9937517418707182 2.8176589678547006 +2.3722297103729533 1.102257970456884 1.496328150842153 2.7498481405007524 1.7844160346340603 +4.245949466446172 4.209439041337564 4.92158200090248 4.834293285329522 0.09461675860009104 +2.8254188284555117 2.3083627220056697 2.6866253056011145 2.694838459646079 0.5171213330703315 +1.059544449433937 3.9270947872941115 1.0175100152130803 4.824441960005407 4.766086001368659 +2.491057184022688 4.140873941914955 2.4449894192146377 3.900615274743807 2.2001686221531243 +2.045790709060506 3.607141297375515 4.4818855413341305 3.1402771344925315 2.058574452610271 +1.3865492514205808 2.9349726002358385 2.1745661986272284 2.918534879419886 1.7178778376696708 +2.82510222883339 2.7026044105412086 3.1264067623645695 1.7175075604057977 1.414214508752618 +3.8011723287729247 1.7794234254457133 2.540932122284778 1.587926028525842 2.2351038550471087 +2.5954036689431077 1.7397172692267202 4.751979063447861 3.984209196638662 1.1496389794365045 +1.5137752027341325 2.4072901082098617 3.0095097119588394 1.981365776998866 1.3621486105789924 +2.3556376324970447 1.2403864283874064 4.065405974887017 4.5146529540695886 1.2023344362417074 +3.804007783209474 1.0005275280823063 1.1524123560631985 3.0028983194823162 3.3591367703174977 +2.8965573861231437 2.439960343844909 4.805872786504173 1.501009974863238 3.3362552454487737 +1.881025164894579 1.4728262064016429 3.6435490148714678 1.5145024870185662 2.1678250638548335 +2.558600824578782 1.274246641377756 3.410118543766093 3.64281423388598 1.3052635565686896 +4.165560517974024 1.2163688272897204 1.535162516498077 3.7936439521142526 3.714629190568588 +4.387882509565944 1.1016278023451611 1.6014693382246703 2.9512049895345136 3.552640754304826 +3.043704892339445 4.33667434100551 4.70359948967752 1.1777953866666389 3.7554047142741083 +2.7613090715876796 2.2680232097839275 1.447119421312109 2.5636377207042704 1.2206326451201583 +3.921831863802571 1.6052196929159122 2.952722875811933 1.1969599920170908 2.906784349485145 +2.4381158325403813 1.6522263972513977 4.824423539833608 1.2464441763075285 3.6632715610936257 +3.844061784200302 2.9372358345218177 2.3413654898417837 2.397963939554318 0.9085904949536657 +2.2072984997280125 2.430533457399358 1.6594166791426859 4.278074933669421 2.6281561788309946 +4.340456270049165 3.4030202775185177 1.2081617117636219 1.5148247484734227 0.9863206670125069 +1.4175357214444508 2.9270363834845496 3.1296243752649677 2.8248302229209123 1.539964845054142 +3.2462349671895216 1.7828598217619565 1.647403436824812 4.367059290610068 3.0883644181481493 +2.389216885685927 4.968664382550023 1.638180716261112 2.3112179428772732 2.6658072881379904 +4.3141480581571745 3.0694710595883974 1.4796143469486842 1.5893931750495764 1.2495087922321255 +1.9463710150835118 1.4462425955272722 3.4143010053514096 4.946319679488244 1.6115860678076759 +3.903549406782176 4.7482149146230235 4.79533216124101 2.521228281713694 2.4259035996958382 +1.525993318200216 3.7782180220857815 1.8012713841891905 2.5745847644488027 2.3812874040906884 +3.778796452884658 3.096656732035575 1.717670039036844 2.7733163346527507 1.2568626417423867 +2.6517718393251184 1.403083330000185 3.2622783579271752 4.544162389430327 1.789538952787253 +2.3617630005491175 3.5379200243273896 2.4781034313751285 2.6886349972404338 1.1948509885373408 +2.308047352807128 2.5666847116245552 2.8971451267725605 2.1034321479424336 0.8347895400275737 +2.1998877352154276 1.5176965018770332 1.2124145316971564 2.589422743134251 1.5367291541481687 +2.700658011033924 3.7858140744990627 3.1415275471378683 2.1751806690274704 1.4530622735825427 +1.0269210099760708 4.123383696094324 4.107410247997457 4.156895681740929 3.096858081132464 +2.0280988590754103 3.9468295389350585 1.1490362433235406 1.1029723986814943 1.9192835380990152 +2.9623177192649828 4.16455617233694 1.5221165549715039 1.8132251323103175 1.2369808009201604 +3.6248562041216856 1.7452840177505102 4.407066564697677 3.524155178474885 2.0766136182983037 +3.8608670335226574 4.56863069787004 3.3381254884762845 4.194043601542162 1.1106418058243106 +4.339776805883605 4.020700529863211 2.7385897952077194 1.7928840139966167 0.9980827092656924 +1.8863501253215027 3.9650426619486843 2.096450053555406 3.5315792319435237 2.5259767260389596 +1.3449170049186452 1.2029886434720498 1.186575551917369 4.754722759471386 3.570968797757612 +2.458943634967521 3.731613588272619 3.126249401134278 2.017723723887091 1.68775531021589 +3.4132867876349846 4.365207825830749 3.944398705799716 3.5096541480017467 1.0464972496354945 +1.7899782070430024 4.703974418845103 2.292711859087583 4.684221151274587 3.769706966995416 +3.004853387292249 1.952573127487077 3.601777217907433 3.3324794376994147 1.0861929108591193 +1.5407613040190165 4.2327356712334785 4.676544604691939 4.750456182596764 2.6929888442190184 +4.257029689896299 1.5070228734752709 4.055422091817622 2.0461115591847925 3.405857646307512 +1.3148915285002487 2.822087838081246 1.0380737077480182 1.8493840628855787 1.7116849032365775 +3.6697358419953283 4.064356455485805 1.3060059327829117 4.209769006386546 2.9304548138839515 +3.5133285826815066 1.04283699337303 1.9953256875053884 2.95292290636052 2.64958885988053 +2.1819200909512366 4.615740697437399 1.7700894692352618 2.480449918368701 2.5353687527162068 +2.6338232097210175 4.850496542854129 4.824023681830156 2.6388514229052165 3.112654569173808 +4.098893283770156 2.7868806137831634 2.8577020851101618 2.805089983778795 1.31306712677338 +1.9046335006407444 3.437874216821429 3.17574611632441 2.0836306225410093 1.8824301701566568 +4.402697409358056 4.945606912217819 1.5820987823008963 4.049772596193863 2.5266904796726677 +4.713958352472866 4.443049147146299 3.6353721964452297 1.6770770397718682 1.9769450468288232 +1.9078920451968622 3.5441285607885766 1.7609146607825732 4.633869765678065 3.3062276040376863 +2.6479404165587637 4.649557361552051 3.6318885859033356 3.9457960734137645 2.0260820085078914 +4.107575782522365 1.6458709457579341 1.4503214581175738 2.987040164283871 2.9019812344725477 +4.648008373301218 3.050547208209833 2.814628150468196 2.8324680778125915 1.5975607772422245 +2.069596841389388 1.4937697070552942 3.392736069608588 1.783882837615678 1.7087965387164872 +4.00482951422828 1.39466441499495 3.2741489796097043 1.2698085692089744 3.290948545027878 +1.59511307184136 3.5721154023380484 4.660469957772374 4.066631682145359 2.0642630918536047 +2.7948358686410923 4.0903154948772915 2.73658749799483 2.9935842802246233 1.3207251069278383 +1.5353133231139067 3.3347660682535283 1.9685063415853232 4.577828709207456 3.1696361621113063 +4.737551982464186 3.679179549564199 3.2434693442156046 3.618216160280589 1.122758826673601 +4.086701778365412 2.1221055526626005 4.097422275785531 1.9542577545961248 2.907368654802956 +4.562216789415102 3.591209117817999 4.970919597953115 4.54240050212832 1.0613597475818113 +4.700581124931118 3.19906572294808 3.4852515715168964 3.1412885018281616 1.5404087430620421 +1.5619312913819514 1.4323929333267653 4.0941392960979055 4.276830335181295 0.2239558036064304 +2.1169120914515602 3.9947276041935598 2.748591667545825 2.584977518076155 1.8849298898901206 +1.0230316807012816 3.1031065506156352 2.253647970244459 4.88352148877977 3.3530502811533434 +1.61139019853935 4.3655397734712835 4.270078452490843 3.357743986174314 2.9013262587180395 +2.7515058468467526 4.968112691990664 4.722507229005955 2.507709523115746 3.1334764693476442 +3.3710920104597437 4.813112570491825 4.669988000637957 3.0070531503549898 2.2010850987276416 +4.3349181691715515 3.0053816576181105 1.5477158656087249 4.287259220803005 3.045121529683639 +3.09633069975715 1.579574132854527 4.391664053609996 1.256930551717041 3.482399260729921 +2.2411342564852035 1.3687744640411776 3.459661270524912 4.509417536755025 1.3649175161753815 +3.2313147738737387 1.7565432627064927 2.573093643398876 2.5688055551053464 1.4747777452388326 +1.3737996787519222 3.2972092517808242 1.2701240696563607 4.3138438644267465 3.6005186535687193 +2.9261468574468967 2.6920727541175933 4.726503488630737 1.265553098990138 3.4688569133653857 +4.66668233533165 2.277890415605334 4.364154872663877 1.3194805091692645 3.8699313708993683 +3.205105582615662 2.5075490917199783 1.0482038590723977 1.4481702712171427 0.8040884210300756 +4.886876299790737 4.467265079970349 1.0435461661856493 1.24514962100575 0.46552929960911654 +4.409971041271905 2.3394676259400082 3.901162039585055 1.9815055624734952 2.8234846171030243 +1.0369151333542428 4.078792179561956 2.270736546080838 3.7477698013227005 3.3815149269721902 +1.5326942249417312 1.6239209143897035 1.9583535685109514 1.9272590145136577 0.09638039300566997 +3.7638928913633696 3.543171288126438 1.7020060066408327 3.4498637417916185 1.7617391090799783 +3.635772253887048 3.844641248756793 4.159293756931805 2.1545127867124507 2.01563215780349 +3.142858479986432 1.5020300542029799 3.117105082632906 4.710330428546953 2.2870690688568938 +1.2401650137485087 2.9112327239211617 3.382367257332697 2.5237903047590406 1.8787287391936973 +1.6525978035487885 2.3142645277028224 2.817710397179462 3.0739712838265394 0.7095579580822673 +3.451336385847204 4.811588233847521 4.053514905062761 4.120275298777701 1.3618891438576242 +1.889687442550771 2.563109844224062 4.694253657888901 1.5470386073940285 3.218456199039668 +1.6176954802902523 4.962724944516781 4.991470620495016 2.5210396836773006 4.158395259006733 +3.4853537193813873 1.3527572646073276 4.456977544670858 2.4596798790674383 2.921842843812746 +3.4322343569867098 2.2180382138648005 1.1271862531330634 1.7441101941094503 1.3619351757414728 +3.0219590553483173 1.7345451438982358 4.125175713033244 3.8898555952368605 1.3087437248120435 +4.671352672447109 3.1255725622938635 4.974626813699767 3.8234161569932223 1.9273614412092233 +3.627605749940006 2.25019944330639 2.00240432389126 1.525490194024778 1.457633431566511 +4.344597952226145 3.0127409757484185 2.94838521943208 3.5762786949522583 1.472444641537739 +1.4236587111554524 4.4031323950685906 3.594643059380918 4.473134137087836 3.1062855642618548 +2.5818756200274975 4.238450927531456 4.861347123856293 4.532103330122073 1.6889769759071132 +2.415862727440699 2.0448364110847614 3.484280432458556 2.2010113848856228 1.335829321390798 +2.5446567028347444 2.2570380774957677 3.8131073777439073 2.6915196518191147 1.1578788799296023 +4.569383100076031 2.0427951650770706 3.251657085018901 3.4999955481459795 2.538763199975656 +4.670830535181981 4.5525487697400004 4.490359544488807 2.0717897122525657 2.4214604290467583 +1.3091061795941226 3.787375489190493 3.0510609411742164 2.9545634211526313 2.4801472823720743 +1.603063056042568 4.137484002738294 2.404947422796911 2.003227102832536 2.5660609405316817 +1.7727917513839273 1.834292846496127 2.786654710407714 4.478009301944415 1.6924723746673924 +1.1593239450338806 3.2931079956777873 3.3860721797972597 3.6521871939065584 2.150314296914921 +1.8600085730387694 4.3561234536935265 1.4768627861558383 1.1679454421143043 2.515157931994686 +2.4665516234135305 4.448960279336289 1.7117555509497362 1.6020498450107583 1.9854418704643675 +2.568441695702169 4.924346843133476 4.207512488101257 3.0226094507172414 2.637097698549523 +3.329256826895697 3.438855136739824 4.967444866740388 1.525465060257026 3.44372425983265 +3.091572020136739 1.3017891278255846 2.5176363401555175 3.166223969005446 1.9036776812020606 +4.740089192122234 3.1993411781938286 1.2083328546034022 1.1980486355990299 1.5407823362126318 +3.9696252911065883 3.4895849498497626 3.1484994174157612 3.7190243255751954 0.7456120975844615 +3.6927744581957826 2.6491142123439095 1.8994995360561928 1.970822642658756 1.0460944958783756 +2.9797935672860523 4.98374280491314 2.1807208460614773 3.383222458432528 2.337054272955843 +2.351683245251871 4.737418387097864 2.4523721819822546 3.1448196790830734 2.4841931694777903 +2.3886080343582328 1.8396552970784898 4.726656765986139 3.664974057958621 1.1952067939446989 +2.3976228624864047 4.851029598801466 4.531348022912102 2.1233903440514816 3.4376539670216877 +1.275718740824467 1.7949354980919416 1.8842210604174996 1.0931159895138198 0.9462733612634712 +3.5918141610292302 1.7610933328937106 3.815909984022504 4.743203327745825 2.052172433272307 +3.511266541899506 1.5389926980225006 1.4500215621671178 3.696317101628372 2.989265422448282 +1.1466227854734283 4.383041307920763 3.7603283205657494 2.730999924872768 3.3961628050816524 +4.340066747659536 4.393892191186573 2.092682260917832 1.5267896788059891 0.5684466490886293 +3.842695539265306 4.717953280456154 3.3708523853329853 2.8536343617045152 1.0166565779458892 +2.657478328458175 3.666635299554255 2.95149683287533 2.8884281960877933 1.0111258305760231 +1.1591411517887713 3.1297904746397514 1.3938918252109658 4.698403368221042 3.847499875443775 +4.418877753525461 2.13359836099337 4.764192608764231 3.4525018850620115 2.634963843504934 +4.51255604173299 4.7683408200647275 2.7164323357305227 2.344347315668488 0.4515231056997864 +2.239026745586818 2.446058937514905 3.158426918835208 1.6304722318378553 1.5419169413466234 +2.74550963292891 1.8898113387818332 4.021072879673694 4.664305279848852 1.070498711461771 +3.399306885382027 3.4299696466435083 1.3585718167324297 4.101478838277872 2.7430784045979197 +4.7778814266188645 2.7119993126037216 2.7099278383719327 3.353251597078405 2.1637315839826115 +1.1754826152109685 2.6408587729096684 3.712740776444699 1.1783492683468761 2.927536097107969 +3.550985292501243 3.687812162809354 3.1051292923614864 2.3860129949433513 0.7320176511879207 +1.4248731944533 2.101620540989409 1.4404031329912876 3.8349803305518475 2.4883703354044084 +2.9051230028924486 3.73290291489573 1.673270682277558 4.387079266226238 2.8372480704072567 +3.5083608231177625 4.380018076998399 1.307824366012611 2.4663770010962693 1.4498381207921185 +4.581431429008392 2.0404472921124523 3.7335180949964877 1.1446357781264465 3.627521472653083 +4.165611400024247 1.9483081977776822 4.984233666945092 4.812067314718204 2.2239772353897833 +3.2410580380427967 3.000138317665222 4.172747988619392 4.646811454529454 0.5317691993501213 +2.752780384638216 2.24573612625076 4.128181663871281 3.9596991283035448 0.5343035137026695 +1.7369477210840136 1.3729704888584666 2.6089807981625626 2.637167260615253 0.36506698322933384 +3.641493448600923 4.307070908994696 2.2795043644217903 3.0448534653287984 1.0142744214675778 +4.787496250467299 3.8301994586710646 1.6514947429909808 3.1955565481786503 1.8167399389628578 +3.2115810344082587 2.8064539106522606 1.0966182598840941 2.1296391143004887 1.1096215895799728 +3.970547026167975 1.7833558281508468 3.7956758274768845 4.346032393751031 2.2553708534794605 +4.644155652678078 4.3908072999651715 4.770819286190019 1.7255038760966963 3.0558356197240393 +3.10530489438594 3.672197645351942 1.5352903353493503 4.879953969085307 3.3923652830928472 +3.9631079221863175 1.2116618934223546 1.8962144251897977 3.1501286722934134 3.0236990902354037 +4.617489677190594 4.658649139274251 2.2351385862639925 4.86689251443727 2.632075766343836 +3.8320950811753995 4.006212750002302 4.87964424414618 2.966255956522023 1.9212942777760562 +2.9636056129367816 4.14859711119365 4.283038419380082 2.1864532278530002 2.4082928219532835 +1.4739068872959438 2.7266799026103166 1.6686974481997203 4.490674989425882 3.0875552579807732 +2.3655998514369925 2.9212906853141707 4.657630946322696 1.6552460765620038 3.053376362164193 +2.2434514416861786 1.0647266464150662 1.700215154106775 3.4351420645410853 2.09746597768261 +1.2952594938907214 1.0856894713137009 4.084598263867786 2.9420967097852957 1.1615633411242965 +3.6298521869681637 2.232504675408768 1.7262487457185935 4.664995904086053 3.254045932201028 +4.622503358950317 1.1645534204615466 3.393774122253576 2.598375317747909 3.548249855253084 +4.734499362980979 3.0196626302171223 4.844092962239886 4.255866080827241 1.8129191609260091 +2.8517261242376346 4.84845217733862 3.992032965907365 4.936377847101705 2.2087784374559147 +2.4376465536011134 2.03869077233368 2.2719186426827327 4.907280175952305 2.6653885507452117 +1.6815615040238745 1.5008499584729909 1.2137569874435137 4.920872060820557 3.711517052359408 +4.0472280687225535 4.701440166232721 3.608962622939762 2.298407247266621 1.4647692177385556 +3.5699051660960426 1.4254425382295777 3.727154739168379 2.6238827419899238 2.4116237397392823 +2.5162919545912183 4.929086637849351 4.080182619648154 1.9771619751718106 3.2006677451201346 +4.5759195417587755 2.864107067537441 1.0188521268962996 1.0114744485553429 1.7118283725413215 +2.0078391512733456 3.2049513931169837 2.5983434233219636 4.580108447187681 2.3152689540071556 +4.318831977880688 3.103260371598791 4.117682402749688 3.680014855105012 1.2919625429013242 +4.136103310252476 4.374565951566627 2.2692366200334906 1.4790126090205318 0.8254201468851668 +3.6034489978282243 4.558693139435878 4.0648593511430064 2.4828124834805196 1.8480702534147422 +3.796572556025401 1.6628515115459646 3.145883002672163 3.6524287542841507 2.193023961139178 +1.2161106999480937 4.53756606366921 1.1865324370316386 3.0135268942453437 3.790774918124443 +4.616022256713157 2.7875614785630773 4.37616823677782 4.894533883554615 1.9005188136378757 +2.920969570333444 1.6493050524000288 2.4398567542832743 1.406149217247009 1.6388050275418389 +2.6186515563029573 1.89660173960656 1.0934892395519449 4.415860051378083 3.3999270211381845 +4.307095078855253 3.3015118723716905 3.006877874703219 1.2565256230124864 2.018645731712373 +3.7990636714426373 1.6219622012873827 1.718285348709824 1.4650265411252272 2.1917825701860445 +2.100763738189103 3.2167831954577912 2.671723986122442 4.943405672076187 2.5310150357712113 +2.794528158040188 4.027620632054086 1.7706463816634188 4.738398641322181 3.2137315575790404 +2.9960815581797435 3.698905038824132 4.119502253134657 1.9303724770765296 2.299184642730853 +1.3542032274071163 3.1327865368828394 1.625302045758454 3.0418160159267345 2.27373490460685 +2.5217498672266734 1.2035137716153401 4.593676098166467 1.6572646413353374 3.2187355665822768 +2.1399836275213575 3.81722159438758 3.5219094464689853 3.1783443304875467 1.7120643055729183 +3.5486440973496913 4.4815722632846775 4.120976098761398 4.5788272689744005 1.0392221402858164 +3.6562156362914915 3.3592144631712615 2.4532863699422007 4.681163935571426 2.247587182795986 +4.568638003546386 1.3931009962109697 3.6599144741967105 1.007772444861951 4.137377506189237 +1.7749214010369259 1.392371188931655 3.7398673824976467 4.241436879720483 0.6308063294911972 +3.3178329441381056 1.1820985065948513 1.764928855736259 2.5262860133615583 2.2673831412391414 +3.8306830337569293 2.1333737853606425 4.0317555405989385 2.5475558891470653 2.2547078059166403 +3.942147522284611 3.456008932079816 3.3021615019401485 4.852676571202965 1.6249392939114313 +4.764029108440022 4.224482901196119 4.44502415377981 4.141212729439307 0.6192023024110027 +1.2697625878509484 1.8485446417989646 2.5242679403735653 2.432329065711666 0.5860387552426722 +2.9359810452007102 2.9499089340074702 3.948069788795876 1.1138237185878666 2.8342802918159236 +4.333045102523591 1.3027750491870536 2.4740650612980963 2.704333130547317 3.0390064132647012 +2.769527831309494 4.117550384306456 2.540448788578309 2.2116738672171294 1.3875365769249095 +1.5864309294501013 1.0482617976098019 2.216819210572873 2.0151207536969906 0.574724527031737 +1.6185104798971 2.277265652072552 2.788129087734223 4.122448078803406 1.488074442625701 +1.5372376395941383 4.245258085764773 3.205637457953367 4.181182574506871 2.878378538571602 +3.5179119082405625 4.630187542223675 3.590542238745409 3.089834225690331 1.2197809640628514 +3.459001829815151 4.186590550645565 3.08338005817785 2.390015012229623 1.0050574280221134 +2.8672590965183207 3.601541858482485 2.8843340877072348 2.313075355576128 0.9303266703442191 +4.305997320518728 4.359788453134881 2.8188673947379024 2.862402623802293 0.06920117136159991 +4.1495053285363666 1.8154265376649859 1.7202008035171175 2.4117591501039306 2.4343739952459016 +1.45254078253692 4.7284974983146135 3.3446489780495803 3.1335558790444873 3.2827507825140403 +2.6789418272974714 1.224699107130998 1.7048071771449838 4.767102137692249 3.390054913205738 +3.558108959618241 4.5702551209912885 2.6919645998138444 2.474795927362035 1.035182150288864 +2.4980663621294217 2.6827299253749226 1.985994020003643 3.2348626862620895 1.2624474552046419 +3.7524393053059817 2.1532547918035894 1.6287025212083734 1.697998039664249 1.600685158644245 +4.645849880876036 2.928118866505759 1.2021004175358159 2.6544141755741766 2.249403274096721 +1.056791530569646 2.73654218307599 3.8836328694953224 2.422964669641476 2.2260085005812007 +2.9567550893300845 3.7018074799915732 2.3078258213001948 3.98749982779232 1.8375004307253122 +1.0779544024091012 2.4515002027574186 4.615034028589229 3.933464143157424 1.5333510929927379 +3.2916477049270516 4.802534760848108 1.94848589109053 2.9137170752574666 1.7928889911642893 +3.546893044159829 4.227035136050885 2.4876890375856937 4.567447310887266 2.1881471021227705 +1.1988383167765542 2.7622867479282456 2.9243615577358093 4.010753945842555 1.9038433280622022 +2.721642239273275 1.7832565361295667 3.487988328474502 4.556375957651517 1.4219774449839195 +2.2284242856549317 2.5941946439233026 3.046862798575371 1.6382502682712774 1.4553271850403515 +3.497635668876091 4.62550843293035 1.3854668598287634 4.804060355739214 3.5998442274877163 +2.1461497720474276 1.3967195615614107 3.3103159563940387 1.9936663054878352 1.5149956909577476 +2.379222073649504 1.9037535641193113 2.270782465593032 1.9365775346876255 0.5811740181704192 +3.7917944394513303 2.7550696735152553 2.306716268955205 3.4363560967590594 1.5332593977751878 +4.2546510283325745 4.631790400932298 3.5922193277783694 2.3859379094878688 1.2638627166262382 +1.7850908942746795 1.997368376968208 4.740090696762713 3.716793283526456 1.0450834060469603 +2.3698904335357494 3.429239099781422 2.6407743781905784 4.824170222855871 2.4268162293791744 +1.396427698573449 2.834042736035495 3.4257864283342827 3.5413715187292367 1.442254106965416 +3.7003573716115405 2.377982029014567 4.573640629764924 2.4863887716686506 2.4708898935069543 +3.687132350773964 4.348555244354897 2.869727314577962 3.377420648886471 0.8338061920220227 +2.243394620268639 1.239401810139959 4.868863123999915 3.8649659532603975 1.4197926229590334 +2.061114281114763 3.600394403052219 1.5347118416215184 4.957582369743101 3.7530555479602365 +1.7002325140736394 3.9546994290435786 1.5240869103265449 2.1649071249649454 2.343772945100118 +2.5577859753866994 3.326366396865393 4.392818418572402 4.463028981074217 0.7717806601406826 +3.2695527452510857 2.562480494776041 2.203101138579466 1.4487783535311949 1.0339023316710456 +2.7630956174550767 4.867705723886701 4.532493263464107 2.8776330564834716 2.677302001034273 +4.819311542547839 4.1089515279720334 4.849553103409779 1.5130901699380361 3.4112455579654486 +3.3671225026868012 1.2126430845425498 4.15249770312995 4.983867981135295 2.30931983544027 +4.640000860942158 3.185899303149296 1.4292932877252906 1.9182990626163146 1.5341245022006522 +1.6384062340744419 2.054497518092835 2.8237478863015575 4.362632021694852 1.5941443908257626 +4.218126364322314 3.7304630334571716 3.683599890710794 2.539929132567721 1.2433013823293357 +1.4056227255650038 4.0551429385754245 3.878044497420405 2.599102045442542 2.9420488022162266 +2.6621824429575094 3.727149580550051 2.20371437776438 4.861371550362694 2.86309214857212 +2.723233370664651 2.876329947569194 1.3402084370545873 3.1073258866052074 1.7737369146426922 +1.8752363624234412 3.7630913608617997 2.9173305137217422 3.8154265780966106 2.0905915516844322 +1.5925833891267813 2.5912541610968134 4.4867004236756145 1.3448182940046167 3.296781252605818 +2.5257889280595798 4.84129398253102 2.159676736315342 2.350178959895273 2.3233283785276 +1.9928771112554875 1.2451784175514575 3.212341059341455 3.8829142736390927 1.0043514187276175 +4.408789071066593 1.5027656573267247 3.5818671354131335 1.8134513777652788 3.401803400124933 +1.988342251693057 3.881436479991336 1.3844215113910843 3.658079424674877 2.9586020455367543 +2.32289158152465 1.815159671792308 3.344559712236998 1.550858195899203 1.8641772506585732 +1.0339070103359784 1.5536041220843981 1.748658123413085 2.4401430626393528 0.8650066526544202 +2.5468697727189658 3.509375405800531 2.0303791913184153 4.795002279804977 2.927380726025694 +4.296377281070214 4.754877424280011 4.626417779462582 3.7531166962237497 0.9863453570172678 +1.1858714724501316 4.441493170720362 3.111567667352449 3.1422264365954837 3.2557660546144027 +3.4173600517437976 3.589955574607787 1.3724818402664032 4.168912636218609 2.8017520252625108 +2.657349149445401 3.0976306838270555 3.2375706189595546 2.0147126566455285 1.2997035914054698 +4.161666159050315 4.793213438994975 1.1949125128345077 2.0140850661070617 1.0343575971783525 +2.498819678892703 1.39355298762937 4.790670439842326 2.4604890342454007 2.5790230401851506 +4.349707715162397 4.78590152334217 4.776935882877172 3.1399416044773916 1.6941119519701142 +4.237466048900792 4.149280848634753 3.7394432314430084 3.5900001906162875 0.1735219063908026 +4.733162071148312 3.7830398230177145 4.525670267208049 4.031347222441163 1.0710217359980827 +3.1370886144017067 2.3315181105675613 3.74810857460519 2.04512533134563 1.8839043933996353 +3.6547720474236067 2.036669922254174 3.5852256971014635 3.156611408797329 1.6739070152240518 +4.044343063274747 1.3128001129908422 3.971938999945626 1.932965900933664 3.40862702385288 +1.1874008593989935 4.082990508977901 3.846569500100201 2.5124898423897735 3.1881354977267313 +2.81747425078123 4.042009420345506 4.166972327969184 3.5442167536908293 1.373794339337069 +3.2361726157660846 3.5371976819597872 3.0609651328989265 3.0455021485633624 0.3014219540137794 +3.3741616050030676 2.3971573470562917 3.957372739478895 3.7702796502481153 0.9947568266084162 +1.828571404707331 1.0706412179908442 1.1153111708413328 1.696358757912655 0.9550258982757975 +4.511193532596208 1.3264978173080415 3.4134875207111897 3.0938433090883812 3.2006966774436423 +2.5044175935530735 3.472408003329603 1.4123381060964961 4.273038158854671 3.020034805307707 +1.6577098034814983 1.4005171098161049 3.9233218792400755 1.8989950808774712 2.040599683486169 +4.970006191250029 2.811842671699188 4.239965852610441 3.1965873879815914 2.3971458857506627 +3.6583761035036333 2.8732202333849375 3.9769818549750315 1.5411831720270546 2.559215693182766 +2.088972700325009 1.0719680587448632 2.070895424517635 4.799487796858161 2.911960641112867 +1.4698504627271327 4.64688735021206 1.8374172288742363 3.068026333112915 3.4070459568187563 +3.2753090525425352 4.366712391151779 4.398045952097114 4.4664805442679665 1.0935467712599196 +4.668197086699157 3.362954421951298 2.8495072802130363 2.6730102732657084 1.3171217131835073 +2.104262142303788 4.091482378458538 3.3542935521133876 3.7435666048211242 2.024988339854662 +3.937246933831163 1.0223262068517678 3.081420839014266 3.3305546136867785 2.92554789437067 +1.329939317471112 1.6522766116970176 2.5117910529342224 1.4247882911540413 1.1337884879317743 +1.2612999094424828 3.71691451419546 3.918365162220653 3.3037555479060905 2.531360911660764 +1.7186023292767976 4.9717221273507715 1.123085500287913 2.7523478370645678 3.6383078735395356 +3.9146877162378546 3.825662543864973 2.196093732201934 3.2093331874350404 1.017142898002588 +3.175711682807624 2.6020723737437628 2.444018852494234 4.532181818490334 2.1655222532823095 +4.567611397946589 1.3250050668884543 2.242245950548668 3.2197102608117434 3.3867288489125267 +3.095493111025035 1.0328443871098787 1.086787020432232 2.4625875104077157 2.479384348277936 +2.2612262840586186 3.868002243412398 3.9535813353228053 4.3194946278525626 1.6479142942541718 +2.5887524698123614 3.6263603334519607 3.886760841433881 2.095212958068597 2.070331832600118 +4.252094178652241 4.417930799823788 3.061547096068497 4.078835009279803 1.0307164902568549 +2.184413627103853 2.1637525039658105 1.066903639184357 3.985353570849871 2.9185230658070473 +2.6973407162572896 4.9635762268103605 3.1403132565835654 3.6629118500211777 2.3257112200689725 +3.9544218128861104 1.6372736787339486 3.5367096257392805 2.866964784987666 2.4119978497747985 +2.213643244711481 4.81116316759864 1.5378180296448511 3.188152630690029 3.077452525255696 +1.730263173112395 3.2053545816722075 2.1598002280762665 3.852664347079926 2.245369365832047 +2.2206906575470056 3.09962291793788 2.272129175159165 4.119211407652127 2.0455401956321944 +3.912028783261852 1.6297614638622533 4.532808023019125 1.8854553568953927 3.495314042547803 +3.8313576656145885 3.1794101190525996 1.9623287289602032 1.1666538894690066 1.0286564313061664 +2.461035151429054 2.9257820782933157 2.9797445616748766 1.0009724638742514 2.0326162257209455 +3.8768380352841465 4.446746921706579 2.8673227347205588 1.3459987168080318 1.624568529271933 +1.7772792722376218 4.010240994564343 4.533855732994965 1.1560233181150936 4.049181383488458 +3.6851422346669622 3.530421934839013 1.7445127954656061 3.7409582762676767 2.0024317538917176 +2.95911815415764 1.01420684614112 3.2124823194490544 1.6106606823287088 2.519625478756205 +2.0353547147120605 1.7389897026524754 3.7784638058408664 2.6226127109256874 1.1932409538687885 +3.458260915562109 4.6272825467891145 3.4052918194248685 2.152330407304269 1.7136288613757344 +3.5439012909768137 2.0910331774539834 3.8954927986893604 4.9610905332126904 1.8017558899897181 +3.9435083838294545 4.586461170855716 1.282579213404928 3.3943332459834856 2.207463109647959 +2.906596854492137 4.445587198834019 3.1167573914922606 2.814235401539402 1.5684421680070268 +3.0956518426308723 4.153499114177601 4.297162112199313 1.6272633902368465 2.871828691871378 +3.401239255587846 4.132214712985348 2.9134497513073914 3.417330792604182 0.8878182376454237 +1.6325981922341395 4.987399811149455 4.589526539780809 2.8743277498337023 3.767837681125985 +1.6668833738751299 4.471913023433114 3.890530015490319 1.2978171316758678 3.8197318535201963 +2.3336850893080956 3.0715839611445137 2.917725511653234 3.553000822504852 0.9736885876064681 +1.9295985632597348 2.0116451092832968 1.3875028217223413 3.0192759405031144 1.6338344918901448 +2.627987651854573 2.5709062153014854 3.3229018481900097 2.338525133836708 0.9860303272009262 +2.1315169598337707 3.4175644145216553 1.6663103739055312 3.4325799923768296 2.1848630210710995 +3.3646808190255317 3.418835494035676 2.7296975306329228 2.3109920802340285 0.4221930636796337 +1.6255524641317542 3.7044514766272183 1.3790487315527842 3.8727117661288486 3.246563788710415 +3.825037451583789 3.886985719165147 1.2476987584711403 2.0243226512607935 0.7790906614175825 +3.41267828508033 2.807870120199654 1.4209099873575797 2.44828347408542 1.1921783413305453 +3.3970330294464826 3.2060131304863244 2.0931311569132767 2.7726500167958896 0.7058572679620967 +3.034118171231907 1.2478543239196807 3.260138697046843 4.886035155943747 2.4154249786048356 +1.5113688015872517 4.992824780922382 2.4921344639624174 3.3865831631699046 3.594520025199789 +2.455920113951186 3.4540700858253546 2.451512270764148 4.1896604199197265 2.0043608344720183 +3.6515612844409953 3.7657869295822235 1.8348141993098936 2.5218153815197963 0.6964324248379979 +1.1409090260236003 2.029513272170625 2.494916675822706 3.277753384717759 1.1842511638432784 +3.8812775571360985 1.6630597860710021 3.471177109290114 2.616088665675241 2.3773233533267426 +4.106083115044989 2.3455825184107084 3.581814193285604 2.9942167601637646 1.8559722773147855 +3.816047144927659 4.959836720276135 2.62735401564729 3.754602522016533 1.60590902226357 +4.020913100677992 3.2391994781985014 2.9353924142665364 2.836378891343574 0.787959304337238 +2.0186940073647617 4.677725602210087 2.823426931719734 4.717593951772457 3.264707907645198 +3.12576378073649 2.697217434185398 2.688851417595402 1.8231447909401068 0.965970980194115 +3.859631158754826 4.696900511434297 4.251004975365181 3.304829788890723 1.2634347836102482 +3.915447665456465 2.70202448232788 3.5625131220538337 2.283271589112413 1.7631944648722735 +4.588211032213801 4.7571149994955295 3.20061276826855 1.705171055652388 1.504949987871978 +3.544467217071371 1.6887345616947087 4.633857044780856 4.232437558408416 1.8986524938152405 +4.82198424641686 4.287839971861869 4.242959660279176 2.140497398942817 2.1692527898756926 +2.031621227917098 1.8441584045107202 3.2648545621986065 1.3854181041938527 1.8887624810539163 +2.3438389340362447 2.902758542566051 1.5578879027454762 2.384955878145988 0.9982146886978842 +4.196591915701282 2.9003069357976914 3.723672990457906 3.5898635385315503 1.3031729426858445 +2.327284306107323 2.894799746924535 2.3252235720216374 1.1228192020107857 1.32960522132968 +3.956986359672308 3.2978747791499385 2.429439081182677 1.1595938693426304 1.4307113397229325 +4.145042732318091 1.6576761393560377 1.6309619101761657 1.8578786690263973 2.497695694681549 +4.197526821634654 4.403602323108412 2.206500610761945 1.8018943578530773 0.45406313679995597 +3.0226779071381444 2.7998408098516614 2.497397517566645 1.1705744577225352 1.3454054422593777 +2.4936697535006256 2.5322157371026024 2.031672193770626 3.9688613503986443 1.9375726106159263 +3.549197357745971 3.135611531338754 3.6655477381306953 3.58260116662743 0.42182149012240605 +3.678518353031826 4.530560709357928 3.6228952588075294 3.1916106732829803 0.9549777854404881 +3.750719616535791 2.8995943177930363 3.9897034027810783 3.506518057087333 0.9787146430155869 +4.255646167917979 2.5780781919067817 3.585229585269074 3.241054159016257 1.712510157101152 +1.8883139401693811 1.2060517613988306 1.148936671502224 1.9531542618977706 1.0546315059215507 +1.6191984642686443 1.8037701286542638 2.447619190502017 4.584699236443724 2.1450356225611467 +4.07711138626393 4.444113651052373 4.076145870488018 3.738324360376 0.49881262519528374 +3.858143408252548 2.8926474074885222 4.840837679219883 1.4790353735805253 3.4976988534883082 +4.979072913433474 3.552581181687443 3.068056899673131 1.9274251670332214 1.826449947369189 +3.584164423422124 4.704479904910771 3.9069979587843697 3.3584551574859205 1.2473996885198784 +3.34532181785656 1.9217346248846625 1.7594008988562755 3.6076082861745125 2.33291042316916 +1.0949736396528804 4.696210236736851 1.428383758918664 4.397281308403457 4.6672537629224475 +3.138127151233134 2.576200828817879 1.4442369689436068 1.1329373462356553 0.6423929069667925 +4.946993107111464 2.139673255192211 2.9576800602488356 2.58826493868196 2.8315211959337696 +4.766910539610675 3.299319278870646 2.0370212069283773 3.2925081794696727 1.9313393401526864 +3.7856015269578474 3.7699315656526475 2.1069418198670835 4.1548172740060805 2.047935405073195 +4.272889154293244 2.5922328111106507 3.3361574834553442 3.187722209694786 1.6871984988069006 +1.7040606890383323 2.7624654337245635 3.7557665800350817 4.942873348874494 1.5904222974413673 +4.649955360071154 1.4792942080485165 3.481770996502166 1.3927952670396389 3.7969608556355983 +2.909302161734265 4.581559813240669 1.6111048486408177 4.431130235468336 3.278565057364793 +4.266169288506614 3.2850114757425164 3.8538901538813324 4.8045242523564955 1.3661536673199373 +3.8776029318607 2.0647810562432105 3.3339328658409038 2.3131969493690465 2.0804386469908107 +1.7488940545792655 2.8661625494968552 2.9633717772394936 1.7094974709563848 1.67943135188443 +2.0884469391753435 3.8610493250916056 3.3022896660579684 4.938672996027789 2.412440594327484 +1.3479985807513821 1.7073650180736162 1.3376684260705205 4.814318797842816 3.495174107797509 +2.326798647561409 4.74104823115773 3.204955534094248 2.2373987889845015 2.6009165897626123 +3.9191216761200836 4.758560745095547 3.2161032724736067 1.109121127866628 2.2680457905904405 +2.3249511256117064 3.872365277795384 1.2903196618492156 3.6150144071104733 2.7926145844035895 +3.890855296866202 4.793788927653277 2.753850413474238 3.6784678446174124 1.2923647068765585 +1.4214838981567208 3.0991036022976366 3.717315126677195 2.7858187847180518 1.9188781375598398 +2.160874392043736 1.7612363360950054 1.693957000355836 1.7499167385917143 0.4035369475846154 +2.615132904289101 2.722640792656443 3.973663685343748 4.129314836126353 0.1891698358649022 +4.130205341495384 1.6959611501118288 1.0387232134938937 1.0560340744410857 2.4343057427511674 +1.2803537034307553 2.829272502249173 2.266941574652331 4.011938408645193 2.3332731078847586 +1.8199286966249284 4.87662854663275 2.5570815878519606 4.4373348908926395 3.5886998281596667 +2.9048976377583724 3.6120934090468007 3.5067687578698292 2.935567800275725 0.9090634702179251 +4.8023913226546835 2.937004512106945 3.2941508504948738 1.1890115656270188 2.8126996572082503 +2.61133041934667 4.216249325233452 2.5745449321995246 1.3295033322253027 2.0312294996231217 +3.037726110943485 2.22325486957902 2.1947891613607666 4.81551960770774 2.744374514423966 +3.839312909420436 2.9244569841073176 2.0242488805656227 1.8104454845059972 0.9395069218729317 +2.4539561386453626 1.8842376169438664 4.759775495367331 1.4661157531778373 3.342569923171316 +4.752096448752296 3.5820719447600733 2.5911250164352113 1.5136038478857228 1.5906002667592198 +3.4152787058781624 1.6751489630024485 4.829919662159256 1.8422149347378562 3.4575180491642956 +2.5206664078705914 1.9814593596782775 2.1846423217739774 3.4187973213254716 1.3468046642844005 +2.552343809570382 3.1376678906626605 2.2224492442205532 1.4321243124961818 0.9834723064792689 +4.5307488136510825 1.9690463516049324 1.2599999914289883 4.361380437747631 4.0225464791424015 +3.0514513046015193 1.9158935216558524 4.125599604012228 3.820271897699122 1.1758896575150666 +3.088594714523547 1.3884156497743771 4.076574957092653 4.233333730733728 1.7073904548534924 +3.9181791895929208 4.320420094186851 3.68666571141475 2.0476813632679347 1.6876218293204148 +1.719902148817237 3.8269666206672412 3.8348891950186976 4.867951927211023 2.346686876678951 +1.0710265113203792 1.2216448460036742 2.191137676692105 4.9806585014293905 2.793584134116199 +4.753570260175414 2.9888466657133783 2.129833183374025 2.2842747310113416 1.7714687568477234 +3.162329599685637 3.640557042367452 3.043670737027126 2.6523936124063305 0.6178990817160246 +3.9341042357305884 4.154238672033498 4.572881106055095 1.0702896766887102 3.509502228396109 +2.2048200493694643 3.7756335374298295 1.461090230503335 2.443368073805157 1.852653441881144 +2.752621216506646 1.0058995216434279 4.426319395013942 2.6834382040944886 2.4675233585452934 +4.247117049139037 2.0077757553585833 1.3362796878738443 1.8603988580439306 2.2998587640483703 +3.684570493787473 1.5375457828890147 3.8585339680608164 1.5531417555099774 3.1503251201897657 +2.0939019978030937 2.282353308803242 3.8005878141491833 1.21960726263316 2.5878513295631245 +2.4557608408084786 3.6851635686173405 2.186092288759108 4.43326210326323 2.5614845778107584 +2.845856362386522 1.8398932123455332 3.787582106767097 3.208662775231071 1.1606504433577358 +3.648838782726513 4.26688088756913 3.7750179469224547 3.2929744622189543 0.7837996966721702 +3.5695819060985627 2.961442331843949 4.4034245054465835 3.922483839811444 0.7753306814747845 +3.8109275538507106 3.9545515938939255 2.4233073148816877 2.619843636557914 0.24342224757888514 +4.775211271996611 2.4282752173545514 2.658190960222252 3.728577759956394 2.579503197444022 +4.8126069357986445 3.0650792140567678 2.1488438300066863 3.8865294199026326 2.464427793137461 +4.378523244967102 4.631297738298736 2.813125317771628 2.552089133945169 0.3633659776943147 +1.6859627982619658 3.9052659722151803 1.2468520000030314 4.462115613519211 3.906817974044854 +2.487387294847674 2.8111913642112176 1.1904684677253052 4.954808992071822 3.778241477006704 +4.559426186854008 3.529731840677342 1.7798711089020323 4.057257937781185 2.4993521590405052 +4.8538516047956435 2.8220063185606152 2.84177387877032 4.074865393388857 2.376743560130066 +1.1790237788240034 2.840276026565898 4.003599330069848 1.844200643734562 2.7244745763493663 +3.2016608936246453 1.6624503157842523 1.8827976843552507 1.8301684289491837 1.5401100744623268 +2.702379541794734 2.9354545150629745 2.4224903480582496 1.2831936170690619 1.162893367599386 +1.9417612817621883 2.3402067958993955 3.362267971733817 1.6818775890916347 1.7269831110385543 +4.758453831531961 2.8418799579519987 3.830496909331033 1.8114799561339021 2.783825581854353 +1.4002007265333618 3.53979077590148 4.290241307447747 4.799726119601463 2.1994136384887617 +1.668847720132466 1.8178273566620575 2.1806382382684792 2.968240932582431 0.8015690464277456 +4.090510387653473 2.049011806131056 2.408995024087278 4.473190020930065 2.903208129526513 +1.0009190809782473 4.376629457781654 3.808752013671526 2.5996502784227946 3.5857143715359827 +1.2138381705084944 1.1422788633396568 2.9270982224471744 2.616052914223527 0.31917067254124076 +1.8514211243168437 1.566893906966834 1.9562022251642852 3.9777245163930663 2.0414475529260607 +1.7776276471997003 4.361926173513899 1.4423203707813572 2.4811347127600696 2.7852709222282854 +1.2268889604390947 1.7723100485766197 1.476863087820007 2.427781644155205 1.096234584460707 +2.2516080867541084 1.7014007926597783 3.245372493844151 4.209138672951709 1.1097627289047807 +1.850731024839218 2.188838907608948 4.895631735698654 1.5281638839783716 3.384399012049354 +2.7497564704644475 4.353640382168085 1.1509500019862369 2.5714905117654987 2.1425169642608872 +4.51638418666518 1.2972859937964887 2.492748175893907 2.7811448238625283 3.231990996566978 +2.4110555093485413 4.65586941157351 3.508838170555253 4.017416323880534 2.301703976114706 +1.9641446879444318 3.022189240302006 3.8197990119630476 3.7779410226873846 1.058872214216494 +2.068908070756274 3.99580275902359 2.8240533001859522 4.6970876053378925 2.687225455362614 +4.206287330940687 4.108923343724277 2.9344597522160414 4.28882318140127 1.3578586245707056 +2.1099584548786963 3.417230939223492 4.963757586154589 2.161950886007386 3.0917765335345266 +1.5705473220044364 3.0934320445936025 1.9852632069875895 1.6930536611360134 1.5506657592731794 +2.363966342311626 2.705049020931322 2.966278804648317 4.310343671752049 1.3866678624086448 +3.5407699620702657 2.8949809034667835 3.6005844002090672 3.677457943886753 0.6503484065710755 +4.4560747540626355 3.1700711816712324 2.5849680114142695 2.215549396129056 1.338011697079923 +2.1308256675155195 3.0488669840033635 4.136021701069433 4.251569478047067 0.9252843603688581 +4.29111908641632 1.1940093441447646 2.75446212632213 3.2028245519441594 3.1293957276738027 +2.2306514012342684 3.3562203025608826 1.0099690020076264 1.9583064907416028 1.4718183801583218 +4.1559498306808935 2.7266693110447355 3.6605235863122623 3.1690090859331166 1.511432865824469 +3.7925787313766204 4.00312185513612 1.6270772609580542 1.6454835827242014 0.21134616070174314 +4.893012132538928 4.127951010225754 1.3811333345543666 2.2989544531425623 1.1948699203685647 +1.6732500257242426 3.845411292663534 4.932880486889685 2.698786086718323 3.1160010202932136 +1.7755824365447932 4.485161317513768 3.858984159275501 3.4484773281107013 2.740498781358249 +2.3929232403574137 4.853303405912879 4.559534731857427 4.673782493694551 2.463031284848719 +1.18118582278831 4.64480537552096 1.1000069530937706 4.218442810131684 4.660611826845453 +3.9473936834181096 1.7633670446193341 2.7668500564034524 2.930612352458995 2.190157630991902 +2.8811574650403133 1.182119377899694 4.752383452340242 3.6861834556148256 2.0058696005901613 +1.4482284333669853 2.683267004947501 4.434114842194953 1.147918828444935 3.5106131250934145 +3.5886692920527836 1.9140203255041377 4.984920708486737 4.872263179201648 1.6784340559185125 +1.1394625379190035 3.450805818090059 2.972791418958234 1.6079863534478123 2.684213222833611 +3.3351213548099157 3.3148342774126562 3.6237185506448175 3.2963262894369434 0.3280202100604889 +3.397797425528594 1.5880168400655568 4.349544869290138 1.9472016805758048 3.0077497508737467 +4.21769963393089 3.4498644729953005 1.9426403280342264 4.572589384504733 2.739745038137507 +4.454369928947498 1.3230410572721505 2.2536605286814946 4.068239419929192 3.619104454854727 +2.2336856023857052 4.852192992048295 4.330514977113465 1.2562301623445862 4.038292717478032 +1.3451439709491417 2.6600723302553724 4.324075088560361 1.1577477255386532 3.4285077745176222 +4.300106252939047 3.2035518205988893 3.923172432318635 2.9022422408609363 1.4982423298367655 +3.885387726023317 1.4990859488265844 4.167468317572162 4.180085274256145 2.386335131419778 +4.119536654778395 2.054579600569231 4.691002282226741 1.4427710338699828 3.8490328497597277 +3.8816698416638262 1.2685563423199633 1.4262058485378422 2.550697457486124 2.8447923542937583 +3.1029794238974686 2.0183058675892727 4.180444179726262 1.8170381398160496 2.600423971824276 +2.1067827847846403 1.1833294027263985 2.7780302289033583 4.466568082071835 1.9245587105665585 +4.938286069959322 4.117720392470428 4.616884965887287 1.6443014859373015 3.0837607845525845 +1.4177818520229608 4.469681340917399 3.1752365878396933 4.540123544253787 3.3432030889707343 +1.058209971972425 3.568731310620288 3.299833792309414 1.4536091626515644 3.1162899054743805 +3.839532679287144 1.0855036838498062 4.089818444006314 3.2969098970780646 2.865899452440971 +4.334467938791534 2.927577737238031 4.656091045196348 1.8858221750501603 3.1070451641597185 +2.785868866236334 4.433335241282185 4.072157805380937 1.3467921491664634 3.1846135427991986 +4.775448378763426 1.2557112147194283 1.8190253878484235 2.4186178100652898 3.5704426583733806 +4.12676504573307 3.187835817499697 4.4989050816376155 2.169579135797347 2.5114433016884092 +3.6469095253942627 3.546628110050478 4.569413012511967 3.6889340856742714 0.8861712604618892 +3.8294508852334443 3.161892425715038 4.591143978783727 1.460190449082647 3.201328521414545 +3.8774861949717674 2.1595583698318923 2.2446996795820247 3.534563343768011 2.148260758049897 +2.1148334529667423 3.731695799399251 1.1891389688728453 1.6357749564613613 1.67741692870926 +2.736132402127186 2.119831321540142 4.7141904737527 4.537489843529928 0.6411319167331186 +3.862521352599082 2.348192464839642 2.546868264792392 2.553191832560688 1.5143420907483431 +4.827450125543627 3.7518460566351135 4.02550501372785 3.2561971522014397 1.3224064045742097 +1.316397007179638 4.000189724622008 4.355051707679527 3.922927087585899 2.7183588868079513 +1.1211115547390942 3.3029921883021625 2.435878381085017 3.878386429130824 2.6156132297789174 +1.1596386579878244 1.4061473948316094 4.606413224294354 3.789508593281324 0.8532876030453345 +1.0373169560179165 1.6906300368015414 2.514341934597105 3.8833675453850685 1.516920928893905 +2.661677891839932 2.3978446546269074 1.4462045957626106 1.7027632168927225 0.36800856394177633 +4.342636763130443 3.3736959663073725 3.818838734067091 4.025223892241388 0.9906770923276446 +1.1428336171960223 2.2647745821230227 2.0168974611465944 4.362580492386964 2.600188533901021 +4.414263893745175 4.646343540254742 1.734139017109042 3.8470313003846854 2.125599859580765 +4.278646763657708 4.429530889240219 4.456092832802057 3.007231588953481 1.4566965790030677 +4.569596783483707 4.892617902228804 1.2265750776256206 4.3338929278294955 3.1240625578485086 +2.6169699771993313 3.4539749342359345 2.335090351461053 1.3145152897895445 1.3199055854907384 +1.452790603766386 1.2107912967392913 4.793484043221239 4.336191617949101 0.5173780308564214 +1.1452830018238958 1.584271182699493 1.870683740298527 3.9373149590025953 2.112741161872587 +4.003981595339814 1.6707985876793905 3.384445934075832 1.4602764188606363 3.02426375677103 +4.184191088217194 2.336222551081849 1.6312504549184412 2.1109977703968714 1.9092263357053578 +1.8350129967093403 3.5603174508803495 4.049360779679181 2.1196495107479003 2.588524877420091 +1.798109847178278 4.651258282213751 2.278957521390861 1.2761063401941128 3.0242629654137363 +3.352452887157873 1.4795739494826292 2.583200406106186 2.778507801245251 1.8830349157101565 +2.098850126874591 3.9038130890228415 4.1599570764999045 4.947228906274514 1.969184660889793 +3.3369869092893834 2.444319107335071 1.0028289121148317 1.3754548877090902 0.9673189351674638 +1.8566120463383302 4.414202838477705 2.568746251338863 2.2614846772434736 2.575981431406618 +1.3842964420480284 4.779827155759274 2.2819432415200316 3.053653044141899 3.482120739896749 +2.5369996990625236 4.6841166801015905 2.8283863759202488 1.3404632475161158 2.6122837836472246 +4.512563337417739 2.2651157214828954 4.219311824229892 1.2779482878200352 3.7017077463912127 +4.198106214306446 3.9751190490268744 4.232639703773288 3.7413797013098264 0.539499458664992 +2.643736485981567 4.171281751750142 4.55698245411665 3.3975319374846853 1.917738261465864 +3.2520670515761276 4.4013459575596094 4.816369756049862 4.569574680934015 1.1754785463121074 +3.504191024275437 3.1876406593665756 2.478098579363094 2.615132204196518 0.3449381797640278 +1.050080844313046 3.4787066532039352 3.6203324417582934 3.8470820089767277 2.4391881202245704 +3.742612165513992 3.4353612303087844 3.9008623017051103 2.816209660583908 1.1273306919780344 +1.361295824078503 2.146665632455439 3.3734095697297395 2.863910602414452 0.936159673135609 +1.0575301580624181 4.528732855579168 2.5942463846335895 3.103284965773023 3.508328440202828 +3.219674286255478 2.583507444835431 4.208094418746836 3.9970234874291606 0.6702679972739783 +4.274892845652703 3.0882313683040663 4.70589751737837 2.7211734846858624 2.3124218792794835 +3.653655143990608 4.026830608187133 1.982055551555876 4.892880874243196 2.9346488693327575 +3.4183370925248227 4.364214150180159 4.917154260781368 2.712605550711579 2.3988994191647732 +1.9205206809305704 1.699678367264688 2.935179276753573 3.858276969484115 0.9491473425289403 +4.832195279882043 4.254511603647898 2.5425844508513307 3.509898001140934 1.1266827123734855 +1.564149038049774 4.739058518979582 3.0443861588919146 1.1436852731335745 3.7003667479346585 +3.599625273797751 1.9932588741458268 4.451881032556672 1.7114063245703628 3.176572781323188 +2.7671209350283745 4.254494652238156 2.121490326959853 4.601121577098141 2.8915137404668876 +1.8354149325107674 1.9215014686272336 4.81370406772294 2.7709879120818353 2.0445293307305974 +4.249993767715663 1.3206321745241953 3.4775394931690777 2.511597654201915 3.08451016855716 +4.573033992911105 4.667830625459246 3.7497711455002194 1.3804363141554443 2.371230470571353 +4.349198117533765 1.494378731063982 3.321325144418667 2.0204557014824247 3.1372368474389942 +2.2336558588114626 1.5618919668382558 1.9167046308180562 2.431262665667473 0.8461895164719803 +3.6181096996667317 1.7442944387905506 3.361719568425309 1.385833902562747 2.7231062771132546 +4.86068990680931 2.501612130830561 1.1007719922734926 3.6698850689092035 3.4879205773150064 +3.9558579334986703 4.80481839239342 3.0986964768159186 3.3333668497759903 0.8807973914084913 +2.739202992917449 1.7867024517929755 2.9938587636985825 2.409891343626996 1.1172623812459985 +2.256257244586406 2.351608717639392 4.869772326840893 1.9879171902857005 2.8834321444249253 +4.757171266778588 1.727339234574936 4.279733159278923 2.9412930588580295 3.312295887414348 +3.197529997058732 2.6139223275308376 4.912014697311638 2.609436919326315 2.3753867760016694 +1.842079962475275 3.6871895771252183 4.7765164387104875 1.043788063976737 4.16385525800503 +3.366848527477121 2.2876808549139276 3.4313705827722627 1.4662012766559607 2.241984225459021 +3.609805260399143 1.6858421374282444 2.628073831363769 1.8541154636061394 2.073799810390093 +2.2587143867138697 2.5358760005297745 2.1832875433143757 4.13958357618305 1.9758321609870482 +1.3883564075883172 4.108384007844345 2.956282445238772 3.0661292848917276 2.7222447491613067 +4.514985854199248 4.579815094849124 2.677668749635037 1.0562325983355718 1.62273165470575 +3.2476744954836896 2.2083917921968785 4.155815678053295 3.942353338188008 1.0609781844561672 +2.077629346885753 3.183670328692565 4.892089005908087 4.974091036034516 1.1090766368385157 +4.024786574320551 2.548363122386395 1.3608708369013307 1.5469965315794476 1.4881091974853795 +4.0549341213087455 4.170817117108053 2.556486923937831 4.088626691654257 1.536515908324273 +1.5111588754801417 2.064150733184991 3.4533383289437447 4.08185378905036 0.8371569018295737 +2.621107967483831 4.315221300261433 2.907472681544548 4.691821768302319 2.4604718343659457 +4.888229951927963 4.812041556838281 3.1235736933883143 1.677355412730337 1.4482237350822758 +1.376353756069784 2.714760414299832 4.563144958635551 3.3587992544317413 1.8004946425992758 +2.4123503142752667 1.5128950143345565 2.1272468490919993 4.2987487147137635 2.350412769917283 +3.332799187394824 4.407335877900771 4.145292024934228 3.1891070065100027 1.4383736957767306 +2.2323728282255817 1.5107198431141837 1.9126794135312148 1.9387720784647833 0.7221245447175488 +1.834568752043785 3.0937841699315864 1.444099234091944 3.816546697594381 2.685913333621451 +1.5006624940532478 2.4180996878208405 2.892928515901819 3.231438447872352 0.9778956889928753 +3.715668586532214 3.355544457351033 2.095706852969685 1.717126658561126 0.5225058392180187 +1.7512697188865602 3.923142080902387 1.6699513767103737 1.2281643810486824 2.216349545180992 +3.8098003524875295 4.479663748092603 1.8314665150392289 2.3705974374026324 0.8598715719338406 +2.305662184921974 2.6930428719288937 2.9540356934416203 1.2491235418351994 1.7483675933170315 +1.826073903171174 1.31626408859887 4.974461090238776 4.4959869669499515 0.6991734646647115 +3.3161113494881675 3.412651486192943 1.4949173411064356 4.608006244286144 3.114585448674609 +1.608500635548452 1.0662603467364224 2.200719346364129 2.515998214771262 0.6272362359390882 +2.0496166923200145 1.3991537940803775 2.648164305718089 2.0604105669407184 0.8766735078882479 +4.681926608558362 2.6154751474785463 4.476771068879142 4.32673587305021 2.0718909722729935 +3.816163908146338 1.2651268042598405 4.577580422996069 2.246140081754574 3.455923085106766 +2.554898231439325 2.3495148729021675 4.360432264579327 2.050106821375034 2.319436564659856 +4.674129873580297 3.1223980908905453 2.969890179572525 1.0411983294864435 2.475423959243747 +1.2443560380618521 4.422409489089664 1.1905404548011767 4.657121634369954 4.702893663706446 +3.8018738462206243 4.969275318684906 4.392777883298663 2.8139227623328025 1.9635706483118693 +2.3991633227905726 2.394394170989409 3.331938138775752 3.1814630601226876 0.1505506363472051 +4.554022310252918 3.4975413062179723 1.4257924622980105 2.264797363377881 1.349103901084987 +1.5895593318230712 2.4447296397510487 1.9660072024210162 1.4688081112718265 0.989203311661062 +3.6593984150539804 4.006016715741525 3.9490771832833476 2.5189022158733008 1.4715789763984295 +2.7724393873215516 2.2987270650188756 1.1742119036083682 1.741413243045033 0.738999813098854 +4.232885883488773 4.525878390594874 2.9961223918792412 1.0773432522466404 1.941019833981493 +2.3876063090207604 3.7825156831279347 2.8274078549287864 3.3290387599500812 1.4823649101501803 +2.51913563043995 4.549254567070992 2.4303094724220924 4.568245240831045 2.948245621841968 +4.378067968285778 2.5486885335422675 2.798197341202193 4.833514595465403 2.736630307835536 +1.9640058204461268 2.6673892469891696 1.2238357561174102 3.0929108947405415 1.9970453471452543 +2.1286347905455734 2.0296271759264632 1.416035790834922 2.290371679957965 0.8799237209901484 +4.105617434153129 1.744396592555646 2.1198858510142515 2.2409082631207213 2.3643202589806642 +1.7932982857441355 4.495248910873672 3.984873505919486 4.14669196159336 2.706791900614927 +1.2422009873886246 3.725364311851578 4.6010254741181615 2.116055928479804 3.513000674453111 +4.658605983097356 1.4765255383769325 2.5105006758386015 4.850860819994189 3.9500533617945077 +4.57087144991546 3.8772573812414093 2.5618500504279482 2.925562603894395 0.7831904607511851 +2.6150400238670333 4.872043471499804 2.822291512199567 2.262757556744488 2.3253263878289046 +2.312573975280938 2.1798154249705783 3.056252314404958 2.9656380103929347 0.16073513857303168 +1.6122232888916126 1.141530385694058 1.1122049297591983 2.4343845604187875 1.4034638523494898 +4.086425791378613 4.96849270463345 3.675959718148126 1.0757109107276634 2.7457851153996837 +4.453916669150578 2.828212464695894 3.516221451983388 4.818569788979813 2.083032729281754 +1.7579760656541574 4.775528561269539 3.8654023255491667 4.737095043215076 3.1409347745259524 +2.6101469994555413 3.9214270780771483 4.625612643926232 2.1935209912235467 2.7630644675316507 +2.6460615239623198 3.7341078731100636 4.027218899203962 2.753292723351197 1.6753306418186786 +4.681150520663934 2.179402970673944 1.6716190240920716 2.133223371905232 2.54397707886705 +1.6768519455803377 2.2127633856726177 4.455138250589446 2.6522374936137956 1.8808647508859202 +2.1002118042241453 1.5872660640632503 2.7225763374322294 4.8990974577984385 2.2361479199170584 +3.9946189174956146 4.063737412705121 4.661981148870829 4.767896252992796 0.12647282578164223 +1.8131593911902737 4.24866724224993 2.236408509871657 2.99528794086295 2.550999114730323 +2.45533263037801 1.3796841673298288 3.9756105204970265 4.925576664076445 1.4350802381766208 +3.332093561337418 4.595998098253979 4.001939762101177 1.191436794344391 3.081619965246845 +3.163043061609109 3.0991386778774563 4.008510058002328 3.491433001621866 0.5210109907623882 +1.230045237017504 3.1486663266170045 2.779200355808414 2.0510516321090355 2.0521470340307024 +4.16209093435174 1.5031519893774354 3.550022218229148 4.780661146808596 2.929919535693129 +4.534336446944856 1.168334626365338 4.515142127024751 2.392330035693816 3.979484819828497 +1.0937860200031104 1.7421465556904199 2.4088389838807385 4.588581397573927 2.2741258483843287 +4.216829217783349 4.793104414132878 3.938338979496063 3.5370308092925318 0.7022402362438327 +2.9115109561728736 1.8348593465865046 4.191130122116482 4.096734703405449 1.0807817464680602 +1.4078928136042754 3.9453059335319276 2.4608058299400124 4.23094326022468 3.0938409563640774 +4.101777365725502 3.225658329557406 1.6295894714487007 1.8479880216303828 0.9029299486989971 +4.788602292604992 4.053863083302915 3.124528442488649 2.354139761107288 1.0645846260802163 +4.572426659159877 1.6400867674176332 1.8337834962544313 1.9101705799866284 2.9333346599500074 +3.4641305541462506 4.006758700460117 4.775747131313466 3.8143976480889417 1.103919441838073 +3.5452461970650386 1.701688602313403 1.0045770243264918 3.5410305474358044 3.13565002512399 +3.3185327250823073 3.65343233335154 2.845135381939391 1.3549430158072013 1.5273608073070162 +3.0311906980093557 4.923742104851007 3.655258318544394 3.108298052602067 1.9700041522946121 +1.7528824741987807 2.668297826321276 2.5459378484201514 3.1197360818625173 1.0803840426455458 +2.3832703769077406 4.35353561914584 2.403347570797511 4.191462649151049 2.6606955215144095 +3.334680536710623 2.7126697332206864 2.8774309340241198 1.930667050609014 1.1328103506754557 +1.5905864567851205 2.391028157057629 1.2335297735738884 1.5773535007060167 0.8711611050053674 +2.018574941897262 3.875456385315871 3.702197782002393 4.5877860957370205 2.0572494638073717 +2.616663700597444 2.5167031232331514 4.752567823730718 3.625267687076383 1.1317233385982133 +2.2923419448998192 3.8544837627754296 4.532990610303774 1.5986198728230745 3.324277167165629 +1.1714840201518006 2.888621544534718 3.440526744266254 3.2858515435148368 1.7240898165035907 +4.919061866733806 4.946804466329914 2.1322978896644837 2.860014883663868 0.7282456146025527 +2.5655715866483573 4.0937556130587485 2.385869017998549 1.3144920627166727 1.8663319637419649 +4.942221459052774 3.646258638182405 2.5877428865960326 3.9043771943501193 1.8474429716322418 +3.5482978708830073 2.7042180452158884 2.3536648357302066 4.664550147704912 2.4602157785850136 +3.1447074795001138 2.83531758195825 1.7692851689908493 3.77811039979466 2.032510988067456 +4.98511233522169 3.756110703117863 1.104523836707687 2.124253299923852 1.5969637409362178 +4.739790609463833 4.877138450276551 3.4078217842811975 4.717862104212292 1.3172205848760035 +1.975048350307306 1.9951333048230864 4.5083011579049455 4.168150983043441 0.34074264020843203 +2.0665000425209796 4.210335333807909 1.6549316055121381 4.0609950748884796 3.222603167446254 +4.484136957115533 1.6368180705044928 4.364674696925283 4.757719798901441 2.8743189270224314 +1.6515899802448701 4.02609929855085 2.5380885275762286 4.658373673313351 3.183379273972145 +3.376691608276734 3.459550898284756 1.6189221224545292 4.196417134913055 2.578826516303338 +4.392476046181114 2.8786276171619956 4.706179201302866 4.7290514874549885 1.5140212044477708 +4.34633421559411 2.582627883897685 2.955064434788105 4.65379951900707 2.448746804147475 +3.266488277124474 4.325590169447103 1.9218450213358187 4.893976267863492 3.1551958679149403 +3.5051435742094195 4.659744646109906 3.7791985661994105 3.5070525953436578 1.1862407279666183 +2.9409521273598154 1.6663105764701829 4.445343730050192 1.1593644170746482 3.524538427731716 +1.410014462783916 3.6275050483083375 2.3101563746818523 4.436796532928424 3.07243598136014 +1.332408014511516 2.6105102775048334 3.5581601514063146 4.566374608639753 1.627894894163366 +3.511064936751549 1.5533496947888272 4.735037341567727 1.4691175965529149 3.80773958530396 +2.566946608646444 3.1991280033322353 1.7921714470218055 3.7747883995837253 2.080966913810209 +2.3888798574726193 4.056279367654358 3.230446170592548 4.123736387954423 1.891610038826377 +4.340552690773877 4.5046333520991855 3.7673733666567784 3.4991013238119506 0.3144715446476639 +4.465249605884663 3.3303792126203904 3.9013988124438113 3.709778723644558 1.1509339980812276 +2.7336729966092084 4.157040898651633 1.4792145915618993 1.45569673449529 1.42356217783617 +2.9732899419417262 2.5508376661891354 3.5375399036040918 3.673230023777876 0.4437090645922382 +2.844078439341742 2.151074024037326 1.7369656303176813 1.932941962443087 0.7201818120341164 +4.81153978311349 2.825270243261809 1.0512575170098986 3.351608455360185 3.039223770062292 +1.8742400070630856 3.9326361060607424 3.648346442460201 4.632713412209054 2.281660104288391 +4.7466012238205035 4.221661842707114 4.336682979735027 3.6887839511723186 0.833867198693059 +4.290112266144666 1.7221960250186217 3.419281917786783 1.6119415778801365 3.140170843392567 +4.882142470112536 3.439611591480275 4.352800335501593 4.191120000888777 1.4515632491931159 +1.8960327998525264 2.6537789533935165 3.74012830474942 2.5775986763112497 1.3876794911660097 +4.513222380953433 4.626010246889459 2.125777161149332 2.3298557556007804 0.2331719867730293 +1.9944881585155843 1.2732222517938054 2.2922809389703533 1.6265461762938522 0.9815433166371859 +3.805000305838819 4.727717773833766 3.7116340845327307 3.6322930816285677 0.926122303200201 +4.439520986488436 2.635208532227286 4.418735886485136 3.9551856812906827 1.8629069287910531 +1.96255922302813 1.4098822495225165 4.2640151311380965 3.2783235886987785 1.1300617920625962 +4.118686956732805 2.810360826111037 3.395403235780085 3.5757783118538993 1.3207014924411808 +3.3802608561520495 3.1191517261122454 3.9466796924862666 1.6465596584075155 2.3148931182585035 +1.740339062789853 3.7911014847460445 1.6814990304744986 4.6010753510635105 3.567849829105998 +4.344221739655063 2.543943320362091 4.942223668873309 2.858394695630941 2.753787496648269 +2.8192116765601445 1.203800337690193 2.5926950232209247 4.568967512894852 2.55249030305535 +3.2029134688014276 1.6915177848389993 3.7478968679078632 3.5962881483524516 1.5189806178307503 +4.170690800029211 2.731364162895608 1.3053472264988213 1.6403591476231414 1.4778004451405933 +4.652278233903441 2.863098219640037 2.062449123991648 2.298533141673632 1.8046885567444768 +2.009597236084045 3.0026958108605104 2.620842791134604 4.72517029932259 2.3268947206394417 +2.3042717733465414 3.531192822955632 2.606458989208018 4.812477653889191 2.5242530798031284 +3.2077912742539816 2.9165165163772673 2.7286620656752816 1.0063866917752868 1.7467322199233932 +3.5517693248110076 2.8765709309268903 4.807584398204412 2.522827862152286 2.3824368407444934 +1.5744923211462387 2.1122742891058817 1.301457079408293 4.858714900175707 3.597678786172201 +3.172030896873 4.020256797727956 1.577976807087202 1.5154648791087926 0.8505262606297231 +3.5153929390277723 1.8761495012696976 4.724528308951841 4.538280465446047 1.6497900798112073 +2.0819452955941444 1.1263316451183223 3.928740101123284 1.6803769362371495 2.443017472346958 +2.817578405268313 1.3968086038224539 4.003100717473182 2.6292904093227767 1.976345514195536 +2.79049620067633 4.345614821828997 1.457927951096786 2.2082625821674187 1.726671938858009 +4.936174415129614 3.7040489675451695 2.752490958323159 3.902961042969554 1.6857385723330442 +1.004629579338196 4.195907024075684 3.9581810070026027 3.3440902634093543 3.2498244830539904 +1.8336512013064796 3.4817371120199656 1.9817576261810061 3.423419627641775 2.189652140306348 +3.956374581198754 3.1041666811568387 3.5121510678190404 1.48136737020276 2.202348912274779 +2.0202795437633605 4.329884955110568 3.750051568948399 1.1885381330401739 3.449003948745589 +3.4941083599928437 1.0690279501622681 2.748919888289505 2.585196839648893 2.4306007962642093 +4.886537867932623 4.655630462957372 1.3493207134033645 4.410392859036001 3.0697688692213294 +1.6958624662056847 1.8204901291485895 4.940338669173711 2.5683163803840094 2.375294043457724 +1.2133082978479042 3.5575015412459092 4.754498564515705 4.277589161168406 2.39221331435847 +3.8815147221440354 4.420804714701148 3.17303828337372 2.172461257176312 1.1366565362616359 +2.992843919220032 4.46297627563957 1.2221409884888095 4.02482715401542 3.1648600107786633 +4.702904743849656 1.1459964508702578 3.8694594830822933 2.0855676930154803 3.979179126821686 +3.2251768632145623 2.749681212524948 4.240543719327354 1.3197331117848137 2.959261853732745 +3.7787718980015006 4.787744395704532 2.427391924989274 2.1314095354988005 1.0514899314827435 +3.0404001077111094 2.2598410811004785 4.845984322214991 1.5042148798436488 3.431719015302711 +3.4226349947893335 2.9847157706637835 3.4783799753128046 4.18659396921826 0.8326705879411376 +1.2253241183051333 3.1928045020557096 4.639319440747602 2.964927971176142 2.583518115635536 +3.2957542784757154 4.421481232979996 3.746260603936301 1.8033300787511055 2.245493309229378 +3.3085395413579914 2.323147601598329 3.1859760972683286 1.296714785933446 2.1307992813613654 +2.338070618430324 1.2774095268391075 1.705000112116478 4.623454951614099 3.105218285628654 +1.881495567484547 1.7775900576525978 2.8581141060849067 3.3882083772037075 0.5401817205778163 +1.8388027678102676 2.1528976211244055 2.607201367210916 1.5273242211094789 1.1246289288252436 +1.7634274242406907 3.0448193867638755 1.5964346139903438 1.1111964804436396 1.370190281627668 +3.766517613391371 4.67255791746539 2.289703423215189 4.494240543770693 2.383462386637073 +1.729093892057823 2.2134069812685193 4.494210336474586 3.8834796737978508 0.7794556502549531 +2.919090410147151 1.5173040091490555 3.568827702583009 1.7215021112927968 2.318968942064323 +3.210831094020554 4.831698246640748 2.8249851255335576 1.6332562305377425 2.0118220810029506 +2.4915460232240694 2.1764735949172787 4.588842647347454 4.750415030942017 0.3540851171958041 +2.4194578328779333 4.102928176054496 4.665507022887532 3.41445603095656 2.097427228956104 +3.9500246521089712 4.277086297208351 2.134863302206533 3.1110497248044497 1.0295189417196904 +3.0283154052408796 1.225031863561758 3.4244240560307055 2.466559020601069 2.04189543262857 +3.8352967080103313 1.1410169569365336 4.823383475630402 1.4836369685257762 4.291043009428342 +1.9240088481184259 1.3566513568333245 1.4899175835038179 4.360841609968038 2.9264482378212078 +4.959181647387223 1.2672168845559222 1.9145552948551008 4.953366377543258 4.781733640245591 +2.830438027057709 1.4003708748901875 4.708697250342425 1.611021895096421 3.411844759980586 +2.0626534233294147 1.3105692742948913 1.2886624398308086 1.054456238191118 0.78770750416349 +1.9701744860456403 3.802296705688167 2.588549908188047 2.8827902278790445 1.855599416210223 +4.728306526470412 4.183989713673745 2.0176415822629723 3.8345018806763953 1.8966449685283837 +3.6869126220811914 1.2542574035434821 4.482239531089318 2.460822566716253 3.162900244417134 +3.579525553686712 1.856307288162736 4.5404108649348185 4.237510538715097 1.7496370475785752 +4.402884787059942 4.067997282867412 3.1474748887743362 2.399280048586267 0.81972261122184 +2.0493744778615643 1.7947831607833011 4.869551809451542 1.969708078203043 2.91099818007378 +3.3858183283319465 1.5316413791681391 1.5376630615948383 2.5045049742822827 2.0911134457363905 +2.2382159884365187 2.541761106878892 4.059234856908066 4.343065147133851 0.415571019898943 +4.267338539338463 1.9496050855454938 1.0726587336128044 1.0392961061443193 2.3179735606220118 +2.58087476475239 2.034690648678884 1.9420444527598688 2.3647817194215675 0.6906691576113714 +4.751932553411892 4.758308889901434 3.464221311758644 2.176343411984795 1.2878936844293198 +2.905627446704554 2.2428077774768065 1.6130532199193834 4.45620482002797 2.9193905074715842 +2.6531798131596673 4.366545776706303 2.035524652808126 2.885357370605407 1.9125476656226912 +2.5678168777080113 1.6481585326167072 1.0748176666664464 4.31953419900721 3.3725297399639853 +4.764475622164549 1.4592008356140065 2.2638077211739085 1.674001339235803 3.3574861105865583 +2.158738541993578 4.100703330236813 4.908578887543186 3.0254201607234896 2.7050903920523197 +4.195949307594136 3.5839006931921142 3.289262939362585 2.411645756886682 1.0699604784142154 +3.242856610514234 2.5579484720699797 2.247021798580351 3.792773252784539 1.6906941521994852 +4.117722454438396 4.654458729073667 1.1004878438202192 3.1482102877383458 2.116897030050204 +2.564460142022194 3.187782178199874 4.954047255956354 4.595806127707085 0.718934674886389 +1.7556148718912539 3.419423984759446 1.64799392749901 3.113136710380423 2.2169583077479675 +4.195898423261389 4.369287085960691 1.0058597931183617 1.8446732587831098 0.856546355157243 +3.5212289825549505 4.520380184359771 4.8799251917143 3.7616329242677264 1.4996268600884741 +2.8138707189522676 3.939048724196648 4.276869680003852 1.1662335397400954 3.307881911525973 +1.3044518603999427 1.3930015296024667 2.342344784949902 1.3768390748626356 0.9695577961766866 +3.8435614264046247 2.6796831960660397 4.449357461032949 3.564743589790219 1.4619008982318622 +1.1307543528030481 3.634467707924257 1.3811143192556385 2.721523914374374 2.839943388044676 +3.0375604768139177 1.53128418633153 3.7294673265462497 4.348420627327219 1.6284874736444976 +1.682666908297441 4.723417550972991 3.6334059437903163 1.5254812261569466 3.6999339299697627 +2.737549952155417 1.8335947122417613 2.3757759116374286 2.769709243575554 0.9860621409319134 +2.5562939727045193 2.67160445015129 3.7395533504991945 2.887491129822529 0.8598293633701124 +3.5293431280223193 2.291772246767779 1.8515735541840423 3.193952633874752 1.825804830676164 +2.549964543492646 2.6470357549819554 2.558834895446164 4.5325891575894985 1.9761398501697651 +4.680510419682858 1.6978153343060183 4.625598702198904 4.021098505328293 3.0433354169969107 +4.443140404054332 2.204694106926963 2.718003470897127 4.7511431205590355 3.023954143195722 +2.965895236992008 1.5172608235240972 4.938147102881107 2.339832533394378 2.974858024493022 +3.5251794166779016 1.9781276439765105 2.546172538576858 4.074494035229451 2.17465762467312 +3.507612020353016 4.496547969243416 4.49907574741289 2.1362255438521043 2.561455718039061 +3.1438915770885405 4.720328907473711 3.6457803265386404 4.409660313741866 1.7517611970475662 +2.21220737855587 3.5883030422074595 4.886032489332084 1.7853553457840858 3.3923204483128777 +4.148377993721519 3.0688956132526655 4.196553211212223 1.6438804799427214 2.771537530453015 +3.6547725536025024 1.92336148540296 1.0454131949590306 4.528029269512414 3.8892671558818765 +2.7650382573182832 4.963758039231962 1.3020556772370653 1.1252024533699911 2.2058208771726484 +4.5164719810271485 4.239154568735239 3.3306840278848 2.769264922404462 0.6261759809818832 +4.409414371409595 2.910483969079507 1.6885793615333604 4.326249959249103 3.033825725562291 +2.990681557266649 3.301626002441777 1.3084917340665037 4.915482051108317 3.620368157414197 +2.7443455106239734 3.2760783997121323 4.284932465574321 3.3001653152321517 1.1191542367927116 +1.7825145534382272 1.03997889402764 1.0553505400278422 2.6957765007402275 1.8006544749272326 +3.9931431100939583 1.8095304825179261 4.6490119304200554 3.395489898085634 2.5178327174094233 +4.795619413529545 3.946368175362563 1.606862159236409 3.23250098166941 1.8341017546825222 +4.58909625741938 1.2403605992082571 4.49410325619238 1.0297501860982816 4.818274867921618 +4.980705859204704 1.5585303623106732 4.3969910720753145 1.4654159719945725 4.506153315074324 +2.5745807838485106 2.940158654296716 4.818496265193463 3.5599347026268613 1.3105816976180964 +1.0723999427068098 2.6675108892216497 2.3689670449512343 1.0898328425759298 2.0446425700786373 +4.74277484228724 1.3825156515538173 4.591427957080607 2.774400774269947 3.8200693203109917 +1.3906703929922046 1.535180523792595 2.7574029993892375 3.7515628018664633 1.004607829337151 +1.2318119272158512 1.6565573225645474 3.9877370553205904 3.844552737902567 0.4482302975306171 +1.1357038877144086 4.258693784758242 3.739190020535537 2.04610691727123 3.552407112310883 +2.3554729965954153 4.640702660290723 1.013688245309189 3.5729221908259574 3.4310279806084782 +4.910917802262154 2.3114387969084484 4.25021306181635 2.903003509456441 2.927843007615756 +2.163467375582607 4.223669947205206 3.1315838784984718 4.2100930306902935 2.3254282675416786 +3.479994413880646 2.6779583488654026 4.9769529085459965 4.010115752120442 1.2561990035938522 +4.120171941372496 3.9747739101858186 2.1153315633204524 2.102724917967243 0.14594353353274592 +2.175387610432509 1.3459826264040204 3.859036337242603 2.1978547757318236 1.8567274457589862 +3.7423117650713644 2.954249078474997 3.2953536468067917 1.6935128942356017 1.7851993150915448 +1.335929369949159 4.7179594219176355 4.792161853672924 2.736944439075271 3.9575302770393757 +3.4066914784056466 4.53436563607718 4.716318980677899 2.2114752981398786 2.746978500067089 +2.3461828665374624 1.5917839757094532 4.5387674526614665 4.8944681732556505 0.8340507713045725 +1.4988620704968976 2.3325271261811342 1.404930940507672 4.953957507822672 3.645625735121022 +3.199109066931493 2.1817493471328118 3.270587099438064 2.603650878306015 1.2164804653288719 +4.350442238256781 4.246580084832837 4.132314289889452 2.095961941906609 2.0389993212478266 +4.510458192748663 3.6254942189175647 1.1290175295995026 3.277171805901266 2.32330110613594 +1.787594391736329 3.437026062471083 2.2348077273168085 3.666120987563982 2.1838686969188954 +1.0593913290486712 4.510320770156806 3.097856624531685 2.6404093855005386 3.4811164852679264 +3.9171471486837115 2.623002633468787 3.9907956634085866 4.424860289163872 1.3649989471032382 +2.6953356391176166 1.2977672237415367 1.9222719291959982 4.808560197587552 3.2068454038059766 +1.8553171817652045 3.8818222206998656 1.3591748516373676 4.348783665185 3.6117147632211006 +4.056639871105851 3.9446038359267717 1.0674036621542866 4.753693251693428 3.6879917314336947 +2.4171208648838554 1.4704681327154163 3.836720423343508 4.042955776326696 0.9688572733597404 +1.1821551080408006 1.7041306430629426 2.932713225609491 4.463708579755749 1.6175305974166534 +3.451085242300626 1.9448632574017135 4.735214357788887 4.297847766275726 1.5684368661711126 +3.7431797321574205 2.253891940554911 4.323716994497625 1.3938238025166578 3.286677994971929 +1.192495922113638 3.6387481709448175 3.0741212784455443 3.1953639971595433 2.449254960544689 +2.1922777119427974 1.704733621429848 2.911569395427809 2.0994334719806536 0.9472402009772719 +1.0948704388263955 1.090894621027556 2.635138254243515 1.7843082539526276 0.8508392894796062 +4.582607269962527 4.622563979942901 3.502064524093674 2.062254523360408 1.4403643208869008 +1.0415554702499081 4.7836151609517925 4.35785446901691 2.4079152390136227 4.21962957254327 +4.720297889777121 3.184649957421834 1.2406244281696703 2.370866286213793 1.906740997047606 +3.6353758114402077 3.8265882475381585 4.30171060057791 3.3568723399535116 0.9639924970964512 +1.2539044166762547 2.1111849468386743 4.252084657835103 2.049762738640459 2.363292564021801 +1.281708259116345 1.0459663921906954 2.151061024084458 2.701554132721949 0.5988462995451833 +3.5169555448772996 1.2318722809541622 2.7039700610968858 2.7819709367818346 2.2864141487642256 +4.7553863278748665 2.516738627697687 4.4585716224588605 3.0470873889611307 2.6464752534118374 +3.166359064643879 2.380702817467598 3.878461040652509 2.030747455607259 2.007810058518457 +4.702883546379558 4.030346965447637 2.379907483588717 4.177289484511022 1.9190850710510647 +2.2929324120456362 4.731961680622576 4.45403053447172 1.3517333904705255 3.946278163365189 +1.4004912734135337 3.528563696228611 2.5914179701745326 2.701291730867435 2.1309069618439076 +3.0823156359867214 3.476287912289054 2.7916020426259363 4.236129167138268 1.4972884718539399 +4.476926828796728 4.883640139260908 1.1070171550677812 4.7575861054677535 3.6731552347447947 +1.9296588503560734 1.921504309907189 1.1643517432851374 4.687780034183079 3.5234377272246373 +1.025161129663748 4.102848635155396 4.7147366787541145 3.2331176392878564 3.4157510681500662 +2.6093132820164064 2.3715118565630453 3.704926805859195 4.051963591481826 0.4206947212919821 +3.1026899528003944 2.6096958275525877 4.632949396852497 1.2422272684122997 3.426374141833152 +4.859284478557722 4.651844184589783 4.321417732462376 1.8753985899384742 2.45479960916464 +2.69767334117029 3.119961141899164 1.896281705335674 2.4453712438244963 0.6926949602258539 +1.992603762838781 4.429683439408434 4.55344655398654 2.144894566544596 3.4264383879123503 +3.067970438144803 4.288799779526399 4.5240783240249165 4.933518280192548 1.2876588672799847 +4.854461250198835 2.2516040975020983 1.4311330646508664 3.627722581100314 3.405858314892177 +1.1736730209937103 3.090285257801373 4.697803216056618 1.4352582694270066 3.7838607261709947 +3.956583246722897 3.797915445329117 2.1133277343657175 2.977150242917671 0.8782737599861022 +2.842923022265165 2.5976583860225704 4.668579956875371 4.014202583473231 0.6988308011327898 +2.504362898748735 2.4925844021787573 1.5010077590859194 2.43827908773324 0.9373453347010174 +4.946407652970883 1.7549117896849147 1.8175151652970336 4.602610031792448 4.235846935472358 +4.222755993279449 3.086089822553064 1.2300862063030937 1.4875606924094011 1.165462609726065 +3.018245899929036 3.0606332482390384 1.2337953246379785 1.595220668289815 0.3639024131970019 +2.330206876402474 3.4356485766626244 4.797145320244872 4.58199763257991 1.1261837683884597 +3.7651385934898123 1.0990610573616375 1.8834524543025482 2.24302856562017 2.6902164240963184 +4.1228519086694035 3.613013889774655 2.1619464885137676 4.241095786418372 2.140746740856501 +1.6705161634024237 4.83773093239311 4.373320351236487 3.847818241038594 3.210514267330884 +1.720651042068949 1.8558048567192906 1.0271886031495616 3.76989654358837 2.74603594298411 +3.3186502172402137 2.8625276222594165 2.157797570621847 3.4848359477284108 1.403238638281329 +3.173168248153121 3.650687269337767 2.7193858011604335 3.1113006490923047 0.6177553428523336 +1.2738456533601776 3.872654585291317 4.098112974177212 4.191528760076237 2.600487333893438 +1.284816063662654 1.2666115080261933 4.391913053826729 2.5046717207847475 1.8873291326602244 +3.3981128179098303 1.582594078806017 4.3210999973765585 3.664397207160457 1.9306389736858398 +1.434867934792194 2.4344909077604426 1.2404719034515894 1.070533704909594 1.0139650286916106 +2.9124782919920955 1.5880333334229695 4.774970742270828 4.2517579825399 1.4240456594591437 +2.4054192372072913 1.3407253284648535 1.5303012402011706 3.8927442294128776 2.591275746922507 +1.8362260481167834 4.050523052653198 4.016557645132446 1.916370814087582 3.05186761665594 +4.17520046771514 2.239133591548494 1.7524675064785291 3.799636584112952 2.8176685719602026 +3.7670430614076733 4.519869959746856 2.1146743678881905 1.8902411614785453 0.7855689676930401 +2.2590861652754035 1.6066857551803269 3.429917065499189 3.0222944230663376 0.7692740173151335 +4.723178479527485 1.4003351472040997 1.1736838863688566 4.025412632321695 4.378772048378372 +3.586315244472474 3.841957225666803 4.964335899620076 4.4000601477985635 0.6194836128927828 +1.4065954380818573 4.931176061544669 2.3254259616386452 4.844441278662051 4.332217300492674 +1.112166284705045 2.659747582194491 4.087430184286187 3.596889247899365 1.623464900332119 +1.440232079034494 2.883028687547152 3.8255177550621524 3.7687705888140277 1.4439121491326334 +1.7860019239768667 4.603251303601375 3.7263800538368534 4.680034094202089 2.974281441911578 +1.308990808129836 3.110124303047801 2.146368644354013 2.0463419248565815 1.803908869962344 +2.9208256869795406 3.245148894244368 1.5265395404216133 2.3677872858749 0.9016004170367169 +1.88060086004924 1.0619161906707077 4.053587454549927 3.065015932976275 1.2835568710196996 +2.1224907437581133 1.2826782664141168 4.3119843469124675 2.063664182075932 2.4000476163429023 +2.653049369155182 4.6344164163629475 1.9620393233638431 2.791086920503143 2.1478210572771808 +4.669941276153907 2.231559837777679 3.660229662022156 4.354676679082512 2.535342323734953 +4.963452580848081 1.9277407209987958 1.9001085556554749 1.855107048628886 3.036045393544746 +4.427395668191611 4.172498775997703 1.984025310165415 1.0478498310547097 0.9702561276994192 +2.0826388016942388 2.6823082778088225 2.4640987926513764 4.193755333485961 1.8306597799250959 +4.93998903095854 3.7595153825775975 1.9249160918647363 4.470301457420181 2.805798405749358 +2.833068169569178 4.705097547378964 4.541554202839165 1.5162332675970833 3.5576763136346337 +2.9968209604314597 4.295010591042244 2.0895820402949985 2.038979830264743 1.2991754695518656 +1.0512704837514204 3.4889263852809473 4.395165542156719 4.448113579108898 2.43823087275976 +1.139277707301738 2.9234418708617667 2.7152786834416003 4.582426162390803 2.5825339244002623 +2.961617564989384 1.2057332120063493 4.341543823539105 3.1111611825023098 2.14405487439462 +4.612221713427513 3.832074777236546 3.499602403332594 4.281715307661608 1.104685401897807 +1.7141274433970204 4.87087917022987 3.862539924971114 1.4372357504330946 3.980851894242452 +4.0631248237048485 1.8199653973474526 3.1660524678584507 1.7562911281037454 2.649375633450837 +3.5192222124639443 4.708961253330644 4.120711686530169 4.094058895282302 1.190037544216029 +2.2632501562467353 2.9220868159759315 1.1407423985575225 1.6228759063095701 0.8164058203494255 +2.3197137577760985 2.494155009940124 2.1979909392750074 4.059270428083263 1.86943603418648 +2.204918289540076 1.6507882353772647 3.9324742844857923 3.7227493222032986 0.5924902334476694 +2.674373543059358 1.106707542651777 4.779539080085973 2.5788614306244733 2.7019546268716828 +2.4617297929382405 2.816208859197369 3.437564735468476 3.923332226378681 0.6013530274648492 +1.375918359451009 1.5588947555664103 2.5299090844151535 1.9192730550097723 0.6374611532817901 +1.9789078403564249 4.016231377155218 4.753266282248182 3.3800397068161008 2.456916445682934 +1.0146821565073116 3.162011960486181 4.776821372045693 4.104424633966669 2.2501428088979685 +3.59895711929985 1.2933709893282272 1.5874271887001599 2.625197651240398 2.5283779257932357 +3.253070385898255 2.326942730759869 1.555590257580497 2.3920958478897063 1.2479799823036761 +4.712032984719297 3.606218620148972 3.1505744165090532 4.725089598908452 1.9240383230321283 +3.6341108909118107 3.543298934313633 2.567161792803234 3.874788352793524 1.310776118127435 +2.6388749008076022 4.04023060367266 3.432650632300281 4.075988820279311 1.5419733558218705 +2.403903662644109 3.962514259449098 4.521585087789129 1.614984143097411 3.2981200772797203 +2.8821646263970444 1.8777328042952317 2.862339686548333 3.7220944235359803 1.3221427657493976 +1.0574257872401218 4.703582472228386 1.2258212784397053 3.3489331359324823 4.219249048220671 +3.939839951381411 3.929704673428782 1.5673445813464073 1.7357470723172361 0.16870721035082387 +2.988894300872845 4.837991069469549 4.795649436653498 2.5067433426694206 2.9424904361292694 +4.2200656992296315 2.174881904012346 2.9882083718137054 1.5934181949610595 2.4755234585162014 +2.8195041593027748 2.8779633041879067 2.430214216544533 3.0439340238447294 0.616497748165629 +3.790217203654963 4.359153847555251 1.603215729400501 2.6294448574430005 1.1733861802558407 +1.8416627362795648 4.165093363568507 2.0957551396051874 3.102153516499319 2.5320283515078237 +1.5803849395882916 4.152245922137396 3.782428613955964 3.5852016964426996 2.579412214158534 +3.4644520963097474 2.2946171885058657 3.843444810515395 3.4761046883937023 1.2261535290643242 +2.4689741866598367 1.624292817257261 3.3516765550621463 2.8213897464140216 0.997341824672977 +2.6543341944294205 3.796788525416102 2.8532766665525116 4.259233339197303 1.8116059350048066 +3.342208939788299 4.067512654523913 2.6232534968798884 3.8856784224805687 1.455947173281766 +2.8136605351341317 3.980311835499096 2.954940001044448 1.8341656308318264 1.6177794798948222 +4.568280807221424 3.1458333119272477 4.359717265151338 2.005384105598137 2.7506801891605703 +2.7305505675473554 2.65308641355522 4.675102923664032 4.170086980286074 0.5109224972729683 +4.465145685439625 4.068240572982516 1.459152230879523 2.4360451243795462 1.0544445901352226 +3.8806495427452576 1.0950620666015731 3.822556757588391 3.167326689659413 2.8616121381428954 +3.5394201497755344 4.295417430471609 4.672296937993307 4.193912794626499 0.8946414237249773 +2.174062608916257 4.720569711512221 2.4492405971588185 4.562426631564116 3.309116746138957 +4.062728611426545 3.8317888602861805 1.756418432563395 4.343381745492323 2.5972509218589157 +2.994105702961815 1.872993105735436 1.0321100623162471 3.7459172348176133 2.936263412090192 +4.447845660124594 1.3163585307339618 2.9689826443098983 2.3956811940880267 3.183533601890466 +3.640785863810154 2.804326501307662 4.74442363919808 2.003421545100221 2.865790771317216 +2.214515288172467 1.1785267243362818 4.133942327654609 4.070346557456141 1.0379386910538104 +2.6672564623330755 3.0359188894691647 3.215510034758682 3.752744971657265 0.6515622476834405 +3.658817142259508 3.817780384126518 1.0246733707319713 4.655987880324531 3.63479220586849 +1.9957480855652174 2.9089805846118844 3.556976566985184 1.7065287305162653 2.063528723523741 +2.345216781766768 1.3951819531476715 1.3662414346416942 4.4389171363724085 3.21619373539525 +4.8146590665704885 1.583433346866212 4.992051320059415 3.543435343090175 3.541088519143367 +1.4829822197797227 1.4148878849507316 2.894036395741068 4.771230013979011 1.8784282575571156 +1.867064881858926 1.9845484361379522 3.890630110495118 2.640288430501806 1.255848996597334 +1.2841535239157547 4.0614701749283935 3.0962018957730106 2.472768372278003 2.8464288394775408 +1.8144344278952769 3.4676437409236587 2.902996597258999 3.8241500303176075 1.8925180791525966 +4.022331517945728 4.826958517900518 1.3529920306767602 2.7542376421394548 1.6158322538864318 +4.850011842269478 2.650786343814091 4.672783821557889 3.043578286790399 2.7369514916368844 +3.0751666642997932 2.6413764599303726 4.55473393570397 2.7027788213817154 1.902080883367271 +1.593522327684679 1.6591800816506215 3.025222106933534 1.1414071761647127 1.8849587884204235 +4.538669382221551 2.3331611965435197 4.014008997055868 2.181366947699986 2.8675500410908485 +4.754075050024449 1.3022474372026158 1.010647712362843 2.190499429675086 3.647898565405009 +3.325080053615633 3.3820909084838067 2.1708507515052555 2.1689393711957092 0.05704288691403752 +3.3432315848911482 4.971777222642263 3.14896656365169 4.2985835591333235 1.9934342553840103 +2.4756186117359213 2.011693166190499 4.8824911421724 2.4235886438015273 2.5022846192068235 +4.889938924177028 4.186361191166094 1.0067885176622293 1.0000481094654359 0.7036100194649478 +3.394845921194086 4.39518965580959 2.322687918083461 1.172500216309921 1.5243422636322828 +3.8158024674261735 1.895808007305158 4.302310136038237 1.4841893277959453 3.410012260497545 +4.54240969598062 4.587337013075823 2.4478784655720776 4.122372472108555 1.6750966066910764 +1.9645627738772942 3.2728290299294214 1.0621764026979998 1.0209176944919838 1.308916680972276 +1.166521140675608 3.974671441809873 3.2099627811595055 1.9005731970427395 3.098420435763026 +3.0136721900732577 3.6057075191754655 4.512846479009982 2.946189444229306 1.6747895675376467 +2.252618013904715 1.8548707278825942 4.93912861430196 2.92523256297363 2.0527981413411793 +3.866708936538758 2.674464907154881 4.235504746263257 4.315246704946716 1.1949077812016198 +3.0236515149556706 1.0612033588291565 2.2026243836870143 1.2068178434643877 2.2006438673793887 +2.4718224413322547 4.511971364922239 2.100669332707457 3.0655699371962033 2.256820951464276 +2.7041272956475577 1.6878590312859596 2.606058929073758 3.1961792254098196 1.175177922399964 +3.8190376944390403 4.6075100074375435 2.440141945267903 3.5146399781525686 1.3327545201717474 +4.425177461861061 1.600654391339916 1.9582109996829562 4.6312646319178326 3.8888489681022924 +3.2671215354139544 2.822515540033865 1.539446637937325 3.0745882175433024 1.5982284444230916 +1.5786876252809874 1.08862491949695 2.704685191237948 3.679454367055283 1.0910253900455196 +2.454837167838702 4.920802331454811 2.334278924856568 2.0895644247016247 2.4780777580121067 +3.017238291600822 4.41810530332147 2.338620104098081 2.8259720241466546 1.4832195651696916 +3.129104295551145 1.795549747198987 3.615464712024216 1.8697685456052415 2.196775554962462 +3.4957665637489486 3.293277494587511 4.528605546967061 3.5364047666003997 1.0126520684272937 +1.357298064366999 3.881557751795765 2.595078916563125 3.825122098785535 2.808005199373713 +2.3947506952336264 3.924102686992025 2.687861096289305 3.7791983782501184 1.8788120123346554 +3.34405433124216 4.52620551949472 3.178901664297813 2.7238622532782784 1.2667052922712312 +4.412127373050183 1.2387244883181254 1.3433521950004845 4.361925690611846 4.3797570500237955 +3.3078763811176444 4.502105984107704 1.0932319500644692 1.859925858157709 1.4191560496876587 +3.179390061492935 3.2507680314137657 4.185559306497437 2.263374753445908 1.9235093632680669 +2.080706739284361 3.823255128290103 2.740074842952984 4.888366768216466 2.7661585428494124 +3.676227431877391 1.0808168425067186 4.864978479016651 3.9768359903378805 2.743164815976966 +1.2106484945581109 3.959918786024348 3.951972708505227 2.1601335659194523 3.2816420658629686 +3.5263805178838554 2.3598471634716294 1.978006074275267 3.826992102495252 2.186218058545157 +3.6530707870406474 2.2992557457594636 3.145667307971859 1.2055043771507243 2.365807972793149 +2.1044643205563665 4.113622547975616 2.897069745498592 1.089369269358016 2.702683443218115 +3.8999453372276194 3.023534230374618 4.755574169093116 2.659533669112826 2.271889567248577 +4.820834803935135 3.993667879518489 4.803405662796788 3.67071617530487 1.4025657189321281 +4.107030438257391 1.2249622084370437 4.139638503051552 4.556413800569413 2.912047205998023 +3.3198291876541655 2.25858785332563 3.560912319902337 3.631837449625709 1.0636087361965805 +2.331970381762775 2.957123750977448 1.9363778431019565 3.6027892717233057 1.7798156602525732 +2.5253751079695848 2.3209562642618993 1.7419467706375928 3.1745899344222015 1.4471535849389172 +3.5319315057157503 4.8167548883469555 3.826925501591723 1.2441945497470686 2.8846612096002344 +1.2967310736103377 2.357138437347691 1.0610869506941647 4.924226041757763 4.006033875789381 +3.4179751045215636 1.0289430005569744 4.421131433168765 2.1860206269942823 3.271573735933735 +1.5552472253491656 1.0849195796369324 1.8446254079535649 2.7840565897736913 1.0505898532239741 +4.13129662282601 1.2333637092574334 2.8076433440990742 1.9052702569145272 3.035175836754607 +2.5926904471604604 4.83589408196905 1.5048129364922915 2.8557018177707096 2.6185613066682483 +4.740116232082018 4.423572647391964 1.2502493455475725 1.3301671222170057 0.3264761737649698 +4.925452562510678 2.5763574632895385 1.940346044370009 1.9905366590950702 2.3496312227648097 +2.7852969403750625 4.212349435117785 4.052129438398015 2.2022220172471956 2.3363724637951675 +1.2845389984087685 2.2908163688870062 2.416505866186329 3.5015912094833603 1.479866327941356 +3.0198770652605824 1.4451556694827463 3.403613907416002 1.9138084627427663 2.1677794484906703 +2.9924249929294264 2.9088290871673226 4.359097785347444 4.785482844752908 0.4345025826671081 +3.8061926289269903 4.927504299436077 3.639741544169857 4.4601810129956245 1.3894102289917782 +3.37237363614124 2.054928136308617 4.742815549284827 3.933870487634797 1.5459801932098614 +4.666957982691763 1.8496840733792195 3.078519569987589 3.626154261174516 2.8700062778824336 +1.6011779528632437 3.528696953256108 1.696773608539619 4.978183185752464 3.8056508392520305 +1.1253185846216236 1.7610631476533332 1.9177986670806688 4.881885632489665 3.031498422881313 +3.5374611258530666 4.078745157435975 2.119792300131449 1.6137092174356025 0.7410185486461037 +3.5948198291193534 4.152428871750088 2.241319942940495 3.263149252387256 1.1640717254825874 +4.355378463389917 3.607612862952999 3.943867210150733 1.5939050302700237 2.466064808569815 +4.849280761864939 1.0027661223866375 2.0691123884742817 1.7468709425690117 3.8599889146447053 +1.4781922439025061 2.993269636770821 1.1842629869743284 3.9416906093727078 3.14624643013643 +4.382319726335069 2.025044890761663 3.2036960044154577 3.0846056858857445 2.3602811600305458 +1.024586415658181 1.6388297394527034 2.3725670337053906 3.62795894871124 1.3976064256750524 +3.1712682242300905 1.1451848088276844 3.5777877267252074 2.5943153439222146 2.252161613629198 +1.2556269404314992 2.0947146334073534 1.4542338343176522 3.6575117961480967 2.3576475422741328 +1.8245520706563907 3.6599009541553746 2.2980805257968706 1.077796799903549 2.203995892882075 +1.722276872020979 1.8008203268358556 2.7063869885112832 4.345915705415883 1.6414089946899582 +3.624230239403946 3.5991531479054704 3.735400906393387 3.2205278607139727 0.515483378670175 +1.1318256097800754 3.691375099188501 2.4217106935421633 1.7482077860465335 2.6466771157691293 +3.424189156517656 1.276714124503758 4.480274832088251 3.508741055425499 2.3570165235567786 +1.5054020988295278 3.722595703413381 3.0444889669789994 4.015884408164989 2.4206520987875275 +4.8929537268249605 1.375778194152606 1.920659415692778 1.4206797544952412 3.552534783677743 +1.0782058302932178 3.9952944186830814 4.951129551873544 4.844370467855123 2.9190415095600852 +1.0399469384928302 2.199367678020264 2.191957985863076 1.6525336864483018 1.2787630844083127 +4.436410763068576 2.3066150433648436 2.376419211783452 2.4302530691856945 2.13047597777378 +2.656327310847707 2.2520954395578032 3.7823478116290707 1.1018797416753454 2.7107770988792104 +3.913268774221364 4.35321041446287 3.1449055758203577 3.81819540148104 0.8042809435493167 +1.966480814622856 3.7950354520736567 2.2983126597587877 3.360275737990339 2.1145632271629666 +2.66192365014097 4.154451146504419 4.382345718756217 1.9920071287170038 2.818041323762233 +3.9443057847389777 1.0088273392823206 3.7421318310980305 2.1047819989836243 3.361242058594666 +2.3017452783205754 4.679027689395358 1.3221264847007963 2.3996881828225276 2.610097866989765 +3.7361802058027616 4.699145079727502 3.376045293705341 2.3775147982360423 1.387214654909273 +4.3578659455048925 3.7190688232381266 3.6049091796814836 3.246966312883509 0.7322464471118 +1.408490702740699 4.345583539703975 4.8175332409698175 1.011904889994101 4.807215563992438 +1.594875669685187 4.078635197418071 4.54759168634933 4.659221227528109 2.48626678899664 +4.230434559004728 3.683086874624285 4.88684703643194 3.5686305101586187 1.4273346831548424 +1.6306499024422099 2.6118719720597667 3.3395090113639996 4.427887232901407 1.4653886525497224 +1.7307039152056913 4.768318300442452 1.8584432214158113 3.1601436316894835 3.3047730801832595 +1.494431165199145 4.289665513775571 1.7295019265093705 4.4201983558275835 3.879843081647408 +1.7649442573607694 1.661348154541988 3.715608921103386 2.766174563578105 0.9550695010148124 +3.917565255051765 1.2440635168089225 4.840993132078598 4.823705368081433 2.673557631915108 +1.699289863364486 1.3280876363873935 2.077649760371206 4.691155196902329 2.6397351685520443 +3.7305886343838397 1.1695227340674816 3.7532102087205286 3.2071177422901487 2.618640014903777 +2.6144409841168312 4.714919389180805 4.082078570645221 3.78272646982194 2.121702432106681 +4.684044985458044 1.5118919161887754 3.1203439252094793 1.1688098551325252 3.724384556077093 +4.732249525096504 3.7906338920338563 2.1704752702229255 2.0208042573554805 0.9534366326719037 +3.5582535962023836 4.506301986401999 4.1632661770857045 3.551232197390325 1.1284419978279105 +3.885359507041122 4.271816383778431 3.523114447750392 4.010858165212741 0.6222883989771519 +1.122366344320381 1.7933372327369486 1.0382840768448873 2.9423800513332163 2.0188569570836803 +2.0467935209604726 4.391717679357743 4.248467437544559 4.511009439190853 2.3595757269610127 +1.9597002998213249 3.133939334391357 3.1687161505903485 4.291595355707449 1.6247138269838088 +3.4924847788987927 2.483290129659169 1.622653917322296 1.4001453926486604 1.0334330571480308 +2.962237647575821 3.2352346986541036 4.349958935211255 2.4921364821421306 1.8777730579133405 +2.1214529122227526 1.0266336453577742 4.465794401252079 4.6454893070438565 1.1094681096211303 +4.961125324169808 1.714956836655063 2.9754338971232865 3.5986060012931254 3.3054429840415085 +4.965772985243817 4.742648169735199 3.218272099624731 2.753115391616028 0.515902555044311 +2.2910236786851383 1.178714309100949 4.431603582331141 3.558910206163421 1.4137983811250419 +1.1070277110665554 3.319633593113035 4.3321703983326945 2.8477761081949606 2.664404473397421 +1.9885290063362695 1.1712081380147126 2.990751268362497 4.145563927968345 1.414781142290155 +2.0549517067604 3.4064982150760397 1.6211268988543956 1.4998314405335682 1.3569784642172686 +2.610635153036529 1.4346785750341078 2.7588300563120702 2.539482198274207 1.1962388374287818 +3.51412887846263 3.4317421106307915 4.428467077748668 2.524634514512159 1.9056143388297315 +4.176775169369481 3.400334699317435 2.1606048638718836 3.175987373941338 1.2782258975977556 +4.360450045450126 2.979651931711399 3.29803743475747 1.3636799761337621 2.3766241201834153 +2.027924077422286 2.1535597669012607 1.8118883717321879 4.720485550180174 2.9113093056125874 +3.930032960961863 3.012896235393867 2.6217915854790554 4.094268786866634 1.7347417335130266 +1.8270145594740175 3.4616349721507924 4.178166509418864 1.4525822772737813 3.1781745232220158 +2.521399129054692 3.8184720570914434 1.7517597669680534 2.556269318746848 1.5263137945878458 +2.912453789641637 4.103943379420473 2.1531598626564055 3.5606636031801253 1.844102551958432 +3.364644059153004 2.3574871779461657 3.3651307857069916 1.2502368640994783 2.3424647879988916 +1.0903410854056887 1.5588193776971617 4.718836279407075 2.4007237453734973 2.364977300269901 +3.513417577708832 4.860720368457079 1.2317868937385494 4.976666326213085 3.979867682942338 +1.2321450574810564 3.4066642884520495 3.432108156162606 3.5943318650312834 2.1805619499527613 +3.883938821655638 4.088098411358569 2.38241836271067 1.2384045520495435 1.1620880934985354 +3.898411882657954 1.841901408486263 2.3840286210797452 1.8006654764042893 2.1376500857117637 +1.3313123212434208 2.355380146856182 4.703364841340038 3.3421597023819998 1.7034066871364046 +1.0813159799848604 2.170432210424802 1.788634839177203 2.688630405774186 1.4128574532846307 +4.3409166931490155 1.786538080899021 3.6148011359322694 1.4412024981284786 3.354009709732919 +4.412188200216182 2.500591021305624 3.3586497738861874 3.8504803302266017 1.9738543691389507 +1.46194074121102 1.661444241871449 1.2095655423704605 4.710310282465615 3.5064248718715847 +3.1052081503755726 3.0598456489600903 2.6338613370451394 3.5499556386022797 0.9172167278675931 +3.1586901079892207 2.5213493660451674 2.813681539770914 2.6610231183867055 0.655368457404928 +2.983750866677329 2.773191284278938 3.5800239771832585 2.733151967658252 0.8726554522013299 +2.0201248554833393 3.652682371612154 3.3171500876480735 2.509834317064703 1.821264065670134 +2.2806571205417985 4.947223612732147 2.577420048986956 2.565120794135164 2.666594856543125 +3.8290502127909796 4.530629769949373 2.7244104782791956 3.8259063093743113 1.30595058901265 +2.917326757591911 3.562404579359635 3.6949989558831042 1.8933130147841326 1.9136869196632658 +3.3471349907352264 3.565596056382651 4.183840386642874 2.6748528412089674 1.5247192034858272 +1.0687349941433815 2.5136979646530824 1.832233648922621 2.452387524869018 1.5724213226726347 +2.0006962647818347 3.0215278984248766 4.641864430202036 4.477870846712408 1.0339202675603623 +3.878637043092066 4.789437475990606 1.7930862203305424 4.119518122467085 2.498368032105522 +3.446032540481387 1.2562353750247532 2.4804819844933994 1.5348858050486758 2.385238721893967 +1.3276258527628775 3.216450221696099 1.583770196945784 1.9639360983427552 1.9267027817649907 +2.4265775655305264 4.333465558553234 1.4414740496711755 2.0944969288584607 2.015604301115728 +2.1647745253204835 3.5773562596076096 1.3998576176519069 4.988635797789334 3.8567753346898654 +1.39869428488253 3.8540234013650814 3.892724347915585 1.3189411705950747 3.5571056934121383 +2.2508677809204545 3.013457734418754 3.3357922743309576 1.8081031783964217 1.7074476305333113 +2.9591955789345468 3.4781203832981147 2.3100963048769105 2.8876576702526786 0.7764406502486129 +2.1942327068012704 4.201831778963987 2.515131282749083 3.9490480930832406 2.4670977794784474 +1.605350962507286 1.6348021992408035 1.917906279507151 2.7413838722674067 0.8240040783414601 +4.353427209797037 4.457789263712815 2.367653406027768 2.4895594451481937 0.16047591928869148 +1.7800587602298696 2.0190622919526704 3.6356733377263843 2.181961186638134 1.4732283279918288 +1.925459594909091 4.066224195299476 4.739761634976663 1.394432377637306 3.9716622356760527 +3.269259313152255 2.239980380068933 4.277794151314296 3.655212098025783 1.2029229132268133 +4.925669303393877 1.7968328778452562 2.3287651944680263 3.4429565740220522 3.3213009210416895 +3.4519159318415844 3.0334020051461765 3.8651146195307087 2.0558835048770416 1.8570059593520318 +3.821640141874356 4.653177906385947 4.1794924996077985 1.20635070136013 3.0872361759827047 +4.195812479695441 1.805116170919979 4.802895682068906 1.0828066648737185 4.422046035111899 +3.2061757138773546 1.9869997997396016 2.7323160917307496 2.191719481381026 1.3336546047366373 +3.3462644010241136 2.2014201800973527 1.1802746412892287 4.925037951602045 3.9158550203569082 +3.3544922188912945 4.930105508761204 1.4053467808802838 2.5571429926420377 1.9517150797807057 +4.40330665699401 3.3253501845186357 1.8596060571189565 1.6628116757124114 1.0957728711301158 +3.104705252588978 3.7407777385379286 2.788690321116797 4.394046660722197 1.7267765299807984 +3.173017497804203 1.2205895402069427 2.4939116183961287 3.1734317059124795 2.067298352668438 +3.3128712586192064 1.1589902615842207 1.2092756975500398 4.506769491938903 3.9386125315168394 +4.8753321737493005 4.814226581847738 4.099037026349945 2.163631462747804 1.9363699514771866 +2.1462148420267977 4.941675868280512 1.3292896336614937 2.5717165248398595 3.059121921275223 +1.4976771698622477 1.0459920452881768 1.2345158323653567 3.97552989105654 2.7779808353738167 +4.349504257392724 1.1390361733150276 4.877659332545631 2.3678349080688417 4.075085761132121 +4.396563122225564 1.544826782382135 4.412074414695642 4.96788102372493 2.905395177703755 +1.3408941049686778 2.3877754194966334 1.1453709959687006 1.3824733395499562 1.0733955505960997 +3.698702631917246 2.824496869985728 3.9346476953886405 2.714140581840248 1.5012905542953685 +1.330431094786261 2.492214359836756 1.1215181561400374 3.05733788279591 2.257684293487778 +2.253514723075316 4.738400961419322 1.6335000227193053 2.6142203405563085 2.67141759358767 +3.146777138576323 2.394477312285895 3.223955899892918 4.94745176408666 1.8805299844803167 +2.5494115713218264 3.065518033534172 2.4424060775722802 4.971066153602277 2.5807920606754378 +4.151938021350954 3.893901975695828 3.046820408372715 1.219380378456635 1.8455675722652416 +2.3445786215340196 3.8933392277667704 2.0504673540112295 3.3446481409722355 2.0183070442223223 +2.687726532917496 2.558842882691559 2.4050949985391923 3.730833810275935 1.3319888859298759 +4.172674345138643 4.402188719516705 4.3891315337471655 2.6036165701651295 1.8002056919200962 +4.879802038912719 2.8328948991774947 1.8280379925932158 3.8796928909457544 2.898122954712757 +4.499554308396064 3.0699233607352996 3.456567695475012 4.749512793512881 1.927576632211952 +1.9279221317864743 2.260473248774265 3.82676057619398 2.9292598086696455 0.9571300189193714 +4.125565827609782 3.147437569784124 2.697820706048907 4.158998093614938 1.7583441775407198 +4.403558796299091 2.543297233568458 3.1965542342690423 1.32956610909841 2.6355678214193556 +4.919083912943469 2.692544983773903 4.417889571429804 2.4091249092034395 2.998768259021853 +3.060923555880965 2.631733679538476 4.055029514057351 4.294883920519357 0.4916646074857562 +2.5787915436777413 4.036050563016646 2.4585479497222242 3.8167363539882793 1.9920541134535876 +2.193152220456532 1.5009113093240662 4.720655710383762 3.545035384031588 1.364287590934514 +4.8761703394588 1.7659579679312833 4.1005974547257455 2.152850726087826 3.669759980560382 +2.8377843522486352 2.6727873501417947 4.960135419426706 1.3604587532825994 3.6034561342531415 +3.6819869218802457 1.050891749108143 1.1973820681405196 2.4983827199770867 2.93517708226673 +3.7907430265661475 3.7891868663391324 2.481111575630771 4.545669903849273 2.0645589146960734 +2.9579895437637704 2.2207954473628986 4.516673645052039 4.608864935343041 0.7429363160956783 +2.263625267706883 2.8731097454537595 1.809587325081199 3.051732513007023 1.3836169977640718 +3.2306191087729896 2.45988003928759 3.7137678189657657 3.7835265733552084 0.7738895250907497 +3.2409423392001213 1.7492157951598237 3.8588787922643406 2.7566307118667233 1.854777321657412 +3.2665431334758437 4.241106469907129 3.8681489853310014 3.9419337398901186 0.9773524884714966 +3.4837547952934744 4.458658605181146 2.1857122257927255 4.360248339389473 2.383074641690844 +3.8275124585361064 3.5620979958618135 1.3447254285572963 2.82929697067829 1.5081105730921023 +1.7896743763478535 3.6218687627590693 3.446105725941058 2.400897260442975 2.1093593828330035 +1.641797483324697 1.046406265792557 1.1270641953218936 1.823762276064096 0.9164490807591398 +4.456781079446467 2.0925092002949186 1.2395082758691398 3.916492012385793 3.5715575655617613 +2.937898383490317 2.7738126847078424 4.392380225381887 1.6047356304024638 2.7924696067214274 +3.94020142589067 2.75395679442897 3.592574720303543 2.5197667630441583 1.5994040261393487 +1.246703105009571 4.913074301536504 1.4365770231725374 1.7498837488186045 3.6797335304417627 +4.568630510233946 4.783049313181311 3.8756582711990184 4.391568059153523 0.5586934153582294 +1.5065326165466408 4.567453367024852 2.730080225211862 3.804123106309724 3.2438871668331943 +1.9694426314609137 2.4031212630430154 2.3241533562257026 4.31916754538322 2.041606908890825 +1.293119991177388 3.0516938086695964 1.6820203516875067 1.9430314960008284 1.7778382066501068 +2.115664134944072 1.6127070993116832 3.324080173220258 4.937904721355753 1.690383226329715 +3.6052938043014007 2.7555612424518388 1.1019238254779435 2.3588222778184327 1.5171813161792285 +1.7468944257653507 1.7809212489886224 3.5499265486622766 4.990714071909572 1.4411892699585798 +4.196074679949592 1.2329707251927244 2.51007512224826 2.569353110867491 2.9636968344671373 +1.5970620999390106 4.177422120492729 4.897012989562137 1.946204680446869 3.919888711789621 +2.859636370107831 1.4474025071800956 1.24080368140215 3.5474751446931423 2.7046511278094263 +2.5198174922565317 1.974257073477176 4.971374976278317 4.820561171321574 0.5660220616762532 +3.3967072553429194 3.275305275400161 3.8028110115758507 4.525501699539072 0.7328166695721219 +4.973687332436983 3.1296754693623834 1.04096888857991 3.547219735155064 3.11153869606639 +3.1451196588788592 1.7960447532633483 3.7085508952214132 1.1568763496732175 2.8863551561372502 +1.74957939886395 2.077798657958068 2.5838487806007957 3.211739477942516 0.7085016653816443 +2.9245985411382973 3.7699340076126693 1.7273812924949534 4.396066263858476 2.7993698446723627 +2.371085865087008 3.6200158796059387 3.8751724474387 2.5069342421361847 1.8525393295732493 +4.748099500222966 3.7159369684856425 1.1758968246723054 1.0781835988854862 1.0367773948230485 +2.8472977788628775 1.7679551885047786 1.9900290964599736 4.092217538951253 2.3630862606144625 +4.7169327791501745 3.408746816984215 1.9655422475205828 2.2434194699595036 1.337372895776809 +1.2949838531197146 1.3197747834465772 4.259657707490128 3.0128028776894036 1.2471012616559507 +1.8195993778637471 1.508504495877908 4.731302674856423 4.999730354589184 0.4108934714065159 +3.6036161454560576 4.075360519855886 3.7929542616062077 4.928312800542822 1.2294640160306318 +1.7606836245460222 3.8464660051682023 1.4976300626726031 3.2970020568092187 2.754673794226298 +2.087705292931904 1.6941092048265145 3.5946354490390666 3.05206799178501 0.6702964465391399 +3.89379283183047 1.2540822935260936 3.8580004158849657 1.1490208001533646 3.7824122309029873 +2.3166347261164884 2.62917533668374 2.587849417598283 1.8277258553900242 0.8218694927285737 +4.787200268129203 3.8367432751755013 3.390658115613952 3.830683550468488 1.0473733234971743 +4.906093664607147 2.5603614470287046 3.4304680618773764 4.934374501238759 2.786430371449843 +3.6753161743676346 2.596761977859483 4.327487669748003 4.710064157975427 1.144396751196792 +4.173342766430089 2.4407657378401937 4.281201833037953 2.623869531336484 2.3976183012023573 +3.2376644922087108 3.399682995380491 1.7658014579512749 2.6562905682113076 0.9051081984280823 +1.5066965597568314 2.9034012954762267 2.7662941940842747 1.0805270998120222 2.189199583160955 +1.7343413014686941 2.5986151134656987 1.8381820623215122 3.5047772364861687 1.8773674911036347 +4.5434156074921175 2.5339038530483906 2.8152521546112155 4.068485458237605 2.368275998393308 +4.191815231303702 3.555995351562266 4.463986612230146 1.8727027656258501 2.668148963822442 +2.185086580673734 3.4607418204249694 2.692079852719885 2.4811471812700208 1.2929767525326037 +2.1587384536910674 2.481039925437754 1.570504297631103 3.4068187041672275 1.8643843054322784 +1.4664054661014436 1.6439140254553393 2.9044612434720958 3.532972513297129 0.6530970103598477 +3.3272868911027693 3.832668034923713 4.836500313980398 2.2001044843097546 2.684398083599846 +1.8646508670066422 4.210542254511692 1.7723509432063453 3.3998207161560647 2.8551469776239853 +3.7240847683982867 3.906535968826056 4.386650885021568 4.5199294283001645 0.22594603478706746 +1.3942283608724741 4.984453150790832 3.703365616467402 1.259063661574534 4.343308196391019 +2.6381005322841995 4.8607132223938585 3.070674235216301 3.152377066791572 2.224113873641346 +4.390885769814941 2.9569232033055184 2.590510477570784 3.4455964277920352 1.6695570144251046 +3.8882070867756036 3.140081012623052 2.857939919954968 1.6912495241016243 1.3859506133348842 +4.275807555060203 3.7566189337687237 4.525894380725354 2.549466791566445 2.0434830167307596 +3.1416376404295128 1.9911861584320594 3.2856492547591833 4.621027159417132 1.7626039715939568 +3.859356569506468 1.73518231341993 1.147376677188709 1.4719647703905512 2.1488307752052527 +4.304490221816135 2.2546027965944413 1.2486289509086546 3.0554427627731053 2.7325106782638877 +3.9930276907463744 2.478931837242275 4.713619909294026 1.1006267852641778 3.91742333273866 +3.9440969577340743 4.334269421029314 4.529066467445174 2.8863456828574856 1.6884211936688862 +1.9602443097314723 4.635519257930999 2.0120364371424135 1.2922619481515594 2.7704099630679253 +4.479076842445261 4.846351856325956 3.7935007893602783 1.449434127449838 2.372665052488661 +4.589491048228643 2.921213642703052 4.5917575724930515 1.171394768537545 3.8055264041219807 +2.7464295059386985 3.2223069176836274 1.8774369982077888 1.0428197137232176 0.9607524772642807 +4.986890029529561 3.3970959614853906 4.494381689209272 4.7049745699760095 1.6036815582334496 +1.5399808590358308 4.806378552159278 4.70452391174285 3.3662731199728357 3.5299106321995244 +1.6187115565379186 3.2034020808031802 4.451611436174346 3.82362508127658 1.7045852632338145 +2.047622246518649 2.6692163486431113 1.448933416616534 3.692316469974321 2.327906087428963 +4.116632719445207 2.805411296458921 3.8728078698996535 3.5385055731504558 1.3531665254912157 +3.2896393469410303 4.889620790820345 2.079757592676655 2.634235537832983 1.6933358829313574 +1.8858990523204384 4.9142678527906964 4.783402459993237 1.9118691554062432 4.17333453140459 +3.570585479420758 3.571489487043815 1.1427977955991375 3.2100239611574777 2.0672263632217014 +2.988609585543562 1.3379858990079705 3.568942573213143 2.2612167165343497 2.105874039627876 +2.3968828733343424 2.9563665133460573 2.941105162269116 4.49073444627974 1.6475353900004812 +4.597661194419301 4.166864865667382 3.705444400531576 1.1646095130916367 2.5770967001837666 +2.4577293475074775 3.992207733484615 3.886739298492533 4.3873926621426955 1.6140872676423734 +3.5478438721532437 3.8418813357461916 3.6708102356387053 3.795610908871984 0.31942642037823626 +3.5850576989913616 1.8011720323100011 1.4204282562491266 3.1051955607722705 2.4537092211958167 +4.598907095769275 2.0710535443136093 4.608707647166373 3.151654589561885 2.917712664105499 +4.112475239715906 1.5668050198334877 2.074466774047232 2.82072040040247 2.652796890688117 +2.371884740771102 1.4445093532326143 2.240916481434501 4.759623391738023 2.684009986833669 +4.756313522377216 4.445838938523897 4.900056607448546 2.890070892041745 2.0338232576500546 +2.0962616026211287 2.276769704798659 2.2668680533635475 3.631880138411757 1.376895481610494 +2.4611152875912605 3.1248096315219027 3.6517883712379353 2.4631642635613273 1.3613660240785863 +2.9701700002284452 3.363145078807979 1.5647850910168546 3.5586844006766687 2.032255857279411 +4.208593684523764 1.211180746233207 4.84348711810579 3.435342683123673 3.31169972557941 +2.616275987518683 2.7839879331148096 1.735165488311293 4.096154955215644 2.3669386471830927 +4.078216191139284 2.6170397040908466 3.1691404992707226 3.4535729563630557 1.4886028849061106 +4.966353701718831 1.044158275462729 4.104607326789409 4.364471211207423 3.930794601625619 +1.7466826831764846 3.9207912661664426 2.9382689215274307 1.0922494380521997 2.8521108085067035 +2.125114794696398 1.542559457591412 2.5840323010085577 4.942922180264027 2.429759696604458 +4.165759710085732 2.3494798293052748 4.408975516266487 3.081343677082111 2.2497730787223764 +3.3442158186302438 4.85202822114786 3.1035818168158475 2.9598685122417785 1.514645752345262 +4.052855177208684 2.9310960324625444 3.160474433833271 3.307824020803657 1.1313953683845162 +4.0933464847122485 3.043705659662988 3.8495114057327138 1.9736887251657 2.149524735968328 +1.5473349624824024 3.987725124768142 3.5872827092794153 1.766858053669666 3.0445771579864567 +2.8279614493701963 2.9660873184358936 2.2636771383170835 3.9933321402200694 1.7351614280271368 +3.180507127031578 3.041896566253958 4.56128982417934 2.9128454776082897 1.6542616634925515 +4.244186006566876 3.7213891731047584 2.8585932344634433 2.8230449879626027 0.5240040142091487 +3.7941310550551584 4.8378440923421815 2.680935541079801 4.963761281773758 2.5101056285698053 +1.324546859508243 1.7031924650070493 1.7261255665189115 3.164743768866322 1.4876138029370567 +1.4058633769719546 3.4414191038857957 3.745338273203925 3.498684616386981 2.0504451087002806 +1.7499121950345162 3.751989160523492 2.336516683514987 1.344724378687972 2.234270384634686 +3.884230177212089 3.9936055509490878 2.4760756225840868 1.6313431352953227 0.8517839793405192 +4.641222208887983 3.746419261047306 4.347310950915657 4.972101104769909 1.0913455235705996 +3.121125578562877 2.589494068062187 4.214489336764304 1.6597576920276658 2.609460833117833 +1.0311341890520707 4.480041901864588 4.174605510111746 3.84610070622618 3.4645172560796356 +3.872969636307825 2.041975657653292 3.7445928742422288 2.161061300580532 2.4207666543169015 +1.6761904015644693 4.131555899882598 3.453854725760172 2.1560314275711074 2.777258548218616 +4.730817800906781 1.5605342302240732 4.963195653221682 3.9928925552263994 3.315446579349446 +4.143995575663792 1.7690642949983482 2.562009178831533 2.983091468762039 2.4119719904626424 +2.605970201537199 1.5926303758772855 2.1521205119897955 3.5365215294942294 1.715640923834523 +3.731814990999666 3.4059214023551925 1.9255945055879735 1.0117625557821235 0.9702038258044208 +2.721163616780097 4.028112540051888 4.323043253783885 3.3799456333867504 1.6116912265195311 +3.3168262924235195 2.280356802497619 4.128506143692925 4.938180599927256 1.3152344766715998 +2.883092697257709 4.140236585982876 4.455741247068389 1.1003529125672138 3.583160843761497 +4.7328926975224785 4.029185512096637 1.2218817706514598 4.370593283127689 3.2263893118500597 +1.9209050843413773 2.0698814601337165 3.646977865818523 1.39955105464216 2.2523590371294215 +2.124263201196351 3.3605377577530917 3.0937763691261697 3.065738061894427 1.2365924655528138 +4.91917749370412 4.949698144378193 3.436063070243819 2.2228842949863235 1.2135626274951146 +2.393774338812118 1.8305435938532195 4.731441820491083 4.166619654794572 0.797654656432878 +1.3327511553549 4.580523017016523 1.138746016426102 3.62405571880435 4.089594892178987 +3.6712492272264665 2.1231905136792126 2.3241777952623197 4.305305581807335 2.51423011818933 +4.270077699709372 1.2290302638128696 4.099441152497844 1.6462948889180646 3.9071595946272946 +3.4077636739866093 4.094413725603028 2.8578159140368857 4.599721387787591 1.8723575974870557 +4.806975647208308 3.0930840159966055 1.9679525600820686 4.504813687296679 3.0615500816269674 +4.715854372081346 4.0874302241979965 4.33506996971741 4.344604332792603 0.6284964707316693 +3.3731320992539415 2.8174601903250958 2.3519126449854997 2.7409515930763737 0.6783233546799647 +3.2745315617668 3.324457357608338 2.3767466596148474 1.879215034592424 0.5000303020696489 +4.2712882255778215 1.9462674967839049 4.16022325664029 1.6819381003494938 3.398178733559006 +2.6279618109218554 1.2195049470314627 3.6577144307912444 3.7569415865373665 1.4119478623084585 +3.441287008246285 2.773035609156069 3.8121772427602356 2.977777926539392 1.0690098929831486 +3.239445153264115 3.6443736387081826 2.327102029730666 2.628156726007011 0.5045800317829362 +2.8946347091870606 1.9619702378567818 4.84243858926072 3.6647750228522913 1.5022498100274826 +2.335314641575158 4.774527295241292 2.9067675835685303 4.443011690384725 2.8826731215197587 +1.717086454299079 2.9473332060101205 4.259260102526008 3.943848259929492 1.2700361020639133 +4.734119202026994 4.052948316082819 3.4293295693053145 1.6538962774690567 1.9016196122301912 +2.309707389442583 4.644920609184624 1.355077668664466 3.46076711673874 3.144383696909353 +3.4761447940293766 3.7774953631397072 4.774447667182455 3.498703481772239 1.3108529254310328 +3.470538349791879 2.4689069809168203 3.6016533246264526 4.495865604602809 1.342714042815907 +4.25320692763374 3.0231651197426106 4.412092010716323 4.975996959836452 1.3531413971947845 +4.00679356644342 3.991902782201261 4.552433566608514 4.981016974945384 0.42884201444937203 +1.0546173565275083 1.1144520929887776 4.043133502044158 4.010509903575585 0.06815053091816857 +3.7664215646291104 1.5771040862651042 3.85004702845515 1.0913866246417654 3.5218344998931954 +3.030252463667006 2.0271674331435383 4.316856148621124 3.1040768145564943 1.573853008255381 +1.4572959035703574 1.962080318648752 4.4899444922181 4.2071332079872 0.5786099966249878 +3.9659828424953427 4.351719114029775 1.59064374110118 1.8595830601577994 0.4702348652662023 +1.4041977996287516 1.7233979017107046 1.5133488339240708 1.6561367689635111 0.34968142581778155 +2.3602168407928312 1.3078680030994199 4.398100278441818 4.529176858310231 1.0604806202777468 +1.9069482708528773 3.1384052708127856 1.217017500377957 1.326230815839084 1.23629037488135 +3.0094337767843293 2.4916318768302674 3.2919368244265534 1.4349847189530607 1.9277940578854564 +4.120228226393542 1.8351472891283533 3.4442396793722687 1.3560260156609463 3.0955179203428007 +2.7274422344155846 3.213243971790589 1.318136464987815 4.615781604111521 3.3332366840089196 +3.0947417889580766 1.6449502923643142 4.403543801848088 2.5740731297746184 2.3342789729534332 +4.480401485792913 2.133565097996343 3.8855659788661594 3.298197515890076 2.4192235825539026 +3.7699854574786706 3.2974013051064213 4.421112931901008 4.552483827372999 0.4905039176709094 +1.9123530311155998 2.9073893155821975 2.8706032164333317 1.4516823214628776 1.7330417518308225 +4.513743655685143 3.340158775027874 1.1996322012490546 2.731702323256354 1.9299068192155804 +4.9682409141270245 2.852638848951456 3.637611505622193 1.658516318743196 2.896996696046225 +2.154465514643412 2.9637718611434307 2.53112193712283 2.3957715321541064 0.8205464609700087 +2.1619536431925264 2.226203419560739 1.241677022910523 2.371810504211452 1.1319583558244195 +3.73234822811991 4.832560686993427 2.6851183412678217 1.8977863863409006 1.3529076324382077 +4.879130676342632 2.7942653332618113 3.474857495035487 3.046157132418856 2.128484789630205 +3.484824821230357 1.8758254970293144 2.3173726755860313 3.562126913542073 2.0342792183446545 +3.7832091541186457 2.6517234403508074 3.344036143324953 1.103678853520528 2.509872647454556 +1.864686760059949 4.97632875405923 2.551222673587605 4.222807699857566 3.5322106957074015 +4.190273653922375 4.156872967604868 2.881943212921285 1.1473428463270725 1.7349219111058738 +1.146086298957489 1.3669275054959051 3.4692942647721217 4.55633361099496 1.109245409610479 +1.3761282480276669 3.2209713846645904 4.571641646331816 3.0887317468862703 2.3669533093557127 +2.306286329935592 3.1532204151585574 2.207258143916103 4.957733073177758 2.877917594582821 +1.804822657045877 1.1266063715326635 1.2133602339337832 4.2989187406885065 3.1592164580069184 +1.3589710882608323 3.813425926956611 2.2048375491906804 1.2485178973222921 2.63417839785896 +4.50410279968685 1.4452193669305098 3.0411415723413664 2.0734940378914177 3.2082876439182124 +3.70995589393315 1.501825950114307 3.833830474094929 4.237794401244949 2.2447772056994597 +3.4231026002591065 2.9757015572236805 3.2654034751660608 3.8077047798545 0.7030351331021589 +1.054258387207275 2.5487620986158013 3.6604092784458024 1.1254048466593836 2.94275191149214 +4.212131501026045 2.770807071610011 1.8899017378103409 3.027665832584229 1.8362797298309703 +4.6332265571243685 2.3058668334580035 3.0728124846184075 1.5865018107384334 2.76147111204045 +4.194782374248561 3.99846077838858 1.8213158252507249 1.2472742331654332 0.6066843647604793 +3.136690242359537 3.809784973040434 2.782287325719006 2.4600747167627706 0.7462422407239979 +4.514395103238112 4.67854347405925 1.3419226174371057 3.9848878973588535 2.6480578087562736 +3.000844602709045 1.1524990713575454 2.7052285766369977 3.418301002985564 1.9811242991003086 +2.851892496498129 2.7597310896421323 2.216604406158541 1.6798960241885048 0.544563689746728 +4.534661249169876 4.582692836748457 3.266642759419428 3.04235616221649 0.22937199281994275 +4.715777829144454 3.9735871965879928 1.8459191321398936 2.0230160213946533 0.7630270265451101 +2.2299507752563543 2.451843401794178 2.6403798683055615 3.834600718704459 1.2146603546832835 +4.42150882924586 4.163750435863488 3.649589242977184 2.5653703885894434 1.1144370388536653 +2.9657007854569337 3.5422965041102623 1.0713378480083025 3.484706265763335 2.4812919502925848 +2.4797853267132535 2.2124172779919107 1.5580776346843703 1.3558208112089574 0.3352513924198119 +4.933250339480469 2.64819321755654 1.1659387067281326 3.5196435533723633 3.280459198888444 +1.215458954818438 1.1570399636368172 1.6898905764223904 4.77575502038819 3.0864173640424966 +2.2464327567038147 1.6445157254952711 4.504956482919107 4.588675717730058 0.6077112988387149 +3.720054527518169 4.741754777179651 1.3123821064349448 1.195525694804512 1.0283612308413204 +3.50063350639155 3.9222863629737352 1.7375458589305945 3.7388225199820853 2.045213779909895 +3.724621381505313 2.2655473930239416 4.6799337345968555 2.0360202083566517 3.019797284272381 +1.4954966463700474 4.108731460770233 3.823231099394198 4.758154537913283 2.7754419523898393 +3.549959727980296 4.95898261273422 3.878096925521448 4.414582606188036 1.5077010231874757 +2.303518625495907 3.866821938087571 3.1422132419395603 1.5348284247557298 2.2422317448633997 +4.8028098298939055 4.2570383917777495 4.568025792602624 2.763891549401549 1.884878465618962 +2.1654360309753984 2.1800125391312397 4.25505343908521 4.451075269322518 0.19656304973112673 +1.9884745153744379 1.0199906672743735 2.431577399678346 2.964972241064964 1.105654114471865 +4.269393487250145 4.024394108477847 4.379651984394831 1.9883467708788523 2.4038230633279802 +4.233001125475717 2.9721341815609477 4.628009231215425 1.29681277786877 3.5618331321169867 +2.9609943150240468 2.3092860803918995 4.862557571741009 4.04310289844022 1.0470098302699227 +4.408120957539349 3.0304078936948597 4.483148748423374 4.784860659917507 1.4103628482859347 +2.6601995032810106 4.334854317409155 1.8625092587551522 4.686337305959758 3.283058571920694 +3.2436707143087515 3.071935806763747 2.5661260939433097 3.161663375230844 0.6198044303430229 +3.7623436526673784 4.610222612107792 2.2780011644370384 2.5211330925620614 0.8820498083076435 +4.10946293408961 2.0176861483301898 1.8061074353009752 4.606339788855676 3.4952584103806275 +2.838827654379109 1.4876788094343514 1.6620835099843578 2.465865533190512 1.5721541724732124 +1.524789163679781 1.3393887367211517 1.9360267306865873 2.267474270952826 0.3797772903492019 +4.792283162091781 4.115993977388132 3.7105220376884547 3.90025970571992 0.7024011987583345 +1.7413421590096752 1.710548315476757 4.841862352422658 1.535511798819062 3.3064939504124813 +3.337284598083977 1.7068719031340978 1.5493398098743327 4.69457813592133 3.5427065477525295 +4.534931657150789 3.8761877622092324 2.9177755886546675 4.843316582701824 2.035104822577669 +2.854655696156821 4.029851273621006 3.732957045748637 2.170875306744183 1.9547848998349047 +4.274210233876441 4.549479236582835 2.5605841523375505 4.086230406442718 1.550280463824563 +4.950826174112857 3.164789523842865 2.4534532951996804 3.528727398737369 2.0847401070268767 +3.3780790989940725 4.699615571992059 4.776211888107856 2.5373534943851004 2.5997972145163155 +4.810520702612582 4.448868429134035 2.0849001778052405 1.0681686840833509 1.0791363663773668 +1.6450052542039675 1.5773030696961468 3.58504469222786 2.253278750702684 1.3334856987585466 +3.262346894052574 2.4060448583917515 1.0649574496576428 4.588463215700182 3.626064817348401 +2.8309845188012175 4.046929789501275 1.4063259177294776 4.848748436205849 3.650862322390566 +1.192618850316904 2.6660068230524496 1.4002142969943594 2.933525463761034 2.1264795443016005 +1.7680305442020616 2.422341734870821 1.8451485192049448 1.7690497200653716 0.6587216115058429 +2.0274623341866187 1.6332973162572153 3.7306935187407952 1.0593863145773623 2.7002311457308137 +1.9696453342306102 4.0329432052174194 2.123302049991963 3.3959229793949866 2.4242034020216447 +4.712676224865408 2.3427399103967717 2.460553566766344 2.476036190955654 2.369986887366462 +2.2421890904573396 4.737964550659939 2.541421167529249 3.8411574596166034 2.8139313383091777 +3.8010576037048933 4.948179762822949 2.9497071286746386 3.4704148875532046 1.259772129432942 +3.3787012357403494 3.0977789424397373 4.8436388977495906 3.860514558436932 1.0224728854215288 +3.069653015924922 4.995569250243609 2.475283531993898 2.221958957339947 1.942505259126954 +4.1635799102216176 4.805585338638016 2.3428839939968658 3.224622896752034 1.0907036548705664 +2.4540934289865275 2.704696988223282 1.6595353045096872 3.251109597465061 1.6111830665379177 +3.252922329279767 2.649492425975141 1.1086348365828216 4.521013200473749 3.465321593525361 +1.9128490853279225 2.781943561247612 3.035101954489332 1.8471809528908425 1.471897249848942 +1.5005863642744788 2.3373411853145156 4.884076054315335 4.231007929636268 1.0614408160635131 +4.95271959207097 2.8466350323699956 4.80969830176652 4.381294151544241 2.149214342158204 +1.9486820606739292 4.971220505740313 3.6661905485861688 2.699354351290292 3.1734068261579487 +3.963892130002762 4.107808518511192 2.0299506154271825 4.711399277526024 2.6853079626651715 +1.26020564708744 1.325104306667202 4.399269897238064 1.2432177626795 3.1567193274136547 +4.899468122833829 2.2496636821042486 1.4886907404642686 4.351972327018247 3.901261977618175 +4.175273304361822 4.594201798476113 2.7488392959545025 3.7432743219751097 1.0790746518000844 +2.0672561370692217 4.91942989617788 2.0354775725358127 3.7945159239556037 3.3509865821745204 +3.837805145974853 2.3961173891542993 2.9054244095818964 2.3100487450089604 1.5597870912826355 +2.5172377299447346 1.1918464755859217 2.4229646853706277 3.1196258843823554 1.4973305591415964 +2.853303476196356 4.228679666151033 1.9087098153406905 2.0968538718334115 1.388185092085266 +3.25331879848014 1.8994927391074992 3.3845939480100906 1.7994782812512824 2.0845711012197867 +4.894287855544188 2.332489703291718 1.5733378666632163 4.725558566818352 4.061933667032329 +4.786536270068539 2.892650066302749 4.727436833904802 3.864402750245293 2.081257500256132 +2.996394963246324 3.4063719557393854 2.0145079563919808 2.6318613628481264 0.7410845854804043 +3.6296603622441084 4.616907064189075 4.946517113714739 4.958477504034236 0.9873191487243667 +3.1371989453708924 4.266300079896705 2.396743314978429 3.7847045628540323 1.7892193262962142 +2.529313836884134 1.0401906951622752 2.9548945367980206 2.176121340490917 1.680468810331796 +4.0668719392878545 1.0007379812641624 3.9262048576114763 1.041314924039098 4.209960495939751 +2.5713949322131935 3.416204360134697 2.9220082829444873 1.5571609177442665 1.6051514881153877 +2.386791335696763 1.211396116175257 3.3735272812509347 4.582886100370676 1.6864467603386426 +1.7808102383239999 4.91061876018409 3.707432465519527 2.013770474009909 3.558678452036988 +3.19751790055814 1.8348735107341199 2.2779218761757516 3.500118679059197 1.830454795425823 +3.816706584878393 3.848692419862406 2.882573172504931 1.3536998136916587 1.5292079129172074 +2.1785815438607723 2.4239757249044405 3.804573447238867 4.031130906518371 0.33398590755490964 +4.079106507900086 4.117252130884625 2.9369338083674386 3.7451038542035264 0.8090697816255301 +1.7246236387898448 1.2107903299808394 1.327630359827078 2.5571616276336773 1.332580882256576 +3.5308760570829345 1.9153635959410424 1.668652744691256 2.231366056453824 1.7107094386071324 +3.6838759379964054 2.2104449596324787 2.2701831667824757 2.446069521486854 1.4838917944963754 +1.5844833932882314 2.914496449779518 3.69024333259506 3.8265771173962095 1.3369822853409463 +2.034708554940784 4.102353696625084 4.498699162764619 3.6970662601246524 2.2176049563720013 +3.3075997025349357 2.3491698633113183 3.5503444523415544 2.694283341565213 1.285079134566363 +4.714175766073746 2.3200610540970006 1.2227979624606644 2.45384063792883 2.6920719386612446 +1.0162904348028303 4.890335135238946 4.1167165263979575 1.401698941767434 4.730702149346343 +3.5246698851860128 4.014294003439273 1.1435871695414939 1.1887447814828458 0.49170213248625294 +3.7348196864369396 3.9971136169597057 1.5273176467258307 1.8906196715185986 0.448092029841646 +3.556317919442251 1.2909931244250195 1.6360350053009345 1.3117190323302728 2.288422442916467 +4.157879018069689 4.804014403916847 3.5651161999215693 2.5292654460045174 1.2208512281332156 +3.5953672203754214 2.4222814723252513 1.544981405520855 4.317578751235461 3.0105524764969807 +3.6530297002305807 2.5276211133443964 4.955831702089691 2.657347046476545 2.5592139808007928 +2.620455041316014 2.5024916885607036 3.970167833988461 2.5876966669695447 1.3874948216955327 +2.245281437341764 4.779349995799315 2.121838904271557 1.8820178253783006 2.545391445111077 +1.4779950151400079 4.621807180202219 4.711146018599134 4.705105527214074 3.143817968128772 +2.4206606555026142 2.71487433568304 4.567872799567299 1.0122476437069068 3.567776890248681 +3.7356072477931406 4.121706620254059 2.035241138016069 1.755239686653049 0.47694186037725056 +4.358023876716583 2.754775024149585 4.119478861389824 4.0543708136762024 1.604570329133153 +2.6260118278148594 1.9285734696972638 3.023460526174631 1.653052949174072 1.5376726538747805 +1.361832082952068 2.7950552521280123 4.916827350495915 2.5103434771730724 2.8009450700121996 +1.2684190289618065 3.0668646940884634 2.7905950299906666 1.4438855530465684 2.246782861271625 +2.479094315927949 4.201107188526726 2.951236209339235 2.4893182697594756 1.7828899338718311 +1.066485092155526 2.7348522643013475 1.0749709077865313 1.006642145165705 1.669765804205829 +2.792263296049099 3.184198397749599 4.970787456891732 2.027538122581251 2.9692305009655398 +4.865666502930873 1.5191013660446262 2.127944383222744 1.6315954918945392 3.3831731314470446 +2.7092890530834044 3.8550892007320128 2.3272512832964893 2.3646143926382024 1.146409167920099 +1.0010258228334696 2.858393538636524 1.4033573274440911 4.414082475419772 3.537552932234462 +4.5968928831926075 4.057348314325231 2.5377648564287396 1.863980448740393 0.8631881427812939 +4.206638435704871 4.2262593361026966 1.191724926203935 1.4223079303583543 0.23141629488283297 +1.4354837441887476 1.8586606405164514 4.7534988568776 4.89461325252765 0.44608514685565015 +3.8151836937222194 1.4403646350254955 4.326919371992318 4.116260166652477 2.384144052347426 +3.6187082652728657 4.513030853245649 1.9764639133417248 2.083710394822951 0.9007300922853858 +4.446744291505662 3.275334925995819 4.094086795522577 1.4910608735842539 2.854460343372636 +3.0368889859047945 4.371690889645211 2.531206430070539 3.308797557960365 1.5447796232479285 +4.151631980657489 1.0653854581746178 2.4457256250616366 1.941400872519233 3.1271810074833484 +4.972335914268374 3.0199376086353755 4.79529419409201 3.8550684533027364 2.166998751149004 +2.1194718539611825 4.360809613051434 1.8339851294628087 2.4533625781242745 2.325343710988571 +3.669903787370635 1.926280101834251 2.920135482985133 2.2998776926227986 1.8506602290179168 +3.4813649389343477 1.9478874961044972 4.201628878142012 1.4092214406699983 3.185764015823676 +2.76292622741934 1.2938671959429864 2.2544008848019734 3.833477187652487 2.156760628393028 +4.241796112454552 3.9869842633784347 2.075626651572117 2.4398602784697756 0.4445168313940575 +2.2019761880484463 4.698732774321604 4.689039346479979 1.6913295744784165 3.901289187980308 +2.5979726620783334 1.772126049861217 3.1324000536348344 2.126608324454263 1.3013991045788114 +2.92490911642813 4.887313834044161 2.5468185623605253 2.0304826645972858 2.029195662088953 +3.2858642409966885 1.190913579080913 4.7966730950456045 1.2034055126728282 4.15937377430695 +2.04698310301073 4.681703662341034 1.0572959417045875 4.2878310800707755 4.168705998985349 +1.3550895535524372 1.6281883612472527 4.778011342331673 3.1574881378877255 1.6433740946314104 +2.4946255932403156 4.3328232753683675 2.421371466256274 4.837148916825928 3.0356138438974347 +2.1736888087147115 1.2094046172267996 1.0085803814954932 2.039904625781696 1.4119042810353695 +4.946689396742468 2.2603110324131963 4.642007394977687 2.913926737783714 3.1941965302880737 +2.8976615959865266 4.578381997760457 3.9768798858897614 2.7410950185892333 2.086141248139278 +1.1880482049214836 3.6964092961341963 1.6356527833109635 1.6734275673789645 2.508645510673283 +3.912062472706023 2.6052471209528556 1.2432030528037958 2.6116051113967624 1.892165573500169 +3.0435637780033225 1.2530051312672987 1.9500809506593066 2.175771749037539 1.8047261852906507 +2.871678802309206 3.2764556381258307 4.813167690171305 1.9974594825327063 2.844654108565238 +4.395000069487866 2.002167518721211 1.9739422718899702 1.1518558838623498 2.5301133661140076 +1.5848263937051255 2.262301403360849 1.2916496942963462 3.5014137760000654 2.311283125343129 +4.910064984863862 3.5423354176028217 3.7372490563480047 1.8513359144071484 2.329667905111221 +2.026933910903417 2.9321627483872867 1.7836442812411986 2.1858676783673703 0.9905669636163508 +2.661590993655871 1.4346086315134987 1.1092150743240037 1.1831873431270816 1.229210158418954 +3.7041932512789737 3.5993308986319015 1.5852716277418994 2.279922846792194 0.7025214794799797 +1.8854920821822683 2.605460083431967 4.470990902701672 4.268516557794158 0.7478969067787438 +2.7365767322724626 4.4320929696066855 3.653592484092737 1.234001994575212 2.954520849144182 +4.278109277063635 1.610823259944576 1.3831241127849254 3.8537128254356836 3.635687456891225 +2.201180370962075 3.333794485739748 1.7213242598316576 1.6368834903309057 1.1357574461774358 +1.2914529771001897 3.4219610655546564 2.3596729897990083 3.0886994588463472 2.2517869143286044 +2.4833199664711585 3.0286541279876418 4.510434687402027 2.2626062475942716 2.3130330828860735 +3.923712096282391 1.27788129443379 3.174397039047343 4.2293718655221655 2.848401747736157 +1.8716933253039825 2.549541851080523 4.553536749720729 2.6651050122312534 2.006403013119485 +4.871013594515922 2.176730658767518 3.997492705871714 2.8423213969923586 2.931481074597461 +1.2790935605096974 4.670238964106206 3.69598001414731 1.1124588206101973 4.263150115324248 +1.7635315112217036 3.296504122319327 1.808258413183947 3.9968108194080343 2.67203418038855 +3.3705214378775055 4.90726898591633 3.705857528240426 2.7657897535462044 1.8014772958385807 +1.1284127309650267 1.2648753436737268 2.0741282578782614 2.6411644725804773 0.583225611106973 +2.146574893372216 4.527008776970282 1.7246870663475824 3.5622385000747747 3.007168227049267 +1.9723622863987962 2.212156285399179 1.0695637904244286 1.368810170401376 0.38347041331229614 +4.291811613524247 2.5711278508748108 4.5943986023932295 1.1230041281403773 3.874446051620626 +3.8034489484139113 1.2249115001831874 4.31797376039226 1.8349045313953751 3.57973297438781 +2.2598623004282814 3.501332476724605 2.498767684055744 4.379027034397165 2.2531363525493893 +4.440326693661815 1.0278730746030504 3.291459549223588 4.946094693637756 3.79244738438884 +3.498631317712828 1.0210664287141897 1.4689252047186931 2.5359320099421523 2.697560249853932 +1.8345108580245166 3.163585935056917 3.370275198593136 4.869047120580319 2.0031869195174563 +1.7820801188449766 4.797491179944567 4.976827011144207 2.4097370541107517 3.960133168834576 +2.989282888683854 4.056336790603909 4.734631829991503 1.2794350282460565 3.6162119639748416 +2.4603517143838225 1.1974187345694207 4.159654119524326 2.082583990389848 2.4308887331273725 +4.447968100016313 2.74102080021285 4.584835545285718 2.0597336731811375 3.0479187241152594 +1.9975427228739724 2.9804783581147736 4.6474132976716085 4.167439258557097 1.0938635843879874 +2.627839420736685 1.8070112912367549 2.6627220248217993 1.3600160612926038 1.5397407722057903 +1.4731406649919725 3.032796699687679 1.4413181346136628 2.5959449830630748 1.940538612273138 +1.020494179304165 2.0540651893137074 1.351336737371203 2.617448507789638 1.6344136709916033 +3.437759853294378 2.795751292390259 3.3429776558518767 3.065351900373518 0.6994648328394409 +4.16735699522042 2.7677720297678166 2.1649086393388326 1.968918258381728 1.413241063990385 +4.08839423102438 4.068791160814949 4.482148772177755 3.01973942235627 1.4625407299651298 +1.8029364406274584 2.1764285200236597 1.6973941698295132 1.4281543423230518 0.4604198280780351 +3.5200281493948085 1.9683872056204397 1.554589827455763 1.9016065164411788 1.589971761016973 +4.213479401505978 2.101372134248226 2.758856747151965 3.1654056515757625 2.150878685582058 +3.9190960444976524 4.614289421340567 4.794444950207991 4.946324022883298 0.7115905310801754 +3.5082473395577707 3.2308660310245005 3.0361715946445074 4.722346611560573 1.7088377857466526 +2.2251379583291637 4.040558696997493 2.1825633190631777 4.1511477702262365 2.6778867040537815 +2.256318009164986 4.473293665272445 4.292965543008146 2.1318299293036733 3.0960439597323073 +4.30565633288254 2.3550090922316924 2.744186315003953 2.029683455237136 2.0773875406562268 +3.2866572029066927 3.046327038205775 4.318346622553127 1.775379155141021 2.5542987547234004 +4.744538219529786 4.777935451791919 3.6349240317860882 4.557311899921963 0.9229922829617888 +2.6166787022183637 4.859497379737039 2.5335469901595165 2.8451000227389156 2.2643544140297562 +3.389535226895075 2.969012410435326 2.230731554061091 1.174684938965167 1.1366942827421973 +4.381024401377674 2.8187657878919947 2.686627558690667 3.5975792663810937 1.80844822683822 +1.694608565871901 1.913744625308138 1.2223793137082275 4.912566804190259 3.6966882918979413 +4.3994523492075 4.79512423277116 1.028464708179044 1.7982774685881915 0.8655448720497199 +3.383958275239089 2.46862137672228 1.1957722998281968 3.71583061717265 2.6811444497832126 +4.2470755272781515 4.307888889764879 2.722504303334361 4.399257002703699 1.677855142704311 +1.0315949894136023 3.751994570863398 3.123158587835402 4.118531752675708 2.8967812516716607 +2.007512732256049 4.601200683661716 3.67192536463979 3.5994651344188777 2.5946999198810246 +4.515136222733051 2.4580454984586932 4.82320556157418 4.777642243036362 2.0575952624099276 +4.925203623494101 1.2243995539647599 1.3771319765710217 3.769237890689784 4.406599762334547 +1.075950634825349 4.870566980210722 1.4549864669863535 4.206879401409434 4.68743297884818 +2.2495775213560547 2.7374508441714998 4.339229574169286 3.54849668067761 0.9291280256050302 +2.890445440026874 4.605676674792413 3.2213572387865734 4.090763214366117 1.9229885436706928 +2.5733339478887407 2.70003267939584 3.1865205766495097 4.364790430820168 1.185062199976378 +2.4172142519912896 3.9945183247399063 1.5049781323285916 3.695256706683049 2.6991125154734785 +4.885917374201051 4.505279066789619 1.858217652270005 2.4737386264865853 0.7237068403501294 +2.9427272286308916 1.6904055947885306 3.400639634517636 3.1736095716764456 1.2727341136401096 +3.9456755573563846 3.9289012458675088 1.480090637747447 4.147936267240647 2.6678983639434044 +3.6281991824778106 3.9313602549893867 4.476513692626746 4.8357777302285125 0.4700822104699269 +2.2895416316633743 1.3190485120751543 1.982804060304478 1.5931623630805807 1.0457903936179536 +1.4845288377805237 3.1747193468432235 2.4232366426794796 3.1830029161986855 1.8531024654084536 +1.7561116464730984 4.509265122283372 4.396257310195747 2.758053727493386 3.203679921550379 +1.4411982417377227 1.107401311784888 1.8700359422598152 2.717742389266725 0.9110579623399471 +3.9382530811818475 3.7741957265630277 1.920199954210719 3.959773198065262 2.046160754352372 +4.71484620081978 4.053205047489229 1.7908075370533916 3.392590628876183 1.7330545545452292 +1.141457244450867 3.3960191776757287 2.5708146684841675 1.0590972791625148 2.7144684518196374 +1.8591821267817337 3.7990073047529327 4.830319214492545 2.3197198861466624 3.172700853938453 +3.488245262429231 3.845640448972421 1.7741216529809285 2.3950698778234814 0.7164551746615829 +4.086732892308495 1.3418084078341277 3.0568319212172903 4.388584969211301 3.050930449274157 +4.566109148678969 4.754116625685375 1.36494706707327 1.4762613102838924 0.21848952412385386 +3.45851371261431 1.581914337517134 4.498936158647048 2.2443110188969686 2.933421165705357 +1.1658441235903632 4.739521813820764 1.149582740637086 4.583482853077973 4.956091425293931 +3.41769453109973 3.8292457803331925 1.46029096841953 3.5998422917526853 2.1787735761024547 +1.4341740270107475 1.29301198110449 4.279553597895065 1.6390287489898818 2.6442954072664007 +1.4422198485713218 2.8699071468665793 1.627919394233503 1.7891407823998797 1.436761412940891 +2.7645429294160646 3.019685695322148 4.248954074519649 1.9270391304116172 2.335891016007898 +4.995292054136641 3.390572865050499 4.885785983506078 2.3772555143817202 2.977893347711861 +4.876794548026178 2.221005532430861 4.014369488677449 2.6483258800645486 2.9865181124494953 +4.518670910312123 2.3189844910375954 4.5803976505961845 3.08837138549588 2.657962136466574 +3.5197264451135584 3.798262735902316 2.136043531331424 2.188224863533812 0.28338199786996915 +2.514983425275705 4.026456401193856 2.575716905876737 3.7911717425841003 1.9395569125463157 +4.916433097685703 1.187241490480842 1.6114399749007347 1.6381148340281717 3.729287008444998 +2.3846942246317155 1.8375010604690254 4.573004201809198 4.340522106850743 0.5945319868456606 +3.032762648574259 2.6668422257377826 2.8976911698322243 2.606797338203291 0.4674579950418946 +4.071483416091812 4.202642306928555 4.96548285398795 4.854760426306344 0.17164530473401557 +2.5535835192595915 3.446843731444154 1.0890072518848837 4.307728741749234 3.340371511671507 +3.250228987173056 1.2244374650834238 2.421483510728377 1.0907056059660363 2.4237989031216833 +4.047580111900204 4.07618761624258 4.453764408613228 1.529350698932411 2.924553629987629 +1.3630230798606418 2.285766667665356 3.9633316160270686 1.394670966516867 2.72937231999903 +3.755526621076331 4.510096360665864 4.001389717037224 2.6086787149306123 1.5839884555428483 +3.3678761129344807 1.9750293418615428 4.4229790110644025 1.3653266611335373 3.359949407465245 +4.237821495788676 1.7849894984998786 4.680805256372657 4.399801431482924 2.468875848747039 +3.1295756372015813 3.5999898487064304 1.6502962771153697 1.7422103080583238 0.4793096279753946 +1.777855772415653 4.079297591926499 3.841140686601669 4.431542940638128 2.3759649134961416 +1.8869075257703734 3.956005463216127 4.611758710613586 4.561393288216635 2.0697108374155784 +3.385688707441834 4.563180869625673 4.1062878820759385 2.4636599465031157 2.0210676205235205 +1.7452526403298019 1.3071655914994706 2.0770630868452296 3.627344584724121 1.6109913050722802 +2.3483377657484072 3.333553049002183 3.923502443723764 2.238042892102042 1.9522866220178106 +4.0186337650136625 4.382916502515011 4.8066316355734084 4.231800482293998 0.6805385864313742 +3.349019737463655 1.350372053540454 3.2800859533965268 4.859187551490996 2.547185588361414 +4.218239749768724 4.079287719536685 3.6026152921208126 1.0096540464590795 2.5966816686319585 +4.214509408608549 2.699646226379806 4.995914026468649 3.069776025533441 2.4504730277068694 +2.192915345895088 4.973952020472835 3.556032524599843 1.2026321576061254 3.6431659683183004 +2.0689743749858636 4.076720517229656 2.0696297618224957 4.985555702740879 3.5402921722105916 +1.9052217960996072 3.9537315740815306 2.8263398409864164 4.675458063930611 2.7596431857962807 +3.551512536538547 1.5039638873773535 4.760403455513606 3.146584023365825 2.6070804802037877 +4.959853004438777 3.951901208019525 3.2817431359052796 1.207850158666322 2.3058618572988854 +2.9958933925509443 1.2524648248563106 2.4189281432806995 1.1756667499636335 2.141317833196757 +1.6716502159817805 4.890675537850498 4.775525676657752 1.342720629178502 4.705982842810949 +1.8323515522544294 2.95697917438976 4.38020455004391 4.89097163682688 1.2351802724341616 +2.8071712960647983 2.4518934880778978 3.9369644489888556 1.2213908926997803 2.7387154033350147 +2.3321167855920986 4.5545013721103675 4.017033479314195 4.607179816236019 2.2994055643527145 +4.262877752844073 1.835855226271487 1.4419068642327941 1.557419712890404 2.429769857969222 +1.9564905339068503 3.9132620243460865 2.013086328191197 4.558757356868583 3.21082476196431 +2.6030551703360354 2.6164821480902933 2.545975706187358 2.036595577590225 0.509557061712665 +2.427282594940224 1.1420030422414604 3.5809944080098504 1.0680297062764676 2.822575972537052 +3.4210988376863947 3.559231141388279 4.16936744104251 3.538020793266682 0.6462809938283544 +2.397551357476878 1.3310659656384316 2.4635140957501838 3.4303953907574614 1.4395313576437834 +4.3453162984645255 4.2234213422480025 2.277297187115697 4.4547991971722 2.1809111362343807 +1.4461146435243721 2.485809382722683 2.2101324421704764 1.2618672794435946 1.4071858333418807 +2.5613759380346224 2.8689661305449916 3.095854230607815 3.033005651103397 0.3139453303909602 +2.7935192585171236 1.9100873447692077 2.07563526045274 2.6838523092699638 1.0725576556531766 +1.8839877978253847 3.3643228491399544 4.142173683231875 4.2673049858008785 1.485614252433358 +4.768219462150766 3.969294421700423 1.1822932545697795 2.0467279029499514 1.1770847384868828 +2.3503243285084507 3.043235552434767 2.26431321300197 1.5388720992135836 1.0031902979084277 +3.4289603096161727 2.30382523239113 3.7487487762644087 3.7746348134696572 1.125432818485579 +1.2874465496459009 2.152494921627139 2.6273634544005016 4.086562229498007 1.6963401047883797 +2.1931311322221916 1.8540086082159317 1.5892991499065596 2.249708545961637 0.7423911749786686 +3.5088905834750865 2.0445776926821995 2.8571303200327027 4.509932594653094 2.2081593242183772 +4.5197306064464176 2.754537628374251 2.944731097053765 3.195446907058587 1.7829090462560502 +1.283996416612188 2.948328521957792 4.334621571553448 4.9629530189172915 1.7789889725994574 +2.3159358078149843 4.9559315709632346 4.425129269692693 3.130703558700696 2.9402577354235206 +4.58574231866498 1.6282625963983102 4.819098755609423 3.500271196444001 3.2382082141877113 +4.042982796511854 3.462647530393607 3.4544686931344324 1.5707241616280072 1.9711119910042905 +3.3135632447413186 1.461897186400797 2.8824078739602306 3.931018194566517 2.1279687018592033 +4.3554285870925575 3.2803468200402945 1.5175241044279555 1.751748431976564 1.1003007959025632 +4.893036294375389 1.0389235958336807 1.0179728288128085 3.875652615036092 4.797970243097554 +2.526099388591589 4.949322450780773 3.0817848123278018 3.048856334872869 2.423446779641143 +4.4665782063380375 4.574876801509728 3.489635466768612 4.746825444101539 1.2618459592289888 +2.1053705853195948 1.4194191403538965 2.661715810102145 3.802076293667591 1.3307709860558832 +1.57300488512363 4.867393354658075 3.9797396980612745 2.965614613222443 3.446947211069655 +1.370616646923187 2.9597389901279283 3.3009435852722517 2.0312214934145523 2.0340855469286487 +1.868863822394673 3.1885437662222103 2.4236360639065597 1.3513754390037698 1.7003817223957607 +4.413237578428591 2.288905815020029 1.4674448555110478 4.407661325480353 3.6273486641492423 +1.4450677488088925 1.051787467761096 4.018275619060801 1.363410376559897 2.683836588784872 +2.387235022506454 3.825395020773645 4.738779208999735 2.1950127303494034 2.9221656487134666 +2.64891050395141 1.9823623270752164 1.436873185603213 1.8161696560085216 0.7669108713265853 +3.0030629746170576 3.6486147961852873 2.8887026697811624 2.8421718809702554 0.6472265975973366 +3.892331413679963 3.295211827985157 4.894329869412127 2.501818814224971 2.4658996226150602 +4.709497293649012 4.144675641372167 4.7052654495113355 1.313646638755599 3.4383283229431276 +4.100420739665771 4.2735102368907025 4.999541710710245 1.7446678125144235 3.2594729738419437 +4.35431767187294 3.930653623059491 3.480422377748599 3.2395924875326982 0.4873297264464867 +3.0612890153065946 2.115674892610653 2.433879412838118 2.6852952860202106 0.9784661518570429 +4.703144700581216 3.1693507698655443 3.4610046709519158 2.1566443344184822 2.0134248705680187 +3.3109997263918327 1.5224891385641253 3.526808142461034 1.4875085937329864 2.7124735523529497 +1.3832404462474033 4.167678086654105 3.0169084186530264 1.0069029411528732 3.434125069489208 +4.710709289578862 2.5602957883082356 1.5839679097945503 2.4462513807418027 2.3168536878093606 +1.2880952759018105 3.4380996981633265 3.4978443702892412 1.255307125535988 3.10668509988534 +4.806992058606168 4.859251014556189 4.104028446483038 1.283296023917937 2.821216474889328 +2.5774090142658883 3.612044935315536 2.281055325277419 3.4971014223254184 1.5966338338115993 +3.4531901921897754 3.365288639325957 3.351278995664232 2.499967666074245 0.8558374044666093 +2.170326958822866 2.787609769192669 4.374806267027431 4.70970899306181 0.7022805022804635 +4.932714535925378 2.0253844893538036 3.0069530848215007 2.4890205589749144 2.9531038080344714 +4.049571687361922 1.7844897987744606 3.432087212093264 1.7060034166899913 2.8477993663108903 +1.58158320865369 2.7645087954272523 2.4745561719355953 3.9229691242774845 1.8700836944787589 +3.839643640154458 3.682478028562165 4.1471042659394 2.0018303325426747 2.1510233096781253 +1.3485838495884939 1.4969316905415577 4.881648356732292 4.099707142128995 0.795888902429676 +2.028566917517792 1.9896539283040737 2.7940642302734577 1.784237349581229 1.010576345309024 +4.720968416999268 3.136184659882757 4.132022516550185 2.9468217915520616 1.9789492958022956 +4.916513200833243 1.5113605268217825 3.883100791862801 2.3701561698772013 3.7261328696817224 +1.7534635263539418 1.8691865839611013 3.751189269760351 2.6127149903157303 1.1443406446591409 +3.3429354081168685 2.926532174420068 2.249744393502364 4.124756019504181 1.9206926486752454 +4.532600801907513 1.3310864130289524 2.074103502642933 4.482515918105877 4.006263189700911 +4.362018044104911 1.141408001331278 2.645885870027672 1.5515955350817152 3.4014409277202677 +1.3802278415155076 4.131379796138042 1.7747803895125909 3.0163383088101745 3.0183278722487943 +4.590135356170293 2.7523612581625705 2.9682235113628415 4.353922558212762 2.3016462551288974 +2.6628185550552055 1.0273510474396352 1.3609724115318738 4.838313969382329 3.842740985080847 +3.74601583437256 4.810436025261814 1.583647095986962 1.3291358644040336 1.0944251046894784 +2.398329228409524 4.264393580688857 3.988807665499835 4.340209964230358 1.8988627497533312 +3.369835064325513 2.9305685917550024 4.556466892167103 3.7726268263319302 0.8985322936506107 +2.644416109291011 2.5217220968792042 2.8004903344429217 4.788681724254772 1.991973600026789 +2.1784891628256267 3.611242534748242 1.4865844197425337 4.8054562247498716 3.614926317759228 +2.4663748532166125 1.136801556828888 1.9041727630149543 2.9982571988286746 1.721855366503571 +2.3295709576556947 3.5172554523473125 4.51289873073577 3.6626602062872546 1.4606505425279768 +4.004130112350186 2.967300443173035 3.5047304866082 4.285760811089805 1.298084793318927 +1.1950205485159744 4.875614116450986 1.6882825270124155 1.8223815437576971 3.683035644494448 +4.0436698021036825 2.531750495622097 3.115637502827524 4.288513731976362 1.9135147342558292 +3.0915870573415245 2.831851264277767 2.3815664462033928 4.182725358432836 1.8197901278174935 +4.262287054269269 2.8000158090549054 1.9007515307176557 1.0298546175402374 1.7019690443608897 +4.638537503876728 2.9876363695803554 4.333759349900651 2.8124786226639795 2.2449431187187767 +4.8562592963772495 1.4066703555194815 3.0823319316117166 4.959173630706129 3.9271107221910384 +2.680021168014629 4.240746593570938 2.4414287218136637 4.934330727319847 2.941160359965888 +1.368298198970554 3.964816709093023 3.1207937101951657 3.9554368225674543 2.7273682366778242 +1.3488066540080048 2.3695939359595815 3.3681203936586837 2.065150065975693 1.6552154995094772 +3.9315406977190994 2.7424626668692187 1.4531898303074438 4.142813168145949 2.940744848315707 +4.355841416285015 1.6695209984862442 3.7224955178661716 1.6932156752735037 3.366644333254626 +4.669953217160373 1.9034164104190423 1.4183279818439987 1.3136586562278167 2.768516131572916 +1.8986836377895706 1.6616851679385758 3.5563752280093497 2.153329115418927 1.422921877253565 +3.7879167303420456 3.7715741918896026 3.3378584975113306 2.111309314252118 1.2266580523996535 +3.8409907422283354 1.7246853034163272 2.068801319123805 2.0406476481315505 2.1164926977279244 +1.2721372594179448 3.7248730387837523 3.0797848585887646 2.2618455444171213 2.5855246131198935 +2.533940415115893 1.8166239959546386 3.6950583169666613 3.324183156756191 0.8075216589413975 +3.3052181989712333 4.1590094382741825 4.069091708370111 2.5415048139914154 1.7499946286169037 +1.5809757424120106 3.9071255983182 4.407025896205393 1.8225807265328169 3.4771151817528705 +2.80771454038191 2.0410939604124576 2.87645049996648 3.1124561317450663 0.8021257830689084 +3.138706073257473 3.7067950609311975 2.536414741180536 1.774103910237074 0.9507065272153487 +2.3008832952617717 4.552287829260998 1.2354375196467613 4.33517554596407 3.8310831637423113 +3.264720410042716 1.1318735419492203 2.8226464814034866 1.3762038206583527 2.577058814532508 +4.422666152317772 1.3871508531071162 3.5711735972862773 2.093022569300078 3.3762825108806602 +2.3434640346911872 1.653469870924817 2.4116540391642927 4.510056293097275 2.2089327661435676 +2.7769187449297053 2.234598262633088 1.2856951524437545 4.264690893223772 3.027957583768954 +3.3480010913317177 1.7386379320423733 3.9455917618162855 2.6352150770683678 2.075364265474551 +2.288321713156887 1.6082402654303753 2.449619163910614 1.7503531295272161 0.9754402915525234 +2.8741427134146624 1.291428179148042 4.09101834514769 2.515611757779726 2.233134839749087 +3.766472563054734 2.422633528992764 4.566879391820633 2.8377391763994138 2.189938180418696 +1.11255974714829 1.4202021107963128 1.2506976100494605 4.29028865035044 3.055119885730989 +3.7321563390888666 2.957824420336266 4.851246644306401 3.221912899365658 1.8039729412609575 +2.60762609553132 2.9642272958565616 4.162424205151649 2.125991749973377 2.0674190578053615 +1.8365418293291316 4.313704662402799 4.464667204244087 1.015530961885911 4.246513454577794 +3.1542968600449437 4.137701689033417 3.2244058661849424 4.7006570548887705 1.773810201184815 +3.4496220083552513 4.833882187312781 4.162411496216144 2.841476715073535 1.9133857266844565 +4.887881233690836 3.726245534417819 1.7264718816164324 3.2919704987406035 1.9494059141295337 +1.762329764738909 3.741356948598525 3.029643220239298 2.669457392490579 2.0115373287529 +4.462149233016355 1.3649670203094755 3.0004912258092835 1.54244582491765 3.4232198366113042 +3.812253382151115 2.477793488882981 1.0963583840368685 3.565374132093842 2.8065676494420253 +4.742536980396075 4.080982201409699 1.8129902950425474 3.4423262219618302 1.7585193454578858 +3.1461248650163527 3.2275733695140665 3.1606610277597653 2.2051643741776044 0.9589617895889399 +1.994675009479606 1.4067960113527658 2.155591741822625 1.9914630313704005 0.6103605082517443 +3.59002365024101 2.523674785843599 1.9286339523559226 4.120133020488277 2.437163939136353 +1.358125750953024 2.698895955295291 4.691434541189812 1.0643261958439219 3.866985866243864 +4.684838824550523 2.2169031254897 4.769399741910179 1.9542834846860466 3.743739595162361 +2.647463558717488 2.056396342195914 3.0074002682071908 1.143288452117972 1.9555749326809255 +3.533720714879679 4.186697298880246 1.0637036870563072 2.560424149723756 1.6329576120097273 +3.0117523514801303 4.291502775618346 4.435211758189017 4.789120817996361 1.327784911307423 +1.6272409501256666 2.410075432110955 3.2744996261697756 3.9394083496019343 1.0270995261810598 +2.515121394745391 1.2514806514955952 1.7702442491584143 1.7437795395124147 1.2639178410235152 +4.884508383755403 2.5637569334691452 2.822347037313137 4.7870910211942785 3.0407410636558496 +1.0489527020234655 4.793935449799769 1.1833473585066034 2.8370557498111517 4.093854812351463 +3.3441566675748056 4.687347760502778 4.315965902236266 2.450584949677329 2.2986536081564637 +3.1927289562668464 2.867986490404032 2.8038991826970014 2.4177268804646843 0.5045658689864675 +4.0556268190465214 2.044656239116079 1.246314924249389 1.1615454092708672 2.012756454222784 +4.743640504113991 1.4740244907780586 2.2533749333285025 2.1521278722962256 3.271183248005288 +1.9871764455656518 4.108663450245498 3.700094369653762 3.314371745551504 2.1562673892098347 +2.6549176182983176 4.452059203559189 4.610525613892184 2.482454731169035 2.7853910963037207 +4.1745374132715956 4.702808207028557 4.930601709065487 1.1757725183674816 3.791808576768406 +2.8595609257836005 1.0105196393069167 3.4486965232912676 2.3604212874868526 2.1455294609863795 +3.0052051573250065 1.4644201141445121 1.3719460550567195 1.6089116218631383 1.558900647616969 +3.941009035979394 2.214845869316426 3.531704218650304 3.9836436642854993 1.7843454095171631 +4.760258821137789 3.6434694824395724 1.003700336519985 3.410375954599258 2.653169040541377 +3.097634747498499 1.893244800248954 3.183389723970233 1.5021507229608568 2.0681198523177438 +4.337070318909659 2.234084488600875 2.1975464548805603 2.4632659667230676 2.1197066451406306 +2.1713958238304567 1.310803779878451 4.288036715658687 3.2953091215877452 1.313821427037697 +4.53765156996343 2.1741980363696896 4.2415865040365 3.118059590232465 2.6169114107089597 +3.1717520245988817 3.8118183443011966 2.2712286548190836 2.096491302706865 0.6634892884142558 +2.2918136352394396 4.449525423078315 3.161776263359856 4.856965120854421 2.743972562171963 +4.554880538289563 2.384946840286598 3.4475591823854037 2.8013922742613664 2.264098921620564 +3.6572849377822085 3.0933176928570973 3.7308359762282293 3.4334496806779633 0.6375716917567236 +4.768400171049404 4.9968642704334805 4.905109665381329 2.3604710458997165 2.554874076831315 +2.5754538763670425 2.0010550114705827 2.9150636133425674 2.195698704673042 0.9205541417100116 +2.7005828773950786 4.561277681001407 3.665789531862491 3.5378642664951125 1.8650871362182804 +2.9175017757251394 2.767570958497661 3.6721177121210804 3.0340041146649717 0.6554908185572673 +4.664449440513268 3.2901846835177717 1.099117350445057 1.9489415497422176 1.6157984998232144 +2.424762850583478 4.128292756100694 3.7307454636970525 1.3039779593626428 2.9649982561689567 +4.185529809370558 4.384600848852309 2.168472082233103 2.705144556854759 0.5724042485664105 +2.34482402653505 3.811629463607795 3.4650130526126763 3.616165002906944 1.47457285418657 +2.6032833666781294 3.5614529038186715 1.899734814851107 3.506546331677819 1.87081054960439 +2.3891229271023504 4.893006401150977 2.93911732779832 2.0314746998166893 2.663315150661525 +3.1728032186853032 3.235198370299722 3.7311582403448726 1.716999403321294 2.015125052125838 +4.225788108299067 1.9419874443682716 1.513668628245064 1.3542658042177775 2.289356838257989 +3.708419207064967 1.6423224063997246 3.913888219956381 1.1783187241629247 3.4281330861031076 +2.1042930703604905 2.125264867353464 3.9621079578382634 2.139905898709415 1.8223227377614892 +2.9134384063018395 1.6854225145851105 1.7153477701986892 1.4064833593197097 1.266262316669201 +1.9734378841253912 3.7109458724343702 1.5183774251676958 4.061310298521903 3.0798444129246203 +1.3785838600950289 2.4691557060718914 2.4997636806153354 2.4184189429965004 1.093601352219198 +2.717431451430194 1.3460501816806536 3.1702422945087094 2.9246311206757225 1.3932018646741324 +1.4856838522009514 4.046183757604473 3.3942534750331275 3.4163870305988566 2.5605955674126717 +3.2872980010352477 2.212158527342692 1.4887088735697187 2.9920184335747617 1.8482057572398323 +1.139744682479395 2.7918645848799675 1.99705753130694 2.318206865455005 1.683043988353193 +4.386520882080482 3.882806441140191 3.0326324965491502 2.7859447888252182 0.5608770481610729 +3.7670107895508296 1.7757061155003329 4.661336743567772 1.2904534922822757 3.9151179035493215 +2.4516313867581836 2.180004553201355 1.2718831867287346 2.138904830681101 0.9085745251711457 +3.5939605400814894 1.8322965147645598 1.0752475541593265 4.163690590845604 3.5555506646582615 +1.4765903985816786 4.258408569758848 2.21036536911741 3.4995953725929083 3.066044086335506 +3.1834154469319604 2.8345683579559435 2.6954100934855814 1.5630089624333579 1.184916289488585 +2.4448653909032183 4.316892462680107 2.1263367431882965 1.321485378026117 2.037712216548003 +4.9857673669275995 3.9473189911744986 3.2293081686893297 1.3763878968518104 2.1240735775605044 +1.1006033792853969 3.6863072435586655 2.9481070422430955 4.266883899764746 2.902591406597283 +2.417712980963263 2.935078026492761 3.642960808430627 2.897966301477915 0.9070189665742686 +3.7908618435174626 3.4961681176313153 2.75239643785854 4.582427690805387 1.8536069644989108 +4.857062806955094 2.2359125342163124 2.7623305239151197 4.313100368222633 3.045540323537375 +3.5843924734787564 4.980047915585455 4.977565414594053 3.423645347073323 2.088665049577283 +3.718983570491361 1.0342716977989563 4.5357145183068885 2.75733192033616 3.2202985116508493 +3.3909923038378293 3.274155294490395 4.507358875037304 1.7575524637405335 2.7522874461731055 +3.0110356226278983 4.370812948283508 3.4492497377129494 4.499361459232821 1.7180596622470796 +3.1499143325995465 3.8548985008255703 4.859186749336034 1.0298119895717894 3.8937274850930192 +2.898229922662151 2.7561530321815 1.7997559924043687 1.5299785917025042 0.3049027529198535 +2.41701566736001 2.8002934046420034 3.248966570697199 3.3468605450093025 0.3955819183211279 +3.647111713925945 4.754340882804293 1.4514653107612263 2.4775118916209378 1.509545633132348 +4.071554321457532 3.4354587439987374 1.8762923593441156 1.842348378351733 0.6370006102887563 +1.0980702400105327 4.496765039679059 2.4232580139414712 4.014950122454467 3.752946856750896 +4.147632600633116 3.5324607035434674 2.6439361479733154 2.8225644935354386 0.6405814146594786 +4.7355904732541685 3.7286113123263513 1.7453397740324452 3.719291332699715 2.2159629479095164 +2.911354554505502 3.574096038885698 2.53676172100957 4.846737997258417 2.4031680490450427 +1.7768656459170589 3.9590268551744896 2.1742939551916236 4.016940320320726 2.856076534358165 +1.9864872497890826 2.1690000311778923 1.0053831015254984 2.408530969257326 1.4149681459632415 +1.9016750594064624 1.489921140894003 3.000949629850157 4.262662695297331 1.3272004931171746 +3.277494613909646 2.0756364150405817 2.707472874558818 2.5040500953958764 1.218951991372575 +4.849567886242264 4.479894460398528 3.0772862562709893 4.225441229528459 1.2061999354961457 +1.5354589456805345 2.4106658088209327 1.0316615129300768 1.8438250465046297 1.1939835252449507 +4.362637051836899 2.9599849747494558 2.0331183615923307 3.7173569842170093 2.1918240320104148 +1.109006117231393 1.875792310265623 2.8232439522031307 3.470131009778687 1.0032068236842733 +1.334427949936027 4.803496103915277 4.174869980331758 3.1889813271090692 3.6064401136725186 +3.0423959319556935 3.421433052938743 3.7691950509468555 2.141649172592581 1.671099854955145 +4.447410964978488 4.809876728378239 3.416726296060582 4.197793726467043 0.8610736092104528 +4.818459182110752 1.9451367889374014 2.5921224256301048 3.410683165862186 2.987645102846174 +3.9684349941177235 1.1533955899651192 4.013580145544454 1.3270687559827952 3.891245339627966 +4.3042257396237815 3.0388741169501396 3.0338078578393985 2.1072450894439143 1.5683218077867571 +4.938172043556058 1.029282147014667 1.9501495774323971 4.628844456620078 4.738652390613778 +3.385122734283856 4.200791135845604 2.137617221197382 3.029909736196307 1.208925503755051 +1.1863035078741602 4.289040492021957 2.596808380264889 4.210557735353828 3.4973080753414525 +3.862693787791094 3.504707294090607 1.664458058083294 4.884416532539486 3.239797355837895 +2.4759681463247594 2.844382607832823 1.110404558759634 2.1828926727509286 1.1340017504840458 +1.6632348053154522 3.5860944540248427 1.4498750437794232 4.823312635451414 3.882971853302638 +2.95658133446237 4.521876117824004 1.79743165945594 2.1351255555707978 1.6013072554298802 +1.2829217052448691 3.3499274464846533 2.6452929591369454 3.1546376165783205 2.128836469619567 +1.690861416952294 3.005665822376937 1.0118426415627009 4.327531597314188 3.5668619087114144 +4.165939647117422 3.927978574957846 1.7814340221949219 1.3592130618891325 0.4846607176003412 +4.378603516689056 3.108021815882557 3.590103158948267 2.337050171465046 1.7845222463911627 +3.9677701760524364 4.3274723506369215 3.9261343249229035 1.16894090883949 2.7805577117000344 +1.261888380388493 4.0738487422212835 3.1893046284471773 3.709430680309708 2.8596594528623336 +4.852913410657159 3.727321520821945 3.5010566231304607 4.054650473749799 1.2543616918203278 +4.886537250533451 2.6076505866842217 2.0356557508714097 3.4434085538174513 2.6786362912632065 +1.701453312375513 3.6310627418975905 2.708095481540524 1.2339915284516776 2.428245254296337 +4.91454947133764 1.5969082441651952 2.027861145011351 1.1738274536879523 3.4258016373032687 +4.547692086396987 2.403700537306493 1.0590881209741525 3.3471536332270873 3.135593014237138 +1.258803829443404 4.4921487508466225 3.6746862262690496 4.657508500449726 3.3794169620497647 +4.835087357932429 2.047902655912308 2.494299639429225 2.2041936908762403 2.802241963956863 +3.929901488508709 1.4507300186715528 3.44158356644157 4.257779316324354 2.6100702440703096 +3.08096251736668 1.3008144623553552 2.2076023876025737 2.5820761152311063 1.8191090320386547 +1.4240783946682227 4.641536994778569 3.7662396012865247 1.6399085475842483 3.856594818406863 +4.378594903982425 2.3303402190811906 2.644205104371052 2.962605828307918 2.072854619895803 +1.4145860797929655 3.1852817741893413 3.5224371414666784 1.2164614289623241 2.907384946788751 +3.6155056852382765 1.7536805561295519 2.7409666601308884 4.926123494785065 2.8707670061181525 +2.203682455654255 2.9100005018883266 3.404586396531454 4.526308677978218 1.3255738603073195 +4.904608680525254 3.6268899706692452 4.050457154622354 4.97848077684964 1.5791747670628338 +3.6642580792646076 1.1578618882163885 1.334950857561478 1.36424313208704 2.5065673547399245 +4.686597942220839 3.9087833543945463 4.202613141875367 1.9468755721708488 2.386073661145404 +4.289074787609855 4.357560423147861 4.040378394876354 2.3849219315029244 1.6568724707713351 +2.1818147582549976 1.1194380873288288 2.249306541400993 1.014645202002757 1.628813314635172 +4.9977130499247675 4.249271564908108 3.6450196092040743 2.2913175971468176 1.5468270084084412 +4.1816232973843315 2.817062167124779 1.2847063568428498 3.637894393026678 2.72020606055018 +3.475001792353872 3.660220917510237 3.604422428662298 1.8019768659246465 1.8119371211375794 +1.8419042768796952 1.1933597736543442 4.209138835304193 1.6660562270156944 2.6244769241209287 +1.9825421445613443 3.4949181336027317 2.1714384608364696 4.358080579425114 2.6586998489891167 +3.595029052157116 1.18891623313083 1.0671132484154024 3.036710384522877 3.1094520058115362 +4.202383536724028 3.4287657182144904 1.0029986241848512 2.725708972156853 1.8884426049327714 +1.5511756519107465 4.641388370380435 1.284794197853253 4.5443597006585055 4.491567867957678 +4.930284967851428 2.684413069030979 3.713432635887538 2.2329384943389625 2.6899448858798243 +1.5725249447344423 2.640900818595067 1.4378823361747144 3.6848972361709382 2.488072138956685 +3.171086372794883 1.2859769304859316 4.842054379821897 4.24269921821784 1.9780961097034162 +3.7253039172426035 2.622320594353492 1.2309890924024138 4.006485078206806 2.986628563746721 +4.12178116000935 1.4847434042819994 4.023879340136526 3.790472186487243 2.6473471673556914 +2.160851196861107 3.332483402405708 4.156366099272606 3.7755263405985 1.2319744099843382 +2.5305804799518836 3.772257545293073 2.6433823397178697 2.5608173344175413 1.244419107332635 +4.712809324583995 1.8145525166144019 4.318009422523548 2.5975417290664335 3.3704453131851495 +3.3005414164447315 4.215153696103051 1.1797822105052655 3.8780443693244417 2.849058493575958 +3.88657230996902 4.389521032847815 3.8014401760532133 1.7557395768973083 2.1066201269408396 +4.587106264436167 4.586452269441633 3.9148247257697673 3.761331906188913 0.15349421283010495 +1.286902589031075 2.216603100229129 4.229384691627535 3.3662868474695125 1.2685743687747084 +2.6322326548792083 1.7438574007866539 2.4221570556744045 2.1171437860708306 0.9392782797011081 +2.2337092284000652 2.0335625294116975 3.776360818608125 3.0593914163655938 0.744381504920664 +2.8213356198782287 3.1024222645937662 3.674760579824618 3.174071303510617 0.5741946126996289 +4.897714463398378 1.13060988095329 3.5029723286374668 3.128418178082963 3.78567929793008 +2.606045987388735 1.2776386630517185 2.845214750104483 3.4320237242475553 1.4522433651034792 +3.277283076359604 4.921724161105277 2.97110549595737 1.780829246623564 2.030010845027109 +2.0105103004451848 1.3168399811047071 4.871438256595563 3.8323105992052215 1.2493857692031949 +2.313390743521577 2.258974902198431 4.591887702619557 2.876079375332841 1.7166709934560391 +2.7222098748561927 1.6102884439286056 3.671277381968534 2.3266960572811066 1.7447831404659577 +4.716679911266674 1.321981220528253 1.922768773732817 4.502043549513235 4.263406803235914 +4.022987563104243 4.493463100492278 1.0964050014322755 4.28514107617851 3.2232568910449233 +3.908781465596616 1.610259182254556 1.8290424042185207 2.3509546121096734 2.3570314040686466 +4.821496997014607 1.8918916125733842 1.4970975046850987 3.8905274439414117 3.7830007378634596 +2.8851668428783954 4.744522950763518 1.6068869991054426 4.97144907982829 3.844149207687934 +1.962969903872437 2.9808016710726597 1.6225484041751619 1.2484833590509545 1.0843920713034116 +2.202255271072619 3.547348604496615 4.3333050084532285 2.3927448142494465 2.361154366607549 +3.91536784476288 2.7323046715584067 4.624167107101609 3.6227616274640435 1.549984324579052 +4.221024787879381 4.615586435709499 4.60649251406339 1.1195271670718938 3.5092173237144983 +1.207736659319452 2.609312261576891 4.557970649815967 2.0382794067029577 2.883272121993289 +3.536951942281117 1.261513858504474 1.4635152896312738 1.7792773237918027 2.2972427245109115 +2.610040014385645 4.6205649717040025 2.2298147387158886 2.0028817938674734 2.023291665938838 +1.942306434325471 1.4447468042538705 3.16504289906692 3.41740804196163 0.5579012016703813 +1.2082918290426194 3.4421001365975386 3.628862792353254 2.8992271521416835 2.349950578707629 +4.368984881002901 3.519356932549035 4.9740122914721265 3.7240819543935144 1.5113548552022382 +4.442619392527886 1.944822288366475 1.642371884326011 2.1046331613395726 2.540211774987145 +1.260452427075475 3.715378596369094 3.425525813389699 1.3203974547129147 3.2339183513483847 +4.940035536956216 1.528922151673756 3.7253397168811113 2.310802530936316 3.692778084000417 +4.788470943212991 4.900911140765128 2.5536001402767394 2.046334980245692 0.5195774635286714 +4.257882126112806 3.0654326349191297 2.172366286897819 1.608830532591734 1.3189042176857977 +4.149729851783068 4.558940096129724 3.87394482360233 2.993353569788847 0.9710272809612779 +2.9764972922851007 4.742166304635395 1.8745026065527215 2.3440717960372646 1.8270419494054413 +1.8556740006241554 1.0966341116725524 4.791489259887921 3.9421926857535166 1.1390549696375931 +4.601731968514468 2.6524035904948 3.8103795909435525 3.6222905029323273 1.9583816355301342 +1.5074385544112134 3.567224673902949 2.871053502856839 4.1633014908193875 2.4315887235394222 +4.72206242574778 1.7355048517769278 2.4571705547071505 1.7892188401946552 3.060340771149979 +1.9847058570095655 4.226386851133906 2.5626117083085207 2.2125795370731014 2.2688446840447396 +1.5959898433360875 3.1570324796960123 3.683377694048213 3.005796638935267 1.701755034892366 +3.0033348334623295 2.6953004307320545 4.477110684204938 4.9276657481084465 0.5457884744793464 +3.7155758264272016 1.8205271705316388 1.3403206510855963 2.943685725768705 2.482335386470803 +2.7145947802289316 3.1388816077160646 2.6124470372168824 3.663901449941791 1.1338323041869016 +4.646441195220314 1.5736595050338655 3.3385823733391415 3.1153328863711516 3.0808809858507287 +2.07461584281502 3.2463255560065902 3.9024919445579034 3.625387756107533 1.204030889655332 +3.114547889471138 2.0657672587459923 2.5081924891088883 1.262051262659433 1.6287445372559772 +1.1882731404445508 3.616264454764318 4.218044953848375 3.8505258990574425 2.4556490136105875 +3.098160769513215 1.2498587858158885 2.653756328782664 2.333826221154439 1.8757866341102019 +4.080574783117721 4.0707887050134195 1.0187989142325748 2.059067478774614 1.040314593620131 +1.0165470208342606 4.937286325393563 3.8863788121901295 4.27627136773234 3.9400777783164886 +4.446832944445502 4.644934168040192 3.558080786485268 3.960229332586023 0.44829404180812454 +2.2669641468681454 3.170749237595735 3.7955898153873817 1.736626806843247 2.2485898160346167 +1.5285399859205335 4.862573227128554 3.4266007579971967 3.9920484879994516 3.3816429126749568 +1.5600901230659616 4.55277748948353 2.6360248004215463 1.3862867041672846 3.2431501633973947 +3.4527434195834963 3.7495615919902234 1.6428241822676242 1.5211677708062759 0.32078234041250225 +2.6972679931981784 1.7428334205720297 4.294135060207504 1.4969350180498617 2.9555495985130706 +2.944957285566177 2.420573056569847 3.178872632585539 4.850677456248713 1.7521159174105831 +1.0097394196364062 4.860343328323866 4.428263226307448 3.123902684646337 4.065526642913758 +4.540442029354951 2.193551140301206 3.4691441466615913 2.782782853661011 2.4451970615173138 +3.286151109407974 4.2662583609136195 4.000122690979323 3.4719956379894885 1.1133411016187618 +1.6240336849625465 4.901751750130205 3.728788449331103 4.910152668849599 3.484114971393017 +1.6016939789456281 2.3185698942285446 3.786202050739496 2.124429910683881 1.8098059905353772 +2.8873524228837377 2.2254411191210326 4.658471207018754 3.413316855232072 1.410154577988582 +1.7479340732740027 3.376800807523247 2.4218968680141524 4.71070384738964 2.809242642916724 +3.9200895855620153 4.840319486517416 2.3140670767207645 2.777144955370299 1.0301767772120178 +1.659649624474059 3.3464092839458903 2.3251671288297233 1.2798794433619256 1.984385167806934 +3.0342937884481707 2.1859948364862727 2.9088102402526026 2.8906244918362045 0.8484938617014969 +1.1196368103057828 2.7722673214706726 4.937859443878786 3.101450111363459 2.4705438354707474 +1.4942631017141816 3.3635163788666995 2.4378891069842052 2.1733389880492604 1.8878809760082655 +2.2588939963293218 3.977300528302205 3.6830269206765998 1.0242305073329545 3.1657731088528918 +1.7076454624597903 3.849443375455737 1.0033472070011564 1.9146593829116774 2.3276142683177903 +2.5892464479246615 3.2462172042679134 1.1893249541156248 2.129809537405795 1.147223529263896 +4.753202930785182 3.6285188905111685 1.4446546724272635 4.355324034059306 3.1204022694502966 +1.071802083210787 4.584280095671045 3.9261094488750183 3.424815038309539 3.548069598257756 +1.1446067364925625 2.003644421231863 3.5834792525245964 3.9614442368593776 0.9385112003516258 +3.4674557346661663 2.568305557300602 4.219610447945544 1.3458120559424476 3.0111772181882803 +1.5166725394031904 1.6925400558917438 2.60922426148059 1.3521070522315175 1.2693593112850385 +4.01396291831654 3.581360729421361 1.3613268587757816 2.5091182564170724 1.2266090438017518 +2.799945323883042 1.7913272002106893 3.0734480074233157 2.5683922903458245 1.1280034560022394 +3.2840958340138746 1.96363155169341 1.9680155679001503 4.016614176900896 2.4372899256518274 +2.4760236309395403 1.6090629308244089 1.7373363091944038 2.8787478077720183 1.4333321543275706 +1.3619015242161594 2.3776145276672547 3.021037858199368 3.876923042385007 1.328236557954994 +4.580201746198792 1.0306573794942722 4.3975578353304705 4.288681840261015 3.5512137634203547 +4.064928409836033 3.4326449228770093 1.8681689491551374 1.0905516102303139 1.0022330735300973 +1.7075767526031251 1.46946162229171 1.3554861701788323 2.5397351748049597 1.2079505454451336 +3.75619783696001 4.352868352375116 1.851151501464341 2.882713669158356 1.1916946797662997 +2.9706120494709505 2.954481396472084 4.23406158903361 1.1101196963435087 3.123983538188123 +1.4869103945818756 1.985046840343808 1.1984574938506225 1.3693517633633032 0.5266353291876679 +2.6839708567715093 3.9292173637299546 1.8727757357510226 3.4582112818331536 2.015997205819729 +1.8878686824379471 4.598439482262301 3.697961057870994 2.5488137053779214 2.9441015095614955 +1.9845109059131385 3.341227575747223 2.944926170615494 1.6636646501289056 1.8660951760522004 +2.5404183475650863 1.053628603066521 1.3313679816391004 1.506818176644913 1.4971060467694621 +3.986296607388597 2.1096231879868106 2.654627907694696 4.37384033186951 2.545111880158952 +4.862867409112207 1.2114310535070048 3.140863033604335 1.7137325163969588 3.9204194893123354 +4.680636505931394 1.124941386221923 3.207262862385399 1.421558863228352 3.9789077090240763 +1.7905659887357364 4.710281930590488 2.7840517300708734 2.477888398588056 2.9357243001796745 +4.205417643346028 2.7674695353148278 4.3443138494393 1.5330909535531108 3.1576366053973404 +4.95032279588319 1.2670932862843873 3.689503237123948 1.0701276086645524 4.519657985218184 +4.747495053802963 3.8839025343615186 1.8055286404093764 4.28019648484805 2.621025177279679 +2.170505574105371 3.636095737608122 3.0252066780498086 2.9092973720175066 1.4701664853277367 +4.361846206598498 4.699965952245336 4.00170384827568 4.342042554590136 0.47974513797648793 +4.298354869692815 4.271258344992894 1.8607950959062425 1.8940038211766952 0.04286071727003454 +4.490569258743705 3.296792075740564 1.5591494383352007 3.4725350703059905 2.25524910803467 +3.093220296382575 3.6561679349126095 3.5935559407737516 1.346396422730555 2.3166000827200786 +1.414936916556313 2.8347054742907507 3.547181193182912 2.360392856016694 1.8504619192961205 +3.329221706591524 2.013461773378714 4.159301543509807 4.580378771567878 1.3814956510381229 +3.574157885720908 3.8266571318602605 3.328752517420343 3.1945674805985607 0.2859396674261973 +3.635101332031122 4.038940700922449 1.6010382960717373 1.29636844605877 0.5058754326644748 +1.453063582915226 2.0435109659503987 1.64284936127883 3.2011215354319242 1.6663853938608846 +1.3408717321388046 3.765735335108977 4.439883726383009 3.3983811594659996 2.6390701184137195 +1.0701268469452438 1.0527251299306504 4.735146703911218 4.7598000986519775 0.030176309040366743 +2.087949086665836 4.2484623283295235 2.799923314658195 2.9483111519982232 2.165603014791628 +4.322261716980826 2.2530865977510945 2.714675752516252 3.686932715244782 2.286212867519881 +1.7851175906180434 3.380369249472948 1.2078785867305228 3.9682019524902183 3.18813627980961 +1.2043886835544346 2.969098842316198 4.539464339950196 2.048476319941151 3.0527402870643203 +3.154067796004073 3.2038568517496273 1.8216144963755316 4.747351655068571 2.926160773407581 +3.1190422981977197 1.0041388049085076 1.036880806613095 2.4547884966413824 2.5462283879040126 +4.484275188371464 4.387660771825557 4.031979140623033 2.884475292369973 1.1515639049744866 +2.7116435259264495 2.7663155390126164 1.5641980925474672 2.1386171158473593 0.5770149420454344 +2.839397491323159 1.658763485581098 3.8663371287613453 1.6592082836056443 2.5030610049762836 +2.8672775754034228 3.306200060536347 4.273244226617072 2.892671103595774 1.4486666614387318 +2.6550474380182636 3.45115236009026 1.0188629999297856 3.021887279254573 2.155432511240341 +3.130512395722422 2.722499229605309 2.42175943615729 2.6331964483069044 0.4595436364826162 +1.0117493246926248 3.359484801100991 2.471873392058167 4.928600494421911 3.398142128086313 +2.484073687168975 1.0509459322576533 3.1160535093823274 4.904267015175938 2.291628832119163 +3.991700308166256 4.239580311212614 1.2204305505580488 3.291704330259858 2.0860535866536316 +1.2169072636888658 2.2345730333296676 2.486091065623895 4.612770111441181 2.357627490214883 +2.9779661242763615 2.8508293346060434 4.534680939638427 1.8932665697288575 2.644472279463796 +1.9006769177039442 4.322059639904786 3.0405394427526886 3.604686903351705 2.4862334252183724 +3.0994935158554187 2.7849206336300054 1.34113262755023 3.3119502232781675 1.9957650397435194 +2.269587921185668 4.901871858415744 2.1018712740897216 1.9469303064226469 2.636840046279083 +2.6984040428825877 3.6328085113153064 1.9433923344230548 3.4993435802953425 1.8149644597508117 +3.7188264366699815 1.690517711837721 4.4041271114360265 1.3726374644860644 3.6474601797408943 +1.0369257733921629 2.7290375111319576 4.167483437149473 1.3294951311616332 3.304151896920073 +1.9533696255887887 1.9122247367152037 4.808565442608458 1.3204500510232555 3.488358050271504 +2.2329393347318844 4.6474757479043936 4.869211366369474 4.907131120372009 2.414834155439992 +4.505805085911939 2.5492505221485815 1.1656753733764948 1.4173679691073553 1.9726770956568036 +1.1500196581201152 1.4410387664897022 1.3188828588805732 2.1391538665681105 0.8703658124541411 +2.7250722073871567 2.9210129607200432 4.080177087012827 1.0778345839764447 3.008729513325422 +3.8533962319826345 3.309528077881141 2.5039624466883357 2.005991030950911 0.7374063329924018 +1.0980981059377761 1.2438591464103497 3.3142552056938346 2.692412808853407 0.6386973050106718 +4.483986400601448 1.8559003978178463 4.645355100771252 3.9992707633363827 2.706337194273053 +1.016149300869253 1.2387856654111653 4.495863436758114 4.461413301202387 0.2252859575212073 +3.768449444933546 3.9225691192222873 3.0252972484888314 2.3965975631698675 0.6473145821955751 +2.660847664856179 4.716323652391638 4.481753590556513 3.4718637427840635 2.290165723254265 +4.96589503773316 1.5407243137750442 4.7808790090806665 2.4674843630930914 4.133229884284655 +3.248294052966693 2.0582752728334652 1.4087418403463903 1.7426956438796597 1.2359894174159067 +4.276443127732661 1.3577043797365826 1.557592995442937 2.421551864423406 3.0439219448507098 +1.0194969787038608 2.880606028229599 1.7368886840203035 2.194579850813062 1.9165615300288985 +2.4841247189519056 3.4995021944128752 3.195340800301443 3.1021480193924704 1.0196451893119685 +3.4550809306868007 1.1793416146339766 4.177715007272198 3.771154720945774 2.311770036367458 +4.521077272648374 1.772191000550714 3.6594166406153974 4.350778768287572 2.8344941927099385 +1.387076877577484 2.596309753482275 1.2083164921943963 4.099679800815737 3.13404306457501 +3.1401528020986835 1.9413324748196423 3.917922253532604 4.523560441283141 1.3431186811146596 +2.147452831425644 3.1984457437060976 4.779750473787141 3.4722894415410352 1.6775101944565947 +3.5936352626507793 3.4793901620072862 3.111137399199809 1.3504031206224512 1.764436777778782 +1.7939812854318804 1.4485202217571596 4.6927473531235915 1.5806097024662593 3.1312528009016147 +4.153754044789935 4.923447632841524 2.3069347430486427 4.49606388047642 2.3204987825515047 +3.502774498942712 2.4752273493153614 1.8125490520054752 3.305968644749261 1.81277555828026 +4.248990381433185 2.5510795779958038 3.834993056115369 2.1763717600490557 2.3735892020722686 +3.4312075957489503 1.7281987268505623 4.514114655404697 3.209091699957973 2.1455358588915425 +2.98342779191931 3.3171645768025324 4.997952957155276 4.7381506879813005 0.42293907439740885 +3.0671300272447826 4.617581776842126 3.1051623101393226 1.83505061831368 2.0042665335582637 +3.5046657577134344 4.563377664698622 3.148666542093434 4.441236525672977 1.670810601008694 +1.1399058218977811 2.1210978815668473 1.5698356370013427 3.3091004504851895 1.996942650498663 +4.208667434414934 4.89194753056168 2.5297440349757987 1.874599532940377 0.9466181956509955 +2.773346737348559 2.6434086232012852 4.532731648293587 4.787486325704553 0.28597877398666355 +2.231356734345668 1.5341761052798746 3.3055415704575672 3.0147640836847343 0.7553888908095622 +4.708439499955356 1.1969103175834896 3.5015550976404044 2.2989123340586723 3.711763302723482 +1.671446538526412 2.0344174078606274 3.915449611113455 4.484099027709098 0.6746184187967305 +4.888647453128005 2.1239772927476377 1.891383906758123 4.797871994985606 4.011368108601585 +4.150541225387457 3.2264289544939855 3.4452845930122105 2.825343166409492 1.112794168583796 +1.4198427881961848 4.172218235482042 1.9482990781703258 4.959416234478877 4.079509422937728 +1.2857673377738115 4.586742706634643 3.004162686472844 2.6948358554617093 3.3154368451546916 +1.8787271750290104 1.645217416838734 2.1297738785563776 4.003605531060798 1.8883251491990276 +1.7074276560291501 4.859532786516144 2.646700621647431 4.784949714324605 3.808920573597878 +2.4997404333648294 3.1470211245296653 4.1999759647133335 3.355251006754029 1.0642051248486715 +2.9997452961294866 1.195320394312573 2.3043628457885785 1.7007578393171787 1.9027055027340192 +4.638579269764628 1.1060211981758497 4.4236894041791945 2.2285184334681554 4.1590554360094165 +3.464212448059352 3.773665767354297 4.900949301003376 3.9649811791292273 0.9857979924849105 +4.563284043547092 2.0100429907607773 1.094627645360109 3.4533490306402403 3.4760043796018425 +1.8752534498160616 3.499942868609072 2.658519200523091 3.9790940556197882 2.0936890063836207 +4.721510115526419 1.2563941268148722 2.1095859700100257 1.1262935983306712 3.6019290253178515 +3.4058199255016506 2.258648159347564 2.22971999045981 2.133737905204988 1.1511800996155859 +2.6272128724757895 4.543725428777032 3.1856481787566753 2.846360250585497 1.946313612104435 +2.953213650985872 1.8806548937777765 2.3180893805061076 4.2498695802054876 2.209560369760091 +2.782954561933341 4.289927432034148 3.2421922411410504 3.2363577405444786 1.5069841646869002 +1.1991985502958014 2.2759730315953535 4.218012266975141 2.862180195151985 1.7313936266956143 +1.0699802918098928 4.349328004016309 3.2212693496067524 4.2751010461877215 3.4445148660257194 +4.227144414003719 4.420138035232027 4.849643621843374 2.4062638865818005 2.450989814038755 +2.5097666829430607 1.2822584105947539 2.933613631145069 1.002292850516055 2.288400427454292 +2.23224432746564 3.3337901321834815 3.1648860677046446 4.465883917489535 1.7046989661040992 +3.538724242773696 4.603289067211951 1.6689259913809469 1.3796577795184537 1.1031656103348113 +3.0026432044237663 2.827918891171371 2.986240839383186 3.1283609658366642 0.2252259220975104 +3.588358390793732 4.505923910037508 3.267408082358526 1.3949941917881183 2.085152334892132 +2.214263877927176 2.096008658326316 2.466244417586046 2.710850851861108 0.2716921137088966 +1.6666325129245427 3.5687973832904256 3.4251824116745953 2.538735596061273 2.098575505185614 +3.646334281849831 4.643235197032499 2.2110464573236466 1.5958373762619797 1.171449379236159 +3.0010357395864946 2.1032485881382694 3.2847274533009205 4.732692123423114 1.7037087354438227 +2.8534862134468524 4.750420976273319 2.9030735683279376 3.4605622163972187 1.9771583363872551 +3.950647554672994 4.136070197705822 1.1552633887345056 2.827359638384375 1.6823458100647553 +2.0068614958362314 3.393607518559559 3.9285661060547983 3.7540122187537195 1.3976886602927299 +3.4885463523537332 4.633393041976727 3.8777559716005916 3.2402420807116252 1.310380823965734 +4.927834563771545 1.296778268771844 4.9804166355418875 2.8667864869702044 4.20142859303929 +3.1789146291689985 4.579864041076728 1.4915992983598447 3.266813206223784 2.2614251421168405 +4.1756862226749 2.794473235704311 1.4822452951874299 4.672733068715283 3.476630775392598 +4.729039987138033 4.209043388117989 3.1654165318916743 3.3435105048349625 0.5496489117528909 +3.606351319442187 1.2958264526924657 1.4808044092342576 4.06613945779033 3.4673451621033125 +4.380045886027963 4.331184923279231 3.7495474966565254 3.8177564615850503 0.08390385317346095 +4.936884508740703 4.091931977466281 2.5707940599295886 4.065672622627677 1.7171507497367127 +4.210763798300437 2.3828837445627813 1.7961492616305574 3.132301865565355 2.264166352513374 +3.484731866661641 1.482501985487168 3.8159687588900018 4.536420244135452 2.127903860530433 +3.524840956995534 1.6968512928117483 2.3728459379306095 3.614071341797935 2.2095670878179634 +1.7743326411031553 4.290775402092471 1.7892141314541665 2.8569062592426415 2.7335783597835666 +1.6746030763490407 4.922168275826139 1.9850798387253201 1.5161743588972372 3.2812424588663864 +3.30268363302573 3.616359114040053 4.521522805708767 1.7427796977851675 2.7963915260961714 +1.0717010319456612 3.3997531503329386 1.5224271680382615 2.299140751461731 2.4542026519018383 +3.326066456867262 2.5828422703193925 1.4768277906112441 4.737968267342321 3.3447599914558204 +4.7664456168741935 4.551618720723143 3.8607529744423466 2.4063465619562088 1.4701865895153212 +2.931335472350944 4.316411769892131 3.4184913729210917 2.5493921749932626 1.635166586574346 +3.3629967439873565 1.1694713027562167 1.284311076173211 3.504742541196762 3.1211968461144672 +2.4693103064750184 4.387004283176708 3.1034386017841364 4.638611680099553 2.4564825602194635 +4.69677039814872 4.310882072594756 1.764912849761782 4.945131688134223 3.2035451705474363 +2.5339217795815134 4.553059587222001 1.0502677435470322 3.1060967968389397 2.8815535016033165 +2.0743529236444864 2.3832145117897947 2.257902203785396 2.3329844269572377 0.31785660425428985 +1.2121433203083 2.3898396758880023 4.007474576647136 1.694056858940821 2.595933404874479 +2.8608815031289425 4.5055527543983445 4.378505387352365 1.506140382333685 3.3098979209045134 +1.1575758772876346 3.1486944865288726 3.9605501077964878 1.6301988998574575 3.0651411172097216 +4.161765980784688 1.4412636053294694 2.1846187426679187 3.880291927458426 3.2056888065554756 +2.4166589827384315 4.6178318083443735 1.7682085135644798 2.4908082435844863 2.31674603226401 +4.530286796709094 4.507048732721504 1.8520554493970298 1.6168264541952846 0.23637404214827393 +1.3269272735931708 4.1353638651208104 4.896038995641488 1.6613947029689182 4.2837179866035315 +4.250673794027943 4.958261594044993 1.9200367977175579 1.4979531886920436 0.8239144784144603 +2.3113066795140704 1.2465997620800122 1.3254893519479785 4.611844078478059 3.454522862656801 +1.5020107999559507 3.2480720605650877 2.0731500264657554 2.806841435037771 1.8939464112831592 +4.349872661171911 4.530330122993867 4.21304007414469 2.0501313104684282 2.17042374100423 +1.5013126045962668 1.5891343208143676 2.1273831830321286 3.547474065924719 1.4228038408417898 +4.956834754920628 2.213834649836671 4.736548684387156 3.144157837067733 3.1717121854161463 +4.192840247813988 4.0111298500818044 2.7684257476230463 2.0921574057386603 0.7002553383438396 +1.241761484549838 4.838407781626341 1.241934503712006 3.8864398663456856 4.46422145499889 +1.7275167490384447 2.970534369414148 4.196576463550089 1.3562180970059114 3.100440042149176 +1.7613616085784551 4.483699752112937 1.4035456568920948 4.77650518419334 4.334510461465633 +2.646468072337235 4.312593257800668 1.302602540933202 3.383779956135455 2.665946842527714 +3.2797239758812626 3.021822996299385 1.3386801781178046 4.363814980108959 3.0361082796052172 +4.185702612105328 4.107875018341681 1.60006604708584 2.2044608097794787 0.6093850699865718 +4.221126937433434 2.263454267693886 4.259196815565056 4.228513542766939 1.9579131096845879 +1.621824573524155 2.702353191669049 2.9921646448328114 1.71883215687348 1.6700053052379251 +1.5009351088259857 1.9405455425467188 2.934923177040625 4.755309816446452 1.8727159022028332 +2.0370561251891406 4.1939325050544 3.3781353079082574 3.6629375663306982 2.175598318721356 +4.928988774575966 4.232542352973358 2.6821244019826995 2.098004172385115 0.9089741804849099 +1.790925027628345 3.3902585261124663 2.3232731826282422 4.61249136165266 2.7925593119125205 +3.2348401111064486 4.644999582043482 1.2480926129048924 4.917026582446593 3.9306012525223717 +3.877530587939596 3.2786672987349967 4.51608640598639 3.7611894794140377 0.9635904777992229 +2.3094776058068884 4.941341089876081 1.6221491754146906 2.5651668812604154 2.7957088175121823 +1.0055068088819619 3.949472611799781 4.531771932737119 2.6899481788943436 3.472642997627175 +3.523430626877622 4.294376787903404 1.302489427148453 1.9523040554494195 1.0082742852787199 +4.140940208667635 1.4386243158648053 3.1780661107643278 4.532516576957681 3.0227549106512335 +2.748285536544068 2.327211746152751 4.998708662081027 4.2162116045284215 0.8885970864418792 +1.1462163383529846 4.048144616750559 4.26474642122357 2.554307386145433 3.3684995807751763 +1.117398376412703 1.1035948929608264 2.676434474447269 2.6161485882407876 0.06184597182603779 +3.842994413205401 2.1833277878657467 3.615216670017542 2.9582278105163184 1.7849727361433383 +2.381616319493873 2.406365731885164 1.0266528844617255 2.2619538569788022 1.2355488764574833 +3.6229549775029857 3.313746700758307 1.1538895279161818 3.944881587523468 2.8080680966098983 +2.5229306830726106 3.694014820496003 3.8249413959692444 1.0801245856566775 2.984201296678752 +3.9591611766267305 3.8737552958373604 1.6792408201581859 4.836996855031054 3.1589107838382247 +2.6184760879833875 4.631224093459325 3.9247439290832613 2.23091209392109 2.6306312587202743 +1.216649307448943 2.0524141397364284 1.6281856119999052 4.895737627355089 3.3727435461268405 +3.9515465362536837 2.4514148021438107 3.9660894413017207 1.9265736069903943 2.5318017414659706 +4.8447069932821725 1.1301692274099748 3.948761169112317 3.0312076101460685 3.8261854826527224 +3.8070084533248787 3.369410665499157 4.30337634750633 3.4919466992028383 0.9219055797943155 +1.9163112155730295 3.1503954960588487 1.5418926384520812 2.3950184517067905 1.5002625318869065 +1.0746250258751426 2.3783124976570424 4.819764472440876 3.3143109693736963 1.9914796694865666 +4.513097840204015 4.288819546604511 2.4979478792273944 3.362835046453714 0.8934934610911669 +1.7462651846947135 4.963866755519976 2.66932211998912 3.0467213577883507 3.239658940886932 +4.056405770967706 2.9354837610022155 2.582587578824811 4.909931379443464 2.583214144956463 +3.6898420165210113 4.15634625088583 4.594322732127276 3.451061184903128 1.2347765652301874 +4.622782088313723 1.8574865509769114 1.7366200527205007 3.043389470780697 3.058513645676977 +4.409361403753373 1.0032077737904053 1.6295492342316864 4.232311727423438 4.28675345067519 +3.360578480891434 2.950336210886788 1.0559518039038602 4.856884585804831 3.823007812263535 +4.359626342992861 3.19248527124152 3.791622366608451 3.454329827923669 1.2149010404231675 +1.617244569812923 2.410483872480076 4.740486046613906 3.466532417498662 1.5007286365068713 +1.4000667511639624 2.8421619855529303 2.3664690234287677 3.834401188308326 2.0577812093940793 +4.534185285628805 2.273232475805866 2.1590195714069336 1.9642394532460568 2.2693274119608673 +4.8640777143603415 1.6696655997670442 1.128646954353938 3.167990701041875 3.7898801663133908 +3.5409006976015456 3.9941625006435686 1.364816196820902 3.4378454756016668 2.1220029813313652 +2.2091753601793065 3.6642613647702 3.638931921106377 3.268949573587779 1.5013867650381305 +1.596521748638081 4.970141005925964 3.066193051755768 1.5475570576593896 3.6996705496177276 +1.1192097493440736 3.453708512917585 3.0626794589333355 1.2254441700354683 2.9707436752264376 +1.6057635867329059 1.5751260493202475 3.976559870930982 4.544361961133196 0.568628061510083 +1.4932335004812574 1.0608408875436859 1.4601970569346148 1.5229552852584503 0.43692329640948097 +1.8298418803607452 1.3206854437889608 2.5030171948039803 4.79986923740784 2.3526091010867063 +2.1124255180584677 3.7913924844966984 3.0742088147419504 1.7537032007134963 2.1360395949212783 +2.0900582347817624 2.285217277105573 1.1219443204684674 1.2993884646896028 0.263767845119753 +4.034434475158705 2.242859373926341 2.0183289993624793 4.090337802317487 2.73915348654996 +2.5100743433351047 1.4272921244102963 4.6765960709948935 2.245660000656749 2.6611778429279753 +1.4801719927248045 1.5094666612224792 4.363461858023355 4.381250368096561 0.03427256472768291 +1.8008320515899867 1.8265964338000331 4.725224140970003 1.8874960242570618 2.8378450746603203 +1.4397781138117343 4.901901375041957 2.1393289610905275 4.300409621145998 4.081245777359798 +2.766822737986803 4.706323449598966 2.382818409147489 4.929130002241504 3.2008382869912477 +4.756021273901347 1.8973506089578214 4.5683652334091285 3.511805935040338 3.047673788576824 +2.5423621022459884 1.9944996006345548 3.398879621076482 3.3046116113512007 0.555913462986375 +3.837702385226958 4.581800858900573 2.4688407484330863 4.691259414650553 2.3436781490800365 +3.7407688854414 1.8119358410099737 1.3733409029513335 4.407957385698162 3.595732764075959 +2.1799676470486937 4.358968778223218 2.009286021984479 3.85997721880661 2.8588640813537793 +1.1261983822412858 3.7521669185792867 3.2547454451728197 1.9782742231539419 2.9197755965963395 +1.602462413892702 3.2490420558813313 2.9564473861804124 4.874255768831734 2.5276893618439513 +1.3950481426041121 4.9324890116134625 2.66160644003031 2.200242925578758 3.5674002010154 +1.2392984555382194 1.5607276171895141 4.462747748000371 3.4465297041265845 1.0658404283261729 +4.078758034205593 3.6888691082138543 4.024863937755626 3.8590650772836446 0.42367751503330786 +4.143389137665623 2.399508268940587 2.8212636969485354 3.0326454808153245 1.7566453093484442 +3.540143406330859 2.2709845750196282 2.6608660054714357 3.8191437934121386 1.7182466566625694 +3.496611697402045 2.9450029104763913 2.461347637371049 2.3159523256431456 0.570448990257714 +3.979048898153124 2.070331577482687 1.0945786977201326 4.262276252617211 3.6983117242234 +4.455202479565825 1.4317851172513052 3.4505170427764456 1.4308318830010958 3.6359566404677697 +2.2062802457266444 3.347930271008796 4.314489500623685 3.3879182491994877 1.470339778484055 +3.450917763424401 4.666384677205301 1.4455436938849884 4.120244928293712 2.937922141896142 +3.902040261225435 2.98616804425543 4.140403813292575 1.750387959800611 2.5594916873786624 +1.4766861581948318 3.6823476077011517 4.274403716145148 4.77542284903862 2.2618493763652 +3.117448348921616 3.2326926194599976 1.2332587470196614 3.523114658662976 2.2927540945290574 +3.9600870263344983 3.1892722224108847 3.8462523460264726 4.9517470659997125 1.3476921153722428 +4.437157612598185 4.3164316773807805 3.060792205803976 4.8845583978831915 1.8277576083291895 +1.5457305484031196 4.385121052434476 4.409432058735754 1.6020555753186247 3.9929313986126744 +4.868512334158638 4.216706055406794 2.176221859390937 1.2972506495212794 1.0942768446787383 +3.3821256934692583 4.960154123643202 4.021043558581498 2.19365877588123 2.414437588856201 +1.2205176717418955 3.094505222800972 3.216115762093223 3.5089849319299193 1.8967344811979434 +2.091829268274973 3.2545699414979 3.7224874014695724 4.905875753826699 1.6590279882091863 +2.3803447788621908 1.1190426133491131 3.998717063606377 4.035163083676384 1.2618286195466175 +4.717834143216379 1.8250948225981851 2.918378512253813 4.190773525954555 3.1602104119727725 +4.879649649894455 4.214724791723125 3.122442531848108 4.186117198365798 1.2544037879429744 +3.263294450998292 4.926877812466195 1.5242823733239286 1.0117063787192402 1.7407595327321441 +4.007762265828074 2.9682463994832795 4.573828154469143 3.1112529104904256 1.7943577070032533 +2.516866828682297 1.5798118402604464 4.742854200769624 2.5333050981482694 2.400037351422079 +3.417247002183321 1.0779090291293039 2.878079138599548 3.0837901567793278 2.3483652133288464 +4.2782069251240245 1.1198007957159972 1.2480506148933088 2.7203414420336594 3.4847050890948883 +3.462271082975669 4.117123900271766 2.1840513837531077 4.4328972519478835 2.342251043594036 +4.375271834015006 4.638264881032285 2.0261788049940455 2.4582329170592225 0.5058024303340793 +3.6102411822040725 2.3144237683524342 4.269481695701586 4.322534876838262 1.2969030071943966 +1.7856220413308872 2.4283187733862484 1.7500415882279832 3.5460129014560104 1.907504140842857 +1.5325196844203193 2.6897186288110237 3.3996988236284733 3.0112560382543654 1.220654412357632 +2.148964778108509 1.7696826168136344 1.1370196345163626 3.039180096355131 1.939605470310699 +2.0012902325580373 2.5034006265945394 3.7492644923706555 2.5287214130352154 1.319787958845333 +2.175398283918019 3.1961698903858062 4.0344091032554426 3.5181316826479576 1.1439043000181202 +3.8893332170478714 4.21755288532869 3.4652637349138136 2.8114985480471577 0.7315306351788448 +2.716946672446575 2.5586720938906784 2.6630541477302505 2.458573556910255 0.2585791063468606 +1.5379364760395497 3.4848764847351235 2.621283944439961 4.416160846366809 2.6480480529118124 +1.8571127324698287 4.563244625118401 2.78950533653541 4.5528548742175605 3.2299460386287566 +3.4021127621265155 4.654242802544652 1.9560277067956537 2.59738395650597 1.406828872734707 +3.4855201914740666 2.706579161653104 3.5872101178205216 1.3623622100087527 2.3572648007453356 +1.402579258588752 3.802226120786055 1.481980845398109 4.655700840559201 3.9787942483796126 +3.815200475571191 3.3258116012630428 3.0500126592144334 4.293406283100653 1.3362369453871206 +4.804239637315838 2.2302836478150723 3.922507287202682 3.1493940670646827 2.6875552993453016 +4.771316175107282 1.4266807132432868 1.6070918459661838 2.0230742800156007 3.3704046875999714 +1.6732319928781152 3.013156994779413 2.556876327842292 3.4522348124789697 1.6115414443107197 +2.6909093222086296 1.0187546996889254 1.6930065069676568 2.6872480644598014 1.9454093030152857 +4.5274969229009905 2.6821913402591013 1.1631749778847853 4.182462295519401 3.5385376357696914 +1.8571753931660893 3.887119260785409 2.172939082766175 4.971442262887992 3.4572087230650688 +1.441923790947421 4.259430870848828 4.412495339642003 4.011772140457195 2.8458610696341906 +4.984050504364271 3.295124310597492 3.4012693176608986 1.2240826629041366 2.7554697272230158 +3.7762541311601723 2.6939141971249176 1.1972523385893563 2.045440947352228 1.375094050907986 +4.237208248736307 4.690125298639227 1.4733000624867119 1.0953783382198359 0.5898802283223374 +4.517261928135366 3.1920509532554027 4.33270143121724 1.3244731497894349 3.287190520965341 +2.0628875650871428 4.1826927938517 2.977936888246661 1.3183220454850901 2.6921916042904654 +4.938762586175617 2.4831931965436764 2.2530379021926974 3.6241356531678846 2.8124242336508547 +2.286053654773202 1.5010732855314375 4.043675403070477 1.3485106915434284 2.8071528284643885 +1.2288099953903027 3.9623302506620877 3.99199195572953 4.3776777041710275 2.760595313067818 +4.056956028807045 4.135173420358091 2.6974594889696224 2.026991968119571 0.6750145604769306 +2.8600271120369474 2.553771795319039 2.86724231412219 2.354860373772238 0.5969317982942175 +3.313592903018436 2.138052491872365 2.6597096823574686 4.497802946260698 2.1818529063719905 +4.086011324727236 3.7945588052451757 2.395389535482218 3.7038341212140264 1.3405117698264812 +2.8184641712320233 4.590074806297848 3.1214860221796306 1.5276201620817726 2.38306790131205 +3.1290502270395484 4.275435327523663 4.833097435041529 4.576739249686046 1.1746992456840732 +1.264040488428341 2.0114447791098424 1.1844310779257214 3.7642022745863373 2.6858578891759826 +2.7838552214646137 4.82768243271644 4.9062024422511215 4.45122183952123 2.0938569717900677 +4.811907090588287 2.16391709242987 2.3966054436370468 4.417725920280782 3.3311828246818895 +4.937863448228548 4.340409128971862 2.409698580739151 4.425137671848958 2.1021290144926867 +2.9434367742153125 1.4212619170559515 3.5909651462619867 3.786047310077094 1.5346248226869346 +1.5958095405357153 4.11210107522056 1.5010322457682186 4.149906426172709 3.653526722379374 +4.315177921479112 4.903252971514508 3.165292871612338 2.3690953186802215 0.9898296862436607 +1.8899016993686781 4.631825101535444 3.4192910861025227 4.891931922051706 3.1123648524963907 +4.403863540271391 3.9409352612421915 3.431374825267681 3.0008150237690603 0.6322059270455058 +2.463699947762907 1.738733181351015 2.578597086655872 1.0960144153422053 1.6503418402504624 +3.248249295770063 2.1478255803121495 4.683172510160003 2.17088307237554 2.7427232038150646 +4.899064095256449 3.197792833712601 1.6654534383069741 1.9945472680889882 1.7328088914117419 +3.4669367842065495 1.8443678704845219 4.794772950987099 3.226015207019414 2.2569294935898334 +2.3519527915284533 1.9518218191703456 3.0175307581410618 4.7953954662043845 1.8223357855283775 +4.8120487821693185 2.944098622380222 1.0283731773423268 4.67767964037707 4.09959454831856 +2.4894751110456697 2.84904220823581 3.523437735980402 4.765550428800008 1.2931096005541514 +3.7160549797362554 4.290586309734618 3.9992241870303675 4.26649954475545 0.6336579250642715 +2.270028593055113 2.1899409130432463 4.130215738891886 2.88841127277908 1.2443843331332145 +2.3874375576378775 1.2344381781270668 2.6435614087606902 1.7158454498317153 1.4798866407951057 +3.696390626973119 4.933495187970321 2.5186255758088496 2.300102793143108 1.256256304017639 +3.5417226497292464 1.510268917592842 2.03213170092008 4.394846604007907 3.1159630901350943 +1.828781005364025 2.497611896623866 3.410397284947494 4.619576386007822 1.381828086103512 +3.9386178072179825 4.720754582659874 1.9789232048960246 3.4551722934571587 1.670643381148777 +3.4912728795763597 3.8042589358260677 3.7696839123743136 4.295940699784042 0.6122960702973306 +1.380003151851633 3.693840793777435 4.130888050153606 1.164860485851849 3.761803310300868 +1.7740615906875563 1.7851297033642215 4.953268941517797 3.8628960896671214 1.090429025279132 +4.961814297279043 4.553805783322135 3.1135481858775487 4.02186313971896 0.9957444465490375 +1.164830505893165 4.062109308122249 4.580319578482616 2.7556987614066775 3.4239546702538077 +3.874911580390749 1.0407704625758294 2.247150400993143 2.3353625645001213 2.835513579844008 +2.8897415775527 1.5672188236461704 4.598485797375001 1.8458999254512833 3.053816532949313 +1.4757176478371927 1.2790662299102866 1.4708081391659036 4.858676747043788 3.3935711992556006 +2.154767026573675 3.1337015953225746 2.8183908818373653 1.7032562675597878 1.4838591907090093 +4.1228418951816135 1.9817010708213192 2.5156085980148393 3.8326859584473145 2.5137972875922308 +2.8582986659638716 2.4216990962038643 4.226148744930822 4.343009635963201 0.4519686406903746 +1.4150328015423237 2.4053927728806173 1.5466700136394809 3.3658462000455622 2.071283387182005 +3.833083056281941 2.301744190466775 1.1637596744662475 4.174115227314384 3.3774604774178614 +1.8309295886517898 4.734156636926393 4.042282710763853 1.0215725537547735 4.189679838184666 +4.509097731086303 4.385039379270921 1.490888438824633 1.1355169080517578 0.37640324060640834 +3.2058364205232768 2.192405523262693 1.3224821390498045 4.544228022405457 3.3773789719901863 +3.994978905598268 1.552893171258794 4.159516033340115 1.2251513027701453 3.817627418420679 +1.8468803589698055 2.5308535646688024 4.588313806327758 3.983931017294491 0.9127419689012841 +2.3991505244743543 4.442923998081493 3.110392707662761 4.226275826909211 2.328562893125152 +2.502190087121526 3.028458254121398 2.5255048892248078 4.408439809884296 1.9550964423875254 +4.58481367300837 2.6136611503334812 3.243428694440176 3.767860510055849 2.0397232647782224 +1.2380000826645565 3.473668112285577 3.469134789756273 2.8156327192275463 2.3292222939974767 +1.7341252337039892 1.1913482025410547 4.123894297375739 1.7694866916475513 2.4161626765325193 +3.0414225413099176 1.8176982293000337 1.5193790820706692 1.8302227573676828 1.2625866236723005 +3.12798008306865 4.080205469855102 4.965531110722081 1.0797451177926058 4.000758174407385 +4.285268886218679 2.8136486110753647 4.50143041030184 4.367057841252937 1.4777422716853188 +2.7677589915373453 1.0763724241373538 4.776073362573388 4.910163743725734 1.6966934757635828 +4.60850730550743 4.244886534541289 2.937820790296219 2.450284501330034 0.6082036650143855 +2.936360626539742 1.4923391604199718 4.438599458948435 3.1156341801817393 1.9584266959569692 +4.704096526991801 4.423606075628612 3.8043830720199034 2.298712387882228 1.5315740603632397 +1.5474681178236795 2.022031374643996 4.019822574761998 2.207936701544815 1.8730031239397062 +4.724129138142086 3.1647916702315873 4.467447996209417 1.3801250430656529 3.4587709313913604 +4.399777318584546 3.6937230355321953 2.384311390777222 1.2794096154026904 1.3112286542942693 +3.859315531376398 4.751036002629457 3.9599839398439323 1.7434717068740464 2.3891613335555486 +3.2313068254278794 3.5167584909754366 1.1071856323218645 3.822280571794406 2.7300591905146083 +4.161470963509673 1.528519863388191 3.9591944402273382 2.3604999276462264 3.080301225560235 +3.668849558731943 1.075531849763523 1.8663499509956947 2.2358510738353234 2.6195090798523606 +4.894178141762019 4.393238476785344 3.9091017263998005 1.9556061305265815 2.016701661387476 +2.5113164333519147 3.4603514985748687 2.6374513326603717 1.7510860961466905 1.2985803354135201 +4.196517922475021 3.532561670132557 3.8287323492665637 4.971966152141878 1.3220519781995723 +1.9045648035796026 4.217415381607809 1.5996330453854366 2.4864589138566022 2.477042171073203 +2.5469974061263927 1.1221604678789117 2.951862327978076 2.857083726310583 1.4279857436012802 +2.419315932411283 4.580074131867605 1.3024678271787375 2.663859959660537 2.5538724586206465 +4.92800300633564 4.289803347968819 2.906098371028191 3.7345789616649254 1.0457910369673855 +2.831936022790071 2.8014170911130245 2.940224848319283 1.8090331985207952 1.131603266946739 +4.5292311124007405 2.4018963565116187 4.946559488762379 4.393491306720597 2.198053133479905 +3.7541785312034266 3.0106035743988415 4.4222918170911925 3.1137975780720293 1.505011923518641 +1.2690028963512177 4.3496778102780045 2.5197691535189333 4.623125293086135 3.7302365843405774 +2.9184733947185237 2.4937158375113055 1.769465641212192 4.871468760742994 3.1309491110497896 +3.910375383943097 2.0423062728805474 2.2081615006497834 3.4706856927878023 2.254694999204944 +2.794589049829762 3.0308312999406803 2.353454124578578 2.2283956790464616 0.2673013571540164 +1.530127061110944 4.874445527175301 2.9876432868055254 2.8000082107530306 3.34957802181473 +3.24869382358872 4.0874687630306665 4.2450734111720685 3.3769947467438874 1.207105615375579 +2.880129725633048 3.5647613637110367 1.1684133885466053 4.028972381156855 2.941346329499591 +3.0667789295451056 1.5286585406320152 3.643227660301207 4.308127603542706 1.6756808363506175 +2.2416759025582325 4.058474160409547 2.599416361347815 1.2884378154116471 2.2404063599348403 +4.3385383206347345 2.817269194764375 2.622899636442825 4.718008536532578 2.58915836838183 +4.046026852315414 4.472292457488037 4.069078551899934 3.2283828002329074 0.9425877747054484 +3.132395617768058 3.7959339539527086 3.3680063750275235 4.958096185819109 1.7229825100592038 +4.3841345337527144 4.677723879153504 4.799506745410847 4.58984968227709 0.36076417207746153 +2.2427766972429395 4.189361327000865 2.627755774061415 3.1327839819149443 2.0110308827906023 +3.054461319662778 3.244176623102865 3.8787670649814885 1.3692436362849132 2.516684274106782 +4.520371825239543 1.8965109567134055 2.9998174126753603 3.367186443945266 2.649453880051307 +1.105406326397842 4.452391489097104 4.536112832910499 2.3064922679366755 4.021631204260678 +1.4142562081367194 4.043884012647677 4.517414500089968 2.9951843489746266 3.0384415451381903 +2.08449192268803 3.9115131873247027 3.5149060563807937 4.896943538245834 2.290858857004169 +2.345160907993212 2.513799378657599 1.5076565522033687 1.6487121934618685 0.21985365068351703 +1.1256004366336914 1.7310974894212539 1.7272255693775191 2.4484611137508097 0.9417045138480865 +4.646190421637378 3.188716133316846 4.941271150722105 3.4899327750277087 2.0568457360431025 +4.980733239082241 1.01795987414221 2.959418629301727 1.3802380595883785 4.265839192191651 +2.0823821480019973 4.363142597752043 1.9000987874782518 3.7972443699562715 2.966652927165545 +2.442840545649248 1.4809386809915988 3.5246487922812233 4.84629933968438 1.6346300396979516 +4.11142964873105 2.6604342803549237 3.187064387661437 2.8193899512959644 1.4968540510703239 +2.1656312226583414 1.0162077092426522 2.123408578581289 2.1417032192853904 1.149569096257967 +2.75323982967078 2.77338809514849 3.703307542972538 4.739674969236015 1.036563261369871 +3.5455764306360487 1.2710854664489544 3.2076295311511602 2.2258190272118408 2.4773495941861574 +2.0305785330315542 3.281840864001101 1.1061803431492723 1.4279298800226767 1.2919675635949976 +3.500210582577875 4.585951260416062 2.0912364321925057 4.721644517787869 2.845677338750476 +2.6297325888816125 4.9497502992687235 2.142626020517108 3.3500207990382793 2.6153937232680744 +1.4988916061033741 2.804320719327103 3.323631588688293 1.116269657853552 2.564486666635365 +4.21880896766154 1.3257185546676715 3.6443620317801404 4.465249117156288 3.0072957527809567 +4.805263275440593 3.6923117721450973 4.8322352910136415 1.7903839153184826 3.239061722243995 +1.6615172101862723 4.184017202669186 2.6739246230616014 1.2391095446101672 2.902016630108776 +3.966798976731743 2.2568817308268443 3.9012469561531566 1.7659030856946245 2.7356005616587775 +3.859849074740884 1.8015397024122155 1.0822946853472524 2.0371722980804736 2.2690149244804743 +2.4973972260533635 2.71420300787085 3.0919603584604864 2.5841515391489285 0.5521544566514791 +1.7860567414660977 4.639975324254742 1.5381532342720097 2.4752902329632733 3.0038437095665302 +4.855570564884912 1.7674935676054084 4.830700577276074 4.597793239288042 3.0968476503075624 +1.415814548151452 2.5312078641191427 4.238100235522682 1.2502909883778255 3.189217199663534 +3.9281436435090558 3.1059059326743363 3.9516221650203778 4.114340320528194 0.8381837813096752 +1.1386266803555016 1.823988386623498 4.967030482752312 2.071960899335484 2.9750879921850824 +3.225143739548867 3.727795241886143 1.9273869953807217 4.439863133316365 2.5622636235364085 +1.1339017054360343 2.3140709704912465 1.5163063432998203 3.3764798853380698 2.202962800566566 +2.3864079312155844 3.463895894765598 2.7833365678945268 1.0834492858744498 2.012609520788561 +3.571107155372974 2.2536232674602577 2.6127263824673514 2.3464763628616887 1.3441178772152473 +4.322843615303992 4.775363139764865 2.3961025374045533 3.127321359450056 0.8599156271006518 +2.5834103311997376 4.0087942782480805 4.908029062273734 1.9421533834688751 3.290613611262996 +1.7876403062986945 1.1597292464006452 3.836777096574804 4.352286634536799 0.8124176160522875 +4.871710983980214 4.246397759851046 2.5978614981611865 4.019541337899003 1.553122723736846 +3.0265531101866285 4.578508593257002 1.5150533687680605 3.120187348837027 2.2327160400293264 +4.116403928458551 1.6481702464882866 2.938501273013229 4.917744742063581 3.163792379185297 +2.901573343536808 1.564074587553034 1.4777709768981162 4.057988527694457 2.906273478476451 +2.396196638961982 1.2052228445297382 2.271377262529585 1.6612087347292523 1.3381794391419868 +3.3213343189704405 4.398557751701389 4.716068850347325 1.9224564100856671 2.9941076784927665 +2.9283215914694605 3.004023500705423 4.137012773130617 2.0350692405086632 2.103306300421607 +1.8959198146678777 4.943362253337494 1.8174075536713805 3.943603660111776 3.7158599677661313 +1.7526775040502165 1.6724183740756438 2.963077637568436 3.466873903669906 0.5101491994329292 +1.479014839020595 1.3376995070497744 4.783024639303287 2.7875532243649612 2.000468992732951 +3.320974020822324 3.862417297381154 2.4979154584109677 2.210211286736611 0.613134986874497 +2.3115869074341506 1.0555481855596187 1.8507485423620578 2.854587386635058 1.6078948025662503 +4.56545608594886 2.127673362300197 1.3825555812191 2.8336492490446394 2.836980338409709 +3.8462352022577964 1.2191313030022637 3.718895673686153 1.8951674256957358 3.198071234353891 +2.0294095399588246 1.7131471061268138 4.074606592187815 1.6171595452881053 2.477714252162556 +1.732257412171148 1.7033150632461802 1.170641126198162 1.2354586633350149 0.07098572167543196 +3.0432026363290787 3.8916392190999707 2.5284259632487243 4.979543298325502 2.5938043151513632 +4.173595775486932 4.367147971673466 2.0289712355431195 4.355815128314012 2.3348800727176178 +3.630186933175133 3.372349448903295 3.628817301546056 4.813502264477444 1.2124185043504472 +2.017069650029644 1.5076085333191207 4.666803526584962 2.634059007464586 2.095614685349829 +4.2303185990722625 4.395263569492336 3.734602087208586 4.572364983806315 0.8538463059489665 +4.481123410731609 3.795785247797763 3.6755067725918376 4.788054173712531 1.306694347318434 +1.878948780156433 1.6595028927076108 2.802035667503737 2.4304857997214535 0.4315157028049308 +2.7327423792990815 4.120065718292174 1.3057870088992183 1.1999444379702564 1.3913549858809557 +4.201908849874501 2.742674649223544 3.8316147435042796 1.6346353202102155 2.637438727009019 +1.981713389413387 2.4479057377627833 2.6306486725873586 3.115021831568431 0.6722742467184268 +1.191339947777922 2.409334801633385 3.622404617434348 2.6478969390675577 1.5598643143601374 +4.718745543504655 3.908030551925739 1.2448606485032534 4.793065742892651 3.6396453384116527 +4.155188229788558 3.557830441332022 2.6462403971496227 3.5564729709244687 1.0887422402894378 +2.3694690191712504 1.038569901932934 1.1839634248660498 1.4404278737112515 1.355384253186971 +3.7310834234845633 3.8658803711325502 2.5270458655513903 2.628269601423327 0.1685718297909996 +3.913405518915635 4.223222177559146 1.4346426093865956 4.68410729950879 3.264200841603341 +2.4047131499773213 1.6282155099992104 3.570413997831738 1.4972539974590044 2.213806895832843 +3.150435594118339 2.207365895743921 4.57292290239814 4.364005933041354 0.9659331012431657 +3.1981579143772247 1.7419475908394126 2.453471852140767 4.029664642655849 2.1459105804412775 +4.903155969160287 1.4203452271704604 1.5184807877221158 2.1201317060642344 3.534395916144885 +3.393956986426313 3.850190446752531 2.9680935997170756 3.4701348926424482 0.6783763189583011 +1.9134731953191166 2.714572864722494 4.290261838595278 1.7357908366180252 2.677140784542507 +4.614580314792486 1.2786325586129714 4.112367127238923 2.8169831085190533 3.5786264387211446 +3.0421973031442384 1.0087595364627635 3.586409209731251 4.189573848238882 2.12100842339501 +1.1140104903251622 1.7758708748393062 1.74778652009519 2.1726455777789266 0.786488644218798 +4.694294797504728 4.992332922181751 1.9978551324459395 2.631293327670662 0.700050477416129 +2.572495396503245 3.074017910070592 3.3851084156592703 2.8825615759715366 0.7099846179284723 +3.239943779825431 2.2449769393891996 1.1896218332774882 1.2263121631429224 0.9956431056725557 +2.694690827785112 1.2313291153651225 4.12278493585749 1.8687926001627981 2.687360963984403 +3.1047418262936124 4.4380747436089365 1.583848578329441 2.912023876436419 1.8819740409735075 +2.0122417414984093 1.030792168854854 1.6427013396440424 4.829501581381936 3.3345073165886014 +4.591382955657659 4.228323645355516 3.9859639922653862 1.5456141947364928 2.467208786685144 +4.507570355630198 4.070380807370011 1.5988941871226934 2.6699953774978855 1.156889130872574 +2.95476216376771 3.0224524660797623 1.3979065459284348 2.2665283077632203 0.8712552680816706 +2.701664644399055 1.640174083372572 1.0955645921960815 4.102919433600446 3.1891919593004414 +3.0028570005765616 1.3136555095716407 1.788721183061325 4.63218824089525 3.307371552486954 +3.148596656166765 2.0298560465114996 4.833513931332649 1.560390878914323 3.4590338344636202 +3.467578363649236 1.3417715402737183 3.061020072005788 2.198411858171137 2.2941550908526036 +2.064419734238036 4.708013702286044 3.7406915588869114 4.284685296807023 2.6989846710932066 +1.6190887921101793 3.636743326379659 1.98867136324697 2.9960318315742738 2.255150756115164 +3.459501219020551 3.012994770744108 2.5038218752827777 3.829238163933009 1.3986051431951039 +2.8856211365805957 3.5690598826488977 3.535928610236686 1.317430531018577 2.3213836923528715 +2.2123963449725084 3.8799120427010774 3.5565902845678488 3.2247275167077505 1.700218073913744 +1.0764860634722728 1.738647924378932 3.9537183446009223 2.839835871964027 1.2958365996093233 +4.740997335682893 4.369076788191226 3.366606109489025 1.9589994792618546 1.4559125382748759 +2.1634744295728714 3.71257442652689 3.784752247610082 2.4895943723395857 2.0191940774571733 +1.4345303317765667 3.8645468443855497 3.1526317992381183 3.096484212482361 2.430665094794184 +1.0538528934077358 2.193131793751561 1.1077394199271908 4.027791075858831 3.1344310625818124 +1.6605843391634134 4.911363980388409 4.997809115695439 3.8353133859056467 3.452385348940992 +1.6511336634572693 1.8432232351783697 1.5179127025964188 4.284114835757822 2.7728636181880084 +4.313202049193401 1.4424797722172187 3.3766818675027364 3.215174941152723 2.8752618800356857 +3.133350870376097 3.183342210692715 2.575207894634339 4.976134487509162 2.4014469884801035 +2.607352252029573 1.5205681426522486 3.557654652226997 3.4824098314717387 1.089385828549993 +3.1685010556087403 1.2512177511772644 4.406616438802136 1.7413896855289441 3.283201016662677 +3.219813678909871 2.65550325471886 2.435106546065266 2.0786435680626174 0.667466935163949 +3.130119863659792 3.161095208051979 4.296929002561629 2.7351990023668318 1.5620371523970404 +3.9844258770070553 4.6186576104022485 2.4092387620836346 2.481028792346112 0.6382818343729978 +3.109711082310543 2.3256264255214605 4.491995279241857 1.9503066868964551 2.6598815104193654 +1.5367223440663262 4.46301937920315 3.4396299130436225 3.6778818111506415 2.935979956471461 +1.9320831852777678 2.7508760155427288 1.0212166425968672 2.866905308730517 2.0191553558821367 +3.7858157792673577 4.605747778866826 1.5365395911144577 2.584700412650595 1.3307627856874014 +2.56029289948389 2.308056079131181 3.660139845773291 1.169768938676722 2.5031121965374687 +3.1085211764757825 2.9577390416888196 1.195776549984997 3.7453990758730225 2.554077186908522 +3.52646623765954 2.0300492640372725 1.5579234117270464 1.866725223175047 1.5279470925717267 +1.727757700566451 1.5162258014940493 1.8440300843006394 2.0532778751459677 0.2975405557211101 +4.527384447045981 2.9484933386456835 1.4336474085391075 3.3772541213123 2.5040974793570907 +1.3973060805123052 3.6200000847520917 1.9679399126851846 4.3581666057859065 3.263977984131435 +1.536663068367707 4.272538911341228 3.9133951104115545 4.447022766137426 2.787431632008499 +4.016369994963734 2.6800846683718076 4.380548181747111 4.086173594052811 1.3683255723493146 +3.076446261242123 3.1962450279942707 1.5613660649513315 3.944787486161913 2.3864302662346546 +3.9695695007893463 4.256550513082303 1.802469440863962 3.8607544549212687 2.0781952026962185 +3.937917648059028 3.5375959083169928 2.8364074788083027 3.3683452396470464 0.6657441525963456 +3.062195588057543 3.0882520583536186 4.063679143773937 2.999903220572007 1.0640949931413122 +4.285451245704719 3.083646088336098 1.2729896516433499 2.656701219502025 1.8327556681957715 +1.5338401009101377 4.560525451696725 2.250838858039265 1.7613778075242457 3.0660065773963026 +1.7653247147829716 1.5262285940009326 4.121173263139097 2.2506644995874163 1.885727973355822 +4.175428007744834 3.5469894449796526 3.3782803174112286 3.737850406208794 0.724034305767521 +3.614689863202048 4.026759676017541 3.5753992521329123 1.5611219845247897 2.055994757152031 +2.3742514420517993 2.7727722750986334 2.164684108821963 2.6339239860794317 0.6156337521456626 +2.6386032333502616 1.866130552526991 4.953673702134362 2.726555000644009 2.35728058430607 +2.436240855530796 1.7149743185357433 4.574257196884409 3.516615382166453 1.2801685926582975 +2.755859147052173 2.7277767375688273 3.2871798909369163 3.816263969727717 0.5298288253316352 +4.284846883629296 1.7358996073103579 4.184833757738595 3.0669369626510403 2.783311959145212 +2.1874899965898575 4.54296942943847 3.63274361474106 4.74891345727142 2.6065529873660864 +1.6554484399197182 2.9473426896636203 1.481657467631536 1.8556076918496318 1.3449273299008107 +1.2197244702453616 4.125488003711252 3.2400777337450046 1.5950877522687383 3.3390797761625075 +1.7755554311671724 2.9682464328062017 2.5380121672946396 2.691222965264407 1.2024913197213707 +2.0080270194230487 2.2149733868983956 2.672793086924179 2.0392304332630977 0.6665046399878342 +3.4472117659197465 2.4364672871171695 1.7036447664588148 4.46708163337037 2.9424798586967156 +3.192271924853251 2.915560623097548 3.382803896814177 3.6532334194778664 0.38691248525661026 +2.995601557630506 2.0077439221944924 4.502409103502215 1.556776347726235 3.1068657904373063 +2.8552537329387526 3.2496287764059923 2.6449708436296078 2.889924227383713 0.46425621710686127 +4.8213113395980045 1.7092481590264876 2.155186991223922 2.000985090615053 3.115881170073771 +4.614067092229145 2.624255404740751 1.3998058463903327 4.78684681452615 3.928281694519351 +2.760136700214001 1.0827880629811637 3.6586146253353604 1.1482264567549882 3.019196450676102 +1.2468222067608323 3.806095750977894 1.8870408990256369 4.204068701380253 3.452317904106402 +2.9154681986994766 4.946235688794715 4.984073457228337 1.618221223863955 3.931027582664832 +2.117448974365098 3.860498368178414 2.318520440012708 2.8308372070205525 1.8167800249425738 +2.8080114682741586 4.4335360095192975 1.5425144286941186 4.72954847901174 3.5776411323767734 +1.7426400229474712 3.8251181905313016 3.760587333427822 3.959374107148998 2.09194443039718 +3.494892303797698 4.790833759445214 1.746572413109066 4.44095739843472 2.9898452644934865 +1.811009209901925 4.825848211619121 3.208591412745569 1.9661407526592454 3.2608185857272223 +2.5607343660419346 1.9568927197217953 3.141171725273884 2.4545478790021336 0.9143724843298974 +3.5560235259436417 4.135441987451383 1.4591048733388372 2.6195516790510887 1.2970591900232487 +2.083640058685985 1.6686052483088352 1.3002342093756472 2.611306306134129 1.3751959630261712 +3.8119626318682927 3.413876656099478 4.982286612137472 3.171309914225172 1.854213861582624 +3.879375324518641 4.950981245361179 2.6648468127913807 3.7658391530119086 1.53639948672507 +2.5113923530593376 2.252168914504252 2.376348293699885 1.738326282743445 0.6886718213788204 +4.372955290410669 3.3141930383032134 4.533047224888712 1.2877757761749091 3.4136145480010827 +1.4457611938175159 4.947325633744992 3.131601137881367 3.2411063694452222 3.503276312639994 +3.6059918434486917 4.178834826732947 2.367305480300821 3.607933903516973 1.366494774227037 +2.7793365033193975 4.623319887378994 4.96568436436433 1.841545103935124 3.6277432157255878 +3.0577152500798643 1.8480133387482 4.182833511259085 1.2223961533846057 3.198056920096688 +3.4618950470746235 2.2181687229234925 2.076367385842989 2.8697845548636765 1.4752511560691237 +1.3634924679356804 3.6336204316371625 1.1879119590046692 4.378393460061824 3.91569319280346 +3.5185664320764993 3.7212557563394175 3.3901656002938396 2.2934493575475092 1.1152889667139123 +3.060731864934777 1.7458919690404122 3.994219045768526 1.984903915103883 2.401281167658918 +3.1845408099180723 2.99829809199632 4.8281336494572695 1.114350405256114 3.7184502598378457 +2.0182279204949616 4.1056379483719105 4.223938580682596 3.5908778790014817 2.1812946789680274 +1.7760669589362426 3.561325688028161 4.511623811518991 1.4287807032339344 3.562452857245912 +1.572056404742285 2.9634219455368305 3.2439922021345264 1.6823943158242791 2.0915271995934286 +1.2008912320139964 1.6389985555034023 4.877553428683095 4.013524624858675 0.9687537358551495 +3.3405906093584514 1.9841166756481563 4.763880070267177 3.448806339205629 1.8892962845894825 +3.1060477651260587 1.1277564387610903 2.5721387497258745 2.141611390453031 2.0245963496591894 +4.738728308685044 2.776314450146407 2.0568549605072772 3.678017770342293 2.5454345421119484 +3.089391673374488 2.590443673183571 3.641457608767395 4.14223229251462 0.7069118691722815 +2.054249908483454 1.4789687825363829 1.243266285545816 1.0907160815056125 0.5951637914252155 +3.4861045480725146 2.8318993028826656 2.010164279106723 1.074754000848058 1.1414801318927386 +4.31593530166553 4.473653978896575 1.2664076989234183 4.713278773252355 3.4504775588595025 +4.571099723494784 2.4806576167624206 1.1786903336284564 1.1880582084995552 2.090463096703514 +2.6478163898102673 1.6754277830796003 4.510693513722622 4.117168297376205 1.049000332888461 +1.1657415806922753 2.627531437521129 2.080723378460196 1.9982141640368685 1.4641165786891681 +3.9472981812312606 4.59213782598074 4.26356709363216 2.1746523657103243 2.1861799806899227 +4.804973676893182 4.367046064528354 1.9443976410162143 3.890031789797716 1.9943101149460878 +4.770636803617259 2.6185554712762587 1.2854998773001607 2.890188320353765 2.6844886031198594 +2.332697641930881 4.444108211217787 4.175905265527871 2.808246404166217 2.5156600233651436 +2.523874491809076 1.1396985564658744 4.088779501528581 2.80930139403725 1.884942239839944 +3.422278809231573 4.686686871963623 4.492570528413866 1.489867302760561 3.2580599151106138 +4.788770082112139 2.55949934908031 4.223403082783566 2.6548660084606945 2.725794664804673 +4.8198050581068275 4.103821011519828 4.344222218175595 4.368511745261909 0.7163959352852107 +4.496610188897316 2.2267787470541935 3.344663476076881 2.8790455101212724 2.3170962139281714 +2.8606304501755533 1.3996981309210166 1.8104512187601305 4.441792338418878 3.0096975478358936 +2.7750690552325006 3.0541207000211887 4.895902926631351 3.560516018751443 1.364231657086264 +4.925768229867726 4.881816762276216 1.2565496453375276 2.7828864175953587 1.5269694410334158 +1.6109874141977998 3.1463939136025543 2.5476955595751054 1.9502215774617468 1.6475582774872506 +1.670488649145288 2.554913061568758 2.1644771408400287 1.518100047652955 1.0954496281835928 +1.7059600762728757 3.3833252482319613 2.6600382374039637 4.4808649507786225 2.4756744212921244 +4.548012953635528 1.161867761150611 3.4901660852678327 1.1527752266213804 4.114532208000408 +2.2947110626313147 4.15409928185045 3.5236083307075656 4.393481875454524 2.0528040660573397 +1.276321785712848 4.178233548313166 2.2548637350568104 4.083291303442035 3.429903679514804 +3.1589814604652693 1.4465216781946233 2.4153345178627847 3.012109959319603 1.8134661379304573 +2.748032920835158 2.994757115769922 1.258276762707884 4.841312247669582 3.5915200284643993 +3.905038298650378 1.3301485698620326 3.9718109146611114 4.964896710322533 2.759760227440818 +1.200447764994649 1.6007610193012085 3.3006585689147383 3.725478180642324 0.583714317180832 +2.71955585575264 3.4770160094985822 1.7262632724923823 3.4765734532266053 1.9071789672955957 +1.533461035037476 2.928751739355585 3.3741699099772617 4.610954383569071 1.8645299632009922 +2.590680947661383 4.1603159359836654 1.5255729277911962 4.472463452286567 3.338849766001174 +3.0176209366649225 3.1833693461163493 3.687119032445646 3.207308944346244 0.5076320083265374 +4.043561761824993 1.545914237723609 2.3072558435471353 4.70706730716166 3.4637173983374363 +3.0041060324383526 4.6462439098534 2.766124282643236 4.29816650053359 2.2458339577625925 +1.5188706072177816 3.4565853101438138 4.274978812848744 4.716604771323742 1.9874032698812494 +4.343400261938196 3.3370094941854105 2.496118925801308 2.680040998747179 1.0230589945524882 +3.1669464828736773 4.767406278079219 4.501030511603227 2.882052410868022 2.2765240272682243 +2.0402084747627334 3.2588809550241833 4.761432237560934 1.1483083176032158 3.8131125180247722 +2.820408435759881 4.385873494622477 2.9673194892129646 1.8473991438056316 1.9248123104804145 +3.52285286956636 1.4739576051635797 4.345730858999941 1.1598393496640544 3.78785909370328 +1.214155329375604 2.8820966693208385 1.5746997352764147 3.2500183550210733 2.364047544183799 +4.856795125517534 4.5314763496264305 2.9849309459734203 4.307173299222931 1.3616743908416904 +3.077519444615218 2.058979425361848 4.720236445558619 1.72096050960515 3.167503734932323 +2.8345989043074287 2.050324787547685 2.844300702692821 4.030316182691128 1.4218715163526172 +3.0898627704967274 3.4399814146508736 4.976186257933348 2.249878925551339 2.748696915919295 +3.85450130366007 2.225162709563676 4.903611535716988 4.236735711137405 1.7605304938059754 +3.028003112513361 3.2444421806174675 2.339861201152686 2.556924599189791 0.30653285137027125 +4.5492211961944085 2.541214582992186 4.953345252322334 4.719499932188281 2.0215771547018573 +3.2035393722636427 3.139409159361069 4.590345637883958 4.429510655191833 0.17314899902831005 +4.955567553165034 3.108036651611223 2.114797428746872 2.5744253589087727 1.903845651932202 +2.811184910700724 4.966427576359182 3.646712870640971 1.3971992856018893 3.115346259591373 +1.502038443716072 4.944673158423194 1.3106468689594362 2.8961467281803115 3.790190441454889 +1.4693302756971671 1.5205006964605956 2.5351110839306203 1.9705957581832312 0.5668297495410656 +2.2971610208874615 2.2668609318559794 1.073791974096681 2.8073268480513804 1.733799658153286 +2.7911022152934724 2.0303760814471024 3.9166576495548844 4.919084605154527 1.258397414185842 +1.0885161990555585 2.4640212348502377 3.5111181257479456 4.652704047441258 1.7875213341677607 +2.6225518862648447 1.9497829750625741 4.928897874858114 3.6176238974677486 1.473790165410747 +4.855532498026722 4.193547763666546 4.4216811623723995 2.412053598830442 2.1158513021177785 +4.739637898731269 4.488012580162524 3.808851161819145 1.1495713306391315 2.671157899014138 +1.7428899726614198 4.1891574722093115 2.6494793197247515 1.840169626670062 2.5766658414735444 +4.6170729949960165 2.0864169705429556 1.452291191820704 4.33988561299039 3.839586104682491 +4.814861297911795 3.4585078729462455 3.9636031478674525 3.657391722470366 1.39048914071973 +2.962774086376601 1.0223714494101066 1.183227411757986 4.873437737504561 4.169270276894168 +3.4501841472075006 2.1424378956918693 2.3200290771516854 2.4295165758489006 1.3123215195691023 +4.750019964129652 4.112558901210686 3.966992123052635 4.775060039187191 1.0292377586465733 +2.919312489806371 4.010087902413031 2.409907017327745 2.7295827618678303 1.136654557196023 +3.1605101418672312 2.170941789924918 1.6410208571005152 1.4873493251289696 1.0014292101313542 +4.92892291625988 2.6338065054233826 3.08678439935889 1.7047973209820877 2.679075889946281 +4.830597842206986 1.4718598629041817 1.1163394070309143 4.1504522466797455 4.526252482720444 +1.7858351761916609 3.4216336071556066 1.0551871002355817 4.545695745331571 3.8548005276841426 +1.6704849122855205 2.8726737954122417 4.648766563159132 2.6765688329376114 2.3097233595832187 +2.135002404749951 1.7089161737343597 2.2185010877546545 2.679132236274393 0.6274795066356232 +1.5768851234697059 3.749902728775004 4.538418334267763 3.816615877338003 2.2897607516499647 +3.7191826659012683 1.260443132005841 1.3584212473506043 2.274304744682727 2.6237840376497497 +2.980995401355188 4.577618040642227 1.24495606324896 3.5361579856311303 2.792634974609403 +3.265496765014246 2.5314814422596625 2.582217825734484 3.123603942717623 0.9120731449289562 +4.67274795674952 1.7831288951561395 2.6104878855987175 3.693729462818503 3.0859861690781147 +1.5638773211120571 4.612198793854002 2.1596544068076056 3.310174246327551 3.2582141891392933 +3.4351140663667357 4.3873910239440175 4.892940407362149 3.8821442136067983 1.3887189597765806 +4.497007399936194 2.3140738603294992 1.200124577237899 1.0212111889192257 2.1902531449262854 +3.872992332842948 4.091813764547768 3.510548064494652 3.630446838712744 0.24951660271883414 +2.8572793066068636 4.168010173143942 1.5668788182790991 3.747735922436197 2.544435716076459 +4.152996741057661 1.642879789773379 4.239453126325407 3.6174877477233185 2.586025529901888 +4.700668809735179 1.050699179673381 3.0652319048589414 1.0369747905400493 4.175656262452486 +2.7313905351012555 4.32965972423099 4.92982332603882 2.2457599777836905 3.123885474592171 +1.985767711113187 1.3767406825654351 3.452556501969918 2.9884084133861206 0.7657332235430933 +4.109611213200866 3.531362895762127 3.8399307832946334 4.087099687740894 0.6288589539363318 +4.573097124489766 2.3989408964631846 2.5150343170624985 2.3500433183285674 2.180407607198707 +4.332956008953696 4.005864285463224 2.380779954730088 1.4875560772603422 0.9512296730327827 +3.1081831336126777 2.966313407059248 1.3064423692061546 3.1930116053545725 1.8918960072091622 +3.4358520371377432 1.4084674006640112 4.567510169844692 4.2276262533294435 2.0556773922275524 +4.662276559950861 4.388431628974342 1.1172602188204053 2.0421047737168343 0.9645353787928718 +1.1905074054083133 2.08070448006484 4.053389813619216 2.550059436704546 1.747127085784386 +2.6518733829411896 4.6968347933997805 4.553585395302701 1.2866723637955308 3.854165010180046 +1.0075235923105157 4.548087248688978 4.246745452147811 1.0304853947767572 4.7832959098835275 +1.2150095058844457 1.3731853716950115 4.138424363343134 1.8188113073231769 2.3249998568135797 +4.034062314690527 3.5126284443734086 2.466043676462442 1.5934707257974776 1.016502255455467 +3.8773207556587987 4.381228572261273 1.2629708968675781 4.664652534203367 3.438802269602102 +3.3284940245726933 1.5671693925560106 2.1251428308334157 1.2988128497632139 1.9455296700292655 +1.0297937251436444 1.2685620738373706 2.0877422274772526 2.6988520486813505 0.6560987257341943 +2.413248324252436 2.5584664404447865 1.3192415383809721 3.4378810205368735 2.123610500214265 +2.1021435381488986 2.4918280019863808 2.653454358675218 3.0233387098824025 0.5372787122381323 +1.341175705060703 2.3394931734337736 3.2981560134390446 2.5617262965427225 1.2405508839168242 +2.1927005055465996 1.7260748910769452 1.8702431085061724 3.2310329341482875 1.4385716574610667 +2.3546694417265526 2.9360544826600585 2.3093578502511023 1.9791485695735647 0.6686155359149466 +2.9511540459963204 3.8256578841180824 1.3795850347732888 3.775602756816782 2.5506191184173663 +3.412883865037629 2.30925688464628 2.8822350565574166 3.067986202288278 1.1191496772049994 +3.6160542567211627 1.356649063367244 3.4449218671791857 4.2907233425183415 2.412528126973974 +2.9296558017073555 3.9364134113622944 3.388454315656956 4.7334636198477416 1.680062770541002 +1.0256024023289427 2.5756589057312835 4.660644695704592 4.005070902992557 1.6829890556479365 +1.1026426097758786 2.069809538364949 3.572353506570808 4.889519325019798 1.6341167831727366 +3.350267307108065 1.240973131882395 1.3607075957617614 2.0975877388231288 2.234303977277729 +3.5120764229868486 3.9854483805620387 3.6106541025043066 3.0835749504501213 0.7084443822550409 +2.901088158761961 3.490684024270052 1.9796647053656553 3.4372081990804553 1.57227743121072 +4.383612918489038 2.1804028864842167 1.2632293514874013 4.859301980718382 4.217330055832826 +2.9062813061495225 2.336059001678343 4.343288932554982 1.5089059794170958 2.8911728072799567 +1.6603630748910794 2.614044848762303 1.2883838117676434 2.060858742174126 1.2272841740691776 +3.5121207998318833 4.1738230283662645 3.6320787361140474 4.168929518503575 0.8520907239253424 +3.9867487506065364 4.386537386566538 4.645694060320163 1.2454251009715618 3.423690983332517 +2.9383768885238086 3.670834719241368 2.2427662763330662 2.090882808237836 0.7480394786775011 +1.403937309359141 2.997534827010661 2.3753741888854716 1.7688084876085592 1.7051319591839922 +1.0468395486735393 1.9696339666667613 3.359714830818824 2.257876174018023 1.4372188293715198 +1.3421762548119767 4.052572841302322 3.5674271423332633 1.6591936785123713 3.3147555880493504 +4.378251092797527 1.3439114198686397 1.4718819690299747 1.4677964427741563 3.034342423365394 +2.230788118770821 3.676664524803254 1.0615238899719057 1.0966654644514353 1.4463033954804103 +4.246781637382446 4.860643260266434 3.0807263069584696 2.299906898954554 0.9932296008302153 +1.69771432798334 4.35309334035677 3.754472937866684 2.2333490015908253 3.060205177576277 +2.7215560224474564 1.4482834521810677 2.948125048674112 4.318973978439289 1.8709489106950805 +2.386739863334457 2.874810783305796 1.2656694038423568 1.802773798579004 0.725737110644818 +2.2047173667395783 3.8566850932434256 2.898582889153413 4.820858332853893 2.5345887735220813 +4.552653097726121 4.832199078314801 2.8862950662846982 4.385570345160703 1.5251138702116669 +2.5899903292394573 4.829886727935348 4.812316505343516 4.759256089515212 2.240524778845057 +1.018450910622517 4.035066647888634 1.6342701116741658 3.4784468680717553 3.5356694437063445 +1.999097814037186 3.5890979564282928 3.5331813850411913 2.160718795641731 2.1004175804122407 +1.3834865185829548 2.3038724418529193 1.3019853700402297 2.3496402558700873 1.3945217845400182 +3.6189696995574594 2.860351432842745 4.928262637331951 4.173302580921817 1.0702646221229732 +4.729497708670836 2.2157634793522103 2.4800471954251084 3.157524308152836 2.6034275511175653 +3.2671387766829 4.722716760592815 3.704443767821411 2.770618569304966 1.7293746756060497 +1.9593816533334607 4.9317642818414305 1.6478873188153607 4.64951221603299 4.224311839087249 +1.2424114112022715 2.454679854931023 3.052402620854127 4.330490065782593 1.7615624588825407 +1.3225525062885044 1.911754902012761 1.8068571828018385 4.665669153640115 2.918897968024137 +1.6446917659654772 1.1757805419365903 1.2312794909549392 1.5283526721384622 0.5550947765911396 +3.8252389395453816 3.030600258067643 4.912639110745852 2.4214234232970817 2.614881686710037 +3.0510708397988573 1.067019000357432 1.2334005806395405 3.37050021731684 2.916102974635352 +3.2611607256427275 3.9304919904973175 1.8078864397671959 2.1727462143688427 0.7623168614390015 +1.7912365002770514 1.9555288276050513 2.315150513108893 3.7834415250486786 1.4774540482065794 +1.7167571785583542 2.7945762045681652 2.6290231338493784 3.47615805411403 1.370887094534242 +2.376588969357377 2.651325738134168 3.452321213826499 3.163523722012363 0.39860291443496504 +2.531118498381329 3.2372961631324975 1.7967595390846167 4.73548359297964 3.0223808428347696 +1.9126393918514788 4.097178714358682 1.6563518345954513 4.412805068670889 3.5171361195190003 +1.9913634266298974 2.496307374448013 2.96313385281231 2.6166368586719613 0.6123957522602853 +2.499742906377795 1.7448189693687404 1.2741886638095137 1.4212370920791373 0.7691120795604615 +3.7263089802158773 4.786632637729115 2.2312333268868247 2.0222179289762083 1.0807283170371649 +4.103469497635315 4.005332387151597 1.2936223413157073 1.070626489814455 0.24363505954780387 +4.9970253631282215 3.200542686601711 2.0435287527653836 1.5285309198438606 1.8688426298042646 +4.467185334557826 2.79095428905758 4.709954019500435 1.8549770805721773 3.3106863094698373 +1.7202260712480877 2.145561733392331 4.423406392565422 4.660377416205893 0.48689392226325323 +4.35643107209577 3.4186771505740516 1.8968735602904507 3.1487167261772244 1.5641271461447057 +2.4382338014866023 3.3200418483516256 2.380983969864106 4.858346374425308 2.6296216296359383 +2.749500571911751 2.1454126803845837 2.561437841947923 2.921694741710362 0.7033542596133067 +3.0075827946406894 3.358157804383132 2.568095947562352 3.9953674004779423 1.469696103881239 +4.151728235985632 4.725873612667328 2.143967911064502 4.636750797753085 2.5580479733055106 +4.282432777116078 1.497633514649098 1.0926272229103122 1.0408128761423452 2.7852812530815676 +3.949113460287778 3.881937872662485 1.1071949973469288 4.745745508404479 3.6391705622421657 +4.4955001663611025 2.3573267080501754 1.7723478524358587 1.644094950529917 2.142016466947116 +4.580368153239707 2.8212714796354037 3.3362397654994354 2.568831839956302 1.9192019256118258 +3.7534074939422917 3.6791974975926274 4.0616886751375905 4.356261341531624 0.3037765286270615 +3.429127400942594 3.6889554587964923 3.334864375381309 3.228039930114234 0.28093074191826545 +3.696120934061288 3.7159875456178773 2.570005632759946 1.01354980335271 1.5565826130181806 +1.6568440754387064 2.2229722299950523 1.7796548424352725 3.4170023595707293 1.7324572084905931 +1.4962350113096483 3.7149262924883972 1.357049461673534 2.9071507773065823 2.70654855672421 +3.2206856522877216 3.578225588712984 4.14913022427061 2.219583811142639 1.962392459869839 +3.6601665290599175 3.9485995210924014 4.283461903769623 1.0934061024591921 3.203068779524902 +3.189244550333018 4.746988925789308 1.7734224516246577 1.2536187239856016 1.6421825277761197 +2.0189005467068712 3.6579748650770507 1.1274728642079026 3.905258178118546 3.225314848401365 +3.1819266922642853 1.8686727890575563 4.533469647747511 3.7577861954572387 1.525228059158585 +2.7652084169179556 4.964258694146757 4.310586404828204 2.3946389504288597 2.9166207792236882 +2.700988142624138 4.944603787440796 3.2544354023311293 3.8938259923771614 2.332944810385681 +1.9364499244110531 4.509080863939952 2.927602881801317 1.5606504364485425 2.913243714294648 +3.4365734328016777 1.8682804476975825 3.3367177723071286 2.2506120356910304 1.9076604934414068 +1.1265552231502634 1.361529743335161 3.5400847506143767 1.0921615948325059 2.4591748213067723 +1.5926091184111306 1.9407461894606213 4.397401935909838 1.2628382360766919 3.15383718802201 +4.179917534746603 2.6796895551718958 2.924575621791837 4.886792549754039 2.470016045105827 +2.3523229415028197 2.8039627148781414 3.016120455150043 1.376412943039393 1.700770181466799 +1.0337389954833998 4.4292775750325095 1.297303468360044 3.2107713922313916 3.8975686961092695 +1.7347417369175084 1.0474568960169885 4.155336145764924 3.7790553699111644 0.7835481317754258 +3.469856925359437 2.066539326411608 3.905505950585317 4.111542880711426 1.418362259823805 +4.8982320756943905 3.2276287843858906 1.1887300998491837 1.1647761411919917 1.6707750144966087 +1.318115021772111 1.3920832272181598 4.712389237934303 1.2010125690689768 3.5121556637012357 +4.6621868673313465 4.442182931575424 1.0186726295602444 3.3544546641809005 2.3461200832448257 +3.0518284270193248 1.126748393750939 3.1687767009808305 1.3918007198578906 2.6198428907047924 +1.176903019265683 4.304943151019806 1.0851492698511391 1.8380067192616716 3.217363735264834 +4.1038961835751335 3.541302850699121 4.283941084637838 1.354950142353867 2.982532346543467 +3.7332466859316056 1.9054126896905257 1.2411416934277106 1.5050495340152974 1.8467876072083218 +2.171820077870877 1.9467448443460635 2.7912430996193485 4.330930035653644 1.5560510022942455 +1.8854150192454688 3.4568478771027835 3.957257699142812 1.2992921221679024 3.087747113210078 +2.4369312192206776 2.3591225881335776 4.399060292037023 4.703707737739977 0.31442685833907796 +4.330786711475273 4.5791280486971075 1.4049713609896801 1.086176372712539 0.40410848088570395 +1.5188850644887104 3.5424795007656815 2.5659225360266236 2.829075515061169 2.040633218612759 +3.8261616522834343 4.167392956276858 1.5450913498016297 2.3466021502220085 0.8711247706359685 +1.292363675213835 3.1386206087388433 1.231383344588874 1.249158031660385 1.8463424937128152 +1.96857167890821 3.9900974929889346 2.467231769326519 2.358789333947296 2.0244323596469487 +1.4164379055040448 4.019142234000178 4.428225279554573 3.3896336297077707 2.8022745113039886 +2.8144155632661647 4.56372026902485 1.2683099374736466 4.181960383556366 3.3984446259351517 +4.168238968550694 4.896225958521044 2.7974893837141908 2.8023282495525508 0.7280030715516878 +2.2269244958645493 4.324017887190822 1.6346623051392908 3.840898140257592 3.0438917937575365 +1.9707655586714545 3.88489689035358 4.045051301558555 4.674124873613062 2.014852926142403 +3.388562490392066 1.0562861043573215 4.838213209426161 1.8150666320789073 3.818236290354711 +2.5097733424045043 4.30556817585814 4.0259119789104165 3.5396015223332893 1.8604776118069855 +3.4754936659226674 4.827774556837475 1.552247067828655 1.9847634635770945 1.419765487862191 +1.8548144708108825 4.489200437431896 4.9808364423047795 2.305279029635966 3.7548098340151355 +4.118905517659671 1.28908577387618 4.342850161721337 4.93441615034998 2.8909911970134132 +1.8333589417368192 2.9223645250908294 2.9559527031170387 3.3371081899678163 1.1537818969513525 +2.784831714562165 4.082938832330152 3.6866475255663764 1.2219859987910744 2.7856127747349007 +1.2512290001020183 3.9273543160369853 3.6906764173801516 3.170450140961586 2.726221209891881 +1.655263071575527 3.805607270733686 1.8274018491442794 2.9065152552466187 2.4059230906417057 +1.1528731280521258 4.470962621951864 3.288106681194366 2.6569273713581305 3.3775886680727076 +1.6675978014328274 1.6969181550759664 4.528436101103493 2.6555056213100716 1.8731599678823412 +1.7469041238753138 1.9192948111864334 1.3856706166916255 1.1546173895975964 0.2882778916638687 +2.463130705027683 3.6183174548407018 2.1451360256819436 3.609967410611267 1.8655260419564037 +3.097987372471161 4.919265149436111 3.6038242675898084 4.625932429357501 2.0884821845585666 +3.831724801496112 2.604231390383232 4.527078908705781 3.9689866197923505 1.3484090912145936 +1.0126735221448113 2.685888688709205 3.6934038155154454 4.568866308990646 1.8884076813821025 +2.7384454722500915 2.98411764753491 4.317274130045369 1.4027138260703729 2.9248959952818834 +4.397622671585036 1.6120505118531474 2.578076368811098 2.761879784865938 2.7916296231460946 +1.586228080422241 4.585619651690223 3.3444975592871447 1.6536823411520358 3.4431389602615066 +2.911566389827242 2.747683944338994 1.7602538129667256 2.485737918745167 0.7437638359562485 +1.3754035257296038 2.5230050600664504 4.687667026894294 4.698733994677214 1.1476548955971881 +3.584811724409174 3.3782589562661345 2.656171107080388 4.548705018458023 1.9037722163488677 +1.8900199971060299 1.5226371993618533 4.921057895810865 4.930452331875065 0.3675028918352928 +2.581792912942056 2.8811001431976018 1.8565693081187291 2.3131335832384394 0.5459265109873608 +4.729434061295591 4.253918525534639 3.464053920304323 3.538652028585994 0.4813313853357474 +4.801424307820495 3.771432601591174 3.632601331760652 2.5598171695576695 1.4871949346251632 +3.4363206632793535 1.6192014835368869 2.0547171573246974 2.6995525888313043 1.9281428492500878 +1.320356369489852 3.7040689695989837 1.7566935793787128 4.5180436593636 3.647895286895113 +2.5353433340357148 1.4152983001745736 1.8337903224066183 4.904371666728532 3.268481401197623 +2.3751309363628588 1.1963217997552729 3.6416588565275374 2.543530552110834 1.6110483399049906 +4.921859995526429 4.082603503635939 2.4287655912229584 1.7578119970649606 1.074490662916094 +4.621198575425831 1.1083035218792827 3.4681498682678065 4.409981870023675 3.636960156059353 +1.2793704378451212 3.439119572605587 2.1883991256997715 1.5415070283797347 2.254547784074158 +1.8554502532860324 4.0908450044799345 4.035345123538413 4.961997982166089 2.4198502462070026 +1.2678724583847196 1.7464137286896038 4.768664581775489 1.1211726194321643 3.678749701018564 +4.377437403568397 3.2117724141188964 3.7760843599124914 4.54532661054284 1.3966060675019094 +4.263523730044017 2.362172149997682 1.8687844929761335 4.347942036489246 3.1243175185154706 +3.4007802020315046 3.3770719563502816 3.175357146245327 4.679340549987748 1.5041702562030397 +2.7187769548353984 3.006684350440803 4.163972424071866 4.988915196453558 0.8737398046037956 +2.775887086798841 1.0828360914473376 4.058967575347151 4.364162519861891 1.720338811693229 +1.8488684200471228 3.056138499733557 2.893630088091411 2.801587991267148 1.2107736340430841 +1.2570381576585579 1.5352805087885257 4.1314918994975365 4.775456503709602 0.7015049660838723 +4.355745728085842 1.2587651977412597 2.2999318114070366 4.082928450402418 3.573564805625083 +4.946710919339969 4.7273158091206255 1.7975786603580928 1.8908180255267872 0.23838580831337047 +1.8525213830088734 3.9232762833013877 3.2083263843056637 2.154734933861488 2.3233770252661365 +3.3101724188167694 1.2911956358217815 3.1997283337577915 3.8915535146235283 2.1342186699475527 +1.8898399646570736 4.455855327387685 1.6104554613465543 3.2916578362010114 3.0677151541474275 +2.2851233879663586 3.541678135097144 2.577120156576896 3.414759282033734 1.5101553353986492 +1.0442527654714353 3.8178140515414176 3.788522914720804 2.051400864476773 3.2726495725986613 +3.3394203162815765 4.398430643413132 3.409192518599516 3.2955375302143595 1.0650916999752247 +3.6430898319799385 3.538935474826727 3.341133493465347 1.4156459489403384 1.928302469592088 +3.061779978255065 3.241593257588477 4.545196384694709 2.8984909177983007 1.65649380020909 +1.0976556546662217 3.321907603263589 4.032541178659894 4.688139530873707 2.3188587559971503 +4.946469217107423 3.5204659680879313 4.951604381965133 2.6896449586502094 2.6739382376818894 +4.136227084123285 2.597906527392696 1.2073002810061415 3.382382913393929 2.6640973317382564 +4.504527336327837 2.9331268226577873 3.8579324267852524 1.9868843746903773 2.4433829801344125 +2.2090110559706995 2.6021363295191478 1.7501251068991408 3.9086278708489077 2.194010406238158 +4.359400685140111 2.035126769324542 3.754566981600976 4.551715113277238 2.4571720288932957 +4.674379460755715 4.564114314398049 1.9331463610325037 2.067730295822697 0.1739863155678878 +1.1350061173260322 3.7008124066606336 2.1453192047091085 2.9798320796331375 2.6981055673940864 +3.4959340726623718 1.0654785506077977 1.5395406951056376 4.843384282825749 4.101523679902979 +1.003119025302686 3.802994425374355 1.3465071672395603 4.033462568594911 3.880596807811806 +1.499208399973024 3.1867611223185137 3.3849997096620665 2.091238844670895 2.1264174958080027 +1.7011530293238475 4.155779177265075 2.3166571291924467 1.9859099220420964 2.4768090845268125 +1.5950753875559087 4.810229021453584 1.4759211365259528 3.2110537105816275 3.6534775131529824 +1.6360079289518623 1.3090487381590243 1.1947964464639385 1.0948541334825 0.3418929340714535 +1.7412077519307432 1.765747167213895 3.9507710452173446 3.1596189254688203 0.7915326016564462 +1.3880014156127145 3.3334346775798296 4.607438123508232 1.650739062301274 3.539319131600048 +1.4976790327342857 1.594441608147748 2.4957056883144952 4.861212076898953 2.367484629397735 +3.3006134088923673 3.2353934156359183 4.725130405640508 1.2840325107691108 3.441715904837111 +3.6006141248110857 2.6165446746985705 3.284107957081244 1.5084108706894943 2.030146010824073 +4.966629614801567 3.289803539034966 4.92490675702615 1.3390955542484773 3.9585082632649238 +3.239592306868866 4.080995223611513 2.1382325284651693 3.0697704877518635 1.2552775939588234 +1.9139412645077107 2.691067599750389 2.203474762131632 1.3547880974124058 1.1507364580128498 +4.962364614687937 3.6145157058846946 2.794301877147201 2.7009381215778614 1.351078632728718 +4.141877724529404 1.094014332898496 4.5095786397931175 2.771059100992373 3.5088347696686735 +3.9619609366155313 2.4631548394692486 4.061649945221907 1.5513593079844643 2.9236926651487907 +4.340263343464113 1.1458693473790231 3.136314647223033 3.3979760902302227 3.2050927775933533 +2.885375942401091 1.3907073363389553 3.724712097491995 1.748853330124811 2.477509255387252 +3.374324604421961 2.1014820587057614 2.8634480009295973 1.3329004689343154 1.9906541371825857 +1.8283734679435906 3.544868872797382 3.354350618037926 1.4980889876324386 2.528253095597792 +3.0151412897139465 4.2246647858290824 2.763858426587709 2.1187449486380188 1.3708094277057359 +2.5621675556390446 3.172228649272318 3.533860316694838 2.5515860293047186 1.1563032965588194 +2.6194324418362855 1.0018743962177545 1.211065813030472 1.0545692079033344 1.6251108326392882 +2.6226226790442597 2.1709395190450165 3.042206898149283 3.148496993739485 0.46402075540591525 +1.6775606866265829 4.847950764460931 1.8783967304351399 4.202064976688214 3.930751501211355 +2.4111045853531206 3.5091362410891196 3.361122441503071 1.6564155603760615 2.0277324940830126 +1.9481471597977236 1.343954928739703 3.8912010287766363 4.03858185705916 0.6219078393267858 +4.502551862409295 1.6453749024233564 4.609731155133149 3.902460423639293 2.9434150350065047 +2.8066496100610485 1.711475018284152 3.2664419816843093 1.904198436062932 1.7478886875487218 +3.479129113102084 1.2724295920890025 2.4520028517069794 3.7802110560859 2.5755892161248926 +3.0538821527887037 2.85426502719132 3.391137647017292 4.409300486025484 1.037546415139575 +2.5288731934850674 1.0392289163017758 1.0862367999399156 1.259132667561924 1.4996443090232092 +2.217415155344475 1.7766831769285552 1.6699478671904577 2.890017076141197 1.2972330366700093 +1.9817513026018374 1.3293469834012623 3.9790678484565145 2.8139834379945823 1.3353101060102084 +1.2254059798566779 1.6176000691691272 3.9487134262915315 2.7082657229421265 1.3009714479712593 +2.4223964678131966 2.143511992275706 3.9238981519993783 4.7483936159437405 0.870384582101872 +4.047857485240055 4.040865278867647 4.022115330422536 4.174021946791811 0.15206745558046417 +2.863088816994492 4.73980855713423 1.3393461390138333 1.4733212094097832 1.8814957620249286 +2.5540830744923118 3.886263283319854 1.178382920738613 2.8112623419207603 2.107367863689664 +1.5837669544819355 4.432726026320247 1.3595927601971471 4.546358420761954 4.274581051795002 +4.6616878921752924 1.7729064603026314 4.624601355040637 3.170787366217147 3.233981025799491 +1.325261093435564 3.6898112579452906 3.8438412022909487 2.1505845963689483 2.9083011216140373 +3.8669463758674345 3.898721849956453 4.2796058808852795 2.057267506414659 2.222565529157307 +1.014320573441601 3.8080615525440917 2.8495406518353392 1.5704682617911416 3.0726234454110903 +4.309163284795166 1.8774457604355064 4.058839723065944 3.9594276302855733 2.4337487303476593 +3.2723315188248683 1.9646712017886672 4.439396515239173 4.561448192281951 1.3133438683833616 +4.173028111687154 2.616949864903658 4.212096246597986 4.061554511716249 1.5633433161190162 +3.0820511063561185 2.964704272700992 1.2686370264022755 3.539391010981081 2.273784056996048 +2.1747732071360604 1.335220626582264 2.9209993805706995 3.1005640031805286 0.858540615933544 +1.8720315196672552 3.990855053682319 1.655181675838755 1.7024591988332647 2.119350922446913 +2.3122084708123496 4.913034258746734 4.69782504873521 3.4930009274176133 2.866338420789358 +3.8825368820483432 2.3912334247362264 2.3255405998610112 3.4773860098750204 1.8843391017440076 +3.076045974016041 4.139115591422362 3.5291327960028895 1.6657843552594613 2.1452702447648377 +3.833139614960379 1.63500483870703 4.983498037190541 3.9923213593375015 2.4112709721833734 +2.0209028441006693 1.6044459297684588 1.3622296369004583 3.5556688995229444 2.2326245005170446 +2.3978801967498358 3.960074485159862 2.7584358023071633 1.765250013720332 1.851180435665782 +2.843532875003771 3.730354303942749 2.9520414584309003 4.136908981661801 1.4799875994185556 +3.1660174308450575 3.9934242873369605 2.996582328541999 3.15469959576055 0.8423794728995213 +2.988806395910173 2.546287875730696 2.111600205780602 4.955962617484682 2.8785795402970686 +1.0427102762301494 4.316959296245189 2.3285077741392106 1.0232554053949787 3.5248248738315886 +2.6325059530665094 2.705374072263311 4.942970934947311 2.39323330780986 2.550778651713198 +2.5834405899940975 2.159495968034754 1.9355399067818633 2.2317765536911156 0.5171897074191325 +3.8804861094850844 2.650360116124706 3.542466971860974 1.9073095491657472 2.04620374267475 +4.869455273187918 2.135088377653276 4.185538512513334 3.0221320147504414 2.9715781999524555 +4.819687438501887 2.8245966718221056 3.183403433769703 1.3341234683560335 2.720335192172336 +4.356421468377253 3.04195443518348 3.0446152901205976 4.577355064814647 2.0191866675179893 +3.8490313244188252 3.2676070416141862 4.357255938212299 2.3303928604420907 2.1086081031483803 +2.0867911387052924 3.779980766810954 1.9766475299232855 1.0737660445722113 1.918876257947435 +2.107713191152265 2.5295495602077227 2.2069753249755344 2.972825393425385 0.874341037354723 +2.8414769217978657 4.566886689448671 1.1831508734110043 4.743844662912441 3.956713172432253 +3.551974779935502 2.868165367726248 1.8829553875108527 4.127382378339279 2.3462838339350824 +3.70321409589093 2.2279536053229236 2.0220663890709134 4.39341439656361 2.7927915940274777 +3.535604705259624 2.525334611572819 3.1207482461013476 3.289974876441336 1.0243453102417037 +4.431220813443179 4.007029676222124 4.189375355135723 2.412532583966148 1.8267753978950083 +3.92964245415675 2.925195373213599 1.0981763009762027 3.6963121402553245 2.7855383281803614 +3.5651078577232997 3.9672516721097004 4.895342079968387 3.146051028428631 1.7949202852623591 +1.9870031964856611 1.2810775079381242 4.489865880720659 3.7089055090196226 1.0527251207787982 +4.284388951182187 3.8673960228100337 4.204668118765263 3.8184378230457385 0.5683809845904201 +4.555223992660394 1.821646459517733 3.91481026479848 1.1049988646366455 3.9201385478298754 +3.546278218439968 2.8568307384601375 4.134854476438662 1.6663122785111515 2.5630135408536807 +4.762976458000006 4.021944633654396 4.185236733268724 2.1192162408818924 2.1948960885780693 +1.032366679219483 1.631182750736873 1.7512180780213358 4.844254535667378 3.150469046957151 +4.067110772670967 3.8401492851282857 3.349414434617898 3.7977794130598963 0.5025362382165889 +3.724557096634097 4.106797085365199 3.4420796921350063 2.248437034471514 1.2533515880147588 +4.648996779964917 3.766460778515958 2.7139028747070366 4.751613547755213 2.2206158111902132 +1.9339563044563204 2.626726688461539 3.5187486250496063 2.049873109482905 1.6240462078358735 +2.7611036480794042 2.2760217047302396 1.6305548181310177 3.5221577262885493 1.9528097843654495 +1.6116272144394408 4.6340168530979104 3.6448327909354714 1.8733037169940543 3.503306208096833 +3.653400876261526 2.6764325661393165 1.3404290191874724 3.6456098399803487 2.503662456389512 +2.174353552145678 2.9321474905592058 2.9978817648083482 3.2874803144943083 0.8112453223757268 +1.3466963540502266 4.070628262686661 3.386818605002969 1.4892677599824742 3.3197144835551327 +3.1540616974876037 2.0583516904349333 2.136742760482885 1.1996426443874975 1.4417825935769069 +3.4413037309674883 2.4084853088662643 2.4711289050539293 3.603632517138899 1.532735568980235 +2.343855380719686 3.311125631046157 1.5879809642404417 4.010087811302135 2.608105311476086 +4.035560924034906 1.7917211246789422 1.1526166212644293 1.8094981391158846 2.338014194496826 +1.6841032585588867 1.5757957628621955 3.188586113633293 1.518237544198274 1.6738562832685795 +3.9795248055845645 3.0952211339505875 3.969428052652498 4.455020461651072 1.008857260142569 +3.8804831507968762 1.9227627379090722 1.2511510897479288 3.5590261787027866 3.0263768174594494 +4.918907913971873 2.346791822793544 3.8681809358402717 4.7953880148989345 2.7341349919042006 +1.9925779723454995 4.22726310265311 2.34786557842693 3.235144950616948 2.4043881375376674 +3.3233473520670187 2.5658689938422525 1.3083603189353799 1.5095220857572773 0.7837343424973762 +2.3377281292261856 1.0434952042960233 4.440512494107498 3.0745389480297796 1.8817339324562918 +3.7561927008772695 2.609679770461172 1.4826423857771105 3.4650684088137242 2.29008839052646 +4.010596353981816 1.9008285570691599 4.655785391713383 1.0002988980171454 4.220628112317561 +4.750942077848363 4.338706692901713 1.5755790587593634 1.102286300940274 0.6276496213701652 +2.580617366389656 1.0019974761208625 2.4163036814668843 3.0584653162973012 1.7042336468924475 +3.3077870024358655 4.441265866193706 2.2492115915101127 4.864378060213324 2.850240339623203 +4.081698564949624 4.973809945844041 1.1044476760381903 3.6328749410309555 2.6811950973922314 +1.822349274110243 2.864822154618449 1.1176226058155563 2.7592534681476923 1.9446597632378855 +2.0339466190437676 1.7252317865715554 3.973497897714974 3.485623479269136 0.5773441746152903 +1.634367832996761 4.54465485696244 3.868420318587236 4.82798023062994 3.0643964800042456 +3.2616502670200465 4.088546031118549 2.9739885183209487 2.1828297650076136 1.144416348025646 +4.3502707024207155 4.319035807101708 2.720547412492734 3.2119784869683614 0.4924227042347448 +2.4406002855175943 2.161681373290933 3.9054041214304824 3.3658046363345817 0.6074235457351528 +1.4781127352469752 1.5394303211409093 4.893646691663894 3.533077501076982 1.361950207868916 +1.6133567531625723 4.154844810130746 3.224743528903552 3.1289461289412968 2.5432928823773704 +3.40395535895751 4.283976628093541 1.1127923178249408 2.0637936872996607 1.2957009835894173 +3.559425403130922 4.342111599105767 4.249860641052887 3.5601260868672826 1.0432312479058456 +1.3060304853096523 3.415903901152467 3.240136984073291 3.3303009107330306 2.1117990824297017 +2.4243575343732404 3.675652523458861 1.7399050937304144 1.8662356078115199 1.2576559738254258 +4.102737599577284 2.5939329053646003 2.588583711970338 4.0290302703471115 2.0859956598271534 +1.2683548061059238 4.323551938960606 2.7168545716768624 3.115738371125879 3.081126061372101 +3.7044243302423445 2.2624845315107125 1.2015533041428572 3.723214113078929 2.9048173124123218 +3.8944662477315135 1.9084500577989991 4.579220996870257 3.922330852701364 2.091832920713385 +1.5439179285477111 2.2647958674551623 2.190092588982515 3.520715961949584 1.5133484606955907 +4.749320570909093 2.772115967850225 2.7268076723647754 2.3205561265506294 2.0185089449476212 +4.855554391008551 1.8782569900676753 2.9064772723305197 3.50983452177418 3.0378182605457997 +3.0614740223452825 4.993183580058914 4.885337138122065 3.6645331287413954 2.2851398742051026 +3.3088957402030124 2.6948238967656315 3.4600847602152243 1.2320580597209294 2.3111008647434836 +3.553405358972459 3.661030705865218 1.5152660654667462 2.624242933124926 1.1141871065017466 +1.7399445869660601 4.886595074941315 4.88157424823034 4.295648034656201 3.2007372308935698 +1.1192590913157034 1.990663727302779 2.869820546967789 2.782264975819273 0.8757922228810383 +1.6151862548619897 4.712376985696514 3.1600379229638715 2.181147825621106 3.2482020020071136 +3.9164718191564103 4.277478144627731 1.7706593489317055 2.987220353199098 1.2689941860128404 +3.08612815463691 2.990816614413657 2.816163101497541 2.190221726758517 0.633156295325181 +1.9095922805206569 4.012723378642313 1.5477157823278374 2.0810390141882222 2.169699077182919 +3.5937653529769658 2.531448203022391 1.869507306178194 4.340831333205227 2.6899740098463254 +2.535683927552605 1.061580980829711 2.9229560749776358 4.45961727708725 2.1293912622169944 +3.437113730917754 4.702533425638581 4.310469449960293 4.069592671968103 1.288141539569022 +3.1889189614690836 3.303298628537264 1.9489301298308872 4.143752913093611 2.1978011188839983 +3.0179760961670032 3.4238561112241666 3.409824258966697 3.3794609075902953 0.4070141517559432 +3.84231100634364 3.639123859428232 2.8251760893158155 3.3716118083544324 0.5829897183594869 +1.7728767479883207 4.5674972517893275 2.077586551012463 2.4717850683255147 2.8222856395688942 +3.3833131560854977 1.8225359105452692 4.553096755723811 1.9837220667016746 3.0062787466872964 +4.050894534136738 2.7818635111425003 4.642978835927257 4.117099004683119 1.3736773035291672 +2.373000457452568 2.2912518331546172 1.1965859022237817 4.568526669183179 3.3729315696375073 +4.211269869328546 4.999641082532659 3.7143853497752874 2.1860978047591186 1.7196487984645221 +1.393222588741859 1.6648272462251041 4.739723928666491 4.359738701554477 0.4670737230780167 +1.781505242486499 2.6193478354744126 3.683584519255793 3.135340656477803 1.001274959088882 +2.9728174587359244 1.782304156414622 2.0370200323723178 3.6201569154838915 1.9808191017031822 +2.1872632806835166 4.654629729884987 1.3918807931799724 4.073091690040838 3.6437328480681073 +2.544086766682479 3.9759837163754783 2.901241144087166 4.672251052484559 2.277455810807722 +3.9170390807571325 4.880330773353446 4.202977032039799 4.561058223847388 1.0276930596979887 +4.305735703103247 2.425242297342718 4.88304853916654 4.508928061130078 1.917347537927088 +1.5194414952185626 2.377826137389666 3.000050782671004 1.9356197465126375 1.3674200615218377 +2.342801707324345 2.6293974722329736 2.272329168339613 2.740517490746916 0.5489421077874485 +2.656975488619697 2.379444608388994 1.8497357815361366 4.9518797133436605 3.114533731256072 +4.916294547476612 3.653720062875935 2.627515079821846 3.8810477421739393 1.7791679135899998 +4.045304837079582 2.199104776569671 2.2900785402656156 3.761537459425256 2.3608570507765307 +1.1791857879501797 2.4535527796234406 2.888478449158776 1.0370316831030597 2.247635726047379 +1.2731415113085607 3.9272574482419027 3.092651439968641 4.341166629689171 2.9331078373708737 +3.927676931573673 1.6546930860064841 2.2467868851161357 1.7489577184378886 2.326862574671088 +2.323330418117757 1.841451885193968 4.844769578766801 2.9997612479797353 1.9068987023873234 +3.1464502359378654 4.479636852410168 3.5913306061013475 1.942632752031539 2.120280917320924 +2.9369821160182146 4.274913508452314 3.0374504843315373 4.746315951323842 2.170318316547016 +2.9719842626945194 1.9709241598897678 3.365289002410088 2.406352699852434 1.3862467896411537 +1.4421962873701264 1.2083142624057719 4.021376419912352 2.003789666366315 2.031097513583694 +1.9059190972706674 3.3457870925213906 1.52962561365645 1.3961246227646922 1.4460436917038217 +2.710680691465073 1.9253038926619954 3.5619495509939854 3.199221823290915 0.8650942841926553 +1.5115724899588732 3.3270053311366414 2.5728365865221594 2.1776200659693155 1.8579538473666886 +2.84876508986548 4.537751994296846 3.2715865807987883 4.67214034907361 2.1941348229243913 +1.8967404580437024 2.183188516776852 2.2990662288293215 1.8305047694381646 0.5491833314829945 +4.4049733706453615 2.2814313412840423 3.2913800249425504 3.0684253172182694 2.135214170091705 +2.3037871732136335 1.4615696945217564 1.3617848041672622 1.0942719111775023 0.8836817466315874 +1.626978350572419 2.8798711778383814 3.580814803647436 4.8917475662635725 1.8133629379456484 +2.127707639204895 1.21577135722282 3.9991221027146975 1.2154629181858403 2.9292296321741578 +4.058981879395835 4.092030788537039 3.1191897187827853 3.163197987275636 0.055035970884162254 +4.189137946657416 4.652896524775277 2.9723364646279773 2.3002611749553292 0.8165520275931434 +3.120416056798582 2.9344037267434806 3.4900790752202773 2.4745725018040132 1.032402144314012 +4.905907232429975 3.100285016229522 1.528514617856735 2.5902948665450385 2.0946715456465315 +1.3410496495985247 4.500979124265317 2.592087175422622 1.076963622099671 3.504390627013763 +4.854024941477326 4.46244143250906 2.1338847895860296 1.2251319515387906 0.9895298707744055 +1.4474549857604995 1.9340890033848415 4.633319150036986 3.5582296231394652 1.180097520526987 +4.034817610999169 2.732371486236254 4.210417555452416 2.791635309770401 1.9259566372513262 +4.740259401097129 4.676242185002724 3.073774456187185 2.6845718071033944 0.39443238458615204 +3.499193532268023 3.7638857746284726 1.7288045656426716 3.3139878292121603 1.6071303501168217 +2.6448982058589965 2.902667684547974 4.256592282522542 1.8254920205719536 2.444727712404759 +2.4742287538563477 3.8671591070138107 1.0822185785145129 3.456579684674904 2.7527887007895413 +1.884628090913218 2.8396486088683988 1.667348087950323 4.509620798127008 2.998429313612462 +2.3583861280224814 4.6054755383674095 1.9132957786309284 1.7694004680365731 2.251691959059978 +3.297435021004951 3.787168326856242 3.542982929291452 3.7656092287739558 0.5379602030646019 +4.820674913274193 3.8487270421484845 3.3405569772734496 2.5753089844589727 1.2370477576441348 +2.4586349177520117 2.052728033796763 2.4391220623718977 2.8244621055274237 0.5596850429494812 +1.6860983172001824 4.971679955321527 4.420968994409839 2.9391310227593817 3.604287790255556 +1.9255367103721204 3.802168619017607 1.903201737934534 4.928092768938549 3.559734971875706 +1.36126875118953 3.008551120677099 1.9927285742656693 1.7841515655519014 1.6604347543304927 +2.8554056934712757 2.6183273906135103 2.883690365880249 1.145650752588753 1.7541344928643217 +2.740287282690011 3.279723722047044 1.1474232337019399 4.119770968002095 3.020900979129482 +4.004884149632262 1.1947527613880151 3.336780655962434 3.490982508757591 2.814359008833272 +3.7814452428242595 3.3866223454451934 1.3540788725926407 4.23754003893756 2.9103665436013384 +3.657463974413711 3.222423934518325 4.323318079772086 2.963848827265789 1.4273809879714001 +2.154122259434796 2.109698235103147 3.9968632755715756 2.9639326864472584 1.0338854365385597 +2.2820744329698717 4.036148868167205 3.8464834361902693 1.71353291447216 2.761567499140732 +4.038656225181771 2.7601206737714765 2.2540725483411497 4.923217068732875 2.9595583499835234 +3.1002123436952114 1.5528859427309638 2.4300472160008457 2.951401000208405 1.6327978317686833 +4.299121757583146 1.3082208723247466 4.901333270694208 3.6035853978655794 3.260312507547506 +2.075666949428623 3.9658726028001907 2.4671262160069065 2.0413263665152623 1.9375713983915388 +1.2630153666150825 2.007866241681387 4.3880485679377825 1.5666438035184993 2.9180691682643287 +4.098566744964185 1.7606429674653379 1.5293142430940558 3.4566797955248036 3.0299547128779274 +4.510802873124522 3.20556826685975 2.353069284772988 3.7593623037019817 1.9186707462406305 +4.104055568871194 3.6367718205569943 1.58798051888758 1.7447506174219747 0.4928802747453508 +2.9723709028483443 3.802964543068054 1.4783588483849055 1.8656469584489992 0.9164485121219009 +3.6894936347307214 1.9833120457837063 2.5357574541208203 3.239570900280099 1.8456459523582416 +3.62154268673979 3.1690191200317592 1.4944199517168237 4.533078003566251 3.072168669603854 +4.790585262728137 1.181514628740549 3.2494210371461474 1.1968033821144077 4.151942928179476 +2.6124683916254705 3.612613107084349 4.742702079940518 1.697460055906844 3.205275095339092 +2.863374704352639 1.810572459124165 2.017028224141843 1.7815338029314804 1.0788188865510837 +1.839453227152399 4.24916322184599 2.773562189426949 2.161189630672493 2.4863029600677518 +1.2169956262547004 2.3852194408712477 4.694925735780462 4.206544713560342 1.2662001831866896 +4.02284491382199 4.068611177759502 1.3745322577837422 2.197662825837406 0.824401894089979 +3.613208525899241 1.486350855785175 3.5996861396286475 4.443367813824612 2.288082672522376 +3.8972353416862973 4.616319726753678 2.8684069193463215 4.4359537011112415 1.724611627546704 +3.4948449630706446 2.743836919541789 2.786367123134875 2.5104983322781873 0.8000729161856253 +2.2451886141281885 3.475836099161803 3.0436181130303726 3.7724181377985975 1.430259664718867 +2.372844046727555 1.0741323090424975 1.748400201880759 1.710572059221224 1.2992625392806534 +4.323188300197599 2.9624672506334 1.7195772493646988 4.705996136131469 3.2818073590575616 +2.605177792683692 2.219347858721062 4.102855763447696 2.29313104275806 1.8503967959918188 +4.3331314649493375 1.9922926214516097 1.5496358735664537 2.522951374544246 2.5351271281084564 +3.127334302519873 2.5129002859316714 4.304227766028466 4.559909101893856 0.6655089077169599 +1.57033128979449 2.8511515872973114 2.1934907291927965 2.5245891678389945 1.3229235845539855 +2.6767421496165915 3.329867041993464 3.9990972370122106 3.990576709748254 0.653180468497916 +1.9306479642445074 4.212474159451736 4.617069023387758 3.8406790338498817 2.410292969949612 +4.447426708550782 1.7711935187505423 3.040622006061195 1.0467427310885418 3.337331066788825 +2.756314688981035 2.4395413322937394 4.013653672623995 3.7813188293133186 0.3928420024935385 +1.5123018360041263 4.23524087933258 3.5322388462833625 3.617982170511304 2.724288705576583 +2.4803188363717563 4.797905399508684 1.2437293723190677 4.5590910453104225 4.045099566187818 +4.405282677346314 4.073353963887169 3.6658061243207785 2.3941897109431363 1.3142240956511417 +4.7138881848630145 1.4091457284920477 3.7573030196361348 1.3466201966773665 4.090564065730943 +1.5485096348785237 2.064996826893269 1.1916944101831826 2.1703261588146376 1.1065618459646689 +4.619617310406625 1.1911653639200916 3.3877008080641433 2.2414460313801055 3.6149941580088716 +4.800375296531614 1.1180135737534989 3.823581443890909 2.3987310708051126 3.948415687723893 +1.4267885868816448 1.820027702092105 2.5529192117974047 4.264233948635453 1.7559143288471064 +1.673563598303236 1.6290429890499447 2.9499352582436584 2.4834338624889583 0.46862099493019693 +1.4219589322358988 4.389415690296442 2.6565248900567635 2.8084406062263634 2.97134279338122 +1.1827032906117712 1.902527650697647 2.7688822204385466 3.403371619716623 0.9595435931573377 +1.748772762139637 2.7950772404349773 1.213595232943919 4.744052299954376 3.6822384718137093 +1.0667701605599746 3.686366486275597 2.647093772496718 3.7118038874825716 2.8277009280784946 +2.4942959652773147 1.3401388156336371 2.766291828148583 3.949232243265143 1.6527028625224067 +3.6561973316362937 4.660201556372617 4.58503423726563 4.171280859602295 1.0859172808350568 +1.604072606690723 2.3799026284396825 3.273677476225237 2.9050128999736895 0.8589678646082892 +3.7584981886289373 3.022563667076276 4.951186803415916 4.4544755820822415 0.8878747982749229 +1.713508943265098 4.741608881419763 4.32078709064181 4.747522107862367 3.058020930336239 +1.4947987220319163 2.9688386392434065 2.679075364078615 1.6247892360911096 1.8122673415364918 +3.729323939330748 3.9708625971297598 2.8897222411415493 3.282887482026835 0.4614323675813531 +1.200010587534317 1.6177132833664225 2.945345767461825 2.3328321684710076 0.7413827965727908 +3.8949087135853278 1.9401995504352647 4.338045157307363 4.4090676822408765 1.9559990060198782 +2.4949269775240945 1.964769821069995 4.040729790504368 2.8380854632015646 1.3143135046605547 +3.9117840421277794 3.4666681210921833 2.7744396759458203 3.8798162252054302 1.1916314442026317 +4.4965339045139165 4.36394056336667 4.554670305696349 3.204283819819695 1.3568804867617812 +1.8100936835171253 4.189779916676181 2.369974073044323 2.501521719915327 2.38331939774845 +4.251783446197511 1.732573594574577 3.450491483835721 2.73599681461258 2.6185723035391497 +3.895902395681682 3.4232626869296925 2.6222761210797056 3.883243897041594 1.3466358179936537 +3.1868170277260837 2.833342783474089 1.9436952828730099 1.1112505473197025 0.9043828166766187 +3.4642543689996463 2.2506267871647774 1.4040987900810604 2.924472042919591 1.9453603099007564 +1.6395097847391078 2.4252940032943537 1.9131641418351153 3.0372705568486804 1.3715218082134633 +1.5499083981900017 1.0104637656845359 1.010477055559814 4.757163420592338 3.785321549017941 +4.108517522990146 2.9582290134456644 4.575089413429163 4.0876393004625555 1.2493083157576532 +2.3271131709612938 1.398412112043216 1.0665804505364758 2.957723430142821 2.106871478318012 +3.0262851761055516 3.277560393787511 2.205115213854748 4.712014807578931 2.519461213838306 +4.7630352295775555 4.695434675315124 3.4305865237703608 4.2307715696337915 0.8030354553567661 +2.1862143096758953 1.1136867672649622 1.713912186786306 1.7496025123185435 1.0731212087022757 +1.502655063425132 4.657760253518962 1.5970269041183105 4.9552876133845825 4.607884954288532 +2.0803449366940194 4.469699840123113 4.470927258088745 4.579267042299149 2.39180985100894 +4.166785806961975 2.7073334070990125 1.1659765171337035 1.0627382643026437 1.4630992598977595 +1.0691766303967492 3.9418776562782964 1.1043734023437959 1.2319005079841667 2.87553027227569 +3.5369016366365384 3.9978976079522948 4.750176018815127 4.752490160654979 0.46100177962976735 +1.0202555214385134 1.0502671980607632 4.22164107969468 1.0689557760742865 3.1528281469813244 +3.90742838741092 2.7777079818323234 1.4033981748564215 2.110124706407837 1.332565414971949 +3.684445750127235 3.139847308440468 3.287462676933146 1.6799467789603617 1.6972609772580358 +4.95582676376687 4.349527432691314 4.319426433177981 1.256680025626594 3.1221810382858313 +4.3057607778019396 4.641307930666028 1.5170301711283503 4.735477068942819 3.2358912722535615 +1.8638952070881651 4.916227833050007 1.968852193288786 3.949309434814323 3.6385361541452426 +1.8720483133506431 1.7088032046133712 3.1096811828156445 3.0299110018456012 0.181692727698819 +4.951788064247609 3.1146318357370153 1.4551589343649391 2.113031667336704 1.9513942555882977 +1.7842562948501715 2.5569269665162895 3.426669490364979 2.5283077633188555 1.1849361837138164 +2.147854662565964 4.678778813201537 3.3660816494411665 1.122898027093405 3.381929895760647 +1.8748775479938713 4.269684325322486 2.5339049535156053 2.0806046088713304 2.437330651182495 +1.5311317370126791 2.9888641779134124 4.043372856863683 2.8011318223109254 1.915240626443872 +3.3693318207548497 3.3081689829733523 1.6671329167523954 3.0777497934462774 1.4119422316578991 +4.51930769428757 3.0839280935680518 3.9545106626509265 2.9281704295952204 1.7645647826448778 +3.91819998927193 2.7551734692823255 2.7652189714597273 2.441358368357535 1.2072764291747131 +2.022717149117059 1.7730133747481522 1.0491588240828573 2.0311119801308726 1.0132048043740889 +3.1882916150179867 3.8109281347090938 3.342355309859731 3.3184473402938446 0.6230953592042053 +4.132229269790644 1.2364190577754104 4.527385650255702 2.8521297772531775 3.345474409413583 +3.620221140049779 3.6072171881184385 2.6550489152685657 4.145254826156646 1.4902626478616463 +1.8577748490330923 1.701888772895543 4.055913266808788 4.654752127003426 0.6187959673533554 +2.719797348341913 2.330162098144476 4.227387358553839 1.7508433488088326 2.507007351485092 +1.0190529990430996 4.100128268317279 4.891422281477171 2.358999886648443 3.988256260668693 +1.810063014194729 1.5456254852385913 2.9358412968004135 4.320732930867781 1.4099120698930876 +2.4123309024001336 1.1786049300117103 4.2793699940031935 2.7983216999663805 1.9275849719831069 +3.197337392690236 2.686690765320251 4.724995970154566 3.4593168554625184 1.3648089974102553 +2.0413651672564272 4.311126047283364 1.5963447134597661 4.744408114690128 3.8809944126044194 +2.7492673858478804 2.3062302989199592 4.075630762115596 4.695735745496874 0.7621102615815337 +4.438658038651578 2.6715447577973137 2.4248804556787773 3.2483968879484735 1.949581663226686 +2.1459252022344044 1.1961971577118025 3.0684427695451117 2.4784152825647916 1.1180857721771784 +1.4841267283090205 1.5007452444222524 4.377436528478761 3.749407126392903 0.6282492379319895 +3.438500372652007 3.818233325553547 1.5828468453060682 1.7005024950375294 0.39754240960312087 +3.644648217822045 1.6740077822220751 1.3365675881874481 4.70723363839282 3.9044606987942294 +4.85582369570347 1.1425433115120196 1.0748515345308145 1.5521122665596954 3.7438254523892733 +3.669083424114864 3.335286356645049 2.5353733306392536 3.4693951514180252 0.9918756191893922 +3.442157939636239 3.750911407346858 2.503093632788067 3.318491882454895 0.8718962148002815 +2.9381667075596636 3.3985052676949716 1.5768140648069555 3.927861416194711 2.395690973062851 +2.1706101996721023 3.127211991945591 3.5728177348103998 2.2224299292064194 1.6548819337054788 +4.722591903054973 4.912897637470742 2.724341355826898 2.566034967514419 0.24754228958314742 +3.057586163083222 2.1063981115607935 2.814305736441405 2.1244370389344462 1.1750223526209966 +1.6644612556754916 4.636241796205878 1.7749887693899384 1.5779975285446506 2.978302390632093 +1.3808985515197802 2.38161439663419 1.0858502031231634 2.2245678414063788 1.5159518667821714 +4.709486196864335 4.3821350099682 4.293230156243044 1.750489510570616 2.563725568526581 +3.527642099339957 3.226370945684235 4.3612926881136795 4.3600869930247566 0.3012735662578066 +2.5056180446650247 2.278471833955135 4.6787947070606 2.3832295174779365 2.3067758756896066 +2.0049530854004756 2.7437260664471186 1.8294811330925658 2.5950234334842928 1.0638799421051233 +2.7869936848229035 2.4983557664984284 3.442286319417417 3.385892221639546 0.2940954643629624 +2.1477283544664427 2.3936253159304823 1.634428079101156 1.545972202154819 0.2613230908733343 +1.790827247177444 4.509160208104172 4.752879298737486 2.789066452618766 3.3534899703207075 +1.9190711154206785 1.0145611759330246 1.7938914815072708 3.931569257107606 2.321164471322003 +1.058716244879248 1.7049292235693105 1.0047882437434863 2.0597466792535517 1.2371453085556798 +2.337737676079866 1.4980185585297163 3.1539694990512075 4.56322084270931 1.6404626012138677 +3.2496887891499284 4.674564630406199 1.8427648917412047 1.0237727360284419 1.6434778106548333 +1.2187231702842802 4.493115221056126 3.9946599753788083 3.5030942392609425 3.311084440947248 +1.807497795367071 1.7252018850643225 3.956391120170027 2.941464351204284 1.0182578078344402 +1.46118540341965 2.5748495559184215 3.621280090713562 4.987113462191255 1.7623134350060798 +2.1105402243043283 2.166259787079792 3.9479250919340196 4.409681741904603 0.46510630340594644 +3.9183851866106756 1.1630976479071853 1.4220282061604657 3.3841415098807404 3.3825283498547103 +4.482856235499842 4.018950189162103 1.4484866870853188 4.475620736755658 3.0624743875667373 +4.564686797713082 3.1000262723607697 4.60924398147385 3.6797460746463755 1.73470366729363 +1.792388732622245 1.693087182257218 2.8491425740489307 3.64955853069081 0.8065522311368511 +1.3332419517661696 4.4221008877525225 1.589583341095584 3.954073720757047 3.8899697019301263 +2.0508523327076977 4.238342713357286 2.430761310257668 2.3350164210391884 2.1895847207280976 +1.7654135580294152 4.707248808575515 3.504195400008606 4.151642446570471 3.012238755387314 +2.6763183023068966 3.949164329395832 4.340267062143745 4.608845514590841 1.3008733196568234 +1.2945794980332037 4.966908763313755 1.9648714492791468 3.60707940899669 4.02279122197457 +4.917687561538853 4.2155772781617475 1.7715924462397354 1.494427147891877 0.7548373683331637 +1.3188833574323038 2.1471772812550824 2.8062605087287147 3.0730352183715084 0.8701951332584732 +4.686977480993588 1.5076497389829244 3.106505992813371 1.659046167601749 3.493317168068236 +2.062288766582773 1.5683464407747199 3.041393741997927 1.6798598917601208 1.4483623326253876 +2.910158317793478 2.637205086631148 3.065642734908582 1.290981010288399 1.795529922678494 +1.0526351215642231 1.1277515222132606 4.618344417578703 3.6681168036800145 0.9531920015726429 +2.7136882525599 4.90964652892925 2.0823069942029684 2.613473088106982 2.2592853230321075 +1.9144887751742066 3.342171486466436 4.99954390915846 4.2758067681481045 1.6006477980494567 +1.638809888694166 4.649359467839077 4.01298393867636 2.217946104295905 3.5050776874909455 +1.5591907086782952 4.352106150887516 2.146297769967334 3.426163196654967 3.072203147215536 +3.5606200501858574 1.4934153560836312 3.9411646574362877 1.0033433895421981 3.59223176443407 +2.1231064308893473 4.0552920139822515 2.549360094796565 2.779584977553969 1.9458531866902824 +1.1545724755388558 4.1246938327699425 4.778391128970697 2.215512913207176 3.923004668046604 +1.2061854184966183 3.4128558439126953 2.8881556737918297 3.7464577321114287 2.3677155212824093 +4.045385667698694 2.234006695101993 3.1338600759290935 2.7759119494962543 1.846407496622092 +1.410069592655471 4.622033941086592 1.7725310470738473 1.315977555505 3.2442496923412447 +1.5005354823401116 2.2421119195386727 3.972816439906025 2.2942247110179164 1.8351037585105863 +4.8568867562898586 1.362735635267275 2.9394417340770373 4.227236077723905 3.7239100859274576 +2.765860599212265 4.061967042403188 1.4219005273852163 3.7104304417655123 2.6300686457000526 +1.0115133947856298 3.6295095372803328 3.4082426657516973 2.621605529180934 2.7336242950978824 +2.7999308144400037 3.506461048303904 4.355418048028682 1.6903529648429307 2.7571283736851373 +1.1805533990241788 4.428027238090092 4.5855090989815315 4.803824862382383 3.2548038509204815 +1.9145135082621891 2.3671711147806627 3.2068830449310863 4.50445751365878 1.3742628608213894 +4.7660775759980005 4.92412496976157 3.3029208945917925 2.6750123159070918 0.6474937543029259 +4.093056697512955 2.0926540919608607 1.8722629717018702 2.8782491480816716 2.239111156545574 +1.8250548273501348 3.406266176455617 2.7722697410654895 2.361400959552735 1.6337204430874195 +1.0596461527648078 4.049181030698175 3.386266501665314 2.7801153681370128 3.050366860405108 +2.517100030802992 2.5526612272987967 4.928902466479739 4.904105288612772 0.043353185884998584 +1.6104505628732388 2.9825755876056532 4.396499250227988 1.8682996422926959 2.876546599841743 +4.854099653365629 1.9093215539607438 4.724714903279901 4.02228799804768 3.0273951859525647 +2.3643655070479572 1.7819933083553652 3.690615603569295 1.1577388535063515 2.598965565146923 +3.950770628080094 1.348733756533934 1.258638590047899 1.5116552989400627 2.6143093420374623 +1.6928632701515625 3.6873708320616525 2.488927384491178 2.8153085944563365 2.021035652514535 +1.2082251743504617 3.907655973531545 1.5220180141061457 3.9359622033205683 3.6213330678369666 +3.5505431867439023 1.045845943265411 2.280924232625069 3.5439874540510155 2.8051447347343132 +3.2661733138362856 4.9260688380193045 3.025351593083402 1.0036815108244537 2.6157987446865483 +4.997183179514169 2.4356958078450344 2.4473400883900456 2.7755007584821803 2.5824226959612493 +4.781216286746672 3.7373222051650328 1.2944233008517445 3.5245890033565264 2.462387848042997 +2.8732052277403253 4.682933007341418 2.913473791922135 4.137874212832962 2.1850105324658076 +3.268372736347185 1.7442303555433356 4.70512379269381 2.4385628811538997 2.731356505966047 +2.229804446346273 2.112430439184351 3.7289608446208944 1.393677329744044 2.33823132996135 +3.730578837124094 4.5371761623413285 4.004321069147878 1.6698846026930618 2.4698568502975315 +1.2104740173424404 4.6917352406450625 4.937815370735166 3.730822995510985 3.6845637867622507 +4.454544544957848 1.841254727541655 4.174487154948625 1.266587900585698 3.909624245798517 +1.2908940489758027 1.859685628572382 1.706287426741262 4.046826434053958 2.408660770173391 +3.958716078902263 1.2919987561223252 2.3157950167482557 4.408947392632525 3.3900837966464135 +1.668449355852324 2.4169509922936414 3.807358104823088 3.140433631410807 1.0025183055643314 +2.2223932667144966 1.198677573852656 2.8008331262390924 1.0576889477177445 2.0215205779126917 +3.1815546365249245 2.146589608432098 3.3816326233525955 2.930386596135105 1.1290596027025115 +1.5567639605129697 3.85993877532999 4.340839684881799 2.949792918115185 2.6906551869273896 +1.5888094433848665 2.99011245479427 4.217647789464587 2.1319660963383704 2.5127113353560744 +2.3108244002945897 2.2823011939976605 3.9675107466462918 3.9553817435871554 0.030994935274423763 +4.318840565797538 3.0645525539591283 1.5978777811570732 3.9079045172046842 2.628585539391163 +3.3755177881843346 3.9425929400905795 2.655409407720352 4.7030674333045965 2.124730010530528 +2.659756110126517 4.872530252847692 3.450699673967632 4.505496245089322 2.451319076159917 +3.0861279930045105 4.978854042512989 1.0681051366794079 1.7086234580440207 1.9981680656270413 +3.540421923604482 2.0100812529014176 3.4516559527305115 1.4177795014314682 2.545308623243298 +2.9238238351392902 1.1833585588439428 2.676600823828603 2.478217536586126 1.7517349418924575 +4.810322325114209 1.1952106393121302 4.852773891395772 1.2563456239130835 5.09934591726932 +4.840701881168492 1.6883857903053237 4.312268619542548 1.4076983868903787 4.2864466604781075 +3.1090651668077514 4.740907411170047 3.346513638277136 2.1066251208680566 2.049446912239558 +1.7579673244208953 2.7933150734270953 3.5537713536270874 3.578690534054426 1.035647588190778 +4.936659285364641 2.4352262612905022 2.3870959937939893 4.979971435095482 3.602800331413483 +2.738520118147892 3.9870205606275646 4.034029789270546 3.2657934997921534 1.4659264481356036 +3.832239009141676 2.2202897637313708 2.3080272449873793 1.2971090441935647 1.9027180501784953 +1.7035267027072973 2.8528350578271713 1.1722107440757337 4.311647296012076 3.343197804315847 +1.9379671999810348 3.1849299194455076 4.475273637116499 2.8546751963564128 2.044811807949146 +4.884712230497437 4.626566634502798 2.635945822371628 4.826716830954568 2.2059276417822358 +2.8710962494688386 4.799960164194571 1.4467063298288414 1.767745050192223 1.955398133757838 +1.9944371435795216 2.2681149373677623 4.988782803524199 3.833214410979811 1.1875343551495339 +1.8959792101522392 3.5022630518430544 1.0414197302753392 1.2554986085143098 1.620486823823341 +3.6428754635805216 1.0184749146388534 1.801835948856147 4.515609126158236 3.77518782302677 +1.4294606847400773 1.2352731810395463 1.3338583299751852 1.6315402567438717 0.35541991519632293 +2.1386810048782774 4.257513439088228 3.28100381186871 2.327264197286439 2.323589924380721 +1.7230647080172208 2.5681084523582176 1.6787266352420156 4.740421472396168 3.176172886620979 +1.2332694426357746 4.7496801212973265 3.786812943661641 2.198418060978307 3.8585155648694225 +3.981093751152786 2.537864993820828 2.5261620559494724 4.607967460904546 2.533144881385608 +2.5788260759101047 3.7254935859032257 1.2303529109069138 1.907002991681332 1.3314284473023141 +1.6044969655319234 3.8604774489692213 1.6914691047598005 3.4145920900466207 2.838767472702502 +4.3981779324116985 2.9506934202647566 4.479706073084826 1.7549555567506339 3.0853649361410587 +2.6260266441672493 4.565523556636208 2.8067227521765243 1.4023759755812968 2.394543410007434 +3.9722231755859116 2.5619035892261235 4.823336521438017 3.656260640367906 1.8305921030763843 +2.7974857304748717 1.7922128659177483 4.059818949602359 4.318627206807749 1.0380535854244595 +1.5921859544021908 1.0355449774495114 4.508929136366728 1.3848014330858183 3.173329967657017 +1.4620632132971703 1.8607630305905425 4.5734605980591105 1.024191156459901 3.5715927978116055 +1.3310179497963048 3.5110238147529196 4.04119573158048 1.6410238040748921 3.242414355512128 +3.559953948587997 1.0503395184075184 2.777958579047365 1.119961583980143 3.0078428522484395 +4.648930473620252 1.313039682491722 3.4848353095282785 4.348388326806761 3.445851300330138 +3.668260184335584 4.380761565650941 4.462159594591579 1.9702500068137705 2.5917699766829734 +1.3098062583932997 2.4596683983259138 1.596950164829396 2.6553534283601836 1.5628180985332338 +3.914071976715171 1.4414290770240417 3.429036118419395 3.2736742146603577 2.477518966735187 +1.1706435865271816 4.823171184781214 3.468800201554129 4.319157047161386 3.750208610314697 +2.8743787369324725 3.2598140741452446 2.7599363344514813 4.648726207489424 1.927715638693376 +2.358430598716429 1.4528558375256164 4.360299987724911 3.5865581123491395 1.1911096246004453 +4.618498682922988 2.5785864608028217 1.3434132841707838 3.0741723510263532 2.675213789860167 +2.318584881419081 2.383780232592165 4.651695326506205 1.3301387244774459 3.322196366004788 +4.249036160651668 4.12183389260106 3.8420429219307555 2.278031877236749 1.5691752499074336 +3.0951710674752246 4.2336874768219435 4.5047243912752535 1.6236649077779428 3.0978578666235697 +3.7878543981469206 2.2866129479297395 3.0348160083491824 1.6099354779292407 2.069785113923665 +3.709419361230322 4.3034118886105155 4.992236036331244 1.949119048021168 3.1005464239589924 +1.9631935050480274 2.5577890916534933 2.0210987885340104 1.8461261815255288 0.6198058767178984 +3.1396889025648016 4.183689177421614 2.8087211388596924 2.687829524844416 1.0509763823418288 +3.6461722383741364 3.944432915051796 2.982594931179585 2.779931217335778 0.36059951769404786 +4.951446308284128 2.4731875004637573 4.076950525330321 2.033778207627242 3.211902837628718 +2.1881046694755772 3.209112372845655 4.77077890222742 3.151429126161606 1.9143537885107451 +2.5139647846610957 2.126803064978605 4.7345275517372905 3.633561676114794 1.1670561496657792 +1.6707393771560253 4.721479312024753 4.365822829594495 2.7582723788431025 3.448366657116649 +1.917827161070167 4.877970015299262 1.335969214561048 1.1052034812837035 2.9691242043906825 +3.3373779159754733 1.0694064541399921 1.522896898193562 1.6852454407517237 2.2737747471926344 +2.5293633917114535 4.861408818481559 1.441032808944314 1.4479153922521668 2.332055583058078 +4.347612361134278 2.1154558878807075 3.1706597127929372 3.0580699791916772 2.2349941765472723 +2.596703407378004 3.2656824269433957 2.9473648585081174 2.196398148111742 1.0057255732764412 +3.221483499229686 3.894348214702951 3.591301458082306 1.755876360518608 1.9548739637366976 +2.240853621401551 4.253623839456027 1.0965745254005355 4.680869262543279 4.1107678982638065 +4.897375003388383 4.808807602154866 4.7195979529754215 4.2690442161331585 0.45917627807170736 +3.604463061838052 4.372844260187975 2.1930954434443812 3.1330556465852406 1.2140571854184914 +4.06248255527213 2.483393738362929 2.285978160441076 2.621380541783096 1.6143160313574283 +1.5292142296556976 1.401190151251341 4.9312593418678246 2.3086880377683334 2.625694271947401 +1.042477230467445 3.6617150384506396 3.069365706565663 2.64816942001847 2.652887673191188 +3.501201838928371 4.179436600399516 3.9929447611099826 4.870904813622978 1.1094215814903021 +2.1892641768024994 4.314227108994017 3.6099448164548495 1.9295874395967951 2.7090714972383534 +4.819970656708437 4.381438945879302 2.082836300741857 1.19724215701748 0.9882241895448827 +2.7614800889811475 2.3517127925389514 2.9584736072093167 4.778922100979541 1.865996236787155 +1.1003827042107233 2.880404336429831 2.601579178975053 1.008303618813175 2.3889336578852753 +2.9442868653740195 1.08493628224792 2.8673545613932645 2.613734547931277 1.876568064899279 +2.9209026447434603 3.8655695665852345 3.0611965125729617 1.87873155451949 1.5134790947503738 +3.3484284707346816 2.612817137171708 2.5296631608275453 1.8163152848575588 1.0246898195147582 +3.6354947569232805 2.416582946083734 2.2388592936696106 3.930902070141212 2.0853668166569324 +3.623693203395581 1.9206415093465679 2.1663989635494962 2.125194339211356 1.703550085459791 +2.365799220058004 4.575546553792654 3.7287403767628473 1.3859477015203625 3.2205062953078096 +3.8134782981154136 2.206633253320609 3.345054239644787 2.545403576092358 1.7948237188374399 +3.777418336670955 4.644170035919183 2.3788415818495063 4.529490656775341 2.3187388709445136 +3.383265498091237 3.5891380017488537 1.6262201181937868 2.227134313402935 0.6352018244354418 +4.710721183854582 3.1257655617021114 4.791446658150434 2.375460343359424 2.8894764573275507 +3.6323030522160566 3.8935621944069174 2.5505692813007474 2.7171404905648617 0.30984239079572984 +2.9370201071774016 1.7924536435355845 4.1498449705017455 4.140827649532609 1.1446019839974924 +2.8734633359908663 2.856646423672968 1.0455415561202415 3.170072244996808 2.12459724571935 +1.54426014332241 4.208704719467315 1.7065403392590928 2.9621462435305297 2.9454729817449175 +2.839331583726961 3.9541980502380705 2.432808052089878 4.754944505015638 2.575896920328451 +1.863239713891705 3.056700080141033 3.7522856142694008 2.768814534864919 1.5464679142591342 +3.4835097738739975 4.752006763029883 2.2548373345081045 1.2245544667002748 1.6341870759481214 +2.0301513203451167 1.595428648675839 2.058512989695779 2.8274764952036615 0.8833395010222548 +4.55792694818938 4.8045975257536035 1.3006325038702005 2.3752942358991604 1.1026079140489387 +2.6380348424926736 1.4845698862199397 2.604242938400324 2.5138508633605015 1.1570013537499706 +3.9821329179935026 1.9207339900108957 4.115721445085746 2.470021491927591 2.6377440884423553 +4.232266357974828 1.1017939658386178 1.856512072701419 3.628553304177061 3.5972194156009882 +3.6243267065633384 2.423834155579233 1.1367712252618403 2.3127093421023597 1.6804799372818326 +3.290521547582023 3.622444086937896 1.9564005628360057 1.5720620779943912 0.5078273752593486 +4.293276795755317 1.9492982612688672 3.2348481899491603 2.8214318895133035 2.38015722329415 +3.730531059434242 2.763515354979876 2.182308890389565 1.4244541189491167 1.2286021435991505 +3.3660934365313606 3.1218865742395217 4.478495344978201 2.2002817813178024 2.2912647235176995 +2.474615159564573 2.9459571964106077 2.440141218241984 2.995565349878574 0.728463644736255 +1.4721776389796255 1.1277532544626219 2.8338988005103345 1.5164891345545448 1.3616887987362098 +4.00211841187792 2.022095671190637 4.004734695397411 3.2443103083745086 2.1210222304393547 +3.4158380320553055 1.2866315908116048 1.3640827064418133 4.408700730197035 3.715268359083744 +1.781849626227133 1.5830268648950772 4.947368806134965 2.73586532846975 2.220422960192279 +3.2199068870349725 2.8226309921111894 4.574059605690396 4.878798644470962 0.5006935374502012 +1.3805354676273152 1.3111733970065416 4.179966029643001 2.0756124533939966 2.1054963953217247 +1.1423946405394623 1.6366223276098641 4.057168108123662 4.998396977719483 1.0630958525117036 +4.227761060920131 1.6523112343224597 1.9761686239078067 3.290429201598898 2.891404965651629 +1.5620832144267083 3.2852766344822273 4.023306565050289 1.5333790940750487 3.0280578550681283 +4.410248056721286 1.7713922233809214 3.4724299169785917 1.721753345733823 3.1667694210756503 +3.1333829785020004 3.8084617806495156 4.282093138980955 2.1241315016136877 2.261090404530023 +1.1642931372933205 4.163606580808807 4.410712290560195 4.8054747512927065 3.025180743832724 +3.159421943583 2.752172093244534 1.1011876142572814 4.221995049196993 3.147267304595478 +3.0012636188057216 1.5083509397073263 3.197778650132081 3.182701142276531 1.4929888139754706 +4.646236814058312 1.2832850109379117 4.281025758122695 1.4212906341366045 4.414468236319126 +1.917502347365895 2.5956294238677162 3.728987988993391 3.726836691622393 0.678130488892282 +1.052469195055556 3.444946462695319 1.340117408530415 1.9531658638625378 2.469772435824428 +4.128973150574028 4.104072208350646 4.5510866532008745 2.8523769153867486 1.698892236213983 +2.134268152142461 2.2335520970413603 3.356446440279026 2.135293695709492 1.2251821608578837 +1.1420049679606903 1.458560795545603 4.84109362124658 1.733331258356515 3.12384290516889 +3.6316900466192923 3.202710278658345 1.167234376577182 3.507163633077202 2.378926767839768 +1.599634378217524 4.693491776138486 4.798563344206568 1.5363592181268415 4.49599036463401 +3.7201323767024 4.073272756906212 3.7132787683849218 3.336155545118073 0.5166527399111226 +3.774760391597375 3.760497522844919 1.2994217740719254 1.2120264381173254 0.08855153398822177 +2.1395801173115103 1.2347486195380757 4.488418708915919 3.6854082258645993 1.2097710011622989 +3.2814983184374813 2.454463642428858 4.479590043226363 4.0145477167236905 0.9488154302917435 +3.327635276839133 2.3555192350129324 3.205090171582674 3.1466983939576494 0.973868162776692 +1.2748701033998384 1.5357582101875087 4.795397444053663 4.997000215659355 0.32970635690315686 +3.405707452113342 2.305219244820299 2.825407723629293 2.298513749078426 1.2201194838248692 +2.750498154840236 4.298944609951459 3.695453813615241 1.3568429719473403 2.804779330555821 +1.6510918942192991 3.3389242778349835 1.7638564879941048 4.54930694416278 3.2569176223773426 +1.1631792863138335 3.75056873452467 4.208385631392117 2.9398571624012204 2.881622569552294 +1.720736889228836 2.4963265193555966 1.2226701261051716 4.349385499836288 3.221473002011142 +4.030912121846821 2.5198470768622765 3.9607696311584717 4.0383692426670414 1.5130562679161756 +3.647547629590364 3.0681262549922867 4.604785198892785 3.719370197350386 1.058153511687908 +3.702818463759844 2.2488501153231577 3.3948130077750394 4.1255018071194485 1.6272461644579408 +2.0686191667625797 4.495980986500328 1.2349038187785646 2.867276731602535 2.9251883239275323 +2.6750138460255495 2.8299272193407914 1.3060433096229818 4.978012230153876 3.675235217857046 +2.4558606210537848 4.7240458019775655 2.146411951000351 2.370018846229674 2.2791805673435226 +3.2210183065242615 3.1702439561352844 3.6582091491971664 1.5266534553930442 2.1321603388221524 +2.8181757674538552 4.783880466173768 2.1318180984095974 3.916233044827685 2.6548317580535703 +4.675816224372422 1.5359725605992445 1.8653525268297337 3.7099161462384047 3.6415701529673417 +2.9564139507798783 3.2081918813671995 3.5018326531146013 4.3755708145845205 0.9092912081064396 +4.963475027664884 3.2395506244085643 1.3207102989818638 1.2407796024611817 1.7257764236392088 +1.1587715268529628 4.916898852378665 3.466510504248428 3.7273499118376803 3.7671684580616356 +1.9655451750485846 1.6035552480857613 3.4761318744187326 3.4199405694526837 0.36632522432442144 +2.2808071661336595 4.739192207133032 2.5413320513124513 1.468050935289471 2.6824595735669567 +3.0970394498323164 4.826148982986575 1.7856045721870841 3.9563301463039466 2.775224188380088 +4.856376844308668 1.7259018396565708 1.4707018620938932 4.2176433256858274 4.164800254412227 +4.756780082713677 2.4230808848838787 2.1725870540052625 1.0796880111480518 2.576932335904389 +4.891355234144284 2.1276539766496705 2.4389426375187573 1.40970018872934 2.949132865617849 +1.623723432106051 3.5039111244141807 3.3636579989451776 1.170977616430429 2.8884170436714975 +4.060697741525695 2.8424084583202007 2.860508335182441 2.6035189009668422 1.2450993321304977 +4.270730421991178 2.5519551441884523 4.216221042776639 1.6943935876678844 3.0518522521455944 +2.05979572937831 2.5950497794775282 3.6027745517322303 1.27139126340733 2.3920378206099167 +1.7641743839868478 2.7521122293559146 3.404544868497452 4.0014407204917415 1.154255536889671 +3.3344299060390683 2.374397976376323 2.9028184263000325 4.032439776665757 1.482466087697812 +4.564998617831797 1.698170607228691 1.1703601701131015 3.738190262134222 3.848695132621933 +2.277539717726424 4.689443436597275 4.181499348847861 4.418591849047074 2.4235289151882946 +4.787875910298206 4.296309895518574 1.1991420888709161 1.2689370268807427 0.49649620366939895 +4.89804114860044 4.920231801659293 2.2921942073002235 2.3213051884911464 0.03660429358800231 +3.2099521322905056 3.0187186496239944 1.843122341281818 1.7339047050822138 0.22022428782900386 +1.3620654518934332 3.32722017531597 2.7053554556795305 2.868455812538884 1.9719114618556166 +3.715392146681381 3.0044370724047167 1.4000207188377427 3.304006054185643 2.0323920081666316 +2.96698764326483 4.395710025098412 4.407871766317614 4.147411413645956 1.4522696855839372 +1.8582821765934177 4.725788045941364 2.618746080121653 4.003981986250274 3.1845672274852204 +2.7907491267620714 4.263575658772499 3.9430082277972955 1.6569295179460282 2.7194436675594327 +3.1571888393138483 3.5677089123975 2.2923466017985885 1.4416183599688432 0.9445979419050924 +4.766664187667823 3.727449857052125 2.7556228726757492 4.9292654067190345 2.4092920725306737 +2.583625944282429 1.5998755330850458 1.0022938441128226 1.0131205621151387 0.9838099864067871 +3.6025224611497837 1.8161965265371114 1.0620311322755858 4.312985551064768 3.7094022399457773 +1.551432244020154 4.607885598393982 1.7309186272855186 4.216039062062562 3.9392550923759004 +4.315106605547061 4.530489896456596 2.982948039935775 1.4815085617536736 1.5168093053006904 +3.360868466566688 1.0532978443373864 3.8640999692383096 2.605924488836734 2.6282860795696235 +1.5938593818732012 4.982013792904146 2.697204371923544 1.4833434170400115 3.59903441644828 +4.318106292177777 3.38724991934012 2.199894095431944 1.175975535305283 1.3838001317474768 +2.0704661800939266 4.126776230364605 3.9588434190150714 2.017722525420706 2.827783822429287 +1.410428294429257 2.3090402058578583 1.7108017130228768 4.775797504970818 3.1940104214012752 +2.3545788011465723 2.3221911931419816 1.2416996849961426 3.8499134135870516 2.6084148081090075 +3.9781952071063404 1.7086617710364411 1.2523427656204915 1.9365891092362717 2.370437739361827 +1.9096584287733118 4.6100973720555185 2.5991644948921073 1.333408506880442 2.9823662933285893 +4.959687644175574 4.624879428463677 3.1199063500741917 4.228893385069673 1.1584251314160332 +1.4418161721244442 4.715468611668472 2.1471664843923395 2.596907010647621 3.3044011312019825 +1.8205962976293528 2.1401735632729477 2.76570037144222 1.6740409003168244 1.1374752874739806 +4.946582652842882 4.181936457483346 3.3352175874895917 3.9075046749284583 0.9550896892580693 +1.6605334362544562 2.5819480613918375 4.256761826541375 2.0644397164513975 2.3780835026984297 +3.185193820485629 2.435910612897888 4.729191667885059 2.1627383395540614 2.6735945862591493 +4.4646468317556325 3.5957841290114096 2.05023491939685 3.293437484690254 1.5167316883918844 +3.9520003208918197 3.5923150064467055 1.6916341279095404 2.0382149286928666 0.4994915183454994 +2.0333582447203384 2.7829609241669497 2.479202176109639 4.021313001270792 1.7146457284560999 +3.5932788376159563 3.2813515347565105 4.65806307793852 1.8322944568705455 2.8429328064661625 +1.1761948385786 3.213779522881396 3.83235050925144 3.6096398141376977 2.0497198343733154 +2.9646055816658876 4.702730592910456 3.2059406166045843 1.5693435736959702 2.387368516917979 +3.39130530748897 3.1629824224662024 1.7803280409999904 1.947799999810751 0.28315754768861967 +1.9061039354188227 4.049177197646299 1.1867929702657705 4.618214411643146 4.045666337653008 +4.306157705829726 4.473186223506065 4.411022977001192 3.497454439994244 0.9287120100042696 +2.520633064462231 1.1696763702562336 3.1042797381371696 4.643886794065603 2.048285594414171 +2.2624034276794833 1.9714614019852008 1.324130847426935 1.5244577388338745 0.35323947363772956 +3.18896249957755 1.9794211616423167 2.8312123191758376 2.4481788735376253 1.2687414506713477 +4.2086701203844825 4.147689625706882 2.050249534352357 1.2037709573902222 0.8486722582875946 +2.5935739958338133 3.461155781708742 2.7458071032348506 3.5593740597115393 1.1893651028396086 +1.7174807090570003 1.7548092077269133 3.436782322350881 3.7609012375538073 0.3262613798862369 +1.638556159084687 4.517388287824517 1.3387678708766781 2.609309714516653 3.146736563791886 +2.5702185431749 4.6678701068554265 2.4314813186221818 4.934220225406574 3.2655541823928895 +3.912046493424925 3.1795980145474125 4.330392731287736 3.9729532484003016 0.8150115079781501 +4.525087042406036 2.313374316838649 3.2403592630732208 2.636523383102448 2.2926602343951443 +3.6806874423064815 4.075240617579544 1.7084079486920971 4.772207548928415 3.089100224746079 +2.922077505577836 4.691029640667116 3.5015153069515037 4.6469098422330894 2.10739656868133 +4.474907530252658 2.495543240861996 4.623203302750435 3.587421335311857 2.233993570757519 +2.6338057825946106 2.7737439320077524 2.20289557630572 1.4425358664315842 0.7731297265408016 +4.909848740253404 3.4425890587849195 2.66492620041353 4.641707134807593 2.461811088497016 +3.4470601542508423 2.0488167866671616 4.2868260519061145 1.0554653042209146 3.5209056784685964 +2.8071384639404475 4.514944170240966 3.361743120192059 3.793247892557417 1.7614757162807246 +3.0205088177788575 1.2366778109296255 3.102125634407418 1.8563250961232325 2.1757922791907114 +3.5455431220377145 1.8631142787507566 1.3532025714422704 1.1934615248217888 1.6899952706144765 +1.7515783568483827 1.3571597731775529 3.7374363293149813 1.3504330348102314 2.419369907046344 +1.7529569925571966 1.779038933824741 2.839254974816476 2.397718343614105 0.4423063015081542 +4.382542038188302 3.28803464848653 1.4954874666240405 2.7959250531336184 1.699730667640801 +2.1062887569806517 1.149178621292637 1.9304630257572217 3.5691004557060224 1.8976808052636094 +4.966501692149853 2.11469636790277 2.5899080415415017 3.5010388823236696 2.993819135557195 +4.24165392904284 3.0754949356946986 3.6360212752544245 4.522406345486232 1.4647884797801345 +1.5504128529963452 1.6142580589623332 4.812656082119197 2.400571050107137 2.412929839838171 +2.5031909384033004 1.7949161422661741 4.063867537854568 3.5653867567124684 0.866104079202451 +1.4584080455534254 3.4511008139000774 3.5619754299502753 4.10468782323011 2.065275093260113 +3.443794572374721 3.1681747544186973 3.7148171512835613 4.08418811513628 0.46087003915160096 +4.371854193432662 4.596982980742595 4.287498543947715 3.453198686756764 0.8641407423472649 +2.389819179172163 1.0382760223183025 3.8997986037960977 2.7819063086583853 1.7539532742826307 +4.100857393556226 2.390766377933802 3.523126410048623 3.671714979145258 1.7165342538320403 +1.3468315896447245 1.602801635225045 4.315047490985461 4.244274316046118 0.26557391913624756 +3.609486253080627 2.0329503172704055 1.4808254389726576 4.644259669316558 3.5345129348486637 +1.9387189563558422 2.5243362702642567 3.9436595612148673 1.8309681300742633 2.1923532383181867 +4.023121026317774 4.367931645164486 4.445653632459208 1.0123787351362488 3.450546461570606 +1.8932662011087258 2.1538024596021232 1.5541686618555217 1.8100177296688202 0.36515460765362423 +4.52379699101228 1.9850708607480811 1.9320650485034627 1.7023081797998647 2.5491015246950672 +1.0152063371674358 2.03664057336981 4.059940724427074 4.27173363306426 1.0431606468015016 +2.4274083977893923 3.4035084053653124 1.9750762310574608 3.6680045073586025 1.9541692284676029 +3.3360430291520085 1.9000132863492585 2.913258901944624 1.586915796190406 1.9548318230466468 +1.5628500305995385 3.035097097119223 4.327629713145338 4.201636449769207 1.4776284131309816 +3.4090182635515434 1.1661734662655965 3.298248094009975 2.4256596504068377 2.4066082723663995 +3.158446906606441 2.9479940054231015 1.022938518244671 1.9672074612335222 0.9674369541782899 +1.444505640193328 1.3314876095449142 3.7742785446721703 2.1091977938025943 1.6689119156408576 +4.021167642034954 2.9600741111760454 3.1316728843816395 1.5715940127906771 1.886734100718794 +1.872809898717485 2.4611732141383986 3.6793413321534003 3.508779729945205 0.6125868518674851 +4.867181595573958 1.7521042598623344 4.992891056439328 3.4375980608024497 3.481758623130179 +3.926181625457175 4.584131503120901 1.3822709259594896 4.398264142900821 3.0869261614353256 +1.2850505255566977 1.202499229131507 2.714544140599806 4.660011582875921 1.947218088837983 +2.5584472444472803 1.3918640591329798 4.63306787289816 3.906643616337001 1.374266542115645 +2.5484759050600507 2.108901071410852 1.8479327938798398 1.830986806595516 0.43990135355868293 +4.339355236741522 1.662617239865062 1.9662129909488955 1.341133619442969 2.748754358724047 +1.7102590291243316 4.942766984286768 1.2082362080262752 2.255175194096504 3.397821201997274 +2.9828735291876893 1.053161670058782 1.1416837222638283 2.057319637814166 2.135925323860469 +4.113910716214975 3.2186820042448168 2.7713177967984515 1.3217958535992267 1.7036866820374588 +3.5599186562874214 2.58505080328286 1.1517099169815448 4.974712797914749 3.945341348786604 +1.3341074669440482 1.8773524864493654 1.2344297027933715 1.9849180208816124 0.9264706508056524 +1.4147518783297173 2.6586972705036303 2.1778613561432154 3.6047332453065173 1.8929774237415407 +2.861810867496623 2.72966293401691 1.2120352185085288 3.2493031690145044 2.0415493573464683 +1.515336354628896 3.9023771329946504 4.9799822030413505 3.9010295048040624 2.619561528694165 +1.6587185430284332 3.795732021518315 3.6756863161289566 3.1206733066648797 2.2079098822012178 +3.3965908761811447 3.251238262035567 4.625900481572769 3.4489852052735785 1.1858570529475096 +2.098507888050849 4.1297654114721745 2.0011027412722986 3.585099365218379 2.5758595519026883 +3.5431004379149593 4.989671749933644 4.433041451694379 4.374500391126729 1.4477553717834526 +3.2916754428894284 3.7731050305984137 1.2392717523366343 1.1776763084642434 0.48535393954049705 +4.949743229498549 3.4980922233638747 4.2547615811440345 1.135473563344278 3.4405302471568167 +2.1380258970019863 3.4252426261773232 2.0312035864522375 1.6412664955683058 1.344982469296859 +2.2519128558425865 2.1969819757743423 1.3478864883419126 1.2310989965173982 0.12906091519795157 +1.5016936495885327 2.032609526000648 1.530685343126307 1.0287588204446045 0.7306174799426782 +4.883284918484414 1.0199326215078326 1.5622402485646125 3.466572321029059 4.307199973622186 +2.6442106050500644 1.496838150556247 4.266465737975667 3.9696406614406055 1.1851450018420584 +3.975824520277337 2.7862801399499273 4.586655537410115 4.727357778593008 1.1978367808021302 +2.271868596414587 3.3133123931835855 1.643435078986677 1.2398037743630401 1.1169258757414504 +3.2827524529281624 1.2957058785039677 3.335859930599326 2.6219715044944625 2.111395456530445 +1.958577772766227 2.370557486029746 4.127368049274212 1.2491984979578912 2.9075053310811114 +1.2520538599278046 3.3470629378008496 1.3693613567768765 2.4157221119567542 2.341780063616366 +1.78965705633517 3.5372730486938924 1.9197535495934956 1.3295776335070961 1.8445783444127233 +4.577493720555376 4.459113385399586 2.6052386464461104 4.936046306963842 2.3338119577377565 +1.235276942770272 1.3269828754040756 3.7982514395811733 3.7649071928785554 0.09757979743984296 +2.8016923144693564 3.7303021476859963 3.1562091512007204 1.5914057214143784 1.8195950088461266 +2.4312337826814296 4.382867478288576 3.8687285169402776 2.9531836204374087 2.1557125363419067 +2.56824084880167 1.2629675062646122 1.6315797114668529 2.8769410603515904 1.8040685652252457 +2.7223954258614658 4.403565256930504 4.344308784952091 4.939596349923267 1.7834515092667955 +2.2026673077335217 2.0620779821765187 2.330571902379967 3.4184619951519313 1.0969367403875057 +2.6459311972239505 3.331913726025198 4.46829677016664 3.4079436678496764 1.2629017109077665 +4.946653359249798 2.4408760817171364 3.530969083160831 1.2470970202159144 3.390426428120697 +1.1694123524408813 2.4178812211669447 2.1619618613232676 1.938252497691264 1.2683534190259325 +3.8656445183886925 4.760897356287332 4.082885552733779 4.7490721936496865 1.1159221676713784 +2.705508577508296 1.034274279678686 3.117423374360108 4.825042992790728 2.389349040950519 +4.0925923051205775 1.787039189343382 3.907705935020421 2.499894266571468 2.7013901723910525 +4.346741487941576 2.7845700141403635 2.7378285404037337 1.756377610888035 1.8448917693473188 +3.8824236721242804 2.737437720961725 4.510585790733042 3.8792328430093077 1.3075164905113323 +4.23690463969686 4.463902399273432 1.0110945028287497 3.4987829813897795 2.498023608619037 +3.557983078806927 1.4601113309266789 4.662501730684573 2.2307665120735765 3.211604278859274 +2.734105013071432 2.2215115098465144 1.6312328268318166 1.3788449791242297 0.5713595411112531 +2.1698768299774596 3.0647343827233784 2.7051769547861038 2.8564940600842808 0.9075609654795839 +3.8322345512002935 2.731453267787767 3.9498635923852166 3.673235308795107 1.1350077714242044 +1.349806180152164 4.762844820607698 2.3140383550361974 1.0853950519692348 3.6274504996503882 +4.263683319255776 4.227407336142644 3.5217065580264624 3.9360743162625162 0.415952624725938 +1.8382817784217216 2.64726974592232 3.1965980766459405 2.3031181376398115 1.2053082315188697 +4.732835186495254 3.3910114627490837 1.6466963472834482 1.699662166130996 1.3428686769651859 +2.0708981384793574 2.4927432641394915 4.692422933902114 2.7468814128465864 1.9907498889097726 +3.4777468495975525 3.420000633055187 1.4756803283551174 1.4069322937560242 0.08978261405303312 +4.494743295563791 2.6786504645574296 2.787002635573036 4.725937301489797 2.656625831675669 +4.732709918374953 3.5556930957241537 1.397993368815357 3.2652662446135925 2.207278096093647 +3.1381318825825737 4.993986109784119 4.125138640136498 3.5199339239061715 1.9520419209559194 +2.5842060215179212 1.1880497835647041 3.4453657794670924 4.083510544125509 1.5350833793109173 +4.25526169067306 1.9429571964891994 4.488588866833049 3.6144667817102087 2.472011628921349 +1.5613448921588176 2.705410939447704 3.636569372664197 1.0280461382044246 2.8483820995919227 +1.3019742177564764 2.006752703158463 4.216734905053198 1.2422941608107387 3.056797417967889 +2.5752754579868853 4.799706469838389 4.630421021303627 2.2696714659356734 3.2436448309974844 +3.461186410445292 1.9039626960891525 3.994310743483796 4.9441927984238205 1.8240673273895938 +2.9885153353544864 1.3237731694201171 1.2869121306967015 1.3383498589350014 1.6655366459271235 +3.108986819129172 1.5034584648225584 4.7067208005045815 4.58577228555497 1.6100775881152496 +1.9209208350568696 1.7540939456470857 1.6840679693966045 3.163525377770476 1.4888335817755043 +3.7830585337880307 4.728921037407359 1.769569022129637 3.945684475391118 2.372790412505168 +4.4957365640880695 2.7644555310218215 2.8556016950839935 4.552237259965246 2.424026867729576 +1.433476147279654 4.455786895191929 2.423974631572067 1.8577799975017921 3.074888391567413 +4.034251706337942 3.312071634975443 1.7790716009767777 1.8984272141507303 0.7319766511776689 +1.9221815205408017 3.329464680158671 1.2376033458220617 2.249822275959553 1.7335031161993164 +1.398428437885845 1.9332914861888004 2.644239443915272 4.428903964970568 1.8630904253829068 +3.431786618561014 3.1321096107667366 2.3519898383857805 4.199965495882276 1.872116540095765 +3.793406007780824 1.0224510268770723 1.162558921016088 1.4522619416257583 2.7860580299673727 +3.6280445690096785 2.783848667187239 1.8160937571842952 3.0727360386149147 1.513874679137264 +3.5970903810851347 1.8759624315265904 4.668632735238335 4.783598223652566 1.7249633278066876 +2.1127659207065355 1.7733212562619767 4.407283800854496 4.6829519517827265 0.4372820710434727 +1.8717667423499478 1.0345767289033274 2.840357853094798 4.930169720862482 2.2512664794016297 +4.426523111732197 2.5165750967919656 2.534906534515576 1.8862401143878875 2.017094332046819 +4.61641277995019 4.662964983275385 1.7219200070916556 2.288576392420077 0.5685653583079983 +2.606209867407988 1.4383109328816501 3.708397406804696 1.4293374982887777 2.560879143550578 +3.742826917089386 2.2360631112447322 1.949961212509972 3.5683204508196154 2.2112041495134807 +1.4825469198642272 1.9118321517632455 1.2346179398445027 4.095880954231548 2.8932873773315078 +2.975334842676604 3.513384131156671 1.3185982774385576 2.5936525650776057 1.3839293599243518 +4.816789553159804 2.9587872704264506 1.765382165410378 1.040877751479873 1.9942615496587044 +2.615664147208208 4.247127022949671 3.3353107121458065 1.4346502521943223 2.504831590934926 +3.8853337332775877 2.9417242398845556 2.6844826880372543 2.929787116868213 0.974973404163179 +4.944714503778422 3.9852667398376713 1.8730370878583824 1.2071182312039288 1.1678989405675824 +1.0460427249657034 2.342356128321234 2.420611500263941 1.199471047431734 1.7809021436514827 +3.4525231033222976 2.454510635302795 2.9339370345790767 1.9560580974254052 1.3972387419661587 +2.8275188368453645 2.8291985142721985 1.9837725486282296 2.658951716827794 0.6751812575056523 +2.368444837164323 3.559045586092386 2.724315017750884 2.5140754420068623 1.2090206046867402 +3.278181256007781 4.179953374818494 3.592903081411151 4.684192589852904 1.41566441839138 +2.850359357262541 4.962918946621887 1.8053517639564434 4.580396696816031 3.487661451170942 +1.4269106519372756 4.48472823660102 4.049374542623723 2.9825114310036454 3.2385869264255502 +1.5533871951538587 4.010198566728731 1.6616694579263087 3.720541889559109 3.205445024522674 +3.8582620352776815 4.46879364858744 4.440867834079025 1.7294825125446147 2.779273144669821 +2.8298862558367217 3.754648423740009 1.9299314806445729 1.1569801585168484 1.2052546675139595 +4.530718498088585 3.4064357081901937 1.8101716536067625 4.721163319018925 3.1205583262872665 +1.1186872836746757 2.735620808010404 2.1903506265637165 2.385135188377239 1.6286236666712308 +2.285281401412545 2.332777580871231 1.7210968932002095 1.3552223778878054 0.36894450533685735 +4.530101395595786 1.3172967234359167 1.027776890637572 3.163986404623098 3.858173784200831 +2.6639686367712385 1.488394367536451 1.9165239196758552 1.0365675347364527 1.4684338942841542 +2.3013994078932103 1.2278795872466772 2.196397495224545 3.5038168308102233 1.691682631105569 +4.100795065894457 2.2764275080763663 2.0251892239612603 3.73351142083078 2.499336254755699 +3.4689442994722004 4.792764052120042 4.074379951517489 4.107429944497005 1.324232245316711 +1.308405015315611 4.547573734557876 4.873753238234521 1.3985730676138561 4.750693760914572 +2.611891714599718 1.2093367654243483 4.912049745420425 1.6972163084402796 3.507465525558576 +1.2104870323373067 1.3596500188505467 1.2355792247935953 3.8054234568716385 2.5741695697234745 +2.2402360341329266 4.150441627293142 1.5379303619184848 3.7442948215346563 2.9183778947898316 +3.05032723590291 2.853139512164149 4.090405575770305 1.950507882000708 2.148963735895446 +1.82408074260398 1.3846641959668036 4.317929015369425 3.060284566800344 1.3321998575571046 +2.9667343135812625 4.807736488386331 4.421459645270911 2.538256675017859 2.633579775667885 +1.85625643245631 2.36154756718646 3.723669552266026 3.175031320023358 0.74587065950823 +1.2458955871884823 4.692040915343599 1.9181668844555904 2.8330942838397952 3.5655307836154324 +1.6095512157542649 4.6963891288728785 2.681043827680774 1.617289497705812 3.2649872245396243 +1.2848263258673667 1.4214839930861967 3.1940805845543827 1.9205741282946724 1.2808177123013478 +3.9577020295859047 2.7718410587384525 4.269705210247966 1.9160805042278808 2.6354915099402985 +2.6930348231653056 1.659205786171703 1.096183995489552 1.2522890364768156 1.04554830665673 +1.9274874119377357 4.547287059320258 4.966922460660445 4.558990162494269 2.6513692598943526 +3.982238230496533 1.8268408666020441 1.1287375629970176 4.928269331409025 4.368315402469857 +3.3560427722192787 3.978117523527825 4.194543544318314 3.9474067522972986 0.6693680528573415 +1.28262839489271 3.0937289672178503 3.6835477933162943 4.220871999860205 1.8891274668519575 +2.730006600754613 3.4763834655647874 3.9408590380411703 4.544525777000884 0.9599437254600504 +1.5331942472091535 2.1769956342451438 1.261991442020228 4.986378539790088 3.779621605397036 +4.320936520664919 2.7412720097173167 3.6919667740727453 1.5370983660780841 2.671852881975498 +4.661559117262076 1.7906677330712206 1.0454746853285721 1.420661710482356 2.895303549485793 +1.5289407378831843 1.9215547408215987 4.786645684256328 2.4239265294333596 2.395117441769962 +1.1394142513486338 2.762367831201761 1.161096713445834 4.4510574823208575 3.668490177592795 +1.342730252194341 3.9698416219330426 1.926947980014678 2.4898732536438493 2.6867450591190885 +2.4608238161110787 3.6669416439768114 4.36781379939705 3.8280938824372037 1.3213696694940051 +4.930239868857038 4.371453476651523 2.7231461425027685 2.1327164521681534 0.8129264735157078 +3.173993592212939 4.518570856803715 2.3791612884702342 3.913558666147967 2.0401625751588317 +1.5504841072200972 1.122318996087479 2.410625936809006 4.616675014116163 2.247215586871666 +3.013393523067048 4.915334967403258 2.7187112847285877 1.9193909968978256 2.0630788109574385 +4.880054426241312 4.2283364754322115 3.6517577585081336 4.206703161419702 0.8559793733610032 +2.116322384271443 2.798604915279292 3.9906403799705283 4.487891258628423 0.8442558193133908 +4.006410727850584 3.5018691790538945 2.8983426824654304 2.0609777732523766 0.9776206655157961 +3.0948535215474857 3.8778945413430383 1.2017685352378518 4.647263726418756 3.5333539804459435 +2.4014817595264115 2.0870627779529682 2.126199761066109 4.661255131003134 2.5544794038355896 +1.4617483037243622 1.6051420412792932 3.7383740062681796 3.074896431363855 0.6787961817592199 +2.8116323638392977 3.849712763107633 3.1213527842480717 1.6284503579050473 1.818342258741735 +2.215757026438176 3.2059316508795663 4.812052644251639 1.1258261772491158 3.8168981323736624 +1.999217947056422 1.625581758855993 1.6637363318661218 2.4088396497498006 0.8335364151938491 +1.6861775211942454 4.740462912791806 2.278238524433917 3.6622887461628895 3.353245333940581 +1.5163819046107654 2.3019216800993223 4.448431576369011 2.1459596662862737 2.4327863933347422 +1.4152900697603212 1.4636532501370811 2.6594534948331776 4.324180855350487 1.6654297289501834 +4.854619887908553 3.5169626412255584 1.4322098450573484 1.572613478274 1.3450056095882899 +1.683207749333412 3.181707767994161 4.236976521632399 2.247347680839849 2.49080814797924 +3.272093999242856 2.6016276517019765 2.5213521584496883 2.4620709507018694 0.673082004496367 +3.1318311358408204 1.3130815412163646 2.681048915928733 2.4501602644847735 1.8333465731585594 +3.552232618586197 4.360440571662725 1.935233165636145 2.153430553501707 0.8371440709265673 +4.927990856782989 2.023297850267464 4.324803735821783 3.6751320708380897 2.976460101258353 +4.70588885518163 2.988464936878081 2.7523047930116507 1.9661317826963507 1.8888125680726866 +4.2317004341309215 3.924416141179299 3.450641526428008 4.622381230780423 1.2113618664340826 +4.476863562777148 1.1340129670755652 2.209993825869449 2.4510636856385406 3.3515317069172292 +4.226611363224656 1.1051415819498311 1.9728811624651192 3.0249229532017257 3.2939893024823546 +2.2420557655463913 1.8681588204826385 1.2203557912047915 3.5379836605368915 2.347594059081096 +2.859648003166008 2.4812435972332354 3.808118982206049 4.715080954379799 0.9827359326892612 +1.640777070095924 2.1524203758495455 2.7247285869653166 4.755867306767868 2.0945890698186225 +1.939021625753318 2.8132690213828453 2.3307383039009433 3.6519849931598443 1.58429836919774 +1.2717232423203098 3.8746338666460507 3.500899900467467 4.617017405747342 2.832112639677312 +3.972741461872583 4.958303020662732 2.423657331066346 1.5915687917298804 1.289846085182244 +1.4521563950869223 1.9246871701122403 2.1325348226707 3.373947755950907 1.328303957782779 +1.6481391314835938 1.5310120728639571 3.8056917424693726 3.005807271615143 0.8084144448082545 +1.7929332657973176 2.717551182191128 3.0424422679698684 3.4307521000755843 1.0028473547985257 +2.631056775413776 4.269853229829655 2.6722493029395715 1.568741446785538 1.9756982076217329 +1.8694528661770993 2.175424513542208 4.798631658651097 1.5745751317616516 3.238542749072451 +3.976885614847915 3.1047444968565556 1.7653787398816276 1.5932358541634595 0.888967548786004 +2.048233736808055 3.7312934191977796 4.952908929260735 1.2812043186510298 4.0390722501656695 +3.077737246229116 4.541516472172759 4.961842866672807 3.155981527462047 2.324604224112193 +4.199289715783682 4.25941899343016 3.775555392098506 3.311418384575093 0.46801569608622734 +4.299277531353237 4.925179277153042 2.562482001288423 4.7232791254874735 2.2496215698072715 +1.8901154545539716 3.6798624019973443 1.0785134001602765 3.842660648726455 3.292978005945203 +3.4657134229409756 3.3761088549539457 2.968731876348334 2.406231869831387 0.5695921663222798 +4.337467473166432 1.5543764186771014 1.9648332275950278 2.1889534950162908 2.7921005912838304 +2.0756173852212707 4.807805864774899 3.5156103135229086 3.692013550872309 2.7378772781030407 +4.149594187752567 4.431951856131786 3.499838841318765 4.501160378912717 1.0403704506290368 +1.4708128640045621 3.7722283673271266 3.1619209828118775 2.90974483730665 2.315190300449474 +3.0300426562211284 3.3565930592373197 3.291153313412543 2.365347505771242 0.9817084899156157 +2.694160058626713 4.066184513077506 4.791790968286 2.618382947652955 2.570243865426595 +1.534148599505614 2.2593416195209017 4.5537040811289184 4.557358588300893 0.7252022281416153 +3.6688906231991902 1.6195636087927427 2.176923689284241 2.5777666314937573 2.0881609794973244 +3.9805269500240446 1.151356291166858 4.047100886153906 2.739080063728302 3.1169095413305405 +1.311495830480224 4.266213823264776 2.1383657915683885 1.4054303973202953 3.0442655450907004 +4.332145793264463 3.4992677964866536 3.1450068692428172 2.237404476354012 1.2318392188488323 +3.672768860877367 4.855758341613684 2.560993761455332 2.2808487323920548 1.2157077563467482 +3.565072021028395 1.1519918961074493 4.058613339860225 3.907193585522259 2.4178262202425254 +4.156758766184647 4.562089176209826 4.627361708717377 2.489866581117714 2.1755868545759043 +3.2310963415527443 2.1736322092211275 4.274951575086681 1.2043145146816232 3.247621028984274 +4.379962531739976 2.3299969675696044 2.8880242157678593 1.5905660508791355 2.4260578113311246 +3.506358666510107 3.40564130089713 1.684239114725008 2.1473508593728132 0.473937206565123 +4.007925305873828 4.38999480892427 2.7664749067552115 2.7434926004168414 0.3827600966216866 +3.514951364278862 4.243073319641605 4.516158272113741 3.8057763377657263 1.0172532007957955 +4.51510617987376 4.08646874922972 3.507378309691247 3.0856071577945063 0.6013492758135054 +3.7156315133482876 1.4100154980156807 3.565703974536636 3.128594511175793 2.3466848729895142 +2.380840486341931 4.84051183757478 4.980764370235882 1.3032168244165296 4.424289672686179 +3.180974188345221 4.4669785318530035 3.7176990245622488 1.7517894642006007 2.349171677643465 +4.959313856726675 4.531390815279911 4.218430311500124 4.532765200591766 0.5309656786472208 +1.0370550554310398 3.4510967046534113 3.138644298526533 1.2132001908822998 3.087868536036171 +3.447698161783692 2.3302608922940324 2.491987565934249 2.18513572183587 1.1588028760195077 +1.7792118726536508 2.2577571899532223 1.135385232273475 1.421435509299501 0.5575216423566118 +1.160713589907128 4.242517908996637 1.099050788530663 3.211446530747986 3.7362726925234764 +2.6412402647106252 2.077280111105984 1.0585086617501132 1.9853691182117923 1.0849522388594453 +4.860402877973687 4.785589803442187 2.888419708343298 4.941689912187995 2.0546326985905043 +3.0371646661261407 3.7358248915838974 4.552000060470432 2.8075728368058903 1.879136091212838 +3.7100530315810385 2.1360844074553595 3.6680814347482134 4.415585937479559 1.7424523555425322 +1.901770421599867 3.5446246168849997 1.0156407788299786 4.631662904214514 3.9717232932615607 +4.662298452345434 4.59169491506773 2.882626676349856 1.8254572830184421 1.0595244148545298 +2.9162252154839883 4.0180897997645735 3.26147550872925 3.5683687012952188 1.1438046134437296 +2.6472290520725106 3.435581121014914 4.486861318739725 3.720284806830912 1.0996083544681035 +3.0159660739650906 4.978848131286272 4.014600984040105 4.310281793973028 1.9850272321346178 +3.238822438659909 2.8467786291336536 1.1506891566824389 1.8455621439250196 0.7978388414882336 +3.952451639555468 3.6760584544567085 3.90679947584385 2.851805638749576 1.090598546246939 +2.748285411097626 4.170464864230723 3.675114755253612 4.069429059790674 1.4758313479786582 +2.8878846368749973 4.1010696315184 3.04953087411432 1.819567814999464 1.7276072927650796 +1.4112739677886021 1.9891761930132486 1.5896187971026405 4.62476458976026 3.089673277970803 +3.060405981038196 4.110148831219208 4.043597934871254 3.1282608540391252 1.392767756322797 +2.4512945232838 4.666461153861931 4.2475361214575855 4.376314469119927 2.2189067272090353 +1.8968506724698182 1.665205992770089 4.253506540562016 1.2686770939315748 2.993804616721903 +2.8373305672291607 4.207439299683356 1.1830852221429442 2.5327851579367224 1.9232492962247436 +4.9357728079132865 2.9570990809183963 3.3471046432602396 3.9298095439060994 2.062691135176702 +3.69717090738533 3.3582350439370945 1.7769985537388355 4.267362467177582 2.513322490427631 +4.961946070356753 3.674693139902978 4.597660290672846 3.6715942918132765 1.5857548174940546 +2.838233653117867 1.0868432465097135 3.6366415014444233 3.9930664939683425 1.7872904441233801 +2.501424540116328 3.4595905610767685 4.321536372653904 4.863996348172865 1.1010653698864543 +2.9623034460309157 2.6914367324968462 2.5637781667525754 4.403412029279313 1.859468075729129 +2.6898861402443375 1.1614104343859202 4.608021475513597 1.4115329114702795 3.5431309774631674 +1.7426554448660787 4.026200636121283 1.2466312907649693 4.345760747159291 3.849569070427979 +4.603702742259177 2.3307798643163613 3.995679489442194 2.1972200934555843 2.898384827466562 +2.5923343912607555 2.0655903649875422 3.858425535642179 4.056757225732694 0.5628452083021367 +1.309879177779965 1.9409614291254451 4.1251122639896645 3.8066352636752576 0.7068892471190535 +2.8965095806348677 4.110979218424971 1.3961225369808674 2.2886538489373316 1.5071657652483856 +2.118003053083889 2.788933706150452 2.9704428491968162 2.3800929125982284 0.8936783475424932 +1.3297428050460218 1.7287726350492596 3.7587766397399793 4.349091477436788 0.7125281838898886 +4.564681410276647 1.454675273893561 4.445333707540376 1.7106502570925612 4.141332121732525 +4.852094360867309 4.829571220439712 2.3080917289622436 1.646562472671783 0.6619125688358933 +2.9503021998153187 3.147612249210262 4.881118933379794 4.096929148178168 0.8086314826957995 +1.468800557941583 2.3121804291645427 3.8889028893815367 3.9282407730555344 0.8442967939510401 +2.7474981406027505 1.9585652806597258 2.368321689289822 2.6044513681520165 0.8235121630780224 +3.6286411331973394 3.3068165149362514 4.080056822483016 1.2876868701142525 2.810854147018451 +4.176515702843894 3.5878985420958194 3.922850155521309 4.630231132166762 0.9202488837521078 +1.0238139210467891 4.3313545105032665 4.398707418626806 4.720114476631968 3.3231201073445473 +4.445294791664966 3.721312871986661 3.071119360907423 2.1807670139878823 1.1475526661928064 +4.517705092003883 2.166614788515322 4.618981362937932 2.6158533108129003 3.088712937190531 +2.0160901152808886 2.6847310970041165 4.965053290495305 2.513673555023019 2.5409335626741556 +4.265617620870672 1.8555193803665349 4.280057478192203 2.550360560392067 2.966551020348113 +2.4950477966066873 2.464189668978015 1.0872982675072667 2.711158734253507 1.6241536378994648 +1.1822992706062072 1.9571786623457887 3.6092444333153435 4.748319907069316 1.3776541680155223 +2.579220737156188 4.9650576992621005 3.0536285783232544 1.932671805603706 2.636050472972131 +4.4470266891266075 2.941836973272083 4.475731991108866 4.84040649727003 1.548736122184187 +2.735040044064249 2.8656250844029247 2.7725788745940934 3.229346636411647 0.475067617288393 +2.5410738065946936 1.695941440412832 3.4004476769577665 2.768930445563487 1.0550178813252638 +1.9967053425197698 1.3053523069282735 4.340380535255275 2.5551668630329445 1.9144077087473077 +1.1593325529623493 3.171468476916987 3.257214565182748 3.73588207480521 2.068287591520327 +2.1133703523086833 2.460395103245162 4.407895132788145 2.5431101927295128 1.896799686427642 +1.406879880840103 2.7138799209440205 1.646871456909123 2.2282188318699125 1.430459323156532 +1.6540854097928133 2.7092473110577138 3.8541268169057403 2.7252295905337944 1.545242888866094 +4.013946467780245 2.2561469913003402 1.9459729379395134 4.372288844535417 2.996142165871528 +3.7087879092808107 1.749030661469798 1.931255464979245 3.754944678887195 2.6770302238248997 +2.266528382940624 1.503986297565866 4.100003783439142 4.936364397025284 1.13179923481414 +2.5169871355819318 3.24323181427999 4.07855102913056 2.2886320492416616 1.9316421221084823 +2.983039850684287 1.3084716315390996 3.8382080379516945 4.902750124272878 1.984295485586797 +1.8628146429926162 4.742096664976293 2.711567747867347 4.94832019509362 3.6460014361339916 +1.8477506889183335 1.9829880658676986 4.467050795532067 4.384444123508009 0.15847085027548424 +3.4809673516896016 4.71419043448825 3.1858901005221885 3.3510309394027478 1.2442309546919244 +2.8483230334616643 4.78150453258597 3.5300948758497035 4.165912887883619 2.035056572428211 +4.806493733955811 4.360850384334146 1.9895922980815879 2.267769525046274 0.5253385238717797 +1.4881413876199976 1.7119195819171606 4.923435147840504 3.1798670069403308 1.7578698877348644 +2.233980277454847 3.524781140345984 4.547002213039426 1.1335144536706 3.649392490675854 +1.8126032821354534 2.6809611383187946 3.8539058439366607 1.225318802158176 2.7683054749433076 +2.2084722992006665 1.8430362550172692 2.7174626092465295 1.0474550591427563 1.7095229509404126 +2.9821806640440265 1.1762492526031556 4.123839186898684 2.5494095728343806 2.395874970125004 +4.757365898902764 4.466069277636809 1.5341792406187715 3.989318624814484 2.4723598276524927 +4.463448332147524 2.620499280448242 3.301012395745278 2.995389852094155 1.8681183973043747 +4.419131853486345 3.533294445566019 1.300320129406808 3.2514354286064493 2.142792296057158 +1.1947019752838801 1.3943276371511444 4.3481241527785635 3.2689162927788336 1.0975153802845499 +2.7657719397711737 2.0950192041258218 3.567535123136402 2.6486886054706718 1.1376239077138641 +2.035865668586781 2.1986443688866357 4.769609765222811 1.775081884575981 2.9989488380501768 +3.889104166597159 3.571125378608127 2.8717817999876707 2.5529561092822552 0.4502891633881043 +2.8019752882042215 4.022832088687347 4.799791809946063 3.8030956467410895 1.5760376166302028 +3.4441849017155417 2.0092278814335858 1.302995190660703 2.4881331277712033 1.8610893530497137 +2.376453883182476 4.027362375778935 4.760757411044594 1.9148612023027893 3.2900796467347244 +3.0040046135181653 2.8069500531288187 4.2827353728904916 2.023408781948073 2.267903689381392 +2.210235194311465 2.7994674063333393 1.6156282112633211 4.151055421616234 2.6029955318213944 +1.6900463783193516 2.2879156229927355 1.1768261362085628 3.690931575708531 2.584216282482883 +4.972993054636202 2.168164564651753 4.630115263256572 4.077763090566528 2.858698266852215 +1.3663870907847069 4.2364913774988135 3.783654813861371 2.896699717453352 3.004028621644416 +4.563659721547074 4.601788178939138 3.6885387062056028 1.380452572168338 2.30840104431578 +2.996481003378578 2.8471406881801418 1.019397807111429 3.9295583444854763 2.913989856370947 +1.6992200589147086 1.0976724637344137 4.227700700330072 1.685960491169479 2.611953828100897 +4.952962077211705 2.677522417212485 3.5007607302899473 3.8307389214300454 2.299241451636921 +1.4791081928261889 3.7874235284845867 1.5461753138698744 2.3790261906130197 2.4539682703180103 +1.4348191341964185 1.9380088933451387 2.723106999522368 4.238336863029037 1.5965968410887532 +2.1910410005115852 3.420839466905138 2.9928163408315314 4.3834082717940435 1.8563809378470741 +4.977097388453465 4.77513643047578 2.8578240328693547 1.7631401583454336 1.1131581260943872 +4.319497616376617 4.306440585241045 2.4209482413147936 4.62338127714448 2.202471739518136 +4.836657496249744 4.5728964432230015 3.178558183912252 2.8871760978996175 0.39303105875089617 +1.0418262336777175 4.249565406467339 2.8391617633568282 4.732199798159147 3.724672281135251 +1.827084967592246 4.449414113091812 3.7114193826413415 2.7380953053438457 2.797136018641837 +3.156071731870386 3.855633585612527 3.0422241222390336 3.991953332184289 1.179564478709994 +4.534738645694695 2.4195683836145636 1.2629526758999479 4.948177487998127 4.249097216267496 +1.2166395502163403 2.2615745714584112 2.280721784966989 2.7315297506188196 1.1380320823743544 +3.126524850994369 4.894743956509058 2.351185473955487 4.352221494404869 2.6703452885803114 +4.516519161461995 3.4428796612627552 4.22943491481009 2.8939621336904504 1.713531244389637 +1.2860572661141854 1.8211574254136624 1.2000873072860059 2.541198343407046 1.4439220864326356 +2.3754224570312052 3.427828909531935 2.189538595324457 2.6161359698891586 1.1355811997610155 +4.398495177555175 3.569044151315668 1.947418567287452 2.6294277484596322 1.0738368256550521 +2.6872292370698783 2.513887743737633 4.9093672093362715 3.861492537082585 1.0621151548026342 +3.360730570877672 3.5566049902371355 4.187643374537183 1.216475501272034 2.9776173896728833 +1.3062873062836915 2.018633657251142 2.758579742297427 2.352173394418494 0.8201240414308889 +4.353558043957101 4.011258726349958 4.9763365194306255 4.3531091403678275 0.7110423256373704 +2.745737252913011 4.98343945798813 4.392398336654821 1.4337610468034616 3.7095613988040483 +2.9620295966541383 2.061162439365037 2.789468019690233 1.3211977689514183 1.7226082445776136 +4.106200298393323 1.2853693197940164 2.551454753557639 4.100204073519514 3.218029189722786 +2.4638260908890333 1.9932686685643421 1.0020068948482432 2.6509236107538454 1.7147450608465895 +2.4924125004056474 3.852068504875703 4.8099845903995035 3.104404436184986 2.1812079481200075 +4.51943449823937 4.753534987927733 4.621419638403705 2.3989665617843268 2.2347484684069645 +1.8308231754984052 1.7680761095456559 1.9887421751974648 2.9320637142008246 0.9454061139179003 +4.141152972195096 1.770222350911621 1.8207700675567002 2.2779485521674308 2.414606422945696 +4.554783992509298 3.0561410877675166 4.815744312413349 1.9786222026188711 3.2086122267761734 +2.731508535689142 3.07589960360835 4.608322436728031 3.8082862201436543 0.8710127183395062 +1.7673983618400455 4.016918621449442 1.7060322107789379 1.132723428732783 2.321427224352375 +2.8256907706769288 1.1826685971218587 1.0845615212338289 4.979884797282146 4.22765482125935 +4.433969829161537 4.93991444434362 2.89956356572506 4.89038721624597 2.0541077773829564 +3.3693286905027695 3.6412686859950183 1.3091050156109527 2.7829494208480563 1.4987223532052347 +1.6352655719821154 3.235416127212118 2.403751651268711 3.251301175043125 1.8107517761010539 +3.0284721502742036 4.535086398370711 3.7652516093120054 2.0393749272120134 2.290968531949726 +3.630572498519402 3.2594474265913487 4.5085238699513726 3.108986341239175 1.447908530704702 +4.959538742964283 2.818968277080154 2.2267798238270204 2.766638330444578 2.2075980446138144 +2.202328328982293 4.000242868810019 4.333635234553902 1.363370790885515 3.472026433920775 +4.8111857491660475 1.239553648511646 1.7518354887812428 4.265494936986315 4.3674981034884945 +3.070332793063333 4.327950195066472 3.0507391736076435 3.100130468672179 1.2585869178762652 +2.147839559451614 4.885116348734207 1.0805865013387579 4.732954311537759 4.564260601907286 +2.790210580094923 2.085685823579075 2.890337228412188 1.1807639162044974 1.8490527419077285 +4.542447493866941 4.000711307021052 3.0733194522083003 2.830692220091664 0.5935874576698065 +1.139000084455136 3.3084550308931933 4.6271759318418 4.470485922569257 2.1751060947986844 +1.7365457085818052 3.203141168740723 2.350743998493883 1.008773619314069 1.9879101444368057 +2.9729273499924176 4.807323828751386 1.7025569004381391 2.2359295376235617 1.910365622434992 +3.9511550225229293 1.383558998751349 4.704782887132612 2.794995615109409 3.1999744945342075 +3.454223606903484 1.0130213624615 4.125110818557486 3.8183761686937836 2.4603972329068307 +1.2632985657744413 4.771029968434609 4.348128866528743 4.433601607965935 3.508772603452247 +2.5049100952727645 2.3228054724104 3.192224407204013 4.691196046196709 1.5099927377879319 +3.0028536624419533 4.172863290874032 2.62580294800962 4.722512929999375 2.401065446671384 +2.635297718580023 3.0344269526267635 4.305061359657104 2.677613113128109 1.6756765620492038 +2.277051184577563 4.885479072774414 3.1347577939204982 3.5638482506643823 2.6434853258514144 +2.5978239338944404 3.591855697641764 3.4251338607119637 3.8137248151351253 1.0672872514923613 +2.829975123936307 2.78976749694814 2.6542397846701586 2.2661555292216433 0.3901615596071044 +3.1587648829138275 4.809913426656649 4.369302066735992 4.090228452664603 1.6745666889004167 +1.8814624010598733 3.8688649045961303 4.5694266404180786 2.184949572910491 3.1041101134675886 +4.795959136249396 4.653509056759188 4.875545663804445 3.987296309350221 0.8995993223847558 +3.2384742043445516 1.6141415957175744 4.925121292922883 3.7567792763956924 2.000869683670514 +3.0328143730441015 3.335438491937818 1.5923199577199894 3.133975818863398 1.5710773855969102 +3.0545555507324824 1.3127063829711614 3.5449335388316174 3.165525638255289 1.782691470291633 +3.956908606444804 1.7482167140340104 4.487503181710688 2.8296828065410833 2.761645935294505 +4.459130422611427 1.6489350088107475 2.2640765742080213 4.940851273551106 3.8810206202479307 +2.9911250099104927 2.6945947972604314 4.206607507207998 1.1939785998986459 3.0271873249223002 +4.201807661409903 3.5509661753793336 1.0742985210694758 4.885846096997259 3.8667156041658197 +4.726727331940623 4.624144043493535 4.991994136844593 4.548232257596963 0.45546452830270573 +1.460740824193428 4.146521063982288 2.585510763562307 1.9556359657039137 2.7586514381881333 +4.823436078240249 3.2184780532181887 1.8513173328715675 2.2589952419770523 1.6559261878644629 +2.096433424741181 4.770178221582695 2.417526820671899 4.577337925617574 3.4371056497704178 +2.705457348506686 4.177921467018364 4.039799241593966 3.5837681606238356 1.541465188421444 +3.764136244906816 3.9918350223090844 2.247288284581667 3.113784163593502 0.8959139699630657 +3.1322506127905254 1.386153044634805 2.929994862167312 1.4525498476258307 2.2872910808449367 +4.96485078891865 2.3853924981757917 1.5063486027021162 1.78260721420288 2.5942096858408337 +4.428419957539431 3.3982431533041844 4.594555122469911 3.822159167929524 1.2875790300306622 +3.0641891293992902 2.607585001590519 1.3595561985468811 1.8966372322670897 0.7049421013912961 +4.651254007122261 1.774526052652916 3.7162347516521557 3.67563439379227 2.877014444364806 +4.862738064748507 1.746079444168827 3.080327917546909 1.3333492475607414 3.572883349707946 +4.192288128021829 3.6607166326797826 1.5377220591566294 1.3775873914704966 0.5551678723189298 +2.106364346101994 1.1720894586797783 2.408891478362877 4.2034210574658175 2.0231673127903114 +2.6577019623549867 2.2981712476522467 4.703728998900415 1.5900963368680965 3.134321408038608 +2.5532961265464493 4.057839373685935 1.4835850133739545 2.7834973341762654 1.9883215092853261 +2.281365414098425 4.61986925341202 1.763382101317669 4.648638239486614 3.7139336544055275 +1.934017698330135 4.821049882783836 4.715249269318378 1.2738565589775286 4.492008305965011 +4.002598873519133 4.640251489107138 4.130284770448321 2.448099698667042 1.798985123309809 +1.7690697619933178 4.016451747847668 3.7017976443155107 2.0828489756469026 2.7697871005054706 +3.099508011495257 3.7042665170883073 4.526761728172624 3.2268522579909567 1.433700624522122 +1.6461527731562682 4.4835502103717495 4.202974476328162 3.765187721511214 2.8709722150188313 +3.9753796674184985 1.7878381555769813 2.9445635537495174 4.693826739502198 2.8009390495081266 +2.992633449080862 4.622099526881824 2.6059018387143613 3.676172951864481 1.9495230068782585 +2.0179374383714808 2.7146838418413424 1.3311975647035696 1.5470855721753227 0.7294266121538965 +2.074458412902147 1.15244332446049 3.8262764552244444 4.690089035959794 1.2634413314241153 +2.3390702957555956 3.6544924807565606 1.2695492793035639 2.6498014009894737 1.906680739980128 +4.565091684900679 3.4054011677427547 4.654935875832333 4.339026097303908 1.201948869027253 +1.7206294615200726 2.962761245913887 4.521635148056045 4.3454580865165875 1.254563560292598 +1.8026874909126587 4.340444969636646 3.502574004304014 2.8045270891270535 2.6320111163533486 +3.138793625426404 1.4291002482347115 4.031333289352906 2.581175746244076 2.241876076826856 +2.98004265575098 2.264034018144036 1.891709060223362 1.085260151759043 1.078437856851772 +4.075814922136292 4.847657213386889 4.349726815558174 1.8677623081424284 2.599209175621396 +4.508793255054163 3.5931882226399714 3.573792868903736 3.586141828177776 0.9156883051439204 +2.982278428618076 4.871142633849185 3.2237451278197 2.9494135742054746 1.908681688263327 +4.6771283800836265 2.148550037369597 3.5838280853642313 3.5605015544968097 2.528685935873559 +4.893097103417883 2.365665092305745 2.9177041068237584 1.5175364575822883 2.8893566787049205 +1.0925616102818205 1.216324307702946 2.3337278047177326 1.6190830269723473 0.725282264798819 +4.797431519566368 1.8177195913092503 2.6724303521376047 3.6307125461355287 3.13001404768912 +1.1941576251237818 1.593942404187588 3.397285846475343 3.350804876111155 0.40247776358091253 +1.0347190467252463 3.213364019192444 1.7507287991814682 3.9139338485129445 3.0701710052552107 +3.874968780817753 2.3158682994081996 2.208067338199438 1.287601440621268 1.810539085393046 +4.456461511738276 2.9619448253819316 3.101363368852169 1.7048338346904024 2.045452239868638 +3.5456060884798144 1.1864028316159638 3.9381541319902627 2.7648646775656895 2.6348525862106427 +2.7700277164066893 4.666005361058648 3.74599610873536 1.160527886226045 3.206146777461298 +4.531312611789391 4.471809103872118 4.32690903775376 3.652360656138923 0.677167768424972 +1.2434053425451665 3.9859807429770964 2.9413521737445767 3.2933082603230286 2.765066529748241 +1.206797809116071 1.6942726057073094 3.7445627393419287 1.5042222417466364 2.292761920147225 +4.55197837304258 3.0568049125378343 4.917982487158534 1.6111325032936374 3.629159750243161 +3.970686169369835 2.5823532818088664 3.9566318021878852 1.9129209668977007 2.4706724155512565 +1.0152545167317713 1.263232018221089 2.1824189582831 4.913127822002771 2.741945247382241 +3.6271250188505575 3.3932761371260365 1.0662420054528274 2.589490125620257 1.5410938112514165 +3.6973416387803586 4.6420468654067 1.7717866059800453 3.4510367085487705 1.9267456687877103 +1.0526499729619059 1.4250581148451844 3.4729324869317355 1.4372923414912924 2.069424708915438 +1.5518855103329772 1.1042829001308685 4.757733177077485 4.208236281867194 0.7087276871306006 +2.5157442857452024 2.1560868636521384 1.2303687215496177 3.51215727400231 2.3099594064335376 +3.063112449107781 1.2951763902466515 4.666508895000983 2.3845417202335133 2.886688776944555 +3.0907913151446427 2.591684504034366 1.2312834081056838 2.807532243058452 1.6533807784617036 +3.383415569614526 1.5598854046867534 1.6528023994102168 4.883991653613091 3.7102353373981054 +3.792443570544012 2.4261340262994895 2.509126731071167 1.2864615283662442 1.8334971962343287 +1.8193189078395013 4.823057536834625 3.0639305566941606 4.739871279217166 3.4396544967087084 +1.1074207365991882 3.3811806847565684 1.6240172127849224 2.3900114907206493 2.3993189733078277 +2.5116244416442504 3.7635759213452626 3.650459501419129 2.808493148755748 1.5087378322766454 +4.58530591522163 3.2199532750401123 3.376137810557385 1.6336487453773212 2.2136973538229507 +3.211909584836108 2.5067662545114384 4.2024961975283635 4.513423889237915 0.7706511180639367 +4.623004778519956 3.7599868102587175 2.0561973558663373 4.224859261387605 2.334072508299794 +4.54992740443558 4.81603879880141 2.2814190541400587 2.48236469515936 0.3334582805329383 +2.9464701375764717 4.063778983939993 3.1617580076341447 2.123718875024845 1.5250915706902488 +1.3456258650773707 4.7295933550027485 1.022609396260707 4.88247042317126 5.133202033812312 +2.4367989708319953 4.886727187404267 3.707562545396059 4.885675425662372 2.7184735100799453 +3.636213601413603 3.883017680466633 4.459150160702387 4.601588610768003 0.2849578310808623 +1.0328395435010194 2.0522333760332456 2.527666441484832 2.4323879676192903 1.023836790405037 +3.662070965161884 2.8492182630540737 1.0449903085840968 3.4903828537991832 2.5769505652063813 +2.092070067409027 4.881492875259659 4.213916697252339 2.80353846644314 3.125707336731606 +2.6145583094476477 1.6349072887029985 2.404594870850071 2.956248702149357 1.1242944774538448 +4.531854500155706 2.312760016907656 3.9272826503170624 4.0878748745482465 2.2248977927233984 +2.1664777464556475 3.033594421969524 1.3845913425412735 3.746586407764519 2.516130365679251 +3.6152046927182058 4.474999134393527 3.0612556014303336 1.9773717829239739 1.383492180663015 +2.3111073350905658 3.464569373048076 3.0259794963759203 4.390506148587029 1.786730997549309 +2.1486850819934595 1.7998025198728151 4.134218765268516 4.571649921844503 0.5595221701552772 +3.3639291860008873 2.4540620979705725 3.8169074326691765 4.970335190705918 1.4690996259241333 +3.270151591187896 1.895701583016776 3.2178891950335595 3.239203727039195 1.3746152677153745 +2.7771718121201046 3.6549356048761243 4.673958519537858 4.630825725950247 0.8788229137636913 +1.18024357198675 4.196127210936361 3.340106547821084 1.987672755732107 3.305242999488558 +4.68442335126772 1.5658899255106817 4.583689026086227 2.66306693790372 3.6625182502178006 +1.183435295757712 4.039941105871806 1.3121227004853253 1.4157944718038484 2.858386481808207 +1.7720781713025127 1.435222379548672 4.0148023341476495 4.703130653632141 0.7663339349411921 +3.5425469000228778 3.870225920851579 1.9455144079551276 3.7347162927832422 1.8189603968651253 +1.491898723396956 1.045772662461987 2.341629670052669 4.038957198200093 1.7549784044404635 +1.637743123009869 2.8334719259249646 4.101238052085278 3.7763025720283387 1.2390925858549073 +1.5384481832311923 4.803332845831148 3.086864924710133 3.627637730529853 3.309366568936503 +1.3299261973485073 2.799334651654488 1.0430717946829606 3.345729538644651 2.7315552147838114 +1.212929091578932 3.2338353812421867 2.7222487485631235 3.795969959902859 2.2884360317215275 +2.4428835713981676 2.792376706436065 1.3124000287915174 3.3406268208872163 2.0581179197542174 +3.8231109307414006 1.836946373581669 1.7827101216951142 1.8122667180005232 1.9863844644234092 +1.7015386610563694 3.8781260024422513 3.6996770413020457 3.4874893820787474 2.1869055895049345 +3.5994054799915327 3.8777020536320856 3.1052639793008217 3.8639927574680057 0.8081573743517656 +4.074591362630226 3.8008759576647657 4.744485603983226 3.742464807533887 1.0387327853843713 +3.091049837012085 2.9285076202646283 4.371249246882608 3.9279154187063905 0.4721915452764454 +3.126215415915016 1.2064017633148834 3.3027968449374465 4.605691532235898 2.320176507703755 +2.5293785221837464 2.8881687590730545 1.7360337418768363 1.610498196618099 0.38011788593868395 +3.623636260127766 2.0237526674946675 4.64715707247665 2.0122673611296764 3.0825754331303443 +4.008874295272813 4.508569654366462 1.1678731509376514 4.861532660920487 3.7273068062055703 +4.826710691765384 3.7837260220220488 3.2436586718682956 1.8120865487236917 1.771218723106879 +3.469708221628226 1.5750215017325213 3.967797886738946 3.9416203926129265 1.8948675488666382 +4.563968896402342 4.234198918517913 2.1465666846470417 1.1384027582006837 1.0607274583518773 +1.8451914932821043 1.8183976478198218 4.3763807059469215 1.474297377469076 2.9022070145983223 +2.540095708754558 4.365407128523566 2.6839844865540248 4.800630029495574 2.794986607050824 +4.773533743061803 3.2075183685760247 2.8950772053293057 3.6447714089578653 1.7362158713939035 +1.4149966935602722 2.317666294615945 1.09109450050228 2.322851074457832 1.5271007387047937 +4.506023230534725 1.2503866129407646 3.3696022006658755 4.25891868292762 3.3749153458184766 +4.286684386097229 3.255905089891505 1.0832624395721107 4.9503921209096635 4.002149163857871 +3.235824072075901 1.5811237955840025 2.330063974878166 4.9964819997311665 3.138123338602761 +3.482864155025419 1.0814272927776196 2.1293722825870947 1.0531849597220186 2.6315543234480367 +4.869553481237489 3.3755976995725785 4.881934643648822 2.916972009681911 2.4683966517673355 +1.751895650132476 4.498440558252556 2.8621304639636054 2.1319949113746057 2.8419371663488238 +4.5744861104177446 3.0327988988325196 2.874339800653148 1.4828228709679085 2.0768049556869954 +3.7710814637704315 1.5365653116896394 1.0467855652287703 3.9300499963459097 3.6477768864961013 +4.452059321253476 2.3108413179780487 4.586254514295113 2.629787047826919 2.9004447046787982 +3.6422792851199732 1.3818274588411397 1.610578167290302 4.034542843608021 3.314399977516802 +4.918532276737777 1.3050217743971047 1.2370958511322905 1.2888975482935527 3.6138817864389425 +2.76826171717476 2.2596773475250185 2.2511797151571042 1.5094562571491053 0.8993396183930567 +4.592317761563832 3.054023608118703 3.357155204492382 2.722998717199486 1.6638820129141163 +3.0472163427953807 3.4475337712888474 1.5941498147688313 2.523181855042765 1.0116098928990216 +3.2198452529544497 1.1865875914996504 2.4817619611327335 1.2501616510017937 2.377178167866108 +4.265369645680018 4.8727431719164125 2.3370622918246142 4.418680276436622 2.1684178643040624 +4.324681114491158 1.1326187077501064 1.1013692099851928 2.229445679616081 3.385530819511818 +1.6227754627029491 4.128692521761403 2.0755908517735673 1.0573129476886178 2.704904840623383 +4.504832745957481 1.4473317012401399 4.322648383985722 1.149468170516072 4.406516232309025 +4.66353765372415 4.620306763688756 4.741477918499962 3.6367563678180037 1.1055671008104406 +4.4296929994984975 1.693318899014273 4.295484443839825 1.4230681566101864 3.9671801755079077 +4.5989569395865315 1.4877792676775896 1.2362159228361622 2.4477156495367107 3.3387360024386843 +1.9128062481524415 2.9650889101250852 1.798404473889967 3.506179951571061 2.005940149370644 +3.6707308757111856 3.1050255384045613 1.1151653766515044 3.0712849564524043 2.036277569276264 +4.805047587444855 3.6486647726913732 2.7100071309954523 3.841939891358232 1.618175821176329 +2.9444043876272987 3.545651748913293 1.659355866481004 4.765513718181941 3.163813361931571 +4.994524529114491 3.8216368395331957 2.219387627182416 1.59951046778747 1.3266172112221732 +2.591954611980824 3.2957347785987823 3.77040633487928 4.760788247166509 1.2149744257022492 +2.5861307472579975 4.189856477533425 2.8351579180578925 3.3594886114146156 1.6872637298132724 +3.5327684505238586 3.3290660049169785 3.3760085237745265 1.3092847124306917 2.0767383077127968 +3.398996984561317 1.9504713158179987 1.5888086213251222 1.005213827679019 1.561668817700832 +4.575303836848748 1.125077836473091 4.268858026149949 2.435235556555665 3.9072024281663786 +3.848344452766601 4.303830756693845 4.468046402245653 1.4273913100132214 3.074581461432486 +4.297928985888259 2.8593646693779795 2.454757177078441 3.788765641369942 1.9618985385432286 +1.180888569983031 4.909413689972549 4.992867409377004 3.934250689818714 3.875895887317048 +1.6697147303727502 3.479886105017705 2.295690689697112 1.1915999753750435 2.120315238599256 +1.3399493950653465 4.785708311216115 2.1792426692257907 3.5027472117424767 3.6911947635277684 +4.576336918865909 3.320497832887569 3.18181158689351 4.265529035973412 1.6587873038190162 +4.3188694742990235 2.0001541800717297 3.7537809001009386 3.6325630400064073 2.321881647562912 +2.4491436529609167 3.3833401580578655 1.9441335060000524 1.8117930053040898 0.9435237772625613 +4.168182330109266 1.9550446513425892 2.8679426269607604 3.3469422269512763 2.264380489663305 +3.5464532254889636 3.0340688263284803 4.04486036432413 4.779152965886011 0.8953900810325994 +4.441363914105509 1.8297939322243235 4.025391476216526 4.455539920504911 2.6467575360026108 +2.2570141512177555 2.6288083865320444 4.635360101901687 3.2540739083143193 1.4304483569874218 +1.940538930930575 2.6770310126049854 1.1282621815781737 1.2952015661742968 0.755175042290487 +4.253712799987334 1.4495340226095146 4.1019718550429305 3.319307103871791 2.9113541056048033 +3.200734732686624 1.4156289656373096 3.435102023889494 2.7777082711296797 1.9023062702205324 +2.1289419922756663 4.519369336458228 3.5261034259985005 2.11142221796138 2.777672732376703 +1.5623537761989663 1.3472351812810799 1.7065494137359911 2.5576455187481537 0.8778613727954544 +3.3936988590915935 3.5174050984477674 4.173224020018568 3.2440077806183525 0.9374145578241926 +2.0836256352549767 4.514968502559032 2.1645648839766882 3.8973610549735054 2.985634054704551 +3.775510206772783 2.3349155822161665 2.5045038728488787 4.16832357648837 2.2008200468280963 +4.007497469835249 4.449237424010905 2.5636038923994313 4.999010182692614 2.4751440333674952 +3.1133959975566734 2.270029487732813 2.519182021308911 3.8898103775904533 1.6093132575528988 +1.0273818971067028 4.512663705036347 2.762171854838451 4.4517663788710955 3.8732310718993297 +1.0557237533500285 4.487890354520814 1.2196674386248478 4.557556955015299 4.78761673505947 +1.6282959713953984 2.529011170690573 3.0985971001049504 1.0142709474910747 2.2706174007770454 +2.9515515438871835 1.0696445659112808 1.1818323626330556 4.5906212031827565 3.893766201662674 +3.451344860771624 1.3045184243750536 3.7369412657917813 3.671413264207039 2.1478262655538245 +1.2652777997159 2.621660996485659 2.9181071165332164 4.858291658039925 2.367296228100942 +4.630471093402344 3.5792281611218377 1.5871049563855104 4.713311308030116 3.298223439328026 +4.50244315616437 4.247930234600695 4.521851030452921 1.955163838273256 2.5792750860933795 +1.9328255434564499 4.063044731768722 2.6487715555552365 1.7714000341134457 2.30382607348968 +2.4580797206933602 2.5539573957092663 3.5220739157024714 3.056966263251843 0.4748869938570546 +1.5213824142467094 3.782858656598236 1.154380880811881 2.8600633055090725 2.832600806439423 +2.3117370033970137 1.0113924788526654 1.210179907494044 2.3841161232752675 1.7518624721236558 +3.119757758255887 3.542653418365469 3.1823512722298117 1.3483696575468271 1.8821076755421637 +1.9197574775460429 3.8531230842294457 1.700535792993691 1.0256721512821292 2.0477654904823632 +3.770026269770785 2.305839925980671 1.4033055921365696 3.6444286640931565 2.6770271334070546 +2.231997610243614 3.309201436170447 2.7217872882495717 2.55486084691494 1.0900607870243069 +2.8465522032705652 2.7810036407885144 3.109339665167074 1.7334428372593766 1.37745732968028 +4.014193464563544 3.37881021847637 1.1996941169079416 4.4917555890978615 3.35281681666111 +1.770528084213539 4.495153040726809 1.4742134592863287 4.586475310932068 4.136393959339983 +4.3236515551695724 1.8420550136169909 1.8406753836345144 2.464203564115447 2.558731870849229 +3.2561582722797455 4.234606861397334 4.372614316739378 1.647104733431354 2.895818386959044 +2.646121416564368 3.894477057949673 2.2995145951682447 1.067712184718157 1.7537756372378888 +3.6981200834732353 1.4899326592735762 2.314687586967245 1.0227637082634975 2.558350837699642 +3.057895479964192 1.0291200432027998 2.2950495957577592 1.007855437043879 2.402664890290261 +3.537350412454633 1.131181862651648 1.3365517049933602 4.100443455615316 3.664525166950979 +2.6276871668654533 4.355571603227272 4.635688946621061 1.5402115873025721 3.5450761215345943 +2.351422897076279 1.4218336708925596 1.4286743739974224 3.4011543448700676 2.180553453811806 +2.3728164203585465 3.684944000113987 2.671222718091151 3.6134144389950884 1.6153649818213816 +3.757152107312373 2.0202193966270663 4.065753229086819 4.09127604478444 1.7371202190895543 +3.1503359073798016 3.5918032101656925 4.521039704503174 4.834627645502465 0.5415078726752033 +3.3031905625743856 3.4869983016819988 3.0723126565491077 4.385022720719817 1.3255161249607343 +3.575373986766832 1.5898520360287893 3.269065392102627 3.9457743261743468 2.097673091383661 +3.7863442938705596 1.8291438767381223 3.6658391193312143 3.7128959735585507 1.9577660279903621 +2.557066044553874 3.8292522542443295 2.6892714948904035 1.0881276052936277 2.0450231067935785 +1.8693871877832806 1.3970995402668662 4.781186652189698 2.4588963130271893 2.369828694518679 +2.089173712444252 4.307789139177068 1.2413391501828874 3.6834665658811887 3.2994303639025473 +4.400590993089825 1.3178140728287442 2.1782044593452876 2.3236028906610553 3.086203856507778 +2.933555408906138 3.818369934136295 3.3411265970134374 1.581974444553163 1.9691401777333897 +2.3378761058371085 1.788567339602508 3.9438728956693683 2.873141398969459 1.2034143337551728 +3.778293166957652 3.847594450162887 2.405519799968933 1.5852539349948898 0.8231881662751884 +2.344275528981626 2.2324792481394304 3.6028994567398986 1.4231804939071178 2.18258405687913 +2.146970643279427 3.9044076228816356 2.058967498831655 4.638544620587281 3.1213463223997384 +2.26534425325414 1.0006196290968372 1.5265407546121987 1.9721297176374093 1.3409242703895374 +1.4218635997909073 4.93751193418762 3.6474115570850874 4.206122144641679 3.5597669490844783 +1.5314130843328182 4.232348100900556 2.6853485473680987 1.1097352187382832 3.1269165842851794 +3.5464884292508763 1.5175167613695417 4.090418768461356 1.3772735013240447 3.3879024882152025 +2.8316664498815705 2.1104462760381897 2.849245108103176 2.462512973871726 0.8183643948791324 +4.79372259719289 4.790547102734679 2.377128034181398 2.4084440143139005 0.03147656869344907 +2.3699624754264867 1.2395838270557538 1.5765080959923097 2.5185965088773066 1.4714912389765076 +4.942807807533105 1.8219201010765156 3.8302135378782456 3.967624280132334 3.1239112964997404 +3.016806629823752 4.402926237404765 3.736010653480736 1.819422463923893 2.36529868195738 +4.08122657698563 3.421756776421173 3.1635457822408157 2.0138701681826916 1.3253884092659214 +2.089418943202295 4.575770236039734 1.7432690609253778 2.8253176160663367 2.711599496068149 +4.218890105082774 3.573144043317326 2.9397079853549837 4.531310353320551 1.7176105711130176 +3.455868389086825 2.264705321178422 4.546366624820637 3.545434235492514 1.5558711715161588 +3.1040928318785754 3.535578099679627 1.7317063280949636 3.972015005790794 2.281482524081345 +3.85800115169315 3.0448214561446036 4.781673837763925 4.738858110453231 0.8143060872654521 +2.0040646456592612 1.4546708440257876 2.779421235919778 4.459253869770015 1.7673910792525527 +2.4642622973183466 4.724982337900206 2.6382013388524466 3.8790691442611513 2.578877277496597 +2.9357256377836753 3.7095237351682417 1.0317810399514067 3.4600557915713734 2.548584266778516 +1.9937923637124615 4.600725236154691 1.9170501113426783 2.354628548371742 2.6434019539170905 +2.814699631278479 2.443351239283409 4.848798113233649 2.9580449518868863 1.9268749687979498 +1.7279265055597004 2.0056650233471607 1.4552691780584666 3.1407359981734935 1.708197027854643 +1.2710647633924061 4.381811389944083 2.6933935225311676 2.758657785273819 3.111431181722325 +4.27268860813119 3.1651058667396135 2.0896519121499835 2.8455575077330497 1.3409447410174182 +1.2303287414898718 3.4271259546634267 4.444387142952889 2.727616039072711 2.7880496801393377 +1.8113427507703634 4.0158789297350435 2.1731611171848773 4.193963657661439 2.9905890175617107 +3.1555393845678297 2.1155104729367893 3.8764785211683 4.004354760796706 1.0478609018805634 +3.429587235836699 3.8841590327109228 2.008164074377352 2.2076119945617685 0.49640204610713445 +4.7092019110726975 1.7092380806331802 4.631623020574795 3.689017027445042 3.144565000477724 +3.121593202377283 1.6203113174075194 1.7483094562993773 1.2383985704398888 1.585514556746918 +4.0593220037247555 3.412559632098207 1.9518617065810266 3.759632546480609 1.9199835871546505 +2.7255674217197767 2.6699021385723416 4.832903772561848 1.3152927853928076 3.518051403945121 +1.1250217924240902 3.877176541351388 3.5522610180765533 4.571311470371697 2.9347605671274133 +2.0783231298912113 1.5509855862136899 1.1490429430509468 1.8224843982405332 0.8553410305484647 +1.7117516523057246 2.9009208891256564 4.612338396997018 2.8964498434558044 2.08767741808275 +2.375232152409944 4.590620085960089 1.1694785969175014 1.3474172585341195 2.2225224101046757 +3.652966536944409 4.974007570692063 1.8514632590060858 4.421877563968721 2.8900136871651 +1.886279131833287 3.5617743998037223 3.448006875067008 1.5144262650725802 2.558518784050206 +4.5457531835282685 1.8328280032247775 2.371672199083847 1.7964886114769674 2.7732290192800613 +2.35102687329271 1.0426087671324864 3.5994389771630138 3.365721605046858 1.3291281919200977 +2.454317014660914 4.028282853773737 2.877418869201864 3.7625424160131926 1.8057719002725676 +2.0717720126640757 2.5823610763726514 1.82901055687726 4.340901231999708 2.5632588546118216 +4.3550613583182045 3.4690529995674444 1.5428429031953672 2.612718690241886 1.3891166299071593 +4.091634503880673 1.3700054602698835 1.5258046963312122 3.2548487804873756 3.2244159309836578 +4.993983189679828 2.1935165413520488 3.274535295824096 2.2083221526274404 2.9965686902057693 +3.8835309843977477 2.333440955332087 2.297313981081345 2.0423525931098765 1.5709183325574625 +1.2791252850198251 4.730005958503204 4.945123597297687 1.1721483180802492 5.1131125432760625 +4.089231869055094 3.2812874731607238 4.625811447849482 3.1061616904160783 1.7210780145375517 +3.7187802784176047 4.601161057704807 3.7717531826460333 1.5242832172654803 2.4144807070969017 +4.635962238667489 3.208848700840934 4.9060976979983195 1.6102028480710198 3.5915979607446493 +2.6339539906164418 3.5269855595266835 3.1104904209724125 1.714431879782901 1.6572521936924611 +1.9919468770770106 3.4662683376926307 1.1175806920865416 2.1640739127743247 1.8079745103781923 +2.7306273054158634 3.6633089118295556 1.6197139056233643 2.433846938755144 1.238025676057963 +1.4762206847661812 4.72096213563978 4.202821241185614 1.3622772983228266 4.312428199327124 +2.2267079834171537 3.1022229515151714 1.1164231269733866 4.692842375385345 3.6820240493205945 +2.707795073770975 1.548907337988548 2.6680249089560877 2.2554524959293993 1.2301368948769826 +2.6642572846447474 4.445096024604135 3.5405739909313465 2.559134639341526 2.03337399869999 +4.005246821291516 2.122057738085564 4.768408863471189 1.221378564190983 4.015946347639358 +3.7973773950827368 1.116915878345289 4.35042198645303 2.7372630752356035 3.128443001806268 +3.9484211423003734 4.515859316863845 1.557089775018234 3.1536918557717106 1.6944392247048154 +2.902589096446648 1.4578319741093284 1.836001085505306 2.5440668351577593 1.6089376148177104 +4.206602932534446 1.8263366734696471 3.849891091011534 4.182906057817997 2.4034488619813494 +3.3196113225746484 1.9387484579235754 1.4929159981885318 2.8285442106848286 1.9211155543039102 +4.310899161803519 4.006749530031655 3.8819225927030048 1.44324543099785 2.4575706088593408 +3.965254415046363 1.0939827677693112 4.681696854831279 1.37887262691505 4.376396777369199 +4.056773464748554 3.991003146274248 3.9932332184536827 2.1666292189127243 1.8277877081136193 +1.8160102511551632 3.030872244773402 1.3055836096227398 2.8615873541998984 1.9740915167935404 +3.4212865303080493 3.667997348648168 3.6619220018331613 1.1522586030396957 2.5217606157463917 +1.025750609048428 2.5908796412999737 1.4468558253595658 3.821482711350376 2.8440256214153683 +4.821759708018155 2.3678324098209917 3.994829735269133 2.0925659126162808 3.104894013619639 +2.028075752366349 3.4865460531879466 3.975655678784703 2.973716247678335 1.769468350094003 +4.91850153228658 3.4482406431216233 1.511466699378944 3.879509209097636 2.7873450468219634 +3.131341623114076 2.8259441832042165 2.2128082373273776 2.9761234054929626 0.822142105876564 +2.4513756373785944 2.5772300276701534 4.943694304939507 1.5686615593487847 3.377378474699765 +4.776135315693432 1.7514555142872572 3.447018225791181 2.0236386475836357 3.3428576584552308 +3.9359018554646625 1.2291883199058908 4.721349659176839 3.00025419532897 3.207564147332798 +3.441151220779676 2.241543354943498 4.7653137045788885 3.9784771362571663 1.434632641837043 +1.0239685692676677 2.696417623658672 1.7357959786578578 1.7091752296610836 1.6726609052077812 +1.6057552534478465 3.0606242267327164 1.8727919119256007 4.726009245933518 3.2027320968994926 +4.114561578726073 3.4791624942449335 3.2416448462835246 4.450743126004754 1.3658882262411913 +3.2061356496885653 4.244886039937175 2.274300898492851 3.683110622225715 1.7503563097055144 +4.677129988961537 4.941963695545086 4.99417240392995 4.149901015777253 0.8848339217028597 +2.8416444896723254 4.129562267046379 4.233860669567448 2.485319487597579 2.1716649065453693 +3.5342266139789595 2.4498546584627867 2.649227074025139 3.0744713848888177 1.1647726223739523 +1.0444649639232582 2.765223407878135 4.676030302959896 4.628810740521297 1.72140620119683 +2.892001263908142 4.043602592795882 3.064823500356184 4.959756997805067 2.21742160638203 +1.2730797799989828 2.6787569226690064 3.140336667981229 1.0674818705426548 2.50452694948349 +3.5302066644126198 3.6355421782165607 4.460663750398288 2.9306363008004657 1.533649101649773 +3.529963671454452 1.6782702288693252 1.8489083167981777 1.4458228031985922 1.8950584520237364 +3.39596063599064 3.257456221633108 1.625741564923111 2.469195853574587 0.8547506126590902 +2.754658363163649 1.984855248505636 2.730615229592341 2.568064256332444 0.786778020946771 +2.7201299790893465 1.5367109897785864 2.5140872168374613 2.4953280901640658 1.1835676613928117 +3.6091396787274537 1.9909658117884237 3.9191602662553584 1.9870886650367026 2.5201958923623446 +3.2861185925356464 4.003564975145352 4.27591774377231 1.6173663406703995 2.753656637065502 +2.6063256596774806 3.859005571371543 3.1908367716726294 3.489255716752318 1.2877347661472525 +3.4539917856216418 1.0714638740164077 1.7296495039389312 4.366036160806896 3.55344534981044 +1.1285877241574243 3.204006756024618 3.351914282546452 1.3919036100848214 2.854646386857758 +3.740180497949612 4.923020926547853 1.2197472915413847 4.515895051227778 3.5019568148696667 +1.619961914883711 2.743143202120592 1.746036316604619 1.1238935953652307 1.2839773244065678 +1.6021373245550357 1.7136017759204814 1.1789711770154607 4.232289167410496 3.055351874070837 +4.74542716240903 2.969043412608036 3.0423027676016057 1.066876787318725 2.656660879776269 +1.8102740412350808 3.8436930059194183 4.69565675944729 1.9530649088279857 3.4141767301973904 +4.641217626820756 3.4175518909255604 4.463372354326542 4.470970330899419 1.2236893243188538 +3.0743657434402376 1.5763406262203397 2.7931311294375814 3.595615862918171 1.6994296099842152 +1.9249748983434625 2.9380567353874967 3.1323674016725405 2.4524337138913683 1.2201002533924086 +2.9190604921765524 3.7272972740167147 1.625866721622006 1.5124151783112643 0.8161604916920026 +2.530362170739675 3.0578671489425906 3.855872515325253 3.927382702662438 0.53232998123519 +4.29057852226985 4.338927063889958 4.291433968554369 4.939900705918976 0.650266630656295 +3.7639646856914633 3.2925913316166793 1.8935484992086442 1.4694166634633534 0.6340982991811144 +3.7188772540177855 1.8663652888900186 1.2523040484023378 4.002513221313549 3.315938943301959 +2.509250393045211 2.47851611747473 4.237151980633987 2.270821226331793 1.9665709321073264 +3.0096177158278903 1.9323609485950772 2.1755387206220287 1.1803340199681305 1.4665996518315783 +4.959119661334948 4.382157992171029 1.2346785633704598 2.928856944602083 1.7897276762449135 +2.4340570553881475 2.0000156333750816 1.4899019159327094 3.9782494389933873 2.52591871435827 +2.587192512613624 3.1844617629479375 1.219639129545231 2.7930999860680013 1.683006127262846 +2.1508246085006917 3.450880962905503 4.071644060678013 4.987692071053594 1.590374321328595 +4.057268707432275 3.4410643722319407 3.839161659221623 3.6691885432359275 0.6392172110304702 +1.9095857992830285 4.793267791089987 1.7532683589909506 4.9404613874674155 4.298118336044358 +1.3688073883460388 2.438867467604732 2.573917862200993 4.872421100255012 2.5353788096787295 +4.21150316940305 3.5896496057638894 2.7975866991368794 3.465710519541314 0.912738349146425 +4.183682430195377 2.4887598332785315 1.4760182581423256 4.835222480652007 3.7625809782735864 +3.0097177386377294 4.466906958507055 2.463562937057227 4.584090724670103 2.5729435517596833 +2.0550713361315562 2.945738561344966 4.969630253332215 1.3738466448568727 3.7044497384968404 +2.9713366985676894 2.1057044141409635 3.68964846712631 2.2643651399292852 1.6675586390372166 +1.1785847958236904 1.0426310153112572 1.6838403018389898 2.5870139519622932 0.9133488231298457 +3.730780856666243 4.042162841442357 1.32599383832815 2.3855705603530777 1.1043828911660136 +2.31279849945105 3.4440690775142158 3.7173323953245903 3.8734030275032305 1.141985622948034 +4.587802363400611 3.2172815110414046 2.206943217214828 2.7411013673811757 1.4709358708456803 +4.122359451157859 4.775889945429025 3.966433566166604 1.3876556574282053 2.6603002855955014 +4.03255070355474 1.493842363031836 1.716180732719672 1.1640373899739278 2.5980574106780248 +4.2407091170166975 2.910425783012987 4.389610351310036 2.162201815798404 2.594417571016297 +4.92836648004539 4.51065478573642 1.458475202902625 1.0553920343156764 0.5804817829704605 +2.496020299639457 3.4310263813590085 1.8323183814530588 3.745001408070905 2.1289886644048983 +4.365908228263162 2.808770568205243 4.987295740800013 1.0263025492428657 4.25607151677844 +2.341166697649426 3.9524382389208292 3.665863374667331 2.5014829040462603 1.9879582138653893 +2.66192262963709 1.2893940393199146 4.06479702831053 2.889442889494208 1.8070119210649143 +3.4218392973222738 3.4757593926519186 2.266502157042477 4.572725309189817 2.306853398935609 +2.1694863037235375 2.223137226013469 1.0956870762678363 1.140820068733165 0.0701099741223438 +1.3282372661317448 1.9391557452342552 1.9600433260582273 3.5410420243242173 1.6949272173245906 +3.809446648089828 3.834863312787439 4.919650302849481 3.953655078958105 0.9663295397664823 +4.986129768029071 2.226397213874254 3.2809746147432493 4.315616888300662 2.9473052785033858 +1.7138198412902423 1.5877008936409425 1.0648761060249692 4.058693562975803 2.996472752170412 +4.885720025369926 1.6641334433529225 2.1434614376869696 4.709095131322041 4.118385163549851 +1.3816536533597694 2.198259012764261 1.9052537521430533 3.4664504994521432 1.7618682121023188 +3.0448002880788674 1.0594985580206209 2.319140351104008 1.4596511983531713 2.16336417717143 +4.550373443130111 4.5152795075956575 2.556865513653465 1.4727529198531033 1.0846804600193756 +4.09910192276792 4.325878221517285 2.5791796914140943 4.408598536278829 1.8434209501957717 +1.1306760588031315 4.27953349965226 3.0415000070648306 2.698045195562433 3.167532855446818 +3.6984611774291523 4.286004336723165 2.9828666838885862 2.026990716323367 1.1220097278553043 +2.0771484751266343 1.07654731832505 4.539087831263281 1.0029487218589148 3.6749806089354773 +1.1765780488336275 3.3303835391844694 3.366215614234759 3.392701373416343 2.153968334424825 +1.1157346551768765 1.7200757410039382 4.711304805450435 2.3262796326761164 2.460401028853996 +3.028607084315623 1.1950704708454611 1.2901526652282702 3.957183902717053 3.2364968924249835 +4.843848537213512 2.625751709688966 4.176176814787742 3.8212123038817265 2.2463199550102395 +2.9164435665185486 1.0248819399987386 2.4418283702071064 2.608530324378981 1.8988930797827959 +1.6911988966003584 4.487226600155324 4.308646092658449 4.7129920894087824 2.825113555971667 +4.790946132165754 2.100783205789886 4.7282530562381035 4.803982582354694 2.6912286286328437 +3.653264862489804 2.2429401824336312 4.098949655662958 3.5365001862511716 1.518342882492998 +4.762408879638752 2.8645064079769447 4.062722295398652 2.749378814410603 2.308008858517186 +4.295478242719987 1.879785584854115 4.380243367473705 2.6373723175195742 2.9787867520242695 +1.9389936824553557 2.4065484593245916 4.513890562415492 3.485606382549088 1.1295909985197137 +3.5430231770363143 2.7721379189044875 4.299491237216447 1.7660194171734251 2.648158519454052 +2.510258969241038 3.5825044731798545 1.2671274160353598 2.6353445127841586 1.7383119526001996 +4.8892874372832775 2.3374130966179285 3.562125960905404 3.71308384137307 2.556335449862068 +2.0282110512782787 2.2515086911914626 4.000769092775499 2.5283559141893353 1.4892489397226405 +4.013580853491681 1.760140021442656 2.737570691800377 2.432099689544637 2.2740510365347846 +4.999664021287458 3.449480591184343 3.4719581605959933 3.509373155214515 1.5506348857124825 +4.63325062926627 1.1733657578097234 1.709846462175272 2.659863526400051 3.587943107973167 +4.681407050644674 4.5588948489612235 1.3187624863523326 3.439567085352211 2.124340223857836 +3.165384732762242 1.4139432889464425 4.365723829099516 1.6577995771361085 3.224965253376717 +4.21613318935851 1.467756122755337 3.362912921736647 1.9675011629048167 3.0823287425121295 +1.1507206148538356 2.9225023643106574 4.674343831816298 3.140999052929179 2.3431510362434307 +2.3661880549598657 1.7633563486517416 2.180849341355159 3.5438520019278426 1.4903631499935104 +2.885747062904319 3.50813561692036 3.814749129906882 4.593644485399523 0.9970182982163293 +4.702404141952539 4.7480302224808515 1.8390956996796772 1.1321668823457913 0.7083996696791033 +4.586160049624022 1.0519611687600192 3.080579109408464 2.375955280129303 3.603755883836806 +1.6000620377734052 3.688561151718669 4.167251080243622 2.9141645428040825 2.43558092028624 +2.6080204379677974 2.4385422667378673 1.655586757290609 1.881683087437667 0.2825639768785275 +3.837290910166452 4.740298410138019 1.9098663000645635 2.149783652162839 0.9343355290487178 +2.752129658034099 4.98191421893366 3.992888817082999 3.3889244763432904 2.3101324881727456 +4.405845174839438 1.4196566989555204 4.155499756381772 2.3146895712751547 3.507977159431654 +2.933022250005107 3.9856543565590505 1.171487790784076 3.613058015617322 2.6588154344633366 +2.3143429221580245 2.114619946831113 3.8323703004441003 2.9556349059765865 0.8991964294777539 +1.9636730704856085 1.7645294335775983 1.3337779219350971 3.954475687258635 2.6282532155963843 +3.925546206791341 3.1468956674638133 3.069819261862697 4.954507880156305 2.0392027487036493 +2.4427550338381327 3.062336975520477 1.0533764979103992 3.9201395378236494 2.932952797007058 +1.352814487430746 3.4106092460562825 1.2002835071517022 2.5131893791107025 2.4409508592454605 +2.837901945534872 1.9950432871162826 4.086072891970187 1.9881809434772544 2.2608762340346407 +3.8285451800173327 3.750599050663237 4.150373597154299 3.4433385452845373 0.7113186091012681 +4.441742078958422 2.781810307055912 4.006196135805373 3.2362328877287463 1.8298133486123973 +2.9963335772391355 4.523734611562052 3.017536983724686 2.4396071026954886 1.6330820147920118 +1.5926115971994603 3.6697742638142548 3.0476801229968893 4.570697594291298 2.575691550136836 +1.8699746997389899 2.89376432290104 1.1107325664429495 1.4040671221342231 1.0649837341747947 +3.513157022296647 4.093863866104816 1.8866770378045512 4.384062658633041 2.564011579062494 +2.2878687166571336 3.998520945458885 3.4074099490146605 3.0339940268086836 1.7509341789060318 +4.585418692177415 2.306384888242972 2.6105419048759133 1.6650727834588888 2.4673684238534332 +3.4593116570333104 3.541632095317878 2.824464820573549 2.7472172233688723 0.11288864350881028 +4.116900489500412 1.963930730907443 3.948174010728596 1.1343118589897903 3.543035279305586 +4.82851016627875 2.0843598488415016 3.442264834004602 2.1047570822772963 3.0527508825027936 +4.11194379768103 2.466840012748902 2.305216537042033 2.6353041200903724 1.6778928081616855 +1.993863771583507 4.559137378993862 2.966292941551947 3.586433234057482 2.6391670396670586 +4.040927863629544 1.94227355351084 3.2796285629289 3.8890278322581624 2.1853414796866075 +1.8187567382754506 1.7214850547531384 4.0631883742283295 3.1520049675259973 0.9163607264963577 +3.16106383394804 1.377372794662414 2.6420975099821797 3.9061095528997534 2.186156483024144 +3.4972938258975734 2.8003259756590193 2.247948361155866 1.568107374955925 0.973626186369009 +3.6600275848705977 2.1055172999826572 3.4744293752678588 2.3131730807986752 1.9403655344461994 +2.936528791280771 4.583853385679144 3.3924388406193984 4.736560678793886 2.1261095538958776 +2.903170752936852 1.961858818981808 4.892242804670548 2.7813263061248112 2.3112846256657313 +3.937134943037204 4.4567379707266035 4.6479049474346015 1.7748331485057158 2.9196795831365563 +2.211051684028327 1.9133822967130185 2.0857930273766203 4.5628164937369355 2.4948451489109185 +4.068716323307385 4.538443809910302 1.2514571147726312 4.319315896313099 3.103611028325756 +4.894488836646286 4.216575964162008 1.4197382443043725 1.4852545247691968 0.681071395439444 +1.329019299335958 1.76445969515478 4.224806732417408 4.793215456213452 0.7160285019454883 +1.0536189344443967 2.001900428046644 3.845628783343189 3.385662417148529 1.0539482193821617 +2.5680099947244406 3.6330911061881457 4.185562533848378 2.4741516694417798 2.0157690643537767 +1.738242743376838 4.250301031122621 1.5071701847590089 2.7089072497035094 2.7847098258694207 +3.1654237370600313 3.944290733293371 4.526823194016156 3.8219233963067825 1.0504844228413202 +3.5051895813322114 4.733061922333005 4.3954176609065865 1.4252587404339812 3.213956206711249 +1.6159561944282785 2.333652098009555 2.7651465364399765 4.11730781660309 1.5308257698346 +3.7447879513937377 2.678488598682867 3.3708712649525294 2.985057202945892 1.133951850844507 +2.4749566915467613 4.4410258491985655 2.1957188461557053 3.3298916611174914 2.269752388889153 +1.9708994123528183 2.6122820635069393 3.648580897605612 4.13514340068936 0.8050557586953907 +2.2125036093588264 3.580384929010517 4.180084970902287 1.4035333341322822 3.0952121569130355 +4.9524828953012445 2.562180766064801 1.0461250563062623 2.9609770090729075 3.062711587800345 +3.0352930527886763 3.590042444204991 1.173725407256951 2.694551691515831 1.6188451050577517 +4.693364828244162 3.6140892246614724 4.974517186097444 3.1407440221159915 2.127806345847132 +3.953654428271279 4.296467506751415 2.8636061211924813 3.5427470386625677 0.7607583010123113 +1.8172121054201549 4.4005654106286 4.883244843609989 3.7594795989500933 2.817190555258361 +1.4605084160917476 1.7242847994822226 4.369494769489415 3.7748113095320908 0.6505585277139737 +2.852131638506335 4.816594326382475 3.0919312374703787 3.1418665097932204 1.9650972452984372 +1.584004673963887 1.3791164191329814 3.2447561684727804 2.2086236708665545 1.0561958859810854 +3.4355750282276785 2.610515445453735 3.5446938854996835 2.0403127767487024 1.715775578417511 +1.08696079130215 3.4018501709420015 1.0196528237661617 1.5696320344049548 2.379325528822033 +4.51544066528256 3.801553976604017 1.400473544054778 2.806654917935506 1.5770162524595317 +4.986086946607267 3.1042282308592197 4.058182890717479 2.9849600393435427 2.1663793561488927 +2.0275587227225036 4.917396430563528 3.7291916313103 1.6484528523416015 3.560988043221153 +4.657194141940292 2.2506361437491256 2.1962616654704408 2.593798278536004 2.43917132596001 +3.868892801388685 2.471719609265203 3.3346474480639676 3.8449434474932183 1.4874457757585713 +4.225149662782448 1.3539956642604585 2.547576987853528 4.5202125189428894 3.483506311426034 +3.631500355435564 3.983454598193043 3.3984430050704924 4.016285758659959 0.7110565780287843 +2.9757869808953377 1.6703436676182948 4.634559224396998 3.0696767474770286 2.0379007362359243 +4.531091508657525 2.9407560121965113 2.693629548611957 3.0819856706530344 1.6370667270550345 +1.0872668130550789 1.1302089453141546 1.8364807868100255 3.6834341069528476 1.8474524604193607 +2.474652244490113 4.493627097571077 3.6319954708280453 4.140028057835144 2.0819117576963784 +3.1240064943048056 1.8019305643569683 3.6874750724761713 4.672505698443802 1.6486873865720026 +4.904704670022333 2.5015230867083678 1.2238788175906152 2.7061077510190654 2.8235233899282397 +4.120316483412179 1.049000007554529 1.854576705720263 4.1747030909539635 3.849152028477474 +4.170544562486379 3.2127525774854293 3.7962791520013512 4.053938482622417 0.991843645534998 +2.7065473154535424 1.4666478424143605 4.749551724601537 2.3508931479504596 2.7001691929552516 +2.345331679988269 3.3313444847579397 1.070291053023022 2.725667524482555 1.926782944036916 +3.356758659197289 1.9876915122275158 4.903589969621433 1.4724225976061565 3.6942190497714367 +4.335744086150967 2.1794252718065135 1.4305122271366684 3.7244833913761344 3.14833519998396 +2.714243496244683 2.315090439088908 2.83907810234093 1.514221442880228 1.3836792732256171 +2.900779098277796 1.962644271247508 1.9476093510672867 3.3294462243873517 1.670200616139906 +3.012698989493821 2.031801087150258 4.930213167285623 1.1109560623541261 3.9432075177945833 +4.521909200154276 1.8586324221868655 3.6285115841639297 3.382598763980647 2.6746058235169845 +4.543031188290106 1.1198024581059087 4.404009306609462 3.4052116310515057 3.565962946506664 +3.7004355482524276 4.308215602114921 1.6265192519447806 4.613910741130066 3.0485905765664523 +3.8365829514093126 2.2151141534997945 1.7065438420782209 4.453940914168552 3.19019619056958 +2.8370849057794736 2.362701045132094 4.821615152864547 4.532501902998984 0.5555416442450918 +2.4041430682407863 4.411790011775452 3.810331641237884 1.0164219210914789 3.44043278879455 +1.4701988160914836 3.9595829790827657 4.877843966742333 4.247970009861951 2.5678346349615184 +3.0987672318533317 2.1023882085219907 3.5965992018731328 2.990760650265824 1.1661095612112775 +1.9991178070436435 1.9231740358238874 2.792403280956174 2.195187116597324 0.6020254175353194 +3.0738866239717417 1.9940612641921405 3.304724073861129 1.8195745646348622 1.8362167280520474 +2.677112421157421 2.589073489997918 1.8754296630404537 4.332859658600304 2.459006514118455 +2.871323488032646 2.544227696824697 4.58424472252274 4.716131323126733 0.3526836146531782 +4.4257867646508835 1.3198555715220288 3.877258761805099 1.0363347480128131 4.209234826971821 +4.16568083063212 1.6899194664260255 2.393110760294171 4.578558417161265 3.302359125443732 +3.909414704300565 1.6641422439084947 1.2984149499742843 3.460427086819278 3.11697688494158 +3.4404672388430493 4.367705752364281 3.5664900399503336 4.817699709225947 1.5573364753468828 +1.0979696656619224 3.6281566279164736 2.660573913337168 2.5260333604382743 2.533761477396255 +1.4652876944892612 2.3212385907611677 1.3388424166546185 4.283903761969883 3.0669265176229503 +1.0984228196834187 4.113242846737739 1.3041107939330097 3.2101700140832636 3.5668195281297326 +4.756165890656407 2.17711111476181 3.5301105088141784 4.667549860267529 2.8187394018070115 +3.341995176583462 4.877723672839867 1.2277030365427692 1.8163076964737797 1.644663327221246 +3.8046930002048724 4.093060254430133 4.150958315063326 4.278909874361072 0.3154794364711287 +1.5685464840850516 3.977496577998041 4.7271176233556504 1.6119700669565722 3.9379163085447293 +4.431593913682448 2.702009297080272 3.9914170330078975 1.4793884499754775 3.0498771365349726 +3.869759386026634 4.178392442571792 2.011960819054204 2.206016551391423 0.36457096818773327 +1.04814898274752 4.423965529236646 1.2777623719727478 4.195478040776733 4.4619728909456695 +2.3465163956230666 4.365056027495974 1.2939825101544504 2.29210578979659 2.251833103674692 +4.716550582140013 4.679441718370628 1.7600498319202682 4.187663825216918 2.427897602498911 +1.1159279782266052 3.0837510507638144 1.1198047712367276 4.711119046365552 4.095102668743955 +1.4236100326931207 3.9229590043225695 3.4945809802653756 4.47430230700255 2.6845109722347633 +1.9164804665832045 2.484399661520364 4.241689132093171 3.893633104106473 0.666089491431856 +1.3256132906476057 4.028492101891324 1.3708330841362186 2.603549871603144 2.970714484155795 +4.811354783224564 3.207906941189705 2.8310628807005007 4.3721127386467895 2.2239333728334856 +2.129281957749864 1.4741786839734612 1.8110112916452086 3.3167001922975783 1.6420290389820462 +4.636294738458696 3.6515375801035526 4.991734464007855 2.230348739287713 2.931722664513116 +4.914788234696504 2.7236656747501446 1.3198151301400296 2.2497155365866885 2.380279991642905 +2.4101625699897857 2.3273920452449013 2.5792046608498227 4.105159244439305 1.5281977460212055 +2.3020939057610494 4.097554392092082 4.1343642781933685 2.0132297540672726 2.779008821039564 +2.969167160772312 3.86794403052087 1.3770926575908389 1.497307856045731 0.9067808751482164 +3.4957847254075 4.22774882845927 1.4343799104358106 1.9683048554311213 0.9060062334468942 +4.129529840574408 4.271075901367616 3.9642770387745805 2.32310629278481 1.647263398737037 +3.8880016643685944 4.7651734647905375 3.5285266744244868 4.410795193676218 1.2441174010189378 +4.0108742003450235 2.977136297406995 2.0226609376506257 2.671190092474704 1.2203295114957873 +4.658865934231614 4.87271414267302 2.730450867963621 1.3168101348291055 1.4297241617286494 +2.229575815670716 3.5751938169478015 4.145654863937223 4.959682809692359 1.572682199883774 +1.5216339845123108 4.3409771840484135 1.8906645234003805 3.9335040407174797 3.481650380248256 +1.1770082916553797 2.202256874852314 4.760851169616988 3.7885903330064274 1.4129493238449804 +1.4400933249110195 4.998282040957527 1.2842226023941854 1.2195145870913593 3.5587770464367563 +4.594145342886653 4.942041903190028 4.837303506944732 4.475717974812383 0.5017729702946876 +3.7693053789403215 3.1081429565950125 1.5995220541086677 4.919208143126259 3.3848857408099353 +2.3171086822248412 4.093351238636647 4.34438754841362 4.017573567863909 1.8060578609477305 +1.290448327553793 2.111791874757198 3.6152859950025342 3.9067918928408445 0.8715393915407331 +4.241238347576797 3.6491809679488414 1.4684416640729947 4.599345079251508 3.1863910833336826 +2.848267314318255 3.2321159928913055 3.9937895498905283 3.035062833367746 1.0327132830640036 +3.311417082465842 4.4836615170965635 3.6268404001268797 2.767777575725435 1.453322383640769 +3.7692272697046696 2.7066763951947372 1.9751574777773833 2.8221447558083224 1.3588236861594962 +1.914061915764664 1.1870210454827044 3.927151136610684 3.3349177535836403 0.937725336669542 +3.792805644371298 4.669963671570837 3.212429034680281 4.956860032648528 1.9525485170292394 +4.268104445148914 1.553173593428983 2.3205595416119436 4.960039972723707 3.786516403746675 +1.1322456831489283 1.3235955699423627 3.208396524641902 3.181339777491626 0.1932533227197249 +2.901846253620818 1.2036349242806157 4.085022291240421 1.5295781058159426 3.068259556152183 +3.7257347958957885 1.8981822749151362 3.1559787109793738 2.7824883733701924 1.8653265797790364 +2.4988076902750977 4.753944684748285 1.198631777722134 4.936727681997188 4.3656619032398165 +1.5920151835387508 4.739143585180797 4.018708311086554 3.820596492555064 3.1533578086008367 +1.566982707243831 3.1987929441923595 4.697460924739201 2.135765275119234 3.037283202253599 +3.4642578414414342 4.966059867791304 4.832975432310665 2.525094997322629 2.753492587342327 +4.7060226782860735 1.026694346212535 4.836015461819721 4.16235858292746 3.74049068514786 +1.0840613839395594 3.7016059377745445 1.812413024041224 1.0290498595334627 2.7322513315613564 +4.144987307623624 2.584807531404574 2.4397814168670604 3.325336135218235 1.7939810738458062 +1.544883039686514 3.377109013869308 2.9072427644371337 1.136379093210219 2.5481385681593838 +4.237839249111584 3.832219478272343 2.2598202834908556 2.746004573115488 0.6331686678709607 +1.1877183272857805 2.911430529947121 1.67593511243293 4.353597018035924 3.1845026359419246 +2.4316633459088286 3.753187263466226 2.6343535961246536 1.9470631801204878 1.4895615397181248 +4.6858745046105135 1.3033106174849864 1.1791672305656484 1.5123379746275174 3.3989323610781805 +1.2116054486567243 3.3910358786381374 2.2797747077937127 4.889635219166623 3.4001895370629907 +1.4493089839093805 3.183642933722211 2.9062641467563246 2.4013388248221035 1.806339898857286 +4.600135192259647 1.0104442427306322 1.670738771189253 2.148335017374527 3.6213228642998385 +1.3891110272176124 2.759738090338062 2.9423251273610864 2.14458062163443 1.5858798323250272 +2.1829743387461424 1.4852861006691143 1.4617014773266939 2.443572414648105 1.2045079556015619 +3.757801493145579 4.318495273019494 2.1480143932790043 3.8366463217417834 1.7792850543443628 +4.259894172212565 4.1024496304326625 2.7694487173796167 1.0128391636324539 1.7636513000171237 +1.640794503499428 2.577375163695049 2.6442125869599225 1.5887548823011994 1.4110897559602384 +3.4687327120820353 2.160171049170236 4.81343954110198 1.2301746341752797 3.814724238900488 +2.9398552672857994 4.139313832961985 2.728855561994038 4.747743034993614 2.3483201398890627 +2.9843148156764063 4.083329790483628 1.7564955941319425 1.2091283629887077 1.2277804366334923 +3.3342455773570685 2.363834238940012 3.054446957582085 1.3456097387980681 1.9651521076064005 +2.0517685800918715 2.9845029973280837 2.7149100982735277 4.060727031187609 1.6374421241727113 +2.8473921381164313 3.7586799981893506 3.3458777163664175 4.80827560914136 1.7230940661231677 +3.850502703675808 1.426381085153019 2.2513574293198957 3.616200505889587 2.7819349821751347 +3.202583104863164 2.209870977538917 4.1873455835412425 2.2245249736139474 2.1995777127648823 +3.9508238602115053 3.665635589231597 3.3025353573117893 1.5281429438992098 1.7971646520785534 +3.0029270033348774 2.3045797799842944 2.0211079580068256 4.941770247848581 3.002991351247145 +1.4258541379181242 3.2927302242071805 2.29862015421382 3.0535705578588126 2.0137468643108254 +1.780050417453881 1.1692695247267135 2.1500451007978967 4.669565088813808 2.5924957606392134 +1.4049120827709873 4.192977109786083 3.7131843512289824 1.7234890503616596 3.4252290412698234 +4.359732854447181 2.8074954393753795 2.393093885520728 3.1550483796275954 1.7291661701058227 +2.652260325632631 1.111729402866545 1.8381404280276028 4.32695981595936 2.927021945552089 +4.074139081832191 1.35800113529388 4.669619490273013 3.0967099631594923 3.1387019172119284 +2.9624745642467674 2.5552540226607485 1.8149972568510484 4.659446832833217 2.8734512280174074 +3.003635503667013 2.1549299828032544 3.375227517376541 2.664613376529524 1.1069207371426228 +2.6574643729857983 1.1429687969007185 1.3948988594816458 3.6948053075810248 2.7537731424339182 +3.122449542091076 3.7930054920572207 1.2382533263442128 4.979423674475445 3.8007895042703117 +3.092696967222392 1.5863291914714064 1.7368795576707479 1.6416074296147323 1.5093775717842417 +4.515244385104131 1.7412328022182963 2.778598421606069 1.6296873729942556 3.002521750063947 +4.852821263301366 3.7203499674459906 2.4748699650657704 4.4999483491523735 2.320222768966627 +2.3245491037323545 4.016823066683672 1.0466786475032177 2.089012940842659 1.9875240740062474 +1.102075295920232 1.3736140518727127 4.57266420204628 3.533696046295037 1.0738659714551715 +1.0413785659713986 2.746004660475959 3.4589330264427827 1.9140245069443753 2.3005417743837278 +1.6991110179422373 3.308169090597349 2.3133380367974774 1.8740138990163353 1.6679549092267834 +3.5370487027833724 4.315645560768113 1.5835252470570258 3.1463772424400527 1.7460582541073533 +1.819285470352317 1.8856386996906398 1.4862987100613676 2.8570335469330064 1.3723398792052726 +1.1561071134707168 2.2678817624961796 1.0608755155036982 1.5314890943680046 1.2072779343743352 +3.2661386411653943 1.4126800906957797 2.9215231706546425 1.4684013431066298 2.3551797477061918 +2.7225564299211436 3.0883122378790837 1.5464861431430843 3.47351525158521 1.961432766076426 +1.4950637222702579 1.185159213837442 1.4966385737955865 2.2590048286217157 0.8229478178138658 +1.098802896929068 3.7379559527839414 1.584629355910137 4.9919895676977255 4.309899356725314 +2.2866394237649263 4.208734987900934 4.385570460212387 1.2979386004162157 3.6370210144154624 +4.989380027866771 2.708391363137709 2.6868676376284646 3.9199750524978323 2.5929641696769132 +1.8780805263477536 1.6993747066668532 2.882747131307625 3.0702675375174477 0.2590360452387262 +3.810987216891059 2.8692481277448016 3.8552547306597407 4.945348925816209 1.440547766073673 +3.4550646495499633 1.2365563193293743 4.628937010396232 2.966346157921746 2.77236136785773 +1.7095413774471937 1.9833771427482119 3.575685446444659 2.4750512752727256 1.1341876410494531 +3.667952631525036 1.20192660559414 3.4660712812296075 1.5074357069421391 3.149212230611479 +2.7926925425370865 4.265503558507142 4.84665747687378 1.841167672829295 3.3469600014009884 +4.9534525243541925 4.427926307129694 4.228070712696967 4.349606466666071 0.5393966485649766 +4.7810344915443865 2.767364006296969 3.053389056213853 2.209511270587535 2.1833457216460586 +4.289456968985336 3.4341120544076094 3.9745565937002154 3.419202277802315 1.0198202484165548 +4.967659046834019 1.8300388939493737 4.494164572169181 4.234516080762983 3.1483452102457536 +4.429312357534576 2.863159534531857 2.520391816350036 2.7760662940764806 1.5868850316138454 +1.4338982668806088 1.0395354558216834 1.5022505792281455 2.733413682805428 1.2927817350026043 +1.1792851680083487 3.221836776014595 1.778311680869955 3.774478706769773 2.855993674127908 +1.063821678433015 1.7889669798040777 1.582400600816087 1.1485533772413907 0.8450201899978496 +3.1827853008009575 4.359769525100118 1.588903578250234 2.373322619314878 1.4144274800193442 +1.1649203605215694 3.3920731186956767 3.786949394809372 2.5059391700989506 2.5692793939264718 +3.1493648739159186 4.312161232976063 3.042589090180576 2.600471288391529 1.244011062371355 +2.8931610144290922 3.6221424914297824 2.765455075801271 1.4319052365163478 1.5197924751975027 +2.668226946955421 1.9417421815555174 4.889395893549096 3.9228116246090803 1.2091589073899502 +3.6630446346764955 1.5527791013069048 4.596387226371793 2.6209495966073795 2.890601053486435 +4.600140106540362 4.134121652634924 3.7478962524940633 2.072395135722312 1.7391024097745944 +3.1832493494867795 1.7526111242390776 2.06886724330857 2.8340179050191736 1.622399847958594 +2.7403589006612634 3.192827122855655 4.7165013905334305 2.371850729545674 2.38791000964569 +4.055569976659131 3.744052585531431 3.8392724172667574 4.750826536722233 0.9633140701096686 +3.5478742358785937 4.796834154440782 3.7905909423987008 2.84925166588621 1.563975866719154 +4.367820466957489 2.607498476392985 2.7375582034950576 4.4714592299550775 2.4708594213398882 +2.8526203815011626 3.846764213533727 4.426159728340339 1.5658586052771968 3.0281420827571264 +2.9230022178231216 4.537448655620593 1.481997172802945 2.2527261045740943 1.7889830593904574 +4.613605748580966 1.2096230719242511 3.011165828645543 2.9448528633765707 3.4046285366162596 +4.867028137344779 3.1169503485721606 2.442704768259738 1.9095623993126423 1.8294843678812283 +1.6175426639049966 1.9328045097646829 3.141309885772664 1.3821782308990436 1.7871581381157233 +4.564048177956107 2.8780986654223173 3.4859997740427113 4.2700657683526195 1.859350758261095 +1.9299791009997835 2.328542799452049 1.7622125823346382 4.986644613550256 3.248971367318158 +1.4594172439724282 1.601529490077553 4.01747113387998 1.285603568096188 2.735561420892337 +2.7654086515597935 2.395463340801115 2.9828978458325723 3.9957586607057065 1.0783072675530871 +3.1631366018987697 2.765620972708756 2.2997771121336825 3.3812587089300825 1.152224422436716 +1.8576990322953058 1.4489718122195816 2.1975511513455745 1.8350288137619608 0.5463335846146721 +4.812638584107871 3.6290818924935078 3.311314774653554 2.802028034478045 1.2884795015768524 +1.0453966509106754 4.462764329379125 3.8659489036558194 2.9537731225407478 3.537013783616588 +1.6379814391535152 3.9578793594693016 1.7311041912527787 2.5896539337082203 2.4736681307232415 +4.797960373392564 1.7113085837475417 2.3891229332425308 4.563510860341035 3.7756300306082093 +3.001520066965573 2.0627741359463823 2.525625694660416 1.8794700246671745 1.1396319901044818 +2.7896346021195817 3.399391018192242 3.0120863281702555 2.9247248084262925 0.6159828910560342 +2.508002254613079 2.7445812429093457 2.1554661848668184 4.588697750888482 2.4447056001873766 +3.697881378334768 3.670046250601387 1.0929953116311402 2.4661955323711995 1.3734823044278661 +2.3630820259272385 1.9676728081026504 4.372742834670992 4.9169048048222095 0.672651989738756 +4.73429397523293 2.7583657918501383 2.912106481509935 3.9063738025780212 2.211980942872322 +3.1829241785638898 2.7220626537392736 1.6721897906925327 1.7061666059105796 0.4621122905052749 +4.0179064683630585 3.9392382377894704 1.3806362672241224 1.8875312856293887 0.5129632054891018 +2.5416444865291026 3.7881721971447413 3.2290302901006114 1.1883127210374673 2.391309166547825 +2.979936394755054 1.048747460256282 3.3187757424205095 1.842420394254122 2.430867296828438 +2.660468862337245 4.355777902764496 3.254347009038642 2.86405339238523 1.7396556698826255 +4.018561480561854 4.629918782799772 4.470279430339783 4.352093599560639 0.6226761932148848 +3.193259494109873 2.3447430467251063 1.926647360154464 1.6911063490530172 0.8806019131214498 +3.1716435893093475 2.3279504897626353 4.245924688079299 1.4048938166210863 2.963658964658611 +3.121356735063712 2.171424736645354 1.0310633876683681 2.210593899324338 1.514484410466641 +1.719638380120823 3.3861557204258204 2.853967900691649 2.0449310554721416 1.852517385197768 +2.6935857052264653 3.3640903869608607 2.3908206448776843 4.990166429754597 2.6844319767103646 +1.5282132356408864 3.6582973424693535 2.014110469112539 4.684469060490776 3.4158561604246143 +3.6426560950113975 4.312804432302178 4.843376482117808 3.027021869865705 1.9360379312975984 +1.6015514967435802 3.890878143881164 1.814918482846644 4.767604379041682 3.7362240964486197 +2.281187941563804 2.8886346106059078 2.4609639367300584 3.469568814809426 1.1774019092119068 +3.335016666492467 4.862542929043391 4.1012979353984225 1.358897669680868 3.1391233967766397 +1.137414147476711 3.9206898792887612 2.7713944895149507 1.8788836608883037 2.922875190375006 +3.8430054726491125 1.0776898877543069 2.0162366048441474 3.564495350291813 3.1692389349680283 +3.884557667619597 1.1166065643995529 2.948179222339214 2.7481855664700063 2.7751668007896373 +4.720804388379616 3.1519827467923944 1.7481970111790304 1.6274783485270543 1.573459353979284 +3.0818427128430357 1.1618203860598446 1.8211113607604297 1.3265306628707023 1.9826991204091025 +3.7956327088566004 1.0298706773358943 2.520491885517566 4.096708894707941 3.183378657191537 +4.430772610457405 2.890753359961187 1.9377379296554555 3.0518065993334433 1.9007388807137644 +2.783818852386131 1.230623044644115 3.4017400115608063 2.316963186559374 1.8945073178131462 +4.327393661452159 4.111871299270195 1.6350653997069804 4.077505483377008 2.4519305558923454 +2.2727247363975582 3.658230396740246 4.789434682238903 4.135881723863633 1.531912988469872 +1.9860584447370733 4.363330869761169 4.051713707361198 3.9928573001340575 2.3780008955952128 +2.0047231650918036 2.1498419921215857 4.927723858413317 1.9349238252548755 2.9963163238269197 +2.558441266835936 2.773616933833053 1.4338521470536305 4.334076880630656 2.9081960169355128 +1.814386822355333 4.175657153278884 1.43515728165919 3.5125978697491953 3.1450527774178227 +2.765873157488309 4.336727520340649 2.0075698456305475 1.2548214893429166 1.7418993992725182 +2.255432877617041 1.2687691959170277 2.943702229464977 4.833933694377857 2.1322476900521 +1.4365713487662388 1.9183193414866242 4.3230048429502155 3.324442526759663 1.1086964543128843 +2.9821777655200914 1.9339651262280992 3.51937355601699 2.921508511435161 1.206727951405915 +3.870308293757196 4.666962221919995 4.804988368333086 3.2641457681639587 1.7346046811170477 +3.9042024245042284 4.432968707367788 3.6756542571590023 4.202517024864438 0.7464436736201719 +1.1113195432693552 1.9969647968586783 4.042915704779597 4.94152770649592 1.2616937206921153 +2.5781896862868736 1.048899102209497 2.100643424591404 2.775648919596129 1.671634561988444 +1.4848897855000738 3.1275305447702197 3.311245638953642 2.478092494841016 1.8418503808834084 +2.5747134188620793 3.451031318033735 1.4131346121354302 2.3911302997291375 1.3131674018800925 +3.3332066103050577 3.7447992703193322 2.2056823180333986 2.2688753182083374 0.41641550529337396 +1.4985320860732774 3.8186475569261056 3.8423454936670676 4.566960499287612 2.4306383327144956 +1.6863167788989188 2.961748933710223 3.7490390214160194 2.554172088008117 1.747693957785004 +1.136389563208748 2.8191481339428583 1.127919804500075 2.8812158082052326 2.4301693940932556 +2.740583755303045 1.054302387816874 2.3586506447683195 4.709943959577332 2.893462476445234 +1.6395203786659298 4.719378296151964 1.3278017418806107 1.2725843869241222 3.0803528609868387 +1.6907571248197582 1.545008138056196 4.667789690455283 4.9286479209116285 0.29881396141984534 +1.6413249181692526 2.044931163687996 4.957064816348595 2.8189213905459525 2.175903332118593 +1.2709913258996228 3.5610274254254946 2.5735831483844436 4.6718255924727625 3.1059437682136792 +2.7935883812157942 4.70234301859596 1.2048010082886385 2.463307981163969 2.286303581437976 +3.59597947714676 3.975206604622289 3.009516185350551 4.993180254513378 2.019588164329789 +2.218533974520804 1.2177502271999678 1.9212092757834194 2.4748089603756003 1.1436960783713903 +3.2439396821026842 1.8869182272519316 3.1050461351049674 3.7722036506100953 1.5121528955169277 +2.6614419810092906 3.20690502006902 3.031146304436849 2.8269322762735327 0.5824373754138412 +2.193654763524606 2.4154104589789913 1.099843940879928 3.1765730256997227 2.0885351996561896 +3.8321113148375407 3.0350183829121518 3.413948527165278 1.993189066904316 1.6290839714534155 +1.9790088329611346 3.810769906729024 4.516321971637142 1.5205555682442995 3.5114049859092837 +2.8186666005806913 2.910042786945283 4.110886025012989 2.8426331157708824 1.2715404237520738 +2.8862352062159684 1.9865732064807156 1.3748083049838913 3.1921992181096983 2.0278810233541535 +4.732173164501785 4.388078647830053 3.2682925719508367 4.659996000245933 1.4336106405617517 +4.204589425756141 2.34703991062449 2.2798113845736467 2.7896781512928452 1.9262539606631626 +4.088543989467443 3.4468850547181273 3.3429513838425113 4.954219401135034 1.7343329588327043 +1.610041664126908 2.1616200531111236 4.367256753897229 1.8042286550909519 2.6217077934935737 +3.62587187596202 2.693965751214909 3.834254629019318 2.087865414487174 1.9794757674635413 +1.7927013592059966 4.5145990750812 2.752412670715025 2.6989228778094727 2.7224232466006697 +4.193982707891626 4.0108281090993225 4.2817969286456545 3.5291362389150356 0.7746248904628232 +4.536622731341739 1.6927073498587384 3.6270197919433316 4.117723391793052 2.885939140027224 +3.680768565635357 1.1469526721948067 2.7565267306872623 2.9654814110125662 2.5424171648810474 +2.883380213668014 1.1673881500941516 1.8024032840863269 4.901104515832257 3.5421149170901027 +3.1147918635989558 4.19517981270134 4.6896755725942505 3.4493674326455093 1.6448715459234995 +1.4279036523115969 4.957138389341814 4.808151510318238 4.35803918352225 3.557822218126483 +2.57781771152158 2.8870351038223983 1.7507787232665986 2.517695282095497 0.8269077360306151 +4.177844389330376 4.919361760453344 4.578112706899875 3.0833324836877374 1.6685969936995704 +1.4480972826802185 3.2423914005062535 2.687930909329236 1.8074548404510469 1.9986819379611902 +3.983375980149923 2.7109407419349414 3.5581973325538403 4.708357425233853 1.7152141773682121 +2.100836790406065 1.3770420615095214 3.779050570086529 1.5462483127090971 2.347186556311231 +4.357836749472369 1.228619869902864 1.1679704031725042 3.3634726769804666 3.82259447413385 +1.0239054116589679 2.841653589839964 3.5139180856223273 3.6094097944193098 1.8202546815567588 +4.40973693814953 3.7659872612264658 2.9332476560879654 3.3989150173137195 0.7945185572719536 +2.1389661031396634 2.957898218823432 3.2264618918507137 4.3327765195438595 1.376438108142214 +1.9870001019214363 1.0047845080420195 1.716025668075564 3.674025291862636 2.1905501591176155 +3.830552131642045 2.8067979287179465 3.1285412326736797 1.3867691109118043 2.020357095206593 +4.21097365542594 1.8600819651904685 1.4011493172390743 1.0104085490124537 2.3831429011229104 +2.572657767071659 4.449629586725177 1.0146800799168982 4.786527199850147 4.213057548612667 +4.9518174096788865 3.3727701603077502 4.516629653572644 3.3215473797636528 1.9803060008289173 +1.4986148405702164 3.5234468289768364 3.396919819474914 3.2143325371374143 2.033047637647997 +2.734208330014069 2.7325209163663358 1.7918081631616736 1.005806078859321 0.7860038955962375 +2.6867344364830577 1.470420235296225 4.373449110585211 4.860077158654369 1.31004850794784 +2.377283208530215 3.4896634865616325 3.240976266434135 3.138577536976762 1.1170834269416665 +3.9411200962747674 3.2154372219643172 3.8126670903909283 1.4613991877855654 2.4607064806452836 +3.0100280275705145 4.368664891526654 2.6587926695553548 1.6852612054541796 1.6714238360438538 +4.295888619033306 3.1765037120809207 1.0793166955916966 2.8883654103726477 2.127364525031714 +2.3673482400657613 2.441392186269995 1.437933548779227 1.9941790428261292 0.5611519897647853 +1.6521515092342938 1.9411896063302057 4.0047846043023725 1.8028913933548565 2.2207829101444356 +3.7332475577836597 4.3693746887178175 1.0036970540705328 3.9878429071725425 3.051193897361563 +4.441774874734454 2.14131817756127 1.399106276536683 1.8746986662439427 2.349103900792048 +4.422895557433096 1.698030476357662 2.0066392580368633 1.916881435955855 2.7263430042254324 +3.8549108174632494 4.693027004730329 2.1646162676715113 3.9632117874339636 1.984284401760159 +2.582584524433974 4.619379369076434 4.063372001874486 3.999770515136191 2.037787620994255 +2.25208766320253 2.5739437444476057 3.734495542739578 3.6468874015697943 0.3335663703577766 +1.8729162375640143 2.451433108533156 3.686411125280474 2.4593495722201344 1.3565993605316122 +2.442059029264844 4.670015498821831 1.9871668749696312 4.070222958206792 3.0500676510779527 +2.2842385884618004 1.395823641952071 1.3311949864658787 4.788148873045649 3.5692872245198846 +1.0245622094710911 3.279041535144887 4.330061706345447 4.896883967728322 2.324642877065157 +4.101689873077765 3.6517745009870577 1.8436530457100035 2.4801903773284506 0.7794893306437571 +2.5654153356171285 2.2191476065566587 1.8591578997137694 3.7713504783463674 1.9432914855899204 +3.2553462679160705 2.59203618706925 4.143419087573086 2.070488197892034 2.176470247154069 +2.065395285110143 4.083522469549029 2.6290421678034623 4.113594711021269 2.5053410119474124 +1.9786341243347292 4.163894585214248 3.751657568351286 4.7091895640491686 2.385839643536115 +3.073471091635753 4.43645769525385 2.3233136741171663 4.253961220445605 2.363288477902437 +2.3575562658945275 1.0646840055390414 2.6683013231545787 3.4986088423700963 1.5365315675450768 +1.5967670392083315 3.596210514027451 4.973207014163195 4.052842074771908 2.2011010496243655 +1.8651680460711142 2.921990146660041 2.198114821954515 1.8964660625133614 1.0990290834939624 +4.748017494323195 1.0763247306551396 2.8000472779690853 4.487289504649206 4.040806117876092 +1.272879838679851 2.720965778740463 2.7608894111857234 4.646822954303396 2.377750663727718 +2.7313448972150396 3.0698681197554856 3.8301009723941575 2.5788527779710013 1.2962330100126198 +1.3820222075883355 4.539806570324588 1.6552194936565923 3.8751612886395663 3.8600186080709284 +3.3169561188607086 4.202468812985151 4.390346221298929 2.3144477925836644 2.256875498958246 +4.690311823081169 3.350028464183776 2.6769063254527214 1.8698524789702766 1.5645112314264118 +4.915318431812324 4.491032390948627 4.993422192327234 2.6271749941239886 2.4039851179814944 +4.443523577017333 4.247393435327936 4.082404419488212 4.535136308546284 0.4933894971006111 +4.70039263762584 2.587771230025549 2.5713874339898286 1.6687988803626812 2.297353979905966 +4.357576989226942 4.355436719020734 1.7788218346968692 4.223695370053458 2.4448744721648965 +1.6152795303750072 3.542900189330775 2.0376878200297823 4.029160374645604 2.77158516748469 +1.5973362462220888 2.462166998401957 2.4072936279199437 3.6968249236074056 1.5526825794325707 +1.9477771642592185 4.03287579915593 1.6747435622381643 1.1597204363823375 2.1477628214992537 +4.257082337838091 3.999988158695135 2.6545924527513436 4.474588452710319 1.8380649762225112 +4.2929641790408795 4.998305814260807 3.418483429585809 1.9980207452988568 1.5859448476622426 +1.870942919319706 2.2715216341500333 2.3739308924119245 1.3084169255001923 1.1383247868948003 +1.4337375040529339 1.8057574253113207 2.5831765361997956 3.3433407167041795 0.8463146005682509 +2.8133545236079804 4.199851189293634 3.840077844977456 4.394150927554495 1.4931074927123824 +1.3658211203923907 2.3044435807393953 4.754336470128955 3.768274820952546 1.3613705223209307 +4.579815560289118 4.818065276057963 1.9415784351969259 1.8603673872774769 0.25171047131200236 +1.5566437675628815 3.4500360024487873 3.1365719000215173 4.998904473216773 2.655789292905276 +4.206170490261321 2.6137033594319354 2.9642771546534443 3.372138796814603 1.643868206979614 +4.28992924615771 3.988013828589256 1.8428034106876474 4.327372264781534 2.5028454427109446 +4.902115408987176 1.3532685088784029 1.7137042286053839 4.05019672317081 4.248942397535205 +2.6020259385661992 3.846910971130261 3.1857733675983937 3.8026989878834394 1.3893653102284198 +2.8941639886016115 1.6958898946695813 1.5566694867302657 3.390240621842469 2.1903981171707763 +4.271723109538563 1.1467792320939365 4.585164298054728 4.957826349563181 3.147086150999547 +2.519431151279183 4.767058991417004 1.2945556720466311 3.1491286821670315 2.9139787160563904 +2.0971013379956323 4.862646975989142 1.0781524565752467 3.625630962826894 3.7600384859252505 +1.5125917974378966 2.8627638091384133 3.5142371309415403 2.0278413581548604 2.0080679407175275 +3.7338592833958772 2.871075559873986 4.720280406013037 1.693126143157663 3.147706893072759 +2.840589803045808 2.6849502598034602 1.1754295386707123 4.26349046376118 3.0919805860469562 +1.8998251730028386 2.3795741319943287 2.184031952440529 3.726001079788729 1.6148770396994279 +3.8290496983918665 2.791992313855155 3.7611826411887557 2.429255195075528 1.6880517588426696 +1.9114714872695049 4.522162415232834 2.355882491458887 2.472177206191778 2.613279851455797 +3.9517220415806427 1.9698826059214514 2.6516887733153913 2.1481192413067647 2.044815351639685 +1.5867263258176392 1.8074805506290295 1.934986801714408 2.5769367928751725 0.6788462410026173 +1.6928762410898544 3.9873886410025325 1.3046224030046458 1.9562133332480554 2.385237492101889 +2.3602192569915323 1.7900128125389099 4.428272516779087 3.1230798515469287 1.4243115118088199 +1.7365315940086181 2.3216509656504156 4.926491384368788 1.7759782632073446 3.2043872434025373 +2.6692768949939616 1.0579332905049 3.406469318252272 1.9863726103890742 2.147813509458327 +1.400650719695049 3.4149261424562756 4.3493519016725575 4.072102884129144 2.033266459780593 +4.9663615564228625 4.451714112025519 1.9575925811521637 4.4822271777966645 2.576556197446324 +4.078218997845429 3.247723262343455 4.471909126055614 3.483445851810455 1.2910394305436317 +4.491979976177634 4.879524273838289 2.930449560484619 1.3946405396074986 1.583950735110417 +4.189377899747006 3.5049516528557287 1.2499280718435637 1.3832443697639332 0.6972894110230504 +2.7543286106168288 2.9061429380264476 3.108834295599314 1.1589775181261177 1.9557579202613478 +2.5764995977383154 3.9623041110579384 1.0715453097880774 4.479087639445879 3.6785593481071848 +2.7615527287550865 4.1412623053961575 3.1398613096825154 2.029304868549614 1.7711392166673006 +4.876442989939317 4.561172559038537 4.607462065819343 3.4795755259301324 1.1711206135422683 +2.3704017248863307 1.31896013635198 4.6679165782385965 3.242121197783445 1.7715591666740595 +3.3001511109578896 3.9981303487659403 2.4968180327031195 3.649981883718976 1.347947285208449 +3.715962585441286 1.1678019171613752 2.3294741135006345 2.9722574291003023 2.627982721058497 +3.268660520556119 1.5242006784986968 3.7460262325548332 4.207626126458731 1.8044984351899829 +2.8614448196133035 3.193277354727374 1.6437568271302574 1.5317784431871546 0.35021706102178923 +3.855191535212852 2.4103551444886797 2.059792626576347 4.874383132272829 3.1637749462813614 +1.183989988129051 4.309125638557884 3.1590398410342564 2.4025810859522196 3.2153853084384005 +1.9734318403112145 1.3415552240423807 4.66263142237607 1.0249421780902424 3.6921607625048165 +4.62892581196088 1.6382080212697083 3.0430595974972263 3.1483542847717856 2.9925707802364387 +4.191713527540431 1.8268508289952194 1.0883794545130687 2.407775139893285 2.708021520883922 +2.811001813229989 1.2400126577770423 4.7793840832409185 3.029572968481983 2.3515624303608593 +3.444366146597047 3.6287715790927537 4.613538078074927 1.9448501211201266 2.675051546256542 +4.125406355236778 3.16095670390863 2.3733983638636262 1.3625539714746568 1.397129026100027 +1.4996995681677014 4.8678095401402235 4.685771120361722 1.9353645722103305 4.348436611405851 +2.9344196615765026 4.442950715893685 3.990985651096212 1.592884261627062 2.8331177554089026 +1.858103481995165 2.3022739669753713 3.379707947786129 4.659555431870041 1.3547313395073843 +2.4196939804580166 4.612086417255314 1.2994900350670728 3.8291927355367372 3.347533472527124 +2.1864111084899096 1.5304713068386033 1.190981658286832 2.7566891232591773 1.6975561520198625 +4.579071134261067 1.9103862453639047 1.3767800067406006 3.164165384788385 3.2119504239460297 +2.561271190231599 2.2669257283969344 3.12698203457641 3.395500387646664 0.3984235897110303 +1.4798983725451675 3.929645916072201 4.3569500248206126 1.2325436852184888 3.970286891644315 +2.1388063417473115 4.742976071736324 1.1122660171319754 1.5602524336166343 2.642421581039977 +1.3099681639125302 4.746494345958258 3.1848846848705588 3.6609012096756732 3.469337679121668 +3.6494388167293 3.96719144169437 3.7503643921965497 4.09904911639762 0.4717496874014535 +3.378506187888901 3.0013671232743113 1.065924770015351 1.712143589855692 0.748219645006873 +2.590252575825473 2.5951894929379367 4.742140211841284 3.6284353529715174 1.113715801190188 +4.992868589574007 1.4385908291853644 1.2103476793197006 2.910011792703606 3.9397650305974343 +2.6013476580398893 2.83525699481721 4.694988576169987 3.0672573338532834 1.6444520592116647 +1.3140353410555603 4.18601054176802 4.682025407402091 4.57328775075624 2.8740329558792825 +2.4098149436222274 2.7834825698484633 1.7476450959347503 3.139531892041955 1.4411718662488278 +4.115304561824773 3.588063516593559 4.054835133067426 2.4058728520813206 1.7312018148937471 +3.6837662127585356 3.7959470844094216 1.8715069783479525 3.110973658358594 1.2445329239602116 +2.4139027719981594 1.0565378434498292 4.415588055378901 3.141667636132953 1.8615350611322865 +4.285198874362254 1.608908817953242 2.762316109030906 1.3091824299298138 3.0453449649213185 +4.129663497095761 1.3121467660965749 3.120474169472951 3.1912284994544144 2.8184049930184742 +2.8670760944211 2.261463211213514 1.6222747966630449 2.6610943732135874 1.2024612579753469 +2.9254865894166815 3.1934885376062385 3.9117880984871687 2.084043316474881 1.8472888329675312 +4.324482419737789 3.9400390647177534 2.0702351820018037 2.1879108990537097 0.40205008096348077 +3.824045722045225 1.0894287594612986 3.593910453984901 1.4985498697507715 3.4450930190654843 +2.6296989162706574 1.9491798300941907 3.1207645688513193 4.448643217358276 1.4921018503477286 +4.8324128933301775 1.085129587817844 1.2016327697784948 4.973200150124708 5.316658036423166 +3.3510898071602946 1.4696652556962024 2.0768035564743523 1.5684176476367582 1.948900863347463 +3.87002080398361 2.7039493958065406 1.4282801958266935 3.193598729880812 2.115672955738442 +2.892206597731577 4.579377297145681 1.6020587315052484 3.4844581128298153 2.527839472706404 +4.034421831092962 2.6780105918058887 4.423289376097473 2.1573932614161233 2.6408590747316163 +4.158237907465611 1.105059385157582 3.2373618444904797 2.4659120127618386 3.149132250629876 +2.4504927614073257 4.691209530405915 2.880306271150726 3.7664408427200597 2.409573845683474 +4.171244321463927 1.5223879070268982 3.532080904202511 4.4515714241495425 2.8039085435471423 +1.3903093196160312 2.5071873866015637 1.9716286531372695 1.6109504117328375 1.173671764308886 +4.620726456433529 3.08841475753423 1.7286372783605621 2.4354441667860494 1.6874700353219239 +3.040788926795836 3.372090894687271 2.0539170466494463 3.4003571450605876 1.38660085552337 +3.546378429032192 1.433401974848275 4.667152242681151 2.0056388212696348 3.398282387955609 +1.3844732802235509 2.603740628006921 4.343596448767025 2.8071782218677535 1.961426479203081 +3.616140313920968 2.683154304566298 1.159393555477589 4.419609547602242 3.3910870246805653 +2.171518793042306 2.481758351630005 3.711656242417874 4.533234985470786 0.8782028323508718 +1.874915880949879 1.601842124232609 1.2726065079179434 4.724163147774968 3.462342056289182 +4.08488169912026 4.1605149314061745 1.7004529274745415 4.321337829068978 2.621975982581018 +3.7827974176838115 4.9034667214625 3.049442208089225 4.539533573373814 1.8644763246894558 +3.4483990100934903 3.058514227425656 4.214036681218494 2.8121990135114188 1.4550460440681448 +1.904955154618858 2.1496872032768852 1.286595257810664 4.400743522649093 3.123749860510049 +4.162810049038347 4.333401536094702 4.890757034964459 2.637535807991702 2.259669744262801 +3.3976799386302186 4.874387864534661 3.6052002934348777 4.20217580987736 1.5928107438301544 +1.4616181655980407 2.560088258099748 2.3266203367160587 2.3619731706801113 1.0990388377987375 +2.3074606560480353 2.867662555724263 4.289926006371284 3.602291083527481 0.8869430396114836 +2.9095649424951207 1.8150210529947808 3.422815316503468 1.719442017652431 2.0247239123597063 +1.5526019344444437 2.119344109869551 1.084403130140016 4.231390705235206 3.197612780060946 +3.1639043863369856 1.8851702298417918 2.706885600904504 1.9240591119645685 1.4993259668175902 +4.734154872473274 2.60974047380832 1.142172403640075 3.3541340903983845 3.0669057763390195 +1.0496144677980732 1.5791770066918622 3.908540235577252 4.8604815042399 1.0893248650346175 +1.2000248497769808 1.7485463619139763 1.0309087551995058 4.838140550533516 3.8465425764807653 +3.2375881253934455 1.5539623641737834 4.204139595456656 2.922088305300504 2.1161878967694574 +1.2255192631869969 1.0392630484796017 2.8649491390165593 1.0191140755937225 1.8552084677680607 +2.254529544979142 1.57349518286241 2.9411921121492384 2.7785414769416996 0.7001878544484759 +1.9342403887484836 1.0642349713853756 2.413792895393133 3.961392150978726 1.7753796445071228 +2.7296582124522075 3.70339899332615 4.484337257873314 2.0872813508527983 2.5872858616161727 +2.919272616139272 1.2547632039691354 1.1963849115190386 2.8569720498424207 2.3511999547397098 +3.9861157070157636 4.488383400109907 4.84426422293247 2.2986516313385046 2.594690020408576 +1.2223631378273203 2.669145539641866 4.403438896552977 4.091108110585286 1.480111427583566 +1.5282341948290825 3.1667960463427325 2.7845102553451895 2.923153991584598 1.644416926096987 +2.544364767661104 4.688469918710393 1.689213957343386 2.1860251359832645 2.2009107764690596 +1.9711061286040596 2.514885739758932 1.3401578371094542 3.970718425165039 2.6861767017341 +4.741143857363452 4.177239934571524 2.650874983738496 3.2601134466024737 0.8301560930168417 +4.712359990243179 2.922624467317421 2.415273786313183 3.4685420165188026 2.076662516342705 +2.5387034053770847 3.7451995571238132 3.7280979038228153 4.751091076829365 1.5818179402819004 +3.7123522397038804 1.4717658367570317 1.8594750056622003 2.948895845989131 2.491398241231003 +4.931793756880477 2.944606750482768 2.7025253176878947 4.496785979522684 2.677365033200312 +1.0827476391701758 1.9703242045869733 3.7402275570138044 2.374918494600463 1.6284535594806124 +3.193237522811974 4.544603958656094 3.2966020618724166 2.328482087039818 1.6623620332514544 +2.7519816100127144 3.199598427064366 4.611558667593349 1.8845716154257057 2.7634795453553522 +2.473935637501314 1.8436874707722164 2.211568496828848 4.213497016686972 2.0987926410883775 +4.428489271926836 2.7211427077765977 4.389989911092419 3.307564419097677 2.0215531741301493 +3.84098973910265 3.2490618216975817 1.4680557361961273 2.1460479438289153 0.9000289400981966 +3.119756548654716 3.3798322044748224 3.362015138413028 1.765959395481242 1.6171064532973067 +3.581151209897801 2.8491088828676814 1.0001687842820104 3.4639461593705185 2.570230519342904 +2.3385491761991988 2.628706905498721 4.74250501864995 3.6005959632963016 1.1781968420306164 +2.4815000475911746 1.1768802403717622 4.062668068366319 3.9906731401511055 1.306604802944613 +4.745035671966006 2.8041987337655008 4.7328285960018395 2.906443979680096 2.665056995154181 +2.5340661984324124 2.229318309470319 3.8458425566152816 4.137988155580276 0.4221614937692301 +2.0469726067200846 3.9828728093562282 2.6932084886802787 1.9501145484665945 2.073619588677962 +1.297927469713537 3.0897759871837684 4.9434291913308295 1.8210131535339933 3.6000281974800084 +1.3382584344942603 4.013243889722656 2.106018861683299 1.584008473001917 2.7254434559489127 +2.1416598333044248 2.094854230419313 2.7102057141746543 2.1612911888632182 0.5509064535466234 +3.0134812340942836 1.2498947037594244 2.6771376862484453 2.4044771490051033 1.784539497615106 +1.7159991641971932 1.647824635314517 3.156623961668028 4.9083219976560315 1.7530241800022621 +3.4526010377247314 3.9398304008175065 1.0458840138826258 4.465316755032273 3.4539705736305835 +3.3813790917360946 2.026940741796751 3.6582765675327096 3.8459241458892186 1.367375170700958 +4.272269002285437 4.77316447887168 1.7198661845275307 2.1495522510502867 0.6599442356959845 +3.9096824865332827 4.374866955423 2.779921496596679 2.8197732203447465 0.46688836993643446 +2.792945279929405 2.6438942716257032 1.1247039282378912 1.394030115497252 0.307819424695737 +2.8826977525741353 3.3259818498047355 3.7876050567229593 1.5833074451480624 2.2484280622809223 +4.741378854765115 2.704288170938173 2.566217371901658 4.8401000377697265 3.052913498982536 +4.0084160379463665 4.216685141980923 3.935053324446377 2.831560394261059 1.122974918092268 +3.0621320227130164 2.0364067989363157 2.071924345996926 4.13318523768733 2.302370234845839 +3.9939137382847485 3.487039515640477 1.9414361190371823 4.364243538525431 2.4752610507800057 +1.0127796690460285 3.8600411293382737 1.1606866545326393 4.533741340813489 4.41411324502518 +4.726881129705703 1.6942756300708366 1.238585494725077 4.4303426984923195 4.402727582330722 +2.8268421149994607 2.11426339753953 4.161690600599087 2.466961966894293 1.838443246465813 +2.006056657387009 4.4304457787707054 2.2300403918598595 4.180010219458078 3.1112770594125876 +2.345928418469931 3.169157406891166 4.814430123355809 1.5962062687560303 3.3218474898303363 +1.939366301403631 2.7117104488933697 2.1283926772988426 3.2507772578645326 1.3624472939726038 +3.6470875193631906 1.2103451653197013 4.814619444200103 1.8015495416032348 3.875087552291497 +4.0428849017142685 2.5620385403931647 4.726467134400564 1.5004155435864415 3.5496922137605513 +2.7845413416769422 4.349322475489305 3.515278525865309 3.197536503951664 1.5967153751451364 +4.314092960402942 4.344513344441536 3.8060974428023697 1.9932353577897977 1.8131172987540507 +1.1283037853158402 3.6952734633305693 1.5402459015343148 3.98696591265188 3.5462335146814823 +1.8573693629563377 4.733451537949028 2.3194940598216434 1.4007353473694955 3.0192658460323454 +1.7320197214664885 3.2209408243368474 4.547742702652039 3.8018595463063702 1.6653010939445345 +3.2541783376572178 1.6298883053861446 3.264026908576034 1.3188746508675306 2.5341537866916544 +4.497792744243144 2.6149216504641246 1.4656796572248156 4.267794578318753 3.3759519526802935 +3.3214978864438223 3.6511685742297466 2.8888732754182564 4.323492427140138 1.47201048667204 +3.9878448990996818 3.3272716427317635 1.344069866761894 4.593023313683318 3.3154268997055443 +3.5190590601316023 1.8073270183540786 4.0053688668920255 4.211142662476036 1.7240561005364357 +4.582122157778203 1.8875309024324363 1.0532809669210614 4.21195589144689 4.151872988449204 +1.1259104036659213 2.636213589937306 2.8369231090459683 3.69327363739856 1.7361889130711725 +3.3825815756783615 1.7660854071601886 4.616784340666012 3.07044947899624 2.2370094696378033 +1.3394456268973536 2.028860571810406 4.946032738652058 3.7146071542382693 1.4112767043419618 +4.4362780942484425 3.8517519185507054 2.7909924703477578 1.5538351102602719 1.368294260637842 +3.4938814737327037 3.1679502876032584 1.0323827483481494 4.90053673526422 3.8818612036736244 +2.7121656297869636 4.037554439089096 2.374007783885964 1.6260217773607195 1.521886514093908 +4.772317349060932 3.2397755905051446 3.858638788885434 3.7827445831337774 1.5344198161467875 +3.5967102225058163 2.2357342884207307 2.112752814515123 3.4619913097493407 1.916428973424444 +3.36430077569367 2.4374622932191423 1.793949572770325 3.0937397038732923 1.5963971803747192 +3.797872423588343 1.3289713436991724 1.1869934056130975 4.406665373214608 4.0573094682605735 +3.642973230975649 3.762477264578778 1.9437138391494613 3.317969983280685 1.3794423379503171 +2.29911434250467 4.435856887141565 4.4139905140898295 1.3414433168119597 3.742487806467971 +4.9669305100219265 4.137341645601792 4.64938455837527 3.600292620838091 1.3374646078963737 +1.3328971332258641 2.8575051180847972 2.596408951616446 4.020929235270452 2.086549195690652 +4.6300132837353525 3.316043361300009 2.2772945346539424 2.6401999339920463 1.363164438332181 +3.380780106338542 4.662329374437986 2.0294004700491333 2.517071118429918 1.3712006373461016 +2.3242825446932636 2.9336052449786805 3.3215687704681205 3.1894230958531162 0.6234874757383396 +4.533038815461083 3.240933908831054 2.5927663062638056 2.862682845292325 1.319996222637978 +2.7604230033204082 2.87426031063891 1.9445644933550752 3.9371020593217283 1.9957867832826837 +4.1673464333697865 3.8344210290527188 2.315517136271494 1.2589296754378334 1.1077979902629382 +4.568967152854212 1.5760414388038977 3.153415949078603 1.2737854323214668 3.5342064469054835 +2.151204775844366 3.713496601963842 1.8372044576746234 2.3988683916318347 1.6601873763729256 +2.3326526389724522 3.5038200388823486 4.281241517150651 2.1743917298583098 2.410487316877127 +1.9176265840952125 1.2046816396103357 3.8562063489634406 1.3112255470523269 2.642956256914344 +3.707539302148149 2.0792905325075606 1.0896077730409357 3.610419147763135 3.0009471909323753 +2.662384917138892 3.319308287881156 4.102354944983631 2.9161274353595124 1.3559808330564327 +2.1074017876872952 4.183137654752348 3.712109649437933 4.361067362662166 2.17481619990599 +1.5159489241076103 2.8358850003472837 3.478493299307227 1.745207508431461 2.178648865285733 +1.670041226606417 2.937259265633503 2.00163796485356 3.6262815676882 2.0604146171747018 +1.3407961957064467 2.103175244377594 3.3871472055964094 3.0842579676512374 0.8203436501343389 +3.438268276654558 3.5681609936939935 2.981538614637978 1.5409536503901715 1.4464291054720726 +2.652353346923331 2.862705836221326 2.2280747565801766 3.5883421674658136 1.376435831730407 +4.8974670466324 1.6547559690288716 4.910432120606337 2.6224946558092723 3.9686059234490205 +4.416178619837019 2.4208997395984655 3.964373180221233 4.635843526131354 2.105234009644219 +2.630284961811618 1.4515731157318772 4.64143575668497 4.808854935043575 1.1905422283022895 +4.126767362324724 3.0033856124415803 3.254261039259884 1.5371370365505665 2.051950632118371 +2.9664053454253216 4.183822150989911 3.566978523743034 1.8469156626100518 2.107301574222368 +1.7034323752513956 4.648901246586046 4.953861805802205 3.076536203832418 3.492869635101294 +2.841792325599471 1.8052473590099711 4.018562854540692 3.0097979403733475 1.4463858820581308 +3.2627246310473534 4.988165444877563 3.336217804256034 1.73737416864611 2.3523279901326295 +1.5169828873901277 2.423457131972763 2.546907119413112 1.0321740208974126 1.7652512330630532 +2.1845891438479965 2.7052420996888995 2.925391791934658 3.6213215764019075 0.869136217939686 +1.1139236614591916 1.85993671946385 4.833676420266221 3.366786293006742 1.6456919906728573 +3.447425759097597 4.616219310209699 2.637447868262512 4.7656049876122175 2.4279891041271324 +2.7322893994164446 4.378510741025272 2.3157269546704264 2.1208894157889375 1.6577111847742847 +3.6129197907148747 4.914055172523248 1.1018352296410274 2.1791061336659334 1.6892204955103582 +3.7124371505971734 3.4667619477200766 1.0078041897464511 2.410996285601723 1.4245365432937878 +3.1427035807832526 3.6870069793072617 1.5721758561249208 4.218928129156886 2.702140593019664 +2.168440442345284 4.208988562191067 4.03926218603964 2.691940808006576 2.4452221831790815 +4.031508762365169 2.3850401398555 3.765763013130048 2.6409373507010625 1.9940139657905338 +3.9738060941317737 3.544449307111329 3.652534029517098 2.764931511113665 0.9859946659270707 +2.7809517122998324 1.508274852195258 2.564749532531687 2.92048601162381 1.3214593572268873 +2.550421234547041 4.326243080168407 4.921021371446379 2.888834689660513 2.6987637794023254 +2.444737537435469 4.782388369523443 3.6235217400891133 4.320775030317716 2.4394207434340247 +1.184907937350141 3.4228062512537663 3.371780082132241 3.6444534465328635 2.2544488521645913 +1.7913020346742101 2.643738842356092 1.0331758751671791 3.4366818256049587 2.5501939857353384 +1.8890654330228895 4.453703266122661 1.7257806324160994 3.3426634877200905 3.031777924377489 +1.286360716867887 2.8841694291692064 2.116230892730006 4.230112082528414 2.6498087413414453 +3.387109266294625 2.8030519285202655 2.193334558917057 2.8421160699449417 0.8729492670594882 +1.172605897560076 1.4822445291801492 1.8846771618072573 4.680670213687133 2.8130860684223817 +3.08020093309492 2.0215037587951157 1.0347621782007446 2.634447345643421 1.9182889098898777 +3.5075374875316734 1.226686127823072 4.895520973330105 1.6269665358296979 3.985690785295339 +4.089707028988122 2.811547444833793 2.607795597918064 3.5617849988943284 1.594925609469175 +4.062701324306552 4.06179263744696 3.241823628043558 2.0982368627045256 1.1435871263574107 +1.9063156403700212 2.8332586695631736 4.101658151712332 1.8864566755913121 2.401320669793712 +4.013191380698643 2.4731396280322175 1.1520113430691472 3.854149862891234 3.1101948461788096 +1.1865569212366065 3.9480905808666504 3.95580692719443 2.344679212099091 3.1971550897036622 +4.151140290148925 3.9787105490461387 2.8111662341151797 1.3042756269265658 1.5167238765345668 +3.8202219554245134 2.9641027929707753 4.65476121712722 4.971877493050167 0.9129637193096606 +1.5718816153415855 3.4704867449170997 1.7910815851148807 2.7869129615079666 2.1439173417507034 +1.6668163434815781 3.2313371663392285 3.0887443376255233 4.353762940706316 2.0119635859765603 +4.732475733425642 2.7487146715892847 2.18374059749778 2.6676529234817568 2.0419302362464133 +3.0950394749988837 3.818591907496359 3.8830290699671535 4.463697818233149 0.9277415145318286 +1.2654751494828886 3.6072325984527067 1.3438770710270642 2.6918212242052943 2.7019958160391377 +4.544314959800592 4.211519719825487 3.5210123133824056 1.9638443252698083 1.5923331356700208 +3.2325642412458415 2.56768805725447 3.7374519976624083 2.7449241631383074 1.1946429769366365 +2.787634389604711 2.5831240485613396 2.942100972364976 1.5053845186173582 1.4511990380588071 +4.145532215854075 4.953405268745252 3.325614387171495 4.7293365770667535 1.619597127680847 +3.2937415444141593 2.5362353934613124 3.174634007010672 2.265731386331037 1.18318195667856 +1.7131985966742924 3.657184823694152 1.6737076739092553 1.4591562283231623 1.9557900637967234 +2.652413593027793 3.0639115798151417 2.7669015056720894 3.3955072075526966 0.751315993152583 +1.2331432049091617 1.2929045882986578 2.3035196369837148 1.7476546992753046 0.5590681997021483 +3.781205437903277 2.049045313166209 1.486993581875499 3.373851726296196 2.5613692343931693 +1.499314223391596 4.979986787009255 3.2467032238995923 3.4904479019233245 3.4891966071268645 +3.1667862402051363 4.482529233383437 4.336355513196452 1.735425703357389 2.9147925311773486 +1.0019573106974846 1.0410926501360085 1.6773052301946323 4.593572618900742 2.916529968511162 +3.821743098165661 4.545060916648705 3.6152865097073708 4.330709024767221 1.017358364387707 +4.347901064129685 3.3481920845730504 2.2835143618839058 4.357543381772924 2.302393193863283 +1.9595648522687052 4.037662391582293 1.0406078693292917 2.210376324603617 2.384711223996748 +2.6464654127684946 2.974773929186541 4.769413534309273 2.9623431450752866 1.8366518106595193 +2.3532598887589122 4.57552231430236 2.6466603003813747 3.1158792681101826 2.2712588420650635 +3.081262303477639 4.367967469183514 1.0058021424488985 4.462794893571095 3.688686631413083 +2.131136196273049 4.907036761092194 2.361916984992376 1.4520602349633474 2.921209210470321 +3.2030521948396666 3.073093840280674 4.15603154815505 3.5598918517757774 0.6101407309128378 +3.9113692301638903 2.5615528534005554 1.0556561739955033 1.7517165403946318 1.518717974032765 +4.427463270511038 2.2542604376651343 1.8775730240365283 1.8032394563023635 2.1744737367881797 +1.523516672730374 2.06418209941962 2.5423996641531725 3.256704086365251 0.8958515006455007 +4.539261454036783 4.40464940330703 4.401940708966356 2.4455973310750867 1.9609691013426729 +3.118842035739717 2.3495740278586457 2.873447878777308 4.267151995383735 1.5919121937453122 +1.6215500293925493 4.193080841394497 1.622862841190893 3.276443039861236 3.057302436873076 +1.5027932707080698 2.6269337401531287 2.9667225453654567 1.4931616240944048 1.8533951504580313 +1.0986717235158263 2.334745127954774 2.870369202601171 3.8664349900724684 1.5874585078458292 +2.1417022737838733 3.596386703277824 3.480723523839126 1.1129126513799301 2.7789629571385293 +3.4066776159791945 3.0621741939193923 3.673888159386508 2.466822715323702 1.2552647505850918 +3.825058554775966 1.7537090318167867 1.8138664511305245 1.3519785681051388 2.12222271751786 +4.715264924121964 2.1906976950956243 3.8700185289528757 2.1322437842703557 3.0648492225768837 +4.48072328465588 2.3046299036982023 1.875999517116937 3.919684308463262 2.9853023178613065 +1.8038705503033765 2.748726403247954 3.1612161415068587 4.4591293745238545 1.6054069089437282 +2.058282252353421 2.7842987051427093 1.8650359593904584 3.2401495379713015 1.5550039368818824 +3.4794752013033783 4.629908142382077 2.1310599121189284 3.183572963741594 1.5592561289778664 +1.065350840691416 4.720449634242857 2.2631856446363896 1.53551743696567 3.726828170318014 +1.1819058208557012 2.623811937295503 4.665169098217051 2.8869764552751596 2.2893366558982056 +2.3310925909781437 3.6109041330577707 2.5529882791355014 2.4964159952074336 1.2810612813402296 +2.772496883904194 2.667717333850059 2.984950855995118 2.4990955428004438 0.49702529057286604 +3.4786203638509674 3.227038500788365 2.1102346750615664 3.5046592147307294 1.4169379769960317 +1.551221335285462 4.189924173006107 1.2033281549397503 1.8307505150819554 2.712270540304082 +4.961767083073784 2.462815587298429 3.821046281130984 4.6420546313338935 2.6303637180703334 +4.502383884893844 2.599684581040931 1.43702663499384 4.5623621727947885 3.6589598063826694 +4.077949975657995 2.2174074522791485 4.377400486715224 3.0258114340626316 2.2996546367990254 +1.6502577413942858 1.4020624495070093 4.726423132818156 2.6956301855964035 2.0459034428341485 +2.9872776969484147 1.1157434086198692 3.222781801071675 1.8583683164445888 2.3160882430127017 +2.649700112138451 1.2895158744079613 1.308733353826601 2.7417287527246526 1.9757471938062976 +1.5844360403339017 2.5486060615892785 4.328996408323437 2.9035457875851454 1.7209106025737582 +1.6287675508062671 3.028879974263657 1.8039058393531322 3.31876114564491 2.0627897123362047 +4.360427292416221 3.8534910203367674 4.779375877739531 1.2298023578703927 3.585590126730326 +2.565018279802559 3.1896208955975047 2.9362999908567136 2.118768874864887 1.028827270863642 +2.619008336845028 2.200930015283664 3.623119973686513 4.003806754859735 0.5654307281352821 +4.154151394418167 4.288901886421099 4.363819024372234 1.6477671571722468 2.719392476347534 +1.7398698870211842 4.635843761896548 1.140008052714057 2.0397425323753313 3.0325215280112974 +4.974836767757313 3.52018724044905 1.6331303642609538 1.9046029347011415 1.4797643744189664 +2.889110819113283 2.108007512781793 3.8243909869093597 4.810331155450814 1.2578554730594194 +2.299263246484823 3.3524035795622 1.1069134552018882 4.314980106956678 3.3765065086943813 +1.9823459549874274 3.6577187588534468 4.9260497144113495 2.4501197250022866 2.9894988450221973 +3.233972253105524 1.3013814287685697 4.458866520548661 2.7763925282039894 2.562347757278002 +3.48523002325617 3.536333955117064 2.204757916836255 1.5789190845712677 0.6279218548692552 +2.908897030504795 4.529341716044272 2.4041578278779623 4.251111652493003 2.4570468878621874 +1.6506673825061409 2.572864824156734 1.7332383011005819 2.11822963459082 0.9993330016813669 +1.1088518572066257 2.2055966780809784 4.183167174888566 2.0467801201785787 2.401457651020965 +4.248500658636181 2.155785017850027 1.4415598732663808 3.5005956377907332 2.935828168129291 +2.910895155063282 3.9102838597149705 3.7378752156972785 1.9050374568163937 2.0875995864544725 +1.0361862990773512 3.0249783722905503 2.6464797625888563 3.6546201232900444 2.2297176721168928 +4.1799257309001305 1.6718372516340314 3.5765133809418104 4.710443634887497 2.7525089719455345 +3.5569056904572505 3.28353966584288 4.353930403532488 4.545744723994109 0.33394867412166473 +4.7373133324437475 2.842480768014887 1.9375475683734154 1.7464223423155407 1.9044472424448324 +3.600075047780602 4.015618093084314 4.414879049544372 3.0504987580125063 1.4262572006552194 +4.762813786993616 4.710862734468767 3.2537790166373077 1.0126780713730983 2.2417030041293544 +2.7328250450591796 4.400527444447586 4.155236465367656 4.531681390650132 1.7096613918249355 +3.023393128654898 4.757511328477651 1.3682661975705415 2.9250912902835076 2.330422772858445 +1.3813291382870014 4.494539437230759 3.524066549683499 2.5477257118244068 3.2627166283820714 +3.118472373095989 4.8715343260762625 4.013728396299943 3.498071171219784 1.8273282640960764 +1.185116514088488 4.391433825725876 1.3689165627111137 1.5426120243898227 3.2110186571107597 +1.2731021769304953 3.1821490121333196 1.5108813263386374 2.40642156121271 2.1086612177578994 +1.1628743609674337 1.3115065235695038 2.436948071239377 2.8922703675179537 0.4789675492642107 +2.018577077233867 1.0469997662224033 2.159639598877219 2.0911340013188853 0.9739894702557572 +1.8436907076234519 1.649242737808446 4.814619540176526 4.673836359236087 0.2400623189942269 +2.1781577793332345 1.4473375380004105 4.286049396413124 4.4472348952174645 0.7483842530188427 +1.1051805088738424 1.2468318007353902 3.4835208945855642 3.5188083928609015 0.14598046451692545 +2.729853936275738 1.3770488005664618 1.1035017199722241 3.939404519539418 3.1420417603517685 +2.870008581049051 1.68735880463927 4.976825776256927 4.52604676455832 1.2656469535498744 +3.586513079575701 4.787406925395704 4.693462802673391 2.223823623408873 2.7461361409599996 +2.2674610718683734 1.8596519932294249 3.6646040825864064 3.4987219504495055 0.4402557511068224 +1.0824163619942295 1.6577704905280601 4.785083556408292 1.130385911592544 3.699709076162976 +4.488809206795392 4.2699661704999485 1.6692066789747648 1.5966799385024877 0.23054804839456333 +2.0551240694201867 4.819969184530493 1.8352438319069018 4.295439920735426 3.7009368146506483 +4.1145086805226825 1.0928918253026856 3.6607617443634553 1.8111698169882637 3.542761453663097 +1.9464178366452862 4.117886406267125 2.1535209185650697 4.384907591513241 3.1135770799943634 +3.8651570682611758 1.1801731587489157 1.585107191736359 4.007860683486106 3.616472463067475 +2.9944181326637427 2.0011749954175233 4.762829573158442 2.16239070444122 2.7836692044174387 +4.179214447271969 2.6102881057269056 4.1585293542293975 4.055864338450064 1.5722817720303657 +2.1620793627827832 2.350139802922809 4.633045225584615 2.3760091697578325 2.2648572772799125 +1.521184181802382 3.3008552193123477 4.5289065659306065 2.2807116346404728 2.8673349038489464 +1.8172941528291617 4.7614043074700305 2.4914975690890526 3.328219662968069 3.0607006493685014 +1.0480497618698932 3.568778960437671 1.3785497827532094 1.82422522121067 2.5598246598070737 +4.132312270645345 2.1950052881025273 2.2686035172421595 1.981567448194229 1.9584555265677202 +3.6092666419407253 2.8079390966450686 4.595508906126223 2.1818621918740613 2.5431901808692596 +2.742199659572734 1.610700746483562 1.76706648891938 3.9222196115006414 2.4341271068072308 +3.083979059213292 3.8012202193064004 2.4877075158871143 3.9256710116469304 1.606914402471239 +4.030917851397215 1.1713396934934353 1.774875654989696 1.876411159861627 2.8613802089044316 +1.1678162608148037 1.0873886030971818 1.4279056730535284 4.542457966359095 3.1155905693561383 +2.6820053385995344 3.688512733089143 1.9386664679040155 1.6661363959696573 1.04275106102598 +3.7236406406969915 4.893568127364048 1.2899860934841785 4.940309126168339 3.833221695519786 +1.5929713309137519 1.0306115365584114 4.739280132846664 2.926626384837536 1.897883597188964 +2.0846702208053585 2.072339643768805 4.952325507795687 4.813809418418882 0.1390638347892707 +4.581548817376897 3.146889014904229 2.00541796262452 2.0874576342623623 1.4370035687336893 +3.046987005255552 3.226273628324427 2.156949593169427 4.3726395988458755 2.2229318240706215 +4.118243651519366 1.8531308312673431 3.511649506085296 1.1640328249831748 3.262213998170416 +2.349311967936304 1.9925686879020046 2.079092199986555 1.128808403927668 1.0150394381016528 +2.764975022708268 4.812362586673287 2.7300803802553695 2.0848414966667863 2.1466553179244348 +1.2125736811025822 3.708638746525478 3.86075172278449 3.3872714780044246 2.540575594825235 +2.368380857824403 1.8510675590070589 2.810335770022696 1.3759096632159493 1.5248577982953175 +1.2805204584619947 2.0409236221506397 4.335850381921909 3.4234258554304877 1.1877421807323316 +1.915569120888935 4.797161332522746 1.7801028904654999 4.031475713216563 3.6568091638983193 +1.5561771571077831 1.5054786599179306 4.590714748489885 2.531444519761193 2.0598942236303377 +3.4396616663885875 4.693912286421522 1.327407508394761 2.2073728894536324 1.5321500219348907 +1.8235201376850285 1.8726974097932128 2.6549395206637394 3.417004137714091 0.7636497133189417 +3.1832601261910822 4.978767186479935 1.3873119769771822 2.754586264767656 2.256830649738714 +3.750700323993312 1.181787144672322 2.1646180589437694 3.7016484001210928 2.9936227538867946 +1.4399269631781304 3.2038655534893614 4.614517537275127 3.033096061319692 2.3690447937939543 +2.6236163594660944 2.827404267597393 3.3793386254398214 4.817523761910884 1.4525515475420554 +1.447697589010592 4.938280047394088 2.1210393323506405 2.726290028571187 3.54266768185361 +3.505460859057293 4.421498208619223 1.1218334598936806 2.4549955149999625 1.6175430414575218 +2.5888187279092816 2.19373807528366 1.6114100357955374 4.206934580678473 2.6254211824331835 +4.6800033986336365 3.4074974262260516 4.177043959624551 2.10764446873215 2.4293385319297722 +1.432074434850231 2.4568897312139524 4.905061125234421 2.1819083935436874 2.909606020026726 +4.758185176057549 3.8588042715191744 1.6525550759567684 4.451863586305359 2.9402404914493494 +3.4007726279797326 4.061637493164482 2.845285580400835 3.6132099116841156 1.0131387607887334 +4.34928860970501 3.23426079065878 2.8200785816566847 4.907279623339392 2.366367517028656 +1.105330189156649 2.6291473273249637 1.969806417372681 1.3198738258771705 1.6566324408460504 +4.370291847892765 2.2976680420372713 1.5809336286384954 3.75527171266437 3.00391670061675 +3.292890152718272 2.5397443394963903 3.125193323390708 1.889306194936133 1.447289055528765 +1.2266164396529184 2.0709138379547687 2.0226799062647562 1.9888393359177017 0.8449753138291598 +3.3949190736467547 4.763127867532249 1.4657634191399609 1.543332376073283 1.3704058693486838 +1.178772530575099 1.5685332703381656 3.9477306483072154 4.367378772487964 0.5727285416225332 +4.092031476558789 3.5312337452485103 1.7947620113248095 3.7215940916686785 2.006782489779358 +1.0168973606377252 2.858691853060736 4.574804801494062 4.943832399634532 1.8784004686192615 +1.60803325632759 2.095187787339365 1.476564922835537 2.8231202181821144 1.4319674229923007 +4.507157405031121 2.2158188382373725 2.384700703183533 3.6119466795196473 2.5993008894911744 +4.840380679831179 1.6230435006869128 2.3380199101047374 1.6589806352212713 3.288214235894347 +3.6492420107640604 1.1930479911297573 4.8035436086932215 4.322234796688097 2.502907755911332 +3.114234857155134 3.5049251717414176 3.8589444583597965 2.689360165717122 1.2331124602030403 +1.64789330860259 3.0958368043934414 4.656096741811647 4.890071920265861 1.4667258609350668 +1.4991887694206785 3.526310869860997 3.3523773047661374 1.7021911207832527 2.613874222662897 +1.6878103549002135 2.948177755319676 2.9453992757898297 2.347341691920193 1.3950623131832147 +4.193294749401781 2.5045551189449955 2.3160051165217475 2.4502035494625938 1.6940633869129869 +2.5375047043611434 3.937478987727757 1.8575418412840539 2.4354941159222316 1.5145814028461153 +2.201066558060715 1.7426854356476476 2.595562494203633 2.5175833983181155 0.4649666577076105 +1.8509988481284179 3.04206846988845 3.6883098369108467 3.4940440543623605 1.2068082027185436 +2.477094705059567 2.083421635992719 4.313285326851965 3.465671362301631 0.9345736558502201 +1.2313540812044073 3.3877031954671186 1.8583887234054615 2.6116517803588963 2.284129316731523 +1.092860405879402 1.261905240206541 3.123576910305851 2.925647315321659 0.2602926825388991 +3.2885104536545064 4.490539957661042 2.3848157926383853 2.93225561258294 1.3208199290452596 +1.184554558240265 2.913934913469034 4.316948274987686 3.11634572560737 2.1052797663564093 +3.7684837279883534 1.4396354484509795 2.6340184997192724 4.319497400565915 2.874782328160411 +3.326787071860615 4.176091224520209 4.959982620942829 4.912333598070166 0.8506397434317011 +4.53421550933172 1.48729557816403 2.6288820747704325 1.293967281611228 3.326517484087856 +1.1063154183938728 2.636520074812922 1.2215638148227876 3.062928472112207 2.394190905429457 +4.095473094105237 2.7997673107067613 1.3603432173236887 2.9840598426951295 2.077332221056583 +2.887330847968203 4.304692378323964 2.0887198612890474 1.3728187363948976 1.5879005410784186 +2.9124341069564594 4.678428363409939 4.01936669011042 4.859318348700825 1.955570122137135 +4.591045183592193 1.0048198667106139 2.238156149104541 3.90573782923541 3.9549766982057526 +1.810919225971947 4.713882527427511 3.6672260392830225 2.8623854134668916 3.0124681512941995 +3.0565046199934893 4.022803241858984 4.602619917738909 2.9320043862330465 1.929945408742892 +2.1494329122278595 1.719016791444782 3.86852297688718 2.7231689510723234 1.2235578782714989 +2.037093180311797 1.6620338231787577 2.3095312390128546 4.790878940226024 2.509533011476225 +4.740490053145772 4.964979287197875 4.493016578918567 3.4286252600775478 1.0878071041455029 +1.6143464242596894 2.5210439080763605 3.451256385048963 1.992755573300435 1.7173598763889288 +4.729294022658431 2.4959114017838573 1.3192078961527183 1.129320783429944 2.241440395549873 +3.474181302757883 3.1662079450292855 4.084098230152855 4.74602144306008 0.7300615925085021 +1.2196375026972528 2.615449192879757 1.401587513862962 2.7216486487893587 1.9211589404297877 +2.382939633044966 3.2718523220401536 4.537016552187755 3.007930658621464 1.768691448093781 +1.0641248072840082 3.059316584886479 1.2395017501922192 3.005327401106615 2.6643818155136394 +4.3261267212319225 2.7168961886278047 4.521015254100756 1.2569793939328568 3.6391692738216137 +3.7682327846833403 2.225407818226326 1.566695445164349 3.8184485847356804 2.7295972374495903 +4.488518262280534 2.397760453425258 1.3476812527500126 4.371635290189329 3.6763523002882703 +3.022394143870088 4.282950420553689 2.799251477606588 3.758741254617194 1.5841788910581678 +2.1365024233785803 2.7859109477543464 4.195510130276678 3.5487321648339414 0.9165441441164499 +2.237825825264855 1.8511222428918734 4.432749953998487 3.0635540594813166 1.4227568513919626 +3.1430324365540474 2.6774816665995047 1.9449652820457182 2.463103629489529 0.6965664839030593 +4.1773153194244 1.813898645626348 2.4852973958807443 4.522369512762023 3.120160441926316 +3.876189597927949 1.831428203939966 4.247245754335728 4.753128470574234 2.1064108053588524 +1.2341635689811894 4.091138894449919 3.3233871557738563 4.449244125492829 3.0708080250321648 +1.5123987442125162 3.046212725342776 4.028879411150168 1.1010557939512315 3.3052589100006253 +3.467713735443101 3.261303000297313 4.899491310728597 4.758875124959088 0.2497564879713629 +3.807127329064525 4.596258448155675 4.4330941132343415 1.4505298785485365 3.0851932414591103 +2.4362116606911544 2.2179534465663826 3.454658027070942 4.97514140346771 1.5360684704569159 +1.4074294735261073 4.207142350396609 1.1398301413366543 3.2902630522812673 3.5302625819318627 +1.2459079384466283 2.8817254078632515 2.4352059441448994 2.1599118787491802 1.6588205495745185 +1.4225293734144127 2.354157034217007 2.4326435927742107 3.422932822614277 1.3596333539266183 +3.315089523840115 4.987111578889398 1.3358091904207998 1.787020626769328 1.7318341470426466 +3.728352191774128 4.86820278249854 2.0250000247602316 2.6990527697971722 1.3242380723520322 +1.3166605514183467 2.7210001334175913 3.671935188801521 2.169111866815274 2.0568538107205367 +4.88956530097105 4.932737827736129 3.531646187109975 1.96122431064929 1.5710151931580993 +2.7995101376948517 2.951282783205798 2.9525468677425706 1.7530846080993325 1.209026322390813 +2.2106846635394333 4.0824489612522985 3.2790818758758538 3.88049692334377 1.9660116086924235 +4.653083188555545 1.7600779691441333 3.8110192449478526 3.017068598051037 2.99997280475166 +3.0671572920135866 2.0366243687290195 1.0585806066901187 3.1977312709075254 2.374439653938421 +3.2539780015748625 3.059916978900189 4.873728750152917 1.356561142190015 3.522517233886163 +3.8562890718915015 2.072728857717593 1.878724247981574 1.2359806653772187 1.895839220652205 +2.7612986549663936 2.9834071173905836 1.5274418553204492 1.5076110273965329 0.22299199720300686 +3.0475418925525832 3.9496398848872696 1.0269693144804415 1.6000063817338268 1.0687152418771957 +1.438354542582561 1.469858767413784 2.586967365963422 3.0118755882990973 0.4260745399465686 +2.067614361085397 3.2915469369392776 4.2329064998373145 1.2611797547589756 3.2139027361838775 +1.0606605512387177 4.644349415055247 3.6792524995181926 3.8809653803734365 3.589361218788871 +2.334256717294092 2.2277331623964605 2.825771006899682 3.121307337823889 0.31414803937661473 +4.35783159751918 2.1756213077186466 3.893002662446413 2.507504556647356 2.584888150401116 +1.8878078888559462 1.1808598494317355 4.678243009924972 2.662768056635628 2.135863951140713 +2.0412536163706414 3.099683628105512 1.7102146435613625 3.590141584852503 2.157405709256685 +3.9026356608351036 3.9555653491786003 4.275073955339622 1.3208420084043868 2.9547060679872867 +2.9130754513821997 1.4107363621835818 2.8080046775298166 4.496646571441535 2.2602066686053046 +4.19650521570371 2.398231811110639 4.623992528937922 3.2429551219966704 2.2673887088538156 +2.857837566662222 1.1579937586386433 3.185962743759672 3.7035039432264436 1.776884313854339 +1.8545616195479941 1.024595075830442 1.4592145381907629 4.4594186168234025 3.1128875625589796 +3.421974983698824 3.0245354956305164 4.772498789334607 1.877187610078205 2.9224621419965557 +4.3125198068724035 2.9665365061726385 2.109421011665387 3.7528000259991776 2.1242329510944264 +1.1605720317613555 4.908488195435767 1.0287186793474157 3.4688185477639366 4.472243613420253 +4.778808628945219 2.2436511096911915 4.275667678844226 4.038314546848737 2.5462443238421373 +1.6565806663199036 1.7861089312742937 3.4372734158627947 2.230185839743305 1.2140172930581008 +4.800833664408097 1.303224717003201 1.698079044534913 4.820360603960596 4.688487014517206 +4.637995082501701 2.4859355963529604 4.314552901415253 1.6937119165499155 3.3911896879815924 +3.0684204079213364 4.721327242646479 3.6421401132573 2.669212850498804 1.91799073587435 +2.2993595195427985 1.6663238693773978 1.2711604289031992 1.136996454341205 0.6470966747330749 +3.6583928795058 4.142082461649461 4.3741374225149645 3.9217014710160187 0.6623095213592102 +4.407764956650726 2.0069624035417224 3.2177531971058144 4.319651046208003 2.6415964432272276 +2.165747808329676 4.953014705595935 2.016464380399584 1.9134385759539376 2.789170319822357 +1.010917587506437 4.530076792717825 1.6831896844480823 1.9687216421701064 3.5307237233327418 +1.3779980181657607 2.82909603355093 3.925595335961523 3.7399501017010888 1.462925016280188 +1.750782832859338 3.1787738459956043 3.3496550674824856 2.148073654829588 1.8662679938398112 +1.49328220028197 3.9521853017214283 4.038364603992239 3.62041139114987 2.4941710748049832 +2.70466801359549 3.4085548390141462 2.1114428460236607 2.720953823694634 0.9311070265546167 +2.899579967938392 4.0825792883642835 2.286817983364506 3.597513811815131 1.765619139805069 +2.8743544911270207 3.6493148609804433 3.5738950338855098 3.418473105431338 0.7903920234211421 +3.9036993734103245 1.4739751864993638 4.273936494804762 2.5883818594453807 2.9571361235563076 +3.798680757580511 4.696967529036237 3.3350288474705865 4.366137366715019 1.3675174230081308 +1.6370155781388989 1.5130261765023665 1.9291200309323795 1.7645188911625462 0.20607500317048044 +4.467474272990364 3.6002087850671014 1.3851406444772079 3.841293952293939 2.6047722545439256 +3.920839477224574 1.5935707866354685 1.343301072083582 1.064735718898791 2.3438810153656044 +2.26136926909699 2.740757809035072 3.156883999538067 1.0505844760207323 2.160164589792481 +2.8222709784161553 2.525514565733598 3.9278997996489204 4.7986004002989215 0.9198825492640312 +2.6747818380984962 1.8051805013996503 3.9722615913003376 1.9007648124567837 2.246620882469412 +4.644429227646276 2.718381286921539 4.849395861597137 3.180959091217729 2.5482036666491297 +3.2731312158126356 3.656251740503302 3.508513178003274 4.0707972040348634 0.6804003691721108 +4.342694923129569 4.474689062968324 4.048234546221337 1.5258636893645812 2.5258220825054285 +4.557819385042469 2.378491812040799 2.106457314773005 4.448140177535941 3.1988978258461103 +1.6648868358259845 2.785617988304706 1.22120515345003 3.532964228854135 2.5690987405799577 +1.0934250611182388 3.913563850894053 4.183445496112778 4.943759254952873 2.920832039929675 +2.0439787047351614 3.655487291519976 2.6907202416993563 4.856072599637541 2.699205579297295 +3.3275137892168294 3.133422052688534 3.356317529830257 3.5314013273555878 0.26139230735517105 +2.936650258765106 4.715652802054482 4.9887375415333555 4.905650538975586 1.7809417449832834 +2.1249079177497805 4.563938102831534 2.026897275331796 2.523685776427434 2.4891096919502727 +1.7290891063483698 4.168774834543068 2.4458495203263455 4.606908269066281 3.25917802027786 +3.0223612599881724 4.430481275040789 3.3828200221897387 2.7047381087036864 1.5628810121658931 +3.0194554297796237 3.1915516065162617 3.7530682909936726 3.122544123000702 0.6535884182500451 +2.077974426697791 2.067982859078434 3.648269104319241 1.382660370699611 2.265630765433113 +4.794081948386708 3.370558979281881 3.505469447843237 3.110890047038945 1.4771968545553082 +2.3006595499952316 1.660624144053068 3.56897047699732 4.238454051782256 0.9262038532452598 +1.6977485863124029 1.8045051585491798 3.858821216430086 1.243329416363535 2.617669635750683 +3.380133182890299 3.650060783094086 2.756775041584224 4.099940725267971 1.3700200594069432 +3.9571468352975536 3.3961831651699126 4.318309240739462 4.238305971672485 0.5666398876398272 +2.2877257589584605 3.92240000228924 4.078364332918195 4.881961347408826 1.821518060165013 +1.739350037763829 2.486634195193708 3.2324489994498165 3.0014088163363892 0.7821848746676007 +2.3880917744463 2.457805036945208 2.7343632470284405 4.885224677740789 2.151990899863243 +1.0485166046048309 4.6931474498913905 1.1116534093179453 3.5821421897494323 4.403027232785653 +1.2199005759359358 4.6696039806619325 4.027255635454677 3.8306657645504987 3.455300443944094 +1.3394455252853286 4.538581778070018 2.069920441633258 4.975177287151714 4.321456942087138 +4.945953182371474 1.6456525913079947 3.06891313771514 2.0786125605257646 3.445675438075322 +4.77353502155831 4.261592000757078 4.167873408870364 4.3929241099262875 0.5592257814093092 +4.347263403643699 2.814861675649532 2.9419745205066214 1.0165320123352601 2.4608096042223035 +2.6414267151410016 3.0027737603407254 3.72049609027883 2.897912892217224 0.8984513369169366 +1.276524212302566 4.9464940735001 4.6087509210290305 3.638250540218173 3.796122992113436 +2.3583548668791927 4.032112956050721 4.397043494696357 3.3936917996507185 1.9514560627946715 +1.3294633456522291 3.888828585125968 2.984692755870038 4.481586996291291 2.9649692740453126 +2.030490548045283 4.67636959168018 2.319812222561306 4.045367169570845 3.1588313960538335 +3.0920402781542524 3.7802545303259074 2.679633063220621 1.7940772754275192 1.1215381893569438 +4.727985521588325 3.443031087345148 2.096577883830002 4.6216055870695225 2.833173626908215 +2.7500738550226758 3.5875113313292233 4.051830482029094 2.3649383356251685 1.883323296813885 +1.879495590479181 2.3890774078303467 4.882798069279991 2.035176042810424 2.892857555119083 +3.785300341037934 2.7697895069992953 2.831468238858884 2.9585174563355143 1.0234274560081311 +1.3641603779644136 4.4895816318587265 1.7681255856606097 3.0988368601297087 3.396917795633782 +4.0512269630996665 4.047768665062032 4.832273014716135 3.624184566786039 1.2080933978163546 +2.2042926533085696 1.5018539065435763 4.594767385944648 3.1915778775391286 1.5691911895801918 +2.7017094638027985 4.740516690096028 1.0757126380062223 1.0220218401174974 2.039514061673373 +4.931460955305402 2.8149892932678005 1.4987443788605477 1.6867327048610785 2.124803969057073 +2.192598621741248 1.4642942072676268 2.5990488899059616 1.2685566711037053 1.516785042263773 +1.8814963276158556 3.5855403829022876 3.45135887542276 2.0080250880209407 2.2331543977550474 +4.0000340186045955 1.0486096342306181 3.7894687960940585 4.976369356584465 3.181137978329414 +1.0694903365808992 3.1267725456201494 4.418148996937549 2.6359658734534483 2.721871924477888 +3.533872129139137 3.892663682691182 1.5239573281974428 4.9143077630416805 3.4092825418185573 +4.926424681224126 1.5002123140873542 1.9097816830708472 2.625975113104429 3.5002663061464663 +3.3510896873176867 1.6224535727005756 3.509380180036146 2.9263939397625203 1.8242959664229157 +4.467051663345123 4.395057083603618 2.726958328104562 3.2946223441183333 0.57221119753902 +1.0685688559675186 3.485055431560743 3.3796134139065797 4.566434867524005 2.6922021716039173 +1.1492086438247635 2.5661114613055602 1.7786750518472791 4.451015699458507 3.0247343901672124 +1.5066040377746357 1.0248372229059792 3.2612498614118643 1.1555108672335592 2.160147211537156 +1.537279004021502 1.533986293240055 4.084071515486512 3.7347562094896327 0.34933082450305414 +4.150376355888915 3.4375322799603696 2.7949861325228342 4.276755368136159 1.6443195383490765 +1.5421672306078005 2.661978299645564 3.658290498289993 2.049858674967889 1.959854525370382 +2.6076643446545913 1.0462819297763146 1.1287747421589134 3.6582521309505283 2.9725697478611273 +1.40869258726498 3.988173193628575 1.3548394113634221 3.2434584428047297 3.1969676326994936 +3.831278551694789 2.4439158764154185 2.075186209260465 3.2098045108764324 1.7922426964895783 +2.6185280032983282 3.3488322487153925 4.582797499108363 3.070247972282982 1.6796280427445451 +2.1656827420489697 1.338696264699196 2.431554950565069 3.4294951572904933 1.2960676255190429 +4.387136745627203 4.957810533599673 4.3673136089253966 1.3179438251233067 3.1023095671844314 +4.894429286018229 4.929697501164574 2.2474287587098076 1.7729044986382916 0.4758330803927241 +1.2897668876253587 1.1924577216267767 2.141109020494663 1.854491896750512 0.30268539675826717 +4.9520633053602445 3.3069713971098493 1.9695972953391583 2.3039345596809593 1.6787223692196653 +2.6230256183183664 3.912451938242497 4.331111227861449 4.282097750846383 1.2903575300831132 +1.4945607432941417 1.6140029413713695 1.6838806670368371 4.554384363176369 2.8729876275807786 +2.492748866052959 1.919655380170843 4.116735796848447 1.5216484063627793 2.657614476898075 +4.592746007627145 2.559159060913472 2.874635907386484 1.3299744513724305 2.5537139392539046 +1.4371443003661817 2.1268918950411217 3.197016378296054 1.115713632685135 2.1926178105742498 +1.975307099311931 3.856265671597651 1.4601732990868252 1.7362649871699212 1.9011132977504803 +1.474462924636709 1.3072441501832213 3.6359103900600473 1.414896116843574 2.227300276200096 +3.3697795164161026 1.0258972756197435 2.8768268975189915 3.679462722591989 2.477500398872051 +3.58809881213585 3.1750947688683944 3.191228406515847 3.743889060772723 0.6899319810813997 +4.981847359947726 4.5755954897568145 2.004851147307125 1.2795465785708453 0.8313286350555561 +4.818246553269335 2.1421769764281557 1.022161383950991 1.4548105084952354 2.7108178922723356 +4.157536226772201 2.4704000706546383 2.115561789189178 4.745297945183797 3.124410449896828 +3.19035363356518 4.718787073330876 3.545238376821938 1.2233057846266409 2.7798344811324234 +4.901035692359299 3.5121947725390905 3.532616883318345 1.6393290609047964 2.3480668387136 +4.162825645396252 4.162182773852691 1.410756867836949 3.6345175688962663 2.223760793983842 +1.4738053509535476 2.30718553334838 3.8283172965269974 4.934310233886253 1.3848259478710665 +3.5807254269808135 4.838850491889774 1.8346282843369894 1.016211752727489 1.500894499344941 +3.627075607215656 1.3220624173863222 4.421480336830227 1.4718912889143247 3.743415733908356 +2.5075050551045477 1.8779694381181344 3.0028051611288804 3.886620754564382 1.0851014221049624 +2.205674728684139 3.0566242985982157 3.811320528958557 3.577410725915457 0.8825128704424736 +4.121470508227572 4.283786295857802 3.0725986321734435 4.646582933378164 1.5823315061493697 +2.827168841733332 1.156749527367507 4.78529354427381 4.522895111776959 1.6909031974608117 +1.6092105130795322 4.15386522992986 3.961504930312756 3.3536685034310425 2.616244015728072 +1.7879688152437176 3.2858129878792193 2.080835943403011 3.428304721708825 2.0147479430457533 +2.4178644590852456 1.6743331275298012 3.1830278847919566 3.9598861842363955 1.0753360676645778 +4.318941476280326 3.7983433425832573 2.038384707325962 4.57712261277417 2.591565659860546 +2.3793987833226304 4.448670954456542 3.858005367181398 1.496805660237027 3.1396100672381975 +1.511468714318816 1.4841695348716213 4.742617957961974 4.1076880817802675 0.6355164772581487 +1.8879173919589043 2.59264079237376 1.5037839361412906 2.6061227377133553 1.308352362532209 +1.159837892329611 2.5910100540099803 3.970000653073384 2.0798433202528956 2.370853959902196 +3.0883882909899887 2.2702968025012216 3.898517369860322 3.4928182770865654 0.9131623280749243 +1.1344640479271835 1.3892236312948243 2.8718691083416457 4.2196762358946955 1.3716728831614544 +2.854873992369374 1.2364579826773583 4.4135682625630475 3.96909655229588 1.678340097136229 +4.110346537441793 2.9152145951634356 3.3056121222352304 3.5076769195047826 1.2120934542144943 +4.748362556892602 2.4261562704830846 3.702933681835944 4.418389772338776 2.429921697108258 +1.6932629718745908 1.0281037107168767 2.703304066478103 4.965962257449592 2.3584017749048285 +3.49133590866993 4.94384795771715 1.800183380943606 3.757053689059881 2.4370335769977483 +2.9801309473567192 1.4555031507061584 3.8279958771219116 2.9341259776131268 1.7673407468757656 +3.68349161537044 3.1732580429270243 2.800255475871102 3.726350396451286 1.0573505097046993 +4.628863677025806 3.476091117688186 4.475311647865174 1.9546227570680599 2.771778681235173 +2.3213251872245464 3.0175915825072988 3.3060522302398803 3.3697374180313955 0.6991728658522716 +4.709511921266839 1.2378317815358604 2.3920848143360396 2.608761413975109 3.4784352432428087 +2.5087097496143227 4.37652684396765 4.3429516892742495 1.0865188213076817 3.754077213048697 +3.88635206470722 2.9274482376574738 4.8890431309426745 2.2812583454260738 2.778495642807905 +2.746961988535103 4.016488027895765 4.551492652827074 1.4106564076629073 3.387705519013084 +1.8759657942455257 2.54101708606154 1.0173987603440726 4.1483416672892925 3.200796261447569 +2.6461765008681075 2.0083881412387545 1.0747322366313492 1.4359554438542799 0.732977623884332 +3.4503759777265075 2.0718392017866174 4.13274269363688 4.727716749930969 1.5014518874348883 +3.234486197946436 2.2883092163068937 1.543997477942062 2.1991581811337806 1.1508633401021957 +4.993155284822771 3.7447252474446895 2.646700112153029 3.0446621987705766 1.3103249141387916 +2.2541110739570644 3.9348314215118436 1.6822124218078351 4.909320733037276 3.6385503897968476 +3.9949972293473346 1.1790660505663344 3.122552781225827 4.102684535229992 2.981631543104921 +3.3951730508054503 4.0044580431690395 4.95283253898485 1.7908914935394988 3.220108597049413 +1.724452884573576 1.92150448542005 1.3583386017859493 2.4250212849267796 1.0847309712129911 +1.459578962763203 2.2746232219142564 3.1007341046755985 2.141006445294435 1.259116485697942 +3.572059970141219 3.7138221652227497 4.006347016092422 4.668425446711007 0.6770852001371037 +4.302038706668682 3.138122173482711 3.696029902423741 2.9972568340429775 1.3575660195062034 +3.680190064952184 2.2056069493342503 3.9761439031590142 3.577151107732959 1.5276094447427953 +1.0466259609060193 2.0907366767336524 1.6432269656907494 1.048073835723486 1.201821299118934 +2.143886575685361 3.96540881077825 3.7223438959257376 2.9929967031172056 1.9621138041906439 +3.919792219830835 4.184966638329582 2.0540127809418776 1.5432580500235478 0.5754892417600908 +3.2596224395021305 3.3644060185717377 2.76199636663181 1.7273016579542912 1.0399868934788998 +3.497931050331988 3.6040431326198816 2.3367469084806705 2.9709123061799225 0.6429817459668068 +2.287109109428336 4.6821665985987595 4.843498240360657 4.087568984664578 2.511519344151775 +4.075852001185175 1.0292780917729165 3.853671655490894 2.364444091889005 3.3910781945722084 +1.3218331299546593 3.893429433647456 4.583959647112822 4.150006443493258 2.607953782584756 +4.053891442105202 4.096066812570361 2.4918777086027517 2.908436035553256 0.4186879525681107 +2.0857417247929972 3.7786683926541556 1.6279978578258483 4.033240840816488 2.9412912997493454 +3.0986453901045037 3.4873411962730008 1.3764225795506357 4.243597558430476 2.8934022861067197 +1.7888700365416597 4.983730541879015 1.2775690669286517 4.913552693570989 4.840197370126101 +4.3672640070298865 1.7218404235379334 1.580888197804077 2.1044512039659358 2.6967358338399867 +2.993111690598949 2.341641203500217 2.3721852871256517 3.084894230250979 0.9655919599766145 +3.092726378690659 1.133039312315268 2.7695767570342045 3.3671445852314803 2.048770535568929 +2.548508545653319 3.991930934561272 1.5800349408717924 1.2755007583059093 1.4751980413326926 +4.967434136457326 4.088095530781447 4.324114872996002 2.5394195228064844 1.9895662533376677 +4.769046396185976 2.5421838481575585 4.454522515016527 1.6869414210734512 3.552241816003349 +2.831713650805433 1.059379579272822 2.544442497928094 1.0837152864376378 2.296713314173984 +1.9117931962290071 3.7827710567716384 4.169060619703318 1.3938336083447598 3.3470050969807077 +2.2736395443545274 1.2800150013750575 2.229417848952814 3.917199450048566 1.958544476239562 +2.419295118107559 1.1777391475266188 4.502415924619404 2.5625638995198305 2.3031472179103307 +2.3249770190860883 2.055489963586576 1.9724409865891968 1.6227572794415068 0.4414770301231409 +2.108947571054897 3.6944515269097584 2.4128553967888275 1.1994450803045917 1.9965438613218063 +2.301764590973846 1.9317466247489792 4.444523227660657 3.833953449357608 0.713938897599942 +1.2350519357158634 2.665929995341697 1.556030022220424 1.8186937415579112 1.454786668544496 +2.083548626447756 1.0278422864824388 3.183390890518514 1.3101787527772135 2.1502184980192824 +3.147778139253319 2.6609916672428806 3.063734018723649 4.022082180344845 1.074891747207641 +4.74538508738935 1.3692947818699666 2.9356639569741083 4.5171687272291585 3.728155454023 +4.3346233157399325 4.520529961161402 4.437860929913506 1.5550201143701665 2.8888289060749948 +3.35758165640577 2.7226634580124953 3.435598643099822 4.565831779711573 1.2963595418502531 +4.320197077840943 4.119979625080164 4.685315336661764 2.76195870224852 1.9337496662007356 +3.256438529364993 2.0460028472891287 2.4593876878318706 4.1251503849976405 2.059106579007372 +4.365998030601135 2.5507729491869657 2.454447959004999 2.992683502846403 1.8933408559605243 +2.649582640396578 3.6448270716949853 4.1659628322992965 1.9567326832432452 2.423057846921677 +3.402937180919599 3.658058235073653 3.311825995640217 3.020542139086244 0.38721187657615996 +1.6956704417636006 3.7189400989772228 2.544011004844424 2.8335396239278374 2.043880360263212 +1.5104254141885716 3.4921289534270303 3.15743798210453 2.9050966844508332 1.997704945163771 +4.023449831234675 4.868414614322791 3.9217507498602813 3.846387170178731 0.8483190165271344 +1.8571083085258415 1.0353170081718335 3.9932058866162756 1.7848794059423376 2.3562781640933808 +4.588537878948775 3.76517364731503 3.8977125658600063 2.1142790295931784 1.9643227423758627 +4.0695820492273835 4.4420748360782785 4.916473221942123 2.536560675050719 2.408886590752474 +4.592026580451698 4.989441244647564 4.680330167931457 3.9405434403023407 0.8397754567109643 +4.469166867535405 4.888086060616509 2.2839311454766094 2.821564181977157 0.6815736000378259 +3.715661128914604 1.7373368494779644 4.979077400962254 1.6550601988520328 3.86818527407015 +1.1919377725891076 1.5761641259220975 1.1587531414541714 2.1900310596222328 1.1005289796714206 +4.275995716947309 1.0472632705377403 2.0346534424841543 3.992901035036372 3.776168275412852 +3.2142493994071692 1.1483983638043571 3.168472521219301 1.0196263185042844 2.980818764068684 +4.813535232194254 1.4512919753293319 4.945067340834957 3.9118956680335284 3.517402937369124 +4.3530113692939985 2.7464744090991915 2.539604527693593 4.103875964727273 2.2422992960778863 +3.5040670500331803 3.5048059849018234 2.8774939871203595 2.4111514742197744 0.4663430983333757 +2.5664880091468487 4.896271713549068 2.337780382793125 1.8319616014802897 2.384060558968025 +4.905240139956749 2.207103430127099 1.377326239879161 1.3129689343745214 2.6989041419995243 +3.0629596585362373 2.8156100236271833 1.7195218819298308 2.0336250882699236 0.3998032842821195 +4.234478915528872 1.4806549140113097 1.6174467192032855 1.0410339528288919 2.8135028538413778 +1.2223067162629841 3.224939041000088 1.6140483397688437 1.3006949220954 2.026999406129554 +4.179510599312378 4.570749360281074 3.6058804709208014 4.7707734026869595 1.2288381954362726 +3.4164510101673837 3.3246009232531066 4.373667601601401 1.7641919437545122 2.611091658169359 +1.0444174796067776 3.0465313436200017 3.275159903263482 2.938940188739742 2.0301486696565814 +1.598403968292529 2.224826321985043 1.9576503657764324 4.7462093858398 2.858052899017517 +2.789659318848613 3.3881624853371832 4.507418086437378 3.568580262374772 1.1133833572437901 +4.645294426698187 2.1849746561272454 2.691621562951879 3.738990639094422 2.673977441027118 +3.221795137036792 4.014515604065763 1.6234655004281264 4.200732858709465 2.6964259260934833 +1.390596683493135 4.239357570249963 3.885698292346166 3.5990587334915687 2.863145268165048 +3.145364161787084 1.2272604266292046 3.914743410388433 4.5641138633734 2.02504417829254 +1.053327825003111 2.0167198446370427 3.2887529010740737 1.0580497284301904 2.4298479022230657 +1.6066989653591657 1.0530493707218898 4.6213569596240855 3.7211040147631227 1.0568742774676918 +4.8191182050615895 2.575236814449817 1.2446872668377775 3.9542593658123657 3.5180654704930348 +1.5161957215382982 1.2389877856323364 3.963163706908342 2.6693267179569817 1.3232000580819083 +1.1989365352244499 3.9320367530228153 4.202090205697143 4.2138916954138415 2.733125697015965 +1.4416156954974304 4.653008009494394 3.2443984037928795 4.644400753051981 3.503290906038175 +1.114455812193436 3.4863821508506443 3.177985431099121 4.9204986694853545 2.9431933239199677 +3.2893443546074286 4.25860868922633 1.4451636233762488 4.5282931177098344 3.231897403878083 +4.809728689283375 1.2857098502670494 1.0082260912027787 1.2220990529233213 3.5305028567467676 +4.265435258122475 4.513342223388812 2.750396904988449 1.597639024903438 1.1791134777983217 +2.049971166548991 3.41645090133394 1.952928240468471 4.960326030499017 3.303287503845004 +3.8773943755961673 2.9916795019259492 2.762216278358405 1.6975885901300667 1.3848909531017475 +2.3425405906942465 2.3436309956977417 2.0672611258619646 4.714127885221715 2.6468669839617287 +4.174930450126741 2.275932960581633 3.712006828329649 2.78108064143876 2.1149030783319205 +3.591312594261355 4.894425272044401 4.0883116702334235 3.349075285556232 1.4981899356989106 +1.3871506804607123 3.2630395988597267 3.7073908307673595 1.5064475974988687 2.891904277503421 +1.6283035917721693 1.4991633051052404 4.449500803540439 4.502493729751913 0.13959034303586812 +3.33962611661611 4.1260698516488175 3.560299489309034 4.563106725010931 1.27440813727325 +1.6630755434485076 1.786822963258008 1.33782036148637 4.110302434857664 2.7752423805993405 +4.15136857349021 3.5394184703969076 2.3623088677521396 1.8338157723748951 0.8085715061374129 +3.519949179684741 3.9193688394241653 2.523652730924006 1.0845223804778739 1.4935301236203993 +4.728891891150141 1.071202413761685 3.4592776564549124 4.325750843001507 3.7589184742426176 +1.9005001523758378 3.597751072642972 2.250698806322383 4.337223181304611 2.6896551179923813 +4.4381404413662455 4.611702721101965 3.5491513897132325 2.032820936256363 1.5262312763889276 +3.02483594214406 2.2846087606013246 3.4053251142560628 4.880625175994571 1.6505897589832392 +1.529169524194017 3.045922844708924 1.9476205429816091 2.0102389194259698 1.518045353855254 +3.6969417415790087 2.0772454408607257 3.009037623767969 3.5116092619899884 1.6958756906405772 +3.58824381740831 1.034391715016406 3.130458204176676 1.7593533019761902 2.8986357504401536 +3.304943282752458 4.6864684114370725 4.6319354399347095 4.844633827212666 1.3978026631601772 +2.6743044186722518 1.9932419275240671 1.0009573736530815 3.6545488156403345 2.7395973532322153 +4.795829265995726 3.0425169326488706 4.4892571046799485 4.431978382797834 1.7542476992279752 +1.9717280224854798 1.878105049986416 1.5595279294062618 1.3956693650936312 0.18871907714419595 +3.1069288441861094 3.1170366993689953 1.3113346742227163 2.950814953313674 1.6395114376742124 +1.3863133399730505 2.1541483627737597 1.5593905435296547 4.109304708388999 2.663011992160323 +3.3467310838766924 2.0318092411412896 3.872559965156953 4.056088085548786 1.3276678889983091 +4.4326968649058145 2.1301251434734345 1.049895139930043 1.8453211401311203 2.4360909371646944 +2.7991826660274413 1.4037378392895676 1.1480240595791642 3.247432058216549 2.520868939316783 +4.976146065672956 3.6668267728150488 1.3865036346124224 3.9078195378559846 2.8410123010291297 +4.189202350445587 3.238060071500948 2.495391411282057 4.563045955466106 2.275932105507752 +4.355771346769473 1.1832719278265316 1.233982068777991 1.6355383609181469 3.197811754770855 +4.39217259183362 4.676601587765484 3.1601660881225246 4.853345322358442 1.7169029596848322 +4.165719064521684 4.584671518098007 1.3568475230862687 3.170440208724118 1.8613542348937047 +1.3258678525851169 1.7891403304442584 3.346456525497246 3.214789100427128 0.48161987040231624 +3.8214529677920144 4.600951297579595 3.0323011450331645 4.782764758959511 1.9161786215856056 +2.699711801963483 3.1181991865663954 1.8804948103283263 3.132802382310971 1.3203809851390822 +4.715469323635769 1.5749340428520928 1.1172664279751574 3.231369515628573 3.7858148020040168 +3.6298611454768785 4.821264239106329 3.2887716929042963 1.6148278088640042 2.054636089049767 +2.687091201233397 3.6882514435973417 2.7135183351570964 3.5669193112578252 1.3155284325699346 +2.959666425508421 2.737699741570931 1.8127701443528879 2.1059877387072885 0.3677577550741621 +1.2553383544466477 1.9544887450434474 3.0466068882445145 1.57894828638566 1.6256792550444705 +3.3754973363278733 1.708255999872096 3.592559001040246 2.838615942948588 1.8297879136204414 +4.530302251635693 2.6082341274490046 3.5712708523366747 4.484631760571739 2.1280446477239416 +1.2944941719564 4.235726145358157 2.2829812658508044 4.955035407173976 3.9737537487271535 +1.753508401658455 1.4475483891069305 2.6979935427971173 3.301850553255473 0.6769452107521196 +3.3233526026396847 2.8601721054801006 4.94071582575244 4.422709664308664 0.6948860023361488 +4.648478612162757 1.648419511070748 1.0281466866624713 2.98860183465721 3.5838162616607545 +4.450673212863196 2.370432916147957 1.0988530755036545 4.175855098535733 3.714208010036784 +2.372761561076803 1.8691243401346749 3.8245876173124222 2.0953859226689437 1.8010521788877156 +1.910777134290683 4.29655891362435 4.623605498100315 3.4438852026412903 2.6615211203592666 +2.8714399658928054 1.351678677168338 1.9468535474487387 2.387213360013354 1.5822740404959557 +3.7637465890637465 4.846276202160166 1.9044722859355332 3.0135117974955326 1.5497867599872979 +3.426077422664709 2.22708179012005 1.8149214132003801 2.4953885513930847 1.3786319498043471 +1.1346318717532005 2.5919252214017394 2.3790453551427975 1.2873314786158976 1.8208632829323705 +2.2240293219395952 2.803492035379335 2.8797618637445126 4.783354567580124 1.9898347213683654 +4.307898177067173 1.1985172322506643 2.0782279537927733 1.4495676639814237 3.1722962692620147 +3.23991780049269 4.4712869547530625 1.9931661872049928 1.8390166946940978 1.2409802819163853 +3.378831559001488 3.643629254942222 2.4872010574745045 1.8512466838446877 0.6888800948745826 +2.5997151274502377 2.0896111374371427 4.5277270780818295 4.66366854042597 0.5279073420701242 +3.851808026895188 1.3275243961024503 2.909347370986123 4.0078304248081995 2.752938951052573 +4.4186770890950005 1.8172823371236548 3.6508430423208087 3.706537430974794 2.6019908763313526 +2.14804426914909 2.521089063995544 3.1982742463172817 1.7187821184087837 1.5257979471428216 +4.820379684143942 4.920304902876142 2.1653323381111176 3.5772628953974777 1.4154620969625606 +4.034121543590653 4.547916935753305 3.084615729851817 4.864251962502795 1.8523203895578484 +4.257364394436398 4.118691942126681 2.4883261231301446 4.339210851132867 1.8560722845253905 +3.0073412065129825 2.8359059255813124 1.0357026212349787 1.881669132883844 0.8631624380031087 +3.678434596940085 2.53506931127203 4.110965376431212 3.8658141378774613 1.1693516606373084 +2.8105972436695366 2.3316842864422016 4.482574924023001 3.391756106028517 1.1913199882026297 +1.010320049026109 3.144020893089419 1.7086123415967163 3.4522199046370017 2.7555120442211396 +3.7293024135118586 2.3739704050429236 1.2758604080409657 3.547808613047275 2.6455006141393786 +1.908005205209741 4.0463513490752465 2.9465113347629797 4.956792615500481 2.934919940759558 +3.9666540123099923 4.248669910377006 2.0220078799802264 4.848977854830181 2.8410019720981716 +1.3837964856144862 2.852483108572682 1.644126407629408 4.187449867776982 2.936926049357283 +4.840989344241256 4.294270451248382 4.036471570930306 4.932373982917062 1.0495440342163067 +4.592141294358992 1.6229527953546592 2.988511512830114 3.919296148252885 3.111661996451206 +4.822181431877198 1.8034652848534982 2.2858445899934328 4.214718881973232 3.58234604841048 +2.288372393570121 4.405532873490834 1.5552075695756753 2.669563081030978 2.3925209933559444 +3.1962758600387207 1.5154527921890781 2.8960980399229657 4.929824376200253 2.638410316134191 +2.719498587201944 2.0443296440249825 1.9584198017869978 2.2643270267248767 0.7412370282844006 +4.396825567168763 2.700229867723272 4.551670031296711 4.1861454158534475 1.7355244774626144 +2.2981227589143707 2.013209136239057 3.4097335303121814 1.3951337333775493 2.034646926175407 +4.442991448843594 1.8540232282335305 1.3037902688086387 4.643939427207913 4.226032755159881 +4.879462412316192 1.3450078464702004 3.297411704205225 3.112648693289163 3.539280498665279 +1.013299772350408 1.1182404090052218 3.877386518315748 4.783627440835936 0.9122966331581842 +4.80502031852126 1.6564110426093412 4.052647126355048 1.7799471346899307 3.8831566572150034 +4.36702039573249 1.3538689747744836 2.277286516170622 4.237205355014237 3.5944906927790696 +3.12225383418029 1.329615965318577 2.676698155893957 2.416080437726476 1.8114834042573749 +2.9518961903555447 1.0445703243391296 4.144863327677191 4.926600487658291 2.061311462751465 +2.4606854092593133 4.51569538412015 3.5378030881946056 2.7038345554850403 2.217784820564719 +1.2180030632749994 2.9220532854873955 4.789846929203869 1.7347819021708402 3.4981723055364835 +3.3861980553569966 1.4217673955763108 2.101744890910009 1.7954488433371187 1.9881662621232548 +3.784463251088534 2.6747213713802864 4.813730320499101 4.0906413767206535 1.324531864544234 +1.3565225856443806 4.63632241168772 3.30099691692108 2.4793965551660437 3.381140939586803 +1.380974491781752 1.6456073495061099 1.7182647662469006 3.2285440615075895 1.533288654846335 +4.0987511329326995 3.9677205214939875 2.783745547359325 2.5965784001272576 0.2284744233759945 +4.863797053830347 3.8394931328878723 4.681334748327637 4.665980840289206 1.0244189889640765 +4.207399204430505 4.446462000565863 3.008105805633076 2.195220728113245 0.8473093707439313 +2.2391144593287264 3.658767993971963 3.2081794967562676 3.44732759386089 1.4396555042001533 +2.2844950029474314 1.9045949904987984 4.896913750706073 1.7385985086199218 3.1810814494212774 +3.542349806043762 1.3380174917433347 3.8065586672041025 3.3435838207775115 2.2524268379445322 +1.6027672603289216 2.603188538806416 4.563048259803985 4.107500252356562 1.0992573499958331 +3.4368440457156995 2.854967324154546 3.688765141053279 1.4555380046516038 2.307787676944216 +3.3716687016513154 4.449312475518613 3.784901011808111 3.5732271991732087 1.0982358154378078 +3.106723995194772 2.8700791921516218 4.849977527672654 1.5467697260182436 3.311673677118247 +3.4793093165641453 3.613450125660759 4.388160753656027 2.3267251246972744 2.065795393790407 +3.4816369608869273 1.5677605373231245 2.5570007087343116 2.6456900545436017 1.9159302609263869 +2.320697381669582 3.2054755000858566 3.075417170965371 4.333054340210396 1.5376877343254323 +1.6649307185897935 3.400203730766647 1.099382389508984 2.44571692687951 2.1963126173898924 +4.565720943794918 1.425145136862644 1.4895312835991628 3.037516911374879 3.5013534387274423 +1.8409527353532211 4.338208296943347 2.9197072485882924 1.2446357511560269 3.0070167710544595 +3.853812173254834 3.6560598039488865 2.4916989559825953 1.8923196760020091 0.6311588713122567 +3.6271365808529463 1.8616548379834632 4.157534742690258 3.918491527385986 1.7815912671509344 +1.3424862895706435 1.5504145149131587 1.081058933136895 2.16298766378882 1.1017277000711991 +2.099643541691333 1.9720854613103413 1.6326295611130668 4.925123287968475 3.2949637335261674 +2.234505097265071 1.073353022700104 4.829903553532231 2.2945286944052494 2.7886196973699535 +3.672234632488996 2.8399676059423067 4.3322941546462665 1.60912006713367 2.8475156741231347 +1.8165445883171074 1.6768772668475527 3.9617074137893145 1.8755054764306762 2.0908719435023793 +2.672374651043933 4.266187495684881 4.391489964633141 3.7178101617470594 1.730342122402128 +1.8041389151520102 2.165388481833958 4.992657503513884 2.5822579649223156 2.4373196723184143 +1.9915372062726369 1.1117625374066558 4.02873346865124 3.3135489231176276 1.1337955733501375 +2.7483786856725168 3.624271202216115 4.375597689881506 4.746781309105216 0.951296473091901 +2.4676796980260556 4.026651287002011 4.612102639564314 2.5860359836085016 2.556430814555751 +2.990593530065372 4.180422703106439 1.149308013902913 1.899964938157825 1.4068330671943399 +4.036795038241788 1.7028050081569224 1.5243075708684768 4.93370608468555 4.1317681065802345 +2.391061204749179 1.716255572913815 4.290239775988473 3.1735431552602305 1.3047505445496475 +1.0825787866093477 4.757453950739816 1.6428210126426022 1.8273751374775964 3.6795064474650054 +1.8490746440026 3.9567324379053845 1.2217725567500577 4.077260701770979 3.5490891680196164 +1.6107355649973747 2.6320822030012536 3.983191132734385 4.21769428362607 1.0479220785630747 +4.682932883420268 2.5878167904183362 2.6438432390300908 3.402636722873842 2.2282905991542967 +3.8466022160514695 4.77697599506135 3.944247350281028 4.061660751615586 0.9377533127012007 +2.344921284146622 1.7239215520963431 4.676728337072523 2.085107742501547 2.664983672259726 +4.302607594735285 4.327217632368015 2.4610927212189266 3.6651755616748463 1.2043343143133802 +3.919396934403517 1.368945431014461 4.547570502614992 1.5835604715564466 3.9102632053808315 +1.7211288797150788 4.172285298149218 2.7806426940880007 2.559824340794822 2.4610827968156594 +4.278454570328926 2.3630471886398916 3.560310823855012 2.1726797445170565 2.3652284139536004 +1.0170588219957604 3.527778784191288 2.9555774408425974 2.8539681351992385 2.5127751947916943 +3.2808898268525337 2.8258212434822068 3.0271532687194216 2.9719707399315287 0.4584021455600997 +1.9473258676590537 3.044886239452313 4.674119726158448 3.2235342628038723 1.8190208784471296 +2.2512390247002663 1.412666820416991 4.553109842564019 2.067704865078809 2.6230595197030446 +1.6351828195448324 3.7664475816572223 1.8295510596497109 2.366089886396387 2.197763271789908 +1.7505921994381493 4.777823992959963 4.704492024852019 3.839122761211166 3.148491113877187 +1.4921315125832924 4.047119721655909 4.095714912379687 3.1423205194425727 2.727072719416192 +2.434445086640846 2.7515945496001804 4.897309575971235 1.1702849876144765 3.7404940935752404 +1.5163809477005175 1.0335905867641246 3.6930791764799835 4.663211962808885 1.0836254683807363 +4.275401780351174 2.0784709903629968 1.5306881028926833 1.5778472625358626 2.1974368892726655 +3.11151012495109 4.0306414714604655 2.457761804100568 3.5870985987442694 1.4560920396294486 +4.407595452382143 2.928921487877987 3.177628297127592 2.372729702639053 1.683549357967287 +2.765589840281936 4.45592825256667 3.5369469270800438 3.844204146344677 1.7180369457131912 +3.762277241707653 1.2748503314998674 4.00780300931663 2.891911970379705 2.7262621745543076 +4.713600506445051 4.763889075859819 3.7434128625377423 3.997613776595922 0.2591274684818228 +3.285694260560687 1.097569056518815 1.4366992719487905 4.687993497307746 3.9190312640263247 +1.3938591032921748 1.156783422901606 1.5482299297937212 2.3714919803505197 0.8567177377174092 +3.7418421397992065 1.0995120520195854 4.330187763857371 1.129873513516975 4.150171031863298 +2.4241565400244034 1.78253821328927 3.8916284100215415 2.703722691595485 1.3501089115592557 +4.511795019612205 4.678132480461983 2.4275519715432208 3.71865910913428 1.3017779348339444 +3.2126846608721684 3.9446494670585452 2.116037527963192 4.947863551549378 2.924895058862011 +2.1694109849435628 1.6695287171962168 4.036952256095947 4.806689112194549 0.9178110422329799 +1.7766362035395034 3.918336254699829 3.124651287859214 3.7318946905376498 2.226123010805249 +3.095969905801537 2.4127305677145165 2.508609966746054 4.563312803164981 2.165322086687699 +4.953640940589141 2.663137116764987 4.1254057431562785 1.3142319610916675 3.6261695768290427 +3.7609545501815957 2.7745868702792507 3.1472793838333746 3.8720708796571714 1.2240277416686405 +1.2895788618821755 3.522957938012431 4.399808802662025 1.5934083665850642 3.586623133995178 +4.010252530011416 2.5405763033208673 4.392787565363672 1.5532006298390657 3.197374262688275 +1.3512543454503914 4.614705954198646 4.3937003202593505 2.8678707753391746 3.6025369120652857 +3.8182182521469237 2.5713389373731963 2.2581848333912675 3.6202325543818024 1.8465865860733717 +1.3271074391558346 3.1592917930325446 4.993013087812799 4.064175108442052 2.0541761118541295 +2.5794823711522747 1.1227556417164166 4.900723364588905 2.6448207475887173 2.6853583339363087 +2.3296085104223967 1.3351890815029681 4.329577523591344 3.8957106694725567 1.084947209644495 +2.135266464297431 3.397050074575904 4.932901979702525 3.4813033449605975 1.9233399271974791 +3.0501955190054 4.716113015896299 4.881305690650833 3.3824360789394126 2.240957656752841 +3.600135759994046 1.911492088252888 4.473974242964541 3.168686878267191 2.134313134137072 +4.7129758492181155 2.568650946851325 1.0892069222886032 2.510026362260912 2.572325245359453 +4.520189788552406 2.714719714191643 4.8024633895023 2.5868244122311266 2.858107462468042 +3.6906876339111276 1.1669474706899292 4.069301749241287 1.40139925019291 3.672460776629798 +1.0401327538746035 3.550936883027171 3.2557652572308626 4.891247522801839 2.9964878801635018 +3.4067964268433086 4.07830027593887 3.622894899291012 4.806827047379366 1.361107178229275 +4.742021103096251 1.8168969306969789 1.9552522061383506 3.024780492138503 3.1145211796532943 +3.016404322832702 2.1095483220062428 2.554884148316635 2.828368470489696 0.9471966431050195 +4.343687642114393 2.9889826364554026 2.803516106345829 3.5766779654623164 1.5598092552456495 +3.9810551807350545 3.028667358470722 4.589959560269711 4.216106025307365 1.0231368577083126 +2.940142650027955 3.700037691732666 1.9385429879827858 2.0249233237951647 0.764788883825114 +3.380776377064578 1.3138182121153377 2.6358743005428065 4.610152062447041 2.858336708087401 +1.5427393782072771 2.3365938321794384 1.5575887523609997 2.0114279225592337 0.9144259874356481 +4.3173730956946095 4.638662020802865 4.957869905054432 1.8924254409892796 3.082235606773906 +2.0310134461944567 2.6914964417328986 2.517888046729884 2.2520632626051538 0.7119695241022561 +3.8774951477356763 2.2971175636683765 4.25654435007009 2.181740468065987 2.608141954917656 +3.103398914691308 4.949425285596225 4.358499853669617 2.3373175077880157 2.737332905837328 +1.7797811427639307 3.314248213191589 1.3035365767531921 2.780665528666738 2.129905897171997 +1.4976260783399566 4.165299893758027 3.1494029284791742 3.046798719685615 2.669646270412872 +4.481040582379983 1.8698376793703084 2.8358692317039598 4.501711212918617 3.097323055004648 +1.816878946501503 3.11393124286217 3.5860773562272357 2.5140119837438344 1.6827563169908035 +2.6218461824929316 2.507460016972901 3.8970710681418788 2.0266018520144353 1.8739635224152011 +3.0511117823401688 2.9712053056843097 4.498521941236881 2.65113554707268 1.8491137159067748 +1.8653364186358248 2.973411175883271 3.8266824222934157 1.0188269365846607 3.0185894216129716 +3.1698537968765446 1.318040976401671 1.0623998058205375 1.012948014371493 1.8524729962276445 +3.4127789979234087 3.49220220031645 1.8328691891684246 2.616529872381795 0.7876751306806714 +4.914885935398452 3.3468626013241596 2.6937572968294874 4.90501781936259 2.7107877590683547 +4.350628778490327 4.189138399880457 3.3003377276326153 2.9657195024313467 0.3715487841729614 +2.6882643917442817 4.02543783247281 3.3233048428321172 1.3473546069089393 2.385877646786321 +4.5629136846535925 4.159262429748129 2.8548644622706436 2.3660498586708107 0.6339353691656725 +1.647008481427263 1.7947745614971993 1.158710157787842 2.1464872658986094 0.9987684565137734 +4.3778119162797795 1.794740669920849 1.1312931487414932 2.125169016169769 2.7676788656964133 +1.7638764371845719 1.309924058878725 1.9811130550202884 3.151994621468494 1.2558011006595504 +3.973521720578331 1.1265410711371548 4.003814606392703 4.721802630103642 2.9361208456882086 +2.12851664188456 1.4526497584776679 1.5844909377843197 2.321630707968257 1.0000855387780456 +4.359553406689951 4.04205682505712 2.0534797326178134 4.031760668663232 2.0035966513420984 +1.9941457283959578 2.7258039576093984 2.268051668659813 3.0771271964500753 1.0908377395583813 +1.9401091163542152 3.494656671861383 4.0304590645140745 2.676323714840731 2.061625729265198 +3.7797569079203 1.6733265748093618 2.365921314694404 3.085424335099257 2.2259230320524486 +1.606256305131843 3.6967347501474253 3.7968509097111185 3.1628113260259823 2.1845151230317423 +2.184932152548183 1.9558763864187667 1.6105505323189098 3.8839152629034133 2.2848749948876166 +4.359629404125929 4.940205205871504 4.320555683905928 1.4038195476046753 2.97395661541625 +1.310706621223971 2.399157647529255 2.8130910883161233 3.1619231889148582 1.1429827081251718 +4.557651580032922 3.6210727440663715 3.094834188432489 1.83262528515764 1.5717351021997175 +3.608792675508342 4.89535729584145 1.9335116286429526 4.831570019837102 3.170802889027272 +3.3924882417004336 4.823550207889492 3.805413620501025 4.154262146417171 1.4729676320635028 +3.142538214088472 2.645394418406633 2.932017304721092 3.809058284329151 1.0081432604034062 +1.2172714850692112 3.2494629958175825 2.1774214271581944 1.3341719244053607 2.2001981865847107 +4.606077153802401 4.683308056168542 2.966527265603841 1.1278383622667016 1.8403101628626137 +1.858340484645867 1.5404428825032954 4.24277291595153 3.4144935643526337 0.8871897033515916 +3.99201037620516 3.5932123601246615 3.0775304548813196 1.0563470311612062 2.0601510357133286 +2.8378609881374413 1.4319839617515235 2.2344691176813067 3.7920723232414875 2.0982416351057047 +4.023005560330189 1.276438942180032 4.599641292491033 4.666470777273695 2.747379545671312 +3.147950326571009 2.249821767247483 4.353325474334384 2.2713180924626144 2.2674632626001006 +1.085457116092034 3.8588393607409204 3.5599734646284893 1.813582698310976 3.2774273117206985 +3.345529587600513 1.5768564065449402 1.7470217313284184 3.435888910396716 2.4455014148266914 +2.2937319452803044 1.2990791480651698 2.5256502512469883 1.7513115339535297 1.2605295062423452 +2.2434923993276046 4.523346258217787 2.1159860221467817 1.1562157327002995 2.473639550621844 +2.718093263725237 1.5275432296067888 2.2395524573988697 3.24089086832642 1.555663201640493 +3.0139008168441035 2.836039573394647 1.8294636430387348 1.7805714527785628 0.18445885229455306 +3.559117298150555 1.2643271343823717 3.3431346693023656 2.3598461989945974 2.496581284790743 +4.442341292891351 3.244135327692587 3.18631733493386 2.362798127816021 1.4539193304753522 +1.706225934504451 1.0352896230726842 4.430356024631497 4.305794300961279 0.6824010235934297 +2.9592824032386797 1.1046357293089093 1.0153904178901474 3.482468506405969 3.086452426322758 +4.4167045731874195 4.613026046068695 3.2769275109925986 3.363496100811176 0.21456057759395256 +4.712022731841734 1.2095684857765274 1.7997314855918631 1.2390028494733833 3.5470554477120153 +2.893741762566913 3.3097146176578796 2.092493357470455 2.554124510134367 0.6213990161581704 +3.98984354547141 2.956319797642389 3.386890696648872 3.0643264229108893 1.0826906520417812 +1.5676009638170374 3.5266701071254274 4.591454718938905 3.1175612318118326 2.451594158840054 +1.601124450378756 4.592133140764821 2.7901880365715996 3.5237935471595647 3.079660700650315 +3.8876626795940075 4.2666043136858995 4.354030888178322 4.999608856486605 0.7485771003799699 +2.673162751826305 3.8687646933802995 2.8660481752925144 1.9439225756966523 1.509893911530777 +3.4648196063586956 1.8287891944543468 3.2090017402575675 4.855524207101599 2.3211272568513057 +1.5936578088249007 1.196250129899341 1.5459171310756936 4.096596215990729 2.581452431770147 +1.327088858622425 4.158583819885177 4.240348937090021 1.0611212603781688 4.257329249192149 +2.8154573253617583 2.9471532562010387 4.1820022864047175 1.0453627113765145 3.1394030709408325 +2.433087937683521 3.227449485117587 4.079152506576604 2.1026773111459485 2.1301324996803586 +2.9707458338696355 4.494271585216804 4.740901095262237 1.167093474995911 3.8850008522124697 +2.969175521055704 4.118834183715609 4.268605806190649 4.621175356784114 1.202505853887888 +4.486949392059534 2.6938235879167918 1.7249727132791524 2.215493538222669 1.8590080228944212 +3.5243251995852454 2.7111225527438028 1.3172397451168907 3.9386972001291802 2.74469264823394 +4.8779158376630285 3.9494196989987973 4.254415606860485 3.3005512881315835 1.3311507120001622 +4.850029262950188 4.033220004273252 2.231046795254989 1.4510404099125154 1.129419021548423 +4.626449935929971 4.629293187067841 3.118417361402851 4.69724751740371 1.5788327161465616 +2.6946101683325465 2.586498392080189 2.841735433961455 4.8235089749945335 1.984720263438459 +3.0707480939174476 2.2624951937457305 2.2620709517704083 1.9328507305176421 0.8727306026018063 +4.586016093974051 2.4037040430819943 2.83078831639306 3.838951582977241 2.403929919851737 +4.157295217786693 1.167093634470194 2.302186477979779 2.509283119964305 2.9973645971068925 +4.624004356303244 2.4908876135537144 1.2532185841043528 1.7565869454519647 2.191704073410492 +3.5689196387990116 4.619189700339381 3.8273515803963627 3.2870011600965636 1.1811205606906434 +4.880762623603065 1.8755385667907554 2.8533525575816427 3.874089111180452 3.1738422682131215 +1.7706601137205853 1.5623214184487662 2.050626744369968 1.2015195645448729 0.8742928655651324 +3.144693539251308 2.8953824252540454 2.9315381382681194 1.0343606703605697 1.9134885357113216 +4.397542158588646 4.606059403779982 2.025951687300605 4.70869666978356 2.690836316571421 +3.531813049090228 2.0225109921717515 3.913130492404805 1.0918706546981332 3.199609315350082 +2.0429113206217444 3.43155751067545 3.121189784007772 1.5047018659222418 2.1310493730712023 +2.5700772217240284 4.286510098356832 2.81357314156747 2.7704637379957116 1.7169741525900364 +1.9577442114764856 2.0448301657156565 3.8386956795253346 2.1562466331344914 1.6847013851502601 +1.6563548483302415 4.756340168644683 4.9383526554210295 3.64101235619687 3.360506039000088 +3.966841424838351 1.9225530020030934 4.684300024455365 1.6446742755152797 3.6631188691274867 +4.751012381234322 2.8979761345024655 3.7223888809580643 4.2842479400715145 1.9363442188851485 +1.9646296485501127 4.779270882340524 4.666921571017008 1.4930982039613636 4.242093827371294 +4.444347089511269 1.3502038828900629 3.9225700265617602 2.3390590022024558 3.475806287373854 +4.202168806662371 4.409852871087716 3.209200790239352 1.434445922406279 1.7868652751434333 +1.658105633265396 4.911569073931317 1.0972032848549045 4.515547429762197 4.719120792348051 +2.6357078513882057 4.825862535341182 2.3254160494127256 1.265072604354454 2.4333322340196797 +2.264461655514793 2.639264230579569 2.057980271515618 4.738543972298768 2.7066397477742474 +1.807990855539427 2.5349158419638393 1.3738883670520146 2.1258655300813443 1.0458917676345727 +2.2679807087833757 4.666342289416611 1.7712743161103224 3.683180744899828 3.0671688026426245 +3.6664550941905603 1.3952626225447595 3.4116764912749526 3.8708669938654285 2.317147203120651 +4.971234661182102 4.400876699702501 2.092344210123095 4.033719960053987 2.023424821099835 +4.2846997895234855 1.1165809238806963 4.905782461293983 2.8334433470110483 3.7857055552999275 +4.920787637689882 4.253200991436739 4.5201812892004245 3.0259144001056066 1.6366140247781773 +2.9549319567968952 1.6053240183492319 3.168751907426629 3.6734938603737963 1.440904586218627 +1.2500374098492975 2.5005147699744286 3.7020877975558073 4.0451825908692385 1.2966910446919508 +2.2846075919965254 3.684656977251525 4.777259078735689 3.493020396697466 1.8998440129642682 +4.449711570550006 4.690877517932195 3.0300158087500924 1.1766165260571562 1.8690237867034865 +3.546891673101175 3.0712588845574134 1.0313318615794471 1.2714317231530683 0.5327987359834729 +2.8544538860547197 3.815763803581522 4.589106198451379 2.006245742455453 2.7559544431435854 +1.6406503791649527 2.7390337648720497 2.355646239710588 2.087124243671647 1.1307299077826334 +3.5511598336765156 2.2130088524412717 2.931441940884587 4.380261439765141 1.9722388265413864 +4.8017825420910345 1.1815310552675897 3.3069302724670164 3.048589988698678 3.629457332724118 +4.738344479328301 2.0141713577493237 2.9272536125424624 3.497048195907903 2.783125053526332 +2.2801093941925226 1.072583140665476 4.307082722143249 3.754102104268064 1.3281216874604096 +4.318396710663457 4.41149721825548 2.89631671068498 2.462167344383603 0.4440195680077394 +2.0703994890060287 4.620453011787529 3.4904441107871422 3.5002007422124786 2.5500721873913896 +2.674536211807013 3.8923191036810203 3.6037711111753383 2.4622903739965762 1.6691235559691768 +2.272689308615877 1.8405904219676716 1.9688071452590736 4.397943080655083 2.467267889888503 +3.769006669085829 3.6380171769452065 3.430247620962327 2.9879346835749576 0.4613013999886637 +1.1023582851182332 4.430297524783142 4.243801177237339 1.9621222477456133 4.035001650580574 +4.287898079546386 4.111864452617218 3.0628037699908095 4.896624523602567 1.8422503614294747 +2.4919998668539205 4.9192368254529555 2.3174368295416756 1.7651537323203454 2.4892761744461938 +2.3659624970145186 2.409436344933185 4.890409074382714 2.8671553807404537 2.023720703133193 +1.0877887026769089 4.7397801389546 3.944024439482887 4.198587882757793 3.6608529057171326 +2.454480763971869 1.0373813757782169 4.838716700762975 2.1358851707984297 3.0517976596408403 +3.321928845076145 2.4198385327317076 1.4781823854926892 2.940082464493722 1.7178238479567427 +3.6423214601438616 3.588567941901095 4.317127374083723 1.881335094498343 2.436385328721879 +1.4040465696494397 3.7286136921645365 4.856940385169158 1.8339291494716945 3.8134248698815636 +2.1471916573832828 3.0769189020992886 4.3039467428543094 3.324761901918392 1.3502576429281612 +2.9788347283719565 4.038367132671809 2.2248604482290517 3.9399078517598056 2.015935641859384 +3.896347980429309 2.4545570163932253 1.7600826350840046 3.4563409903446685 2.226219574024025 +1.917239897778872 2.120593071243026 3.7004863553331697 2.422409213768835 1.294153658939773 +1.2823042463002552 3.0220325700248867 4.074368250103728 2.956397665632987 2.067973130413344 +2.7388674951061724 4.882027410197833 2.791369007391776 1.6587314820225623 2.424046654982158 +3.4324720777303996 3.325895071531582 2.1671614920124025 1.7080146269394816 0.4713539030883205 +1.2159562876981678 4.379455439205021 1.3110345547023288 4.853858801209084 4.749666359147844 +2.200464143919702 1.9713002428796473 4.397564518818374 1.123605192298927 3.2819697995629955 +1.0861396461183852 3.595647245111235 1.5494950517249557 4.170149772636335 3.6284238390295522 +2.709799825566824 2.5820681196447697 1.8321213142055757 1.0530670292379303 0.7894561214052416 +4.887027834944101 1.1413446609630138 1.9538804461595278 1.7433193065712267 3.751596784483876 +4.455395677276386 4.8215920177181895 4.792380918437923 3.5959372360673996 1.251230292487081 +3.2721658593055505 4.321415710189485 3.541565427380933 1.079377429463245 2.6764332584000434 +4.520900760967693 4.606595749489252 1.8900738091803255 1.5852383016742695 0.31665172934027197 +4.13260737674514 3.9317269981133354 2.754208548002459 1.251468783239451 1.5161067663984744 +2.279386706669514 4.916164309804749 2.3335803157366284 4.453404456751693 3.3832307809586166 +4.325909362451939 1.352481359196263 4.031488713347035 1.9463583280026824 3.6316721788222193 +1.8695972912388816 3.9116477912660046 2.0316237092132106 2.915853713885948 2.2252714319436566 +2.113115786322874 4.535496484238278 1.2578495893276447 2.5600776641653487 2.7502229372413853 +3.562364231068305 2.9777315251543306 3.2553096165214925 4.278495528092881 1.178433201527549 +1.8943728427927087 4.421520842642675 2.860376919603801 4.752005206209088 3.156696784271644 +4.425355188681789 1.8834396406281932 2.519166520856543 1.8416748290578377 2.6306519431298554 +2.9515674833557517 3.496373406143182 4.818319261022204 2.213277714996229 2.6614009374811722 +1.15493327847254 2.0538438365597895 2.2294394304601965 3.702150275948933 1.725374575522915 +4.5296794153527244 4.314326477206507 3.6333812862530532 3.4726857896508165 0.26870044770421986 +1.2072470188319104 1.68533545505879 4.8243931564128975 4.517889546544156 0.5679022941637344 +3.9597790364668985 1.1094092635486499 1.0282785139378094 2.0322819549532576 3.0220242805008843 +1.7347168808726061 2.758485287241102 2.789429983006395 4.943189838495899 2.3846977303206494 +1.3441487305715936 4.8085036005509085 4.810723303105843 2.5085155836676103 4.159557073606562 +2.2664552484432385 1.1175383994322363 2.7923155495514336 4.771112313561181 2.288153526142164 +3.0983084555251446 4.236664748027275 3.291832402996147 4.423047181109695 1.6048370393599716 +1.0830495240088398 2.3047403031768785 3.152407602507152 2.7930971366532007 1.273433300481966 +1.3434026363904819 3.239977897524495 4.802545520361527 1.8612685966791815 3.499729655692255 +4.744215111296037 3.246548482937262 1.6873800573904965 3.7437196802801016 2.543921770488492 +1.119067573938084 1.6219119959921011 2.9377489648323736 4.255412376574649 1.4103508001327658 +1.7261645052464298 2.0425893097350873 2.3007087382017404 3.6510997541885977 1.3869681153341997 +4.937272033868677 1.2315703939187652 1.625164801466462 1.6241222457137998 3.7057017866053337 +2.0209536782406152 4.490262267029165 3.3594805354899977 4.518031533642771 2.727585988009487 +4.892603528889279 1.7252847608636666 3.9229606585378387 1.4251442600096653 4.033732135261777 +1.2155715209204114 3.5605719133698113 4.071552888895239 2.769184389529877 2.6823852349591815 +2.56012584183729 1.4472510148650213 4.631115583384972 3.6165483719005325 1.505933931860182 +2.357706103342311 3.498179645505736 4.9913953944186815 4.488885347445383 1.2462729426910846 +2.476027457607514 3.89675808035789 3.392947026430542 4.072116553619422 1.5747211655028448 +3.244888092082737 1.0326440833610517 1.7822439711925564 2.448229457161104 2.3103160436714614 +2.5038626534627277 1.22193631651131 3.677297534681951 1.1907873439480903 2.797511047698118 +2.8572047045942255 3.9851568770232206 3.498731246806183 1.2102857032556003 2.551324971281356 +3.899986648634049 2.615008963079939 1.486859914092578 3.9262988613173215 2.7571779104020404 +3.5357398180359763 2.709959652408505 4.862803741660837 2.4735006819038965 2.5279798245452065 +4.505545381577699 4.5792233534835365 2.3974711924610586 1.7076412913542045 0.6937533682838949 +2.1396924995019417 3.0656818470093627 1.2453243081009537 2.483248840126102 1.5459344807225506 +3.346548068363058 2.53052588047661 1.4196075878493342 1.7268667133163005 0.8719520521827506 +1.1723029888183563 1.936258966547257 2.8563324382668625 4.167634914383595 1.5176109250323664 +3.3888842727412642 1.5218761549649185 2.885594549014718 3.8322203920407802 2.093279675181407 +3.9928061134773474 2.4869208104191665 3.4575237990189183 3.8228368049936354 1.5495625635323387 +2.8312153745173436 2.6195000408348093 4.363886359868857 2.901389723725901 1.4777414500668815 +4.296085262515105 3.6985232452457946 3.361073611209098 4.558705534982694 1.3384328856258028 +1.5242327321297116 3.6561019373576067 2.411663679877313 4.89223496557286 3.2707950427405685 +4.70315699968582 4.817116900505983 3.6506742540277783 2.787585741345734 0.8705794850090626 +1.0797556748245678 2.0533853943300047 3.3110497729577615 3.4087698232517285 0.9785213533355781 +1.704348289322891 1.7492181682537842 1.83742468809537 1.8314933857906261 0.045260207492932185 +2.1635746673625937 4.028006957995398 1.92857968777933 1.153023064512582 2.019305782254685 +3.852348374350243 3.4821179397848785 2.4992255746379657 4.974785038073939 2.5030911353136673 +2.6463957768786135 4.5586473700413475 4.203754210914451 2.0186934554227896 2.903652296805388 +4.307453563444161 2.6536053929318557 1.3929269737589403 2.953371834292358 2.2738078049545125 +3.8633366871745882 2.8068597252280854 1.7661741098386567 1.792467922058945 1.0568041141501996 +2.342786768334389 1.6718568656376984 3.2464240677167457 4.278492700872585 1.2309803401666302 +3.0564098984133103 4.3536327213837716 1.8296092312059922 1.5461484511942216 1.3278317160846602 +4.904629812549931 4.587873296562153 4.095484291279831 2.8762176119472107 1.2597404199879876 +2.2273916509569687 3.867818093214298 1.9454751760550444 1.427125776312809 1.720373509639745 +2.932046400161237 4.031336429964989 4.1944874451469865 1.1799768337761898 3.2086933159298767 +1.169467224377076 4.0305922491981026 1.1576789903844324 1.2644404678221366 2.8631162080365864 +1.3008249045954519 4.741864009846194 4.081820228994339 3.353092017604866 3.517356241545591 +1.5451361967640307 1.4166225063440314 1.4393391727910507 4.677408514433681 3.240618587540241 +3.1267532704614225 4.575033957285125 4.949649448818191 1.8060819785897935 3.4611462534404263 +4.7746935369518155 1.060601573933694 2.8761628451295373 4.543006299852653 4.070976076116033 +2.6140128828417835 1.4625528437014759 3.8008808455061005 1.831210718962986 2.2815478581729045 +4.243651837987525 4.865394648829492 2.5625710636174093 3.615003265810835 1.2223656012205892 +2.326054372649876 2.9725346668439374 2.5282866185450783 3.983118547583534 1.5920027363453224 +4.02303239394564 1.5486092441607036 1.8970844714074375 4.839514025914949 3.844562602875765 +3.4957722118907144 2.14235132808422 3.6707461715191445 2.92515868077913 1.5452018622405113 +3.7179489876006766 3.00373383916882 1.6101873208144415 1.5008221378323352 0.7225399791694909 +4.527098385441393 3.6688599813286498 1.3136083374775747 3.1785415353292676 2.0529366748010833 +3.7300299431449124 1.6330011374165179 3.021116635797248 2.502053304372988 2.1603139943267293 +2.2009523738354044 4.661989339097062 2.161482718597537 4.518038441177472 3.4073534917892725 +3.9056794404422384 3.1659321071181763 1.8591605822912247 3.2326739168876015 1.5600528829094606 +4.584046741969849 4.28445047341531 3.039934856206076 4.596621111515969 1.585253929691562 +3.498497621698336 1.0188194676783242 3.8774199630088626 1.5423261631737026 3.406092600260994 +2.6442203442879095 4.871713014161808 1.9830844972088149 3.3507735808833217 2.613866298023746 +3.3177953140353442 2.371754432843636 3.0300441483595937 4.837877400528017 2.04040545395562 +4.881459971983956 1.863733136602252 2.7282393872678385 4.059921496169784 3.2984924574951515 +3.1830920371756046 1.7806272268797199 2.624106436774602 3.9460814700574143 1.927310440157829 +4.105625162115453 4.724139287307679 2.0590638679645745 2.4132846334778852 0.7127636871945288 +2.0235626501653896 2.539848092281195 4.53038167339297 4.806094143201358 0.5852931092611238 +1.7562409546819864 3.522597084799233 2.2608895525939157 4.925437568963806 3.1968469012362 +3.5270771503584126 3.0476654998121573 4.247873877159886 2.2452908018364885 2.0591684011394507 +1.0016827633810759 4.898258131703511 2.3465749586674973 3.0850825300416354 3.9659416327013757 +3.4695328708814404 4.982271532682266 4.945578945485071 2.8058753480369747 2.620440753735768 +2.567966788598963 2.9177880290654343 4.228018252319986 4.275443695569972 0.35302134914047095 +4.9581409865755965 2.1144531998008147 4.929144996305638 4.9484948754192235 2.84375361915792 +2.7418922579762732 3.315503540626833 3.4588456076087 2.181478873240938 1.400248434262071 +3.849114106517899 3.2629651521935967 1.1796680144181182 2.640290610169733 1.5738452795226279 +4.683316691354819 3.8649086452626076 1.543632291467223 3.122674653904549 1.7785293116167986 +4.133406087024268 3.452385415122743 2.7768329327316983 3.2554859835487444 0.8324048886291274 +4.173483869726773 4.675172534293649 3.801134644540261 2.2705974351957656 1.6106631135476255 +3.891324972510846 4.907858333246173 3.88533686117286 2.9214879879824944 1.400837151077239 +3.0913293491102123 4.509099176215436 1.0214888157636324 3.749288566986523 3.0742418196071757 +1.5210827805804357 1.0762827603663196 3.1066348099722276 3.6988621466255363 0.7406620526677126 +2.698680309337371 1.7554583092219587 2.731603964720284 4.457704582274869 1.9670005295942443 +1.4596657742612136 1.6035273585545462 1.8593837195208933 2.03247497675471 0.22507051954036758 +1.6269811937362673 3.9352899505946755 1.7751155401871457 3.5015426856463883 2.882505855252988 +3.2870226478864595 2.326458164765718 3.9094175013420176 2.9970720910150854 1.3247861238621257 +4.386222239223517 2.2042525293025554 4.330811274435952 4.516243081696086 2.189834872805784 +3.0368341729394257 3.8032472255452405 2.78671140700941 1.230582746448245 1.7346254279885467 +2.1050776632236508 3.733802661050209 1.2498713548341933 3.2611369708816538 2.5880368036100054 +2.617437386956486 2.1179405388193615 4.167836118878812 4.384176049879969 0.5443345175941968 +1.7723078976611921 3.067414049739592 1.4327817632062798 3.2165819498735404 2.204369082323891 +1.2396438627171906 2.042711524225689 4.827056648438935 3.7553610812403218 1.3391971690956808 +1.1656693658739248 4.889451289702787 2.094061163892792 3.9958373935237663 4.1813041797774035 +2.7151025056804414 4.222908308750371 3.268842455535962 4.566806439139219 1.9895197517246699 +2.090675543803819 3.9121374534752102 3.0187007248589017 2.4304718398655156 1.9140890025085862 +4.173942119351671 2.6320266891087516 2.957630201059351 2.6493925116426698 1.5724228652618042 +1.223092685404212 1.4654463638411528 2.5343118486965044 2.2948185748669445 0.3407232508378562 +3.5218386833580184 1.3417829807173827 1.6719014908655834 4.223665132577867 3.3562092529788266 +1.6463771704974146 4.6347775926815284 4.2973408955597785 4.246492403151244 2.988832991736141 +1.1773078030444513 3.195857657240018 1.9480451179133498 1.8751120313355831 2.0198670126992777 +3.6317939723917085 3.4425563997631294 3.5346371004628034 3.653428258361213 0.2234327596598173 +2.5384919204181275 4.470040304804503 3.766393091296761 3.3029008425515216 1.9863796781764906 +1.2024323046558862 2.1553761011539088 4.557775143364321 4.07438673625244 1.0685346187252083 +4.029569499191442 4.916150199462072 3.1195005231599153 1.5158300042954145 1.8324258432928457 +4.9411791638736196 1.8409037459654911 2.641056645288345 3.3845172779500974 3.188172106270807 +3.1256340175250004 1.381185367922038 4.680587574343123 3.6455764223506812 2.028385854774757 +4.578036798534404 1.9000037370447447 3.6233733302834743 2.2357650240492366 3.016176037628097 +1.0063571077135904 4.380162346429454 3.3155302008627427 4.757630702202658 3.6690892118823495 +2.663267934175421 4.756255761234482 3.77276408447178 2.1618395186010666 2.641150507097836 +3.9670357653979647 3.84744462231276 2.131452999906243 1.6281715588915167 0.5172951288909315 +3.1315306112247336 2.109023026739098 4.10571727748661 3.516962615627092 1.17989567852076 +4.620715399051186 3.3882468843447033 2.5551979118943686 2.9751778107047366 1.3020605804445389 +2.648120784757157 4.632935455719947 4.16163508650605 3.774364447514008 2.022243265755738 +4.320768505799685 3.4797986715186537 3.963628849350254 3.1268999390103374 1.1863159493024147 +1.0836437177999838 1.2719466839607811 4.395376476002354 1.7914317657074856 2.61074435005375 +1.4262156798711438 2.7972101430934733 1.5868731933286644 4.0315985197793225 2.8029105836568458 +2.9052672484074185 1.9317030441452916 2.3756776830994437 1.6329580599872298 1.2245242743108433 +2.218491226738856 1.433833034011315 4.746506133333392 4.032785371573965 1.0607006199587647 +3.6532932596802223 4.079528009846252 1.6197176822545836 4.160546071250643 2.576331687608839 +3.5857662738242886 3.2317478994773405 1.042030691851052 4.047197373086231 3.0259470899837813 +2.514361731224932 2.9133555344213287 2.1310549713457707 2.219002614834629 0.4085717109448089 +4.706407619380472 3.080972994176345 4.9819906254050625 1.5696951687538148 3.779655805003311 +4.130416639324531 2.559587102473467 4.469734079013352 4.498494233418434 1.5710927981265566 +3.724052489302245 3.534787809649869 2.7097429520173537 4.159836487110139 1.462392689903026 +3.127590563224722 3.036182102752672 1.2420346275312437 3.0999450229535945 1.8601576664531172 +4.226713188162591 2.5920915779153324 4.949386215856254 2.448615019396455 2.9876151669400652 +2.5313644942719016 4.710760590841609 4.587739499987581 1.8972412400489929 3.4624483003325626 +3.220686501594763 3.7516429165792164 4.437322551414882 3.634252001710927 0.9627237518701587 +1.5834602816665768 1.34608873181159 3.0017144294056677 3.7165977562593193 0.7532618559929233 +2.5961367158657933 4.7863072039673105 3.5578445459442136 4.625822268739771 2.436682823704887 +3.567174534878086 4.732031228870058 1.156196223403215 2.051492464791842 1.4691652314775592 +3.8339471614094687 1.2003093454163118 3.9643156472174343 3.3170550796299727 2.712009289840809 +2.2853062986180164 4.933845563853252 3.5018312104403786 1.6022074904425714 3.2593451055497495 +2.5373688040285445 2.427266062453728 3.3087593256884213 2.0774342522479188 1.2362378614916911 +3.9541486878413634 2.288608897315591 2.44422447685952 1.5694683477506133 1.8812817649778653 +3.0544656868869957 4.954029176092417 1.0499719352876116 3.3266293245002374 2.9650481138387494 +1.7131235335651818 2.974920975084176 1.4685473816931323 2.940132784582471 1.9384778516714751 +2.551415091016676 3.5349247820246426 3.3909923192942273 3.430662860180248 0.9843094351476955 +3.907896841726289 4.005422866924688 2.4388421515624654 1.1469227217183997 1.295595283566444 +3.4440862470601226 1.3251189778942405 1.446322583894267 1.2562690921085746 2.127473294200482 +3.4807444025328 2.1923871463587314 1.3385877039712102 1.7094724321315842 1.3406788956043758 +3.6937755025343386 2.2307886403590516 1.443035238157508 1.6402689004996014 1.4762220959118473 +4.33332705905673 4.342878448359826 4.183849795744893 3.3695425641552905 0.8143632460129454 +4.604457993406004 4.092497088332715 4.3143412026866095 3.7183403895590876 0.7856977393197259 +1.1947746047532277 3.149044914637112 2.630660867430723 4.618644527862584 2.787696446573355 +4.069477784004247 2.916770888211449 3.1508052229614725 4.401335188818077 1.7007522991645756 +2.95804492014252 3.503426421992967 4.28776298867524 4.723798341867659 0.6982605615343648 +1.8157389584614307 3.3006995410438376 1.8519986409177678 1.5247406121197442 1.5205938804415362 +2.9123045376510532 1.9659117321607433 4.472459180885249 2.768791485838721 1.948882489384357 +4.391834810294049 1.4729805845728277 1.1656991005038737 3.0877560334608956 3.494855196505112 +2.8081123340973093 4.917480806340583 2.8814508275320616 4.955534221552655 2.9582524025251646 +3.0232597482755867 4.351035240369214 1.4022421599092865 1.2545223485870562 1.3359674023199626 +1.9836867894915025 1.6986024079683575 2.0717951405438297 4.687612253844139 2.6313061917654506 +1.7106273743534128 2.3917832230836193 3.937818934750033 1.6246313545843236 2.4113917291249587 +1.797283350927383 2.039719090663235 2.213688158699809 4.771656430241828 2.5694312145136196 +4.507479554148347 1.918669221162797 4.041646248952979 1.4759574139936302 3.6448179842082395 +3.634839283286216 2.2340291933966125 1.5284437340693753 3.857722097726857 2.7180519868721045 +3.406865784744106 3.1929991865219916 2.878158171312203 2.7260007876274592 0.2624705531005062 +1.9004920849327758 3.5818838119896435 3.9441627621160764 1.6388595924854856 2.853331534141121 +4.853167239292834 3.5668215037610422 3.374076421874336 4.053914576433561 1.4549451081450868 +4.7774150295747555 3.080905496066963 1.953191866389715 2.686609578689769 1.8482548898889115 +4.490448714758187 2.9901996691099817 3.077825322824097 4.133725652155887 1.834576982427102 +1.5334637810211849 4.46993704197455 1.5134686486315982 1.096416363167184 2.965941304393123 +3.284637073745092 3.5789487674107954 3.8647598949311748 2.0988990009961705 1.7902190005017005 +4.783818961155124 4.274568928718253 1.3208770833919048 4.621937720662046 3.340110316512211 +3.9805548021824952 1.606098403864936 1.1706301679359 1.2952754909770268 2.3777257293614045 +3.530953739173789 3.1222804880081356 3.934101191761989 3.6524988232112974 0.49630003041674786 +3.4208590294347285 2.563402650110795 4.698241766696383 1.6086201880292617 3.2063987496580686 +3.034946623987219 4.771341343204605 4.5304037343227215 3.818446000421499 1.8766860248288173 +1.8822034315278784 4.826564025914156 3.6193587453532303 3.199837966318775 2.9740976772487464 +2.667187863972433 1.7265562097079488 3.9887324460628646 1.8362150552021368 2.3490676931417314 +1.206932207302533 2.498787010662066 3.201559650591258 3.9962043612841733 1.5166901625563887 +1.1884690014371717 3.6241855234617963 2.753486557371252 4.952232380544738 3.281340910449048 +1.9980260854898813 1.6970489511067064 2.6351788673277228 4.456848431128245 1.8463659537314625 +1.9902121097434664 2.309915069682206 3.502421605721611 3.831714111359943 0.4589591886684066 +2.8943460357021875 2.4899424610929177 3.1283766330298475 4.164444683345655 1.1121956914329214 +1.7452625634015408 4.324120123579091 4.741283301741989 3.311820080395683 2.9485371655901953 +2.0691882154448087 1.754323099788344 3.9240182930099428 2.1864224590111907 1.7658933499470395 +3.039914069015498 1.183066676232567 1.259887394094386 2.6076731329185083 2.2944299156571453 +2.200723756930228 4.650373971469543 2.3607752529786588 4.9671129206377 3.5768396960796105 +2.542383276840482 3.9056504553837255 1.17294744090837 4.213310202772332 3.3320118733015214 +2.694535104343573 1.144123628001354 4.093436368147092 2.0484729090748757 2.56625238332364 +4.30209073674425 1.4335051506219103 3.4095426754310707 4.039546627574666 2.9369522033266726 +1.9251862178429007 4.102544103579762 1.353365983847005 2.7990831309419852 2.613615394809447 +4.143910118255755 4.02033852310933 2.1604787444084095 2.5916856675668356 0.4485636517895637 +4.584897201739661 1.110687504309709 3.6374693285681365 1.3818657669497862 4.142207195312869 +3.577103392530575 1.343605869073936 3.480827657965144 1.6093972236966616 2.9138913942687124 +2.9293659605185227 1.57671660577622 1.7364093075528833 2.3426474389899075 1.4822904401273802 +1.982070126097315 3.112857554140186 4.151826401443629 3.3922627064443294 1.3622104147967746 +2.1887679194405716 2.2543028767797497 3.8653482321100943 3.445355920671757 0.4250745491096415 +1.9865741466078433 4.413080634502943 4.875765791271747 3.471377915253397 2.803611785198576 +4.233773347745462 3.87401301195957 1.2125842554878594 1.1712297640926694 0.3621293873235541 +1.327887286539192 1.9122164201843788 4.935581157977137 1.624565814159228 3.3621813073396503 +1.9405717395943913 1.1584093628006307 1.0501134867369775 2.0790419658025794 1.292467329840069 +4.002982232391762 1.8284191668259657 3.6156572305352688 2.8153501285069518 2.3171568750690743 +2.525341903141088 4.16328139003611 2.457280842976437 4.514402971439839 2.629562171568439 +1.7186037379188872 1.8092637907316256 2.154310279823122 1.4749876533411883 0.6853455157993824 +2.5332243953489395 2.6098137854463985 1.2702168273589223 4.920994979139307 3.6515814448253106 +3.3427602410112165 3.497139864888307 4.869647316258262 2.791026378764077 2.0843459573827077 +2.01876886255665 4.16576239067304 3.3804158031104827 4.794483063974863 2.5708301048537137 +2.2372310230664576 4.750966331764412 3.078356110554805 2.8945384765135493 2.520447207298603 +3.7758902362399382 1.8539792528603236 4.967812813923299 4.177179329167629 2.078182652042907 +3.7936501755292937 2.4490792661617906 2.7635215595310663 4.515026688434056 2.208085402988488 +1.6862526752604463 1.5360337332032872 4.568451943318124 3.5551174534351873 1.0244083750824586 +3.0274660268227187 3.591151186372291 2.16545365783704 1.2716030846551694 1.0567449106922564 +1.3756695055857806 1.035337330566441 4.11427987748826 4.338619991543846 0.40762050503853176 +3.5395671975416776 3.1819023589967137 3.6230043342952376 1.0173720351775475 2.630065363244179 +1.786589669122563 1.0357276677663236 4.45522807485955 1.9903299897689162 2.576725890537092 +1.9376172261452052 3.396866112725451 1.383901314673913 2.65394323162831 1.934531928867261 +2.2452421689100275 3.034832038742691 1.940187870531728 2.8140730505336244 1.1777637583018548 +4.976662799736959 3.630272493892026 1.7936670468412808 4.1128248664363065 2.681652447253738 +2.0642501485712703 2.3033011796487615 1.8735622637382288 1.3010960669177916 0.6203732279533565 +2.795231537555546 4.145581738954227 3.081063279331495 2.617163931108162 1.4278124077411187 +4.982746740894986 4.389544179465539 1.9525044842008215 1.0155924977854962 1.1089153931545757 +3.02648887956914 1.9656702399570358 2.9825412831321456 3.8498614738786863 1.3702483349470236 +1.8115993308155733 1.0229622027760388 2.292209987137895 2.5715571634155427 0.8366500849320105 +2.03537318758682 2.950683781643166 4.195506187465174 2.5354618340994035 1.8956636670921767 +4.451197400345102 4.081084442345913 1.8453984562252939 1.0630216721206232 0.8655039191042843 +1.60093297153513 1.448594980134502 3.694260314692211 4.068012035449667 0.403605268044332 +1.7106868660421797 4.891252758832707 1.427445698312635 4.717704924181289 4.576221713575097 +2.8023784651399763 4.742505781406935 1.6354800503388245 4.298253629218117 3.2946103162138716 +1.6270812774110022 1.5002146325579266 1.028011947277934 4.538640051946162 3.5129197023078556 +4.309182427629855 1.2981950277832017 4.504358284449448 4.13791967840042 3.033203318941621 +1.6438488515540781 3.738487018439221 1.108622681066965 4.992019910604617 4.412287739093254 +1.2486897786123374 1.4234081774357383 4.5184204314403855 4.9754043885071315 0.4892451899649035 +1.7058216520298877 4.932216389876068 4.457520284136798 3.1754478516332036 3.471790996962116 +1.8117839762423666 4.508036129378986 3.2449577574047015 4.267654536905981 2.883692836641265 +4.459359012862349 4.742448931780791 3.7325764694788113 2.394256522767682 1.3679328133933077 +2.3262472222965638 2.148185339206695 1.1154592026976964 1.2510225781470985 0.22379334881257235 +4.2712057063497255 3.878711694113042 1.4161944975617766 3.7521207805215977 2.3686711779105463 +1.3059044944086287 4.948605432765754 1.4341904251367592 2.384422609657884 3.7645997570535528 +3.662654535314761 2.5495239505403933 1.521155850278181 3.33432369901857 2.127589562501653 +4.449536498105465 2.2602961561595687 2.9800215650420254 3.056447673558623 2.1905739487327 +1.945120027152433 3.3616381676147142 3.371521479413056 1.2858375063484742 2.521230112020158 +2.7420606341533635 2.5252151253390034 3.9730134129832355 4.923984651771692 0.9753810904953046 +3.4754124038533574 2.8812370578652553 2.584484027887723 3.166336744453826 0.8316230669933552 +2.8834971279796133 1.9190793766275736 4.922899451722201 1.450307914055852 3.604024637345708 +1.6444972690731334 3.695414314786223 3.787256983179524 1.6298908563844914 2.9766574094845226 +2.1499537881471418 3.6092106511149042 1.8260923134565017 4.13482859459399 2.731244003738786 +2.190048647627803 4.338644703316332 3.8905595866929956 2.1348281828269773 2.7747176023951776 +4.788159736900046 4.869910688422918 1.7694888987676736 3.3436110662536733 1.5762435777016561 +3.1896462490350777 1.2198682802110397 1.044545569150309 1.3278186637884817 1.9900424348768144 +1.2576497811010405 1.7384265049887166 2.6113159763823273 3.4805405569442405 0.9933265473575146 +3.475103369328026 3.740402726876019 1.333649484644754 4.14416426643732 2.823008517130243 +2.7579761348666385 2.549458418454064 1.6467512582128343 2.5805345090024288 0.9567814784542484 +4.909121674309437 1.3072525018242418 1.4102119394090993 1.9407023875329985 3.6407254292585534 +3.8550081508584677 4.632688765687178 4.234731098361127 4.893165584849556 1.0189814088969635 +1.7536913071382019 3.2324667516206658 1.9597623013976833 3.371367771596104 2.0443597576499135 +3.45670289325869 2.161156596547803 3.4513810045610995 2.2934024026680198 1.7376290309969922 +4.720745819416307 2.2108522532457906 2.8471704545456413 2.5026266679147375 2.53343169128558 +1.9065903503466983 3.2323935138311453 2.330248159208628 3.7406287133236416 1.9356981520193532 +3.9433839689543158 3.8866530728404576 2.609203982144309 3.066960311588115 0.46125833512224784 +2.7763692201441925 2.6741326937523753 4.002376116142096 3.0803248817348434 0.9277018843360203 +1.129857388643249 3.008763649608791 4.197704931494486 2.734842425099082 2.3812298188358376 +4.271959453804556 1.7497912616366338 3.5514732444975063 3.431796162349553 2.525005939314808 +4.516543048971783 4.169245345264768 4.715856885039814 3.4918276939421697 1.2723455331234985 +3.566289520188208 4.45851091319992 1.50105984435482 4.2332570716094775 2.8741887034023703 +4.602426482039077 3.769244166820869 4.944578904649811 3.5917640402724924 1.5888048425381247 +4.504166212617603 1.9069193179127861 1.258516791166365 4.338965387972889 4.029249928909983 +1.2638854409274347 1.8779124878780284 1.064636638550799 4.364977383433641 3.3569745674819607 +1.0110682848864614 3.0773276943500245 2.2582737340733052 2.399366895858963 2.0710710339096017 +1.9134326552995784 3.277711152045048 1.720791890336638 1.1847139074587365 1.4658224382265808 +1.4991961346566902 1.2777251901890843 1.922642829017823 2.8818277451587946 0.9844211916632718 +4.80217341264313 3.0551400254957874 1.3003518677088155 3.1828274747253387 2.568236762220287 +3.2704540741968575 2.6622025868107113 1.8618630078615324 4.8778297401709505 3.0766906250555333 +3.4537306038950284 2.4106628131077157 4.407572895863698 3.3530239876513455 1.4832612096289006 +3.4224363003359803 4.695529970781781 4.415532129990394 2.5117610996555024 2.2902208691895933 +1.191018184257771 4.202882575056208 2.432073437929604 4.3888479385159735 3.5916978651752816 +1.4774893134080838 3.790915976760314 1.1753806309738652 2.788462449884888 2.820279397721142 +2.4909453495918927 2.23054685931514 1.6359277413500695 3.656133235676759 2.0369186564627846 +2.2286908396077414 2.128746900169851 2.4369566513746337 3.5533657804039334 1.120873826266955 +3.183705061829314 3.426079096421862 4.959248511029003 1.9373466195999485 3.031606210256729 +4.27024672336953 2.986639061175379 2.5450721332851862 4.5056650800749365 2.343410619896831 +2.245896022326394 3.225599870977464 2.6543680178088325 2.1094579421255535 1.1210471094663572 +1.9262444485594639 2.2443273566666115 3.464997350502254 1.6702812582462712 1.8226855428823938 +2.626996601039374 3.9582042689501553 2.387916390659346 2.850539331162104 1.4093026077403958 +1.9139143269153926 1.2478709168111504 2.4733104720574195 2.1032161352053893 0.7619603941893778 +4.25211624647121 4.3094120877391155 2.3467820403044835 2.339396004518556 0.057769948513289045 +4.635818877188853 3.53195423107497 1.0993464479694728 2.7880178135254616 2.017455857705158 +3.4831298805612065 3.49596907159197 1.3371051189771777 3.5770408376829734 2.2399725151796783 +4.015316234328047 3.4306305294254202 4.9283330226182205 3.2189544920940785 1.8066079635976247 +4.362941123398327 4.944669121484071 3.7438880762362223 3.125032053475916 0.849346949522721 +1.5793661124129432 3.6024213685086792 3.6616680079562203 1.2290696782466095 3.163903791666645 +1.2397522322173073 2.0619852843534536 1.279459250965267 3.5844532925489276 2.447256570889391 +4.270484446659526 4.279888923511296 4.046554485998991 4.110341345710346 0.0644764116300802 +1.3521522320410901 1.879750199242415 3.3206523309751854 1.4265351124625818 1.966224720743001 +1.2562158268604868 3.305044705298629 3.43065247110956 4.816493217505609 2.473510531106277 +2.21033332198609 1.1112269155003327 4.347879201034041 2.6629862725866813 2.0116906007410664 +1.913173029860043 1.0537734503498428 1.1570089572684794 1.9596724133562815 1.1759405856594642 +1.7008566743364737 1.2515697267061112 1.4856678634660234 4.873651827588377 3.417644525467976 +2.428482413721292 2.2432156205449627 4.395096041746358 4.745279640160835 0.3961721055959798 +1.987699532709772 3.5891706949477573 3.4651042281391566 2.0724147375401962 2.1223321843445424 +1.5438011599726948 2.047900152571244 3.3467953980128007 1.1715233901577906 2.2329182928393143 +4.832983973518546 2.6989603353084624 3.768869942585508 1.9849107537614126 2.781468546618733 +1.2446009940871585 1.7313715766508144 2.4512954729676717 3.3992951247790395 1.0656683066901425 +4.653359444775383 1.6804736322411764 1.7989197111407007 2.030536480052001 2.981894763737996 +2.3047548476692885 4.735746564692784 2.2472953550153543 2.8722188242397437 2.5100298943686483 +1.2176567603357045 3.6534533752425182 3.0388713988847154 4.8126244649656975 3.0131885252375397 +2.516220352998694 3.457495424821161 2.5871737926937284 2.610895360220691 0.9415739342188307 +1.5390321197444075 1.2312415600486815 1.6003068671381402 3.2313148946045827 1.6597958351248456 +3.9769642642157703 1.340308457677899 1.3154656257671826 3.397786633554386 3.3597640723154636 +4.399344341638727 4.857362440699317 4.78208964810714 2.159639234154742 2.66214701936354 +4.704215756167617 4.078281004924074 1.6715690880544445 3.6380563820414222 2.0637021563749314 +2.6536114317733976 2.549423394056582 1.4786720395485764 4.519063070209315 3.042175663324777 +3.9247011908058154 2.5157980344982183 2.2350931449076974 3.3783202199397926 1.814380403592353 +2.2228724212008353 2.9523261234101223 1.9749171346706933 4.765222733636797 2.884078369130843 +3.1004817039373567 1.905367338215255 2.606987227690601 3.192311128300992 1.330752574966926 +1.1439416230334207 1.0696102168058976 1.8898954657976113 2.387463228809254 0.5030892930088767 +2.2404404314148176 2.063987157527697 3.7835488162039175 1.1151959165876444 2.674180800685708 +4.643215045982199 3.895966827382663 2.3905302291368415 4.0611906276845176 1.8301601207204958 +2.5966396445599425 3.576455916340113 2.2657369022372924 2.168024100106127 0.9846764535346202 +4.002266937619905 4.484634358947966 3.3523600125100392 2.483307942597241 0.9939465928199576 +1.0310372327516277 1.5535348350728575 1.5120345650470015 2.9597642591232227 1.539131252213879 +2.3210852407277422 2.930670002294843 2.174326278849344 2.653333624631529 0.7752687397593903 +2.656748875129699 1.8560380595797228 3.418946604528777 3.7556364129418465 0.8686183495804917 +3.7365841755764535 4.047011742398024 4.7619246473437125 1.1751949567893947 3.600138212256112 +2.1884270761684337 4.929585927948466 3.927344272278031 1.0999060904030888 3.938065327418567 +3.3057413870319214 1.8460958627518798 3.3073005035802288 1.6373421521843659 2.2179553539121444 +4.012191836244815 2.571382298738332 2.8697245088476397 4.1657671564430085 1.9379521840736058 +2.066848669196755 2.781132627415537 4.3282193137531175 1.0248304280341816 3.3797307146073168 +4.85349052640273 4.553050932382639 2.397127793107776 1.2770224246057333 1.1596982306626382 +1.6303701916130797 3.0301629802059025 4.488452241049339 3.7038370829742164 1.604693365499378 +1.1277902767290375 2.624688872730624 1.6132709238277525 4.092987761447296 2.8964980582567965 +2.417603601757489 3.9586373674851068 4.076020675535309 4.562851357519037 1.6161030845937348 +1.3021837635271072 1.5247904366499108 1.095916156025012 1.1597487049711503 0.23157790314225551 +4.940223325881279 2.4060468272657336 3.7759341211934188 2.0446792812044277 3.0690868099681787 +2.6278004866026348 1.4628068072156717 1.5036186592105256 1.2798017980009209 1.1862985544850393 +3.67337360320651 3.4926759970222667 2.2742191531113543 2.430465106291297 0.23888160826196872 +2.2080364685137233 4.360573221964813 2.902983815552953 2.474484882497976 2.194772382409395 +2.2199811299699834 1.8574016065713028 2.226929725319021 1.128918750193642 1.156326948697383 +1.9699581310766323 3.6081691922776384 3.156458682300489 1.3531125400023343 2.4363482489133124 +1.705943205210838 1.0254836245656511 3.6299754535026025 2.4725563952968996 1.3426258291830975 +1.2612265683814194 2.9689646465903072 1.9090765690813942 4.2056889069360395 2.861956948339853 +1.4699224713275187 4.6328053351286815 2.034425967763853 2.2261641190414805 3.1686892445903254 +2.098226382272568 4.855304018749836 4.3088843420784535 3.2822404584847993 2.9420188234073787 +1.7785213457232403 4.654635824865055 4.166286213036221 1.8569056072741787 3.688532672947205 +1.2392222639260657 1.627898080194675 4.845044095815282 2.6003964173782337 2.2780500632042524 +4.238962167444068 3.8074183887597814 4.702012796368104 1.106961392604716 3.620859653262222 +3.643910892935968 1.1768379192880416 3.3409847252196636 3.4201547516577517 2.468342956396098 +3.5713845781747082 3.4128666076860146 3.407020741400743 4.20252369379747 0.811142955489206 +3.8389376630819494 3.89261404225105 4.942867964195164 4.527801016388228 0.41852326678748836 +2.784489423279851 4.584250705768728 1.834751519838806 4.759944898513883 3.4345155373925036 +1.2052700788219761 2.394997011060628 3.7504070084194794 4.273746154916521 1.29974383458828 +1.6465862100452902 1.9351257566384534 3.4503308821339447 2.7900336552022167 0.7205882998230808 +3.4333964143749465 1.6904038388438138 3.9457681839154155 1.1296833466268033 3.3118509823304976 +1.1544402543098373 1.1938275465342905 3.770606925133344 1.2223882519883897 2.54852305560562 +1.9435075773610122 4.769483827677572 2.379088088572065 3.877027916225417 3.1984317242397715 +1.513456063745628 3.70303827064865 3.252875732744749 3.5809315760158733 2.2140214265202216 +2.7788789950707424 4.534117645287429 1.2803601976073717 4.318045043989784 3.5083317894913866 +1.151850681375052 3.0650938025081618 2.5565296837783578 2.0648096087229666 1.975420935592119 +1.1771978919506614 1.9563265345244623 3.61431739191976 3.029126014568334 0.9744179748985302 +1.3051497763194355 3.006443313514953 4.793179657549507 2.226755351485375 3.079112440048268 +4.284694676093775 3.3455735144373744 4.973308107285391 1.2747647853694524 3.8159102793907316 +3.417935742104542 2.610108471978807 3.8017965834711656 4.833709498263865 1.3105072155752373 +3.824979270404156 2.659379902246649 4.134672343933822 2.3175631770170266 2.158820884543743 +4.968208090324559 3.0071904549560027 4.051777170387501 3.2849397068743422 2.1056186410824207 +4.244293496891682 1.3772398588003871 1.4010544812871113 3.883760039384894 3.792601145902658 +4.9706135209059745 1.6756483049034991 4.657198152112549 2.8634593639122246 3.751572285717098 +1.8762297792664913 2.4157146658556927 1.6135023303266807 1.8669815033538004 0.5960668033171082 +2.5758377454656394 2.587145251642478 2.1324211054551387 3.5776492298578 1.4452723588515672 +3.4980941652070885 1.561178693151041 3.5555732899703796 3.8422376067248334 1.9580137835036808 +4.617431683666771 3.3444348775735797 3.8659720040332073 4.8848882664110675 1.63055549370806 +1.2158571519847636 3.05022217793852 3.187985112218438 2.741061487300308 1.8880243046508398 +4.004062137938208 1.9374449319112634 1.0032544944257684 2.21007163100672 2.393180786608496 +3.009442254599018 1.6024591048920889 4.885502794827137 2.017559790022789 3.194479403966384 +4.295645791015723 2.374188953023701 4.7979666202297615 4.250046586129786 1.9980522375639773 +3.4401773966121336 4.922017958295687 1.9810936843681035 4.701813903675495 3.0980913417778195 +1.431130903966623 4.775420209777974 1.6838078105587813 3.3486608350288143 3.7357738895777923 +1.7882916308478651 2.878241621488071 2.286179212377107 2.5829490543223166 1.1296297274703642 +2.0663951261194153 3.8412139777657197 1.6587234886333446 4.907772059027408 3.7022018541590644 +3.653693452477124 4.770652988995365 4.485038877498301 3.1923597561069963 1.7083962997794273 +4.854889211631067 1.485211310454643 1.0784008569064292 1.436481105779547 3.388650265564416 +3.9219185770296723 3.2690841390888736 4.586857233435284 1.0763491963528309 3.5706945377309967 +2.407047036439634 4.115770832313088 3.665713894700708 1.9911620656227718 2.3924591613761033 +3.8777697130846076 4.657075387267188 2.863951981689085 2.587281418414506 0.8269606607305082 +3.0772569459475854 2.373101254734287 1.602718612553378 2.6190573924008707 1.2364383336381835 +2.902869604498192 3.394729097861684 3.9041575899901746 4.92372742835137 1.1320107846251577 +2.3773310593910835 1.2095289800112936 2.3503692393099747 1.11597715081902 1.6992602875171368 +4.302703206569239 3.710366687483502 2.788175848485906 4.498627573784713 1.8101126087678285 +2.750469670703766 1.2453875624245323 4.042405915565798 2.5650401836226133 2.1090001561361453 +1.6779518328249319 1.687720744410031 2.1906029479164606 2.7729337317545437 0.5824127174427373 +4.250580015874176 4.038943807345032 4.746324482101578 3.041889953931798 1.7175234920017635 +3.3493001820566923 4.930809377661048 4.721305090526641 3.576688406768637 1.9522598926675487 +3.590945068560782 4.851026158751246 2.3184445249002232 2.559911028829496 1.2830083500801597 +1.8844899281477612 4.693926865784141 4.052379553761156 4.335456992914926 2.8236622926818877 +2.938093500201365 3.1787054715488443 1.8816630295494416 2.6766863394732097 0.8306360117872713 +1.6918380323824969 4.872177533500364 1.51727872014308 3.8837035087482388 3.9641550956661136 +1.9013676932156076 4.562069968174169 1.4503066991366924 1.5501640870859497 2.6625754625733546 +1.0009334379861747 3.06285112862449 4.53790054324454 4.829264894160417 2.082401917966816 +1.9355760557306847 2.0328326014950013 2.4842708163644707 3.491779158139165 1.0121916293072182 +3.8297807005618143 3.774948316868681 1.9998923782930311 4.366719790291756 2.367462478792442 +2.758753692304459 1.2635197852472606 2.150872862705676 1.166460869158274 1.7901931208262156 +3.992512122135699 2.0185857223004877 2.942755770222435 4.374902602865633 2.438735324346687 +4.040402749962009 4.279970192585701 4.561979823375028 3.682181799799106 0.91183173988042 +1.3993053016174142 2.8721379098822024 2.4394198457018894 1.5472870103602863 1.7219572839831734 +1.8096434140665054 4.92059413048623 1.3494564548320875 2.991570511095475 3.5177482760666936 +4.860511929953375 4.731875321516531 2.3720517116539512 2.1604143046016633 0.2476646302844833 +4.294519917451472 2.6787916681702346 3.4709577312608144 1.7776772291772076 2.34046504657983 +1.9966675055883298 3.8311052664977594 1.0490395325382904 2.0503064714994346 2.089903677614598 +3.0064386739213202 2.468072593693508 3.8569097116675617 3.461796017557454 0.6677970257594706 +2.568357422638536 2.882854692537839 1.5478549807935362 2.9694379497668555 1.4559555867021192 +4.272370580386047 2.037693183656935 1.2296295866963916 1.4321221777289637 2.243832952087808 +4.460478478266868 2.892843772774499 2.0213395318009537 1.004515725851887 1.8685313008373425 +2.968352044373649 3.6649197453071287 4.8930336182193415 1.3077888353559746 3.6522851360528716 +4.187519197819572 3.244760573801132 1.9772117659877373 3.891712208143203 2.1340350901928997 +2.20932180640647 1.4517631767031967 2.503891120820244 3.6332335668639355 1.3598931714932059 +2.385098787672376 4.12806137598937 4.446231450990361 4.35047110124481 1.7455911975190714 +2.6055693765308154 2.390588103817688 2.611251175970177 4.171837239322143 1.5753240329359992 +4.767526923829511 2.6756654752726763 1.2039963827214053 3.300525404381998 2.9616411427827343 +2.2621330505603834 3.0271285966258543 1.1596767310218516 4.517347433865126 3.443714670850658 +3.809003014217711 1.2946514275172878 3.332825511087502 4.68587726352344 2.855295597011437 +4.796730860842658 1.304749303272855 4.2021259247381435 2.324562532439395 3.964742045897565 +1.4331761887460912 1.3224721424348491 1.5762111190663197 2.8098067550697388 1.2385530182581452 +2.157557641986598 4.310779145275529 3.6257577727464327 2.9022224778151737 2.2715338793945175 +1.0922136720847715 4.307942400044842 4.952272106996661 1.7188336036077132 4.560267076282468 +1.2386287186713991 1.80742969178069 2.394155617646634 2.57713479556741 0.597508097487088 +4.692165461459528 2.8707571849309685 2.934466434079884 4.15497188629965 2.1925240406218838 +3.4840793816426725 4.258759850711788 1.7544903611530565 2.5603401463474276 1.1178209630593614 +1.4807393893165304 2.314002730723839 2.774857166801301 1.2527105440691835 1.7352977085295953 +3.3081024670493586 1.1137531676360144 2.812668259612983 2.2726521215472166 2.259819965662597 +4.474433033931001 4.8415894782152735 3.225267118864646 1.6066486728306 1.659737789056193 +4.552845475226357 2.5918048848564457 3.8969059530609838 4.451251686076714 2.0378860097638234 +4.977732170884533 4.702993594859601 1.1379416145962766 2.071492084728227 0.973138101936099 +3.8054135388927626 3.4663707938584727 4.274265502247895 1.251413028123737 3.0418065459984347 +3.0963390005105023 2.0935493179115228 2.492705974887676 1.8004444841099234 1.218529080137523 +1.4353174422592723 3.4025990913103685 3.9111863622507848 3.1582179161181685 2.1064564005847752 +4.201084489208423 1.7205443816837698 2.7687630372561762 4.703430469870677 3.1457935882472645 +1.7371867771771359 4.863893306435925 2.7364942498109435 3.5834910744382427 3.239397681828872 +3.599336466410332 3.505584212554528 1.8118346700639267 1.3186342932410304 0.502031967907712 +3.7137636363013944 3.144630907510548 1.9347898356362112 2.190847228040867 0.6240812857200472 +2.758977764199631 3.070423376661069 3.94684068398239 3.3171941428607465 0.7024621956147746 +2.913199623110344 3.43145260601041 3.459444761396366 1.0469532278189 2.4675294433639023 +2.4646704327531017 3.0136921417818527 2.5078851813078535 3.9130220463241043 1.508586903831711 +3.681616765314943 2.178409002191021 2.749512419014406 3.86918412802822 1.8743794479992413 +4.2552121497470115 2.3168041266985533 1.9402549633036719 4.279631499478038 3.038109320255248 +4.275132296467241 2.7203924710213676 4.808790908645286 1.2179138522893402 3.913005744781243 +3.516873235856302 3.2903799895546353 3.000117392077536 2.283589778250661 0.7514725623711774 +3.235945050963496 3.3924508060860363 1.8943202964273733 3.5337134456150707 1.646846668330125 +4.489375314935279 1.6258042216828676 2.3315984481896432 3.9266153971872426 3.2778222150843415 +2.270120757705048 4.8880966271950985 1.4499741259861643 3.8320755556170796 3.53952042998509 +2.93753053172735 4.784650358066374 1.858892542627168 2.5701008998672195 1.979310228403521 +3.141615037848808 3.7867853191307614 2.1548183355721604 4.4269168267376635 2.3619221505811727 +2.6053394230606033 1.6286732440936231 2.628165684805099 4.29953887713351 1.9358112442002253 +3.59291904836743 3.839098473184468 2.3398161226021914 2.0655474470759194 0.3685479827351972 +1.8670741229929444 3.913478264504121 3.0132884055096807 4.3507304822575446 2.4446924589914647 +1.5596160902922054 3.879827134529657 3.701299771718277 4.978326810559329 2.648429222715342 +2.300581813696058 1.367338297227886 1.810547657219161 2.1560551208334555 0.9951476616276913 +4.5486931813144205 4.63681868333993 1.6268726041716834 4.8151897840689735 3.189534847549946 +3.0574324794736474 1.0175620029644215 3.9720601391465586 2.160579922515235 2.7281004629926375 +3.065704256426056 2.9802166488318287 3.942532627842891 1.5521307332935366 2.3919300467441196 +3.700956164002731 3.41951137042182 1.0015530410693048 4.356889184636133 3.3671192150204177 +1.4225711241941972 3.9495697506531404 4.141770487439745 3.411433594037639 2.6304208857119473 +3.812192568511 4.873213026062861 1.5209143728214305 2.540962510781357 1.4718228884954445 +2.820597558961863 2.092813205551528 1.8743777596861717 1.591354485538806 0.7808791447964238 +1.3354108277049006 1.794897080588929 2.409444031406018 1.8879629452356563 0.6950324739340065 +3.281024941819275 3.6654454186909717 4.763306470217852 4.8516885157254155 0.3944496026190973 +3.792427101113866 2.500585592884089 4.856469346100148 3.6029474294618606 1.8000476876677216 +1.881008175906406 1.9704653078093175 1.9647978541226494 1.11588011177207 0.8536181299187006 +1.164978777657331 1.0872393414194224 3.772044173894851 2.441239239304002 1.3330735890707395 +3.2005801232139515 2.5035781300759647 3.6674617544956614 2.009253709008891 1.7987400313984736 +2.7987988270352964 4.333093043910901 1.712528954807265 1.9049516762334453 1.546313437715324 +3.2784815895434254 4.752737158974206 2.592108684594404 3.7662782613022547 1.8847025438683869 +3.0669492875587343 1.8985134066054723 2.9996905685687367 3.7467902936333255 1.3868671194785063 +2.9905279926877655 1.3319623531929379 1.0262839839831788 2.8454497732856714 2.461748189698014 +3.2799776945716888 3.312016233091195 3.5154339526935052 3.6640932065264877 0.15207248830950656 +2.423874781963612 4.355533919225366 1.9918835138790993 4.298799019042474 3.0088479806281363 +1.6645312234585186 4.473678027091493 1.8162094571093217 1.5927422008954184 2.8180211814252085 +2.612424686394192 3.0662995369090225 2.1790736302287512 4.055647779477793 1.9306819825024588 +2.2335027696958307 4.462150460003657 4.504367195318254 2.9008043310643687 2.745593631098479 +1.5749823868091615 4.578588489316354 4.634002171010518 1.028906157007282 4.692373268315349 +1.064164222949855 4.9225463836718255 3.0611113661650022 1.207517526909971 4.280528357469642 +1.9316966828493065 4.758746750010069 1.4840938559238017 4.115515128032063 3.862200149336843 +3.288632818578844 1.8235404388766132 1.686817189454774 3.1258314424555116 2.0535962849111353 +2.0151391819602487 1.2371427358563718 2.234172302611434 2.9773728630689287 1.0759300828653302 +1.0806606522520683 4.358539658667974 3.137120164884017 2.9783926859056544 3.281719852955909 +4.353729696416819 1.6050093071458078 3.324165219043148 2.1710932599646937 2.980778207315533 +2.0181693303060175 4.441395736504357 3.589674290260377 3.33513829729846 2.4365579794886942 +4.662703100899471 4.899644678101655 2.880457147280605 1.6530257452432586 1.2500916597251677 +3.23275233331072 3.0053026397554885 2.6884817494090205 2.6587458056440214 0.2293852424415396 +3.9569292692857307 4.2196781076574705 2.481040917113191 4.942180134514631 2.475124885636495 +3.636714458133955 4.657020428417109 2.8659920720293703 4.892831555587536 2.2691634064354598 +4.675313973070308 3.6335139008547337 2.6302804053774755 1.7239527234523488 1.3808610565484674 +1.2906061070490917 2.4986596266803627 3.0525551944752976 4.029451588322852 1.5536150973152447 +4.526561010063555 4.581013963766395 2.2483548318500928 1.149310583729139 1.1003923770613446 +3.897803413090583 2.4399096017044104 4.660315743239294 1.7102074835501746 3.290682772490242 +2.5698639877136618 4.592983193556567 2.3475892517421 3.521985585642894 2.3392772537965763 +3.5919738730577055 1.1708271810342334 4.605735520944318 4.667419814934481 2.4219323393565864 +4.5044173836925285 4.26526606851311 1.9797133843133614 2.770531803450247 0.8261883100106222 +4.802488830779375 1.9528920716832068 2.29322723698254 3.1691840466331733 2.9811913762495528 +2.8062376470730763 1.4226598299542497 2.4026715821538844 4.124601093585895 2.2089202833881942 +4.0639214457919905 2.4986749905823675 2.7947787571437175 2.021649414484894 1.7457735952941764 +2.0972386404735244 1.3195921032270381 2.3707536216755885 2.2410273792312 0.7883926907767416 +1.3995368051001669 1.5595776174981317 2.1827574945469093 2.2715310400047257 0.18301312522918017 +3.0560966903181974 3.6938530668308633 3.5481881780997253 3.221872896259529 0.7163901583250651 +3.7721952778463184 1.6499115966849853 1.660284344376913 1.6207600338912824 2.122651689383603 +3.869588599088699 3.2508322453178495 4.753964109997318 1.0581546818131793 3.7472478907575044 +4.417418995898055 1.4179728084699557 4.314784689284605 1.6530831600817346 4.010153670601397 +2.6519589084146244 4.105132370448123 2.2700864950575403 1.6866668108269005 1.5659155911817864 +3.1213952848822064 3.9666991809021956 4.08416107553057 1.297060584349687 2.9124676521065935 +3.4685869451747466 4.472237292225154 3.9383107791246204 4.360215522665175 1.0887229361763373 +1.1360782655547665 3.9746481190301486 4.233315557070382 4.613416955844869 2.863905704873953 +2.009651455392665 1.724713966543951 4.278007621629982 4.267150783297101 0.2851442503190226 +3.436644376565249 4.707052017878395 2.1153336031673398 4.815902268672557 2.98446087128236 +3.13102432069743 1.0877940917699491 2.397925652010166 4.101696645107197 2.6603806805271097 +3.241538096071841 3.657069905688518 1.231966285181533 3.953804009234607 2.753373799701328 +4.424826951695293 1.7480572795001783 4.613880966097142 2.9148916143297416 3.1704354110125865 +1.1294742381328433 2.3820849795361667 4.4182089219902565 4.71996436008697 1.288444804366847 +2.677086833361704 1.8762395020415137 4.754692842558272 2.766862129026005 2.1430882841695706 +2.8737714112450203 4.058158347076257 4.75081690489308 1.2013948683055862 3.741813625446973 +1.6360843943544272 3.2980551575171084 1.4917900463549976 3.538200533337441 2.6362743974858285 +3.3993741655915333 4.874969705950691 4.406061702816148 4.368802212433237 1.4760658753427736 +2.4996990090088986 2.741765893048695 1.103661236214263 3.6663389033056197 2.5740849251253413 +2.8580097963653777 1.1428144904550739 2.436847573094414 1.870274353395906 1.8063499524445075 +2.9233160397605595 4.784807917179513 3.549742139983787 1.1627953769882997 3.0269897355411324 +2.8544054991610035 3.1445133397304192 2.6007584546614746 4.524676264415943 1.9456675712593556 +4.471904794587942 3.6109890639690856 2.8324530564391175 2.4190071161372875 0.9550463029503148 +1.415043769098248 1.4685090923202622 2.6964377532513626 4.826577063980042 2.1308101801659594 +2.4717582183963795 2.3586174930609123 1.160358747105899 1.7340976811565807 0.5847881566644867 +3.8635854656637174 2.204188440618019 1.088857116743962 4.011505000198769 3.3608732700584496 +1.8472026156895223 1.742364439596106 1.5365877787190603 4.214718547462812 2.6801819821904997 +4.468084514187108 3.6556717817333295 2.3310645350928514 1.1309552268914693 1.4492331763676316 +4.558945345100442 4.473000673754997 4.569476453377846 2.8533729753465584 1.7182542401646386 +1.4188381377420507 3.4246416121294203 3.2857485287618884 1.6571456455388365 2.5837172695763133 +1.080341371470701 1.4240972227881792 1.4389483332435202 2.0543541712462328 0.7049059729941469 +4.446473162193122 3.5254437807615973 4.082577024403064 2.9175124265696293 1.4851500390818837 +3.313729332299663 1.5051261669573432 3.709241777386636 2.5181441423245685 2.1655851370788235 +2.9645649984154656 2.020125856914121 2.6174350943169657 1.0779931171502857 1.806058385839908 +4.741740029090725 3.69551356072127 4.179318940780282 3.869986904101342 1.0909977690319823 +4.425273890798655 1.7931830002750373 2.965096154954955 3.646686404259162 2.7189092893886664 +3.279211785909184 3.3228003082302844 4.043690907906845 4.735124063254748 0.6928057213912823 +4.71546312565374 1.5852004484168116 2.0399833017197846 2.8047731764670396 3.222335795819303 +1.3875501680400917 1.7689898600836615 4.896526635108945 2.0424012132144056 2.8795013739484436 +2.899994523441102 1.699151320173193 2.5886131114008504 1.8200836055541294 1.425714557754019 +1.6847000982844915 1.2639368551015275 1.4416524696840196 4.862320081548683 3.4464486965097483 +4.434242998276259 1.2662313312040498 1.7240390324967372 1.1032351984635143 3.2282650639400705 +2.645327873215119 2.9963821375779123 1.1063354824558833 3.4146196465195633 2.3348265200212337 +3.171240957480015 1.8108751789693414 1.5972907820818008 1.5959085982739731 1.3603664806863736 +3.9422350643438038 1.4488785179509698 2.698908855192763 3.3712378669274394 2.582412276817961 +2.8737829744036616 4.594214488501944 4.471049183627592 2.0674697157883664 2.9558550121615914 +1.3800182160246441 1.0342932552872859 3.2217542620119213 2.023889462285769 1.2467581268633556 +2.104891468924403 4.2514313849737855 2.7829227354017636 2.630508366992321 2.1519441793157505 +3.0493912510584322 3.9385511014896166 4.630453317246969 4.030483820822137 1.072645624733105 +1.1946071463397718 4.895303728155783 4.582279079858009 1.0325940449410331 5.1279059115567085 +1.2935448210649847 1.31769945553825 3.616999560764671 2.757300346329615 0.8600384791779896 +1.5576446304348512 4.121565612108002 3.421089722362172 3.820464635622675 2.5948393248148616 +1.069471280401582 4.596984140814824 2.533043548802466 4.377754345133933 3.9807417527996822 +2.9718758531400997 2.207227344318099 2.934853616427626 1.1729450715843575 1.9206793231654873 +3.439392070274488 4.363770732367139 4.84718829790276 4.053582267071845 1.2183129495755183 +1.9338506240477598 4.624716438930078 2.391931820469557 1.246293449714274 2.924593323908318 +3.043795670764528 2.2565228363294305 4.314629277040192 1.4309006118774423 2.989262372245167 +2.3135689989509527 2.7482288963659407 2.1170747673379924 3.5061441745424355 1.4554872189243404 +2.0876952875579455 2.4000249465149195 2.3837388426752955 3.9781241444978552 1.6246889876317852 +3.1976933790473008 1.5115398715006108 2.506821035932183 1.8486245060630822 1.810065281403887 +2.7476749791024635 3.342431633282385 3.163105772766259 3.204190502404318 0.5961739953241229 +4.727925444628026 2.6086438171612807 1.795604487354534 4.319248348073113 3.2954715826814036 +3.0189236888665607 3.522835370111685 2.799125488795523 2.922708575718628 0.5188446413607175 +2.359225151557923 1.5310626383615835 4.756087267583284 3.868586999074569 1.2138821503204993 +3.774812178602726 2.725548645063515 3.278174741214764 1.7564184042167832 1.8484307701422589 +1.8106111865285257 2.5147886981122287 4.872465941362429 1.5053153007765152 3.4399955529358386 +3.008677619857397 1.8823403813472135 1.7879417456331415 4.8545757019704245 3.2669373114609352 +4.836982555058704 2.6349179902023354 3.649540582744556 3.7839783997027756 2.2061645166271164 +1.376589082773858 2.2210900500314894 1.0252009019657367 2.6915479416112142 1.8681258898249662 +2.1124325810949833 1.7151432593793374 2.87725509579767 1.1605791715044393 1.7620485334397846 +3.5790003749605472 1.8672918897143589 4.044636761958932 2.957138413789745 2.0279542883740036 +3.1211939045251555 2.5989959652859085 3.577766726943608 2.0382587554920266 1.6256615520792388 +4.904127618544372 2.3315988029141326 4.602575021046403 2.6503852317249366 3.2293884066149294 +1.6114615152960323 1.7374453627322368 1.077788237909456 4.52025965867802 3.4447759597139496 +2.3992859095737917 2.932738799106167 4.951286031647044 3.288525353258927 1.746237400511211 +4.760340729835504 1.039917345362161 2.407392358496516 4.936093658557544 4.4984308847270755 +2.679541885069709 1.108954590545355 1.5771457109282885 4.826451542128976 3.608979472703623 +1.34692823088665 1.2257906893049326 2.707572373189259 3.4494397908947425 0.7516924699858745 +1.513440187456219 1.4573118282414486 1.884563869155547 2.497058162075556 0.6150606893370151 +2.106286619116157 2.2840758750851853 4.920712206868609 1.5448444460359512 3.38054613312218 +4.916774584058865 1.0399511887299315 1.6041997230698617 1.0894798429921404 3.910843412042597 +1.2077464353603151 4.070207514657613 3.5615929450615202 1.7639260511400616 3.3801316086793247 +3.930635267665137 4.7367486930816876 3.6528310963683874 3.2870717812499044 0.8852111224068225 +4.1781191064549885 2.9860774122652756 1.0127689782950755 2.52379446914893 1.924619815625105 +1.233291132699549 3.2000789653154715 2.7915909566341486 3.7572757614695105 2.1910731436480955 +3.60920147587116 3.1570290276016992 3.3659847790863164 2.418816490189766 1.0495654769785527 +4.05341537480029 1.638788728064112 3.5394155977000135 1.6899361845456795 3.041544992731506 +3.890680702702736 4.512063887359027 1.353192928116861 4.276591314523758 2.9887079462235917 +1.6590797474212096 4.836424092149198 1.347067673497468 2.3669618877697425 3.3370198221288687 +2.3738667491130854 3.3928232684718287 1.835289598453286 3.43871964845276 1.899805335708109 +4.581432176081119 3.3951040431494257 1.4098953134881493 3.794334126149427 2.6632541918320003 +1.4546742471617025 3.085376088401915 4.916292340915415 4.381612540475926 1.716120911830583 +3.5386487434133276 3.9165524482811565 3.577280628339328 4.123014082684788 0.6638043486936942 +1.2157976239242672 3.9061701498776604 2.352612052809878 4.852646015805213 3.672638580712102 +1.8658246489036747 1.2516695116750252 3.2822118418033046 1.6742410261188674 1.721266009853566 +2.2147155024877048 4.000587034522116 3.7202977114602653 1.5766866056505555 2.7900547847455726 +1.8107413081558557 3.532621788599814 2.7845109948876354 2.4781521485840243 1.748921991297038 +1.9704045124464598 2.7510461132424773 4.870745324130974 3.343468170817971 1.7152191731452977 +4.798819744099026 3.977592271769588 3.376775946618214 3.0765569451490036 0.8743832169888481 +1.5590192797583682 4.460141756299148 1.97599383495896 3.138256288730565 3.1252784892449665 +4.620347952950319 1.1275007436910434 4.574777957540917 4.759417368384931 3.497724022742094 +3.696702397062151 4.931565995347287 2.854945475264981 4.990047361406887 2.466484982840244 +3.027711058816251 4.6221243677876345 1.957043754347564 3.8756165458155767 2.49460925917997 +4.640829551851875 4.855655408910551 2.3380472889147863 3.788907784149152 1.4666786715203515 +4.269740713022124 4.6549918182869545 2.3669710764980625 1.745028445840136 0.7315948673531518 +2.921548359144031 4.860378261979932 3.344597644936168 1.3186040967499904 2.8042309550788937 +3.714326081940163 2.6644760436486528 2.5210512206722644 2.3011786456884344 1.0726271729406753 +3.4508331294026835 3.356139483653065 2.7824860905741065 3.0578455735106562 0.29118676375899766 +4.6660857187424165 3.3756490272307964 3.4957935259761665 3.3320531047690576 1.3007835255477898 +4.718668102105254 3.290850120092522 1.6931043599970352 3.6774246860294135 2.4446249908859548 +2.599147750119253 4.052459215805209 2.0770870460086077 4.438131334313791 2.772479819156993 +3.6761355761761463 4.806404316862671 4.941279233801637 4.688138421641478 1.158269267896808 +2.292206071601132 3.316257258128093 3.56745766441919 4.898944281507031 1.6797432673213188 +1.7975403867150193 4.528540072309594 3.1040782375013642 3.8249884781663988 2.8245479032605174 +1.299215717835414 3.7319533877922635 1.0210325367852304 4.470786927365625 4.221257860656677 +4.306307006992401 1.7635959797459315 1.9679819756901025 1.5950222265058205 2.5699179641755876 +1.6940466634771107 3.5558366333326914 3.1425701437566893 1.5386904373517725 2.4573750231644267 +4.647253749121461 3.3232873833745438 1.5752054351989253 4.25107430528675 2.9854917764974984 +3.1606454916611066 3.9270674984806893 2.1024574862913443 1.4682858619714838 0.9947745179837724 +4.796244566616001 3.594497147460876 3.434734039666729 3.9186520594914236 1.295520555358755 +4.298622505756208 3.291428124918978 1.4786710558679221 4.72503074290674 3.39901334778504 +3.4718672901803043 1.7865361654960408 1.084394688230565 2.1101501282264064 1.9729458235112758 +2.8357741834121586 2.7570907543424212 2.2199171994229006 3.387902731101075 1.170632856287453 +3.7825227945740427 2.064592868503427 3.099738062315525 3.354602459365379 1.7367323028528536 +1.2119830670512886 1.8265665596604799 3.0299161862678727 3.9245592050143676 1.0854026904239518 +4.984376308114187 4.961083097652445 2.8304433427274067 4.119324613200472 1.2890917356921807 +1.8350629634035074 4.472025894514789 4.381561157758138 2.675040334103819 3.1409850081814805 +1.4210538961483437 4.749246714010511 4.059570051069496 1.9769129331885926 3.926108519071945 +2.6524592070831288 3.6860023826505515 3.6631790821815593 3.4716730851017727 1.051135596714104 +3.1462439838374587 2.922369278941627 1.2205915292529501 1.75226639526233 0.5768865110559337 +4.217090496316191 3.192041307451114 4.740884155141605 1.7969644921618038 3.1172726575761796 +3.7539603558590975 2.4154292618890247 3.841353338393673 2.9936280381112454 1.5843937876246712 +2.000245148841962 4.437287662716506 4.308289742781284 1.1594951309372261 3.9817186894618923 +1.307218493935725 1.6336124912667822 3.702874686793709 4.71679206450251 1.0651579649580796 +2.5674623679553243 2.599383997772203 2.4237406319191632 4.346562422386177 1.923086744883064 +2.688480635059427 4.4702789777644565 3.3327106701293934 1.1221097331225875 2.839288966759417 +2.483560889299006 2.23131803968134 2.559782585533859 4.20593589338032 1.6653669770104986 +4.386645445393757 2.1683529310872127 4.275590686228278 2.4940072306507908 2.8451469712856436 +2.074279282906189 4.595057375402326 3.1674994485635 1.4672678626506594 3.040577188190452 +4.257240223373003 1.7162015550460552 1.2585623534013548 2.806376759861594 2.975333082325179 +1.1260621465965142 4.068986951183439 4.765435933141626 2.37501741140287 3.7914254726322514 +4.370655005098848 4.328543724327138 4.702160551277515 2.8413492828392237 1.8612877092795614 +3.267039107809726 2.5761758578927068 1.8612348753495338 4.151968083725556 2.3926451182828203 +2.439900164123465 1.6928314300991953 2.4498608430491586 3.546377984241917 1.3268238520188596 +3.85225000103299 3.566633269078038 4.733588627850679 4.993586435756809 0.3862328024503093 +1.558645513338082 1.269744001744845 4.34977060362081 4.180478444188957 0.3348490983203588 +1.9326202562079455 2.9156421914669117 4.768647833501289 3.5480539176765764 1.5672209903356287 +3.303257219654181 1.3180660314468584 1.4850214075521104 3.7969429752984447 3.047288202508366 +3.927138963089642 4.1084695070795405 3.253433527941489 4.428055006643318 1.1885353946817676 +2.5809417690916523 2.1600284309061983 1.4043385415157874 4.07665137902705 2.7052585717062088 +3.8901768192129853 3.437417995961491 4.0541039389996865 1.7570581792659166 2.341241075656877 +1.474823731989015 1.6330337532969716 4.487947324891448 1.613698296772248 2.8785999872310204 +3.0860269883500355 2.1869491825739305 4.9661070776507525 4.076607416911852 1.264733389807431 +2.524045709486015 2.1817682318282037 3.0358579043039593 4.495512995479581 1.4992487641838184 +1.8324440956883628 1.5285323278831018 2.2653139112550145 2.2900470966109423 0.30491653459327117 +3.782178911868733 3.7804011328056792 4.971243254871297 3.1521709049605766 1.8190732186220835 +1.5219892504684482 1.6724614595730554 3.5951066584158378 3.581260057310556 0.15110795503542954 +4.091947173420042 4.868441364779569 3.376964259323102 2.834545797934108 0.9471858405142517 +2.625643046429269 1.449927759531815 4.875479671389793 1.9522363468847277 3.1508186190429606 +2.396658157922569 2.7837312610700886 4.673386107403245 3.8420217981100495 0.9170562697821778 +4.29938372270143 2.9280259496503254 1.914176592479826 3.4587037989606113 2.065474868708652 +1.3924587410750684 1.9279031573596583 3.60854377586701 1.7256202889417347 1.9575754341902591 +1.4603440552014546 2.061275422580164 4.495824281452617 2.951642601182912 1.65698991245578 +2.3061991723252486 2.503170009662814 4.584405128383706 1.2321234421190526 3.3580634322220373 +2.586581152680293 1.0813292761297482 1.3240437237034444 4.180660519916458 3.2289383289659215 +2.1478334508910755 3.922994857907788 2.147926027617692 1.642430230413105 1.8457312973325926 +3.7884039354530383 3.6775271588011744 1.3676257820767983 4.698687964019534 3.3329069773352225 +4.232604233554613 3.421544105697748 1.5352788491821863 1.5238112745050723 0.811141193793146 +4.930097936676729 2.1008228645577813 2.4769170567596803 3.172436468762674 2.913510714959989 +1.2375385745116003 1.6353663257770936 1.9184531542220022 3.5818697252320657 1.7103279242261809 +4.951902858003733 4.121716545307865 3.654243651923889 2.9054807812886825 1.117969208086447 +3.2736285028886463 1.470286097078891 1.6356537892735812 1.7229266447483864 1.8054529580951266 +1.5384250890865983 3.6554494899378995 1.50155407348019 1.603709321574501 2.1194876759521444 +4.889903783501978 4.2325778827724205 2.104035441090114 2.512166739390908 0.7737237856125507 +2.8563643352604524 4.034543110248405 2.2446032130171307 2.2078636456091933 1.178751467293015 +4.964668207770978 3.217361071661872 4.532757923415451 1.3282379637999338 3.649935670593667 +2.38530313280381 1.0663158049829597 2.804959493993805 3.844557382494829 1.6794318505755972 +4.579073395312395 3.7196014250455405 4.028450568501455 2.9425521005589004 1.3848709507944692 +1.4241219169144252 3.914974180706159 3.801509802029847 1.1036116904097173 3.671920372328336 +3.1077168504679014 2.3668428267326225 1.529448977186624 3.8607676314388764 2.446209514066658 +2.3924443536656588 2.4390549895913347 3.1901611597032886 2.4618065371793887 0.7298445091478929 +4.854806195941405 2.677408471897888 1.0207769313531712 2.9651260953196226 2.919170176623303 +1.8535976766079494 2.0746735878569402 1.8550725071451835 2.5180157927878533 0.6988335699673207 +2.2099364735670046 4.410414613045118 2.0950406819730674 2.5432838838591763 2.245668277007575 +3.973837649748334 4.059434125381952 3.0296280670950395 4.9096970612077815 1.8820165193921636 +1.3148258361148888 1.782606215269967 1.7927245417476891 2.8627492971068733 1.1678062597040448 +3.93139875017793 4.379386242030661 3.97731719709653 2.77267283539569 1.2852473812593919 +3.9398581199798626 3.245547038596104 4.156557461195769 2.873256591323718 1.459084987362507 +1.1201805945993653 3.9583971750830127 1.0320702056850308 3.103007334044294 3.513439048475041 +1.5587183894217578 3.516196252123275 3.3484508116427456 2.5868025254349445 2.100435120361917 +2.2226435822725388 3.5338743513802964 3.0479108783403963 2.3881122472466436 1.4678761403633862 +2.2826216213438464 2.7205389382627363 3.8857239703925583 1.1106273900157553 2.809436350387114 +2.471780879403324 1.8675118238988349 3.4225214313825147 4.080849874464554 0.8936092157151855 +2.61754344502486 4.774797927033255 3.8536016487543954 4.617679964728785 2.2885721690800067 +1.529629524418274 3.5392874723704506 3.64307818219206 2.5993219543295427 2.2645423667860896 +2.922434338348051 3.337457568721649 4.57133476058736 3.4145842389318783 1.228949165384788 +4.982316302308276 3.7566838020496567 4.651500649520637 1.821658599892567 3.083858143873254 +3.6254528015494922 2.223813665501173 1.6743350415389133 2.135763937669393 1.47563846991276 +3.682094164455167 4.427311293205953 4.623036089340646 4.017856051800001 0.9599955452090716 +1.797115207608449 3.703090272813896 4.76849356681711 3.473367043512798 2.304364046879577 +2.948233832019246 3.6934587580235423 4.726955662216827 1.6912548562227547 3.1258342204683807 +2.321571227171865 1.3818688064430473 3.7829903875262514 3.0036874125747848 1.2208004612924284 +1.654943351062928 3.4551285501344173 1.8204957959656984 2.9104257044461037 2.1044272276218443 +2.6532163808083387 4.970599810905282 3.607279390269519 4.428985585240676 2.458753145995313 +3.7197525318729356 3.2235668296817583 4.208136741290756 4.607395197154679 0.63687327282419 +1.6040827918014067 2.785216566937496 3.7322165421204674 1.4632944236545131 2.5579453814402027 +4.161281882817256 1.1119573687187363 4.865145452084709 4.6919081798111755 3.054241500730902 +2.813976490345558 3.2252066737536853 3.475462438544213 1.4613755498006316 2.055640109346644 +2.4584880370581046 3.235737522398352 3.250363819822334 3.4034346108643354 0.7921789125771421 +3.5012862645207394 4.17311677243811 3.714585286796338 4.0208554106247085 0.738347899108786 +3.512214460769181 3.918829363210311 3.9970680642613003 4.118110699332339 0.4242487458934323 +3.273492469481556 1.1847900452478224 1.8621799883878385 3.937227179415664 2.944231421269793 +2.2395818578235582 2.9918738895568144 3.3430659805211436 1.408424767382375 2.0757600835800836 +1.015817287211826 1.9880999638235775 2.464080855158959 3.9794609841446382 1.8004750869045554 +4.916930995378137 4.609460355994219 1.1251493981609584 1.7009352181452604 0.6527384656799001 +4.968258276942981 3.784781630439896 3.796831719492359 3.4571141237813037 1.23126967706262 +4.2130015470585285 3.8296290821731778 3.2979955523245748 3.612671432720492 0.49597918961909593 +2.501500201912562 4.9559081113390615 4.098626655197411 3.4148117788181516 2.547885588289424 +3.7775383784357937 3.6689596802799325 4.486856768592057 3.611693460557368 0.8818730914499214 +3.74718329903615 4.887550722057837 4.366829915577646 3.835995558610588 1.2578644497821503 +1.0898158606809467 4.670796355731822 1.6670536712930177 2.6693983233564453 3.718617499482162 +2.4094648314285325 1.990923125181808 1.0778080066296072 2.896031777018208 1.8657745949267446 +4.312499929864684 4.411083373527594 2.3127556194675103 2.631332260409219 0.33348129110662367 +2.765973577695848 1.6333969847551248 4.1189031685866 2.9370231523798656 1.6369392510371445 +1.4726935862044135 3.6950367571962524 2.0562240241453025 1.9433341221679936 2.225208596878618 +3.1484762746681656 2.010433437600319 1.4249484155850962 1.8598851333930355 1.2183232114258418 +2.047431733087702 1.4340479076698363 4.379333461993472 2.5003543241120454 1.9765632592654059 +4.362059356482613 2.236518471726815 1.1592196308831908 1.3787206660698055 2.136844579565031 +4.182442518165276 1.8993943918929657 4.048468661844158 1.9852865270098778 3.0771787839472124 +1.0689519946250283 4.727755901837048 2.0832597891517874 2.4158557196792176 3.6738897757599296 +2.9342957996606027 4.282258551099654 2.523397680243787 2.489512957119486 1.3483885766826813 +4.278380586562742 2.202046409015224 2.343076364814654 3.9937751583287584 2.6525403151999116 +1.3036284790311847 3.6340976860835235 2.9964066008164774 1.6970626449724415 2.6682169028412184 +2.508446085690266 3.4458124193820927 1.4494675501026109 3.9047867092324844 2.6281643435540873 +4.53837259856192 4.079021845736808 3.840727491115849 1.9018822140030922 1.9925170319732377 +3.310477841603028 2.2537988121182524 4.285147190759025 1.859657093533421 2.645670573426018 +2.1205425153320605 2.3382153389053464 4.9090467305247865 4.149048817027059 0.790555682190234 +1.0406374439032402 4.6406387159966815 4.944418430259923 2.0817276982612474 4.599457292566755 +3.310128069050262 1.787887954831462 2.130931707329128 3.3868362677861863 1.9734516032357374 +4.841521662862771 1.6497040886823515 1.72400611542747 2.4624130711290984 3.2761172535603063 +1.3815253620258847 1.6561012167427123 2.260973849816028 3.2653683023521625 1.0412493055358247 +4.440333370936321 1.7334189176255288 4.965235356851521 1.0822976541004863 4.7333488209710834 +1.7766855968721695 4.677296887736636 1.285601983384133 2.8691689416172013 3.3047284566054684 +1.322501397259083 1.159127212246744 4.7692891895668446 1.1604333257917694 3.6125519746893873 +1.1333280047498446 3.589242410025101 2.8995638900635137 2.4003880460230844 2.5061309002747625 +1.1179706611638194 4.897308152603131 1.3930203031682757 3.59090612600073 4.371966830204306 +1.0930941482091043 4.964274682370536 4.348493697640221 4.072978504945844 3.880972474712466 +3.476047763481149 3.150998256798233 4.272674899839589 4.7982350166437335 0.6179568093078942 +4.1033851504362495 2.2818110734378574 3.0958819706500322 1.061700381620283 2.730572624036969 +4.817992853486768 4.534184512455234 1.8270489193689836 3.9452783995700966 2.1371577632996934 +4.270842230699749 2.6294760882414487 1.1320291626120924 3.0569123349235636 2.5296754812932654 +3.6146283597248146 2.9375269047037764 4.867661437226156 4.9827681347884685 0.686815792054397 +4.6716797006175845 1.0367095416767298 2.2335110835887284 3.717083055044719 3.9260659509081504 +3.9726475032431603 2.275439992162366 1.1176733554495293 4.282045046510506 3.590788428027634 +1.938484965645562 4.795831813759149 1.3078884798233692 4.996668865680002 4.665997400932116 +2.059520505458223 3.999639382925293 3.9019277163477284 2.973171818982307 2.1509646151425024 +4.07253325465266 3.378056044352769 3.940403545779478 2.000025753446617 2.060913528657732 +4.348331001344571 1.7851631456886117 3.4236825993714928 4.152071039294406 2.6646536689936466 +2.187711409640003 4.871509775264055 4.2279351461497985 1.9439785712760456 3.524092975963514 +2.047516938416731 4.510734841125554 1.1306871867710835 2.864659083637345 3.012324845588078 +4.607373141203256 1.7551594049018098 2.018511839095418 1.7391353440582482 2.8658636435681846 +2.9299952485987153 3.8155043695099065 4.182003280014241 3.6577689880470894 1.0290519890128056 +3.494134600180742 1.4378412599041663 4.0301995425093455 1.1893160757496841 3.5069874783030217 +4.8653624440212795 3.88866279746884 3.108161990515839 2.872137894434049 1.0048132032904855 +3.540014492529065 4.284937592211438 4.582682128929372 4.280509147811848 0.8038774377713599 +4.056208701786673 1.2206928865628197 4.211122346366587 1.4417661924990641 3.9635190734180292 +2.1683734066741263 2.2654218890312023 2.03337877687207 3.355728856354972 1.3259065354074728 +3.515034331387065 4.89889457594286 4.306163986012342 2.6845009567674443 2.1318677625222824 +3.9111685192900882 4.826536956734501 2.7775283048208026 4.432574706717908 1.8913164644506169 +2.758998307101926 1.5206943108173911 3.487605824892203 2.0619282660984024 1.8883731858037223 +4.945002545970015 1.495724134504743 3.083861827438388 3.813874833299938 3.5256829903619247 +1.722234130988808 3.700868109493393 3.489740479153773 1.5465228722234658 2.7732809249653796 +4.210432175709752 1.1946277491595252 4.0677313381292866 1.996235625727619 3.658711634673937 +4.5674591847186825 4.150737875305053 2.570924417771169 4.550298960122854 2.022765490270524 +2.614336209600678 1.7311021369831892 3.531624638857458 2.529132937697491 1.3360733654732737 +4.425275938536453 1.9655835262012524 2.0517320419513263 2.9793294782345585 2.6287875089285144 +1.9904957367966025 1.1218599257886988 1.6750053952482271 4.480061347885323 2.936471874476268 +4.937902072006182 3.583630019440697 1.1522742247445628 1.1905739520816856 1.3548135153865382 +2.3129520328840996 4.654640918417971 3.2125910619659748 1.767484510500776 2.7516976181478414 +1.9712251968338634 3.829995407833934 1.8241939209139062 4.011599368899473 2.8704998329869635 +2.684075821050853 2.1078464898423444 1.7470148328571193 1.1571398905236001 0.8246166926141975 +2.807009374905717 2.9584481174539756 1.5833727859134306 1.3361726773259366 0.28989926945452377 +1.6537367875794171 1.2911084375587185 3.896244435220758 3.4643863869473654 0.5639155026218361 +4.692197935747174 3.362143380052523 4.867154680527604 3.449813820167435 1.9436821333671306 +4.871891539675115 4.680616114533411 1.4223478264395513 4.4030791897492545 2.9868621910763244 +2.4309535281365178 3.9926296665773804 4.58693511620319 3.3266486473518486 2.006777103951843 +3.472229034491617 1.3065704214602976 4.748131454368938 3.5637070131481243 2.4683878311881977 +1.3458227725229732 2.039127474632883 3.538583991305912 1.742608965520898 1.9251487483337988 +3.3969353738274735 2.339883513932883 4.381671633443325 4.194159835334105 1.073554520709948 +1.5668610891603776 4.9061466241322815 1.4820077540022334 2.306134775206247 3.439478627808464 +2.5157503408374673 4.9910824874614566 1.82004387053823 3.7698052261436903 3.1510059631683607 +2.3584938465041216 3.541156492495153 2.679486431165277 3.43911144803073 1.4056034648756197 +1.4027560051530847 4.017268358284944 1.216746582021473 1.1803114880474381 2.6147662153148588 +4.165966137156393 1.8254753349307187 1.6863832845287599 2.237178547137412 2.404427710831647 +3.749333966258023 4.4377712826383355 2.3717164882715127 4.961355041153221 2.6795846269816135 +3.4930650725774726 4.777672499090032 3.7671647845950997 1.9435702807501327 2.2306306629975285 +4.48949658205749 3.1293185138689523 4.602495824729909 3.8088314578770253 1.5747976074382037 +4.082841362107093 1.862402723290416 1.2163122786291143 4.395937955680802 3.8781912272239056 +2.3323203676434936 2.0239117577548926 3.1716131261948837 1.3905862240466096 1.80753221183726 +4.651122278384264 2.2089318232275397 4.573055264703856 3.301409886747076 2.753429894974167 +1.3278499550414766 1.424522938076045 2.5120541457870598 3.0346894750977973 0.531501037715398 +2.5171762226130365 4.130540576391036 4.203659168525416 3.2657516558174633 1.866176583401346 +3.783265899898167 4.591568944037412 2.3945592556635282 4.173472782938732 1.953941439421222 +3.579654712438721 4.516002216079082 1.3178872648804152 2.086896126934874 1.211660545487815 +3.1341745885564363 4.056797813670389 4.886480988939269 2.316696744684848 2.7303891073504407 +2.4567304136516523 2.0096965555411255 3.278266018744313 2.3815047642831915 1.002007992882226 +1.5212499420316612 3.0164309201887956 3.8300880618806987 4.528758819242119 1.6503657123907132 +2.614788424274 2.643275503258544 4.953358816369564 2.536987486778086 2.416539243658326 +4.463773552699104 1.135649380678152 4.253118175562032 3.178072055775345 3.49744687794662 +2.199264621325975 2.7167014570513235 4.397145913510567 4.100234132521214 0.596571441367864 +2.3578933166729477 2.0812167226563716 2.38119669376439 4.915229100186694 2.5490920294244037 +3.907884066648322 4.151145782673794 3.835982885433885 1.1628315382447538 2.68419715882845 +1.759726665533273 2.894978430356912 2.6829587237419843 2.27833592901765 1.2052037900478563 +2.118607285518963 4.938339339063801 3.594552076595781 3.9740656892404114 2.845157190028482 +2.7551251052941352 2.0258537026411636 3.3607215736895997 3.4119841574894076 0.7310708797546686 +1.787380765413571 1.1716094389926721 3.076949727553432 2.748185518238287 0.6980402794744482 +4.937641664586241 3.6980108608990068 1.6297514305647147 1.6228685751920975 1.2396499115267743 +3.095768078743924 1.9231810105966356 3.5225528999499054 1.385056822625561 2.438001212666477 +1.1106412810003605 1.201778534488258 4.26714368589391 3.395185847294925 0.8767077456413455 +2.3643914544504887 4.0227969269280495 1.729857046605113 3.751620958008946 2.614926007480603 +4.39633215084562 4.545765653292673 4.50461819419192 4.286794066717289 0.26415473148077007 +3.6058854000857137 4.7163702285758955 2.314865633449996 4.449398916518165 2.4061190516748425 +2.247755652216325 1.3083866531706554 2.187778102271502 2.84747374098337 1.1478730121853735 +1.8726888866455376 1.8793809265652155 1.3080674014868214 2.0899420347088644 0.7819032711751439 +2.9625976863314127 3.578606072589219 1.3896992536159511 4.1480731743451615 2.8263214641117846 +3.021578473128972 2.30686923666953 1.590315663331236 1.1649364636147177 0.8317191570667974 +3.9304126323915134 4.177948673111242 3.3398470138771925 3.7932838820439896 0.5166034115916314 +1.5985807850191511 4.2935971412906575 2.3150068099377292 3.429394893187619 2.91632884988307 +3.393627786789022 2.960093000864862 2.356230291126439 1.3317617866364735 1.1124244366689424 +1.4664331817495073 4.036364312939505 1.1107979139874251 2.8616361769954515 3.1096592485789283 +2.9557047544261543 4.664914040197303 1.5178329425303754 4.5020379230277525 3.439022498936532 +2.7646858567335997 1.7643530526329716 2.944661521760922 1.3729824209231292 1.863019300750832 +3.5444055994871277 2.428096446129374 4.53618400142097 4.647258805546015 1.1218216159362067 +3.9493047931054988 2.887790041671764 1.1633985470346713 4.802519510622677 3.7907802567726234 +1.2024457693001787 4.192030020580993 4.617054202425182 1.3948008235343963 4.3955125791287815 +3.10490919044548 2.3414438946658493 2.2506705421841735 4.470515425491819 2.347464709810781 +2.821309594382377 2.2655323653068016 2.934211418914825 3.5900310469643553 0.8596439454180718 +4.857636343107044 3.817976388432869 3.737887493892369 3.452497952073345 1.0781187373999124 +4.460550471190214 3.1920461768828954 3.1768677466546427 3.026284764725618 1.2774108106332693 +2.2551292940421237 4.318158991415718 2.3838691736401496 3.4741655862493546 2.333417622200082 +2.465530481442348 2.4857753138401204 3.137536965807365 2.8010407981189105 0.3371046189357696 +4.7971555206655845 3.224230882139902 1.8348564638938636 1.5206901899792729 1.6039926328217742 +4.645664640544726 2.654805382751364 2.3164302759816557 4.345753290847343 2.8428282542223857 +2.5652021041082502 2.0713460038476668 3.2884300646471183 1.0270482806438648 2.3146795503452156 +4.776885562196199 3.186615676509003 1.4603144029782653 1.5555082192484155 1.5931164966755076 +2.7221520344342927 2.318969564690337 4.910061820497075 3.404452663202097 1.5586580890109707 +2.6860146128942533 3.5189185834059358 1.6321269799120413 2.0000836031508338 0.9105608714849439 +1.8756002308793445 3.0963504128479387 2.8672101103640197 1.2646763498420364 2.014533559012876 +4.711313147022869 1.5172108050612327 4.672743614976456 2.3766887971043706 3.9337205667914983 +2.958782450085768 4.091877674646017 1.9998189941943405 2.7886322145623894 1.3806270620803622 +3.956609572577671 1.9787931847671167 3.9771859051584717 1.6249458819498557 3.073237835032697 +3.0291316819635146 4.870920906204681 3.021576347954815 3.522289042694175 1.908638454292491 +3.406365050891686 3.2423438932699353 2.0619327751122127 2.2217476008580133 0.22900593589629895 +1.2719301610000056 4.280756727608056 1.5971645062262692 2.196158987992303 3.067870873604779 +4.578355998062543 1.2626816637588072 1.8927860488109691 3.6037814634041183 3.731112649052465 +2.080517146386096 2.431187168541574 4.663791146173812 3.420323931349293 1.2919675610408996 +2.922819587277452 2.5749178075235846 1.2341280645574555 1.9116006329065964 0.7615804154660819 +4.866472009580367 2.2876334237670863 1.1675187851461866 2.0689085533268132 2.731833077964348 +3.8444763952160343 1.8636527572337074 1.8984948146853706 4.877962513599954 3.577833150618528 +1.7279377695170939 3.9218988664903875 3.4537614374161967 3.389307018820154 2.1949076671032914 +2.9022563316300234 1.954249414348554 1.04954523651731 3.1095566461995654 2.2676781348406982 +3.1983058876497124 2.482270929929729 2.6473927394814796 4.6677044155766145 2.1434470670495673 +3.4210775645527303 2.4120952473982493 1.1740809395742526 3.016700896042606 2.1007840489459793 +4.794919427756534 2.3626083764127164 2.609250064352401 4.0601369881600355 2.832174061770436 +3.1052803245387426 3.881879623623866 4.593086280439703 3.323689256119626 1.488111311929377 +2.6912068180089035 2.2374128978160095 4.213624870496813 4.68243882521241 0.6524687319252261 +4.109943895275317 2.6780829139575513 3.881486754750833 3.2468410166241872 1.5662059515729696 +1.1590244773188196 4.817667878438156 1.7934004935352759 1.482200355777549 3.671854716937272 +2.4066942255630352 4.707795436208182 4.503115046943087 1.7172392808348076 3.613332335368829 +4.089774577403433 2.9053068167945026 3.165429228269934 4.675206419936766 1.9189557171543377 +3.4295586427115454 1.3318784183856165 4.848169275397641 2.6332905366523405 3.0505655460707697 +2.526011923174789 4.096367772928902 3.2202998788911774 3.2659047807931874 1.5710179190367164 +2.663822540407112 3.0205892377362837 2.2556428019116237 4.546795180735254 2.318762967470445 +3.826653053806569 1.8234432656201913 4.8339332542544655 4.2765757803580655 2.079302000478499 +2.760851410129375 4.047338504656405 1.8582991244058298 3.931754398382281 2.440136434211284 +1.5793946687190492 1.564317340980749 1.5854705060962808 2.4120577535783436 0.8267247447075121 +3.439871574493688 2.0036625485719144 4.09159637480384 3.6491183627927564 1.5028250587651413 +2.866990393400363 1.6989829699677927 4.348468120119943 4.067400985847694 1.20134927276026 +1.795989177113555 2.5929212951535754 4.577032579397818 2.749808613604638 1.9934513342273266 +4.401232931509702 1.3539327144027231 4.911052522494337 2.3663838488268403 3.970060109359169 +3.776865238014503 4.280718906492741 1.3822252260300525 1.3871466279761604 0.5038777028566485 +4.79275339291391 3.9156571731226975 1.9037558971061697 2.139052819227565 0.9081092557241317 +4.313948984541172 3.9565355718822417 3.4824962593011697 4.179138143917855 0.782977817662027 +1.2637317820111051 3.9696521905462334 1.054628235831887 1.0723909366273996 2.705978708502058 +2.9138889569761774 1.3379885730080203 3.7681202151115265 1.9916730299572327 2.3747055863482527 +4.378366864810456 3.2906963395939766 3.138242164297534 2.523752620066908 1.2492496033193106 +1.5588251859676507 1.4803553985548232 1.2553967239281918 2.8825186067360007 1.6290129309028345 +1.5147353561443415 4.702604722725618 3.0703925405838968 2.9082663436170155 3.1919893486868425 +4.808342930892605 3.940919528062291 3.603247615295985 4.659751164599725 1.3669758993739145 +3.8860272382446306 3.077755560214736 2.191054746003174 1.3261482986275421 1.1837931695263315 +2.3906583463541877 4.5582056745797725 4.602038384204365 2.87312474940317 2.772616774222386 +1.0480632183242902 1.7594589916082755 3.9661466539520993 1.980575738269835 2.109164717951072 +2.8801102641262175 3.5785074296938495 3.8066175987825406 1.35471877532291 2.5494247275327866 +4.147677704875368 1.143641586684855 4.464515945265651 1.2297640783085573 4.414504801240511 +3.266812070130267 3.4403942426568275 2.707059639565862 3.141050409871019 0.46741711492959237 +4.609314277554761 2.9400312132501267 2.4141045612023686 1.8101958093356 1.7751652681808383 +3.064951394046545 3.904208532239179 2.625854026346399 1.2161717830772054 1.6405964071019286 +1.0507189209886336 1.2507477787258732 4.694833677053026 1.0510290202074888 3.6492908792225496 +1.6826399544991881 3.629120601304545 2.111053987723884 2.5632881357778508 1.9983249568210617 +4.668083031919094 4.952482068622112 4.109594789343408 2.3587128367786163 1.7738293108116976 +2.580775913900558 1.3773772583018267 3.8564440177223203 2.344837856013895 1.9321287515100312 +3.896126168632065 4.99078474646914 2.842621720600976 3.054830563842993 1.115038113780154 +3.539321240774977 1.1593089984904719 1.7413557717084966 3.555822109242876 2.992782378234265 +3.883199904945146 3.8393534095717587 1.1628208198913383 2.3960951745685954 1.2340535438388132 +2.8606003598605927 4.0870473152265525 4.989121920442109 4.112751391713628 1.5073809863303538 +1.2217503670849843 1.1502400763686853 1.0821794494450252 1.4455000406855918 0.3702912012156439 +3.152429264469575 4.221403721357721 1.3603271516027373 4.819524893649202 3.6206015257217503 +1.547264583333881 3.876637697727728 2.6165365252282213 3.566047669445567 2.5154622873447785 +1.6171907637357923 1.9555569524474845 4.844963542311849 4.33452900210788 0.6124010920112026 +1.037974559461389 4.3641642587152365 2.934392408058572 3.810002551254071 3.4395102904758468 +1.4360742911821238 3.842893369427458 2.0827645543745317 4.566775565448774 3.458769836017395 +4.588150538179649 1.3682538350792672 3.046042565466519 3.1514465636177285 3.221621452229136 +1.71751960927516 4.634084334389289 3.382490833354361 4.48662985468892 3.118569026687352 +4.208955022148218 3.9111015878135285 3.114271960909223 3.60436857219074 0.5735079395567212 +1.1278319281030362 4.443170711327623 2.0249048863417096 3.588374264743937 3.66550238640688 +2.5408409239546863 4.358968361901683 2.109377956031406 3.6104574531965814 2.357716487923297 +1.1674613182891194 3.7954046145142413 3.853630701228499 4.799916131760609 2.79312407247009 +1.0887946955722336 4.694517675411175 4.95194050403699 3.424634898762401 3.915852476695438 +4.319155940852453 3.1386219540010813 1.6030612957884998 2.2835596797854496 1.3626219375650954 +2.296571276394361 3.5606126799981936 1.2423234039152637 3.451829842671997 2.5455292913129504 +4.7871365880784875 2.3869675791809915 3.016402133253129 4.691938980452001 2.9271547614694247 +4.25749474999872 1.1897857770197198 4.325987437110168 4.379864331585944 3.0681820452271453 +4.096202025092698 1.5482876625657536 3.918656081400929 2.0111221158944677 3.1828530327886475 +1.6819462317479408 1.5368663748187466 3.1110203114748383 1.5373157826722856 1.580377837373158 +3.0284306262307914 3.046217512318375 1.272996612515215 3.657711435073985 2.384781155210725 +1.9937087977064358 4.288827726482225 1.6483512197278105 3.025626905981535 2.676650745459817 +3.4254986966770047 1.918902476719273 3.8539936702422555 1.3437683444063704 2.9276378458509518 +4.930183795409345 3.964156938658811 4.957445261747657 2.9224417889420717 2.252653329363866 +1.6385474413699996 2.0785056003064444 2.048873330742126 3.5824914961645264 1.5954773138243976 +1.5044178348445718 2.9336095652600482 3.441507348405433 4.517451260723216 1.788922665947771 +4.261825665882338 1.2838612686711541 1.7947626502651115 2.649466075020571 3.0981913910128407 +4.936862104570345 1.1000558717206785 1.757508787208121 1.4691341952020478 3.8476280971201877 +2.8744601838121437 1.5495470274947425 3.235232539770523 4.554771311502052 1.8699137525259533 +1.3314663712493586 1.1569197960366666 1.7020725984876401 4.715955075410443 3.0189326079958807 +2.7396516801506654 3.470260187058739 3.005253449150123 2.112909173591259 1.1532853491175195 +4.386021748461014 1.0056155187001252 3.4632707656482933 1.2171103409736954 4.05861835254075 +1.4480679164334807 2.349122320698641 4.337855634185718 4.583744664426001 0.9340023847068857 +1.3733616941267561 4.071579501238696 1.2721731325269099 1.4333978521990849 2.7030302892955778 +4.706232732200586 3.2719705021071808 4.971535898322002 4.493913633070173 1.5116981090604027 +3.972864546360677 1.083428682791248 1.3281196848366497 2.7193037770395763 3.206903925607952 +4.530919358694192 1.4922139667247074 4.34611648815863 2.801767049831483 3.4086281180037505 +1.242768543082391 3.2474156123579787 4.244599331600968 1.2226354819250753 3.626413570058322 +1.2321907021576233 2.3398551207838403 2.7723324170379127 3.517695678530605 1.3350980697587644 +2.903141285427607 3.9619443361499145 2.9615305371688567 4.499517034625449 1.8672081744084301 +3.200498267975319 2.781319125107559 3.4621387432520736 2.730463771957618 0.8432433915745158 +2.42058298060107 2.684987471789371 3.399976075929337 4.041762985239466 0.6941182694054323 +2.693214601731879 3.5458203568434863 4.852301338353165 4.950885377815245 0.8582863079917417 +1.4142031847446956 3.252640661984274 4.568900323001587 4.238984329175452 1.867805375487851 +4.382302049918361 3.0023500308801077 4.138083712466679 2.0529922264283407 2.500374787906269 +4.534431577274137 1.0260236876070805 2.6005719377856766 4.2534276231663055 3.8782544832660366 +1.9871093018844483 1.640002900489181 2.0304573303979003 4.04174043525753 2.041015086123414 +3.770341266359048 3.1179129919254454 4.523094495204404 4.48897136348062 0.6533200145403835 +4.2390211480854125 3.014919310338132 1.721646703553179 2.239419662383402 1.3291027597864935 +1.6659760846062706 4.617922759474076 2.2405965152221037 1.5191422167920274 3.038829622730818 +3.7146668864884016 2.3897270917753253 4.239885552724789 1.547574997405464 3.000666856866683 +1.330773909758185 1.4460014019801757 1.8111596931025864 3.9044979201983825 2.0965071685983667 +4.723263038940617 1.4217992953124226 2.3720219465438466 2.576901249084962 3.3078147437698546 +1.1522294303498404 3.7587941570772956 1.7607653078707397 2.5945810778394436 2.73668200799221 +3.4513829647289334 4.738684171896888 1.5024103726260423 1.1909034336588409 1.3244549712998133 +3.5336469089223654 4.515343379188375 4.59124765003329 4.037674543214466 1.1270186974162348 +3.819864120717087 4.318846905751423 2.4384168448423558 3.118395760444675 0.8434187248480604 +4.111526335852304 1.520059879162734 3.296359714307893 4.50860882920527 2.860986947316724 +1.3120309723848318 1.9524743216259877 3.516209988754602 3.1481265881772273 0.738683337681197 +3.0505870755779645 1.8062561072731804 2.2926736145905973 2.961328831558091 1.4126072907429608 +4.136879064199071 3.7373158533343567 4.564543367579093 4.759087462451361 0.44440765556658723 +3.7794022588576377 3.9454838846187683 4.331928633316936 3.167803413118087 1.175912681587574 +2.3278816154642588 2.6509556046381904 2.182133476418821 4.232878606129737 2.076037665726178 +3.891056397177439 4.297973994885194 3.384584706543506 2.5713285776900996 0.9093775137102735 +3.923346675536138 3.345895903019968 3.986884137743672 1.826210787719785 2.2365059177616695 +3.905530068025468 3.6984893489749853 3.5259159036116725 2.1885168212836144 1.353330028026007 +4.114361376631717 2.8936050113273217 1.6358062261370767 2.3678490977204825 1.4234229411061479 +2.2520090195654787 4.774029308552729 3.934125347143442 4.9629938905836095 2.723812919006007 +3.937279708367489 4.740407779295109 2.840073897317123 3.189833151536556 0.8759830102371015 +2.381967880376052 1.4005758848298688 2.7067174948572688 1.9321980643846755 1.250204222158008 +1.1539826731174339 2.022258305844389 2.6676313109964247 4.038115508271732 1.622383897038163 +4.367141955675982 2.514210927492946 1.805885592515419 1.3470069631012342 1.9089062291627854 +1.5039685377754508 1.2126894844419787 4.653907133529566 1.7634798531139642 2.905066840931819 +4.658062028731257 2.6002173112828424 2.659616658905161 2.650829838806248 2.057863476846264 +4.182789470704549 1.5079991581234653 1.2376679139483988 2.1148351951599857 2.81494682996069 +4.1891580461557805 1.3953074960129839 4.408843366273415 1.2928399060362015 4.185101965393853 +3.6018088538890844 3.709469809633898 4.2577928903358755 4.954136440614242 0.7046170743078589 +2.6232833339247708 3.5215624083735615 1.6400438536891286 3.1413966976837835 1.7495615615814766 +1.4467112466164633 2.1596257810454524 4.951299347086497 2.1390114277542525 2.9012429189266773 +2.0086723240046633 3.9539715790860797 1.7218676342485137 4.199924713461741 3.150389829792355 +1.2687524654502793 2.9747467932893956 3.807160380211061 4.500011317780004 1.8413199255722514 +3.1910908881705606 2.0646373306370713 2.145637297307883 4.27728371702081 2.410977825687078 +4.87874011245019 4.58446360316087 3.6596214250168577 3.035297904710848 0.6902017979741837 +3.640249856489211 2.993797847082194 1.267204652356381 2.541231472019275 1.4286513002432464 +3.2932111381782674 4.564113116368402 1.2181500698823955 1.9672840989079399 1.4752605300799049 +3.26467023264809 2.7543597487392932 1.305331216086342 3.161019801329692 1.9245770744217277 +1.0849530152347833 4.49438566856801 2.1881536387778504 2.574849929843812 3.4312920364112145 +3.2923584772499557 2.059925125239924 1.4220769928806893 4.580799638808067 3.390637214601576 +2.2137236902797937 4.409898883821832 2.4402837500200247 4.358165908744956 2.9157258882626147 +1.066087933003438 1.4447868114744589 4.432883465511188 2.8399883543305644 1.6372927886539845 +2.5851784727863545 2.570691402678008 1.4292767244762339 1.624506777166605 0.19576682219878133 +2.818973747675877 2.648430002676362 2.5287764506692616 4.7308347981707985 2.20865256089763 +4.8260797459998255 4.2548309731274525 2.981128585273218 2.1340992812939112 1.0216573800975846 +2.2353748535635294 1.1317393456115155 4.692858668460787 2.5657445965531096 2.3963776015728744 +3.8509625579744444 1.3394110572526654 4.332553475398479 3.473927285404681 2.6542663534244424 +3.2626520800142864 1.9810256569220668 1.012478712385858 4.392216547296568 3.614580766990149 +4.5905491827017215 3.653713938941485 3.7997300018281135 2.3887634400081326 1.6936608020868287 +2.8325485537700503 4.892896741971111 3.346531996239316 2.3605537081739136 2.2841164246070673 +1.5288681389327214 3.1147964894550286 2.4611990853706702 2.017255431911329 1.6468924374218354 +1.6787028313875645 3.628848287400781 2.9747673299588815 2.343026671816149 2.04991793951846 +3.3957849816596903 1.5790507913367184 2.4064324228768506 1.98866640140466 1.8641490195220893 +1.0061657044828198 4.374788214932877 4.280481808163078 2.070331717984717 4.028942918313223 +2.6593580438780515 1.381181480001537 4.799106344633856 2.206400441579823 2.8906503123301515 +2.137618819024982 1.8446207753827952 2.5874813023479897 4.220792108899779 1.6593830312429396 +1.7381657441350202 1.488470918485051 3.318359717253064 2.820356916845603 0.557094511882896 +2.3851619119238188 3.409270778737003 3.210856856728545 3.4180250658970386 1.0448529264807873 +4.3594231881772405 3.5073039330861673 3.160955497031751 1.7795838928096348 1.6230510570675676 +4.590329699010814 1.4670782486737948 3.1363670991492194 2.6723119109683284 3.1575380979031586 +2.6381991523033266 2.8166994564261203 1.0868870778637163 1.325737878758495 0.2981812597397883 +2.7904140694966424 4.958153465158642 4.298275677106586 4.171493170938868 2.17144373433327 +3.1371370409839185 1.5934785378318597 1.1257335383110236 3.809710056685657 3.096225367369125 +3.190613494558556 2.2063216455036683 1.1343475616267549 4.938884333206245 3.9298003117736626 +2.544570634668444 2.7766580968980272 4.232487503456808 1.6321486544720534 2.610675529372336 +3.9559310721057463 1.0181697594683925 1.038160264136132 2.141215462242771 3.1380204429064555 +1.9636112012992375 2.7581514234427726 4.546319796748705 2.858849187274454 1.8651678804985083 +3.0980453657493263 2.695399978780115 1.8674454854167273 1.755851815212981 0.4178234733438615 +3.560240995020721 3.1458007446708884 4.678728810789249 3.8609998933112726 0.9167558582249337 +4.505222095349195 2.207359891510018 2.87324795858039 4.139640608486884 2.62372274670359 +3.9913923284315076 2.627971349201233 2.681244504166198 4.564178820964316 2.324727598662096 +3.8147740177478076 3.4141921439357974 4.651215323340434 1.188458711019698 3.485849852445989 +4.33035278471927 4.7416066746914645 1.857899896366341 3.3606397631361418 1.5579977115504953 +4.396903202479373 3.8548557031830994 1.7782510201252224 3.9825662027978064 2.2699825805618445 +1.630645650290079 1.8729799397575961 3.9467950101018983 1.4818543262315207 2.4768242737124266 +1.7945081298277956 4.673327758275235 3.9389258788822197 3.5199441686889816 2.9091490382259044 +3.8996757755728897 4.3856305678248315 1.8489488862838943 4.104101001053376 2.306916366247787 +3.533955588277773 2.9851413842102987 3.4763455081144583 4.913429631908312 1.5383133001591593 +1.173407505749767 1.2131757454011192 3.1460691167361894 4.634955496950738 1.4894173914901587 +4.674938869026928 2.3251805040615183 3.2699302988850234 4.1101391619457175 2.4954589372078755 +3.4604746581581263 2.0082919639653527 2.018528226129988 2.4228504730595266 1.507418673320433 +1.621413932403431 4.819408382373425 2.7589792534459345 3.3001920450797035 3.2434672478486504 +4.647142609413189 2.55183211509751 2.5806462385964988 4.925726701083541 3.1447938633760804 +2.7908920422946517 3.284617231158529 3.85390515230612 1.5887622960429924 2.318326275872003 +2.5675273147828412 1.3807656983813574 3.664857183440813 1.101975578374792 2.824316776806321 +1.4812945230087466 1.9497161051387755 4.071184009401334 2.0575801567064578 2.067370129945977 +3.224807750554122 4.4055238523409646 4.220117852355392 4.595047000229082 1.2388149090739942 +4.833670063440581 1.3623675494080851 4.330149383499155 3.245677894429649 3.636759485384339 +3.9445680693507277 1.8948122980017224 1.7525706945004949 4.633075499672696 3.5353651374078314 +3.5280390021626316 1.1481848745068457 3.492232832210373 3.245300842072525 2.3926305767238114 +4.095719802627688 1.272000693016179 2.94388793390882 3.198812340754997 2.835203002113092 +4.194061417181851 4.387332670117113 4.384148006917556 1.0104878092321172 3.379191753460895 +4.434763609837207 2.682641120255063 1.560743332332481 4.3823677011351965 3.3213697922876415 +1.8398049190629582 2.8242984075826034 4.751663675421404 1.1772702431560593 3.707494549902833 +2.232416325019107 2.718621261944717 3.5719636543013835 4.7189368726777765 1.2457699644651647 +3.59642238658442 4.454950308859317 4.6350917003315155 3.9368878794147637 1.1065978351995829 +3.6593544438187458 1.2917861055995323 4.862823308700344 3.7646890324931928 2.6098426628283726 +1.2197763265276205 3.548102376437345 1.6533282318133717 3.765151814777731 3.1433900553785312 +3.8651148288775254 1.9760869225963917 4.38282273195431 3.604946776236986 2.0429188513477534 +1.2908490976191764 3.7959746017351614 2.3253007026478123 4.993688365575492 3.66004733726724 +4.211259800630553 1.5095402339603141 1.6521843096346593 4.427946517765483 3.8735183558382853 +2.828532515279457 3.162171300209354 2.1444118685149633 3.448893255299224 1.3464718813536678 +4.254020142201993 1.6159867520639506 3.940865855935808 2.0816817817193702 3.227349623034859 +1.2796245689738388 3.179111396448177 1.616412652063905 1.5640297453006977 1.9002089823673316 +4.008395372159101 3.653404036843044 1.9895990222157618 2.1466882036104744 0.3881956453397414 +3.4371627202683337 1.2166179709587048 4.513359107178129 2.757744076644774 2.8307248398813325 +4.231741900934622 4.166855562632045 2.372121827162358 4.241011717512192 1.8700159515763846 +4.72398727465541 1.0600940964967371 4.611688735092303 1.8064406193639257 4.61449132751978 +4.106227244095837 4.46593286018663 4.998911568310948 1.211012040679314 3.8049403361523573 +2.209145565854672 1.7712382013668302 3.8758497652520627 2.7651293121631664 1.1939274621109486 +3.943421197676215 3.1010476171850043 3.753286272027602 1.0129503157933297 2.8668858369561887 +4.285880656590285 3.5870703333492115 3.1635583299000998 2.7292349824256195 0.8227834697110362 +1.1000515241232511 4.930023832013021 2.9141939587204297 1.1440938793253062 4.219234784919786 +1.8400197140135877 3.1306921401595718 4.259112361193286 3.5788665994881015 1.4589618253852386 +1.7300571482440588 4.951478401095656 1.6894166023989512 4.576484712525241 4.325819825285392 +1.5933675642725222 4.632469412056319 1.4190787235552436 3.652877677903105 3.771736710011515 +1.8149917400930633 4.731386381521298 2.2502278646127754 1.6322347625157905 2.9811529948647006 +4.348128925450437 1.7100333404287649 4.525778963946836 2.7636300067324315 3.1724938554901336 +1.484572485377471 2.9608507839635987 2.96270849351933 4.696709585712249 2.27731363729342 +1.5579281680748491 3.1170774890751645 4.856402607774271 1.838703226746138 3.3966831114240437 +1.1761834213299158 1.2464251895931926 1.168191624265821 3.007106153923037 1.8402555674126273 +1.4131894491484593 3.5790769583304574 4.752829394891869 1.3245530628081927 4.055138383773814 +3.0527763516756488 1.6510730890354197 3.999778136371697 4.366273861477783 1.448824058682523 +1.8799856743541845 2.05172445038825 3.6924376662618617 2.5524761882952816 1.1528253893983376 +2.6871412442686577 3.299243567517992 1.2901064223781917 2.101215506023171 1.0161531379170319 +1.5146797287432014 3.1043267054652803 1.8763835908085031 1.1435572691481197 1.7504319262170502 +3.457747086577336 1.4755060080587592 1.2077477209334888 1.7914220911178118 2.06638705565452 +2.183995261755182 2.111606505145255 4.297501811994355 1.97163788554806 2.326990145322431 +1.9284591176766064 4.012874041525923 1.5406571886579972 2.904877550938807 2.49116092848843 +1.1968986055496043 4.116625307250237 2.263310710096998 2.7702661588111446 2.963411520461614 +1.0503880208069325 4.990387349412966 4.360366043441362 4.640616519794019 3.9499538021237526 +3.7797359388101577 3.0590744356521107 2.7708805431083263 3.872539127781125 1.316436340776602 +2.932000547655695 4.0487580022555925 4.9837675398084835 2.0349522532047613 3.153198187065354 +1.6345989601766986 4.1371781480964405 2.3225964128470276 2.490539156173551 2.508207997125652 +3.099408388323457 4.785556222398853 2.187367738098877 2.0554007537109866 1.6913041723254818 +1.9870983089251522 4.005054217314887 4.511573417865944 1.458325530967267 3.6598454485205076 +4.533830904816303 1.9016595930029472 3.7321547163791395 4.353556297826522 2.704526897658544 +3.299650059894048 1.7174672109285853 4.795587331111087 4.910240004399666 1.5863315552092778 +1.40999709711692 3.6427025063705023 1.5241966898010109 2.015891445583903 2.2862058475506104 +4.859014520524987 4.340991880467655 3.8479902698292188 1.7794204393984683 2.1324466227740078 +1.1075151567106092 1.6838446568291983 2.5024758961531886 3.621879285066092 1.2590550582943685 +4.522534709127128 4.461850207240475 1.7051565402343227 3.861944009496146 2.157641025827524 +1.2688896016979934 4.321434896012814 4.062409746833635 4.3350231035058515 3.0646942451213057 +2.699899212267636 2.1254359109329077 3.8307876581371954 4.577954966534147 0.9424792153238927 +3.5273876868439125 4.16704345317423 3.2036933041097484 3.1111642299435758 0.6463134912452897 +2.965218444245143 4.462988397543798 4.966021444653716 1.8643301831046264 3.444387248114567 +3.4680157330977277 2.508590396657215 4.926305413416777 1.9298726799403547 3.1462844916588484 +1.2906474311518248 4.115731190082531 4.911164624378366 1.5974375616897363 4.354524691739509 +1.6000263206862417 2.3167704029654774 1.5501591062967535 4.944080395528842 3.468778430079544 +1.8840746470251917 2.385585040666521 2.573203457721878 1.3727128374487214 1.3010343593826066 +4.270723465578099 3.295534833283124 3.196412952484115 4.531826568767144 1.6535786631156866 +4.290317330146635 3.306074635874078 4.602881614547105 4.69245460847066 0.9883101752331258 +4.46376128734272 4.981556925585746 1.076373377110742 2.9229792721882615 1.9178283694633755 +3.889077252412517 4.256136253773591 4.305343786467054 3.4174314076092824 0.9607917063594251 +3.579552881959628 1.58822183961998 2.983552105576618 2.9218981441834426 1.9922852534566882 +1.0684914990586054 4.623058819212481 2.4806961071060605 2.7523721987133354 3.5649343236947453 +2.1588466848086227 3.7160395335144716 4.806291005250973 4.240186752973503 1.6569018053304396 +1.2955487896654332 1.4952725260744693 2.1589523617624518 4.5250270537736235 2.3744892122435397 +4.422282971508817 4.190856183873175 4.661354499412788 3.211816427448479 1.4678961067151035 +4.837882276983759 2.7000596695095185 3.6337591568944414 2.5038921435976786 2.418033285288709 +2.879966386226541 2.0871866410228237 3.3305303415097285 3.7279195620351384 0.8868020731792771 +2.021245480855819 2.5422810236672073 3.5094509032235797 2.8477570809136385 0.8422094462518798 +3.774316422972208 4.0568641346966565 2.953586138544483 1.2679667686584692 1.709136000889234 +4.690663125923169 1.7098777696087324 4.327604448771748 1.1564165792221353 4.352184950619309 +4.625615773078241 4.310518401392237 3.3794430616608335 4.7820834801607175 1.437597474000618 +2.3223768036744556 1.9710138319112471 1.831623408937943 3.1278925599170697 1.343044917233381 +4.86813132170135 1.4836378300331083 2.535273225856528 1.1669612845797297 3.6506264892187157 +3.40507751976514 2.8844021609255073 1.7078061993319853 3.2097074323980213 1.589594332900083 +3.6476451303189408 1.7159875896225336 4.030869554775541 2.049670494449348 2.767029195936805 +1.9693046366501146 2.056339326267622 3.966860598571579 2.0310152560339696 1.9378008740377248 +1.5286502478132582 2.6748433330098353 3.143037193931505 3.5967664770832406 1.2327322705850754 +1.869600915553029 2.096953581308105 4.55709404358091 2.7374628528968423 1.8337794046003069 +2.813204423753789 4.0897667905150055 1.6532450812823627 2.221676034461185 1.3973994506807217 +1.6027688424344309 1.1722883826833734 3.8309480404530274 1.815222581652908 2.0611798930424374 +3.6550548068331223 1.0901189762177452 2.275521280204065 1.276149890221666 2.7527511675213123 +3.498410792703291 1.1942697212610427 3.443359292447059 2.524283783084051 2.480678509806925 +3.068634613655376 2.4081513236116563 2.8825809727930567 1.2680156918312275 1.7444366491547714 +3.8131358566195237 2.23997938755761 4.447432354847555 4.180079034163025 1.5957127166982135 +4.494733739768707 1.6259859002489088 1.7886554464863664 3.5793999799093403 3.3817865324017387 +2.4964753925886094 4.966696009902069 2.1223158321150275 3.4004926738827574 2.781317302472305 +1.0138437934319535 2.0656615429945564 1.741898996687743 2.9393151344245765 1.5937772696357335 +4.72485926877695 2.103413881509929 1.8145589873949097 1.9336943976920065 2.6241511321587794 +1.1364885989569493 1.1331266697928783 2.392667321692358 4.094419131916508 1.7017551310834578 +2.2457609836322123 4.167691311823253 4.078467175020474 3.5187757586931814 2.0017668865107576 +4.281700031024896 3.623928985661184 3.9615199086248665 4.806987822797129 1.071204341857177 +4.40023002257375 4.267654212711356 3.761324427338406 3.3554304378846984 0.42699681033389003 +1.4318398942430042 2.172256590653129 3.568957821473674 3.6022471882498093 0.7411646687904375 +4.2458968238656976 2.5281522788973274 1.423463891178447 1.1496405901282247 1.739432528719247 +4.140538384365614 4.543642984559571 3.510853511941344 4.841841723013182 1.3906915318321824 +4.589042483338785 3.284206260347354 1.0270597266707888 3.2463072041093493 2.574423612179619 +1.6983531391664544 1.33348349868153 2.505952039120111 4.432774304208547 1.9610644802729276 +1.2668990037964498 1.6472057656985983 2.9947048409682457 4.530294433406815 1.5819824997622915 +1.0777236910611454 3.6600961338928455 1.0788475810334957 2.63025189908679 3.012557516724115 +4.8091985550653975 1.6163813064205326 4.096577081995179 1.0338666073075493 4.424282702880264 +1.195699756651862 3.8543114738186888 1.3400988642768925 2.291541152677066 2.823731341826432 +1.74571493680455 2.7982712810263988 1.7898410778269587 1.1439280335583812 1.2349406943323085 +3.0927380565908713 3.304603426457172 3.9574022326213787 2.1682596691929175 1.8016431520198304 +3.8160448632125177 1.1575473028260568 4.720155064216877 2.8706687829105206 3.2385504138921752 +2.990251037703668 4.73191934573039 4.757430993173827 4.600324891639835 1.7487397811921226 +3.7378821519420358 1.391273870590911 1.0978259975778566 4.280402069814373 3.9541574174124747 +1.6533965114452105 4.550581221035664 4.559453207356569 4.472807557184463 2.898480068963467 +1.2780607600667255 2.536809351008992 4.510206622791097 3.716636541537662 1.4880193174350003 +2.7687741832193518 1.4613139246007525 1.2673800734260978 3.2474850534192337 2.372818589707319 +3.010668304268836 4.996808768469013 3.193514176965015 2.884867104129578 2.009979342954344 +4.3395542085035 3.31787244108901 2.650074164416139 4.717272384989814 2.3058929110021924 +1.5463004908953941 2.6409052558621813 1.1412097023879753 2.4930870239445535 1.7394631022321179 +1.6749034285563291 2.057670662893727 1.1678478266744814 2.1927658516383843 1.0940601965057535 +2.6957600144870555 4.580526672303888 1.7928622640594223 4.047919821455032 2.9389845085650057 +4.0731663273047625 1.484087831956904 1.593536645180627 4.597656122159543 3.9658619853742776 +2.243245825341821 3.501616187275232 4.783412418925731 4.503289560491712 1.2891721311018436 +4.699319710795451 2.8089396874877277 4.7717305421826115 4.890413153027004 1.8941019493780555 +1.0279035143194366 4.52921566539077 1.5447718984527161 4.777787993015547 4.765666778840298 +1.7259114211036577 4.027062000382703 1.4965629423434255 2.702716607425786 2.5980955818267915 +2.2686663767195223 1.9651265680665166 3.734603170536848 4.710011259190818 1.0215465505050143 +4.633256871698883 1.8537837641954882 1.1262597307484472 2.1035803658110077 2.94629027406562 +3.968413027393614 1.8532408929097315 1.0796054092418776 2.3059966163780015 2.444992546294958 +1.938629352243748 3.420401717722164 3.9279609892997347 1.9824040010082782 2.445575870380067 +4.006812317085483 3.3149105786124022 4.519873805077982 3.53165586473162 1.2063592803657115 +3.567738713228531 4.808837111396864 4.632477625488631 3.36470320133212 1.774141263958813 +2.4430706446246244 2.4024800167492226 3.972713642310608 2.4997181178823267 1.4735546864833577 +2.973074850291354 4.213119594036882 3.7176623741988832 3.9039693324654046 1.2539622200008398 +1.46481186781712 2.0549011734920097 1.479011249070516 1.4012664277169686 0.5951887481456353 +3.884214731394919 4.524148114452936 4.677448420059097 2.6094647009474468 2.164733562649901 +3.08624013304883 4.065929035264315 1.6372049296952524 3.395571371489624 2.0128693173558934 +1.7451843026348324 4.661450395503991 1.5174821101861369 2.153148347381776 2.9847411092972216 +1.9677538206887766 3.378413363134419 1.299732170522267 1.3942213855578909 1.413820553129356 +3.593582894787625 4.2690080938213 4.998622028038485 4.013052165648544 1.1948000473472573 +2.1705357990583356 2.9768792507982553 3.6355550886680073 2.890052116117523 1.0981641244574767 +4.433202670178522 1.5348107528057695 2.375716748461908 2.545762842076822 2.9033758593481127 +3.0391691378830274 4.096597632504765 4.11368025408522 3.8004878663460375 1.1028347532498985 +1.3505227598942948 4.483886626008612 1.9472755214372026 2.4290028014462615 3.170178274131565 +4.615482029271206 4.289839593864843 3.965858300287171 1.5082983291249374 2.4790409451229936 +1.7289981724978047 2.0195550179303186 2.553006023267603 1.7916189612151165 0.8149438868343086 +4.46349343944599 4.706589266934017 4.178327874759644 4.264912641716787 0.25805523286907267 +4.8248244859036475 1.5980176467718432 2.1098853318100383 3.2173291034213083 3.4115559623650293 +2.6216666975610776 3.108745014362939 2.414560072873083 2.659468322533477 0.5451837648447105 +3.3832699257414225 4.555989372812511 4.6157722431259165 2.4168386487173654 2.492103499888644 +3.2787416506363716 2.4085122792550044 1.790606719087719 2.4220601813581872 1.0751895804127618 +3.1324986956236542 2.1923958286228338 3.9483686054176 4.683105102885973 1.1931601406580992 +3.437511059306236 4.643567293771043 1.4680145854152205 1.8677887465387872 1.270586880379882 +2.5137635802740728 4.667066681982572 1.6418972460669639 2.502018488908156 2.3187330161564788 +2.7477035035368536 2.43467274224323 2.154528527401762 1.7144883196890892 0.5400218902228665 +4.808194387164368 1.5411880473139314 1.7750809133718404 2.7555403664214264 3.4109575142029023 +4.435798024898412 1.4175555177711825 4.262631844409476 1.5503131186771806 4.057888700024648 +1.0602640832717305 2.5524125807811617 2.1262461092200673 3.1110214304347754 1.7878169850108219 +1.3330218752853051 4.309817355679415 1.9656615171623395 4.49945009398774 3.909142602175787 +2.953792323219199 4.460106034567164 1.9381531514264134 1.2977527551543342 1.6367937147179898 +1.9414776620278134 3.007008331524454 2.3453823137461303 4.539909127169221 2.4395293690527406 +3.5511673641679713 3.593258695970099 1.9611795058388264 4.279216126402764 2.318418740108947 +2.5232606602041017 1.5550428372775302 4.4885027389979 3.8194475256907254 1.1768944859613277 +1.5990830102458564 2.82650919010903 2.42352428478318 3.3555979725029093 1.5412126350224873 +2.811545893160903 4.340538183126441 4.049978093189008 2.1702433003346457 2.423060113625184 +3.109484624539951 3.2237772707060666 2.845655528562377 2.054848986387366 0.7990230260226863 +1.4654418023784328 4.8278053618690455 4.147260499341998 4.021445573940257 3.3647166450749206 +1.108339103508821 2.712270276029407 4.868512538364846 4.092295069431891 1.781883488127084 +3.394045150473966 2.1169286461406585 4.505898778388792 1.1369570949434267 3.602886985751318 +4.866223357645911 3.750330935623479 3.7005372640844505 3.9579220476710626 1.1451911737125013 +3.30730253943285 1.3723408614412205 4.822917391958135 2.606138267294635 2.9424796316780264 +4.624896123499029 4.183239450420491 3.938615502864879 1.9258598795823856 2.0606420882652334 +2.485802488380662 1.0782307637564457 2.8940818456784507 2.592076671424222 1.4396059479030776 +4.256806928853418 1.5964709769122991 2.6919006864360564 1.3643240659555804 2.973188029781639 +1.8758690872361048 3.1633937792108577 1.7258117608631207 1.263134937105162 1.3681336468662102 +2.438530970995381 3.5159869067850233 4.67719514389526 1.2142832670888373 3.626660993268507 +4.6742984546325035 2.06505969918559 2.771467916189677 1.7288795685763674 2.8098251450055054 +2.0503157793692903 3.510751040537517 3.1285793246713918 4.490036805445041 1.9966065270899116 +2.7311996963890284 3.5970927503103014 3.817896552280807 2.726775979257553 1.3929518605119497 +3.3669521008871093 1.9638024257449667 3.2148363016229724 1.3101179504525837 2.3657516793054896 +2.8580585797720834 1.9792576866476042 2.6967940600150087 3.9156912654019336 1.5026647686880923 +2.6888325166215026 4.476792469713129 4.9121468613317685 2.8994510035011176 2.6921637041584363 +2.2794744524339245 1.5695102293478427 4.128246764798568 1.566329169923347 2.658471546019152 +3.8389299609053045 3.665189098533421 3.9977818360254522 3.5897003761677686 0.44352718646922207 +4.173160029669175 2.739407989145762 3.5862219651950014 1.6316138054395068 2.4240746630184087 +4.749004640430808 4.335945502625325 4.174150203942956 2.012103569473824 2.2011504948421656 +3.457366470241213 3.152263563637307 3.6226975788720854 4.795963441846795 1.2122873293241756 +1.3098107946457724 1.3166403837846752 1.8363204168719172 2.120268774138715 0.28403047879113147 +1.2797940559007053 4.380872269388235 3.2220833546580874 1.6889752006326848 3.459350617978205 +1.6683098843661721 4.4604918229694785 4.235577178747063 2.8433270117233027 3.120038542364534 +2.3242241702385082 4.9393998212007535 1.7525774894756827 2.635193473460809 2.7601004801586186 +3.1415838978621253 4.15162547464692 1.9333816842473297 3.115231973015844 1.554655618423622 +1.963726070280099 2.7046843441418233 1.4961531945855633 2.4806388838317694 1.2321652632397668 +3.5094802025905505 3.6685230402061277 2.3310388354145712 4.865158580009021 2.539105650448649 +4.544119847527494 4.145091658594826 4.846234429163559 2.7561614625225426 2.1278224788375706 +3.2913173501465507 1.5462994660442817 1.197051437173295 4.617912389115994 3.8402313821387204 +3.0022773356684613 3.351060669596249 4.514760727974055 4.106859698465618 0.5366871191856813 +1.431158749254538 4.329561167335736 4.946300024310764 2.6595703917865756 3.691865245293109 +2.0458207162878166 2.596545204165059 1.1073627850973917 3.838533020976997 2.786142192872128 +4.189337955063108 4.392430027417207 3.079827811326932 1.1479357132173953 1.9425378937336464 +1.78435501613342 3.771291071152865 4.039295112457205 4.010658734185677 1.9871424027725706 +1.4410742829151566 4.21450034982664 4.322747003877003 1.165079237175438 4.2027083973897295 +2.270779604896086 2.5238538794290037 4.124041840216478 3.159125798041998 0.9975517815512263 +1.6801788577732863 3.490751599272726 1.9740459297985615 1.6188730532751112 1.845080330088297 +2.1704113104625535 3.8970542731747346 2.361221875082317 1.0967178762099246 2.140155668134393 +3.294048946411939 1.3893350174605401 4.883586906997763 3.5305571495866173 2.33636997831712 +2.25284057764906 3.81623745752318 4.869026218181487 2.809643076918498 2.585588661507926 +4.736955966882623 4.139073139746028 3.5078592561963373 4.6015577784612365 1.246451095145442 +3.30183282665286 3.9474559621727012 4.319096112961334 4.483544918188057 0.6662376773036542 +3.632666858249979 2.489804158773232 4.860920373758726 4.363235478629105 1.2465253325526362 +2.5265951379577083 4.777479149644696 2.9192206284987496 2.5823083899993566 2.275958850796468 +2.8378927409626886 3.129940035770847 4.160612087094569 2.452560923807276 1.7328388265536525 +3.1012976882296535 2.388703152848617 4.443971824252632 2.061993287427067 2.48628492368686 +1.1255421015643576 4.250086977918841 3.6678460077554558 3.2606224963609964 3.1509699574235053 +4.59077441470297 3.7689850566971685 3.140957996637181 4.2229827161385725 1.3587182351553442 +1.6749171135116403 2.339886652689059 3.6548407164824717 2.027090207825508 1.7583390476432104 +3.641619089364588 2.6105440392292403 1.7785573765132194 3.5881392613207885 2.0827151405881996 +1.4484965709037345 4.328718533882579 3.664706391827642 2.117094754759159 3.269675876171138 +1.2612478862715966 4.723817569899131 3.6695759190253274 1.4930259303001279 4.089836019621831 +3.7943722901577024 3.8384665327444845 3.7643589890620697 4.421172906376201 0.658292354662301 +2.3697033052772474 3.605714348199065 4.731428506926631 4.906725123881609 1.248379830877021 +4.472472478342391 4.957578025590182 2.589204367910487 1.1407682126378837 1.5275125819028332 +4.898694255376317 2.4549385284225065 2.9313277203395693 4.1873732710101175 2.7476521756544856 +2.526479177707622 3.3780620165784616 3.2816856660590514 1.5402618937113308 1.9384917039691152 +3.2828652905749074 4.244037663171614 2.26033335116574 2.080963262093234 0.9777657995128799 +4.649390250939636 1.2116723027450123 1.034239308857349 1.6433603550621219 3.491265263521099 +4.538760353641987 2.433942580094355 3.2369502612510943 4.131285818118569 2.2869398654357895 +4.89546303000574 3.9372489210875625 4.667013518644088 3.2307901702450703 1.7265317214046034 +1.0774369562588593 4.378181272445229 3.683608181866257 1.2800305616206153 4.083148101328474 +3.6167669988780977 1.9820463140026692 1.6744969954131812 2.0860504736839784 1.6857306970677082 +1.4983160028641827 2.4668580301280048 2.5218387957119304 3.6127225095187074 1.4588011981161726 +2.185644628946805 1.085686184349822 4.547808506075558 2.840995510879121 2.030546522592291 +3.9303873949557238 2.88648956799605 4.665345498694663 1.0510478269101076 3.7620300814053023 +1.395651559422721 4.012397602665907 2.6317504974892607 4.138182282025132 3.0193867881225156 +3.164375723848914 2.3734449373371143 1.1429580964181558 2.441164342631978 1.5201680718791448 +4.237335012147803 1.7038815259606084 4.521446236235056 3.9571384555461395 2.5955403749547217 +1.9862341604097669 4.4296009764460775 2.971847134850591 1.485034954581641 2.860183885190518 +1.0384465012784796 2.941859823623117 3.065040534646124 3.131767647351897 1.9045825745420173 +2.320912515146366 2.5956371830546283 3.810229957507086 2.26727911260321 1.567217583153944 +4.29122580188178 4.617716663547586 4.3641289337966835 2.0749788654104173 2.312315791224055 +2.733805207915 2.7656347266322943 4.014835660219148 4.169461697537502 0.1578680768190686 +4.6435547155589925 1.0999154329661134 3.5493898154128396 4.727413660992939 3.7343164763970798 +2.271199858854362 4.481965978032443 2.8261343398611545 3.1500496303635472 2.2343696983997443 +2.7992830873222854 3.5048973004566704 2.118053860148065 4.407797170265708 2.395999967446944 +1.9604936801847423 1.219681468026236 2.7744866809710054 1.5928209359696819 1.3946815645848025 +2.8341858530688997 3.317507557169378 2.1384331423491583 1.8859286808701774 0.5453057607630609 +1.9953441082437653 1.396852083821316 2.404906645175683 4.356034523614346 2.0408558747049823 +2.767997365418405 2.6849459281853405 3.0715681176213416 2.1292528329593226 0.9459680950931377 +3.1415917080558144 4.634238897314514 4.42385810250331 2.4403253443169355 2.48241773970465 +1.2246629252749672 3.074423796057071 2.898705857817432 4.158089799262866 2.2377808630532177 +3.2280160078460707 3.6944359804859435 3.8791876903661677 4.495424809043141 0.7728491297224042 +4.964385887979208 3.5048965058235484 1.6050007146393734 2.680806751197255 1.813137580251286 +3.932550061562458 1.2383909697801752 2.523364640867916 3.3231795829959974 2.8103731342091356 +3.737441763425983 3.418177030360777 4.9523568741364965 3.7884155917796507 1.2069338335441988 +2.780511839459774 2.309822935909203 4.176745371264074 3.1144679357103646 1.1618869970923178 +2.46963193532986 3.9504026117751483 4.475506754637407 3.642450728675141 1.6990185810085423 +3.4479572975875246 1.6736491657196386 2.0659459442151196 3.3740320052872472 2.2043725842025212 +3.5699735818559946 1.177678047761019 3.1326074410717415 2.4801703457885886 2.4796677369664435 +4.855509343352326 1.2857049825634537 2.2837329359304595 2.8962493213101657 3.6219717691701945 +4.541908269525715 3.296156928043499 3.594753188074358 4.194778863885419 1.3827245627518379 +1.4599393376930458 2.4186152559987835 1.960061877834736 2.779988518954958 1.2614829420796931 +4.932494787634754 4.351086428630531 2.4954792869324933 4.409128320987388 2.0000220762429635 +3.9054592201883733 3.3619655587834325 3.091640371675343 3.6054474372438454 0.7479191537963605 +4.545559556704486 4.562810604083484 1.0171247101649614 3.7304088508797433 2.7133389811982624 +2.9061356772798472 3.1424016953005984 4.140814325361639 2.522875355101607 1.635098817428926 +4.043191751886397 1.994312656638845 1.0081582838816856 1.1836699008460987 2.056382715992305 +3.1037591949847574 3.512834874055894 2.9076604654315212 3.8593609576133017 1.0358941731791693 +3.507754683178136 2.307374096705354 2.419641476481027 3.3266896904174184 1.504543124933924 +4.7187177569404675 3.4434276611393173 1.7655418079077725 2.871589088446331 1.6881070508813258 +4.214817682975507 4.489993677501946 3.1829595997901907 1.5187086199350253 1.6868471038930866 +1.315297575457159 1.5714930225395358 2.562748949924957 3.7113652924552167 1.1768413696982827 +4.631517425707295 2.386232820361001 1.3701529127160397 4.134290809830251 3.561146061771131 +3.2979016871224722 4.960100765506596 3.626911594443257 2.8775556733669654 1.8233047119538541 +4.050256943104083 4.421007878951271 3.8739658612665924 3.89054100658027 0.3711212630310145 +2.705807959792576 3.6508009283950793 3.9544999657119226 2.3524631746840727 1.8599821479022272 +3.2888167623931523 3.249350610651461 3.873121028110937 1.4873710521903072 2.3860763870292554 +4.002607641741214 2.0953728296604255 3.4719951787387635 1.244108576591274 2.9327501326299736 +4.98078141314363 4.45261140668485 2.524629573714311 2.2147628796900967 0.6123568598359648 +4.97868996931647 1.1675298401844763 3.9199872976362538 4.2673326052799005 3.8269557474090883 +2.0712567719483497 3.073638684649417 1.0016897281398007 1.4112177154424987 1.0828123897030588 +3.748347122075409 2.944941609509629 2.8161661529377624 3.1856240300712013 0.8842847621648986 +3.018076275903335 1.0655963806222113 2.2783077389313693 4.878402916656029 3.2515646502420976 +1.9624126185902986 1.1860244404445588 4.913619113686379 4.150906621153547 1.0883514824862905 +3.0234619662467206 3.6540273466382494 3.0740493732606233 2.7966406841363627 0.6888891636177434 +4.939745582641935 3.412412332410234 3.72034003702354 1.5042170262191483 2.6914583512066566 +1.1819226033155878 2.0502517134705176 3.1526303067240145 4.314180357767651 1.4502392784026805 +2.6070695202202288 2.20432224446391 3.486150548171675 4.911755483695741 1.4814029837690053 +3.238270326339296 2.2469100171916443 4.469170102247861 1.2632220688324955 3.355726159196125 +3.4886270234859804 2.605929367563323 1.0585536124241366 2.191076488170333 1.4358841234096114 +2.823466561230984 2.0570386178848956 2.6783085848980033 3.0581252677648108 0.85537857403939 +2.7288593743969662 1.5007158247160484 3.1166651547663125 1.2353434324268089 2.246710484590598 +4.275849472298755 1.4343824627347974 4.001945551222077 2.4139294092394916 3.2551082982963244 +4.5231622970969685 4.165153424001547 1.3595855440976243 3.033666054320606 1.7119333830273573 +1.9838148725656426 4.344688156008518 3.852608636579119 2.1263423424488326 2.9246739952898433 +2.0137049503723365 4.8907991633289445 1.370553038352932 1.124723532518359 2.8875774026278975 +3.7838732467327274 1.473734052579725 4.802823383339957 4.089310014658002 2.417818112193255 +1.982458740680983 1.0421354804313285 1.0426077981909851 4.126622027547614 3.2241823150437234 +2.0105338085492868 4.3588645911580794 2.2530771009094646 3.636154491128091 2.7253551203250543 +1.9018397561616855 4.1996881534220325 3.421290730412238 4.968612039938813 2.770254589691529 +3.299619738913918 3.801626017131149 2.352166580085721 3.450039792782809 1.207201679309361 +3.752798932218537 3.5491141090054237 1.878117232320076 2.4589877058904177 0.6155469228849983 +2.2638396706698476 2.852386872128622 4.765513622902549 4.5181484781231 0.6384178280692926 +4.089593344847925 4.924055852426079 2.1309452908968174 3.8371337953015177 1.8993174798112 +2.862479257748853 3.389718784048079 1.3526647800780802 2.6714377747446876 1.4202618524603707 +4.83106966302601 4.5900188195890195 1.2561594116331474 4.5813868348879225 3.3339530478828396 +4.911850655956386 1.8524807581938907 3.168935192388205 4.221701287648062 3.2354382427522843 +2.962691815440004 4.409961941259107 3.03150945832456 3.0508565678215867 1.4473994361385984 +3.6573017416733364 2.6589604228110453 2.3547969097809593 2.6138083596486656 1.0313933876607269 +3.9683172627752814 3.6250648789387157 3.1169650137232345 3.557788910488376 0.558701984038619 +1.2690428678755086 3.114660314181307 4.044131552177188 2.145807997337454 2.6476283872491813 +1.2000533224518768 2.2432696998750923 2.0169108917725698 3.7297981809914407 2.005563081952694 +2.5844960388804736 2.1942439481475313 1.950585376930582 2.390543168574844 0.5880982509325532 +4.247359259767618 3.9194202730067484 4.207497166878965 3.5939932310586125 0.6956515351128101 +3.283132804327335 3.521594131315334 2.126428568341917 1.2957617423220018 0.8642170909666606 +3.0300336284200555 3.759860320876776 2.162622453593915 3.1849096078459365 1.2560724607963556 +1.7154638500291406 3.715354761750454 4.077018724628937 1.6664774786384329 3.132135494739485 +4.317147743470031 3.8934843496338156 2.8754836050637174 2.9966487265592763 0.4406491324669248 +1.1336733491256084 4.088023941704867 1.6778629705615202 1.3343712168544193 2.974251840167237 +1.8187975478081024 3.0867112365574125 4.484114026103278 1.6054731513954041 3.1455012967183453 +1.0422206432295265 1.0219709759875615 1.705727780864001 3.365729686110525 1.6601254092524154 +2.6443785375781 2.1316290836286966 1.2923274380019358 1.4838049678649385 0.5473350408733652 +4.951489973977044 1.4216820742747411 1.1903038933003538 1.741006925971739 3.572508591871298 +1.68296273748504 3.311410762376896 2.629667886346979 1.9800087528334602 1.7532541058077469 +1.9164174601775619 3.0328878979258467 4.571569187548039 4.122270344210937 1.2034848104525058 +3.619731541271257 3.513001736706983 2.853062686377428 2.692577240764872 0.19273512766433842 +2.5631664701023698 3.4793068812584336 3.6671209076801774 2.9850413514897878 1.142167139225289 +3.0606629068155145 3.8692484963541096 4.960375084827527 3.406898522592843 1.7513138168306586 +3.640481052474378 3.1911782247343385 4.856500956325575 3.9152059549649905 1.0430289116806006 +3.0860933415719334 3.676641043523128 4.373312495830679 2.2205956965247626 2.232249136251092 +1.7194569387469487 1.6734234737821247 3.7811257846194737 1.8359528470488096 1.9457175635106845 +4.63240983324631 3.364044364790219 4.902283079711919 3.513894639473496 1.8805247731842085 +4.420262484049584 4.613149576471901 4.408458043525532 2.2158438057855863 2.2010821488447583 +1.6126419441193547 1.6213345832589354 3.1483777248408455 2.322322575294775 0.826100884920717 +2.1486331961563896 1.8145767249914306 2.319669630930247 4.924604264137461 2.6262669645734014 +4.003871353722525 4.490420815119094 1.454513309428322 1.283392143089757 0.5157643182252553 +2.8194300748842687 4.723743743926224 1.831722808378205 1.6206916569772365 1.9159709541017718 +4.8334984823067835 4.038641270456933 3.600644420100019 2.555083512163648 1.3133908783886257 +2.476462637802098 3.276206927823672 4.822658877604763 2.0971876690405384 2.8403845229360485 +1.1319292459902859 3.47295879631899 3.87089191244065 2.3856109554907383 2.7724499772926943 +3.9776610665835657 1.5195759069518036 3.2461698272406423 3.499529259330845 2.4711077786755835 +3.2566599684310744 2.9297837918583576 4.198160567279148 3.827328602333195 0.49433225773408146 +3.772003751329894 4.614026048917624 3.4834512720022306 2.051704366145995 1.6609939048846096 +1.4068457905437537 2.38269644097135 3.385677457489235 2.64471331960957 1.2252805170913794 +3.1963626786423798 4.281986434687159 4.098761923322892 2.8481336517061173 1.6560948081121245 +3.348360594212326 4.055599795205495 3.0574286739707937 3.9407022550815394 1.1315297196758278 +4.642439477422803 4.454372639534785 1.5616870179731457 3.0844527379906737 1.534335222033861 +1.0829741087196125 1.835205833643923 3.2975996043208813 1.8961912690675846 1.5905338380870806 +1.1639123149896085 4.120704795399355 4.370756477437647 1.2140940451366267 4.325175081278007 +4.372720610552184 4.807140382685139 4.143668452367867 4.7251022378552605 0.7258001001145215 +3.246049057577879 4.061829560570489 3.745873199177645 1.1470132153987045 2.7238889559507284 +4.823715448696301 4.706200198212393 2.2524183290846334 1.8246286611327354 0.44363705222027033 +4.49449224798828 2.426776373173081 2.4224305305603386 2.9082068496840923 2.1240121400745817 +4.322025565309998 2.8363125859711906 2.5881639439121074 3.023620111398985 1.5482135288060737 +1.3905384161566734 4.415558231010282 2.125039015756884 1.5356498776447967 3.0819027298702126 +3.9975098326522196 1.871643466087027 3.0047896394963978 1.6274652672986245 2.533047617938337 +2.7195657818267063 3.7393692290639917 2.585048749189814 1.121368037001596 1.7839171220179655 +4.809144169250466 1.2288843833921765 4.442309995475858 1.5929655562036165 4.575699276377949 +1.5618885339494937 1.5488705614941853 4.178351914656728 2.00535924113642 2.1730316672289396 +1.8802912103523832 3.7431579132152364 2.447644573623794 1.8379169622806044 1.9601122704246787 +2.8763710390404964 2.2876371944513654 1.562449680678569 4.686189956191161 3.178735731171149 +2.0161660435604176 4.9911728917183 1.6846361141227022 1.1870940103751328 3.0163245666850664 +2.3759050561258053 1.634782133232474 2.4267108490515126 4.955716369168078 2.635361855157279 +1.0848568826961271 2.9612828165968708 1.136652453220655 4.459306784666447 3.8158886372234138 +4.028416539931518 3.0235027428425787 3.247907706672534 3.8321445410878687 1.1624045845863487 +3.86842848216367 3.104174977493683 2.5157120453345745 1.8506047818883924 1.0131392260144836 +3.2492542859496187 2.2327890575647173 1.5409364376764367 1.2819550516459723 1.0489389490460492 +2.2028552335412286 3.6408736617842363 2.462394564043882 3.639246299479375 1.858191865003187 +2.737929337525161 4.641435465469186 1.443000593843975 2.5670439114635926 2.210612801692276 +3.056414004367615 2.8069057230106798 4.713864053778362 1.9287608079335925 2.796257225735995 +3.9706429437075546 1.3514464011188125 2.5429201443908305 1.6512894824625088 2.766802444338872 +1.1757337018161063 1.6534538091347564 4.328327630640523 2.45145873830131 1.9367119920027256 +4.87160983593817 2.297415074299772 3.0172434086046156 4.256921027273003 2.8571453006583143 +1.3872458527186988 3.9292293198492083 1.1670822075358869 3.1985848735176137 3.254025665088662 +2.739777827623772 3.713140247965933 1.5187284264638343 3.676130665870234 2.366816178736764 +2.7708783773428216 4.355420859242718 3.1762709249878105 1.1062986145610236 2.6068295385159144 +2.995365915195242 1.412083417141242 4.069024870837353 2.2936496445341445 2.378810766499783 +3.40039078053565 3.127297277646153 3.9118678417570996 4.682451702817932 0.8175448295034814 +4.050536773538308 1.1342907224075116 1.9659661594457774 1.1882713056117828 3.0181617445749724 +2.429837280551792 4.1984886456842645 2.7801170633872077 2.6861066425502362 1.7711481052161908 +4.511562137994465 4.077341839847544 2.3710779457278597 1.3099728281598844 1.1465126854299292 +2.478099801486674 1.082395654887093 2.6817174006840983 3.9028368198083854 1.854487179949676 +4.4912676261601145 2.1369676769279033 1.2266876764162968 1.7501010418056304 2.4117814581804424 +3.459643263331015 1.9038827292975178 4.188411146925837 1.0953834531104851 3.46225521213629 +3.6383619232750486 3.6751409419282624 1.5032042242645685 3.1782316219900055 1.6754311323787507 +2.7075963844992033 1.646816435347239 4.530808358080531 2.796742888905134 2.032790484016819 +4.684662128382572 2.6427658045924693 2.186143566047883 4.8211776632418655 3.3335784512266153 +2.3524915337314485 1.8554296879989458 2.2960171132937246 2.357754947896567 0.5008812620815938 +4.051062144872585 3.605748099969676 1.8155929109004938 2.316487665921419 0.6702239582372915 +3.55730230323839 4.21318066757371 3.889655440240353 2.1406489079592177 1.8679401164826608 +2.589239405704155 3.7492577079092726 4.4540696571536404 2.358676092974705 2.3950608865440866 +1.6342417678165782 1.752779523825664 4.41484973280817 4.577485225136982 0.20124985208616858 +3.2496558137520064 3.4360178038270237 4.331018963961564 4.0942031398588705 0.3013511670628783 +3.022131035552318 1.7702922350767163 3.3058336246802713 3.163966168652308 1.259851879173119 +1.2012446806847676 2.0568385580942716 1.3371250200263494 3.51694412055761 2.3417199222156233 +2.6989827101930213 1.8860862957641036 1.6625942074709417 3.228957428317223 1.764736331640318 +1.6819808245819616 1.7787085360299475 3.040121018680279 1.19597615032544 1.846679870914678 +1.0924143107563764 2.912907623068799 3.734522829604166 3.8180296964548246 1.8224075551274115 +3.4561341790253257 3.3737179467388643 3.4090659936366254 2.3856160556003534 1.026762977035472 +2.933479295168466 1.491967269934102 1.9970962060753346 2.095198010003247 1.4448463180661075 +4.30181092476929 4.529980254548578 2.6340085120964174 1.8989416034371787 0.7696652540278657 +4.926321006871522 2.2391884648005425 2.348356757473008 2.386307061897079 2.687400514300524 +4.9297232161906805 4.187655633027157 3.4238363384301813 2.9456969239252464 0.8827692777194246 +3.8787832435970153 4.144233055672457 4.772207634498502 3.772237125371781 1.034603606147804 +2.9345130127935684 2.030108068870014 3.50461822605998 2.5315097141901886 1.3284910532129328 +1.3720854982954656 3.714799516307852 4.301925877718727 1.588517551673732 3.584814320720397 +2.2357995283642595 2.417369660477532 1.5738964648311757 2.8769552519722303 1.3156480971829616 +3.6747119844489906 1.4535412989101082 3.9940054726433476 3.384589378161398 2.3032557805226284 +4.560183661283918 3.4899381047209395 3.1968046117139863 3.1474660618477004 1.071382211839317 +4.975125502231499 4.66755525165018 1.8796588872418294 3.1194449317069286 1.277367956030318 +2.565343351148847 4.327960393736928 3.363181782222977 1.052016138698455 2.906596888223421 +4.557127468918981 4.421848339133114 1.7801874973379417 1.4976720970455788 0.31323376950446374 +3.2250267418541005 3.3614990619238254 2.9724775632537277 3.9947935409842388 1.031384822686617 +1.546103648991191 3.804304839979466 2.091030375085256 2.988244275684556 2.4299105749820247 +2.0970778593089014 3.896349258120666 4.892646492520475 2.146009342652006 3.2835031901339202 +3.1035211865770918 4.587880985243688 4.342967718724645 3.100135415048494 1.9359638805924313 +4.272932496673064 4.6118467325636985 2.7967020036987096 2.0453681937276365 0.8242362242069813 +1.2834925136108941 3.7839082825784844 2.8065306462533828 1.7995843795071003 2.695555564594442 +2.9122962883797783 3.897329296083521 4.086676401422574 1.9717117777662874 2.333102094976441 +3.972763702198909 4.952238386318248 2.7032744127075756 1.9925588607719926 1.2101600111529796 +2.34551047846552 4.041408082175904 4.5068478754995915 3.6583405416951194 1.8963210112717193 +1.4116166961742636 1.3296441892581625 4.638755150293157 2.739328404059584 1.9011947444166706 +4.712441683892254 4.2972314275066665 1.1510443956089715 1.2795290897094476 0.43463533407429983 +3.4506441000972337 1.1123504955244332 1.2065348153047988 3.439426786816097 3.2331754572905056 +3.395712034278693 3.226924711618007 3.485265260573057 2.329438250323402 1.1680861431904832 +2.5273462338070822 4.883450828315578 4.519543985597185 4.922595793618655 2.390330441636348 +3.236427888661994 4.90173425568714 2.2547216129006866 3.7805285636907326 2.258612881202467 +3.223246381679 1.3748750635498648 4.518791547269529 4.174850585601538 1.8800989109074924 +3.675593855918765 1.5695195414649046 1.5827688385844163 2.9155952024752856 2.492383424412234 +3.1452741996543256 2.588858748683622 1.1750914819889169 1.972822905780021 0.9726117306421478 +4.824915611852912 4.850271296786913 1.7660044807893494 1.1865082009449344 0.5800507297745506 +4.688707872972438 2.5103254293968877 3.057800907466965 1.9852182711692707 2.428123469300006 +3.301302624768255 3.3992124821878793 3.7237047646814005 2.709618690828695 1.0188017007062395 +2.7697958230246735 2.702203965432855 1.4097311393069685 2.740382308507838 1.3323667638110586 +3.6584952851314414 2.908773655871085 3.2991931383975115 2.8106459799463854 0.8948524165534074 +1.3821847860714218 3.4724818400163344 1.170422124242159 4.551247786698825 3.9748363404870317 +2.609255396583788 2.4740278073514315 2.340561110388206 4.781096001245548 2.444278432253915 +3.076624519993046 4.05475998554328 1.6998495698625158 2.152476252566435 1.0777847200915063 +3.780493344561076 3.0007216619064314 4.648742890987864 1.44687936775939 3.2954474504156663 +1.568204915257966 1.1284927058965208 1.420902041048477 2.360933352147839 1.037788847940037 +3.201289523475091 4.920152218750278 4.198890944671343 4.91028753858511 1.8602618307756547 +2.047510555350707 3.430170530099372 4.0671112886239404 4.647195202466888 1.4994152036281778 +2.971015635405169 1.2784338663864325 3.8468486639993142 4.120466344263798 1.7145552425535646 +4.542760616254229 1.6466312528184193 3.6134233531114854 4.658098452912155 3.07878407068418 +2.104606419830127 3.566972304572672 1.6447681192858452 3.445029167935809 2.31936496139463 +4.777034845074551 1.6959245433825445 3.1744043617220727 2.147344590235267 3.2477826998429467 +2.9239989722461877 2.050968420464781 2.3177369263719974 4.069318833551401 1.957095174461882 +3.4648628477879635 4.880663458169682 4.084473450000555 2.9313281054035962 1.8259889249726806 +2.239080483181195 4.923522481859147 4.464360963732865 4.833226692065393 2.709666173129887 +1.1063803379000885 2.101605270595686 4.150389958947168 4.5818905161512955 1.0847420880220466 +2.8901151370592233 1.1043399039654624 1.6850149670527244 2.729370535872824 2.068736749143455 +2.3668877094847827 3.1820540901760794 2.513419494817458 2.930580796416671 0.9157072565843832 +4.693538070804338 4.57761538204667 4.079800608896506 3.2061557300244288 0.8813021298897524 +2.6132168931265047 1.6637705172031754 3.3520126156181997 3.8734725661165217 1.0832215381572028 +2.603180381345961 2.280015324444856 2.3060969942494363 4.4353400431659615 2.1536275479667406 +4.229291726087403 4.578777664982143 2.0207158438925266 3.9997515248999957 2.0096573459636935 +2.3380663735048843 1.0944563612770581 3.492913077728966 2.328382784912852 1.703730220838874 +1.4605094208840628 3.307075836061564 4.703589699157208 3.730972840269284 2.087053204845171 +1.1854315017303008 1.5339698635176209 1.0011004805371724 3.311666417318709 2.336705787610526 +1.320992377405306 4.3706939008655254 3.9166435405595883 1.0412589917480002 4.191481323558534 +4.907669949965113 4.1408495046638425 1.6996543333808467 2.466160192231888 1.084225450257008 +1.3232064777786219 1.2342626074174228 3.6371382229458815 2.232916003039534 1.4070362663959806 +4.913666842722126 1.7748108924413 4.544817217789971 4.350078424986476 3.1448910750669743 +4.461700073918738 2.9764684374588106 3.2564805487276267 3.937295892150669 1.633836756160685 +1.5919850225811816 1.353594699825595 2.4302380361758003 3.8792440664812338 1.468485077161162 +3.7200370112928 3.3729575963967173 2.002729283728678 2.0812849318524016 0.3558582724860354 +4.025111790656823 1.0137875655493684 4.830648645268774 4.544616212846907 3.0248782026911725 +1.2585070520762827 1.0401691841010199 1.693273682597964 2.045353825576015 0.4142847470900035 +1.6542538620171334 4.3057485747014805 3.136783157611595 1.208041113069342 3.2787909487764053 +3.719286711446184 4.564976526154799 4.5389583196180805 1.054698725045887 3.5854227345001144 +4.617046678556267 4.613311324142145 1.57419459153318 3.8987847036008523 2.324593113212588 +4.802153637740465 3.434077894808943 4.761954313898361 3.4715037115428014 1.8806631797101423 +3.554124077437399 4.376278311371978 2.803796082121494 2.893967037175944 0.8270842674794306 +4.474947685638732 2.421685613098218 2.399378595710402 3.5893807914902034 2.373181485789512 +1.761002329054158 2.108855622285893 2.069454266051998 3.37675183973209 1.3527855926797931 +4.23961415137002 1.963137887280915 4.080917183600853 2.11916657816778 3.0051305493901785 +3.0094984353275027 4.498883718888308 3.626672946495052 1.7374414307651316 2.405714913059042 +2.735478374435588 1.5505971533374572 4.663280411825646 3.263831334248241 1.8336851498671323 +4.35587542073471 2.3464382061704403 3.6289153530734852 3.639732151558092 2.0094663277609977 +3.8054794088749575 1.1013187992242472 2.250902314888935 4.456654957677852 3.4896746730829786 +2.7524935185207338 3.2819764606236017 3.4247440593330944 1.782487389836254 1.725502580260245 +1.4545668962125564 1.3187976590817239 1.691891266300773 4.236835539963673 2.5485632505003037 +1.399188957177501 3.8530144299870375 1.6367017546405656 2.8490343330586474 2.7369709044311707 +4.933278315791416 1.4869377668536052 4.512833428519806 1.646754856139189 4.482373206495894 +1.6262104535141764 3.2192025713807424 4.918313638967632 3.2925040395169973 2.276154814868892 +1.9834667059806042 1.7639910172628368 2.9638334814850977 3.206487967199382 0.3271861509529431 +3.3156977792131666 2.3867883514241783 2.6743335675053563 4.504075211374268 2.0520300213065528 +1.0604266817870527 1.0209847573986326 2.671040175440201 1.3892876594236583 1.2823592233513197 +1.2242885139681507 4.270447471715059 4.1657834354246805 2.9875412598866546 3.2660892547629974 +4.584943909336058 4.346916807741268 3.5715462007176346 2.7846269646130994 0.8221306375783363 +1.0924791936573381 3.5259580274684215 1.91447807442291 3.209118340084762 2.7564311440846008 +3.2283146543279053 3.401891300938488 1.2306049954345841 4.085134090136698 2.859801602340527 +1.39889383932395 1.0271610807168754 2.4854103012344635 2.5041113520311327 0.37220286554851406 +4.4812153808825546 1.2206355909003719 4.223035097887342 2.282304644799828 3.79444531629875 +4.256086220464292 4.949618811202754 1.8041296364770232 1.4934348634065073 0.7599465089266101 +4.6112344503627885 3.821385131762104 3.761966602089827 4.422144350137311 1.029415661970913 +4.752937393811497 3.9711349760919568 1.6724379038415775 1.743717234366072 0.7850450708794618 +1.676744187586857 3.449808877817914 1.4704295585911926 4.113040605834053 3.1823185797079088 +3.91126156027423 1.524159799260973 1.9034160553195165 2.082675563931154 2.3938230487778918 +1.8606653328262954 1.8653052829538765 2.905124959727217 1.1221750918563118 1.7829559053655997 +3.5122251315832345 3.24380783091847 2.4976136251592562 2.9117966590486652 0.49355388040009773 +4.8454775420880845 3.505396138865029 3.727293532370476 2.273286918771273 1.9773602098895628 +4.503508595019704 4.882523577336574 2.9670129952155517 2.513843697832637 0.5907747192553029 +2.2467348972229835 3.9892606013150975 1.5271416465593903 3.8781643117806652 2.926380597565167 +4.551479245328647 3.923104737365073 4.159997792355915 3.300806069215429 1.0644552312669522 +4.889999847057845 3.3324604890681915 3.1331330709678773 1.9907862636566267 1.9315499164818466 +2.410940396512256 4.692774209488516 1.164490262579779 2.5230034097850984 2.6556211177748006 +2.0142664898367717 3.801155646779847 3.6494312317474455 3.483429873109797 1.794583324972758 +1.5139962895522587 3.0073254276674692 2.8058253171680856 1.0183370584118414 2.3291943220640365 +3.6160343855692694 1.645261859998942 2.954736123821273 4.672743889601515 2.614477965258852 +1.5934484173615506 3.3645259338432636 4.747025722470283 3.387641325766083 2.2326310728353387 +2.5165923475870833 4.1551098108356515 3.504613225042126 1.4534427830042485 2.625269445154227 +3.376760668091175 4.850300405367449 1.040669764505413 2.108734812327617 1.8199127187070474 +1.8211903363515298 3.0600687567862384 3.1107837354631744 1.2683276077383088 2.2202396994941123 +2.586635378512961 2.5461739031181865 2.3282481396474792 2.3079003312398605 0.045289781387362886 +3.3088495557939113 4.796102782013929 4.419352870142937 1.8563741258551252 2.963238465357282 +3.6198008142023093 3.4781118889321267 2.01027635518332 4.541924113346495 2.5356096156460772 +1.8465083209588364 2.448052924288046 2.894570368949095 1.9232571073500448 1.1424996113577812 +3.5205530677606167 4.674908960924576 2.7050617318201446 1.1809858233806865 1.911895630720443 +2.5577996660100624 2.8611628032485314 1.8834857847363162 1.840040124819378 0.30645834692627394 +1.6242466052404478 4.175356146160612 3.6633049722842106 2.5788660336741804 2.7720331349656595 +1.8733549697878091 2.9072662609527002 2.174699323699356 3.4559073302766534 1.6463494507898448 +1.4721893681401177 2.005103281085858 2.7096951419438904 3.723244473623183 1.1451111240218919 +1.4052220826343076 2.1695141769541784 1.8102979700903976 2.091155602513851 0.8142624976814061 +3.045618673475578 2.3892337465638764 2.0644165046386966 3.538593622630655 1.6137036120328778 +2.533107486347471 3.2980032549532026 2.6562858239629494 3.9871387921175843 1.53500330933746 +4.69269739170606 4.3875765442095975 1.2879307506581856 2.4034815789946755 1.1565259971912385 +3.3701148126305847 1.6360726385471884 1.5147291345583134 3.3383396752250603 2.5164374948587014 +4.043992513539053 4.5368009348616045 3.0443756273226343 2.6309685361657302 0.64324611397601 +1.5023397454752598 3.5271886799134506 1.9809063622790863 1.2469520810732675 2.1537646329615097 +3.5712952814641747 4.487930515201926 3.6278718373086005 4.657059286384186 1.3782042508511476 +4.2586268430384315 3.5361694970404174 2.8426558620708566 1.9984452247381155 1.1111418527677945 +3.660200174482164 3.946797311624373 1.150470176201258 2.48514760797212 1.3651013756848152 +3.095726341449098 4.7205401211036335 2.2031805217640206 4.3800964466661725 2.7164283098671773 +3.400454887204049 3.997834509058757 1.7386333177061055 3.2739242273368836 1.6474163377246736 +4.31047639894223 1.5430039170084728 3.786824851417509 1.9119574118644693 3.3427581207973693 +1.2136608723590645 3.620450838647817 3.0804037547700367 1.1313412039900217 3.097011909677022 +4.4024222321139135 1.5351379094890008 2.3499531502393785 4.270338706881777 3.4509708884502834 +2.0613491971663733 4.889346839708225 1.993145837155709 2.679828247539383 2.9101724002114726 +3.1389498697958955 1.5583640526387845 1.7524099281495733 1.5329890786337672 1.5957434112665012 +1.909639029658892 3.289339008008735 2.2662878806301006 3.990430185028105 2.208220712717236 +2.0529047299004435 2.07905708742158 4.714652839823453 4.940159986883309 0.2270185436896928 +3.3805465381484767 2.4124433882415732 4.101701099309467 1.5972913358148753 2.6850124715439785 +4.2921663119588365 2.330796806033511 3.6645862437421584 4.581855363593242 2.1652604871022185 +4.520947253868082 3.650270171122358 2.7490784671700506 4.662425149416224 2.102135606682177 +1.437371538378859 2.3166279359063493 4.68596682685444 2.370071083215066 2.4771889124570188 +4.633810844912825 2.47518266413928 4.758682427005776 4.7517393887545465 2.158639346581513 +4.610444120959134 1.1273930587237468 2.7084661667284484 1.655460178542553 3.638745156409612 +2.8349477386203286 2.41563204877967 4.897020683183684 3.2215648141974653 1.7271299941425697 +3.4379958975278626 1.4650733544487293 2.1344402721460667 3.1327487006812245 2.2111180609533654 +1.233369743942644 4.929690046483067 1.1550577656625616 3.316790504176972 4.2820406597482865 +2.8277188639607354 2.2756473453797756 1.5792657158376513 2.3564848776113005 0.9533376039244549 +4.4536380762835925 1.957222129110911 4.7885436946643605 3.591048878466216 2.768769838054349 +2.2829435175390653 2.8154967672028666 2.049818278144141 4.41378216224919 2.423208247155103 +4.2903877214448976 3.2925121754936266 1.979202859406767 4.032440954620094 2.28288025985657 +4.021578541476302 4.7530494125680605 1.4642709827098548 3.4255434364142103 2.093236554457054 +4.025618277749198 3.3676900094667346 2.024673847772239 2.264908714634709 0.7004158746499034 +3.6983612567490534 4.920081174430139 2.415921754068317 2.508699402667776 1.2252376297430325 +1.0258656707414966 3.167607187164814 3.0759999922919885 2.8103798618734075 2.1581498504169807 +3.695689024524082 2.160387207379484 3.144268007685757 3.0722687978750245 1.5369891203066062 +3.717573958545343 4.513213984479814 4.420692702661522 2.099761513765144 2.453520864892116 +3.939287651339872 3.56322204114254 4.340499184981466 1.259804444804809 3.1035633432113503 +3.4130909625212476 3.4158114369144004 2.0734801508149032 3.8926988112615057 1.8192206945552412 +1.9712173504643156 2.509194897961663 1.6389048018057908 1.405175450667278 0.5865571167370583 +1.218942380152261 2.9735140862291356 3.7031341620360814 1.6690735644078751 2.6862472683260434 +2.7346554888591896 2.633627860199221 3.3959357250330857 2.5902491789142412 0.8119959312395411 +1.6071593203034227 4.221779578488439 2.4388429850658984 2.9384760008753483 2.661930172825412 +2.0399002583151535 4.626548156646211 1.165908892535449 2.480060373090566 2.9013344281184965 +4.667193975606545 1.123077199790397 1.6059938285158988 2.681788642001169 3.7037951079053033 +4.6709198777137395 2.690111138507977 1.4928486256293718 3.7589207658771273 3.0097651413558775 +1.6708015412455484 1.6579779302337943 2.725342507596395 4.7533794346297285 2.0280774695287622 +2.0185554200801015 1.046754563775861 4.758489660657663 3.3638281106132855 1.6998463882027224 +3.5736518356484335 2.6390407840282353 3.787554546516575 2.034904571271763 1.9862728295821432 +4.019731146074001 1.248385328917537 1.811552950033895 3.7711686553780717 3.3941790393115956 +3.7414775407594942 4.512476440896473 2.3901523888150904 1.3801092350626032 1.27067953334218 +4.762240865485886 1.4356126951955588 3.5462860887051857 2.7844980764678313 3.4127373117422484 +1.1976383399088926 4.480246565615253 1.6533496242129764 3.6985278721440733 3.8675923814804434 +3.8535409144662927 2.5620757471033206 4.937033478310251 3.8409346614851967 1.693905220122175 +1.4300863071020182 3.0157094932770137 3.8343901904489495 2.3685558147982024 2.1593682653440935 +4.149688427275451 1.688375151872099 1.7190448486406749 3.185167038269009 2.864886963668437 +4.041717896538888 2.5385458685822364 1.6936643061702537 1.5019190046699813 1.5153522383521074 +4.187921173583986 2.746088606983871 2.0883790730794676 4.347744819167275 2.6802266181619023 +3.760551611635464 2.7736535649342113 2.870387473220482 2.2582227893991047 1.1613411878947868 +1.7050356521094199 1.3516413107727918 3.3754963372813096 2.712787280426133 0.7510465062342191 +3.450901663954555 4.888178295391018 4.455507754569173 1.4184238946784404 3.360006322506275 +4.266021077948869 3.5133706015752697 4.69453289006073 2.4064439376079743 2.4086996064104285 +4.928273342212545 3.6871459363790606 1.4422499831056577 3.6044017788725595 2.4930498642123053 +4.877328731131855 4.995492518261669 2.5698820181590243 1.4826993523636434 1.0935853096100052 +1.9755221961787397 4.587975449541778 3.957889502350901 2.719818161906391 2.8909743418157814 +1.6994560140901727 4.934932036355555 3.9300814544553035 3.782024345034261 3.238861836865589 +2.086356060879222 1.0971741680273173 2.927421873595717 1.9340169986260856 1.401903728063916 +2.410142774742083 3.56284330854952 1.3811489868655955 1.5761742523437272 1.169082278890056 +4.618468789410891 4.713564332677948 2.765316346798363 2.7965546174382405 0.10009491446535594 +3.6128244573408472 4.076103809948421 1.7311086606053752 4.436053818593556 2.744331624690463 +4.181224198030838 2.0777429659603106 1.2879876302516196 2.280863524901468 2.3260343582693874 +2.3737225439357013 3.803158142599143 2.475769101857696 3.601341317621549 1.8193952136976346 +4.899683865304803 1.8034644971192146 3.3492215376725363 1.979435748713187 3.3856886276742215 +1.257458518630882 4.067235528613706 2.9924050760389163 1.6648415302864743 3.107615132837207 +4.9714826154425005 1.96954006587668 2.1403066035440768 4.848722234698161 4.043163897490864 +4.403951847220531 3.7325010210300498 3.7608812931528703 4.276241947497059 0.8464294513058667 +4.007676696344131 2.9564539694170033 3.2859226335683958 3.7513401953796173 1.1496446096296056 +4.788176700081045 3.6536229929607305 4.048092555371357 3.6990784523461393 1.1870227287002324 +2.8983887708185123 1.374719902536969 3.247001007550976 2.310833935290936 1.788288457535387 +3.07740889492299 4.079257727464201 1.323787914265727 4.976935802929027 3.7880325473402836 +1.8568378307734617 1.4371495539221195 1.9068842300295832 2.442664156207485 0.6805867902197681 +3.9599965621626794 2.1195144088964257 2.145180376014817 4.493681783805941 2.983761622329853 +2.6539052348809635 2.3804317615462045 4.8895737913836355 4.4238548597333445 0.5400757946022628 +1.9784226976079653 1.5026240439352687 4.750777705653121 3.1157388725363564 1.7028612229528812 +2.081827043423192 4.109697250611227 4.082887354770646 2.168158661445568 2.7889861143869474 +2.2226403003632225 3.1180807896625464 4.485616425613516 4.697263719301674 0.9201131706492055 +2.4169778812739384 2.0622780448451774 3.0314708035274625 2.3765608940716096 0.7447945780321331 +3.2688131319056404 2.422642590035363 4.845979197699556 1.9538847172529348 3.013339521155698 +4.502464942121741 1.9620556699601748 2.779890371636713 3.423146811926262 2.6205835453307804 +2.7612575391238168 1.209188713335318 1.3562804664670374 3.287617552743292 2.477696628082329 +3.1878522364534336 4.566791255409473 4.577476202206386 4.6201623945960915 1.3795995538634305 +1.1887342466786297 2.803198270332951 2.879820751942802 3.4305982671852444 1.7058282313793323 +3.910265154549126 4.898903716628907 4.405331989137717 2.490891049578967 2.154643895749311 +2.6604530471184065 4.820901133379024 3.189870353899094 4.147358440922822 2.3631164529534985 +3.800191293652503 2.835804526759093 4.212813302085893 1.6013896598015789 2.783805897623 +3.577920922385576 4.466138292420351 4.231015591339118 4.375821831543851 0.8999438558230857 +3.280481512410652 4.769886347184764 3.336249127863512 3.101195015674826 1.5078385846984124 +3.6679427339358135 3.0145332928878905 1.6927029499304678 1.3413092269578257 0.7419039332657112 +4.107828212888929 2.0655139430140936 3.8433397784967096 2.833896989458202 2.2781620489500356 +4.048675476349828 2.9028846207025314 2.4927042236368298 1.7316461636489198 1.375516650410865 +3.2426828869249307 2.046345995042243 4.0581612803912925 1.0135014407395024 3.271265121947164 +1.5303039927198445 3.308047952971394 2.6518430784232194 2.0509909478638626 1.8765385343788124 +1.7766748037454225 4.115706452306536 1.99139531621592 4.676315939350731 3.560880200948235 +1.3895561060172463 1.6617459205815939 2.1350812427267916 3.195324442167564 1.0946245644571384 +2.8495054458565576 2.641053077179169 1.0100896492574067 1.3437926524419241 0.3934591266466949 +4.217534026523468 2.154276325205228 4.962309455805173 4.241153280245992 2.185657468954404 +4.054502206785538 3.9673190759037436 4.637042548036048 1.5727811001539123 3.065501446629421 +2.641310296675443 2.4261713784215657 4.00570237599611 4.595452255193173 0.6277656204033468 +2.489507625661637 4.582466906694643 2.4078956397085007 3.4866511436640772 2.354610793608287 +4.300419973704582 1.1829449074455298 4.356174205298382 1.982405174776801 3.918345339427122 +2.262704212677484 2.113941331956091 2.518797125279666 4.424320704332738 1.9113216644530966 +2.766569637399989 3.2829383668611936 1.0574542706829146 4.600769180675124 3.580742550943656 +4.595350206329999 3.093062464724698 1.862532809872877 4.296423893704212 2.8601912989398497 +2.663927410651984 4.386250166078378 2.490125329263168 1.2964561617153483 2.0955289917855757 +3.679938366376311 3.9803972278360704 2.679293597391255 3.619997669322873 0.9875219888075512 +2.0205727870351504 3.143160511759023 4.865215869132885 1.0481947042861024 3.9786748764618864 +3.4869628693265238 3.4788515346824758 3.0844343451595617 4.47875206528694 1.3943413134562566 +1.0214670600030797 1.1123924148861541 4.526360800644264 2.574425526619303 1.9540518760113594 +4.6211095061156 2.841489117491793 4.605489277559634 4.837112180640393 1.7946302953079523 +4.857261279926602 2.7334725999442706 1.3358613934277073 2.241783804815082 2.3089334708204587 +4.941937846732248 4.123976335673088 1.1808232977955329 2.996936804260488 1.9918155792991021 +1.0036795040249862 3.2538298429981234 2.862909593207055 1.2699898834468502 2.756913083454656 +3.973610111028654 4.022651587133182 2.291278556672798 2.4994199462379743 0.21384083901031045 +1.1672584059145485 4.004019040224835 4.438983536059903 4.7093870281434524 2.849619087685839 +2.5083475442581946 3.5786538105269234 3.364969946761855 1.4537666091976278 2.1904916573981166 +4.66756620865114 4.6370671312066944 2.4951736733144143 1.5569594399864117 0.9387098280854494 +3.868819962495393 1.3759330739510944 4.75019529917661 1.414717983637916 4.164119830354223 +2.024947671726786 4.584618476913319 3.340429426496422 3.473738942050909 2.5631398826169534 +2.8314012105063107 2.5078901869782095 3.6260181589062856 4.362162786356203 0.8040947051607646 +4.869615785798976 1.6747512903104038 3.8661208922297248 2.29108432439299 3.56200776733521 +2.6272427906601505 3.4076291649808415 2.9316128756853446 3.6434810239298994 1.0562950126316628 +4.747756558673233 4.254630998781408 3.548018775809525 4.674335437860204 1.229537328035066 +1.0762340592421675 2.489308552350568 4.021029321811282 3.1931494377936573 1.6377315486472739 +2.684809493563944 3.671072897432842 3.9951412461334477 3.2788061688126007 1.2189550626710277 +2.4391374191882425 4.409011436068007 2.6793045251864465 4.28466520308682 2.541178181184225 +2.5589796948045973 4.535989376085535 2.7998826843920654 2.128994997304862 2.087739823005676 +3.833621209319614 1.0376987254766825 1.998392603899101 3.1748484129124743 3.033353063232129 +2.1417232445305463 4.953494317095035 2.989962298039966 3.8999171967732673 2.9553467617589626 +2.820196784794868 2.264609272895872 1.903778537955521 1.6716952997665042 0.6021130399073056 +3.3019020379924116 2.6831847414684384 4.747076518029092 4.593872242850503 0.6374030459222256 +3.6322053718834595 4.1019649255304245 2.5680242675397964 4.797275675560574 2.278208918954803 +3.1482973948487016 2.0535923247106425 3.799582575738143 1.8456646948600879 2.239681735381383 +1.8951476450447786 4.954969094613377 1.5009672907787963 4.403395506104651 4.217415897010835 +3.0658115056298905 2.386704008445254 1.2578437817612982 3.7222794968693864 2.556292312438602 +1.337476672954733 2.9065026442939343 3.546589949204051 3.3659212076084692 1.5793934572887958 +2.2599912336286634 2.042644972291752 3.828263309642073 3.189546279799482 0.6746842532089173 +3.351974592961727 1.998184583985183 1.8787922653766733 2.955066606549641 1.729483693439177 +2.2710204659670588 2.8144241624326702 1.7826748210912893 1.1060806614362084 0.8677944654190043 +4.7915220328323045 4.3297618927932655 4.657397908692187 3.8974559015678665 0.8892324111957534 +4.020121338207881 4.2574507150307666 2.397749872984301 3.9893374186735278 1.6091849330316872 +1.0754779618093249 3.3004562127365427 4.310286910719469 4.761337591280479 2.270236757154128 +4.608774382102966 2.2090366757749713 3.0911939703033973 3.8855335893362057 2.52778885382809 +2.544397418096849 3.2438931904493895 1.4656596826963537 2.315186669260919 1.100450106293124 +2.0965340504356123 3.540891804617144 3.314412015716262 4.506197420857669 1.872570899584949 +2.279881825397756 1.6355662909610613 2.858113284890888 3.431051108139575 0.8622066209589133 +4.8873071181309085 1.751499518313559 2.5597040274004876 2.222479694882313 3.153888005861111 +4.276278061605302 2.5358115466114284 3.5424796230544993 1.7076337413843903 2.529008323295255 +3.0963966692956317 3.1120524092965396 4.885415605227529 2.351941638522453 2.533522338991177 +4.023695936070853 4.376440239952561 1.6555760583676373 2.1164295082983013 0.5803571712609276 +1.6421076874358684 4.812196080988688 4.403677414145808 1.7593058501878778 4.128215279174235 +4.8148013487823675 1.7717044714290577 1.6596120167036323 1.7199376055081577 3.0436947582867235 +2.246772904603001 3.3269549458643817 4.074801089318909 3.9704846313014133 1.0852074297925347 +3.4130335992525525 3.6010988739839918 2.4862196455960763 1.8766654204339517 0.637906655375855 +4.905483083777833 2.748694388627062 1.2726072208466053 2.2922114587452036 2.385650912742882 +3.0142947535470466 2.4800776629787893 3.4015310355492163 1.9113166337138643 1.5830751287581741 +2.752235448315677 1.9663170554415883 4.5655568052669455 2.416295956600705 2.2884470533240044 +4.499671098555921 3.6196266682031273 4.5881401973733125 3.878155790209427 1.1307325315081491 +4.872537862106347 4.317973284832972 1.933311726322866 2.934844058002536 1.1448182745598157 +4.34594746373832 4.225663416769688 1.527681614004213 3.669287047580496 2.144980672425421 +4.406514446096128 3.021450651752424 1.8214400777191342 4.124339757668196 2.6873311389390153 +3.3147758815482464 1.6015190635747492 2.0058655854524168 2.455450920052904 1.7712639265283152 +4.694765756873405 4.248509526456736 2.5976884615366322 1.7432139762536747 0.9639871727285951 +4.351723625663773 4.355097744038149 1.5653421176107245 2.4121763933581546 0.8468409976232131 +4.927362078036829 2.0673577146516995 4.108484043240874 2.5806125359850207 3.2425323901645537 +1.154334043864425 4.043901312772937 3.9477990831236194 1.6846026203831288 3.6703756252607804 +3.9137143825067264 4.77226986276109 1.6926763877390871 3.462491720100387 1.9670698572587448 +1.8478109464286856 2.6392977544982386 3.31787289534913 4.690292407114889 1.5842937491587517 +1.9647133804618564 4.561549315337707 1.9480957143600506 2.077650958533625 2.600065659546968 +3.675612516288898 4.086769697126385 3.31936305562765 4.970139613053673 1.7012094138881149 +2.5357348016430294 1.7804856641540328 1.1448304626401713 2.661345829637422 1.6941723991426256 +1.0277966269539105 2.634468772081554 4.302069647731294 3.368025308540156 1.8584494099931999 +1.0226289049276507 3.069861773753661 2.1432449494067627 1.731950162964595 2.088139320197789 +1.5071417986884152 2.7926503785358667 3.45149136594403 3.123874662972447 1.3265990399994196 +4.431972849234095 4.690161656716223 3.8914168430462097 2.006565785002761 1.902452357173906 +1.910612884088601 2.789668688458874 3.3229239544328513 1.2218480453158014 2.277555506034728 +3.6556772711082086 1.9168471674106673 2.230564770949038 1.483366364696339 1.8925737998375058 +3.8295856030502757 2.610826393776213 2.2682622142475526 1.3189098128182053 1.5448766916132846 +3.697994549695678 2.7967184068963133 4.914898706611933 4.3275079427796665 1.0757911484181093 +4.302985391552076 1.5823099561499383 3.2111498601617585 3.3059985564195817 2.722328249859377 +1.4415236732183048 2.360497382547921 2.358139282465049 1.6791348745771733 1.142610898062065 +2.1481828394882294 1.9657700396314204 1.5457565429544342 3.8722935048976463 2.333677069527734 +2.9471894652283552 1.3447551368281019 2.3613159270738877 1.7130292071678848 1.7286039014308787 +1.977829541555988 4.667676756915413 3.225050701403566 2.776593525512492 2.7269748588105927 +3.614074128830614 1.151886218235651 4.502425291452892 4.020326726799954 2.508941675910465 +1.0187907441127582 1.1341682167657572 3.8922995602895805 4.745588049075657 0.8610535443807312 +2.424602954343933 2.7236215944014597 1.7068144830348766 4.254278969896484 2.5649536952785184 +3.7075855260450705 2.8838188069629584 1.273329788536329 3.059130053763286 1.9666403318227705 +3.8170576739347672 2.287637381355118 4.469748110610732 4.248252917027253 1.5453758611208481 +4.615001001402605 2.777113567679221 4.511138809427137 1.419939751755125 3.59629557088828 +4.800150653607892 1.3513165775836384 2.7413052946823764 1.8475361268489618 3.5627629459894887 +3.888828986297378 4.654061401775831 2.6261939831910577 2.03881858307908 0.9646711928712772 +4.720320082005564 3.242202394649658 3.4140791792392213 2.9728213590617174 1.542575885181074 +3.146448556397619 3.1401404505753003 2.055957865590877 2.23118005839418 0.1753357038650811 +3.8447532050480193 2.8244992827455038 3.844856601204296 4.750802842243623 1.3644253946724068 +4.538385969381607 1.7508505662981562 3.047360546283126 4.846062243898539 3.317481186148338 +4.060176544751284 1.927774850355875 3.769458680896082 2.263031188663257 2.6108352639749777 +2.515879604075271 4.616529955697809 4.733325679612972 3.289087418404199 2.5492265601376487 +4.080439367133332 2.484760257156176 4.603814502441607 2.33601142605855 2.7729267237469415 +2.883593372962394 3.6883960703342016 4.667413686079706 3.3792235090346607 1.518927685550659 +2.8331656402183367 2.838056407689142 3.38815015026934 1.3085373864586138 2.079618514778838 +3.4223033120244675 1.3382164786661428 4.542099041315346 1.761348314830593 3.475052881874319 +2.133396801475092 4.705055371420063 2.632024912767824 4.286952620715994 3.058138897909315 +1.2947370376975198 4.595198073282736 4.065254855974199 2.381057896887809 3.7053424193199853 +1.2005334278611937 2.515999221338953 4.275685591202452 1.6355871189435858 2.9496728966164483 +3.44255520844054 3.824936663023454 1.7207419303320584 1.5887444401309767 0.40452307008170724 +4.477016607964098 2.55341530248564 1.593715634513111 3.1604637822913255 2.480915504608106 +4.263832658242183 4.452669074999253 3.5403981438281997 3.8513699293832926 0.36381677216007025 +3.220003603243973 3.996471788935259 4.003895175856629 1.1638195646162437 2.944305065877713 +4.624992183859973 3.8672936867967285 3.78588064806583 1.7433577886842442 2.178533140337376 +2.3122448454912496 1.5887878558915096 4.818964797912059 4.115243609432957 1.0092638539624603 +2.106578858813762 4.08082594294654 4.917376585577116 4.0221292620705285 2.1677452155298336 +1.8907156233749118 3.2971121366760743 4.768900013665583 2.3611251449792037 2.788428046570931 +4.147341054568436 3.7314756431804583 4.75055732118318 2.3155570363012394 2.4702571582254396 +1.8402443659568561 2.079668603512525 2.968931048538865 1.0271786801252745 1.956457570653885 +4.646187796494532 1.4499880950598567 2.8051693646656197 2.689404832546516 3.1982954770233256 +2.132846269887041 4.61444950067504 3.6149996478062474 2.763812811422347 2.6235231322575885 +3.9770172291418873 2.609206713381148 2.9881164792465804 1.9704322744431138 1.704871475429196 +2.8222371070024646 4.32120299756706 4.3057797607085195 2.0422165331279225 2.7148880688402603 +4.26562576256373 2.1991154016323584 4.810147622553494 3.556402937399633 2.4170934626919713 +2.2036564585567477 1.6255100170903116 1.8531833841837582 1.2461567232836877 0.8382927142852862 +2.1986933487430163 1.2776898124496379 3.8088402306882814 3.420313901363729 0.9996000312341525 +1.354415952730255 1.3503054741776936 4.706386148636739 1.0733105944088281 3.633077879534427 +1.4271397925527567 3.1882007562281136 2.557456657518857 1.463853755710954 2.0729937348250336 +3.0570207197914683 2.3822183923311915 2.8322122071182796 4.776317800496416 2.057888417614027 +2.7777846924868173 2.5309302185732725 2.8009831520458044 3.1071131092088224 0.39325905197943534 +4.147650391828224 1.6330304088353897 3.95814373352713 3.5180363263330934 2.552843157879845 +3.3762983416964962 4.846360182772351 1.9133320820920203 3.5516725407134895 2.2011908765355486 +3.434846663920128 2.0953453700437636 3.273676536173512 2.793551605285602 1.422948932870247 +3.4567245617352613 4.985919137923592 4.133298724074235 2.2302240931142534 2.441337564296932 +3.078241495259622 3.1317391229604827 4.932481127772997 4.0130692258051415 0.9209670144200437 +4.802268343948775 1.113930912774579 2.858600108128934 1.273220924390043 4.014630762901273 +3.53722733856202 4.354115051783905 3.386851225673243 4.385834233050501 1.290454410291736 +2.276734954965961 4.103056090920461 3.039151876465796 4.186999483875334 2.1570820618302715 +1.2334263375683747 3.1692773848417937 1.953369467347454 1.4963348425758638 1.9890701157751332 +3.5346011992592308 1.3010345199103472 3.7038040776316503 1.852191044220016 2.9012567857046765 +3.633239396950112 3.576053361601329 3.266862375864053 4.752006057810334 1.48624425942167 +2.260762394398909 1.6427299918108624 2.5505246181510555 3.2591429507798315 0.9402680426273881 +1.2874564569633251 1.4481244386678225 1.0417914717369867 1.7790461869516756 0.7545586229387937 +2.1255118347596795 1.4190567686132263 3.2850791287422365 4.489177104404865 1.396041079438148 +4.285736741314805 2.878675278839661 2.2595114767786932 2.0908427407337498 1.4171348212861365 +2.036883299835301 4.490942890699064 3.1995382966029835 3.479568375223152 2.4699848826343933 +1.316935695010022 3.092017607494623 2.6851912121325756 3.58268247719444 1.9890717349789913 +2.1684997011472094 3.689067786670914 1.5925800773452843 4.026646376943427 2.8699836329764357 +3.3734602822202953 1.9371115957732532 3.8266560195131234 2.3604255441803814 2.0525421690802412 +2.3386443250221274 3.9508138489484192 3.108928017966905 4.317123967828309 2.014653326788067 +2.6984458518027132 4.153330629595687 1.2559601370752245 1.570596488710331 1.488517971145784 +4.992418486528206 1.4884648720123224 1.1223603682374277 4.166545744934249 4.641632852819543 +4.3966450130874435 2.880298419102698 4.455853432810246 2.17867179041669 2.7358478074526276 +3.2930337950126196 1.643219225913707 3.882988921716074 2.4487505998294803 2.1860758624483054 +3.649279302456042 1.862168668152829 1.362205938575281 2.0011670041143383 1.8979029644622085 +1.4458770814553885 2.2747974683323857 3.9859562760236065 2.074140118523088 2.0837826249060525 +2.3872537354722057 4.35687193946584 3.254700484659005 4.953737146417206 2.601176935062581 +1.0025686244797543 1.6867365236880403 2.8109108731562364 1.8814877014148013 1.1540854155897597 +2.203082087674356 3.7141444511910144 2.4180519862447714 1.4954680691761761 1.7704436027363828 +2.364897081935922 1.2702459278571716 1.186977952103958 2.6302425430168017 1.8114286705550287 +2.7736666247464083 1.6907411157413632 4.380159352022321 4.683780265519932 1.1246836520404124 +2.9891114344779295 2.8072274914842894 2.2946889544360314 4.627782197629291 2.340172183868734 +4.981115693242434 4.861839086494962 2.2181978031265266 2.171617024036962 0.1280495134617148 +3.029198798974233 2.977228565972247 1.2861654184537232 1.3048155969147541 0.055215344560267075 +3.6931175959798432 3.4051307614661743 1.6981477119721609 1.9724127811073298 0.3976905140947195 +1.324302648085514 3.4607292177933227 1.579689790502396 2.2985491691142936 2.2541245072026874 +1.160927902514413 3.1304978281238935 1.3495232545215847 3.448334666809266 2.8782312339724103 +1.346504223165248 1.6583078550108956 4.111697352627669 2.3582088200623095 1.7809950978793718 +4.124841138680544 4.5385496691726965 2.15783807410134 3.007234760169065 0.9447907061909581 +2.0823427580695637 1.8643861135529778 2.689457660431574 4.7717060678799905 2.0936244957514223 +3.7711826575700336 2.873133546982001 2.7215043922168927 3.050078722044037 0.956270513635819 +3.7630286694162343 4.916568411982643 3.057354918452879 2.403326290136566 1.3260495406799457 +4.201162146019523 1.2516031158267342 3.4974895523529423 4.95505923770504 3.290046786939243 +3.605436812697051 1.3189214086311676 2.8808130437938524 4.671210770640487 2.904079322836786 +1.6901465876116837 3.0795855048158827 3.72451192477589 2.5434960498632546 1.823551206146193 +3.379528714395049 3.5847451517687308 4.389011544018842 4.781843292999094 0.44320488397041546 +1.2421352043036076 3.442525251509337 1.1644370669922801 1.3846488972864295 2.211381832710835 +3.468083578706979 1.9120267723370024 4.383559375688392 1.1508963161589754 3.587676579779234 +2.038909028596074 1.3843264004813616 3.7492033127494873 1.8085973841210876 2.0480307095493604 +2.3025574611879494 3.4168123324222415 2.8588642938904 2.1568654898222297 1.3169533928664636 +4.6660975739166375 1.3960456499173919 1.011396328542606 1.0940681158849443 3.271096790080285 +1.309209642720337 4.312502880615694 2.926880777745176 4.278579672431549 3.2934571766890097 +2.3639753926995755 2.8165733900508245 4.245119318180786 3.8891306379117685 0.575823660234657 +4.537534339112721 3.4961618561363603 3.752609643360042 2.795453432108568 1.4144273261774984 +1.450367386022695 3.580787356507182 4.480824563835286 1.8527632492207187 3.383104421092079 +3.3077183114393547 3.1896763095604665 2.423141408833912 4.061305268852825 1.6424112598492626 +3.6863182323672072 2.8169019294536803 4.17951327211286 3.336063919327419 1.2113180913723718 +2.128418607071954 3.536384478313049 4.40068443057894 4.643833063102817 1.4288068981069233 +4.715315674387557 2.7379666777373473 4.142114736080346 4.937253883520268 2.1312332857632166 +4.5740833731890245 3.299444000610339 2.6455386939033727 4.184120105010136 1.9979835556708327 +1.787062692804486 1.0495179534876042 2.3064389897896933 1.295437940599653 1.2514373192283221 +4.9792200474626505 3.310109892734805 3.161665938201631 2.884863201157486 1.6919067538876789 +1.5645770786080715 4.2214148919908565 4.855195245136569 4.7083441715444465 2.6608931591546057 +1.123929897677931 1.0306031309530574 2.0470009913596496 2.025430222307706 0.09578717797707198 +2.772186608005302 1.4914583092164242 1.3218362705455156 2.360695497967561 1.649088678549029 +2.3539161670500537 4.0973913618207245 1.0290366151951806 1.4570764468068953 1.7952503592053153 +3.4051923737214183 4.858923881835266 4.033601999196362 3.627754080620204 1.509320320772089 +3.4216203537640304 3.345958644729579 2.353432399633746 3.9605527347337564 1.608900390237377 +3.4272656774121635 2.0276712474133127 2.7942426996821608 2.5920049564774006 1.4141303593588401 +3.375664367421663 4.339805804221887 1.345557889997841 2.5429943352442814 1.5373427563688045 +3.869988805484864 3.1469405567593474 3.330534295040259 3.871000775533162 0.9027196610916493 +2.0833152467140126 3.078799495290884 1.5360646027658618 2.915053244128796 1.7007641112666536 +3.500752777887336 2.836282779270121 4.783534304356757 4.107272565587243 0.9480771690036253 +3.3583383242232263 4.652403381651075 3.90720226698225 3.6787514538559063 1.3140753961907317 +1.3554022162126076 2.8419394233193613 3.5961803660767044 1.2254975763654072 2.798201164595942 +3.4343672168133716 1.6009008992721006 3.0010905615865138 3.861278266571242 2.0252213768784 +4.269950132755354 4.9795168734529005 3.822587101650067 2.542051367478465 1.4639865866853232 +3.0982499922835816 4.189427887508861 4.905674830125809 2.346322982382457 2.782256472645105 +4.7187660430273475 3.934033666046764 2.713761914203777 3.3231626290546243 0.9935663715838617 +3.263823321271466 3.0671191296731695 2.6138540436436033 1.8260591202237624 0.811981145321991 +2.294781914076157 1.2102793197874777 1.603486952600869 4.516188368747886 3.108050098798878 +4.4915495285999745 2.0298028126070418 4.248187722668878 3.3448656461070416 2.6222485899902734 +1.42069366969712 3.511758345853323 4.82228080783764 4.645425543453027 2.09853026292422 +1.7657438892557429 3.3684206275148765 2.133999298195833 1.8531277701619504 1.6271021918174111 +3.1141046863578734 4.363673933416919 1.6817397481136847 3.7771606191197895 2.439715542813074 +3.711619333864634 2.5996012229736363 1.0215156950502875 4.38974866629823 3.5470519629054387 +4.5909722147798515 2.849998481708206 2.9498437841742633 1.287017140146148 2.407484576759574 +3.5497859858296956 2.1907428155721402 4.391622176500371 2.852996703204048 2.052892273281781 +2.844063076777238 3.4276135262144054 3.871293802875893 4.78160107467777 1.0812911061012644 +1.8364646364040582 4.450838103696604 4.623873961274084 1.294138597128991 4.23344850231129 +1.1125581060869196 3.9107127964060293 4.825418252828584 4.387808782672177 2.8321673183845273 +1.1807740205473944 1.579906047332225 3.2633822085363593 2.6990930351741516 0.6911791706780308 +3.968402825410124 2.1043334571177947 4.861373881463338 2.053969427560514 3.3699071764069672 +3.0773973329064224 2.703792179406106 2.927968224814208 3.742114357712003 0.8957760526127215 +4.2203296250762055 1.2844325216229713 1.8911881973535154 3.860452063221488 3.535179199910291 +1.292184586902363 3.1101476291277077 1.592063639488698 2.7337927420303707 2.1467498611826774 +2.4277600888299253 2.49879216341492 4.531076560032556 2.616459791906633 1.915933956170933 +4.041770135900284 2.2946874068959286 3.7948705613716642 4.781204768622461 2.0062784528520363 +3.9592080121812083 3.977162145464535 3.283794724396717 1.895987902398355 1.3879229539449043 +3.2191985917560815 3.1147875108127874 3.5932878688018026 3.631834142024016 0.11129909704516315 +2.104452921960845 2.2671822673386437 1.873013895891332 4.42716742084235 2.5593321528998145 +3.925526385275908 3.935507632538471 4.624201767670025 1.7478496746817225 2.876369410930227 +3.3795702383355275 1.928427796058922 1.4007309860578592 4.942255303415437 3.8272978559568065 +2.536087773517711 4.265717710356148 1.9870106355534576 1.2867706848164007 1.8659999214940954 +4.707361886999209 2.1595703850294914 3.7112258698327794 3.772968112566531 2.5485395115726384 +4.616548363936156 2.637583334647893 2.4953107084117416 2.746351056029588 1.9948242637580842 +1.7913777943826874 4.873069337951511 2.7983293241607514 2.414646804432024 3.105484671617135 +4.852918412473487 2.6604335453286994 2.143737841935865 2.2233039142161632 2.193928132942602 +3.241645991214974 4.318746199462252 4.586428970299325 3.3587091795294293 1.6332301562408176 +4.421797212460577 1.771112669172803 3.5331507181410244 4.105238510840901 2.711717719560967 +4.306396701505307 2.997069895261197 3.947085439172014 1.1887215543802276 3.053343741944728 +3.0907883317735427 4.999528213479453 4.148443312271979 4.818406439112179 2.022903489378619 +3.7200484212419376 3.0209448403709347 1.4407143808659235 1.1935257871012084 0.7415173751666486 +1.421978292382065 3.185481785061626 2.3317364471864908 4.81084808773498 3.0423574896773773 +2.8435008012020186 3.7132265601544336 2.0207095191370716 4.342685070083229 2.479514741834996 +2.2917739238319648 1.3930848315547681 2.2215193766628576 3.2611429731464923 1.3742122495974116 +1.5811167505685457 2.357119481927828 1.9018587851402597 3.4608729451500357 1.7414664481947546 +4.784507289331108 3.6604204869498225 1.1027528194223688 2.6220467104112846 1.889927264866038 +2.677526171188136 3.6957232891809433 2.08935788673446 3.0434430423362593 1.3953508000601742 +1.3339845425028836 4.504539887419513 3.2578393910644667 1.9564516110171635 3.4272483641014198 +2.178297255314975 3.8256150137250753 1.8806753307811483 1.1897422113373772 1.7863494542551237 +3.415711092851818 4.4255895476730185 4.991476797436958 3.6455916004215667 1.682635271547941 +3.07093914965009 3.4487192358049756 4.010639999787291 3.18565722837678 0.907366721132839 +3.3850123766571265 4.948374449326428 1.73066390720165 3.525834604123097 2.3804912941126855 +2.1629630960639608 2.654206928159159 4.822790652706789 3.387972862674359 1.516582537537975 +3.256804571226859 2.0644684882385778 4.7352814170981326 3.111781808071483 2.01430293533657 +2.0385123667192153 1.7923325470868159 3.256757156852446 4.5641325344554105 1.3303514128066818 +4.892679302370799 2.889746277678865 3.0248381527937838 3.695127873155084 2.1121148194697206 +4.771976082012614 4.559863266513386 3.639231041807374 2.443818529228426 1.2140852201263814 +3.366886618275301 2.8968590823701463 3.212395792362434 2.577251953845621 0.7901478216858809 +4.268908700119509 4.97095404527691 3.9602553246618433 3.8460034479583705 0.711281349388159 +3.1449418199804073 1.6921766339882471 3.3776419558338686 1.8645695931722335 2.097597354184377 +2.0234319986280793 2.3150413058403103 2.467320080150467 3.6215994278198536 1.1905447494776757 +1.759142828423352 4.941386950942749 2.0660573186891185 1.2045966928731104 3.296785110549451 +1.3232563691346728 3.0516152335244984 1.2160644036034927 3.4865285622596076 2.8534596299679635 +3.451334380699803 3.381207205628035 1.3753568251587032 1.9280665944765194 0.5571408347831812 +3.2816261141503733 3.8915717251724553 2.569693094367052 3.134342861996419 0.8311816940290486 +2.7378545115963497 1.6004446580551903 3.432471712848091 1.2106783125641067 2.4960102340491295 +2.5043149473558315 1.0853113857653245 3.3968566719821154 4.065480782227755 1.5686393175642122 +4.4136961389519485 4.7915808528420625 4.260636374180146 1.2049095609829013 3.079003607319161 +3.7527723227294842 1.7384944969685887 1.8553096770773547 3.0132582255691585 2.3233940690951065 +1.7735246666891733 1.9498820702832962 4.659887454956143 3.7665270767845462 0.9106012843661925 +4.279682278438058 4.405075539739281 1.2800395031570768 4.101208753876572 2.823954569603582 +1.743619622611103 4.740605825667932 1.5163224609178352 1.0193191381163893 3.0379168198271436 +1.436488244224757 4.041084912963369 4.407213048581183 4.755961843480152 2.6278412297450076 +3.853425834217671 2.656233552729454 1.8579548043913223 3.3164582173621047 1.8869291360574152 +2.9972250113935934 4.49809583555729 1.0274161609904664 3.091698377230534 2.5522292802784823 +3.9288748453221634 3.4455422546372088 2.774124558890144 1.7949736741363669 1.0919463578089972 +2.310697234434363 3.4243123789890415 1.1249712225000077 1.1951495835661023 1.1158242211672325 +4.174133175684822 1.8860330784879413 3.443248093963199 2.8969394071297403 2.3524147670217666 +2.559535150820202 4.822927277045467 1.0084887581803157 4.699269226867944 4.329527039424121 +3.1550382387838884 1.420579297616877 3.187230605927417 1.7374204365757593 2.260596679142406 +3.5472301283256322 2.0220192382748645 4.326340768868832 3.179030086031701 1.9085570628308859 +1.861300399978275 1.08566777080462 4.905382004435101 1.1096951736814291 3.8741249970278044 +3.937062588931736 4.319949138697325 3.5935123154600768 3.1359529880544486 0.596626053812007 +3.5954475052632855 2.7070148972451564 3.693852053881083 4.505115186924469 1.2031044717834212 +4.380284903886984 4.115555971858557 4.434649383647498 1.4523140946984991 2.994061653200118 +3.914618303619215 4.450331334533493 4.71704555147418 2.5133649317583107 2.2678617076891348 +4.763636689668807 2.107564269208976 4.003770904098525 3.9545774852925506 2.6565279398457617 +2.4669307163896463 1.9074664392345575 1.2637470494986776 1.6058487245470987 0.6557696497121543 +2.1666303854737476 2.049777374925333 3.637159849001942 2.7978149512532964 0.8474399586111764 +1.1439886833184203 4.666299297237755 3.7557412087197117 3.2825051605735274 3.5539589781247924 +2.9664173792649766 1.2727739138843122 4.346183809091469 4.0104382042487146 1.7266016619353328 +1.0702430734835988 3.205291296437239 4.0435020699605335 3.4109414928554935 2.2267832849302955 +4.685400169278617 2.526302253900574 2.832725583876981 3.794065622560868 2.3634463137897908 +4.53096426964793 4.795947679307108 2.9627897114887314 1.2912814620298874 1.6923817640838528 +3.1956204484244277 4.422357131581819 1.3640176576105114 3.7882831032756106 2.716973654794945 +4.49546500023442 2.1202894270391326 3.1302159539390844 2.9122454883267697 2.38515620607599 +3.0038962427291604 2.0694166998805175 1.6606713441612677 4.220531220613511 2.7250935035467503 +3.935785229193668 1.0998337281472685 1.9793221710977167 3.5750903620779217 3.2540892789890634 +1.7670861674871219 4.7332548209644205 3.1681546909647333 2.9992214229391263 2.9709754172522436 +3.7727154509069267 4.292081267880555 1.5774951625322124 4.694646534030236 3.160122390774239 +4.7531453313097245 4.522831812441108 4.381483811220694 3.602615440850869 0.8122070273866092 +1.9390201538043934 4.760056153650025 3.288809779455611 2.362667904782407 2.9691720873752394 +2.316022255787754 3.184405777904144 1.77310744364233 3.525708610616669 1.9559398743220822 +4.065553084732993 1.2674156405901091 3.007276704393177 2.759357267039533 2.809099002123673 +2.592111395230587 2.890591921335559 2.2482265138371504 3.070501871767948 0.8747727640502546 +3.334727085421846 4.706788477336196 1.1798371904573153 3.976403730737036 3.115017957796396 +4.472660377759975 2.3017526726485693 4.388157065236118 2.9685166870591484 2.593881081981693 +2.2744294787315233 2.3379672142687236 2.3099252635791574 4.001193454914602 1.6924612665760657 +3.1168268746384107 1.3512118007906895 2.561841282181176 2.4801616688876598 1.7675033658316106 +3.1687630024491122 4.507976764802569 1.0950767839984703 1.153267730579782 1.3404774103060932 +3.863504946822764 1.6051616836310787 2.386853975621339 3.9440716295313014 2.7431808391085184 +3.8176499246207802 2.3606485056127546 1.559963333550758 4.090248908535495 2.9197942095235483 +4.828223496429478 2.092753667516959 3.799229203616166 2.3294777260758774 3.1053123177262782 +2.773429116883406 4.558609063109035 3.586745293855147 3.5021349727191566 1.7871839152277738 +2.8502865647158653 2.0003227252778246 2.975645848201711 2.523355116142901 0.9628112144436985 +1.2641001710059157 1.8233821723956334 1.7075899613138446 3.4416554491410953 1.8220261999082366 +2.491841885449189 3.917552968390726 1.2833612130064966 2.539619532678092 1.9002202655919733 +1.9693073217301196 2.680295225476433 3.4480713402253413 3.4073928381222305 0.712150644040241 +2.2280260922428026 1.4005593210787892 2.1456609736460637 3.99934825690866 2.0299896062566583 +2.566202222845283 3.964364434070013 1.666482462146992 4.713263827223701 3.3522729983513453 +3.045313767222554 1.0146102485831983 4.860398714567413 1.487896420662727 3.9366900440606996 +1.4588859103736866 2.9991307237798517 1.7553030873409083 4.553939996196927 3.1944831558228266 +1.573986377091808 2.58736489674908 2.24927944759342 3.395726379120067 1.5301230639754528 +2.7890646132167034 2.898281741168018 2.059023193004508 1.8160505482189415 0.2663908541073191 +4.889390109791057 3.0032309274297964 4.142026958507566 2.6121278939148453 2.4286184568695393 +1.8093810218518498 2.10565386957235 2.355264854720917 1.1151882611455743 1.2749774736166284 +1.2296074192343913 3.409835439440981 1.8816359104173919 1.9306140285869784 2.180778089616956 +2.230277462489254 3.528649584386176 4.759811852802356 3.7203674922040118 1.663194139509521 +2.8878766451984808 1.4998579832566223 1.0270679175847532 3.18479497884523 2.5656153017930494 +1.1517983510092953 4.307546031261284 4.8927043117826 3.0006390190960666 3.679491064427903 +1.32927756896526 1.1078956290101196 2.722346053224346 4.705262300564387 1.9952360279684735 +4.924335894150519 1.4409936420329186 2.8237130747261547 4.949466238261827 4.080747450856232 +3.484250404130761 3.966082841356183 2.3560855075743103 4.93168598871503 2.620282491643772 +1.5556549794972985 1.8394325972189214 4.327071980030141 4.39391778570252 0.2915443329165378 +3.205682542718599 1.5897820391093713 4.540278765232714 2.8461752617812777 2.341179428828766 +2.217340108329135 4.2656905857444825 4.172218542231882 3.2626304411233242 2.241225154241749 +4.595940761002543 2.1339234024104905 1.0952354377262647 1.8288440399019779 2.5689902793110746 +1.3230769665742468 2.056421000768792 1.3830137392131845 2.538943101490679 1.368928837837813 +3.1730740177094847 2.5260504303703617 2.0557413119356034 2.9560751666974694 1.1087112214655126 +2.538406447986999 1.4534722501271609 3.891959243056796 3.7405801769330975 1.0954441269851485 +4.874724745064308 1.0942280534467916 4.675740864309841 4.8088378865213155 3.782838888011561 +1.950062819617636 2.1529756803726836 3.420859850541028 3.6399537542985643 0.29862311987438944 +3.7169079821003868 2.6689487212986687 1.8989108840836133 3.1725807622544435 1.649379753379973 +1.8409712804655878 3.3698272167262164 2.253300583336576 4.911517764943884 3.0665157848006697 +1.8283616933659554 1.7487086271739245 2.3582439733944645 3.389349060559549 1.0341771181627974 +2.8255472486240687 4.7297627267879125 3.9902180953811452 2.695129032004693 2.302887810848816 +4.089637608999439 3.0363281019351835 4.497703030356914 1.6298734407902131 3.055144427431583 +2.352085280421352 4.987278810679222 4.842876155739342 3.7916333931150255 2.8371387501993874 +4.166325640544313 2.17626315324099 3.316526382049442 4.605456677437991 2.371010335224691 +1.295739029159337 1.1641893142771553 2.416640625516421 2.728076728806339 0.3380795378575754 +3.3645277712363586 2.457523341840038 1.511880167876123 2.7403355226464434 1.527010017520651 +1.2714616728759434 3.994381716867062 3.2681250901552854 2.6913221180335904 2.7833424573014756 +1.7293433537317147 1.3293561363698614 3.8393333144706236 2.1343194392203135 1.7513029688917217 +2.7163025152476625 1.7998676860688767 1.253824945569475 1.7493660553060195 1.0418319382562988 +1.7125269746102347 2.8224798055886877 1.6855029983850973 2.477744004876275 1.3636865839932708 +3.6561782585482696 3.610292224897889 2.5262258254158705 3.8364767321393765 1.3110541432961238 +2.0217011736095536 1.4736761208887312 3.7742214233273303 4.794871160734097 1.15847198709255 +4.631120165198 1.5974281628328635 1.8837507963768525 3.3815759208652834 3.3833071496337688 +2.3056427486585607 1.2991935909758472 1.8712247368208628 4.884124449855859 3.176555459583007 +2.502056165741588 2.7262340220298173 2.325275717136828 3.952696793265476 1.6427888087875788 +4.769837037401306 4.8473072659486105 4.563805102228972 3.9014190772974615 0.6669009539172512 +2.210208042610232 4.184012738362142 2.4136911413782194 4.835610721122026 3.124355842044678 +1.4038001762689345 3.4126222694618322 2.093557096695193 1.9747207906424578 2.0123340353271755 +4.769779699679191 4.967371927417844 1.922017643966131 1.9981699743118142 0.21175898063553714 +4.1477189462064405 4.175545271105678 3.073733731831979 4.972045675012475 1.8985158777263647 +2.1758703024024895 1.218607507069144 4.232504523420738 1.7735350332515392 2.6387275366949847 +3.9433182971998715 4.236011930906202 3.75781672663058 3.2875179836967523 0.5539408549812467 +4.473377886694918 2.6531990711454276 1.9511683854793391 4.714900734269105 3.3092699219498765 +3.132527083203629 4.929601107759822 4.0155970560713365 2.9590521482437375 2.084649177197694 +2.2899417734012752 4.415170457965292 3.2379396833571086 4.067210475954472 2.28129064547873 +1.9707608791954612 3.7481426989082736 4.224439963435245 4.785843403523198 1.8639366822905268 +3.5046285800076147 4.128683297110263 4.2749361767845535 1.7172130237364036 2.632753694817773 +3.159943179118712 2.8842189710952417 4.710867577637638 2.4578875159075197 2.269789196697265 +2.361662365118937 3.803115276954897 1.3707016314103573 2.4976783910790634 1.829716675847314 +4.888083508313438 3.1499713026606604 1.6068310427114634 2.760946572727264 2.0863884336486382 +2.0243177408106527 2.740356539929446 2.0106550225744844 4.584650584686289 2.671734402146805 +2.0436606263701993 3.247304419969026 4.968117654588722 2.720980218520062 2.5491930171036885 +3.0725225659804147 1.6433152549380976 4.138322544944314 3.8031375607403572 1.4679858689962304 +3.0072133255376117 1.0586435587800045 3.954010480149834 2.366945174053804 2.5131057323032553 +4.402849059812095 1.2461417518565336 1.4541690796765039 1.023059477187498 3.186009497389842 +4.449347392004339 2.278304163075916 2.6151107722773266 1.9476708999284718 2.271322232770376 +1.8048213934251063 2.1014964825000497 2.248349874503951 3.8257825919489665 1.6050888095502975 +2.751670783758474 2.996678567535273 2.3381305624673567 3.192371049925014 0.8886819591524937 +2.0617984581690427 4.176187418211903 4.032599360829159 2.1684460343912213 2.818813278459706 +4.215291616277848 3.0535555870290327 3.2460343003784655 2.7049684284576143 1.2815548678898907 +2.7164707262814627 2.7274325100136445 2.098226958608581 2.8605887820837803 0.7624406275868452 +3.9091745369092643 1.0630199304832888 3.5599523801194906 3.004407463840329 2.899866582738492 +2.911234909431958 2.2266295334538304 4.228969331797023 4.277770122070507 0.6863425077535779 +4.176807457661424 1.192808627961389 3.1801140198027196 1.966796448184204 3.2212402184949553 +4.6239188489282785 3.943081896996477 4.4724591048606825 3.8702146506356763 0.9089759830493664 +1.279694581935793 3.4233512259524423 4.073245120093452 2.856570718568172 2.4648651903833647 +1.2145639976621685 3.9604814513840574 1.7950660815216004 3.136360708241328 3.055999662683508 +2.9468292958718463 2.159923041763711 2.5894512796755103 1.2944304557715003 1.51535487167182 +4.663580683262592 4.011085555888339 4.183541928688664 3.2748628647902414 1.118681157620193 +1.1570664977107232 2.694161177875322 3.8988287232573238 3.780605898903726 1.5416344222896852 +1.1424898773538055 4.805563145802418 1.2144828074794973 1.859653054315722 3.7194556614410015 +1.5939975208384909 1.6337511730218672 1.627103621543692 4.447871477924647 2.821047970604882 +4.802999093558848 4.880506837941084 3.7358692243726095 2.7842303254120284 0.9547900525529835 +3.3833719073410227 4.787145587626598 2.450107473858676 3.387031273009399 1.6877223559808445 +1.9175159273015683 4.040348452014351 1.2652127596427158 3.01805768545807 2.7529771633515385 +3.5203397603359257 3.0084379237232914 3.1241015031809347 1.7640420082571548 1.4532051885606916 +1.696090365524444 4.969177646580189 3.572389546564716 1.9720704877765098 3.6433667725511327 +2.95572205052621 2.9511664214199205 4.25541299874869 4.523357505150987 0.26798323131816404 +1.770341761093405 1.1950208033947503 2.3042703883465063 4.452642316094963 2.2240719737240777 +4.885654088927529 4.017117848568176 4.580799611201705 3.1788821629798605 1.6491597049547406 +3.9483847765184534 3.2890210623580693 1.1644417810162988 3.2487228079535684 2.186089638327316 +2.1357968395949403 2.7469969512204844 4.715329807806377 2.3370548426025604 2.455556431150849 +1.2419452509311366 3.044263846675236 4.882330676477951 4.404520842439567 1.864578922456427 +1.3170436532013685 3.2780973821506247 1.0932596122305496 4.278022241949042 3.7401129308454353 +3.3860549355317704 3.639249693543923 1.16530759086086 3.6576713003645724 2.505191498855115 +2.8405792955033373 3.884313557461901 4.068849223164278 2.7669344994095306 1.6686411110588126 +3.1483046246147555 4.686379870211692 2.370595683809031 2.733103586535408 1.5802175295373584 +4.222309268662745 4.224918899367546 2.1755808470545275 1.656432907901682 0.5191544981015401 +1.9714190373274403 3.1776179098657513 2.4847444938062875 4.361063882364912 2.230580679552682 +2.5496680563644167 4.807475631882868 2.18695954488601 3.4147878771292026 2.570069544103351 +1.486810725065666 4.128225117233843 4.839293048478389 2.181262804584251 3.747291657798884 +4.42402809798682 2.3993734235111828 1.5667956047700438 3.772894436174231 2.9943444365668705 +1.996922241746054 4.672988288921614 2.702525277947233 3.570000238742537 2.813155220824589 +3.7123660398508025 2.2224686154423754 3.5337143319410136 2.80610137515596 1.6580756768435974 +2.3959498931176038 2.7318958827852304 3.8344973724457128 4.713485053550418 0.9409989646687119 +2.457104581944323 1.318366220864854 3.289263717635468 4.7397052922958895 1.8440460451131253 +4.703947506816585 4.697111678524706 3.2875180072421837 1.6932444205118826 1.5942882417851343 +4.887285431610415 4.841086019763415 1.5373344781649183 2.074749805035501 0.5393974594030121 +3.109203762650401 4.74064248105481 2.030334894876407 3.660275709758451 2.3061438272422126 +1.9947470201605944 2.428298646811338 1.3601550790742083 3.8066285425030393 2.484592405251406 +2.5857124175618424 2.4798672223256726 1.7243202764468921 1.0376451051193287 0.6947848561046228 +3.4586055696761897 3.0252419074835 4.1498039235849244 2.475102109101274 1.729864223326181 +4.1537400288989765 4.150361296722783 2.519685485367386 2.4482634204052864 0.07150193839728251 +3.6492653334010003 1.5166187604915344 1.577171230633862 3.3547593107034976 2.7763286526180835 +2.6272685686309605 1.107978458586639 3.9398563942433817 1.3759535400265213 2.980241648648621 +1.8762155500186424 1.4124153313219199 2.6016941415878416 4.501862591654904 1.9559526531829416 +2.459544208220789 4.241250529305268 1.2418515076901686 1.1128889134063242 1.7863674776811207 +3.717886914697759 3.1426524972555914 4.155937378114808 1.420251527688586 2.795509203567799 +2.2654969278691404 1.1474405270688361 2.9145338285425573 1.9673561146443501 1.4653312721278984 +3.503853110988662 1.8405693157108112 3.187727464293174 4.432586586683005 2.0775435538710307 +4.318704472297775 3.2306265644620096 1.0216077200015579 4.046531927217675 3.214666389055373 +4.473828147311412 4.164992933276102 1.0632543961416152 1.2032439840826545 0.3390815155093794 +2.008407715624886 3.9713214908892693 4.371650920266271 3.2052118766075157 2.2833332064537197 +1.5016377553939253 4.628966751088036 3.1079078593593557 3.6704854270060574 3.177527366826038 +1.690998857713287 4.290561744493869 3.633773359512723 4.659530816279748 2.7946208262374603 +2.765171711510557 2.5998661806396552 1.5762393221538353 1.1683583046406998 0.44010549074518657 +2.4130089778546164 4.6847038218836206 4.610467440853588 2.7218528494765946 2.954227909141414 +4.881440656247554 3.5693188430690936 1.1743257760374664 2.0611805337827684 1.5837218865552778 +2.4042611562874416 3.3147270308856984 4.675960004816069 3.633247571486745 1.3842677946941948 +1.920535392899275 1.6884530754087907 1.989678607003551 2.1609361850525763 0.2884291249700209 +2.8320931410616392 4.9471485393729395 4.431808232826574 4.726756516096572 2.135521909915628 +4.160817844470868 3.8124339101751135 3.9553749324103458 1.4411086585824653 2.538288057211735 +2.5960545444354612 3.2449317701200453 2.521720326511052 1.6142461993174755 1.1155944359568428 +2.2247969692776866 4.844938533685407 1.24114598378294 1.5045567410968292 2.6333490168615348 +2.2259973752636255 3.431861057417956 4.14060845577384 2.1036410832204546 2.3671382082138432 +3.5599399193325976 3.719152909034018 1.0673522997403944 4.580706075396419 3.516959415319732 +2.119125289849354 3.213457682338024 1.8340950496789552 4.896659417926795 3.2522090792123537 +2.7668992649448882 3.361124341511248 2.897831299980447 1.0090347234262347 1.9800646325873328 +1.3753110525869134 4.645254249569285 4.568010424995235 2.100088231087544 4.096726555028226 +3.596282011473098 2.8442681494164184 2.0098952754948587 2.197463046554463 0.7750525901289994 +2.770026228280231 1.2936776920595516 1.2635921622404407 3.681934745647071 2.8333700519202916 +1.2450700326939086 1.7660208241304933 3.9615461098805906 2.6686676747829328 1.3938882218596198 +1.7183139639174931 1.7594732066750076 3.137091643564373 4.854911224454002 1.7183126012900536 +2.068513133477998 4.1894305334270765 3.018024004894351 1.312851559079515 2.721379004727734 +3.8553738959492767 3.806688023323079 1.0644965365301258 2.702111100830131 1.6383381138827449 +1.8171819774089335 4.038363624594033 2.4815786824317283 3.068129206124832 2.2973222296048426 +2.9987070568027034 3.5757860635103045 4.947065172318002 1.3099232717731706 3.682637829692393 +2.531753451984413 2.0413100187754485 2.9885662666833497 2.026237987601862 1.0800974390756297 +3.664853663621988 2.010289438284306 3.2690087987341525 3.748328012687548 1.722593882675828 +3.873021947628153 3.358606220881392 4.3655952533552025 4.367724392128083 0.5144201329228013 +4.642958364630296 1.294531467654302 4.270295793048887 4.105101380809414 3.3524993479831475 +3.765238020470271 2.7217059357563267 3.709302830184523 2.0611732787228516 1.9507153124504562 +4.358061169910764 1.9702223578640083 2.0613448084080406 3.109348883729346 2.607697592553041 +1.6372854665282688 2.6729202656399953 3.675524010409492 4.581432598057836 1.375939608524372 +2.1912018201268872 2.6152702968704835 2.9213738588113256 3.1868575279678892 0.5003155519834116 +2.83798570891114 3.9928390435715087 2.6534308720482698 1.1619871985812296 1.8862901303089703 +1.0436228345442013 3.437926111720085 4.167514884697679 4.824650482688888 2.4828442112308298 +2.359946518253994 4.571928722818518 4.270812668442438 2.937931611348796 2.582525350440765 +4.285524141668269 3.339517529100644 1.9412840086891463 4.693305475926266 2.9100774331889556 +2.421127829600042 2.8397942192128394 2.774606234191154 1.8855243814693412 0.9827248275232827 +1.3445487315795557 2.767418393539569 1.8175786943351517 3.7796853900054024 2.4237204376990826 +1.650685787491954 3.4879798475521286 3.2847407007676086 2.9289692347192102 1.871422667167048 +1.8490226306674327 3.066397291731987 2.655208530684728 3.329486966719944 1.3916366173337544 +1.2653482406200736 1.7494375402915878 1.4218286793527048 1.131458366317863 0.5644974479556211 +4.027274560562896 1.147506697910774 3.048157576123293 2.1848542708126524 3.006385793560808 +2.7375107713989104 2.3343091645935856 4.559891503930256 2.302215278689116 2.2933978010256917 +3.563318956087841 3.4788880610454322 2.874498984723089 1.1965396044485659 1.6800822175979733 +3.713590021437229 1.4657806827714293 4.299671147010361 3.7299801332772113 2.318877891162336 +2.5452734622563216 1.8888397791489657 2.4340426019989385 3.0543866748068287 0.9031788023341609 +4.496113677375849 2.858458231140922 2.1769645074607973 1.2800229803733667 1.8671956147112303 +1.9746353185731125 1.5213640200330611 1.832794075729118 4.813215073348944 3.0146913926857164 +2.316068285508824 2.698407399427718 2.6039282658350755 1.9540132403270243 0.7540376240038794 +1.2048584881782602 4.121090116714608 4.750025541516815 1.0665693735259465 4.698111988106045 +3.230147059792002 3.518691039257224 4.777389491059482 3.3741404304358817 1.4326079555226 +2.3976184368169218 1.3712903500632216 3.2936052092288786 3.395387125058141 1.0313626423568898 +1.6731432331960927 1.1949599632033103 4.572571112945212 3.4514894114309875 1.2188040946645278 +3.4786489746969522 3.8208812138324846 2.3920366260327706 4.73607791446776 2.368892666920915 +3.5367399024411776 2.5273954743926885 2.8740600693918323 3.4246710839701526 1.1497602636234647 +2.4360335027319135 1.1497030047852612 2.180960535126074 3.2405377231648314 1.6665383185993063 +2.5053407652913675 3.051865410390865 4.874035179628564 4.340934763571818 0.7634692143767208 +3.095876716388139 3.737674137514859 4.391644018951494 4.047491777193706 0.728247688133522 +2.1568109678053937 1.5024785878750833 3.1178315791428246 3.231631563175105 0.6641545752240298 +3.5403073180425704 3.494876256974166 2.7781772158597264 2.7236980564291975 0.07093631032171095 +2.071051743576943 4.797706010634602 3.0254385291344703 3.2184045723820884 2.7334738677935784 +3.49610284974532 4.776381139086102 4.121750463916639 4.619738704635433 1.3737193257909563 +1.1636597119068295 4.216754720971865 4.930431694903783 3.0244058962496627 3.5992115080268494 +3.34508699259589 3.6479007098041127 3.6669059416929026 4.806771774364403 1.1794025028892192 +2.7881338187545777 1.8874178648119826 2.4417478015926375 4.3348361673738935 2.0964428898357963 +4.333140331522438 2.868643185725773 3.03575603396333 2.694600633864727 1.5037083816561696 +4.790516948108283 3.1582882794395934 4.148064563216136 4.286833680916835 1.6381169966920532 +4.370351964919317 3.780031774595203 3.1519450913029177 3.2428636885373514 0.5972806027549998 +4.576821163868118 1.2718895089336675 1.8223533861260734 2.1322981031847887 3.319433531706935 +4.419468166603737 4.586969235736498 2.836628005192123 1.5487455200529987 1.2987293419680424 +4.29925907447068 2.923985711985405 4.55280276906096 1.7052515880213166 3.1622657304853146 +4.981173071340509 1.370530670989635 1.0607671868583277 3.720902311181585 4.484758346095119 +3.14956558574794 3.3974391516883853 4.064665715737842 2.909129307002949 1.1818230394623241 +3.519378647473153 3.854650785973283 3.4555419527967492 1.9790741403766394 1.51405568192424 +1.5243256719044251 3.354428276343419 3.6159446737366325 3.142064403675799 1.89045974649748 +1.8862984373098635 3.1764573431028116 4.081393071571087 4.545285768384149 1.3710238642537746 +3.8776625441887225 4.395656119191431 1.3707306011992046 4.881679065145075 3.548954276998783 +4.546670840392745 3.435145313217516 4.611895107261528 3.632159103405287 1.4816786543695526 +3.2663078485274837 4.127907954926544 2.3454413700146617 1.3518758947775207 1.3151148607365355 +4.896879525595409 1.4341387615528718 1.3352777621168501 1.7903887231122182 3.4925205204522456 +3.2316546762977345 2.498078677366272 2.1308036887617994 2.112595670892514 0.7338019338506961 +1.863540782234422 4.8969918628470115 4.599018193894512 1.0585829558481592 4.662242714967768 +2.317492962559075 1.0996755313526236 3.405709786966004 2.2884165218941215 1.6527018896114531 +4.899725517771195 2.9619141196662757 4.190229306701928 2.6706615575723225 2.4625594731539295 +1.7627783044809537 2.377595376984524 3.207209476546543 2.3047163436159925 1.0920136847259105 +1.4415382825237715 2.5372427861191906 2.299328842476516 3.1162611082352947 1.366728460974255 +2.999048055624598 2.6311126151624014 2.7789432447752533 4.208038274333919 1.4756995262780954 +1.9495324882230345 4.185481971412918 4.174175314567818 1.2069101219343135 3.7153913407326904 +4.030300587243699 2.4212894243570844 1.4624098113645 2.4016319314413783 1.8630767866986704 +2.897239603925061 2.67923033574878 1.9100813497669469 2.8108418208627017 0.9267672131120112 +1.460587821521563 2.95365805489877 4.575777986009232 1.5075714261004176 3.412206062954661 +4.723298115857777 4.1402838388275125 1.062467982994102 3.26834937459094 2.2816262535775502 +1.2468062318515734 3.0473116068009483 1.1654927446924979 1.349671245396923 1.809900915891066 +1.3632833040080343 3.9007431419282246 2.5840118557189338 4.895038363960778 3.4321343142211744 +3.703721542676642 4.543648029956563 4.184154981099526 3.2463514038367163 1.2589487890940243 +3.709378609065524 2.541866780884035 4.99244260220569 3.1784956972900136 2.1571942988050115 +1.6864748483431242 4.228057718911955 3.507043234042588 1.0437155323684433 3.5394387766712563 +1.1092231638531356 2.404858447666937 1.2061064063054259 2.1764202601018225 1.6186969338120352 +4.198427632936655 2.166306753153716 3.948784471147369 4.208288770361609 2.0486233795796776 +2.9446847770451927 4.03271081925787 2.7817409898931964 1.7032940039613336 1.5319427437076434 +1.1300256319763191 4.54485908234547 2.378854486629579 2.595352578932673 3.421689482950047 +1.6229717424013406 1.783523121891085 2.3853521029674143 3.1696514265629814 0.8005636604596313 +2.8677612775948647 4.686716908747103 2.654641767830998 4.9229512234044766 2.907546624620917 +3.0612788863263325 2.2676509495077286 2.0706079209540382 2.4556495723633467 0.8821011140560708 +2.0905600841782985 4.52178877730657 1.0559808314385344 4.061864319725445 3.866032656800262 +3.4746539138255677 4.216000455479342 1.1563666289496246 3.404215450707296 2.3669429693804123 +1.5795868309054848 1.7420121485537159 2.5280195065124627 3.4106643485977934 0.8974652645495352 +4.278165082563354 2.114095255555973 2.961977176031964 2.175453447505096 2.3025676519267706 +2.5188214108962343 4.433306891541797 4.85556535226254 4.125913490707736 2.048815876225353 +4.123889851538859 4.186158284980799 4.589840063711279 4.513997892462608 0.09812946928943418 +2.5898968148620565 3.6788427074955075 2.780923955471564 2.6825948104200585 1.0933763203260913 +2.7162964046087477 2.0784797437261053 4.392049840422097 2.5503998650741617 1.9489701702690412 +2.145867196618716 3.722418887356434 3.113459781606226 3.7277139183340724 1.691987995836622 +1.6233469208953308 2.2557813472140587 3.4074615940103414 1.6885280214607952 1.8315856328414035 +3.3261380664757687 3.242766750777799 4.232726665321584 2.601271633468058 1.6335838812994574 +3.1782997755236413 2.3057202410483115 1.528571219252019 1.2823541390653035 0.9066520250685236 +2.5730646531403645 4.263632310183189 3.692488742504201 1.2443719861690408 2.975112545045691 +2.537047667478743 4.5194178997540995 4.7301150154786615 4.487865238593673 1.9971170952681458 +3.921689269479408 2.9636766146575653 3.4600536137775237 3.0173033725813037 1.0553748257742868 +4.059321539521756 3.6800952842778556 3.770447334721097 2.3033187247827023 1.5153477854162978 +3.8555432012429303 3.713956191441557 1.044843930008756 4.50788833221762 3.465937595083709 +4.01017858265171 3.6844800031836407 1.2644535475321748 2.7864579591772856 1.5564629753819068 +4.556333038886678 4.980589765862952 4.125139081150765 2.625538926824897 1.5584589802875106 +4.103850201642557 4.613655183709437 1.6758574284197305 3.8121649597039236 2.196294831747726 +1.182872320213721 3.064166488253223 4.799224850296187 2.1582185629466015 3.2425579341808963 +2.991274274082226 2.136041547071658 3.220610948540786 1.6542946833829957 1.7845922951329198 +3.186251454461935 1.1618746792827666 2.5627467224355582 2.2091918352206545 2.0550188286627336 +1.7008285045241789 2.264615168705859 4.029808451463392 4.290680609870187 0.6212162954566846 +2.9365698368883035 4.4898988844698415 4.363740462638253 1.325708144266493 3.412106606999825 +4.090198517633519 4.816584632475061 4.152869122947392 1.7489200924224861 2.511296025799472 +2.7269967152141588 3.682584376403094 4.87686538646822 2.2691571012520693 2.7772810947042244 +1.1386075791307153 2.8591921327388303 3.9190786806184192 1.470557582554242 2.9926020072472452 +2.79405630513176 2.8522846904295274 1.330732799526647 4.225664956963241 2.8955176982734674 +4.56067349828738 1.9587114731996054 3.118297283325634 4.724695334581366 3.0578948770481116 +3.751907483049651 3.657094591805646 1.242425058761056 3.3277175179204916 2.087446795626958 +3.489028833899438 2.392194048757978 1.105876884673345 3.550719857276428 2.6796088719406406 +3.8018188836420146 4.043618035238721 3.076286806092113 4.1640593651531965 1.11432309944611 +3.67331616418354 2.748473615033258 3.7779660172063605 3.204333889152776 1.088295713055085 +1.8818841533402217 1.4547685215131971 1.998101720133957 1.2026544241895172 0.9028644214810548 +3.372659410506374 1.8248779358431046 1.4714289459744943 1.5891238371182346 1.5522498448098299 +1.144245348289409 2.8205301107685785 3.704407636956388 1.7288938911564884 2.5908657172389686 +4.437361493279951 3.9881004540904095 2.0458063781198317 1.8859464732002964 0.47685497851500913 +1.6857172866117787 4.84792855339758 2.983580209992486 2.073956601460608 3.2904399713390333 +4.2787537361665535 4.9047735042571805 3.438058709334632 2.1278635811998936 1.4520716317827598 +1.732106265317892 3.596287937729617 2.5540842984800802 1.1583924130272583 2.3287612902302004 +4.891666370489456 1.160630938405025 1.541414511191023 4.178841602610042 4.5690969630792955 +1.7283550342386884 2.008029137130294 3.0087200456906578 3.884084227407464 0.918955958934354 +3.323577214450195 3.3172874700035258 3.984502060641755 4.514019952623306 0.5295552462338462 +2.887981879167367 4.061404104045894 3.362575171413057 3.861361510080678 1.2750323640913293 +4.947204792557875 1.4173960561927812 3.428129045489601 3.9498214484416954 3.5681525582039324 +4.949993019035858 2.357438936617278 4.12600274811394 4.035520379099205 2.5941325581719537 +3.3800353363364697 3.0482066339793463 1.8133233005007177 2.1541536057491424 0.47568433302322116 +3.1253299081394514 4.458104124503171 1.2480881160599098 3.5041010741021283 2.6202827287638883 +2.651386582393218 2.4475326512947455 3.7641024792851145 2.1192102154729175 1.6574760887486477 +2.4088349812191496 1.6085530108334143 1.986560429051519 4.930533875368118 3.0508082346718726 +1.2273995671204587 3.3707983425345005 4.848154383939587 1.8606203716868204 3.6768896889645095 +1.85572114941457 1.0656467783387642 4.969949173015583 3.4577185778748327 1.706182547299842 +4.4548385942707345 1.1213864633121786 1.0097522770366036 2.7185438869752256 3.745914024051909 +4.616889930597606 2.681015169412398 4.858609638467184 1.4658282671095253 3.906222795082923 +1.6673800025777288 2.2233529607652813 3.156058878391052 3.9823517575665663 0.9959246218524668 +2.477128333355562 1.5705569329439744 3.812584897705351 2.154757678012416 1.8895139042618962 +2.6784759290182705 1.5781079385478054 4.546293158212094 1.1367537096589628 3.582704141523829 +4.814635434430713 3.380264166782602 2.790788628558737 4.175345741349593 1.9935945756432525 +4.249507678554865 3.446763431067985 4.616316289587218 2.039975013163787 2.6985056419204296 +2.9471968377013154 2.1104482832110936 2.9490151607334174 1.6287927102903574 1.5630532499231604 +4.102157243619899 2.3900762613575313 3.3162440070141956 3.8125233208584026 1.7825583993726972 +3.7345522605074453 1.4452706872684327 3.8545466647117554 3.840327069301449 2.2893257344609834 +3.1890552184961254 3.14215042364637 1.335280097993762 1.1105688542049141 0.22955435710312422 +1.1839031303904415 4.384623760337794 3.9673608883745617 2.934887838408905 3.3631255031407856 +4.986772723638984 2.425936648855098 2.623250374150662 4.641522017222055 3.260567715466225 +1.488544130308374 4.358132567664508 3.2786245824098605 4.963023497963572 3.3274220511571024 +1.843948123455966 2.5043625612107903 3.7357005346437897 4.786150234963757 1.2408028862383138 +1.438524732758271 1.8779872276823353 4.994733798177181 2.5904260559809273 2.4441405449829867 +3.5863328649655917 4.0489747197233825 3.777388464725055 1.3133343896591443 2.5071098840343335 +4.068778991470265 4.491900681999878 4.714290735535432 1.124055757638816 3.615082179080989 +1.8695004316738824 2.7068201188109673 4.065085077537411 4.378596845074737 0.8940882992477445 +3.5691193245443027 3.0462266044836066 3.6015705887089773 3.133078894691993 0.702069272974809 +3.7879378815184075 1.1434551067862908 3.9926546707529096 4.220811599686339 2.6543068266640177 +3.1768215967044826 1.8266952358221267 3.911163314632 3.6006849553356357 1.385365656402957 +4.860511462381902 3.2955877704196617 1.0591906509989886 4.083093775634742 3.404845997816436 +4.358909605805337 2.283404097241929 4.406320187461652 4.242833929380434 2.081934406425536 +4.2640972457744954 3.420822209354969 1.9277536391098855 4.3437267673650535 2.5589136256426115 +3.514832988007734 3.6732269514524813 2.334128948854383 2.678413237463891 0.37897271542828936 +1.209253614345732 4.856963687564775 1.4229751462551428 2.3515331248535305 3.764041537746681 +3.9407118993372854 4.007027849347454 3.248515068461259 3.509040948814695 0.2688336652275602 +3.896492934461807 4.932362484011066 3.967106407816042 1.3640388031626665 2.8016043043369363 +3.6835485389171287 4.307838532046208 3.596518452527852 1.0249047605228658 2.646305911346725 +2.166064753083644 2.9665939109748933 1.7787253472020361 3.395535241440034 1.8041400075215777 +2.5706078017931517 2.5869151359416143 3.8016922634369688 4.489295282670398 0.6877963660895255 +1.451510158279576 1.1103057020786795 2.1936165937135033 2.629732015904641 0.5537302072348083 +4.35816034819339 2.4825745437063693 4.329496976045819 2.7677069126133333 2.440698734426204 +2.0146153725976275 4.250626521609078 2.5322431736057607 2.0364728731283503 2.290313089806494 +3.5539511698109814 2.610981036894845 3.4562168681850505 3.2646979453312865 0.9622225155248351 +3.343405376069221 1.0284814803364335 4.936383331834628 2.5708336533916785 3.3097881992985907 +1.6175464612235353 2.490586332675033 4.105382984463184 1.0501776425220806 3.177495601660135 +3.1096272317040823 3.8103443344593844 2.5118087053238654 2.6597031542088474 0.7161544708404585 +1.709489582262894 2.2376490135022413 3.5740714006157814 2.322831507359935 1.3581434590211645 +2.160531231242058 3.599474516502008 4.404357618324688 1.4583550938653227 3.278641281432852 +4.192208978110683 3.1240506267836547 4.066522557468424 1.9066200273354266 2.4095935763494643 +3.07277989349162 4.297603882690636 2.5969872055066823 4.666228763786408 2.4045694897484866 +2.7652195111083557 4.13141772726439 3.3024562351335893 1.2588332992089666 2.4582294990633207 +1.4816253522094893 2.3533836612210033 4.258078259970155 3.8424647413563697 0.9657624688219901 +3.904036349643668 3.593716316951243 4.1862651682679415 2.9358174829832153 1.2883780253963342 +4.914104911792314 3.221442331644664 1.3306031560875344 4.063168533230551 3.2143459911143446 +2.107625792859415 3.347780860054175 4.113707059594281 4.766284731747977 1.4013715456232068 +1.153021025553842 2.4717441693846274 2.159287344484769 4.005806439146709 2.269066657686834 +4.657670749729606 3.4260215185174783 1.219686900556006 2.1785685249217113 1.5609015978887453 +3.416702865030015 3.125203896970722 3.7350789656185395 4.990348301661131 1.2886709255618523 +3.477532808662682 3.929268079798924 3.8853212259018144 4.118045785245862 0.5081589079317755 +3.5241294033319868 4.470526092929616 1.6785789966011424 2.489023465259312 1.2459883349614367 +1.6508814207791698 1.7509551825918401 3.3465165300232265 4.840271387722145 1.4971033139708343 +2.679399022508864 3.482172867435177 3.8371760073985475 3.1381820603439645 1.0644427575575497 +1.270807678400681 2.329407233453187 4.836692080156878 3.575843673158242 1.6463206623827453 +2.470285307623181 4.630303065616226 3.2188034347666643 4.707785509104248 2.623498491050443 +3.0086621395332847 3.6968834314833776 2.2671768874442515 3.6575797227879687 1.5514085829417417 +3.9580158886711017 4.975821385817745 4.107029142862361 4.393720852425092 1.0574120135282778 +3.0616419577291234 2.111946541513884 4.453282329772062 4.5662360292957205 0.9563890013045516 +4.392738251196084 2.9996813763775516 4.38781408015131 3.4842965271986626 1.6604070058189697 +1.840818076943369 4.2167855260574205 1.3387516305457403 2.252837800485255 2.5457366017175116 +1.5126688796983876 1.4422783539844453 1.0955763011292432 4.919255313249083 3.824326870684048 +3.7434130340008194 1.765355851098544 1.608902815698118 4.077968442843554 3.163699620694476 +3.7356628381863066 1.8948190745240048 1.5515878611097027 4.880673989250328 3.804145135348115 +3.1628494113910746 1.4393747113525373 4.437240875683363 4.498908812877382 1.7245776225356433 +2.2211702498742087 4.866081723010706 1.7264477347715346 4.727513842173357 4.000244302755146 +3.196431102863621 2.5587734556287645 1.1682040979184523 1.5550187359678804 0.7458101898515487 +3.5902524178846154 3.4510230862652413 1.1144302214262085 2.9735706996391875 1.8643465677049325 +4.9747255994109345 2.178509129115294 4.426597311198512 3.153371261368188 3.0724470903042644 +3.1052605587160036 4.087884988972357 1.86197941687533 1.2472408458685673 1.159074752386601 +3.3344785429851838 3.986917157937345 2.5364358704713075 4.5756524592672125 2.1410465763969504 +2.8804538461825615 3.1264284470838675 3.4328239892388526 2.7478485150203418 0.727801418361788 +4.340688998907488 1.8027914771541815 3.200131056223712 3.536080139269575 2.5600362531262975 +2.3315636266583595 1.8254637443005106 4.5311800672195055 3.5819171214447545 1.0757496135921158 +2.7204916991654753 1.235306920122301 3.685038682875707 3.4285278041046916 1.5071734003854371 +1.2502826985749729 2.4489411105555674 3.55831088920146 3.6413538930992466 1.2015315764091299 +1.5234608256257292 2.4571894915710506 4.54706007717238 2.3863352505453688 2.3538438771529338 +1.9110695135776838 1.595211177492394 3.5477136037012613 1.5297146765100278 2.042568519932572 +4.4756882242260225 4.441749183823664 4.219178715712074 1.3962485103562572 2.823134216216733 +2.8231718926412386 4.2841441710968855 3.3371066425758307 2.9675558344950708 1.5069863297883717 +4.478590235738924 2.0803746268071923 1.9497434349275613 3.0972429472600878 2.6586073869090154 +4.101215338795502 4.86713649147955 2.424968079459312 1.3535103201722625 1.3170637577829274 +1.5287776618334323 3.6193276516596824 2.283452767466573 2.0183338995380784 2.1072938271855257 +2.5690278088883978 1.9842661117739548 3.743621288094479 3.6188406302233904 0.5979267973514025 +4.20319821258757 2.034354740888982 1.6861780600036278 3.4241446070396626 2.7792822316824792 +3.2650327340889542 1.1130166159379788 1.9966933456135667 1.6783923489175643 2.1754284399352835 +1.779647144710773 4.229056944844512 3.9957494912118405 4.29925200955543 2.468141435905184 +1.7204806684773568 1.4468241536584046 1.3844644474567276 2.6059381722072112 1.2517531499296 +2.3089672870930857 1.1208899508615846 1.8759785929874817 3.243708647792644 1.8116879586960528 +4.267866111850939 4.274397962348807 3.4240299368962273 3.341869691996914 0.0824194813914868 +3.080074469226625 2.755563279790862 3.545824167374018 1.1529208705100706 2.41480717661087 +3.440004371395494 4.288738192351634 2.191992291112861 2.0254815278927873 0.8649132517790094 +2.2804836250582365 1.3630483753834555 2.603422231099509 2.329840199668553 0.9573581175650606 +3.8371095197134126 1.6402435185821176 2.459956288743062 2.154591591081727 2.21798733664203 +1.4027097053995967 1.7597990527849592 2.5008535945615287 1.9294045751121396 0.6738447772638535 +4.03598230119378 3.4369426737601696 1.4635003620428506 4.921788428229489 3.509787005498299 +1.6518669759880638 1.9951650058903758 4.285815903476931 4.115528322163131 0.38321194877575615 +3.464147374831505 3.7038290344384364 3.663823100071797 1.0142366357677397 2.660405181504353 +4.211833333814812 4.421264979196268 1.5804970961259688 3.1945270669128094 1.627560862359793 +3.115458960935396 3.893299310316718 3.533989965906146 3.3034287052691513 0.8112916269949895 +3.8068574065115026 3.5423838800507865 3.323057949963712 4.789932703930151 1.490526011186208 +1.560908183033329 4.63122916090819 4.037307771149619 3.802725454056578 3.079269356628482 +1.8625297127321088 2.0360797453586543 4.478043983934647 1.9406320173242841 2.54334014676019 +1.1262058898565392 1.380440535847526 2.5866801297652913 4.94814010534035 2.375105991627557 +3.8566796982517815 1.3033864096802708 4.900128387253028 1.0047637088542842 4.657593004458512 +2.437584626377536 2.1808687509306535 4.501583008163807 3.761582535195839 0.7832647960295899 +3.538498938536309 1.00026068249042 1.2646894797164396 1.931301348028052 2.6243141632488998 +1.0555386467731807 2.4985615053002213 4.316925736479197 1.3035742288062115 3.3410480809211065 +1.7194476409022235 4.861430525413985 2.398751240513924 3.1186837059961974 3.223408010385938 +3.3104374342641525 2.958395531549173 4.729673031436535 4.6751865938314845 0.35623345315968313 +2.75498080973585 4.487167537815763 4.444653485388129 4.255628888857943 1.7424698445108293 +3.257536900826628 4.284114370381621 2.6700505142849362 3.793402086826203 1.5217687263605038 +4.773366004061777 1.27820920894303 1.339496340537059 2.453272427506325 3.668326347855289 +2.6016383200964874 1.2372381060340247 2.5931128976921545 3.8090643308335688 1.8276011139995383 +2.7261950164210513 4.29427431463149 2.8287706677435636 2.2721126677804047 1.6639533690578974 +3.2984402049303125 3.070750795316752 4.977175055050739 1.8961728604474852 3.089403986273119 +3.9896885910029876 4.4232284152108265 1.9874522124676206 4.41133586622419 2.4623502484663837 +4.734220086620075 4.437248902753293 4.171533597716175 4.734586531515735 0.6365693130426011 +1.1434432094894014 1.9345898788669316 1.6201223772099929 2.0924971261270344 0.9214396105451497 +4.459932693213255 3.6726295774888156 4.251864030672611 2.5920290121704426 1.837089677907833 +4.6466889486001675 2.3741262125698275 4.9497392277364245 3.546101755262903 2.6710933235897167 +2.235329636940186 3.898316916412384 2.619535989331979 2.721847173847749 1.6661315284704752 +1.8357849599266642 3.7678837167166326 4.4385679043878135 1.5607736148572124 3.4662235327289954 +1.3652350903885622 1.1552563447945894 3.757962130064742 2.348350942639181 1.4251648232104661 +1.1827118173007083 2.6370452427671 4.980224651236077 2.999325160573138 2.4574475588580724 +1.9200573347555263 1.5009061538115245 3.273624438423897 1.540434573184696 1.7831530560932314 +2.101561787708771 4.571992461083905 1.4831178794546784 3.2968914515298904 3.0647679003003137 +1.8174797295789538 3.626808480791086 3.486373531832784 3.9796781272296515 1.8753719507880353 +2.2892895162482034 1.2696868313183316 2.112644333870497 2.309438085676145 1.0384206353236374 +1.274749663525233 4.7215844234022555 2.9228645468520162 4.178808823273963 3.668523665914333 +2.343177121972786 3.6126988891135934 1.8355620350406285 3.87499720925793 2.4022866912754344 +1.2623503174269053 3.9004781468544953 3.060588783723322 3.5704529127561733 2.686946198656526 +3.610861313314156 3.9379283326566106 4.112825620396579 4.493449436313801 0.5018439243280173 +4.321385497864204 1.8880395769346632 1.4517307749345254 1.3591617178830435 2.4351060349044014 +2.305748014358364 1.3075487207530712 2.1956981862645373 1.4102461643212778 1.2701719208551496 +1.5115781137311566 4.653909601733173 2.35483468629545 4.8586401613941215 4.017871207197047 +2.2688179434432842 3.485670743447743 2.2268176881360455 3.0648297655454138 1.4774961857015594 +2.8281527367873665 2.38502388464968 2.229879097729618 2.6044058174250826 0.5802012093771509 +4.071589505013037 4.470007370409418 1.8490877109378934 4.161472045906972 2.3464565003590834 +3.4628861646918407 2.8068320002373777 4.883680532378072 4.071924219087416 1.0437218877005896 +1.8650599457296497 2.0089024540924547 3.438396735258537 2.7384798108813446 0.7145448678996528 +2.8855164313466717 2.2983519559341925 3.7328712418066083 1.2822302846742217 2.5200006392779253 +4.676476394633303 2.6832207660594176 1.1211977459828644 3.9579333547196924 3.4670069101051673 +4.219102068711542 4.719891940394595 2.4945643977657124 2.605645804718234 0.5129615721970607 +2.3059287143976994 2.0951585521788436 4.97608696429085 1.0206490173828509 3.961049534292841 +3.135200757312258 2.2333863676097128 4.543822911126821 4.373941018981677 0.9176758963563271 +4.723647151680476 4.030851308128744 3.223334394447674 3.7408995936052425 0.8647773217548951 +1.0871426964600701 4.048117364717993 1.6072587864777592 4.426889521886814 4.088726998728152 +3.1104124688429553 1.9395751758194848 4.6692274734430095 3.731995596700075 1.4997544990823033 +3.85774377533014 1.020479097724488 4.069617067027608 4.09105778996543 2.837345688383564 +2.0977384613088974 4.01166914700399 1.8783497860927079 4.179818980236128 2.9933077224429248 +3.790195642067927 2.3304494793332124 4.7290484732325595 1.5995269120984261 3.4532251680453947 +2.6238938322489247 1.9179095919935172 2.5668231987946464 1.4238832618480153 1.343400702306119 +4.195449220759099 2.588904620446673 4.752795703091713 1.7885268823775657 3.371627973880133 +1.1986173673340605 2.393145578424699 4.122697270429326 2.9049443381188786 1.7058194075698907 +1.2199979281027598 1.0105033899885263 1.5766994751540033 2.351088738678274 0.8022260859392184 +2.5135603440722702 2.5616838240978095 2.3983002588503153 4.231418651698656 1.8337499588353507 +3.814033280219686 2.474420016747038 2.1748175040831192 2.3612509803903032 1.3525239874988613 +2.4872874665829237 3.1185909909652447 2.609937094113454 2.8846971778782127 0.6885036263724085 +2.1675394936055112 4.661016242215672 4.036080716541523 2.7464809437147375 2.8072217350851347 +4.9873846387534595 4.435123895329303 2.9369289544518042 4.450209386799724 1.6109033477072758 +1.9737420763841014 3.340657405302111 1.3681022517322758 2.5531887456372573 1.809112355401685 +2.1020867539761077 4.685730790346663 1.3362358181557288 4.918344446170871 4.416641113965868 +1.398677170558229 2.563232489487172 4.071133025477456 2.6357051209903624 1.8484161760344722 +1.5491936686535284 1.0573353520254343 1.9131362351285075 2.3206985279019197 0.6387735327382804 +1.206531613915602 1.4336756721819142 2.030825573163848 4.158565120292748 2.139829433301165 +1.8447595476184455 3.0826619519847793 4.860903367380271 3.1509805829044772 2.110980410047758 +3.9332832196229495 2.7967281627073777 3.7493146129382455 2.6029380687763224 1.614291354869062 +1.958081468233325 3.3004487062411827 2.4724070773697697 2.72326362780624 1.365605657052478 +2.5237415048636804 4.722362752029097 4.762462811425912 2.39073890154675 3.2340392225790513 +2.7135776540544785 3.888318442475938 2.308213975530924 3.9992375454477944 2.059023223277355 +3.7890711588674644 1.2340691676308162 4.994040484346377 3.759431131535661 2.8376566792462636 +4.5611731791868255 4.578057732229865 4.11641220710373 2.969278119687795 1.1472583417186617 +3.8563053450974745 3.579276579403061 3.080426863654933 4.21742954808767 1.170264944971616 +4.918545689981379 3.142592239772142 3.366819431092992 4.425020618940115 2.0673172014161625 +2.0553872585840587 2.8485515919929028 1.2239188094070732 4.346613322117319 3.221852057358093 +4.026419261262323 1.3379574302482808 2.968732427889207 4.500058744792637 3.0939921308336253 +4.349385390224355 2.7270564770730044 2.9428304607005495 2.538183088358906 1.6720318772050486 +2.5921934419524355 3.617290577049509 3.867603001778025 2.1581047844855705 1.9932908195520063 +3.9030470364015177 3.528949374795341 2.7610435979486354 2.748820545868163 0.37429729283201013 +2.161532408703077 4.5373351868864304 1.5975405450933007 2.4180706479636953 2.5135052199150576 +4.231869881542083 2.8980568524048027 4.985670835342715 2.0599051374890776 3.2154567506706337 +4.562593607842575 2.770231191227676 1.2647277110985464 3.510952199777708 2.873688829020213 +1.6512324101515996 1.9291463233363033 1.390692549415879 2.954031091685744 1.5878487147357903 +4.44739091853914 4.203610717820803 2.8413592072367435 3.421496328531681 0.6292756675469421 +4.689551059927263 2.2880669699556155 4.948319688484585 2.4236831653204196 3.4843816393273275 +3.466637542912055 1.9937990063577429 4.0939324227686775 3.087664268909031 1.7837681890401424 +4.489017577139295 1.6562304922253346 1.3716910900402994 4.352756505889749 4.112351356830905 +4.1670173755069975 1.7504227146423492 2.2703733693721735 2.9345871023922943 2.506214204343286 +3.071558508931342 1.086633869448363 1.2743211284520402 1.0988338865828657 1.9926669557368295 +1.2528623856937595 1.6227458804889365 4.1664756251288875 3.6842302101106665 0.6077618283735743 +3.4440365779479167 4.2431107494099285 4.447979154028896 4.568259330447457 0.8080760189097191 +1.5687324939050047 2.918075132889976 3.73720239480226 4.406447765430501 1.5061921934103424 +3.0880498284377214 3.9251214695941017 4.10601347818433 2.0601439866462967 2.210491101279154 +2.578949549283818 4.6408000850400635 2.172216981529468 3.229276607561522 2.317024532624836 +4.020267523581723 1.8176963156283321 2.760776179370081 2.804131996738693 2.2029978785747755 +4.422834311011193 2.587187698555493 4.741349071090553 4.2411262350722065 1.9025828159358327 +2.5473879264392396 3.4076423315130544 4.3955642067126846 3.0102834333726696 1.6306564513822073 +1.052058856636167 2.8762266306725905 1.4309052640435502 4.968194586590219 3.979950228235985 +2.8799167464905615 2.6565171208866944 2.6660442000537956 3.334793200641071 0.705076321050727 +3.7663303191276145 1.752122892496807 1.8540898140182573 4.47099628630915 3.3023069273180328 +4.339064867702463 3.0919020034428604 3.423617116746821 2.4722105649850845 1.5686266721955782 +3.5613756550987894 4.4400841810434 1.7019359268575145 3.127205831860501 1.6743724124802621 +4.606786716317483 1.8119564381665811 3.289151296929099 1.3864860730277226 3.38100742943767 +2.7635815596165947 1.0279475057416003 3.2685692055051385 3.001950402244894 1.7559929257324678 +1.7837782531249022 3.376589581025104 1.0217423161478814 4.864114897919814 4.1594320505857425 +1.2676378074060892 2.6825812489481677 4.230478284098978 2.4995653247813197 2.235648589447088 +1.188634547165751 4.959725988973416 3.680227092501037 3.2326660981106747 3.797557307819686 +1.9992007272526933 1.2204472973990086 4.481654669289938 3.0138522145391557 1.661595904749798 +4.855853977038755 4.315570719669843 4.760190973914661 1.4560737603040796 3.347998888809689 +2.228116014350368 1.1118514758225229 4.700891828436667 4.766220021000516 1.1181745358925155 +1.760615656303798 4.955351338882316 2.506587139469752 4.406787998071393 3.717135911501064 +4.703175508712334 2.7336420441630453 1.2608281657505267 3.04334261909069 2.656392261008548 +2.6069298496118662 3.5267277511989463 2.3745440198684875 2.328196322626572 0.9209648683872931 +2.3117433048545144 2.304328783308282 3.5155798822013047 2.9781297881792326 0.5375012359930847 +2.4225312990939085 3.098295729485693 1.0199644468588325 4.493857730613421 3.5390100469337424 +2.9819741142782443 4.8862672515125505 4.825895276765287 3.3314671174782324 2.420670955703763 +4.552017688520856 2.1913967117851727 4.039642630726215 4.166457218637553 2.3640248170253315 +4.929247097409496 4.132122492176556 2.4029718402142626 4.711913566264856 2.4426664796007795 +4.1418778261864295 3.5277987383458718 2.224283940252858 2.824963851153619 0.8590165781187448 +4.3460306634621615 4.744774710070198 4.433346516441965 1.5137096305310438 2.9467399546408863 +1.0752531585890202 2.248770951833834 3.719143264270833 1.4318715029068612 2.5707501087027547 +4.758501385501326 3.4554551212889986 3.1327504496971983 2.4477744664239087 1.472114691299191 +1.4906819689293438 1.6388294876998235 2.777356335004847 2.4014891071190614 0.40400972799722884 +2.16044701616013 3.7038536362132555 4.762576107614613 3.816714313398059 1.8101819048323216 +2.413013574646557 2.521075864691288 2.487387380127038 2.0726883209276963 0.42854727654079267 +2.5571121898696068 2.0453533738024947 4.017669718144375 4.056392953558431 0.5132217598498184 +4.581012133719964 3.3852857132998184 3.6263722756941346 3.8964045421230944 1.2258381203909168 +4.851836892488203 2.905431003453985 4.51102631040654 2.9070324649769326 2.5221602131988248 +3.6432709948619753 4.717125267101357 4.3710686142095145 1.5856557606170751 2.985245008866902 +1.356585951539591 4.74997574801281 4.775241608771246 1.1479262226141262 4.967143164985355 +1.322357079907499 4.678520253917831 1.9860435035628328 1.617161460722539 3.376374566323046 +2.3346083540627176 4.86743985725917 4.828207904369041 1.1406030272829346 4.4736635046786475 +3.2422477194920045 3.7818986551857114 3.4538291917702724 4.600167219232543 1.2670098679967663 +3.8285758270630095 3.723744059327705 4.054691609516431 3.9557336137597936 0.1441609671536631 +2.723184674298913 4.7618345312556105 1.550838290361391 2.473548830084385 2.237741714180942 +4.617880691528038 1.004017119264164 3.8435276902260926 4.199425955454185 3.6313459617789343 +3.044161883456933 3.036473586381031 2.9529468239649472 3.2549241128725908 0.302075144505366 +4.252331526096787 2.2290667119535583 2.504446962963742 2.7416008011099366 2.0371162095220554 +2.298420037893769 4.623077174898045 4.661749923763061 1.2315212603236243 4.143730141805378 +2.571344675795858 1.5346439727342869 4.552842203204236 3.265501404419378 1.6528746715780935 +1.0837442792072722 2.6778541321633194 3.239300766364848 1.3032096941611 2.5079144449439674 +3.374381107831952 4.1402674245988 3.475824114649615 1.7132837336797433 1.9217519207119607 +1.2557160363715418 1.6729412371577186 1.1703048653495154 3.8406375371228503 2.7027307387365065 +3.959929258955662 1.4257465527052227 4.096687409129373 3.543648414090527 2.5938261542926075 +1.8563146724996016 2.716435557452351 1.3281212326765437 2.8025108434595114 1.7069366306681253 +1.8348273594152507 1.3579295836718117 4.343224671235543 2.8193123548397754 1.596790605111313 +1.2847571136930935 1.8598390300054253 2.6259757684546017 1.7389508596583112 1.0571340498226944 +2.989120388577818 2.2928567401579043 3.0153405347954196 2.113855121855721 1.139060585681933 +3.581068545423023 2.1237988159387977 1.6754916742410648 1.659292301268935 1.457359764833556 +1.0552441392986243 2.0739353134464174 1.202643777230834 1.2660804119594289 1.0206644477556268 +4.684312952973139 3.006371747797574 4.992944748639477 3.09404993593778 2.5340260846588456 +1.155161506817473 2.622550001767468 3.2111289120414095 2.812593953463671 1.5205456613729729 +3.9942319940006845 3.3845220596524186 2.058242079299901 1.216033412173927 1.0397411423162388 +1.0088061037173723 2.927858071914028 1.0530219374490866 1.5175498994688277 1.9744737739807212 +3.444399188274244 4.193756417078365 1.1724935485665355 3.003162783494187 1.978101641491555 +1.723736184810703 1.2747159099984424 3.0554123466546588 1.1349176116927984 1.9722878172844613 +1.8521088936177073 4.661874797879815 3.3521765987059826 4.445934455241963 3.0151435596813694 +3.2682641661655003 4.161330020353281 4.1985342335309355 3.996457183580734 0.91564280919621 +1.9006020472669771 3.7670691572151247 4.865544420831007 2.03663876212096 3.389160175972791 +3.8179592196646848 1.2170524040799582 3.532759081974562 3.210230724450952 2.6208282669343217 +2.847893014572585 3.013716868094764 3.544345852510434 1.8830433472931696 1.6695578948446517 +3.6401281330815016 2.4743527743605793 2.2691857703789178 3.5920751517978085 1.7632550871815882 +4.562531917168427 3.862822794772946 2.687433209961622 4.815562295642472 2.2402067452099743 +4.743536008863959 1.7973317885958418 2.9629159918035586 4.157804479740079 3.1792888837173776 +3.265452159381082 1.9281653873337588 2.3558788005452316 3.599696771357082 1.8263129674859284 +4.569356646442036 1.3208141326695397 3.526559813648675 4.954007288001442 3.5483284453138526 +2.5704070821342486 3.097268938803621 3.519869846232578 2.306454103490264 1.3228609831527955 +2.246074886530265 3.415713210068931 1.8871657521316334 2.6237281061874 1.382236560543279 +4.422976817303944 2.9549368850449436 4.639403113825464 4.30594891558568 1.5054344705203038 +2.4288936781458355 2.0641536946304972 2.6134485534673386 1.8842737037279318 0.815310503469234 +2.620640853322952 3.280513625884958 3.8191253754932166 4.618722533283231 1.036719677981728 +4.152017291740398 1.5666469802994007 1.5450550018450877 2.6142675253565377 2.7977410651656527 +4.396928294315526 2.581408497733911 3.340601119136266 3.9815468912495877 1.9253372729393905 +2.6228823362005076 4.6289296114870435 2.3014571207370356 2.029961465084241 2.0243358322479192 +2.6577837625098453 3.8069363139971637 1.088358260412618 4.9085475228349695 3.989285347943519 +4.242310741270817 3.538128754589916 3.3054420236673994 1.2780131363524658 2.1462386082364957 +4.566050702157604 4.952255346610837 2.643384443214201 2.8438298159505595 0.43512340186281173 +4.972185557313166 4.656575014611791 1.2977146149333967 1.9040218212898892 0.6835337907843845 +2.616621839280076 4.784295455288349 3.4129627794890105 4.878458822128084 2.6165793617869055 +4.383814731116313 3.9894216992588514 4.9842663196483645 1.460271551033769 3.5459956278597917 +3.0771618773380953 4.2758675819712035 1.6855017145587956 3.2495684529160154 1.9705837024484263 +4.6629627604005135 1.595131942942737 1.5832303780943953 1.2436525265473364 3.0865675177784406 +4.258877529240274 2.916714990993714 2.8486328080175083 2.641770581878695 1.358010404848046 +2.247715608888304 3.2307504772037845 2.979052810903271 4.087051928527531 1.4812223320555806 +3.701484471699199 1.0174855253649882 3.256271357122499 2.5574155316327265 2.7734905459986963 +1.1228997525557984 1.6311622533376209 3.247237685833197 4.395226146772787 1.2554713362524212 +3.192667101647119 4.128554727114956 2.4977081720347103 4.251212176567742 1.9876272138953035 +4.863240723605713 1.271693840149136 2.5017681456615253 4.9503244948293705 4.346796200780158 +4.884222004790718 4.879844363849715 4.6029718557992325 2.8105167609861548 1.792460440473253 +2.655870594811722 1.8431407042156525 3.4452622754760656 2.1091536909034745 1.5638785198463696 +1.982919790690083 3.2616983215726085 3.80631359982634 2.9635276679127207 1.5315229864672544 +1.836346223349175 3.8275353609008964 3.9565006013725137 1.8377543144903083 2.907562554732245 +2.345190682942361 4.271816511747616 1.4650447022911086 4.747156154830378 3.805803814059386 +3.2438277142235585 1.7612999870482233 2.6050005631361977 3.038715435191173 1.5446672949490867 +4.262173062782468 1.1736570444582317 2.7201169467304216 4.894079814874766 3.7769095498192407 +4.096391302640789 4.849977520080119 2.5231690738917343 3.329794776635247 1.103873729844579 +3.904086039357376 2.6112444327316666 3.7055876535558165 4.099574899908049 1.3515418491895692 +2.7651072274640622 4.9260523423933655 4.53675806917343 3.033330054438589 2.632485438749162 +1.541802582205277 3.3597018214702845 4.368659005796754 4.4206546610802215 1.8186426785624081 +4.640388227984356 4.778070219567325 2.8539958624243407 3.32216142760168 0.48799111387818384 +3.6668715872621225 4.447681099946422 4.167525761469429 2.404914075776291 1.9278131262236753 +1.032808722741113 2.1327114138860694 4.792990858560618 4.2341046771004685 1.2337502558520606 +2.34820056949429 3.71144431188221 2.9860443400415693 3.1534459827681016 1.3734834586362386 +1.508825902792677 1.7524003724182213 4.82426438818044 2.4286509883553986 2.407964302823997 +2.0851749546795952 1.4797065448926823 2.5897615754741734 2.1190542798312415 0.7669141760466914 +4.216749430074724 2.5302555592534355 4.276886776838296 3.3111653230215565 1.9434195385144433 +1.2162467850101035 3.0941490851868663 4.831500625503452 3.6802799715782837 2.2026860972533213 +1.109911788305237 3.2672913413103757 3.0760621212742643 3.618532906879873 2.224536151416789 +4.880551576286921 3.821060893802517 2.9828410348051246 1.8368801175580578 1.5606879669328544 +1.4168735590071857 2.311988296164871 4.061797788886356 3.8069899935426283 0.9306757787999012 +2.5890602565735676 4.777083384217347 2.152711389379624 3.180549132027045 2.41741507240991 +2.2024986894468297 1.3505966873884296 4.045773480713761 1.8169389605350692 2.38609311206652 +3.3742982198827693 2.2571352603523405 4.441001910998459 4.435945531593939 1.1171744022843833 +4.993967937966664 2.1410338842738597 4.219827218006314 3.1274912848362337 3.05490269986044 +2.4484630680686914 3.9306167527561153 4.176022144285135 1.916342936134607 2.702393322368212 +3.673155430878354 1.0077897022597821 4.101720952493678 1.041868861954225 4.05793904380944 +4.974568863737302 1.8471981634125711 3.5157280644698896 4.12068893297573 3.185345373687591 +1.0718112525755856 2.4826995905292546 4.732438557200883 2.6809101287382564 2.4898543722402726 +1.49184389329838 2.6345376772172404 1.3902566504957847 2.6498232770777226 1.7006637441322157 +2.3173597948479054 3.4950228523845985 4.142243288322732 3.9128669463316346 1.1997932252483714 +2.946028180771926 3.069280766591399 1.395736650951119 4.437798068746892 3.044557253452924 +1.541554392551681 4.8227511432712165 2.49810322496719 4.870226328377675 4.048854175525 +4.592480498358678 1.5454586469482599 4.100714166886528 2.121150127247963 3.6335954576703675 +2.6668706993118705 2.9634146241767527 4.432498075891038 2.3888603567080873 2.0650407808664606 +4.9821027017219315 4.147102840448939 1.3421379755102807 4.738534033458401 3.4975321229077294 +1.3915280183489789 4.843375737163055 1.813593465840564 1.4746723705129345 3.468446364402947 +1.4414235994167517 3.348005363964109 3.4251025050473873 4.736803215267091 2.314219690974777 +3.6528616776459506 4.104322066355281 1.2681770910560388 1.1065988296378415 0.479503928176305 +4.768901247966671 4.20472806274572 2.28035039940977 3.9516866690180197 1.7639887496892868 +1.2853565935106581 2.9917554895674634 3.952883915608465 3.4628012299400552 1.7753811509802184 +4.62993442093917 1.4610526345399486 2.8191822967374414 2.027712390657129 3.2662266284511703 +4.685699479711548 4.914182994662111 1.3797818609578179 3.808890039638328 2.43983017038824 +2.7767622701979016 3.021795672333224 1.9711216483363887 1.9794914911213168 0.2451763088682411 +2.6909323015809914 2.093149965585096 2.7412280674828775 4.86961402975178 2.2107398140921135 +3.690115436474089 4.258769143676996 3.5530600703043906 2.17454925053399 1.4911938569279555 +1.3199079951516022 1.7865992456949642 1.2145767557236162 1.9937996400625364 0.9082890656675293 +3.966127769715803 2.6280861574666616 4.613475469124683 2.376004685888453 2.607034879311366 +1.9680654300266869 4.549790663575454 3.1829803727744177 4.22805642079998 2.785226943661712 +2.4582722338791085 1.1326666477185623 2.978223121711366 2.0331350925580565 1.6280115334078358 +2.6375933808703524 3.8880036095926376 2.2950770415763477 4.624255557133938 2.643595713687775 +2.389350946908753 1.4754863695157105 3.885423585692651 2.8448616989378124 1.384888986879654 +1.161026140886043 4.486703927541038 4.940704728473495 4.151541567068721 3.4180273895872815 +1.4836251216532594 2.265214557478128 4.353649077568106 2.0758625118067386 2.4081515079736984 +4.908826646723128 1.4087065046566756 4.902092397776831 1.3953327819215935 4.954614416106712 +4.215752894403293 1.9295310878239462 4.756932084642191 1.3590388375248215 4.095422892411082 +2.052908310346706 1.9238056136511577 3.873421515973244 2.2404375729305452 1.6380793828533902 +1.091257602924744 2.3728010201518583 3.7990691686300297 1.7906719095483248 2.382438473607462 +2.6227998934657903 1.6877622951577433 4.620648765112457 1.792105405228713 2.979085908293364 +2.3264224461782854 4.445820210190783 2.6713133614099713 1.2026138149426333 2.5785509961787727 +2.498797872877902 4.245445082981786 3.472071222362829 3.8549821161635824 1.7881267374420007 +2.1209843712230283 3.8198721317100595 3.495905105684813 4.479055422624478 1.9628561252499392 +1.200277902728414 4.770046826243846 1.3656933508788724 4.447361082079537 4.715922621589542 +2.1701364877977336 4.606686992013465 3.621761958131246 3.9767647131447497 2.4622764498855756 +2.02264251792507 3.1628405017079677 2.016188393311675 1.07746913355983 1.4769039545114762 +2.269063532198005 2.434752318337411 3.5676852829537906 2.703107652047049 0.8803108846973687 +1.5134404306516345 3.7706645475700147 1.7252193893365741 1.832061466086178 2.259751301219258 +1.8743990959768824 1.947751867511617 3.3035894363049727 4.051752100027797 0.7517499587500216 +1.4888675578182657 4.389335683863843 4.548314057067505 2.2846775053510586 3.6792344024909673 +1.0324876109425474 1.8564415048713196 3.0815613192935625 1.7074531390356822 1.6022088847500533 +4.291241879646304 4.7769812507136855 2.593341168124259 1.4319860823566062 1.2588440617659233 +1.9320748645929804 2.9455123207615297 1.747552613831385 4.7522672241436075 3.171019609997565 +4.686385539181937 2.2989531382471657 2.6645284353234 2.453408121159588 2.396748892997719 +4.791480043232276 1.2740793486621427 2.7368563895577362 4.1570655902959635 3.7932969591140595 +4.090059473531543 1.0662374660289746 1.9409241309908873 4.296322063949784 3.8329360750792474 +2.6353297818123935 3.8038894125862543 1.0462280026951656 3.5193050439789806 2.735258975453595 +4.877286057561774 1.6657916896658587 4.970232355888972 2.1581978297998012 4.26863376866003 +1.6057826099972194 1.402793901087831 3.0885273037877563 4.159186000266828 1.0897313707014982 +2.814694977419015 2.329465999729789 4.902347040110442 2.8323999785614 2.1260592650264583 +4.543049590857227 2.9420139856874323 1.7326573787175112 2.560059849537263 1.8021958433366894 +3.094712259975578 1.5826465074639011 1.6683339180927281 1.1904252942822038 1.585793016957501 +1.8641641803672941 1.4194937430240935 2.3423331447693974 2.0107577323442047 0.5546837404971683 +3.7220468862965617 4.6417685270751825 1.1937843160319055 1.8915223491909439 1.1544376377410612 +4.108355257503799 4.810205315146337 1.4028584078170336 3.3193224930845524 2.0409380425512924 +3.9808741167706563 3.9154133997074956 1.6418562510010215 2.5306719821330566 0.8912230413236617 +3.3593590449315496 4.748700368303905 3.9795219460538287 2.891040073557416 1.764953851969888 +1.202514139597377 1.9411931102631135 3.007588752931291 4.749636850428276 1.8921887315214245 +2.3271208154542538 2.3001585044077597 1.7960583549939253 2.7394382712276166 0.9437651363395738 +1.9844256413307764 3.298494801916636 2.5134507328185305 3.6756281246497435 1.754261681986592 +2.6511997884766147 2.826255292405711 1.3221121057596963 3.961636336046586 2.645322776473122 +1.989361352546176 3.4604758571500547 2.766436197095592 1.9972244353133068 1.660079702942037 +4.687974732971714 3.7419648116603392 1.0414668784309118 4.950008657709727 4.0213969726436565 +3.0307390830694625 2.089833326088737 1.6487751976284022 2.867678564732285 1.5398146193151483 +2.04839057308483 2.4772557020191814 1.7213399617518874 4.254671984831953 2.5693766633132666 +4.562612834689401 3.3892128728535393 4.355135066296973 4.050503289887363 1.212298638799399 +3.1606266174885285 4.695790479785975 3.028856673408034 1.9577871773048172 1.8718755165840522 +4.4458876719776175 3.134285297997728 3.8693937425858325 2.596171942795023 1.8279481772994086 +2.8832069524782207 1.6010531246428652 4.690143533478693 1.715620169166137 3.239090564197633 +1.2853463509588474 2.7126780038585405 4.283916655422132 4.434415680497652 1.435244092103518 +3.8937723745466886 2.400796741187215 1.2971383170121316 3.0040945227752687 2.267746839970989 +1.785796017800949 3.753673536854046 4.620221548571179 2.0476659391671928 3.2389171482874466 +2.567345015262017 3.919376708488369 4.993468737140974 3.185791380411721 2.2573628697044206 +2.539141065484043 3.538380313545504 4.001122885870621 3.1303290925954617 1.3254285741876002 +4.515879883716545 3.997586535430564 3.3051217168747336 3.0211213182002745 0.5910027253107596 +3.00052065656452 4.091991806344067 4.721156048705838 4.774048005158699 1.092751952575926 +3.940783165207695 4.098247930324776 1.1912576923619893 1.7937591161731001 0.6227384024996317 +3.7543377182537494 3.1380082532568423 1.4035402670668384 3.0205820602245423 1.7305161571745167 +1.840545568101723 3.9866493253868582 4.882948420044343 2.93804817934343 2.896273171389716 +4.990269347727768 4.797058640651575 1.771857954857341 3.7853951414176246 2.022785796615644 +4.4893331585556275 1.9584250372903242 3.080729327687217 4.985219748377265 3.167424771132982 +3.6193186144571756 4.3399580978197445 4.181219893584453 1.808202019712828 2.480027236684162 +4.5631790801008485 2.2078883361587045 2.5216544682515334 1.906827667942823 2.4342157839594636 +1.5626467054958022 2.43780465684116 4.480131657598733 3.3869079698671607 1.40037119051358 +3.4480911705946733 4.386144596334323 1.9768858192875598 3.3682608824087232 1.6780550634044504 +4.666785651476067 1.5607196282171731 3.4589488973383316 1.7451749318788763 3.547487469397171 +1.6044116205000964 1.3345633871536537 1.0193678016079262 1.3383581901506667 0.41781926358515925 +2.381038492439227 1.9004396502046887 2.335260092163645 2.339220470843389 0.48061515972393704 +1.3656625803356373 4.915208806705229 1.022229096463421 1.5488766220698729 3.588402991493849 +3.600782480025939 1.4795618165022955 3.240221268343594 4.512052576745125 2.473283643335321 +2.1170299682553058 2.7131663494667935 4.823627556886633 4.12448557694729 0.918791648371617 +1.059920439762911 3.0693326758349513 4.924448050873184 3.872742635634577 2.2679995182799857 +3.108969133333651 3.639082768586648 2.826066395753275 4.731141871589684 1.9774562030331968 +2.2955510078288706 4.229358289450516 1.9743771281511227 4.089011288524949 2.8655345460616624 +2.2252436424373236 1.2062753652080977 4.280448974659016 3.1292608428523887 1.537377788577658 +2.642539470916891 2.621453705633451 3.4073297748787494 3.2614688460966303 0.14737713541377692 +1.6617700980147228 4.482177395304564 2.65168042448634 4.156497654716279 3.1967440027319505 +4.634565297216387 1.825497227317035 2.897798369498577 1.6113879948698866 3.0896140654263595 +2.5375415352436006 3.202098479576302 2.886730510286727 3.195076073652784 0.7326069332925729 +2.264872550470077 1.0708114899557395 2.8557651366888552 3.8158436873115757 1.532165996099133 +4.7590091910570225 2.4143297910319927 4.903839022513424 3.220815976243826 2.886189193933123 +1.7822514528121052 1.2022538981323847 3.6234386577591784 3.160529312076047 0.7420796626745946 +4.901758557514576 3.4742480211967233 1.1021628710870455 1.956882411316525 1.6638304672497666 +1.6562368736152635 2.1059672492670343 4.176111622980761 4.139886302520331 0.4511869730237606 +1.243322495448591 4.758334042210292 2.2809093720020956 3.8831899643610615 3.8629793256653966 +4.977468660082547 2.0166300390586294 1.11054047105466 4.058126981609116 4.17789798546463 +4.170170160579898 3.197711738655447 4.87194088305977 2.3270465060390713 2.7243646548440177 +3.32972941909269 2.3796836063442255 4.959144525939131 2.1636426474667414 2.9525273578518365 +3.412112933369386 4.323179197628433 1.4374198894210388 4.8171740380380195 3.5003970978968413 +4.533515122426549 4.520826396689298 2.6802310267852634 2.912911065481169 0.2330257585941164 +2.7753616531404863 4.3015988239983125 3.4264403855805785 2.3325789378749087 1.877746726394389 +4.997635220862032 1.614809289708122 1.6963989127190167 1.3424460270673726 3.4012929785227914 +3.2498676496793326 4.5515340407561204 2.147915386814071 2.168360100097469 1.3018269393280004 +4.021134233910818 3.576373558045226 1.7976516345041422 3.993370240442648 2.2403107497088333 +3.328796216907425 1.5241596417619312 1.5181384701117078 2.6364736546074936 2.1230607040859857 +4.927276373581378 4.671996544953336 1.1650805133664197 2.92024794123808 1.77363482452448 +4.20663866098176 3.5822421709631214 4.334078210814211 4.74532567075118 0.7476599829148304 +1.0703393610751033 4.0298050034887645 4.704339130547059 4.368387236442336 2.978472857653643 +4.27837312707746 2.851280960120613 4.6909731930621525 1.2746928247303466 3.702372699774955 +4.506591204566389 1.020367720934373 1.5575460323774113 2.7204072311949496 3.675051067065968 +4.125586157031742 2.2930422183793477 3.3662680765139954 3.0849835207371794 1.8540060108883651 +3.8616726381741118 4.1033734439948715 3.410217083706337 1.358298408878945 2.0661049169003505 +4.497089039169199 3.3782268743179027 1.321358472801888 3.754604103417396 2.678159226566858 +2.16279306543966 3.71401185813803 2.174095254264895 2.1444158267805182 1.5515026945630448 +3.871935178146964 3.537385214822214 1.7662882072135062 1.8659661315493166 0.3490836096990049 +4.777998406723915 2.3662334564595326 3.9827900155020934 2.299050331770746 2.9413584443068985 +4.224858918003079 4.917531167230981 1.878287293394632 3.3302545092382907 1.608727335733196 +1.2471431764805114 1.9300601585726755 4.034515702458851 2.728777402241224 1.4735427082664034 +2.5685662364117543 2.027084779714112 4.084770887423023 1.4850025072300808 2.6555597900628096 +3.295472515242064 2.218140537244322 3.614291318596268 3.2082306900176536 1.1513163878353276 +2.99853059574689 1.2580631195947496 2.660413851907321 1.031169893172176 2.3840433957078817 +2.5643061356946304 1.3348338774198982 2.6233342061950506 4.707071355319382 2.419413677011016 +3.3466191301654864 2.1465659843100067 1.4311874070093382 4.5349809630928135 3.3277112241994407 +2.510164355226538 1.8081209386289112 4.368555294015455 2.01397821112763 2.457010011792506 +2.9703990434866627 4.419194779376335 1.6679672685644782 3.872719725071745 2.6381702899560757 +1.3878949515750305 3.567916637266642 2.496503499152059 4.094463547548548 2.7029559497625937 +2.560097532719133 4.292155323772814 4.923703653961772 2.2428649800554163 3.191695503499941 +1.4626293025400647 1.1446756178182365 4.852080885658255 1.5387744816825983 3.328527282786531 +3.683508319343439 3.4507821065766677 4.413667146314275 2.9459617947150964 1.4860418867655216 +3.4820575853629836 4.09123818488416 2.5570593504016426 2.215284220520217 0.6985064367909902 +2.535071515324365 1.3017299890467808 2.4758042138515277 3.801059445994136 1.8103681257584265 +4.040955823596395 3.70236493718564 1.94666245675695 3.951599076372012 2.033326003629003 +2.76128374516029 1.7651215033736878 4.497262482184322 1.8157815903635455 2.8605382334730742 +2.0521160216427847 2.0748547783844695 1.4740130319611082 3.8095795046936485 2.3356771608273426 +3.3091348655347415 2.394320241928994 3.990463455679503 3.0891034733444664 1.2842646196629193 +3.9259617878027826 1.3481074884515398 4.9921409410408675 4.226800102029697 2.6890666389180486 +1.9124696424912098 4.813009553341036 1.7757249905624013 1.3122992452120514 2.9373279006413715 +4.90725469261354 2.623778010051897 3.9140758861859264 1.404347095343732 3.3930818385923067 +1.0731979856528109 4.56658537962279 2.8237709577775574 2.0658416806854967 3.574662539796121 +3.356583848885738 3.4192554039021146 2.0501857498927243 1.4540820122221674 0.5993891806439109 +1.6735554559182755 4.852981636122291 4.913496528547359 1.2448237896932168 4.854679237619953 +1.5576314310106532 2.2002093836361607 2.045603994015358 3.8990069866707535 1.961634287624573 +1.300905349010835 2.5290427936532964 1.46265986498301 4.1653598227267175 2.9686543491152273 +1.1825458660019077 3.5620504531302286 1.5481333657031904 4.619657815658634 3.8853963152861013 +3.064975160379478 1.2767476710641028 1.1927021586207762 4.037733365029977 3.360351189829028 +4.472559458117507 3.1340486825025606 1.665697143515172 2.364139063323547 1.5097788618810817 +2.333417530542227 4.519948917082836 4.091701530066549 4.360590640993718 2.2030026913969945 +4.347524649497679 4.493810168368544 1.9819938818378797 3.70884392854017 1.7330350650887074 +2.448227833030745 2.015684931377073 2.5039358364115367 2.9185117732650117 0.599138188725201 +3.622110238451007 3.595790206084934 3.568757304349239 1.4726792302490845 2.0962433152731013 +1.8326010836064874 3.3811871883928397 2.350143599804202 3.533996118267209 1.9492628630866007 +1.8281101246524294 2.926214449952417 4.91375791114819 4.551613440879196 1.1562792597763532 +2.7281415225732006 2.7460236498247528 1.0295639327094817 1.1312781481498275 0.10327415987402559 +1.285033854942252 4.3142318917247025 4.551842050596295 3.9978016366571203 3.0794482503079257 +1.5746551983366315 4.401673757923327 1.2589971791635879 4.0258092826403855 3.955664691577553 +4.370376544338239 4.370742403688412 4.188678334347818 3.4509330103690132 0.7377454146964629 +1.5828683532936338 1.7245019603964344 4.140307336557029 2.3649894534482243 1.7809586364502907 +1.9271226596703936 3.5374145522278932 3.3636101932229887 4.025996258200191 1.7412051224116005 +1.1282910038939558 1.6182600437977355 3.965682486859063 4.078867218032474 0.5028721939370171 +3.2960810606405055 3.7554548184787846 1.4816191372396306 3.9069432204067307 2.4684450890754683 +3.0171724053834663 3.220037434381915 3.0671849351805065 3.258660613137846 0.27895726418174566 +2.404330198597123 1.1387569765874592 1.407606588883433 3.473760966816572 2.422946448793328 +3.0232064529157077 2.6360713242519993 2.719607790294004 2.0139762502052827 0.8048536998818149 +1.1060083551780204 1.2232464822172218 2.655371456313723 3.5396772850198523 0.8920434838702058 +2.1639472083612574 3.7483561518759525 1.1617610740281035 3.3455462347961697 2.6980121068446232 +4.51037542379348 3.2502537953172363 3.64439923100349 4.5870919363510385 1.5737140957839515 +3.776466323425056 1.3272676321557437 3.4392707806093648 2.0600085082716255 2.8108608370407766 +4.037347405277408 4.691875665381579 4.665375263950841 4.794673565158549 0.667177108397907 +2.0152322784758403 1.5673197651085866 4.162971860519061 4.675244462398993 0.6804769197171977 +1.131146469948808 1.8769930575236695 1.6459808616986153 3.584131787217337 2.076708006024473 +4.6734567642096945 1.6941788176521322 4.08251951078905 1.1948492170439096 4.149064570264289 +4.963675008569707 3.776767925721437 4.309908547659505 1.0363517687738946 3.482085927702435 +4.645358814249102 3.1318599764712713 2.0500998338838023 1.0115749055894527 1.8355415436986513 +4.706270366564566 2.133192838464983 2.2324324555946937 2.303638635020755 2.574062603279011 +1.511982864471058 1.3906407730013997 4.865863160772732 2.455684135662084 2.4132316167839227 +4.184731728194089 4.427425319980687 1.4390931790457988 1.154011897175463 0.37439486744226813 +1.7586154028816896 3.5159541052759096 4.921354108870884 3.1122217830082404 2.522141765923117 +4.127497139151831 1.712994508341259 4.627070933855309 1.3899989401959267 4.038373193047555 +3.1027959666835936 2.867465896690291 2.4298002650504484 3.3880299301372565 0.9867037716029209 +1.7401463725630957 2.497323676582537 1.8632140241411714 1.4600277879764327 0.8578325074015543 +3.2621556656169055 3.1628626157165707 2.732530127296665 1.3448129180292714 1.3912649505595234 +2.0258929854434773 4.612300665118453 1.9483431729107017 4.260540108776318 3.4692591940799176 +3.5907697475975566 3.2974222600667704 1.890920287292837 1.6785633116603393 0.3621439403612961 +4.527985052069844 2.2918509735243586 3.616331770329054 3.825435906560318 2.245889613721362 +4.420375159516944 4.63207620040488 1.9415550898889453 4.762656504116858 2.829033495749346 +1.7522955243834315 1.2683389223260049 1.374158072964169 1.3857131748311264 0.48409452904791866 +2.56009257393199 2.4384573352017487 2.8732346892150646 3.545714039922154 0.6833912557447535 +2.9449650491951225 3.2214115252872393 2.8252842031191836 2.4986930016334026 0.42788370736880754 +2.151163838875265 4.4496711194551 1.7806570710243435 3.819955187842081 3.072763012035728 +2.4088890430441654 4.638576679015417 4.327951020293456 1.9932877108085396 3.2283369902564587 +3.2803174487092503 2.7990630946616433 1.7444953980311446 1.6999776915389222 0.4833089896547624 +1.280758501994093 2.712289941021958 3.2349568131336484 4.3675914651617145 1.825415984344371 +1.4865133707801315 2.7051454326895437 1.144032834883225 3.296596434206502 2.4735792187526897 +1.5438074944031661 3.957870779157245 2.25663912236695 4.701160089347934 3.435605376175689 +1.8380836984251632 1.7880868922497553 1.699715233650072 3.585298261028666 1.886245751159155 +1.5228394052272747 3.3874846528403335 3.4737962067002055 3.869671247851446 1.9062053791898872 +3.8487682353145267 2.1003830066176863 4.816274024787367 4.527924747943088 1.7720034462105094 +3.569261408420991 3.1838724540062806 4.136960392494835 2.653397871111974 1.5328021402114282 +3.9940961152032113 2.8977205569910307 1.5682260544626736 3.30224489638591 2.0515508058027403 +3.5971512881123666 2.1756521005086915 4.7864247921027925 2.880725957177476 2.37746671686348 +2.425179530261649 2.587662577483557 2.500707824773336 2.0009344796366606 0.5255227275233864 +2.5027911191785486 1.8013518042364618 3.1988425754137446 1.6374773583448747 1.7116887724171537 +1.3562880102717738 1.2413670745817318 4.479632398903648 4.835662321035333 0.37411779817721574 +4.103430324668588 3.1565662734520803 4.191763755453127 4.187889844234728 0.9468719758627699 +1.5956673470507585 2.1951325821256833 2.541961053533417 1.5044542497828006 1.1982399325228044 +3.7912570202815465 3.9573768009758825 3.6262536775629277 2.0120082999120372 1.6227704461214472 +1.123221514012564 3.5020249735577647 2.6697571302286716 4.2296857587662835 2.8446587185944554 +3.640960998036823 2.7509358781740514 3.9316890893852614 3.717123717606681 0.9155233545646018 +2.8723813410308283 1.5935347572923453 4.977043937122849 4.147366211825089 1.5244060196007014 +1.3544242083479263 3.1327831854689725 3.9111210035914845 2.429654577209341 2.3145849355779737 +4.183636193345086 4.1407609091475255 4.43002848297264 2.679172469721376 1.7513809034967611 +3.4877392603524187 1.6727101832537272 2.5048656189506557 2.5591920078648585 1.8158419279348588 +1.8911264804874746 1.8233874580144578 1.7161170751232806 1.9274548989854794 0.22192848163408327 +4.926104439879544 2.8628296699176787 4.161510447960087 2.8244845180435276 2.458605522167073 +1.2319059813642554 4.8351114220774605 4.4389011807713175 1.660072935746971 4.550272064759461 +1.9480872883082037 1.2829746907182034 1.7069439092195218 1.6949795306127178 0.6652201995041677 +1.0721911629892191 4.859347578193622 2.7908715788663137 1.659376498008784 3.9525731911286166 +1.680191680432515 4.353513708220061 1.1996152408833836 3.225929957778291 3.354489826509987 +4.320899679402878 1.0797580615101872 1.7724543731639937 4.075830760674208 3.976247196764262 +2.2315769407840387 3.4418188783428567 4.781762147111889 2.287475946119389 2.7723905208119075 +1.7627016691636332 2.6578955731925364 4.15524144860316 4.298590629197179 0.9065986506649376 +1.1024536573894101 4.894662436843955 4.071570623537287 2.430975226070346 4.131876170114714 +4.382552936683854 4.324523690049704 1.7527404490132854 2.2851449122207423 0.5355575654475878 +2.0187514927037693 3.9928449312151204 4.933095327988134 3.550242569321648 2.4102544795363583 +2.1819666862138885 3.2032484176150886 4.4981088182668625 1.932574154964175 2.7613374446998447 +1.7897977430985854 2.1918786778698345 1.3475137365781844 2.6115784482898476 1.3264722663897697 +4.4298491960023885 1.0799997473714544 2.6660698530431604 3.865242035547252 3.5580198498300426 +3.2735777387155056 3.760624117353921 3.003534180854161 2.5070172651552665 0.6955165149153096 +3.0122444567962785 1.958431683530478 4.358388942869135 1.2678626929857817 3.2652524959513043 +1.1651258599162464 4.562908647172973 2.0778766116276315 3.918146799771492 3.8641327920697974 +4.436638150369105 2.115727035755254 1.9440470162534669 4.389838811738502 3.3717244710681835 +1.5671366258407984 4.220956693582696 4.3404324267863625 1.284663557862789 4.04728110368332 +1.2980934561054354 3.294363244480582 3.940041150928493 3.46413244118539 2.052213967399281 +1.7289952947349798 3.657250276415859 1.3347327629742027 2.400516207468384 2.203193506012354 +4.050670709926969 4.058022115254445 2.8810613577109323 2.5320921526441187 0.349046629041526 +3.3928627229191677 1.1558173969300332 3.467140613774799 4.4849848974119695 2.4577182052185513 +1.489822435308621 1.162460755036283 3.305601435153261 2.6705494724331715 0.7144625008111808 +1.8258153094655927 3.810083488914494 2.2334170551765795 3.923931855483759 2.606752864778531 +4.665093561415803 2.5639284924982726 2.629116949661968 4.623852363391455 2.8972165983277396 +3.0968447508317762 2.4303809507302163 4.847422375665648 1.0500156858368106 3.855446999350739 +3.7350528997005887 3.6403092610129053 2.7378030633337356 2.621618406676044 0.14991741564757557 +2.3323067349592983 2.025341527824345 1.0939743455584647 2.874792075264589 1.8070803592610594 +2.4237340815609056 4.245529391805984 1.0343959202941382 3.2728757686609233 2.8861271946979654 +4.1512407806306175 4.519837868599174 1.090235465021761 1.2388054582077386 0.3974127025324946 +3.279061424856732 1.0221856162122274 1.7512906140159656 2.0559814935989937 2.277350422694291 +1.5345196401669408 2.7405965372540706 2.843058116628918 2.047669204084512 1.4447370016324397 +1.7604440824591507 2.8438299485213205 1.1791646670702098 2.9779461597267036 2.09984280199895 +4.1187514188605565 2.6570448860667373 2.432785123696504 2.158607872003272 1.4871984243395977 +2.042554103598136 4.4149834526940275 2.653682905289667 3.3479579195712006 2.4719301794159114 +2.48813102459941 1.707033688998525 1.0203850287600433 1.1594755786393285 0.7933846663179998 +1.9059349435132207 1.3975871211410325 2.8367436461355195 1.2146282310011363 1.6999046821887216 +3.1222309119607687 3.4831449669194794 3.339720505860859 1.9883563689952117 1.3987294182483525 +2.6325036166471314 3.0155417204714206 4.077310387559137 4.424079248420812 0.5166883314384119 +4.822603640681612 4.292118433026577 4.735775194899579 2.1834383841328098 2.606882765130778 +3.4093306618325947 2.214805402113962 3.7786095389611263 4.73355232993657 1.5293156411093942 +2.3433907931998186 3.076855880306427 4.131107504073292 2.1618922144599533 2.1013757138720455 +1.1891226919285627 2.9819072764233936 4.6683296308505255 1.0728699214771993 4.017637003031661 +1.6954795803313853 3.149106747235544 2.970737262977826 4.258717410790787 1.9421443822543438 +1.050347728269986 1.9000096643906632 3.384971791250814 2.7454877073913844 1.063421505895885 +4.644864263904255 2.2265535968484267 3.377189083485217 4.70380376835646 2.758284431401525 +1.2018284730124962 3.1060922962468 3.543325497032436 4.667974486386852 2.211573208766745 +2.099468584761517 2.3944672703444687 1.1015270373776893 4.394235757263628 3.305896994539994 +4.79197223746317 2.6207661852963198 3.0971670154718742 1.967412584811108 2.447545871799667 +2.182735041999956 4.988387694627239 4.629029287443483 3.800490137876545 2.9254339728593455 +4.30737447800432 2.307473678848051 3.1791000390199113 3.655765801121604 2.055921558626659 +2.176994235750891 1.7972603496514377 4.884221308388264 1.2092580426116735 3.6945301229059617 +1.1484463420834454 1.8983440864068046 1.6439563587864807 2.569040823148254 1.1908517511196646 +2.2240821967640443 4.254400215763468 3.4463490607611025 2.36489608437355 2.300376447108438 +3.0676992125966245 1.813652963347693 3.8647124512628572 4.118428523315484 1.2794545089502505 +1.1566433427866705 3.237242258732916 4.793120302635115 4.12351727837803 2.1856944111954277 +3.3453839616163803 4.573979914496017 2.1315803528981605 1.0774965294103822 1.6188084267049134 +3.800848982416403 1.946085491028077 3.3202148342934166 4.25130833609883 2.0753512276458848 +2.2400886425193405 4.496049282011881 2.8283882375305844 1.1414445686262713 2.8169375834398487 +3.325059257545877 1.1035298345054674 4.873013040500764 1.4533187195924882 4.077928668562825 +3.1033715958008687 3.70860413172388 4.436750709554845 1.6017887729647917 2.8988472889157553 +4.76764109891052 3.1580705394747555 3.603122228998838 2.5932245115291646 1.9001607262420768 +1.8514711009522378 2.1946737969008088 4.411699869790585 1.5073738333094093 2.924533777662488 +2.7922618289567733 2.379065827876043 3.209692716243555 4.811369106409472 1.6541155322782113 +1.0968083034136011 4.679700516258107 3.4461079763101248 3.0353424007718495 3.6063617354487736 +3.4788860738651355 2.8573161672997007 3.0706193934146686 1.7091803107797898 1.4966180289150146 +4.105776671901394 4.789984333249403 3.7298078104075674 3.5084523220635098 0.7191233385639406 +4.454630694238421 2.4708706933624747 2.9313511571907918 2.5254501633897775 2.024860330453433 +1.0191469929630141 1.4951051799275357 3.4342285397081143 2.7416989446825095 0.8403174612757267 +3.4006649891366267 2.740582483408926 4.01212204389091 3.832045456179609 0.6842050071502735 +4.813235421674813 4.119717317059774 3.7952868009126974 2.4417953033102062 1.520824314479181 +4.6358717941607335 4.29847120118633 4.0152962319473815 3.123700602079655 0.953300544077631 +4.645286177919375 3.5649955119260452 4.575195280339104 3.2481106109347224 1.7111930466199445 +3.6303713454609694 3.7965628508084346 3.0696558891810084 4.799114786758064 1.7374255940494552 +4.152255548396663 4.335328641930725 2.395426299936282 1.6883083963993268 0.7304323973364202 +1.9493343175787072 3.259875249785736 4.8217396218325845 3.237063919889451 2.056383868668258 +3.899608483907875 2.944428990556568 1.6023364687826183 2.4396722952734766 1.2702358642567089 +1.2997131016028631 2.4626512688850957 1.8143247943303535 3.9607596613032094 2.4412308000429905 +4.49304573313402 3.7704929717300373 1.3902891248131168 3.5395996658105475 2.267513681249837 +4.852516114444212 3.682729795597805 4.157335882391054 3.62301222226466 1.2860411367958233 +1.9457980772108745 1.2591669960816687 2.5057531951361796 3.957880503696582 1.606280162935327 +2.309676799690427 4.963397945902616 3.831654902374319 4.4413408192726695 2.7228574768279588 +4.684451242770124 1.7632132495223645 1.8057867649751413 1.497845241448423 2.937423938607799 +1.5891924838988758 2.3358892991326923 4.71575527072245 3.1221088484231303 1.7599048420831584 +1.3005326159558943 2.0042053309900636 1.3203052311496601 3.224890619699346 2.030418871110224 +3.7459278439362462 1.912712611814714 2.624157722789342 2.6279197080416834 1.833219092147865 +1.6064666394396756 2.4824596376236903 1.1508614724385917 2.6456426145767162 1.73255141215468 +1.038867314087371 4.262026115570238 3.272810560902256 1.7023254351272312 3.585411578864701 +1.1216033223208455 1.652074261707988 1.2634693158610744 1.2788704894216578 0.5306944635864601 +3.906101801402981 3.014140557462744 3.710950853133571 2.2717485593405327 1.693191691200544 +3.1453115048362053 4.075580502031427 4.7675851250989245 3.9345961348368608 1.248707758060474 +2.4422502136242983 2.5025191377912583 3.4244883888491473 1.130897900502378 2.2943821982082704 +3.542946970777139 3.3715141395811243 3.518429879454693 1.164252734957996 2.36041082087049 +1.4288452910089906 1.5294988317605522 2.7182183181454467 1.3620582879452345 1.3598901289363294 +4.046432420492128 1.1257588041025133 2.518230327623675 3.1560818656249707 2.9895131640461137 +2.174896024666541 4.605188403777076 4.642151856880396 4.374947237802558 2.444937495401319 +3.7147442909844224 1.6203260149338257 2.350739206668562 1.668031474581325 2.2028794253218793 +1.1832311445949846 3.3201156362194575 2.5503293394880133 2.352759243848986 2.145998432719837 +4.849073590644748 3.7377191251480446 4.097634991816565 4.7072090517787455 1.2675524772403859 +3.620660668032748 4.898207307361155 1.8161012605214673 3.100658052006343 1.811687491321068 +4.175398575500265 1.2720102622252614 2.857011450214118 2.9631719084594845 2.9053285081995006 +4.114379945506701 2.0170087983304232 3.0307612257001404 4.740232232168308 2.705782114465765 +2.581707362556708 1.223828418929771 1.3632833587621502 3.3314146208237787 2.391103487984095 +3.3006687151019922 4.032711772108479 3.026411686139799 1.7908048377030261 1.4361794181839738 +3.485587826173865 4.633459266932043 4.727625810559434 4.022435620524309 1.3471830048772258 +3.295053925068837 1.0055771210502518 3.3212070428601534 1.4658766766962708 2.94685507002787 +1.9481281621230861 2.749814023039516 1.9260484990521394 3.7074073903975755 1.9534430422637763 +4.248992803326057 4.5151599950801735 2.8563799373193874 3.0970735683586885 0.35885707181154447 +2.256371649633887 3.4199369796004255 2.2357969494857732 2.839335633345285 1.3107796229782531 +2.765399962596811 1.5824779054403786 1.4579107293823972 2.3657873734078447 1.491155456038744 +2.3191268705245145 2.82696501223072 1.7376918486320934 2.2317465322817625 0.7085122501465918 +3.650633237825907 1.3187760239562105 4.954367689040804 4.759759768876213 2.3399637408444884 +2.0573363763291095 3.381503841357792 4.792771893204986 4.441261122856134 1.3700289402460555 +4.69536675793416 1.5238058115421556 2.72451213191937 1.6461358332881288 3.349879740845716 +2.389557720211427 4.076943283599078 3.801102696470324 1.105806216932967 3.1799203059409415 +2.297329565971807 4.221739133925954 1.2070343634140093 1.4233250164843843 1.9365262280276703 +3.1282624652025848 1.1362012160833244 3.9385952635681165 4.179426042899527 2.0065660927355378 +4.1775053834525915 4.280967011265596 2.248298902540402 2.7610796306568655 0.5231141209691887 +2.0859074036357494 4.308000086192925 1.2966640925701847 3.573555531638477 3.181498155771369 +4.701102019248566 2.3428344571334736 2.115602204178064 3.6776763078587775 2.8286925248096804 +4.60582334748802 4.886710346438218 2.793379484933018 1.2640392135279956 1.5549209535923156 +1.8930926612626306 4.157113473235673 4.788833370543243 4.245481107569999 2.328308810859337 +3.688105399147498 3.4389344750985518 4.830579124963975 1.7503733812533797 3.0902675568596236 +3.2963808244555657 1.2545355674519598 3.4981648628726756 1.0165430851282728 3.213655037698261 +4.040306074013497 1.2043665254066518 1.4263738420448888 4.300027652199185 4.037380257539127 +3.8335704480402257 3.456122481485764 4.240823624268155 1.0726891596123624 3.1905396022610257 +3.674109322329659 2.326474088383892 3.122831966497076 3.2773155773059175 1.3564608028913332 +2.4077996056664652 4.178762878603938 3.525685340059015 3.1678317538226533 1.8067567914015517 +3.757014537771962 1.389144371025921 4.120791539085301 3.456810310298886 2.4592031633735836 +3.816394864209627 1.1282931103397371 3.856676905614321 3.851290582385022 2.688107150326472 +2.6928925418235106 3.0027542502561353 2.8944016754819537 4.668419918724606 1.8008761772288873 +1.046581478082527 4.965097060365448 3.282929183510946 2.6981538216281313 3.9619094629306253 +4.476792047966072 2.77494192828739 3.534565297720561 1.5795597660742304 2.591976168605355 +2.3982391137271684 3.9386599192421996 1.3014783164512407 1.677810885073841 1.5857245852510649 +1.8816794001272914 2.3695062308630623 2.8042248085355523 2.6769408749989463 0.504158919907461 +2.5548981150875347 3.06903484414284 2.3206579274680292 3.388030175150347 1.1847447367623507 +1.9625663376798568 2.5938380656689204 4.827477824629912 1.030956106462423 3.848646664877892 +2.6391478078217276 1.4246137421352034 4.584914112036811 1.5253566967610839 3.2918056707651697 +1.1753673203560915 4.755318898888272 3.171950803394639 2.13153347520467 3.7280720917698207 +4.548486133265284 1.6024256337867095 3.394230306930395 1.8120098551175658 3.344053531976236 +4.49425885854091 4.475526092777436 2.8886008150127256 3.015541230349886 0.12831518054821103 +2.589355926844116 1.0121764984389547 3.1772705064374014 1.733761257873887 2.1380397330435263 +1.4965607466320296 4.303267186356655 4.658516200380008 3.603384545037599 2.998483591567127 +3.780222285234181 3.269257911188749 1.9454978457463938 2.205981917422506 0.5735298973380603 +3.53269190950795 1.3942290265462471 1.878090591277183 3.0132860232746124 2.42109317677629 +4.486785973185924 3.6398970836700935 3.2656035195382094 1.7970524550785631 1.6952471855487379 +3.066141099414996 2.9889548513143382 4.285443092003901 4.86570333408846 0.5853713910329807 +1.6146901791220647 4.958271548421814 3.2034078211431494 4.173640797765236 3.4815066281788605 +3.3347500908253345 3.8502924598314743 4.029659466976934 4.505754357944096 0.7017480170584715 +2.629258294690234 3.1558621826993725 4.641601106065859 3.306451073576791 1.4352481541956084 +4.815151073897081 1.6446572701408813 3.5123209288682036 1.9347879429168522 3.5412767868977766 +2.9696364060235876 3.7460104224956905 3.8828913161798884 2.348220075744875 1.7198757018085256 +4.817944029910116 4.9107622046363 3.9024005816158294 1.477858159586575 2.4263184394837753 +2.4347100713805503 3.13434554956433 1.4828470281129285 3.43269351120993 2.0715673076149836 +1.452409193238943 2.9778073453547766 4.672621968979032 3.692377136881894 1.8132069527032886 +1.4704421343473149 2.0304938841447333 2.3081035121728894 4.428695024435542 2.193300326980223 +3.7743944390696478 2.083580294767206 1.1262106193897155 3.376455715339025 2.814685677374494 +4.284295797798107 2.57709065084472 3.8706663418676053 1.8875977923320573 2.6166983559327504 +4.010605968188867 3.134581784313669 2.9758071331339093 1.3581882527009785 1.839594850250265 +4.148186311197474 2.149561405475278 2.982576271864802 1.315187026268898 2.602823161511733 +3.9848072303642517 3.8691650780614073 4.509425334837596 1.7838771395526911 2.728000379803866 +3.445397096676107 3.6781537279209906 1.037376224911914 3.1147588704527887 2.090381377974572 +2.823216870189245 1.4384371317901086 1.6967258289271059 1.709680232219959 1.384840330307236 +2.0349265962633867 2.915236969360861 3.325434229033352 3.8751481612343364 1.0378495845925282 +3.947703390827492 1.7252007809957264 1.3299074538508426 2.053010128271439 2.3371767858814674 +2.6541154382354666 3.9992867217261407 1.7136580524669123 1.6814970521794086 1.3455556888763247 +1.5527814034745715 1.4871943899185869 2.893727682307214 2.230450983665486 0.6665115417667291 +4.395039654373764 2.6559817873205334 1.3456405637207234 3.50358202975694 2.771467776431519 +1.0017163567733127 3.6066812261506276 1.8121639985409175 1.529713239731175 2.620232890764134 +2.3820825976437083 4.586546633589655 3.1023414610476236 1.7733115021186694 2.5740983503956856 +3.334746925801501 4.240530567537359 4.51111226118889 4.192778704989323 0.9600938801174271 +1.069272480094797 1.099179194123903 1.3775468704382416 1.2520459130778132 0.12901512253376657 +1.9141909718745258 2.4948405584925615 1.3604486970166763 2.0369667759897125 0.8915327552126523 +3.8579885533296414 1.2175476896013566 3.706923255136746 4.818807827442248 2.864998299646469 +2.996972455864128 3.908110864472358 3.1311913050501716 3.4008033292369624 0.9501914771388112 +4.195833576691973 1.3484996626049934 2.1510396820500524 2.1623747545810077 2.8473564761334607 +3.4966517547403155 1.7023690660688104 3.074936870699115 3.5924678975461384 1.8674283736238935 +2.758356475093199 4.843926214487459 2.4923581828568873 4.444054322128392 2.856347135402897 +2.3032641797817175 4.088221352610235 1.255055617103988 2.986410932907562 2.4866972751811325 +4.143324182591936 3.596555757807992 4.209396026990351 4.059968014457835 0.566819584409478 +1.64495171594477 3.800898875138529 4.756768317599239 1.6601023751397141 3.773254313245315 +1.6239012378655984 4.488862627148148 2.4750519754116063 4.95580015947447 3.7897381591359305 +3.3054795946039457 1.3893669194914797 4.1437014342443375 2.835268887517342 2.320233503995049 +1.9644860280958882 2.66874521815778 3.7649666210928534 3.232622517514028 0.8828200560713236 +3.636377189387566 3.1550725156331403 4.263711759489167 4.173918907952624 0.48960897169569717 +2.4382274914463635 2.8114848926323934 2.332793335100817 4.43850068154677 2.138533262873553 +3.3045761613340536 4.548617958793056 2.577962209863226 2.7305303619426473 1.2533622919387493 +3.8305075113107843 2.8828926805652686 1.9641944422109523 4.4692334931533395 2.6782820079661493 +4.377449367423562 1.432417276488465 4.560938806771289 1.1693506659957307 4.49177961762228 +2.3360110399365293 4.571761255750088 3.2983722543400167 2.751804385361375 2.3015897685969646 +1.5744475400822262 1.9734390616333521 1.8929907165452153 1.6358635100480328 0.474666866961164 +4.853497049618974 4.082672589778776 2.2002178023534915 4.606683041701479 2.5269042910403434 +1.2034293353459997 4.487492567525585 1.4633935100782196 1.5058607676685813 3.2843377994538066 +4.471505335742087 4.872705129997673 3.159732305402749 1.5945340762512488 1.615799112343399 +1.3432363192975636 3.602309451394874 2.922836630561208 4.466287349308866 2.735991874506687 +2.3692909419150827 3.2900343365985942 3.9150777227795936 3.749090170064985 0.9355855206818358 +4.269156995305723 2.541283615751797 1.4941138570039216 1.6170203798287797 1.7322391373952968 +1.3939979248447405 1.758160936010431 2.1125753565750007 3.597067278343635 1.5285061218384424 +1.8050569827227867 1.2018577353726227 1.8693058691461935 1.3177351281355505 0.8173613731654035 +1.0720598713154614 3.6281440947754633 4.758393767215133 3.9831568376747097 2.671059500337719 +1.237064748023537 4.439537579585041 2.6076880188413414 2.3597275533829682 3.212058005285691 +3.653102952948399 4.941067599283801 4.425399116096239 1.5041146506667116 3.192609568702342 +3.102426081599714 1.1123997561616656 1.0271513252497173 1.8946469887198627 2.1708877221256677 +3.337868425090982 2.049785455196632 1.7740664443226093 2.6865059157709577 1.578513074506762 +1.835088750982579 4.0284039935026374 3.027699072819667 3.062008824139017 2.1935835776433086 +2.584748052964367 4.390472463132193 4.105614910305823 4.346080718029603 1.82166529586535 +1.574271592518787 3.2050126335164713 3.968151442012006 1.6674924048057584 2.819990841877503 +1.6914839736047145 4.008626667677567 1.6248034876688413 1.0572319549366136 2.385641991050461 +3.380872024641968 2.3490468266589786 4.857885529389366 3.301500518747287 1.8673504064700819 +3.389643754058772 4.975410134448721 4.4756470973361395 1.7023388543665736 3.194666433870363 +2.4192719109245444 2.7143336710975134 1.0843902957991958 4.129461027880082 3.0593328040100505 +1.7394825736927992 1.374974193856075 1.5972440406810429 2.786108951166606 1.2434894990931928 +1.6853680464006198 3.559866930851825 4.918681010716835 2.897594003982238 2.7565447133322953 +2.0396498049163543 1.0475914563981727 2.6576409941294177 1.3937791148356107 1.6067129851957678 +3.7523666718782454 2.6323932447071026 1.6119204927965507 1.5818631495163151 1.1203766873041143 +1.438263224174638 2.5485808094497306 3.1198550975195105 1.615934437831612 1.869380242435229 +4.337604042504499 3.496424803960563 2.187798325806257 1.4225158868212122 1.1372069832604155 +1.2759655103503187 3.9877912854826314 2.371931489795636 3.4615592857203947 2.9225481635592963 +1.2737851391235435 4.046344878134963 2.771465074035018 2.8660914354032445 2.774174049091524 +3.531486363974629 4.284266271661858 3.810117082152536 3.9506213190945028 0.7657800141138692 +3.3678604796659997 3.0195361275866426 3.1314781280868837 2.2756282044243283 0.9240178277959283 +1.3738312360340679 2.290372775804783 4.1157618810816246 1.9261507461751273 2.3736986574187955 +2.2649469574240855 2.5909428788723377 3.7430419103899757 2.0191067412678074 1.7544873348466137 +4.375811381615446 4.916000620943425 2.513540666441811 3.74415664765293 1.3439568845383199 +2.2257053556554562 3.467041065241805 2.601286512961459 4.35815325510163 2.151161336007242 +4.589147089115285 4.057810319665629 3.391174363377797 3.4797514716100433 0.5386693481830793 +2.861872301558209 1.0212758915705464 1.6044360507603694 1.0929033660423433 1.9103562055266823 +4.31541979104528 2.949356173840489 1.1745337186738385 1.4329479786210149 1.3902905221552384 +3.377456313482647 3.4099601924755962 4.031205153535807 3.0873667639004525 0.9443979076104774 +1.2875248325101603 4.711205555093581 4.044186361806982 1.0708476720527496 4.534570834619165 +4.93822892771556 3.851363534331351 4.277355545293052 4.834242441760754 1.2212286431269295 +3.998849923622149 3.5466396782408873 1.9928808844673718 2.6717171757778324 0.815667099022586 +1.9403449874585466 3.222278835236362 1.684431544713422 2.0413018237916463 1.3306805725521829 +4.857144177762741 3.248244080563324 1.4818513079408806 4.783725854375015 3.673000822645962 +1.4095812954629192 3.7694069995030346 4.765448465167123 4.664749738586728 2.3619732401073765 +4.981597179506069 1.0711115272218894 3.711102175583358 3.4635429577470362 3.918313872452813 +2.46472165782498 4.289855636157428 3.787454720911128 2.998549660254194 1.9883373037776437 +1.504181117148923 3.477152270753543 4.085876744695165 4.931785447703943 2.1466664172110996 +3.661837198017237 3.4809257579122717 4.2416724931921355 1.7174969803944244 2.5306503054686242 +4.426170178200337 2.338515381702527 2.725534254981527 1.1548989814188486 2.6125079352797425 +2.50962559747767 3.71432607248674 1.2299594410601822 2.691893234042178 1.8943478164132912 +3.808330004738643 2.598264438772659 2.06068470580592 3.2744164945248295 1.7138855063519793 +1.1572913833953224 2.0894473875013193 1.091447811580847 1.2100130830206122 0.9396661851862311 +1.8693955623078287 3.763671042321764 3.682198671868992 1.4261579422354642 2.9458444235817014 +3.5091960439056744 1.8279144577875872 4.56628554036185 1.652581994369454 3.3639821827334955 +3.3626843757270075 3.612935932466078 3.274641188833998 3.1305076048917795 0.2887911558035612 +3.35008896713772 4.561124081454752 1.1372084065900556 1.4747615805699663 1.2571985497019864 +1.4855762135555795 2.939069612668222 3.773744292985876 1.6207535349051039 2.5976936435317466 +2.923450571762535 3.554971804390202 2.1527064121428423 1.0532008063429918 1.2679635816713604 +4.812231787877389 3.561075515685365 3.0233105809351004 3.165027410984461 1.2591567326447812 +3.7069597762125146 4.4724690918190895 2.997765015253677 4.885789205552381 2.037311919032902 +4.4924738942005025 3.5151775435565655 4.49915006045315 2.957589715858855 1.8252442173604166 +2.0338142003012756 4.025577321259959 2.2803415447387665 3.5234474384084926 2.3478570213893954 +4.9954479146022095 2.049899189292703 4.5398378777254464 2.4893044819054375 3.589003273966965 +1.9650439283400458 1.701597552784738 2.915333465872651 2.379012221824753 0.5975319820815562 +1.9464402741800413 3.943963502720268 1.9207415196378284 3.2248187724645576 2.385522276126945 +3.5127171253184084 3.0847536205372466 1.0719054234779368 2.0449630370959127 1.0630117030609236 +3.589730822171958 1.7425975083009098 4.636612536413269 2.952241338286574 2.4998015545820826 +4.4406109845265895 3.49940075020069 3.1343358306198708 1.1003144269830836 2.241231754114773 +4.833957977068785 3.0700326979406136 2.325454900422067 2.513342754689247 1.7739036716035406 +1.3989474335615446 3.787462699907989 3.487150683769797 4.715768100991641 2.6859832343987 +4.674693904840041 4.2394656951035135 4.053866663131549 4.227808056875736 0.46869948048630555 +4.682177431566954 4.500816761444393 2.0787759464833875 3.4514264133041412 1.3845797184454702 +4.523347368404352 4.3294163482768475 1.8916902869248653 2.7156695242699085 0.8464933692258986 +1.792821458945403 2.0424847294426143 4.14169716294994 1.615180631698312 2.538822075554552 +4.422740269539269 3.0719174358512213 2.3731254064042995 2.327669765111885 1.3515874160920234 +4.4140025231572775 4.0372973290173935 1.9430318913004756 2.009883021413845 0.3825910047157438 +4.884150137708526 4.846759732320839 2.2616383032833225 2.499697905122189 0.2409780414119412 +2.9969972498769617 1.7228953250410077 1.9890320645896056 4.947364513891689 3.2210350192856247 +2.3320786822146107 2.194553378038287 4.001857806285507 3.438492879973661 0.5799079663939287 +1.566331793659411 4.569299687188655 3.22127184107678 2.868234704783454 3.023648688119977 +1.442090133262532 4.541836064866418 3.7861806868624828 4.850593933017401 3.2774075729278613 +1.1807421522712347 1.7651169730850715 3.376744392501622 3.8792338654958787 0.7707072087837571 +2.476634386169631 3.179773675151919 4.673232434095352 2.1953843011287884 2.5756817019492924 +4.5201211072936935 2.1259006209651767 2.7097495532977045 3.27205683550387 2.459366019277579 +4.659630624885139 1.9431857791655403 4.256779877086105 4.87316021417363 2.7854976790126225 +4.444513793642616 1.9057055295723413 4.762183698244022 2.629770017723103 3.3155294458931133 +2.649071269890689 3.1892847454000566 4.77383534798842 2.9971923783603116 1.8569574148727521 +4.754778357758148 1.4045619822275772 4.653714930368746 2.698430271316728 3.8790575995720102 +1.7062570585651167 4.169927695121231 3.711373192721364 1.6002477691075185 3.244460441993021 +1.2156014893472924 1.8116342147535698 3.4615465218427772 4.733316503334808 1.4045119777273083 +2.93997875936924 2.079895067136313 3.5386215065130977 4.370818005503617 1.1967852650233881 +4.058604895696168 2.431707817282381 4.629584736527487 3.447166816682932 2.0111952269535744 +3.4823595802227025 2.0144613343703734 4.8415490756757515 1.7746712830320486 3.4000683309585793 +4.26357310861453 1.7789808018838271 2.4774193964770075 2.223199093860573 2.4975641919533893 +4.730817668360917 1.2399890871988823 1.0087799908238178 2.603660247425281 3.837906618972756 +2.0765436178075722 4.16602153846018 2.9654577887053213 4.721077234393814 2.7291239654831214 +2.261300443693511 3.459341332542047 4.205475805436887 3.40722765738754 1.4396187263359703 +3.731243500950953 4.235470024132326 1.691953315074488 3.8105447475356087 2.1777681337500643 +3.644346082379881 2.1423863170395676 2.400820927482786 1.3018501935298663 1.8610802805860225 +4.138857645717822 3.5309063177387823 4.655324094473736 2.9394943142314167 1.8203506947722692 +3.4133219617174286 4.444958258272203 4.3800498559114125 4.084609583697761 1.0731068925391019 +3.053282212214855 1.8944329018894077 3.0783412893425535 2.945717701862043 1.1664136230334268 +3.8585802413120165 1.0329139500763391 4.105988074165354 3.3125543047327453 2.934949256103353 +3.7341041473417618 3.04801085583495 4.994977930070849 3.0951159871020537 2.019950347655065 +3.4671293948692448 4.666366332522337 4.926506143794514 4.111789100562505 1.4498045017050656 +3.2919686182482835 1.3618838348531805 1.7803632839611856 1.1689864106544485 2.02460093655704 +1.790571866125688 3.2737121684347095 2.9778072470392143 4.305968666989736 1.9909088160381136 +2.3100439236236388 3.3974153499746316 4.823565149784406 3.8139992511813876 1.4837789331523452 +3.0935632251674874 1.1746083247459298 4.514269362962747 3.8169467294789965 2.041726417770173 +3.887818534943212 3.9450179339997233 2.6296974830835738 4.1941279745486835 1.5654758170850775 +1.0102589014839443 3.52697161131975 2.9934366029958936 4.040448818857895 2.72581683977727 +1.9329791963241294 3.6423672531725626 1.7249881023272682 2.1048568122032494 1.751087595078814 +3.5104620105015214 2.6720122247460836 2.1625209965755525 2.0407714394025995 0.8472431751894788 +3.2815391211070892 2.1430762562405437 2.317026205462105 2.713846521219764 1.2056384440113672 +3.602720038381055 3.7406663830393425 1.9465636042450996 2.7753933042630914 0.8402308406839738 +3.5772376403684607 3.1438210249570413 2.747975624412491 4.874412451224545 2.17015749219664 +2.6364895635693584 1.600695745509261 4.256544827601752 4.396441715984608 1.045198532772946 +3.6872278967269607 3.577095223623629 3.3460522390664202 3.5971584892038218 0.2741961971708445 +1.409422810792111 3.373953578931051 1.7212813628359709 3.209737526527861 2.464727751739926 +3.973442218740426 1.1176069388411443 1.4997193778835367 1.0364619694251362 2.8931648021516163 +3.253419650213078 4.251060888667246 3.0164514718031863 1.3615146790923092 1.9323829404475013 +2.3092288869126194 2.252832431132419 2.212705232209457 2.1030961629482214 0.12326681746878389 +1.263359086003367 1.5470871721244852 2.790039911878557 3.9012312573582535 1.1468425494037668 +3.7060778618095425 3.7370693849814423 3.1955524930711063 4.711700249233207 1.5164644714017823 +2.4653000711189406 1.0129498632658973 1.1035783989010288 3.5192265907534397 2.818630396673285 +1.9617121700543723 1.3675355776519846 2.308655241461272 4.487968498230657 2.258860795642285 +4.773220358117218 2.043945879044615 3.1484991661286097 1.1827064156689837 3.3635220112073965 +4.604853128416778 3.7780444331112175 2.962481817040349 2.3270365449801633 1.042786321552276 +1.377030075709953 3.4101658433513053 2.5584167969387903 3.896509660986414 2.4339543057497535 +2.4340689140119394 4.056490803807732 3.487214996203538 1.4237877176428144 2.6248780776251426 +1.8213816501848736 1.8859285715988503 2.020370840159489 2.9174132482148982 0.8993616552387975 +3.400022482345149 3.7748828177303757 3.4311520040442973 4.258263650628631 0.9080935783059877 +1.9725361522069278 4.94272417136475 2.583548578341691 2.5784022130043605 2.970192477639261 +3.8574145269911786 3.097371209746337 2.1408436998393063 3.0976670122435364 1.2219560938301939 +3.1577018402456254 3.2016649810692406 1.9672388115646302 1.292985603327094 0.6756849462358087 +1.4133683506433545 4.781690636662973 2.0480216627869328 3.603614016371064 3.7101836333294673 +3.4569669097370515 1.329628859732256 4.82058866680493 4.413381341469953 2.1659605224483367 +1.4995899488370292 3.1842062109248275 1.372672097756419 2.597658566023323 2.0829123356319363 +4.575134390109567 3.5354970967836907 4.941678941067262 1.9799471636032875 3.138901212735735 +3.562449556051659 3.0793877758398267 4.779122148769112 2.1406571958686214 2.6823210082288087 +1.852637868837828 2.7767747802877225 4.594736677703353 2.8031170887093917 2.015919091325602 +3.911955995020042 3.210784752458209 1.082462145507733 1.9768574824927292 1.1364788296383748 +4.7605786130880485 3.0803558257886516 4.467518429349138 1.4598240694553994 3.445195782172148 +3.154495195002908 4.655407595488338 3.4619402858516986 4.487874116982967 1.8180424251899674 +1.6212557686515847 4.829746443686712 2.419912133610588 4.424727002382859 3.7833444291840186 +2.9760710342800087 1.6176425303408268 3.244320376558405 1.2756195527517948 2.3918843897586837 +3.1045893505045195 3.8025523212026986 2.008274736232483 2.6715336331345427 0.9628419770583148 +3.890709664984126 2.7563957681988787 2.1575229914384866 1.1711989031670758 1.5031644033653015 +1.2325890268488 1.6383550047715039 3.510715445044202 1.7244524046337295 1.8317700943011475 +1.0942890549998743 1.8501604015387958 4.085534511420861 2.7067915908572653 1.572346505552385 +3.234132648285241 4.909471429081362 3.01916349820404 2.6350986104168443 1.7187977974358781 +3.759397627992036 2.8921029184386042 3.3721910053977013 4.935887177202305 1.7881123652991568 +2.133618848598024 2.7450126413333056 1.6132141984194566 2.5852974313177097 1.1483676159998382 +3.083386327503764 2.2101383201846923 4.719824010565411 4.66663498763251 0.8748663637649389 +4.755827191575966 2.568934079578985 4.246373563973302 1.177693808627644 3.768195446651902 +2.9455517054285583 3.3098346476752796 4.918608925453621 3.1547139237161823 1.8011184411821026 +4.54084414573339 4.901882530692873 2.0445113936883126 1.1266914054107269 0.9862769622656812 +2.8950247434581904 2.7689722302655646 2.7821208082015416 2.6046183265853387 0.21770706709265908 +3.9749269586415696 3.441449960102753 2.312115757075957 2.1094967548566737 0.5706594150895283 +2.6293293021532356 1.1457290538324063 4.487889745170445 1.067609389639074 3.7281882204700225 +3.907437555275111 3.3539277124351354 2.200257433302146 4.470075320754321 2.3363318232474155 +2.3080287543363367 1.4071559378825738 2.212256000188122 2.8854783874278787 1.1246333687500705 +4.701344847207752 2.197345398977319 2.6046162509882813 3.303323641773877 2.5996548337571137 +4.105369103687465 3.9887252627477108 3.9525013291503908 3.9511407819672217 0.11665177545934048 +1.8185281748574624 1.5490726676728959 4.887307175462396 1.709298961692443 3.1894109921961102 +2.8752823966762424 4.744198000445724 2.0329402769523544 1.3798717355147754 1.979733328968438 +1.2209945166467975 2.5740652304528413 3.504963566328031 3.1114469075514806 1.4091329665060912 +3.0203704889868153 3.9249850240260584 1.1938079008083333 2.533906832768234 1.6168464999635348 +1.3342593446965192 3.7414241098605703 4.91692459363262 3.0411591889988925 3.0517106776147758 +3.4702050300276563 4.0109800884534526 4.74431198496904 2.9811728513631297 1.8442064060912553 +1.7131025931321924 1.8226802316337616 3.4036899706230437 1.4644335988351562 1.9423497456378709 +1.3815017339844209 3.448193512478898 3.246882634475581 3.6076958824124543 2.0979516455779956 +1.2393289593449714 1.2480563008352012 1.2801200462640656 3.407451762741892 2.1273496182860923 +4.0168380488992455 3.3376811094850147 2.1878929236793203 4.155019998494003 2.0810677732412937 +2.8837430056076796 1.1588758196334012 1.8312914319440852 3.6159716996126074 2.4819851867116802 +1.9435097290166725 4.7344966207336725 1.370011209763533 3.927765758239213 3.785725314914455 +3.626959866504942 1.1881198502263555 4.950635690887715 1.9046161884098276 3.902073222593007 +3.3818779322924386 1.5746282698260736 3.510913442397908 2.604580082704423 2.0217792909657746 +4.243591548825411 1.207127924369055 2.212347679319684 4.415446993463894 3.7515007571143206 +2.3022713390178975 1.355880480815161 4.170005848357807 3.9439653226879727 0.9730107788379361 +3.3070888095959288 2.5925535392753054 2.994463668662503 4.898131043876434 2.0333494849597464 +1.103903001440739 2.616286949581181 4.311079294064523 4.697718812980764 1.5610238064106048 +3.866213282610933 2.199662097054999 1.7762817695880768 2.3376018776054805 1.7585428961906384 +3.0480407544981833 3.5231691633654285 3.488216188856353 4.295225991887417 0.9364890960929317 +1.9212798411904375 2.429679063074982 1.3234928120930518 1.9294490303180258 0.7909821156121815 +3.0049210240712023 3.9185298847625383 4.178929841998477 2.9515077088559196 1.5301131472090381 +4.69190069140488 2.1950347146323406 2.7768080110263873 3.6890552990851333 2.658295472767244 +4.208758601156019 3.5154820988483553 4.228170324864681 3.9920695500007626 0.7323768732990485 +1.876381183368205 1.2803662066702404 3.5675008525961207 4.433336336919054 1.0511445848982925 +4.6274701894613255 3.1920893609662517 4.909859914021361 3.7258462371413974 1.860700542766088 +1.3139707961443636 3.2492930819597796 3.6604341685700073 2.757738573910716 2.1354933122328195 +3.4056627780362505 2.404878627156167 1.1308553919081015 4.916566035196787 3.9157596953033273 +4.745806511998177 3.3113284225922435 2.660526800202425 1.1731339474810287 2.0664135325032094 +2.231609805387726 1.6589576395530612 1.4663474923001956 4.875343297171426 3.456759016863163 +3.1160072439507345 3.5627948685859403 3.910497482705635 1.913676214741507 2.046195092780998 +1.421173401228514 1.7890341167003818 3.0561739471128764 3.5595028920126857 0.6234272473684718 +1.1838391087100613 1.3787200514756086 3.7604627399917065 4.50957306376664 0.7740444813054179 +2.581342647921288 2.948055849218067 3.3229305513286946 4.770308080167604 1.49311094128774 +3.597489999218463 3.609618161021133 1.0581675815493057 3.879990820984397 2.8218493026603433 +2.1207847862853573 2.2680560748112732 2.067733796066199 2.8095524974914032 0.7562961180703365 +1.0141509175955008 4.1303197744919 2.9376368160621373 2.987995419091303 3.1165757384652246 +1.2224407297274205 3.105642445561897 4.575215210229526 1.6744868765482344 3.4584206754446982 +3.6240147005853753 1.0713063204107796 2.1018836930252327 3.9389282001208277 3.1450043871612814 +4.8228311050558474 4.609956842070334 4.731224272631289 3.9027018412462495 0.8554325637651418 +3.505588365003202 2.8672567376207847 2.742892465669164 4.926004804325618 2.2745212132909947 +3.522751768494841 3.9704358501211834 1.9508401158681354 1.1742427075996336 0.896395320977846 +1.898488265122361 1.7220426218278675 2.4488374742017647 1.655596411863979 0.8126281117561627 +2.3028268565459586 3.6291346286244 1.493340540136722 2.172714280799599 1.4901815277938286 +2.3893135360212954 1.7241762755626393 1.3371827942948329 2.472382864622533 1.3157077087721503 +3.935129408832872 2.9453604582055988 2.2606169893884225 4.814276769631384 2.738762649237123 +4.857460931495614 3.2200003500666807 2.7055905244025316 1.8159374301145141 1.8635342186044836 +3.733927603386849 3.571320014718628 2.3373158134513474 4.84208963831697 2.510046442125016 +1.9197120034955653 4.734471058891887 4.499740606688755 4.562593589417859 2.8154607149405475 +2.8729983981895892 4.433839391515102 3.315930769401723 1.9223482317212626 2.0924380267461413 +4.7363370384827554 3.5883262766135506 1.0130879432356346 1.8281738975866033 1.4079395662981211 +3.6129627466174674 2.4946713919923975 2.0980826106174293 2.774805157785953 1.3071070957176494 +3.5032668803841163 4.301304110832518 4.462134564955455 4.219670609986835 0.8340576662562251 +3.1689204680737006 4.892797798377851 1.2785763358971582 4.703256512449837 3.8340823363106655 +4.418173330383722 3.4864987409833175 4.250868789387263 2.0942285707828545 2.349279585965979 +2.89842042980986 1.308914851776788 2.9583181779278025 2.820194743577678 1.5954955549029033 +1.3704162296181495 4.302679457593772 1.805760021239768 3.3931358485437806 3.3343559580895255 +4.552850990022936 3.3240233789336946 1.2185023556538517 4.6070317520019906 3.604462341000496 +3.849940147872315 2.627238620584301 1.1422402436890216 2.2184560209464137 1.6288767369111068 +1.9012586673172556 4.127465654794959 1.3644291728392828 4.902195139204899 4.179926504601414 +4.163626546023469 1.7574162486534708 1.6797655674393668 2.2934298898991448 2.4832301334812756 +1.9953752708502925 1.5689513650356832 2.3887349559404933 4.354352537923585 2.011340305878457 +4.04006049256744 2.691385483820921 2.557161227533993 2.411662565363422 1.3565006966127398 +2.814921805512979 4.246500106636924 3.1579337707448745 4.957656109710701 2.2996558285146818 +2.3339674126643684 3.9522948069064983 1.5958054776665591 3.5997375910710527 2.5757964729551754 +1.1074403652891718 1.8007830470758162 4.307275760446223 4.730713346397849 0.8124182811727197 +3.019342591897884 2.3287390656040743 3.6300234774823137 3.136792620353504 0.8486518184470384 +2.3963615268560066 4.05111363626961 4.486544642940805 3.773858921311689 1.8017007191603118 +1.370196345311979 4.359730558425834 2.5626283839109805 4.349536182940684 3.4828658161938217 +3.0230359926582904 4.227896769873734 3.0476020930823364 2.2291562993532135 1.4565517531983192 +4.3479342417742295 4.376588864955927 3.581953853720408 3.19381427603914 0.38919586224968805 +2.5954299918104353 3.514765383102776 3.370882274898565 2.4570909667361267 1.2962222481333445 +3.5713922083813103 2.3723439193660374 4.375337985234577 4.982905874195705 1.3441932670145076 +3.120011225480137 2.095401489957994 3.9072005865356214 1.7485980182939285 2.3894330201423073 +4.196693670252329 4.4810152270661465 3.960776263527238 4.550032492343649 0.6542642057058997 +1.994880193721725 1.6796220529647017 3.7872415067283356 3.9312455629024146 0.3465903396059424 +4.587506167894004 1.2735052122756025 2.3426547980957997 1.147012848747074 3.5230898377535165 +1.8034246583271822 3.792853694906462 3.6458175997676743 2.828746490170846 2.15068200571878 +3.20814613622458 3.412247506940766 3.710958826724128 3.1333175745529465 0.6126391970304517 +2.022717154688924 3.913131326921477 3.898767287296184 1.3917075362457982 3.139906740321201 +2.182087534639162 3.866215062013768 1.553716201598193 1.0989853364954354 1.7444385022516575 +1.5163888675144905 2.9628491596456725 1.4496513608247081 3.3390631203257404 2.3795218371876756 +4.6993951976823976 4.045986512648506 2.4757496455817916 1.8532454610701539 0.9024712568343761 +3.113627704943643 2.3064964406520647 3.119715652790259 3.233840064407654 0.8151596525368136 +2.6444571206709684 2.425056312606318 3.975568401767762 1.5331634808846242 2.4522394891473365 +4.714605823863888 1.228575750482218 4.187527880528545 1.987689613636919 4.122098260959116 +1.6491514205669624 1.2963532265400124 2.6505021771312856 4.704899615503727 2.0844700526752424 +3.5102299766901544 4.498337375279855 4.32352002102242 4.417587160454742 0.9925748626016511 +1.3786672049916961 4.992999389172802 1.555608638346377 3.862756235622599 4.287928074632877 +4.27967421104014 4.344307030976212 1.693751900447836 3.114853303071447 1.4225704193296316 +4.416111492338892 2.8209433387844793 4.048666752186222 2.1330792636500733 2.492796996217386 +4.600816870259443 4.242103841509952 1.9035256058807142 3.3519048468722086 1.4921385534626908 +3.4071710838964746 2.980234381169463 1.372458392302251 2.1534081879983358 0.890032320499188 +3.2529658100490426 2.8528489153002266 4.938399662242022 1.6535802086629787 3.309098422844923 +3.3600982151561762 4.547760958508868 4.806904321471506 2.004364722561217 3.043808633177895 +4.736691275494643 3.6166725563672486 1.861843631625352 4.271355685143824 2.6571018548874963 +3.6162150209945594 1.8915766503495304 2.9888027293396533 4.991711342601649 2.6431080989207065 +1.2381694640236685 3.249700683670216 4.790969728281006 1.9012992223818443 3.5208597643581663 +3.770359606111705 2.5103198754051936 2.7719272747450723 1.1745656599989904 2.0345181865058732 +2.7384192156969793 1.128226846588166 3.0412081755014335 3.6838333952457254 1.7336916215370173 +4.4904652244251135 1.0542052746889286 2.781583372163239 2.4503627538223514 3.4521861972053376 +3.1519629320621556 2.499907963500672 1.3241033398474902 2.1743524609674663 1.0714939337163834 +4.317949008023277 1.1164344715532697 2.1411434158665243 1.5640995315508746 3.253102361078553 +1.0333853184815105 2.071317463980972 4.404289740914653 3.3116156138231214 1.5070633320057771 +2.743247428643537 3.540455049457256 3.86886955931035 2.6013472534540045 1.4973819774950072 +4.562793470009227 2.2627152118053373 4.453372272128185 2.666448118707572 2.9126376231759785 +3.2294313875060876 4.830167872533268 3.994935538697999 2.595872308063481 2.1259668901021644 +1.98951016469085 4.111684784731269 4.5516663795315715 4.749719511181973 2.1313962937239586 +4.9092495555303355 2.328967196119719 3.2461823378643233 3.7195826479754364 2.623349940038293 +1.7923534001749708 1.9337712271929681 3.2729292099117675 4.581455598578136 1.3161460069592352 +3.18677947110367 4.099900800254558 1.095966756336602 2.694473208554535 1.840927331410082 +3.3549994397866736 3.332997386062996 1.7122730450472363 4.440568406554509 2.7283840767000087 +3.6855029120607568 1.4963380508029314 2.9535310677207867 3.6904396748995065 2.3098651659999714 +1.0973217481670634 2.7194559776855787 1.619988154450355 4.11058572301226 2.972271136202433 +4.550339127660871 3.4024866411826786 3.1413235110896243 2.0996139936014457 1.5500722723601061 +1.2651042762664106 1.1213861204102789 1.7356055016307588 3.5447785982953595 1.8148725029647863 +4.832105806221188 1.3935746140348915 3.0414512382529635 4.951283572836733 3.933313654650466 +1.7717918767100564 2.8227614999813135 3.51167104281433 3.450875255784592 1.0527265916464223 +2.4985023510644218 1.5832532671765587 4.435739559129744 2.5818748803032925 2.0674852195258557 +3.365792653427222 2.4446956019416084 4.219014396922679 4.880539536585184 1.1340349591882022 +4.511658507773793 2.2379725934868024 3.496961134806428 2.9297705771650944 2.343363558115675 +3.8344919078052118 4.20088139678972 1.9943366852132582 1.771051202863478 0.42906603718600606 +1.751111532852084 3.8814676926606757 1.741142664520586 4.365077756283888 3.379859868903044 +4.349932741073271 3.2417986323319115 4.62515754603252 3.056725771516375 1.9204008524961325 +1.5351722281335602 3.0440456521663672 3.5636812952709924 1.1053303085959216 2.884473709957985 +3.4552815191241435 1.3512352958312919 2.9327457090318503 4.819707276310375 2.8262403411845813 +2.2703461110167886 4.841468132728327 3.7531436202103783 4.196322182980544 2.6090373107774942 +3.246420147873094 4.863116630269736 4.904410169220579 4.695432716413432 1.630146954104273 +3.0895496003029836 1.8582786344986357 4.441278835255753 3.05167490749468 1.8566171568963197 +2.322304862444711 4.837944862582136 4.98357285963647 4.8593478437268445 2.5187053152104095 +3.211401954566408 2.340274285469764 3.838133054504477 4.532212460588336 1.1138265743891527 +2.252979295027427 1.8716231798781586 1.557686325204958 4.9266994814506315 3.3905282971121444 +1.2998713280890914 1.477174150199334 4.825316273868147 3.134404736743395 1.7001817894301323 +1.8307570645024946 1.4388483653277313 4.690151447443705 4.218763647212187 0.6130243769182144 +1.0616077382164422 1.674052558005927 3.018817838874931 2.9264971245156848 0.6193640057242397 +2.2653085780968754 4.440187268302463 1.2537969125870578 2.4289766391361156 2.4720729574189937 +4.367120044847322 4.252094289733054 4.446063770955814 2.202168137073053 2.246841903672292 +2.713608330310529 1.749015609068067 3.302577032188327 3.903055000295929 1.1362274895708921 +4.033588674372476 4.0160311435715705 1.8944092632558003 4.685494948056646 2.7911409077271663 +4.402630309948631 1.8786669925493622 4.513146901484506 2.4777474990789154 3.242412921712803 +3.5022991734058624 1.4379641093708009 1.8264976480118733 1.3311457169167302 2.1229349477184476 +4.833056820305195 4.482713796918921 3.2360887472139854 1.3038081316637524 1.9637842578212665 +1.828232759760886 4.66790720085701 4.899741587691203 1.8332039155136317 4.17940237669201 +3.488655265284971 1.332339093701774 1.2414911150848158 1.39571453745535 2.161824298096146 +4.42084032671627 1.7275046440298092 3.52473677155383 2.095323073673361 3.049144243770777 +1.5548697726630114 1.1531010076575563 2.6371766728167634 3.897296983736475 1.322619120732193 +2.2574482641720066 1.3797157488708973 3.2267189254869892 4.519181911284436 1.5623299709322815 +3.548498729959707 2.997844101769547 3.0196744815686936 3.8445124586502284 0.9917551149266645 +1.8583917460764092 3.4617789521384688 1.7295493339892194 2.6063470932226336 1.8274640470226038 +1.6195112925130282 1.6637758054619494 3.7419316069895623 2.2324160591294215 1.5101644070557703 +3.0357734137449808 4.175972640225433 4.255542352809336 1.7568093868406405 2.7465834615546156 +2.6696326322018256 3.990583607007287 2.5528645905247473 4.601905635078764 2.437925486988172 +4.612778500435315 1.2487003759531796 2.9949274388429132 2.984313456491001 3.364094868495924 +1.563034701083076 4.715936356304441 3.6968773231159227 2.0047501414134206 3.5782793695509683 +2.0618985988197287 1.9283651211014767 2.3744248013673186 3.2237876558828495 0.8597955851842355 +3.3690734970647616 4.774495619444905 1.5121874687342651 1.5133122040560254 1.405422572433306 +1.651024591699933 1.948839486786488 3.6226481741203016 4.113012026263483 0.5737163229542244 +4.488458974381659 2.290417780450385 3.9775141781846615 1.7537439534289594 3.126745768803221 +2.819148695789724 4.762675496445091 3.7433318992545805 3.185532339214911 2.021988321936142 +3.609565428124264 4.899626793697232 3.0543782138375346 1.36277076056906 2.127391384512367 +3.7469483703411797 3.1960378242998373 4.859296907155816 2.9621806794859986 1.9754878918960066 +1.5138570049071345 4.675103809892162 2.485547078219915 3.0462999776971116 3.2105957665673404 +4.672081797354336 2.9819467421832795 3.8749472159002636 3.8429214295079968 1.690438450731677 +4.885185573886098 3.020479745944318 3.4203240822658736 3.1511154357971787 1.884038513431598 +2.8016041854359366 2.448497807604527 3.993542917249354 3.2612192797584236 0.8130080098579384 +3.499104421494252 2.7275182778464457 2.9784447859212047 2.754596606508175 0.8034010110124463 +4.856269227338738 4.37035746106042 1.872422201995068 3.1347597402143794 1.3526294041626132 +2.6940653169089486 4.266273922596129 1.48308039063139 3.668996683452248 2.692595390885254 +3.9363974001415296 1.4496757138849619 4.182723882538653 3.806634615678471 2.5150005728719305 +3.0029134508425357 4.344443064445207 2.6843560275191596 1.0186122507481659 2.1387856447115556 +3.879190480451393 3.5654105932786258 3.7724565856753496 4.858718856200364 1.1306739308749951 +3.042429141615754 1.210483000998631 3.580971109988795 3.4887000288217043 1.834268413984637 +4.566196073197465 3.214636375728106 3.9025990843835823 4.25105623414224 1.3957564261150266 +3.201034204585987 1.4785617026933258 4.597071732074589 4.536231270461205 1.7235466577803151 +3.9633278264468665 1.793944789366292 4.766041228776718 3.19360329510701 2.679325254017585 +4.186510181902931 2.87034610336445 4.287424491061126 3.824340216957539 1.3952544307606034 +2.8212343562820026 3.79025401698594 2.7082367544317827 2.3693068492151945 1.0265829647334401 +4.091895465401285 3.6733294926387168 4.25061167848357 4.247752198873178 0.4185757400737852 +4.702827874914 3.7027453326328534 1.1275421042358267 2.2504477073089415 1.5036894908153469 +2.506100816617145 4.2568108355668945 2.999311787482832 3.3719274368744903 1.7899240186730272 +3.4345485894070427 1.9269035006742485 3.313890140125018 4.023407536909899 1.6662558776852099 +4.297087705983451 1.9933594294285744 4.572863923420465 2.4718596672550457 3.1179132214710066 +3.547044755976681 2.334635716066162 3.5553583641950346 2.4605780794999426 1.6335481479937508 +4.8155571881715815 1.2948094252412656 2.8359240046410186 2.958512788006618 3.5228813235739125 +3.5565299244710338 4.675365986948623 3.9873194041330313 2.2006606678628766 2.1080663117157443 +2.7792042590258985 2.7844858889965396 2.469989747813631 4.3075524977993584 1.837570340354419 +2.879298027727389 4.7937812634857 2.598838766101365 2.430678073352472 1.9218543333419937 +1.9226708483590462 4.013633462102838 3.5060534843721283 3.783439329695645 2.109281289743052 +4.428297845611198 4.01566795547568 2.6820055803680307 1.9588615360285382 0.8325867733137056 +3.592231585851947 3.003869329359292 4.2880156393481395 1.3558391373857295 2.990623544267256 +1.7839018737954095 1.137408656555583 1.9181268892539887 4.330806955623906 2.4977947438882664 +2.750674057776412 2.091946462913661 2.185318731452978 1.412165681539853 1.0157202778440686 +2.3548799562750293 3.9035470329537163 4.8485500461126625 4.147877756237337 1.6997974503415525 +4.54278062019419 3.5825647715888245 3.9312716518009827 1.893622768925689 2.2525601980404106 +2.351528839347652 1.554736894426386 2.6333895141560126 1.1789111890867203 1.6584283528653831 +4.248332649476811 1.2493563742296203 3.6805222889406233 4.142696997107087 3.0343803585516884 +1.4826090057120185 4.235502751319883 2.354649022701616 4.491830021647072 3.4851063967776357 +3.7933653091364743 2.599843443972825 1.8112496355262637 2.2138414884126925 1.2595930464377152 +1.1161835046564117 1.0315626869791448 2.221100862516988 4.458058900935864 2.2385580064923927 +1.3190383338325407 1.1511833856177125 1.6584675849465853 1.1212309928652933 0.5628485049383388 +1.9875427166150246 3.34626566121191 2.1999728006019867 2.665751267913091 1.43634174930088 +2.9893412361199814 1.7970432045770042 4.289434114131842 4.294644059205754 1.1923094143505415 +1.9671776016984408 4.7384866583326275 2.473924331365548 4.260456136614568 3.29724881962963 +1.4504198413297598 3.3223641011557974 3.788013390659693 4.914043907470214 2.184518261925091 +2.156636353229738 3.8426904665771433 4.598544687918169 1.8223988152668862 3.248040082784456 +2.9127510482109455 4.357046990492937 1.062876013627768 1.7797521541455632 1.612421213497241 +1.4373103585119655 4.843177769685439 3.478468538870044 2.413167190960982 3.5685851235959554 +4.7641410708035785 4.709691479049733 2.261343758281028 3.3621442461624946 1.1021463025216915 +2.311823554816963 4.419196318571146 1.178031614946816 2.897881016276785 2.7200922647344146 +2.567745102464599 2.6992763144391256 2.086215231491653 1.9511714767970778 0.1885133295167652 +4.787325395377817 2.9419321386266093 2.730405082370232 3.8328476557126696 2.149617617061398 +3.1400559495509435 2.477406975407031 1.1932810088176153 1.469731962384195 0.7180033375004957 +4.9059982115436345 3.711671641990451 3.2216996558928166 3.4626279006617846 1.218385150052368 +2.7504786752864367 3.868608171126325 3.42662807408426 3.869773205040307 1.202743188115075 +3.2151124366246915 2.561121756240466 1.0151642215536905 3.2425684992125308 2.321429220579926 +2.841356338883691 4.099072662282396 3.137379783559525 3.845578333555396 1.4433972205736745 +1.6206069719406027 3.9144008686185576 4.265261001671214 2.012702963526002 3.2148885137201324 +2.2352561931685226 2.088395491035757 4.770368287271721 1.8512781223793877 2.922782143198852 +3.784993883297792 3.867646335676583 2.176717986929747 1.680506850970127 0.503047631278157 +2.468229303903693 2.8957391389664586 1.0176388834877375 4.444288280447282 3.4532145529576646 +3.320407150937614 1.2885861908700398 2.1261931624033767 1.9576441426218945 2.0387999376690242 +1.0270466303698162 1.4507529477274326 3.9484231238033987 4.180266712702862 0.48298912315137726 +1.570072356201424 1.656600233373653 4.314684167472294 2.5979390091112347 1.7189243765460052 +2.500133482246309 3.454035732072357 4.11900980629627 3.323281244579559 1.2422211744109588 +2.2934440261696736 3.4784069918979656 4.789156904365813 1.217068614718293 3.763502621120986 +1.5745565013442593 1.7362657347755501 4.1093660800358 4.925084282747182 0.8315924857835257 +4.235992332009149 4.579411797317803 1.171343852009802 2.2813678318339043 1.1619338040256086 +3.0095121442283155 4.734096506111497 1.26287996982049 4.588891138680608 3.7465372701515016 +3.1639727703457194 2.794573176249131 4.588228671851198 4.361237810632596 0.4335676546924216 +2.744520579652684 4.939618513493885 2.3313542830062377 3.8478966003432924 2.6680246512031993 +3.9790540600944015 1.3631643108502618 4.681115314654268 4.7801703739587955 2.617764520535488 +2.7206524461651553 1.7902669466417729 3.2637982728650523 4.222116016404723 1.335660913295863 +3.656135130765675 1.440806795936929 4.610699331109391 1.6505045752946264 3.6973548143839725 +1.2834687528065722 3.8639783661689324 1.5166371325124972 3.52747838338914 3.271469455899397 +3.3065131389761855 3.7593958246050456 2.487898323023148 3.0316848909991605 0.7076768743243905 +3.4334176626153288 2.7743288978798732 2.7327187207075956 2.7497215029364255 0.6593080421199408 +4.043902130022123 2.0323866787363714 1.4741408032005934 3.4369171007426913 2.810459963236336 +4.231851903385847 1.31960310668435 4.706357326384549 1.4713806161075746 4.3527310243023 +1.337660868161616 2.7950722682236835 1.9787510580682257 2.6672490765667014 1.6118553007349026 +3.671765432472374 3.601411305637773 3.6425615232493116 2.0635554132917284 1.5805726805326095 +4.719469311095603 2.059256436409616 1.4081985915626056 2.5372688525243463 2.8899017617962888 +2.4575346343158784 3.20578289335894 4.1291000933209165 3.543886154313499 0.949921476528218 +4.685616787381299 4.107685792105185 2.70491086484984 1.4780955262625177 1.3561268783907967 +1.4976299262577122 2.856606882156517 3.071682178845418 4.244469452014632 1.7950622147356519 +4.989904163022534 1.570896383513272 4.488318136344702 4.584181558919867 3.420351442780797 +3.2285569395221407 1.5612852705966822 4.072668871403833 2.122359711167649 2.5658333224320424 +2.163079428291034 2.66352274963208 4.07121339637216 2.555210664735535 1.5964672875460266 +2.6860418936686097 4.2150883064077584 2.544265647723494 3.191761763963802 1.66049214176302 +1.6674226241571515 1.7744031628474466 1.1533179525349198 2.8074742784005955 1.6576121337815723 +1.5047859082314057 2.098211975548322 3.4065354066513556 3.0737658651991837 0.6803602465528907 +3.374030301799327 4.379858940807257 3.414228220928876 3.11474075022151 1.049468435046638 +4.30624133182278 3.4207347935297125 4.120133655268448 1.1570532294377385 3.09256648098321 +1.378897922437281 3.275648849894341 4.741043631573016 4.663782540207302 1.8983238282885873 +4.218568758200053 2.454831604890459 2.718741089121486 2.326884165330985 1.8067430903942003 +3.0900235910602705 3.7878715084196433 3.6297451510617766 4.577713171083971 1.1771300194743204 +1.2573897476244968 1.8393191672110802 2.075678423338819 4.491180670415282 2.484611228142508 +2.75988470792447 2.042098542297375 4.472641159349578 1.9040649292547136 2.6669834700226387 +4.283539622100271 4.03209463448276 4.6836218500969355 3.7952295880511975 0.9232905247324449 +4.227339534903978 4.6817707543970934 3.8617742031165396 1.7171763301536758 2.192215265426012 +4.312931658683116 1.7253124580329962 3.188176160150739 3.550381758611861 2.6128463451052273 +3.3160547865123 3.474595813820974 2.1997084802592637 3.2602076219319716 1.0722843311494579 +4.636276003337382 3.267284480181247 1.6698439344768685 2.6433395016724455 1.6798307682093436 +3.1731920367233766 1.0363074061610296 4.148092463350838 1.9140457050729798 3.091478746895308 +3.7304602286016473 3.4701082473741796 1.0321204005775377 2.6438658383101195 1.6326378992847308 +2.0377062909095454 4.758516117289505 1.018649464111368 1.921380999877821 2.8666583920992412 +1.2144873115774493 2.0314904579020427 1.9714617783380892 1.7488940961637525 0.8467765432820761 +1.2578105970597266 3.377856386778378 3.3481922584395334 4.293627025342785 2.321301585096858 +1.960799190350631 3.1148626971809854 3.4573809476322364 1.6017489891962975 2.18523054686831 +3.2804546226687896 3.205572456589586 4.43114188292642 1.2120468340968928 3.219965880594931 +1.6949221443651137 4.962819558733308 4.30575755908203 2.0345547709908227 3.9796376236370574 +1.6058030777018022 3.1716678558136557 4.247052032592782 1.4159914520722068 3.2352490652048385 +4.46081531754487 2.0314091781911974 2.7655156170849913 1.6280021547379127 2.682526992771956 +3.2876607403097515 2.4653561704606712 1.9882822898548178 3.9242156919184223 2.1033361459405966 +4.9482862432381385 3.1965559389913114 4.100116398339297 3.1163612810768737 2.0090627639664937 +4.238960741822298 2.006063963981241 3.6187979000412467 3.8636666912857405 2.2462833181543496 +3.471680338252631 3.3783156733379447 1.266373161858514 2.8977468573736656 1.6340431741766783 +4.765180761921337 4.116543032781513 1.6558617174241737 3.226948524910903 1.6997189945171851 +1.7981771448048747 3.8753687956222223 2.029893732872355 2.426059569772588 2.1146329526781145 +1.8350155446306609 4.31587797477715 4.214769917451479 3.5646577410938507 2.5646294545529957 +3.3030920300797044 4.752209273966914 4.369808060825013 4.1262825810539505 1.4694371187053183 +4.248105470654716 4.251278677275681 2.211917382351038 4.671383234010602 2.4594678986967407 +4.777274292415146 2.2603287144620694 3.1461205977475255 2.1257126106319295 2.7159247969240328 +2.9431505629208954 3.841019288219836 1.3822152113141386 4.595507078312803 3.336377207449677 +3.75191393400632 2.3034058291674127 3.4615854944386597 4.518112417196258 1.7928817217807882 +4.537370322995142 1.7753534711789651 1.081281421167637 2.818077153782187 3.262697734474442 +2.1092191161375844 3.436482573882539 3.3269913967924607 2.442970153950457 1.5947168538837901 +2.75910981355405 2.8930493361889527 3.4042085366205814 1.2679573121393521 2.1404460025474172 +2.4925250004054122 1.0646375863134083 1.5113525466187392 3.121380529208383 2.151988051092298 +3.9333682608031704 2.999029936134558 1.0143963618330663 1.3590954666458455 0.9958943607648758 +3.7944745097774994 3.968621558377618 3.4134705161871697 4.927544252144923 1.5240559282563093 +3.9157562362040776 2.475048894414554 1.144077081250956 3.6909893586657785 2.926157855197254 +4.858185196930011 2.3795379871899334 4.80473867277675 2.529042382174374 3.364890131551651 +1.068355285844782 4.022973710282546 2.3891366522398876 3.8740130445991863 3.3067548948497922 +4.668355730881378 2.2937848176329014 3.5928665650239933 1.7270721298870253 3.019896669794147 +1.988919244267111 1.0893214575980452 3.4255399053409508 4.166600622947277 1.1655244162861134 +2.5096726323193246 2.2374840493198547 2.9335774114667488 2.4836797490544944 0.5258274729978172 +4.571558087104137 2.177414400970202 4.737504332110577 4.691737480519289 2.3945810895769566 +3.943250976468374 3.2040121899977163 2.526936421830951 4.55817144185822 2.1615711161115634 +4.447351930173112 3.5967486374493327 4.700944525498468 1.4377699936565893 3.372214997127852 +3.7566906159376496 3.954187344240988 1.4314626468327893 3.2985025501762757 1.877456513042946 +2.111051300286752 4.143733225399997 2.2442128649284436 1.5903166287955885 2.135269560573279 +2.4112351154963423 3.2543259540919003 3.489529590846182 2.670836042290458 1.1751856400460845 +3.88497690953361 1.8621194865639068 4.833514916935894 1.7704179720699407 3.670764913108816 +4.476613662204329 2.9653036410449998 2.378750159671143 2.0247832142398825 1.5522082909566453 +4.516775509084475 1.3416078258156858 1.001187145621088 1.6831763834980284 3.247583584367685 +2.1157125330561954 3.433832341951139 3.2552311247129846 4.099615786177956 1.5653834313415218 +3.012108454854807 3.3980593166952637 1.4654016598856665 1.7067219747906686 0.4551851954328486 +3.529301579105675 4.926622299799956 3.907288479540213 2.8161199108402992 1.7728942556735305 +1.1178627327799666 1.8980738738334257 1.739867467606521 2.3697291155689237 1.0027238504183764 +2.877217394318184 2.6185067501952837 2.362179297753283 3.7098986156603986 1.3723259661037193 +2.5357458444709056 3.376534968468126 1.9942621373029539 1.653440505229265 0.9072407265557397 +4.469639011368102 1.8731470787072473 3.9547144056593906 2.8964979973009086 2.803853120848527 +3.6731536112004273 2.3922625771775197 3.6292820321167523 3.342830881934056 1.3125304196403462 +3.293812972462168 1.6786689119375549 1.5465387852890964 1.1570977712821873 1.6614315031437996 +1.5977958888235322 2.258907618770304 2.4606363889640606 4.823891788251398 2.4539854933829512 +1.5864044086368234 3.0525789103213974 3.488141158950115 3.8163101775669097 1.5024521869829732 +3.912950056683182 2.814080510072487 2.9552822620621013 1.500285676830444 1.8233291923029638 +4.393126374287068 1.2382915994570163 1.741463215896745 4.533627002297939 4.2129753223306725 +4.669929263141876 1.84803225805838 1.3865430916899841 4.284873209888371 4.045172453846075 +4.4423753861033175 4.514987256210722 3.357691429392357 2.272103833686139 1.0880132865143244 +4.296863534071193 3.1464783057213137 1.346248106468288 3.140984965027464 2.131775449027515 +2.491707444083335 2.5476500422150883 4.993493118205896 1.8542243577850517 3.1397671767887427 +2.4926786054669257 4.736142655960721 1.071331212021811 1.4085576332936034 2.2686675836406285 +3.263000990926449 1.6317255401139232 2.277726448586969 4.719867574823466 2.9368542484909383 +2.733543182024663 3.780601239866155 3.036994800987927 3.894697422401332 1.3535081688967465 +2.3875426961864785 2.0167067265510434 3.7700631670356852 3.4208490172326393 0.5093818202469711 +3.2175346180149145 3.986260330981904 2.2553002887987073 2.672001749401383 0.874402269579059 +3.844861022407533 4.196010701085247 1.139601050725704 4.4646819706765974 3.3435713273469947 +3.3267784506340776 4.761100814881424 3.2785860060189864 1.6592181448318999 2.16324592093126 +1.3047305909099225 3.611169128072071 3.5314437584767044 1.2645210714112216 3.2339754474700113 +4.972883043734638 3.717448187674718 2.301151803353127 2.9092773641984495 1.3949671593136623 +3.980681153668695 3.0620069679018744 2.333716130877573 2.108146705020878 0.9459618520192288 +1.249842502252732 1.570358703198976 4.571869891724433 1.9419014307598728 2.6494272476777527 +2.4653302772878773 2.943487443917963 3.327762869905744 4.794218173843364 1.5424413876859266 +4.366168070528987 3.5565716039835764 1.9141366407742928 4.739024099584455 2.9386111674710813 +4.090545972141146 4.619295272336353 1.7160187959238753 1.669234282666629 0.5308150460731481 +4.968910331624638 2.6221681896375135 2.768572008671062 4.728387736552381 3.0574624066747416 +2.2754079135167378 4.608944870877451 2.898098680261021 2.0682935062006047 2.4766855590215187 +2.692652270543468 3.9704749172724503 2.711289648593844 2.839931772146535 1.28428171070276 +3.500983111788237 1.3585989326468577 1.3608300544954481 4.021549069498892 3.416026294956785 +2.2319344267028316 3.7393976425161264 2.496953650005047 4.839236108114591 2.785450136081751 +2.860332099159319 1.9310809522074623 1.7612795661279024 4.622483089138336 3.0083206767561625 +1.0130531432556307 4.135983809583847 2.0727401300610624 1.3266973526310313 3.2108060938724887 +4.826144816641103 4.022447522097956 1.0056491755787627 4.45799332660264 3.5446592894613658 +4.540339045910269 2.0088613696728905 3.7220792387862196 3.022266830478971 2.626426589895287 +4.219318129020888 4.170788329014551 1.7994476908934787 3.822558167937766 2.0236924528729703 +2.2412155141829886 3.3410929385616077 1.4513212485899492 3.7966549235782674 2.590428612352009 +4.899976097696591 1.2489542554338162 1.913048573811147 1.605565630912389 3.663946813595081 +3.383617496440561 4.760388013862428 3.4722213633455015 1.1542089310179424 2.6960487187859203 +1.8373440962443746 3.476408280354377 1.8125975946181012 4.4102389808098215 3.071526032917226 +1.662914848495384 4.381100374592661 3.2126315845863496 4.150090291458408 2.8753019635118258 +4.147395773331262 1.1816623200509917 1.3712987204264615 2.868565176921307 3.322255522630724 +3.858911402362461 4.909127515171245 1.130432096482021 4.263106642165379 3.304028403748313 +2.2577820507605546 1.7275567414032178 4.427219409683639 1.1089046696683718 3.360409438221134 +4.661489918601719 4.723092318904456 3.808037933004929 1.6341770006537653 2.17473359493197 +3.039033740458796 2.228063785452023 2.3963148653017265 3.71569917863819 1.5486921043906752 +3.4190879490702777 1.4707605578210767 3.1848435676445366 4.343085525228785 2.266606286014514 +1.8072245372499225 1.5141109989385284 3.5170268196508414 1.0632918321467146 2.4711800693683377 +4.45752104840503 3.312561806489272 1.1871019416202748 2.1022451701192635 1.4657485440265188 +2.731288086999845 1.101763991847161 2.933746244142759 3.7774809571588666 1.8350032813680597 +4.406882655083733 4.0493174324920425 2.598263047887894 3.7842227224519993 1.238690129975711 +3.9730075681969517 2.7338082910043506 2.6928390524553496 4.431744976590312 2.1352771861251014 +2.494778600725358 3.1526660803757154 2.4702223451160723 4.6833001046778655 2.3087938638492056 +1.9695355814615212 1.618315158317849 1.5821619197504524 4.807396011019415 3.24430126978318 +4.311303797270776 2.7297522288085054 1.8649250163212705 4.200773167859445 2.820902683672334 +4.727752810071898 1.6638882767380765 1.861189604047452 4.100022190238442 3.794685392441844 +2.0748449767701804 2.060037282580484 3.6251239053919475 3.271266076027578 0.35416751856950257 +3.7709374091096644 2.4742659302449415 1.118331920538549 4.391587146722339 3.520732409576269 +1.8199684584138862 3.506881003317872 1.6148914458798749 2.0080345553826624 1.732118771535013 +4.642514714559005 3.214494990395703 1.8328145198525823 2.5314094489203542 1.5897406101369616 +3.533433990945248 3.0297375312813033 2.30091867768823 3.4541467694407566 1.2584296385118896 +2.2031353674736107 4.318291146973003 3.316357880746825 2.4660875279295755 2.2796586684040334 +3.550895886286373 3.0259072676812235 3.474075164510599 1.3116013571725897 2.2252878503887734 +2.443620949979772 3.6353993454316043 4.0362685869199915 1.959291724538541 2.3946124176437484 +3.1679265417226707 4.335368031893341 3.6071035201683292 1.0348586677572564 2.824776666167996 +3.390142546175422 4.452911570734518 4.018624761860214 2.9019144778214545 1.5415965289401174 +2.6445180155360055 4.1463112306884 4.378559548321414 4.631660797989797 1.5229718000217414 +2.485013791906391 3.812600821486062 2.0990247240343383 4.00268195786666 2.3208615178485554 +3.619173517454292 3.371921718971203 2.2512181585953335 3.85235187797255 1.6201119218065894 +3.82906414423279 1.5229715639101626 4.7002745777146675 2.160481299970923 3.4305411938484847 +1.8674654048193498 2.5393192550820127 1.0720509170682089 4.912054224256275 3.8983346438354998 +2.2542777682194353 4.33853977400476 3.4921814192946083 2.1747254827372147 2.4657328025417886 +1.7511391451561251 3.08137049510608 2.288818134561663 1.4716479699613112 1.5611798494416476 +2.949473589229494 4.818499509596959 3.804534796869922 4.538691838348212 2.008044932903048 +2.383334056968477 4.44203055819543 2.1618060864486894 2.422493550697824 2.0751359565533876 +4.895572112642973 4.842201635055782 3.1906270368320717 3.422160454179959 0.2376049899027284 +2.5121659520815958 3.2257323756213325 1.6721142785301732 1.119150775314444 0.9027434168643396 +2.568885594139731 2.5738956919168197 2.064042925095338 2.2423305448860416 0.17835800080279696 +2.3813576637344944 1.4285512177162056 2.3161488021307903 3.1432248070859763 1.2617031511201964 +1.5666071454902522 3.9471804426447186 4.481931444656164 2.0405858562872936 3.4098823300772465 +2.539350027752455 4.626600702460335 2.8922197029077763 1.4857973192094671 2.5168709344017093 +3.0626021082087918 3.867663978762603 4.574587175905412 2.0406311674611 2.6587699539731964 +3.811208276193577 2.238873632383798 4.165634698755278 1.7493685314722613 2.882807385740675 +1.4476402889655402 3.903104120171123 3.744283560753485 2.04126884392888 2.988237231559768 +3.1693279968881107 2.908172422831997 4.240401503311393 1.3402271313386325 2.9119089308747577 +2.5110215113897456 2.5055238257285803 4.941671875364875 2.1650225215479866 2.7766547964411012 +3.895008948371928 1.0668700929328199 4.257666757121625 3.407092023560699 2.9532772919278454 +2.783706217112341 1.7493891958313537 3.528388914906366 1.6320329170916534 2.1600874452112833 +2.0727309756767522 3.2833037286289724 2.471614719024203 3.834463527987234 1.8228667714021969 +1.0794192646585832 2.5756940228547394 3.6531730850986626 2.6737129047062513 1.7883457151762634 +3.234283529348569 2.4702554995370276 1.7206929747224606 3.313230641160147 1.7663281261873451 +2.154504625726288 2.083566436350343 3.7187359111858425 2.8265757940355782 0.8949759222155144 +1.1233194746624244 3.1703196265242006 2.8934336325115915 1.9146831121378587 2.2689561923611454 +4.9771228884565115 3.985279582697492 4.525897750285652 2.8941310078319202 1.9095590708215977 +2.5152142340641306 3.4110780242886958 1.011225029233787 1.0042607639807697 0.8958908592155844 +2.518882840853142 1.1159212112900354 3.328979882832504 4.351038488715877 1.7357721993068764 +3.252106880141717 4.125723700674899 2.6480396133265836 3.8765502211480034 1.5074629888154008 +2.1868788797693566 3.5089175293555357 3.350587482221553 4.234283096602722 1.5901899666002675 +1.0039825078786428 1.7795350034174473 1.7861649087941696 4.059365020561469 2.4018577021704113 +3.5133414307331536 1.3165832708758387 3.880019272554046 2.1047478496035255 2.8244176458244383 +3.3394420784190597 2.591324177653048 4.8558184431334235 4.272493017996723 0.9486563893515166 +4.55916762512192 1.9256120554521146 3.49616873746982 4.132743537952775 2.7093989029208614 +2.5007945282729525 4.699688914285379 2.727182848463941 2.0182455945208484 2.3103524732960854 +2.9421426609999872 2.750987481025746 1.2388254164426065 1.1586180780095487 0.2073005546772597 +1.0107661289857663 4.43496829525795 2.32047721750517 2.379825183876577 3.4247164344826473 +3.669385051202001 2.0227388127880266 2.1313197091887437 3.761912013442556 2.3173854010877535 +4.840697051587428 2.2181874582178396 1.4638857157735465 4.058482472374973 3.6891040777785284 +3.88526897039938 2.770685408333494 2.6854242363131675 3.7896792950985327 1.568972833315016 +2.1451282964755065 2.220852870887536 2.6992626623331266 2.9817531784944875 0.29246384886169285 +1.0532526687787405 4.6549287446070675 2.4071508923823197 4.573079444483621 4.202774922358057 +4.382216823802734 3.3701239442932573 1.45177831006693 1.7675805665444266 1.0602184029482147 +2.848994447518814 1.8615031195548957 4.269344836773662 3.3578937158028834 1.343831190560344 +3.5916258791392996 3.7484340747592104 4.296920574635736 1.338219180884538 2.9628538181285378 +4.554327475196478 4.039569166941549 2.7510453761286 2.3479715916815214 0.6537924683154182 +2.032973261135933 1.895591313188329 4.475635086782985 1.0029897090797482 3.4753618112227587 +1.5533686673062235 3.6669564984270213 1.7023133846197274 4.457519963260429 3.472523118835485 +4.865634044553687 4.513333063700212 2.2398484387747386 1.638154008156354 0.6972461322571126 +1.8718760817512652 1.8092811423932407 1.0105116273925416 4.506339575070784 3.4963883031210234 +3.083186749136216 2.9773712188374435 3.3219022544051575 3.6035591969739493 0.30087798149683564 +3.3630289485714533 3.940761251324582 1.3127325521432454 4.99527737144551 3.727587820536812 +1.8689920988165043 1.7662466885159773 2.0620102664255024 2.9125135233732586 0.8566868794469568 +4.039013341759558 1.674718861328813 4.456127994128871 4.745015020134832 2.38187827228636 +1.3224036529162109 1.8170661784816229 1.3733047189896226 1.0334801945960592 0.6001430842541331 +4.854651182150992 1.4017315354814919 1.3061017771713437 4.044531121019361 4.407000040572283 +1.1210441293923594 1.884916653656029 4.584205266497953 1.6828679322817393 3.00020991936261 +4.642676785311501 3.936212292088434 4.442004329917976 4.461723914915617 0.7067396566044697 +2.2510799008970928 2.053138360982118 1.286552043716275 3.9630075882909015 2.6837651043465356 +1.4484033344977743 2.553268167848766 3.939296372200529 4.406998010535657 1.1997796141279773 +4.340708905377134 3.292529081295489 4.547873849292884 1.809545237960911 2.932085354700835 +4.7023104606637744 1.37241127463773 2.8837891291255002 4.595718900435969 3.7441864444757593 +4.270688171908113 4.831777061800864 3.520900495902199 1.3068731213405953 2.284017941625947 +4.809428827292607 3.446962219105757 4.287602601202655 3.8824706360572514 1.421424344665152 +4.844402288744213 4.190504020114346 1.9052262797495856 4.5791232733163225 2.7526910611113578 +3.3911295578971816 4.441934644944769 1.6244362183219625 1.106520541619099 1.1715067132285983 +2.2943663301685793 2.4337406605164764 4.805466084436651 1.4033293066727843 3.4049904344320012 +2.131912561663889 2.152930044784358 4.8790044261745855 4.290257444557559 0.5891220102490471 +4.537853057495095 1.464271332978179 4.141614296349681 1.6850330690341635 3.9346786328343764 +3.6944631234892076 1.2851630917393222 4.995240168040282 1.8180034764316773 3.9874251889526393 +2.7720210930256814 3.843193543357048 2.038309581990742 3.778269394110243 2.043250000890697 +2.8538779186943595 3.0949050814635775 2.365447336892747 1.3987288276677314 0.9963125861248646 +4.850565117035144 1.8042052006280023 1.242623752363762 1.2201089271912346 3.0464431157736516 +1.3965773310260046 3.707506141890515 3.2847961962306798 1.2890125874218814 3.0534479170396094 +2.6446408391054823 3.3246274825207065 1.7233191840742537 4.354111669803706 2.717250621159862 +3.2896030565170205 4.802966241254271 2.4058263742727175 3.877994453790512 2.1112903597727115 +2.7947384866660783 1.7963333525647727 4.855678081814522 4.4701644789539605 1.07024929329123 +1.0832444925660858 3.962870382404285 4.494925522461459 4.327297908936288 2.884500698949921 +3.3116490777088408 4.248707943430366 1.5297778408837912 1.1382130672448119 1.0155797801168833 +2.2634563124306735 4.817004230684611 4.63190045486931 4.906611793160285 2.568282167170234 +2.9672886586067992 3.369882833269225 1.5462983976449465 4.174383355649663 2.658742675770405 +1.2770455504036833 2.3935892139841877 4.520917465216307 1.8068808171242083 2.9347341753332223 +3.6810986688736747 2.576986871729725 2.627311111689721 2.5498090004023486 1.106828549435929 +4.759518712747084 4.898222410916576 2.3323965355114793 2.839293951186155 0.5255318314846001 +1.6829841425221703 2.532306478732222 4.376029618447556 1.8151745637035912 2.6980228023856685 +1.9134502015036756 3.7387289731596187 4.5702272332856095 1.2450013621449854 3.793253180102898 +3.1282051436019533 1.6613553464521313 1.355736753260535 1.766403619745701 1.52325165439832 +1.9690057594693444 4.2193580927303715 2.416048649868833 2.079909162967802 2.2753187421694214 +2.550126157048735 4.980776666849584 4.864703526216628 1.810043272946603 3.9037176080888356 +2.872897131897969 3.2187503676254896 2.5467082831347865 1.9731473953489482 0.6697660432276892 +2.4207696766275455 2.2349667638725 1.2587147419590932 1.153872610866507 0.21334149816736103 +3.6039999458777805 1.2075652232879368 3.1735411318900697 3.001155469782888 2.40262693652893 +1.128807672258195 1.1725648478866204 3.172233532482718 4.144262616199924 0.9730134788434783 +2.4900857735955175 3.4390299875773285 1.5628744323450858 3.646489685730406 2.2895300053481566 +4.450500186811494 1.937442978781399 4.359797862201328 4.938460379300675 2.5788188845918922 +1.6771859392945396 2.2128455181874593 2.913982033607219 3.1514360736687896 0.5859314000813594 +1.6056046936692585 2.9629072835665515 1.20997398167362 1.04299622017772 1.3675349697086656 +4.5641589980238955 2.3782681162238095 4.671294290501519 4.090478327313784 2.261739624764631 +4.063375936147864 3.46600402329526 1.9255784041492556 3.8851453503800983 2.048598501177244 +1.4457300507637498 1.5164777433453915 1.215792280713739 3.6730642629122654 2.458290225035177 +4.721522235857216 4.023680878946943 1.0329963249934409 1.5545344010306978 0.8711971786978042 +4.455567414027483 4.070558408248718 2.852019775882921 3.079551089375695 0.4472163158366434 +3.2927609218825116 4.636866048046456 4.388815901571138 1.423836473302897 3.2554141979530127 +1.3563527916462204 2.9761128323931993 4.371704869020399 2.5635573009404014 2.4275543696391773 +2.0258176376311905 4.553057089715857 3.800822381096042 2.2821126256533155 2.948460372711512 +4.38193883873015 4.71605978606484 2.7757271815915914 1.9772939285131224 0.8655243884890231 +2.454599251525261 3.7069164865630837 4.800171234745207 1.785478249023304 3.264455889629023 +4.251276934750656 2.4679371788110274 2.33844258791679 1.7013684264021944 1.8937170254249551 +1.314611163572684 3.0640369728476853 1.4742652147160742 4.88786009444894 3.835768588574646 +4.264316856578446 3.261891196632293 1.8674424977524202 4.305959216692065 2.636516829505674 +1.8047994968091219 1.542869333450426 1.2435759775805422 3.9596215347109704 2.72864634551366 +2.5431978079916706 4.260936774050206 4.241406131945716 3.852801816807745 1.7611474865154533 +3.812738380122345 2.62948458448667 3.8018070963394814 1.340670666644427 2.730802459069193 +3.574400343721502 2.841202563911277 4.777943746567897 4.709617143619543 0.7363745711179235 +4.729735498976503 2.285548013554475 3.7756397811415625 2.866975362139944 2.607627943218358 +1.3803576110050018 4.374609902960561 3.720108565398448 2.6075365878788883 3.194270369433825 +2.6994062323252956 1.0660969424241356 2.2298349098682086 2.425054003411336 1.6449345673798796 +1.9852853060082252 2.0296732903896957 3.659585119188248 1.5098723931029951 2.1501709461924974 +3.6181117611729685 3.123635733503752 4.4906622763621895 4.8607365733603665 0.6176257177597307 +4.491649018534604 4.263321280499788 3.638845779988239 3.047640972697902 0.6337638993499867 +2.3684953519544627 2.038875839872108 3.1940790205988594 3.625277530999751 0.5427533308210623 +4.95750897870708 4.760214362710975 4.954909032492191 3.7931890522032847 1.1783541395113384 +1.9362306873127002 1.2398716604172142 4.223294531746246 4.47485783451687 0.7404052874201349 +1.4327413639373074 2.3558813233047005 1.4262637679144627 2.129795804578404 1.1606656328130618 +4.380278393369101 3.2751124822460156 1.7750738341517365 2.0091516923560726 1.1296832010834055 +2.9080060539367354 4.358608254784102 2.073732868313965 2.1171741869234197 1.4512525256707567 +2.327925394015014 3.353454175749668 2.959407984518191 2.208191212401408 1.2712340149931964 +1.3637852746286843 1.3018691521814065 1.37206718617634 4.353486782554501 2.9820624433245233 +4.686383194983487 4.529429786177709 3.489795752820044 3.8215367294497513 0.3669965232955017 +4.871043451944155 2.0132213591369665 1.636800577612568 3.730001963113762 3.54240584270083 +4.617976129691604 1.0737221137513724 1.3716933397591653 1.708288558256832 3.5602012401862835 +4.601155259776713 2.5670349934787207 3.1001762004941864 2.3276786100228177 2.1758671340521434 +1.0250374319991669 1.8594939301907205 3.277136104869593 1.4912888400849722 1.9711844410183492 +1.6388672279104561 2.0919190874920526 4.486273555544047 4.16240061815891 0.5569108250346905 +4.098022044542759 2.5282024518756807 2.4009412436900943 2.327740499396233 1.5715253426167224 +2.9515882588703066 2.7893211640179616 1.8106138884136422 1.6581842124612498 0.22263291801252416 +4.88169995812209 4.476695432413706 3.8911078229288023 2.3150082815962074 1.6273040373676606 +3.8695460232117806 2.1920568516469556 1.6800120644147274 4.987397525572556 3.708472530489531 +2.652128616692116 3.3888756888992284 3.8147677649970193 3.741218482576849 0.7404091742747886 +4.318354504287415 4.938764346343458 2.6674437840274448 4.293689665092371 1.740570032432089 +4.5833549069157336 4.253530330177732 1.7904339822055997 2.630350854225469 0.902355031749723 +3.9226055982781247 3.3049035460776457 2.5992311800328842 1.8298264213942526 0.986681056830653 +3.4579319091412444 4.454695773896548 4.652512460503102 2.7643289258089423 2.1351288632708005 +3.0763715593071335 2.7427859219098334 2.7190606208321895 4.449473275976031 1.7622733427478614 +2.0765336549732902 1.713290814565482 3.042170708942852 3.169269597125747 0.38483696351164154 +3.2162435746035074 3.737296135952207 3.693960110662057 1.5292113216832042 2.226574294981744 +3.420727915276466 1.9863808697817835 1.1448423419890048 2.0069801238545333 1.6735091878562658 +4.306986299347756 1.1968781102129 3.1487185567901474 1.9920081279544442 3.318245314062987 +4.988095235138225 1.686984953579663 1.7678771935942343 3.8914827071468965 3.925178909069358 +3.019971769545953 1.2877981135194112 1.1046747181927636 4.234765094297106 3.5774140572784385 +3.0665332027543806 2.7694234002381752 1.974310303019875 3.140275784278526 1.2032247247451062 +1.9701430345418722 2.830183993023429 4.965053110678518 2.8505431494184603 2.282722678411437 +2.2360136494452383 3.4405813606113855 2.70306595089622 4.353298989881202 2.0430987381283505 +1.0144867839484206 3.1505148202624147 2.349650464104591 1.1761953469583042 2.4371320612302125 +3.983343862675327 1.870883800641685 2.0480440061502 1.2253709620315405 2.266997673401241 +3.813164901500974 3.6080017761086927 1.9420612774068906 3.7604053416786534 1.8298817022127636 +1.7439217251910715 2.7510154097560733 2.081452228008893 3.0068848435474913 1.367721907184835 +1.5759572370614459 1.3816877793109885 1.726258678700066 2.280116462406234 0.5869404286523163 +2.7675891020633494 2.9973574653096464 2.8892005304649877 1.273783358417245 1.6316758686992978 +1.8716015151721739 4.527624494080559 1.1298357407488195 3.3802996688988136 3.4812420134764652 +2.214103545922362 1.3331404280724732 2.6983010285103077 3.3362181215609303 1.0876737712282825 +1.2737778734506504 4.642679941619941 1.5783169452628134 1.1036420363321078 3.4021783336685485 +1.6440117364544955 4.034061927555284 3.4942617622395646 3.134752159981283 2.416937539552237 +1.5683663560820444 3.0753999060656096 1.0565689140132428 3.812346214834213 3.1409327679044927 +4.969664244896316 1.765222742265074 2.054088965720364 4.63316048199138 4.113399473650238 +1.0066022215403154 3.450809422315127 4.1524496483954305 1.0955527510592327 3.913919708075667 +1.9436772601388315 4.521857245364127 3.9089159629424737 3.61674351352057 2.594682403766885 +3.9174712378154153 3.917834896309976 3.2883832918946987 1.6232360623285134 1.6651472692766376 +4.317193604605849 2.9375731507831913 3.8791196061572863 2.9364552422962777 1.670918519706846 +4.554980422929136 2.179664016216815 3.8742110269104333 2.7026430111330746 2.648527826470628 +3.270053976157562 2.473273700946442 2.2955885676190766 1.9457931567183175 0.8701813813526116 +3.295794488281515 3.6553328403686747 3.423701941307596 4.3142824404673785 0.9604173322599074 +2.9400936803887503 2.9227382802025037 4.482571798371897 3.285513435480109 1.1971841688248266 +4.367896740804522 4.094997945784968 4.365672387325641 4.230341132647857 0.30461172140248904 +2.7234588009102745 2.621574396177476 1.2478556315413325 1.5013203464947544 0.2731753899131035 +2.793278283357672 1.7197497207431995 4.1881331762252785 2.291768511462432 2.179142610411305 +3.9853157621470237 2.319704234496511 2.159437037378371 3.740692469040805 2.2966563742110453 +3.1055738764173713 1.2529699914351324 1.4692431882031483 3.8168646754926003 2.9905631246028603 +2.2266411629725322 4.786148446963679 2.6257616662290797 4.166195229461075 2.9873086716198847 +1.2082488686737385 1.447810691667589 2.964784593301916 3.543274872794675 0.6261316718580426 +4.501830055720976 4.760114352203006 1.987560210894753 3.3313066627705363 1.3683440008776937 +4.602032935840379 3.636391098477552 3.4695695209483803 4.231105101753062 1.2297969746657293 +4.263028965213518 4.971980871301538 4.933804564983422 4.027603698882456 1.1505706474910513 +2.5894526096047477 2.455133490448839 3.41308068509965 1.866346351552624 1.552555546299063 +3.5859326214790044 2.4411037904360917 1.3567460864149603 1.5786857496817426 1.1661433301777506 +2.439887889845547 3.9568073623451148 3.4778916390259735 3.9582104213102234 1.5911476420066715 +4.350343824530118 4.216975113986054 1.9551340376518356 3.0697443989983317 1.1225611210856863 +4.942363551793301 1.524292646468587 3.249812587652357 1.8029659278899186 3.7116807474098628 +4.354731258970579 2.827915216660452 2.475878987392993 3.166361334396604 1.6756888430073094 +2.551035202915691 1.1698016954138657 2.1768298559077204 4.5605613429776355 2.754992160550433 +4.221590180476921 1.8873598429660698 3.088138082804823 2.0793461372162767 2.5428905713853176 +1.1189936654598212 4.705658312529382 2.9318006703883452 1.450586985771865 3.8804841540758472 +2.3129192891318273 2.587511005877978 4.970162592039838 4.554133502620704 0.49847849918377796 +4.149667439898206 4.759910405527473 4.655895994743425 4.448605262357479 0.6444888865086069 +3.5072173770620054 3.199687304233997 4.911841328678536 4.818250947389229 0.32145591480555763 +3.868960618893546 4.130013361116269 4.861822349563732 3.3290801794189893 1.5548141671473212 +4.481365806960902 3.990796774180528 2.3820816950841683 4.99851558848249 2.6620263511931226 +2.3769115458914216 1.8041200429620625 2.264580551431517 3.430671965800255 1.2991763900612412 +4.673034758083098 1.1347695243306282 4.6044476127812075 1.3803303792859696 4.78688341196048 +2.8411000905277484 3.4946920173855744 3.343188370951616 1.5731292187369514 1.886873554108124 +2.3263071831187414 1.4378959857855116 1.5629736489809045 2.5428527250451993 1.3226630180267682 +1.482942763167256 1.7589173331821106 1.3877738908096333 1.358429162347889 0.2775303161519069 +1.6551057914270642 4.008726782517202 4.993630278321946 3.23696349869057 2.9369048238512248 +4.520018077680211 4.702481377724059 4.694669409186291 1.9130488630190206 2.7875985576698086 +1.324569431571022 3.6316359105391744 2.109410813912238 4.876864198552061 3.602964609114683 +2.382181090014505 2.9027845974393833 2.8559126390098952 1.5630944861577176 1.393702546559775 +1.961135666124639 3.9099685458490567 2.559696172878992 2.901738054771883 1.978621298294294 +1.0782886989653235 3.132100549012853 4.252321153097789 1.5008239075777121 3.433493877597603 +1.2642435641903584 1.0893153919544298 2.198908654118315 2.082339905254718 0.21020974918739385 +2.7791587606045822 3.489264562791622 4.963292512129703 2.229953719383814 2.824073512893964 +4.572242914853632 1.7047450665106494 2.988116627345687 2.0170029092885575 3.027475146661055 +4.068401221653376 3.799567409705538 4.400046762201576 3.530765635302055 0.9099018057076856 +3.602604947480761 3.7878844238916094 4.49515559808016 3.850259357564611 0.6709840873002629 +3.904476904771019 1.3831108541571124 3.4293752451956987 3.9675787040446266 2.5781679007204548 +3.5876846954267214 3.7505198299968456 1.5033733505036637 2.5473904369307867 1.0566394644353623 +4.310887147002372 4.806385316404276 1.6553287458811896 4.654305190845497 3.039634542725719 +1.2130638394407751 1.8259147060439918 3.3833034941750646 4.0282714856188075 0.8897021381806889 +2.2648111105276416 4.087356897412073 4.74595061108452 2.2322893505038937 3.104861684235544 +2.7178819177081666 4.282079306187561 2.4038066135303526 1.1877031865006384 1.981317999554633 +3.1446439296515423 4.410510559309477 1.1530322514259925 4.124077691008676 3.2294781820205256 +3.146045216619736 3.30028254419531 4.886010498526598 2.830908509926334 2.0608816891724806 +2.8293712823095243 3.0539615308061703 1.1071668179294751 1.514179899845276 0.4648660329281799 +2.6176311970000365 2.408891485655767 2.2310645725536884 4.090063038723841 1.870681042913267 +2.485238063356896 3.613163730360222 1.6450984284690215 2.6760789124759774 1.528115528580256 +1.018110244662362 2.3137745793666675 3.561638209051903 2.661645454169255 1.5775718769888136 +1.6389566290865099 3.5051320692690133 4.387794856739443 1.1242513043894404 3.759431777759192 +1.8347835785081936 2.59863366738329 2.434209272552043 2.9998915844181777 0.9505069364463932 +1.4075943380070988 4.400438382236713 2.2847959501820023 4.985030158452032 4.030927964202827 +4.658980467901401 2.398204591499201 3.320371831711887 1.6621212389971722 2.803730121028206 +3.1751316591797174 1.2554373667202792 2.271897508711414 2.075233738824634 1.9297416445958313 +1.7317321813538653 2.100939102047359 4.144530558726986 3.226370150619069 0.9896121893473567 +3.34706831801555 4.032033056551509 4.467615491340279 2.6038003502281057 1.9856947331542742 +3.982080769806118 2.5234162052780063 3.0721601778828176 4.218572195395136 1.8552527659881413 +1.5018334227222265 2.7145896447357365 4.589178070968598 1.8998734022149528 2.950108007414751 +3.5881082338057038 1.280038735412791 2.7727616338212036 3.582421334486742 2.4459627225886993 +2.8848899066459794 3.661020299305426 4.670068269976544 2.029707834204113 2.7520686069213625 +2.91646735553608 3.4949981736410196 2.497532718613554 2.743131247392108 0.6285034167252879 +3.7008579836739477 1.2699277212796196 1.6413756249271576 3.0545030657850316 2.8118234483569697 +4.177914028585724 4.39353333962363 4.271329261277089 3.477908800274464 0.8221968834957226 +4.896609329176306 1.3067311681514235 2.2800787008736116 4.266193992266453 4.10266732281669 +2.5952706218330834 4.793760894713939 4.588569770841749 3.8507493131469914 2.3189951504357746 +1.996742892022866 4.142922147280011 3.5789987637248917 3.5727502447847326 2.146188351400002 +2.40524818945015 3.5929458471749562 3.7306036093868733 4.482917867517562 1.4059169495925852 +1.5584260370900953 4.489520198018742 4.4608152470505225 4.382736265669627 2.9321339170582714 +2.0794707561220065 3.5651334100352456 4.128398173799248 1.1946833311944607 3.288445878975684 +2.5868578484779685 3.3949066458423816 3.4623965646931385 4.8904178320734 1.640788712483238 +1.9030670031379882 2.4302443050665645 1.7830698692283788 2.2618325728529722 0.7121303490588108 +4.3302019666185405 3.1292858494851674 3.1692393919845747 1.0595434415734317 2.4275536087946388 +2.5485898558524522 4.733792094472019 3.937532691864073 3.205371450525257 2.3045973416167 +2.860277138857233 4.034729518161462 3.606783971514646 4.8613991053450984 1.7185451769708495 +1.7000185390045432 4.327690482029731 4.955412824041472 2.1840621439680596 3.8190371079769747 +1.0326934174610227 1.9763554648035417 4.9868245839507175 4.438313936514664 1.0914953000106749 +1.5049269047447904 1.0858998979514793 2.479603290657492 1.0129838044098656 1.5253053300449102 +4.33785886071437 4.914399305165324 1.2557935170940446 3.260455907646284 2.08592190270449 +1.0129121166553698 1.080579404777298 2.639660665672144 1.007623003759036 1.6334398647592085 +3.3592711101933674 3.6552613601769184 2.817629468167562 3.857293468763194 1.0809770868153676 +2.719700014110977 2.781287469653399 1.1803704552764303 2.345682059791764 1.1669379376377698 +2.8234949006568395 1.0771157394319109 1.2185687981831044 2.578065003024734 2.213158400508079 +2.4376863441489 4.032772881073606 1.8670740288106402 2.039351559999062 1.6043629913553943 +3.881602440380178 3.093035378117939 1.739263154631336 3.9927328269603928 2.3874596490394815 +3.6383019167927815 4.617521403333107 2.8789724768691514 4.627237768136441 2.0038219310782583 +2.9718805347949093 4.930977664075536 2.82122062785355 1.203496071657355 2.5406877615472094 +3.9379705804928378 4.87182755937782 3.7332445585569434 2.954560375469981 1.2159103231743682 +4.049354016072256 4.40562681482621 3.4810298565135054 4.439692819552359 1.0227242951227913 +4.554809360005407 2.5804684781195038 3.248526877682626 2.8877206619495603 2.007038376114822 +1.279270028035861 1.5047844572649693 2.2719325184301065 3.7124723970550337 1.4580850111359251 +4.448170255704515 3.6554597050166926 3.2521505578217025 1.5540194411359844 1.8740435711658556 +3.3522010860832774 3.8163158287679138 1.1732587324243169 4.642604810139947 3.5002520911125887 +3.978352991964564 3.6081036914622975 2.5890045553079646 1.3099927209041478 1.331523870258222 +4.280353267826056 2.199480294777559 2.8304769485681662 4.856188755957737 2.9040558976302804 +3.4931987305351213 3.5609099820618 4.243850445488889 1.3702546038076502 2.8743934794858923 +3.0718041381099153 2.8991664297144983 4.780952076311886 1.7747064107051571 3.0111985620910597 +2.744394822980651 1.9041343402248798 1.0323379550198792 3.1025401205884164 2.23422798416044 +2.894006188892127 1.458295218305635 3.5291004254011513 1.108964640189464 2.8139515294199007 +4.978438292777782 2.9952311093848354 1.436697641769129 3.770120332380214 3.0623474958469457 +4.278253668745162 4.923524838086671 2.9746250744275473 4.125553758613974 1.319474030842009 +1.4387006969916607 1.5273226750599873 1.3580463187348477 3.0623559764333144 1.7066122184963424 +1.8791865019408953 4.572194649096954 2.762022728164234 3.050539297366638 2.7084192237084035 +4.225918868952699 4.359164334520759 1.2813360495254993 1.9218958693340418 0.6542715314359945 +2.6321422729451034 1.3474901934713994 3.685827186620388 3.5761888536024036 1.2893221200937623 +4.3628295765533895 2.55235149664516 1.0573396008368041 3.55904654024085 3.088101113708965 +2.143629322184254 3.575070747353515 4.013450120283377 2.803748407390225 1.8741405464551557 +1.8219690210433805 1.5704236005808014 4.824634884434964 4.499204934170242 0.4113146618891612 +3.830347470976003 3.416092301071383 1.7950695330178887 4.784743937492047 3.018237961221849 +3.361956523761269 1.74582974605562 3.186879728297099 2.1001575928561893 1.9475191298866605 +4.645988609758405 2.6994357494864856 1.1232096154204818 4.834184901733282 4.1905137648571396 +3.6980420905795524 1.325684277852416 2.4358664151922116 1.3506805322794664 2.6087755733448206 +4.348800711133471 4.703109087893284 4.235120864081879 1.65854507775646 2.600822410031224 +4.672976510644064 2.545250225975222 4.969730248491688 2.2082746936541007 3.486094652159353 +3.58737788640867 2.3067667977971125 2.197561653758876 3.5047347640450464 1.829936146571814 +3.5175300497530344 4.386790391600385 2.3225159243484867 1.7870691068989042 1.0209391932066572 +2.9009551600006453 3.7400163798420265 2.0398031685976807 4.547443322733804 2.6442925090234524 +4.277400391900306 1.4175073390393966 4.1686735785463735 1.5782323764249462 3.858675147696473 +3.617567958118066 3.024061172019794 4.148095270127694 4.703474008838089 0.8128319928227784 +3.513635462338454 4.1588568261426895 2.3077502037650564 2.2914326283147886 0.6454276656434652 +4.174726393954759 1.5856820567850547 1.025499717534482 1.1882610953672046 2.594155324174811 +2.736634551901013 1.6063343556589222 3.222548774822206 2.576444437850059 1.3019329275654437 +4.2529619577985365 1.4872084375150454 3.227291295242633 3.340203402419965 2.768057383600952 +4.857768640226645 3.8838681486551616 3.726461482416541 4.726495729484711 1.3959049619484767 +1.6872755578254854 3.593476667998915 3.556111546887952 3.0957077356326326 1.9610136006271959 +1.6060764552783522 2.178444718083385 2.336013775392039 4.312980384210547 2.058155096354452 +2.7097160800402427 2.515766677938885 1.2083856921248457 1.9994770722127564 0.8145194547859917 +1.2730713767135358 4.6460980665050755 4.220511180355846 4.327829938794704 3.3747335251777923 +3.41983405956703 3.716577585465447 4.026348426811278 3.183591840589379 0.8934737734164414 +4.70249940673259 4.8635532068510505 2.2635984480402844 2.5042678704043975 0.2895860794197 +4.453198261977935 4.954603817454791 2.9550878098938207 4.4472601664027085 1.5741619588188318 +3.2219092139262426 4.955717401427465 3.2359950726384 3.8728196656299785 1.8470615564417892 +4.321804052991688 2.403273062705968 3.3345837140611154 1.139040332530882 2.9156769198366126 +1.2520394078361021 4.495870031787558 4.548085975936924 1.5579614880979173 4.411720930618773 +3.1093849918595518 4.618315785500234 2.5514304887693826 3.458202174355136 1.7604280813987054 +4.127131320872912 4.852656992748967 3.9862077402176728 4.208040976412229 0.7586814122092035 +3.7644095286271844 4.906901731528128 2.0057660709548335 1.3447181202215224 1.319951827476352 +3.0666481313351484 2.5679457319444654 4.968790292400592 3.42757157907812 1.6198948130830595 +4.946768366533575 2.6180930977996453 2.4344592931192968 3.849916189386683 2.725114076952365 +4.197785863840352 3.5388234733003943 4.571707707005251 2.759330873294587 1.9284556566115867 +1.742867171636843 1.7286780096051602 4.3539993782705375 3.178181388701631 1.1759036001786145 +4.092627108543782 2.9077664540547885 1.8043953142835791 1.064049264686612 1.3971424564839197 +3.7834437204122047 4.010927792304333 2.245524321618421 3.6065244462186885 1.3798805535721441 +2.7896122931718326 3.246817321946991 3.282635244736887 4.702711541330832 1.4918623014491872 +2.440736964439576 3.7967144014998855 3.5613736667049087 2.0292563776873127 2.0459858741260346 +3.520962093725643 2.7325897721136934 4.368944515848709 2.9215924342418296 1.648138029903922 +2.610775920643444 1.1847389159880657 3.723813297489639 3.7489988047043474 1.4262593903004268 +1.7885016818005965 2.1845583919315827 2.2212479631857907 4.702113306985338 2.512280591754318 +1.4823432061131596 4.823589417874315 4.1532774695372705 1.2419276434906212 4.431690880152871 +2.6955150563003496 4.412756576750523 1.4160537114860015 3.2598486932976596 2.5196226651052087 +3.830694963310837 1.6977341817679297 2.768934533487322 4.70322076764718 2.8794070450807148 +1.4603097047902183 2.8949980832069158 2.666646915648423 1.1597361561235786 2.08065152784787 +4.637925920056706 3.132059243039941 2.0056564272878457 2.3880626778094585 1.5536630874766613 +3.788692568911955 4.775646380468739 1.104364768291095 3.4946161204512385 2.585996781252803 +1.8227406995214261 3.583916445884027 4.373869091008967 1.9816555174932016 2.9705935081880406 +4.313633998918945 4.565199744817125 1.6096878689620753 2.722356603275484 1.1407528377470337 +2.3278203333284884 2.3678085866255136 2.763577657506825 2.1819875843869245 0.5829631837031893 +3.862462767213326 1.659467983855881 1.061228498061817 1.3061390446055379 2.2165665321186414 +4.299779032558396 3.223164123893244 1.4920132938979593 4.058455597629697 2.783114399363408 +1.8222228807192282 2.669520081751399 2.4668044993275737 3.784499215766882 1.5665988358890797 +4.665075719247607 4.580224264909198 4.184960761578216 3.7814432267210423 0.4123422974187264 +4.535058018038464 4.82860911224052 4.625793484915038 3.655008880373348 1.0141967231865763 +3.693251612050213 4.014296790130057 3.1637184654011294 3.9513959202652886 0.8505914291065944 +2.801034577212776 1.9895977224960344 4.484762594918145 1.5319752650677554 3.062251260840232 +1.7815990204386893 3.7503799487311293 4.212648199663778 2.815136792046512 2.4143604697783703 +3.9613650662944964 3.9218611912575123 3.426444605569799 4.4422111877847215 1.0165344586818112 +2.5233653496717556 1.731035049466275 2.5287806125737013 3.1326270431688132 0.9962016946212069 +2.775867200742974 2.9833620791450395 2.0971025549328823 2.4923863463486717 0.4464340940375513 +1.0570030826555712 4.000596352884305 1.8754184464813517 2.012532364645058 2.946784954334146 +4.545493934930825 2.73592253797246 3.239696284061045 3.589149939160486 1.8430047470780446 +3.1573649343396224 3.2782838538928964 2.8426359008138222 1.414558170993089 1.433187840974054 +3.8536558160384367 4.558563854349025 4.870746809408143 2.4607914552034345 2.510932128062171 +3.746908477034001 2.0954621489044842 2.514770301433156 2.4175407538036313 1.6543060658852418 +1.0834702432245438 4.3694657677111675 2.0302410347923576 4.448301057358127 4.0798015711155475 +1.2009517785834682 4.093155421989223 1.791911367779643 3.4839964590673547 3.35081988043041 +3.2191356321565756 1.3053332733584253 1.7076050945671426 1.2479562427164206 1.9682267490177676 +1.4346529876583038 3.886334335349646 1.3030127556775026 3.6986022199892905 3.4277675405632855 +1.5487825175580925 3.2116418157949576 1.0762608148635593 1.966586611041194 1.8862081192360876 +3.2416602571909716 3.594926603094922 2.0952116343314753 2.2461625081371452 0.38416569010132184 +3.406621473877279 1.8859795705693148 2.344134824774818 3.6679529449134898 2.016146376953706 +3.0540878946087866 1.7373763915854572 4.9953173990475594 1.3739096337698706 3.8533522269067877 +3.5931381975673573 2.649271098162401 1.354121587476735 3.8692781863929095 2.6864284502682563 +3.058176166556932 3.185775720778725 3.938268434677984 1.1942464144564533 2.7469871666424384 +2.0269476379963223 1.046093978411898 2.0657228439410344 4.748487863996342 2.8564492038810196 +4.919703709677945 3.621971091642117 3.7787037684396876 4.170971748550257 1.355722728338708 +1.684474329880358 4.770432638654821 4.572038945182653 1.749286807764448 4.1822324556142485 +2.7751635432804753 2.0509798066448597 1.8297344630379127 2.8655914603496484 1.263899443503006 +1.9288686999571762 2.8018734084749304 4.342849431728272 4.432912170753532 0.8776380336191572 +1.2197197358313359 2.766587368633158 3.491088828323356 3.416180302932503 1.548680328727057 +4.067027289443812 3.397092984949323 3.7031523934849284 3.8487825137824494 0.68558012243383 +2.3705065252678557 1.7549971647764449 2.8562032386133915 3.3564641154762644 0.7931662611156353 +3.783217200792171 2.8881889915771928 2.8554157699131704 3.6702116102979883 1.2103585240741574 +2.33471702910267 1.710847871630238 4.586896475748601 2.9795975983294207 1.7241294635259612 +3.0677939834021632 3.4370694172591527 4.980441245354243 2.447595926544223 2.559622971272937 +1.909831497778646 3.797044748817822 3.9120814083723388 1.512052509130163 3.0531479774317303 +4.952470903416472 3.32728631566492 1.0826783268717142 1.882436314630295 1.8113083070667007 +1.0293839899874326 4.063463569377383 3.636706645401126 4.619567102086679 3.189302991468078 +4.078504012384382 3.16507650463619 1.279346260831134 3.1853543923336773 2.113579146676294 +2.896718747693024 4.33082008624595 4.494387999576926 3.813985856043473 1.5873228172505465 +2.931393701103627 2.6649491844130275 2.6023761410796458 1.817588930412413 0.8287844391042478 +4.1906760242309655 4.317198483764241 3.9226627095849684 4.332989100747572 0.4293898928140659 +4.594596238893063 2.1107285326270255 4.63635747544078 1.9211339058826113 3.6799507897410138 +2.7146390201832347 4.271302338275461 2.3492365998432225 3.533892722833146 1.9561724912776526 +3.4925019476719927 1.269682593616829 3.5805293011749986 1.1533374979015414 3.291228635424782 +2.5789229287372657 3.4789326813009436 3.8462061559987872 4.258042137947612 0.9897607947062186 +4.803607697275484 3.0856973030105572 2.502408088047751 2.0250313613025814 1.783004392019663 +2.546832916681677 4.616280379666579 2.482798396208772 2.572097327082018 2.0713732404155825 +4.9866333963434535 4.7090090606237425 1.9807396072064107 1.624948363294958 0.4512900187549795 +4.05112156802439 3.4072227948515796 4.793282448672175 4.803574019972196 0.6439810141093247 +3.6087424801907977 4.28008398293929 4.360787372248684 1.8641808065475107 2.5852937467945125 +1.113145608403769 2.815126696140618 4.400289481808532 1.9373159636989201 2.9938233371264817 +2.4675857480267624 4.962888244540165 4.201819522677008 4.700499053960067 2.5446445378533156 +1.8988160944527008 4.962884848026696 3.5461006186083592 4.83956918010713 3.325895104511595 +2.2299357830982043 1.9713022288570743 1.2334307076464848 1.4990270317722811 0.3707191966550082 +3.6755414290689488 2.1206050411449295 2.8779924934381658 3.6753984465790333 1.7474791628499298 +4.190247195860605 4.073472245228656 1.9525226664015274 3.819030349948838 1.8701570313308564 +2.578003865458789 4.662295848115855 4.401182634932118 1.0804352293494097 3.920667851355533 +3.296318917851843 2.6274023931097097 4.1876145148608135 1.250446213339362 3.0123756320445 +3.4527218326370304 1.5609025954228204 1.3114718027819636 4.567228982125652 3.765492642024643 +3.3681822242906145 2.2554875294857295 1.198491966649819 3.970251812917969 2.98676114365233 +2.5529809333321896 2.4007057609202156 4.691437062930367 1.3876973107872423 3.307247205460126 +2.393400603253147 4.695360265742183 1.7335188668664578 4.947438470067324 3.9532641580806924 +3.345197619593635 3.0149298499886554 1.16081500795537 1.3013073951507224 0.3589079415389085 +4.19400973897953 3.0913866612212964 4.812441939867782 1.9146676098420259 3.100463468477134 +2.395184543050536 4.192399275899652 1.1955802440513712 2.0938126213632953 2.009179484172917 +4.308683470360307 3.6986643192319937 3.679922691826752 2.131106605751104 1.664618464763021 +1.5219088384185695 4.170630669383598 1.6029103596162044 4.1317435877662145 3.6620656511900953 +1.776210256338635 1.5204277431227275 3.623715073047763 2.147187895681751 1.4985183347451871 +3.561512236594411 2.2957135373003745 1.8989474452108297 2.9930756469252833 1.6731296629136005 +2.063786464474237 4.051163394945425 1.9084707511168175 3.19642339104828 2.3682248766693386 +2.706654100354264 4.520640564273938 2.8800069095037046 1.8091751565682639 2.1064727708609463 +1.3910651515356225 1.7680703331647059 3.771819600381974 1.4834948860202122 2.3191728925058643 +3.032177980790048 2.0562298682450075 4.549870958925771 1.9855198615585188 2.743787759457509 +3.1549689425080194 2.3290537034447873 3.338867565523731 1.6278984260005047 1.8998819380471317 +4.249093970636199 3.2262860703771974 1.7757929236000498 2.3517916373515106 1.1738443334086364 +1.4379458199278914 1.2874793846232864 2.793211556131776 4.417090291125199 1.630834845751437 +4.361429321336856 1.6750261976105607 2.3289067696081758 4.750148815457546 3.6165141763520356 +2.962034638265256 4.907239489082027 4.655834323702559 4.490477208704016 1.9522205016651522 +4.1269625724559855 2.8280083092316852 4.044883803803154 4.27220191535867 1.318694696201418 +1.2294144521724206 1.4819497555855001 2.6681375100793923 2.2260531761642466 0.5091292937586033 +2.500365846212947 3.0628697052212996 4.866399063036833 3.287886339454337 1.6757425249456188 +3.824347721490996 4.43478778834932 3.2114665210425355 4.40982091511715 1.344875581243087 +4.249430096707364 4.7072360392427 2.9317425614245876 3.792610526171586 0.975028170746008 +4.135320487580019 3.88950541535731 1.5433829016595335 3.4123616954558025 1.8850747415930256 +4.097114666444615 4.745425334414669 2.7690072509317596 1.0421561516501585 1.8445382731984314 +1.4270278283904791 3.705517480008345 2.4745383280023736 2.376992430316037 2.2805767460634025 +4.237863601681978 1.2085058370277006 3.678489904023258 3.6933915647472535 3.029394415681704 +1.437582104332189 4.263474413313276 4.9706013193528955 3.007842337176725 3.4406525782286845 +2.1439584378004746 4.715932831035426 1.822584253253122 2.7939923314625545 2.7493064459726635 +3.65860040619857 4.194056294358884 2.707963367531957 2.5534969038546387 0.5572906751117648 +1.913443102519782 4.2578573285742864 3.695065899871722 2.8719312492614018 2.484719041735326 +1.195847463629697 2.7802684955072063 3.7871966107210993 4.232021967998557 1.6456790710016365 +2.4225320665307253 3.122474877644861 4.445391122523652 3.3374753056576347 1.3104950957909969 +4.1021505423504525 1.4514959455694667 3.9931218918106697 4.295119347948013 2.667802889073628 +1.4449678062216686 2.7571766029668305 4.711850220986032 1.969253167132118 3.0403503952774185 +4.983001027571683 2.492484467276101 1.8918945930411977 4.766720045086856 3.8035896357041548 +4.312183475910561 4.098292162317284 2.71968108993006 1.5550521250518488 1.1841073092688648 +2.5129997224749197 4.90910928439922 1.6470195850462415 3.6108664673968875 3.0980696586848095 +2.524627253619671 3.937122059754264 3.460926418119006 4.660676740484163 1.853251848339157 +3.6679757858902082 4.50990580327288 1.0881391551067043 2.9510932934284084 2.044368918678806 +1.4557253867408169 2.0484057803233413 3.6960586499581036 3.596407541416114 0.6009994944846322 +4.039780600473607 2.1322110790267392 4.351401658239461 1.0574458416227466 3.806437494689243 +2.930089357480352 3.5656176950881844 2.2764701749303753 1.8549179036189796 0.7626287336249346 +1.4200261674329986 3.2784270906333224 4.37534557803855 4.834213395284967 1.9142135891943477 +3.312075707352155 3.6241465801612907 1.742251205406975 3.813185538352892 2.094315458814647 +3.790622307385782 1.451720366019448 4.629401272999243 1.8626569016439762 3.622890656334146 +1.3255322895455381 4.402041506720014 2.133661662249049 3.829043887424312 3.5127239932564773 +4.432206361707191 1.2852944155141826 2.0504806112881484 3.754898082334506 3.578839715983426 +2.4867532619666073 2.0209850957636832 3.3775617498813686 4.547030785677071 1.2588080911453363 +1.8159444689580835 2.1308945227075897 1.5480402022572384 2.349616907649121 0.8612309510135604 +2.87018902058567 1.069255852489337 1.2528522098673234 2.8693658833645808 2.4200158537813534 +4.466142379199772 2.191363742582028 4.625544774023183 4.131024326230686 2.3279107197006876 +2.097635487004069 2.0301443495588702 4.4880269694097 3.768292187270536 0.7228922535582712 +1.1644772063438995 3.0601920594107024 4.095831632555781 4.355041702979259 1.9133542967121993 +4.904156214425345 3.189287057013411 2.3516507700184395 1.9207261401823175 1.7681833229736434 +4.082701424332715 2.0425886283462207 2.6466853636107253 1.6020335255270801 2.292020436898277 +1.147496633807755 4.182628545411627 1.101049110204114 2.857693123203042 3.5068253320120113 +4.565331766596361 1.1709345078375408 1.4213034957492359 4.840976444716691 4.818308399030635 +2.660044338251578 3.1765843642364167 1.5288079342830847 4.602547359086133 3.1168393686606612 +1.1839875729222094 2.27965528674654 1.4150217243656762 4.822406809630688 3.57921232373877 +2.8862593119188356 4.641367969856064 3.949282202233294 2.0102346979902688 2.615398941820793 +4.198775774938618 2.9379370572343566 2.6948029116810255 1.6668495264991847 1.6267767007702474 +4.124783286365168 2.6078197587484984 2.8601226942939437 1.0099681060202155 2.3925405627971155 +4.037413097480216 1.3511611840572786 3.2149847279296355 1.153028648772899 3.386386306188326 +3.948799949820474 2.9623864653089833 4.2730261627316235 2.4622182352164645 2.0620467775435762 +1.0471774036215318 2.552983969765903 4.941786617830646 1.6883015211823111 3.585054907355859 +1.6014985424316306 3.953823480390922 3.738513038884267 3.6788586461672987 2.353081226884362 +4.740261925206325 2.4049731906039153 2.3822719349733887 4.342790290861563 3.0491319580719027 +2.6576939786226457 3.1595902539112117 1.4171161609903522 1.165489616588407 0.5614408152211595 +3.7567912458733823 2.3428716615696517 3.833440053639893 2.1898370776540563 2.168086560436906 +2.189573215096134 2.9319924040001735 3.8332715208564747 3.52290376437161 0.8046827923588152 +4.63173283700587 4.344361034674048 1.5136711088137313 1.8406347744204439 0.43530195428279234 +2.382454444696042 3.2135036340216443 1.4917868509037424 2.128886207383067 1.0471572685633763 +3.93704569234563 4.8004830523108275 3.9195817937758037 2.235636427054563 1.892404838475532 +4.6224583502545045 3.636813967973289 4.6174051723073575 3.1527046365301583 1.765458158050916 +3.567326607565618 4.526972111847266 2.1305212961197384 3.1686372237622242 1.4137199769095004 +4.673842122838069 4.432184540214958 1.120062539635803 3.5005735485563356 2.3927455048189095 +1.7559475658727965 3.5512643758780125 4.312523428991338 3.1210679264980223 2.154699204693988 +2.7294736936507396 2.9119463544626023 3.40160259686622 4.925217225760681 1.5345024631211799 +3.009097769704331 4.72263164573165 3.2663383967011583 2.3158494214123753 1.9594967814310715 +1.2777083953281574 2.871604391351216 3.733907595346998 4.77737934600902 1.9050820823702068 +1.8812745399265713 1.537482127897427 2.031215253652579 3.0664970275509695 1.0908719328752645 +4.946791277319198 4.441510015067065 2.5574790422078513 3.561017752869134 1.1235653509159216 +3.757480988711084 2.580019378999133 1.7297668018891303 2.5672848640470876 1.444940257168537 +3.4925994258857123 1.8955440285680654 3.472309669766446 2.7926454169976376 1.7356639762906902 +3.5441225757364507 2.325073992996347 4.340036041360987 2.2574082029855855 2.4131759488808213 +3.367155467747608 4.6287004179443425 4.276340648249619 2.430124573936668 2.236070091571014 +2.6188715872687203 2.0851672905118694 4.447223665942854 1.2190407338546927 3.272003257853213 +3.131102683124025 4.217513578990086 2.6944288316552836 3.1199655256677366 1.1667776620280086 +2.8537388820944907 3.8457001211042723 4.166785648953319 3.8216803460494106 1.0502784248903807 +4.917074832750509 3.24657079573002 4.546154027773048 3.3949580095415914 2.02875232842595 +3.4421005759688987 2.438269554030642 4.520226044816009 4.52758779086577 1.0038580158122494 +2.6294274641330637 4.002114523592791 4.252026172261111 2.618835729797266 2.133443410208821 +1.1715160245900709 4.8663540241718515 4.411154774806758 4.887430509424194 3.7254082217307234 +4.148179021376885 3.1129600056617446 2.3257857017487935 3.7036998402558945 1.7234633107774562 +3.295511233061757 1.683700163171594 2.748971841907609 3.393225550655028 1.7357988841612024 +4.301316022939633 1.3876925928414923 4.055689178139991 2.6408289360580026 3.238986106336543 +1.0028755657086341 4.031695499249411 1.3867555643384497 3.149467330933833 3.5044119281140125 +3.6237039028227085 4.932112260162429 3.002079345891972 2.5709835391894504 1.37759791815788 +3.2609853392157224 2.124370299774848 4.091932893719992 4.013367716416834 1.1393270974429852 +1.3167999370870471 3.6814756976842333 3.5872557091200914 3.217604907415194 2.393393650855821 +2.2727935613543035 3.11325977221004 4.013928705005355 1.3323751625105231 2.8101802171492105 +2.0117659775723813 2.0569794379128075 4.910749820162009 1.2854342729305817 3.6255974782087788 +3.486600691935066 1.1995745520516903 2.1055964486578005 4.485246975675047 3.300488629770342 +2.78305088665442 3.0501788545857296 1.4687163621475419 4.110276907517374 2.6550328559371303 +1.568556035240643 4.776938080427215 2.7577724313877554 1.4101700820722107 3.4799062400812386 +3.7017518363820723 2.430752744870756 3.737505020610895 4.242821549451964 1.367765873584576 +3.1283741033517414 1.5106732252588317 4.310741229259316 2.3838041373423002 2.5159576083845643 +4.943296582163493 2.502847499149189 3.2551913160345842 1.8803718189399352 2.801057010554576 +3.8374168543172353 4.38785882709246 4.541627982703878 2.0750384111172333 2.52726145858569 +2.988161650745274 4.465111674408225 2.8614486094581273 4.625788375117052 2.3009294167973473 +4.5522349600739975 1.2351881459147172 4.361535176661321 1.2482716831358776 4.549198736859325 +3.2305680495649334 3.3254973731100885 2.6300042442990037 4.540639286026197 1.9129918554830845 +2.381338192018999 2.7696840687349376 2.563576784084726 1.5727766406160364 1.0641886318974878 +1.1549385797498677 2.3056748547650927 1.424855025980556 3.2883037573210947 2.1901221767222436 +1.8905184784471145 4.972999749646258 4.5678264377061755 2.8342373244296226 3.5365268274063 +2.6924153468164644 3.6791158671768045 2.174943648418563 1.8983337226952668 1.0247394634188798 +4.7333738851997165 2.58191920314147 3.973735606834237 2.276960902908702 2.7400367962551044 +4.585405682854855 4.131482548399346 4.949410416723387 2.9930280675146483 2.0083520877299916 +4.518487001945555 3.457785260893479 2.664758796814653 1.5071595527903012 1.570071397496514 +3.9517253224625057 3.630611493893636 1.204395906057501 4.691271495109685 3.5016304008884456 +1.0135259446161915 3.3824040182357153 3.9232151047304105 3.2331765722389223 2.467333885796236 +4.845086592724636 1.6976078988960408 1.8412223094909486 2.214498320215384 3.169535787506951 +2.0449992451062498 1.5867382707977833 1.2600551968973055 3.384269109866011 2.173082572895923 +4.332208538634414 2.045268514834484 4.497897780657199 2.685873242151639 2.917794989474811 +3.6462704308473715 3.6948841550720406 4.361810387368816 2.460493008136001 1.9019387663002545 +2.027462406284208 4.426417692090402 4.9522638041218805 3.717906477486174 2.6978925985140187 +2.7502035893566013 2.61810729267257 4.863896518309902 4.907225456784554 0.13902096427149313 +1.1175183058928013 3.489856446187058 4.260575205216678 4.11879317139743 2.3765711428460827 +1.0697986080078974 1.452344973867787 1.7861753761510015 2.0997968559817224 0.4946717645508178 +3.142074628490781 4.667857874465996 2.9662013813514516 3.054555116009559 1.5283392608078548 +4.55224940958562 4.96106552602727 3.666780328202288 4.212672483403772 0.6820035646336119 +2.69977073044155 2.01629452513077 4.235687292657192 4.069681270026044 0.7033475120989886 +4.407476243110711 3.237638913015298 4.96064473503258 3.9808909971084394 1.5259216119647463 +4.640160472557187 1.6388434125213398 4.011945607334861 1.1966735697275985 4.115052945053754 +2.204420920114104 4.34801683929415 4.388640598496452 4.114091348121612 2.161106373042922 +3.208984741766159 1.6068362743102007 1.3096238045107582 4.907597278530577 3.9385648187533646 +4.765552912218997 2.262666753223425 4.4463247127514585 4.000017351033605 2.542366886587213 +1.4063259923413018 4.763924312142934 4.160016546690659 2.203361562027747 3.8861247028551413 +4.599640975119168 4.954109548008452 2.980331036165449 2.856288307096252 0.37554569335980936 +2.1843440949289104 4.810919061251544 3.398904424183519 4.243644009150357 2.759072492726983 +3.8018534643623596 1.9282412439635892 1.9769032152959243 2.900736239244988 2.0889926300890775 +2.1629911048874453 3.4128524386067727 3.3427539833911073 4.744410434786133 1.8779760811213628 +3.3331776422551354 2.8708972078160633 2.9140395832641466 1.8705644996271023 1.1412902567868148 +2.1143399150876823 4.292194950110767 1.7292689403017572 3.1160084509366013 2.581878971588554 +1.735089762685266 2.5864030388776347 2.4076759115501405 1.161989631743657 1.5087970711528773 +2.3446612697021996 4.48445077680554 3.2421443277216584 4.621538436044611 2.5458647334030986 +3.2501138821580198 2.449753972636193 2.974935847365201 2.9991571140850253 0.8007263293605995 +2.756680928392413 3.9402258071278147 4.888463816363066 3.8632250309678917 1.565852179185305 +1.6087266205670443 3.580313196607257 2.7206661844575257 4.595133836507918 2.7204379436784216 +3.771801241190753 1.4615549052152024 1.9903572361768571 1.2960504857983133 2.412322531609252 +4.655809751162046 2.823610929588083 3.23795124093248 3.9138228843178107 1.952883765130277 +4.41915767003299 4.48588828834508 3.9471489467922787 2.4868277655561983 1.4618450423307714 +1.4144288388410025 4.416215618462465 1.3400929962030288 1.2116677925242034 3.0045327262737773 +1.5781670450955216 2.5773004248982065 4.624850462959653 2.348106031595463 2.4863291649304573 +2.6416681459415323 3.4734193256489583 3.910487724085864 1.1023079649915153 2.9287682708490084 +3.4592128543685257 4.496718393575569 2.7531183190478714 3.164746751602589 1.116179067342132 +3.9462159416553746 1.574729340980768 1.8440506630142806 4.1516178395906795 3.3088993595441933 +4.247898213870676 1.2582393573108472 1.6561255851273926 3.051167240422988 3.2991212918922064 +2.3491657123444725 2.977214786143731 3.1184961148004544 4.78295916608178 1.7790117729180008 +4.132571779258898 3.7685070797491984 3.2172219306508536 4.997785361929979 1.8174017822808417 +2.45298523417929 1.456460066637138 4.677895580737088 3.1202240689646836 1.8491627695073904 +4.692851406592636 2.52828615366631 1.021417972235378 3.9510679564240156 3.642552918494458 +1.6028552299431271 2.5771738266382624 3.1300515797068122 3.1334068800256927 0.974324374069646 +2.2820831868855835 3.347960283743008 1.9933715693110816 1.2279351592684713 1.3122449784335737 +2.767196973214531 4.776673055819817 3.3049605814188396 2.8523131084170763 2.059826172612041 +2.8328498084278126 4.063577074094388 1.8091312428015986 4.673589762848591 3.1176613375292916 +1.6872131493107334 1.4580608451310244 3.2903521989278746 2.7804867380861924 0.5589933511860143 +1.0006912373063033 4.0597372702918815 1.6915241891310355 2.585086538751037 3.1868819094191774 +3.0060914523908804 3.88114996269505 1.9529393173349456 4.490518734964793 2.684219942037982 +3.4522937869081725 1.8308387470050604 1.3330245643760152 3.8600395060824058 3.002485797141188 +2.202847349456754 2.536602718911823 4.445529297344953 2.1407531685141397 2.3288163625903264 +4.501853127116201 4.337782840350344 4.494609284274288 3.2613080566272057 1.2441667802651022 +1.583939637037688 4.569222402333362 1.8992178068457526 4.112529190038201 3.7162696979283747 +4.607097459991218 1.0900264322816824 2.164685515298152 3.0000351117301927 3.614913216415158 +4.722053510072106 4.297266455967015 1.4445621601222083 4.582576278187039 3.1666349089387427 +2.7140163810978484 1.2018882117165957 2.8346027107065557 1.767672359606375 1.8506409632165428 +2.575544898440484 1.9546095114376265 3.5244027883975964 3.4771057067949034 0.6227341075936987 +1.6815257449180052 4.11788587292733 1.144848325579379 1.9653877485536033 2.5708239181259547 +3.745022822738052 4.433131543459464 4.345801842554591 1.3282020576617715 3.095060915930097 +1.322426230819019 1.0604135681347282 4.187213532667984 2.924204008808211 1.2899006522858274 +3.7266702604638455 2.9614152016624855 4.937326634027123 2.4762944712593455 2.5772649478077563 +4.424409610425467 3.640626572581684 1.6038690663550699 3.676109453256511 2.2155125979143206 +1.4529955037102567 3.3377201138249704 2.1944915613173492 2.8798118394446925 2.0054552449717242 +2.614886503657579 3.0958536587016052 2.08979706937885 4.3177270925193 2.279254613298337 +2.35205796151137 2.1736338315488197 3.3819736335601402 4.552758915462355 1.1843028947324838 +2.718249330962457 3.433649671231169 1.503837428579828 2.146966505180454 0.9619837088151557 +4.833081220075611 3.0970442198040784 4.540313765948314 1.2225987999953172 3.7444701977209376 +1.929278549618306 3.2567933281837065 2.870595502057808 2.7946442076269724 1.3296857096454273 +2.533985777682504 2.5817901997290598 1.0206360419554277 2.0304163010711416 1.0109111901977361 +1.9791311982852586 1.0788407037813057 3.9161034498269602 3.999416281305306 0.9041371590544829 +2.232831940254929 4.278394813480869 2.058854227720439 3.725424602464745 2.638519335213547 +1.7885481233454419 2.169865870407298 3.5693931113175603 4.6417259751172075 1.1381129096047906 +2.4760059257432387 2.301084795228088 1.3135306989529938 4.938645899316166 3.6293329439174933 +4.800453122849435 1.081067738482548 4.287262681259545 4.002479848080037 3.7302719605299237 +1.290065117065022 3.3464199533982923 1.6909825504106561 2.1538037504968615 2.1077947424169334 +1.7681449393654245 2.6011986858666756 2.3349833755302445 4.917138702063006 2.7132092943415342 +4.330326024245315 2.0815506504035266 3.137400955939514 4.6715367100679615 2.722234963057476 +2.0182495888910763 4.277221040399084 3.5584210653698274 1.209465695326354 3.258917511871736 +1.0524785960258365 1.6909806994602485 3.9476178876629233 3.016165938795686 1.129286353915048 +4.183480121202308 3.123674803477203 1.8075579325265547 3.050537198250182 1.6334579169654964 +2.032137255948677 3.9290787142808794 4.123556989961659 3.5620679936981943 1.9782964361451132 +1.817931761640648 2.1497491397056865 3.9803840853268713 1.3579556411469476 2.6433376093926957 +2.2223971953879467 4.520878221206109 1.6460282589007558 2.8289511109323247 2.5850186652913387 +3.734665535319157 2.8162172189656967 4.58340942727799 2.457789450647467 2.315557728682931 +4.019502097263082 1.16794808431173 3.2114485045241845 4.7492079199407655 3.239763001900186 +3.3209298066720483 1.1387408671226762 3.8465401029346618 4.622712848570112 2.3161158647526436 +3.9434915992905824 3.042721849791367 1.0531106665287782 2.5222152270572566 1.7232685082071375 +1.3440939261128224 1.5329828568571853 4.460038603433518 4.311137982302107 0.24052114903074293 +2.9963682224387314 1.7980481582815715 1.4756399689420001 2.8798798603335793 1.8460391785487797 +1.1108760161549918 2.8071830136465374 1.6270384445701107 2.7112050957888787 2.0131752922569115 +2.296013991157041 1.3762382663026798 3.3356399932232765 4.8505807797507146 1.7722959602492294 +2.2579496201503058 1.9599100327245553 4.906162264645527 4.513682627053987 0.49281625541057217 +2.7028280234037396 2.549488254901526 2.8168024018736393 1.0004677209801338 1.8227958628493826 +4.368568167570628 1.3364763427001178 4.224379386781692 2.059765960005309 3.7254707248651378 +3.2570333661773323 4.401696337167204 3.0207850988991063 1.7069010291582516 1.7425684106726342 +2.7869167353424196 1.7265293828301425 3.0141445341248336 1.056712796013096 2.226198631464662 +2.559531181398251 4.5745174489512515 2.903433053481531 3.4820345716974943 2.0964134552394453 +2.5433786952662802 4.969148938544482 1.8306380026180493 1.6417995931073253 2.4331093724040693 +4.741697784326121 3.789711755143423 1.2046359581318282 4.895964548391099 3.812110197911983 +1.066033283271647 4.961832219567636 4.030149213410972 1.9660145551855859 4.408843526292603 +4.462805596304651 1.4785330402997006 1.0005367217998105 4.06728788558075 4.279117360984164 +1.9548072424929428 1.0366491316024131 3.094001612273809 3.332132390423582 0.9485360215069761 +2.48691451994066 4.772217090680771 1.0073095071233396 2.9422651352940346 2.9944383651731434 +4.939634167751173 3.9609380304235473 2.9252274557543467 4.553325281639617 1.8996180299924394 +1.5664683047877235 3.0610704570332636 1.4510484189910282 2.087122885593672 1.6243233423677808 +4.086021826208244 4.656437941121945 3.0711775888845745 4.891147161186003 1.9072660507271364 +2.966357776453233 1.0570554574950912 4.631778765023787 1.669111596780982 3.5246038209936135 +2.2524898511305254 2.7253007461827385 1.4020420478162685 1.9877473402776604 0.7527289233830194 +3.495614770382329 3.0000830371524847 4.993740881060386 3.744138190553525 1.3442687911127598 +4.907492901584403 4.1501940613237025 3.9788236826449155 4.1616225955035056 0.7790487635587933 +2.57769037525736 4.010694794818581 2.625948359705949 1.2742235349666986 1.9699395087916658 +3.738556556281051 4.198648382920588 4.621047779285158 4.087432239138122 0.7045779116796939 +1.4694325257439922 2.8618429061127966 1.8359847988136981 2.846429668263395 1.720408527517814 +4.591822622233245 2.938944279146613 4.262292053443787 1.6311504331420688 3.1072355950472694 +3.7305463291412826 4.668728705726212 1.750978077918298 2.27903665263048 1.0765834988804204 +1.1060860514197604 2.3598433538449446 1.8261932047816112 2.291259912242079 1.3372338672695196 +3.71681227566173 4.378602132206411 4.2304658106508 1.2323351790424288 3.0703017927255694 +1.4828937311610608 2.3582180689900594 2.1199778920228893 2.8600575436009743 1.1462593890894481 +1.0011944877588586 1.8695332172647179 1.238517167691234 1.2524208217844772 0.8684500335407872 +2.4701737986911003 4.32966955251708 2.586161609842655 3.217368830381654 1.9637074664413274 +4.767661172936508 3.995015592654058 3.735239872004589 2.539941873436274 1.4232773791891107 +4.823030795361288 3.1401831416873645 4.252434559521136 3.36310650910348 1.9033866151508736 +1.9974241378093676 4.286576753046516 3.733257097103666 4.93911134782003 2.5873353415855855 +4.401585002336528 1.528873156829365 2.134639343345662 3.353325714537695 3.1205239654017043 +4.724049823825962 3.9115056803105115 3.074475140507414 4.0315221975328255 1.2554549193508535 +2.9195609516717873 4.0964090654462115 3.858904485824051 3.7122497448775444 1.1859507139575858 +3.243124804385671 4.901103178107386 3.9488718087802677 1.1332714833066357 3.2674910069556615 +1.6494503165380063 3.027966417179307 3.2364844387256464 3.8912163152773998 1.5260997575192379 +1.2432468908028138 4.558612640784321 3.117902291308267 2.3329826543335397 3.4070146598831914 +1.542103381042153 2.284237448552669 3.3020503654860174 2.688073909110252 0.9631874496397079 +3.4418438826856104 2.2797521616591325 1.155659943801349 2.6217688975655475 1.8708106885481048 +2.2497496848769396 4.2804131115874675 3.986474856403205 1.5704648932194316 3.156057365572274 +1.4475710709747425 3.757777604372039 1.8617005749556927 3.088414569616743 2.615699036901766 +1.6713723496925534 2.211892388752742 4.373501704051116 3.27565214367234 1.2236974993230558 +2.8495365398253925 1.1677519914235406 1.5567858160858488 1.2190312234465437 1.7153651016888982 +4.354611508813559 3.503196277959326 1.3013358660697216 4.225180843846074 3.0452877285075317 +4.456986604008609 1.5485741468305858 4.921627799381307 3.836718603352052 3.104173156365017 +2.5952157949280252 4.62442782010986 2.0231439279605166 1.7102185873568176 2.0531984102698173 +2.4471872487683703 2.1607636371848136 2.8839961028478203 1.225495675987045 1.6830514404408268 +2.729786957301732 4.502435896209685 3.000300543343669 2.8265212541965736 1.7811466817609274 +2.974737638181313 2.7663484841229296 3.1088048716613166 3.0253748382564885 0.22446961933210327 +4.541482162992443 2.956403238556048 2.1407058412200777 2.8066184999804453 1.719277425487155 +4.386110475977484 1.5642562240176798 3.651034089935557 1.6005563905104703 3.4881686047470843 +4.643421385001597 1.5248749716509296 4.406653466615321 3.901210567970399 3.1592410886181024 +3.8900502049473054 2.5276563437221236 1.4835542767542171 3.367743212584298 2.3251419266377167 +3.571165558410446 4.588057618069433 2.6157738865427325 4.119599584643936 1.815368059448846 +1.2815414838832146 4.295212590800009 3.1539506856791233 1.1210740191690949 3.6352167860948845 +3.6425450563367794 2.8941336862600124 4.778100172022826 3.2450762729995466 1.7059548217455005 +4.957223631738349 3.9392926615993336 4.188259625843548 4.013704656836193 1.0327888928398268 +3.4143885848930875 3.0266864692220388 3.0307334888668374 1.5972527335742042 1.4849848505254675 +4.998040575947861 4.49520430368386 3.3532873985976623 1.1733795035264918 2.237150586728122 +2.4003399857225878 3.356344268324963 3.7248827117002 4.302057149239507 1.1167249078008863 +3.2165922738137724 2.985517285732969 3.5218228443251673 1.594051424515984 1.9415710899036527 +3.1244100661331324 4.806241291080022 4.292133541482528 4.4259948630144565 1.6871500000321935 +2.853600587281437 4.293512151246736 2.174938095238349 1.2256140800093163 1.7246916819917597 +3.2024819089954764 4.954329228059091 2.438075061715662 2.164671884696056 1.77305339076825 +2.493946872115991 1.7998277007320094 1.354078317022029 1.286686666980247 0.6973830070901782 +2.027594941442615 2.4728159534456378 2.6998617526927142 1.7478867387446164 1.0509415667440682 +2.739092296290714 1.2711172422835375 2.273518354257189 4.292941939861276 2.4966021664016553 +3.1266057450265485 4.861403258513372 3.297066371620828 4.807245117499998 2.300035273056752 +1.3740122744536252 3.5700620141806088 1.6058018024194056 1.9623088034629403 2.2247992496286058 +2.359793158348267 2.4878510165012115 2.048132375516384 2.010269222438436 0.1335381346122662 +2.5581295165465847 4.761875469026295 1.47145648168912 2.8310243580043455 2.5893862271548054 +4.84667431814599 1.9104638532371054 1.2291746420064196 1.4530129569300683 2.9447301209904286 +4.885492068179019 4.2969818200776695 2.2091880484943505 4.530353435798775 2.3946091679730137 +1.5970076203281218 4.234057501991379 1.868552646862108 1.377034378000901 2.682465710312905 +1.2541372236694746 4.371986011221798 1.8110933868650476 3.7460679329962083 3.6694832819100003 +4.390563799020506 2.7575143007086895 4.343131542492959 2.7359174525019117 2.2912851841275073 +4.500124149748038 2.1601039338201575 1.0068998825012176 2.9167250861927725 3.020451443014215 +2.785455768238763 2.832187213470489 3.0650967548786276 3.229232042720029 0.1706581984207775 +4.366869777743952 1.2160290234248947 1.284938115728933 4.901357892400069 4.796487200042964 +2.7328077298822353 3.4097252882855233 4.836113810485883 1.8112884633383577 3.0996428442033146 +2.0779692204736926 3.53467219458828 2.981660688479134 2.764607409859522 1.4727850082594565 +4.9988936409654805 2.980698088686982 1.322101864804528 2.7370580832656026 2.4647949990614593 +2.8763075503358424 4.082872751785884 4.064148412813232 4.199110165262997 1.2140898895775765 +4.540893939732907 3.66250961432058 2.333127254784295 3.6464420425265525 1.579985681844161 +3.1481956224623486 3.6329038680083228 2.399627167748853 4.0984518464349495 1.7666203248613366 +1.6140212989008438 1.9884564987246929 4.552427648733177 4.063753850988714 0.6156328446965139 +3.0698344080016455 1.721376756333135 4.225820804930599 1.3696937065029777 3.1584489928944457 +4.74244042115284 2.3485656221620013 3.7143843305665736 4.828614005939216 2.6404818353331754 +1.513582402396636 4.291971413272599 2.187370718958514 4.383116223022993 3.5412912637025045 +2.9833255643094247 3.9676575258279754 2.162918945226354 2.4908835615874008 1.0375308188443397 +3.861208568979896 1.4072358833531027 1.5704503218749948 4.186430337383183 3.5868277604786933 +4.899180743514196 1.8873151558420345 3.2888909337793115 3.9675780661579894 3.0873857131657796 +3.70708517611941 2.631362476567835 1.153445029362476 3.3577798706301505 2.4528088834552744 +4.972916171566366 3.0099774767297274 3.0695527114777095 2.8436406273139663 1.9758958953999 +1.9565368159249363 1.9531946778545128 1.2110681871928581 3.904433987975846 2.693367874374807 +1.0432961584049618 3.9722532331798406 4.310618078720701 1.2166814626521627 4.260426425854981 +4.062774337125764 2.259334688451989 1.9811419976411506 2.354776457909963 1.8417375698803982 +3.8437541952633767 1.2420706030243571 3.402586009318937 4.188039985799228 2.7176636037770443 +1.423613056033095 4.7483460828456785 4.954375581315362 4.006148751045544 3.457308754106568 +2.3881566139615864 3.7941394848220553 1.398404920165826 2.974520374475163 2.1120908499555062 +1.64369133980147 1.1761338685400449 2.9023752437574877 3.776904824652966 0.9916713048150578 +3.0439523066082996 4.697188363885937 4.617405883000174 4.732395409451788 1.6572302351443127 +3.29307361087272 3.4853058269048183 1.0099459184593975 2.758755812849089 1.7593434205964156 +1.022932409032478 4.376199436970598 4.754611285002972 2.1035748314586127 4.2746220930835515 +3.302179573453798 1.629131712355126 2.0066108080403144 4.388069389129864 2.910401023737432 +1.87403622425097 4.938220182430075 4.010061846470116 3.185116475950587 3.1732882305116514 +2.3696121734598385 4.128272949228844 3.896083971089218 2.8141606817162548 2.064811305741048 +4.956568927421166 2.3453781779781417 2.896104969487247 3.14328124599898 2.622863557573483 +4.1854660615495645 4.957319701707295 1.7081833142358867 4.34191672031708 2.7445053645662245 +3.7005056572102037 1.5801677580583435 4.266964339978266 1.8808361440627017 3.1920903141864563 +1.453683743485274 1.0039000501934634 3.7220015165368387 1.7537752052748865 2.018965126765456 +3.1312830706522083 1.0642510421288613 2.284748783364568 3.3089333366134928 2.3068540062290555 +3.8007556157687326 3.238912757201423 2.286262773775319 1.5864339189365433 0.8974563074534817 +1.6296436887738617 2.446133901727212 2.520979751760703 3.793717529046369 1.5121235788052063 +4.134673738190138 2.4104820698914247 2.9944644569599226 3.3438549139349525 1.7592358001291126 +1.7581889727357982 2.563530347049135 3.8720295577982924 3.624285323248612 0.8425864554652542 +4.597975191589626 1.1155575450288526 1.3500824790881532 3.244093614816634 3.9641532320713035 +2.268994155911446 4.704891112593483 3.852019432875753 3.435822832702629 2.471196793775938 +1.6863576392036599 3.5418259432717543 3.8801017393058874 4.4266217796009375 1.9342819809545437 +4.980156133729336 2.7498752669710953 3.4077610379372754 3.5462189768630004 2.2345745334357163 +1.0466368264027066 2.029025813774927 2.3338330788630284 4.911760152007133 2.7587671371392597 +1.6015704083031115 3.2749938391714872 1.2214261708940604 4.879675931504405 4.022827027102325 +1.4683457510443394 4.913771113401466 2.259107937810637 1.4247148490291761 3.5450201345239214 +4.904588957473364 1.394215302689625 1.7181630021213445 2.992925205165344 3.7346675716199074 +3.142018122336698 3.5734166253594193 3.2784496898365574 2.184324274505864 1.1761016507440194 +4.41206066072311 2.7894626822132884 1.6521900616429344 3.9427082156549202 2.807008659360109 +3.9312344035641127 3.8104839917769304 4.907596326966441 2.000772455671039 2.9093307960215804 +2.7002956425505533 3.0877495963121087 1.801561869645147 1.3885612715137463 0.5662950294169605 +4.491778503764191 3.7361630045142156 3.1206243143319585 4.725927458425868 1.7742471550335321 +2.768843499755674 4.490643533541485 1.210566355166287 4.825711747043082 4.004231706676431 +4.4795437412897225 2.820550866803488 4.0285740744487075 4.023319179551952 1.6590011969605312 +1.0958213581168064 3.6625814354071826 3.056707909853265 1.8292321654542345 2.8451632637617923 +1.4016419941513076 3.80614922158534 3.4371698150775116 2.7743774226927895 2.494182984904187 +3.864816127935941 2.843176431058887 2.9865832276699593 1.7419306277174704 1.6102508390941856 +1.2925383473998426 4.431301788984316 3.422533976569916 2.0586713678447173 3.422273682466952 +2.039020227231053 3.259779317499966 2.8171533030373817 2.6652375353479836 1.2301752545661302 +4.054969054630261 3.9350987223554337 3.7316832218287472 3.0777307212160676 0.6648479296931399 +4.114892228519222 2.4035091759090554 2.0451337495917015 1.0751794647496413 1.9671408865266276 +2.4308648142188747 4.393595375693362 1.6579813817272817 1.1804325222854368 2.0199911311934424 +1.0905375754673305 1.731510054298226 3.8004062829161267 1.541874708998209 2.3477245556075714 +3.2427349823613345 4.201200946315842 3.8224261462787643 1.4724246621485464 2.5379448338120882 +2.349711519378225 4.046987642713306 2.6875191530523863 4.546675409120372 2.51738122327948 +2.7817227525188626 4.5298549597954345 2.854330364472504 4.388961107205257 2.3261680357743164 +1.5355373313183076 3.6978343018842765 1.709220385798905 3.4692466367325747 2.788049603736346 +4.273032366201553 2.18297831747558 2.0187042946157203 4.454624642920942 3.209678156744577 +2.4176843344264256 4.095549029324317 3.691796634605557 1.1707587190281967 3.0283431288682325 +2.0125475278016913 2.156401534626636 1.3209460587984565 1.6294049433320867 0.3403540197020195 +1.4111726592283311 4.3870158825795205 4.163808045011257 3.94193591802908 2.984102902162858 +4.7465472656694665 3.5578912577492736 3.8878308440979343 1.6950180849384338 2.4942595899179123 +2.8904790918847794 3.3359349811171892 3.7758608007370618 1.1099419936550974 2.7028788421246634 +3.2377129374743507 1.7755425692931701 4.074332816533589 1.9442960052403628 2.5836019436150193 +4.668987332089337 4.19448851386686 4.3041223224081655 4.027636257070717 0.5491754481222837 +4.170971689448869 2.0417316560218945 1.7902552045199696 4.805339511866952 3.6911240158464116 +1.312019882765929 3.25078972887415 3.494864767313064 2.79018456038705 2.0628627463337894 +3.646913290498102 2.909170218193069 3.5379619927708017 3.0996369610713588 0.8581338323061194 +4.619596224398786 3.787039015130492 4.71590568068863 1.7159445842524312 3.113345160247301 +1.0572877769191567 3.356803402023147 3.1414666652568983 1.0045289719105863 3.1391519261325427 +1.9044542918672116 1.5407356816369187 4.823960073345625 3.023606294750359 1.8367266959267807 +2.6312120450597276 3.8730878790619143 2.0175817492131576 2.576280957072227 1.361763706353264 +2.8533243055514514 2.693561367170036 1.6119326615479697 4.580345189441287 2.9727087197090563 +1.4782156518408387 2.6020799177622 3.220853847820524 1.1664184468862553 2.341746293864241 +2.6596525476638417 4.659593132286289 2.538152040890376 2.8557087039303894 2.024994957095223 +4.280250789064597 4.56570729469091 4.206139406750444 3.8696784879854147 0.44123844626300723 +1.7314938508109687 4.316009044840378 1.6465763961747433 2.958120819806063 2.8982525016511733 +1.5828113988852812 4.316360213849721 3.046256675784774 3.6068311041258614 2.7904359540228527 +4.83273319106522 1.646164767739049 2.7629990126243373 3.3636539263969754 3.242684789179894 +3.2965156506424758 2.534917346014375 4.674794696353577 4.476370474727655 0.7870223309031646 +3.235324586569404 4.7214984377627935 3.914869271085329 4.461859714896974 1.5836386145810704 +4.002372107887139 1.4944579034850536 2.2000343932262947 1.2835048493882573 2.670142329796242 +2.1941756443799814 4.535808944883669 3.2635443788482434 3.7601944206480886 2.393722577502995 +3.8978650545634492 1.0472405771133224 2.616073577415025 4.4665001992806435 3.398549483874968 +3.485950636646739 3.5502035725829098 2.161682317845948 2.4487025219284706 0.2941241869142871 +1.3334733750348753 2.6157392473942234 3.6309080329191543 1.7900071191440534 2.2434620437519066 +3.7259713317259355 4.7006356629986925 1.0711210975910515 1.0699833469748312 0.9746649953352359 +1.9501892323784538 1.4654168714194111 3.771065398086019 1.0587588722893724 2.7552878128843235 +3.7989140267165857 1.5497728241531004 4.768405820520657 4.546733850150557 2.26003863053632 +4.158084088176458 2.4752506781396972 4.2994996558105125 4.222418754807473 1.6845978010300833 +2.9334104787738053 2.4532449962025353 2.651922484517495 4.833679652445783 2.233970284148687 +1.129860718165495 4.46092013675826 4.504663324787851 4.532548798144221 3.331176136114672 +3.6671464331814714 2.239558379058694 4.964411624289861 4.27060628378846 1.587253446297195 +1.4313022241225384 1.8330254614934636 2.2142132848358624 2.2479316357433587 0.4031358166073783 +2.3487874080411357 2.237126914967855 2.958601068362313 1.4625737897761053 1.500188549478839 +1.2514310578679346 3.3268048952576406 3.7330133440814146 2.813436146483255 2.269977706336377 +3.4504236520785847 1.9723763996961168 3.688221092825909 1.5575247003952448 2.59316231597492 +4.434225604933868 2.295340101700941 4.356056386427914 4.034707971797079 2.1628906582455163 +3.273632728446088 1.543973471458108 3.290980424871783 3.6886498052817758 1.7747850803406815 +1.726850679444198 2.915310519506087 1.2411924311498193 2.150934012938937 1.4966851830214984 +4.9547971670774045 2.418371931450729 3.902583934867917 4.190314884842504 2.5526931024894304 +2.554146960665405 3.247121486634838 3.4924083980927567 4.493789618128865 1.2177758584746068 +3.5227972183079834 1.6147552414838064 4.760476037776087 3.457538166438547 2.3104699266358595 +1.9266458620921614 3.852143810577627 1.842452335283216 2.0690472615624644 1.9387850861395741 +2.1811353821416866 4.996041901324972 2.7891473067477097 3.0730765532313713 2.829189730072789 +1.6930666134089853 3.5262612985820074 2.984554869798218 1.165686593037802 2.582418355331301 +3.6450178489572043 4.965010307356749 3.012759086143359 4.589926628763195 2.0566568862416417 +3.6913550986236143 2.841611178700977 2.6627581444891177 4.571217534731245 2.0890863968847344 +2.0985022298382945 1.6303805043042452 3.639473272210809 1.4701149154085038 2.2192912450025513 +4.247267536102942 2.896473048921845 3.62802902740408 2.784749059418749 1.592409134300662 +3.601569821583131 1.7656354815798831 3.5382167445804047 3.6728023871240287 1.840860721505579 +1.3925444664386468 4.338776743036072 4.267206026397476 3.3483564964154526 3.086190059995112 +1.8039938274342782 2.4118222345213227 4.210442136431819 2.3809843390464533 1.9277892013589266 +4.346097962878726 1.7315676007157599 4.263387973816052 1.5218640407694672 3.788366731210064 +4.951736163113003 1.31827747128355 3.01815046445974 2.818403183905018 3.638945045108541 +4.612674734871369 1.996609522885874 1.4340051863097734 1.499176755590125 2.616876865044127 +2.514236017401859 1.8827010698530096 3.5857611925749877 3.6824833317552708 0.6388987104253209 +3.3033087777397347 3.345783902258131 3.3337943382930453 3.0229598690734063 0.3137231318502159 +1.032385932088137 4.569076983683052 1.9841654289348738 1.2363670517499785 3.6148839548942524 +4.184495194426935 4.0794221188423165 1.4526800835685956 4.855667154987481 3.4046088408886113 +1.054993887584918 4.930554381674512 1.547454213634012 4.649025036073155 4.963840318740502 +3.9750867200741893 3.0958769242791218 4.967582214759099 1.8483876437311109 3.240738285784966 +1.8737468059979565 2.4588294122995595 2.3848406609782553 2.0090781499084756 0.6953553918120884 +2.5837258057971404 3.4531495417837004 1.0978600446022213 2.417719915530294 1.5804833790910604 +3.4780973411182634 3.80710454754138 2.939547692563292 1.0323267070546795 1.9353908208531907 +4.295494594666372 1.2814408420411585 4.765263758098813 3.472826315594268 3.2794686408779423 +4.36396319164381 4.575097307044263 4.44828828594231 2.531823786982963 1.928059592039995 +1.5524854866393132 4.922945790711788 4.634144362994126 1.8130292694597028 4.395303519928523 +3.6044759501725796 1.9776106486170524 3.8974536847475747 4.247206631136827 1.6640366080448228 +4.731424592845956 2.3702086111680836 4.927634544124807 3.3518031056797315 2.8387648078914314 +4.1721031972703635 4.44614949590373 2.6144802707212516 1.380069207855216 1.2644651224611552 +4.345792644455511 4.087982241362628 2.865260163639141 1.689293947229403 1.2038948235123985 +1.6837478959068055 4.197915542342891 2.168549494056728 2.1506377724118617 2.5142314499978413 +3.0048039889653304 3.0025496761989925 4.310127291258035 1.5021856442242112 2.807942551953845 +2.968689846735644 1.5059032683127143 1.3180963256878804 1.753642158648118 1.526251862119516 +1.5726057472317132 1.7038396803204026 1.6851582462679722 3.544247886333233 1.8637158139029426 +2.0643561083424733 3.6897475914904194 3.838682832064119 3.8795791388380816 1.6259058956156196 +1.8917961376475345 1.0476956408861824 4.91569348999451 2.110632353132152 2.9293128255903818 +4.8150905926120835 3.5149758463449725 2.691364798024308 3.417807848522178 1.4893011310939925 +2.775942101698797 1.2381590911955462 3.429109339076756 3.716888380211107 1.5644786236662513 +3.320243040764584 2.288663868413349 2.298936025141689 2.8006140022523236 1.1470991158337966 +2.562501509174536 1.1121028023243595 4.409612589923091 1.0628217726983213 3.6475560561960805 +1.1650624478631317 2.416914031637697 2.5473769814047 1.0891314235713812 1.9218773360283676 +3.811707405525663 2.351020078343734 3.104511473594294 4.290163666590713 1.8813236272760478 +1.3958099479546604 4.052115680298394 2.0804176411941397 2.0472132732300428 2.6565132549516997 +3.098155333857747 1.4423637071064146 2.8534598530847823 2.1319480397906045 1.806163117756222 +2.621091449853062 3.9736979772160486 4.861805868044579 3.180721720125003 2.1576812392592757 +1.7946666521020247 2.089061252732646 3.9470936250910884 1.6021738275150361 2.3633275350540344 +1.9977599415398437 3.0266590187626257 2.941788400653741 1.228938139775221 1.9981214495874635 +3.441539355492137 3.160237746740712 1.2626242161978802 4.310387519274432 3.060717521540698 +2.0107190691642156 4.084582622180234 3.8455813410153494 2.141385686211141 2.6842490321096824 +2.6802383652014656 2.483485350508143 1.6746150445626946 2.154371808672591 0.5185347640227312 +1.8503096772983807 1.7872505651483817 3.1184054403021038 1.405638457344693 1.7139274166469762 +4.9675492771804315 1.1142234470673062 1.5164475795567012 4.200025974081751 4.695712188004994 +4.366267927213664 2.329819462079693 4.131472968170732 1.3926640643633772 3.4129454379935447 +3.165721918734799 4.119129499512399 1.7797438934972165 4.732773223110264 3.1031223367181453 +3.8895598273960603 4.134573199796125 1.601589784473286 2.554358593491664 0.9837682430802241 +3.954164014185998 4.986057103142771 1.91304591039306 4.17336456735053 2.484722072592179 +1.2182344265702851 4.900303895871284 4.3867701221528925 3.080375843384432 3.9069555395931377 +3.156851194719719 1.4875173668740458 2.978705101722868 3.527392305709421 1.7571946609890632 +2.109524147526267 2.0522980538796096 4.822356100474595 2.7301756815592286 2.092962907241056 +2.715812202608376 2.656788058793254 2.6311072312905868 4.200395362157458 1.5703977480984703 +4.4797642346035715 2.6660924836105497 3.0940891236716195 3.528276444969683 1.864919261074345 +2.9655771797325534 3.441855678285576 4.529109102365965 2.3639797988910294 2.2168956017254806 +2.464200963716637 1.518075357449049 2.0729921551158483 3.557705220325304 1.760547229937007 +4.58991566355488 4.293315213276825 4.849076434996082 2.4330518075821064 2.4341624488468274 +2.0268337171986657 1.230044231102819 4.4263107117948755 2.6796208080460895 1.9198435105525729 +3.304558676952721 2.83505076163047 1.8659832716572873 4.159109139405897 2.3406973165892384 +2.912995241605152 4.956770297445535 3.908062319764587 2.3950668773532824 2.5428668245963535 +2.04223932069617 1.8844830974726499 3.06380706954543 3.3899140381463826 0.3622606533089838 +3.4310344369274017 3.3325768995989775 1.401557363614974 4.732110295707354 3.332007911173971 +2.5948160979936263 3.300272684114959 2.5239905909400404 2.414912669984617 0.7138396092554146 +4.514363008013206 3.631212731760271 4.3016242358067025 4.419236644205495 0.8909472986967292 +3.0448419142660064 2.5065291668112515 1.9808204876809383 4.6273873206688165 2.7007585259596563 +3.3126646349184936 2.441410535745886 1.083634921492838 3.565665601375841 2.630505655041546 +3.446318116634584 2.1677618562259804 4.5890649924166365 3.1315223571302853 1.9388493094378207 +4.772963777721644 2.6627348342171917 2.4673735551935745 2.8640895505172104 2.1471957933429224 +3.8266654129479263 3.7155769310714257 1.142219100103281 1.657988820591981 0.5275974368575128 +2.1456811911801523 2.2526884945330967 3.5654687589218694 2.8843013093982868 0.6895213247328407 +3.7480093891667057 3.0866020185514063 2.606049111437779 4.500417735528644 2.0065124454745256 +3.9602094126655247 1.8162083837703684 4.970052757956324 2.243456269374492 3.468583114681017 +3.256600410176235 3.218198587887156 3.6712552611989366 3.3246959076912384 0.34868049193896095 +1.3122644168734445 2.359735840419921 2.1432278866059593 1.5272622372429119 1.2151584523599062 +1.666520714711805 3.371958058462345 3.957527997042701 1.9309916719276647 2.6486536222144363 +2.095602099182896 4.3580955398171985 3.6357827514836796 3.867979736594464 2.2743772793465427 +2.072587958263928 1.4521061495436114 2.730909087029126 1.5250958351570003 1.3560911744212727 +4.615485680790256 1.8253033676342265 2.9025046708157536 2.350822595750429 2.844199439666127 +3.5135037252078005 2.62393635529426 4.050471856437499 1.2943315365406765 2.896142187216617 +1.5886342053103473 3.503631496685453 4.216667984144068 3.2083489021701417 2.1642370473325543 +4.54592575499421 2.8607724314529346 2.710921929067976 1.5773132281267865 2.0309629269614393 +4.330060992179185 1.0689552168204104 3.2741717715977354 4.528602497134251 3.4940531368667567 +4.383435722364155 1.9477192559697474 2.3096122352969872 2.9246492066104386 2.512167426894012 +4.546630611071642 1.3908913414862059 3.9522155826890915 3.6530318092168845 3.1698897879757095 +2.425561850651986 2.748339092314868 2.616166599160224 1.868172020009116 0.8146662127368125 +2.3129683290443226 3.6432558934084174 1.3718261186425957 2.314589175653258 1.630480660899063 +3.5653214644184223 3.418025946091669 4.671699349777471 1.2833349310920599 3.3915644477928577 +2.999608854853363 2.1412434812900734 3.704904657840465 4.526210220875672 1.1879957669979402 +3.445345103102537 3.1434766322676686 4.239618349377443 1.8465636226371958 2.4120189673503853 +1.7161221555252926 4.069552246815514 3.6011543043416063 1.4170377066953797 3.2107629166140605 +2.5846248722251466 4.108712084438633 4.136179546660397 3.5567854476587764 1.630502791285736 +2.426108885813605 1.1583498903773908 4.732419808495985 1.1952765601399244 3.757471920041493 +1.5609670460838383 3.7324426694761588 4.752622757266263 3.238950138976879 2.646981522101374 +4.753825054283212 4.718802106076071 4.60810285111433 4.205317458595106 0.4043051809314165 +1.6815181315068575 1.669925447566476 2.824592593854799 1.8257574142137702 0.998902450897718 +4.512665328637355 4.063168682452101 4.107763609756603 3.140949239715775 1.0661975713015075 +4.608768487267935 3.7755749295327927 3.2453536615458525 2.7452810802936827 0.9717428112271022 +3.8218065636434106 3.145272049470769 1.8388099786245595 1.2047376745778324 0.9272252345713727 +3.251226097473368 1.168945443281018 3.5913696892644733 2.602575698494176 2.305126087442327 +1.1770445593567196 4.679581833154687 1.8917008288019517 3.15669373551271 3.72397293335661 +1.2975468854179888 1.133368749816678 2.329255847187085 4.58561867162606 2.2623279284223474 +4.724380623110479 1.7666068227137202 4.74791376703049 1.5904935540147558 4.32639899406814 +2.3020345943174614 2.6149011139316527 2.05760328476776 2.6150032147030435 0.6392027385637176 +1.9579214986707782 3.3214086755664285 1.7112070490890274 4.5934579515097855 3.1884898535300605 +1.2520394095702727 2.6251839406356132 3.7785953945654907 1.1481371959071982 2.967294430635976 +1.4558646296468711 1.7476939746804527 2.836530656598345 1.423725920535472 1.4426300942599293 +1.8347293743707649 1.4080910533296374 3.9090496965980224 2.403241624642241 1.5650808945699837 +4.223380068533178 3.3506367360278726 2.7503983802624754 2.1103580017657793 1.082281206775143 +1.9511902691499095 3.344673385882367 4.582822120560271 4.828980086392104 1.4150579284117204 +2.551556947041876 3.5605544422754427 1.574214226144223 4.888595829311302 3.4645636603762946 +1.4016333133802692 4.008909437881616 4.741439117357308 1.5291413571098023 4.137238896883512 +1.5134744876978394 2.689694213340636 3.193165874918266 3.3874971457368885 1.1921650413467075 +2.043042494496816 2.2038649385069875 2.477493841035053 2.3656671248726746 0.19588025154431943 +3.987246600071975 3.7876564291357324 1.6526266669522847 4.410131739339712 2.764718875505564 +4.3300759531110655 1.5684417240159445 2.7949070689104367 4.970435264479216 3.5156146752772197 +3.430055727150093 3.130538201642134 4.740066914102489 1.8992996478772373 2.8565135058219666 +3.334373408871381 2.9246224739955893 1.2672834361724057 4.095074770748191 2.857323863431215 +2.8712098314216656 3.171074354143254 2.188229124831442 2.2154619237307 0.301098584059994 +4.492080425058129 1.3889323140401095 2.308324967421597 1.593852536220699 3.184336517056704 +2.3368192901079357 2.084450548598978 2.958597256239688 1.5737857299279718 1.4076196024127396 +1.4718916102156525 1.5884507800782157 4.4181919820157685 1.0098345077474549 3.410349939885895 +2.5484874138449682 3.953520991279541 1.7257338844509578 2.825626738216741 1.7843440373099666 +4.989033417552156 4.617948281652476 4.139605061181325 4.651165968298438 0.6319800153297307 +2.806761743522879 2.846169808662311 3.694916533814384 3.0213284725656897 0.6747398549476742 +2.19205961950464 3.432079931037402 4.048921795325294 1.085166419973667 3.212708561002611 +4.8803997009835065 4.901751144243618 4.180444902068864 3.3942189797396924 0.7865157881896877 +1.2506436655603959 2.205066803377558 2.6075370606712407 4.464378529428147 2.087770046268521 +4.887873647821728 4.254994382084522 4.861862604431233 2.222461947368878 2.7142166445406044 +4.15536542867339 1.0600605851892184 4.423113798545321 3.4755306323582023 3.237101470596462 +4.655575329020113 1.4175805858907435 1.8893050666126103 2.1404081602196117 3.247716539378466 +4.765377835889119 3.126929718468906 3.1575666132074347 3.9097345019505427 1.8028501785600775 +2.706686930398603 1.1161717427444189 2.6213218251621933 4.08322692067967 2.160302078520175 +3.328395231491411 4.626957625709538 2.997709128314946 2.509196994774401 1.3874106804741886 +3.775576491988986 4.993399349153272 4.284706793850155 3.8888201584743736 1.2805540751959448 +3.7220306673001406 2.0076139000672053 4.80700454283814 4.301091993354834 1.7875045061465233 +4.503420503745147 1.2006704887387256 4.746942701841566 3.2620230783720734 3.6212075264736896 +1.1319492771720023 3.530875193873528 2.2679466964387345 1.8750015792950916 2.430895188795536 +2.2253654073991966 3.859466345188402 2.905939252062186 1.4521916444701786 2.1871597978801285 +3.2276600369300996 1.1268709237623455 3.6509295545585028 1.463860694136034 3.032587195487344 +4.548180624106452 3.85418799587716 1.3112837110467281 4.81562349330303 3.5723973851659823 +1.9435588576195908 4.161175445797316 3.6380673390349147 2.258935893858599 2.611479824780411 +3.499570794896988 4.350640880615982 3.074259540357312 1.2242589532829484 2.0363748336151732 +2.5406437586602895 3.6807632907264076 1.0546759223173883 4.871789228314636 3.9837452903291775 +1.7343723644009983 1.5250148834757553 1.4708463992857816 4.258622015983871 2.7956257696400955 +1.501968699101524 1.704457656713251 4.759826914268757 3.323815752380543 1.4502171682276495 +1.791832916222286 2.6156848725691573 1.5158889603739012 4.614097744402473 3.2058742513405556 +2.7674786801540363 2.178321494601692 2.667420099272007 1.8892761615737985 0.9760195577263976 +4.553930434403069 1.9005611994137914 4.799454244850174 4.264165736390927 2.7068250930704982 +3.907893319480922 3.9339475027712387 2.68327939610716 1.3361034367089784 1.3474278778648365 +1.9397425593804973 3.7090493656407357 4.8076942400833325 4.254594827460798 1.8537436540477212 +3.5197419670092347 4.888521770253795 3.6644962788598314 1.6309558119000545 2.4512945519731417 +2.161829477665537 1.9365940383562417 1.3449116801865308 2.263841398215969 0.9461304507299793 +3.316629421144411 1.6051214732558101 3.682151965590322 4.672361534749778 1.9773149588623473 +2.001064797516535 4.003570114477165 3.870896019763406 2.0488494993974147 2.707375309563381 +3.6631096477586453 1.4459395083396216 2.7509290380288656 2.5080487435467913 2.2304336494455677 +2.552331808876455 1.671713509786663 1.7317133160347002 2.305239315869289 1.0509142025770053 +3.766868851630097 1.3388279425868763 1.8982527961700941 4.308164324789294 3.420972994888904 +4.157091344782046 1.5606214157900027 1.149713916512371 1.3566657095186372 2.6047044240735753 +2.916184237193968 4.762234601203492 2.8642153454668677 4.209735829705253 2.2843658463487837 +1.990427360485155 4.616270950355071 4.77084099554042 4.98576745328004 2.6346248197224265 +4.440959409689504 3.934658428118902 3.855080142940074 1.1469818627479818 2.7550203228141026 +2.234379296827963 4.3609507546738975 2.624703439057097 4.579575709937195 2.888569154578248 +4.18153268304358 2.994396388771461 3.697280746103529 2.77529211847606 1.5031153018489707 +3.0642538163984345 3.9705433376541697 1.9993381139898752 3.3514701222085614 1.6277658504795605 +1.5816851036417803 2.6145542292027932 1.2779885333685974 3.537315722892682 2.4842258310910403 +4.153919401714567 2.593104162967313 3.5653094232546167 2.7798605565767613 1.7473048193349592 +4.5380509760146435 1.7583982618548464 1.141133398412078 2.423365935951432 3.061141860754012 +4.313134540672706 3.566872219202907 1.4529797652866123 3.8045889678570886 2.467179218066585 +4.039025679541157 1.8786354568274075 2.796576959888261 4.254694389723111 2.606413695786867 +1.7683162534374035 2.950250105228286 4.720792801129463 1.9536797538717172 3.0089669732839006 +4.890238907504353 4.070283678851666 4.064007535585208 2.9694490656110344 1.3676201304408633 +2.0650698082449392 2.4300208925300093 1.1345540612186835 1.1627854824414676 0.3660414007528473 +1.1618953933915122 2.477182661705466 1.0733483250855893 1.3277018989134635 1.3396553059305198 +4.100071744694217 3.2744607055068853 3.580686287198621 1.907712004845488 1.865603531686989 +2.814905539055067 4.725806716023429 3.485435916885918 1.8742278343255974 2.499506910061818 +4.0764905706651735 2.7772237439508256 2.473160279644306 2.179808007558292 1.3319721628241328 +4.851895031008718 1.8952169274275197 2.3536336964494295 3.1978257726154613 3.074834250761824 +1.4723510182085842 4.544573015888039 1.0633251738689409 4.770402910794689 4.814662329866557 +2.566343609745822 3.2159610860129204 2.1091237640325735 3.2152543903333535 1.2827812860781023 +4.90972833172744 3.2626039385989087 2.644812708268561 1.2863910094866782 2.1350241867858286 +4.771157755598448 3.688166643800407 1.5562301573348076 2.4572532358097248 1.4087981885912453 +4.326131403072154 3.703563746017627 1.198988181193739 2.174067226348131 1.1568792641886028 +1.722392870749513 3.522630990873248 1.6940566043127085 4.886457148184946 3.6650073017202023 +3.2417749904418782 2.250810955017538 2.5160562595641207 4.226830295886775 1.9770577945169434 +1.3753351571874495 3.0077240786853023 3.6600850380666894 3.044682458401047 1.744538313161408 +4.095952876547902 2.3524056598248624 1.7138111295886311 1.600626829522009 1.7472170966208607 +2.6038079297796406 3.702203982783604 4.410172609000034 4.703661816548833 1.1369299908975523 +3.5102872959389635 3.6505242282414025 2.51971583856496 4.047171741639284 1.5338800256272318 +3.7642679467343454 2.747503914290084 2.9295974408889087 3.853049865561963 1.3735259292444602 +3.7342162038664775 3.8861355366605035 2.6990190329868664 3.261603178363765 0.5827352780688995 +3.5832664175177222 1.4748463765086601 4.087246811747761 3.786897703507492 2.129705297957767 +1.6160283999270204 3.421673314435429 3.802329642090055 3.9596112799923646 1.812482019472555 +3.9617391069243695 1.6850547983973718 4.424253741642454 4.367068771621259 2.277402371450723 +3.9105564973575486 2.6097147771664466 3.6723019793930542 2.2017313043288387 1.963356129526319 +4.474104407921906 4.011494211580803 3.617527045795463 4.115402242522405 0.679623355451124 +2.0095943508595537 2.8143366060594444 1.5547026279331182 1.8440462863844491 0.8551782562660292 +2.627062040426682 1.8480880906111765 4.103358070963395 1.1448767323119236 3.0593156498864538 +4.333712929267277 4.953819792788108 2.810600350583533 3.3842956833189586 0.8447833195488971 +1.657555909550315 1.5038647684735786 1.8459041562953349 2.9026987610301545 1.0679118893626443 +4.170110482208848 4.367035404236941 2.162035728381505 3.004138880183222 0.8648220297784721 +4.7896056105111775 4.449898591692861 3.2131777135618824 3.6685054835239055 0.5680882297082179 +2.926588847518349 1.939604833646139 3.304201671672573 4.466806113591023 1.525052960394428 +2.3170847302000857 1.052170241670232 3.96939918174094 1.8042736614782688 2.5075440538075187 +3.915369472212288 1.2545861489885333 1.5228823050430687 1.8295907036088708 2.6784021234490627 +1.2639058936612377 2.7214365036258257 2.3978982888092735 2.8583810061078903 1.5285417272402024 +2.9747359350019167 2.1713447898528933 4.928482087666243 1.513504356512687 3.508206127977452 +2.276542310683832 4.687695056256092 1.7228537983189378 3.853888045457194 3.2179130698259644 +2.925198594721155 1.7660038998292489 4.807095112006394 1.0665884032306288 3.91600852642867 +2.0108587710255703 2.2964819227328874 2.9928492118467114 3.423275684525149 0.5165728730524114 +2.1107322583610038 3.7080841586529942 1.965393854184926 1.46016524546766 1.675347438722135 +1.9064605372601826 2.7557193260405954 1.8482628691802798 4.306054374735018 2.6003806596530823 +3.087904466168117 1.2760028790574953 1.0255952292589687 2.6303446069199143 2.4203735097040666 +1.2076425215089879 3.9719557780571195 2.3901509872528552 3.3398223507136517 2.922892998196346 +2.9083195744930355 1.9919624746288989 1.7907907657270385 2.5639945163874693 1.1989805563505893 +1.02051460596994 3.925234581344932 4.227639498030018 4.922975699400208 2.9867859930497898 +1.228941697138922 4.465018485305479 3.9161447992880327 4.931282004714312 3.3915625491432495 +3.1038404738068825 3.632866449952595 2.3154410692479166 3.2619474187905784 1.084316721793729 +4.63323547405432 2.5105568166737715 4.592179511699599 2.6755730138485383 2.859920479681873 +3.696551804105399 1.1046320020177745 2.7890389175555366 1.1347752997837777 3.0748392441780203 +3.9674272985118986 2.4791897507373113 2.5340467489656775 2.854178800639386 1.5222797144792197 +1.671556659356591 1.0522807907708418 2.8831829649557243 4.778538645227538 1.993959818088435 +4.926993350911601 4.465768038149895 4.973508010893315 2.1114032433346015 2.8990295772231183 +4.649346016947234 4.677358786138199 3.073702603592299 2.8585842889008384 0.21693456283736953 +1.7992523441910881 3.532047294184135 1.2658662384408248 3.4740829702796776 2.806919926448646 +2.7439833659571895 4.609495164605757 2.9642129752363036 1.9924075303991993 2.1034590781643594 +1.2397498453112377 3.1037142896135834 1.832623501231891 3.9037762935631752 2.7864022212891357 +4.818672310062639 2.3114430408822066 4.605705600062722 4.377689477057887 2.5175762075030024 +4.606151369699086 1.3544517166857024 3.3615264286357243 4.778193100129178 3.546899363039174 +1.7682008521389991 2.8601522441040585 2.01824492603864 2.6995318033996063 1.2870546420718456 +1.3680708467174956 2.2918189140952228 4.8582669787861565 4.588506891887934 0.9623310222929647 +2.6740000180468897 3.5170766918403005 1.815060414323281 3.078610327451476 1.5189919884123255 +3.0444980626965257 4.922360836258183 4.121233042824384 4.932693383843614 2.0456872882666417 +3.1372038992260505 4.776237315960671 3.953029053467373 1.017980001121035 3.361687594178243 +2.5697953101531215 4.60060598229684 1.0961616233123883 3.811332682994655 3.3906261765976127 +4.709563736649411 1.915844138922154 1.9795173805079376 1.8468962893655614 2.7968656643716625 +4.503001656483264 2.0359093403681237 4.158664369720716 1.7727941827602662 3.4320432755519064 +1.9866611294114902 2.276497249060192 2.317636262572363 1.5262402393276884 0.8428004757120766 +2.6015285527074825 3.9035289993403035 4.49431658381747 4.230042347558373 1.3285503509398484 +1.626467625965533 3.7435726833632135 1.4634967451918008 2.994504679260638 2.6126842745040135 +2.806266788653663 1.3357530514551668 1.2071275059280202 1.4502326500703386 1.4904733350174186 +3.5809640179104782 4.856283819632019 3.909763465713281 3.307005527532449 1.4105877245684073 +3.308560346812957 1.0147979105225842 3.268828567184416 3.073126063696747 2.3020959111227506 +4.185137010597034 2.822059302746344 2.8368993998224035 4.791024182400028 2.38255839456739 +4.0754597998821 3.3637911554979563 2.7676962927083606 2.5516616676589687 0.7437359871754194 +3.827184631782658 4.754645146809912 1.9730589890734715 2.9536906664006466 1.3497486779071604 +2.8729418839936254 1.078071219283188 2.112496898680226 2.2186369636983674 1.7980062337044727 +3.2801880053111927 2.0142234515298596 4.308420069086772 2.8481056461534915 1.9326625326884488 +2.8931723676685945 1.6876476640251616 3.71101832055781 3.2031081308730593 1.308152350408845 +2.1376662449727184 3.6327431195037048 1.217900898989701 2.7596025789765632 2.1475797845089843 +3.44759926398989 2.2062757791581946 3.50544726546161 3.678479359764903 1.2533252170341453 +1.4513667794535312 2.1204998471698224 1.5313417585926414 3.612245310602709 2.185840491682669 +3.92427076089948 4.271096544443898 3.189287035286834 2.156501414979905 1.0894651264010096 +3.8046056216079704 3.0674710045892732 2.5034680367431696 4.75251759502855 2.366768125362298 +2.87960955195107 1.9530162514802254 4.686786398962973 4.100455445105824 1.0965213777799716 +3.17234145993001 4.006898288680316 2.949560234068407 2.1611645935296013 1.1480648006251044 +3.4384916492054143 1.7775420568499354 4.865293020947094 4.329635126323359 1.7451885079894849 +4.572149973422885 4.310687751668432 4.443268922235691 2.2806115738104342 2.1784052194443846 +1.9486523085512886 2.944495771086006 1.144425504464241 1.3134284478935054 1.0100822722733482 +3.554342386252062 4.560671662585232 4.420864756303834 1.0084721363589066 3.557684922117169 +3.532783107700099 1.3304313354126496 3.2904512271026536 1.6368224907998838 2.7540590637137696 +4.924969402703239 4.979072453446539 3.6932791572874724 4.5450403870055895 0.8534777867939219 +4.281053186516208 3.7694383452501814 3.856540845667153 1.1618773517334837 2.7428016864772546 +2.132130618569471 1.316071369154213 4.481644232020461 1.8529894810013712 2.7524132136384294 +4.211282295669937 1.0562788497281717 2.975883078815545 2.819311316856278 3.1588861107275528 +3.5784342767284563 3.3441727072526155 2.300969406233467 2.040676176227957 0.35018716212903284 +1.3829367115187141 2.596862375064106 1.0871360574327982 1.8359516626314702 1.4263030278321553 +4.210877777190412 4.765009618679179 4.3394813988467 2.5176312698568846 1.9042583832694395 +2.6026998886921753 1.0701859878345825 1.834096496650036 4.581657742430425 3.146059703126442 +1.6783565825692737 2.512557096781534 4.767182765273226 4.039491494349121 1.106989197639769 +4.9923425888315585 1.8956914356291668 4.194872661613396 2.4251267961527545 3.5666859678060723 +1.8016280991837923 1.378084331071605 4.209722744320171 2.4415248524330555 1.8182170135549578 +1.4704247837260715 1.702869370443623 3.651378919211631 4.880374712166036 1.2507842120021824 +3.1580921576818146 1.4201546840982284 4.972497147903342 2.940666807326673 2.6737167379836633 +2.0059831205229584 3.7770944477324515 3.778048493050442 4.642324360390404 1.9707379603174078 +2.1075687005878847 2.7040184244012866 1.0794323045748664 2.048598183151035 1.1379959460531484 +1.3818717065243509 2.9945806666654513 3.1074436742186315 4.265475163265052 1.9854135890898041 +3.8361292787317796 4.048472293623499 4.550934653307702 1.495567041982191 3.0627374677419326 +4.195402144127383 3.0788178657125607 3.988747734581504 1.2047413257832962 2.999575325780742 +3.9787798121208025 4.076834693543638 1.4040250284441371 4.717995797112094 3.3154210917101516 +2.6584736363608945 4.520227152700838 2.0081810959730517 3.6583612023155436 2.4878144100741646 +1.8473300901001055 4.6442675124373105 1.3603988983225128 3.2687426359300757 3.385946657190023 +2.3229105210108747 2.0053250760769785 1.7327435614933049 4.088032601229379 2.37660408472567 +4.550459225647245 1.4684173034718073 2.517924402223477 2.450134610798154 3.082787353332752 +4.134887436702892 2.588438686060429 3.7972144813606317 4.378795793383028 1.6521926524643926 +4.677882598700519 1.6465564336165972 2.281272087160621 2.889234056045293 3.0916914585276003 +3.121791536946713 3.265202945828906 1.9378588597708886 4.045638786413968 2.112653083531956 +2.120789244373604 3.242108346779818 4.1501908340576925 2.5676817055292585 1.9395081003432035 +3.1755707525731363 3.4102473435713034 3.5098367329405264 1.1461524994242964 2.375305508379023 +4.0618154004206515 2.550438982952921 2.7273710659620334 4.397772100968922 2.2526647094118726 +4.215959423264331 2.5394872596123133 4.4857609278271315 2.577518206380092 2.5400687391202 +2.975446082865486 4.048217274247135 3.690690004687998 4.245058088680228 1.2075437886915819 +4.917200097804548 2.6226573876420742 1.530839207280923 4.248930054251748 3.5570977075624906 +4.1467044328745715 1.4098529033061356 4.156602256940282 4.58883288911403 2.770772385868317 +3.108088769110137 1.7173444004506404 3.740388519552743 4.519406849554049 1.594063818495397 +1.8687531199243108 4.762336628870756 2.6457755419790447 3.625913048823486 3.0550769312032156 +4.800212332618875 1.1573109011048794 2.595871378600505 3.4234023579192416 3.7357112256515417 +3.2809893028247172 3.9328039436902396 2.555035714708856 3.4071327180895685 1.0728148159011601 +4.071322582758464 3.715050385313923 1.4888211714757547 3.759494826149886 2.298453550695149 +4.926858560823714 3.1024698495943586 2.119700207323807 3.5913147721259517 2.3439376265163103 +4.260929945706706 2.5158716939160946 4.082676641362027 3.3245243772916653 1.9026358447315974 +2.5580841009518016 4.711209345956379 1.3181001662372211 3.528507396323626 3.0857492515585703 +3.179190157596276 2.5630686672607377 3.7079557428788092 1.9175955837070173 1.893408352786828 +3.6739356191051793 1.9662361429484059 3.5675233729993105 3.2123288382096886 1.7442478775708843 +1.083967870292076 3.6773121349573685 4.639412966894661 1.5124643629022416 4.062418251126108 +2.817500414380963 4.280980545763699 1.6931290692427123 3.236537841890277 2.126942579017471 +2.0893010075805725 1.717811928311408 1.8636183237157185 1.0823615556304085 0.8650816572413008 +2.6169346100326485 4.705874407058103 2.6017779683498743 3.755343098075434 2.3862904232543647 +3.356577301306326 4.613591834875997 4.5997966958397 1.0510168496806833 3.7648272117203194 +4.566227876113239 2.0474673777544234 2.9139753384419715 1.7704899706642623 2.766173030454616 +2.984906056601938 1.148428129011493 4.663864907214025 4.264857411884404 1.8793238570975765 +3.203815145987794 3.0268886272589075 2.123531830274616 4.946935070336702 2.8289412947289323 +2.3661485171614265 2.5074679586299204 1.70258550941276 1.111256398169966 0.6079813338747826 +1.2692429110953802 2.9196979990050886 4.59843949344066 2.7481138183934855 2.4794570173620323 +3.5824804017577567 3.220707722457541 1.4860516022417016 1.5606228989920266 0.36937832880000127 +2.8719985576024127 1.88813161728907 4.5248474128505105 4.420983534926132 0.9893340494388276 +3.859360237280533 1.0211441046201526 4.716260120240068 2.978193319793283 3.328114634219947 +2.338156150811947 3.7829677857575024 3.1611884859524557 3.7219813697081032 1.549828803108596 +4.332155453479374 1.6132437164478568 3.929411587217617 2.1077682542436427 3.2727458603344495 +3.18877019931394 2.334986391618017 2.313189035676453 3.458477441244972 1.4285070256087051 +1.4140915017597857 3.519643684587765 3.9305349044947313 3.3488873251166495 2.1844138575846954 +1.750207888913704 1.522790742969958 2.3000101129826453 4.114547316609476 1.8287328458840233 +1.3129973358265437 4.317188633551993 2.915216876995473 4.970901954540765 3.6401931942373214 +4.124049737698855 2.3926387066948287 4.181129410713342 1.0372601024602925 3.58910829951646 +4.997459296503264 3.280207574679786 3.818087445653215 1.2436951992368823 3.094583803117025 +3.256055098843884 4.723493117933279 4.66049448234884 1.2573892523960515 3.7060085733847177 +2.2275913423022367 1.099920374342755 4.3703932821940725 1.967080413409569 2.654723066017221 +4.9017593618684465 1.4567753464556779 2.1279216266753047 4.5103847972720965 4.188561283507692 +3.5964075476582704 2.4953690290979913 4.665330530206312 4.614030349929868 1.1022329734905456 +4.596355304689532 2.761308567845705 2.108279637300049 1.8424683931622727 1.8541985179347034 +2.798952795656365 3.242132540069427 4.344753988157233 1.2396683427249804 3.1365530684698224 +4.130040532616485 4.191351010005652 1.4677379883141541 3.8013607516562384 2.3344280190714883 +4.753779891663054 1.1122332929234182 3.3641604991253122 1.984127313390104 3.894271847794229 +2.6592700293345555 2.3603145036471207 3.9864408056950245 3.0090644557129944 1.0220757975039063 +3.6110179411574324 4.7005199849841 4.452719686677694 1.8167821563090318 2.85222393361891 +3.5528723429964213 3.891707915826552 1.5398503806301385 4.136156111958783 2.618322553839594 +1.2246855666261536 3.8613549860547036 3.8872258995983877 4.467911143154873 2.6998557330779622 +1.7728150266300222 1.0792715077115527 1.3112654970006972 4.3997043452557545 3.1653526078534817 +3.1808855623047543 2.971787896859531 3.604025612147865 2.3252744271287322 1.2957339336771567 +4.501084237196283 4.083157828204046 4.576805612220266 4.072405806066854 0.6550432411533958 +1.2446539279719233 2.8982385273667255 1.2486252880365059 3.781455913106912 3.0248261111426245 +4.5683414225005645 2.3271026945578357 2.777695094841046 1.9144579713393992 2.4017346579132632 +3.7458168749509437 1.1877469094148845 2.3652502948015477 2.784363331719897 2.5921762452218746 +2.3140996585622706 2.913373160894638 4.2917213885248024 1.6797467393027459 2.6798396031808296 +2.1308441328521446 2.8572726460154385 2.5380712461741632 3.0479061300533186 0.8874852075143032 +4.9600624082286835 1.9538343936195286 2.623244336212332 3.85512547086798 3.248836407968457 +3.93793686918122 3.760296288920113 4.420930565648711 2.4035899221760118 2.0251467718568814 +3.872607419114749 3.0297339725121195 1.0860959652763622 2.5936597687032457 1.7271897024909355 +2.8055672383491728 2.936928479838016 1.4917762714056098 3.814127611598193 2.3260635251557034 +1.4114763654550324 1.230315137339821 1.7737497886533982 2.5404705401813725 0.7878325338521084 +1.6765571235719507 4.863695027582926 2.2021011114975666 2.7480636233923463 3.2335619807849563 +4.3267587220009975 3.574207683606415 1.1713281751379117 1.39808842984174 0.785972823004784 +1.954880986852304 1.1183727399872279 3.4132957434407043 3.381005913547503 0.8371312204116002 +4.027692852915347 1.6669136820405002 3.4534649834087694 1.252481683668356 3.2276316052754113 +2.0773591624857572 2.8369965616928337 3.095486044276987 4.163035681161732 1.310233263769029 +1.1787325264468516 2.283521322995334 4.822639978389807 1.6281519999817151 3.3801348684886614 +2.465303188084952 3.686975449837867 3.0576755867326293 1.0351578022680776 2.3628502499337283 +4.024348387487859 4.832474063848341 2.408304959708567 4.5323062524916296 2.2725423209562474 +2.432310837853906 4.696029137484766 2.996966661831632 3.3774765059650185 2.2954756111895516 +2.316683619556466 1.7022120693870133 4.606447086742116 3.2175991526543766 1.5187079607309075 +1.2714036305637224 2.2025946263616225 2.7356396047865035 2.9441173247891514 0.9542429619298155 +1.626286277037528 3.218614558044494 4.27653032177898 2.6592758107864327 2.269586197486304 +1.6036141747771553 4.099529675764593 3.3003197889343534 1.4045643108832206 3.1342436122021935 +1.3693681561819053 4.776764811673564 4.752718925198874 4.402707346178474 3.4253262725328946 +2.889469756805246 3.178749988594007 2.4948030652945574 4.830232093086884 2.353276821021864 +4.510367090002757 2.2915853681238887 1.3742950416085953 3.694401529487233 3.2102782503141847 +4.166568598694966 4.576083786249951 3.055785526578053 3.890259158973307 0.9295423239428766 +3.7607985316881387 2.9193923072428007 3.1544600025314615 2.550157084780577 1.0359278212972132 +1.339111531075556 3.373548089360365 1.3362681370884215 3.631220440800386 3.0668775955356598 +1.2848286812082348 1.1752180030086157 2.095072999792927 2.883917599498059 0.7964234446946739 +2.671444162465986 3.523533242783549 4.853938500698216 1.7010372285632154 3.2660132015389856 +3.0179425121320853 4.765470997349628 1.8399987644729356 2.3075040166044074 1.808982301576561 +1.2410840475291822 1.6779688584332235 4.988675932187302 1.4109346783225876 3.6043169696357342 +3.6268606058398745 1.043717685887772 2.934322301234676 1.7276793480546853 2.8510725282527636 +1.8603610822410444 4.778312237270358 4.2068421219862495 3.6117583139277483 2.9780133783699347 +4.414063243918646 2.253957520084169 4.563212229905287 1.7928988122272025 3.5129322752238905 +2.1866685341994843 4.936413161155253 4.494432058026966 3.8210247707918223 2.831002099605988 +1.5945454974723932 1.592707071865847 1.9632309042637237 2.831352339625343 0.868123381981518 +4.094847452057001 4.748507160055162 2.2247684532764387 3.9277831567979433 1.8241518835531978 +1.7474375324597013 3.3425682472260276 4.785854769463452 3.8699755490651366 1.8393685719692932 +3.739018370983686 1.4978487657895232 1.3856993512526015 1.5768171737260714 2.2493037192236094 +3.731787214447311 3.8300061556506697 2.0672818939358577 4.358838620023917 2.2936606526011065 +4.478771190198929 3.244950078393683 3.9328787587569183 3.6588240242788177 1.2638910290947536 +4.1525146119202105 4.596223594670872 1.9924348556418385 3.6163878406920134 1.6834788264266942 +4.0426502620016915 4.6823348756766645 3.6049758518870245 1.7941579914814563 1.9204837225387514 +1.001061546291936 4.486695201861525 2.8615355459684113 2.044990549434085 3.5799982838270545 +1.635504196331131 3.203508819791279 2.523797510069228 2.889171304882775 1.6100113381988503 +1.6455183459064235 4.374495193308908 2.945428128522112 4.119587764077623 2.9708526525943104 +4.664133546383239 1.440312007650522 4.250796123576619 1.767141576705011 4.069590301466844 +1.747947698599111 1.758896436332201 4.402975731646575 3.4342640319009368 0.9687735711104176 +1.2985397321889063 4.5794881128863345 4.648810155089013 2.5203422912836517 3.9108819624290927 +2.5100318378521425 2.853754849566669 4.739121961615364 1.518106187361858 3.239303648436191 +2.5614604221788975 4.49976375072468 3.1705796882674826 1.1238813580307885 2.818863928685692 +2.4572852132360374 2.6876908731772926 2.7994376849530322 1.01301908418539 1.8012157520135075 +1.4866067588822731 4.287382859022394 2.2189164229317444 3.5706213913368736 3.1098959925899794 +2.551051194427415 2.3348170536762622 2.0513214314873562 2.861483445240876 0.8385223265695121 +1.6968230769503791 1.2235082046418313 2.6319605535105963 4.556751747231367 1.9821322124857073 +3.153839491319248 1.477170569189362 1.016580203410606 2.0066405026702485 1.9471615419903627 +1.143627595562041 2.1726609485295234 3.746750533203071 2.549167355567138 1.5789601353030032 +2.5424112307347544 3.6448538807440314 4.027602212131571 4.272476549871623 1.1293109571075215 +1.6946247951892563 1.0381657606853882 2.8436973792468763 3.4348858990852484 0.8834264711737113 +1.1092100805460716 2.007267618565187 1.2211117761173598 3.8328059233891243 2.7617845065259066 +2.313504305233171 2.626240524005811 2.188240506343178 4.912182051293497 2.741835422274382 +2.0929304579385213 1.8101997264353775 2.623179153792385 2.1659651801275386 0.537569794771527 +3.5268925112931884 1.9153686825684693 4.499879049334209 4.19819469795733 1.6395189838526623 +4.514731662441849 2.927765270217424 3.1918730679605702 1.408262176434441 2.3874107611428 +1.0734271597410134 4.558828106012204 4.23685041170649 2.8995718746910826 3.733139917258684 +3.858933469181571 4.415077028154375 3.2837090849428088 1.6537757575715317 1.722201588044367 +1.8831429088322076 1.535148994390021 4.668158023201427 4.9998251491744234 0.48073157472750183 +1.2318612844142929 3.7137705247627295 3.612224670992495 3.004999647799884 2.5551116817310002 +3.421542256964707 4.066312770278232 3.3945160819491598 2.4451278318509915 1.1476354230604113 +3.3493616752457394 3.918208343257263 1.6693745238248439 4.597757097673619 2.9831210217704864 +1.9929313313858965 4.95964518568511 2.5204711820153336 1.5298248046010743 3.127742210984609 +3.1462912570620394 2.8307137281339156 3.901580245712789 1.0830695376523884 2.836122668047967 +2.0163068735238117 1.0679023256185602 4.25647913486984 4.313673228676897 0.950127544519037 +2.9449461450386787 4.272899543408889 3.988418523069592 4.291969175277364 1.362205280674963 +4.350415772828386 4.721262716413531 4.699063474655899 2.903993215033311 1.832977002732972 +2.8468250527337777 2.1966913085771584 4.227062365387701 1.6349088086520793 2.6724396994110524 +1.8487473574074462 2.838434323134984 3.3883223269300213 2.614202550595858 1.2564798916984847 +2.353511857908965 4.33371152653529 2.517640029327151 1.7131159537482787 2.137393205709667 +4.05777197395583 2.354020765768479 3.187817539330273 2.1503852943750927 1.9947515740744763 +3.683753097938392 3.7045866392066595 4.123800513864312 4.250285414060784 0.12818918214688788 +3.9316995756411286 3.236966798377388 4.384068057331822 3.3467364660872065 1.248483264604967 +3.589201407693541 4.8556472778769155 1.3694412126455933 1.6909751210017903 1.3066251169816598 +1.4003202530827221 2.615006580748979 1.6569334863283385 1.8443221105940952 1.2290554792699757 +1.3933309110088268 4.074480087494456 4.503302640903446 4.439639364382206 2.6819049049783596 +2.661383655465283 4.6068203706704995 3.1481565299424603 3.495228759717855 1.9761536239750508 +2.0871853214045912 3.989799231966755 3.579243851783211 1.2653022254799122 2.995707853346819 +4.394694748247323 3.6810063919196927 4.182932796297733 1.4650942977991743 2.8099817034775394 +4.5498488516479565 2.7846865303912125 4.392764450505761 4.374995247461358 1.7652517568214823 +3.924980656427648 2.7309601662196257 2.1722857604022354 1.942511126364315 1.2159281695412216 +1.185988001680696 2.4614235199358423 4.7152050058224475 4.908719418016171 1.290032398412325 +2.4187933520032923 4.060659682978017 3.569818147506984 4.080928443540805 1.7195809906777242 +3.6519839083268386 4.688404042097192 4.5985467365815955 1.4855225213762506 3.2810191188317406 +2.2439419956908457 1.9054411382530154 2.4962504955838827 1.4104291341195299 1.1373613583634918 +1.4975134900351406 1.8003873155738646 1.1153258741251824 4.299809918773096 3.198854667660535 +3.7406131422760134 1.8453873660172184 4.021043469138222 3.680827612194163 1.9255200783975046 +4.3088004965156825 3.6540417609718205 1.6857165996442016 4.763779122026294 3.146931504412546 +1.6224734434213035 4.681523237326834 2.3699683694438507 4.338143786226148 3.6375129020829107 +1.3278484883725885 4.524627459091104 2.748653879506836 4.496938501388838 3.6436101474687477 +4.553708219300528 2.9838110848169164 3.5009598032812734 1.5129604941993309 2.533124210489911 +4.155045938459919 1.8098022924430266 3.702055858102792 2.834280896127108 2.5006401468053148 +4.9308933923506935 4.673749245951003 2.1226506507237466 3.3928032716808896 1.295920828041561 +2.005037813861223 2.6827469840734857 3.8833815954340927 4.459642909758536 0.8895880067630904 +3.5294704089840785 2.215156534869902 1.3325319356483023 2.4559102226968395 1.7289880669053563 +2.628148790099733 3.84379243901386 1.8951219007695488 4.987899717747677 3.3231106069971927 +4.572017076325645 4.6938014614650765 4.419151178933555 3.58764477805086 0.8403774932568597 +3.4975409493345544 2.097118998619072 2.022680817604916 3.2715262189270478 1.8763785536104365 +3.880721511101848 4.846414702934069 1.427043572665899 1.8340373710442734 1.0479538599907732 +3.705645689591965 2.3764611595038123 4.5129667197160845 2.1025863748155547 2.7525742355308895 +1.210178307513714 1.223275413700772 3.326223810159384 4.912420257964461 1.5862505177997326 +4.446616164117238 1.0058957072715917 3.91885389973068 4.584941031548424 3.504601165515029 +1.4824617861435998 3.136381179856814 4.6474908470220875 1.1685455875203679 3.8520785920733984 +3.626573659450438 1.3859076674027104 4.506176020445315 1.2249346291959662 3.973302046858153 +1.0532918144082482 2.5017832482405566 2.619835845243266 3.814360085044317 1.8775024882427869 +2.351900297968229 3.247368664126493 3.09750925408988 1.2917818776536332 2.0155681464047506 +1.3603797324487878 1.8534528503588934 3.2465678901555592 2.2068308483201156 1.1507276896687209 +4.730831992470045 2.645876101621923 2.8983979060346376 2.8284404768109765 2.08612921667999 +3.1553552743050406 4.655186183092027 2.085547212212337 2.354935711465133 1.5238316568710837 +2.683946181179727 3.4256366600496495 1.7814811428836306 4.246081710640334 2.5737833485033197 +2.493952222247745 3.935778648231681 1.4158379797742544 4.929380140232716 3.797873346490734 +1.1929854745763167 1.8062021647236524 4.914759240262507 3.390994747418473 1.6425263890505655 +3.2887418042297543 1.7902380194189695 2.4810766077311204 1.4715829293737572 1.8068179431629867 +1.8713788809390874 4.951135789947953 3.10454579388215 3.7559961714088406 3.147902510079928 +2.1201779071867395 3.8442406951325867 3.1435214359280654 4.380244693631802 2.1217626900586573 +4.010539659099063 3.3460395171189137 3.105209594680799 4.325231596037594 1.3892494817297136 +1.6612901439148096 3.024165990160534 2.7195839434749423 3.0887819621947217 1.411997786579926 +4.63506673029196 2.957760456533025 3.752281744964424 2.9324065506046924 1.8669632214688892 +4.3008433404307045 3.2096593290041047 1.7690417919316719 3.5900298034653293 2.1228942236819877 +4.448661063875233 1.128926227753717 1.5486028459240107 3.9447834900536187 4.094181366459006 +4.891047331981926 1.0053115853047911 1.7848279594937329 4.4179593579394725 4.693860165629705 +4.821863061213968 1.9539751166981327 1.7702012249754229 3.698478056776046 3.4558693265744744 +2.042915527391838 1.242250616779872 1.7046432923914319 1.4215034683746959 0.8492540603550246 +1.7050680461974443 2.3325886161370595 2.3295847257288886 4.7403600539451025 2.491108136720149 +2.9249586081320342 4.407703031054217 2.5256657583092013 2.9838220953669063 1.5519143832354185 +3.6035871881543624 4.210549600255904 4.1740085875848525 3.0576647607103555 1.2706797037432047 +1.4721092589016265 1.6291688655725047 4.810625140697464 2.2807420059729826 2.5347537149417456 +2.5160648606569125 2.874280415626708 3.9597873484071515 2.8089888666294462 1.2052616020948275 +2.3376423318964457 2.1541115248561704 2.9923518296466702 3.176678764324943 0.2601153128532476 +1.6136192006802674 1.7199020551134012 1.9642215029050742 4.084682253723333 2.123122662708678 +2.4001427649104734 2.275956738476221 3.714905737496209 2.8302941099400862 0.8932860128587155 +3.054800614903664 1.3157576402962095 4.416529089638296 2.925163254065755 2.290947952932263 +4.906847889484893 2.9355775845111225 4.6143163707096235 4.588797655911968 1.9714354719534457 +4.02902145728393 3.8512005574257198 3.573332209605087 4.587258229203224 1.0294009158945339 +1.7757197370492666 2.605346664291842 3.419120713910792 2.0331988560222873 1.6152585658584455 +4.0254110490227175 2.4288355183616743 4.979723216946128 2.935605881771533 2.5937365141947013 +3.3600752903975564 3.7264286608119406 2.895285208024914 4.553241919527933 1.6979503082339844 +1.934352306888214 1.2780181786447384 4.8028471296072235 3.3702343057877697 1.5758026497214277 +1.9976123100273595 4.9821280125301595 2.9943993157738493 4.952043175224559 3.5692721189243684 +4.742467698702494 3.902185334680737 2.2629797416498234 2.4257035987026834 0.8558933957801936 +2.5361519605677447 4.178212894750458 2.0021359369930223 2.5545447388099793 1.7324894215820918 +2.8544945376146775 3.364202010513525 4.0742599605683765 4.869284148505428 0.9443861325400206 +1.096137462805749 3.965698039199496 2.4775850588816293 3.1806375594399934 2.9544306930667 +2.8723617145315803 1.3468074541016195 1.6792046001687355 2.116511170442995 1.5869949079694743 +2.9280792374635647 2.166191993952515 2.581280955254166 4.0475830122821925 1.6524266683485496 +1.6703766448621042 2.7299485097639344 3.7471707347762635 1.925517224861824 2.107395085662662 +3.7568490696931436 2.30187116935373 2.1695388645585387 1.7170235867971861 1.5237226673786548 +4.087028642727433 4.228382716212853 1.4839029611990409 4.499323591428997 3.018731944261919 +1.0363469218565706 4.3789849338496225 4.778903072647437 3.7122143450772547 3.508711119591659 +1.0175664116197543 4.056363630230592 3.3577146616218987 3.3327863599699383 3.038899464618765 +2.540098153617284 1.805825282151381 2.673285729536612 1.599115834027939 1.3011524177389429 +4.110531398840193 1.2652122579267626 3.81349638092523 3.057424689825212 2.9440593431062463 +1.7180026865394362 3.6527544849862217 1.7163102040936642 1.2295300977701333 1.99504871958191 +4.328753669605991 4.056872984303547 3.189292935308711 4.634495065973509 1.4705537411188336 +1.47304292567352 3.366619603401783 2.2854852055979173 4.773307067946909 3.1264820890608043 +2.572462086591943 4.732952437147913 3.9536497504588493 2.0925962575521737 2.8515326858210117 +1.0581249195544835 3.594623619958041 4.041161654193052 2.4048304511095284 3.018510470966385 +3.814638205575816 4.878818456862724 4.957293036903147 4.633962975579896 1.1122148784224948 +1.018793846948816 3.848844402227825 4.837972555065653 3.35983713706528 3.1928154439901726 +3.963670697658773 2.7009630212879294 1.5444709673576629 2.220921499135757 1.4324859503355423 +3.006222382329143 4.596267933997435 2.470195699444131 2.4833709022465804 1.5901001359502516 +2.1556719694021527 4.199643925401448 1.0293278547438005 3.947916123622318 3.563141709242966 +4.353098649192379 2.8866046698212218 1.8242538923159803 4.740572475347855 3.264279195974035 +2.943746677679616 3.2202905621343447 1.1215678285976507 2.5924057037190034 1.496609693581064 +1.2392133362841187 4.288417648580481 3.804706708333168 4.759750420845647 3.195270791488 +4.246602131526066 3.7212860417836824 1.0365298452438916 4.735057942928037 3.7356481477116303 +1.6259959564530453 1.1328635797777142 1.0323794680100384 1.859728031333162 0.9631641532772578 +1.8909359988829104 4.620837503613016 2.8385968488265267 3.5253619087010972 2.8149615402332264 +1.991325497064266 4.416500521821222 4.475302684174341 2.7408386923295733 2.9815833444180275 +4.003899447446722 1.5413006728757295 1.1006055086746103 4.2626721089215405 4.007874487669959 +4.266386252876057 4.307795461635552 4.903037199972821 2.8087399391679244 2.0947065997855114 +4.786756755216578 3.2251019350424617 2.746844049907197 1.5548285543009994 1.9646034508618626 +1.5160251182338174 1.726631391392727 2.24361457784472 4.179257131287736 1.947066279558373 +2.2170774174381944 2.12274018663949 1.7521226255842435 3.235831956856973 1.4867053819841165 +2.6248386975238707 2.080707829039911 3.7674866290223963 3.7590526796699035 0.5441962270530629 +4.801123163809779 2.474980946240373 3.1817642788279845 2.6564652289912303 2.384717322476211 +3.3382087975910304 2.5074788591689514 3.424777924107407 4.244885563310266 1.167342610577391 +3.4065350876288236 2.5895249121111057 3.1216152807135065 4.075754731759217 1.2561400076987046 +4.492117955435324 3.646835434522191 1.3759862845653812 1.4913862028829858 0.8531234853812028 +1.194699390190857 1.7309219997953007 2.3379008430633625 3.428175360717176 1.2150033789649541 +4.291014264849346 2.9606834533251574 4.093211149756991 2.3745523703121827 2.1733771113760545 +2.336934557966902 2.396088100974507 4.4561629927776725 3.7024204565843797 0.7560601513883997 +2.3430084576582146 4.432997109370942 4.65387115346331 4.2713875692338945 2.124699097870794 +1.2851563493000926 3.516826631704445 2.899818507584541 3.795129508472503 2.4045652492036327 +3.808336088872214 2.825980197239473 3.238887927119437 1.2564999905485505 2.21243870624416 +3.7009421152747017 3.630457476256107 2.7392435751457906 4.517934006753 1.7800864405496222 +4.0761351359590865 2.1427184249438636 1.5096686775289956 2.3398452227532074 2.1041134177304537 +2.9687468559086003 1.2959932044005713 4.68511879520233 4.866199457494535 1.6825263697456954 +4.611299499137862 1.2785558116533462 3.6823903036715246 4.941706830629739 3.56273190143996 +3.446670342091925 3.4533304415808854 1.9275663779945855 4.889346708480885 2.961787818696798 +2.9022977608532674 3.9835463520709435 1.5884043440805726 2.606127202377637 1.4848765377332072 +3.8567052132142057 2.7999193213164886 4.14928541692578 2.8079013998746594 1.7076614133118586 +1.4131832949424155 4.551519626943163 4.715927195569295 1.1991656677151208 4.7134665137827305 +1.0843010844836165 3.9661051308379256 2.677811760667328 2.2709911438318846 2.910377565860904 +2.586919436377672 2.214875225637857 2.2360936953760318 3.225930675393432 1.0574469924090657 +4.369757013214079 1.3786802428223615 3.8728293794483695 3.750282353601419 2.993586147068575 +1.499000558340415 1.1500853597055722 1.0013525142295996 2.739345699782296 1.7726709025834435 +2.1421849572087064 4.432442839445481 1.0033805683381352 2.2159589318646202 2.591452769170267 +3.3499033291639515 3.741133409379049 3.5382405238750407 4.165983368172704 0.7396769931747448 +2.9692830492278124 3.5708217086184555 4.384686641524668 3.442667030561621 1.1176983967871044 +1.2675526825937533 4.389914885441732 2.8996357740373853 2.3656167255916136 3.167699807411777 +2.604952726729006 1.8446792677650965 4.303565133897198 3.1132117290171464 1.4124294534292603 +1.2360060608421026 2.196790925104205 4.606554887700544 1.4028414844900858 3.34468042199931 +2.9001466437931445 4.191519552945949 2.9779782333346474 2.5201392302964623 1.3701315787897077 +2.211655770091404 1.3044359311283595 2.334066032773985 1.9429166580591755 0.9879502363722166 +3.680642883639798 3.8446300400442337 2.6942813654150086 1.994073567801789 0.7191541888246 +3.2219487913712364 1.3286606986128793 3.395729538342107 3.1902327599290605 1.9044077105805675 +1.2901868919811128 2.3879881935994454 3.174796654925603 1.4024003803981535 2.0848396225594157 +2.9937648392248613 2.0522481628228735 4.357276334761276 4.226530140245506 0.9505515342807043 +1.0694242442432542 1.0230828321604148 2.8383703858972966 1.1126178813633167 1.7263745924274765 +3.3883024579033343 1.0403480598500225 4.313896352536732 4.216601609849116 2.3499693875224286 +3.5646002787793822 2.1665044848103188 4.894673252321177 3.33187300038035 2.0969064062519096 +3.9114947782391516 2.537356978966017 3.5880396736241402 2.2456021386109573 1.9210396213518044 +1.1648858709872059 3.216321441326063 2.806959226402201 3.546195897995874 2.180563861912878 +2.473444591721106 3.206743811214866 2.1939979081183987 1.3847252151011373 1.0920851784423995 +2.9970874728528805 1.8641852912471433 2.2780881652187044 3.841513775613284 1.9307426012611582 +2.784407787909873 3.3473990579328956 3.552364442114262 2.794949323414325 0.943735573218142 +4.113073311042523 3.2980671648143516 1.3009675695125873 3.200150190188176 2.0666711506831206 +1.5694419866928078 2.6264063740909642 4.116659260384242 3.1726846354697855 1.417131542486564 +2.9757644197819353 3.5894531697086536 4.877785239404689 3.5126090742981346 1.496769803129946 +1.5979037029727867 3.6447470055248874 3.2849624360688345 2.90706481677051 2.0814355901333417 +4.017039528969305 1.7088335288092273 2.5426162385866315 3.369031607399389 2.451688663143204 +4.661511483125535 3.6312634471546605 1.9113857338604885 1.090860599051846 1.3170696688006238 +4.530879358833932 1.1211584200959592 4.395007483668584 3.880733678209254 3.448285722942602 +3.7468061196728866 3.891626669462141 2.266452383518545 3.409738743318728 1.1524220980814344 +3.361601044114586 3.423810400227352 2.8581226282367918 2.743529773582504 0.13038990116486662 +2.522913533331955 3.0853457512265403 3.089307188192819 1.0470029603593378 2.1183334389921558 +4.487377723273323 2.350574413463613 1.9855074571120555 1.3084890528198394 2.2414910895571527 +1.616014677813784 2.1886098696384306 1.5476061863475943 1.4422375671356948 0.5822094121665555 +4.083496435042299 1.7112361348436185 3.1557356318284135 1.8455142942658647 2.710036694456909 +4.17914931579422 4.04289210938081 3.126595132893803 3.8004098261629355 0.6874534654541801 +3.7090643815759266 1.412672617970041 1.6916595359183288 2.860048916904314 2.5765381575978576 +2.1065092639454077 4.220820550956796 1.3720992823413916 2.5782917164268344 2.434175919367522 +4.49524766082909 3.596683486064744 3.646270363181945 3.849285338190568 0.9212126010035262 +1.6283689204194354 1.0276995176077017 1.1953138639041598 3.7176681677994017 2.5928893084458995 +3.0965968201456713 3.53780893215213 3.4289868651433073 3.4069154051532915 0.44176382505507505 +1.3893670381125571 2.371031062791461 4.6188419012258235 1.324291075142166 3.437692453230407 +1.3422418129902578 3.0311213912903265 4.20379008258336 1.739898190170004 2.987152069697706 +3.596373203646584 4.391178571518536 3.339730565848257 1.5372740325843153 1.9699150050456327 +3.866596804295757 4.617799025703972 3.8839955531776593 2.173713610940707 1.8679853049182262 +2.5749715986533324 1.7585016784078822 2.0868653335820926 2.8420652398427726 1.1121825520487865 +1.0334137896502078 4.303432812162271 2.1749822679410764 1.558460061149904 3.3276303939977177 +1.5676176319715989 1.121784095657599 4.101359972503307 2.3856903758079064 1.7726504751719117 +3.5079624860960283 2.0195501833123886 1.863402458985718 2.094527757250646 1.506250339942119 +4.337550244680699 4.8314018977141 4.172883909469684 2.0189503002654243 2.2098233974830457 +2.649138008692648 2.1329078129932384 2.969325428388711 3.0017997812934474 0.5172506148362052 +4.39296822682526 1.153902635917471 3.1509298499994225 4.950477496406865 3.705390348383472 +3.6156683228467386 4.726771967245506 2.850094381772966 4.7292473314755945 2.183063699705602 +1.0974511943342327 3.550767859684611 4.813585805157199 4.200472405077678 2.5287686137412755 +3.177746776378871 2.128051073365774 3.90240095300799 1.627257653512033 2.5056213006289494 +2.2415281576704644 4.187604835226106 3.8463696519073123 2.924766367395907 2.153268921651036 +1.326791176918904 2.7050917984387524 3.836040003857132 4.458904158489579 1.5125053250841773 +1.6989762237347446 2.0414925346944375 3.174587489093357 1.4238372429501926 1.783940539267996 +3.259510044178608 2.5787119985419102 1.7304126843265433 3.6978373165125604 2.081885122256997 +4.1892645249959415 2.2498678112005575 4.639095694479349 1.0058250129179918 4.118484607106558 +2.53931674874162 2.6396051938477423 2.287476807832776 2.419734653142912 0.16598165521491662 +3.469732156713078 3.5419319057721084 2.2136303637712604 3.943447814698697 1.7313235449497246 +1.610153745025098 2.593809456736372 1.8580315790081792 2.5920407438392994 1.2273337008484253 +2.0903899197968214 1.9392652672029724 4.945221740565677 1.2687874213181423 3.679539096729738 +2.7098382736643822 3.997039980260162 2.753496008405033 1.751674368319232 1.6311145980608757 +2.6622759952246295 4.969825172852115 4.857669042954612 4.672866768541606 2.3149373831267024 +1.3777044662198965 1.5044693363764066 4.196949735242282 3.462250795014208 0.7455547364734882 +3.061530487823293 1.2442850554448404 2.4093215508676016 3.1806871521142868 1.9741797922902082 +2.1686270994616623 3.1364596811836907 1.997322386492037 1.39552517499168 1.139675300255442 +2.690192499305342 4.473854523080675 2.512884347887546 4.570433891890962 2.7230424787518435 +3.412062101714757 2.5893995878782827 2.449376330556438 1.8043406059268037 1.045392126295308 +4.044501026278616 3.290451266285499 4.232830058743668 2.491045555189467 1.8980000783369926 +1.5821058119690132 2.520061757813008 2.345856736619972 4.500426835820845 2.3498795008924525 +3.238980672943055 2.095142275336499 3.327064915117129 1.8761419526216998 1.847577798885786 +2.6884807237463577 1.439489867612128 2.363765122788317 4.628835826192505 2.5866046180517923 +1.6517870705326048 4.860293146060151 3.9220968694948923 2.833630800140172 3.3881070852075634 +1.4153409484034807 3.8774421086698005 3.074128009352224 2.7078944097810753 2.4891904653600934 +1.3336025814355126 2.54433117975328 4.04050268330538 1.447458194853506 2.8617727823632593 +1.40572192968248 2.5023769946072747 3.2250004234082943 2.344232944331062 1.40655738724919 +1.2814600852553748 1.0650992622237072 1.7327634071506353 2.284790567504056 0.5929131399377161 +4.408240686501184 4.471698304464596 1.863980237556747 3.1162196358271874 1.2538462345352819 +3.7488804125014004 4.505674169669433 3.2026567685680787 3.255388059518924 0.7586286179243769 +2.406590772752636 4.339750820235329 3.292174021166961 2.578724750386778 2.0606109849168672 +1.315754900682152 3.0100637603310822 2.679712172627021 3.274472525584534 1.7956676722976899 +3.235373293320222 3.904251227631883 4.9731943407559935 3.2839666126916898 1.8168346122501973 +4.384104489029357 3.3715952396385225 1.0489982342285118 2.2660537158843135 1.5831610864123797 +2.9328880666222625 3.3062912002894946 1.4848002189744078 2.0374990541049045 0.6670126704846893 +3.2686806168130813 4.660881247669117 2.184050848693171 2.4415123190477335 1.4158068389695952 +4.091743038287131 4.317469012874691 3.9938160271524943 3.956223334659528 0.22883493206321096 +3.2171892406580302 3.272127451179366 4.852492500677624 2.740276082890617 2.112930761417482 +1.1626549782101345 3.9586715573282807 2.5654246056858265 2.5284868238224845 2.7962605583944646 +4.5147434977915974 2.1291459996071778 2.11119998653514 4.325064009358236 3.2545766752212533 +4.742833914114323 1.3605553708288123 4.1479823859997715 3.041716865878733 3.5585996607342936 +1.7455741753662002 3.4180744210560614 2.3485872736290787 2.024347283019194 1.7036398220701887 +3.817999345638606 4.470344900125381 2.808158131263577 4.586176661783628 1.8939125157544472 +4.870029813097892 3.4508420458313913 4.296430273620773 2.8044123961923106 2.059177327314238 +1.4119830469643944 1.0475311760904602 2.9720608978400085 2.855850808378244 0.38253098054435025 +3.8868339427327756 4.431262436063411 2.460018379067796 2.400695903840385 0.5476509293495018 +2.9748219856059404 1.3340038352899866 1.3934434295589 2.268206705667407 1.8594340514345638 +3.6366693287676606 3.454203993581576 2.4524444729735113 1.9869833437649764 0.49994765860903345 +1.2884383213550303 2.090672120499431 1.653200658576507 4.853875223871077 3.2996813090680805 +1.8135661107521468 4.274456078092732 2.301804555799143 2.330976443024705 2.461062865991409 +4.0866800869182605 1.1926094540702503 2.6243704112636466 1.3768894623484464 3.151484340087961 +3.9476267427996987 2.4387008186128933 3.426896915153448 4.034322214982162 1.6265985797224245 +1.299017288618951 2.413493570908361 4.415328465922615 3.6378804553666093 1.358853484708015 +1.3132596650327675 3.0068583120698076 3.9379870215737123 2.7073684237380493 2.093489553493092 +3.67708810127906 3.9606990640582054 4.429207545545266 2.6668452958196536 1.7850366599782859 +3.3305435341588705 3.198991698705581 2.3806044607047543 1.4344041861173213 0.9553014419754965 +4.422219129474794 3.000669723325433 3.968824314721119 1.3010974449478852 3.022841273675099 +3.6061105013451504 4.163543129940798 1.9169342588993739 1.8321320836411457 0.5638462062935077 +3.4168096705100055 2.035321504219812 3.7645758533325893 4.109642517351704 1.4239313734225825 +1.7301381687025672 3.8396769575190994 2.457381255276103 2.5035315547299257 2.1100435425983983 +2.450734535741414 3.7290658374592183 2.7737392645333574 3.98025252744921 1.7577841649484143 +4.344516959641191 1.696181739076227 4.270946046919858 2.624699154663539 3.1183021455190105 +2.866422582179891 1.1730417852529325 2.1649904154534965 2.066950708176446 1.6962164683801273 +2.3086189428610853 3.498609572993492 1.1741929224310512 3.7064373386967486 2.7979169901038388 +3.3740931302893737 1.7347190505479788 1.7991304230116927 3.7536416729090547 2.551011877530815 +1.696282290631331 2.6110148660220225 2.6168509177573114 2.200392950561271 1.005073590799174 +1.232089100310998 1.1782342692973353 3.730181467340426 4.239660604766282 0.5123176107608489 +1.6540690019294106 1.14257442705386 3.424583115374579 3.6598270579372327 0.5629977021618662 +3.62492971780698 4.121291256249229 3.2306361544086926 1.1594715684019175 2.1298116158884506 +1.8463267598081345 1.9553425137525675 2.160115596616141 4.266822716300866 2.1095258525882974 +1.181718908611813 3.6488606003214263 2.910063133433157 4.387237740378865 2.875557849596662 +4.554830148496517 3.468865827104239 2.9287176880618007 3.706724508796782 1.3358941277089083 +3.3976412110116847 4.2011455589400395 1.0246595427237217 1.0051488704143177 0.8037411918483061 +3.9007823883872192 3.280038352862868 1.9249522767395741 2.6711944268048606 0.9706701314932475 +4.890685089931963 1.2326440236298928 3.677905080469116 1.3694499804466225 4.325532266851358 +2.7888234419089253 1.1997220999077194 2.8461399552818847 2.010729439404013 1.7953144028802768 +4.00379133018023 1.6652184662588057 2.7542907330189066 1.6335721027336634 2.5932476334006527 +1.9055162276973423 2.0252762125341786 2.002736976963786 1.652916332527211 0.3697525351395713 +4.347955964015714 3.6971617912854464 4.863166776713296 4.374840503059016 0.813631123298973 +2.190677926996779 4.374891760362955 3.2471445079067944 1.8135415711483551 2.6126629040407385 +2.423209639196153 2.7930740468798954 1.0515351939161044 3.325155486591541 2.303507958600704 +4.668400444258966 3.7221962730680556 3.781264072788667 4.897714713385874 1.463476807629349 +4.351443840226245 1.609364823582053 2.039636283206527 4.845752341437525 3.9234276679686926 +3.4871704680762794 2.9443551697743175 3.555765019800742 2.1606978941754473 1.4969504778285319 +4.613921048288292 4.892764041059144 1.8070690948606805 3.4391208716844286 1.6557011858578103 +4.44067438488449 3.93424256533621 1.7646175817055627 3.543325392732112 1.8493984602723774 +3.497955044673679 3.5298101139100746 1.76245780331694 4.336664676088794 2.574403963884049 +4.635022222750804 3.5444319420871335 2.727590142399345 1.6496877170764042 1.533382143757759 +1.9177020498385722 1.2017841316913884 1.6387549250913271 1.7757507662047858 0.7289076251532711 +1.8206373543154748 2.8466014655428395 4.0344964683364335 3.348019422519554 1.2344444466884796 +2.290508763392898 1.2919201286895095 1.8800022204002014 4.699072258147217 2.9907081333827503 +1.1061327341800786 1.380366544956253 4.836676481587544 4.128775792998173 0.7591624120556338 +1.575523815344889 3.4259178409111835 2.976769444300042 4.972099479560969 2.721268086658462 +4.342106465304983 1.9346133036222413 2.41945487769066 1.4448235245137466 2.5972927440210944 +2.0785673662354163 3.944061514830393 4.527250608644989 3.161126827788199 2.3122202756365033 +1.0817146814841498 2.4748052277346693 1.54029631334246 4.485811365835181 3.258337028994049 +4.800922179704176 2.2603469414861976 1.9581374511728162 4.583747177241978 3.6535392395149278 +3.1418544753828863 2.0543126703580614 4.896838691744991 1.2836260765653837 3.7733344113886473 +4.532798444276656 1.938676119218218 3.665911114130196 1.7460058297174599 3.227306452520824 +4.766146989180351 4.9106039991188135 3.4393642338722294 3.174831766823417 0.3014054641895069 +4.870191797355578 2.8704645544267415 4.571733114721756 2.761612725461252 2.697303258762048 +1.460836530616993 1.1898431616404328 1.5056097583379735 2.0485222872719984 0.6067877883599871 +2.217096737954028 2.459128519565908 2.922018099112398 4.12263202039934 1.2247665782908306 +1.9784587833523979 4.787298754653526 4.892228195279165 2.873362859467099 3.4591038186967573 +4.709375259620751 2.0382590126597084 3.526951670236717 3.027689601578326 2.7173745818308346 +3.5974113646736066 3.805730794502408 4.087118424374637 4.782669447457143 0.7260772758841288 +2.9227754159989408 4.999235050985741 4.260429591021324 1.7751779501694624 3.238542933803161 +2.44418297033397 2.1847559099358485 4.080937053901305 2.746208001790323 1.3597073369721484 +4.896631315776579 2.271713983764934 2.364681910128056 4.582826150122061 3.4366196864526217 +4.442975372662373 3.6978063493030118 1.7976214212375914 4.822126286787908 3.11494888483132 +3.6623017733905647 3.897988837573563 1.2501755351953148 2.0873897756879414 0.8697563318003764 +1.9390044819152963 2.8827969162206384 4.648370466100243 1.642782834485888 3.1502858870847246 +2.172838595442368 1.5395690876612287 4.2289945255865256 3.6501328190704627 0.8579691980228981 +1.0475478585322038 3.871045488681261 4.406232214299978 3.083507662415112 3.117970350663451 +2.3604927841897596 3.7252398977087067 3.949691946403762 4.861836440103332 1.6415060954028595 +3.506726117791512 1.0282979776605323 4.83454358515022 2.482354159284285 3.4169286122113562 +3.438068849341874 2.983832007367798 1.063175246269061 1.4526249357559404 0.5983328248124188 +1.5043482825007666 4.915280277378917 4.647768981888967 4.85575591504044 3.417267276354777 +1.366008098004912 4.204948677932733 4.617642116824216 3.2406951415477625 3.1552442994297425 +3.615646259849221 2.451724354943311 1.7279553902670992 2.5223089263060112 1.40915284512977 +4.0397990146795255 1.1849997475433942 3.463047986187069 1.2869012515349856 3.5896369546763243 +1.3717170438772515 4.58713190286457 2.7389593478087395 2.809782384910486 3.216194741924182 +2.3551268838800223 3.56985691057 1.245599373112344 2.7725023920437213 1.9511539834067397 +1.8560355604294165 1.482185061140481 1.6793772448627164 4.643746201145877 2.987849980302542 +4.3846596640298845 1.7685794736244183 1.1343021566952176 3.7854480511972213 3.724573816769743 +3.5285813571850406 2.214401019624071 1.8083568023449037 1.9753879006442783 1.3247525608320068 +2.374829441178241 2.0374971575160927 2.306568080043569 3.3099118350117065 1.058532833800767 +2.787049171327819 2.3535249780839878 1.1238066471370063 4.509512647291702 3.4133485531968786 +2.045764657730526 4.214570831695936 4.572932065913028 2.207817700446613 3.208969644911912 +2.7214605276031314 3.0489093381503114 3.295189046349495 4.434485577929471 1.1854194660114732 +1.6121551371665181 4.532421365487975 1.8687146142923976 3.969870126735596 3.59761161491138 +1.5194771665896614 4.805212422345464 3.658126797501149 3.220542270993669 3.3147452977197855 +4.384647792049945 4.944404801352448 4.050695738425443 1.310949272907406 2.796343792308424 +1.8100561231919712 3.793219132430141 4.848730643165135 1.334535634544039 4.035158247185359 +2.722838718969178 2.0069415301694358 4.350905844884002 4.657089307363175 0.7786251329279762 +2.8663913100766 1.09143217998452 2.0591590595601335 2.8607666083020766 1.947576590457305 +1.208049109162944 1.6050196287149343 1.2096365799815367 4.051095973792963 2.8690550848794403 +2.010557918311686 3.439051004609973 2.779711379001423 3.8792340767730416 1.8026487901188581 +1.5412927087846033 2.1080107993515282 4.891672719915173 4.232159396544976 0.8695557589244195 +1.6277427851159367 4.696434376191821 3.890821143744837 2.976813665536782 3.201917823954901 +3.2078832491386966 3.3097345518979906 1.3280386944499085 4.957962036577975 3.6313519737970807 +1.7167744198033552 2.64978502882319 1.3829135289288033 3.0808598669476406 1.9374030461767997 +4.358579132275041 2.2833771601115185 2.9126300868749397 4.184730015066197 2.434070962929302 +1.5328900686662261 2.406759905624809 4.0314582944119115 3.927060304255639 0.8800837643626256 +1.2645511843606299 4.255177421581693 2.9842581832750037 1.597557939054576 3.296480374289525 +1.1210420219344481 1.2305834676727239 3.7289440108333043 4.241244182814562 0.5238805155247307 +3.609710473222153 2.0228676650929587 3.3445004633456636 3.6718815858736678 1.6202618606568024 +1.2015884369031804 2.9702288173490103 4.5556356355427905 3.4633544310504436 2.0787416927148072 +4.574083354355385 1.800844727988609 3.739890876749076 1.592099214960697 3.5076860608127927 +3.099774236584901 2.4810633029455778 1.7034218446593283 3.7371144074897207 2.125725443117359 +2.0304253215267725 2.373382162336864 4.8659597338897855 1.0939260451471942 3.787592578890644 +1.2887570070071113 2.402571385571581 3.2808871512738196 1.530233872907548 2.0749384017246224 +2.2074658118842634 3.8767749926008386 3.3107198350134124 1.9177085289806937 2.174183442021308 +1.026684174216037 3.577391672766472 2.1252891141306147 1.1319063683674675 2.7373194959195657 +2.163827525887714 4.130372075540162 3.5356709006073617 4.889200675987811 2.387329118200756 +2.6962965898308977 1.35896582905841 1.8155807789503529 3.0363092951287127 1.810699222377737 +2.994595428992451 1.6569762327469855 2.675000082616017 3.719617658238998 1.6971891448700698 +3.954805950525621 3.1394233798978806 3.411971051519017 3.6787682324381494 0.8579216002816913 +3.818289536043657 3.0093757132218975 4.536602426001702 3.7676255505187015 1.1160945335318648 +2.2145364750912213 1.4565394219768089 4.3834577940863255 1.3048790132549861 3.1705215410583647 +3.799219351480619 3.67236660778429 4.896580963850683 3.391666664274905 1.5102511935605085 +3.1848945304436262 2.4585815975525875 3.7982568466763342 1.301093218568445 2.6006454318168286 +4.888012402041095 2.28907406911274 3.2785267961842193 4.598929817694361 2.9151234275031186 +1.970076837888937 1.5763232382603238 3.2619949982952674 2.3158942333265755 1.0247675613010172 +4.488925887838844 4.768122190862451 4.693213097139896 1.3955116282789586 3.3094992904289366 +2.511992074348458 3.218691229783476 3.9932258991312195 2.43724633860725 1.708945899980726 +2.706287135213099 4.69242435899262 3.624807937070509 1.3644451613975983 3.008983374718173 +3.391225737681775 4.996997065994734 4.481301963011296 2.149560090793113 2.8311696730304807 +2.813895123184021 2.9029683366458543 1.098800806680352 2.6489258796766117 1.5526821243538798 +2.7712664710380466 4.90589902770105 4.0612333293325005 1.2337156894100514 3.5428113350894437 +3.30607152872237 4.173939312344234 1.8717486450215546 2.636704373375244 1.1568715383264685 +4.780126569642084 4.396433762317313 1.2560649890796425 4.131048173090741 2.9004738369341236 +1.8101529494467 4.8449314658240805 4.329391558404648 4.688466299397577 3.0559475311406827 +1.305999181015551 2.797097177602488 1.033850640215097 1.9077324626338825 1.728306302418514 +2.4472347243781747 3.359482507509293 4.578098868552603 3.358332213881857 1.523163389027685 +3.742275025062231 3.7288515575880026 2.5769742281337416 4.877951827916611 2.3010167544330415 +1.8068127266715739 2.198222526586779 3.696979889983936 2.7821624709803774 0.995033939914611 +1.3412966749631106 3.737630296912951 4.59799766360541 3.57910641203723 2.603949732657951 +2.3940858174747426 2.7029165851998393 1.3775879343870474 2.609398875256186 1.2699348948424816 +1.3684396740094784 3.3469412074567515 1.3934173914246553 1.6899494793994756 2.0005998093201742 +2.87764020236032 3.1678225288729904 3.390988452159345 4.85419521154355 1.4917036580125194 +4.562648069867649 3.2814673613989997 3.106659672118366 3.6462964792742607 1.3901913146720626 +1.2963366756442762 2.5460309628645987 4.168981615205715 4.246460154323046 1.2520937407138755 +1.5973985713183372 2.8856800549007784 4.431924037316908 3.781915792746567 1.4429760562638563 +3.6786507838949616 2.3759881562671006 3.2068544796093943 1.2435942778869564 2.356124050445042 +4.200625066100361 3.2592096458586783 3.9038682837055916 1.212659634125555 2.8511167968084417 +2.4285642537528385 3.709905326713859 2.591726739321398 2.4411209207254267 1.2901616402032197 +2.501877140200562 3.951180388244752 1.5452028108044318 2.9242946758672317 2.00059348121347 +2.3267126789550456 2.2827132911537626 4.305610439148127 4.941516983455074 0.6374269206891799 +1.9394681565517877 4.978034431710606 4.162379838484764 2.426879231542753 3.4992638318978786 +1.5652421718649365 4.739479310425568 3.5041324460168766 4.18864996747024 3.247205821778817 +1.931671485239562 3.9310307744177875 4.237117646254122 2.7004927949452115 2.521637067637488 +2.7734497119944135 3.5010665622673853 2.0309146674428606 2.2310718756492207 0.7546450747193177 +2.962013861325423 4.693424767527313 1.2393184648749043 2.6780493039601145 2.2511619562905025 +1.2384440417177816 4.308404994253172 4.896752593283383 2.9188453085563326 3.651955295053368 +4.750470038528504 2.246883047718843 3.4383732784604795 3.0872797968680445 2.5280851357041105 +4.5567791270279 1.6788333256435362 1.5786137917893952 4.433796525716364 4.053966018582367 +3.0124464132045308 1.546744526843555 4.257849703925464 1.8400810447100167 2.8273463369680383 +3.6508191866047808 3.460319782947569 4.818229737397047 3.8416461955367365 0.9949901693113266 +3.4073072333353767 2.225354509645739 3.974860809106407 1.9972507258272412 2.3038997119069182 +4.547412109859364 2.7959206219596346 3.2953433491583697 1.2279901157828306 2.709551959961924 +2.2264419564590296 1.270668565660916 1.9457493382782305 1.1477279499227424 1.2451268653557133 +4.065333320204099 1.3128129475508787 3.55507525245811 4.2789868324068205 2.8461230432739306 +3.111429377146062 3.605447191262041 4.920316393078574 1.2781401537900359 3.675527357904159 +4.514971385165695 2.5091887800233503 4.47637005340915 3.76318067709222 2.128803172109376 +4.404834757386849 2.862079187146389 2.3365969789012824 2.2603182160510826 1.544640151999787 +3.2356081883950973 1.4086493057950582 2.669690316820621 4.1989896571739695 2.382548054314198 +4.438144646172895 2.614450096705023 2.3532453305384804 4.550115408045397 2.8551882507470627 +2.405324301164991 2.6923045146464513 2.3192073005757323 3.496588650554757 1.2118516766536636 +3.233699505946961 1.2777172164270114 1.9300222878223767 2.0943512538696245 1.962873079441934 +3.1094496578306106 2.395111459861373 1.053883757457848 3.9573513743046704 2.9900507124722995 +3.194064947197219 3.1567004805761583 4.873838680652181 2.541064392044192 2.3330735061194248 +2.302261555154281 2.624889011988166 4.25201761737374 4.715509319185922 0.5647238560144711 +1.998576401114851 4.592009220541462 1.353551594218759 3.734360769919324 3.5205320791009798 +1.079899314449142 3.424680046358322 1.0414633698487457 2.7052186703199053 2.8750788477150375 +1.0445803569132242 4.29644434366033 4.191511168732752 1.952150431657424 3.948335839193183 +3.2046996589279604 2.6441164192072186 4.667383634696769 3.2084239981052534 1.5629513075777666 +4.833702129314187 2.5323173640698555 2.5576334948894526 1.2670045684435083 2.6385781897601057 +1.5700110451225733 4.963027445509301 3.4152815860267736 2.4336535882764854 3.5321599368177745 +4.464557993584919 3.2324969765099265 4.398292497839558 4.206662149955577 1.246874709032949 +3.703192163710443 4.7691556970792615 1.9199837494830225 1.6735228245325202 1.094084659429787 +4.193248219697315 4.672985967096304 1.522526436714819 1.8646059153488888 0.5892085165559074 +4.475261258500643 1.5956001533129447 2.039954124075617 3.758143060241828 3.3533000612970514 +4.538669637838884 4.292249746415351 2.4485726179066187 1.6362971190165339 0.8488311074567911 +4.009462970295182 4.080245360426705 3.8741244236639685 1.3868991276225637 2.4882322681013895 +2.4411142841422544 3.0612282092107126 2.5763656995276922 2.6196722881723575 0.621624276137803 +3.8332145429997317 2.004555159808967 4.54626266299929 1.8842213871213636 3.229622097739828 +1.7555849930381764 3.079982819238988 1.4175634174519 2.3167390776618793 1.6007955740691837 +2.714428523516949 2.3877041213888703 1.6529771242557096 1.080883190267286 0.6588173527255498 +4.579787216649475 2.9386951935919257 4.189322563731736 1.8979021800987406 2.81847306225763 +1.607191854507776 1.1092835460009445 4.758972403849343 3.947125879580642 0.9523693940101736 +1.0729093940368513 4.177220381372626 4.285657293038632 2.624526423803722 3.520809916882583 +4.75545620115325 1.464798069270432 4.842418960761133 2.8799244704882665 3.831424743522686 +1.8260665502913827 3.1642853257271004 3.0558469094376517 4.848146715608269 2.2367762709148864 +4.607188382061333 1.2981295129178156 4.861599839615084 4.196272239940237 3.3752824199385842 +3.9531235978510493 3.736741648710143 1.0116711588728693 3.768382732601002 2.7651907436270386 +2.9588155989921923 1.799925933014089 3.9333272314567056 4.794034981826547 1.4435522468748934 +1.7708801531556433 4.712994237654508 2.5312048309191835 1.4938919186153319 3.1196239139099586 +3.5742980014511265 4.157761818116615 1.3483664715056651 1.5337643563164596 0.6122110755696727 +2.221417764729785 2.4217879616698434 3.978983635291984 2.0623216360875887 1.9271070118226405 +2.713874220168701 2.062249471352266 4.129033135252964 3.0113061649488433 1.2938038465761768 +2.694305667924283 1.2383527880480196 1.6598054521039325 1.009669674284309 1.594514132273876 +3.3665106511964167 1.2842076305103913 3.273051755338772 3.347332985679175 2.0836275029714475 +1.8141798145065762 3.3751912434046907 1.425546731187632 1.9919404669073724 1.6605898184118486 +1.2893349223541009 4.612493062774221 1.9604969486873616 4.19237237927232 4.003079809832587 +2.187744914107608 4.219106854435855 2.0534612336009634 1.8746695810581615 2.0392149929894905 +2.577069834422757 1.094922230842084 3.686874661855543 3.9019347188271136 1.4976689710695574 +2.4343018884677927 4.173700141987155 3.9208778777726585 3.3427962577745327 1.832944255487838 +4.582413479729583 1.8359125881470626 3.461661746382507 2.0632464315704127 3.082017608672051 +2.424600731076336 3.5358487143931656 3.234145602306788 2.1706828159317046 1.5381239151740596 +3.2942598764682343 3.6312418755572224 2.2091940144531073 2.571754788716139 0.4949820024447554 +3.1821314499319975 4.283538688162961 4.640239469284808 2.1263134027582318 2.744616944564276 +2.957726637494533 1.412235150190512 3.0985043013497844 4.481738834166766 2.0740978063019613 +4.727015979132385 4.537564125404447 4.295855287481292 3.991628115463828 0.3583938853757068 +3.4890648884823823 2.8459665338752975 4.662991558251537 1.104180259936006 3.616450379960524 +4.187060540647376 3.3685102919533856 4.935058302168503 4.5022552491292265 0.9259281788330633 +4.64930388708672 3.050641960109482 3.2825461889293033 3.9190107736851694 1.7206996031890733 +3.1808180338996475 2.9491672486346405 3.2598443262184027 4.945221265011643 1.7012223582265686 +4.8874609826355595 1.4983950380493427 4.998063790377547 1.3497473724372315 4.979556271613658 +3.196681258576816 3.1724835454535043 1.6061202867629985 2.999543823123659 1.3936336250981631 +1.4380291287123592 2.0331623226597624 4.56494823260818 4.9183670001881765 0.692162079151842 +3.4416047287095983 3.258033340136714 1.4387900034860635 1.9925577192676038 0.583401352196309 +1.8480776274788653 2.352683604582338 3.1523576445914405 4.596532326356577 1.529793353227809 +2.935359068458999 3.6582876671797573 3.0652284906715614 2.364812195476171 1.0065827066980615 +3.9217001578738686 1.6784046050220969 4.387710915953771 2.7286459285047897 2.7901382707714726 +2.0021169632349807 3.27095997841327 4.349908730374866 3.2620660834829787 1.6713360588354094 +1.1887376880247786 3.96340810670675 1.7267351759108114 3.925043340438847 3.53996535555638 +3.590238859385923 2.04952077180731 2.2347756439110715 4.6017330345896585 2.824234323614081 +3.188523199295775 4.688118671927162 3.880107252947487 2.8542580162496125 1.8169076030360392 +4.945500681287654 2.449257386960131 1.2043237450249964 3.9031665255784795 3.676272968458787 +1.946638687139521 2.49723697042994 1.8980502575467781 2.619638015820419 0.907660378364471 +3.8140985807062693 3.442375552204269 4.924617598706707 4.327997161670822 0.702946623725862 +1.479667458958434 3.779743816775348 4.149663811175954 4.3753615926556595 2.3111232637730907 +1.6642058883005872 2.1891945885928035 1.274856553617525 2.7211014216020883 1.5385829043656367 +3.945375797507219 1.6938219977850908 2.4987255997860465 3.637066802648396 2.522957630872396 +4.217641792851753 2.604913832759759 3.1504050612310484 2.550431322342232 1.7207149562372925 +1.3985590172771492 3.8174330374187333 1.9836015964794806 3.802585859983072 3.0264922395720117 +4.93706973576916 4.432895651406319 3.4351776558825 2.0151946508882195 1.506832187675753 +1.6444005925839607 3.1063841196800546 3.981464347032831 1.6706830434560773 2.734429751604567 +2.9945352646769607 4.397613650578418 3.2192418774107305 1.8084337717814956 1.9897257268008042 +3.230526735416795 4.114186851433282 2.5317145622682182 3.7672141778893034 1.5189846940763165 +3.2735823811301414 3.572466771015662 2.4443042480980415 4.501038777094397 2.078337990145756 +3.8326544544205636 2.912825202054314 3.3759660380468492 2.1591792042168034 1.525338012537156 +3.1367129303695456 3.129927956230413 4.238563253212187 1.1912435868815194 3.0473272198239103 +4.52283933041023 2.483055606120643 1.9261031728403215 2.4367368376633234 2.1027278429524037 +4.2645449184505235 2.081128725209627 2.4775690754089306 4.338409507183545 2.868803476265619 +1.1431147475503267 2.5761115670524233 3.9767089248386522 1.3641619480905605 2.9797452224005188 +1.3140651496984188 4.025898229682122 2.7984789575762714 2.707955812695586 2.713343526620429 +4.474205953955673 3.4463539274260824 3.900151484917342 3.722684792411654 1.043060024825942 +4.451531342926197 1.5592120016585205 2.4824773131986464 3.6294624539951283 3.111444372808071 +4.247277369102662 4.217449425557248 3.7874443268910096 3.8333721776475556 0.05476379909451065 +4.921259135302719 3.6642860777744457 3.649450472762045 3.9123783334313704 1.2841776852399067 +1.6485860233425829 4.832723983234578 1.0634970343234906 2.668287151642974 3.5656816835314165 +1.4980078036990703 3.82448964658691 4.964223507347111 1.6738605949797276 4.029764988230649 +2.6190629719863723 2.2030370889564423 3.0000694154115357 2.996219001082893 0.4160437008792888 +1.817333479721794 2.853316070760352 4.878453550360893 1.8614998950252768 3.189869791602457 +3.8355396202222902 2.1056285628130555 2.897610647087893 3.618576580592452 1.87413557242288 +3.1813822876237805 3.6863708928898506 2.6160110047636076 1.8509220533692736 0.9167194745363776 +1.862084741858621 2.8503087043142044 4.364496345451277 1.6465029283947685 2.8920710252574935 +2.893634360394368 1.2681648412133852 3.2065686278175454 3.336090297730256 1.6306216669612337 +4.257808314846519 3.934373666793635 2.607122086776229 2.5151340553130024 0.33626146001820184 +4.7728959854352855 1.5747901584127826 3.8706877006767875 2.6756004734656735 3.4141052065626853 +3.316168945400914 1.8818490827352514 1.5438617696319823 4.049232336315391 2.8868936843674704 +3.851933813756845 4.807302357109654 4.187871376872845 3.1509736100598524 1.409924122940607 +4.2160095608258805 4.248524408161929 1.1186669475581055 2.1922549684900137 1.0740802828400575 +1.3161081433950885 3.0157616884131544 2.9636427463625394 4.588533349254858 2.3514020592957388 +3.6311112371264076 2.73622194329374 2.8230650602226124 1.1949092336128437 1.8578800402447058 +2.48912835368861 1.0604863637179758 1.4140151774685372 2.3713378721851743 1.7197338972430523 +2.4436532907460564 3.600124997892502 2.655183705722913 3.3858300119515095 1.3679440172155095 +3.9917742835491157 4.355028538750277 4.827816553920298 2.3859032149398467 2.4687839939963174 +1.5872670027319233 2.0346035222686463 3.6788836358515566 3.3625151518197405 0.5479041699054849 +1.9219870528477108 2.5185035209173576 2.899629854275073 4.898442096564441 2.0859248012821885 +2.6576183468765735 4.892653589033552 2.2247315124688543 4.5239076134253065 3.2064923634546543 +3.188745306925787 3.489583166554978 1.0025150327746197 1.9863716567567251 1.0288232473752421 +4.518846134756078 1.4735140101248616 2.7111816910812236 4.2679428132925965 3.4201685544633165 +2.087896927426088 2.514302869974974 3.325055325844208 1.535424998114952 1.8397278977526346 +2.5571933191400094 1.5719198573764235 2.672463105997423 2.1449435783701634 1.117604870463478 +1.4388315512667829 3.0725875345811415 4.402395133275179 4.810701463602278 1.6840049502304468 +2.4591169481187123 4.294030297543788 4.35884143958407 2.4270444028070863 2.664347348075826 +2.894718679476197 4.183969646105174 1.0129091027850379 1.0520509580576731 1.289845006110399 +3.1796249596665533 3.3548847224987393 1.3989548844400934 2.8725641588644106 1.483994702867014 +4.48848959561336 3.9756690906148013 3.611657080193248 4.70035180967095 1.2034288862826517 +4.518478865422766 1.6562901596134774 4.662090534963241 2.126139583899316 3.8240255508906156 +4.762141096778599 1.7307292668906884 3.406832225873632 4.244619961298424 3.1450510285228397 +2.8936596240551964 4.1267651020474005 2.3123799993839507 4.062431791292717 2.140848054911293 +4.892544005038394 3.3936811487250482 2.045785849781298 3.8391261830327834 2.3372332816606796 +3.2300930752899317 3.18662066605991 3.369732964990897 1.4819653039654521 1.8882681463123137 +2.9781636260354674 1.7953581860949663 1.0953552074963673 1.2567444232370626 1.193765130882218 +2.8307641432076385 2.258309821940125 4.679525448658826 2.342151212946538 2.4064542937087854 +1.6892923652466973 2.1930519973145213 1.3402008363685347 4.230824081007402 2.934190946299787 +4.031392864620127 4.302482255171482 3.581222665304915 4.189596942081007 0.6660395771366275 +2.8251896824148854 1.0055038936734322 4.233812631342411 4.9646878105105685 1.9609780460963073 +3.3080230901049634 3.2081290037038164 4.815183462762346 4.010986442607285 0.8103774896455351 +3.317250045610329 2.7073889328544243 4.207342600359926 3.1677109098039042 1.2053068608699786 +3.877154083999761 1.180302315256133 3.3240559488517905 2.926541533828122 2.7259910441392217 +1.6790804222077136 1.266157875621309 2.429430485608823 4.081755063802218 1.7031387322180722 +2.9200544893806644 3.951351315442844 4.174513796289094 3.197399623605412 1.4206777431582585 +4.275114941898257 2.2335324757689987 4.669748753944936 2.6772243475574147 2.8527552429285565 +2.154104508925774 3.122851174190999 1.0441952008449018 1.8019529175487388 1.2299052234569563 +3.9281886458314705 4.465053327902746 1.9060543162974235 1.0891709591490937 0.977508110473472 +2.3314421863397614 4.612669934844976 4.0005314812641934 2.8306488928715083 2.563713188165661 +3.266547396049034 2.382365784496297 2.7723342793409937 3.0222951171066845 0.9188348832214205 +4.575351665768262 3.0433415435246505 4.862420494522447 2.9240938590984036 2.470660875201447 +3.6607515335177436 2.226827672464854 4.799776169156252 2.370529103124247 2.820882653908513 +2.529518158998032 1.5816057704576458 2.3685233283755243 1.499137975362204 1.286222682268679 +4.342373362527507 1.1716037274469802 4.531442009985644 3.011682094134676 3.516169831020117 +1.997759774827772 1.2205607089707011 3.288819235986842 3.7722250740510255 0.915270229081903 +4.864533820939955 1.4557074355012247 4.988511816137118 3.585271844028198 3.6863504642651 +3.07426805392288 3.501569960090352 4.894060362562935 4.846196151791558 0.4299743035195498 +3.005454940388739 2.949877170853412 1.7359021039113922 3.3160423309327545 1.581117334519372 +3.6295455610325926 3.1810327083904313 1.46295653112516 1.1403462725930233 0.5524863418179504 +1.9428649676378655 4.684854925675113 1.183997668136421 4.753954775847836 4.501455618005842 +3.096765851182346 4.119937078919911 1.6123889842726977 1.5945118678074444 1.0233273926574564 +1.3542736902751296 4.6631775033983995 4.232837100502106 4.6357936506461455 3.333349430498654 +4.474015156187251 1.830529762391115 1.0897830774455675 1.7541474747140149 2.725691669938363 +2.61322834314338 1.4200591179983526 3.8640549118476604 1.9934358345549592 2.2187538241464693 +1.7910600765613038 1.5414837617343302 4.154144072732391 4.595626232376045 0.5071438003231796 +1.6951847131390396 1.534366660797307 1.2924411184201676 4.996583269775872 3.7076315247620086 +2.2492472666992094 4.844327059116884 3.892257423000237 2.108553680903974 3.148974145429392 +2.565698370376932 1.4445666324484718 3.133800420007981 3.423252497875169 1.157894157154324 +3.09800090756296 3.070038696251083 1.6531457762789548 4.144803126187085 2.4918142456075367 +1.3150915733407413 1.8863887820362617 2.978084561197279 2.9789340140830407 0.5712978402142774 +3.393194872409733 1.1234147381714292 1.0850873136588977 1.6532765214965943 2.3398164102523262 +3.7462284442140996 2.286627806604175 2.368424424356964 2.2662746982541164 1.4631707309313513 +2.390366805916698 1.7687658104868302 1.506888310093541 2.971123426585021 1.5907143910476893 +3.838963281946382 1.5397571612219592 3.845518864187817 2.5353918751613347 2.6462769153949566 +4.2344999252495406 2.1225387473275705 3.4809705732639973 3.901733138707741 2.153467239947791 +3.2815592291915197 3.84101193476974 4.3961832983128435 1.5375465989538317 2.9128664762911765 +3.5813347330820844 1.9041794741932363 1.6569636959970198 2.311959529855079 1.8005191764571498 +2.5774277311513094 2.135155098224259 2.1128800571759943 2.1314705999837544 0.44266317908553515 +3.819922328503639 3.2736257132987716 1.2187778744159803 2.861540364226758 1.7312159281018644 +1.9631422005057733 4.254072227969133 2.38377420259367 3.923498885516155 2.7602739882000877 +2.9058063774680942 2.518040469512926 2.65128129516141 2.771909351591858 0.40609546583344586 +3.2517422990225717 3.65484840879877 3.726163882953091 1.7719936515473678 1.9953134663634182 +4.3340745221054116 2.7514101472158035 3.1174531466994297 1.4174653299520537 2.3226676690035153 +1.5563371658254828 1.1220310059178176 2.160993958439026 1.998392148855329 0.46374690189114504 +4.604633349877981 2.0878928615377554 2.257249197683498 4.33820583154734 3.265633659440833 +3.8777409685562096 4.263380169815228 4.458764656766165 3.1554733892587326 1.3591488960039753 +3.6847674211743406 1.1166029215298945 3.790304689371215 3.9507834774659796 2.5731735927959414 +2.7632257551744344 4.350624427596021 2.6893782899620033 2.6177280320732743 1.589014884971609 +2.467249022394623 4.436610199376004 4.540374762630804 1.2435289695966727 3.8402572346717005 +3.448597317694558 3.1155262129743644 2.9264143070264095 1.0281977844545311 1.9272162118881226 +4.206199481986392 4.8637473348297675 1.1256921200091154 4.2311226495822885 3.1742822736461314 +4.616484233068627 3.0810409994034993 4.816521161070232 1.0470923000533041 4.070157228176253 +2.1322790999367567 4.991526952572514 3.663067861552622 3.7933988900057356 2.862216703846834 +3.445523656705814 3.7085149991187154 3.8520900177900015 4.857577841709993 1.0393123737527137 +2.4659607711155087 2.2318569176069056 2.782081457456075 1.5249139974704842 1.2787785721829248 +2.183931464639741 2.676347449557865 2.7710431722717335 4.288280289306583 1.5951432448250866 +4.327801134433694 4.3659359968413884 4.1105801227007674 4.330333180077246 0.22303738242089288 +3.4938839120994136 3.748821179127178 2.5026818871441328 2.1332164400964193 0.44888498157295526 +3.319659580027336 1.3457554690457791 4.423333940974608 1.6793350598609065 3.3802111322967883 +4.838375440313683 1.5083350621678093 3.4739536293525513 3.5562892454592108 3.331058101228734 +3.5222061005515446 3.8793729401577957 1.0683805608570638 3.3514336759511196 2.3108222946940318 +2.5583890742665893 3.292537549240945 4.374979127759131 4.241334254337632 0.7462137331214298 +2.8623329814983305 1.0073839104316895 1.8572455869825895 4.5189769763142715 3.244325822910603 +4.778855620493125 4.114343717009611 4.290578149363116 2.161826748961591 2.2300579800944047 +1.5647437119820995 1.6250245288198983 4.593615582689779 4.829784609804429 0.2437408177694346 +3.1048651773946996 4.8092959719932615 2.5387626946416098 3.2756010832033002 1.856883180071938 +3.257820357182692 2.2090734212923153 2.238312593587445 2.6347871295420573 1.1211878492027458 +3.037960271514997 3.348850974995365 3.803460282036567 2.2956326173859973 1.5395445091961804 +4.607515083854974 3.951257267013226 3.520466367629417 4.662730790137145 1.3173618838773231 +1.6005831537028694 2.2456372206170823 3.2047227785660657 2.0350129607084 1.335782844340793 +1.1201535990267453 3.3129324092546115 2.235369258996887 3.3196344985744695 2.4462031845986485 +3.239205694670104 4.586685175868167 3.4552284068995376 4.794884436343223 1.9000997946093834 +4.520648492758086 3.139414303806047 4.915948040785759 1.8660318182239704 3.3481034705300803 +1.2614979744629902 1.4778591782023747 2.0493594035938476 1.3358512343019968 0.7455910931132184 +3.330823567576919 3.370704870471355 4.724818554929685 1.8145148933217565 2.910576905200939 +2.5117744334965852 1.015494365014788 4.594922174797796 1.5040639008761771 3.433985863803988 +3.035883065096634 2.1910083230544637 2.039423651339171 3.1838919655534643 1.4225403516179536 +1.579292152412593 4.047360846541829 4.597230357983774 2.387731338739509 3.3125894697324267 +4.379350561555764 1.962761932732299 4.4229287104230695 4.211237265198228 2.425842919263376 +4.152603874737131 3.818895380859084 4.660387070950982 3.733456318816535 0.985171040042736 +4.843067071133176 2.9865335349520006 1.610423593047417 3.044708969161405 2.3460373635344824 +4.064888213509561 3.6074046959457915 2.901975249801486 2.3365822088705888 0.7272966792001782 +1.4700629358565016 1.6685336571568063 1.1024182982216035 1.8106896172328102 0.7355534573009209 +3.447751898442767 1.6061865595279623 1.247985486248091 3.6623025966135274 3.0364930441046147 +1.8688162520332865 3.981231875600736 1.2739434400348024 1.6550276568067335 2.1465146044144525 +4.524951683732817 4.9160919495660345 4.567920145475226 4.04409268214018 0.6537475957126794 +3.432820234107551 1.925271402408935 3.6182865378640887 2.600135808900443 1.8191576036300607 +2.8381467262879903 2.0398588721636894 1.2069519520332967 3.794616797077082 2.708001633736187 +4.979562418718547 4.647345085635923 2.241230793410601 3.9698824664073533 1.7602854776867876 +2.8009285722629476 4.945541958581941 1.468793913183605 1.9992638955120725 2.209245341497903 +4.273274950660348 4.605403002974627 1.4781491925930466 4.2605770084606664 2.8021801501059724 +4.873422890665726 3.8386691571996083 1.6866906494575513 2.7117529805938685 1.4565260284789592 +3.1101204047647153 3.0206345152303586 4.457592341510351 1.8947973602751826 2.564356808299095 +2.045871023369781 4.815564610268853 3.1147270297011573 1.5816888813529806 3.165660836160541 +4.44943058807071 1.0309712740180066 2.4451092609436036 1.2178759927774316 3.6320745554472724 +2.989377516299806 4.479460510032768 1.8781268313800181 2.9754643832886902 1.850539659407791 +1.7956275035178284 4.3839781108876315 1.8758360952406705 2.979483211399718 2.81382228004503 +3.879935195561055 2.7074569429894035 1.3667069105151772 4.122403375027487 2.9947567943455966 +4.057907128836904 3.4272105982053263 3.110793342587276 3.237955579823108 0.6433881785745917 +1.6966067921328283 1.7949826342358763 3.1377372211456844 4.350820100418569 1.2170652728159144 +4.046300713160473 4.554447566343676 4.964163828645113 1.823789186782979 3.181220853013936 +3.7549287841682384 3.7981618748431956 1.6001676480578197 3.9574829753783805 2.357711740766829 +3.0685778292840067 2.213962427756492 2.5744817043559554 3.646398014720619 1.3709019151470425 +1.5256492459292144 2.2696525489095483 2.813509226874147 4.936516778254491 2.249600404085937 +2.6849971107548622 4.225975243564301 3.337548185022831 3.824739859761274 1.6161588207015156 +4.737350773627587 2.0900350222482644 2.0006585423630017 2.21209127416566 2.6557455615285517 +2.626673040081937 4.008410404061934 4.114588652077805 3.112916149160379 1.7066182777994765 +1.2612847121485862 1.807519067722883 3.1842412877336432 2.4259666961678152 0.934533213654812 +4.31244493259568 2.605665814090315 1.9234376563837343 3.070455166148002 2.0563910442986697 +1.4956502527158615 2.097264024370738 3.075342779225978 4.079653877369527 1.170717691033627 +4.552329790842311 2.080812822091932 1.5961625929229664 2.379306713081165 2.592626243745793 +1.8123874104258748 1.0529785158911218 2.3936781667854294 4.081345385453584 1.8506546166331528 +1.0626951391547812 3.160148690254579 1.1132365809779161 4.893812871513285 4.323432489073852 +1.8196860121752665 3.0226900251760407 1.9711490206329612 1.7240363220313073 1.2281218755099832 +2.3601390033200262 3.9789202622417785 1.2973735975460943 1.4742087276558364 1.6284113201145534 +1.396153824423434 3.66508218262601 4.875955338567122 3.572581696178914 2.6166426478080917 +2.4238521297566105 3.5985091262619187 4.333497673454296 3.0955596280811672 1.7065490510445678 +3.84861365670689 4.10377684105077 4.130391398025233 3.428593901375172 0.7467449209394067 +2.6700509597894855 2.7793805642814675 2.2012441778098655 1.089618822672242 1.1169887611803533 +3.7116724378401993 4.968715194589805 2.7023225649150335 3.2285989840657496 1.3627631348296552 +2.0799051036012304 3.7034699958115893 1.7257373273557293 2.1000214937530326 1.666148731786499 +2.4927433518960216 3.910273990193646 2.23810175153044 4.704742913852586 2.844944943961907 +4.941824305218426 2.539515133445756 3.1631699607427604 1.800883633923125 2.7616866934941817 +2.4807200386082093 2.6430765416735684 1.1014860442566117 3.543407229819601 2.44731254861102 +4.83855178287997 3.7019011547002925 2.821261443010664 4.129837877614564 1.733305205594765 +4.837464065156366 1.304623091769313 2.6196767693408733 2.9202326857441085 3.545602798132833 +4.9701877708371995 1.33409421605212 1.385249663600037 3.290675826466959 4.105097465504 +1.9174077747694436 2.9208309024156143 2.53084688220047 3.0104966092535954 1.1121698763036882 +3.6739976844932407 4.084493537919439 1.2231716349131712 4.055316339510502 2.8617390645303082 +2.156817719793084 4.880345770665169 3.523891390863871 3.2628275731348357 2.7360115790716892 +3.2551194869583453 2.777671273175768 4.889629261443048 1.7883893311696983 3.137777223125635 +1.84635460065497 3.1676766802459997 4.30059030166913 3.4332807093500133 1.580543566923581 +1.386336014826174 4.679515148751845 1.1642423628217933 3.846375398853143 4.247218670035036 +4.163287062805132 2.2732353350862056 1.9167549219402078 4.732358319936489 3.391152905467624 +3.2357457265954266 2.5837649831201386 4.09062955147729 4.743787907627114 0.9228730834036332 +3.923518641508002 1.4760637853671659 4.359611062012473 4.846635388115855 2.4954414373140104 +1.0003597465541247 3.42186942147833 4.8642287931056885 4.652633159797084 2.4307368878154625 +2.0365880320472343 4.698549666032116 1.5613929093630006 2.1875762732248614 2.7346197808808483 +4.805640402641307 2.50941665500574 3.9565587605444494 2.1947179722347654 2.894257497624774 +2.3468183423917655 4.106001286336259 4.908253437432494 2.99718220269428 2.5974829921501037 +1.4256883028494873 1.1928813899221113 1.857709011368598 1.479623203671872 0.4440134420132576 +1.2119484941964735 3.0677261244507297 1.5085762686100987 1.4447853651099631 1.856873687767013 +4.134432869425164 2.812223318314324 4.902518653242286 4.686674922240518 1.339711391778652 +3.362677963904655 4.5522498665532165 4.010577723864854 2.762593366402421 1.7241073829787517 +4.168376673872798 3.5476143970338887 4.722076470286926 4.295520436005369 0.7531904505025506 +3.0713767023069796 2.2596904564041003 4.233474715036734 3.9409887525092135 0.8627761007721294 +4.854717557043334 3.535932012984003 1.3528492029934935 1.3404236692093892 1.3188440791502556 +3.9171434806592274 2.0029431842272465 1.36642472501799 1.86954788297904 1.9792159273149008 +4.339385787536621 3.71099509061535 3.4323136557077554 4.53476044073337 1.2689616943747808 +4.026409221190264 4.708653325345425 1.265334316541895 3.8582260231089047 2.681146101882264 +3.3204056784196783 2.636579149829499 1.982298590894 2.5770855009509557 0.9063057925329598 +1.0040544904659878 3.4799478324692386 2.0222678512797323 3.5404211908081007 2.904279153817202 +1.4020329642084448 4.244993918251586 1.985809908473679 2.380762886582103 2.8702638974719035 +2.6056958854280725 2.5072393916875244 1.0687635119219818 4.3877108829620415 3.320407404655851 +1.8786002258621988 3.072942968765751 2.7029091580811615 4.501670086294908 2.159165455539422 +3.2115862144120273 3.132282355174041 1.0445961539111512 3.7572799315603698 2.7138427330284403 +1.902624576470985 3.879200824230702 3.3899814314506695 2.9726615627818322 2.0201508696118857 +4.850860067634361 4.159435160734415 3.0228595035283656 3.5892524644502948 0.8937949362485271 +4.382638580027351 4.934814257379167 4.66973762376962 2.0524383922250586 2.6749118202480417 +3.543411984969597 4.233027359541796 4.85810284112065 4.013288862094882 1.090541161077245 +2.4827583705220095 4.1901889277843125 2.379084471838347 4.36528093430519 2.619216580466163 +4.92993666525024 3.9662968480074317 4.543849266161962 3.9322971727154044 1.141314006036297 +3.7225879863403097 4.334256647975512 3.0886401720903227 4.061571941998748 1.1492322569975755 +1.437229159259148 2.521017625541126 1.817600973695038 4.6289843767879 3.013050626662593 +1.9000317705187357 4.6938540595100315 3.6589770187030393 3.6388167817824812 2.793895026234389 +3.9732244996564337 1.8570452553586052 4.21293028325228 1.7557989966660683 3.2427933565859144 +1.2982230505596397 2.9300850319011045 3.2139145332256898 2.7842236015200874 1.6874856511798018 +3.827884082143382 2.5712382644519556 2.2123029778884677 2.5569512090312543 1.303050695234535 +2.367857474788545 4.088736961976043 3.720466883049507 4.2568067452263065 1.802522304212221 +2.5999395417392472 4.422689502506554 3.0480704185285608 2.519254658466009 1.8979103054590731 +3.8662732480529645 2.278287585716684 3.4879418091148833 1.6508713762919638 2.4282763926163313 +1.3581016148560199 2.8579201994512298 2.8215958052586627 4.2357078499862535 2.0613511738034416 +4.732276133403618 2.6657315673590247 1.3650332505268525 1.8025704412997081 2.112355376530625 +4.748902786103281 3.96170232216 3.5506730030082148 3.6510930750651736 0.7935797132641701 +2.7231025760161383 4.036063512313475 1.7701060471717498 3.3734871801983344 2.072365189340043 +2.8814539204675658 2.78797767449821 3.673534019094177 1.194461026938047 2.480834679900793 +3.2314391719479154 1.3704591140596984 3.0898561418763935 3.8440242741511104 2.007988134326587 +3.704465075921603 4.60984007526047 4.730270563610459 1.047211792147467 3.7927069229612687 +1.7266754495523635 4.301914947777617 3.3449835181365644 2.395517354826306 2.7446938751872785 +3.9439084684412076 2.401181109218129 3.229831469898077 1.255419835360931 2.505655404777572 +3.4433316826978535 2.0900163712800026 3.2987234365627485 4.530431348816366 1.8299089357741714 +1.235598439011285 2.7486754339244364 3.9328530506425827 4.44698634765101 1.5980410006092358 +4.561414376895029 4.713584217252217 3.1812434857375296 1.5217225968462218 1.6664828954960589 +1.8629550539113318 1.945675781522537 1.7524296790172986 3.1208680060238145 1.370936239799984 +1.9472363325902484 4.157712088743952 4.69036360192895 2.2841240860808933 3.2674442116388116 +2.4122048194658845 2.0662706888789204 2.6444380617412326 2.3838968003548033 0.43307294026502097 +4.429305655578937 3.2024268350055554 2.2910993421556807 4.38374469104229 2.4257774416850966 +1.607498918337979 1.1501132121602562 3.500288669019086 3.78490836589618 0.5387114775704182 +2.2612387627308914 2.7089186493035164 2.6390584628009304 3.982514675637721 1.4160832873286269 +2.2817475758759915 1.5032384107820773 2.7925080216757894 1.6236388159864998 1.4043972871463166 +3.611253923449484 1.0096636467775233 3.2316718256075903 1.1314490216564215 3.3435322331197286 +1.9279611573045514 1.958340975700323 4.878281196137271 3.780364613099797 1.0983368138574081 +2.9041749442755784 4.26727307680441 3.318142479482559 1.5630118856340487 2.222278092491264 +4.197138589683966 2.4549838868184586 2.3857260386380985 3.9726855791352347 2.356595763361058 +2.6904239256124947 1.1544488174024479 4.188392843025513 4.603331768672535 1.5910354631679238 +1.3222183653643027 3.360631782132166 1.3515785870023485 2.0069186952647082 2.1411678857942356 +2.966303786300604 3.329321488513198 2.5881637189173254 2.1159513401314824 0.5956226849258648 +4.602556501409268 2.2007933686506034 2.127984374938116 2.831746467906482 2.502747935645523 +2.053676893479686 1.6632865674144584 3.0038002906524968 3.05114524352593 0.3932507485662328 +4.2275001450434715 1.7217267912289946 2.477541768449015 2.4534893301294143 2.5058887885290857 +1.1942659943802916 3.3292991927421327 2.263294217806077 3.60939918350473 2.523958267639496 +2.2401498422881523 1.0777671974249565 2.849184000026225 3.5735300553497464 1.369602358694634 +3.120552361998161 4.18939175319115 2.9340599987736433 2.5867485956774408 1.123851794004197 +4.478502595832237 4.897145010629483 3.834844630099816 1.4972344704214322 2.3748016191039762 +4.330587741096831 3.0223136562682282 2.664790325296331 2.293152866290709 1.3600351032125144 +4.572166321679759 1.4459581879677232 1.510193230118893 3.363837366933855 3.634442719487511 +4.239011770012482 4.246231481798648 4.595414621790195 1.037298220730352 3.5581237257477887 +1.8586718518057213 4.101041892680612 2.028390538049493 2.965450041172822 2.4302888537387894 +1.7660115400483765 2.9581594282447856 1.0615626818751016 4.500665117803051 3.639868425113291 +2.3722481524120536 1.253976085776224 3.7231319947122885 2.309982306527321 1.802088914630807 +1.11500774736899 2.5376729726226377 3.5162101844345695 1.3315790191051327 2.6070269794681193 +2.1254735621776937 4.28128602813767 1.9055792644679914 3.9254508170743803 2.954218759235168 +4.772676636542429 3.549584829341247 3.8987183836561856 1.0914498521747533 3.062141436427875 +3.168104165206828 1.7802569699756057 2.982708555633082 4.264371145400753 1.8891211796285448 +4.523421971159057 4.31042771161311 2.7302003617685844 4.5727018506996355 1.854771762593087 +4.066112963526209 1.4649412108822348 4.273699577085331 2.495808668798027 3.150712708027119 +3.39397151252494 4.658999856187796 2.894111630022923 3.973671124758939 1.663053039726957 +1.4662519954081668 3.3334134661897816 1.4283995059982293 1.8088603175471647 1.9055294243584477 +3.5897450634724506 4.025328443943449 3.9958893862446416 3.652213241815905 0.5548388717384036 +4.264823953714943 2.7774526724775885 2.9103006347906066 1.136501041618375 2.314873284866285 +2.1810965776548645 2.812472815205914 2.5237655029484225 4.170067140649115 1.7632200757818355 +2.8700132213547036 3.782417967120964 2.355953132680636 4.4275050463422865 2.2635833872627797 +2.8270160202116092 1.9770383525427664 1.7556836259601765 4.002609530827085 2.4023193079808816 +4.95115520927383 3.819521650499186 4.804888571113973 4.250314501817584 1.2602170089635047 +2.8036277347977503 3.9402855162677106 4.650113672916188 2.994208640218373 2.0084850981498876 +2.1943604208750513 3.0424017346453587 1.6667200067144807 3.0254589385284554 1.601669614710927 +1.9541693580223738 4.67392603929817 1.3137351171363383 3.9175826821690802 3.7652488028377715 +1.8470793188865442 2.2095332571604023 4.215382960454548 4.271947032735597 0.36684104410936014 +1.6125197544437881 2.677181189334109 2.9460347116103436 3.6730677458487624 1.2892172058333067 +4.5437830084096 4.823038840450956 3.2508192664174618 2.5217354654907482 0.7807349156422134 +1.8438306691852526 2.5333966462723083 4.240258002153202 3.5343744573351352 0.9867992782734214 +1.6400328759606024 1.1841269077664003 3.592642891268251 4.786104040136234 1.2775757377519261 +1.9134022894710143 2.5398928283774134 4.397262454113282 1.831300195473346 2.641335402425029 +2.5320952939040433 4.625295336343299 1.074356229591261 3.3222993128353204 3.071601296257786 +4.390087007433188 2.1772184535877077 1.4474245699494537 2.6654817189179396 2.5259553548610914 +2.929430492132973 1.3694432746847318 4.853764973427226 3.0622597944374115 2.3755106661409107 +1.5881401209541028 3.217487574062313 4.33194753256199 4.2704046282272365 1.6305093228878416 +4.540471196124475 2.0759957373685984 4.40795473453588 2.5148393265781936 3.107655906733689 +4.882571321529904 3.5889050541100307 2.1519564779250433 4.177925824474726 2.4037729103679935 +4.644322155555043 3.008798213965545 4.586609895093494 4.966991325661713 1.679174974871164 +3.615638596892441 4.804845036572676 3.217830268592209 3.5689982701085214 1.239972145439526 +4.3735863904960475 3.1989801753693707 3.9082806587572736 2.9058608727543263 1.544197263300389 +2.4064968277152827 1.9332107600075994 1.415130644162912 3.09125407715852 1.7416628446755087 +2.170749324653749 1.3386104652551891 3.425414421834476 3.929258982473303 0.9727869358736623 +3.121040552012654 2.716967764503183 1.7614427577221523 4.374380257680861 2.643996444077817 +1.3525353287574542 3.12468126447742 2.961709828413433 3.0513885998862524 1.7744135649677801 +2.9795131185512402 2.2105875129989636 4.940553364883339 3.1562240388636322 1.9429559260487297 +1.8808491371518299 3.656064699098774 2.3635687647753345 1.4025119488070197 2.0186680001668824 +2.5534400337249425 2.682805730108179 1.3969721208914994 4.050728864606745 2.656908040978246 +3.6355279615007414 1.261138612331369 3.3692929736807318 2.1292926468454665 2.678679822599282 +2.846690286640863 1.2886866394401184 4.369601704258502 4.543285466550497 1.5676547496099786 +2.696958259078309 3.504083862509492 1.708691735966128 4.682161878090685 3.0810674166302148 +2.773028490807554 1.3966741368201503 3.6347726491343573 3.4922821244686393 1.3837105395853555 +4.23031668317757 2.8803167075726765 3.2310828689494127 3.5213152807967814 1.3808456782059149 +4.472927293410238 3.057153320808286 3.214572905613071 4.006131465256916 1.6220298686653556 +2.1837634926045566 1.174331334659461 3.532165659098121 4.494718638896304 1.3947980213679876 +3.1917044934070855 3.3083572945869433 2.6068048773185226 2.154686882184654 0.46692457372361135 +2.3060435058740962 3.1377231710878317 1.9372103123894786 2.470148643722586 0.9877825320049692 +4.7352495489906055 4.4381073718474475 1.53851825959927 4.637839414821816 3.113532575170427 +3.400496375354054 2.022421411956487 2.6389219576066374 1.6633539543840121 1.6884381936141415 +1.9269620674107322 3.541606415919546 4.147495745546195 2.994391234686656 1.9841185410998174 +2.655216223382793 4.94567583267593 4.337829352907414 4.48957733949823 2.2954809241720207 +1.0603211563112178 1.9230519735244394 2.512157766347129 1.7282102423529597 1.165709304820881 +4.342540171169843 1.992339156909214 3.512232818467363 3.6456836169981996 2.3539868145468037 +3.5045148539984923 4.807539978100752 1.365177601011506 2.968126613781047 2.065749261546656 +2.2251729713636106 3.9110679825832473 4.462160668624653 1.2756741910327731 3.6049879418288167 +4.40751143326856 1.8369739438894874 1.3905038794041178 3.2163543588663748 3.1529974560179745 +3.581509958291665 4.743346344259878 3.858451043375841 1.7963484692061544 2.3668820870835385 +2.3635013788273977 2.817301966948353 3.3403489739365564 3.2323994827633658 0.466463360215436 +2.476441199660083 3.2371251654266526 2.343229671942082 2.8812389154352656 0.9317156443134693 +1.2761590555207385 2.403430147164089 3.4559823564996535 2.422649139588716 1.529221256465623 +3.8436166711070956 1.1539115657022734 2.188581471322753 4.617230592131921 3.6239274421610475 +2.1078739708603655 1.9363250941753942 4.509662238791695 4.838816104865199 0.3711755442415479 +3.6713550811602493 4.754193289751341 1.7903800462090191 1.0421402705829168 1.3162071827086208 +3.286789641678922 2.5248063018774123 2.6477118790978222 2.2572568209947272 0.8561972684687534 +1.3613570250488216 3.952478383002761 2.256737925041716 1.3895392655919028 2.7323878580092944 +4.2675800641188175 2.7562721131733077 4.996776246814003 3.3682339881589956 2.2217564247271273 +1.5686933421120433 3.6248437972250342 3.6460212629558306 4.6328035013822015 2.28067838156438 +4.75406836270756 1.2915957174673656 4.773616194884881 1.4825667805093423 4.776999378992864 +4.520448864683232 2.3571974209583457 2.823510884056706 4.98605180724979 3.0587971579139737 +3.4869650003272343 1.6894285005133196 1.6601632585928812 1.2220748900113083 1.8501510443338738 +1.3359582842852027 1.708501029303731 1.4506040443453236 2.563414624034223 1.1735141597498873 +4.954703939916851 1.58923446200457 4.104532600174648 2.8866117736698187 3.57906635121415 +2.823183264519464 4.738625879960524 2.5184349115055125 2.7339362610128766 1.9275272357835007 +4.851319132897649 4.497115130184477 4.305532540418218 1.0762065019637994 3.2486931431235146 +2.009749736074568 4.193081129148483 4.409622935493653 2.9539863030975813 2.6240834547619594 +4.066168824915573 4.892405063854735 4.088741461224277 1.8586027532849152 2.3782735290932746 +4.625735722685747 2.6865122600437235 4.6508864884310235 1.2709037739440134 3.8967769744100442 +4.6587383275653504 4.69641311426976 3.552694350430102 4.291234529729081 0.7395004976280889 +4.397599501095305 1.660741718063329 3.1284136086945584 2.7692922492894168 2.7603185822154117 +3.390998557413005 4.280350543129529 1.8629072163129066 4.288715991054676 2.5836979634067316 +2.9436556624393613 2.8011469085336853 3.0508503351122362 3.483740764705404 0.45574430218391737 +2.229160713376209 4.437741117148539 2.90395865179614 3.096591080009667 2.216965189696624 +1.2877264384460192 4.93755938478304 4.3404132631880135 2.962399702243088 3.9013077179729483 +1.2717001600955387 2.546148403511135 2.816097673146742 3.6799939960786836 1.5396542410295984 +3.1904666331630795 4.537779339068736 4.026394090778281 1.6661060643858852 2.717758468853723 +3.950095901519049 4.793701334860494 4.191070166625176 1.7987665620257483 2.5366881289868135 +3.589022914900455 2.853278055883748 4.889172658055532 2.6235208951190905 2.3821205696745325 +2.361083596864379 3.4545789810213456 3.638612610696605 1.9708420198304282 1.9942895724870822 +2.974406198945153 4.4022979335867785 1.0158122916075842 2.678978304700465 2.1920301076776156 +2.618896314157586 1.0699097354584661 3.944978939611186 2.774083801835445 1.941740158892759 +4.770835512658351 1.3711019110471545 1.5353070937423965 3.046316581422307 3.7203949029347605 +1.5164489886964376 2.144481299187957 3.547075797212394 3.2953676086866857 0.6765955920579216 +4.873016397573445 2.5910527821636795 3.78314717796804 2.3710939375681424 2.683514914394526 +1.0418180152823933 1.6858609908128193 1.1516662706987089 4.259150625693148 3.173523337060134 +2.7467124052647085 3.4065148803473377 1.7256943685070967 4.3911357922479075 2.745890982817527 +3.550113484797788 4.113281802479309 4.399405012099589 4.509841289811003 0.573894350447003 +1.304428313388402 3.161123757982197 3.4179408354788743 2.117094796103456 2.2670505932012333 +4.471215709948618 4.759188010502092 2.85084313069385 2.1884704698295097 0.7222642090998049 +4.611854923937965 3.322709298931538 1.0182792266106824 1.3449628052715243 1.3298942074615812 +3.1916934770269254 1.9815180837164412 4.3444815499081955 4.215575458081185 1.2170214719076646 +3.277472692944243 3.72401201162296 3.698425304558288 2.9743242006892725 0.8507172102117013 +2.678633688053405 4.890941316200309 2.428548583363591 2.89641680561854 2.2612398623217724 +4.889533405543961 4.605934332164492 2.314105705310004 3.1092914743278057 0.8442445390229816 +4.6876040434845105 2.78062478671378 4.709725558810478 1.4679341181809633 3.7610878253894353 +4.189255578848645 3.6730710001657223 4.630817905075453 4.392722100496521 0.5684506411537901 +2.673436979847449 2.7048022805986736 3.1942859514519566 3.983462476909011 0.7897995761100934 +3.4670739206146073 2.80497386811026 1.1985421876070501 2.674917072936999 1.6180418046389526 +3.1776396573490038 4.6748956737561045 1.6681091059241377 2.2015454959751257 1.5894432864679036 +2.2401204346188233 3.697373983500093 2.603673052795528 3.3336927298224874 1.6298823990011064 +1.0367840557947692 1.615534104486358 1.2805344643858185 3.920013846007236 2.702184861341854 +3.8836260058691985 2.140678822789133 2.50659934029751 3.629605509111153 2.073404865963286 +2.8523992084087926 3.490326168874335 3.7324219133407164 3.7882120915679782 0.6403618905552042 +4.9763413862109065 2.920770281040543 4.169826136346217 4.118394699157415 2.05621442489411 +4.314826561937612 3.4634103574733026 4.480812632775354 4.6278030386014954 0.8640114192702226 +1.099788916543794 1.0254719764448765 2.4554397227662785 4.522016639273032 2.067912754306677 +2.764641572175372 1.2571929081553228 4.481779416333941 2.077383822097832 2.837872380541071 +3.393162405094398 1.7425772661904477 2.0661816628502 2.1479842773260986 1.6526109549756907 +2.946132392145513 1.4126183002272046 3.4206736416653154 4.163976454329376 1.70416094939015 +2.6517195358302965 3.831302270102721 1.269452941652677 4.922298463565705 3.8385799241325786 +1.4853073254119393 4.0317625528306555 2.044173111534013 3.542681044855842 2.954650614112702 +1.6227285066007413 2.031835936512885 1.8025457332123676 4.053059924469784 2.2873965581552187 +3.957664326405817 4.344664147994003 1.2994554136576557 1.9233900196999203 0.7342092716156638 +2.5991147851745846 4.594181475366238 2.4682457603558103 4.0280721290701464 2.5324591603516193 +3.3095391331355524 3.5996512779590093 3.664412856634105 2.499833132586049 1.2001712337153863 +3.3849027834655256 4.935344420777895 4.639218032000748 3.108707348164584 2.1786078637626605 +2.8688370593027073 2.5993435440875863 1.331616903750358 4.05409653214474 2.7357854597474227 +2.279749038012532 3.431359665530432 2.313312854684769 2.854880961745177 1.272596971549581 +2.598216731888406 2.925378654707708 3.373476807183627 4.539193739857679 1.2107563300952933 +4.696820589543231 2.3917770946288432 1.6754307919323943 2.1104555916792123 2.345734872026652 +2.1891275942727333 4.3646975182772 1.5970710027588333 1.4465596776610918 2.1807700826119842 +2.3342470166787495 2.927825014507344 3.191413930895766 1.3764817415781594 1.90953232267155 +4.2787075940169075 4.138417478643376 4.647398431807643 2.043490526387002 2.60768435520552 +3.5517590338790304 1.092356037419035 1.2675524408775147 2.487396957820649 2.745302122629244 +2.560777215905817 4.159231056258381 4.723353363221847 3.126842345334514 2.259181734605144 +3.1304609049326215 3.04401403677907 2.2486719916668108 4.74730120389131 2.5001241971540495 +1.3606000265731875 1.092655860532315 3.8555931188408628 3.286918321362766 0.6286374960198388 +2.984710827815837 3.303881324370549 3.4789656175404233 4.939403954674301 1.4949080046749856 +3.0297282239973207 4.850888688296148 3.7964017659671674 3.911096900086071 1.824768590949459 +1.881724828394971 2.353763366720803 4.134971004490542 2.9704404334109777 1.256563501238073 +2.932674898651457 1.4682548935613662 3.904509408170087 2.627849033386572 1.9427783362623865 +3.5144141023606483 4.136457144848551 4.230548263027464 3.8981953854869635 0.7052630586646782 +3.4965514289098856 1.4331476440974886 3.87848744472878 1.4725808522007333 3.1695459787086286 +1.12937634007702 3.9801311376964046 2.3337944318315453 3.646992244675553 3.1386766975603306 +3.8982636924875647 1.54041341911971 1.922549646979817 4.829360597109405 3.7428609126461194 +1.3645932816678776 4.3722522291898684 4.883956533364403 2.6050307828808688 3.7735281794132702 +2.2879177396280777 1.176025417168327 3.817855420361695 4.5073543386704245 1.308324613807233 +3.920671062259591 3.000975411871134 3.808603708229066 3.6390921809504415 0.9351867445723224 +2.036431061822183 3.0901260339681693 3.180456764110993 3.4126074309008865 1.0789657206865857 +4.154754228059456 1.5729103609134674 2.8967933755406468 4.77549521716578 3.193029652860277 +3.5561996993278977 3.0556529279411118 1.6334698374852734 4.279604804104467 2.693060959560793 +2.763855855353802 3.8866555582201965 1.41049154310504 2.1173674189059035 1.3267828294585748 +2.492757486842391 3.7148021518650323 1.7386860043126515 4.753014892904554 3.2526253722047356 +3.9450470422368373 3.1827555726042305 2.6173988360817115 3.4733686880297805 1.1461992288073826 +2.697215709328119 4.310718610176446 1.1934665937023063 4.086818567856269 3.312835229435143 +1.5524933880726008 2.7210827133104303 2.431799458356856 1.060852261865235 1.8014153398447679 +3.0530538612881397 3.531303702288999 2.502208618050082 2.12205075199699 0.6109360961175793 +3.1632296008938208 2.864900066171819 2.17396451585646 4.92854603429744 2.770689418362163 +2.1961972953055104 4.538454645305817 1.5318905158337817 4.355174481672332 3.668392269835863 +1.1418788804310638 1.5065727140757081 2.099694068811705 3.63379833562386 1.5768568399666745 +2.8912299126878693 3.7468284263547487 2.184609725322736 3.6210782554093766 1.671972085448273 +4.064105030563055 3.4676780107304968 3.2201744207098897 1.8652764306814995 1.48036271007119 +1.4428310255796606 3.71268947099282 2.4106061649043307 2.141039804579775 2.285809131321352 +2.2443917631243764 2.2909337760817126 4.7883094952597425 4.563558862780113 0.22951907495917298 +4.483999186627843 2.6302269227013455 2.0921740930966224 1.196446105709907 2.0588346786206575 +1.071274518998806 3.250970107909025 4.088401696423514 1.894945894097452 3.0923003115920893 +1.4950573637944906 3.654414186531548 4.692933932790259 3.5621520556157114 2.4375170854062693 +4.9526711238040075 3.1666153332185685 4.143054114235225 3.6022606312995356 1.866133135194135 +1.3240504334608043 1.5636248207856887 2.9851466100776864 4.053229381540771 1.0946217126287776 +3.2849843248904658 4.389352740369798 2.2831637327655514 4.465557942002899 2.4459096634219835 +3.941778056392549 4.3010918743724105 2.8681034987389573 3.795088107018297 0.9941865437522608 +2.1176647764721555 3.8191303053900683 1.678640198268508 4.1615239580322605 3.0099330076588915 +1.7333824301510807 3.3959457227051346 3.5320174046177124 2.5600963073195446 1.9258108217375483 +1.5338969052270404 1.3023826616998067 1.8117218675937363 3.0981000660364373 1.3070454140482939 +2.9534613459777543 2.5972258578750864 1.1721635994391484 3.612411330164686 2.466112874605476 +2.301596568502167 1.8408597461633236 2.7306895571582195 4.06182187983871 1.4086133890971118 +4.936963389638837 4.099576776994754 1.2152315012502326 1.7574123407504532 0.9975852854551817 +2.7935995250773202 3.052518594793325 1.76061613507007 3.0719314390992603 1.3366326762591767 +1.8590841368322502 1.1118495665467667 1.4110345001594333 3.5853847269855104 2.2991647204861905 +1.8352823699138034 2.552359719064738 1.7150225076875603 2.8779928726654833 1.3662722988051155 +1.8752679572841031 3.393887045433656 1.5677486057626826 2.6230161433854366 1.8492683717764087 +3.9579432418057796 2.5961327271537646 4.257930678510997 2.362042626695394 2.334292051743729 +3.751820728209718 1.8812153666625009 3.814656997363091 2.3274204286228937 2.389777611002185 +4.471088349473982 1.0366219124728335 3.918060326849524 3.601034823234509 3.449067247362643 +1.6461306853217619 3.898929301509144 3.1758207076707836 1.2386537496939387 2.97114749350702 +4.017168917181759 4.419458487414005 4.3179494390768545 1.2622108249500807 3.082105672455612 +1.6389952239657508 2.2624624999562046 3.0776269344826788 1.7432334307153847 1.4728603012938166 +3.531782424977418 2.7216126577095268 2.9622747232892714 3.491252693794897 0.9675705375191822 +3.444357153910921 3.781693667599072 2.095416171419313 4.269178878836378 2.1997818600089523 +1.6183731814926419 3.7954870880316154 1.354940825688586 4.715850676363445 4.004440034063276 +2.947772032747444 3.566890972990027 4.7491091154792535 4.415276976834404 0.703386208962966 +3.1556646665965724 1.701692699842237 2.4306707943726975 4.0766345789535485 2.196185616076016 +2.7721434432880563 4.425856004406425 3.1190536905904835 3.660457888080148 1.7400815325323415 +2.033048552654407 1.7221599840899908 4.393816104888004 4.292405291818611 0.3270104815926047 +2.9879505553478465 2.945403692447179 1.9445858923687869 2.2735630503358366 0.3317170571537819 +1.515047183108762 4.4256957852073295 1.3087854344239647 3.953144489433312 3.932494131808498 +3.1285660307763714 4.3436108135459115 4.524766374815157 4.691578988020248 1.2264421193271984 +2.8524299123573384 1.2487832863419421 2.9460225251019034 3.8162330913534404 1.8245407451592812 +1.76719781265794 1.9588469976658711 2.329589371362656 1.8232532017302145 0.5413923963192102 +3.7062285871107044 1.846989572843901 1.34494448647333 2.342256447368578 2.1098343203949734 +3.3859705491374767 2.8525938290114987 1.9748946406206658 1.0320763051669402 1.083234572583464 +1.5843545996440778 4.83048587751021 1.9864623060816098 4.185196409125801 3.9206887059584763 +3.521297195101037 4.206717323474099 3.0564331179464235 1.1169317903030356 2.057052783063529 +2.5808291786364403 4.432278235399117 4.167227438446312 1.123740284631078 3.5623977410201904 +3.073619307503405 4.592335690336768 1.8356774942553273 4.417308119110745 2.995215540604353 +1.1551313027649104 4.486425928544007 2.4012203855033323 4.021694078705849 3.7045187101843733 +4.785049713048973 3.7406338679288194 4.50059979463972 1.0466378580598095 3.608414820510647 +3.558080641750209 2.831665152847761 3.2010654101925287 2.7630361482803285 0.8482623985588003 +1.8266565855601504 2.1697791902390464 3.3228930403983847 2.962492085400913 0.4976162881224041 +1.525862177414537 2.9299355539191514 4.646362369856817 3.3539239790067916 1.9083550614998437 +4.601470773233494 4.895712017865966 4.977253374926466 1.0132388942314 3.9749199631191368 +4.516555097553622 3.7300162178228993 1.0671405060270835 1.692435421624341 1.0048070166951673 +2.745283498993643 3.5828494474606813 4.924506981229971 1.1957754144088475 3.821643077975729 +4.997564020222697 4.438510878402139 2.0217646782985765 3.995767112849069 2.0516398385171573 +3.678875520069396 4.732756638510201 2.2074893288503925 3.1922877497434006 1.4423915354713521 +4.8723092536013 3.7088777435740314 3.0285696262803348 3.4222723539462296 1.2282404961146238 +2.5468903672994023 3.018321931097413 2.247146880899279 1.0489103277850855 1.2876406938909712 +1.333324122073717 1.0997113202280175 4.37936820494193 1.6950585815325532 2.694455992499114 +3.2401637071175897 1.021373895880655 4.740146632650493 1.7860313368341632 3.694567012171363 +1.5351969363245925 3.1910248699283725 1.5398967339813296 4.2539989297926635 3.179326481349543 +1.0128937890713705 2.6848277262727644 1.702054734244372 4.6067053733165055 3.351471083782151 +3.096306286319508 2.239746556853061 3.3408335711559602 3.178230545481192 0.8718568197257062 +3.306909008637629 1.6436314400559993 2.012536410333622 4.014429047722425 2.602703671526652 +2.322217725231052 3.4980563546556818 3.8112475062852353 1.7219986527483373 2.3974063598923805 +1.3582501695648963 2.23455989907641 3.9165803532342833 3.6906718877541946 0.9049604283128136 +3.3640390299255345 1.7559678763569755 2.0784132197501615 4.742369870358296 3.1116808755491983 +4.6509297486389265 4.653562183838781 3.578375460288263 4.629750428770867 1.0513782640262632 +3.117990258923181 1.3262216649319276 4.570670290029129 2.252427257963601 2.9299633871660866 +4.892963045177618 2.989207698396143 2.067667490341097 2.6234802886832913 1.983232786941572 +1.9721906109726577 2.229050834534952 1.7242561675308448 1.7314724198934783 0.25696157056383534 +1.4266489119680634 3.1717375833123325 4.088373461480529 1.243067086175647 3.3378290609623367 +2.9282233898572545 2.0322521591030194 3.14938946153004 1.8111811170411567 1.610455221233716 +4.96907642398542 1.734847657253602 4.336856167634153 4.6724674750413175 3.2515950955208375 +3.9802932580688886 2.65778422653042 2.645644977310518 1.3059171002492138 1.8825251454033776 +1.2107734060246038 4.940833582753364 4.744607475039986 4.228327309549103 3.765620019505033 +2.8393769572393053 4.102684281751797 3.031123573784927 3.062344546992909 1.2636930581968724 +2.7698841854507696 3.735973101860178 2.8882453760234896 1.0238998287522638 2.0997885879390696 +3.017577533880877 1.9778868806782501 4.7176013064604465 3.1342573699381795 1.8941844354969064 +2.5194969830241245 2.2017519005321016 1.4309293415835729 4.875890544094853 3.45958373569073 +1.3891688428676212 3.8278884276552465 4.444857365671151 2.329774149781399 3.228146561630259 +2.6951990472363687 2.5185613384023813 3.7145514033753613 4.535701471732196 0.8399335181694768 +2.4922869153064964 4.123271871517453 2.0791861462490155 1.7364973244685227 1.666597598690145 +4.410008640051053 4.6070965411463884 4.511999627434142 4.0142865311899545 0.5353148297321313 +4.58161391802466 2.6799134227868353 4.725466373209473 4.465764168157488 1.9193514552829167 +1.9624915153715285 4.006149663457571 4.140633778249732 2.0490303957387908 2.92426800002491 +3.8569493125356353 1.9317511798560338 3.785376009403904 2.9410222361958724 2.102218148623892 +4.941620994413624 4.787793976429093 3.492687413778132 2.2276560819626035 1.2743496466578481 +4.381703153414499 3.6973085289001375 3.7625488724159233 3.374738016518801 0.7866341347893646 +1.1139910304757126 2.810718603082134 4.767632179473967 2.84654134591163 2.563098602559042 +4.9457826791394 1.6010929315396156 1.292748631716794 3.4159345473093357 3.9616748907336716 +1.6817534447168043 2.250150867355536 2.340732095297062 2.9388411161431214 0.825112132306746 +4.93944017614259 2.495187148433056 1.350121437130078 1.1608252858707928 2.45157212750284 +2.693705229348119 1.1557698062732293 2.9237297070740675 2.5870804041994435 1.5743500623033337 +2.782402145361828 3.9741831961215857 3.461218094364093 3.939476508539904 1.2841624444282713 +1.085537420670963 3.3841106390714506 3.0782054921510396 4.386644301978478 2.6448914834848365 +2.7853323986251377 2.977164584074464 2.1627400805556416 1.4180594882665378 0.76899204931281 +4.014899686066372 1.5352111822311718 4.988302898311254 4.8074571635578955 2.4862743725966645 +4.5148886742313925 1.2164323263178316 1.396764482818202 3.7534069078817835 4.053834949612629 +1.8109633140122843 2.091383847244117 1.5712660215729612 2.5595903688621355 1.0273366979245888 +2.036895236952961 3.443771236971147 2.772237813590256 1.407756393605755 1.9598749003214697 +3.872300391544929 4.458615359500996 2.360041533946914 1.5560819309938063 0.9950458707164422 +2.581012379371208 3.349247834099091 4.9455818269882466 4.46274057977994 0.9073705879664773 +1.3235574444202958 3.124552934117589 2.972781933979444 2.8161717780296818 1.8077918837235114 +3.151680852944715 3.906612388599496 3.690925825144474 3.787494921361119 0.7610829218095657 +4.679812332942108 1.9379206877911512 1.086401949259494 3.016133853887829 3.3528845815937536 +4.821654280348685 2.6425064725022858 3.5719461610413257 2.329732279164565 2.5083421809571953 +1.4403697985049329 2.6330425495456655 1.6975199169236221 3.4512137408083525 2.120827743831761 +2.5461748389044403 2.3639841118407467 2.6935758422646194 2.3583408557579872 0.38154417464574025 +3.8745394704247675 1.0036520118359897 4.573524552766816 2.571106948065484 3.5002387152164567 +2.6074197901353204 2.401070831589036 2.24028825371118 4.700343131423683 2.4686939652476596 +4.030963409576356 4.83158521607364 1.0991779968045972 2.3158816280595067 1.4564899599200325 +2.813443432833962 2.3257371142356154 2.2386200561745477 1.913140509976167 0.5863398231352326 +3.4017811548105135 4.569320911414284 2.3715740679020314 1.4447758313070471 1.4906723498495449 +3.7204260287213775 4.155800571994106 4.476652664994442 4.3003377416083906 0.46972113550336 +4.714073477012042 1.2770589254205609 3.0046551377467483 1.2090418833556376 3.8777952482301883 +1.4320729188659018 1.3912800478167289 2.60547600273403 1.770749376258634 0.8357228004999202 +1.9132632807902308 3.7587787023734336 2.3022035119766273 1.0475191551700975 2.231627210471418 +4.357339669991825 3.9871949064077303 4.260775968169115 1.2449367936555316 3.0384688697663993 +4.581283851766006 2.0300233431220054 1.930626684780353 4.426545308484387 3.5691091268156945 +1.9193285434279947 4.946595277325805 2.306368539909167 1.4005955720329597 3.1598684383213786 +1.0532705072738309 4.703552961980616 4.135646117720595 2.110607978755575 4.174367193168697 +4.635104726658444 1.7072759244266629 4.267274362388317 3.299498712555982 3.0836295503167017 +1.75510938433754 4.479449283065273 1.625179867911406 4.592092235914411 4.027976772923229 +1.1175255972161664 3.3037618089332383 2.2925113380962765 3.6754668421830368 2.5869276564501913 +2.42858868574307 2.476876888179797 4.340306616955854 2.6571243837432545 1.6838747520813788 +2.603491985426708 1.6051092756997658 4.293312460016168 2.2470345644442147 2.2768445842850342 +3.4330915069797405 1.7456608393935937 4.25301720842073 2.909011021732564 2.157260968859886 +2.8562083969831047 3.9060312112908724 3.958454616889599 2.9753657775924296 1.4382599234462934 +1.9986950028759591 3.4398367005361346 1.4564268249132972 2.927861677532825 2.059614021664813 +4.8406666748370455 1.765942436628254 3.896773477280003 4.832332793889978 3.213907337793726 +3.8110540552650893 4.147978125684406 3.0865107563428644 4.603402408512365 1.5538591035384897 +3.4886549301499423 3.7037007171595886 3.311437384160432 3.3268144829350255 0.21559486468216665 +4.801116326012048 4.03797355161819 2.711386375241142 2.0844916521771264 0.9876152529781337 +4.340488826917639 4.329127091053138 4.459960422564773 1.6928187408628084 2.767165006943791 +4.351131358700067 1.921485575568819 2.0450883283193617 4.679791737422629 3.5839699615688514 +3.3983128063005026 2.8805519770286367 3.3127275459593974 1.9699585323430595 1.4391333851511068 +1.770321003636592 1.4007518169030377 3.746210849953318 1.5888978870199844 2.1887395011337234 +1.3545359956033929 1.2649910792754029 3.293771628499482 3.580534865900505 0.3004187849734141 +4.627453713841754 1.3103093673488586 3.9259699135690007 4.655362714281962 3.3963893288611176 +4.289021707954143 3.441125419047586 1.5812628316182473 4.043589557621193 2.6042236889963766 +3.2362144576092695 3.936164918334859 2.6619221138166216 4.964482919177121 2.4065986183517096 +2.2418471371164506 3.550600199925278 4.229204902679136 2.030603401897766 2.5586486938713526 +3.660558513884532 3.9903090265931946 4.815847350466747 3.2951700630910583 1.556018898655125 +4.8592484198574954 1.3141354591093148 1.9333630918685132 1.1632860580181235 3.6277878304179456 +4.405364501952298 1.0077865288507715 2.0111184553204358 2.234190718182316 3.4048931433692595 +1.4225601262522973 2.1932526303048885 4.982328805098286 3.264107658889131 1.8831491823759356 +2.632703934306073 4.105144231620248 2.2766452732427678 1.2139726527493573 1.8158616487775132 +4.493455451337081 3.5073494212045744 3.2781384621023744 3.5142527574023052 1.0139798139552259 +3.5104283280115376 1.5652304213115404 2.096650348489373 2.6852262387610204 2.0322934027445725 +2.8522395532904943 2.611152334452324 2.6188472865745114 4.524327635127447 1.9206713424759951 +3.511667909781106 4.749178410006037 4.921381258018167 1.772700309501304 3.383138181292631 +4.316022966816 2.278941169321235 3.3504042784830874 4.6733512936664185 2.428969134152797 +2.450948586341305 1.8785499751666488 1.141495369439875 4.809360835106865 3.7122603955416706 +1.4472304628686552 1.2185962147821368 2.3547567025301688 1.925447989621229 0.48639448020883014 +4.035468760717048 3.3202276189711877 2.518778364269049 2.98849985021164 0.8556916297370439 +3.0157350694308676 3.504543732382458 4.233155211877589 1.1396433304268094 3.131892346434287 +4.235056680524472 4.075841599467375 4.297312533336184 4.185718788183459 0.1944289227281504 +4.608188187246716 2.475987672684835 2.902527205501574 1.9968923192290098 2.3165607226083824 +1.8191061291960935 2.8278561971038405 2.1316331471282437 1.3491983707547206 1.2766287161044785 +1.4941409940228283 1.3425210182684792 1.2341045035728282 1.2692998149668333 0.15565129935811772 +1.4423548069807501 4.603134248271029 2.850529278535338 3.3071833689085097 3.193596661248543 +1.8135066269334543 2.798819161409905 2.6950611827898814 2.3509090731409326 1.043686478389094 +1.3678030504868115 3.641147824333666 4.595550218427351 3.717244303717287 2.4371125826665225 +4.322126393248201 3.1018223756571626 3.5390561723406657 4.830189208987928 1.7765602758338404 +2.477898826428145 3.7157307145468805 1.6405164053112644 1.6928891430267026 1.238939339475264 +2.1700147527202303 1.8029583976751913 2.789750438636151 2.30070532415492 0.6114699434779359 +1.773852097952692 3.442822390514461 4.3697649300391594 4.69285717066665 1.6999560092565362 +3.1460337990946163 2.6359069898120286 1.1817140467550673 3.816786048667092 2.683995867509762 +2.4586850958898707 1.8036495916692572 2.412766842690541 4.655878438081956 2.33679719727001 +4.088339237906054 2.541057553482851 1.2792744158630485 2.7316377363764737 2.1221309633772103 +4.027079377211456 3.843047954937008 4.7959114748249965 4.108672509940455 0.7114527104733898 +4.158553145032785 1.8598831414751875 1.8551230179147402 3.1052496454245118 2.616620027834466 +2.493741617327206 4.886295793620491 2.744527888084494 4.266936405263467 2.8358496398218147 +1.4242310908962192 1.6986692880727405 3.9146797907131616 4.679290351394455 0.8123703795528617 +4.221745107989373 2.509105770279554 3.1195740143418123 3.0246345547263993 1.7152687842035708 +2.504817217076533 1.8776146692499922 2.840167038467197 3.292319912482509 0.773191604636529 +3.2951452520415496 3.7035942558647332 1.798289029442775 4.344304442274352 2.5785703541109943 +3.3245424890345774 2.500154493576868 4.198210048893413 4.332297015091816 0.8352214565964358 +2.688448181572654 1.1887814692197542 2.169708778940858 3.2070188272717277 1.8234616487624702 +1.5211883625020821 4.372354871884967 4.444931217972385 4.719594192421777 2.864365586610755 +3.7852925408244382 1.9928643220533493 1.0292893928227396 2.0513158324905363 2.0633315203396014 +3.444896984006307 1.3388815984933098 1.07673927033772 1.8012979225209436 2.2271699630856707 +3.555163629867658 3.407811151436794 2.993111562057964 2.21934810166653 0.7876691218631364 +3.709102348595217 4.316157722090731 4.53019393595515 2.8464325270820794 1.78985158840056 +3.4937124166167575 1.9292682688557758 4.015307594216242 1.0900169276242258 3.3173499929181345 +4.634157653675453 4.774174238321141 3.5370698314570426 4.751727377039134 1.2227009434098566 +3.376454664032504 3.2941340500457352 1.4552467208616822 2.022580650455263 0.5732752141469686 +4.519098137757451 1.2861678096851819 1.3267678819855804 1.0176619729988503 3.247673778127967 +4.21787649499534 2.245976284757074 3.151238618699857 4.800475875550404 2.5706757805140725 +2.4082076624943105 4.829951594859143 2.8668820845770884 3.151315109276224 2.4383900056154633 +2.8660981602581184 1.365802072649959 2.590780509340082 4.969587035257767 2.812402680670198 +4.318331966729957 3.869604441947979 3.382162087039609 2.231298327392308 1.2352504947444793 +2.7502797306396203 1.811476527988058 1.9914190192578225 1.6703353820810203 0.9921925999378924 +4.575384301399179 3.5160591882777377 1.3475441588845571 3.3118894846389857 2.2317755832751254 +1.7172064858688048 4.630127417795061 4.982081832915123 2.353866413204956 3.9233435546809323 +1.448159028378158 4.449993494543959 2.2851667780508667 4.877153291842893 3.9660312971458835 +3.0745239444355397 1.7924726779466895 1.1773590907948064 4.175753829994916 3.260985504716106 +2.3717518962479267 1.0512049300395883 2.7374546756566733 4.3045903190213375 2.0493312115580604 +3.395314462754301 3.505014921816419 3.558138122337013 2.6814862178801366 0.8834889655826538 +2.3340200882703876 1.7081002627364414 2.938783083151863 4.775170982577974 1.9401278682486598 +2.006448482965135 4.982144758541836 4.067855694421537 4.398512321986141 2.9940110437059935 +2.4273172189923913 1.4352939115295031 3.553061165529932 1.7135830498430074 2.089925831373144 +2.064578184971655 2.3699847060426205 1.2554435832511688 2.596905338615875 1.3757880593386573 +3.9956600101967217 4.323929103334589 2.561008026782275 4.427809130285585 1.895443736318948 +2.6054508059811203 1.971625793813235 3.971142656611674 3.2740116049094987 0.9421920448066841 +3.392858830398975 2.4072144454909954 1.0614661690964615 2.1840106738703726 1.493854416835434 +2.709862925624009 4.405770553587148 4.306263993856588 2.500095044187072 2.4775691629768564 +4.5283049090126095 1.069974650939384 4.527569201257496 2.9183646627458906 3.8143921430119336 +4.266056438612534 3.3884208788734966 1.6913079761994823 4.466983873244965 2.9111202072669036 +3.39709410307892 4.588626205540986 4.699247828062775 1.953767007051757 2.9928938654314163 +1.9988755378221335 1.8026898022473277 4.414886344504374 4.446492607023836 0.19871537100455208 +1.710253919162815 3.0794625747803464 1.42772135010794 4.696310095132005 3.543783955987718 +1.6035683410564685 4.218115894682892 4.957247078487862 4.626341045096806 2.6354046583226114 +2.065993261650439 3.6343835102091746 3.5837086083020524 1.5726493962791612 2.550334708628706 +4.075384200636345 3.0283310629829265 2.1977978216125 1.067071148296245 1.541059078302553 +2.5146087001770496 2.8900622508567575 3.0858052675362764 3.163903921101804 0.3834902455170774 +1.6436051718818834 4.372681729908296 1.0161526031305996 3.6688848251402915 3.805896359763067 +2.580147155245873 2.905365612679336 4.074828267416893 2.544709551489116 1.5642986702953727 +4.940756095369977 1.3085455103988481 4.142316794789281 3.1840773185609934 3.7564846102943874 +2.9097814871679777 4.343128042975167 1.5346739658489703 1.8406264147795564 1.4656361247086378 +4.484572413918679 4.196725311937301 2.2584528560474233 3.0459195570558704 0.8384269552657554 +4.392149889176613 3.6901225853324364 1.9758196431106838 1.5212078391710868 0.8363696716308755 +1.5587936921833339 3.0336946805071574 4.161146013642302 4.330000881702472 1.4845352443866764 +3.543025802283777 1.2905644244411025 1.7252967535425179 2.907704042023442 2.5439475730694077 +3.4852182807223864 3.991582374782782 2.3213145129793915 2.2884527442126665 0.5074292971440285 +2.310052414964421 3.7910119264140327 3.5977092099792127 4.325474286242036 1.6501160810018505 +1.5510931634530607 2.3204318635051613 2.6797465563466085 4.6204258892775245 2.0876106698000565 +3.572392064172603 3.446403350098544 1.4031463921151839 2.705338269076079 1.308272464166763 +2.0342151709262537 1.821566494896163 4.348315866778501 4.825178045373873 0.5221273760224366 +2.332807977629042 1.0459508938959998 2.839901121371813 4.461668601588118 2.070297300834123 +1.4815112833943855 3.0722028881602186 3.822832295401355 3.498192800503412 1.6234810079332906 +1.9806236487934674 1.072316265761783 1.4609602640618338 2.5179790340422565 1.3936681750548774 +4.758902965890453 4.937512327488831 3.1509210130505942 1.9504905716710534 1.213645149391394 +3.5258775605299397 1.9267600146340684 1.663830254357816 2.535880355730679 1.821441271327861 +1.446846615050772 3.28702218806734 4.064056427634096 1.8570529822205972 2.8735188093335857 +1.0220078233706573 1.774947758697886 3.9293432787056113 2.5790279783481362 1.5460497911096103 +3.1052041435638333 2.221763008743187 4.5953541782011476 1.008439507898343 3.6941068055386093 +2.8936446773345113 1.5678801536160187 1.5578268933262809 4.785921251484767 3.4897341958271224 +3.270494199348289 4.252150197420524 4.2881334257229415 3.8024600081475746 1.0952292760379134 +4.924014073039692 4.580698732898626 3.7335114787653834 4.375080028777322 0.7276507590462596 +1.7464320243886 2.9535811137850576 2.327971398214421 4.192809200837022 2.2214474907413386 +4.750979892119043 3.1310483701779948 2.040708933358126 2.8578043383842875 1.814338181457114 +2.3693149979103816 3.93161328548309 3.5985806996198373 4.891634268021345 2.0279949383833507 +4.683688935836779 3.818381200860177 1.650125769371766 1.8587386095000302 0.8900993165241269 +2.635447330735271 3.495875733561077 1.3405519426545043 1.321523344710485 0.8606387883015052 +1.9697319782214269 1.1983149349357238 2.7538602936733887 2.827615690930772 0.7749349090705946 +1.0081848978215198 4.540203785585849 2.319558504840889 2.7843354379116154 3.5624675466646147 +2.524845750423038 3.0903988496457355 4.619088894896517 3.875329463606444 0.9343598876628489 +1.8406223902862493 3.424224656847872 3.4466021768668873 1.2798960269247281 2.683730925196541 +4.692966551171505 3.4343564587229487 3.8115696555734506 1.5540207411167044 2.584690787304779 +2.006176526610971 3.3572401859112944 4.408734770606088 2.0915590127743005 2.6822894146913567 +3.5767851457430444 3.812406480730034 1.2070304158038936 2.5479309853837875 1.3614447293227643 +2.484086150791548 4.567044343239928 1.4748887613524175 1.7712300259707887 2.103932740513213 +4.032247088103706 4.547173012954898 3.1966791899508076 2.795299519903266 0.6528815724243788 +1.9739514182401163 2.9665858796732802 2.1768010465639103 1.0633541176780326 1.4916726307974215 +3.511536186933906 4.577092484024655 2.2714132402781333 4.889937577072277 2.827026693303931 +1.3485248687805749 2.6475422720677155 4.715791509376529 1.283589272004901 3.6698035931452346 +2.367510180386927 3.507097329902962 4.68910171790174 1.6022512814762333 3.2904869682468614 +1.7126327267691712 3.896783210865764 2.827393607544949 2.093643583961519 2.3041055605783485 +3.560767989123555 4.051882652999041 4.825749219055342 3.017621852516796 1.8736376882148664 +1.403882148764123 2.9179560993833946 3.788800622456237 4.5776800524778976 1.7072640929437801 +3.6497442093564954 3.190819869993502 3.35618752628188 2.4225510662400533 1.0403309996242511 +4.21343393740257 2.2006142099921253 3.480523904855281 1.2712691777069636 2.9886869532421496 +3.712998689343245 1.5991834656836375 3.2280999564588484 1.15549931755488 2.9603864964156714 +4.490795283559776 3.6667171261505227 4.386316078189241 3.542945258670806 1.1791433961712317 +1.5086168594848766 3.345020154739168 4.848858775156694 2.0720083251402364 3.329155371047952 +2.8067418789901586 4.216924777511706 4.85767855153749 1.5509995187445131 3.594821557907337 +1.143266816655482 4.701532319621856 4.47873310214305 2.7785649021159164 3.943580263920597 +2.124322045545357 1.5256877924849 1.2343476160229683 4.3951897303232155 3.217030593648638 +2.1864092450381922 1.975225516934517 3.844545911745922 4.479885735202403 0.6695186765770466 +3.2047058102290165 2.078820059329812 3.6798706728518535 1.373582177884813 2.5664343642679044 +3.8617818614415835 2.547267014326384 2.3472882823294743 3.250589418277504 1.5949615122288368 +1.8544640583755179 4.473855080499777 4.478776055881507 4.602786264080896 2.622324895683757 +2.550459818701126 1.9148486981070665 3.2569128918150994 2.8147759969755066 0.7742651550994873 +4.20379675820659 1.9568109977441708 3.647988272240512 2.24140538594283 2.6509282192745984 +2.8007927717827585 1.1550097949266807 3.2735012223403137 3.7765153562870655 1.7209371940484797 +1.6150925915704484 2.259298300296933 1.6920494369831478 2.7708898386160024 1.2565419242313927 +3.8820519078922895 4.98272109257299 1.0463404428064687 1.9570169688380794 1.4285672504893427 +4.029041008114245 2.1333416178807196 2.702196061538026 3.1047197838763667 1.937963241441094 +1.9017822354485374 2.0038805396351753 4.234036716485017 2.475488125626297 1.7615099233694305 +1.9422076032969775 4.215889809216606 2.344108226431729 1.9899692555197648 2.301096517800619 +1.1323526276117972 4.8875167811279585 4.6061084657566775 3.296310320491482 3.9770377168431397 +2.577216954631081 1.5815752354332666 3.403775554952435 2.7471830076151824 1.1926509154928786 +2.303195673539666 2.8652812323255246 4.269834691315184 4.240657625468057 0.5628423194528451 +1.2936345569492174 3.8310104291576805 1.60089886946046 3.043488583225886 2.9187910852144716 +1.9407105353596954 2.2142756651974467 4.019176626932175 1.3448139512055919 2.6883179874379812 +4.687970304307353 1.5015831252296916 1.7785099375451336 4.904525269063451 4.463746756691969 +2.1487906868420765 3.5083892261684877 3.4477563803511857 1.1096223969724863 2.704695678328498 +3.995887986353131 4.240794637348841 2.9593421304281247 4.519943089636965 1.5797008012865876 +2.2445342213347184 4.089293624539479 4.532647079739376 3.7952232275292124 1.9866884993679463 +4.535942768597151 2.509498376182189 3.71420115598883 2.307307312337687 2.4669469315032964 +4.139393804055583 1.1685944659739111 2.6921336144622376 4.154645785123231 3.3112823130138014 +3.358427852909378 2.40586792375209 2.774310244484861 1.8212838153026176 1.3474530764950574 +3.871240207892828 4.664383419173479 2.9612642583161124 2.634204635965348 0.8579301546004825 +3.189336017735268 2.6526377674190402 1.0505056940470139 3.7631038388215594 2.765182400299627 +4.1803053688883605 2.354214069567346 2.209682098155662 2.6094326355106863 1.8693340861310859 +4.044553392706197 4.998885888636122 2.824465511195776 2.2406817667358276 1.1187287307848661 +2.8544453848333475 3.1650837745314555 1.4721645010178812 1.4200696875559546 0.3149763145759797 +2.024224493578423 4.20344771443491 3.409156093334812 1.3897937606020885 2.9709995081083185 +1.3208894362462367 1.5600227381731404 2.612944613747321 4.362112844951663 1.7654388228270583 +3.573756143811496 3.1499783438278954 1.6744572983423085 2.378437849828224 0.8216910858889456 +1.6536898629687085 1.4174645879401027 2.0338871754079015 3.9233438674277537 1.904166214273571 +2.9630984372905886 1.6222676818758228 1.8363203010714608 2.3330205195060416 1.4298734984812789 +3.489547427096137 1.0800449694066327 3.373363469582729 2.254879579714519 2.6564465561171158 +3.243664981933208 4.634210779976733 3.976547583950156 1.4292232283783628 2.9021507522776546 +4.327870309515517 2.817277997041243 4.515488383483247 4.9229909447458535 1.5645917908329823 +1.6071864700935974 2.3302764866895593 4.005551498437979 2.543163367004772 1.6313914977887607 +1.0048779735202764 4.91255263688657 1.1147733166490377 4.678586242447777 5.288731780380344 +3.1374933025246103 2.1703847439822113 1.2161736965562353 3.20937609317396 2.2154355684353804 +4.295210220592643 2.1661702394482005 2.804862067513 3.392172459187301 2.2085616897610416 +4.2850976506305365 1.2914795072436949 2.7456383952097854 1.8391938176390052 3.1278413259982276 +1.3015588276860788 4.824821673192263 3.772969802263435 1.6957591067232896 4.090010434239833 +3.682871879460638 4.678976850217827 1.0220626630039167 3.1604338429904844 2.3589947893465824 +2.89443993317078 1.8220817582812363 4.746437381314298 4.8418704677333455 1.076596270305586 +4.714547956503712 3.874024570794664 1.6556734019409314 1.4434543104993232 0.8669005160317436 +2.1490906662002627 3.14592187632597 3.142957285090848 1.6973270131214067 1.7559952576004076 +3.495119417615979 2.526796763254628 4.620710022348432 4.061427508613232 1.1182332910083554 +2.2298534746860086 1.3722345874097162 1.1975828701025817 3.921877779646978 2.8560974965820995 +1.8525215189996036 1.6388915622403037 3.9813152024975516 4.707552955474453 0.7570066263078015 +2.6608577580069888 4.348132773278333 3.1079687792870794 2.7280847288906145 1.7295111647238757 +3.270805861892774 4.295876667805556 3.2044198717693537 4.550771523150036 1.6921681140803277 +1.4794972644805138 1.4791386251042309 2.9961388509740665 4.607243958896108 1.6111051478394247 +2.9810096523843157 3.8809431193646033 2.9422046856113573 2.5740866925591193 0.9723122450118419 +1.198173519768237 3.264408492901599 4.6884014535153415 2.954555536843066 2.69732249220603 +3.054088406347094 4.37214623868206 1.773347628400888 1.1970912734244656 1.4385227964930767 +1.52301279792824 3.3793090147148876 4.963294196444657 2.6382457713256944 2.9751782843393757 +4.220890774864177 4.437935355072211 3.4659928845254107 3.1594068964470914 0.37563721578624376 +4.1688249885950315 4.774113132892816 3.8670390303708575 4.27413369424586 0.7294517139488785 +1.2863236972602081 2.903281330986779 3.4757026825794677 4.620252420494753 1.9810467162155918 +2.017215524392583 2.7594926295666786 1.2537475929603326 4.583186063002653 3.4111780702073276 +2.8835024856442795 4.817571736637415 2.345478615042478 4.92171533391288 3.221431281168867 +3.654639884114548 3.9072686515794985 4.98801863055095 3.691055280796886 1.3213384217361361 +1.7469986431682307 1.6979967302070986 2.669621454983508 4.435018254644695 1.7660767389125003 +2.0937912448467113 4.281563059465672 3.9703741619713386 1.6624705448839494 3.180057329452756 +2.2630005153504977 2.825922840214647 3.726002936728519 1.8016926097199137 2.004956802143733 +2.70208519092354 4.279341832241737 2.3974208809268402 3.674695751058552 2.029573749941682 +3.1941917354902767 1.3010451465104826 3.1551955496795037 2.048026073298728 2.1931320655161444 +1.9646503909847177 2.440621844981366 3.717559988712401 4.880120320231974 1.2562226512217423 +2.0542619839943654 1.2125851795353442 3.576832309755242 2.4667915158079268 1.3930579339681228 +3.948686252727556 4.129530373728091 1.1388708249647022 2.5175640734024114 1.3905033870466406 +4.304655245139083 2.9704913404391804 2.8393825292379904 1.3697103821971743 1.9849255765372293 +1.2555447054301356 3.0474627124506406 2.1716404023760876 1.232197967064193 2.0232454703147322 +1.9860538103719931 2.689152909174002 4.192810297010546 1.423038231489207 2.8576188755113128 +2.4366859230556934 3.6411409252560447 4.469349165757242 4.287133336017789 1.2181602771938862 +3.4725308907024233 4.19917890054682 1.3113574484430823 1.26004135885794 0.7284577347115844 +3.5956729404514403 1.499719069436754 2.926451714743993 4.405534854410328 2.565289372267127 +3.4795856827843994 2.3200156331294632 3.2252245575968166 1.4018744002863959 2.1608351386028244 +3.2336551226959998 1.9885511479288684 1.1902733421988807 1.4165378292819626 1.2654957629703385 +3.6656289240486473 2.601034903254446 2.8249958208201913 2.3833334497455034 1.1525736762281529 +4.427635888625602 3.307866784834772 3.568644054925737 2.404313585093052 1.6154096349797225 +4.833665674792932 1.1769724846074525 4.976788592492547 3.337958412291472 4.00713980872726 +4.071466166180246 4.313904536888597 3.115302418518162 1.1071438535208826 2.0227400193212306 +4.607876120250552 1.4550000067787403 4.612126696732805 4.383359472007032 3.1611646951732597 +1.4034015662504449 4.627336584873788 2.1178890897737603 4.417952794693969 3.9603093377913265 +3.862326561574942 2.4615215613220434 1.8952261872351368 2.5922663734115954 1.5646468195341834 +2.6492254794288996 3.194284891443275 4.990807513766466 1.7918364078747948 3.2450740976062837 +4.91497679068973 2.2521102998738947 1.201002211100004 4.73072878780408 4.421518704495201 +3.273037739893666 4.429620694773247 3.5297648073501473 4.228171766419763 1.3510945237084082 +2.565113939514382 3.7271991269906546 3.8032628358146985 1.5102874240683892 2.5706377072284847 +2.924780475562697 2.6595243734333014 3.638956126880785 4.652138293765157 1.047329414754208 +3.729518285489703 3.01392514511598 4.3851482134483115 3.6082059934840376 1.0562730497901294 +4.484936225240732 2.6762547986617884 3.7177530454434033 3.1802794896984388 1.886850901893623 +2.456890122454147 3.1672632859454475 4.1417493206317815 4.723778203836099 0.9183613952539075 +2.424052192607836 3.412237515182988 1.0008504205428506 3.3059566074012836 2.507992177907655 +2.2778297619441874 4.7351182634793325 3.935284338467283 3.9627264970867775 2.457441729084646 +3.6067586851441322 4.166053320615114 1.7071458352682938 3.4519444026450015 1.832247944462329 +1.6754194643577134 1.1867754469993392 4.155537652497509 1.3415964621010814 2.856052870433213 +2.8713003683615144 1.0413439577905224 3.638052055417512 1.7578427365312232 2.6237239846097973 +4.683302282204377 3.7578577027244298 1.2044903806710519 2.1710778273837366 1.3381849505323853 +1.4573453564097147 3.1136017313604953 1.7946571190354246 1.949148592941436 1.6634460601638854 +3.8917565385431065 1.6647391640716642 1.1401448703953614 2.112050644871685 2.4298574486290545 +4.53878424653964 1.7301036716996738 3.182088846484601 1.409312534119664 3.321358521022021 +2.053384878353261 2.0563266886624247 2.4072198735974766 3.100478129857584 0.6932644979520443 +3.7740203716182226 1.596175016723063 3.0179896077569293 1.745317511391978 2.5224402182617496 +3.3326162411935276 4.40385642910516 2.704904227543784 3.595046272573804 1.3928059450358383 +3.8750254167556197 2.0153335369325998 1.458531814930419 4.100732794648364 3.231049350459096 +4.60609431768429 4.261855203989597 4.258923267570397 4.7823104691076335 0.6264461111143457 +2.8838283985463917 2.317906302223197 2.142924577301949 4.688388654707234 2.6076148466496307 +3.117760293957187 4.490948398412834 2.003345614101455 2.543952864635291 1.4757715844764887 +3.81046049069001 3.123939817606058 4.757448529115713 3.5043823568461723 1.4288056084219019 +2.205708367096188 3.5010665075742957 1.9174415306246786 1.0335640406855209 1.5681811532230727 +1.5760969723263467 4.566336703658953 4.220999800604014 4.246591488031732 2.99034924136053 +3.175262463012815 3.8893599294277656 2.6787647582904843 1.525326994391285 1.3565964273611504 +1.4377110084335847 1.5588189640843018 2.1046136386087113 2.0587317168231576 0.12950786720748558 +2.943866552986602 2.7497939067237205 2.1165590841581787 4.392631334097952 2.2843312104363016 +4.102181220851877 1.4678507286764284 4.042383698063549 4.435082700289513 2.6634394395883323 +4.346752089419072 3.021958362892814 1.270923631390362 1.848455985233735 1.4452065726321601 +1.7648963835985416 2.438625877806247 4.394031424437079 3.66856054505627 0.9900603154328199 +3.3976684924888803 2.2137562391430983 3.8266866550116574 1.1462743191548523 2.930231819128927 +4.219848750713478 3.081402000563333 3.9348771720881404 4.04188074475937 1.143464370888675 +2.6942603261121563 2.046502983157522 2.8963565916540137 4.22450735003369 1.477692123663166 +4.892862936933145 2.602200805178306 4.66864138365087 3.5025631932907664 2.5703835021041352 +1.9559966107575386 1.676852367398375 1.5640989312420297 2.826610254835501 1.293002842534501 +4.041375999884674 3.3366686838460025 2.8240912774756906 2.9452462412265352 0.7150461009752425 +4.880746517769193 4.078941958196227 4.630746697121227 4.106078234289608 0.9582105967072646 +3.6944602342246613 1.4829026607342422 4.672874132486747 3.186078107011141 2.664873228172944 +3.59642394051144 2.0676831175243424 4.7447386818955195 4.1759049163406115 1.6311408144923125 +4.583973251649379 2.9717901470092634 2.900340975608473 4.593176985588375 2.3376971830354156 +1.6708681054219876 3.299307375851214 2.5244483133766504 1.6503178003178962 1.8482203903583663 +3.3102686457838884 1.6131321851505227 1.3448386779653254 3.2943423755162935 2.584731481755125 +2.60596139539284 3.365240267259588 4.221461973170269 3.088919531754135 1.3635089977231756 +4.84631377484411 3.0394834769568706 4.16971111530691 2.5259415441202084 2.442665373832978 +4.850351654336157 4.609483479092619 1.5374171175225388 4.299093080021321 2.7721600963307886 +3.671132542123552 1.1670218539189219 4.094433338739193 1.63922789857875 3.5069365680282982 +2.98935770085043 2.0439179008251482 4.5036474943426175 2.2711137575915044 2.4244717571470558 +3.1294449803412974 3.3265678415818516 4.162359869832899 3.9798638391721592 0.26863027310894916 +1.4237246674110855 2.8191362804048543 4.432919490339721 3.6918673416259056 1.5799784355462685 +4.326159433730643 1.8650818489824426 2.4544792126189825 3.1627347874487146 2.560962482627856 +2.6217479194104767 3.1072584028851256 3.5731880138991667 1.2208377297285193 2.4019309500902626 +2.5598327464674786 3.7693873383891385 3.7576470651160863 3.4347358168676654 1.251916125419002 +4.023722232938644 2.676075573108837 1.9589064215606657 1.4727875291404229 1.4326419990068415 +3.226225050134928 1.2114124583636872 3.210200700536943 4.512690576003079 2.399156029867948 +3.421920837328144 2.7323309918207364 2.072963882034133 2.872227749494236 1.0556310363257664 +2.7528698232457582 4.814123995689881 2.680458272802902 4.58302126417541 2.805087289115726 +4.295693268406026 1.316765957280848 1.7000580827624336 2.024794074772797 2.996574943076585 +3.3140290480973125 3.483960913202325 4.185799162860836 1.2450968191898126 2.945608105782288 +1.471414247966333 1.3825095224302921 2.4861767733268874 4.452299545241286 1.9681318056631767 +1.062127857839628 3.5447228754491498 3.7209949890678446 3.3288544213056612 2.51337467289389 +4.068482971086283 3.2828488406048084 4.070856812420985 3.909239902808034 0.8020854146848845 +4.508278303820793 2.730592147491449 1.4605291514307974 2.3738496956460926 1.9985801177062483 +1.9289032101500365 3.7372140900819897 1.693785657815186 2.5633121883592813 2.006505575820891 +2.9989352720157116 2.764146379430634 4.490874956859027 4.888608274721625 0.4618632007632964 +3.1154665890693916 3.4434009266703534 2.838276703015144 2.008392043542254 0.8923281222768988 +3.2812104519165044 1.7959308345194671 4.805643501507735 2.9222163741452407 2.398614868197899 +2.6231591821473517 1.9942722341951162 2.1146506371284364 4.177907023334935 2.1569714204241506 +4.537855022227944 1.1911490803107445 3.9770943173798132 1.5640658124257936 4.12591168438983 +2.3063111218810364 4.174412352779278 1.4455614966126782 1.9698934768627892 1.9402902448851638 +4.814001014339239 1.340376545262568 4.7950892955860995 2.2462058371863147 4.308465369092832 +4.58964296109884 2.998751525633077 1.9414318158670092 1.118684568156032 1.7910467869528992 +2.6892625618839636 2.309457290614432 1.4219960973788863 3.1889065274973345 1.807269905726724 +2.565670152704858 3.3051428061205335 1.3157943445676596 4.335393790357582 3.1088262444473194 +4.295454598183277 2.139125939341306 3.8754531916740245 3.3621457315379044 2.216582467126952 +3.336006362771285 2.684520550203278 4.328925793208325 3.7711699077534413 0.8576277699194197 +1.4458967555088278 3.7300181337770737 1.2389784147024314 2.374857867378561 2.5509669934504946 +1.8618792186464495 1.9370529479470808 1.26345343697023 4.96542504885107 3.7027347872550345 +1.341276880635787 1.8025096198997357 3.6659757556158246 2.5551017747035636 1.2028202863423862 +2.1099688059482324 1.54016734677985 1.968215754268587 1.0955223834064025 1.0422415374649103 +3.8675100464586154 4.4224601431456705 2.1283675526404524 4.708160997252104 2.6388072734995682 +3.3130999740577596 3.9473277410364247 3.804579622154369 4.975905552793712 1.3320094955347983 +3.119510063265777 4.308679236329814 1.0037479223349361 3.214197679749867 2.5100222015395666 +3.5570537799561084 3.105911038095665 1.1833173964533668 1.1410912679545717 0.4531145765271244 +2.776942937348971 3.7439930354503717 3.507941601756141 4.24238508119606 1.2143282574039622 +3.657679304113992 2.574191263253732 2.4118584690529548 2.0186744625236845 1.1526230943711018 +4.904728015916447 4.093587397730928 1.3322215689307484 2.9695455800636243 1.8272326124231248 +2.1819315991975707 2.1069048881289363 3.311966001386124 2.3284681429018166 0.9863554354374467 +4.736760557488077 2.1511058555525246 4.860150881359141 1.6157091755317365 4.148736219640105 +2.319196659252774 3.042133273375204 3.2402531092089415 3.9942321242245398 1.0445677111239342 +1.058745034626765 3.901514255620843 1.2638777076926875 1.1991294149802982 2.843506494671754 +2.460608099916377 4.647117486070869 2.547017094254247 2.6742481006710257 2.190207986638602 +3.924135030399561 1.9272311948511205 2.5618143598464536 1.1826149019705379 2.4268943267133185 +2.089053052364056 2.9282510841435005 4.593170809373474 4.308593687017818 0.8861362621576433 +1.47742723345883 3.342810625502243 1.280484539272631 3.685886973828315 3.0439474488692806 +3.5152893541616255 2.7222250065050235 4.674807373707537 3.949746548406091 1.0745530512314438 +1.9782795884654618 2.1635550606116243 3.143125733469762 3.3821311880659306 0.30240801561087055 +3.922881059684571 4.45666951098781 4.31457689653427 1.6238815206481685 2.7431317351814437 +4.40525488885338 1.7883258357298848 3.335522222604527 4.226942856006355 2.764588290276935 +3.139810754295584 2.69834819117488 2.5072311718400453 1.4129285571301127 1.1799946640549255 +2.224355857493747 2.6067734800575164 3.2230000940659056 2.56743271579315 0.7589544291344111 +1.2377035642618655 1.364100597292246 2.9667274523477407 1.5475162906133262 1.4248285972531678 +2.961279247562103 4.637368594645597 4.781475387060027 3.5475902794593583 2.0812851698326895 +1.6085985827873768 1.4563923358516302 1.8441598116769127 4.209429413646715 2.37016181549038 +2.9163496828027435 2.7280252636512317 4.8157158638888315 1.533647440518851 3.2874669918542248 +4.4854030715346065 3.7612810380910413 3.070080541588714 4.809555558525227 1.884177819067173 +1.4324059906352908 3.6786307787298207 3.0925694494755347 2.793594316263371 2.2660344059456703 +1.4721716381877856 4.440289055911649 3.4841923384566162 4.964962772094141 3.3169868981548354 +2.9790542552091868 1.2978550171411452 4.383844752979348 3.9650931085644907 1.7325656748824014 +3.7364842445663418 1.2033627936312055 4.926721946616278 3.9520794010456153 2.7141540812607143 +1.9798720861194097 1.5050465715437542 3.314693453687786 4.715450794909128 1.4790471251037 +4.751373858211192 1.5072238415500552 2.654305243108101 3.663862241130533 3.397604253420124 +2.5392726316206513 4.67201254642316 2.059852424603488 3.899269347547613 2.8163867207123814 +2.7365513768619607 4.669233026123587 1.119650708575441 1.3263860916504413 1.943707250593002 +1.0549151064250024 2.0961604792729203 4.154302071223223 1.2284531573699833 3.105605221719815 +2.5882240344307914 1.7444674248610954 2.808711343797001 3.149246621374924 0.9098843286196449 +4.633843403740854 4.915823937653585 1.5104946453050907 4.924281284550146 3.4254127108705834 +3.793807854060311 3.676271803366472 2.98532049419515 1.6995398704392501 1.2911415629739504 +2.8847886994545306 1.2459557929170382 2.370732585414537 4.012305045919025 2.319597688961791 +3.1278328957150303 4.415539489817224 1.3863049279229318 2.4558173192459285 1.6739310104325407 +1.4532493660901817 1.8694674482214109 1.8636336922782344 2.4445994373385225 0.7146738338756039 +3.581026537385387 2.9731250750798606 1.2706658923489789 3.573317972764823 2.3815437832037887 +3.894910278145843 1.1702213113228694 4.195520878669605 2.440823603643363 3.2408166398164773 +1.9835889807140235 3.601716840939998 1.0726417834714441 3.638009322987296 3.0330592451914136 +2.44432686607771 1.7035969522537049 3.2791105094268187 2.9415628114166688 0.8140142834531036 +1.4469126631511533 3.550731097017245 3.226684311376797 1.0538820558286286 3.024420877521841 +4.44218669848011 2.4146334197001944 3.5188636064824235 4.38177488673106 2.2035399192825 +4.11890531930573 4.384991752667114 2.1181729042755446 3.0655219613903406 0.9840082449020817 +1.6472357045684496 4.0255803483617285 4.601049994526305 3.9486488357042027 2.466201637476668 +3.137415739141906 4.066784725349016 4.766877008243707 3.084291368366361 1.9221917563149336 +1.9821597630351233 4.588425685146095 1.8572686322519778 1.71442084453623 2.6101776849885603 +3.0683014806518067 2.5710222061466883 3.4149372899041235 4.475458514078506 1.171320598203868 +2.9996557105961412 2.2026862664232874 1.0675197679849893 2.595639697864302 1.7234589681914518 +1.7525175226846041 4.804565037760346 1.8782346893380208 3.5556674572153657 3.4826390460437704 +4.750379657161908 3.113804909631458 3.764238732181711 2.4518427889214167 2.0977988502572003 +4.087401596097674 3.505377460402457 4.733976726471852 3.2604805221045607 1.5842800127555035 +1.1759493280820457 4.743816285273679 2.2379247336266257 1.75526915962143 3.60036540191939 +3.4846409337093784 3.4415259297148255 3.700748087355919 4.88992352895003 1.189956778399955 +4.711610923241537 3.053731580481074 4.034019368070689 1.4512926710399396 3.0690456345103816 +4.742623220887783 3.9296918774022545 4.016309292311453 2.2209862916619327 1.9707973122273086 +3.183480642543668 4.320190307398082 1.2524514100036948 4.598180368042536 3.53355502615045 +2.842295982552976 1.0730315213021506 4.718544167935949 1.2781826838780597 3.8686410889140617 +4.418174795049441 4.711925932975218 2.586422119446003 1.909108768513207 0.7382703477619169 +3.0492527659569384 4.783639355524685 1.6085398483465556 4.184695938832794 3.105588035239346 +4.444716203289417 2.3154750655732337 2.762673841647015 4.671771150651608 2.8597762775768816 +2.4474460250784795 2.307937569872906 4.663608267355825 3.4013449007024406 1.269949375317371 +3.93077317655481 4.920521096146697 4.900927344006595 4.6036630206482085 1.0334248991959634 +1.0481304933143876 3.3821629929895436 4.915533047781545 1.2711311013615352 4.327744592349439 +1.6496079895232585 1.015087991176629 2.1126259811836037 4.243017053508154 2.22287690827494 +3.2776054218199913 4.655730292689611 2.6616061453496793 4.720068278287204 2.4771948878614927 +4.864325269548792 4.185073850997858 2.006011901661377 1.8478319517361879 0.6974262585835092 +4.119152934585141 1.9985177794632452 1.1646620825543987 2.300358200261354 2.40559745861886 +2.8926632169341593 4.422025873346776 4.304266600178662 4.886412323508232 1.6364118607552207 +1.4775454988072267 1.5535196985719701 3.922631482440695 1.6962120500176794 2.2277153247443255 +1.1685628607530907 2.4935338398865694 3.033697982154344 4.118780008417172 1.7125860852128203 +2.958570623289704 1.254026328729834 3.684977426355873 1.0239197388663057 3.1601739300652314 +3.807609678325014 1.4429947254413888 2.568297411556075 4.506650687107289 3.0575508656833414 +3.681485001008144 4.15109778379183 2.7403175816555105 4.900033594178799 2.210183119224136 +1.115618186771127 2.531880425185928 3.1517608470073104 4.06784532281171 1.6867155939189997 +3.843553013032407 1.5377716204665899 4.715927032810194 3.8667160423803564 2.4571909035664254 +2.581947653364278 4.667467323815868 4.942550130000187 3.0525338809074625 2.814525487124791 +2.798734432415897 2.321022386776285 4.618412504356295 1.8954610241708703 2.764538580304709 +2.374599240570356 4.366484065121302 2.6850049929413022 4.820824920333683 2.9205019973495565 +2.182409331097128 4.110334552391793 3.232336798428517 4.31379539146647 2.210531236458718 +2.7892473758049294 1.267845269589421 1.4340900524730036 2.4805994083683514 1.846576887317038 +4.434485838065689 3.0999455169749544 3.268895187883043 2.360365485574731 1.614442346010966 +4.13675033083298 1.184214896155651 2.5706626587551202 1.3059007859383902 3.2120224295537114 +3.6548564140244064 1.5256300778926026 4.812648419711309 4.706398299590484 2.1318756714459113 +3.674932083861205 3.8779411592650144 3.737549377959901 4.442188114684333 0.7332996890691503 +3.038228576372516 3.015773392713307 2.089892346244937 1.3880100350258768 0.7022414215035869 +2.591136181927261 3.7151333862374147 3.362297141547661 1.0511464726981035 2.5699780406495303 +4.988016872399259 3.4378815563754745 2.8639525507836536 1.9992925397284913 1.7749806851631007 +2.3588075932499017 4.357739059622869 4.400966106197219 1.683878160115127 3.3731726777620774 +2.5506148405766096 3.5416134077902175 3.1783983422631743 4.259609861526744 1.4666616888729525 +4.3549212339413215 2.171734882517106 1.5267499848481312 1.500792845044535 2.183340655544105 +3.204210902536195 2.261949265360518 3.7972450789607963 2.2533661280179347 1.8087065013587522 +3.1940784198530405 2.227527938278427 4.9370569396689445 3.535590376876079 1.7024477554564095 +4.7494243634299576 4.049092155802591 4.013365727666506 1.1541371993889595 2.9437481172743714 +2.0356400101530756 1.0704112903157088 1.48203661459176 4.2453706972643275 2.9270602545999496 +2.6089961427008266 1.4759648698052739 1.1254139050936685 2.144577366546702 1.52395998192874 +1.714445663906865 1.8271021028560708 2.371927253257879 1.902693944861348 0.48256747812660367 +3.223891916671809 2.7599513478709166 4.951742754882115 2.7527660269185414 2.247385036326593 +2.3653160550056582 2.3702644410549976 1.7186031742436119 1.299662157365939 0.41897024016866863 +2.479041593235638 3.4256839527971055 3.045043184895226 1.1932435906644745 2.0797339959978722 +2.465162385638778 1.8381497462889245 3.8791283587808336 3.974737978255616 0.6342602377893338 +3.5701653990010596 1.6704017722377746 2.977170660162805 2.2493438942591517 2.034412357104272 +4.277957244099186 1.5031916796853042 3.8348268257897855 2.9628761446697003 2.9085429217673355 +4.17969876309718 4.950738191541928 3.3254423559346518 2.7037063663948047 0.9904834379763736 +1.9702823865424017 2.3163437436416925 3.6790378584898398 2.589601373364839 1.1430793139580993 +3.1706756743239084 2.0969135086164754 2.6925965481620335 3.8155316653738125 1.5536886644280277 +2.6065015499110284 2.940313073636489 3.837010704581302 4.85774758935041 1.073933853316887 +2.86160125334089 1.2935558453166287 2.234691036907161 3.4234069296929417 1.9676920174121426 +4.151820482818698 3.5938880409787486 2.5343223456647577 4.768356487584395 2.3026500291881304 +3.446442756608236 3.4086783854974376 1.256816197886812 1.220843991175688 0.05215503217391317 +4.118517735288036 2.631309596528935 2.7562732250078272 2.311622633561059 1.5522571296229473 +4.425113289180738 4.432334068621802 2.591119561353735 2.9200620200425846 0.329021702603342 +3.04762013852746 1.1607543052821812 2.2288118998112343 3.567887688277364 2.3137386714848733 +3.9466161015161836 3.1672388260496493 2.865294558478736 3.6675000910011084 1.1184644178171879 +2.3149126253903867 1.1492363300514787 4.50737813448293 3.156628633403006 1.7841876135044499 +1.181436792334544 3.039859251662084 1.547500348809645 1.4045587109853308 1.8639115722471706 +4.727519588148187 1.4799292160227755 3.3669035600711625 3.505860271583777 3.2505618272532626 +3.5061509242931077 4.59608247725204 1.9808598877806762 2.0144528646236566 1.090449117670624 +1.4452699616499944 3.6976347829636387 4.622016394297939 2.4480667147135002 3.130368108970018 +4.382429927472567 4.02214640511656 2.567113112388836 1.544539920100933 1.084186400056339 +1.9532078908354484 2.5165758295711704 3.1428868291237935 4.971904061478015 1.9138148997862967 +4.062599519562948 2.596360594906712 2.83699104843421 4.872381521367915 2.5085196753237486 +1.1819762932865343 2.7311559132494816 3.8179849472631533 4.955878306864788 1.9221755363998463 +1.8555484774961277 4.081183491139862 2.0178479356322527 4.284418818194766 3.176601136377867 +4.6711451516772815 1.5205224738639616 3.0313611285831783 2.831696978322643 3.1569429882167395 +1.3872172808740832 1.694405918419871 1.616640027903514 1.27136031181344 0.4621503449966033 +1.3583830435314952 1.6727700612777023 2.9991722093126425 1.2994937868643377 1.7285097444514774 +4.73485177618896 2.1875421514009785 2.4299898892003267 2.000626754637274 2.583241960378334 +2.22706520354643 2.3139402891054233 3.6539801540556636 2.478582258771311 1.17860404408341 +4.982354661710971 4.3561137105811385 4.275161217073176 1.9044942112963872 2.4519869047673732 +2.6888327820260844 2.575575790010921 4.591089946657863 3.9991735413196037 0.60265427663702 +4.467286991998151 2.516953104543884 3.06680053769697 1.6833156686399242 2.3911989995527896 +3.7335134484430372 1.1303460898983402 2.448007705723768 1.1800768698258217 2.895536030031994 +3.1798336372710008 2.5205456115343416 4.016235498327443 4.244093615113712 0.6975528813395632 +2.9848607424629265 4.72875191077279 2.4200822903067927 2.8941098425819893 1.8071686493587567 +1.9108480603034579 4.310756142357169 4.00669784420721 1.0582995421183408 3.8016590260131498 +4.658500236197532 1.9898643423929983 2.8848847649399905 4.143536201343785 2.95056282293112 +1.2428887795052406 2.7250777715772636 2.966463060619068 2.1079006234961 1.7128962801810301 +2.401088410414782 2.140599460448602 1.1194602925317847 2.375882106492602 1.2831407824752021 +4.561509913845543 2.6233029045511436 1.5822553709799498 4.096436159511301 3.174547439919282 +3.020250433111479 2.625816036321886 1.9712915764919452 1.7663606109864296 0.44449431266754474 +1.349919868822675 2.799562264667887 1.7516171878574553 3.1665331107444032 2.0256974464788344 +3.520751103087525 1.1716836264731216 1.815324975413123 1.871696985724717 2.349743776081582 +2.8975940839379586 2.745203162838477 1.7170195007896072 1.6830232665943918 0.15613691675258723 +3.612945383332367 3.69423178609442 3.2718497074942285 4.2570513640772525 0.9885493328144678 +1.8937337802926146 3.148514544184845 4.813571780332397 4.911500503733765 1.2585963611503854 +2.226080623744272 4.246816801022998 3.545099062229874 4.808721641744553 2.383299545089196 +1.4636916893131398 2.07276812633646 2.6377257001640397 3.719445313699903 1.2414070357643376 +2.8867291896432845 4.996968757642117 4.9370844511533 1.6967355683488177 3.866907280584855 +2.41851389356255 1.0071496096291397 1.3369069991285998 3.1893225246188086 2.3288178161977453 +4.25165459936181 4.223661491064852 4.262387944588225 4.898865219443668 0.6370925643260459 +3.4332615156264574 1.2234979729110216 4.716690679925917 2.3789519924233113 3.216842720084505 +3.8697512350124597 2.7102038324995883 2.761609847078555 2.4865514349491633 1.1917245104291045 +2.5999088851073098 4.443548202138892 1.7873985797243015 3.1178334579380147 2.2735573220115253 +1.02610805913186 1.086237772475318 2.645506542289271 1.5824648895138718 1.0647408783183911 +3.0471995873789397 2.519784434201498 2.5169533983334698 1.7543176510257452 0.92724324040286 +1.5637268431022298 2.8742053907518796 4.996279428059643 1.1444728626016532 4.0686321831243495 +4.118388190868732 4.375984322286227 4.505143762825255 4.703825311113373 0.3253154231686893 +3.8916512038773634 3.04232555452869 2.834759785320421 4.545564695837085 1.9100281412820792 +4.8373215309230275 3.6213491457391616 3.582879147982232 2.065589409369241 1.9444168772230968 +1.3858475083299706 1.5722543506868112 4.609000031882532 2.609835176897243 2.0078365541761114 +1.1154517506092723 4.215232236046694 2.7263071322771126 1.699180700970675 3.2655210554805727 +4.636858914298045 1.946486567022637 2.2893444957208993 3.0001352873236415 2.7826834021159224 +4.047995847516413 3.3612413711302125 1.9443194017619922 3.696416798872534 1.8818812395573796 +2.6002048386097267 2.4867342932612573 4.04544975096954 1.29421654962767 2.753572169533153 +1.3437370269782325 3.9183943789361932 4.0031544197249715 2.4590230382386924 3.002199560868981 +3.500299487423786 2.216371310137768 3.0910895910980134 2.1975785363668505 1.564235778057704 +1.9030496136227044 4.310417686126299 3.862242190184249 1.8806879874371525 3.11800867460858 +4.6557540068877685 2.5209037397788503 2.2013277250551497 4.854418449857887 3.40535990124529 +3.4623872937584688 2.9023202539923796 1.9020358613668154 3.2921187055012573 1.498667876011643 +3.633257690589237 1.1640285727708295 2.0760099718744107 3.3745915955270207 2.789875744467936 +1.344425546667611 2.428582342581937 3.1636941961137346 2.331720473383987 1.3665929289440997 +3.0554407014412113 2.9583144849601255 4.773975035360956 1.6018241485740314 3.1736374636166307 +1.2820028789547107 4.391387679556708 3.9939899842396978 2.7537354895549733 3.3476118427619985 +1.2219418961335093 1.942944693135607 4.3891167446671435 1.61654919919668 2.86478198602982 +3.3969408044230667 2.3756326382010418 1.7364797024989103 2.487410881783678 1.2676624181594276 +4.448515275696151 3.147454259344158 2.2381036594962986 2.7440917531338065 1.3959884380516194 +4.594386870406499 1.5069385321689404 2.2450924130085825 2.452667661105206 3.0944183176985356 +2.6033505918685185 1.6760192321171834 4.088517368630807 3.3112900661202938 1.209969309753776 +2.7203854159616467 4.858634194631733 3.275243082894108 2.3811462378520054 2.3176533407303084 +4.974130584515322 1.9948752723634255 2.0012097131485596 3.092632873458697 3.172879879517449 +2.371643688997045 2.2897347689421954 1.4172664590396722 4.933422751196877 3.5171101975999073 +4.402509611527865 3.4209800982141396 3.83565603013872 3.130657901861864 1.2084794356461963 +2.530357423621433 2.6906132727230188 3.5254741399885976 3.2185180388051604 0.34627154839086444 +4.331415085420886 3.6837713855723915 2.1027582010414103 2.135785817352522 0.6484853008300505 +4.56032565616205 1.3318304356814084 4.5804799459648 2.3623040323880358 3.917076176466123 +2.4756010916837505 4.891365276630157 2.303849765247424 4.609173612138281 3.3392266524321816 +2.368042339130009 3.9275057491568064 2.4037930830428818 1.4028772189771637 1.8530403919372158 +1.3597939280951024 4.414729929342032 4.9708807616779875 4.524460515897497 3.0873815779001625 +3.2727903420427324 2.2474990315019414 4.479758953681002 4.350386248695771 1.033421292728986 +2.3994291930958207 3.4361228396011585 3.871321136432677 3.973497872513558 1.0417167571373114 +4.816153393071229 3.0938561110536744 1.0384501388067524 4.349852224600022 3.732518144824091 +2.5361352213225232 2.359645278859119 1.2967394849830898 1.336121787652857 0.18083048845343788 +3.091380722741772 1.2439228203612607 1.2054047345663363 4.856471846525838 4.091868980930412 +2.242225340170464 4.902786380422919 1.9669549996794493 2.772403752109289 2.779808040440924 +3.4077543044754957 1.0798063064875159 2.6659065390224708 3.499186781335668 2.4725892994118097 +4.6349208155104415 3.3305864579342295 4.405571837692678 1.8092207643301652 2.905568277033672 +4.439083921185811 3.257845133084571 4.538730584058095 4.260320740727243 1.2136050079735154 +1.878646147818078 2.885869479757172 1.7799033986589512 4.282162935759477 2.69736939098319 +1.9728416528417791 2.9062606411896166 2.3637733185935033 4.711243828689713 2.526240052643386 +3.5503537558715523 4.863627324080243 4.801938331242397 3.525404068867302 1.8314549374672349 +1.5352441072597194 4.058280906095064 3.9996511991357946 4.0451274097387735 2.5234466061337835 +1.2067801536249507 1.3964000857411425 3.5599099774299305 4.367180472932813 0.829241443468197 +1.271489900540018 3.0626219491353517 2.397433407628022 2.5625091775264313 1.7987228873044534 +1.6546511039116232 2.659223383211644 2.303986810982911 4.854377879173001 2.7411056282168014 +4.847974821145381 4.5578273515205305 3.8746525019989573 2.47688040235439 1.4275687012100275 +2.625164665656327 1.9667763023502132 4.758940099448846 1.7140538506166543 3.115254003330111 +1.2577076484522824 3.3360242552589243 1.3793510320982354 3.438991488414565 2.9260073013277346 +2.2344140671448347 1.7016481666905907 4.541828782536883 3.346929399551324 1.3082905029641128 +1.3304306682617844 4.293767892485734 1.1332338488960616 3.162342397807644 3.5914689206141506 +4.649947422554063 2.7086302874209958 3.345358315563979 3.4672859057195526 1.9451422972118018 +1.268986631178918 1.953583782329535 1.1940972362506947 4.527519225760797 3.4029950660430037 +2.3698891873606334 1.4874140518110868 2.3367042689009567 3.49964205123583 1.459858435070039 +2.5191885161448724 4.0523636273589005 4.580777872541898 1.6665129797424019 3.2929569974492234 +2.0041318694690036 4.6817302952771875 4.2962489328010545 2.718577007024151 3.1078259338764562 +1.66163109465194 3.9240534948229584 4.674377809546845 3.9209429659750272 2.3845794556490842 +4.388488613185663 1.3063665343064548 2.472420105577671 4.944122480764678 3.9507960135420537 +4.734665507388062 4.451226799829142 4.232783520883325 2.2210752871989397 2.0315775935012232 +4.410154244560282 1.0194296123734556 3.125440948528993 3.258340403730671 3.393328129802862 +3.803588399544833 3.4918826075130562 3.576746111543066 4.7357072037504775 1.2001463719216727 +4.422140605276983 4.0947872941543535 4.396938278030765 4.126393996685255 0.42468152593644487 +1.626604088281725 2.552953160601674 2.9335035883022766 3.285556866267331 0.990991480444696 +3.5863896081400672 3.057546890844546 1.8730064115998002 3.9395011871033687 2.133090545855955 +1.246672477995026 4.113460144192933 2.8103287265858232 4.126437479075852 3.1544593469317848 +4.337013947741628 1.9397958644165785 4.069933685824136 3.1281147788346524 2.5755926293929887 +3.1565309157854147 2.6175894878214123 2.248800373058834 4.204631630712332 2.028727130786775 +1.6083324132974495 1.5681847847044952 3.9557427681938635 3.6708745675036734 0.2876833742956034 +1.8791965551302727 2.2624362113247627 2.21228499656681 3.8135611416418724 1.6464986871742484 +1.782386548238231 4.793311068753007 1.2575851573817198 1.946251387820753 3.088677329405621 +2.0943189344381112 3.730121985844892 1.3111458026104437 4.826570774166836 3.8773785414418844 +3.7377780145042556 4.323400639092123 4.268922466977312 1.3610749109011753 2.96623182974749 +3.4333334999391107 4.6750043030320345 3.9497979722538865 2.700698215429776 1.761248587153863 +4.276402322459377 2.134411032726026 1.4744105138412213 2.3549752561587147 2.3159276652577505 +1.343213036006981 4.66484235868214 1.838552414193229 1.5640844133443426 3.3329497507081354 +3.520709741570314 3.4213324931943996 1.9909515748548015 2.5838080244628365 0.6011277795415987 +2.258696169840902 2.7005117140993162 4.284718373865993 3.1077688568566657 1.2571440413639354 +3.941318979431951 3.99925815721212 4.662871654740568 3.061945282374644 1.6019744686038417 +1.8126712752605867 4.801486933512454 1.1367306283514567 1.5487262857520707 3.017077967293604 +2.3207368447011465 2.634260208140936 1.6574534020404217 4.9011768950656265 3.258840130878812 +3.357577978845613 3.698666345037726 2.970927941629229 2.2330331744036482 0.8129144856936054 +1.3780753080717334 2.9858359559380774 3.658959113138684 4.230520933459594 1.7063344382846402 +4.6339292538675085 1.1356694874203415 1.5707370143868684 1.723142532085721 3.5015780493040625 +3.29314606842023 3.3750656045470966 1.7567683920708768 1.8732857819514672 0.142432835202514 +3.0041555659373196 4.089630249890382 2.610554066848513 2.129750780072501 1.1871929455979835 +3.6872368995486307 3.0947475774629782 4.646300376043085 1.1946755624932792 3.502107572633691 +4.52086676089813 4.18997073118522 1.8973600020229582 2.680350656967538 0.8500391451046883 +2.7177726667702897 4.179497358442553 2.798609608106698 4.945077918996874 2.5969145700042002 +2.246225031102546 2.732810109430036 3.1350783973234058 2.1921517909616828 1.0610728643386398 +2.7214203293207557 4.574320735398473 3.2340211688929044 3.8809148004286147 1.9625777144776786 +3.602797561256853 2.4865965030314374 4.496891492810075 4.576780824020949 1.1190563469391779 +2.5289359836075604 2.7401016429318457 3.5625388012686177 3.607767412244669 0.21595500209229487 +1.5351606213488793 1.8428291919797504 1.2093095182767408 2.305312726552374 1.1383685615408239 +3.1072460646368976 4.774895862696183 2.83503428256265 1.5408859952016525 2.1108945114918884 +3.780778686034981 2.2347682071600734 2.9839260698888674 4.184687908638889 1.957543714502783 +2.9428077816968927 3.5536247226293143 3.62899914217355 4.937917401730628 1.44442526477903 +3.9945876130628823 1.1579718271101171 1.3859917353045987 4.364422548392862 4.113081475666394 +1.1778396835091867 1.1250402275679505 1.5853384558453927 1.8945006025185442 0.31363835142284785 +3.533132140753807 4.6559811746370485 2.0702542021433157 3.066625215503073 1.501181251267174 +1.5088386778851186 4.6475615013228495 2.8850552933497964 4.6226013753556146 3.5875684452652177 +1.3866360223170413 2.385089093655432 2.85156146799912 4.483201372119833 1.9128923943557605 +2.8494169467084487 4.282745054859066 4.272633736089726 4.3674043624838275 1.436457774263399 +3.445847783305713 2.84119734938278 2.4110492499258496 2.640236704129891 0.646628978942114 +3.1406247957885274 4.594799413128943 3.129211689792215 1.1231945039012987 2.477645811613689 +1.5760897617671286 1.659361411628149 2.53768974614051 2.0617459885047285 0.4831734968963468 +2.4995618579267593 3.421349928597047 1.5026364060690156 1.2093824975268732 0.9673112746708241 +2.315223402143155 1.4369219001580533 3.2376838948575895 2.7259167533556212 1.0165230619668109 +4.20991162308881 4.3538606645986695 1.5671330738841793 2.6612110453977023 1.1035071065936786 +1.8363525347330452 2.357778364095261 1.3362577427937485 3.1696799161637523 1.906127425260668 +4.1070360753594475 1.8151621618117542 4.364591862001826 1.0486108862173213 4.030932381889477 +3.610438553252175 3.051576219879885 4.096127641540759 2.9342295936420606 1.289315392513844 +3.3507140393317854 3.51376381969537 3.115492418321648 1.3113257638851965 1.8115194031135942 +4.398353141871322 4.010789608700401 4.253362458086901 3.2840626256093164 1.0439097937489623 +2.9879990517048998 1.1180610484623434 1.5312391245850159 4.845349915248802 3.8052593168882596 +1.9891094390182205 3.6908022946945493 4.580018112042939 1.4834367888588509 3.53335173258372 +2.422887444689465 1.0846354754667038 3.4697615335662424 4.791016629670109 1.880593885481136 +1.8809335704346712 3.7210645587859372 1.4925132934251093 3.4412751492997278 2.680252753977224 +2.301726258822105 2.778643347089417 1.7242699900842235 1.3279457391082135 0.6200990412773322 +3.8299612133524708 1.2429543999965245 1.8621755332402499 4.967170609425995 4.041484711772124 +2.2079317339183007 4.881969438375203 3.7156184201606077 4.612910026596711 2.8205690687940654 +3.928851428548955 3.186686555179179 3.9508311126142317 4.200897565149521 0.783161496721819 +2.4759139150210054 1.9829895655449996 4.426613732845285 2.7979550826009594 1.7016178811125637 +3.953829393878838 1.6086303400165503 3.368637325446524 3.583291328737129 2.3550021111169417 +1.9939715378588927 3.116666616837564 1.518534495274285 2.9311400817937736 1.8044109242157103 +4.666238805499711 2.0774537721284805 4.298297085760559 1.7476395393368915 3.634234701850568 +3.1377443126329285 3.408146684297834 1.209475265688388 2.80776438955336 1.6210014084099573 +4.199853987765807 4.877673028512405 4.726569439519149 2.542991615065635 2.286361906488948 +4.445325239062102 1.3793887614422702 1.2964402752784085 4.243549921547137 4.252695821702993 +2.1758707694548374 4.296935006818741 4.325569588246511 3.5321962242917753 2.264587113285106 +4.40083346626632 2.989566744266207 1.689542080392596 3.0876660028730143 1.9865609135480784 +2.257755105259596 1.8194467675707569 3.6461135145602457 1.8676208718815097 1.831706930420352 +3.7010298503231938 4.716735228311979 1.1607119749668455 2.1285799457143604 1.4030059955945495 +4.37432566418493 1.232649934944639 4.296130665872636 4.964300542138012 3.21194292776911 +2.958381983669307 3.0498825677705352 1.4115696109376668 2.7373165496127823 1.3289007872287932 +2.2240885180933727 2.995872523514728 3.390388873288676 2.3950402632885557 1.2595115745611083 +1.6122839309574473 4.123273202037005 2.1190289484819034 3.9122921665269494 3.085589099130006 +3.7453940961108763 1.7609522943433276 4.642814076247118 4.84253429271377 1.9944667030231218 +1.8572550442830398 3.078300518696863 3.9379853834266627 4.201566656524461 1.2491705800707662 +4.5252454792114385 1.1102436044174775 1.9324007260098073 3.0140006887771875 3.5821915476848343 +4.532542125098676 3.7631150838207343 1.844622848587981 1.4197419892224117 0.8789435229324758 +2.0238026898277455 3.367186477114638 2.2465123202246065 2.974550348523392 1.5279788514879575 +1.5911991983141767 1.4200021457820546 3.348292969071596 2.137981689361408 1.222359122594256 +1.1624211680548298 4.093591331879182 4.477942374718781 3.7346662334740888 3.023940798269318 +2.201296466210968 1.5445406340305614 2.40918715153177 4.205326941841909 1.9124451284777633 +3.4863078634451314 2.4479667709225077 2.7876004721158982 4.192307865634035 1.7468128365184388 +4.568603127940353 1.7337727773414575 2.033984147464865 1.1710206083518266 2.9632700157959206 +4.3135817844659865 3.3339587308090697 2.489617134111239 1.3257582517054294 1.5212589606674476 +2.4044132227574573 2.823049574038407 4.291381790857992 4.189384877422443 0.4308825419580211 +4.6243338904535065 2.1958465264780895 2.1549389433957287 4.20755181770614 3.1797437772205983 +2.099203538548513 3.635201651892364 2.6256225345357027 3.863298038903157 1.9725949554602187 +4.726151163156997 1.9876824154984982 3.78099428066259 3.6650459751933013 2.740922306714203 +3.712448385647507 4.985642222663445 4.795272722743997 4.162960272589196 1.421563076770122 +1.624277079317011 1.9691362305081457 1.2426763320010092 1.9957927574128593 0.8283188905158403 +1.768063834119665 1.698537074508053 4.006560074373568 1.4258551697011392 2.5816412948553524 +4.380920454860376 1.572891308033797 4.561329266519738 4.225944564726918 2.827987020412976 +1.6941587916812115 1.9204336388994352 4.494511265968315 1.743980643144671 2.759822279345946 +1.9005306897127316 4.483547613291271 2.4828737181103264 1.0178010562750215 2.969581507881258 +3.6935888087087436 1.9045789153113835 1.0166620537369555 3.7085422821411873 3.232147206231061 +3.3831913266749436 4.438455438978762 1.912121237497828 3.788812577061598 2.153033378912186 +3.0327072320018726 4.417710930344532 2.542730799520092 4.559414091721992 2.4464763938099092 +4.321879172455026 2.1667104647807993 4.371869881517744 2.8871575478106744 2.6170828936814536 +3.8447615679902687 3.638448137330677 1.4116828655754063 1.7175678104835215 0.368959118591709 +1.11591796211396 1.7476540826985043 2.2345087522496554 3.2182703898648177 1.1691353581576753 +3.66454390136343 2.9337906636077165 2.210235268050255 2.606358939786117 0.8312125226438538 +4.703067065802008 3.5756390009553742 2.4548629469409304 2.7613766665991997 1.1683512749779383 +4.585649573759227 4.98109050598212 3.9777783404823626 4.710808081996078 0.8328902285541444 +4.309969928427835 4.142730410620587 3.8373991731362507 1.400342094805601 2.442788623552583 +1.7769681268310538 3.731582873766663 1.5690009764456403 1.5613403240054669 1.9546297589400314 +2.2268944447946333 1.4621053315625274 3.098217757334086 2.480492507826849 0.9831006416421104 +3.962830321115017 4.8061222935051 4.646527890087215 4.008230684447646 1.0576221789584586 +1.4562591354433647 4.511932313493412 3.9036424577227122 4.542724615094091 3.121788681977839 +1.0898562032109718 1.7608167379278066 1.4750681582509033 1.0164921553665112 0.8126991999312704 +2.7888069462916025 1.586283201145016 3.4947839857113836 1.6522672459670895 2.200211647519237 +1.9468797442895789 1.6756826829822251 1.475417212729437 3.0899850579649706 1.6371857478399507 +4.16805788228892 4.866890419985227 3.9185512636265254 4.120429001649125 0.7274074077517915 +2.4843127729525545 1.9612932184360132 4.9317083699644275 1.2868698803456389 3.6821728734285757 +3.0277041614858344 3.456544440922807 2.6528026393332764 1.4693500792068872 1.2587549194888121 +4.9197907907940746 1.2823055791951496 2.0187593429856636 1.0615222890085838 3.7613297438681967 +1.8272713090906638 2.328673189455454 3.4368688679317048 1.2572350481547425 2.236561520269196 +4.935231714153769 3.400598501217511 1.3545652643451986 2.90282658914844 2.1799569326315944 +1.831602989466814 3.6329678655387294 4.948923148682823 4.435096013720868 1.8732148145284349 +3.3705161304222773 3.926708750256988 2.6884974157341333 2.5400234760736455 0.5756689509752158 +4.9390248071447544 1.4298215518895505 2.976619404071158 2.443545768141468 3.5494612250335993 +4.3574792285646655 1.5643314948782572 2.3200179228495093 3.829731253391684 3.1750446615149 +4.322997586213718 2.398775641099229 2.0899516173675283 2.1383648226758876 1.924830884132011 +3.836091915381884 1.1589028596690247 2.25472282872342 3.7462424344288783 3.0646324370521953 +2.4255158697489003 3.9579964152489784 4.214974659456172 1.406132624917634 3.1997015794174946 +3.392293639846293 4.212899291253436 1.5348276278398765 2.319106792869936 1.1351156081305502 +1.1954340057744441 3.5698600922705457 3.8905370356626494 3.283298433808364 2.450844336104425 +4.978976014517999 1.9411224138058891 4.065732177361907 3.424850197458502 3.1047196671397623 +2.8046454859109105 3.8944900595994216 1.2015179912171599 4.974261711263191 3.9270034850945903 +1.3505628984159261 1.7199909257883768 2.070345026893358 3.43324820722897 1.412084326935621 +1.1082100689395715 2.867328959292869 1.22209456846669 1.1102354265495404 1.7626717612840619 +3.0171444275213655 1.07783259980117 4.068429752665796 3.433692405980213 2.040544501943758 +4.596553182858342 3.2605969680714697 4.0813934042054925 1.291776691555775 3.0930147770940706 +2.625181836654317 2.4646445041662512 1.2003746829728374 1.2871099524171803 0.18246983884457862 +4.314254279946581 4.031268618870438 1.2191259147414577 1.8808316298465644 0.71967724556044 +1.652333994742964 4.061787075630268 4.423858358367596 1.2966833796246826 3.9477446088460515 +3.9846367027171685 4.869625791834829 1.6969788112120603 3.357892566644602 1.8819777338859074 +4.660989470744101 1.2242277497092666 1.7422669938338164 1.3575854670802259 3.4582236775830153 +4.971950357438401 4.608481934450337 3.4305463360751696 3.683733281604222 0.44295928017794334 +4.111365682079377 2.306145637857429 3.722345392454803 3.7022582207737282 1.8053317984588975 +4.946839567145594 4.7209300165679196 1.6568059521541256 1.034560277468651 0.6619855018857954 +3.7527102411655977 2.46332231093927 1.4600004978354737 4.533201458936183 3.3327294192483823 +1.9494613214727208 2.0470067958183518 4.859181631363651 1.1596419797649786 3.7008254151359448 +2.5157513812469583 2.818255369153221 4.845255406072443 4.6728842463585165 0.3481673152384014 +2.3618696774638392 1.5359944040724645 1.5191868516125275 3.939112593822551 2.556972930050299 +4.388545030106765 4.345538540189738 2.8654040266956153 2.9231266721487943 0.07198237265537133 +2.168525951012992 4.426862307725671 1.8401013486013085 3.008953993809833 2.5428919769155076 +4.696844260473126 4.033563863136755 1.4596274337740862 3.59096005171818 2.232155822025675 +4.588581078701711 2.16950332917246 1.2738744828673405 4.739319554127663 4.226256819005438 +1.8302169725730222 3.3906006503959802 3.3797587595740106 2.955695062807349 1.6169809030819466 +1.8507740008387343 1.3997056526271598 2.5624627661077293 1.984680063970469 0.7330044376723461 +1.610958393110033 1.3725414609528488 4.740130895922784 3.5811718271284283 1.1832281084727165 +2.5159299419240693 3.2492369305965627 2.789739276611714 1.4236653151655516 1.5504506466757113 +4.980074591488541 3.847352841004879 2.883491903144255 4.932728886315431 2.3414591128642996 +3.447041800559486 2.1152910571969143 2.9568847475818925 3.5219467060971326 1.4466703354281654 +3.1925944347217183 1.3049618652492425 2.8312942513222135 1.764237043179174 2.1683560138462687 +3.368727635244876 1.383954660629184 4.488019168363039 4.002296312445063 2.043342960328965 +3.8028769559394138 1.9569972595516756 1.4916394921898157 4.110563570681918 3.204065414819459 +4.789733849707465 4.281829411328239 4.066488835226387 1.8570199801015206 2.2670949561701437 +2.2953389683483088 2.4818380217147022 3.4023737874558635 2.1007019011143773 1.3149644849190278 +3.982010675806592 2.0520072731875016 3.389816626571322 2.9536037362692187 1.9786851239616123 +4.967801629887891 1.071757802615291 3.2349702093587345 1.2297784832615206 4.381774910060723 +4.2556274033013155 3.4790624217103554 2.4739164829265436 3.9395292024320234 1.658636130744057 +4.683745307215968 3.7776535562056184 1.761667923017649 4.93079090748372 3.2961102457169327 +1.4828507152098003 4.969298021389282 3.6277403201049383 3.62669384708438 3.486447463231297 +4.008241578544579 1.3452783410826092 3.175823721328813 4.847102220499444 3.143969628648466 +2.0927311218920557 3.0758426294267593 2.329674283791585 1.4562616908009711 1.3150504909857057 +3.782678957277197 1.2810495786901588 3.673711586974548 3.34697910912393 2.522876069071205 +4.634121840765489 4.677279630936689 4.4949564350292714 1.050173766092065 3.445053008454675 +4.685914659130265 4.226801380862544 2.0398372858778124 4.214008841428306 2.2221176735822494 +4.695195644100242 3.7918723205771436 3.6935862925865828 3.770195814942478 0.9065660735635401 +4.3696663573479295 1.0282608613136395 4.492674140974821 2.7488482622615216 3.769074075180584 +3.631811576185995 3.232163702298697 2.0128118944167976 4.324937205141275 2.3464104235183147 +4.458604681195453 4.92846698503893 3.7531767849197606 1.5444058213295113 2.258193914209428 +2.7835338627565465 4.53763960705812 4.27933974416202 4.602637457373287 1.7836502946372115 +2.5945845988146745 2.8016215139028784 3.4855301563437884 3.152494742644579 0.392143941668163 +4.956378290927228 3.5425369193149425 3.0869503208848594 4.066056576519269 1.719766403877266 +1.707681258890572 2.643472508143851 1.8520912779210308 3.3228770977835436 1.7432487459016446 +2.1311642492555385 3.51340226363984 3.314736765871586 3.1296705228213746 1.3945721360782224 +1.1739068240553214 1.5772465662218131 1.100516761627397 2.1883553951598036 1.16020508541231 +2.778347715527147 1.8801950097817381 2.1776989123719166 3.026123990149917 1.2355174605971397 +3.3604359313270082 3.227232462884763 4.808477286006605 4.516452298434459 0.32097002565902705 +1.417554400441258 3.0045230464330257 1.437742626645019 2.213128974928514 1.7662654026123477 +1.1374405037070048 2.1705441546556448 3.2771078338314648 1.1774423853569864 2.3400637062099277 +4.020203960120213 3.46709958990859 2.3241572606968295 3.9084815271534996 1.6780964887725205 +2.7837369982461437 1.87366559175757 2.7364310534715606 2.8197271333248524 0.9138753754353034 +1.8559257998000818 3.6139120486515086 4.810643373668878 2.2303565318429444 3.1222421170131507 +2.5655891948986325 2.0159272155475447 1.2518230510282709 4.489067194496706 3.2835770032031895 +4.673744855494824 3.5805173075760304 3.445537505090981 2.1895814637117597 1.6651042157791516 +1.3770316681909973 3.321505292932346 3.9430332126090915 2.2388877120447517 2.5855540149856555 +2.2538561463834523 3.286582934223013 1.1774744999028162 1.2641057974384058 1.036353993592014 +3.2351618124595074 3.660306407620233 4.478839515873251 3.767705734036555 0.8285283232718953 +1.1009232177150259 3.2036158436679476 3.526990436583507 3.2995354191182975 2.114959116438635 +4.721160908968488 3.282797865747566 2.192905808591706 1.7995490796157618 1.4911799892482487 +3.569521633908739 2.0334645967567035 2.252136431508415 4.607894167033045 2.8123061230720285 +3.0620515135783886 3.6098646958731306 4.30546483483543 1.928494452830801 2.4392801150386814 +3.4428215451668605 2.2205127280452452 3.4774580844473895 3.2872577369221547 1.2370185999458385 +1.8339606815223148 1.988251181576481 1.090067438927972 1.511969302216932 0.4492290514355242 +4.160057076482254 1.6184496562492647 3.382516203371733 4.164415686107383 2.6591605968210477 +2.1667908902150446 2.8677621004554785 3.487081848984329 2.0452970507431596 1.6031544036758492 +1.9874730979580288 2.5764147301741027 4.090077949443202 4.421716627564024 0.675896781308403 +2.35714561114845 3.4309957032590854 2.693355410901976 1.951073243676309 1.3054259213403312 +1.8302763136396782 1.3716419298056066 4.4155282717663535 4.256997785843927 0.4852601498182797 +2.0200040951901364 3.514949093098774 4.277363889874406 4.137539771915331 1.5014697235492596 +4.855314758765833 3.255853822497737 2.3742568924118115 1.085397294275435 2.054126176834295 +4.923186118188302 2.2595355957093024 4.223745279175196 1.6296420034272256 3.7181185983167615 +3.911148030999656 2.3958346420618044 3.123789870051381 3.577774982266064 1.5818587638619621 +4.760516836400366 4.45844909526493 2.5375897411746293 4.774838814660879 2.2575491881794623 +2.7652836457622225 2.2415666418079176 1.06929950918467 3.0083311451353314 2.0085126799321857 +3.947591691082963 4.9099406032646975 4.627220477245114 3.1003875233502436 1.8048086596303508 +4.46205179598762 3.632785942091121 3.570669285032915 4.201609095625076 1.0420013920474203 +1.2316490338669337 2.1142806838166384 3.564020222975472 4.422013186862683 1.2309307679853077 +1.297497107068709 2.5054775124650983 3.9635343730028474 3.223093173142522 1.416852084824744 +3.9161667708400296 3.263343858311205 1.3777547420137646 4.480608031912205 3.1707848072293063 +4.15704640596875 2.841825326316011 2.6057724207528175 2.944348453110765 1.3581016965051502 +1.3041910049438035 4.937971062584413 3.1070026728481173 1.7670626551403732 3.8729571077357963 +2.6524972636258557 3.148789391392508 2.989234088154298 1.0865186570240648 1.9663753171620773 +1.3436200829039362 3.597680832422383 4.5137380829567135 3.2198253560523833 2.5990382850902107 +1.577018026179418 3.0324998643338343 4.453714772220987 4.801890341138766 1.4965472287865085 +3.5313390575430907 1.010539472644111 3.786376174595579 1.854811366068299 3.17574765319411 +3.624385848406606 2.019212172252857 2.277636664588528 2.3681386586567785 1.6077229679106009 +4.929232305146568 2.4525556557242907 4.292993109713013 4.490847646857785 2.484567093813796 +3.6316173501143676 2.6700625270803884 3.5547118270801032 3.0150476955443213 1.102644572183701 +1.9924212284562435 4.057786489890484 1.2928861174738229 4.842984082545481 4.107180203588011 +2.3256657805561107 3.8783389125831103 4.152447718327741 1.136378377484903 3.3922659276198677 +2.378586812699599 4.363163822979068 3.7717522287542478 1.6032874686182197 2.939521274915628 +2.5276149395500633 3.943664615741025 3.471894579383106 3.938808961554407 1.4910418256101787 +3.262942111832965 3.0497096082527935 1.8416658888949708 4.515481875733421 2.682304984906814 +1.8402451174505212 2.9537227891808633 2.9629473810435463 2.6081527381717264 1.168636711751161 +4.346984349228245 3.225542910161487 4.347335398037146 2.978212247768978 1.7697822187648835 +1.398531028686171 2.5377247725987497 4.766073106786144 2.54748137278481 2.4939750737223907 +1.329519497633639 3.63432046254687 1.5607978293024218 2.7857199262268866 2.6100846023450632 +4.059952676615664 3.1671659052253176 1.1706212058747432 2.0635886701888233 1.2627189360634126 +4.285649414547505 1.971798318439574 2.8030918792614603 3.682629041278275 2.4753772468713664 +4.653494573696237 4.3546537749558265 3.294036482279432 3.765828692989095 0.5584744515894328 +4.051006794790769 1.8487048771437697 4.4182133822055345 4.144153773327504 2.2192887161633634 +3.6351847446576895 3.474891701042345 2.272793942264146 4.468438093325658 2.2014874739416754 +1.5679308480899241 1.2662016518453165 2.388531337682371 3.9266271996976423 1.5674116844705852 +1.0372221767633372 4.812494628592182 1.8231487286023915 1.567141292210069 3.783942638707139 +2.6109028368645015 3.8666194469221016 1.3096922579867 3.2948086463184487 2.3489383303947844 +3.5195864846281095 1.6022965344504105 3.9089603440767946 2.0859085136956104 2.6456603578896116 +3.2135360009689107 4.486118912935014 2.379489311247141 3.718847116977656 1.8475244516918814 +2.4856190726601577 1.3651381322587919 2.439168760791733 3.622149007811896 1.6293924642769815 +2.3078343850921574 1.211902823100821 2.9812748961640847 1.051343652568122 2.219391942306863 +4.406232141625283 1.5543386457273072 2.2715504659936236 1.9320920388979204 2.87202516278522 +4.911861063517398 4.218872031301633 4.144456971578592 3.6647841437500746 0.8428047345194193 +4.635023231721446 1.3270894447392698 2.3180095170545703 1.89731694739426 3.3345776609978115 +4.50945940718667 1.15427570745367 3.9378575875117536 3.9170167633023922 3.3552484258110824 +3.7239730099793595 1.2029858530294373 3.3105941310343585 4.797577815202405 2.926857824098811 +4.891077308059259 3.9111082306157865 3.8847406550212766 2.0472704422055172 2.0824591654413305 +1.380637411121759 4.711666277709864 4.154546441477822 2.032455343593064 3.9495599676122115 +1.923627082509269 2.4622745525017886 3.9510908277305417 1.807644912405388 2.210090832715576 +4.321654476302662 3.8787509997046437 1.634109729466013 2.64777460708215 1.1062006932266628 +3.124547094745368 1.9570592022129287 3.718023616198259 3.7858829126363016 1.1694583632275684 +4.535868457593772 3.466820991199826 4.595500901646602 2.26778541443602 2.561468694870838 +3.0113483021749667 2.1080184706516594 3.3376018103143847 1.3662497155002171 2.168463480496763 +1.8671763793916614 1.4054776340946034 3.7696182635448263 4.662125174919973 1.0048553718129203 +4.1657747108561285 3.183266980241356 2.733511919926962 1.82667124733617 1.3370420510151173 +1.8170580834996932 2.5089049178729588 2.3588131340649645 2.1880265930073812 0.7126149625419903 +2.15070292622315 3.268713496582613 3.163216243190875 3.2256315724551365 1.1197514495470222 +1.0045754896186798 3.9362654064999396 2.8320710737291073 2.6665514109326707 2.9363587191478318 +3.7148049012789555 1.6377370551980923 1.3624587687015008 2.211534876091207 2.2439120021433667 +1.990125084509184 1.7614003369923354 4.633700977906454 1.6760084142260157 2.9665232699874795 +3.485829226955192 2.565743444744819 1.2623632985592246 2.0828691256943057 1.2327966819343315 +2.288344548058024 3.871411780837453 4.509216474058707 1.1836948403776582 3.683095980229214 +1.5045730422600725 4.218675304784421 4.175672463784892 2.1962408665646906 3.3592410660018883 +2.4832243859894163 1.7159635283812853 4.682809345475363 2.672454628251788 2.1517935106976793 +2.9719650944664386 2.2135877228460092 1.6148742779879264 2.4323546510168343 1.1150831350502048 +1.1514529403402665 3.3480318810282212 1.5660785966143882 3.9127331470918048 3.2143034427306616 +4.9454175652979036 4.155836343127225 3.5708062362532345 1.255379395607953 2.446352378702858 +4.97229657829054 2.9231217414491515 3.174691612356829 2.9084035591899875 2.066404326167393 +4.662063573283022 1.7684877110929693 2.329188057622313 2.4493200764509386 2.896068537206388 +2.190087793175384 2.5831245964976968 1.0370177257171997 2.8220735133285006 1.8278134734295028 +2.505356759238043 1.0306139168823432 3.0649337194874215 2.6093939577872542 1.5434969794493327 +2.460136893228863 4.032396314427175 4.198303378945716 2.9194612802434756 2.0266812282547053 +2.1865868794629897 2.005126446220106 4.5695213630087945 4.751765076967431 0.2571782652366496 +2.404388893653746 4.826381248270964 2.523810909320234 4.648644708549572 3.2219505955510304 +4.590765160217904 4.301438639157693 1.0925627264399647 2.247569784313784 1.1906935539957966 +4.378472068092142 3.515903641828928 4.678586558789065 4.284127140152441 0.948484329305098 +1.274031491948095 2.01933548495059 3.923047417427832 1.2154564588870436 2.8082960742694647 +3.0909504457431014 1.6076680638791272 3.287561309763926 2.936194779073799 1.5243310215426569 +2.384982101763211 2.3121458730089497 1.9071967168097919 1.1860060979904041 0.7248593138618241 +3.779529999935233 1.7228413466128107 2.7687413669018817 2.863348505091625 2.0588634552348664 +4.697183468028422 4.444542604646957 2.9553184635979184 1.3464084317384466 1.62862484829017 +3.6204410614288682 3.9604000617243647 2.4156596255867533 2.1672581150872414 0.42104089148246926 +1.7973465613051638 4.901910950113154 3.4298158850783245 2.48002493107306 3.2466017465289707 +3.825967006768894 4.220707527761327 4.597812761177512 2.024256791061732 2.6036532814935156 +1.5579623731744787 4.480741611972835 2.8546916046678796 2.676665453833613 2.9281959956825916 +2.846613494473287 1.8095436109167027 4.9890710860984395 3.58878365951586 1.7425036070049698 +3.0306475517049116 2.6235720562391047 1.741181179443919 3.345639170934419 1.6552932989251365 +3.2242629550656736 2.715426235052083 3.0563318198253757 3.4014066015652347 0.6148100622362979 +4.037668002255366 1.9954192344350021 3.573996852411081 3.6684102770573483 2.0444299754252357 +1.2821452438828946 4.030208059062359 1.5591028550592414 3.277133816744809 3.2409072219800303 +4.015775964268527 4.696140487616471 2.084413026477554 2.739725286606445 0.9446322262688857 +3.701411143225425 2.354300318519655 4.3637967988984965 4.19829868574883 1.3572388144669163 +1.494970939489586 4.45675742424973 2.265606955607601 3.0584461182946034 3.066068022598011 +2.624983806758111 4.599657741532631 4.6255002225096495 2.4851776980376736 2.912098497207809 +1.362605379851737 3.8990045733878005 2.1432374100414555 2.6736333068759244 2.591262371190774 +3.639647062377118 2.4865357818626626 2.0089319937396497 2.7408367446939628 1.365778235922356 +2.8092907864529884 1.9527501840777663 4.137531400317816 4.798024587859095 1.081625191231115 +4.392883903532294 2.9172876655700604 1.399058393097238 2.4874360194288587 1.8335621382946228 +4.342154544066329 4.033553493072914 4.035693252345568 1.5216502765891868 2.5329126894988385 +1.6450938555509738 3.781592119474173 2.4397288190026947 2.503649487526476 2.137454252986803 +1.2218521089157415 1.3972894566861296 3.0212614058867087 4.983959686363865 1.9705234845544708 +1.17285086983925 4.382749949629266 4.391667938510055 2.679404735917705 3.638034823553591 +2.85188827998993 1.823533345859087 2.898455253506596 4.79498537145805 2.157392027158765 +3.354489030980616 4.562436894639902 1.1105740417326961 2.5898738391788223 1.9098340064108144 +1.8045288776579067 2.4499207279580557 4.87193695114245 4.25896438727922 0.8900932560596735 +3.573773953262448 4.604095057631405 1.8074218339295527 2.5485904753204496 1.2692094126223985 +2.9753669542457 2.595976121008175 2.052577548469583 1.1587548537098642 0.9710079371520034 +4.40152885380426 3.1191888652213877 2.9594672887199254 1.4194345540406892 2.004020127194916 +4.202945580955504 1.9362664695372214 4.953930765779275 4.179858475334801 2.395208154832045 +3.3747490969784573 3.5571273769454055 4.650126302348946 1.2124084559815285 3.442552225927261 +2.8265966741493083 3.8046556945564842 4.104088181078887 4.074196418695574 0.9785156947429229 +2.1274269583937544 1.8009959289685944 1.5467329257317983 2.092700100747953 0.6361111327171456 +4.565803202098642 2.0848420514803143 2.4370401338522854 3.511504144903504 2.7036348018772225 +2.6166285666080955 2.60175596104694 2.087876402641569 4.354440790752027 2.266613182668519 +3.395841945691565 1.2305848049425694 4.536968049315397 4.687584622337867 2.170489308343524 +1.7507131120206783 2.1652022415075436 1.6465382734804082 2.0644204526818895 0.5885802869252065 +1.6003940989239078 3.0599136595280583 2.6467758098870324 3.255554913977829 1.5813947468496679 +3.340088325490546 3.3780788091384846 1.0417353852641176 3.350611606874706 2.3091887500952777 +4.301160338014334 1.9408121598866521 2.166638175611265 4.774596358789367 3.5174833911756136 +2.0714835300302297 4.302981271772158 4.297695764681961 3.228435345338343 2.4744494368998966 +1.8553145420842583 1.7489320694676516 1.6434280710339895 3.103652504990376 1.4640944737288208 +2.7313309010719435 2.218350997010022 3.5775371409220704 4.598334316801999 1.1424426708836712 +2.3587948430245973 3.114172270713333 4.648699423377659 3.8594700916096576 1.0924641854013417 +1.8805640358353952 4.197031782723927 1.7631798731152104 3.8706147175310885 3.1316616110034956 +4.674518351757822 1.332321791177005 2.4023972519637478 4.55489003629059 3.9753620006406165 +2.907475255829672 4.351091564362079 3.3666765196886748 1.21109687793126 2.594330672489488 +1.0499252563243608 3.7776737078609197 1.4933739117663563 2.9714860240262966 3.1024872330550592 +4.1857799324593525 2.7228740463300145 2.874689096959167 1.199824774056939 2.223794984211135 +3.2438321320802195 1.913117946754316 3.2089971712864247 2.4332341273607656 1.5403274143338446 +4.060878464810823 3.4008794684371964 3.0984172439200406 4.066595728922285 1.1717372802959867 +4.8139736041650405 1.363407725803833 2.6774831740629823 3.368749247518106 3.5191268327840524 +3.8906658272350154 1.6003475425669262 2.475384633959468 1.4064293169834392 2.527493484615994 +4.138184022575794 3.2621168093288158 4.899115157036373 2.121956018632893 2.9120622661859907 +4.459449662794372 2.9668231320694076 3.7671677394278196 2.4290573382021505 2.0046130315081667 +2.343756564649017 2.629967273956577 1.2255785617047463 3.616471408375397 2.4079628681487644 +1.3469915824460843 4.347683412521203 4.704068353143769 2.673865525459478 3.6229649433325815 +1.4028390343800883 4.858830608881871 2.758791370290075 4.7568106228459435 3.99198681067601 +1.8587403464143644 2.5951482472695075 4.394165324690617 1.7663223959781504 2.7290758608778156 +2.7127292032884434 4.901221760373309 2.2236365189294296 4.919986342090026 3.472722569004618 +1.8175507284304229 1.3537531587809601 4.023090126270717 2.69840932403116 1.403526776885566 +1.874886873635257 3.490681417035318 2.2488698442726607 4.66586708227914 2.90734718515219 +2.112164237832485 4.880617679258306 1.290147352912137 3.736762148303179 3.694625612206035 +2.8884087764375237 4.444440295452573 3.6827138711339575 2.805481198364723 1.7862730055459428 +1.9946282165298657 4.717659030271327 2.5510160470216237 3.648275190492705 2.9357919613822054 +4.25244938537003 4.387433089805883 1.930640367695541 3.9236749120590733 1.997600384333558 +4.6108976680701925 1.53049301759873 4.870662151585885 4.0085440269715935 3.1987717129289917 +4.823211653257662 3.051937236345598 1.3276063317533269 2.600195902895989 2.181031241543375 +3.968584654890862 1.9110453475779892 4.049978526586992 2.6858579122912496 2.468662198739254 +2.424766356836976 2.282244870617883 3.364029529589391 2.5436253136219054 0.8326916906102305 +2.5740361589217557 4.8479856851482666 3.0376412589312074 4.091013931182291 2.506080691931359 +2.8711327834633944 3.8385564019566716 1.3774965411678832 3.1646590516451756 2.032205279117768 +4.979485997942751 1.4862182049415877 2.9705803388416174 4.257300560729988 3.722709873604935 +4.182672246342316 1.838235809872165 1.8579978707771585 2.4330959067888256 2.4139428236131306 +4.127912087000926 4.273882655842106 2.8869398588918798 1.0591889215927965 1.8335705319854743 +4.701607805637064 1.237655516021142 2.3648192777156765 2.4020299213452247 3.464152146880202 +1.9424124202427837 3.5138059425941 3.2411170450119866 3.2541025568884763 1.5714471755698223 +2.918450666702045 3.1323086364424237 3.5592441709838307 3.79450253551551 0.3179335296938611 +2.7669465593070415 1.69778931236204 3.5531441303727345 3.935413108777016 1.1354412316563405 +2.6991908008685903 1.4332101917779774 1.6547217863484902 3.2878488516699873 2.0663520789253327 +2.4026562991187284 2.689521113969165 3.2744654840309018 3.283262912895207 0.2869996807555676 +1.5337035910769137 4.229187571931876 2.7901512808703974 3.030007757694598 2.706134701104184 +2.592662025764283 1.6888210683731848 4.534997727721315 4.505359398878855 0.9043267699201604 +2.74836074690841 2.383072787379385 3.4386119171583562 1.4419464063555547 2.029805028914425 +2.523775407201036 3.3667064803067595 3.7581015325860583 2.9787983361911046 1.1479748542187491 +4.772281283742569 4.698566527282597 4.262863253392421 4.394362199083176 0.15075091388689207 +4.3900807848041 3.799043769846581 3.9191624479276657 4.174645250444877 0.6438914624623806 +1.2919345445042025 4.921329033566455 2.3540903061534753 1.8898335217088387 3.658966892326073 +1.0424723210977636 1.7459249647432369 2.6849886025772447 4.317347626692422 1.7774818157894219 +4.613805256948607 1.3589958823007282 1.6631851973529912 1.9639186703493694 3.2686732303912214 +1.933216273249355 1.0068990588666606 3.4503545033268335 3.3154908665208778 0.9360832132851454 +2.2255297258165854 1.9317293085210454 2.373714184914099 4.235413180644503 1.8847391957261963 +4.3987598546098745 4.9728698930347015 3.1155609728789546 3.0614323580441223 0.5766560874248133 +2.0157687501779757 1.3326183924616126 2.5952375303483306 2.673568217801796 0.6876264304438329 +4.701061092504981 2.1326856280286224 3.0774462024650266 4.721408350502406 3.0494530773080974 +4.32383875379588 3.078652117156227 4.21950823005262 2.4282968310578887 2.181496742137066 +2.2747375238153853 2.3028569117929893 3.1252871150679016 1.7443206079423845 1.3812527624525084 +3.143725140674645 2.4838013584889596 4.1000704912547885 1.5967073884421081 2.5888851312520975 +2.412482572707588 3.33101294997683 3.719301401806991 4.93736929776364 1.5255777440453941 +4.76551943021064 3.589150714579896 3.6050916409118536 1.9788637886060614 2.0071024843614325 +4.546666037569355 4.393170948541224 2.528590668575135 3.3334968294776535 0.8194111728641394 +2.84104700959255 3.293284776901946 2.862981502099672 4.646123252159898 1.8395960151589892 +3.8658516082079326 4.737008614407811 1.7169420961015973 3.8779674387274667 2.33000966970577 +2.8390276580156693 3.34346003670947 1.506359678881037 2.6864037847328186 1.2833378808522005 +4.426557272065979 1.3225768425948101 1.1075526723789526 2.4491771939894678 3.381516059924404 +1.0332342400058492 2.6368979092730864 1.491616566845055 4.3983195386406875 3.3197378406092883 +2.078118945937553 3.664244679778346 2.3443938117864387 1.3579886494504425 1.867830288820453 +1.0454043327082254 3.6476358681591377 4.899128930011267 1.1923002756518533 4.5290382684268895 +2.5237065002925827 3.871294942444683 2.6269740662950247 3.069035666967083 1.4182429510526984 +3.656131986355376 2.004901368489005 1.4320027147620893 2.0918822484407165 1.7782023372910292 +4.821117875933937 3.375027033749194 2.132557006639955 1.5917579081415476 1.543904915720936 +3.30276226729813 3.067130038729447 4.377430526164048 2.4691037018827826 1.9228192362808478 +4.351380214618605 1.9505502035806046 1.049570176630552 2.8682092947280737 3.0118819671054937 +3.698220108877624 2.8275655991585977 3.5487417295307107 2.4312980503184143 1.416587325760608 +4.800648189898784 1.6580529264026698 2.06355115291886 4.011529484470451 3.6973672485084204 +4.606289395907094 2.0736944516700593 2.0477327549969666 1.6910141195293633 2.55759366132794 +4.077166576838794 1.7318724782519719 4.44982764833172 4.299635633260464 2.3500983065091847 +2.6508838960118744 1.7842997739832174 2.140379512841743 3.31792253061155 1.4620450058909273 +2.3056107645171338 2.189815272495324 2.769162089150086 2.387178645129372 0.39914902915890815 +3.420010558635013 1.363376138738527 1.0254422410140727 2.6881922170196155 2.644708418674805 +4.00166931536603 2.168059367564964 4.155271860034738 4.9200991271679175 1.9867275075423492 +2.3293128836307964 2.987454041588148 2.9494228685593904 2.387546234945698 0.8653641633430976 +1.7699581600517362 4.333579764869242 4.834492544076906 4.087805210818287 2.6701493790303106 +4.193902663220291 3.0050160689121332 3.4599860958829685 4.308434619513804 1.4605876322141693 +2.729939760177833 4.822102190213721 2.3626679670857103 1.8149216970109339 2.162676492227745 +2.813889481653967 4.012507660577291 1.7264089665777225 4.418524264177583 2.946891636015252 +1.829535324676558 2.4329902804285886 4.589708627507639 3.5807944070570565 1.175612941341278 +1.5341648370138592 2.8829309637983953 2.814525671735483 2.3596877818839554 1.4233929783464403 +3.4076990167413856 2.1694243198545045 2.342142317705205 2.991782150450359 1.3983404940283495 +4.3262354750629655 1.8088392009585053 2.062597842142673 3.4653908494535868 2.881859160721671 +1.722363479289947 4.83416151936586 2.982557576240602 4.067346165844231 3.2954595015497494 +4.731364378620755 1.09728058135213 3.6993771547018914 2.9144021316217588 3.717896022272544 +1.6159388779282393 2.0359981833164222 2.81752910624897 4.94232243670662 2.165917015307954 +3.210991822314683 2.809118677132773 4.2096060786153515 2.11994846453245 2.127949945114557 +2.553738716405464 2.2681325646787727 3.548888235968185 2.016858294771372 1.5584244013193709 +4.172668418146625 2.3696609273565925 4.028903033006235 3.313303941088821 1.9398242374498766 +4.3668275230815805 2.3226829126977875 3.0560125774581994 4.353173276546434 2.4209818395477867 +3.484915380957187 1.1665183579840068 3.649513050875326 4.018779018152266 2.3476205210212058 +2.7795122634865854 2.0586759641527492 1.1090807494631423 1.5605430024562974 0.8505428480182262 +1.99768982947823 1.545253847774171 3.1183966403945975 2.47453358497332 0.7869294451708733 +2.7657021478815396 3.3665561720833526 4.639179674010636 3.045291059260545 1.7033808953459226 +3.987889850957116 2.9928201756072657 2.7534507647586253 3.6817697752059866 1.3608599648600235 +2.9947312105921418 3.099432374660772 2.532120903050935 1.2365928716742864 1.2997519816641867 +2.5435685610717464 3.171886668709581 1.0216702838330596 1.6178334650960915 0.8661375081817251 +2.5373395031224595 3.1157591392486497 3.2829261363299893 4.967581995916528 1.7811891086281697 +2.1743146347116213 3.8444034227168804 4.542102984285643 2.205688293974173 2.8719383985253093 +1.887810199383015 1.5057781581441398 1.1416633941560645 4.5017494417829935 3.381734278146392 +2.077765427179895 1.9570856527142544 3.3099235702602763 1.700661796335508 1.6137803645417705 +1.6624395240341587 1.527381274998124 4.194732511226325 2.6405897614239078 1.5600001337807954 +1.4077993493264738 2.0024563560952884 4.815437552761491 4.615213658230568 0.6274604080261769 +1.4955266470155149 2.3972767507272734 4.952517071049896 4.345047552440037 1.0872775476318186 +2.4495437386770416 2.3663210999814863 2.1742083657497644 4.82420413928506 2.6513022474524437 +4.767342108343769 4.2094286136265975 3.853459486524694 3.8207394533055163 0.5588721393676654 +1.2954618299753862 4.38488130078645 2.5753292535626144 2.7211355548178306 3.092858248305641 +2.5029114499990235 1.6991262118367403 1.0541542213555268 4.658038639550057 3.6924319369208316 +2.5786077706193704 3.708897551248486 3.6794192047638856 3.7423982387315347 1.1320429969370034 +1.917531811943035 3.737698350384076 4.8070380489810915 3.449346200259277 2.270756125995502 +1.1010198776963178 4.565307054205812 1.8103359639834982 2.536102474796282 3.539494691272398 +2.988098333044621 2.2728974007525222 4.218872991561968 1.589323616649967 2.72507656564941 +4.351870849620113 3.3280173441573173 3.0827045309294343 4.464911664756179 1.7201082993375734 +1.7511841950651443 2.2205916786687725 3.199390234596708 1.235533335902487 2.0191773830478525 +1.7325464401970918 2.8655178036758597 4.349078606080061 3.332542291521429 1.522159712145669 +3.511572269844046 4.076749174923652 4.8689123193253 4.043377798538527 1.0004659809538798 +1.186724440251027 4.172660545913878 4.203670074763529 4.496309035393218 3.00024198830352 +1.8217681687849385 3.4523682331170162 1.7030582897722732 1.3654507623236727 1.6651832969345248 +1.8728070419840477 4.459419270641655 4.225419890275544 4.706521303414622 2.630973468350734 +3.246458816615926 2.7517560444436704 3.7154628733062074 4.639895241005323 1.0484779612584656 +4.55178521800656 3.185507723502383 4.638102302526256 1.843085482305867 3.111082322488993 +2.9739868256634816 1.302369639350267 3.8682459958266784 1.4823252312662967 2.913232210507447 +3.1455416493741324 4.639350290896076 2.9862006700202666 3.931981034318892 1.7680398058240874 +4.589517902054794 4.713409241813136 2.540106208148527 1.1453217826141584 1.4002759220169272 +1.6613636341347324 4.789476304286845 2.9318648721023113 3.1003011988047717 3.1326441983281788 +4.280968966140537 1.9267104221683145 3.7325382227535626 2.6237684272854778 2.602288176049791 +2.5829196311012876 4.768618281739469 1.2561733312890198 4.746211805678027 4.117966384529762 +3.9100889145976296 3.516740602575734 2.70932681772777 3.6424002406859093 1.012595134889208 +3.196456534898402 1.2293426195268484 2.921807126564733 1.008597294326227 2.7440679689509326 +3.274610543529308 4.1075667996357135 4.500255658953389 1.8388868119963013 2.788673567153477 +3.0535652188430658 2.5119969563928466 4.09451153291672 1.513481285348659 2.637235924553319 +2.6677328203734336 2.564129828267241 4.794433697847113 3.744603115879909 1.0549302492615114 +1.4780342354683453 4.592512192789245 4.789153812402721 1.1237107975741822 4.809931958104302 +1.6103104393903505 3.0033367104184694 2.2141189076171326 2.935954126647435 1.568938582356566 +1.4673376385479506 4.356730615518351 3.2217085586323724 2.8582253619187274 2.912166171367809 +2.0399378097312972 3.5173287356957283 3.802152188608753 4.232167621331801 1.5386998474367992 +2.9699227898880824 4.947365696514253 3.345205153477548 3.169062825967753 1.985272416699211 +1.1601316063641995 4.233058321601225 3.4082102267331296 1.3467947737265429 3.700312455335599 +4.96986328649715 3.885207532336454 2.882155186631487 3.474200589101169 1.235716740850991 +3.334246494686761 4.113927571450867 1.046224057170527 2.2676407304613604 1.4490553030360445 +4.026127689701097 1.0451685781212237 1.4763591440254187 1.0854325641999014 3.0064831307900506 +4.506463623618857 1.412635170059398 3.9242462090062906 3.700005182155267 3.1019443157763673 +2.952978654680351 3.8764982671964847 1.5010274309286542 1.3678465161082802 0.9330732183351643 +2.58481694986875 2.920032325701793 2.094631680413918 1.0108763846077542 1.1344138968572246 +1.018053760450114 1.758034865071307 1.981638458176909 2.3280653907330198 0.8170579262185985 +1.8442939504584368 2.9626087094768265 4.743892323266408 2.8162641443046725 2.228537254919849 +4.6669821032754815 1.9311388471783961 4.331101510763326 3.855413318951401 2.7768899109905676 +4.227120087045563 4.259803041679717 3.6039145224074143 2.92126682117415 0.6834296302639198 +3.8079406986870623 2.632532032099811 3.822900927817369 4.270117108341264 1.2576119614614043 +4.781231527169995 3.0074596730449077 4.753480277856554 2.327778501511272 3.005045040968772 +4.208949968090256 4.138358889922703 3.4749442117009033 2.374870400527659 1.102336378038067 +1.4199659579711859 3.375219864518549 4.277122478114034 2.0074527618683433 2.9957333759718203 +2.460580179921531 1.3707090812200367 1.1104510605685722 2.6096901308035454 1.8535201108981336 +2.6596755813099975 2.389941355637651 3.429737062214981 2.410595326788719 1.0542326258405748 +3.538866424421354 2.92160894891738 1.8782322148521473 2.988295004034285 1.2701362867788504 +2.3211742633787686 2.793830490560989 4.219442753375283 1.6886358814273414 2.5745654647324576 +4.253317204492338 2.1283144967406855 4.20652530568737 1.9724456909250505 3.083301515104938 +2.791949117940328 2.5980033630723574 2.5852889288946908 1.0027086685502495 1.5944200313164616 +2.4392035075046805 3.5187392029821036 4.562602062078184 1.6389638175495285 3.1165779153874085 +3.652757445415645 1.1333818865160925 4.416825405693615 4.420065905305252 2.5193776429146477 +2.081289594933227 1.449938985657612 2.188498746740777 3.2393215221338134 1.2259005249682433 +1.3898933259822024 1.2349809584158171 1.243272185882745 3.3870034475426083 2.1493211867570685 +1.5045143454083387 4.892763809398822 2.587769997401894 1.9968492442086823 3.4393926450445043 +3.5511784526045247 3.9017455796950467 1.8083075692901578 4.476515149461147 2.6911389784770363 +1.8042921929865146 3.053561011330565 4.336924021547012 4.327751007305224 1.2493024952656664 +2.3560508147906467 2.3628005699105015 3.4521541942867597 2.0223972248203346 1.4297729018735787 +1.1241913256091465 4.419797340158217 3.453198125983029 3.8891881821210244 3.3243204316345953 +2.1332196979839475 3.442690728940673 3.269695215716178 1.4654382424231036 2.2293626009672707 +4.45331723891137 1.485625156768379 1.5481377982047233 4.028568663701901 3.8677814794692424 +3.5506253022485597 3.217286842570101 2.699480080838465 4.214610943048202 1.5513658686206897 +4.18616074637886 1.499526617572371 3.6872467504821644 4.723982496041502 2.8797263668946536 +4.368479402350971 4.604715871548462 4.678248746361567 3.995884418887365 0.7221002318156514 +3.7184548485215845 4.143463656451372 3.066954696804436 4.096183380209396 1.113527803676858 +1.2637669546489811 3.5704067174826304 4.737848794635132 2.4306975735820977 3.2624429117291514 +4.25089104275694 1.8608819618470713 4.251573010047373 4.379525250621107 2.393431674959508 +4.4467989691182455 3.776494443063716 2.16450203214455 2.8006162967368184 0.9240938887726453 +1.3996339958117536 2.7981578586475337 2.528962239771113 3.193745004317953 1.5484847816364393 +1.1843696760388474 2.681989785530754 2.0597131804353364 3.456771182612318 2.0480813103491005 +3.1862269316966003 2.6617825960887496 3.5442714085748674 4.644470783978889 1.2188029072785145 +2.73764883437066 3.2720400641073404 2.6652792819767566 2.6437864162459874 0.534823269591743 +4.689628529110859 3.1760875073074297 4.558333904070964 1.173525788232054 3.707793468591626 +3.596311430120178 1.9749637210626707 1.276133722764364 3.808493389382403 3.0069276470809627 +4.503334536557029 3.202243815834918 2.3660643497465825 4.049051259157405 2.127271021942755 +4.793419661287155 2.8296662068279135 3.948300174839939 1.6306503241232937 3.0377340996913293 +4.143125505142814 1.705731171137228 4.746559404299831 2.8023656762562488 3.1178166064742387 +1.571637169183715 4.707465362512547 2.316252869439646 1.5650590730408842 3.224548119942382 +4.03656041973796 1.681275593754266 3.0574239498314117 3.2744568795041835 2.365263178606428 +3.9090594874745306 2.1039432958523245 2.713936815101778 1.0389785436654413 2.462504756606504 +2.65565863004133 2.1373643780593223 4.780238462084434 3.531462587453287 1.3520614322945443 +2.9926894888079834 1.9042945787773604 3.106829118207098 2.1324226408299434 1.4608461463600895 +3.2551817020895664 3.7403649263190006 1.418004427250945 4.736523457848706 3.3537995344852036 +4.419640031548374 4.616150655854907 3.912911955112508 3.454712421033246 0.4985611682590173 +4.1567301703794515 2.204523392750515 4.225528373530651 3.4101763277112074 2.115634718291962 +1.9384781003364848 3.3316143862029186 3.930528569391864 3.897930496847187 1.3935176157233715 +2.459127473026946 2.2411247964800958 1.0281112315813825 4.758210202687842 3.7364640371922566 +2.6661917551398227 3.966618468761349 2.855682366192525 1.422473021821014 1.9352515759699822 +3.0924514048717744 4.889487437353745 2.800480410558674 2.6388518901622082 1.8042899657882303 +1.2117435124865716 2.228856045858274 2.2514543313850326 2.183399958304065 1.0193867289881922 +2.1720078226072945 2.3453876946124765 4.00061520397233 4.900187324150922 0.9161280365861203 +3.1775614109397496 2.1799756121885108 3.3873770883902603 2.495856554855642 1.3379036914456874 +1.4484146895282035 2.128894503259827 2.883171473684735 1.1129955187964855 1.8964639960096132 +1.165837859301535 1.5695536692376173 4.115630547527608 2.677481393891958 1.4937400855889496 +1.0354175864338822 3.3736607911609267 2.444929779844675 4.003121008376979 2.8098649770277593 +2.226999543872024 4.586253535627032 3.608364244121908 1.615045951607041 3.0885914609877303 +2.26231703995735 3.861898485156909 2.8832537426910316 4.856951358135708 2.5405005563940963 +2.6733250462126654 3.168717593266184 2.1499907377597567 3.9186315619843044 1.8367101406563475 +3.1411578293893947 4.358873286152134 1.1651661747593764 3.125453735292954 2.307717108664225 +4.035960055313868 3.221415824196187 3.8754214215554614 1.1419136591167471 2.8522880274894753 +3.7610010614858447 4.433491664317526 4.385145626446826 4.482325542734875 0.6794759355758458 +2.2272677773336906 1.824746277812372 3.989303965651603 4.147151170734189 0.43236477392275463 +4.294304324216926 4.774893333421221 1.2443167224934162 1.3541241853508468 0.4929741115587635 +3.016500592007797 2.401074588552029 2.903981343228255 1.674048005452022 1.3753127575584125 +1.08857443794078 2.8513408066396004 1.0374942707813188 3.523466751100831 3.047524313852405 +3.8926792688984224 4.867136261117917 3.616559188024802 3.9608245002518823 1.0334819954349825 +2.6467303293493183 4.1028359535836 1.5314183768515761 2.308778837672907 1.6506159077674794 +1.6819081173214765 1.4908329613790823 4.2011402477820985 4.258593994758846 0.19952605910025492 +3.0283690108990773 2.2168817910220517 2.531479490912068 3.7735526385495186 1.483663443003752 +3.529081097651949 1.4236930036762745 3.2766014686185665 4.6248877545575775 2.5001069847320005 +3.0523187445774083 3.9912402969804774 4.6876751841693025 1.3270762648837766 3.4892977485262033 +1.082553692546833 3.2042255159283486 4.200221537658813 2.9625888803860896 2.4562625919227337 +1.9963052887506016 4.409414942641534 3.0481872367067084 2.0584877707887124 2.6081800617557023 +1.3091551188746187 1.1638659822250585 1.7499015374687374 3.5444726722021853 1.8004428596450566 +3.062435639760701 3.002890271240993 4.841305692887872 2.4392765100117804 2.402767122777514 +3.3950415560602525 4.938513206669581 3.1071887986313107 3.9888493236055322 1.7775348147174237 +4.553429336991723 4.235861200710852 3.3678788313261774 4.914904005818357 1.5792835121324686 +4.428791753821766 3.8492904739294533 4.8955745686883105 4.185051888110747 0.9168774252930185 +3.891514580970491 2.025124552914004 1.9765615943098123 2.4904908094235654 1.9358551017511962 +1.2964228041450894 1.8285156799258449 2.740570416340702 1.0607016663331965 1.7621242424155037 +3.1349664597243696 4.9427470738275385 1.5160895410341144 3.973945996704344 3.0510865450535904 +3.2889857104907962 3.483206115967524 2.5768010935672536 4.7564631434502465 2.188298018461762 +2.3633105255277176 4.490311438815272 1.887635939843848 1.996150024741449 2.1297671684358495 +3.7050512671758726 3.6419013688563453 3.469584615589218 1.2585652127412126 2.21192104502582 +4.380087610680473 2.481171983274914 3.9898914030368378 4.185969318356118 1.9090120766723824 +3.7239215655322626 3.12099986266737 1.458926574240011 1.6334559584807837 0.6276743468941242 +1.9731334460209968 2.633462108720116 3.974068376174777 4.282414504826531 0.7287738180234875 +1.1371806531645499 3.5267863060430025 4.907012870878557 1.872155329531239 3.8627160745440947 +3.963437647851951 1.4660469312910402 2.939127403543576 2.9778346011625434 2.497690661053152 +2.89983595996992 2.67836274432954 2.5754360579718902 4.586716264213187 2.0234372867139037 +1.7597625892505122 2.884146450224601 4.218150888267836 4.750808164901976 1.2441715481276276 +4.272696742858899 2.675930276997437 1.7680669599208811 4.783147771384144 3.411799444010985 +4.520356360390602 2.9972699147889204 3.950423400822683 1.383359438166806 2.9848969344253846 +3.0766295747850054 3.409720689819959 3.3970458935181225 2.6090748028339203 0.8554812275376239 +2.5183442164227183 2.7428440818224558 1.1459619832483696 2.9501893701278767 1.8181409882433637 +3.645085059849489 1.4250373411762483 2.462522567203789 2.0711573003059316 2.2542800725110204 +2.7864483482075695 3.375356610189612 2.397594381426505 1.3501354038256022 1.2016585416778922 +3.096098992922143 1.0553629107044458 4.181230016432101 1.2385164915943276 3.581084562884321 +2.3084592692882318 4.077859358816172 3.060822416045723 4.607253617989707 2.3499417310153445 +4.812573960022917 4.584070272210924 1.8857178319477463 4.987018563554857 3.1097074079743385 +3.2988314705612742 2.0524335042084374 1.803310025231617 1.612578120741889 1.2609070346059483 +4.5127084732818465 4.755696344172591 4.749504026476663 2.611254354781179 2.1520117945554715 +2.8150066379574668 1.4966412836013308 4.153566111972674 1.6566311797331692 2.8236096159711033 +2.9648873147804236 1.1766349775955507 3.481389317113236 1.774840784324459 2.471872633492812 +3.909393586051655 3.611185561893837 3.34392718000845 4.829630545999234 1.5153357771096332 +1.0166849654738113 4.383043351246206 3.1514707618742337 2.101941181415373 3.526170886630181 +4.180642946977553 3.407444887797972 3.4833024838733766 4.835934486560219 1.5580271414233091 +3.263494149846739 3.8618651227550274 3.256138015629509 2.7178465201700375 0.80486368740502 +2.4110097267210002 4.807812866913444 3.1288290441426962 2.344271999045805 2.5219427134349277 +4.280531657592412 3.143331836788514 2.3923466733370526 1.7666259503204138 1.2979791429945569 +3.415470175577212 3.6998956383815296 3.81374115288201 2.7043034964816095 1.1453164441894055 +3.816661163813515 2.1528162558952224 1.0735622890220617 1.1882084811901659 1.667790042836411 +4.3235763662693945 2.7585148341837114 2.5935424276755206 2.5001948610155327 1.5678429026582117 +4.436919053174281 2.414176383741135 4.245376814165624 4.790086226657673 2.0948021984910556 +3.352362594063179 3.884284828335001 3.1976128922323914 4.732877912698078 1.624801509839966 +1.9146958623977643 4.374645522645954 2.0487785395354496 3.791324738657725 3.0146010659838014 +4.84336939404703 4.337371762389266 2.9329170287851887 4.441998754991805 1.5916536242581196 +2.7648765925844687 1.4467107354010462 2.319398397510243 4.340712201929099 2.413145400297781 +3.9702787500095407 1.999493166125716 3.326496488223609 1.4176974424265678 2.7436307358826557 +4.15736889307404 3.219039947868976 1.7328257458302296 1.144578021166176 1.1074730673845223 +3.554385828338971 2.756168741669451 1.7363434777815292 2.832885379276471 1.3563018318889493 +3.341536936911747 4.38509596469622 1.1712255593500762 3.8967067134328435 2.9184350199603224 +4.4308842919019025 3.860479453076336 3.721098639441843 1.7785625666910163 2.0245513266138317 +1.4390339593217116 3.828361067392483 2.3317475831392525 2.6520118185265864 2.41069558630493 +2.513683961064613 4.092138696213823 2.4726047580333734 4.25919219736095 2.383991197399443 +1.0856749868498872 1.7235091402216631 1.8943466260240855 2.139428716491148 0.6832990840585076 +4.853163568277362 4.269880522818804 1.5514385570770428 1.1859238368254275 0.6883459318104723 +1.4596436239401243 2.62386724300434 4.81070011945382 3.5696859949762065 1.7016264843789652 +1.713491278726313 4.535589707132063 3.748769837401064 2.0355471275846915 3.301419632982266 +1.7056654817551204 4.670579757554274 1.177096945859346 3.523719597666919 3.781184276495133 +2.1419726536760324 3.3851352922678357 3.484105107711972 1.7741382202244296 2.1141050357762188 +1.869864666268199 1.3717917249084834 3.9662547401025137 4.0726175487916745 0.5093031533251741 +1.2132705113714386 3.5740651280037987 1.7868141668550743 3.895330488050099 3.1653107744210733 +2.78232460471004 4.108934093926337 1.493976498997231 3.876852223645187 2.727267763897642 +3.9977238071205843 3.800255064206227 1.0309922882149078 3.0625842004830415 2.0411662358616134 +4.39448045955335 1.9427258780745134 4.555283654720947 2.7460986025556315 3.047006905272924 +4.9790317758596885 3.5792301365401595 1.6834352518610092 3.2391858553595525 2.092798263026736 +2.6022367830680286 2.6904160844738616 2.520253192499673 2.814543250038765 0.30721690572425003 +1.52036662221012 1.0800311864511443 2.650672139247624 3.4361533614878366 0.900486560964141 +3.31910086387166 2.242228806327171 1.274572819098867 3.1211261260947776 2.1376184280403354 +3.731040468027892 4.242914060051564 4.378563028533342 1.9106930388212398 2.5203961713057783 +3.4081652466239603 3.1649243563926417 2.220990724402422 4.091308494945519 1.8860685813325626 +4.094946145043058 4.307681842534862 2.0607749228644106 1.058263035675636 1.0248348944791656 +4.560751094901218 3.4135916254552083 4.246584800746438 2.075248993011695 2.4557430725323734 +2.260657296985668 3.609814227499481 2.7448258213426957 4.98804655972529 2.6176828884078382 +1.3001302969486006 2.3753497913062196 4.971243664337564 2.648214822938804 2.5597968589357083 +2.500452559495929 2.019530547610249 4.78545544364021 4.172059645790975 0.7794487708215778 +4.735304108944643 3.441862460085351 4.148857608881316 4.569934503592389 1.360256244339045 +4.12791619681868 4.590497533758233 2.3882946639633342 4.904179373970392 2.558057342463628 +3.9555231547097947 3.929244275798972 2.0396738859248953 4.740559959579802 2.7010139137627234 +3.7109165605012033 3.1983182969172956 4.887515664805871 3.9480469437004113 1.0702142111581054 +2.8677790260577227 4.900543173904845 1.62785064657437 1.472375551005523 2.0387012007929903 +2.68472918978829 1.5524925674251842 3.021448218262149 4.783379062546194 2.094363881721536 +2.799093734679022 4.566220238571793 3.215752251842417 4.169796848940784 2.0082174120380674 +2.383801505271913 4.795447805322791 4.250333267774114 2.754532151081805 2.837861669857615 +2.4607621718950154 4.67442478273842 3.4544621861409213 2.9323251573634757 2.2744074462300237 +3.383866061384085 4.8309685880791715 1.0885583666610739 4.257157861519127 3.4834075962456663 +3.6295341209503955 3.3596036608269757 3.356286865822384 4.339760986263256 1.0198449876718463 +1.3934370236359532 2.420375164338527 3.516063155429798 3.701754946830657 1.04359158018035 +4.130980324262884 4.908635003903862 1.973086313807194 1.1860216259583027 1.1064436829889648 +4.913177043444703 3.6629616887384375 2.7398604174161263 2.56695223171861 1.2621155548619627 +1.0287651991278568 1.6723722006770014 4.743086491733575 2.2611830619898026 2.563995828198045 +1.6143661739430706 3.4319014396792253 3.9420847122516953 3.8176403620213093 1.8217905583515515 +1.3099335580707918 3.4758507610880836 3.8615718834606767 2.952865416262702 2.3488177395987266 +3.5769244568397998 1.319671327923365 3.730279120390333 4.366595560051259 2.345227131726433 +1.020834186163949 4.51112848127456 1.609474168829868 4.202386342742136 4.348028036720108 +3.2795317674156643 4.531681311076047 4.625372940443583 1.2089439153010093 3.638662633925484 +1.7979698541698026 2.5864635191963665 2.059509956948033 4.21334945305655 2.29363180017718 +2.112772605779828 4.979923951295106 3.2432810045338134 1.8985264709055971 3.166847264047275 +1.141757217624423 2.682538541129491 4.858792984224936 1.6977354111068328 3.516573910417545 +2.34301290648086 1.7991489817758666 3.627995202719826 4.988244229039567 1.464945521922 +3.835494574404278 3.8998975949113865 4.970505634601897 3.09107911939316 1.8805296528159554 +2.2316286640303242 4.704665581084757 1.6205269509691993 3.100147999692736 2.8818726621660145 +3.13760103414209 3.450459840945176 3.294487791344814 2.041778572620298 1.2911858966359713 +1.6055876178938489 1.329185665112806 3.804896680644364 1.7458010726200581 2.0775641416057793 +2.996618412683811 2.623808807421857 2.9071282598903254 4.318351229527924 1.4596360066154628 +1.8175722871225783 1.3117550818931871 4.317895949288558 3.843406079026418 0.6935356386570588 +1.9752594245211337 1.0655650694861323 2.0530700137096525 4.2493528697175265 2.3772257366890193 +2.5659867986181726 4.9833449689390115 3.753616946130325 1.0271844912218242 3.6437692647580344 +2.317102104765515 3.068450731540505 2.8961090543164003 1.4902847087869961 1.5940096767083445 +2.086268483300369 3.741891684486093 1.7498047732885538 1.2972000055215234 1.7163738695604496 +2.322557173966543 4.972624688349546 4.369316258894708 2.977756554169044 2.993208352688513 +4.705731960243041 3.3638262213188987 1.903971107631821 3.492934422810304 2.079787351904166 +2.1361361457040067 3.752564990076192 4.376538283442052 4.266524567763827 1.620168271061907 +2.5857977877847977 2.6046581432715166 3.8147238578850513 3.0352220585020064 0.7797299328937489 +1.0011709785582932 3.8354937311660833 1.401052770668298 3.087664823092128 3.2981882422523316 +3.9037418896081983 1.6566746908390968 3.562060131570437 4.762781731952424 2.5477526091455385 +1.968385843471264 4.804002160879742 2.6617540255465495 4.932479718939202 3.632755851166819 +1.6842605763900806 2.0641926419703673 1.4765997437250382 2.410679725027611 1.0083916827931088 +3.108508901997567 1.6534643679743994 4.462748245912197 2.7502841694383084 2.2471510428104877 +3.940788135200134 1.5777954335599094 1.4201320934841357 1.7605885902839402 2.3873929576460937 +4.218523771558726 4.8586938709610275 1.1391764153963164 4.476188380820948 3.3978620651162275 +3.407236654645174 2.508530088028514 4.95930606327592 2.33826723134085 2.7708334578951983 +4.321459099926374 2.378928966809788 2.5701258923158785 4.30154893496192 2.6021623836093735 +4.50784834643219 4.425229199250788 2.0621865343117634 4.908948179000067 2.8479602850372467 +3.354199897537942 3.6417926585086415 4.116912161905215 1.8682607652119856 2.266967732459631 +2.940321304438016 2.9508686396349315 3.723684431327607 2.3149169908116316 1.4088069235128313 +3.6458425735400968 3.8667239533941036 2.8030414827488785 4.608901251167147 1.8193180280417969 +3.968266279182008 4.0803004467033 2.9570047940850785 2.2782641115935545 0.6879248278418573 +2.596872675269342 4.818938191337144 3.8733684673487874 3.83289785789949 2.2224340323003657 +4.717772637339262 3.212633699025635 4.122288098346974 2.029331097114261 2.5779666857112224 +2.0118499653210025 2.1103195957901306 1.8161125580808979 4.776527375476409 2.962052018310891 +4.958095494539017 1.505471492881636 3.8781345974744954 4.551092821716234 3.517596518703534 +2.3879076588774883 1.9755520312257357 3.097908072379552 3.560006515376885 0.6193320068239897 +1.3674682324097964 2.492819382630055 4.123759461192842 1.5000542940547876 2.854863221832 +4.962791869130783 1.3263681528426794 3.8152918640559155 1.628476963156388 4.243316728124214 +3.7652467266127876 1.2009317183277237 1.100799228269575 1.5819917671615915 2.6090721954751217 +2.565859575366324 2.7111208009433243 2.8683974826837346 1.5426586161370324 1.3336732605584722 +4.4568944402578055 2.731561636826732 3.2813516054558356 1.0666088978231758 2.8074647893798015 +3.7004018920364956 4.956985242162062 3.3207374089987565 4.802983028875541 1.943207089699064 +1.7382165216943672 2.919511812232758 1.7434812054424143 4.491401217027574 2.991073879648974 +3.554870292091225 1.602061091480047 3.6197828802400034 1.4895718224697645 2.8898551736442206 +4.49998315640625 1.6664886246763841 3.7564795312382193 4.623167472467824 2.963079352433185 +4.174494866106879 1.037422100000959 3.085448674839801 4.8066775384718365 3.578247383963758 +3.1521283432686396 3.2197621935569023 1.0568491718135569 1.8451492031491994 0.7911961053421523 +3.7308178060363444 2.218194864096551 2.885538801551491 4.472310445331599 2.192230009371102 +1.6809666668817105 4.670563983785039 2.131627758214881 2.153881145340975 2.9896801384887586 +2.748492779893587 1.5676173004855092 4.887775571935046 3.5479148917947865 1.7859713155740151 +1.9139988452310899 2.6981464153117938 2.554141815469641 2.8920481614743467 0.8538548532003108 +4.782438835464225 1.2820101725568778 4.448291507443404 1.3093000363414644 4.701730349536651 +1.4912103889221378 3.338515064608826 1.6416084893052516 3.3148031602397348 2.492411477195821 +4.154444146347277 1.9483104608901862 4.365608134314684 2.674825033278542 2.779527537704543 +1.7707854747148684 4.14684898073933 2.179710460858571 3.1996920677301954 2.5857378565929063 +2.7291774243086846 3.572112841703448 2.032531420854816 2.618781244222293 1.0267565306813888 +1.479803252798809 1.1236599787258172 4.249039594437172 3.6176966316187205 0.724866862511876 +1.0435464364478264 3.080666711160028 4.790835171738079 2.5149151413043445 3.054451014269669 +1.1660674740584223 4.243488030782566 2.7993503986719923 2.5792342687918275 3.0852825467988767 +4.0054661151624895 2.721059126244551 4.956856599344223 4.328874128848684 1.4297074163726389 +2.690303581129187 2.085319042557031 1.1751062825784087 2.189971544898723 1.1815065774577156 +2.957103816481862 2.422036617584618 1.1663643057444855 3.8886922847240584 2.7744128266122816 +1.4590156019898974 4.64939868037805 1.2232516788953478 3.422606285244744 3.875010305965104 +1.5907789165253052 2.070685058483964 4.610775816835087 2.245196730808604 2.4137676601809743 +4.253883466385201 1.3978565384519528 4.158672552068975 3.8273157737038077 2.875184711918239 +4.124820583250855 2.3101431077937638 3.130973598853178 3.599766787973092 1.8742522226468192 +3.8374312862233833 3.0537676632517052 2.6003339640938905 2.1608592684213987 0.8984802068523967 +4.5569084951050565 1.3666810269165404 2.709054439890739 4.77438679030441 3.800414321682541 +4.922315349247656 4.860765888305934 1.2384566466152949 1.1093713469298159 0.14300821912430917 +2.7312046523725786 3.1752735994354966 2.838858120909109 3.817670635412597 1.0748354145143382 +2.2987930490735313 2.471778266285039 4.499419323063231 1.2611267945589772 3.2429095555596654 +1.5259446532495282 2.601643021277882 1.0648366975429657 3.6147768717677033 2.767547988943308 +1.8550019158953934 1.4418154867024024 3.147484725402898 1.110424853105712 2.0785417841825273 +1.04268613738738 4.128444005149741 2.765131578513791 1.958499346467891 3.1894446501283986 +1.0391167417005476 1.571038260604948 4.429349866458438 2.112761193997836 2.376872646913658 +2.851389443110523 1.3465770452320878 4.177241838560654 4.245383460378901 1.5063544182670516 +4.928774144076346 2.6143349343001088 3.2978323036661186 1.9004946347928504 2.7035497806775877 +2.6885655516772213 4.805748511014919 4.360638647386003 4.371140679366346 2.117209006212104 +4.8722696339207205 2.29991415740604 3.295434842566293 4.66449476885804 2.9139900101635616 +4.677643171981151 3.1276752098834364 4.379400383964799 4.322980642253953 1.550994477999216 +1.6093918305699022 3.905555445577192 1.1226876081631265 4.352732890606615 3.9630240818746962 +2.6383447046955983 4.058045338902554 3.1171803334361083 1.1583078328012069 2.4192418987177087 +1.9279584337126852 3.938077789347084 2.0940488650829696 2.743985017762343 2.1125806082740883 +3.819598728140766 4.706578004588255 1.2488061606335008 4.304543958460416 3.1818651332065278 +1.7337501675916833 4.022253530236291 2.6768218410943576 2.241608342852088 2.3295189267073906 +2.7111501895004215 4.60973531718542 3.502851304783638 3.27864441153948 1.9117777637698525 +1.3171629702032397 1.2008459616284206 1.3186443255500406 1.7323768512700135 0.4297723226575003 +3.7684421451234953 4.925164734182284 2.5486541142761756 2.612772333478333 1.1584982926498097 +2.50681245944438 1.3229284203265896 4.899296229851494 2.591413169465903 2.593820664288997 +2.533994606041288 2.9024004711326725 4.33332934657805 3.859681627323225 0.6000542003761231 +3.6809902110734334 1.8809498481464288 2.164917571400596 2.2241555062728287 1.8010148364448053 +3.5581194911897485 3.354063116823385 4.985716839419526 1.561420539286817 3.4303708480311723 +2.802896524684629 2.275270660198107 2.3280363752203628 1.8238103501383458 0.7298170573816156 +4.623156681984661 2.2968864114643117 4.987818738787261 4.366120560173861 2.407912373156057 +4.982465175750804 1.2209722288118496 4.752564313881589 4.169895174171236 3.8063542289495733 +4.7303341707068025 4.400990223878679 2.7847671232123457 2.332159093993894 0.5597512513834485 +3.8484454623493987 1.5918450762103342 3.6303569009481804 2.5958163915507435 2.4824422185233805 +2.7901480242936207 1.9884365236153916 4.014999903387331 1.367686951222408 2.7660454076207603 +4.018248628560279 3.104259576091507 4.9638011693484865 4.244790724757856 1.1629067062594407 +4.576987436855465 1.7415506794995377 3.5901474054027362 4.30819427584175 2.9249432324597953 +1.47121119003523 3.243880502246939 2.6746232109726717 2.3406758772308645 1.8038506900989326 +2.8306861649402393 4.1915982638375775 4.26725506612718 4.5472693853902335 1.3894206562152118 +3.0881684615501306 4.478921853228512 2.8313774877004194 4.055436527300637 1.8527049222398935 +3.615082123137065 4.489779011320028 4.476250495501585 3.4282299601954347 1.3650793708134148 +3.702534534587003 2.352261935282154 2.2439314735981895 4.9662369467798975 3.0387798837277695 +3.235892149843743 3.241983649044866 4.590275955634313 1.0883802713124262 3.5019009823572644 +1.2934658123215184 1.565700634908532 4.756618162795947 4.821243136770554 0.2798002607043129 +2.7492322508921005 1.4765466178777342 3.6369205027979863 3.1188515514755477 1.3740903022747484 +4.507321783599481 1.832277852101552 4.399023926344711 1.5927124794950784 3.8770148274365908 +1.8358369498055516 2.0011516416142143 4.466525628674638 3.3780240320259383 1.100983502707721 +4.725297877741994 4.542657701300982 3.4045972763770096 3.4606016011011675 0.19103381490776178 +1.5036282366677831 4.369420756370179 3.4830120440073875 2.610859137583255 2.9955663000785457 +2.5257242593812155 3.4027543567582987 2.243180095813032 4.377599898340298 2.307580916268331 +1.4071122915460155 3.7105618023310742 3.314655218612811 2.87977199345263 2.3441422883992447 +4.568481910001687 3.127778301250303 4.5791314774784 3.711418259453274 1.6818302878128875 +4.802481014404281 4.880077804916054 3.2528912032608845 4.058408215753665 0.8092458954563945 +4.030803877883562 4.184799633312112 1.8055252003349036 1.6853008159815825 0.19536784608308724 +1.7902630011649316 1.7253899178416812 4.67864169380365 3.117239361953255 1.5627494229234948 +3.7158019393641797 4.4172412840265 3.5549715089806404 3.110012217080362 0.8306659531295973 +2.502137143531 1.993987503192538 1.2073509305993686 3.19005366834361 2.0467843567983945 +1.3732701078917535 2.9960000327512604 4.05440767444423 1.6241146603072254 2.9222553864434344 +2.6573363028595645 2.7700178540614617 2.537769730822579 2.4674093602636957 0.13284469777318603 +4.188902045352095 1.6579921944938203 1.1111772509684323 1.6695755987914778 2.5917780360252616 +4.980465440318678 4.980893228175094 4.601227478050349 2.4396286577631745 2.1615988626175198 +1.2806251962978221 2.798486980873582 1.4389711619923906 4.612233245187024 3.5175981359041364 +4.057093482651586 1.0910369731440093 3.6135913480345825 2.7449684697731302 3.0906305056139405 +1.266203956015561 1.9789451098350432 1.751958740628547 3.3393578717602033 1.7400678015139135 +2.0397577122776553 2.898668041283028 4.088365037814944 4.445658907536107 0.9302611797836351 +2.7957832002702694 2.754773502739212 4.438815424362375 4.905689631607372 0.4686718688829458 +1.8308944707930963 3.800979658842926 4.5376163440054 4.182285265998827 2.0018730786867196 +2.103052348937737 1.0978334912705452 2.589759786524252 3.5901598240418977 1.4181908146913942 +3.806822303377175 3.4398105887885313 3.6834677210035833 1.3484629318451797 2.3636719239433326 +3.395859285621549 2.0338691980833135 2.1779025501243057 2.4528043732903435 1.3894560125935695 +4.558495754191791 2.6830714930257753 3.399964038563468 3.804351068668364 1.9185267862313404 +4.1642644849631445 4.661300106155281 1.3647868260893925 2.843069910479211 1.5596042082294237 +3.721400311640333 1.396905413307986 4.8582177951598045 1.5772664914252577 4.020934964638266 +3.870222350815151 2.26898058731047 4.6594401563976735 4.436167113052722 1.6167331372481044 +1.9611669730073125 4.017548075372661 3.6140602175448 3.7171747373559363 2.0589647501502317 +4.334665772802383 3.9666637072487023 1.8456547509469377 4.914203911928057 3.090537084975637 +2.6016950796585165 1.332102771373687 3.324790359809761 2.1756536551003682 1.7124192814163133 +2.4027590667181484 2.1587427681058156 1.851591496119545 4.474727671541724 2.6344614912343967 +3.5016528304101784 2.935219965562874 1.3125803550006534 3.5215962610282787 2.2804818489657346 +4.619666938683425 3.3549098656153027 1.0966293888016736 4.4984765417463795 3.6293490471259227 +3.004659868483265 1.017353439199868 1.3614434673309423 4.034046269577822 3.330494345055851 +3.014644655051111 4.870959076139429 1.5782337289021515 2.058259333293615 1.917375239960047 +4.710918140649303 4.788129388559394 2.815828868547078 1.5701760253713783 1.2480435018522142 +2.60785219444028 3.4842168905557886 3.950101526018272 3.5970183131639564 0.9448189433945288 +4.526360256798627 4.7641277176881145 3.1098880796331936 2.8150491604175856 0.3787655656762659 +2.4864132847059626 3.832441762585517 4.907435329213007 1.0675399768984666 4.0689788620720995 +2.6350737788974206 3.297589989928122 2.7970068271061757 3.022744158277802 0.699917904159456 +1.5781711264344285 2.261126469846259 3.9387094018339663 4.682278949373023 1.0096156066158095 +1.69644624543692 3.140821241256554 2.8610394885079287 2.721896005306316 1.4510616931979308 +4.4945917041753916 4.719704820201095 4.4012613183883555 4.146199773688821 0.34019451287655195 +4.396853801982651 2.117379472561493 4.165322989857035 1.807905617792596 3.2792407481917585 +3.74921243288768 3.8351015123091945 3.2474900933919733 2.1926648980174477 1.0583161752334609 +3.8400824101446402 3.3844576986303885 1.6727937203962826 4.495553347599362 2.859294631672314 +4.562501464291153 3.7709683987994986 1.7028850545887382 4.648747019945116 3.0503487198515447 +1.9577947584627755 2.7494916154650038 2.917788485645627 3.9634373810953307 1.3115508095161208 +4.922788073004957 3.259272353687143 3.9423826890965383 1.715316543961841 2.7797676455456823 +4.772162753346949 2.403221311414568 1.64260175036606 2.299059513177799 2.4582148705230105 +1.4589919064172117 3.3450963392901656 1.7778676885723201 2.0970884080780605 1.9129275468414297 +1.758354564243838 4.967378902296293 4.072483644006984 3.5859143467776877 3.2457028334737004 +3.4539496604927757 1.1396049488055624 3.39940978219448 3.4179068367653507 2.3144186279803334 +1.7247515035545584 2.5275954364526347 3.097631788759123 1.989585540317421 1.3683292254706034 +3.5474696633803595 3.6199808411086365 4.548007802988016 1.7451862517203827 2.803759354713925 +2.075143258769022 1.4448315439474322 4.292359741785507 1.9478896312310972 2.4277217627076504 +4.612297722282035 1.268720029985003 4.513700934563262 4.23388719491761 3.355265639755045 +2.792339061124274 3.844824644602565 4.274814729301973 2.6022762941218747 1.9761352991595311 +4.02269842962831 4.130920558584751 3.8614628203313304 3.2888200288168505 0.5827793715200981 +2.7319227408502402 1.9072715483017473 2.1817751766270477 4.327723833289054 2.2989443721850082 +1.5766390552934881 3.8720750781102815 2.0783229088805246 2.402937350627435 2.3182754518468327 +1.5537058558629053 4.015898705203306 1.5283629917739137 2.308289262949427 2.5827656912334773 +1.434481679162234 2.74819088025748 1.3535252544037295 1.1537225147059642 1.3288163905645665 +3.452299582525729 2.6784470650982373 2.1668051941723454 4.897703564189591 2.838424497162416 +3.036424724042754 4.589376086667479 2.1183942710159225 4.864168318737559 3.1545099549406483 +3.571197089701293 4.360310375047042 3.603587601317435 3.5808214615213867 0.7894416218001022 +4.70534064703601 1.8096052461721852 4.63746331789122 3.9837106778676623 2.968615169764136 +1.0337848106660021 4.732422705705648 3.4859211692935776 4.034116095255335 3.7390426522672247 +4.769057289392517 3.5320377452693195 2.618711068599328 1.8337878063181345 1.4650330645459557 +3.50751218314624 4.03518539429589 4.320470552546803 3.1685980606229287 1.2669843153788052 +2.0335735338566647 2.1107267672402763 1.9863147537485073 1.9066913669560215 0.11087157050322612 +3.593760502290891 1.4194386482422559 4.0525196943650235 1.0384310540043407 3.7165045213136505 +2.68560358384651 2.4408572048577906 4.118993017203515 4.134011262624297 0.2452067244665383 +2.0232948099784056 4.3056216512679635 4.297634959020003 2.260326245320042 3.059353298556504 +1.7722710006638578 1.998439126658238 4.531952074771075 4.1418633003052445 0.45091160240125056 +2.691319511602834 2.1713146737840865 3.621052855587398 1.793220203773008 1.9003623955429467 +3.9081106044007625 1.747181415340438 2.002486009923493 3.0269245486226772 2.3914617453986238 +4.475613718609832 1.6781142167636212 2.006526849581982 2.0709283600423514 2.798240700400767 +2.9109658156678218 3.785873159307374 3.782853540230635 2.4413705496308955 1.6015740613605225 +3.803293420972898 4.443457252938711 3.6649000547593316 3.8614368153893284 0.6696539629062811 +4.78003992916411 3.6683289832825703 1.4614125542266443 3.016058500513741 1.9112365749691294 +2.11946083311893 1.7746528597992364 2.2327677393337146 1.7189872775057813 0.6187591626965689 +2.3610885783848756 4.1038684811628965 2.7209729816610726 2.8888476223390662 1.7508465622406018 +4.719986102217742 1.1689739328296236 1.0205708927063815 1.4050237106240453 3.5717630655388306 +2.860412346052269 3.1160913485717407 2.1240852075774246 2.4404271167630522 0.40674802499404966 +3.253027624204511 3.188614751743751 3.690277839663562 3.404371113993938 0.29307281334469015 +3.449726549686045 1.0578331150361637 3.180882412039692 1.1936601220210248 3.109695585208984 +4.055958830450964 2.448020198480713 3.5238837331564294 3.8232081120867596 1.6355615940723212 +2.3182046690440576 4.748299671965302 3.525274773249125 1.0822489642683637 3.4458289026834907 +4.752192238705356 3.9903772553337635 2.405673855334036 2.888982556523021 0.902191426214217 +1.8004487437754948 2.9392220234517668 4.4176848101054205 3.1066661065366135 1.736540993933598 +3.6579426740921717 3.8027340932743816 3.1062877267993154 2.35251608736163 0.7675521086475983 +1.0418922026782678 3.042581680906072 2.3239954060826244 2.7449889295199847 2.0445033467978595 +3.247609911856617 3.6234560956231703 4.927020554275064 3.7909360500805316 1.1966404449636565 +4.051582859121679 1.7559751005652267 1.0409275476438093 1.163010109246426 2.298851698781815 +3.7564297678673877 1.8984659766348093 1.1435503540944407 2.018250267245034 2.053565043429838 +3.1675279433738317 3.2177804364998224 3.5981304011102546 4.962610487329854 1.3654051482088474 +3.1668643907148533 3.8246586320423948 4.876256118111053 1.278697026853687 3.657201755305852 +2.0693667458612786 1.6451450384250754 2.8393623799124046 4.024165748207176 1.2584605987406694 +4.09592348539009 4.641190282931047 3.3110976745785585 3.519912807811375 0.5838832420678045 +3.2102533773010467 1.6087780489246506 1.7444276015515636 1.189149889722175 1.6950093110814368 +3.9842523993239842 3.0044293995684095 2.878615673521009 3.408720972849706 1.1140308520083186 +3.7647467444750893 2.193844638965027 2.083927733305762 2.60657499232439 1.6555644301734775 +1.1155140704494877 2.8610215176073637 4.128642022111771 2.110045415794977 2.668619213585423 +1.2535458319647237 2.793980924052802 4.735974786021652 2.3259042645857337 2.860311205311549 +4.306607498929658 1.8975147257581466 3.336907461978945 1.6613476420920787 2.9344895126352912 +2.6486695564998937 4.8757961772850384 1.9325277104167666 4.353601789379422 3.289634125679439 +4.910015100062045 2.972157780398008 2.7159837969667304 4.343568084414778 2.530676116006008 +3.513857467962747 2.3641898910854784 4.098614005521865 3.7330703148105555 1.2063820817393203 +1.0004556664383348 1.4165440699419531 2.88248617454842 4.804365621790287 1.9664053929088208 +2.352771265490913 2.9571038321066947 2.5702889048854316 2.409895107250475 0.6252551650263929 +3.825456325141699 4.001153660231999 4.3444096438461255 1.5405649347527395 2.809344177253618 +3.073265296709702 4.959830560225054 3.0139400190889267 4.994300791586901 2.735133869256041 +4.567409656937276 2.129016353778646 4.826421932989968 2.1176211109082015 3.6446349329664978 +3.769941789727686 4.920783610960722 3.568919015741637 1.5193163508776069 2.3505973669084006 +2.859119940416716 2.931611251332937 2.409381795013314 4.358458845737743 1.9504246562784702 +4.84768250589238 2.8995924608911294 3.9622062219240353 1.7642726385203118 2.936999635765539 +1.7087850750802729 2.711385866945616 4.872269573594902 1.1489645441228076 3.855931624178677 +1.3383703785813346 2.3699656329971117 3.183683147030564 3.914284908356725 1.2641074727198003 +1.202413458571169 4.791310933102383 3.4553373881951845 2.1914876156936356 3.8049311859938735 +4.585470163734558 2.042667915568088 3.7329935989088363 4.34458552393415 2.615317945496613 +2.884529813861489 3.338940517774212 3.7047615037931965 1.618473601924975 2.135201699444847 +4.826497943107279 4.380209584677235 1.9621839652226303 3.0315677520153197 1.15877305039652 +2.0218205674659657 1.7266746451379453 3.0536304636636573 4.434858268112158 1.412409771719413 +3.919910978244644 1.488171448970057 4.628540843249007 2.684749162869139 3.11314683800019 +2.9981556519593022 1.2607569190764405 2.9996793417581973 1.950343615596537 2.0296945147539303 +4.454146372618521 3.4445274428716974 3.253936191248419 1.6734712323068375 1.8754199182437343 +4.516911594286792 1.8745165039381915 4.889148860688363 4.736613961833024 2.646794043530247 +3.0008349451440024 3.203357919803278 3.8893508901413054 4.939347850493192 1.0693498828788655 +3.3837144139185513 4.498051407856886 1.0258628511750119 1.7046299120184747 1.304787974709147 +3.7634076005157246 2.6591572903299983 3.5150784741790053 4.18806693867273 1.2931675146271244 +2.3337799112288993 3.5816759879695463 3.008020209970844 3.0545225035895043 1.248762219822691 +3.3693415351988762 4.970780495026851 1.9833134044874061 4.126496916248476 2.675414417831267 +4.388594287938075 2.386918405171719 2.169907864433361 2.696511550550696 2.0697868928662277 +3.2249514104384276 4.1134637025637355 4.991648416986633 1.0456196634303354 4.044823484053517 +2.941754764320326 3.4804728050340517 2.012645515987561 1.1028136995667834 1.057360421787182 +4.315014228409623 2.5682631924477093 4.616815905208366 2.3224225196028128 2.883640093622041 +1.6419275829161353 2.52511300092327 3.997877974535233 2.389374332385163 1.835020558301862 +2.3621488149259355 2.852697786729594 4.826749333599807 3.72540400806961 1.2056532751188636 +4.893542368397545 3.3463753250364823 4.7551150727461895 4.303708118233261 1.6116743153147448 +3.371588700022912 3.0458358762972577 4.361247543846995 4.823327698713548 0.5653609216126769 +2.9127295114425134 4.243670745531579 1.567568941823208 4.7014964232912995 3.404835682922079 +1.3044016348950849 3.3318649582604256 1.61623401533059 4.970703417080063 3.919575550345356 +4.562809327517389 2.2931297414818848 1.9386634732224235 1.567243249661784 2.2998692149198687 +4.725738848057441 4.957762657078143 1.268113290207411 3.6926112785262837 2.4355749923405634 +1.5087216436882365 2.1913739266941255 3.2950091838313806 2.1319319768181137 1.348615115207795 +2.9273476183899194 1.9586273612744498 4.599504718430831 4.545927321629783 0.970200739019425 +1.6319893509160854 1.6710763332040544 3.141567761554342 2.386154372451786 0.7564239423893122 +2.817836721974176 4.240821900017963 2.7259598377100205 4.809738999871771 2.5232959425306882 +2.3874589939087483 1.4606446242969282 4.454905794690898 4.883914562891866 1.021290066000971 +4.534234280821261 4.404389733697095 1.440747071292586 1.0351675511485765 0.42585719857497395 +2.59121419533742 3.498539714806992 4.108473819916002 3.838020804522543 0.9467758086348336 +4.0734603964642435 4.63264758865703 2.9645556582255517 1.5661224411392438 1.5060895652526158 +2.41074499044755 4.722274957736014 4.543822741503068 3.2816283786574765 2.633686655483487 +4.600943970402826 1.021955371161238 4.7132930940534425 2.1320000435577513 4.412735342850126 +3.8288082280891502 4.981902359714243 3.7567824510510484 2.7164832330146993 1.5530127299656196 +1.8407522956592568 3.0767992186281927 1.997084688544707 1.4405384418395126 1.3555647238338027 +2.694852898001144 4.237180391973973 4.292331303609009 4.708102085661732 1.5973851889488768 +2.299639743332869 4.156360443214531 3.3713284108107158 3.8867014728075335 1.926920120399656 +4.241641142393387 1.4454788374421237 2.757811024076737 1.3795873358715403 3.117374563693028 +4.7952488729856455 1.1232948291687799 3.2753036056689107 1.3442144359185897 4.148777154949397 +1.4823058612801243 3.859887877657277 4.927561459826638 4.6433260139332475 2.3945116481867994 +2.431485660228624 1.9249864861934185 3.0779547668669687 1.5196893470161248 1.6385153438406588 +2.021889298356726 3.2526039437935745 1.4601755608508205 4.335381427853301 3.127533743405215 +4.521988521405254 3.1248262835860743 1.0961128273186809 2.878231846130241 2.2645110986695953 +1.262436104417465 2.680935848539887 1.4355580898667482 1.977405491203386 1.5184663744748004 +2.2838979475110217 3.6031440398152053 2.1633427197220296 3.2458029574634892 1.7064965333545672 +1.2666905987147112 2.515823567355728 3.065730183242468 4.061524860698354 1.5974793310072561 +1.1333964312991833 1.6978006938314034 2.773680073728402 2.846544104382555 0.5690881641079074 +4.6330831835769715 4.432960203492921 3.362213390566763 3.118866033888863 0.31506688680317146 +3.128227664516717 3.0054237646180657 3.0744892451979022 2.7516166005555887 0.345438189099931 +2.191766462614524 1.6607699974790058 2.78255640179553 1.3302240522413533 1.5463591107979968 +4.912374812025767 3.751224756303951 2.35519087907644 4.473783546875474 2.4159272224043926 +4.8232875748990836 3.804419065569563 2.575728909813646 3.67851261720974 1.5014076543702692 +3.865367495869683 2.2270046171409708 3.144982619388715 2.8303840732895984 1.6682940890634095 +4.797175373792953 4.075176274437424 3.3566161720300802 3.392800553518197 0.7229052558488376 +2.5046441980552046 3.415282200808099 3.180426254932253 1.8118437355135208 1.6438612120602836 +1.4837904003929334 2.3380127470024337 1.6235603767002638 2.610608474063905 1.3053580979778023 +4.201338561983289 2.466877232125528 3.3446034515420613 2.855188887433092 1.802188314337302 +4.6642905619506365 1.6097102129879794 3.4002073814464966 4.280673905287718 3.178943599354017 +2.270090234657183 4.033035990793772 2.7257669903511013 1.8017023044634244 1.9904454985717899 +2.791655610677603 1.0639035524867646 1.6028757336601824 1.715037121696502 1.7313888504749337 +4.267434682617436 1.2480353619939533 4.537211822802597 1.76242264271918 4.100759350570276 +2.13824521518908 1.5266926441239446 1.8498578954962297 1.789908178254188 0.6144839426492592 +4.028870193911712 3.2063481806834218 4.77063793461404 2.656032556027455 2.2689421256154674 +1.8968268007822067 2.8646159620619223 3.7241223462497217 2.065274589714001 1.9205186122644293 +4.884542355121733 3.361442243077428 2.1030552215394285 4.924157378660988 3.2060023911758533 +4.832223547146924 1.9621883342523203 2.612773906177002 1.7014327292486895 3.0112530388560934 +2.3188093344203526 2.873261029804684 3.514027423456846 3.3526484287444185 0.5774598362214926 +3.45565174620839 2.091900343900382 3.21008295209347 3.2376378061077316 1.3640297494104763 +4.866407674919664 3.4974902491634987 1.0034632880300274 2.169860582282165 1.7984486555299801 +2.313700007024432 3.70205170309573 3.635255908214428 1.2535242585983761 2.756839872529206 +1.1926499905149606 1.2358890300432268 3.14458497089524 1.4473696064753674 1.6977660639093382 +1.0005316182752635 4.859348504544434 3.165038074570863 1.8210466914546948 4.086169428651559 +1.1226924594348233 1.3454603522178883 1.8422344644526039 3.404910917050924 1.5784749695704008 +4.752503266530594 3.1526706799844435 2.6405481024093804 1.0866380057785112 2.230269242353107 +2.343046635691269 4.9551606588862285 4.868481173540529 1.0373324536349076 4.636899846255711 +3.9859647035303705 4.158271403827328 2.2251325873675807 2.539239291150257 0.35826333935869514 +3.8763663620780915 3.0729466118548303 1.730009213560944 1.3550636436962016 0.8866044639014649 +3.9418150916220704 1.4234418807660894 3.006029723368824 2.4783934228475775 2.5730533796998483 +2.108791653982668 4.016022847530804 3.624880815703796 2.3748657843779455 2.2803658487583993 +2.358784826965707 4.271667777375457 2.9384598366548405 3.232210670893137 1.9353063671119377 +3.9524992365270295 4.015319469637284 1.1730299012687686 3.6699311303712 2.497691359952478 +4.002839534247421 4.594173086344206 4.026443508231321 4.7050122917587185 0.9000727547333346 +4.865983882203507 2.1954535086880225 3.0766006523790583 1.2192608531079001 3.252913095338604 +1.7719601351656062 1.421894373474017 4.2647987484668795 3.426821143842223 0.9081588535940117 +1.0548181952399802 4.416357161293254 4.204942503297147 1.5986682323592536 4.2535408538824875 +3.9900973509464435 4.31717619839168 3.6213479345195045 2.2986143417110427 1.362572834746857 +1.5605739940317314 3.2090518991157033 4.9329953027687745 3.0779093877741097 2.4816976358053036 +2.54009944030678 3.1830939076832956 4.648696128158633 2.933110217229426 1.8321236046881788 +3.407208914135512 1.2453619657858512 2.229496272191532 4.273201822580418 2.9749478322785894 +4.645765879230778 2.3606239795501662 1.4717791110494503 2.1509296725869747 2.383929316677122 +1.0086418045572292 2.356243993112051 4.879155453091051 1.4047263500328682 3.7266190106818584 +1.5324327305375234 3.470325746736451 1.8161500809178328 1.307928745712137 2.0034266314968554 +2.6769046181270135 2.28175415582438 3.4876352495725085 3.879611296403288 0.556587018485942 +4.027906459477666 1.952315911475322 1.6338473115619951 2.0885328443580162 2.1248094165573237 +1.4320853514856902 4.90692472930677 2.968788798399086 3.3810584404836765 3.4992106194741326 +3.9902162525560545 4.838641776854977 1.058087127279109 2.693577978879059 1.8424592793190928 +2.6661311025447603 4.05879847060251 3.6630142510939767 3.026975616749139 1.531034794651038 +2.7240595822524747 3.1524808316352866 4.6993538038297356 4.1224946712642145 0.7185479982206998 +3.3944878791181505 3.7510708040585814 2.1232076988854622 4.515174810034887 2.418399893148277 +3.953443646824122 4.331445841466637 1.7084453037070548 3.1927719998305606 1.531702125081597 +3.3647245217468407 4.518459483051336 3.9396142107303027 3.1036578721747583 1.4247551933253224 +1.4023295080647737 2.527531499524468 2.4711482368937543 2.7714949739553925 1.1645976489966117 +1.2067743887872608 3.679036158916215 4.777830024708762 4.538418079041074 2.4838269544735874 +2.803577197019692 2.198271516935382 3.292486263818262 4.367600001457772 1.2338008409802312 +2.4935940037816975 2.173299199549245 2.2374871974903985 1.9272251251203976 0.44592747747770894 +3.078666866580981 3.860951939079432 1.2475421722060935 4.126977833827054 2.9838095891106127 +4.092327392491348 1.9227458562988518 2.7396954040968544 1.1043499566472272 2.7168803386755207 +1.0813638884112016 1.5253678876788008 1.8076303902275783 3.579928115962094 1.8270683566876633 +2.4460263266454847 4.629218266219908 3.181315974255031 4.149396642825296 2.3882016719452706 +1.267132113957247 4.792590183216349 3.434665791944275 4.4558172530888225 3.6703684971269253 +3.752199528628322 1.5955343063062863 4.347555635006691 4.6477113008494655 2.177452250891136 +4.52978362658534 4.341829971218566 4.917333133935962 1.5318353811096266 3.390711077481816 +1.0204652338748241 2.4514771574442227 4.1217621895012 3.597071181082315 1.52417052186211 +1.9563969345668664 2.939798602783912 2.045590428119933 4.510695753380154 2.6540201780842523 +3.6119969920229025 4.734617502621179 2.1386126544629738 4.938465608597324 3.0165300223254508 +4.26005851835968 3.1942940671071933 1.9965993308440582 1.8597802688390388 1.0745107357683534 +1.5946284834666646 4.321809187806885 3.4205947961747465 4.1683785885319065 2.827842851757798 +1.2985193832446096 2.990171498988449 2.5880359043514547 2.82772169097107 1.7085479674296744 +1.6356137742115404 2.957568244778108 4.891357028730013 1.9649652446603265 3.2111263594137025 +4.308559667044044 3.885972678236219 3.6651076569678263 2.7636970684784767 0.9955505070815746 +2.935170973967081 2.4138596857622443 4.755877069936444 2.1469816283700913 2.6604700494904057 +2.8067156697996047 3.0654960276020713 4.887221262704278 4.371704071156472 0.5768234117697634 +1.4380950735816778 4.152791199635962 4.852211174134917 1.1400688273624962 4.5988668016713845 +2.6793009113601713 1.6042231749816498 1.8073657403341525 1.9875889725547213 1.0900791497358322 +3.0293460744588097 2.5842374738405245 2.756412381855208 4.175165119748227 1.48693678333119 +4.492795593146333 3.5043573283802885 1.264964165851496 3.3548581718188397 2.3118536198107225 +1.7200951440314216 2.486382136143479 4.746137661261134 4.292510778715824 0.8904903721253365 +1.6763727473312078 3.858610435842112 3.0958557863019887 2.7406475372946018 2.2109577628983117 +4.572573887737375 1.1990707930402076 1.5500282754381667 2.546086428126462 3.517478496518236 +2.563206800963019 2.445253172725198 3.3763911552862917 4.340772805633975 0.9715683331304017 +4.065335362022568 2.43551109380493 3.992482848353106 2.897756424569655 1.96335251246455 +4.859730091182007 3.4609836185600233 3.6799469762868653 4.681439425839564 1.7203135822237483 +3.713106822471828 1.2467580355626078 2.157680516122563 3.4848717373492994 2.8007700506092785 +1.928995072033529 4.908944877095911 1.1064499706032196 1.3723889430875538 2.991792836708009 +1.9288530033617217 1.7907439152599296 2.126867070411074 2.5137113184620103 0.4107585573866999 +3.087408960472802 2.5998974554794434 2.945675290954509 2.1899564328744003 0.8993211105933148 +1.3654146078486922 4.258972855070175 4.873039329837258 1.3169967255837243 4.5845521409762275 +3.6089179688476904 3.8295162649701697 3.092130142138126 4.616486367253492 1.540235536955341 +1.5032138973567561 1.7032782468805512 1.9723975420383772 4.870698199187977 2.9051974878111437 +3.34432509972178 1.544449083847243 4.444387687820081 2.476753342785464 2.666671818630894 +1.9778040839483926 4.319093692474343 1.9590800314677153 4.431019891325649 3.4047207964451447 +4.217347165960369 3.4188112153232666 3.8499058192050657 4.5305840336111505 1.04927713023155 +2.5792210424454187 4.020880119447837 4.852473104282814 2.545481444853781 2.72040280307505 +4.395523349814345 3.8384821099292608 3.592158647841871 4.38218689591993 0.9666641483441907 +4.139170980412539 1.6373693086473469 2.0045069964892956 4.22473074742758 3.344907339385887 +1.0577569926550638 1.9876357957153132 2.4212416992343813 2.1170171646728573 0.9783798627373409 +2.4780634645529704 3.689807090975891 4.4174259464473655 1.4390663022424417 3.2154235780694664 +2.317617037898949 3.6330930993863126 3.957789873883613 3.348879689167726 1.449568515592499 +4.3064301955773985 1.5296478064320533 3.0918440571928496 3.0378393268738426 2.777307499641435 +4.863897528631224 2.3326983386399442 4.6166678053852275 1.9977967289615641 3.6421772409289677 +4.6337130043620505 1.0887156579714947 4.476208309941125 4.41374269286662 3.545547650114518 +4.7041465203963355 2.2823759463200037 4.197212655682447 1.2789109858157737 3.7922891964891896 +1.3768981904155688 1.0440366907378196 1.5419566333948147 2.490048109866843 1.0048254702815962 +1.4666272819596418 3.0680088977181383 1.9275565432647528 3.2076457529136424 2.0501344989899595 +3.4830236386212365 3.5558968680335923 2.8699216137494434 4.082022675854935 1.2142897069160417 +4.83867449230711 3.4348224143194264 2.1007269679335083 2.788324166889269 1.5631988244884734 +3.7278722900986137 3.5370622389837627 1.9798307732140676 1.1578486632847071 0.8438382929509511 +1.1875573886442417 2.499162976170899 2.645459140828585 1.2009712316829635 1.9511162284443837 +3.529658427781998 2.8949407540219543 2.652096499508819 1.6438144270411121 1.1914274056958465 +3.517431322637904 4.634397857333842 1.2741461023419247 1.7689832987079583 1.22167020530831 +3.973597930500822 2.30137375959722 2.695234080281669 4.62692586344421 2.5549494756045408 +4.7087293465667095 2.7222663458217777 2.636095679477525 3.3030252915318004 2.095430829391279 +4.997137099736101 3.786734137864273 3.5899490142083836 2.5374272781072085 1.604019119297998 +2.366724537517842 3.4167267524478984 1.1892049085926493 4.469655440664271 3.4443954977219167 +3.2105792327127993 2.0822467579821606 4.894988467417696 3.156842538252485 2.0722657755715996 +3.456801386771983 1.9849367090793169 2.9481578358521596 3.3457011441293667 1.5246069366873949 +4.614531855958229 3.2088766308836396 2.5288389456870055 2.5256307777296376 1.4056588861175168 +2.8014598546649925 3.716781165892056 3.7777182621291088 1.533324513304383 2.423863940601852 +2.604706947810219 3.6278685832557303 4.17681016116761 1.6990423263519947 2.6807075885844753 +4.454980063561607 1.7335922689661518 3.3147485580308045 2.5584826027050327 2.8245158388222777 +1.7155546544939804 2.378555290379488 2.0680579850788625 1.9256910702618235 0.6781136937262877 +4.698433970147266 3.6648652709166174 4.40058318611959 4.988444066757317 1.1890520051761821 +3.9066024687489853 2.583939097040614 4.828507369761152 2.7422303783550124 2.4702206540569627 +1.8549148001220805 3.2636597986863047 2.3761905684660443 4.203433324204363 2.3072447983206903 +1.5965737668993145 3.910263366760015 2.5843277012024624 2.531379085342709 2.314295383140413 +3.00450935449816 2.018286919562317 4.479710232148166 1.8879468024209536 2.7730619118299806 +1.4222768432168258 4.242433312219562 1.5911728072709423 1.9661548773247346 2.8449769880474975 +2.051803341651049 1.006751423512299 3.0788483431342404 2.1208126752596446 1.4177326449388838 +2.709538645706641 4.343886066525634 1.5363622405671364 3.578644343192524 2.6157231655207074 +1.4998004105209564 1.7075053475387865 4.750858093396069 4.157008924670362 0.6291249288160451 +1.3569082945900002 1.834490723218582 3.2938390062434593 2.602782586106826 0.8400261614657208 +1.1456410206002676 4.873842091144244 4.683966390045594 3.9823410021201946 3.7936475070025573 +4.7728738695430994 3.082128752028615 3.8697205816959004 2.7486781043442643 2.0286338477965318 +2.7361132086595834 4.817861363527606 2.1176031175600536 4.615053748448551 3.2512974385653752 +2.3871259150351363 1.5337001010686784 3.803074637725819 2.318692056402212 1.7122287428031469 +2.111863244921902 4.2736064775424385 4.452459256248961 3.4243736170649837 2.393761451205407 +1.7666880577261157 3.887087091419436 2.938320585711081 3.9879493516449567 2.3659696972622957 +4.469329405500035 3.809070927477444 4.8292276760687525 2.8429959155761866 2.0930976719183714 +1.7921734602920467 1.2259799998722247 3.732870434134799 4.251382010379707 0.7677429838964026 +3.5554423169483225 2.3084895119773288 3.5384316316451274 4.730532062980968 1.7251071665888258 +1.4640721065509594 3.5140083618387608 3.5243878662399677 3.1705179409570863 2.080255410944311 +4.542269057583907 3.481207686041578 2.876037744896998 1.4045739045511323 1.814127081442943 +2.062546173250801 1.057979803206909 3.270979025337453 3.697133915078203 1.0912202261107116 +2.9896838799634082 2.5928652785666824 2.4980916333152 2.1274351637733466 0.5430020449571847 +1.202481641640499 3.50599603533184 2.2093884421674774 1.2126841316594175 2.5099000068784676 +4.576410325450105 4.163196600628542 3.9866426057472752 3.652027530753448 0.5317074673107716 +1.0289730617226112 4.325753576188614 4.959652543141269 1.9309612827780365 4.476799360163838 +1.5473013016636772 1.2626356988851315 3.313329833712071 4.67332364301683 1.38946668429025 +2.8350406975027633 4.808364858165886 1.5186752807941075 2.162988005246457 2.0758485325158063 +2.4204995560666434 4.542723508230408 2.8780759441076524 2.6026625543657813 2.1400203359750334 +4.773836907355792 2.4428686249981344 1.224306076102522 2.6980522286802193 2.7577782462690816 +3.5660800523781773 2.0018284050974677 1.600260870589402 2.4496386380963115 1.7799791594160408 +2.3838016598932152 4.271085967476462 4.270960669691128 3.004624497788925 2.272762494832643 +4.231340976503304 2.5036112162000883 1.5469349838957065 1.043197177698938 1.7996671642360267 +2.2298383891654545 2.021356983715799 1.6861062104953768 3.339268695876972 1.6662564927079255 +2.337938898024335 3.409723853050413 4.457934313782015 2.062309940466583 2.6244502524992184 +3.5310350974713813 1.8758241763558923 2.372130341401301 3.3420605335204 1.9184597392085605 +4.278906403695748 4.691017364560329 1.7024696596157578 4.998403807463827 3.3215986137725473 +4.318352232283038 3.325651452205442 2.021839868615495 1.0462075214626068 1.3918740300679948 +4.162924290301936 4.547882842532546 2.1116989990397776 3.6327317385509583 1.5689912943035647 +3.837503447675112 3.075298351641429 4.578025828962256 2.8016919922404413 1.9329558991095892 +3.4566021838083585 4.679378824818006 4.56382841836405 3.000168504710001 1.9849974910229544 +3.262559828095536 2.6116504683516446 1.4958645994772755 2.3740307409526666 1.0930959549078845 +2.6857255589509417 2.1127757028144947 4.3851135383509225 3.18201179880629 1.332563444396587 +1.7949634991046075 3.62302776704753 4.14796852403404 4.2805159787781175 1.8328632779039538 +3.4423453273656754 1.9126406637957025 3.3369797838605395 3.6845947599089865 1.5687040923389237 +3.2676227422499964 4.889502155096061 3.4473347310328752 1.4001849188746753 2.611764764145739 +2.934641377105118 4.910011816480448 2.6800334691681087 2.8974061812845497 1.98729445949279 +3.6788486453180194 1.3886184828440897 1.0998351978819771 4.392481164433489 4.01081932504486 +1.8068386725579906 4.514032022417105 3.3743675474593644 2.5330332624531438 2.8349143219237405 +3.380820994863954 4.428690320967703 4.803712962039146 4.765752833959569 1.0485566727234836 +2.4532255556792304 1.6532943010021386 2.3207099166753533 3.2370277873521798 1.2163586857218471 +2.0222902300359094 2.337533336685916 3.805397035139449 1.2625966600467171 2.5622669579616573 +3.2411276189946174 3.530804354331393 1.6750844349463088 3.6132398241170978 1.9596833732945598 +3.717531696899978 3.551195716204797 1.30864200959574 1.4088008361499025 0.19416345951423078 +4.728870070326279 1.3330807764191528 2.606504378732353 4.68106459822325 3.9793447994498257 +3.190773987464324 4.900789768107506 4.631838741573697 4.866405946837051 1.726028894263874 +1.8557825106574808 4.826868577679172 4.613916740439361 3.407097923375361 3.2068308460020423 +3.866833282051846 4.936239137989716 1.250544079755973 3.342572560466283 2.349513151445911 +3.4436577601155354 2.9576439758453605 1.879322106127118 2.8910296518283642 1.1223909998433947 +1.8353307830563144 3.558717479325826 1.6425290376674804 1.225315134641602 1.7731692377652022 +4.980463857752718 2.793869781946227 4.119925655500699 3.902659641886781 2.1973616391080752 +1.2257950384837386 1.6320619220911423 4.547471724153041 2.8753120234556904 1.7208052897850836 +1.476127724830894 4.575017614049248 3.4209986806541814 2.470893465785928 3.2412680334738737 +1.7760525754902607 2.143181373867073 3.817063044773545 1.82862665314788 2.022044222597245 +4.347260237219777 3.108743042621032 1.2424465001478469 1.709181464994939 1.323543111775193 +1.4673418779824114 4.790635042318753 1.014048677051127 1.7154699103589253 3.396508384011393 +3.7749426143440745 3.21464912220989 1.0787226157130738 4.3220701801678745 3.2913875829477766 +4.038742590190427 1.1599488799749493 3.067458992841864 1.5528490646997346 3.252921219519911 +3.3561218779100197 2.401397152655372 3.2276546916012383 3.9056689596197516 1.1709836244154923 +1.3742841965611268 1.7980757993578953 3.7840010747977746 2.622382310400388 1.2365102006862558 +2.4667928165447868 4.18755689940984 3.618908540649811 4.414657253146988 1.8958494250122613 +3.6037750690025034 1.203520155763997 4.504348793979316 1.2036869863667778 4.081126317177362 +2.1612540917037655 4.692166904162643 2.7483363086385593 3.109074587053635 2.5564920828710536 +2.4404688447341907 4.373082795310101 2.4038939373963757 4.589899523886093 2.917810327304514 +2.609490709621683 2.0509868738559556 3.548892728985279 2.4858784030293055 1.2008022284092679 +4.310184687230807 3.6275749217816897 1.17886771175257 4.403742719578063 3.296327487975667 +2.8696335458554874 3.2031481526310217 2.726838341135945 4.040660425342657 1.3554927007851822 +2.566578851567857 1.5208287520857993 1.2001601158655055 2.6865743817809546 1.8174214262200437 +4.989680382158987 3.307055806158513 3.1754528268393227 3.704325910386212 1.763783490755362 +3.533222311802839 1.7806392254514214 1.4153635984555466 3.408671049597147 2.654208369616388 +1.4996984265572801 4.10254039217808 2.687140025561234 3.7945551932243013 2.828631232869878 +3.7297263738022317 1.3890416937002161 2.5033014035462577 1.2954853728822893 2.633937040931909 +1.4512619576326355 4.846014750126656 3.3006168229743262 3.276245450022647 3.3948402739989847 +2.438847551235876 3.9388480948098668 3.6699895386379837 1.6431628648137937 2.521513037136135 +3.501987323264941 2.1882629161843883 4.779046600714196 3.7972417519824866 1.6400648093146333 +4.273617839954534 1.7217625006398039 1.0271931413251196 1.7150014069605977 2.642923737656004 +2.1790975102289862 2.675235248504487 4.889792729030429 1.681833730525613 3.2460982103795244 +4.468079841988224 2.0813286518539784 1.7553369708118893 3.8649005490362716 3.185410449875824 +2.947788860335525 1.587363729041936 2.63609566298885 1.5055304848636282 1.7688793514099526 +3.2403303073327723 4.274551109395361 3.0048690456000107 4.438053550410324 1.7673795552306715 +4.590701961104337 3.9477582288956063 4.1716705769652815 1.1120245861740723 3.1264692916693124 +4.692247250143421 1.2669247690271521 3.7378554587848747 2.9679786579363125 3.510775468201481 +1.2772895655416425 2.866443535830222 1.5331868868674916 4.42625146907285 3.3007927863007422 +1.70719871753967 2.604176673776906 1.77308633794744 1.4027904384294874 0.9704063618790527 +4.68081569654547 4.503262547747613 1.6777497548662899 2.4709235621708623 0.8128036720156135 +3.456816239096306 4.1739477451864175 3.685648168927354 4.889485639582812 1.4012502463090606 +4.214748546407911 2.437492159079831 3.160362916465004 2.950564046176158 1.7895965557278364 +2.5479581354049823 2.073048044247706 4.61425824805003 1.8127994377319872 2.8414276447925952 +3.6736606997276686 1.6034991965612453 4.014051052970952 2.9304987853140196 2.3365902862797205 +1.3278452464649764 3.84942877609002 3.9133529231027753 2.416378317035486 2.9324591161833116 +2.4858873007507034 1.1308048681113458 1.6240926469585366 1.792526006753861 1.3655102328213218 +4.434269132541483 2.8637634131313696 1.981333721954265 2.2764140170320526 1.5979864189795459 +3.534329526646956 4.081665880205467 2.972426660296099 4.99444661603063 2.094789198300249 +4.005279218816693 3.5298276585007122 3.63192534552756 1.6782178332255304 2.010728034775535 +2.0825442256313864 4.642590407221753 2.5390266794297647 1.298090118933683 2.844953426517078 +4.841220774504508 4.8920605675180235 1.658979594286024 3.81771837449344 2.1593373533853066 +1.5911224464765255 3.90522777080698 4.879241211021673 2.7898776657614457 3.117775405053569 +3.9696487316345874 4.844152345324847 1.586372572374493 2.5340650112057643 1.2895260869696612 +2.574385574876767 3.9133925201484123 3.1712164989041196 3.459622280439482 1.3697143842088852 +4.735190212308794 4.411909097381168 2.410363796292731 4.84660941473707 2.457601145966955 +2.9897434275627677 4.980289680446793 4.5445418643152795 3.0894626454553165 2.465670277638264 +4.07123203738149 1.2526854019387486 4.077543415498487 2.866603767200253 3.067666860659131 +1.7316813911124602 4.690316733377465 3.8657072852827508 3.9344976964819063 2.9594349476162694 +4.024645300355329 4.5857030467606545 4.201464055187326 1.711611440884738 2.5522836511153804 +1.0066907205676947 4.8904679114809575 4.047311993035583 4.841953204782941 3.9642376220485853 +1.310682332535484 3.2773355508811766 1.0143078119436724 1.986286734424902 2.1937337821570884 +3.737038326788373 1.0052960817407466 2.101627061734285 2.42605798480603 2.7509400424623998 +2.6289308941948835 3.0104496262538185 3.660956506849285 3.4004916743001723 0.4619507245439656 +1.8281680922825836 2.810566364096047 4.565097079841254 1.347974923033839 3.363774864089937 +1.2042406477888505 4.042117241881018 4.596351270722543 3.1358931374018053 3.1916267830808245 +4.364028376222432 4.299048865111234 1.326416878746432 2.9993570907648657 1.674201687328182 +4.765039262458693 4.273664368981082 4.642650384109525 4.056663805494182 0.7647414963616458 +4.919552038231237 3.5797834725570628 3.6919246807048607 3.5683588371552446 1.3454546916417374 +4.066333809422657 3.1300247430089887 2.196493434136147 3.3530707522550682 1.4880677943681169 +2.3680726352951424 1.990092185298955 2.785000909539951 1.7455134151233174 1.1060757079096761 +2.7091636946910556 3.9162640940966273 3.6751782954632852 3.4014995647708255 1.2377364105004451 +3.754651929995446 1.3765932810246038 3.8672862993688 1.3585038432684957 3.4567545978824854 +3.737631634598512 2.644457815798145 2.705190693596178 2.9633182904717184 1.123235885457422 +3.3614053274761013 2.608465404008726 4.990176151598735 3.303553048884921 1.8470560410986536 +1.3575397518665238 2.8943051290481674 1.5054010793047334 2.1990735674159367 1.6860691994300314 +3.5024198101448696 1.7518949350254185 1.4742862206114076 3.8787543886786886 2.974189723212155 +2.8111614985527753 3.5765728068954106 4.470292888522987 4.795592095801565 0.8316694326442783 +4.273969168925634 2.647398453313781 2.845492047335057 3.7899449654856303 1.8808837304546997 +3.7117079323047832 2.8819612752404096 1.4260361824745713 4.025276469679806 2.728466526373423 +2.2805413838944513 3.6280418812577078 4.54101779057519 2.8036905693531553 2.1986503732956955 +4.824540007836243 2.622514970952359 2.524736429223534 2.8171666970773344 2.2213576309591647 +4.188932753609096 1.9794556208918839 3.884864552647248 3.498858104974461 2.2429423036817595 +3.89502892066372 2.194857361671577 2.9987570288557976 2.8236986996882583 1.70916024661724 +3.9752004051191134 2.0920078203951555 1.255339567822058 3.676586499390119 3.0673850450810787 +4.250641255519481 1.3500749699558754 3.0727690815234503 1.942375892148597 3.113048913771402 +4.4634852510907645 2.765446170949123 2.1309399963799454 1.4291784602547124 1.8373366515892287 +4.983121451471848 2.8467942728863758 3.9026540818744055 4.476469793096763 2.2120484362709116 +4.099113567988438 2.458742120586022 1.289584312625986 4.068612755718593 3.227044711957183 +3.459145132977535 4.425786301608385 2.0750327447372943 4.825309758212209 2.915204761202978 +2.8621300934467415 3.105146287643115 3.8610407434820337 4.3104931898084615 0.5109445881409255 +3.0410908475242735 3.4832744719635924 4.000933223011197 2.9920200728182578 1.1015589418431193 +3.894639907435512 1.6504278014532803 4.903004439801317 3.730337749378982 2.532120681062274 +3.3068288594052944 1.062976977286231 3.656907947269283 2.12074192477933 2.71931559726742 +1.0855810905955918 1.4622912827483536 4.506634828879735 4.054023837730703 0.5888694916368815 +3.9606596000723484 3.6403423496005107 4.0351788148592895 2.7321095190714555 1.3418616659607054 +2.8886863561388902 3.28890959426898 4.120330783371034 1.8961024427227744 2.2599491922789423 +4.19204559558607 4.664325866644306 4.223995896149305 1.7895272619213225 2.4798560816044755 +2.5546070421701397 3.6851989270840964 2.954294560457358 2.505866713108986 1.2162752749730583 +3.447393822903359 2.9153299203499827 2.623802437527606 3.031332911954409 0.6702037630354396 +4.797898745261338 4.327293922505825 4.944629609678964 2.826180126959474 2.170091498079107 +1.3496326941157575 4.329422542835108 3.5827376885103197 4.008841127812141 3.010101606842488 +2.852429398190303 2.044746707684146 3.414555805192626 4.32778886112326 1.2191578827156346 +4.901534886058601 1.3562286152846195 2.0249270308495406 2.365889523456839 3.5616642142338883 +3.6217511589967644 3.7623253432003745 2.324478337394413 2.485472083398432 0.21372900485642343 +3.0083860180892446 3.354933586679804 2.9630033788938412 3.1806041460961554 0.4092008201153366 +2.512252051094151 2.077884578490739 1.4761992536700057 1.371492154981548 0.44680944234833514 +4.082055896338858 3.0303050024744635 1.2718432489860714 1.9018607625873272 1.2260106076983432 +4.4606920653199635 2.12799420993801 4.1258460443289575 1.9591306705095395 3.1837296988986026 +1.5235145624516857 4.538511409584 3.0368045951241274 1.0212885030812395 3.6266390922590617 +1.1529465023148102 4.356062169112061 2.05627153371894 3.931180079828195 3.7114999705180542 +1.4968390284291302 4.330014498996318 1.2544541518336647 3.134626560113354 3.4002840369415983 +3.0003242498713294 2.7419276797060994 1.35732132957382 4.42847363714773 3.082003452916577 +2.4340700361603704 3.8015175714470764 1.9783769401280904 4.977413018417975 3.2960779967479623 +3.577581193305337 2.307941695345168 2.323983232359876 3.3721512684108634 1.6464023465057178 +2.050151068164071 1.9833119055467319 2.3165108223740023 4.760130164565693 2.4445332812610134 +1.1877050357611512 1.793073856483185 3.442958007997996 1.7550664472255617 1.7931674015632757 +1.5823028709366658 1.9027599383228924 4.537448424964796 4.19058024192498 0.4722396303182568 +3.4688300108405214 2.541894621964501 2.3536322200251716 4.483951770016665 2.323245703800332 +2.323874995584773 4.913946325995671 1.3408169833628465 1.3359854022582551 2.5900758368805437 +2.298143078141673 1.1575784731552345 1.938787410485757 1.0137635317789258 1.4685219761126156 +3.9130235076328757 1.6863581916133823 4.647523026505731 4.2331674608807734 2.264890497204792 +2.292622936753862 4.764036827068742 4.5609639647572 4.85459785559546 2.488796391650017 +1.8212809974695747 2.9268694423263426 3.9469639435107036 4.395857227138871 1.1932438935470338 +4.9373339425757035 4.713210742208558 4.4414704685654804 3.2626653788290323 1.1999219343488006 +3.7759813574778938 4.1993484975954924 3.044060121811345 3.886746464201159 0.9430588565840825 +1.6745950850351603 1.6163905107651306 3.7406531634703084 2.1850648065611136 1.5566768799649475 +3.6323584292007713 2.6701945841726107 4.934471809197813 1.2702173579345026 3.7884719806648115 +3.4972017052285476 1.806359955704417 2.393369481401848 3.910133371149133 2.2714573557905804 +2.702972679281593 4.180626907333412 3.0347344862009806 3.666629809041452 1.6070948063842034 +3.1515704674593716 2.4808370443753356 4.685539009927644 3.9854721956253707 0.969524042677314 +3.2136842453369354 3.1519384270281545 1.8505396266508387 3.6783270882245716 1.8288301044013824 +4.221574611270712 1.790204884171692 4.0874100816886765 3.9016832505404255 2.438453035361135 +4.330919896613759 3.7319177586975982 3.4081995560802265 3.7538740375444597 0.6915883228942619 +3.6952390672340143 3.4765334790938427 4.335013366471669 3.8950224612695146 0.4913492962693135 +4.246985879087669 3.3672808974927833 4.39963359553427 3.9173324550026307 1.0032423659320702 +4.717428875517994 2.7552815776198827 4.4792523875131725 3.59208129933338 2.153391408534681 +3.9440050745512183 4.3997783670815895 2.103048413948864 1.4811144567179513 0.7710584552035455 +4.416551921945436 2.7711057325135955 3.9593763111581675 2.5778402443844257 2.14851927292087 +4.011161351840235 4.953192430434997 3.927631662480088 1.7535871138115025 2.369365369172514 +4.142848370201385 1.3000647303175845 1.0355067745122182 2.8275518231579886 3.360482745018461 +1.3098963301958455 1.3115282966716957 3.1984435749780546 2.576143521081038 0.6223021937891656 +4.859452495707334 1.996350881076721 1.7010231824542057 2.8913528168984506 3.100683068992475 +1.4715820876633243 3.809782735083455 3.26887002744062 2.2417737176533086 2.5538420266677875 +1.5595675774421887 4.361093382514309 1.344888183854466 1.4606709812702694 2.8039173476874133 +2.693748504897302 2.5043200240751786 1.7938534584154722 4.464992547416976 2.677847490455415 +3.9189046532973584 2.852373765331197 2.473841740555044 2.9215303523549245 1.1566819909210968 +3.222192064371967 4.180400034502493 1.3583110540795422 4.750244821451369 3.5246811481691354 +3.484620572660309 4.55055525879251 1.2707517785617388 4.648643730015782 3.5420856554857276 +1.4251179963216494 1.4326476224553892 2.9678952576008246 3.9434564649032007 0.9755902646413521 +3.7395428936477213 4.697693435204181 3.2618877667331074 2.0052125508283196 1.5802800570007465 +4.877854362447071 3.1881554774187566 1.2329796289399728 3.8484456816435517 3.113799125651937 +4.3057883146016 1.5289453948347314 3.8052300367852245 1.485070881741641 3.6185625745303813 +2.805450808104543 2.884010025633273 4.436621279137995 2.4641955742590875 1.9739895420001043 +2.428901622620746 3.7166261543823924 4.0141583492536945 2.4822008575701 2.0012816458525378 +2.261056254449757 3.542112511234125 3.734037880764271 4.461225114861705 1.4730602182126338 +3.5405341196310123 4.831152695337128 3.044413677921914 1.7547315112253967 1.8245482726013873 +2.7539545182500045 1.463352997937403 4.505874133700944 4.4812567735572415 1.290836278795124 +2.6880857090203265 4.741365759992767 1.9247679046661754 4.996638807244954 3.6949086334890002 +4.829624942806244 2.3665344958572883 2.9585728155183983 3.497238650159746 2.5213043115143923 +2.053841842137926 3.0286729788939586 2.6065362908957264 2.068316248999197 1.113542347056528 +3.5820126392575324 3.1716258168300353 1.2594093355856941 4.493932901071765 3.2604539622124498 +2.3485896341120145 4.9951663750551045 4.230980828253349 3.508779468969903 2.7433452661033764 +3.2758975532962133 3.064330393200416 2.6706774565681903 1.0959674862780098 1.5888587582797604 +3.5490229804130133 4.78544647136869 2.9220749476117507 3.49397461852572 1.362282012866106 +4.0215244985508285 4.695193666504727 3.000322428915892 4.904338974147976 2.019680457985673 +1.5765651465078885 4.1163624079990235 2.4826780363580543 4.483973456206517 3.233535756255728 +1.4313024120773252 3.3458494699160974 4.726465784915243 1.3499716770288415 3.8815206939124627 +4.804645645044911 1.2764934561370613 4.574542032570788 4.366287774746235 3.5342930982018603 +3.3431701875305175 4.418259864272271 3.118226804585445 3.323138549148191 1.0944435280526972 +1.898703378989377 2.6159821689092304 4.2570444134500125 1.597850227750906 2.7542335739230293 +4.720651169352119 1.0101443137830484 4.044949406172614 4.4164117129846066 3.7290542193171663 +4.100369886954594 2.6174282121367796 3.0123117591308968 4.494226656483593 2.096470313147152 +1.335307989967684 2.185371214006377 2.6362824481480502 1.5362649438529874 1.3901963870686025 +4.589864103624025 2.488870524764211 4.024099162180516 1.955040347496901 2.948758789224737 +1.2560474144509164 3.0914959574940544 2.7678248484581105 2.430308215584875 1.86622314625697 +2.4868030130894496 2.12159020336567 4.534439476517311 4.834547621064002 0.4727000050873653 +1.0282354425649736 2.857775240204096 1.4009716357010396 4.167315896111484 3.316606162668581 +3.1589465992497314 1.9039742949452823 3.3614685848112624 1.9316240129593076 1.9024749628380708 +4.247004056367743 4.059778250624074 1.9873534986429404 3.897855467764568 1.919653947031595 +2.2127477794439803 3.2603355657401645 3.5026413730365227 2.3838461892728042 1.5326913691966273 +2.5843623663654087 4.01983385616933 3.915989328358159 3.9871106156077745 1.4372322830843776 +2.988168900882178 1.8706591600398519 4.296469050196583 4.891180096234622 1.2659025433093742 +4.080756139902595 2.442049384009608 1.4438806031075364 2.7800363811506568 2.1143963902275598 +4.780176794325323 4.623040765933524 2.872452959995721 1.6925678532670272 1.1903027331309164 +2.621086982937894 3.7417136921579193 3.103128516649799 3.9779634026744843 1.4216681396244086 +4.935127354974403 1.9194564024559657 3.304852101620942 4.669158361808853 3.3099249032948443 +3.469743063764934 4.079913359670103 1.669638405206582 3.7338310983947545 2.152486762936405 +4.214304662769559 4.126174569099824 4.852987129958766 2.9302144061059234 1.9247913811638695 +2.8689466820069187 1.8530745866664344 1.2235651843009836 4.199808589115346 3.144840364596024 +2.0839636613770303 4.329918430126156 1.5435453976573448 1.4672606785971136 2.2472499152584335 +1.266133485635054 2.9635646024720077 2.5810170711149882 2.360722960222478 1.7116664078319321 +2.484860708068536 1.4718189544173566 2.5983168366184515 2.738138566446142 1.0226454472458502 +2.281108330762578 1.3129077723623537 3.3267209522644006 3.3034094457853014 0.9684811550158481 +1.9064840618094205 2.349867019837835 4.780265503679852 2.971685260363479 1.8621361239136993 +2.005229705966751 2.384235485124225 3.4471495292802117 4.907871934368814 1.5090908936716159 +4.465610221621047 2.770184981694113 4.068376273062176 4.008509779856672 1.6964818717540207 +3.2155864770256146 1.1314388588200028 2.086141025801471 4.186172813336556 2.9586829507620327 +1.8185329723052752 1.5135939714689735 4.268739452227871 2.076731024911745 2.2131174256365065 +4.842396088335297 3.012001298433415 3.31434672207807 1.8590195764734934 2.3384443948132527 +1.7068689892421758 1.1812685119147313 3.884679824796503 3.090044055637986 0.9527338911747526 +3.4247814568995114 2.525565363832449 3.653416027126694 4.432693173973679 1.1899001864142926 +1.38066474216058 2.547342305221484 2.10760134301889 3.138389752511799 1.556811254229186 +3.4938764170450685 1.8789911875017054 3.7863730236142783 1.2242599633987559 3.0285768337495202 +4.746153507043081 1.6642512387337938 1.6624342744459488 3.5115411263962577 3.5940670195948643 +2.665124990241088 4.691284417581981 4.176171638949723 4.331979977453782 2.0321413000452924 +2.084047059891211 4.817122192261591 4.629573601472596 3.257757559039249 3.0580351426134493 +3.2615777687963896 1.1144898384245465 3.3059681796516722 3.854100960123186 2.2159503888345236 +3.7044843241921477 4.758279633063967 3.8027531169329665 2.724069833002035 1.507992765245335 +3.464278611404463 1.3793998729780874 3.40848024779461 4.506995145846905 2.3565768256488475 +3.5287697100757867 3.8131145943263918 4.7383684354949125 1.7820567233053217 2.9699547055180555 +4.79095031213687 1.42054015409831 3.1695410356822777 2.8378261647863896 3.386694463482495 +3.30601374047131 4.62440726463411 3.7345981296477757 2.4552219345868416 1.837107763045761 +1.0952747918608878 4.972156736319391 2.6480016351751052 2.1631866203838395 3.907078091084871 +2.0777639425179553 4.62764145796406 3.438744966487239 1.089040480089499 3.4674178457715863 +3.1866795111385273 3.9660181261080054 2.267794063147282 4.256609064930876 2.1360603428044866 +3.566343422713183 2.8857642611780308 3.397099580609685 3.608253763719255 0.7125826858411314 +2.2392800573151437 1.2949208281617817 2.4497603187780026 4.267978688789626 2.0488368394615653 +3.2218844239082927 3.807861949703168 1.5107314159483063 1.6196459105026557 0.596013446040199 +3.352222865516214 3.64881320892648 1.3083585068861967 1.1172185556245813 0.3528460185017146 +1.7554847454507225 3.1064427715862792 2.6533942993045363 2.1539389113469136 1.4403274880873373 +3.7999806852957803 3.575465578478137 3.2549750282511063 2.9641058417794675 0.3674396778084953 +3.0332205784289674 2.899312469714596 1.4810140494575883 3.5813335370601167 2.1045838856131174 +4.990408999085191 4.420746552520923 4.120523664088242 1.5063836884383353 2.67548932259437 +2.4291547307787416 4.918082548455452 4.579942086156968 1.6549199708920157 3.840640058166608 +1.653237750536658 4.121680253363286 3.865049241672789 3.891242786457516 2.4685814735490053 +4.556884606516643 4.050962437235636 1.0586213918348664 4.443510968449567 3.4224895452352877 +2.7006068587178707 3.963493504955344 3.8591389992546077 1.4715811870747597 2.700984077655023 +3.2377387180255814 4.655953154799617 4.970702621515164 3.5543839357759475 2.004318040693232 +3.7134705194794715 4.694972496802158 1.9827957511049403 2.4223028618757985 1.0754127728023737 +2.7324637544203 4.451495769981357 4.648110271609673 2.091076627562172 3.081151104265215 +4.573739159062057 2.419953927355616 2.8552332211091684 4.321028897871828 2.605253882126053 +1.7603511441360582 2.690613806768213 2.4688002777289073 4.918891175663628 2.620750661476599 +3.902474107990342 3.3113106503585863 4.602649493793722 4.603683763986158 0.5911643623849152 +3.2383022854906622 2.0363346541422023 4.535607529868436 3.5479313856038033 1.555708955029468 +2.646665999870553 1.8187107303672696 3.8313779333201805 3.30932787749123 0.9787983393372023 +4.121214582911062 4.912452894337282 3.5924257420250476 2.6559567082491014 1.2259821844912226 +3.7939219165638502 2.1775278789858983 2.792263847065761 1.7022716001379674 1.9495673322766396 +2.608016708438975 2.3931743431740817 4.720570318383002 4.938047216452343 0.30570155888787426 +1.966953479177565 1.367762214385479 2.798502609996709 1.1217298783758278 1.7806170181458145 +4.643411491555197 1.6975189308197445 1.372742782944075 2.4894357630049524 3.1504422215164847 +4.445705180410787 2.8211963521079895 2.237739921314746 3.2958523263309836 1.9387188540071958 +4.976116227853149 3.811419601330659 4.472208534503688 2.1457501763691744 2.601716111332442 +4.5795444729017465 2.671114322235106 4.377795501358456 4.211582763301095 1.9156545393849125 +4.9050334585718804 3.6883815581816246 1.1474877087448259 3.4096889511824098 2.568617586953996 +4.344890048381081 1.7094073293188585 3.120718047335125 3.3233166220406223 2.6432584710822935 +2.5675646794323366 3.475475836913616 4.725635303622591 4.63069950762516 0.912861147842684 +3.7449879411603213 4.7454180252738265 2.8945051536092694 1.2638103479978149 1.913119416619761 +2.757877928742189 3.112134034705947 2.3153491088453992 3.891154212519001 1.615134394834181 +4.47936541004308 3.545079663672605 2.079167105685113 1.9455997373565816 0.9437849849161857 +2.3007737823134025 4.2176845973789785 3.441241682375484 1.6537299349161643 2.6210199007677226 +3.520887822498872 1.347427960398198 2.4633180387974907 2.1191591101006924 2.2005392839857256 +3.114126388593796 1.3755569159905954 3.123505626542356 3.047173991371618 1.7402443304305317 +1.3330140174643756 3.8861984012341013 3.62226577554767 1.3225080016941364 3.4362241364505537 +4.374644049699759 4.728960645295585 2.3544808318722574 4.4673296562444476 2.1423516061948287 +2.5921799403121755 4.540294256170034 2.7516296360682784 4.40627026102192 2.555970458631576 +1.8256856486597912 4.672141296143366 1.91302262272634 2.963240274445944 3.03401827105154 +1.9921984962462473 2.2483534651609673 1.0235542353046712 2.3433059778087735 1.3443809095424986 +4.544022268428179 4.917504728299184 3.727026969007347 1.6299633797262483 2.1300621693555852 +4.683640044986381 3.234016810179596 1.9421984844471951 3.804578881175957 2.360056835123101 +1.2768006833719427 2.642799947987536 2.672982754241318 1.4043753883640844 1.8642206520925346 +3.5808012463824546 2.4715965366600874 4.80995711214851 3.1543094284826996 1.9928633521890666 +4.056788038514345 3.0009525588037285 1.3414770203993078 4.4405599441097365 3.274004204067143 +1.0406403075108726 1.3801779086179615 4.341896038361098 3.402226019676613 0.9991323869137946 +2.1472184263371172 2.4379495969125147 3.228834136955013 1.026058642246538 2.2218785956105496 +2.6265475044519975 3.2814046904307554 2.3327711852677453 2.66881514056961 0.7360458368355461 +4.51889405857923 1.2932542247034458 2.220299935286809 4.72079964991204 4.081329582467833 +1.7827583510921587 2.9812519665008157 3.589172894871 4.765925049317247 1.6796227490627764 +1.6095222953403763 4.963548623965591 3.9628282282892164 3.6348489264417823 3.3700241891641465 +1.8588554082717952 2.7736314763194194 2.836989467568338 2.1964640146863545 1.1167309928816076 +4.802797071507021 2.4856116361645917 1.4420189888430763 3.5114428685880648 3.1067448456257045 +1.6284837100595735 1.7514390716010562 1.3989285186548415 1.967013380690799 0.5812387043256924 +3.8744365831552723 2.2917620230208353 1.6011458567217725 4.345920944544351 3.1683827177328463 +3.0910787146225887 1.8955157882808455 2.7737863394599622 4.581547354936269 2.1673418281200503 +3.9738115370510236 4.883363920005344 1.7726136426856174 4.161572833235737 2.5562495088413737 +4.735681183907115 2.9030960871800984 1.1325381578704916 2.6976686777132803 2.409979601757933 +4.781553267061628 4.4011571138156045 4.010653294457633 2.532285299601099 1.5265232266888378 +4.6318276267816465 4.15498769271688 4.09097168038031 1.0517235857727 3.076427360315026 +1.785273347916673 2.291872919549051 4.534974191779531 1.4754732879985957 3.101159284237826 +2.5446110827347614 4.10639542837526 3.2233095869544384 1.7290544915576365 2.1614737177229393 +4.060695693801231 4.740092830298616 3.4746265138440497 4.903032802826461 1.5817474499696058 +4.022515344917888 3.125367911654958 1.1193733782479263 2.48252492688049 1.631887147308177 +2.042009168100928 1.3484728022669672 4.615960985358866 3.465525301679039 1.343314912080577 +4.133494196295496 4.294137425277013 3.8339939153434397 1.9260268822572217 1.914717850327153 +1.4101781599178103 1.840727936411616 4.728125885784796 1.1241903374574966 3.6295625833612593 +3.66626740486487 3.313155769872267 1.5161013693226582 2.1679902557469632 0.7413817822220006 +4.221371897504794 4.440642715195795 3.5676006165461263 4.226512835262508 0.694438624692366 +1.0810663429733358 3.727330669419758 3.6388144741668245 1.4038078741364304 3.463808509083947 +4.240066287810867 4.772246405022772 1.9894726721222087 1.986899592000554 0.5321863375707694 +3.6652566879050323 3.3348003429956896 1.280881113723201 1.6493651948713737 0.49495647682443306 +4.786249618137946 1.3948730490913905 4.853246240747415 3.305345882142921 3.7279257708873317 +1.3711184020344134 2.4078783465706337 3.2468463801328564 2.833899134799967 1.1159733912700465 +1.2969559288271264 1.7578228405929512 3.870763491800366 4.158003004667418 0.5430514230831829 +1.6153174550415006 1.4712254736726922 1.200417353918421 2.8151120458674557 1.6211111767251427 +4.816964680379163 3.0465086193237196 2.8007604191965805 2.322033090798124 1.8340377638106258 +4.032510407643526 1.7165710610783855 3.1774896003672994 4.5953071835692665 2.715470816673462 +3.644567870802553 3.1062467344845426 2.0753758309920443 1.8166525026798963 0.5972666125103843 +1.693511398169162 2.15384383950588 2.9462935469421128 1.8386824852238939 1.1994616378140581 +3.232971032538764 2.335393951518762 2.546939049040677 2.504439914795192 0.8985826577360614 +4.0637171802117145 4.6395560236335625 1.8171464895058733 3.175239342968557 1.4751293408443296 +2.7296742977474517 3.460988804438098 1.6029284203598642 4.3307544852981135 2.824155793905973 +3.4284683099185904 4.005357919223804 1.44813026249175 4.337332490335229 2.9462333808950105 +1.6643092361300593 3.0683959093971116 1.2685367870705844 2.9862098425662307 2.2185265631995232 +2.564373336883754 3.759709075422224 3.614693012468597 4.366797948054225 1.4122639137071977 +4.611475247731917 1.4868978462316211 1.050700063035627 3.931695433023961 4.250072735831772 +2.581698976175952 2.6413537183918945 3.0560857927926497 3.3055327846594547 0.2564809739927085 +2.766940073635209 4.095919548984054 1.8980673664673025 1.6330566055716549 1.355144696808788 +2.502330327352952 4.392669320368839 3.8994518551840245 4.345132663810589 1.9421670607067625 +2.641438567480631 1.0072279948625447 2.6390687036099836 3.9016489832395775 2.0651278793736423 +2.133806054308716 3.0264146220860186 2.6411941157874703 2.1432062848708893 1.022126183506933 +1.7207930113279715 1.4981313652834358 4.196377639424033 1.5155562948595875 2.6900522838955347 +1.0438991556877122 4.162977154966223 3.2399978660881463 4.665550003941096 3.4294090545340827 +1.5720143488807894 2.0923563162468315 1.2530277968740098 1.9209484646614614 0.8466839914985984 +1.8541193410585914 4.202222344772908 4.335693317912764 3.9832722918206405 2.3744027239885024 +4.071313675750293 4.178873748320195 2.744026235769872 4.5907615793351475 1.8498650216662833 +1.6378095892293363 4.289478075206937 2.8337435750579596 3.1160767499138977 2.666656667280393 +3.9881169095694653 1.970730794613417 4.9088918976824285 1.4002151433924812 4.047302719455526 +1.5773386921214123 3.7383553427913476 3.0045799247866944 3.283564253844134 2.1789504859753777 +3.5098812866885907 2.977594730128877 1.06864450521861 3.954695754402255 2.9347266978730193 +2.304272644668738 3.577618760525772 1.3729403568349383 4.323312825799446 3.2134262145554113 +4.203451287713993 1.3427735212539638 3.868358670986606 3.1798380676114237 2.9423694371697904 +1.9745090945858865 2.617464453143207 4.348900063323521 2.170320156887018 2.2714757321676267 +1.2349871042337526 2.1181849494094975 3.4962977336042753 2.4220852650495805 1.390672808866791 +1.4818583455461356 2.9014120611642915 2.000415087535094 2.800588648814141 1.6295430278747796 +3.8461506235397067 4.402875034187928 1.8772109386711051 3.1739393597179757 1.4111862624623015 +1.4483295356545414 1.3503668580979418 4.562199982517193 4.513904715100793 0.10922050654011753 +3.934162072653722 3.1478399974381035 1.0660726858134 3.561183742831681 2.616081342929971 +1.6177241154435023 2.6020643386492646 4.5588049185230854 2.0013915915368705 2.7403081213738485 +4.968075631975695 2.347607207321798 2.5534080022021675 4.703902336760163 3.3899086488538464 +3.6415591153358786 2.0845450944356885 3.9792417125597006 2.4092940678001904 2.2111147117609504 +1.627332053110662 1.0481159379201426 3.146298869228751 2.2674709202547865 1.0525349742379977 +2.5493401423667494 4.5860888887740225 1.9385383123874336 4.074147196053691 2.951130420700826 +3.112754594854703 1.2531085986155488 3.97588711493647 2.599116002612966 2.3138240916406794 +1.9908362511736493 4.144427533652488 3.5119962305671963 3.6606145725745005 2.1587132332827004 +3.6810953722786723 2.195476003216329 1.2040794778897435 1.3340512260573636 1.4912939230932787 +1.7347953378651106 1.2289828701276067 4.532853909043552 4.209951847526092 0.6000933209517739 +3.910773059128498 4.733763620748213 2.5991633710558006 4.097035047686068 1.7090737328056693 +4.442517806504426 3.113921319721178 2.2334027107404597 1.108005549821773 1.741174142495986 +3.899133240783526 4.667752004372639 3.0437630609183457 3.8109143058037236 1.0859538831232394 +2.324823492111429 4.759014119185155 4.820191443221978 2.9568215897821317 3.0655229928418435 +1.8098280238436995 1.2129056154514775 1.6516157068668367 3.2440811717995546 1.7006653458703003 +3.3561100652505242 1.8352429213546846 4.787375159707251 2.70240062841955 2.5807277395146233 +3.3820055848182835 2.382778854413162 4.414920792773536 3.0311987430615406 1.7067925385398413 +1.3022715443475001 2.5949050052966487 2.667822823657893 4.784383452707511 2.480066563785796 +3.9884390429198957 2.1419214329195664 1.092776313002794 3.3745770654959544 2.9353435843389235 +2.550914831972621 4.641943261510178 4.979731048283556 2.8383565719653228 2.992972525928277 +1.7749033296034633 4.15573723851247 1.3652074599331403 4.035136122990315 3.5772739855405558 +3.4058158625655763 3.7698196156493826 3.692927738484232 4.235962319497149 0.6537471135194184 +2.3943929706251823 2.5719015394315687 1.2758094343995667 4.548208963951318 3.277210394986903 +4.524935911400636 3.036008163091395 1.7521514544795664 2.0972750766682675 1.5284031386639705 +2.229228790716064 2.525303335730562 1.174124535564172 4.812604892964825 3.650506738440011 +3.4516563820043897 4.428472429949865 4.010117368332448 4.5797272903070425 1.1307630409310878 +1.8101685478728204 4.2061345669416195 1.8571166231846634 1.2016632954685296 2.4840032667745313 +2.100663121940595 1.1160109641566112 2.482453796340719 2.6796304291972852 1.0042004263957012 +1.259688268843726 2.931263958951138 2.4368147659528403 3.2297538876467407 1.8501128988444906 +3.526839482243983 3.9981920785961518 3.6990491329186113 4.55592652116883 0.9779632552312215 +3.0227748323926202 4.291175821187356 2.0951696153896 2.6703013095569963 1.3927015236623113 +2.427605655273329 2.6464631015157734 1.9113179881713753 2.688457435973932 0.8073687528673793 +1.844907303039717 4.541361314984564 3.870244487161568 3.1970889372253475 2.7792089941102662 +1.603910527731319 1.881225576052294 4.39911864520766 2.908202192338295 1.5164878850362886 +2.2694620897791387 2.9371497830319364 2.057223877356475 1.3730413000725687 0.9559877900789793 +3.216567181289615 3.2957073434107205 4.263747260274766 2.693995293512896 1.571745654491627 +1.9383173778022047 3.491604738558118 2.702429476589866 1.5731080148739616 1.9204344792197983 +3.847118124559864 4.240763780226989 4.911637275503284 4.3778919417983655 0.6632050840255793 +2.3797234671036427 3.377190154601143 4.956342973986942 4.465136797088284 1.111855791409404 +2.063434145730589 1.5279902802094179 2.683804660269653 2.367910673475775 0.6216825106248243 +3.620070773546276 2.558866868281048 4.606034845375474 3.4029284963500466 1.6042501723906606 +3.477589442907752 4.088232627944185 4.194584309800143 3.00329744512176 1.3386745285493002 +2.540925687330227 1.7730405302301615 2.3211050963801614 2.90005436952853 0.9616807554347839 +4.303127819694842 1.1044329772412587 2.253100059855653 1.409229468816359 3.308136374087405 +2.3234398868860655 3.7047773174027783 1.807951089873641 3.980254053238814 2.5742947114873282 +4.965031544493877 3.9468309758286964 1.1111326383680482 2.901916208233712 2.0600092699138295 +4.8314047200638 1.4017695218087454 2.368750985847015 1.813056693921205 3.4743623500131524 +2.37241029408939 1.066072226462273 2.91666200320789 4.084206904273218 1.7520502969194112 +3.5707438801585796 2.3029954503389636 1.9303035578513073 3.9913275703685422 2.4197119790344357 +1.9007290207629621 1.1792997663060194 1.0193279261069983 2.6343900438605954 1.7688656855140341 +2.4863155685939686 2.3280565825189163 3.846907609997998 3.6337457201881724 0.26548803728379156 +3.1785156355539574 1.742298525715376 2.8778798059371047 1.7430973757171406 1.8304236532915037 +3.9725784528359305 3.3756751784266323 1.920683114452049 3.8358114837498825 2.005993566761848 +1.8850313004110886 1.275621024282509 4.7222004618937525 3.089490207645939 1.7427345348552288 +2.6850483215204757 1.7018978625330963 2.8775876561643368 3.7780894870238138 1.3332248018951511 +4.434828755144423 3.071661406279803 4.320606030193016 1.3021894291338758 3.3119577289814566 +2.0279241980108615 3.701061188204313 3.5168062398362743 1.839142238210894 2.3693762660884587 +2.9159124328191957 4.682701491626302 3.43733396308868 4.618020094151799 2.1249854866340376 +2.0167419002207683 3.055894832781343 2.014003330860535 3.5493505472291043 1.8539498083982628 +1.4473575398421135 1.9217129006014644 3.841881938224741 1.311256668712042 2.5746994509995442 +4.108837158091905 1.1572790389457475 3.066179970836382 2.9940208041326373 2.952440054605171 +3.78210785932502 4.6584745905287805 1.3045878554882475 2.4995850322841506 1.4819031345236244 +2.174413722724251 2.8451676402141426 2.5225162096057767 1.4199878531059227 1.2905346158527888 +2.3989113698252518 4.787288124188564 1.8674061189260067 3.7381292777383264 3.0338010247377416 +4.554610127355089 4.773813227470814 3.1733152682854824 3.4182519778023837 0.32870045751308496 +3.794575381333464 1.2383641539713461 4.523268403545268 1.13397424791903 4.245177347562092 +1.2940740630009056 3.740382736054699 2.1487797458352773 4.082674137228976 3.118392797728056 +4.5639761320690475 2.3305255786459735 1.9658770438347966 2.672895906246291 2.342685861653559 +2.6796484317244036 4.569126986732344 1.1656827498211237 1.4556457847068658 1.9115982243753638 +2.8895213947370793 1.7832594723001347 3.94884212771509 4.37259018674432 1.1846425024305536 +1.2678332138234882 3.2312788570223407 3.2320588871398916 3.6944504210547553 2.01715758542378 +2.609851655448973 1.1037313459199738 3.5243129415229686 3.4122360147223163 1.5102846169834367 +2.9617188308530373 1.660028813373533 3.7352542988442616 4.527021409659291 1.5235787014047457 +2.169598428303107 3.7538268652472433 2.831051451173044 3.7982660015374887 1.8561475498621214 +1.402058504754149 4.54714823105229 3.9238391121332667 3.9795189346199145 3.1455825579848105 +2.732880471718812 3.744863813125025 2.5947788904078735 1.0949638914908748 1.809296911581977 +1.9543697849828026 1.1880288745170033 3.584209504067786 2.34002282280212 1.4612593503182185 +1.5767080230182304 4.701817997072551 3.5964964382062723 4.337448447930633 3.2117475353222216 +4.8323884688267125 1.1117248461850258 1.1503507760818752 4.457032057337553 4.9776981516214756 +1.0249308712926264 3.010697643834791 1.4218298089877965 2.7130015741704177 2.368627071140016 +4.320562105545216 1.4854270531345741 4.271331753282704 1.384175613986646 4.046438105060105 +3.8521964856246003 2.3060146729532565 3.99190501096373 4.942506830674054 1.815026726379593 +4.5867482732306915 1.2230741983354716 1.2211951918840334 4.804209717037898 4.914498587809929 +1.2619188937551455 1.3513153068346084 2.1445837032886272 1.5906686100419942 0.5610825689663689 +1.73030458472868 1.392987222525608 2.1195864637921225 3.148160957111957 1.082473321219416 +3.5776884392253767 4.2307236311047225 3.7489159619401566 2.924836038071045 1.0514574089125126 +1.2032736401778914 3.5214463106819904 1.6345475297784318 3.025531842526284 2.7034721911983337 +1.888979034674906 2.650822531823437 2.9403994433167835 2.7336397504842713 0.789401725820066 +3.702262840329687 4.069227432667541 2.9284278708903404 3.4378380877930454 0.6278230492061821 +1.447642725305918 2.9978693831027403 1.2243865358349564 4.488640502298022 3.6136624978148917 +2.34107091337612 3.670841145673588 3.7692824452950338 4.921184679486925 1.7593088494749103 +1.277663293217414 3.9572442239370367 4.034303057143065 2.92568051775358 2.899861703447016 +4.935433133751516 3.118573969293077 4.195573414531969 2.9295730362356345 2.2144376670665356 +2.950621482857566 1.5218194406498449 3.608879464380649 4.548705707802217 1.7101896513664356 +2.031542339668231 3.505507941298123 1.6420734751925408 4.627143984431777 3.329147118995789 +1.956611779698819 1.8497601245112176 1.4959647567438918 2.9862339840123004 1.4940949253509663 +2.2736524222574674 3.9068250938756313 3.875219894028378 4.432496425547231 1.725633248376402 +2.902284042442314 2.622819395100024 2.045588381124717 3.4602998310625477 1.4420502680903151 +3.78361354114649 1.0851012426292885 1.1551846007730693 1.6404126700092498 2.741790455965456 +2.7046865699711176 3.5110221134122885 4.414190268102736 1.1309926154643115 3.380763794604265 +4.490290831576667 2.245162042355004 1.7429615953326079 3.4403690930494193 2.8145684382329694 +3.4111004260174993 1.095824524717309 4.744054423937079 3.199251559928835 2.783328652493177 +2.6431752603540337 4.168700656384262 3.6902997258257844 2.5405160556173767 1.9102958467763838 +2.3403411858307632 1.5251655614340485 4.556300070334787 1.7758503260547336 2.897483749579554 +3.9657746918261956 2.050451503909706 4.541831480986046 4.041489892075357 1.9795970852080622 +1.7701732491388844 3.9936053378638605 2.641983270918022 2.0824143025759367 2.2927642014614884 +2.129550042656494 4.324818717056948 4.546943790793126 3.6607840944757415 2.3673790486910296 +3.482964614468569 2.0376884645125806 4.147416941471876 2.7395854478655894 2.017625501430162 +2.1976493122538563 4.8750797516547335 3.095663166341887 3.609080470111621 2.7262118563384905 +4.791279023324532 4.482061558418831 3.687861431322365 4.291342034014823 0.6780886951046748 +2.2905427969278724 3.0838571691737755 1.6523937479716935 4.277246912859381 2.7421163050521433 +1.843047473116668 1.837380182827499 4.415313297236499 4.925875920589636 0.5105940760961287 +1.4224430180891368 3.047005175674622 4.60767056382937 4.758265727653054 1.6315272315305955 +3.9969856887588686 4.68624502588707 1.888820256525638 2.5640366877644536 0.9648811651355257 +3.97998499903589 2.3557407619047734 2.4976305777521883 2.213429062566386 1.6489208116485001 +1.5910890625490022 4.241364458441003 3.50269604017531 4.7641942097035495 2.935189483797188 +2.8577705741910404 4.507070382343403 2.1637897699003092 3.3897415102160604 2.0550298116462056 +2.1392389002735004 2.629047280952102 4.50171976412379 2.55174701069298 2.010548678571481 +2.4444883736690644 1.1400654728139314 1.2580976662877799 2.2348228593889607 1.629573934227551 +1.6623808449838182 3.0465945980248166 4.893817356593621 2.3846249248231275 2.8656752038153535 +2.9973756076567732 2.0089084663048293 3.3743032241010775 3.265404762237303 0.9944476680694565 +4.552159566322048 4.804391516744445 1.2770066819197168 4.623185883864548 3.3556722438793147 +3.376751437240298 2.9718983851783483 1.4459056086435425 3.8877590615416833 2.4751877260511876 +1.2948768751956705 4.948428700867071 4.041320393388224 1.0117373348005354 4.746242140024923 +3.6116677116240052 4.432175942308557 1.1132117321733532 1.5952318344286582 0.9516181669132368 +3.598864791486543 4.147286542659272 3.922343170402225 1.206043303480489 2.7711101357034518 +4.136481317167979 2.3517499123192542 1.0192770395082897 4.306749675821525 3.740687439757777 +2.613487108258284 3.2832639584291496 2.133786565676224 1.938706965684204 0.6976081130246787 +3.654136884817062 4.3059962643127925 3.0445012041045354 1.7045409192419454 1.4901054377612317 +1.7811017914995269 4.428359222314834 1.657912867745523 2.9925889077646026 2.9646807647380635 +1.5987079125169843 3.508023753269235 3.6537443326803287 3.59416010391804 1.9102453402808424 +4.182816555034856 4.311838969068578 1.0935336009310173 2.8735762824549584 1.784712506643586 +2.544746730726735 4.866843708224344 2.9568228128566005 1.2574587128909354 2.8774941732618067 +4.8983236563195955 2.4512223011781518 2.9433487044934923 2.775946790072262 2.452820507759788 +4.866555460033542 2.0904910994359813 1.216608384671289 1.4302656221283332 2.784274187162198 +2.9408727462505184 1.0315993417842866 1.27098247240307 2.649027807230204 2.354640923334363 +4.397876650577887 1.2217499032829706 2.5365599452500653 3.6376661148490297 3.3615793775561937 +3.683617858138912 4.289424035205225 3.1916580548035194 3.7616578425884013 0.8318057959923767 +3.3251517651459945 3.0486190311952557 2.3963203620055697 1.4313325087845699 1.003828625717729 +3.6400771684865276 2.2921588986042654 4.407971185003105 2.1742463629969384 2.6089097804885615 +3.1074924412144473 2.2187259127696866 1.4241529853288863 2.989277106111833 1.7998665104780254 +1.8162962370550209 2.776105180781623 2.7819890799959994 4.773830105661929 2.211032310931588 +3.3467373946877257 2.047548337556038 2.068666548842706 3.5141155826481882 1.9435058825483205 +4.359517379866884 2.164874124228404 3.8053172580032726 3.221412588992336 2.2709917837835163 +4.187517944388864 3.6983327606126175 4.859787662549683 1.0466118401830302 3.8444260945306 +4.753922993301483 4.548501922826276 4.19610264750028 4.9365401883434945 0.768404560166796 +1.2649851024767766 1.9543607591977072 4.258426445068239 3.109146124557712 1.340180603945675 +1.7833959555146834 3.928527561042911 2.2240639049571187 1.926391032216689 2.1656866680574205 +2.720022315744323 3.8340281463787984 3.1721487681404765 3.789488116908671 1.273623516674039 +1.9244629850648218 2.8981756222248327 1.3519307685760733 2.5133151868056722 1.515562623803981 +4.040978483934621 2.273638619536878 4.663889078318224 2.1668256724752304 3.0592181761178208 +3.349475150702224 2.926141542519869 1.0077087419867836 1.466282433904445 0.6241002922092618 +2.9795014222299305 3.9336122888823226 3.5915140628749977 3.6727070753454663 0.9575593199056696 +4.52635034998942 1.907694822086242 4.586401314446887 4.124563665375003 2.65906953423902 +4.590620686138193 1.9917963468195587 1.7552383809063135 2.9606151617968766 2.8647549861279638 +4.150379389758147 4.728657683556426 1.8881290911682922 4.420816415415663 2.597866599246689 +2.0999929551992924 1.6857588882266072 1.1684794589139869 4.107872668396135 2.968437687099141 +2.702752604444471 1.9474982083770778 2.640118697265659 1.8625133227482125 1.0840107569842385 +2.933271781860284 3.992714321394061 3.390688974408226 1.5605439139967343 2.114674782731936 +2.57617255469201 1.761823984873236 3.373780615414178 3.728576360052859 0.8882812694071617 +3.802086952765034 2.2472251418133924 2.27329256942826 3.5522112455051706 2.0132630804676612 +3.9136905037367327 3.7255601182346174 4.37138251783805 2.4403474720983422 1.9401776696540272 +1.57126041785844 3.099380396571209 2.813211363639544 3.4612212535599087 1.6598395967007524 +4.137371450835378 2.3982128131297893 1.9641681161035653 1.6676540996460414 1.7642543266382347 +3.4022042771525123 4.3466794808420595 3.155767570925547 2.564196389815535 1.114445993623875 +1.0872838829117502 2.301461759188263 4.946685920797363 4.04155959066647 1.5144245074402232 +1.5439000480213032 3.0092071781286975 1.1761774375955834 1.30046415371813 1.4705686564550786 +3.83008757280704 4.104835352422249 2.220170195410592 1.7579103496411905 0.5377457646641567 +4.974285017608677 4.358413064721234 2.331042724116347 2.8228706189400374 0.7881579413290816 +4.484891038311806 3.6605582587543006 2.2770418083422603 1.8115891841027465 0.9466629161768476 +2.3730310979166003 2.5252580872116215 3.5343877937042976 3.3809694229744816 0.2161255485758631 +2.9259297107451006 2.1692877554704384 3.0009249196627032 4.603435038301685 1.7721584942725033 +2.6382422260743073 3.0046343369882926 2.7336378861367217 3.618940666012068 0.9581253524435214 +2.1959850961374303 3.114642669304112 3.484762631075585 2.1248003865186815 1.6411669760742653 +2.648632200133674 1.1862883766741956 4.55010700556098 4.679291418125473 1.4680388518222942 +4.612584532112896 2.953577841895399 1.3142436304517973 2.884335205274483 2.2841827316385164 +1.3940474127266036 3.9396612491809893 2.864130435610783 1.6692027891919032 2.8121169756118216 +1.984250911877314 4.927605506144854 3.427260960630807 4.633398393953337 3.1808966936475156 +1.244279971392995 2.896065350965843 3.1098580186739255 1.7238961654684255 2.156220118334731 +1.298960373268664 1.778465970693568 1.5079889177816783 4.037425543637842 2.574485436390043 +3.525293395762655 2.937839773331601 1.0365249448850893 2.262921196661478 1.359834374061247 +3.4372575039284814 1.9396048472601883 2.9983253892301733 4.093206822150006 1.8551897024773996 +4.094725352601921 2.0572035957772337 4.260177564843456 4.3268162701046915 2.0386112004432957 +2.1715804584650336 4.348082807185803 2.6269972773881953 3.376025708744384 2.3017832358775534 +1.6641284771963427 1.7947138934920348 4.856207866744356 3.8008256123480963 1.063430417960503 +2.894283890155035 1.4748751883633853 2.576588563461527 3.5686100120686572 1.73171233674027 +1.0884041113588756 2.6297300833370665 2.3133883289871826 2.2561791409759517 1.5423873194134536 +3.0185755314066185 3.947126343351729 2.3886664154123727 1.1411574679063778 1.5551479622439273 +3.6133623755411084 4.827906938190903 2.472670149650949 3.0373976755765795 1.3394161687840958 +2.519588697767329 1.7942737265927504 3.8487779036291374 4.128686597385485 0.777451403143865 +4.258906463811159 4.044494261267985 2.9092113839743794 2.5319128691021064 0.4339663142736285 +3.191986077586426 1.0945248998286092 1.5063464012771934 1.3431835245086816 2.1037978792071694 +1.9238963394893474 3.171033654109402 4.571046349604522 3.8017882876019637 1.4653018281138033 +3.418791423760999 2.106016413852858 3.2990293072836834 1.854442323836575 1.9519758654717367 +4.1043259380734884 1.0595928803820875 1.5130491659497056 3.30149972650811 3.5311407222256803 +3.170608988009349 4.2743989758586185 4.5512520911903955 4.240108989893004 1.1468052872049592 +3.2653877530950735 3.1803426888016157 4.839518196829831 1.1289732118066147 3.711519466315867 +1.1861580562301608 2.0635853294327187 4.06782778120686 3.580770164802611 1.0035455851415347 +3.4820475830299307 4.93102092336517 1.3103887761034834 4.31268986740713 3.3336669875446963 +1.9600465244459495 4.737724436420436 4.686982335683139 3.8611995091635922 2.8978288181404976 +1.2359626759101023 3.874136916792215 1.5116272467917096 3.0272290103971553 3.0425338175767003 +4.486386723421781 1.4970541067064769 3.928445706788629 1.5841942662629451 3.798897775640286 +2.408691053567977 2.1068104024485925 3.965923355616675 1.0105052133146928 2.9707959073904697 +1.7358954874567574 1.5532418918328825 2.445673795581067 3.2290387473210287 0.8043773887976231 +3.8717015295690134 3.893258403460627 1.4359338076385737 3.4397308390700387 2.0039129826381012 +3.605150447718216 2.119249422012392 1.0325457643701874 3.06220487859091 2.5154359419656998 +3.8271309565191722 3.33402347130038 4.197588937826815 3.3605933324840396 0.9714507889450297 +1.257082322727633 4.024686449056646 2.320013805776788 4.423923698473708 3.4765024718330553 +4.6198821363818965 2.8002380271129583 4.195920955749048 3.8721972600099837 1.8482158195351823 +1.1135100361249837 2.5141817490703464 2.1093617950540082 3.3671252190362697 1.8825116409076674 +4.355045572956092 4.047025483285957 3.510500849266281 1.5491115112923386 1.9854280422010406 +4.311818125964145 2.15620356052459 3.0159364684131376 4.511103775436121 2.623394638769684 +4.029088039709485 3.9968411307699636 2.0951977566102467 1.2997899562621562 0.7960611986466503 +3.4125221564027095 4.425151548806321 3.7813263446971725 3.6686219743358293 1.0188820154749292 +3.3797434983903183 3.7564802263196095 1.5919603598904972 3.5453333386172674 1.9893708945771684 +4.807625136763114 3.4754183469936453 1.2647560402480083 3.793010299637499 2.8577691528234004 +3.8440852669303167 1.3993260108981351 2.5699692704593726 3.992034491178863 2.8282710817626726 +1.000957693154263 2.6025317280140063 2.854938587851148 3.3759906791494796 1.6842014935818348 +1.7804184955945797 4.716132342422478 3.8897125326063713 3.334262207103649 2.9877986636582685 +1.4874713576947065 4.377360643439136 4.823490176611065 1.528062526469443 4.383070097680207 +3.5442768309849715 1.3942825736347433 3.651276063118447 2.3968497076780317 2.4891887810815962 +3.6558253329080044 3.737214978474008 3.057213508292212 3.528002224590613 0.477772215390615 +3.8019278169322774 3.310903543383609 3.141081532751598 4.536897744718264 1.4796647372979357 +4.580217917491226 1.7408508540956622 1.7908306988976666 3.0857038875255784 3.1206893301517478 +4.4504640761358765 4.573000484390069 4.054503392106165 2.686507394754245 1.3734730503794794 +4.785722790420156 2.091071420411773 3.2603027170816405 1.5249286325700107 3.205100500621257 +3.787534937117637 1.251590357798872 3.974042724697019 1.8583441894305035 3.3026043059236003 +4.686760683370321 1.3677897953096685 2.9150302702422897 2.882857791598806 3.31912681652512 +1.435869423375673 4.789019842903983 3.631627039586545 3.891457691269225 3.3632022989312915 +2.6405123236258707 1.7823485824174008 3.3741558275412773 2.6663962490881223 1.1123707240021672 +2.7995776727707744 1.9830630380869407 3.2722787705754235 3.882850804746439 1.0195559609774278 +1.3730498517768996 1.749736357648369 2.1418389685250214 3.403799849474383 1.316980633400562 +4.581926459456776 1.7439702410283142 3.0479475079293525 1.178747782167949 3.398220580318953 +3.706327816588527 1.7003391677472122 1.7750831519507573 3.641431355848731 2.739935414836159 +4.452614058072443 4.283169893334996 4.304672136770188 4.446518154316147 0.22097877196061058 +1.1964110844089255 1.824165172395249 3.424206288848476 3.3496706937815808 0.6321635468100932 +2.4376781397482894 4.264860722884024 4.86338916637672 4.0420679968480915 2.003288460414638 +4.290955806003786 4.912292035337485 4.1457507126162465 3.1785872331248424 1.1495494360594236 +1.9657619501751356 1.9194213841260752 3.112406999791326 2.168044756075063 0.9454985433191117 +2.0062930556787295 4.0207844261648535 2.4221450541755574 2.6977140431795332 2.033252013269318 +2.482898374471493 1.3034136899228628 2.366842334125134 2.670218504705237 1.217875700537879 +1.5797517324704717 2.1405026092263397 3.942433224812917 1.7288315861722094 2.283522226818758 +3.0580679429794495 1.3906936101328413 3.9098665355252527 1.0077213743306186 3.347026098267102 +4.47346679675706 4.087829749254484 2.414208940766261 4.134554729920755 1.7630387309041458 +1.0646873317055863 4.999820784358283 1.4884495613008157 3.638574635369241 4.484229379093367 +1.4838429430767772 1.3521906868061175 2.4419645051009407 1.083189501644377 1.3651380247431173 +4.221165038817951 2.099321881511264 1.732647303695582 1.8255730424625294 2.1238770155389393 +3.275046410304456 4.091926727440674 2.213479687323694 3.482389833438487 1.5091144461032882 +3.2933364138143535 2.4736384150030553 1.9181750351721414 4.906712014119609 3.098912403375046 +1.8443199622520687 1.4751825970423074 4.704475047126175 4.790639431158807 0.3790602794671681 +1.1573765097978344 4.4038347340496 1.3431424226509536 2.1638763151546487 3.3485959929672307 +1.154435372439833 3.7396132000665134 1.467933358077806 3.931268856945027 3.5708775084609137 +2.3000583612504006 1.791961066546723 4.733619193442337 1.1396521506915067 3.629705492910457 +2.298072585483688 3.9186901814436266 4.177232617025632 3.5609634773993952 1.7338365103984381 +2.04554410212361 4.441357992072091 4.050844643938409 4.215616230597771 2.4014732709402193 +3.0996895143783627 3.9632332660364935 1.5586660734868967 2.408898882225895 1.2118595793589313 +4.43982590564956 4.4100154089214385 4.089038390242985 3.0150971161665647 1.0743549347771724 +2.036389426067937 2.74599251290438 1.099172695982813 4.654342423863236 3.6252956203439695 +4.607215033064978 1.8723068385434858 4.209544864711771 2.2504911020451615 3.3641662380861934 +3.3988989675985324 2.5153948609024677 3.276354980348788 4.434456149234198 1.4566323571589934 +2.4746301018912575 2.413052580752949 2.6114502531538872 3.757914454571184 1.1481166997483045 +3.559414277171185 4.0452395447514915 2.068142905763829 4.834321826231804 2.8085177604317986 +1.945228364868313 2.1123874472988358 1.0502131579067457 2.8215392086815396 1.7791959242850244 +4.97830025402989 4.785626111030471 1.5327519414811412 3.8521165133039417 2.3273537209473174 +1.9284652860602631 4.290975701750175 1.015747505037159 1.8916928942791427 2.519669777803752 +2.340139851081425 4.175312275991033 2.60827186216772 1.1146562972438723 2.366166791443789 +2.157868980166368 2.1647051593304174 4.032512938866548 2.499618187876194 1.5329099944091111 +4.558548908029051 3.5945385941679047 1.9361663702120842 3.8540149300528013 2.1464992391598416 +2.203053100448823 2.8786708050871996 1.1543042838399162 3.2162597255530745 2.169820159928314 +1.6887197973664891 2.178279310366173 1.0574978244309663 4.0385676876301595 3.0210008351609146 +1.12434497689271 3.948099370153052 4.848191869043271 2.4685838513176037 3.6927121728455035 +4.469550724428675 2.6824539134931413 3.082725160249431 2.1666602621124142 2.0082056441646454 +2.161439139728633 1.447138678074789 3.3295534047383697 4.886777155493714 1.7132340644043471 +2.9621093685239535 1.7858980893423606 1.8447087848146633 2.760491655891433 1.4906814684001444 +3.9945763301843327 2.8491078848635336 4.6825530163752855 3.2736988906934044 1.8157554644490281 +3.192829937911445 1.9286260782352374 3.1926749510566097 2.5008544853500676 1.441120035108331 +3.2424541606766546 1.8802063363003487 1.074733252065705 4.004717257183423 3.23118018768122 +3.984244348105904 3.217340340624416 1.739223300779126 4.131041281408923 2.5117593453902316 +1.658044454297824 3.958636871206699 3.4577468314975754 3.067890890716787 2.3333909066636673 +2.5219516652744574 1.2166627640765184 2.6752928878060493 2.8427087432734823 1.3159814528527427 +1.4461462896194166 2.2523242128349024 4.149475044737278 2.792621577694849 1.578282032751147 +4.385887430358082 3.0236492102051202 3.64273467685256 4.825766727411807 1.8042333000740025 +2.5132402505043174 1.0051923786765915 1.38562917476687 1.621626703781346 1.5264020497316793 +3.9326242788784267 4.843187375563529 2.8919595141159706 2.8545226227076976 0.911332361920215 +3.7697781757690065 2.2189038981922056 4.588043481899925 2.4409374837988747 2.6486364778751486 +3.764206545364064 4.022505950555697 4.4427483096461 4.272020085440703 0.3096234959796814 +2.6215135290471134 1.5991480419941508 4.434778807560745 3.043251097327385 1.7267253856546905 +2.7423264076373988 1.7254006963859774 1.99874320031125 2.231097435457405 1.0431329698531073 +4.691004315832224 2.539349800204425 3.307947389792455 1.7584721908991594 2.651507221677308 +4.454756747565531 4.281993138041875 3.899866567607176 2.7917790558321123 1.1214745643693818 +1.1299188087046859 3.8261949995875475 3.547700562656373 4.257850138998009 2.7882284193193354 +2.4309387277622783 2.805962738750633 3.1263104807286872 1.7496976285192343 1.4267816769520272 +2.1669261925230288 1.3197403976128355 2.084353377611254 3.839597037168658 1.9490007889978096 +1.1241535237773164 3.4959452525264476 2.5659134557944894 1.1517414089496345 2.7613906972104036 +4.03698024163911 3.7878095793577087 3.450082198793795 1.1908836040588597 2.272897778034476 +1.5788070743939575 4.168594299517634 1.8138842593570255 3.228252208944759 2.9508362489699094 +2.4195823733413366 2.2287015543463853 2.9525029741615865 1.5913438500308872 1.3744779548120936 +1.5635091521992983 4.680512699257049 4.8993499438291455 3.9325177216093414 3.2635066505667 +1.098279645977358 2.4458130169560826 3.131809916587321 4.873246873406782 2.201919358304911 +3.2256278454721232 2.51099411116632 1.1421515665988147 2.07943486055532 1.1786438594154784 +2.8235302263919353 3.119949198366843 1.5923683602798988 2.071326982949693 0.5632633213483793 +3.177603914319428 1.4477445104902649 4.358220496367006 2.01539458382041 2.912258026603409 +4.304817453057018 1.5274133930445606 2.837999102002108 2.5112166201295345 2.7965621936642995 +1.151307819981608 2.078585818562006 1.5745359800079317 4.74700957331771 3.3052130319994695 +2.915806662923528 3.0827009589393426 1.3298938933466649 3.601655664386866 2.2778839413811944 +3.2201504554294793 3.906271806612195 2.8502903053819053 3.850601935299024 1.2130069519570936 +4.130579498106058 2.9646782725083907 3.7040560375348033 3.7642637719875225 1.1674547696326703 +3.5745491730370054 1.405443161907245 2.523197705065977 3.94938050918507 2.5959619177261173 +4.171253420472374 1.0533754950386838 1.4389139773482156 4.028335645192165 4.05293317633124 +3.457823521476242 3.45988908559639 4.463141596658776 2.670402851699342 1.792739934913556 +4.360322983845546 4.2550296982345515 4.729382380485884 4.796723044131102 0.1249857630889895 +3.7523047884419602 3.435553770665777 1.3558753553203555 3.2192980494666608 1.8901522013641447 +2.9791651985762426 1.276318029470203 1.958786592969601 3.650721881257399 2.400486096832466 +2.8474339832166025 3.5897982738409855 3.595018976541125 1.1533424827321048 2.5520362145576527 +4.103529680645391 2.2608087448856002 3.688944620395559 4.626395001785987 2.067470353997004 +1.0215198968816002 4.616850527823661 2.8087237786328862 3.941946502890047 3.7696944290702206 +4.35853490501784 4.2069006655214585 1.970462888737968 2.9625512983935307 1.0036096627476987 +1.6636618539012051 3.5245079354042477 1.4002113021100935 1.572707616336201 1.8688239931750716 +1.0844354768944657 4.190805485103688 3.7404403817086216 3.9784864361949626 3.115477580076332 +4.912697131113559 3.0833674473960904 3.605588949520249 2.3383508199052607 2.225385263023 +2.7752100605527397 1.9671717654771106 1.3606270394955944 4.388204094139578 3.1335520911763166 +2.5760175979746425 1.4520839308597226 1.8328748864217368 4.359558842127507 2.7653858139679803 +2.0621464890960697 4.761014072729255 4.353614740347062 1.1476770655265378 4.190694764453701 +4.975837948003893 4.957574872225189 4.31644288739826 4.729853588678806 0.41381390487774944 +2.8630807063197996 3.133239372248395 4.352590830378382 2.537915218009489 1.8346752527089736 +3.4821098598689524 1.747534059009621 3.949320746362628 1.3732809291572377 3.10559726119701 +1.344605959163093 2.949017693386628 3.6134060564451644 3.4973715796198426 1.6086021921924318 +4.867389256510819 2.233563205397939 1.6099126734412308 2.9470013562670005 2.9537849978056325 +2.7468680284269626 3.4398196281351656 4.144494341429635 4.818887578570524 0.9669478568358923 +2.1960492342832985 1.454245501921073 3.4543193682044095 2.2840271015578306 1.3855889602329097 +1.5492386810954586 4.190383152675458 3.2875670665082937 3.6030959272997003 2.659925296272419 +1.995657104611173 1.3639560657676544 3.6298503355751963 4.965405466708037 1.477414535860278 +2.7898540863132713 3.7696158942693314 3.749640530652136 4.915647529507613 1.522992292071527 +1.9972421064404857 2.5759356793562764 1.469810528093094 2.606566338243972 1.275578309334955 +4.5469706877732605 1.9605528826977032 4.10244808102494 3.794838302624706 2.6046460101478868 +2.6902661529742438 4.074446348151066 1.8638342946495543 1.4165000015402764 1.4546693034883647 +4.656565850890731 3.64475307744924 4.470299322069655 1.277968934384499 3.34884135077155 +4.229595020991418 1.50011434184735 2.7562167172393353 1.616574413470826 2.95784539121969 +2.427932535643342 2.5440988602238837 2.453170170038784 4.648167436963844 2.1980690655152384 +1.0441498457499425 4.938919778459472 1.3522439913696864 2.1454942052924286 3.9747300198411804 +3.8401600770453572 3.3671278114202865 4.8247141347606295 1.2492679409735579 3.606601587227073 +4.876955995384799 4.255202256535348 3.351716485760102 4.119286720712251 0.9877964250582045 +4.4397029527575596 4.10146261102283 3.1649128301085967 1.9921796900353592 1.2205365814275548 +3.411324114381968 1.8830871535878098 4.505823925620566 4.732602627592037 1.54497145216513 +1.6124940187757297 3.762132047824221 4.363460807497815 3.8323542902949552 2.2142759061478388 +3.065432349788168 2.2833128177819106 3.4086479456852747 4.702966783446859 1.5122738561947655 +2.6166163016701773 3.0473027313409458 4.8059436765817765 2.496310087704866 2.3494463423477012 +2.7508877679035804 2.3878472272693765 1.2565712992610818 3.8907173308512437 2.6590456464465166 +1.4570017453530024 1.2200424510870334 4.342419356930567 2.9847647651985496 1.3781783983178875 +4.073474147708675 3.868206543948555 1.9017620237675734 3.7172310148519068 1.827036520363561 +3.1360994801047153 4.177810019992712 3.381312377943011 2.585042791893032 1.3111849993734475 +1.0171678517319016 2.1671087322408114 3.195996336134032 2.432327657935288 1.380418008694259 +4.243408947011915 1.186201518454233 1.0109623579807847 1.630689812735147 3.119387660968831 +1.4651516555534134 2.244880368491263 3.530202427567187 4.458917619352331 1.2126371152295445 +4.936611918122933 3.305472245658484 2.431883516082376 2.7635573670298124 1.6645192021991613 +4.658527645397953 1.44842671205343 1.706573630609948 4.205764329043746 4.068255418406936 +1.0213445094481397 3.6698116196572426 2.7339035061616035 2.041170358199904 2.73756410849943 +1.7074928683675203 3.8220363166337386 4.905708611155104 3.9910018233019935 2.303905923068506 +2.0789940021797686 4.2172573481151465 3.203663920203731 1.9635922449029066 2.47183087941998 +3.352045369243988 1.4614765295742544 4.65546722989436 1.0211852279790037 4.096615213438535 +1.579291951892139 4.517052450761796 2.9866402799096203 3.6716961612431476 3.0165772506714554 +3.289891011610911 2.7668164378272446 1.8888267259455973 2.463785299228671 0.777292976123335 +4.458458624139907 1.9934365478996958 1.8733637176206965 1.3449377401303106 2.5210251585492505 +2.986292523582447 1.4308210129837198 3.131672599911372 2.5137003315208384 1.6737327578750523 +4.96478259748867 2.023920038709077 3.1199486957518863 2.191982804274126 3.083795272935246 +2.090899851304998 2.4581695175027978 3.2747940461126444 3.0093826073856387 0.4531337986910516 +1.0688390148515334 1.156856652229644 3.4198424074227067 1.327173473598862 2.0945191264538625 +1.600137842396541 2.6049474644151034 4.213952259636099 1.4559637745614968 2.9353267041856155 +4.033549788858689 2.957255682470665 2.4008355201204132 2.6580878469631086 1.1066109357455207 +1.8340348171513514 2.32065526081725 2.8373510416211407 3.199169005608242 0.6063923608171257 +4.804566186592188 3.490072216186967 2.125342918539072 2.2029370663526135 1.3167821573846572 +1.1981584839052881 3.9929347697860385 2.9576654308000414 4.010865859266801 2.9866378472529886 +2.9193005156568583 2.113754831560106 3.140070468496475 4.669462434748557 1.7285669311899134 +4.0470497715766065 3.2236061502215545 4.450544874103695 1.26776738265526 3.287572350172862 +4.463151509997334 4.139953765603888 1.3013924727437205 2.6990714226577577 1.434560291174204 +4.109867190369967 2.3142932567038668 1.743881033388964 3.8467387553564407 2.765157563340541 +3.667733001277455 2.656716317458537 2.4369827482578215 3.8101552619190064 1.7052147921111815 +4.162946565877487 1.9088118140108032 3.4345329702749257 3.7528293315357115 2.276496442598787 +3.8067787116750877 4.766102440696873 3.265850793286181 2.4713640624492936 1.2455967174571987 +2.7217509630735828 3.7798667384717404 3.443170766160779 1.426290563225074 2.277589679275092 +1.8472337861176062 3.299742118404287 3.597436634399578 2.167110187723765 2.0385323640851256 +2.453179053743759 1.159659043864568 3.6206177790018113 2.1032056578918454 1.993924161358528 +1.2378142672309203 2.4476627067526886 3.030178673510518 3.75855205591994 1.4121830726983666 +2.076214019153581 4.813403726980668 1.660738610689684 2.0859982485131097 2.770027663435194 +2.6314990408391847 3.9463573594747414 1.603128724203458 2.446147794921608 1.5619006215760387 +4.715832392333143 3.8319648911293522 4.034419996129934 3.9048020238098213 0.8933210948100408 +3.322803542532626 4.344700319378612 1.7741192966181374 1.3575383142965118 1.103545530261559 +4.222073889152856 4.002338198436623 1.1638293502312376 3.6941371706612114 2.539830986483869 +4.589851614604109 3.112480791194449 3.9658476210131695 2.214732421383124 2.291075946414154 +1.2536459457520328 3.2300771431248796 3.1297740120994466 2.0067856546059133 2.2731878780722656 +1.6369088251434118 4.736268943575048 3.7904485471476663 1.2475640501470284 4.009026653542073 +1.2089440168296886 3.2874541976200646 1.6961996845282976 3.6958581517692184 2.884239684432892 +1.2282140039639486 2.890939164783028 1.021942075182614 4.868704645704672 4.190732302878616 +1.870306378342204 2.2329858981618282 3.2923293043380735 3.9034037217726887 0.7105971979536984 +4.458946385137734 1.130200925218797 2.3594483289334254 4.908346372390671 4.192544283948723 +3.9401117488684707 4.876890918708874 3.8470432958545246 4.845337873171057 1.3689949876264955 +4.985106554467595 4.059492396392134 2.466191176947156 2.5622005975417026 0.9305801300654587 +4.367259780503839 2.4208581181238475 4.277527929393184 4.499711736681364 1.9590418769226619 +1.7079900112946622 3.8110929369414754 1.658841427961343 4.748764817399994 3.7377357408549137 +1.1168312765047568 4.138564603876122 1.4782066367539253 4.902434843881518 4.56686009378819 +1.5925991160507973 4.860509238008819 2.0682489311369223 3.738475977852024 3.6699993123670125 +4.584253933235452 3.7419722436355336 2.6978816418944236 2.2314645023221917 0.9627997677201818 +1.680539780963124 1.6049432365590675 2.702478868005584 2.834180800220477 0.15185597279979055 +1.579846512143598 3.918147516423729 4.388568179312697 4.319289860101457 2.339327055400805 +1.5432889192403012 1.8420546037254688 2.2952231434276182 1.7204519212600413 0.647783059409476 +3.928609142362507 4.073213865967313 3.628165140927803 4.003367023672276 0.4021031943466993 +2.067870098030685 2.791784481570715 4.497136896254108 3.887991645848973 0.9461025160030365 +1.6644707533703347 3.73639388648014 4.9319296487586985 3.502737496606095 2.51703311009016 +1.9307072195102384 1.928164846874632 4.53479284710084 2.133638288627208 2.40115590442131 +4.458797365608238 2.0935532847718568 1.7108467012793689 1.316938863780099 2.3978204574936144 +2.019751222049069 4.564280474342941 3.5594451115501617 2.1823632874000642 2.8932651911264147 +2.901677654910701 2.209295996616713 3.4367386188870515 3.8655949135267393 0.8144385073128698 +4.473798642475797 1.7702309392533384 3.23039807361959 3.2449015391990765 2.7036066053369114 +2.2241622153075764 1.136326728936825 4.497964990956513 1.8530059050774081 2.859929126985828 +3.915362258226811 4.532735513804678 1.6758021755902797 1.8754205729092033 0.6488430020050994 +1.5761829839726538 2.9034010240760506 1.8973885047184553 1.0119796268366836 1.5954487165082305 +4.200446161500337 2.6055595356227705 2.833702142269721 4.2579825458827525 2.138279218792351 +2.1428797459939393 1.9087643086102744 1.0089748251208692 4.826283775275837 3.8244813581653876 +2.3485863957217 4.236976328585962 2.8335042896024287 2.6531032251061504 1.896987370177905 +1.2134561253773182 2.3534947099411023 2.144674243159749 3.084902060514002 1.477740275833659 +1.4582298112638012 4.724800498930819 2.8099805567040472 2.875996157521189 3.267237689100171 +4.142781390998065 3.659599508912803 2.4967357499845826 4.018002779295873 1.5961572935162298 +1.9217272787299522 4.840445280234283 3.615357132286072 3.8855882797340575 2.931201058500848 +2.736213315992659 3.826329497894747 4.212192093193571 1.6997399706497487 2.738753175830152 +2.7640827321254133 2.3576235854290943 3.1043123986413392 3.7492406508264606 0.762326366066172 +2.2455242798074697 3.4729188120456693 3.0778025300808336 1.0814382203390673 2.343494782366487 +3.8506905988372804 2.9821240643786413 4.649675556633162 1.5238395466822738 3.2442654925093874 +1.2060593882867057 1.2886431217714929 1.3731827975282127 4.559319706587287 3.1872070024246617 +1.7691262635940448 3.367126767402633 3.9936772780239713 4.501705490182408 1.6768119377322546 +4.580067754675768 1.0946545252082376 1.3384442260319869 3.5115773896567064 4.107385193403811 +3.7086258594755983 3.0969765867814165 3.1763146154345856 4.640077463428302 1.5864162467505167 +3.1454653663406247 3.5988327088284375 2.3873072703050626 3.5258703979686223 1.2255072186280622 +4.114757386273428 2.3861661660110856 2.496903665081768 4.142533234308114 2.3866554602372214 +2.8214915687855857 2.5271565275238164 3.701372645923327 2.2799933840204734 1.4515344028585986 +3.7880451479121255 3.2293762051550168 2.8353167287230416 3.2901105381986966 0.7203807304049186 +1.7161225648845426 2.192472555903179 3.878904939681139 1.5338398315186894 2.392956262756262 +3.745772184802987 1.1123684025722689 2.4882533281223758 1.0455406353669403 3.0027046798019765 +4.751498763214563 3.073222292229724 3.7797686521500005 3.1026899857678174 1.8097092124236982 +4.77315177783955 1.499310560817559 3.714556141535993 1.8520905909583938 3.766538761430758 +4.332112496149579 4.3404487279492106 2.2127725896034955 3.831119285248361 1.618368165797039 +3.8554610527783586 2.1493697373391725 3.378389626136316 2.7246751576784987 1.8270441108216569 +3.449207371126093 2.342240724203581 3.6514859164462727 4.828677614964045 1.6159070061293832 +2.163779591403294 4.728068331903391 3.0216446609006327 4.2024068680194695 2.8230791937910147 +4.44168918695356 2.4080214569974987 1.9207762114683642 3.7863882323127083 2.7597667742371925 +3.7974912765116557 4.25002556067167 4.358735976429892 4.688379656347275 0.55986805057057 +2.755702040594269 1.0226113881244743 1.2024105234756033 3.368317509603721 2.7739423718305263 +3.634508542776878 1.1226223366687669 3.94115462948668 3.6551734381167473 2.5281134377740186 +3.6502441829527603 2.9422568255560275 3.8745546072321466 3.154602258459759 1.0097412949545477 +1.4630768666383038 1.0967631450956512 4.242137812041943 1.8753278295629046 2.3949896107818196 +2.63910945102654 1.9052391243899178 3.247611232822754 3.7195635687320725 0.8725277437927145 +3.2175576689192193 2.5927730267357703 3.059737225764654 4.424190619309555 1.500696142550016 +4.659661584189356 3.0447297585083963 3.4969191912100213 2.860625675621996 1.735763301713862 +2.064997169766147 2.3401929027163595 4.438037925108915 3.607387490045715 0.8750501909631749 +3.025160576393828 2.5766557475450926 1.6236719440467788 2.2098826408174523 0.7381053871290953 +3.280356524464803 2.73157911613165 2.126608441632521 1.3198716732502769 0.975695063714416 +2.642024611635474 2.9272983411325018 4.803168511499356 2.2930703374872796 2.526256903784709 +1.8945360579140607 1.422664423674839 2.7304294835977934 1.0034356054865343 1.7902990516205275 +2.252538836587499 4.089225257369506 2.129447942495657 2.036579684624535 1.8390327679530445 +3.920428398284313 1.5337136671247942 2.6003553153407784 3.384075639068246 2.5120956896100397 +2.292169101994385 4.660719024802052 3.872544513514387 4.028381970398442 2.373671007069071 +2.0361210686809166 2.563320360426218 2.259963600983132 3.8773894589152698 1.7011776800570417 +4.296611853062033 3.3387175740789594 4.637963601972979 3.7952303639906786 1.2758372780682634 +3.4814551077201146 3.628247923379692 2.5166327465256644 4.637434976725082 2.1258763440868544 +3.08641710478273 4.542810313990497 4.023560156801984 4.772976478010259 1.637896822855409 +3.5699181456439417 3.079467160825862 2.0813786177178133 1.1295295299405055 1.070774885030237 +3.553708913202635 2.7337534553223946 4.2642634494619 3.794314007461693 0.9450817059619243 +2.4993718797760414 1.107164201704212 4.498827837910172 3.9579447641836194 1.4935851895108085 +3.271677771534007 2.46924718563603 2.845158061619299 2.2756098130653255 0.9840122217815537 +2.0079786791071386 3.5452892178382744 4.293597324187268 4.669928441203741 1.5827030050292699 +1.42445934245701 1.499674745591407 2.880081626543013 3.1960075732154083 0.32475615567609945 +3.7902203965450596 4.753146294885598 2.4506898418003957 1.3915028320113536 1.4314689683680832 +4.414668490817466 3.3424673574976955 3.4752358709862206 2.1973897501913964 1.6680845238544058 +2.4973979270727593 3.4289496075197845 2.2997390489433225 1.5739256408853453 1.1809291412529426 +1.3080367051060309 1.7135967554902858 3.578204895832985 1.7525278019702002 1.8701806879344423 +3.387596795855876 3.2982842136708115 3.964918057087158 1.1866608119339235 2.779692439386596 +4.098313405513569 3.2250873872268917 1.1250538739196059 3.0106773143232277 2.078003714629114 +4.669662879524168 2.4440698029965753 2.4716395825313695 2.067167488928283 2.2620482348507114 +3.0319146595013553 2.97767988787793 1.338365982411505 2.9413959102631533 1.6039471188418606 +4.884058811408723 4.7817801037821175 4.005417883664446 1.6029501164423863 2.4046439043182084 +2.9214767242648416 3.742398326992267 2.541605287701079 4.361035105505222 1.99605539495761 +1.7195022425563469 4.823882631385496 4.008025664239321 2.9064177413931045 3.294042746265533 +3.748139610912592 2.782267285296489 3.3197523748017232 3.5358367828864625 0.9897483623671178 +3.0501085801270515 3.8637113872899387 4.049340094476906 3.298979663359009 1.106792801029518 +3.758277641203581 3.9163658811789603 4.654401847945844 3.7617199513477693 0.9065720380270116 +2.727090341318782 2.4115929513166687 4.245864024305455 3.653420280972915 0.6712139689488129 +1.9167897747127296 1.1010695247983167 4.252709971613644 1.4441458371050264 2.924625108243546 +1.2916427782185358 2.6421527244493572 2.2992320772287926 2.7112980444124033 1.411975734982489 +4.666861379326891 1.0566394922902624 1.1955289291839994 1.0664191930399363 3.612529778092563 +3.8129098889248527 1.751224164754225 1.1380602832744575 2.547101978833474 2.4971877232344375 +3.8680280431915506 2.416875435901046 4.293424488928564 2.0355052050645646 2.684034907017967 +1.0372306115617382 3.12863554118534 4.209692729175172 2.3879222225472407 2.773593762336744 +1.8405049218205618 1.4280780912331283 4.542239929636526 3.7967572889462913 0.8519625919950251 +2.846633321933969 2.222359229803173 1.2873929161459507 2.6874805767830585 1.5329590991197446 +2.6541523439056594 4.788010337944894 1.5995059247610208 3.6402745615637353 2.952640609299201 +1.1226612896386343 4.9138011575002984 1.7984274994237484 1.5137382397340708 3.8018139712869714 +4.131095158916571 1.666037967971857 3.300364951595951 1.57071477552803 3.011344664132625 +2.8868143735838467 1.8647182559272135 1.217869714910547 2.594517463805425 1.7145960160533726 +3.243725662447294 2.4911744096557955 4.51141259284387 1.8302683023455137 2.7847563797485027 +3.786294882718042 3.0664555043249924 2.236974343094295 1.3320189241593394 1.1563360415316275 +1.2795999495097323 2.1148908105085424 2.06197486143151 4.286711617007741 2.376376328378986 +1.1232605095179466 1.813577110842901 4.273217813811067 3.9135612186562487 0.778389283394365 +4.060721228821339 2.878482215023097 4.1341359676375005 2.0421240168426857 2.4029571548437905 +2.648663649233684 4.42765259626077 4.157994739419384 3.663670010307309 1.846390698486175 +2.8388773401073397 3.406559905889278 4.3019694658439604 2.630598193522616 1.7651474231445468 +4.332762055262162 1.4181024185800006 1.4414575141994095 4.79305016023218 4.441667937008026 +2.5599629035073272 1.7215638366734214 1.0355723925087386 4.590150732674257 3.6521144795367264 +4.361397569358892 2.113455508831431 1.1612859426170097 1.2613865180755575 2.2501696897557704 +3.5941991010087393 1.3237479676653132 1.017370177066757 2.74136455987392 2.8508077769030833 +1.2482287181380087 2.601578893250775 1.529072614071429 4.4563581192551585 3.2249894767791907 +3.9672669853541183 1.4542096897719117 1.4643733618633514 2.729825901325151 2.8136856790532363 +3.911449180276216 1.1911806217797833 3.0172908224430017 2.3588567522037893 2.7988205471583982 +3.1381703447763103 3.086222644632824 1.2048762507647908 1.403563008441791 0.20536550641818252 +2.1162023474864924 2.5610216898760454 3.062548734073702 3.847797311160446 0.9024852215857228 +1.3448953901657723 3.9561808192130825 4.667474058322346 4.180362945080203 2.656329954768194 +2.5757299813503693 3.835812753949738 4.792244998301629 4.321889692336579 1.3450065827538495 +3.395626512845062 2.597224187829573 1.8476977160919952 3.96899066972317 2.2665679049424954 +1.4587048964972613 4.25576379203791 2.2104990734714627 3.7337548329661625 3.18494059190385 +3.849034439683992 2.272181681974163 3.399037920984537 3.7720819872390403 1.6203785035801932 +1.1525054557232162 4.805380360775547 2.434753207289172 1.3377492027120255 3.814041538580744 +2.7966555446307915 1.3768453639597151 4.031788201649164 4.600146985301913 1.5293438645682227 +3.1175494639339463 4.524031476960349 1.953541196962198 3.792352461301977 2.3150417963461605 +2.1028193547281955 1.9476304707784307 3.3478858020151008 1.6629890469949857 1.692028565000865 +3.418589589174944 1.3592970126828368 2.1574106398211006 1.7461711571730754 2.0999532917862997 +1.0288909763467067 2.1349161036075945 1.7795571443118443 3.8117520082360503 2.313678358608297 +3.4312809629776977 4.555113625656752 2.1891045512879987 3.715744275324578 1.8956868677898193 +1.02396699948432 3.812793351463968 4.9215358382588015 3.2429061040609297 3.2550499544598894 +4.779074617160763 1.0431141972557891 3.534453206492686 3.7842746125147046 3.744303806317453 +2.599611833477608 4.758635743177833 3.6130119857712137 3.231063600609576 2.192548474169916 +2.8356170641708656 3.820044286270068 4.483081487801996 4.633297907227169 0.9958222372867919 +4.097534563386564 4.367176255571248 4.900269503654302 4.607997365917864 0.39765518311880155 +1.1444724296955413 1.5378080462118424 2.643146981875203 3.924966848178448 1.3408113502166987 +4.3634900198736695 1.5086540071303647 3.5039891718037848 2.6347918123370975 2.9842239710450604 +3.160172833000202 3.4639865983039746 2.734917525819164 2.142754423170978 0.6655523601685912 +3.99576221225822 2.4065793965957507 3.315053573774551 2.2979182957123383 1.8868137680957249 +4.6761994072176565 4.485611383229729 1.3503015260353934 4.729858085873861 3.3849263413012167 +2.2613871133487633 2.6522197623997195 2.5718567250504965 4.675713089080771 2.1398508733168478 +1.4445612639962322 3.879272722788119 1.2046071575042 3.2666038244572198 3.190556400081008 +1.6550617704041835 3.48821482583098 1.5175020601339693 2.1164725681812495 1.9285268455821447 +2.7026933362468393 3.3599103319307666 1.9526958954133438 1.7979470433435805 0.6751898893146407 +4.031366936813867 3.81224391519246 1.977640252814843 3.2900427399538152 1.330569497190228 +2.972414018445011 1.2871875459157818 2.276707563603305 3.1773583968410044 1.9108009281777816 +4.166772462914645 4.208155267965289 2.9743097459571484 4.917056450918292 1.943187406348456 +3.1075332676148077 2.876052150144724 4.344115253501791 1.4950235856430458 2.858479812698932 +4.706761059271356 2.5745027230024893 2.8550044617733383 4.536946946252389 2.715779102519871 +3.5088587677326335 3.0355513697070613 2.8875387722114465 1.2662590746430142 1.6889546325385194 +1.129165441726693 1.229571234686483 3.491033842941352 2.0482686091868034 1.446254764206743 +3.7348994822066977 2.242139151455964 4.636577770268392 2.562083068263643 2.5557507064870024 +2.347472272902504 3.3928179340480886 4.924110616110589 1.6065847617992501 3.4783222026287444 +3.0261734729528436 4.540061053198361 2.230196065099692 4.799186262513025 2.9818729416303813 +2.178011695510012 1.7386853824665356 4.895899168733525 1.7680635538482847 3.1585381496947136 +3.4292721860473487 2.762009726797768 4.097076760302431 2.3108144210972195 1.9068225753820602 +2.7629205367107605 1.3700420703646041 4.490305444688227 2.485874744912019 2.4408713305326355 +2.5564450838086694 1.6491255361652386 4.462697955052768 3.9073433572246166 1.0637892135497273 +2.6032591410305694 1.0503656330373325 1.8754619902088496 2.042565778573635 1.5618584837472966 +1.6683741801663752 2.5138240383006063 3.9720042034506076 3.815286153196152 0.8598523186540521 +1.1441157921349876 3.9231454362773346 2.5812791569224034 1.8120324793663567 2.8835301652580223 +2.353693848332755 3.02195717630848 4.283136128578283 1.389333625848367 2.9699610772404266 +1.1757126071148098 4.096590451787678 3.8791176117280863 2.1506933417881524 3.3939619680276643 +3.065543982850425 3.9521523209105442 1.6136980760374233 4.734508003123755 3.244307159644155 +4.420945535042497 1.7264188931161848 3.1826751049588116 3.9178274556010857 2.793013212053525 +2.295191503168789 1.9240925541785145 1.6672280668395256 4.8690664846404115 3.22327220129597 +3.2604413760062783 2.605649855963259 2.2222544560422794 3.660955932049314 1.5807004370800521 +3.9686690939935145 3.2205103049304022 4.397657689481447 4.969980737164241 0.9419635048988388 +4.3427324685554005 4.884950537909317 4.508035284244844 3.751291744869515 0.9309464104448701 +1.9589994168092066 3.4844269897181706 2.9125541307362592 3.250740838091468 1.5624658489780474 +1.2840853685063092 2.7762448764633936 1.9834204467347587 2.0990999422013905 1.496636810605079 +1.5705468501841153 1.8709972049496777 1.3585024883790808 3.2311573379880008 1.896603965366138 +3.9690354205466614 4.205904237175487 2.7543299612496654 3.6085608047361144 0.8864632932359412 +4.2025466802342075 1.3596000431144737 1.8208880786059636 1.1721878677201465 2.9160174116616155 +3.736078622136475 2.0564551040840717 2.8187874759776737 4.0139933250662665 2.0614684533337675 +2.8519786277866426 1.8016796775622597 4.789354690854561 2.5086434772851813 2.510930410135564 +2.1405728156210087 3.8019893419636697 2.408279126193233 3.8766964094624607 2.2173304200791306 +3.7101648097763067 1.3551548045131394 4.139047771977536 2.246244709535875 3.021386363588436 +3.0025409666133855 1.9388180094206255 4.80378026823327 1.5999987503024027 3.3757551072751593 +4.1104654408868 1.4600305340620774 4.0356501527365065 1.1150656748179566 3.9439344426566914 +2.333753373679748 1.9836270770418603 2.887543147308925 3.7591001991324604 0.9392550868537765 +1.5722666392091131 1.3316676725178054 1.5764823433065405 2.9706283049959916 1.4147546873108179 +3.8011059804385052 3.2122054257133605 3.6961189709807214 1.1212640006953665 2.641340943793281 +1.3312517424010144 1.450345067134351 2.2633318222925847 1.6183243141716126 0.6559099827937259 +2.679455382479027 4.642688340692951 4.922898855684064 3.8360329673994578 2.244005594318802 +3.7510626242858365 4.343117843704951 2.179823777955673 2.2905759752896095 0.6023250219405721 +1.4957928110636405 4.003227091650048 3.332744464199405 3.8771851942676623 2.5658609432346746 +4.452363967757475 3.458847641688733 3.6725933077897293 3.261395641419041 1.0752479765123166 +3.3137638252422392 3.781799277548209 2.168439679984442 1.4952241026840198 0.8199246295454201 +2.7948043985067943 2.086662618405019 2.7392184612979893 1.571732537599758 1.365462618587277 +4.126441431751582 1.060591847599547 3.83625103670802 2.3943723429088526 3.387985808747905 +4.412234569678465 4.028869413073675 1.3231034013274225 2.816728111847604 1.5420387865339544 +1.79133363180371 4.3930071393355075 2.5964349407977725 2.204764584508059 2.630990442359857 +1.4393099804818354 3.9846851140575414 1.6387195126774285 3.739301384375384 3.3002088979838273 +4.9990964239953 3.294484709507692 3.6546617891773976 4.13317606468924 1.7705019087922516 +3.4616129731522602 2.0417754954584146 4.506920541118381 2.49638379974337 2.4613403770065756 +3.0616418266020986 2.3072408785071548 4.14711621460401 3.18957637684931 1.2190173630321457 +3.6186412681976985 3.825320416360466 3.161109606785074 3.948322164607793 0.8138918119007432 +1.775172498210165 2.720981115479941 4.485448464340188 2.3555714236280636 2.330435613582663 +1.812463050212998 1.6182781255962917 3.6028406500756502 1.2320819122891842 2.3786981266523237 +2.492062277236413 4.19235755640481 1.474107912282348 3.17226017907453 2.403065783030869 +3.718462751844582 2.3708836691652713 4.368012562707589 3.163815916340114 1.8072240998828801 +1.2696278019069438 1.5594507257086274 2.004305110680645 4.4135630395807235 2.4266275147061305 +2.314205995169629 3.1171329329206716 1.703989704994774 1.6355153349662124 0.8058414277741464 +3.585869843918585 3.989551621579693 1.7524835484755656 3.151163265877733 1.4557691882602266 +4.794169927871309 1.555474210416428 2.354895031427254 2.1054990644390084 3.2482839005558897 +4.281760289735278 4.186556855723843 1.9404987352191445 4.368854738581617 2.430221506964773 +2.9414221417138178 2.5040653582566645 3.7185622549890796 4.257026142631249 0.6937033330831746 +3.040603974716283 3.2594290686826914 2.694146317105436 1.409703519037198 1.3029496242214325 +1.6535064020044814 4.920110604893444 1.0845025916151512 3.0066158396997147 3.7901480652863717 +1.846999974370629 3.0684727015352795 4.379259173694871 2.765990416230508 2.023519633464835 +2.080925754877043 1.985354673880304 2.693712961917635 4.469232797958956 1.7780901326139469 +4.269710616658994 4.750211996635626 1.279134669812124 3.237258241950485 2.016216630207018 +4.65068669351012 3.5242126157659914 4.211089758041846 1.786022070972483 2.6739291566340033 +1.2465946084694162 1.5693844142786788 3.675574986591841 2.9832814172129467 0.7638479200323525 +2.8199227729662817 4.730424670882009 2.191679553691117 2.3587826223323014 1.9177958539659261 +1.2512300342379552 1.6834152314561628 1.8594598078336242 2.228313805247276 0.5681877472302366 +1.0974985172743446 3.95604428148365 2.9155012358469192 2.1355803343795134 2.9630323148127653 +4.2864433128888955 4.513571115003665 4.329575197410571 1.4249858157283284 2.9134561116781414 +4.329845274517249 4.697331706605085 3.4898287893845668 3.961687928409329 0.5980780257205891 +2.5426874369998864 1.3615650885538844 2.8717643725380717 1.9142059355280474 1.5205157553566093 +2.0093947526477556 2.1800134739603734 4.003457031251583 3.2046083090364195 0.8168659798566419 +2.3985480900735805 1.0238642956103963 4.31269467255637 1.189102475878657 3.4127091504998783 +1.9125678037953597 3.739214924468732 3.606453949642425 4.717320106546113 2.137910971490228 +1.502433658663508 3.5831789350389798 2.4858510195819012 2.2404864216025526 2.0951622111665733 +2.937543411372709 2.309543719487182 1.0324000607320936 1.5213848776907728 0.7959207022212891 +1.521012032489777 4.716560603377484 1.7983958261263573 1.138687521528435 3.262935138193515 +4.893423211727755 2.9527804564781235 3.5801621205895997 2.7419136805822655 2.1139429393144957 +3.9548445661156464 3.688852698137185 4.702486485276354 2.826422533277467 1.8948265424097142 +4.172705355461499 2.8844053063452475 2.0091193458135956 2.241378939566027 1.3090689574819887 +2.611527109450223 1.4391502535681764 3.403858693889164 1.3345353375122433 2.3783537679359052 +2.264444055466651 3.0985366449487786 2.110550046020963 1.360604173757391 1.1216636122983445 +2.9812774622472253 2.317789924744517 1.4246532071008757 2.1071832480318884 0.9518733997726262 +3.311730470384537 3.4931180620890743 3.0354084063399123 1.1728642219089114 1.8713557377960275 +4.426214858238696 2.251044278506813 2.6682030746297194 4.455533616333356 2.815300608503069 +2.3262065744365183 3.9454440241556674 1.00488730434533 4.814211352408744 4.139188280536078 +1.5624206908555598 1.1790929188086028 2.4132411848506075 2.3070761029498907 0.39775772203373966 +1.7876644638597878 1.5510254076836323 2.253263234461645 1.0365834947167882 1.2394787743295783 +4.502230382061634 3.1206561851548416 1.2590216442057867 1.5473034004422472 1.411330447676031 +3.938315168493938 1.7849109266744838 4.650480003403251 1.160101301564021 4.101206323868494 +3.025103016162042 2.6341011732075588 4.313529001735597 4.419447903750803 0.4050941310336514 +2.7680344488139075 3.107469829218445 3.6649889017937936 2.5130228761041784 1.2009338457273575 +1.2132761220202495 1.671926353452363 1.0253491152296186 4.769088613666678 3.771729771199217 +3.1637607626313806 1.0937760352015813 4.2482784122611355 3.910745116129771 2.097323412778755 +1.528289464628322 1.5866666741573994 2.9587552034046283 1.575583706189219 1.3844028638014003 +4.9275393367159035 2.525276646967769 4.694157228685365 3.1478312852948784 2.8569196617613204 +1.2116417376117359 1.6681781839085366 3.075362785141809 2.9166401043788213 0.4833408902481776 +1.8930287331542006 1.0929557166508785 1.5028922387283097 4.3475215837590575 2.955001343882399 +3.8017948264461103 2.325032961912438 4.883280833587788 4.040018618705021 1.700563661728063 +4.776439513179721 3.566827639722388 2.6176583838762157 2.0100688440314776 1.3536343425525594 +3.8715032038003754 2.5378965261931294 3.538846910262246 3.502804830700007 1.3340936256716796 +2.9254711940772964 1.3670860711585489 4.938901017049537 4.2436327305247845 1.7064472396126245 +3.389656300192793 4.344467248572315 2.0557284978111334 1.3915522263928786 1.1630967572220539 +4.871060373781123 2.4170897199272106 1.4222530350833553 1.6704581936002203 2.4664909832980504 +3.5227873825823024 2.4739919397586596 4.523282313763934 3.122739355663574 1.7497121072828374 +1.1730721593337248 2.5122730139201175 1.6555034709617584 1.3885110479096907 1.3655562540196353 +3.2662282785921666 3.9534172429022467 3.270443768086293 1.4931780595795976 1.9054926059429793 +1.1546401772457768 1.0164875548202335 1.4980013724984498 2.7420711293087594 1.2517171033796406 +1.770878806103151 2.409829367985529 1.3961921705739306 1.0289154859060474 0.7369870986865632 +3.7158830524399895 1.0278391223892118 4.298128749852401 1.9107330076939508 3.5951687859625068 +4.786106703524675 3.0924635459433376 2.5736583357990215 1.8588022811075091 1.8383270449381954 +1.4858019609215827 3.1472830015835 1.5137055731481586 2.9781010828047974 2.2147174666718854 +2.800963507637726 2.4179375493117026 3.79825345525028 1.696463220625184 2.13640611193588 +3.3728091416437502 4.937523579318516 2.840999395788419 2.8668496101616183 1.564927955227013 +1.5376285109028678 2.265822609116594 3.698735284670987 3.4925499671360005 0.7568216631679521 +2.1814649947802187 1.8648450068402735 4.188632359773502 1.9370207975236493 2.27376402557968 +2.6674296692307533 3.893035811170071 2.4678642742314674 2.7907187563017057 1.2674168342547059 +2.196562773197645 3.7772965471920807 2.587210159787192 2.5280611183417028 1.5818400277368796 +2.0799435129879846 2.3562233434186157 4.400770927700616 2.9270856609764087 1.4993594665932442 +2.6069854470256724 4.510071915303502 4.972165314674716 2.4105422316094183 3.191183311161417 +3.6834700732273884 4.343628802571072 3.3613687130464336 4.04631683621059 0.9512956845033863 +2.9920128443254113 3.980102238832122 1.1101200408608096 2.029044995078317 1.349349370259714 +3.771197470174715 3.3384334300653924 1.2705976601799924 1.999041404578847 0.847298650515606 +2.7129486244492393 3.5698879071677307 3.3903966716669105 2.498949569991353 1.2365366429474844 +4.815799878865921 2.156092151445743 1.8016634308897053 3.8850632135882934 3.378549962609274 +1.8813905952224808 2.6280176320281723 4.602533026575236 3.490646645371359 1.339307006177412 +2.3432240013595345 3.76386451554974 1.9488511740035603 2.1617429571337397 1.4365035265821517 +4.838866102444033 3.144768753178997 3.773489160252655 1.043843355257469 3.212620744737019 +2.588748165744459 1.891472588370143 2.5440331782515946 4.212345127744941 1.8081642601337344 +2.8515678759659835 1.216114312155511 3.4252301117097863 3.019803449323838 1.6849567169377928 +4.470372640759159 2.4591371269268327 2.441853998615161 2.722578102110695 2.030732457608277 +2.2972382733704753 1.879553352363502 1.971213441484482 4.605229429495684 2.6669272427899546 +3.8901240492459497 3.124801482200005 2.7911093203274513 1.1533237896973731 1.807777662206014 +1.2958889819157844 4.395010526575927 3.8174130775543724 2.322123320634254 3.440994886036144 +4.819267580727294 3.370780830897447 4.147483747790942 3.4312625483906762 1.6158857233427704 +4.773464747402656 1.0986918448177745 4.834784737482591 2.2956911574537937 4.466648866176473 +3.333329913342931 4.123258104476884 2.5063986970905257 3.6756018412596214 1.411035980931407 +1.6158618299537277 1.6045689977114543 4.469499083374181 1.4546582838890827 3.0148619494597093 +3.770796003995431 1.5329947215655877 4.767974524062389 2.0712660146451913 3.5042818614386277 +3.7555658799242297 2.5647701666965452 1.7666777446749293 2.5564620647893075 1.4288994726501794 +1.8434351025170237 4.4869991547287045 4.959593392890118 4.039528574930976 2.799098098922585 +1.1131917794122814 4.092380940425754 2.1867138283800096 2.8017163476142795 3.042005285295319 +3.0621815885500414 3.761404932886091 2.089864415370728 1.0448417722594394 1.2573725024350553 +2.4367072618909362 1.0687531321305386 1.2870339298432092 4.749899411937118 3.7232695105519835 +2.635777379569611 4.283125457959136 3.4591092841913293 3.246247784274664 1.6610435603922107 +1.4189133225729225 3.744423982887615 2.6368430448342197 4.8033043416904615 3.1782942566750028 +4.960164256580452 1.2973261229519282 4.829427740627127 2.8567486880261996 4.1602699236628595 +3.4344066488738116 2.501687795776789 2.6902604662609453 3.54852061735199 1.2675073750765509 +4.896271704688143 3.1209531442460587 1.95783588756911 3.892274461306324 2.6256063274247 +3.2484184546727928 3.2666455485360055 4.71192922988695 2.9433458087070132 1.7686773432775205 +4.068260706864159 4.061776932371268 1.5075459671216196 1.7206802145818068 0.21323284637244555 +2.9989564032694536 1.1785291475274016 1.5212355429794462 2.9858789797549945 2.336479357995321 +4.969323686811965 4.969822662174428 1.987203837038812 1.964074355487814 0.02313486315564258 +2.01610883706493 3.3670811688306808 1.8784088267530419 2.7093634520985654 1.5860680409678867 +2.6526564297529474 3.033601917086785 1.851429851607564 3.0409059130814264 1.248988696962221 +3.68339631569859 3.747574241507658 1.2786153936433844 3.1035690855506486 1.8260818119041402 +4.140248521915197 4.355438642710264 4.929787839572258 3.8406356164951756 1.1102068965384544 +3.3011843035333768 4.317996839957273 4.0504333011928555 2.0017480706215416 2.2871420830787565 +4.714402480407829 1.8006219132028694 1.615101998433273 3.4093680552757584 3.4219158196189365 +2.2823864767167206 3.140442198094826 2.039019961500231 4.110665263768629 2.2423144024423567 +3.637418961451271 1.014175068024282 3.9571565361452534 2.1141638960687548 3.205936742323237 +2.2911211803095606 3.5542670596738963 1.6522241824762367 1.4134204365241438 1.2855211945494531 +2.9736836532738145 3.411013094123512 1.0007083570288957 1.8508286538525747 0.9560133675349364 +1.6693774137836046 2.166760732881867 4.665392556550408 4.87431867528157 0.5394815003364543 +1.075613158926183 1.823623139189234 3.1582743693948947 2.560746055689945 0.9573708875102743 +3.4031074927139593 2.2082828482274826 4.8765141405832 1.8909772611019688 3.2157481850752503 +3.39042159380096 3.431298021944376 1.1242566879480207 2.1751962304750005 1.0517341890537653 +3.568313842600039 1.039181860076548 1.2546144007695288 3.6222612834731462 3.4644278526474412 +3.5395659669291293 3.266707505315319 3.195883436670607 1.5508931959448526 1.667466531045595 +2.796490491891272 4.4272516297330196 1.6007719635401334 3.4830983834452165 2.4904888355035038 +3.1607330299107774 3.9868645273718966 2.0885451679638276 4.383703495637013 2.439312403154816 +1.0364403452403947 3.1618747191938614 1.7691585225567565 4.627421750656236 3.5619011719991085 +3.228344161632888 1.1251911503585377 3.504774046129499 3.843512563705087 2.1302573488012366 +3.065470309132538 3.382099289171664 4.296638613779463 2.543557681175949 1.7814451064398884 +3.84994127356366 2.866726507280041 1.6371783984289272 2.34052778638202 1.208888596261931 +2.118736561474422 3.779176023667088 3.2431394339947297 1.77370044600928 2.2172753881776557 +1.8882624356837447 3.4138610523251103 4.856623615263564 2.342859939647171 2.9404861767990824 +3.79369895850035 2.476036947920305 2.927874298734725 1.4527358675638258 1.9779450359509965 +2.1132145363526664 2.484739731201557 3.3572398698187644 3.7101539958947014 0.5124249708898351 +4.802821991353047 1.8913019119279335 4.575182740026065 1.1421314303647798 4.501420938732868 +2.7801133885999394 1.3327692876255424 4.193195863500952 3.2303377548288315 1.7383614940687793 +4.712577591486359 4.0614921223323766 1.962659567637966 2.9119073494325938 1.1510793367033754 +4.374610974452764 2.213170632342089 1.20645525291014 2.3465175604429764 2.4436788695654363 +1.0188209172762681 2.3432833202708956 2.969045834860083 4.439839415689468 1.9792509730590577 +1.1050307844846485 1.149759925800733 4.862312220337092 1.164655056947065 3.697927689132449 +3.3867906895041897 3.5459305983479896 1.9673942627883938 2.908532130582843 0.9544977720159932 +2.634066697262531 1.645949030146237 2.614980375656877 2.7274316623117305 0.9944957596378576 +2.8307124369083483 3.84754676894348 1.3221583376057473 4.893774950908773 3.713542418126863 +4.2392666584304095 4.310761357489152 2.184384274137468 3.24072196647384 1.0587543682290201 +2.220972958134075 1.5841054792402325 1.3607818994118501 2.815898281636908 1.5883840440813861 +2.0226523784999233 2.7917329327548965 4.301188189377733 1.546555519783181 2.8599800774359854 +1.8615050466457301 4.8040743631745295 3.837458947176476 4.2744802053870075 2.9748448300213375 +1.2188468004886919 4.834757454622372 1.6547979339276866 1.8355970193295685 3.6204278984616747 +3.071967943784027 2.350494078749227 1.486891114855299 4.998747017988905 3.5851996349300563 +2.5346910211590328 3.8319876053178046 3.921856183648749 1.0260784441454036 3.173091102359515 +2.4657144300347955 4.790974738062582 3.9921959337206223 2.2377630788112115 2.9128800425824375 +1.4395819692958343 1.133389617969168 2.8515452344064163 4.009755169988704 1.19800000454611 +3.017272140581583 2.645354011125626 1.6550830731092923 4.29270997166191 2.663718969971555 +4.129806892670496 2.2389039542679408 3.5475324977718303 3.163529226311403 1.9295005661962705 +3.1284144818486848 2.4479157626301813 3.1700933398398607 4.099357028731504 1.1517853577600854 +3.6073910318383473 3.6348865429535455 2.7198207913884094 3.1636254829707378 0.4446556053868787 +1.1688835953096524 1.0265634503766456 3.572536268397108 3.535252926699287 0.14712264007252085 +4.965715780079867 1.818572399509066 2.7034903359061806 4.814981246420622 3.789842387627184 +1.519925884434561 1.658531811857475 4.062055924613617 1.3488382874616751 2.7167557029790386 +2.968857206483518 2.174589040863877 3.9819853820261195 4.0499269927848545 0.7971687283061732 +3.8999321421650657 4.513117499079174 4.511831400007783 4.5712176612885855 0.6160543888024773 +2.4441963498662416 1.948631017974038 3.9627658923865945 3.533645647484354 0.6555373236959042 +3.390974071331172 3.162033674781314 3.34537680261213 4.241906010109219 0.9252990462913951 +1.940561729958457 1.4339108438546906 4.960362762668748 2.6402939150748628 2.374745160636263 +2.7680371695002584 2.623069268670412 4.856632967816588 4.623294858868855 0.2747041415019375 +4.171662715428424 2.4098440742808274 2.5242954287880472 1.0370036170371382 2.305654323092788 +3.4843334325095525 4.926589174656366 3.465618668551354 3.038266652338234 1.5042378041775422 +1.6008444711221426 1.0829042076400412 3.5799470947914425 2.8715231725599994 0.8775685557981724 +1.490422506765222 4.642064950488011 3.8695787287351515 3.315395889181387 3.199995111360458 +4.936516926012509 4.310591058079488 2.9447092257495324 2.6556272700878973 0.6894574455590861 +1.8338455594311633 4.096827619759269 1.1788426807365657 1.0300637802452148 2.2678674931746463 +1.635604515882077 3.789985769418821 4.338499268360341 1.493295050299292 3.5688297280849555 +3.0104174677549045 1.440679370501703 1.311601458966901 2.97177939620898 2.284790685658856 +3.9332001330630058 1.6168252991934815 2.747763842373388 3.32662100294749 2.3876071668790027 +2.5104274906186146 3.3509279766867617 2.1950896702928606 2.3921847349818868 0.8633003716005009 +2.3962558744270024 3.739903844869892 2.1847033903012325 2.7971045716432172 1.4766262476958596 +2.4724158602040687 2.1170166105827666 3.432572491897375 4.0856909038506135 0.7435538223045491 +3.656182000845021 4.8832034787355525 2.369561036231595 4.293288009502255 2.281733370684173 +2.97391057640549 2.8046043045115 2.531873314465587 3.2827629236512963 0.7697400982706494 +2.8504243924874437 4.670508189394392 3.968483323813523 4.888830149061973 2.039544877296921 +1.4890562120442596 2.134892631893307 3.3669348063422304 4.4840795909429545 1.2903941843343967 +1.2395141064817397 2.0253282585942944 1.8626368015391441 1.0284316492293506 1.146037572595497 +3.39963322054412 4.3531834174221515 1.986736604746822 2.5356304560182736 1.1002465350682724 +3.5818387277681785 4.805621378934989 2.5350406488065054 3.8417382276555903 1.7902800171668474 +4.030409427647563 3.0373893633738054 1.5444057570986356 2.9200269146173223 1.6965914113490348 +2.38904825973369 2.565108451478023 4.735287090341545 3.0989034181330326 1.6458276683139303 +3.890066414646004 1.5001666111813678 2.0153178653775865 3.7421692120849466 2.948497353606635 +3.858862042805051 2.302606367945927 3.987579030850738 4.943919356358965 1.8266139558550427 +1.3745494815243817 3.040919962028423 4.97051363790114 2.7523591534151715 2.7743467511002446 +3.219665325193561 4.454798123250802 1.832380145767345 1.0494123458012332 1.462392424973708 +3.109974808738979 1.4269583886750277 4.365695590333301 4.48553835180209 1.6872778543207827 +4.603753659713433 4.7646768237637245 1.952218010683647 4.451983593674598 2.504939966273452 +2.668648679748706 1.6720429044155414 2.0408155752750186 1.189145182495682 1.3109407039848626 +3.819998013262461 4.6698358392313235 1.0505165648047647 3.332743189155847 2.435319834301938 +2.843603531832072 1.7647709472393416 4.2924713872974785 2.740498304874703 1.890105868501519 +1.0724258170438645 2.3093997992129442 1.877176616697123 4.538666549325754 2.934899196573331 +1.3858695017730271 3.342015300448825 4.874257981461852 2.579313870494366 3.0155057383698214 +3.4426365542839092 4.193807338039374 1.9075524634647354 2.9410167730371213 1.2776173235862636 +2.615384306309957 3.3556594725172806 3.261514151978062 1.6838412571992616 1.7427160080239696 +1.4807950136145047 4.830134450488344 1.1075159947722 2.570556172806015 3.6549365556654445 +3.228688242525457 3.055933511451863 1.0275294488796902 2.1001883527027654 1.0864811646131889 +2.892078623062941 2.038389695111795 2.205199986385692 3.422640047499708 1.4869247082860906 +1.5341430049446423 4.177825773380594 4.570521526626969 4.925253034230306 2.66737568081658 +2.469795311451811 1.7819423163064112 4.447042444491528 1.8002364827516302 2.7347254966508725 +1.3503016341540945 1.3910385941821888 1.4817195080844558 2.890419312795719 1.4092886999142091 +1.4150098657774803 2.3711732641055123 3.0507761181416453 1.7066533043778715 1.6495195005765937 +2.3713697174740718 2.326153544301605 4.13971837684233 2.3363359804749613 1.8039491594399428 +2.6704753430375647 1.5783033840239304 3.2488659338688723 2.4989728448434776 1.324831775367623 +4.961467723856723 1.2105854817665627 1.7980070380413076 3.1493927994962094 3.9868986782072042 +1.9921500132514045 4.413921005010865 1.8441001070042176 4.778292821838333 3.8045317220800245 +4.022830677448301 3.0069944182774675 2.1466748776026483 2.6331546940250505 1.126315194442731 +1.213525329974384 1.639525245929808 3.8037092656601215 4.8680299051647165 1.146409330069107 +3.3255497962423437 1.5889264215215664 1.7127944204961332 2.573374415527074 1.9381585779997557 +2.992279189358327 3.4176834884639566 3.27995090121469 2.679366317883832 0.7359827847390535 +1.319054770760511 4.649066055577705 2.4002984268146137 1.93275464532426 3.3626733924989143 +3.0212992903294196 2.488279525603565 4.101556406000741 3.955087373372715 0.5527777556191955 +3.9646826001633353 3.29047757037813 4.530481626862223 1.9346078673731064 2.6819979488045536 +4.661359995506899 3.123586616790243 2.781447793321664 1.2437424927938356 2.1746918300212146 +2.312400860983038 2.5815081446508645 1.2922766953962812 4.115267368369112 2.8357882625144413 +1.5629656194254542 3.0307046759530922 2.032568150492886 2.597112275707407 1.5725673299960388 +1.88716476688177 4.1335029753268255 1.1230164506071194 4.049550340513788 3.6892595402726003 +1.7243407118868666 2.0576760673330994 4.200080996775438 3.428427695774841 0.8405719934280373 +1.4848948135480935 1.138900732474907 1.4572806226568313 2.9914812325259446 1.5727311961872052 +1.3473731070908248 4.138815308782849 4.1029909448957405 3.6838277085301714 2.8227375691175536 +2.762004941528367 4.7712179801267744 3.0654422936388457 4.789756147772517 2.6476773409974186 +1.41228557250738 1.9790750664127956 1.3070401464287489 3.116332395557825 1.8959928199125935 +1.5098004304291948 4.905159940250982 2.9612914814174776 4.474179772190169 3.7171625174714067 +1.3063740602419012 2.9619694785678283 2.438625677261712 4.80433893614851 2.8874894653408862 +4.697763781861349 1.2678178078739442 1.6382302881161679 3.616862083609415 3.959736502168956 +2.748167468809064 4.9145737459156 2.3579566151336753 2.0238420917491187 2.192019313834413 +3.847448188829797 2.0439906528426026 1.7718145793267963 3.955644417487867 2.8322379571906757 +3.4024597575659974 3.4155911589992827 2.904893618973099 3.6671044165944324 0.762323903412553 +1.3752567314990491 4.661188107581566 1.6569011665157811 2.934865859609621 3.5256969190669203 +2.0848357750256916 3.684754128491967 2.9552490799100757 2.31880670275454 1.7218587738829303 +3.698686258277801 2.3223553756075925 2.895306525044636 1.731409239827638 1.8024826182593974 +2.360386679957931 2.233140853253821 3.4061363103258593 3.5328351876137165 0.1795664387340125 +3.316591304220509 3.063606226233876 4.454618729194378 3.368643195834907 1.1150535003932724 +1.5156385268379053 3.451527898827271 4.8551428408696955 1.6991456273110823 3.702429752550494 +1.707510660320469 1.8822963678583884 2.0282683428216113 1.065596890867032 0.9784101225804387 +2.913144024587571 3.681586580341211 2.566594200385718 1.4243380685471037 1.3766818921653978 +1.3795767530943692 3.188256823646122 1.1513030112045612 3.5513471634676814 3.0052513256670386 +2.445333289622251 2.221736832332267 3.5315949088502454 2.3296249542400846 1.2225903432868195 +4.833112110939405 1.3568406223608451 4.7869067869647175 1.5300924880096232 4.763538898779201 +1.1757036908461211 2.8034092942316433 3.642221749398576 2.6037268057928933 1.9307763410574506 +1.3978841681981269 2.2899376901303934 4.341671419397386 1.3804297796698282 3.092686782531997 +4.642745091635472 3.1169369278862313 1.1956601122290258 1.256119669843411 1.5270055372102478 +2.353276599448839 4.005574560633153 4.219047484057962 4.6280266929704315 1.702161139803312 +4.852737753494788 2.181834321764697 2.984193933679976 3.454304562681653 2.7119603878242633 +3.0983898143944746 2.7146763400503646 2.29333630873169 2.9675165953220244 0.7757287471921183 +3.2821658595027547 1.8684286622944297 2.5466834223016734 2.826233219043772 1.4411110129441795 +2.65874203995131 1.7299257208641698 1.561473442882289 1.237772966341283 0.9836065031888811 +4.034161467389625 4.761846962297539 1.8928962674076493 4.992700423136759 3.1840716046243105 +1.4909716433966032 1.491914890101803 3.288162770241768 2.3561518303944284 0.9320114171561784 +4.409699120694646 2.2135143889450015 3.6378859396265346 4.602048832080355 2.3985073398168235 +3.4138320881901474 3.4297754024751668 3.57297656303827 2.2253809451122937 1.3476899267723583 +4.219975458562972 3.2948542317177325 4.216852857702802 4.462585025186746 0.9572009102043303 +1.625428035760227 4.5393583615922495 2.402804297567826 1.7247599943633496 2.9917777358807185 +3.8241317309928027 4.817939765084872 1.6032032520991093 2.6515905015558885 1.4445657594756613 +3.946572126119131 1.6162003866587287 4.063927336660173 2.305300933423978 2.919486131194183 +4.148277461521692 3.582939313540198 2.044521853390503 3.047943112413595 1.1517210793515211 +4.670034777752494 2.66573367340247 1.2408970665884587 2.650414137840383 2.4502982045149784 +3.7632803036706095 4.365107828496771 2.2702669930241726 1.4381687133877028 1.026929363010113 +4.19404250538822 2.641418316724815 4.17368289251327 3.19532760488238 1.8351623743031615 +4.038244507999632 2.6942421673272374 3.8021517904881152 4.227598374776033 1.4097329845808149 +4.08534974213612 3.8443119415083187 3.550008529178371 2.9850761510476596 0.6142050253717471 +1.6174781946521648 1.6774367223692788 1.0964339581019225 2.143573544425976 1.0488547746437127 +2.4254279046015412 3.9274443131377366 2.516094294443214 4.357691146595377 2.376453714543737 +1.832209830757313 3.7254607826380464 1.9793792691934726 2.546830843535218 1.97646159993566 +1.8193427973671357 2.3237801270999014 1.1577355242853664 4.805557413707322 3.6825346646805497 +2.2759854742958403 3.1341997310850123 1.973731443362857 2.180083464428782 0.8826737036720776 +1.0223961936652377 3.6515918022027143 3.734839664036129 1.5860566417779798 3.3955762433933976 +4.326892520334244 2.215872723431045 2.2138334007032285 4.431452137857059 3.0617376514477814 +4.168538684012324 2.46073554602325 4.033035725123268 3.8005609407814074 1.723553330616759 +4.580498746879749 2.283627863040771 3.1937535923049434 3.4755906915518144 2.3140976659465213 +4.6265904072479165 3.0136455986272193 4.6847081536559525 4.603863506046627 1.6149696011701067 +1.6133564029746612 4.113757437989532 3.543428621799092 1.6046123223144 3.1640186439164597 +3.987474227864267 2.933360022685325 4.650148958232637 3.420704232003513 1.6194724734964279 +1.499869293691157 4.543550122786667 1.703651219127361 1.887096059230203 3.0492039942850475 +1.8509370621704382 2.744381932728503 3.9149261887157167 1.7648498709725913 2.3283195461204107 +4.3589275568400065 1.0487785734564268 1.0969865242880417 1.1657862201371962 3.310863888827851 +4.571810301034431 1.9155194031899065 2.7923053741916948 2.970447754061046 2.6622576962941036 +4.908854155016343 1.8308934756060706 2.6296665508581873 2.026934420275321 3.1364196092411976 +1.1778467538227324 4.679262732297497 3.898160407659439 4.844941063395912 3.6271624535434275 +4.486299470062219 2.536958411206736 4.771492201369631 3.9718350705861334 2.1069841220457053 +2.769843202737058 4.2037767309725025 4.372699515994503 3.825144290076775 1.5349208738001983 +4.231193973396007 3.5662973908697353 1.7702193055481557 4.180017869247872 2.4998433117026218 +1.007142266301655 1.2130306931463277 4.33162031881556 3.9997172860156396 0.3905760713233199 +3.132735107403114 2.5491490151409955 4.5920087288035605 1.1949730103414136 3.446799152777748 +2.524139414231759 2.6304331513083117 3.596992496698473 1.5137887997754347 2.0859137090051245 +1.1369231035282361 4.958068385114617 3.107671023164761 4.153389234715429 3.961650898420832 +3.040646519285464 4.420321506268692 3.004130120358577 1.1141437382254544 2.339989656890778 +4.467024995604398 4.01489352804629 4.183844742069198 1.7999850970769913 2.4263572842800003 +2.3583079526440263 4.259378337243593 2.8506609623435764 2.028571876474443 2.0712071534027423 +4.663473481126021 1.0058422229133765 3.9892560529859935 1.8377403716312388 4.243499281037954 +4.7982070440255224 3.0782786391462356 4.883592362837023 2.360574385250948 3.0534854565124645 +3.4486812778561204 1.1209446739063469 3.005123507356453 2.5512477177849338 2.37157351345616 +3.526970874551454 4.660171289058788 4.101132282855109 3.5454960994615043 1.2620914181372933 +2.3103451724151958 4.168544016153361 1.6850267210899923 2.5546678186690133 2.05162827565529 +4.991356926528033 1.850758468048042 4.5212681675867445 4.977491170735688 3.1735623683818055 +2.0298768498886415 1.3003825990163254 2.4690963125797407 4.281985274040558 1.9541566591863209 +2.4113027144814607 2.3408799027383087 4.6115664151138 4.475490169229744 0.1532191799603091 +2.8199546928530843 3.6050758061165618 3.737728476700922 3.561946970296378 0.8045584506335962 +1.4029482743743342 1.3371947321195585 3.0824663242103107 2.2130334027183225 0.8719157833719633 +3.6576886200559424 4.8626254954519945 2.1414087237565145 4.855113023718954 2.969185730351646 +2.4902590789311176 4.554379155426276 2.693519971103668 3.394029045115132 2.1797487591377998 +4.839265875605921 2.370260636234062 3.020019998568724 4.9115158562894905 3.110264209327 +3.906130302015981 4.219548366294833 1.4403849968371039 2.2701509369101145 0.8869850045640849 +1.8368057743840622 1.0857724475131123 3.0439455669812223 3.734426049862672 1.0202030951291252 +1.8987209501381397 2.172143551126254 3.5822902781248724 1.4180802957819028 2.181413479009439 +4.9194791403118945 3.4249811817659834 1.0064808835530865 2.3807244148754347 2.0302880168782 +4.897433476005508 3.6956014056100486 3.6344609242963504 3.241816143435419 1.264345779195061 +3.145034271165155 3.6206335395556972 3.417042553394827 4.187218045147391 0.9051877994040368 +3.9495372721074746 2.1837139315101535 1.5124939935396382 4.550300630418253 3.5137446169666404 +4.765988005709392 4.870645357796617 2.311796065741909 1.9410529823971294 0.3852318719860851 +2.1971120410364757 4.833367221814792 1.528742152723379 2.2014512958771806 2.7207313298933498 +3.959521719417616 3.215165897966011 2.4929542081816374 2.9564852571244145 0.8768846117151817 +2.4611120629759675 3.657402282297381 1.7693675671475395 1.3336903672827747 1.27315549377367 +3.2177211500343 1.1916397863702084 2.3063688625066 1.1871865671054906 2.3146435368164666 +2.462499516606051 1.991301916087492 2.363662021480783 2.6752631970801453 0.5649092594119448 +1.5349869010636534 4.803374538495609 3.49048433072344 1.405456066670344 3.87681578236809 +1.7477441035661903 2.055078215020395 4.6292697046492455 3.5163816654701976 1.1545449509703516 +2.0553162104299387 4.583778435841388 1.957442034409373 1.4582788261875996 2.5772631091479337 +2.479454656813548 2.7513041343257942 4.450645631456637 2.197400015614391 2.269585412302428 +1.1898482004332882 3.143025106534623 2.1368490945156937 1.5748126105583689 2.0324332795510642 +2.475403135393001 1.671729013891416 1.198276594836087 4.148242792475751 3.057481424438742 +1.8387851630425547 4.256691093851676 4.387443772877489 3.5072476416985228 2.5731331717546886 +2.7972481979168204 1.424208927167332 3.140060216182637 1.8769640278358075 1.8656497045363518 +2.0498231316181434 1.8407904111260387 3.910913361211321 2.9177835084531494 1.0148899362373234 +4.282950344449272 3.20109619394458 3.407971097502047 2.0033935264811995 1.7729203467666148 +3.984487715403122 4.058033024676746 2.393570730966493 4.634405758804935 2.242041599637229 +4.566204237624256 2.90954145418911 2.6556406366550878 2.5346487776598883 1.6610751361579645 +1.1374473508318554 2.689840886687251 3.4117785818262454 2.1316737774042287 2.012111826035011 +1.8892302146454156 2.408147861844054 2.847502255211204 1.7303356217287766 1.231802261542262 +1.7701737760797571 3.298248025177625 3.1281479556058476 2.630087743423332 1.6071947255125325 +2.5622245740118106 3.4862940851997215 1.8469282236575677 3.7337361308462573 2.100939918259641 +1.619750074089791 2.551616138038305 1.9575762899463478 2.2504948631743003 0.9768191499355421 +2.2153328013419276 1.5782956071526693 4.499069164108438 2.1971163449149294 2.3884729784055474 +3.546333751923484 3.779977366290251 2.460964051032877 1.511378476717991 0.9779070004255511 +3.9582912353691384 2.47950421521441 1.1913513749061981 1.4090006320234942 1.4947181172722208 +4.740221586595663 4.658188637859933 3.1397314312410596 2.2121896802133074 0.9311622332214229 +2.2188838455599464 4.118451639863293 1.264526714106423 3.195383837355411 2.7086097975817482 +2.831184691818261 1.2978252400202077 4.5226885052030195 4.629360178919542 1.5370654034203979 +4.3730202148707775 3.539148663512464 1.3892293968659453 4.698051488937822 3.4122786230241564 +3.65926598908637 1.5350641304167767 3.8197104158140553 2.641529897251369 2.4290621380886894 +1.662535566227859 4.928484049157271 1.9154932808029121 1.7613730664447478 3.269582929613919 +3.5153357824282714 2.1209490291362556 4.7306907770741216 4.954880750102263 1.4122944316829291 +4.525450906564358 4.832861675115783 4.708468155053328 2.8658163703951094 1.8681185669345233 +3.3100634731908136 4.0275380370517455 4.59290519643384 2.4997372214887545 2.2127182200007174 +1.6949090584121391 4.452111052790029 1.9351222027329618 3.727028391766534 3.288326417510621 +1.6373878109572724 3.356073443998159 4.476662134334285 3.705074061080998 1.883939611560804 +3.354931597356998 2.9037100390363055 1.9772629304080973 4.3708189660973975 2.4357157861043706 +3.83591046858667 3.5163728730702704 3.448757717136275 3.2973569583639333 0.3535908153575868 +1.7606743720603348 4.839380511812028 1.941899133699319 2.9668483076025556 3.244834711357375 +2.9327155642429603 1.8587218997751922 1.3331915543016049 4.383095173721282 3.2334771499217605 +1.733052960783962 1.8928689963768823 3.4342717367985256 4.1940207846686794 0.7763760564135417 +4.6484813450730345 4.629671800365518 2.9375872753048475 4.628872834890828 1.6913901510403113 +1.2266546391553415 4.991724495358001 4.366645722955369 4.635495803133262 3.7746564595599392 +4.442837929775094 3.637022955943327 3.6688171143569317 2.826146719350128 1.1659464681847165 +1.0555710357206332 1.3664679515632003 4.543478424217312 2.0500214111017607 2.5127643678895857 +1.733997913578858 2.9316866979605494 1.2008099937724537 1.826430587183943 1.3512437053079054 +3.36030671901204 2.827731911764962 4.623592746956762 4.551855256922264 0.5373845855536907 +3.4240624360103586 3.5675157722458746 1.924875257097069 2.364977180527786 0.462891523668901 +1.3841684394383207 1.1237818282506322 2.18507834805628 1.5332521051889336 0.7019107052726645 +2.5659988254870205 4.647596102367457 3.5156419336979745 1.066358683093433 3.2143484043905377 +3.31476238428892 4.537075701481475 4.1408833872446476 4.987194769705462 1.486705351261306 +3.739523760648368 1.4347589904360785 2.198888307714024 4.873441951671877 3.5306058744102176 +3.301366909711808 4.2746041397812675 1.7231237341405663 3.5436212175659976 2.0643163016242454 +3.1483670270613997 1.7600773421250184 2.7674821867319004 2.9347723166375803 1.398332663161601 +4.122205221713168 1.3615878851885128 1.6113751080208099 3.4013197955627077 3.2901231076025015 +3.1718977680684155 1.082715995465728 1.5402644889287074 3.0846451521026323 2.598036202934986 +4.865850187344914 2.637517715422892 1.5532744457872805 4.20621150948849 3.4646126290512917 +1.302671508375171 2.5720583902622485 2.2213281475113362 3.9248434664563874 2.1244546353799736 +2.836924982520648 4.28472633069867 2.0628987422795437 4.471329355644205 2.8101008457310166 +1.494779118464748 4.3991062100339295 1.9490220592009333 2.647001730142317 2.9870205014144355 +1.6874154646323953 4.852002024261605 4.649028427519772 3.433981557261134 3.389829935308134 +3.4785333191149874 1.0024383516914015 3.9462416796187445 2.615902264674689 2.810844934651163 +4.90490934996315 4.783342235654542 3.4534584921065923 3.267249128619998 0.2223791589412208 +3.840647323236745 4.613336729789287 4.09288083633537 4.85062909646795 1.0822344222637126 +2.0798218405855993 4.47317374970901 2.509609229523831 1.2699843382027178 2.6953298929978042 +1.9893738083603614 1.4088120339431915 1.6930457392650604 2.4146444877579776 0.9261515684492237 +2.958836271161573 3.639319996477976 1.018513426377678 4.426419237325685 3.475180587640545 +4.845861512619727 1.639370723997422 3.5289634564441434 1.6359699616003538 3.7235745660642543 +2.8666765501205904 4.021504156696518 1.2129881432735652 1.0812914237154039 1.1623127061390435 +1.0506047420955276 2.0504694812874895 4.771813939653279 2.2712488030039104 2.69305690606524 +2.1605049930835896 3.47028490032898 1.2744236308999959 1.3843302010041838 1.314383071853792 +4.299228887701174 3.2462717834418306 4.256866864293553 1.5883356956561911 2.868758836395856 +3.4804949411979114 3.9655805907255712 2.528846494495281 4.909095927343646 2.4291758787606623 +3.9966208301504667 2.8906672765973696 2.641729235630417 2.5682909489067924 1.1083891214612422 +1.5902856790983462 4.434595603821386 2.0362027571955577 3.4801852729738156 3.1898564942252947 +3.806464863738878 1.6765098554977578 3.3308249311117315 3.9718942480699946 2.2243377005924176 +2.9286114756330335 1.6806906244613184 2.127724695440704 2.1820020834223715 1.2491006707368506 +4.098585045448817 4.60054179590241 1.8140880251218654 4.587650025644868 2.818617879399598 +2.549216461210591 2.4756014704243667 3.850826417369117 4.961211888051046 1.1128230139469546 +3.6981875810822826 3.3362085659291885 4.176955414632312 4.880443784535222 0.7911540267228991 +1.998126060075335 2.5897826365584367 3.6422836210403315 1.958921299048006 1.784311130828673 +1.483017223244865 2.587610449723502 2.301962369573557 3.6886423689797136 1.7728529597052158 +2.3636648818483765 4.411749873076749 3.4315632503859685 2.944187565692413 2.1052760363727687 +2.4875500405898965 4.719351679388177 2.7047101811612264 4.777861446134596 3.0461278243703713 +3.686083145491028 2.1835752162449737 2.935168734950041 4.008739247076695 1.846641200113101 +3.7394881676132607 1.598382045366887 3.407150836278942 4.937367629004983 2.6317102537060717 +2.024554431403814 4.651548945211227 1.2976104900190286 2.006058022698468 2.720845104399335 +1.6892653793386248 3.722623761899961 4.7263581365113385 3.3709835368175014 2.4436830026473735 +1.9242937857110176 3.132107678993519 4.550467973916218 2.1000569688044752 2.7319093130590875 +1.6857038846915189 2.838923493556016 2.463336944009172 3.3355418377166908 1.4459103854931423 +1.3713222302434382 2.4256483389222208 3.3475707697711505 4.6154128874190015 1.648947294101158 +3.0831943899283587 4.967644230520763 4.159328054761783 1.3052298367732669 3.4200917881884343 +3.6639134576799424 3.652572596841134 2.1752131239466586 3.475012858135211 1.299849208224245 +3.705435130946703 2.3530011217677766 4.168764263971475 1.3043289540851464 3.1676596082450796 +4.060961626278521 2.798763529162664 1.8464729078243054 1.9977819521127018 1.2712350149544964 +4.879840654084617 3.1541414647499466 2.232882288400551 2.6086883142079986 1.7661449150914903 +2.2926955425725013 4.766811751827828 4.974770026897998 1.6362882997498027 4.155323243672187 +4.992018322291041 1.5322737521710557 2.6143943195534725 3.0228232136734663 3.4837690296612376 +3.2353588490957668 2.8178710674723533 2.746168310502718 1.5778527007104248 1.2406681312458934 +2.3139600215927505 3.983657435909877 3.0162658919560994 1.4801106461295812 2.268846049131062 +3.8037662989613623 4.895047960183058 2.4769945634047783 1.664971740470547 1.360248774704415 +2.9826706671617336 2.7752185570334 4.817229894651124 2.843530939539729 1.9845714760130235 +4.815446441520612 4.860523305685626 3.398540928269085 2.735864942699577 0.6642073362538762 +1.9498534408242523 4.858901854995091 4.839549264655156 3.210322884772737 3.3342077429120467 +4.0680775766797685 3.9023284996120964 3.6828429677556547 3.894028043596025 0.2684620882107716 +1.491110611600302 2.7790336821177717 3.041626270092436 2.047123069475178 1.6272008024853963 +4.3040785577573875 4.775426930407233 3.3966410352232317 3.1941140663458647 0.5130170187452967 +1.2915235513352172 4.36822742657281 3.078954646818194 2.7608546691544977 3.093104319561768 +4.134481081699201 3.0786883166614856 4.2789156883472135 4.248444668519941 1.0562323824591344 +4.52883722288599 3.1254645312635896 2.2880437253975323 1.2883868926092559 1.7230115190943411 +1.2064973463667923 1.6072141470379515 2.734798123640048 4.719640682598703 2.0248886236516 +4.891618604474511 3.755545079348951 1.5752293646417068 2.4038052044336453 1.4061297866051097 +2.9938088360098103 3.979977906348943 3.2502458640144276 3.3452498370827266 0.9907346719441644 +4.835100715626859 3.337749256050488 4.330639922789093 3.3953878655205987 1.7654341687302981 +3.8626461452606144 4.417615344999403 3.0137919863867944 3.8765007735686 1.0257959173926425 +4.678402416908023 3.2293125184530673 2.4797414201364463 4.237198112444208 2.277831328070964 +3.1926129386819873 4.442489005444796 3.545824472482679 1.71892003071531 2.213542414686425 +4.515174721865463 2.81533274250207 3.62982693050776 1.3773997358358172 2.821859497229403 +1.3429919739463334 4.9974053700993295 2.970758894757807 4.320035687157901 3.895546833564187 +2.5091739732523197 3.1266003444876853 3.2220397653904937 2.398854702435192 1.029003873544505 +4.450591644686588 4.796570050434013 3.708199488165193 1.7429804763874293 1.9954415104172563 +3.3733870087135998 2.2071532316362497 4.516201605825507 4.723966896261237 1.1845959812129812 +4.197634108909083 1.6962418794624625 1.2542570718657662 2.240125302629395 2.688661238230831 +1.220244918251764 2.3600572521694527 1.4218887737554868 2.6560806620571986 1.6800005278870103 +1.7186270844425304 4.595254981895572 2.6469207746301913 4.980186453097378 3.703932610984985 +1.1875526653487984 2.1040227999596532 1.2976221428964547 4.648356943828373 3.47380788383726 +4.598009054920443 2.83703027764848 3.938051826603499 1.6611067882920176 2.878458782316247 +3.0816147540328696 1.9294056484916466 2.3046081593399643 1.1675810919558578 1.6187700191368155 +2.90674856867439 2.5332389304648197 3.7105433810792596 2.6508941500618604 1.1235505963823835 +2.464759670190374 4.479915368577293 2.5770716389552493 2.1769403189247702 2.0544969121443346 +2.0365641101203105 1.9405450779903015 4.4374628271222685 2.401325327569381 2.038400248139866 +3.4694010448224457 4.799216138609229 2.701569869818422 2.171749484144466 1.431474004213437 +4.254358518496707 3.0461415374345067 1.1764326608516518 3.7480074592041315 2.841264721360657 +4.683423154497737 2.1559690180825557 1.3210318557418121 2.4591693934589887 2.771891315770358 +3.061806556798004 4.731557230839975 3.0859878259621536 3.948199552403677 1.879222279209378 +2.4403273470511557 1.0471153766323216 1.506181816659443 1.4955320243128654 1.393252673636536 +2.091381865957713 3.1262845428410007 3.0775730948778075 3.97780848044027 1.3716585945631623 +3.5159969201005956 1.5328154078026546 3.876427249115258 3.4363752180329072 2.0314169194874916 +1.4734491285892273 4.25325904082761 3.661812764639847 3.825984669859547 2.7846535803654695 +4.0978598956565015 2.328573233139181 3.3287854631773413 1.6010444150389693 2.4729465064137477 +1.715312513716528 3.0166563976731515 1.6424173233052004 3.1111541629858976 1.9623159298508872 +1.9701363711549598 1.4342252813775 1.110919832012749 4.450727981845349 3.3825314741824233 +4.838443875486048 1.9782344312713716 1.691353871134953 3.187951718533747 3.2280959065079733 +2.8730654322708595 3.6454695632572567 4.435277686558394 3.7774178770725593 1.014587438568796 +4.07778141431486 4.39806177194683 1.1935087993428666 2.3265305973244685 1.1774200194434972 +3.588360052695162 4.416757979799159 2.8383157475259995 3.2962666719797413 0.9465527850248161 +1.791397013469012 2.3924386884768922 2.598650124337097 2.435697223157695 0.622739707340926 +2.798629750723985 4.208283290574451 1.7241141556492727 1.2260662277071197 1.495050113186987 +3.5156459000757434 2.0193262587066045 3.5629390550408533 2.536049974403732 1.8147930055735888 +3.910419221995889 2.0720688229003095 4.076282222511749 2.8956684650408597 2.184806864275286 +3.6281773168713274 2.1218186802241146 2.188229522765347 1.5815546848575868 1.6239367909965146 +1.5226938369766665 3.310628486146602 4.1102335520758135 1.8607106900572883 2.87351064317612 +4.246597638919675 4.897183755626424 4.062264622838571 2.1088886677687624 2.0588686012216644 +1.6174703072558865 3.567576501195166 4.971892465170987 1.0924338702823602 4.342017176047968 +1.6734143125139527 1.535245349949089 4.7013905885946805 4.450709027566886 0.28623750148361476 +1.1596822521523853 3.6205143098672123 1.3829588395079777 1.0668533723057005 2.4810516082242544 +2.565723395264529 2.7566912103832006 4.433869605289417 3.458426717149722 0.993960529615492 +1.356593455362321 4.4060412424244095 3.9936155206848123 3.5073795504848166 3.0879697577428122 +4.698189811821393 2.9265267493063205 1.2692371845029533 1.6146771930631658 1.805025985019154 +1.3788532188622122 3.9381435475739157 1.2234049456812595 1.4264624217818151 2.56733311536263 +1.0401826602864683 1.719587782853484 1.1746506214711232 2.2054389604900786 1.2345508982734403 +3.6234752244757136 1.166683321944229 4.334658383431768 2.107243104834917 3.3162034430461227 +1.5866282436457637 4.255700994033015 4.6018419880448995 3.2410975740312433 2.9959263520869692 +3.034020016183943 3.332242020246614 2.5416889045527045 1.8950306798483867 0.7121118053261691 +1.7729665520683855 3.2264314995746535 3.4221102416341465 4.116613074463686 1.6108676352939908 +2.8424059580738383 1.8015021206817403 3.79150261052743 2.2019601202393875 1.9000331910597528 +2.3431403782715727 3.9443484684575254 3.168085636054626 4.169075042246055 1.8883450795298025 +2.8482093120597383 4.92786810859707 1.8862378958273287 3.249883475020578 2.4868675026362776 +4.62475651477752 1.4740938401058274 4.238760510780974 4.674604338913939 3.180665831565929 +3.8448891949404778 2.443380828026787 3.5291514788937404 1.9164921259192793 2.13656169844568 +1.0219754212342678 3.707810954061158 1.2589184980079522 1.6354803254902381 2.712104592251616 +2.720611227410107 4.167166542860861 3.700092268193988 3.9793039564244594 1.4732553911333026 +2.273715256005237 3.596775237065917 3.710636291619608 2.081832059227375 2.098449651753203 +3.7575264424915944 2.9051195254144244 4.425896974048463 2.8708552601972057 1.77334494222034 +4.892088365195336 4.340549802297271 2.496172886925039 3.1465084131241166 0.8527198150625416 +4.739556513419077 2.1025593850146347 1.6604899169744876 3.139356729252824 3.0233757463589543 +1.6855837167071588 2.307923190841225 3.034563803338654 1.60055687785222 1.5632281610208159 +3.2138885885247395 3.562249849020495 3.119876001406823 3.9459225305160004 0.8964978728739462 +3.543796554111601 3.7573382673170705 3.2230354232041387 4.757881967544838 1.549630271372276 +4.799633191923997 3.416074206160223 3.006735204823093 4.439815816075934 1.9919727672426897 +4.533776089335973 2.568099422870624 4.274339195507224 4.938735328534456 2.074923366938612 +2.4961895873168727 2.8381817043187083 3.3629972554422607 3.0292352478950635 0.47786576124821134 +4.958660517197147 1.4071543198534249 4.522197875924146 2.597958438831995 4.039293710666703 +2.4363909070453977 4.076496105013735 1.591349302896064 4.170966765278894 3.05685644292191 +3.2331987781375373 3.6628640047159604 2.9070304722391183 2.0019297443412754 1.0019079471547736 +4.0676525068949365 4.49009585838084 3.890806395574194 1.6516075972524056 2.2786991121296345 +2.037191509855322 4.133835914940942 3.640316227956741 2.5039274606124597 2.3848054830369474 +2.359473534736106 3.233889598837128 3.7421295800511496 2.2235023480930787 1.752378989489019 +3.673019623035831 1.2475623323614693 1.22314195241074 1.7557660391568435 2.483250186080238 +4.228889920202791 3.5467830610131412 4.7295850467171885 2.9792166208603867 1.878579088989864 +1.9543546533904563 3.9895721304954677 4.383189926906965 4.89874563099527 2.0995018130813023 +4.447702360928518 1.224891121081236 2.431883377233257 3.208494213935288 3.315062092837629 +1.410820736481281 1.0121668323658368 2.6828987140505047 4.54631765439096 1.9055852335925654 +1.2134530826982979 3.611733223775212 2.791408983358525 3.83098739971048 2.613899561733148 +1.325376992992743 4.078221494164378 2.3833800655933386 1.060128658474345 3.054365258785089 +2.8210831266987495 2.704819872765386 4.254130089918479 2.1934588298898876 2.0639484456068655 +2.93463322763369 4.990170670280709 4.60386735675298 4.162606791476338 2.1023665390678454 +3.1372805382867437 1.6042570838309484 2.955307088947199 1.618629788398739 2.033928985415444 +3.563091066764586 1.9002274675761077 2.227262941651641 3.3096259086180577 1.9840929770971933 +2.0470340057685603 4.14582157935173 4.263033985681504 4.413063170842641 2.104143064391593 +4.085498667025664 2.6252719153646 1.9564966625208737 4.572130599299749 2.9956306610622048 +2.190533229190244 2.7410434393572993 1.2408457648887783 4.81726280471446 3.6185384251453883 +3.859439194030925 1.276853004704805 1.2265992727431447 3.7984086841717035 3.6447160484749044 +3.4491941928217438 4.965785185273887 4.094493822323516 3.705306307882307 1.5657315094817195 +1.2202290788437202 1.4611366797316268 2.0832974581540853 1.174273553711159 0.9404046634370914 +4.663383967877086 4.756572740630547 4.4985314368628035 1.2679978771381348 3.231877353470369 +1.6979697530974365 1.0656782739998882 3.3179207919476665 1.8727748786087322 1.5774153623505724 +2.7452720949027616 3.4515714728215006 3.116571811185381 1.7023482875078964 1.5807868250245378 +4.04399551544802 3.1942423583296384 2.6109519550484195 2.475942830367448 0.8604114665552633 +4.542420694727241 2.3572474678491098 2.372125777092573 1.4546186209824992 2.369979200958983 +3.871789274365955 2.0111845634055006 3.116245558118754 3.597672673523585 1.9218797979830198 +2.124945089838642 4.5856472207560195 4.0643803552973665 4.179095428661416 2.4633746213595367 +3.7850409128831513 2.293076483276636 2.4135540012157817 4.602662100349492 2.649179519946487 +1.5240260180425125 3.423216880181216 4.124825432022227 1.1695566561938002 3.5129103985467096 +3.800045656557297 2.283520579136329 1.8964115874263112 1.2702131667300103 1.6407232467814963 +4.978051728413234 4.240087015668312 1.9720400972320724 4.820502136797323 2.9425036802187563 +1.0063748403700812 3.5601061194859147 4.318515585913183 4.287199989842106 2.553923278505421 +1.1058057413692692 1.5518635442037536 1.3668991937889783 3.999938338087067 2.670554754891863 +1.788822761400477 3.881784507364403 4.15148042884476 2.1594366475651343 2.8894164283818964 +4.785777849953851 3.375988217311799 4.333171340257462 1.885001993371798 2.8250734431755204 +2.167744243121099 2.134080610189631 4.099437596536947 3.7073975768911214 0.3934826771104974 +4.185299817251628 1.5446990934592089 2.77380260340871 3.4999710340481984 2.7386297252732916 +2.3744249545172957 4.653636079919303 4.326560804597449 1.1842182212982246 3.881896477879327 +4.322003778792476 2.6409932449177247 1.706213027631172 3.151061074072224 2.216615052800644 +1.8128971276978634 1.7458871393610824 1.0181308194631713 4.404997883569565 3.387529903700565 +3.083230450843856 1.1877648216957497 2.7527080396531383 1.3746612604272461 2.343459595772174 +3.540418504432357 4.578073855718516 4.122506136564494 4.079158504382743 1.0385603715088338 +3.6347150432348365 1.6401736075452256 3.1079133975374518 1.7194328142228086 2.4302415248128213 +2.1986703643993204 3.240501465796198 2.272966398522369 1.28085706296739 1.438642755354217 +1.4549460287043101 4.551414728108951 3.5253435680820044 4.691526860039202 3.308791603717707 +1.4184542599120453 4.011261253769076 1.5441276740049346 3.510072651298116 3.253857366440364 +1.2567115922353764 4.575510736351259 4.6560665488422615 4.15630604540377 3.356216369631345 +4.717644649950305 2.4829465991643245 1.4174092120489514 1.609541291946723 2.242942289563533 +4.970887216476688 2.1329847087108393 3.8146324271947374 3.86331812445263 2.8383200913042175 +1.8824406882089137 2.8226750708258628 2.6404338840343113 4.231043372970451 1.8477227174413269 +1.0292191607019614 3.083815082152088 1.250373925747159 1.5510414483417083 2.076479077569201 +3.8385440601930925 1.0974198651010258 1.7215041791115029 3.4610574114944854 3.2465069384206178 +1.2712234811535135 3.6645953473071335 4.301228139309272 1.8674223633203648 3.4134497864964453 +3.4638076807450946 2.7226307457976993 3.4690867954319016 2.7541475744892354 1.029796746227197 +2.778236775461664 1.190572671623488 4.024419637072866 4.224358507045262 1.6002040052262452 +1.2289853466006995 1.1646980769692905 3.302556324748916 1.8514216718799608 1.4525579622836964 +2.062069768353995 1.2008883003993667 1.450934278617892 2.3805761317368304 1.2672282729717255 +4.38925659100826 3.732575506850045 3.160929633877658 2.268806398125564 1.1077517384594773 +4.806256687295944 4.063583038700495 1.6657294816204096 4.590009189516728 3.017113845769207 +3.492213849200658 1.5239374321600203 1.452097769280838 1.2998124544562724 1.9741587755268184 +2.3820460692167997 1.818728984508498 3.917148699661134 3.437734039866474 0.739705721182613 +3.953825915363249 1.8093738256401308 3.034499420897881 1.3482345349141216 2.728032996651556 +1.6458044053729948 2.1414458236445997 2.558451916647071 1.2170279112082536 1.4300625083798988 +3.826741691952544 1.8975279297871306 3.8036383325698875 3.1627938046953576 2.0328668055323145 +4.8952441043303825 1.3668548616758112 4.4615451068860255 4.552692863741854 3.529566341813162 +2.474659621679454 3.969681466647709 2.582991741481418 4.350085669868202 2.314673037099132 +4.900307078784687 4.947034925415635 2.8907142253396043 2.3631097074479888 0.5296697262921579 +2.2806921117068892 3.2142710234233975 3.1562119950398877 3.241877964387055 0.9375010627759148 +1.9665104572039716 4.148864615700161 4.738046558893183 1.0709921452190438 4.26731270777671 +3.368354892210741 2.6292409025634558 2.6907658425884224 3.7854066046723265 1.3208057721360689 +3.83774819688753 2.2785505624304503 2.015197123052558 2.027316953737082 1.5592447381961483 +2.715163155104243 3.4247821343545617 4.466492761836941 3.93203212303534 0.8883733844169798 +4.0064819189624075 4.449963620667849 2.660941109779823 4.560813720785608 1.9509464261730747 +4.78225438500937 4.83250146622376 1.4119825515269881 2.861874721028547 1.450762583041244 +3.4728819443873893 2.1320186681261677 1.8802990598121214 1.295848635432137 1.4627018234021316 +4.951788344353799 1.2937016344648868 4.439324576413073 3.060213806144364 3.909417462197794 +2.3559451700198184 3.6853012281259727 3.4900692951429444 4.329984951746431 1.5724648929089635 +3.6177472645704207 1.3808868279030029 3.0100066293043777 3.018564979552598 2.236876808965331 +4.799178605217297 4.367390609909362 2.8499228447590044 3.219647375863034 0.5684514946696336 +1.719079278637019 3.2334796312531826 2.411639807590971 2.6436413880672465 1.5320682626265223 +3.156584225714508 1.5759329748746986 2.7061000784020504 3.9391015742117643 2.004682285413438 +1.4940435266533174 2.889216845234137 4.5218554972581835 4.524119116206974 1.3951751549001161 +4.629537370091544 3.9292844152339654 1.8531376915124764 3.134399308807347 1.460132025790763 +2.0642674598577995 3.647747767683162 3.442877337515596 1.2463768407490439 2.7077710977049767 +3.226837063265246 4.219029030504171 1.9418376773384352 3.3645254430356184 1.7344985957094028 +2.449808727473021 1.9403050714407382 2.8059849873430953 4.7824156352262115 2.0410468101937145 +4.148986466579623 1.7548632132487025 3.578673557487409 3.1754493270228106 2.4278418260203027 +4.646579510201488 3.9481902639038284 3.186038927858386 4.11354797016167 1.1610428772868673 +4.595396686289057 2.169879251545458 2.116248554193323 2.8067697793152755 2.521894999517048 +4.323295285243095 1.096677311033484 1.8259296507764922 4.555322295030133 4.226185958757425 +2.6965521093284686 1.7277977167982899 4.291629441736584 3.161918291003327 1.4881976875192269 +3.3774160639237545 1.155663244910508 2.2230189057873346 4.239023361013217 3.0000765910696203 +2.954757819018932 1.942801661355559 4.521562003653905 3.5728076852210946 1.3871517659498274 +4.545314581176028 3.1664337196440675 3.2064232183269286 4.448142314502123 1.855580433208235 +3.088246832809316 2.5392450696893683 4.970364038546067 4.185959503743201 0.957441073971715 +1.9390953581473038 2.567441893587434 4.670248165600215 1.3393464052972548 3.389649820466559 +1.995571369102728 2.277901347555242 2.342304042318974 1.5512706118392394 0.8399072001534064 +3.638952898863615 3.808584884495008 4.030067777528817 4.866305898835434 0.8532697147301489 +3.817418059989173 4.8830268232086205 1.1937570803947288 3.535758383128518 2.573031701759006 +2.525370764029193 4.252569122900589 3.9040587135671485 2.039132403799486 2.541882041274078 +3.489879150990992 4.99340496070629 3.7834383381510714 4.885454704946687 1.8641432169137246 +2.7952939292338743 1.6047659266521253 1.1545512134635483 4.611915712856424 3.6566003618926475 +1.966520793576608 3.1094275648630383 2.474172396338608 1.1761006595749066 1.7295161524649327 +2.1036125387974693 2.4570184730210802 3.5156329616618285 4.254581033755388 0.8191092769559207 +1.8032700772217383 3.6566554513384713 3.75485321807371 1.1160765893638 3.2246208213083687 +4.371151568065311 3.649201138902769 1.139478101032942 2.975749572856419 1.9730953703257066 +3.9835952896830555 3.3179944561980497 3.9397327881371806 1.6893284914152273 2.3467730968801743 +3.781579854824236 3.308679232235374 2.427857844453137 2.86929335525555 0.6469159984436315 +1.9215221654577612 2.8024876033045674 4.805417044154945 3.282957957657012 1.7589717941856642 +3.2119347470960298 2.53399717494796 4.32037271233049 4.559571948191047 0.7188988984316875 +4.433062480282028 3.598377555410242 1.6893672340787824 2.72180195798254 1.3276371427955935 +3.720027060662581 2.6489623097171036 4.809822688946941 2.932103180199871 2.1617146560652345 +3.170381519820249 4.806913975781287 3.5323699872638814 2.229139464543468 2.092044042262014 +1.2430544163687243 4.486270675013808 4.223691114337456 3.8755960042023054 3.2618433294748868 +3.035993442320463 1.4062518542261584 1.1511388035937151 2.4558709974104267 2.0876742422001366 +3.740751457178066 2.755525466071328 1.3226727488230914 2.252249091236505 1.354541409454489 +1.7758520768147004 2.6440852341272483 3.1217117473981877 3.766004543444416 1.0811762217575738 +1.1183223846978612 4.954399639815374 2.293939300742221 2.1077785178593276 3.8405916919549625 +1.9699103367591722 1.9815879296651309 1.8250210043233688 1.971950198929144 0.1473925181397585 +2.0810058302614065 4.766463125346984 3.2060967844687447 4.43172075638134 2.951920561982513 +4.982018265707024 2.7206848615539525 2.9950211034793752 2.9893357596855012 2.2613405510609357 +1.0220880831857797 1.3561626573135785 1.8233142803599534 4.9820127966603 3.1763158120622514 +2.879020814776614 1.4132649211120114 3.805975012071294 4.875044285230475 1.8142076646915637 +1.055024174129457 1.3931806282511898 3.5352801961487836 4.216463525661155 0.760500174799285 +3.5180899700902413 2.5494958070812497 3.924465324323067 1.6980071471774685 2.428021965961921 +1.1716733050133397 3.25152419363878 3.306703036500268 1.721894371945786 2.6148419115049757 +1.5866428015159517 2.5694696455677004 1.9854579707050184 2.3828933389670177 1.0601431400213235 +2.4735690208271954 3.6277601485441715 3.3867485148862038 4.3441280069036186 1.4995774908407062 +1.2602133696340632 1.9298839602631332 3.792030165773611 4.999809689279969 1.3810105276045992 +1.2245049886044828 3.2342075622330957 1.1077225724570008 1.9713170892682266 2.1873956944082806 +4.322667978241567 3.1612280596208127 1.0585369216048846 2.274134352258286 1.68125542318142 +3.5051124352242717 1.1484171005835497 1.0481383237491841 2.9182305225885354 3.0085308262467816 +4.184783770037868 4.055155847436932 4.510640710506975 3.1841092917053277 1.3328499553159554 +4.03169008019297 4.322925389177012 2.982585275559447 4.097853650411951 1.1526671475951655 +4.670848385073729 3.222489180312065 3.6154574531657167 3.0054986609509253 1.5715578621921515 +2.1797159670870805 4.096929940222747 2.822279659757346 2.029231975851862 2.0747612025807936 +1.211009349862425 1.8800384150967884 1.7405956030565548 1.3845465801354995 0.7578725465745572 +4.300223988445541 3.4307096707744424 4.322710406643287 4.823956259260317 1.0036446350181971 +4.727871297962427 3.455073431173153 2.0188763823163383 4.85976287637958 3.1129809639402337 +4.8833596856622545 3.5733675036537256 4.807812549596057 3.567160646679646 1.8042440691695727 +2.659903359903939 2.3169223019958913 1.6475444173527762 3.7706946038172955 2.150674945306251 +4.90459711153427 4.851271673700296 4.119767260240943 4.163139108097727 0.068736595105497 +3.753970129700483 2.482128003309577 1.4359654241312123 2.46982806326765 1.6390406801128217 +1.2366080939136848 3.604077086300093 3.860692048814294 3.425097430253213 2.4072083627369047 +4.695217102968087 4.797839510738587 3.1962364542161996 4.633912777278713 1.4413343014273834 +1.1818774012372244 2.630022748642958 3.939263598184008 4.107550136858135 1.4578907045151883 +2.910176395294587 2.798101068220724 2.5681108737597724 1.3247641919964468 1.2483877001919659 +3.79292094652576 1.6176905530758003 2.6218128522256974 1.6213485855930503 2.39427567614869 +4.022981120508292 3.0852417024195433 2.434307455528336 1.4803605205216606 1.3376733424293297 +1.183717150115993 4.099330287620825 4.504941910774484 1.4237983732966044 4.2419624545877905 +4.9958800547252995 1.917146226732016 1.8176312605278042 3.3292407853121184 3.4298054374918756 +2.331479560000416 1.2073882233005135 3.911204922079809 4.857032112925467 1.4690712740322585 +3.0913900810863053 3.894515866381545 2.0045259387755427 2.565247732883018 0.9794998506345987 +4.617033167284557 4.316692302427411 3.9695533607340288 3.749823135318049 0.3721370810124891 +4.436250050772546 3.812903228892493 3.716091651989886 4.897813662033162 1.336049463668424 +2.5650584243835914 3.7501507327250936 3.6778763084696453 3.410422054369551 1.2148973443573032 +3.67338249269914 2.610661384967164 2.103033955599709 2.108480778484717 1.0627350660906127 +3.6284895874393635 1.3362211312897632 1.1124378544599516 3.684988844573619 3.4456513566803713 +2.756501522970045 1.8754339644412101 3.1580526235496738 3.7919981303340267 1.0854339907447306 +4.1263180923078755 4.546988315220638 2.9773296132294993 4.360668070910732 1.4458868299232013 +3.4904379971132578 3.553419871269897 3.453330454622898 2.645102665016668 0.8106780349584258 +3.1101836452691773 1.6753174959400217 2.4504972528111044 3.9696017056809247 2.0896217852088914 +3.6874946173973 4.211689416374373 4.272170450176249 2.3587449537261946 1.9839297663324051 +1.3541391575122348 2.0795254973053283 4.7827927209207886 3.8108641117361133 1.2127780354665394 +1.9554014275456617 1.9100033228127136 2.215956677951518 4.959674061001495 2.744092940474859 +3.8161560784370967 4.695182295626332 2.6662142064421817 1.3092742313787586 1.6167786448463315 +4.409167106556013 4.766462522447936 4.812088142722385 3.9041647016528254 0.9756971810254311 +3.692464938773219 2.169555663160763 4.192986310291351 2.527272882744919 2.256956775052402 +1.8119799923907687 3.3735491989449664 1.9992150266664805 4.496699176627622 2.9454923979133665 +3.242673101514005 2.048629302470813 4.961088652244973 1.8145996659113162 3.365432146865021 +2.9723917653823557 1.960141994584088 4.0954024520673755 1.6912196864129645 2.6085904947214 +3.811260718816853 1.0599502571583992 2.756401072394159 1.174337853286747 3.173741212777715 +1.0615257155537257 3.158163978750124 1.2895443026134283 2.52003122972479 2.431047116880126 +2.107458563069757 2.8179817304707253 4.478361123997026 4.5975191721736826 0.7204455648130365 +1.5642971503003094 2.776217245782676 4.6984422913646755 4.63818550602322 1.2134171574580914 +3.9917957097684504 3.1974092134717567 1.8203241006935529 2.680897993551846 1.171169215172519 +3.3264311045882327 1.5609638471854397 4.987015318896566 2.7079664936952024 2.882869782805504 +4.799167206691283 4.731634839488583 1.9824930087765988 1.3976270490444502 0.5887519099530868 +1.5125354196943 1.050390026078107 1.241617247150741 2.85962742073958 1.6827166388544603 +1.8652255325710274 3.3092759009778745 2.68442407648538 1.388249394103315 1.9404510490461229 +2.453034434876343 3.6838644705079484 2.2939734285059776 2.9226338464337114 1.3820841138230233 +4.706972846816376 2.8011769199407004 1.5161699779602142 1.2791347525778458 1.920480099602176 +4.995150533638739 3.2887472188329263 4.582637742046424 3.3963966726822132 2.0782156162021814 +4.800023670679014 1.170439060761506 4.529937113046391 2.7361228968467146 4.048660751753608 +1.053260454695709 4.849599051262047 1.5774738664218386 3.026393917990397 4.0634414054612265 +2.8941620419839142 2.08884137290746 1.1265319403267173 3.267603496404197 2.2875158553080652 +4.695978149737834 4.971807023070994 2.6105168750023062 2.5225484138485483 0.289516869149279 +3.12092553791532 4.077459321860969 3.890293987831562 4.902647324029536 1.3927728304144036 +3.398503297461125 3.966157996267824 4.00778732270474 2.0219229441290985 2.065402911582373 +1.021720335231251 2.2432879970365627 1.1569724704354294 2.2921683766622722 1.6676022600976168 +2.1420094698768732 2.2849996289959553 2.320172590744882 4.120551734441727 1.8060485172507093 +1.6345687491361414 2.3814915025986036 3.8415936778187647 3.4983755852549208 0.8220050235266871 +1.5449452084348252 3.5251669202692715 3.9348550467361725 3.458912540467323 2.0366146658840543 +4.644491271065585 1.3167368799272046 1.7196895359400837 1.7965094434477429 3.3286409517895224 +2.1296645207980567 1.9841080828315185 1.1031274546120753 1.9916705027045558 0.900386264303817 +2.2573233388850276 1.1439583101528683 2.224138415385638 1.7752918985532848 1.2004352889166068 +3.4133201232521726 4.108476070511285 2.0043700235008832 2.918541300698733 1.14845588294164 +4.7081424123585265 1.4063046687617993 3.251652196476229 1.2078710604625038 3.883191189854741 +1.0101569851084231 2.2232317402296182 2.0568416571627997 3.102495381345906 1.6015436529830673 +2.9602864332883208 2.976328108922011 4.349860215165556 3.583558210657973 0.7664698933875203 +4.24969079365693 1.1096056338269826 1.0701595008391651 2.001582801574837 3.2753143629486314 +4.290941743280852 4.988433831991646 3.7888870409456987 3.9391244622264905 0.7134889603681671 +2.617383177043469 1.3732095802986843 3.6914290156421976 2.322255552056774 1.8500280841715242 +4.92630377739942 4.494400224671137 1.0485186576044834 2.630139112031155 1.6395316223605274 +3.3447914786395914 3.06473734359571 2.6689058260861644 1.4030540857314637 1.2964609315803548 +4.475631293536868 4.459115212339048 1.4336941118889874 1.6507435942956072 0.2176769596239219 +4.708348735434086 3.685223839906804 4.932632102352843 2.709618954739579 2.4471559015128452 +3.5096939544977297 4.0599740901369685 2.8193552885092137 2.457422142685786 0.6586378593163178 +4.6399192152635536 1.7440608893061098 4.784643670249157 4.4764980055366195 2.9122069285506105 +4.783240535445859 1.6942579887913016 1.8301239978400337 4.083494999376697 3.82354469623448 +1.3749252265627803 2.2000115271838885 2.4384887027991042 4.612024439804966 2.324870964917029 +4.500935266421502 3.498693307712459 4.604409314249131 4.327544110103265 1.0397804023271795 +2.9348563536183985 3.955088867694639 4.7315021441341605 3.018822960083602 1.9935256131433108 +4.2468187552877765 3.210063404521068 2.796598285000001 3.2011893918041396 1.1129041383014078 +3.605466072347716 2.0544894740079283 4.424229413231595 2.098741668738129 2.795249838276888 +4.888995586636663 3.2709833923294807 4.919776348534222 2.254629276722995 3.117847394487212 +1.8989316186697636 2.8488127462455757 3.361218222334873 4.872812753962003 1.7852708994910933 +1.1843828205211224 3.2023624923959404 4.0028572341787045 3.887515086082454 2.021273303446977 +3.4174800542874197 4.612197552399696 1.7541624490400238 1.314363812828233 1.273095731164553 +4.222930608940192 4.171896180179129 3.734693922948372 1.346816320334697 2.3884229018293643 +2.4933018028398966 3.912492276606035 2.622790623612786 3.147303732458637 1.5130154005097554 +3.8303079361034675 1.789089179798097 1.7245131778408629 2.501550512368069 2.184115617439239 +1.3440309402974258 2.9786322432938728 1.5260079639681607 2.579376801678991 1.944609813823315 +2.40925030348739 2.008385779034548 3.833145270580692 1.8710869986377294 2.0025895808838636 +4.291147118584066 3.8032888918699554 1.2927426534210489 3.199561800167765 1.9682390372544973 +3.352105232993198 2.154157570811516 1.7281458930742453 3.9070101447098273 2.4864689880193644 +4.906825563025309 2.6639305439186165 1.7529164574762168 3.649690245673811 2.9374017209648158 +4.9388474801624564 3.5665955192240832 1.5453373348444206 2.518886697316689 1.6825200757998018 +1.6339312528388845 3.58678786789795 4.652840065382848 4.91412514970124 1.9702585754837412 +3.944729685506083 1.4641376105966297 1.0546114658009698 1.2061758756191319 2.4852180613433332 +1.3117749982891853 4.760279478028178 1.5416303794407904 1.982260298777085 3.4765410788014868 +2.136128680991951 4.468537827268982 3.849123312741797 1.9875293908200415 2.984235975215896 +3.7145781616292326 2.1361089418911208 2.1036340799753654 3.382359276968301 2.0314288584849005 +4.752266176187964 4.516815849673116 2.7147586083371396 4.779445285534166 2.0780683172722805 +4.460549870661784 2.223408164683573 4.89442756716452 4.072244883889984 2.3834402399270713 +4.104975261338936 3.2276024783790382 1.8629952196149207 3.67006577107987 2.008802374115142 +3.353218154996592 3.9737713121230938 1.660648126788213 1.056397586762107 0.8661437155238786 +4.154415320393122 2.2077642382100655 4.649232797569916 3.4185363872159527 2.303055381492724 +4.031379081388199 2.846503347595004 3.7009502264751677 2.883364789663894 1.4395750939141183 +2.6438040746416687 1.1284745376973935 3.5731763305091 4.61685435183368 1.839969406737988 +2.157435053299037 2.5819773419013345 1.1971676023631326 2.068118174656167 0.9689123046949298 +4.236484937443175 3.3737317087803427 1.3356631330132664 2.721978959390787 1.6328547712619539 +3.111789025259635 3.366979762762016 2.978547914561199 1.6636874875922607 1.3393954811466058 +1.4081750531543125 3.5453916969783497 3.1277459782103927 1.3590971329879125 2.7741329673152464 +3.305128156524724 1.1785433112801105 4.3328570178950265 1.0554302238568414 3.9069028007238003 +4.111458685281971 4.174178568747905 2.232236517754794 4.74872774661318 2.5172727084491995 +4.863085672579176 4.538653879812187 2.0467567272626765 1.7066567827986185 0.4700254890774097 +1.034507000985065 3.88667502225264 3.7666908958549965 4.680657599274451 2.995028807290644 +4.60785122398353 2.0890239258829366 1.223996302158184 2.5310384726183353 2.837754427891518 +4.880517001657032 2.9022888143985974 2.144815074273868 1.17557696347221 2.2029092755477153 +3.548743938523557 2.813997720638552 3.7624366585046674 3.69598991807551 0.737744653664111 +2.8774816174533444 2.1469844720726874 4.749313684923788 2.5147035458098244 2.3509803387608788 +3.8244855013158388 2.0250380850421403 1.2865233447663948 2.5192919278949946 2.1812219931687338 +1.9841503243317185 1.7490722581745186 3.9155070752978003 3.045385358773171 0.9013176458696323 +4.940036951859258 2.7512512777119085 1.2182183192108158 2.656227365049894 2.618902965607486 +4.056219485200713 3.92877582578613 1.6748892687916368 4.964791812835566 3.2923700635912265 +1.787683339099138 1.2777202049851346 1.337662913405084 1.157369773569671 0.5408955670248081 +2.5041743060935744 3.8731475355904643 4.316609936864788 4.965637277147052 1.515032736119261 +2.3592775085978595 3.3818562120240663 4.012858481028815 2.8901006713863233 1.5186350133636546 +4.7594727610616765 4.449941016516218 4.5917769813605265 2.1591891198758595 2.4522017871137565 +1.8206628586764264 2.2346515810295156 1.3005956201510962 3.18377444506422 1.9281465579246606 +4.7643148756905696 1.0730266648353344 3.8256858729581995 4.715773508361678 3.7970863374825963 +3.9333761841387926 1.927034595824967 4.6197668272403725 1.6585677832103287 3.5768850061697663 +3.9081932627032967 1.7730392827071038 1.1645765391965295 3.436898899526333 3.1180653340731 +2.184159638960235 4.240985472401437 4.9323971664688555 2.508162858193253 3.179220736364744 +2.6476584111936394 4.508711839175035 3.024875483995051 4.892288186698613 2.6364275192047146 +3.122222819181828 2.2191217332557884 3.3937951407569513 2.708671706888623 1.1335720934445774 +3.727248873423535 4.064060590719571 3.0063818671582845 3.9713524094209376 1.0220617791222717 +3.263177590712888 4.391974380126759 2.251282808158676 4.161215029828473 2.218563337649748 +4.588585483482227 1.7594116470518952 3.2395447950430754 1.480012062524001 3.331693268226828 +1.8123575003358798 1.9821873826778798 3.9996246095594197 3.5350765284007886 0.4946181442734017 +2.2025092372991164 4.064300841422417 4.329070333526452 1.5985757929066011 3.3048250201090568 +3.8570724874479883 3.20586048312622 2.7130664862784095 3.6335609855522706 1.127558068467523 +3.746375182240399 1.6287570120178132 1.1856187228186497 4.79491929173213 4.184657370874708 +1.2365619109935073 1.2435207800325587 3.214901637831022 3.628475775159746 0.4136326787446816 +1.8608944107076932 1.3664099934179537 3.3609359943083055 4.491528570341602 1.233999356533049 +2.0516421082229686 2.6777764253277714 4.810186798277602 3.90480438173326 1.1008003920983906 +2.8612068897934275 1.488316605703412 4.038130499942684 3.7005421060748778 1.413786990965403 +1.1788927333836088 3.13926229041725 2.618223545113645 4.2052039110656985 2.522212418108671 +2.289941177406959 4.315174128853096 1.8057607681661167 4.655564945611269 3.4961339158286076 +2.3299269709055426 4.204784878894304 4.942657957089066 1.9631394748791218 3.5203156905281445 +3.514868768745178 1.868259474405281 3.013897766685026 3.9009905036270456 1.870362449404344 +2.518247724659586 4.409474267788694 2.726981708775612 4.875814392517948 2.862554757582004 +3.689040948477528 3.2585392731954896 3.6589577564233213 3.3326539928000227 0.5401905576510673 +4.6535069074805575 3.318780582421462 4.080356528291054 4.745703770988675 1.491368940326667 +1.0303026500641077 3.0047745373435344 4.587098953523558 3.509591171288315 2.24934707291567 +4.150550061403314 2.6677753223589877 1.3947465608656353 2.5989477515454578 1.910162672230476 +3.943436586227363 4.473691994620429 4.583687210971416 2.123523598043387 2.516659651304719 +3.9117150695186713 3.127818172116923 3.3575682404698988 1.833278259087093 1.7140461758949441 +4.080692801220112 1.1882394778691405 2.269741396584493 4.660704136746759 3.7527308793208616 +2.6984856816940437 3.242200374263268 3.6303379650362233 3.4923899160618683 0.560941468543267 +2.4685287420557787 1.0233640762721183 3.863392128650338 3.3185437989905195 1.5444612696868423 +2.901292354738361 1.164008473262717 4.400560496953066 2.053267770046646 2.920263418019487 +4.246573329933087 2.3958245134256604 4.9857485986207415 1.4645391042020122 3.977962730517751 +4.241702149159032 4.05498367356202 1.5299990269957937 4.325120962108306 2.8013515347553914 +1.9946734730580453 4.380751189711175 2.612056020076947 3.113374555713304 2.4381729110301413 +4.149206589665898 2.1271315725100024 4.828895575060161 4.116466731602042 2.1439081678087537 +4.520129853859485 1.9488100873141767 1.8302555338002908 1.8374993372820723 2.5713299699796415 +3.2695418071450506 2.2804865998968906 2.4899065635471542 4.08943895950803 1.880620665821005 +2.0806341989833843 1.1542320087329818 3.7615637845297667 1.6801823476509257 2.278238289530876 +3.37596114400384 1.0377961012604717 4.714771921635535 2.167207325177069 3.4579041542870566 +3.138460530880796 4.075868528211037 3.474276385539025 4.4486283692083965 1.352070834512428 +4.335994624987329 3.142946901078572 4.709074478828651 4.585428672905273 1.1994378503475314 +1.422488420868552 1.9221173455255798 2.9182015454967822 3.0081065523469364 0.5076533981080636 +2.911910123155885 4.701889759003065 3.5941388561690455 1.4480634565345651 2.794578092962138 +3.3384333383211184 1.4913668964256162 1.356516373194177 2.190196562552863 2.0264937944404484 +3.518767558796027 2.369955395928902 3.812017018391351 1.8447638077776771 2.2781252336562297 +2.3518820192086793 4.850063522161937 4.683921596212857 2.933722891152986 3.050263321238192 +2.822369333948493 2.8000232835537955 2.93404073156423 2.641354842014121 0.29353769078259967 +3.269290951982895 2.1626838459884183 4.379991003916664 4.177336916990842 1.1250102070582335 +1.7497932492184076 3.042206322817372 3.9133576417733993 3.852169935719994 1.293860691180314 +2.3839258296476404 1.046085359928548 2.570573863514249 2.6060522209958115 1.3383108145224678 +3.829475969333983 4.841171940513325 1.791655596962571 3.3134545998255893 1.8274027862557805 +2.6407756375446896 1.6557152292041004 3.7305517543505418 2.356116829764915 1.6909805942117804 +3.4433722609493493 2.858982611030352 1.0271961296511756 2.493602149319216 1.5785619650337184 +4.0458542097858174 4.464979228068607 3.0282235009393577 3.4190782242508337 0.5730909139791341 +3.06081387534477 3.7748075834144013 3.386811649776271 4.1180442678263045 1.0220020336884503 +1.8989665325419645 1.8934855256492806 1.830558567696373 3.612300841207862 1.7817507038456437 +4.44663506235446 2.3951857179700617 1.362597333376578 4.186551110163542 3.4904382742006104 +1.2683101240886163 4.1811216516447915 1.3200548575734716 3.4732266052683407 3.622239579339765 +4.266184218056059 2.6251130158583966 4.563729750965612 2.2877896921707586 2.805889848498975 +2.3958973740590177 4.979571393785637 4.351069675855053 2.2024134358766583 3.360371270828329 +3.961899176970164 1.0615952452060609 4.318187647173654 3.340770142919214 3.0605731283910362 +2.9647325069869943 1.3514447920034063 1.6906686525543284 3.2750929396066817 2.2612159500406688 +1.141281730426102 3.213264284458696 1.1614149978164305 4.188451606635985 3.6682505824097156 +3.8170456173443186 3.496834450352043 1.825860572085706 3.247782492019003 1.4575311790330072 +4.488101232159556 4.852528696118298 4.7151037470062045 2.0286834073174504 2.711025934582855 +1.192616049843461 1.4048961441701469 1.9764695907269219 4.265703240588996 2.299054923682377 +3.080336658546347 4.457788481882911 1.3623136190328005 1.122218996618113 1.3982199230899537 +4.239654473237526 4.657489808024714 2.9859092899164956 4.18534704782812 1.270132789160561 +1.2161535773898238 4.404284583711224 4.037119402204608 2.495474830266514 3.54130587490746 +1.3625797484239142 2.0611511825401165 1.9524987910988458 3.696514290624242 1.8787208710045207 +2.575951474449852 1.874840952804246 2.066592030199357 1.2341628603244224 1.0883447461263582 +1.2216217102690488 1.4634101603281398 1.8962557859003382 1.8437208307166815 0.24742994179792865 +3.0024407620846314 1.491678032537314 1.315496279491025 1.10899045019911 1.5248110317415737 +2.467817435230431 3.9781468872616137 2.400877242727894 2.5554494346705767 1.51821856667437 +3.078849945785108 4.124802134645189 1.9500649732626094 4.252296015156126 2.528692102973255 +2.2234262204291277 1.5398838358259148 3.2455952560382357 4.837417604679292 1.7323765702589533 +3.495948965250087 4.608193733913659 4.534387302747497 4.942653672473622 1.1848079397391087 +2.360661063018286 3.9687361002960766 1.180164888943752 2.035823484184512 1.8215534461347431 +4.601900904950876 4.159339881906342 4.946271064925172 2.188986584002122 2.7925755079956778 +2.6166337957250994 3.6278843106196423 1.5685127131513568 3.7516082971775706 2.4059372254631324 +3.131757496629909 4.117366613067425 2.832326674151465 1.4700134633702038 1.6814644256343605 +1.7193714350001503 2.069053762835127 3.9099338295486223 2.2117074493881317 1.7338542524310085 +3.399883192745949 1.4937446223457678 3.472176502871618 1.4718000136936036 2.7631269149323208 +2.540964728270362 2.206066448075093 1.6159353679466806 4.4374768511770135 2.841347074833938 +3.317059236846956 2.6117366568968503 1.8381837196444208 3.741581823650558 2.0298778988209194 +2.5139789766618503 2.557442739828194 3.7307285661290583 4.083591326706104 0.3555295016037819 +4.843180388138614 1.959224706446347 3.7574626473163972 3.677933463554005 2.8850520385315446 +3.972713639392137 1.461205961790923 4.561795967426045 2.324093785972137 3.3637749430563013 +4.310445412523803 1.05739592622081 2.5174164877741427 1.4000907838545502 3.439585394924159 +2.1361232920012654 3.7308287792053587 4.257226840806826 2.691055293232628 2.235168652999098 +2.5169175631902063 2.3436682791068195 1.753770877647045 1.7609485342943567 0.17339790422710638 +2.784498851218486 2.396285874777931 3.6262348199250654 4.569523150404001 1.0200500916595086 +3.361931809495148 1.4870081955128933 4.670970251971807 4.542629525594452 1.8793110174517005 +4.369374780504366 4.5213642821784 2.303224199455953 1.7980470800338932 0.5275459511802655 +4.435113073290383 1.593128842723028 1.4262896297930054 2.415572525393343 3.0092449242826533 +3.8766152964475653 3.072163244125649 2.354439787211401 2.1099644310084638 0.8407801759529637 +3.0768323569796037 1.9646851913663812 3.9568152616352013 1.9465699832541103 2.297380551244176 +3.4819409335418072 3.4565327509840014 1.1303991921917391 3.2719728877622205 2.141724414881686 +1.4959300092021954 4.508133522302993 4.275228663086583 1.0107075499977176 4.441899154881812 +1.8341070727185658 3.411145553167056 2.2694334765960207 4.710647060871961 2.906299043950685 +1.0176266319268863 4.458706279330524 4.395753567673099 2.8567841539193646 3.7695432079026574 +1.0594084549174974 3.597302357316566 4.269796453217927 4.495290145287566 2.5478918471939838 +1.1369810219259957 3.1264005024450823 1.5845659956474427 3.0743209145885086 2.4853892226325307 +4.126110559169547 1.8842148854100529 4.944874632737116 1.6659606632005706 3.9720741472992973 +4.997790589681779 4.100877982443031 2.611856157455037 1.9871780316300458 1.093011887358977 +1.435299585614921 1.9343501778254653 1.8276832879762175 3.8860206535189366 2.11797171935204 +1.160628013323291 4.145016728435602 3.7607366272707563 1.1287097746237102 3.9792136605043997 +3.9090235638815214 2.648304871906621 4.170110479555394 4.739643051427725 1.3833940041500887 +2.9266729632222157 2.2061811455472276 3.658700203894619 4.473355205478041 1.0875528635158358 +2.2771787385887765 2.9678327433749576 1.4432738635924514 2.311333046022046 1.109292431474914 +1.6982071724657168 3.6317728803641147 1.0028587931867632 4.627776609156934 4.108370177977951 +4.060024579206479 4.692474293690786 4.58478822316723 3.3241623574322623 1.410379457703252 +1.2237640546131212 1.940424685096847 1.4931408338757652 1.7396562330693017 0.757873539137553 +3.7464263915327205 4.388526268249503 4.747169450605751 1.5522439642317574 3.2588097697106853 +1.554404506290695 1.2216430719069513 3.4653622319437423 2.5041812810782753 1.0171523939507638 +4.586782625681608 3.305537019003541 2.891759852111026 2.651996785273121 1.303486337807714 +4.215230917644311 2.005785196531998 3.4847879455259285 1.5856180582007329 2.9135024721912117 +2.3330335355264986 1.9369178230017186 1.6178001348731486 4.480182488942747 2.8896609487270353 +3.903333115000328 4.703736154547045 2.040068967199319 4.308429096851676 2.405431916207998 +1.7578926546969074 1.6918898387223584 1.1110671256147593 4.211608429887754 3.101243742632857 +4.191475374357689 4.99119762180012 2.524455997176772 1.0052773738946899 1.7168166362461703 +4.582105699213223 1.3286862713186136 1.5291657106118524 4.1836632227528625 4.1989397490038955 +1.7270024234580528 4.91873504979463 4.889123789145925 4.856665981204063 3.1918976592800985 +4.66887203708932 2.5799679583463013 4.220643585732086 4.110835103883563 2.0917882667409478 +3.3460572471670154 1.6112438709861836 4.476763353882557 3.929793623304267 1.8189978934415574 +4.807886812087595 1.80605009045098 1.138670115934803 1.649230103150709 3.0449458458094076 +2.9973499440367712 2.359374941998289 4.806327048815879 2.271900058978888 2.613490438100012 +2.2725779742573526 2.4508943291712533 3.188710675125661 1.8667737753180789 1.3339092508497952 +3.371405807349081 2.109612384810431 1.5048727083938167 4.214261174284993 2.9887971661298702 +4.859941764321422 3.9244776422162517 2.759730234293727 3.027559731407481 0.9730497229176954 +1.6673964686697929 3.1806901806048873 4.725201814438755 3.4747067632689617 1.9631086907205215 +4.461284371054216 3.772159326136807 3.6198072387111173 4.9252850010672145 1.4761996868779992 +1.7319988433788325 4.54028056899581 4.385010777918519 4.516010900996973 2.811335498065081 +1.1523964317929338 1.0530221675222675 1.7158807084782035 3.7965157592452505 2.0830068312129293 +2.2869598290078383 2.3041882320222022 1.0637086739907153 3.726735112510161 2.6630821673624694 +1.9382236223421865 2.977877033480348 4.345631843547659 1.0220465814453257 3.4823983416253594 +3.1167571923568933 4.757700443622998 1.5506678344547926 4.072303045386292 3.0085443142631823 +4.834501051587591 3.724256299859863 1.1883618887303777 3.331939027850108 2.414035285594577 +1.7921747710162839 3.7024199352391878 1.3744076848595603 1.342911253122638 1.910504805712131 +1.3025432402840562 2.360481425933051 4.194014826164936 2.8025045550620242 1.7480085924386028 +4.614410268054776 3.163786841307634 2.2428719005754867 3.7465744671247263 2.0893610829328644 +2.6214840632973515 1.785265634288371 1.2152645339800667 3.1917815493761568 2.146131583376125 +1.8913296874001921 1.1092100585245874 3.9895980626033234 3.577385943933281 0.8840983795092935 +4.2628739043140556 3.1058127640580087 3.2366199491265557 1.5809251778100544 2.0199296171043746 +2.1584621123744165 3.823776147608185 3.693232252602139 1.1528292989727889 3.0375842379686033 +1.4429612210269234 1.3597512862846584 1.8186130223086794 3.4565241010432755 1.6400233519926903 +2.0440501019833177 2.557302128433507 2.3861068276670463 3.3577245419929485 1.098848772783187 +1.0918586203951293 3.9056305484810863 4.101118764986218 4.262015134992644 2.818368340931648 +1.8314664521322355 4.902700369394126 1.5532118413618798 2.3909903342421646 3.1834494777948934 +1.312678171672029 4.987600879363888 1.4626032824692747 3.438318867729771 4.172350534333194 +2.9794778648716695 2.2441471161124893 4.065484658196322 4.22290291752344 0.7519919005151029 +3.1093396357817826 3.825676811121093 4.207694152933385 2.875209406815659 1.5128299796770037 +4.27650639607292 4.143277551965418 1.6404754940639834 1.8330841786618888 0.2341965633495856 +3.5774331529102574 1.1619821446486114 1.6664883020617558 2.0913157331483516 2.452525620562574 +3.925506617120451 2.4897107419202587 4.191327316458604 2.188186238685742 2.4645656762810986 +4.970965518346961 2.652743569036825 1.6556882769548529 2.4875066109244277 2.4629402646006677 +3.963611491506025 3.383240039761464 1.108076878932629 4.693592678525473 3.6321831687196062 +1.5823157271363364 3.6956314116212288 3.0515912253546724 1.0480553270594624 2.9120884735954444 +2.961258604247753 4.5818025202061 1.086982476876869 2.273987965824385 2.008766938781387 +4.390790482133666 3.1736347842141623 2.4837610799371723 2.586968807711712 1.2215235683564596 +2.5454506175766016 2.4887781614144417 4.304224707592769 3.1905978268271005 1.1150679785785815 +3.681573081088152 1.8357943640387853 3.806950327962083 2.522948786822077 2.248457033159032 +3.0023504593985066 4.864465854803517 2.6833679109125237 1.7808411912127684 2.069306218416298 +3.8507405180046406 2.9857400260327527 3.068100440308449 3.707241043950976 1.0755122325367303 +3.342673283209381 4.378447910592529 3.3760682120050776 2.091459900953676 1.6501659284911423 +1.416713390775663 2.8968822853778735 3.2883880827785332 2.6637045899590412 1.606589375898238 +4.188359171115952 3.605914439092505 4.594624544122455 3.7321902083977023 1.0406896027629278 +1.1466733376420746 1.6650474787178928 4.538715552079568 3.433362614251868 1.2208672603114636 +4.19456578454664 4.967316287803681 3.536346717530766 3.469760433981405 0.7756139977082193 +2.5959862008213284 3.392252348956631 3.8045606412050135 2.0163587607427904 1.9574743277894764 +3.0402276345397943 3.939634039916958 3.6573232805448646 1.6309783413655934 2.216981212047345 +4.992410043222209 1.6534233937588794 2.934786977619928 2.111211125584657 3.439056415552088 +4.334134549668612 1.4896240620032515 2.8364774523503744 1.048756863027776 3.3596405789795676 +4.41708307209375 1.1663042761090905 1.7443585895861684 2.330995986477146 3.3032871833757502 +3.3746239831491485 1.4729060730890624 4.870196191958693 1.2914169794023755 4.052677098125203 +1.7976069439184452 3.0281306176596923 3.3362613301234183 1.0678735871154315 2.580653301833961 +2.853676761405765 4.044981499608316 4.281239476934336 2.9590447765320818 1.7797207098406356 +1.0290554843741795 2.9496328452293126 4.95270156183564 3.334930293154996 2.5111354556849075 +3.203232199654076 3.1491923608216683 3.6946312376672568 3.51313952658593 0.18936616744355442 +3.0038543510275173 3.775210135252601 2.4907382512342795 1.3667873784388305 1.3631783853608983 +2.586994929536512 2.328292316528737 2.3250072610665358 2.0011586877170995 0.41449359517068046 +4.607725415005736 1.4116900170662317 1.4065597091625488 4.589570252306215 4.510676044967768 +4.39775444965451 4.851888559446978 1.4462284813190212 2.7140598838669567 1.3467123876179588 +2.100135346736813 4.182212187888052 2.0211825803413253 4.420787914225867 3.1769717862872917 +2.5564587337815454 3.797226635844944 4.565836624816638 3.550099792308308 1.6035043809434582 +1.938798664979306 2.8259679458350777 4.530861044715449 4.254354029747338 0.9292607073479014 +2.0942372336349444 2.4479230277951527 4.985777883828295 4.877547766798099 0.36987484264695153 +2.8710578686612416 2.358772218589149 2.3581979674985902 1.0668739703791572 1.3892279340721219 +3.087419956417445 2.012384171015419 4.638758272702063 1.580381168196602 3.2418162275579654 +4.6024266935983515 2.2487077662963517 3.072945766123159 3.8558653551629134 2.480515243178694 +4.99747146046779 4.534159113006429 1.7580048807910158 2.696007390376991 1.046186904572861 +4.778278622932536 4.836092803537587 1.8421951417765778 4.149204174857164 2.3077333377568685 +3.3197168212995707 4.2269391994533905 1.9673159851471662 3.976190938984261 2.2042302564789056 +4.931335497321614 3.7211754450229373 1.3431040718871188 1.397336364535219 1.2113746298092118 +1.3590116113793247 4.0631165378020775 2.4914609406915194 4.930631817200939 3.641666928470468 +1.169654868928073 2.7834847618399756 1.403472765329202 2.8119513327559336 2.1420221283069183 +1.7196532109196894 4.23392387263625 1.4296685774807427 1.8988231334396901 2.5576674838113087 +2.116664524735646 1.544004712704428 2.9319787976112264 3.3423178907622293 0.7044979997726164 +3.0745199585047214 4.338632043270418 1.6581872143717025 1.3713988874019591 1.296235668131679 +4.010981706403712 2.0083479124207497 4.511749279549254 4.356410329705964 2.008649372623557 +3.26048729212742 4.150071199091023 4.524594315461437 1.6488489771150765 3.0101944752041274 +2.3406967356386814 1.8313653163585886 1.6940681034361917 4.5487428656142965 2.8997562815661753 +2.308356707165806 3.617112138992764 2.02343469255033 1.2942492250226385 1.498182974936688 +4.395100724096025 1.2085975270441978 3.3320254920711307 3.2954545657229732 3.186713049126871 +1.2399992762882843 4.345664946045078 4.067380494858558 2.3049087503765078 3.5709194757658027 +1.690120636523904 2.5821127737374656 4.213288097459097 3.9763490291047443 0.9229247504338833 +2.3658769894092764 4.151333652565292 4.237710190985311 4.819537822942431 1.8778655141721525 +1.5499370051597858 3.776834145646969 2.5645537033508417 1.1348962481185643 2.646316555820793 +2.7331942056933705 4.09567287099342 3.24709235604062 3.476420964825485 1.3816438485387637 +1.5136784989430772 4.734765938624724 1.3279264139255504 3.988217932268479 4.177625552469033 +1.2628386443863726 2.0149715069192298 2.5857512499031157 4.466433082260076 2.025504381002274 +3.2546042057279045 3.703322372165349 4.759253556119591 3.292714772580264 1.5336505457619716 +4.892648348711153 4.681964115518934 2.7566127716245994 4.97353540847495 2.2269112743653046 +1.1331788194270653 2.511892746216248 4.259924145165234 4.8529100105863305 1.500827881041545 +2.304381690116761 1.8124556015000817 2.247475572641665 1.181692982314174 1.173832955111962 +2.435333319952774 1.8699821194549386 2.533381621995082 3.4422240014483276 1.0703347376379881 +1.0782728785648015 2.1537512684918956 2.0143125380242073 4.590967964236503 2.792097231944017 +3.7117723544845895 1.8242870421383488 3.44701264546264 4.983594649106722 2.433862169114276 +3.423464978158597 1.5428166822343417 4.002761079118054 4.230970947164766 1.8944439175749446 +2.5343135780394963 1.7564644394740605 2.947887869047006 1.7557375413031435 1.4234717019690941 +4.617131968066878 2.312835480212801 3.9785990202143364 2.5474088531967856 2.712579510005994 +3.727475180432153 3.2033497023476385 2.375309699222791 4.073894608375282 1.7776102526644857 +4.489646566668891 4.575427916591465 4.06428398719073 1.9855349260287825 2.080518228537356 +1.5910350977841654 3.1876446310610587 4.621885429394622 3.57504262080571 1.9091992739483694 +2.317480048052371 3.251557950774883 1.1488569819564534 2.17267360721307 1.385893939126055 +2.333250965153196 3.8622695974683525 2.8128435818046493 1.6068126157949179 1.9474107601996242 +1.3188872567055467 3.2941775516258405 3.9122184192654075 4.89451115076527 2.206053208688259 +2.213156106563347 4.569193863479188 1.4526390277243504 1.958341791975224 2.4096989848908517 +4.7659849931708145 2.938275968953836 4.703042906974392 2.414349438378711 2.9289312163990315 +4.130986558539192 3.100403320726634 1.9506251120080793 4.4650183700623 2.7174023011340687 +3.610248063610467 1.9345890476620693 2.252567728003184 3.5731487615872606 2.1334871464321368 +3.050397322877151 2.7111827789453167 2.53501771779909 4.8761580947820615 2.365587616545803 +2.3286303184056565 4.37004593204284 4.631300392491069 1.687919823232547 3.582019944541111 +2.1131572695546894 1.4183680068802196 1.4515579654677402 4.288323674217406 2.9206115465542015 +2.4495593199675163 4.36661565084017 4.429611877599207 2.4002554465341257 2.791664825877943 +4.620488231624499 3.5165648092120136 2.8649202490014236 3.6285672666572646 1.3423128138126206 +1.2306863406747093 2.50260572171313 2.4415235665970574 4.901457350188942 2.7693055323524423 +3.9649882808735675 2.144593567300561 2.3639031548831264 4.064802546136164 2.491364215117794 +4.983677820753547 1.806411805425507 1.2575528552161783 4.432014180104693 4.491349912372834 +3.163127415295456 2.071941862644116 3.124026939456698 4.9438977710865775 2.121936793152011 +3.7250447068439203 2.900562721821729 4.5587618605789935 4.691142434346521 0.83504201088158 +1.5389939281656702 3.3593384162443862 2.013966739666676 1.3511370179295605 1.9372654168432017 +1.8406770632185911 4.400226607562449 1.7267351935845183 4.05292654144826 3.4586789467695582 +1.0209517766836513 3.731734195715566 2.617341364245723 4.268218296956678 3.1739149280170773 +3.996438065373969 4.571051661057616 2.2675420078568687 4.404219983676958 2.2125943045888743 +3.3964995063606143 4.602388353193584 3.203175319902285 4.92666211460198 2.1034672905515737 +4.234751934745292 1.367025998912442 4.79505850586798 4.576060873685183 2.8760757997573827 +3.0021006493239764 2.4372152996436895 4.110555598092116 1.032132637516427 3.129821621511841 +2.3617750320321163 4.002974926342533 1.754766961534831 4.92973708479313 3.5740694420600367 +1.9323281500057692 1.7784851730867568 2.2846466447031877 4.199307265708094 1.9208313187716919 +1.4040476061831328 4.417841968589467 2.101560873394392 4.3792055382063815 3.7776476381497948 +1.652022694079327 2.298380902186451 1.1445996019549094 3.97228786167831 2.900620593487712 +2.269982870936571 4.914117879391925 4.397388129177068 4.960395463054839 2.7034102908991358 +1.8821554826251732 1.6484133698780217 3.411068890219338 2.905913885167265 0.556612032209745 +1.6209373006101622 3.9673456243529395 1.303774926703717 3.041656246920968 2.9199081329537484 +2.7326913617292607 2.5424504809037085 3.683525139295203 2.0355221711751925 1.6589470683748913 +4.1276187882117155 4.863466764659162 2.6251928268824365 4.509413826296978 2.022810178705984 +3.9728011323593564 4.1241757527801415 1.3449370872431539 2.4342362802947375 1.099766796957595 +2.9889761685553378 3.6932994166885096 1.452289898338209 4.361087822199689 2.992854256344889 +1.8108954422257808 4.655238082799942 3.837510853550801 4.482961368564597 2.916657577488308 +4.999215906985027 1.526212596260966 2.060535638297767 1.3577212787686808 3.543402322663991 +2.5079521688377513 3.9307494963385703 1.7763304011963958 4.632634851299548 3.191054268862023 +1.8288653096591303 4.47711592161933 3.221791188152881 3.553889158783211 2.668992387745674 +1.8352962908513448 2.9623186988897583 3.6630692671624416 1.874968885424709 2.113641995086048 +4.4658117300917075 1.9053935090697003 1.1282629954910597 4.088922113289561 3.9142360529667726 +4.484056682614433 1.6426674831857038 4.612244896720016 1.9228970517059896 3.912299121247227 +2.4389366353785955 3.9110194535101495 2.5724032052727037 1.3625702478900314 1.9054457767691635 +1.606054447728067 2.2700571497303907 2.8436300561582155 2.5136230353330937 0.7414878435013342 +1.171852975163417 3.9350857118562534 2.4475795014534123 4.903666808049154 3.6970014896875156 +2.581392073887367 2.3966069549801725 2.7126695121129663 4.589626902059793 1.886031437660982 +1.4393546964081967 2.8572372197316898 2.077136413093239 1.0357368149696957 1.7592339164869673 +3.8784601006603805 1.7226299617606315 3.411054579599928 2.9861095549409553 2.19731241788029 +2.2023179428797963 2.3259171887040333 2.1340068268653964 1.5647056448416103 0.5825638243334375 +4.603125000488122 1.395842611434468 4.0943435032823885 1.377782148817679 4.2031376274998244 +3.526460772758586 4.006372569339506 4.736618498619016 2.978774339986572 1.8221776583351397 +2.5215859705491277 4.224368743641895 4.681477838745405 3.086815598365674 2.3328988047565193 +1.605318976013422 1.4349408867433158 3.5723227662678005 1.5342960618108696 2.045136069160903 +2.698899115920232 3.4834173501154364 3.935886048546221 2.2134775825612594 1.8926594473072618 +2.613750814317239 3.5850932292455964 2.3139723737621862 2.6065096010040003 1.0144378326744237 +4.071057548114982 1.6153133851217287 2.139713113885759 1.7953559694119567 2.4797704000623906 +3.7816315040011124 1.1676621050697262 3.1506397949854343 3.872474633437052 2.7118041139713958 +3.027439744860998 1.8980081427077224 1.768645362921609 3.9113209073350554 2.4221218451122506 +3.8628552333574175 3.006012304368332 4.562854999080181 4.8536647549158936 0.9048481193260126 +3.9268591011193 2.5009873381358876 3.745014671945169 2.8084195564538827 1.7059662056546023 +3.903462841915388 1.8661566426208451 4.929962821208233 2.404471867621659 3.244799085664873 +3.3662815507048016 4.564154435867867 1.5955694682572203 2.5042752561394024 1.50354436513841 +3.4290347674458377 1.3727489888369657 3.3674520453639007 1.6249483926624864 2.695297791151632 +1.75008543592579 1.704748849553595 2.6808244364343077 1.330655421616847 1.3509299665922865 +1.4594165543748567 3.6480480222053897 3.446384368905398 3.858564950392891 2.2271058649586912 +2.2663896059106907 1.1625436429556397 4.165400741858634 1.737136807878644 2.667384794700634 +2.3506294828408985 3.168038425863334 2.994802279016689 1.99883675082756 1.2884505087406757 +4.714855793426997 4.039557570192631 2.9872553115639997 2.40502915573959 0.8916361291634393 +4.181569697791453 4.8141501976651755 4.777292157595426 3.10323652502876 1.7895866421463558 +3.8852266235490567 2.0181603108589736 3.128314831261815 2.769454726413382 1.901240960750102 +1.594294576348641 1.1183919875430997 3.2596066571717395 4.1267797358779 0.9891776495981583 +3.3929024127235112 3.6082979701565088 2.312999800365319 3.6601426475195007 1.3642540440843658 +4.221612367018721 3.5781143865346574 1.7271989931430012 2.9494304053691605 1.3812817510991084 +1.5502652630621498 3.7389637476852036 3.885446467808435 3.2071156897107116 2.2914043076475865 +2.9128000654487005 1.7106203968145008 3.7381610841130843 4.437558802817249 1.3908246203623318 +3.545205379851067 2.66015161575902 3.0561979698558037 2.586087557155659 1.0021596506857584 +3.203533714570243 3.6959570445462675 1.7564933218586436 2.158336732187573 0.6355775816762741 +3.338334137934419 3.3376823452493296 1.2869618006985961 2.6758027718675454 1.3888411241143512 +1.8325921890691483 3.5538269648362846 4.042441221305509 2.3823459672570593 2.3913522128336364 +2.438664071129651 4.698007938319391 2.837198461440632 3.7476109611543285 2.4358747155473393 +4.338333098460097 3.6227522146504896 3.108139201589895 3.269197654451852 0.7334819878579341 +4.137782431724634 2.7799575832950003 4.489477577049424 1.4602336158805311 3.319639633347446 +1.9474717590950532 2.5592720919630305 2.98041283721722 1.701821219297381 1.4174258967269644 +2.823708828385338 1.5441029266741428 4.055864330084929 2.8597896418494897 1.7515667054187871 +3.4088183421846754 3.9933420089544382 3.8054956196729126 1.3657994039746386 2.508741824482234 +3.395121629206115 3.111830177413404 2.421684921078145 2.657649505884152 0.36869137763377824 +1.7305632087344605 4.73261794858916 2.119400565741965 1.9808623174840858 3.0052496580674344 +2.018540039470597 2.919222112566012 1.2289495978537888 3.7471090739438964 2.6743887794817454 +1.3188502335242007 3.5900311878194446 1.524631166963621 4.0629499942176075 3.4060718424521683 +3.9854361609968625 3.140403824173824 2.4566018970128645 1.3651918573358701 1.3803099380154964 +3.9143431932205006 1.0856001305616667 3.1944410643576524 1.6872780118999522 3.2052032355584084 +2.149245824144146 1.5548628171810521 3.9829419769747645 4.005818983122041 0.5948230967075435 +4.0680474014668775 2.4298948210901816 2.01790334606545 1.6326276013182204 1.6828491542872641 +3.2937742285407356 3.218966073226505 1.0051881848846755 2.0403330831309296 1.0378445068827824 +4.053223674323886 2.219645682590532 4.2483610268637815 1.5642394740173744 3.25061790467959 +3.1876763548109506 3.9706036505450295 4.789450587418881 2.076632126941016 2.823536638670547 +1.5047247259299965 4.808525597481422 3.4706108847089525 1.8507404809953054 3.6795489293786234 +3.734956044246657 1.2967900147145088 4.398088513932645 2.307198420397579 3.211926987153917 +3.16501692252776 4.178628853783135 2.7191105482813125 1.8010487394360002 1.3675696077507633 +2.5175375167432272 3.2361547750998163 1.6071870678961493 1.5937800131129833 0.7187423134377853 +3.826112313420374 1.4934845642686891 3.3018094866271332 1.2305163393303848 3.119520398739352 +3.388773888065221 3.3301788145154267 3.753753193637197 3.546074958200961 0.21578607952834772 +1.757509455354887 4.805559798142442 1.922013623607615 3.052166872269339 3.250824089000815 +4.974706989798248 3.373608114913819 4.913088442587292 2.1791964106961212 3.1682303024234555 +4.409906292351847 4.408032412962571 4.981555285116544 2.2049361020776694 2.776619815358853 +1.053125739903844 1.57530575191599 3.0662991704755043 4.830423926493713 1.8397848025628734 +1.2864695968522333 3.354981029560165 1.3255644621793068 3.01430779110845 2.6703171306506097 +1.752740578797157 1.1906610743705164 1.8559504777650488 4.2826240388284535 2.4909190956875022 +2.952073885389706 3.706373994068695 3.703187532291236 2.0769377728874163 1.7926675469573594 +4.616397542521295 2.2752615192140846 2.144889289091295 3.4735287677158273 2.6918768069483354 +3.4333920934942257 3.0225198086749523 1.9183630675380772 1.6817485804389545 0.47413336724785676 +1.0326560985848996 2.152539455291617 3.4416951104719424 4.1883082171998725 1.3459457135288317 +1.2188894058131154 3.4417247968642783 3.3245052956047316 2.7283946956198255 2.3013789394890924 +2.141830221186122 1.328028138447121 4.431328541448778 2.009186119205712 2.5552001376604228 +3.0066669041468064 4.722591887880087 3.4753903017752634 4.839799479551587 2.1922616071537457 +3.4602521421371746 2.9240710485701675 3.543788188817521 4.924207611344412 1.4808943065553963 +2.5800801234648136 1.838150163230603 1.0568424855641543 3.8869861965154997 2.925777416436628 +1.2529234190839609 4.773523075430866 4.233677264770021 3.1694046000176708 3.6779475587899584 +2.237988640816137 2.2405609547711767 4.02436054943318 1.8543580463879286 2.1700040276510406 +1.0397443818625058 2.6910583566436177 3.6438141619979807 1.240527394895532 2.915926118446271 +1.464399480380644 1.605534287448367 2.6829486542500014 2.9909543631515425 0.33880163884193987 +4.484654919315879 2.575586316098279 2.9919932412853933 1.1083601486923507 2.681905397157556 +2.5029162795248507 2.322517013776072 3.6013493528072518 4.499715187487973 0.9162996605937859 +3.425626814325506 1.6333484956502606 3.9234988004057927 3.568534902010365 1.827090840860805 +2.383814770785603 1.0272729350791838 3.594567225286295 1.7589986418288817 2.2824368067040974 +4.202931086499027 4.057332732186227 1.8434122888219946 2.960036710531181 1.12607680907475 +3.4917132502516077 1.5950995124105045 2.504850816113756 4.0032443230210175 2.417090559352182 +1.5427885982790022 4.701812135577557 2.6338028148380412 1.0019432212597694 3.555614636368755 +2.2624142235892277 2.2886717219396617 4.361638929698026 3.584482027984061 0.7776003511452867 +1.3957894467864351 4.186751432678083 3.0303510945315186 3.0542498840228554 2.7910643057499414 +2.902057353563678 1.799970493887737 4.518027927072509 1.2201507207894866 3.4771525008247037 +3.6804218707403 2.157486783303837 4.6179782512271474 2.2495113111426517 2.815842134569749 +2.8121889183983115 3.1855216243094686 3.542262759440482 2.6132655761131094 1.0012058109765138 +2.2625718951480533 1.6642273999617658 3.9593196904612347 1.654785592743731 2.3809438343779474 +2.2775069230924245 1.3787246692114885 4.278625522820005 1.372254583721765 3.042170536890738 +4.4034347216111325 1.3855806381509854 2.458603182434439 3.708788778544665 3.266558937747575 +2.6331767343339822 2.9028292402503864 4.8648624413780235 3.6879656688235536 1.207393261202051 +3.3569479482516855 4.19794288184855 3.6480323939950217 4.055264500122151 0.9344038027514293 +1.6316711933190744 2.5551549470103847 2.4932010704599907 1.9630680312577424 1.0648301660760768 +2.1864762203761785 4.333141408426638 2.2562860643521385 3.5751938023543297 2.5194620558662457 +4.298143546959264 1.6885132793358562 1.4165890370343988 4.997963543393201 4.431299300260926 +2.2450205316312286 2.1898848394239296 3.5614190242919626 3.9661807014967327 0.4084996449065734 +2.147510029024678 1.8419775612967544 4.918681677359975 2.392530925813116 2.5445604155485624 +3.7983074576516715 1.8149988319091457 4.681726497150368 2.449935451584937 2.985699980910799 +2.998021839864822 1.9270493358864829 2.3325830898748823 2.7839892417369825 1.162217543412843 +4.824140850841486 1.36141465132585 1.9570459425694962 3.818744932342687 3.931462305724744 +2.1857714231373153 1.0183350494300156 4.514894897334656 3.720110030082398 1.4122997811612235 +1.880631025595655 4.429322904098662 3.6986876710997953 1.614778818954493 3.292188693801851 +2.1451234300619526 2.893132275049912 4.569530120088331 3.3205089635098775 1.455874679277306 +3.8832580313781953 3.908978003124287 4.534264361818611 3.7666357542356192 0.7680593701833358 +1.62280218827367 3.895282642817209 4.08130686127533 1.5575290874804577 3.396118618037864 +3.3276195218263074 3.9360863375976227 4.399664604413208 4.1955688262946085 0.6417841946797385 +4.9331188092702245 1.9789673927162403 1.9574786862623141 2.16967016304226 2.9617622819439724 +3.781100325058417 4.750420160271709 1.86127344158312 1.0960521551946005 1.234967432801377 +3.380688263545319 4.2486579467707095 1.7053557924315554 3.647693266837711 2.1274506423136748 +2.143147684848416 3.132613343165357 4.041314736123442 1.1788273697752363 3.0286756530687904 +2.498309988582559 1.5592585516109039 1.451508312717925 3.224776916471773 2.0065640140144176 +4.6373246872857 3.5679306923928444 1.7664144066535572 3.8311087753961557 2.32520243261319 +4.338449454424146 2.211642909164952 2.886638488840071 3.2532266464875077 2.1581688901206713 +2.9212852307695543 1.9006076223099733 3.4485905324083324 1.7857742548700433 1.951087069624793 +2.990211443073921 4.327163011184302 1.259296961651696 4.090897204151587 3.1313574418769647 +1.3230287400853356 1.2070392515662034 2.7706858702433887 2.198401563019563 0.5839202768714099 +1.5802006258427754 1.954401652918881 4.363995261727929 3.7435462051853112 0.7245574100300383 +3.6478484421681285 1.0395297922787718 4.783098482176836 3.236057500713128 3.0325998710164237 +2.8102140212766 4.45731577215433 1.5341252813557653 1.6299551899550853 1.6498871322386386 +2.2865792879859868 4.664490354124991 3.9916789802338504 4.583219957649373 2.45038400387124 +1.2812508747013092 4.8010689055987585 4.104075879202409 2.0115579367348033 4.094844357259462 +4.473377922710935 1.8306254528257946 1.5270891747512567 1.8034439160088906 2.6571625016358307 +2.3084188217950863 2.9624909425441466 4.4149372946519225 2.592772650222895 1.9359995688399152 +3.202024779731814 3.3644703666199565 2.3958230554963333 2.0541981465526744 0.3782805137859949 +3.45818866754563 1.3548416447492229 2.014898086330735 2.5158437848736366 2.1621783671092323 +1.0917931964523704 3.8275659915257223 2.001517702930719 1.5830114650387141 2.767598283244514 +4.685017164010368 3.417132193105178 1.1875006315341365 4.3667089506342505 3.4227032935506734 +4.269478838133515 4.415871350289066 2.5424421584177006 3.6563218308934395 1.123458362543923 +2.9394827236456638 2.195842440537249 1.1418925470327257 2.918427048897772 1.9258960789664772 +2.6709888258766448 1.6451285372052045 4.401250235428475 2.480742295384759 2.177324063993233 +3.65700362130899 4.260049639925434 2.7652611149851585 3.9231550975024514 1.3055201933784484 +1.4361332426952909 1.5697665342209253 3.229738118359489 2.4174695874842653 0.8231877203008858 +1.2614539155416158 2.5324767948340723 2.065213083967885 3.5133119160121162 1.9267821327417256 +1.2850881681637332 4.762819050926227 1.3472072202898024 2.844556713922647 3.7863792201788944 +3.85457989242314 2.7372810339083826 1.5962637310054695 1.4583997675897353 1.1257722734403592 +3.278665726081612 1.3826579272556034 1.4264612368991783 1.6770052172852585 1.9124899631937278 +3.467547374096197 3.7869199167544867 2.940532285839895 3.6983705217613005 0.8223853189524294 +4.538778581640579 4.755362978366192 1.8512476699883957 2.0697540782216812 0.3076586604404451 +1.1068708111423948 4.670955992862952 4.391586390236775 2.7720832625042098 3.914778865184548 +4.505005629124487 1.9980073865125343 1.181579321491959 2.8058064195192127 2.9871648522345486 +3.505144695564371 3.846340366682573 1.8170455774828098 3.292128256557042 1.5140288623717235 +3.360617207230641 4.167514782832643 3.0927869618045203 4.909365538386215 1.9877226724087955 +4.707036200121591 1.9651027103237593 3.2421049880405506 3.7258300337426755 2.784275342403197 +2.417213297301833 4.140474506302393 1.6772938685277619 3.535893226689235 2.5345652030682326 +4.342899924194366 4.210378418110309 3.3211798021626366 4.00736305087063 0.6988629339020942 +3.7166854406164966 3.651493181411194 2.5815943647273443 4.80469530856546 2.2240566173445795 +3.5437229609050602 3.8057085337478584 3.283488620492283 3.1250315007401834 0.30617821473432816 +3.604092293667648 1.903540691401763 3.7064227049887117 1.8552806010663234 2.513683122607795 +4.772397325657625 3.823989026774916 4.088856858328993 1.1203762925945715 3.1163047300500866 +3.4761213420565054 2.8233331103495196 4.838698101197757 2.114773929265609 2.8010525467922536 +3.053254111700157 2.4232360098297443 4.183902169242225 4.521396170860583 0.7147202318479375 +4.469236570047373 3.815980690935158 4.093115834636732 1.5291540789547118 2.6458728480776816 +4.148917226210205 4.624437560109859 2.8939470529665434 4.079492177700896 1.277355405019852 +1.4899730029359795 3.264361741315516 3.881557445428828 4.348882925104687 1.834897408260853 +4.582189419506216 4.316623132597209 3.6260109512599445 4.937244212886006 1.337855791607286 +4.471665821557497 4.564759746678627 2.2857122588942995 3.1747015025092526 0.8938502973974697 +1.5929356192390705 1.4788559876856104 1.4492999267986195 3.5631714932017315 2.116947604827035 +4.778546936260849 2.7444543541664435 4.487815980699313 4.885043206357034 2.07251588687161 +3.812636695143377 1.5956520860272105 4.457056928329338 2.5733503152050208 2.9091874056832863 +2.510516384392498 1.5048853421560424 4.3841277736078546 4.579697394890406 1.0244712147630992 +1.1354803928717296 1.8812531911898103 1.7623388956458923 2.511039313767503 1.0567541733093155 +3.449506764677399 4.670330471442312 4.312552772829903 2.4464950619583186 2.2299286767299353 +4.8839636279107195 1.3152863701792272 1.227106918803766 2.344741561391124 3.739594171051364 +2.5689708935960107 3.1276832902279845 3.616989666127924 1.2929923811901598 2.390213990953183 +1.3825047066548266 4.006384290233953 3.334242285646593 3.3204950509131184 2.6239155961246516 +4.081323840140302 2.751587836101272 3.9456884741234424 1.4175635399638278 2.8565037236379096 +3.176466374200882 3.561884939611165 1.870824649746626 2.1264943306737583 0.4625088715995642 +2.2368269563402636 3.227957064032766 4.197928047433629 3.8365834471960927 1.0549449324468914 +4.860878805461475 1.2942246293168376 3.561749434526854 3.581971028135394 3.566711500115765 +2.4016551816968086 3.248660884006897 2.7549445588060006 2.625298948515107 0.8568702608992242 +2.2413812124973083 4.692916121089308 2.522422915296733 4.698975701247197 3.2783235712897394 +1.526868591671811 3.6324608143851402 3.804410608283703 3.895980160060329 2.107582404358945 +2.4314939276360357 4.1071639942912315 2.0912553670743734 3.6097397540358744 2.2613414173295623 +3.459412859892455 3.835738106674362 4.501858120846052 4.9572913263466045 0.5907961543865802 +1.1821839547871829 1.2648890491192168 4.0767826235971185 4.466420899418226 0.39831911655520175 +1.2100823958671407 2.100646201891582 1.6585145017930327 1.2273457568099095 0.9894495334533541 +4.526376480242153 3.8215868642113917 1.4177243310930763 2.218420335518582 1.0666970021368565 +3.1164821911706695 3.9649462973010325 2.5118125286696253 4.46833413157272 2.132573122314471 +1.9625548710719172 3.966609653265046 4.800028245761787 3.358974869605463 2.4683740403274967 +2.5113834622483058 1.7193544881622853 1.1843362994134572 4.600596868506932 3.506871279607312 +3.77531752987435 1.0014656675311704 4.01523826536617 3.7117425728986038 2.790405667563606 +2.894304644481977 4.966312461016525 1.633454163405522 3.87485036507852 3.0523881346667574 +4.975396633926361 4.623991029561194 1.1985058228463759 1.6974648849374767 0.6102835770542081 +3.501693479006612 1.4311679370195334 4.791474630099557 1.440122856589379 3.9393698391786858 +1.2660528676028502 4.862202940667036 2.8309994912251897 1.9252705488193511 3.708455239734079 +1.437085569093123 2.675004176676717 2.765293138117803 3.0741103027289403 1.2758567788588837 +2.927612076918282 2.2092464682358632 3.530379264053557 1.7944375333878737 1.8787077580092733 +3.6590462406057127 1.9326236156596734 3.9405459302365307 1.567932789599821 2.9342508745926215 +3.188512869121628 1.9544356308065334 1.3253821546876492 4.945847264893798 3.825011665909979 +2.1606405376590727 2.0894695695158485 2.4482106038177887 1.7030039523507807 0.748597528781063 +4.222469076289576 2.7016781723965066 2.4680053616741566 3.3318460496110798 1.749007063307417 +1.190231331001205 4.8637907509251255 3.1013152116254292 1.1530657433017066 4.158210528885646 +1.9470646290081262 2.6244399314279954 3.5877523637502375 3.2708899548655004 0.7478228978124751 +1.2280173565516908 2.20889378560106 3.4499469032668184 3.903726793855223 1.080756567487363 +3.776473985021769 3.614692642687595 3.2410745829619594 1.1141856944114514 2.13303294558876 +1.8376686676063048 1.1344867280617654 2.613847612194576 4.154403288846774 1.6934511014395817 +1.5376713530944541 3.8917183570487657 1.9715813811373994 2.489823285307555 2.4104173846170664 +3.9215935437216656 3.197292564226988 1.9892020852275043 4.748954452920005 2.853216612856674 +2.9113608247810383 2.2365270497084118 1.2323614920627843 2.0805439030976136 1.0838883827994599 +3.2999018234976867 3.975002761133401 2.555064725254641 4.08209435974368 1.6696049774136241 +4.691871664099644 3.0853504252284267 1.230343981280567 3.8531440376711705 3.075709776091831 +2.233170534548987 2.032563303880406 2.984270275418061 1.7325637425817315 1.2676799696065493 +4.9430138789706355 1.1962351124485822 2.7585993868816736 3.2180500815765987 3.7748438465870566 +3.2731215964983273 3.474237998442786 2.1277366008812235 2.3632549624005845 0.3097042229997024 +2.7778222538145223 4.384074760814235 4.484404311087664 1.5270002491896797 3.365454783766015 +4.3461505923094865 1.350650941366431 3.942711969662285 4.2578066564991435 3.01202636450493 +2.3075112880313147 2.956944408114261 3.5800411063060933 3.5345646883030066 0.6510234112956784 +4.483073505478887 4.533159713041178 3.4496918767690965 2.146384746370952 1.3042691840009941 +1.8691481581144376 3.7460573888462583 4.658879344411043 4.891928247179273 1.8913223023820638 +2.3514347367920716 4.845819207471796 1.6596044523934506 1.522791644360587 2.4981336297344074 +2.7917425581627118 4.274527996831151 2.6956262764579093 1.3699639144328835 1.9889779675041466 +4.163620874181605 1.5606381286693707 2.1561746622834854 1.5480711623976315 2.673071087720608 +2.2020469860769287 1.3832466938935233 3.4245248609627037 4.994937255718272 1.7710530788436432 +2.5337932495391797 4.8184810541820955 1.9170476580815734 4.301257029408804 3.3021587925187146 +1.3449758871478 2.4909810475768226 1.0394373530844256 3.3175561545612164 2.5501280558771944 +4.564977948852288 1.7850240865449618 4.196105579330239 3.119354668373007 2.9811970751368735 +4.154140960306798 1.1375072678948523 1.7388392427466917 2.9332498252018855 3.2444869353529353 +2.110743445223987 3.7442792790101955 4.383929970095114 4.0253964863645955 1.6724190800213758 +2.864253304374822 1.5324578880135111 3.8807997806104155 2.326933569529216 2.04650414927037 +4.8877327287491426 4.347872441099016 4.608867895867915 2.715864634307788 1.9684792298774596 +1.5113335694691892 2.5103087662899024 2.82962882679525 2.3422944318862506 1.1115063006228545 +2.0912192595217656 2.0433989985560537 1.722038507315197 3.7054679150391547 1.9840057945437153 +3.8857068174211387 1.6805594287196048 2.7202771675688715 3.786307855589581 2.449305296139928 +1.6484081101849668 1.375487915589785 3.2131488909389527 3.9988351722124205 0.8317381590375679 +3.5332110468539573 4.088395418762039 1.2299581375721922 2.1131849560443694 1.0432254309014208 +2.4069211740688115 2.846182549302506 4.857659311113075 3.603970871193366 1.3284145663762161 +3.517510368268846 4.733163344568055 3.5345206824165336 3.8984430258180223 1.2689569066016215 +3.7299115584170948 2.753970418255195 3.9928918857819857 2.95080997735459 1.4277239974631621 +1.0204569779365382 1.1987712970840234 4.191798018348271 1.492235093096273 2.7054456164942873 +3.29415446752814 4.749008746787542 2.8231522120127663 3.6414090791516984 1.6691750281200033 +1.1326314291758863 2.7557151210329756 3.1666864825130165 4.143731558446513 1.894470308866922 +1.8184432089421643 2.1479519769778674 4.266513591382008 4.718037394922614 0.5589720685116413 +4.053739531038585 2.08770280778693 4.694916730475814 1.3405085863520934 3.8881042160078025 +4.915278646842143 4.49178856242519 4.076863689550804 1.0499017649724012 3.0564427598839257 +1.5593845258639414 4.213261126045397 2.895831013356236 1.1973982095733273 3.150830842485289 +2.916350357935749 4.258503018631261 1.891346118033157 1.392521837139316 1.4318517478500699 +1.5822133648999137 4.5720446612151955 2.835354707574165 4.488217365032792 3.4162912851288767 +2.859096053554405 4.316058356248114 3.9468348518063254 3.650509955159012 1.4867910397374593 +3.4652328164505937 2.4905808388848723 4.041944826144469 1.5878253344887199 2.640577390779798 +2.4305434627758395 2.7991074742774025 4.460838327651995 2.4270354937064114 2.0669284936686156 +2.6718642321561568 2.217110890404273 1.7433980913423492 1.9203542361894592 0.48796934230918343 +3.2784931792291805 4.290437012787571 2.368065264215441 3.8041526921505144 1.7568088749064383 +1.4186494004996795 4.431694805811812 2.3132398967633354 2.9336179258312938 3.0762495856842955 +1.8523380491310162 2.028212322554294 4.4879940254512825 3.0319102483969362 1.466666876237756 +4.127275142780461 4.801078244315137 2.9793971033026887 1.9027214238023094 1.2701342993815075 +4.07527743114201 1.6623705513596327 1.3911422577093107 2.5569428108727768 2.679778076680487 +4.46937886726826 1.4429780196249529 3.168773213348699 2.432245644081017 3.114735133347214 +3.231643553772345 2.053527987695539 2.0388086921961888 1.443583021150829 1.319943137602477 +2.9257211626684856 4.169642854067517 4.2944803832842595 4.919549305357384 1.392139479964089 +1.0030721147922246 3.5275321065368677 1.5244274664323627 2.9424913386826685 2.8954798213251105 +1.0362922665631107 2.1825961811482744 3.1523573130400515 1.0384516117842217 2.4047057987194966 +3.8184542980613516 4.413304259836888 1.5287233017946886 4.188443641034823 2.7254281792026758 +4.877370602729222 2.2713136222390764 4.405316009357291 2.7847941779121146 3.0688147535737382 +3.311514363474542 4.323858376840757 2.2389193980539517 4.817500537746188 2.7701843071129635 +2.920473310466791 4.113211177006852 2.9410719198037047 3.3923572605590935 1.275257651245129 +4.5302524054045445 1.5831649077804966 4.775761799180665 3.852505671763035 3.088320999421234 +2.9946262672646964 2.9403303168626347 3.8071540441007317 3.736212545132901 0.0893350239596198 +2.282698151188622 3.6963786335504984 1.6433670330318169 2.688603260883357 1.7581272076343695 +2.478866178147205 3.901056104399205 4.5030393584404695 4.959994421886725 1.4937978833636898 +3.554431985260012 1.7271031802304058 2.8113701917795972 1.8263629147022664 2.0759021888292875 +1.2433420420774621 2.402824652865544 3.8048141155000774 3.4806873232587554 1.203934426025187 +4.788760945462135 2.8054440099502163 1.926829009015159 1.285559468115483 2.084411833293524 +4.976917793709069 1.4328324668531125 1.436023525346291 2.7681099828489772 3.7861583609640195 +1.290157681781349 2.358174512101609 4.419287835186939 2.1887628778518007 2.4730348835271725 +4.787029449963168 2.184763040901404 3.0405899840982453 1.3236498567352228 3.1176391492089905 +4.613540975109174 2.3645432899292356 3.5070443737607584 2.7001201899099994 2.3893759073088385 +3.95082366945294 4.512017846711149 3.472688270802484 1.8429793698853048 1.723626991642101 +3.362557856076968 1.3265503567193355 4.9069366156940974 1.7622455060989393 3.746252622582645 +4.571778641555839 4.172375950135303 1.0808750122496567 4.010320989377556 2.9565480281613556 +3.271145768547635 2.23416708100706 1.0776777437075893 1.2882657680814904 1.0581456017122957 +2.383235644545962 2.2975775308363158 1.7428632944263653 4.650642930845935 2.909041032096422 +3.368756980034892 3.838230593216461 4.86762373748562 4.162196821993938 0.8473680467033595 +2.734310119135923 2.885667603160768 4.987424512587653 1.0113976556085666 3.978906716095431 +1.5566491772745765 1.7196986804119416 1.19997877089651 4.3359795679797974 3.140236637545068 +4.337712255007476 3.199589764948452 3.7320822053551743 4.531743325341678 1.390963949639322 +4.024409996725138 2.545826488001694 3.985746768754113 2.8045950384933396 1.8924398543063266 +3.6580517390723477 3.555479101606689 1.5590618672222156 4.008339171741959 2.451424169822954 +1.2116299171040934 4.217951144735088 4.459373039652432 3.200651696448074 3.2591941862280795 +1.0014767427437423 3.3351256372006346 1.4825901540537751 4.81991400071748 4.07230249614516 +3.48687657327972 3.4352019944134975 2.577225253776551 4.5666536561741395 1.9900994021322709 +4.0878626792349575 4.272258073349759 1.5347917965939715 2.673819955123357 1.1538573600292177 +4.5952551074310355 4.739469236029153 3.038536209818892 4.5384905454743905 1.5068711703191624 +4.1816164214474085 1.5001254117315024 1.5006213048688481 3.3025925481377785 3.2307111286457357 +1.224583089288818 3.7347010769309392 2.138059411828898 1.0345417342585126 2.741978040866642 +4.113284503675302 1.9425391427538141 2.4220709109085425 1.0950898283666897 2.5442119045759743 +3.015866530997309 3.903079358550925 3.0496652473205854 3.550575874397501 1.0188513422939927 +2.7914432183394156 1.095105514628969 4.634958447350909 4.798792189180219 1.704230940920691 +2.624490694607469 2.554593646737332 1.8076420610466353 1.0129703705485724 0.7977397401283262 +1.544202537104836 1.1175352796290348 2.809032162528859 4.612408526238177 1.8531625017216822 +2.8948837616885905 4.206402380354028 3.1591372911071818 3.983956842625274 1.5493251368491392 +4.873444262763523 1.6717309988469395 2.868749559650626 3.4095187994651854 3.2470600849182016 +1.2641857793834141 4.455797831153221 3.0030437175126132 1.588905608076265 3.490870103793965 +1.3986461279007107 3.9836888292453647 3.1379662154415398 1.733789272464696 2.9417951415696946 +1.1327259724440752 1.1979017641581642 3.2863574777871443 3.6612593396608535 0.3805250187069597 +1.9735613999497401 2.890724802764464 2.9684259652596667 3.3923182497713413 1.0103827870323254 +3.4934025987378625 3.7256078006293025 2.8288868284871644 2.767355763465541 0.24021933258615905 +4.650220874552875 1.1104715618560017 3.3638533109023676 4.684604540548108 3.7781224182586675 +4.846941631669715 1.633360591978417 3.156474788822526 1.9621303751174648 3.428346784852998 +1.2449263919661102 2.981456150455471 3.467260060953343 3.613755323622428 1.7426980415733533 +3.8724077085949182 3.0606611984728587 3.5617484037713103 2.28724092486331 1.5110597971251072 +4.237269559286434 4.91406991960137 4.428459198803898 3.5813481310373794 1.084276666195007 +1.1868016588859618 2.9431240574798347 2.3865905562520626 1.141741895706883 2.1527462821855394 +1.2301015455979458 4.887291516884695 2.5760643887757806 1.0062312146086292 3.9798762142554245 +3.4735929274953055 2.522676187657403 2.2458684372955338 3.2023189568871766 1.3487179996318979 +1.671366970921059 1.4400724414086752 2.4130209483688216 2.9077947529532886 0.5461668949005819 +3.554604127013608 1.2033667353809911 1.1216232780950328 3.8432284744919456 3.5965889557838033 +1.6880424393561952 1.6732182773024666 3.1756127619457666 4.594131072892177 1.4185957684523283 +2.071734121643511 1.6869622815516876 4.2565381130824775 4.4896996803108635 0.44990408462253917 +3.5484066702837853 1.1940419597952818 1.2916151815779529 1.873369693122907 2.425174530151701 +1.1197529913550324 3.485941766081595 2.0893959712676984 3.6893338357112477 2.856335149754345 +1.3030737854553132 1.0395112414000862 4.8126545052663126 3.1962281515860327 1.6377726861506112 +2.4586983748943174 2.440549302003434 1.0272993741618155 2.212488812055222 1.1853283901691074 +1.9703860624855123 1.404800603431963 2.125323099384283 3.5856843231584907 1.5660593269081846 +2.4320716946956 3.881225281433837 2.342697151480703 2.958609637872441 1.5746092559265457 +4.139759762538955 2.3754366280827584 2.0319888448486942 1.8863323922701465 1.7703253726236616 +1.006158619252623 4.209685910802369 1.6376177846034627 2.593350688465014 3.343054365580626 +1.920920318574229 2.0602387410705214 2.554046276583905 4.174628356166833 1.6265595284256222 +4.02957883715448 2.898042554708152 4.896261432908533 4.02344028570029 1.4290525230047946 +2.0609196426934293 4.415391801124288 3.3684364646111438 3.162409561858517 2.3634691090606426 +3.8284148921445675 4.368785740716219 3.005548733656401 4.855716280351814 1.9274648128645486 +3.177491195704016 2.780371155649286 4.708783589971065 4.029557913453649 0.7867984785531883 +1.226604309779392 3.672010492072047 3.6808655198785134 1.3506959451220188 3.3778249871057557 +1.091500367008913 3.470709806910242 3.302047873174854 1.3890681988063847 3.052888598272543 +1.339272365646838 3.683463047475988 3.579806342869407 4.183160450550678 2.420592103604091 +1.4368013511629711 1.8684305028467652 4.662067615225323 3.0613735137423843 1.6578677061531608 +3.5964727720978567 4.523766200064561 1.9669068953749331 4.018244694103924 2.2511907662489516 +4.087835006647923 3.952293141096886 2.7376948856868433 3.2945778739060168 0.5731406981579407 +4.001666651988039 1.259489151591446 3.592260133282746 2.104333666229966 3.1198497744342553 +1.7741488644565981 2.8325145592658076 4.067675695431472 3.8908971201650093 1.0730277762584812 +2.9905472867055294 4.882672615471646 2.4138667213047036 1.9910003485980692 1.9388022665873776 +3.5202815235947096 4.010764084405485 2.9018539971659454 4.117928970546283 1.3112633157918687 +4.496552776405308 1.2319936127470772 2.3587669739506496 3.297329488549917 3.39679939455303 +1.858792487248607 1.9129276975284002 1.5606707243656963 4.628806796926781 3.0686136251966616 +2.532164255830036 2.2805201082549975 2.7474512969481117 4.4032230049803704 1.6747849790730842 +1.3061873350247648 1.3372039176203967 3.743089672018682 4.193121792384658 0.4510996982453081 +1.4135955506641316 4.4791625624631735 1.8512676706018296 3.435044692617532 3.4505145644230275 +1.0408361199606198 1.0901459933081599 2.1850827863279014 1.3746943987299005 0.8118871857365642 +1.7474595435203457 2.3794395830365214 3.377911008067446 3.3698629392816026 0.6320312822622379 +2.765398284358643 1.6576899706660009 2.1294804705284527 3.3189264522558464 1.6253613295729785 +4.975001561421017 4.593449329211749 2.764058024156136 1.2431710500518585 1.5680176318855412 +4.372263025614789 1.3655569135074979 1.211972219970646 4.075041162614184 4.151800261924136 +1.0288347945503031 3.2158517793654253 1.4743897164328756 1.5027150932518571 2.1872004066481345 +1.8023371973329523 4.316072820425315 1.6280219595754746 2.8357530921697975 2.788813595678477 +1.6879288266865156 2.816491330049985 2.8247376915947626 2.7286525301249425 1.1326454353647937 +3.4500741202703313 2.7079529106421325 4.926798167234963 3.791195013323328 1.3565907315598449 +3.0235210947124944 3.806704781078759 4.789117745987348 3.870525822571244 1.2071403432722931 +2.4356724934368024 3.113543904032458 1.8644452602209731 1.0589620066022283 1.0527644186441634 +1.6648615021782178 4.450559717656343 3.1944074675512253 3.4336670435824996 2.7959541649391677 +2.83841934209735 3.63877386959871 4.653146039939763 3.9753267937934273 1.0488118516389449 +2.760951742819149 4.495716977373521 2.5095990634970997 2.867031308416382 1.7712053039460227 +4.516095775990138 1.6510444407462037 2.6493868725411907 2.6148068477164803 2.8652600111857085 +3.3931275181512595 3.1915273663419788 1.6783243343544876 3.5106124157535916 1.8433453920648553 +1.4660497812791409 1.7790950930734164 4.491223176429498 4.673660018840289 0.36232660501982866 +2.837139280151223 1.7324234419521338 1.5354462905752593 1.8406652003952844 1.1461045615822498 +1.3619783215763333 3.432228196806335 3.5423413239972996 2.6316854342906395 2.2616871347176355 +2.1010283392729163 1.7407629531442868 4.935605973789475 1.0864704153770481 3.8659585739473923 +4.565589312153415 1.1709879721006105 4.761244624219654 4.5842960851744134 3.3992100616699967 +1.7370899886214368 1.328451824530985 1.14350724204545 3.883212024707849 2.7700121742141204 +2.2401955792739323 1.2216776271811214 1.9606967394775578 1.1273593343199724 1.3159901403772412 +1.2128926748412252 4.683909002303114 2.136152455306873 1.1242061165799067 3.6155206731492946 +3.161228304818246 4.062870362944801 3.739072343379321 4.900367967985405 1.4702264889165626 +1.4588754842086962 2.037177898690462 4.839550566387544 4.79421559671121 0.5800766691317571 +2.8044510854389433 1.0182076573942678 3.1604947313581726 3.507546828833613 1.8196457739337337 +4.01431730282645 4.481114787651417 2.7785202958451687 3.5400606179970877 0.8932208876320366 +2.6038064259393376 4.706205762418567 2.661063693739038 2.169000664652441 2.159214902371272 +4.430629599436589 3.7950008666539863 2.6630556929890634 2.3702328666975365 0.6998350473762907 +3.8383771119782266 3.5750075427402845 3.772033675984005 2.3060681744243765 1.4894355916801345 +1.4519648651668393 3.6203022946327983 1.0972530239787806 2.210207011294958 2.437284100367871 +2.2838822050273606 4.783854179651529 1.335306709522186 3.044172242952167 3.028214207293004 +4.240977954502505 1.784211307313691 4.397038150696682 4.828186031364249 2.4943116993959475 +4.3941778232656175 1.6135270447840817 2.2325213452596957 2.496187613828789 2.793123458254418 +2.377487286481773 1.7160314916783594 4.08555972827556 3.12599984991231 1.1654522421118378 +3.737158254127922 1.9145857924683698 2.1209238317070294 2.5616283153230075 1.8750975494301583 +4.877058341296345 4.618457326213241 2.1864009040664967 2.184642224727387 0.2586069951780688 +3.1838371618491825 4.938803932971659 4.074085165005135 2.1484826153571706 2.605350945065711 +1.390906299186764 2.2788061738610645 1.2839726773525455 4.893823435631612 3.7174438374364973 +2.6990354718891902 4.029286459842378 4.0720340361836485 2.453089667764746 2.0953635863462243 +4.115964137233259 3.4558017266026697 1.0193041563776801 2.378700426188984 1.5112156122759182 +2.3309633836580534 3.931944541326779 2.073133413493667 2.052600954126685 1.6011128158558816 +3.256187757526485 1.5663587214770986 4.421407915147577 3.301357498699274 2.027322151623075 +4.970451096296203 2.48940303081321 1.7672765522027771 4.6142545232783 3.776358440485516 +1.5402704012000847 4.88803398635112 1.9501428111941825 2.468147684205405 3.3876024073858915 +3.0774116376807044 4.425153927856568 4.674517709834106 2.737069564611924 2.3601090220905805 +4.979534883758751 2.75178586789568 2.3332040838964594 2.739721164124244 2.264535672979298 +3.246234895566058 2.3645719188557046 2.9965965225555977 2.8908339713561406 0.8879838521831234 +3.8302430714184235 3.5128172589175883 3.7086058186393123 4.845463015421313 1.1803403883273857 +2.5292924413693654 2.4614004806911267 4.465387384137525 1.7314047425201817 2.7348254794391695 +2.5975355267943323 1.503501446891847 2.8720899201904095 1.180299179987558 2.0147125047073566 +1.8403444881521542 3.4193664817250307 3.4046455504961974 2.8370364088279376 1.677942369061655 +1.330352674318895 1.5239104209819803 4.255380425694128 1.0832157240781974 3.178064425947242 +1.5688222894625588 1.9007803711548408 4.5318933326828255 3.0484975280233426 1.5200852875027027 +4.411299274090965 3.0023806984340644 3.77717818784179 4.781743366417997 1.7303764766197314 +4.68236466236184 2.8117576355755127 1.1974003815085452 4.196710281943989 3.5348310465300115 +4.8591044700584956 2.7001376263495533 3.708412712950779 3.9593330720882136 2.1734992198904077 +2.145170147976697 2.6188851358176617 3.2069968637822703 4.913510423844769 1.7710433140898467 +2.578138848964566 3.9757099523921093 4.413996125006049 1.0482439220673312 3.6443782570861813 +1.7860760157302225 2.1699687428430714 1.1334439521278665 3.7391516147256176 2.633834856032317 +2.637151195044219 4.910119287744079 3.910513823446258 1.3159526501298098 3.449366845163452 +2.611128462258032 1.193665914120062 1.785711496931718 4.164650713110504 2.769215027701374 +1.0056097885705273 4.7994535712943005 4.386267197852858 1.120355291516418 5.005939594887452 +1.563639162490396 1.007591111834666 4.248842252183453 4.015357053918818 0.6030794080771728 +1.9210544517921209 2.581516870803022 1.7591502500719094 4.773235404052514 3.085598794783926 +4.278173563247652 3.3319738413345696 4.204145923954831 3.698690084132738 1.0727439208677212 +4.489328779086703 2.9699379684895058 3.7595436868142302 4.8126277309314585 1.8486574694359972 +4.929655135913762 4.5945729160236795 4.680308969759045 4.940598752596699 0.4243004420645107 +1.1237009433544136 3.1454658072729 2.6210929926307838 3.4770755410543774 2.195504335723591 +4.081174728184172 3.2192904692921522 3.240463691418261 4.605342676156814 1.6142301938406403 +4.097458074265478 4.846247039052697 2.6884001418696313 4.7900480683907585 2.231055562023875 +3.406775081285238 4.092849408702251 2.6788450340577468 1.7373352163225597 1.1649629692108034 +4.323950964620197 2.9033632901903457 4.693273017273755 2.1546826288460528 2.9090394464426788 +1.3161729121660648 1.9410585641576446 3.289626086809038 2.343254307627074 1.1340642056325458 +3.952221954934193 4.394710214080053 2.5538236648617048 1.9098317123414592 0.7813587488425353 +2.913797987145525 4.003112347101343 2.740395008931356 1.8039725872942878 1.4364862430773864 +1.097600571733531 4.335596709601436 2.3682410221696077 2.1073488014144517 3.2484894550695445 +3.880618576257242 2.7106669927974107 4.336951589213997 1.3969929809370152 3.1641971060637313 +2.632102216935892 1.762007223711052 2.8971675755341795 3.5052915357513243 1.0615460650509323 +3.0591147877778275 2.764955513208041 4.670940108368727 4.363606738798895 0.4254215307980665 +2.827032299678744 2.989418356096777 3.4552130484921273 3.0600936340277887 0.4271868244757116 +1.0051528613837672 4.933210986012222 2.9874899771587526 3.8916014591537986 4.030763972541048 +4.35416397376249 1.6526080828744147 1.166627657120927 4.658830291605601 4.415187818416535 +2.7128011171849518 3.3933990949910595 3.2128900695546165 1.6580945258874529 1.697233864262976 +1.424171373566483 1.9284590553268717 1.4824611927243363 2.2380338609797326 0.9084030619663532 +1.9610846895532776 4.279800193905425 3.438247981194039 2.9546638972592842 2.368606163201905 +3.7831634931030913 4.018721286479421 3.955415832487413 1.1795152301574179 2.7858771738962855 +3.153348103673891 3.676595942821261 2.2435306076983914 2.5904707793462416 0.6278182729703171 +4.5273729736254635 4.929841365007415 1.3535820216437235 2.057345994801304 0.8107185306727112 +3.344872516199801 1.0705047617325336 1.0918150778199052 2.9673403592824306 2.947938900989226 +4.418123884948802 4.03665645837519 3.715236906528995 2.366224442866055 1.4019101343005724 +1.1881515902148676 2.970021570835823 1.655896612325788 1.245822996929291 1.8284477017083312 +1.7937648380332574 4.776246308359346 1.729165385784046 3.2137604374107402 3.3315489172685027 +4.001848715214209 3.3705316550525932 4.388859356137036 4.422841529394349 0.6322309851236292 +3.4950903556216115 3.8055614227289905 1.1195052564221948 1.6562965198953816 0.6201105901788284 +1.2489499603720104 3.4704069659676278 1.1506318167576337 1.5497506057695634 2.257026148597352 +3.9276314669871506 3.477632709787082 4.502662348459657 4.58146080355675 0.4568457923712279 +4.212349326293563 2.762719723133779 1.6952479089305719 2.933544671044087 1.9065164193937616 +2.834206046239074 1.3802275700505677 4.244452506588707 4.098602128824114 1.4612753819569826 +3.1161669746943024 4.119164256403411 1.6355586312503934 2.6032637220368153 1.3937204489601989 +4.30902989207479 3.111690041686316 1.0841711504294236 2.790447886960391 2.0844670827228384 +2.273282788337829 2.9593015618040903 4.075525407246099 1.709394233971064 2.4635743314728797 +2.539376213484824 1.9217647789499148 3.273523845247816 2.072996812405291 1.3500774202444636 +4.418755652066299 4.853875572514941 3.9929095846277516 3.3658706102535407 0.7632216064522117 +1.6820726824010195 2.5229165488846084 1.0468675921558295 4.9264446776763435 3.969651970928801 +2.9740525880623068 2.3027921211163123 2.2672280052998075 1.3082236687334983 1.1705895660040462 +1.4671802068042927 2.695316987431871 3.7715117718279743 4.740489894114992 1.5643652237892363 +1.9531094706085574 3.709588027222241 2.0266988435800326 1.8493000153522154 1.7654141905230885 +3.487975479271525 2.891255674577611 1.4186799044084935 2.122098609502366 0.9224274497161736 +3.663507173700873 4.093588079577346 3.6981321311675197 2.2288046096491723 1.5309777761583534 +3.9421319812629614 3.0116365615583667 1.6350516840433098 4.683255866203917 3.1870629837254 +3.9451223216175775 1.690891539041261 4.194433848052849 2.1665728645099676 3.0321241052585783 +1.0810835906049596 4.183039011073458 3.305707149720676 3.7237544982119672 3.129998564880581 +3.004514809548698 4.6510924381470105 4.102821894718915 4.5090625812920795 1.6959508785421462 +4.480463411755126 2.125557506082686 4.520177917151739 4.916205350912032 2.3879739430868376 +3.964527236358748 3.4544953520926787 3.6233454685365967 1.4219271501124089 2.2597289960660274 +4.0108819667510485 2.974962889748951 3.2882437971499434 2.8940307458804577 1.1083917465806372 +3.723909509550685 2.5738680933028975 1.9671164566206114 2.995971451792338 1.5430936005878033 +2.989578008869525 4.951018078504098 3.621101097676882 2.774852943122117 2.136207641090965 +4.88337030495917 3.5355031760438935 4.337145813871688 2.352122327161783 2.3993882637039508 +3.1721707287973 2.7610804443709758 1.7007095729493127 4.453649184988366 2.783463980274121 +3.1041017736527188 1.476579412001617 1.6270195302681443 2.4501373283689496 1.8238289248788382 +2.383712073803501 3.7350005937419883 3.300704123198689 1.3922305527732513 2.33842939451461 +3.6270576539502013 1.614357748313752 2.3463062490633018 2.801364151633402 2.0635015398202325 +1.8045420290912837 3.8701173447505255 1.7157462467053435 1.1337841481679383 2.145991907905255 +2.4068874016315007 2.560169531900437 4.980519211420358 2.5998382070865005 2.3856104996113356 +4.516694312877796 4.256045827203378 3.713665305246101 4.96306905747565 1.2763022248549296 +4.9363450258657275 3.363653532785539 3.9299149158124673 2.984609223835889 1.8349281685368806 +2.292919202336874 4.069269953265409 3.745500781025555 4.903425496905393 2.1204272300576066 +4.470605148229275 1.5883255739072104 1.8040251645436762 4.178076723791099 3.7341205591838222 +3.764782002797659 2.146540437861744 3.212656326806773 4.944736007885481 2.3704020300556525 +4.159572346988133 3.678385389175648 3.9005842633112744 3.3578943825249694 0.7252952468317218 +4.875312230516364 2.0562894017171827 3.42896016683241 4.108348181089344 2.8997340883617104 +2.4273770650363815 3.0467077718441535 1.9631033910262814 1.1731520251052499 1.0037896616898971 +2.0006551144815523 1.3493496208013425 3.589134101180902 4.953907688992745 1.512218830753946 +4.941381847680996 2.7855012670474006 3.4494617639106315 4.93537368091992 2.6183497289444104 +4.296592113786568 1.5967964612479082 3.8016573835641676 2.054437504878545 3.215847302024904 +4.8202016803899195 2.143789701240991 1.0965727690862868 3.6687631304479384 3.7120539243407644 +2.69020283474499 3.3353472739783565 4.999881602483294 4.6474343111563385 0.7351397422513919 +4.2029472522348605 2.2983635842365384 4.857060882168321 1.033978727053107 4.271228876232967 +1.9207102690775257 3.074444037224363 2.1493132145568974 3.7723654500702777 1.9913312549566635 +4.9362992125298675 4.939852914792966 2.0133663640983093 2.441175505845713 0.427823901345431 +1.4041033713404922 3.319760460244092 4.375495130921727 3.0467079638132453 2.331398167996792 +4.323039165318373 3.6803329239373777 1.3588329271824562 1.613911968042859 0.6914742437693172 +4.874083795613876 4.940056999688544 1.7767111122616552 3.9354666564322316 2.159763404436486 +2.3271673462488214 3.871419189345271 1.9377854227520506 1.095929275164683 1.7588165134934983 +3.466058172230978 2.8929935777770974 1.0758666101570626 1.1986860746949741 0.586078194685632 +1.9609595976983498 2.5662107843613313 1.435426356575018 1.4126519504702828 0.6056795130515565 +1.683449880459687 2.8900726104124304 1.118514423981226 2.627117528314347 1.9317923643192456 +2.4279070509553593 1.313840176335396 2.303867920105653 2.410594782563089 1.1191673799282669 +1.5747748790227565 1.114992103328412 3.126370932325721 2.3406679411527995 0.9103457536360963 +4.307159153446381 1.8352734282394776 1.161959540645857 3.480450782539165 3.389044212933439 +4.798687389907119 4.201932083579809 2.6154516883983203 1.5391859659897698 1.2306359335162456 +1.5550802569101516 3.5638048635646467 2.5516435365409325 4.661914171282886 2.913454426833113 +3.21829430151878 1.8773456684578655 2.9047953841883434 2.4828292152596094 1.4057733402751411 +1.1851865426593498 1.7391168274146334 1.2550607058845484 3.1366256072227694 1.9614089931263645 +1.4030395133008549 1.8842792111456488 2.696222401863098 3.8132231975852338 1.2162575485585414 +1.4725189851988518 1.5815785918842957 4.694112875446283 3.679246881167954 1.0207090595036987 +2.537925067106232 1.1961704087483072 1.0349226357928676 4.643290739802261 3.8497566075347587 +4.063661246398491 2.628780637348066 2.7111825422937494 1.714314123131115 1.7471774401453124 +1.4010913893449302 4.168368539742092 2.033516334184982 1.8220919056494882 2.7753419818270677 +3.1779452069552963 4.287540062332834 4.977259991924766 2.3814835015059543 2.8229871291402135 +3.474498347021368 2.080894525056046 3.074509811677538 2.99673545538401 1.3957723536068574 +2.891915038085565 3.781862313792338 4.370538418290002 2.9641552905319855 1.664307560392708 +1.7432107600311966 4.107711068561419 2.0029883749088238 1.5162669456015556 2.414075280264977 +1.2459967986858813 1.2881728616486754 2.694674118715095 1.1961461223624803 1.4991214014013754 +4.277219071046311 2.7819528559514084 3.8983752993426255 2.254563545176263 2.222147190700861 +1.2966665476293238 4.536486129531591 1.1109202914977439 3.1428489737692265 3.8242862200827625 +4.990740113833159 2.5674173242894116 4.146261944679592 4.3841358417790905 2.4349696780952717 +1.8108293427714823 1.2495745335480413 3.767840409482277 4.035742981851284 0.6219153874590756 +4.734206424629253 2.1944002243755705 2.5075363155553516 1.3633345611844745 2.7856441247137873 +4.346568941959551 1.3431198025497761 4.029485535044861 1.8857020189218838 3.6900561644806857 +3.1406521442112565 1.0391902093887269 1.0705150596033848 4.154022875861134 3.731509442093197 +2.994506161872989 1.9042791151571667 1.394096825606543 3.47111906605712 2.3457656320947833 +2.841792274599823 4.470866044250563 2.736582042083528 1.2274447870530558 2.220670304544324 +1.3996978974621 2.268633542687029 2.7933452639845906 2.17733429287281 1.0651378652890633 +4.197561206795507 4.969545605191316 1.345510776418311 4.110801407097975 2.8710263292925884 +1.3327399515435725 3.905635988288741 3.838703907384328 1.388287452810168 3.5530739953942403 +4.515358797968204 1.484846032109243 2.5698492278266807 2.9211602417293654 3.0508076066057437 +3.20283670744669 4.562286182885778 2.8772624242999534 3.2425496960146867 1.4076710081366328 +2.5966725237339996 4.559373548666813 2.437880086439662 1.8067426012358259 2.061681313516165 +1.060575137800289 2.7041963698972986 1.8817007970931354 3.1650568186577055 2.0853041583150724 +2.444305171887225 4.607213023610478 2.847534817852816 3.035082267529267 2.171023818599473 +4.66120412685019 3.1444867189063688 1.5769348599676976 4.591862461724309 3.3749400201179425 +4.451240459036715 3.291942589619642 2.3526636896004223 4.814670118539625 2.7212951339707585 +1.9884903167456867 4.0588760848258705 3.872892863792926 2.947425458015085 2.2678155012756527 +4.978298974142303 1.5667763079576096 2.4903016797882365 4.7589980448294815 4.097007456503256 +4.073113142265673 3.865264230765425 4.419669714299998 1.8862017405831337 2.5419797685781984 +1.0134281724738732 2.7496895474063834 4.602002320988305 1.2142704812863476 3.8067480320889295 +1.264735048874789 4.429529688586606 4.2723423327189884 1.7421050978187056 4.051916284478799 +3.8373749128907533 1.3354323073465446 3.53765645831005 4.559675029773155 2.7026355214591606 +2.1210710213623916 2.336808325060839 1.9021905040919012 2.714279206666886 0.8402562972432868 +1.1980806465879552 1.7075496649949948 1.0503154123289087 2.9024195137371613 1.920897780510432 +3.9616741079774114 4.683186191408779 4.560467245093682 2.9211997242719345 1.791026993475685 +3.176920061780264 2.2666167591233304 4.299342068481787 4.054515116068352 0.9426517593767972 +4.0683574719495965 3.5101074173503566 2.235488119082888 4.916161234851655 2.738183974291261 +2.1024265613166127 4.613851840795586 3.651536221748614 1.3819568583255597 3.385003311856849 +4.5458536964868514 1.0860896884754676 1.2222702524598414 3.0520197486053324 3.913815300927686 +4.408567968130706 2.4276535712874994 1.689073155177557 4.234388373255699 3.2253141563266152 +2.128171407889865 2.9238140733014513 3.515585103960943 3.7742621873360274 0.8366367697434135 +4.064025454846428 3.581504390164492 3.8993041959256765 3.8805998147077356 0.48288345564798046 +2.1391829773976263 3.648889830653601 1.9132800537488936 1.1738088493885517 1.6810807371587455 +4.080894250870205 2.8220508899751424 3.4563941252514576 4.247597155403465 1.4868385393818981 +2.2780354671523546 1.3730372876689403 1.0122520661414223 4.3679547387447855 3.475595219784037 +3.2841502785289953 4.311900921188277 3.9690336231474688 3.575296422638256 1.1005909169856887 +1.5445033091070326 2.1881702610396285 4.583850916896942 3.892125279614326 0.9448764481582979 +2.977141223282585 2.0628510639197954 4.140245815094374 3.09765746821896 1.3866928126113744 +3.686085454927923 1.912229472531819 3.8514491246022247 3.677322251295986 1.7823818935037055 +1.5219283573349567 4.450933959701242 4.8164265612308785 3.092061237974712 3.3988982901436504 +2.815573422249436 4.936788168854107 4.105217090391456 2.2775786043579065 2.7999668635260884 +2.245674357047126 2.2981924611757054 4.508097804697695 2.816035374991774 1.6928772599581952 +1.2388929295637947 2.589929143043259 1.9620445734188339 4.722191263609725 3.0730617633729165 +4.594281362976954 3.8772394752424812 4.778684632475622 2.7027819081446216 2.196251622572124 +1.3448728367097922 2.2668153844166032 3.3541560694690706 4.438651367507683 1.423414244954709 +4.873573062471053 2.010944372281507 2.827184489719603 1.275413427003242 3.2561689834804612 +2.6083103329032853 3.3092878287667227 1.6991264544597522 1.0749715478230462 0.9385833991636815 +2.6454165202993094 4.712674424946805 3.1605207060469174 1.0710042590476694 2.939325471363781 +3.3408282052946614 2.395674145238065 2.243000920051928 1.9317187324431773 0.995094366160294 +4.537951213393005 2.4005940242696626 4.843562717797571 2.2862345835427966 3.3329000795325747 +1.135528552994185 2.5633990396205606 3.9074297054639957 4.431841811978837 1.5211253018860664 +2.299358689252399 3.2110460711616344 3.013700120844442 1.401757670293796 1.8518996587881693 +3.2813097138690055 1.1393889185720538 2.9164965964086518 3.650619843336741 2.2642353311892665 +2.1388761345283105 2.7118794774922432 1.702784989495158 3.1127991589095383 1.521996317011696 +3.368948243881524 3.1945362384575726 3.224879189409292 4.284894873758487 1.0742684946987404 +4.3719335315634265 3.929863672565208 2.2744562413966833 3.641823191885425 1.4370518910337182 +1.3454912567076334 2.415749017495552 3.4435550397361605 3.9950394187664147 1.2039878300220292 +1.8043886873628754 3.4998025617038713 2.1781637267530507 4.825303119426815 3.143529094752134 +4.128800675766662 2.5020982478506313 2.9566933244518996 3.314555150142073 1.665600755065335 +2.594118955877675 4.420424353217761 1.995616941207298 4.724609845258056 3.283716442495137 +1.1879617965964413 4.363701520807851 3.626636429353119 2.093126177525147 3.526609772628076 +1.4225417877465123 1.3197480451128594 2.657946526163233 3.1932547990400346 0.5450885254112199 +1.2211832989599847 3.635414948684637 2.717073648736669 3.464037114637973 2.527146390283615 +3.5616307884098557 3.4766563927058542 1.3387195253591466 4.6324779893942996 3.294854392432004 +1.6834559665763646 4.780410855281773 3.809266004102625 4.491426910127812 3.1711942678406557 +2.8772835645134447 1.7618394438791025 4.4566020153431225 2.4856731404544683 2.264680157578014 +4.251743084260693 4.00501394378654 2.7252722783901673 4.036110168433087 1.3338557803343236 +2.493504331288867 2.1989404390480747 3.6517149994658267 4.858741541860695 1.2424495807306453 +3.876527310267709 3.4158193012455844 2.636297385649876 2.616875316889864 0.4611172153932759 +1.397625729824493 3.2818761108044034 3.034829563403704 1.0903759069823544 2.7076372578676953 +1.7320766960394156 3.4288223693463777 3.0087619125098066 2.665526130451347 1.7311142891129918 +1.0496627610555582 1.7099503262977125 3.4747690538008444 2.5130150250136385 1.1665978230314995 +2.001120033719479 4.238126751038736 3.8821668782863523 4.947898076946615 2.4778987148649394 +2.1698729497759883 1.1981532429075084 3.668737481079379 2.998254387249085 1.1805874672504395 +2.9889360506170974 2.4191372749803706 2.346518522338607 2.192365642934766 0.5902827754098947 +2.4656561273408686 3.636588820845305 2.5649643730240377 3.172425250362843 1.3191255020712722 +3.851289739265868 3.4949531116412533 1.8437511648382934 4.7626592833577615 2.940578241867702 +3.305272323521611 3.5049651431951583 3.4436020623347425 1.6370326324540048 1.8175726470237128 +1.1255829788324392 1.55050930620222 4.466320292235032 4.990105888768886 0.6744729311308905 +2.082831637882975 1.784857408460034 1.8723193955738435 2.8170520007177773 0.9906100830408701 +1.770868406887736 2.011268735696149 3.8563882100063247 3.33906169016376 0.5704551220066418 +3.9901239088665994 4.464431675342308 3.0525057761795162 3.061484756231424 0.47439274807057025 +2.31591102988771 4.7011840281769945 2.7199643418828328 1.59274336074097 2.6382104572407368 +4.286482221749074 3.1189458288083487 1.2287509006603736 2.8582049220543326 2.0045602102900237 +3.8870007742339436 4.684481463377676 2.6645827262143165 2.770950348258551 0.8045430507912593 +1.3078415731096498 3.0831083825871475 2.4615573016883117 3.852115994032116 2.255044505477736 +2.1255282765131405 1.2607138162717084 4.979383830468725 4.029686006517949 1.284457086655494 +2.6276245242881777 3.959142557381512 2.100626750191761 3.0634312708752165 1.6431472294049734 +4.4447251372486045 3.643066623180285 4.806239113059814 4.745284032967586 0.803972571029184 +4.7040654532141755 2.303320285915643 2.5515048262029207 2.8043851897340213 2.41402689226257 +3.4962458796111084 4.6403716915893956 2.2914340352343627 2.830523857886025 1.264769429786147 +2.0479705032655997 2.503621080581158 2.160318956812844 3.7033850249798737 1.608934535441532 +3.902353554430511 2.3183146689812304 2.7154901376613765 2.5148625912942126 1.5966936471899384 +2.2037595995393895 1.0192914367591759 3.0220534335845453 3.817252931142295 1.426641885532607 +1.2449496608161095 2.522486464111186 3.959900371193756 1.9057388552599122 2.4190245590561976 +1.5380932339450841 1.9443574519868743 2.9978435877044998 4.053160213715401 1.130815544638532 +3.289379481917911 3.9620488369504674 1.3249031394492392 3.34632415495005 2.1304053565244914 +2.4893966204838502 3.559581569638341 3.9375379119222886 2.6195551626251685 1.6977556811395436 +4.083104140648427 1.1992413632961023 4.624046780376833 4.227385757468436 2.9110143396577417 +3.8013421269616017 2.652214877376262 3.8877552449313044 3.7460770513873634 1.1578282023968158 +3.721202844440143 2.5607614322980132 4.225930510300736 3.3746893178402444 1.4391788765667664 +4.012987804333198 3.7272733051655904 3.199763767041064 3.2124449436004454 0.2859957819156204 +1.111592005086011 2.6863146387138968 1.4404967491592062 1.6834285716506914 1.5933509479204444 +1.0112510132196322 3.3593688628610674 1.0999422306065396 4.413941875656191 4.061557716344054 +1.0324934801640993 3.2519223595792006 2.9166034062075794 2.181241961657505 2.3380806241258116 +3.844701165502414 3.7682554003560016 2.1110681583455917 4.153123500891495 2.0434857418218235 +3.9804709419306206 2.529589894989662 3.5619773642856103 4.038416632501788 1.5271051662118293 +2.2952678599304353 2.448442533233214 2.4552892810956637 3.5486201897124356 1.1040085852375374 +2.630622840012966 4.171684974465054 2.696701313125957 3.214400117491535 1.6256950988065306 +1.8810817363049948 1.8364882015228368 4.794557073889489 2.2835069244890667 2.511446084658847 +1.2465970596302056 2.5350698310487734 3.226079344991111 2.0742454770706455 1.7282602066748125 +4.181569498307059 3.5204000050007744 2.5790634391880696 4.001232251176551 1.568346016882632 +1.70307725752868 2.8970298135410406 2.986046616166221 4.218992071003781 1.716297526832992 +4.06159465690148 1.1791455099214803 4.415741158217118 4.743238534745213 2.9009942462125835 +3.4385971543768203 3.3874837180937627 1.650529991479314 1.2800512271842033 0.373988098958101 +3.781212326337343 4.3898408208443485 3.9955571717027047 4.58776860632241 0.8492014058044141 +2.2753520156140734 4.578369158904586 4.837108637924516 4.876755127623451 2.303358375597562 +3.2124906555331356 4.315018135885742 3.3984555811584762 1.2592992239167229 2.4065653462269574 +2.59985288141374 4.89322234216583 3.1564939373052696 4.019829262721583 2.4504879856106254 +2.9402019134615474 4.406485159354045 4.349807981997383 3.876350997762459 1.5408270743681352 +3.008527602473443 2.985520072358314 3.8126146941414563 1.5908401597921324 2.2218936581045354 +3.5516896732419276 1.9479082227276878 3.9874107537985823 4.037387791408024 1.6045599537885067 +4.0910976898745215 3.3701894182135836 4.530076585792973 1.5715686582293866 3.04507436585804 +3.9239639065686966 2.4968674082664473 3.650623729858868 2.01269549863987 2.1724210701635944 +2.3836181034741557 4.8126069752434635 1.3105638550040584 3.830530588392701 3.5000313250833286 +3.691792212832014 3.561935259345832 1.2667431220503587 2.969236946112899 1.7074390323931936 +2.5220014956679977 4.937093142505853 1.996486082981157 3.2528032708882706 2.7223152902000205 +1.5686242706938196 2.0713508048903315 3.8593495291280155 3.9276124661865026 0.5073399223016928 +1.8929915240239215 4.792621359288393 1.617396187268016 2.21779341364292 2.961136607958935 +3.051657377080905 3.1274946853015884 3.9690486263330276 1.238653230987509 2.7314483909168352 +3.51814170697094 2.1328723022167413 4.158666820264346 4.473692058415235 1.4206379638810431 +4.059358830189987 2.9147395835261167 1.788568619644301 2.856460863072134 1.5654223274907948 +4.756008738282731 3.601753479741747 1.2580694299666804 2.1547223002221885 1.4616058195036565 +4.016115442049395 4.776853803921574 4.02090488562828 3.9854544112399237 0.7615639115388313 +3.184687767208053 4.22183359902091 3.1572725403150637 1.534762300909112 1.9256715590733386 +1.8385555979842163 3.036732149802879 3.6012361520229637 3.533912448996086 1.2000664691246532 +3.4150715941038783 4.460467043515553 4.64504884350009 3.2458469110713684 1.7466017557997897 +4.53178129309282 3.8853838484405507 2.618174294914681 1.9088509668200038 0.9596714230570234 +3.7388125851184064 4.71214373587596 4.795312396493626 1.2019828527670953 3.722820266794107 +1.3156780365609224 1.971438042906407 2.703463390876709 1.6087843425259436 1.2760655958140894 +4.494719094540542 1.3276153318065842 2.43055968137586 3.675365814673852 3.4029529167209907 +4.807693730058659 1.5674891567487745 2.3132984915565644 4.345825478518961 3.8249302777473906 +1.545960138298712 1.9894773347995378 1.5244574897227237 2.7822735512068926 1.3337198911763664 +2.092776370876116 4.199877576161432 3.039796038797352 1.8589874839978044 2.4154056248180407 +3.3803221231390497 3.216073758449364 1.92571695332739 2.236077217229446 0.35114244789342947 +1.577444792018722 4.352079100514118 1.8927060229618946 4.987522129829387 4.156498800818566 +3.0500519272164346 1.8661527559906181 2.352122566705865 3.7631981968855968 1.8419423665566474 +2.1624682361162426 3.753461129088802 4.129287338569194 2.621042373760543 2.192273080471464 +2.5188239356026862 2.181783291617627 3.3236288323731253 3.2993041994544914 0.33791727310761965 +2.237777467295859 3.3683822665031977 2.867414868979168 2.543234447396117 1.1761633210266471 +4.688608810991907 3.0311937061191783 3.849760406630036 1.1481949201740296 3.1694606650770347 +1.1297742445981127 2.954358033965979 1.573886863649932 4.418543310452143 3.3795230883598624 +4.8775062130419435 4.304207388288258 3.317040049059691 2.768769378161941 0.7932668346972697 +2.7123591112809144 1.8992468861484801 4.863632479021847 2.2903895478708214 2.6986534926474985 +4.524638145127318 3.9277747668327394 2.356074998860399 1.9235181318762953 0.7371236907903044 +1.894263636039374 3.4152820042971994 2.3019251231286604 1.1968029868955061 1.880104202582992 +2.241826067838234 3.556763488172119 4.689859012369126 2.4188376615006564 2.6242329156335917 +3.100886039213394 4.388732736696767 1.831874310669388 2.527359245066853 1.4636421728662634 +4.475925862437737 2.845563661106974 3.340193484517795 3.0566531411110067 1.6548341408936826 +2.4222488629675767 3.8901264908616024 4.380133491232162 1.9618634195865594 2.828903474827061 +1.4344138974207357 3.3904886473901183 3.772339048653513 2.3132311556528724 2.44033281969582 +3.136231682731473 4.993693799904831 1.9789151878576878 3.536924225573377 2.424367480052869 +1.1277210706043612 3.828746555638511 3.869379917668779 2.856455513636458 2.8847104740490326 +2.8168231389685254 1.977806988439054 1.9961255462239063 2.6212214577487614 1.0462757760047694 +4.625359741914455 3.4533578227652897 4.358059390233916 1.4931293226958036 3.095385725620195 +1.6417191786881644 4.091613863993975 1.2748527880599987 4.818838275904452 4.3083427332492645 +2.0907673729064693 1.4192724268494352 2.8783517240015075 3.8232557583043696 1.1592019222818617 +2.8792338848298797 4.218147728034774 1.5093605730407882 3.5302425355221096 2.4241811371694273 +2.2199511619150436 4.408727214944349 3.7811021953303263 4.588330284099561 2.3328861518755213 +2.3961286709973577 3.3501896892218994 2.523397543354208 3.0769361035040586 1.1030128576169993 +3.893940225429588 2.529973597433063 1.300937791248209 3.953305002368708 2.9825252362579175 +4.467311989789209 3.0738481999885714 1.4472777894737145 3.660202838406749 2.6151058498043307 +4.865344569790534 2.8060362768122795 3.778325185757193 4.7663822489974255 2.284076926407674 +1.1935853074800962 1.6817225863595024 3.7765302177288524 3.7424084985875625 0.4893284119576017 +1.2797306123809769 4.583556370386082 1.1018161335520533 1.059478735732708 3.3040970165102785 +3.0712056636524085 4.069574432221488 2.478169582325204 3.1737344365937203 1.2167788067466179 +3.1194676033413637 4.003664706638109 3.958573650919062 1.6552946032630582 2.4671641390165964 +1.9572900171341119 1.6561045451434953 3.9101764352784065 3.999305563502755 0.3140966253181381 +1.0099522297209576 4.624910633407672 3.0328489566890555 3.8912465185222964 3.7154771745425177 +1.258898722712928 3.3739701990918802 1.716785445863124 3.736838318983082 2.9247463070140007 +1.9214903596473452 1.1163115314638734 1.4360027834024436 4.809260749452364 3.4680228157949244 +1.593684155167638 4.164808905435272 2.8242167987707867 2.4422282314332526 2.5993456382357825 +1.4712228063940818 3.255194218734996 2.5700342034187025 1.3744619129411868 2.1475444353510564 +3.6317510814582565 2.5349489337348468 1.9907703158085823 1.5642638614482358 1.1768103954595739 +4.319761488744211 1.9449390316548887 2.4241288911504992 4.994234254372963 3.4993175450022593 +1.9650672462175711 2.045920959610788 3.867175692482138 1.088765426169073 2.7795864676104807 +1.6586660546030467 3.8181065247771238 3.082017703596705 3.2845391609478654 2.168916338846032 +1.8467162526261403 2.9735511007310667 2.12014281246511 4.51825016088531 2.6496557567824945 +2.607280829578409 2.638454257189853 2.119179773419976 3.8938268201809687 1.7749208216612253 +3.8284579360283715 1.2531619142354624 1.092960597854256 4.2827318258149845 4.099608528455915 +1.4735857214837278 3.5608408480320164 3.155234826688368 1.1652152850436859 2.8838883021763904 +1.0962534370505623 3.3802844625605526 4.944340478309716 2.786822285055535 3.141923372667609 +1.9175604221013245 1.9483892189716174 4.364059260349348 2.189815942752905 2.174461868791738 +1.7980542219828224 2.392332902871261 3.8289679093041786 3.911354367143405 0.5999622313061025 +4.971014080646531 1.6984107950067342 4.816263344798603 1.5981780171092885 4.589771828911502 +3.144864283042764 4.441316337802614 4.833069959054523 4.000662189110457 1.5406786250721756 +4.709690272455186 3.753602903457796 3.0115566240024427 1.7715580838654583 1.5657903552833001 +2.2413626512455167 4.025940053620348 2.9874699520675607 2.295574599443946 1.9140103667559 +2.3479760858519345 4.404991701671979 4.895751208303761 3.9567462139755514 2.2612040206714736 +1.6064745666230293 4.717751555569174 4.341692834815936 4.540167476344285 3.1176011106739736 +1.2298815550937743 4.973068499318723 3.4283654850122285 1.061785044096208 4.4285608816795525 +2.2650512301623063 1.8519793089328038 3.555200734958229 3.0138886091335886 0.6809164630650545 +1.4215546683151699 4.257164800215765 3.537926044754622 3.937215751767465 2.863584657429166 +1.4073018890837754 1.3580196671203337 2.5392882477732437 4.179848600166699 1.6413004012815549 +1.9823686308824344 1.4586766858479359 1.7891627229005165 1.8990645078784048 0.535099668879866 +2.0230819064343764 1.9788870955172673 2.3226937402629457 1.2367806468866145 1.086812048000091 +1.2200366674723635 2.1593879670542635 4.672129112673563 3.770135458685434 1.3022954410812706 +4.942414515409535 4.389904079750474 3.3341101715754697 1.0748292361728815 2.3258585783718146 +1.5456088949993685 3.8789813886103337 2.089697805035499 2.9568791574957367 2.489303254325399 +1.0639648733029654 4.869557935023119 3.154221964741373 2.971230058678168 3.809990103543212 +1.2054457462210006 4.3930502044390245 1.8446739823749034 3.833008112062589 3.756899625134042 +2.431479266839415 2.6362582524478624 1.634075472176129 2.05377783661487 0.4669951901918204 +1.5007591735821282 1.2906642745012293 2.0123899071998204 4.6362393713356145 2.632247305453176 +3.9899202644844105 3.0376066964812134 1.2490582928204956 1.896201379039188 1.1513884252690896 +1.5724895564620063 1.875389648898922 1.2774174063672827 1.4722203132738398 0.3601341951794314 +3.994587817278617 2.667397202546606 2.6431576976501243 2.9909413609734847 1.3720016050673371 +2.601360988547922 1.548281196943547 3.803136965486199 3.13033735705619 1.2496544964865637 +4.244181078375156 3.070498290633577 4.12640037678093 3.532882194971179 1.3152167571847608 +1.1113726783313065 4.126971673351971 3.2333873773516237 2.770371025234279 3.0509377969892624 +1.0953180783772836 2.6902147598106643 3.87647870844321 2.1223707238386904 2.3707784051025396 +4.138808175569791 4.305739264820012 1.5422600504222994 3.3422893979691377 1.8077532023448781 +1.4845441575402458 3.7885599330924435 4.856530905424125 3.546760721653324 2.650280481060145 +4.787284028907724 2.9788895687241714 1.79852093522602 2.6173591526996036 1.9851414433278747 +1.1953214310464535 3.5431853560195674 1.8454327379018904 4.61891016257681 3.6338192078544003 +2.3445525185500036 4.073613499972515 4.8758626227436395 3.4112752548302563 2.26598059032491 +4.918085697394357 4.089816144711579 3.092228671692081 4.559175198668141 1.6846253485295937 +4.581056591161803 1.234557099337763 2.617387931485355 4.865495990741397 4.031507000473957 +2.4586447373468308 1.5425524654850817 1.0224054770313118 1.3734194229607053 0.9810381444173024 +1.6446676210532951 2.694086039607869 2.6441862221111987 1.8271726650164806 1.3299587097643848 +3.999706396028292 4.4984214151355015 2.1295785299092995 1.8078119566502107 0.5935068642821251 +2.0003231430152724 1.6487425516181493 2.5880252144407985 1.5018428933083827 1.141665864860535 +1.497911004359263 4.196824867268937 2.6831016636148615 2.6272225696744735 2.6994922693991215 +1.7986934472745744 2.6126007962708586 4.474286885041812 1.6783921232179755 2.911953415139762 +2.3777115214135933 2.1852803247855066 3.759885028948128 2.8973640454373264 0.8837263221338142 +3.9002124038356265 2.6805492598248355 3.7432340465530163 2.9376243435459126 1.4617062558658909 +2.8546129011218633 3.3613661815057374 1.8038411324439276 4.507117287881995 2.7503637686204043 +3.9124138849309933 3.8424708748506444 1.4646640984802262 3.5150736509043887 2.0516021440160745 +4.900076220807183 2.553038968097762 4.465142929505946 2.7463249675167867 2.909109666558199 +2.4389984061814554 3.2113928411012673 4.2002555063537805 2.2764789369727287 2.0730435239026277 +4.198260273988668 4.141494155689662 1.4460805173757798 4.095518813180993 2.650046353456099 +2.874039550961404 2.199246374226356 3.2213693753708172 1.8834238199094497 1.4984806107344213 +4.828725129549059 4.2702909814353545 1.4991333614925932 4.255472144245516 2.812339272400708 +1.265525667302125 2.829965975755376 1.2149478843740824 4.292725831761616 3.452562899085015 +1.3639368957761175 3.6598803859051623 1.6406725003869127 4.286724234937401 3.5032765080398067 +4.138130923425484 3.2356130221131347 4.193202088848276 1.4482943471879763 2.8894734939805025 +4.170723478353518 4.555422299657472 1.1638801468851399 4.056565406268154 2.918153730180168 +1.1237523992183105 3.8643578334274586 2.2501108195022463 2.233705640200137 2.7406545342170814 +2.0809452423760035 2.5237686473137186 4.341538990619341 1.6667196849348591 2.711226823049493 +3.3812386002381625 4.102498239328469 1.6514627510039066 1.5155774116603817 0.7339484262733886 +1.6742621552503603 1.577533666085139 2.151991777077309 3.9696033940798876 1.820183614605657 +3.688157619204564 3.6159254095326556 4.573735803049603 1.5237263889580408 3.050864618130611 +1.6236413178002658 2.2366972284894295 1.5612508070403859 1.4882614037403266 0.6173856190623641 +1.2950218747178064 1.4280540475237822 3.659390406111798 1.7049264389353396 1.9589862066876886 +3.6426496530637187 1.762976303069836 1.2999335052964773 4.844571830302451 4.012185533817994 +1.7058375810341029 1.6049269991706039 4.075478961390912 4.574964656994654 0.5095771832066106 +4.966332690835847 2.8645640349407597 2.1554936620343583 2.016394273907932 2.1063665689238866 +3.600503466911479 2.2883594427319554 2.7913652934186906 4.954996104198756 2.530418982213585 +1.8357325727023586 1.94418881969208 2.7024661414417084 4.950918342654667 2.251066426974223 +1.4280755718832716 2.0076625434266306 2.5849945029792893 1.3378513771132763 1.3752407185571742 +3.886331538399177 3.328215869806197 1.6057480480989885 1.0269353331640536 0.8040629692376955 +3.3114102499642493 1.5876625936896724 3.414165850809815 1.127001010785413 2.863988300946068 +2.4678383225162253 3.906708843842766 2.4469881415566457 1.7526601704377032 1.5976356620395835 +2.982772230658702 4.661555422534315 2.117247822526628 4.2858274273191785 2.742453373832687 +3.2420673710959167 1.95093141640272 4.696131682258486 2.340321390127026 2.6864240517859477 +2.3111362216554774 1.9224656273564196 2.8629436527103516 2.112670904409583 0.8449698383466545 +2.4837661127457045 4.838440209316591 2.912580002262354 4.289534252995786 2.7277267292884724 +1.4406091868400828 3.1978820563577672 1.477104370046952 2.7304190958621217 2.15842668161049 +4.5519868606557665 4.103717013914405 3.124660845416791 1.2988217138162361 1.8800623367275329 +4.452192028464694 1.3804980465099561 3.330432838083732 1.4666312105776993 3.5929180933429428 +3.9009426304875126 1.8889926705895923 1.5505479032626135 3.7125638790927695 2.9533465290883263 +1.004588963002636 1.38333188688945 1.23608942710498 4.430900331567571 3.217182450167757 +3.7120641900453717 4.818244537438002 1.2247905003271473 2.8200555713843944 1.9412639202058444 +3.7381429325269204 1.3653791692580648 2.42067388754053 4.770197085139533 3.339201571085164 +2.2403548176323063 4.814619550593084 1.9509568998430855 1.553885087294852 2.6047082254421445 +2.196547909096409 3.4010869439837443 2.2486181287558686 4.482837541961885 2.538237710088232 +3.559493721865652 3.302298045744728 3.5423704288177214 1.7082328336620765 1.8520827016574157 +2.381499519436083 1.8107793767544975 3.8120129381016294 4.612208700163631 0.9828706623378666 +2.6329876098392764 4.918783902147266 1.9988190581490488 3.4707022718164513 2.7186954380005184 +3.8734113929758878 2.3420789683292456 1.5141235147293837 1.1419218013008634 1.575916593685494 +1.6821249847294237 2.0245428436088506 1.1722458064008499 4.177858585676369 3.025055068758895 +3.4742424542942607 2.3545740117890883 1.0341967023349015 1.6190304697919182 1.2632054293344082 +2.0029924631775056 2.950401179693016 4.822020661884977 1.931984718742179 3.0413633503392603 +1.5333395153004887 1.0375280749122253 4.285663804997149 3.2774946920236117 1.1234918534523222 +4.203747819889919 2.837469143729822 4.527710181745514 1.3508346146021073 3.458215694551531 +2.9571241934230916 4.805245727071449 4.148668473452755 1.6160611322094294 3.1352277665353663 +1.2371106985424531 4.495432066352814 4.274852523584259 4.9750747919973435 3.3327120129274816 +1.822295184022162 2.8630272147670404 3.5694913184848995 4.119459843275514 1.177110248905651 +3.400757738774601 1.339699918597511 2.273005950111546 2.2567474641818994 2.061121946047313 +1.247708139841322 3.9606278969953297 1.7865618981517808 1.3649361212687818 2.745487553147665 +3.971196016450071 4.753679082506659 2.0252289746906276 4.471550406064257 2.568417468844043 +2.3549943467287204 2.4171492896533437 4.865127436320432 2.4419328956525543 2.423991546778283 +3.350290275512758 3.335687757855217 2.155496427899205 2.9390460562427725 0.7836856854627893 +3.4283989033774254 2.669162072832568 4.920723347954567 3.240069356144842 1.8441904470639043 +1.2969597951899416 4.75983007155778 2.6586995968979172 3.478381741991826 3.5585600135360402 +4.842527231817911 3.5679315883696563 2.190350778822492 4.194198836062339 2.3748686470626494 +2.1434112455571106 2.621055233055457 1.3043902149781155 3.5582620523424096 2.303927524480147 +3.4184988679610413 1.572101426510332 2.6765906421251957 4.138733612292597 2.3552166730485067 +4.659095243562637 1.6536097781178558 1.5314693857178905 1.700055680786697 3.010209996310035 +1.1224349350295784 1.551564376574258 3.5164441481475586 4.475630080511689 1.0508043254791513 +1.9996758566030803 1.631092745600771 3.911433780948577 3.3427278048153486 0.6777019971977276 +2.097549728515981 3.9868701721551596 2.16547178821632 1.205903597929097 2.1190334708456207 +4.80052778924555 3.278585563574805 3.4986224586739594 2.995933397849237 1.602811414406717 +3.31774378001481 2.748365375968887 2.8514170662532514 2.0622789250656193 0.973103680432334 +2.2399509234330606 2.073467040345945 2.846810400934011 3.1050842768233196 0.3072820826124593 +3.0869729622694195 3.897497431820946 4.3716612965608865 1.6983892443622302 2.7934447159033233 +2.7096087000453735 3.1699060418301723 1.2754552453037484 2.550579775281756 1.355660801899128 +1.8635406109630055 1.904751621453574 1.3850473325186354 4.259368301665316 2.874616388505076 +3.573439231644485 4.157567279538242 4.630813502236331 2.9656331165424454 1.76466180704287 +4.462082389119554 2.508945717394417 2.8568642134491316 3.126613705411055 1.971676354489058 +4.993662448997162 1.7763600767928942 2.6641730440965934 4.400156731301081 3.6557726839111995 +4.823521430652221 1.9753886276506756 1.8199150559739516 4.430411501277493 3.863489634317124 +3.8302874687759 4.8517029773944005 1.2940953434285434 3.2886505734862554 2.240879337893266 +2.1907477403549107 4.74618174010354 2.9915730395356697 1.8739541441070298 2.789142327399305 +2.2644938157011762 2.244367909525655 3.159586378143385 2.4543495481786937 0.705523946041545 +2.5066856312974837 4.205126273214637 1.9646424248625398 2.6245332485806454 1.8221296642509583 +2.817818600069112 4.8833192192387225 2.9068642256801183 1.3995199267350227 2.557025546089113 +2.5504758485719194 3.7194207280856677 3.0993320935792457 1.6992857887080368 1.8238864512696336 +2.8524300751979608 1.2780138028217234 1.3769006320921933 4.641392947597249 3.6243201675230967 +4.842777577023488 3.7441632407197596 2.9762516875791336 3.630758600821813 1.2788012978623937 +2.3405198107904224 1.7195966972633077 3.777757595652698 4.887166316095456 1.2713509436448474 +4.558331227691809 3.579594296410579 3.446604308758027 2.704545231661071 1.228241692239677 +4.873111198562842 3.3136411887660384 4.936193684432704 4.294621675240917 1.6862862611176164 +3.9559450852862637 2.4589566133206224 1.0562983812726068 3.9391505563775424 3.248355145101176 +3.460123112551557 3.5976018918907666 2.622801119240461 3.5330020950286674 0.9205249758123905 +4.868104227246342 1.2021642638276302 1.0600781126513041 2.407778769242745 3.9058178241140986 +2.9662717449965665 2.4507815797524364 1.7665939220313511 4.306694208475326 2.5918795449743 +3.421861838758347 3.223305198879654 3.158743918190793 4.942012597886297 1.794288695618089 +1.645598826610554 1.3674432659432023 2.1706555798614615 3.25494258699795 1.1193966364855543 +3.0624506983757476 4.525933654409064 4.179887297620241 2.7369517315610676 2.0551996035418365 +4.113493961223013 4.69201282045747 2.7974745493654583 3.6884154111994762 1.062289833226074 +2.24972495841208 2.6240184166348084 3.767102982998452 4.055550679346187 0.47254382484235713 +1.4773890877033775 4.239037305485546 1.4652039517514415 1.2300928920111973 2.771638159859906 +4.985210221006937 1.0228480118036467 3.488628062049208 1.6996514395530977 4.347499468977537 +4.798479414351499 3.0885529716495705 3.40417110779586 2.696647163609157 1.8505238639500927 +4.530050363749586 3.108840874203634 4.139514386004278 1.1587805017644022 3.3022130309583604 +3.410419881820506 1.3775785088070616 1.8573341386180098 1.438574822191748 2.0755248523997434 +1.929642515811039 4.3574901290088635 1.8653934031350397 2.7483990592216236 2.583436281697552 +4.975884395051571 3.0845709937769334 1.6465806869456436 1.2521636774491856 1.9320018527996206 +1.159520756103714 3.361907434120065 2.366461035269213 3.8732602449373092 2.6685109963723774 +3.813909031651541 3.9116414775219663 2.3217095281623816 2.6769385179323995 0.3684281017360687 +4.4097951871842795 1.448776180750393 4.803610267675349 2.6858917782180516 3.6403798094501103 +4.694284123432014 4.467179492194959 4.159169602573017 1.0042773916090977 3.163055702375493 +2.7531977765150972 1.5147347817987744 1.3433530854079798 4.264252332841494 3.172608233447583 +4.785773949935493 1.8776639854291464 2.0320686386142723 4.196096328497037 3.624930262534776 +1.1567980248989551 4.15868150821729 4.241727156704256 3.5138967878520995 3.088857635638601 +1.6123038013447206 2.5460697016925162 4.660867552789961 3.0574195998679845 1.855522593336445 +3.0718833251273088 4.842769614452292 2.845204395313721 2.778609241850022 1.772138020636108 +2.5630388682014438 2.77320453060995 1.4039868795963573 2.890817893854737 1.5016111582617546 +1.3338824523094872 3.0482620578953976 3.681172872496687 2.3815299992482113 2.1513179751107123 +2.829130936721196 1.3162194482730958 3.7194039771455127 4.68396264560908 1.7942337074044885 +2.1075860066615544 3.2883506407145022 2.2983686154456997 4.776460593551062 2.7450218529148978 +2.0495065090621476 4.413986620959953 2.4165654334162094 3.7994617721277093 2.739191209678859 +4.30298408792233 3.113124460287757 4.119312919274227 1.1011183055168092 3.2442664286382175 +1.3770966652957424 4.839102725902016 3.021592017490192 2.7120443475536544 3.475817274201524 +1.4829327137522337 3.761518443659799 2.0923051481012545 3.6007995107915733 2.7326741794086726 +3.7632705636358734 4.272594778753135 4.423038442177056 3.195424977645237 1.3290771137916078 +3.8458720791393093 1.8188351063550678 1.6389168579019469 4.905032777740917 3.8440072958905613 +2.728877161745381 3.6128130768246 4.551009602000363 3.1663054846720846 1.6427867160751037 +2.11618643942882 2.3254206690253305 2.788528279449456 3.8359487161862336 1.068114476134795 +2.235950296144579 2.2022986494400345 4.074493410689912 2.3738021945628747 1.7010241168006959 +4.899058164675385 2.2012859788376984 4.099171416749345 2.787484024667589 2.9997497531003625 +2.820928021371516 1.5227071426345256 1.3570985490638217 2.3244992775893727 1.6190248977518569 +2.177269928414151 3.948916719271618 3.93823201896242 4.939996537478417 2.0352553898990537 +2.367214409169039 4.171122459281027 4.572154230837274 3.8485153746427354 1.9436402566970503 +4.307367054005624 2.593385855011529 4.670728410678407 3.2231342742114433 2.2434928870934203 +1.5333124142958243 1.682949134649415 3.5689748842985503 3.006471004908792 0.5820668023575185 +3.4029199622484794 3.321175545332117 2.6402781945595337 2.944747130511553 0.315251459404633 +2.5071374691806443 1.3082161079035113 2.847171930518157 1.5146289398474018 1.79250753206573 +4.357643291497078 2.4555711683681394 4.282503583239713 4.630469614683085 1.9336387254662335 +2.614059113102138 4.041084440920052 2.8159946106437723 4.76387948322573 2.4146752914351555 +1.5428248126935187 3.418676304816472 2.867518558584213 3.596357386953532 2.0124673558193864 +4.493035514128749 1.1437326817492246 2.4070790751353974 3.3634561539580945 3.4831719136274257 +4.281819399018792 2.8832932239980686 3.462019544850207 4.967029885068893 2.054490590483018 +4.650310217008201 1.6467510281056876 1.3076610209170685 3.2797169043569996 3.5931006399279677 +1.4007026282029047 1.484306038467683 4.0279738327422105 1.0920649760333019 2.937098967537477 +1.2209015271771504 1.7714986174811105 3.1233329004181556 3.4635574937970213 0.6472325160180086 +1.7595436670894062 2.5411565726234357 4.180013207896935 3.1253959149853316 1.3126828895835987 +3.039634039200935 2.3221771876204325 3.37020801691839 4.151616521097491 1.0608221265995668 +4.88659809727282 1.654930396942666 4.49340423137545 2.4751851823731634 3.810102919228414 +4.933177353601536 3.217651765509549 1.8865164436525843 1.274257220091425 1.8215074526979218 +1.0179425662040513 3.9927760133981365 3.2201058690313227 3.7326764658286273 3.0186690204866427 +1.1075696414885732 1.9866199363465666 1.4310844725497245 1.1596893967236475 0.9199916891323352 +1.4224103985188497 2.1075700322559485 4.77226398008474 3.097603831152887 1.809400546623995 +4.7823873474142085 4.42624947693769 2.26482741769528 3.5688356620047346 1.351766135104211 +1.99113884918959 3.423869757722456 3.9818012229341218 2.218900458270554 2.2716815274850486 +3.3278710546157306 1.9616393764679994 2.474036854702461 1.346558021842203 1.7713829390965399 +2.3495314462130694 4.997753295698299 2.9427374530359756 1.7421922027943948 2.9076430079995363 +3.4180751141121437 2.5979944232027123 2.138760872354777 1.5799368178339668 0.9923792941781724 +2.0804670336554403 4.568180430065198 3.2855828164687826 2.0408835052048624 2.781725061564756 +4.9001364109649295 3.429890197991257 3.244221881294478 4.579506486460281 1.9861039508435152 +4.042434280233318 1.2962874283066634 1.286872509431289 1.380690644710202 2.7477489650355413 +1.8991576178737084 1.1258650740483818 4.84118589428563 3.508286582916621 1.5409743452062472 +4.175533292962644 2.886527708554042 2.0589538583923686 1.748562906670375 1.3258498932939002 +2.0792107973954552 1.5773589223594215 4.414413013895874 4.333350674997354 0.5083565749204797 +4.517494935478999 2.229597620546225 3.2634059950271177 2.8716764229204528 2.321190681813855 +4.319169230945924 2.1071328342509354 2.514899610507467 3.3220187826336995 2.3546860466561323 +4.293693983088534 2.2992972145612214 3.1366711446812254 3.546224497017409 2.036013855238219 +2.8597904274068044 2.620101015684507 4.591184386502425 4.928718147899571 0.41398074130892415 +4.53140906240262 4.072947877535363 4.627659701061276 1.2720663482002093 3.386767397946789 +2.7683145491872803 1.5123353456556896 3.0259135345306563 3.8602206567423236 1.5078302735642903 +1.3178601273766009 3.0105426133149007 4.099538807348484 2.5538030153424858 2.2922637581418663 +4.126860528427747 3.1139112096891046 3.4232402297959594 1.6737687030352735 2.0215629956247825 +2.9799128701697444 1.532150494169612 2.6436279223675836 3.226563098637773 1.5607143611483512 +3.1920949801589913 4.72723950080159 2.574003506025049 4.223140627415226 2.2530694495301464 +2.687186418604185 1.3024332702489092 2.711922550825927 4.846235769548141 2.5441765264014653 +2.1940382907940577 1.144624718218095 2.3996197036128977 1.6562495462460767 1.2860280079260393 +1.0239234516777604 3.4054158193286295 3.880821670827341 1.5570910678068146 3.327345760902146 +4.979411947646977 3.7452021241792965 4.016126615896741 4.7460483852957 1.433896676119528 +1.365123805087558 3.8259945690415815 3.389571904858128 1.1963975976810923 3.2963462285605147 +2.902618915784916 1.7722341972144129 3.8887510113046964 4.819076870932848 1.4639931069067829 +1.5053472506879686 1.9086460589170167 1.8710887032527173 4.972294367030598 3.127319378919744 +3.066714639837679 3.469644110632406 1.208945349109627 3.2488353862124106 2.0793036146522987 +1.5913863911119792 4.876717430274418 3.2281344786631294 2.3260361905461036 3.4069313697677885 +2.467979320814207 2.6784706491278247 2.4692369092187896 4.714708187999616 2.2553154686484174 +1.6193422040614847 4.109921601533578 1.769351061637138 1.8526827871389093 2.4919730960802045 +3.9986963900584964 3.011343615921946 3.7436304247207572 3.158529204188397 1.1476972330992175 +3.524737744947465 3.1921290816138805 1.293378385395441 4.973623281850389 3.6952443790373657 +4.040377842355506 4.166981767210145 3.22890871413962 2.352768539534147 0.8852401704319048 +4.777697684658183 4.209874782628181 4.297556727519165 2.585819754027666 1.803459540574063 +3.4195260233388294 2.563637992305292 4.280820041983212 2.6107274716454225 1.8766335591062921 +1.2850668596234356 4.203549481715957 1.923152152274147 1.6944676825494076 2.9274284623452926 +3.4549403814698763 3.1102126898707203 3.6086034080907825 1.8947164258797304 1.7482121636539971 +1.6261390026379097 3.5415949890700573 4.723107801869811 3.234757700157337 2.425728274400553 +1.3635749255676584 2.2740417107552036 3.10266805476567 3.831760221956696 1.1664155156671445 +3.722556942441282 2.7333189200363144 4.2545018569782425 4.906102510822926 1.1845569961223943 +2.261074273814848 4.223095936341014 4.399841632445742 3.3121854427614745 2.243328997534789 +3.2292652419590673 1.7352375957899122 2.7773196693533126 4.888138370241585 2.586053788214274 +2.901811933137627 1.4539623598390885 1.5612370318742768 2.355429017857488 1.651365888439239 +2.953345119400227 2.98207985817949 3.285948525725542 3.896185897433116 0.6109135250109299 +2.5870196216628463 2.4631727016223217 2.922931407300379 3.381523795766935 0.47502109254535724 +3.6754819473974756 1.3449502138265124 1.2204054649390366 2.417857847946718 2.6201660960236954 +3.270424890485453 1.925134990281344 3.9602991477991862 4.479782820931963 1.442105475422205 +4.784375716494486 1.738559171051612 2.52715618328987 4.291203315295947 3.5197813444065567 +1.73057792006156 1.9190523039864478 3.0359279468642515 3.81301172208775 0.7996135235921605 +1.6887518758010756 1.7001921530287532 4.651018195898402 2.0355402301966494 2.6155029858546186 +3.9172602438531907 3.8241282317120864 4.886927789662531 4.993259641776348 0.14135074976598253 +2.1752459626453864 1.2337880608525644 4.0318755429931485 4.4061172760870715 1.0131139401060898 +2.6349847655041447 3.867921774343514 2.015431370467209 3.6817965654488867 2.072898123597032 +2.661633012203046 2.1706222587047814 4.229468773172324 2.3432743511570733 1.9490564275290696 +2.1848896487676552 1.194073942322381 4.017786448218764 2.871986048042337 1.5147852392940424 +4.033521671911098 1.9127768096473945 4.022784198872074 1.8496390811448262 3.036464798663022 +1.8883414606147277 4.593802222012304 4.0289313094884625 4.2400984917566165 2.713689280357835 +2.580614052426532 4.3292133964264075 3.679656210365435 3.5408687211557397 1.7540985243132512 +1.403207294185215 3.7336992665752127 1.9359280017623233 1.7702534743897003 2.3363734466891986 +4.0350637403099245 3.137940214293757 2.7000551591723645 1.762791283947096 1.2974182797902798 +4.1904100045875055 4.285759133727913 1.31372343847073 2.2212890121148083 0.9125605332753215 +2.196742907618919 3.96272062203905 2.6654619584363086 3.495875746276099 1.9514774779287047 +2.014374025047369 2.3546636756180415 2.468722077629542 3.7561961273632365 1.331685576637064 +4.1472641393615355 1.5111430100422272 1.8836997177955652 3.735074126279581 3.221291947159283 +3.7310853999794125 2.677317365252239 3.5781718537363782 3.689951551092893 1.0596800327239744 +2.435310233420735 3.5788918032029833 4.349953497822934 3.3429661807031343 1.5237461283251104 +4.820797674680959 4.240303506714497 2.652246727271651 3.8405460853460975 1.3225085419169198 +2.335342640309701 1.0758978255972518 1.835203415812643 3.0275674342282652 1.7343394113374482 +3.3339265192113885 2.8430363081479584 4.714140724315671 1.0748182991689568 3.672280070132677 +2.393504724064113 1.5771806174556446 3.666000984452321 1.8011904848211353 2.0356579394792305 +3.417394794806203 3.9955983388379592 1.7179021616071588 2.804610011122534 1.230956249640585 +4.548714879650827 1.4112730075680018 4.175262253389706 2.3253011115335807 3.6422380107670342 +3.6399308153835426 4.33978509850909 4.84615347601361 2.3691203608008933 2.5740025391342547 +3.950452699688177 2.3520828301944094 1.6461750392506587 1.5478483315942064 1.6013913891188751 +3.110272942327892 1.5855341721980194 1.636733515536399 1.7738482020116368 1.5308914900750996 +1.2455738731294783 2.1185448967397966 3.561814072685985 3.8387464752017917 0.9158438532994715 +3.657898282308877 1.167317102151864 3.6976527991944095 3.5431529526726573 2.495368673668792 +4.6760006704533374 2.713174104405376 1.9255733370451296 2.1846966393577714 1.9798568165867554 +1.726885384541931 1.1141020876768595 4.098886140762193 3.534803456285151 0.8328821308226348 +4.490255263002036 2.3170222722485083 2.9302889946694477 2.148734569399256 2.309495388988456 +2.284588838127354 1.7931904117364432 3.9321833759566323 3.243506353701645 0.8460191808945349 +4.273378230339764 2.53881140424161 4.900174374480582 2.0843414622631395 3.307209860853585 +2.78806963037874 2.532123471915753 2.7068587883584474 3.6674562606751997 0.9941106275728543 +1.3014976706569645 4.887848483653267 1.0194080554285945 3.514497568145065 4.368911057729026 +1.344953738549581 1.336245464333429 1.040428973677757 2.754133406051462 1.7137265579949175 +1.6706878374139116 2.688420055224018 4.059500641440425 4.099819265108545 1.0185305388564299 +2.683025319312641 1.919102201995622 1.2347401571910797 1.6530698332410325 0.8709639757391865 +1.72731206897988 4.893370671239249 3.8473995049952863 4.877483748057562 3.329414456138757 +4.932605612480787 2.5838792060110163 2.255830138653834 2.4247659670461945 2.3547940560828273 +2.4395894935541547 3.55881449076323 2.0674367083698018 4.043004945081204 2.2705802016842864 +1.3063096166704944 3.6094351282675583 3.4597109140249245 4.278487008710229 2.44433660026547 +4.511576981046861 3.3153046645200743 1.339890976737347 2.193947524935686 1.469857150477157 +2.781135447813788 3.655383721388888 1.1713410230334618 4.169946973615722 3.1234512467327518 +1.1849598019922714 3.777337097878618 4.464856840519192 2.371001923961379 3.33236379403875 +1.1257293443037275 4.522781859305141 4.999823261566981 3.4635620518810053 3.7282789989569243 +2.0935666079840454 4.776952540948249 3.45217374005302 2.481280380761297 2.8536282134060382 +3.746011971693811 2.293413638849752 4.6601121349386245 3.8265578840072014 1.6747700158013294 +1.093877383636538 2.0163794998056668 3.199722929206622 3.0025392420176398 0.9433406388097371 +1.5015498521153008 2.602347764407059 4.998639801037618 3.3192921363155214 2.0079752545072496 +1.2608351732070098 2.486116284670024 2.5885302510098045 3.7399154026814236 1.6813689570103039 +4.616271461586836 1.8622217330726736 1.6565506726462251 2.7536587022865633 2.964529631464363 +1.8521881464091203 3.1804410632371205 2.667853610257666 3.0023725179315193 1.369729429724498 +3.927364039039116 1.342349847731303 4.800356437798671 1.7906175177739576 3.9674710756317193 +4.572959342833844 1.4684749613831558 4.087919647645121 2.1558995229204125 3.6565728540550837 +3.4960415839105425 4.9219058477034405 3.6502714398376925 2.721202500154337 1.7018395909855952 +3.3159745149932696 4.994146992071029 4.073629004637475 1.301544353336333 3.2404808557991323 +1.1199379336221322 3.5556509878553935 4.292586222823656 1.4750776199688094 3.724386232619194 +4.159883728457954 4.371716020477486 4.569486870769885 3.5211331052765047 1.0695412743631718 +4.418392001370411 2.87433538799995 1.5662054792710367 3.8427167339807204 2.7507479561226464 +2.9729060072786453 3.1618480508848172 4.107003852099016 4.58930817556198 0.5179928148856352 +2.047025845493796 1.7137437681678027 1.4001404020936183 3.9290048366891197 2.5507317129852667 +3.0075433906469593 3.7321900241116577 3.748766934707154 2.4249785550251453 1.5091482424112084 +2.532354378317591 3.6533018425872648 3.771391300483713 4.895474159378432 1.5874777136431042 +2.2228393013848926 2.7840192026310984 2.678722789851563 4.8155966390975635 2.2093330960165605 +3.531934567051951 2.6891912175863517 4.310875760859771 4.686049096412448 0.922481102667268 +1.5766786097139325 2.842881039536463 1.5449808811582062 1.8340879570941975 1.2987884718631975 +1.326277223519217 4.818171389743428 3.6133654733905485 3.0242019171724426 3.5412481647134313 +1.1312863989328497 2.476198460468921 2.4055712244433227 1.6221918521565835 1.556429148464385 +2.0141628373907188 3.360292439124871 3.4559617999444954 3.7670568604468055 1.3816095835415603 +2.8578500842194146 1.7475561471576326 2.5301593634834973 2.0376143854120605 1.2146411742154735 +1.1978788804912872 4.545550421173781 3.677229485255177 4.562332560579128 3.4627030190652235 +2.616615558957799 2.6576055435440966 3.9852884118473852 2.813927814566125 1.172077568977197 +3.122468160104632 1.0061191265524854 3.537689870569642 1.294059615145331 3.084284350521602 +2.4712959537764623 3.805081042057841 2.7186483977940825 2.4209699114230543 1.3665998474205652 +1.1222389645452755 1.054487638971291 1.493721638321793 2.107892058110092 0.6178960646095485 +4.130129656012433 2.5528478446622676 3.5721536164095617 2.9640766762841753 1.6904364754489627 +4.91619833313495 3.2408977254347153 4.081183383761509 1.8372764770680088 2.8003125418544927 +2.10777668218178 2.461110714387859 3.858769962149648 3.2968553958187754 0.6637717364951745 +3.490249649146172 2.3687438214386405 1.518673864787686 3.8432710116136857 2.580993455360461 +1.8923181114977137 2.2070155091536137 1.1340201845890099 3.1194679915196337 2.0102331820306367 +4.662305536950122 1.5179148509940603 1.6360665303867732 1.949777706398637 3.1600011847912297 +3.2694780325543893 4.316852539793802 3.31636158781886 3.694022742128315 1.1133828209063368 +4.474319101655061 2.982351401064468 2.0934369718400565 3.5481849129716405 2.083808818445724 +4.519047861745978 1.5435941831530537 3.761640267768779 1.924193771112006 3.497075095208625 +2.6182822720584364 4.210338464330434 3.163056625322638 4.335057361081814 1.976924035963866 +3.1675115485736054 4.100955933318086 4.090122020824346 4.681793292719448 1.105166645079813 +3.8604970135693835 4.1113816970855135 3.880682060769294 3.506402814205957 0.4505863722206963 +4.849148147033501 1.827595694202369 2.8999025585447886 2.819957009443301 3.022609884856293 +2.038802998819093 1.457775783008604 4.227271699333457 3.9740259684306967 0.6338186063322551 +4.387538716753601 2.697815541167552 1.3453470208580405 1.7046294429748037 1.7274976899998127 +1.048264280384641 2.7774870413245156 3.3935373067221972 1.9145433815884974 2.2754415807783137 +3.341914025266328 3.460818950908829 3.3565554513986524 4.113760975189939 0.7664845638381016 +3.4084878672695775 2.4702493118108877 3.252377494994768 3.724779658684842 1.0504548496762118 +2.8596795104454746 4.372436292109642 3.438666579809053 4.552461990738502 1.878556173735145 +3.3267686428433283 3.294598699948313 2.1755014760844653 3.400041170310018 1.2249621904205363 +1.7564301153738504 1.5989769524960455 1.5032803469969993 2.941969103747877 1.4472791152025963 +3.478465946227636 4.620628988064583 1.4815734882998166 3.696901430023929 2.4924314039752065 +1.8225551443493124 4.1349367978348734 3.5128724582212176 2.8321552692992435 2.4104947215603794 +3.386700127699365 1.6081031714177483 2.688760188870284 3.59321448361256 1.9953557838570992 +2.40579325351946 4.561701090258966 4.043514894064774 1.187992480397852 3.5779808349778763 +4.526022799394752 3.5435232813418307 4.6136562327880615 3.1799640564181844 1.738038710604116 +1.8762046445972413 4.8178910293116 4.481366802961144 3.877312217541901 3.003065222098888 +1.7625649348903263 4.21172882025852 2.3928871424717566 4.8698434642477135 3.4833484404201807 +4.628053775614939 2.8370119336269406 3.3039971021331107 2.259141739897399 2.073536497808631 +2.1274035109640925 2.12511000917849 3.110032751494729 2.714953936354643 0.3950854721739775 +1.248504374910901 2.9963441789367735 4.511373911049908 2.6480289094025635 2.5547991262917997 +1.7547016551023842 4.7853088402668025 2.7295492390561 1.1574762410780073 3.4140874947402895 +3.8942418449663694 2.477572237591583 3.2831698050464793 2.856145659421178 1.479629141848203 +2.46380500063268 2.678361354627667 1.3395881299100574 4.864229446449207 3.5311656488041527 +3.6929909439042223 4.2875195711109475 1.236812727864904 3.399157973807965 2.242588069891765 +2.5736893234873928 2.186757677749355 4.709340348424272 1.6831534207766925 3.050823400254207 +4.551800334248885 2.8231550693732927 3.1493332345647524 1.569531518650869 2.341791603320256 +3.3200957107377396 4.4342167183686385 4.848325886345049 3.937152929114489 1.4392712661735358 +3.123423747956482 4.220332820017807 2.1312786220730695 4.270049453899186 2.40365350735929 +3.1488259239272405 1.6238412695598456 2.11126838034405 3.133347160704992 1.8358167744413258 +1.7651593254252855 2.6435262363514727 1.9658841489714831 4.202747822975794 2.4031411790175947 +1.4800343559458629 4.74254755726939 1.8712387712436138 1.0929945392916807 3.3540507559333 +2.726731102446605 3.58681280851521 2.187364754502787 4.108104383775842 2.1045144961662476 +2.643684413459263 3.4403778711885 4.990229213756737 4.274261843541902 1.071134791144846 +2.613961880658179 3.4424392004796824 2.0558635341277 3.1772187036736654 1.3942066151493053 +3.8065586750845846 2.88942646550569 4.542590696106572 3.893962651027506 1.1233208939168526 +2.9774035071033516 2.217990004689158 1.1120771884648954 4.089759356807583 3.072995275511338 +2.754762442088403 1.931780069002449 1.2298369545108958 2.0079408850185185 1.1325836450706854 +1.2835397699191358 1.821128023437022 4.201867143050803 1.7175685117489428 2.541798737077487 +1.2506198206531471 3.0928228175051946 4.5465515380619905 3.5311947352432838 2.103487893628316 +4.527274831822062 1.786158885387045 3.2652736810369465 2.408588093500964 2.871868177283249 +1.44990813196873 4.444931455968569 2.934279581130239 3.9153879153043105 3.15162470397236 +4.269468584409481 3.2914179799511234 4.402679664344777 3.9640884864209394 1.0718886165241133 +3.7291162470626156 4.092153796021538 3.5583455639942647 3.0695543785846966 0.6088621230526604 +4.089616532270433 3.649900941014827 4.436982876459898 1.3875813696217594 3.08094130925923 +4.253852087996794 1.7285417936568757 4.06030592072753 4.850581598974735 2.6460778012613773 +3.213457378720212 4.362007623329925 3.2070613910096664 1.0324315656464043 2.459305296573096 +4.452769929579963 1.1665159997333832 2.535191956925151 3.257954451415059 3.3647957612421835 +2.1045794344574698 4.338884188009929 3.7643104505719833 3.992350055466489 2.2459117954958865 +4.360305734408346 2.3746468407921646 4.63453197058621 4.553129992371392 1.987326728007834 +2.681055209303351 2.2334020952655296 2.741333228541007 3.1282012809109614 0.5916588547907319 +4.173155521544933 4.524142184311408 1.3649505633071848 3.8350873385330995 2.4949483613420598 +2.0892875845750534 3.5886162313720424 3.1575282960042665 4.57744304469586 2.0649804562411727 +3.6951839013043557 1.0544528900152859 4.171907558768595 2.847038293330025 2.954443914595017 +3.592290258095821 4.600047239540549 2.2267273982096287 1.8933732647033348 1.061460838644706 +3.810294226661787 3.523024476007695 3.626957606246879 1.2447031089852398 2.399512533695994 +3.8005508439991584 4.506553449233341 2.0427643043582697 2.178400413343668 0.7189136475670436 +1.0602455820402028 1.1326143652422327 1.3551074944816621 2.6672696455040805 1.3141562887868103 +3.9183828348965832 4.658817651166611 3.5470642020805316 2.481779072236312 1.2973342379710966 +4.061189455629974 1.3477743055032803 1.2251945292529354 2.0489103339289443 2.8356885413969772 +1.1074342346099249 2.8547502143503407 2.8396049593003534 2.546649139802786 1.7717043334692446 +3.370100260278659 1.243140124392614 4.577961166266777 2.269647772370395 3.13883260848517 +2.9164923666074025 3.9669876060753997 3.3117901994020094 1.645661730624436 1.969650812356349 +3.275943166852481 2.3892976704847473 4.419673345233958 3.598932500437885 1.2082035302653924 +1.4389473985459063 4.890975381704431 4.850294647990961 3.582568427427533 3.6774484315641387 +4.373529968693539 2.1180932078957704 1.6281379137604461 1.9524964170745753 2.278640695816283 +3.3506313044920084 1.3128509154218433 2.67144444895833 4.134219251931222 2.5084375691436565 +1.5421767641559665 4.130993671650619 2.8522447056608566 1.1674973756495932 3.0887451410743254 +4.710257089744088 2.672053855016995 4.97180252585899 3.124166286123949 2.7510056525631184 +2.219578493722002 2.9808578450989685 2.846961997846103 2.301154686136346 0.9367240107677215 +1.9837893444762207 1.2726890225529943 4.931526645274098 2.9195732832423635 2.133921272875388 +2.0890364400563404 3.056140486426361 3.772948221322907 1.198943643379884 2.7496890376507865 +4.493130817525877 1.7801784073021638 4.292223852288126 3.6107416208990557 2.7972359235212325 +3.4065832507389873 3.865994665290712 4.264937384236572 1.8320619395498903 2.475871922612282 +1.6156317241479958 1.1221436029902434 4.40882805547909 4.276907280687063 0.5108166173349662 +1.9887576325172422 1.1814063872405978 3.0854124242667567 2.1398310603901534 1.2433584153253983 +3.735695361522422 3.0003222193649925 3.181836887692217 1.1539056658585212 2.157145961379155 +3.5949081945680317 4.134150564906623 1.7302802286035233 4.779264296327611 3.09630201679418 +1.5672425802403023 4.069701051975613 3.399676605812965 4.43982737255846 2.710020667877105 +4.618134330376804 3.549536864228292 2.9500119684780657 1.1073184686431192 2.130122033826462 +4.849934907157195 1.2720451827265133 2.7534657482578853 4.694621623260694 4.0705504555581395 +4.021646751880347 4.97715897864372 2.0377894113473443 1.2400130410403092 1.2447693571560023 +2.893944031162973 3.7292137953526496 2.995188185521539 1.8342669738971726 1.4301795826290016 +1.6408990800619083 3.779395615458955 3.870125816499472 3.261656153914414 2.2233764328587156 +1.2513853234108092 1.0715827686183785 1.6901741763102764 2.797136613506516 1.1214699265131114 +1.4621994582388163 3.8615878695470207 1.151745802264002 3.174172966526694 3.1380370270389966 +4.026642197159049 4.573813978768127 4.833555625459429 3.1149970839099024 1.803563256257481 +4.065739403640256 4.283714770899168 1.0213347462592308 4.356218606809613 3.3419999437598857 +3.283822824392561 4.683135894621801 4.3177202534416175 2.9933413972832725 1.9266697753257216 +2.0584156843266426 2.0111849742249652 1.1754762863383879 3.594811221851013 2.4197959149830357 +4.352761777398027 4.491634677270907 2.931595182190011 4.94729525655092 2.0204782780563804 +2.7999383007569003 3.5781931867359904 3.061910442364662 2.2620712397370606 1.1159854020596702 +1.902309380751754 1.5132559750380232 4.243814404782997 3.72330438602129 0.6498409283268983 +3.885457397554043 4.897249077046448 3.916930176698656 4.2363069451942685 1.0610013774471554 +3.0578883861577277 4.903799485294357 3.690231373028862 2.502638142569857 2.1949408800575596 +3.9642623020184744 2.1662216472841607 1.3431896259611555 3.5128477390611437 2.817865597188411 +4.153442675905037 4.5211047196697 2.528936795035652 3.71590255340471 1.2426033518246449 +1.864154578256985 2.6441722471478113 4.2670964044722925 2.720994845969353 1.7317209916690095 +3.1865858126511437 1.591721594500573 4.188392161684661 2.343429987012494 2.4387450256859737 +1.3441169488652904 4.136361175145691 1.7017870787563192 1.9399267788718624 2.802380833499857 +2.447855772243161 2.539751103831063 4.5162074901236515 2.176580892953619 2.34143062381807 +2.476908345971411 2.900865683757024 1.5088086876711126 3.3186944388543242 1.8588776873689894 +3.8258855010640485 2.0321765557180065 1.1993933274460007 2.0792631999925018 1.9978895798390375 +2.2903256488243935 1.6213169935778313 4.018673231831469 3.766612580106589 0.714917584720634 +1.8913771047487415 3.307181687401203 1.167804588898067 4.545879087219674 3.662770799882309 +2.4801582043066195 2.807492202772034 2.739085667734623 2.8046798360478253 0.3338414915316202 +4.237484518864622 1.086171564418137 3.8945026559244744 3.1173238532542475 3.245732618097517 +3.596289840773654 2.9573918172573417 3.3181745588939573 2.9715547932238078 0.726867213737337 +3.9576318797738415 1.3438730430206625 4.6308800403296395 4.855604228849746 2.6234016500740696 +3.0711609486648177 4.948372341435065 1.6860490173050522 1.9632244442790276 1.8975639199944274 +1.288472228043458 4.537723403343474 3.4283871617534682 3.652797141511786 3.2569914091387564 +2.1615243799860724 4.483798786180486 4.335649672187397 4.388292694873579 2.3228710049210988 +1.8287623749608715 4.985337088507066 4.1879222517813055 3.585361910813432 3.2135716713194 +4.499255785277992 2.9478098866616036 2.2038138484778553 4.135919966421342 2.477906057002215 +3.6559925295657836 2.003505620098612 4.384152989075066 4.709832503968611 1.6842743637488693 +4.771307130303827 4.765652764588969 3.4757422621731693 3.8247937797626417 0.34909731276987954 +1.4964914265441709 2.513609479226809 1.126676173545547 3.348305373014642 2.4433921979548465 +4.357631613911241 2.183677369262859 2.444993776477784 3.473593587211029 2.4050144757288234 +4.9640554455810335 3.4143515180372277 1.51187241312115 4.861532854991017 3.6907732711279526 +4.291411318396893 2.86219497751514 1.5214020225600438 4.480171183099699 3.2858749663375755 +1.6164468751786796 1.0825566364229293 2.038280704176905 1.2726423740671073 0.9334028281358439 +2.1806871123035454 2.727053357438192 3.4754053894791967 2.387828526783532 1.21710291516103 +1.9005903368599144 3.159647712666982 3.704050152746666 3.5949689165861414 1.2637737897489754 +3.753144609006826 3.457770909302679 3.123292488883984 3.3543499699222727 0.37501090920221886 +4.685433252531118 1.1668407449350102 4.4979576343107315 1.9386222040389418 4.350941401484966 +3.126614375456603 1.7196940670931684 4.992898106427351 1.13460719004062 4.106803324918034 +4.385927030010057 4.367739737312769 1.971289371426919 1.4041383723677314 0.5674425374868292 +1.0146238371360772 1.4093525458174874 2.9245479129793868 2.695899274017931 0.4561698735736719 +1.9894640497122533 2.2069096301364235 3.8852251368163158 2.888750456480747 1.019923707438884 +4.300805523453802 4.282779557608125 3.221280350896061 2.9801006763973117 0.2418523740549017 +4.318801381042968 1.138712239405649 2.8917445548852427 4.101256104592924 3.4023352476844284 +2.5541801953092076 1.2207466851499795 1.6326800877596046 3.628604353820235 2.400366347428081 +2.5290586770808416 1.0091335430182586 1.757190834892612 4.387346642307026 3.0377445554935867 +1.3511864879344366 3.4373865097230265 3.231453617722259 2.5987766030400867 2.180025397975413 +4.749543380482821 1.396252331938177 4.148646010430278 2.855952483166887 3.5938304650718162 +3.767238419632648 2.662850819714419 3.0233842458422866 2.7338440607442975 1.141711649077701 +4.670247693041116 1.716662608650597 2.4054553895372415 2.4929437150192904 2.9548805488259253 +2.8109374465137016 2.942369252514122 2.8307476247926604 3.8554780126418784 1.0331247201621598 +2.5236305787536417 2.130258947812324 1.5538818060709758 4.309613333341474 2.7836661959405307 +4.632429765782467 2.640938769662023 4.797067996042072 2.561665487168149 2.9938371305581453 +1.200598590563338 4.241810117224376 2.4393235431572218 4.270367433306616 3.5498858119028824 +1.2288484864174678 4.729928185090138 1.8072143031644683 3.9337738995103706 4.096317220781218 +3.9360609759667304 3.6980311901997607 1.7820632909043819 3.9332292880401676 2.1642951106874193 +2.852596552803251 3.9031531079210686 4.710678374043786 2.3385378862640196 2.594363037291629 +4.03491183331435 1.9114729500730272 1.1809049510126175 3.326186541751269 3.018480709632466 +3.5625612145384906 1.4820979242864767 3.8620186667144427 2.348506722172955 2.5727506502488713 +2.639390354538892 4.057036363317064 4.207677462085394 4.837140689324439 1.5511106216678656 +3.004084191892604 1.3238280104768894 1.8120555515674166 3.805602924445048 2.6072000236063637 +3.1084975787489437 1.5023582805984725 3.2879919526914296 3.4639303331889617 1.6157468114761615 +2.3096694995724554 3.8391313258182955 4.7726215840254085 2.5229280840369612 2.7203629025983886 +3.181548712194452 3.0388907328392634 2.0757496011077126 1.0278813875157975 1.0575344401625966 +3.9556266903136774 3.891875815191681 3.740863098622469 3.411526589362363 0.3354500117908063 +4.718628503667279 4.030057806428404 3.3091047856342914 2.566399742946525 1.0127884209102451 +3.6020074986552553 2.7961563282337596 3.2212854262654202 2.7121923777000143 0.9531903487590048 +1.4054042937195859 2.676343379586226 2.018081842125542 4.594239409761649 2.872607521620785 +3.2806184467126394 1.5312466013019863 3.9917043088061885 3.6772771292302773 1.7774043728908557 +3.651234367533062 3.1240911157341062 4.453161477158991 1.1621127638040853 3.3329988961282537 +3.7204934759597115 3.385779708413317 2.4510365046858658 2.4673270966650565 0.3351099663873549 +4.68309724337843 3.5118739958127696 3.641686771917029 2.722885757672018 1.4886098210800285 +2.2575045656004415 1.4980618480872305 4.443928704186126 1.8138540472150306 2.7375255144793584 +2.852244327913094 1.608653994769747 3.7063218286903887 3.393409458924452 1.282353721810061 +2.55410402349509 4.23977201780465 2.7768999049123035 1.3185601864363519 2.2289529653010023 +4.889439554736627 3.08218150780037 3.868224144458724 1.9111582440085808 2.66388599360419 +3.786453677621991 4.047490936511967 2.6864448858301766 4.244808547310381 1.5800752361678165 +3.06664190864765 3.6953550856817623 1.8433499346013957 2.99642790112204 1.313342703125011 +2.184640201315372 2.2051220469160366 2.4535677820200266 3.4289999762566468 0.975647206500627 +1.7117552962295024 1.3990514941657732 1.7269191018807777 4.400754634758258 2.6920587149435113 +1.176532411801615 2.915718698414701 3.38441879855058 4.594446786104028 2.11871108700683 +2.7036245953349693 2.2573500881610284 1.5134351797168035 1.441204180921745 0.45208213074647796 +4.602949939390019 3.1506529128854655 1.4883862187796169 1.9330257103604391 1.5188386782891787 +1.2052264711279004 1.064529067483873 1.0984308028715755 2.0614768874306257 0.9732695003834692 +4.371467247702174 2.1597592083518893 2.9901185993870065 3.5646848878193436 2.285121193969719 +3.9149862163474918 4.018175917909283 3.6069081178246165 1.1885681975044684 2.420540453023347 +3.9599637078773613 1.0441356597829214 3.4431012036931006 2.610818299235061 3.032284293912321 +3.055537885897547 4.7705088901611274 2.287707547203364 4.50389121862554 2.8022483135766376 +3.04511207131809 4.2972002179060755 4.066778344675534 3.6548638051238975 1.3181040606568863 +4.087055762310029 2.6750594958817304 3.656182789052263 3.3376508674469885 1.447479202437466 +4.772234663336322 4.38901977208038 4.275742449148655 3.4236055532091765 0.9343398430451701 +1.0222092746445113 3.9589905698031793 1.1055601289602408 4.509416621797968 4.495656058844735 +3.0945760631759427 3.747003653888821 4.763952111421168 4.685115529038018 0.6571734686102798 +3.422798753626692 3.849759460235721 2.1085177600629974 1.9235695793775847 0.4652969745516569 +1.0190336879843365 3.49107353335853 3.788850884892862 4.754936811172325 2.654110588139257 +2.76669466555967 3.8569913574407932 1.9994534792746346 3.4722213400122968 1.8324279107099168 +3.2006900587047458 2.330284202907075 4.945399233049926 1.1472714719207175 3.8965857931870627 +1.4993470351704326 2.4914336908400054 3.880780362574115 2.403275859657281 1.7796784789666804 +3.7545289097441534 4.6768441523178 2.0437550645210982 4.51606747610442 2.638748579753787 +3.309659175822018 1.3721693876733445 1.2042738080053152 1.340609241553461 1.9422806258677332 +3.6788753459273695 2.4151180551824556 3.8489605541550436 3.1966072123141105 1.4221980778084178 +2.2456641384732334 2.9740251287627855 3.576187975575381 1.790066534298604 1.928921858231745 +3.9683739947010683 3.7525791511502455 3.4545313785394494 1.6989435104918322 1.7688007736709925 +1.002624140699404 4.840917451875658 3.0407437522417378 1.0219854767992849 4.3368053354154315 +4.459547126261447 1.035008686737259 1.0680315858820113 1.3024339645444258 3.432551237622151 +2.014175880862168 1.0430645766469313 4.252912140295813 3.271622505974454 1.3805747033757951 +4.832223559432643 3.4645351357218215 3.5668967483753224 3.8258526689597603 1.3919877130055156 +2.444957017402138 4.129265874490355 2.160706746384137 2.47761268724964 1.7138628012246677 +3.116334847282797 3.809210361644841 4.806508358890312 4.933918535295365 0.7044926056773297 +4.026362708109518 2.3872637795477316 2.6905447970300327 1.4996696864151313 2.0260377160098604 +3.164757198844952 3.6160804983140014 2.7244387428159125 1.6918303161208335 1.1269307359040819 +3.427819944221476 4.19389796200104 4.743612509990983 2.0014654300394494 2.847147017175578 +1.2583120739941132 1.6841782536668441 4.473201082805783 4.227488209602152 0.4916673866009729 +1.9225375546049301 3.4525538203527937 2.066577551423261 4.107144984242237 2.5504637267239194 +4.516866954314207 2.708166463611402 3.5841618341773267 1.7095546428983885 2.6049087482411504 +2.240493220314598 4.090682544739467 2.7926803281638466 1.7097489699076291 2.1438145588903925 +1.2458166225576215 1.2707036120016206 2.168690174330344 3.46990007645392 1.3014478751098837 +1.164424947662742 3.1854158976747464 4.640705950614569 1.005838587323559 4.158925963364648 +3.5753093162025555 2.2117883199438517 4.826453554444097 4.167949260630736 1.5142052080906874 +2.169438452089455 2.999634140487925 3.406004858345803 4.015421821394053 1.0298611148530474 +1.1284399392637678 3.0038390214591137 1.0736260091214977 1.5022403564983309 1.92375465594665 +4.523434463511752 4.278165144049819 4.4955144044295725 3.717858400229867 0.8154176230234247 +2.19283698131854 1.9304503983239591 2.5088143273759536 3.575731467389591 1.098707833134201 +2.00625538896882 4.964329244660573 2.118642647712631 2.0139122976886896 2.9599272595696013 +2.0167922438359014 2.7933073176127334 4.8970593945697125 1.5374688677190735 3.44816243351545 +4.291811205703338 2.7940487115174713 3.0465359671610477 3.156355788723595 1.501783234091358 +4.8178891586475 4.173929685423079 4.6452465837306365 2.3664077809030135 2.3680772986598866 +4.597655972303541 4.455759294607182 1.7792331865563646 3.4867979349321145 1.713450331067931 +4.047105562342205 3.3474924290741144 2.9461860040638466 1.8270482042635163 1.3198211815178293 +3.3027316485808402 2.3314914076274658 1.338180824618564 4.1960604272124105 3.01840743249965 +1.7622280371398138 4.911941618886329 4.344100657172243 3.0392630513041925 3.4092956493571998 +3.277768557712951 2.1740826253505556 4.736151078249922 1.2441069802495557 3.6623072808919024 +4.523677960692025 2.7354495024601873 1.6280766136799474 2.4527235534589713 1.9692139533623876 +4.078082610464259 1.7406615211140544 1.2450642731875554 1.9185202399774108 2.432504941031766 +2.8330110338972876 1.0527104539880008 4.058902686461709 2.7957801702755316 2.182876232341596 +4.718519451980111 4.720432205894685 3.5392285710611255 1.7281178489402977 1.8111117321713104 +4.918230206366864 1.1446282993935424 3.716306922611437 1.01446090696721 4.641125213196179 +2.447365092705945 2.1627426611850646 4.807190203006546 3.5872549570742582 1.2526978617339177 +4.416499180557706 3.0645194330070535 1.9251492565673307 1.80725470217957 1.3571102990329909 +4.880712082642378 4.559132061172482 2.3767584361254044 3.3449255259517567 1.0201770552366913 +4.478352509900281 2.847963206838326 3.911428074386423 3.7644677333867476 1.6369992734774164 +2.846120897384688 1.5622043937157866 2.555061616850085 3.302401079745353 1.485583340373055 +4.726377147328511 3.5139133756988503 4.7569538153754785 2.8968734169375083 2.2203530093585524 +1.608334113107197 3.0557583514917077 3.476313409137137 2.0088237270082305 2.061204233698781 +3.076743723455161 4.543517259938048 3.897939131421312 1.8503657878715027 2.5187261074881206 +2.7629449846427376 2.7836088152528227 2.144195430799162 3.695822091231388 1.5517642498973692 +4.9985278425600566 1.45501725436392 2.666293392075081 2.844549965263593 3.5479913605507893 +4.11055375091969 3.4183307451974536 3.892962945104 3.5296342650861865 0.7817802884280306 +4.04881374994658 1.601989841905814 4.334387098007762 1.0560321054931818 4.090789495183682 +1.318691622710367 4.967978501522438 4.241251572556826 1.150619821786972 4.78218562403601 +1.0547430821982493 2.950152876999533 1.2811909202031289 1.8674185179144507 1.9839962415657526 +3.6921290643362408 2.2169163886077574 3.4069245995710027 4.860757120829349 2.0712028965068563 +3.4041895020079402 4.131380159426607 3.0762147220381566 4.012132959467859 1.185221160539464 +1.399286358293367 4.640961476955233 4.205417043224855 4.107566626244875 3.2431515966810096 +2.430351265975697 4.006151833251734 1.7118855681381402 2.1485460327965673 1.6351818826122049 +2.663741462490164 3.8197067115958947 2.631447577311975 1.8564250818245527 1.3917311254878315 +1.3786584149899235 3.265073070753217 3.8389874366451893 4.574259337846723 2.0246444187004946 +3.056149563061838 3.245396068487582 3.2825142378818652 2.164009470587846 1.1344016723697583 +4.488685130965442 2.6850699492989696 2.8787686819947487 4.594147974379256 2.489086949119969 +1.2906442183677718 1.7830176849250634 3.13386624738582 3.5142219060653432 0.6221752628152121 +3.831488121479616 1.8910227863861921 4.779365963912136 4.637791226690831 1.9456230680474866 +1.7035041741665538 1.4627073813760894 3.019230418567479 4.4302694177497335 1.4314377920927726 +1.068889872918474 2.4111062285509868 3.510786328941923 3.267389700579098 1.364106544235389 +2.34306731650196 4.499802210095478 1.3215949686085273 1.296793088143358 2.1568774964096713 +1.0557622514550205 1.5942995976866299 2.7588926261032216 3.294585127522839 0.7595978734589712 +3.1565580875961534 4.076925574137801 1.27438950090293 1.3988190491609114 0.9287405572939496 +1.9580264108270145 1.1286959121039852 4.574654477933573 4.526551969635874 0.8307243390058574 +2.2907613007502845 1.3209744253094335 4.2518490517787715 4.929556420451222 1.1831203917312327 +4.512703632422352 1.1135440784553738 4.761443008376961 1.0914387998905402 5.002321117604609 +2.5399928459379497 1.1739842030287897 4.672900138499482 1.874106680958727 3.114357787807217 +2.867563674704873 3.8877590883429276 4.3207759574238604 1.0166993566426732 3.45799376312883 +2.5772886531546484 2.2693145616804626 3.1404358754058563 2.892639289098103 0.3952862117569064 +2.26921686590276 2.516703730347237 4.831915548299585 4.518048774194112 0.3997025143277623 +3.962688850962288 4.197743787871681 1.6249740697440203 1.6247859686237254 0.23505501217270394 +2.7256498792830697 1.9984700211345117 4.306388054825483 3.708667061483604 0.9413080962036603 +3.6315900994976102 3.2028977774453193 4.774602781757812 2.2750746430405706 2.5360240580928766 +4.327802344498943 1.5062056959512242 1.2406036387688255 4.094751728819121 4.013423596760436 +4.182811404448178 4.454712792679937 2.4102030846361506 2.2234477639447956 0.3298604473544658 +2.6307604629674066 2.9734345397678323 4.023822362627612 1.9151278967802088 2.136356214025763 +1.7867476785798262 2.5962298747804775 4.13227860646716 3.499716445816521 1.0273248332698062 +2.113586880068059 2.5522500396486265 1.9496630029668256 2.170829626834998 0.4912637205070735 +2.1869604506633236 1.964796389863276 1.8097056784802885 1.8851397720355858 0.23462133829146173 +1.3219215185401452 4.899602249154685 4.222516661314881 1.9087232538397676 4.260685313736029 +4.9466904429614384 3.9737448741585077 1.3070744922105244 2.725642999716154 1.7201626929857559 +4.048089897272725 4.956621796667587 3.3893575212849836 4.935200729969818 1.7930592399736995 +1.8727810938790546 4.182097550053157 2.275709606849898 3.484101320668213 2.60636778463464 +4.243977078254593 2.3662265625740266 1.2607669654189242 2.514478449075185 2.2578174158665303 +4.240227572545717 4.514875662792814 2.7458226525210296 1.9126900508757139 0.8772351482930163 +1.9958835485297879 1.878489292432322 4.455867195757678 2.0982975319945893 2.360490654686157 +2.5693357437024917 1.6160393705677194 4.5030070794699295 1.9594715273944319 2.7163113002201933 +1.1177171613838448 1.1664201399027925 2.0222655323458754 4.411374329822008 2.3896051611708726 +2.4765259579716474 4.93107448749243 2.099020979104802 2.2153151864495566 2.4573019404286853 +3.959396806736131 4.014504157723061 3.7555794866343204 1.1000946001669907 2.6560566263521577 +4.682111938103846 3.5841918143900577 4.371568062413843 2.9171344791074554 1.822307780344791 +2.050957671279016 1.3797445684486664 3.699420629806938 3.9230952944685087 0.7075008021356664 +4.29651682505733 3.7864483066072214 2.8760113817584267 4.997473169834549 2.1819188829516616 +4.810884160630662 1.5177332973235935 4.170474684182736 3.7743031651761267 3.3168953075085286 +3.690613298323019 3.8133527210100766 1.4937061522581194 3.44108317651161 1.951241205097907 +1.6269737805628441 2.50356418688292 4.200186065155994 3.6282565701867235 1.0466680885878774 +4.671931302257152 1.1589212736232035 3.450812140029493 1.866787351414957 3.853618298719791 +3.1691107172280644 2.730307674322924 2.375150138027766 2.7974055686653427 0.6089727080631246 +4.162602093453653 2.851486264336686 1.7338775871956602 4.415226884501785 2.984737638641816 +2.842065963929161 2.177390323540139 1.9262757326698372 1.6829331426046727 0.7078201205576028 +2.622104596589177 2.28768488282398 2.7458064940538787 4.155680412790214 1.448993102705374 +2.803712453790117 1.8503944205512615 3.934668984718165 3.608492911013349 1.0075743662657806 +4.748867123033341 3.677296601920589 3.859608510269439 2.2936377056460278 1.8975057161048943 +2.089250071068433 4.872646133992589 4.314682857184267 1.2758847593336333 4.120872179842797 +1.4322681821966015 2.8965572677976814 1.5349983264073597 3.138790734369249 2.1717026992769157 +3.8060630835558986 3.177249420497954 2.080160664878615 2.19372692214449 0.6389866333795483 +1.7083452397866128 4.736334375072307 4.275573251646406 2.4146571119491615 3.554114106552278 +2.102798176089025 1.1040973523244713 1.143074693927813 4.68835511901284 3.683261683328931 +3.552545785388678 1.5266334636752736 2.00662935581711 2.6023432558252098 2.111680796411488 +4.521807489355544 1.1033739128753455 3.890735509785848 3.848216065665097 3.4186980006920096 +4.565515242089513 4.6885150995561435 1.3223045736174157 1.3762897329282846 0.13432558342561274 +2.632284130156048 3.6355796503521285 3.8521479908841316 1.8479125033993813 2.2413303616688816 +4.1152425770358105 2.292620747211286 4.949856061749047 2.965404361529617 2.6944385101643507 +1.2107865188548614 4.27295689162591 3.051863961247438 4.822400262925157 3.537186196319809 +3.374990557200484 4.402976862358276 2.6532744848240597 1.1528462790082137 1.8188019805354645 +4.0099781244399075 2.1689200320403277 3.583423683422984 1.8877579766977979 2.5029536728740713 +3.7080561556478915 2.55741048482778 2.4349543652627155 2.511072960031823 1.1531606567372508 +3.3026139504232854 4.2951758297088265 3.1869838038860685 4.319802971763631 1.5061402163549238 +3.6424221060687314 4.047811628539342 1.3211200052544418 3.3169942093563067 2.036628219270322 +2.3073559373446013 3.327344293076463 3.1704022412584854 2.4267339762433147 1.2623069096773816 +1.1656854645405534 3.049781734628038 3.8079790183981435 1.166399427140571 3.2446512126738822 +2.171242439708405 2.154086968927347 4.36830636479049 1.3136071507872806 3.054747386971555 +2.7757797492876053 2.197529121089562 3.9679643906703843 2.94657630581596 1.1737152162658624 +3.2247662653758082 3.4415873331839824 3.229658292660198 2.5000721101037104 0.761122442989842 +3.9004985844094944 3.850691453967035 2.6195506256879533 1.871612061715664 0.7495951211953307 +2.0908971809662145 1.1770852352931431 3.944152654996833 1.5346025416003846 2.577010675380225 +1.4683192489775831 3.8893372113751155 3.0645794915841766 2.8562018373882667 2.4299689753204032 +4.991599089524652 4.731149817354627 4.185127560028139 2.691891799263939 1.5157792915193606 +1.2817066923391618 2.4031880272555584 2.75031705746428 4.029162440567022 1.7009308917322488 +1.7805351035829573 3.444966421842199 2.4961508780547788 2.9533655862523682 1.7260871654103693 +3.7213548063744804 2.790810499971645 1.0565126973278214 3.583511406200741 2.6928860319040866 +1.4514591245306199 2.373576580713353 2.5462220133534066 2.4824556173578594 0.9243196180192085 +2.5124165268552594 4.639818930833336 4.605737641912878 2.900511463855982 2.7264697516719725 +3.00995604025527 1.488854222308139 4.533750651526967 2.378321088543277 2.6381105627979524 +1.218195648286557 1.8472540746625579 1.417321724813414 3.943080916000041 2.602916440391119 +3.2366782523380317 2.3093159642160868 1.5353241665529644 4.851992074504966 3.443876714557226 +3.4078917546999437 1.8509614418460827 3.6399299827081624 1.4991806888252204 2.647043546741069 +1.2229606313889936 4.004742472716348 4.477463004649 1.0108036378626748 4.444776414856654 +2.1263337283218697 1.5309749743638017 4.054361958355967 4.020865738686851 0.5963002956955707 +1.399963010400811 1.3229289176180195 1.6614108945420432 4.899617644492476 3.2391229070344667 +1.2750188137635479 2.290325824169995 1.1228661365151562 3.6223740684835675 2.6978488147695527 +4.104240908479911 2.1226656832706317 3.418159992951873 3.8984608857935172 2.0389529962281343 +3.077397992450771 1.1406043503647423 1.1386973072358506 2.3634999965570502 2.291573965595112 +1.6659867999427562 3.4849279720452935 2.3115955745277597 2.3316193066422826 1.8190513839409668 +4.135786199522222 4.370294730696505 2.9877448620826574 1.5277950922981542 1.4786641205788904 +1.4739411414791848 2.8790389314394416 1.6528547133694809 1.5030000894130104 1.4130662432003438 +1.0809380983492578 2.630153925008762 2.2620766800345335 3.7159780485530756 2.1245938122267938 +3.2419890807955056 2.067666753447028 2.595980669516671 4.529416486263295 2.262124440871419 +3.6414765223450924 1.1651950479553705 1.9100026154158511 4.001461943690218 3.241322579169127 +4.979077652957981 1.8537888008147871 4.712974564560888 2.8542065393771403 3.6362685517953723 +4.652692636311266 4.630002619023081 1.7402491584068644 4.935764506457538 3.1955959031942625 +1.3248600307547682 2.5799863245802857 1.8364713056473039 2.874783265872823 1.6289363831038766 +4.057685217815644 2.5126870802676025 4.386131363738764 3.9427234036808794 1.6073673706000167 +1.5550742019152444 4.532674806176429 1.031577175915681 3.6879404582315853 3.9902846071593308 +1.4165337847559845 4.926750707584764 2.4511371414262833 2.872715646419322 3.5354421620478695 +4.151602289843137 2.2977805271050116 2.8479705015984136 1.3575727552116277 2.3786425898895147 +4.2381484052023275 4.089509703015709 1.7600266450766013 2.657686167308454 0.9098824548485592 +3.0682467160042863 2.676976272816022 1.7674232694409837 3.1252102748843122 1.4130386094737477 +1.869794627794099 1.151386695599725 1.1648536202241782 2.313224087443286 1.3545717725616566 +2.8775001179424637 2.561782710344096 1.07525109657462 4.027173022854277 2.9687574067800213 +2.9478392019674513 4.609957121403565 4.305097951033064 4.923911892824741 1.7735745466899293 +2.7991976562822756 1.485143881513408 3.930646425519985 2.2267120766088433 2.151773591338909 +3.7554140582085225 1.8224724843833089 4.939552406556166 1.5153234356086407 3.9321250200493676 +4.638687053690275 1.7593684289585068 2.0732299483013916 4.283198901687795 3.629660937010376 +2.2071226248300158 2.167391124348742 1.9842510916674487 3.1878084700473166 1.204213002414072 +1.7587291032628793 4.100065096898934 1.922866430518817 4.635823349811508 3.583572167688802 +4.599374417777366 4.3878137296056074 1.4787605629222877 1.6706784569949278 0.2856403382664728 +2.97506995272431 1.2954657852571048 3.828235252519749 4.500960478263575 1.809317381977326 +4.389863195429775 1.0886349863499056 4.295869095510936 4.000605736431764 3.314406151882927 +4.844013993138745 2.5370784996862343 4.626913015116146 1.8839163107046755 3.5841292235859976 +4.683002311521111 1.6799407413805203 3.68819790316567 1.2453597952882043 3.8711544551146018 +4.628289045108024 4.533611634547948 2.1910695505246407 2.0258749302306778 0.1904024018872338 +3.570454330801585 4.237122397556557 1.3089420232035351 2.662052877674987 1.5084280876857452 +1.7518724852246708 3.56557686251979 2.384142372104564 1.9161090032522337 1.8731200715861056 +4.838304948991274 2.3925119156945613 3.0236585018482853 4.201878458788892 2.714793883272883 +2.9071062944357746 4.705974459882567 2.093361303024187 1.0947971615603596 2.0574394331973176 +1.0491958106238415 1.5411309091662635 1.278413479174671 2.564372799044399 1.3768411359113861 +3.419791843224794 1.3721624076106282 2.4808278789040834 1.088017464466804 2.476430325318791 +1.5245187769785709 3.445325975039358 1.9886022265900056 3.3261291357261578 2.340614988584291 +1.804025993423573 3.2014012881121663 4.070500683955667 3.1309249223069107 1.6838825155229429 +1.7520214607844231 4.1297665585169945 4.0061537630831054 3.012213079318432 2.57712821424039 +2.5600848207639113 4.7878412802847095 1.3094227815411132 1.8713558530256695 2.297535118287577 +1.2469619965700547 1.7627527138605301 2.422574827067901 2.1973336828044414 0.5628264715808379 +2.3753115328367334 2.514337975518849 4.046479355554196 3.969636920851195 0.15884933596313378 +2.244269194849037 2.3482213829393754 2.8118318796625483 4.906573603172061 2.097319466752829 +2.0745764053588416 2.573205680615487 1.2245232216168045 4.657115593040286 3.46861954421318 +4.7266372004369686 2.213994951171785 3.7337946947586222 2.9178216555304095 2.641814352587957 +2.8923053545058304 4.457454718626259 3.6429996921414145 4.85025333824093 1.9766521945013888 +2.4411916531945455 3.346468406891058 1.8924367777249116 1.5967082336276506 0.9523556964586193 +3.027682897115113 4.455343613688825 2.3890984376606434 4.758670652275789 2.7664214432952714 +4.124951692228276 2.8134748887960797 1.5312970957082102 2.9158423423214597 1.907075495584817 +1.713746663744037 1.7987735208599611 3.1820060636403587 2.7046202096695686 0.4848987729438302 +3.2567638690893266 1.383204108552932 4.997151728225071 4.681108668676857 1.9000287870950239 +1.8811249313055227 3.6372281002051325 3.89907017310466 3.8303964238278674 1.7574454255136867 +1.132699297249462 4.443565204317563 3.432436388232373 2.277577123222579 3.5064986776790383 +2.737163942456542 1.3303400344416576 4.162014922569869 2.8931960100346896 1.8944801241948215 +4.374346854687711 1.999403023411551 1.1866699590086984 1.6427538831822264 2.418340494555349 +1.057740274977621 2.3088817173758303 3.8619290091516496 1.34420989436278 2.8114523737491126 +4.78423600778034 4.568448246002367 3.118652606315438 1.7191605001219137 1.4160305481984254 +3.8555936051194295 4.3022962224666905 1.6288861289763465 1.231872244862696 0.5976313684236301 +1.6227556894142525 3.6211491862907748 3.461530038857197 4.340994927713968 2.1833540846803174 +4.754152202131585 3.0943374145939555 1.5359761522512878 1.1049624690497595 1.71486382084279 +1.6513462766247642 2.0351655581333468 3.1049133864994145 1.9431536331945414 1.2235207253074074 +1.8025456176188448 3.1530653356310023 4.747265357361215 1.7711616315267693 3.268194745676167 +2.036698503616899 1.4486435855826745 1.7242348478079563 4.040859779856005 2.3900961617497454 +4.176097703116621 3.399961718196076 1.1948718000981873 4.747559260098198 3.6364784140057687 +1.188387989074693 3.07439232793171 1.8087408702113406 4.537133369864843 3.316796345625245 +4.892439466611984 2.570008749118182 4.584714941912575 3.2799202746610185 2.663864403690037 +1.7780656436193896 3.9497110258930546 4.638608206154908 4.17475205344795 2.2206319363538465 +2.848764290388895 3.9109110452011024 2.7507131728357943 1.2470740247604457 1.8409471519798888 +1.6127081039192865 3.60388815315608 1.3643983570928562 2.2598128498852827 2.1832464593768055 +2.9195851852007477 1.427558021391508 1.054201720614461 1.0852878503329926 1.49235096576024 +3.010980067455202 3.637567095163837 3.5986874836492917 3.8064270777044156 0.6601265350150148 +1.4911907189231397 3.816324676119286 4.804976709372161 2.368256002958017 3.368064090835276 +1.9851840665251044 1.743138289654227 3.2064689067143504 2.072092492159602 1.159912069080718 +3.7763006101955088 1.4237751120483257 3.9552556466920796 2.268764057699712 2.8945863433614574 +1.6947877413719792 4.942295600280998 1.148739345876352 3.5924995194120792 4.064267594467078 +4.451555250802775 4.290344320367354 2.370481163341481 2.568105879548502 0.255038217817957 +4.2280510947537255 3.4651519344229422 1.3604511663274161 4.92695833464234 3.647189124582813 +4.745277892793383 1.2458546347266628 2.4900498121207115 3.9898423434020707 3.807274717693175 +1.8771604774806474 4.700743716232214 3.3398864162838313 3.9609304567681702 2.8910755794997645 +4.931355206873347 1.3217344413019756 4.494828405529939 3.9416760075413557 3.651758432131645 +4.973095435164886 2.384930608890226 3.284467512107402 2.348608614284924 2.752168062564284 +1.8027878763907368 4.468192283895306 2.707061848544358 2.8999172036545384 2.672372325021245 +3.8118373119154323 4.575345600095233 4.185642751157031 1.7704505054602184 2.533001873231298 +3.736258921944581 1.2752313632407613 2.3356789627816057 1.9998792086862696 2.483831338788963 +3.4152110859175875 2.2699355610017764 2.4527498086313324 2.848510178411047 1.2117269899855179 +2.9045580605088945 2.0246626261289165 1.1177435058330034 2.023277849960818 1.2626196671356429 +1.0355987754719131 4.396081152954192 4.7976294179856165 1.8666185388916934 4.459110514747968 +2.637048588256603 4.682179141967076 2.2395086495218073 2.883739733009321 2.1441997739603464 +1.8631788407227199 2.2542110442910523 3.549762319336685 2.3151406420736076 1.2950663574486831 +4.571830392963264 4.880425052926139 4.854237588851859 4.7332010639399265 0.33148228387103773 +2.395400550943912 4.583076768967904 1.765673187257014 2.3676410704138946 2.268984920016026 +1.923855119683474 2.228393240761975 3.6969343573262714 4.922218924075838 1.2625631614714161 +3.18470303047525 4.592205827715256 1.1168253249333837 1.1223722523149045 1.4075137273369014 +4.975781645971227 3.7031816694446706 4.380208922931201 1.2441285988114297 3.384451284859418 +1.8843758715606302 3.402292391722284 3.0861062959783983 1.7237019270552856 2.0396608116646378 +1.4717572376478105 1.1657023884763453 1.7256680222917198 4.9127500493590315 3.201743496590077 +3.9178080062811698 4.353683833345658 2.528577188956436 1.5503496981880618 1.0709419967085712 +3.387267193362032 1.5067850242719705 3.3061254446268267 4.257925248909031 2.1076375532091154 +2.7021271839189027 3.8181038239567187 2.4460031212346265 4.361770034364005 2.2171077390490885 +1.7941567440126556 3.327432056179669 4.106645441893526 2.5926950108077023 2.154757315960617 +1.5714069388511622 4.49407309369151 4.443923266893233 1.11116901439302 4.4327450141202025 +3.9177361012373035 1.0655476967325583 4.058041213525076 4.651290498896716 2.9132324674466483 +2.0666034406484792 1.7948926136636656 1.783141865477703 3.0841774776811253 1.3291051266631642 +1.3846734473503517 1.4561478307313251 2.7356271705121515 2.0545660107783545 0.684801351325795 +2.2707758862510112 1.7608066769326953 4.872905699099346 1.2675964778638282 3.6411980411917453 +2.5893684626999662 2.1103288937594913 1.4125310751573137 3.34625818087886 1.9921795672109741 +3.005446665759108 3.0684811765458226 4.458163046922759 2.8899547524201834 1.569474626904429 +1.7424769822444222 4.38887182658083 4.491242217753207 3.2225808454542793 2.934775519472268 +3.7678197244105958 1.9052232016399366 2.041362340874199 1.1187078333743878 2.0785949934624277 +1.283060038725388 2.5447093344853036 4.488668437245417 2.991608781898879 1.9577912445298624 +4.906817187889883 3.312857627617609 4.395025199072453 2.5309409687326725 2.452655111829797 +2.292422805687134 4.379328452613828 1.7247984873473587 1.984087550407541 2.1029517344430784 +2.003604408144619 2.8555547966078487 4.084432851841209 4.9407728057716245 1.2079476731631194 +3.160762315953365 1.4452448107655642 1.7701536312887662 4.931480960049695 3.59680285672936 +2.820268282639472 1.650617924485997 4.858159493915727 4.10972280622073 1.388610613460955 +1.2017572728055308 1.5891947727747802 2.5875338705622757 2.2397573639862602 0.5206306895570404 +1.2623237808403451 1.9490594574721505 1.5990466442455231 1.7757989468657196 0.7091172442131731 +2.3659768161070263 2.212989683885087 1.3311154333448494 2.99231348892508 1.668227814924878 +4.882365263802731 1.6358254763473243 1.6118882949287427 1.7670369803398338 3.2502448686392515 +3.817449607889286 1.1298732239418436 3.9031891717204332 1.9476333950339821 3.3237426517833413 +3.431635020219443 2.5470014846570965 4.331887008368158 1.308128006461403 3.1505071010638384 +1.4639508532852235 3.0256379157288937 1.824896616716667 3.818993780883459 2.5328422732460036 +3.2128494335407 2.7475831853843395 3.175770200325432 1.2111485431339006 2.01896283709718 +4.791208349082724 4.389084833558092 2.9003315323936234 4.561610737180835 1.7092547844005936 +1.1933443317185546 1.2925805766630911 1.4423494950139863 2.98618308104827 1.547019706945638 +1.6911098469608046 4.731681970544134 3.9354524464358294 2.9449991444198043 3.1978237259402658 +4.078112348324096 3.218163532166636 3.3764365338239197 4.944467818663391 1.7883607233010734 +4.888432864875018 3.6089162245450015 2.4574102657901618 1.597789559511689 1.5414637821058632 +2.5507921923053503 2.2694767796640205 2.080364649903684 1.0004960737265516 1.115909720006233 +1.4534936036253954 4.424475579965323 4.801425137392062 4.5558474809036635 2.981114269715778 +3.2513381991183805 4.51992742923078 2.4643756005142725 3.1446490713962354 1.4394758177694278 +2.8233017089738413 2.907581246909056 1.7105658683713103 3.989866127138552 2.28085788906959 +2.0565111114533674 4.843837153821369 1.9126869871123802 1.3481528241753855 2.8439207597234204 +3.5850855346754535 4.241350689846184 4.667887595867521 2.121622151919609 2.629477450927184 +1.216049884286471 2.065923171434858 4.788873741547295 3.701875462720404 1.3798006603785304 +4.862910029634114 1.849710752694051 3.7505110149363787 4.189070613164473 3.044947356482556 +1.2439950166084381 1.3417040584389324 3.989621310180443 1.320089875694065 2.671318988171636 +3.549578857316954 2.3064112822190244 3.443288103286296 3.2480882698978286 1.2583992191390427 +4.3724602786805224 3.5891938390979785 1.9838412167244148 3.0252134344521533 1.3030588671397403 +2.341105040535261 2.326455712088258 4.970907138304558 3.9946875845798466 0.9763294627831446 +4.226330109802956 4.237967314913426 2.5950270554613017 2.1649764805869984 0.4302079979411144 +2.824240094814048 2.6372273412050906 2.746317560852857 3.9111152331266155 1.1797149602114787 +2.1996324265509775 4.47673437077953 1.2696963969420905 3.330973360356626 3.071490840668893 +2.7465943029482816 3.5598409972732257 3.658825424637786 1.783784339665357 2.0438075389246007 +3.830076782561922 3.880034867740229 1.8683726618248628 3.9969649705845467 2.129178486455648 +3.2208184770293538 1.5490896913714667 3.329750329189542 3.412860911501563 1.6737934465427438 +1.9438088326936835 2.986791749073288 4.046152644171832 1.2447343250700298 2.9892738185818426 +3.562626809368284 2.3175165931625616 3.482414515388931 4.3040765616377215 1.4917868375695 +4.83254900677336 4.582322336997375 2.4529601707069535 4.449835372001961 2.0124919765837963 +4.054809065598856 1.2883672681527347 4.28286232782995 3.3500413766801778 2.919478574259604 +3.555402865060962 2.7280769731690313 3.811055573964169 2.2763949518895674 1.743459594123472 +3.911876416400277 3.9446318949878365 1.9268875524308742 4.006239233293214 2.079609659066465 +1.163935705095943 4.383725649901117 2.716294276413652 3.7595661588387173 3.384592074287128 +2.383538853950129 4.257725865967107 4.837449505025024 3.455928690962167 2.3283420529857777 +2.8109870956055634 3.4208943752576264 3.1068715514839225 2.9402431724148936 0.6322593664658135 +3.837132314917826 3.9068879519280264 4.138199659905969 1.5618860763505924 2.5772577538357795 +1.8878418096719303 4.70034022680877 3.2331792634644807 1.706556035077988 3.200113408591393 +2.3357224419392417 1.1228148228811117 2.272310391114903 2.330918306650577 1.2143227660439784 +3.6430572304153572 3.3968294187715986 3.734995241706211 2.956767738754919 0.8162512980551255 +1.590425763215067 4.251024120781812 1.079951139827163 2.6407522112566686 3.0846204960841384 +1.7110787481015794 4.918756508352789 4.886308893451503 4.930248185216745 3.207978689918474 +4.598858144733526 2.848144302401924 1.405510913077073 2.6406188940620896 2.142543040973592 +1.7115733084211033 2.430358964351959 4.77820215459521 2.444409533408185 2.4419747783052457 +1.9373632836702623 2.6543287302047704 3.386976238482522 4.690879338109602 1.488019739365555 +4.904898785743242 4.786365904529225 1.2642295364840428 1.4104101229186243 0.18819885169483505 +1.544852049890205 3.34418788722621 2.3422800133521675 3.9358061567928133 2.403525540815092 +1.6185002036484994 2.3523819793246674 2.1674075430448196 4.407784598457962 2.357513904750355 +2.9323888663754603 1.4980560670355079 1.0125696354642 3.4633793415276055 2.839679347144142 +4.412621434262965 1.7877753558533023 3.3902969799036895 4.890701891493437 3.023413936937055 +3.068136188352753 3.135400354562682 4.950079811054156 1.272744602877181 3.6779503397074182 +3.8311602156017472 1.851524728558044 1.7156765892449433 3.327257001355004 2.552674692603739 +3.8348643255646384 2.685075018154973 1.6504824753171565 2.2161154141283594 1.2813883380543918 +1.246032219643884 4.9208895186630235 3.295208190130004 3.7940340616833317 3.7085581319813743 +3.071846361616802 3.103139666610708 3.828734635929457 3.3272733153268828 0.502436789057011 +1.257409121602472 2.3176277472053353 2.0789801616136074 4.130429442946106 2.309222312371602 +3.917604428093061 3.858254798268727 3.80183618571601 4.779236449726082 0.9792005180999673 +3.8399981349171 4.889141980533964 4.928285572381363 1.02514471074932 4.041684227464766 +2.8019367598744376 1.0013312076026675 3.429881669210594 4.990494711520855 2.3827910992575103 +3.4689286999091906 2.483340085799021 2.4597253910441017 1.5401158278636138 1.3479861516190041 +1.4815907026639406 3.152951733910471 2.5940607455603497 4.1214369547682566 2.2641390816872935 +4.086631185322565 4.708071921471804 1.5377642876507167 3.6434472813651486 2.195470213545126 +4.9994357622374785 1.7545169667447458 2.556275841043722 2.8036768548562367 3.254336376433369 +4.4393095698106855 1.5220160743511948 4.476994657158066 2.3208054261635898 3.627637432063299 +3.867846348867337 2.471943984692078 1.0449774851668772 4.890193381926812 4.090749161584634 +2.3399604378983763 2.1744124650327312 3.0869628893615064 4.347209093784999 1.271073021932156 +2.8698578048862813 2.9530698637346835 1.9731312084593098 2.5505579871387707 0.5833917478623855 +2.3616320678219975 1.387859680886475 1.3332276357201311 4.681996603257101 3.4874756285165245 +4.304989426652795 1.9451168097604485 2.2109270150631497 1.6334423401615634 2.4295035125935756 +1.788510619623795 1.3489362284665232 2.295056567469458 3.9784716509389626 1.7398597611916673 +3.619620099192065 3.2330317268076647 3.2693533614282035 3.8427549852710934 0.691548980108049 +1.6583720450319284 3.501199723250923 4.801469708070763 1.3883845121394032 3.878809663581834 +2.5575694096491848 2.0325367204620113 3.7155005106982415 3.121405493909842 0.7928481655953576 +1.451218041223631 3.718156704735963 4.925613879920854 3.453096970914511 2.7032049407021788 +4.179007112009234 2.778306387995539 1.1997107096881554 2.214248954109352 1.7295231619280886 +1.0471534040377346 4.80192172247744 4.95980999816067 1.7862038821977246 4.916305615442956 +3.0064625230666935 4.098938581345477 3.446700323057918 4.8834637766230085 1.804935777088103 +1.0979186356412298 2.6626522770448044 1.6217436515791581 1.5436414209061047 1.5666816291053511 +1.1946590579150334 3.4054844915694047 2.834258170514947 1.3974880262493645 2.6366754721705856 +2.256858810129604 1.362563202794978 3.628320887806738 3.0806235523590044 1.048683462516004 +2.898336424421512 1.6730467740912354 1.35487379794061 3.7813623236350002 2.7183048564377446 +4.4577946023020845 3.62278772385817 2.6114124158269925 1.8321923840447085 1.142112229590172 +1.5250846487882082 1.1965765751878497 3.0027731223148995 4.075366351984542 1.1217726109839607 +4.825342292194727 4.941983901523291 1.9577333307004983 4.133079259444943 2.1784708340328516 +4.583827175427847 2.727174286039343 3.5655153014099805 2.1306467308130475 2.3464883904595744 +1.7292639260088105 4.749378058480376 2.3669916681964747 4.4000019566825035 3.6406345883986386 +2.314036471754563 2.884935340899391 1.1153756547860785 4.697735676170343 3.627565139539621 +3.979390553651447 2.8709987734947977 2.3782637990838382 3.056715472537053 1.2995495417760314 +1.0709048338866278 2.6414398864106525 1.5549969374193342 1.2356338022761788 1.6026768742622783 +3.0693307435134187 2.907656252267273 2.7030756132920524 3.105209058405786 0.43341659958836387 +3.5945052230205383 4.805963394838498 4.25852418725123 3.927200781282928 1.2559482877120975 +3.6607352013007617 4.6638099869175775 1.1762417546357065 4.395782272585832 3.372180329143562 +2.435026090479872 4.642493438323001 2.039651326034697 3.046699682855528 2.4263261291032396 +3.9892068088168937 1.3348320534354299 4.1401327247802975 1.0445871583401871 4.077757679891416 +4.192073326020764 1.9264028910161408 1.835416374687107 4.568557019930802 3.5501155342801396 +4.2034270194436925 1.9009755800142814 4.204704015970355 3.0475417515768752 2.576879340804845 +3.7032309677267383 1.5675457067720884 2.5023701799996174 3.6618286129444924 2.430122505468791 +4.015284509001303 1.999487488539926 3.513513043600539 2.6823079458851566 2.1804448037428057 +1.6377796195594376 3.6512920595000007 2.771341734586843 4.848960825793185 2.8932219814491362 +3.6267208897309495 4.430430216753799 1.4488330001224403 1.345383745994218 0.8103397006954599 +1.2675794762298311 4.6363663636546715 2.0175199183410806 2.2329408077029154 3.375667526943225 +3.9255472938616713 4.879759904642576 1.402387933875112 3.9166137849686424 2.6892105415679706 +1.1750094332414753 3.0182287246979644 3.3578015206958614 3.774275129301209 1.8896845300372551 +2.268466201625229 1.5863654854800577 3.6220551564960504 4.635914489206089 1.2219542272478947 +4.826261304617828 1.631137964343218 1.8211468033420277 2.8085403363639334 3.3442127845908765 +4.136036973676871 1.8370244990166675 2.562396332241038 3.2048432803335305 2.3870895332510242 +4.047991468798104 3.811013427161515 1.7620185191723534 1.9275176923987392 0.28904769252933005 +2.545683964121833 2.8067007950200007 2.9390147304897147 4.433154080419822 1.5167670167239549 +1.95463035894536 3.1497195950118244 3.497013689187659 3.086382222795903 1.263667869083079 +2.3154409876038184 3.656439177082784 4.499884118812547 4.259598592308869 1.362355782618114 +4.229259632410127 2.5194376909650416 3.0324658180887627 2.253602467026129 1.8788611420420498 +1.7857497120392 2.1768634381373184 1.4426138158046662 3.9118023045296058 2.4999723477658917 +1.5378313780571293 2.111767015899541 3.8254727947037552 4.890842502474716 1.2101300469873306 +4.524880184845896 4.746158199099778 3.162515574370106 2.6583733830943093 0.5505663526011222 +2.938774343785884 2.1465858246233958 4.630914209782583 1.4500589524128622 3.278018123535843 +2.8978798730528466 3.230134999407397 3.965524373961601 4.765561453836651 0.8662867874808406 +1.862534289037701 1.44629098061018 1.7314455342717485 1.6863869266308074 0.4186750170875122 +1.9176318501891498 3.8348771695537383 4.1279233471804035 2.2155372744661643 2.7079605066796697 +3.3076367121159254 3.0449074816673645 4.951439425084926 1.053336386159926 3.9069468835151078 +4.71377637101116 1.7436612561955696 2.545964105976989 1.7084942244833323 3.0859260518789213 +3.6126651540259824 1.31887071171851 4.415249147033773 2.045331527529298 3.298181690992539 +1.743871269497033 2.6595616914771756 4.405658458258555 1.5917080402175143 2.9591900756963083 +4.353417235131561 1.0489326013673206 4.88037679211298 3.671706240460346 3.5185939233188397 +1.1339972069749025 2.124204732596033 3.465068094397874 4.071248439765887 1.161019188001303 +1.6387470067222942 4.559647101228347 3.547739097861252 1.403191337773221 3.6236366342921387 +3.4330695218556384 3.2124064273262216 3.0153429612096243 3.1127740590724535 0.24121571283408247 +2.62049297257725 3.633176947160808 2.2065357792575235 4.129056207735577 2.172927433278385 +3.578339914036667 1.925256650555884 3.998615607389727 3.5702025850067556 1.7076949357972542 +1.5782307815853827 3.6927306781151263 1.9166847223916563 2.196119250751399 2.132883838389688 +2.212255839092266 4.54527238360319 2.722550124943614 1.9707677527278484 2.451151348272084 +4.593556468873857 4.414601059302728 1.3639370968235718 4.435629630292089 3.0769010479345953 +2.2002686262799847 3.255721187917147 2.238537065659805 1.239632929963323 1.4531997736643039 +1.5877334418117388 3.6292445578197583 2.8448679323561974 4.12030130997094 2.4071763411761213 +1.3922878154728102 2.7203448129413905 1.6916765769428022 2.258840077920363 1.4440948117649284 +2.0121240694789493 2.448788992036768 3.3367358729507393 1.3400530039327605 2.0438734633098727 +4.276367795055942 2.4873965115810215 2.1589274694925478 3.481945311923946 2.2250380815819164 +3.7978490353948584 3.598823871826898 4.607600155135448 4.5481252518906015 0.20772164030075738 +2.322125149482583 3.614367333373211 2.8178771199184265 3.3627854711534066 1.4024318069239745 +3.083605280364358 1.4668695269931913 3.5389868574915293 1.2543792640792328 2.7987973045766923 +4.413647218321492 4.401288433673638 2.7443873073180223 4.369412958286105 1.6250726463337613 +3.2274330910960938 3.1580537033508147 2.636624941264082 4.887394803340358 2.251838908864213 +3.5468242038632507 3.5882338947667645 4.054831972384919 4.352393856380781 0.3004294215084318 +4.725897570911916 2.951598706320074 2.387350331066433 4.5442800211987855 2.7929343259493846 +3.7084261527475326 3.3864323176544837 3.609324214331072 1.5123985080026396 2.1215035818256176 +4.570078591845435 2.276827792382146 1.8711412223129362 3.487919125226886 2.805881326177186 +2.242740039849211 4.204606637843158 3.8623348005349767 4.706366939019942 2.135722547317382 +3.455986642410768 4.081521179614758 1.9976140939043727 4.10518336822644 2.1984407436411506 +2.6974319104120146 2.3471772683684917 1.1932825011764727 4.375784260042604 3.2017176264403853 +4.085891282886626 4.068895814655264 4.500776466973486 4.683704377171501 0.18371572134636793 +2.732030630900683 3.814176191220523 1.952909384595705 4.476461238286788 2.745788224169454 +4.490437064614958 1.2411669757792456 4.690852901406222 3.923687180569532 3.3386073973184263 +1.831183520948958 1.8040361782831682 3.476342738891095 4.485438693811524 1.009461056430899 +1.5161493000490687 2.9863853043918587 4.3085244969457595 3.9830655592953192 1.5058278216856023 +3.881973609261083 3.126801631159314 4.491342816310354 3.6894015438052508 1.101541883478446 +2.626517745369135 3.960117761670546 3.16163069253686 2.0847824235925727 1.7140861115496595 +3.542974036271705 3.9279547246616846 4.281175032656439 2.5557250809789513 1.767876598119073 +3.9898183549569457 1.8177844239941914 4.073608159389584 1.7301143085084267 3.195261307995218 +2.276721179967052 2.4912485743213697 3.3602370694812094 2.428050425197937 0.9565531572832535 +4.070174681126672 2.3263977577967836 2.1429036055743333 4.306369540160082 2.778730431051353 +3.4540151119491016 4.746572111149382 1.64804534881503 3.4428169208917465 2.211765944243731 +4.516554750024782 3.9370800415439615 3.1986890876494143 3.3583667378066493 0.6010722832810279 +4.133142700701013 3.565125960036542 1.3288273387239138 3.6073659127311566 2.348271928656059 +4.993135642887348 3.7733304555709117 3.4208732284644796 2.0985228747234843 1.7990372850619363 +2.775463121181526 2.321079612100459 2.6951227505222572 2.6895244224664734 0.45441799546435696 +1.6899503029512908 1.2797958119257626 1.8106337324271853 3.276898966166029 1.5225506369837545 +4.999348944019206 1.8291593699267517 4.25525831651818 2.589233267921139 3.5813044269144827 +1.7225377083900417 3.6835027095171275 3.6526077910769397 1.8710454171317488 2.649405259280387 +1.8753953005249238 1.5680756287823634 2.4890988120872644 3.5067172297370623 1.0630111121620667 +4.94029682640053 1.1422211639380566 2.8910278822549578 4.422148814430914 4.095083643436007 +1.414497479270334 4.588829691962003 3.158055410876538 3.7915351410301423 3.2369247079670345 +2.16902756027529 2.168687674423453 1.6311021187927772 4.212619379339886 2.581517282922011 +2.8361357296362217 1.5630685028999873 4.741734905907657 2.7382669544379077 2.373727869060874 +3.9904556142396914 4.997423258717401 4.733700227045077 1.7531829577653784 3.1460240033253872 +4.672315546654197 3.8255480732656273 1.020678646444523 2.2485350156220174 1.4915248631245144 +4.771371533377277 2.4680754022049554 4.696284180479855 1.086814857618272 4.281756866118421 +1.8669935461484997 3.8002640529417637 2.3012133105692514 2.5557708919261533 1.9499575417590405 +2.118470962334396 2.33575252676938 3.3747370108984214 4.616717356097727 1.2608435494163024 +1.780066213875013 3.8314159473814375 3.9713037536113105 1.1600876461628 3.480082144423438 +4.196189623444862 4.095106446376182 3.2090333160499394 4.395048113470018 1.1903146257967636 +3.492303284611138 3.4162779427718095 1.9821244083684504 1.4561713722485443 0.5314192777887663 +3.0105045105426385 4.099323121996926 4.1670081619267245 2.8460428158070856 1.711863141228942 +2.4055272046685205 1.8131152399162298 4.805782617323102 2.486417802238576 2.3938264518201287 +2.83334349505491 1.5551811587365667 4.000878197907712 2.1621513574865707 2.2393336847526495 +4.812476001098005 3.858261379195177 4.225116392157537 1.7100590484411633 2.6899886592390723 +2.2057273705772773 2.150408739106739 1.086156779741049 2.426376271165026 1.3413606659584574 +4.194977202834485 2.9202731600664342 2.9361433277616444 4.414389535874495 1.9519431980591118 +2.5897552245808244 3.606650307398381 2.1464034785589114 1.126573129262494 1.4401838600694628 +1.7347865588572162 4.720134829733707 1.0804125568820337 3.6562668614794065 3.943010232923327 +3.829041422802549 3.8823716661031424 3.4554952674007686 1.1410764981170884 2.3150331216773306 +1.0564177537168051 4.685371950897155 2.008790068985421 3.5679565694188997 3.9497226157423837 +3.3422825696495613 2.4582036580542797 4.394907584549401 4.714056259358992 0.9399209533573641 +4.345768140158637 4.112380650632394 2.2466990283533095 1.461821238593747 0.8188423933366042 +1.1757199475204145 1.1802697288959978 1.251517696916114 4.456013699102662 3.204499232101661 +2.047248285743991 2.149566300583696 4.862983507456127 4.945467535728769 0.1314252300010165 +3.248396719078349 3.4935373724333556 4.619482328883233 1.9938638206497394 2.637037445829239 +1.4866944876364574 1.8635954996900992 2.9307071634999016 4.745921304753755 1.853930082687862 +2.5685514740949382 4.750454995921348 2.436819784235065 4.7401174419977785 3.172677588223186 +4.3230017778132925 1.206769210370633 2.272620807709542 2.5652012982982435 3.1299375006321446 +2.8715570324194077 1.0262835558593393 2.5163994298481835 4.003485696977354 2.3699071224797503 +1.2134064825897442 4.020112558026487 3.6248751712493728 3.049522882554304 2.8650705488696397 +1.8838859571164885 3.744054836688243 3.8730324187473566 3.4651820998109493 1.9043555716262037 +3.8977034003451343 1.3858860966274729 2.108198025033327 1.9843710768004663 2.5148676466892104 +1.3949315666754338 3.0889908108012807 2.1241602560554234 3.397926336833752 2.1195086107750587 +4.384628817701065 1.653196649296342 1.604492944127248 3.684097368562542 3.432998143420264 +4.18775660558777 4.329577335855914 3.4531395134348037 4.0717333745653885 0.6346428007645204 +2.010474483063848 4.029649497594082 1.3427174891129199 1.097720270435461 2.0339841141127093 +3.287521583014347 2.3176730216063315 2.9318138927105957 3.348151390981394 1.0554350498877627 +1.1709624801875105 2.0671435084845866 3.826430967977448 1.3022994156999785 2.6785034121095075 +3.3582873418975887 3.147842879787634 2.120902657511845 3.4769583715410723 1.3722878601751403 +1.4713914687404737 3.0730940856879077 4.088871986910069 3.2133780043721507 1.8253605086657168 +2.529924482230484 1.2103909614746189 1.8743740955690096 4.136847913586261 2.6191518645569083 +3.9233293145148345 1.7877614942668307 3.5701926262433563 1.8244956708961229 2.7582798579526715 +3.539320890336661 2.754582030929853 4.868340699708744 4.106122231920003 1.0939799221655366 +3.0049019984891574 4.955031481996472 4.109808385813532 1.3907802084452014 3.3460602552505616 +4.217547339389213 2.279473636067914 1.6831521555386328 1.4088099176708826 1.9573945292106598 +3.1423288948431303 1.0914044745664402 1.6252317998504644 3.007917331629058 2.473481404311973 +4.236094681055469 3.342220860960842 3.458764055219065 4.9653946967138625 1.7518408307096818 +3.308493326088249 1.5946358987182534 1.690383592904737 1.4322019567144926 1.7331950376738252 +4.784553017736575 4.4580415242296425 1.5967558282702887 2.7116066711459657 1.1616807466996837 +1.4590642146623685 3.6683739993785816 3.082994449728612 2.411138159616256 2.3092077861046496 +4.112392910674753 1.7239028945700063 3.7534659132126262 1.207052165587383 3.491290238740814 +2.9829911279289307 2.950728244713853 2.981136932094236 3.1493612856993365 0.17129018296214088 +4.6217290563620566 4.1898724856379435 4.854875987935044 1.1422177554476152 3.737690630447398 +4.715578060847802 3.5042770676652912 2.7424719254034065 4.937825588319147 2.507354741827031 +2.385990486045513 3.2695301109921346 4.594977318722156 2.666169439845299 2.1215423876199737 +3.9708794504665077 1.3741209040437723 1.3041117062368506 3.8632992284207397 3.645901222211215 +4.212949416706429 1.8590872207662192 2.6612709917655075 1.6574489900392066 2.5589696849760193 +4.474059953967784 1.6363734124284006 1.931531741052484 2.1084799853081 2.843198126965283 +3.429787070813034 3.109247395567841 3.7731692810043254 2.647043034453469 1.1708569539346017 +3.2676653187022175 3.157528387011227 1.132438620968224 1.6150462453540295 0.49501541676761607 +2.8410091534673922 2.9208220979496367 2.7941723471551088 3.030858226285971 0.24978052663663558 +3.6904922290353284 3.36469870319991 4.9765523494989035 2.3062174600982526 2.6901356551346365 +1.2201391079886927 1.5827937377782924 3.3787594179743636 3.1072376739260763 0.453036905780153 +1.0808583829809333 2.148038526458434 1.9223191778413464 1.0997280214970853 1.3474159228421072 +1.2419794837743607 1.363238750980479 3.603582490537224 3.7411693633092087 0.18339563092543698 +3.7299571461081054 3.428707013670831 4.728605696878326 3.983272347161856 0.8039113411894676 +3.7265270237335915 1.1201133639036738 3.154907479076803 1.1590777869037008 3.2827927632288585 +4.967180247586085 4.434444841094939 1.2783950593636888 3.727996115983039 2.50686105516838 +1.8610827979588525 1.5473738005633102 2.4806198995019715 4.155084958610755 1.7035981243307055 +4.462165557393808 1.2702061614808144 1.3664695261663575 4.735743207509543 4.641186262686416 +1.691274195534675 4.668686847221647 1.81283295599883 1.433405008442144 3.0014915735035346 +4.870467287813075 2.644542826469667 3.4634861746584953 2.7919915502260455 2.3250042447807746 +2.9027631798725078 2.1429116911650876 3.6575702410364683 1.1042893401443408 2.663947755447054 +4.69383262777656 4.881965666006261 1.432409895490658 4.62821573870532 3.2013386305729226 +1.4387399498344235 4.234030880029514 3.0474722347057757 4.531446425738441 3.1647797370562754 +2.3171994862430796 3.880164904897859 1.5220999873976258 1.1157355683983239 1.6149281534914643 +3.34855861495943 3.1454968697023156 3.2801024522001536 3.9455706192094335 0.6957599828170317 +4.510390182777607 1.8209028849850535 1.4401182790239915 1.5696402629254442 2.6926042912580495 +1.2922666172029045 1.9215233127408533 1.1468472145848176 2.695852516536241 1.6719394170701756 +1.6786126287697933 4.945588963424362 1.660034978202229 2.799499632647663 3.4599875823365975 +1.2335317894356166 1.182495940490368 3.173346660299064 4.176827239471928 1.0047775528218517 +2.0747838718019156 3.57054449941961 1.5028788911416524 2.1848005953324194 1.6438725819776054 +4.2971323214364014 1.7507503501505477 1.444751706731949 4.737713913162234 4.162650746419622 +1.1434888482508558 2.6026561889122632 1.975071342597985 2.211486660764288 1.4781953628382678 +2.7680078150999656 3.378276690049431 3.2279926468484383 2.027407914457353 1.3467857288309302 +4.127884259444617 4.256142964998691 1.4596162793995688 2.0011725150661217 0.5565370175825987 +4.6235376144032365 2.747302816940437 2.2849108888414364 3.0511072751742985 2.026650911637179 +4.553015816558398 3.789608764071029 4.058387862561869 1.3094648839859926 2.852957740649153 +4.570451710282346 4.341583012062548 2.5407021829196244 2.3437472966620976 0.3019471944654234 +3.642195571148064 3.3980482896855575 1.590811808501385 2.414035368896123 0.8586646175513007 +3.283710994286902 2.58845968387841 2.376445454639666 1.80292939765891 0.9012741271330705 +1.8759122966818644 3.8757054000017828 2.247018639214057 4.5181533584115945 3.026090773395667 +2.0471975441746966 2.577878858137635 3.358118346631796 2.460006091123022 1.0431818060551517 +3.5414598685577987 1.582066669039241 2.7296256702092996 4.066157127927665 2.371821672847761 +3.6092104859514427 4.059571798253939 2.01751185266995 2.9044191964680417 0.994700934000674 +4.797595627901076 3.737908271829817 4.841451998012922 2.9607978231760437 2.1586563918207724 +3.0623033972588845 2.7277346690040445 4.985765458290858 1.3160244872855373 3.6849606549054412 +3.108680757667939 1.4911620390865932 2.459250944428077 4.1830711601999795 2.363878791576448 +3.2442764317783417 4.072845836332649 4.036765796902632 2.79690831708516 1.4912323187293162 +1.6845900653665677 4.183613417516293 4.155934918923592 2.5618177841196634 2.964173941263423 +2.5935936532390587 3.2970176725874007 1.5224307626476978 1.830922682435693 0.7680967488348455 +1.7832034571884408 4.345319914477264 2.5825715242433804 3.762952603108423 2.8209466907499032 +4.337339193043341 4.71432823551909 3.870601719119986 4.728674561668742 0.9372351579334202 +1.021172861729891 2.488936695078779 2.827772857183161 3.2846668333711464 1.5372321802395008 +4.716030185439706 2.247481823442115 3.72192944008771 4.233688866051238 2.5210372320899013 +2.4755509491014522 4.543453382809471 4.795113983106431 4.863709258858778 2.0690398225242275 +1.9429218180435357 2.6693937295851398 2.7335973555439352 3.1559226183058606 0.8403095059713662 +4.538369783932753 2.0023780409855774 1.83080673841752 2.5394024994507607 2.6331278117194636 +3.1429670108464887 4.429700644548776 2.7340569840308353 1.5290025795659252 1.7629065663899974 +2.624444336110682 2.6148942495969973 3.329852592815404 2.584986443966501 0.7449273681731763 +1.452018491802805 1.5539525662902092 4.631268568356887 3.2757837978467026 1.3593121490763818 +4.4599475309013865 4.619798891453048 4.233393700802438 2.508666363738825 1.7321191773907354 +1.8487170831859014 2.8825084359017854 2.7702423919027015 3.1205267173989455 1.0915235543214337 +1.8382371650542195 2.941388783905739 1.7254784696824834 2.839163868940655 1.5675581847879079 +2.055859419335216 2.4819580096650515 4.405058492191108 2.021730465473483 2.421118025131943 +3.93610405174891 1.9605524271626078 4.292876912507872 3.3099496269214193 2.206569797254537 +1.9934993580596956 2.256902221382758 2.853031261538642 3.486211186890887 0.685782681522261 +1.993022730630178 4.673410858633185 1.4979636971634367 1.9318339809382779 2.7152760338282964 +1.1677127962748797 4.935619577863678 3.548956964212571 1.0660056827996884 4.512445964287299 +1.2895632754414748 1.00790666513495 4.176489105207166 1.1593162555911336 3.0302908194741787 +4.891244422246002 4.736275247778707 4.689207004046148 2.941422122179805 1.7546416837393384 +3.386680090973635 3.945688271480477 3.453231699926401 1.5571756432018478 1.9767444741583147 +3.883326417879942 4.071875340314677 4.028417929935715 3.8876213009211047 0.23531762979678691 +4.359463854114432 2.443710933500859 1.9826080597053792 4.392927794901447 3.078920343028556 +3.3411010608034686 2.326650821565041 2.2317536245687073 2.0770291355111876 1.0261817360511798 +3.5539876459607056 3.946362028138797 1.3515640781220282 3.9872346919298187 2.6647171032362094 +4.169072280447216 2.331684832426826 1.8126727602454382 2.746746394234567 2.0611856267344137 +4.210623116295139 4.510277644475952 2.85232803248978 3.1709240948996045 0.43737431022216017 +2.468923039584687 3.945952064823634 2.891526058098169 2.3382576950058307 1.5772509702001107 +4.533581487135621 2.237068285293022 2.421222898316128 2.38924124644721 2.2967358821365615 +2.74992618639534 3.7220818383788052 1.0875447242495322 2.941677783083179 2.09353672323731 +4.096044499212684 2.4196631057108444 3.4441472372882536 1.6939070981895008 2.4235501069694414 +4.708433544094511 1.6446502766748896 2.3847653710465875 3.2942350830324694 3.195919752863037 +4.6647838183031975 2.073718440823658 2.0777886938341594 3.7101702333219726 3.0623992686835906 +1.1898990256323128 3.51506033904696 3.8813452923952565 2.768284933930525 2.57784376853714 +2.05566156981879 1.3229417929394511 1.5449671024047937 1.8798765946758196 0.8056318262353744 +3.3171758562117333 2.629127777024659 4.3942539425348395 2.9306168857305086 1.6172951472516903 +1.8911467838804938 2.2983969683053393 3.2325389826825774 1.9072045555914316 1.3864934389845076 +1.9744800278942676 3.921277930053072 4.680763518238022 4.805653739659951 1.950799743504376 +3.353628320268136 4.823389927266239 4.441956289885725 4.0631898746249515 1.5177823225796054 +4.008190379380967 2.4378532875237555 4.773626059603908 1.9187685560896712 3.258246452838413 +4.799018213608373 1.2498034689992576 2.4759849606111715 1.9693933222818685 3.585186242216144 +3.0616812997247846 3.779338568137398 4.617056205141994 4.582614442012778 0.7184832565571051 +3.0635707729532826 3.5803791342260314 1.3453418464235187 2.0280382699888166 0.8562507162217575 +2.9992513189083168 1.4472206755478356 4.203129084461558 2.1066341419249204 2.6084650969510115 +1.2941322475317092 4.851617362715977 1.4492752690519701 1.4624442739491976 3.55750948943887 +3.4585744328440935 2.6765717632622645 2.516194434526713 1.374635052823748 1.3837217918306997 +2.847136040878375 4.865009353356291 4.530754800037674 3.4111442538446686 2.307669924481661 +2.502134566518114 3.5143911664598573 3.3311632944181544 2.4341220009228626 1.3525333660806023 +3.5333179466154125 2.764072669744181 2.8377088734678386 3.9287624422086065 1.3349667358592359 +3.736774220427639 2.55826394451143 4.826899671722658 4.27335698998372 1.3020353186249727 +1.067483791903491 1.7008013284486783 4.677545296076677 2.3065271623152546 2.4541430465075105 +2.325613084501843 3.1249065934311413 1.4919074148613327 1.5295551725963037 0.8001796467537657 +3.8229283117303363 3.357597142170291 1.8235358093732024 2.84654355112652 1.1238674018990595 +2.3147591423966998 4.276131722433568 2.4949670597994817 1.4446443084698863 2.2248955660167633 +3.633759391617603 4.47806036848324 4.570154685513916 3.816903532497505 1.131473127854489 +3.5593083292147147 2.607696809619945 3.0744490219792038 2.5885629034722157 1.0684801375707709 +1.6752743865959974 2.806206569839189 3.805324465109444 1.704665633121265 2.3857441462791336 +3.3992779151312553 2.6046482617410955 4.9535152946602885 1.4594812715836363 3.5832541132976012 +3.8891194755364737 2.3365888128896115 1.5203836301888702 1.3883172465845344 1.558137666619042 +3.953128584702205 1.68222951231354 4.519488971464605 1.9949226743335626 3.3956468581973653 +3.0146347263339814 3.540765606255561 4.539771124825874 1.5606740076458698 3.0251997184313746 +1.978970320415355 3.9509220728436345 4.025922959389488 2.285775370222786 2.6299633735068726 +4.824836549958702 3.0025907534499745 1.3201667610190002 3.047839377704551 2.511062009058881 +1.8744249675846891 2.7222571404319935 4.3220732227439305 2.5011262015913713 2.0086481641042466 +4.166173125968929 4.078217113435311 2.7067425605002047 2.5706818247261682 0.16201476463639386 +1.0463911957578715 2.454956726002938 2.4535001723650547 1.208540426929258 1.8798887256298253 +4.99255041011158 3.852594750510653 1.7770585836226052 2.430003702488517 1.3137108639677924 +1.0544419998592884 1.6925131462699499 1.193860361196811 2.9978442711331197 1.9135027397918478 +4.3443886874423825 3.1649377944733947 3.225407646444765 1.1697950762868432 2.369946718286426 +1.5806164078335736 1.9556723117733434 3.851845246486301 3.6610922245700115 0.42077743101344484 +2.71903186436212 2.0056090667067825 4.277164461087864 1.6887149495081069 2.6849661007565535 +2.661453852916376 2.132606799841549 4.23142113380327 3.5561151999695766 0.857739651535899 +3.3278325512250424 2.1307296344242665 3.966945658010132 1.5317612982184636 2.7135176910399688 +2.1349726483308618 4.470156458776405 2.060861733108054 4.872285071551644 3.654748228881474 +1.0729010753321897 1.336998693343873 2.009702580104769 4.29858814907985 2.30407133129637 +4.699823914354237 1.2385840477010839 3.8137370507601798 1.1611070643404493 4.360805803903939 +2.8393749191603628 4.63582571005043 1.074784155616602 4.368186415844251 3.751497553212868 +4.114037395634297 1.1451783106167701 1.0615403633614418 4.377469377713445 4.450787514015082 +1.7695809187127285 1.3695905123739438 3.7200742085497205 3.960643920599649 0.4667613003654562 +4.177425229764088 2.8460342612272873 2.3505888085310955 1.1785262651732564 1.7737904376345608 +2.370871499129453 3.0592951105207944 4.605287835250959 1.8580805365430306 2.832150245095625 +4.551186158889086 1.3564731258555471 2.038662691726465 1.245628826479014 3.2916704079940424 +2.026662778820964 2.3632434398647217 2.6877017391769837 2.7335477079578436 0.33968867252545887 +4.124861350433612 3.986932327608639 2.3360529839723356 2.2275071007192278 0.17551815891425396 +4.103841794541098 4.1440388580769945 1.4393272679905058 3.0482118185914526 1.6093866226234512 +4.4541886375313915 2.1339240839181195 4.800308505922436 3.296507900736115 2.764967243732363 +4.40392221437071 4.537874448535756 2.6234050688247454 4.997957728471485 2.3783278862413426 +3.1306921995638595 3.5795447560049842 2.6862522513836007 3.0684914116744246 0.5895552502383193 +4.472313584931326 3.2311004931308878 3.5181963598042567 3.3752145073945607 1.2494213658231206 +4.262402864532171 3.193743612933039 3.3363346833100733 3.2853685951374656 1.0698738889102934 +1.5362883509367244 4.8475361365664105 2.7880045183083992 3.4848646659684634 3.3837813113784856 +4.579736901707804 3.301763345740314 3.0561716161859667 1.3166090171430351 2.1585398874566093 +1.5395373361128155 1.87444684743005 3.11555833500161 2.9012759762969718 0.3975944039127966 +1.025372002326523 4.0227288952859235 2.670817182971658 4.719308168483847 3.6304908292813427 +2.653898020104994 1.8273674765758297 1.452221487171479 2.1257697236313375 1.0662175979718218 +4.564849137194738 1.8451368634305858 3.1721731370207977 2.0436770240378577 2.9445438235966157 +4.003342232130164 1.3101800359647977 4.278439971528668 4.871370390293713 2.757660076287712 +3.601227877290491 2.417527624125845 1.7092491716437244 2.6847431354481937 1.53386269358147 +3.3109042987228006 4.598505517057475 1.1852768224204784 2.2972654039219886 1.7013040594927997 +1.6211056631908853 3.737435294065859 4.5195597513065575 3.853629074263493 2.218629030087373 +3.9691913221766146 3.047125112684826 2.3328655127463866 1.6458725514498784 1.1498545227799473 +2.2782282846997592 1.7358113223902012 4.246495399627166 2.130153717214036 2.184746730795212 +2.2006897795667357 4.5005542444296704 3.0874160918491507 4.634692550040736 2.7719020536110524 +1.2174834916660013 4.569742165488048 1.255506849355728 2.1985951282434124 3.4823919535271273 +2.774480181520655 2.012674391035809 3.8386257834803197 1.9966187647412474 1.9933233354125581 +4.434772856559684 2.6247375156379955 1.4168177464721126 3.628721481183251 2.8581018293641285 +4.704811399998553 4.013400469073603 2.3867285377293164 3.4659142660373634 1.2816750413370293 +1.1759813169132598 2.9919344057165187 4.262227982586862 1.1213476116123164 3.6280594159284787 +2.4198477463972496 3.7176618367987104 3.1466683981432872 3.161617542857222 1.2979001849804357 +3.7246680748765337 3.834524549339684 2.8446176009359374 1.806113959313672 1.04429797406879 +2.698783610060677 2.3507357404902947 2.4536599580504634 3.4887252828562314 1.0920153598405802 +3.8166361653016736 4.369565662072285 3.837410827434651 1.5092776575641986 2.392892618787989 +1.3229438674459022 4.151692628280589 3.2494953281810286 3.7235532959783084 2.868196386016108 +3.257778545066864 2.398999987032952 2.8767975454792394 3.94208739092599 1.368335874904538 +3.4365822494977314 2.53725245816575 1.8401489206689998 4.352647828478767 2.668603536556619 +4.031796095854532 2.0560429842692804 4.904576685432197 4.519970774811741 2.012839304172838 +1.4625075703861148 4.3735083549156935 2.313714762006771 1.6836094852438634 2.978415388648179 +1.286877565010497 1.0924030373175482 4.260208286859173 2.075571670116007 2.1932755160117074 +4.25221283125327 1.8465156241037786 3.658537522367084 1.167723575215939 3.4628793181122455 +2.516225958206698 3.4761155453482897 4.601104887815027 3.194295291946613 1.7030858048055906 +1.4510658983902531 1.7172548624947002 1.416243674726834 4.64492547982003 3.239636208457804 +1.4248345429389988 4.057199764372077 1.0832727908613986 4.234271658711457 4.105866598442132 +4.666331431737225 1.4367136121967379 2.2535631311163473 1.5391497974597774 3.307690685599206 +1.5511288479962215 4.192509706535368 2.3047856993542624 1.8907424358358274 2.673635102986568 +1.4229559442731654 3.5939127049411534 1.5749899285566005 4.381471744146356 3.548153525134731 +4.147011240298166 3.367933814764707 2.9316495460429484 4.186166318711774 1.4767443813616659 +4.2314972968023605 4.018716043734731 2.8086876135020136 3.093308527712846 0.3553659050376676 +1.2409893357816904 4.501562644923246 2.4936101380370688 2.439135038944749 3.261028340985008 +3.4963734336187584 3.101429149305204 1.3447514026825176 1.982078735617344 0.7497780451692118 +2.987877037934035 4.83679407135952 3.179194660161753 3.0499390457996505 1.8534295806247998 +1.9159189469510132 2.722795468420874 1.1634615684299208 1.7369852525636191 0.989938956280433 +1.2642939268269098 4.353188374152357 3.5431067000503798 4.974886348735531 3.404594229729434 +3.9403045940739783 1.0276403804679615 1.0729514690686508 1.1323168375152335 2.9132691376170436 +1.94148777625167 2.6420105391998225 3.0074496898474563 1.6841816646413763 1.4972542896720358 +1.1502107155669363 1.0930645184449346 1.324524260702801 2.135960128277996 0.8134456681506247 +1.2211656593237308 4.1170804610035745 2.2693618472746153 1.8040325042698284 2.9330622114182434 +1.715988661742808 3.888419394114543 2.1195553013708213 2.6574617640820337 2.238034550577735 +2.898202815002712 2.579147792594209 1.0487329727738874 1.6958520465729818 0.7214978884228895 +3.1465993706379094 2.318269698171591 2.5771345546188233 1.850037718968499 1.1021795927619387 +1.1319433264204566 1.6948311831893252 3.2442021985344507 2.160552175824031 1.2211224799413627 +2.794381263251323 2.605418374930276 2.023909037609987 3.863121799559361 1.848894414746304 +4.838097387747814 2.993843518767417 1.8177626108806262 3.5096321426684276 2.502737470419348 +3.5814696623607856 1.8870750818996607 3.20394584990665 1.8366056752152344 2.1772900926659227 +1.3731904020741883 2.3549269065871905 1.8665066673231867 1.5410973821975409 1.0342619431939821 +1.1965358134440556 4.449142243203111 2.9586368882665743 4.712782719726549 3.6954669779255713 +4.366932999509751 4.169669717377878 1.8491051334908066 3.1289750232039357 1.2949825238480002 +1.929639362949998 4.285069769091168 3.1061313299757054 2.215623121704981 2.5181456008682046 +2.962179717562711 4.2459464860654705 2.402785039192633 2.9293301125558195 1.3875542620723205 +4.217565680569274 1.667720660893024 1.3660462837727545 2.19277990246142 2.680521982867858 +4.548108418652861 4.206886903787978 3.1824951403646637 2.258826185147616 0.984680892999574 +3.629276753376109 3.105847512811268 3.0988110482568287 3.3206759725820865 0.5685087638059229 +1.5598565294747173 1.2930188461131902 2.6479595250513253 4.630463673053269 2.0003812251935025 +4.147668490003486 2.230855559765114 1.9166258181159876 1.592127128415111 1.944086214432529 +3.4117945755808234 4.413808522036556 4.5955877249905095 3.6495646593689646 1.378039037756107 +2.614996370305328 3.2837773946639226 2.7823577274502282 3.9118837104769986 1.3126678958802653 +2.5387429695450243 3.235531944800262 1.0189425684357958 1.3391387483894746 0.766837968344143 +4.370905207840513 1.9094349310107508 2.873258310590992 4.3472161024966915 2.8690394727218225 +1.3933926702148227 3.661700680758343 2.9247359181634764 4.528569393850575 2.7780394252836773 +2.3232310913577883 2.4076956056840446 4.490505322921284 1.2604471052025383 3.2311623828017018 +3.773361615207644 1.7410507732313856 4.451370478423986 1.5589085794466415 3.5350563213971387 +3.0702823370061596 2.148152781239938 2.9368933914852966 1.3693253339320202 1.8186787876584916 +2.093727604511209 4.90741936112747 3.9944062895464736 2.2052677651706505 3.334348206270005 +3.0072686237515227 4.544986532290559 2.870543186887777 4.3947837274440325 2.1651525562225156 +3.729071772846254 4.427367837224731 1.963858008786413 3.80227939061452 1.966573306716339 +4.731727451488393 4.262710007941703 4.124844502960746 3.2884004106656173 0.9589661526281805 +2.5717819011847136 3.0419788458602417 3.8951535616106976 4.0597716241416055 0.4981809644031288 +3.0819071135272256 2.366832771333019 1.8572624089008167 1.7315024468675269 0.7260488157934644 +1.9609961274497234 1.3004322780181718 2.157072606871274 4.099959565919421 2.052109727771686 +1.514436770843285 1.5967629446683849 4.474115844014078 3.970385988742833 0.5104129367367851 +1.8026822559084978 2.0194561556845803 2.5854128080959358 3.633879240123606 1.0706412950717736 +1.558343008510287 4.808535244816648 1.482312934129994 1.1631992833785487 3.2658204321490274 +3.4671801875810906 4.698932401289181 4.312218531234338 1.7968083713804295 2.800803775395743 +1.9414060207722437 4.746398471658044 3.5881652506000496 3.2316470265869017 2.827558645471358 +3.59639978356407 4.3109366878226005 4.7732604176596105 4.221509504156526 0.9027691056404473 +4.326147653539064 3.619437501529105 1.345208659191178 4.6211286550198665 3.351282002163377 +2.0345386699431347 1.3086018652199538 4.86712108423275 4.606784412444004 0.7712064750310016 +4.197150507472109 1.7980272334776508 2.9767510493173144 3.4751958508599077 2.450355015912332 +1.0083093545617725 1.934444793578884 3.790028377034332 3.5048583546489285 0.9690452998032184 +1.441019336927177 3.770690554442007 1.9104664703824565 3.0273942603362105 2.5835819456111717 +1.5639595933613806 1.0889435145387028 4.809910332716772 4.389326263789172 0.634453492523895 +4.394990469550047 3.0168767678890682 1.987467294626704 1.9911778368484851 1.3781186969304582 +4.9932777850695995 2.9426034606110423 1.3913652498603115 2.0914251797855834 2.166875421079979 +4.831809428364354 2.3123742891696057 2.4317178421751415 1.406983406504573 2.7198592030210564 +1.9901938427543882 3.288557239677854 2.3749748907665853 3.2899955885646373 1.5883986866871538 +1.169717902150715 4.716407072961349 4.936204583988831 3.3783112016600763 3.8737624946618956 +2.6941281778461184 1.2784860333228512 4.844379097080484 1.7713785541969242 3.3833969642820643 +4.192624593287976 1.8224742186154619 2.193517608963354 4.1044194879005484 3.0445293215020874 +1.1725313273886986 1.8643141134673207 2.3941035774752795 3.7602366865589083 1.531301111750789 +4.694920471516595 1.2693256891422013 2.846184415145129 4.700227285671522 3.895147568293199 +1.4744483527434946 3.654523467961683 3.092305078289236 2.6476091718101644 2.224967855325744 +2.306443933203637 2.7633534145675025 1.6960847647106134 3.752674393427064 2.1067337693938133 +2.397437984046354 4.135418755191495 4.260281804603341 4.748353642682304 1.8052122534472324 +2.7289299379781724 3.9592730273476096 1.9522463021876995 4.739933467753152 3.0471205835374287 +2.3904535572318157 1.982142548484994 3.06719839595378 3.3801947921590636 0.5144750955112815 +4.453250729230328 3.1486091768520232 4.125819982867343 3.7233202160388 1.3653188794157596 +3.1057284965031697 4.485120439246954 1.64022283828694 4.287742215500454 2.9853108689762116 +3.782653833322932 4.301764865336283 4.821141566918104 2.2856872171598055 2.588050429042341 +4.6058261890709815 3.2685436070485516 3.7648150362975747 1.3226067841914775 2.7843681241595366 +1.186512603090529 4.193769185696047 1.5159477346690213 1.4066894362048608 3.0092406898431205 +2.919818076973904 4.260785037720218 3.8175977329312616 3.4766409795372177 1.3836343077194257 +1.0443493500582295 1.289508352926159 4.003859448610616 4.492277334751515 0.5464933377357332 +1.703728416420374 1.455888987607286 1.5649964810455592 1.9823254030224824 0.4853738884538584 +3.4809476501752323 1.3711346562207698 3.889226716120294 2.350485219996636 2.611328447620476 +4.029491414239132 1.0900708897376465 1.415829891559159 2.4527419180487935 3.1169503638234968 +2.1328905682165193 2.5005778639228957 4.773177564264601 4.884017351312239 0.384030475114455 +1.3831978061706076 2.4006183421998823 4.734813007899291 1.7776657692791433 3.127277464187158 +4.070761538693626 3.0753484663728097 2.362687004011675 3.711757143537635 1.676555226023813 +4.635700981078433 3.4306613956509278 2.7859335432583876 1.736440018741002 1.5979853129648023 +2.5593127298906913 4.082378918850912 2.754846096769489 1.4639242095492602 1.9965495072394395 +2.8865438293845154 1.1258333536602434 4.852565616435653 1.5133070845915033 3.775016413450296 +4.196690990532696 4.047112546029701 3.4330355433874638 3.3858982741264274 0.1568299499882694 +3.744868162105648 2.6796844292593005 2.596217689803269 3.955846494740432 1.7271962459243988 +4.49370971674545 4.828986068676708 4.0210491910765676 2.8574788816199965 1.2109112672748543 +2.3356102230404416 1.834488690189469 4.265926434185588 1.6313279372684826 2.6818337067470797 +1.9037667183180287 2.554290218619181 3.7962850253190603 1.7022544575154468 2.192748239844234 +3.265564244524373 4.5740779113465555 2.1108018863361657 1.8141095246955903 1.341728129583745 +1.293194205705428 3.8366035988134994 4.18573919192586 1.5331639484372732 3.674926769789965 +3.8396867912945516 3.188994452985473 3.989154193226577 1.7484775788093518 2.3332449956081285 +1.2763869207982883 4.871862101865063 1.9389388882729324 3.464933416222585 3.9059059227021127 +4.2061665126436285 1.3340902710223146 1.251096616795662 3.0756856661966285 3.402638261243698 +3.7182989901052155 3.0090502667773324 4.418680939232248 2.7083990225390466 1.8515123510552127 +2.0700898193650548 1.93431969657773 1.2421891587361844 3.662597746430088 2.424213533834031 +1.234666385994998 3.3622369966464762 3.9323330122976765 2.160586561656176 2.7686896158054006 +2.816607869678801 3.418957983212937 1.058885676047915 1.040127948817699 0.6026421090543126 +1.2019807601979973 4.539188894338423 2.4385595638714803 2.008122966024675 3.3648527152520296 +2.5084796032777077 3.3564187597480077 2.829054009256554 1.1457561185236678 1.8848057199672723 +3.877301442569854 3.78222383688331 1.105403136280183 4.533165457156936 3.429080675563856 +1.2373955696783856 1.4307280981403547 2.86071744776391 1.536878880937902 1.3378811672108393 +1.5871111072754895 2.2224928304039 2.73106176239153 2.0225476846090933 0.9516838406222546 +2.091300645724012 1.34585506100994 4.418864926334124 1.6916480604371018 2.827260326429613 +4.696538446331552 4.929382094920443 4.2849218051713125 2.5227655703226626 1.7774731392356278 +3.8414130633442496 3.723756678766821 1.3460408952081804 1.709341908960341 0.3818777964548075 +3.2262792137269334 1.0590906070880295 3.0398075492086694 2.357377109774173 2.2720954560520195 +3.072046289428803 2.9412103277005817 2.5511626068701974 1.611534921646788 0.9486929090699745 +3.8939916451383993 4.718825795537314 3.0765531624814146 1.6028731438244033 1.6888114675869623 +3.420403310764575 1.512804982074107 1.3243646884567215 1.5649552795623132 1.9227103828063146 +4.377774853011504 4.445298200340263 2.276327148866687 2.7251296087557026 0.453853556157613 +3.591254999650403 3.886998105020756 2.4381522231493387 4.356472204730103 1.940983136481645 +1.6684273100751965 2.266141735970842 3.4304787530965375 3.732043911312548 0.6694804549601193 +1.1919164600771919 4.729643972028734 1.7976679634211132 3.776567900039208 4.053586178677586 +4.9138379504559895 2.9441923054794383 3.9408553572901135 2.633272335587316 2.3641652491779235 +1.0314165377005584 2.720739519168882 4.6421349781422085 1.4742070041887083 3.5902060921170187 +2.493979626391758 2.3460897365527478 1.535364767541056 3.191485297981699 1.6627106275186887 +1.587614542271417 4.238435836916688 1.4133732009062454 4.155833956780404 3.814176783220029 +2.459555324910381 2.126878276942784 3.841919761935031 2.8164907719028656 1.078043891426885 +1.383936181142143 2.832013807792692 4.868534866692071 2.2942825929329755 2.9535916409957155 +4.217058627468832 3.105593398078336 2.49434473078024 4.164620908053113 2.006284492416105 +4.311028022828559 4.692125010858291 2.7120690026523975 2.5721121379099006 0.4059837906541139 +3.3743877816524392 3.2879775472263795 1.7722584368965695 4.3850576301156625 2.6142276780532927 +1.288294379278967 2.77291084229563 3.218752272803409 3.441549758007708 1.5012410738030941 +3.083994655584314 2.8417873258893303 2.301741798159541 2.071037074204805 0.3344982215393761 +1.0704438782425902 2.266722832777145 2.296918520996317 4.117969879177779 2.178832574154525 +2.6128830032814236 1.127162741447448 2.8727341367984414 2.579494481826555 1.5143824456431234 +4.978649259713077 1.8374835840608306 3.7137303399913777 1.7112278069425115 3.7251762638515453 +4.586546264843154 4.031339808546919 4.732529779475446 3.5784066549756273 1.280724168436845 +2.6160748575584982 2.43808288212378 3.0504614577769718 1.3707174362532184 1.6891480459580637 +4.513085378099661 2.4978779480078552 4.987436776511373 3.165420940743676 2.7167632749441903 +3.0930998743583413 1.6849320738698341 3.112943555214179 1.3808067061939662 2.232315976304948 +3.6586943548674813 4.048334054080249 3.7231552214807726 3.212392371328828 0.6424155853479538 +1.0792430498372467 3.591118066191308 2.966818820059506 4.978094411532744 3.2178790534511608 +1.119980609301694 1.5849172773669467 4.535611734306164 2.7266299756255896 1.8677743730308225 +3.8043702179624073 3.879264914388718 2.7078700730878844 4.449485893299979 1.74322542454091 +2.8688817539029956 4.396161517962481 4.5221488069656415 3.0148728775263853 2.1458015297721666 +4.0415115628047324 2.707334232101519 2.5485171631143557 3.1416231347700543 1.460069807706468 +2.1127017029515534 3.3295871272268984 1.443047913400357 3.6277242208433256 2.5007240359776666 +1.6148397543310242 4.317826366065132 2.1582500160018494 2.7178963010586252 2.760315305828608 +1.6726130789174838 1.5627833701786757 4.614043334196445 3.5682653037846093 1.0515294830929425 +2.4137700854678825 2.792020986801584 1.1192264728462922 2.25641811892787 1.1984484070152899 +2.2613400452080303 3.0939032623279035 3.0718070892567084 3.0761899899273524 0.8325747535923016 +2.9093235272462588 4.335951768328479 3.344692395973635 3.107500692245499 1.4462116174926838 +3.9963107600194627 4.888614084901959 2.292584254766894 1.4832512093685657 1.204668087885659 +3.718135136810789 1.639664378550561 3.947579481669112 4.322618505977593 2.1120357389724975 +3.125159968292338 3.5712219287535 1.1617213002789804 4.271555610873623 3.1416620938481135 +1.6486595773201658 3.535764195394287 3.1702965436120216 1.5965148910157803 2.45722455823745 +3.0080164189835745 2.6956248981593554 3.224635955800959 2.058961611421305 1.2068078303639749 +3.714247131767212 2.776322781826039 1.5472902390990209 1.0951321218429952 1.0412247832303485 +1.455909554991969 3.8633540797041768 4.884233922877565 2.229800854765708 3.583546295592191 +4.55363609043013 2.409204060369423 4.118864702286524 1.8732677622508538 3.1050433730703104 +2.584619670350483 2.9030581198235232 4.575683017872004 4.181832097628739 0.5064796081573875 +2.6445290689032928 1.458151643041838 1.9446194033521436 2.5327799796688235 1.3241692717046492 +1.1211362816054349 4.780067824366065 1.2253846229192513 1.4222602553149222 3.664224344829323 +2.7410227079790017 3.34325707488355 4.135790709885356 2.530464035091581 1.714572823033586 +3.866256226681828 1.3024786910331896 4.902001307391355 2.387286244724747 3.5912041293553516 +2.32873648068492 4.849599759909856 1.5069495027707451 1.4262527670799394 2.5221545622137933 +3.403617033079573 3.3385441782683385 1.4120030464380062 3.3325659131673753 1.9216649555770684 +2.436213490193178 3.2338426177580177 4.380770703062529 2.6260595373250912 1.9274915045995626 +2.349677665914235 4.130997290733951 1.68966469133681 4.039717052166116 2.9488719376072017 +2.4347190731658697 1.8207913517873537 3.0729240892821656 4.808324413792221 1.8407937237470746 +3.0030222653898533 2.7474143906043142 4.434405705226975 2.348328985103096 2.1016782503264344 +2.1392537725270357 3.717463324231418 2.8319092743242997 2.608555930625624 1.5939360417633845 +1.5571904994512575 3.8112751457617393 3.836786986631586 2.5521911358894136 2.5944332892708295 +1.6326129565548233 2.769044391803169 2.815396220127423 4.840425327949724 2.3221152629764523 +1.7279412890460337 1.78711795308024 4.055516731248998 3.911430764231465 0.15576470542967996 +1.681075067938003 2.8475695491704403 1.114804335913734 3.743742644091949 2.87611300246577 +3.894160500727917 4.661433938976987 1.7637719969948868 1.2925463803976438 0.9004232953339233 +2.639941301745575 2.0346687811796835 4.785537132644473 4.991962028919773 0.6395045441233832 +1.1081914937898834 3.302028142220265 1.3983134456235908 1.580319607719272 2.20137354463913 +1.798227073006342 3.0387056793109326 3.541153655673759 1.402603065840665 2.472283518930394 +1.6087612316257953 2.647286399213156 4.521541024245625 3.1492403988536575 1.7209716819760694 +2.156184724759185 3.040611666115651 4.995978973885384 1.140088962837543 3.9560205752619226 +1.8090774578067048 1.6334351340656865 3.0194324653634723 3.1725319000104375 0.23300142226682874 +3.4422598960037334 3.8165603481991863 3.620606552018839 3.5330892528254734 0.3843957676299541 +4.942975858731279 1.2537307881009538 1.8491305147962707 1.0187683964831673 3.781538104885309 +1.7590732158440936 2.333148173055667 1.9145347876841416 3.3382357293580753 1.5350851532800112 +2.272441400633346 4.9717628936571465 3.561191473451346 3.265309390711231 2.7154894088519046 +2.3567056132095643 2.5519968211999697 4.016084455956708 3.7146258176993467 0.3591879264373101 +3.7307200167332555 1.1098412713516188 1.7798912482516083 4.889038536938923 4.066423767974127 +4.128657258630518 2.723427058130237 3.5173282087938875 4.311727873387852 1.614231316603994 +2.5222084461181056 3.034382130120355 2.9962351083275776 3.6786765973395785 0.853257445621984 +2.9748844475126077 3.1785781729068807 1.4845359818255655 2.0622500602374907 0.6125721917948427 +4.559528319562208 4.954079741655249 2.598588807063581 2.9251011767022668 0.5121339201836868 +4.160723996669589 2.217681184018036 3.808619349351118 2.8885650422769698 2.1498640189003924 +3.242826214227534 2.661847665866977 3.075805677776215 3.223839939245179 0.5995416717992182 +4.625963186708558 3.3652445601945864 4.690552648694416 1.0477344749218673 3.854806830751295 +1.248174592555689 3.916882347116062 3.880683332784487 1.6957423491856494 3.4490532296647034 +2.5283405654520803 1.615656976277605 2.8441100708818454 3.4173315715602444 1.0777635282326075 +4.8686419460076715 2.50107695818817 2.7009447910036606 1.7372032292578843 2.556200651237094 +2.3726002629632905 4.388774360957148 2.5770461450805864 1.4859636388740172 2.2924700715104995 +2.3106107616159584 4.037051318652269 3.770970488340421 4.687481447396873 1.95463278777637 +3.442670228705946 4.095566796151794 3.213409481564287 4.24367475952937 1.2197214726170234 +4.192417945341686 1.9311159560941498 1.7553043402285495 1.250063073690522 2.3170574925943925 +2.528452972874717 3.0326263995564937 2.595497381718724 2.7711406683971522 0.5338926936447487 +2.5501797060043176 4.698499164057488 3.731889897460235 4.37453001253361 2.2423788286887176 +1.4318536927955283 4.4365613604061345 2.6479612661911185 2.7539507874550577 3.006576449454716 +1.1769351002334711 1.999954016177218 2.3919520508533125 3.4320894932409587 1.3263657244734328 +4.722327234967112 1.627391175102078 1.8329628168762504 4.932951977345038 4.380475089493933 +2.8987092790836657 3.114797545890737 4.977798307604875 4.706766788544263 0.34662980739686383 +3.3999387416799753 2.5066485268141574 1.9620865066899533 4.203449390989997 2.4128147436330103 +3.9563350038560055 2.6234238903340055 2.716155907797987 3.0519581198667844 1.3745599885711628 +3.531020508342229 3.7374685386730815 1.353915670322369 4.114297125062668 2.7680907797436234 +1.0542645532325006 3.5104004365491415 4.280667701592723 2.7281624033910985 2.9056627777943764 +2.504666066992564 4.112376750448178 4.187309024013466 1.1562987863807348 3.430999373700284 +3.2983420921143827 1.5839539995433833 2.458004428320036 2.560010229027396 1.717420075382601 +3.3548906897083737 3.011227536442587 2.0992715144409573 1.749963049320963 0.49002119006943945 +2.970491199680851 2.269695704149112 4.165052684287045 2.8751251609587443 1.4680011382820721 +3.0433307523829054 2.8476708735329503 3.2568187363949797 3.2395275901095144 0.19642243235293785 +3.776731586808451 2.4489446926855565 3.5791743542408168 3.073481716505174 1.4208247886578256 +4.291331608393227 1.783232116310808 4.229696824185222 2.3625639929822033 3.126779184966583 +1.0989001195683032 2.037475471641237 2.2745333469838367 4.3793759354948385 2.3046227487223425 +3.854014039607881 4.7161221407571485 4.951081539538672 2.1002710447215227 2.978313424646035 +4.114124724526109 4.027191306549402 4.390086578532207 1.3043193046784234 3.086991591752094 +2.805886045404267 3.4872818021683405 1.3010286667173503 1.9981242547400364 0.9748037936819792 +3.9193002601675233 1.7540639606240322 4.540196342540755 3.761169725492356 2.301115099887588 +3.0975190701230386 3.8388612751892324 1.294717332536981 3.5729990266148097 2.395862212770707 +4.895098894111747 2.886203881380339 4.416770046829513 4.2872791352773945 2.0130640994145526 +1.50422469905345 2.46515561149227 3.625821677711467 4.389215633846179 1.2272565138321774 +2.2995391100993587 1.8635101154188076 1.394494691675669 3.716037994341188 2.3621355994847666 +2.6353930905700955 2.6972146470684892 1.000451671253301 1.9403211746748648 0.9419005193276948 +2.735994954605275 4.736778340029259 1.899954195524022 2.0690587595777776 2.0079169576883573 +2.5112897807679544 4.843607743133797 4.557159344934947 2.8988858083325084 2.861743908837811 +3.049489308730697 2.5782187097095366 4.880590251936679 2.2220102295273545 2.7000266133976774 +2.5268715045479797 4.2235251402972604 3.792913746044847 2.3497909364314458 2.2273834432642556 +4.979805080674829 3.2217120736995755 2.005999718146015 3.1885942090212254 2.1188253233864485 +3.8826278508984617 3.9018231189891934 1.7581112736645115 1.7091038875438973 0.052632520474038 +2.9395508054319985 4.593188046707855 1.2573442917276556 1.0149115742025474 1.67131377911541 +2.2555350386873716 2.2775225701806097 2.2927007928769227 4.132544096802057 1.839974683124559 +2.0113363815824568 3.159677733325814 4.467386624978685 4.194776296058524 1.1802560110237608 +2.5884704974904156 2.61437296143029 4.749059518595503 2.9687039931514922 1.7805439434670454 +3.923966715835517 3.3736583979378056 1.4402294083351497 2.787755994913581 1.4555642020478272 +1.4317008610318869 2.196647295274587 4.499235115053517 3.892763354491904 0.9761921140940055 +1.4823462513753038 2.9804982816514913 4.368182134369837 3.886520389295204 1.573676441486306 +3.372233155393205 3.253140737976104 1.0551130555089996 3.5842519953172243 2.5319413067329424 +3.3889560899013045 3.156528579007097 2.270144839976806 1.0278640705382522 1.2638370377296757 +3.810705112950636 4.265401464563473 3.208810725633987 1.8270109155081746 1.4546887940153232 +2.3214723089461256 3.619325778855816 1.363408713517757 3.280185548295184 2.314834133085132 +2.422604097684237 2.3697985250999847 3.9558644625861974 2.1718162388836477 1.784829541718809 +4.36702836235392 2.7856606838048963 4.442519545471486 2.727011151044523 2.3331722581303125 +3.887415391335346 1.042351466753062 2.321738952416462 4.836853588045362 3.797392574558791 +4.314396646218514 1.6164314435401672 4.155843805283945 4.703245562745748 2.752937507270276 +3.8648302884811216 3.5174699772061713 2.134503686556628 4.228317803185137 2.12243179886701 +3.4149306819583374 2.4651079676916834 1.7514439833548798 2.7083832123343465 1.3482936907427439 +2.884417722405495 1.1256412862391976 3.974708862898186 2.1479379964042447 2.5358206464742032 +1.6163065555011351 4.535384071593732 1.202799691688039 2.5162336908275025 3.2009564844047493 +4.273926620032396 2.9905255205155674 3.8371854637448872 3.1743370058110654 1.4444675352621295 +4.740446322486513 4.037080880310499 2.0196149910221797 4.526534177407993 2.603721711765059 +2.1259063735390997 3.142312904521875 2.03170390333373 4.930725829673229 3.07203684314196 +2.78345068110912 1.536228762783347 2.8536792131457975 1.6057703644865118 1.7643239521455139 +3.095777417530923 3.5078117142699763 3.1304423989072325 4.072184939906938 1.0279354431178196 +1.227510392108917 2.3871222262497223 2.5644905980202855 4.743902692165575 2.4687115428875357 +1.821599982805611 3.820314929558625 1.6164515597649798 4.429360195546765 3.4506979629677312 +2.521313577124026 1.0027721142174526 3.3968641933262225 2.2060816988902143 1.9297489794327338 +2.9992573214653455 4.162298726646272 4.463000838651562 3.085985382311923 1.8024530166313593 +4.048621153666808 4.911605977545168 4.19399484381529 3.9025170095333697 0.91087986810668 +1.6561984996274774 1.5773500310467123 4.197483305565969 3.2370930191717164 0.9636215975153144 +1.5517030402514207 1.005541953407803 2.801303579224342 1.1435351027095568 1.7454192202758494 +1.4795200792516363 1.8070722812544546 2.4390209095447677 3.2631917152081664 0.8868753925691877 +4.843458607386868 4.703163447747478 3.1833618054822046 1.9393323471710033 1.2519153425708556 +1.7142266317042996 2.383860626782155 4.171484455734112 3.255051651596625 1.1350148773752824 +1.1808180727347524 3.4969580718918345 4.103394436906941 3.7011439974139395 2.3508104797638794 +3.7376729403585327 4.166612571174099 3.957641933699588 4.295546091266601 0.5460480075829113 +1.5341920423788942 3.7736003304545687 4.9675195904861 4.091731316120947 2.404569521186176 +1.345216933692658 2.428033327154331 1.991293700166969 3.468634621903115 1.8316734264015377 +2.090483526946043 2.179124876530797 3.178025749208372 2.502282210168623 0.6815325519813206 +2.3226167109721527 3.8661463315683307 1.3715488899263635 1.3338772782917054 1.5439892616145143 +4.693339837317316 3.4078416043690987 3.0993161169492476 1.8509368398802475 1.7919142073013172 +2.5481930517163716 3.3683765812671647 2.0150489865400707 1.4371005537487616 1.003357071591329 +1.8437700821119867 2.330426124399386 4.903062947799049 3.3809768045468194 1.5979925941553303 +4.615247857339936 2.5006291702906878 3.7819550071912076 2.4100689085297837 2.5206514355059784 +3.0575384514997856 4.465871824722235 2.592864675692604 4.83210915731768 2.645301256685234 +1.3589833975626973 3.5366638446133196 2.1056612635651737 2.0102797313073877 2.179768282676496 +4.916695697311477 1.3882905522217937 2.2326426007387843 2.2519288515358538 3.5284578539873697 +3.4143076793415785 1.1778618668189735 4.412671238624599 1.7488963875265706 3.4781297172032293 +4.912262995533715 2.584438249641381 1.9490991734956018 1.5245848231854398 2.366216490773397 +4.744913555304938 2.8305610001799577 1.597716365199994 2.8235079727295638 2.273171962347651 +4.059909669095716 4.993518795253116 3.1961916812907933 4.738048391876528 1.8024838741089044 +2.953114852883415 3.441315314309341 2.711084954051512 1.501448621843982 1.304438479474204 +4.650762082510129 3.8431565703166237 3.1498524329561186 4.837138232724259 1.870604189406339 +2.360680697842963 2.474817726805031 4.8536387409021025 4.015559255555177 0.8458158695246004 +1.143319766420431 1.8853429757978004 1.065149779753149 1.6830990672614914 0.9656395627700634 +1.0457016083546042 1.0431561448717908 1.0412017338110529 1.2764058514232683 0.23521789116919495 +2.3770852914580907 2.730604293312423 2.1432235637871533 1.5304037879295338 0.7074770401605033 +2.6173450450376428 4.245851587107737 1.1609276278645302 2.703550424414678 2.2431492705571987 +2.2764948870535258 2.487154324029199 3.540039958454127 2.866527719401878 0.7056884117938179 +2.42359083454392 1.4537939278504513 1.049178968244373 2.6821093834437755 1.8992018800315869 +4.700335318933158 1.7459965586875925 2.3890036230819915 2.4652588372871085 2.9553227180771264 +2.9270188167345847 1.0028705871612948 4.436694275651071 1.1420531805253828 3.8153645114275805 +2.4990056598273886 3.8646372141876153 3.328976679063966 3.074089327394306 1.3892145638113291 +2.278773974900699 3.7941284467045766 1.312487231481616 2.752275897010068 2.0902848075322678 +3.4582125820260066 3.7528511239109887 4.487123262457372 3.99151919593849 0.5765719912674916 +2.517373466252519 3.027304047866299 3.6288489958553556 2.300708836585867 1.4226684366813478 +4.571254593478843 2.7768562097581846 2.1158423941535776 2.527189876797982 1.8409433209572745 +4.287212811485556 3.8856941051699643 1.4846563686850693 1.2080705807199572 0.4875622725618017 +3.0503781505652823 3.267216112262281 4.803089279735224 4.262767426540743 0.5822082159094178 +4.154109778368598 3.6930221563580354 2.1822306545147554 3.0528449040239343 0.9851756019206861 +3.4923601908505604 2.4392978248240036 3.229968323929175 3.153619737631673 1.0558264314607193 +3.3572578737594365 2.7418538492072586 1.870673761375814 3.0506129722480178 1.3307812197310032 +1.0004110934785335 2.878614210641172 4.314259038312634 2.015547853870959 2.9684541530562165 +1.4437825020108153 4.655050083347396 2.080528491284883 1.734152424433558 3.2298940940270295 +1.3531673346779756 1.4305495088209144 3.046899239175368 4.89341096795118 1.8481324534193226 +2.9479303783235156 3.87078310908049 4.0997419410650675 2.423996773558455 1.913054894426025 +3.70234667230642 2.630763519538469 1.485013296096649 4.214209392727175 2.932030318253786 +2.7351852666388785 4.53012417107067 2.7699481482225377 2.0860675390467356 1.9208066946596858 +2.1397124364351883 3.2202507447476876 4.298195885383171 1.2287123344994795 3.254119282521216 +2.6055975853260387 4.822642041420451 3.2396337127719566 2.7431870837460046 2.271947485258011 +1.7723748376103745 1.3119185751638471 3.5392672847874644 4.337743749436203 0.921729154483123 +2.32774518440352 2.7654575115575835 4.471463563034595 3.8659225454368613 0.7471760203164476 +1.7850128521710165 3.015935715265203 4.882002939918719 4.633762907004236 1.2557046662449625 +2.1208490451271453 2.998958005002611 2.0296481067853067 3.1749193729135268 1.443163753159186 +2.6430414607839747 1.3017632789601898 4.517659922603189 3.763771724647976 1.5386274974966083 +1.4300121081423636 1.9768628124737249 1.9227865980308931 2.795055543773751 1.0295138690348287 +1.9967660881233051 1.695364815772166 3.8906986481552943 3.465408052652031 0.521262714567622 +1.822492614377369 1.646468978443826 4.262379047777742 4.512405165443203 0.3057734127129559 +1.0996511826912574 4.881901923066773 4.548108926840737 1.0100445632780035 5.179123487983628 +2.5505175966540494 4.329761880070635 1.8102088919934847 4.242853232312271 3.013879345056073 +4.197994549302143 1.7939870989976825 4.009182039447711 2.3296379565214296 2.9325961446493167 +3.7238248751159944 1.8190028046261677 3.338778747909026 3.974797204126417 2.0081998398750813 +4.813011485609874 1.8315698601237007 1.9390688231580162 3.3049374374791234 3.27941934460494 +4.216164200860209 3.99799858362617 4.447288098635338 3.5411166069321136 0.932063843799745 +3.7245403797820824 4.787747025932902 1.8008962703167035 3.5592696948105087 2.054820058395709 +1.3965637028376672 1.8312166927229678 1.3243338105607307 3.7396254786002836 2.45408986455621 +2.8870269325848463 1.4537023885988742 3.957659656123928 1.1599559784294313 3.1434956841990265 +4.4410807379685355 4.450629200550797 2.714430628582052 2.336604991577611 0.377946272789528 +1.3807165006225328 3.1144158947060694 4.490193583075234 1.0610458639303189 3.842494979666518 +2.1695568175414044 1.176431177916863 2.889136456713114 3.153656584699511 1.0277496943271713 +3.258688599391188 4.453052731469966 1.6960132949106121 4.997616247559568 3.510995263018251 +1.7862889612053459 3.8475294530417674 2.2898466253640395 3.27741354735379 2.2856073132964823 +3.9898161349918135 2.5914072770484324 2.7046356125122286 4.691365153217419 2.4295352645897466 +3.454477968698045 1.2229459992242542 2.3091931720655547 3.5622870408119005 2.559292709846465 +4.948193614210264 2.2190619863480125 1.5949030128277113 3.8285455249972387 3.5266582361166012 +3.6188074452346335 2.3552889001175257 3.1780314292355567 2.34705416019195 1.5122838144746586 +4.813224481950753 3.547234395231184 4.218741240121935 2.873927679431363 1.8469581513097362 +3.340767781626906 1.5958747002133427 4.651700786694443 3.3392510982798655 2.1833863721715496 +1.8532576715362716 1.4642966071341639 2.359726917352067 1.8320593200638786 0.6555332202479981 +4.750627815310196 3.6560328379036027 4.177323334660389 2.367318633920139 2.1152435276500765 +3.8779862751764527 1.4045513671663694 3.8505398401756703 2.380409253412682 2.8773536776522515 +1.5825492386984812 3.2270860773493246 2.6843812942182668 1.284292247998898 2.1598034056420903 +1.0320072216831635 2.6022486680056547 4.370263652464587 2.1743844437805335 2.6995450910995826 +3.3179581208911015 2.087530328064985 3.6471833957609014 1.2587396435036697 2.6867482411002994 +1.251241555437851 2.76717020142172 2.8748530501408265 1.9180523752832328 1.7926257811161905 +3.124082253498979 3.0780975544660736 3.822609461693075 2.908822983180652 0.9149427964945578 +3.598832527146727 4.822228833925232 3.707937142207768 2.7183651293351767 1.5735155836851435 +4.444662412152263 2.1222543202725155 4.662433039488469 1.7347938737945388 3.736930616125162 +3.112349829453489 4.987244302009709 2.277206005979117 2.5558608886414724 1.8954888094772384 +1.8767900125896468 4.870718571824185 4.475493590316235 3.1268036120655847 3.2836828219598098 +3.3885431984734584 4.3413998028125675 3.5693633352080303 1.0412551174746967 2.701715541836977 +4.691614965688602 3.254690520850443 4.458366683650064 1.7389299074016829 3.075725644491986 +2.171797886949524 3.5002430339980277 4.745226434048524 3.4618335674454226 1.8471231033053663 +2.7141177950794333 4.077359961743062 2.397929715467179 3.405594012050708 1.6952334764211456 +3.2887623739694924 3.630668681941742 2.0919248950138196 4.756185305581942 2.686109353461217 +1.4737732087660325 1.7642506255223611 2.795208469877333 2.0124023515626868 0.834962603064517 +2.184704141436086 2.584527377865074 2.247147964952603 1.9011846050058239 0.5287241878467593 +3.553605264462931 4.922566483890936 1.3980184811386422 1.040568707352905 1.4148587071072805 +2.070142430634552 4.668396411778198 2.180487702547674 2.4181697258920685 2.6091026225025895 +4.996765066366709 3.0162930543195445 3.6581046328595033 2.262125449319639 2.4230202787799304 +2.6179339746996626 1.7592831738864532 2.3601550385377505 4.0418155002467335 1.8881904316600155 +1.6861860222380005 3.7028044302137273 4.568800983765022 2.3824838482978876 2.974345712963402 +3.9597059059813677 1.3200505088852936 3.7467771961131673 2.3262115390480638 2.997630297660344 +1.70262902896172 4.811223820112814 2.655908020514607 3.4125751549893066 3.1993603623171096 +4.70220826585745 1.138443441485295 3.104470333380413 4.859459300005826 3.972455914973662 +3.5989730450696897 2.6208879358415227 2.633761653316186 2.3854668917400907 1.009108898741858 +3.7540449403991842 4.2272670300399735 3.339973570485307 2.1477426092525245 1.282713456328435 +2.648689268455351 1.0895836334544056 1.3792094351622355 1.2389125050470327 1.565405254140745 +4.225540107160067 4.560406741901754 4.16116321215764 1.8703325538716689 2.315176185089627 +1.468735549621647 1.581363821657043 4.29171411773625 1.591561829537378 2.7025002325859813 +3.3968357994789025 3.684904906514449 1.623437790798798 4.381201246611392 2.772768127457411 +1.448867611319288 3.078570958927617 1.111762231730713 3.5127582977333303 2.9018468447121464 +2.2486797197326047 2.0634285920721354 1.413033039449084 2.233930114111703 0.8415402470999954 +2.5557503374019115 2.5937943391258775 1.4726398410453334 4.186657774898861 2.7142845634431447 +3.0341680961178477 4.197254438861732 4.140274907482974 4.483539835854749 1.2126832445974605 +2.1944926290666515 2.0670482184601746 2.0066582574534184 3.1237860333476055 1.1243738459556614 +1.6184771440185015 3.0337124426768134 4.7662551588316795 3.903078662966213 1.6576985894857565 +1.1007295781767041 1.7952129590859571 2.1402469546799248 3.2820841613174805 1.336450288196685 +3.159479384779702 2.4209610438989464 3.251419107750574 3.0141886077890936 0.7756852776282647 +1.6101740661641544 3.0991300724456985 1.2837346597676818 1.7179900009311657 1.550989261720048 +2.261109247696233 3.8196646360901534 1.5214370206547194 1.3435452162204995 1.5686747249753807 +4.269151586582442 2.4824376956164778 2.2390605753940047 2.726475138098706 1.8520041803698368 +2.1013038756367735 1.9844765799228221 4.6201035400705806 1.4810381855767982 3.141238595969273 +3.0636946236350524 2.2753411234282153 3.3119506544481045 3.174888311218055 0.8001795593615745 +2.121361398312451 4.217961161961653 3.4625381206388908 4.273925493026146 2.2481281184584176 +2.205136597253602 3.4767185330291412 2.617859840445837 4.651298562650933 2.39828973569787 +3.651584590877623 4.746504172868536 4.604735665377881 4.190046328855351 1.170818575549881 +1.8245732838846136 2.0777107797841396 1.575576483075884 2.4697672750682007 0.929330815325807 +3.52963303250038 1.9695736931207053 1.1122865215286528 3.1056610187427416 2.531269845063791 +2.3924295486047007 4.317342103002162 1.2727663192892704 3.558296852215982 2.988132888446767 +1.6685988798350029 3.3867478615736037 3.109603598343484 3.4238813634078133 1.7466557866572396 +4.216157633106191 1.8067834890723726 2.7473918383591105 4.3124231125533425 2.873048321059832 +4.547573381217019 4.549956888865685 3.3109563949877177 2.9143150507193147 0.3966485057223296 +1.7634622068240282 2.962950034364535 1.1230685419066302 2.553371280670169 1.8666914509185295 +2.7385403598518563 2.7605563185681286 3.2001264944830137 1.9579880328436072 1.242333554373425 +4.475264230537265 3.104695419045682 4.756379678659263 1.5752017396907756 3.4638637309243623 +2.3875799795578736 3.0680189951098518 3.2681846759937416 3.222377754657153 0.6819791257272334 +2.101974807927339 4.5836772214617145 2.8600182051967797 4.946519971824918 3.2422733523693967 +1.5669908908663088 2.592934652833879 1.4788322120460702 4.082731717731509 2.7987235016037295 +4.7468545720156605 1.7644424057120798 2.9594283471605625 1.3259178407658876 3.400461572230659 +4.4310604505930495 2.313413684818846 1.6941138198267227 2.7106868564753532 2.349010124166127 +1.1561417669016545 2.603934189314965 1.1382394816393253 3.5683449965825753 2.828695054641804 +3.8515062948213417 4.8914383380510955 4.362607937506559 3.818883414421627 1.1734969158629893 +3.6123906339962626 4.7178800639398135 1.7249004436602862 4.386549531986024 2.8820969361043614 +3.8630170720861225 4.724132603898524 2.6162486927031825 3.708458904670618 1.3908425885967488 +1.762907306583013 1.8404421140539196 1.4976726312306052 4.957587983723922 3.4607839997301917 +3.3396206829895254 2.230836966309992 2.5797771307595956 1.630634124670086 1.4595457431619985 +3.2914844512248584 2.086863209474915 3.670570132325085 4.012892128168708 1.2523165274456525 +4.706019725673231 3.8388829878692805 3.040000410749779 4.757132045101605 1.923659837845831 +4.122853262422044 4.861115003467657 2.1357038808994795 2.217659485127601 0.7427968223922987 +4.868484012798839 3.291250596142798 1.4987664206665623 2.732592073126586 2.0024961900799942 +4.759416377656885 1.6659765021372004 3.239256878432143 4.844550257644908 3.4851595511252538 +1.5956087525013185 4.2647134556965245 3.7021119067560533 3.445671311097446 2.6813954754419407 +2.9449939843043165 1.287257050798111 1.5874163139147401 1.8460152525179532 1.6777857884000764 +2.8555337090134145 2.9218248031011176 2.7088256251621217 3.364012614665957 0.6585320799858148 +1.3697611993141368 4.420881887371209 4.1184602721437615 2.093633373003991 3.6618658392368557 +3.289115070896777 1.6431548482295044 3.8696844119850633 3.557260890595096 1.6753487730382008 +2.07528919903305 4.349635709215734 4.592458868811555 2.1495867074815567 3.3377052663441167 +3.2018895780367442 2.4257128006255972 1.218438391953769 3.149264963876726 2.0809953485378365 +3.367133808564921 3.6088134152719573 4.9451321861196 2.5050208813274053 2.4520506136849485 +1.4378712889229024 4.709279259029572 2.1793340877014535 3.1003389919053044 3.3985820779326463 +1.3445653856650557 4.242862457128881 2.9057599084778944 1.5271720609855626 3.2094595133307613 +2.9232128391733756 3.296378527652213 4.100047709706657 3.9476494511801157 0.40308542551152493 +3.913592356845172 3.4029890169812242 1.143711062219121 4.125954039094877 3.0256386009907046 +1.381972332634922 1.0138957044485588 2.9695464992190836 4.573007909815285 1.645165310687106 +1.270652906456721 1.0027847717404583 4.655815158683678 3.477586763859612 1.2082944541650702 +1.8939823776482005 1.1732548845951025 1.0109257137883518 2.3862873609250648 1.5527613402120801 +1.3385007912741012 4.214577566240304 4.894802036697881 1.7040528748395185 4.295660348467955 +1.1125341377019895 3.0491481027260208 2.5253895872319427 2.2718655153253273 1.9531380147245638 +2.59228547397832 3.67587557645127 1.315413016525035 2.189925118709771 1.3924578726284338 +4.346384549712809 3.326892439007827 4.3732075308522855 3.825406432396245 1.1573461916208754 +2.8639883151198244 2.7589775035772903 1.013651605337997 4.401978515551651 3.389953763846762 +4.608472028947741 4.588339073562448 2.6514465832016194 1.3568173335593454 1.294785785341291 +2.9649647687492013 2.795036882418541 4.36234461561283 2.3542561353171076 2.0152654493265127 +2.4625107460516085 1.6370678767957259 1.325582525417647 3.21703897268063 2.0637256170087364 +3.8197206701347786 1.3586025961170756 3.7502628302250423 2.8688837283831465 2.6141788950682456 +3.3643865861949904 2.3319866487148957 4.9714139901614125 3.0802982741145435 2.154569163983455 +2.2493017150436523 3.346174363578637 4.0318081533792345 1.7610775107954484 2.52177462479761 +3.9499493743531096 4.646016363199397 3.5558223350879206 2.4431969112362846 1.3124193639087205 +1.4627964091211578 3.746735092441471 2.949204340135703 3.999301628383301 2.513778077705326 +1.5210025164946468 1.6105492883339783 1.4730585945959631 4.469185946569905 2.9974652180789736 +3.3123681545150574 1.7325075850935825 4.431689187519726 1.5349555944610245 3.2995492007193232 +3.185237784078619 2.0868319380515703 4.471508567519275 3.7871710619876615 1.294145750703385 +1.5105622588551135 4.410927675979432 4.453386793290425 4.157052575902272 2.9154645463880655 +4.137223890980298 4.099539380272425 2.208808244615711 3.9269553904560466 1.7185603676061492 +1.1344440576418546 2.650526151024304 2.7278699131484077 4.240314920262845 2.141493594064736 +2.218147701415461 4.053665948791859 2.7223288946773603 3.4027094033796006 1.9575609500277744 +4.778628347572876 3.2731852801603014 1.6605288446883977 2.38592499993716 1.6710949737433438 +1.8326548325609946 3.3054945396333353 1.0471949872105721 4.472863888233217 3.7288690272202687 +1.6720823235852182 3.9599232726581617 3.0245791128638966 3.809346819235023 2.4186931515217025 +4.440489892494517 4.700515466198398 1.6667604023085012 3.2591890231649683 1.6135185810838568 +1.5173372715401152 4.989847779295488 4.703344069091301 3.295898612348457 3.7468963076361677 +1.6741019906895631 1.7031493298798193 2.3813385370535283 3.485612393734642 1.1046558280584113 +3.595467529629977 4.421432903354898 2.601735508724383 1.1186352826919759 1.697588018056774 +2.3390143572676294 1.1419382348259925 1.2837064131390825 2.2192586038667814 1.519292317000024 +3.630434139586681 2.156721212340104 2.0267335621847917 4.074440281039294 2.5228818042816727 +2.7244369455723927 4.879947230792354 4.300730450014422 1.7757207004910134 3.3199245209608765 +3.019055971982687 3.418363262176429 3.7646508939674814 3.387940910576229 0.5489596739183187 +4.618033382273124 3.798553181951534 4.642562889134439 2.2543708182153326 2.5248780497917127 +4.10231621694895 2.8615332135198472 1.2644483020943933 2.194342412040376 1.5505629678638584 +1.3655174563227614 2.6944984350168144 3.527862340868075 2.4249181739032473 1.7270426390718732 +3.1449389321949996 4.552846942376133 1.2563142311362165 1.3289739442899342 1.409781684888756 +3.887114951258664 2.2542276488451822 3.4087951689836458 3.502814451448522 1.6355918096696336 +4.833212112279771 3.185743891908713 1.121305473270846 2.1429043108841146 1.9385086334977624 +3.0684460413623245 2.2805936321574123 1.2164887480434134 1.0569835357191506 0.8038366323131788 +1.2898460639002596 4.435997902593843 1.2857536879113862 2.335181503844785 3.3165599848291234 +4.934322228466975 4.279639287185776 4.051236484579805 3.495353993148576 0.8588452118306257 +1.6450244196466768 1.8901906752292952 2.799428608435252 3.8779012496961816 1.1059881241788843 +1.7853620583830168 3.3215815941849 4.149779259454365 2.4662095822173438 2.2791176626693326 +4.249041891872246 3.1507828457672944 1.291468996192254 2.3383617424222534 1.517286180804514 +3.911367447179959 1.4885984351059824 1.2663229473028061 3.464733235172847 3.271516082747989 +2.8243605237565794 3.131860447930414 4.25411588474979 2.05943198169474 2.2161213048242336 +2.730551302672691 1.613071124630265 3.0592926036446437 1.4011371048246484 1.9995603533238802 +3.8665657824731903 4.400253428018448 3.3205125753437246 2.123807806313489 1.3103147741009984 +2.748016083654326 2.637460990402706 4.678494368527142 4.335458017095093 0.3604113858463496 +2.30282898225375 2.9279760380876487 4.129954513129743 3.6244637539924836 0.8039463595234163 +2.5821771863321303 3.312859554421854 3.1389041858755857 3.694759231116402 0.918080363779161 +2.9000871378335797 2.171040344139664 3.171898692332756 2.6230521832591243 0.9125468305340232 +1.4651561363831687 2.4444189243499963 3.0961631945620507 3.9074451924422218 1.2716658712024185 +2.2528452263896805 3.2582131891948882 2.800582182390746 1.3388289080373688 1.774115942016731 +1.3359541648741917 4.045728995806888 4.59456368193867 1.772259499306724 3.9125797798457858 +3.5799746316492675 1.3229973948584548 4.300632415361156 2.5586885689161827 2.851019924791723 +4.626949887509209 1.2681341104378308 3.2687075918147497 4.5416681199301445 3.591945424201686 +4.44992624177439 4.376737951960877 3.053951997232524 4.442509602166784 1.3904850765062513 +3.387141553773461 1.7042604333573013 3.406411670228944 2.7259140668459554 1.815259169833096 +3.763863014249441 1.814060624727174 1.6997912396760069 1.3135794905330571 1.9876842992192696 +4.8449160834498075 4.195414257655869 1.6811836445035087 2.347521666436494 0.9305154384443193 +4.814307576007099 1.4245099159463175 1.9460536947426208 3.63172752336062 3.785792444474633 +2.7179648850774507 2.0988228297545297 3.7660306854125944 1.0097850649745337 2.8249295221037785 +1.8285051068359714 4.0199470142766565 4.655282399544976 2.155231022065948 3.3245562897508676 +2.95625120915542 4.605355252393368 3.565339827924227 4.538451586788462 1.914808251670018 +1.75565325296165 4.149998778907413 2.752606695791789 1.249440529173218 2.8270831296732792 +3.8912389273649644 1.6293761302909027 3.076120125629186 1.491095013143727 2.761942780000563 +2.667039091175435 2.6335731361844803 2.062650031293629 3.8398650530056626 1.7775300851300269 +4.0854566522323665 1.2540534766467228 1.234461299639631 2.6987979122161727 3.187652060317846 +4.871365685050118 3.6846740074882796 2.0934746708465024 4.204438532031583 2.4216534766196327 +3.9385324221257463 4.739917960151431 4.2026985598202256 1.1345233304506306 3.171106749807373 +2.038911532859993 4.905277592508545 2.9102740374516136 4.47393086021556 3.2651304793654736 +3.163889904503701 1.524436720314224 2.5668420134235848 4.348932696790893 2.4214982855442155 +2.1123218801990395 1.5512294141674596 1.132340681450084 3.473873619079463 2.407820851608497 +3.1640240740095695 2.833200016234334 2.063483507514327 1.1739027313136265 0.9491040588832783 +3.1495395301033846 4.995521749588168 2.892114503477101 3.9078907944685515 2.107000671094889 +1.462162464602272 4.375675644447085 1.8434276812757275 4.911327625824294 4.230906418120179 +4.217342360940084 2.149056859983359 1.000281426428641 4.344404859278093 3.9320435459949596 +4.848080512556603 2.8262671688713 3.531494113831217 3.1784808182985564 2.052400444242491 +3.952206239273135 4.436991870837922 3.6797707735139036 2.756248764396431 1.043029246903481 +4.544808282856563 3.316551165012022 2.315786902714684 3.4171719435907715 1.6497468156663917 +4.059493731631091 3.0703024482713266 2.49492114427967 1.4068819777135837 1.4704858459219392 +4.254539331575692 2.641528606720704 4.2781035047911455 3.9089674311367886 1.6547099562673113 +3.841791982914391 4.604368960276811 3.7520454769604714 4.59983987307162 1.1402977613240637 +2.543243311063726 2.4472185621448297 2.9962946630065237 3.5460232489769505 0.5580522113906387 +2.4101138643767013 4.6300623500101 1.3334456849652807 2.5640483544631234 2.538218707881816 +4.452949981621588 2.652121498946938 1.2917075345903073 3.811910864222849 3.0974841479341313 +3.3379547312188595 2.903993318995455 4.726847274788106 4.508835082662467 0.4856457795702113 +3.1203736093799956 3.3228926397128804 3.4429031612488257 2.805901822127089 0.6684195267119727 +3.6423984024702523 2.716250598291285 2.8756761187912896 2.809293035591554 0.9285238117143931 +3.7120223945945243 3.426931057784187 4.437533335879575 1.4730066298948707 2.978203428381081 +4.834244563329387 3.4405940390039094 2.690339410403368 4.554161203195781 2.327250192660987 +2.0058470489810567 1.0791377902355497 3.5833872200302843 4.398791273144208 1.2343718321799397 +4.364305656672114 4.621152387830698 1.2299475497539833 2.530010610508605 1.325192138991748 +3.6455433082527633 4.0657762925027825 1.9478111664671371 4.2690768681169615 2.3589977148584795 +1.1155020230480845 2.0998069261902197 3.4566683149272763 2.7723249221298576 1.1988252673409625 +4.387155641264487 4.067671364934721 2.8679013724368505 3.705102645132779 0.8960893782573456 +2.6454282845661323 3.621423640806557 3.533832230633132 4.550790181497421 1.4095284350551311 +4.069103571757512 4.2650097618566924 2.4879132150327368 4.286591250601698 1.8093153155150692 +4.74460028022872 2.487547260386456 2.568305042411105 3.6247366480319125 2.492054588433737 +4.665349512463463 3.1762783666918386 2.334503837286525 3.6631072826401763 1.9956252133542534 +2.039543788184706 3.2910637844644186 4.5594094350574075 4.560833937560945 1.2515208069765977 +4.974059198691273 4.097371434174458 2.4282757881971713 2.130849769493961 0.925766532693385 +4.084863072392135 4.485757215809606 1.8455051058650178 4.871503080024813 3.0524383456256103 +2.180803165328125 4.686640245326721 3.46781489615133 2.9447117012589006 2.559854766193301 +1.1809520771650868 4.4107087875426885 4.710565384248256 1.2257854490811964 4.751317670370198 +3.8414632325257925 4.71614163550702 1.8432302908266665 4.976536724304059 3.2531018297484335 +4.15561049106825 4.700626934409161 1.2665745236242092 2.8870552187327423 1.7096785097588993 +3.9908158417907686 2.8513044767960847 1.2995779167265717 1.5542850552031173 1.1676308823181056 +1.083874006345364 2.0379672566218305 3.1603901806370978 2.5898786669221376 1.111655215210385 +4.591647042281648 1.3373446705279854 4.174323619079125 4.308589328236886 3.257070955238334 +4.423386692591129 4.735673113844051 3.6133027671070015 4.141347226085567 0.6134767799655689 +3.0465238066444407 1.9281148920917843 3.580152451848716 3.5793225841596157 1.1184092224365965 +1.85236887640357 2.3739485452164666 1.836437551476184 3.7243331456116717 1.9586207201178991 +2.971165165896822 2.7814667828739483 3.725226204510056 4.4768222183638215 0.7751658174625365 +1.583784264649736 2.361538925949426 3.3072100257171977 2.6499964936116474 1.0182494487875007 +1.237420628837267 2.8138578911452066 3.3566496792337994 1.0176829980847675 2.820623969535512 +3.294127181237045 3.210761111833221 2.3099322606965402 4.156955130849055 1.8489032923315045 +2.5298286728417443 4.981028342681157 3.2129876619360496 3.216562485883321 2.4512022765955277 +2.936232978890268 1.6296493656437323 4.89832274792241 2.1217396655959444 3.0686437315964046 +3.008192491653378 4.057579180795687 3.6504160159971173 1.936368393661069 2.00976906011236 +4.580111347908332 3.1927010815860113 2.0478419095282874 1.8602127272285478 1.400039984124397 +3.6992587904491856 2.3200526556126073 4.102690210004347 3.6818178750339046 1.4419927478022647 +2.0495846807331266 3.9426848735597533 4.394819565429383 2.5399261883862825 2.6503693667635404 +4.382345411737962 1.9466712406844477 4.624177819362258 3.3835850944391113 2.733418917156582 +1.7768444298911974 4.688620771520428 3.7246327377383914 1.1068164678583345 3.915533614530776 +1.5916302335420056 3.2197026975955945 1.0903809633787382 2.9587859185418752 2.478216500769795 +1.1773912426614626 1.1202897945624817 4.006213558095885 2.0480922627168523 1.9589536959284823 +3.4788705915507476 4.4965022958392 1.156118634739498 3.26536598183272 2.341900650495835 +2.2923127286883487 3.014492715857093 1.1525511428205921 1.5463068249183318 0.8225493730173915 +2.0903314541185734 1.4877804982564604 3.4510490191365464 3.2994878600726216 0.6213199170694162 +3.367051742063332 3.9815639258293825 2.6346181715884107 3.2548468140419837 0.8731029681066959 +4.051311231703271 4.283787337118111 2.9967655158718722 3.1132233812671197 0.2600145649790981 +1.2949938374286845 1.1483233877187664 3.5443542855824197 1.9948859925728226 1.556394619580839 +2.761383799657917 3.9112988692789767 4.157687336737282 1.4361500536737317 2.9544999323822188 +3.8839836008792776 2.2426785019557647 1.0272110567565882 3.5059734907344615 2.972901887357239 +2.5321526433991823 3.2142155907264196 1.4047605222520776 2.8405122005494894 1.589525950039996 +3.0373639236235475 4.132162316465748 2.736887661181803 1.073332329210198 1.9914818260534095 +2.3152621196070067 4.749931395682166 3.350549046053211 3.5147194758089513 2.44019802759336 +3.3225324031997756 4.370746676351155 2.255541312461596 3.50606163968854 1.6317335110997926 +3.045847681184122 3.180367881488282 1.9878837720529727 1.986422441719839 0.13452813748883086 +3.448528163513189 1.6271619810448246 1.9194717364874343 1.117346339977169 1.9901708274331962 +2.7409113955879794 2.4881439761174806 1.1121895884604376 4.024408553847265 2.923167916953198 +4.170131000853406 2.208423719951455 2.74815870074788 3.5840040301340483 2.132353833349521 +3.9156182178288925 1.9479619071747956 4.118988047709503 3.5542804320098136 2.0470872106693747 +4.156396822432998 1.581508305696853 4.826927357327191 4.801541547116745 2.5750136529695733 +4.996717625217459 3.122457109072801 4.450481157639403 2.954271624449218 2.3982275641790194 +4.199923443365535 2.524968299287525 3.4459813792742464 2.1022761399711993 2.1473282247490357 +4.980844165527035 4.474734439858691 4.593826949477824 3.618718845689443 1.0986277206086965 +1.9704333357418644 4.702409761146731 1.6974911033668425 1.0167619712546299 2.815508362671686 +2.417011336194273 4.657221938577799 3.98293893049653 4.233523492351766 2.2541819282550697 +3.188222757237808 3.3374258617962296 1.0666137554931692 3.4086490701851972 2.3467831134713872 +1.8756985505582282 4.108711029919715 3.576915110181481 4.302470666740111 2.347930066811454 +3.1363233227144662 4.371245955759988 3.863053883279098 3.6439689255060306 1.2542057759117962 +4.9317048451050525 3.8319939299061576 2.5683857895501316 1.81143095724347 1.335044836385654 +3.941953359825571 1.700413598137688 3.7787321040703272 4.148596514986942 2.271849507711826 +3.390048416446146 3.3468100420477707 1.8464063733044722 3.610202896682968 1.7643264247022665 +2.2026213851910894 1.281622212918105 1.7640939287236606 2.790755257341896 1.3792291176623568 +1.1481455423240416 2.02145344871795 3.027135455753539 3.9102709527899555 1.242012482020962 +3.2326154354643473 4.224373994241695 3.4603763225457342 4.192387674118538 1.2326498520421625 +3.4826502406723265 4.695779521128662 1.1029340388898916 4.684635488397525 3.781569505444213 +4.378819474768894 1.337067396750654 1.8376965351023844 3.30117256951743 3.375502600715258 +2.647210253606539 2.768419104922968 3.6424728540535414 3.1795922038481 0.47848728506832877 +2.4059672543621335 3.649582689640417 3.6833207605489053 3.789645578715661 1.2481523616212036 +4.843624153774852 4.489823525750438 1.415246587731096 3.108699871437888 1.7300170254907279 +2.8273906135498437 2.6603990194596476 4.407299853437273 4.44768293561791 0.17180508090039964 +3.622433100435252 4.511676367241032 3.442918799256388 1.219874689200532 2.3943012974171496 +4.517170298180064 1.1617170458683543 2.456763462042564 2.243738095486492 3.3622085502308714 +1.285407256440764 4.232124895648523 1.1071167034466134 4.697342456087872 4.644659922981083 +3.691910295936845 3.337131318211942 2.8522749787371575 2.9853600954771182 0.3789192147849144 +1.7944114203797739 2.5794784013903125 2.344867832665163 4.223838997117378 2.0363847380875533 +3.201255923635893 1.3553447906598395 4.143735361633592 2.827665164617153 2.2670308057721282 +4.701559048478996 4.28697510301901 4.764891723135556 2.781560723659544 2.0261988306471026 +1.8738279008736196 4.111820020892342 3.643046613027228 1.10301236471058 3.3853187016715895 +4.823318684681297 1.9461578851031187 1.33630608475476 2.3575016348903586 3.05301402195373 +2.403544980027619 1.5522421220345546 4.693015053538828 4.5714835704402255 0.8599339843332777 +2.999165504527257 2.7746418047183465 3.423625297751869 1.0340316489451573 2.4001184758659844 +4.105885650275875 3.9369953489782525 1.800612534025353 1.3902158378413803 0.4437897949605439 +3.071958422025966 4.7985276237682495 1.200400201494384 3.9810365469716933 3.273068849595803 +4.9649827494690095 1.6024252317073833 4.162506275536677 2.9384842374157474 3.5784106821410178 +1.7657934373320083 3.5686842925326134 1.9510294764734688 4.078851680681964 2.788914263380764 +3.179781918604295 2.8165294824024536 3.294486750058341 2.7552231214152023 0.6501981187176241 +4.9901867615149555 1.0390748229238849 3.4561723755247735 2.1935017152481633 4.147966097691766 +3.9034579961093714 4.967712600799812 4.360271790644312 2.308461144621698 2.311398881789238 +4.917189114220271 1.735231719118043 1.4802900755793682 4.022494874615564 4.072794876308948 +1.6832117909393283 2.999767783843861 1.0570961068824456 2.422111961315821 1.8964672328588537 +1.9341061800643624 2.3686971463960274 1.1562669462320394 2.79506090262733 1.6954394532199668 +3.4972160224869717 2.864063118423373 1.1853472833211747 4.945441491521911 3.8130291179676155 +2.050869993340817 3.573826479709697 2.275926271450053 4.194229381165176 2.4493434385801747 +2.58090887492199 2.0468341478114604 3.4776755480439023 4.517116385216211 1.1686201556192908 +2.3858669084256836 3.1458053702083943 4.4011189785179505 4.776442285831045 0.8475694960940444 +3.6778823800461846 4.261726931887562 4.858452064738195 1.815446014633448 3.098509364466881 +1.8748693626525132 4.123949937129046 4.389359967779971 2.7233948751439194 2.798893195598849 +4.632581364995726 2.4622764596304307 2.680948640830067 4.171800800059131 2.633033145049759 +1.6430535510390532 4.432547174690896 4.1946403343509955 3.9935676713649544 2.79673110831102 +4.981798516492745 3.940618600468756 4.368184698610104 2.7022693519436527 1.9645176404885054 +4.515828545222401 3.7466792639347455 2.3130220710476057 2.70276742430551 0.8622598548531911 +1.6035142672342588 4.529317371002328 4.193927187127905 2.1748369755810613 3.5548627377696516 +3.2563212191492505 1.1973161569665831 4.590935613470958 1.4365671784995215 3.766900857420858 +3.9704360354637513 3.825239873057136 3.5067082766902233 4.415422077323194 0.9202405647646846 +2.227524880346585 3.9754515216239437 1.844884842429328 1.554039076481244 1.7719590296779089 +1.0398199351746045 2.5684067428073623 1.8078520545578578 2.2830648899635446 1.6007513446513852 +1.9305820284841282 4.127115785646053 1.2678598296488834 4.348648817626071 3.7836518516895 +1.18070226682884 2.1675074736456224 4.8201276921273 1.138780291607136 3.811312529761536 +4.827523869578419 1.6424402604625485 3.0299973910977043 2.4297598795057884 3.24114835627446 +3.7088070808613804 1.1216831141657586 1.341574382302408 3.4194198336360087 3.3182302720996657 +3.510154229756864 4.155111496323164 4.8250076775289585 1.7793013178560777 3.113245429619789 +3.682135014313383 3.892722168825063 1.3972674395892364 2.46857655811328 1.0918105041984574 +2.454140084208068 4.643634218189396 2.368554442498258 4.95421874520467 3.388147642743581 +2.039762604112111 2.576450623335246 4.066647886209651 2.095918881843166 2.042500144095214 +2.313444092234951 1.2699927521035388 2.8332833547052054 2.0568574537794553 1.3006259565495388 +4.215399406673232 1.7724048685666438 2.6117028722919895 1.5159048973978262 2.6774979953308593 +3.688078148684112 4.329282021613118 3.4809564926291894 3.8541018275096066 0.7418758977094315 +1.0787014934416206 2.181028885850317 2.4122461252893266 3.565058513169549 1.595024163360749 +4.246276817918865 2.9201652831387945 4.425188842712735 1.0428913761519358 3.63297508317637 +3.6781795314418106 3.778393368299228 2.214337531446487 3.0518806958640647 0.8435172584839595 +3.7800814809680374 4.34085921522221 3.1422975957960206 3.4389450032730418 0.6344062985170316 +2.5064497587382486 4.885283586517732 4.472757304057756 3.734537518845323 2.4907466413642076 +4.979051104619863 2.45632192887139 2.569784466424136 1.880708329717511 2.615145964635836 +1.9724992479997954 1.9372475425250935 3.808846303287936 4.341322448715266 0.5336417601612733 +2.6716274919832856 1.7462326291222423 4.918981984870892 3.7041102053850556 1.5271768374358916 +2.9726803355134086 1.4681721780213781 2.7796722728409504 1.5316396549056206 1.9547711404127537 +3.2589037125042104 4.717463888403643 4.896042957677222 4.673919591338656 1.475376757507505 +4.44756087975985 4.02731927715082 3.553089170539053 4.918898214107291 1.4289987222024343 +3.3393674231776953 2.046815464358622 1.2906232230473762 2.6972655973421014 1.9103228353889625 +2.6385469556058605 1.3031614559374924 4.7952442005085185 2.662873653174761 2.5160005134858388 +4.951791184172786 1.2916910995185398 3.145110869052504 4.564244392972984 3.925592004832008 +2.7612323402196854 1.7798963706049027 4.19639227103318 4.488861502193491 1.0239914728332893 +4.898874213733157 1.6556982099549598 3.312132613404753 4.936361535946199 3.6271628284794253 +1.0619802394843343 3.174634226728393 3.2736224400016365 4.359785783718103 2.3755120877510927 +3.5962822132328167 3.58472378363406 2.277135057140313 4.4545599539750675 2.1774555744378876 +1.9542647074095467 1.7026861229256895 2.834183530511378 4.978782922482985 2.159305058627865 +2.0463230185594696 2.6595196241921344 1.8155948926628755 2.975079427879913 1.3116457084772897 +1.4415972698826973 3.006230216347208 4.382919310538661 4.631008481365242 1.584179438650697 +4.70001188179614 4.760912875714299 2.2657473994980464 2.5106023587669997 0.25231504540716626 +2.9172670413156556 3.8173702430666148 4.9900882567889315 2.5869307083334063 2.566194064466111 +1.4952972680654089 4.99298549184733 2.8453236748799076 3.2451498137961647 3.52046642536801 +1.2206143553672413 1.6124482655328256 3.780923574171159 2.661827860625905 1.185710347948019 +3.433910095846364 3.4914712697422816 4.026487392926075 4.639130163272391 0.6153409240395804 +3.242346025869784 2.1808126016822653 3.1214337646166674 3.6227943473147732 1.1739742946720182 +1.9967864135852142 1.9090252375757695 4.952817233025748 4.550941813607187 0.4113464193929551 +4.5747264528737634 2.475853756639126 2.2151168394919543 1.8779706812322114 2.125778475530449 +1.2100360634014273 4.108544738649105 3.287661277459827 2.586882842027279 2.9820199456162824 +3.631425739911751 1.676388183911516 1.164324117640907 3.3676086306016226 2.945612752963959 +4.281473841370123 4.6831940976997455 3.2327902502835304 4.797477680568777 1.6154336627785701 +1.8170240554949473 3.283718235806035 1.6014572022820017 3.510144542929796 2.407130902736194 +2.976759002615429 2.0012144217551633 4.284744601110373 4.998339393707678 1.2086789305964682 +3.462671346405783 2.5447135320716474 3.9255509784796 2.7264955260498547 1.5100928868445822 +2.532383292846561 2.0892322837402837 1.080825083419557 3.2925251453317856 2.255659544508982 +2.274398607375978 1.8097988525937896 2.1248920154995 3.928575033673613 1.8625588211364892 +3.0387947148765035 3.686630649419245 4.279731429243263 3.85919962493488 0.7723589816398405 +4.140032006978431 2.0193289721991987 2.842522112942799 3.914119655140348 2.3760687393603903 +4.642549594806907 3.6080918290817303 2.1517243342236982 3.085478799713078 1.3935566981255127 +2.9071852183077276 3.065760457412167 4.386584155585674 3.320257975186205 1.0780527025439672 +3.659659149781104 2.085268587399518 2.6520395842477646 3.5876744866691546 1.8314252137461933 +1.5354128823812148 1.7146438592398474 3.990087432268795 2.4909895445104002 1.509774228203469 +4.283130391114609 3.8200916957093476 2.666317538436499 4.407711120769466 1.8019035606915956 +4.813242992336688 2.288162839864858 1.9893633647415454 4.3305229741806315 3.4434079185127247 +3.590227127638458 1.4088113037078918 1.3800198326519086 1.4187442225556777 2.1817595136192462 +4.078381885028799 2.688575089637879 1.2798351123688971 3.712464699261032 2.801651233743732 +1.2357363635151541 1.8892322518405154 1.824772453345044 3.616747034171533 1.9074144212484143 +1.9204470971278225 1.1001595312112968 2.540963490756473 4.020545396592741 1.6917548010498868 +3.1798510248859775 3.9794461732376307 1.9855921196146809 4.042531945763752 2.206887819909674 +3.18846522965779 4.601020025456057 2.233452713054653 1.193956579087931 1.7538139193382074 +4.606734593439607 2.873041293983398 3.6912870775060704 2.084143348346121 2.3640227204402047 +3.0112346976170636 2.978275370897732 3.381207132113003 3.29871820095006 0.08882984285810917 +2.808656074712471 4.8465370912595285 1.8033273968870427 3.7633461862776563 2.827478150643629 +3.7960811855000056 4.153546076151021 1.9236469911833955 3.1033327289549906 1.2326555025431294 +3.8927563942609695 3.5626877531284564 1.308505665987615 4.786852877657921 3.493972614774428 +1.2727279186756335 2.5302836129356563 2.224791757353858 4.283217655177094 2.4121698739921293 +1.2013283581854752 4.408589350652131 3.4558222586770917 2.144516278538574 3.4649742347303594 +2.756669592162643 2.8042370062472455 2.001642579208505 3.4038354608518273 1.402999478337002 +4.73653951504128 4.035174451718934 1.1228733993386308 2.118024387185467 1.2174721519039737 +1.9850554943395124 1.5266137046686112 3.689268381437448 4.33900941847887 0.7951932404971268 +4.685177701696238 3.4698701057040227 4.811670496402893 4.07754586742242 1.4198279909031575 +3.6638117297657415 1.081503361037793 1.789801782687956 3.140989838125023 2.9144511785854643 +2.4530960219886495 4.170497756617965 4.645935690500819 4.571670535293055 1.719006699052047 +2.149869675204544 4.718884756143537 3.285183061940847 3.654774674977328 2.595464591651924 +2.161469633382433 4.702501319892552 1.536041273964404 3.979381704789609 3.5251602080974362 +2.1066603911646875 3.40014865098507 4.1730813934181 1.6390368783351628 2.8450823332049775 +1.2685604311751821 4.78576582137009 2.0177185255939523 4.062196628808515 4.06824587154463 +4.829319898612102 1.9354701384606572 3.874930677666818 1.2738347292984735 3.8910238455895887 +4.366108857196731 2.8692967591200302 3.183548583460414 4.6525221866392865 2.097219564991967 +3.2582776671127993 2.3944483281242843 3.281045806341817 4.167452127499036 1.2377064648311447 +2.1301012297607227 3.4792554630330614 3.541335936852645 1.497044934177222 2.449355598678223 +4.601367157000192 2.5615270119443316 1.898938773200971 1.203251237035797 2.155209726536395 +1.4177943508642823 4.827005575442266 2.8454331882771773 1.634223030813748 3.617976121995708 +1.8765513284172233 4.83091410928191 4.492505376478864 4.181076062851374 2.970731838847965 +3.472783958245761 2.0789198514353995 3.5663645615066675 1.5163639876807964 2.4789835620553533 +2.749665159034217 4.031316572843576 2.5078436415926224 1.5192783776231238 1.6186079289459236 +4.548560568583 3.2677798789661345 2.1246847420740242 1.7283534344197418 1.340700443918181 +2.609843088460623 1.938488014663375 4.955257344197085 4.1531451998024815 1.0459930818598262 +2.7313231873606694 4.079054368744826 1.9933930944716245 4.643929862225011 2.9735037404529536 +1.2160218186670777 4.604812719242177 1.402811163116143 4.803445332856845 4.800855811647401 +3.434615705662485 1.7259074962763012 3.6173431784300054 1.0146904033026138 3.1134362387404133 +1.3272303498618627 3.9489252357708544 4.6192178179029915 4.869881025161817 2.6336507206299475 +4.1602304136426405 4.685235743525134 4.486687662424535 4.576514632438418 0.5326344721728977 +3.0145804516611765 3.8416293546963454 4.1401411530074075 2.1887259744613345 2.1194412204804545 +2.4821008206803037 2.0136896529272246 2.5921430928898324 1.3781288240223781 1.3012454292290838 +2.097622928536797 3.55090427577273 1.8577327021896495 4.582514142699738 3.0881160232044587 +4.670724161362079 1.1893028300400283 2.6312529146209265 3.5875499986324586 3.6103737478373565 +2.026639992052472 2.3337090980795185 2.474286019135334 2.6959011685367917 0.37868814388686634 +3.2782565143749087 4.300990594486789 2.5609607140222277 1.4557911562879768 1.5057837660052038 +3.114330836064462 1.5125137189691573 3.8875167333973746 2.9922884896135584 1.8350072711266754 +4.408008049252452 3.847977975684408 4.090457529756547 4.359137047729308 0.6211460107564916 +2.93748810243417 1.0457037749893923 3.3483541473429903 1.3752926405515673 2.7334629412427986 +3.0747302848610585 2.0560602047239844 4.263770382128971 1.7529566914922072 2.7095892901426004 +4.619346939899846 1.2228474848277902 4.188353028180602 3.311690072757513 3.5078122078748626 +3.161198199035005 3.9251368594016407 3.691765238017697 1.0958298373410242 2.7060086624564095 +4.2678893346676094 2.7230013338505628 3.1573258035953407 3.5692290642963966 1.5988568513924735 +4.096062399197297 3.6225308533301965 2.4270206402784145 1.615612675721255 0.9394759229900885 +1.4594879665248617 1.9390188936459691 1.5969692577364496 2.6380366915114477 1.1461986353736813 +4.966181051526473 4.6605966255066935 2.465857302058124 2.0419043654570492 0.5226068635968273 +1.5655376562216325 2.5577497594951057 2.2589713443080046 1.5651155802358967 1.210752113034893 +2.4136981926502195 2.038171991496528 3.1912704282546223 2.8434084181887145 0.5118866142028099 +1.14543642527198 3.0849498698517412 4.883567529693748 4.763307150427353 1.9432382665352563 +4.439780233176073 3.5201641984053214 1.014951839064958 3.344301331580059 2.504308828736552 +3.2377336834965447 4.497723476464936 3.7126476479932924 3.7011322373311186 1.2600424132017332 +3.3380435708359033 1.2515085211655768 4.3399936830701975 4.058004462541782 2.1055038432634063 +3.05851057474376 3.3486739857706542 3.0267171526481795 3.687821849215562 0.7219793798455832 +3.038708353848475 4.888890432154153 3.4808024041412264 3.4182639346311707 1.851238715847359 +3.5047410438496773 4.276959467166884 1.9899957053995863 2.3334209482390995 0.8451403378906314 +4.021503528024421 3.9278729995470734 3.0826453069922097 3.1436124684278304 0.11173034787587648 +1.7789651555959187 3.420976101706008 1.522421309511059 4.451463703899045 3.357899536208232 +4.965561878979434 2.6345495059087054 1.8976954554673267 3.718328609946779 2.9577565428206953 +3.986888766127459 3.0538270657664146 4.75313895967961 1.4681497247427542 3.4149316845775517 +1.7456901817714705 3.100590901432227 4.915289669888771 2.491374362975671 2.7768905947524947 +1.1493707939052906 4.4244771583978135 3.292302420800502 2.3664273698560416 3.40346386916342 +2.8237646723839043 1.213976087050812 2.7626043434101115 4.513977484280289 2.3788079300418916 +1.095266579468054 1.0444003496548273 1.525759369390113 2.2840284081034805 0.7599732287434252 +2.0687292978248792 3.401342720368721 2.6604663495796315 2.252249442733564 1.3937358347186828 +1.1485060183257665 1.9413251574880523 1.6647340720030246 2.8574432072800966 1.4321722203685592 +2.7839200398465054 3.5705650757535228 2.0774252119812266 4.728864543434843 2.765671878747794 +4.949488481252418 1.817971396824393 1.7100487478751671 4.106770118344656 3.9434341097233694 +4.600795265172355 3.490981633089505 2.96299417479926 4.058494984957386 1.5594256388215626 +2.462084669365088 3.036932045066314 1.5657591282644647 2.450033102705903 1.0546989936588749 +4.139527432801242 3.542694986609639 4.173184400363995 1.5141007547654062 2.7252403202501125 +4.160653231518602 4.077546026962148 4.480574429557302 3.1458895658295796 1.3372697906230724 +1.601385058486886 4.0204203996059675 2.080661753664643 4.809513832349735 3.6466924258740354 +2.448323926358996 3.9816415340504845 3.790418505528902 4.399658292925565 1.649919999455695 +3.4120841014398846 4.116849244012064 1.553693973941956 4.237424398664918 2.774725733972364 +2.3429694702495985 2.6322451372692055 1.4982274626962218 3.736329727558798 2.256719335564933 +2.5082023852467277 1.5685212020485335 3.5587062198784354 3.9999816343754575 1.0381352115674898 +2.236850888655515 4.655920026064292 4.896570460443225 4.1441305043365375 2.5333893066620217 +1.1338643243324094 2.7213424223408964 1.4055167275155624 2.730972544502244 2.068071525465325 +2.024390265097495 1.4641985203334849 3.042614908752463 2.903536725856631 0.5771980005677014 +3.5003133413152123 3.369826305345287 4.91335227726017 2.526642679606558 2.3902739529367936 +4.482192529891778 3.0954527589280914 2.322069806640927 1.3486770296383765 1.6942670069068673 +4.319937296968258 1.5993212592245523 2.7649222375501883 1.871629434784122 2.863515960546041 +2.5052329283442356 2.3925770261095143 1.7977456042066131 4.920725945322052 3.125011610106724 +4.760765088215987 1.4236947117645147 4.325539904142758 3.476800833802971 3.44331188057533 +4.727164859521823 4.162738088185197 3.4544798934629597 3.4534232150682844 0.5644277604536452 +2.779640977912257 4.006064196509572 2.5354142601424785 4.072692524619827 1.9665549505541624 +4.323382722683035 3.5355052324774685 3.506669500141351 3.256332851251894 0.826691827315249 +3.0972086610043927 1.3157647965004786 1.3694957043415692 2.770257277538391 2.266202821312222 +3.8678403358029687 3.2442845811234733 2.38565639018453 1.9910888532854334 0.7379060376284605 +4.50332022787093 1.447777232314254 4.008143694425003 1.2173519123796597 4.138219637528594 +1.9075971723079332 2.5238435911908987 4.444756605909818 3.6891282470773588 0.9750558268416817 +4.965101880765479 3.243356219696396 3.572620817974944 3.131560943190742 1.7773412543895077 +4.952708792166 1.1500631135862345 3.750104309855051 4.319667035674837 3.845063829829699 +2.8206726419504755 4.256926455461231 3.173950675201278 3.652143568851088 1.5137679678079359 +1.8988146871192844 4.877275570710175 1.1736404299008734 1.9436878401193902 3.0763943585088818 +3.2473618244823585 3.7953224881257777 3.2758787975788786 4.883233132357567 1.6981898734924719 +4.345346280965043 3.8039012139296875 3.770330872826936 2.081509214901124 1.773494108503383 +2.5381713042723844 1.2407809621004215 3.481478713013458 2.277959826562313 1.7696551669762353 +1.66491316665621 1.5209532800336416 1.342680549858386 2.9959801312268204 1.6595553484923071 +1.3528057818419374 1.4292179383630632 4.15507666991493 2.1978390182108782 1.9587286802699857 +1.6289149440517399 2.293685033871445 3.544903622768818 1.414141033041619 2.232054767719614 +4.709616768711384 2.596703425336374 1.511401236077802 4.337096275115805 3.528307703454468 +3.978867663829019 1.9094557084456962 1.378261766180238 1.4278220498894818 2.070005329173036 +4.88418063374098 3.9112373693363396 3.3557097655880406 4.097953594723766 1.2237420061599675 +3.4455589570873166 1.7122454420001887 1.4374700552494262 4.853383985317693 3.8305148112516325 +1.7054575188964014 2.100753010146683 4.788406163058202 2.2011015338346342 2.6173276007799453 +3.4096227013836016 4.517858829816204 4.896284403960266 4.13252520643505 1.345925491313559 +2.10274457761808 1.9135279162256529 1.362260141003643 3.516939277756987 2.1629713653464373 +2.436976875945872 1.9638003631175533 2.91035282218459 4.763639660893852 1.9127383822220274 +4.790899510243895 2.3242888512400186 2.5494873101269793 3.026381183342273 2.5122889780878754 +4.653367128891034 2.892457436503661 4.1713593667819495 3.5867100916073924 1.8554292548372542 +2.536934751673778 2.0081419613064955 2.720139828974674 4.181261673916712 1.5538657795676052 +4.326420098716923 3.7940467600419137 3.3706426599451786 4.645610027848563 1.3816523299840884 +2.2773510325406745 1.9004940377592519 4.68731494588042 2.991378637140334 1.7373028399846222 +2.129930463367251 4.771370566958014 4.716997918072194 2.028497986783135 3.768983643026175 +2.518549670608783 4.336732599918571 3.7233929135281127 2.4494201632965376 2.220089127212267 +1.8708775278333354 4.634262359085417 4.327492964181882 4.975567924168212 2.838361654080639 +4.743717768033495 2.8956455352629535 4.11697779163904 2.7317019745777626 2.309623360392833 +3.7736672441023296 1.301501600524916 3.7558362074792826 3.5956089336600563 2.477352568481133 +3.0456399776575704 3.86811085128282 3.311665659406359 4.368133985509639 1.3388740276894413 +4.001216261237898 3.1619396367985275 4.407974813184657 3.7019044803435177 1.096777355368327 +3.6919742331182133 4.247940625305652 3.5711541924677994 1.8231345630725513 1.834304024417168 +3.1617525149486774 1.7616842080031052 3.4142954569748936 2.8870153068481597 1.4960667167045432 +1.6457756679580857 2.724139841782196 4.361011931843348 3.5761886905018057 1.333722914078183 +3.7136061574204886 2.690468797069225 3.9843863336982253 2.415511504778819 1.8730131571784134 +3.4826964675522154 2.1585545400374766 1.3093711433355413 3.024552045436761 2.1668404120135847 +2.7468208190132666 4.4209495445823235 3.666024276917449 2.9565365182156 1.8182628714031555 +2.8941149884588957 3.0078893737371453 3.969166511386621 3.375641345954084 0.6043316413585872 +3.7967658698088456 2.7326230522137136 2.876344871512776 1.7862664355786508 1.5233748497096489 +3.220830314442073 3.7609383893607076 2.7195666737969595 3.8588797452317976 1.260853285412144 +1.5229361479960746 4.878333845182751 3.844885689907487 1.0997318014534598 4.335269723740371 +1.119638217306564 2.130202930590023 1.3017746221802744 1.2451587396663268 1.0121493950432974 +1.5257972575973944 2.696021273937454 3.838223914517434 4.394763378872836 1.2958242256587345 +4.974507590273676 3.5077753090270196 3.430892993456008 2.2155025308948564 1.9048563098920694 +3.512153676557116 1.2695785376452164 1.9557343085944665 4.173501403132487 3.1539870226875286 +2.407083708976862 3.347923771329244 2.1457081987067963 3.92041736458275 2.0086743505036737 +4.102031334218607 3.506675697300053 4.854044146528935 2.2168502383388473 2.703560623290257 +4.412586669330022 3.224547451740658 4.331570232335592 1.7562804412397135 2.8361161278503744 +3.5192802389422857 4.604398773026391 3.669590164253826 3.9840287124772527 1.1297583076134887 +4.866786750951624 4.5333676778258045 4.019470997346429 4.06566225146978 0.33660349119040406 +2.7312564725270114 3.770262939996098 4.979954781720139 4.364450430852222 1.2076340693189827 +4.221310891471112 4.859291989388803 2.6982288486762487 2.8985298083451836 0.6686855432447739 +1.2426539047351173 2.1672379953084895 4.802288581061299 3.3041401983061447 1.7604841144677437 +2.9272904845715457 3.527834797339677 1.2565039555810822 4.572032090596242 3.3694777467250394 +1.9447523119061305 3.2170619092316266 3.355820906701648 3.1705873872902615 1.2857228193355263 +1.4026332350928383 3.5480624919801134 4.869104368628436 3.57405906618318 2.5059946192466995 +2.701423140656493 2.6978308981894004 2.083396322697791 3.4406891598449962 1.3572975907946834 +3.595431619251347 3.887900667363269 1.7851670368805572 3.991279411160302 2.2254145573473956 +3.8855731017216995 1.4251302770681424 1.9735976336029544 1.4392342977526953 2.5178012368116334 +4.047094223238092 4.685399418919983 2.5471125087684157 2.8544800977931484 0.7084549086691213 +3.0482106996250744 4.32416106991417 2.6276301449629615 1.2731165510380364 1.8608483075114683 +1.2820335915408894 2.243308685434316 2.9504750594603846 1.9423307737199171 1.392984101492538 +2.017057750760999 4.139520732726249 1.7803343552498871 2.247115590658315 2.173185181143622 +4.015182153679985 4.472873727566264 1.665633111217804 1.0350784408780678 0.7791538802404517 +1.1618928314856665 3.884097266759235 3.831700606173439 3.4451656947438067 2.749510179136822 +4.353498204260755 2.750992150980692 2.3165859927638865 1.561796998851925 1.7713644673329867 +1.853823508703496 2.033373274065259 4.012955611481206 4.088596605870506 0.19483243640027254 +3.5566869749844527 4.396030025937989 4.733524718484386 2.4430363734262994 2.4394330521723533 +2.065931612069616 3.393363838875124 1.1767183318530807 3.828290971357227 2.9652847720461546 +4.695400813801815 1.1501317449000292 1.4397730718995305 2.6939905515970026 3.7605842973254053 +3.287644720401059 4.18737625344725 4.536293659408619 4.019396545148942 1.0376412955774412 +4.743893356624829 3.121877575069876 1.1466192151103476 4.420499115762475 3.6536590973306895 +2.366858338889494 1.84523667014754 3.041160576023184 1.6318326754625234 1.5027622222427137 +2.4442155289138747 1.887087313956462 1.706710172248636 1.7022718423610073 0.5571458935268433 +1.106125299856945 1.5867434988689477 4.516418596095148 3.2992642588317547 1.3086093893674429 +4.334559834944154 3.7498770957465877 1.5988965811571059 1.057708704397299 0.7967046023887132 +1.058855254654008 1.747099752392364 2.344711732968493 1.038447233510409 1.4764848225469847 +2.639057639447884 2.759518770821408 4.614593643006985 2.6298041668524412 1.9884416382749623 +1.1475074890662347 3.2087069765594816 3.641132388218292 4.776262500327309 2.353096619065833 +2.7132005688348655 1.2644865530624085 4.56279934186041 3.4671344702202593 1.8163848189306655 +2.2315022751834714 3.5544882317065656 4.707838914086783 3.9333099547678647 1.5330319468233442 +4.947446958252277 4.306859845685087 1.6935033176681968 1.9679002821219274 0.6968827325229058 +2.3912974847003086 2.3271029656040185 4.607109842661144 2.957664745423672 1.650693813244218 +2.264778671191737 2.714451766920316 3.992997003365389 1.6165184031287478 2.418647644946413 +3.0953923908853507 1.8963205028017067 2.8739309077176607 3.9725290179167265 1.626250657348194 +2.0743951743100273 4.478038605891177 3.803264196551215 2.2784342310444177 2.8465080660153883 +1.5843611741651085 1.6601593838688387 1.4906415658968437 3.7783623127345147 2.288976099505148 +3.520846107447231 2.3666948230611484 3.4252625350414667 4.315784814100519 1.4577705981225484 +1.9365306472799282 4.363279311270276 4.581454003789836 1.4204545186899944 3.985100603871927 +3.378486033835673 2.3352933309372776 4.949502807614968 3.571772581011502 1.7281179336715697 +3.3527871647149246 2.3486922789119506 3.344638862077123 2.809641403437207 1.1377296781076143 +1.081087859859227 4.258713164933609 3.243837937351001 2.135567608766632 3.3653477830188017 +2.9315972243992903 1.309018548008809 3.4501307496448317 2.0378997816497537 2.1510829523850075 +4.597065631178191 2.5182516274580964 2.000664970486652 2.589216847259235 2.1605233101531907 +4.357336812407949 1.4047493589463156 3.0028135815702695 1.893217805389233 3.1541996539309065 +2.5404148369975648 1.4774887920755821 4.198191804493398 3.093663339102028 1.5329040765270678 +1.1320207502734823 1.4472364849002801 1.1962183049782942 3.182593198603615 2.0112300160303187 +4.241933696812788 4.8819822095912695 2.274087017898644 1.8870599516441908 0.747965272404725 +2.7511674499835697 4.856775908545622 3.2057593259440225 1.1710408276212534 2.9280823670424514 +3.7358614328777877 1.6677763718860161 1.0509358704026486 4.9038392022519055 4.37285260488762 +3.658303177500653 1.6519985773684218 3.3229375593769213 3.1437801862466004 2.0142878426031143 +3.8819144048486276 4.888884692370938 3.83641590446236 2.567979618274278 1.6195430750898165 +2.705056851486576 3.498115368666432 1.0347081213223257 1.6441461333223404 1.0001782351871302 +4.094344108863664 4.023839804709764 3.259269687704605 1.1915735808248455 2.068897785611928 +2.060418113055121 3.4616562058129534 1.7010114204077484 2.920443880221365 1.8575477696798794 +3.618682472954558 4.694485970672977 4.102984326621781 3.9714143037934226 1.083819097732753 +1.075346091334064 2.063252193999378 4.516363065571449 4.2205798545631374 1.0312352668512446 +2.119830822626501 4.102724296151311 3.043085677157413 1.4465730355478477 2.5457256612145853 +2.140842063741942 2.026281007705598 1.6471060485438613 3.7297060697397115 2.085748566784865 +4.446133836958905 2.62548940453392 4.826997735127523 4.680377615177595 1.8265386962487895 +3.3164987310035836 3.2309475832917256 3.6323499023324257 2.7633020620927202 0.8732486172334387 +3.8989660035538614 4.415625183536644 3.145058854100712 1.4134165154899008 1.807075509526373 +2.101055901393341 2.271025793058474 4.710949488944196 3.690653492648663 1.0343566522865073 +4.861502815931389 2.5768111514039638 1.8264851723780389 1.599924535015862 2.2958975857740374 +1.0475599373567004 4.545778802799956 2.2282082400200083 1.4826437560702819 3.5767864949239447 +4.516318183307859 4.044133714218417 2.0581556611586365 3.4699059922045667 1.4886225747507564 +2.598170501340516 4.435713868534009 3.637002848104676 1.0585240951519852 3.1662467221846855 +2.1217380955564544 3.1390040713057292 1.9271888264561077 2.9322085588388207 1.4299981566057154 +1.2062375051992862 4.396454541017804 4.304648983537096 2.031733297478237 3.9170946441921854 +3.7770969725089207 2.506317670527487 1.7578770934091845 3.652180578396142 2.2810667959483677 +4.407009191857652 1.8080808263799861 2.2564628869628383 4.5338254666567614 3.4555475641748257 +2.9672906582440732 1.3124153337995526 2.232510416347892 4.394455282940438 2.7226123384795744 +1.9024953404079432 2.125580373060844 1.765646984590247 3.7522488889759624 1.9990883067795422 +4.255441511104181 4.423918667450058 4.1250522114670005 4.726971599024864 0.6250531987986518 +3.9175881114381883 4.531310867994388 1.516422069649106 4.667788046439098 3.210570532099315 +4.113290390374456 1.0139876345523957 3.6757224395367087 1.049967859207428 4.062051783072985 +1.4847042143025249 4.621224449947628 4.439767715417133 4.9903654904888946 3.1844806638642336 +3.4461419730003144 1.267368350638999 4.0417928506669085 3.8196346444666283 2.1900704934041677 +4.985679501384874 4.31582453301618 4.2945115439992865 4.611346527495591 0.7410061304843089 +2.3364610545974744 3.6552801521371054 2.3321815998162005 4.525096613108062 2.558937292618967 +3.343086302276954 2.5335059944561107 2.7454588166103426 1.4512501156456086 1.5265636038056574 +1.2438877619813198 4.543592817153107 3.4966731738498793 2.0873406759749473 3.5880735138361706 +4.465260503367697 2.159245250870349 2.482032266980858 1.992497722482124 2.3574033203947073 +3.181645812894144 2.6080865405117706 2.6944791315718475 1.706808032155097 1.142131533387854 +2.7036336979347197 1.2324110224173506 1.128305356881119 2.8140122048248863 2.2374323985678313 +3.7100666093424404 2.3802107086595443 4.647500414881988 1.0480009639413566 3.837305436618647 +3.4892217677078388 1.6920474223070854 1.3800527847933952 2.8711706736691474 2.3352233696783498 +3.1563740069025696 1.2035257186835029 3.7414924997628507 4.660278361493842 2.1581899583949737 +4.098876947330108 3.4234490895673515 2.1519583536542197 4.058443132540089 2.0225941271459997 +3.3850884152383873 3.2183854866359676 4.055984053745384 1.4290901175782973 2.6321781129467725 +2.215694488176869 1.1878626764968305 1.2763928431713802 1.1216696235195456 1.0394120971976901 +4.147932503664815 2.460082903904251 2.6137534729895893 3.281261024805898 1.8150489258264355 +4.406696101904915 1.2231114252073363 2.154684348084204 4.4605852444648395 3.9309528536517253 +1.6208832361359153 1.1346644141793307 1.9373960699481967 4.882052319440648 2.9845282994972253 +1.6871965939113145 1.3802025239651727 3.889474348615765 4.4155870275392015 0.6091304539309224 +4.575779851312378 1.3976214610494337 4.211969570928854 3.8649197033203295 3.197050885457697 +4.193520656335815 2.6160285937731342 3.9467694845959946 2.6699538687816404 2.029467744073714 +4.061544847377024 4.617477626657047 3.07201064624536 2.2845560236746185 0.9639222155786429 +2.5458874205995587 3.1516353588937864 2.281766080024969 2.9709225389172236 0.9175332089797181 +4.499067782558516 2.1914655447362623 3.708028374413228 2.7762268414272167 2.4886305842525833 +2.64008424898151 3.17728684217338 1.3914410463322948 2.607317870274532 1.3292641111276315 +1.8607054652405823 2.477096479548086 1.0662463598266125 2.2900918156377803 1.3703049230841573 +1.2034642621500349 4.545022077909614 1.1863713563323288 2.6359046899688923 3.6424106744555123 +2.118000247527085 4.243133350221092 2.394661157173827 2.8879456247777164 2.1816324782476797 +2.3740335125851364 1.2292125127749398 3.7749289952494927 1.8618862476141436 2.229427656571665 +2.4811942863628302 4.191377131225457 3.8518655815147183 3.8616108126403157 1.7102106105366437 +3.6506219571040903 3.0734747123637316 2.1631045664908846 4.331020429211472 2.2434255347452337 +2.572145962447647 2.2635451798726645 4.629293113750873 2.583368014099631 2.0690683788577013 +4.222925937892357 2.3970204072867256 3.1237339758635927 3.952911966566296 2.005359605397995 +3.7888543328711317 4.30358311562961 3.432030142922012 2.6665190356747446 0.9224711242737964 +4.730772839862016 4.829266370544051 3.5817961371750413 4.576540413690514 0.9996084989867308 +4.886749895862316 3.656294809785638 1.4024504988068465 1.247636275090112 1.240156104172769 +4.869161470356602 2.6921698317499714 4.8062055820196825 3.2658666800175657 2.6668214277645714 +3.428900642863292 2.5144615496204 2.343272832884734 2.339287337087822 0.9144477784037913 +2.434244592539158 2.9246524549511324 3.0107827071386297 2.3720083858651275 0.8053151588253543 +3.7909194468849585 2.440015119667108 2.147834563523021 2.668536284373616 1.4477820220574242 +4.090283222749472 4.524330811583637 1.328312974829506 2.1119264863874907 0.8957943094645043 +2.8960406315211205 1.2592551806766705 1.4890832832545597 1.6849817766677782 1.6484668124707995 +3.2458726541500322 1.6930054455913797 1.799085429596361 4.070846346782982 2.751780193306388 +2.755762421612853 1.3030444859200618 2.6356583937657687 2.643980881243447 1.4527417748799476 +2.368642795178929 3.8443776828999883 3.155732094376618 2.739968755475544 1.533183815728322 +3.128096746475776 4.303067803173846 1.2415523022730448 4.621065229700075 3.577941392857713 +4.172450987091375 2.7019481858564856 3.449744370237853 3.1361563744907492 1.5035677302723491 +2.995013247412994 2.8540434973291204 4.2020660910259515 3.1159151638981015 1.0952608396813053 +2.494841351669309 2.6771632665949974 4.0622843643089865 3.4054064440222263 0.6817109965538398 +4.969072867916781 4.530132396956905 3.597919567301742 1.9147696150997011 1.739443157635285 +4.829941801195517 3.106169977427782 1.7819864965167787 1.6480967934473654 1.7289637801306188 +4.6908701238514565 1.356145771132292 1.1613213252996037 2.6779500220360197 3.6634067631622145 +4.054178161697458 1.2417672910196753 1.3436361014068283 4.660731720435566 4.348882414056076 +1.4383214275284772 1.7476889702988032 3.942879799921859 1.464484460969619 2.497629222414716 +3.6607230184830755 4.694093902580958 1.6779967182146236 3.1656452911903705 1.811340294030367 +3.907631099583507 1.3839302066108181 1.3439792000627109 2.6343794764959143 2.8344662761461876 +2.763704928359517 1.9411785658116552 2.901430247092639 4.691247921157263 1.9697707794259505 +2.1604192922004994 2.1107277512227647 4.671729471093573 1.0457027865635715 3.6263671582133514 +3.844084829536866 1.7161700114252296 2.4301321349014375 2.5456060613692832 2.1310456824838315 +1.6336968570905852 3.6538178071264666 1.492145925006259 2.0301941088223594 2.0905464598715993 +2.423057615401092 3.4591542450573547 4.4760406610436565 1.8234417005623964 2.8477671026843696 +1.7123344489620171 1.7416087564972673 2.6702084702671307 2.540101335444602 0.13335985757864363 +3.2264176110071774 4.431048074614912 3.0332682822899977 3.4620071817179827 1.27865225833082 +1.1983646957274168 1.7719415965932255 2.2467254426118464 4.780684025156061 2.5980640021478134 +2.66036271779877 1.2611207928187285 1.5082144525963073 1.9910658747743102 1.4802106135686137 +1.3606599109822426 3.4476175026456133 1.2085800934550575 4.6362965477385645 4.013057697114169 +3.939432053625625 1.3446352835279498 1.570166233984288 3.4838611763231127 3.2241585895303793 +1.1152673553055639 3.6631354052624667 1.2029358138335868 4.370301530345276 4.064952297644438 +4.682393364600305 2.1170202273097036 4.1307488505712415 2.8531177243949912 2.86591706581098 +2.9614780571954626 1.5455647130109647 1.1483542414134593 2.0004708264420503 1.6525475099737728 +4.40782476219859 3.247112603538654 1.8739865228344788 3.5153242801768747 2.0102841463183196 +4.196709601016212 3.850367849814579 1.1368214601306228 3.3564527832096247 2.2464896659051994 +1.6394977013660608 1.4734652018855803 4.582928412182515 4.325048272600965 0.3067066306331434 +4.766299669002402 4.203286321200209 2.6961100161583267 4.365419724614627 1.761697741540782 +3.6045936675793793 1.9388662094027724 3.1803189088074655 2.3231700206379555 1.8733265015511116 +3.584349789244384 1.9049890674489087 1.2682809421987948 1.099990682503214 1.6877719174751742 +4.734431145407491 2.992185766000374 4.6193234105744505 4.379430921959737 1.7586834189697733 +1.3209015017986059 2.8068947462337537 2.72123172030459 4.353462919955595 2.2073410727889455 +3.68666457899124 4.0056129876500215 1.488318894816369 3.9860791344540365 2.5180417594036815 +2.951414129535207 4.128692150848959 4.324777952732365 1.278355019500891 3.2659877874216066 +4.770161461966999 2.622303068370204 3.7199659787968824 1.608103052954902 3.0121853688792215 +3.905922666374396 3.426664843510061 1.9613123420111012 3.5570233877369373 1.6661277868843385 +4.544430668709871 4.916910043071855 3.8657180501185113 4.755657523167173 0.9647451217887679 +3.8419412930062253 1.7115072490436782 3.046015560219926 2.0934379564915897 2.333699489394346 +1.1233992370949988 2.2225555637804555 3.354604694883637 2.9487882074706913 1.171678988438748 +2.908767561850032 2.903897065659293 2.342893551709627 4.535893035446781 2.1930048922436467 +2.2937163232080957 1.6988635423882656 3.434775359842381 4.98404188227633 1.659541077642752 +3.8168910008310575 2.0268151512216166 1.4970497602312949 3.0553856877109777 2.3733483541673617 +3.5810053172137697 3.528594619221128 3.649480295531152 3.6864874159822616 0.0641592411750545 +3.8615759928730777 3.3086693521803143 4.853343792696414 3.876080634576405 1.1228308125184532 +1.7848411321459574 4.086409994921363 4.872834815056393 3.8658998569479395 2.512197691257228 +3.6540789072366215 4.4384951345759305 1.2982471278263623 2.9438069099046906 1.8229579847344013 +4.599514346619687 2.664295324818879 3.7071851045779756 3.025692745823376 2.051707702715127 +3.843750179530993 2.628203041995293 1.4762972648235544 4.776230365515763 3.5166906762772485 +4.81583827415459 4.517455859182949 3.9465578734782727 1.8201842625491662 2.1472067433808038 +1.3137276374113886 3.9395463363704475 3.5976603445072866 3.05368265396039 2.681573338101306 +2.2935100102078367 2.124745287155914 4.838910201129304 1.0354065537024288 3.8072459242523764 +2.5175476941248953 2.573232613187424 1.485353035617417 1.1636936121013517 0.3264438618624767 +1.4265465143879354 1.9553069923239885 1.035511619069617 2.7046853306382426 1.7509221919945341 +1.777399109658655 1.8136765007469746 4.696682281140518 2.5763105073686767 2.1206820855829664 +4.2736511746734624 1.9424817656092137 1.362377186298159 3.0682134537085135 2.888637773236625 +2.996151609053781 3.692859962590017 4.637476480499787 2.5996494240548484 2.153634519101655 +1.5704492188606514 1.2656113312926291 4.266380347661711 4.627730761565103 0.472758140411233 +2.334335182174334 3.747672182201277 4.214232593630931 3.318674881457735 1.6731841176266429 +4.44623328966601 2.8261453713264224 2.6562970788055966 4.384677177808513 2.3689623529679036 +3.457286964234145 3.3955755385265127 3.5663924146753203 4.35286726279411 0.7888922529638263 +3.7569324290579504 3.9317218664800673 2.311248336822386 3.669387502331556 1.369340476406173 +1.6180235712373263 4.852089795447215 3.5553355155413735 3.8560498103132916 3.2480168456544956 +2.9800357229459036 3.218590384230699 3.237419647233068 4.540589721098091 1.3248247309882442 +1.229328843832946 1.1641698082645027 3.723309643127812 4.270986305410354 0.5515391430580018 +1.5503859650807996 4.074595258258537 2.0974804798082562 3.627812664700665 2.9518721435527024 +1.324195210652137 2.4417303566522146 4.76063834895197 2.9112983629387186 2.1607737471593147 +4.281950340733207 1.4745858413825919 3.69146224795404 4.422036038990186 2.9008677143853108 +1.326578103745422 3.88724076688822 1.067500604924477 2.1317954800811187 2.773033872079145 +3.3963918358007943 1.3129677541991671 3.008802725129222 4.518868598528892 2.573121615043465 +1.5232801043189075 1.2424229327406744 1.2817060975035277 1.132709957832959 0.31793175441225857 +2.2159687658084475 1.3068326903236893 1.2325684769694187 1.2653642161992238 0.9097274120633374 +2.1433657853555332 1.3196270841339444 2.5639422822442453 4.8505754247321615 2.430480729447241 +3.531450929903845 4.7094588883189665 2.131739557729357 3.7376460201724484 1.991642115493104 +2.038633427557706 1.779943137567567 3.6726767146115242 4.621195993074606 0.9831630016184026 +3.7308823683901404 3.037921579580594 3.7614981742658773 1.667819629728807 2.2053762723586225 +1.9273848714038562 2.0692301868563154 3.703932668338328 2.872011036354555 0.8439275414858503 +2.097911957315402 1.8261083340587891 4.826227386666833 3.1705908512312906 1.6777990186802558 +1.3129615700586617 1.0770361211186308 2.0927824585817074 4.212356242719331 2.1326635561806366 +2.410987017859952 3.3080541643364643 1.0743501883939284 2.2078562479459154 1.4455329302124476 +2.6317969901003453 3.11380956160959 2.684358525260142 3.126057393527399 0.6537843752503807 +3.6337479813687352 3.1516011509187742 4.520036816755066 3.8776444008368447 0.8032020805141088 +3.9505897683178586 4.123887632482836 1.1907979737799197 4.030056482273558 2.84454232307724 +2.2097434517821264 2.486820602109323 2.047650805329014 3.362151498800848 1.3433852092275589 +1.8225979679344495 3.7912315604872258 2.003560707666971 1.2311116188675668 2.114756680215074 +3.762154584748157 3.7207908103654974 4.326500254269243 3.0208130782921723 1.3063422075942268 +4.649251097045553 1.1659443727359537 1.690202716643153 1.9380541920736492 3.4921134130342257 +3.6530141308838546 4.2354431057923785 4.126369973465159 4.909768364350466 0.9761846903402464 +1.1736824390061749 2.6056883715942343 2.6194237367346678 3.432691539725376 1.6468289256473276 +3.2680069009900112 4.774736954220172 3.0930234885947634 3.9895612079324483 1.7532870088785182 +3.374568586251696 2.520171504104988 2.8125883645562917 4.614568148329342 1.9942731796590902 +1.1696012350603917 1.6857701160120433 1.5142505369298003 4.8517530463985 3.3771812676213795 +4.6000844289641245 4.249081074751504 4.048621722848342 3.0976651223992797 1.0136675049571964 +1.687324864028788 4.491665269314806 4.745441399532645 1.8173344642730829 4.05439703692607 +4.1856935967211255 1.9224828807252892 3.1337191331096097 2.7751043227407566 2.291446557791448 +3.0888221699290352 3.265014733655207 4.5230409927669335 3.269385219283706 1.2659765471367272 +3.975388551529437 3.084267707811532 4.394002618626067 2.4129848027859775 2.1722172876543335 +2.1460036473492488 2.48420165227119 4.180695743290231 1.0844390979966403 3.114672230597933 +2.4162589919593747 4.222001502847077 1.8151997088345846 3.139535566967179 2.23932388920469 +1.6502197517699897 2.441903066744114 3.8845752013362573 4.809444603354153 1.2174341386692584 +1.5811851639845402 4.012720068124299 1.5858595094859482 4.74397107821553 3.9857283739102902 +2.643670631010955 4.052610104933051 4.166422381461361 3.034683488960598 1.8071921209364343 +1.3795709562982106 3.110788143195569 3.968376045722528 1.6467018484557752 2.8960808045465556 +1.8506482561235216 2.8649427846205375 2.5913867144327978 2.413943219345669 1.029698783376828 +2.7205088254396372 4.93119750767921 2.532973061836267 4.544381639297627 2.9887972355560137 +2.9129215866909335 1.6301153157431627 3.6753629845275904 4.177867792530948 1.377716593080528 +2.030387504653406 1.7496003246761944 3.3500392768936362 1.197009685045419 2.1712618137418747 +1.0372305605628842 4.783974170511881 3.873402153271261 4.447426754896044 3.790460647726623 +1.375223247885633 4.290412243249298 4.899875849590863 2.9035847573370006 3.5332003911045766 +4.767508518292349 1.4633786111941074 1.3343657596149239 3.3162830087122726 3.85295606323906 +4.716283113561926 4.651612033109677 1.756243258576505 1.952248676750683 0.2063988192807692 +4.418513044122282 3.0761633756903275 1.596839742174216 3.586024045645493 2.399740991339667 +3.979684290591607 3.2886204575398277 1.3849794413283107 2.0495854170039793 0.9587858594368321 +3.583071489892851 2.745518514511381 1.7585221622830423 2.9125328212271766 1.4259157014098092 +1.1312087872144443 3.680565942713104 2.3633525827149873 3.464006116020222 2.7768075386438857 +1.9640930217666446 4.338579761126027 4.428186238463029 1.0083708964684126 4.1633309079071905 +4.944882032754891 2.8359275786752476 3.8289743138155727 4.366423585652598 2.1763594852828234 +2.283022418964611 1.9173350710469932 4.233498378503488 3.8526500210341132 0.5279893065338933 +4.923815992871996 3.5003928381525524 1.7924045591447033 3.416615771385184 2.1596748689002108 +2.9496997491655654 4.384132008611397 2.908274722129928 2.879658846533496 1.4347176639586703 +4.902882734506537 4.369043183349027 2.9606538057956793 1.1154130680815006 1.9209107336104971 +3.6235031386250802 2.3269358586998954 4.609400959202919 3.5251819941858877 1.690153092318916 +1.4030062909189698 2.340758858817733 4.619517444059487 4.011866430006741 1.1174164995560318 +1.980466753160678 1.803192393856762 4.758427637658825 3.6178041292678964 1.1543171948648447 +3.012314257770997 1.8022076297370866 1.501361725828903 3.846317608519675 2.638783079940005 +3.1912985826493507 2.103214814200851 2.827998620298281 2.6847079198917734 1.0974782512578898 +4.895630337819814 4.816932959905322 4.3383269145490075 3.4535418077693123 0.8882780884777993 +3.372304794669276 4.80386602549694 2.9995789782226887 1.0717441705859283 2.4012318928301535 +3.501078082382542 4.628857324345288 4.5594889238882015 1.2570181681693948 3.4897276557032377 +4.361129999977814 3.175736691773586 4.3549654760512455 2.0450725985252456 2.5962978259014715 +3.5810418125156525 2.132861406007354 4.316929375945511 4.907706668419104 1.56404740947868 +3.0248491548344165 3.8675801114978094 4.372733408404898 2.9021587381633602 1.694929298252527 +4.131346591788546 2.891687580224123 2.645590983653154 2.1681515295068507 1.3284212047872472 +4.870676710971596 1.643472427903908 2.1247614838952065 3.4185012447133483 3.4768678510078885 +3.283622631894472 3.306909164537109 1.5875855350009545 1.0297759683074852 0.5582954193769393 +2.094722613372124 1.7089020495881297 1.4131026183817732 1.8194036730774572 0.5603017530629585 +2.589109514949821 2.967909815802682 2.417904520853506 1.1507733923389396 1.32253958911513 +3.580610278400824 1.189362454469026 4.069490917927544 2.7833746337122673 2.7151724166215057 +2.3990938445550207 2.7955081808652222 3.6126811990697374 1.451512118963719 2.197224640049021 +1.6261295649764542 3.48611306355509 3.1816743567493693 1.050416777179863 2.828744860438511 +3.01015957248118 1.880326233771339 4.0137840918175645 3.345966899700568 1.3124416845510722 +4.432454417619569 4.7672035380386895 3.307169706454827 3.6863509258453053 0.5058017109103377 +1.8294586353660756 2.7866150523699784 3.3178930758813294 4.548672349646101 1.5591555494371587 +3.730118809315841 4.471837390784279 2.122646675017519 4.646566207470306 2.630649398987301 +3.7064094600809 4.524298059112597 3.267551510510524 2.9546442597365288 0.8757012664219306 +1.5426717086568758 2.6630158373007897 4.812241657019872 2.1674902870392403 2.872260568890176 +2.68273442519389 1.4629489138162004 4.351859537370889 3.2797317395857504 1.6239872870655554 +4.174096395777507 1.0412236398999606 2.426974923831016 1.6964752486062067 3.216911792390852 +4.387896741413437 3.4783401993306287 1.74554220412268 3.216788031456892 1.7296986407157648 +2.52103978485628 2.250260795689143 3.650687643587599 3.5732113824980805 0.28164486859658516 +2.2684772118478285 1.4453619519791898 4.791315869865909 4.46780361747029 0.88440879036716 +2.76657493602851 1.095576740867874 4.8417735013146785 2.9061626075498888 2.5571125318004744 +3.6982463559068584 3.9002467828502088 1.8258954392037121 3.0839003201481967 1.2741194814323509 +4.814646098499935 1.744611894784002 4.243889534816273 4.221922870835716 3.0701127904870464 +1.1136745658586493 2.0650563404843783 2.0887353073038297 1.8229932392831194 0.9877986271532904 +3.5876512474497457 3.931110253546015 4.145297318875368 4.425444950319497 0.4432231765966131 +3.218466404278995 3.920926220498267 4.20137237309646 1.4244862750417684 2.8643579027370554 +1.9767879680045382 1.651328771774748 2.748128460045557 2.1255551383586155 0.7025106613332307 +4.73828223234981 3.2468196189542113 2.4230580637581944 1.4542177042368913 1.7785140902995955 +1.8143217244198904 1.2785595116326682 3.3614790748092145 4.578178797796451 1.329435731642519 +1.919561107413712 1.1548812793613479 4.323412750961841 4.567842753115265 0.8027959051856927 +2.0040923723922752 4.6315211830371155 3.9223388617611623 4.6822281709201246 2.73510766098533 +4.895716547250895 4.15699470160163 4.261811219267178 1.065781363726301 3.280292182527053 +3.0417557817553806 1.6273034389187848 1.9801656290092824 4.282919505324214 2.7024712477729302 +4.968012517450542 3.5019119293374326 3.120490261092101 3.7564176695969427 1.5980784096386786 +1.6690196366519685 1.9057107207494615 4.941042635933602 4.949973169702846 0.23685950207802536 +2.480244845849284 1.0047391492185884 2.900782681333667 1.0897888836812735 2.335982790160294 +1.608618675990403 1.7232761103108696 3.2679554039152356 2.3127948814407504 0.962017645856189 +2.296688077829458 2.4095247011473155 1.246099168145029 3.703086351255888 2.4595768175710244 +1.4935897627872605 1.5325004850774433 1.60767546699952 4.413533412738327 2.806127733367593 +4.808782368569412 4.176681141013595 1.6131710326582653 3.6404534028493782 2.1235408567685408 +4.87834757240549 4.703771366253807 2.277641465512391 3.3748271301002553 1.1109875041292896 +1.6827768905893112 1.4317831871250437 4.101018802334371 3.705527309585864 0.46841366335233126 +3.268846330198503 4.779498031915702 4.709030884003244 4.718819365617027 1.5106834143106798 +4.105113553763525 2.4782151994910904 1.8189012333630803 2.5428918477702935 1.7807191426174118 +1.1232983340902498 4.9934062380547735 4.944595507815335 2.0491658981769914 4.833347474856233 +4.453925267876966 4.48849725120945 3.547403626185681 1.092750215677111 2.4548968588828526 +2.7405104504132662 3.623645934347854 1.1700845129532373 2.2168433789174506 1.3695372964834014 +4.077116185384217 1.0380818397613294 3.4496230294539454 1.504888905987685 3.6080078388010213 +1.4874887243256842 3.051980172067995 1.9858042082973468 1.4210077688181584 1.6633185227451777 +4.115314935490858 4.782566153548345 1.846044871031808 1.565440034410286 0.7238530668130039 +3.031857178207953 1.3352037126072793 4.2838288840663115 1.2303308564494517 3.493205288412754 +2.853373527850474 4.769205828085402 4.004107166650236 4.25616890282447 1.932342754654729 +3.253221259063803 3.7908583319997393 4.899675634293237 2.133861962547075 2.8175838743528305 +2.788221166847448 2.6947803823747494 3.221992050745691 3.013036926169869 0.22889609933192534 +2.705453325309106 3.7656402413843346 2.515946127230513 3.9187350910378282 1.75835524681354 +2.9316281382162637 4.156123264459821 1.5265919600326123 2.7508281138835264 1.7315145031416586 +4.431233642787303 2.5569424092047233 4.460507324054678 4.246519437791812 1.8864671859727002 +3.056190951898136 3.498553601326769 1.8418784368540586 4.192965767505754 2.3923411859432666 +3.3074789907859974 4.291314717722346 1.2939686806477 2.2640956125909653 1.3816942504324272 +3.7510153858881488 2.884510978819041 1.514168784360514 4.803474112160263 3.4015231039876825 +4.0473325238883024 4.0607973301608915 4.201865866414884 4.752906102590979 0.5512047195851693 +2.5964172088161535 1.6017012960092414 2.8376484122624466 1.4883284781384774 1.6763424566047358 +2.352553385056141 4.75723609503944 2.781419895880241 4.01497821298552 2.702621885760609 +2.8866969900293378 2.850314092665514 3.670796917479256 2.3675848091154656 1.3037198758194115 +4.033554124828141 4.526356094854837 4.627823922054382 3.246601041750515 1.4665027878381627 +3.9512887610643403 2.5406507630081276 1.7082056629998696 3.4925658009479177 2.274607804316607 +1.7651936255159573 1.9430035513666 3.640267974625747 4.961964589870043 1.333603506473809 +1.3433621734078383 3.377684283755391 3.0868586596837537 2.3833085213956657 2.1525448301334187 +1.4143862411791734 3.1880406080851715 4.499362054913269 4.96320337904716 1.8333026447422691 +1.8902672775584253 3.344593198220876 2.6116890173514316 4.884610269277109 2.698376345316953 +3.582214337964658 4.658575020882428 1.727498449722118 2.1319030913803574 1.1498240882526063 +1.3531747999840258 4.862409266856275 2.9759731988632945 3.153983041448289 3.513746440416738 +3.9880358961292584 4.011291067749071 4.001285678113168 4.401537760098989 0.4009270908046149 +2.6970686113032025 4.9384856171977685 3.6736985220973626 4.01566141993666 2.267352821642898 +2.99633475771605 4.769302694296751 1.8735280936207634 4.000106590345938 2.768709339543812 +1.9951548552810645 2.877625784488649 3.4993871897722237 4.172351414593671 1.10979087615011 +2.634940634068729 3.764331898186582 3.5028582030722375 2.356338113494029 1.6093579288872149 +3.1323471790711994 1.4310262720582747 3.3653070841847668 3.5894524410370803 1.7160227182755279 +2.150647109626886 3.4776792935232987 3.2061213025100312 3.2004985557330166 1.3270440958680314 +3.9472191319110794 3.885027029166953 2.858737113487228 2.4555240075369134 0.40798120845675695 +1.2112035275524833 1.191708287978103 3.4288136459823755 1.5808555205561734 1.8480609561631849 +1.6184004180696672 3.0954930059511883 3.1172362251419545 4.0572571864517055 1.7508403470551612 +4.053626816282639 4.415300405003169 4.338972203724629 2.9790149853219114 1.407228275960814 +3.615672785466569 2.642196748946471 2.9807539607417164 1.3517528847752454 1.8977091713902845 +4.916565823137493 2.626667909447551 4.576184709688431 2.653511638367706 2.99003414600961 +4.621236240578655 2.4790230467416228 1.240275325533562 1.5500394652574223 2.1644932871479003 +2.6966426924290388 1.7691455347332914 2.4990232254624933 4.608963584595459 2.3047991879189476 +4.487539712508657 4.08821835157221 4.864452635166348 3.9610388198984925 0.9877317808580219 +1.1695095483295161 2.093302250470796 1.5451975053496052 3.3454405004686314 2.023429711654104 +2.852057070291187 3.016201126161943 4.037668654165081 4.100040638053876 0.1755948047407039 +3.421309002183337 3.8222635690539044 1.970208540214439 4.6234662131672755 2.683382351394871 +4.718305856862337 3.3788214919756316 2.5203681530340805 3.6575012551656947 1.7570685973346083 +3.7683492567104455 3.268964410812202 3.602806474699311 3.0355911861247122 0.7557237642853227 +2.0294664403390903 4.464264288519938 2.6849169037902136 1.6052190119262644 2.663454166904612 +3.474618500517293 1.9385359413312573 1.9008092419881342 3.9229051430992894 2.5393742264436048 +2.6241106032623147 1.3742557943259124 2.217760208454368 1.7974476213460284 1.3186355502196794 +3.519686611820031 3.423739656607858 1.292481281574506 4.810077934959587 3.5189049481508317 +3.0519827257072722 2.722817683711743 4.559060709837207 2.7689775224065345 1.8200954488141208 +2.1599545131294238 1.8315594416077086 4.355072778941782 4.376589363736416 0.32909920452802244 +2.010250820088608 3.4374715908543876 2.682366557093036 4.920564451866209 2.6545223571618926 +3.452648772156222 1.4718931426007686 2.014379144739564 1.5613193794970273 2.0319094504670336 +1.1914144689593926 1.8445328160444712 3.0400636555452607 1.3424657918782734 1.8189013392776048 +3.0433003012523696 1.4363238726123022 1.6576891730998438 2.0805269026289093 1.6616753556931874 +2.314426668804157 4.758614298640314 3.6204758570833655 3.169628939019757 2.4854207115439317 +4.9013092304427035 2.3054162410197443 3.005612433949881 2.042477395580707 2.7688065144877236 +1.1804723010096438 3.614151363132508 3.4740676021859622 2.871579657953869 2.507146884480492 +3.8608961259287455 3.5021858656041984 4.9801729990799295 1.6750956149628307 3.3244863612089657 +1.88384109500184 2.0136833451383365 1.9596549489880948 4.887161042838607 2.930384094184992 +2.2756526882607195 4.712585553268735 2.987325950110815 4.408275574071727 2.820946582690078 +3.720498022010537 1.4962267803167797 3.3765092072325977 4.345417798761018 2.4261422908319856 +4.030260661664795 3.163431747831245 1.0121452168724048 2.6369679682416174 1.8415866363613933 +1.2161618513976906 1.0807783812243388 1.5978813020571887 4.63688685732056 3.0420196332235943 +2.4851522063358065 3.082924789793286 3.0361206825819242 4.126875795393806 1.2438162153866181 +2.253167735103821 1.833143889343881 2.416724816862047 3.94858773263607 1.588402979010887 +1.9823783781442694 4.024910054805153 2.8093157283264927 3.8683421610805526 2.3007547968949034 +3.389550055295017 3.4069734407084864 2.046936437489558 3.2232968133648066 1.1764893999899115 +2.0083781115517936 3.41679644313689 2.5384938493853557 2.7971530772112456 1.4319730419545027 +2.3441909219205312 2.115409706895229 1.2045973378795418 3.308529973755913 2.116334893313 +2.7307459680360617 1.5722495271803432 2.496123093792447 2.6829793129581305 1.1734688961008986 +1.0825566849786412 2.73421838808741 2.4340179980699466 2.8551038475211366 1.704493964238122 +2.129837024730766 3.7585101216916406 1.317781131161865 3.073696691169978 2.3949562648705576 +3.226038165620313 4.358147453811127 2.7058731721716995 2.2414005667577435 1.2236855158037707 +2.1690739308258546 2.354096046430911 4.673948462133463 3.4550734657682383 1.2328379617886926 +2.7089998669630044 2.187705779431294 3.6266179592195735 3.950294364550888 0.6136073182938092 +4.003994547153939 3.8169441485117748 3.1609928035718253 4.6719393013814905 1.5224805978650384 +4.1092741931603065 4.9898783776487985 3.873456531693444 1.9822573109502541 2.0861683111096982 +4.7726353716244 4.484088474299266 3.0349069828409627 3.888262221353836 0.9008187803622456 +2.6046299548360934 2.382874889833972 2.27071896963176 3.0902548499558833 0.8490078727507367 +2.8511234535134498 4.564820417198835 1.874902123661872 4.410279269749128 3.060211521487701 +3.6836993569271246 1.730054167224111 3.695489411330038 1.896144964523108 2.6560063941008614 +3.4738267586706724 4.546442084425728 3.4470737920080645 3.59933174054788 1.0833679522388395 +2.419966005411334 4.640860125642277 2.8074420447454878 2.8880722579384144 2.2223572900314457 +1.2337263888442331 3.8319937361616017 2.5777071245745184 3.4558292363684866 2.742643187029099 +3.2457825976707175 4.553718302696849 4.368597688075846 2.283575149808313 2.461303474495941 +2.131034640524573 2.6754022368318555 2.4102387473023397 1.1902097869105206 1.3359665954297328 +4.413844816963691 4.730255456077029 2.7577102455259057 1.5012456886806063 1.2956924307691877 +1.7244508782948733 2.353684857402327 1.9684471472916094 4.891418735440211 2.98993282626673 +1.2079516223619242 4.325074497116397 1.2090972022451565 4.1756372351202415 4.303116868383672 +1.0991728511244632 1.3936543696180288 2.5601458875072454 2.5826455428338133 0.29533980297970436 +3.613316535007252 3.1696049464175284 1.3313122016952117 2.650239501166141 1.3915635792656025 +1.845138045788195 2.4381251321121407 4.081990967538536 3.766330975193074 0.6717699869110704 +1.5812072089737295 2.895442567130589 3.2341774959237592 3.3603201993616025 1.3202751827783086 +3.8151422713187984 4.142962902567801 3.223360622930413 3.687223499720728 0.5680098016202547 +1.991275169120354 1.09969199917514 2.058535463898393 4.362314215470047 2.4702868426809474 +3.7294114844518576 1.2461665212689503 4.611095593364807 2.3960339104138138 3.3276123281492636 +2.42002528348446 4.130259271527452 4.863498879020154 1.3880773342269572 3.8734293859408573 +4.399883177626567 1.1222942577862738 2.003987687406541 2.532100012544447 3.319863213360217 +1.368642486751852 2.0510583010013907 1.9654993290838605 2.500269010493171 0.8669890170541241 +4.380643153449583 3.5956106734673683 4.01179339752705 1.5281399421769994 2.6047668764976404 +3.6116662147929075 3.5690049886747293 1.51248643530757 3.970343238245071 2.458227012291595 +3.009294981428537 1.9499894493343621 3.1417825060326963 1.875724160699344 1.6507670774865693 +1.0646449295731673 4.744160383803255 1.513657966984621 4.2703274816891295 4.597614684944709 +2.6663622492722903 1.984512960840667 4.685548831404981 3.539353601180002 1.3336723577870255 +1.9655367003470054 2.569465394890775 2.3800367383051104 2.619343115334368 0.649613277404496 +1.0840406518674808 3.846675979366732 4.795823931484804 4.860804022092652 2.7633994218936753 +3.004014214556733 3.5502299872406407 1.2899919355778064 1.03507490799322 0.6027722300183039 +3.8762667689733146 2.425339999398653 2.7387353889892925 3.9660575354470473 1.9003968379930636 +1.154106859313912 1.5732439162361866 2.477129808123015 4.303168370999582 1.8735241406498566 +1.5345202712454111 1.1304166101875022 4.206124035436535 2.181995031837656 2.0640731557022374 +3.4416306685872584 1.672014332307172 2.1122206832543178 2.6377738282954284 1.8460086906328363 +3.2451581578337976 4.852509814383339 1.8889297307523023 3.9217108009757187 2.591481859336702 +3.2435321113932796 2.11487003458186 3.220992268902768 2.224946366756281 1.5053190767458826 +1.4049342744686535 2.641188551640828 3.740626347919837 1.16364264303885 2.8581759310876294 +2.7383353566527333 3.4201867689184198 2.279336598800973 3.637553229723537 1.5197610881067298 +1.3558849313934567 4.848610937262306 3.4860342563796864 3.9687191692986277 3.525921110466332 +4.295449581064004 1.370180989837674 3.2080385517718866 4.267492262306879 3.111211740718018 +2.0712640991507882 1.8120726975974515 3.915339854387728 3.029600733207275 0.9228835102160532 +1.503938328296067 1.8301774822492494 3.7626633917961767 4.36675879895591 0.6865589898352308 +4.859654723409984 1.6659192672734298 1.052625742214342 3.4994374353199524 4.023286420987463 +2.3705986751582566 1.4263069449650194 2.229201953897264 3.7275972822436616 1.7711226472838197 +1.5939421118231816 2.8634656561541014 2.9095542094450497 1.028358294424311 2.2694907138609874 +1.016274447854952 2.3682197999765657 4.670837625604559 2.0026143649836414 2.9911823086601985 +4.71469513148336 3.5049422831009953 1.9590808995970561 2.909084332560302 1.5381834990699896 +1.159584383160245 1.0102597412354641 4.8864901524682685 4.429832245521701 0.4804521752087131 +3.362191172372353 2.9784453283155754 4.175255527008815 1.0198028550674043 3.178701375985646 +1.8742580607848427 3.0687650982794823 1.964959782495939 4.359804206153626 2.6762150280103687 +4.437035927321109 3.876617831794146 2.5266974945112173 1.6644196441754415 1.0283926939519525 +1.9904172644511462 3.8400251129510914 2.722328789101489 4.013971100030579 2.2559674316387714 +4.3918193694023895 2.327551154820215 4.003991573736371 1.4854093920784472 3.256448904481547 +4.806722657030214 3.1927168550644054 1.7298599122826115 2.4154855407374134 1.753595515269509 +2.0971289657131016 1.6268333536506203 4.2791274243237005 1.1185399989861926 3.195385866515467 +4.3317001478296895 3.0899025651519327 4.47032304857449 2.911308109363737 1.9931354236545562 +1.803153624274478 2.3866906515073545 2.9760645522946994 3.192734644062143 0.6224639674859063 +4.6953092130945615 4.288577860527587 3.994896817800885 4.008267092969874 0.4069510503967952 +4.84158802759266 3.4830157627208886 2.9636901140810603 4.1171402477686225 1.7821800722100645 +2.237025366671116 2.3490345945075464 3.3460455332727492 1.9183810557152503 1.4320516497668792 +1.5955804415950885 1.0714028361450687 3.120940774319625 1.3714247953224588 1.8263538328652882 +3.3439157114206517 2.3510026436165496 3.6190766104903416 2.898635571576367 1.2267484056511344 +1.9878805395756696 2.7007308174258475 2.8469906106426306 3.7939496277003752 1.1852792492143132 +2.50737746728044 1.9076206787883447 4.065663446523478 4.620461493309966 0.8170122875822943 +4.090782259394374 4.785080357894067 2.1252843341168144 1.0312577388388857 1.2957407305304969 +3.643301895063079 1.237474310185596 2.347641096844393 1.5877412120369483 2.522985176945713 +3.850131492600012 4.045996924450949 3.7204436888264047 2.0572276905892393 1.6747091461463406 +2.1035310258668813 3.5162527777681425 3.1080850321722004 4.685149478390348 2.1172895446349136 +3.8820513267131136 2.2268033073143063 3.7782548076900024 2.235150982414231 2.2629660672012726 +3.918438638280712 4.056953519073204 1.2843349446674543 3.279107393621842 1.999575828846819 +3.0681394073784323 3.450520336574304 2.9647555880623497 4.3037745085302745 1.3925468912692975 +1.109967803237601 2.003222634532273 1.5193272505835291 1.0004547364739471 1.033021238663403 +1.3093760984473048 3.4797711432850247 1.4444676442751412 2.309337780716993 2.3363679084350295 +4.273761146571789 3.0351652594413188 4.212607933262366 2.9671968625559106 1.756464775238808 +2.5339002676836073 2.60520115356861 2.6872562500315564 2.211407277792881 0.48116115876968896 +2.227034181711973 3.914651040331607 2.4200262452368984 1.9057524600447415 1.764235865079573 +1.4247767378083038 2.3996566567796696 3.0040830034635517 3.4222885291467313 1.0607953233897485 +4.174878509400446 3.684796136342361 3.4445022861646213 4.66153361891084 1.3120007611538502 +4.559555783868655 2.342217087205897 1.7984080932406723 3.9788107832225035 3.1097824339008193 +2.3365912376529323 1.6959055537080854 3.590049331375168 3.7780819497828224 0.6677083279375171 +3.480351383564721 2.539761569396175 1.4404798200095965 3.6745180731464306 2.4239711456608344 +3.078149151068152 1.9607246999453576 4.349349292697377 3.464709996888318 1.425210190693508 +4.570526543547825 3.3344032303685744 2.233033441063844 2.969102149314957 1.4386792514843985 +4.5749585320533575 3.336743427885703 2.7446683760617794 4.787755362104601 2.3890125735806533 +1.0804900129934132 1.7571957138281298 4.466511916872133 2.985098035907883 1.6286551790528787 +4.3783017985610915 3.7253219583799995 2.0647933000411407 3.7959125259009316 1.8501774092838574 +1.8156086299575342 4.441622523810658 2.6950577340559367 3.807865493888426 2.8520676852159466 +1.3662995664055857 3.060322353889368 2.3562376309586477 2.1620485363653406 1.7051165968851782 +3.0899897772581193 4.726870380378799 2.2848706708978446 2.659615935709192 1.6792296216930087 +2.0955042371341923 4.033216034914389 4.603635657201307 2.1081663921576146 3.159445182944985 +3.332533777750726 1.1439787178946226 4.7223977186251105 3.9391987233991195 2.324472825426177 +2.9672863132692964 4.710644757231483 3.9682046164582334 1.7254165556769778 2.840668398408586 +2.8808586004692254 4.413773500178285 2.3352399295497572 2.4734957759331273 1.5391370208039372 +2.138729175641031 4.865119589287644 4.934079240118569 1.3387294019353022 4.51217742853144 +2.9684025853240215 1.8781639675840776 1.7932682620712064 4.47980573933774 2.899328173968779 +3.924177274986575 2.5581574346618763 4.754347439584366 1.6320408908560435 3.4080505260914906 +3.4669710109040413 3.9410310693071864 1.1732065242342173 3.1980845206903434 2.0796306978656975 +1.5601943464775667 2.064501688434915 1.2224235628673026 3.277487322741016 2.1160370867020193 +2.4305154780479485 1.92795090760479 1.559922859091364 1.8088409418219475 0.5608309543659177 +4.181544909204551 1.6139330027355658 4.016100311012841 2.772141760447108 2.8530797005633923 +2.354130974271168 4.078444968265167 2.402652433234343 1.6056840563973314 1.8995834658055324 +3.5948078212456287 1.8194501279745334 3.723428420550458 1.921331896417127 2.5297127942417292 +3.6287565790917693 3.9144889308872184 2.7512689956993386 4.578117761437342 1.849059055233506 +1.9383732474847655 1.4644112938388645 1.2461979277684545 3.3793631489133493 2.185185070927858 +3.820197295324348 2.988890284983269 3.1365735706759454 1.4068689863831518 1.9191011683508843 +4.40700919651914 1.3799004165947455 4.501262597236554 2.800284703652989 3.472277834499327 +4.946882529673719 2.7724712620175835 3.382734614180855 2.9042625639885937 2.2264320927720087 +4.8482036871746805 4.443492716392305 1.422624354317899 1.4582882240797033 0.406279314607574 +2.441524545281524 1.2396267104232268 2.9969992933814833 4.14293329250185 1.6606393755951527 +3.379280786052344 1.7727913963251063 1.9032668124260557 1.2825061498119332 1.722252002337439 +2.843417928809541 3.7162160096128387 4.103807385949302 3.4705034604716647 1.0783553921965172 +4.354448603673711 4.293447369877408 3.1571352561083006 4.264872310258401 1.1094154008584038 +3.1573359089258153 4.735169974526912 2.188946620065433 2.9123662913525448 1.735769673481029 +3.345167533986983 3.3231838104098195 2.4877136380495593 4.498578183543755 2.0109847101427434 +3.990045241738231 3.8442993314450784 1.797484248649826 4.5408698804478025 2.747254373938235 +4.821305048334626 4.535184587526344 2.874691316502261 1.6314275531851048 1.275762400790477 +2.9020552817037735 2.448333981162854 4.160795432912538 2.4693417944632965 1.7512505330727872 +4.127035328847189 2.8941750853732895 1.6658736752676626 2.4023732612880315 1.436097496741324 +1.4996876533456502 2.0150420170475294 1.1367030421847577 4.295304254976957 3.2003674385356002 +2.9685546308707 4.560152663978748 3.4549395090953254 2.9093714764071454 1.682506694573504 +4.69881004957603 2.2742447698908443 1.5354992740691253 3.1728133135814436 2.925630540488503 +1.0279832765535755 2.1123225637856136 4.114940798771083 3.7283852195125493 1.151180657277903 +1.522203792854694 1.615802585657697 2.7703990743529783 1.7592170145527097 1.0155047474414354 +4.614368868732948 1.2028005135340365 1.8300348722126087 1.7062396160542654 3.4138136896500244 +3.1364186595678505 1.3121256951717788 3.6841616432665782 1.3529156136701133 2.9601947352250813 +3.513826785467465 4.61125008577276 3.877692557483801 3.880771258276212 1.0974276187756227 +2.1119323041946907 4.890468269243882 1.9684999258906477 4.239729339529857 3.5886968607632137 +4.671135350079134 2.914599746438565 2.0255409723264384 3.4601951654377716 2.2679616356254506 +4.658202017117287 2.2308401337065598 3.0165250993305945 3.4870677265958836 2.472548498434155 +2.159651890482295 2.7186721938523233 3.263386737145831 1.8695108736303738 1.5017967979959475 +4.636739834811197 3.3061201256176687 3.135999040487443 1.4816276825379155 2.123085820332761 +1.964544416762692 3.9120860528035744 2.3182248665712915 3.5710361879926875 2.315697439475723 +1.0391226096210504 1.4192405887918516 4.855250727418692 4.226615071722197 0.7346240301690766 +2.7739452789498076 2.355831683918501 1.6548935572757193 2.8498819634630994 1.2660238028063526 +2.4814972114164684 4.6265848706380535 4.4494872379598664 2.6393722714412338 2.806762771906363 +3.7435754733108757 2.7427519145693493 3.0378610596266746 3.402655960418442 1.065233831313918 +1.726438885481067 2.489283494023794 4.621456334500586 4.763164045366093 0.7758949491403125 +3.195629753268213 2.1194565935121643 2.5245549901674544 1.773069797196249 1.3125847268021549 +2.191312377204823 4.942854512261358 1.814932003235315 1.6955402337058363 2.7541311725520368 +4.1061006741087915 3.095031828681409 3.1578975780428338 4.08326087158171 1.3706047698818857 +3.4255047041847817 2.030997775833882 1.032079198264042 3.9446430899832476 3.2291915391573145 +1.726313311611082 4.04564330818733 2.7573951027530685 4.855899825005464 3.127780954979741 +4.970509617876724 2.3700728911271183 3.434057206328679 2.542067798108121 2.7491664689876214 +4.367534450285514 1.8660806568990163 3.125017590019414 4.627384202331969 2.917940458309457 +1.8729711228897208 4.867703810283869 1.0472148521674307 3.405458232715109 3.811789043329119 +2.606966020490064 1.3617730411636062 2.8496120705153163 3.6534780433610634 1.4821288938763526 +1.1052055500167586 1.6855094737379996 4.447724669820572 2.6557927408140425 1.8835532065963339 +1.3275011124658729 2.8570782372493184 3.1879118330724343 4.592403099386111 2.076584189916746 +4.768219236638094 2.026525167481239 4.354558870882512 2.2601340775088716 3.450145154040347 +2.9310523214416566 4.4682233690846385 1.8177255067395652 4.784548575000116 3.3413970054566655 +4.366859988935595 4.547622685947466 4.157365671069412 1.0640478781714795 3.0985948622706294 +1.0033556479087213 2.869382416415811 2.8485736710961294 1.72112169821499 2.18018436191497 +3.9103552152329604 2.3140895408231144 1.019776279806849 2.792815836566903 2.3857353946183992 +1.8951011898304961 2.0969043562809113 2.527077507397821 2.261409057328459 0.33362290591575255 +1.135492443370604 2.08360388358744 1.3483320191337023 2.8928499451099956 1.8123054176192692 +2.07177134218879 3.1442613089824087 2.983185401982355 1.0983273599812113 2.1686227351407537 +3.850132184665732 1.2735373819745885 3.2517266277390844 3.506113562621062 2.589122146576646 +2.571142406416711 1.799028432051243 3.1231296482016693 4.803541827876867 1.8493093529778046 +4.70562151694681 3.5763652518917866 3.612115035882903 3.1634296616422732 1.2151289138290944 +1.30643581130883 2.074888748243531 3.0959633292693036 3.385816749571426 0.8213007497527364 +3.300353450204681 4.881728483220909 2.0770236634321098 1.3962625858848057 1.7216801792872114 +3.1875348018133294 3.2657476416784412 1.7321929223094945 2.49987986824446 0.7716608680493783 +2.5033167751425496 3.651287448978165 4.895758721228093 2.132128573865298 2.9925721811510413 +3.1574718339607237 1.705772292309951 4.7346300683749885 3.1451813588150497 2.1526213692962397 +4.800096546287837 4.647764597426915 2.0748845101050897 3.632636683347539 1.5651826908975646 +4.448735408282094 2.2658590883247665 4.058065658443841 2.4206562545028767 2.728746705787246 +3.053274604363283 3.5174739692022965 3.5390586329321496 1.6234481126215257 1.9710516776182412 +4.856501169799216 3.905492848319032 2.04671122378333 4.018303233983505 2.188970507386914 +2.4714749895516164 4.84313980261649 4.641571672320665 2.8157348951184047 2.9930709852114057 +4.606733369354935 2.392549330127376 4.408499193192308 2.1574686176706983 3.1574910311041617 +2.335452012161498 4.317492747383149 3.4759459323067956 4.267565103847163 2.1342788919980067 +3.553827604674948 1.0810104212125857 3.5783378741224925 1.5198856183538303 3.2174602580460605 +3.97256546714284 3.583291862235405 2.734612285953314 1.489954542084611 1.3041115131958463 +2.5493242769153306 3.5501067739859753 4.45651833451384 4.021517313737269 1.0912339320785498 +3.4041583093576895 1.5526662097282204 4.210891058744495 3.5955860132677473 1.9510569684095547 +3.705145362475397 1.8984700662093976 3.5711205909536075 3.5354125424116454 1.8070281378186983 +1.8811040743360135 1.9282804515117848 4.804735913820999 3.1285711351442735 1.676828546942062 +2.684241011037291 1.627026170988497 3.119049287937074 3.2815003968318295 1.06962310221897 +2.9230038841498653 4.791063506954085 2.602669388076887 4.120660816579235 2.407061430740405 +2.203944508118259 2.4188591735231335 2.1770079888417397 1.1487010280815468 1.0505253537892145 +2.586980407641919 1.2619351682956514 2.6236070999091323 4.802905192528542 2.5505068246936347 +3.4734054187275927 1.5746046833666365 3.5448598456924114 2.9212750025287106 1.9985750646975473 +4.6836080427179585 3.7416879882824396 4.8129104299500085 3.345675875271107 1.7435568896344062 +3.303491612611654 4.617469251761751 2.853198680472083 1.3633466904815537 1.9865035082438698 +2.1860541212442284 3.119687078269685 2.373961901312929 4.879166305731274 2.6735219479856847 +3.7391083979949724 1.4138634733576527 2.7705030109538997 4.913478933964389 3.162136898705411 +3.617517523633943 4.389692446330434 3.299551339918755 2.803328844306123 0.9178730175756125 +2.8271904743125504 3.065641896821566 3.0593325916928698 4.471945916990858 1.4325974618524262 +4.333376980909967 3.613565439111144 4.188147490725558 1.4754127964785795 2.8066097300975152 +3.806405328845611 3.385546701780735 1.0805826671391014 1.96334286181485 0.9779506865271367 +4.648704028904052 1.869845289966118 2.9755438515413175 3.730406288857097 2.879561284335175 +3.104350242239378 2.175499162947462 1.9674646233662347 3.3902087557857072 1.6991071755000609 +2.7504827971401657 1.2103678072071364 4.8446778600567395 1.9871217930086251 3.246164022125176 +3.0012248078602157 4.538493328466158 4.2273458654503795 4.773285325165067 1.6313320931433757 +3.908885340529376 4.880478915108467 2.5143542933725866 2.662500800488694 0.9828232098063615 +4.518152687107296 1.1708583271220032 3.9128731121217655 1.1226303779741675 4.357732672830312 +3.1097322388486224 3.938303101443217 4.285651625584607 1.6577757337512513 2.7554058461903037 +2.244255840029765 3.582299942024105 1.688531447559793 1.2554470844515482 1.4063868900308738 +4.960409260449376 4.1452400895532175 2.867438986728619 3.3925447382599647 0.9696580982340269 +4.821416706670639 4.673671490870842 4.546689176826935 2.3647870672109628 2.1868985949829405 +1.4564278146503309 2.300250096880212 2.866382064697611 3.970075120719635 1.3893071675834974 +2.0496067861568372 4.837633860935815 4.04224756685762 1.472422338796647 3.7917142129226007 +1.8596596710282034 3.4033729063558007 1.3077663035173348 3.9443373907230836 3.0552508327165055 +3.458988692879644 4.609878928429934 3.56121473232312 4.083753212757023 1.2639599668578014 +3.1958712474211675 1.9388894588444412 4.156605084885603 2.669164896406867 1.9474294675585058 +2.5863604255873827 3.6016780945453326 4.909808422967075 2.2053663235986973 2.8887500822560335 +2.3599615066091384 4.540960817195318 2.7425604576155624 3.661843845344718 2.3668206395357005 +1.3520782053971057 1.2870204685338655 3.149715792619348 2.7417207169933895 0.413149477623775 +3.281213626358419 1.3369446466169603 1.0892402018977432 2.4437995916226636 2.3696018665330345 +4.818566667162893 3.6249096108726953 3.084507886827021 4.481528229792273 1.8375208860554837 +2.9088492493396063 4.406569074260881 2.3722713107091296 4.370619098869225 2.4973102643457343 +4.861729444728317 1.8021503413068936 1.278992364627741 3.4282668790381403 3.7390380084170176 +1.6832945318741865 1.2655607595556093 4.161689316532972 3.8557833005115256 0.5177644205366205 +2.616571907531443 1.396539839985627 3.597570646840193 2.603302058737466 1.57386412092274 +3.488023381268049 4.860979406191586 2.146202298431835 2.54314241359457 1.429184978020426 +1.2308740079433167 4.989480376928448 1.7146437551647487 4.830601826333849 4.882245030542758 +2.9132283070864764 2.391248773634166 2.4433892600578226 1.9963338087730955 0.6872562912527483 +4.693358560795351 2.1930156136161214 3.479214170355853 4.479203121316221 2.6928967220359072 +3.28154447191353 4.255071462491474 4.3097419282271625 2.590160289245033 1.976035377848336 +4.91467358427666 1.4355292688267522 1.3883492673643776 3.421049725084118 4.0294312648984905 +4.434119324612913 3.210393843991163 1.6119950414306623 2.406650511980821 1.45910293290029 +1.9132686510862298 1.6123586356984547 4.230520068032939 3.5024299388406623 0.7878210923730696 +2.9694284547335092 2.9905557964994145 3.988958671104003 2.0638501101702293 1.9252244897545319 +2.06973039615744 3.208620389081419 1.1619096007626641 3.8815095638743475 2.9484393117952163 +2.236907022034114 4.471828384870015 3.1561279785570937 2.3638069148023013 2.3712119614513183 +2.3010492179729582 1.667657244073086 2.8643544997876473 1.9837795793260447 1.0847108292751273 +1.3343023623052206 4.2504062975539085 1.2713890334543207 4.571907356547733 4.40421200241862 +3.5757173670249833 1.3369689291408062 4.5600341566039795 2.6316986312215547 2.954737292312255 +4.630595546238988 2.5477036824495785 3.1879231211318944 2.28433965373032 2.270440837987542 +1.054884909710737 4.875941849298363 2.618164046644246 2.079162663649352 3.8588856715949964 +2.770859146935321 1.962364160856767 3.0034187281100087 4.884755612607045 2.04770423046962 +1.6253965793219356 4.870685460014664 3.2289193274104524 1.853787303317322 3.5246117520706206 +1.5611840662276788 3.3758461366312402 3.8894624819207984 4.132445738786574 1.8308575293775426 +4.8272856055278535 2.37120578311223 1.2742090984349215 3.795152798645047 3.519585946344581 +1.42542076387193 3.685350169593936 4.417896859352318 2.005351096978323 3.305700829536112 +3.2638425841654852 4.372759863026692 3.6359750997512195 4.797948547108293 1.6062004307432571 +2.04362566394667 2.9098948501361948 2.071320304593378 3.6010085767912883 1.7579443998719892 +1.0693532013066513 1.674146636858738 4.353021811531056 1.6747328344185406 2.7457252128735132 +2.661789498081733 2.6428943588615317 4.973194823164192 3.2343311453530514 1.7389663355847456 +1.150012891743601 2.4133959237801617 3.2179346847507513 3.7474542832543025 1.3698641140044714 +3.9095259359475762 1.5918202059456412 3.716802710544725 3.713283127378303 2.3177084023555397 +1.426348100856277 2.5177890352155505 2.284088798825968 2.554873583642524 1.1245299964354851 +4.58315915827748 4.879616044367452 1.1929592983186352 4.556296056156155 3.3763768794272897 +3.016752785339367 2.106411917817795 3.8368467430372935 4.017100261673853 0.9280149923685441 +4.471476793774202 2.8814513437469826 2.501820918507748 4.2468436201612345 2.360780625348381 +4.035560599121423 2.3461953119309333 4.395941573979793 4.6040625083548585 1.702136715099394 +2.8216726062849484 1.4949323127705378 3.8868215537719646 2.350644969356068 2.0297976019648845 +4.878225901738752 2.4554855080293927 4.755313695841226 2.9778853785067874 3.0048165399194193 +4.586476863401652 4.186368963421959 2.5349501985625933 4.416143746090805 1.923272080306876 +2.9012401620847696 4.326059194645909 1.9253049790668326 4.291434301429344 2.7620060184025923 +2.2950496665274405 1.2194021589177289 3.1701328828675757 1.7212510680239492 1.8045154679335793 +3.747900573746842 4.263739506365404 4.991753491979653 2.6468698573913723 2.400951699673486 +4.35334677013517 3.6814039257588926 2.0411834983076784 3.5524953631242773 1.653956087338448 +3.4450121941315954 1.3378468875432148 1.2755540154425642 3.373783785825985 2.9736700890672063 +1.525159288568556 1.0196493804813045 2.1050666252963843 2.701870632358044 0.7821222986331711 +1.913713841987179 4.482220642635195 3.260932099747534 2.665004368804223 2.636732266553119 +3.768502898936385 1.2031711757365242 2.5498213034398414 2.1303827347424638 2.599395230234616 +2.0120354103830684 4.483628734184494 4.27946360317724 3.997545109223255 2.4876196645574784 +4.489802820298429 4.148794515299134 2.950707245056971 3.763866675644354 0.8817680668019733 +3.936414065034595 2.042413783295231 1.1550089264665564 4.877325078182402 4.176466760379334 +1.9791353284698383 1.0047488249393988 3.900228427239829 4.54636763838113 1.169155651928595 +4.014933781909333 3.9589038673406143 2.6766460565911303 1.1873500458219848 1.4903496096619306 +1.6706751125940658 3.733187058124283 1.2581347691285893 2.5561672350737714 2.436974314206568 +3.760819749879787 4.554025479351475 4.872709392719642 1.5463207394887002 3.419654485706162 +1.3380387393540873 2.920325994978264 3.0021860149339052 1.578234001929613 2.128678532481987 +4.310660287584346 3.733465504157739 1.0969012349451268 1.6830687050117192 0.8226458053008946 +2.5935646099512137 2.4831077283322966 3.4994680220518544 2.6125287156145744 0.8937908345918628 +2.1181309430759216 3.377945114071237 2.425144638392118 3.6432806911603466 1.7524232332671164 +1.6217412463738339 3.526935855546334 3.8630893124020904 1.7451397308109367 2.8487676158265525 +1.9315523838912245 2.162551783075448 3.285204405607922 1.8764301080434285 1.4275873857322379 +1.5584839087640376 2.235894868122089 4.271840644067998 2.136479199343297 2.2402352794907854 +1.5099568753917763 3.6624105119930452 1.0237954670459581 4.561753696406219 4.1412806099582316 +4.061584558761431 1.9310981478419271 4.964624987642385 4.953254373742054 2.130516753741481 +3.0143967429605376 3.1668187924073097 4.1482475196070165 3.5007972220601786 0.665149884575682 +4.790501573404056 1.293235757224278 2.1228229688635194 3.5558622944012535 3.7794801094273867 +3.4177932347825615 2.991055471242072 4.322136922969058 4.20320254088981 0.4430016998523948 +1.2457240849178755 2.2820543391331922 3.8048904028877564 1.2850738548526843 2.724601958369951 +4.0118956138736745 2.750710606677527 4.409433551572818 4.105723183417194 1.2972384553741734 +3.268570167264818 1.4110498745714928 4.875077940775027 4.444209942188204 1.906837399982943 +2.0919691504311024 4.534130024831853 2.481328096438193 1.0856198862938555 2.8128546255215805 +3.1079025636061854 4.4916836499397395 2.283134463893458 3.1041263663714376 1.608999005229302 +1.1498460045110321 4.638819745254025 2.269530755113023 1.9138698497437616 3.5070546678377057 +1.340720780890058 1.8127692372305506 1.8897861702020786 3.7762655853534324 1.944642468147612 +4.166183446827695 3.0809632116651247 4.141408549725295 2.8360970690618377 1.6975102416062566 +3.5608655213869773 2.392773730068013 1.7178332715699862 3.581272089094045 2.1992823055720265 +2.2148666436515714 2.118529113723046 2.278426198571591 2.6556319683987 0.389313642791505 +4.401361575098946 1.4205712320937272 4.415056093830044 3.083677333530033 3.264610309413845 +4.507985260063402 1.3758789017211996 4.794083327833022 2.4017988798768575 3.941207317548847 +2.1109059301675646 2.938478712167013 1.7850133498530387 3.012612784262213 1.4804989297085056 +3.2937917442862217 4.73741108154166 3.112743846870676 4.3085995994024655 1.8745953621411755 +4.0413289468777 4.0293332554125305 1.0268665531993877 1.7616111519117612 0.7348425150675036 +1.0588085264046412 1.0116145161861123 4.775298941426055 2.3976506852351607 2.3781165877156036 +4.80386222138937 1.3830573820666845 2.608945977543091 1.6417476312720645 3.554909055062156 +2.9922275479801037 4.657261973754222 3.652053264760421 2.6062069370146124 1.966248758492257 +4.523374723207402 3.261194808514727 3.9706975269276423 3.4363285872156424 1.3706379174612584 +1.213676027638099 1.6540186071388772 1.2793308768831437 2.124483246470928 0.9529869438461608 +3.6696584678730004 4.629203981235662 4.106308921128467 2.783823763965236 1.6339200051200395 +3.2683159164517477 2.3186265306811285 1.4544185871025288 4.390344729019715 3.0857044965839013 +2.965989569769744 1.9772163152710038 1.9070325835104471 4.149886106723263 2.4511353441620005 +1.5614597203276515 2.148424015112304 3.800247849179859 1.5381335364179427 2.337025512773526 +3.625553732336379 1.7887729537280737 1.3210992603603646 4.64766614098657 3.799975110437448 +1.7997403792462672 4.255613260872475 4.321331928023565 1.1011732678660824 4.049781896262347 +4.975144312993749 1.7946640203027777 2.9692439369347645 2.5339153684349913 3.210134865507633 +2.114772471175787 1.4231882548543462 1.1392582064661299 3.029901013020214 2.0131614317385593 +1.3168226932229476 2.4498775853581445 2.49230464300752 2.9336391085626206 1.2159726555635653 +3.13622383881098 1.6138005329289533 2.7566548917348626 1.4938376463742897 1.9779990185722602 +2.304310990026749 2.7667716047783864 4.151468619314521 3.4644492139823795 0.8281699605149848 +3.466597275509457 4.836336555369861 4.1204928814841875 3.818572538821114 1.4026195450321826 +4.618303832006426 4.035074495349852 3.367202367411706 2.896492989676416 0.7494823396350385 +2.5732076070713767 2.8836157557498345 4.278798846713519 3.914875700465999 0.4783234001600606 +3.6549564615898813 2.795585391861152 1.3970073428819156 3.2931352857806973 2.081782844421643 +2.012966996324112 1.543946069465043 4.124582477241912 4.851090079331502 0.8647507882191879 +2.828891028626415 2.021271204599802 4.83975145173474 2.7413516462646137 2.2484509164662323 +1.3818209700012325 3.6228004214466605 4.0868811097102515 4.333510328186927 2.2545098964535657 +4.7441385236415226 3.535363786644446 1.622224371047626 2.3141986716968046 1.3928261907220412 +1.5299416619578223 3.002848677586128 3.279179015298341 3.9207046650173845 1.6065522823532765 +3.0673724519234566 3.3441964236533286 4.082473393676132 2.3614696940273485 1.7431251376562442 +2.0251175998317037 4.779900609274073 4.112617472998638 3.3610967204494053 2.855453181304943 +4.1449970211165414 1.7202790388987328 2.650044172435946 2.764104799167066 2.4273992501977704 +3.372326801155724 3.732633347284254 2.1986443055346094 3.4231871182790523 1.2764505111547186 +3.852988580057919 2.176176673045083 1.2498229243176997 3.3146293172033277 2.6599104518012218 +1.741790939608621 1.934455055883903 3.491352578419737 4.811766543423271 1.3343959310026727 +1.4422846883610827 3.3297332715639323 4.264467583959409 2.895121078610819 2.3318602029162983 +4.715964670272182 3.5027469667193167 1.9837376118630696 3.9053029780287245 2.272511969750971 +3.9124602300461597 1.7771610541700502 2.2437728709021045 3.1917151404274153 2.336257074221497 +1.1836114507538857 3.0240222689185683 4.745595559778109 4.61946017940558 1.8447281951006547 +4.9056917968933185 3.6434027803922917 2.391721571667932 3.0332554489662016 1.415958783616416 +4.974033506146029 2.3388276545366318 1.479458199955452 1.746495883605189 2.6487013808365454 +2.019453535678219 2.9823085332712838 4.545877096008773 1.4165666514592283 3.274091263962691 +4.914997567859784 3.751908745363238 1.798773885002937 1.1929612560405252 1.3114055629082675 +4.704499974185834 3.26065664323394 1.787177887328213 2.0187282816388517 1.4622924295227937 +2.22693884297884 1.706808027575888 4.615699812867712 4.163453325030607 0.6892481054690948 +2.7551616414254028 1.366069501872916 4.99727062167166 3.208218707896513 2.2650129629538593 +1.2913785405894513 3.205579691486297 1.6788152171970387 2.611404485647866 2.1292930258009246 +1.38064616597454 2.9221563253702296 3.7430719947027824 1.4391382363258889 2.7720686020567387 +3.7130818329062336 4.123463331579638 3.275006868628084 2.4418772790087373 0.9287184113350666 +2.309655557663659 4.219664461972753 2.6518230835372294 2.0858491200353195 1.9920995311234044 +1.021118615006828 1.3382643009777513 4.098104894856531 2.4999257826634986 1.6293427695792182 +1.2651985837067015 3.69246120910805 2.3113798730111696 3.799104749024283 2.8469157274809667 +4.943908980306898 4.821319733120173 4.943941358503086 4.532768650451258 0.4290584102106394 +3.1416065258925725 4.5450255512438025 1.15370907700061 3.3325256429390233 2.591684122096182 +4.993751043013045 2.8374929149896735 2.9690446952818808 3.448952965852601 2.209018121887875 +1.2687491586874917 3.738745432382286 1.859256827230773 4.649001922957605 3.7260648533269087 +4.94395803287575 1.0138317042406726 4.471068655846048 3.2147061413047626 4.126056195324433 +4.1590245448816185 1.316856364870426 1.9064438756940327 1.3129333385189454 2.9034763166256403 +4.115102890013032 3.6045370315642766 1.4506362590625224 4.780519362412074 3.368797853505958 +4.9748144610179335 1.8411750690687647 2.911270737900131 3.2497704512848955 3.1518689526592194 +3.3982483439678965 4.650461236333174 1.999677299041903 1.669469873672476 1.2950189464154263 +4.256705874396143 3.7940009206941188 1.3357887867708178 2.1961937380271364 0.9769301686030484 +2.690506159156641 3.0654233356571776 4.695775765213564 4.626509830319247 0.3812619296125938 +3.323450513165667 1.5730789359293045 2.328521475414704 4.27511607874614 2.6178294841559073 +3.1146517989922295 1.679863977592055 4.424125460790057 1.8044690405594666 2.9868404464406213 +2.996941436455625 3.2513946082291536 1.0373937981911934 3.887307829525505 2.861250845805344 +4.163743516243906 3.700821295870867 3.0258071760091068 2.5697759870137418 0.6498164567411558 +3.601274568719653 3.4615991562223893 3.117724914060673 1.7804642517634197 1.3445353471679236 +1.313823269593838 3.5295152883949186 4.951610467375049 1.6519129398323207 3.9745810968516424 +1.3378618887893539 3.9457852598485346 1.9520275768879367 2.321126226971887 2.6339130818632714 +3.7932345535823364 3.8635314099530897 4.267094704775109 2.140171207193537 2.128084869684533 +4.5861647189379635 4.736538749381376 3.6084679176889867 3.613397476707061 0.15045480910861248 +4.626413696214341 1.7036739559242262 2.8611376418583783 2.7768415375746636 2.923955099290777 +3.8174741753076287 1.5195770002655187 4.587751138830614 1.9613599227310932 3.489736701682697 +3.716656114201892 3.959092748640356 2.6351367404521016 1.3627083166917449 1.2953183451611867 +2.11843458671791 1.6220724669369408 1.850370999754086 4.702619547459957 2.895116082619781 +4.325124843323202 2.639321515111536 4.211317105148457 1.5759667030770261 3.128418866313714 +4.767923327915972 3.8326725018695025 1.200208050795165 3.913142373575834 2.8696178747948324 +3.475597690607528 1.58929950886496 1.43500813434829 2.7839863984883513 2.3190220325748636 +4.431257389143098 1.7890159684718525 1.2121561076011953 3.905578690616085 3.7730577700063646 +3.4058951983628147 1.3896763301023585 3.7605927771489056 1.6306949789916172 2.9328489827000537 +4.104496588111831 2.4030202229373896 2.7962225730192647 2.3600540445141167 1.7564921880001563 +2.734215930094295 1.2831962333119002 2.927777226158868 3.44533109596551 1.5405583950640445 +3.674095825757293 3.120274239628245 3.762375469340427 1.6341902138557214 2.199065899632159 +2.29963196968407 2.4544445171672913 1.1449489636171442 2.2512339464591995 1.11706463023412 +4.0001173210491725 4.184670034961815 3.019646875100597 2.9617482981441445 0.19342168809651117 +3.4418131317100698 1.450265390543795 3.197421760316637 4.814147739286328 2.565163795241933 +1.699952121231818 2.1339598056147886 3.250465697828789 4.165784731882061 1.0130012853909334 +1.672361287206693 4.678980360254778 2.960597751030955 4.2240639716018435 3.2613042085859165 +2.8888667829982224 2.206723752658277 1.7866295263032907 4.662031510591893 2.9552082304115554 +4.762518252558135 2.8140190036624384 1.9398314912737513 3.1770871005442975 2.308127112101612 +4.897071138943224 1.4159507361980825 2.8611880593340193 1.0733927905674272 3.913363154811052 +2.7560831962512586 4.706148428578894 1.4646526989456556 2.5613964528435145 2.2373201094271247 +4.852400719279318 4.584475060057139 2.1256247869684053 4.107020847838422 1.9994285455851777 +2.3353255639550756 2.662732143754879 2.958470602439212 4.0705939207169255 1.1593158946349513 +1.1498466655438313 4.634960574149979 4.527682459588166 2.67825070192591 3.945429860257272 +2.7935702396643713 2.173684827082881 4.35140116726347 4.956668117407733 0.866375210672756 +4.380626091253852 3.6783719678722777 4.858099329606894 3.5252110090298205 1.5065696561849355 +4.257887140012541 4.730282864140474 2.8747231456831908 2.3771772073107678 0.6860828528430429 +2.052520151040115 1.322988671520331 3.9881948950617643 4.422848922999646 0.8491998019388309 +1.4387302406233786 3.5287523010398094 4.335640284098023 1.4196615637654078 3.5876348909079336 +4.360758168030795 3.8793744072353347 2.6288056106057267 2.178716505488564 0.6590224030355489 +3.1908650788865325 3.2655330650526895 2.065164647926779 2.2731327741693907 0.22096617318262146 +4.323723084236711 1.9211096350316086 1.998422865563386 3.916920894110724 3.0746034007398846 +4.8253003825568035 2.348001379714817 2.9610589054548764 2.6391423652743766 2.4981274203538306 +2.913820167854387 3.9516847901379752 3.9751725701357303 4.147292029884859 1.0520399624596906 +4.106780175494423 3.0292522212656046 2.088407619459217 2.9196750601313552 1.3609085384647088 +4.869307901070577 4.382624022392651 2.196520787033284 1.2494093151485348 1.0648386440868336 +1.3342949523402292 3.653827376815002 3.187853781389857 3.0153710410359413 2.325936577791796 +1.8164631508717939 3.412758750251237 2.349533739277577 4.730440662657096 2.8665096229377465 +3.2912631683170055 2.4719908036268463 2.2150681888150663 1.7947600102147638 0.9207964881249868 +2.359047941857708 2.8797031832878632 1.6088660804177075 2.809251045664729 1.3084364505851196 +1.9123521602051756 4.60262224826682 3.180582730385552 4.88679102294336 3.185702416157579 +3.976912207807544 2.7136857109377464 1.769805787861685 4.130180961841033 2.677146268759325 +4.095655539756125 2.646017097701473 4.308432835681433 2.5704941751336903 2.263157617248326 +2.5551162871842106 4.581948574141549 2.8311957006226796 1.9457155205511425 2.211814700365344 +2.4252897630534784 1.392396041667527 2.6413449245668787 3.9123660188169262 1.637792435477435 +3.346555854464921 1.4782530430601675 4.673919025100384 1.2996870339355278 3.856941395108727 +2.1378077195989884 4.047397576403428 3.916849057228464 3.7600771907791817 1.916014310833923 +4.220094406490588 1.1853796115844366 1.037383614201822 2.2507361474403083 3.268289806051253 +1.8834402105958676 2.1048338410450116 1.1267640982040525 3.2925094211028414 2.177031911401721 +3.2697142074154453 3.7642468677987 4.360861169679996 4.123890696678917 0.5483772034467652 +2.5924266806330176 1.1603227413597614 2.726615118951101 3.4995310015619547 1.6273661709873697 +4.007576232561944 1.6235910829205875 1.72827422203797 4.034226299110955 3.316745419152295 +4.056781404127975 3.0684217082837666 2.764975543454716 4.97198471144454 2.418210982515874 +3.4620984205558676 3.0535750070441705 2.342523883037957 4.642745926739038 2.3362176332087787 +2.5559607584964295 2.1109290339286555 4.436231511541493 3.888410040598771 0.7058056388961587 +3.1308303086658755 3.6830899099190826 3.562772435866072 4.464961394118191 1.0577975153914834 +2.706546507241141 3.4474339578235766 1.6868680365298845 3.3844395712688824 1.8522049913512968 +4.751171778760494 1.9901178725764073 4.197599494240272 4.057764132085474 2.764592664636757 +1.1148284352830995 3.3716043791694417 1.1698757876380093 4.298994280976832 3.858033204400801 +4.128942535215119 3.9338811907752413 3.931968671659234 4.470403311206225 0.5726786089586298 +1.9953219566957996 4.583170606419927 4.2778476310537865 3.2603217839783367 2.780704853691884 +1.4373687913533524 2.7684999752656214 4.380831754176111 1.7735074905526895 2.927464781079884 +1.314416512767766 3.3042866229592245 1.0645552825156503 2.5580467530931594 2.487991122998862 +4.43841969220021 3.5920141007680035 2.4584762181143596 3.5945231805073856 1.4166880835138425 +4.007664405975439 4.581466942455805 3.5334046077784644 2.0622910434321593 1.579058095851762 +4.385597692339584 2.461562867694047 2.586631646603291 3.109180398644977 1.9937319791559507 +2.749339663141925 2.1063703258849404 2.5230513889327706 1.0410741294128956 1.6154461199268533 +1.449579015307247 4.949185181459691 2.7419052910595734 3.9752239171262405 3.7105684404919925 +1.0955485765946968 1.1503214595947808 1.8669601172594614 4.166928350529163 2.300620338683003 +4.501698165473426 2.783468514587955 1.9934024680354865 3.2864363734539777 2.150406894925657 +2.1800430348464888 1.600507345147558 1.4707494511244836 2.8913839798274212 1.5342959557327371 +2.079126142827909 3.6440112420768123 2.0193761721809693 3.959061770927091 2.4922370665396882 +3.5907900106591333 2.840167983630152 2.2012578896868162 1.2630504751504392 1.2015267704683612 +2.097961935783652 1.442994758188902 1.3454079749379058 3.000654996059294 1.7801192950635816 +3.5059804544761404 1.806034102375679 3.9327887267802706 4.759999680172456 1.8905278525934692 +3.8516331714265273 4.4764627173510885 2.950920889913679 4.734307758488439 1.8896774022211258 +3.4129935138991536 3.6392984771794525 2.622534665225477 1.26055502576884 1.3806529160870693 +2.327835297178199 4.7986546751663095 2.3957451573114943 1.1635425372960602 2.761027289871372 +3.2792051434103118 2.9942535057345294 3.6014183888118665 1.0993758127155098 2.518216529294692 +4.3445854297678865 4.804558237824665 3.932847120988223 4.915289543479644 1.0847894254934685 +1.552216123630704 3.601729291587462 1.6326582134562364 3.740329273659183 2.9398608000456687 +1.9910324417508152 3.2561930900042118 1.85547891588243 1.904021745465815 1.266091573383583 +4.689735649167955 1.9202050383422118 2.5778158622260015 3.656939333798685 2.9723403693385944 +2.3883631348659624 1.8009395942361 2.743114397679069 1.9572588967752136 0.9811397884027399 +1.7957202675253119 3.493480025821182 4.330118764760268 4.992248129664515 1.8223071894599308 +4.72832108500069 3.3653982147320773 3.5545041883613537 2.048013333404972 2.031519984240481 +4.268303457944091 4.618842017464363 2.6587622301522824 1.010169632271067 1.6854479628571397 +1.5293975982387957 2.4644948429260465 2.528539831346944 3.817116246779156 1.5921168410106767 +4.4452821977382175 2.043353755986331 2.422513901648822 2.074483403244283 2.427011633082206 +1.9304925546776954 3.8792832350357083 2.217048953613787 1.3602687807800762 2.1288159573836367 +1.8508069962103875 3.8452595383986004 3.6570700426185785 4.311689678823643 2.0991350149874295 +4.15773138148264 1.7408365786586728 2.6600947471507244 3.6863711204801133 2.625761543318743 +2.5670917876753534 2.744178608652301 4.995811187196926 4.621625010244648 0.41397468181747943 +3.8855649073936256 3.365554296620749 4.208782217352771 1.9362748723173424 2.3312444463325486 +2.232701341079581 1.017825681369069 2.9164096041116814 1.3211809962459276 2.0051626317858515 +2.164618751791983 2.8581281411226653 4.793238560952247 1.2012340314349315 3.658340035202131 +2.6518417891394384 3.3670803667061198 4.335478582092736 3.1380033470264332 1.394816533253283 +1.3840062444004655 2.401419732933513 3.3756748762598465 2.132605865958024 1.6063470269595357 +3.021336509843329 2.701945697928165 3.012443291949586 1.455565974477668 1.5893009382726682 +2.0497334959858695 3.7268620437035342 2.9167400995712955 1.303389497195106 2.3271571351666775 +2.8200760224141286 4.477345333848337 4.242164765428786 4.311796629711054 1.6587314933843393 +4.402904484918922 3.891285098189791 1.9726454243243627 4.7922977825711275 2.8656925547315146 +3.1755157750495644 4.275837242745547 1.7654951192699788 1.823734870475422 1.101861697715786 +2.56813756756906 2.494525273184352 2.6653395232451933 4.447803338843984 1.7839831904487167 +1.4647830798703598 4.1141562519717585 3.8337729276513066 2.822163580405786 2.8359357673412027 +1.2094058536508898 2.501582599745368 3.066751167009768 3.033168700472427 1.2926130608987538 +3.898999755674237 2.0251865122510893 2.5536416961065074 1.5932632703736695 2.105588466875961 +1.0327775317886099 4.15345762460907 3.098879774457699 2.858809925690861 3.1299006012991604 +2.8608479933675492 3.336466125044345 2.3017735233343157 4.636806489008427 2.382979554667761 +1.3798475088105255 4.764563785753957 2.023082365298518 1.679944379673843 3.4020652481374256 +1.7656410626813868 2.9316121343184918 2.967237132029932 4.272584316060524 1.7502627833417401 +1.9815796181364722 3.9559102725320563 2.711797702063978 4.750348861191968 2.8378992866675463 +1.7859400341692417 3.9583685424889987 4.536080203983313 2.912549318958892 2.7120652939021554 +3.8805816108204336 3.899122243078587 3.047121235131335 2.9193810735208303 0.1290786734236525 +4.003729465899545 2.594284893599486 1.5165975984280018 4.189830733669988 3.022037292579592 +3.7382812010020645 2.095076273984754 4.981472511737524 1.1582326162910568 4.161404297867184 +1.1759388375639266 1.162977817426921 3.542442897275004 2.146702512137011 1.3958005626693755 +1.8673011579614474 4.824751023316862 1.0304088727790184 2.058565930876971 3.1310727622026606 +3.653815563029007 4.721221508588203 2.555062846950681 4.720342847651773 2.414082213606497 +1.3041181757411606 4.972026976780445 4.729709872574382 1.7230877094027552 4.742713548678253 +2.764349204466196 1.9696506736716701 4.601197009767521 1.8695236774507258 2.844922661398324 +1.4802768510198248 2.43853922643631 4.502137993650049 2.5101707082080904 2.2104751630384474 +3.803630980765217 2.7459403125785187 1.018840497700935 2.4051179886367384 1.743695739354917 +1.2744382408040673 2.1409849707996895 3.6142378216116997 1.8291444270065536 1.9843038231906498 +2.667071427003504 1.7022223695790375 2.808114945340955 2.670477997104385 0.9746166595809647 +4.266749029430075 4.758959743924782 3.7573256590473534 1.9178957152491893 1.904146503188425 +3.3683831932304003 3.0966906931598266 3.2568666411340628 2.7569901731699993 0.5689405046389526 +4.972217601825545 4.851401913571569 2.873638679524413 4.21737252111725 1.3491542045185665 +1.6659347694294997 3.7891735073033597 4.731131480520844 3.066549411819582 2.6979577834817863 +1.8906371580184738 2.2680025706054114 1.022230645390088 4.151655461107627 3.1520952288669295 +2.9661827505556153 3.12374196502441 2.6046610722899337 3.0586570828501913 0.4805593445857163 +3.925912989365007 2.58813751376028 1.359504006819734 4.960527367867215 3.8414857112761918 +1.9876668251189011 4.471113560863314 2.4786129623776563 4.559828292992837 3.2402106322995783 +1.507668994095734 1.7213052497441255 1.242507833980253 2.2185123793189385 0.9991122670897595 +1.4593817529631212 1.8168684063595797 1.0484116011533344 1.6290524461221687 0.6818654546189603 +4.0642220153509445 4.645056908607579 3.246612609875378 2.7035065566107983 0.7951939123994061 +4.649449914196648 1.540490805523571 4.635372161956981 1.319169506918287 4.545638215772014 +3.320086312623594 2.6525331313803036 4.16744738262731 4.020991270251204 0.6834300568751421 +4.96529319456257 4.112689681944188 3.9623034545154563 3.8434482301470254 0.8608480203200058 +3.291945691641645 3.0745803085032066 1.402684000684212 2.9650631832997427 1.5774271520603713 +4.053423452013292 1.6941014853544298 2.3576874423461383 1.3291373848885724 2.5737745361734783 +4.907948561614694 1.1348314868097797 4.0565721739528176 3.897780847846831 3.776456956650094 +2.9108480801147105 1.492213758405653 3.5171165480195827 1.2373577725025733 2.685111434052176 +1.1820865325074368 2.7373955495700724 3.009632343951733 2.7409757810871587 1.5783416890288835 +3.0563480279687516 1.2716104872818756 1.2880403922698522 1.939410299895402 1.8998870613005276 +3.433152322117239 4.961181128081121 2.6189753267366105 3.858268150781809 1.967414225725058 +3.6656941519228092 2.475553573307356 1.5364443101058494 3.375010017693842 2.1901503277139818 +2.7237763899299647 2.9851838227675147 2.7789879746663333 2.4552065800077885 0.41613487893920953 +4.4017157435188174 3.1249151404180466 3.244579156101854 4.097352146945598 1.5353962205212945 +4.971167175294695 3.167454471904346 4.664660538881529 4.494656480929034 1.8117066252823704 +4.664699527515863 1.601719648742804 1.0058598350822048 3.1919287371621996 3.76307626582426 +3.4562687102548284 2.124888867696399 1.4069415322223602 3.1316446732789514 2.178800865141507 +4.31414530658485 3.7297598531516045 4.292173434646067 2.3954713238317793 1.9846876971835528 +2.592031317564316 2.7744923819729106 2.0721501590027276 1.654251356849112 0.4559950096947817 +1.207053368263026 1.459681988794519 4.782101294014785 4.0864990027815695 0.740056597484641 +3.027423918624471 2.1570428993579003 2.312790483362563 2.1519592270171297 0.8851157052708786 +2.8361765311734706 3.245542278946187 3.9096000731125002 2.480546979028998 1.4865305449802058 +1.444360483720501 3.2148319424542793 4.441377087919453 4.948580880378371 1.8416907648342111 +4.259098491701984 4.195216478075441 2.4081135817168966 3.268551839867615 0.8628064138347745 +3.4065830167887916 2.421549474579342 4.523737316594759 4.03770890822503 1.0984146270967567 +4.1672309005083665 4.382540155579312 4.887694374253826 4.204480482863856 0.7163374181958048 +1.784267781844043 1.9076305082606178 3.9371660358431644 4.898579157370471 0.9692953897103868 +1.2892789545323047 3.7776778788037597 1.478203747043687 3.6902690362252555 3.329468733884923 +2.872255488784882 4.947620392926929 3.61576250557828 4.624848955374862 2.307681725998539 +4.988891994192446 4.069195577387898 3.8837790408985047 4.982185344000973 1.432598305799067 +1.9754739408803963 3.2600516937429758 4.580372728238551 3.1558604021474976 1.918169797055208 +2.0713908003019106 3.9964223711713034 2.705985078870769 1.808531962893491 2.123951186873467 +1.8745687094948633 4.3736640107033855 2.58735937469223 3.9841466309866074 2.8629516174516274 +4.610872715172276 4.787507855904807 1.5832109616778087 4.570155633555856 2.9921628374475646 +4.870794078318212 3.634948160686363 2.3157804309394963 4.727142947213418 2.709609624469585 +1.9382873672911582 4.094468061688051 4.871882872422414 1.560954825943158 3.951121323858938 +3.1791178664312816 3.9949034274597905 2.8339554733746293 3.624907131861889 1.1362704817279843 +3.1863661464226216 2.6539948574241077 3.909339543770887 1.8578777574152046 2.1194137515425315 +3.117384830317396 2.165905725330238 4.916225028794191 1.5184694419634663 3.528463619632001 +3.7258516289841137 1.2993622881063547 2.6281892643954907 3.0761811562644 2.46749817762317 +2.1478568788884473 1.2027743002202884 4.364786414871206 3.187787638180551 1.5094724909163981 +1.1027729554562486 3.1280916957719587 4.09498416466443 4.992876387522546 2.2154291782277995 +1.9616664572500508 1.9305786662593403 4.420899190320435 4.264466118775058 0.15949218357588338 +3.851913283128922 4.538606344395908 2.288326522179607 3.4036339075155677 1.3097549099648993 +2.0316473628657272 1.58943485450976 3.8929989592478966 3.2938406226349177 0.744676181221951 +4.789569633706129 1.4628648725641988 2.132734530834231 1.063875760714581 3.494198568808887 +4.542250270670278 4.116681249989879 2.712915080752101 4.370104684453457 1.710960658220618 +1.4413913751370333 1.4108718062762216 2.1848509887952248 4.666353562175521 2.4816902437202923 +1.1755111712370763 3.3286637573186266 3.3321936341396836 3.319820820827482 2.1531881351751236 +3.5445234086348743 2.0563055307085953 4.964374084694491 4.799683434221086 1.497302729087458 +3.778759806524873 3.1307077000998516 3.4809843907492586 3.1555155816336344 0.7251906496563852 +2.8448495319616276 4.777664259747018 2.8136932775480776 2.123153277558532 2.052466385481057 +2.278752560893473 1.297066924924732 2.5481672635274366 3.2725636283424944 1.2200232707717593 +4.622491700007705 3.935575464142306 4.527767974649861 3.6809269981340766 1.0904098103931825 +2.631326182396717 1.9939398267795467 2.7321901233473103 1.1667689199472706 1.6902085405006586 +4.60259325779416 4.881980015203869 1.853447124944522 3.0069345072509406 1.186840385795843 +3.963033430845387 2.528441848307201 3.5458311755472223 3.90990212339524 1.480067790257045 +2.2182800378452874 1.5255033295778917 4.41620073692435 1.3839299783368761 3.11040279078168 +4.460899001934883 3.895548838187638 4.647018255376301 1.969494714115517 2.7365586274835634 +3.603821455868639 1.4899963544375217 3.8979276749352425 1.7198385394305435 3.0351818465528355 +3.8658400171146514 3.0360234424924024 2.0823755403956636 1.5953454067572141 0.9621818427873644 +3.6473329409325395 1.6001754266310262 2.8145302867198367 2.8551266923406993 2.04756000071072 +3.3574459070137244 2.6600695565468064 2.3998722205645655 3.4630310961735833 1.2714718121046917 +4.557053396000077 3.275957392656148 2.9795746067976863 2.6159623972803367 1.3316984676321726 +3.745146169795431 3.654519915298454 4.04096236383525 3.78173775706631 0.2746097499337241 +2.2273766154315733 4.773238156247288 1.6435101260914693 4.36186026972936 3.724357459807088 +1.616596917342136 4.787781073157246 3.7747223040411937 4.245883394160142 3.205994654227432 +2.6615251770288606 2.8503801356553033 3.733653470548659 1.4490876544785358 2.2923584282031344 +1.0672873648310035 4.549898302796592 4.4644266996539015 4.983292007027755 3.52105100111227 +4.446389468708377 4.612114241697897 1.17006979771641 1.6832359520526374 0.5392626468972803 +3.2407726316469243 3.8427309973642765 4.5764966941043745 2.607789265387897 2.058679871650896 +2.286560346357199 1.921205900457859 3.7951763967179817 3.1856749661837878 0.7106165386209659 +1.262522125221508 3.1661636813620464 4.775676650028234 2.6710991825919623 2.837798000335056 +3.2422617971216736 1.344959460977504 1.3473260693818925 3.260284614946258 2.694284051800377 +2.2638676416246932 2.812518403300151 3.8461277278994768 1.8029269663010408 2.115581955510939 +1.6076515477067224 1.4575567537247394 4.215172889176703 2.6960838993548095 1.5264860976041001 +3.706860736688277 4.265498847757925 2.8268682133888445 3.9940695707005873 1.2939998252124456 +2.630456342979916 2.498813977065337 4.893826351274663 3.0705030745508135 1.8280693323686015 +4.760339174601345 1.126497635076316 1.324450681618138 2.484623893777457 3.8145519024637355 +1.079090579122051 2.1637860039111168 2.599135098572763 2.0724526530962297 1.2058020413531705 +2.834628384720563 4.780520573022045 1.1081076413657942 1.379768771527773 1.9647636443434142 +1.683466873282402 1.9258922867012527 4.757171099203372 2.6310155936881574 2.139931614492379 +3.6372047087905366 1.0228772185813688 3.771785816149225 1.6698974182120367 3.354495947746297 +1.7513584019767308 1.5318254371678552 2.638505997910481 2.180954976401877 0.5074915367977498 +2.510399285670568 4.807826645350117 1.5968079892184956 2.9806939314827305 2.682035192573116 +4.223602063927773 1.9599262678570688 1.4775457262570821 2.2505814909782007 2.3920310205459923 +1.5791131621162 2.0915428784743653 4.22165971255605 1.5170676822449245 2.7527081691725637 +2.4408954293972736 1.0515727199206135 2.222803030616382 2.7399571874259063 1.4824527017658735 +1.17963591404262 2.9271031955046998 1.9383988841743767 2.8667324644323458 1.9787483761244253 +4.700930888312878 2.1118420457541833 1.7347646322161245 3.3292823141592613 3.0407018388344547 +2.787831135484742 4.669894568400333 3.684650925199636 2.0812527124079727 2.472458006579995 +1.1095035031181566 2.0292617938186432 3.3322665161875253 4.203110125554415 1.2666190845267702 +2.379548964494897 2.713835550144067 2.477031506160195 1.8926310085165117 0.6732543820809223 +3.7368187308138867 4.322014189999495 1.901548459717279 4.5469941669135014 2.709397851031549 +1.0521669635375956 1.7019537187271143 3.793021642131524 4.112168145996561 0.7239318463425958 +2.0886383220364313 3.9433941039861127 1.7829280123203217 1.3028582786576646 1.9158773342400366 +2.604144239493927 2.232898534068887 1.1359194703211797 4.923108346462551 3.8053413719882583 +1.9678867423809003 2.3549519507104857 3.093577855776811 1.5621021795472698 1.579631989541221 +3.441648052398247 4.414648355765056 1.894428532532972 1.6646122491994761 0.9997725313475684 +3.7031710948365384 3.4674787054249694 4.881943708656595 1.4514858774000765 3.43854501707564 +4.0060606302337725 1.8489406405754933 1.0054700753285961 3.2092316564818315 3.083785296733601 +1.1386732384344613 2.1969505448488533 4.145329752581595 3.039144814423532 1.530880783953949 +2.7780031087281944 1.927785889764834 2.4856132428921356 4.628643775692263 2.3055257933788957 +4.25176737936933 2.2771128642029765 2.4758961195191165 4.486789954758077 2.8183247632004584 +3.2185398440174295 1.8702079981899922 3.9377259887763594 1.2595065452382368 2.998475971926084 +2.5397347060587077 3.070481373111535 3.3395553639991578 4.37554603417658 1.1640312252179272 +2.567457677204564 3.6046908724327533 1.4897976868780538 3.7403552459030376 2.478076275615376 +3.7436174662672883 1.893826150838965 1.734282219537922 4.48825750392526 3.3175454447000967 +4.398879388352675 4.8162771553153485 2.683481889560165 4.39687971175589 1.763505881183978 +3.5258014333621706 1.6766218485892845 2.9195073262230884 2.4085536029676917 1.9184730501232943 +2.883031746518677 2.6085192892728823 1.2161767798327983 2.3892408998219734 1.2047557921791048 +3.782674708525472 2.879773862915786 3.5333425000074894 4.955679401142112 1.684717245513896 +4.847091231824184 1.8675821120941998 1.7910852497632552 3.5570555716499763 3.463542373400221 +3.241852165366856 4.1806926574459755 3.2175106723173568 1.315338673939999 2.1212448658696323 +3.4316641555544556 1.2305259990394246 3.3509567091849686 4.900948136091656 2.6921148949386646 +3.676946639700982 2.1045028793564913 3.9879106988637556 1.2000640583043198 3.2007293341869527 +4.8307048562045445 2.7449162906455014 4.476941785869241 1.8319772341024763 3.368434565242379 +1.7058624430631957 2.189824186835693 3.2268938143510923 4.530067909228447 1.390137292138704 +2.920950690892916 4.6637896981621 2.347486715199893 3.879506069373468 2.3204678637769263 +2.544747142308247 1.8617975024468385 1.6224259814817357 3.936817556578094 2.413053785862186 +4.409532069688828 3.003689230537794 3.1591124203714642 4.4023427671416755 1.8767034351550111 +2.822386777872577 4.89747687992433 3.816933315724885 4.370684960952217 2.147705709873942 +1.115765137364678 3.039087613549867 4.902032861827151 1.8442151643899174 3.6123978765024587 +1.353241688271822 2.560388773184419 1.953783591100919 2.5545031508145013 1.3483575468085092 +4.207634933142075 1.6077627828513008 2.9917526700347508 4.44167144214914 2.9768439064867462 +4.328621044567269 3.3397102606594284 2.3263954727073353 2.1544595641104056 1.0037462304757472 +1.6513713731626556 4.692245600541186 3.6110015966594946 1.9964317516061576 3.4429278022187066 +4.821196489714643 1.5480948986846959 1.1498683964028276 4.089808494134111 4.399595640902809 +1.206910169045396 2.626967375290009 3.7566358571753726 4.737596940154513 1.725933693780518 +1.2294828716541373 4.334969207127398 4.282523625226551 1.8757598701002633 3.9289384256820226 +2.8973377426476263 1.5118871939539185 1.656902275019688 1.7309559056922708 1.3874282551150123 +3.082940143117385 2.0394291501755792 3.8822820406572696 4.390480126574468 1.160681044439125 +2.535813549425266 1.6992147674054938 4.838355529281455 1.464375076106582 3.476153279198587 +3.9753557303539457 2.1319246474003437 4.759868896762737 4.771375371922488 1.843466993621012 +1.5752361047266379 4.395019903862244 4.543097776852671 4.263617493203414 2.8336001663636847 +2.407920601347925 3.3640559985453895 2.28180336010226 4.257533187270239 2.1949267066886686 +3.2659301368593643 4.8377310101139575 3.9825262115638727 4.9455670051105765 1.8433679923441673 +3.146136761497463 4.089532665620345 4.403130266096302 3.4641369914777496 1.3310537936893092 +1.3308901456350632 1.3666437823561592 4.384501681148175 2.290551070650246 2.0942558300607486 +4.8837203718821005 2.937143670155955 3.5717527082908886 2.5639708143408955 2.191982025810539 +2.383240560699266 4.744302582158661 2.8735845770387054 2.109018616487466 2.4817685180555347 +4.960105177173073 1.0846378905721594 2.596261506003758 4.670044878555838 4.395432193287404 +2.7329198155925827 2.1124308161869063 2.392768670555258 3.5385731986790168 1.303025178211214 +4.529514597974529 4.446855340840335 3.9626426561838053 4.754847979162018 0.7965060116188648 +1.9342580954064466 2.6144319351707552 1.0966916043579138 2.4038270299478435 1.4735126308016129 +3.9709989750538224 3.844421679770359 1.6930124717104023 2.744050822251414 1.058632809801986 +2.159551302361974 2.530648938149467 2.6332012878079194 3.8229057208275807 1.2462383773715606 +4.885661601351122 1.4521863103472477 3.666913386724182 4.048407917664047 3.4546042683744784 +2.3877096198536765 1.2940011058180536 4.063612091265707 1.0218573013883456 3.2324093978665327 +2.9573622206479317 2.390502447081401 4.8115960733947265 4.707018610496221 0.5764255794412552 +3.2312170060661796 1.3090732481382021 3.527296274323322 3.2405671885782676 1.9434119982015348 +2.9143469282948633 3.6536098842001397 2.6052515947614796 1.4202362832516684 1.3967000417006157 +4.980902323918237 4.438799386488082 1.8729730587058935 2.8022149324387478 1.0758094880920823 +3.760020040047774 3.8378178926454165 3.988246790025217 4.424328610633458 0.44296710953952584 +1.9749246194262433 4.291057773570951 4.077690963391726 1.451282500350982 3.5017844311808166 +4.297204410701378 3.9891416609495725 4.7909889681557765 3.3336075802159506 1.4895848977812767 +1.3787379658274777 2.338219237413158 4.718274264506888 4.039243984964811 1.1754515860122292 +4.3178469126463295 3.0515233119260547 1.2169731745088184 3.4681560502251556 2.5829053024955524 +1.41722534621909 2.801799866358506 2.9033042808822214 3.2621697351148273 1.4303254930472538 +3.6749664053640916 2.9955085984742693 3.863211598561931 4.103784136491415 0.7207898843278532 +2.982485143093322 4.8472062877689766 2.550053407034474 3.075514051730847 1.9373419513666685 +4.982249207196034 4.096152096564099 2.714231663982705 1.6259540529338916 1.4033945447308738 +4.227424014942173 1.4691859155153262 4.565538446749141 2.2832429693764302 3.580048890611098 +4.422495895623808 2.904762968006498 1.7622934691841645 2.7295168927707905 1.7997317552092156 +1.165370624707219 1.7472304911167265 3.2577952215135393 1.1308680525208912 2.2050805169737386 +4.697033986811322 1.4750270019754512 4.132633070648142 4.846081868967233 3.300051241746724 +4.20775116079361 4.675853256635788 2.6580402142658777 1.7130177184976842 1.0546028113179793 +2.919186720784078 1.6223212489889423 2.7606128331061095 2.1010898249863326 1.4549332115852533 +3.9068472139012504 1.5897640088750231 2.555887601368687 1.229696370894124 2.6697673604271683 +3.9111071339682755 2.5277977401501834 1.9790510698791537 4.4646432302329435 2.844593690957919 +2.350502916673076 1.586359749052023 2.3055004157946213 2.2888347766766333 0.7643248812835731 +3.2053681395651896 1.5301727020563884 2.5528202148741896 1.3250612170324763 2.0769381094851123 +4.6602689707490415 1.9390401124560332 1.5237058853931824 1.5000969683060301 2.7213312698333323 +4.202799103924544 2.358890425618287 3.2593596859889904 1.8861441878613228 2.2990693809085334 +1.077753731457125 1.8065365620074711 3.8944398811052996 1.9142014780800523 2.1100873315862914 +2.111042159263109 4.68053221382925 3.4896168792056743 3.672868240286622 2.576016343475392 +4.435120858472059 1.2206625126508368 3.6350045125868005 1.4694543020448094 3.8758676669099748 +1.1826438915846396 4.875888863938454 2.197593517341965 1.072182898068447 3.8609075989707824 +1.1861406097502734 3.364480379950304 4.676919778809736 4.857878491171839 2.185843134814315 +2.1058744797996423 2.4618767398634027 4.9270922064336276 1.156563379895735 3.7872978811975857 +2.8949339499566635 1.010781466651772 4.964593450705971 2.7818744227367445 2.883451566335546 +4.050598041450904 3.0560207521303426 1.2863725032961706 4.8465196682332685 3.6964620680377465 +2.7100085572881683 4.4163641496468955 1.7339835407832527 1.3448034298959106 1.750174438815796 +1.9350886588294096 3.9076066770967897 2.84068147202169 4.308472174663763 2.4587063426021376 +1.9589273415675619 1.4208354831657126 1.5008244302405704 1.9246947886723826 0.6849882691225221 +2.9112896913973754 1.0380395995568268 4.910950499276407 3.761412145348657 2.1978408344854143 +1.4958768451048154 1.4684472593673004 4.002125318619475 1.882017563624549 2.1202851871772714 +3.7970038451304404 3.6281951390544003 1.5487392074376798 4.125725237768378 2.5825091248176917 +2.394074229340787 3.719611247210161 4.055930964860237 2.713520020613993 1.8865618274984057 +4.6588624162328305 3.4270022378509144 3.6454223654625233 4.508601953901767 1.5041803419076012 +4.961512193751954 1.9594335953825963 3.1804624481872703 4.02191674458453 3.1177750470027075 +3.941858274005579 1.6795898755650032 2.380374094519294 3.286255661722276 2.4368996122903828 +1.4471051057246624 2.243756066590586 3.8939987375395932 2.8400850602433487 1.3211308764239413 +3.492959383961199 2.035342169208933 3.734042488027769 1.5682034273582035 2.6106525585500995 +1.1434007397660606 4.7043277580977385 4.178639550474596 3.9231434485319854 3.5700811598607114 +2.739967849925628 1.4476576149022056 1.1975726802313829 1.5311776738956846 1.3346752546383904 +4.866163542896394 2.9223920153687537 1.2630325716492852 3.647611476210709 3.076436949346841 +1.8557314832894685 3.723418445770585 4.762758959055657 1.2228954462011927 4.002360338532787 +3.9212978727048178 4.7039205581769785 3.2952455358254875 1.5029832742278542 1.9556846070270943 +2.705098595423105 1.7736584763892953 3.2501059244211756 1.8664506832656529 1.6679575899053507 +3.0030209151980727 1.9198283678480177 3.7184330434556534 1.8795838179226516 2.1341678867600886 +3.6545966044357034 2.714742638062754 2.6126336451897467 4.622945680149793 2.2191619940896987 +1.0196707055748653 2.099930907887636 1.8450875882915065 2.1612412943325103 1.1255733074945804 +4.746170250347204 4.597659431259164 2.6083901971827945 3.287995793362886 0.695643033276046 +3.3936211645890246 4.216940418038785 3.2086359657849863 2.222416995629321 1.284711037625182 +3.185533281398051 2.680067772781489 3.7398022343609014 3.4935125633699533 0.5622757174534829 +2.5875039013900256 3.5151977963960275 2.258534847886666 3.16192669698093 1.2948871749466673 +4.38315075632655 4.158218378789608 1.8887648825785193 2.911563471958561 1.0472399576516473 +2.1472764503078774 1.4816203280622156 1.1057788239484143 3.0515577817566375 2.0564906578276467 +3.1201016210953703 1.7752880790808803 4.066262462811616 2.5390978621208125 2.0348845619318703 +1.1365045763154424 1.0083714578055272 4.4722898934716655 3.2958676033742655 1.1833796942220562 +1.901527354694473 2.990230258268948 2.6969430994584833 2.3477000261562075 1.14334803821982 +1.6546800893857943 3.520702285562027 2.376113943694267 3.743044844548068 2.3131231969636543 +4.3844324827121905 2.9773228599314074 1.7658490546307433 1.0131388528322591 1.595785116616204 +3.2546530388941326 2.6473308067775636 4.046305590722203 2.1279992508674184 2.0121479834122815 +3.8555254130501653 2.114765778591105 1.8750582877485313 2.140513507522958 1.7608834653853531 +2.9957333016123413 2.972543674158205 4.079507540014897 4.862481239176445 0.783317031858863 +4.963480480869235 3.2105610575644037 1.7229883950362836 3.2967170000709203 2.3557054626806817 +1.7405923749570178 1.5311470035981176 2.482242432397646 4.790870954569133 2.3181097939846103 +4.995137870477964 4.723555977761023 1.4888048558341773 3.3518247190581443 1.88271074125017 +3.3194960111533756 2.292614361731382 1.8250077828038767 1.8945901485202183 1.0292364293680614 +3.7337934859932207 3.552841412697208 2.91785378842406 3.2315894254400326 0.36217910315746243 +3.039622427945214 1.4284675686789332 4.405737421620559 2.3694497025125574 2.59659154576291 +4.894097328071881 1.2791673449679872 3.5719927125431967 4.254352875236331 3.6787680239958216 +1.7051599353352231 1.3367996495665673 1.7799410180111535 1.0829931679580214 0.7883055282219255 +1.5173541487185975 1.397810388308518 3.4965495562988287 4.884059956280906 1.3926506456076506 +2.6538463567846575 2.1175492796456283 3.07970027795253 1.1649776708873931 1.9884107264230348 +4.302616594974504 4.785972698981768 2.1261292070684847 3.876399974957064 1.8157865745198025 +3.643925011205345 3.641920384990203 3.7443718621406674 2.426526591566234 1.317846795231397 +1.4108672301118532 2.8083230629257647 4.1520962423010195 1.2109302488603357 3.256277046818582 +2.388671499000503 2.850113435104526 3.022604708022895 3.639957239129593 0.7707482131405015 +4.766836840150469 4.248766222711546 3.9916744125172334 1.6025067815622358 2.444692032436123 +3.7367131591179956 4.451472505461616 1.7857959970339503 2.9695133485691407 1.38277535829615 +4.407112032526907 3.1307227496533843 3.6347816120823784 3.369994871260535 1.3035649656037247 +3.928572405622333 3.767248815450489 2.1910383125250052 3.4612625844733382 1.2804276636314156 +1.3538457370794976 4.864609401675013 3.3608694854724717 4.756366668228745 3.777945724295788 +2.525934800776981 1.6733254579811403 1.6399402254502782 3.171314546094763 1.7527264479524787 +3.4308135341309303 1.9611999465109675 1.2104171678643243 1.1436638069260896 1.471128855034041 +1.3438723068205833 4.594519531191388 2.2102525588744006 1.7426228427206039 3.2841109799669828 +4.599491849276766 2.123602261306692 1.4183415721567179 2.9656352036325484 2.91961415838194 +3.1613740298409594 2.8798249658304718 3.408725136041659 2.2230254150042152 1.218668824543179 +3.2575510563253545 2.3551630532117622 2.554017836517701 4.388670851967942 2.044567385845719 +3.2173881631066346 3.369670180204799 2.213957679194263 3.2768796499070723 1.073775082852777 +1.3945660590152462 4.789112822308395 3.4853849306566445 1.1943513204450373 4.095336705486281 +1.992145908745215 1.5874398761111514 4.808616218794127 1.760277606340869 3.0750862213967034 +3.137596596534337 3.011049360982477 2.425891115043406 1.7147464409116324 0.7223163783078743 +1.188051624424924 2.591857001332183 4.579164865412501 2.307042134986381 2.670807225981085 +2.354036676261181 4.6974367335994875 3.2303065025944275 2.773801810354039 2.387450599022034 +2.9535749586053344 3.0445154979870352 3.8496411739343643 3.8382061024972125 0.09165665585110257 +3.561859553547381 4.74338003597268 3.125226022598522 2.1789388783480526 1.5137536159376201 +2.635429698933938 1.773792401395791 3.2602618805882257 4.740341512941118 1.712616288201976 +1.5276329676609297 2.7923535754372066 4.703947242933404 1.831996651904313 3.1380915240072813 +4.133381065914319 4.749840688321051 2.8380134268101687 4.285104257293083 1.5729254075529397 +3.347369289591467 3.9507774040449384 2.616631531899889 3.8893653377267277 1.4085285560054377 +2.343245934381702 3.834964335710833 2.5752659991500066 4.057493849096123 2.102908269045473 +1.3378283368563357 3.6689978199681716 2.890939047876154 4.279235402644583 2.713248593043994 +3.064971676304708 1.8831608729669131 4.162232764648546 4.846159808994242 1.3654424106762484 +4.754555944363535 3.5008211239492377 3.496072392187965 2.854062207969397 1.408555315406402 +2.5250593583214425 2.4034569133469184 1.6510630367565642 2.512154559737344 0.8696354210662884 +3.8282065632493762 1.4880936732240375 2.5797765586525196 3.0335506946811597 2.3837028557669013 +4.380633913920001 3.2313052108269775 3.0615408838533074 4.190542821104822 1.6110871615375637 +3.566082791263437 3.3038045814470416 3.573126008024794 3.205244134506161 0.451804086090501 +3.196294814717753 4.89646754177393 2.4633745180972624 1.9127778715325805 1.7871049127104743 +4.287755914424747 4.45052224891808 1.1568788103814005 4.5340264998414 3.3810677893336316 +4.39746545885747 3.6586411067561806 3.704225786395854 3.2779305243464716 0.8529883197932087 +2.6527982018420984 2.7143805712007407 1.016309423924262 2.633690399930221 1.6185529369661693 +4.980118875626854 1.0750749645942341 3.374719988249447 3.660631391142961 3.915496555661552 +4.128028020480363 1.0952254015980336 3.1345593706579464 2.9484350355457765 3.038508514587455 +4.19759841830721 3.689233843076855 4.520649394325339 4.432497703437451 0.515950832885783 +1.2211142553334344 1.087594465366168 2.0705598427608276 3.4805046879589 1.4162528025792285 +2.3547911593312807 1.3395263394353472 1.6752749543885388 3.0285923157658314 1.691812795531326 +2.2844236772557185 2.876989032159125 1.0518128758041025 4.505509561107679 3.504162452556775 +3.2460895130822873 1.3447667715690184 3.7931436768949007 1.523881692134751 2.960503018554973 +1.9487297932778396 3.814771363458835 2.511398920120123 2.9836240815680393 1.9248656432977511 +1.6973418016453587 4.875367500093463 3.1976093875172413 4.305310061080014 3.36553831091075 +2.758644485700739 4.542404729823717 2.4620897753770183 1.4137405568593269 2.069018291963684 +4.212938803740794 4.7454357020274065 4.163567965009344 3.5932420905574225 0.780272099817885 +2.3464170843186865 2.3466543841481933 4.9475078874725735 1.0339673512981933 3.9135405433687875 +2.7874801857902862 3.406241321516106 3.3804083529606643 2.9824951369248014 0.7356631502125884 +1.1073446552385495 4.044741794112268 4.770635942260536 4.609002406222054 2.941840810009238 +2.036447507986129 4.4214204689025305 4.277067861545101 3.746714732560767 2.443229515564557 +4.330558594488389 1.2100916075472865 3.016282670016049 2.0063242098210523 3.279836933127733 +4.351803963023517 4.452265947271963 2.391971465400219 4.558424231528944 2.168780809151985 +3.409066844956186 2.017354917105749 4.6907133973907635 2.503141938824256 2.592745837226622 +4.897740058171783 3.126114915807082 2.7434422691948197 1.7303872221034338 2.0408175257714922 +4.377924042155499 2.1717509998987525 3.818266902959982 4.433109418831355 2.2902468888099 +3.0967521929932866 1.0171822863763076 3.139921015740719 1.9267300645387162 2.4075803788420793 +4.534430037538177 4.127451158005495 4.654388021597061 2.7747652041980517 1.9231780323393535 +2.178676481434058 4.75997116338752 4.452206388563455 3.823457276769047 2.656766395576299 +1.2526347148594037 2.647403615886969 4.40345838307749 2.798535596304315 2.1263013518260805 +2.446707202775021 4.768225092747903 3.7292009040952334 1.7953641787996628 3.0214516037107124 +1.3705315377516194 3.9176958402263047 4.1553281362912085 2.221921087468708 3.197828763432758 +1.257096548952656 2.7834987482895137 3.3673527127166487 1.4294551709786774 2.4668503311742422 +3.0278242863402003 3.2371953025059796 1.120655181151132 1.1032678516937438 0.2100917457587299 +4.795614603242175 4.259974595300843 3.675215042829145 4.427211370508382 0.9232598198505385 +2.3034867009620723 2.5470362164510574 3.972707769948889 3.259867561776526 0.7532977690675426 +4.807648615224432 2.898919983650221 3.6112673719837085 1.420904481100317 2.9053286531389535 +4.412139178458196 4.751136625014219 3.9454188403680677 3.7074684394479593 0.4141734685727034 +1.3860264270346132 2.3247365550205763 3.478229101168178 4.286891397384613 1.2389961314328064 +1.1035271489732552 4.072205421825624 3.855505845549692 4.445105135432049 3.0266611984719236 +1.5234788490804099 2.0461308883111835 4.617746099317602 3.9258071901778697 0.8671473969825247 +4.013435586626464 2.5583313838078627 3.7366027987929358 4.440907030574973 1.6165929271051644 +4.546593876081149 4.989458722700572 2.668530214599727 2.0147474389197213 0.7896589074702433 +3.206274946403661 2.230404608969984 4.704470719004409 1.9163471462151445 2.953972913319635 +2.802730334302448 1.9385936468130023 3.0052304006074895 2.422102070288607 1.0424830282962498 +4.362696717861802 3.2113956728403505 1.8294514318473798 4.18219139446413 2.619328048939528 +4.286185935845882 3.979326208653795 1.8314282658001226 3.6286251349023013 1.8232058244979024 +4.310222880462064 3.7099913133289992 3.0442879764137123 4.871060829210955 1.922856466276147 +1.6233808789366213 3.0172748165711005 1.8240566222432117 4.319694685768247 2.8585222849383456 +3.634306490246177 4.168110955973008 1.331884262446208 1.1150618009568172 0.5761589949278113 +2.1033400466741825 1.2764270659855543 2.0068958094706035 2.7098268178168516 1.085309670152268 +1.283135620861601 1.8086229806887983 4.812851003498735 2.127522941209192 2.73626090997512 +3.7290758914450035 2.988150007678561 4.662864112728846 1.5198131321437276 3.229201237425775 +1.9239942266847567 1.9831947422220875 2.3721886376824326 3.430699276614376 1.0601648333028204 +3.4492451372814803 1.0587617395403113 2.8091331093116128 1.7844799609132274 2.600831588050039 +1.7325990799308513 2.749744194088272 4.683679319250889 2.8368182635519377 2.108430682358744 +4.164912681882833 3.2586861441998582 1.3041464680592103 2.164678269884674 1.2497045729106744 +2.598361554928946 1.4692272781339017 3.4839308034152325 3.6660974605437455 1.1437346309362346 +4.932398376160008 2.053838678421671 2.5179416135174324 4.161093454417089 3.314521670723448 +1.8262047354832829 2.086702835847241 4.476352093289682 1.2102297741098664 3.2764942032815756 +4.472883124633835 4.984861508061406 2.457660727618002 3.010690626343661 0.7536338195580271 +2.950567347584828 4.646792586810065 4.331700278778963 4.463807108154607 1.7013618887680533 +1.2880104688550764 4.078408313487047 1.007310874765225 4.294255736208184 4.311650107962498 +1.1606662035900666 2.765741694939703 2.1253592493192834 3.556500038486271 2.150449090620093 +4.5564702490083135 4.104932193135507 3.3348119267561573 3.3161691431834606 0.45192274702733415 +1.2308335709377194 2.5062973463122717 2.7224579431656566 4.7420539592017406 2.3886347377281294 +1.2870835085667571 4.975718588314497 3.815702374793051 4.087527183741147 3.69863724610907 +1.5212832374486984 1.2906333704677322 1.3819130059282063 3.725038276004759 2.3544501252754655 +1.9544733028843297 2.3724562480105096 1.9329744625503182 3.6553585079949262 1.7723759596706588 +4.228161008183601 1.505068776799976 2.0616886899690794 2.234400069403755 2.728563820255645 +1.083782001017013 3.250318277027761 1.5293767299641892 3.6664959928533762 3.043215105621445 +2.8202729192037164 3.8665453197139494 3.127849364292658 1.0023069839134262 2.3690961033393423 +4.551674585606705 2.0563351918434587 4.785317983054188 2.636967047012777 3.292739047427951 +4.475040027974088 4.311031145483712 1.428859048304283 3.113437913023181 1.6925439034167926 +1.9199347483943923 3.570235842813817 4.242286050040665 2.5118924192745746 2.391182933118628 +4.109240601141049 3.6456269720168764 4.455552257118327 1.9837606623463522 2.5148938914186947 +1.041702941337236 4.705938076091359 1.3977718244549244 3.3052587673022082 4.130995710467325 +4.193801646681722 4.174325359724922 2.3866597635616373 4.153134117806141 1.7665817190147648 +4.950385242162671 2.3290716000571354 2.6327364370162845 3.7324529536561166 2.8426504581567946 +4.657369514889668 4.361623845903402 4.8281773670352335 4.85948470734939 0.29739813429421547 +1.2344858349241976 4.484710259423203 3.4963028518363766 2.6947305402314874 3.3476076502991647 +1.4037804955695043 3.798747149046853 4.542227934750708 1.9097758393310915 3.558885964167386 +2.1802228459363913 1.2209663792961862 1.748468913906387 3.234040579012478 1.768359731773243 +4.547071432072859 1.561106740170635 4.755854920779729 3.301533104495464 3.321300511336953 +1.4441493437027257 2.653410827490484 3.446795030911591 4.326127709527228 1.495171995408529 +1.197302096442395 3.0451362334596634 2.7132219279507632 4.2373636857892105 2.3953077246803227 +1.4739567775028442 4.5846312038648644 2.775287832062122 4.614155810093543 3.6135482323406243 +1.706240532740103 4.816097358846717 2.0037938455431963 3.2192190212218015 3.3389321401542844 +4.440203957425622 1.1176673909854449 2.277568134886732 3.3135292105118954 3.4802966232122405 +2.266039890673399 4.6199791739047225 2.3590964186139067 4.412021394066196 3.1233845590921683 +1.6871592261921942 4.985884310160541 3.248298123542863 2.893894623988966 3.3177083988949403 +4.191082369044025 3.649229061550475 2.236644515926134 3.347079075104729 1.2355848481831835 +3.4956152100658326 1.5955645874419537 4.4274396081125085 4.274168560017766 1.9062225428101125 +1.0317138050099142 4.3791256837898125 3.9696777565849395 2.597335237007821 3.617801857099977 +4.121499064288073 3.3677316609693184 4.678232484881988 1.0921524419295072 3.6644420274808507 +4.712200922229297 3.1274654670280753 3.025405602798253 4.081168811336035 1.9042117569939048 +3.568741252759648 3.467612987214202 4.824441418771218 3.424953315204449 1.4031371558465484 +3.3503082374588833 4.036914005831115 4.06560639591078 4.641245385671688 0.8959842229051694 +4.485973551231972 4.110884247274771 2.0775632168384077 1.019813286621777 1.122286461121395 +2.552285605206346 1.0596001171449947 4.968603781345471 3.4344492093494714 2.140499992302075 +2.5746041679558327 1.6183573384254095 4.522207111143903 3.651656450024973 1.293161417829032 +1.7584630940612334 1.0408675940324956 4.930183994007562 4.028331382443613 1.1525109260420088 +2.9534339253057875 4.722017097453387 4.132250344877773 1.2336250998232887 3.39557281589879 +1.1153758608846553 3.2525336732858117 3.8774721016301292 4.141206634681211 2.153369317843776 +4.0748590759421495 3.3098716600051095 2.0395309333210285 1.1350199795126379 1.1846289765582279 +2.1600784390693133 2.2564686765576476 3.6638240270867186 2.681430872584904 0.9871106259660481 +2.443417506612117 4.427755928935933 2.9050631009245 1.4796696513941137 2.4432243982644546 +2.3328066124841804 2.1866032623878042 2.4302311576125275 4.945513283018005 2.5195276521530174 +3.5763328591812105 1.2433860913824843 4.076841368709884 2.6195358907665374 2.750705341803482 +3.409526105897628 4.0276484268102495 3.0726590025748015 3.7913497949772434 0.9479407464047822 +4.586856701761686 1.7848784637384307 3.8998895761659687 3.6624877363860966 2.8120173683472824 +4.779785648384038 3.32498226163459 4.605060494790763 1.3512278056677443 3.564250280620484 +2.0381558080021804 2.529427044438194 2.197462533005094 2.4755922556020673 0.5645383692374141 +4.413773379652886 3.3325590149921407 2.1944218748211917 1.714677939212827 1.1828688625970936 +4.063997522564645 2.1811292373632805 1.4027169734379266 1.9349697525878669 1.956651731997793 +2.7406150031971417 1.416448924021556 3.7062120731449126 4.181445579721786 1.4068627122120319 +3.1696623630103784 4.89222292517009 2.719914827737548 1.990454719818521 1.8706488017137852 +1.1214513279968021 2.169115231513896 3.976243311944242 2.7708204519152826 1.5970735506585385 +2.16321106876971 3.6232747177020603 1.941130853681862 1.052572476093165 1.7091874822022033 +4.554277125994434 3.388558940698242 4.780986563313742 4.660061363176357 1.1719734602620122 +3.3059298948645144 3.0733517405752804 1.581385065783378 3.074916024848591 1.5115314497352816 +4.532733918571942 4.790782297586743 4.377443669508786 3.8168942431309234 0.6170936925011603 +4.726058915803819 2.7431452321751553 3.891479489937085 4.532552475001081 2.083967669830954 +4.985325643234229 2.5961461574365905 2.3882320996356006 1.0409767357780564 2.7428590249590283 +3.407643425359478 1.526075297595983 2.139597502338069 2.0038740630293588 1.886456856488695 +1.9318239272193232 2.3508615938829216 2.7989905054217843 1.997670822653928 0.9042708665405798 +1.037660175797913 4.888639538569713 2.0851480582751503 3.772862820102113 4.204571698732575 +4.649037970523848 2.831428839318134 3.440658205681955 1.4268548142478812 2.712767415978334 +3.2725632709459327 3.8805531773097086 2.3365824547707863 4.690434593694693 2.4311050199769 +1.4506209172964168 2.1009373330898056 2.5005777480867475 4.833017392752655 2.421401688415118 +1.1449371450800747 3.108074394042477 3.486942058760041 1.9350022282994979 2.5024837852888413 +4.529083286746989 1.4183632471198635 1.8925835783349063 4.181419145399892 3.8620392822962692 +2.3887537365948313 1.2774830547588891 1.7070417043897588 1.2862839663233707 1.188259063693967 +2.8970028565403676 2.067224176704212 4.191258786675883 1.824242438101257 2.508246210388882 +1.706912251802962 1.9354906423736091 1.3171248444011918 3.8283655693476186 2.5216221087358277 +3.556944324747028 2.5838616415804863 3.7590661114824444 1.4183899537403715 2.5348875288069075 +2.2071318206364814 2.1905956287521104 2.7309972891727723 3.673956321842791 0.9431040149082254 +3.867013919837936 4.820210995441336 2.0602814621944265 1.5224208869371867 1.0944764334397166 +3.728006311846902 3.159712520718516 4.245781336822677 3.5584063669246015 0.8918756540445836 +4.367374210190867 1.860246812173235 2.6944764775796215 2.243979044455022 2.547280064528146 +3.730802231618857 4.116063356541822 2.584964830693402 4.933874740863315 2.3802949188013107 +2.455407827080314 4.1712902828661615 4.412435781024419 3.4546965549927298 1.965074305758805 +1.1747537713961775 2.122370248507807 2.901930460985645 4.922567411230867 2.231804353519763 +4.7790671760630214 4.380257535043816 3.703412164117341 3.039773316722449 0.7742516706740056 +1.7396829947702455 2.6769845843708326 1.2274307251034733 4.202048486809243 3.1187954562816764 +1.2569323528772784 4.713850209690216 2.2231624600577877 3.6400921782186906 3.7360367898295235 +4.113400426201798 1.39978159514264 4.732252674528492 3.843101351254384 2.855576515514681 +4.800352900106751 1.6489278699174852 1.7411547756053243 3.247634645514202 3.4929874490676434 +3.4414265680810234 1.2334681317505942 4.50766275160575 2.4174456963598283 3.04040914921062 +1.8878103913702136 3.0597441385746063 3.0846414416508128 3.4422851761501745 1.2252908832857525 +3.3653908945856674 4.561839781150872 3.7490950841213047 3.641784369877088 1.2012516503858472 +4.535348305226755 2.8056291100020685 4.151119847849609 3.919134109762859 1.7452065427921106 +3.8940640866560448 3.053523172377413 4.046598646929086 2.785979725608075 1.5151465583793888 +2.8946309420763465 4.840785242565058 1.448187442614655 3.7732542951865926 3.032070650601579 +2.1305232764604876 2.2880474025172886 2.8991829675267 2.9351317395534218 0.16157402173675123 +1.7794942336673896 1.3294279458762803 1.4259464787714222 2.451398955254219 1.1198716198434402 +4.0726435997069625 2.37620066758376 3.7561242695179162 2.3583560503756487 2.1981070529878464 +2.0480725916153584 3.0277357945895673 2.7358054890822743 4.743481447554142 2.233943317429433 +1.6705021296101799 3.5019325222767583 2.526112235635099 3.017120842523329 1.8961083131564975 +1.8303250329664578 4.070492829570021 3.732119379786487 4.883717758765488 2.518835164000758 +1.19349285464265 3.39440482647212 4.778995890876403 3.4305138876918435 2.5811658646152376 +1.5078845223447157 1.3361431454903645 4.6288540726775675 4.436436416921261 0.25791404531467627 +2.242434391208268 4.777627506542167 4.214472230257151 2.1060956881096997 3.297340712682577 +2.955225841758479 3.3668436396775236 3.046922668562611 1.1153560120309232 1.9749377104579087 +4.082857004899941 2.1459383778365164 4.31440581199606 3.410806310551518 2.13732211584405 +2.8931172717875384 2.390510022623453 4.6772591121446485 2.9725012897987866 1.7773050609734093 +1.4342366436920524 4.3380567363260525 2.6057746370139365 3.5150930257543727 3.0428656004638843 +1.1219321567019045 1.7862429121452523 2.526847818725147 4.331360521481015 1.9229079214057545 +1.699092315473222 1.186748344615662 2.36370117878358 3.029799657987341 0.8403472665937907 +3.04253512544669 2.2713033805015614 1.0306118535226472 4.863141056497885 3.9093578112100613 +3.482093862410431 2.279726635277979 4.112234132063052 4.023770938558441 1.2056171388493182 +2.579809259950219 3.950483861129468 2.7017816120083786 1.5307896211584562 1.8027676236699386 +3.9137270735577885 4.15076630114366 3.7478031030461074 1.2742716797547025 2.484863235154907 +4.085416599635094 1.475403378620077 4.219989597030717 4.78100326076718 2.669626442926462 +1.963293480900174 1.4427947971582449 3.4255154882272625 4.941033099218393 1.6024083465213677 +4.961453315123691 4.928681714911219 1.398140632758833 4.11217318843792 2.7142304049336787 +4.347951252847849 1.9210153801985248 4.382854480641582 3.1938298971830505 2.702553827404899 +4.99509373935166 3.9073013042113507 2.6377019200570704 2.912910285131053 1.1220659633707717 +1.3548136368609338 2.907023821619017 3.39820241797222 2.308023063513286 1.8967992731322996 +4.444781682454908 3.832779601392999 1.367900129654624 3.459790373801083 2.179575954349662 +2.6768945791044945 2.771709395176973 4.265967131281424 4.3935684423351375 0.15897151924003408 +4.996112679312102 4.011192013849701 2.1792480508233685 3.9301371777049305 2.008900557988617 +1.8902525946978517 4.037845914350488 2.251418462029217 2.9288716695179624 2.2519102812841854 +3.755528778338054 1.2073058660238747 2.4312364161885744 4.8567867844395884 3.5180583565037105 +2.94262300428448 3.0570451795360465 1.8096419223607527 2.218285292169168 0.4243605046156832 +2.6562749053258736 4.383479075276522 1.7099678237378138 1.0523558378962807 1.8481579393053382 +3.522164794560917 1.9958889566172315 3.7153417907224675 4.557136069099164 1.7430248250092257 +2.058520671989749 1.2880086807506035 3.236345037129243 2.5039654496664268 1.0630468422301613 +1.1676394563728616 1.985101695079989 4.289492930435925 2.6483450984301973 1.83346958475159 +4.242795588255726 2.909032401533162 2.1265795771215195 2.393857299624759 1.3602799782408206 +2.9480667838628403 1.3825035513034525 1.2329196720035633 1.3495202056078583 1.5698993342181549 +3.1979930854677945 4.014268853910419 1.1479234774049272 2.02700490445582 1.1996208924207812 +4.563043033476445 4.196066968131782 2.173750244619832 4.1728207978533485 2.0324749713935493 +1.272547184918687 3.9752367108851066 1.7654116557153614 4.798402640261847 4.062457998073192 +2.5017370990831758 1.5104191974110845 1.6387103571242032 2.69944770633947 1.4518522329065686 +2.7388643411371563 3.40660193463673 4.43432366661494 4.1938920831917645 0.7097047555709187 +4.757932894881887 3.104822125299794 1.8089008890144336 2.491108247151695 1.788346190200578 +1.5080028996095378 3.947412500947585 4.878776972201316 1.0334463230960305 4.553821143177313 +1.7546996862504614 4.605794553245117 4.332020215443929 4.01996099388729 2.868121841617229 +3.4467395892694874 2.2926455201040135 4.762854397589205 2.3777703872154894 2.649633721294943 +1.9824312915848123 4.352666179604761 2.6651066134807087 2.722583572032898 2.37093167871859 +4.85971807966688 2.3830743936988736 1.2807568586663192 3.792068528236698 3.5271022453234266 +3.9368737439956227 2.3890658905851527 4.499578567605843 4.246176646608174 1.568413747913616 +2.0062315937263104 1.8411094078693404 4.301951560920221 4.07897812098935 0.277457188007068 +3.20536403508555 4.666385043770899 2.2222480424732693 4.270431957209521 2.5158775281011336 +1.2022920223820601 1.9333695105892112 3.487274045314557 1.4168105714979697 2.19574435902086 +1.7465323382717917 2.715882091951213 4.9046583514846525 1.8140149645408497 3.2390917693418038 +4.993202611606554 3.578850499562526 4.649165080102477 2.586058102190251 2.5013600898618176 +2.9502765111355056 4.737436673387297 1.089977303018423 4.447988891820131 3.803969410506139 +3.0192260024518727 2.457637945628796 3.462026722956781 2.8197217172998155 0.8531921623282259 +3.567342570038779 2.816250299816539 2.3043130258840567 2.6442244674451834 0.8244267017095951 +2.999702004173078 4.9016591348596705 4.900726587787924 4.172599744988631 2.036568100058145 +4.652238920845398 4.711072621561845 3.2803837684900543 4.684869630538542 1.4057175893592841 +4.393044407153574 1.0927070334409255 1.8577839039569146 2.413637533163893 3.3468193912171404 +4.690681352332595 3.4997075065255654 4.62686533475268 3.114412876574527 1.9250795151487963 +2.140336815856044 2.349677225246502 2.0424307552004493 3.4915718099362842 1.4641834596541012 +3.8707706824338834 3.5225081930913094 3.8305239104477598 2.6208062791019207 1.25885007410417 +3.9364396545245346 1.7192316184525378 1.925579045178551 1.1008433150317973 2.3656289860844493 +4.0251049780543795 3.102593853327347 4.716691245212862 4.826720240497535 0.9290495977333442 +1.3664504785410054 3.6447091964850045 1.940525856860475 2.4357294599498776 2.3314564963559925 +3.4323940184161503 4.5053044265728435 2.938101689678519 3.2498518123835973 1.117284602479419 +1.818958026110998 2.205689108486327 2.4399160315788744 1.1274207240919552 1.3682853731040086 +2.2365790945326482 2.310158053115356 2.707892644419665 1.1854611433911235 1.5242084957347972 +4.071470555971352 4.9833971569969915 4.304365434829236 1.0051317763278496 3.4229450563873534 +2.7050010863983953 1.0912746093197487 4.839644159306104 4.337397859764579 1.6900782491434576 +2.441537915533729 4.682614847114872 2.4838568780567156 3.4880982666177744 2.455794490539506 +4.067599586522354 2.6393532156855204 1.288162515422402 1.7822259582720918 1.5112863333495326 +2.4164887603607825 2.88438444902208 2.3785241361814395 2.2390815086577485 0.4882321392929192 +3.809249160639519 3.9561705268094416 3.5480193447033646 2.317042865351463 1.239713265458928 +1.2313670664605687 4.81602998331309 2.5847355939004877 2.602068570816695 3.5847048218153756 +1.0797140657794868 2.6532039864433905 1.1417288200016138 3.919302817169084 3.192301339186477 +2.3368457913910876 3.2278562344399986 1.2788009862455363 4.701780460566995 3.5370451073245057 +2.5659529935566776 4.15099389569521 1.3461704988221181 1.157427514308591 1.5962388842698974 +2.744904563499333 1.0467000314690473 2.2530730392681586 1.508517909006231 1.8542548300078814 +1.6282279064288279 4.948703533414578 4.113895837315264 4.199521945468388 3.3215794766652604 +3.614304808048703 2.3416189110564685 3.0036729033556986 3.232074698520523 1.2930184733550572 +1.6611134774051335 1.2555481986038628 4.404510594360049 3.989659606449079 0.5801590622750458 +2.1490445524957424 1.3241433031062164 3.5623052578596752 1.1427003095457802 2.5563548613503344 +3.0414770688867163 4.351197673731315 3.7341271748453972 3.416794733554842 1.3476156503431997 +3.4164386017217856 4.9064732156044695 3.6472300500720576 1.070124454661904 2.9768567987833814 +1.3858782866782002 4.023853559677965 4.022768790549643 1.7720764978015078 3.4676403126036646 +2.6433723006200025 3.2924934567564432 4.53834719926962 3.9785866676325403 0.8571406699734506 +3.7836269032566716 4.643378557761912 2.0999807503592165 4.170740690199976 2.2421462119749918 +1.8558480333464349 4.006058967018506 1.2561126535577323 2.2714100069180923 2.377863699841408 +2.0952619196255973 4.6570563911092915 1.8153106221305726 2.100105175254545 2.577576158256726 +1.305929109709254 1.3446246355734943 1.9638616356358982 2.5554103634222463 0.5928129899618909 +1.6267515025441566 1.1924599941516627 3.876223044738285 1.8077246242761054 2.1135976035462285 +1.320441183401016 1.834723080307429 3.231712278094576 3.7288906806118387 0.7153126822692826 +4.620251349149799 4.47147793677852 1.53941670703668 4.31242613351602 2.7769974446462626 +2.833185671669813 3.8814782795214886 2.946829529090475 3.2131022134782827 1.081581496757205 +3.2208307091546136 3.0751636927877173 4.146764725552789 2.4199392132856303 1.7329585192594679 +3.704825279379385 3.568191581994709 2.2943073558593943 1.6901494691768928 0.6194154658237664 +3.8056212787124366 3.274382450210094 2.947770075746548 2.425857409996167 0.7447197617756696 +2.9534679133323984 1.743659503041537 4.421884310304568 2.6932577591086586 2.109925625018561 +4.197806908876572 1.7876860582244145 4.499249404741337 3.8376490962194167 2.499279392741952 +1.6919362288141655 3.8500495848062934 3.488678178537423 2.6432223961711285 2.3178111953410285 +1.4249225781950785 1.4446457667927697 2.110304673306915 2.7175334992540967 0.6075490525296315 +1.6443438600221523 1.4085388520494195 3.1773607581943573 1.708934762439838 1.4872386852125221 +3.6188808491726983 1.9212637664663337 3.956914238786178 4.300863560395603 1.7321099547465373 +1.9434617196704238 3.3447687968315134 3.3720826619992486 2.6570444509095394 1.5731945740499258 +4.660826872463719 2.1070508934092342 2.5535369949050537 4.437239181023191 3.173342981334029 +1.3023313672705648 3.55024582996319 3.72695557824695 1.1042838044322152 3.454204201367835 +2.7063954866671294 1.1612208006056717 3.8336079054403474 4.020652448190152 1.5564544552981971 +4.318628233509463 1.4985117134815575 1.529114241056989 1.431523733873758 2.82180458104855 +1.277015273613693 3.1460428233757223 2.113097151029467 1.662791752604969 1.9225085002724178 +2.3397584582997375 1.4743847252343052 1.9329547416299055 2.641732152545236 1.118587107070094 +3.5122847970346345 2.583612665348077 2.1555981691106596 4.852723576192492 2.8525282452059253 +2.389866785889852 4.039107938605997 2.806517725786385 3.2620467476235446 1.710994760234057 +2.472593892344531 3.958808777420631 2.35307552133698 3.7790895155537205 2.0596967243562214 +1.9645802191488602 2.3626674562923093 4.915776212919448 3.570286553846515 1.403144992881599 +2.099756829617902 1.5637179425483523 2.7891182916802246 3.344003596497204 0.7715149965830823 +4.6262419755767255 3.2980594373094196 1.064761147762678 2.9346776898922635 2.2936121575994597 +4.643071712558303 4.808260668947642 3.5418815618375232 3.432770194149964 0.19797141680467065 +4.857094428350752 2.267548844357125 2.3678317877112143 3.8482614525094565 2.9828540567710538 +2.5205918097773274 2.535901093550675 3.0977449411879228 1.8994613863486194 1.1983813466371924 +2.555047929239787 1.771330575867422 1.8436763659238098 1.9656141322238603 0.7931467133054452 +1.0794559299305262 4.788264862670901 3.7391712533350314 2.3724964241417923 3.9526021540657448 +3.7246747946279073 2.0321754096167246 4.916247509765958 1.8791180485472454 3.4768821568275645 +3.486025890144274 4.0047098173430165 2.4922854916645925 1.4884379645126153 1.1299304731280815 +2.027239213701287 4.245075052038977 1.025706047210035 4.293244763153611 3.94912712710103 +4.711152763016926 1.1395498664924584 1.364226606671934 1.573608607406161 3.5777350478610677 +4.65126865274526 4.6671660982788765 1.3383481813227407 4.982142532945174 3.6438290307985146 +2.5567807194765715 2.92317878801132 1.2746584112099142 4.133513559369319 2.8822387657485153 +1.2981969061485183 3.4403037424258067 4.950232485702724 1.6845656037026413 3.9055347754459997 +2.9614261196693956 4.358693180337651 4.9377669769727 2.2461280415019123 3.032701006985493 +3.8073554326185586 4.7716927736972075 3.2877968380651996 3.5305681784208205 0.9944266846262237 +1.6967808065449321 1.9056721026074275 2.9471986925003715 2.285544865779851 0.6938453429868773 +3.2590979807172538 1.3559232861107549 1.702699245514534 2.1904980703889114 1.9646937704740053 +2.2311590122242264 2.7914024436714686 1.6368358221914683 1.9064935022314011 0.6217619857182486 +4.840506321142 2.2274498049895186 4.132832935787507 1.1559135894044217 3.961074747019657 +3.4028415239220395 2.5823637065775507 2.80228117332094 3.0360226610603784 0.8531230461340394 +4.841240561478481 4.11923896538681 4.407928366735643 1.4393530598876931 3.055114671691771 +2.372698617716574 2.7631894260930485 4.473475866990286 2.5724220207032444 1.9407443927290549 +4.9533744651240745 3.082145947546046 3.8787172375568377 1.823583867225652 2.7794008949495006 +4.54907963697782 4.60473432886635 1.7032444561549318 3.629071889806244 1.9266314512467626 +1.3092440766193705 1.973959656607092 2.1548651536417225 3.2803769362366393 1.3071432878756637 +2.7004774571483123 3.4576304687098878 2.889980753885409 3.740506638965857 1.1387163668397158 +2.899446064709359 3.3143001592518764 3.142966480979184 3.2961833477192455 0.4422435166425097 +1.4221919518645056 3.088445287664737 1.0604545230010958 2.672121214584861 2.3181608451153597 +1.6657162446873608 4.102375125409946 2.5438724597853946 1.3015642847969229 2.7350751548444565 +1.9562724428717129 2.0283547811853833 2.8695159616192183 1.7452914859117294 1.1265329712336627 +3.5292118206037335 3.2792936362097205 4.160447003125961 2.071254342689969 2.1040877052324647 +3.6620319582111787 1.0740532483914693 1.3439180059245355 4.0232783163752135 3.72513160515148 +4.443816115971607 3.4670911603700585 1.1903642858301446 3.532302427053076 2.537452639205226 +2.324042315661598 1.098578227858511 4.744599574725063 4.530671059465586 1.2439966399215783 +4.220008760220841 2.904424721943938 2.2508950847433207 3.928503857279933 2.13193164887169 +1.0629107574010521 1.4810996588498444 2.961079743938782 1.9195388826553978 1.1223588209738815 +1.2074981868982095 4.704392651746305 2.0107228662845813 4.406388964816266 4.238807256049663 +2.061660562268839 1.9312098430534563 1.8343341529937716 4.765601569449991 2.9341687165058747 +1.0066262744792036 1.9322687955279516 4.254154603695632 1.9790471552844089 2.4562019417364094 +4.656364171157325 1.7650147987246645 4.384190641514799 2.9924561178606868 3.2088668058673733 +4.670600953650522 4.763609832407441 3.287065174541896 1.5824133249792505 1.7071873300095008 +4.880644328857109 3.5786757022348534 2.052114133011406 2.629132777893427 1.4241042171309393 +2.591064100903477 4.325023617543473 3.9842581457350055 3.0801529783580732 1.955510613375463 +1.6888267370526235 2.9952607243572245 4.0358648443751335 3.603201503293041 1.3762148560093797 +4.3821658384961 3.971770659157957 3.273250988362609 1.3637434260218093 1.9531111934195373 +4.407430475706256 4.171034616022741 2.6629308387885753 2.882169728371475 0.3224107522727044 +4.734915188337709 3.129469983843509 2.0654438222227065 3.885883383105421 2.427231859435821 +4.2983293362002115 3.987839675308703 1.3419592139497616 3.2368758740877457 1.9201856624787657 +3.694837205539751 1.1594588821779284 2.4091740090783555 2.2328463325820915 2.54150244777997 +3.8546752618651485 4.74935642596545 3.033746504060608 2.834247412807991 0.916653845683577 +1.4480601769437214 4.076259135140749 2.8646041888333365 4.083103144239826 2.8969241391853267 +1.7741819779518986 2.207904288287581 3.9008576668642 1.2011800212373775 2.734295966566185 +3.5255767567249725 1.814975594491294 3.002957578224173 3.9002316524556737 1.9316462151551481 +2.6165605476256864 4.536593642938339 4.574137160117483 4.853021910323019 1.940181380952072 +2.791771736789017 3.2998727622159083 2.3279590691245753 2.615978463868296 0.584056353264304 +1.0760697612699892 1.1059332878782273 3.9658615498273972 3.608427209737369 0.3586797146439632 +2.603573807430508 1.3300812441391918 4.016762706452873 4.474447545129617 1.3532400822887432 +3.2012097331807183 1.4515034124601978 3.883560909056762 3.4062599793165127 1.813639541447045 +4.183669220613028 3.389626551345571 2.085929634272745 1.3277987507381415 1.097846162805312 +4.3580856003701856 2.075176129601175 1.769867017405781 2.609552849708025 2.4324366278889893 +3.087000022398837 4.533106019637243 1.8004644358507473 1.5761131455481792 1.4634056364211911 +2.7995125035532156 4.836840401801375 4.597289006663241 4.854763160617701 2.053533029910848 +4.343673186039236 3.1542614119824033 2.879819044799331 1.6885334852439744 1.683407749973292 +2.325860269105199 2.580149085792734 2.3301731956507976 1.211922165229308 1.1467990971966582 +2.119445978496729 2.977798059438316 4.177667789875971 2.3143990155138545 2.0514723542786673 +2.1165372861314795 1.9741625113772092 4.741952334600575 3.7688848953171745 0.9834280949209677 +2.3090805300329134 1.752843812173623 4.956274102737906 4.358060472768411 0.8168591270079286 +2.3023939341637862 1.7013133045719977 1.9641063016356366 1.8952640405000354 0.6050100661879299 +3.4975808816195646 1.8175724731901308 2.8171777061578673 1.941691733712898 1.8944402709881125 +1.7881067623681037 4.412571843811342 2.5037166354403717 4.550610057397166 3.3283013151703766 +1.690896043933595 1.2557867601744115 4.4572082620449605 2.7407572669941955 1.770741118070112 +1.833015503448662 1.8718252819061143 4.424553874210538 3.756045579349053 0.6696338844492017 +3.2999603626010847 1.7418011557306365 4.707470747726762 2.857072464620274 2.419056411098878 +1.5532061571681393 1.0729403445617192 2.3530807814950756 4.140967581606493 1.8512683384023902 +1.6997355165965877 2.3255108751735 4.056737854431336 3.19217086018947 1.067272639457453 +3.54695200311157 3.9105464041819507 2.813080744336506 2.0599710160235043 0.8362865246848188 +1.412390954918123 2.6118784361725047 4.828212202202189 2.94570030471199 2.2321785909461034 +1.766034052194911 1.701166742621445 1.4665210468322747 2.3813662434704654 0.9171420291662954 +3.460577184675044 4.442309608019471 2.3399224736252644 4.184978819118817 2.0899836049815668 +2.7546388650047207 3.808164446524392 4.04566181732273 4.217295733158987 1.0674147984647995 +4.031787485088573 4.92684271861478 3.98021745637245 4.640009462427397 1.111957446270613 +1.4739703921600613 3.2819348373049557 1.1510756819515775 3.8991831715186294 3.2895030337609676 +4.945247200122024 4.426410305973153 4.960121172898838 3.3555381701721028 1.6863802463767161 +4.0624338075444335 2.184062726314006 4.318699121584732 1.7246214308708723 3.202735859271276 +2.0900196950012724 4.858988578412239 2.6015248992290765 2.6924871351796904 2.770462561679423 +4.268867962550166 4.002186687708993 4.286176972505361 1.300619524424416 2.99744427440153 +2.161223309871453 2.6076166139534434 3.7962212518711844 3.976000491801375 0.48123544865181467 +3.436810309640962 1.6590847675376321 1.9758685727486571 1.1041805878470106 1.9799363742475342 +2.913673000984214 4.755778418737125 4.42859624121121 1.8425434331005168 3.1750624397721423 +3.264159338650223 1.6732558824786827 1.3980596953335631 4.4323795347791455 3.42608679033553 +3.9814301949720545 1.2060504001067431 1.1234789068112732 4.954924289735658 4.731036538442628 +3.989397237797422 4.514458495221717 1.2017964050458385 4.795353710336885 3.6317135666870297 +1.6124411869938489 4.113170969839983 1.060046715524146 2.517739775642984 2.8945670668223067 +3.2337399558321884 3.7257753491402568 4.38195235223594 3.0746536932162987 1.3968280538929543 +1.4798202132023395 4.374968257618459 2.6475725889712316 4.679979148760113 3.537309517607889 +4.658391065186095 1.7354201815479304 2.766744983731599 2.69336589102979 2.923891803374778 +3.0874283365335637 4.992169280623541 2.59290923243364 1.3943941198372078 2.2504391880730337 +1.1914784923660178 4.327972229752897 1.2129636980028007 3.527365436615385 3.8979543830527397 +3.77557085182152 1.7344896776625012 3.8326821085769995 1.4626121950365323 3.127817730395439 +2.136233926470337 1.1386174356583245 4.55137296342869 1.1102396697114947 3.582825282911383 +3.6636685626056824 2.5214163593520955 3.5776345274746197 4.917426551865177 1.7606199943367173 +4.10351491048283 2.8468504726615222 1.3911136054127722 2.329571325811661 1.5684095135713192 +1.958189327296168 2.2288191538487676 4.660911608795208 3.826851404725516 0.8768676793180744 +3.263706605202185 4.219629985258381 4.7857629819302865 1.2063917514982427 3.7048195521216236 +1.2508384158203274 3.8645821341269335 3.35180193718598 4.667621339495964 2.9262667213503706 +1.3150502022596102 3.728954685173509 1.586694582312738 1.6454818586393172 2.4146202178582272 +1.0682843206031407 4.877812023573664 4.042609463448104 4.837947574279852 3.891665971051638 +3.3832813313055174 4.215647402353925 3.3947848727706216 3.084193200882034 0.8884258342028954 +2.4178021934761644 3.295343998556433 4.292626590742522 1.1846053093702058 3.2295318399307895 +3.036969539009557 1.8895313890655645 2.597545197575929 3.032832501710011 1.22722831823879 +4.606457041572194 4.438320403854362 2.1428183147817044 2.068123193220188 0.18398176574907418 +2.948666277941912 4.685861546750889 4.645703953335618 2.053995696832455 3.120063955882789 +1.5337680608416955 1.2500187350353675 4.926995366448134 3.1984628254921197 1.7516673271598693 +2.904198389791734 1.739815943581021 2.841756753408521 1.3959051440364085 1.8564141125749858 +1.0889816276711213 4.838884021561944 4.371125693600713 2.029441338087017 4.421001423271171 +4.340358662939668 2.5358803854232983 4.891917977191149 1.197700015293841 4.111373031486336 +3.771042668156507 4.072925100444854 2.826454001132055 4.858423946477366 2.054272343607574 +4.6307952426397945 1.4296566098697503 2.984873668333546 1.7706848693544517 3.4236739017872546 +4.619564627677294 3.971656403745078 2.231028944910484 3.364403810047466 1.3054974728291395 +2.358599904735727 1.6340905205394156 1.3767749661021016 2.0580837991528513 0.9945328419823515 +3.1545122840519473 4.8793696981365855 2.7913961718578393 3.8206084186257248 2.0085843143417565 +2.7434856173288993 4.322968915672442 3.107047448954808 2.5075204884732183 1.6894377958630176 +1.9934402800683833 1.1887032781978077 4.106541244337345 3.839613434403587 0.8478514598063007 +2.7003673024261277 1.9407114985741396 1.0825882849322528 1.9133986960800713 1.1257543602392208 +1.9008094694235789 3.9335808835891792 4.32365748578088 2.284913835440989 2.8789990090394335 +3.3053898537297655 4.301302448996763 1.2892306240365001 2.7625196564187116 1.7783201259472827 +2.441473048032087 3.0504634319645136 1.092123233064445 2.7289548377583808 1.746449824600492 +2.1790417926073253 2.8780646191547055 4.098325180476214 4.10633365698279 0.6990687002936443 +2.0452950336070486 1.9365439206094779 2.8293044535463596 1.9850138492185168 0.8512657805494618 +2.7962368384995613 1.8284671760477256 1.9065626132449403 1.1055300175774208 1.2562767763848792 +3.8076733983991167 1.9874691858765066 4.124859376283855 2.9832276316371873 2.1485963826810397 +3.9273188567160693 4.602899730842598 3.2038442414963804 2.3975621044169895 1.0519032284667986 +1.9057454379555008 1.1093875671382225 3.42082912055442 1.2767322652952657 2.2872116612034015 +1.6568032041562017 1.2027818855305301 1.401920524006186 2.8787997547050828 1.5450914600231143 +2.094322528297815 1.0886870139315388 2.807374567585239 3.8142254622041194 1.4230430463445456 +3.1243085192947593 3.131510877649265 1.0224022695178778 4.757382736967793 3.734987411785782 +1.2243660559373866 1.3627769595303403 3.5715928186706174 2.474080122744529 1.1062059916454838 +4.233475967026964 4.859291190432533 4.239295609356693 2.9383597052627435 1.4436339288084445 +1.0155725520875372 1.4487928221193247 1.9061100276090115 3.1694622386421956 1.3355667753762257 +1.1918678665372218 1.3260346020738356 3.491297389237809 2.685004506653228 0.8173793032803709 +1.1755581989848496 3.0862167612512708 4.826075267873951 1.4328521895217925 3.8941724411001224 +3.3821773567880564 1.2246691966761358 4.748483488274779 3.5470398625039294 2.4694752978831214 +4.122725133332983 2.479848673289482 4.598766189845561 3.210311005386065 2.151011590442394 +3.9015482351858557 2.6545365467623547 1.613282962647821 1.9993782616808153 1.3054147735490846 +3.7164251683923726 1.990779632895129 2.4911321263307213 4.003990876063359 2.294906122442521 +1.722041418430611 3.560936046915534 2.8475079362245843 2.4143053453318544 1.8892321031114407 +3.948466261796695 1.319520800199876 4.175446809328799 1.325293562130541 3.877464090428857 +2.568536805665042 3.1802678298588445 4.859241618164087 2.2628989966413466 2.6674350703056997 +4.550484598360062 2.389943189110205 3.579293437510618 2.5007258854008416 2.4147975371752044 +1.5171150553367472 3.5121746069554125 1.9181263016074044 2.703408920882036 2.1440455700939975 +2.512782237607374 2.763097798802138 2.9273280862663804 2.4430592127954434 0.5451368837173468 +1.1082527956829766 3.627365491841708 1.2841184369200884 4.750381936962313 4.284963410307384 +1.5526981914013729 4.6485553187588735 2.83297053223394 2.7625145432221583 3.0966587476500966 +4.967763201417724 1.0040166959145433 4.15511387801622 1.4160260140077159 4.818079356615803 +4.094468442126958 1.0383962993302633 2.945761941279045 4.8731609561647415 3.613093398261431 +4.041993223085553 1.7822394623231723 1.5941565421653765 2.5984206681083046 2.4728593760939255 +1.9040163640884535 1.9293733403317046 2.797534810069844 4.10058985137872 1.3033017367151312 +4.520343992356036 3.543048103009324 3.319125717400458 3.6355098369187178 1.0272322845478161 +2.3551092939075353 3.2477265754695592 2.3607174998381844 4.99072128447277 2.7773522496319085 +1.9692416366808492 1.991227899352849 3.450741640637384 2.1676320823964517 1.2832979132670335 +1.3081827990098578 2.5768495075812883 2.8445293017775843 4.203466356201151 1.859092556954297 +4.943304126798905 1.5309878801436274 4.198008505499882 1.473637742690876 4.3664743467053695 +3.7516757875533364 4.823876546452315 3.1535589479870008 1.504719589914266 1.9667957942077396 +4.1055140047091925 2.066396800663971 4.630518010702705 3.401581887546336 2.380815609540522 +1.5943770191651057 3.6076297441489076 3.069514824760016 4.867939209020112 2.69954010908451 +3.3471370711524826 2.572135865752599 3.557535498276853 2.3754081816040875 1.413524623483873 +4.406143959780915 1.8540425350019305 2.4158576390749267 3.4438814801856483 2.7513732389937515 +1.6445900653700747 3.1477196101290383 2.255824082742122 3.817106232884761 2.167256417842917 +4.602539515268642 1.9204516906937386 2.65034096280122 1.9049058208847258 2.7837508238951636 +4.33048997388299 4.362054758699779 3.0679180326825777 4.226219463467826 1.1587314357519107 +4.877507487893509 2.8105595368995746 1.6215064481828194 1.7329055363556556 2.069947726142804 +1.7546192236515523 4.903487119475173 3.92319050531382 1.752902878195541 3.8243322828660387 +3.1383253609951622 1.2393268432608813 4.243929485251713 4.264707020274406 1.8991121810779414 +1.095805267775464 4.628386155656392 3.2193215540046207 2.735374197353035 3.565576078760859 +4.958525804435189 4.602652822218438 2.459581165277788 4.290925064160755 1.8656007224075868 +3.9295104279120494 2.1689676349740075 3.8874049308222673 4.899320026262377 2.030636128444889 +4.832786239995553 3.747584586469682 2.2559059162155677 2.565939560040294 1.1286201704375665 +3.967861673634285 2.355729323515491 1.8704847707185182 1.41812805192672 1.6743946115941808 +4.05162991272089 1.3392189233260243 2.364713323518367 3.9786568339905863 3.1562615592478114 +2.0640216673461502 1.1526903563599822 4.125456362153496 2.100115166984171 2.220930371541098 +2.162012833971517 3.5802280621177247 4.926763341041104 4.519856428269397 1.4754347389861748 +2.457009737373246 2.988576502799568 3.288918520418317 3.4059102962284085 0.5442888035896027 +4.956263164270709 4.5156641315986725 2.1834743757861443 4.6101435686629975 2.466343625541488 +2.7655798452818283 2.417194228449138 2.535538564345223 1.57751234084082 1.019405112277745 +1.917536854967072 1.1391005395465346 4.05455186424062 4.1278633368939985 0.7818808535756003 +2.4799437144504393 1.094941986426056 3.2151814515035615 3.479301141279639 1.4099606367405932 +2.858834042581563 3.1576254533477033 3.1165329580007697 4.350478846747996 1.2696057512093282 +3.5300033600367295 1.7425922927741762 1.6482789356944023 2.251211003067851 1.8863630088718026 +1.5566411271737426 4.08310555972575 4.756102759555722 2.2211208826523965 3.578988075584863 +1.3261860860631591 2.3553692898503344 4.552272637400689 3.843650889427845 1.2495450566737174 +4.443154369557508 1.3714211420991358 1.9775015251305383 2.1055028582631 3.0743990245177253 +3.3857976316172014 4.606993266435923 1.067135519528918 2.6692905903017086 2.0145023329108525 +4.352727418258483 2.5124179977949375 2.7132947396918787 1.2417443264894001 2.3563105443984362 +3.3154321063512775 4.238756357002635 4.784913514708842 4.923884882538974 0.9337241096370322 +3.3335229016545083 1.8672350896542578 1.5689439218399865 2.619986761291621 1.8040762173431133 +1.7810799691023922 3.5094736280892453 3.423960851772595 4.320127560624956 1.9469102214743323 +3.8498490952665283 1.166595106896637 4.141981209837063 3.6238402631920392 2.7328230836797927 +4.600168388056917 3.1049976853867425 4.069613778518477 2.1106357579010853 2.4643721949789277 +1.6760602600268037 2.063331764096128 4.0982974638229965 1.7068576344899848 2.4225944099630916 +1.6767349706112102 4.4735756217683855 4.337879779622712 1.6979304247308482 3.8459914488151505 +3.7252449586400376 1.6081839561484697 3.8966200535599897 2.391605515583177 2.5975018860035815 +4.233833293892062 2.2727767554157485 4.592486538998337 3.7861190223252246 2.120370561728837 +4.335188187336782 1.162748762706027 2.6736670491423467 4.680246390088152 3.753762453121138 +4.672392069731378 2.845490172509884 2.1065189014585166 4.14766637797222 2.739316258293254 +1.7359595443169833 1.6788203601207865 4.304206906391588 2.1894079545716845 2.115570725121042 +3.3628824378841973 3.150893436151084 3.4776775260375747 4.286580095050136 0.836219291221461 +3.0459310107531636 3.140047579911078 4.184311186641921 1.3172924458438677 2.8685631226586787 +1.612898407207866 2.807671409911461 4.730282307337172 2.5480394668342465 2.4879040059688076 +2.300287670240239 1.9576235782194331 2.3413251186388853 1.7737720061500282 0.6629745209706271 +2.6674480408930052 2.791495506821768 4.2000087077228745 3.569753710105883 0.6423465854385322 +3.985381211995808 4.538660182141832 2.968312075507087 4.0241539466355825 1.1920233536445368 +4.194903705450697 4.930134659731332 4.450341857226124 4.464484384191214 0.7353669609122855 +1.675651461644967 1.4681113118307252 3.0009387993107968 1.574000192350117 1.4419523923555186 +1.4964324608198547 4.613341264785612 3.464906701191855 4.62136876030098 3.324533799857984 +1.889534004211559 4.866020024445058 2.5679981524725086 4.8927689720026235 3.776774866467973 +1.8456012136407947 4.183331940826759 3.121217978421995 2.700347236849995 2.375314112689263 +4.761327100051366 1.6113923334876077 2.5754575834642233 1.7663632471014887 3.2521873683324785 +3.485052140890064 4.842958557360156 1.0872576763902586 3.5939194256142164 2.850835484715517 +3.852641092586911 3.1170580395591947 4.783563563486524 1.1135591312587136 3.7429954529057805 +3.1668813242706824 4.993426780912294 1.7866876898675828 3.1914000903940325 2.3042320268086924 +2.980793010930964 2.2630279922320495 4.568718051007793 2.458924251466701 2.2285458260152273 +3.624346486464393 1.9664011224083255 1.1929593890072625 3.31187520373311 2.6904622391125113 +3.714975920719395 1.696858130037215 3.1108267111013586 4.113289355582177 2.2533820738275607 +2.665906997062421 4.700615912597048 4.1060818819322265 1.7840037668550006 3.0874078356246843 +2.0793469320891935 1.2422555855375865 3.3798844811419975 3.1623414568812334 0.8648970400435546 +1.4011946519438858 4.825734992515443 4.139124014865813 4.913896132902446 3.5110893436494783 +2.0207526894821197 4.546785633441064 2.178357787897415 1.5143739727693912 2.611841676043526 +3.5163788951090025 2.7347256823735253 4.829007548659236 4.931196631211142 0.7883047339528625 +2.026844572089531 3.5630669327124083 3.9774549192962465 4.819337823700557 1.7517836527396762 +1.5151065864631241 4.097615594758203 2.4858984630341343 2.7439326993569266 2.5953678824089503 +2.3545481845608673 1.0918982807357005 4.502579060983935 3.2525783435400837 1.776734806672016 +3.4285844174538163 4.147510947987851 4.968588565942012 4.535379842733463 0.839359966980607 +1.1915604516071063 4.002738743154856 2.148059501754135 2.7791076735243903 2.8811360922323512 +3.5510124651062425 4.002146565041728 4.570757489531027 3.165091196068208 1.4762857801598237 +4.19781816691835 1.419166285661381 1.0326903642895489 3.555534079688326 3.7530849563445803 +3.0046579144616956 3.225266023281918 4.471448983407782 3.434173961944082 1.0604750859071397 +4.107663211096653 2.85382632625361 1.7698048529704016 2.5988030441963343 1.503111750618953 +3.9385906157560475 3.1839625959934863 4.784659511453628 4.168372328967951 0.9743065942027174 +2.6931931890637957 1.7366530215052132 2.8620780474216785 2.7871265622299215 0.9594721555550486 +2.18159860605131 4.654363065570396 2.65820322810878 3.6883861227279917 2.6787760019506552 +2.721105640017651 1.2350806237218652 3.001193338357175 2.8814419936449562 1.490842289988205 +1.3156285407946964 4.830186845004061 3.2810522382715654 4.741633559311223 3.8059713436988667 +2.763812886012183 3.1538741135870514 3.736468643545414 1.0451077563278335 2.7194799478028546 +4.328307342485271 4.998088621247771 3.3313902749009943 4.3109557886830165 1.1866573040148392 +3.454645977640528 4.152279760532723 4.365386216447086 4.325126291497616 0.6987945024035404 +4.448183860408298 4.452868976455012 4.365697403795661 3.9489666133893646 0.41675712589591984 +4.621853386692122 3.16720553835294 4.028416136734981 3.0921694882401467 1.7299011964547628 +3.2269590812729745 1.2790315316998782 2.209162632031741 4.254813535493428 2.8247317319029546 +4.1253309462211885 3.4264192144261276 3.468716165408426 1.1269377221383028 2.4438502176290213 +1.3278225479930632 2.5763703974508387 1.2976355091471845 4.168590999929107 3.1306959549653657 +3.1421902008056275 3.69637080145631 2.712621884851232 1.80594234316137 1.0626306646509358 +3.400904300150999 4.874921108915095 3.1967658584016014 3.695522380114721 1.5561116992267812 +3.9419233021352476 3.1179455113785646 4.480887352265871 1.8494114253435656 2.7574634999636656 +1.9650919693972257 1.6428247749932985 3.6284155208713367 3.682791210247124 0.3268223679371881 +1.1621198298873567 4.909439401251976 3.96583114784642 3.8702591073708934 3.748538113031929 +1.77560493482923 2.943727746377104 4.004953915164265 2.5643678140124875 1.8546695710261139 +2.206960536465905 3.0649883370086632 4.7603381584523525 3.5104187672659455 1.5160838337532796 +4.60054154455452 2.2289527277624352 2.951243860600528 4.15076028275039 2.6576819153052327 +1.691262927752255 2.493948258962444 3.2441996120242442 3.029860809223947 0.8308097636197322 +4.297198389947807 1.495297603448511 3.4111716938002994 3.2468998828984272 2.806712177128669 +3.734162388155834 3.5014055758711446 3.0829892324891857 1.7172080279497361 1.385472494255357 +1.1642030930741551 3.0392273659833173 1.47461138267539 1.705766915504042 1.8892191255531556 +2.202949193492325 2.3438812145838024 3.866326143217908 2.4937524174078183 1.3797900084263257 +1.8278669217211818 3.370285684682938 2.9010253625318447 3.474898835986083 1.6457175954187602 +3.995938307271208 2.5287411615497986 2.744530576745466 2.97227984665752 1.484768397548427 +3.447041080391451 3.778987338548106 4.854158017876105 3.8562129335278046 1.0517046684688345 +4.889107622686952 3.9701793223526662 2.631701247357024 4.9833992840119965 2.5248589815595865 +1.809954364295269 2.22837410216314 3.3116870608842057 4.044765250937369 0.8440845394680789 +1.2873137352483561 4.975911097634327 3.2341466947885356 2.9519119083410996 3.6993792690776885 +3.620622577789616 3.0212875155170797 1.041290185016218 1.3844992815172898 0.6906482467872537 +3.187294137936196 3.0178752558705897 4.974927250240438 1.7338989010943995 3.245453360867886 +1.4112504346850465 4.037149870680858 1.4195299704293074 1.5434781017923909 2.6288231182853523 +2.7824747951821602 3.5731545626866157 2.543915305329162 4.620550548040696 2.222068501647168 +2.550147083003457 1.4632512830037805 4.453897912154677 3.8142318112398637 1.261156295118292 +4.072856309769383 4.617256487285141 4.152525840425859 1.7519301725499474 2.4615505507512503 +2.2326887833937823 1.2805039115060297 3.4608394023815174 2.984444606871254 1.0647103039987738 +1.2360264367141043 3.171495143366637 1.45782021862227 1.377782321808398 1.9371229128162248 +3.848394798343877 1.8999498313247516 3.545248386306848 4.261852665317512 2.076044190810628 +4.041892896812035 3.512996013329877 2.950146889155288 3.092553701299816 0.5477331590312078 +1.9789085930001593 1.133109476001378 3.462357777958442 2.0532664098933373 1.643445961956616 +2.1427672144982877 1.7721988672610016 1.5012546928658628 2.340564066277195 0.9174754079921144 +3.025352776237557 1.5972833434731677 4.010180570706211 1.8232590203982229 2.6118974275414226 +3.5099472292598466 3.7675715620808643 4.693348647468714 4.2627644108093605 0.5017699490015243 +2.3508082974329088 4.741073094203253 3.1566853303438798 2.847837047063753 2.4101354859768067 +2.4228458445946544 4.970819574448688 4.749426541055606 4.508316912119682 2.5593561653650116 +1.3573703402088486 2.238790643709892 4.869603521056928 2.01611176669655 2.9865225503294868 +1.2773709615365783 2.22853122630605 2.5765922186142807 4.200160210940605 1.881669172565375 +3.403519357573562 3.9362279640566435 1.3509261928402028 1.7716325619783482 0.6788021128830906 +2.77651796824177 2.1564024484709856 4.083269138410932 3.961983508825991 0.6318650661370714 +2.4940548484923997 1.0227534369959361 1.7028428538115996 3.4823846083246406 2.309003399635184 +2.781467822151838 3.5561251825955917 1.6212073344340037 4.484386077835369 2.966123150301603 +3.186078628839813 3.908322135803188 4.091940032262424 1.0516605681402913 3.124889582579442 +3.6962715594038587 3.408646138036863 1.1896172169361612 3.8212058473939976 2.647260301325031 +2.98886662445111 4.656792684111629 2.5367813456943997 2.748843946940403 1.681352993080836 +3.1311815545221213 3.407067884125041 2.4071395674824614 2.127804390197165 0.39260846670796423 +3.215018720631402 1.869345473308111 2.141501628257142 4.839795442556753 3.0152323288345713 +3.018964780747694 1.9808193100588034 3.736801315557485 4.246748219758043 1.156629527297134 +2.9970718097609086 1.4723219773959824 2.528090343661515 1.8161902778077192 1.6827548113315587 +4.596443503830766 1.0206134080229856 3.715018434223739 4.138199784117663 3.600783710386216 +4.802655757227132 1.7969805572484518 4.836624626773628 3.181573816995885 3.431220860089429 +1.3093720563816564 4.678730973463331 1.9888398478993001 3.7095114457964833 3.7832909298556254 +3.3894039448947435 4.291077777991634 3.5529780334230625 4.609798521165697 1.389203096960347 +4.2762787760356336 4.168713440534128 1.0377185796272737 2.590887784422955 1.5568894887329674 +1.2382197636799535 1.145243950517663 3.1445622833015223 1.6798064077206516 1.4677037428861017 +4.215761790939607 4.792100389248855 4.142492927783806 4.561016754581413 0.7122698740634634 +1.0766628123760968 4.974595074413397 1.3411836423962202 3.7602017757325976 4.587540152286564 +3.595855428810164 3.1638199237788838 4.801680262962041 4.468943230251915 0.5453151479139131 +2.4052002333915823 2.675462638895785 1.0799511658395877 4.997510468527151 3.926870593475521 +1.8261477356644504 1.156514000197018 4.648693749812587 4.03582927379896 0.907751180464958 +2.792233038894489 3.8989195590000194 4.6298481353449255 1.7721776014326496 3.064479716717629 +2.739616998724876 2.952344607076178 2.243514163816979 4.718398778444895 2.484010243754408 +1.3911091651916023 4.765873603622647 2.0909305471460558 1.0944047429088322 3.5188206395622736 +4.826128619580112 3.653796936349736 2.3445577303318865 1.169416145959906 1.6599154553247755 +3.274676765569215 3.7886290961773677 1.3323324432980428 2.925057738378033 1.67359519111558 +3.312850115826984 4.0460069599199375 3.058670001952209 2.9173664078277475 0.7466496258305028 +2.2630440617058465 3.7036791680879415 4.16750440688434 2.9391275772770555 1.893235100365666 +4.5661144293757285 2.8167164345367413 4.067444736414 1.52656628800429 3.0848754648996133 +4.378087710042639 3.1435014898311797 2.5533483788709406 3.2448045113082147 1.4150317021965022 +4.77465600928542 2.0513288989038703 1.488694471573365 1.1848461730888178 2.740225235018296 +4.853231394261824 2.923418138730639 2.0401136630265326 3.0116398182996487 2.1605652666845394 +4.854969340102738 2.709608127763113 2.368769383712976 4.807460651817725 3.248044001016872 +3.8009821822688146 3.1553686684694724 4.082477459627987 3.9870857802786968 0.6526226947397793 +1.8099677516374286 3.3751166474941923 3.7557355288482306 4.361889708932598 1.6784260353782043 +2.110213501326916 2.30532305893182 3.1678239712208236 3.765041143475313 0.6282802641372955 +1.6417206589427957 1.3058857748953336 1.7723220557528663 4.184151845139576 2.4350991771006605 +4.140619588223776 3.4241156033822806 1.0211970431062776 4.371275612618745 3.425843601538231 +4.0917128772030384 4.428258899716951 1.5709036828410095 4.903338204917485 3.349385476351894 +2.274290664390811 1.655426213242773 2.5655744135034095 4.642626601365114 2.167288397974726 +3.4329425763908312 1.421685464740889 2.0807182342143173 2.9891093801457562 2.2068823355967804 +1.3637643472693033 4.212833591573366 2.8163336243214125 1.1022152331160457 3.3249657769528693 +2.5863754015124436 4.951116708376485 1.9348884841291376 4.625899028899972 3.582392943335066 +4.825415009444658 1.3631211628336932 1.539692705343926 2.315536902873195 3.5481562675733413 +4.60002658637849 3.2088564150520402 3.6870687271764218 2.3434671204175066 1.9340681795825099 +4.672018068449205 4.741147342879089 2.706600955206819 4.731860407532064 2.0264389223008807 +3.4459085507462532 1.5799811001550825 2.6823005167201064 4.962579987894285 2.946414722595592 +3.036057459402855 4.857227478054277 1.108793680103144 2.4897188743358223 2.285522834911387 +4.399626136468811 2.3595683548334048 2.6671706349593647 1.2664957077084997 2.4746163347558325 +2.9239674152839443 4.666286051978762 3.902477624609772 3.7796340544669658 1.7466438602358294 +3.8575041688496183 1.776244756039881 3.0189034924104536 4.007485390373141 2.304112608443572 +1.5650581476763712 3.962985311111129 3.388211723743224 2.6758620961345154 2.501498885287085 +4.0363018140948785 3.0125296569844924 4.192524870873551 4.416763160184028 1.0480420984232182 +3.1535806635951222 2.3015470900287665 3.020243889510598 3.917878668225111 1.2376224813900676 +4.426167470113044 4.381700760422982 1.5339105534868231 1.3818764329654156 0.1584034787287771 +1.4875049985365467 3.341732230179116 3.6427263570321373 1.584764433415995 2.7700840972105376 +3.948711919222966 3.414387167511636 4.862292322691318 4.286550791115783 0.7854815411404125 +2.551484737075962 2.524050851269723 1.1870324356481108 3.3073399883819867 2.1204850238260935 +2.4690503426663657 4.575928710360353 4.2771453846803915 4.852668794341183 2.184070431859848 +2.689717443102132 4.816448614743269 3.400682947230675 4.7323391321501616 2.509241652624236 +2.354132897434187 2.235263542757013 2.300778222665057 3.7302309406099905 1.4343866272109225 +1.6664980803386928 1.5734202621830309 3.028438395630931 1.5530510943914897 1.4783203877682336 +3.001237015720117 2.3804658751570202 2.585584263970643 3.967712015735236 1.5151349547660287 +1.086873759983559 2.9504427853996784 4.273841252639116 1.294184339112145 3.514433785806678 +3.173742478797213 2.4781343966994593 4.821175560055114 1.2044513589946937 3.68301025662648 +1.6197339618238287 3.4458856786396606 1.4926980820817786 4.1942993951092635 3.26090167704904 +4.324801959765951 3.189676533867181 1.9003729669035176 3.477176283155143 1.9428891967026805 +2.070991775016291 1.344703041694021 2.2287783432786408 2.5176233733360918 0.7816180496506954 +2.114507142942246 3.4049521155533844 1.3733072485735711 3.4196053714936965 2.4192114903835487 +1.8184707613415596 1.7886180780040077 2.3416632326699327 4.320405776271296 1.9789677199389701 +1.9555208328627973 1.480731169809908 2.8571103420493276 2.761143930712621 0.48439113972772274 +4.601848976218773 3.5320191523793674 4.64742280942181 3.984119569024092 1.2587720368273068 +1.591522843627073 3.748509733788794 1.2904382548749518 1.983903424838993 2.265719838436074 +1.867423849028122 2.0845189424881547 3.6536945356514723 2.7392346144714286 0.9398761764450847 +3.2326720688771133 4.141068269553972 2.753669929518987 4.949887795480858 2.3766692180811084 +4.812776097726369 3.680739715335332 2.5017487449489293 2.0798835629072734 1.2080879946742396 +4.196449644838143 1.2650700490497342 3.0072936157287997 3.779508193907274 3.0313861003435334 +3.6991390254352874 2.6880048612966956 4.164336348523296 3.0443143170162994 1.5089206900792727 +3.078974542211272 3.4173081675006554 1.75235790975008 4.2861291276688815 2.5562602032569344 +4.1707529296650545 4.652830719828871 1.875451860467472 2.351800485791121 0.6777219257313126 +2.08245006408676 2.9020043323284455 3.1877455235596015 2.807794787111967 0.9033447629339887 +1.6526640664499959 3.471717085677572 2.1965291085509904 4.506339219289135 2.9400980654442668 +2.8358379515570045 4.115168798313446 3.0255156771645604 2.329596121165829 1.4563624012875456 +3.029663621923077 3.6701857744841755 1.9663786069004496 2.0875322470963216 0.6518794615987025 +3.576660728360268 4.257834622086851 3.122402340520509 3.8762821852103992 1.0160377422735278 +1.8997307196850448 2.3687007577590897 1.5705437024813027 1.009001340481813 0.7316165122050875 +3.5004373611927817 1.6684583095457879 2.308343052180783 1.487693420352334 2.0073896143732504 +3.5854309356290988 3.1464020429337283 4.975896883657968 2.936186292619801 2.086424133251576 +1.2858028770525118 2.97241847472093 4.2875405426727005 4.614073582636653 1.717933642631896 +1.5380884615778223 2.4597111125889635 4.142878785214608 2.9058589834756754 1.5425972581173062 +1.114094879801721 4.532373908206456 1.5262570000640343 2.3663376797110205 3.5199953216371975 +2.7544687811156305 3.188440024810369 1.3588067842982525 4.105288186507875 2.7805559035986476 +1.589243185833681 2.6511285345268236 4.843080339563993 1.9094714575473057 3.1198816590403484 +2.815335807945218 3.283622953880849 3.521252640403625 4.2274982624060575 0.8473934916236623 +3.016964503373937 3.5377491153478857 4.57002995502962 4.172392688850877 0.6552343149766812 +2.502309435816544 4.319474555251364 4.4877949463318885 4.1902762477017665 1.841359945074597 +1.5630031501449881 1.9164336129043642 4.934859392034191 1.257143828211 3.694658964017334 +4.602695364636949 4.430665798797346 1.4943597890916096 3.3586010030614544 1.8721617118685883 +4.739485261344795 1.9351827910235317 2.443673991085973 4.4328507172821485 3.438158866761464 +3.6429725982104446 1.565575892182633 4.378969206416274 1.1605707130083989 3.830622134403925 +4.854624952945723 4.379921864570691 2.185364039644299 4.569267606276879 2.4307075589458167 +3.1367429908151827 3.232334849722539 3.6941110081944375 4.329628709393868 0.6426667503669161 +1.8885737580166917 4.484646170692945 4.070793799921832 2.3054583884948507 3.1394268723282552 +3.2479638503742265 2.4255984877287853 3.518253914337418 3.1655419451065954 0.894813121784461 +2.8400195368711136 4.063984903882751 4.075707002495866 4.018037910612783 1.2253231997324432 +3.425708648891852 4.1085492305563704 3.460978184744626 4.631815795590914 1.355408414810894 +1.2277322570102784 2.8701649870601296 1.3462926534006883 3.515998575982818 2.721251378176404 +4.073925275329506 1.5915749508370904 1.9263745148010325 1.0944953363183028 2.618030958774304 +1.7285917933101116 3.733282108549744 3.109190218021394 4.411749571486311 2.3906995062772984 +1.7964578221113836 4.898116163166466 4.034180479764592 1.5115134985611318 3.9980161533804166 +2.076676434075616 1.4674887707919892 2.698089012999855 1.8202068568523013 1.0685441914957203 +1.2782599746322396 1.6840206480923197 2.966266980171085 1.4898866954228436 1.5311239235672844 +2.9578389151708295 3.793486884569498 4.895604654535035 3.0450659747648614 2.0304681563830673 +3.0818306429923794 2.0914589399418078 3.2215915970862254 1.9206227993895997 1.6350400370582654 +1.0353222442177477 4.400208618079797 1.5484602305581197 1.0918983087484357 3.3957192312452813 +4.5568682554093245 2.525363845564813 4.137191937211787 3.2305853715108572 2.224622581965249 +3.3913090652276945 1.9923229199098125 1.8343365970282628 1.32470281398516 1.488922035437118 +3.4026557508723156 4.783617700224445 3.15665915624579 3.843362944289902 1.5422768876153743 +2.8847955869147057 4.520965114355251 4.250585167253551 1.9357682021273015 2.8346831047863734 +1.030823451978713 1.1146182424410602 3.379187581745815 2.965555929565742 0.4220340159203351 +3.9999511889393897 2.8357767201450566 3.8832338040634875 4.983607566941876 1.6019127978213143 +3.517349793736025 3.2993655748610284 1.2918996495803827 3.426306596329272 2.145509294784914 +3.6420115692244965 2.7222323865251403 1.624872867372543 1.9792752360394958 0.9856950765038053 +4.366420274939792 3.7925786565960915 1.0404663610003992 3.786583331619778 2.805432697333349 +2.7335222836802093 2.541664350464707 1.5580863989049396 3.7965731013662767 2.246693611428571 +2.1178415716574857 3.2746640586860236 4.86666237197634 1.974448748030397 3.114986021322314 +3.0765345763429255 2.5207580831969314 3.7045520940138053 3.703443526707441 0.5557775987345405 +4.287795587469038 3.892210898235485 2.090422373046978 2.85610896277054 0.8618371076012596 +1.0544983964992993 1.2616151080920237 1.9125183902800176 3.077924355924688 1.1836673506442468 +1.165555024088584 1.331742757406071 2.2335690014529876 1.1205376095223794 1.1253698246035353 +1.1456238108352959 1.6748079955118569 4.622718237228916 1.5902205733756642 3.0783238917611038 +1.4315862924875482 3.055534653476788 4.7312395193191055 4.451813348783354 1.6478128728529564 +3.10949833537982 3.2442796227175412 4.49160592143622 3.9663316405606146 0.5422905730010411 +1.0702543846943389 2.800116257138201 2.8983751995771314 2.6042230890251434 1.754693010722153 +4.67421934973755 4.709587975660764 4.8916263627521435 2.5705349326158995 2.3213608867971414 +3.345390817678833 2.1044576475778145 4.2660409617731805 3.789568846821972 1.3292632579677515 +3.4495461130712997 2.1740149149173593 1.8555361962951769 2.171243459241753 1.3140208953213968 +2.207368521141926 2.9798461329668147 1.291850704510355 2.541338998982182 1.4689937572341139 +3.3537936471431777 4.901976840002396 2.184562131969464 1.559479232803941 1.669610682009713 +2.2020544965182234 3.765212054394771 4.9402772969377535 3.7789040822829434 1.9473698401855308 +1.5280137512894045 1.710279293450836 2.1656905430989646 1.7737080289701996 0.43228580735678557 +3.735192925864771 4.203677836814897 4.6015767313936 1.4829508103962166 3.153617882195737 +2.805499236128027 1.375117028051811 4.2507445364065255 4.714901279712503 1.503806750728764 +4.552308725061437 4.844041784080993 2.355705267947017 3.902527740619976 1.5740927354164986 +1.1667138855116796 4.1035093221056345 4.782049932844439 2.399915845484565 3.7814455234157394 +2.7763826994365655 3.0073233725136217 2.726157861718753 1.4926746330835523 1.2549161206254396 +4.688379263546692 4.8748074116908295 1.8433069367294688 3.466984865227208 1.6343455784842944 +2.5783641663247674 1.4759967559125782 1.393932011798519 4.1418918606443365 2.960827120655241 +3.2547412408894556 4.320076368331273 4.650847110390868 4.138920083908692 1.1819510202222239 +4.925507576867297 3.362581239275583 3.4712503776683628 4.20673110340832 1.7273304937599003 +1.1751851272810323 3.052987778620625 2.4985864793515993 3.7516242385767646 2.2574867493347615 +3.887462168064373 2.534758913360329 3.0885391989021347 1.5133891537072444 2.0762716007700863 +4.296473696412113 3.807547568733027 1.6700510468934073 1.8028787173462124 0.5066477557092152 +1.9536775635921875 4.894955484821071 3.6607959209399787 4.258979740958727 3.0014895789325546 +3.1198050642560724 2.2903108596103112 3.3785556280292317 3.4612046765470588 0.8336015239680203 +1.6125692090634685 3.372650299670846 4.424449160750207 2.161616338240898 2.866757371690025 +3.0212123684924106 2.9271461560747514 1.1387939237689513 3.1888227260972637 2.052185796338689 +4.408923983525508 2.696255552247284 2.737200536336326 1.197418132996646 2.303076856106095 +1.244547413002636 1.1080533389288454 3.0573524247648276 2.995726398409204 0.14976114109356076 +4.441195932253359 1.9146710185674305 1.0399959478040226 1.4560946552750957 2.5605597579113026 +4.739522949165193 4.557233403891164 2.7390500925760044 1.7214902942238761 1.033758879787079 +3.1451523308032567 1.4663369297625266 2.085759812011892 2.60312530361745 1.7567265588804106 +3.764516940601964 1.64192058139098 3.6634486425236816 3.0534267399886557 2.20851579702482 +4.6539031953541645 4.356560654128618 2.2574233038122284 2.4481605823124473 0.3532609463727004 +4.012684232258932 3.495453957227946 4.387851337559916 4.6092466948736615 0.5626215972114031 +4.072969551937538 3.6015132266960106 2.8675485986492695 3.2754145912115455 0.6233985358493036 +3.2071291398798545 1.2794094249948906 3.6192368381064086 4.611606974220556 2.168156310372335 +1.5116193667258844 4.533669879511219 4.79110196317601 3.3136594709340597 3.3638706306438437 +1.4766109587497738 3.4415535903941468 4.826705832212792 1.7298802859481808 3.6676052145304054 +1.0464663274066353 4.262022973087718 2.743086745407598 3.0713257366545506 3.232266291158356 +3.888968826052168 2.4834702524017045 1.3019784504422245 3.592410652434389 2.687285975190613 +3.8158880933252557 1.1417313885220288 1.204923027344953 2.336837225981955 2.90384982995335 +3.4047361942449004 4.7891389024326285 1.1360075279838746 2.3795913564737377 1.8609329909803365 +4.392910369134134 4.072332281194656 3.0701280992676305 4.2588562644988865 1.2311965567207372 +2.3065787725340434 1.090072025037974 1.3620569747899265 3.3881083212357326 2.363212374108245 +4.88183417911803 1.157789981767758 3.592822244729322 3.996830371641906 3.7458947863534084 +4.063253499569951 1.714348156822048 1.9421535692613041 4.951554594894635 3.8175713277255983 +2.7182007228301264 1.0231741332654951 4.084315632073096 1.7870814340871024 2.8548905582749504 +3.135866383422424 4.585673343242622 4.432082560937854 4.776331301953908 1.4901165781354904 +2.4702479657418466 1.0092507219911222 4.303612295715805 2.4402457071762975 2.3678361407691573 +3.809836138981451 1.8006386308270406 4.710313276562168 1.0891534869033395 4.141216348974763 +3.119480488616642 1.8285261844472536 1.1964003145449733 2.0695714845981925 1.5585220266860453 +1.2896187266204269 2.0142787081380207 3.4296394859099073 4.531997486986631 1.319213876272892 +2.2407687843411366 2.687123949805752 1.677881881996734 2.981411806274321 1.377832790009033 +2.7309859745721026 4.004851611325879 1.734872405826795 1.4487759839145755 1.3055974966018737 +2.757390553129341 3.4534999596176674 4.37935422272608 1.7966059891379436 2.6749124740641834 +3.7722945197066364 2.942734379183726 3.169324118088379 4.840835610238022 1.8660441300067685 +1.8263965480064428 4.917397645667281 4.249543558948927 3.9990917287429966 3.1011310686576934 +3.7827348241401144 2.525149362721451 3.8904905028538006 2.2487098765498685 2.068082401085248 +3.1409879022299143 2.4199118596397584 4.95736896861732 2.905532032958453 2.174852976578291 +3.5986601318299214 2.309300514416317 2.686992565415821 3.10603649140803 1.3557455642294833 +3.7657372042680772 3.550011580822469 4.470971876263605 1.767039029664741 2.712524724961458 +4.852860357671489 3.0625206707818924 2.962181271566076 3.1622320824621655 1.801481757163286 +3.6054472051347095 2.667213153807656 2.841736927059223 2.7734770086425287 0.9407138520994736 +1.326916899803507 2.591320722310806 1.6629486892422158 4.514571250967667 3.119369849971737 +3.9067398706923537 1.9861271774490925 2.3740416944780076 2.5358937145096956 1.9274203469496403 +3.1233223319460692 3.305820244600453 3.7121343678680585 4.866929858430723 1.1691270731392167 +2.2039740576202926 1.9137128394011111 3.2482464792625962 2.1720741181158596 1.1146293221058854 +1.1067581265614699 2.467130648894279 1.7028467153074893 1.1418259492174214 1.4715154431749655 +1.205890375103818 3.4430539056520955 4.815479640747092 1.950078903647389 3.635302194671958 +2.8532830748420737 4.798981888679101 4.613637533444581 3.844521024591721 2.0921959942502584 +3.229398336614306 2.3239286438178075 3.3488026518956855 2.0856562658443987 1.5541602739638571 +4.380342087372867 2.965122820140358 3.6939846124320255 1.4037581534319612 2.6922077943297937 +3.373974736790793 1.3924526074115424 4.527960337277135 1.4621305350028089 3.65044412718961 +1.5212649181289857 3.2446509077206307 4.658374202332071 2.430339250401049 2.8167710265740538 +4.707959668881847 3.3981003809738017 3.6643966765967257 2.9003639729996675 1.516402758598388 +2.4498143162527506 4.808725985534736 2.1301038654558284 2.258318632120335 2.362393551012523 +3.395063832281836 3.430895990503977 3.494303784279405 4.90698511716238 1.4131356947720468 +2.4740217806135125 4.615522412357892 1.76255767427961 3.254061794849507 2.6097144474901004 +4.280062655405667 2.6064773718481957 4.372842009462374 4.8408528114681335 1.737792223522195 +3.8564102732985552 3.724070512530257 3.945904555660566 2.8241602257216156 1.1295238616471965 +4.4334937960954 4.711354484775713 3.3948504926043217 1.6782355574997143 1.7389575606489347 +3.345180618081767 3.3834688677642473 4.598223190147291 2.8931370023221357 1.705516021025856 +3.3081104879843997 4.179617331891244 2.1185433322524485 4.774990856155599 2.795753498831334 +2.729454219413151 1.3053959230298697 3.445580731470679 2.6601429927897606 1.6263008555744682 +4.327175284468679 1.9067970956216267 1.1106480799331746 1.1235856585534942 2.4204127660353913 +1.3102832683485972 3.787863079914271 1.3602394154742776 1.657059476663426 2.49529634941466 +2.425949495708358 1.5961951320870074 3.567538063965729 4.162268526305924 1.0208803195203906 +3.0561141084924643 4.606809616511917 4.436362903712672 1.104732486378151 3.674835750928237 +3.932870113454453 2.15942321186987 4.542134007462948 3.935350104772381 1.8743800621283702 +1.9324249100596358 3.5134052616089306 1.2371329832030171 1.4220466585951876 1.5917575001651392 +4.976535304918981 4.800274765809112 1.1780935555936094 3.2698792314270313 2.099198678369722 +3.006342690649475 1.7125983157495073 3.0141519095552862 1.4954247843149333 1.9950705723172137 +4.57503203708059 1.4322894431789748 1.6996571556714817 2.2984045071136765 3.199270135887637 +1.7364001829338402 1.4631315017562052 3.7962646565867524 4.730049769614036 0.9729493354866636 +4.197316938467248 3.0560237940112973 3.631200515861198 1.7689641243791718 2.1841415749310182 +1.5262903403111938 3.320652881831067 1.3233305162368363 1.6171978246295655 1.818267011566686 +4.939409880379143 3.5832585630727345 1.5894799154621566 1.9564608177832579 1.4049275348217494 +2.3016921185508212 1.9963260275769774 4.871419309303132 3.4212985329842893 1.4819239911102757 +2.215558602778233 2.2823914706634563 4.800701979496214 4.022170319131789 0.7813950207286663 +3.6980454469292594 2.347315150688807 2.72552343837075 1.4652382541454054 1.847374103629184 +1.8156275501901122 1.596483246404187 2.822300717191283 1.9838768144816594 0.8665903683498071 +1.982162430926516 3.5051463658119357 2.034824320670399 4.918514104340706 3.26115728451781 +1.7965909768873898 3.7154822948272344 3.503070681095528 3.3978521836296296 1.9217738738659902 +3.612348854540427 1.7878491317593 4.825214406665479 2.5327948400141174 2.929844143976677 +1.5727320612337121 1.8380633364307806 1.3845549007287792 2.805625208586522 1.4456284119622864 +2.3729551548548615 3.9152004885512723 1.819863439302131 3.3910477292310928 2.2016222978131217 +4.9679066664880835 4.868897496938253 3.219047344575721 3.680370962532599 0.4718286724434734 +3.1826388064145874 2.596288731104503 4.117567794016629 1.4845405897305337 2.697524544712576 +3.3792975954194984 2.238853279196719 1.573913187456124 3.748096035677371 2.4551342724796736 +1.0460947475649385 1.012818709213661 3.7319508416842186 2.1773646659154693 1.5549422730827214 +1.6720735530089441 3.0045738976044656 2.990472317161145 1.1579903104262654 2.2657333191164124 +3.025868930618792 3.1299704000908863 3.4479228624791367 3.7352720784658486 0.30562507729966704 +1.544182367858013 3.23989879783355 3.0548052560275747 4.187174426224682 2.039047362986418 +1.998734127134484 3.5582821995233953 2.503822250659018 2.947057167519132 1.6213103902757056 +3.199366163953218 1.4095719890363676 3.994132545674764 3.7042183217605995 1.8131225677802485 +4.880173754480014 4.3132456049091985 1.5972714719911054 1.149273378174287 0.7225716703824552 +4.354250931025242 1.292420598965962 4.131255378977738 1.6934412068367926 3.9137888190613306 +4.13668420714234 3.4376276243837727 3.3014515412375305 4.430966320187889 1.328338714999064 +1.4674061309419693 3.3717118825043784 1.1469877796988777 3.0105495472741537 2.6644404397550265 +3.936602084093666 1.6721802022195722 3.6581240340354926 1.8894138937829053 2.8733155098844505 +3.980647671653324 1.527868750073416 3.5177531853608315 3.335580726046516 2.4595347615106644 +4.839245796101674 4.132711483000248 2.344589085995631 2.2595502145563247 0.7116335751251306 +2.1397200375763155 1.5807512268857846 2.7124740543668127 3.157754035610497 0.7146470408678415 +1.1599380026604473 1.2352192827360229 1.8243145615706036 4.115447895974378 2.2923697841199124 +1.5426770489405586 4.262228272738476 1.6065106744240283 2.685978126464476 2.925954346683394 +2.6086790595571405 4.511395470155925 1.092190151783091 1.1142591872401173 1.9028443923473948 +3.1165716582959315 4.213568558402972 2.62684479927675 2.8703671599128167 1.123701623641356 +2.2339761204191433 1.9501422941999378 2.229911006793026 4.881992955240313 2.6672270811061796 +4.159283726821232 3.37107272743988 4.221659217928851 2.297833043766384 2.079034325820125 +1.4673225714039804 4.49936114242697 4.098821937319782 1.296480023576072 4.128725965439689 +3.0352726165548813 4.799055942147849 3.5764509459588236 2.247736569690498 2.2082602911210247 +1.2692875367286502 4.0954625152992445 4.931309172246996 2.7013281403210474 3.600011168350456 +2.816678359891631 4.296077473857219 2.7905337007076074 2.5739006055218114 1.4951761221782347 +4.370818204689435 2.837571235965809 1.8148662709386438 3.710969471057319 2.43845311880308 +2.5533335879481767 4.891008303118992 2.1968698036572323 3.2530073594641338 2.5651802296787514 +3.8038450195208307 1.187120711565635 2.3280647300120494 2.0425709959459724 2.6322524149546505 +2.7857017324170656 2.9357770420995783 1.9815307240477438 3.3275656562165583 1.3543753679076591 +4.569178679225807 4.503698808208789 3.91427557418211 1.1442165643631679 2.7708328227064696 +4.801591874773232 4.384910162106777 1.7621294713282754 4.197967153624973 2.4712201164945222 +4.039527622665066 3.6423508176317014 3.225509706945924 2.9075164349630724 0.5087918390490074 +4.931758165349546 4.701726210828406 1.7845124561948054 1.0283001245995274 0.7904250695401699 +4.689195291466168 2.630347377858508 3.432835972293217 2.34251442642463 2.3297329900123493 +1.2928505912244201 3.6412595827765926 3.2017375101294725 4.09123118075016 2.5112195805379813 +3.107408413510723 2.516187345249424 3.3354447922020674 1.0448133114048992 2.365699670789819 +1.0661350599137407 1.8874363999615742 4.023175178377366 2.6118760437794224 1.6328812383272926 +2.6924760659418627 4.535683039131422 2.073836293173921 1.4676731762030002 1.9403210225090384 +2.7140065813688485 2.956057921489348 1.614116857692148 1.3021301096026758 0.3948728684495473 +3.246308988587604 3.639209227038039 2.3527466647068307 1.2922792359625381 1.1309119173489772 +3.5933301514177605 3.636450691718385 1.363735254938705 1.604959768160136 0.24504825397201702 +4.792015923048927 4.063587283516325 3.406753128906544 3.131013303454826 0.7788714491053459 +4.382183968997348 4.024412407633928 1.8135794755552954 4.29306342159102 2.5051628946576123 +2.507968094329907 1.3058763993227003 4.736216648507438 3.4262904391262707 1.7779007613556534 +1.3564434577550917 4.289743346791877 1.2656169955449736 2.4652714900190076 3.16913539394185 +2.5023043013633384 1.0388780921156742 2.8604239250734556 4.9569275556339445 2.556744755126389 +2.6498422434050495 4.278564589434099 4.528672503001657 4.725158809676419 1.6405314227911212 +1.2350956402103566 3.289588130142902 2.6927575652571774 3.2763240041858057 2.135764308118541 +2.5630113069077796 3.1537527469420596 1.4200472819155938 3.9856313137302433 2.632716633683938 +3.4257495345630353 4.525118353742004 1.4541928645872364 1.74405192394625 1.136938905515794 +4.24267592567484 2.7613050999649444 2.3102896087318228 1.1452181965111934 1.884635486994286 +2.3307939859077784 2.388831225300604 2.4406969258684903 3.8678733297903287 1.4283559812132305 +1.8129123732492003 2.217583749133242 2.072356408195113 1.9608293480598125 0.419758511054042 +3.546792750718157 2.1497178542603597 3.2337368228135768 1.9187971361594207 1.9185631722335064 +3.9972918231920365 2.2605845009101215 2.8278167950218127 3.0530252488022818 1.7512484606479484 +1.10245935677847 2.8241740147735612 3.2965180579232034 4.375056715617953 2.031636532379044 +3.432273130016882 3.737043900885435 3.956441523864286 1.8220407416304036 2.1560500740883595 +1.451489787751648 3.4746696275740674 2.5479736057982616 3.224292310096496 2.133228458006201 +3.4231311048225956 4.872720983310871 4.7724964161689165 1.2699866830362119 3.7906312464423366 +2.8744020993126664 4.41060878502092 4.170605788077789 3.8578138357448433 1.5677275868782157 +1.4315007285275114 4.15260869218044 4.471645199258223 1.6194161333582096 3.9420349052513792 +3.9750219273649585 1.7930750138023894 3.7841224844058465 4.846606888884573 2.4268838957324954 +2.0466475989105866 3.5500741553087902 4.318887087597812 1.4962187905442375 3.1980850091382322 +2.3563558600092476 3.274321772110302 1.836890373652782 2.1447069449327016 0.968200628658155 +3.8975125828413097 2.7049877500360138 3.917613627646466 1.2587530655576304 2.91404443437101 +3.245817645524306 3.80799977789972 3.564310294759716 2.254151725226778 1.4256802682518832 +3.761043236482441 1.5294718358974877 3.3632538462763377 4.284347443603611 2.4141922729861403 +4.825084695004016 3.6215896991186387 2.412197123289308 2.6640592953479083 1.2295668988856276 +1.435686662929211 2.83803893001208 2.0030001973663434 2.617023363859533 1.5308874321721975 +4.62477965935129 3.288303493132372 4.383716645344643 1.9448039646998083 2.781090362911891 +2.372168502395406 4.970731734385327 2.856523638342077 4.555483234922162 3.1046730232766007 +4.38166652925669 2.751900449583063 4.296417699052483 4.161572109392166 1.635335074993985 +4.556967143646087 4.416812415499452 3.935814785598622 3.224902378808624 0.7245962999835179 +2.952129144451934 3.221012467052123 2.883542832624182 1.7115478751872444 1.202443521097821 +1.7193429121549761 1.173218003139652 2.21224145534804 1.1928764384283737 1.156441720955547 +4.319837412278929 3.7360191223153763 1.6561046731650393 4.172307518649899 2.5830448225538154 +1.2349230353729128 1.8612592746130607 2.137897872432488 2.7189077435828732 0.8543240339354142 +4.978362176512393 2.9669302056847475 4.738138292524374 4.002084162943017 2.1418763397874665 +4.046098985030639 3.556939839307709 3.832444420279374 3.179333942843882 0.8159840473810768 +2.3556534487840577 3.6405449126160643 1.7689390616049976 3.987382977544656 2.5636769457164537 +3.7586024900822124 1.826631443108258 3.5857213456915606 2.225245363735226 2.362923406254568 +3.196407846643071 2.2969716827653004 2.5405740339620593 1.0298551349066596 1.7581970893089087 +2.117305667835138 3.0567086245348483 4.387184483833306 2.965870208514892 1.703705427672304 +4.368735852419403 1.6016256728005156 2.298385177399117 1.2136739047303968 2.9721199994625156 +4.125038715186276 2.0253739666441675 3.5902987749065116 4.048866940958717 2.149157234635679 +1.4250523593343036 4.434581419955832 3.9054102172191465 3.614312446953247 3.02357455317035 +4.671123358445803 4.904342164561648 4.8073641314872235 3.0787486114699782 1.7442771074489831 +1.9858643874935873 4.244420407717038 4.142373641231452 4.443694522980277 2.2785674381649277 +4.040843655925785 4.646353793120829 3.471596089377309 1.4960358154940416 2.066272228432568 +2.233135841088643 1.2658090516890463 1.8408360129370496 3.004635310660956 1.5133241301429081 +1.5712029415377344 1.6879152037774872 3.893515980722603 3.2052492571491227 0.6980922825355501 +4.490536864809424 4.414799186383278 4.349642232693743 1.5931701768906437 2.757512355431385 +3.165081134783068 2.242407532370518 4.072423621672147 2.010188123447011 2.2592347878715104 +1.5489351441956698 1.9664990397548223 2.153014913084032 2.327126871797585 0.4524097490567647 +3.067424346831255 2.2383673487081506 2.3175658708439455 4.306104207208856 2.154441974463415 +2.908847784912024 3.279403868807847 2.6676682696849605 4.449207189298851 1.819668303128687 +4.051124519948594 1.8912484379037315 4.255079420920392 3.4652963663011045 2.2997438907741965 +3.7141124678213586 3.4628918295525772 3.63965281638885 2.2764486244346975 1.386159254217764 +2.3946479419613285 1.1821574858716506 3.9811938924968695 2.04891908925426 2.2811880723331033 +1.1128750486091152 1.847835771542154 1.7282785317849663 2.8450465362059076 1.336913624716491 +1.2642738882270765 1.0502080031650434 4.920373536784215 3.513287255376286 1.4232765038718882 +4.054113134512985 1.7508719025807973 2.6520999605407556 2.187828011092925 2.349567750782384 +3.3831221582423416 2.3208109563206456 1.9528256100526136 2.610728600622426 1.2495364879542419 +1.5766040503532142 1.8876354043776495 3.3645297195689383 3.0988676432445748 0.4090438142586264 +3.051843126618672 2.759642141561558 1.2003391530053635 4.619732007376772 3.431855024355574 +1.0790773595320484 4.0121076739120864 1.7732738637119851 3.6359848843086056 3.4745300648180275 +2.0041467936357935 4.415732966881384 1.0672607284597992 4.543503745777205 4.230840742268294 +1.3764218310856298 2.79517560545665 4.891055400199311 2.408656026587233 2.8592252311424597 +3.41169912609395 3.3273075768964615 1.5924171109895808 2.828000803640945 1.2384623511120285 +3.7338884073716194 1.267995309533592 4.081441687366828 3.421887143697613 2.552575359522208 +1.6487544092806368 2.492711292596554 4.154441342222816 4.033767394797778 0.8525405694062058 +3.6379995777516183 2.286103072593282 3.524161176993884 2.4264114604615146 1.7414587565619295 +2.5843099919115966 1.8877555782184499 2.381935393813652 1.0714218048836002 1.4841273254022809 +1.4177388373336264 1.7200112965854646 3.4991788198375233 4.604818624939403 1.1462146475455097 +3.813890426899532 3.1433759357378146 4.632775936240279 4.532498400727338 0.6779714352289525 +2.3366864762612183 3.4653881259206347 3.089842892258421 3.277865913038283 1.1442552470000182 +2.201132333769495 4.453358961861062 1.0857223255001243 2.7691052301687984 2.8118148566389376 +4.2125727188449655 4.361644173824971 4.271523426749074 1.36784383990527 2.907503644321578 +2.8796227292150283 3.2854203475729964 4.754830505973412 2.7591115490853513 2.0365573554278718 +2.1126011484027747 4.955617650137676 1.256371439171355 4.039519252501602 3.9785241710943384 +2.0710475453801487 3.40936826406452 4.214627151400768 2.303094488347332 2.3334651203692784 +2.328794795906497 4.360662500033789 4.089681282310279 1.0054632986069127 3.693357136545932 +1.706982320194688 1.472873751817683 3.1382895862721947 4.791792487038331 1.6699936121523211 +3.8663580712613137 2.940804204172352 3.6617306773125904 2.3651047736048536 1.5930752320745045 +2.206159163380996 2.8450530544186825 4.816286954895811 2.4953359046250747 2.4072804534906416 +4.324424653495205 4.634462647624311 3.9473029781549704 1.608792206184115 2.3589735455123964 +3.57393990597598 1.6381958513751553 3.6704747293288813 3.8717424341754745 1.946179265621915 +3.5654111821500374 1.3294706684004907 2.37747247781654 3.658676220155956 2.5769968976331947 +1.782071365348139 3.3698214456493987 3.2420603832920625 2.28655435657932 1.853089874933493 +4.4364144118109055 4.71357785947464 1.625548395402752 2.669484340180067 1.0801026958206117 +2.190911757511434 1.5184296173175569 2.7242523761680446 4.380836212152355 1.7878764595251622 +1.1625409323907432 2.340605585346735 1.9765774469600421 2.6419381359591223 1.3529749343611848 +4.918757045507645 2.131984367382358 2.735798300473333 4.239654787370876 3.166652221626083 +1.111194286791978 1.7659886149047477 3.5186036059154397 4.832607538889622 1.4681151003924293 +4.60330680140564 4.305257191545902 1.274627173019447 3.432976139085249 2.178830839981585 +3.6778795084614444 4.973149388762732 4.309212203758892 4.129702320646115 1.3076497470465376 +3.928083588079347 1.0828656503645635 3.9535454409093758 2.2524107076857516 3.3149848406401166 +3.7407379307227324 2.202176740237569 1.8437327933871726 3.7287283522765327 2.4331828525410364 +1.9240727117535714 2.0961191889036748 1.2540355678595652 2.548684092729127 1.306030165519424 +2.4413223695172244 4.126359979194783 1.4902176046759568 4.3031634869604725 3.279026727962014 +4.642647043774604 3.5053023864378097 2.1331291751282824 1.4857428785907292 1.3086870850272643 +3.8315694580964266 1.349509624443765 2.0300293241790737 2.9841446196487604 2.6591271152167746 +3.8691312708631056 4.1225048840323995 1.830929937592919 1.5137678360703082 0.40594332916393877 +3.8353293532267534 3.685270199775981 4.323505683031227 1.322438917867594 3.0048160473653085 +4.659821241357804 2.311367677051024 1.536837327962862 2.6873898980079156 2.615149204183673 +1.6809739664550385 2.546947207183614 1.9419692740716141 2.613936765745154 1.0961067299875413 +4.971441758101688 1.1214194441315573 4.261539504903472 4.552947306332852 3.861034877439185 +4.798759438626 3.131750515100215 2.9124135207353414 1.2031094840332037 2.3876011059221804 +1.0876309629669176 2.4362322860431793 3.5870052319638197 3.601750474157852 1.3486819309126983 +4.13608360959419 1.0051162402241496 2.30552388852146 3.3145009614280267 3.2895275347245625 +3.5072945738482555 3.5295934248866874 4.727943511995584 3.945893773304528 0.7823675814758585 +4.995262132861665 4.042725219385932 1.3734731226338948 4.995213533234422 3.7449072316027734 +4.406553754897485 2.592555628239933 1.4565001796265982 3.68979728112479 2.877187019829843 +2.2025498099896583 2.021076858724707 2.9376793029978665 3.4550743159536714 0.5482973932751722 +1.9478900155854268 3.0840627775823863 2.3674188316385023 2.970110714144109 1.2861283179923968 +3.9599521219280915 2.6890502372916534 4.377094055215316 1.9627936769316623 2.728376425083798 +4.735163159754282 2.3955602499766675 2.3081045749990197 4.181867359816206 2.99745371093629 +3.7893777506334714 1.1525530907741306 4.078428820636921 2.9874833913097634 2.853595314092758 +3.183865375079809 1.7817471693809601 1.897824446241819 4.989011513425371 3.3943147978752664 +4.657221572504568 1.1087479994068192 2.752370132901942 1.7993154007247307 3.6742316232783256 +2.345371566059074 3.0460088237997422 2.4254409897392337 4.333226538032772 2.0323725704732487 +2.86247521999015 3.3430582069365835 2.8261879079004086 3.7953072310952547 1.0817357671501817 +3.069954970163226 2.085360208573339 2.339759619408138 1.3557816704230925 1.3919911812360963 +3.1860638704825206 1.9576858604572442 1.2639316275700105 4.921040833727032 3.8578958359800355 +2.233761324979832 2.675809449740447 3.3326710894220395 4.673626114989414 1.4119372950661708 +2.370468311981923 2.575443465585219 3.8929045358696928 2.4565757864496907 1.4508807980000016 +1.4866685059166787 3.2744499999691774 3.4852484476748 2.42581046380302 2.0781172999007747 +4.694072535045307 3.043701694064416 1.4444427075319601 1.8399155185283123 1.6970924126273528 +4.013240596459056 1.6076424806894436 2.0050031711324197 1.5918410695436376 2.4408206031545143 +2.858740645552185 3.2128135420207715 1.8899336735974508 3.167969444494775 1.3261760998098149 +2.4247905613729785 2.061400989200557 4.582646750154906 4.543823576016457 0.3654575488532696 +4.383981823066 1.5819758177415206 4.721917517991703 1.9805488005486205 3.9199923595397452 +1.8486643106890686 4.011131685920899 3.5885790886213638 1.81827809791231 2.7946790060125872 +1.8222923627858942 1.7977125343274856 4.51686280094647 1.8334816702471626 2.6834937042147384 +4.411637480872766 4.832844641960204 2.784064816017809 3.3411087424242725 0.6983648104663263 +2.798520607312554 2.6922411918937725 3.873646096605637 4.981690523533587 1.113129716694261 +1.5292431741686938 4.878051495914802 1.1664742466965015 2.983865436562713 3.810174262786324 +1.6857101353093245 1.7952751800898281 2.0855094847114697 2.434489152851767 0.36577494147776957 +1.1968008877662495 1.086295830166169 3.583354116211125 1.6476999628571694 1.9388059132238111 +4.8842615877680835 3.9218978514591263 4.363118551353878 1.0432552645880153 3.4565352889531407 +2.038334278618428 3.0698999426419094 1.802425318733917 2.5536677069408213 1.276124149536799 +2.3741481063389136 4.354357029156396 1.6066536329747039 3.104085397391606 2.4826456185067354 +3.56058216647944 3.2754379649479577 3.153729404835586 4.022679459356918 0.9145389072749459 +1.7230243266726837 4.506919624854154 4.173132883021851 3.262016062389656 2.9291990188575134 +1.8143829892790109 2.1591996814339534 4.1402744728500736 3.4664018418497515 0.7569695330724827 +2.292501043202459 1.3083156635287758 3.535110252356557 3.3332821860209254 1.0046668253327629 +3.2742249611488368 1.0640159558098512 2.19242466095151 2.155255942064234 2.210521513341426 +1.0493226532641167 4.110872409989618 2.740303182503492 2.4369857052393176 3.0765383802123902 +1.365276811666679 1.363919123194541 2.030095511342877 1.5212092068794343 0.5088881155897111 +1.5174959296199386 3.645726654963377 2.0166944522753583 1.1527987090144003 2.296885255192401 +4.873128426721524 3.1206046939776737 2.7023098613839176 1.5893899446077664 2.0760371323720284 +1.0285254789033154 4.833058675097254 2.9399250337070093 2.817658651636452 3.8064973281385983 +4.3605391813150565 1.830451579432073 1.5712559343176706 3.396635485159559 3.1198323316860668 +4.560128307936686 2.7878614300566413 4.696151647237055 4.916624550887896 1.7859278226386734 +3.367558147066186 3.0324612688271637 4.771427240517622 3.6672515357056756 1.153903767609109 +2.8201617543269086 3.474140442193262 1.1753642916027878 3.7294212727168814 2.6364550417105606 +2.920557009149726 2.8741283363375913 4.674087172208469 1.3611249802356475 3.3132875074615025 +3.241618485866269 2.254677858542551 1.0890393243208512 4.4046414015094015 3.4593740670993016 +4.949544054647139 4.332036852809628 1.104405303115823 3.735819559243534 2.7028977286744214 +1.2303635931312966 3.841421625576881 1.5569121787210958 3.191477317134665 3.080491395948961 +2.7231277315899427 2.9588898191550266 2.4855835457581086 1.226205434404938 1.2812560201960126 +1.3623209834191208 3.2608818815727583 3.5918282674747903 4.21248201065032 1.9974344927721017 +3.225051525546578 1.2076470508875512 3.444054549241102 4.7667140749796815 2.412332695836391 +4.6473108810305686 2.7172632358668194 1.823857338974253 1.5458416434170386 1.949968368866094 +4.331825136271673 4.511759315559787 2.1850679415284104 4.459750547411698 2.281788172987157 +1.622280060829048 1.972672207876292 1.043942590663283 4.478880288415423 3.4527629000774365 +3.3056543467833555 2.278724091498938 2.2864411199248713 1.8752266514306455 1.106202101027433 +3.9731307078353217 2.6110015482085345 4.0220240804784755 1.4466254707146269 2.913429911063443 +2.9621636865336396 1.3509107149483794 1.4568522661902068 2.922346668849691 2.1780289214490725 +1.3648173000815458 1.403445555614562 3.4860292944050477 4.089906361615146 0.6051112744180143 +4.179446775228463 1.5170591875528538 2.119280840784223 4.661330895319949 3.6810767645859057 +4.409293489573049 4.617673851161051 4.919695696623551 4.7847855947346005 0.24824002636004028 +1.1365830432623518 2.0615721862697156 4.898132041962193 4.87507084246406 0.9252765714119158 +3.106240206273823 2.1064799538059855 4.785528079682299 4.334435125464259 1.0968160355135739 +3.0286859536595956 2.859321042779629 4.579272281533985 4.173587680249435 0.43961854915003684 +1.5724423387916362 4.710843808585871 2.853137942681069 2.628101822875682 3.1464591274675215 +3.702223271908368 1.9250893162628975 3.1973316466026556 1.3118764313885745 2.590974037864157 +1.275555998379366 4.746426046461639 2.096814302311601 3.038598085074914 3.596372559142144 +3.1848988314306657 4.518844024885906 4.645382386934754 3.1598108668818496 1.996580206336484 +4.991725977126752 4.221530336349619 3.1263119544465034 3.7423812268952092 0.986277178853681 +4.946220881400901 4.578520353726244 2.542814098289159 4.17429771271912 1.672406189358815 +4.8791101071516945 1.1367768076365339 1.8798524932528573 3.709059986127798 4.165460187860383 +2.2944820092222633 3.4878445630957002 1.8200658415507762 4.179106462577882 2.6437070254934234 +4.692844811067468 3.33776631376775 4.2379315848044925 3.9953869632752146 1.3766138264876042 +4.459507742894148 3.5113968536173 4.851599944944802 3.7855665626197053 1.4266539281117974 +3.7173203558264443 2.663820211170717 3.1133152095527676 3.542629610649254 1.137617426808535 +4.280471066516813 1.079827254906744 4.499071751658816 1.1173205309342706 4.6562175773550125 +4.474512692328139 1.477932668285849 2.2246468586029913 3.45313841429456 3.238623680345523 +3.00024032276265 1.2792712115787972 1.1062950705947387 3.9625653860659336 3.3346686187222354 +1.3733131887041905 3.4307849412200953 1.0445800198209616 4.616359181441126 4.121989373080056 +2.1159639436628983 2.6385838481372135 3.559286721256645 3.4779933711401294 0.5289046921004849 +3.1992305744529395 4.403852290342648 4.708626111083511 3.8873002399699477 1.4579745076487174 +1.017456658384436 1.9844139848896702 1.565135044102897 2.5566592302320843 1.3849645060294136 +1.3120032929772028 2.7308560881880877 1.3975855640872146 2.486910892829894 1.788790911850261 +4.62199629276492 4.216671161128712 2.3209716655077917 4.618854632150258 2.333356935987611 +2.3802989818809106 3.871021590691459 2.6708415153726044 1.7206885960959384 1.7677795299269923 +2.011734823008383 1.8889355559669716 4.71377086364073 2.816841190106532 1.9009002725867725 +3.0017205689022504 2.4605212976507813 3.6142294782982636 2.981083910253645 0.8329285452772429 +1.3346258755959388 2.714872335795821 1.325217334467844 4.8237453753617405 3.7609544990354764 +1.047406293073355 2.0429070515664094 3.1961096478070177 3.2994154338566903 1.0008465644601012 +2.299157176183507 2.841086171891226 4.75070126774236 4.019488175038056 0.9101426390027939 +4.9419085789902955 3.3778611867121318 2.5480402934882864 2.4642299335170157 1.566291295299389 +1.3318248027166262 1.4828197122820255 3.136265292755343 4.045506521413414 0.9216935904118583 +1.1910862575121217 2.9783390770676474 3.99723905194365 3.935768168157742 1.7883096237963372 +1.1437850284780318 4.561617849383698 2.7076507303276207 2.048945406841387 3.480728931538491 +2.820972279633664 1.3859996858882075 3.753722291787901 1.4756855719782167 2.6923219795562767 +2.571394092547297 2.7395665024283047 4.280913928721899 1.014630988824964 3.2706094543535693 +4.32480513175401 1.8269763533263874 4.938006663190082 1.1526315335459838 4.535219231577378 +3.849805340740587 1.0932035315427773 4.070848613155391 4.220654517138079 2.7606693650889644 +4.815663532659343 3.994004183051391 2.3767368983452353 4.126648636997567 1.9332136922418561 +3.8889501989204867 2.036163323293713 2.7647386429878305 1.983882311196472 2.0106108070418496 +3.569311387150363 4.671782279243933 1.3864075364636124 4.61169508802673 3.408507277120236 +1.3677115499878312 3.873355231468285 4.930226727033345 4.770681110296709 2.51071803720824 +2.029210740171046 2.198633231373075 2.411293538647198 1.9757024529950513 0.4673794758274238 +2.152409909925954 2.8719759104461136 1.0323161433637371 1.904238893982642 1.1304974622489938 +1.920542679567196 4.71418135544716 2.208420623456661 1.581505270468019 2.863117166862933 +2.500645150980743 4.224045934694578 4.055178962706497 1.444654909065207 3.1280898478057204 +3.71580530028093 3.800915022003243 1.9701628646417815 1.8315041653906654 0.16269572707868218 +3.5910670672102354 3.4945238930752045 4.671993340504178 4.681753076379097 0.09703523543752073 +4.601215685474351 2.5109296150798226 2.4482826934201025 2.845722349671507 2.127734507979469 +3.4071882707791317 3.9435808119508824 3.834058528486646 1.3588179037298538 2.5326928571524587 +2.1414817900118823 3.9738507018092846 4.123604218656067 2.4501578404778033 2.4815315048492823 +1.436044335221136 2.7383598336755086 3.20139673614678 3.316340758546019 1.3073782106948921 +3.0888382724058996 4.546508439231793 1.951905324646909 4.24805361037297 2.7197608838456655 +2.605242188404541 3.3486996242206803 2.2722113513462956 4.074729827158391 1.949820969862174 +4.655901214825901 4.094559314935697 1.9958860364565827 2.5563247456709175 0.7932189328036574 +4.919572632466055 3.3267844944289733 3.403362983246936 2.9838026774047437 1.647120184719387 +4.227629480528865 4.072233208657561 4.517070812832689 4.553419949558208 0.15959091782488957 +3.050382853723696 1.3744641291872006 4.868944945485074 3.333144482630051 2.273188648783408 +2.832743469264226 2.1821364843168944 1.408674365890684 3.91022437084314 2.5847711457960627 +1.8118965432058416 4.568582446293954 2.427672114112704 1.92027415617871 2.802993017472628 +4.750982341530133 3.6617837551430354 4.904140359563969 1.8146066770714935 3.2759078033185194 +3.2174061839306676 3.0080790210740598 3.184142477934349 2.420756566432997 0.7915654811753398 +4.648738734802105 1.3041791359675363 4.014196898850693 1.1509105750213462 4.402781789094779 +4.870993754060638 4.270430751736287 1.9666431216241524 1.193627889972133 0.9788914485921635 +1.7145291245389935 2.0826572725941146 2.1252313838956853 1.2206225562640145 0.9766450042976921 +3.47219830486439 1.7334124920824956 4.22939063902657 2.8988382575918465 2.189462432304607 +1.536868967798061 3.2568199512190965 1.063607907283191 4.490870248191833 3.8346262580310966 +4.052674729036813 3.6616695592123514 3.9117173161243146 1.0816164244698876 2.8569837416010326 +3.0111827040147943 4.7549971192131615 2.471550282207988 3.727287368981264 2.1488984028453877 +4.334369179498198 4.181259777970741 1.5488461422839488 3.9687981133226766 2.4247907190044917 +3.4745459329161568 4.049649768306287 2.274415153024147 2.834214437922437 0.8025706578570355 +1.7033054526524154 1.9476405312494096 4.650886734573986 3.7386318370935636 0.9444091425912903 +3.6816401878296268 3.970367808058257 2.267270693780521 3.4575875341974736 1.224833792505369 +4.143804892481496 3.95965759200262 2.7359364142281666 4.812955998592759 2.0851667995888774 +4.761874562267259 2.9946192419418516 2.9745564337571957 2.2998919919598038 1.8916562785676063 +1.656282103559393 3.238336643852019 3.066726290446503 4.905308908242096 2.425547899119003 +2.78404998692347 1.8943072344290437 1.4287040213250326 1.908548909013002 1.0108873734776975 +2.0233110355579345 1.5760782804104854 4.72307822107809 1.8944415359524847 2.863774193911795 +4.815962466890575 1.04818402447887 4.4302012775437305 2.8906086414219194 4.070196540254891 +1.2932594311867835 1.6085793507237796 2.3511790240720005 4.997677690086913 2.665217034478718 +4.554321410869889 4.937830157416867 2.5508780024580973 1.313283427372248 1.2956540012518611 +3.2982971413249733 1.5644163476737156 2.3297929943882716 1.1702539403237768 2.0858747384475174 +4.73609558693579 2.1612254403374447 4.604883940079086 3.2883948021998832 2.8919024744962116 +4.255740017830364 3.578757192656873 2.075902014343692 4.314285383974189 2.338517875710652 +1.9193877613675165 2.3692732939656773 3.841291017164821 2.6172625619267627 1.30408690342078 +1.9940824341575456 1.0029141552917653 1.3364661666026714 4.08645968791725 2.9231624868114854 +1.018664092809391 3.139006745425048 3.6851795731401182 1.006919319069925 3.415981696823526 +3.1251736046884866 3.820135497456077 1.5938523529298738 1.2038585655930838 0.7969110280077726 +3.1009383640179404 3.4078170036960906 1.989066527387703 1.240567546079459 0.8089655273929731 +4.100519315877472 2.070390622329253 2.7609092156279424 4.51858466456903 2.6853017514197637 +1.081568130432566 1.1790511776831796 3.3559814515828594 2.064577348459659 1.2950781837652519 +2.9203756206576927 2.6044741936995295 1.1632961391891792 2.8238250699704848 1.6903106346219057 +2.8714671212792653 1.2263260096046062 4.870605637329403 4.556740649286981 1.674813574115341 +3.630818998735897 2.088491842311066 1.0241863666225828 3.701811702310562 3.0900567140043997 +4.508319759353803 4.4909080933555465 4.235424295656799 4.8098449712273785 0.5746845035632996 +3.389432592203469 2.025133407328893 4.5730482572072315 1.4449820302501433 3.412639826597437 +4.200281654387535 2.738481541998166 2.1801348098571336 1.2079611198587523 1.755557248313663 +4.484773120919038 1.0782293767300528 3.0642241162741253 1.5933216840257565 3.71053826907462 +1.1000388296292454 1.9472863817686017 1.2865607398428272 4.016634875562041 2.858519407163286 +3.4763376459461592 3.2250980641487725 1.5606055490516888 3.648084490505714 2.1025436163075772 +2.303288404684247 1.0915875777843809 2.6851357409334766 2.0368869844404367 1.3742071693178548 +3.730979571464699 3.0877663139566156 3.683683298107519 2.7798216518625556 1.109364309046769 +3.1774114096491926 4.326718868118752 2.7504297888628506 3.2092775020519473 1.2375172152308107 +2.8135577887381 2.598944537173199 2.2573957807214335 4.5136590663920755 2.2664471893279448 +4.150525516029598 4.424032930922808 4.5146160519280505 1.5728089413207615 2.9544940991684467 +2.6689756110761604 1.1595532337029373 4.563095806212088 3.830747978755593 1.6777035655011527 +4.883726031056154 4.891800695470887 2.0835964893661743 1.4160943172717788 0.6675510092540843 +1.967853415790533 1.5060077648980226 1.6872922455138304 4.9435086964105235 3.2888063154188 +1.7804263534124014 2.2637880918338045 4.807134961076444 3.9963836913156534 0.9439047576892993 +1.33069093736276 1.7642418491408178 1.6918900688020253 4.846204496211309 3.1839701474834747 +1.3474640330082703 2.8245405446541794 2.4220220120348475 2.775548416852029 1.5187942389142146 +2.831257585773515 4.073344884080351 3.1613729395641426 3.277159897776445 1.2474724350891413 +3.8437238734999477 1.900103044790328 1.5243129637424233 4.315262334956922 3.4010381236434966 +4.027947156033839 3.6153023611550807 4.7594296940972605 3.1852241334695095 1.6273902033169134 +2.9566551440855044 2.2255368787984184 1.0870596081782549 3.930031422907748 2.9354765638960063 +2.908442910044249 3.5927092070102247 2.461292441955159 1.8626983695208428 0.9091398290235823 +1.1319574536517605 1.6431055872823528 3.895949060925447 4.747700261643056 0.9933541777422221 +3.4323537816274556 1.9706260973302032 1.8558177826962572 2.4155722184531347 1.5652389119206398 +1.4661886525515553 1.7683219662835237 3.9202219323553855 3.447630856071351 0.5609160941263517 +4.317240151526878 4.728598512131532 4.561569852087269 1.3185762005805555 3.2689789727913814 +1.558336512541818 2.6960477550513775 3.8976367858128667 4.876181713705843 1.5006455435037667 +1.5646138960466511 4.4226263304148254 1.7103620886154407 1.3728112788414366 2.877876929992348 +1.8664009371381605 1.117444077005171 2.7570227714938804 4.96677909589167 2.3332293911135906 +1.8413597716134191 2.64136538020857 3.343938509904237 4.12007804283726 1.1146306780118647 +4.777772275371606 3.1754640568348234 2.1446517540539736 2.1377576968469856 1.6023230495799814 +3.87791293572826 1.6040884892209544 4.965224981183539 2.0848984136293556 3.6696810146513714 +4.916324128283052 4.893771781887977 4.740399656938607 3.6433937592235144 1.097237689814572 +3.5328367267205034 2.94862564433081 1.1222477632586023 1.133745901449994 0.5843242216174216 +1.6037434797845807 3.0953780500532804 4.844336986911452 1.5056772419446678 3.656722929602729 +3.7340792499456343 3.6159447693570153 2.7878101502372217 2.439978123578511 0.36734571492457735 +2.3492551918659856 4.514751132699864 4.968676383397798 2.9759934885679984 2.942814603252348 +4.348931095223454 2.8552570921556644 3.461762973181752 3.6846065524271774 1.51020571057438 +3.1307191056025303 4.550503305440923 4.9377261705079185 4.365189228770203 1.530877435905671 +3.4174067877180847 4.793802229383504 3.1234697321057423 1.289729325358504 2.292829756256419 +2.3752977601702177 2.748442531348676 4.068600840151748 1.168127046973146 2.9243777535013655 +4.591493372307012 3.602190545142634 2.685993524995355 4.166341214709647 1.7804913272122027 +1.999940131997691 2.9688936824121925 4.974428374717597 4.03870233248586 1.3470167812509013 +3.8396768119496785 2.6570427658967666 2.5891444877662377 4.188512299178949 1.989120580323518 +4.093430031374721 3.551431965993592 3.786991260675262 3.2630049434526587 0.7538723787972295 +3.3116397629554046 1.5561972927845247 4.998802052241692 1.0844212377232312 4.289983149984375 +3.7151921967783523 4.98977156668624 3.740814251196981 4.971256598908907 1.7715927695826783 +3.758069412242464 4.436960441671848 4.528266552858398 2.4782606665119022 2.1594946547502656 +2.245164673110951 1.0997423332256533 3.9779836917916698 1.334779344105387 2.8807154598009115 +4.089401338105869 1.690044590057974 1.6492155686957606 4.46759519084222 3.7013749470883637 +2.8347734554573254 4.454667659874444 1.1639824444666802 4.501022865101072 3.7094333802417765 +3.9056135772762532 2.3652892495877578 2.067596860620351 3.7389443016057617 2.272883917616009 +3.159898409306718 2.8806369667479084 4.395511738968863 3.7655398074934134 0.6890947596281195 +2.972735954611681 1.439391192898511 4.526061042588123 1.5319159522786903 3.3639338548933 +1.1712293252052524 4.576807529119334 1.012897220242455 3.3638457662012997 4.138226911217009 +3.9040204201737443 4.211463979946632 2.661232200118511 4.736408780754529 2.0978273006293966 +2.052025107975347 2.7019846641201393 2.1712058687781903 3.102958870754658 1.1360506508585322 +3.7501609824232203 2.5061620612106466 3.5032243108093057 2.853529937782243 1.4034372427440691 +3.7142919182857486 4.142482056166777 3.4130123094394977 1.0430746711283936 2.4083087849489293 +3.015475017726345 4.383288305586541 1.6861265629755375 1.497941036728133 1.3806980056246667 +1.5688489380601385 3.1078066327452936 1.6599739859559568 1.160847340001797 1.6178745917814819 +4.665159559657303 3.5515735311708045 3.5072378944848484 3.3369174456148127 1.1265357953228217 +1.6291316197388834 3.538218575627458 4.153013176912824 3.881058691561338 1.9283599890183096 +2.359822732367585 4.3244524075697734 2.560051575493756 2.1570861383005044 2.005530080616445 +3.234092904581192 4.6026383869940535 3.088418969295863 2.5992139823913747 1.4533541401340804 +1.3566156565286351 2.755131498980774 1.288578933476622 2.6374436645874626 1.9430086526890034 +4.855621489821111 3.2525753789244867 1.65257751769541 3.2195778429224164 2.241706236981629 +2.9822399457141975 4.177046991815722 4.399089771332524 4.309227412746376 1.1981815892862466 +3.991868594762571 2.063942854033363 1.452630884671899 2.2010862907879947 2.068111011699003 +1.5565758095203561 2.49155403809954 4.9876016853874585 4.909608352160353 0.9382255847848867 +1.8881061171493876 1.5191999951336168 3.1723160843246503 2.4739442884429343 0.7898195313764834 +2.663693276291675 4.061026269616383 2.5852815977576546 4.151376926219404 2.09885541952358 +2.881403073312942 2.987017898491114 3.5728820574486795 4.434939661690054 0.868503197649723 +3.658400963621203 3.8979159663154683 2.8669136109443625 3.640098448738195 0.8094332769968807 +4.908283460577197 1.8830904467792475 2.326662160994755 2.7322233615595075 3.0522569777355644 +3.444859847624102 2.8498654449643817 4.880659681415202 4.862806793491831 0.5952621815667463 +4.1229754235785325 4.7736095127365346 3.737016091152245 1.9582957626084236 1.893982767912502 +1.522779580960254 4.881958220351888 1.702748880038921 4.260670094425383 4.2222081983665065 +3.9340755624529113 2.6779208379368113 3.5245300327917355 1.8653892009651374 2.081026907985184 +1.955479537875895 2.120477653123116 4.743741147447965 1.4593125523778236 3.2885704453682543 +4.451723546064627 2.5905306852663132 2.7807556674822322 2.9636556907926974 1.8701580905403636 +2.8028232784626668 3.4177937331265555 1.1506442718553265 3.6236779847303384 2.5483493491132405 +3.683594829587775 4.078747667874683 2.621361592851536 4.753211259563261 2.168162532437338 +4.47230813713748 4.581169797012262 3.7085907022253575 2.046527322518241 1.6656246693520524 +2.8232397661429696 2.531886604851617 4.408174777993098 1.3945709862486595 3.02765494701938 +2.3234760385970583 3.2117633915853667 1.8172600943762776 1.9489452961769098 0.8979952192813996 +4.781934249528142 2.0882968768887524 1.7459179062828771 1.581305211159827 2.6986625640630413 +4.422655390459752 3.072773912046418 2.8522667457890645 4.7742668034107165 2.348672865100843 +2.392199266762247 3.0898384819111393 2.3426955556455202 2.496044650888358 0.7142943507583964 +1.9544690882248834 4.667717673575437 2.036197287153937 2.009992572481816 2.713375125738759 +2.7304532159103485 1.5052273836122487 3.101995476372842 2.1827408685320973 1.5317334540209706 +1.6314049397592565 1.322022074826934 3.6739356250693262 3.923011842066566 0.3971860004927009 +2.402918515298722 3.876694444485557 1.0194857421399282 1.8044756631581538 1.6697977918151403 +1.4000063558346154 2.7149830614747463 1.26409545997128 1.4133494669759004 1.323419999464685 +4.579788954153694 3.7367445321583532 2.0238712004608836 2.0040811277654753 0.843276671345026 +4.039093467220727 1.9655983077030403 2.3649187730853587 4.567281328583704 3.024860823642053 +4.0352391923235 1.3022927220039575 4.1634435230408116 4.952431665608878 2.8445559756744205 +4.157567372736457 3.0683355909827625 2.8623506614050003 3.340582099876179 1.1895928644391494 +4.715657906350652 3.990911189905702 2.8892818604869777 4.899189114065999 2.136582544856927 +1.657645251288724 1.8016385211186838 2.5509165483333134 1.4551324306385953 1.1052044581652372 +3.97854166909763 1.301815385876552 4.527779596669889 1.314326285944769 4.182241716531549 +3.637379810614134 1.557155761887183 3.4982432139469233 4.572028881361325 2.341014257207021 +4.122504600421841 3.3151517481549004 1.3854264266100493 2.7496482588677558 1.5852191759097978 +4.218210762332411 2.938098798676099 3.1408090827041395 1.7678535758323264 1.8771503571492767 +1.3478960020027486 1.6835943006334837 3.824830533964982 4.93084729248654 1.1558401350680396 +4.179907266258872 4.893442666444778 3.4660043869066652 3.3709487177382824 0.7198391122740623 +2.9571507904382415 1.7290235276577381 3.502355494396421 2.3103843505304886 1.7114589628132455 +1.1039174419709967 4.444354287204421 4.16666580193049 1.9722301706537668 3.996756942423432 +3.607470649415277 4.324018386680974 3.06793228739083 3.9258501891570936 1.1177941608147803 +3.3358948247511395 1.2925581314461265 2.5350204082511567 1.2701826501249212 2.4031311650820197 +1.8774494191195665 3.965454540955551 3.118039808588317 3.2369964811590877 2.0913909435498694 +4.370054813914355 1.2576692386112525 2.381800027964707 4.09802925993375 3.55420690816107 +2.79461238934362 1.9845868921854368 3.3880628550243657 3.7359296079909035 0.8815625807994825 +4.547553657401055 4.861154114756591 3.938730770849336 1.2864881567381903 2.6707182799690283 +4.445644189593495 1.590033758230541 4.0687838541970525 4.012630904203288 2.8561624760335187 +2.5590043166313716 2.0900089672360487 1.3465349528740873 3.2594294319031993 1.9695486603926542 +4.076440526035755 2.5642771583396056 2.3664959335718 3.599917694249924 1.9514013657667875 +4.033051410970221 1.946476482421137 4.656578809561907 3.0105486260576986 2.6576700881517468 +1.2268125107466217 1.991889849452618 2.740005874703702 2.790023889632606 0.7667105946958591 +4.990124998774377 4.4797178538671645 2.2015230713309712 3.1283644140589972 1.0580880531232844 +4.879634038872112 3.3614257434398627 2.146512494573857 4.745839320041039 3.01022530284904 +3.4206059931937993 3.7919021729010463 1.809898421659335 2.2618199464225244 0.5848879530384278 +3.6121786771556894 2.161920296539774 2.5229246511966332 1.4196475060985834 1.8222156374706044 +2.3033402651695103 3.646510712323559 3.4558555952411303 2.2300351009845114 1.8184451419406493 +2.941046608292144 1.5957926040665984 3.7318791862392597 2.285373211991307 1.97537031197188 +4.512841571014928 1.9563749780411017 1.917824737379242 2.914257131916039 2.743792805201139 +3.038390356190693 3.108997856348617 4.232167481976553 4.672314109231868 0.44577401512737386 +2.4849535606998896 3.476999097749361 3.3487372267705253 3.575209266592106 1.0175676549501371 +4.427817612773559 1.2010539273441996 1.37671480076104 3.5945854090043734 3.915476205586661 +3.5569471325630126 1.3231679803751737 2.4743099097978347 2.634715679510424 2.2395310472744305 +1.6455004231594086 1.9626561613417985 3.8844122985807386 1.3407563516410983 2.5633519732302497 +2.9593557724038093 2.186681706176518 3.8407209747035482 1.0751276004951071 2.8715034257485827 +2.3128505769442325 4.910444482870194 4.82675691824633 4.726672176076777 2.599521312803347 +2.6793915996183966 3.5476103554825746 3.0250332843143415 3.6450515039753344 1.0668769379576672 +2.177003926428745 3.341131042892072 4.180046715047188 4.514405801663504 1.2111927766000414 +2.932036309779478 1.9927283116246008 1.945910983793795 1.0532504519245762 1.2958172481313712 +3.5907621013041835 4.79503641532674 1.0370746635494688 1.561165304240875 1.3133726139503699 +2.615359063971741 3.091426123875298 4.5368875026971995 2.5149848412517484 2.0771928696886612 +1.2614160989377918 3.3120355405150392 2.27310708889423 2.2970821202703244 2.0507595900797506 +1.9646392656561718 2.9475220433538842 3.8811311162803053 2.187216320759851 1.9584192322324332 +1.761030038754916 2.690579016279715 4.650701349904332 1.8828205425513058 2.91979887412312 +1.5566585859473956 3.4845516191032426 1.674109863759746 4.12173956334017 3.1157122289388357 +1.2189192609049346 1.204063264060915 3.6067785957009177 1.0130851615378118 2.5937359794441366 +2.6976941500973117 4.170133600378303 2.093984473579848 2.402751252165296 1.5044649741026954 +4.330708243643529 4.617981389650216 3.3753279622063714 2.6326464085562122 0.796305061235199 +1.9270037036758572 4.457872518337668 2.4751176998145747 4.6592943076746 3.343041191991299 +3.957083933330946 4.535034369137653 2.3290242155605148 4.959385929793184 2.6931077687218883 +4.800020035517603 2.9192009287229004 3.0493635774653853 2.604684330489257 1.9326717634340498 +2.4836819488285715 4.3997935443770455 4.497113145562716 1.212453296141374 3.802692989579352 +4.285077345057243 3.7316349554759887 3.176759525023121 2.811277706320359 0.6632310595770429 +4.894793341924174 2.5275816350813622 4.759627124130262 4.791996616494346 2.367433008355161 +3.8612519956962523 4.257194448523046 1.1941085367225264 4.179471855536588 3.0115053663028735 +3.0623444795513075 3.3132094978425277 4.670887428359281 3.8514912910264294 0.8569383217468172 +1.0069910100973445 3.000757753684295 3.5739409002704026 3.91505198389714 2.022736413674881 +4.456442217987195 1.4818701719878908 3.3930498418559862 2.801739481752391 3.0327754283504627 +2.2517694484680653 2.5917040212965987 4.2256113806907365 4.264232259088573 0.3421214492725324 +1.5447100939953802 2.091084308276565 2.688849622957796 4.715002335949058 2.098527959878837 +1.3439023982191003 3.5831764550636303 1.1748639363621511 4.59409164329748 4.0872321213177 +2.6576527955705633 3.181096740724142 4.196591917901651 2.6239958359287283 1.6574233016204796 +2.741007891571431 3.223272198673335 2.791364980253838 3.9917180772566345 1.2936098404807705 +3.568112816340262 1.7889315291204415 2.0484758142559936 4.115251008413489 2.727094746424834 +1.0172881761285737 2.059776185887229 4.8338014950022306 2.8232110759082487 2.264785880352285 +1.8223409391414118 1.468721946919568 1.1509898621140628 2.981227919206956 1.8640863009236348 +4.551369584052008 2.177826364166325 2.1309376322121776 3.701600277271448 2.846170859461863 +3.791972881876521 4.93643351665939 3.2093130186502155 1.679513842870921 1.9105171192068957 +4.430443760752733 2.329975301911384 4.566904870343436 4.941525449753881 2.133613911912174 +1.5741518568592787 1.7132599389988727 3.493958776404789 2.2196502183023914 1.2818788397385954 +4.5841731785008255 3.2287946521825996 3.5761223809652165 2.7850211514765117 1.5693604126850869 +2.0529427532452136 3.681615606878336 3.1206221145389135 4.872619391360131 2.3920848066384313 +2.7955115017041297 3.6167670026898993 1.4530877046116148 4.6918095366639445 3.3412242821025626 +4.860394651617673 1.9324243425181242 4.421644388021356 4.468505403448262 2.9283452811673945 +1.2257675014932374 3.4239820148326823 3.9731598060060764 1.575413345246472 3.2528964226887673 +1.8146468398088924 1.8551965050326058 2.6288257154962364 1.630169859405798 0.9994787612818402 +1.2952329965650322 4.131403638918847 4.292758886387576 2.306850903053959 3.46232500363814 +4.568105643122142 4.859378778275138 2.345529791963861 1.7174979717067673 0.692288961718511 +2.9453022731615714 3.5896417912921774 3.9655582756443137 1.5801505348765224 2.470899331081637 +1.2937295339277295 2.7719851679493432 3.6252885408292914 4.4604280850371 1.6978509292091195 +3.499144310816621 4.11842247572536 2.0104125708305567 1.308416499225176 0.9361110671721182 +2.0971886194260874 4.912177429908164 3.0963604369373163 3.7677287632392855 2.893941504713045 +2.7084587043036823 4.4037786127909415 2.6795175755307756 4.160141149008872 2.2508566721255927 +4.618197339696586 2.904908460535894 1.7598021937275936 4.299845520949436 3.063850337013854 +4.694749073033345 2.407033623230773 2.3144850389927094 3.985646600092401 2.8330942346774393 +2.625445692281749 1.223374624760416 4.461144100499263 1.0032675939315943 3.731315212234559 +3.031557554305005 1.895748312285463 1.9471326642524414 3.4044036190984257 1.847620434530516 +2.8534708830476863 1.5371012137545335 2.368828612674316 3.1853227625587555 1.5490293099326682 +3.29907393384717 3.4076753586642443 4.455175232683575 1.2802243414406949 3.176807742258927 +4.920194842214 4.40726127398966 3.3160694526420107 2.8807007501941633 0.672790273772203 +1.0148875750423194 4.864339683913685 3.493715315799981 4.518750482044096 3.98358866231584 +2.0070938823378297 3.248426846885836 3.152217726739627 2.0058369810420933 1.6897030339617596 +4.867881803422391 2.7370928545973543 2.405992765162629 4.116939384782797 2.73269095940697 +1.2014036239880914 2.7637801807387667 3.3557435417776627 2.946233233750181 1.6151529950642012 +4.273246098677268 4.946390385291471 1.0879888389513908 3.833484629021303 2.826812757133545 +4.437882377149858 2.348207719566196 3.0450714973821933 2.531729354553398 2.151803971125496 +1.9241205231569993 1.6076729863695176 3.466804465426824 3.1121727301654394 0.475292237674218 +1.3303063168618179 2.122761258819096 2.1126095352956757 3.375622989016235 1.4910358209351138 +2.9807463693414715 3.7976748050325084 3.7329549940542113 2.7193114146753445 1.3018622719230346 +1.0644502990428144 2.538826709328821 3.8922376559088505 3.643715763926445 1.4951752171576296 +4.990689558088102 4.303952601776375 2.856850105731922 2.0214131610293253 1.0814631458067832 +4.35211973157049 1.6580706005729118 1.702077865985562 1.2739681079083778 2.727852394318598 +4.509931453245633 4.72291213700671 2.5646212306114915 3.200601290613546 0.670694720700523 +2.7934809565542733 1.1442927486351824 4.5086399410966305 1.6151778262100618 3.3304571391061675 +4.517872433954825 2.178968546497828 2.295674662285661 1.8620197464488482 2.3787660626448504 +1.361704024509693 4.343393744479297 2.9390884930954595 2.8694094340117 2.982503773249451 +1.6918985741844002 2.5798274990834953 3.206439972832556 1.6471154942653747 1.7944109354134226 +3.8142938252530465 3.62404402632818 2.3073431457844475 2.848258329986002 0.5733970897124904 +2.940747131276182 2.184093974628183 3.7262152867773266 4.000961505118301 0.8049903626491735 +3.6057944955565695 4.9038684624239774 4.435422933064332 3.1070221804530687 1.857321884595414 +1.2603913900047172 2.616735100556724 4.548105103074533 1.8020239746287134 3.0627813870990295 +3.6980092210270756 2.005390714893944 2.677367932280349 2.295173244469938 1.7352320267603558 +2.5470811294386815 4.924768860135579 4.651484639904293 1.2008895897653402 4.19046598181515 +4.939973691735863 3.0600815829869963 1.79517928632337 2.080086611991052 1.9013591256665252 +4.395362898083903 2.4846295107652345 4.215817010284467 4.255331099350606 1.9111419205932871 +3.3601046423148673 3.392447157661996 1.092639225158667 2.8199613954920366 1.727624935691819 +4.547399666343718 4.628543285044133 1.5780408771179082 3.2468607158937384 1.670791411621327 +2.1012184948146624 2.136833939205973 2.459745129069354 2.6161614367283366 0.16041982789187872 +4.769709519602564 2.4173608517189575 3.938762231024218 3.872583744601342 2.3532793814927717 +1.9383247597911017 4.796474213173074 1.9793044916258307 4.220445323370361 3.632042197659635 +4.392057788392105 3.0166769638784907 3.4689685546934297 1.1468388311715563 2.6988810394872025 +4.60196915190436 3.1843478100843057 4.957865701570748 3.1604580343116693 2.289175526495383 +2.4291642432047316 1.1968423194629634 1.5026169911451586 1.6834414680263476 1.2455178903468098 +2.6441649339809477 2.912759647863384 4.843737958125287 3.3705642077141897 1.4974591878331391 +2.6869152310622013 3.0843550067321894 2.534732993945399 1.6122137187129608 1.0044900141166129 +2.7615707902526876 1.7152639283506543 3.7210831318242783 4.179025108436411 1.142133487472768 +3.1914886837167336 3.4646152648486264 4.211207917409121 1.869632919169844 2.357450233133261 +2.5729064402694455 2.382451269389419 2.180521349984598 2.4967579659875683 0.3691595446632123 +2.908387841288682 2.5191659312296344 4.4424532458645904 1.192799938445389 3.2728795140809215 +3.012739853948433 4.314915359458869 3.35378372924026 3.8253024636836317 1.3849155079218507 +2.601730601190658 2.1543679937763383 1.1312434775509361 1.190211742176754 0.45123226695962165 +2.9566332553746784 4.145284134501432 3.995724031572229 4.793575427261821 1.431592736099424 +2.4604344751912572 2.955170072150073 2.3987413274113742 2.020360815503317 0.6228443807966795 +3.867192096612524 1.622139973426739 3.7749984877068563 2.638195745610738 2.5164617045085853 +2.6946575155262806 4.971881440643475 1.322730847488097 3.059464210685144 2.8639119364896484 +3.3774438328743517 4.558685009646322 1.492302351534264 2.3633580661122253 1.4676746150290096 +4.106056136264099 3.864862283075121 2.9368510971681725 3.207762040709705 0.3627219515644316 +1.8701103639230028 1.9316681571320014 1.0622004738649484 2.750252950646349 1.6891745103075 +2.5670867950171066 3.0153930064214878 4.882462434960116 2.175920618428597 2.74341886408501 +4.7789530530096815 4.206768589626831 2.1004482964368605 1.4864147921518058 0.8393045957942233 +3.786260753333 1.845058157305766 4.659962983099943 4.168162068922587 2.002532311351943 +2.4625263517062765 2.80233469288324 3.716619879142157 4.3446361648867295 0.7140547345223952 +1.2451495817767548 1.798173745610427 2.785358643189746 4.999396739735223 2.282060564213547 +2.1154658295621567 2.9717225432889696 2.6397270527801675 1.8693222260613247 1.151824273417578 +1.31471019214983 4.9551913252245585 3.9121703729947277 4.044754439878718 3.642894647812994 +2.308052790909838 2.7458929505834555 1.9766259766420604 3.644063774752323 1.7239642734087672 +1.8584254387456407 1.5078818006041361 4.047941523187152 4.877324333619268 0.9004202843571202 +2.3273882382263156 1.182907995231544 3.1229420328713893 4.129515088097985 1.5241470867713443 +4.1390970113347985 4.254701546348187 3.7825493650439403 2.0947270811910306 1.6917767200154146 +4.773404985737488 1.011292921573439 2.8285088394781357 3.9452414155960924 3.924357123133894 +4.693226884500041 1.6937396866076795 1.115910825797033 1.453112145251493 3.018381715449854 +4.66444743043683 4.039111866938173 2.4464083825863505 3.944329756053468 1.623210709694154 +4.848687889607686 1.6330536542133713 1.5063143335931968 2.8431517540961746 3.4824471029287776 +1.3841394784126728 2.850036555355599 1.2833023767420269 1.8916936885862046 1.5871339667833007 +3.1753198293197764 1.7409901867746385 1.3969178999391985 3.005247959554049 2.155000488200495 +4.983957781449206 2.944237178904052 4.03118303936823 3.7258723584052227 2.0624438776260705 +4.156471027669597 2.513253672813536 1.0918217617982404 1.7435225556087315 1.7677322195268643 +1.724687744178926 1.6249789703994426 2.3527788558742766 3.5195832749226343 1.1710569550108927 +4.201215023244669 1.256944633837239 2.38854185585333 4.9746499124716745 3.918760391558495 +4.508727297727145 4.944328410910565 3.2664217865328222 4.172297729944851 1.0051664313233244 +3.851948190087906 2.1163362677159108 1.9301755396080678 1.7510581252996844 1.7448300184225207 +3.368301725640721 4.4835463897350865 1.203557844220298 1.3093007860936003 1.1202465043672194 +3.6951971599463342 2.288806460760632 2.958540053596235 4.788843059240219 2.3082339333840167 +1.7611675304121106 2.5446010587626486 3.980891123962812 1.3252222533213494 2.768816578222161 +2.7872411328799744 2.3138689984896357 4.506548620888291 4.076201652308871 0.6397497096386686 +3.3012127541507836 2.6347783109017944 3.666244755373219 3.1363760155796876 0.8514080975413467 +3.392441230663416 1.2155679191699336 2.6667931703322454 4.3786461038628826 2.7693352777029454 +4.972412051579161 3.633635876927683 4.327551455052097 1.9498600421071512 2.728687981614347 +2.7569156257915397 1.5668624000717775 1.5753247488971711 1.0907998753417445 1.2849089590861733 +4.822048152606175 3.2265640961946045 4.927634504308115 4.092971836502503 1.8006196553664244 +3.3960422881951233 4.562644814355192 3.596853431520731 2.935605284818539 1.3409737378338686 +1.1435312013027543 3.739479888137271 1.962658588674635 4.553668394723642 3.6677351866949124 +3.3062397186323507 4.685669945327106 2.924135199708655 3.345507983126461 1.4423532067161684 +2.421800890302488 2.6853928193541066 4.914848334242214 2.2227566801667957 2.7049654672479044 +3.6790027540608023 2.062530708500687 2.8881479666888863 4.492952883755829 2.2778017244526665 +3.5429849643502305 2.0860179083648167 1.4938181565226207 4.406539532349621 3.2567927191373935 +4.631344012793545 2.5172742646814594 3.3422789046812182 2.8308632512100425 2.1750487053162852 +4.469552050127284 1.8156533122565994 3.4838599852525944 2.211325574465554 2.943216325299371 +2.2794281421219753 1.396154959190536 3.879801301845372 4.010910090462102 0.892950743399871 +1.3988570145649595 3.3346611334520153 2.420510011608246 3.693666959493711 2.316951920228196 +1.363570772418221 2.577132385062289 2.039041316648041 4.981230551594418 3.1826418714517066 +4.397876434629596 1.8717373077793327 2.5568341778844226 3.8283706386669407 2.828106055172462 +2.2556385367665786 4.157153312371712 2.581260298354421 3.797665808217008 2.2572994498445924 +4.776771841358136 2.0827456748006745 1.3802286609410168 4.870089923004555 4.408730952842099 +4.378738369154515 4.768774357637715 1.1537791345728605 4.682873421498135 3.550582284403599 +3.064600809543965 1.5303953217919228 2.1863029245706374 2.053854101146475 1.5399120655007958 +2.898373690506639 3.389352016076896 3.829943011379614 3.4889598020458417 0.5977702445148407 +2.1255207386584596 3.6340810053859944 1.750501204720496 1.733293928590797 1.5086584002685484 +3.907691462939512 1.3102311169196557 2.877427266851273 3.7316038931745177 2.7343039257007535 +3.4050686172430646 3.9517786050692614 1.7729857406197032 1.5426219213527776 0.5932615780717346 +2.7665927368354772 1.4359631956492112 2.4046107786939213 2.7001925217988147 1.3630640273789416 +3.7258833208443054 4.792100231684314 4.776455316509201 3.7086167837371113 1.5090055112669605 +4.677079437570349 2.031301367255553 1.0351951350879842 3.665512458054401 3.730778848559092 +2.7813026580203846 2.8002087734415473 2.945777913230508 4.084458612989602 1.1388376430396818 +3.31449535684281 2.1780387683239653 1.2597542804458177 1.8785170354322642 1.2939864468170863 +3.0389820558649348 2.286830367974924 2.9068943539892746 3.357913226123106 0.8770120778054686 +1.127572033140027 3.6279756558588026 1.4887589348647094 4.324752714708923 3.7808569128995413 +3.1282164756360755 4.6627206817147115 2.68420195307542 2.59211341595156 1.5372649274417984 +4.399653565496132 2.4394455859075914 1.4639086541775495 3.4713378237201544 2.8057418259656575 +1.1145175466545632 4.357034014371029 1.139101489253683 1.0848261612969905 3.2429706835920173 +1.5040701159044723 4.685490218966647 3.5291392183697696 1.960274176271073 3.5472202345621966 +3.8487720422133616 4.590035504918477 2.1638821054892086 1.1329273262906412 1.2697792240755654 +1.966538254460927 3.517822524334582 1.05105479455659 3.1059662351660875 2.574712394560845 +1.2335747746807906 2.9591186536042278 1.1311946151548455 4.806929133937128 4.060606596391451 +1.352676836049317 2.8602764200548996 4.147783900869199 4.539521675045066 1.5576633106708484 +4.401084790736707 4.691237531327873 1.2884243759675362 2.6034748402085457 1.3466797452895247 +2.1831780764555644 1.3860326149590292 3.6692566217024796 1.0167475732491664 2.769701272504171 +2.711182846117176 3.9938496968342623 4.209354296661547 3.48321288003103 1.4739455915584752 +2.8243818460897376 3.4437737693460035 2.6103861011378284 4.597514501843985 2.0814239441997646 +1.1100501784703205 3.626283750242065 2.3776151081790333 2.4175298168287225 2.5165501329553877 +3.0328325826369134 4.407167297926607 4.541522270704133 4.461413367859282 1.3766674783568507 +2.5431091182519774 2.63061250203574 4.640362479647746 1.2795060973837105 3.361995309987584 +3.557400336088602 1.4838723303645103 3.4220854370013725 2.129844912600153 2.4432363707645783 +4.546327194664094 3.0673246082047543 2.83364933157934 3.9701249148948374 1.8652145727035585 +3.826077273722482 2.728616286142187 4.716322143975319 2.353888267963702 2.604902001570882 +3.4644863382524824 2.2226236845224037 1.2575211143393656 1.4138231262314722 1.2516601654007504 +1.480956217737786 2.577157989868696 3.394634811235747 2.7471018752816443 1.2731681854210337 +1.401673710968815 4.967726672965352 4.349609937395259 1.5050605891279085 4.561600017810909 +3.0827889331214364 4.2440998745327185 4.0013816851030715 1.8767609776684968 2.4212922692441223 +1.436021529749 2.4475102508423072 1.3896170123299258 4.530963600857415 3.30017693800685 +4.92913016204848 4.749724176437921 2.254249697652369 2.859402637793344 0.6311866511850223 +4.29611348323789 2.9399025473800893 2.1598556438173135 2.9344785875915504 1.561841479652066 +4.972737669186051 4.435202024268141 1.6891046332842135 3.405060148550469 1.798179051132004 +2.6252873155823706 1.1703286502957795 3.2480564688904776 1.6305334192117273 2.1756115310262962 +2.434556073720282 4.694307154966957 3.0060041437831044 4.769119766070718 2.8661911392560957 +3.7922620721860256 2.405009782628619 1.9497037531676304 1.332067194577625 1.5185334482286428 +4.98460659822817 1.933301770577466 2.0362578261651354 4.703797376696572 4.052928374014764 +3.4292371133293345 2.0975730578339067 2.4431235869440773 2.068330020404173 1.3834013785659718 +4.651592388409792 4.230534309521896 1.0139831977546945 2.5424557818377407 1.5854079431144121 +3.134043814266423 1.4742945914323635 2.812920390099138 3.9880236499303243 2.0336261096780164 +4.343150871690885 1.6764157367991182 4.0279243101397455 2.3430521614378104 3.1544049259943923 +4.038340525860521 2.7225882123428633 4.5791719872427965 3.4187286423469923 1.754375360987503 +2.59662963153959 2.6392674800350737 1.2025871780126454 3.963125299437303 2.7608673829003636 +4.153249201481089 4.115681586361209 3.2491885817866235 3.371700407250353 0.12814239378227185 +4.170093146320209 4.2054095125402595 3.9448348515860894 4.8348906146935615 0.8907561434892343 +3.8834449686183747 4.169719744559214 2.3042099876910114 4.725533091498757 2.4381876097571236 +2.9030570932752213 3.751068708198075 2.8668101165020308 2.759735482734055 0.8547448018213462 +2.6032137467382723 4.476532816368959 4.066856483806137 3.03223560266903 2.1400384819733747 +2.8947666480958403 3.6675765229432336 1.2462890084091676 2.168886242859125 1.2035035353817425 +3.064374830069254 1.8411940544565284 3.5984039011840436 1.118265811613484 2.7653672727446628 +2.4144721289262217 3.9426039320968758 1.9643795815556921 2.8861357927191134 1.7846067692015348 +4.987459211413332 4.125091317496164 2.5539705269511983 4.838725965636515 2.4420863619170525 +3.5253753493272493 4.071724917916906 1.2490337726397116 2.8800638943049246 1.7201038075875954 +2.797794498120358 4.230457867315851 1.5094835433277032 2.127270752210374 1.5601876056723503 +3.606577217269912 4.968182161273717 4.7110324288808 1.64353842452681 3.3561119603319667 +1.2904349132656994 4.563104045430341 3.558060534194941 4.888205632237227 3.532654700146788 +3.435097316287318 3.267950842105143 4.809567219394056 3.8772057983241366 0.9472252970286701 +1.510529700859025 2.58192761305819 1.1974296664258226 3.089890180839679 2.1746954464660764 +1.9271097557579622 1.3310345047463272 3.09243113245182 2.919407876954582 0.6206792664584876 +3.221410415247191 4.727530724605033 4.476329916934567 1.8188485643945898 3.0546039883032083 +2.051651828187582 1.9753925641195984 4.901626712948356 2.4097318785651125 2.493061439471976 +4.119454812683941 3.731555706027338 4.476163384281869 1.4682913020300852 3.0327809317744454 +1.3653816749433099 2.162499448986732 3.463184522229379 1.3867887087986932 2.224143952114705 +1.8495211700417595 2.66144105930198 2.9529145171343076 1.1416953485052654 1.9848750044739865 +1.294338645216858 2.2308230023653497 1.0048258840844957 3.4600690354834667 2.6277788878966537 +4.5752367771192 1.1724169413415053 4.241747843047724 3.416579377017911 3.50144053670659 +3.857240634339993 1.6281429988317 4.752131070479882 2.742787225229073 3.0010563068819565 +1.769308328696599 3.557286489753553 3.0229060947114217 1.2398770320136951 2.5250858486081897 +3.0240010972553963 2.5950546599695157 4.444903448327208 3.9394163219149965 0.6629572241319386 +4.148881021471424 2.0760964215066413 3.507204208058131 4.371955118822435 2.2459363605229017 +4.851089162717857 2.0598485376500935 3.2393185811734275 4.603651154166846 3.10683562435471 +3.7433753054191015 4.003652552223849 4.5004480637485065 2.377659622421886 2.138685346616973 +1.1684718541737942 3.6316261185314755 2.9197942356251154 4.290246822504306 2.81873539426944 +4.510098030902553 4.95102866880446 1.3480035355902165 3.7112695363271846 2.404047840139602 +2.4125011046695026 4.098792577404416 3.7606155818192017 1.021632638937871 3.216458688124777 +3.2427661069013243 1.2404986933052236 1.6256353351725785 1.881952023465788 2.018606707669034 +4.4125188289883805 4.649536835787554 1.557113360045371 1.077217330308423 0.5352361487272127 +4.195919313752072 2.555694964512308 4.578886082936557 2.2509039643114592 2.8477774949032106 +3.1525619372364497 2.201718459035345 4.641749855350846 4.171524920537632 1.0607614290488068 +4.887285580466129 3.040730792093626 4.712978880172733 3.4127046828371177 2.2584236924718524 +4.764879398063291 3.64113619385999 3.833924490325003 1.7298782881390036 2.3853320963602593 +3.2607370032748615 3.9853611248917145 4.16237011956483 4.895815596782592 1.031029769541203 +3.305925477412365 3.6914124683456424 2.7712138488028573 1.3602864826539451 1.462640165155702 +2.950800353601378 2.004989042789662 2.9759674268848175 3.1402025374550857 0.9599646906024223 +1.2305212274538015 2.712605710848158 2.96556399108161 2.233347413234629 1.6530927175425645 +2.1331587894716537 3.2557235800017423 2.3579643158799253 1.980235304816671 1.1844116323038565 +1.5949007813402591 4.388663061265315 3.6848214366674177 1.3854115377323821 3.6183412719162455 +2.5654999181227716 4.040278715350751 1.1454123202941626 1.9855137868920836 1.6972751618206117 +1.929467595531562 4.352423287442214 1.410807930286813 2.7120924419676076 2.7502828336923004 +4.831956627707836 1.6805924409889816 1.5930553121752973 3.9194540174533405 3.917043167141963 +4.96852487252813 2.3656004639282395 1.9790386861315112 1.0840709878011228 2.752486631745899 +3.8349746851738122 4.7426500265146645 1.3708990062060251 3.054053770017529 1.9122982205240877 +1.2145199005574434 3.005153297915438 2.812617565058864 2.3209093596055275 1.8569181250243574 +3.463849826351306 4.465330979840207 2.144833826648066 4.120019723332069 2.2145707997833006 +4.67344598972409 2.4385528383249535 4.787111658825175 4.18706822795804 2.3140439747544916 +4.689113413271599 4.229653352396741 1.692369327461245 2.669177967643972 1.0794714758041346 +1.2012071652477885 2.512530956035728 2.770595526698235 3.701877363377633 1.6083705865301705 +4.237056648145784 2.4507625699098585 4.773936764879409 4.167382572805986 1.8864661464925836 +3.51092642363082 2.6070057862158453 2.0143951710655803 4.04434883340894 2.2221125961584205 +4.9006049946912515 1.2857014297056941 3.877961919904205 3.3118357676979873 3.6589652368336476 +1.887804955263181 4.500977060332669 3.3293112772412754 4.625698905516851 2.9170686199435334 +4.985099990449886 4.10765852386898 4.093796148872041 4.653264410209063 1.0406287823806917 +2.487678960617842 3.633767945474834 3.6245171094259363 3.1113180357535026 1.2557441022870761 +4.494565193950257 2.9533852750681544 2.828421281952767 3.044828321026067 1.556299312126661 +2.013070224217376 2.730986184028904 2.537611020876851 1.577264725299349 1.1990280783958054 +3.2335408434979316 1.823964001794522 3.989393812056257 2.9142212258915516 1.7728234437491681 +2.5154191388708393 3.2244170838878237 3.924435042808602 1.2673482557246691 2.7500524140703795 +2.0490328697928692 3.4056782768621545 1.341741324710147 3.045211924161544 2.177681988656169 +4.134892873751723 4.217758345539967 4.639934447327967 4.083815200634845 0.5622591066022972 +3.062884085403118 2.840533994065254 2.158722634409928 3.058247521715184 0.9265983952066233 +1.3312453217632845 4.02013262577181 3.261686841718475 3.201305993960029 2.6895651656790664 +3.345608034324114 4.650235613050039 4.450534039268963 4.906752052736602 1.3820955086334035 +4.417292846760731 1.5370918879016555 2.534964389622113 2.6948345903085276 2.884634473287777 +3.119568610416622 3.988933363532822 4.6183588895224865 2.0565653809291695 2.705287610334925 +3.4240617601350993 3.0014569351272917 4.5329270420839975 2.224947260116985 2.346351532078767 +2.925121978142569 4.806539062906992 3.7295806948051364 3.9836262496312322 1.8984913459824777 +1.7144750368112955 2.059519412300269 4.92170118470977 3.467564165222384 1.4945133296495663 +4.7959361251579935 1.1289029379884639 2.881038382521356 1.9709986436555527 3.7782674233195377 +3.0123088613321594 4.93447132590957 2.938572617227967 4.96784805800195 2.7951149090437672 +4.231525057258345 4.603041567339343 1.1789459281904362 4.791583581939452 3.631690423831299 +1.1451424601615638 2.971043178454805 1.761216627470092 4.858968103954505 3.595827810550046 +1.1109973028481974 3.987873914775533 2.4436681991848177 3.5144467208509806 3.0696882061075974 +2.3001676785363325 4.096920578730742 2.8378535573118713 3.3598230150391344 1.8710353014192747 +4.314738666937389 3.092219284287942 3.2602260714742934 4.205829017502584 1.5455479845320128 +2.765775697390208 2.81674283232643 3.1167070155003627 4.0664516763682625 0.9511112288742517 +2.903601786369838 3.857946758124925 3.4807829760129914 4.026097267260026 1.0991551307037937 +3.9955604976369625 1.5022343768947408 3.206185753595317 4.485680827643147 2.8024601315430195 +3.5382070983907536 4.836126541813793 3.296967661326112 1.2286694826501567 2.441813309311309 +4.019701864887944 4.8985859671329965 4.042265930950273 2.5131051500542747 1.7637374971943955 +2.8636271350612015 4.138958270010368 4.358984077774009 1.051948042087833 3.5444261658409064 +2.201392446477312 1.1804014594092203 4.684235226702225 3.5242917719195006 1.5452803674309588 +2.6277539677517563 3.527837709307579 3.732689916011484 1.0002943106198972 2.8768275037228745 +4.6369445541723655 4.244490901740619 2.587799818602783 4.4526608194242545 1.9057089026637513 +1.4827025745761184 2.5039553612072845 2.8766866572807466 4.759529046282946 2.141974023191092 +3.396912239712072 1.5568399572607334 3.6569073091722957 2.7013840502354096 2.07337664282567 +3.0755087308582603 3.30808438150481 3.7845745058896116 1.227833541448092 2.567297371269448 +3.4884873112559127 4.496661516470439 4.036750892967095 2.8817426797065755 1.533120739132832 +4.4949259567928594 4.91259168581627 2.8797043433712237 1.5866362449064977 1.3588486922640945 +4.241374711528536 3.459465868000969 4.402313176707535 3.7026250732965087 1.0492592061266541 +3.671869335429463 3.0068987037538872 1.2671099842927336 2.97151045369545 1.8295264144283936 +3.221165277954356 4.086338469819363 2.3732230753082852 3.4086127359909133 1.3492799566325635 +3.31413831409055 4.690883731475675 3.066704700494608 3.4414031837301735 1.42682405980204 +2.1922220221264945 4.087330076669636 3.4733160332923183 1.68343676436975 2.606741708668712 +4.241969929829725 4.198772679143147 1.320862128209869 3.0560712987520025 1.7357467753103843 +3.2711579582940495 2.0413130718409813 2.5122795351378118 4.831862771679528 2.6254494540897384 +2.3140593205505717 2.86295423846883 4.844760579005641 3.2964703040121344 1.642707644882667 +3.1083088591123196 1.2178886736136376 3.2148344065662897 4.682006902896774 2.392965443070479 +1.8504080314753582 4.504886426306865 1.3624448627139145 4.376290056325165 4.016157168199583 +4.5273141668004975 1.3351898624532046 2.4354281652156766 1.3764005300647075 3.363212319556727 +3.8220363971729934 4.548535173688675 1.8273482697206203 4.825980982884765 3.0853846795394806 +4.627435567114743 3.7259684125047015 3.5590992238537558 3.1576895687638777 0.9867992410009744 +2.5975258555524405 2.531142359207186 3.980999800111436 1.7450288112371584 2.2369561979785018 +2.212260844312793 2.1496400097265678 2.9369088468482687 4.555784489242778 1.6200863293239993 +4.28298061701762 3.1826440188867307 2.5659431312196435 4.582360826760505 2.2971027299789135 +2.192967483617099 4.7121040455351775 4.0355014511173035 2.3288028978481443 3.0428389653945667 +1.4993876933576087 1.306067541262633 3.2293066502751593 4.25759066138122 1.0462985657556807 +1.5370350177675034 4.760463524754048 2.8583078741254773 3.9027929369033783 3.388427420798571 +4.2847391556498575 3.006510167417911 1.144325865051881 2.6138899236546247 1.947687826293894 +3.1586643559923817 3.940129351326445 1.9813683232964356 4.594229908470471 2.7272207835469864 +1.767358118465424 1.8880839479749687 1.8598545671030915 3.6343088987797803 1.778556409315412 +2.621504790355918 1.4823435312229196 2.227723578174353 3.956582615696201 2.070420717132257 +3.4404544017653533 1.1509433643978628 3.549024438636258 1.44043949400166 3.112553816236316 +4.790265750745137 1.0872135206467077 4.431069722342139 4.011266336195993 3.7267721558819127 +4.20218862397383 2.6990434905853875 1.778280560421949 2.7009673574907396 1.7637449411733046 +3.6181574170621333 3.7792840462203374 3.0300070353820594 4.183446405229992 1.1646390730776126 +4.390367274285836 4.120742761108405 4.204876615117499 4.035559502899531 0.3183797458947394 +3.8998073016693087 3.091726337471107 2.66537623865956 2.441420022311613 0.8385411328851934 +3.225161281163988 4.379693439457684 4.1262530393561505 2.84938912950769 1.7214313662785972 +3.39327047217516 4.122900080412139 2.8217288917350203 2.2424789924695467 0.9316060385243906 +4.622524122804922 2.3237905114771373 3.174210769569791 1.9161369153425207 2.6204820240822753 +4.460339411832349 1.6877553935311695 2.8651892901343032 3.572881178181343 2.8614768821269023 +3.548105755659229 1.6686601010617341 3.3580606724151156 2.187374481007829 2.2142317239478584 +3.12831329301521 3.800898231701614 2.3117042984414877 3.809839576773592 1.6421875081521615 +1.6164891242623263 4.294187640304459 2.41463891800048 4.698691624220663 3.5195121973941195 +4.2272247172710955 1.0704642940753222 2.9824591725869825 2.3112383687072975 3.2273322941736335 +3.2097875553338464 4.846794757443963 1.1744091514339305 2.0605928028796554 1.8614816796976728 +2.4424236152432726 3.3195160266787935 2.501066346707411 3.8543645821014016 1.6126708319177432 +1.1712593200531183 2.312035161478413 1.1380758518871912 1.8876997102410935 1.3650294683240287 +4.377626372391386 3.7271816059075964 4.0050478472530235 2.3999645487367847 1.731869160595546 +3.6853693485992225 1.9050348381806659 4.606700548262921 3.489198896418805 2.1019992651905497 +3.7918772866785053 2.2302928720621664 3.754184321016517 1.980322194550511 2.36328854092833 +2.9710861218545475 3.497997767789915 3.9272159849392287 2.962195823547133 1.0994997928674406 +1.0078417271081692 1.6479151559252738 2.687587401835666 3.6982357593867703 1.1962876313405695 +1.4459114501492656 4.736511282628969 2.511371574892352 2.458636234363844 3.2910223751375667 +2.8587672606993486 2.9429812245811204 4.053632203282796 2.3102874324032663 1.7453776043783997 +3.6597523256751097 2.428845085751908 4.565993500096852 2.291445214585917 2.586252604912383 +2.056716186557356 1.712526329302377 3.2972087459239465 4.9728876446692025 1.7106625703327107 +1.5501584609911387 2.118455375413402 2.623726713327082 3.171512485738881 0.7893228967910767 +3.908041757309449 1.1198527312353255 3.704353845473782 3.264347952559453 2.8226943211973032 +3.7537065082801044 2.947125638069115 2.6210226430082626 4.031460929464195 1.6247796343169325 +1.7329780474817786 1.0821410793911967 2.2616152970185537 4.835423580103254 2.6548216205818336 +1.4855790598517027 3.007229171339895 4.361189841343844 3.1585586478440066 1.9395207782776835 +3.9402497127375056 3.0462643314732323 2.5024414119691203 3.2071041469531814 1.138314294028431 +2.7695275888101185 1.3709180184284233 1.6929526147149163 1.679341765964709 1.3986757971620767 +2.0409434729746065 2.6233854648939494 4.010762387025668 2.949582480807877 1.2105128943185082 +2.862895938725192 4.673811178318022 3.4431903604476286 4.84384595676225 2.2893776675063955 +1.5941857923790215 1.8806983552712278 1.2448538023223135 2.9496121624093092 1.7286672655492623 +4.066494893891404 3.627807902950769 2.4654994743918586 1.8214322291751235 0.7792745936969989 +2.752036270943518 1.8420754626978213 1.4559629960822398 1.1067564297581844 0.9746660446055351 +2.5529389859434852 3.482026048104736 1.4895942636327697 1.2995706172500072 0.9483204918486287 +3.1787851654658494 4.503126074464447 3.999725688794551 2.253569990640383 2.1915607601532523 +4.743388434666995 1.5771531146398194 4.455814061387779 1.1010032423447993 4.613003547945245 +4.369254973163445 4.829055955840026 2.1017796227944663 1.0311902320982362 1.1651517442555175 +2.150879359339877 4.862377006967651 2.9975420047988717 1.7344325703469141 2.9912647720475185 +2.868505969564798 2.6595584203828357 4.866048734058131 1.8861172309491407 2.9872480381666593 +2.6309865995810147 3.455401649951034 1.6866805855086908 1.5397866439045584 0.8373995494127041 +3.344577280334593 4.543542517887946 4.214918584819811 3.045336348213819 1.6749448495534545 +1.5408119245869933 4.577510443734816 3.7267567088463274 1.5769810478094097 3.7206280772177824 +2.2375635205515807 2.0030514135092234 3.2225886347993145 4.215923464866975 1.0206419612062765 +2.483267956818389 1.8532725698777504 2.2561293264905715 3.3148730853912727 1.2320034637036015 +2.0015092047211085 1.7809262316694463 1.8645646461896521 2.3553520867935682 0.538079139025899 +4.084260174217221 3.4444521958654457 3.992689475513067 1.27736710397564 2.789682747291208 +4.960925556596976 2.6193028407260286 4.697619275628789 1.3350592052648325 4.097561124655602 +1.9759308499605823 2.2136667105356818 2.999797688833889 3.634388941355392 0.6776609751049508 +4.119380231982512 3.7899650046814823 2.669210834472245 1.7255523446308998 0.9995027450824923 +2.0582020486698416 2.9526713889836023 1.8492586927828265 4.6447741386927675 2.935128959531828 +4.714965486884086 2.3714588634666947 2.8111100372301046 2.0794493740756383 2.4550663168250297 +2.572511049926271 4.892515972639378 1.8951481396735166 3.787007440882282 2.99358555197328 +1.2303113263434402 4.472491031511731 2.5698330201148334 1.295257816938308 3.4837151417929717 +4.717588955101865 4.24243548318405 3.28036378193523 2.1524558380550705 1.223906512664886 +2.497474990040167 1.3628087649043934 4.440762350496066 3.152103317865026 1.7170059827634365 +2.91281201927694 4.120191650458887 4.463645212116733 2.4379048277725066 2.3582598835913204 +4.691250368072351 4.043236773875629 4.5807484382529235 4.12376823945638 0.7929391656084867 +4.991660853553148 1.5202519900081106 4.3109439149302675 2.3026407624516154 4.010481398804231 +4.6095065837728235 3.829871801268757 3.3771940777467613 4.452821049539487 1.3284591738319071 +2.0842980130113316 3.715491035434163 3.258720578353578 4.887473277272938 2.3051303717226124 +3.2108788166567375 1.9655051177040654 3.14528789876629 4.116089606410267 1.5790540223841372 +4.459099587419402 2.8542610963451542 1.5611557980683624 1.5853119060362566 1.6050202802412266 +2.0765877319042803 4.422102380963567 2.9691713734115455 1.444390501950937 2.797569601444061 +2.6184205095303796 4.99604235989101 4.557586658895692 2.4593700625685133 3.1710563773630898 +2.7085340273244825 2.063258866860901 1.016325482468384 2.425316534358202 1.5497212062228731 +4.794373086176373 4.0104561095297795 3.0425770432203683 3.344370401374822 0.8400030102927477 +1.1053505868339175 1.034694472321016 2.3555121287747545 2.964837262487654 0.6134080249656856 +4.855352665124104 4.510366700028649 3.9610864678630056 1.885327312404434 2.1042317808603985 +2.5384363080888375 2.8677735050985267 1.9724067160380887 2.472896894390174 0.5991272051585548 +2.4875634356476963 3.7099291367648157 4.2166624666802335 2.5596760279422024 2.0590730840427423 +1.2240638204640382 1.4978658420055506 3.9833860513325465 2.14446956309318 1.8591883706926589 +4.947005608078691 1.2817748111819678 3.1090392986305644 3.7608265946176838 3.7227333336851287 +2.4562911226931896 3.786409272885613 1.0024370318099867 4.239257258187349 3.4994598828043326 +1.2171227775485889 2.6443447417739594 4.965824110704984 4.593434420659652 1.475003937764026 +3.738103003652129 4.222981140686265 4.6047736543021225 4.0977620132466654 0.7015465857228885 +4.3769647999315415 3.6915087320784634 2.2740707651915377 2.201460375619397 0.689291150117584 +4.488535248405141 3.7803555948046 1.2303661874669176 1.7563278176634842 0.8821304088471339 +1.3804387777229037 2.165901340507614 3.9554984370165966 1.3306220093284669 2.7398773144374773 +2.530801213537723 2.216720022608958 3.6888346924363886 3.9911139542882297 0.43591254471616814 +1.6152984463337279 4.0160259995791545 3.0553956526686865 1.0425422191570988 3.1329014873933017 +2.8235925377267006 3.389163400322039 2.552926022969374 1.2216000313910031 1.4464782391964865 +1.0743941160001769 4.860229285609702 3.136474983679993 3.6410945707066262 3.8193178525835356 +4.431277440598478 4.258857348200927 4.827053578937955 4.6932249836497055 0.2182631008191862 +1.6618201706736526 1.629344542560752 2.582733133560969 2.2617174184432782 0.32265423563599765 +2.3301367658752405 3.602155466065809 2.467521362270108 4.227086245648776 2.1711978611941123 +1.479901581885262 3.6192697096079027 3.9300342571360187 2.931533811324175 2.360910656124439 +4.51147264103296 2.878617901380794 3.232207522934779 2.5624553488446487 1.7648746628310465 +1.1049656403482944 3.874278952048135 4.819107848310747 1.8483891698123838 4.061313295614732 +3.1779797201939717 1.6047592278584455 4.731722391091566 3.9469919852221524 1.7580740961064212 +3.321262813614472 1.5578326610221134 1.830915320825064 2.8003014285430665 2.0123109424014394 +4.181276938875154 3.9431756577819543 1.1107645837756737 2.17896701160575 1.0944170351745681 +1.9509562198793757 2.818404606265608 2.1063566666650835 4.906115823267643 2.9310609065701714 +1.36042114370888 1.393377311208539 2.6358933586996716 4.862597666392257 2.226948176961687 +1.1308952790894669 3.667842499817204 1.4796551375176636 4.3918426859714605 3.862245139569409 +3.5526803270210254 4.358791958411224 3.9478548976681185 2.9772287229194716 1.261717533114983 +3.7611263882498216 2.1815101585738157 4.241029506782487 2.0662374163459156 2.6879189105479564 +1.496219715750736 4.816201731402981 1.8011404164284657 1.5266565004402617 3.331309352850702 +4.753804204705226 4.424206276926931 2.4311376708465198 3.3699558496525883 0.9949946566954464 +2.24010119964917 1.2396805770820816 4.378362863390256 1.5213427664161627 3.0271117020307297 +2.0343427310036404 4.162956286784633 4.153809597761456 4.183098981417965 2.128815054871977 +1.5431810558559884 4.5422520401612605 4.823506726606119 4.225368781605503 3.0581359960196917 +1.370994366218552 1.9249561987122963 1.0384003823725552 4.775906876093791 3.7783367375696195 +3.2157227731740483 2.9663173084216856 3.055197111326157 1.0924107884070038 1.9785684813235127 +4.0965414534461715 2.5944732558822277 2.378853824484273 3.7502497339947243 2.033945822964563 +3.7612142880065615 3.202344939182492 3.5380329201914056 2.025842535125032 1.6121584009464538 +1.6447594062159743 2.828492192615702 1.6779058784646503 3.3681505928704083 2.0635286535869244 +2.358193430908773 2.342040450557166 1.446725589595831 3.488685203666998 2.0420235023799087 +3.018928630766425 2.3194477567098075 1.3060391073742221 1.9833201516198034 0.9736442399898408 +4.522602122034646 1.6940407016943508 3.583472236117256 1.1931393068826344 3.7033027450130076 +1.78660369401027 4.195703167970642 3.289846294199002 3.9809443636059765 2.5062675070658735 +4.094489115170447 1.908890865361085 3.0970035723092018 4.93168625824997 2.8535767499158973 +3.0332792169722063 1.6111549404286434 3.35435644741578 2.601781196634262 1.6089769936277576 +4.88012310592331 1.6884816198580817 3.377983690641809 4.237628323293849 3.30538413350402 +3.088238687511248 4.3058861110977436 4.115975382143674 2.6795802335181516 1.8830550366788983 +3.910891735715546 3.044365094134843 3.973347470762107 2.22710725608038 1.9494161453986205 +1.165847312822975 2.846393734353255 3.266135679257345 1.8636194398347499 2.188901111691053 +4.8788293714944615 2.6031649305788687 4.720852421059025 2.368876518674492 3.2726807502482145 +3.0527561546021866 3.7863061752504032 3.4457743558180063 1.8678361175713785 1.7401105472106853 +2.8052643944068087 2.261070196044683 2.7824895540417165 1.4965235234101013 1.3963724279250966 +1.5176857318558468 4.3469745035282275 1.7935215444810204 3.1065777558964225 3.1191331436551373 +1.1888827511013869 2.6657241966557543 4.301139536873986 2.3708099787119665 2.430479964620382 +1.8487185440123772 4.4653944219551125 2.4093898094967456 4.407295588017979 3.292205970175001 +2.410824949306621 1.8000901301175367 3.78836024747242 1.7903680231300112 2.0892510495157466 +1.6166523575829688 3.4048808005015023 3.5020530120308546 4.372068180252748 1.9886395744324845 +4.782040194520977 4.030959709747652 3.428731889211794 3.4129437653668013 0.7512464039593656 +2.1940998536328062 1.5181382010151259 2.0192889922430948 3.5274149199033547 1.6526850787402738 +4.670801302704723 1.5001241810714783 3.1154400855205298 1.6333044558072953 3.499988490625922 +1.4693394305405851 4.973532818247877 3.9775696298754206 4.883271348875889 3.6193461981761166 +2.152842971967638 3.7230781906664623 2.446316279625069 2.043665358986064 1.621038681195974 +1.2470452036124575 2.313667519743594 4.012446633313289 1.9581622259793665 2.3146852035394 +2.55538330766331 3.998561161799304 4.047788893914472 1.7325665823341097 2.7281892659249447 +3.2441342595066396 2.8043696495183226 2.8281499785224273 4.648837751038554 1.8730448145167038 +2.9448464524309372 3.1881715783570237 4.677945546327868 1.458898595744428 3.2282302252112514 +3.748050580083104 4.17791763528169 2.1493990909170533 1.963044039983167 0.4685230945787794 +4.520515174545762 2.187199386229076 1.9313726017862884 2.43335558827587 2.3867026389420447 +4.30323886585694 1.2224754205690518 1.6023556929666012 2.211324795253024 3.14037366779204 +3.6620135068456143 1.8479843182602957 3.27383616492541 4.73478057059179 2.329175917247858 +1.6128636083070185 3.4743097286147138 4.960509939028892 2.9199259198025067 2.7620580729468163 +1.5356442423647332 1.701393931231559 2.9683202753587508 1.90932955465636 1.0718835318695865 +4.630174475115842 4.207346951505183 1.3911015677980516 4.268113373143988 2.9079167874653162 +1.9291996527673048 1.6308987772656036 1.7687987611870324 2.1376517749401676 0.4743795506552237 +2.542842222942753 1.2854824044516406 4.179718053992659 4.398471618252685 1.276247168471871 +4.463819133266473 2.263863237915797 4.740770505311527 2.6847370532007466 3.0111591617991182 +2.0519803493119357 1.5886693040191568 4.178793920958679 1.0710086190911978 3.1421309023008317 +2.805432422683587 3.7972096666061335 4.665851332050616 1.0642288938838766 3.735680164129249 +4.503492170880971 2.058774505346625 4.072307935294674 3.7716940734538347 2.463130763501314 +1.8429640118987902 3.1919727686353117 1.060836309061132 3.3875571537813305 2.6895082292135286 +1.0060994240400505 1.2824784049454054 2.6550091485297944 4.805317490579368 2.167997072639691 +2.0008245319041773 3.522374126217694 2.4461416814444084 1.8184595510738286 1.6459337850418458 +4.025733340807372 3.88159388784012 4.929471907320323 4.625174762696348 0.3367089754194311 +3.878218229945376 1.3940713032820065 3.159223496530627 3.000311968029763 2.4892245433350415 +4.557779796177424 2.3148092338736213 3.118828213440213 3.8809026157631155 2.368897283133493 +2.7006466005066 1.942880380459262 3.8649316828707447 4.318587300780431 0.8831834825821017 +2.066853059489583 2.7148055581455477 2.203919108058154 1.7532036732020808 0.7892951562831277 +4.161255380414568 2.7090376598130033 2.280757970940697 1.8772581191197961 1.5072320453230463 +4.926821199553256 1.676627389909001 3.3865128164986054 1.4240513403547768 3.7967110563747735 +2.081193431375162 4.127362386845614 1.5454659727103754 2.192940988544076 2.146166650206803 +4.341533462664 3.0362682125391056 3.6508042977135724 4.215272304547093 1.4220905399875952 +1.0508187545010523 2.3425559240039653 4.3590665545099405 1.1199673952769373 3.487169092318201 +2.236963835968693 4.899643386399691 4.727604237344887 2.49460885752758 3.475072769679631 +2.5473932417232974 1.8419124430448672 4.178261972399371 2.8407116204148593 1.512198433208369 +3.5233434103985974 3.55820705493428 4.315465196898601 4.874364837008377 0.559985965382301 +3.435737148001582 1.8231839200579132 2.422792533792443 2.4693403719949636 1.6132249112237496 +2.692964648257202 3.0550979015839053 4.634245176257165 1.3750101080293002 3.279291649599236 +1.595428179653172 4.908727551444168 1.049814547250389 4.585431054254971 4.845465592872773 +3.542205312648136 2.122949019144748 2.3377454129642117 4.450553117509746 2.5452396396088024 +3.5899573460656367 3.666230489325233 1.4860538521678288 2.2461592789099685 0.7639226741925842 +3.590231633705697 4.555935065921664 2.892717538824967 4.2899913039114415 1.6985161446370274 +4.575866295169341 2.3616692573348974 1.2797451004215445 1.7766275735618335 2.2692643553514946 +3.5900163491903547 3.277017490211983 1.2376732808745952 2.082870900910428 0.9012920185134219 +2.7571229859940996 1.2319046399950482 1.8663191652120439 2.5333278586272003 1.664689640762949 +2.404622093055671 3.036035351565273 4.8265294582516205 4.107210920904027 0.9571321022688534 +3.1780930070521234 4.5525592693915975 2.6910697261670613 3.087869879983695 1.4305970321436952 +2.8957330322164134 2.9241824035677033 4.019452138006121 2.0324932794708266 1.9871625178233818 +1.6043971906155825 3.0274001062196447 1.6466377113009636 2.0562684597565015 1.480788522341359 +4.536945651530663 3.7732445389983513 1.7719664608853236 4.527950949120598 2.8598408852026256 +3.15414479309071 4.639613608186051 4.073819040129227 4.104292820808512 1.4857813607424357 +4.2627323201168545 1.8962162050528617 4.957195830951187 2.109804494040583 3.702436488094176 +4.29223135313531 1.0882875015799942 3.346549359282498 4.067430884109588 3.2840411655087607 +2.4396669337974592 2.080295045123664 2.6180116682243275 4.242847693375834 1.6641034411956244 +1.681617890859194 4.709196548786278 1.313995815823966 2.104864800594508 3.1291702224403757 +3.7599294807738906 4.41224610257235 3.9269765411708826 4.600519051962623 0.9376441163459601 +1.4741797607759328 4.705218364542288 2.7904307328177054 2.5039900297043016 3.2437106429872165 +4.600192789114757 2.378362701935566 1.6631320916903447 3.681876222972216 3.001975483557401 +3.9597785224812716 4.130113405091472 2.569686684012138 3.8444635190310885 1.2861065085500358 +1.929305826350093 3.7015370777522745 4.81672808300414 4.802153870089426 1.7722911770159624 +1.7359914833609524 1.5874421038651993 1.8631972660993394 1.5308098160269012 0.364071881795657 +3.5792134889105913 1.817363515791551 2.8739767338395654 1.8399775667536207 2.04285819510655 +3.241933138843719 3.73070155194463 3.2960686406898922 3.7214783851687323 0.6479722311509456 +1.2199770681530375 3.2776726016905267 3.4524372534873473 1.9787028047409163 2.531008521155565 +1.3222096941504597 4.173918160045847 3.7372006609441923 1.1386561899521115 3.858066166122989 +2.6423127817742276 2.126617896212516 2.926687716214365 1.6050018651530356 1.4187299615819133 +3.7922217517836407 3.5796299102518563 1.3867037352950256 1.3991275634273102 0.21295455522560652 +3.7903974630158217 1.1135487124337922 1.4838867143352918 2.4235363208745495 2.836980898166562 +3.922236243878396 4.674160417556688 2.571905560443125 2.530273758769941 0.7530758061924033 +1.3935466462409853 2.8584051238144013 3.098525502104024 3.7389980208394045 1.5987543296497897 +4.783267829191434 3.327040568872334 1.010262491260752 3.8704013765886627 3.2095158945020437 +3.212585584715606 2.2553661280850386 1.1789980926809025 1.6048271747074523 1.047663827404427 +2.7877289453048992 4.862665635344684 3.637860988518708 3.321654411592019 2.0988922952274023 +4.664817275348975 4.646462472026829 2.2993030279689446 2.8521837052136285 0.5531852692141531 +2.918644523581052 2.4807203709483594 2.7448067243920313 2.244898186546004 0.6645946957886548 +3.296905368632573 4.856982090037949 1.1962844112041187 3.0929638636844263 2.4558567389267534 +1.8133849532822666 2.707732707607933 2.3197466841182814 1.1127953983200847 1.5021948315572395 +4.842272213413298 4.608245960697358 2.3041254989681983 2.244013579369079 0.24162311528112512 +2.3817108597326757 2.336189618476744 4.093415505957688 1.0690340745113338 3.0247239917524675 +4.069025152171584 1.7078520384306368 3.80048050199106 1.1051926622596304 3.58325480702353 +1.7074488345778454 3.848205115222238 4.533642911005225 1.0703795313532556 4.0714899840177425 +3.419217216985921 2.6725016635517664 4.421324861774921 4.460749805403829 0.747755604406024 +3.717987088575473 3.155353959752689 2.021972301638318 3.850173558345113 1.9128188290251693 +3.014677605377743 1.7298373170973216 3.6459994683345753 4.535948295192281 1.5629534480636083 +3.427906549361489 3.4271230630647005 2.9688824276524706 3.243005726885327 0.2741244188923772 +1.7434695205823232 2.3196843244625462 1.548505642110146 1.3819221682281446 0.5998112653004437 +3.9678432301689237 1.2222251766432009 1.9173596623558242 1.2153355015216531 2.8339471445743833 +3.5793820150081217 2.5797302272206686 2.4321106963992554 2.7568952765749626 1.051089301794363 +3.9202832933105514 3.603140046861847 1.4583412000450955 2.7183697939053912 1.2993274783954882 +1.6558636654968337 4.405207038986394 4.28242238897319 3.8732088148965027 2.779630323363086 +2.6148988905482313 3.7976214466915366 3.4196978839986363 2.9062466038387136 1.2893660697831386 +2.4621445684154324 1.6176958078067583 1.412969519925833 4.038309067879961 2.7578073629870365 +3.259466527677886 3.8049097034131703 1.5113317778379538 4.566699160047459 3.1036717123797026 +2.6309529237837546 2.5067205320238615 2.986226887630364 2.0998636006901688 0.8950271300903737 +2.399688774306481 3.0478501098993775 2.4467915293797935 1.5971988503044319 1.0686069610928135 +1.2330519064938676 2.825172312281162 3.1285446656549603 3.8810615366185703 1.7610022792742663 +2.64056259465149 3.7146262947601576 2.4074619667766104 1.6957316265676332 1.2884769726561311 +1.5548104508608604 4.075591911139542 3.003039779493082 2.4954393936026236 2.571380431254944 +4.522011395957685 3.883749678401351 3.103926841076013 2.524229804065569 0.8622219405794832 +2.7849193185542207 4.631161701351664 3.4323592760175257 2.6434414782040525 2.0077355970706012 +1.9170978467579363 2.413398607340626 2.4405258508452885 3.3192530387475387 1.009195677613392 +2.6799268044888414 3.053296948250356 2.3623125343306657 3.8616504295561724 1.545127628486316 +2.113513747864096 2.6167478046583015 4.659787517863144 1.6487451917929232 3.0528053336732626 +3.469186654988557 2.1250071610827375 3.4312001802062624 4.763316381332462 1.8924460587133791 +3.5944664582905013 1.7118987076532677 2.6459623819942686 4.22102931303284 2.4545665957538407 +1.4397986357465133 1.5184697113741943 4.941027989761084 1.9659397396835168 2.9761282287378035 +2.474330415868784 1.0060582059071321 2.2657120260357613 3.6666729119143198 2.0294123992691353 +4.535435968569818 2.497845464462675 4.429000481457459 1.3573606555070619 3.6860203855638383 +3.7470088121061913 3.4018129912001562 4.668120823066337 4.684324947439708 0.34557593726661456 +2.11679211434335 1.8933046616859834 1.4907413468859563 3.7114593013479578 2.231935230862485 +1.7107802718223337 4.827937091827382 3.2872320448783166 2.1501741875915816 3.3180667882550954 +4.203922625004575 1.8974286378714993 3.6607771969640273 4.275555407059294 2.387020477559623 +1.558212616524083 4.122558024807887 4.358260185104465 1.0709619954199443 4.169196176829456 +4.4762040786917305 4.656298723648156 2.356323085669769 1.821919030443608 0.5639341941965805 +2.4806073309239194 3.318606788754123 1.1511880043615408 1.4769086502246482 0.8990756533602692 +3.337456465147591 2.8540448607594446 1.093733307425043 2.311195233284972 1.3099237841094757 +4.381886081358324 2.131321786603505 2.2290157735145613 4.7892855462546216 3.408815183319814 +2.936384988414293 4.914841666855163 3.3938677434814575 3.6340926596958885 1.9929874156244718 +2.0400097050545067 3.441070123359948 3.557719237506133 4.9278936938871745 1.9596806721150515 +2.179744910345907 3.177882829082132 1.4377395411783973 1.6346819577290197 1.0173817475539269 +4.214645687374899 4.808006993318677 2.1772035891469437 4.183675830914254 2.09236911093001 +2.0186711913564803 2.166233496249959 1.3751639838661633 1.8037632394121492 0.45329014513890464 +2.421108602521407 3.9566798948017157 3.125088208536927 1.7966012162700844 2.0304819335068265 +1.6354070649443062 3.753960473961445 4.4477495383191705 2.171325404477678 3.109722718184715 +4.811791488451377 2.4595914926626916 1.8804870766682487 3.5640132239545532 2.892594874638507 +4.569105605856608 2.524310484567247 2.914906520281575 3.212316461898387 2.0663106643051736 +1.2056398948531273 4.902585845619583 2.419898928634885 1.1367098288289705 3.9133085271607717 +2.2075172765506714 1.8186738485342606 4.29097267584943 1.6415621894587464 2.677792960052825 +1.4700538519672253 3.623103726906682 4.338844235431283 2.9467284572082804 2.563905244730048 +4.80221604716169 3.313025288075063 2.17569135236575 1.832123832558819 1.5283087900078605 +1.0727785142818482 1.206831633027941 3.1052662489919562 3.420843807869914 0.34286941291536205 +1.5394936869657316 1.5242077268555154 2.6322955947964926 3.5901291141164577 0.9579554850353753 +4.635928822686586 2.53459252923142 3.0675954544079866 4.794856606049463 2.72011861950205 +3.743050924975476 4.852590566768118 1.3237278523234042 3.8315607535726564 2.7423172823904944 +3.8293041501776486 4.385704224633242 4.708022899092702 1.1384734055334653 3.6126534057148625 +3.4422664245455707 3.1086227544906517 1.9067412611298695 1.5712802272663087 0.47313021865922367 +3.696296872256033 1.7989641088352513 3.322037232812331 3.200337939065077 1.9012317936665484 +1.8115105913861171 3.118929852068275 4.38059058883581 2.815846946586169 2.0390605163072903 +3.802992640372509 4.882448714185621 2.228008058948616 1.6543328374118489 1.2224273700704176 +3.7034503674140815 2.9162872060049687 3.4803276587970267 2.8931556791844595 0.9820370544545303 +3.979442270069603 2.6489917008898196 2.2930712559001907 4.932238580313619 2.9555545813404196 +2.1640042907484 2.151610079388561 4.1417542011881725 2.5586177426856405 1.5831849742576423 +2.5594747137050393 4.795358306510784 1.947109757610208 2.664247956328619 2.3480763694222153 +1.4325631057916204 3.779943665758503 3.6124570850828324 1.1519296604623608 3.400645629967916 +3.143623377301597 2.7570896895277914 4.266971774350315 4.317069185472185 0.38976665119675313 +2.2382517627543943 4.289444835649441 3.7924609498035586 2.1064027510392194 2.6552184979607745 +2.274300904139973 1.1965362203441852 4.47118253647658 3.5151282623682834 1.4406999995412566 +2.572430854686114 1.9707809904766966 3.2487644655136387 4.051261447618501 1.0029875200572647 +1.3937897477458692 4.297321943997131 1.5212546766297401 4.921911484714924 4.471573094677508 +3.9834649064246683 3.701527161617773 1.964161120157513 2.374593639070465 0.49793949886309347 +3.0843364901566255 1.5663775055785822 3.1483514923121 2.6864212524054136 1.5866880680844149 +3.469164592082008 2.8501998936883397 3.8782767646523246 2.87853424152326 1.1758411501601875 +3.2812348047164255 1.1078122169077358 1.2333388676845143 4.208895545945932 3.6847935207746914 +2.5223509243535456 1.059279060668012 2.121344003878769 2.820464869766822 1.6215268309307502 +4.582543999721393 2.7606173379031325 4.0896608649281525 4.8506517429602445 1.9744679985991884 +4.2837467371274 4.55789251276026 3.348367645806542 3.970130306509252 0.6795180001600071 +2.403910721240939 2.8925671392909997 3.400590202254549 3.3445780261436675 0.4918561362575361 +1.8755378096118775 4.087364691501279 3.887461744575725 3.6674618568148927 2.222741124391991 +2.9390678898859544 1.8668121533859177 2.82321652990604 1.2173223784342015 1.9309656626125415 +2.427986465649394 2.6583589805348384 4.1031503106124285 1.8633545378121368 2.2516120002053417 +2.1600573205540896 3.9996255400697125 2.628722894624372 4.732093471218177 2.7943119039814497 +4.431436890823049 2.2260807069633946 2.824759206101938 3.402123730350467 2.279681050399101 +1.5050101523036106 3.6412394369607224 3.634909415491029 2.773894271885012 2.30322005769 +3.5468741366224994 2.4259114795520866 4.087828645611913 1.1562456570090633 3.1385882332048554 +2.2008567397616114 3.4626027502324446 4.066783162057812 4.84189503641465 1.4808110658379194 +3.8184344703968547 2.073380560788045 3.9185214042051153 3.3977759057830075 1.8210955553094628 +4.393855351152143 1.373371055419375 3.697173760078057 1.8842119876510433 3.5228050994981226 +3.1330569132510884 1.01215516623961 4.108330072116314 2.0748496306206565 2.9382421490445125 +1.4562815758116603 3.003449756427381 2.6991006064624434 4.390651475858018 2.2923947572053733 +4.679328633473951 1.0305247837269391 1.4481828745759775 1.898191914387497 3.676449057152934 +2.5137194720038294 3.021399075862007 1.5239306456781407 3.3615286772476973 1.9064378053851916 +2.626788658991047 4.076501537326145 4.914226149857951 3.3808960116138094 2.110158463826457 +4.567166759393913 3.7414214227359426 2.5507665064834906 3.299730050776577 1.114810186396073 +1.748963816797116 3.1563856323753057 3.9643314384598214 3.33486455115886 1.5417732418140384 +1.324426148499306 4.796282725740225 4.984376405455514 1.924701895744628 4.627677192534671 +4.818197703028679 2.561615805229367 1.6398459063808208 3.054873115182582 2.6635434787374597 +2.6410177978215197 3.6691164509967864 3.652463449620515 4.814752217664012 1.5517416089609979 +2.167541775938444 4.7507386739805035 4.809120260688282 3.538597898456007 2.8787381414408633 +2.8681375604738535 2.730433133486872 2.75710747814275 2.314252122283114 0.46377082209360426 +4.090124485058361 1.5660625946971662 2.811910787096045 1.3492290047453612 2.9172463767728463 +1.4082210667539448 2.4024049648741332 1.5219214104367977 2.0438843701358915 1.1228744162101527 +3.3153749543934348 4.184549811387236 4.359289237103399 3.7284669436687556 1.0739654081600292 +4.975767683308364 2.3900067526056343 2.880100630297929 2.614506367569206 2.5993652885162293 +2.051819787990786 3.0731101201008544 1.7691103500561054 2.352303676080827 1.1760732961772709 +3.7348086891908197 1.483867356504196 4.981111701344851 3.3013371562804084 2.808625892753161 +1.7552429930804667 3.9783209239718484 2.712730920786979 1.0563391602300003 2.7723111570055328 +4.374001403017927 4.529800436394769 4.640042634468392 4.7297091046714606 0.17975932431959143 +2.332325432615571 1.9272227487446294 2.948434520118918 2.357248480327812 0.7166652762087271 +2.829395697743173 3.0084154121888407 4.157381889996989 4.346982128142024 0.2607610179165252 +4.783890677721367 2.243043922995521 3.865972729169837 3.6856461538799627 2.5472377008745446 +4.505523375701513 3.1116458201246746 3.5495412642339943 1.4815539136827591 2.493885787677691 +1.5583541200749078 3.659158259747036 3.104621765891243 1.530587573728733 2.625064127094848 +3.6445309407036706 2.7164538690359867 2.0099782457874364 3.756603720591651 1.9778846276237425 +3.849313099918786 4.9755994639871135 2.4020934094451247 2.4074168052595994 1.1262989445210585 +3.1809482789016053 4.4048010071251715 3.1668172449746606 1.2965259786484538 2.235129732538215 +2.704349379170678 2.0859030848295395 1.455753803701402 2.20954168847071 0.9750240992966656 +2.9224661339216693 3.8094539014721094 4.645535783549293 4.91373665184266 0.9266493433534767 +4.936250276324135 4.2647239438090025 1.813853411127901 3.661594381718667 1.9659843106344799 +3.480582577394319 1.6977383734512062 2.431375693287114 1.1818138639594262 2.177139917608951 +2.160155310762549 3.730760792399462 4.268269562911727 4.310013168680565 1.5711601151921162 +4.334911069213279 3.4772612750878804 4.705127670043664 4.957077685881965 0.8938914810223098 +1.6712179246291474 1.6867440762575718 2.0639416644855557 3.8636703213609866 1.7997956272207773 +2.263822594744901 2.2562703899512475 3.4550867517471495 2.961589844513878 0.49355469124105134 +1.7179079695729031 3.0238804764089537 3.048059897016385 4.790506249292088 2.177540695181273 +2.536908267157395 1.1843702307289212 4.607910414528351 2.706765599866431 2.333176107005576 +2.27070741309971 3.5058701846324114 2.7881652445259113 4.019126004134426 1.7438152034766519 +1.3804772434009567 3.202337304315935 2.051816411466358 1.6311746680705608 1.8697897095246259 +1.8992976272877895 2.171271709654482 1.464044201276705 2.76626344717382 1.330317580829501 +3.828997766029682 3.444627188390283 2.866997426291826 4.235876863846078 1.4218198393304589 +2.213728449315476 1.600639751039644 3.7476832155680877 1.036945266284563 2.779204559157063 +2.4055536650245797 3.204237928312169 1.320856390468736 2.3907070401424506 1.3350943655901288 +4.969589786107834 3.971656464160956 3.5648869064622524 4.139771927011495 1.1516786452408647 +2.808616599263625 2.649740412532438 2.9080779159224 1.6220991943320557 1.2957557312600936 +4.815445103759166 3.854668900935663 4.8622560887407955 1.4942489100064353 3.502365381840983 +2.4319602881378772 4.983524554500079 3.749642489806524 2.9487622375836486 2.6743016628228493 +3.6065195776835446 4.370668997345769 2.580688269339943 4.395643048419393 1.9692600604474382 +3.7072779870106336 1.0816930246085232 3.5365701852800937 1.0154110395531886 3.6400466800405886 +4.978421848955271 3.488914065012695 2.6467280539821596 2.03303042639424 1.6109805140139235 +1.2148438456025552 2.7567076006941256 4.41472167524667 1.9635155304236815 2.8958168802054898 +4.296869620167646 2.446851067334867 3.704194977937075 3.515907796867067 1.8595754107808535 +1.8919431881520143 1.3902722433305312 1.1898035847493769 3.268729930181923 2.138599655524989 +1.836259672820256 2.698408507346635 3.807570541624126 2.9127053738847097 1.2426118787893858 +2.670896341708618 2.2088616391837346 2.4879344861673642 4.8272651601042185 2.384521769319608 +1.7241469349469543 1.6858232455265565 3.5703577901638917 3.213373139305995 0.35903585631371904 +2.0959937982359174 4.249039288999667 1.0527269821322234 2.3496491415416187 2.5134860200258213 +1.1567783976510615 2.401076598780704 3.210121207975046 4.669880611227737 1.91811770460499 +2.0314899199111434 3.349787144028298 1.9771605246938808 2.039776377393158 1.3197834353121167 +2.4301501509377412 4.950079142521538 2.5173965653670756 3.4150305782082055 2.675030643494351 +2.1325933158052783 3.0937735376578175 4.426767657202372 1.2963387895437113 3.274668275467178 +2.7986906972958994 3.1010736519179027 2.068713021150847 4.08406332054841 2.0379088008367248 +2.2007782477323534 1.929923381219392 4.0320570194835685 2.065553161819719 1.9850692131310073 +4.890318024373562 4.002148089658267 2.336645342218898 1.003955573884563 1.6015329692376599 +4.811516823752552 3.7948552168813494 3.0886169720764025 3.4423030657587517 1.0764268092862674 +2.635319914384258 4.117673182643689 1.099547202750351 1.080947615794582 1.4824699513158244 +1.2688468058969775 3.9702569591685726 2.2467037713355706 4.0647685496168275 3.2562211771047953 +1.0206492444090838 4.835241281608804 1.198424613192837 2.4281575951282073 4.007911627908875 +3.7890801456122567 2.0652967985060227 4.773500570691507 2.52824287898647 2.8306556007259873 +3.461140406858625 4.743090279467481 2.1078920018050833 2.736336239989829 1.427703623442018 +1.7098721259672702 3.3032421704478425 1.7723371638920247 2.357348296076709 1.697370355410989 +3.8748900572948055 3.495913644396495 1.95378490794791 4.327501147879753 2.4037786730998003 +1.25409372359732 4.537745033246571 1.2969857508618654 3.7669369228556886 4.108895802450447 +1.9121779385353381 1.6548164138671244 1.4022877277488042 1.312190260248745 0.2726765630366347 +1.7330609145883966 2.451517017737779 4.942777669856856 1.0248003708567213 3.9833058240151464 +1.3844297022136072 2.1604760483294725 2.90176686739888 2.486210835636765 0.8803037810061146 +4.186559978573169 4.440697665874548 2.575917479804893 4.153123735712304 1.5975498545523916 +3.505351420600889 3.0391844166222053 4.913987019022857 1.55339066417676 3.392774607279908 +2.168914967696734 3.584612746003467 2.4146134459651556 4.736856504022958 2.719745028527541 +2.2618762269041977 4.935404714440268 2.7084154735282437 1.7661931826889012 2.8347023510452463 +3.4596766733553603 2.3819713160070903 2.603287607491468 2.933813738590246 1.1272516846721894 +2.883094213733619 2.8921796174861707 1.6175554907314154 1.405504585222722 0.21224545010059395 +4.360920250582851 4.945123836470329 4.837925877366608 4.3057115914751165 0.7902821495331771 +3.4217336411363655 1.3817505416265208 3.346907572473837 3.730591759231105 2.0757515750815125 +4.024290108552731 4.77195599061592 4.023901943302849 3.6066980909398425 0.8561911735283538 +1.2270467222422 2.153287889602226 3.9470773401879704 4.60198807699634 1.1343856369415761 +3.2632823730610734 3.928780439911751 3.7103835939205103 3.856910371215258 0.6814380187855488 +2.514208801281711 4.190135307118998 2.5038606706256243 1.055902899412541 2.21479375116157 +4.84400936431487 3.374408221390429 4.8403667978831075 1.1946652686054327 3.930759107330593 +1.6436595819122672 3.282011883942694 4.908735051494035 1.7125563553785574 3.5916231042623097 +1.5387325357443582 3.792195052150183 4.1587141159028445 1.572413858613647 3.4303122793268024 +4.010822080998428 2.947258419616071 4.563036426648121 2.6013830703146334 2.2314236604077404 +4.252469869865179 4.521104599449012 2.8142274010456236 2.725424471352628 0.2829321089248067 +3.722322189974914 3.8094640043674 2.7113328797105023 1.952899697839578 0.7634229412183452 +2.5982031260791274 3.0351533814847396 2.4882380439863327 4.534342272878746 2.092239957841941 +2.420575032894694 3.609801985570295 1.9451990234133194 2.173710194764418 1.2109822874023994 +3.0524818164325422 1.3912144877442962 2.926475728354796 4.524476112089644 2.3050844591432442 +3.9784404317347803 1.8161562497208013 4.9563017259780064 4.012167057771479 2.359420088813629 +2.626246855840972 3.278253621114714 4.079004288589489 2.1775462361778617 2.0101381910315883 +1.9562958489834466 3.190283667935383 4.691235537677301 3.4488329845445973 1.7510825341349325 +3.9850490902416547 2.788318324200103 3.654350258851076 3.634555429008171 1.196894465556136 +3.510680244054161 2.84349068309662 2.3462101656524488 1.9886619331525708 0.7569561736418454 +3.6058307716828244 3.217593022726922 3.1835466789203024 2.464930468179798 0.8167850439701914 +1.5003707088485903 1.9841635464137721 1.8065499783338614 4.803611898567352 3.0358583075290304 +2.6002254477098248 1.9353251878100037 1.1856553333859545 1.8052993879247752 0.9088735390251818 +1.6955223626245401 2.928968050459729 2.4760787245212743 2.6046748805892763 1.240131136692684 +1.7867205955087884 3.3225184761196327 2.0197409580437675 2.687049340557609 1.6745075716347182 +1.7549546889549865 4.075553983891778 4.294759749114114 1.02101957999378 4.01279899603421 +3.5029800525825405 3.2265547560701897 4.154033242810343 3.9990687841965418 0.3168989239259254 +3.3192727925291745 2.1986067026299856 3.694959978257323 4.607622803980764 1.4452840269329184 +4.8242899314561285 1.424183864520952 2.645362410695407 3.625239089278945 3.538485491229447 +2.785832901273375 2.694492537828795 4.593738664240195 3.9885260879558992 0.6120664379680223 +4.9605194665203705 3.336548669980375 4.07634337533576 1.6298775906239507 2.93640528261688 +1.649226197962523 1.359727252372224 2.063092907106628 1.7845357988502144 0.40175079596445146 +1.0103318009711422 1.5610996495256577 2.622157557397244 3.7120088486133143 1.221114679285572 +4.51765384027486 2.978081201625704 2.9472024096615086 3.9715402330595313 1.8492030408045845 +1.5690836927626841 4.325472830052005 1.1367818254476894 4.443079134101238 4.30456536358507 +3.643482443704663 4.011120522937208 3.95270941619302 3.2813361404045955 0.7654409400761598 +2.5634704205272825 1.8401163144927857 3.849506082633041 3.6732896669969177 0.7445088232228071 +2.656554896792414 2.3225049877328723 3.6007229931307507 3.8600765347056165 0.42291086681488066 +2.300204571928574 1.5048435627867138 4.249656447692241 1.4666666617074675 2.894413806586532 +4.530257911942634 4.337452906900602 2.6340462996122325 2.5915540484296935 0.1974319158085089 +2.9300084885661675 1.0710012359874446 1.1920358139897207 2.606056771970333 2.3356719022047385 +4.936971901669282 2.2147882308152327 1.2514314740923154 4.678978169070659 4.377026420313384 +3.8853817286270176 2.4955721957574966 1.093454794676373 4.012010989046448 3.2325749484506825 +1.0433251507082022 3.415818057111419 2.443502411341804 2.9425377188052217 2.4244089648878737 +4.755534645258475 2.05371539884897 3.900308699018952 4.941466672330749 2.895485652815354 +4.083524090157731 2.82515242508522 3.65832053531113 2.8893374478812763 1.4747319201165048 +2.4307474629276506 4.193326930420609 4.291294514504182 3.2977344394677073 2.02332597520376 +1.3657861004091605 1.2346537650945444 2.8445085199273263 2.078834958542887 0.7768215316069681 +1.4187595220037674 1.1364195450858023 2.4431627571888446 2.1344813687992743 0.4183300874956878 +3.332650963201425 3.339035193747285 2.5510943654707656 4.754367754110436 2.203282638130523 +4.497175773718331 3.0721964527057946 1.3400918805066921 4.807444689609234 3.7487466663012365 +2.962768576173359 2.5303228511043936 4.481473703075226 2.990014731753821 1.5528873649642223 +4.799387274937001 3.8271645652390025 2.823662080834782 2.379383021265105 1.0689251049650927 +3.0838488806158773 4.815626546023012 4.913251689671942 2.5043654834407785 2.9667805171555495 +4.069532006955941 1.1171336542200612 3.7782900946688542 2.869352309303895 3.089146149165121 +4.3032407402635275 3.334778295784633 3.3916663043467135 4.67679808422486 1.609187123369687 +2.4390019891332684 2.3485196955949803 4.584100057931571 1.7866759840776276 2.7988870099419056 +2.9892536125635845 1.8820309209339392 3.0681066712244665 1.6266576043216152 1.8176131330221779 +2.1955107169439265 1.4210421001121256 3.6826704422611023 4.711476356113102 1.2877279397583214 +4.432560177202456 4.711095466912558 3.3410799189513622 3.3349041494576457 0.2786037468210539 +2.9644384496088922 2.7146451663142828 4.920353981915279 2.104436883359537 2.8269746709720787 +2.9871089583593373 3.1146181791566936 3.822534462988373 3.8921225155233503 0.14526217141417 +1.1361057329825623 4.19054698279499 4.599659101684439 3.0620280343894666 3.4196375023774634 +2.1100047793218155 2.0166131614877854 2.7445834137849197 1.5250952102059196 1.2230590635574368 +4.971509898275471 4.336418570934546 4.653818524899398 1.2870976514709445 3.4260984273138604 +3.5783083537890388 4.511427697782196 1.733026770485517 2.543117798042677 1.235701898947653 +4.678470047701077 3.9630514600862656 4.971470194132996 3.551394860359256 1.5901061942830643 +4.716157918056643 2.246999696588174 2.9992533317431347 1.6583863239140255 2.8097449448891125 +1.846344282761787 3.1604683495009835 4.792405502928989 3.3023657243001936 1.9867412022403201 +3.262896548724893 1.6737756425518544 3.146464639195816 2.2877571591305546 1.8062900627408243 +4.346790716511171 2.2578739956048945 2.5068147930210696 1.3178208888612994 2.403597214803454 +1.8839984964742307 1.2572555548849214 3.262233928141663 4.654259514069871 1.5266112624734534 +1.1763742305149867 1.447549614520395 3.746978779951893 3.5160530248410082 0.35617803590902836 +1.2602359417036029 3.8405215157571653 4.229057587265988 4.181504574268557 2.580723722662706 +1.7905556729338175 3.1861591970089567 3.246136290739247 2.8775917939471074 1.4434452682823546 +3.3010523350030887 3.0453579117318212 4.17924812396201 2.3548516313811483 1.8422275104430983 +4.872723866746559 1.9917239869956092 1.3572672606566143 3.916473833100175 3.8535306651904695 +3.0071092373041233 3.691139783651876 4.6166146618066435 2.3866766498009695 2.3324925135409593 +4.872481895252667 4.744738809330125 2.979760924923235 3.0053471680040715 0.13028028183883295 +1.3144303497343266 2.8755882112756996 2.845424794505379 3.4800335688348856 1.6852127952007816 +2.3994095081983136 4.310718116400503 2.6206528103350877 4.8680859311439395 2.950263755716835 +1.5545005205679616 4.233150828085009 3.6616546996023307 1.8094505732656119 3.256658962123596 +3.9823577774021723 2.5973317549442374 1.2310570957869365 3.1112350128679775 2.3352443304213053 +3.3398186839169752 1.4392676914335842 3.2401425549658533 1.211990521512556 2.779477423155358 +2.2531598059180857 4.833830146319417 2.728984948481563 2.910294504291464 2.587031611877811 +2.931912862824634 1.1342994106467943 4.866867349341911 4.749497971484903 1.8014410049483363 +2.0405218075938145 3.709825842685715 2.232220060772723 2.931777445334728 1.8099603575408312 +4.858049608590503 2.5039626646275797 1.6386630777000661 4.043913358742739 3.3655540783342874 +4.263424179070039 2.559217544541052 3.454977425725394 4.441949167705409 1.9693738783277497 +1.0112708235502406 2.699859347104052 1.9159506741940495 3.526308167306639 2.333362907372427 +1.4016727029800515 2.5459456125140023 2.7507431401661155 1.2772789066725272 1.865598386276677 +2.514448021550077 4.45599912236222 4.299558515330074 1.2912219293423828 3.580462217599415 +1.8105647261912483 1.8971071089393678 1.075234684466583 1.3615708417618433 0.29912869970355244 +2.381531561110175 1.16554949427201 2.004926914895419 1.9111991662471315 1.2195889790165753 +4.701929605187876 2.3012962739947063 4.144159226325936 2.602594363815971 2.85297434551399 +4.823180033731969 3.5311505687399105 4.8117522764539284 4.871379961925021 1.293404654113439 +1.3411648018839513 4.6076939237054635 2.689964290360764 4.189963582026894 3.5944694154641117 +4.191286969136141 4.302160924841744 4.751289614534317 1.357368553666039 3.3957316150513224 +3.826545468275634 3.696831658323569 3.2672631355998445 2.4635733467520278 0.8140902586264798 +4.994870250793367 4.2993176827802815 4.194432684940394 1.6697521084839901 2.6187411838526233 +2.359028042503483 4.551967775466912 3.190132010521724 2.9231583174667763 2.209130966057267 +1.3179600482900158 3.2051924399747844 1.6918332939117975 3.981075391687262 2.9668629025372275 +3.5070278685560616 1.3508445527659605 3.6022188900273107 2.197213676494809 2.573551270393715 +1.0489610717639932 3.755055459488239 1.0477951144958468 2.0985748929977324 2.9029441913652305 +1.0996668350224392 3.6618418066351976 3.6969547903546482 3.066559601298633 2.638586492716092 +4.21340911207729 1.0288494851783603 1.312452439666529 3.293342077072398 3.7503791505468627 +2.479061745035236 4.851872690401034 2.097886426288695 1.308839088943988 2.500565432660882 +4.497920555504884 1.024977540491121 3.1113197053176203 1.635835372649392 3.7733787513953976 +3.7605058221027003 4.662900349232885 1.6366734449173204 1.168007982065399 1.0168398097363789 +1.1437315276524247 1.2285926827103952 4.696108230543329 1.3364230895750198 3.360756709742766 +3.022783090862836 3.531086274623738 3.243032111565433 3.5705179747867795 0.6046644666517953 +4.9412615311669565 1.832951155885079 3.346396182588284 1.7675729443290145 3.486298353089198 +4.146849070882864 2.031729262876172 3.191601963721034 1.0093762451204986 3.039052630203019 +3.362500343851976 3.328385479915539 2.7839347502970337 3.638374949592741 0.8551209727950132 +2.288953549217664 4.013148042016618 1.0278912337390111 4.865282094610276 4.206948450848494 +2.0686457855596134 4.583798920035841 2.857574177126069 3.2108718999478256 2.5398453832500576 +2.06107497904486 3.519205308504201 3.852864058070891 1.453722371243817 2.807494415161082 +4.887695591834595 2.1554610800746454 3.067069835512988 3.6854306284473957 2.801334592206114 +2.1286583207316196 1.6137900836076366 1.3229300255431298 3.2580406717397494 2.002434147387288 +4.805735037501094 3.6542037015569195 3.9621162148897984 3.0531225709432532 1.4670698219227993 +2.1182426339214366 2.1968563526459244 4.658083451760744 1.7187539760297037 2.9403805678301245 +3.4583715923963925 4.756248246198687 1.0954757739465002 4.760262436068176 3.8878200945195465 +1.9997299147750045 2.677784830626468 3.361445523013606 2.9212559490538124 0.8084091352361377 +4.321672649014328 3.065846450325658 4.650823424667752 4.485763482435257 1.2666271060744867 +4.037392697288428 4.898695837406512 1.8685648224044926 2.4874609652420725 1.0606014966972777 +3.2380284474059366 4.130560438256495 1.598445941577511 3.483803175151202 2.0859494847383777 +1.872802340754888 2.6210820149334664 4.52033947782958 3.888439843212491 0.9793975796468003 +1.6707977415511808 4.9075077296773255 4.392730429871307 2.1497031666620483 3.9379516059412873 +1.7723076105224504 1.8598214842036986 1.8403931843340087 4.247133515277653 2.4083308947645508 +3.6198722681510755 4.260752637709533 4.4928539442950335 4.816838501271123 0.7181181248543852 +4.08875500833439 1.6205371717723072 1.9477573171734655 2.096655679261051 2.4727049987727154 +3.0143894170445438 1.5209992227191536 3.4639185855584285 4.149923206391676 1.6434161409429426 +2.8815540867238996 4.414875143632198 4.091028015776024 1.7287614602715986 2.8162700053107694 +3.726970582612964 1.7220920068551884 1.633156361331785 4.819757098731374 3.764832315406376 +2.4273287770412977 3.863193677851293 2.3126278172962493 4.450707883069437 2.5754794468282554 +3.556006955409303 2.308607343593255 3.9728261417546444 2.2206407530165664 2.1508508614188098 +3.0266609266285593 3.6634105118699423 4.846084894888674 1.150417625488846 3.7501208781075643 +2.2506913966370146 4.325187213256045 2.4883631822287957 2.602840994783502 2.077652055262664 +2.4161777535482885 2.2577847813275134 4.904175043611298 2.699028145733655 2.2108281649346524 +3.5356007864950234 4.558441033230694 4.001803047352931 4.303801647174238 1.06649206496641 +2.9278075726096597 3.862193616536387 1.0874536620960984 3.975301497887167 3.035249973522477 +3.6515485077504803 1.5830917121242427 4.994608629465805 1.7006626968339598 3.8895492441251136 +1.7543802748028825 3.351655807882368 4.5603227225294 3.834029857146122 1.7546482424922116 +4.754693161772813 3.5704279049046126 3.210847736802371 1.1364892384750336 2.388607832652307 +2.95857649603616 3.736457438834452 4.871036633408216 2.029414752741349 2.94616932199313 +2.365431134367086 2.564027136769869 2.336624516610583 2.0737118266143204 0.32948968835372827 +2.2812079395628664 4.819951059015695 2.818266096467075 1.2241001738163422 2.9977627683841064 +3.8057482588919744 1.0745841412759183 3.697286943280495 1.9064552321311181 3.265935647714403 +3.786877664332632 3.2034973854063407 2.9148409080227817 3.052237093646894 0.5993415233939436 +4.705027280241955 1.631228554264852 2.1664942678710837 1.6530565511285307 3.1163852292026206 +1.20944639716231 4.88687377452878 3.215733191565929 3.699108008056983 3.7090596286689967 +2.8082880622462922 2.648867019372001 1.2947578493124254 1.6751154914897248 0.41241605797277237 +3.317370501897628 4.442050816763598 1.5193268410756442 2.7754703974449084 1.686061222155068 +3.070208688800187 3.51880773145093 1.537622174808936 1.26248926196801 0.5262501503994992 +2.599151728266101 1.0858670790300806 3.4816187372464187 4.028300365011648 1.60900317953366 +1.239966426135 1.0606133020009318 1.7715494015597901 1.0699452589526324 0.7241656689323068 +2.8879806654273663 3.4906304819937852 3.243786498086641 2.1873576546793263 1.2162354634652184 +2.126962632352781 3.039487776357842 4.858789250175071 1.5221142591465862 3.459205419485289 +1.4640421494037144 3.080247427854979 1.0006358340030053 4.204991171748256 3.5888734489572367 +1.5807331131676663 1.0223627638337462 2.034751541103839 2.5129759931847193 0.7351707785156739 +4.243313245167509 2.2219009993481413 2.774005778342798 2.7044849861758684 2.0226073786308647 +4.842569440556563 4.261524184388767 1.431301094786206 1.3892658063684875 0.5825637777852828 +4.676358593591544 4.682211580054143 3.5943810831050875 3.97759775722408 0.3832613687463864 +2.189307276262501 2.6934746789372874 3.9224910974279377 1.6459376814038822 2.331711865975433 +1.355449726396127 2.8465980441154985 1.170189485124025 2.719416180134577 2.150261997518123 +2.4558188852548004 1.8135387463523682 2.01917203264453 1.953237543372809 0.6456555844287651 +2.571048996725385 3.274863947959491 2.545412535090855 2.385971360139625 0.7216487884355491 +4.219839868690814 2.7680510946010064 4.813948069699304 4.694368155420227 1.456705186533012 +2.9330971970373563 4.565542720851922 4.375218057676938 4.977596013882165 1.740039537006041 +3.054207423087279 4.26775320735632 3.1100089468298724 1.948070511207244 1.680117346703593 +1.6044123985379257 3.0928082873932636 4.757415585810273 1.4183700250719276 3.6557554046527683 +3.4026639889166037 3.1028887028242904 1.911163321825792 2.5682583928719027 0.7222459100229102 +4.59696610832251 2.9971811728700657 1.1470287278969913 2.532356207938331 2.1162334622291255 +1.8102290866008648 3.890265762127257 1.5916368229484252 3.730059606145925 2.983186982278018 +4.620999123442495 4.953889930127579 3.2214193102074073 3.466604728608752 0.4134394497046554 +1.1851870946061989 3.1781963321750926 3.469470749780846 2.748335206595921 2.1194627367990124 +3.636771960090225 1.0271955572973064 2.108572531825605 3.192622291409843 2.8257835874794575 +3.727954151251329 4.144286199421233 1.4471211004771343 2.0789078785621435 0.756628645569532 +4.295134456294543 3.445263591855389 4.345942153097376 3.3245593371333038 1.3287224476801962 +2.885585144077165 3.5390511376272538 1.538785515811604 4.753062750932939 3.2800298701300967 +3.0618690007700975 2.403796292740481 4.743469323901284 3.526864772123099 1.3831797874682923 +4.433054088501738 2.2373456463496204 1.8521542326788754 2.3815109010632725 2.2586177288999365 +2.679299974177145 3.1906454460275255 4.864382079774037 1.9859561924078948 2.9234927365467236 +2.803582892973737 2.3043419029111023 2.0732350706610814 1.0225414628514802 1.163270657951397 +4.566367525662017 1.624513079078025 3.81232921789082 3.9873074158181527 2.9470536056603893 +3.5000942384405804 4.05011253363778 3.841800236995603 4.496136588141292 0.8547959905628291 +4.03485341581216 3.012261720632382 4.211660830963025 1.2027101767683148 3.1779675603173523 +3.3796001400686424 3.0339227197367413 4.024962629925188 3.5344188585871206 0.6001050495753989 +3.244281411188621 1.6548663974355065 1.9289837133510597 1.0730338237834576 1.805239679210105 +2.636156819219442 3.314639586552086 3.3474553695788303 4.365070471522669 1.22306147076569 +4.148884818824129 2.6445053017865208 3.7241384767757846 2.4010034715124418 2.0034580039111214 +3.255083454141033 2.7006289250484565 1.101689842220173 1.475775462008111 0.6688496660411789 +2.7847959474375186 3.8806660637788917 2.0293126128817955 4.798455406913462 2.978100590246669 +3.0794503759200174 4.345914115527722 1.3286089145578637 4.560706663688469 3.471366627666438 +4.404228862608749 1.0258947490655612 3.3363219568233764 1.4572190355317534 3.8657688978437843 +2.835109371162403 3.671322935011723 1.2875199789356615 4.577965086267003 3.395037868526115 +3.684844736551168 4.924302201601929 4.1067426863249885 4.47287310793952 1.2924033013350333 +2.0543342447238113 2.3346346749659745 1.1287221878551983 3.178586716171684 2.0689400464112317 +1.321451455833207 3.9487248281525096 3.098633659464568 2.1344839440171675 2.7985978715591395 +4.13094755091544 3.2727529990962076 1.8319087463934465 1.795262904939399 0.8589766041447745 +4.9915786749335425 1.4874584805787427 2.343865359873423 4.193203192242791 3.962184846106722 +2.181127418794942 3.87774585412292 1.7495148106096052 3.6028784243402487 2.5126620942330202 +3.926112595396929 3.765905915773806 3.714698928522698 3.849266658433454 0.20922393297421796 +4.646463352454884 2.197033939973412 3.149621536579703 3.6580999505509406 2.501650404074085 +2.2963356545080695 4.105404601666326 1.1628038974044568 2.1376774971680055 2.0550204356862785 +2.7235387938554596 1.3432284761566815 2.010257667250581 1.0972773576355124 1.6549288863544949 +3.1692952125696414 4.043198477015812 1.9998066589188483 2.3739194865367668 0.9506141821990391 +1.441848775009083 3.007940497509593 1.7321780601103454 4.562238002651117 3.234483353127435 +2.059669615471986 3.730893140941729 1.937392756213399 3.7562914333809663 2.470097259195565 +2.117734805132364 4.8169682208657845 1.6796435788844786 1.8978512434002948 2.7080390723668217 +4.602376025434247 1.8054496517401097 3.5930005523017643 3.9072600965367674 2.814525928288569 +4.734851577939811 1.6178389799000583 3.596343199441513 3.8972386676630015 3.1315021346208205 +1.3538109886339744 4.886037926206226 4.467136356734436 2.278813778720438 4.155163395578672 +1.1823464159567534 2.592479013493904 4.338940019065886 3.7043014697376253 1.5463634860311306 +3.475094903528027 1.2973385085853408 2.2745703332979095 4.043094431029259 2.805405567822637 +4.320065403989586 3.1170975873001296 4.255460202162814 2.439289662143384 2.1784414149627858 +3.1726175075693726 1.8539449142952749 4.058990312518306 4.10712447579843 1.3195507970240903 +2.5317602545750444 2.592259706675489 1.5829067623268323 3.334481159677923 1.7526189127018716 +3.215059472330481 4.269676077706878 3.5872775931843632 4.856158109605731 1.6499314983627025 +3.1290972067916765 3.3298000441068085 4.982003802862133 3.004305851887263 1.98785583335325 +4.823756318726872 4.341434558816628 4.023863772900368 4.439828246394487 0.6369150047629234 +2.4312056524283294 4.013692406686993 2.729140412818562 2.858449571661213 1.5877610607281925 +4.996980434210954 2.7269031277654037 3.3193049478200716 4.145819042375274 2.4158593762339504 +4.389630734113159 4.235439908827605 1.3456253297961935 2.8902043120740424 1.5522561138860802 +3.9704853156879794 4.330373723273121 4.382238461029161 2.983718393480367 1.4440838082503562 +4.662698930991242 2.0433843312675135 3.0376377778335737 1.082725473182387 3.2684080362161776 +2.718932469171161 4.77146779894845 3.9533745840425865 1.561391976389174 3.1519013428881912 +1.8817320535021134 3.8309638051964625 4.130852521828899 3.743383975697652 1.9873691896712304 +2.012941544573085 1.4764739264370892 1.73533884529804 2.3571246181788172 0.8212277714894047 +4.944110583128522 2.528130017952069 2.0086900093096727 3.6922947997875983 2.9447388987532577 +4.137838771508014 3.162035008051022 1.4162337864533687 1.833384631715227 1.0612293873048901 +1.5965643766476174 4.55201275475521 3.166653393970604 3.8687248484880645 3.0376931120353587 +4.453218025858108 1.4446330001007226 1.6730623283209614 2.9249725676921168 3.2586597098583203 +4.428732859088878 3.4320219685548436 3.71887854743134 2.2689544787757088 1.7594636694675023 +4.978241550985995 1.1122916565798677 2.148210491798969 4.8546699015618415 4.719162120838057 +2.5189660676379404 4.9645551202841105 2.3742446409874534 1.669554666633354 2.545092095460982 +4.1469844211929745 2.6536894393563215 4.595748896798035 1.5792102770688374 3.365922629398404 +1.3140093887419106 3.094590561353549 4.6154335014902 4.5377314424033806 1.7822757705375925 +3.386220234827345 3.6906855097459115 1.18206936446165 3.784226068929486 2.6199081316409067 +2.662067765734089 3.5554947678975797 3.3434331629864396 1.07701095535087 2.4361612080193975 +2.0685554942946713 2.8019423651230277 4.703271101097803 2.553936231309757 2.271012259938331 +2.758689259367139 2.044349480138347 3.490617396622804 3.6991551920661467 0.7441567928313285 +4.655917347659484 1.8769958102012287 4.858741620613625 4.478027862943923 2.8048792980497996 +4.370207578538184 1.9038654464610607 2.706115271897374 4.615996418523116 3.1193732554305185 +1.9627570305433797 2.6035235640526286 2.855059790803936 3.5403448655971395 0.9381883521978868 +1.7499461245028982 3.6873527060219025 3.3493648099317213 3.8661780748856804 2.0051534138178866 +1.3733296524421372 1.1348457697484569 4.750690755439953 3.2430810002747066 1.5263557043409204 +3.753566901180127 4.8686028344192245 1.996393302327954 1.2367969280028515 1.3491818944464924 +2.984364743751392 2.3560303891123335 1.2729919995040389 4.553830225134302 3.3404645670888975 +4.938748581857317 1.6094200060618018 2.0494728568280802 3.7437752462340588 3.735651128298172 +3.6152569614488357 4.006666852303829 1.4036563256150272 4.20475480867107 2.8283129979615027 +1.7806196353793373 3.5171309485600912 1.548714598297213 4.003216889534114 3.006668095831654 +3.3641069514917286 3.053399507706048 2.965630543818625 3.639629852483996 0.7421685682546993 +3.690355908608933 1.524723900671173 1.132671527521674 3.3432857487157817 3.0946368492522938 +2.6425869680812895 4.482023174173705 4.488015815345632 2.837797654096115 2.471183023574214 +1.5982969530826576 3.1390216035326852 2.39165629622823 2.1881110566530824 1.5541116797251295 +2.9155735159069054 4.211533260567879 2.2211821952820503 2.1072128766903075 1.3009614388451338 +1.271618061509399 2.2382418297995206 3.2169214681545717 1.7605208138129647 1.7479886656926742 +4.269098515925739 4.8366226416904965 3.035386407705473 3.44118993382114 0.6976819727733842 +2.7623966648846845 2.691545332189718 3.155238749476019 4.075168925275187 0.922654561409925 +2.201599705299361 4.620395279228867 1.2693571569885704 3.526442321542838 3.3083236644125273 +2.6835992701880382 4.70952008700627 3.94902536933813 4.110557206165057 2.032350287309285 +2.3169967072739133 3.02881788791802 3.940146210539047 1.9575613808868817 2.1064975670483164 +3.0607657781223065 4.42018835833896 2.2607233504945006 3.4911567484728225 1.8335746776347515 +2.3893443755540127 4.304597131616099 1.8329057959616306 1.0357676133014682 2.0745173901074345 +2.487570893067979 1.3664375470015528 4.189325521719946 1.2872598133870308 3.1110971304579875 +4.388893432864858 3.7941483696425102 1.3394101588191587 2.8397083160056553 1.6138823534212623 +2.922167147405723 1.8510003677571283 2.387302751545049 2.672700889222502 1.1085352348087543 +1.3154491904915573 2.582458103577857 3.8998300884868677 4.123848137980705 1.2866606671298961 +1.1502809451958145 1.7736249779785895 1.381878857363437 4.012259854166965 2.703231764305646 +3.392642838910634 2.4263460669611314 1.1217618414670212 2.296988934668979 1.5214756560904783 +2.7045755085961076 4.62285281954832 3.93506801628053 3.2742369178535062 2.0289124136744587 +1.7017807222300267 2.7491523335152315 1.3651251472074444 4.191969749205253 3.0146372411901097 +4.656491691855647 1.0535987548386707 2.8180510215086128 1.2439865493350615 3.9317319947023117 +4.253866952561506 2.372806190120837 1.0830792528820097 1.1621977231862224 1.8827239108103844 +4.173949965480405 4.001376216080719 2.860248414429845 2.8645410099937028 0.1726271281072026 +3.0302793137807016 1.3787290155333833 4.340379092481658 2.505097217297345 2.468983181194407 +4.286234450691075 4.655948693267538 2.0295639212122256 2.4301649837629746 0.545132857641765 +1.7085948611972768 4.576197498741454 4.312628970699785 3.6663384454836043 2.939529950491154 +4.404311920453148 2.4781994800364466 3.353156167902154 4.154997312190474 2.0863504868074263 +4.100254189395276 2.561607654020012 1.8427525677854484 3.354339039483324 2.156925316797579 +4.736369760442797 1.5763755220728108 4.037041297242743 4.053545958992407 3.1600373400311232 +2.967289863992054 4.2806302985633575 2.782204360988893 2.2952516651342334 1.4007091150842352 +4.864036296495225 3.2071591431941973 3.420902416137923 1.5406761002920075 2.5060911595411732 +2.9123469443654932 3.8157102755657055 1.8035769179222663 4.088874850901281 2.4573668734308476 +3.72427316074017 4.595395986369394 3.9844977625952165 4.4938979364369604 1.0091300780584447 +2.2677863355246455 1.7129487832961763 2.6951606681765305 3.924462202589784 1.3487130798927025 +4.147796817730333 3.709921040840163 3.6106903785479956 3.0528278827659925 0.7091866892344323 +4.510484381561476 1.0098386743626366 2.509003768133737 2.4128833671487318 3.501965091033201 +2.4566292784610466 4.613653326306682 2.268463141284197 1.040787893109282 2.4819224923364773 +1.2047834265975745 2.8367256437731925 4.345591454162962 4.664474356851197 1.6628053722029363 +3.120823945926853 4.707476827625797 4.029004625917105 4.477351044330895 1.6487819376461026 +1.812778935824566 2.244990655949024 1.1062435655789065 2.539209430804658 1.496729147813702 +3.5453480800004384 4.531651648951794 1.0121021863389212 3.2929961186330274 2.4850094286545983 +3.7134038266766143 3.945898954457473 4.059632318439576 2.623287130005394 1.4550400285833593 +1.3712001174902286 3.027996299820047 1.9562646762949156 2.882617962248808 1.8981843957266729 +4.007151883740914 3.436504226702734 3.3775460541775177 4.943611022186673 1.6667927983131796 +3.053052910811276 4.011847834508577 3.6310038524755712 2.676199526395949 1.3531219482397274 +1.7251271526711958 3.653960280936264 1.6186684816694323 2.8867679493759497 2.3083486514585188 +1.5838741892300257 2.908961821341244 2.989270663117985 2.8345694918569566 1.3340875852670429 +1.2890337540857923 2.815120677279038 3.0989017528515133 2.2720208256942285 1.7357054372323428 +4.400540571437326 4.65861809122161 4.496318017922254 2.342862564033131 2.168864771741848 +3.648779138497878 3.9425456742433727 4.824890331583706 3.8934299670341304 0.9766868424683205 +2.5003566572373632 1.5901871038483777 3.511809548680966 1.117162367352143 2.561785264022413 +2.89627772265204 2.6447585128293767 4.4533963794808145 2.5650685148231376 1.9050049966738771 +3.7757661047253 3.6968042810312824 2.024314866993689 2.1415494234607153 0.141346775099772 +3.3120938518268646 1.1024217596450043 1.5740815148643437 4.666814446815883 3.8010061488170375 +2.6014701847471464 1.124725863651022 3.7726426256771806 2.3901414002566543 2.02288987050183 +1.6372892959652896 2.7838951895130988 3.1124195484004256 4.77281615966272 2.017826053407449 +3.1362155211162657 4.168421669244038 1.1495431256288646 2.391035467165904 1.6145441357633723 +1.470046652591356 4.866355034097925 2.2983553201487594 2.582739948443456 3.408193838252467 +1.1578209566258844 2.43771874276627 4.257647972361486 3.178342917853271 1.6742275065396703 +1.2373626721186626 2.65222336459698 1.3743957966935025 3.6343844246059342 2.666341946827852 +2.365035460053492 3.137469657694767 4.208142467884944 3.510145305931124 1.0410833913675248 +1.183650001793966 1.1879935445123744 1.329168037807042 1.990714715897529 0.6615609372203779 +4.4684499836932705 2.5638763584959943 4.625695645465553 1.5134382598380478 3.6487733182797273 +2.3773326320538826 3.1281044599998142 1.7814504415054864 4.1781854608521805 2.51157263295332 +2.815017896878988 1.24849070685551 2.666462115914823 4.987044514617153 2.7998410858921825 +3.1106954971096332 1.7655375401054054 4.14390485139034 2.30064149994523 2.281900460596922 +3.5625325035008077 4.997461439234254 3.3022110461968857 3.460018591146904 1.4435803655662098 +4.4735540742819255 3.9167962371483402 1.6478535129025254 2.400706578041126 0.9363583859283016 +3.043895905500545 3.1195876592652483 2.5603331797652604 1.2764925759834278 1.2860699582475585 +4.834331033771364 4.975780598043018 1.3098818770267036 3.8924128076522013 2.586401745063988 +2.561547336555012 1.6143395593299088 3.899383090074233 3.249522034153755 1.1487044725419147 +2.3787484013895743 3.188159704783413 2.1266603241792756 4.624435158652327 2.625647688055005 +3.5266043266684344 1.9482532285974283 2.893786033362257 1.1441796545730805 2.3563350079056513 +3.6617416342540423 2.773945076168223 3.0274934306074357 2.401653646393721 1.0862127618720452 +2.718213580559943 3.567636888366404 1.351942672199662 1.3656920364435883 0.8495345789677906 +1.841618119380097 2.781968455439393 1.4199349357790885 4.539876422473945 3.2585723307802366 +2.969103188651205 4.763448594716943 3.365058818946952 1.5462837017500126 2.55492042208832 +1.624736655320234 2.689065814150515 3.9888454298562603 2.6751218816045883 1.690759036518018 +3.1850249131875894 4.68214123832821 1.2206059519473742 3.5588920248988813 2.776497622898593 +3.0674744332182766 2.3184938190910436 1.7618280651077822 2.2810162915472536 0.9113332951295979 +2.4543768207684997 2.100703733897314 1.2793604956669808 4.162135118862812 2.9043887791614367 +2.9602464007447358 3.2918467578949495 4.143989369421227 4.223627793718697 0.34102943492715265 +4.60357002179134 1.8105501553453816 1.4364900817383859 2.2971345946212467 2.9226133770851686 +1.5670991252812243 1.3423759344818094 2.2606072839114693 1.1336637857862577 1.1491310458123385 +3.984974821785975 1.7734742640624273 4.0206870245740784 3.2281060753581 2.349238020693447 +1.8065399340358472 4.402954644880368 4.134744064038668 4.175353164435222 2.596732263774002 +3.831322124705438 1.4213941081635575 1.0783590024638947 2.074416422251888 2.607658610406699 +1.5663603166331521 2.740251431605143 2.0821264069080225 2.0979149803169017 1.1739972865643562 +1.1435660549360156 2.923876802582318 3.9501575174261077 4.248683230058658 1.8051659090753147 +4.8330715518473895 3.7512101802668307 1.9881391622802238 2.628575004630354 1.2572120328269567 +1.415967991747069 1.5653311750491992 3.175637687736888 3.3905818891507646 0.2617448571559619 +2.0738605510068786 1.8048754399631592 1.376757698271137 4.212023027750121 2.8479962216458032 +1.8560813347085077 1.7108844904666718 4.28908081077039 3.0565213518470706 1.2410821662400653 +1.4883084288626232 4.252519067415153 1.6617834895573247 1.6517236991619928 2.764228943786998 +1.9349849760405622 3.2963243164490903 4.650700054112456 3.953637568536029 1.5294250254726163 +1.3780573309653747 1.9693538222793432 1.872500478300387 4.635618125108035 2.8256770287384305 +4.401548828830081 3.8541667637464037 4.026303271229936 1.0728801489385011 3.0037202373824625 +1.790757495875615 4.652139346463114 3.453569405260354 4.946256448419161 3.227324077883367 +4.864685672523428 3.229352199195524 1.4641772953506655 1.334918435379978 1.6404339126790897 +2.2466019134658977 4.530553610513154 2.649340003862261 1.013849703624905 2.8091393480237894 +4.136793305567103 2.194163193952488 3.86578139984304 1.5159281342091888 3.0488722702930486 +1.8740865363254668 3.3426021360820997 2.6471442606114337 2.1727623838821217 1.5432356371266855 +2.9501636035918026 3.957130744359993 2.7783322979957714 1.9899420837571355 1.2788830878911905 +3.2886679859219172 4.325511943425573 1.0343006091952835 2.0561889816643033 1.4557820022239678 +4.356396573691141 2.370003629378744 2.8874078328974595 3.0702234687127627 1.9947878297986048 +1.9056346996140032 2.174826757364021 1.206638498165319 4.550289513444349 3.3544696266223926 +4.473873550411914 2.3054326946914436 2.5956062126800994 4.650598035686587 2.987495127591215 +4.937776776589786 1.4955385596371724 4.633731338406413 2.8505007216384692 3.8767145077794534 +1.4492191355786814 2.3851014723216415 3.4902927295084947 2.4371574010598684 1.4088895514745146 +4.070283761021107 3.0791648832221745 4.965364582392571 3.0564672811804585 2.1508615800428212 +1.6620362952937309 1.788799263059338 2.6626268996809914 2.877505933070037 0.249483163734459 +3.0705952161363093 4.519469232374854 2.9668827718874864 4.201073829748701 1.9032770376999235 +4.898259287834515 3.72853046402368 3.081504505075582 1.607523804816076 1.881723844242662 +2.764710033342614 3.8139845923412996 1.7502878023413482 4.310220843315697 2.766628683873943 +3.9379974188570572 3.768794039716158 2.213699031734135 2.5620362550452995 0.38725780128595344 +2.7194719269037453 2.4517826353505727 3.2073750658894853 4.2819534346374715 1.1074187227030805 +2.0765028338089544 1.664904735593625 3.564791986066259 3.5247011849394205 0.4135459669607087 +1.083914266316906 2.00454623865269 2.1132722277755387 2.4549411074130867 0.9819882136765458 +1.122675055863548 3.9962666853928406 1.228799946473115 1.6868035135383042 2.909861873138526 +1.9072349660030854 1.0474404245490176 1.4934423169295878 2.0314322405222867 1.0142385377225067 +3.8564076290521445 4.267616121697157 4.692307016110956 1.9161931717699727 2.8064034815338035 +2.5467038318693223 1.0563653600757599 3.1020942996613465 1.201110558289594 2.415542991848358 +4.5859351046443155 3.4717076442939594 3.6863069953078904 4.079809449856194 1.1816712804897749 +3.698489176193659 2.540376967633768 1.9355618463097999 3.721886361709263 2.128891533623213 +3.797694545012473 2.0942799837768717 1.1765472406445219 2.6802415659151606 2.2721614800186622 +1.9886333167560348 2.7241973419667733 1.8575149262576178 3.5991553253902233 1.890599300506325 +3.0070653507872467 2.6047027663551363 2.459976015355207 4.901966226022854 2.474916531592026 +1.694404900068236 2.4106035622749644 3.5842075615424287 3.5876074392841986 0.7162067319673605 +4.600380960341845 4.24869725246654 2.895295216941311 1.0334054856833168 1.8948126033328174 +1.8959047420363682 2.041907460528248 2.695610964607374 1.3629106335811056 1.3406740715492875 +1.2907054871699857 1.5477037178052235 2.7545111044801955 1.3116788990251433 1.4655418327867453 +3.562689341873865 4.896402577496716 1.743553403778876 4.036875183854016 2.6529447378041224 +2.346755291936099 3.95959192844926 1.888922995525292 3.0035868796963503 1.9605401273002283 +2.7731954271505264 4.743469852582031 4.891082863608124 3.6530964517421918 2.32692751659224 +1.570182513427358 1.7051107667499306 4.347320653491014 3.865411869223391 0.5004415149635157 +2.637337952449911 2.3623763770132653 3.0847255750763973 2.4342113391338187 0.706238372740082 +3.5404003076587154 2.8273408135708658 4.166757446217589 4.135364370035939 0.7137502135488065 +1.023541457366775 2.2377505148203958 3.843373410275257 2.6790651177808473 1.6822358440996488 +4.368059462731111 1.817878794740337 4.382072348140408 1.585889275815895 3.7844499221614787 +2.7070296526067104 2.0934531949082236 1.6842767541249408 1.4131504789516165 0.6708096052764779 +1.8650666042025965 1.6688639984689306 3.417913826208235 4.065068686586721 0.6762432075874609 +4.015635724906224 3.4366637216988156 1.3713970077727002 1.2843131002861634 0.5854845748959766 +1.5068134475451598 4.360103208847397 4.455825521205963 4.9948647097130845 2.903760614909327 +2.9419175667703774 3.9711642655512085 2.057770148887597 2.5455075255589996 1.1389629122818445 +1.9219231445207816 3.8682897557885965 4.228704521135417 1.4243849198553615 3.413583368189751 +1.3247352706279303 4.160721680230056 1.5571817767075506 2.560683337352677 3.0082942505122667 +3.0063916699308577 1.53892821556438 1.7088559530199579 3.5559131929084677 2.3590399397478956 +1.4787009711538133 4.5601404783269235 4.8411881106074075 1.2632275031038112 4.72197750367521 +3.3101641997273514 1.07286348594643 2.7652426893985957 3.62503950380005 2.396823949717523 +3.674585085670777 4.962446583721375 3.416484531554015 2.280412132032969 1.7173373969941483 +4.629000974252352 3.3412388345276294 4.243241257005404 4.752150735942822 1.3846733139122565 +3.3307031790115484 1.6458026232432497 3.597560119225967 1.7315993148370858 2.514100158375541 +3.795035417394089 1.9482495130388067 3.3302485208278867 2.3189157983501136 2.1055669194019133 +4.8487593086963665 1.5555145414935105 4.053056208566048 3.375081465739843 3.3623073697416856 +4.332745036903444 1.0794667787584888 4.999080054837939 2.76628126578873 3.9457838077241747 +2.7131222316700514 3.6293888772202747 2.3583736150669146 4.224195835779901 2.0786623403174938 +2.4014063184424788 4.6130390027164765 4.306322629620748 2.4817378143545157 2.867129030624384 +4.602935705130036 4.258949135743272 2.0623161110330783 1.6053200796745322 0.5719896263009812 +4.4896598626364685 1.950205328831057 3.345514040598546 4.234642909763494 2.6906094988398817 +1.746408034488712 3.3629793032438355 2.419362832161975 2.5031556657186536 1.6187414574044883 +1.1542098762327124 2.137096426748245 1.4671972587665478 3.852316367981151 2.579701365725301 +2.8347702241335555 2.648994661890993 2.1931832846754977 2.7095848759008487 0.5488015697377465 +4.642409338609446 4.899359410402122 1.0045901345429549 1.4282133621130404 0.4954593609279752 +4.569735618330207 1.2279397843978734 4.19041205869543 2.1374091725574433 3.922042866438153 +2.7821225798968636 2.768306387788901 3.542964842623715 2.031913288023761 1.511114716963375 +4.473177600254254 1.0433112005450709 1.5073491576063391 4.641756229249035 4.646341701878778 +3.0855902404394335 1.5263811592644756 1.4925751866832013 1.207375178049321 1.585077917246727 +4.8525121135974505 2.8690280384693603 3.6268743679508275 1.8404314084243567 2.669379614054253 +2.5853618738166824 4.297016291415478 3.8650204377238326 2.689751971716936 2.0762988254284775 +2.4190914565828248 2.7554408494762606 3.891005546879646 3.9684161217531155 0.3451424505939886 +1.0439451718346242 2.409314693964307 3.030672014494177 2.6565153458903463 1.4157072948252247 +2.705297020619271 1.6683243650177166 2.4946340337753323 3.150482166521869 1.2269674248701383 +1.4964768429315014 2.5884090237266335 2.505724589387907 3.760676626106089 1.6634964688628364 +2.714886176496803 3.4438145931714894 1.5477625327337496 4.644150215178837 3.181030228814798 +3.2130518316599574 3.0108286351439904 4.78402050584479 2.525700807330049 2.2673557466592764 +2.345379781574394 2.077975400601896 3.447546412537168 4.249891869844241 0.845732425666996 +1.513670634278339 4.01558275094586 1.0537146051112654 2.1305295633310726 2.7238015151206745 +3.4712226269941 3.5359498846247113 3.7998538310179133 1.3590432202819431 2.4416687030311217 +2.2024934373739358 2.4748021680788987 4.7851946324620585 2.9237390802458245 1.881267875049907 +1.4450249152003098 1.9171627515666172 2.959458940043972 4.297346275514566 1.4187517961015108 +4.930229866582719 3.251571614462566 3.4245030663323495 2.2034392127776807 2.075786709146406 +3.8768677028895264 4.21880658672325 1.1900538949819337 4.694928513523633 3.5215150563323276 +2.303778413020576 4.739446460367807 1.0216855684866668 1.1706005783135622 2.440216079985545 +2.146041347388578 2.8866593510884013 3.878359208232476 4.727512021862239 1.126754422356378 +3.3223932901263518 1.1853458966531272 1.273636605449596 3.3092906085893152 2.9514164027546954 +1.371818224581871 3.530196563829097 3.7195038815597554 4.892168269278274 2.4563669965123007 +4.9423251276068 1.6915956388464428 2.637623185488025 4.111092380621834 3.5690830304301477 +2.9406077185486925 1.3445215982727077 2.3813428880269143 1.7496932131909917 1.7165291186163933 +1.0998359890795602 3.455089984486982 1.8028003741345588 4.233232486675085 3.3844086095728496 +3.544317483988059 1.038052212555594 1.3836523403716905 4.14912560882561 3.7321854200081823 +4.778208849188314 3.384152121857843 2.144363808113062 1.3519880155055195 1.6035128798128728 +2.7321350765122423 3.011923870796397 2.312998477181516 2.8756125924437343 0.6283441828323629 +2.5957611107310905 2.9280252404904563 2.136515275293939 1.915115732053866 0.39927084751038555 +2.2938422225786677 4.271791278324814 2.1591888113385123 3.812383824718109 2.5778549647701747 +2.5849221401871767 2.203886962138019 3.4104328815311256 2.362778172250451 1.114795136690562 +3.946349676822639 2.5811956537337633 1.8970819347947194 1.8235976627676687 1.3671303686887686 +1.5204151691886225 4.79572423196584 3.033800962936131 1.809509029421967 3.4966469932177064 +1.9352411807197902 1.3790525313445086 1.4477589803053728 1.4756723205610278 0.5568886497838935 +3.4937000619577767 2.173334866380781 1.0395357063867263 4.915458181069335 4.094647638007554 +2.853346516431015 3.8856783023172907 2.6880410863597755 4.252632420756342 1.8744745823350009 +1.8826151183652091 3.0959944964771795 4.069078620581044 3.6301996329189774 1.2903116991791836 +1.7157667906188636 4.095585685631571 1.328520849071173 3.072872685867845 2.9506442184030637 +3.8326892042166922 2.0301384887587153 2.2470059013087385 2.777891472678822 1.8791031296038556 +1.120528324798988 1.6529302344111674 4.503408732796633 3.023877861548642 1.5724068787481609 +2.025850365283447 3.1121766176585846 3.6260779848478086 2.442043873330269 1.606873207143781 +4.363030366560929 3.874665988201944 2.286117429703333 1.102540403315908 1.2803727361366521 +4.7780659492776705 2.297041312830237 2.7489008992247004 3.099924178475177 2.5057335431435797 +2.7558358892243455 3.3820309897536562 2.6880250496395472 3.4854048801593827 1.01387124332765 +2.8646619057203573 3.556109051989783 2.260382833851121 1.4542638336220026 1.0620390758416216 +2.534094405167756 1.0843872574102078 2.596894670793796 1.6185004185167124 1.7489728777623048 +3.0708961887301 4.565746554679135 4.995223733919854 3.210546062840809 2.328014606102395 +1.8896195130790279 4.4278272249130755 1.378883927049615 4.948887692479067 4.380345337253023 +4.588030497419482 4.274875264743718 3.2937640112269406 1.2718264247968296 2.0460444284450507 +4.128968368561117 4.831541535823938 2.9212464421819955 4.500307730880714 1.728306572580388 +4.18322715297627 2.6334154071681883 2.1975265969680198 4.050854763553812 2.415934961977443 +1.9880531184272385 4.01591734430271 3.2628093846810096 1.2944553673844426 2.826066321938156 +2.3836123306736545 1.6404411603524607 3.173977234122451 1.385071811464469 1.937133449097327 +1.5730787077606707 2.8734694517703048 4.541909599162352 2.8264829080293152 2.1526041948666665 +1.0501656607815462 2.1702353980717217 4.904670062772034 2.3130689885776 2.8232875064645873 +1.5468470128663143 2.374454240414818 4.443377601110116 2.445938151326947 2.162105011011401 +2.9455420404545753 3.7947045325360396 2.2544870359723697 3.048254491430977 1.162387074645634 +2.9211520152413963 3.315636364804205 3.8968521480888727 1.6064297246947423 2.324145602073294 +1.9977689295342338 3.8178552825622485 1.4955805438310614 2.2474260147190845 1.9692602531340675 +4.798978373458455 3.7437917092216866 2.0513254680473603 2.987161208564179 1.410392650864213 +4.304640872732167 4.044284258746913 1.5054969656102202 1.8883362357973041 0.46298107223000534 +2.3927505139677634 4.9814495491989605 3.760738116891699 4.4547913209790275 2.680125471896944 +3.6671197068905936 1.803030423642158 1.5990438094360568 3.96081623206619 3.00878677081276 +2.2724161898986215 1.2631488439562242 2.2161312177705863 3.782261775952605 1.8631654518204044 +2.301026394217619 1.1928914509102522 4.690107469644635 3.1198688594961634 1.9218772971706144 +3.646339750738513 1.8860151493683959 3.24385682921959 4.927629209379933 2.4359458389668047 +3.602855054320832 3.69051987376324 4.112850595380584 2.608826398275737 1.5065768835491766 +3.9470687106644884 1.4792094036400005 4.094025148013465 4.7544608908629336 2.5547025129553766 +4.050941252051424 4.683019610808678 3.047134305140517 3.8502199974997184 1.0219929945363235 +3.4467008897210802 3.7496533126872955 4.9570968056273195 3.6668717792802745 1.325315354620678 +2.6699384562920607 4.937564395617538 2.040264000374649 4.120867390769679 3.077505137091577 +1.7072710537907723 1.6769594369737066 1.4723552154190034 1.1085262250922279 0.36508947987618806 +3.9039721011740096 1.581322483120715 1.5908893678371459 4.2680786837368885 3.54429737485596 +3.701259196328608 2.853837146678298 3.4780767476522225 1.1218925918032578 2.503942472683274 +2.861108269072008 2.452056407089017 3.852910972937231 4.152762512743173 0.5071827793958965 +3.2026546439548578 4.540792354391673 1.62203449814607 3.2227866087390433 2.086389189883072 +1.3744286581823766 2.9507406452044322 1.883248146303035 3.7829874351778217 2.4685560245058045 +1.2551246754470804 1.8339636685243863 2.1543066694498783 4.48213936376652 2.3987204156875443 +1.5875259181756611 2.4513829658192705 2.596536898574906 3.274877535499782 1.098360149708273 +3.951502521520194 2.6583023500426886 1.1218027071073524 4.460000026698788 3.57993408152118 +4.862097305071876 3.064273757256356 1.8727946278029184 4.771428689820474 3.4109014841487837 +1.3199626102579334 4.7139301954262205 4.352606099004021 2.457001744618282 3.8874582747007365 +2.9359821454155712 3.2037409117403035 3.9945673113492024 4.973256485419986 1.0146562257174079 +3.3951912113256513 3.5791181862219923 2.6249188698035337 4.294728524230345 1.6799087517218025 +4.4263924629332525 3.2239098534766018 4.100661353735452 3.5142130467320634 1.337866227555213 +3.0996142158427906 2.6667651721713654 3.188965745595714 4.8482136139431775 1.7147774733833159 +3.2307488233857655 4.770205661962219 1.9569595352291835 4.470961341120564 2.947903057745443 +4.720482458323884 1.689643386298091 2.111025425077125 1.3845804579734415 3.1166821735217796 +1.8608097026423724 3.0814233995847027 3.6361394217695917 4.824319887694216 1.7034290759430168 +3.7622803902208113 1.0327248233230026 1.2554175676543786 1.520266861164325 2.742374653663415 +1.9750972118989658 3.3043131431239012 3.4768710239416114 4.119218040838338 1.476287465888096 +2.65321967895195 4.014511793955652 1.4293885612805415 2.1979579036100563 1.5632706279912236 +2.5418250122387915 1.772410731035523 4.667439366779303 1.937202467450264 2.836581016395863 +1.4794499604717628 2.336962554655806 4.484204273037189 1.3884755011067509 3.212298939784744 +1.1138605699616488 2.067287493563968 2.780098964381932 2.1593470577072527 1.1376975996678693 +3.050103423287882 2.828356615059699 1.1165032815749236 4.416094589898501 3.3070340864472327 +2.0055828212411266 1.5999111449628014 3.0731388585494144 1.6378250548635922 1.491541224366772 +4.972205162858273 4.168775075224252 2.883575732021127 3.894870016485553 1.2915943773127951 +1.62023873736069 1.992246087377425 4.126261476042458 3.423205756162493 0.7954098400965443 +2.1461784074192063 4.1858977103856025 4.870879697494344 2.447878444025552 3.167236951856469 +1.848368224011042 3.3751241528463938 2.7987893849007195 1.07949501953424 2.2993383354814974 +1.4149966282756368 4.465110068705258 1.5514178485524024 1.0929885293987907 3.0843718064054895 +2.5122550806039974 4.613191492853433 3.8421627622599965 2.1900649188546857 2.6727066978065532 +4.013511250868783 1.9008583819602811 1.8207957389313423 2.863688467844186 2.356040616909352 +3.512895563385374 2.146910962629061 3.3661691226070776 1.8196433438499269 2.0634088091950646 +3.351123814618857 3.8647217404050096 3.869044074307336 4.795539879331211 1.0593287054067198 +2.5816948466774874 4.092376829065979 4.670123021294248 1.8945110261147207 3.1600920872179823 +3.4118996847890513 1.333390343579882 3.2974541029599886 2.9776845976595854 2.102963056740142 +1.4183357328845156 2.3885654432092607 3.485100606795181 1.8332181553927551 1.9157404114462184 +1.4587987231373134 4.658250266105759 1.7917567567102721 2.3771429548340404 3.252563170294617 +3.999352228546637 3.6256702121021664 1.042286429007345 3.4320947981996026 2.4188473062339764 +4.8317434608337715 4.765710618069926 4.937960006607457 1.911304291381918 3.0273759520137062 +1.1860397844999313 3.30855502300883 3.8656339501471133 2.9028440161254605 2.330672734374328 +4.046634205193212 2.3734232126523827 3.7095890699388714 1.5927403762472068 2.6982741553710907 +3.5192325302369287 4.006527664604118 4.326390060677372 1.4876509096401263 2.8802598000197137 +2.8074196103655567 3.3026583428455174 4.618110700725497 3.5261733444500822 1.1989948257511789 +2.968917323553389 2.8374726438995097 2.427591330425245 3.82620219373147 1.404774021245942 +3.242460857037624 2.3101692069174975 2.8982381611639347 2.9639454276639134 0.9346042829746756 +1.3310011527101517 2.308173825162424 1.6366322939967781 2.4331774809216387 1.2606945175579518 +2.9382488302989356 2.6084139403269515 3.179020965070672 4.707929268026394 1.5640817285198934 +3.353772889846829 4.4944056126492224 2.642631404434609 1.6091865700980605 1.539172256098874 +3.629243409462414 2.2712305108009527 1.3733633036429733 4.215737942567266 3.1501258103337566 +4.576855115248408 3.6690468337180087 1.2897844407076162 1.1071029173496707 0.9260067035348918 +1.7467189132285061 1.7746525841951493 3.6113465163882377 2.5593464057701 1.0523709054863912 +3.135144098550085 2.170406330669354 3.13205974961966 4.879286547633616 1.9958758589836185 +1.8605908586065443 1.9261797314253006 2.5208939804264996 3.702814844544846 1.183739341779217 +2.16739317967273 3.8499136059157206 3.1681655539515634 4.05630324398687 1.9025413375761757 +2.3627058329117068 3.0113673545430895 2.464013033451595 4.455231263518769 2.0942091131014093 +2.017764946144893 2.985784784094372 1.2229596991321157 4.387214709136906 3.3090137767927397 +3.1918388789586443 3.4565389885420252 4.477620008513934 2.962371996957515 1.5381946185509614 +3.24313187057673 2.207025539391439 1.7981253847377552 2.634306013990549 1.3314332030784881 +3.945372981182223 4.71152870987769 2.6281429340188205 2.4792642253711996 0.7804866882282271 +4.351342141624238 4.162110689081331 3.6757696817528207 2.5272238972470356 1.1640300519048072 +1.0167494008478988 4.07874765946611 3.5768655125866813 1.3351457035534269 3.7948835341803377 +1.82420598398764 3.334477434857085 2.851195849291884 4.624700819437438 2.329429057610959 +1.5502106245391962 1.2556858036997127 3.979259818147632 1.6178048463932844 2.3797509226206546 +4.169341884681989 1.2933539265247984 1.8218586406182387 3.093814194036701 3.144706292380456 +3.0456291397671897 4.635044357207608 4.747404755094424 4.686234615886459 1.5905918770576863 +3.8614095760909533 4.897940208088349 2.389866302110124 4.021073865107099 1.9326753127847036 +1.1683971745391193 2.0096353007448284 3.319326622591195 4.35916083908624 1.3375114140731497 +2.0125416884818668 3.7496131385882263 3.0978261779013487 4.810919666654878 2.4396939406377083 +3.228599369388957 2.840346192977553 1.346737394555162 3.4235313762714226 2.112773951819367 +2.620868824458219 3.7371589274655204 4.025094769280339 1.3542029512304472 2.8947826684913514 +1.3841790571522847 1.529944492842521 2.509451124830312 4.339399959079777 1.835745161565989 +2.416478781921965 2.9135792759048407 1.8187152750026234 1.0990844224219085 0.87462990178936 +3.8178641772563537 3.2817799708039206 1.2322838755455026 2.447752580610805 1.3284391026316782 +2.5793031619026747 4.424979299838281 2.184212617197732 2.9069386392849963 1.982133524550497 +4.972202886519404 3.1162311394440647 2.017123842573724 3.030334636425893 2.1145276632667707 +3.4564405261324374 1.6133074583779892 3.2243429070470375 2.234665681112643 2.092032628087603 +2.004656716592249 4.089669315211259 2.6912503178172758 1.9157383830109485 2.224566541469832 +1.1486560296781199 1.4726754741020969 4.409512050812418 3.8186234734996707 0.6738975524243317 +2.3201441683376673 2.2018905917061478 3.2389320758076576 3.0948273118718745 0.18641376391011058 +3.549692695655695 4.317307719136837 1.517268193462101 3.3350264673516437 1.9731897948671442 +4.585842631707105 1.4601576025155647 4.381370665485426 3.877237913499683 3.1660790788192323 +3.624810883377096 2.4824347566380918 1.3009315536144634 3.2381240503792648 2.2489415253547733 +4.091894482291856 2.0265093262021066 4.609726783987817 4.238985178252289 2.0983958590359535 +3.091615402226513 4.206229019201637 2.3511211031041985 1.6529689572505286 1.3152109845596838 +2.4612298812968523 3.24727534822742 2.8671013244283285 1.5476249862283802 1.535866297290112 +1.740194311848402 1.6630273552032397 1.527056565453789 3.041749205181252 1.5166570251848062 +4.892592710660683 3.5650013617835303 4.28795802005328 4.719134762448153 1.395855355255591 +4.0977647877475665 1.6021253813024825 2.256453440624212 4.897894137323561 3.633926939439085 +2.1085481876446455 2.925709270830092 1.3181964614908352 2.964080869443694 1.8375765889385793 +4.040381653778185 4.633246352836515 1.3041340541025992 4.097170002401869 2.855265024455966 +1.1813535774237822 2.261470692038321 4.623251210946705 1.9767390294524185 2.858440082996473 +4.458586949358313 4.52820203680912 3.92902334354137 2.555872911264886 1.3749139500571945 +3.96926761203476 3.685340160685021 3.6673432387210227 1.0671482102143592 2.615650776365363 +3.4265252749134505 4.095315411080536 2.538102091913216 4.72266768018687 2.284645936617708 +3.566027551693278 4.559962366003846 2.2743275464558392 4.343723310742572 2.2957145389500093 +2.717189731033014 4.821421970492131 4.0167754930885415 2.8784379165153373 2.392405850982999 +4.451777795076696 3.7390878449809923 2.4638768458645743 2.798214224006579 0.7872156295388743 +4.575214431347328 4.835189930116115 4.913850095516283 3.22349551574001 1.710229769747533 +2.89780115681814 3.8907860317467646 4.851674616016983 1.142571106281665 3.8397223607661886 +3.0711232374887145 1.5465177873123563 4.210269999628732 2.658606138232801 2.1753350356829144 +2.3611605979984036 2.571710115344456 4.698561418321447 1.0752761118148602 3.6293976788995144 +4.235424698086696 3.6097473422268704 4.818031979304397 2.8042923579692043 2.1087008835230634 +3.971842014322157 3.265025951848278 3.321285482635252 1.4360972478122767 2.0133364415531854 +1.9920336411153796 1.711311805288131 2.816697611141515 3.2707591239348814 0.5338320021415174 +2.4919742868089427 2.07692879609792 2.0380208638978963 4.760434735183243 2.753870012532622 +1.9796850306960136 4.267278732837202 3.040123992658759 1.2074595927264928 2.9311676425709807 +1.1084393932488088 1.6850721534673458 3.912345959242718 3.218891062727712 0.9018786135938064 +1.2901451039116272 3.332127661353765 2.5976345210057343 1.0259839569761038 2.5767767191420736 +2.8833842403988896 3.304352232363034 1.4493624346249803 1.2403883025498774 0.4699832317592473 +1.6318543596463821 3.4214208525868686 3.36430797380545 3.9994012048515883 1.89891854611406 +1.6928042855531418 4.775028229655449 4.860021743362301 3.7669027178377568 3.2703231714253125 +2.7927037689898797 3.6487144774060196 4.966453814195573 1.1417020047611346 3.9193724927206284 +1.0667524112222573 3.9719097262679814 2.055708583727811 2.118524952490249 2.905836354881014 +4.234078088833405 3.1848319285488222 3.7348999665124443 3.729915780997629 1.0492579982907855 +3.947908513015441 4.271897544050827 2.6012852132156907 4.024451887251871 1.459579485440396 +2.11936695286748 1.4829422258873644 3.780005403572353 3.6779262867202385 0.6445592131131338 +4.1155286496874055 3.912748113527095 4.169097310571514 3.0222538916659136 1.1646328920876954 +1.724110328262677 2.37305847190367 2.6867969376262812 4.633501438741172 2.052021468648919 +3.549586986195031 3.416995161564534 3.6188208526518966 1.68662533297858 1.936739558692516 +4.290812533795036 4.431019769377347 1.3677154390040038 1.1893644908218364 0.22686368071401797 +2.9064930252418057 1.2830788328115013 4.858287426112286 1.7542291941120984 3.502948921670464 +3.349148897521795 4.41590569715242 2.6452944386126935 4.246494493528079 1.92400927373524 +3.667179981544471 3.9633572775963786 4.832829149604888 3.0850786729539834 1.7726682485253926 +4.598800326522953 3.292256290242133 3.288343638268772 1.2722461063894106 2.402437632237522 +4.304762959979903 2.9133142107561896 3.693807525647329 1.109400559813627 2.935181252796154 +2.5980358802185535 4.486737454715334 1.4695453013180626 4.806025705888228 3.8339659789293004 +4.453338139414264 3.6277499851578696 4.305284411625241 3.492542033303907 1.1585102390431852 +1.5098448467760717 1.3032564927611632 2.911366882609163 1.4822776569469767 1.4439441689062418 +3.2307987701974077 3.8662643854434102 4.515256681148498 1.2439424023333214 3.3324636020427953 +1.7832968829239086 3.647873761400348 1.1998592395908494 2.80965527550348 2.463349389142547 +1.0463976916251552 4.766324730999749 1.149314232760692 4.61316574678916 5.082924796759001 +1.5572384578538054 4.523441046151856 4.1206975248542275 1.4839386556110177 3.968734701307053 +1.9415464362513486 4.383589443983606 2.363634279779781 3.6719653403661967 2.7704339399648545 +3.941606286614017 2.037986523131311 2.295514971663584 1.648388923520843 2.010606954654936 +3.2809193961202068 2.683857552051543 2.900942535866606 4.202940342527426 1.4323690635420256 +4.5235736419740435 1.2239100759381776 2.2119524254067318 1.350888768382462 3.410162792371141 +4.138200642612553 4.3003836298744655 3.183909160988268 4.256543587995576 1.0848262235761517 +3.2789687991936276 4.706945904847998 3.0980470758300056 4.966454289792767 2.3516088389570915 +4.44275347792527 2.8481034247667076 4.059052596457591 2.476759821342709 2.246454811078861 +2.126865896570756 2.0573156065048948 3.88057574038501 2.8832755800828593 0.9997223877591923 +2.8517496214674742 1.0206872015430313 2.877460069622831 1.3258755990704572 2.4000424902319644 +4.246267075717652 2.798728166614121 4.302276071899705 1.02276666284411 3.5847664997113573 +2.5217089576464375 3.296286772265519 4.770657632622994 3.1842154500226196 1.7654375065784433 +1.8721411072722587 4.734837879916233 4.885474724478399 3.9099940233276214 3.0243338787944425 +3.558399513842866 1.1158575114774258 1.4768679120984691 4.51333141503027 3.8969375204070484 +1.6892532960050652 3.7805227019948076 1.846533450875309 3.185644647443081 2.483269321922586 +4.718503258209977 2.724369383966844 3.5509810597590015 4.367230069908232 2.1547232664482756 +2.5390448252515037 1.6167321677196869 4.180806268008929 1.2142390088336215 3.106635147785189 +2.1143516786391623 4.561609127622626 1.4311565228957641 2.0580449775698972 2.5262735711337307 +1.2226373106782251 4.024444221598667 2.9310800556273033 1.3535075070262357 3.2154093226494846 +2.3870319586638358 2.3080198601235957 3.126169462411118 4.436766099686837 1.3129761830871707 +2.137264786067918 1.1579035267483784 1.6975528590958522 1.589961183429108 0.9852534927259746 +3.4924221631701027 1.5634361344800154 4.522055593905463 4.361780273318885 1.935633043030286 +2.1159729569520604 2.3402587020750802 3.5618585535613168 3.220915716021774 0.40810061741548886 +2.192281401132792 2.061938311790214 3.057301384391281 4.650569076456993 1.5985903976690736 +4.175297898667985 1.5303706970121294 1.2613987430291052 2.40120843593661 2.880070491863867 +4.7523959522183885 2.444591026196697 2.2949106475617476 4.767756170120958 3.382444168794382 +2.5370380348929635 2.5173924894287882 1.297718740128214 1.829452766913041 0.5320968170336974 +1.197116194090111 4.452691576774463 3.7907201513073585 4.773089589092753 3.400561833673247 +1.1842960754660652 1.6393469896326764 1.014675024314652 3.5032130543983064 2.5298009529716965 +2.9876280798193657 4.698711289802563 3.030182219471118 1.5027927951399085 2.2936268670045754 +1.2278057036301608 4.82782400873198 1.454629210194894 2.929011251573812 3.890235751340636 +2.9662209179993564 4.889275092732616 1.8839360173959347 4.449778094726266 3.206506342541341 +2.417325945394417 4.849208833573543 2.5257842373357797 2.4340258392053333 2.433613359892222 +2.4002678353656832 4.559926755185968 2.670938646280777 2.7274311884461326 2.1603976618390477 +1.3433828938451513 2.770209206645264 1.4781186117552396 2.7249743010155743 1.8948568380591788 +3.0021236947971697 4.948342482786634 3.5452490806933725 1.028587679757404 3.181407263725311 +3.9370878737947894 4.665173419036355 1.5190372572404547 3.2947839282373192 1.919214631234911 +2.4147810752060934 2.8181235092608277 3.5309082563216103 2.3906017836292723 1.2095387429814886 +1.57144995256099 1.7573914073115073 1.7698428054615665 3.241193449071068 1.4830532495648403 +1.2657397912827903 1.374125741236838 2.301524722438258 3.0496855086996995 0.7559709493405021 +4.611643576215776 2.5196237940408506 2.12520569755141 2.1423309903943957 2.092089874901693 +1.828670192725562 4.308728959011389 4.469444606952834 3.092141082593807 2.8368391710569307 +3.7772429595159434 3.8205656179184184 3.1652876763940503 4.09779015597867 0.9335082898199251 +1.2230162497946293 4.320394416230826 4.287577856838245 4.9376187083388725 3.1648545961126424 +1.6993117851786907 2.446951639995167 2.3929414821123465 1.039954912817472 1.5458130576503473 +3.176754274259201 1.3352946079401398 4.0187930440231625 3.279380254656702 1.984365131662668 +2.951401325422361 4.69862451227865 2.2360911523623774 4.298215915256333 2.7028036189166054 +3.610169066967605 3.151396321732049 1.0056253702864515 1.0704696128885436 0.46333271800036685 +2.298792907807364 4.700900867670518 3.959616044822066 2.205242823402298 2.974550058558891 +1.0921956179383603 3.0965600496802423 2.877643818191738 3.479993040944085 2.0929169504264413 +4.475634061577828 4.516332628091579 4.452554243135683 3.4124882021934435 1.040862019115665 +4.243850989113284 2.5910129154766017 4.414889532085365 1.9590687916780323 2.9602245196399943 +3.2023954661675544 4.917902508033347 2.2737067559950392 1.8460387689284485 1.7680114020709004 +1.0615435480787538 4.731881593872169 2.5663873462304383 1.1913161176975335 3.9194645366347705 +1.5540817056688243 4.064556374771783 4.547195886021011 2.0361561408979276 3.5507469166071814 +3.310832376886037 3.9339528688912266 4.472869818415334 1.304416729635121 3.2291444878415803 +3.171393853092387 3.6804234244163725 1.7974325849703288 3.3452931029839013 1.6294119453678757 +2.3093863035811326 1.818872865963399 4.492059495064648 4.505640908102099 0.4907014237432576 +2.5089593804344688 3.001582579770426 1.3697895681416727 1.161130414265981 0.5349918307975494 +1.5329981215038924 2.9755534645757193 2.7542928365893924 3.47531927657428 1.61271356569676 +2.7690003215714247 2.501762723472425 3.928094416459246 3.742315971107317 0.32546822363343286 +2.7106296156801855 2.903252390440364 3.650851010075748 1.2639875893825274 2.3946232527058724 +2.0827282078449603 1.762217853647043 4.659824440137637 4.037426416195215 0.7000758440022808 +4.399159862107533 1.247444879906186 4.38310173797832 4.255918672437427 3.1542800860406826 +3.5889339082000067 4.006858887886853 3.886852272688389 1.3234770663491822 2.597220386705915 +4.289083603705533 4.694749249825798 1.2890766590102993 3.66656449314865 2.411848464957539 +3.7794941635170676 4.516494884311673 4.273632684179276 2.5790890398869295 1.8478766801016115 +2.5105143512940713 4.8805252339079 4.522711834078189 4.410817216091717 2.3726508359306298 +1.013293995459363 4.2116866402606075 3.523530538379669 2.1927105826721514 3.464216688492228 +4.481210173173247 3.9185995119894743 4.787035775903732 4.160752848713311 0.8418794812607351 +1.2022656261988307 3.796342506828151 1.6257545278468322 2.697116758718822 2.8066086104682553 +3.9759839440446254 4.626665208490847 3.407739490554533 1.5849411897917927 1.9354533714778217 +1.2226616917119726 1.3044301580600468 1.1779029465861681 1.163206155493266 0.08307874431733157 +4.356901868811416 1.7883967214385974 2.8752058948840267 1.137595769091189 3.101049441937111 +3.0433689660319563 3.6098405026282565 4.76778444587619 2.173035828152313 2.6558633983986724 +1.2288014242573801 1.414454407852737 1.1662998414676355 1.3330212898874638 0.24952569342867942 +3.9868435432085536 2.56844943875888 4.314593855873453 3.561795581168069 1.6057855018454348 +2.1981590091391476 1.6272084320429605 4.8471638970390885 4.094194559090987 0.9449589331693053 +2.37809323319213 3.210339564895011 2.883008585077073 2.5536437371757135 0.8950503671112524 +1.292348404653735 3.936708820736462 4.926330822729234 3.65294129784959 2.934989419438921 +2.7427097862922643 3.0043061435944587 3.896429948338458 3.5705072413036603 0.41792136235740324 +3.958585922333652 4.6697856128231985 1.7713690957296633 2.917325988725152 1.3487113109766302 +2.6301549898873327 4.027763607911024 3.203898886841402 2.919715840214836 1.4262082082094638 +3.7479436277986715 3.7408094370736804 3.8325958305911723 1.961716421036066 1.870893011846098 +3.6730536830730847 4.563515051669507 2.497811737152705 3.204351529814472 1.13671453213951 +4.24015572707954 2.202420833640341 4.010987142582213 1.237468840970064 3.441622766271342 +2.613717149379217 4.107591758941022 2.3163683027761164 1.7378056031020375 1.6019975488581732 +2.872818877633489 3.7259516904545955 3.88777855582581 3.676137940075579 0.8789922334965138 +3.018240394691969 3.8428913464590777 2.139958742718097 1.030329057190877 1.3825075881360056 +4.6362870163725844 4.5131102891311645 1.3719599238463336 3.994551713635114 2.6254828512106925 +2.361560473759297 4.299788828433691 2.225884527410964 1.480271231808362 2.0766964971904733 +1.3210610240332339 4.755573441056514 2.477505371419631 4.178212273360748 3.8325291269600608 +4.878564519319745 3.2826629560248604 3.8443666474652862 2.3645371973699567 2.176418388338167 +1.7284332647314042 4.782640409723525 2.56966295820945 2.67864256874966 3.0561508208912755 +4.962025063597471 4.757504971471185 4.814779554505932 4.259571811251796 0.5916790567974295 +4.7937451391262 2.3411809683816305 1.9534360834915154 3.377212034176595 2.8358788707152494 +3.0083157341345452 3.9624104273151564 4.903348425639407 3.9028998508149293 1.3824594151090774 +3.186929809641502 2.614055076861533 2.739795435113983 2.978090200390097 0.6204593899811001 +4.526105310134334 2.65944784465241 3.681828565235579 2.451299449013747 2.2357575895675903 +4.828003198244723 4.132485484138712 2.3732844212181314 3.825676990626731 1.6103381838323787 +4.394306444329382 2.77939061273679 2.8076236326394777 4.730274848319713 2.510884473703456 +3.398410280515901 1.7686294320953655 2.452438476899902 2.2665828153860796 1.6403438483425055 +4.398830035093493 3.4508398963214595 2.4331407348522363 1.4844360640030816 1.3411658568946727 +1.4428855875219226 2.141482908671635 3.4269630224543914 1.8222667062207694 1.7501681303381431 +2.036074517930578 4.346271787865952 4.356199690538066 3.188765817626633 2.5884190683963526 +1.2673731335779865 2.5763010141230973 3.600814119185824 4.843201693852265 1.8046659198183683 +1.7072606589121997 4.929531883401405 2.4093830761367756 3.727058564005981 3.481278577692758 +4.069919322364665 3.1155812697146192 2.0545667042481144 2.210367908301715 0.9669721474377809 +3.40974362049506 2.840409931145498 1.3693094891923954 3.309385963489277 2.021889605282297 +3.3174232938366015 1.289146537614997 3.9935510572674677 4.49587138065764 2.089553135749278 +1.0054987347594069 2.574671663332095 4.561321429632789 4.708186171744485 1.576030752314472 +2.4808943260659717 1.918147174044869 3.7568740614374994 1.856379376917678 1.9820606456402783 +4.749307239527699 3.508531562259592 2.101099300378977 3.2667842887783745 1.7024528696794616 +4.291532633316205 3.0352190764661864 2.776971505991405 1.5540486860167464 1.7532438440616056 +4.906451430217571 3.69260680143812 1.86780416067537 1.87596932638071 1.2138720907689238 +2.2341677647078497 4.368155428402657 3.440306575069173 4.11664488921137 2.23860154202983 +3.405028598711482 3.7076240803544946 2.7899262642079954 4.426668231594556 1.6644783847545743 +2.75256484577669 2.3041243913962606 3.508945547907804 2.7279834686008106 0.900555723117914 +1.4493487806702277 2.53449761332603 1.6733131443367961 1.0056946596865912 1.2740731651129327 +4.7721100499618405 2.4172187341891265 2.560874123544702 1.727333451648588 2.498059879347725 +4.917464600168829 2.2011139907608523 3.9111097048207957 4.703134141534166 2.829463437046363 +1.103698329280924 4.071154085519998 4.4460118220978035 2.480176956935708 3.5595365403832124 +3.745226117870645 3.8197715515384525 4.607846599785681 4.535255671965005 0.10405029784958866 +4.895927633611054 1.4448207311284995 2.649189268688159 4.314901866875719 3.8320669764662885 +3.2085324967548714 2.2722988501426515 1.6697916989907204 2.491847138310818 1.2459167654239882 +3.9174947052974285 3.4341398809338624 2.660644820327257 2.3022421470710173 0.6017344617293849 +3.9070094925791916 3.175614613725585 4.172207436782619 4.99738644720715 1.1026599058905198 +3.7570037572033015 4.1816775999926765 1.934282279685509 1.0538124152035784 0.9775351937451275 +1.344199114668423 1.0455830451090962 1.074695800049056 2.251654368268718 1.2142499859191835 +1.8938397652302803 4.7764425340913155 3.166554896019359 1.0845695419831096 3.5558489475042037 +3.709463069430396 3.2086005470147985 1.6333841974109475 4.927203543781758 3.3316826308769487 +4.551670501484276 3.956936250371783 4.591236384081508 3.5488935577625473 1.2000780795535502 +4.121691551012883 1.9198222039614001 1.3953683150207863 2.7231684494948727 2.5712412991771743 +4.731890965046254 4.997296652150558 4.1801825653835305 1.3751239385338256 2.817586569887651 +1.4177970506749835 4.415311429555931 3.3449107034094303 3.212898709221511 3.0004199069809387 +3.413443468595037 3.9525417526638598 3.8812790023749577 1.2297881433195226 2.7057403303976675 +1.5173157970989353 4.554208676454522 2.8669477017660157 4.010467861256046 3.2450511114373484 +1.376790590759017 3.1770410777629396 4.3567298090595195 2.0432742208389167 2.931378272183069 +3.6847603433837945 3.3404565295736854 1.3647158578737328 1.6057711027635206 0.4203007819324892 +3.3098803730678417 1.89862555446043 4.469991187296116 2.3748312112996013 2.5261305366232274 +2.7746702204242712 3.007615568465298 1.6316152750559114 4.1227626222214795 2.50201491611541 +1.7410443618776639 4.935176899061679 1.5373005241601154 3.3618170494507793 3.6784974128244685 +4.863658493175327 1.629960108555672 3.791680147272902 2.491386068482856 3.4853364161911577 +3.699636782265337 2.7743328249417107 4.884630680983751 3.137908104830957 1.976670729150562 +1.5570377374278985 1.9670255987184881 4.484606341880458 2.4760713157190275 2.0499519501010086 +1.7151752063701786 2.6412140759867153 1.9587029424905786 2.3856706112046857 1.0197300516155403 +2.4718134210357756 1.4521777950468544 3.1725678541520055 3.9158551924068723 1.2617974785978232 +1.379462791792776 3.7757606051342423 1.5859861559575608 2.5501508899913055 2.5829937755595647 +1.523054347928697 1.9564853945939187 3.266447392525498 2.2160571224360033 1.1363019808624781 +3.3550246020520182 1.4483583981260386 4.779631417017096 2.1457879771780903 3.2515392168596815 +4.891962010596544 2.2578019971780448 2.0401041077114237 2.315769202757207 2.6485449252220636 +4.565971987821439 3.9501903750662075 3.1942691947523456 4.940526401912271 1.8516482463376827 +3.479459181819673 3.2627311522104594 4.645703095144672 3.6942874851604457 0.9757882463628824 +2.5144275813693615 2.509746787929065 2.0113178321844996 3.8413723560595785 1.8300605099785288 +3.219428089882565 1.7469604335977755 2.4987857768407955 4.506572164280403 2.4898528423167123 +2.412999261824645 3.764251840909811 4.238591491790407 1.2307271509708797 3.2974431648260447 +1.0763777450864023 2.8763520738600494 1.499420916074523 3.2939640480187884 2.5417105729513096 +3.2589794230669393 4.85621806432927 4.026190367500606 3.7590910005187004 1.6194175956138277 +4.578197452555654 2.292936827413976 3.5774929018699173 1.5126738067147438 3.079917859382026 +3.0731586374892466 3.94837124433623 4.578490150916634 1.4241176133834483 3.273539859651543 +3.328701129512016 1.6390845914487078 1.9424752693994818 4.678218777964641 3.215446561576393 +4.819930469419106 2.7718737385432752 4.813155442128941 4.035668500244046 2.1906670942174937 +4.162469454854298 1.6069792313914864 2.469675755716313 1.4764865789808757 2.741706589516542 +3.5774526727839304 2.9212161346070324 2.8842452138205394 3.3564290687180423 0.8084577829820585 +4.367863708627776 1.4260694461640302 2.2458272797663894 3.779055063782446 3.31736957849791 +4.6953649921548 3.9736906694906056 2.1192979227742934 4.963038956300935 2.9338842672736765 +4.964638381004288 3.1981265601068753 4.1309811467249595 4.8779449836561986 1.9179465547958654 +4.265312811698227 4.866676417170238 2.6343588412929155 1.1436181057147192 1.6074657466641453 +3.8942345607563515 4.781310120906181 1.990474448720125 4.122909339723233 2.3095847275609027 +3.6880715376984186 4.728544916649307 4.8579086646038725 3.9913825565455916 1.3540503492308218 +3.9831341128698536 1.8823403700470909 4.776572935843989 4.696332799317247 2.1023255764493527 +1.423319749538141 4.902033908987141 2.592139293549499 2.5614506059016517 3.4788495222847033 +3.9203370661221086 2.4260382240807146 3.668016542333547 2.3557810906020955 1.988690752758482 +1.4674691119953982 1.0035216451020466 2.253585912697255 4.860462929930312 2.6478396920914 +2.2029913976270814 3.8620772911029424 2.9205765111748945 3.654249071584933 1.8140676469826635 +1.5506093426295813 2.6799281413422062 2.1710008758744834 2.865884067806347 1.3259802410123394 +1.891815411883592 2.9419157626671066 2.176171177912415 4.430527045791231 2.4869320709973786 +2.075473623130872 3.227104773043867 4.29958607062584 3.270568982399582 1.5443867628646566 +3.798225734893222 2.455589975156758 2.0136874997081975 1.887638816003824 1.3485396004518062 +1.487918780950665 1.2938404635172969 2.9238983161696854 1.0116646906919442 1.9220571874180836 +4.9829497532165785 3.4372559351366747 4.395035844322777 3.649446952645466 1.7161212587235881 +4.837273921945751 4.822729637962989 2.842486731517355 3.552201922142553 0.7098642039156027 +2.7787268208511926 2.3844704763665674 3.949578380119592 4.489491501380781 0.6685388871833697 +3.7778041938091964 4.884717480593752 4.389584693574595 3.9177182946226865 1.2032933652771585 +3.9054208537561235 3.1496607846085265 3.820428824189544 3.4030061236923035 0.8633741906082144 +1.5573943030719684 4.488831757630782 2.7033452136916214 4.819355130136657 3.6153593896712377 +1.8797457681568073 4.3882507951917225 2.488854568457807 2.485852491477614 2.5085068234162002 +1.2749423699413622 4.761906176247999 4.42638146387268 4.375976080506149 3.4873281017370297 +4.96163358782141 2.8732155031594906 1.7739271675335648 2.6420076811258046 2.2616484860432062 +4.164456455777627 2.503853728573327 1.894753503151676 3.6891819705376916 2.4449079619003418 +2.116922670036187 3.5531099584801296 1.8909346185963538 3.987180745187108 2.5410395020020258 +2.5177520812752907 3.4728036861273037 4.4281239151160765 4.353875033569601 0.9579334341911803 +4.422603571142863 4.873328096078 1.1545409535924689 2.2246358824634584 1.161144157360925 +4.858464757518387 3.204352401990401 3.626333921935996 4.143286276453679 1.7330110852362486 +3.6052947151419543 4.380271491217615 2.5820410059127847 1.377778940666051 1.4320740641632166 +2.868089907795067 2.6106408486723054 2.1771921388448576 3.8601855624893178 1.7025706687458515 +1.9655538249200304 3.837530390644139 3.970350902921003 1.3777179078308928 3.19781833596753 +1.4923297372161692 2.7233597481757927 3.5658573113182146 4.828943956509168 1.7637524659495127 +3.7983484577097335 2.786051131817793 3.0399675899691756 1.2712655838207731 2.0379039875718767 +1.1279596743226343 1.2849917737785064 1.5312882392766678 2.160692007737573 0.6486972976761253 +3.5380459651408946 1.0990488400942606 2.3653239394438157 1.5551951426444406 2.5700224986154008 +1.4624889329278026 1.1228084267133607 1.2140433752541395 2.99779769824291 1.8158090018179849 +4.165273070403273 3.787881830315202 2.019206898825745 4.159001722765124 2.1728198352953636 +1.418321445446717 4.875422948061353 4.613562983170455 3.6188894184966207 3.597349899529003 +2.181122119402243 4.263850206821807 3.3614234773525102 3.051537063214631 2.105655687854401 +2.3240633326428664 3.2418676652576783 4.5505694610750655 1.72745093903902 2.9685624437477323 +1.708459455540888 3.2959367837221594 2.525435505618161 2.924420418705033 1.6368485661051502 +1.082715803423247 1.3298922592679938 2.008532435748469 4.177575161507178 2.183080975706293 +1.5491226173398283 1.6264822255388354 3.270414122353011 3.8413267611338044 0.576129976741666 +4.278209038855973 4.155747333041949 1.130843665268403 1.076109022207464 0.1341370587939398 +2.6241344491150453 2.7714437759245754 3.010043377847201 3.4269892080644637 0.4422034182371721 +1.6520142181246649 4.334746109433816 2.978785522613578 2.4139160252569596 2.7415557535259234 +3.367052069987487 1.4667560447626977 4.740800328217668 2.557670576591661 2.894335933494895 +2.228910498023386 2.2769506413356675 4.198077013283617 3.855963406304762 0.34547007894975124 +1.1893762254399425 3.050669041297028 1.248537368689386 2.5333514603453247 2.2616715492040114 +1.050457799060938 3.9181992040366236 3.761768000395611 3.170179481731409 2.928125294659917 +2.4478067944390807 4.255641341847895 3.8302067279135956 2.0629637865852843 2.5281244756695767 +3.2551497069968227 4.766328842622326 4.246946761710982 2.31377843544114 2.4537322913559225 +4.925358705244612 3.3400528545502115 4.086612049531905 4.53073096736161 1.6463402605233601 +2.6282807651443125 4.893890164807418 3.8866521539111156 4.250508016752477 2.2946409393989833 +2.5026692654234983 3.285178572341836 3.0060663986229317 2.2669649922576505 1.0763789780114406 +4.474539624601226 1.8437351526911687 3.9015341441150864 2.3397912477969722 3.059439988563601 +1.4410296395115214 4.792881620807515 1.5924847814514513 1.3572381737363641 3.360097122250983 +1.9745455014565745 2.4197857710239346 3.03050118114718 3.757240689144891 0.8522847001613781 +2.7665634340994107 4.102465609044738 2.375859525969513 2.968527638679403 1.4614684782254996 +3.229815121559565 3.7105297740502303 3.003447987094334 2.1810118978557482 0.9526214872662068 +2.130736045628569 1.4014698299351687 1.0170569336580293 3.5419316964500682 2.6280832903726488 +3.0264052410760582 3.979591438540245 1.6940032826287288 4.090068068945367 2.5786993596119023 +4.076584779042781 4.476126586902204 3.5678338535634393 2.8326368394554744 0.8367486514962802 +4.975837452242673 1.605176694176341 3.258239455184518 2.398866216348943 3.4784876468941275 +4.300482549296438 2.834999395273284 4.714662769226132 3.7802272484266477 1.73804793295739 +1.814002653593588 3.967275347671935 2.499384919814336 1.045537219458787 2.5981255610329037 +2.444832004533788 3.5560920575656643 4.257269682882818 4.056486212282442 1.1292532521674403 +2.9972190054283776 1.53629676534135 1.239723192964583 1.5147720543617784 1.4865886007018865 +4.2776739154750345 2.0958067915349696 3.9005777777841484 1.975970719708493 2.909408268793694 +3.497143530410935 1.362260823439284 4.971228867564234 2.7013838039416864 3.1160745795597147 +2.137176210590528 3.0556901537064953 1.8848161288875227 3.8901777397810484 2.2057069284344917 +1.7545229197505767 1.9152110744402955 2.86320322745444 3.2476524784498753 0.41667962471008596 +1.3230283225003645 4.712253807584236 2.609933673059681 1.392479483546488 3.6012559048622514 +1.8775343770932933 1.5736109736421744 4.510581121844178 2.2034910445574036 2.3270225739945896 +1.6993160515838364 3.3568930715570664 2.0224795021585837 3.923203291458636 2.5219659990480605 +4.982578800803479 2.5940977481998977 3.5315292777915155 4.953546222252692 2.7797435005735713 +2.637925250119609 1.7212263757974213 4.470862148681611 1.333492749167192 3.268550684201338 +3.4370024113394133 1.4247864890417543 2.7626023558115227 3.007056120943503 2.0270102518821704 +1.4795345032646292 1.6503130458415276 1.4091617707108077 1.5311281103707177 0.2098597117474577 +2.5003133995745435 4.019965820800588 2.875588875547186 1.58472162326607 1.9939111676175494 +1.96019365043461 4.7043111882452955 1.6548617872969849 4.416436300688003 3.893131754042113 +4.910098470099523 2.453764671369562 3.843075134564056 4.437958747473846 2.5273429216653147 +1.225390526005134 4.208583589940474 3.2092503722129075 1.16343394100792 3.617292596252097 +3.4750783243253087 3.112974556808517 2.6020340096701258 3.5733395755094297 1.0366067917394064 +4.795462989527538 2.329135784566898 3.785973938274353 4.05148835713546 2.480578115793194 +1.1585807285054823 4.3050731255582555 3.904390482984135 2.7087486266696104 3.3660026520016513 +4.5858309851504195 4.307327769987609 2.781062977410602 2.0957458780947196 0.7397456099705886 +1.4118477540830443 2.5809690684110516 3.640773377537782 3.9696504483727812 1.2144977461226745 +2.051650036962336 3.183047334707501 3.8303716885840258 4.688728837195548 1.4201538085424283 +1.7102020316876163 3.3424934432498166 2.8375006804206517 3.0402313558622014 1.6448328118762428 +2.185638949404284 3.078719152529367 1.820667424548636 2.0170015981697085 0.9144065599859882 +3.3915220199771254 2.715568137386579 2.421821468615052 2.3150782097612916 0.6843301649788316 +4.226981214261377 1.8491475353913325 4.153406666777293 4.776936701558691 2.458227554284416 +1.5254636451772323 1.6938539734633733 2.6060411051690124 2.1269119124442324 0.5078583325903138 +4.149718180460833 1.0980335304603024 3.3210379745987706 4.805729335791913 3.3936834915840937 +1.5221500747408645 2.938376308035248 1.365776359541325 4.870923468465568 3.780443492379059 +2.4120625460520397 4.978579264214565 2.1103295843789547 1.765984781258795 2.58951373969006 +3.490852670925057 1.3298749881515897 1.2244760152002412 4.182341638254316 3.6631671528187266 +3.6704131070410657 2.561624044115311 2.7743134116449393 3.0369936846708803 1.1394797549323796 +3.5634878440304614 1.813602103806684 3.352237081835513 3.255395767565083 1.7525633637583953 +3.295295706770525 1.0367765035475562 4.40314201792353 1.4433070097337688 3.7231078774368864 +4.405394046385407 3.888170946535028 3.839725392939133 1.4954509633421087 2.4006545641306434 +2.4878277400844238 4.744534135556477 2.0580089746558397 2.190334830187347 2.2605826433480845 +1.1238006982136124 1.001447422541312 4.084343863238706 3.9082563997741127 0.2144227573209906 +2.991050991893933 2.0818812910401467 3.1451158189141117 2.9746862219326298 0.9250058337534061 +4.436323217639021 1.5928862553433625 4.406690581379358 2.054791954878699 3.6900624531144253 +3.9499181836871062 3.3512271956895945 2.164410649345987 2.4248526432842823 0.6528866144408169 +3.054878197401979 1.6070139627326103 1.3437212674761199 3.7823001891773753 2.8360144568391 +4.370402465191811 4.6246164092305095 4.831716390199011 1.4135790575887341 3.427577505167142 +3.1403013502700508 2.4607647557947776 2.8981848313997234 4.602953701810412 1.8352130352502367 +4.618069373883417 3.669115145598241 1.4871126372544334 1.8325501621053193 1.0098718784852956 +2.970099957159764 4.035598268909249 3.7868591957959574 4.6117900444916415 1.3475153273602434 +2.617563409608355 4.6956543692667925 4.552545147440568 4.269817911378794 2.0972354962247937 +2.657459778998459 1.0896933480251159 3.603843425872021 1.9295413097306393 2.2937260425348103 +2.3825193785621144 1.2714086099998125 4.870564143805261 1.4161282387181005 3.628731811855274 +2.383199073108596 1.2539345064737 3.86735842601507 4.261235881832574 1.1959840766742544 +2.7284687194898654 3.5137619553225776 3.7741550973425397 4.379179044247557 0.9913321555226268 +3.1825991639483275 4.264485346013167 1.2762621465236998 3.1112388829598516 2.130168381655475 +3.9572978663335627 1.6096376652636861 4.69966555453873 2.8141351945325956 3.0111016519194957 +1.9912912987609888 3.591027974423324 4.832687499525349 2.005899071062123 3.2480594592391276 +4.801307796442189 3.610014094655717 2.1783688863652015 3.1879869795339255 1.5615727258023449 +1.6793426274134386 4.767607235115483 4.511870284948214 3.6351537336391733 3.2102975249226167 +4.846503095599779 4.065072778472247 1.304753356688292 2.6664564806469024 1.5699900440208765 +1.021520354220585 3.1685555087457353 4.8986352983777515 3.3641084610805687 2.639040084794494 +2.8599444923030193 2.9101353202530653 4.776191667802988 4.3617602455641675 0.4174596063683318 +1.9149253367414008 4.087978511308073 4.444264633769981 3.894955890886045 2.2414058522505518 +3.5807099601206347 4.611155993589712 2.0687682000086913 3.3069015356122633 1.6108361756010392 +1.6866861531487785 2.842939083015299 3.0841624131589365 3.429443561985688 1.2067062233866344 +2.726619547570923 3.8782443186014004 1.3708043736704427 3.995625290065185 2.866343394709422 +4.249223382742651 3.5202002781851855 1.039639347889675 3.750041182522806 2.8067334736595932 +1.9525657397167953 4.60819246891894 2.7188387324703074 4.419768762169126 3.153651263342874 +4.450268335801827 3.717005471490378 4.401529295729947 1.6388828234280934 2.858301936307658 +4.264150786523567 3.0865017918031246 1.578397602443418 2.7964901791247017 1.6942864811277099 +4.335171066378087 2.6621474384648507 2.7220783628338463 1.4147953242240234 2.1232044184658476 +4.754603722281933 2.940894167782617 3.0985966641181264 1.5922068006222956 2.3577007377793087 +1.8473746947339391 4.274452632052185 2.4711354446245006 4.922166825362849 3.449385763173079 +2.3551056619651134 2.9218036155611915 4.620303522475537 4.618814208137177 0.5666999105939414 +4.238443627272062 1.5485723865459797 1.4764558945827093 3.9163206316802652 3.6315764107364448 +1.2334974041097126 1.3886625993399377 3.819137255387868 3.672190410847719 0.21370449908960887 +4.135115438821476 1.3852014534457338 4.517585725163574 1.7125119525427959 3.9281631581198435 +4.446934040153595 2.199693550185383 1.9578080308462051 2.667660749770956 2.356688503455098 +3.5764409398504173 3.573747719874361 4.929158537513438 3.052806426254681 1.8763540441129536 +2.7238655093657176 1.0081608228755004 1.7624442548983072 1.2308585033118113 1.7961698089363027 +3.7448647219375615 4.799716773087804 1.913142767634651 2.1756000598497094 1.0870127322403973 +4.6445969142752555 4.652001736532318 4.444961329542226 1.9663343721606958 2.4786380181969045 +1.0861549745451788 3.52651598591664 4.972309249378359 3.3731203471916404 2.917664650143862 +1.4211780864823362 4.061986444422053 3.3702241657682808 3.567884141066443 2.6481952815453647 +2.744066609517567 2.972032701493064 3.1506878507380764 4.619964083626165 1.4868561422075754 +2.8256478879595233 2.37256571261194 1.9058950437530524 1.7085149161096727 0.49420883481198025 +1.6775826235074085 2.8593462991863694 1.8033614202215045 3.6121083496955393 2.160585763175347 +3.1327579178094824 2.3688044225798923 3.6265322575540435 2.605969074484523 1.2748231851949112 +4.8560158142343255 4.09321769307736 3.2861960078754646 4.145278064704733 1.1488615904479544 +2.5001589038464855 1.7711193199541055 2.3734519278129045 3.912340880640933 1.7028440692024978 +1.1015072007684474 2.6337002086012644 1.1050361385623848 4.142202271772352 3.401763297757409 +4.198983212126256 3.9837644430902643 4.294449041603467 1.4026517917145611 2.899794898438578 +3.756846358231036 1.4757573765575063 4.570395300394117 2.5854384939010746 3.023808933440643 +2.4685620945117095 1.6542516122068172 3.7702872619166907 3.178492554284396 1.006639229105055 +1.5391100125021535 4.952784639263591 4.661005706744409 4.858815670805486 3.4194010059185342 +2.599500211206536 3.156376890199103 1.8129798585342916 4.583249757425814 2.8256869869662204 +2.7230556960841263 4.112323135449515 1.2402129125656685 1.3740414048125924 1.3956984213711598 +4.4012965202720515 3.0648102779207265 1.415124079382172 1.6967289433123667 1.3658318986549949 +3.424191274886736 2.1050779522705625 1.5784413770397787 3.0104702340698384 1.94698911277652 +1.1130704796779751 1.2341107871907746 1.5566477527351203 2.7299561284109957 1.1795352052711077 +3.632169811558206 3.3650236844397465 4.0926315217545755 4.695384958980078 0.6593017210060583 +3.008885067978749 2.551401112334208 1.9725605375252546 3.707930449177323 1.7946588254984523 +1.5306487178297208 2.514825662268642 1.0320620365142052 4.2391660358503644 3.3547161311388356 +2.4353554779056035 2.0228355325223344 4.551308789398691 2.592098909570501 2.0021678397565488 +3.8311559655534047 2.930472504126218 2.06126793457849 3.8640341766360495 2.0152411322694843 +1.7248454302459746 4.8466479866563885 3.2223371693945726 1.9897690724249837 3.3563187147346167 +4.888662323200045 1.9581749588273851 2.6135566753390136 1.9053209102855497 3.0148555672948385 +2.7678008066459534 1.5020637274473612 4.592698876302286 2.5808261947526683 2.376914394845518 +4.502106426527815 1.0132264729399254 1.687304325953372 3.405364505488581 3.888960543776703 +4.250341625710258 1.5248549689925364 3.914788815508405 3.0353047969427522 2.863873191127487 +4.1703254288052864 4.302257554921935 3.666681603513943 4.4652817217476874 0.8094246319112176 +1.3792281999919522 4.311418909249557 3.0956673073389003 1.8259700081080488 3.1952892806646997 +2.115721975982371 3.7626312994891693 4.104176314953737 1.7364737786197675 2.884150762428332 +4.969050450858146 2.0753119252908903 2.2785602388993653 4.302141412877171 3.5310909676797553 +4.42207040768016 2.256634682089221 2.066109207722507 2.0350601192873548 2.1656583127442355 +2.4539849881651548 3.1757573041675293 2.5688367873910365 1.2313837481674583 1.5197815330750069 +2.4183144634583127 3.6424429431795784 3.329073669503087 3.312417452140446 1.2242417916578117 +2.509972749587045 3.3240715983938927 1.6553899954329054 3.9361504773048583 2.4216988481843518 +1.0328217543207434 1.0285523481397796 3.014914467907498 2.2575410569097913 0.7573854444834806 +2.295372398503643 3.2080242551918445 4.239934607313675 2.9596427012086703 1.5722852083367085 +1.631610433554501 2.8065126895511328 1.2574069467656477 1.9317191463473726 1.3546557694302708 +2.8556542173899855 1.3740714476608287 2.5982082811768743 2.6375778198351574 1.482105753356516 +3.0907231353708204 3.729433976471356 2.560571492729051 1.0376221911768888 1.651461811135084 +4.849063560073449 2.230400751509294 4.517540491750951 4.894244216051802 2.6456191337490815 +1.545080179181161 1.0575441082361863 3.1190184206291125 4.592357440287358 1.5519082728434643 +1.366767586137751 3.7859726399729947 1.3344650989558966 4.147229476192901 3.71001300999814 +4.339945503727135 1.598466230003953 3.1335372886435584 4.4588083142333765 3.0450044169954293 +1.4240399707430402 2.414558037207751 4.247095033469945 1.638408078926795 2.790407437417805 +1.8405395364028792 2.4283681190451856 2.3172316407539606 1.0460749632839792 1.4004933920757303 +1.9333193770862618 1.4433014201732237 1.1648004266028344 2.4178524568729687 1.3454579104012632 +4.8306145328203725 2.4724911093392263 3.9173626752015194 2.6525324954933343 2.6759188074138347 +3.0677114514883805 2.1869705141212017 1.5499020435097979 1.5515881611626812 0.880742551343556 +4.358213345738595 4.322399414866855 4.655448546416896 1.010687555752018 3.6449369427627842 +3.344765447413416 1.6636589842031215 4.261986413355007 2.4184681513096034 2.4949305647938043 +1.1315870421669119 4.032670470780432 4.616641130188713 3.667653030659468 3.052353759449272 +2.807563786215195 3.493920691129441 1.3768281953739052 1.720065212058862 0.7673965406139465 +1.9378830304368422 1.635193614821922 4.084409073924212 1.3158868703816586 2.7850199413708716 +2.093191078041677 4.665804649625747 1.2036678955145552 4.109256184559415 3.8808225795742297 +3.6445197598352435 4.05482731369386 3.796865503244442 1.0548432904712097 2.772550829848797 +2.863699267126565 4.7035638513306 1.1838546180434992 3.785323053896836 3.1863364089420143 +2.654420997435478 4.753757114353361 1.28934240957713 3.1111074123905027 2.7795754814848004 +2.8977685743424497 4.8090871922489 1.2993794319055563 3.937304401611975 3.2575737911759473 +2.4764007045310197 1.2163730544549947 3.880185843822648 2.8233963462075193 1.644528419099453 +3.936380003439859 4.270878752719055 4.599777085075265 4.035068128453158 0.6563426079103615 +1.2011328005093165 1.1389193853504964 3.5975778613085643 4.085186419391402 0.49156140505673107 +1.1909067957879782 4.525499835418243 3.303349916575024 4.254987103874345 3.467726067064925 +2.3153361553548844 1.8497870287174734 3.4532193080678377 3.8875987653146873 0.6367271803456515 +3.466746231444729 2.3658869568549323 4.4717410486403 2.621777695418473 2.152732113086559 +1.3567333002342115 4.115123318928719 3.616068004907044 4.213001433806239 2.822241133172507 +3.2715716575675065 3.4976723344250313 1.005953713482541 4.470785143140787 3.472200793736306 +1.7375973899581996 4.505721638302015 2.8485537404444408 3.3603199712857172 2.8150340192080274 +3.032238030811747 4.33645924817136 2.3826182550188397 3.955045396732429 2.0429195039963175 +2.257176197812671 3.130325429436738 3.035043542629707 3.6786238201777404 1.0847051001698584 +4.499078582199692 2.96409176753252 4.6869293860906005 4.571184121613375 1.5393444992759007 +3.6085734886123055 4.101865358382202 3.8988394575979957 4.20005834434976 0.5779876179617109 +3.8481981784650467 4.458900594913386 1.8649203326167663 4.9420826421079855 3.1371779229761856 +1.5750852047067743 4.527404473384135 3.1440602102790303 3.941296755504215 3.0580672283725576 +2.0618154608724275 4.2588944998382665 3.7530644970793636 3.7532826401428188 2.1970790497953074 +4.817348140453165 3.7646344905515683 4.424462604241155 4.101031243301477 1.1012782908640455 +2.2495931354701355 2.197660867796355 1.0654895162877684 4.426401942895184 3.3613136271032324 +1.4977670388232314 4.500592422931025 2.934021782709532 2.6549607791108176 3.0157644687826064 +1.8522526114952704 1.4058616657729486 1.864251909407007 2.7781588576792355 1.0170992019086078 +1.4727995474444517 4.510622481847214 2.228464554303257 2.3104915467499314 3.038930174958493 +1.6272642157695936 4.247810539065707 2.2403796113888883 4.36376117796906 3.3728344622636377 +1.8131141120851115 4.008656752129458 4.897387195135179 1.1470334423325905 4.345752035656585 +1.9525896940808267 3.6128651421104823 4.0773765682793925 3.086572838111612 1.9334442311699764 +4.895076335353143 4.265586066244863 1.0038376675788312 1.4218754899707782 0.7556544315043855 +2.7630262740851035 1.5310585779611476 3.431251366791837 3.718725268197276 1.2650634957511941 +4.694595557085313 4.981768461792628 1.0156205561255462 3.0309658514568247 2.035702565850904 +4.678641827404764 3.0290881908018066 3.5549662635230854 3.406374700135304 1.6562326686610391 +2.2262449448601953 3.153477230107385 3.2385879668446496 4.791503425223323 1.8086752421803562 +2.160935895847011 3.160176489241199 3.635988977995543 4.485719902725808 1.3116876182726285 +4.113847214101237 4.496900905584602 4.228190719175863 3.788573420345196 0.5830896157454748 +4.055960410777761 4.818530900185173 2.253213596887205 3.1194445213425435 1.1540666210396215 +3.865714104811239 1.670223372215315 3.60014331666771 2.608069332721562 2.409230239420336 +1.274009325362396 1.5868465239238851 2.8204486375596325 4.541996658739689 1.749741324319903 +1.5048166029067427 4.191691715400181 1.5899420053611464 1.7913221935875816 2.694411225174573 +1.6908762648249902 3.6745174059211 4.4308188805606585 2.936610353219885 2.4834434360031157 +4.218689352441826 1.5682161834910322 2.2591565130442204 4.057557873111788 3.2030072543191253 +2.861743004473829 3.9457669111273437 4.884241474737612 2.1223578736671156 2.967003346148852 +4.219675862608085 4.12385259731339 2.5141842038623867 1.0869905913102094 1.4304068322968373 +2.8162848426023097 4.767077053714287 1.5232950364015139 1.3170687967181816 1.9616624360141792 +3.7816055729224596 2.6296790458502493 3.6579757291164707 2.2266726202825726 1.8372706151055227 +4.8531896461863315 1.6028459592592212 1.1348685308187938 3.5608201433985918 4.055856914355515 +2.794003584801571 3.124850020437425 3.391586101286846 3.629889929668643 0.4077353045719369 +4.436759267202367 1.351775033810842 3.007399867181764 1.8408039186180445 3.2981925091600672 +1.9865416923663397 1.4509170469939816 1.4098921271661013 2.3433512044884144 1.0762154104851354 +4.588399060495141 1.4385069636150059 3.920429727305164 3.1487965272500094 3.243029142239597 +4.936591924914784 2.9709356475604083 1.7809364043079898 2.050332467202436 1.9840309572699943 +1.366772310789274 1.2746260216789054 1.7979252447465406 3.9761740008424784 2.180196913590677 +4.846310200343707 1.1435137158095268 2.291565517662797 2.4421893547276525 3.7058587865933075 +2.1353483531860964 1.6966746916596502 2.6015264133600025 1.8674787397976855 0.855137748189886 +1.6961986545249452 1.3432137019121582 2.7761815086257173 3.9297713955800084 1.206386341125539 +3.091237586629532 1.2854695909790066 3.759295038631129 1.740846864191794 2.708307790302498 +2.349869341412556 4.413014527759088 2.635473725060828 4.6515543802789505 2.8846402320375417 +4.798350062016768 4.73153021594244 4.167228623891462 2.0478751468690213 2.120406577144229 +4.457461587084288 4.676865613512122 2.314716495060858 4.239382820883131 1.9371315372392643 +3.631202919472264 2.4287349450260916 1.475904621498639 3.9848104754894504 2.7821822035513857 +2.6358777533264184 3.582806999762553 4.624871187045864 4.43024430522384 0.9667236528004628 +4.4498740324865 3.6524169588584057 3.6800936279888425 2.8428104164396717 1.1562789285555528 +2.104467580620185 3.138115694423214 2.722380849594285 4.262381695671573 1.854732063961618 +4.542884416810942 1.5228673682597482 4.873482106125964 4.810224061449183 3.0206794854396906 +1.4989407108646988 3.7119685930048782 2.4198095908922856 4.113361718187425 2.786684627832102 +4.190060805720817 3.676483294581675 2.328692070953093 4.394658778498032 2.12884482680912 +4.342128645114942 1.9532082392304928 1.475437789740789 1.1481381890951998 2.411237386537021 +1.0787962405322196 1.4994378144783562 3.14478179344221 2.3129230199474926 0.9321632650839761 +3.109329938815683 3.4060089530538593 1.2969983724645502 2.7552634069752022 1.48813821547788 +3.7752383541516616 4.4541622930813904 2.2005817072647273 3.074317972670876 1.1065047565816164 +1.5229501486249362 3.865568270430677 1.7701817775361892 4.499775202119686 3.5970181995845003 +4.89011326032213 4.734634367451509 3.2604851808731046 2.7383682468661363 0.5447749800652658 +4.8811867537912805 2.690582031281891 4.24820065122196 2.5187741703583177 2.7909971341785433 +1.133668946036794 4.689292884101229 4.425539804349647 2.057630637153981 4.271938133099087 +3.6701665906391097 2.2282454382715877 3.8478764249979642 1.9449611099056128 2.387514043112188 +2.638534952821116 3.370675228495851 3.995144308716617 4.450501929374361 0.8621948422231244 +4.89067090313513 4.087644624247457 4.753835438813294 1.671402933726795 3.18531652320425 +4.0215172229756195 3.37877221849291 1.9989150312846493 3.1512200468190983 1.3194423024950068 +4.5115432528927 1.4056632041506982 4.150198589763154 3.1801959141008527 3.2538279100108607 +2.526586371267112 3.474134051680349 1.3402891418861915 3.4317185588710606 2.296066987891724 +3.906339884789054 4.922729067662576 2.6172115312236492 2.9562944547660703 1.0714589119982072 +3.6232013826430864 2.3775532709474154 2.517610408124801 1.446986191371653 1.6425210597338722 +1.3590873479500107 2.6427877659172765 3.69457122967285 4.280530990490832 1.41111147836987 +4.058191272458743 4.4883357419626 4.194616292882108 2.8803982910925243 1.382820747918023 +4.009020399223786 3.4104011776528247 2.8813932439842596 3.114703434277544 0.642478495615933 +2.971163435799961 1.9171729298136007 3.690108753227329 4.4738799941063245 1.3134661566779648 +2.7475960182869628 3.592208623576475 4.081858693710019 2.1608031827325105 2.0985291823729764 +1.500818824295186 4.337008994527801 4.456105519007796 1.43112429906112 4.146623453215181 +4.229165912038713 4.868005775828452 3.6604328772015737 4.967455304870643 1.454793455441988 +3.0272229114939972 2.879681580260055 3.0651489512968375 4.133502825419628 1.0784935997841891 +2.315190354690619 1.8280863003544403 2.311234723139316 1.3196366727043856 1.1047791876104014 +1.162453806774403 3.5592930828776845 2.521088368924941 4.947127097976832 3.4103522443189087 +1.791246526001618 2.9442464324580637 1.3918195045534434 2.135315870301786 1.37193135038513 +1.9387405029663989 1.1286956548856573 4.5867833588594005 1.14543754777912 3.5353972403878386 +1.3296650555767617 2.649460796253604 2.6404917880571204 2.3125828895261806 1.3599209693377436 +1.3547665185709485 4.472359824910177 1.5178726523810506 2.044129330509627 3.1616979797264135 +2.4934700150635174 3.667019175326258 1.2289471527778568 4.220477345179382 3.213482616041868 +4.820088355604178 4.258093768086815 2.3826934369827737 3.8393952169090175 1.5613513352346737 +3.4979334308473624 2.6298063202939006 4.227170169441843 2.772357674356103 1.6941440540684545 +1.2878068611029567 2.131403280201982 3.3386354413829777 4.8229815974263595 1.7073190765868758 +1.900116343643035 3.030984561002168 4.696024963900303 3.8402356934497317 1.4181813002755832 +1.3742776551029272 4.50543065313114 2.5446972281791664 1.7048053709998943 3.2418416723857924 +3.7380393073259444 4.05126018876911 1.9301896829714873 4.517262701642183 2.605965104237956 +4.991031873605125 1.9140853134725249 4.977639930912433 3.5349745336528207 3.398364839501797 +2.8231756170473425 4.027098941275181 2.5090023765097187 1.209525643980367 1.7714601742644314 +1.868693822913058 4.143263347284478 3.8134118461282784 2.6064798740466606 2.5749468550694496 +2.0533709293388585 1.4197095379085303 2.572665361096505 3.717467340304898 1.3084717538368469 +1.0623944283547995 3.4670930670514712 4.0212645034675685 2.3176054154918546 2.947037466845623 +3.3031811358220953 3.300334804046975 1.6106017293724233 2.3399088734437474 0.7293126983661022 +3.6595718121788967 3.9518679523645375 3.2964637724824435 4.838850279920138 1.5698385814768574 +4.482807902782586 3.1846940172037015 4.582596118180783 3.013715879762321 2.0362919393919623 +1.0687817923557104 4.077987885551719 4.2518748462348235 2.9108604374715834 3.294486447967059 +3.363221984919244 2.4646201305449584 3.6734070183681786 1.963256987696297 1.9318639755665878 +1.2872203920131273 3.067881150322553 1.867365883214498 4.6837663179127045 3.3320960587521102 +4.990622227039328 2.660157010428643 4.097594790180299 4.290981756112963 2.3384752819786074 +3.316653086845845 4.814589548778701 1.1465155076625635 2.853859245547104 2.27130717501651 +4.486367019654644 3.1911435465418947 4.941806020597269 2.5618364273924006 2.709586520095271 +1.4387483185263763 4.098459165489585 1.6673199620512311 1.0146767933596013 2.738613681243413 +2.5374740603748767 3.1816303187435526 4.681538034455395 4.608066413273495 0.6483327573974872 +3.3929531696208777 2.989013875442939 2.58844611728684 4.943402439419161 2.3893484954129147 +4.376911155894518 2.162830074089551 4.987650283657997 2.489666918471875 3.3379748245834984 +4.527449895907067 4.712644730309492 3.0621700544096564 4.365553682800473 1.3164748419345327 +1.7175394131202109 1.6729124316485415 1.1480175763916418 4.043428210736761 2.895754531888723 +4.572456064619274 3.0907512200068967 2.444600812540063 1.6707795074835086 1.671600627753896 +4.151909353136619 4.212741625240676 2.269429559965988 2.4655233560096055 0.20531279106801387 +3.0944932541273893 1.7162340570567527 4.518249244921271 1.540512495119295 3.2812367432769967 +3.6272004556422837 4.585733546538036 2.611448081866235 3.8760822453149784 1.586847583639925 +3.088649541039157 2.9540839631548987 1.5300411292153977 1.4803913393521175 0.14343289854420496 +3.745837166213365 2.063457737853888 1.1302303963677565 1.911863398920124 1.855087785428547 +4.454945276993663 3.2120323681410388 1.4196167565263114 4.486869131961334 3.3095119932709536 +4.255892059021667 3.820067340545133 4.698251404271089 2.5212963298759985 2.2201523779168135 +1.3227089094638496 4.468705438326383 3.872805493951924 3.9467603487403986 3.1468656596940856 +4.694384186366481 1.1032546534783703 1.8542980219075265 1.650697650598501 3.596896500203801 +4.943040993237284 3.524410627992369 3.0015041055937473 3.465182949990226 1.4924845674028848 +1.4196184401874206 4.424080490914589 3.0006665891857227 4.3755410592441795 3.304099275548213 +1.299418166613779 4.577944626693878 4.234733121263391 4.979277132124388 3.3620055820230763 +3.647837649033211 2.6318430620000175 1.8951440833226658 2.71579984416055 1.3060324952608018 +2.747348545771399 3.899411790943948 1.0909476394605204 3.803793354419189 2.947334659323083 +1.9627724377214393 1.169258562078575 2.5199374433082764 2.2242182964253914 0.8468258880495451 +3.2272736422242234 2.590811724282253 1.2892750608506516 1.8151061603746514 0.8255798678607602 +2.9048663038691296 4.875152372725445 1.4855965742839405 2.4316209262577524 2.1856324639922295 +2.8362431910757993 3.401567665595914 2.4701729924534224 4.426804161652903 2.0366632745189794 +4.4358765911758 3.6734844814086447 3.5256559604023265 1.7851430575562497 1.9001649649461732 +3.745771831776795 1.5122095360925671 1.8398610352520817 1.3551750827248372 2.2855461056997823 +3.6831056677898517 4.347405021816795 4.737876602470419 2.3579721791795625 2.470878122401022 +4.465910388069323 1.2093000812935921 4.0941524982407635 3.204232384204921 3.3760136995521046 +1.074680114713079 4.269741768435634 3.2719749362994968 4.494753545098806 3.4210534192300304 +3.9430445344381737 4.122670517340836 3.1017632580529004 3.872482411730937 0.7913744420815829 +4.804921980230244 4.843678821781347 1.012397611929599 4.021932576774004 3.009784510124941 +4.333360705573819 3.1604045269454164 4.803390546557084 4.283095358364953 1.2831731293315138 +3.0429290256262647 2.6701882350340704 1.5647177777116004 4.1263675317422575 2.5886261142344638 +2.9356276931923864 3.6611962696121316 3.7380738139057974 4.831416821326185 1.3121923223989818 +3.7058837244260903 1.6252490264684534 2.7752151716841365 3.582051313553067 2.2315970304181727 +1.2586165313401936 3.009156533970678 2.711460323782277 4.529778790451939 2.5240190861087886 +2.3799905463997133 3.1513100259306226 3.6849583711417613 1.4482668580965066 2.3659506892647832 +3.5179766659356857 2.687935595364053 3.3084828720897668 1.176664975239878 2.2877097115161233 +4.800057561531144 1.44116155766404 1.695339140406229 2.550233784091229 3.465981421848032 +3.9190855997709653 3.4953044708736374 4.3201428779626 4.987566398716106 0.7905976228553301 +1.3353666275979172 3.937472196727147 2.2059107438229373 1.9271888766713268 2.6169904990507384 +4.480991734313238 4.662330711512552 2.7379313891760395 2.3132083979749436 0.4618153785946278 +4.350310623666828 2.710590249401284 2.0608816797521086 3.695878830154716 2.3155773767261985 +3.274992664561428 4.238150004993306 4.948347657096508 4.6980314857511765 0.9951533791656414 +3.2397579254672775 2.7293034385279933 1.7908694994075618 3.6590384491383574 1.9366514936804484 +4.844142510023639 2.1849218764595832 4.686072511390037 2.7838680276224905 3.269531507118134 +4.716444369162043 1.4763810247991982 3.4851115575763445 3.645536585276469 3.244032469781449 +3.156731614825145 2.6511806013006045 1.0409887340058774 4.108727434994621 3.1091160423534845 +4.90492898173401 1.2191571404974706 3.9219294725731264 4.535318179269618 3.7364635380470372 +2.5311234460907897 1.607303789128939 4.681704708925455 1.3954702237090917 3.4136168282943484 +1.9277575738498802 2.6993519335380025 2.3224385820900455 3.9721587170625647 1.8212452826668546 +3.8647009744142413 3.4645528691373886 3.6144491207497533 2.6939452893666354 1.0037160005438066 +3.290574959001884 4.165952154529947 1.9714479857998461 4.672959274990321 2.8397972603821837 +4.4394621646842936 3.2758113235860686 1.4232577047417436 3.647018933345653 2.5098201692214075 +4.964028629570196 1.6957834216290681 2.309148001004663 4.116094429485958 3.7344989134596696 +1.9474306812442852 1.407954422048562 4.614761356641125 2.590599999099773 2.094818329975051 +2.539824478231251 4.613908954904826 4.3308639778636335 2.4959088494442243 2.769275490031822 +4.00115709951218 2.0593252876395027 3.1448514519282806 4.897415259550941 2.615758147342671 +3.8300948777172596 2.616598844268331 4.101909634933182 2.0075977689699362 2.420478220333894 +3.350738870940619 4.324597858271213 2.101601236916309 2.344125316937758 1.0036031369992924 +2.5026174617203156 1.3765034995730532 2.758434054636921 1.9674155801404454 1.3761696417003746 +4.755235513433588 3.0637348561714606 4.220770955317763 4.062619222576001 1.6988779956451936 +4.907234863154649 2.1858585322136537 1.454014815461417 3.707941081928471 3.533563746315607 +3.4004044344671316 4.823198584513213 3.584200858136573 4.51781038690474 1.7017549605075548 +2.580336694533841 1.3884240662494958 3.298368322420722 2.9042886223904656 1.25537027344112 +2.4161671408740863 3.7409583516499954 3.637966113634391 3.3256131668856432 1.36111576123845 +3.606538291867405 3.5052365321680035 1.1779414789514608 2.012545760872933 0.8407296556681293 +2.8647309196338457 3.0799605566722374 4.590840610028135 1.024922831009258 3.572407228100206 +3.8780638445014826 1.9433580606348788 4.0058386003496915 1.8809639017071893 2.873704743890359 +3.584523702405061 4.684140388694258 4.195914923345484 4.751651878443953 1.2320715969568299 +4.784295796160528 2.4585653374891443 2.4907288939905103 4.450556045515784 3.0413721624042447 +1.7105845575968668 1.3878036175545754 1.240631490847791 4.227766507077904 3.004523779310569 +2.2970404566302807 1.4398096288695084 1.0766175595940948 2.6879944601829155 1.8252068945230986 +3.505601943805696 4.1129853991001095 1.556770821867461 3.9728998779514004 2.4913037304629175 +1.2623507192909775 1.1401867654107631 4.32454647828159 1.740355928418908 2.587076502469001 +4.186289393996496 3.4234141826398385 1.6439926517925683 1.7601912378766023 0.7716739593315262 +1.1696497860478705 2.4479213780685427 1.376245010943732 2.0823749680493218 1.4603416652581702 +4.7644551977510154 4.892877857157103 3.7351409580287442 4.1366760443033765 0.4215718265711175 +4.4565114365656395 3.3626209291303852 3.6272820153137584 1.3032700631042435 2.56858482364699 +4.670604827733339 4.2573081292875194 2.2564807987011246 3.5276868024044847 1.3367044792315472 +4.953478622687328 2.3589822522269714 4.005109002091915 3.6798399449069916 2.6148061832369014 +3.008221149601273 4.288526640440976 2.9082449787904148 4.27672822942584 1.8740140226647168 +2.155017493341493 4.303867959028483 1.0382658065593398 2.5696942741995232 2.638717771074041 +4.45263756110799 4.037256594055231 2.707150983283844 4.3325252085684145 1.6776122078743652 +4.723288038332224 1.4813806190955368 3.128956554323736 4.563235977048908 3.5450135651862786 +1.3099377471856775 2.844256679858153 3.426113022650612 4.483306042634403 1.8632744480241372 +1.6043259939357681 3.460629559211569 2.511626980880454 4.893162992933535 3.019532530568489 +4.123873661562093 1.4053917525009174 4.940874933745398 2.2063261138898405 3.8558917435615743 +2.286941548575508 3.394886088778858 2.630096414928249 4.829188463268741 2.462427042825999 +3.567891527621562 2.562211201358168 1.5124240974780179 3.4594587620467845 2.191423487978911 +3.816746451535567 2.155797278293199 3.2736622621107263 3.1775192144527584 1.663729437651287 +2.171888417723935 1.8154690265769666 3.3900808143508954 2.1064008151225218 1.3322421412057692 +3.3006075754850848 1.4609112910408975 1.7151383275398313 1.5616988448331157 1.8460839888399045 +1.748825594079908 4.702970865695336 4.134656884008503 2.894667979027043 3.2038331370851565 +2.139635771872169 1.9636990570831134 2.164776864763667 2.4788443571218948 0.3599890517320643 +1.6734927822805883 1.0348196426899978 2.2635724214722313 4.21536273658351 2.05362820719737 +3.029116049987061 3.077965916215012 4.239773885975339 1.7426607558275968 2.4975908980829393 +4.300959712481715 4.361942682451993 1.9308467656957138 4.251903874607615 2.3218580976142515 +3.1087087776033404 2.4580548202824533 2.605225280230761 3.7051406914407177 1.2779532401439806 +1.7118153828128881 1.5842506287638751 4.3218611407002125 1.5679437695354244 2.7568702642088114 +3.747523559514572 4.978136686794612 2.214375270030093 4.6432003719463575 2.7227926922063888 +1.54634772171674 2.6802991280195916 2.5633569977900623 2.0428590875165793 1.2477034369012845 +3.7657927282848735 1.9794482993077676 1.8758637781786587 2.0367681011682537 1.793576488498409 +1.8734848906175032 4.406782055257457 3.735965430332171 3.8045233185174605 2.5342246759917035 +1.9737255799954285 2.6183937157235295 4.868975454770314 2.4597965237622272 2.493940682301087 +1.9723546634380513 2.708150506046801 4.458736278150585 1.3503790359419838 3.1942573890015473 +1.7102134933674038 1.1007860070355182 4.2303180215866 1.8042997572131605 2.501392907995526 +1.120841362266344 2.6077836613374066 3.6784136461993255 1.644985786418038 2.519092348783872 +4.987209095096784 4.457465814865848 2.6533559554112296 1.4273095206239477 1.3355964222789896 +1.9338295405024999 3.2821988107007654 4.821711226652817 2.685257564174764 2.5263677366390844 +2.038090166476784 3.500573366498436 3.509769077364264 1.9015839195028321 2.173733335142876 +3.9246558737217816 4.933936568869973 1.9464833303042308 4.072667902273056 2.353573528844398 +1.1818277046808494 2.01032646220062 3.34815754874344 1.644450616695797 1.8944728822337351 +3.318930550823229 2.887498257341113 2.45318301972152 4.215255593711472 1.814120607861234 +3.8795517445621717 1.9381267843218613 3.385272415066734 3.262846095932359 1.9452812341306545 +4.375010584039905 3.0483569389337384 4.0639427077368495 2.515483185717252 2.039052913831968 +4.122231829160466 4.341990536720419 4.738035612537857 3.033823177581763 1.718322994377774 +1.687761655599926 3.887344528104734 1.984077076025197 1.6888853028778956 2.2193023669501075 +4.888706513292325 3.927854211581296 2.087228161639628 2.8997685259123407 1.2583556688296895 +2.5500033151609234 3.32900025286996 2.7222590644748026 3.577171796254428 1.1565950060064059 +3.8463247358589236 2.0866937777576786 3.5127869980104913 3.959984638604117 1.8155679107267817 +4.6803812586389455 3.5127609511996263 1.8181601904629687 2.717967861660837 1.4741068575551846 +4.433719514307213 2.1752205766331776 2.0913984333188695 2.9207779952578745 2.405969224499117 +4.986773616699367 4.71301865875356 4.007213907667675 3.1864883081719686 0.865177604118078 +3.4206393637815187 1.4797766423026157 1.6276456064220528 1.8124343777596588 1.9496397086741324 +2.724557005169116 2.9940663438743123 1.547686497637629 2.733799985357749 1.2163471911427672 +3.7872971221223843 2.543684414765785 3.6857945860856165 2.6223519880476767 1.6363015385987063 +4.794387788428857 4.301000426910231 3.839310065618707 2.1759678369209454 1.734975059842518 +4.375746316450282 3.6562748073781046 4.9505362075064205 1.930319720617121 3.1047297595836802 +4.094917512495302 1.936357004388654 4.204720716603104 1.7531964504779265 3.266397816335025 +4.616321837364735 2.237008808603763 1.8355653228504982 1.4794386597822995 2.405817260096826 +4.563034248929281 2.122551801241458 4.7258864353014625 4.071825438855973 2.5266084707654275 +2.928395630001319 4.325173830007767 2.6827789078257207 3.2534544902649993 1.5088604840758677 +4.994561817760587 4.765077931670627 4.234021190269114 2.90101565339226 1.3526147327747464 +1.6650862607289088 2.606121650057105 2.5146365804532165 3.853894333445163 1.6368136524715045 +1.2949730549513783 1.7443305400739781 3.57643905010379 3.957167145586594 0.5889618256947309 +2.555664733392438 3.7439326913313034 2.3214435615724622 2.2447882930235687 1.1907379098947442 +3.6863826307554386 1.4759181106111847 3.6186076519312533 3.525497409481532 2.2124246681108968 +2.008668937541214 4.908046991218839 4.314903364797723 3.5042068179411303 3.0105849911989955 +4.937887750654879 1.084737215756172 3.0603614728807242 2.8364802508342883 3.859649186930749 +2.2044180986637953 4.973027972917008 4.777458625569177 4.514499532334227 2.781069600086869 +1.2496126320370111 3.5558973468826838 1.805097820372838 4.239273336618327 3.353231222242179 +4.348030530255558 2.8836683275113724 2.5202058398190497 4.561488494915183 2.5122084982783823 +2.285736081407317 4.496164266490508 3.7796426370341836 1.7982957968513738 2.968455501184509 +3.7307875578939025 2.627921076525673 4.325747858112268 1.6111007986963082 2.9301233989238846 +1.6949610817161265 2.4294983510982875 1.9994790150604764 1.9215280579536897 0.7386618656904291 +2.7222707347468336 1.1081840656553057 1.666070447196299 4.602095719987779 3.350450742483654 +3.8908900517174874 1.8533894437303102 4.990289320386321 2.785908531285541 3.001783368416964 +2.5492541087303224 2.2639255345718396 4.834446128961924 2.224454425175177 2.625541675362811 +1.6762909845638445 4.9343007249538395 4.057367382003317 4.785325896644146 3.3383455584337227 +4.231231540487451 4.074495992496853 1.5622512351139588 4.584369017158322 3.026179426364645 +2.0938802940134527 2.750968502253384 3.9059371559250007 3.0435599762130616 1.0841860142502677 +3.419073922658446 4.8035653411995884 4.140546263099944 4.344392177419338 1.399417609149883 +4.624141061003607 3.2526433630095006 4.044028844891422 2.1762498060976627 2.3172407025081516 +4.516022707851329 1.8712728238553935 3.0114776752521513 1.409685494523131 3.091996141514595 +2.900669498584756 4.966263471531661 2.463459514035644 4.095953487514987 2.632815039937473 +2.5919974283453637 1.826301656788723 4.121279071458002 2.7976910231954117 1.5291093277078953 +4.292100855629569 1.732064314758278 2.6792108030452115 4.890758426913044 3.383006057226576 +3.519861404399506 2.5161987725526025 4.1481399614585355 4.262441427334218 1.0101502381661762 +4.989408433704057 3.3782633391448984 3.543254626156741 4.835771583896102 2.0655238080849743 +2.335828627165733 2.0953407039363423 4.826313878670941 3.392180543763147 1.4541570972604494 +1.3270877164141375 1.4104091978060254 3.6854463211654163 3.9588982558096695 0.28586435563396784 +1.5537741368719118 2.347208280154736 4.387111326609832 1.7503880143906998 2.7535154920440847 +1.5703491531218052 4.0224795805694225 2.2565827804345786 1.998003826353508 2.465726405890989 +4.956723823070847 4.367019248044388 4.022789447319557 2.736007121064256 1.415471737962345 +4.865618134708002 1.3682431307120257 2.795188762060202 3.7021203081059113 3.6130536596885343 +2.3610343290505194 2.0758719930074587 1.6338437058521253 3.254560258986008 1.6456122579452634 +3.9040992397484007 3.9067510220282777 4.308996117703138 1.7275098243795841 2.581487655319437 +2.5033127332556653 4.255681203652231 3.762097605418428 2.676846057955246 2.0612050303915015 +4.35918486456024 3.655047679541709 3.5629266689333385 2.5208693272638807 1.2576536401780256 +3.355034802238999 4.0941609470358795 1.7319811081746161 4.30582688090589 2.677870332881887 +2.5746553939887593 4.375137656697533 1.0077074410766231 1.5734097443917783 1.887261368837125 +1.4658126334265345 2.650246535728707 2.3577307550515063 4.992142382199042 2.888426611526226 +1.9713166533005388 4.713001316678447 2.098965420742724 1.301660689375376 2.855263495382238 +4.937084859665527 3.629948973027002 3.2534383278772214 4.722970901330282 1.966756266184973 +1.3715922360015833 2.3051957081676377 4.915492394739527 2.4485428210964773 2.6376989293962527 +2.705886863476907 1.9358106130420358 3.9726421713377036 1.0223586512736085 3.049129429893985 +4.9592404660777705 1.0262812684525087 4.399928342299614 2.4539487743082544 4.388052475669016 +2.923765417518698 2.885647743653373 1.869482829942739 2.719877131646031 0.8512481573726504 +4.5804486190670195 4.535459287089052 1.6653066259334048 2.0197812793394156 0.3573182333706681 +1.8470426661248034 2.4173015446010866 4.508291981881999 1.7968374459291705 2.770772615899795 +1.120285668566107 1.06852683535985 4.062498379831698 4.119619431429437 0.07708301596658418 +2.0062518202110216 1.5351755288962514 1.1156943633004035 3.979317611686119 2.9021114694191255 +4.8450880499181155 2.1928606291216832 2.216313198860535 1.9042134343064285 2.6705273926060418 +2.8413382008140617 1.8501458310479433 1.6417392052895043 2.3049345478636933 1.1925981621211184 +2.4976934228385184 1.2450429865972423 3.709266058888737 4.143634187004867 1.3258238141391827 +2.4307063355767298 2.217412132470097 4.876544433755136 4.205604824508357 0.7040272553922284 +1.8773518873863781 4.477862526590331 4.934149856138435 4.6648583177926835 2.614416477387942 +1.7035294072914002 2.1308745335785635 1.0452042018515542 2.753081008129361 1.7605303298674162 +1.7929450203761514 3.6715796825580997 3.824569158526936 3.6758329154915326 1.8845133758994042 +4.832602005571806 1.1445271171615055 1.181384622378745 4.672044540900577 5.078051107393218 +2.003849077313985 4.702989969604885 3.9845842411399537 2.205260741243136 3.232855343766865 +3.458951617545794 4.483247254592877 2.52458027658106 4.3737963620212845 2.1139493094027957 +2.7387136594949535 2.226137578993263 4.383641087323403 1.7409876401487092 2.691904805182896 +2.650518132248996 2.4849815787475094 3.93359282893849 2.5104913412514076 1.4326968258505834 +4.936722507923494 4.802687873514645 3.5090640606337535 2.987905167366795 0.5381188300481174 +4.418760442939567 4.428430131409083 4.958967016942825 3.8227249957408618 1.1362831661255133 +2.3788244755759784 3.075376043874643 4.7375510502106675 2.1190961723364268 2.709518413807652 +4.72996728286984 3.6042163754890555 2.0910612762255223 1.596291380221817 1.2296797776088604 +1.3062847261411101 1.3698216070829932 4.244666662037054 1.3566387762882477 2.888726709832992 +1.69611474336644 3.396667346663326 1.9859417471011978 2.6613033899207115 1.829752033793565 +4.099609634343448 4.699411053384873 1.979531237421905 1.1257000129836445 1.0434507665001957 +2.746111232392283 2.2953680020991953 4.699741731508359 4.726567890822439 0.45154080931693424 +3.3239751289746837 4.936191700192943 1.91709122351486 2.80206243782448 1.8391346668113793 +1.801586432662794 1.6591509704937026 1.6925531245695224 2.7263029525027043 1.043516443394739 +4.794167737778221 1.601134540474313 2.1162028224393636 4.846067244693389 4.2009071357235594 +2.731218278262976 1.9625038850365346 3.7326697919105714 2.672686771742437 1.3093837563519164 +2.2508417687697424 4.3229835710378035 1.2257645860599595 2.1518822654883265 2.2696840319428855 +4.138042298280199 4.985902036879173 1.1295203198723445 4.5641786756087965 3.5377597652988464 +3.5758240917852353 2.117668138225483 1.2428002975136856 4.013413990460398 3.130897478430996 +2.205360968241797 2.9687932854990042 2.408873498859518 3.4429359272299473 1.2853458712735877 +3.840003567349295 2.738655151595352 1.0454358751227155 2.5168570434386353 1.837946840213804 +1.8062611430399715 4.002810700196895 2.810337353098377 3.3451262367857844 2.260714291360565 +2.3942939146156332 3.3792723750504168 1.2392321137135278 4.5270015822932415 3.4321437391294394 +3.8799957463785333 2.661216416890064 2.6650598870297193 3.37131803313955 1.4086247275036947 +1.26245594732772 1.5345952162722574 4.414584425163332 4.292230788150359 0.2983792790928511 +2.9161334902405645 2.5109694486036207 2.761754241089855 2.6238921547174616 0.42797646605220285 +1.5396744492484054 3.7855181364760417 1.700383772785266 4.191427283610913 3.3539695347881135 +3.4111202824634854 2.3253914846469246 3.6833653621725038 1.246496136123855 2.6677965903102763 +2.1217635665465693 3.8063941779845996 3.8810038075339817 2.009645881751643 2.5179278749365417 +4.300707399052501 1.8061539800832582 3.268587555660961 2.9918180463027064 2.509860179651757 +1.293466269784786 3.428370562794793 4.922642848477959 2.217933660864175 3.445760892731092 +3.8160524902216326 4.762254344658879 1.5099296710134413 2.022682398249405 1.0762031911439411 +3.748150891854768 2.431796773309625 3.2707054391997192 3.646703615767005 1.3690006552930076 +4.879263895834718 2.1063922189022497 1.0970068085071594 4.822256350374159 4.643953217455423 +2.035829234639149 4.9223227700252075 3.406221941499199 2.5527538827240157 3.0100253582278977 +4.734063219431017 2.124275788155846 1.9178473761823422 1.079270197437423 2.7412045018848277 +3.8260625471166483 1.7444049621740634 1.107818449465761 3.3219561487854965 3.0390301170764804 +3.7907153626909134 3.9051739127621503 1.2559129520404686 1.457320447664471 0.2316586691189052 +2.979972975843227 4.262692080098674 3.3639978271313735 1.0588114150647345 2.638039555199762 +4.8179887521273255 1.0938017425417375 1.6972454355832984 1.8957509295534245 3.7294735973730084 +2.241733541064046 1.3278837808618507 2.7999599698235205 2.602667881770125 0.9349040337008278 +1.7577560651576327 4.608989638062912 4.067942605079465 4.3058484163807496 2.8611417410385536 +4.756917613340441 2.2761080409469803 3.5946017924138656 3.3854531171999116 2.4896102712719475 +3.0200892983177354 2.961657343920068 1.1046453964848175 2.3406874635857 1.2374224359279062 +1.794364225176929 2.5104763086650173 4.350751589209118 1.7810227318932466 2.667643701141437 +2.0076999141379135 3.5709147243291186 1.6466923934868674 1.1657810574494971 1.6355171218701363 +2.282497155873768 2.138448369360237 4.653880143043599 4.302703334410955 0.3795723960161349 +1.390486100278323 3.687501885628339 3.3040266069942765 3.6304755252102074 2.3200970700277823 +1.7300437048908974 1.109604355159704 1.1908207893572609 4.746640426259098 3.6095426686592282 +2.6347117822730346 2.0572679221718593 2.647236099851588 1.094563901697688 1.6565724754711484 +1.5529315135506874 1.2384136871020437 3.4150631672912786 3.3598414836705706 0.319328823465538 +2.8780039646559588 3.03980560539971 2.5406173078604186 1.6257337057809216 0.9290811462414493 +2.630856269648039 2.363434396440382 1.5832316935164856 2.163388613418237 0.6388243185569717 +3.1682859553706346 4.297842576263147 4.556245304708759 1.1678965885104522 3.571667003286396 +4.488028603254656 2.9096636761982744 4.028884094592653 3.612434772991236 1.6323804337298269 +2.8035790890298786 1.4817058807776222 3.122883227858937 3.5131369897896803 1.378276741948514 +1.6755629027953103 4.357915656123362 4.760795099209555 4.88187940688829 2.685084300883795 +2.238456161360401 3.651256443956001 2.0986989624196553 2.9687810436215156 1.6592309864906598 +4.854525873326875 3.648270780964481 2.318292203711301 1.636948723332035 1.3853809173312361 +4.885047646285133 2.374896328213942 1.3087333063785156 3.7970720788237387 3.5344998919322004 +4.651196918834593 3.8540067635074693 1.8449004846679773 4.99745505059159 3.251786037683953 +4.164622147013945 1.742699834410654 2.278783736945225 2.8190045434276354 2.4814403494829724 +4.037412856313113 1.9396181674288875 4.273690542529489 3.1637683156407115 2.3733246525607505 +1.5457121982738102 3.1097531674890164 4.720923798580641 4.269640306490559 1.627845491321784 +1.0657368564467915 3.2100290693956075 4.410611967702206 4.698716255294212 2.1635603007639577 +3.9523338394164154 1.9331620987688978 3.364712492992651 4.645478629329386 2.3911119618739005 +1.6164487707581503 3.203520437138217 4.492290234057954 4.8434906005250085 1.625465524590723 +1.6672671468338462 1.0463366853063159 4.110881273573209 1.6059911579224626 2.5807032238398904 +3.9945928720384414 1.2039467087884144 3.9680914186672553 4.748010697551729 2.897581765893376 +1.0412704165092697 3.6923265387290147 2.282826578585535 4.2065142785916745 3.275465299818287 +1.4210814990328862 4.6758471855422545 3.8345220748474724 3.4158376276824884 3.2815844253007795 +2.7298763424559773 1.1244282274313537 2.5631040657324884 3.928749710799529 2.1077124277108323 +4.753201559373717 4.8815743896494865 1.0208392296087037 4.177640807723768 3.1594106708598 +3.986545381767089 4.271184579094958 4.305937695062303 4.758763458278473 0.5348557230578731 +1.450925999976263 2.7815753331011255 2.1654655316635614 3.2134147133144695 1.693760648695219 +1.025703500682579 3.812736879668198 2.4243399331748954 3.563178731581769 3.010732280415648 +2.81903439895191 1.7450700336925102 3.477155368661372 2.1990138439669544 1.6694445827865014 +1.5296824869697554 1.0519654049769427 2.7117502439021948 1.2444225903132722 1.543134489736556 +1.8792862414479496 2.8643839782456095 1.2486178357924391 1.1537614921747852 0.9896541198663208 +1.0778336119279626 4.253241993143245 1.720162361656162 3.5455538884375613 3.6626865295214097 +3.0387095320008464 2.630067108704389 2.8889015223482803 3.7209099043642735 0.926944754482419 +3.6924739204942334 4.378227264376555 1.7252468472222482 4.861375932231477 3.210227918152636 +4.582291630564198 3.897321009316394 3.80541913268777 4.997593914078923 1.3749419847243174 +1.8485378432109405 2.7800436325089968 3.63648354963217 2.054333688281441 1.8360014213687108 +4.3750468108276515 1.518955069850743 1.845668017570862 3.7004083186308487 3.405484050359449 +2.1320308235929657 1.2809665569177984 1.4398521791164698 4.43516442740045 3.1138731269483944 +3.125265954774826 4.518479787154167 4.020092322836041 1.1417540688766596 3.1977923458128212 +2.376795167344525 4.545081994817234 2.4901013891486525 1.6103845101316585 2.3399507587594797 +4.399863754549145 2.691847725389468 1.7662780621417662 4.5786607530186565 3.290412611787514 +2.761781729497347 1.3435859364392657 4.679788740457857 1.6839310439055684 3.3145803121118105 +3.4949862519057313 4.911589160110559 3.1587994207177976 4.194798550995969 1.7550094009638533 +2.521897138576789 1.4615478653924758 1.032994143481993 3.854155385673033 3.013849919220165 +2.5916430017253966 2.4299631874965284 4.048822588611568 1.6774197931068064 2.376907987461206 +2.908509530974308 4.92722122977859 4.949734634627993 1.4425750868322362 4.046648615408089 +4.488114132141061 4.462337517987777 3.4345421742773112 3.534085762253527 0.10282684350103295 +2.3027695430982917 1.4694108212868828 4.1557830043073345 2.7303348491972037 1.6511781254988878 +2.836857891803307 1.1055781459948397 4.483261300483323 1.0051760673975836 3.8851520493869627 +2.514285531577256 4.368308392334396 1.6512087468797634 2.2187489716506565 1.9389437008183308 +2.78234713303756 4.864108005174336 1.1546450917255675 2.35418155594901 2.402626907732732 +3.183895868468767 1.0664093024339723 2.9986367908730647 2.0779241991128043 2.308995676471423 +1.6031333774491823 3.833017000082558 1.8236150617135425 4.158729776451997 3.228798801640728 +1.5752375461316834 1.8168004259409858 3.2801189068289403 4.803553239150501 1.5424671114152817 +2.083412090948658 2.6362939904347993 3.6189309134131142 2.0667143096796625 1.6477423280614039 +3.2810747430960325 3.3013965055922827 2.511479441808341 2.0719339172878084 0.44001504764835503 +1.3323423343051144 4.211752122366001 4.031019418995278 1.7993986304546565 3.6429565014459757 +2.7532193719689664 1.503053267260622 4.361738707757531 4.293487331725187 1.2520277711344678 +2.98286416851191 3.0214391077013913 3.9999104240759733 4.117844329041418 0.1240823592372047 +2.0527608925705256 1.244211699631585 1.29508904136959 1.4555749289814348 0.8243224596750799 +3.37737443093695 1.0495453649286457 1.3686151649523803 2.764927418667184 2.714493704252638 +4.057763941642749 4.144047708230445 4.005910297041864 3.5387920723274147 0.47502034086651374 +1.1053432286710403 4.290871022373828 2.199247501911764 4.109108015691721 3.714182885447187 +4.192151935534314 4.510611881320763 2.4218487371515263 3.0735953048251576 0.7253897749104735 +3.480651937495764 3.035623739125992 1.808884165619146 4.024536984269804 2.2599043143767945 +1.7615204116820244 4.321378983910384 1.1875945812860724 2.7531271947594846 3.000627979883529 +2.6598644470696318 3.3031538636301194 2.4645441065734492 4.161463180358118 1.8147604845909973 +4.021800584609739 4.674840212316502 3.6454708174408883 3.358285972259875 0.7133974282663416 +3.3447012011996162 1.1304809096089068 2.239346288921797 3.5888238790170326 2.593040930232551 +3.2271470157800426 3.2206411828563426 2.954493778755037 3.6299491198710707 0.6754866717443123 +1.3455499242197724 2.7283655263113364 3.041803833519958 3.2659809623579448 1.4008691496645567 +4.058532650151677 2.7899079034612115 1.4023151208754752 3.476429591631265 2.4313287695649097 +3.102757869595902 1.0305695391814238 3.2469265528908835 4.114770258371642 2.2465789934583906 +1.1182072622812815 4.600780684792312 4.114045199945428 4.580321146893677 3.513649228634338 +1.6389818753090477 4.063983799822298 1.3725801348547462 4.177335988299421 3.70773377298386 +1.1961700785548723 4.329764409179319 2.0280108964974617 3.0940395324819563 3.3099592870095296 +4.811697654562108 1.4552344361083538 1.4099659354927958 3.146968375188174 3.7792886648601787 +2.303339006758018 4.217646035565179 2.3268963790474917 4.084432952002929 2.598750893374824 +1.231988960047826 3.4057414447132546 4.390914724863013 2.371201829025058 2.9672276700993576 +4.98577219724333 2.0816903647384444 3.4582535713763045 1.8547001501434854 3.3173897667642875 +4.629949261098229 4.821716484434841 4.696592320306178 2.9072427863312202 1.7995961832262906 +4.807330144959529 4.2105402440730835 1.5019344167559554 3.3451945876568363 1.937463868935263 +3.4621935553730596 1.7263296376022494 2.0596182692628027 4.451119894302664 2.955080974116771 +2.513018664326373 3.4989651817548246 2.223799831565119 2.455203687192667 1.0127380113477455 +1.5003794984907466 1.668020604613198 2.852658856981341 3.859707615380982 1.0209068234938081 +2.253686029464518 3.1140018549914723 2.2519763916032387 4.3097947449516045 2.2304169330036716 +2.0558938206567445 4.8915652428680705 2.7532347733658544 2.2052976503604 2.888125257933509 +3.3131291972899954 2.879439685846715 3.84217036879763 2.6024636190972963 1.3133771041054725 +3.566537295269859 4.400746936639946 1.9872279163217197 2.787851856545633 1.15624583000955 +3.5284165497433193 3.6287918546137434 1.0426991164022663 4.58429913379733 3.5430221400720243 +4.5116636018852105 4.371071449713753 1.806376024463007 4.43248811768326 2.62987278768572 +1.0829196467898545 2.66929096663444 3.603768544582314 3.973625072568805 1.6289161475409575 +1.488466997179172 4.213237766602454 2.376438706948336 1.079263218220432 3.017787267926621 +2.899359951800095 4.748045315791275 3.6699780736992067 1.903727854163816 2.5568100072246307 +3.0856168518505784 2.0868012912990723 2.3845627586690497 3.069266880738532 1.2109716176602818 +4.6854313320172185 2.5618850467844605 3.305154911587349 2.9610012776211376 2.1512532508512323 +4.038429680460729 1.2563186049073152 1.3372077424730278 2.4988756684026723 3.014898739070793 +4.621703274560438 1.67479221662487 1.0527281290793553 2.4170901300479195 3.2474248956780927 +2.4830364467689137 2.6813429077172297 3.727091616886956 3.2262607291767877 0.5386622601764496 +1.293852708746995 4.6627334813795205 3.483446516696631 2.9989301523019734 3.4035442949342287 +4.906368062330216 2.0630117881203156 1.268242487699069 1.2862117817992473 2.843413054344948 +2.1653446135781786 2.3843515836945457 3.5564260086159867 1.6666311380285896 1.9024428259104105 +4.3234816599103 1.7757959528453906 3.8998384648043096 3.123950562534779 2.6632131906535457 +2.2209759667624294 1.0524636267044367 3.1706725204280204 3.087012796966579 1.1715033240232187 +4.174372022207491 1.4465578502707181 4.726898310972117 3.7388949705539245 2.901227457007914 +1.956836612442567 3.6332495349212643 1.9492882843541328 4.729333981442657 3.246384814613632 +3.6661548368979315 2.381251327974668 2.6531222540976898 2.1456639647851725 1.3814814304344816 +2.941070236196901 1.7268062145657113 3.8498547483887267 1.9391978326816361 2.263856657071574 +2.2494707354511236 2.9354158489264948 4.6130774482235655 2.5571235554866942 2.167364092108346 +2.8899736052384375 2.258295375556442 1.402574080415215 3.840325235216537 2.5182629089492146 +4.175382456244812 3.186640131821135 2.695229516552683 4.891008954360968 2.408123485955071 +1.9707663017981245 1.142634890072765 4.803145128337761 4.565003535898208 0.8616919711450739 +2.4181149551381766 1.4042692676758977 3.2785884632031843 1.7128849472010623 1.865291016974903 +3.015816804386625 4.417096160730511 3.2451296745184575 1.518710136818366 2.2235350806020877 +1.3977393328215606 1.0253506695688253 3.0512384081008257 1.7208785492761351 1.3814958090747904 +2.806160104550455 2.724556393335608 2.043822361903133 3.2595421748072058 1.218455509721857 +2.9575200708363436 4.5569811855413 1.5552104850471755 1.1934162568910907 1.6398691780078918 +3.822279609003373 2.622855007124814 3.2816868577933183 3.6017407513324367 1.241391908448371 +2.5412817543255817 4.954107214594939 3.2432815076305803 2.117100603147365 2.6627072935917435 +4.833888608600848 1.412653124165407 1.5610096290496212 4.8911705628327535 4.774392535690331 +1.9324027793598542 1.4356224514353668 1.447437408536294 4.009677426418316 2.609954904485674 +4.093310013546317 1.832749815604346 3.9067613939297714 4.207533114108562 2.280481536031097 +4.620958676042197 3.113396929081157 4.931063717431914 2.0537807513327273 3.2483072034376237 +1.156604461579474 4.571580344207182 4.384608055913754 3.8788551203775725 3.452223386562978 +4.684074492876146 1.5443086260990335 3.8409368256547762 2.9204699477611125 3.271909071395161 +2.7809716430910267 3.7853187982288277 3.536838516578042 1.7705861652047523 2.0318367495360126 +4.991459600468848 3.7324538098993174 1.4242657467449273 4.529547360247052 3.350801319064138 +2.201204725197863 1.1267674307771185 1.706500162904212 1.4265949459990046 1.110298351837433 +1.70761993122158 3.215897645735581 3.1119917779876825 3.4000307716892078 1.5355351269157491 +2.500895621551605 4.074273267237071 2.3872762956814726 4.07002472532281 2.3037273044792275 +4.742494571270678 3.031593260536549 4.092519901243354 1.024171260814862 3.5131106834671653 +4.640307398757363 2.8916695883909065 1.5888558942286077 1.6105969289864568 1.7487729596592971 +1.2275447380416784 3.758731946038379 1.8586438545291157 4.842083136229771 3.91252075132141 +2.354103777991851 1.677705936839851 4.633199548924901 2.936298646775449 1.8267421030979474 +1.5669227082953712 4.926927823380648 1.3485597978220314 3.6105633840140703 4.050468441716942 +4.511097994320464 2.3792052406667783 3.864215510029138 1.1883778340097062 3.4212678909267202 +4.839420313773566 1.4359639932906938 2.1780578358692533 3.0591239810441277 3.5156496522845 +3.6053306268467806 2.4706301852653016 2.1357140041167515 3.6886819086651443 1.9233445881283544 +2.645902493029329 3.0381320493408217 4.256187009581888 3.8825942600248657 0.5416784723116531 +4.831186843354654 3.303679229591174 3.5004944138500154 1.6166625271576347 2.4253045349861484 +2.8351483354408704 4.759520238414416 4.201874478551284 3.4752329193660643 2.056991778420408 +2.2165674639903785 3.9985950702974584 4.175825801916654 4.451871046408078 1.803281277739796 +4.794948800597644 3.2277973396624025 1.9998448247911802 3.3825549518458193 2.089940429048378 +4.2310649725914296 2.598710739936483 4.315953115458897 4.0429128898730955 1.6550321162003065 +1.3772435782093138 1.9334048185682873 3.1760182054420873 3.101281335810518 0.5611603380139745 +3.8678094249861608 2.7825614754595835 1.3120386443065022 4.103473453974708 2.9949743585845625 +4.874556584956464 1.74728122004533 1.2407067637248832 1.458579485738095 3.1348556156508245 +1.5379576754196513 3.8818459906239076 3.013802111787178 1.4006880107861952 2.845338211355419 +3.9320632788351864 3.771012559332175 1.3723639916905137 3.610428910910224 2.2438520265147535 +1.7412036886966638 2.7515475347866403 2.507733583534635 4.486050238911057 2.2213805338733925 +4.337753245929146 1.6761908133192316 2.30750993743309 1.431828285133165 2.8019159407189806 +1.2869741966383033 2.35732885634664 1.4692946677355136 4.210422721945293 2.942693002529357 +4.485780591045736 4.03764404328973 3.8285904681724774 1.018775684139666 2.8453269559057754 +4.424991738980119 3.7364330157372923 3.815963987521027 3.4254639260453437 0.7915828531280251 +1.9502887407184986 4.327681290274528 1.8984863078789997 4.047554324985393 3.2047603150366992 +4.822462774304656 2.503000985494429 3.896556195044704 1.2328640125832582 3.5320191155565617 +4.3510165316710205 4.700951688084317 3.4078637191206496 3.15181306179461 0.4336087554594527 +4.439581350395754 1.5650928063213287 3.2004777671740983 1.9056350656117846 3.152665857937422 +2.83398507267663 2.228594454734173 3.5800758583987142 1.2962077106619443 2.362742372020135 +3.1284463301601764 2.2941989175775057 4.03872909533802 4.0195986263492625 0.8344667280632647 +2.86921334038343 3.431920525153498 2.0431312236175785 2.65702276303041 0.8327677935382175 +1.8119372126607236 1.2914414698781433 3.112865166760514 1.5758687140383447 1.6227365509950535 +1.6062185131033266 3.7988972082195436 1.4010782239159445 4.014703374065198 3.411579734596462 +3.8044810456794704 4.656455312758592 2.748062769175538 4.863911467596941 2.280937497253388 +2.043003732639479 1.7816938843758714 1.5353667796997783 4.027948253605924 2.5062412575128685 +4.246383188843211 3.8347067259344523 4.793544160387039 3.003073042907585 1.837189247911382 +2.090471270517929 1.6613814512345022 2.0717961828216085 1.9289794064426737 0.4522330202760016 +2.0044560388843706 2.9514219797883645 1.247414318671102 4.886626192565584 3.760399919732843 +4.17001356792475 4.478426304775812 2.0278697586988503 3.669474933499729 1.670325107931084 +4.611368784166423 1.5354202569122712 1.0698489423254451 1.7941891614639243 3.1600835582905975 +4.632532862142004 1.5693814015210057 4.48945322006138 1.4383200306072474 4.32346049021997 +3.8115175407354256 3.65606924620809 4.301581724952395 1.9133156031929794 2.393319711324673 +3.2653068435484105 2.196112027634751 3.049045731711741 1.385519933250472 1.9774973164388483 +3.55952349548959 1.2498922565221116 3.543227428859652 2.63201203328919 2.482883395799948 +4.915811281732813 2.8314856057269484 4.459424534415053 1.9697648155873364 3.2469707481298022 +1.0727747261987428 1.1895496808548898 1.6720926157182046 1.6693271213613778 0.11680769663846136 +2.361582217725774 2.9362121713515448 2.1760918020760047 3.669719809353977 1.6003512763543888 +4.828288157550775 3.965476473894403 4.011130262523669 2.3930072954544364 1.8337845942233455 +3.256924047749983 3.3304285696663256 2.108459862848457 4.9918609146141275 2.884337799229751 +3.162805107786345 4.626431875958117 1.9237275077189628 1.4026839462334997 1.5536053905269516 +3.227638645566569 3.9870610642190147 4.109801890679467 4.549152051902363 0.8773545315996921 +4.235959685382798 1.0543873881271169 2.130482855199401 3.2809549083275535 3.3831920175617727 +4.536928769711295 4.742652219921474 1.409852886896576 4.358194212796979 2.955509890353698 +1.8684529913776626 4.000241388919239 3.6322971107770736 2.8590502081753977 2.2676932209353113 +3.641692728927562 3.3224789675807247 3.075885493225199 4.543316618612245 1.5017494908232492 +4.2306609726923865 3.0434525733753808 2.706156962082874 3.790747402709342 1.6080423524606444 +1.363005159116498 4.432004911251502 4.623735260975074 1.9806951610512717 4.050237085456843 +2.0449809042315623 4.605928457053368 1.2829873350840328 3.014482312495043 3.091363327903006 +2.046132912014995 1.2610924852966425 3.3550316270142617 1.6907595771493256 1.8401331276686939 +3.7788703665637997 3.359625432490121 4.668067472078651 2.422817661522889 2.284056266064198 +1.814504270319985 1.2617858974732186 2.569846182380124 4.697187670998783 2.1979716578883886 +1.6969573224065226 1.906030378669802 1.7225285622027386 3.329593707458224 1.6206078871677452 +2.9828816419098314 4.999225000254697 3.2957001924461102 2.3900716630245125 2.2103853899362833 +4.997563871761546 4.716248298523071 4.373529340682024 1.889424371091423 2.4999831902817298 +3.7129972661367945 1.7156129878375443 4.549963869508995 3.518422083598255 2.2480263368735107 +3.930073586649805 2.455186713590566 1.2115134270540584 3.1599649833753385 2.443717405031375 +1.2563998731938457 1.7714531141893164 3.910542264884146 4.084142857984473 0.543522775037738 +1.7596786753887983 4.752433942434974 3.8957326454696752 4.948713127202919 3.172593888814609 +1.292800013986715 4.367321274021618 1.2460679144743483 2.925654697891866 3.503383042351694 +2.776619672506016 3.349923871049568 4.136069369508489 1.0058651779873897 3.1822721418326125 +4.1852959185601915 1.2304599483271308 2.7092180416834095 3.7743668854958035 3.140954897870715 +3.6282297249749886 3.347794103613904 1.5176259255999005 4.779453385655491 3.2738604913619764 +3.5901441795251854 4.215439919662381 3.86400797542361 3.531237990631486 0.7083294610647458 +1.6714446635973244 3.5148823693131406 3.797770344347764 3.876003840607344 1.8450970312674047 +1.0517895496170429 4.825714385939909 2.1767343043054677 1.949581648703742 3.7807548187050544 +4.132141780452436 2.8497558599927153 2.3435175522317815 2.602112932901958 1.3081992279073085 +4.291462888642313 3.98175575496722 4.3993703966548985 2.275028045343291 2.1467996958788143 +4.908644931063437 2.5017988458675986 4.665679573618904 2.6602537741995507 3.1328326981821557 +3.6693201691432518 4.600287779265998 4.352062110175821 2.954719810127285 1.6790670607818465 +1.2570163024665506 3.0982606775050594 4.454042746638201 4.639530598557575 1.8505638578067531 +3.4247031579280214 3.338950940501448 2.3022239976058763 2.513011160757183 0.2275624550380617 +2.451866778134618 2.248302006833825 4.380875274617244 1.35212675605369 3.035581691342809 +2.4835718764474857 1.01930449480188 2.6414630358374214 3.938497594867332 1.956112883314558 +3.239190472624703 1.2655293759350004 2.4617717198467037 4.475156355749922 2.819406997344927 +2.763423227547223 4.7224413773716405 2.1543493230289927 2.5261917614779934 1.9939957147329037 +1.6525951437978894 4.705300802291383 2.885521233385072 1.992050230883641 3.1807707037303246 +3.154143761639639 2.2983635333489003 1.1023692065083064 1.096962546384432 0.8557973072562473 +3.7021410125341387 3.4732291337008516 2.9834107792563844 1.6875840208303767 1.315890434695777 +1.5387278693850797 4.8060511260326795 2.4561980484840022 1.434974436022586 3.4232001007944337 +2.523593666500875 4.392079056924165 1.9382035017043457 3.4579551582883545 2.408502180176533 +3.675533208421737 3.149386141771886 3.2991588539519947 2.7221864724252587 0.780850731439035 +4.429975078191019 4.485274364469417 4.230757742029485 4.569815514984819 0.3435377482378488 +3.3315302721906406 1.8036200877608564 4.091941037778768 3.56625983293353 1.6158125698272674 +4.446378608015425 1.334450361089286 2.6540608271095874 1.7396641818099954 3.2434886525085824 +2.836487556448668 3.588351745657066 4.333129353561487 3.1216326761848086 1.4258414912986415 +1.899341412207074 1.632395396450978 1.9584354722805193 4.13442810176306 2.1923056581805365 +2.7166519026453613 2.2389387167159005 1.4409681001392398 2.8882865949864223 1.524119651975392 +1.0490390626066368 3.731811887497456 2.5820132446017805 2.1516693547024834 2.7170693575148803 +4.692242494101933 1.9998771773686057 3.8467135153480427 1.9265775176191595 3.3069250442855282 +4.188703123850106 1.7684932818100498 2.4404207840495467 3.6413605793529573 2.7017905306390704 +4.231083086476584 1.4280080771643635 3.304416062417781 3.0721690834946007 2.812679890611381 +1.2897517263001088 4.444667442191164 4.074369051042602 1.8992383970192201 3.8320603513578115 +2.3054011389279907 2.2928840903569956 1.8573311711581035 2.1406581807248872 0.2836033689062684 +1.2674866643234166 3.16619003542151 1.734934042659825 2.0868732098022833 1.931045227017791 +4.920689583140755 2.3260756809348315 2.326556994850543 2.3250093066396063 2.5946143638041947 +3.4772314911785696 1.1370002817870004 4.51803560035127 1.129640511231818 4.117997497981166 +3.181275169375929 1.435832952882361 3.0745854368166627 4.522912374070808 2.2680871782834875 +3.4321687100409477 4.9492976310251215 3.789622725692147 4.540628741196215 1.6928349589401503 +1.0344738998893233 4.067562874982903 1.5812334781163835 2.4723709393039335 3.1612900381910567 +4.611169665984473 1.8408191188141565 2.6742575980842234 4.893287664189227 3.549498075571369 +4.164583831103609 1.8055620618444337 1.2057786208264871 3.6757962039397385 3.4155483554953983 +2.317789715494513 1.106956086724499 2.7361272550730784 4.73820474418874 2.339750488617115 +3.586641437073373 3.300889733595929 4.805929822520579 4.442642757730465 0.46220290726484725 +4.799970032229661 4.630535181362978 2.235710362508759 3.8901749579945117 1.6631179352060543 +1.268027202957803 1.133763790481388 1.538693878202301 4.788664312883165 3.252742610510327 +1.559181994367457 3.8116824621327434 3.216756464647736 1.1121010478603313 3.082747602496091 +1.6755673283614776 4.394647723174211 2.5033266717537903 3.5457167594354386 2.9120397127017217 +4.9574244893601325 2.893428927027121 1.7395839685900585 2.8642837080439607 2.350537637490206 +3.9164904971725036 1.3206517065732566 2.1700325724891734 1.7461964603073925 2.630212173336807 +3.4809267982849166 1.1252001568199237 3.290578451608219 3.6511841194951025 2.383166896593707 +2.5474554681909454 3.4641295297079924 1.3985841492824553 3.3563641838960914 2.161757155415457 +3.196634306687312 2.3856278666106725 3.4977130384947537 1.6376565600760489 2.029172626651852 +4.250564017496584 4.201902698634751 1.885127571874683 3.2402349386806897 1.3559807887744142 +4.938846616493697 1.9749044473001316 2.4644502525943297 4.054480711752419 3.363502645067243 +3.9997957982673666 4.891172658718887 4.512859390609008 3.327032917488309 1.4834881636542587 +2.132023682319306 1.9989892524705928 3.866922838702404 3.2216456782128353 0.6588480654708284 +2.9690421204902515 3.74074459951103 4.714877859918573 1.366862328321948 3.435801611842431 +1.843922894427597 1.0992621720655902 3.4149904855902182 2.519621412930748 1.1645623073514724 +2.0824309406212342 1.7987459379796733 2.949656693415514 2.955090676568092 0.2837370418127407 +4.040312231507503 4.46783349623668 4.252380491174782 4.467818288580636 0.4787357061539495 +1.8225657144911684 4.962503732287872 4.029998203741199 2.730082352678802 3.398380787293909 +4.913420320255195 4.84667488796884 3.6404251068770455 4.157827564760648 0.5216898083680432 +4.850093467641551 4.78343286182537 4.947886061882123 4.5905719686813935 0.3634790194325387 +2.456142640093294 3.319498621415431 2.385352795531333 3.8747460608939392 1.721532993988845 +3.5303244407255234 1.493750299133474 2.23447457050721 2.3387003733953584 2.039239380795956 +1.0737530302359803 4.976891040694378 2.7953483765759124 3.456284262352554 3.9587021324914677 +3.9031627921345136 3.7334010341384065 1.1604721656408241 4.581700628901484 3.425437673101472 +2.1643749684412414 2.779675178583552 3.8881263570447313 4.416029780223793 0.8107258308487174 +2.982776429674062 3.473953892583944 3.9657948495796376 1.6823122923249638 2.335711431096944 +2.26842517211571 1.2810070973453058 1.8848207135344288 1.542740533029347 1.044994403945629 +1.3364295865500404 3.2747792165064538 2.031672713258918 2.686370544891251 2.0459297492084723 +3.320492639970572 1.0327656957112437 4.231997042180345 1.9999083537252975 3.1962344226635033 +1.637348418622743 3.508550785757434 2.752088747480564 1.488099708127184 2.2581112883062144 +1.7737949903143932 3.011489869698592 3.534288863755487 1.8956707584775314 2.05352329166206 +1.1757428816576598 2.5571852118223446 3.1477310127076468 2.193685218430517 1.6788645833266937 +2.4960523842677795 3.5356008663345366 4.957828990993197 1.3204106431149505 3.7830507905721555 +4.254248401787963 2.6718888684330717 2.582660654841831 4.376843281195571 2.392269422433166 +4.481298652247635 1.708226441428529 1.2882861866134743 4.596620679376393 4.3168283035606185 +1.126050844787518 2.0949488040856314 4.098628633936516 3.788242403727906 1.0174000527988787 +1.868311802540799 4.8176175898064635 1.2015375616851252 3.980066448995943 4.051990548411908 +2.5088857518588057 1.395964967750917 2.232010555491338 1.0909197251789058 1.5939513652312087 +1.2195562760767964 1.0564693608856084 2.1969917182250054 2.5284581243298536 0.3694148349520386 +4.8130669573523335 2.997519602875828 1.8054632358027733 3.7946366214388907 2.693143693617125 +3.3044139755849677 1.6148550594221258 3.0548779359634506 1.449554723125761 2.3305947629008523 +3.774282800933158 2.3938566178953846 4.698789841514895 1.904577106575256 3.1166009136421513 +1.5263834119940611 3.1278181839090715 3.5307351073256323 2.953418160336062 1.7023184737233628 +4.164581634789823 4.871944010412459 4.89396877524783 2.4031053299547707 2.5893555633677865 +3.403117920670629 3.8599323476453162 4.404841294744495 2.304643237950263 2.1493048407460678 +2.1131454031713477 1.3611800872144437 4.020860154959383 1.6118168744625874 2.523676160625394 +1.6676598796285007 3.1718913629472048 4.671218100167678 1.6853067988868027 3.3434082392857802 +3.2609540457733823 3.8351610512848846 2.508338791842356 1.5292644269900886 1.1350331700392535 +3.5554361589897243 3.481943370586747 3.5061272659078826 4.387038853197204 0.8839719534961709 +4.673430193471715 4.2689824190818015 3.4682224829591863 2.8837465821007013 0.7107672480448799 +1.4534294350484247 1.872724536182878 4.0060652643667165 2.378696648652036 1.6805168827621064 +1.8985998125373307 1.869716032892661 1.5088600987449317 1.3999825348279038 0.11264367115407914 +3.2708764698921677 4.93563075420976 2.344070891091897 1.33951221040753 1.9443623556559861 +4.117768973327833 4.943661477192405 1.4644535165887866 2.8051295108815015 1.5746461664807276 +1.8801915088124783 4.310569348399973 2.370678390322837 3.6654537562154377 2.753757376981548 +3.8095758862819533 3.4784600825576737 1.8244193197985874 1.8116804176110288 0.331360762772118 +1.9104375739192356 4.264734118066206 2.116197497689731 1.441593385331497 2.4490412259071936 +1.4360304121502856 1.4187784072816516 3.9271789335924785 2.858425218469913 1.0688929484566139 +3.9286998889052724 1.925217011559904 2.403024024357734 3.062548041038892 2.1092452603704777 +2.5805480846984286 4.866175455832762 2.339665494762482 1.7884180083851664 2.3511627487087643 +4.062194853725179 1.2939137473561053 2.36053347851463 1.6235863599818838 2.8646939346802305 +3.562007329299828 3.381366279612534 2.4108083925090735 2.347194983270167 0.19151463303654928 +2.879344400767384 4.777007570242368 4.324159724844085 2.1314433894121456 2.8998500706850203 +3.082969719516479 2.365531662324345 1.3207072529871602 2.2591040767443493 1.1812306992053692 +4.046416788918741 2.621930078751718 1.6184767423498356 3.4062072909063814 2.2858571481360674 +2.7891080819536174 3.781611950304177 2.871945837829969 2.8952391841489193 0.9927771696979939 +4.089619626306076 2.4070805533372694 3.1813578703435583 4.390507029180041 2.071950631743359 +1.076916223660151 1.7953347208213946 4.839280784629359 4.218766474077033 0.9492961322283201 +2.7686639257364467 1.397495247358198 1.7881835691382109 4.823616276422942 3.3307589623116627 +1.1697714251587965 4.95499442221199 4.305297335286653 2.7736524754110667 4.083362476465158 +4.060532026923449 4.025036863924063 2.2384750252088605 4.806872737990228 2.5686429720023205 +4.478913220183018 2.2611753089375477 3.784132568409434 3.367733775573063 2.2564905046667065 +3.1644826449860197 1.221018075154951 1.0648782235889933 4.150159621892823 3.6463702281732577 +2.3962088114515474 1.7189461586812702 4.30114795779449 3.8439985937841423 0.8171109115979903 +4.917986161369267 2.657197282381184 1.4347675041995926 4.065205168536899 3.468482184085785 +2.776808551478534 1.7930087697769097 2.8212645775153287 2.364874063770691 1.0845064829277222 +1.8005624409449994 4.661177183805284 4.4203007961972105 3.8694264356473806 2.913173401667123 +2.7493669148491473 3.7177980008604115 4.619186527358127 4.288454507024506 1.0233486393340812 +4.93420591237895 2.5787046580996833 1.879249605584422 3.8046445022200137 3.0422905296670106 +1.1853133136635488 2.589177259305461 1.1818377862643832 4.5804229381488994 3.677120478374781 +1.6160150207299906 3.136762103434935 1.1585171365046243 2.693543989583248 2.160782064260082 +2.413746289341076 3.1142497392868846 2.7288319882450933 2.5670349477236964 0.7189460102869076 +1.9193721722373578 1.7833133350761914 1.8685006677752498 2.237115905069061 0.3929239116353466 +4.154576194210809 2.710825724042084 2.7154148108924 1.9981952427718181 1.6120853975542013 +2.7632552046116943 4.3991883216525665 4.90043247786844 4.415929351711715 1.7061712817553527 +4.247351259756824 3.072519741254119 4.275493649258285 2.512781483745299 2.118344465688915 +3.6037296542569464 1.7751163695920607 4.278803376941749 2.9613540918651724 2.2537744260687855 +1.3124871778631038 2.3539843906301754 4.407153677112692 1.894756979596882 2.719715722256635 +3.6764257116270853 3.8293094841970983 4.336947695892351 1.610759813056792 2.7304713549925164 +3.9468616269606716 3.047527239874063 1.3625998490013829 4.666547348179358 3.4241599578759225 +1.5698577537237375 1.3666453934443235 2.2636011458488468 1.6214077826140953 0.673578190823524 +3.712144482931579 4.520998441067496 3.6593691497458827 3.8137472385572577 0.8234545038417073 +4.7635390028468265 2.8904410667122025 3.6278990126234407 4.982143079757822 2.311378997853978 +3.6125173888601863 4.199804358995962 3.417785740814179 3.7777788920800845 0.6888403692072763 +2.6247359071273877 1.7484031106210711 1.1886810339900182 3.0042487645358853 2.0159973597284426 +3.1036327797476884 2.6283547342440743 4.962817975186789 1.461429041978871 3.5334987876223507 +4.688099614107565 4.302698391483685 1.9570830305261797 1.1121923219814414 0.9286411641668765 +3.063637195508897 3.572266901055806 2.348674675519883 4.228465747130386 1.9473876476632221 +4.2666195611619315 1.898580716307519 1.4929404803403674 4.858413536847685 4.115096215742243 +2.2222973937774433 2.6912882796667845 1.5031906499591616 4.645721659704554 3.17733435418098 +4.783172689596792 2.765626583065166 3.5967810240040663 1.4420037449080936 2.9518735431059993 +3.542934212499167 2.354830804814721 2.6795154114841764 3.9413110102395197 1.733123723335916 +3.216880754391202 3.704795150920818 4.8942232710425335 2.839280898090998 2.112072113942265 +4.439294479691586 2.378223654119618 2.430530378944364 3.5419653537995615 2.3416448602115754 +2.094151132689587 4.304621528535614 2.586756511153786 3.120790838105089 2.2740650899378463 +4.362861426335819 4.969720947109048 2.6262660715064277 1.8895916546795655 0.9544462658318229 +3.7575422601501045 4.617616273694529 2.921210525408261 1.8051593899521379 1.4090058359450883 +2.5500578290831415 1.7830583397060527 2.333263050057433 3.484215012235988 1.3831047089600197 +2.749476113239649 1.0356970060450958 1.9583874606478537 4.846926919863627 3.3586751905629564 +4.180950523371376 1.8339676010688577 1.988524345568759 4.375800764407481 3.34774812934353 +2.2033201974663923 2.6255249334835327 2.9228403013147535 3.3657341815467583 0.6118920070259658 +3.0717643641184957 4.118278044637392 3.8060518851986003 3.423692419728319 1.1141766665784762 +4.338950847161129 4.788968061275079 4.0825694212329235 3.3207724316307417 0.884788192939885 +3.010534278597004 1.583869370845132 4.803896511647068 1.071902342525139 3.9953914998871802 +3.329248719151203 4.23294731551942 1.7825683181524803 4.026693071855121 2.419249276792043 +2.6996772674044576 4.603349590999673 3.26268648344186 3.388896365146962 1.9078514747910598 +4.561684249451746 3.7977686912752233 2.619943988791427 4.0650035187997045 1.6345531576831303 +4.316989641814021 4.152682106130165 1.1383525060417599 2.4653085169790616 1.33708983290022 +1.597727611699844 1.0067900716195801 1.5663079930282646 3.387308286191378 1.91448406730802 +3.3455055761057153 1.8766121835547733 2.512222282961574 2.1836080310521173 1.5052026857662153 +2.8211654825341097 4.80579321557255 1.0715387576435984 4.664124272789704 4.104316986099259 +1.5526592573242946 1.7942468747286315 2.843321744299635 3.1622805475749014 0.400124099586484 +4.053026959490365 2.463749536369821 2.199182118082678 3.0756437303252944 1.8149346228929584 +1.415917636747733 4.169693548971216 4.816329773104093 4.572375243436609 2.764560649956437 +4.195799386008156 1.7794143269038276 2.0664823204309144 1.2720628189160967 2.5436232225409645 +2.8645891359833575 4.1390118782781435 2.62114369438379 2.4510640327024786 1.2857217496005082 +2.327610409242685 1.4070354528975622 1.6685367938068354 1.3754196521501503 0.9661138178200382 +3.269865814891417 4.505053983709539 2.357737363194237 1.7095493753706932 1.3949327868922576 +4.692810148483796 2.1281975596019396 4.677602154953185 3.500111969355845 2.82200653227971 +4.508313323816788 4.456037788973103 1.155869812864304 3.7566064759074838 2.601261986428927 +3.7537838541092694 4.675473330060047 4.849517862656347 4.927189764956509 0.9249564392366514 +3.4074434453693927 4.2893873441809305 4.60536117845877 2.813788843449787 1.9968866948879285 +2.212542583026278 2.7698786881673523 1.7483552688910686 3.0808187514960355 1.4443276867004868 +2.1294938307018576 4.374507027181545 4.277345294419275 4.96997258633226 2.3494290408247407 +2.591639363562249 4.196191909658577 1.7993493702523833 4.634281380026712 3.257518744877353 +3.957592607686435 2.3854917370211295 1.905541947687388 4.1727164975179685 2.7589094923440505 +3.8695797769067024 1.600171760427234 4.063844033057789 1.3763228519185131 3.5175251021611094 +4.404789582788881 1.4860403489033587 3.823760358505649 3.8112554347365073 2.918776021455877 +4.179106986210337 1.4451642730654868 2.7328268516515086 4.193725871633667 3.0997852676181714 +2.471799700383682 3.4929648019667594 1.3961790954905604 2.854048520400654 1.7799329832268582 +3.4363406787065442 2.173402230600041 1.4669978631081921 1.4349343817373539 1.263345396375544 +3.2873781853152937 1.4349076737875226 1.3278209104814613 3.407226029297168 2.7848828780106576 +2.9686461859619246 1.7837748062032825 2.527985638527181 1.218638889917088 1.76587346507811 +4.506512285843491 3.399091888232167 2.2620618115949838 4.297828771209664 2.3174829127534946 +4.798382206288357 2.907416404507088 2.4796193004692197 2.5759369216869565 1.8934172143675367 +1.2716075670143758 3.140684124477646 4.4046599810705285 2.9298850899121227 2.3808419009354735 +1.1393348330418949 2.763853948848006 3.947518122234419 4.828835826712232 1.848183771664904 +3.6230121251439464 1.928550630109783 1.6470097590809214 4.367422227520426 3.2049717247730176 +2.8285236672474485 3.7865784324983083 4.904432996794451 3.5778872977610727 1.636335058856784 +2.270174807107299 2.325797208332609 3.6254157767931736 1.285298604999085 2.340778124736224 +3.724208295516107 4.763171440292185 1.3653476558895017 3.637998964993187 2.4988774257601536 +2.1895981285349118 2.112332205367076 2.731968996681772 2.5114423545296765 0.233670757224468 +1.2959017345250943 3.684873844118299 2.326751713966223 3.5234880626618157 2.6719591367952216 +3.930821391283867 3.9677124064080593 1.8324712002246617 1.9705232409623998 0.14289616142061864 +2.3943383121166946 4.625094137018063 4.809707307076775 4.359906667858915 2.275652030819339 +3.106801627580072 3.9678930558697965 2.0108096341419377 4.947321239850488 3.0601599399925243 +2.6502709720583644 4.37834435697274 2.561072553016586 2.341489439773035 1.7419685322275935 +1.9503523136854497 3.225772674782951 2.7661410516241722 4.520106415801688 2.1686612451548184 +1.2243599051795573 3.155711101138071 1.4394932554683137 4.821630606982074 3.894736256363824 +2.5213673835937906 3.9857901471933395 2.688782284933233 3.347569816143743 1.6057817541082533 +1.1901892100518152 1.241323509143554 3.0642778047939303 4.396875888685132 1.3335787827249301 +1.3910109389701284 4.674275591235905 2.5390798396517664 4.166854940194355 3.6646252952743135 +3.389396055490138 4.137665471933411 3.904414895517355 1.39693601831534 2.6167455816717515 +1.3679116815722776 1.883094154562646 4.5299000396861375 4.734576276923794 0.5543512808375544 +3.3474358141834384 2.1125277404424136 2.2585065242413904 4.058907124267934 2.1832178707510406 +3.9818364812605744 1.678986342829306 2.095475859476111 2.33083532917759 2.3148461806459353 +1.22047786358441 4.311466835993439 2.0310567116470493 4.04912635425997 3.6914520056462967 +1.2201778405795274 2.5860282351791906 3.4923914542862176 4.538121984621486 1.720203372425289 +2.2933059356921306 2.2600904236808916 1.5541899423747298 2.924962444366709 1.371174869393222 +4.892945469070413 1.3676611081752021 4.047399629339273 1.9926690039004202 4.080385737683227 +1.4543788348813318 1.8116692461626585 1.731517524106224 2.4743501111613306 0.8242916294519569 +2.3931284106294695 3.658704362113902 1.5245788823822224 3.994056362246563 2.7748876576418118 +2.6221878274776302 4.056504825329546 4.08878567609799 2.6633866048226906 2.0221344571317257 +2.020976272729752 3.6881271199093164 4.785680071021648 3.652791172268663 2.015646100923793 +1.3102931231143997 2.4609890056485506 4.468497989854458 1.4889336065785899 3.194042098684229 +1.0856443467379586 3.2118077119435253 4.418462493216425 4.915426261144941 2.1834705498760383 +4.2766112717038585 3.953008384216895 4.168211720227206 4.122980577198383 0.32674865736463904 +2.320945687067383 3.0632025531831033 4.141247216712955 4.35845761713078 0.7733858114457506 +3.1307751775782493 1.3459080912499655 1.2190983513985185 2.6711266448385906 2.300899102700617 +4.919895751975512 4.978827870390985 1.4237160489806113 4.4981901841670275 3.0750388944712874 +4.207273473254967 1.4903842182462337 1.8928626289084844 1.5346778977199622 2.740398424616118 +1.9457965402950514 4.796036955827947 4.726199828758081 1.7745362540066396 4.103192450379533 +2.63957636324734 4.946168805311039 4.9402440005888835 4.578399480311915 2.3348019510527758 +4.420430831530204 2.8334368285098037 3.8440755450282307 1.5107641221648596 2.8218596991500844 +1.8405788738214741 3.2361454451425384 4.014207572858654 4.922563155960146 1.6651474169996132 +4.915952186271356 2.3253813503317353 3.690078834865889 3.422451576761769 2.604358194508051 +2.408802839194202 3.6803885620896812 4.522725401317334 4.141735187557778 1.3274350431008561 +3.7531346352343498 4.120336974797347 3.545009423776802 2.748145500547595 0.8773993790314545 +3.046448395467386 2.9074615206582353 3.76904320996375 1.699658847493744 2.074046525756982 +3.4789006968865226 2.4117149817618864 1.4643871600764928 2.9852597284680535 1.8579393746438615 +3.6786953084517275 2.889540447310338 4.708594381271451 1.5246142250623076 3.2803193487824758 +4.070474977508734 1.9995562248854264 1.025444265171095 4.985677983993085 4.469021770775068 +4.953760741238961 3.4350352160261237 1.7965609675163385 3.808300260160115 2.520639244814674 +4.1249226879218766 1.3999574983447678 3.6734621502640503 1.6581923942593382 3.389210449924038 +2.5171184502857296 3.6034063927770847 2.981345116996686 1.850317882903874 1.56819772294878 +2.4313091087889784 4.511868297101145 4.662176934544582 1.4484546332412553 3.8284118856210507 +4.430516557556645 2.1757940347689058 2.3922057675012156 3.8141249308320697 2.66563834040063 +2.7108176620175293 3.161987877006389 3.8662992376999084 3.3509132399465935 0.6849651739857099 +3.5425664839900115 3.52374975858974 1.8710029500972358 3.3002233092224964 1.429344221695015 +1.2527036485383811 1.1849705452153088 3.1897262951864427 3.669824773182512 0.48485288682229816 +4.068453315057864 4.813575310747634 4.243310937464669 4.672642921880937 0.8599608952176349 +3.911825027049831 4.237290463643416 2.9981929781579684 4.5782672571204674 1.6132459445031666 +2.7684584790449906 1.6843379898230704 4.592737873362465 3.1865581461550865 1.7755727696604813 +4.4379666602783026 2.7278534608437295 3.4108162243191877 2.0006506563509436 2.216541017884296 +2.5220095652514876 2.4798697824034734 1.8274323794556278 2.5521357874516153 0.7259275382980567 +3.435055882631056 4.015474548707416 4.666577486777834 4.502011127424312 0.6032975340250722 +3.8954978729612812 1.3311742774942057 2.141416131966994 1.6953301504054514 2.602834648074079 +4.483369558458324 1.587271270043372 3.8783327309875912 3.489434119900309 2.9220929872038006 +3.7405608146609506 4.566850636408127 3.7122474691958534 3.8114322991818788 0.8322214248758181 +2.9662688814928946 4.864787514430271 3.5845847071371413 2.503717694196394 2.1846387571573147 +2.8488565099793304 3.3762724630159227 2.3034141545195728 1.5407839920861477 0.9272391019422818 +4.709709476020157 1.3957186457686053 3.1070899459882577 4.677101813946167 3.667079558520656 +2.431458668936222 3.6972598291223013 4.697966084142953 2.333840781082144 2.681667582997711 +1.388287299200773 4.04758952358374 3.924019846164089 1.5176315819410098 3.586445705541736 +2.9642806810846394 4.433843622917994 4.442963514103713 2.6397218514644307 2.3262191930013794 +4.378767646907644 4.710881438482101 4.659267504213338 2.8152555687174643 1.873680759575974 +2.7541437179584767 2.459109570022237 4.188871433827186 1.7704564303311097 2.436344860150835 +4.59559845712495 1.284195068816464 1.129529563257781 4.0065366936372655 4.386634521857881 +2.929049784455407 1.3302532379784626 1.9850608008811692 4.103928909969417 2.654383631040888 +4.0326793732889055 2.133749345229274 2.4146939526354183 3.2633402724040423 2.0799364960314013 +1.790693437282851 2.0367004316695096 3.3937117479105883 1.2814320415180704 2.126557076432424 +4.734331897623704 4.346794845877515 2.228377908806388 2.4289164274387995 0.43634924536592345 +3.6171426883626228 2.86273955736369 3.4345813068315363 1.3732075181824097 2.195082226384845 +4.443482713189869 1.5060791286038904 3.100714202147174 2.114144729038368 3.0986544086117034 +3.2447869488110848 3.63444000082593 4.431621125103632 4.969628160882905 0.6642899001885276 +4.462189728809122 2.4401814639560593 3.6040777382731295 4.166787008545898 2.0988470992392476 +3.387882459352041 3.0564625693995167 2.643354299405341 2.321191060021745 0.46219941179784674 +4.51764975851954 3.4918549695685948 3.160453358930875 3.3912383286769248 1.0514355193256502 +3.6358402809425816 2.4069009719972545 3.5726031786394286 1.3006592121262752 2.583025592603863 +3.659958435817471 4.71373963991565 4.503589235960545 2.8057666366617013 1.9982633472093936 +4.511128018919908 1.9273085611060479 2.4838853733949184 2.2619943115078964 2.5933296423561076 +4.741872220985643 1.8436592404736554 3.621694184008947 3.7463735929739075 2.9008935581003366 +1.4829981885301353 3.763220731150654 4.670466774854006 3.1590603129895 2.7356469686055194 +2.3116445919739417 2.4710829096101192 1.8983029500640773 4.523951371181129 2.6304847858227807 +4.40440501821721 3.670853943354395 4.566056228530718 3.660881258247258 1.1650918016448542 +1.9783750933694035 3.41722286600989 2.415514075855324 4.509734304907855 2.5408741174259943 +3.3409628758466825 1.0991699978804568 3.478854371379494 1.6352096452146503 2.9025266896301805 +1.0686455019999324 1.0488052182183494 3.3211782540456576 2.613880181531175 0.7075762858118099 +1.7086011664507939 4.631220957472 2.076851887218511 2.291987351528176 2.930527206983852 +3.2142628430879436 2.146854105638722 3.2836272887103855 3.315368347122593 1.0678805680281238 +1.819265852697538 2.2165771931761786 1.8162191635156333 4.626908404823078 2.8386317676786392 +3.732908583555046 3.6731875856252207 1.0734304299022366 2.8750574720490536 1.8026165972242747 +2.4145118390135356 4.010682952501196 3.096619110535892 3.1370445756169683 1.5966829496676727 +4.53415399539011 1.1145335907801726 1.2883134315690414 2.1198743629546035 3.5192751091995427 +2.8043916810855554 4.840623745362784 4.402401390981008 3.2655976389639307 2.332072852676521 +4.393012123967974 2.51667033007908 4.220931920670246 4.590241539601001 1.9123410057123633 +3.7929316889878377 1.9242084781267645 4.839204755248664 3.52381989116979 2.2852491722914414 +1.117048798163879 1.7091887484881672 1.790491056013722 1.7456855660862338 0.5938326807255497 +2.2725698122966707 3.549839751504029 4.326942045453201 1.7983710596482787 2.832858931866754 +4.858044894972554 4.8932462991120715 3.7035003313758748 1.1035710795431437 2.60016754333041 +1.0646817811914855 1.6679384863902516 3.7971274367503263 4.475851716798299 0.9080667930796227 +4.067849296563619 3.7482823169623742 4.028382276698416 1.9465613985870398 2.1062054085468214 +4.321278829727645 2.542389207017797 1.5496019395942144 1.0227919935137844 1.855256588473425 +4.406086478058935 1.2771332696600846 3.081105535586234 4.941165983410857 3.6400787147960134 +1.7779242387860528 3.3461204688019257 3.9098292371742622 1.1684002251198802 3.1582704830285615 +3.346717232768033 1.7621044644470039 4.923296645238969 2.5685054465462223 2.838316264084546 +3.9083661511099637 3.283481099690947 4.291270765871687 4.036883101970568 0.6746809698161164 +2.3785210586785395 1.0561186953476565 1.7797279609409302 3.050785684263726 1.834212568532239 +2.5873601334393017 4.4650326334263575 4.413082333262312 2.4700417760033644 2.7020474874362965 +4.043964721918297 2.2533577140597307 4.930259304079085 2.4322938802410934 3.073451596378626 +1.2945856508126568 3.3275503779273197 4.926385498386875 1.0522189755005606 4.375169919985443 +1.0664960694294061 4.395658167718864 3.942649755474497 1.0557694811541194 4.40651767214738 +2.6959979319887233 2.517860696943989 2.2020196313095868 1.1985715824247962 1.0191373122990228 +3.085285332954229 2.9636577452120143 3.027223909950133 3.1009171274973064 0.14221097149110953 +4.315348621594419 4.872975484147822 1.9704175128782002 1.4124410851234392 0.788850690416834 +1.1054445163804258 1.2330685276865916 1.9597693814363177 2.0415158170375687 0.1515597835686822 +2.3756213740497762 2.5850907845897324 3.8162715442004287 3.4882743181509563 0.3891781266311165 +2.3340568237002888 4.384250898293532 2.75684580262648 4.555284275404773 2.7272104216334982 +3.6032577927637113 2.214622430842998 4.018919956548558 3.1149596747025554 1.6569406626466063 +1.696215603203476 4.83878849705091 1.3897449328556686 3.848612071280179 3.990212024137135 +2.208998933471164 4.31820288598268 3.7392613565185484 2.907891549226298 2.2671385201983925 +2.8558630979324215 2.7656780244113848 4.864151181409557 4.207045839990494 0.6632652389560745 +3.7876197828631315 1.8098261012166454 4.102232997448307 3.444429602957482 2.084315991629967 +1.4514520219975884 4.424510806710465 3.069703548909305 1.7069699376272318 3.2704925367100732 +1.9153286589181806 3.4446296580919746 4.157982445368917 4.690842351118288 1.6194756019246455 +3.585661837984474 3.688421539491717 2.1660294228782893 2.4589447020952995 0.31041732724291793 +4.537647017399571 1.5927709105338885 2.8238342937214886 4.371788916510281 3.326929334837392 +2.6557281473397913 4.987710719444982 4.605555423922894 1.9250743132864643 3.5529032777548344 +4.458754235354551 3.3693242150334166 2.671395078817932 1.288734485302025 1.760286364782352 +2.172376503152141 3.919801397125665 4.7900082038404435 1.1398556269691014 4.046863920929252 +4.296802214455553 1.8753387892485596 1.0840084941311514 3.02503425655813 3.1033959028812967 +2.4250215099654433 2.3123710320125 2.477937420933478 3.315444063019365 0.8450488185430499 +3.3100407894710293 2.8777336591476135 3.9121270755278053 2.8925805555238107 1.1074134554811597 +2.612690274269587 1.3818680888147088 2.559834276069712 3.9371476756324597 1.8471370963799674 +4.872777236125754 4.172601675449837 1.5658835641934155 3.5632514443462604 2.116535911444477 +3.4726431576666896 2.1372354209015434 1.4981768410182958 3.408774853856009 2.331029512913045 +2.2331982226051816 1.5003615029439965 4.339975604330327 4.4484904763692565 0.7408273315269839 +1.4567311341779567 1.5767154243781683 2.152335783745643 1.3774977315855583 0.7840728518256977 +3.7240543016015573 2.378175804836932 3.415475546520954 2.417631249886491 1.6754349191715368 +1.2315742492744555 3.9788791212373447 3.7874102006784396 1.2057554039657767 3.7699636004742176 +2.3059903836220124 1.8837694613443907 1.1281660762086525 3.080574261214759 1.9975405447919712 +2.487062434744963 3.8761595897581063 3.4349889931949344 4.3001604322952005 1.6364939734384707 +1.9818864301250714 2.408730664939752 4.168542098827321 3.517277803860589 0.77867912691496 +3.4982985063352494 3.9604045531226895 4.720544224532757 1.8418749387186986 2.915523770365582 +3.469130100127593 4.105834398296396 1.8476523496924373 4.963424188244617 3.1801613973541434 +3.102468124786937 1.8435153085305624 4.3045133532157855 1.9869269215421688 2.6374550350361434 +2.7845749050827044 4.524605348625474 4.018214041452186 2.880086177150363 2.079192386470255 +4.607987643062823 1.4856337326920444 3.6855774363496407 2.3202198576527087 3.4078285255148684 +1.9654094383169416 3.8941748429198655 4.610595544532402 3.2271115051705688 2.3736394151517657 +4.116005534269068 3.0146237485375633 2.111750851191961 1.9784540382196458 1.1094187118891108 +2.8450891172615616 4.428269479580118 2.3314244724375364 3.3355176108382056 1.8747434731755759 +2.0115482641947526 1.4631821291899443 1.35258342462196 3.026172478216667 1.761137626175802 +2.3102104907293115 3.119540384043922 2.2131977462678782 1.0843783012437114 1.3889737994927431 +2.855755963255904 3.9898884760953695 4.877926643762393 2.279027641465357 2.835583287583013 +4.820079518936277 3.2184536147280625 2.6733744512240474 1.340539144902467 2.0836639582255394 +3.2757399514075756 1.614039925196591 4.978736198533607 2.016162916635755 3.3967760343779805 +2.571334832341491 4.703394547904958 1.1965268417086503 3.3447616085689553 3.026646864811936 +4.818979481814013 1.6899286065007058 1.1893813462767695 1.0169668124332754 3.133797401201846 +3.255162695351412 3.8136632084086064 2.6225201000338427 4.548084152575777 2.004923874746088 +1.6532552347205884 1.9157297622699154 3.2182404038350327 1.8654148399105166 1.3780529322271795 +3.061582551623233 4.3350392815470435 3.6192825173377483 3.097666326486064 1.3761451571498067 +4.217569305428428 2.8933173349665964 4.1833569011705904 1.3597291461111758 3.1187364397162374 +4.675895648061786 2.9509349627716848 3.8231332817971735 3.3544852592059606 1.7874899537829996 +1.4195001563708596 3.7318896214524373 2.540822290596836 1.5533647870625722 2.5144019884470317 +4.24369507979708 2.387608849368371 3.8741364054792617 2.734384782372816 2.1780931699908597 +3.7774579513136923 1.576773019635755 1.5422779409655454 3.661474349716169 3.0551608120319735 +2.721943242791446 2.8445434918409775 3.378550622141513 2.5420476922127344 0.8454395145996184 +3.169626998870461 2.656101062668208 4.905753896499895 2.057033845696622 2.894635523688777 +1.3299955384458793 4.450126750791689 3.0082422291090767 2.6182616585148404 3.1444083112241548 +4.950266170600784 1.7232614785953433 1.7971917657261258 1.6146249649076383 3.232164896626753 +1.28572143659107 1.3152536909465349 4.180056818629817 2.4874620821885043 1.6928523550139132 +3.588157684449444 4.509274348157781 4.478744674923953 1.468880079188347 3.1476563968806763 +4.685198881634722 4.92930229114765 3.5199221902182893 2.328072682175011 1.2165902039548242 +3.1767432560703166 3.8633668605447413 3.788806375689128 3.377398813718289 0.8004424753024048 +2.2854088369924006 1.0511516998263755 3.9224122120654297 4.269185417145595 1.2820461522140467 +4.037478938738545 2.252209459477365 2.404043405668257 4.408350850746043 2.684107942683328 +3.963891750331773 3.429633874460069 1.6947017645571103 4.6892462423486645 3.041829730179327 +3.5013981574136754 2.1193581105515507 4.9588576798728035 3.9184733025222354 1.7298654120381138 +3.7203219137711887 2.887118922851551 1.4105502050636232 1.4006258676190955 0.8332620935522886 +2.4621332671019482 3.6732211406114734 4.398089609278146 2.5966704706567034 2.17067840786088 +2.0271555141530984 1.670089991855488 2.132439378166688 3.2227452896642896 1.1472849549524657 +1.5875013321185456 2.2345560756152545 1.7936769937541959 2.818729697569069 1.2121934196652668 +2.410410458250511 3.0511502067628857 2.548428721832093 1.654677031662958 1.099699735838782 +1.573829849271592 2.4644390451263223 3.6741084120218224 4.409675097796608 1.1550944069480693 +4.838430446790576 1.7253041704087462 4.708001215691337 4.181928630870962 3.157262671555629 +3.1331830847939117 1.614012183320487 1.3774488835219159 2.710638835446929 2.0212064901432996 +1.1745012862170956 2.3803664079207385 1.9372778769169479 1.4725999487191097 1.2922988310354446 +4.149043458037159 3.934136066028244 1.413569100482337 2.402694301080178 1.0122024746056457 +3.218774862870993 1.4492867447141773 1.598461928693892 2.05704745706766 1.8279466313686505 +1.3979823242709144 3.598474656906549 4.3839803383923295 2.9773616064032207 2.611655176927242 +4.239491512805065 2.1336260833912464 4.612545828737938 3.3022237189129355 2.4802445924336762 +2.214081697197883 3.014734209317121 1.8963923983447848 2.0415375216880545 0.8137023731028316 +1.5502818529808797 1.5572905129691232 1.5466943021388353 4.574013163282562 3.027326974139295 +2.1418987486470993 3.5610481629821944 3.8872501281678113 1.9865227061798092 2.3720771051769796 +2.7104732921278534 1.0728313232086126 1.609100081785948 1.2660054143694839 1.6731960940593011 +1.9789571693276171 3.2212520766711363 4.908138827577737 3.6830196652132283 1.7447674913306812 +1.5242792540647785 4.465605244464131 2.1261208246598327 3.75468305477401 3.362084698390746 +2.6317138198638723 4.638604817098347 1.3053139239329892 4.245180270810102 3.5595541311070638 +1.2517509539925196 2.950090543134941 4.4263545254042445 1.3138672427025746 3.5456923787926207 +1.2505223472371547 3.2698642047316526 2.004589907161646 2.363846620349546 2.05105020011698 +1.1880729942736425 3.929242222322306 2.5269652435336982 4.923151795776798 3.640840387870852 +1.4983450624420458 4.583266426781922 3.64042165787683 1.7782733450822534 3.603378437384046 +1.605504071113013 2.8823240769022154 3.6656789718856406 2.0758814583531815 2.039050137004367 +3.696552784119932 3.602767809710565 2.4759057687679062 2.6393128002581743 0.18840774762579995 +1.6534936061562444 3.463862005300075 2.7625651148239525 1.3229728009837873 2.3129763878358713 +2.4967513434018427 3.448142601141802 4.064200064416049 2.9466769781525293 1.4676522659117737 +2.9548523626186616 3.878129626580371 2.5396222088129385 3.886176293209146 1.6326814779229686 +1.5334871408437336 3.5853477596329024 4.243543275794584 3.60486917418537 2.148961750940255 +1.5577779758165624 4.31029542436346 1.9445962062752096 1.4123913336213914 2.803496804177167 +4.736228895294684 3.608325304455685 4.98739496344485 4.163455077976296 1.3967975676859703 +4.0370918394927555 2.675682440544727 4.736561818740846 3.000876926557092 2.2059096981741937 +2.3141820070386716 4.1457302236823725 2.8936258419887504 1.6568177635490842 2.2100368985119547 +1.996450213793394 1.5284060965688644 1.7070475054084122 2.9578319373815374 1.3354875480268704 +1.693712649139973 1.8648867832442084 4.350188166294048 1.5899662127261966 2.7655245103134165 +3.4040646613816357 2.6439176330338685 2.2075544372727784 2.5577594954945044 0.8369391181621418 +2.2870916425106804 3.6024778762323133 4.333771415867963 2.64968057901093 2.136914338631805 +1.4606277300031207 1.3636497852389047 2.7620272513728694 2.284742731605685 0.4870372004067895 +1.6983066149544137 1.5352493025562661 1.0065509180318633 2.7860585845301116 1.7869625687888786 +4.06559351963563 2.2270548390690434 2.9243959025675537 2.761212897881729 1.8457662834058433 +4.117030173529614 3.654632051733886 1.7521485758911992 4.659615045061301 2.9440063336189812 +2.3025639033132657 2.9748989079740005 1.6502681749403507 1.4819157526533489 0.6930922713333711 +1.3404176165148662 3.9562738311009644 1.3550522640209453 4.2860801463379445 3.928565664757099 +1.450544595722496 2.9671340118892573 1.6752744557946624 4.857792438008092 3.525402695344303 +2.427357979120922 4.094995589064563 1.3143827778998807 4.724545754140223 3.796080442063752 +2.110168484084453 1.5283492034452655 1.4882789100098877 3.46650947065805 2.0620159617243132 +3.7205010315557216 3.2120644762969213 3.6589848563627805 3.498743470145615 0.5330900792363651 +2.2693299426116975 2.5196528102962357 4.691631460058989 2.808336408009347 1.8998583608154782 +1.1318535141210382 1.8206336643649221 4.234947637388377 2.7646189270959343 1.623663946658983 +3.0110383031264125 2.1046278384072123 2.734959294494694 3.823382054873975 1.416419442066555 +2.174541159874849 3.1512072997321465 4.628624119104758 2.2552541981798684 2.56646868874233 +1.2482387287517676 1.354894240738016 1.495617473854724 2.5623103790687116 1.0720117314054478 +3.727196861124091 3.1739981815559726 1.3679507479619155 3.149992184421921 1.865931526164974 +2.397688744822216 2.570374829755002 3.7090881651139007 4.05244719875908 0.38433827537101345 +2.2175180003089414 1.6553000600394299 1.255056953416442 3.8204809784463913 2.62630718701407 +1.255370016672686 3.4327064540548857 1.8893957025504529 2.950342461156374 2.422065644475521 +3.6152976443300395 3.5176400902021623 4.692760089796109 4.862435145505578 0.19577186316795023 +3.5387010569959854 4.459047159578514 2.2473933042871255 2.948314658723358 1.1568611384447023 +3.7125758274299137 2.46803525640304 4.909056143005293 3.623684341265185 1.7891511679118977 +1.9448453743425937 3.17656121285336 4.975531415207138 1.2678842402411465 3.906887697499325 +2.6525645576804258 2.326456314618873 1.3235344724909797 3.731837475959466 2.430281864868358 +2.0927827172215214 1.2395643379206835 2.9857925345714778 3.589961079015193 1.0454669927223843 +2.082503721488069 3.9751137055394645 3.6617983155355476 1.2385132579687306 3.074781784445465 +4.784770287379985 3.6469356175682446 4.167030197057361 1.1783986843888985 3.197903384147272 +2.1579944676603047 4.594896691332741 4.389273751362299 1.3057227660043393 3.9302390674158367 +2.952333432403688 2.32921238890548 4.769104961182603 1.108639897386956 3.7131232565212224 +4.699240625623483 1.7975068660333142 1.2839928426777294 3.60598929801227 3.7164131027284184 +3.178503068668604 3.803461022425046 3.075034141061386 1.865622823688608 1.3613405813949708 +3.5068640359343637 1.8170368995722934 3.8497493783803702 4.083086861376964 1.705861111508443 +4.342320373348123 3.3391091944100513 2.036961557071488 1.081743785911244 1.3852341534508381 +1.7041952391238797 2.773267871767041 2.960416152895686 1.94960387192977 1.4712775948875514 +4.2645752808387165 3.07375327350026 1.8337836318943666 1.7677088907954763 1.1926537320500348 +4.536726753950897 2.628726519343104 4.021554070680044 4.296047045381783 1.9276439734619053 +4.89545726458559 1.4371602430699295 3.3226896026402275 4.700202421428936 3.722547495325117 +3.1614173411674966 1.8638678011753083 1.754223841737232 4.856080468749052 3.3623130941765504 +3.2291342504639893 1.275332283736752 4.399254544770696 4.505230107559266 1.9566739496133672 +2.471405091954439 1.9171344473143401 2.457699096634383 2.563528096012273 0.5642833726232559 +2.7793033471607833 1.094326423123701 2.7684243931936 1.1395572617304093 2.343577471836293 +3.455380016621637 2.758562539718149 3.1864378349835576 3.1904663328213263 0.6968291217457635 +1.692395327440162 3.1599028368021957 4.109952341149285 4.898887006795148 1.6661321066145114 +2.8497059540477974 1.6920718090728872 1.8281711967569363 3.1307120905101935 1.7426214716659856 +3.417054841517217 3.6614806031382354 2.9570276579600954 2.120993989239392 0.8710317147949399 +3.0352882642612253 1.4367757110462587 4.142843116018788 2.1699174239271737 2.5392278687232874 +4.423734655930433 1.3523003731555843 3.665311707405753 2.389682903930684 3.3257987608482695 +3.6773156025541303 2.68251803880792 4.531544612460303 4.168365546677941 1.0590189925860372 +2.677224697170366 4.0802303931129105 4.268650430267424 3.057483543111753 1.853469776227706 +3.9469062522528517 3.4985301827034645 2.5456164680938906 2.436217251589262 0.4615292930209128 +4.893259377733113 1.7627664557393308 3.905068152731809 2.3303638580880612 3.504237370701738 +1.0348584234348452 2.8546882873065322 2.795211969495062 3.1411493123774203 1.8524182515403342 +1.6539773579433281 3.2313336294279478 4.371099612142535 4.594397540756214 1.5930834165589134 +2.618623369508295 2.5231340309809966 2.6151826504940474 4.659609368740879 2.0466555206125654 +3.0480900776474424 3.4613804732639637 2.941991175073409 3.6149020402428644 0.7896948673835774 +3.9233894431024154 4.325941526746612 4.080690866713427 4.232533177519715 0.4302374546657664 +4.6478729948634605 1.6132368366365788 2.982533432765525 3.5844720853923757 3.093759323920372 +2.754518500942524 3.143455267052563 4.847973799872226 4.01381441283673 0.920376928769713 +4.856870234854986 4.175697777068208 2.180156492098068 2.9587469469491796 1.0345042356764618 +3.9367979023118873 4.224831478411223 2.0961916051047984 2.6857410887352406 0.656149323408546 +2.1517089226185595 3.7436266989497535 1.2099449268893756 4.7488528698845744 3.880473120071026 +4.541225373905143 4.401210275869802 3.203105352546427 3.777937056490881 0.5916381626784486 +2.9434478206873607 1.7845194399566546 4.333706284290296 4.5867887341681275 1.1862401603803765 +4.127076469293003 3.4829301123490386 4.179762394812769 1.5282474952537615 2.7286362512705127 +1.0416074908642874 2.1666109835237837 3.044246414838828 1.3900761794716012 2.0004779494088236 +3.6890915368911203 3.6813396594727816 3.586012506364587 3.1844894337584635 0.40159789521182904 +1.069808502976839 2.978448799471464 2.06081171801804 1.0438362946878978 2.162671217050944 +4.970485747400927 1.1847464295657972 4.79043644335392 1.9482790624499593 4.733886432988191 +1.465640150286625 4.210707845234444 1.2404539248507191 1.194949480446756 2.745444828130161 +2.4613944060929436 4.852408228972067 3.453305703434214 4.539472621237336 2.626157968312069 +1.3461018445826305 2.872671595484206 1.1097410713016718 3.3602043832285737 2.7193749875103097 +3.147765963417858 1.6504193179200413 3.6753168126904696 3.2129373549268325 1.567112548525268 +1.101580211934655 2.3575430193499956 1.9373821451496642 4.163577679706133 2.5560495166740775 +3.0295240288685226 2.4505079585213054 3.3993721346547665 1.0933203975228016 2.3776320623783835 +4.512111961717502 1.9154742550487627 1.2441632189218916 1.6532947425507762 2.628671904844875 +1.6788802610907894 1.6258321390901393 2.6399285779542327 1.2272712909339543 1.413652967959 +2.9197058376617075 4.380106807499727 3.9443962789823597 2.689014576526633 1.9258126107086502 +1.4602327226887275 4.820716189295378 4.084036010986182 3.643874111505709 3.38918745823994 +4.0874214665976325 4.8236595967212175 1.5730168670936826 4.004476963424576 2.5404812111679376 +4.224677276436836 1.8563302687463668 1.3316838321093196 3.600805713720078 3.279936228410721 +2.640570943353184 2.3525497211058553 3.5227000506490564 3.6208354654074038 0.30428076523933933 +3.3294583240842517 2.6380844281886775 4.864798256402434 1.3523397292117463 3.579855132426506 +2.0664434097188153 2.054469589351254 4.485434513875031 2.1877948554158144 2.2976708581732894 +4.991144488030576 4.43431118338717 2.463107241480136 3.3099250450135913 1.0134908591306204 +2.6328354061165133 2.0914851489751745 2.6896372629875844 1.5986031737201722 1.217955452736497 +4.36102264633904 3.4266109594041834 2.0339000336983175 3.8063386085631437 2.00366257197895 +1.5142734004039378 2.156815721836997 1.4835160384937085 3.9497034783915455 2.548517436381873 +2.136039420004798 4.995454540420527 2.377078629878935 4.45118436607546 3.5324452488022273 +3.6882150537612093 1.0203663462788315 4.807928572437367 4.599172151839555 2.6760037311551352 +2.0607534285000497 2.2940894440176445 3.90545007243227 4.579806588321791 0.7135841973168133 +3.544566540143586 4.802236153856411 2.5836386230006223 3.635706411579805 1.6396888390857753 +3.50195251456023 2.706756294481386 2.5060448049022854 4.367200272854031 2.023916180160227 +4.937234980075587 4.186068431136762 4.245680413352684 2.063602262650865 2.30775133842772 +1.7336924209552307 4.858724288735797 4.076048099765407 2.3036748920478427 3.592649574071919 +2.6599816324511143 4.204350313279222 3.6375040967917216 1.6727206723278436 2.4990895396865542 +1.396450133814199 4.492937965202532 4.057214608925947 2.7728702038517863 3.3522794395427895 +1.7321072305225802 1.3453803812366112 1.3998522357919265 2.5207427568884597 1.1857289809407168 +2.631878174433138 3.445366544540037 1.4434071101374428 1.875675991232709 0.9212055763305671 +3.315918500339241 1.0472560660737753 4.35917814621289 1.1106275264189427 3.9623112409313515 +4.487549283779535 4.345525350505747 4.716007502041256 1.7357646920665974 2.9836249771089203 +2.756149132088549 3.3407829002468405 3.43200855330483 1.7502429174547278 1.7804865337309523 +3.7598959452670684 1.9336114434827447 1.54709910869706 2.2329896027852887 1.9508359365508443 +2.3821603327982843 2.959996496530545 2.9784997290785853 3.4704781637405544 0.7589054040453641 +1.9859098334035017 4.640645390012777 3.111857055590855 3.149906799598507 2.655008221935406 +3.5194432553844024 3.709108589388889 2.221806037213747 2.763824061332153 0.5742442663120412 +1.9285614991034432 1.2234711769494786 3.1651580767486065 3.037654489342164 0.716526012923951 +3.4130457219032513 4.110394216050535 2.7409775583552887 2.9681772908307584 0.7334266430437398 +1.2010526235808352 3.9061119793649044 4.382670056946431 4.746318087154946 2.729392974305726 +4.549832094006641 3.36452780608152 3.864924274131558 1.8867169401725121 2.3061332379338 +3.6285242064508503 3.1677212788960643 3.104216730851538 2.262076881401934 0.959968157843823 +3.3466408749829304 2.9770747585782704 1.4533823636256376 2.0242978713232143 0.680090899309794 +2.081437806797584 3.5224956597809354 1.113823869450969 4.313261019102359 3.5089949857778926 +1.6745834098589092 2.5254149048664973 1.8943509033566368 2.2873023068420726 0.9371899692154314 +3.049396670427579 3.5279202640005582 1.8165756583313746 3.6340834043917285 1.8794465240052418 +1.778965221003145 4.96767836181521 3.6085938140681773 3.720111772495241 3.190662587839599 +2.4153943360325916 4.386169692930375 3.7810021073190456 1.580354303555311 2.9541168330933925 +4.273384835474196 4.053775851588577 3.695932174023365 1.186542710037783 2.518980664428594 +1.764787734790716 1.5273759790564814 2.5884405930055543 4.6687092016378635 2.0937721523178725 +3.37670226321127 1.857116285445032 1.3741716734757339 2.449521491434861 1.8615903885679312 +1.2499341812909828 1.191252668742735 3.4996032123253786 2.1523825858744483 1.3484980297537654 +2.635786135591891 4.142819850225644 4.964092446047237 1.511221992858201 3.7674215298461986 +2.1945737312888123 1.948351887032893 1.856437468645451 4.4933672175979025 2.648400214752148 +4.826955647556815 4.573689253515678 3.063637473214507 2.228214242006511 0.8729695536458355 +3.73540301150841 1.073234051706812 1.5970936181549233 4.625409583192563 4.032101332386498 +3.6449322939276008 4.306067853477119 4.692498435654227 3.560863060927365 1.3106101058034232 +1.7734084586117564 2.5858354180701637 4.916434134787629 2.570400497225773 2.4827225767343695 +4.672436313857745 1.967338645338113 4.178552856537454 1.563859904463262 3.762203161693532 +2.389232160064695 3.1246902780034125 4.6131933539587955 1.9968355444640071 2.717761363796742 +1.1635336492261241 1.7498705949721294 3.4362837311219643 1.1202405828951516 2.389110059916688 +1.2108691583569984 4.383374554368206 4.736959892565638 4.953896524355097 3.1799138337276354 +3.3367727906211457 3.5757790434406362 4.970969950842392 4.66769842026374 0.38613159692821347 +2.146248368291963 3.3187924045800945 1.3904395746388691 3.1371246767619745 2.1037510221063864 +2.3570689583147537 2.9867916916028006 2.0962139309007832 1.4515010086107125 0.9012244298661524 +2.164833381316649 4.65117765080797 2.058311647278151 2.1875159567264886 2.4896990942707014 +2.9018774656488238 3.0700199738440297 3.573924898455076 2.019950438487747 1.5630446331736425 +1.557223255119172 3.0777819443470986 1.070105202984192 3.7638000598266546 3.0932330512210173 +2.7062918245456795 3.042813763333142 1.9172710371182706 2.5985414261725754 0.7598528530495074 +2.1788999974543932 2.6271108831408667 3.987203689996713 3.0423996229283774 1.0457283218870574 +4.292368039415526 1.6958425582381036 3.453635422979362 4.645364351469144 2.856949844397526 +2.4690559975988915 4.187722152884108 2.300312718768741 1.4471406113739125 1.9187798201355466 +2.328580184804397 3.951442642592854 4.572931444405167 3.52098198974488 1.9339804063276511 +1.49811338886105 1.1112331086644964 4.048556080909758 4.813808205546465 0.8574888719196061 +4.305760280768679 3.003433851739955 1.667495429157103 2.6529729601340737 1.6331626042152614 +2.140037782972328 4.55574579778847 1.612439654946337 2.910617224239824 2.7424277956335863 +4.369393348844827 2.882427255596181 2.3817412340511543 4.706602935847293 2.7597192058159794 +4.478340418859824 1.964147113069687 2.330802044447888 1.0580436737531702 2.8179925211138177 +1.2283883618399023 4.745612710913254 2.07429238165296 1.807408864072754 3.5273352454325133 +3.1782830519523952 4.682413164041829 2.685669930013569 2.9028256837805424 1.5197249802146031 +3.3726499088781363 4.048474690662607 1.7581124405261734 2.673430542957 1.1377813341374503 +3.1757974531963895 4.791389412502829 2.769167234524034 2.229962283203215 1.703196805570192 +4.35854574151451 2.92192043119563 2.8524244271436485 2.7553250635906785 1.4399029719572112 +2.850227554265141 3.478646631945056 3.5398297808688213 1.6492512903682632 1.9922845092846162 +4.435271396346645 1.419217737513867 2.0998504158571523 1.5686452835200573 3.0624758881630165 +3.7692940520604448 2.766706268806133 1.588090184013736 4.4353835984640675 3.0186523567815855 +2.1177914479387057 1.727328087125025 1.285963394129959 1.138092174755628 0.4175254886317315 +3.0213002206798247 3.1895656884412706 2.388844979991652 4.251660167321212 1.8703993396562786 +3.457247756670003 4.354939898259259 4.167067859644948 3.986562718970311 0.9156600280022469 +2.0518411043705793 1.4620279821513376 2.4581551927691603 1.1691953787301017 1.4174967094669444 +4.263822919072538 1.457485243165567 4.4707174064533906 4.328040221142896 2.809962264946465 +2.7202614296319307 2.896853811229481 2.5331148223106794 3.4814268042598724 0.9646141634595157 +1.2867421709898852 3.089576279973538 1.8344585552637467 1.469755602405309 1.8393528939109385 +4.834654961161386 3.5884894566085266 4.703865126321844 3.9514287783939244 1.455709078909858 +4.739634894272781 1.6596860583382056 3.552270985131312 4.129458375211669 3.133565080741506 +2.0863859257099353 2.3394128025857213 2.0080391123780923 2.8036765289320096 0.8349020894943944 +4.143669419179757 3.9011524521624024 1.7402503101243578 2.5070518693958386 0.804238217565213 +4.296772987432815 3.8925410909829834 3.8031488949635515 3.4257586916981952 0.5530160862290486 +1.3539944606945937 3.7381383021952903 1.6423814728675636 1.0684472435813261 2.452252506678724 +3.242279577981194 1.8107433584049546 1.1394388518304157 2.0154595212515076 1.6783051454403664 +4.455413974732053 3.2588520609408906 2.2687157369364006 1.2945053651741545 1.5429991127621245 +3.5923977502442903 3.4974851515808623 4.248008771125961 1.9302657717853053 2.3196855417012157 +2.3409065223391923 1.7463234956659255 3.029583219443639 2.9472321748023 0.6002588359711688 +3.095623426232862 2.5530814681053644 4.873162695793569 3.255432897762909 1.706282941298172 +3.9117986544620718 2.341024251111674 3.475199061719309 3.22435781088653 1.5906770757574118 +2.1105427217558064 3.390191840390778 2.171081097612086 2.598134360461356 1.3490279300790875 +1.8855904352903483 1.9054918977837132 4.597641883080936 2.278634133754792 2.319093143805156 +3.732488435512793 4.816299866557955 4.474659936033186 3.7891584737758968 1.2824037869645597 +2.240630776264712 4.060420336514757 4.63908877648262 4.758690673016357 1.8237156185243135 +4.248154634811776 2.7391531181465463 1.3314238176890791 1.4921827735481625 1.5175404505932837 +3.1890277165780514 4.753141720444306 3.435748152576125 4.8146457161437795 2.0851405487168826 +1.7485834771422724 2.0302260255403386 3.538407071067175 2.751562137694278 0.8357316999149643 +1.582490926688025 4.830479815514655 2.677627248673848 4.260661034121311 3.613229550943224 +3.1459938004614147 2.655094031448955 3.636898335332743 1.7288117566689336 1.9702225698873332 +1.5098711371580547 1.955683638368829 1.4045480312875562 3.4624459397691396 2.1056335360096927 +1.7960128738004348 2.0969436223590225 1.944371406499608 3.1561718290850704 1.2486070557250337 +1.3359919602149706 2.5501198115163364 2.776943668634684 4.428199383546179 2.049573583781159 +2.831149846383454 2.274933099766113 1.9360958571886497 2.8806664247229348 1.0961708928217446 +1.324346596267997 3.344504324723653 2.800885172147876 1.7461583618823604 2.2789220899653384 +3.4513209939813945 2.9158595763300457 4.439903141028408 3.0305414140783835 1.5076536098138547 +1.1040162141953145 4.937941384540622 4.805049026562129 2.997453299127623 4.2386772141373035 +1.5140763410029323 4.368545627557498 2.9798506531070266 1.1656651976252195 3.3821980685295565 +1.3017191076624588 4.325512939958634 4.942997913257338 2.234906796624731 4.059197782347742 +3.9549222126124812 4.235546512303405 2.3555084759025195 3.941873445803224 1.6109946664421593 +3.357247496064893 4.146508825211004 3.6176106329052002 1.3100268279053475 2.4388268619939146 +3.4011711887218956 2.0579797085788862 2.482190534549366 3.2708887826922965 1.5576290569171136 +2.026647570345193 1.8318482158136953 4.524940624694144 4.032762396085884 0.5293261728290536 +4.008132190517911 2.391487206591628 1.6446373978413176 2.7229203142258047 1.9432537281118607 +1.2146551392646008 2.6699711621740874 2.784534660279258 2.5594887958575026 1.4726134481358033 +4.990204032188419 1.5399511985101126 1.15690472385851 3.8554597558150556 4.38023331305573 +1.474122040251836 2.310292616535368 4.880648557597391 2.331016468970364 2.683245240375719 +3.5462914200965794 4.654789018943861 3.19344987338977 3.7946598987837508 1.2610394209874722 +4.48809784112136 4.563312691361324 3.772475816739763 1.9608726750753944 1.8131638692034513 +4.956965882588213 3.475729930207009 2.427953177928538 1.009632520860567 2.0507787381607927 +2.161205703755282 4.627097866184219 3.238019399814955 4.04469057008769 2.5944830956623406 +4.590570940625616 3.088839809173709 4.439439140437413 3.9376000990548556 1.5833631341633507 +4.7964218093673265 4.4388717285343855 1.5067951360367253 3.0594474351323075 1.59328943453173 +1.9652300897064832 4.887535490039744 3.6200960694477335 2.049003668972911 3.3178607842473857 +3.724146960118504 4.54351095889494 4.010441206697538 2.0535348650589036 2.1215182753010673 +3.905135171874543 1.380708585579249 1.1851761619586303 1.0484837710857602 2.528124680334626 +3.0530624486579505 3.9362373047357417 4.20511532029689 2.2289934717679 2.164498876562808 +3.640032958803789 3.4199693361655297 2.4691644426429713 1.6565919696672666 0.8418444166510379 +2.8787773196473476 1.9989934052519853 1.9962864151825999 2.531402013624507 1.0297419287009082 +3.8071407317660646 3.4806845212699256 1.937205994801484 3.8855793693178455 1.975533463117184 +3.0088542700293006 4.306335347585719 1.7008182661650362 3.075922391476254 1.8906000375713776 +4.924757886709756 2.5552323975673428 4.258219371849949 3.6975460412437853 2.434954953864363 +3.644448558183112 2.8196989053425803 1.699938001766781 1.2394148837289949 0.9446129006676873 +3.662370840788138 2.308368355663415 4.201865014694752 1.4318049716381527 3.0832702398366987 +2.2205167344398324 2.9728603439857917 4.854105179765182 3.9595044265665202 1.1689017984622385 +2.0701236202215316 3.837016555250452 4.465067625475104 3.1839772799390147 2.182453462798437 +2.4990288580497086 1.7819587493620177 1.8963873327423926 1.1768446857330703 1.0158401260230663 +4.782644555934912 2.0204059292400376 1.7856166516513228 4.623641798351137 3.96034707621765 +4.063385567075494 2.7450660720613866 1.836337897399046 1.9001723718943095 1.3198640577985061 +2.482179132410436 2.6027178003998275 2.3385710804978834 2.5640608474930073 0.2556857553720427 +1.2917043411964237 3.7708075518587467 4.035482255950628 4.627944463894325 2.548914317304087 +2.129193732709244 2.246384493451584 3.512902349595332 3.541059903326486 0.12052602306344971 +4.957271430509561 4.424065630340142 1.9759047203809157 2.2231649087313445 0.5877465661978803 +1.6847133949218849 3.486227589940177 2.9747830331039977 1.6208538692955758 2.2535699624070644 +4.4676022638376605 1.1346452158449885 3.6379840689638328 1.7366807396605117 3.837128748658809 +3.1043691449030253 2.9719312539002574 4.925064425699422 1.5852386764628963 3.3424505725943927 +1.3162042994435605 4.259209927532331 1.8765195162161348 4.505170426026595 3.9460217602807943 +4.799513833669172 3.310765659292197 2.4915198888818875 1.949117090292138 1.5844784386758846 +1.964862854525741 1.6226049859164955 3.4192112413219333 3.4080509048910166 0.34243977825917765 +3.1338443857838483 2.0129841430329005 3.308535736120302 2.076094462521719 1.665904912247098 +2.8159375248235397 1.73083186016714 3.9049532552769977 3.378714385789378 1.2059774671315442 +3.8295111049855732 2.7710869784514935 3.6898617658535615 2.8781991291953624 1.3338132805518055 +4.193637692499762 2.352871705781397 4.348827078744842 1.8702428608601926 3.0873611941277774 +4.5449750863370255 4.998271784279144 1.8976057473841483 2.982912764757431 1.1761671727798386 +4.93684824588845 1.4377868327938619 2.9846937870654795 3.3013805900415223 3.513363246774618 +2.536904093357653 1.653886085482989 1.1617325622921117 1.0279034442172357 0.8931019175187338 +4.5252792079566255 3.639163927200353 4.296371919003615 3.4256191176986643 1.2423408275389596 +3.4077281465271865 1.313213627752757 4.111646922137718 4.261663621530246 2.0998800154898154 +4.861702569492067 1.9556540738176702 3.1519826292203708 4.479511514612583 3.194910139700664 +4.278326863270243 1.5414912741606313 2.414933652471242 3.1069026923097662 2.8229577031744566 +1.8013566322295111 3.4874521234248865 2.2092371505700856 4.563611151989194 2.895858239622168 +2.8516152592622346 1.6183012675668915 2.699843601933313 4.947103384134894 2.563442983725637 +3.372479477633084 4.6301476510651876 4.436483635989427 3.4490996134364105 1.598954796877329 +2.477336695009119 3.712013757680406 4.591042657006233 1.2882670835485226 3.526011051842508 +4.225624226905417 3.2122647155648036 4.780814835468682 1.994658446834944 2.9647200409396297 +4.164849367097346 2.220924113336072 1.6764710146798367 2.9743598298212617 2.3373833165914495 +4.35651998572906 3.336817251508028 3.643033513072181 2.287501733879801 1.696248823309336 +2.5689670298008043 1.1295690427889769 2.1775297213037548 2.5589521408599 1.4890767700671999 +3.0172072183189202 3.673028802516541 2.5897074452053426 2.2175809299570264 0.7540425012227975 +1.9617799958188122 3.267327451696983 2.3570500479516805 4.904558681465308 2.8625608111228718 +3.562860050444415 2.7267478301278274 3.0538848711796485 4.782988430770088 1.9206464444949416 +4.012433097113255 4.677375694099442 2.2939722986242748 1.5625944630516808 0.9884645646929321 +1.9587550062729884 4.188833639429226 2.186288553167666 2.2416023608351114 2.230764516343817 +2.325192561522955 4.362426113187495 4.1659652658014235 3.5510343016999375 2.1280180061828657 +3.397563907035826 3.7068504736255914 4.3993742984283895 4.663362993716083 0.4066303130763669 +3.3363032055119675 2.374511093080007 3.173259861229196 3.288775507344071 0.9687042541630909 +3.9381401475176165 4.308977800599652 1.1701543554518654 1.96061143406987 0.8731225332567601 +2.306048804180818 4.140396929742143 1.1229860436982393 1.755139800173123 1.9402194251103797 +4.067729151343874 1.2013776217301655 4.042153858617677 4.054776513261345 2.866379322896588 +2.095314460240194 1.8763042603260347 1.2619900047471195 1.7942030345674804 0.5755138371724944 +1.4452361635965008 2.815395368889136 4.785660480309444 2.993894621625351 2.255606601381121 +4.089722386004157 3.9878701646872976 1.0653170137467285 4.292618093903522 3.228907886107683 +3.4574443209128347 1.8093273537123093 2.1382081812298073 3.9816548622196457 2.472768732256761 +3.9694250694010074 1.0909610455229126 2.1761250222768997 2.552904023467651 2.9030186965465403 +2.7850821578334313 4.921325787054743 4.651788854713325 4.636992690020509 2.13629486959976 +1.1242987562190492 1.766970631867275 1.1462857565294873 2.8831315251134977 1.8519342222653024 +4.8862496703341405 4.75954191237617 3.3883047571528326 1.2298107270084282 2.1622098265653515 +4.065099676206533 4.866582173424318 4.314256818928622 3.6882670500998422 1.0169746230977281 +4.8144137281941095 1.2990543217207615 2.5401234300118993 3.2262723423544335 3.5816968166763488 +2.7689586557365167 2.0082000657937047 3.053545710892509 4.369199962189981 1.5197696342304274 +2.5124036923668567 3.622143435866892 3.1480264772230475 4.627413760620454 1.8493536796896053 +4.700602144971606 1.094404984315549 3.2167503261490284 4.679491969993084 3.8915640914880765 +2.429910051870206 2.6521195144777465 1.8075083533485077 2.0103455338611673 0.30086536369389094 +4.09277548424715 2.3491350923799104 4.128719625443812 2.394061801931175 2.4595364564943005 +4.913037892886383 4.906209953848921 2.042067116309107 3.413644451134747 1.3715943300257933 +2.228883770349966 3.593198949069637 3.0564783969475595 3.619090576925607 1.4757670452834144 +1.0392716321471944 2.036277496068279 4.771992935805043 2.8798615653349384 2.1387336944580326 +2.944583359437716 2.491853185317912 1.4375681507857005 4.673363208458223 3.267313003955463 +4.4198283691077 2.491872685394465 3.2596328835569754 3.0207600637304233 1.9426974397507335 +2.564121609013659 4.7220615884347605 4.24147979579328 4.4442618915970185 2.167446777469403 +3.4201588285962474 2.7984230759669466 1.5463477282998936 2.8617062253808396 1.454896326870258 +3.9368222943699376 3.870572267789835 1.0789446139441563 3.519341162912404 2.441295635976519 +3.3574475630226157 3.359204729526768 4.188863520966921 1.1069731016471782 3.0818909202515496 +2.994758968617716 4.4820879939994445 2.4285982673988413 1.6430869308150688 1.682015365460312 +2.622425906274102 2.570530052545957 4.696285245601372 2.0737114754621953 2.6230871810628384 +1.2272136423834206 4.456272558145658 2.0490775196793463 2.320779195965059 3.240469608306806 +1.017781745851427 3.2854968011704933 3.7854454874183414 4.348385099046195 2.3365428689541465 +4.929967418507768 2.3479807784878375 2.277959260638067 4.215827441248987 3.2283104086604943 +4.746546266221095 2.844294562769695 3.2005562827627454 1.415881779386559 2.6083758598570093 +4.653832065006997 4.964759669052331 1.3751432238350954 4.242276928555075 2.8839437677768074 +3.6672256047146687 4.74720637920265 2.3321350754764567 1.235837617696467 1.538904346994487 +2.0692732438484365 1.9805203891199965 1.4353601583946167 2.2551718439931467 0.8246018851945165 +2.879374367162323 1.2993093802831521 4.67215190137623 2.6576625084160628 2.560229067312239 +3.49437767386366 3.271616723804792 3.990574560594208 2.741064294884071 1.2692117021939824 +3.210134091832442 3.833623561271102 3.566762644360816 3.9767142281054664 0.7461899352816603 +1.6951881007285792 1.7105401456561973 2.7832773582964134 3.0985505735038625 0.31564677332534563 +1.2511993095646181 3.6894920427700866 3.1509749168710006 3.088681217026395 2.4390883456412404 +1.875171197516274 4.750385010934765 2.4496301919144052 2.688051312431666 2.88508216582842 +1.665795350308822 2.7591234148736397 2.5497511753847317 2.7535092662012475 1.1121526947043923 +3.5158434772416496 3.2987560872276536 3.4849856249679947 3.564112788113933 0.2310585268944056 +1.7527437673032602 1.2921321522417704 2.993512532293016 2.103581913790694 1.0020676452602786 +1.138703028820712 4.487467059511154 2.9538779770187666 2.5111114328432746 3.3779080428405983 +4.96648036130286 1.2132524790802082 4.857374941642188 2.0969095334669805 4.6590652287369245 +1.2681117572518965 1.9708957734687362 2.6012725922153863 3.9545332653630156 1.5248671492749282 +2.691339677864411 4.518212807310233 2.713107338064495 1.2299603719069485 2.3531235314605787 +2.623289510201898 2.1945869208938475 4.486372682747458 3.6644891964889226 0.9269726938070565 +1.7995052941818157 4.883735432760419 1.1811449891692454 4.605869865890021 4.60881937473652 +3.6597256691947537 4.183386295402583 2.334303658998574 2.168696134854825 0.5492233639362024 +2.4983194863070444 2.116110698183159 2.5541504158406574 2.770428340598065 0.4391579424950666 +4.493744488076997 1.429818392583853 4.233240114847193 2.2020522974352033 3.676053191705303 +2.5576059472130814 2.951912032213006 2.631677369789836 4.545282809598161 1.9538073262049107 +3.548224785168845 4.76518240314121 4.69254734842334 1.3234752185312177 3.5821268626832325 +1.7412566727111791 2.7601124340042134 4.592060336733333 1.0451726271656958 3.6903224095737173 +3.842605843893809 3.0657193670643887 2.354686789133983 4.847012475500316 2.610601448862281 +2.6761936640878385 2.228169652808124 1.8304465176714668 3.607605217473687 1.8327625484404366 +2.90641874427026 1.908353988902097 2.6622899573868697 4.876377527322998 2.4286451003087675 +2.2815800423467247 1.5552481997147876 1.7911936125235783 4.361489098442913 2.670950548130462 +3.319457167694668 1.4521589450508587 2.8983465039221596 4.847433692802463 2.699211648268074 +3.2877305200615106 3.824141115871552 2.3850100844212325 2.993910274669912 0.8114775221669186 +4.363603602627047 2.1104154874678027 1.5828817598875387 1.071326536187886 2.3105292530477235 +1.0461162966948758 1.7452560044110341 3.6488212173387278 1.5574800373093924 2.205108673556006 +1.907717567011384 3.4733816308916 2.9958133583419557 1.4418215279210793 2.205945278092986 +4.002263506296069 2.638621660736474 4.092030978473917 4.391518554558955 1.3961417876385156 +2.523993873528107 2.4059371760296115 3.5493564634991426 3.218209260360432 0.3515620200915361 +4.714659583683291 1.0318373308504185 4.62623453007023 3.737122232187613 3.7886277758849713 +4.935265503291361 3.8027903278892725 1.7772601714618093 1.1208412998565218 1.308963619777704 +4.90564376748714 2.6784557684314407 2.943599446094578 3.9383435867090673 2.439238054890213 +1.8659290104713846 4.761730486109251 4.126900592975799 1.7506978493199719 3.745931882090747 +3.902300808310095 2.367399039735799 2.132462332426249 3.7407385508303013 2.2231679724790343 +2.0808866685289513 1.9912897637572722 4.751983092652283 4.683307129619701 0.11288929640633766 +2.995565724335719 2.0785649501063665 4.874287760600618 2.216392233567441 2.8116363656348238 +3.8936169393806233 4.227696110786814 4.112553252465114 2.577162377786681 1.571316018760469 +3.7077991203177523 4.6962116604893644 1.1820345650451416 2.9246718317425993 2.0034330517517387 +4.16178712643377 1.2324093005306889 4.56506874453095 2.3252692419570287 3.687540678910952 +1.4510410302221857 3.381282597668006 2.750051238968993 1.1878008251194796 2.4832355635880927 +1.0107593519325806 4.289025972267825 2.5525436823331984 2.9012218587086944 3.2967572711203363 +4.893493846639618 3.9262481791001127 1.9400867197727676 3.8769673157246314 2.1649643471311 +4.035940793513707 1.6587391338295236 4.870718372702796 2.6300416599211984 3.2667598414953893 +3.9745464368756394 2.7312073058928723 3.370233183784471 2.9676025268994457 1.3069061330090426 +3.3536641028194736 1.3275155595454757 1.4072695994703808 2.797747192323968 2.4573778414479226 +1.580790047142513 1.0882219506395314 4.501884434359918 2.309755010956961 2.246787648764687 +4.392185675025801 3.2605889010264617 2.8742822705128868 1.3158867005902901 1.9259044657718842 +3.195531924530054 2.1502325689456754 1.324229794567732 4.768069101000204 3.598983177414756 +4.129520951647141 1.6944245063913828 3.513408253369546 1.0281831009415474 3.4793733280517625 +3.0895873569438814 4.803339339530838 1.216794398033914 1.5079853710998656 1.7383147127651601 +1.938071084521975 4.431729706554661 4.128622542770156 4.888487726529625 2.606861795478956 +1.3378776175440477 1.7940530643218269 2.9888674469644214 1.2706270546527976 1.777764349967146 +2.174133304728375 2.9488726389069053 3.072279701909154 4.0683266477317295 1.2618758077583838 +1.3828238186033128 3.7393257205319803 4.473413322946994 1.1382957323507288 4.083639376450627 +1.9386650732160504 3.2022695631305673 3.578260846574416 4.79378305376556 1.7533369736325524 +4.622195890023727 1.5256330453816438 1.8846134129509955 4.0646392911692235 3.7869795722341872 +4.602027425664482 3.4730387056147123 1.049680964894069 3.721632096175927 2.900678951204014 +4.052379647780999 1.0067316795582983 1.7831020575898902 1.181758460507981 3.1044461129306904 +3.7899134976422637 1.875790197312965 4.156959344399391 3.652051080662572 1.9795960102135124 +2.214304388054894 2.0673112668841824 2.3463712796285754 2.8362084423343656 0.5114170740590954 +1.3020763978180216 4.82230262349041 3.3496960926776924 1.975693472932396 3.7788723025498765 +1.327374211446236 2.5175819351191864 3.9770678778853243 2.5535504313936346 1.855531284014626 +2.4902434737394663 3.3641352277937204 3.7594065387832316 4.905587683019332 1.441325089355763 +1.3836192764759785 3.075261119961173 2.8647346029468896 1.4486844683259914 2.2060938580191576 +1.014585999891103 4.802054416792094 4.791149182462963 4.52031977725683 3.797139130417374 +2.5400095262622973 4.151737872751185 1.3544088509361045 2.5230647549223977 1.9908352229147002 +4.811718565344103 4.212172641878556 2.524904586068993 4.860997199083032 2.411800989079098 +2.4769145703315814 1.6484146752208813 2.0370477768990525 1.178041154906091 1.1934422704204002 +4.46818431877829 3.546567736072403 4.853782300628673 1.8769423515096855 3.1162402359556958 +1.5284829394959045 3.1399709147058785 2.478300278553865 4.46787250342958 2.5603302779608814 +1.0164485497660118 2.271834038926167 3.240652620168464 2.2590112762162353 1.593616156591737 +2.3182618544726665 2.1510990233094835 1.5333081204700822 2.9734938355238305 1.449854580972646 +4.301820721716681 1.0434994427240967 4.938933765674033 4.195590356600022 3.3420378485214144 +4.340663997614103 3.1283917015779656 1.0997308420810437 4.953746760097161 4.040178562397749 +2.81340194529963 4.950953810691761 1.4115218553145699 4.59650489534 3.8357847883439717 +3.8645038715434277 1.3077090093000634 2.727669642208601 2.224656092951636 2.605805556508419 +3.2234118272102625 4.418894733553408 1.6392805862357092 2.9897047424320315 1.8035589208554301 +4.9903441893119584 1.5207494804507102 1.101529153846601 4.620360300114376 4.941685955187982 +3.5293382268184015 3.7908566382157782 2.6995205872591286 1.6498599916764949 1.0817482356901242 +2.224763782973738 2.3932882409329315 2.196965562678613 4.761951126359772 2.570515791591873 +1.6172917523210617 3.9896894972655907 4.929469230223077 3.6114211945574772 2.7139494624144778 +1.5186321836247663 3.0590234701335444 2.4653657889816185 3.552663298263652 1.8854763825736671 +3.2334489958707127 3.5788633977811872 3.2993324212905972 2.960093183933284 0.4841429222966525 +1.1089626429536414 2.323524578797386 3.267076045975439 2.732733521296899 1.3269071669413577 +3.4757662848513533 1.4663185460787664 1.247645688457343 4.012280660778473 3.417760486786533 +2.3016381148651597 2.6958629191476224 1.4934159652498287 4.2616260303521045 2.7961402255332426 +3.2549119481076954 4.643031597168392 1.0603066977796187 4.207056806628239 3.439318596415167 +2.0816513385537507 3.5323995517578677 4.097753089351118 4.505655796702848 1.5070019896402955 +1.2196842272784858 1.67595970486911 1.4680725402350472 2.235995173111538 0.8932482754164789 +4.2790911760770705 4.469499576167154 4.926193678331648 1.604391127913598 3.327255256632519 +4.435025154784434 2.5861237679897404 2.8316013866508416 2.012737604399974 2.0221212208899684 +3.163596829158432 2.365661341373951 3.1514872864149006 1.828262977043655 1.545193714579783 +4.586604977751303 4.083775719178159 3.6214291371668192 4.5986363892893545 1.0989864771133875 +1.754403959330742 4.139613599939413 2.845879135498322 3.3179218211534525 2.431470609884695 +3.686395221408762 1.0583651591150605 2.5043635456328315 2.4840851169973406 2.628108297423712 +1.7007883176057779 1.848365899735474 2.5543511744527803 3.590441222411276 1.046547528890057 +2.327642583429605 2.935688162856051 3.5628350188328843 2.314931846664342 1.388157683322883 +4.195983907545781 4.376273294953919 3.8499721322986713 3.263948634669565 0.6131295156697751 +4.106644572390971 3.5463977718543416 1.2024417218570158 2.8709996929023194 1.7601028891091426 +1.2836761797444218 2.4798016017733135 4.171195319443281 2.2223543148519647 2.286634489025363 +1.6256676947912498 3.3160035932880225 1.9289740893251555 4.626385490909038 3.1832787686820043 +3.6335085586989884 4.823012420235553 4.330228761704269 2.3097703828280536 2.3446047635756235 +1.0545224757402223 1.692695442576543 2.7682175714564012 3.415204202908807 0.9087664369235932 +2.728457010305285 3.370092512488315 3.5139280394362267 3.7225197002855794 0.6746900018805378 +1.3940980474959321 4.353452755160724 2.166119518263584 3.320880552479649 3.1766733121178077 +4.270631407735388 4.490975753768717 4.290171287984693 2.114696798626497 2.1866048762127006 +4.717665036955344 2.3127989951881935 2.371641251898449 4.8987958358507875 3.4885370816484262 +3.526234452954766 2.5997505811195087 3.0763861320733437 4.51839597333168 1.7139908830144754 +1.245076963589736 1.6691165649522288 2.7519791484131213 1.9399926502411824 0.9160412964147359 +2.854713655287698 2.6138462650169116 2.42099213931402 3.5092548228467666 1.1145998241816453 +1.9988578210921166 2.3450628423505666 2.063022236949723 3.8041269184165136 1.7751910963527668 +3.3419329771649817 1.191956512536768 3.065124993871644 1.1288935434357157 2.8933356231368066 +2.8420245098107557 3.4974504659097727 3.2227498823432277 2.2515946158969267 1.171633788977894 +1.8403320003290604 2.0689858359807562 2.5404878131005515 2.0069472898782807 0.5804722788200374 +1.0431537362826555 3.976516102910917 3.801224203091364 4.911021943375564 3.1362821617786354 +1.1129123108284893 4.098405645578493 1.7288778384886232 3.036790464747016 3.259418029305665 +3.90488943708075 2.9432572625286775 1.0468322617684915 4.7153180578634295 3.7924298906221137 +4.476002157092775 2.927422493286699 1.528144846471566 2.227711504874266 1.699262335456906 +4.019740269485041 1.0948052602757774 4.266591506812615 2.3912802642280417 3.4744837119580936 +3.94163927427599 3.924902272457261 1.6425994141399989 4.6794041999813185 3.036850907525528 +2.747106306633702 2.8298441460115917 4.100160337352852 2.3239435339197883 1.7781427622277388 +2.643699552035095 3.7675126381429034 3.9129966810626535 3.5464337917279765 1.1820846857753222 +3.699466011300564 4.503377613288639 4.251898277641423 1.0499085267203272 3.3013652068219863 +4.68604756835908 2.3825268058836606 1.3662458860737443 3.846142112634397 3.3846850957903163 +1.8353125882397738 1.811841889958223 4.346828764720632 1.616493296280829 2.7304363467948165 +1.4987388452716837 2.671682529329892 3.6604959934974177 2.868776431187569 1.4151384212564297 +3.029730759780142 4.892911370827356 3.5343479895440972 4.554992558213851 2.124419291226978 +1.239617927563799 3.6433032831648813 1.8216809373491234 3.8559352925399506 3.1489512651586002 +3.8209900115649917 4.209926405403675 3.1395221040528876 2.3627436933699055 0.8687095128726398 +2.272186526596559 4.770730464269684 3.9324059774323 3.6079572692511834 2.519521536467494 +3.857887133384483 4.5484337101151375 4.676862432094984 3.9191993620024452 1.025137991890105 +3.834012699004878 1.0506851251108702 2.006622222234946 2.041497217354307 2.7835460565406995 +4.363082611303239 2.372380901010075 3.165529950789844 4.489567879533025 2.3908094311581296 +4.107852892428344 3.0089119373968747 4.469200876052333 1.5431430318131318 3.125617655836881 +1.3566769621915986 4.504506054486438 4.995351307050625 3.084294024098389 3.682521952822893 +1.6064983147248362 4.611276173770997 3.63808813113001 2.5557827654768044 3.1937556084859953 +4.072877203599722 3.777035992146497 4.884031419103855 3.052983736013814 1.8547931529266326 +4.3298012130148 1.775420657045799 1.0824257561471908 1.9261745524170828 2.6901249145568307 +4.698731362294025 1.475000571023667 2.1995558037824456 1.9569813382565542 3.2328443491621712 +1.3376355923897045 3.677203745557593 4.327649895706305 4.707269849202307 2.3701667562451614 +2.0806619701999454 1.210972178829174 3.745159525255345 2.402397393993535 1.5998032611434743 +2.78823595965167 2.0939132346506515 4.00522066500762 1.8245166272623017 2.288570328106955 +1.158081278351458 4.675134859302327 3.59531587955788 2.6155882955935756 3.6509631647087133 +2.327855044400989 4.740318203189787 3.2363412500405704 4.306810660262752 2.63929597634192 +4.552681042028708 2.222893530172075 3.9555859853021507 2.555975524010483 2.7178703599988348 +3.1058446536006747 3.3585939991731073 2.638595245025291 4.242783567484878 1.6239773414684688 +1.6718043912271625 3.192562121177971 3.2744999674336657 3.6370302221456403 1.5633720794445145 +2.35789481799577 2.400875648547978 1.1872773527457179 1.0332505440223754 0.15991125539015305 +4.92876517548058 2.6170890207502815 3.617035882772673 3.1720632353736815 2.3541128480346742 +3.8455268286703954 1.0456495566342676 2.7685219314026073 2.6447769757012947 2.802610488906011 +2.9067421404557345 4.558597197206218 1.007321172394581 4.526679314662388 3.887738013557351 +4.750611968242107 4.799223997785228 1.8860851701176609 4.334817502878502 2.449214806203133 +3.957776809896202 1.3665607494482503 2.4963250329763977 2.1642957277721857 2.6124019850393996 +1.7886530842061807 2.0720328559952375 3.6460377381685185 4.927979029365105 1.3128890163048772 +2.497987017756575 4.989547097540392 3.0603377846294713 1.4819639308943149 2.949429716627794 +2.267878249915082 3.6759961874763656 1.731935885420556 2.6409043821099876 1.6760130829011115 +1.7998334747964586 4.119979816508882 1.789820717170179 3.2459766969598576 2.7392461160762425 +1.8510628905873205 3.995812758039625 1.9864771219131567 3.9316537635705235 2.8954557777983956 +1.7455396741125173 4.7605820780724475 2.5227675183332843 2.114576970264999 3.0425483104149325 +4.243309449286603 1.5026449739870014 2.1655312798685915 1.8624134819283662 2.757375956520505 +4.922018061514693 1.4685514130888127 1.3942796932620825 1.261066755504272 3.4560349504274335 +1.6649197417045416 4.97916887565626 2.5689810782511437 1.9783595153786786 3.36646419146701 +3.638329016206849 2.8457735844861203 2.495430917552104 3.932901639577606 1.6414829237706219 +2.131590398252252 1.7065978801375277 2.5935460210812886 4.654228930900408 2.104051495395036 +4.99361744423949 3.36693130529132 3.645956935815093 2.8858519223329844 1.7955131372860356 +4.177565150729794 1.2150659585375565 1.8102435451581482 4.376115073056404 3.9191961116303675 +4.800713278637632 3.901242056946009 4.953666824597338 2.0560843878009125 3.033979640123271 +4.352778472330678 3.308371862251834 4.8511258042825425 1.828694720783239 3.1977921792510466 +2.8426976874184913 1.7676961309223027 2.5745652446183316 4.825418665464316 2.4943875939002136 +4.505473774388724 4.692168321454214 1.9806807884299147 1.8347977221618526 0.23693189512549856 +1.3650650755532276 1.6126468860761771 4.64977083139123 4.790985210724475 0.28502325138889173 +3.803388182054187 4.165126235835853 1.2765192172309336 3.382021790906504 2.1363509794292224 +4.694767144739492 2.5680031974535105 1.7721400094618533 1.9380572336200492 2.133226057582227 +2.1991089560721515 4.562205898711931 2.7739848202938 2.5283377128427134 2.37583030995746 +2.913780667051455 1.8148191122478878 2.426641245882859 1.585507086873986 1.3839158834220517 +3.1528754934353143 1.5872215929599554 4.160075086838589 4.5476240250731905 1.6129061707366836 +2.240350036268044 3.85171292534022 3.317860679010224 2.522150504750626 1.7971213208070482 +4.419613494660029 2.306092981447758 2.9844363905199316 2.2566062217505984 2.235331231459861 +3.277655444972885 3.73768780071819 1.9724650422912444 4.3400814813323345 2.4118949750663248 +1.7719956182336052 4.41683880650066 3.843797669053641 1.1213071511902077 3.7956751850466532 +3.258120224326655 4.169671902191208 1.9375090354587838 1.2118049722567075 1.1651492817513494 +1.3326477387996478 1.0796190716493301 1.4982033525906489 1.1744347176958776 0.4109131725090958 +4.585472516482723 1.1673144314409085 4.191947725506317 2.5658646664775993 3.785227973213359 +1.9248120045932615 2.9029412468326012 1.604518102500613 1.455020491428185 0.9894879232411419 +3.8246094264909134 4.0152882509852725 2.6530315615407227 3.116690577202559 0.5013363111874637 +1.8325962474616664 1.7986120518795543 1.3019174406505702 2.6500214555660158 1.3485322986790145 +4.649804742804935 1.9056959638087956 1.3309526957568494 3.126556719282101 3.2793790266243636 +1.7987589424348585 4.605345425348155 1.5588803260984934 3.834994605663818 3.613533436916393 +2.080699193535872 3.958694045334469 4.822375633337275 3.7911244921667087 2.142508711662016 +1.5335808344347739 4.691783968241853 3.205009207140034 4.11792911119818 3.2875020586479318 +2.169604630065088 2.921832532904619 4.04074818403479 1.4017743424885074 2.7440899683093303 +4.112251951209467 2.912563185492188 3.363020865979421 1.7780645838320548 1.98779766347248 +2.3306668718646715 3.8333363869645587 3.9676817009283654 3.01381268118692 1.7798544261913771 +3.8608392666353457 4.892355611012971 2.134919201033408 4.315368901356804 2.4121332600746928 +4.422283204205087 3.451505638983709 1.4187886787961945 4.301912434901272 3.042172196663857 +2.6064333899675947 4.220966994240367 1.8625682786798285 4.513102701717246 3.103554653463078 +2.9259193030748007 3.2977534820031775 2.907769808705919 1.3478587693443456 1.6036156357872808 +4.246192631356936 1.311538085863892 1.5396714581781845 2.9873056979102257 3.2722839414432774 +4.664686073286713 2.5821561733464287 2.0860213697474292 1.2780970323127199 2.233757488888309 +2.1749686406889883 3.424475995568387 3.560283425644832 3.9962119430383782 1.3233677879465886 +1.6851244712700062 1.0573384546265001 4.452433846311525 4.625208982184539 0.6511271229714355 +4.999453393910528 2.4888083396282026 1.0533279702957286 4.794043549224725 4.505140578387582 +2.554972100163304 3.530314144743827 3.789449393325337 4.571860926835544 1.2503839057250812 +3.1489874831195666 1.708543862972272 3.9235094083236848 1.669387475022007 2.6750595344804453 +4.7700655484252295 4.3369600491533 1.3173268447831892 4.974503667457944 3.682733045688895 +2.1973228447067243 2.1442531029829355 1.163114620444266 2.9676007114135663 1.8052663099909374 +1.9350346683883095 4.335347154378558 3.7661554474698202 1.935598147761847 3.018681841121193 +4.187903805166206 2.884296187993327 3.299186015878788 3.5178950219951535 1.3218269360652173 +2.58842513037678 2.413704728737091 3.4586484566257116 4.396483014815263 0.9539711092500258 +1.327212853305193 2.6064887308069022 1.5978422159215526 3.917668852963707 2.6491776831100022 +1.237605121000851 2.240717331827576 4.5455323555616385 2.1275506206547474 2.6177986511290396 +2.3706590696910212 2.37086674465939 1.38212711118345 2.8407987864625612 1.4586716900627301 +2.753903441377949 3.735403332913113 2.2261333040132176 2.728240003261215 1.1024759292217028 +2.2856514425397783 4.59113205332352 1.7062428565967926 2.6399545393342203 2.4873798168313845 +3.06762696080555 3.0858460539048105 1.4378816446434546 4.713384775308105 3.275553799641717 +1.526861957791903 4.804535259459092 1.6194754876092516 2.5745151497316865 3.41397759639527 +2.1306080957487845 4.477666872949572 3.5226726879617574 2.569576903134728 2.533194915258261 +2.2590390601514323 3.3168529550575285 3.8611273329973317 1.8997921001658429 2.228408878954344 +4.849135905463715 2.2048763384718884 1.3860564634772876 1.936881260103727 2.701021402026715 +3.782244277456587 4.76436747990136 3.698241348238866 3.260737766541876 1.0751629498722834 +1.0229696646477575 1.31659018307258 4.947591144483955 4.2101809784337405 0.7937170540150097 +1.9645735981918477 4.287419267333662 2.735690356186232 2.4285242562380223 2.343067010481833 +1.5538763282729495 1.6545527232181962 1.445209633250979 3.8479007371174827 2.4047994255443443 +2.1345312068525706 4.632525827577091 4.1082006540429745 2.8546230498117495 2.794894261863718 +3.2210690475615666 2.232748963169562 2.97788892680129 1.4388662945881454 1.8290345135280788 +3.0720528071005124 3.387909453711093 4.678755922697743 1.0852278233555381 3.6073826553292183 +1.4741152388605858 2.4959948682286677 2.0813453997051843 3.064168406449321 1.4178078288340186 +2.6005033748633717 1.281863491797051 2.7410552483128225 3.100851513587764 1.3668447218755155 +4.8248698935872465 4.072107594635877 3.273340978223781 1.8321147126558168 1.6259717793631998 +2.5125061831569235 1.020769463100101 2.881700729179087 4.274314831196072 2.040748019502276 +3.776218553176942 4.620317736446324 3.3552060882186248 4.090129704569604 1.1192033564399453 +1.400633668929507 1.407608286807168 2.4704568271749365 3.5854269969511714 1.1149919841798799 +2.2441486660847243 2.525742079170728 2.8674182768320913 4.388448192258146 1.5468764830827364 +4.937533610473768 2.770194089486647 4.575572058425015 1.0709025739708138 4.120687903068753 +2.6822997730190115 3.904371418908491 4.81756492335117 3.8616866840783537 1.5515032439548169 +4.908464800943412 4.3308123482897765 2.756900425681966 1.7048337386396208 1.2002194257888918 +4.266706815740066 3.5212447289921394 3.144365586596117 4.600450098062753 1.6358165628552623 +3.6369491679075643 4.857062279458535 3.0690722030712165 1.9626975452182278 1.647040038529091 +3.356335501931176 4.234807653991016 1.1530749045842263 1.745576760623333 1.059609254090598 +2.9275570569051785 2.526456322434177 1.5989975818423883 2.3906844392190565 0.8874964108863324 +2.414878826990819 2.2370120349523033 2.237252091058822 3.7934578011278117 1.5663373863128598 +3.5985701065214135 1.8817792057895022 1.7748682388152086 2.02928105288583 1.7355393619273578 +2.683210884945129 4.68502484522987 1.3924668107995029 1.377003522575579 2.0018736835458864 +1.1614800299707841 2.488844577528604 4.7887877272660235 4.134422842027535 1.4798952818177902 +2.738818005527264 2.117678836238393 1.8831280694556733 2.0388376907814276 0.6403587695958249 +1.7102831298034515 2.5734431822625483 1.5072936930607002 1.0348883768989507 0.9839776719514894 +4.715486696509575 4.6329064159656 1.6018294280523477 3.5550861693881655 1.9550016369068695 +2.0676287062881507 3.8462819154233787 4.784843525296179 2.273564878896205 3.0773572555411133 +1.0596807544119033 4.349658884854179 1.0610441717959924 2.530019927467553 3.603032871004549 +4.095558581997883 1.5389591739649129 2.893198705556863 2.701185650837803 2.563799825715159 +2.231446468401023 4.049107937230515 1.1187549780803194 2.5475856035523874 2.312022960862259 +1.9189689549040985 1.8806858256979129 2.5023659717189157 4.831409242609035 2.32935788483873 +4.242002025094205 1.369625550531921 1.61503587994169 1.2001204902807299 2.902189068995396 +2.2838764532265574 2.958958679737617 4.561572442657145 2.6541755690852615 2.023338539607973 +1.5749201219815054 2.6768519319798205 2.996917960612707 4.332782702745111 1.7317009912680181 +1.893947046508282 4.542046178972738 3.7815338760015353 2.3545069578940616 3.0081281289802666 +1.9501042009476661 1.1316229110080647 2.206162531511693 4.8535834675233005 2.771055617344006 +1.3703377445402705 4.876057327191992 2.4700360570246436 3.9398749748317248 3.8013808328669274 +2.3046083195332536 4.801343531485033 3.431619310322973 3.6758503729090575 2.508652134221049 +3.5437545807433866 1.5438842485198454 2.0744318348861595 1.5404570705855916 2.0699300458270913 +3.465604559478213 1.2295120172740392 2.8977061236250563 2.8913045383150626 2.2361017055571524 +4.1653479212175375 2.470393920820706 3.2358601900903685 3.471979227806402 1.7113214962224859 +2.865773532607048 3.6572534159654095 2.976601674624779 3.3150150278122745 0.860792659922568 +2.9539958403822264 1.6029332027183028 3.9061277759778514 4.191847910653275 1.3809439692653502 +2.0390900329726867 2.1355022633086453 2.4899300551338546 1.4071700411178774 1.0870439577635456 +4.929569552432913 2.368521747402391 1.2924960185447505 1.681981644383057 2.590495109508279 +3.264970777188421 3.591962966132702 2.2704103422385082 1.3162425323337343 1.0086427023922024 +3.1302422632029443 2.5458788806163923 3.7248323388753577 1.2863084473933997 2.5075644223501636 +1.0069802706979352 1.2876762143340414 1.8341518142506836 4.538044399541521 2.7184233161089044 +2.234700917731875 4.842279354222084 4.034877139972175 4.357392356380235 2.6274476906807225 +2.415428284939334 4.1875260607342915 2.5554824353459575 3.204013772227247 1.8870409168575197 +4.080858189639468 4.262039146650961 4.993781337700348 4.760623152467687 0.2952783068980659 +2.8085343243882748 3.7667909121747902 3.39224977037095 4.049961400446628 1.1622565449904168 +1.9430213245846075 1.020743300125639 3.812905741162503 4.061082934693833 0.9550856892389421 +2.763358479092655 4.903957761315975 2.2152901860216607 2.534401438912365 2.1642544394725096 +4.984096461206584 1.2020293312960244 4.719989222673783 4.184162796626593 3.8198353019469837 +4.732347585942847 1.6375173058385335 1.2147481261365471 4.509602910553197 4.520402914900821 +2.9578751589493613 4.43542881527417 4.137169668458048 1.499684489371091 3.0231594197498364 +1.225463694106121 2.620769217455883 3.74058479157458 1.9020427711336194 2.3080542160914423 +1.2415672983744486 2.4902889251649722 1.2920601845643152 2.890202653138725 2.0281432521090514 +2.2614244882543098 4.6134689424801705 4.421981482617568 3.6868159966023035 2.464260823549871 +4.264916703736544 1.9499184372905543 4.6062500802700415 2.163207858693001 3.365660747915039 +1.2300516019344006 2.8705755024461967 2.5116739886722854 1.3657640758090546 2.0011067429171927 +1.0998712300226479 3.6421413234641125 3.0166457193958522 1.5381674372983523 2.9409242184457676 +4.3945903275537574 4.8823642953512945 1.168984274024142 4.207063396403937 3.07698686989414 +4.878014060556062 4.102541137804719 3.5213699719233422 1.7716085272226945 1.9139026535540955 +3.72531498877042 4.2300077842196115 2.1938247364525125 1.7055693897634825 0.7022165629980143 +1.8695710986428953 3.8898894142172504 4.329514049404692 1.567603602998115 3.4219636775125153 +1.063373181679736 2.3448114504352144 3.3968375309194783 4.28725145852539 1.5604233397080494 +4.753599578484917 2.3526932337431625 1.4707270492171673 1.0482327730682686 2.437796687502835 +1.238408652139424 1.576386052112547 2.176497616849987 4.0179176939461945 1.8721796450195678 +4.337671130422032 2.455189779986684 2.7036738380729646 2.817782647778594 1.8859365989315031 +2.1650591676059845 3.7437183394897064 1.3687091519402679 2.645797490774622 2.0305465781801924 +1.995492103660979 4.754652345476862 4.6816168704825305 2.3469816132868515 3.6143446188982336 +1.8681124843321086 1.8663173948333962 2.7684858989809586 4.153110148952582 1.3846254135887397 +1.2762169391999647 4.636678474214749 2.4897703560350406 2.366645215369131 3.362716391338693 +2.5052903848580734 2.923713123102136 1.8758221291846242 3.6159695735110313 1.7897459919986929 +4.673761975680703 3.790570114731329 4.303935756603095 4.221462588773781 0.8870342082800532 +4.3273778938317 1.2168338185838907 2.3434997852626305 4.891248935021551 4.02075990008811 +2.0381229643642573 1.1309463317896324 4.033812204512831 3.5430354633766004 1.0314219564900364 +1.4192006912686361 1.6809049772044595 3.5798125445264266 4.278551304020281 0.7461400587665763 +1.2043603321001006 4.408198802237193 3.482954510645386 2.803694341245396 3.2750534836035405 +3.722028426904335 1.7527439553519688 1.6665493536720057 3.6176631159501667 2.7721699520860046 +3.7215585603019474 3.685053548947512 3.0568958587264787 4.7946878140163385 1.738175335150094 +2.805279611062656 2.691524143329631 4.915954747897935 3.4361387547005524 1.4841818218001173 +4.591445897689287 1.0562712248565123 4.793544797460269 2.81042308853275 4.053422218306146 +3.252034409237085 4.019140357027864 1.857668958804732 1.984958585069458 0.7775951286438227 +2.3872113066645033 4.562161360709232 4.346280355094171 2.135924997689038 3.100980255273926 +1.2152823630132876 4.595402648528918 2.2766912880459755 1.5956806844838853 3.4480412681286556 +3.867867273920682 4.992038700230694 1.4349177433820541 1.8036732916724691 1.1831069478820802 +2.9831523849127093 3.8737891743614457 1.1854602328664474 2.0843761173376754 1.2654183727424866 +2.9255449821085926 4.374624333576633 4.087794283367994 4.011381445335246 1.451092653370988 +2.244610390639377 2.104292830513287 4.790972842750455 3.1992894569163965 1.5978563822884433 +3.1083944846066567 4.826360874761354 2.217033103673251 2.0262746425886013 1.7285246044463893 +1.3457591058478107 3.656901224412214 2.2446916445321996 4.156405425455413 2.999337838986146 +2.641289427610588 4.365012017200775 4.392510356982491 1.1205318771457629 3.6982513081696013 +1.3480722915521488 1.0082337709207687 4.460636571736872 3.3704364295039126 1.1419398277622557 +1.5732538340009148 1.8740854446479531 4.026450025795571 3.718391035384474 0.43058100229526547 +3.1530586514562855 4.731747509521773 2.998523579110525 3.6734166520070612 1.7168981246491715 +4.387251080479031 1.7106220590996624 1.1821513490597262 2.2040550909091037 2.8650707104181623 +4.8575114206479935 2.564636682539316 2.4929118582202188 3.6681560333262966 2.576523517412116 +3.6727176849945695 1.43842796520376 1.597531993929203 3.304303356230786 2.811604352524675 +1.9439417313562282 2.6051928461649805 2.7505594044715957 3.0329288193974975 0.7190170535678648 +2.6577693332400005 3.9823847851967797 4.59460084502078 3.12967704050159 1.9749956578710854 +1.7537829906109756 3.8220914077089327 1.7044656806575107 1.5935497673557975 2.071280292008257 +1.8892242645604354 3.119295676786068 3.0061527014488045 1.4042784566259883 2.019672442600886 +1.3693473991233063 3.3659288261461926 2.1941043125341104 2.346410193613526 2.0023822003164438 +4.506119204155505 3.214483517465244 3.9351491226460076 2.689742997174455 1.7942572737748304 +4.721255233335468 1.068607209212884 3.127037783476458 3.194473443348336 3.653270474020363 +3.501246596537121 1.0462494151085893 4.068329675560844 3.1727860490685256 2.6132373691980315 +4.675687119426591 1.3475411001259063 4.84924847344816 4.741912518591111 3.32987641407186 +3.4619822116447696 4.1599164747305615 4.775363918576097 2.2358960668366916 2.633630423124524 +1.4676056167176545 4.445120521638518 3.5945130240313152 4.932834166590183 3.2644599078018977 +1.397030975844182 3.0689590532541 2.5529378633359183 1.245139694040588 2.1226586036486985 +2.3050472913464155 4.924605640619935 1.3036230374714637 4.978481215737194 4.512944557117351 +3.322546944299351 4.38268498917517 4.771132222545181 1.9457881088280926 3.0176915076112274 +2.692126893766864 3.028691363842333 4.476594288914692 3.5822304993666187 0.9555952231839435 +4.728802690347221 4.318603233382433 1.3463929784783781 1.1003936544193884 0.4783087516779167 +4.824742192482216 3.0134727685277913 1.5911115501404565 2.6679880654552743 2.107216162473318 +3.6909284868115533 3.3881646765324414 1.4742822137111875 1.7842695108698186 0.43331056900846476 +3.4236923049207224 1.4822488379229495 1.738602664559063 2.846235574600717 2.2351853164683404 +1.3624489110950813 2.7358332898020445 2.9236469749146936 2.550736859338748 1.4231115929452536 +4.581600915725057 4.253862883471247 3.3937521114227334 3.5070822012962397 0.34677936365409073 +2.433791888825917 4.758997189506271 4.552722409526479 3.456388574879316 2.5707056555164316 +3.7438957594282014 3.5574245756293035 2.5147598931701083 3.8337241682884984 1.3320804260351335 +4.804336395949912 1.712851824861462 3.2214553748678276 4.759879162083191 3.4531180985231305 +3.721991069630818 4.425019007934557 2.820022731378825 4.829185453660811 2.1286106094453174 +4.777166371458771 4.860720397649829 4.904310888436402 2.590036133134372 2.3157825714693097 +1.8356033954480107 3.1411492059175745 2.592403106808386 4.916737229552017 2.6658917790084864 +1.9119741019926253 4.047951967354589 3.0835843107138765 1.5336711992373386 2.6390589410703074 +4.903131168548097 1.6631474533160118 1.2453324556303698 2.463758029056171 3.4615105594158027 +3.768894969709149 3.446510228148 2.012158381484051 3.6703942145747086 1.6892832798963342 +4.284002122321656 3.4688347214047925 2.8795991816495063 1.4805749144540008 1.6191870774309791 +2.0254848840813704 4.137773600278491 3.949242596343466 4.714554215823421 2.2466565147980924 +2.4421465310906614 1.141599502311263 1.2583849579641058 1.1481758009967575 1.3052082716357474 +4.514954272995975 2.700670486125762 3.3395441437281725 3.993920070276988 1.9286869918539762 +1.9687425857906509 1.2491848810433686 4.7751487531501855 4.669937528514721 0.7272088367521886 +1.8587736417551044 4.052996739463548 4.886810268087736 1.6887379785537884 3.87843800667255 +2.0080039781788086 1.5252404598238436 3.4586788756822737 2.762628148067434 0.8470815958735098 +1.155975086142187 3.2819748887132367 2.583490145435326 2.3026676657094405 2.1444664664320445 +3.830473456474208 1.5889668169048172 3.9565327282889604 2.736502045142863 2.552024075719427 +3.289359837834333 2.118648924506541 1.61970496931295 1.1302284695294262 1.2689173678475376 +3.7837187317139156 2.4321640106987807 2.8975961132344437 1.3427552246875423 2.0601529925215787 +2.5275606496901273 1.9015770844927 3.5604209446270834 3.4531429317491313 0.6351094361953094 +3.3083183075367852 2.205029596711949 3.332341167077991 1.254288368736014 2.352774832433068 +1.2853245923243022 3.90538598465187 1.598779137595315 4.124678275904895 3.639352711194472 +1.5137799329069206 1.2236566425820734 3.5138916982888735 1.0077202165784578 2.522908444499621 +1.3923732662238337 4.387905928407598 2.5006367972018873 4.98285913539638 3.890326935675392 +4.958850254732404 3.661996909615058 1.3142527956757988 2.732631480281308 1.921881029534686 +1.9381642283147733 4.315558449045482 2.710825850738137 1.0026223836613837 2.9274498058372944 +3.0231887943031897 4.423398405019723 3.082321626523369 1.341915457934959 2.2337413873596774 +2.4944184243744454 2.0869387239180006 4.475404811147543 4.88708825853962 0.5792434437615148 +3.60637860098053 2.1916985094687327 2.420237035345275 2.5252083890239465 1.4185692603510625 +2.4945401650639485 4.756951541105867 3.6481848977074725 2.96903101787814 2.362150551283961 +2.5695689930835495 2.823269646869035 1.773461380809915 1.4823594502747297 0.38614033160561534 +4.920039861914816 3.5641617773152707 1.570475792032266 1.5214398511353053 1.3567644982814748 +3.6037640464625724 3.2710331856129677 4.57596769933426 4.451508576300569 0.35524625130750437 +3.381145022441984 2.4612392806873093 4.719904647279002 4.614635663337481 0.9259093544690528 +3.798061866258338 1.7046534981704164 3.93733984583218 2.405254321115052 2.594155864752211 +4.566469703908819 1.3211457428435267 1.5634619566293408 4.42896851242301 4.329348153424602 +1.1916328381379024 1.5132888338038857 2.323525934061761 1.266422814909736 1.1049568245270107 +2.3138847228542527 2.964560977598759 2.5406485571881645 4.773659766278223 2.3258801878880573 +4.1802822230138785 1.0028527751312049 4.532798745481864 4.238256726987087 3.1910520047362074 +4.473970232957198 2.336731955712657 4.099169086020824 4.429052415065695 2.1625472167101787 +1.9393603744115606 4.271657849844476 2.674378881638016 4.9956047869978875 3.290547251996924 +4.385060067651646 4.0181745655094545 2.484869360680022 2.0262107589208616 0.5873437533930163 +2.2665500862366437 1.818251656141285 1.3700040589122713 2.0708674170244072 0.8319741156852077 +3.4644012865109586 2.4038497683051463 1.3936465967685447 2.3960258648778296 1.4592921982604987 +3.9758442447824787 3.8801491210899384 3.7936878379889563 2.853258621754117 0.9452854952058689 +1.326818338084672 3.3075900873423083 4.758533662133239 4.851246144682127 1.9829403236299206 +3.41236672722777 4.4527972868387256 2.2466927651258106 3.26269495453162 1.454220134040842 +2.707096160039802 2.0043719055626257 1.3647000893977816 1.6499588062527146 0.7584153963180242 +2.9744674973927054 1.332368819000601 3.9142567081856323 2.495834090592858 2.169887276260183 +1.3579143635611883 1.7591806289328331 4.560670980416951 2.292969702392721 2.3029293740968333 +1.114278329728918 2.151025674040906 1.0480993685442344 2.9003463091433956 2.1226548906727425 +4.896220409289519 3.524454258321255 3.086148708755376 1.9722247651056213 1.7670792073867283 +3.3688730333269836 2.9257470274093156 1.9418358380280676 3.7435814289692875 1.8554373693543715 +3.5130876951953334 3.6040442413326574 2.347590366772921 4.441705967468927 2.0960899890900735 +2.4077315794412297 3.2559869418870306 2.8209214160071774 3.0905971872537545 0.8900911085475988 +1.7898897457068013 3.2844300339165216 1.8994404881780955 4.62464592267571 3.1081176511350606 +2.9556537387234805 4.038037807550596 3.642196810979475 4.224229695739716 1.2289497757813663 +2.0344920087525966 2.7635844458791685 1.900230461302911 2.8454743624275842 1.1937595295906773 +2.9444909673278934 4.264925060019062 4.970874837096263 4.127314044679892 1.5668889570238487 +3.8411579344093703 1.176431966518357 1.003465896551229 1.1626971288904713 2.669479175664229 +3.8075249373600095 4.766118594405345 3.9228753378070933 3.8387824610647945 0.9622751224293111 +4.028187714045734 4.697364740478623 4.997080278728117 4.39655217395072 0.8991284098131346 +1.0128285454657706 2.1513269228327125 2.845019069474702 2.4534933821782943 1.203939748940986 +2.3582228640831566 4.674084290990628 4.830656782837976 2.2827614973118004 3.4431068142949646 +2.7640520447074355 4.292391589401584 3.764811553099449 1.18207153262094 3.0010611085509815 +3.262391322024087 2.363646338992506 2.959198463126758 2.5109458092915022 1.0043271310657629 +2.2254073136232972 1.4297900177793021 1.1988000487442325 2.8083270018287063 1.795434179843834 +2.454460992127805 2.36454484098622 1.5230908202658155 1.0223643357698977 0.5087356155330163 +1.891217810796332 2.417981567819517 2.6350070182830585 2.66829034517689 0.5278142055328775 +4.76826924041277 4.219386090485122 4.404078892064927 4.14978136506234 0.6049297021258985 +1.6442867304430715 3.6426115798502376 2.4261288815872133 2.7497319017950597 2.0243569641853716 +1.5257972303199216 1.1534912427455208 3.1169084483203333 1.3989904742247208 1.7577980299523956 +4.98679001967786 2.9645216281892695 2.809978803560632 3.5270652343186235 2.1456426534703046 +1.9988658152194732 3.9245848284008624 4.824555386835141 1.8924793133276103 3.507914454282436 +2.925914927344592 4.321789578547236 3.238402518838937 3.889917160181253 1.5404341497621734 +1.383407717281516 2.3807867104868694 4.418339902118403 1.5981703834338488 2.991340998650069 +1.5257024314088437 2.149581315261869 1.8654873851155074 4.284406153041117 2.498077834564097 +4.68784708542703 2.4806278410963802 2.613000791229969 2.033342675867981 2.282064925292131 +3.0291799424574632 1.9300897953434313 1.4227791939630574 4.7835542422510295 3.535931005644506 +4.742007443947258 1.6302936193986417 1.2505998820798379 3.7965058509341434 4.020497497590933 +1.0620847124155457 4.914631438343792 2.9216228188474664 4.510727591251088 4.167417696024293 +3.5193571139927524 4.2492337949724766 3.930190213480548 1.5994961235237586 2.4423052451316325 +3.0799027811747126 4.897400429867016 1.1272331275582332 1.6675694980996032 1.8961173740915598 +4.073866478483662 1.1010706796443328 1.3143725926113352 3.3164011407141434 3.5840805193264567 +2.7275993144282356 1.9132845026672567 2.700090254887271 1.738933431441366 1.2597345164398495 +2.7711887857095854 3.889997627662579 2.973715949007651 1.5343299823873924 1.8230647782609193 +4.41378150958008 2.303717901683868 3.165087651865228 4.825903935912262 2.685270779404523 +3.906917610587927 1.8832685169993972 2.3615967235282804 2.3346298719893257 2.0238287637701964 +4.428166485436128 2.437213636442722 2.8336608315800276 4.517789562278338 2.6077160176059166 +3.2380503645784797 3.0223378568873716 3.7643481941754593 1.8783521187694392 1.8982921488594153 +1.6403493232336634 2.7739914887169106 2.847213907108738 2.288354430331405 1.263909994479583 +3.5830871489070724 4.29299462715004 4.537392360556593 4.069066136829199 0.8504693289566946 +1.0406500865975072 4.466234012072119 3.48020347563524 1.2068003192413084 4.111324256486217 +1.5158196200378398 1.064487200479924 3.430862122289809 2.162631099724658 1.3461466783157958 +3.7142533883217133 1.968236542649358 3.654322500296943 4.23431652753747 1.8398282248640296 +1.7576219905203505 3.9965082546713844 1.8828620624725798 1.6627554627629624 2.2496796703175104 +4.461792669076165 1.9054664022517103 2.1509162876195616 2.496939593568237 2.57963875585639 +1.6184882383113566 3.7752689172100236 3.4698236333945474 3.413446906956333 2.157517377022601 +4.339811222464985 1.0190842413767847 3.6031979814397874 1.4588647364458907 3.952896754092271 +1.530303488845925 3.8238021811439347 3.842155730386372 3.3517496826017954 2.345343118453325 +1.8914300523330372 1.3358616210736387 2.8554563478251858 4.671248907669253 1.8988835936405104 +1.0872167324088884 4.092715901152417 3.0927330250495806 2.283349054107663 3.1125757285142073 +2.7400241578898337 4.840292588935501 3.6533581679845946 3.511352576560896 2.1050636737264323 +4.301806130079987 1.3453056028063353 3.2277650813022625 3.7605907021752176 3.0041302418550413 +2.3650449786939602 4.3774132626793 2.988250635694132 2.5205359976046062 2.066006556880524 +4.582578071323028 1.4183672388288135 3.9169661109575244 4.065856478176781 3.1677118767218104 +2.9316906534513474 1.1618975816157828 3.4713212370458786 2.8419768288769167 1.8783614937521225 +3.9482441508826414 2.177247188487881 1.8754166658593512 2.720805068254224 1.962424977346962 +1.6423124574318209 4.8161268882260515 1.2721587202223246 1.531790922271715 3.1844162607075606 +2.8385718488861924 1.9288247678020127 4.954867927968053 4.436967903294267 1.0468334094297396 +4.584718660109698 2.022930119349222 4.175858389055027 1.831752041896705 3.4724047998987126 +1.7144766171969703 4.641047479741871 1.7695973279084516 4.742818012900694 4.171913021044727 +4.527718615762964 4.8691924854471225 1.7242202123892283 2.428168016588576 0.7823981816914944 +1.7163625935614544 3.06750917474618 4.026616141777397 3.3898351927237607 1.4936823828795804 +2.2940750195867508 1.1489191616671608 1.1264186032815995 4.813520965259907 3.8608426239143143 +1.0069343115424934 3.2406347621431197 2.186666599711316 4.689270528653951 3.354466295578561 +4.828507892025369 2.0299688328222025 3.0725236240384697 2.2127249567175484 2.92763976851876 +1.8738793462983496 2.1087070839555926 2.7016249688128653 2.489208539160247 0.3166461841860479 +4.159285063116321 2.8537068136791786 2.142028106815122 1.3811237521494832 1.5111287179960828 +3.6937197816359033 2.7993025153123052 2.99685175327119 1.4213313455088512 1.8116972157547144 +2.9457380436711285 2.610312048687574 2.9741248297733858 1.5677017738906645 1.4458687389349005 +1.2931427721474384 4.079554546184659 3.9692089073052785 1.5612934842786292 3.6826820741061614 +1.3386108172371274 1.4327470634106128 4.052851953019175 3.5958403400301577 0.4666060943134567 +1.7196829816401937 2.0638395795999047 1.6431762272539374 3.127249244282982 1.5234554420109871 +3.5650522035809153 1.2908232119705088 3.714743590177217 1.6478725551219688 3.073121114084448 +3.6495427727918317 2.4695174495472405 4.329856726431 4.88421681579269 1.3037541456024606 +3.6326794776697042 2.067174927223027 2.5285245364650177 2.6291183210065294 1.5687331216486882 +3.377364993150823 2.4359413228566353 3.36631741725208 3.075248599955125 0.9853931110946674 +2.318999222738568 4.822427104708511 3.276886504301802 1.5318727189140446 3.0515937264678317 +2.6684733592514642 3.5160332942587353 2.136847335689373 3.4788169579973633 1.5872114889412121 +4.707042418597103 4.7354879029931904 4.98946203083827 1.0792548973466274 3.910310597943782 +2.1090586878376567 4.166198806197993 4.715246935718445 3.7781749682079355 2.260515281713795 +4.3666934206561905 2.3697923777363767 4.888048678427753 3.132127011106852 2.6591116330423685 +1.2291623647939236 1.4686416113001095 2.4034795453830546 2.1899095452936326 0.32087763157528804 +1.1475493495256188 3.911474283464742 1.9527850948667265 1.4879327910743099 2.8027430679231915 +1.156562178503842 1.3651942427197628 2.4740872458447787 3.1048833228195925 0.6644027610913513 +3.228140314939271 3.910392075979456 3.365159568786026 2.8678840654358555 0.8442454570056028 +3.5434387346261107 1.6557613042269814 3.024617806679805 1.2167924349722026 2.613725053602232 +1.3522082161146294 2.067461043217089 2.2374632588222485 2.6359001513288787 0.8187420619391681 +4.5774326512390715 1.572198358498301 3.5044327591463045 2.2200594467820243 3.2681872589829846 +4.602701634108437 1.121899074625988 1.8522256239293173 4.374593962746477 4.2986426339912 +1.8732678673276406 4.595380856264821 2.030835214419449 2.6052331186647755 2.782055369136627 +1.2950743081122655 3.6846923465298542 2.307725819335783 4.903237671041196 3.528024396439739 +2.572767530949017 2.3435459483815917 1.3629157140991257 3.9664371216664214 2.613592595179269 +3.5094621349606916 2.440378793864125 3.498217763168215 4.053567661968237 1.2047210051739747 +3.6595863273895666 3.130387179006353 1.780796412361585 1.238998531817451 0.7573616586622497 +3.211154320458563 3.1463796080036937 2.1761521512219137 2.2892453018041166 0.13032967460336803 +2.407325956930945 2.6440319216450914 1.8202777941253303 3.1997382104059096 1.399621646666071 +4.034038718761122 2.797010375234078 2.423806010007014 1.5290239260034357 1.5267200465517736 +4.341441084456472 2.542683390675196 2.6383370016883774 2.9675493008740146 1.8286360979900913 +4.8594249939262895 3.6730714203660715 4.87742773258079 4.320227246568917 1.3106895830481626 +1.1793475861272658 3.991241904514404 1.919066682928555 2.4220402385916446 2.8565244713592493 +1.809677508892885 4.862478025817241 1.48902267102306 1.1963958354272033 3.0667933515391055 +2.1516324429492286 1.0470209658599585 3.288823511034195 4.849142764266041 1.9117433633527607 +1.662222609979434 1.5081494297509077 3.6459772449774244 3.398232967726055 0.291746074140742 +3.528701135701506 2.627153355213513 1.632326744995702 1.2381466841535054 0.9839544302803782 +4.753674062327638 4.9334142486273524 1.5776922936489988 1.6405936605391709 0.190428770220542 +1.7697350346198104 1.7407994244293001 1.0292179799706962 3.220454787961006 2.1914278491952817 +1.679400448743603 3.229309905669059 1.2808558641323717 3.8541111264715755 3.0039743623778428 +3.72169017074066 3.7656656454208477 3.587908033334831 4.081893892523063 0.4959393828395595 +2.8235077662339214 1.8315207890060958 1.571889764004697 3.678155405625867 2.3281737727376446 +3.4542663556434525 3.5677040149885966 4.716291414409565 4.290239404362644 0.4408950190495767 +3.728629996232436 1.3320642538406067 2.061478462560479 1.2624169994058327 2.5262673214655935 +4.697429232156514 3.116598624379732 3.8520060514263745 2.6070710546463616 2.0121850204917937 +4.326921629413743 4.273542754824989 2.210768666593319 2.359589956418281 0.1581046506511661 +2.886887122138019 4.868376804942113 1.1501600253252966 4.409844309350642 3.814687797786458 +4.365510535394375 3.099034165285173 1.8438311422994191 2.529155054187911 1.4400108542129548 +1.8481715604544298 1.4917274925076 2.6548625439256677 1.9738994299536325 0.7686111735884243 +1.8265281916315863 2.3887476997775066 2.8224728985861285 4.176265197664099 1.4658937084190853 +1.6704229390940157 3.001506458476059 4.1354318285989535 3.2383530708788237 1.6051584448655458 +2.035742875021532 2.6105359492181655 3.4098461559413753 4.456950866546859 1.194493764369078 +1.9824980611327354 3.197545084073012 2.511893870465263 3.816882896302801 1.783069158925821 +2.8490760049953314 4.284801648933123 4.37631637105364 1.3412041229229668 3.3575607937032825 +1.2103305207815849 2.724473521356724 4.04467444756986 1.4984205165294786 2.9624378655980754 +1.9187326812914165 2.825578098183905 2.666006465651324 1.724814619304703 1.3069853487198213 +4.272297749124165 1.1039447933644686 3.0812578294335484 1.416000017149198 3.5793217281553873 +1.7163091102980466 4.17052800330837 1.9496356026880313 4.374443149014754 3.450055363545901 +4.574418564671751 2.50976470761194 1.3454858333313329 2.493620418022155 2.362415834275397 +1.3501070743869015 4.482969137756406 4.72852629862403 3.2547052548168165 3.462220844670197 +1.3132240054374207 3.221091241847171 4.617171151433236 1.7769642079828274 3.4215103205148583 +2.403980580298513 3.390995551664289 2.82817038072461 2.353257868376519 1.0953266399047181 +1.1768573588584323 2.6635940788282886 1.3685536390805808 3.5413232471018476 2.6327388484328664 +3.7846565185695926 2.2855033464379293 1.5311598700148226 1.534792705621577 1.49915757377501 +3.0213718565601306 3.4429065726962014 1.9949630569844006 2.1840066574641264 0.46198376572154126 +4.011765662096665 3.319543618775493 3.2552972850743505 1.6442519516251881 1.753464691314901 +3.156801525528755 1.180762687522015 2.2807353421580965 1.232702196448122 2.236761713687395 +2.9152718970801375 2.512153609179093 4.329832416799913 3.9108007984669153 0.5814566632200896 +2.6744949875963355 3.1925840833453525 2.4852014586643665 2.1923649245928054 0.5951214555207017 +3.119347064466326 4.979719236748281 4.842388113990099 1.6552051312976683 3.6904091893129274 +2.1375605835901 3.409071115443937 4.618042187644401 2.8469000591123397 2.1802943544568265 +4.875316652844374 1.086628736936901 3.9313394561215467 2.0320777113283217 4.23808344648596 +1.2299882244186149 3.1738734299332574 4.3160145047623315 3.2354357670216927 2.2240368928315593 +3.8378621361737313 4.432444118312799 3.748215325122893 4.427877790217256 0.9030331112105293 +2.3068830407078127 3.7504794269541857 3.4318772470080416 3.7635268688988077 1.4812028888993822 +2.6618955745272457 1.6857759788423152 1.3466101543359295 1.6186016024089813 1.0133058831887771 +4.970386733854087 4.946038381360081 2.683705957786116 4.626421500065808 1.9428681171104358 +2.682475117793406 2.1071367749894807 1.1299080939386927 3.7914695543434 2.723035735390192 +3.8175053935670116 2.639331205466105 1.5893568279097625 2.81392112706813 1.6993093127151555 +2.168556206209181 3.460159992047948 2.7554445296291834 2.2637758528313534 1.3820196913709895 +1.6768473753378799 2.4382034617020665 2.6135567459518088 1.7037236372533893 1.1863639306416984 +4.875647632992187 2.183023416763761 3.863514875770254 4.646474090223421 2.8041487659032764 +4.500036752580095 4.521541542368189 1.6519580731068335 4.64332522111438 2.9914444454414717 +1.1448346887412817 1.893084079733005 3.0981666574136413 4.39395154263442 1.4963073280199193 +2.913104023760341 2.9833911908257598 4.224653139929254 3.4550780326331054 0.7727781904427432 +4.90684749765691 3.5274440406598866 2.597045468440045 2.797061223712983 1.393829329413305 +1.186261244962306 2.3278257209876982 4.106557345719271 4.411404167955966 1.1815671956985516 +1.2947540547603795 4.677690994124413 1.2481707051128321 2.916890670085345 3.772119915539743 +1.3031258363590945 4.804427989077225 1.7847137619537348 2.9157506896537555 3.6794512221864983 +3.380930700655842 3.0708689305735217 2.7462385544961863 1.1491743350406627 1.6268842682660811 +4.20242080757407 2.967074480652313 3.6364773478079884 1.6050964574886946 2.3775173751191563 +1.6578130825856907 4.836669635199489 1.1371235856683857 1.1675884687182458 3.179002530856955 +1.02609248559241 3.6192942564242956 2.1706300368768847 3.9474947285523925 3.143555877786925 +3.531858867860983 1.1656032449616682 1.4863825939777735 4.262803139078083 3.647968848024572 +1.815048185233609 2.105329210078473 4.531158985242212 4.27034609258048 0.39023895034140893 +4.810107805346519 3.050411888821386 1.394394518103061 1.7490876979620507 1.7950868977499972 +1.3423582292643568 2.495094599726633 3.313882919869596 1.4402765423019148 2.1998186283984484 +1.2174706224169314 4.822555750163113 2.804952626569298 3.061764568310765 3.614220683870553 +3.931701219016068 1.9939517269755833 2.4442461432944698 2.209709139225478 1.9518915697806611 +4.394563741731539 2.6796209775434265 4.105935896743833 3.761355502509659 1.7492182060942947 +4.161653641883657 1.5179554555190817 2.713459848434806 2.9353757555232147 2.6529958104765665 +3.8601646872805886 4.9108671861870565 1.4620630542468582 4.626232806626777 3.334058482253167 +4.472567034835356 2.7255547099217776 4.534691359866106 1.5834529054817947 3.4295568923749675 +1.0284425154148669 3.9227734871530817 4.0045504156346645 3.0837463601740334 3.0372737582437024 +3.5800847544744494 1.766730926213321 1.3812884874851208 2.161863055447393 1.9742210521161956 +3.8249902580254562 4.3617770500635435 1.812549543614192 4.924968528319272 3.1583685656457416 +3.17093405258848 1.3964005842192466 1.0545543158626698 2.915842771505585 2.5716461159094437 +4.703519066752355 2.7141760353520996 3.676317342402602 2.1075633056899243 2.533470924301891 +1.2793117440305357 2.4325636790526577 4.234025108673873 1.093473455607623 3.345602294237829 +2.255837964478051 4.729682597232569 3.834380761172419 4.837575228333743 2.6695142640471934 +4.165077905830927 1.8011372306135862 2.3129019572501517 2.6199838219512164 2.3838025898918938 +2.629772398394837 1.2693157088464657 3.80950915588902 1.7128263491790277 2.4993841633670897 +2.201094457416725 2.255102436303616 4.598432056915764 1.1928736315022528 3.4059866486362513 +4.130744673774863 2.102320881022355 2.1601082663327564 4.508572463264983 3.1031898374538733 +3.491963698915606 3.6631697444406526 1.308832631994623 2.989388143683079 1.6892537813753068 +2.1095626013591695 4.498188778651686 1.7742842413651299 1.5922598656181681 2.3955516876521643 +1.271915576566955 4.0824400014229285 4.331918458906335 4.3459751323407545 2.810559576450932 +3.201840564855263 2.074282202021964 2.6980305642764133 2.2275532025745055 1.2217760881066946 +1.8395242488417671 3.106628252062295 1.8323931100348054 4.331350988057144 2.801846361081813 +2.4923555323142423 4.201304334221957 3.1090745325479228 3.1279174646356696 1.709052680180303 +4.686871769513056 1.8802516717715831 3.908657179362732 4.137592836064149 2.81594174441796 +2.417748903256294 3.270222220257962 3.748129440024976 2.711542397852302 1.3420966627632003 +4.289829466614092 2.601183219778682 1.7874803787082496 4.264897412511004 2.9981863361584713 +2.0100783580514623 3.6734897977111918 1.4928755647360603 1.6630487751456937 1.672093460047008 +3.2081945892341928 1.2820547438427718 1.4060746033996647 1.6237516360644944 1.9384008859248523 +3.383813370374864 1.8340284752338372 4.625907156637127 4.146858515868039 1.6221346495991 +3.6947927176797597 1.6926883895777243 1.551736450998796 2.77155391322819 2.344435194618239 +3.537308852298763 3.6511722984005335 3.5273284277039463 4.380238258744675 0.8604766494473253 +4.228070901777166 3.5607468577068904 3.318447534405735 1.9064300961652836 1.5617665080572813 +2.492548860869311 1.6700678110366551 4.781692007318206 4.3499989162195885 0.9288885844040218 +3.9256904718632346 1.3926634508555429 1.1615493600259112 2.2504530867876396 2.7571610789561576 +4.562184472221003 4.321746425958635 2.8458138657331413 4.144896828972753 1.3211460931592214 +2.243583469641346 3.730618757816117 1.1859927899566642 4.171508502451466 3.335352757630049 +1.4804025376273064 2.503388849733106 4.860508526405426 4.941332894416281 1.0261742411599395 +3.763906349469063 2.466404693643868 4.301239583722234 2.669407232697787 2.0847991195122604 +3.2062618628811546 1.4412468876386137 2.1415945254274327 3.869854331151866 2.4702550109073926 +3.9433604458036378 2.170618368042231 4.527209639222412 4.1829223697386 1.805864944616415 +4.723395631489833 4.797087151885723 4.920520968047379 1.164543764584248 3.756700040342984 +2.358463391225389 2.0284502267575872 3.5106932349632327 1.0470524752821415 2.4856456870366856 +3.5868053686174743 3.9840036611067466 1.7317137335077093 2.362918305921306 0.7457785836240037 +4.95877652897495 3.6809621468762255 3.052564705172182 2.4351284904075507 1.419167740050915 +3.259610961408828 4.560061645812606 1.8314095032103035 4.144337966604056 2.6534524791944625 +1.256489727878872 1.0807339066002148 4.743554512909 1.7458134063018393 3.0028889175185385 +4.455053118448431 3.6194283344246605 3.8443913920157846 4.167521421826326 0.8959251061557179 +2.1772932050630733 2.890192754749954 4.806325538135438 1.432889384347804 3.447941016262497 +3.780575084823232 1.9166792601919709 3.6193443766746936 1.1993906880886578 3.0545512763708857 +2.710657268419476 4.168860355713129 1.765435986394364 4.040444944978266 2.7022253802060536 +4.895954593933178 3.222301293603791 1.2906738252531977 1.222459954555823 1.6750428358280773 +1.290765097817414 4.793603658911083 4.8449388692825295 2.6589260499188514 4.128986562282215 +1.8863408986136108 4.635358200176179 3.634037137529062 1.0496248825339136 3.7730998963795606 +4.995875268693635 4.114999051602226 3.767904736717511 4.277518786141734 1.0176686048060173 +4.898427095356644 4.360332183090428 1.2555781095700764 2.899711132230577 1.729947840488129 +2.7825906327498156 1.6343808577993002 1.045241762316488 4.21366765721353 3.3700605838391144 +3.8037820426561355 1.8930108873694653 1.2930807041388612 1.6505438295405255 1.943920341448559 +1.9310326581317363 2.0654729871396773 4.969603756893192 3.567242651804536 1.4087905703578654 +4.050997060667241 4.7481401042014015 2.9070635205652353 1.2106636701860016 1.8340613063675815 +4.844556557645161 2.032235836244235 3.187870751536842 2.269657022865607 2.9584226019183526 +3.0268466673824297 2.075582038434014 3.2487916388482665 3.0967238971019895 0.9633426142179009 +2.961189786745523 1.2811993647780588 2.5164631802638366 2.66054586148298 1.6861576548264152 +1.247597342609303 2.5683752258733965 4.203757101930002 4.595413787890486 1.3776244686332806 +1.136675035781455 1.910979655509386 4.109812418565975 4.092324063601319 0.7745020895332599 +1.2035753030366534 2.875543208407863 3.542827562347675 3.751212423918335 1.6849038331973767 +3.9322206510829294 3.0800526349781183 2.9463727383227845 1.8408600521738983 1.3958325927231157 +4.443846206052726 1.59980650892274 1.1780810725458872 1.3302951024454046 2.8481100592760584 +3.4231216275529914 3.0646367410101676 4.033709332258866 3.1107046841919828 0.9901762440256239 +2.9913288466967676 1.5874330257928388 2.5251845273450164 2.186435263305402 1.4441864629745345 +1.928764364701923 4.1106662644812175 3.6733864114997847 1.2299665738232548 3.2758199589433628 +4.232221926547288 3.5291431631480576 4.732004345644269 3.176283061469124 1.7072165830903094 +3.880409210733391 2.0422464946723577 1.261537263531273 2.9109603544405185 2.4697041732850282 +1.7557095871531208 3.2432173155415924 4.618333223714242 2.943854846330512 2.2397671928888236 +2.1660049511049704 3.1528260171088722 4.426044084191407 1.6231526691361156 2.971534300811574 +1.647051563970304 1.2198384183348114 2.7139120643518266 3.5842037675757594 0.9694940538776845 +4.494762479217863 1.3608578162645593 4.145109372858778 3.678103729093904 3.16850954042886 +2.3088199643887166 1.832208163005038 4.291863147168019 2.2068304944595725 2.138812748250444 +1.3934876434725911 4.174430020495973 3.103963720717776 2.5657181807519325 2.832551635119399 +1.564334152361885 2.0157612908489626 3.576759588463859 2.424576937508696 1.237461644870134 +3.760303264588195 2.2473464519678013 4.107601690103959 3.7870217889641697 1.5465477004830008 +4.027080926014682 2.972119012663101 3.099436952231135 4.5180706186566475 1.7678987861691404 +1.8810808994127575 3.078000509979741 3.4162367449141726 1.6588031932799372 2.126308830478193 +4.357155177130433 4.057228364536284 4.7300548452452755 2.4505340143836922 2.299167525702459 +3.485789161400583 1.8062701751959485 1.3518594112605435 3.1595917365168096 2.467525113306503 +4.044191739239791 1.1499225801120447 2.442369829517427 2.1789450772330143 2.9062323660702245 +3.2345842581966116 2.0539591171465443 4.7637202399585625 1.7056479756962637 3.278060660989945 +3.3629435101232223 4.467302086198616 3.1464918363917618 3.221560694384691 1.1069070412603013 +3.969798802853224 3.621994603947187 3.8777892151694497 1.6705251625466957 2.2344982342300685 +2.7031339347291703 2.4369091354350876 1.2024780763049576 2.25695291339851 1.0875627916688986 +1.6657372890734998 2.467110971664318 3.6402242737609924 2.4802280334933084 1.4098904413408624 +1.3941908748818554 1.9513518433032915 2.5281334735852834 1.65273717209628 1.0376642180363254 +3.127982867244801 2.0934143719650335 3.773062466847053 4.762000360704161 1.4311988433938785 +4.767981134384902 2.376235916847825 2.0060019355926078 4.941223802219743 3.7862874418006833 +3.7361721623541695 2.8107465443668382 4.649630540437967 3.5217515712628114 1.458946038595961 +2.174866915543169 3.8154102530791727 3.735762729739942 1.0726562872644063 3.127861628379439 +2.1582747896864176 3.2746067032543436 1.012777348790542 3.7587658432967808 2.9642283571295356 +2.2520893160089384 3.316982495988244 4.1521116246456735 4.229925291161676 1.0677323875686742 +1.6736646916817715 1.54927524389388 2.7595464063966135 4.805194530680017 2.0494265010253923 +4.578774246719225 4.70336057377016 1.4789111366201086 4.472011437657764 2.995692101161224 +1.9470009733600602 4.990071358442924 2.7922353367899433 2.3020957701102627 3.0822904086723093 +4.575394559297479 2.509259920583389 2.241496336361374 2.1375924513279587 2.0687456012326018 +4.791105966544192 3.7303835882135354 3.994077734800309 1.3642987689907882 2.835642673699498 +4.864622375259952 3.955055207178674 1.5968707497840162 1.0082131127696998 1.0834344681920887 +2.3104441238576277 4.403327490043473 4.333240621232255 2.351151378017445 2.882505603207955 +2.215631549627777 4.0694008868887055 2.821418470330329 4.049248887387808 2.2235170988369672 +2.0710014903146217 1.8330939636199566 4.714711244288331 4.248865323579956 0.5230797387574925 +3.94498750516549 1.1158109468121622 4.780828530251913 3.6261381274049795 3.0557404871426495 +4.443941475148739 2.754878939760757 3.4375379081676156 2.250128654543667 2.064672609408828 +3.2699502853904585 3.2919998134749786 2.3625667031057627 2.1670720230002356 0.1967342157285112 +4.700015025802628 3.9929813424460643 1.0688422146862577 3.5320424115078284 2.5626649876686134 +1.1428423652405741 3.9200277850524854 2.5354658613102288 3.0273016366942125 2.8204009087297193 +4.609303879067571 1.3209454625857653 1.8426190813237735 2.392543714139031 3.334024321600508 +2.906755739495533 1.879386755211562 2.0722722087979277 4.679956398095243 2.8027671792319593 +2.0733071932900184 4.878394950145875 3.9586699010789514 3.1380392372519967 2.922661802206285 +2.257705826494776 4.520258040053502 1.453809367512716 3.821284766268014 3.2747644621851886 +1.6356194005138214 1.0158053676701204 2.7454470995986093 2.0364492141511703 0.9417257758386526 +2.056659353836527 3.18732976988443 1.2886187743358826 2.629408356216595 1.7538906159181633 +2.721974320856331 2.152020871714469 3.9229097421759755 2.8668454211242627 1.2000494924740066 +3.8313035679738765 3.3277134842998946 2.291091802501103 3.54671212359898 1.3528434362958277 +2.625092738640472 3.5993431026112117 4.968233380031036 1.6590625293367283 3.4496051209931267 +1.035228572427212 3.4701837166320235 3.912983017582043 1.1814907995230732 3.659242584416369 +2.219439779018281 4.522303707443657 2.1740122982779972 1.6265086826949706 2.3670535443709855 +1.5868633470664402 3.362506087085583 1.646389043178662 3.1965492695497457 2.3570964909408225 +2.3921377498403005 2.838874602866945 3.938714562500565 3.9042070494694863 0.4480676113130024 +2.495136513464004 2.431392357603807 3.427115140952745 2.6973560335556224 0.7325378299005276 +2.777047565638203 2.831134578962027 4.242935336999547 1.2264593243217385 3.0169608781140833 +1.2213312616838805 3.492664642884692 3.6275210289471342 1.450375368012808 3.146254687319874 +3.3827291048392722 2.2463152639523845 3.0037312435032066 4.5424805360501725 1.9128998413594676 +1.8759634296616117 2.8257060929380744 3.7367174867792845 3.1696295079857437 1.1061645004878848 +1.986682985326885 1.8307132079368995 1.6256693006396565 1.2083870287396064 0.4454784685045384 +4.174030890283733 4.042120354506487 1.0928381861598138 3.842035184238816 2.7523598099986195 +1.990928268830729 3.393496230764913 4.124214379314699 4.241325957249524 1.4074487591136646 +4.248828972484582 1.245044537225919 1.7345567899356946 3.144450297125579 3.3182104567248896 +3.177132129254478 3.027403343978708 1.975761574776873 3.272269323623768 1.3051249181439302 +1.6546376252094412 3.439755127106825 1.1181334026571075 2.5432765618321036 2.2842236142119807 +2.7780396231940343 4.843110030323215 1.8836169564867702 3.5692441468908864 2.665680928286496 +3.260468714518924 3.3708855136767553 3.520669870643019 4.17276281781608 0.6613751441421956 +2.9785629200836845 1.0250408809514897 2.534246538730921 1.4996299586848885 2.2105835937782032 +2.5489542311263964 2.4129850549290173 4.982111636383509 1.671875078483135 3.313027872828104 +3.698304054957111 3.3145884617776313 4.113489729194697 1.3989396531777931 2.7415360241391062 +1.4566795125563439 2.6862119880453244 3.4258544116109144 1.0692586306276817 2.6580620352486193 +1.1235031033384817 1.7036747709980102 4.0070299659190365 2.5945808277975333 1.526961601264097 +3.6473730821282486 2.855426737719121 3.3551353985430756 2.649113836488461 1.0609644002081402 +1.354170071624191 1.9474900849573533 2.7037796595242036 4.850885387970543 2.22757528432795 +1.2759433118306713 4.2044749387065945 1.8251751942190286 4.6611436804776805 4.076642582403409 +4.561394658085465 3.1901908347804575 1.522013477307027 4.188241862882959 2.9981617249736736 +3.7963969699069633 1.7311787106596905 2.190677175227117 3.14597764262156 2.2754615886303986 +1.2505657691540168 4.331198018267424 4.052493017103469 2.3543384647227628 3.517673085727104 +4.1600299368550315 4.914431904541772 2.4747708371855275 2.5161707363014987 0.7555370808216085 +2.448701991410334 2.062793855563134 4.250883572971131 1.1925104066974876 3.0826241278326054 +4.4258449063939675 2.687395675165737 1.8349581140440048 4.71321931683917 3.36252781119709 +4.095605095900011 4.53829923213878 2.593884010132968 4.4258208758998965 1.8846672858666982 +4.889910297227294 2.822235806836275 3.6400450000334836 3.623078972214212 2.0677440954609745 +4.332720186333871 3.44352620035204 1.1062253318377193 2.12571482349885 1.3527840804480689 +3.35368726424908 2.84753980219104 1.2309233973587448 2.3037195301011204 1.1862026790455296 +3.1870069605795193 4.829726667743191 2.5159418122879584 1.3965375940775853 1.9878616249757117 +3.151147167832207 1.9882191195224004 1.9954155586515596 1.7173442191999073 1.1957112173807236 +2.104146580022318 3.106420791807418 1.4797736267265509 1.452373410330945 1.0026486759917301 +3.5032040971650327 4.024691355130727 2.485973076209033 1.4900997415840465 1.1241497492939583 +2.7221867314503063 4.276477096768129 3.8682612777071124 2.2055167041396873 2.2760795365381523 +1.4421295222453963 4.258882695580354 1.045973239863041 2.122841402004216 3.015583439091989 +4.047445145997286 1.2672533500105887 4.511654080601149 3.628010242864411 2.9172406233360055 +2.712849295830164 1.935179353181928 1.0762953405500175 1.2726420055935215 0.8020739071757771 +2.0881642005013843 3.727357077182783 1.3399340872573062 4.267131813864855 3.3549127883775816 +1.8950353962639133 2.517557798482596 1.8299945104267157 3.412170496015755 1.7002396862321403 +4.815612470800366 3.4323870075285186 1.3197703283385764 3.377996484246106 2.4798402349960975 +3.73774264071986 1.1168823072969625 2.4420359349223517 2.5233699678611816 2.6221220628002193 +1.7530907720184228 4.815276997294248 4.601251661654121 1.0224124852647134 4.710103430788821 +3.6650695722077615 4.234723046044605 4.904806592040625 1.948366402389166 3.0108210965184794 +2.203878198265082 1.435715469925536 1.7693318584445925 3.4089145335916182 1.8106091035483978 +3.1902046339600783 1.5424214664556013 2.184573209055564 2.11421883167933 1.6492844222653305 +2.2751486645649672 2.53125412022266 4.708153587629735 2.155682081301689 2.56528766321327 +1.8452716722435447 1.7300343184030376 3.694611137424425 4.092509741976962 0.41424986086300475 +4.818533580653593 3.3281614755443845 1.6341653250562551 3.951318782407417 2.7550697190093207 +1.2153187708046036 4.936007394586818 3.121444911110188 2.001050842670439 3.8857182995859807 +3.124784486148278 1.2380080485950713 2.5457827996549183 2.0204499045218824 1.9585453724677473 +4.752000439951901 1.122655627940512 3.2670655822461283 4.582536522013099 3.860389560374106 +4.023610675030094 4.657857423293311 4.453758862980482 2.6266472861079344 1.9340645418455285 +3.2472053081037124 2.83268718021348 3.263906139433116 2.7007110905301226 0.6992953177724475 +4.536927436693081 3.4114273059287106 2.663189402149199 2.3826406804838194 1.1599388473444165 +3.4455831507963133 4.747880388692509 2.4530347244879156 1.192196222330912 1.8126477386281032 +1.8459831424024205 1.048086639435529 2.123224114206758 2.0242270839199525 0.8040144535096376 +1.7024000481158135 3.7896716348392783 2.0700431224934315 3.1721229047326718 2.360356439854706 +1.2085824432861765 3.2400966793303065 3.247168793575418 3.0171130979108463 2.04449889076949 +3.2135714505304915 2.0016413272639135 2.565319650476651 1.072441489267507 1.9228780065038285 +1.6259965717361875 1.401615894123542 2.423220100717597 1.2824067014707836 1.1626701597559728 +3.5873321254756902 4.456708979670107 1.162615531777155 3.4204317793063517 2.4194111519573935 +1.4572244997435835 3.145825002321274 1.062489130061123 4.4425069940309125 3.7783451957253096 +1.4487750985084045 1.2200991238776195 1.9745542019155287 4.847006022414786 2.8815398943035366 +1.78914675962899 4.952769535957154 4.524190542214312 4.961212141357269 3.1936651278773405 +2.159300984932791 1.6440283868486318 2.1658699081988666 2.5082395237330144 0.6186459439593858 +4.294199654363044 1.896544319133592 1.0745712495300523 3.7944012725423497 3.6257725329415424 +2.848593167401529 3.7531288966343257 3.6734108054816197 1.8813687510212809 2.0073862633815995 +1.9815739733004136 2.2881200426576855 1.0824699045243928 4.459984367658104 3.391397122325222 +2.9019937346268745 1.976531919268922 1.5928595829093002 4.6816611583110275 3.224465032201439 +1.7970435885567806 3.74698855176345 1.5775102143634534 1.5859977057342967 1.9499634347968757 +2.6165097653205156 2.796897419880592 4.333767682604033 2.185161861514719 2.156164808250188 +3.233997469610553 1.0973777915757847 3.8620504889056666 2.251064133975482 2.6758962394563506 +2.766221221081612 1.814388894788903 4.8107550003951385 2.952932094855744 2.08746035309 +4.881866388774084 2.4715545845293314 4.007618006279412 3.236894793179109 2.530536951892473 +3.53423936434119 3.030148855755679 1.299370532682782 4.010694489561159 2.757786220864231 +3.0576147256607213 3.935363245506081 2.714010994291935 4.1549781584593655 1.6872548213887095 +1.4482903512572043 4.949216191315373 3.571296500296938 1.2470022777278231 4.202240517944584 +3.3573733190318906 1.1168802230595727 4.554730445552455 1.205583687779722 4.029465636805857 +1.5442909148025339 2.4823459511749473 1.581092971768713 2.750613735932427 1.499241831418043 +4.277681207922912 3.2917253721567548 4.348928615657615 3.417231029113391 1.3565284010494114 +3.3459560561742476 2.1769889708770305 4.41628727933612 4.913558330524314 1.270339539201265 +4.176961538973584 1.075447622837629 2.697798515410207 4.76872196789002 3.7293581911658604 +1.048185566000905 4.7483940223322065 4.903906721566063 1.4986227839473996 5.028667946495308 +1.5841972390707313 1.1654221199567636 3.0500488736932407 3.096865798063875 0.42138393988907974 +4.710487877765715 3.170521492469926 4.696546763745261 1.4375419740816202 3.6045261390218175 +1.913104718306133 1.696129288307695 3.1170030163056404 2.0123074458925436 1.1258022208688896 +1.9125047192850158 2.9099667691236237 3.953983489542282 4.869505920540991 1.3539246147884394 +4.912018959609571 3.257869693954956 2.208683233807884 3.9454822495596957 2.3984746432226807 +1.6742904542214214 1.330107966907586 3.773712861481228 4.483598476037196 0.7889227911063561 +2.0398534338478593 3.349931429129216 3.48072078172265 2.7900340907903067 1.4809971163886473 +1.8559870706254862 2.9345313972688265 3.9817606829027268 2.0252899587877637 2.2340625682494806 +4.664512688540382 3.4514453049201013 3.46756315760683 2.8415753049775003 1.3650616355472134 +2.5649942774548182 1.7678160222149022 1.5494299468077122 3.2920925446191758 1.91634185375114 +3.7166416122217596 3.75266470548147 3.527769160874425 3.319776650008519 0.2110889571349051 +1.1066382990408044 3.8542617350972503 3.695557308911579 4.0255801198762455 2.7673723280620646 +2.984829315105838 4.9441035621548775 2.4410087843071473 1.9818300419517456 2.0123619685783845 +2.0901168085456594 4.3727471249436505 3.680428007205861 2.907782502151654 2.4098510820836343 +3.265485099852537 2.460010745713113 3.040495294055107 4.643404065183972 1.7939078749306419 +3.5888704642575813 1.037997054936123 4.392157333641522 4.994690471724935 2.6210687386773976 +2.5141277214061533 1.4745545894316123 4.623437505452843 3.916582603431461 1.257122169574228 +3.413540213607758 3.6947732627167387 3.785983938258468 3.123228638146295 0.7199559818057706 +4.587975605057004 1.3804377851068037 1.8394223278178217 4.919281575421088 4.446777693055752 +4.166456876850645 4.000681253322873 2.584748600123245 2.22310167035939 0.39783169703235594 +4.867840852290984 1.2486443851971196 3.754964781779976 2.9028830303525757 3.7181482459068644 +3.4218436532568375 1.3230085213562557 1.363385835670634 3.5094526342500116 3.0017847382623675 +3.6372731581292257 3.744068817800393 1.3063831356452402 4.904725686842527 3.599927003243482 +2.814241161504394 3.6455147785638773 1.405807793868862 3.566765974738274 2.315330664480906 +3.223203106610588 1.137811932030988 2.538929052902003 2.638235966305732 2.0877543471549185 +3.046013570364962 3.9146509309835094 1.3744872215180637 4.993962283583423 3.722248055836069 +2.944305848757996 1.7210630909881672 4.3812619824084 2.6587556214018626 2.1126644333978644 +2.836057410787653 4.861076272116913 4.93909354530766 3.731294215519748 2.357855086678437 +3.3653852985240356 1.6587940579135547 2.850748291409488 3.2861360415334 1.7612541427875714 +3.508476613340862 3.8640084766818514 2.0691254623944206 2.3463125231225743 0.45081656190276453 +4.345146364411326 4.614781373463412 1.0156937751310249 3.626168469833086 2.6243630026706173 +3.6438058415726027 3.852309989295539 4.5617522358421 1.2898931674251646 3.278495957478033 +2.4829806922898325 2.646068956881824 1.3588188723752772 2.316641130131598 0.9716075645552804 +2.3611111361865866 4.351376245726021 3.5133687677420564 2.440558420804238 2.2609903243372935 +2.1633740087942654 2.2284553917304826 3.3119733740984962 3.118036049491137 0.20456605847684206 +4.519974317300459 1.2202754552239763 2.0925453317159093 2.0181314093015312 3.300537836813559 +1.110352184653752 1.4946695877765959 4.502768662533491 4.238341322067459 0.46649939413575353 +3.9559475430360207 4.701264307497082 2.9151796364261355 2.9408136221678167 0.7457574542783398 +3.5801499075305525 4.348220195385386 2.401963461388532 1.3245261966744635 1.323179136201875 +1.448304037936142 3.050823158412004 1.0688210818508672 4.163889147024334 3.48532837183921 +1.0865966989365288 1.7899152979717243 2.2943537218354626 4.356612991487892 2.1788919998513467 +3.9987547070597658 3.3101370224823206 2.1773816884919523 1.0783453368404352 1.2969484252522454 +1.3519276418564243 1.0206108933601747 1.1424716446842837 4.506662513720753 3.3804660908138815 +4.868641996920517 1.0808894627586776 4.925537339189903 3.492236799450748 4.049866627096007 +4.4334626179067484 2.0935707085119573 4.073563183277164 4.301859558019901 2.351002633425126 +3.311402227700155 2.5390252455442752 2.7580282459079193 4.697831703265599 2.0879184983473453 +4.121861395020169 4.536256609073979 1.9352352542881404 1.5367332144004942 0.5749150104366021 +4.788559568231458 2.8853352771102387 2.2601537888596157 1.018228862591799 2.272584481333794 +1.3030619963897396 4.070103785350987 4.060195063073676 1.2139909863279605 3.9695589060173666 +4.5212164314976695 3.4157270341421557 2.478597242243384 3.481625539158181 1.4927064587778986 +2.727782760626933 2.2686759709321764 1.4278343361677437 1.8559758265266288 0.6277612445114406 +3.334760943700892 1.4710486988822815 4.72114907538351 4.248098663002832 1.9228104493528093 +3.3401381362146645 2.8583903083601165 4.510006239059415 2.0210141287913332 2.535184942882734 +3.917743237995504 4.407091947648717 1.3327579640940228 1.7849975922852797 0.6663203741038022 +2.9612263653133084 3.778484779701982 2.8260251849672864 1.2516151789972847 1.7738878721011508 +4.455490400592755 1.952557438505619 1.932895612465741 1.1802344967190748 2.613651118236575 +1.9286919628046912 4.35259641499391 4.657492303804456 3.5694705105189892 2.656897479393369 +1.951383841444628 1.187107144169997 4.522273775180533 1.4885639731657427 3.128500284934882 +4.413448206360389 4.551366511136633 3.7132903789051035 4.772451155864546 1.068102527963343 +1.1994771649509293 1.583839437159687 2.4917157908116283 2.8590213400271853 0.5316462383785115 +2.180079092278841 4.350585627129458 3.567776926504679 4.647832247321345 2.424379944202976 +3.873412107115414 3.802685076098248 1.8352144192565065 3.94737746171062 2.1133468789636782 +3.4274785535958556 3.8854523218426054 3.552500757276421 4.90982940044164 1.4325086449857336 +3.0848374351074233 4.75504411003886 1.2590080061363076 2.5835097426025735 2.131641430186531 +4.821258367753632 3.1461643008693057 2.6374335401249063 1.1476115731794696 2.241764846299505 +1.6380692068819989 3.5848249123112494 4.0795993182509545 2.1069386471491867 2.7715064315157227 +2.4331303425839996 2.3224904899084247 4.830668772372125 4.092629358932033 0.7462863745178974 +4.178807803864025 2.527677957262922 1.8763813148212294 4.417535340257455 3.0304609470058703 +1.559155923565895 1.5277361193834924 2.8666066153566376 4.457820289456624 1.591523848623588 +1.9036658131358943 2.806518389563809 2.5063376164751943 3.9195174457809614 1.6769675025829214 +1.7620356341751413 1.1856429714592163 1.270852172848251 4.124958372223471 2.9117264121041346 +3.277996831022609 2.4415022164844196 2.1608948179584506 4.335893686093394 2.330309703996376 +2.2070577004300254 3.973807444692583 4.501392446872887 4.44431114956717 1.7676716135509776 +4.832659800276684 2.335050606588526 2.4670425529092292 2.377317156248007 2.499220344667837 +3.585060846252508 4.8412262693922 2.877460302169334 2.886834445983173 1.2562003999617115 +3.748598667722974 3.71772861967118 4.068542638652067 3.712783814456637 0.3570956466545551 +3.414947419255677 3.302903108257574 1.659078538609681 2.579713976978724 0.9274284543877225 +2.4837998115624265 4.778152636048672 3.1995653669898716 2.8239147902719357 2.324901769756419 +4.388835776918044 4.666119886975556 2.436915589936605 3.9945503686270047 1.58212280859492 +4.575264333137395 1.3875339453109077 2.9265160504915593 3.0715973608541773 3.1910301803788914 +3.4093932571284724 4.369262350386913 2.25312933925474 2.799907322813497 1.1046786136688633 +3.7883985773291986 3.9438350779059026 3.9320755854816443 1.7762201867311522 2.161451596967458 +2.0377966212426437 3.5718574999217303 3.534359145744882 4.4722666006213 1.7980581674146168 +3.380424716129467 4.08126903412676 4.364371176002065 4.356968610577072 0.7008834111633417 +4.5533178738897195 2.9183040749405724 2.3377147385399595 1.1500353147875124 2.0208544075116017 +1.6484068260302966 4.03767750736518 2.216437580370152 4.8614483638514425 3.56436480083321 +2.039396566552899 4.406055644526115 4.9685413662444375 1.974657225533087 3.816335603606682 +3.2867705365029805 4.594703087312847 2.5384507054842596 3.6927377447624194 1.7444386279011204 +1.7331317929609473 3.4136302166516614 2.418083704174363 3.1364632852434413 1.827606132218854 +4.372894809192003 2.587837790626922 1.4055975995218222 1.9761722434617761 1.8740288108339371 +3.9397140321699093 4.003118730975363 2.696223248951889 1.4234287036867905 1.274372830174592 +3.1920834980701356 4.75267919889853 1.2590377438163922 2.5889461297588072 2.0503939271379115 +3.4579699850282446 1.6457416216832996 2.7439640757029515 1.196153813949576 2.383251612251831 +3.393763949182715 3.970181889447604 1.413402833087186 1.0426526439475627 0.6853563632201015 +4.497698126977008 1.6516207454612108 2.7969252790933012 3.577699244563523 2.9512310053148862 +4.904260780914003 4.154058968724195 4.279237338817156 4.60541754952424 0.8180441851573723 +2.3329762731785375 4.796786020471762 2.317281445664475 2.453151803929686 2.467553287187983 +2.0770431660849216 2.00482526377326 2.023346233903446 3.1388624340907634 1.1178514294371358 +3.18139976516608 2.7337770361941582 2.977605611107876 2.4444809042187154 0.6961235957701218 +3.6216279340815407 4.271629664492093 4.567338445415611 4.184256993448279 0.7544889981822879 +2.6064281023084286 3.472812135112924 1.1511133067634978 3.0525276583752023 2.0894970277111047 +2.476200848390459 1.9216444205536996 3.3271527836181876 2.254036436340348 1.207936888438299 +3.270978322877654 3.9234505985846657 1.1843117105442404 1.1387256517808395 0.6540628099195575 +2.292414309980259 1.9307448839551475 1.963524548450858 3.6061395117728545 1.6819597770014172 +1.8373159745775705 2.285019428291642 1.7037837347970912 2.2475017802761936 0.7043207333645113 +1.7886692059316882 2.395170420772127 3.143910319792102 3.5747221255926975 0.7439371852650587 +2.443975771771469 2.0254357832017043 4.687667012638615 1.6641310794488362 3.0523671570310418 +3.345968365778643 1.7145599601097676 4.751451959510348 2.83530180396945 2.5165700476375514 +1.5226281606917058 1.4643412664819961 4.060021822064154 2.5601903039269227 1.500963672056871 +2.6089136339072225 2.3071545864246508 1.12622376709845 1.797683276665754 0.7361497101309986 +3.001003697868084 4.84243631715572 1.7548160339598122 2.0637454088294622 1.8671666904788857 +3.0059215849316 3.617154033497753 4.986212101254253 4.969596670065659 0.6114582395664958 +3.6670138887069497 3.139585976253322 4.659185190931026 4.804648327175402 0.5471194813212571 +2.0470046486095774 1.5046969418550677 3.4987128654532382 4.387078646841816 1.0408128603872429 +3.331013639039476 1.2103432883091174 4.39122963065863 4.7692572115489416 2.1541001806741957 +3.6324564089373936 4.836095647357958 3.59497615804933 4.4138772995211 1.455797546284992 +4.302630410638527 3.5105443187464185 4.546975826716691 4.623345460982392 0.7957591959926014 +1.9185727299595992 1.7901281135028868 4.894158307212676 1.883182850230884 3.0137138586872214 +3.614737948799889 1.4943051783952104 2.3501717271091596 1.6602222786582859 2.229857702909252 +1.9169225517658073 1.480196533063248 1.3192349371504588 4.27542985232472 2.9882801059997615 +1.6606657889566763 2.528980187295301 4.32417619431302 1.3903706344009592 3.059605359802648 +1.6350975581763785 2.5330395711295965 3.186944679078252 2.2094877408322713 1.3272987322949132 +4.866489583695963 1.2255642300619733 1.7435554188409181 3.399072106694991 3.99963410007692 +4.394192317274243 1.1363697973256532 4.094151121377353 1.1389879460485486 4.398453928859958 +2.1019048057645535 3.759996665635297 3.1709036888953936 4.851751858158767 2.361041969954295 +2.77450745203116 1.0650139127508895 3.0332962739689067 1.8388857745719793 2.085421924194383 +1.5635607660833233 3.543856177007746 1.7347190598788984 4.27385028118542 3.220055476780156 +1.1195361692335601 3.4517908760212994 2.7667883745213113 2.7856848855747596 2.3323312576612176 +2.0473898509604007 3.441250577411848 1.5959790193644054 1.5379988712844894 1.3950660996222097 +2.3982072395510263 3.0119891951543782 1.1875426158411981 2.702374786653056 1.6344555040596365 +2.3680111687040397 3.4859263266066494 2.3599263572073843 4.596552031993529 2.5004457021461177 +3.3401803321562595 4.756335274704147 1.0490195477719877 2.6580487607331635 2.143471443585212 +2.1084217748142295 3.6668430692550813 4.745540002269564 1.2784940211739442 3.8011951759937284 +1.9263918163103488 4.991681310180621 1.4959528851918655 1.8301085977310119 3.0834493220181214 +4.450295735279596 1.195405986966691 2.8437106607041787 2.2798815290326324 3.303363522743741 +3.3379502971402055 4.608831786724384 3.6026362434199926 1.9514071566106321 2.0836739806632356 +4.879427879299888 4.132415458717437 1.9455210921772252 2.021365095373894 0.7508527614155441 +1.0600283772816943 2.5959883573554863 3.4175370575388317 3.105904922572846 1.5672548127001371 +3.6693405110153905 3.567932621755471 3.181684078873186 1.901697264513961 1.2839975875902685 +3.3226244377328973 1.28755931980586 1.871144718876776 3.567800023625019 2.6495526523044868 +2.2054324396472995 3.113059042860379 2.250732652130891 4.015306472648898 1.9843152015034375 +4.481276816727178 1.5374857637114374 3.7474078616778197 1.9848023400020933 3.4311345046292314 +3.2657256246416657 1.2359279613151837 4.828367933415579 2.5128557246476695 3.079232914704389 +2.449207345294422 1.7111784010237465 4.6858535180979075 1.797348324219171 2.9812998805295865 +1.9006719239397794 4.276151245048592 4.461192435444282 3.4661332799072193 2.5754698072456055 +3.4939552073742357 1.5971696681893217 1.6140843574204848 2.435365598486085 2.066953859810919 +1.76750228243082 3.904234461108378 2.684060402958337 2.6171715564092803 2.1377788756531406 +2.3601289612565055 2.660486042653616 2.611496827881316 3.796934632922834 1.222897038170852 +4.80092144156548 1.9151167710919577 3.5548559541577816 4.890233127492131 3.179795715323428 +3.099476179468079 4.50854796779061 4.573769090455696 1.0450207128627538 3.7996774095982513 +1.4021647957771353 3.382287490429296 1.0880690394850254 1.365130864719442 1.99941219884214 +2.6208016984677744 1.7176650997153864 2.7440958119073064 1.8126776391293449 1.2973802559724226 +3.894904065054036 1.2769095501137118 4.988047337314256 3.3331881469948255 3.0971687425844765 +2.4386140364880466 4.631290852101156 2.5951248921526346 2.503591801340757 2.194586504205478 +4.320482109708301 3.367565253278282 4.254870496651055 1.6245125354941528 2.7976478583070397 +1.0850377809582952 1.2289883398207317 4.2366793606717685 1.1525627658382906 3.0874741997179593 +1.321832634809668 3.247988053403296 1.7383108575111943 4.704591639046894 3.536791819076384 +2.4480366718460047 1.8193470434399588 2.6904803137028974 4.715823657078056 2.1206759081527284 +4.887156531583386 4.468549567183193 3.8446476935110683 1.6733131368408807 2.2113176044237663 +2.8745831619513775 1.1628681381768606 4.873940809854185 2.3179874638824645 3.076177145321678 +2.09373101753024 2.823897532165719 1.5684631567297154 1.1985151376455185 0.8185381334545415 +1.000588536233146 4.770020316936667 1.7269565370910653 1.2687937234857225 3.797173832358545 +2.1023886520861854 2.217003543273194 2.1198510286342733 1.2195701965931005 0.9075473264918784 +1.6353320789933021 4.302788085931823 2.186634537435077 2.9764113018566896 2.7819182027106173 +2.074979712106874 3.7814245444915384 4.018345403500175 4.181178073516202 1.7141961510856554 +4.748162100581516 3.2884777552748727 4.191682604719068 2.004620596717468 2.6294331356353737 +4.068702508259018 1.8275916736935955 3.222570529145899 1.8977018333397386 2.603431357638154 +1.107725823609873 2.404365444348323 2.6384835495167467 2.7283783307905147 1.299752044725843 +1.5758522722822814 3.699285741674614 3.027821421915511 4.503692669665893 2.5859554595684413 +4.911484169123218 1.3241640692927312 3.06676918680306 1.7655292636741522 3.8160307698172904 +3.352442373112282 1.8973033541568518 2.454409251004181 2.9724261101797516 1.54459413143929 +2.788221346548927 3.2187309423202506 4.177490795424784 1.1384831471381949 3.06934944221012 +4.663520988382681 4.543137249709913 1.2499413513876956 3.126258780756002 1.8801753482822081 +4.390426778606332 3.456532052852184 1.9331630032839224 2.259114196932961 0.9891428306532116 +1.196658662184129 4.268755278852668 2.7524021166144372 1.7199391213100372 3.2409500858265643 +2.6702062966689573 2.7278427279103448 2.2712501685055617 3.1058455107264686 0.8365831360140341 +2.760741450236433 3.0242493760895437 1.6168816983305847 3.3145968981400453 1.7180434588948805 +1.4462662156429595 3.965837054389732 4.15807982069244 1.9982649158282944 3.3185897056937352 +2.6380110343210967 3.231879952390406 4.584851243613688 4.724041320155872 0.6099624326601031 +4.463014725241933 3.1916888917750232 2.103038609988646 2.7086235018025575 1.4081911929967468 +1.1633070367771428 1.045684204579108 3.163586915069839 4.242368357953277 1.0851748855202827 +4.86676146121142 3.4199230720043117 2.8161139221927374 4.303650465096448 2.0751159704839006 +1.6213576532080678 3.6900338347900368 4.949940737981172 1.2312160737314626 4.255388850944608 +1.1439835231679876 2.1204016081280326 1.031004128582571 2.7181151296884565 1.9492911036296103 +2.7448479919392237 2.292524575526768 3.862098714343837 3.92143807942197 0.45619911582872663 +2.6350384299229996 2.3479660793409973 2.506301079221296 2.5178875805181278 0.28730607630361304 +1.5156755948442173 4.4772234383302365 2.8761339141775535 2.7886283653328694 2.962840334937963 +4.00910179261612 2.945492290337602 4.468724211546397 3.3115660598090564 1.5717124932599265 +1.4147409687885366 1.2602529598937426 2.271986969642765 3.172468325567411 0.9136373554426107 +4.452058283326437 2.578548677043209 2.7903609817059936 3.5875048529673297 2.036044350284405 +3.3014464708591063 1.2566517828026504 2.197067438227535 3.6549357551689248 2.511287587243926 +4.284634550296605 3.5105437221077698 2.5927072262026574 1.5777271335596992 1.2764800032697674 +1.3864990857022956 1.9500501761979434 3.1295415911123614 2.5684282459750682 0.7952597171301944 +3.981580625493566 1.741221353316186 2.411996399902123 1.6644175632585516 2.361796728219538 +1.7975220459408967 2.903216522019823 1.3125452949555307 2.0830853797694413 1.347698889491447 +1.346402599840168 1.711062495694752 4.35433667405983 4.947540988354056 0.6963247792100746 +1.005166627051905 1.5593066002815252 3.662081671236108 4.3973905000571225 0.9207335030686435 +2.6643450352303804 4.045981540624464 3.9012895653000905 3.871723131404835 1.3819528237428576 +4.072742437703719 3.6682096032166203 2.0246368699336044 2.8878096190624696 0.9532649206893379 +3.404840158099359 1.0279149094735947 1.136484554538244 3.8946173143325975 3.6410259485762344 +2.609044742785609 4.126923743252493 1.3263707274069296 4.055499063357404 3.1228349514737648 +2.5407247128777013 4.04855147325918 3.4890643630217633 3.378412254166685 1.5118814201241384 +1.1041713584917465 4.90847741725748 4.362331092795987 2.0271064280198896 4.463856944811326 +2.6072531826070984 3.045369072792341 3.907970721901609 4.865858265995119 1.053325249086104 +4.424999681380468 4.837154499066459 4.4338759873588245 1.6328977887573157 2.831139428354373 +3.204465203948159 2.981564750137318 1.693550085167118 1.4376262911757203 0.3393841490700917 +4.72435063387206 2.06305024280312 3.3021043351461543 3.739207484913257 2.696957347649387 +1.2937065006381885 4.2302959570185115 4.120687232639559 2.898214969793917 3.180879763328225 +3.803513287096249 4.2357406152882175 2.7754585961205276 2.468314997227434 0.5302430136993501 +1.0593734520064846 4.291664235366159 3.846251626890671 1.0810421634224485 4.253714504412128 +2.780652724918459 2.823837484211122 2.6093504612672205 3.34079798429931 0.7327212310182804 +1.7985914417674853 4.445449388490742 3.9869120483135565 1.00555557044739 3.9867710541548043 +1.6360017600004624 4.746407946748784 4.579905562589731 4.023969246170127 3.159698060650168 +3.0393188996566987 1.8545831076800132 3.9661638546672027 4.043562242463586 1.18726130536799 +2.082637398944678 1.1860743894595975 2.646284427152233 4.872236711702783 2.399726818425955 +4.300896361432363 2.7753172258282994 4.6230220102321775 4.660613843340849 1.5260422159648506 +3.3776825869430778 2.4754375277931993 1.3395269246151402 4.9623877643457055 3.7335193599087746 +1.7550451416876527 3.447010221562198 3.787621885198684 2.154381104146426 2.3516422517906643 +1.766743286411597 3.0294491399900614 1.3015090726173244 3.5924675670231974 2.6158969581678373 +4.208105602720808 3.9830539036473187 4.664091385410225 3.9631197527970228 0.7362129426900087 +3.704015297583577 2.665055864771187 3.432919455934588 3.3450652479774434 1.042667283885718 +4.340841838877772 3.030596612206763 1.6331971091128041 2.7950313556747446 1.7511714280727386 +3.95037775468947 1.7864899910937888 2.5855584885079277 4.066265228402951 2.622003566551668 +2.619038415023076 3.318935852815317 2.2414043107070496 3.9940107570208663 1.8871899160097503 +1.489739376956825 2.4856501932842985 4.766604701860108 1.3036637847058117 3.6033037826111043 +2.743260965387474 3.0480363301157927 3.774600745013062 4.165337864422602 0.4955436604677178 +3.9326470906008395 4.284232314869302 4.553196663321664 1.132016727616477 3.4391982092336075 +1.8054877042916204 1.0129194204042666 4.064461672425071 3.0979753836547603 1.249904088722472 +3.9459574327212645 2.510141388643459 4.277095685065776 4.300258654983617 1.4360028675482002 +1.806180739259231 1.7440941031180741 3.3114979976929457 4.285082362768564 0.9755620258635627 +3.121603843884797 3.9681934597005926 3.0372754604363497 2.119290201194062 1.248763754195831 +4.574440102850705 3.6631230926247556 2.6569905221703802 3.0847395899851446 1.0067114572426217 +1.6443702605081048 2.571394401304966 2.2866515697318746 2.5360305783716752 0.9599810662561675 +2.455288626872754 3.3171827261937437 2.0652570197259603 3.051610654313057 1.3098682876180776 +3.6023184819867726 3.7860441997491585 4.601579258032903 4.526837437243804 0.19834686572309024 +3.53074780034378 1.0983434914199708 4.840416323694947 3.688861343696418 2.691220837098012 +3.436859869880715 3.2275662615085237 3.205867646484396 3.085160788201859 0.2416070366150222 +1.3556963554379649 1.5750605985949857 4.119401241852108 3.2708019493979825 0.8764938278901312 +3.7029135130580713 1.5497889910279055 3.5161764840643572 4.738704308231446 2.475988588065451 +4.0068753377475055 4.51118712474635 4.061041049397288 4.446832480374735 0.6349530744248695 +4.230011687664282 2.5749625418706703 3.427942226679942 4.999184607265606 2.28210216544761 +1.5187305306621104 3.202518664103783 4.953388424467274 2.053965668133657 3.35287858388344 +4.1462117391154365 3.2211428901079655 2.26906417048256 3.5945868142644732 1.616404236131111 +4.718454805600687 2.36529352130845 4.2173775703545555 1.6832122889776366 3.458231007788237 +1.3714905041471317 2.15766149257636 4.66918343431157 2.2477357552160893 2.545873855014164 +4.390695360759936 2.9296065701748777 2.811530500997619 2.520787130354305 1.4897356012213518 +3.5125280312265743 1.171870269538454 3.932278336172345 1.2313799125639844 3.5740077017265883 +3.2802581178925716 3.833006877550334 4.3267676258089605 4.5010043187105175 0.5795598471741 +4.785226124286412 2.268520492792153 4.150000373843431 4.803669804515689 2.600209791572655 +1.9854036863665079 4.804638082119946 1.73462325091855 4.888320829707167 4.230117137462797 +2.209360625043935 2.404829668259562 3.7999383507255997 3.5565982009594608 0.31212589662480666 +1.9974594023514531 3.139460128418292 3.5091105760703596 2.3941604550074356 1.5960198716793648 +1.408878517109001 1.899354851626581 4.5959542233097475 3.6494785476720115 1.0660127763285532 +4.580527556618694 3.0798860649821016 4.716510501019301 1.8838197930029108 3.205629662594183 +3.935776461231457 2.5466598008321926 3.798308658231171 3.546568740549826 1.4117429236064958 +4.669718401923533 1.2936132854857565 4.2295905157817195 1.5490197970873587 4.310863618250864 +2.231136351186843 2.35209363970119 1.7945350173108863 4.867823603855367 3.0756679602696577 +2.4073422441184786 1.9794523873181809 2.0595461113210023 4.249850787114257 2.231708830101806 +2.3042380619846288 4.313749426971185 2.5806886864972993 4.391592015012811 2.7050890542159034 +1.5072813260437572 1.9361627039023945 2.21224338948761 1.8164382399760948 0.5836102746300448 +1.5890140225986644 1.0173235814674562 4.086130309873879 4.328274627296251 0.6208573354167137 +2.6083192739198453 2.5481634990167743 1.6611714005684295 3.2605333344040566 1.6004928343034297 +4.361208912000093 1.4780277413769336 3.034395281838771 3.752586626227416 2.9712846497417074 +4.709502624697395 2.5638798523452686 2.1590905866743553 1.0790621758354044 2.4021154113521135 +1.138872093852096 1.5914030882049004 3.1079486047204177 4.503665613752597 1.467245811086769 +3.2910808105803855 3.1152983111291803 3.383465932554728 4.237955911282647 0.8723832935469092 +4.386995341225121 3.4390344461326223 1.9708341744995077 3.865031895254719 2.118163087191071 +1.6797984254443992 4.5142213158005 1.1162971530673773 1.5873416766395936 2.8732970721041022 +1.6063999176114043 1.7041053401649129 2.1422142580599237 3.7766749737116463 1.6373784475817132 +4.774703091054032 3.0247791197882217 2.4526108154362722 1.555135984248257 1.9666456157189733 +2.7756570962365803 4.994768825517976 1.6719406049739831 3.3841564788756586 2.8028806727856157 +2.6124801935025856 3.0145346694690835 1.1063887509065355 4.600432990163355 3.517100076416431 +4.51333954781536 3.579823467296547 2.072508980044567 1.6458129246512896 1.0264120986598855 +1.6269137407526637 2.980777398247491 1.6693359818092501 3.4174277866088096 2.211056706892126 +3.2936476236339067 3.1685065488207536 1.9012177868688456 3.346050245922123 1.4502417465165358 +2.1803727962230113 3.2908402008694826 3.1005494552830757 3.4700708326945313 1.170334954252982 +3.549840933000762 4.652358095992612 1.9244644604612242 2.3630668417742413 1.1865564224195349 +1.3202140325757488 1.6573696943890934 3.3276658628090803 3.9341327724931197 0.6938847547212024 +3.556928686899329 2.950466912347106 3.153757132438232 2.4117336572646457 0.9583291301539975 +3.103063367200311 1.5319735245828672 1.9867614518492518 2.805089837001466 1.7714357565324055 +4.500519278283927 1.6496816439606383 3.031992636201293 2.307264986522542 2.9415141311037236 +3.656405814076764 4.553808990880882 1.8554307969536037 4.502973288477516 2.795498829576355 +4.832590158781039 4.542273510514223 3.5407816934482317 3.2677083077106452 0.3985634582586151 +2.3109693516468077 1.5138943631645958 1.333580229041985 1.0961156571555954 0.8316958339231383 +1.0598556176500864 3.3620740976519783 2.165752875804965 3.452615824094047 2.6374658627822067 +1.3707880810844024 3.7407431087210212 2.802563099869989 3.1062407822333746 2.3893319082508575 +3.5735197512306103 2.2966853114801133 4.064287314274436 1.0416955609471272 3.281214271243989 +4.762974976211533 1.3636102586315433 1.539569846991986 3.149335172862504 3.7612531006969867 +2.974765587781757 2.884738598915554 4.660079788526632 4.325431622149965 0.34654617871732574 +1.0661564956135403 2.274745812603702 1.6044273616039302 1.884106237577686 1.2405274728149671 +3.2892605106035835 2.7987952126167395 1.5623145141772365 4.585544564342632 3.062756298622596 +3.117048936282489 3.0790545080039604 4.3811049076238175 1.7776841920466402 2.6036979469355876 +2.5583936221802195 3.246520724945431 1.0591448267378802 1.4219107148097385 0.7778933083068706 +2.490678578803224 3.896620140730528 2.5562058575148234 4.040849386542773 2.0447097798560927 +2.2396673025051816 1.0076244745104255 4.055200130911065 4.999101915174466 1.5520567349001604 +4.4456240262054525 3.4513106384691405 4.825981906356143 2.652399665790449 2.3902131431180447 +3.7852235708612647 1.3295491508952404 4.251027624857421 3.462377723859505 2.5792063746857274 +2.124737617140609 4.309399387484534 1.1775988371776922 3.0892552669583466 2.9029601024340606 +1.364564389368795 4.3415423746901896 1.322746329215554 2.326420423437216 3.141617356155886 +2.825199381805042 2.6852565053422324 3.1880525343787802 1.433928122330642 1.7596978324746304 +1.7075667099398064 1.2026174795760665 4.157827842750507 3.5333775632695326 0.8030640552214999 +2.25106414885913 2.4520488010506862 2.6073082541941526 3.95054589308738 1.3581907763477166 +2.4961712061690466 2.6526850230382544 3.9443121888414243 1.5130573592185566 2.4362874669126153 +2.195127399712661 1.0243603337912388 3.4994058116690216 2.8451171634886054 1.34118945633494 +4.1741379818139315 2.0528929537528295 3.910765282858919 3.9561647546018106 2.1217307984540543 +2.7301553484733994 2.795949923248378 3.611278970214727 3.8321595542918403 0.23047160018550414 +4.431187410989642 3.71677933557318 1.78291379620588 2.6235538323553627 1.103201961835482 +2.374038863821622 3.5030369453869494 4.811389277116445 1.3742620590055736 3.617800461835446 +3.3128563852163824 1.7228454756984082 2.2577678655262146 4.056100962366699 2.4004450878072725 +1.0780106715192113 4.245659987208393 4.189323654269696 3.475418332174727 3.247100706184159 +2.9554816918977007 3.1037539129651304 3.5594464944246558 2.7098687061992535 0.8624193120438777 +4.861140211543008 2.525386236272341 2.2865782705342683 1.569026845055344 2.443486582979239 +1.2453389216376243 4.5885766753711295 1.6519039127303383 1.6526139190451916 3.3432378291258344 +3.7800829126815234 1.7472602169694973 1.1219896625033097 3.7060981499752597 3.2878541310749294 +1.6075198694639878 4.332703512715694 1.8829896819336267 4.694781726860825 3.915711990604329 +3.2700139038661247 2.409764189177825 4.135763468736384 4.57672422731025 0.9666829688286335 +2.942282782500895 1.6267238003176958 3.640366517012661 2.0417342033690513 2.070343138184686 +4.039133521893808 1.4036415105129798 3.5373400250516958 2.373208016370493 2.881149332417238 +4.18685352569177 1.7309602943098699 4.508371406358885 3.3225533703683308 2.727191958485491 +3.079212446373584 1.2101815502172468 4.978689493641668 2.297517297038852 3.2683269173421023 +4.987551162723102 2.256382606766981 4.722014043823222 4.686839327973873 2.7313950541213416 +2.5584797810284834 3.14553668306755 2.571623888208019 3.695402117858938 1.267877484486991 +3.4632921583860194 2.6576304984995414 2.0065763466230226 2.71204598926322 1.070877269764338 +2.2694967200199 4.475047880993767 4.388380060703492 3.732381096678352 2.3010411913903734 +3.2589601162913153 3.9600266452997737 2.6657565099562746 3.22388429748991 0.8961031778278428 +4.999535305014449 1.1341827528030466 2.7380657370508543 4.927198002110183 4.442212334728158 +2.793819026028908 1.6882305389759877 2.6098230915738156 2.306775136609097 1.1463699078884892 +4.856767848774881 2.840440359245506 1.6922499141755472 3.983304488762272 3.05196782564407 +4.242425758168736 2.1182402112403294 1.3283811736092348 3.462151702569216 3.0108372436977877 +1.3887451702266622 4.667055108900742 4.88577834003352 3.7897601492262685 3.456670642191652 +1.0949471794705699 3.3150643057075335 1.6318878212731622 2.358146908833801 2.33588790751506 +3.105027980526523 2.719421550313636 3.845312401864626 1.804871206645657 2.0765578706523304 +3.2868180952469155 1.9095675544265212 1.1435341364549672 1.0478382980873482 1.3805711664637033 +1.8876061719673545 4.267792321415847 4.154980968096023 2.1955774556027854 3.0829447336592457 +4.154128137016119 1.0522287377698971 3.79031240280459 4.612212035525047 3.2089404621011743 +4.607812367242664 4.557911525976778 1.0345780091423915 4.669977299270329 3.6357417527406635 +4.494627942510627 3.882493521580982 1.4111932893592578 3.9570434149967455 2.618408182750597 +3.3782873578211943 4.294801932251561 1.9335976443470337 1.6311644345223169 0.9651242466895945 +3.0811875242061366 1.430559972521754 1.5208178415478368 2.4733359519703635 1.9057444910224666 +3.4911144573371806 2.0236657475483706 1.073098326235277 1.5354585877586846 1.5385651521131098 +4.958510351095321 1.1661605728668816 4.562472833460689 3.5023388794355617 3.9377405756228088 +2.0620195587050327 1.6120845069720544 1.2728301315211188 1.4154586912241451 0.47200048392021554 +3.875820578342959 3.5900026440194366 3.40086222115542 3.238206049650116 0.3288600336157134 +3.0820889841565164 4.968648654461994 4.965791490783017 1.4919883858757572 3.9530261068308707 +2.392932610710665 2.7118793850748832 2.801727346096247 1.7988068073224932 1.0524146768130782 +1.9439701575060995 3.740094218634469 2.5677626332456667 4.455175543361955 2.6054537294371403 +1.431696284164011 3.8076899712921284 3.86160529123627 1.5401138363781985 3.3218471632890805 +1.1981401653973873 4.870024148013507 1.2258930620901736 3.868281796736827 4.523820311062361 +1.4137310840604118 4.783484220620911 4.300140924410334 2.127340378719467 4.009525958603318 +2.1504631794996727 1.9954078445557673 2.7827208528324507 2.3987545905942476 0.41409207603109643 +4.267461402151076 4.156607089535119 1.648359734512288 1.0036324610884622 0.6541879972317415 +1.671375772361667 1.378752281436594 4.274341504159717 2.7574235144883157 1.5448846865801675 +1.5961848466486654 1.4458208859210058 2.9732587802345565 3.8708098073995996 0.9100588810899728 +2.04549531179575 4.990235491692525 4.116150138456344 2.9723241017468314 3.159087325376284 +4.887488523564346 3.844465004805982 1.2002192151036848 4.827658122710627 3.7744153307636568 +4.74659968527623 2.089727980546525 2.3938726330781095 4.249243464554468 3.2405814567275733 +3.280441400840443 2.411442497019852 1.7345800152258475 4.577876870857849 2.9731290089883777 +4.976949211834311 2.9576358673604104 3.7752932898641074 1.3540481334639742 3.152785195753348 +1.3605444105950562 4.790709860698619 1.0679047909669945 3.8646818610074725 4.425832915349197 +1.1454686212004557 1.353711247862913 1.789060611877408 4.011641837229496 2.23231545594409 +2.186824387519432 1.6541723617843545 2.735731581899519 1.429106992389762 1.411023032565813 +2.2090093173108327 1.0150305177038326 3.669472242705458 1.6142893068381494 2.3768387142991303 +4.025570416944111 2.3933018569909885 1.6391087395240174 1.9420921521015782 1.6601504751403067 +3.820595616388782 1.9889264609020407 2.4829045590620638 2.7517033665226505 1.851287307268579 +1.3565331075735023 3.31535326010472 4.2691339339125305 1.998439806532271 2.9988378098992983 +4.964883355875544 2.122767210432377 4.584395267256871 2.5773896026822016 3.4793240610531715 +2.187676195499076 3.4564792824424773 1.4082241856879771 4.591347717768819 3.42668012716739 +3.245525690181601 1.5368267512864704 1.4463447288200482 2.4676932602339385 1.9906795036877876 +3.9714676072652577 3.2533177918987053 4.453079031844129 2.9422596332727253 1.6728163116166315 +4.955840986268289 4.05140521395046 2.187972744700106 2.2377183091514765 0.9058027861685637 +2.516907949916535 3.930334072492665 4.523191463257964 4.929044255904946 1.470540680593348 +2.90660791801225 4.6354404197268035 4.763138292456478 2.1775991443943528 3.1102852771323763 +4.660325565187765 4.308805717757483 3.2595354920692796 1.864723013330846 1.438425546902537 +2.6587832762461807 3.3366340542009656 4.3791708678582495 1.9052317024367253 2.565123129867347 +4.805706531830182 4.559990990930857 3.719133985809273 4.815065025246734 1.1231388917858385 +2.4599566518507157 1.4770893212335237 4.830675227417226 4.576420539431249 1.0152209788796778 +4.822239655656868 1.6495061227294854 2.9853885230620603 1.0065478129924665 3.7392577641546194 +1.243571544627489 4.421213485905994 3.277276850662594 1.1152623313045305 3.8433988979661358 +4.178599536978345 3.6857655180065625 2.627699009417262 1.144365261656315 1.5630624995509348 +4.827193251162627 1.5396831254558547 2.8423508410706577 4.092144269993801 3.5170593457608907 +1.3592346229787151 3.2329069537774267 4.607622453428463 1.1559172151610002 3.9274568177236167 +4.9177301297224325 2.8578273886471397 2.6644891316855275 1.6390818963571783 2.301012668577301 +1.734581403756947 1.4083494458094012 1.66638674541402 3.7957743532782193 2.1542327810410615 +1.1647290112719735 1.0065982467261199 3.511260433837238 3.6235318322161953 0.1939335081666464 +1.087937577175916 4.690780804877149 2.743905683040175 1.9635789857036352 3.686378857085743 +4.661349435367947 3.5746867944798733 1.2138913716651034 4.950382941839775 3.891298619881058 +3.5406699599772287 2.7433373342359957 3.7270999585545797 2.275901115844254 1.655813213244537 +3.137663518778683 3.3630680924244207 1.3750402834220994 2.014975753357742 0.6784722746746316 +4.429736132490972 1.0124308246646656 4.361549055500925 4.505030613056427 3.4203161439048877 +2.9524235660357756 2.711410876655693 3.9661518810382654 3.5480239954906185 0.48261583595523094 +1.435326204003641 3.950692742673922 2.44034918014136 2.1865761066285976 2.5281355969769943 +3.673073093200565 3.4571470717078605 3.727929014406919 3.68390335891302 0.22036856649562198 +4.438896298565253 2.270306581205572 2.5233066439448923 1.874906675122023 2.2634495536255366 +1.1207794473434718 4.848329134470362 2.5526348864885122 4.927998421894214 4.420065451476352 +4.265267341681357 3.6664225826728303 2.4971417258236315 3.9398460544082075 1.5620534002103297 +1.2022144743457002 3.824706872951528 1.2988087560275328 4.094713021110375 3.833346715372062 +3.7396987055945456 1.4301332311884463 3.8586249104111814 4.306179310997015 2.3525300470031016 +2.898565703646595 2.4050598699057066 3.105047096369358 2.5988012283798763 0.7069886044291754 +1.621430521228874 2.7050010434825422 1.4923751906650997 2.576053914956014 1.5324766406630383 +4.452060905332143 4.003382380087584 1.6089885915836333 4.174624615370194 2.604573021738293 +1.1650894424415563 3.629105082317563 2.0570475480093218 4.097234507688281 3.199021085269311 +1.3726394275666989 2.041813404791005 4.5080456030747005 4.715877979039092 0.700705436180711 +1.3632881250214828 4.959728424976273 2.893941140429551 4.0462421573563905 3.776530214992266 +2.305298651909054 3.8091338423748793 1.379628061384531 1.0160040192354356 1.5471724933284694 +3.320106182976039 1.0681113303615017 3.0497276641981825 4.039117978043189 2.459750802283169 +3.168946120528988 3.8990748434187146 2.353498453614764 4.142676293294427 1.9324195439886669 +4.89298050127903 1.1685849932258834 1.1458864935141886 4.696334016327403 5.145561146527845 +3.197014117561052 1.5734295943349972 1.465734107367973 4.376560526164604 3.3330072223779523 +1.9544695293228584 4.584909133542066 2.5013762954750676 1.7025056973784172 2.749073797472196 +1.6737267942332896 1.9643584951270476 2.224640681924195 4.0588368669706245 1.8570790049977075 +1.9983775896424487 1.0153125041959616 4.7633460741205225 3.3613344745141482 1.7123240019501955 +1.4233790325019742 3.7410821478208653 4.9730402254502515 4.470080808869835 2.3716483519876648 +4.809028935254343 1.009838755385681 2.4566710367132 4.735015218550091 4.42997722722369 +4.128670585674858 4.983169370110927 3.5688976792687246 4.394948835877059 1.1884985006034665 +3.6484573215001803 2.0455659506178048 1.4457820853452774 4.531204806638515 3.476937462181589 +3.958456893372823 4.6166663913761585 2.983784398959542 4.37237982788586 1.5366967848267492 +4.14505807628532 3.4911193160592333 1.9533014817229368 1.9933840563628804 0.6551660208800498 +1.0668015992987923 4.67982542340472 2.606787213040298 2.9132151763428995 3.6259949324634757 +2.6360563300130173 3.2113257815506806 4.707021393381805 1.8346248571760642 2.9294362602861286 +2.8955556542307224 3.9543864998540594 1.9880698712074332 4.418687168997883 2.6512305082662233 +3.188790283759279 3.774746016385256 4.16715532763519 4.309888157913717 0.6030893643868743 +4.711789511609501 4.980114497677585 2.6035752295894206 4.352971794916737 1.7698549773717194 +2.4343729472869575 3.1919249993063494 1.0623756626409855 3.2971751961425277 2.3597063517432635 +4.742608606789973 3.34810882112996 3.63578196841144 4.772132517490887 1.798866927429314 +1.7896069120632379 1.7278121248575902 4.838120600644713 4.653779722317454 0.19442261995008825 +3.3898200307829747 3.88711073249088 2.8396560289974806 4.803169906228291 2.0255085257986725 +4.201847284452383 4.038312535257086 1.6721269804221426 3.958396041389888 2.2921103449294726 +3.786165212118208 1.911017257835601 3.4469365762469164 3.3178486654789103 1.879586002064469 +2.551644891816787 2.118364065796155 1.0417243860878886 1.4813368942692517 0.617245033634642 +3.9916617609872276 1.9083083845689357 3.8055456202501894 3.839078912251959 2.083623231946211 +4.6389068321904645 1.8714736136448962 2.840653508467025 4.6089738054719955 3.2841503150600815 +3.4157039795173327 4.008461777548783 2.042145200596034 1.1534105384712565 1.068274827368471 +2.214301602682692 1.6212747253693078 3.832813122218471 3.8347332978977073 0.5930299859962418 +1.2626773873539294 2.8861043944393714 4.384993149087416 3.3311246544216124 1.9354983987034353 +4.07507805138949 3.702299734112131 3.8582902415445153 4.752131007538227 0.9684601121287161 +2.277134701617576 2.6384183075846916 2.6958395229777667 4.051467945710007 1.4029448543902585 +1.9218562414902878 4.818875571971105 3.284022902531516 4.004857986024673 2.985351607227214 +1.5511526876742265 1.4290668483041955 4.578684879265953 2.423420208906081 2.158719701924299 +4.389234297333865 1.780905440359715 4.675328923193156 2.0763184919938094 3.6821508181505944 +1.9453099523254598 3.580902406428654 2.2821389779051793 4.826638559950623 3.024837317765824 +2.4197157263280595 2.4351299851773454 4.330285492033809 1.286581854479909 3.043742668596463 +3.8543121535636 4.858494320255472 3.177466446635649 3.798985410533857 1.1809604762171704 +1.0117382161389097 3.0398292806808773 2.0299602731397712 4.424110818259957 3.137691858480411 +4.822976674935334 3.6887039780071107 3.148123349437601 4.325974768972842 1.635209013397984 +1.6753316758944736 1.4181255135756121 1.988354990990329 4.3104807543140025 2.336326833006536 +3.2386045251642317 3.3241051395952175 1.1933107000894383 4.038192809589324 2.846166645159871 +2.4932717606090407 2.4098638894829416 4.611641372391102 3.9297550301366404 0.686968599514531 +1.1362357608359264 2.161225287633508 4.480151230400913 4.040580575721425 1.1152694250718453 +4.113387159458936 2.63877446485322 4.901386934877465 3.3113915653364394 2.1685404940314656 +3.435046037197314 1.3536879765851042 4.8026361631389625 4.546317673727865 2.097081434873097 +1.4068735467701816 2.946052593567746 1.5323369392546389 4.056314314056333 2.9562702729303205 +4.721581306576524 3.9447138303478773 4.816322984202116 2.003296526002595 2.9183284479565366 +2.871933847742244 3.732762723187691 1.848833141956999 4.115219361028238 2.42436235880627 +4.65319090408869 2.9943329363578597 2.7889719985423613 2.409926178143553 1.7016126148644601 +1.1311499586261187 2.642189709766735 3.807802129202778 2.067089798900532 2.305064108955187 +4.169986461530078 2.532082918333617 1.0866560880046925 4.320181997774348 3.6246955494175235 +1.9272581093969032 4.653088257338175 3.383474677520344 1.5655791149495335 3.2764148503875665 +3.310038637883195 3.053867750571917 3.515744531720335 1.6891143548366259 1.844505713357391 +1.6004345582339834 3.187720884687841 4.997781439558631 2.1698005034351007 3.2429853618580364 +4.547222108976288 1.6414255103118531 4.433245202764628 2.5623043867016957 3.456019879864702 +4.875531126629665 1.2113631542058028 4.9923693198873895 3.8827631278313177 3.8284922399798553 +1.0085111022841913 2.2844278586824305 2.2671992204329237 1.0776259454570645 1.7444334741670704 +4.652051096265279 2.1806152039740647 2.9441442665079323 1.903507386304533 2.6815891717682505 +1.6549008363834141 3.067312935107806 2.0237527105390947 3.010997144181026 1.7232409896413268 +3.579840380671793 1.202383302254285 2.037243723487375 1.255728675382445 2.502612221286383 +4.8106683968301915 1.5812673974292006 1.5537649561411158 2.7977269845608648 3.4607040241954086 +1.9410676544750456 1.3367011126250095 4.80015635197966 1.6384029925705579 3.218997238682027 +3.4493608862808878 1.2477209203065116 4.82126998684412 1.5337497840243848 3.956640952085944 +4.00850687399567 2.3822329209895803 3.858496004746038 3.99749046669412 1.6322029379578664 +4.410687751519282 3.114060196218635 4.111200187656431 3.76814704112963 1.3412413945695498 +3.10340538869958 1.6548540197568333 3.239208945961802 4.858771061314648 2.1728512406403 +1.6148273855898223 2.419806087131334 3.329470157454827 4.835151771221518 1.707356972624801 +3.1395432885236136 4.513640579860123 2.417071308474357 4.099294661007438 2.1721000837590263 +4.631288841212626 3.5398424206136623 4.891019032498107 4.668536112850397 1.1138913495369556 +2.9664263743422334 1.1594457358907255 3.2337214229100324 1.9789576985642539 2.19991159633125 +3.6544581061671706 1.650157979624697 1.1124145673614536 1.7946592844733757 2.1172333010996454 +1.9387148595295143 1.1286671470747391 4.099099416721254 3.910611114381862 0.831688124582767 +2.658716010431582 3.6578982858637277 2.300143580592495 2.4830984824373097 1.0157941305435891 +4.588831518694074 4.597814434009965 1.9913636937190224 1.854784110266567 0.13687467035072165 +1.3364647124929263 2.821316825799356 4.359366302729008 4.691871766258856 1.5216259992743846 +3.887828026480679 4.24354993851355 2.915426926233361 4.3881740716562145 1.515098093540971 +2.4149748949595042 3.1901314983591185 3.9713829765423525 1.4047373107007095 2.681144855053102 +1.9929129343153624 1.4141524591861567 4.69150872221169 4.26061338295526 0.7215500543723202 +1.2822028697612935 1.0060810748349263 4.850243134617794 3.3655773398798847 1.5101244212640583 +4.175087669570762 2.464526871283638 3.1504352831737013 1.017760067353242 2.733920595191368 +2.0809799638924567 3.7965658835131015 2.4310510265763257 1.67733741537729 1.873851449637165 +3.6736347585270623 3.2033582255785276 4.361245873124126 2.8064612114834877 1.6243507507663144 +2.691621751769803 1.054244098116119 1.1301163702983241 3.275057818536836 2.698477236712581 +1.3727364015978285 4.481056068119319 4.550087830349634 4.255612029951102 3.1222375224035446 +2.704095769397198 3.2703518612675326 1.2344169305612316 2.676657967537663 1.5494209145093907 +4.221163290080272 4.002764300055452 4.520560148411773 3.7125154586129185 0.8370390310827738 +3.6271826514115046 1.4668990932555581 3.585981488480849 1.5907140474598398 2.9407341282131307 +4.936159117600663 2.1631274885774685 1.3858445625252696 4.962732937406603 4.525907076147748 +4.978450063761938 2.543880335771956 4.981002493318037 2.0219509464627943 3.8318554014199995 +2.083416569052768 4.15466325698193 3.0401168460817676 2.9154252261075326 2.0749965885151047 +2.56359767188134 1.320351070055064 4.636343380746419 3.724058311292482 1.542052580459291 +4.88890639311748 2.8569441283319295 4.666620906349564 1.559441570571939 3.712604755450802 +2.03938460443331 1.3974790517686664 2.885247630074036 3.935188793374756 1.230617399899323 +2.101070752761381 4.544930059856001 4.97453830924656 3.4685741038226534 2.870605598282539 +3.538760923926768 4.492190688923495 3.3928787087425847 2.8045133543020744 1.1203580262967823 +3.8917539899575484 4.661039614303325 1.8130013309619795 4.144006215091277 2.4546657902166054 +3.156714202707303 2.2970435705976557 3.822831782330699 4.963061591679407 1.4279907611182896 +1.8306847936757857 2.772737188509475 1.9544689910278872 4.615513914221381 2.82287491714843 +1.919523973740766 1.6027229497576392 1.4998580210900667 1.7711901260981304 0.4171138933251501 +4.817495706630993 2.170071054529315 4.00473502121517 3.6970722332537256 2.6652417675798006 +3.11223379879866 4.803202727174879 1.8724145438917446 1.00903026216653 1.898633280721684 +4.661904494768988 3.3329893575602307 2.593144138181397 4.141060127340266 2.04011258301993 +3.290086648939746 1.7328268360842238 4.8875476492151355 2.933623104764576 2.498575444156358 +3.4559199957178777 4.172998983375371 1.4307592719466085 3.372130935619263 2.0695715042131364 +2.6042941669597814 1.6316951109326951 2.9554486194649696 2.765058033092847 0.9910587768462071 +2.844126326549614 2.2303461015388573 4.761313110106801 4.6970454061913625 0.617135724440595 +1.6827358181582346 2.455889220682536 1.8096306903989365 3.719553978166519 2.060478864000268 +1.5262299985214272 3.2586353312569765 2.2724754151948288 3.064508175404177 1.9048737832558376 +2.4231774287582426 3.9874739083667525 4.661781813856919 3.6597583003276264 1.857706811577426 +3.937469816916431 1.4361896465803152 3.099629057593303 2.186482716291029 2.6627502194442494 +3.7109063086819383 2.0717732820228973 3.479085365713082 2.8141047362140448 1.76888561436102 +4.317350878376169 4.937179496233274 2.9186388107260695 1.9432257826474006 1.1556894439512053 +3.0744274704670596 3.4071575177892797 3.601439307129548 4.071626286658024 0.5760078819852711 +1.8671870889724809 2.2800315552066754 3.6795715746255433 3.1829388093285393 0.6458209170247942 +1.2423053849670445 2.356009514426196 1.81425428076597 2.569556682668991 1.345666602949943 +3.3731725693476933 4.78478289664932 3.523580981871256 3.8957035926161865 1.459835248777145 +1.21461716402067 4.45849494065234 3.787247041351941 4.793352985976204 3.396320391472676 +2.375907197270862 3.07559262791588 3.6313909598313607 3.2015910644959558 0.8211502005645674 +2.4532884759098663 2.1853817147595787 2.8623089167947393 2.223302626320091 0.6928947047973509 +3.5675823358409424 3.105120776255869 3.5895984032994597 4.098942695033054 0.6879696952740402 +1.5219994779111445 3.95144698223765 1.39264844129994 3.100169643800665 2.969485449243321 +2.8680340901728916 2.366548960021422 3.9849125154329292 3.002140080214204 1.1033263321378586 +3.1251758336780293 2.7289151551879316 4.4363233802410456 3.894373683805877 0.6713657712332405 +2.1031033506633108 3.9014913274591008 2.7268665958673024 1.0620222584871892 2.450694999952112 +3.468021400768756 4.683707884621857 1.2237933337569578 2.052367123895333 1.4711995625092427 +1.1365911712937469 3.187497498521776 4.419476418278403 4.541862218553866 2.0545547077586006 +2.5979352265493767 4.68672844120131 3.7206747106510805 2.95554851220499 2.224516844873179 +2.3570602756092405 2.013235459450414 2.3081069248359296 1.3950031900884152 0.975691516113833 +2.1013499670195457 3.372650303348774 2.468000565268964 4.641415491356574 2.5179231493616365 +3.5557209654533892 2.643126944094774 1.4578668256233343 1.5444500148650322 0.9166921492402738 +1.7560880518913158 3.2045239982796065 3.2711273014067888 1.4433284728226252 2.332126765114492 +2.464324633226907 1.5432302982093633 4.705409502081124 2.8437460510165438 2.077066580307693 +1.1825494630523545 2.8668267757908215 2.219433006739985 1.4587752094667623 1.848077474230467 +4.5309089892622465 3.2486201869193017 4.666449846089078 2.7752643672889628 2.2849173043763584 +2.104671870110757 1.5035602904550953 3.025919613788349 1.7052394858591566 1.4510448413137318 +4.442717945343281 2.9252308977075865 4.738608129349319 1.9193105263716679 3.2017504452873315 +1.9717552886699035 4.96082582292456 2.8969100768436804 3.751419471242488 3.1088147200927296 +1.6006293656468387 1.8567254211117534 2.7442405704721584 4.283876772584662 1.5607898079113995 +2.481972037845692 2.150429775011225 1.117053404447749 4.371623460079633 3.271413535317894 +4.401669535666882 3.332091855831718 1.2604931056967899 2.0264288532514336 1.3155432271817078 +2.186175179636068 4.975168212717797 3.99782640823163 1.500149823553543 3.743911118099309 +3.5466904129611843 4.613775231693683 3.9527548101564864 2.890327961041832 1.5057957431501334 +3.9644365362371468 2.091820409758804 2.831416118636098 1.311396834506851 2.411876817184398 +4.222008671374112 2.906045705166128 1.1166817190149518 3.8206285900548522 3.007172627209383 +3.8422700483177388 3.6642815486927636 3.078068579566797 1.7018865193123456 1.3876443957170497 +3.881332256191745 1.3722067161808473 4.850696903821698 1.4600726271947293 4.218061635489355 +2.850180010757466 1.9215469792468411 4.875121190423 1.6102484639850032 3.3943708146063374 +3.898726889418832 3.3540724732943485 2.7590654116502273 4.54068869747992 1.863016362143525 +4.341696243160526 1.5267732587307923 3.9647504319576092 4.080720515739653 2.8173108576447885 +1.8175792840968068 1.6454455805748167 3.8988793594129354 4.179862966375958 0.3295175249818235 +4.804545794118167 4.592168643304024 1.1984095200300886 2.5928423900627386 1.4105130567334094 +2.217895688449376 1.0856114700231987 4.415708319351175 3.2788179532462456 1.6045520421099404 +4.356934547629383 1.4126306548608238 2.335508844157667 4.837533842426513 3.8638134666329726 +1.8551735599712718 1.8338510056720878 2.4976224769068676 2.8096198318472685 0.3127251202120613 +4.653892024778974 1.7124222351779284 4.153987888342595 2.052891448958282 3.614809921797972 +2.171498825308398 4.629007871222161 2.3123539035750493 1.9455544246022134 2.484731890672053 +2.607652736448555 2.6777786018896914 1.1092407428939803 3.332836829664041 2.224701596642344 +2.276211180577756 3.313329811198634 4.9203191719681 3.3423985843716064 1.8882395067209536 +2.191935945052835 1.478441391779696 1.2166227533785743 4.227264310272955 3.0940324920158573 +4.055070846215678 4.576432243670828 2.0652917403188695 2.5731936099625172 0.7278612614667029 +2.392990586296068 3.790023328787829 1.5667283901576843 4.032529001464301 2.8340559518672417 +1.5157045516660488 1.6068941837879978 1.9123485206201392 3.139525172120067 1.2305600688276503 +2.6299801642039595 2.4598951408366023 2.3076863203029063 4.460825016249853 2.1598460961739825 +3.943582593167899 4.562393597868417 4.530373398114973 2.3048041266740493 2.3099968921019243 +4.5563361481866345 4.847631045158194 3.8637806954360348 2.5078149250048822 1.3869015421372277 +3.9563675963617686 1.1917453642279465 2.118048700920284 1.1823750443383858 2.918667723128129 +2.997045800741616 2.209339971938969 1.3308529509448137 1.6258769281125218 0.8411418547626303 +3.473824739527955 4.6538110953317045 1.5194337963736322 1.2154459248484648 1.2185140236851666 +1.78216322791766 4.627539292186995 2.44561935694048 1.9598503805360918 2.886544031459388 +2.522732833495199 4.361742867936467 3.529798107727157 2.2461796816910593 2.2426845900471744 +3.6403009568603544 4.117365661031945 3.088179847376785 3.549662167518011 0.6637444265447783 +1.443250255986642 4.566321995762359 2.941533107750131 1.7929586982023706 3.3275817444585356 +4.753571632007326 1.0086505974311564 3.856358679928738 2.4050530362043037 4.016306963706514 +2.5192758887577242 2.0654478406240284 1.7609141725190685 3.7822476100633917 2.071653630076126 +3.2310127858072826 1.3137275598007827 3.4653761654679642 1.6310576890695723 2.6534330424413035 +1.5288964997926437 4.498727148776307 3.5336371281603967 1.7230473267059558 3.4782365521588035 +1.5263422259498798 3.1226317464005486 2.6297928141183204 2.341537158509488 1.6221071345910245 +2.6158534825207 4.467213378381977 3.8909363524461513 3.8181174774346194 1.8527914217637735 +4.620959972299909 1.791745217097311 3.8575303785695274 1.4418632291326423 3.7202021326702965 +3.637544506158585 4.376211637709659 4.825587189309735 2.588234728787112 2.3561356420716795 +4.408894393988085 3.689050158720275 4.741435053966211 2.3448410340579824 2.5023666036990226 +2.759958600346844 1.0780649559062785 2.1913762786105155 3.1743540188091868 1.9480789175327713 +3.2099248240759617 4.072319496484977 3.788178601761167 4.0526631734054455 0.9020402760616125 +1.6273533227732355 3.097873279437359 1.8524569667462227 1.3026324614830505 1.5699477473901313 +3.9685773906297634 3.833655133498375 2.14251387523335 1.668467350939249 0.492873333286298 +3.461903935312943 1.0072920595862143 1.643112212030604 4.910086392351317 4.086347972865366 +2.0384897099412407 1.9297638286133059 1.0058462305653428 1.962180395634796 0.9624948584536046 +2.6050589655522094 3.952465271052389 3.580938294108931 3.9973170988109037 1.4102748175822637 +2.025907806490002 2.1238829381351363 3.1868641109156974 3.363264668969409 0.2017827626496926 +2.596013467119876 3.5509415450771926 4.97823973904037 2.5386271389912323 2.6198468032291062 +2.411566393513785 3.8687743108961334 1.7146239409544495 4.827285352626737 3.4368759038108316 +4.1324420130340025 1.6779437689991084 2.6531226785210893 3.5554739991881914 2.6151098515894207 +4.377496903910723 4.52453265729379 1.9807543538687846 2.9912745623141936 1.021161399803909 +1.0928104219545562 3.7671460227137143 1.5513275649922567 4.893648645923223 4.280558504859313 +1.9171231860481082 3.371623340442418 1.682557274357515 4.227406268416008 2.931181860904163 +4.000005203759526 2.91011926313316 4.854848271442637 4.042109483101395 1.3595571711588332 +2.5150004590989297 4.251595053216739 3.2097425943203173 3.7414138040302407 1.816159425698529 +3.939598235519246 4.231401687193587 2.475567354995369 4.825607573284831 2.3680874734660966 +4.771487020662877 1.8102911903049232 3.2901232538310117 3.5442953624252085 2.9720841519910826 +1.2504345815375504 2.776717691510356 4.071627449535359 4.6818062402148595 1.6437330344016812 +3.5071514487173814 3.3067121231826717 1.1621929419395198 1.8532731141654062 0.7195607880259804 +3.017894370124053 4.176658115814208 3.8741585240485943 1.451844390575753 2.6852074742090526 +4.453020591208397 4.965304265115966 1.5354578257447833 2.499802418958984 1.0919684322422962 +3.6685213089463695 4.865087641381566 1.5437243058970855 4.241885858344202 2.9515837699481353 +3.8126969449592027 3.179255930440153 4.626222576748804 3.553714676515717 1.245600543889295 +4.504572910330477 4.319930938935543 2.5073727137625483 2.110222543097028 0.43797364722122223 +1.0470085075074826 2.20103343013899 1.6390905948598373 1.4280742123482821 1.17315874277223 +3.746303819905363 1.0329684067581524 4.864792702680455 4.315593781695278 2.7683584520524116 +4.317083211202956 4.504216658681374 1.4828853572259226 3.9625364097431333 2.486702288054376 +3.480259770523001 3.776531627720355 4.325362159504232 2.904802468257697 1.4511260626705111 +2.2191925330548896 1.6765601556993142 3.0311483210529433 4.217541002251212 1.3045985938040028 +4.130418151628425 2.748025199582613 3.044400507080895 3.0343588853309305 1.382429422441994 +1.4530274396351803 2.171004446360303 1.8092805867076254 4.556956181977213 2.8399317173175223 +1.5522250754422418 2.496486485524685 4.643224967691884 1.6361983596955754 3.151799268952366 +1.743941799392847 2.672945308381747 4.434191899975172 2.0576512135133203 2.5516647809072137 +1.3515177401411433 2.686938336124398 4.383644833214028 3.1121171740032936 1.8439443474015695 +3.5937341183266422 3.565605803668065 2.021140807000571 4.157885971759304 2.136930298630575 +2.277849854678927 1.523188755580942 1.9119620786180334 1.3882237967349131 0.9185941227776614 +2.3104764065434824 3.25383954885606 3.9436338729089777 1.5834669663989955 2.541716318722205 +4.844379555790738 2.127254054977348 3.6561451287808495 4.577609089132638 2.8691230049263514 +3.448056446275577 2.570124118687436 1.4497218044248559 4.288422751646804 2.9713613444990354 +2.3498495494147305 4.768082321798651 4.17372382363004 1.7715942768211472 3.4085299032110483 +1.3409379171612206 1.2310676499520397 3.8862764051942666 2.019809005027218 1.869698379820381 +4.657324877002145 3.3843052419483084 1.9306495865749795 1.13186963686853 1.5028733809891108 +2.4311501203101207 3.089108481717503 4.277414603304585 2.037393002048739 2.3346532889143714 +2.949789089376411 1.257033058833323 3.557291205271003 3.928836950883872 1.7330519957644133 +3.634310409767197 2.44356571906371 2.0399118270806333 3.3794359883596456 1.7922605550222839 +1.2365445696392765 4.1211854286315095 1.117571933462052 1.6566528461203132 2.93458022820299 +4.743504174295488 4.977820734376347 2.796526401661063 3.6554506048059148 0.8903117639771728 +3.4994790675293075 3.7586176560783344 4.575101381872681 1.812629923280257 2.774599316588422 +2.404698264654519 1.6935737540808282 2.792120999995904 4.542829454413214 1.8896238149184397 +1.0570997663772537 3.0472817418949596 4.929198202046942 2.335880936766428 3.268962944739136 +4.092798290971768 2.6660169711121187 4.3549479342611 3.4553025667482076 1.6867325579320063 +4.36282540887324 4.176321286586628 1.516960240793885 4.2985719342263735 2.7878571341929015 +1.1857463242921717 1.1867757786017723 2.908390630421052 1.3942415759058946 1.5141494044727954 +4.962227063094352 1.6617624096269212 1.5185612410007026 2.3592261777098495 3.405845631352085 +4.732030887245879 4.716090506543945 1.8595216211096397 4.938702067599397 3.0792217065001646 +1.5921597515686559 4.62411142182731 1.9891351401289632 1.7789610450334896 3.0392275467680014 +2.137764850427351 2.2824048905982655 1.4054411244397276 3.822145637029681 2.4210290048641068 +4.458441244916774 2.2017946998560447 4.815986119120865 1.485257416144747 4.0232085854655235 +1.2405799366804415 3.838605459329155 1.0495069258391205 3.5227206106504236 3.5869935248160156 +2.776594930022559 2.308580415315302 2.444592979566632 2.359761343132818 0.47564061277051234 +2.7817637878089045 4.292023674134396 4.491002240051056 2.029887277163888 2.8875546375421184 +1.5409521937366177 4.443838150291961 2.0222680782166482 1.065255901005592 3.05656983955814 +4.252517779730411 1.1307325198317497 1.0720996802311213 2.8137102327610743 3.574737826135539 +3.1772840522922237 3.1111208120149167 4.404675388311933 1.7371426845351898 2.6683531063340276 +4.638083848221167 4.735027252370468 3.8852668148512013 1.7158930748316195 2.1715387280669445 +2.075794950021997 1.6615102322312012 1.8776764413903213 4.338640054450472 2.4955908583341686 +2.5816656251503125 1.5240930968321371 1.6666058431608461 4.04397930780581 2.6019923602984116 +1.6634016584994593 3.240122401124901 3.016766274858622 2.3769788749939114 1.7015805056625946 +4.301365161071433 1.2508122058541442 3.4179110412425358 4.864282830253252 3.3760723755024857 +1.2061358676021077 2.08392865333134 4.192130086542774 4.655208149492944 0.9924522492613774 +2.1254277301977123 3.4100074611974986 1.2839969341431146 3.7390650369339222 2.7708310079534515 +4.242810450919471 3.7105272431427756 2.755130421108593 3.76831562284381 1.144495376266886 +2.5097715976858277 3.6851139481128214 2.4961014671634185 3.9211246437525173 1.8471926522491735 +1.6205438054963355 2.6033242843932234 2.572418354752915 4.104120328500734 1.8198814263802359 +3.693453800889229 1.1035376825098684 1.7528062540347653 3.483987324215257 3.115229268929092 +4.93388156008128 1.0202775068569925 2.362794028099913 4.0302472787118075 4.2540212773785875 +1.4507150959353177 2.5584248720562446 4.630727949825609 1.2065170631195796 3.5989222198805524 +4.2216544277550865 4.570857019688947 1.8943808336793881 2.01218552046309 0.36853818586617615 +2.4629461826066756 1.3135931156122211 4.511738707947209 4.624238400025829 1.1548457270680546 +4.717267711742338 1.4659975275208939 2.3369619135693274 3.46060589421124 3.4399612797297796 +4.57627069767266 4.391727295700324 3.596083655089231 2.391308994680359 1.2188265871627662 +2.927394319087717 4.722282052164637 3.590967148058478 3.128967765028272 1.8533929438384875 +4.378726285960957 4.851049111900756 4.489003897628477 3.9778654754695415 0.695953546230554 +2.2116777426044067 1.306266336902075 4.706300908992043 3.16894272001303 1.7841636737689464 +3.181418656089865 3.650471735618931 4.555712920010644 2.9495119915357293 1.6732878455452247 +3.2997860011033526 4.672771938902175 1.3106318444427112 2.766635172656301 2.0012586232574647 +3.0658627439536374 1.3247903114093402 2.4736882349065903 1.927713856927876 1.8246701720516396 +4.169345431969028 2.738080132643323 2.624323473130232 4.748686745409002 2.561530727838506 +3.1518165877984576 3.88212020915576 1.1604182788129895 2.169105566330735 1.2453085655240215 +4.74052772062835 2.14445315537829 1.9765885298380974 3.7084248616190267 3.1207146983366987 +4.710030458222775 1.3997365222751705 2.63463783259635 2.36508457556735 3.3212505025587014 +4.207462272109424 3.450154487090041 3.3055317254810976 3.244298820633741 0.7597792770844766 +3.8573501018707668 2.6347862121670773 2.657685815829912 3.7438857491801403 1.6353876481181626 +3.40943733916705 4.592831107372005 3.5123619888207545 1.5085353340642333 2.327174697554748 +4.961796325252813 1.3604646344375704 1.489718388518824 2.1976496413118767 3.6702529348740143 +3.4474827641154926 2.0917222876665784 1.6018402202306667 2.460533604411856 1.6048179951438513 +3.2374010134992792 1.7632730492153708 4.985448537302073 3.529968920613089 2.071587355068796 +3.370102452003224 2.5470663073668467 4.449979299375534 4.600945699236114 0.836767201355775 +4.900026119960102 4.702366209488737 1.2230562407275767 4.432175474973794 3.2152007246541503 +2.645718784019043 1.0610299015251528 3.885754671636923 3.6678556699168134 1.599599584036691 +1.2314934229714316 2.19408100989724 4.305240347624771 4.200237676421529 0.968297693616724 +1.8140977252497534 3.964057101905343 3.2745762463666916 1.9579491169694392 2.5210776106923287 +1.9096718676037177 4.906337934458863 1.2619247871438968 3.192861655738026 3.564901780798061 +2.1937901299484426 4.379458497270212 4.490490683130793 3.596839304883047 2.361304511865233 +3.0143659074796876 3.9824659108872114 3.7371074758286857 2.011365888327007 1.9787373861709041 +4.049896410569726 3.8858747674725027 3.5729921822009003 2.135097902861549 1.4472190773898557 +4.444251383811752 1.4450804271192808 3.701898558872042 2.1812500454288246 3.36264751779081 +3.4964846040599267 3.948638139980815 2.085956569694995 3.8458768869431887 1.8170752166899267 +4.378871514626525 1.7250478121851818 3.036034276693269 2.9370248477791336 2.655669992799064 +3.995479910365134 4.356115655822014 1.0347060609355254 1.407349318353556 0.5185760679016729 +3.318364271856051 1.9562274099142805 1.0277319547043207 4.275983364751078 3.522293862461127 +1.701143203791164 1.4669533545574138 2.815575608826804 1.5611630584268785 1.276086099009378 +1.748976309670986 4.306443930964555 4.085426456714583 2.977856427015532 2.7869969509586014 +1.956040836795693 1.7647822463769178 2.5038444874805235 4.917359835043001 2.4210816139338642 +3.2180313536558036 3.2903772410213286 1.1100741249009216 3.936808666664138 2.827660180611526 +2.766150218713543 4.884574098477708 4.582988893742851 4.015113589956219 2.1932172931576615 +2.7045837243613406 1.8069698070800713 1.4809766277019234 1.5473002276038197 0.9000608670534301 +1.3209947825002692 4.102885704870742 2.983586295563236 1.396375104006534 3.20283569209694 +3.6138444436351365 3.2017099007840737 2.4770282326805186 1.7113154703153164 0.8695808851740033 +1.5898511382586804 4.8608171367556965 2.2443415688523563 3.5388489071240703 3.5178072448846454 +2.010949969955753 2.9125615856089757 1.712086736808776 2.777968336685077 1.3960684404554375 +4.731674845848568 4.330022715278844 2.7031251264038136 1.1555483409066363 1.5988490676111287 +1.8851581479782418 3.3376723998988984 2.929302037043595 4.646839581156238 2.249384997609149 +2.5418149578654456 2.6451157695749763 4.528763877598344 2.5927913822812525 1.9387265305669423 +1.2174825202590478 3.4136873158917727 4.0136477184602875 3.1477293071256582 2.3607478051347344 +2.055002408764907 4.218637365321163 2.5840987549639243 3.192184319277491 2.2474617413337077 +2.8240948849296172 2.6899542846832394 3.062963025150456 4.203701461198879 1.1485982239724475 +1.5252568873485468 1.582950191396249 3.768003356978067 4.474581348982662 0.7089294577863063 +4.5461162209205614 4.545175524718395 1.1216739376863818 2.2569099063073272 1.1352363583677547 +3.251359952232968 2.388860037209843 2.4086260196612552 4.520939810446238 2.2816168946944893 +3.676730592213486 1.3473741971081785 2.140447992325178 4.737045782404188 3.488297765223203 +2.919383807201006 3.2529828734574124 1.3347369595360918 2.052573673713732 0.7915667282222627 +3.3397694569715997 2.0619540462937667 4.967902446892083 2.4231262624950998 2.847577576193461 +3.123504501091509 3.651522728670391 2.9850130542329927 3.171250233999417 0.5598995765160889 +4.932394895973012 2.7185805984525344 4.883899164164765 1.293872732577955 4.217732035513637 +1.2396884443062706 4.958470355013661 1.7746545965721272 2.9116752640817123 3.8887214991239025 +1.3696638717442968 2.2905332910600866 4.10495601655329 3.0438814445482976 1.4049483032434245 +3.1521435799925426 3.855309040438662 1.6978404719327886 4.876047138900253 3.2550636372766726 +2.1485319519451966 3.426254650595128 4.85352801838141 2.8263880738609957 2.396220283971299 +3.2572262021720606 2.9544312315442998 1.5195975984988639 1.4755905063098433 0.30597617292919965 +3.4146445490212414 2.0673980131197625 4.301767096675731 4.0293057616810035 1.3745211557359327 +1.6793529129908298 4.027526182343192 4.099850443780763 1.1445272773421675 3.7746327928673553 +2.6789642787716144 4.2265655164628715 4.172379163910627 3.6297459465623896 1.6399757313671475 +4.175268173755175 2.2060550941174117 3.8567020823933396 2.5925478268792808 2.34006113910529 +3.704905792749345 3.003829312949658 3.5789238634948766 4.890915418236217 1.487558425824317 +3.1804962882104078 4.884185541328467 1.9902788472725592 2.017955130702395 1.7039140376951118 +2.2545642068557727 2.0227693899854855 4.789191142359156 2.3469244425823703 2.4532418286761954 +4.3001474955797825 4.641648759034512 2.6265094517857643 4.949028937785732 2.347492252551801 +2.5937745844518183 1.9958467919208718 4.929803106294429 3.838682171039319 1.2442116140082107 +1.9544530399661335 3.541792312155777 2.081688623430457 4.700039447655856 3.0619286411928957 +2.974437267667537 2.2259327438392784 4.135631239321049 2.7530654718112015 1.5721791003831156 +1.666729898675913 2.4736766244325543 2.146421350896745 1.9809955905122854 0.8237285356281769 +4.731746564377789 1.4454029248088678 1.061478183104859 1.6426534498650018 3.337337143296857 +1.5719090005096206 4.179768268235995 1.5247919167256687 4.9321742467879846 4.290825596955351 +4.290982075735325 1.567900804950412 4.222384307179642 1.3483017875611085 3.959232493410357 +4.36519198688859 3.945535963586842 3.467243116289466 4.812475299703212 1.4091702541515525 +3.22125087061721 4.748816279204482 2.2346183051271864 4.410009030581534 2.6581536610785306 +3.013160850609215 1.6268140197222034 4.74804779600673 3.996251034266674 1.5770719408046343 +4.932703426001866 4.433258312824887 2.9066286242796036 4.504643462294622 1.674245156359286 +2.52463929551979 1.0513003179027973 3.133415665366434 1.4005603673828868 2.2745362663002613 +3.8919929746230104 3.7301379906598946 1.6851336702178994 2.2925611352241666 0.6286216358650412 +2.6567815996282147 3.3717314274915546 3.0333242832274756 4.971164691936641 2.0655214126190815 +1.708486530512236 3.2878101255421814 4.574270941502908 4.351127638874754 1.5950097025805552 +2.587167483515872 2.5666659758725596 4.163737401260775 2.8580752096880584 1.3058231389886297 +4.802566619952197 1.1168598698923629 3.730350083434922 2.1499635019345122 4.010243882162676 +1.6075090905308578 4.571656342073547 3.7039761397218727 4.217255075149426 3.008259329642596 +3.553097492237921 1.9532048041977683 2.02451324538536 3.949276110130233 2.502872089968889 +1.8546547824507051 1.7759513140000966 2.020798347545331 4.591714074814748 2.57212012018634 +3.698004586437757 1.3629937281805198 2.9172384566365754 1.5151234175145079 2.7236376945385885 +1.9318988396473582 1.9920088250974994 1.3906114063452835 3.1041752100731688 1.7146177765896384 +2.2319074371099257 2.8767801744362425 2.087378606984501 2.981674248049547 1.1025540988879767 +3.7067476823525105 4.372181507434027 1.9299522270090237 2.0397070382867084 0.6744244169373007 +1.8695183245095603 1.2328675527815598 1.7704937405965122 3.577180284057585 1.9155783647413585 +4.178636819641172 4.400387045503846 1.4745076291135977 2.4591230123872996 1.0092772739189988 +2.3807265714833696 2.9115853842225317 2.2175039859266206 1.422992715976393 0.9555413319897554 +1.2838462313355197 3.5469598175306105 3.7219721755338573 1.8968214097757494 2.9073799926683495 +3.2438751601772986 1.5885807706251884 1.6706119413629708 3.1431257679667737 2.2154675546308655 +1.3449963467445625 3.864042134463729 2.8306946516489435 1.7532554872412849 2.7397932100115057 +4.323982161022961 2.8161495622548838 1.0197055195608629 4.272200832210343 3.585008354901636 +1.3946845058592232 1.5185030251714409 1.2592505090249637 2.847843150455934 1.5934106834502202 +1.2367076731993132 4.907305115026645 2.6328364830341093 2.5078361516761887 3.67272523649523 +3.56067995399986 4.9885374050647435 3.0822801954480705 2.1528550164210456 1.7037042184519366 +3.474059846660731 2.3600237998372546 1.9175165134382084 1.9376127323590473 1.1142172910330341 +2.7009088435913413 1.8935668529736556 3.6773250034133342 4.124222890720025 0.9227777692888528 +4.976802653909019 1.4538779421217969 3.0486381857631386 2.683042261337669 3.541843997817746 +1.381315782484596 4.062999778725013 1.6336654260848693 1.217881046734524 2.713725429332106 +2.6067536014978256 2.198616853561426 3.305424317568629 2.854396971749918 0.6082772983536141 +3.5156130083054746 1.928522923447693 3.5726971002543886 3.322264128742168 1.6067269869751741 +1.2213333121503367 3.344476290341303 2.2543762597755173 2.510344243007731 2.1385171765224547 +2.099755554434002 2.48956065633226 1.4839041076918873 2.6300051996303537 1.210576610714273 +2.7905669459799447 2.479260410884278 1.484563637239472 2.451220296158011 1.0155475641371126 +4.785226597805712 2.3090363315810225 2.7843707274302174 4.921620216865364 3.27098664238127 +2.1294988789823615 4.031973824756696 1.822867571516284 3.6886403697151398 2.6646799158243835 +4.694028448002182 3.4835419144876143 1.0872286333738121 2.7574859382667873 2.062774130235412 +1.6886250830806087 2.6565722463591226 2.692485359701906 4.88265938357032 2.3945320974517923 +2.3269829622318197 3.5576087858056353 1.6757827755887558 1.5796510857392363 1.2343748293934287 +3.045502346542826 3.4666386682484944 2.2551702563255565 3.883343686849782 1.6817563798971613 +4.546653776195106 2.4877660701088242 3.417607788983822 1.2190532950772655 3.0120857306773234 +2.22543808921822 4.879864255004031 1.728056467778789 1.1550653528749848 2.7155657030105282 +3.267417006358418 1.9054799377457807 4.9895326594271925 4.614844881472296 1.4125379675640442 +1.7720408214916277 4.0376167605190565 3.872090198246064 3.8572442791294406 2.2656245798486636 +3.957889901885687 2.1223423824433634 4.716971175920118 2.6062416059677056 2.797215403504414 +2.956301646409332 3.540330245809392 3.1552269119853493 3.9180282012189207 0.960705580171987 +2.2803072529606765 4.651578219703444 4.099343763588026 4.754579843016961 2.4601342072136183 +3.978744114150311 3.248660067671643 2.6693800676275465 2.7312929950079377 0.7327045281008403 +4.8556276028591165 3.619943845073165 2.369942577011801 2.681047630290267 1.2742451504445318 +2.1442943872096145 4.250076161301955 3.362642098735482 2.9178165529459044 2.152251529511939 +2.7344383166624175 2.4791270508701566 3.4556909102676445 2.6847940142141744 0.8120750376568173 +4.344047881589125 4.200478485208361 3.081536285190614 1.9740161645820322 1.1167869040824148 +1.1474191324667187 3.631251050031327 3.5543701490841193 2.485492431143856 2.7040563179456645 +2.606329318314907 3.7556558751931592 4.656396275010632 4.950515026932777 1.1863630871608652 +3.700903774028546 1.7755239032913321 2.130767709654736 4.788537340421826 3.2818938216931826 +3.672291366034272 3.8634667795862643 3.092461940521892 2.712906325361459 0.42498294524202973 +3.4919206131156906 2.3031297465659573 2.5362069719634053 3.3265039700326278 1.4275128964563824 +4.917375656698564 2.549189226316055 2.5368215163705528 4.6155536371754255 3.151100474296841 +3.7834917559998833 3.3922498869033864 2.780182175515026 3.0445480572440484 0.47218589512657394 +1.4426307809565868 3.079941593456945 3.6465701371519352 3.1699442501465027 1.705273858620456 +2.6867498465525936 4.882660024046504 3.5834204365665627 2.8063321089852775 2.3293535104153715 +4.588341977230696 2.6357812023457767 4.285297448640328 3.381700359417702 2.151506746275921 +3.5448899465256596 4.856691382588281 3.4966601218823543 2.0374802938111807 1.9621490204125105 +3.2479177983396927 4.857289175057664 2.120704558550889 1.356405301903136 1.7816367704757912 +2.174777436802103 1.4204762326765779 4.667158680254477 1.824655180445108 2.9408836177199755 +2.428214193586921 1.1960189321350878 2.71011722112736 4.243405226079734 1.9670478561730982 +1.5598069001435193 1.9515568850096385 2.1005289699900977 2.8701786739837716 0.8636137548118107 +3.2693390249351846 3.6197792767929773 4.862606006356671 2.194824229581678 2.69070027662222 +1.8627188303792521 3.4279555431636255 4.296471485578262 2.3324894878599154 2.511412203205555 +2.068791627208858 4.494812660390083 4.421616671890628 3.5786954874962458 2.568286233374023 +2.248659601168084 1.3180028841188323 4.634468186236154 4.3421379533150155 0.9754890517420574 +3.342903899396532 3.476927519967945 4.326726075446782 1.4255073083901935 2.904312769863539 +1.788498978969891 2.2719232802394154 2.1082732126571733 2.5332097429610485 0.6436381824011251 +2.2661805581935672 3.830737937174925 4.237122034409962 2.478130747985773 2.3541219462553844 +1.3909611803779764 4.265668939798184 3.527124630916986 4.914444844680741 3.191958971789622 +2.464887030010629 3.7018140008092053 2.00749347463447 1.0533035215050313 1.5621993463518355 +4.536538354664572 1.2187486251617896 1.4942840266443325 1.6083887792424751 3.319751283418628 +2.483682442105157 3.8043286408555272 4.072479259533477 1.8827034388654922 2.5571907490556796 +3.549423869506807 4.687725350829677 3.5022612939493873 4.016232914233505 1.2489584015648085 +3.6719545863405862 3.5986410434755824 4.069563047729991 1.6264994976465337 2.4441633303267203 +1.1159088627548113 1.951422092332174 2.753647005937605 1.249038123315486 1.721025928469463 +3.0599431758699454 3.6016837042693837 2.010482167924412 2.6478959894232124 0.8365280509033797 +1.5733760202744378 3.4272259045585387 2.9763064328936917 3.2242340041825135 1.8703549059110007 +4.499076006718095 3.329753022495795 4.375697527896309 3.9171379830461133 1.2560227297321347 +2.8280294411596527 1.28002370354204 3.6212999214738204 2.500243534754857 1.9113056233633665 +1.6496053548971128 4.859329603243882 2.8833923652489193 4.0534107461964926 3.4163244521240097 +2.9919969432539717 2.0249334286201126 4.004957132122616 1.529831474536858 2.657340561948228 +1.0077041593381626 3.029206258526378 3.3923508474653743 1.147228848710946 3.021099721345431 +3.9227017043462493 2.7585834145289487 1.0471595654651789 1.058393752719093 1.1641724956596478 +4.222729962238319 1.1541902540372653 4.706894411583342 2.571562114982572 3.738392697097635 +1.2729154001235639 4.735171869618657 1.777335098199305 3.353936718539213 3.8043255026113436 +1.0124493117960953 1.2660306801412742 2.80201087089775 2.030029408272014 0.812563160012552 +4.039228246579798 2.38502625983331 3.7211999351278817 3.9630832182835323 1.6717929703244314 +1.9586879388690037 1.0638559815281363 2.7377433400650357 2.6622538508414673 0.8980105204627189 +4.685331752895101 1.78694346930831 1.4218426262607693 3.2435857375859953 3.4233613023013065 +2.0037168063180295 2.14149764813576 3.2188344102007322 2.2583878228205294 0.9702789328756345 +2.842947174234214 1.1213906642620568 1.185273145692257 4.465864934634128 3.7048669750343723 +4.327489448497695 4.019051259218637 2.8119352489533957 2.123443054600475 0.7544240308279182 +1.6936486445574093 2.7819587014368605 1.1553921922676942 1.8782125955693005 1.306479282397563 +1.3758586893533606 2.8252702911008925 1.2035345662649153 3.932151754520464 3.089683762349144 +2.056711874707168 2.5199240664870026 3.559852915315979 4.323401746080359 0.8930690631609238 +2.397787958640067 1.42352444254563 2.5625465235003015 2.630205068628151 0.9766099925361775 +3.374104970135535 2.328574202372023 2.170602706955031 1.4681516815977433 1.2595920090909056 +4.751683156998533 4.082370056137895 4.8695923127770575 1.3919412655096268 3.5414738222305044 +3.9217275050034517 3.111290200077751 3.677533486133996 1.903538395745819 1.9503505341185696 +1.1645430563432124 2.8775538443717132 1.4189103326956105 1.518142966988976 1.7158825937723206 +3.4504835386689297 1.5617801793630877 2.514713260012927 2.381638658111106 1.893385652508358 +3.548578256940411 3.002062303827366 1.3880016406602902 4.591768742283493 3.2500466655803883 +3.074470659474804 3.6983523347314393 3.2112081284401315 4.3954398673095465 1.3385190159525953 +3.4641148268905777 3.538263340655416 2.7022273464326925 1.119588453907593 1.5843749134048442 +1.2758808272092788 1.2782237008965103 4.851197288338623 2.521866006024448 2.32933246056129 +2.3163266290734583 2.319786246291878 1.248749207661159 2.474794031269195 1.2260497047213696 +4.1615063736305276 3.9982648731524977 4.873167119988892 3.9178428242687438 0.9691709330512942 +4.77349295540003 1.7145155672604582 2.3648266120548187 2.9931368871997934 3.1228378861224853 +1.6408612930541966 3.3706720406656956 4.833329675721909 2.380220043827222 3.0016648861334834 +2.477429595464786 4.260184651831175 1.7601879456266323 2.7367316671895883 2.0326960498618463 +2.293657986211283 4.6127116596382844 4.5283444817444725 3.7508571766277496 2.4459142359970296 +3.3810909597676813 1.4298841429118117 4.377771792730999 2.742422742704036 2.5458936658016387 +3.0428533461584366 1.611457698613421 1.9359356979251885 3.872762341970994 2.40835855903903 +4.033422930819519 1.2627287242544787 1.907857185175661 3.521717571779813 3.20644534239135 +2.0473754177527144 1.2751221819309322 4.72611543246404 2.774769962057692 2.0986005349071517 +4.420455738155603 1.4654339525970141 3.4319622944753774 3.838586253146017 2.9828672107371546 +2.887897822328158 4.487760508488201 1.36078848135001 1.604639549592573 1.6183398771736008 +1.863442725237649 3.718012703276055 1.3271415516820522 1.1105896269655036 1.8671701956543263 +4.350379692999731 4.354538371496715 2.0253131927406507 2.8770690716977767 0.8517660312226989 +4.7305502336461105 3.4421148179724335 1.569179419295199 4.581079384187049 3.275913188544185 +2.0515158327868734 3.6552996481601205 2.950232493583835 3.678865132892255 1.7615413845603298 +2.228528219393214 3.333425553056687 2.813634811926904 2.6478118359846374 1.1172713982229214 +3.5982950701562237 1.4551893713830215 4.9084746196177935 4.0351920293357555 2.314200621943543 +4.932086050046491 3.930346795842303 4.872177134750463 1.567875428828894 3.4528091892211124 +2.6170794005417144 3.5597372207204567 4.630407692307987 3.6300915723400577 1.3744948547782312 +1.023222594374238 1.5879160755303126 1.7557741568985703 2.0501350258048303 0.6368100570840683 +4.127610333361053 3.3301634809333622 4.942397683871658 3.2793764764312567 1.8443321335495297 +1.8646617998812203 1.3939812994073182 3.2472330535917013 2.2762116885966295 1.0790841602040389 +1.1088007390393964 4.501242153575843 3.3369196943666775 2.227521032073165 3.5692329908484095 +1.1068707495004673 3.02788588530016 3.401677934395935 1.0911554697738244 3.004798364532127 +4.879242701831382 4.864448546270494 3.5718169434634395 2.4050183911478813 1.1668923381034098 +1.5008611341926885 1.1303866499271464 2.499760712984634 2.9028822584228995 0.547501893958692 +3.3414176157880973 1.5582748186809074 1.991895692646763 2.3105545116827497 1.811392193265904 +1.5226314920609099 2.788447516334209 2.822000837162631 1.7744489650410578 1.6430627292019235 +3.88593069150173 2.1355217829189383 4.691604944361506 2.324146950594933 2.9442806760727227 +3.3867911507898687 4.039125776904827 2.2487281086173065 2.29795335767717 0.6541892612795994 +4.572030597119237 2.7072129374089107 4.74041170276847 4.963937677378329 1.8781663305715997 +2.4904629037202795 4.1658231307168485 2.977749225800498 2.659018451333643 1.705409392724878 +2.0722187485256858 2.2105601810602 1.022071139687529 1.2957238771737387 0.306633613110823 +4.928409053764263 4.285812931049124 1.6079728388584589 2.4475921307944715 1.0573033303265722 +1.3136743239629185 3.683244632565919 2.117489093771589 2.530295637716359 2.4052593810515623 +3.4153926165401263 2.930349707203191 1.7700533707128154 2.1942071737718165 0.6443392526825074 +2.0588260968956527 3.4676616204042006 3.5960802146003528 3.121294226641212 1.4866873466408268 +2.621630084739795 2.441817799439595 1.0533300980728075 4.456865765452422 3.4082821915255312 +4.87238451457192 3.854172542846449 4.660045919035586 1.171416380632139 3.6341837702001416 +1.2964814241491283 3.116956701198575 1.213238879926351 2.082189555507653 2.017227183770202 +1.8813917545537913 3.5905013539299877 1.1578453938951592 2.309202634419724 2.0607472232149684 +4.1978943944770375 4.300314163394641 4.796780889829888 1.4905974609895511 3.3077694409078124 +1.9992044705874883 1.1526760328924022 4.472736929723238 3.625061536389565 1.1979832921580673 +1.0116871346589371 3.1943913654071667 4.120764905637335 2.3104720083586066 2.83572885390406 +1.855070071589036 2.3394020330992586 2.8226432479008636 3.4648683291227513 0.8043820633820722 +3.6784325479048205 4.68403943412236 2.926587845731075 3.7511772870676188 1.3004587484314327 +2.0555422178202933 1.4923638088195088 4.574809772611852 1.8925823567073459 2.740714109679158 +4.596641685999227 1.734538939476054 4.024644641404123 1.1299088095633931 4.070764997859509 +3.5405186990364728 1.5324507758689934 4.624763080687943 4.673146079269446 2.0086507159299476 +2.7167133232932814 3.196360894945263 1.364927475451267 2.1570581555726065 0.9260306730239224 +1.9924193535487755 1.9527554116457977 1.8997828347968686 1.4645447442158392 0.43704167281839734 +2.2456305761352557 1.2654617078022556 3.577019028273196 4.384754600698239 1.2701054150778215 +2.570167117823666 1.1770833891579051 1.1208065065923085 2.1030672205908165 1.704558120258197 +1.5495321876932882 1.2136831991367254 4.645576564829342 3.113695855732807 1.5682643431566528 +4.825341200794172 2.0441428717167303 4.346960061520887 4.212810879024349 2.7844317461248074 +4.54642821042215 2.1391148607878314 3.146078611680622 4.60724277300284 2.8160536695276357 +2.4199117594430994 1.4755964165679099 1.5790968708231183 2.123316642830277 1.0899112931945474 +2.46791997843649 1.1505699358781198 1.8745848653759398 1.5695460770220353 1.3522055306161698 +1.4119254139736679 2.186187865698418 1.7357143303003455 1.7550777436504945 0.7745045422251505 +2.157623778257313 1.468663360852005 1.1766364377246772 3.980702929080324 2.887465210993003 +4.147972219855158 1.1556574756805476 2.5483458542747868 4.332215532540476 3.4836961057532703 +1.9941977656803278 3.6292665163960556 3.7926116353638784 2.254712071719844 2.2446792393176365 +4.497253958632035 1.6724570340640788 4.88063967936113 4.907464142782091 2.824924285159941 +1.277934545641802 1.9160066924293684 4.615862852379479 4.242258991126581 0.7394024003539399 +3.2449267043362364 3.1520571161346176 3.5048857706774275 4.340208827069565 0.8404697311343468 +4.728938676669816 2.0864521921138723 4.27164091302633 3.8345674672138865 2.678389071456048 +3.0676527162402984 1.9679692902747994 3.510048552491649 2.126724037570313 1.7671701533597628 +1.9833046890629427 4.0803208927590475 4.709261339922446 1.695601948863854 3.67146018416102 +1.3633693252084882 1.9429197299376382 2.8161839293307525 2.57220435784415 0.6288121364322636 +3.6264185781634986 1.429651841099984 3.8483666721262106 3.8006631597369567 2.197284624750046 +2.275288461867211 2.686094163098717 1.9497088884742584 1.467221309331566 0.6336841391350151 +4.569667039459469 2.4927139092124206 2.0782069758074755 4.1708014639554385 2.9483361404477355 +4.552415298752116 4.173353324772009 4.14650033540768 2.8388742738940866 1.3614602075959648 +4.438681597844802 3.1489559158754217 1.0330353061827626 4.114229053480314 3.340231615190317 +1.2028443353224563 3.1629123462946476 2.6951386233553913 1.946369880692202 2.0982185867125223 +2.5320957921597453 1.5840496420255077 1.1269444051280786 1.2009355391137784 0.9509291196996963 +4.636228899882266 1.8038708670581896 1.942236492284389 4.251684690686676 3.6545592083323317 +4.638983045507427 4.427749759201472 4.725834987479288 2.758726092993333 1.9784177779249186 +3.7639144331687566 2.6118691359882247 2.9960841487452905 2.357353096256682 1.3172644852758255 +2.200717184358069 1.161496410990277 4.7393045559411915 4.341774577104964 1.1126589324104144 +1.773841151504847 1.673357352105839 3.2912387787881467 1.5143652004033297 1.7797125350751801 +1.837075553837686 3.0459560691498284 3.43083967271011 4.619841069452817 1.695616826337088 +2.8236878665979486 1.6657139978328073 1.2429747257243453 1.1571112859936457 1.1611528801261686 +1.577202313081128 2.9104332809553095 4.462971471099314 3.14905180220387 1.8718679734449861 +2.4188005519750506 1.5270344888790564 4.131677159216258 4.776951145845222 1.1007384926083783 +1.910829824466267 1.1509596298800395 3.8750558054874924 1.3942000668025871 2.5946190296046043 +3.8428577007250078 4.431598234142642 3.2486757522590257 4.477395433177625 1.3624857687203875 +1.8678722895411757 3.8870289968944243 4.07675458900549 3.436906208577093 2.1181123102391086 +2.260354663071959 4.160400686624527 3.695705300713504 2.387763990485414 2.3067044376380554 +1.6482886699458374 3.3426202525236426 4.135912698862364 2.22802990928592 2.55162227817571 +3.856858626987614 3.8241379425188264 2.177551188829033 4.970823228354627 2.793463679733026 +2.7564229685299573 4.996643239219415 1.9170574428783795 1.7997730853826504 2.2432883189017705 +1.161936110776646 2.3620297395413545 2.6164795738115334 1.6836760250467382 1.5199826243710293 +1.792642157210934 4.368660324292364 4.518025706758279 2.1344094352295873 3.509629058323673 +4.482586154352855 2.8562920030472942 3.1523430062050246 1.1645236049297178 2.5683182510462355 +3.793570373600532 3.0619930135055777 3.034745191734686 1.0804232431701473 2.086762974667846 +3.4026930002503404 2.4463464101007615 3.133517162963835 2.012973694954643 1.4731654571665718 +3.323550566796505 1.055215803676381 1.7132951035420496 3.76813138538055 3.0606690024795395 +1.662462863212725 2.842649657554276 1.0176840795203521 4.603203210810436 3.774756722013405 +4.786018884145879 1.29639112645956 4.299151179124365 2.667086133126488 3.852419785223684 +2.3589339946592514 2.174286670073971 2.839717345041027 1.2707794075576646 1.5797660858972284 +2.596279811244282 3.274358510227749 2.5256709298063837 3.7333056299262526 1.384980971330912 +4.357370683562994 3.4332491808228816 2.710527808085784 3.8975648860511014 1.504346228861921 +1.4649863157343694 2.8748418561607845 3.6272390043836946 4.106709333708583 1.4891556136193342 +3.0001422970785185 3.7770507466593943 3.801987639927019 1.4541738507060544 2.473017656201885 +4.271027978287545 3.5454634952187507 2.829755035243521 2.655875849196158 0.7461084307467519 +4.572543970603565 3.0119721363022918 2.4379369912505977 1.6353713680296726 1.7548492897085015 +4.0761100047495376 3.4177373681606227 2.586382625476919 4.3956593328197915 1.925340679553233 +4.7257126255561115 1.5878589953557887 1.726977561236969 1.402822588147552 3.1545525595779735 +4.468344639499117 3.7293695897049886 4.735533002769431 3.473215940364405 1.4627127162423552 +3.944921640274636 3.4838595441630162 2.257368534419353 1.9184278433686894 0.5722403765208652 +1.3233810179399126 2.5393162661049584 4.214229068750702 3.584143382380687 1.3694913288876873 +3.5570604935911425 2.128241189006176 1.061883315716175 1.3679459814873338 1.461232000927168 +1.6915149848583795 2.0101176396766003 2.84262243532433 4.599815079064076 1.7858425571338297 +4.8059385604111835 1.8886057401646168 1.4220525599425802 4.259124726503934 4.069374554199321 +1.1250759451373904 4.046569737422352 4.5660074862951 1.8742786697735 3.9724715228749394 +1.8880029080353853 2.503101672068819 2.5589896806691423 3.5121005621219523 1.1343574577086404 +4.695468246084376 3.158176140663409 3.566749288833313 4.190385111846709 1.6589721688850674 +4.2371708706182485 1.7200876857773095 3.3841549373790727 1.6774417034115987 3.041147451605844 +1.3326121231514771 3.2782072465272796 1.3533629086860506 3.214435106420674 2.6923837225188545 +3.882365413604503 1.7483117580841205 2.7104142148783468 4.220413535484097 2.614246153840478 +2.0119039064141435 1.650614989467237 4.114055422944012 1.4397690492412507 2.698580606556145 +2.6322560344015886 3.219607565069891 1.1059239574343134 4.089924588015604 3.0412565797525106 +1.6970878800156166 1.8870188021532819 2.5607805973590567 3.0281622339103125 0.5044991074019795 +1.6879910220465701 1.1279396364555372 3.1095128899969056 3.4422331503190726 0.6514294483144637 +1.0774338457595856 4.431908709925122 4.013188519093545 3.61766652166597 3.37771213468044 +1.0113645555722877 4.290983010705046 1.5289840938767973 2.6065604976141845 3.4521106756792985 +4.31545649081472 1.890989452036588 4.490412679852017 4.809192195994364 2.445334496962236 +1.369998593981061 4.165484969727776 3.306724225682335 4.675814510953892 3.112740317824546 +2.438939204718213 2.6493412425810647 3.6318742721417476 1.0442366095604858 2.5961775151837863 +4.471630381314858 2.519833080821316 2.5261062009968906 3.739363050952134 2.298152494108517 +1.866769263784052 3.797125748060441 3.7395776068948514 1.2179166745987344 3.1756967761196004 +1.0250987110938978 4.940631844675871 3.652255636215615 1.081754414823342 4.683895414007174 +3.338490870220689 3.7401160846226396 1.5746550584608698 2.470391032556962 0.9816545971640369 +4.559555971852907 4.107231335557213 1.1629273938048668 1.0872579970460583 0.45861032937110574 +3.720085488162827 4.132352195793917 2.4665248649757054 4.1482154067507295 1.7314869091380831 +3.968246850943431 3.7424721098843556 2.4273006992520494 1.0119772471875566 1.4332183042593496 +4.196359535947446 2.0777907624234597 4.307574647592765 2.224766479887655 2.97092973858522 +2.5457177439608754 4.337664723500122 2.218163683983792 3.7105953366060134 2.3320433562068534 +1.2904176708359234 4.723434368090878 4.066577018264582 3.2177816716596594 3.536390417367614 +2.1312686645145296 4.737611691077804 2.5590705458090155 2.4530095994247922 2.608500123914685 +2.085620725631413 4.893140916586064 4.321812749206733 1.3282112148879675 4.104122289709909 +2.9750060165331167 1.5892886935008699 2.576243261423961 3.209202481947504 1.5234335805007801 +4.386365554537499 3.2038274556684967 4.345804283814828 1.0340895906740446 3.516511135207916 +1.2273193329208785 4.452489959813036 3.574290603832219 1.8485198931256943 3.657869614748516 +2.9258668654728632 4.000898695330431 2.5720760183359777 3.7902043219599397 1.624663041771032 +2.764020902178123 2.304459817278185 2.4461481291059983 2.4390600259781543 0.4596157438125446 +3.0630423959124657 3.927518324797665 1.1373214364821251 2.484022671368368 1.6002883639100982 +1.8983728925525747 2.0630389931032473 4.8899261512709185 1.3764633849288535 3.517319367805915 +1.3915480704166905 3.4250180467831384 4.356268764182485 4.1728010077947175 2.0417297966228842 +1.435943839702082 2.424909920100026 3.8624825693300697 1.2689951806268476 2.7756496074865664 +3.3410190767957704 2.2404371173481303 1.4035749584527655 3.181446613214751 2.090958696451876 +3.6328419758042454 4.242101597076162 2.4019155424736374 1.4062710436067527 1.1672640036582507 +4.963452008616649 3.678630727665184 1.960411184879062 4.335599765071568 2.7004233955923755 +4.832447907180557 3.237433928257549 4.273403592800182 1.4222285888796788 3.266996861942308 +3.5152928561586925 1.5880847817433832 2.7583029096163414 3.4939742370255904 2.062848337630193 +2.138313904041562 1.454782860950234 3.380909127710447 2.2508187278847065 1.3207266933956552 +1.9280840861011477 3.9011541037327024 1.6990421589005034 3.9980611505390984 3.029602881301694 +2.7352228427785055 4.185270239171073 1.1581249092743118 3.930941847466616 3.1290815304991666 +4.025307012570149 4.2136178032328315 2.027926788228409 2.513196569951363 0.5205263825527464 +4.997764411469538 4.262481769045456 4.088740140848496 4.737922948962799 0.9808561987372625 +3.561932718003575 2.0329737143647137 4.162197867335644 3.228928105867182 1.7912867114115874 +1.4848982960040567 3.6715979804200036 3.5612985494931633 4.953893137351155 2.592484367543259 +2.028366025576023 3.064813903806064 1.6785919237498486 4.774398331118011 3.264696236434459 +3.5152555488995296 3.3227154402556582 4.705480380251814 1.9928864185055315 2.7194186317555054 +3.0297563647517567 4.179584732184625 2.114464633632999 3.872150616592707 2.100372654851127 +4.222000385022884 1.3523164486732742 1.2736439564896211 2.3522262357138737 3.065685180771107 +1.7292164155229326 3.716598508017855 2.202062189175768 3.470702054660622 2.357781730751794 +2.22633587323031 4.05834808455669 3.241303610875636 3.41616862341549 1.84033869574585 +1.7322968903610914 4.493077590977833 3.8991285019806234 4.618900777568794 2.853065405069299 +1.8081303628013683 4.768717349020642 1.7796729411938785 2.2347453783854494 2.995357445458288 +3.9504870710210858 3.4272397850901988 4.864301323531359 3.4170555568494 1.538930807870481 +3.000294494968309 2.6915677591116967 3.1640654486677775 1.0372616002708535 2.1490944155594107 +2.416360449007122 3.9014448448494843 3.115395663223167 2.3938588297163697 1.6510878428725375 +1.5391522554064907 4.773747929035514 3.1447916896253982 2.5909882219318776 3.2816623002205696 +1.4498080700389222 4.732838949560569 3.0319472285886535 1.1119756083674246 3.8032332006264893 +3.703474473852634 2.8081631491602628 1.3166061936039655 3.2466216504531875 2.127567162699998 +4.55927425182329 4.137237519723811 2.0472413319930713 3.6989690037686214 1.7047930387440833 +2.710326945709865 3.0102996787889245 4.485729833095052 1.6502775728300514 2.851275707614544 +1.1888762486032052 2.0389439014548265 1.4212360103155168 4.965457944701767 3.6447392409621404 +4.131253136305261 2.9040382084129286 4.331382165946512 2.81665034582561 1.9494791525247364 +1.3010195044760278 2.110807639166576 1.3438813894276311 2.7224307750949004 1.5987980584830603 +4.450368615478844 4.286420232991249 1.6191736814204618 2.0142377063886405 0.4277319907890412 +4.969271156913283 4.751254002964396 2.0334443462133063 4.125052261295746 2.1029396448427815 +3.1075868673263485 4.964221189127278 4.839200870375734 3.606509765593212 2.2285911165350973 +1.9250192474359884 2.506982258131853 3.447608428135924 1.0033511787082001 2.512583221944733 +2.395995482461836 1.3981607968601097 1.4345118358211923 4.890586083485664 3.5972382830665297 +1.5213215122358417 4.270815446375385 2.002355880826109 4.326244311068857 3.6000242124305566 +2.4403932694618637 1.0678845667836083 4.781507428600301 2.277785287211054 2.8552416185342886 +2.7347078127284417 2.297336062152983 4.562028120724511 4.356652159947238 0.48319078371449653 +3.9233992745870463 2.0991448567584 4.020005374807248 3.769379457003893 1.841390108489265 +3.1269423833939136 4.883749703540098 2.022399464429945 2.994380035656896 2.007764475968705 +3.3303815758024147 4.578970904112953 4.040292267624938 4.625565541286581 1.3789561688587417 +1.7564218713558937 1.2332249161609106 1.8198677010120954 4.7428998988657725 2.9694868721067955 +2.851722703037834 2.107638250680908 1.3533907688167637 3.9131676987237776 2.6657305946256993 +1.5248734147112701 3.2706574476094135 3.839528307432357 3.114183047914443 1.8904728601667933 +1.300960195018916 2.9301876002031833 2.5637296085352625 3.4574658099817115 1.858264334151465 +3.099852048159567 4.118937135856781 2.2609936046219694 4.5871177533797445 2.5395645239688087 +3.0683874127678634 3.7648379957253963 3.087389191997521 3.9587828971591907 1.1155135157842198 +3.5775612731243767 2.6087356333565785 4.14885467713632 2.969480191852261 1.5262854571837219 +3.628384797518695 1.0060760717097712 4.242221075531393 2.0703401577286575 3.4049331527313833 +3.0981326835113987 2.784139263938346 1.7068829167250383 1.3650796352116301 0.46413505662523846 +1.3793382315785485 1.728076638974279 4.874933653308954 2.4577624174642625 2.442198857625616 +4.462001932045396 1.4145201796623827 1.8302850584746237 4.643325626164715 4.147329534360349 +1.090640799936898 2.6750317954575613 4.0107605978647385 4.288622063857195 1.6085713602356706 +4.301840618709981 4.687305340962531 2.620113445800941 3.450971333682628 0.9159191459711135 +3.81397661068293 1.3082180754656965 3.2116354780247094 4.774937076633567 2.9534281310075965 +4.6020272736613785 4.636972282469301 3.647261527365953 2.6624469572768206 0.9854343667136988 +4.82327998099559 3.671262031422146 3.010266336655292 1.043680225745693 2.279167893719536 +4.722043610642748 1.5752515851218796 1.4428327743848897 2.8925268832484274 3.464666370829286 +4.214048422658774 4.884604457673287 3.7036139033968944 1.7200365929146608 2.093853944943228 +2.5920542626542677 3.1176638357100126 3.4831384216174643 1.5355321197010903 2.0172842463451244 +1.4124384380663595 1.7848678316338091 1.6959039889451777 4.911436232919096 3.2370281532956984 +2.5603385302323463 1.3619746597846643 3.7392301059563056 3.9791468919481674 1.2221440300533377 +1.3663332673672177 2.3746853535451264 4.524517563819857 1.778358073127936 2.9254343058794965 +3.373870730976352 2.6413624150606148 3.5475393669577464 1.381321604251597 2.2867155110221615 +1.8672902610139634 2.7735594234217764 4.087198973751771 4.65114025717944 1.0674050617668094 +3.8652205112496394 4.1841409972680506 4.237882846992296 1.214585999861498 3.040071397561781 +3.4486887904035903 2.118951079239106 1.5210399180114846 2.6020223470599113 1.7136876589403327 +3.162562606962001 3.5771404039782326 4.670423971453557 2.910079574749664 1.8085041179896786 +3.853626748862923 3.452419102525761 2.1633040770497676 4.706673079199813 2.574819111428437 +1.234250436948368 2.4529444391448245 3.3210252094428676 4.432487563112659 1.6494131182377594 +1.3552269956192018 1.1209300020836461 1.7755981358928254 1.704030307622057 0.2449837448142109 +4.716838609042675 2.0389815793004455 3.005265425662019 4.757857111361028 3.2003899588208267 +3.9114071367430796 3.652360093810105 4.57337178644781 1.8177051745232449 2.767815717588172 +2.8124535139655946 4.21430901286586 1.353836427481125 3.7919616679989288 2.8124106258238517 +1.7858893533216382 2.6194712055438254 2.6243505873965964 4.551335251377534 2.09955438118947 +1.887350522761679 1.8771261864547224 1.4045680839329422 3.870479775191784 2.465932887598517 +3.5084615576308233 4.480385143355723 2.617095531559541 2.8549911842745295 1.0006147101002647 +2.2988776439086513 3.7942965996963522 1.9608653436776424 1.5252600930981877 1.5575717600359757 +2.85939309483302 1.7759101068123324 4.728065475804696 1.6920215931344509 3.2235846262863417 +1.0107461304260155 3.7612373518003612 3.434204034678912 4.804759856748374 3.0730481968667265 +1.9568349436849566 3.481800221066264 2.725906298023715 3.929675150221033 1.9428274619067687 +2.9060931836414676 4.917146888609324 2.7780578031164205 4.198693140552774 2.462222931872304 +3.1913806412455776 1.2131942503624789 4.327531025573485 4.888975454730152 2.0563173986780723 +3.059194511267276 4.143160045453008 3.087052063698941 1.1966843059172465 2.1790987905469437 +4.717378813328342 2.703540295743939 4.666572672778069 2.105226822092119 3.258226226297474 +4.262432556254532 2.5292382760185435 3.1740181348626315 1.1795341667836685 2.6423339516357034 +2.931972178944013 3.8519728197544647 1.5625101620575252 3.4705094847381295 2.1182215640582283 +4.9877629469548275 1.1161469779110371 4.26344748474677 4.213571278418014 3.871937221561403 +4.140276296001797 3.354228792511987 3.199713590856998 1.8599277676616923 1.5533501632850484 +4.62412244970738 2.942523223724147 3.275954243948794 3.1454166008266413 1.686658244310119 +4.149533402712902 4.293688272837787 2.2092528394022004 4.74306682762893 2.5379113368110726 +3.4222325859946974 1.6449190060398582 4.532869068263679 4.246724226282799 1.800200664393875 +4.1174032718145686 4.659532553578071 2.625946906428302 1.779084118354476 1.0055251065834134 +2.5650565787655375 2.262115017730347 1.3514753852362515 2.425988914271604 1.1164017706374554 +2.5292835672705616 4.932328538146931 1.742807135285164 4.878120804664364 3.950293272334381 +1.2738002082891353 1.8033296083209462 3.248269510426303 4.201018045893024 1.0900142922604414 +1.4221574987395686 3.0645199402826897 3.0054901915192436 2.9879104737305897 1.6424565248033234 +4.606232509511001 2.658471468994688 1.412081008816843 2.964890211202586 2.4909816318004108 +2.797994834577582 3.492020297103943 1.7806206519752266 4.480861802274548 2.7880053106844565 +2.0556868318478623 2.474783446553537 4.370302078567825 2.9377381269860248 1.4926089400206002 +1.5535875657260023 3.2928959603692345 1.4568788711338576 2.0786440338853125 1.8471019488073095 +2.8696296115074493 3.914829683711388 3.6750447295320323 2.030805711604005 1.9483236740880716 +4.7243574903920855 1.4727525868464855 2.718890903402632 2.201488818065929 3.2925126220976826 +2.781531573294537 3.434487713204453 2.6481975540664924 1.2867097477939171 1.5099671411242588 +1.493372109382149 1.1892993351977519 3.879800397443792 1.0340404801154532 2.8619590771135757 +4.983006497751347 3.6166997924485482 2.2474141752299643 3.018973839372839 1.5691074941786671 +3.299009838051465 2.9624801538831402 1.3160402911971327 4.761772470894745 3.4621268726795806 +1.6909262153740228 2.1457308905535077 1.6776373974265453 1.0384465275207657 0.7844821608781324 +2.342078564147157 2.9988744498499003 1.005460016082417 4.902976764939325 3.9524698155831848 +4.240975230086528 2.2043885412660296 2.5339621542461708 2.057072578401565 2.091676124219543 +1.6130390824748861 1.8525836378428617 4.742908007481159 4.208859986144942 0.5853109285666629 +1.215255389547632 3.4662880656798327 3.9634011501222917 3.8408303365836454 2.2543672534319743 +3.9135687664754135 3.6297020182410233 4.091464254362852 3.9812479752472725 0.30451265808706535 +3.3273325456500524 1.9341062326180003 3.1687336641997095 2.10415529093728 1.7533986061768632 +3.2081129280218446 2.1406426057478347 1.2945313503855567 2.6130089692733702 1.6964304054230628 +1.9214860318504652 4.66233997896029 2.9285700725206736 1.4366550134105065 3.120591434806421 +2.4521070616835736 2.7771015215821007 2.206179825906511 1.4215401447938438 0.8492825372873994 +4.509350410735391 2.45813543976531 2.216209751204279 2.7451812961540667 2.1183233352107407 +1.1500337817426054 1.488698677526699 2.20972332205419 4.651900009916353 2.465546772294912 +3.462472001342752 3.7430262320640213 1.405503860272292 1.155297804305122 0.3759172073984506 +4.26669414018771 3.6220633147806267 4.386439720847605 3.339411503663547 1.2295596726652367 +3.102742485405814 3.4870749416241478 4.469032672323557 1.485093402612884 3.00858853986787 +3.7679478211504107 4.119655728020312 3.9368540769627254 3.7921149893654285 0.3803259854825928 +4.269317017665827 3.935701368664569 2.490710208204105 1.9062373425329953 0.6729843474883571 +1.554096769890653 3.817999117225898 3.4235873782161796 2.074742626758284 2.635267728676831 +4.415748645234201 3.655574355111819 2.9206905775154843 1.4866089669643623 1.623100433455665 +1.3493203796967617 3.186522396382691 2.4891034287148437 2.7482540699012694 1.8553895291669031 +2.588313921660319 1.6659433441385438 4.781035599306785 1.2608693468455257 3.6390023258092317 +1.299273917890896 2.336077245249334 2.4107508273805167 4.831517991962476 2.633453019277107 +1.1515627842675324 4.394758244146658 3.280553691599698 1.0277328290650494 3.948862954022579 +2.884707324903978 4.46750382456203 4.923254272368276 2.47811235321821 2.9127244572933177 +3.1385127451269805 2.9111200251051126 1.0211679800217772 4.485290141077561 3.4715774218410766 +4.497778695140044 4.869013184822371 3.717985683253267 1.5463275493090158 2.20316002529456 +4.7550337421152005 3.148695661035218 3.0720577452262265 2.4749448327220707 1.7137286427573404 +1.1615238127970682 1.1121650318698655 3.09442755682979 1.2318927244291893 1.8631887427633715 +1.9471033965250197 2.719339018447982 1.1118635290714733 1.9767874601334907 1.1595004365201929 +3.949236282041935 3.571322909747687 1.7261818648215712 2.4280782678964634 0.797168161436646 +1.7836982202999123 1.1785217158730799 2.2033318545444547 1.9257294863674934 0.6658090389351418 +3.5770806323067212 1.1777256521189265 4.382879520014492 3.866888838975593 2.4542108108047604 +1.1809894590050996 1.890087064345951 1.1420210520572849 4.184917163999045 3.1244257331500798 +4.815117730071675 2.7630780939585287 4.4838413562020545 4.954292219655787 2.1052768661398757 +3.136191827974008 3.365715743638995 1.2810807675932492 2.360152103988585 1.103211755236593 +3.882852442436266 1.9067156241297876 3.197905959205486 3.236255868506588 1.976508902132711 +3.479876671237453 2.366748563176873 2.4667657931264113 2.6954790367312578 1.1363819484463735 +2.415488232395635 2.7000478216094637 1.0455317472547367 2.8044927593628497 1.7818299587586746 +1.540077998818599 4.872948781276175 2.76751513134805 1.9939293162426455 3.4214708337046615 +4.041093886810259 3.81875115083511 2.8489471889789666 4.047824229166659 1.2193204868819836 +3.4107262701515815 4.36395873448833 1.606994526652593 3.0287176189717604 1.7117092867362398 +4.963905984459135 4.3662115691401056 4.547884526838171 4.3163880728779915 0.6409596105057589 +1.036610815309782 2.5569407364896084 4.256725797680293 3.2208512686981625 1.8396845134502295 +2.9436029066987537 3.543094392958401 4.880566489140933 1.2522971840636519 3.6774621945390242 +3.776332050407106 3.0201527387901983 2.2240010631134814 3.458015841091505 1.4472731682669902 +3.4221282743084926 2.004332545574513 2.6533290144262716 3.7433874261551376 1.788399303678341 +4.778561345069608 2.3719536536660275 4.2906118375677025 3.3073343807477946 2.5997298200799825 +4.472538540638028 3.6452963227877495 2.0374336225428267 4.192490438828292 2.3083759590699895 +3.936568093876304 2.699687550503962 2.653060921944858 4.238940433217392 2.0111905187841033 +3.68710923558316 2.5027073370442494 1.5152563158689327 1.8337895758941967 1.226487380695333 +2.9333175623678738 2.6143453398927545 2.4608012647105424 1.875658714738988 0.6664346048172544 +2.836996338573083 4.146486924968225 1.536567674015151 3.6743870676698234 2.5069976776502054 +2.770848317863644 2.286640569777554 4.896868339580454 3.519078429118548 1.460397952846151 +4.638973725252274 2.9895503912622083 2.9880289111907943 4.246381037608327 2.074619822707387 +1.5551701405221272 2.3176846548835743 2.342215856346293 3.9335270067524775 1.7645678116805055 +4.0206045973520785 4.790988297486197 2.455756054215984 2.309422886543693 0.7841584287587186 +4.925557605655075 4.1833166556212475 2.5990721769638294 3.713303688334392 1.3388179446206443 +2.6785840079386833 3.912741576013648 4.632360673872722 1.7868912632496508 3.101586863144142 +2.2606968019984293 3.716808403818675 2.5148654692205032 4.195831639112843 2.2239398061274147 +3.8552906385097696 2.365356705121763 4.1738633707298 1.5053640959165548 3.056270849505958 +4.877207006772192 1.4510610299211923 1.8056244560932408 4.175541489251678 4.165931228278592 +3.1856915902127985 2.811442881742524 4.508901655445575 1.4641615292453354 3.0676545652803737 +3.696425248521105 2.1489289008553176 4.939692465003095 1.1278333667033307 4.114002276534329 +1.4950625457060132 3.594524959934854 4.258891974116747 3.90278820599518 2.1294488306672155 +2.8532304117561407 3.5827732594333472 2.4322666131448094 1.3416014682648765 1.3121673768437214 +2.62223174950727 4.826302497257933 2.6548628311070828 3.641481016469589 2.414817447505747 +4.334411007373464 2.0109459211093723 1.192482215027733 1.5182036009280595 2.3461850797243238 +2.7371899146833254 3.181221500617717 1.1671655104519094 3.4665589066581717 2.3418740443978576 +2.124370631576302 2.1951592875345876 4.7112420218220565 1.0375541630936733 3.6743698122509 +1.7228144804271732 3.1166676839475347 2.981636563577719 3.09334608254998 1.398322484119092 +4.263075837094288 2.477805415195442 4.209503707144178 2.903878817233656 2.2117519825832064 +1.9202524318388483 2.604896090593931 1.5343977086950034 2.424021404922722 1.1225717172472387 +4.314866268654808 1.5222653137012543 2.713045154251089 4.433859680986458 3.2802168722557012 +1.6589080601771822 2.1186582418236615 4.17729360367634 4.163987479591222 0.4599426947589658 +4.22322655411632 4.3836771636903045 3.210352775999266 1.1720448877538465 2.0446132752665394 +4.499148435982644 4.510165718653365 1.1965530871040388 3.840575620178952 2.6440454867353034 +4.703425330719012 2.791056182532799 3.1416228111281987 4.814134515946998 2.540561190306258 +1.6544945761920586 1.5530777013409574 1.0833162976887531 3.7181827375260372 2.6368175018922657 +3.093647965119224 2.220617279393641 3.213061753191047 3.4988387190199695 0.9186136578654089 +2.2602619380495605 4.640470720989105 3.669575830602135 2.3161559055838414 2.7380904557408385 +1.6113803998033522 1.3611505497578213 3.603841865467453 3.7493885188623173 0.28948023450359034 +1.6137779299759356 4.603242372436051 4.7046914192019464 1.1647180044138463 4.633390705535191 +3.495129310999408 2.9036265551979525 2.6676293185724615 3.3948361327168026 0.9373927995555963 +4.411155940202372 4.091361419849176 1.531019664407102 1.0588841707899546 0.570245964107628 +3.4857872033458803 3.297226989780694 2.9908862138446386 4.5636090433840275 1.583986127683614 +3.167458370395608 4.98230881090945 2.1781177137414205 4.06998018185258 2.6216074686499002 +4.364146904454943 3.8459504846306434 3.3893290546297745 2.2979817727535594 1.2081251670159532 +1.990213040916272 1.7741861673282084 4.617062056376512 1.8080704140080934 2.8172862220597783 +1.8876110207245023 3.3078565483250597 2.1375988192082884 4.2592787197885436 2.553159407321765 +2.1228716747770076 4.451543856431952 2.783016943607232 4.028665060484935 2.640900104262667 +3.364412277418055 3.84934563356841 2.738980705332643 2.3771481093367934 0.6050480868760293 +4.8993726674816305 3.060574761037103 1.2246679523315813 2.7977775609202498 2.419886687714689 +4.086903755291182 3.2259158112990134 3.8565728906306753 1.48148084117825 2.526333802780619 +4.683827714983908 2.5821722135850993 1.5594093474591388 2.5490176252439265 2.3229895372170857 +2.4410059063610903 3.0389073224426695 3.8315724530029405 3.9949602907380157 0.6198239176347594 +3.904902582629157 4.979013500571284 1.3674105905583414 3.0688725999550095 2.012134993846742 +1.563734457077946 3.2473120297539495 2.0231359341244004 2.418084507596748 1.729282457814647 +4.62070826770253 4.013932439588849 2.5084653200267617 3.652068541700535 1.2946062081597154 +1.755259971634279 1.4862175488568399 2.410377458897507 4.554049427180327 2.1604891420360097 +2.1898657260735024 1.5675160442074376 2.44632945195817 1.6804093209734208 0.9868904567207485 +2.1179468920380016 4.842823654318428 2.845579793942987 1.034130748680679 3.272048442978433 +3.506210710754408 3.5334562061158516 2.862095077637412 2.677451393919647 0.18664299331707168 +1.4223110939311603 2.5881434845809834 2.3029920615039785 4.806682456910245 2.7618165686985567 +4.648247928499888 1.4571056592206024 3.6609327213461285 4.972780375402312 3.4502656782099637 +4.745418487271683 2.525955683303754 3.463118120275892 3.707946349927699 2.2329254354392623 +3.061452907918353 4.735892672158553 1.2808569384316266 2.7738241901189338 2.243367945451554 +3.353812717568859 2.2880324473742255 1.4204257297720226 2.519066572247647 1.530653221697095 +4.295566991148628 1.6706196107778686 1.5193615386690205 4.848212651369398 4.239292214537923 +2.0832969294376174 2.6392344170538657 3.116761044188371 4.97566901733863 1.9402590916624176 +2.1439626238817424 1.8195247933527678 1.8298157813260918 3.5311281988105474 1.731971087450697 +2.6325192674020483 1.9012091475974482 4.350352452035425 2.0060622857607493 2.4557098515542846 +4.8966774628407475 3.4795656944142843 4.393836994117578 3.1257690085974073 1.901631452230942 +4.87923094794367 2.937565882790457 3.6540424412353314 2.135702834940721 2.4648363810361333 +2.214230197872267 2.018331966830027 1.666908559124065 1.9464014263531286 0.341309800265685 +4.242116262463071 2.9477574552202146 1.5764862767839696 2.082367905561411 1.3897053443883949 +4.400370543071203 1.009549877656171 1.1230727624447665 4.659391876334495 4.899307875635851 +2.93377122070263 3.8552920042027474 2.2252463051664133 2.7357173509731036 1.0534615527059572 +2.408179985361875 1.8691863436515015 2.862609746809569 2.056843859169903 0.9694188008739819 +1.562848243516624 3.0396406150795734 4.417788296046677 4.4695711199713495 1.477699959247524 +2.066069657401622 4.197513084331179 2.916855678417106 1.2835460460385812 2.685284237733817 +3.8541680532331366 1.0492329465215042 3.201928230724792 1.7945245860910637 3.138223378249499 +3.4904890087611737 3.548837377940056 3.7954348761920627 4.9602031786899135 1.1662288500502636 +1.439353003660837 1.3970558561118365 4.377814668864236 2.669558585638917 1.7087796506767894 +3.2784640757340426 4.68819467567732 3.287976714159022 4.76246754976441 2.039966565584031 +1.1618507761491799 4.577217495373555 2.475505015545971 2.716070866508484 3.423828523076877 +3.5131399317427663 1.9182604772516751 3.061886984249793 4.400082561771516 2.0819240807619517 +1.6268532386782733 4.694816674881179 3.767221972161405 1.3552228468551384 3.9025811236098775 +3.261999443859604 4.944931208880128 4.067048262619156 4.207471182932121 1.6887800100262664 +1.2995747480646402 3.1901633310649498 4.5395826662589585 4.975652521418919 1.9402273342962537 +2.506736863941287 3.029723832656465 3.8949527095659198 2.418337326869662 1.566495565860659 +1.5130777861250273 1.757747949171645 1.0773662397591361 1.1067233485623769 0.24642509718481154 +4.2967022632011656 1.6416775608174117 3.6944106149737337 3.261081963310513 2.690154250339598 +2.6365360728212592 4.361599549345406 3.892172463236849 4.037686384409858 1.7311898507363999 +4.980357213742797 4.92206938710976 4.241140771573067 1.375399789184756 2.8663336946129503 +2.3149165124490625 3.0986406343036585 4.92686873586905 1.2252027787328523 3.7837222886197397 +3.4907208667239518 1.0411681868837448 1.6483569539500307 3.591941090958412 3.1269518111002212 +1.6805867028902117 3.5479082245928106 1.967346821432709 1.3509734882385622 1.9664195257590817 +4.58233247831571 3.3472688707853564 2.42071426769127 3.007763116686543 1.3674825284999315 +1.511885970801245 1.2057703255557977 2.0619567238706438 2.8186413627258955 0.8162588014493561 +2.452077802062705 3.0724179194811847 2.6760060455771435 3.4640009650020076 1.002874794936123 +2.3733990123443873 2.5679516331238887 3.0517800648789417 2.8666251674180394 0.26857598236984953 +4.193069419325707 3.849012996784415 2.6640944216427984 2.713273243059579 0.3475534180062909 +2.6326259200086586 4.961367532425333 1.4488473485863027 1.8363659144790474 2.360764311894049 +4.9103541498106456 2.8918504035109223 1.5733046022667123 2.8493469414330086 2.3880203988180275 +1.4580031183053932 4.211771327333359 3.0696895659373236 1.6998937391018285 3.0756430150895326 +1.9569924110633408 2.2853466644418536 4.08881627818038 3.9956111575336686 0.34132639837335843 +3.7006197975459387 1.8638865481723448 2.072262901770327 1.7957934540791798 1.85742412627303 +2.8031980664926714 4.195919351755333 2.1526839771180986 4.707856401608992 2.9100822492332328 +1.539282216124929 3.877837702178367 1.2622679187566423 3.2474307400085483 3.0675255806971613 +4.934428754257083 1.9547415672413964 4.7191527265029585 4.672427337779066 2.980053522072524 +1.6875950756104774 1.9542763881027447 3.0480674369078593 4.457531047527234 1.4344708404470279 +3.280748639584235 1.9533714268556244 3.4819303599982017 1.2720894186106966 2.577853225283315 +3.788049804463434 2.3861828262692333 4.543211535417376 3.3038526007048308 1.8711604938121031 +2.1889928917941237 4.441007495061372 3.4071402678209135 4.870077782855869 2.685471270787605 +4.856454271179317 1.0436929172606724 1.7130186762965338 4.187457268450569 4.545326774641926 +3.5453887248659472 4.324047445444661 1.9175693647538434 2.789117060821608 1.1687192946359308 +4.541944399342739 4.005043988931986 3.7257884381404014 3.322800453779909 0.6713131655480681 +4.918369620146838 1.8714713311732187 2.4474932194303145 2.212568083477072 3.0559415902227283 +2.421015856263438 3.309842518164286 2.154278403398098 1.7720567748604634 0.9675258178610872 +2.2533352009250964 2.7957934579869126 1.4865394449031526 1.7322195165846805 0.5954995031702244 +2.1599730799716284 1.4476735327124937 1.0177750564863994 4.312363423669492 3.370709592089435 +3.52500928370602 1.4759827359974338 4.157539534333209 1.6837001047873175 3.212225290416366 +2.5702835813948828 1.3052286057623883 4.713468025240274 3.8523731198358875 1.530309944908521 +2.3280430453829064 1.3777164003360598 2.1663320883986823 3.491196237757218 1.6304556867764028 +2.559151762602332 4.686026558804906 3.611173238245426 4.232049378108021 2.2156451836366804 +1.232363395026744 3.6240997782371873 1.3565680481374547 4.014582773730734 3.575674091446714 +2.8073906016781276 4.7472084979211235 2.022213409838248 4.483258044747202 3.133629551430537 +2.5436095600556112 3.657945113911356 3.416203543537125 4.976267082481294 1.9171703033716108 +2.6779407947811156 3.870607816457503 1.774231771887539 2.801590454676438 1.574141190521411 +2.4222270618605712 1.8443019028380023 3.16043562208437 4.422158795336801 1.3877834324394591 +2.6437156870785974 2.4452553932051098 2.882922920747471 4.972819474654806 2.0992984767007536 +1.9717187979208948 2.565225780793963 3.0406269830514243 4.448154120743893 1.5275415483906962 +3.4112552747666385 4.4239339413975385 1.6302523755394867 4.199598110912449 2.7617124379139413 +2.4066493988133093 2.0861217286321962 4.018636319687648 3.761237227385507 0.4110867062673013 +4.513904662443542 2.482905136561374 1.5950744285157703 2.1293686548130917 2.100102234270571 +4.392604382771847 4.127342267213706 3.9393450284332925 2.224825840060862 1.7349178762257418 +4.233947858639171 4.8472503317335605 2.5185745579532326 2.196985803633573 0.6925021663565859 +1.8422148728019452 4.206112197153715 1.4779806370446078 2.808027655067749 2.7123855976298255 +2.2933223218458565 1.3029812583218066 3.147660569193658 2.0334281848272098 1.4907344594101548 +3.2540644105672465 3.4396549358095583 3.0742359120413503 1.464846381195402 1.6200550932163569 +4.914314395710566 1.320416463444697 4.059815486064741 3.875536959156317 3.5986193078769007 +3.743087060874667 3.32511465139851 1.9985852778756068 1.476262686559688 0.6689707201980374 +1.5462781759233009 4.121663271106476 1.7723668337456449 1.6494919857661792 2.57831468536283 +2.161166576511878 2.560927253835908 4.177102629094906 2.6897115169675216 1.540175613224058 +1.6451907442003262 2.819247823774644 4.153426670185141 2.960895912114695 1.6734812921101472 +4.74135394061431 1.99879461330411 1.1763893517556476 4.87620741847409 4.6054625598991 +2.7583893252234564 1.4069909811214036 2.987201878630801 4.4270800052892145 1.9747218801823998 +4.386079197378098 4.662690649734191 3.2735041014036015 1.553882251512317 1.741727074543561 +2.787926810544365 1.9456565674926716 1.2947207521609552 4.963381459201119 3.764105543912231 +3.2807219444815683 4.307563688448829 1.6982658600030311 1.9188089344915946 1.0502586418871271 +3.212974402777299 4.938330525911697 1.2927004351856448 2.879670159044442 2.344211307899061 +4.083256537443496 3.48413322383115 3.12325353332236 2.798631245233263 0.6814164474372766 +1.9017305373319866 3.8980593792461815 4.875770419117895 3.442673212253308 2.4574573138472933 +3.31540627005109 1.6050246196830882 1.8086032509034644 3.9628209431923844 2.7506470612723417 +2.7485688226538176 2.477942839385029 2.47989250142754 4.821717259431919 2.3574099388995684 +3.6857211176260574 2.254924816222856 4.395009703436179 1.946252571025406 2.8361222733940283 +3.6649729753149427 3.4690701326768996 1.08125976994125 4.604188635131126 3.528371538392987 +4.689479949739466 1.7002977396419205 4.993512231611236 3.188264890342371 3.492009199346696 +3.258145416218761 1.6657430210623128 2.964363778403315 4.576584903205173 2.2660543557817325 +2.276815741334808 1.0455071170702586 3.2302447138734025 1.2897817440740837 2.298155230908184 +3.4290671202305263 3.8946741539200795 1.3815021098232871 2.4880753648163783 1.2005391615799916 +2.6904499317454107 2.1579996552493754 2.4359628412790775 4.626863645832573 2.2546728437478154 +3.9854148508595513 3.718080445185244 2.0952684724298773 3.3324354812136545 1.2657210956921883 +1.2900081736875224 1.415949967489036 3.197512379693897 2.678460573451348 0.534112453505435 +3.6319232000632975 4.961294433408552 4.641007780032015 2.4006101774493627 2.6051121460896804 +3.0904505470438237 2.360092151641595 4.1934713488682265 2.431522547137153 1.9073245569792476 +1.1904614196367769 1.867716061201052 1.1779630638581051 1.8752410190570572 0.9720444415389589 +4.313554199396107 3.3033903168844936 1.9048465219495032 2.3616707595758175 1.1086565985975094 +2.5661388506968366 2.2753015566960686 3.6614022625363125 2.692144422620578 1.0119521193316434 +1.7999702049787794 2.6932196736985383 1.1282808223838696 4.508522147362287 3.496273162734854 +1.7033951597927324 2.0527228729959672 1.2244932726501876 1.1201601618315942 0.36457543694671257 +2.439316087866194 4.762509360750437 3.488623074026624 1.46288002944191 3.0823468114178763 +4.072879416218404 4.031870779207807 1.2814505739517847 4.063776233195764 2.7826278555345683 +2.108595134206654 3.948392501441343 2.2038843749670445 1.5164291762817546 1.9640389514169834 +4.144469550583036 2.489609840810481 2.4028606021059074 2.544171566117257 1.660882129345223 +2.7603384373227446 3.0148263037631176 2.8477298120279135 2.7651228761253295 0.2675593018838753 +2.5255943078369594 4.073184504371053 1.950917448312699 3.8901010924812405 2.4810216891875854 +4.62469803087303 1.9182084341412824 3.5481434345896803 1.9550317348038302 3.1405558146945483 +1.0888387803040591 4.583536074757183 2.805413728638295 3.943215914465796 3.675255500496778 +2.1665721611663264 2.7311804660233086 1.4864832449096315 2.700190491690931 1.3386066706852007 +1.39642112971584 1.1372974798567927 3.679842876501763 1.0083856085530591 2.6839949702620958 +4.04426639774487 1.238060619935705 3.1852459902804613 2.9149567552963243 2.8191926393841644 +1.7249016806383515 2.840689265758287 3.747502004721468 1.5618173006327174 2.4540170253678575 +2.0621141172079582 3.2701541600018222 3.3622802262274996 4.6271681765977455 1.749086124804963 +1.6101629359873133 2.362010680080174 1.1858344806247785 3.6998600104440778 2.6240425672768217 +1.888386883232548 3.833207481070977 2.000789144743421 2.852250180786366 2.123043347102444 +2.329472188027786 4.029297820522429 1.5660101725672928 1.504795645920216 1.700927511435581 +1.4815100661081702 1.769831527464536 3.7597532219426486 4.180352276875107 0.5099341428937147 +3.584729377974626 2.8047880086138552 1.391839220814608 4.001934714794693 2.7241341793926925 +3.1652615065702934 3.1935926774065786 2.875397112208997 1.5254470485639424 1.350247321632686 +3.199259871969628 1.039680300880839 4.857816906056669 4.723102395840302 2.16377723509766 +2.0617385718739363 2.016285059996076 4.881496986253595 3.7236228715254964 1.1587659329214886 +2.913766463419946 3.723892476668539 1.0260415998133543 1.0610915718718275 0.8108838744748594 +3.5524722780159657 1.666051547179193 4.119146752872185 3.7790657455611254 1.916830265115941 +1.1714830315972127 2.645881094706417 3.6357668277766733 2.547902831752236 1.832293023057838 +2.407380830466074 1.0975727846591123 3.907000379496674 1.9014278367626392 2.3953952369137985 +2.7060850949481994 1.8990441705741175 1.6933377194625026 1.086437403498325 1.0097737603701094 +1.8381697998787492 2.262424362150087 3.9802921868556402 2.518811361755987 1.521814093686219 +1.9976685016353626 1.1032460137430724 2.220185543274713 2.4282259403595465 0.918298640784494 +2.7709513429799393 3.6896270254008963 4.149148532130241 1.5577591895610858 2.749411525081796 +3.816271548279068 3.112761398656162 4.912541303675821 2.2250432981253825 2.7780518462512593 +3.1411697120831676 2.9534212124516857 2.8877309891611516 1.459915967962237 1.4401059800844969 +4.597971912612412 2.7867512428530197 1.124219021166878 2.60636978356639 2.3403613389912925 +2.427386943953316 2.737401960651629 1.9274694667778696 4.615149650586831 2.70550070800542 +4.241628699313338 1.1500133974258673 2.6692891313695246 3.3038301395103735 3.156062018699437 +2.3490022350774264 4.245334536649529 2.7571729291554834 4.041590036519127 2.2903719138328027 +1.2124596850600335 3.0623060747848796 2.26085415927094 2.864066816622568 1.9457125110270683 +2.2713063695685167 1.3922429247611707 4.08568601910209 3.531489720571038 1.0391756720122332 +3.947521063088847 4.132368762391609 4.803333270644843 1.4015964477041152 3.406755360234779 +2.134010958924865 3.389671398083436 3.3771445532043756 1.557082246900599 2.211178404673788 +2.935322874525403 2.8437668296484597 1.1519254359488267 3.015572294720541 1.8658944567051983 +2.3739922397520603 3.4074299132152315 1.5872469927035695 2.579968550970983 1.4330001804542294 +1.9549109112493368 2.4664695131767234 3.664761777879109 1.975837805296793 1.7646972511932844 +2.7957974035046806 3.587149875463156 4.37396924263007 1.2400654799786 3.2322734303328713 +3.9454578105388523 2.104438285974189 2.557542580281682 2.2801305708517132 1.8618029736801562 +2.2150883323096484 1.6481829268742003 3.8468872921723505 1.2392359105718413 2.668562809205542 +3.9561281979987593 1.8547329960743753 3.141939685351431 2.745654294771977 2.1384349196217154 +1.2728688327036957 2.0641433713992483 1.0273922349600721 1.8602771327078185 1.1488309921324953 +4.362652200264948 2.4826967154939643 4.400963806723985 3.0846965003489237 2.294949290627653 +1.3317748172358925 4.039193115823576 2.2154095397500497 3.5945249050522583 3.038432660820389 +1.5205743628018489 1.2354631479413092 4.189585068709043 3.223781552476032 1.0070078633294286 +2.590944930197603 3.490579389753973 3.5363082910408883 2.857105624904706 1.1272348568544979 +3.21652585683957 2.076805780760361 2.8158040255303165 2.9342874965172387 1.145862201451425 +3.593007963628399 3.1884124391026947 1.7513867845574485 1.2507478794095324 0.6436900277415628 +2.046011961461564 3.4488956650299722 2.0610884719996 4.542789610789143 2.8507758992960364 +2.0596932488906905 1.4464943058280006 2.804250287168042 4.711808313637307 2.003694230195944 +3.637680320254554 2.1339558884309056 3.935381975920081 4.247217550347198 1.535717614778721 +2.0146104182032527 1.5883744700345201 2.006088611379019 2.1771700390771054 0.4592885132621041 +4.769793274338419 2.3253243591465016 2.88706499559933 4.280789213637015 2.8138755255491144 +2.6182342636712552 4.017275589255738 1.9408414135258405 4.548094099960637 2.9588989846925577 +1.8428248592245104 3.083435949895438 2.7695256739687277 1.5674441496065938 1.7274593684102963 +1.522045662344052 1.0757920329365365 1.1845013124916726 3.88832310240143 2.740400440328053 +4.118453163180648 3.1509249790721485 3.8850118848933985 2.8474348188604295 1.4186884629832848 +3.085476435479345 3.6222421279169836 1.0350322727889605 3.3191931629248472 2.3463819767046505 +4.630502504237683 3.7721168600341537 1.8203701215699697 2.5604938820684504 1.1334059709694138 +2.623097912606588 1.1480677552829537 3.720288425266722 1.2976925943423128 2.8363153077587326 +4.8040216776218685 2.2234689326395185 3.554417763642134 1.5681671169896263 3.2564465450799966 +3.6752456876042845 1.7533329281588732 2.195952721504031 1.9287352690440498 1.9404004282153406 +4.452932728509925 2.7398205068305774 4.460841972270812 3.673857576537066 1.8852315303950224 +2.4587699079324294 1.0033768155315617 2.8492952363132016 4.456384727248812 2.1681572095408215 +3.558373473174103 2.0099987652281284 1.589336213828429 1.6015258848689249 1.5484226891539847 +2.288634433858734 3.72554561135544 3.7104013536069815 3.4649630736227786 1.4577220864405445 +2.9842225101688613 1.6134068749436352 2.216708109587732 4.099734169261352 2.3291463344298275 +2.159788347871812 2.0449767952442075 2.591769357048947 1.358208781647746 1.2388919992480796 +3.079758555740944 4.81400468941407 2.489771480025409 3.2067457413503435 1.8766091078225695 +2.1242485174360253 2.185934546908465 1.7591726882955099 1.1375601125244548 0.6246657991188571 +2.485623251544847 1.130755778862531 3.28751317948846 4.297343168603289 1.6897995370600096 +4.329621790632563 4.715845752028528 4.056231113055107 1.129031686856381 2.952569292852336 +1.1098694495186252 4.236167111078809 4.372122873984821 4.475223519926792 3.1279972525356103 +3.4006612812528814 1.9568354528765428 4.210772248679874 3.919074252244707 1.4729971974891574 +1.5929768270745432 3.323596551833105 3.5764916378536635 3.165040617636238 1.778858221939388 +3.005818117237296 2.344515500583165 1.8708494771247963 3.4547644678789657 1.7164229807158202 +4.71860137385832 1.8902388209691146 4.2707004308802174 3.9532439995295916 2.8461225055137414 +2.4742886046761816 1.893731464812956 2.6942745297250292 2.5261305496491855 0.6044162395914877 +2.864414923052828 4.975188906777504 3.4122788542373823 2.0604106329585763 2.5065742554475543 +1.565077776685758 3.3917719748453345 2.807389818230672 2.8926145718215386 1.8286812057366595 +2.356052712130199 2.5073098201414394 4.349136048870168 2.224161948752233 2.1303505906061453 +2.4197420709811746 1.2888319245904838 2.43622615326121 4.109262083452704 2.019407582168872 +2.451939982798362 2.0103478153548306 1.6505080249414257 3.4211932803154887 1.824919153263121 +4.048577375473605 4.0846535946233224 4.163570207704984 3.4915092653547832 0.6730285312085798 +2.0458673195825523 4.7522815095942335 2.1730293739157607 3.8966378236210755 3.20866075735534 +1.2906754097530881 3.035076736423802 4.363927454336034 1.456375041695062 3.3906927051481506 +4.005664632234362 2.8544722268256533 3.9329809570496272 4.345405386253482 1.2228400811532203 +4.996447642878586 1.3827424152261192 2.2109257835026126 4.752917860144455 4.418211084825246 +3.1588811155596854 4.851322920676683 1.702709488773524 1.805180099629927 1.69554106107666 +1.299407508596536 2.9670639998267845 1.8959892688292137 2.9449648185320747 1.970133974281141 +4.879012452833983 4.0680474926534 2.314645096234144 3.911152115816784 1.7906699389383125 +3.7344846470439745 4.677025521675411 1.252825334395372 1.8123029214875954 1.0960832408213939 +3.1731822064485264 2.350825219006475 4.4677048878272725 4.74811204901729 0.8688493487604226 +4.501947163684864 4.1860964704909005 1.5463397365009741 2.064745000078958 0.607046684939854 +3.1209431114198307 4.028635789217466 4.915338499943377 1.0786408304249808 3.9426076402065844 +2.8827083776332914 3.4999486779175215 1.0743697777437125 3.2267720311389154 2.2391563252072673 +4.813523156386087 4.008928367346253 2.4193983422001266 3.6732607768355154 1.4898133371465836 +3.0681289217287606 4.69608922873655 2.143214022265064 1.6113021469679767 1.7126543738521678 +1.980721479866565 1.2686650541974442 1.6069231118301333 1.4243316449386896 0.7350945497813554 +2.9125921694735144 2.346143077869353 3.9262514405814097 4.162842369372265 0.6138728214909822 +3.1797257880957055 2.992307450536752 1.4385385735703977 4.301415704461715 2.8690052456964703 +3.54818460023283 3.14856689437271 2.5536824045329394 4.131234845844615 1.6273801080034538 +1.844396952059757 3.6409122916093906 4.479330636829304 4.548140982413832 1.7978326476334214 +3.687374161254175 1.46304339946116 2.037174510721382 2.802843956846708 2.352423652021157 +1.121309293361855 4.756716410770621 2.9640273247207545 4.450791673872322 3.92767783037438 +2.4059872073902673 4.814111461009617 3.571432285272025 2.773517065024431 2.536874281388913 +1.2982641788511957 1.207679398602838 2.5913643463886373 2.9251676120170735 0.345876021945511 +4.000995292218417 2.983654545729311 2.453827463561509 1.790214486392545 1.214645782907127 +1.8879662087942015 1.3128952849462414 2.859924955202857 2.4207952451753876 0.7235616557586201 +2.003613071179031 4.096841610378052 4.810483135094291 4.794433497014816 2.0932900678596233 +2.492699733589206 1.9087848659942335 4.239061201222215 2.8149263494044203 1.5391935059506154 +4.33260531527659 1.2030818097760085 3.0174507562244477 4.649983222294244 3.5297421469921253 +3.5954741892220943 3.0683968372087955 3.299495925514377 2.1207109673566418 1.2912569506431648 +4.280528488732447 1.6128522416367432 4.126840129319745 3.0069529619445556 2.8932064957362176 +4.183823268023968 1.7974116703578673 3.3267925316771954 1.4577844775438176 3.031196367754934 +2.78038427470075 3.846705673112382 2.731093744202543 1.9331455786950453 1.3318267903700238 +4.882539814885947 1.453979343529734 4.293734222524456 2.3072523199567114 3.9624660572647814 +2.5576159376957635 3.5563713608787935 4.436096605818571 2.465889847584558 2.208897251012028 +2.8593429201421428 3.736903822659103 2.499945790488797 2.2637245078902737 0.908797904915539 +3.0110890276144993 2.66258608327588 4.217240839495968 4.844945391052979 0.717960518592823 +2.2530041802786718 1.162855347016746 2.6639031118073238 3.5495103813144544 1.4045371887088691 +2.2805150375217633 3.922915772141202 1.1513061328252596 3.0339904161528906 2.498395541896308 +4.863785449968384 2.648328766638684 4.482008657689453 2.3577902519219864 3.06929179960321 +3.727085797691557 3.8274846340483566 3.9746013723606297 3.242491909931064 0.7389615628168403 +3.720848362874685 1.3708320422804108 3.3174096673410336 4.878388772560243 2.8212111714634927 +3.5610504522319926 4.215770739094403 1.4668938067240247 2.185645254341231 0.9722460066675644 +2.8700022566426027 4.448258347995621 2.219534985526621 2.86005942667704 1.7032803203242743 +2.358735743367644 2.0891117216146564 3.9315514793322386 3.552782307438352 0.4649335422223654 +2.3055265778544314 3.4250539409511074 3.9430140816958184 2.7483241560869183 1.637261596408343 +1.4652064024429885 1.9119444419195526 1.6105331079856895 2.90585662989076 1.3701963006503557 +3.7539236831414615 2.378903499030172 1.823385758536841 2.386575764323799 1.4858881146747753 +1.0846088082667311 2.3325791542097054 4.211145637372352 4.608525949309755 1.309710310209282 +2.7206374795488575 3.890295679677682 4.261797446205914 3.5141193119416116 1.3882085209310413 +2.291894034616433 2.538315924726012 1.363913646938531 4.462522049513483 3.10839151015976 +2.0609951071809878 1.9368519799593709 1.0120320251818056 2.976949759399962 1.9688354980244986 +3.1599700138856255 3.2879903841780203 4.489009084190807 2.9477263616278693 1.5465903291049063 +3.5796063036352805 4.7838691088612535 4.455053564135616 1.1846443585148685 3.4850861217851787 +2.787267044936869 2.525610188060361 1.0490721609984917 1.9880768505481448 0.9747790096974461 +1.2475060539254352 3.4564081662334214 1.431039217489225 4.4770302554380645 3.7626200904453975 +1.5018938722648305 3.0135988956395336 1.9361505754474382 3.0375185207334576 1.8703645175740102 +4.455809391509163 1.6364788049439958 3.8270418746090686 4.712758419419469 2.9551850625794596 +2.6355867639412303 1.5398023989261835 4.037108161594498 4.090086665722193 1.0970643082841758 +4.034457108143902 3.5910414281289222 3.8592764520560854 4.284543040487923 0.6143851695146947 +2.038847089971631 3.935458175333015 3.1301623560621215 1.5858594923187872 2.4458137590751976 +4.986111860632388 1.0664819005024087 4.560415002497222 3.048417261008155 4.201147009403097 +4.623070800375973 2.8819102441429547 1.0561603648631652 1.9615606235345662 1.9624957862334158 +1.1825882520956732 4.700472749320079 3.551926135040872 1.9618199360991468 3.86056330860209 +1.5988077487360695 1.981125571493501 4.284750447378375 3.3950898497075936 0.9683299523643347 +4.439173017242435 2.293239377317624 2.691286280835664 1.5550837828827633 2.4281654192652034 +3.7195528486348506 2.8621452563817433 2.6033068888400472 1.6895834112635835 1.2530117209059526 +4.638336755985219 2.4860147140372386 2.675729423372432 3.6581152936922683 2.365918885012584 +1.4878407272998517 3.654800901616885 1.4354409463161497 4.345721337157679 3.6284222949365788 +1.4306821781586572 2.3635508086355315 1.8996134922031551 3.242079059423352 1.6347653289997448 +3.5567769469453143 3.662844212993936 4.632619317804888 4.41278440628254 0.2440853400986377 +1.4482156308906595 3.401288476554317 1.2954723173974845 4.830676160024767 4.038831483163842 +4.648451595224577 4.400534161948871 1.1640288398181902 4.5590853247660075 3.4040962955986194 +2.1365840404279104 3.6595942014117635 3.3255984377995187 1.301865176124716 2.5327961356708117 +3.2454996565769636 2.458761520252832 2.2746371183808165 3.0970753930803325 1.1381395392646214 +3.4615416440761573 3.3906511977508025 4.414351880465059 3.1671819708116042 1.249183028593174 +3.565833483597158 2.231810839942673 3.0960040059269223 3.7916330571889656 1.5044986509607217 +2.4631944472919693 3.813472636286928 2.3101377251575097 4.431271107647939 2.514449843204433 +3.742137262768327 2.8326224827115554 1.23820156273379 2.1873074953766083 1.3145414434393128 +1.319913338235137 1.1756650055722986 3.9379018341798346 3.9358359029622156 0.1442631260849591 +3.5087735180483457 4.148250462630116 1.9104751389122354 3.244042565751246 1.4789634358487898 +3.9902387791244247 2.7119374821238886 1.9113598785684442 2.21826383026356 1.3146270351241567 +4.721798592554608 2.329464516688928 4.611682685180949 4.120866423059762 2.442163576362302 +2.474662391440928 4.0685953951620215 2.0498257889993123 4.33311700961548 2.784607911088061 +1.030110300513127 2.0787881675096993 3.8239563380206287 4.297124715325271 1.1504840642136636 +3.2288199230234276 2.536127821780421 2.5553821156355188 2.7082971584325946 0.7093696902448562 +4.763618711644314 2.8447973518460308 1.3144909062576198 3.6418683801449205 3.0163821569516296 +4.848902679589168 2.1802539643405288 4.081395995559969 4.010635016227572 2.6695866874095495 +1.0978919069482296 2.3476317872654633 3.470597311448888 4.072128338140614 1.3869712846804492 +1.857853382481569 3.361282345609642 4.260932726153235 4.738688307550402 1.5775135634055568 +3.75407204562252 2.8367980524644705 3.601010213332762 2.8077592838042578 1.2126988973863007 +4.071500971451005 4.516150434372261 1.6515157696837761 1.5227461781708143 0.4629198122510815 +4.570249198784636 4.287118486825238 3.447041673511485 2.481013195831679 1.0066648000913705 +4.015059142293772 4.055910325207928 3.5888482351131965 4.7475317293327155 1.1594034064648249 +4.769587127600406 4.713995036788424 3.958850567288354 1.4657858162550363 2.493684489546676 +2.605130842388225 4.562285076661739 1.9639615810867586 4.4218898487622225 3.1419522698113753 +3.265302059456295 3.606671382307855 1.1819974952025327 3.450083653472514 2.2936320184196974 +4.381543880988145 2.57301175929527 3.5488273536535235 3.689965537629252 1.8140309871032798 +4.678454910165022 4.047501708701612 3.464352781859385 4.5517835978346195 1.257222224576662 +1.0609688407557205 1.2987444335755916 3.377491131553372 4.819290303806741 1.4612741309047188 +1.0124836899095064 2.539546003958948 1.0230040872501576 4.754931128311062 4.032269677339505 +4.051809774363303 2.937334581529331 3.6305899418477954 2.9046889682337174 1.330032773632359 +4.253399772522028 2.991089889143745 3.5193303197077035 3.7195574934981734 1.2780912184967912 +4.91581559209325 4.798880048943001 2.607193775087041 3.00109545181472 0.4108922634714858 +1.94494804197309 4.5343662776620715 3.971424243082837 4.363691404567994 2.6189616883983353 +2.8315243484258663 2.102578284764365 3.1592601351274308 3.511396574615751 0.8095445853954611 +2.6831549067694844 3.9920766188759207 3.641377358754169 1.715976877430601 2.3281844991118446 +1.1228945814262894 4.424001833574739 4.094042811050631 3.803004173231631 3.313911975127074 +3.114574328963178 2.4509465923380316 3.4088108095243457 3.6278650454603674 0.6988465719310135 +4.316741300768628 1.6160406521543842 1.497304132629309 2.926943608129214 3.055757356750212 +4.212178943250747 2.3913858496354417 2.587808534281268 4.4200421812502855 2.5830926477466076 +1.328144279025306 1.7124831641469433 1.11498534523043 2.911955272411677 1.8376118463403308 +4.491663799483141 1.7725761895436811 1.7395254920832475 3.526345645761739 3.2536385312627942 +3.248519587207605 3.7855596561881986 1.6846087029371128 1.8708399585120379 0.568413684074982 +4.290724500379245 2.2345707429411905 2.3180018219142013 4.444707794198045 2.958149179263007 +2.722891548034527 1.3864484867773528 1.91604109415402 2.4161735431737004 1.426959187413876 +2.0709766943467396 3.300391685768682 1.6463083744881954 1.1803957548508142 1.314737916951657 +3.3899342443489413 3.1755896433967723 3.1518588006941255 2.4130478081685403 0.7692758222081237 +1.7841354731332162 1.723255659023895 3.4646569159989045 3.8256888928142727 0.36612899372925667 +2.686778081713658 4.276173163799193 3.590780275205689 4.184483130289756 1.6966613707787 +1.122457705453734 4.134615145467157 4.753235642381913 1.271432771234989 4.6039161240139 +1.0390693668022468 1.2725628681011063 2.9226111517888653 1.0532524186725563 1.8838846271008776 +4.968974586654392 2.0432232623565714 1.5543866539185385 4.6284059336580325 4.2437737149665 +2.5755064715180924 4.325986921536633 1.9979015285842427 1.9561708606570596 1.7509777995573677 +4.554628239439071 3.83943848815634 2.1767175954801004 3.95782053199666 1.919329062669496 +4.1806267049345855 4.460693587171396 2.9513301350551324 2.7888308177792176 0.323795439499981 +3.4343314990594536 1.1256681448293686 2.7752051834311158 1.0804574028025948 2.8639302580737196 +3.4090069194796957 3.5931617564764413 3.8644921680448623 1.347335634010662 2.523883915876554 +4.185022960840994 3.2604951457388895 2.224355804043113 2.4448794338647115 0.9504642824468287 +3.3961668953238364 1.9546897710090154 2.047337340851696 1.8388110521525727 1.4564818958715402 +2.1067099680762293 3.260152581299074 2.6146553918301048 3.154614303953304 1.273571940951752 +4.206442780737703 4.753469027219631 4.283932550489721 4.739246260451191 0.7117220586851192 +2.759233939407543 1.7888842822515074 4.960427114404343 2.4467910136679754 2.6944284930329783 +3.5727933510409815 2.6649476598725563 1.423715650367452 1.996307310003191 1.0733335956996248 +2.1090562937620225 2.8694694017361426 2.4275998197936146 3.8014288211770557 1.5702338105585052 +2.4633313434754234 1.3893672233670582 1.547349648923567 3.145556839400075 1.9255298374657681 +4.171456274657625 1.4551804511957203 1.3640626012121095 2.57766756615341 2.975061572481118 +1.0008561014366109 4.059496170975759 3.510430220382355 4.390923150237124 3.182852003237769 +3.685684416885993 4.248897208133785 4.005888845020207 2.1092875053076416 1.9784603331946353 +4.047817722424014 1.8168525766645205 1.6479160502349544 2.5443627070833688 2.4043340221708753 +1.4517082290908259 2.2556015632549364 1.7100370844708754 2.98837913467592 1.5101002913832997 +2.834216054602299 2.2685851861998447 4.249431144699396 3.3761535889892746 1.0404575765482986 +3.4325393749635458 1.4737925984860705 2.3944697920860594 1.1062982124938783 2.3443709076914248 +4.065437821488574 3.576481120785841 2.1724874685113256 2.768660191072598 0.7710386308663282 +2.489467784433564 3.9287248403331745 4.528870703111641 4.291522538095176 1.458696344135234 +2.9315242694616477 4.745882957485128 3.1549506276530086 2.8729361764758456 1.8361453100119935 +1.7470041366674742 4.9884997118180845 4.363870497582927 4.664273660451476 3.2553856336818856 +2.920902270825816 1.3109697501990354 3.440325509600049 1.0972554916860089 2.842861204810991 +4.7038417302931315 1.0087471381486615 1.8038010770319715 1.5841487525075313 3.701617374684247 +4.538630185792025 1.1290495006192893 3.1775990561730647 4.221982441592095 3.565946873474463 +3.770017384426506 1.7396454632578249 3.8376400796597707 1.0211147523404978 3.472063515793042 +4.777971552746047 3.033668699282971 1.7858579038228677 3.906978413718181 2.746223709404968 +4.889283694947185 1.7306006322243728 1.9013428798082574 2.6279262608580582 3.2411729513171195 +3.979680113087831 2.6491973814009535 1.6526437064089978 4.911539997959752 3.52002689455638 +4.468508027947179 1.9589805685767927 1.9165759577226344 4.818785634885701 3.836736774858674 +2.389428872323115 4.479030990764982 2.6884380010625075 3.9920418348382007 2.462888541698837 +2.8710395864852982 3.5012224846042628 3.8374371001877066 2.6637747298502528 1.3321463300357614 +4.517897431790432 4.808243721270017 3.5067899447833066 2.753457008355284 0.807348425973464 +4.671058265269348 3.86332580237132 4.909141941900483 2.1778665130590307 2.848209472600703 +4.774553412140831 1.773092045552099 4.827867463349139 1.4088489980609786 4.549555758654476 +2.560127214025558 1.7775786763217845 3.6556124501433134 4.49135803966448 1.1449248465582345 +3.5720562487684977 1.1088958741532315 3.545739430446163 2.2926603013990285 2.763578537825249 +2.0418619135820095 1.9659808561622838 3.0678577695357427 1.049392753000972 2.019890828200833 +3.78628581080196 3.1655408553043247 1.328055042994463 1.4513429508067635 0.632869819148058 +1.8220342848476085 2.674660112500499 2.3921501763838493 4.166132446300942 1.9682438608975712 +4.640000362217403 4.758748672354509 3.6435326543043427 4.505714276590693 0.8703208092242427 +3.2961210222809725 1.4219431489576486 2.2593355183829464 2.9628781865979748 2.001877865119113 +1.144564170952178 2.446135140425627 4.27782801410218 3.2263251890968094 1.6732439091687528 +4.534992683487375 4.821226599440457 2.330353479520279 2.713796042913079 0.4784956155108187 +3.9341831880728386 4.13032516207112 1.97723362069911 2.4441224969378372 0.5064157350630055 +3.2761291070527316 2.1077902103221864 3.677086429852638 4.58960659296905 1.4824671415271067 +2.5427809155367873 1.9097044164556207 4.173205676833172 4.588454563022243 0.7571112805724994 +3.0703814807695946 2.863807435883993 1.5639295371791637 3.1466626285149286 1.5961569078350868 +3.183588462648694 4.814042347741957 2.2458790195932883 2.8499085147060623 1.73874423144461 +2.6461605301788467 2.6930859624562506 3.241395610080086 2.404162785372244 0.838546837667815 +1.401531330683365 3.871142494640971 1.362329291731795 2.656383791704106 2.7881098167114278 +3.4325080943695 3.3603950277366605 4.659301286356753 2.7188048022233144 1.9418359609692646 +2.0363173985955614 2.5761882616207568 3.7672897695756755 4.984026429696479 1.3311305904476456 +3.4010486189058664 4.10438715203624 3.0037062259836507 4.921307282248424 2.0425177852772203 +4.02522676422514 4.355178827945018 1.8744553383899514 2.4963190309421472 0.7039764317558211 +3.708519959531036 2.289936540679771 1.2490449826205263 4.898864911349948 3.9158095495555174 +3.5460922765229013 4.431085859357735 2.127131933378524 4.7386078258754285 2.757357426731496 +1.8768242158363724 2.1264574967105623 3.825657533036157 4.532049349788362 0.7492036930598329 +4.001253501148778 4.589743924585134 1.0832184922867403 3.9686783044481317 2.944859810937484 +1.1852395634419048 2.14353818941702 4.64036594576783 4.836282588349231 0.9781204360333965 +2.8536226288821247 4.409736483824178 3.7363534107511547 1.2393225436206965 2.942219142236843 +3.3005768351950002 2.000972670502661 3.1168066233265357 1.6056236119236118 1.9931495375005064 +1.3328351232806375 3.741952660297385 4.603235162001942 2.2580262418949557 3.3621201920976915 +1.6479073279787277 4.591266464317882 1.7775571019865435 4.923714283648673 4.308325430743988 +1.829042875869698 3.4043809784049683 1.9204170618691307 4.1224373076510465 2.707504995403125 +3.5528976759778894 4.842061191472272 3.8471838006373713 3.974155586642403 1.295401252169822 +4.3063370533832845 1.1251254836799318 3.6495767785811624 4.731415745200188 3.3601313368542294 +3.486615796733752 2.17791136110993 3.700320144659748 1.5180079185929358 2.5446402401640493 +3.9670067679903793 1.8248617503107813 3.9612709850974945 3.576762462333795 2.176380500015438 +2.0446961133034893 3.408461352603619 3.0615523075376085 1.728300083002392 1.9072013847917173 +1.5808386799417238 4.4597591818130375 1.6254852198553786 1.629497979014328 2.8789232984452786 +2.3645444590809164 1.6521179369224548 2.7336261718262675 2.1647832004929914 0.911665440559239 +4.81041032070714 3.820942569295499 2.225541808988373 2.459827624901225 1.01682657057217 +2.4655862751997626 3.489340617264738 3.6734169922538364 3.6563761303657167 1.0238961587342637 +3.9129726255549504 4.831085996252478 4.105040119515067 3.1120870127068945 1.3523638688509751 +2.3594326457809967 4.5800502187019205 4.087137566531474 3.1722794306500304 2.4016885339181027 +4.194632527789076 4.366194327238975 3.8626831655912084 4.64242445569899 0.7983920907232452 +2.413254079926328 1.9192512307167457 3.5926381533635845 4.104644253821425 0.7114696493408761 +3.3234236543874873 2.2938464859868137 4.566707067807851 2.658365405598434 2.168362756878136 +1.7383806915090636 4.195254273696913 3.067517867963626 4.027082509705581 2.637611059374358 +3.706547148579274 2.2127711806953374 4.36572076400352 1.524121522710793 3.210304174115436 +2.8094091499047265 3.396958360786216 2.192683901422602 4.385647014528436 2.270308633347081 +2.335611524361624 4.963873658202996 3.789498558816343 1.9176475441369658 3.226699252384798 +1.816257355154527 2.466519183265688 4.447629690365982 1.093542410877948 3.416539466115079 +3.1204693173990306 3.3909541377113745 4.962929048248219 3.909416927690091 1.0876809395141038 +4.236458779334814 3.8636515823341417 1.3278920759036072 1.2309462424515578 0.38520604974378425 +2.89892807465459 2.419609410665298 3.765275084195063 2.3715560431531517 1.4738382363784919 +2.28468774582083 2.4190883598817394 4.62607840396494 2.600293810741128 2.0302381001259224 +1.0470351985112627 1.7846636637094329 2.3462470285752133 2.0696403713480453 0.7877861356313629 +1.066917716670433 4.864145780409249 3.085990495535755 4.836510767654114 4.181299103286319 +3.4238564485066885 4.187256877748632 3.9348705161332984 1.1252190115398562 2.911515377364677 +2.743228318565772 1.368006873508044 1.7249402009839012 2.7094921402826855 1.6913239027825697 +1.4996707159408218 4.3346316742249655 3.508617437658299 4.228409579869874 2.924911000865647 +1.8500696031914057 1.2022108150114645 3.8139782081429665 3.6577781135517506 0.6664228979951744 +1.7159736439424127 2.32249907867616 3.255347542254356 3.285991620926103 0.6072990717402763 +2.461029405837132 4.225499837437262 4.318428456032611 1.156481279334562 3.6209481979475915 +4.929617391474629 1.1795153043775866 4.009148691855835 1.3085978230624158 4.621281278886894 +1.4817910665434648 2.314767542407652 2.6136408494313113 1.2421733903221313 1.6046098593547626 +4.28305896204423 4.517884422246944 1.2813228225103006 3.797641295935185 2.5272517991800414 +4.756058810193708 3.620459763014428 4.9693017491027 3.349203893781841 1.9784595666249372 +1.3103500993634647 3.2804402689673617 1.8393465169090555 3.3653537360441526 2.491977790675981 +4.493519174501961 4.446315967863446 2.7803190567491853 4.513714177297491 1.7340377120056047 +1.0131626535655847 1.6191150631972713 3.0097178913974574 2.4435103344256013 0.8293185879446361 +2.435203409734966 3.97844495816359 3.8651128376155226 2.0027998137174734 2.418636863147644 +1.3404293664810791 3.275100030596071 1.0370398315197624 3.8260820992594904 3.394364056760251 +2.3974157745537714 2.2437211260965255 1.783433565809915 1.743176348088996 0.1588794780424013 +3.8986549017757977 2.679642791387354 3.0904628486970083 2.911730056596306 1.2320454278336492 +1.5962514718841843 2.014424593923622 1.5979633650165184 1.4561140190601458 0.4415767169410781 +1.0983097602992582 2.0795613387399747 1.1699109238165315 2.7757838491699425 1.88193584177982 +3.8964124287877553 3.5249861985457627 2.2747473521602894 3.3530748888065807 1.140503275226089 +4.395666041434614 3.0088726651278916 2.251314849937044 3.782312395221946 2.065707954246339 +1.4668202984184924 3.4181026395904532 1.9488655270216197 2.2673419153258285 1.977101409861624 +1.422739835971873 3.3616444581179326 1.9011186046707547 2.574540701772633 2.0525224614226385 +4.385738585542638 4.076595930059968 4.580846104150686 3.9505148754086536 0.7020588574801381 +3.711592167806303 3.7961376376396756 3.1829435517759155 3.6926925585943087 0.5167126729834328 +4.211879822338095 1.5666516945380238 1.142220587793859 3.0732318263592537 3.2750627858974752 +2.192833058267441 1.094205858368119 1.0428458386485606 3.672639413179914 2.8500519239138464 +4.7182678763743695 1.3992507520748552 2.300466214913818 1.8765000651095085 3.3459859485020718 +1.9329742004021107 4.836423124458108 2.016801187965812 1.2261334756432776 3.00918113212071 +1.7750326110317824 4.968812615597098 3.0764470727884556 2.9240597136428583 3.1974134272546926 +4.028908922903428 1.1499977525179093 4.399475040926394 1.0002857160380807 4.454505314106739 +2.310585927616032 4.23470784096345 1.2094388766902973 3.0437719864191495 2.658387310922028 +2.825146209532801 1.5422949177823475 4.077958595056614 4.271559686682508 1.2973776703121358 +1.866784607530469 2.110445172342519 4.702209511921392 3.723860584194213 1.0082346429425286 +4.70467430789231 4.15937898052554 4.034166690042888 3.524596877026511 0.746329946059769 +1.5182270699364104 4.608213456465463 3.8299493840495384 1.2582898221383099 4.02013044207577 +4.052666368268444 1.3787771971908005 2.0446483310391 4.935392187927398 3.937776446847093 +1.2171774440359986 4.777450943813622 4.880190988485328 4.930418048551476 3.5606277748146735 +1.2861921360484798 3.2441538753836787 2.091998702389554 3.955227108292541 2.7028196878934234 +3.0822952276909077 1.8410143666045542 1.1554665457161981 4.076396710899031 3.173737734277092 +2.333292678969609 2.2087124790966133 1.0248670614264799 4.387673088301952 3.3651128659512137 +4.566026476630185 3.0991128682741587 3.917786149705966 4.5084339123495045 1.5813602732761172 +4.88107492848836 3.5435105293727105 1.60199021141102 4.065103995913683 2.8028571203664017 +1.5002369388304158 3.228050914758473 4.81014160804892 3.5221583273522787 2.15505036293039 +1.1539872824195259 1.7632685378944615 1.2802963187948655 1.4910523420931479 0.6447028382360511 +3.9188469702958484 1.3221832444339676 1.073950467659054 4.13452524304655 4.013699099452415 +4.9215023638701965 2.902310170343466 1.9374925689252231 3.2523541575484196 2.409563884115963 +1.772877463825759 3.7094754795029083 4.677407849989359 3.8337810262113075 2.1123726215141394 +2.410325004461616 2.860081577328042 1.1531589519712706 4.586119387596439 3.4622966839085723 +4.5782461025735515 4.067333117601541 3.9834887386874 1.1069610198422213 2.921548184695515 +4.314825357895291 2.679373351476433 3.7673305826163306 2.1366640398639025 2.309497053245928 +3.636132113575526 1.552101731911931 3.6824343738058856 4.362297479026098 2.1921214550148855 +3.967104129599128 1.6443682275845322 4.154447253589652 3.0481462451710435 2.572742503970342 +2.359318751715048 3.670702432800615 3.163771336194102 1.3005461326244259 2.278450200955639 +1.48974379716784 4.082993376227909 4.82582002366263 3.0851173659147344 3.1232977959179324 +1.2354330041366932 2.1190240354864924 2.7436808922982108 4.943245971958749 2.370404954927295 +2.5514526613406354 2.686430953187449 1.4938751332860694 3.482847770005817 1.993547413253517 +4.603376892011247 4.205690297954289 2.349109794652573 4.460739368759079 2.148751750513271 +1.4843599283211093 1.9551042182010714 3.6396352846981816 3.111606594369747 0.7073998051063853 +4.973632500167559 1.225287096735554 1.3909469452228689 3.2468490169640227 4.182638612565392 +1.0298337629364642 4.614691341402715 2.9111995025443425 3.85399013674293 3.706758427227148 +1.0559779413093988 3.9409567648302883 1.7044696027524116 3.024997252640186 3.172837229717608 +4.75976864791544 4.9331664974480915 1.0310335531483412 1.947381309745814 0.932609256464769 +3.5444385055932166 2.6672563235449056 4.207792093238927 2.4353188635875163 1.9776526313622267 +2.852341482611772 2.274380983804316 4.977848355397569 3.9310977652175465 1.1957111424687772 +1.4043062804134476 3.5269463235620795 1.5130975841971153 2.3975234263094847 2.299523825267788 +3.3609534033469264 2.1961311014420173 3.7776314172030094 3.329898991213468 1.2479083781662543 +1.8874846997969321 1.0845967840053388 4.082997941037405 3.561861028138928 0.9571899954081862 +2.226659300051206 3.895380645729683 2.665789079770611 1.3391094776560402 2.1318324737628576 +4.654535320591986 2.601452185198638 4.544512912011247 4.296019603969823 2.0680665571924783 +1.5612234445859112 3.4374320654393387 2.821760890459474 2.3300693684691263 1.9395667922920068 +2.2271611179538104 2.6565340221879645 4.366598602670361 1.2037002010924396 3.191909677543311 +2.648965920810643 1.4175098250284912 4.76527600059449 4.407526357931678 1.282368481624681 +2.866738683532098 3.7774451811429546 4.422581849229317 2.3320933932120274 2.2802474228759007 +3.0994386190654315 3.4421542849921507 2.0765976653461697 3.3169164105274085 1.286796260998437 +3.2716640745326235 2.630320118040995 3.1431171785469005 3.768006031862086 0.8954374068163019 +4.44477372320956 3.952570422684227 2.689446463875088 4.5417931708419506 1.9166252664146457 +1.1901715590700648 2.251144793434595 1.3210467132804138 4.461527847510548 3.314858361754439 +4.460208722544019 3.230110507828936 2.7938247021820675 2.7832781472564587 1.2301434256484214 +2.045214497490335 3.5088353375534136 3.5304539087817095 1.6549378988955152 2.3790221240682867 +1.5527210370513722 4.218117109893959 3.9496955817025015 2.868939995894479 2.8761726063259707 +1.0239297605880617 1.5738357267983893 2.8800463357523722 1.5245824085951614 1.4627641742598712 +4.445389172697343 3.870462774113392 1.5615930477953546 3.398142260581353 1.9244358588359298 +1.386477874387697 2.013745500448434 2.1785722639704606 2.756727465445543 0.8530698164256931 +4.936103303768043 1.5891314134989538 4.5317600343343 4.075529081764043 3.3779235509902534 +4.241659505067632 2.073137126275884 1.4222185328415424 2.314178633472353 2.3447989526690654 +1.5073919118630732 2.4870127627885057 1.2878518304854305 3.2888922755256287 2.2279631671673887 +3.0992767560677454 4.43289974722973 1.8869977601613228 1.4604286863010132 1.4001826514172642 +4.671253704952861 1.1718789565341199 4.368755411350527 4.941399878355394 3.5459195303139652 +3.345761180638298 2.873439395108928 3.259443607973647 1.9237370169868635 1.4167568479775163 +1.2930465107058238 2.964375617287303 2.0528496050993486 2.5734269228657527 1.7505261284194844 +1.774038442924712 4.616984451479101 3.662430600917465 1.7428832041194364 3.4303067233280204 +2.384365387541175 1.9901256754135774 4.266740776365777 1.5427302569478836 2.7523913712475183 +2.1167770169660898 4.751100096011742 2.227332742523803 3.4371279788206057 2.8988381463198323 +4.801117674036653 2.1826241548476584 4.74476579238549 2.8823875637047096 3.2132477303654827 +1.8051897475076024 1.6559235700724568 1.792964122378855 3.2078144958316144 1.4227023479932521 +2.644970260395887 4.148921436155232 2.9819069877549604 1.284254810420102 2.268015003098018 +2.574216371043759 2.6901433002696966 3.716442185554088 4.039522334714247 0.34324894129641004 +4.875159970360336 2.5409776486652764 1.785902693097018 1.1683729687571023 2.414487538041369 +1.2682595248238906 2.522205998125554 3.087874825317911 2.2312892642968074 1.5185916440095137 +1.8929959356754194 1.228520424755779 2.0974313407239893 2.9906251228618674 1.11324877590846 +2.930778488718709 1.9964697538351817 3.972844081663696 4.95847027534441 1.3580838728698568 +4.085713756035254 2.8615807115646326 3.2387242005259442 1.7594268641735087 1.9201099759920846 +1.8922577751665242 2.974932006467236 1.6603108885727158 2.125567078006555 1.1784085933703488 +2.006575732778185 3.6848490815168375 3.7131254630843906 2.7571225776940014 1.9314613508846612 +2.6730743503112966 4.4515659853028104 3.216896437586346 3.330266430268132 1.7821013582216518 +3.838722853164478 3.66401741238885 2.2462504838201394 4.490350129408668 2.250889870777148 +3.2082306236259917 2.9405094311412863 3.0593946645715495 1.1961648621696415 1.882365515372635 +1.2959420938066133 3.59222193111364 4.642616863276642 1.8824722926960247 3.5904455352683518 +1.3521179089010396 3.226561325465423 2.4192203439797386 4.013187487764387 2.4605424965577307 +4.188061149449064 2.385352975525197 2.4802099759999394 1.2638898841645863 2.174670394826371 +4.8204672094797365 2.5152646529217746 3.238038560821882 4.00462635934871 2.4293241199172195 +3.365185759914098 3.6204976802084428 3.4545391152992475 2.2848579336448505 1.1972210503331506 +1.2331412704714966 3.5008897344783585 1.8725868141458664 4.565421897366802 3.5205175587448765 +4.889650461535281 2.0863406293771964 1.375959803179882 4.258262090287046 4.020722881440273 +3.813474655891162 3.776692328449384 3.017489421122745 3.244164977771792 0.22964047464284149 +4.958711631974714 2.346815319285721 1.9511775357085606 3.6066164302499075 3.092326030967407 +4.771696657257536 2.3785261255020433 1.7292041470426889 1.6449302209076757 2.3946538974743463 +4.746059577059091 4.331873092277403 4.407044681647045 4.667453426252029 0.48924754311345797 +2.7877846855320585 4.558186915366166 4.686697696506853 1.3356345348696848 3.7899799958157128 +1.96523217760235 1.6397822423272062 4.510752539022445 2.607753733556853 1.9306273886936516 +2.2578140418802204 1.7967532600777325 4.130296274945602 3.121747391998318 1.1089399865684957 +3.313438894806936 2.86224965974263 2.9655414986265902 3.944276875622135 1.0777266184058576 +3.750835860401159 2.8582772649037067 3.5132234263076887 1.975589609875763 1.7779141148636493 +3.4813178217585192 3.3513678722163855 2.418574554581383 4.5616149488671995 2.1469767397265183 +1.3593609375090212 4.073467768205207 3.5806102041384933 1.5282246404826445 3.402743362396675 +3.547433453380637 2.8125723345365987 1.8751956095025082 1.9289862551439723 0.7368271829589602 +4.286289566463704 2.8907146939225945 1.4720191619857932 3.6390262609919137 2.577508291356413 +1.2539622200466827 2.3744556781692245 4.721706166221805 2.91925339709799 2.1223434158065757 +1.4361567546737697 2.394640720865717 3.94993752876297 1.5384478572261724 2.5949901636375614 +3.901817387178175 4.936243137119835 4.884661994281837 4.4099970248279075 1.138131567688492 +3.5765543230081436 1.911531535396691 4.91787550984232 4.325963020415694 1.767105338796937 +3.072718400463525 4.293328513762296 3.907908757496203 3.5795012984177608 1.2640176058368793 +2.303131999170987 3.9331163960954014 3.707416059458629 1.9627692938436865 2.387601614798358 +3.2286379454263017 2.7353214544018214 3.556792413483827 3.8394219260469815 0.5685425240809983 +3.4583112213547524 4.177931530513767 4.217885839317627 3.312637866980992 1.1564286751778965 +2.4752911422815593 1.3965055454121886 3.176220820579619 4.82184987384053 1.9677076370612596 +1.9839825403726383 4.879328339491899 3.1272339733532495 4.454570619022768 3.1850980938449536 +4.417010306356438 3.8281540123511686 2.500234971345193 2.4560550377609083 0.590511305159463 +3.7144748925986653 4.1289790845946195 1.292615601062581 3.574725614699486 2.3194481756495557 +1.1162357858217282 3.677079427749325 4.599742379266566 4.138961929204356 2.6019682514512987 +3.192634495893171 4.658464633563499 3.03351356744622 3.784134910944134 1.6468425528316986 +3.107851617341192 4.740592399205225 2.31948052794498 2.5356495050277448 1.6469886118048847 +3.5781321840437132 3.0153733479338705 1.3637242898537827 1.4416841593209666 0.5681331260074924 +3.041507430446777 2.1347431172409035 3.5529157504836135 3.4424701631588777 0.9134657888849618 +4.516172207803306 4.840853081622445 2.9992183032755237 4.534083377410594 1.568830285793723 +4.802550125150184 4.571730716486574 2.968652965953592 4.874995612120035 1.920265576426525 +3.222314027935764 4.2245856898311125 3.728807468458947 3.910456752419864 1.0185995025533727 +3.439340040878059 1.4681090676055542 2.8316196584535263 2.383665509172576 2.021488181970621 +2.3230352254895212 2.0751150310348536 2.5405077066398767 4.792847593684998 2.2659433774021958 +1.754764068791717 2.579562152485339 4.879231827147862 1.8646377624463253 3.12539105613976 +3.938782259813577 4.710953030379821 2.177421657094399 1.7014494801535096 0.9070817009171317 +3.0024320185268536 3.4857602722650105 4.0010139269994 3.5814686417929527 0.6400190990904379 +3.0795131875950728 4.323890233521632 4.605568783759494 1.4659136070874217 3.3772635166407508 +2.7344839854516394 3.7855716177112795 2.8832080042785075 3.933975307614905 1.4862358952905226 +1.0239368510990863 1.5321502334063393 1.414726089120209 2.313564000551775 1.0325649776081105 +1.204186425560685 2.4734583371376413 2.788923304097751 4.413309809466154 2.0614758558715143 +3.4043900001954945 1.3040063492026164 1.0770238835109525 1.3707807455147516 2.1208263897199346 +1.2162786875319385 4.872047065878953 2.2945231978888088 4.997836499984641 4.546707077150477 +4.042556533011945 2.8514797609563156 3.7057923377600774 3.1595404854068305 1.3103644390511409 +4.456645165569437 1.1340504627668984 4.983694738041493 2.040079622587684 4.438975727239296 +3.084475201498796 1.965746705199741 2.0966895898414264 3.1069498892748864 1.5073749769194555 +2.124082641786878 3.3915152641968183 4.94516178399846 1.1822989376491866 3.9705821050300285 +4.75510866362653 2.5456351199503207 2.6814122800853726 3.502307282392759 2.3570409298564057 +1.231005444269445 3.2835230965809417 4.726710529855379 2.996109577982491 2.684736182136644 +2.8631533242747835 2.8964936399734293 1.2416350025331822 4.65436077982711 3.4128886310070725 +4.181911940701644 2.830014205180678 4.143840126939763 2.66670938993054 2.0023842542139922 +3.5135069605641616 3.8824572332746303 2.9118648496752613 1.8010875724857676 1.1704488298313749 +1.3924129106586038 4.226703583905063 4.116738597384483 4.664674499121954 2.8867693660673206 +3.2092555925568766 2.1571747465986646 2.292517522113608 4.1258615173322895 2.1137701651874417 +4.279683440363973 3.168274608307541 3.5845824321248334 1.2094175161227083 2.6223344504811785 +3.6379709195034926 3.4579750174339376 2.6904665046130827 2.9416539697609134 0.3090204967461309 +4.926235453264896 1.2787431386945012 1.605745971607167 1.2072515495650942 3.6691958232354867 +4.754379516214242 3.1907067599250682 1.2568121913227217 1.2056329124021539 1.564510085410705 +2.1065303703760603 1.6604117690350337 3.52989243345131 2.8544924828551794 0.8094361616135826 +2.408604251627559 2.5709425610339247 4.741156052599776 1.0664690620966875 3.6782710890951966 +2.437160069194382 2.195901857668397 3.9628241010634535 4.433693443165868 0.5290779356207156 +4.236123458027421 4.138540473831608 3.2957468524281897 1.5562542894664908 1.7422275440950932 +1.9876093083372623 4.2390710728691765 4.791138773385007 1.8132697997450844 3.733200195719009 +3.624504737962966 1.7215505168630139 2.7202578725208326 1.0540590030165675 2.5293187700128694 +4.5997992814340005 4.7115499429843695 3.6169586431552165 4.414563284703094 0.8053951667198306 +3.8954682689935085 2.851101985304213 1.6650870948736305 4.2428523786391885 2.781290130981289 +4.273324337677957 2.314883284498668 3.5869028861859786 3.323876908559466 1.9760248034081924 +4.4922077981196065 3.2375786761285954 4.403460673261971 3.802740641529504 1.3910279617148578 +3.733744508144539 3.2391254116993573 3.719288573836713 1.0784090260839427 2.6867997387797855 +4.65112480258772 1.5821852733384438 2.5060197799136414 2.239096584575355 3.080525576325957 +1.6805239293559628 2.266890199454574 3.3524529250590085 3.994345743542244 0.86939737354659 +2.6462706792808253 4.287715385061066 3.061948570820036 3.8468873381858226 1.8194695904707234 +1.534490196433194 3.428908392538231 4.911080489268632 2.9863304520478597 2.7006449243681083 +3.6318375401086023 3.7205468688194787 1.2222824762382913 1.6998462347968366 0.48573293947281243 +3.824882230097333 4.042403712612437 3.904147119919971 3.0046296984073417 0.9254443186709277 +2.4755858382435187 4.7146687270469885 2.2994713407638145 3.6883986082239444 2.634883514925613 +3.1888206956413865 2.5691157036606556 2.912131323369067 2.386902470159224 0.8123420617756811 +1.2548882729257391 3.1079419673781437 4.65335027057882 1.596626906398615 3.574544127528552 +3.0690415167418585 2.7861728023147796 4.906527932513757 3.8922406197362425 1.0529926222263197 +3.1373764710466823 2.1383606951117318 3.6584250364042568 2.9523911057853307 1.2233218839504678 +3.2530799507492554 2.1735678247731545 2.6722153483688635 1.2711377167213178 1.7687184513179415 +1.8143132344057102 4.304716258734082 1.2481100953495838 1.276038343209398 2.4905596179598715 +1.2667429243365191 3.4938246123433823 3.2579036772570125 4.566666732263309 2.5831673540839186 +2.834248909929549 3.387575815987932 4.186882555042815 3.9294685250670667 0.6102726012172739 +2.11090306971373 3.5565661087640037 2.245881613430269 4.891364063030148 3.014717070243416 +3.0590561943486505 3.7733383248446337 4.907544141834215 2.9394753726834453 2.093679450644847 +3.1314867071254286 2.418344366802658 1.1140369807822723 4.965366185315627 3.9167982637930896 +2.475136954681792 3.90870270966029 1.2538826601680886 3.8212602089645253 2.940499660246719 +3.7205061791039906 3.6192967754362027 2.3657265820114612 2.256629331891956 0.1488138211807867 +4.93096686927402 4.893957136511547 2.6956833440776555 1.841810986793976 0.8546740447985637 +4.252080908280727 2.5250739031537384 4.565308759697933 1.7611203061232916 3.2933305450438817 +4.996996458120012 2.4205208788765953 1.697776286465238 2.5004487906530595 2.6986125248758577 +1.2114435420677938 4.6334612710597565 2.4973661518312555 1.734082441632677 3.5061100039487947 +1.4144119378003306 3.5110711782734336 3.2354135498986993 3.616527150069934 2.1310156139495384 +1.2416858756192974 3.7597113357932157 4.845149861145104 3.9563626601353756 2.6702799304123115 +2.0155989783006487 4.004446196943462 3.476654044824134 3.881581149074426 2.029650023738029 +2.003588689925587 1.9340633311566973 2.1458117086183397 1.8655752905689846 0.2887320999007137 +2.2422548150769357 3.0248541525486483 2.4833152293677143 3.325782297904509 1.149874986500769 +3.510500909125175 2.848978910973285 3.0685836378129916 2.3086131021249843 1.0075547474717124 +3.205963550918792 1.088834987930785 3.0417623820132285 2.910018872982587 2.121223633752785 +4.381621156339552 1.9086261897711734 4.2540976835022954 3.2302511226583053 2.6765585898359485 +4.417953477761657 2.5833756705006468 3.7642480426205163 3.2909444647759556 1.8946482543456655 +3.393607277713131 1.247970125988012 2.0051150076587465 1.4698228826029092 2.211401466493562 +4.019868818125326 3.3710636384642365 2.002550198520677 3.194447722532363 1.3570437977089196 +2.5083358608273274 3.659751469382415 1.457151469924252 3.896809579313893 2.697719332016383 +4.202213282672522 1.3459540485507575 1.7579017172520706 2.279909319552459 2.9035682787503467 +3.106464197141559 3.985861037776099 1.9384923861916525 3.4621935032348077 1.7592623162554721 +3.0598664065664996 1.1895394929725676 2.052856420850921 2.720091097656144 1.9857806720897386 +2.9064177462686756 1.6022342437629433 3.4777058385728195 1.162871463627528 2.6569442582855363 +3.0542810090730708 4.051134399633986 4.9912436822043205 2.239550562093909 2.926692964684844 +4.508355122774177 3.4750742489436246 2.821445410036119 1.1023175437913144 2.005759204072973 +3.9857357645282585 4.4935797938023825 1.1035938440482518 1.097160112549651 0.5078847811958667 +2.1444922117752228 1.8780617423249288 4.371701429456389 3.724840488719266 0.699581497541795 +2.1816509993201185 3.8212835237569767 3.1594967202199578 2.794524379944299 1.679761776073463 +1.5902739687725562 3.4787425580308016 4.735758629772479 2.005223372949808 3.319960301173295 +3.9566313762442045 4.137830473416328 1.9187559299908101 1.5149733081928645 0.44257600305711936 +2.7686463787721562 3.6098514625457954 3.7890873326698924 4.596675663735557 1.166115305379378 +4.021679470628316 1.4286331087681852 1.5875547850042073 1.6663377143246003 2.5942428923885212 +2.482433220506654 4.099283420101299 4.85183032262753 4.535832669456452 1.647440161201272 +2.3328153636820947 2.6721113761104913 3.4671806979222213 1.409686656546127 2.08528259819813 +3.871518199583059 1.0783093337104912 2.6726750752090096 4.790988287961961 3.5056050313337996 +4.953262203166944 2.4904583226058765 1.9450810877305784 3.6582739701699114 3.0000721335573655 +3.321978548320256 4.378023015407208 3.4896983239295114 4.923594359739825 1.7808109832257595 +4.85617815992715 4.57429517836975 3.0479779421954105 4.835565077477631 1.809675601183313 +3.2853329806200335 4.972767468224701 3.651555644982116 4.283496698488371 1.8018836380477574 +2.9930290368309187 1.391530292987008 1.8936981694370068 2.4357439929612013 1.6907430027457295 +3.146066813675057 2.6953697072364844 4.4566666687282295 3.3423248486892145 1.202033931983605 +4.276426151963001 1.7683583077643288 4.0408234400440595 3.2381339097950192 2.633384664851453 +3.578686744005613 3.9879997945104515 4.3449929042449 4.231025162946001 0.4248833008843124 +3.4591306064622382 4.1834322278846585 2.4140650743701757 2.4210161090592215 0.7243349747723047 +3.4573623136228298 4.010906738910351 2.9980997790288475 1.3393482129611907 1.7486761245864817 +3.6294490369371712 2.3828855054150084 2.4618998389996603 3.820772132129746 1.8440321437430596 +1.7208571809047286 3.644592252585858 3.081572208382199 4.519457527534499 2.40172246878146 +4.652705229850719 4.643324028691518 2.22945905834799 3.3395699623844073 1.1101505421318956 +2.851415342859757 2.3473682474416395 3.2671135279342476 2.335349403280312 1.059362005355844 +2.9628102512266112 1.3405967642969232 2.004212384790763 2.195950419363717 1.6335054548664587 +1.2956859004784995 2.9125990422429475 2.0210807522155925 4.75367299826135 3.175132830474967 +2.059133594670278 2.764532526408897 3.463361964389091 3.4522137998575206 0.7054870193493341 +3.0737950348981413 4.9088743184640755 1.0995190231719354 3.4863665130967125 3.0107402606556866 +1.6583814210283698 1.7792356568750907 2.2208556535307973 2.8271562426472867 0.6182282351082785 +2.7436734093599178 4.712915926437967 2.319128634918351 2.9995238604788073 2.083471563048883 +3.378621325122563 1.0446789171360225 4.025748909117842 2.6361920219592876 2.716276036496987 +2.1474002094144624 4.873193239863621 3.8359516608331345 1.894627010280102 3.346444238843681 +4.358955388461769 4.413939487396959 3.186385332910778 1.0766610850208589 2.1104406301221554 +1.8552750410187993 1.9253296077012787 2.939259381124923 4.659578520833502 1.7217449244184624 +1.0303059333341147 2.2523180449301394 4.585733239069244 2.0585487381711567 2.807129334830672 +4.960696542713278 1.990211313021676 1.170302445177633 1.137685538721084 2.9706642964836614 +4.423503001750531 3.7836580271102465 3.5456348516268124 3.3477749390491462 0.6697388570014939 +1.9256759425925325 1.8696391096985807 2.5734054650266365 3.051651460520223 0.48151776586792333 +3.7295122188883947 3.4852204612914357 2.2032967184958316 3.8947015892563055 1.7089554996143308 +3.7481793354781066 4.592152201572285 2.88588411734833 3.838715437075922 1.2728620202351262 +3.5147673909983763 4.942971464857017 4.779203458142957 2.6811739342338274 2.5380099999371133 +4.816191500665033 4.192874068896506 1.4353472201617734 2.846799063023616 1.5429584976481394 +2.872514440925882 4.121476911070399 2.5080591038929 1.4488486589683016 1.637630611116823 +4.461651758728995 2.2301292928997256 3.883118839737969 2.7538158824060575 2.501003335651383 +3.3552371720597836 3.98651081858283 4.140101981197692 2.0946624148532895 2.1406376237844835 +1.3374574369000252 3.292230187620805 2.028981153695224 2.1771903757865507 1.9603832483658394 +2.712972782045233 2.4805454226538917 4.652853365533088 2.3113105526060456 2.353050195419536 +3.388710733639602 1.0393968555603932 1.9856886375432476 4.081420901320508 3.1482327453942363 +3.539301071582609 1.8488476354754666 3.1207154458680386 1.3014765944343272 2.4833974346069327 +2.7668929237566178 2.353417521832756 4.573173951920502 1.8962968003858292 2.7086220098796514 +3.140632241853882 3.6706959557674086 1.4508371177745674 1.1685049016304436 0.6005655843291832 +3.6814318267696353 2.995433735672747 1.9944774583352864 1.1142266662993268 1.1159905187180172 +2.5124863413773237 4.98214261647902 4.378007899180851 4.232218250475025 2.473955686510766 +2.3056484935738175 4.071161374097351 1.0606669094251622 3.6006132677402483 3.093277102752447 +2.5360551438565957 4.35816935725258 4.739421040062581 2.1705765962444326 3.149454235767689 +3.3423968122365952 4.50167626951711 1.5341439517524913 1.5950029063803313 1.1608758212793466 +3.852892976708984 2.977009618924517 4.645457907858379 2.0076247725864924 2.7794487413841806 +1.819931097384996 1.0014457672827946 4.604338387694478 3.1893863662662176 1.6346276207553907 +1.764543807382212 4.3265542079192 2.0964339492700894 4.63046980961839 3.603503161368233 +3.4346337749514286 2.767087996814441 4.772640627818776 1.4134131394866691 3.424912653524838 +4.045599890473062 4.922486851931328 2.3805738824306473 2.043887165457866 0.9393022349390112 +2.315600111219068 1.77933096585268 3.0337299388716645 1.4733853703007238 1.6499272011033794 +1.972700278869283 4.832612819908061 4.893541990190364 2.9531006548229355 3.4560689111175735 +3.915205363738566 4.320970541181184 1.3107862668307373 4.66796572908811 3.3816119412238503 +3.4206927301139323 3.8693854768268396 2.6641816604277424 3.7554697023220474 1.1799299857763932 +2.5914532503571674 2.0942391449989315 4.030641859104273 4.166377053056154 0.5154084879436365 +4.070830000429198 4.399791974883421 2.1377663287014537 2.7997696182258456 0.7392322611858444 +2.871753981206895 2.676016387516908 2.5670655834338176 1.8382307176595947 0.7546611604897101 +1.7994121569805293 2.7463721598948507 1.4792061854800997 3.6821056640525685 2.3978113686890272 +3.988831569931896 3.29751308323417 1.5366765551337553 4.582236226608844 3.1230361769543244 +1.1373649119167597 1.1703167336747256 2.1387664342041286 2.1230793898695586 0.03649528623156033 +2.998721009715701 4.4187374903729575 4.754371226163215 4.987679065824353 1.4390550209722934 +2.5917439847235397 3.3333093582278313 1.288640780829569 3.4514786301665152 2.2864353841088594 +1.6395406343483687 1.7063617124761774 4.3707898628266175 3.1317166713218447 1.240873656093958 +4.365332345486347 4.857984220979294 2.0247665969547435 2.9624481338977193 1.059222608874291 +2.1521881534693863 3.185744944669027 4.781421299677273 4.335707916055801 1.1255665511084627 +4.05388415724067 2.3656301865314737 2.342730583684849 2.4985832903711187 1.6954325512378265 +3.179001421939218 1.9771695296024743 2.785186471948017 4.078262053180412 1.7653453928954566 +1.1525645837823761 3.031428258174938 3.419631293191239 4.178208296084275 2.0262200710362386 +3.4810469086703426 4.152017647595377 4.090273863976716 1.7753281600165112 2.4102230902506543 +4.203167870729192 3.563919139413278 4.135896284905682 1.3087203021904896 2.8985449759716717 +2.7146025970304586 3.294372030706524 4.826875909700027 4.001696423832497 1.008490842854642 +1.1630109191804499 4.088162037805413 3.4302658668398034 1.433161556860556 3.541882930268949 +2.044883377290572 4.56867689669304 4.243072176094698 3.8237852339086493 2.5583852853832667 +1.5887864364001794 4.958462684339338 1.7680250722499955 1.6151401410216986 3.3731427212796685 +3.3016529214120056 3.9736535657139305 3.780401917265075 3.4677893127357695 0.7411555210971568 +1.0061710033954832 4.5179985799954805 1.96186758998733 2.191588381417227 3.5193329722808824 +1.8233248946653693 3.0242181630400315 3.567566477124483 1.8841941608119188 2.0678218001934074 +3.991250991780795 1.7953144267576508 1.7747439210966012 1.8410642755353157 2.1969378204716037 +2.3501472531977288 2.291632426283843 3.2819907585467636 1.8052048740270883 1.4779446991296128 +2.3651666049595508 4.836808558770244 2.742821109955865 1.9586956668004762 2.593041970049998 +3.103216391580514 3.151598905010097 3.213696655526089 2.6364053611688867 0.5793152044840337 +1.8610806919317002 3.479913770447068 2.240427109416473 2.9552567080498195 1.7696332645997177 +2.603010826531491 1.5685275158123608 1.2190510284905338 1.7953016675404676 1.1841539254513618 +2.1004010202349837 3.7202836662457095 2.858690285149641 3.6078077910498547 1.7847119724182015 +3.730017498319565 4.9851406917750065 4.476608404052987 1.126702962228209 3.577317528528471 +2.4514648567065622 4.16647849254265 3.1927770760048917 4.016570572545746 1.9026054493895266 +4.978409443797373 2.6026306148193954 1.7830375848334623 3.8586253411907525 3.154740810044505 +4.838277079223068 4.370178724855778 1.251894717265908 2.854066983468343 1.6691530906269836 +3.575776130088527 2.5228363975474486 1.6557088439950598 2.535502440938856 1.372122025764101 +1.0232352760373682 2.4956940906826253 2.848295887145847 1.5921490822114723 1.935468872488874 +2.239900024498077 1.935521103978402 1.5402126475460745 3.5578086338571375 2.04042644837672 +1.7609920151080636 4.115302249597502 3.181517832520007 1.4461806176891145 2.9247516013157 +3.7855370349297726 1.2572642440949573 4.616528554478776 3.8032745154098793 2.6558511699524017 +4.255584647590716 3.2266808225776207 3.3672369476417554 4.871240549066 1.8222705381538922 +2.789947708481517 1.4460661207013583 1.2210168473413692 4.453668029365721 3.500864377067178 +3.045966056926422 1.7496903845992975 2.1994720105629764 1.342630249135965 1.5538688563686713 +2.2608255642057338 2.4227671022608126 2.427142813093723 3.9679594469293806 1.549303379216702 +4.034426793992693 4.312987466272801 1.3153942869711641 1.845338238110247 0.5986957820880724 +1.157737431118604 3.175918981579044 4.786643720074624 1.0640014343459279 4.2345155989929095 +2.732212260327504 4.730198116063011 4.378469277524591 2.9996764527155455 2.4275537344133196 +3.2681073623765178 4.390824810642174 3.532653084560973 4.52132577859806 1.4959840121387318 +4.870544773125227 1.3221813074101232 1.12787051947558 2.3017017710957197 3.7374808483926447 +1.6112768825330526 3.4291006565969133 4.4314599124925325 4.82590763567274 1.860126952622812 +3.490818028981555 4.134993494848474 4.45522316248983 2.4508737303634534 2.1053215139000003 +4.897040147645305 3.41561825567085 2.435753139758264 4.340467023647551 2.4129951930125735 +2.0664427239594687 4.025410293121109 3.8406670873116893 3.7380014567195725 1.9616559761415715 +2.6519550856567458 2.745399549967973 1.0941469606759515 3.066773883098701 1.974838941022143 +4.98685803854752 3.3698441226184093 3.8322279438516347 2.6235126539206863 2.0188429003816153 +2.6048855164722453 3.5500172929717047 2.071834735192732 4.8960849953093035 2.978198046926622 +1.2993584208182685 2.05711745408177 1.1312215620248391 4.7892974356508695 3.735735248876355 +3.1126648222232043 2.8011248154491275 4.915156980360276 3.3473607551875273 1.5984499302407669 +4.2481413849007925 2.3341135520140512 2.0160824491190086 4.530367055546727 3.1599255730451157 +1.7619149912364964 4.133491283598213 3.2007939238314598 1.742147336915798 2.7842456745073436 +1.8419843708922583 2.779411985230788 1.5420019242247984 1.0898836965370897 1.0407600222586868 +3.8417943376045085 3.359791198362686 4.668707780826814 2.1432980830963704 2.5709961430601065 +1.6496242715230234 2.3559950797619824 4.4151436371206225 4.157777282311816 0.7517959559080726 +4.4832982513213455 3.360564198294207 4.345662596400799 3.242890969489388 1.5737334637566762 +4.289272780972615 4.623005168100255 1.5302559028752754 2.160822683114732 0.7134365918282212 +2.738521533759229 3.6432990922226565 2.6252616179496475 1.6098796909268192 1.3600084146885392 +1.111163372481538 2.0872898934032036 1.1427512244979492 2.394011193245326 1.586970224747875 +1.9625753289012215 4.112191374117817 1.2743075436599631 2.0160976392091667 2.2740056481256885 +3.6289793591780204 4.972710347123888 2.9877833849599624 3.6895298730129285 1.5159357181162563 +2.6264103915741175 4.471814155028177 1.9580371104484389 1.8527115482732204 1.8484070234171728 +2.518157199479245 4.65668049337699 3.8750892264597314 1.801233900142365 2.9789524657231725 +2.158358365654078 3.9172856337285564 2.3306657693812887 2.549386223382219 1.7724739127485971 +2.4782217204886225 4.608928759513716 1.241256145328148 3.9340578634653633 3.433816183105004 +1.6035377623714369 4.806902031918838 3.190436680276132 3.5919397151246995 3.2284279967819582 +1.4378781886544516 2.609005620548972 3.2799408074516267 4.738515548811868 1.8705559969885825 +4.4720462829408145 3.3530128960175287 4.248257010259136 1.0345977424991788 3.4029166328766367 +2.5733203894002434 2.9273534445318465 3.5706446526306137 3.639494011913175 0.36066554922730826 +4.321101340423227 4.592794829011277 1.714533179783368 2.8684739431523334 1.1854942585713755 +2.317604490822674 3.885080757048672 4.101409512524425 1.173377161854821 3.321197870008585 +3.069862142405722 2.650708796327875 4.187608223750721 4.7498632104568514 0.7012989359782077 +3.1573937386324067 2.0430702514092496 1.2032544231805984 2.331351174521336 1.5856604663554876 +1.2804093384705109 2.0506768437602583 1.3687772308278467 1.1650466763608271 0.7967547731446172 +4.087724095098666 2.385584948886645 1.7665596525962028 1.9508551681099453 1.712087179470095 +3.252298088117919 4.464468945015793 1.995638272038081 1.53010884012521 1.2984898298753234 +2.221095068960284 1.7640448932076884 1.3615314629385722 3.223164911985266 1.9169178286418456 +4.817273887484181 1.1525433104749556 3.0659286969950075 2.9023901557296163 3.668377714541618 +4.323511163788572 3.763408712942436 1.832312619673261 2.14518543372623 0.6415638340939053 +2.6583240868061924 4.779288412752213 1.2515772251529285 2.0670727913227944 2.2723385950113966 +3.769222252816824 3.6036915435165517 3.1232116907103102 4.623046917999909 1.5089420547987569 +2.018143173818208 3.548321486771599 1.2177842346426528 4.947585383890188 4.031483880950179 +1.2033810505564606 2.5177521703745347 3.821139770133462 3.7916484089600835 1.3147019361800898 +2.4840348389094387 2.8394350326946216 3.5813323473739485 4.133449622148332 0.6566146380083506 +4.8000982889407044 3.201071245106575 1.2106984343195744 2.8552861448539706 2.2938082362206487 +4.2545468801869895 4.4084996533289456 3.1146466912561106 1.2616314592151299 1.8593996091572107 +1.889330761379128 2.9664113709395963 1.4819963637831597 3.934173333257167 2.6782969456559287 +3.0921471828308884 4.962791627562147 3.1822498932075263 1.1124923254579389 2.7898399645608003 +2.2120933600907606 3.092970639229818 4.055227831993658 3.113891778591507 1.2892084185026744 +2.29174258517837 2.8141237869896303 1.3822987566314735 3.893177216080934 2.5646428129728074 +3.7678563678204346 1.1727331292801795 1.3096498068044657 4.840162211482173 4.381687170804738 +1.4965020892437502 2.319442619314459 2.2635970300401813 3.0157407648459684 1.1148772640253533 +1.0510688837050335 2.615113189669501 1.4688520443750055 3.820065390839193 2.8239048835984537 +4.69346370602367 3.844818095256641 3.412582166179469 2.265448368875348 1.4269251282360669 +2.8271729264793923 1.477695143267237 2.861500615471362 3.0228686926281223 1.359091587682178 +1.945971886675952 3.415067514827358 2.6591126239389316 3.821095624479216 1.8730847439980332 +1.2120716923163624 2.7135398297163125 4.268768884569443 1.4260481329488899 3.214882243461088 +2.0426901345052215 2.20675624078218 2.8930237840572963 3.3947364053111855 0.5278572170145357 +3.669678030620597 3.719181550087429 4.0315988541658605 3.7071495583883753 0.32820411936797667 +4.175038262697237 1.4431759494170757 1.152045316170312 4.850339049547414 4.597874317231472 +3.654156119940648 2.8771878852962582 4.712993798513011 1.4400831092272086 3.3638703925222337 +1.2938227099715438 4.941263929427686 4.1957607941160795 4.698213741150143 3.681886257527645 +4.725747876972685 4.1578977212267265 1.0963554349818039 3.126253766290994 2.107828511723035 +1.463097644952248 2.20716689173903 2.0438000004368964 4.056617743099702 2.1459436873301314 +3.858778517257007 1.3380387698838052 1.4056370956621107 4.4090788327727815 3.921070152675858 +3.219404539904001 3.686825924259293 1.2118001186394758 4.911387251986534 3.728998217722787 +4.244078502727057 2.2586295485849748 3.952441944659545 1.740150769491672 2.972581335006586 +2.0909446805314 3.426181554373937 4.623660499020824 4.253495180186272 1.385597298112506 +2.7564703152083276 3.0253401820384003 4.689342623768558 3.631423995803858 1.0915506532836365 +3.3584992433680303 3.377254857615055 1.4994758740085525 2.5131938685765247 1.013891486095378 +3.992809752180831 1.613132900737936 3.245845826799381 1.5671968696275642 2.9121683053537954 +4.735341839740926 1.6637210219076803 1.2048365351171317 2.919534445755715 3.517817984673866 +3.823199050184316 4.720182535348094 4.299268792564888 3.935507180269547 0.9679369211039858 +1.557530385605105 2.041482539296326 1.8127959625101857 4.3842344836167175 2.6165828392949684 +3.881593096330138 2.73342300766118 2.947459492112852 3.2440087672074034 1.1858482302019882 +4.975849989368694 4.5090876563265 2.560681440403937 1.3247119104896976 1.3211690862351488 +1.8207044121875988 3.6035200724214094 3.2312277542389496 2.513750068923199 1.921771554399993 +1.2039496200615059 1.9064031991982522 3.1674088870984805 2.3621942338765862 1.0685558799638326 +4.667804298310047 2.216826105803001 1.1323163459820615 1.2569414037648419 2.4541445566984166 +1.8976922589599425 4.486198828009094 3.5035998163298423 4.050064305204202 2.645560374591993 +2.201139143977459 3.9307457155489254 2.702681438727969 2.221364311368904 1.7953286800784933 +2.7453792548176477 1.1572817695267124 2.6749316058313966 2.5768267033500423 1.591124820583938 +2.8293541400437845 4.664463812090735 3.5132336296697657 3.7129371517921648 1.8459439333816063 +4.598867431942795 3.4746515692289277 4.152826147383985 2.2705994399333753 2.192404771983916 +4.506666111881431 3.812632216542217 2.3427375462275313 3.883421306724136 1.6897897791552898 +3.6553330121134433 4.765989217533569 3.324984165372446 3.4627835754043277 1.1191719635709998 +2.7979546184867443 4.206003153907013 3.0648272926797793 2.9254075029872575 1.414934117143647 +2.418749643125321 1.1210556514678442 1.455962716989585 1.3091149446420367 1.3059762494882337 +2.015913702595797 1.23039342629392 3.674952491215764 4.462493468319662 1.1123231972314254 +3.748426176636745 1.1688213344477805 2.9971673779667958 3.716066149211694 2.6779052606733824 +3.607023370303057 3.876100341250911 2.3550464294888847 2.40707762434262 0.2740614192701697 +3.980542201873164 3.8957503651129732 3.1384682480792208 2.0272936568511586 1.114405055521563 +1.5354009175771255 2.4192511249340622 1.7863848857208215 2.6645652398322874 1.245950209034149 +2.0125287716595377 4.575562009694062 1.003624814957103 2.6721500202814 3.0582864058279804 +1.5150100254429848 3.3472370650646184 1.3649109306571394 3.37963868273699 2.723267126031044 +2.6978999336381917 1.3278134855081865 1.485649382257698 1.3984821573714603 1.372856511236284 +2.653188943108235 3.39375703124784 4.105642056426444 4.575545917952347 0.8770693999038525 +2.3142662573782835 4.513405733986959 3.976315110266985 3.5107410778639263 2.247882029205875 +1.496949731416359 3.1297603590770073 1.9656064012092433 1.3015770393686754 1.7626700029182867 +1.3509674450113605 2.2424695118591957 3.770577986921646 1.2654589386347332 2.6590218843183466 +1.4102626886032494 2.8938820663130094 3.1716376587364707 2.5532537727076954 1.6073347779526033 +1.260430637030041 2.008459407508755 1.8340397878477517 1.6769762135018023 0.7643402435108476 +3.5267472565515616 2.994629544705256 1.5314330886215823 3.467981905864536 2.0083253174786275 +4.158120735151686 2.1805181549955828 2.3838973812331625 2.9698124441910543 2.0625732534969576 +3.142103876493078 1.080532537161635 2.7935197572633172 1.9309965353082683 2.234731011903795 +3.6699098957580567 2.566826945558927 3.338556561696637 1.116077068505816 2.481170508585362 +4.323122563767101 1.0885874808875426 2.8052694875700848 3.107403875926042 3.248615457545861 +4.7581933277311315 1.8863959270258186 1.5709768796900212 1.6814430151944766 2.8739212024325025 +2.4770846327901666 1.6166643946213783 3.5875278974874925 1.9578974511973546 1.842828906254248 +4.64505898124855 4.424593318810704 4.537012268226317 3.4628760172526376 1.096528063466663 +4.019976729879608 3.4308134578129232 2.186617794948322 4.632867251818228 2.5161974815957175 +3.9349568222292004 1.207702318121258 2.245122479464841 1.1717719504084143 2.9308699200753976 +4.636340494777481 2.7676307850601938 3.080493582818694 1.4431451810702245 2.484549409430196 +1.1432980754439055 4.356293858157764 1.0779765228318552 1.9480116738961382 3.3287089184584002 +2.68874833808647 2.1070650016351613 4.397972691361877 1.614990029482453 2.843122930903026 +3.226438296246638 3.853065372001929 2.680321643323354 4.782051066134648 2.193154818698471 +1.9395150459818713 4.035490922875395 1.0485085101095182 2.9773125663027957 2.8484030549954156 +4.1091934059660655 2.7068721013783286 4.252008915247095 1.0625402297735644 3.484137703495214 +2.4674789207195063 2.7991169374683205 1.9683105866664201 3.888104504365852 1.9482280309524396 +4.2740607053173765 3.320175768270123 1.315883168136335 4.932104472713451 3.739913501246127 +2.242786564003154 4.49275478705556 2.651718334864491 4.335034153319124 2.8099660406142264 +4.661591078961472 3.666754944882316 3.5071805220574737 4.525530149496116 1.4236343973696268 +4.318898445771399 1.864119293664524 1.3130586816442564 3.50839921393213 3.2932447127907993 +4.2885923460059105 1.4897390465647904 2.95538666019779 3.802081889409895 2.924119115727501 +1.8421979998075733 3.8577190031670043 4.255365991064687 4.073897749664603 2.023673797236068 +1.549687111851671 4.213391697185121 4.64066795337928 1.5856610567226648 4.05319494430578 +2.199386895901241 4.45711400908994 3.725303878855734 2.11476068355785 2.773297874651711 +4.0969706743805805 4.906499546391659 1.8723145043871816 3.1727521331036903 1.5318208187648272 +3.5924387674457425 4.115355509135291 3.823659826791158 4.895658143518897 1.1927373180236798 +4.509092186568669 4.710256991869185 4.907442860169466 2.3383824617329605 2.5769242537774235 +2.0029471510763464 1.4186980569872096 1.1589230337893137 4.204970626406464 3.101572655997714 +3.8716104307624954 4.037105879022818 4.093355811888101 3.4442609977153964 0.6698602997497183 +4.603553322388195 2.538872194464561 4.315362646023755 3.3426412708780973 2.2823441970196496 +3.7257761221351084 3.614653926317468 4.449261000350446 4.938508276465136 0.5017081219085233 +1.354800359371409 4.232542554535651 1.4350438706949027 2.9758552205776487 3.264276299236356 +3.7617297211704597 2.860316250532627 1.9172759635123757 4.742218670862262 2.965273603709554 +3.0921965349834353 3.9848708404303563 4.547819446071047 3.8577866532134175 1.1282786317324474 +1.0758810663283453 2.590749008423465 4.120347296515188 2.8756501044721823 1.9606366266769693 +1.213397273318078 1.985156185858986 3.6262201595624157 1.1589110545353631 2.585193617282025 +4.233095286953562 1.5134593005056591 1.1048877759618767 3.1668750598494926 3.4129476201220386 +4.867785538458122 1.5695778332091495 3.061622168816924 1.6416622117858455 3.5908857328708463 +4.883359141988727 3.6965107050324626 1.7410139947329593 2.6448807548136473 1.4918392447862094 +2.46725766625543 4.395920136710705 1.6746168341072174 1.6313418632785086 1.9291479072489157 +1.607279513026361 3.3100935171296215 3.920021693225985 4.2924720237659235 1.7430705038206251 +3.9073049940209725 2.853385010731043 1.3497261963870928 3.0411684760994557 1.9929185424337847 +1.2786462498233826 1.2981555708858061 4.276179064193041 1.9693324228641402 2.306929136366947 +4.317585212802475 4.5972008308458765 1.6710225342765184 2.406383332328479 0.7867276512017417 +2.469742185120664 4.306446992942281 4.518576811321053 3.035538818881042 2.3606961342145545 +2.6742602017390564 3.130812955404161 4.118763498194537 1.030612304408046 3.12171718971532 +2.023888600031679 3.5687048507479737 2.3641888967256386 2.404633336254497 1.54534559279339 +4.379035495849022 1.9440184590379124 3.793182024434308 2.1183067144338064 2.9554213360550867 +1.0383569544042799 3.927293287187308 1.1048508047073007 4.080558805673798 4.147383662248994 +4.716156889657324 1.291458435326935 3.8706229165657895 4.096672771869107 3.4321506435725695 +2.163460041026838 4.6875385615156215 3.4033560749046945 4.168812238070485 2.6375927500888645 +3.8354703889941293 4.4634632263717355 4.356976496034713 4.467220827661798 0.637596123304933 +3.789745616984315 3.362818638248517 4.723180217792285 4.799965125091747 0.43377709386442204 +2.8779818162417614 4.495994521041766 3.328547111811301 1.709209025739285 2.289152889148649 +2.1998085996849377 3.694732379350371 2.9430881736058745 1.0080725456115838 2.4452162660164283 +4.863748607466013 3.6440789065651416 3.841553400759269 2.9272906444187514 1.5242934648311595 +3.8735050864831835 4.700347655373564 1.4069804429458608 2.4634695528505683 1.341580364002278 +4.25342210944469 3.376379273980565 1.702394981317633 3.106756992890029 1.655728478581745 +2.0145982677080894 2.8163609683033504 2.065473097989343 2.6886873188892233 1.0154897307199373 +2.224849000254789 2.9860316879476496 2.278943674989913 4.887907870951022 2.717736790024068 +3.942035657864263 1.2598903082123525 4.161376621573397 3.291065824150042 2.8198128591754177 +4.238077340314535 4.8340527565532625 3.085668966150382 2.950555870351086 0.6110992107811906 +4.625531240553039 1.2459059101777061 4.516013237157035 4.062037886583846 3.40997961762862 +3.078345991419622 3.4107589359175576 3.423007184092391 1.6994106963265745 1.7553584301527838 +1.843485986385144 4.224120514665683 1.4698550721003771 4.331963056850103 3.7227789181751905 +1.254211980126096 4.874013753992264 1.4464776233443182 4.314477732716927 4.61826693787247 +1.657963727995821 2.512739952321491 1.6866247013295221 3.409295758875481 1.9230803327419683 +4.338711401479266 4.64414867939273 4.269344170943848 1.7009739376804096 2.5864681683432478 +3.63370755939099 3.6828893459468213 4.444401465093707 4.063035804745454 0.3845238809510828 +3.762502999195767 1.4058577451606245 1.2829454118764905 3.7855389505891575 3.4375501848515246 +4.272961203129766 2.6764001675196307 1.1917149801580442 2.397464752619535 2.00070978760525 +2.4476968651826327 1.142960922370626 3.296761468447752 4.466938817577074 1.7526125952077554 +1.5972346527202652 4.749344137897278 4.660398898269358 4.40692517455499 3.1622844804281165 +3.6527767286821606 1.7839183005202592 2.4251671970454654 1.8344570050902522 1.9599924375852926 +3.1760165684379515 1.6001858364213124 2.6763981910076784 4.23263640929116 2.2147505250059756 +1.5517170895995895 4.315934470377111 4.7734659229065874 3.6188048447640977 2.9956868884397307 +4.3836153589941915 4.6788637822257675 4.376856353060733 3.835640371167802 0.6165114520242596 +3.538539723913139 3.554042020545954 2.128983961969785 2.241825452603537 0.11390137492295209 +1.7735462318925292 2.5738168058087005 1.540445227945268 1.6167610401936954 0.8039011722066683 +2.3677637450559352 3.192464948271355 4.401356471051262 2.018733915892205 2.5213136090017905 +3.2451270241444514 1.228945549641212 2.768699455306171 3.516684193197098 2.1504578364264235 +2.7065796883224014 4.628341681900594 2.378367922956981 3.491463699441109 2.2208447418917947 +2.265075240439505 3.277109767943646 4.773864025125052 4.528083584150213 1.0414518279912497 +2.571607828425585 1.6163490605215007 4.617494362143813 4.803478331929985 0.9731954329296111 +2.3440675535209836 3.925420730729191 4.392609690872218 3.409884201931307 1.8618343797665369 +3.9862990069747157 2.0360536207251485 2.3695456615199273 2.0772164738136074 1.9720328142738295 +1.59855567563636 2.2356368616940725 4.739632583603481 1.7438575009135309 3.0627668510179946 +2.458050102792096 4.197511378897829 3.105454268638033 1.4383722669154384 2.409333503593639 +3.6480680285949787 4.32070102549897 1.4169473265120174 2.2438454586717604 1.0659247954210072 +3.636891002162039 3.3432279384256933 4.780589589607365 4.465581919394451 0.4306597581571617 +1.3962253387730459 4.292218333250247 1.3863115365030407 1.13645066681514 2.9067517744489675 +3.9867369074938748 3.128199924890271 3.591368100485172 1.2417236478975058 2.5015824599789016 +4.496330861004024 3.217069778605755 4.353285653321729 2.7526137182837926 2.049063093356786 +1.2854489815653807 2.107534919873096 4.811719655286411 4.025036289658312 1.1378470932947147 +2.537067788070041 3.4562552834084284 2.234755556159999 3.0763485391055414 1.2462681896484533 +3.522648452662436 1.4570709788640426 4.800142445693881 4.241299066005781 2.139840233121289 +1.8523332431997597 3.9037778768441704 2.625621553549517 1.2881573965018815 2.4489253676450806 +3.8152214236718494 2.7266876123070936 1.1506052517980452 2.418002943328869 1.670689308932676 +4.154766731867759 1.3856249980957376 2.1133141879592996 4.284637819538671 3.5189191884402438 +3.4409811961021872 2.5228730502998795 1.6551326026487123 3.6856544491056162 2.228439260183527 +3.8497992870004287 1.8260134109037471 4.368910800885796 2.1946465567229514 2.970376116880393 +2.2121343657805004 1.93518602796378 3.329902189623923 1.7834936842255074 1.571012300202645 +2.343533357214007 1.441299666394213 4.434417136919342 4.736607927057497 0.951496141082364 +2.8431649520283444 4.630612865972564 4.623903400189862 4.116134746554197 1.8581708884487773 +3.9273241012473803 4.729846476918919 2.225349702071806 2.1856144178282997 0.8035054799236917 +4.498521677604238 2.7747411176376446 4.099640631563517 2.0245258114923157 2.6976880722941035 +3.5747490697289845 4.2119193601608576 4.791931123821943 4.280757695106567 0.8168746863709699 +3.5976233660413848 1.7197062198147264 4.473550302215448 1.754110509171046 3.304833671470541 +4.6570204017298185 3.7327539846146314 3.1379279216541973 4.422945611311741 1.5828894062883094 +3.8846617157829777 2.2184731216343714 4.4969869013092385 2.2501617711017015 2.7972142565422167 +2.9020950866066864 3.008200763321255 2.420962913032909 3.077096516391606 0.6646575961256475 +3.5984999269914844 1.3781920140426882 1.8920036297152847 4.568305002621227 3.4774065432332284 +4.4172289968527405 4.474788038208437 2.855882062392956 1.9245626608817417 0.9330963888436141 +1.601493700122083 1.9658807465722061 4.073418012902916 3.8022563964733 0.4542097993717954 +3.7624876505201934 4.151801669881585 2.4747930594156786 2.641756854936785 0.42360632040390467 +3.81357028664895 3.70339637258055 3.1877906894641064 4.289377613417304 1.107082671874968 +3.8557348300321954 1.3405207352976647 2.5487573643613897 4.723696461588418 3.325155939049771 +4.112391012406098 3.1897804169383095 1.662031026466468 4.499285837212225 2.983492110257604 +4.432864267500197 1.323697044313854 3.93926482036329 2.8934831436599238 3.2803323211322315 +2.2262180842057724 4.4975251276716595 3.6091534526522953 2.806598560795953 2.4089271554242346 +4.824157901083986 4.2255273479676845 4.465415574118297 4.934739672140891 0.7606731545868107 +1.7397074294100228 2.13686968554272 2.454323867112577 3.033234379401539 0.7020507381486629 +2.158771503019452 4.343219283082952 1.5932798160257748 3.6369240930332856 2.9913699260990616 +3.9026474663727817 3.943212480901649 1.1929642632657713 1.8639157734244547 0.6721766504334594 +1.7697328912611354 4.749698669427204 4.960722496141205 3.516321038974925 3.3115693573447884 +2.351815913108683 3.1880768606596512 3.589611243921993 3.4496003150354553 0.8479006030228509 +4.807313741566473 2.876610654924375 3.0103006488129784 3.220135093712062 1.9420723217829532 +2.0825072248257444 4.942744979674115 4.189148375491994 1.6874506909694675 3.799927804446477 +2.4081803806634112 4.512905536311589 2.069028843214805 4.90344133368508 3.5304053799743955 +2.843597661728238 3.431204546885897 1.667309417284815 3.111692367804671 1.5593344603506751 +2.1399587436833194 2.7079961894562916 3.4347546680252727 1.493628535953135 2.022532373143535 +1.8461520835633718 2.882507709886288 2.9526561099199813 4.73309378362584 2.0600949721219877 +1.3463820466664784 3.237971896638707 1.9852964561624047 4.457958888815693 3.1132252835882013 +4.112960995990069 4.521598087858563 1.2858263783236112 4.175823469610297 2.918744158109142 +2.4289034468374298 4.387105862892637 2.458757324453499 3.7957282243241712 2.3710858038766642 +4.077661307616754 3.522986640761873 4.368676489198538 3.947255981821628 0.6966055053531992 +4.733840353569947 1.6366242781727944 4.332065913392113 2.684276307617816 3.508269944373773 +3.4038886461586153 3.164593068815218 1.6336521161572568 3.5671329958376017 1.948232708232153 +2.103982917947817 3.110386551694419 2.0440997051740837 4.697259612034747 2.8376232599468256 +2.176318709168747 3.293298724932529 1.973155239553738 1.4370189475192707 1.238986069030692 +1.178554122846946 4.4680744007691615 3.4389518974702113 3.7329802101780847 3.3026347523659485 +2.7291720313641346 1.262420692899104 3.392662311417331 3.481151528860039 1.4694181945561249 +2.050479098229185 2.271043331404358 1.3580893262152616 2.796680437553682 1.455401307742323 +3.2300872781900103 4.56419150211093 3.3101431803645323 4.575383044550096 1.8386587487100323 +2.1959625652588315 4.138741629784889 4.0959054183059225 4.890361318946389 2.098940368763057 +2.1134210252373005 2.876587417193711 3.7385165394721174 3.875733126018731 0.7754039807966359 +4.686005392628665 4.976583943091339 4.550245809623856 1.76691573788347 2.7984571074510565 +2.4898434509843286 4.303276363304241 2.157629705048442 1.8378247879253453 1.8414163332883715 +4.689877527946642 2.196268919089556 2.745087850289763 4.962497623395486 3.336913243707566 +2.9036043617075658 3.888998598116302 1.7203777732557075 1.512743309960355 1.0070322097606936 +1.2868408131465312 1.8124700319768143 3.275097386664895 1.704168036890474 1.6565340617297366 +1.3102735461836672 2.5173575009962854 1.049552379700919 3.780836840897305 2.9861290129428273 +4.213567163385948 1.9544507138747207 2.9587201900693563 3.1885879662652665 2.2707809949410502 +2.8328608399101514 4.198933114187277 3.536561197008015 2.3759103008643665 1.7925579380504642 +4.277728311909449 3.9333926741104897 2.5704667133386385 3.2921385935267193 0.7996107391178634 +3.930924590975381 3.93379458955587 1.9295958382458394 1.295150091062677 0.634452238557524 +2.5092132085857815 1.0050477987436044 2.518465382133133 4.830125473940595 2.7579495934880622 +4.79599316008505 2.5677249938845996 4.080156854797556 1.9551024007851723 3.0791290088302876 +2.612826214691324 4.406961475683057 4.15076571631573 2.0402291183265637 2.770069686160541 +4.213358603609192 1.5229660582287488 4.467085993344824 1.0068449684422593 4.3830902339168665 +2.5440812396555863 1.2508563089838702 1.7600425464228864 1.1910089419894478 1.4128800247315325 +2.1747155871968027 4.248691317022888 2.1796196287962504 1.6891437280407304 2.1311832246734634 +3.038776328554311 4.471751990135145 1.1897665425442319 3.511105801782208 2.7280093847277254 +1.5000055083980968 1.167278342691794 1.4063576942840865 1.19654063011752 0.39335806489053515 +2.166938617745987 3.8918260127506104 1.5037285181440914 2.2364142923111414 1.874050417975089 +3.6241290059705413 1.1540501373862448 1.942740998031622 2.753269108182887 2.5996625616360403 +4.637218834850206 3.1468108676464253 2.051000378000538 4.634700966517228 2.9827545389800334 +3.4840329390881015 4.5663933834416826 2.9450321693469412 1.0744063993200896 2.1611906216226817 +3.4652684639007316 4.517248650122123 3.7588051141728616 4.823557731528844 1.4967833672141093 +1.2127957715011761 4.767090452539827 1.3407349041910424 3.419618412412642 4.117616703921747 +4.531361975461397 3.126221815724618 4.029370651250643 4.652620375767199 1.5371594216655164 +1.009554717621445 3.0958970449583396 2.9923362664621935 2.299242306143402 2.1984548084206588 +4.911093598138776 2.077284920794002 4.862177658354945 2.1420735023693664 3.9280323622908906 +3.092463102859718 2.452490468495719 2.5055431809401716 3.750060326576399 1.3994241310329545 +4.267174201577008 4.390759617881114 2.5227954435347306 1.0106183868826237 1.517218773212383 +2.3474769154792465 3.987231942983445 3.1581301376170905 1.0644504222483007 2.6593779913303095 +4.787451439572225 3.681060216913954 1.428707964592332 2.3213447572728865 1.4215843208273968 +3.0302115602252564 4.133028497513275 4.84839874587292 4.560257733520004 1.1398379008302408 +3.40070227757039 4.888546477151259 4.2648643292337205 4.985760918464795 1.653291339900936 +2.379130036794182 2.1856817723323156 3.0619592456474076 4.898065991456175 1.846269268830462 +4.977807426107652 3.0239484390936933 2.067535661279855 2.6232197781989406 2.0313418665826184 +2.9299458727566337 4.785754116765281 3.0706083613913333 3.04432041926914 1.8559944219828566 +2.9399868476885023 2.184152803899597 2.581895774908721 4.651931062804643 2.203708509509513 +1.2123286319082736 2.8070134684865913 4.263547891881914 1.4739726534759021 3.2132148603448187 +3.00171521556163 2.701423443648191 3.3011725641377643 4.369918377214935 1.1101318666036462 +2.6959266283102807 4.3055643973465685 3.375043493963296 4.50351937929698 1.965805578201405 +4.460467926140932 4.17910849845812 3.642339065346718 1.7834832927468458 1.8800286994814381 +4.706968386841365 4.6740470394101035 2.820443647881339 2.0422439396959144 0.778895757426223 +4.955813888001033 2.115501992887721 2.4831883011882527 1.857378466775946 2.9084376579822595 +2.3370152416389405 4.924192308996192 2.7383050054712488 3.7809521846489202 2.7893723878511496 +2.081791543500302 1.313984157917576 2.9766330799608345 4.869361578205952 2.0425350301585037 +1.1603968500351365 3.1962088979049637 4.892953181454391 2.0561139038350027 3.491731344375743 +4.36403624010803 1.4556885467095144 2.7513683225706447 4.194853656458083 3.2468655985187613 +4.0505711825650295 1.617811446396284 3.739980001429764 1.0773711477879737 3.606633588461056 +3.2441996184646973 1.2566334548232496 3.6570984885534186 2.8148370165298795 2.1586624659977858 +1.633288651468439 3.153597394136768 4.432865588428509 1.3757362179457213 3.4142903597822847 +1.1196844892548183 4.787136246123376 2.2193257203786176 2.54810961789092 3.6821598607640125 +4.261603521486225 1.409026647591658 4.8361457083068515 4.07919233449331 2.9513002611740142 +1.0684409032078355 4.14442654197833 3.9743696308320793 3.6078270306320652 3.0977477508156976 +1.8422145874491545 3.857350733415748 4.448255731553151 1.3707733880208766 3.678542002143512 +4.505684136561069 2.4731378735993186 2.327743924921053 1.8323970632865691 2.0920355695854953 +3.099077108374637 1.4355992887481563 4.474484455010576 1.6836192187350303 3.249013269200455 +2.4953266036414408 4.103502143757332 4.017226006050214 4.703147439373457 1.7483468707665681 +4.544993514355253 3.7478021135672295 1.9366450998107276 2.6502482330040746 1.069926895256743 +3.2973603669985447 3.0846652308528424 3.4110039729782793 4.258186620820964 0.8734744757265553 +3.6372295404456745 4.274473967761378 2.0026301046278476 3.5035017580482513 1.6305508824277197 +4.9577556142767385 3.7359314662528416 2.4748333439775827 4.313896440175153 2.2079418743459067 +1.3256490270244181 4.034269947402692 3.061939761823617 2.379928227886622 2.7931643386549854 +2.131824210295074 2.789113700354249 1.630556365620908 1.5612140806673618 0.6609370818957196 +3.0390342410450635 3.7810571115612337 2.289226229153269 2.2200910429828484 0.7452366163413308 +4.843922931415456 3.4444219456061482 3.399907609117334 1.3630894178268247 2.471281318193695 +3.1530973157848763 1.6070001578509951 1.7633128127878943 4.610297568261927 3.239712737214947 +3.644376235475226 3.525527742484494 2.8290929431718586 2.9568529911661465 0.17449238994773025 +1.5847056057412385 3.247939712404481 4.0861968394834385 1.6520681395951087 2.948106209278751 +3.9039088531719326 4.673260813363133 2.6236915387886426 2.4014587009964226 0.8008057647415046 +2.371130041241651 1.1132888436497779 4.828142853755931 4.454599880025034 1.3121352184828663 +3.0976107986857833 4.802618205014135 3.398368889313001 1.8194623179399332 2.3237891937005797 +2.167796031337266 3.0949819442268827 4.064024720326026 4.710519562665035 1.1303226522687633 +1.6759322630908002 1.5242548554690707 2.678810323883226 2.2495650517171244 0.4552554663700359 +2.639301107082433 3.455829523358716 2.3379333020240796 2.1631301137215195 0.8350298253520022 +1.0107898354802525 2.1148197140574925 1.0958664656025832 1.4026428024780797 1.1458593690580112 +3.897243721684101 2.5774170745658043 1.7004597345279482 3.711933778631216 2.405820069860728 +1.7376792367652314 4.477252738375675 4.145998196607954 2.0189849187793447 3.4683495289237087 +4.1617924813558265 2.890058103227584 1.20475969169823 2.0561809646025817 1.5304334394109709 +4.919783881029218 1.5939231292463814 1.4911173713677992 1.746282585128915 3.3356347261897925 +3.133873287494215 4.693886975950824 3.799537464812933 3.8261991337829357 1.560241504628133 +2.5474853765914114 2.7868894427403466 4.398401226131498 4.417565014433084 0.24016985171064187 +1.6067624734204982 3.1268904218325058 4.953328778873259 1.8324130109314654 3.4714412295372385 +1.3436277839158834 4.843540825865403 4.085571881988061 3.792021758794558 3.5122020124183146 +2.813054764165121 3.2886156876443526 2.529788964030864 2.899196498600607 0.6021794736931136 +4.327781923938822 3.3131122984844694 2.696187789764726 4.26911874125056 1.871808277298134 +3.978192248520843 1.7425266540176811 2.048465510454408 2.5373100498606354 2.2884863194156226 +3.8712253039183815 4.727761111383428 1.946620149586638 1.5583395664649684 0.9404336237603922 +1.0587188945486181 3.3501487446210607 4.974619593735291 1.9857213549516164 3.76618685670363 +1.1304900062750711 4.694308360692059 2.0380145131707788 1.982839921778167 3.5642454318992605 +4.978300353364116 3.0677017150927592 1.3890694551978031 1.4780847797945147 1.9126711386376434 +1.6520043388062824 2.898317402012553 2.692195647549046 2.6013611656026545 1.2496188037273874 +2.842196307497209 3.562108846198579 3.544588015949064 2.7553755664989565 1.0682370306942601 +3.3181237506151375 4.532811229640863 1.1100459915691112 2.6487503025795482 1.9603766547334665 +3.638448977984186 1.378507238516817 4.512328070237392 2.605793825960966 2.9567227618404606 +4.663560225263565 1.5412622214204625 1.5087893611833683 3.06739436717439 3.4896983235665076 +1.84874355734041 2.118575564487652 3.8352322736982094 2.730501043088054 1.137207282761827 +4.843710641028412 2.1376045974063915 1.038915018346557 1.5216653431473341 2.7488284405220496 +1.3219193189179683 4.1114619508548085 3.2549148710302904 4.724238121245234 3.1528493317974013 +4.549080074263809 3.37816030962547 2.1966908346163785 3.3625420631582577 1.6523505022583171 +2.0248763033355823 4.068041395141762 2.0255943751743497 4.994144297523897 3.603721997304573 +2.4352656201997 2.0401911011872373 2.9594319701805256 2.6178986209200232 0.5222345299097187 +3.3970264704791058 3.464372320323358 2.7618658522141426 2.6310226974986066 0.14715772024314003 +4.069351226149393 2.6236080995355313 1.9239588104811398 3.8069499675795866 2.3739900770353213 +2.854182111894813 1.7839893471833634 1.7558775853516289 1.8466861126492335 1.0740385199194191 +1.0102642697409636 4.051518823985338 4.151971373624271 3.172510483466382 3.195085742051539 +2.944481178814627 2.247026598892723 3.226475443664793 3.715789350336708 0.8519806278998197 +4.037213090314216 3.8434806024093877 1.1718889575431186 2.0457065875606855 0.8950360481004728 +1.9370534933070669 3.4371984393264103 2.8854350360111827 2.218133886226862 1.641866524285959 +1.0341006891484383 4.226221010771362 1.8708429083631124 3.7004013142011822 3.6792548305452804 +2.3899100992607885 3.800108230059516 2.254933552464851 4.546528523031733 2.690737125256879 +3.3861526061721854 1.7932722198237907 1.2528529388465404 2.3256483723406394 1.920457749428298 +3.954655206165112 2.231822580583457 3.092560119301564 3.0350473769515496 1.7237923225554748 +4.472799390728451 4.816290153874693 4.551629604955945 3.6036966430303607 1.008247392593603 +4.344722492177647 2.2641274338674005 1.8471055832322323 1.710002843005265 2.085107421223847 +3.009840215199256 4.745644673793813 4.15435931849782 3.5970048384878868 1.823091093408085 +3.4960426509891835 2.55278000338242 3.3050783879671535 1.6514028722783305 1.903782323050305 +1.18249633233836 2.263741420824978 2.7709648255321886 2.932981743769006 1.0933162503006117 +4.07007320406359 4.468663853713254 4.091803536738354 4.587830360083988 0.6363309794961284 +2.516387533651231 1.5890190024605166 4.990579280373355 4.654923961779936 0.986243826618384 +1.8244179920120618 2.447617829619283 2.1833567175338278 2.735255190567079 0.8324481738403308 +2.1355313566196075 2.454555090634426 4.616728319590377 2.2890545095567347 2.3494342954807848 +3.557113841076099 4.522477337600203 4.988625425932734 4.76288262220305 0.9914063212714465 +2.7741872292200127 4.071624814974834 1.3397419068487157 1.2147533332082303 1.303444065723567 +4.7955692689922795 3.242221102658127 2.5820581408191754 1.8485960358222493 1.7178059219015969 +3.5114525633757183 1.9698624350856044 4.117987595388419 1.3114082099581341 3.2020911870781825 +3.3127267235201048 1.0612752191401498 4.672435321309076 1.3135826888147504 4.043627688522872 +2.6678853464713628 2.131545899572044 2.033761620633377 3.9799786205299204 2.0187671022152527 +4.250000827306669 1.1110442591373122 3.05744227512379 3.8481228226020083 3.237008505551693 +4.003144134788704 1.9603931339619867 4.165791665050307 2.994257262236079 2.3548512709629548 +1.9978513219078162 1.0985360875200407 2.3130603081712304 4.699368779613558 2.550144311932044 +4.670095607839437 2.5735155029864774 1.440878357385634 4.0432779763929965 3.341875508314891 +3.7073234996243243 1.9401221476575579 3.8353879726894435 3.6646622418860506 1.775428932272852 +1.0862484652790698 2.4374750739076427 4.854120014102426 2.370356520743125 2.827524436465629 +1.32554261733135 1.0412918758238892 2.2339882698106024 3.0894074734484964 0.9014102828346425 +1.5822518652102429 4.290644660303352 3.47404851692775 3.2427991698413594 2.718247191305483 +1.206360201167683 1.100285192749062 2.9814923489943648 2.9576754574029773 0.10871592218293707 +4.593126427605121 3.7037681000484746 4.346669490637289 1.3103678631498359 3.163871964520264 +1.432641406763199 4.096844780838941 3.240318089574049 2.793148945666801 2.7014699446226142 +1.6320259311348058 2.457088820068915 2.4710059268512135 3.2672010320439244 1.1465842386101122 +4.024346544993966 2.8109120010928685 3.357522166601956 4.662330664726124 1.7818385474305773 +3.236202574746803 1.169641016513268 1.7109907860531246 2.834020113380612 2.3519931003313435 +3.8500043831343747 3.3163089925065568 2.4016100926359343 4.61161583753721 2.2735338489835644 +3.7778990104780603 4.904925045650668 4.0734781860029745 4.027858328988954 1.127948959532685 +2.9734641000742728 4.1884554820284094 4.178659677945298 4.862053112966304 1.3939980793575841 +4.8208479272997575 4.8272180922328705 4.2994774674858265 3.053956451928926 1.2455373054209045 +3.3412672079892762 4.428851345534406 3.018058027022587 4.8987940915433725 2.1725578014471596 +2.2228810353096073 2.459405225621355 4.974405419181331 4.893739864364905 0.24990122916158258 +1.9685849362193557 4.002396072061329 1.771904856269149 2.6516427515284207 2.2159256532271185 +2.19134190938475 4.6526080751188665 4.495449097634227 3.0898022888932606 2.8343736679399174 +3.1951407692512133 4.958239642746719 2.2899642620912397 2.535810748677584 1.7801567719411597 +1.3751232862457283 4.007504900324395 1.398465582644032 4.1099616226122 3.7791062087354024 +3.0283091705502874 2.8121168402351917 1.706547964586996 2.406839581441321 0.7329034536168567 +3.3564242682964065 4.83548314480684 1.3616346889564084 2.5058637420511305 1.8699933920017875 +1.5175800581880563 3.0065184894748183 4.528745063168228 1.0418884804537063 3.791451764243121 +3.6755409008159248 1.2148974407833224 1.839347458362917 1.0828035105077323 2.5743202952308644 +4.539510884384088 2.556027577666556 4.815117703374077 1.8169058139818275 3.59492427760588 +2.9642380066423963 2.066493741495586 4.111971656553086 4.677859227673201 1.0612132249233464 +3.784905076688705 2.9871215415513697 3.61623612230764 3.4014559483991906 0.8261895012891216 +1.6133696240339415 2.446365475846588 2.987957052874759 4.381584597417733 1.6236008813886362 +4.134159229460038 2.4111034852718487 1.875221175862924 2.157645861626001 1.7460483385944066 +1.2201239951427332 3.8262255663667357 1.2974721406787695 3.102344669496925 3.170067861232415 +3.3413680133746158 2.643589685187443 4.510664817020123 1.775498489274729 2.822769816283274 +3.0763260171079585 2.3612185257487557 2.8539905763513764 1.3973075384349563 1.6227458818778322 +2.920737124283191 2.3238733257018938 3.4868463948189 2.8061624698972176 0.9053049208436251 +4.048136933373755 1.5349052084393016 1.5424099693466786 3.2881238513180717 3.060040957393322 +1.7513078528199482 2.6837758560321228 3.5650343662051425 4.539581367322901 1.3487914718006326 +2.507790770773576 3.4949490649143624 1.470946073205142 4.266806787993412 2.9650157898715013 +2.2958777300193134 1.7141908753220387 4.986938462099558 4.798297058038461 0.6115105692085382 +1.936865201460416 2.4213692753779275 1.177088755516456 3.919170040970632 2.7845563333645615 +3.1360929402859337 1.4107864698571304 1.9041007239538712 2.2980610528613283 1.7697138632152847 +4.627912186967643 4.759383759418314 3.284826886619311 3.860677223562718 0.590667744946757 +2.031448488392553 1.3377859866477517 3.3819971253542773 4.349314764385503 1.1903239395676293 +1.0081309013721547 2.748100906936986 1.323283550736642 3.7395425646329086 2.9775498723783347 +3.227488207204568 2.155433338354386 1.6161912895405264 4.5184601403836915 3.0939402263779896 +3.6165202605153475 4.149986930913106 1.5016967247556057 3.6077970248604108 2.1726125201072604 +2.7791039684640446 3.0624906889992163 1.0765472421580373 3.130145580909376 2.0730591333336195 +4.485308995628454 2.0415930856715114 4.531054511371463 3.3311885757648447 2.722393379364164 +4.140488308181942 1.5212514763206415 2.0968756053014954 2.033446727666549 2.620004733563825 +4.372746951779931 3.091477449068047 3.0326372783761877 2.707267999764873 1.3219367254311398 +4.45770174002406 2.180525345521742 2.353208637300874 4.770909906066304 3.321266589219924 +2.030706281740464 3.31074805709075 3.0925948227759936 3.9351680029008804 1.5324609327835006 +3.19236062077024 4.772186796342821 4.365242605532665 1.9710229495261795 2.8684732012400085 +1.9606523504148496 2.954496938548513 4.938822210487022 1.1393729768980632 3.9272816990868242 +1.4495373447559188 4.3029159264128385 3.634670196704711 4.918318828622146 3.128821366022988 +3.7014403439150336 4.6677738245839615 4.645089744427655 1.881832907296134 2.92735183123174 +1.5498584098297248 4.84933282230172 3.564987517763905 4.807231721492888 3.5255782589889666 +2.6075216161527437 4.500087150007204 3.448394121820331 2.6437497135425314 2.0565157241573786 +4.0477202141711155 4.529570430796765 2.903773725187026 4.978430889561388 2.1298783958132566 +3.9728702624165915 2.1336428987883562 2.66512592383811 1.0943535204652353 2.4186945318325477 +2.787314062847152 2.8675472241728333 2.267451845470839 2.066190053445481 0.21666487741572507 +3.349783275311401 3.989056486644222 2.5791766609824442 4.502631183485212 2.0269059028144665 +1.3211322437834427 3.1218605711157625 2.1684394065140418 4.299704393421201 2.7901456867470964 +3.4367054656337097 3.425079997528242 4.892080611911206 2.8427804605433766 2.0493331261424728 +1.7762886028018072 2.852031121869474 4.791132245331996 2.31914978294563 2.6959078733658184 +4.455351004524233 2.26348994256972 4.873875223365561 3.079529064643481 2.8326547710995507 +2.8485472322898335 4.460621132251482 1.004494219716169 4.647754825221382 3.983984199085605 +4.982972663338861 2.2479480424217226 2.9864905088397458 2.7565621632464516 2.7446724251047168 +4.73815862473819 3.043006112924877 4.747619810171181 4.815148890432797 1.6964970424341932 +4.74133863309167 2.7932803244683213 3.7384707429618698 4.7947629333895305 2.2160064001159667 +1.0358344089337201 4.387239319379491 3.4609460415780045 2.901966758030233 3.3977010923852036 +2.288157526852924 3.4749229791473226 2.2791772394536634 4.675058513540746 2.6736976864037323 +4.8831251870770895 4.343977067609142 1.701646751035307 3.019426630221971 1.4238063438245538 +3.396633307190355 1.169488164304005 3.3193619279319444 2.620263034992925 2.3342910593134745 +2.922213342882932 3.8651150614474115 2.532846204911813 2.903787784866756 1.0132429652414658 +3.5189299520688113 2.741313267702254 1.3806890110236596 1.2644892663182397 0.7862506524479599 +4.712227819518196 2.1848138684475953 2.0328753232120373 1.867967370021169 2.5327881698025805 +3.7450201855707816 3.652693704048922 1.5512176629044845 4.266495343597683 2.716846897132932 +2.1143770574266574 3.1135339747870883 2.2733956809699767 4.56268664303237 2.497832591365914 +4.276874249053481 4.446309925892399 3.6775783423492876 4.235398247192262 0.5829849867920162 +4.571138745339656 1.2146808763780408 4.614361554508978 1.9794341080709752 4.267159719779263 +1.4082169515003446 4.668644987398295 1.883162890713253 1.2277120165005257 3.3256588558924074 +1.362111064401116 4.129234108166205 4.768898211857325 3.28792331303681 3.138511843258235 +3.349919686088215 4.8635004220431775 3.9057643831238984 4.33433529052064 1.5730860329050131 +3.751404764674764 1.2598344475862695 1.8675568154894822 3.3788318183420025 2.91408215039373 +3.2457846973266857 4.90098355618807 2.5538664060184098 1.5092556762411857 1.957267186446892 +3.994740774912232 4.1695933116378505 2.9591833762342508 4.543500849062786 1.5939370327303337 +2.5527823519926716 3.3126598922305397 3.598315231646215 4.014553980889479 0.8664113183295507 +3.0782089287325984 4.8640782259895925 1.394797879531946 2.135356666365564 1.9333278210488953 +1.1264492640884414 3.553998314119557 1.7032024203315301 4.191436424939986 3.4762483875575985 +1.122638548773078 3.6312857007350834 4.3051035792817025 4.9042077069020324 2.5791929529949473 +2.8147328442782173 2.8551294476176343 4.642296174095294 3.5025776598362084 1.1404342056016643 +1.3440418614411982 2.6301207838359013 4.652260259292003 1.862293934946369 3.072118338477639 +3.057462876013187 1.8658714388207027 3.74259961270702 2.508270663092365 1.7156509286703014 +3.0653305079514683 3.833015785039121 2.509732577031021 3.6501399014082443 1.3747252635164466 +1.5578989230835574 4.889723943957955 1.0265007296041864 3.4720224899592633 4.1329934248792215 +3.250224655261989 2.812283318933649 3.50724340906383 4.525653137190461 1.1085806188130887 +1.1299579774385742 2.11035898367826 3.498440192377475 3.958935597908644 1.0831630309196782 +4.0813994688025055 3.5730300855564594 4.889995213826385 2.8006233688056477 2.150328843825364 +3.452314097333517 2.208692728272927 4.353221219523572 2.367274989296753 2.3431979299530483 +4.579953520271202 4.934902741396307 4.677298864222566 2.6858640142547365 2.0228202370066675 +3.4797452735421865 3.851358511147148 1.6838244557502446 3.9562414320962986 2.302601857193072 +1.753851961677348 4.592869038626994 2.7521456563152236 3.9465447148579313 3.0800336157677597 +2.8562925966005475 1.9708521379022201 4.275644669780412 2.101390432213936 2.3476341911540826 +2.0366348588782253 2.656100237047627 4.860262768775755 1.503289480262326 3.4136501013641136 +2.1941571500365935 3.002473195760871 3.2000997093115253 1.640481916696721 1.7566395443619065 +1.7440451522868927 2.2948750469587225 1.1892995169856957 4.7336420421312395 3.586889670511106 +2.5437175826015546 2.943049330839104 3.8255940801959567 1.364280784529575 2.4934973399974907 +1.091002768453167 3.863178130220434 3.36924615688879 4.44215122146942 2.972554711690307 +3.792281923320839 3.628341013043433 3.389674289297549 1.7952423822221646 1.6028380231210613 +4.002383311006442 3.0533941875689155 2.6251707587651123 4.4949403270721096 2.0968115306268373 +2.464608244403706 4.669618943310325 2.1950279320466146 1.2397765517927195 2.4030350354852565 +2.2573192500497035 1.2117391694972772 2.276643635102394 1.8160344848817491 1.1425403687025693 +4.985997366056472 3.0563890446196185 4.120230532108538 4.753389784692645 2.0308320741241053 +1.9810324852377859 4.677982958667783 1.0048848422364194 2.0003969618513033 2.874819339790659 +2.6965728403428693 2.845422901212714 2.5739446381133395 2.205277239741897 0.3975826847876102 +3.664356069888108 4.3794363453190055 4.600574641010829 1.1693840258842045 3.5049121012720637 +4.721061551608997 3.128262924915835 1.2282883700385536 4.633978452386714 3.7597516410263383 +1.3177902174998533 2.4804288226286944 2.5360964120511076 3.453251456926731 1.4808449961007883 +3.9858386798526393 1.734878428760637 1.6398177635745141 1.9430933969408937 2.2712987830292053 +1.4937480526844356 1.0532408169532568 3.275110328145029 3.5030477540240716 0.49598598251149023 +3.3463679834123266 3.9535265291254413 2.6562197072340874 1.603363386145554 1.2153797482632929 +3.8575912748698085 1.5700748309292165 1.6611703407606524 2.235045742987502 2.358402946610193 +2.5038264159023362 1.8747888775049417 3.4490698997312914 2.4313494702806646 1.1964293114238809 +2.0322292190216014 3.219050909243717 3.925421516417474 3.4002498502349443 1.297825490327037 +4.777909140273493 4.522249393463111 1.0188898149497896 1.838850341216094 0.8588929914570632 +3.9062199142550984 3.893886720128775 3.7369664578225184 4.615042886352431 0.8781630384030092 +4.701628027938032 4.605134779190871 4.35258611981477 3.020677843828972 1.3353990424937567 +2.9819460799664457 2.1511877936087593 4.398094165588402 2.5114182381232486 2.0614813570897157 +3.5044264432806465 2.4359394376616135 2.2324218133072806 1.5648212186827855 1.259902787964098 +4.438824716692746 1.2015132624062068 1.1622523313718487 2.394140772813479 3.4637746151001685 +4.234897991938386 1.5935834294730737 3.250474749289368 3.780216201768749 2.6939132547961315 +4.992374695291284 2.0627778511467603 3.6266367510959943 2.3762666371214025 3.185272844065699 +1.9329167592045806 3.9393407371660945 2.8733299042200007 3.945543210796756 2.27494583542975 +4.374712304755635 2.0626479386274177 4.296331373616641 2.802711754739892 2.7525517613686032 +2.473743996962443 3.392982180296227 3.482630767033978 4.381385832635319 1.2855969452526188 +2.9170042634284368 3.2669853667957773 3.7070363825271273 3.9664930158960248 0.4356656026281437 +1.4448314507165216 3.139777254240902 3.232301964019727 4.482187433210552 2.105957018312405 +1.4712682384480207 3.672773452787364 3.10478829729523 1.858854406767481 2.5296198268374104 +2.260562255508013 2.5716152433320745 4.727082909265983 1.4042818146363514 3.337328433898311 +3.8666096426522665 4.886578102031637 3.0907732823569365 2.4817718734826286 1.1879471259865135 +3.932355619357583 2.637800467038274 4.896766594330931 2.5616410140817885 2.669959647247569 +2.543144398984781 2.7188723357193623 2.3320542952385486 4.315605592435784 1.9913201792684738 +4.231969661361239 3.2228917217757838 2.4446112648684237 1.2645759871595703 1.5526498461647553 +3.285995484802926 4.717258738185178 3.03848380833579 4.5034289223680535 2.0480670613066723 +3.4370237458837436 1.907118075140962 1.0763799357334172 1.233537986517823 1.537956440962251 +2.6839292059353284 1.8242059949385152 2.629885959315928 4.63217427311415 2.17905541258124 +4.30955679673848 2.3408061049023097 4.333119130907911 3.353509731185287 2.1990029246525165 +2.55096138921534 2.509623060799874 1.404717054791257 2.0172282368150154 0.6139045573216789 +1.368577591950316 1.9451033765560748 1.7933735741876484 2.2863696794802455 0.7585691399924962 +4.542235471269324 2.7903674378620713 1.0673307955631395 1.1892761432939354 1.7561071363408838 +4.437267578585569 1.300109170260292 4.425256212047119 2.9226011493598416 3.478467351628543 +2.2111082182904416 4.292538389127869 4.45846729193742 2.5762709832200414 2.8062456237153666 +3.608379527932985 4.942135327346639 3.5608851777441863 2.3344462630852685 1.811920788516788 +2.5951440365223486 3.3616297546513194 1.092806711123811 1.7522645843904234 1.011130576488026 +2.159051582480844 4.042246154363033 2.7561467262335015 4.454527182476806 2.5359254661199637 +3.5819412032624074 4.659662733667496 3.870509716133874 4.341857908747091 1.1762877266121718 +1.8658660091080135 2.3854418173187053 1.5510475291871226 3.2352935493330346 1.7625673538492472 +3.6746823484353763 1.1274367118577895 3.823885973720728 2.85573321107221 2.7250284594637746 +4.998745102376642 4.919291745503042 1.618425967414347 1.1596035569425789 0.4656509854704566 +4.0506892504364815 2.5819475850428133 2.082986390806879 2.5391280962768064 1.5379425656156278 +1.6944891070882466 1.055274810512532 2.0866053743317496 4.762762846693644 2.7514384844704756 +1.0464409468372504 3.546062553358552 2.2023011491328814 4.941223072167935 3.7080724745169378 +2.0914571032156277 1.4439756212544297 4.864807355915081 1.9422712468679264 2.993401005239217 +2.3784244627844973 2.5720580495832435 2.788531252948635 1.627208829853564 1.1773545499635842 +4.297022571038945 2.7476455820793255 2.1731556817419557 3.8779449505745025 2.303665666941318 +2.1883325062218892 2.1093120946167336 1.261029565737891 2.176275834579915 0.9186511623459117 +1.0476158857853002 3.768195561071422 4.709267850731196 1.5591489628243815 4.1623073862374955 +2.3114761219913045 4.171383602914409 4.761727234058087 1.7511716274307094 3.538742841488947 +2.376847281507159 4.504361171872132 4.803213562401819 2.812909476647475 2.913353000833633 +3.3126115382345276 2.6505520924434847 1.7945765233873505 1.3112812052569778 0.819693280616525 +2.652027514587129 1.300037496699562 3.6113981557352353 2.9518463186216803 1.504289079368553 +1.691330735471177 1.9465705013126797 3.5031136753101086 2.9039363836893393 0.6512762584808582 +3.1538560013806887 3.3939662117400076 4.221328165509615 3.5677554667603903 0.6962831217752881 +4.829536019689861 4.374069827249354 2.9745646775177352 1.9216709203209241 1.1471855631937977 +3.124061386767554 4.045336704943086 3.4711605281299582 1.7634913214113555 1.9403304696505617 +2.5887380173073113 3.5022816607619043 1.8052507857292186 4.799195670441518 3.130218516524244 +2.824542372921414 2.173093890459471 3.4153348428294454 2.523727141381782 1.1042415580762905 +3.922973872584882 3.0366202011499404 3.4720012966207983 1.6597152477842614 2.0174249809283484 +2.8270235354308424 3.1101032376324924 1.8344540064480555 4.720506036023998 2.8999017975128045 +3.7035458419613176 1.374840217184102 3.962172746370193 4.314020853624958 2.355136297000197 +3.3752510181659234 1.3054036577889128 4.271564175383192 2.9379229541038026 2.4622889762079634 +4.499196865337694 1.6025073198065587 1.3788602879724752 1.3422348012011924 2.8969210809876422 +3.5510512903427345 1.6890231512913174 4.387391151161209 1.8055555995258095 3.1832410537544513 +2.6469983062760987 3.6189718284826924 3.538905128309293 1.3775352392099172 2.3698633558448345 +4.180090948502835 2.558114552110149 2.65672692923201 1.3877062728537126 2.059422457090776 +2.948477868677317 1.654454136922638 2.8458090675366887 4.690986834181928 2.253703265486878 +4.2000904988181755 2.5253819676554543 4.859636735972466 2.361655916112552 3.007416971545051 +4.332958260703251 1.7461126486690985 1.8577548467300944 1.3386260869254016 2.6384209083762027 +2.616313073575297 2.5196493138431006 4.543205038522086 1.3686502285316164 3.1760261529274585 +3.70636443446782 1.8722451992970943 1.0662982587073264 3.6630293386912913 3.17915172185568 +2.8452250003601156 3.6057937450557747 4.863787154179102 4.961140401249994 0.7667740671952702 +3.9348149032702184 3.354695290274245 1.4762260313634203 2.593146460777853 1.2585904858316381 +2.1805491524446343 1.6613309327715267 4.026605317052907 2.658819342711841 1.4630194910679248 +3.775171817072786 1.9153104322718129 2.8777406676787196 3.035261724340127 1.8665200920337077 +4.86613618642753 1.110713437991973 3.6949234391806534 1.6256515178702036 4.287783378832367 +3.4961252193571513 2.1016237799094926 3.3616843908976723 2.2004359708889396 1.8146989165132519 +2.1875090602694653 2.303095080971242 3.238334493971162 2.1769415661733604 1.0676680548564055 +1.0135277322987477 2.8592336040210693 4.61669863368131 4.479990437525319 1.8507618149849752 +4.092935436721125 4.291458835741267 4.082035451732846 4.834109437630431 0.7778346998060652 +4.607876800269848 2.652756532000284 3.090160417473097 4.675789748911869 2.5172833849444562 +1.0173259784128343 2.923864918444716 2.5647740837598865 1.1118271128194346 2.397070218041792 +2.57793806151272 1.3164908976548273 4.419928039534274 3.2992529438646563 1.6873534357861213 +4.291730737143851 2.3813061227863415 1.4018754281268788 4.707186298667134 3.8176959226809326 +1.5010272119730335 1.0480385272607124 4.161619595555202 2.104845027144899 2.106067514050009 +2.701686363296295 4.9449299427096545 2.2651319618556736 2.6596218468843156 2.277666355278835 +1.80210760072853 2.226625380222849 3.0342919310391707 3.5296629162412487 0.652386203170227 +1.928798216000653 3.446602908540861 1.7352286660471918 4.2301741116976 2.920356803794494 +1.347783988350007 2.6484038706987887 4.735058748744908 1.7708974872130376 3.2369528978233792 +1.6464147208641373 3.766282640345165 4.051487421241174 2.5463846708377296 2.599841203865504 +1.1766715195473072 2.035310977571415 1.351004003531831 1.3423665923205994 0.858682900579932 +4.04002991021483 1.8250341859004449 3.782385961542652 2.3538549803693236 2.6356985455288773 +1.220096267636741 1.0061168043177435 2.6602914475081585 3.364178725756933 0.7356932181301892 +1.8404219043552734 2.443644253078608 3.4639199384880186 4.230096650160137 0.9751430436136007 +1.0220082189144057 1.7455160926531006 1.0570283633109026 3.710293616927086 2.7501418416890493 +2.4438817894355553 4.793060332926931 3.4641472176921484 1.5599280802024285 3.024018907477656 +3.7276678574634126 4.534043104843133 2.3608592257331 2.175706477936608 0.8273587973807353 +4.881460796558937 3.4738887996021917 3.7424744195037953 4.938936361655353 1.847371133701584 +1.3651296707043015 3.674179837346801 2.9406763695407716 2.2844097897638243 2.4004996346185696 +3.933456441746651 1.6713291018144156 4.5882385935038315 2.7079834018973283 2.9415267613319616 +2.638690779143213 2.492527927676236 3.9665211528516977 1.780281231111276 2.191120392529932 +2.5620336701341477 3.1382358329092113 2.8790366522198023 3.1610794957643202 0.6415271607510771 +3.6759959148616272 4.441195982957406 3.9035226225533544 2.461641307324192 1.6323458185754522 +2.4294358111855034 3.7404788105233013 4.02569393142142 3.3211262877078416 1.488371361818264 +2.3091257505501233 2.6759098783129804 1.8479557286970887 4.009604434713306 2.1925454897448184 +2.286399605658633 2.494943482174801 4.57236966030926 4.959538314022046 0.4397614294707553 +1.2659327341690276 1.2096197274823384 4.785899735675583 1.6572693313399975 3.1291371592909036 +3.320531786317878 3.9812785446358117 3.469431621438442 2.2851911573438817 1.356101675917613 +4.15760769309874 4.249297272852742 2.0670462892325734 4.4178428537883185 2.352583997854818 +2.841392130169684 4.809901748188345 3.2409177976477497 2.9730790167084895 1.9866473589459717 +3.0598416081213697 2.84329377210868 1.3020480280613675 4.34225055151297 3.0479049113913104 +2.431590379612288 1.9061196904486555 1.9661667467813562 1.4511394772264117 0.7357802209595774 +3.139345206327313 1.648225722240492 1.672419273789203 2.4056569161449795 1.6616482046422478 +2.6738098215948356 2.605699635881675 2.9746624385317 4.535327555858162 1.5621506348100682 +1.356971131546497 3.882669520883284 2.829867114363891 1.847674526058133 2.709954729219882 +3.1025723524785414 3.1666979806248348 3.6627585804375293 3.4760170017271768 0.1974449629754872 +3.759689021213081 1.625222113108129 1.2376528489473935 2.239644098045746 2.357951535775235 +2.398245968966242 1.1357597455534627 2.925337965667252 1.2658303150671788 2.085146783012466 +2.631025509030446 2.586908780385064 1.7229648513770148 1.411278599142436 0.31479295668487856 +1.6102459587815274 3.4055202235009943 1.6213655301392311 1.7547088173855232 1.800219463792587 +4.338518110611019 4.24482657550433 4.095201232131135 3.064296499923112 1.0351534527013586 +1.0029726524299165 4.7692726725959815 3.885384288782675 4.622614212679297 3.8377758927002916 +2.661735885288587 1.3155234839028553 4.498591494326863 2.664571072920207 2.2750645563986502 +4.163431833949368 3.1955050747779943 1.3402101208162298 3.4425443454200835 2.314452722148518 +1.4024406207792115 3.6743539432751136 4.000981116140681 3.0400855171436407 2.466761134991844 +3.4711562285340243 1.3498269846758455 3.8365820185747137 4.250942111885392 2.1614189894086584 +3.2328837741491006 3.024421349528804 2.8075459233857565 3.925551182251474 1.1372740836447355 +1.7299291859293056 3.869948765208008 1.6849518459540955 1.7702167478381998 2.1417175124627197 +4.491586307548876 4.366479980841742 4.253298784658189 4.079073496589172 0.21449019554488785 +2.7420120119918585 2.7968435268221685 1.9457312801658926 3.7761115433065635 1.8312013550435948 +2.1395670382849477 4.249326786320296 4.371374050430692 1.088288080402518 3.9025299077682942 +3.931797298662484 3.2492013499587973 1.0410322342125364 1.848645685750494 1.057438752974251 +2.5015502246685384 4.152284735541954 4.912358487383761 1.8931719226436003 3.440989964835118 +3.5234647096297667 2.554657789095626 4.484089745399755 3.8201425316424737 1.174484036473422 +4.576221825660369 2.544257248122395 3.5283611016864778 4.6224070773443175 2.3077730913636616 +4.323383129023455 4.31371178137452 3.569487877477449 2.1188788991162806 1.4506412178989603 +2.380917999581656 3.677241529188563 4.750075557239576 1.5513223085923817 3.4514456448194992 +3.1982127092787955 2.6140418604918927 4.1079960143548755 4.340521918940101 0.6287478643109555 +2.806625086637609 3.564917098720666 1.4341331919569522 1.4504242826509648 0.7584669902012691 +2.822608357711016 3.7605972254715554 2.7696773671422474 3.828350393138153 1.4144298116251741 +3.157233284546437 4.815462622652888 1.9661318915236041 3.265333699646772 2.1065730170083037 +1.7713352482046187 4.070993334655366 4.526067903695678 4.06403399159589 2.3456134912872044 +1.5629388769371437 2.020117108827397 2.8675116544325863 2.6788432346799556 0.49457831364330246 +3.5953885289421987 1.9011828673499358 4.869149942612328 2.470408563145094 2.9367146659727847 +4.919777761818261 1.9223977686228975 1.4278967153353954 4.319531496227272 4.164833553657511 +4.955161577375667 3.0694649473758164 3.3048755957666804 3.7237579561447336 1.9316609982677295 +1.9261326432891446 3.1713106289464625 3.6276583604197117 1.949455833762666 2.089696613492903 +1.6242223687214987 2.727727887980317 2.1954225719674008 1.850169499267385 1.1562543471241422 +2.6415500638255254 4.445208904731691 3.323478974559429 3.729911491062629 1.848884151278846 +2.339988486560507 3.5061673248728136 2.4758866488224185 3.25978305718176 1.4051571662864322 +4.804158057965357 2.270134997311409 3.317647975662521 2.471041099978419 2.6717065845413486 +1.539023292927633 4.827516467794057 1.1117301761504041 2.627593798735034 3.6210536979473873 +3.1275030135859048 2.5556151469319883 2.449544277472557 3.218567621479328 0.9583593457849329 +2.3282330204674384 3.2567683491543566 3.55800194045954 2.4983038104592437 1.4089492479666712 +1.136740620556516 2.1256522127506803 4.861907889923637 4.432671429089657 1.0780491994734183 +1.3189902756500502 2.8823201362364674 3.432359040930387 4.6306905840903685 1.969771240609764 +1.1351832303316494 1.4446964138570149 4.792437622242843 1.0201488884883694 3.784965085913863 +4.748352810917565 4.955333134875749 1.8104962927891246 3.503691886842991 1.7057995703567463 +2.4322680555435596 1.8483418250569401 2.3016907833469307 3.527656151440476 1.3579252285803718 +2.3947064847867576 2.204223184793054 3.0077171113411194 4.293012010517809 1.2993332387906145 +3.572986559628981 3.99539168065779 2.683799794207972 3.517783516689712 0.9348555693987508 +2.156963784904656 3.6839986802815763 4.456115554772946 4.534402912412064 1.5290403794749559 +1.0379391737623616 3.068839304095121 1.1915630910996677 4.031553950445071 3.4914328606678176 +4.222931120660131 2.338008217751811 2.526873763577164 3.0039581553914654 1.9443620719457446 +1.7390918616462323 3.0097257564249555 1.4920450324138779 4.154036882369808 2.9496967816696587 +3.9853351833536634 2.370997016135534 2.4018713177419855 4.455556786066451 2.6122235204791084 +3.3710034584043456 1.2680449273675216 4.865906172787261 1.3489345383979998 4.097746217173438 +2.438493334682855 2.614915941033792 1.7225389539192038 3.1830343899876943 1.4711124548478773 +3.1343894072719563 4.403518011757264 4.559290123082789 4.442935997998568 1.2744511356450425 +1.384949888802077 1.632045856644396 1.546414006775219 3.0834680138586283 1.5567888225495126 +3.6675509652700833 3.3561203455241517 4.069230329988274 1.2669786240668568 2.819504150423409 +1.264822252207836 4.8929860157801315 4.617245796117812 2.5582678204949745 4.171685822230505 +1.2627840464475582 1.9759688856145967 3.2832304920635282 4.244847576268506 1.1972217971005197 +4.855667826874145 4.117480253449607 4.444896381391784 3.1596099311920227 1.4821882986400583 +2.1938840006016287 1.1169142383857587 4.209592140145384 1.397150473679817 3.0115929333160087 +1.538756826233294 4.109512616599268 4.628559467346433 1.1073510413719543 4.359781429481741 +2.2780490147270966 4.440786594771035 1.2784025696181742 2.568246116931989 2.518160085594519 +2.3641146594523326 2.8192685543877283 1.2889220734829205 4.562383672793475 3.3049532387366196 +4.897978975174703 2.1655933072575646 2.7828918827925464 4.313241616400612 3.1317569741908873 +2.5999746671698993 2.121718984392211 3.3582643759948154 4.4238729884585295 1.1680112212928415 +4.063370499395537 3.901951540115802 4.981586760097764 2.1556549109875096 2.8305382696990082 +3.009574163190572 1.1757672759625701 3.9146236866836 2.764079086479853 2.1648557865832205 +1.412402650714605 4.6211582950522665 3.6467291020465353 3.5828248894217585 3.2093919258108685 +4.409174750853259 4.375798945154688 1.93453138650381 3.165026375026654 1.2309475460741055 +1.4257902195844485 2.6349768140535197 4.689240525608978 1.6492490900398282 3.2716479255227773 +4.969949592543415 3.0716437406129873 3.6303921882832704 1.8017557874033199 2.63580655475634 +4.1274674284853425 1.7195131017156946 2.8958292552182137 4.127788253809731 2.7048044317508952 +2.6297644972319625 3.3129891770788578 4.2886841394395105 4.879294260514373 0.9031147647270289 +3.445404906572262 1.3489645103845338 1.4983428567853432 2.2381397657505553 2.223142325916683 +4.889110086257996 2.9670356279386545 4.212954468223643 3.987324315074912 1.9352723811736448 +1.8559924576217899 2.3628410823262973 1.5045265243529444 4.110575540675147 2.6548798473450304 +2.7021033869914386 3.384050115318233 3.6957775173251006 4.007322397086281 0.7497409901966323 +3.291985377021256 3.098730271470639 3.1082996285629716 1.1650205543971284 1.9528648432270568 +2.730035064395066 4.556891223531746 4.8925560364293625 2.9221662840935276 2.686975846985919 +1.1193083488351614 1.497456387940907 4.075111050520687 4.298073081341396 0.43898520096606397 +4.422358245188342 2.3473257997215726 1.406717022182323 3.6281096157444157 3.039793529908293 +4.757228096270728 4.712397082408918 3.8274158576895676 1.58800713179942 2.239857419881188 +3.9238269063683373 3.6477464973237286 2.2661588738767375 3.112982764192121 0.8906913570183101 +3.810305992823529 3.821449596675834 4.728750495495314 2.5142566951552916 2.2145218381517964 +2.9169493930643724 1.4282952722934028 4.449382205667246 4.39378993145824 1.4896917775970027 +1.7902887582262372 2.8466856186112968 3.882040073283828 1.1924051978608503 2.8896557043570064 +3.186170322975806 1.9386322001260474 3.1883437238577463 1.2766641751976433 2.282733025285435 +4.125022848780693 1.104591633185061 1.7422359878219225 4.012456294588635 3.778479187371614 +2.8413105525514273 2.9337856472780754 1.675929686334789 3.4855032418910588 1.811934903939229 +3.09680121663878 4.04414798631727 3.1419583087565943 2.1711753100173037 1.3564238027480644 +4.327828357695566 4.824099847747268 2.078121793116192 3.447838719404978 1.4568492887049562 +2.959778643683341 4.130400290546135 3.881879981609999 1.410924048263186 2.7342235213393913 +4.423063148514476 3.904804347120486 4.680234530327457 3.483793450865402 1.303864809651163 +1.9244920770739578 4.048570055667889 4.420828047079166 1.2875429302728394 3.785390717263901 +4.11156941709339 3.673375557904791 1.115841173417123 2.185606567706245 1.1560328096767665 +2.2803530274254893 2.3185151146335357 2.3714705358637187 1.852811650410084 0.520060942928885 +1.580339518579438 3.7041875639903874 4.12999346493446 1.428915717933243 3.4360662850621897 +1.776805030233644 3.739660219728538 2.4323741561811483 4.357648671648253 2.7494513006842163 +3.9410055283982577 1.158235474493908 4.779132682273513 1.004486878086524 4.689537303399265 +2.4809026270412367 1.4605927303888064 1.8555215012016992 4.440707627654265 2.779248026644926 +3.968341932876421 2.3186918045813156 2.5123305905919966 3.877137959345951 2.1410382293619024 +3.8905109720537534 1.8669570330997356 2.643917513954645 3.293667666598042 2.125310754858319 +1.8625879965065733 2.6787532179337648 4.650049333488504 2.7265129772296692 2.0895257314799474 +4.995350916910088 3.9461555866231492 1.2893375877051834 2.180451751548262 1.3765519583719559 +3.9350553109247732 1.6584116350318356 4.903262769190406 1.0794760718236005 4.450219223133018 +4.591327409720039 2.1291625141740447 4.575997983979898 3.6012390024788616 2.6480957393712097 +4.517906652208129 1.6184990703075166 1.7071063912353788 1.763485843966612 2.8999556839153646 +3.082941528490469 4.043544714553374 4.797614451881165 3.2337211441132254 1.835353033929862 +3.1333171721534567 1.1066720506892112 1.6406647995082682 1.8617648889851588 2.038670080695137 +4.050112230729654 2.7339738439580334 3.1471191978589395 1.8789014224129637 1.8277298977395278 +1.5581696565140226 2.869070487206742 3.0040657158370703 1.4608183288749506 2.024863818945924 +2.1810759100953248 2.738864417461385 2.309750977983521 2.9886240214335835 0.878633386614012 +4.563793618130941 3.9453881937071613 1.8877499309993784 1.3488787733200027 0.8202483730769999 +1.4702747556068623 1.5407911501734732 4.547644337416757 4.116042404447214 0.43732458248504613 +3.0295322476798883 1.1406890093530198 4.868482361585265 1.4368244438115192 3.9171424334063185 +1.8189861813563888 4.183125013016422 3.387756253174199 2.293215345860676 2.605220185156252 +4.209498064278783 3.448037867873305 2.51322144820049 1.0980326572161743 1.6070410526298073 +4.856862238959566 1.7481843734698743 4.816704694924763 4.420434870790972 3.1338327723260178 +4.743969430010088 1.4813385936009023 2.6421410624842356 1.0769928621442202 3.6186252726298824 +1.5254292905389786 3.8813874097199625 3.0685491850310123 1.9577190005415832 2.6047038906769457 +3.0612082690130404 3.102569104032312 1.721834887097828 2.5999538427950473 0.8790924974246263 +4.6530941551772615 4.6128350295749705 1.3734398853944683 4.649428375247 3.276235855801675 +3.6606353762027615 1.3561966156024599 4.607274143141455 4.465972742927541 2.3087667892317465 +3.021343343862156 3.1942354581893624 1.5237641851232402 3.7446818715824266 2.227637100881505 +2.2740456599969825 4.952436600479977 1.6574060885403097 3.9559061786022927 3.5294306472965755 +3.8406165878872223 2.282418553970234 1.1367474624927145 1.8148623934325405 1.6993589886972948 +2.679301206800945 2.198251072134686 4.614455279451686 2.4256555670732394 2.241038467534727 +3.2179516174509364 2.679224869160989 2.914595450160538 4.238364215956176 1.4291921685410844 +3.6522105750719276 2.5762404009151028 1.181128412242321 3.054014676901808 2.159957123654364 +4.504575928779191 4.72572305238898 4.045093406797021 2.670194921534282 1.392570247800324 +3.1165066481272863 1.971591616819353 2.8542526645294473 2.7052135187051642 1.154574855045301 +2.440397667191557 4.407738665259732 1.700200334263264 3.013639635080509 2.365492210854049 +1.9813105585035684 1.9163746211402075 4.435160194516257 4.420123192572572 0.06665423759006406 +2.37019506117803 3.691218033162809 1.2836840590068106 2.3862285821517206 1.7206702525551882 +1.7979626908092232 4.869690485698084 2.688619361350451 2.727214662928845 3.0719702542825362 +4.963688777427411 2.4962698920974407 4.629242418401991 4.730493588180777 2.469495445443171 +2.2835585982124895 2.35295984588591 2.7343281460561166 2.3593161811978045 0.38137974115770673 +1.9978602874670792 3.5182682957593174 3.7751947039139857 3.3714291246691106 1.5731074835058538 +1.9072878946721135 4.565692882349406 2.7266638149898474 4.160315541436609 3.02034341611203 +2.389514378153964 2.8773154006028396 3.070749718907215 2.179830292381131 1.0157200707201444 +1.0844718153423507 2.768866746673391 1.91885427872234 2.244692543423975 1.7156214207795009 +4.667262730177573 4.328542347411483 3.2617941983174563 2.5233490060629276 0.8124240270111626 +3.3765269674349265 3.9101394366138775 3.403773940395981 2.7063532012791502 0.8781446091695394 +1.9128487434924328 3.611607178634699 2.0201341955518686 3.155393877695251 2.043182509436515 +1.6845124315759747 1.1629622002354725 2.1056229363641132 1.5950081727477614 0.7298918280363977 +3.2056094324264333 4.580668253872934 1.4557959927119808 1.9950350684789595 1.477012370724046 +2.5718793079774045 1.6168838673540473 2.991794875690215 4.325976749290875 1.6407490860750062 +3.5108360196290276 2.6709257110954234 3.3188263001311413 4.07373807314001 1.129310015632735 +1.8006238175278972 4.924061305281478 1.8017354642163448 3.004700648361 3.3470863410089358 +3.9935998753800734 4.002356887852127 2.0940608371472456 4.894990077558164 2.800942929632148 +4.34247270400134 2.892456600815387 1.6394238220925281 3.829440964911475 2.626541792041284 +3.136506138506561 2.0735282191936033 3.6659581704604918 4.321317265491743 1.2487664314783151 +1.5812212726113337 2.382831708888802 3.8628988170423586 4.144577407537211 0.8496600025257866 +1.5792688222434013 4.917288759083601 3.04421247473719 3.0484617984926454 3.3380226415491903 +2.758175660216471 2.504879624627115 3.7640758157548992 2.023491695861112 1.7589178377831391 +2.3337523205368806 3.187963035641082 4.681667671908132 3.1299874961573746 1.7712671491383596 +2.5689761926940893 3.6632149714437428 1.8250461865578136 3.441789329021127 1.9522338214521546 +4.54545089018003 2.293521180791093 2.8771032361768984 4.659597632308849 2.8720156142107496 +1.4719366801730582 3.071335532709007 4.936275384798732 1.7208686408214473 3.591227814927356 +3.114082242877502 2.0283514599298655 1.2192067442371863 3.688782906398352 2.697706016925262 +2.6384369161338137 1.852778280778855 2.0270847390791156 2.7331198547040265 1.0562883487965287 +3.716763263217719 1.426726937751448 2.628364455316286 1.9194502377323928 2.3972537912886165 +4.3720990359221386 3.0760679641227537 3.5923868754164854 1.045072919702959 2.8580596438917008 +1.3501923147957942 1.2735549540569653 2.787688737962479 1.2175080703971308 1.5720498127785185 +2.794787051726254 2.7821868085122166 1.52065064770514 1.6518547648709818 0.13180776339169417 +1.3584101575896508 2.995671751406404 2.1503405924118972 1.3190986261954207 1.836188643082951 +4.249659803409299 1.8081043676107993 4.989612313463346 4.109170959509617 2.5954517764406795 +4.872511659606693 3.0678921682561944 3.1593849844291175 3.6394339131699023 1.8673774344109728 +1.3912515042410631 4.837509499959031 2.899391591599548 3.2846660396209275 3.467727003866972 +4.728808939711302 3.6472087075439377 2.939383849400739 2.19883614454154 1.3108279694135012 +4.9041443201539945 1.5459581778989469 3.089208404406463 3.441400111742671 3.3766037914967506 +4.911624348367058 4.20568485520255 2.3995867862448708 1.0874273999198132 1.49000430305765 +4.684513272116635 4.917424538256429 1.5847032422788807 2.209968526077471 0.6672363397017383 +2.1325834860695574 4.752157181003186 4.464654746059533 4.38131532692826 2.62089904459698 +1.1730057494677837 4.278662594831633 3.775602289517912 2.8236428984173165 3.2482812568279784 +2.148495829273796 2.673678384271575 3.997090058522102 4.626455934135292 0.8197061189599308 +3.08371845953688 1.6981950430833281 2.352670117595585 3.2303401786299757 1.6401158110259266 +1.175144960196012 4.664884297599734 1.9499866118123137 3.2952808497884227 3.740066473975388 +3.822919597659258 4.812532354384075 2.474452973075761 4.623192765185088 2.365674555484445 +4.15808157882824 2.8906236916708883 1.7097080748806315 1.1194694554120943 1.3981527540399519 +2.6516756489624718 3.344666117557303 2.078498268622899 3.0971579909070353 1.232032231464452 +1.3465956764158573 2.693489380644571 2.4489723294056622 2.6875155118429976 1.3678543417989641 +1.8952986041390156 3.856833196945321 1.2688965385254902 3.198916668110842 2.751834962235282 +3.2846755385259687 3.0759003577102972 1.913861368595783 2.5654711732075497 0.6842385648228263 +4.471697813917136 1.6487235572584162 1.66192551358482 2.742814346558635 3.022830515097621 +1.006213023632859 3.4376742213149143 2.7989336456635514 2.6934105155555215 2.433749922818951 +1.9522424264615186 3.642805037579099 2.22861445684507 3.556388830080155 2.149648047548369 +1.688525615779049 2.5941131840490925 1.3155676946120534 4.215617591197088 3.038153756228957 +1.1176575857976783 4.221844122103841 1.337396764321943 1.2153759507155217 3.1065838361675713 +3.9279550552708766 3.166056535020888 1.5230823614493834 2.9866244701454905 1.6499832905474439 +4.0006615867310416 3.665351290069523 4.90647143107278 1.7561503779443108 3.168115486031357 +3.645833380497527 1.8007151739375726 1.4909258378834251 3.996818230173308 3.111905827289016 +1.7186477425526943 4.459391227030034 1.9623210393482742 3.1745491283655025 2.9968603216545397 +1.0620294187688168 4.975566013058367 3.3337232802128614 3.0635267902104086 3.922852892736752 +3.958448593047098 2.893424326265566 3.276751207030637 3.394346526845496 1.0714967793119576 +4.7994411086851 4.595412701657317 3.71736703109484 1.5959164818624538 2.1312390817814615 +2.324864876959482 1.844305681396865 4.265121271910296 4.5063002256550995 0.537684320181673 +1.9635564991051297 2.4849268311013657 3.860405859971437 2.0769242295528665 1.8581264082742992 +1.1576250055068273 2.7845536307514696 4.108575866328183 1.7542163550761334 2.8618010867045616 +4.6370172147881465 4.8635170009467 4.56265951297432 3.836941340603753 0.7602427367878934 +4.415729117310947 3.8111138386564947 4.010870314575403 3.833534123201512 0.6300855179683141 +4.560109112024799 2.5353329492651753 4.0841980295898 1.1065201971120198 3.600872641917394 +2.7126716165255984 1.208944099854679 1.2742020891941541 2.7499854063165006 2.1069249733889257 +4.616148900737489 3.382437351653288 3.9629529542210533 1.1729577480233901 3.0505929648102317 +3.993043932702056 1.738166833615443 2.42373727741813 1.4524296790085431 2.455180071341705 +3.40999757969825 1.5114260640458959 1.2833797413719217 4.666312681899976 3.879279453733163 +2.1320606245737763 3.330267631849091 4.074030413679676 2.373339815620498 2.080396246538277 +2.917378607910655 3.8035304468018003 1.6480864898866217 4.133026928426684 2.638217971408321 +1.8629387834529623 4.41353865780737 3.617877453645096 2.6983992339547735 2.7112727482755417 +1.0762817544923844 3.9733705525263847 1.401766358604441 3.9445724022204547 3.8547355394558798 +4.5062750883760465 1.1676775879300112 3.9192510478946185 2.7714503537867556 3.5303937037360305 +4.297834040698097 3.123454595005486 4.249592238114304 3.428333669088642 1.4330501455508677 +4.713011843211071 3.3287407091778656 1.6585969209864073 4.258344143686919 2.9453169938831034 +1.3502381130883516 1.4711606423796844 1.9673148144570574 2.1799050153411783 0.24457483844861092 +3.6740049530762557 3.9968887927513923 4.686634347515548 4.9332469110169885 0.40629020465685795 +2.173487575485833 2.292768304282755 1.4137286616794391 2.931922434633571 1.5228723598841196 +1.969018107668548 4.178772099105078 4.62034841551279 4.248653669256381 2.2407966634802663 +2.7480335720738873 1.560899485276857 3.8112287853013704 1.3435150468607029 2.738411662793641 +4.452913400461409 2.41209000619437 1.1911134344229435 1.7697006764351033 2.1212551292116832 +4.981246314546254 4.3317174071028415 1.8504430971392969 3.958634533283368 2.2059825323505704 +4.622830954601718 3.5170795215024993 4.838575791222696 1.799963592904056 3.2335507300136506 +3.4686032306125054 1.1752511307801283 3.066056350889214 3.782892649867841 2.4027730091165393 +3.4212296597494243 1.0741487912837266 2.7488986268991282 4.098436413705885 2.7074048166347366 +4.855451771913273 3.12624674318046 4.442676882102301 2.678951587549021 2.4699953332024545 +2.189429287572895 1.2181313511839131 2.854187336896957 3.538964980990198 1.1884191613582238 +3.097680913057975 1.5161245157063377 1.7495663639082517 1.8005499334506512 1.582377945488111 +2.3524588540681877 1.122859559337348 4.945880901165818 4.18831898782239 1.4442349109999848 +3.639763064063329 2.178350057549889 1.6510180187579557 4.952034106140088 3.6100464241838073 +3.3173561122692568 3.7122097244822814 4.941326279514243 4.004500884783207 1.01663719944267 +2.744986342871478 1.3321120062989018 4.211205216545533 4.232996739100498 1.4130423777794707 +1.5623466445619374 2.9094641256525398 4.378435581308951 1.968290766987173 2.7610728954270742 +2.6636419045316932 4.605533747395787 2.8428650968430795 1.04472378507677 2.646555517358888 +2.9860651238156577 2.104724748222242 4.923050171698079 3.4353275003255312 1.729184664680731 +4.859529158153296 3.2155527124150938 3.5448904107163366 4.520254947383938 1.9115424487912416 +3.7805534580759934 2.321597820237129 1.2312119267706447 4.1186094955502135 3.2350604744542215 +4.3029281491350115 4.211007290751464 3.662215934371019 4.503720087608825 0.8465097070456099 +3.1096050841362874 3.871167965789 3.4129742323790193 4.182621555445509 1.0827442101505775 +4.539366699653309 3.2690103560348622 3.6862373175883536 1.8747279806805293 2.2125486022855756 +3.026598713736964 2.1682666825543837 4.2804551064498 1.2478182973164431 3.151764567962614 +4.985019797419696 3.309855457268305 1.3401477973333624 3.0299321041694958 2.3794004644331133 +2.947125747735436 2.846415942256872 3.8745779740213306 4.12918783711882 0.27380403084332544 +1.8125886819567083 1.3739622824400293 2.612884443919231 1.1087105268256923 1.5668223547095201 +3.0924631527505757 1.7755404696649966 1.1568710627752243 4.169452691122544 3.287846319504777 +1.8198847132141434 4.709128717438413 4.539181772745451 2.735297587188442 3.4061311000677246 +1.4249248661938148 2.9258536388823457 2.4074509749596764 2.4450609809186985 1.5013999111604268 +4.00784016401666 1.2734150977759562 1.5716214193680798 1.3489087037237115 2.7434797970087486 +2.693151873348285 2.254403420125555 3.388717667572243 4.755827595090595 1.4357888978274524 +2.730583516334707 3.5562505862784644 4.339383126277427 3.9212697067157114 0.9254971323602795 +1.2907376232141106 2.740462647885234 1.9135802836296474 4.443867018771126 2.9161710528003346 +3.3090550242639813 2.9398424875342863 2.738184517680556 2.8491200538142656 0.3855185993640903 +3.1254627513812165 1.0274410821727327 4.152103652959852 1.457455008568072 3.4150880283223755 +1.9959238924059548 3.781566981047344 1.5746159838434641 2.753522743540015 2.1397061452617696 +4.702723328213171 3.4344819416656254 1.2481912928668497 2.0696146065029324 1.511017033238515 +2.308337493572908 3.371204723137006 3.050807220615191 4.303328651080656 1.642710163557928 +2.2982948722252408 3.3597168090572693 2.072496717069945 3.279851034359622 1.607582338627256 +2.7272722708127457 1.849233481592874 3.7969395307206955 1.4558759735012465 2.50030612012123 +1.5007868497376329 3.364123840800879 3.5638304529040448 3.7181218879976736 1.8697140394209706 +2.8059258966232075 4.051777521800275 1.9940273014654748 2.4906194920513807 1.3411748863243935 +2.529208696807828 2.64466513026646 2.836291179921716 2.5632882610906007 0.29641319423618107 +3.80680983460958 2.433841642921773 2.409563206430951 4.0780397727774975 2.16075350464463 +4.614620428171321 4.357679158837858 1.2429302538605298 1.2093866024467137 0.2591215784855885 +1.2632408664977475 2.9717903257452023 3.6745136911991962 3.5072732393175445 1.7167150676336331 +1.640158806854139 2.6112339416361334 1.0886567967056244 1.3050623226633795 0.9948961096802627 +2.6981619498244838 2.9914867549712563 1.3384452849270239 4.543004137526383 3.217955388299737 +3.1489992475300608 1.2784082659865397 4.112475226836878 4.719245220039248 1.966540222035328 +3.989483848689739 1.949247510877178 2.2244478761700597 2.7634635335529754 2.110237473137738 +1.5064506541625176 1.0694884856573506 2.746782013926993 3.3975403319242417 0.7838509585038129 +1.7718874770537063 3.2747612468199474 2.5139637516124664 4.283867600029013 2.3218934515802174 +1.1855074479819971 1.0467056010447156 2.4566927565057273 1.2540546181667271 1.2106215116627892 +3.033961404794307 2.6149291940129444 4.3305443278834925 1.7617276185581856 2.602769156068439 +2.2519805310282326 2.3377445037925946 3.350055859144808 4.038682174556091 0.6939464397929037 +4.569082674524365 1.6100988131892335 2.7112350121266964 4.645989212460819 3.535372583950989 +1.7656768656526607 4.72858780729798 3.709513088079766 3.6985382944545564 2.9629312672110144 +3.0924855583132276 1.7828440914263988 4.4317652927490245 2.7369874518566655 2.141829288661739 +2.3615866341051586 2.2297675854123913 1.0322501014620156 1.7465286668287177 0.7263402305673149 +4.729468966848751 2.1925309746392716 4.081602706773211 1.484745707994926 3.6303884982766825 +4.3462515745935315 3.645181150043656 2.876730003697746 1.6081135573644838 1.4494438340569726 +1.4337073755156027 2.5219617962803307 2.475578065936752 2.9027229543672837 1.1690810237217542 +3.9997036987937196 2.868092746049303 1.6408724357462794 4.474560501578595 3.051283566437511 +4.963661785401189 1.5446664361666507 2.070320796098536 4.971290783947786 4.4838773476188525 +2.098250038917 1.9397707020966304 2.612949086397406 1.4136911803573327 1.2096839361579725 +2.3471510414773307 2.398485665482433 3.852127339139076 1.1619063519035246 2.690710724657032 +4.684582339613588 1.9690008748610661 3.5707533754160985 2.770608216861032 2.831009531327396 +2.308852226655199 1.7771502578619995 3.419369096957722 4.731640168678597 1.4158963059821923 +3.55373403903469 2.7854206597997058 1.5949145832293476 1.2093122947734 0.859647935828351 +4.723543615389703 3.037284202853907 2.9674478993973556 1.0098917693955904 2.5836982812381666 +3.172063582350976 1.3873415381973135 1.6888831840562624 1.7580005917656227 1.7860599068722443 +1.6292848418770292 3.8862162999838357 1.6610796043269986 1.7733868665507027 2.2597239937081475 +2.0341368517100133 1.6316574000624975 3.2485695295177788 4.7571838419999395 1.5613797913462655 +4.64292645074447 4.389105734167526 4.562295034168773 1.5578214482174868 3.0151760288319185 +1.6776225733917518 2.9717793882387045 3.47412174136512 4.736371419485158 1.8077931605493336 +3.010181942575311 2.2869441510881106 4.230146753636604 1.9645330689306428 2.3782510951037543 +2.3901592080295466 3.399711515216821 1.7256588497634024 4.272679056637926 2.7398006853007186 +1.8676250187341399 4.222559413054043 3.248845376843499 4.299895652568686 2.578841345188347 +4.979685344100341 4.292519766220068 4.321516906290683 4.543232525705295 0.7220487153343147 +1.1552999362849592 2.6355267072908144 1.0396673274027837 1.3030353549133111 1.5034739809910933 +4.881600058265834 1.2353597634030042 3.1618168136009457 4.55844411340389 3.9045660581473376 +1.603657590159262 3.119922235908092 1.545791116788783 4.415630113925529 3.2457717642241373 +1.338475194354412 2.58926574495119 4.747330807381225 1.3523344894273914 3.618076422684059 +4.916557812568684 4.923598029591385 4.836203655848722 1.8978917227666785 2.9383203672758462 +4.520016884041052 4.32241550320688 1.943257303280304 3.966142678275184 2.0325136029251434 +4.357708443429621 4.885729804229423 1.9557971865267727 2.7134680422578215 0.9235105213721686 +2.8269752066543914 1.9312088651550696 1.1896176536005374 1.3975547587578627 0.9195842420704523 +4.948038180246384 4.584899913478626 3.527640435595641 4.628463829093339 1.1591727845592643 +3.7563074216066368 4.788158588268454 4.698006675457247 1.7882924920689476 3.0872566234688668 +1.5527926971370252 1.7220089875191285 4.2018825302459835 2.452061360679035 1.7579841519181347 +1.9879633516074855 3.7750078007208248 2.3755869689305285 4.190051842375482 2.5467254740298193 +1.6583840672883405 4.597096323790765 4.064995628768619 2.0936443351130105 3.538679930357536 +3.752884032360879 1.4177190032081972 2.0266166144361093 4.493763989130741 3.3970298617822396 +2.645842271723295 3.0328967566173057 1.7024962244243942 1.243910607580613 0.6000932779598179 +4.382859840727921 1.5056514397746747 2.60213990521929 4.25045137066858 3.3159099610284235 +1.41044677781024 4.099091205959041 4.024001425351566 2.231432328095235 3.2314258198903425 +3.0985288797529758 3.8264650136244835 4.913871075326847 2.7070141756057384 2.3238133296034045 +1.73604121550636 2.750012507326567 4.979423896150224 2.158003606640455 2.9980910977975515 +2.955993289271979 3.1052024558411304 3.4910460191015997 1.6257769977784728 1.871227377230249 +3.207257204716211 2.4734202086283816 4.629136906058473 4.841378452962859 0.7639130913000349 +4.752468183377049 1.7382366921954047 2.567542123470669 4.064226734698021 3.3653612447872354 +3.7349108439790597 4.767550597290828 1.6569828059811647 4.1548427721260115 2.7028964594650913 +2.7542599020865786 3.1806703610428233 3.594403141471488 3.000880986718288 0.7308176432531969 +4.796434865557654 3.8956225881453332 2.1270717414064935 2.4663936757239933 0.9626017526712388 +2.031213757017929 1.2364009435108736 4.536620620401925 4.084034901483932 0.9146372185098951 +4.47790961433767 4.651070493883324 1.2148589631152125 3.3943164011696036 2.186325550894842 +2.1335561945747155 4.410282182300946 3.380233420894672 2.887407656470539 2.3294545407172498 +2.4241320442765817 3.9582971226988946 1.035988598339939 3.0140256182827843 2.5032564671073785 +2.1127299110572135 2.3236826466363603 3.8345781468349087 4.666499046328454 0.8582502197276006 +3.6493470803309274 2.5319828335181036 4.17745945760559 2.199238206992495 2.271973190077917 +4.27809229453448 1.331001213550524 2.4973214642664185 3.090918756729994 3.0062773633241613 +2.1604618126212554 3.557722635264275 4.817908640449672 1.9868286564390445 3.1571112876106637 +4.0574210694608155 3.079520418767063 1.3565918592218646 4.799037309010486 3.5786478392540455 +4.605286999548495 4.1244981542988715 4.268238030526552 2.0386168963251787 2.2808700786747775 +1.7454202018540261 1.6470936278608561 1.8172745146952147 4.434798562563428 2.61937020222832 +4.503782806733675 4.793479759079243 2.380772496547754 1.0409769220917409 1.3707576392383258 +4.305226806259947 4.114428334693048 3.825302345394374 1.2054895496673401 2.6267514426392466 +4.023472913120181 4.2000769855554925 4.731122169982847 4.926293303035626 0.26321240392094397 +2.6858589922623395 3.5975589098298015 4.114432378697926 4.32364444217305 0.9353964011027818 +2.735869103741273 1.298017514278535 2.937698157122131 2.6300785807770137 1.470390083301459 +3.7745913987476616 2.43246888077534 1.709344531677636 3.283402377395594 2.0685625334793785 +3.777899760622106 4.344459422232244 1.8325788699856336 1.7885655947551125 0.5682666790867754 +4.165211711508906 4.258750213518729 2.30551720508597 2.477600838332475 0.19586277897946605 +4.276054706900436 3.513805729756083 3.561132486375949 3.1367572041725533 0.8724207031603641 +3.7389882385558026 3.0565240502303905 2.5733779901001186 1.879218165535339 0.9734553047708298 +4.171827170975268 1.9647302867293464 2.110983208253756 1.850860218774883 2.2223727468864176 +1.160509089034106 1.5918466923554795 2.4871227942757934 2.642715989289519 0.45854265927349197 +1.5560167068595763 4.848686590139966 3.775691487557341 3.2834320484788826 3.3292633292702356 +3.981993507449296 1.3205676587148583 1.423737811113679 1.9999565134863713 2.7230893377331364 +2.0285392741950172 4.812700919104843 4.807632424196985 3.434303467342981 3.104446567219461 +2.615447303865218 3.0526737813805243 3.618275053379813 2.0606891082348597 1.6177889136576318 +4.714171440227104 2.756512779103483 2.2507574043796783 1.7072455077864417 2.031706823144202 +3.8439485105852182 3.4148703280178103 1.0727443231211926 1.5958861548949694 0.6765984502694138 +2.2022656964226424 3.109273095673163 2.560812995877606 2.079598822816882 1.0267567884604951 +4.724533925136596 2.3446204150829972 4.64090526728484 2.171124141269202 3.4298406851862246 +3.628602398011347 1.5015833121989313 4.464471513084261 1.8183892984421077 3.3949906153118903 +1.8156928465479987 2.2155876738727596 3.9371762300896394 1.44730716829309 2.521777908106249 +1.8703010470254426 4.1185646704540595 3.1967715525884617 4.566717979808043 2.6327632886159877 +2.047925095138852 4.537807101630936 2.708477436909533 2.332092440312562 2.5181695876005543 +3.2865923425812342 4.5978401709358465 2.2873933556313997 3.6200313106395434 1.8695707492611704 +4.216150936668846 3.6288895222594113 2.561300717711826 3.5844065925679747 1.1796701233901514 +1.5782152236290914 3.5288008848358827 1.4679807619744794 3.0186281043162206 2.4918450196625472 +3.1053425282549605 2.019646209067148 4.431316147545605 3.4424582624583286 1.4685286563078181 +4.489100478677029 4.651095656179569 1.2978678017397565 3.21662213763068 1.9255805979065894 +4.176194459659939 4.972591410968945 3.517167711487724 4.838955194699485 1.5431689002923694 +2.9654710331375433 4.347564732554011 2.753545709067638 3.18724691764815 1.448544004264591 +1.1442434342574508 4.3481827069477585 3.8111595362143365 2.770039514821483 3.3688511041647944 +1.216049526448939 1.4240257662492133 1.4819211194195927 1.1273397922199582 0.41107424380531976 +4.822252381681157 4.483848151421604 4.615111460489441 4.275032412842984 0.4797615884016573 +4.221695906601218 4.3639635754721215 4.146779297315673 3.240578963359476 0.917299915441119 +1.979746128804884 3.8853942857554227 2.1229633073032406 4.922166091548638 3.38630050725215 +1.764564059951085 3.288109890427165 3.842545179742067 2.7439160665197124 1.8783444375249136 +4.8521975850044825 4.6445543061797405 3.791602398712646 2.621313093141412 1.1885675369853792 +4.350432746081041 4.06404460741108 4.710084413912313 2.7878657094783157 1.9434358527223785 +3.4665658796442322 2.7120590413243697 2.148073388207704 3.1557274962852975 1.2588277763844766 +3.655225145548544 4.723756434306339 1.34348741320419 4.614136247343204 3.440770685661758 +3.534247406513339 1.0900467387488817 1.4276880474401366 4.884335276751314 4.233500557718738 +4.61287020514192 4.950934152078645 2.649816615497244 4.014343611243289 1.4057813323337895 +4.837541512914802 3.1412938049986106 2.3152789458720244 2.249728344713523 1.697513819656021 +3.448151487746653 3.264681717301331 2.195434406621801 4.030572954944235 1.8442870297776945 +2.7799594528853206 2.006582245605709 3.547667912259417 1.700739605376536 2.0023127816364945 +2.7825880782109866 4.068154348855287 2.5177577798172113 4.283816179718609 2.1844090523710475 +2.7485337674715535 3.8470851473328542 4.09221499432733 3.739819689605937 1.1536886863382387 +1.281098541330767 4.4404270656180795 2.6102772363729887 4.671944467592055 3.772509575422962 +4.71032273138861 1.9926591365282125 2.082439342062161 2.4620122209306388 2.744042817669222 +4.223222044530109 3.5943729143754353 3.9134549265530136 2.405982819861942 1.633377905124196 +4.4428239042404964 3.5814044896602013 3.5937941786334 4.290890751640346 1.108145766546029 +2.7077441212535667 1.061903679474991 3.249688730488247 1.9967288483874914 2.068501686232776 +3.176852384339258 2.58862061191055 3.7321789572808246 4.123348529158518 0.7064207330320913 +1.7249639076790695 2.8160688980414603 2.2462649621652298 2.4117503127829987 1.1035830287127466 +1.4000381134557212 2.33324390480246 2.8040310481152426 3.626983020131413 1.2442359090013424 +4.925534357259332 2.7240430557050637 2.9845132465107715 1.5333002650355367 2.6367751266312696 +1.13570652781481 1.2518410688039734 3.647636688783779 2.542439954332145 1.1112817165117577 +4.006730837584271 3.080221203242205 2.6339755906529656 3.658173161854221 1.381086806606746 +4.37103667844004 3.0913677962535573 3.0194374046435937 1.9857225735032733 1.6450285104386075 +3.7889709019910405 3.1458610172243016 1.6952142082914152 3.0652307406156396 1.5134515594251376 +4.993008221790067 4.429490906420985 4.16138936762955 4.560950921456019 0.6907975101409964 +1.9754592413657885 1.1396027810160447 4.55756569095424 2.8197075773619207 1.9284208164420589 +1.2903049514875642 1.1249203518660988 2.37417727554673 3.4723699598318096 1.1105760836652396 +3.3713547289765557 1.8326450691249048 2.2530869830732616 4.660246317246019 2.856929029117772 +4.277072435676617 3.353359375805915 4.004647253884075 4.7886188317552385 1.2115515886191133 +4.823914720248233 3.7831520113757375 2.5097206607523033 4.772174599489384 2.490358376034772 +3.038064653593757 1.4366724610994424 3.973678681063201 3.1873123920935256 1.7840484563513648 +3.698234764912065 3.2898158124501506 1.7577960488231947 4.575595711961203 2.8472444542593736 +4.383639366215928 3.952413812133098 2.4840800677970365 3.0125617375629408 0.6820911623621891 +4.80585973382939 2.0022100786976975 2.6575400512196636 4.885344973921752 3.5810007207951964 +2.450495802195401 4.090034374777572 3.543763167905561 1.7627472620807452 2.420765248384438 +2.677623402053169 2.9213224105272033 2.379184333326677 2.675329974651563 0.383525028657786 +2.9974986910030648 4.303847767780958 1.9984581500398644 2.684430062843833 1.4755017368862666 +4.179521163517688 4.584179605693869 2.8394802366706866 4.213175167863008 1.4320566395251026 +4.215730587578554 1.8360858647374556 3.4802405298012697 1.3754911808488735 3.1768976736528707 +3.0494236242919492 4.055786629238481 1.6062987215783844 4.590916407723779 3.149715737995558 +3.869608890861892 2.9563202597947598 3.995938453568675 4.819202049579442 1.2295767857897513 +3.733136332876553 2.028705025166314 4.025069650230741 3.169183860844027 1.9072562929970776 +3.2235805562576734 2.282093461561088 3.7309622047817816 3.467769685331418 0.9775828618459137 +1.811025571895899 3.477567477099583 4.317187732284099 4.929365704476661 1.7754221445723049 +1.1255837974601168 1.6433008067338988 2.61266150806696 2.5837320253462948 0.5185246538611973 +3.975520686224102 4.388938875648967 1.7505624214980804 3.924021395103109 2.2124281930249303 +3.4981514964016354 1.876954835170873 2.8806127636115946 3.2124154670789826 1.6548026010415982 +2.83546338121131 2.2261534790261606 1.3813849847901087 4.228492339037514 2.911576693736666 +4.563429592809351 4.917394817275687 3.0335139122338877 2.678515308424484 0.5013136631273173 +4.740253325215903 3.3013074202755375 4.813462798875527 4.462021952438895 1.4812413665195636 +1.0745345815809126 3.536910410708684 4.950443817975216 1.4985879160827427 4.240118381755701 +3.195145355277484 4.888584389744429 3.785733612908625 2.4733433161642457 2.142452812653091 +2.194150458367374 2.588836647067003 1.107983183231286 1.3679550061033177 0.47261245882609365 +1.2120967093649666 2.704072757479303 3.8151357990684893 2.0666519825647933 2.2985186935768445 +3.1337448593142554 1.0305684994155255 4.72712942471453 1.0928574408239524 4.198962211514749 +4.688738664726962 1.1725903242581341 4.2126377096367165 4.939164535542828 3.5904234264140635 +4.839954170314079 3.056703637408526 4.119298874679947 1.7751855585473768 2.945309780308002 +4.906988535690193 3.244511836669311 1.4110984762089283 2.3303684254883734 1.8997068232850038 +3.7153031891200197 2.4633430145624806 2.3374359537396194 2.8366744464562994 1.347829125404317 +1.904633578801461 2.3402002367961696 4.027196976689039 2.682664286745018 1.4133246151839232 +1.3514125235762875 1.7781370617958294 2.7383172153762145 3.7809778382282113 1.1266033046129393 +1.7592054755649684 1.1291276408877606 1.892301371101937 4.436462267377055 2.621021316946303 +4.6423323300730654 1.8205847422531232 1.0035423583717034 4.371862990513878 4.394069108500949 +3.5934503422438913 2.150620917030029 2.041777592761914 3.8371926921335353 2.303317635350056 +3.3944235124302264 1.8396477626338994 2.897116600913483 1.4508149066661624 2.1234679707820887 +2.947472281661648 3.555057499259599 3.3660481410853804 3.3372593994209203 0.6082668725897972 +2.011272697541266 3.5942838733514364 4.088183880704728 2.4277920772699364 2.294084855373344 +2.6902893161595705 1.648107729379202 4.2744723598557925 3.613387476145532 1.2341700382419984 +2.2527706165699297 4.198722909931683 1.7720199979606441 2.7162196749617618 2.162924723167425 +1.6385887206699468 1.8403982282244087 1.6893160993333294 3.858032030001963 2.178085366847519 +3.2127097193217167 3.0320002573995612 1.5119194613450628 3.2587059030133054 1.7561089893352848 +1.3096013148310974 3.5312535535825362 2.821563645228543 1.8333110096674736 2.431539006810847 +1.2260582786863354 3.476099168151582 4.744355093250045 2.1440807420565045 3.4386204654978347 +2.4622097905967153 3.6560240380503104 4.223143765377584 1.7988838287171385 2.70226362480053 +1.9113897460400548 2.606615071929118 4.414825069606126 4.436553966886548 0.6955648055606156 +3.3799200774212936 2.481329658893374 2.776135104583678 1.6541552660461285 1.4374642598530676 +1.6880324915915197 3.3080398665963298 2.8239869169015126 1.659699001771692 1.9949912893011137 +3.326093584416975 2.5305471130073114 2.559397665724896 4.22473049363545 1.845596818346014 +3.4539817697860142 1.5785633339324576 2.7614386461400118 2.2550254317246776 1.942588132691506 +3.163685541081546 1.0250425181295624 4.65868901296262 1.839610280197021 3.5385023500278328 +1.8705253106504625 2.12263484147202 1.3776894450982202 4.585417954533615 3.2176204570731595 +2.8189086426160492 4.289875688267936 1.31078839957464 4.113165728462764 3.1649743668567014 +4.195524911093559 3.5983041788730397 4.243728322324541 1.9645658802078558 2.3561099381288018 +2.59592755465634 2.391767702206279 1.72166055320214 4.984329086590188 3.269049893181954 +3.168324044544004 1.3833650259257642 4.333037032455736 3.9989424490681564 1.8159564666575878 +4.9409841965417085 3.071489502095818 3.7720586594829557 3.6571582104898024 1.8730222971817934 +1.5853659152320008 4.542054315445406 3.74455352104202 3.187275272355761 3.0087481354236565 +1.746256223224063 2.8732999376986994 4.9321510631379315 4.951633026407402 1.1272120835182786 +4.055359535196651 1.111415015055257 3.393660332968176 4.53560928383905 3.1576663446389697 +3.78567752743945 1.5088624020978108 1.17794429759833 2.600853615996138 2.6848757966371144 +1.8189411144422336 1.6461210523914866 2.843250021104412 3.1320105100333175 0.3365254727560526 +1.8659652856466047 1.5211390708023877 3.730363049689368 3.375730004477 0.4946409962795112 +2.0307699229031324 3.677747922849587 3.145524256926913 1.3479707251551059 2.437977693067129 +1.1314532604645047 2.122451055134154 2.003339390054539 2.6540002023261082 1.1855109116604565 +2.428191826656776 2.8188817423047694 2.280063091488655 4.398045266751746 2.1537147222696906 +3.8200399267717375 4.589407243268214 2.883198657363909 2.299708676359509 0.9656016909810712 +4.09554861750653 4.4532391975736205 3.657178294303409 3.216720683651152 0.5674023773744928 +2.297740279389885 1.3307230652713078 1.4523382172304777 2.931106992539087 1.766884088792861 +2.8628858409240467 2.1190655854292384 3.049487787461043 1.0858782846887758 2.0997692377644532 +1.8033435606558776 2.0805179146327246 2.894524765628336 4.65297924375154 1.7801650974373227 +2.028550044266016 3.0884555931015454 4.797572941358748 3.9725488654848435 1.3431546814212931 +2.369264892771984 3.028587216178276 3.556700973040699 1.9666645164692267 1.721313992090994 +2.412995552834197 2.903301136036896 3.934511826313536 1.215716626524578 2.7626521502562023 +4.367219217639658 2.1424424840782885 1.9167568257043976 1.037817839315939 2.392104775295089 +3.3156581595817367 4.150519419239929 2.775628636436337 1.4067019668743264 1.603419330529666 +1.8564271277121618 3.535103360483241 2.8439195866750184 2.3263353528299504 1.7566580013182669 +3.64384266122686 2.723161372440448 3.4075261225674365 3.469476234845996 0.922763161343546 +4.826456369480864 2.124375200974828 2.3138095825962792 2.8513028719917086 2.7550211754794307 +4.382599012065318 3.112077336382215 1.4901689952850607 4.219419327122145 3.010487120419789 +3.6857081561279794 2.3163748583438024 2.469161553846463 2.5287141104262267 1.3706276618453588 +4.64564761573329 4.071600095949029 2.8739397795679933 3.026213865392319 0.5939006248389505 +2.5149785085583547 3.4354251591191485 4.4510154790777845 2.107488685742044 2.517804572958569 +4.971286031582284 1.3690394469506564 1.9499174679036013 1.009121424687819 3.723073683318758 +1.398625295524885 2.1857270883707396 2.5289589102416086 1.329517869154623 1.4346386455637496 +1.407209234934323 3.1829508834430627 3.6897621431601615 2.1873553143443467 2.326044858019924 +1.0733350898892384 3.5635881839823598 3.7867345834647 3.04180059814084 2.5992858856099024 +3.034795738276151 3.4622876336692414 1.0975715868798304 3.1098169758190544 2.057153573735793 +4.398509604778358 3.687902005290573 1.6657299518328266 4.563497288538642 2.9836250934272734 +4.489774182136873 3.9059341651119452 3.6798272389177207 3.8269535384598257 0.6020924459720629 +3.8567204210752415 4.692641697307516 1.4161769542126543 4.534316718181811 3.2282440997705586 +1.5021573268445776 2.294422604549177 2.6382837653681817 2.23216302196931 0.8902911481505352 +4.880686299923514 3.803373287891795 2.3611703946094655 2.9072071715435652 1.2077911606140506 +1.4561904880925884 1.2271823027268858 1.271225311908342 3.339508970969861 2.080923363150454 +4.030129519797409 3.653783322843654 3.9963099434784515 2.864448987509428 1.1927890356675261 +1.7357079644397468 1.8212449706712084 1.5401873887915456 3.9374094770770243 2.398747656590587 +1.7458006219655577 1.9204000755772221 2.2764797958137706 3.5758157277283633 1.311014429045636 +4.127847010561144 4.729181104020906 4.21819413861089 3.0615403205791587 1.3036298350085642 +3.1685922620983846 1.7561415969060965 2.461216812984194 2.096519877519286 1.4587737097780562 +3.8577005418511128 1.4822953379461397 1.4251693728769044 1.8052971025474873 2.4056281868990768 +3.099287840988834 1.615949438407137 2.2338516390549232 1.4139787682312956 1.6948405060318206 +4.219957425397617 3.4406646930098264 3.958971773554198 3.344051195890317 0.9926854887560859 +4.09000669707203 3.6460813490719763 3.52731150670692 1.927455570042377 1.660303807343027 +4.580824429921595 3.1728032891385136 2.180482803191968 2.2950243968576935 1.4126723999468433 +3.186491561961753 4.805042927312101 1.3906631000881036 2.603779005740305 2.0227107363199113 +3.008089754088555 1.9364550791529411 2.461323309955831 3.6882048378310204 1.628999435225721 +1.420845760389506 4.952766482053516 2.3002443420694534 2.7400069313394333 3.559193043239023 +2.846355723244278 2.433189939590776 1.7665223846702607 1.8689260535400707 0.42566709548661424 +2.965419688247362 1.7393851549534278 4.690213464215599 4.211435494694108 1.3162024999704254 +4.530792409306031 3.199838264774265 3.2056934172062093 1.1310758048767062 2.4648483061304307 +4.19988314216625 2.29691936739225 4.543464580366175 4.922615479190707 1.94036762810081 +2.0813324715170016 1.6013969051560637 3.9939132206591115 3.971007626193733 0.4804818561777402 +1.8223497152500334 2.2722265935996546 3.9575411798927376 1.626755716713871 2.373804979571726 +1.9420035627891021 1.298865181059024 2.8746139588143613 3.0631147137233636 0.6701936381790322 +3.1058246293159297 4.713823983930946 3.6606215751519926 3.2031966690013043 1.671795283283595 +4.075904005901165 3.8090949087032993 3.128815052007751 3.60049865541462 0.5419155986594488 +1.9938804518444413 1.2437619035858356 4.626271091656367 3.9474184861536306 1.011691008381241 +2.7283794949779345 2.6029016694591753 1.3635972440667903 1.610295362301264 0.2767754437036395 +3.514764628018194 2.0630609501848434 2.8142287343715533 3.915030195687699 1.8218692119553035 +3.6773453155435276 3.5445256857145604 2.891482807482595 1.8421950437551793 1.057660562362039 +3.049921593461024 4.340810011585775 3.1098630379535512 1.8183948343809484 1.8260019246670218 +1.8145057809463907 1.7746562476425782 1.332403397472072 1.1017807338861552 0.2340401637838997 +1.516152673150152 4.258944158516957 4.685127908673568 3.096206773690006 3.1697910822951876 +1.759742833446269 1.7587890174712033 1.5378023121893802 1.0187322773751224 0.519070911154718 +2.406416557651364 3.031536631569969 2.357796642257267 2.436510954676595 0.63005638620337 +3.683371470984833 2.8605322815308107 2.456830446394636 4.137110721029165 1.8709372338555992 +3.844791138300291 4.813152445631909 4.690779850131227 1.643118479364973 3.1978060373321333 +4.275311182239468 2.561409386898226 3.1883552637812493 3.032909558445417 1.7209365855200147 +3.635796327548926 4.549813516354737 1.9170976535086246 3.27583680900057 1.6375590108754687 +4.523099337953926 2.8610935740831924 3.696897685213004 1.190388295139178 3.007466123112246 +3.1776822805564753 1.6649840858070624 1.196130489114191 1.0553441998930668 1.519235533954754 +4.038670115938883 3.5161675468209728 3.382959669675902 3.9358073577541917 0.7606901477923365 +3.935790918109951 2.9754084645217733 2.706408908048332 4.149235854112833 1.7332293712748648 +4.718034941247957 2.1414421123189875 2.437311601335169 3.878324284192109 2.9521768507734674 +3.0683693367870197 3.6877351238018976 4.444127949498876 1.4084789137647573 3.098189640141165 +2.702335796774067 4.624933374065247 2.703531861219276 1.5809191391111388 2.226351447558304 +2.1827572345651043 2.979850492787921 3.5344503917047163 2.895214533924151 1.0217534654586307 +4.756638016101228 1.7281665401301516 4.56425059222042 2.338496370667276 3.7584067549338065 +3.24587918986385 4.346280568303017 4.64745013260297 2.1826818852708096 2.699252805264388 +1.9648925978197513 3.051620587213112 2.0411705385470436 3.1058717209752715 1.5213698862521905 +2.898608034329061 3.3051645750352594 4.145333081789654 2.8922513201045428 1.3173845764463972 +1.8524734887100593 2.167109178426814 4.487542278961037 3.9030455228169942 0.6638012316849423 +1.694727878565125 1.5861208366489357 2.4272602387492968 4.214989460339537 1.7910251978354275 +4.191092104346571 1.8765782076824609 1.3019389660366305 2.3060068832099025 2.522920323781144 +2.1557805180501353 1.715956291984078 1.9823511434055647 3.4318014244656303 1.5147116778779086 +1.767998129008499 4.8914980299798465 2.1667209507464533 4.447063712380425 3.867326562614601 +4.795628584153956 2.665397059097226 4.757876295520818 2.5795024930775217 3.0468342215349997 +3.0710140831984574 4.757988749191947 2.638611792805547 4.953524840830702 2.8643857881963033 +2.4556154938105705 4.643744114397297 1.6151440382971538 1.7083651523239056 2.1901134756745275 +1.3597001445691306 2.75643892608112 4.871471148787538 3.7488167558509784 1.7919911020313 +3.1420174248816073 4.946349910903891 3.8014945648312217 2.9112605412166115 2.011997101617299 +3.99556525462854 2.047667925245434 3.166625609026698 2.7880889010177503 1.9843371803017973 +3.1909482822665987 3.0952434548788825 3.212195199945183 1.6577637125275717 1.5573749269397654 +1.8643698221715344 2.629661715332934 2.8845553495931955 3.0758441595298076 0.7888365423492526 +4.27084875993302 4.877049707365307 1.7885184175934405 1.3897867660051357 0.7255801255865133 +2.7826147290692744 4.556063951798333 1.301988674046766 2.245392853179998 2.008764194922925 +2.995297252126296 4.017514292369774 4.224279569781747 4.369544587032913 1.032487095609973 +2.490889686262436 3.4204623792922613 4.056304892903983 4.630983284315192 1.0928680822412637 +2.7910287812751093 4.687461477840377 1.3112841551332597 3.451409548973331 2.8594743702227747 +1.4846159469795244 1.581351243838459 4.144720028491487 3.7181772100012433 0.4373745462003785 +1.4093580513404462 2.55486669953298 2.973390446764211 3.6275956847770714 1.3191567596488862 +2.124550523141132 1.3854417541573087 3.6313604800414745 3.2831962928441136 0.8170067769826523 +3.649409827262831 1.5385628081184541 4.547614016305977 1.347915535841509 3.8332421661196063 +2.901158193497907 1.7607306724878646 3.4586719780111816 2.438712708532481 1.5299973340083426 +3.6723683142556003 2.150950703346079 4.827974971800014 1.869728881893121 3.326549484861913 +2.093529249122417 4.465146148587928 2.4667743530176747 3.5755744609439364 2.6180153546470444 +4.187979376055787 1.7988235573163673 2.3567943048532403 3.629445390353161 2.706973644430354 +3.961149748788133 1.4653874176113266 1.6883507123682278 2.97787630690701 2.809218018006379 +2.3298613346677413 1.0358043933765306 3.346181119690469 3.2235733071292274 1.2998523158440025 +3.906487954758457 2.6521899035018004 3.2953829122025287 2.3943628745456023 1.5443771267554878 +2.1853363477088434 2.6569591870382085 2.943303020187295 2.4041432165889223 0.7163249237555037 +2.3411700394641817 2.553552751523872 1.401627703742144 3.7946166837834716 2.4023951954208247 +4.914588975643079 2.6826248222122726 4.746167824871296 1.2359154198153903 4.15975190719361 +2.358681548589399 2.0143601091961134 4.434613352839477 1.7070103113676272 2.749250007815286 +2.981329795552084 2.7187962385760454 3.2244249629179085 3.4356643577887116 0.3369658001695038 +3.2398761300047685 2.717467739945631 2.476139589011054 2.2448109938910807 0.5713347923278963 +2.9429062447924643 4.0668805806655905 1.9956246561910933 3.533501909597832 1.9048319490829864 +1.7862353929504087 4.276988500153527 2.4904365069098535 2.7935349830925817 2.5091272839986174 +1.1514991467046296 2.033290851182242 1.1247022749690614 4.445008417835935 3.4354023770797255 +3.5809215971529564 4.878052175154486 4.887203685323818 3.8588618346133376 1.6553050166991088 +3.256907389737408 4.461626665062284 3.002561389756817 2.431352373064679 1.3332772678965519 +1.5774045814944175 2.0965801057756916 4.499949117529694 3.3102017435965485 1.2980916912119702 +4.98380550748462 1.7497388538627123 2.8239311299001226 2.867383503418781 3.2343585498261644 +1.871219680134446 4.2285926485653285 1.245547505241222 3.0269660662893414 2.954768925302854 +2.70366765017211 4.451530796021647 1.7100586275625167 2.2538032351172688 1.830487305299851 +4.70039786431201 4.290865116476965 1.1433154216736532 3.6889281083492897 2.578344628266996 +4.82214425774531 1.4251992581488087 4.889376062509439 1.3691079660833814 4.891985568355533 +2.3305873909045336 2.6426511412686824 1.2299520568239077 2.375802220768056 1.1875842633270994 +1.4888193533801548 4.202605307156137 3.303531100822469 4.984326536362175 3.192132124308599 +2.0716535495854194 3.3285161263216554 1.3223697683501232 4.193003908170407 3.133726839005243 +2.2469213429297152 2.9135926989999064 4.839767767152347 2.5494590807413573 2.38536466311843 +4.000542386110503 4.842650784291043 4.052225860514619 3.349536204720846 1.096776780683182 +1.0118356431385962 3.278706291606997 1.469462618840446 1.4897493604888523 2.266961421986324 +4.692201665025794 3.851293518605593 3.423383562555111 4.205721402249342 1.1485551820149065 +1.539034209018519 2.060729698874196 2.6799800654541532 1.0371990358324004 1.7236286419704394 +2.823508384227136 1.87817793062703 3.8414842766347053 1.9520712262327544 2.1127071121035654 +3.248906491604648 3.612161287042894 2.532440488491365 4.940436234881496 2.4352407603852733 +2.9708023725607275 4.230635128956964 4.967888263983579 1.5639790688145152 3.6295697242297806 +3.4107965166830057 4.699598752269594 4.879084047679999 3.080260978093618 2.212865933157533 +1.9758455335018872 3.0554227558872475 2.6884123856079953 1.6759123906646751 1.4800821662507502 +3.178364680173449 1.2195026887561768 2.7432033021900932 1.8933968548338456 2.1352543875115884 +1.9748973078386722 4.950786701935746 1.3954642065733065 2.371809262238298 3.1319590280878393 +2.10873569727394 1.5130823956347648 1.0638784004752986 2.9193047436709723 1.9486943759292068 +1.7152796807452715 2.3537239561268533 3.108408925863775 2.5137843513768034 0.872461734032688 +1.101832283396504 1.0037947690095295 4.83426108643927 3.1380779385482995 1.6990140156621714 +1.7485365091099263 2.7280435095597944 2.343684350468721 3.0801977499546895 1.2255145660303985 +3.9719276273754502 1.3932756515609244 3.9722479531962978 3.773313337743081 2.586314171479884 +4.3457380177874985 1.8193355031277445 2.5254495074986205 3.008493293397692 2.5721665897011485 +2.069020065846361 1.4222761742079877 4.402706104569296 3.575290392492472 1.050187803187194 +3.2214149996095656 4.014609364606322 2.441501222095155 4.720861637812838 2.413429345434272 +3.7846732874397957 3.102513874538865 3.606544663984433 2.127070242615666 1.629167280574279 +3.552842298666337 3.328405472763071 1.0449014744294747 4.101389262271751 3.0647168688233672 +3.133404615212632 3.624363085816066 3.9397986174502257 3.7574720752503388 0.5237205245623185 +3.801477707492186 4.625319246335167 4.29015860137816 4.9199369025859525 1.0369838908080222 +1.8191398626553639 2.279067220931486 1.0292993928086558 2.8714511122293302 1.8986985364336801 +4.724630089134333 2.6362580817602055 3.0438606510472574 2.491504691440761 2.1601839614478804 +1.9781018806437118 3.5017991421769743 1.9914600967245253 3.5117728799326846 2.1524414750673486 +4.850322562948538 4.899955579248285 1.94833946891832 4.59895541598744 2.651080597636394 +2.485145477854712 1.2915159290799054 2.573106153203197 1.9672983018731256 1.3385643998110461 +2.2778615339114032 2.9628100950504996 4.86203948936253 3.6620132726627737 1.381744351236237 +2.4860966477742124 3.6578304994734547 2.86493427665795 3.235280001493529 1.2288678428219741 +2.3796868256435872 4.761428195344009 1.72403413282029 4.739388886352733 3.842532529698759 +2.9668448924804305 3.2328176952818843 3.2655192644119047 3.8168339297385923 0.6121187728164679 +4.501100604191972 4.514144899285377 2.6009462283335196 4.467266531804298 1.8663658882388903 +1.12130523175114 1.2241534993628567 3.4072614791324543 3.4227392706606024 0.10400638529109686 +2.267796292747882 1.007270903877517 3.0961514048219088 4.525726103285749 1.9059402074762908 +3.874597535417972 1.2111411812494048 4.3117138830713335 1.124987501240199 4.153218605277053 +3.691267723344835 2.3404524450009885 3.12978137194115 3.663270162807781 1.4523471369433354 +3.448732107555484 4.193273688880746 3.63933581186422 1.0063969673238566 2.7361851409237397 +2.456185185514417 1.5578532229332929 2.758217856230809 2.1583809813310095 1.0801872946320057 +1.5489302585787272 4.733418115201684 4.6726896858126885 3.910295254003053 3.274478306331164 +4.587730914463641 3.3427484461626435 3.0493111245160005 3.4847694965701925 1.3189409919207653 +4.235543890897615 2.5153824471515014 2.660398847144015 2.6769034713956428 1.7202406213005208 +3.8687685461940324 1.714667653352651 4.579346322576088 4.45706118997423 2.1575690742582245 +3.2930915857951475 4.637171459781914 3.906648105814764 3.4793224037808823 1.4103751143844792 +1.592336835266929 1.8887424284456067 3.36249634959039 3.7448467477921836 0.48378518236162826 +1.709252090429902 3.0335033558475533 3.6258203289483864 3.178234470585196 1.3978463844668214 +2.474355411595296 4.3994033323089035 1.9668357441940079 2.6751941786857882 2.051238935073003 +3.4730335965399752 1.4734214946549833 2.4609556108462862 2.969065794623433 2.063158868546715 +3.6584878385764714 3.1248570267167604 4.30572296559729 2.92571325159806 1.4795907049242678 +1.9277230287392855 2.511140091991629 2.3242869343117087 1.190488388523876 1.2750978833503699 +4.985511704991146 2.929101299569425 1.3496405309284447 3.5881357094656385 3.039684921149064 +3.936815331472048 1.3793911741910239 4.613092624953737 4.108071019588087 2.606811297760284 +4.409280164876068 3.3770142747911898 1.943493842073027 2.2913940833442417 1.0893151269074048 +4.876414981991513 4.8937546938620216 2.2697085956859753 3.7332137236390195 1.463607845412359 +1.7107726818417741 3.9267422171748914 1.8250569880479537 2.9870474865325187 2.5021476575320007 +3.377986206863605 4.002010009978781 2.073268899494791 2.9787698484673713 1.0996989021748502 +3.6202033077867917 1.8850755540538584 3.977422808084772 4.753614561472123 1.9008266516967887 +1.3112947326720965 3.2439394030521553 2.202662237682715 4.941710158841243 3.3522378997247944 +2.7170420305534284 4.769067618458102 3.609545310754593 2.536828255588688 2.3154979796707518 +2.8879857051543794 3.1642300383400137 3.479387827126087 3.830006163438107 0.44636772886868115 +3.9973469827113415 4.129977757036823 4.393243959788446 3.59258838709623 0.8115665520345682 +3.136623954265045 2.7829438244862885 2.278303222465954 4.546714127575699 2.2958174292876885 +1.0522715180855005 1.7946680493143279 2.571725110742562 1.3486877450197814 1.430724644204717 +3.709439066926744 3.9872720168589164 1.8751208099492436 1.16444172747795 0.7630569482877755 +1.9229174582826003 4.231746088080149 3.9825517606491907 4.092770236906189 2.311457928295741 +2.950317215052375 3.1293562915471753 1.5897837100662606 1.0212778894417691 0.5960317600564902 +2.509793982953434 4.560857595963332 4.061352059196948 3.8867821953528163 2.058479191533346 +1.0943020450128698 2.466964137604888 4.327565974658029 4.031969771916114 1.4041290309350267 +3.7997684028767384 1.7653148100580252 1.995368314800276 2.547559701345405 2.1080599490307677 +2.0748043546772976 3.849138452228899 2.486554545488962 1.653650956486013 1.9600994562287521 +2.7524223005203283 2.5307564777370035 4.39435448605159 2.862580688844574 1.5477295315397352 +4.815591068620709 1.9295268322011605 1.3161768844325392 2.217208292453954 3.023445778409297 +1.9944691143118454 4.18428761263632 2.0470121015771436 1.6878087828786414 2.2190836126131153 +4.990319818859925 3.281723526929165 4.270820596514526 2.1662109509006333 2.7108454491561442 +1.2486263693233428 2.801018042095833 3.293912971166811 4.9487957330738395 2.2690431598694647 +2.1307192337966425 1.930311195284597 2.186537084715371 2.0558959797756167 0.23922892843493118 +4.85838132872316 3.0898500279466226 1.6626749244632442 4.216104976983463 3.106075980226459 +1.5956835309916526 1.319667829845364 2.445408742029887 3.8592010718633265 1.4404837448493275 +4.498270479906999 2.546062810906892 1.046314732578006 2.4214285330125938 2.3878971391264927 +3.7088919216746055 1.8169838922856294 3.5502967561078655 3.141957951922379 1.9354732162109896 +4.040424887666695 3.895484456771543 1.4350894599007327 1.6585809385655477 0.26637599280689256 +4.714169326004395 3.3639435686017336 2.414775456774866 2.437761303746204 1.3504213953853739 +2.1269127189161416 2.0871713746684235 3.9548138457429496 4.863967733351625 0.9100220688514011 +3.2828752446604588 4.558306924879064 2.805596657566861 4.258443726873018 1.9332590560234666 +1.8521477908329693 1.492607957207738 4.541273128344667 4.2367411395103645 0.4711779113950851 +3.6698896058214876 1.4743801949747843 4.172257782510007 4.908891362959487 2.3157915720034605 +3.0903609069395186 4.800663837891351 1.491554126047188 1.278951261836561 1.7234663018153245 +3.351382060157081 2.9393989056770438 4.301708277661855 4.253497926721802 0.41479435569096823 +3.2263431551848907 1.2723368991517683 1.1333259141447845 4.185902287587948 3.6244120853346677 +4.364440828176814 4.8775484188132 1.337466813765146 2.8653588185530063 1.6117485467228887 +1.2411762889609848 2.0723581860450846 3.701402060184914 4.427393709330117 1.1035973997200677 +4.170545811010443 4.0199909946703585 1.9445141340228727 4.080720715421265 2.141505384334348 +4.9059066244904725 3.899920795249419 4.161296232783089 1.75191815306406 2.610959635778456 +4.328491769343739 1.7869443925891466 2.178619302566519 2.2220879587620126 2.5419190766740765 +2.1606670214621535 3.635950881853978 4.331786185842083 2.586930733857392 2.2849470490699133 +2.4279360137915753 3.0726940266935867 3.236704344890088 4.464527103259099 1.386817082808774 +2.3165133571684957 4.389506744055516 1.4715990793463676 4.361346303228817 3.5563943257200323 +1.388085006558057 3.370549005613262 1.1548560454261447 1.4611451977682566 2.0059851824957247 +2.2809233394569386 4.0753434331559735 3.4109636977452666 2.6802371585723797 1.9374996123154289 +3.954467747509948 4.982904055418922 2.9822290703990437 4.403851581206114 1.7546201305863445 +2.5603752228649364 3.3943426583089713 4.708757330941241 4.074983485143228 1.0474592932418443 +1.1855986524395132 1.3944643577655995 1.0716877864221659 2.7289747194825877 1.6703966179785514 +2.1093459303464757 4.312627944738059 4.40732956881217 2.8411636755793945 2.703206843744491 +1.9025720331011193 2.4924142610575477 3.878417365613412 2.25235050579691 1.7297419710679693 +2.810591145441265 2.620639455146022 4.003225798496764 2.986640429108628 1.0341796062096917 +3.2126644525464485 2.290050493800438 3.1187618980140273 3.495211509744965 0.9964591446945326 +2.181497459383518 1.2326577459247812 3.688050519588391 1.9496280183431405 1.9805074083861063 +1.324225477649425 4.63617406547541 1.0197707759993966 2.54092564936165 3.6445734451587435 +1.3845315561542324 3.445376917102913 4.514145512582061 3.3073803559510604 2.3881720509633184 +1.0204975145421415 3.3283839868907386 4.674308340830408 4.902003398893342 2.3190914187922678 +3.3797390345538507 2.752178892889934 1.8807051860370736 3.2161938597229347 1.475588604235088 +2.8660470375960037 2.2768239696590538 4.744550546592406 4.313674897323554 0.7299572925328485 +1.2202352428267407 1.644651034078394 2.728380812443225 3.092064547409104 0.558922734322463 +2.496199144728026 1.528017962638764 1.4442374755887069 3.411139832770136 2.192277282653274 +4.116075402616271 4.87470257372717 4.7304933043544075 3.368968403415973 1.5586100348140772 +1.983892394564863 4.065015730162745 2.1478770380841863 4.506212087891611 3.145285129383383 +3.342407184002334 2.4975296729795793 2.4250774749624413 2.7220376229057464 0.8955463908131809 +3.8431187449974353 2.7995156680652045 1.3866805238606714 4.029401012445209 2.8413164137362314 +2.531629900769341 3.274901176272486 1.7768858081255479 3.5311633691148794 1.905240654085134 +1.31542299414909 1.4573978125511702 2.8338496148238095 3.69549462233721 0.8732634012902816 +1.9354622016728897 3.0118258871980546 2.493189291799746 2.341085109639191 1.0870577104036598 +4.424489362162943 2.732542000199955 1.0576950826212395 3.266538897752077 2.7823869025164822 +3.3350801899777958 3.1823687555560523 3.824308031353495 1.0785203911895973 2.7500310083851733 +1.2657889170362613 1.973112748985069 3.4722877748688483 1.9939343509294263 1.638851991278089 +4.164857214859769 2.2292900009689065 4.987951540685107 2.571781168047857 3.095852016666698 +4.0356987608329975 1.7132544088431727 3.211754012847768 2.6750129302992 2.3836607891612527 +2.9213189215191586 3.3305459644601405 2.0569356084315245 4.781226374593833 2.754855159762748 +4.196406083795415 2.4996708544978086 3.5659447772908295 1.4445378121329124 2.716482643080961 +2.042382919103394 2.925639597781992 2.129809588472828 3.0088715725367305 1.246151007003851 +4.5864670664142 2.1133427445008155 3.0715184025941227 4.040431739018532 2.6561507798204187 +3.135768836802248 3.5179083151367365 4.174652681768789 1.9369950298380152 2.2700533800212934 +2.6450406481702706 4.410689168003278 3.162825987572243 3.145602158090724 1.7657325267124964 +4.778950889615059 4.268025402020264 2.6353674077561853 1.8377494226433875 0.9472271660216353 +3.066781076907364 2.2882473156482193 3.414791034038249 2.7616149536841403 1.0162449553956308 +3.024534201893958 4.84268006490523 2.6659638653045863 3.7239796685853435 2.103580713730003 +3.3017748410668823 1.6498368242149413 4.073320265070958 3.627413404526224 1.711061699589347 +2.2607272917071755 4.6938042183295 4.916960513808743 1.915175688200757 3.8640102833859413 +3.870233545998809 2.9889747893894696 3.5602160833913867 3.518868650075497 0.8822282053655114 +4.006901000154786 2.3567040854066468 3.22097878303862 1.386617770924341 2.4673933979422893 +2.64741116713114 4.415509805797473 2.080417854493886 3.7083340100278184 2.4033900652000124 +2.749208683073157 3.5665922393265297 2.094289305248653 4.544805915759949 2.583243607642373 +4.47529784613805 1.78600779902012 3.510510683240284 1.787311033371204 3.194009704248952 +4.770517210419733 4.917631755011465 1.7100637570715347 4.86796394263256 3.1613250815436227 +2.136581366396603 4.538037733618958 1.383576853499826 3.475714892098265 3.184970055781265 +1.0309110567960018 2.0506311443533787 4.818279184772063 2.6461777101047685 2.399552848599059 +1.4388524984708209 3.2837721963136843 2.4379320594168785 3.7629633481690745 2.2714393251110425 +3.9202787470496636 3.8202913726324685 2.6287910091029936 4.599903928515353 1.9736472876674693 +4.212721424572294 1.0511343959777824 1.184071052769427 4.256860040005758 4.408816700596426 +3.346474032203769 4.386752034691556 4.184645578792731 3.387752760081369 1.310426070777638 +4.007219436107189 1.8387474239409265 3.7720560706614346 2.1304482479174762 2.7197696798152884 +3.402364056025318 3.9520276388886098 1.0760095351170365 4.1293260147017765 3.102397714483083 +4.554642388815543 2.17704169713621 4.846841467928533 4.0254400532167764 2.515489084286496 +4.967311105997306 2.8535047215434974 1.5831507596083192 2.0446286457161302 2.1635940632022947 +4.891232991728962 2.077969377864205 4.80044522314138 2.928742457692628 3.3790121934204222 +2.2089513677562813 2.51738304193499 3.7115733406809674 2.9777029451527657 0.7960501586391402 +2.183328086082471 2.800211986582937 1.2434691306027559 4.424119145969515 3.2399197932895243 +1.3187756447529138 1.9576728371612298 3.0470813544356434 1.559801005826765 1.618700854952939 +3.1933964463960125 1.3645352578526984 1.9791701513818603 4.832241336508973 3.3889155248195095 +4.075101596859204 4.605032766470954 4.648735760521928 2.7763978844695547 1.945886987115745 +3.703154707092237 4.443435616750623 2.0292329119698067 4.50986947068435 2.588739763212166 +2.7818017989638952 4.191159545242886 1.1417640645974365 1.907256288479814 1.6038290438263627 +2.9205933861618045 2.3586085014961444 1.3706293333775048 1.809823470956359 0.7132450498084854 +2.9340265774413874 1.6747771339408053 2.7367377768942176 1.699300118436677 1.6315593939977762 +1.8522325696452264 4.6208961034790565 3.377434094210144 1.7117745505254138 3.231086423952361 +4.581635306684824 3.0041009100965206 1.4346368584867224 2.334973079388715 1.8163755347084212 +3.1147197409704432 2.599630693994736 4.360544298514391 3.436843306379475 1.0576106321257224 +3.27157465727884 2.746736454556409 1.8975785005787174 4.238001788583447 2.3985487916804575 +3.171661130860309 3.908683237526421 1.3060445466741193 2.117061965241871 1.0958790256843378 +1.8681714628527053 1.0119588735039775 1.5766688819324592 4.452022941934229 3.000126825407205 +4.591089286761203 4.941131737112791 2.9925197665326033 2.768777091066029 0.41544013031131727 +2.8930992955213837 3.8906686996566413 2.9393837225534813 3.473861638600909 1.1317293664163592 +1.208143769948253 3.4363013668439177 4.090288755264623 4.888289104424233 2.3667468884235854 +1.6167269030335385 4.994460293484659 1.1552979394159046 2.7344160661964705 3.728632043430323 +2.932614924350454 1.6086024648396977 4.749160920440692 3.3540012727452297 1.9234030871082248 +2.3114128832401177 2.187528364332802 2.1780505990548913 2.6322663892346823 0.4708071346884507 +3.319656636239652 2.7690880176124004 4.796114528145859 3.761980796545706 1.1715623665218922 +4.260679028522252 4.944772379679152 4.274635799384923 2.7942356033622495 1.630818338589877 +2.9761484330119425 4.8393230149638935 2.812962500916644 3.9134571918100685 2.1639103695662723 +2.135222371863016 1.910271763520711 1.525973453417846 1.274733357580347 0.33723042856481505 +2.391153700988957 2.4756100165910624 1.5152786409641053 1.92728914626765 0.4205776096341372 +4.157656426679898 4.503245504232233 4.277717060105969 2.7479939718226545 1.5682743820360376 +1.4025596710409434 3.533599876365801 3.456838070247454 3.2264005339251236 2.1434630425685715 +1.0715947035480098 1.957313041703864 1.4526852798535046 4.328057056616275 3.0086973641676655 +2.00491381285858 2.294839922701986 3.168341741891751 3.31033588822866 0.32283043035451015 +4.986185281075629 3.167657744152676 1.7822325512016985 2.2767634804106645 1.884569776498431 +4.5605554605775875 4.286826346813836 2.1085729458132287 4.041695421929965 1.9524062424069404 +3.2066480752277204 3.3823010912072875 3.782546056488856 3.6967587115465497 0.19548260939267273 +2.9513593926336443 4.129887902411898 2.3222939330832757 1.0269295402380658 1.7512562230043298 +2.414656957103534 2.2337595598317024 4.641914291993707 4.35023704023517 0.3432192994764954 +1.9993240841456492 2.4314785858553503 1.4399858723472412 1.9063203996142204 0.6357872322320393 +3.786155448721751 3.9306603600614443 3.5688256077543543 4.84265711564216 1.282001708223906 +2.9428886102756344 1.0087411214594413 1.723800215844308 2.8804971284006085 2.2536357860158467 +1.34324683702412 3.753337215013779 2.701579067036204 4.570174333363598 3.049620287743948 +2.9302603988757965 2.9204286371490933 4.592118081799496 1.2624208063179823 3.3297117908142844 +2.5671947649345594 4.547297873994616 4.762036233593497 2.3073598243159905 3.1537667315089766 +4.86771380703102 2.6058453051764285 4.034981552298778 3.734503709200365 2.2817396989742296 +3.815477316772388 1.1338771760420254 1.5711683783504302 3.698964341338592 3.4232287354008086 +1.7291561639647095 2.1432212726496895 1.733610641983097 3.089490767156158 1.4176956048706715 +3.1108417744781387 3.7488580845396764 4.003897815820148 3.91747536338531 0.6438428784955161 +2.220333318359177 3.6686832722442544 2.6739377942481695 1.4163606829270914 1.91812871826621 +3.4520773509892533 4.531391594735307 1.7812172992948505 1.4424273247574222 1.1312373241721598 +4.589113070204467 3.2528869274355876 4.196043177355117 1.5580847280040988 2.9570805002774994 +4.963919390127746 3.211641284894787 4.161060113339728 3.9369218439947864 1.7665549869346704 +1.9398260988369382 3.06074027926095 4.728406817678248 4.442389234381613 1.1568295716441905 +1.3698130849571246 4.7616954134538965 1.9832185503083113 4.975230119084536 4.522941405552303 +3.1693584248995865 2.270941846023694 3.161981725350707 2.3884022817610187 1.185570539758641 +2.3397109128823925 1.7246820364956932 2.281594560748359 3.6827619389436754 1.5302060451155663 +3.8621562073348246 3.649354110793018 2.1412887580300044 4.955101874168489 2.821848504942382 +1.8085086855211814 4.2687075428048775 4.908876131453426 3.7578187642294756 2.716157484392342 +3.6162252427485067 4.121188807001312 3.932005515389562 4.229183838915876 0.585920777235974 +3.079164234381965 4.850027916447392 2.3253033516896378 2.472015256744574 1.7769306580570805 +3.2127084026259802 3.966130204506894 1.6037024275306995 2.4342070605973394 1.1213306189945216 +4.762516992536964 3.236579484686124 3.5034829075689897 3.4133306866816784 1.5285982797311228 +3.531398452817499 2.165399571206769 1.9710424994527056 4.216883408670483 2.6286411573430675 +2.6573453103050855 3.566328783168954 1.8223568087277613 4.481587215012 2.810294879126797 +3.731018465870421 4.092744681816683 4.524884358383851 3.553725089811966 1.0363378697296939 +4.522831031679864 4.682987775165114 1.0100530600515292 4.906733869556686 3.8999707067681375 +1.907305298528903 3.496534435068083 3.836490306457104 1.0855029763274033 3.1770395872508743 +2.299408291821714 3.078560793913247 4.369680574990802 2.2924515870100306 2.2185488252511183 +3.5106502445126164 2.4413795375848726 4.412385503263387 4.466375357876709 1.0706328731619092 +2.0136181608434365 3.347112290711805 2.526488020798705 3.61987912661882 1.7244450425223563 +3.9416804497716442 1.332984258055212 2.3213930583037357 3.713077070269909 2.95670089962412 +1.0671111036793381 4.490350604442989 2.3832793378116404 4.970718319655617 4.291084847023462 +3.734000735899788 3.189829494500491 4.228124120400621 3.052031713210107 1.2958841345649814 +2.09837271629987 2.5161273048217474 2.2768682668626323 2.408730340367414 0.4380713442580598 +2.872183743400542 3.892726725658234 2.507477708103879 1.253094145185122 1.6170918655277995 +2.651433214871089 1.4207440362626351 1.9649145943248767 3.8427744932740486 2.2452068177398146 +1.672654065813047 3.2300943928555435 2.6363153620447055 1.8644922498421979 1.7381977128129593 +2.2936526738009384 1.3321383896894403 2.5342319364607597 3.7380550271621074 1.5406815869141137 +2.1728936029975325 4.851637769360063 3.4798418898753263 1.1504717162209075 3.549878267593426 +2.4059958279943103 1.6067628425881177 2.5493680559753473 3.9966629697291256 1.6533105976612053 +4.558505526531238 3.412546929095033 1.0307911271611476 4.44844158726753 3.6046575114015087 +2.444448772686326 4.000816560376604 2.5391169910264586 1.1212388104388773 2.1053881413046573 +2.2135168139172343 1.895799875816107 4.566657114230523 4.630666585502228 0.3241007022035571 +3.8207706447786896 3.054797933586446 2.2397749777173863 2.3430353155072803 0.7729016054140908 +2.7857716453134618 4.473512467914626 4.429723349951743 2.821005887945717 2.331617669524222 +4.347683120912776 2.3112791066703173 2.3438280931517337 3.4930609365050205 2.3383065319723757 +3.3582982717533962 2.7377521976936525 2.724861636931534 1.8065673189271125 1.1083058623458446 +1.3844716852511811 1.245068802673416 4.428951705998832 3.3500019573605924 1.0879180684948253 +1.2619151283141754 4.054267771370961 4.61114818038846 4.423754552802475 2.7986335335027435 +2.277366841101941 3.919835386841372 4.007958938552296 3.6090350788150647 1.6902198583648964 +4.616714546129816 3.1477492541867784 2.1252330944159787 4.863911140924058 3.1077671198721766 +2.6466918190387307 2.37608128961464 3.113256355422134 1.8669212348131148 1.2753749611383647 +4.467501404144368 3.147864494731083 3.8893949237480268 2.9207887937868082 1.6369604172625238 +1.270367914199146 3.3207911385453115 2.3869150718422407 1.615251364106399 2.1908218267980515 +3.856405985643012 2.816415509474645 4.518337439454401 4.365988617633082 1.0510900789329387 +1.2823867496354038 4.21281101233139 4.718851123858137 3.5484902476105673 3.155492186656195 +2.786366812751437 2.0298849355990534 2.4483725023565293 3.1821807303714387 1.0539161949426412 +4.366988157873212 1.7305984829701706 4.436579964057922 4.272522841345811 2.641489212063518 +1.6241711857644678 3.7506203239353852 3.911410404976779 4.67548431396343 2.259556344865509 +4.336284054705569 4.469464766202576 3.8500233966534814 2.557812627391588 1.2990557240208223 +4.7499089143625275 3.3284001524561577 3.0463825166389316 3.307130291342034 1.4452254364593782 +2.802003617543766 4.423599294113125 3.450100503268623 2.553223553430134 1.8530949250969388 +2.5256920412514408 2.832293430149617 2.7224154927288646 4.010619790560403 1.3241883267216705 +3.5063481275216484 4.057321977708689 1.083018698560163 3.9196225257600625 2.8896182197783586 +4.759267205200872 2.272540909196459 2.803803839937849 2.1011502608869685 2.584091663117398 +3.1038774682984025 1.6635476620051817 2.9925538645652265 4.927243010279998 2.4119643532695956 +4.901012719677679 4.317400946189729 2.697310002474485 3.423071924483609 0.9313071832602429 +4.367554104145919 1.474690246851475 2.9649275847355536 1.8671315351092082 3.0941586034681055 +2.3182689449182186 4.644345494461802 2.4624413221154287 3.585994952417311 2.583215994550421 +3.557530746315051 3.866463283798629 3.8078087624125416 2.0747249729481214 1.7604030032979372 +1.5807482003672728 2.634984922560065 2.3755164777092865 4.136699418939308 2.052603327216302 +2.937402345813726 2.93581062014792 2.4523116216450673 3.7560350118989465 1.3037243619284191 +1.4798232307606214 4.866814587215514 1.958252426419424 4.041116185048184 3.976183080003897 +2.7365441674153947 1.9404856446104026 3.300597050230878 4.884394037650328 1.7726031899693149 +1.1822309042885224 3.871175710216327 4.049194443373179 4.71483257889685 2.770107993705218 +2.9478258285667183 4.4693505533528946 3.801187469197673 2.7986036293050702 1.8221448471922985 +4.055486453078948 1.7492554315484865 2.4010364504654156 2.1255045747635175 2.32263198531262 +4.358401830381895 3.3914098166052145 1.759789434781577 3.9808302972290517 2.422415337502903 +2.8302288736142267 4.237434494203244 1.1450950046945612 3.120755752838024 2.425585094440537 +3.679064105161082 1.7865456184576662 3.355996681167185 3.9880838103290173 1.9952845314306011 +2.946408878079992 3.4130934483396307 3.4086259565214148 1.5540703085076792 1.912373169571794 +1.56848608668929 1.332748778805413 2.6718352889218675 4.976522487776002 2.3167121450215724 +4.628204760910991 2.6876423851535285 4.52264075912497 2.5142665986549293 2.792731477004044 +3.7064229406173 3.5115118104557754 1.2429464818040903 2.1168486695282875 0.895374436964771 +4.2855237200559895 1.6597420981740685 3.9842640891821874 4.519924053173624 2.679862071606701 +2.5760089592196724 4.420355421607588 1.726944006908135 1.8805950209251323 1.8507356665475676 +1.7359226859873922 1.562054993576944 1.761831627879689 1.5082686037837383 0.3074478519242213 +4.416319004695699 3.743943379517056 2.698695983891853 1.9442916608833984 1.0105517621122708 +4.051612752471166 4.002460315505655 3.0772369293185715 1.9719884513851076 1.1063408878071384 +3.88798312277418 1.451034902633146 4.982655484149738 3.945573620860648 2.64844396180318 +3.024634835903322 4.348995791159671 2.9117758313884945 2.4329293298022496 1.4082705393101476 +2.5565006082676467 1.4046868465474045 1.348826942648472 2.285321813060491 1.4844856294340338 +2.5096604191351406 4.793230957818087 3.902193797688376 3.765527328736357 2.2876564709056595 +2.0888621708042923 4.674025539237197 3.2944391985282677 4.500414512512786 2.852620917582184 +2.286279018623642 4.561817294005783 4.175619560761479 4.957320838749265 2.4060613730195795 +2.431704422973036 1.698935714261819 4.657420968334204 2.8248824955890814 1.9736127367235272 +2.0638408572080844 1.0146396954762342 4.963240046752846 3.6514652091483435 1.679754834001612 +2.543853643528133 2.812371489095233 3.594497909954396 3.1802459040883515 0.4936664438181293 +2.784953528946602 2.596782559511458 3.2765174771549224 2.8275142727871714 0.48683897879141735 +1.3882381562126893 3.074252740028748 4.258259264989556 3.949912141704869 1.7139787411979124 +3.102539813351561 4.743644261121205 2.819116649133564 2.689635846133947 1.6462044486742025 +1.5211758967592957 3.7888530274347874 1.3711273096098355 1.8624030748043694 2.320282622107942 +1.1275649041042088 4.6974042676909535 1.5912138627121348 4.913311299534359 4.876482796191761 +3.518865187896415 3.903064324144936 1.0775122561180726 2.9781552029532703 1.939085502923606 +4.069338143430365 3.3409733970175175 3.4934788299674766 1.605687808773173 2.02343029124279 +1.2280994322349925 3.551055767671465 1.7858973010145998 4.22467436300965 3.3680498355068402 +2.3514248022549316 3.6656805600330964 4.719917346459805 2.246323477916026 2.801059589396562 +1.6871583075756886 4.759147278999811 4.23845569066559 4.338754742745154 3.073625894672203 +2.7962420707511555 1.121077997185795 3.191202795701285 4.062663072925949 1.888284323968343 +2.796964985488638 4.610799536105354 1.1222949802513873 1.4022900602633404 1.8353182344873722 +1.0282457611401425 1.8289902798744109 4.081083991058263 3.434851922146364 1.0289838051073146 +3.2672514456319006 1.1222862444778796 1.0244779249254945 1.422101618338366 2.181508724650214 +3.247812918575149 1.4566894675811857 2.7710796229545687 2.923006918397503 1.7975553175914027 +2.8201234274841203 1.298845636932695 1.5422973397336524 1.7833128057158008 1.540251463517441 +3.095366716052138 1.1661602359160659 3.9185017921502308 3.745705015213882 1.936929624203885 +4.93061045681814 1.3120803710083768 3.7280370873654394 4.467326496403468 3.693278870086337 +1.559449336330796 1.462142442123695 2.5896390943882945 4.752560901140224 2.1651095523744894 +3.7814282740648255 4.275027464131725 1.5564998976828477 1.5300828259200827 0.4943055958769008 +3.002238734067531 1.8908290509425076 3.015756923862371 4.383493352751509 1.7623661431877535 +2.0488530625623786 2.9791536651445436 1.8731272008454614 1.5947086005544304 0.9710695794600694 +3.776203183139108 1.6672275821163596 3.9247124136974465 4.132371852729791 2.1191744921852216 +3.970008672451073 2.503206223485649 1.23872794188746 3.054810909642328 2.3344521348831067 +3.3751976214830433 3.913418444147434 2.2920692847955015 1.996143895719659 0.6142096464963916 +2.0456576674871716 3.982941604472262 2.159653517080185 2.7617223342526764 2.028683295418961 +3.1989336350068314 1.763457694471592 2.7892935241679577 3.3567957771821426 1.5435834875482781 +1.3968439684418028 1.8370255981341983 1.0888089199795399 4.543219756455185 3.482343190192348 +3.553214881413469 2.1936371938163526 2.670907649796823 2.7172050566341066 1.3603657370324274 +2.7385772473364294 1.3198007292862455 2.790008708072098 2.787026628710285 1.4187796520136327 +2.4241574824398686 3.1864793150974235 1.319993794401718 2.5853260315719298 1.4772272157554323 +1.6974861790771887 3.135012072969457 2.989276957260799 2.6767823013814613 1.4710994546813991 +4.705778488556976 2.6461336072474584 3.2931847022633525 4.231658767315791 2.263375931629685 +1.0863545820168645 1.9866046346556603 2.6911014109525206 3.9400961956390583 1.53962272308846 +4.2010292735626615 4.822629140653714 3.1525109197131416 2.09129798658197 1.2298614898485432 +2.572193937790922 4.406912878226084 1.692814215586719 4.053046553344233 2.98946320910424 +2.6322918530181605 3.277715320923524 3.5948882321905526 2.5728744912440447 1.2087528860798893 +4.537277921112185 2.5967874040551666 2.393915262539426 1.1901779689568492 2.2835251079744494 +4.224794963117818 2.082075203145085 4.639116352970107 4.0592318158740195 2.2198004518741654 +3.5185194746384445 3.641938954505887 1.3044342629882189 1.8510793577635578 0.5604045214420467 +3.217910053802444 4.4588280626751775 3.008775251325929 4.045776399458713 1.617173115647605 +1.8220613910510117 4.224458080953139 3.4464625593402674 3.4074416715026294 2.4027135670612787 +4.709692015591631 2.484637004319291 1.354745027820119 2.785521783186098 2.6453717936962566 +1.9631621737935565 2.3331608167987494 1.539164706346408 1.6925562253950788 0.4005345852005079 +2.452944350297814 1.593759432956103 3.618121247556105 4.43990486812317 1.1889184333753924 +4.535146386677704 1.1759426760310463 1.0407184028065064 3.777541631592331 4.332949452191191 +3.719327954450899 4.926167205920014 1.6393827209303664 4.193884904276647 2.8252331556187444 +4.454183611202171 1.2273195368426855 2.0320325154227876 4.583922968335463 4.113975770232338 +4.113413422330008 3.085751648115485 4.514096377275838 2.7872496833015536 2.0094994965591946 +4.112430359053874 4.250415113068112 4.230413900252817 2.450661290587683 1.7850935952913571 +4.922741891456381 1.4742361151500583 1.8428350402840965 3.269253147430919 3.7318709390350566 +4.241346585525629 4.910624279752664 2.9943558743652257 3.378167951903101 0.7715207987175697 +3.1623681337510856 1.4486841704201403 1.835825025757298 1.7533861307714282 1.7156657301421359 +3.5720726782484165 1.1210474963916734 1.2991116280207713 3.853852426506896 3.540370741821455 +1.7387769496103576 3.3008304199997722 4.037448973893428 2.0980788639184222 2.4902143417425093 +2.293754571372548 3.514313586346536 1.4261561153083733 3.8785394006417073 2.7393335114981143 +1.611496564177095 3.0840179230313587 1.1194454742604556 3.4071503939937426 2.7206456866071136 +3.6831663053025707 3.1108722696085986 2.4109377806833137 4.306492727753744 1.9800628830050007 +3.6749347782298365 3.6294959881169593 1.9416061214680358 2.8050464732260645 0.8646351396346036 +4.403567201194498 1.3442065911826724 4.960561128700579 2.3576023448749317 4.016849732363289 +1.7460918563994081 1.068066759312369 2.033266741228992 3.635311962511164 1.7396168898102051 +2.5394934603229946 1.3701172978986067 1.3076929975450695 1.559999836351997 1.1962856473915973 +2.637949640438259 2.8426203904259615 3.2076508755614155 4.058496270847264 0.8751159937857722 +3.820213090978101 3.824716994036753 1.8697542625155932 4.688698652772578 2.818947988258046 +2.732777430505552 3.6320767157304688 1.2882784825855618 4.521151120125186 3.355622847543873 +3.3178610356900142 1.4708699776957186 2.088968166754066 3.1403154450063138 2.1252545889373575 +2.738458423184378 3.728241067996117 1.1152757537387665 3.4826456865791924 2.5659520811752126 +4.595911280589046 3.7230497122994684 1.153099109862227 3.329313889878198 2.344738383307806 +1.9120990687583204 1.8070845465803536 4.925973998423295 2.7130975094006304 2.2153668783155402 +3.7195628673558407 4.237885248851132 3.277131533285105 3.6234396775446993 0.6233678063065771 +1.1508097074719545 2.291701664582047 4.694632497949253 2.417939036464673 2.546559949297313 +3.4789450761336713 4.580185403718991 1.945898458238272 2.1331034541704166 1.1170389293136458 +3.7629786302109496 3.109738598463862 2.768399911986368 1.6079075158463252 1.3317151123929598 +1.378929700329535 2.2227063911716036 4.4390201561308045 3.2619638525037917 1.4482474394648444 +2.465859986763437 2.6148577754892828 3.1858164842084133 3.483358524159617 0.3327635896301087 +3.960412873837319 1.6368991698227795 2.9101578722876282 2.1509999226644414 2.4443888244752405 +4.456919160473284 1.176956426240665 4.958715520473291 3.4449010764834087 3.612449267295959 +2.9039189251866158 2.899296050171825 4.275851352400624 2.7778296459388256 1.4980288395101478 +4.7144080253834915 4.110300858102532 2.8868542112416025 2.4552767742891617 0.7424315144487493 +4.6067279784919455 1.2396999326564235 3.4420982563862594 1.6761044325343688 3.802053661815677 +3.6715055412012316 4.23853536231492 3.4096453483602436 1.9231065530204532 1.5910123846414574 +4.001420907077373 3.109973234752929 3.5478505641593965 3.4871571716483714 0.8935114103284668 +4.6343968996608 3.0635589174818922 4.424958925324071 2.8975822414598027 2.190984139757317 +4.145405696338248 4.811201538738796 4.273960826871338 4.844711397142927 0.8769494382364353 +3.4595582894482804 4.992597748791653 1.8289761756654106 3.766589910042808 2.470740165932416 +2.353951997508496 4.050668388919031 2.8924229608513587 2.1603075779272873 1.8479284203656936 +4.141363187377361 1.2017211511829227 2.8666104826585026 2.5051438686925875 2.9617821347920525 +2.773330550725289 3.4437962113752687 2.7719213137020273 1.1493078577948181 1.7556761174550248 +1.8707635517760064 2.5665664488534055 2.023091960866605 3.8442175839057815 1.949523071541122 +3.6709701548465894 1.7940281737529133 1.942942095424491 3.4464039836444393 2.4048511075993346 +3.6751718027503024 4.147276828264566 1.3509780834394864 1.1261385359446239 0.5229110605385184 +1.451667850753597 2.082791837383185 2.850572659268135 4.661228008224594 1.9174958355114777 +1.2364910728277043 3.412392077162634 2.8920420841055345 2.2023409988240226 2.2825934302245443 +1.6070916413920542 3.5042565036154247 4.789969916386401 2.7640869884667816 2.775506467672376 +3.3726443966309274 2.965469793884649 4.255877801211664 3.5667151684982454 0.8004600498776189 +3.6030658053468274 1.9553390844884433 1.1495787837947926 1.2780957909175257 1.6527310633465169 +4.42607769361494 1.0620381936248382 3.5216710427649227 2.788863744771386 3.4429301900396183 +3.623564069932739 3.760320249634428 1.6279059687988262 4.701503444322212 3.076638375602555 +4.183800161941441 2.8615920739085685 4.0741729526557116 2.870043087209512 1.7883408402536212 +4.688735321968499 2.952137185819108 4.908229700544824 1.0321487835119507 4.247325789466113 +3.4909332061707836 2.648103198920107 1.9678513103263904 3.650476628670465 1.881911364292876 +2.1753545952047793 2.0157133205664035 2.6454741890905726 4.425762797574546 1.7874319192813937 +1.314157807019524 2.017373775107924 3.65711428964666 4.0376840416782525 0.7995911667445393 +1.5027565920835841 4.898681737742262 1.4476353370590282 3.5899465417038297 4.015196743929688 +3.5454779825136247 4.614685534625094 2.81868627704071 2.626024558362656 1.08642686239626 +3.1303070482068254 1.2395809807464144 4.12093026715938 4.477405544926453 1.9240373400309627 +2.075829724278266 2.2268375983209103 4.620198281119345 2.806917492394128 1.8195578025396235 +3.390454573846823 1.8997824114521675 4.46793264373456 3.734734008250966 1.6612295852209478 +3.7230970547052613 4.693681358263053 3.120660062957197 4.2942752741668375 1.522959800617013 +4.4075114850147745 4.894640581899226 2.85157796934624 2.938828210998357 0.494881159168354 +2.7067718603805573 2.7655205253446273 4.13735472027904 1.2588628582397954 2.879091315929597 +2.6446365675389347 4.0893491727698486 1.6460305322485862 3.5826935166348277 2.4161659766673558 +3.9418693697559055 1.9901679471415803 1.1228196833743165 1.6110980092304694 2.0118534157675776 +3.2567285283350556 2.705901753271752 2.9755977976173345 3.41673981189501 0.705702779424599 +2.552358870080871 4.938048732247705 1.5782267404926054 3.88268259721663 3.3169312495189387 +3.25074995377437 1.420323338541658 1.1353210572870363 1.0448295767404678 1.8326620806367422 +2.6663953184043434 3.0958591217912104 3.7718313041814615 4.1277931256123574 0.5578063971808808 +3.4076093123031708 2.9951005170093707 2.345527667855314 2.856945250635447 0.6570475250477827 +4.286746377062084 3.377053288971782 4.365363890229522 1.4089239298069929 3.0932311187660124 +1.5942843345211157 2.4852256612410915 4.476620319956113 3.6483045819139943 1.2165045867343902 +2.3819501828675067 1.4185321465158869 3.8208635170751 3.893174739423468 0.9661279551100497 +3.6804373771158545 4.0149990965374505 1.5499271685722897 4.80248491283584 3.269719165902651 +2.4774442436123683 4.588278762676289 2.008391710825995 2.196539104113353 2.119203106942004 +4.486639654360484 4.802062107816532 3.287966822249346 4.724298366508087 1.4705575912479365 +1.897042086802192 4.796248884776963 4.879751935870781 1.6249447708540337 4.35880370501672 +4.018892903215301 3.243830891124133 1.9105108037293763 3.441055748207891 1.715601629066477 +3.566725206021741 4.553993474881948 1.2140244842507921 2.819280023730236 1.8845540538089298 +2.2917269268186846 2.048355783266844 2.2006320551443657 2.1317629349598004 0.25292779449622893 +2.028546354101914 2.5848313061900074 2.331328116000086 1.2597823296150374 1.2073372852021114 +4.215653457182243 4.4874147367524415 2.008545557175521 3.2288487225046745 1.2501975877380274 +3.140673920903627 4.921772858696732 4.679339423653392 2.1779735338793804 3.0706912480307524 +2.4100837427155093 4.080809211480235 1.3783491378657065 1.5494749217392196 1.6794664706047082 +4.011721736311852 1.543364115626082 1.060157093888138 1.1958943768025234 2.4720869631893 +3.8495880120042356 2.855393537285826 3.962582174083575 4.842126613155712 1.3274114184620138 +4.9380041232168255 1.7741475583399247 4.073596737216492 4.318104957006231 3.173290505557191 +1.9668674773438433 2.957510207214798 1.1066390942525186 1.2759629596222752 1.0050092485295508 +3.2751233909273143 1.236542540781385 1.6230264280433797 4.816387265875788 3.7885835510363766 +1.0390554254919029 3.3893926459449246 1.942614001242747 3.5990117960676207 2.875367577292952 +2.6855150198148223 1.783971922991336 3.5637535722393676 1.8495381016109844 1.9368310807016114 +3.8862909416738227 3.9679565947169837 3.706451188973896 3.1891177211038446 0.5237396260217662 +4.6947401056592994 1.9613974847549929 3.5422609627297144 1.3616442149470451 3.496605680365215 +1.8252633464466572 3.9768763948370927 1.761762652791608 2.4887184589134463 2.2711018149916207 +1.9902297304214156 4.205095687880181 4.563807100642198 4.913804981316439 2.2423491534518423 +3.3893919704344864 3.2559594881788603 3.77898653770866 4.957772175559914 1.1863135366863538 +4.360978977459183 2.261468604404776 2.9967223046603544 3.9214581747801125 2.294140413324608 +2.590947253483379 1.3749531018477787 3.367729845037475 2.8184285152512714 1.3343064594450837 +4.977419210295453 2.4996761193055854 1.961237945522635 4.431073373095274 3.4984707893936955 +1.8496125140198383 2.1794218670942676 4.049557614692606 4.893781018121833 0.906359401271372 +2.2152426708331188 4.642279305832137 2.793598872675458 2.591605698954861 2.4354276975219515 +3.9048527144153904 2.9343771632958537 1.373364349915398 1.7221801919704167 1.0312590785003157 +4.476980162247491 4.083148845475373 2.832267020803784 1.544331247385471 1.3468042406085188 +1.3583447124426602 2.0968749984708066 4.247582400682104 3.017259650791948 1.4349637808244817 +3.5587849038552575 4.145561539363266 1.8131248456351963 1.5317525692657412 0.6507512411724061 +3.738997358472652 1.7793565967228955 2.7166253914262444 2.2496485007307374 2.0145121820318708 +3.8348846082570316 1.9929154084064749 3.217397905910266 3.74327229307772 1.9155663403486827 +4.369055528174119 2.2924699296762987 3.9742079330409967 3.134853980289371 2.2398041891844764 +1.632758919380271 1.1676633073247378 4.090961614664186 3.294682852754563 0.9221571422602732 +4.168321455213801 3.0202898314738484 4.984872969631303 3.242231597832577 2.0868099002572174 +1.0110622372266045 1.878222110140476 1.5021092251922457 3.2020558466527964 1.908346079988413 +2.134001930012886 3.9450155904797977 4.836229574940245 1.8957515942219159 3.4534303574108898 +2.5645846125107643 4.919142667728643 4.084801048138696 4.722670725524923 2.4394305402532384 +4.099411770949638 3.1981962753880437 3.561319285884798 2.6786762989410398 1.2614467931075533 +2.099426232000519 2.5584582455603604 1.9222219718125766 1.0923984326286904 0.9483235184558448 +4.210415732374008 2.5933358616360125 3.450292780207069 3.038949516113791 1.6685774148240544 +3.850472658328045 4.234002259562403 4.8107677606327695 1.874071298297677 2.9616348638740786 +4.026378620087405 4.251857100029225 2.046702757446317 2.798758835942971 0.785129855578451 +2.126926804209766 2.6838112085206114 4.897078884162901 3.0595187165024935 1.920090521182996 +3.021816777962306 1.0596724365089414 4.636959442011403 4.362650099702865 1.9812258912035245 +4.46584331119894 1.6608316495796176 2.354499108591497 2.2190389598047053 2.808280590277569 +4.413352619968576 3.4337357652676026 4.335737060860734 3.784641211729338 1.1239910217364202 +1.3495924332384464 4.6140108845376435 3.1306438891251136 4.2411778427999 3.4481463842834748 +1.4680374140998875 1.913474281578031 3.4877630433596263 4.588056985696875 1.1870386524678909 +4.693371341648632 2.4311334748027855 2.4326679486373686 3.527629677910518 2.5132969093929374 +4.67614928860819 3.110542716229078 3.310072478378962 1.4551186842563535 2.427339596720355 +3.9525189571834343 2.9598153156690703 1.0232811094215033 3.9583242971604404 3.0983768385670296 +4.317595919793002 3.0435830155147325 4.861394914540492 1.6582620606949732 3.4471972614940514 +2.085087381358678 1.9366297530435972 4.022395343009695 2.1338342130911148 1.8943871855680092 +1.9552001378159338 2.1939588276589186 1.8038927309811164 1.8667184296909727 0.2468861688995968 +1.1597895846792143 4.049953233149597 3.6855582214090705 3.0483225600526174 2.959580241021356 +3.8225600801917445 2.9830081978670258 1.865180680146738 1.5126723518037077 0.9105544929690788 +4.682048774752296 1.81234877981568 1.0618158066094163 1.1703803991089945 2.871752832623973 +4.810894346814326 1.1817202466145433 2.8854573342710745 4.825036513430862 4.114957112995354 +1.6972342819358266 4.340708441403564 1.4915224508925613 4.6504283666083275 4.11905841377829 +1.940086218860726 4.694327612346843 1.397272036046013 2.5736292890614854 2.9949394051156455 +2.9461425764185183 1.1386172663456446 1.8917851737389921 1.6953515383032411 1.8181677369496312 +3.775382972152951 3.2890037802084047 4.926670767688302 2.334202626189993 2.6376989561055533 +1.1171709852266614 3.804646613505818 3.432374112455309 1.2811168979394192 3.44244576654464 +2.4532185515741975 3.988890698357432 3.435189159655995 2.9456273074154873 1.6118187706981777 +2.5232578339882346 3.250293984342675 4.557159505009286 1.8508951066721044 2.8022220750021782 +4.142496662602753 3.1749029182183337 1.4015532846989287 3.6257430569987616 2.425542784074328 +1.3600094619551726 1.9407827460483462 4.527628710461068 2.794158520171629 1.8281729973223195 +1.4666666672649211 2.2483227782379633 2.528554795021334 4.650347641949573 2.2611924201839484 +3.1816006769382996 1.1454992754346556 2.9267861108353084 3.084617122281328 2.0422094763709175 +4.354642290893597 3.4262063196419783 4.1304021603157555 4.012423955155542 0.9359018162215321 +1.2076968581363552 2.424885299561043 1.5520189622015486 1.7655812014875907 1.2357817493338898 +1.7700121627295626 3.2215613171248205 1.3949339899259106 2.971977980675712 2.1433764709881573 +4.800923453967035 3.730213211653444 1.3491391393558416 3.8112606485865017 2.6848580501046033 +1.16776472758883 1.089888732105373 3.5439561594297784 3.8729789486826802 0.33811339299161 +4.017696829169432 1.2189389581495544 1.3427739186146286 3.979373926307516 3.845088454270181 +4.261266088121662 2.1108110708972476 4.6652391573513325 1.244565730568838 4.040478124405768 +4.831372678982012 3.821209935423284 2.8566359945083963 2.1835529760957852 1.2138655272102952 +2.7307471209944154 2.9196201656837504 3.2942450714545997 4.567459828426655 1.287147561230502 +3.1584618073749953 1.419141766895847 4.794730819863446 1.081222826131223 4.100655535731514 +4.139947405855941 2.2385205112699 4.499318691987375 1.2634672931970705 3.753153142426816 +3.5140771633033645 2.0844416730097097 1.880932318257413 2.7726518967896676 1.6849395959039366 +3.127757206500452 4.679824723484608 1.6829387993024958 3.90121519217156 2.7073351717948686 +3.4632595860980215 3.986043910103338 3.2604261606904408 2.0898321289254556 1.2820272370856631 +2.5396768275014865 4.263819898037024 2.270559139044969 2.975836918162783 1.8628167041856447 +4.184684562190343 1.1731071713271781 1.700361923278296 4.588741522179002 4.172809016538379 +4.809889852432175 4.422417549184855 1.6888910199392893 1.1726508617025413 0.6454755508615995 +4.647750175643052 3.6712066610795797 4.271082794150214 3.0594423982579797 1.5561843350946152 +4.421405531866657 2.4633570952602146 4.766810155470575 1.608563568917356 3.715975670207219 +3.052270471028009 3.014797094997423 4.585076315196396 1.4240522252098158 3.161246202273182 +4.480894935813624 2.3818944692430626 1.476713277782172 3.3612306091111024 2.8208524475311623 +4.455129954299444 4.103217774591345 2.774235833392657 2.2427153682188714 0.6374607337910809 +1.0588561605396767 3.804312500914395 2.0211912053230647 1.1171005949229031 2.890486178606893 +4.329926704164603 2.4689088401140875 2.5013525035615998 3.9047985548074564 2.3308900250918594 +3.063365660332578 3.826425122535605 1.068577806210889 3.6460577458005377 2.6880592593625297 +4.570545328609793 3.4744536022397794 3.1238062891109166 2.3417021016458803 1.3465155151973338 +1.4834349657554213 1.3368596982671095 3.521384297511048 1.7774963093067555 1.7500370351631092 +2.043319786729952 1.9291476286608105 1.8369911181133207 1.6042987218974134 0.2591930418334294 +4.772371053171129 3.978438188285307 3.149433336669849 2.917215031782577 0.8271969143260434 +1.9231616103066682 2.799917488918487 2.7367123829041016 3.8363329508502892 1.4063663335456655 +2.384711710205534 2.4201776694682073 1.764622835536132 4.054789281191319 2.2904410455349717 +2.6679444016510354 4.2148216925225865 3.8507281379591944 3.7890884979237565 1.5481049054369047 +3.601780532549662 4.921385151859731 2.9069435164309265 1.6002633592113624 1.857086262017954 +3.9518580495145206 3.024890873823668 2.7850181859346246 1.404573382058579 1.6627976429369418 +3.8967747413650544 1.641135714558268 4.131894405212513 2.8491840476546244 2.5948513022214112 +2.289557230315118 3.0865786887954743 3.253708261956335 4.963707895191371 1.88662183570055 +3.1313465276501953 3.910988174533125 3.755611501124436 3.0872176211117925 1.026933043772905 +4.711822816001403 4.428223924284563 2.836512078716493 2.86061300527899 0.2846211271922572 +1.166046721496679 4.95033088968783 4.801001639413597 3.897011721133764 3.8907588511720657 +1.3759118055064001 4.1322764622111094 4.846666464120027 2.6205594918307713 3.543035192148916 +3.9645046528450973 1.642345317878032 3.8956033704238138 2.120407475115391 2.9229684301570136 +4.598913355546335 2.714217602900048 1.9593219747173856 1.8160602785583566 1.8901327978820208 +3.39189882860201 1.5759418991995653 4.500671215280958 1.5220308860715863 3.4885523903529485 +1.4526026060198567 4.938422169089021 2.59173619079411 1.4779632271815566 3.6594300431556266 +3.330044513922391 3.559319065850271 3.416022690259124 2.1918965481152735 1.2454122337771203 +4.918162460294949 1.0122168018102493 1.1795274541163527 3.257159696179751 4.424134629540206 +1.2883209280196297 2.6031543774808927 4.196183483447704 1.9539469475541567 2.5993098473860514 +3.893271988691498 3.673742828889367 2.5752047175083534 1.0013702485722247 1.589071423069113 +2.1972417847812635 1.32791761811308 3.8193574829866317 4.670971869318351 1.2169517532591352 +4.002878127532673 4.2044551341723535 2.0350399461208055 3.479208740781958 1.4581689878333235 +3.728874163664131 1.3658103177711531 4.894682178456156 4.641850486596876 2.376550989180526 +4.6112301093204575 4.68180980169301 3.509360775593388 4.507373961879977 1.0005057785826692 +4.9293725883122885 2.4281737927399223 3.1913215402103323 3.1742394650926595 2.5012571263792496 +4.9907055310833535 2.453948613936974 3.271271113791757 4.773705194059717 2.9482950704162283 +1.301621906546881 1.0732404708711036 3.665687349452666 2.009783034622103 1.6715792473095032 +4.7201031340270445 1.419302563271028 4.929269282571694 2.205421076340328 4.279559960847969 +3.7179610573783703 2.577200253127834 3.4843999501657823 2.0850475063264775 1.80541476525295 +2.4988607922885198 2.1296101160287755 1.75594517831456 1.5209473207342734 0.43768716566242055 +1.2061176394718713 2.03842573448846 2.350465432065999 3.9336938583372136 1.7886724168453458 +3.3757380367630017 4.778474934035163 1.31514047092926 3.1435770150619167 2.3045283679938726 +4.3339928182319225 3.4492788367032112 4.095072789329533 4.103895986438598 0.8847579770307868 +2.9767156189626984 4.9977521279604185 4.506906632062462 2.774691951147572 2.661795685524861 +4.884879696021176 3.5698322726704577 2.740689793908034 3.7720922360203066 1.6712691953292635 +1.3935679610540195 3.4438019555699784 3.3433122638438904 2.9649141448510443 2.0848608032015443 +3.9005544542263872 4.960441073796538 3.7958840372767715 3.4087389476357886 1.1283797972212044 +1.0579157567393191 4.838183084131985 3.4893248878203167 2.003741955766658 4.061696408467974 +1.7699053900877897 4.306858959716199 2.8238292746962776 4.974826712673872 3.3260973215822327 +3.2196093397784273 2.2451434329300026 1.3457096804602537 4.139927255405741 2.959262688533102 +4.56818309229827 2.549334601082227 4.315425147061909 1.828790422073812 3.2029832166281986 +4.89967639140432 3.775739664143154 2.831105637678687 4.154917345255524 1.736580318903805 +3.801376191642401 4.669768632392115 1.600687788723341 1.3605399598460508 0.9009863544281468 +2.4514979386611 3.778292620131915 2.144237720483333 1.5051320761735663 1.4726982553693215 +3.898098785467517 2.4236473376375436 4.849616444667793 3.4935230366335497 2.003246465945175 +3.7687738514905424 1.465777912725061 4.499627968544195 2.788782828509843 2.868933841542789 +3.7523992125266123 4.475927982397181 1.8654141718387818 4.154172591861009 2.4003976724811786 +1.0455461130939883 2.505193676663531 3.23965039111227 1.832588584472591 2.027410648472238 +2.306731579220273 2.1731851894142946 1.6102488241021593 4.349240400801479 2.7422453383058265 +3.1035002905831033 1.0647891683944253 1.9347512025483642 4.229746796540169 3.0697471909226692 +1.471267180810674 3.4963076369097648 2.042740561164021 3.104760764504072 2.2866297822648196 +2.309539503424986 3.305237289792835 1.7087600157914618 3.382304976559206 1.947348663565142 +2.205524383225868 3.46081889234482 2.895461555921164 2.014775821222559 1.5334182951581776 +3.0295076348092094 3.258636433900888 1.9177444728902584 3.7009871252957827 1.7979027682084159 +1.8314904381305896 1.3679391971672845 1.4851177625236445 4.456385645836653 3.0072101003099174 +4.470202535581389 3.345770138454597 1.6193007035561346 1.527292560545785 1.1281904600237123 +2.001818783413686 1.6701883150457428 2.197395412773428 2.3910941140828914 0.384054624290496 +4.117155653893503 1.6178122436419335 1.5923251682726867 1.4946731539836802 2.5012503669690176 +3.3488132785560136 1.8409134772896385 4.0515302150262755 3.588318733273903 1.5774430853398171 +2.6083252852742023 2.932932634146233 4.074016084984356 1.4995444473660982 2.5948553223335136 +1.9380859011027156 2.461967970428034 1.8006042550112529 3.976460672075828 2.2380356499041003 +2.3467485028066437 2.159991394476422 1.028660018370978 1.7958925699352055 0.7896353624880419 +2.126979574877788 1.064488167410087 1.2003106611397851 4.893791409108093 3.8432652818346056 +2.630959458939991 4.361016091685849 2.322169505249629 2.1577718685189002 1.737849974960608 +2.4438057164493676 2.7871425492181965 3.1187087295102294 2.5454954010765323 0.6681719094886945 +3.786065947889578 2.4773019538652115 4.68861258073772 2.167548430106753 2.840532985841082 +1.2260584180847687 2.5142200313406464 1.2533509203978674 2.3869313643837 1.7159151974538551 +3.1068773776569243 4.1690668204666395 1.2170325180195927 2.6977804925759155 1.8223229616533578 +2.6680196422489995 4.9677250445281045 2.8897145397174397 4.012351057203306 2.559093137747138 +3.5564022739073526 3.4534204772403703 1.7575237510951718 1.5968109047480579 0.19087658165880578 +1.418149808127335 2.0405326168464937 1.6930431900133804 4.791165861646736 3.1600196912484178 +2.339412722313867 1.8884123606636702 1.8249454473434032 3.060074758535763 1.314893813802134 +2.9890822392954455 2.7134602064075457 4.044214193495396 1.4133644373282794 2.64524818203091 +4.37496836472679 2.9105160124371334 4.109038853782914 4.687498277678305 1.5745589849923365 +3.493967893692436 3.643810024487373 1.0702623835211438 3.2497711119856176 2.184653510654263 +1.0528472466812713 2.2770374359799748 4.218700210391443 4.714021442431717 1.3206001448148832 +4.3992817938384 2.2925271437685653 4.081894058465576 3.6133078521853106 2.1582372873034608 +4.637930965490849 3.4574733219245415 4.828082540379452 4.0234284904723 1.4286176494381202 +2.4860480080274856 1.4998280312173078 4.698738733323973 3.3147671150386016 1.6994138056632637 +1.124484882436306 3.947954271824608 2.2664031988944497 2.471479883985975 2.8309072467286662 +2.800516768124696 3.7548789608261184 2.0694013954894945 2.1351027858920997 0.9566210679044773 +2.5156791847110145 3.5079013018078986 2.3973762280939885 4.976529901498502 2.7634287399338198 +1.5184434605571915 3.5949908544259053 1.6087611684878067 3.155251223587243 2.589146687521664 +1.142053680573976 1.6329688120108243 4.232442782037293 2.9757604891077962 1.3491656872438598 +2.3756443416589836 3.032379755887422 1.6827820455838363 1.7387918661123334 0.6591194916685692 +4.305075165049893 3.97704888032936 4.652998842492774 1.474986433292535 3.1948965736778185 +1.9027925250454083 2.900881419685349 2.7275024948779127 4.076167468597067 1.6778196127535479 +4.011556147455912 1.7041219035477466 3.795519557827688 1.6016961076631162 3.1838834966832614 +2.638426145405605 4.513957045152695 4.016048924533724 2.018966815504334 2.739699455435104 +1.886699634294843 3.6908466685320436 3.9736001277162187 4.091424795532313 1.8079903687500272 +2.149039389723757 1.9498731372678013 4.3420671684420995 1.5966632993055647 2.75261868059984 +1.9263976302308863 4.115325840769616 4.576887626215807 4.540610170493091 2.189228805923675 +4.737023229315513 3.114074271969539 3.23437082417214 2.680515735039826 1.7148524070333713 +4.350625194213989 2.6964283363081565 4.7860295049127135 1.0064839224678432 4.125691706185044 +1.4229240109968808 2.497043650560396 2.283831095213579 1.535614202819652 1.309030755238272 +2.4584037239516348 1.652702007996532 4.978146613989411 3.838873224473833 1.3953849329669972 +2.4969123655844094 4.035695880968291 1.9303326443019349 3.4680936753844716 2.1754456315737247 +1.8889109794472763 1.4931039643450656 4.87008126065134 1.5496259882359569 3.343962680610422 +2.822525931442346 1.6505730109505778 3.404297751563257 1.1447161984641703 2.545423823836586 +1.549478881781381 1.0279398791419623 3.1305881753257205 1.8313619930383864 1.399997001430732 +1.7846142375949152 4.54459732113081 1.0957175085028443 4.514040167705181 4.393453814918332 +1.8601922428797635 2.5419197282512047 3.1045458100526466 3.6894755712632716 0.8982734493798575 +2.785140341931971 4.955083155245086 4.4822183450623 4.63156737936192 2.175076308338507 +2.9750873268319062 2.5380550704032636 3.7614226706128875 2.028628761805844 1.7870567768142966 +2.708046629441036 1.0328301574599297 4.047268811889186 1.9554364448146369 2.679946432288813 +4.014719704242438 3.2825423940437224 3.5917318242312324 2.462283865937707 1.3460075423500566 +1.4092178755307159 1.6535756018748415 3.9770256773731454 4.400997119653052 0.4893490393297763 +3.1093546162462897 1.2855707570898232 3.8216455646718055 3.9766219473576427 1.8303565893317186 +3.3902766899843537 4.9364838088024054 1.0846360107913258 1.9039654600275315 1.7498734813321004 +4.012512600016264 4.400089204965855 1.6546615969931762 3.50036150405808 1.8859543397557763 +1.2147280232179027 4.509651015594725 3.2185013412650565 4.963786827074523 3.7286108609870543 +4.103720088505142 4.367825723945636 3.0857163039610556 1.6092790822985554 1.4998728800074723 +2.645026407186179 4.749465570319317 4.391900956232044 1.5484063710424332 3.537531010087564 +4.726106957490243 4.41092430897397 2.256273306347822 1.9632503278548108 0.43035167927016227 +1.3950790965366195 2.0898435615619295 3.4343737390355895 1.518956196259575 2.0375284108537017 +2.37947212162582 2.777346071844334 4.419011950278705 2.729944983461297 1.735295622842472 +2.6046677996870873 2.794336224352734 2.2501023658327073 2.7305432825258458 0.5165245257953308 +1.070657687448898 1.6041920747594482 2.8729380487274754 1.8585532834229714 1.1461393434154148 +1.320047026188365 4.2925205819258565 4.331042315113587 4.915955949716285 3.0294756971302514 +2.616954401068286 3.282677368040513 1.4046655979526856 3.3881251105738257 2.0921994902402576 +3.7787253135388132 4.638593321722414 1.406481573900979 2.6776600702093316 1.5346881640823316 +3.589116860683489 4.996550254046788 2.423001796479325 3.353553375597966 1.6872447949702873 +4.157125601622793 3.656192831921025 2.39908629533793 4.954254424203134 2.6038083275328834 +2.8037790252529833 4.01765273834176 3.3749268439769504 4.052121785652119 1.3899936619849635 +4.388742497241314 4.852108155453831 4.974242658722655 4.57088373157327 0.614333913537111 +3.433786647900951 3.524664193609802 2.007039465995514 1.0799585073437217 0.9315244667794779 +4.789533954276436 2.5975426652615594 1.2921193879143793 1.3547045507864062 2.192884564615479 +4.44525703256357 1.1360473945860239 2.085229014796317 1.7197232584070377 3.3293337000122385 +2.19706190806863 1.0200626215737278 4.424550970420695 4.161075283176519 1.2061288315011378 +1.3857305075625574 2.64571773746713 1.8886761506908143 1.222434609628566 1.4252879044458342 +4.766829083961012 2.9848909583707757 1.922105377340078 2.1081324671943094 1.7916220476405393 +1.8468964557699215 2.117845044228394 1.9066617701723034 3.5500026101420508 1.6655276202753628 +4.605041042891126 3.969122537652342 4.067983556063312 3.386308051261526 0.932241298780471 +1.9046192764271455 1.60085794917808 2.722525639385699 2.08128454706489 0.7095499153779797 +3.591271596067095 4.798013830823029 1.3151718596063033 3.1896906624053596 2.229360348438752 +1.8204593950485517 4.323702863110329 1.3322849440026672 1.7419002777674781 2.5365355471684623 +2.2676739300283844 2.6239131353627254 4.076434131296475 1.7755307635089013 2.328317564103626 +1.6092233778546174 1.2289442174187148 3.7282890505651967 4.303501110427772 0.6895514148148646 +3.150501742397788 2.715524382375577 1.1850649436338019 4.04152019593377 2.889384348286667 +2.9842498258077157 1.478423853726893 3.0034089031538036 1.3176782167538201 2.2603539115067166 +2.9344639019021996 3.2916298252481986 2.095966282015002 1.4430330972305856 0.7442373550100267 +3.7940749518749226 4.245793946498701 2.663975558462521 4.272979983371979 1.6712107256363968 +2.6914617509173664 3.6872772032410333 2.0965814709838497 4.3868582075049405 2.497401838899036 +2.254974627516197 1.945093824033318 2.910181398415643 4.135842858132918 1.2642278774823295 +1.3993703272535098 1.157901731922676 4.80778673139938 2.9859822997701784 1.837737323350333 +1.546041285032902 2.807684410652164 2.438333875587587 1.9937776206081161 1.3376747139210314 +2.0396973326694416 3.426000493855208 3.501878617016623 1.6399827106706684 2.3213127365310933 +4.471605941494177 4.2270958994531105 4.851654174472366 2.0508210137489855 2.811485649059345 +3.7077087426434647 4.180640759248582 2.7752732902309805 3.2299494876213726 0.6560450722348042 +4.878140254695094 3.28987666194704 3.2070572448332872 3.597835632150641 1.6356310672163534 +2.9710837138952075 1.503329035331166 2.1827029125213904 2.7475716230034415 1.5726984633197454 +1.2590494573237017 1.7359498496038763 3.6682187197126734 2.5437075442589374 1.2214578862479573 +2.661139650514582 1.3350484873851278 2.4764232279261313 3.4108699494786032 1.6222541256998522 +4.857253232551038 2.460135156166262 3.1161388765612337 1.7539687326139477 2.7571149002520765 +4.847423331923741 2.891476805819864 4.5778406264258695 2.7526775646199284 2.6752470942248796 +3.9270445381604886 4.87684009625727 2.7207602510358484 1.8902834384310876 1.2616668888635145 +4.079715400305795 2.3328656982448237 1.484524805058872 1.3201448365636623 1.7545667999916645 +3.255143640570725 1.1263682704955902 2.2166500175689 1.7493798657079482 2.17945542993168 +4.5486233796557265 1.9839153578048845 4.292301859259029 3.8819180946803185 2.5973336465644636 +3.2137329161342647 3.724151221909941 2.823778569023099 3.453415809097836 0.8105367980294562 +1.6852322110198954 4.086956746031719 3.3850266958943274 1.98524363666021 2.779869305380486 +4.411479517213232 3.0252848428537624 1.2479950881704318 4.074235553260436 3.1478835495829136 +3.6610329234803607 1.3985975030747326 1.9808330896396753 2.7118135686289624 2.3775925833013103 +4.444817895657723 2.1292638564116886 4.1490963505542675 1.4700505632229786 3.541055893273382 +2.628830954704632 3.500678295991623 1.0875033938465797 3.0755022834721077 2.170773450100569 +3.6832843581700243 1.5848090480170578 2.015618984113996 1.570690832322422 2.145124632178339 +3.1860556892944594 1.3320181984779529 4.67175886866019 2.4314672658092977 2.907982373254244 +3.0020324696815757 4.074820540275577 4.6571046638869475 1.8581089407675466 2.9975408758596602 +3.1249233132652865 4.231201294968557 1.6882140114727697 1.6922802125020588 1.1062854544792098 +1.98141637777481 4.610019720528035 1.9981625335682076 2.312550190943683 2.6473373666088476 +2.8126717118568343 1.626844269415343 4.432743485372668 1.3617399899698102 3.2919977509141614 +3.2028005677134743 3.570948219202949 4.956281457270423 3.07685792570692 1.9151411186363905 +1.4728945623853011 4.6881287375811365 4.713010209735832 3.143438785690422 3.577888379551154 +4.448001084415816 2.837803681886279 2.059947706432795 4.932880085891107 3.293398872297867 +2.307557033929942 2.1319118559557095 2.335564052360527 1.77210957270096 0.5901967292302064 +2.312774504048563 1.430681695637607 4.947122357392323 3.328088117535586 1.843735228409657 +4.752904272461558 2.622181966285266 3.928347564633486 4.397179949158315 2.1816923135072126 +2.3791215302499538 2.8863802862548944 4.559864282968473 2.5690120730553105 2.0544595316675873 +1.5453908205985099 1.2004071146021875 3.27712983859694 2.6101001280420997 0.7509609791233036 +2.6808407160070273 3.4215811449690086 4.395089501181451 3.1776350627169156 1.425093573361334 +1.6593920220987077 1.7385485662085536 3.063506531735315 1.3896776943905405 1.67569947639855 +3.6383018588738616 4.194166995270868 3.1222082449019677 3.0417077266555506 0.5616639416053018 +3.8553467832472696 1.2867113684520337 4.605975509010629 4.835239624748931 2.5788466276429776 +3.8537232188163033 2.9170919328183045 2.67823757623084 4.596166548954194 2.1344155430285654 +4.391154456687345 3.828381518082329 1.5891571633604782 4.744175058560446 3.204816890160522 +4.321754029409625 2.9593665046413205 1.093509140612257 3.2269551702623387 2.5313418830877046 +3.012129715851931 4.656862327772398 3.9886253208328304 3.1744319445990974 1.8352264761106751 +4.897489380004622 3.656223176332157 2.802554912447748 1.8155376176200408 1.585857789547492 +4.585951976596869 4.021085205664367 4.831039330581245 4.589156922796093 0.6144766619650044 +1.8345271383045718 1.985117567657439 1.6305044122961654 1.3314031729526437 0.33487166017671843 +4.549474588687799 4.291437813568798 2.123345943455457 2.447216976592933 0.4140959108942634 +4.228713860462373 1.0313137589462427 4.554227136384981 4.239324377571857 3.2128696140185147 +4.126604268109183 4.68320450191513 2.4938607202705856 3.362610246393539 1.0317604176414652 +4.207395662847668 3.6553394118182667 4.749864480642055 1.8535415082835858 2.9484661884634247 +4.89191252567087 4.133879228079936 2.8945028442643768 4.701854960704456 1.9598816681261706 +1.1869274961554552 2.8086693128338074 2.139244084605733 1.3329533874405297 1.8111187725542328 +1.0028904041806013 4.850640855050206 3.5208753229956073 2.244991787875804 4.053771370878858 +4.019412543384403 1.6993498564672165 4.086267164705637 2.708791914330227 2.698171406086388 +2.910946533429191 2.267234499464823 2.5586626048504093 3.472795013865399 1.1180354394571275 +1.3161691902317494 3.667245631427771 4.404081794233132 4.07258895235795 2.374331050330057 +4.661105478125952 4.98464204604209 3.2946743372433125 1.8531987388446 1.4773380830256424 +1.5785017093465665 2.1842252820705332 2.5129420674958807 2.562501267340717 0.6077476127824337 +3.8785507552338485 1.8452827656725876 2.331259134375937 3.4458283560349714 2.31871586600086 +4.2441288901598355 4.078701751733442 2.9778727803579534 1.6427783351682423 1.3453041721872299 +4.15976988680098 1.3796230783863916 3.5004765010570873 1.4106029319828086 3.478043675840355 +2.2858508066919456 4.673413404502326 1.072604738685139 2.748030381625763 2.9167629734837996 +4.747065049904719 4.412917982565151 2.05802121563557 4.70462128180191 2.6676105736863676 +2.4668451707573795 1.2982555498129664 1.5722629205613847 4.454885469945167 3.1104846028223423 +2.4263193481383682 4.212053035262713 1.8142661208117885 2.9633931917408995 2.123520149768498 +3.9863034473137287 4.147456369354186 1.2955996660418965 2.5464287592127115 1.2611675878346624 +2.6212838350244283 4.418979108306715 4.216875274168063 3.953583818583801 1.816873877341285 +3.7711031804291224 1.5874635648605486 1.5805267134739238 3.6772766676205593 3.027316029240156 +3.8693376984273953 4.316191301608406 2.715766484885694 2.0444012852405034 0.8064796178270588 +3.690120876327018 4.63231285827073 2.6984634335058337 1.342096204192976 1.6515016777444878 +2.116014328225632 1.7639507977489965 3.0078673190713383 2.43421221130238 0.6730742248527184 +1.7535803911998862 2.633058691165437 2.419478395543127 3.6327480483202708 1.498501027847584 +3.4340239730883293 3.819206580271563 3.5610082925020894 4.164034452686211 0.7155460786999531 +1.5291194377374429 3.65408010187192 4.31576910307824 1.0412720633656933 3.903561026448167 +2.359224415110462 4.701595126227163 3.5975209590281048 3.428704223958416 2.3484462178932155 +3.412431713031023 3.983869867768038 2.229595555595709 3.301414358956821 1.2146345590043497 +4.722999201253671 3.5046543925274682 4.497103067524652 1.7657947042210336 2.990720556722473 +4.2816107660812275 4.664280524081619 2.4020276454213327 1.2866886905011827 1.1791595006827746 +4.930417756321628 3.741020333587501 3.0354274657772797 3.8379188531346666 1.4348026540222758 +1.7106443426843638 2.186522918159403 1.2769355070599402 4.126302144232337 2.8888320566670687 +1.9243149144362643 3.0282412558684455 1.6778847568555921 3.7530586638166716 2.3505318784138947 +1.9331676884804558 4.457632627235528 1.2951547524653209 1.27621382998074 2.524535994108267 +1.4273035301038712 4.213185860378216 3.492931979807811 4.291076553434442 2.8979605101768464 +3.950403256393583 3.2039283178685825 3.585144800908324 2.3048482792588914 1.482020248577441 +4.835401228197916 3.8296659644376243 4.851136867319206 3.9084339325207984 1.3784746076908758 +1.559013801857851 3.6942993885170914 4.3110887288365305 4.375370044859814 2.1362529401230517 +4.1069349668105914 1.4324846940918246 4.593496433127104 4.892031082527784 2.6910606084104227 +4.095251989644561 4.704134096499441 2.838537508912265 3.282722787114614 0.7536829448911099 +1.4083940340490346 4.661000647859801 1.845981207732255 3.9288028782600803 3.862330371087624 +3.8884981056451173 1.7425335216972062 3.2046343759878124 4.5114230027919895 2.5125406485673976 +1.2976370186843567 4.802194109043501 1.6129910546119364 1.8915340157994036 3.5156089914570474 +3.545915254906615 4.726948504790306 2.8386895544487247 2.6724593488665245 1.1926743137079516 +1.064211610976591 2.287532605688517 2.167884574127179 4.228485742926491 2.396370470724438 +2.674017041855671 1.8271452914366026 1.2036354958788205 1.0960270008812802 0.8536810586240581 +1.2846267858760108 3.833334639489895 2.6156276478739144 4.962404724833877 3.464574197793697 +1.4029386512039936 1.3660155380653278 1.6574292239503428 1.949048379880086 0.2939473564926662 +3.2288951688448466 4.888426519103695 3.468213854892014 3.43035168197224 1.6599632064085528 +4.082433893131299 4.116050928712907 1.3881768441061508 3.636283811638225 2.2483582994148312 +3.0893045586750243 2.9809534005905447 2.757122171287265 3.970220699730373 1.2179277536738713 +3.4610222274269526 1.047959057330465 1.276415271167521 4.993766763754742 4.431881765380993 +4.92559484943284 3.355985376934424 2.5849070546863793 3.8236807784842015 1.9995585100038153 +3.951135914151441 2.864277457082388 2.345888810533769 3.5746872011304247 1.6404898019906902 +4.029037964592288 3.5690572347142875 1.2152409176909065 1.3884538682384697 0.49151296839095737 +2.297009705303001 3.5844817665643864 4.96089270718565 4.82922959125282 1.2941868043778622 +2.7957177669499744 3.2307864444673493 2.4869896494298622 4.19136029484326 1.7590236073184458 +4.620400203481983 3.131243955541803 3.230451522201809 3.3545247884392966 1.4943160663574873 +1.2238548870079997 4.716174645797347 3.468256695885903 1.0371214803158928 4.255198671509372 +3.2932935266064987 3.056219455702254 3.0333662518883777 4.575418083535074 1.5601692108806793 +4.444488424096862 3.0869389447494346 3.808252324230248 3.9791947349826167 1.3682696724952663 +3.957451849955312 4.729438157197764 1.8556716615330742 1.1408454220611373 1.0521118815066335 +3.68155948263414 3.089267013638815 4.187950346165727 3.8827171967030543 0.666316474627095 +3.1820079019691314 3.8736081184111875 2.7256006634664236 4.634168840374821 2.0300106761517642 +3.1333687822410905 1.2917366841413265 3.325050974398898 4.393295465131507 2.129026790985005 +4.210794737065044 3.360982328474211 2.0619473542081797 4.549471906264345 2.6286801872569394 +3.0035458783796383 3.7387731521551033 4.131844389331157 4.008883122870234 0.7454385401580581 +3.1877608338433263 4.249056419959672 4.793297182518289 1.270643634432464 3.6790537290112644 +2.843267153034321 1.915186801426548 3.0134468142316857 1.473211475164491 1.7982374811886899 +3.4070072792819004 4.89536054126773 4.304657862002248 1.657940065129016 3.036496423305872 +3.3379897548639037 1.848159200238407 4.2025366145166325 2.464934141124537 2.288855049371638 +2.8573369452526167 3.7196663886380654 1.793241917125055 2.963182739557319 1.4534007007439278 +3.673737699154494 3.951091536418597 3.9337599528591904 2.503477347251966 1.4569260389421674 +3.7653258630313835 3.819541940887722 2.931035032295171 4.102875839550682 1.1730943102101268 +3.08636434739842 1.5880999868338685 1.802218475466569 1.591695421807307 1.5129825016370562 +3.781223613994723 2.265514181300513 1.1549297609354685 2.518653154288789 2.0389008259200097 +4.458523148616452 2.8745068221343946 2.839504576904093 2.3350461768414124 1.6624036814069896 +2.1176272112800105 1.5990739441624107 2.7928271978141694 2.5784839733436926 0.5611065038963085 +3.9500002932807377 3.8204489521450142 3.3294060275321136 2.2243238630905173 1.112650052872415 +3.7950871066877845 1.3494984817419655 4.971230525860502 3.368807081907196 2.923809948713417 +1.6197808998212695 1.719701793663801 4.556885771599461 2.354361038764471 2.2047900997092977 +1.0135285231644318 2.066718080026799 1.0009163360952655 1.0753542021256361 1.0558168584480476 +4.005437104419988 1.056386494089927 3.0198798961417683 2.8058610845004326 2.956806309859419 +4.143173304252752 1.1011855101626828 1.3160380687670021 2.569005163799223 3.2899264855960606 +2.865915266730738 2.6254242937610206 4.447112243068201 1.556422124167602 2.9006766920133447 +4.175440725235719 3.717368594856671 2.3775820121977214 2.4691807966815156 0.46714067897038014 +1.5845063416456666 2.3392750867731147 1.5976921002373836 2.1733575075873555 0.9492452369333605 +4.809914315948328 4.1585780674608595 1.3821732097497454 2.7752716942569187 1.5378433912885643 +3.888452930475831 4.920013754018504 2.4003826865938063 1.340020152876042 1.4793533842799 +2.0336232668498107 4.329015549671766 2.293270684238487 4.749363474455823 3.361728354016155 +1.1450762291069787 4.451260353070031 3.6490014938882154 4.054748511500769 3.3309884574772726 +2.7896874337238624 3.0298945866046334 3.439218434174903 4.427840786724161 1.0173856851042853 +1.9865917911629953 2.1102427162296333 3.9522873340919378 1.401736592477158 2.5535462864067178 +4.146386299761749 4.177254292448968 3.857513945508706 1.6875821209654172 2.1701513671028354 +1.9516068852325685 4.849247558220659 4.720212475704653 1.7439236769483153 4.153867653567855 +4.902998662946867 3.630709330126035 4.023083431113989 3.09170947062296 1.5767617450618288 +2.596739317033073 1.6428065900405828 4.417621968400535 2.6504359483262543 2.0082166409960123 +3.6427851759484446 1.87267037237728 3.5685350620547394 4.412848580061604 1.9611659120306246 +4.27049410956135 3.7523311596330897 3.679025128326767 3.6373645912886987 0.5198350151967993 +1.967459813688436 1.7847245075258078 2.9550567893618744 2.5106933458845204 0.48046962652950403 +3.7973040684440855 2.637024548639083 2.829459252129579 3.998248534538164 1.646911336639621 +3.995911629464262 2.631725451394394 1.926523635708857 4.506567410142197 2.9184978681556557 +2.7551161300098084 4.0910804508370635 3.2444052924726647 2.326043488046293 1.621169044348149 +2.7651234229985144 1.0959125173236037 1.5458219752886548 2.4332007139261815 1.8904248393972143 +1.6333227628223104 1.6784259751697386 2.4629591840536422 3.181789556909046 0.7202439897031396 +1.0960422404266308 2.191555187781906 4.996504718755675 2.684729713599637 2.558212714433114 +4.5391115404678 3.0456261729176313 3.834480607278206 4.929901558681618 1.8521462155726314 +1.633055156369728 4.546209014571563 2.9839385774624776 4.093205463537929 3.117200414811304 +4.199029700069171 4.20007615726527 2.593313757509772 3.7584057747574287 1.1650924871987103 +4.159958445543044 1.072884109657501 2.413232653120269 1.4585920107390256 3.2313103706343713 +2.3140490897254495 4.442173047575876 3.3799897223893094 3.907074609055559 2.1924256105348108 +4.474077792456125 1.1853744208861974 1.1218581028818564 1.3687767428983766 3.2979597755222874 +2.9415702739572613 2.9728158024773355 2.0508940778240015 3.6096529252954395 1.5590719764087175 +3.8762593193007846 4.682510018321375 4.349396516328352 4.893465640066673 0.9726517367879296 +4.804771851345459 1.2261925246726788 3.6604127968125337 3.426281525555749 3.586230256058599 +4.712371640478693 2.210998105983833 4.119293020304701 3.0543417255838197 2.7186376770726532 +4.829907429840622 3.3118518023601955 1.6411611789338076 2.1582491674796667 1.6037059817882435 +3.3496026406196906 1.1663442800707773 3.299318292759738 2.9619222258809375 2.2091747723645616 +3.3950210292359952 1.6978598154929418 1.8939351145271535 2.2958746272364614 1.7441076679238554 +2.8836525293278967 1.716409881175362 2.0925316936614244 4.033496180803233 2.2649058567657523 +1.6135630720852205 1.4620180874433708 2.717873191882267 3.0681387549061836 0.3816436125635536 +4.414598443363806 1.8247377127892586 4.7682202367203885 3.9692122885208425 2.7103122154206103 +1.6794720742847842 3.578625832770074 4.967953244118414 2.173894178816952 3.378394745846329 +2.69386957919484 3.7336627456746423 3.643875599973419 2.3905445703667088 1.6284988482750333 +3.963502834782502 2.3617492893594836 2.1966111580156817 2.4225780971507405 1.6176141313234365 +4.351512769484215 2.053258207987392 4.226986665752863 2.7709015465909945 2.720690703421759 +4.294266069013326 1.4487346439812545 4.960683148781136 1.3432045107350636 4.602521133853132 +4.428394370366444 1.7708049913952384 1.7101127003758734 4.834558165482088 4.101821640642527 +3.376651610291187 2.985215289062149 4.237728824597797 1.6469237021826904 2.620208689381378 +3.8082536824074062 3.1490214419332627 1.8683798160218177 1.0214410122248 1.0732625420919535 +4.554173815196014 3.434056161453096 2.9615103255530744 2.8077000446213916 1.1306286573171689 +4.981162137199167 4.831340684815081 4.085647736531138 2.4117128102148877 1.68062625385178 +2.9909454141215988 4.954491399814286 2.670703536903408 3.069055545799921 2.0035461464417916 +1.22359370290696 4.786424013089066 2.3601530086248763 4.931671058476674 4.393912254456832 +2.678553553872952 1.10572347733231 3.5010781500408634 1.891497599251899 2.250454176193985 +3.8616407114244398 4.061099991069327 4.182085793001696 3.5750283297582746 0.6389857337343262 +3.4889726643319188 1.9798223199968703 3.3265856017111273 3.350299003446344 1.5093366381389046 +4.082367264843597 4.619633694291958 1.4661487519264162 3.4723629594951064 2.0769089202135604 +3.4977874268203117 1.9160140028769996 2.2261123125589326 2.9102159669535146 1.7233702372529738 +2.2527814035451508 2.6568686934756798 2.9393582904933293 3.2767498515736793 0.526421507322445 +2.5943001567308586 3.977316723287829 1.4423359028704494 1.9114116977383748 1.4603995770685523 +2.8822162499574375 4.633928078041691 3.146156506262646 4.074456579059678 1.982482119416277 +4.726389472697692 2.8427658501298954 1.6528219600467562 1.754732467669561 1.886378462307966 +2.1751885249604914 2.16809582377303 1.6344463304042232 3.883034914807213 2.2485997705944865 +4.8837223274589 2.8767646062384036 1.0483144307275034 1.1770521536206933 2.0110824687372446 +4.638231707292365 1.8230579157356432 1.140003748690325 4.881030406795034 4.681931645519607 +1.843282217548753 2.786835520406324 1.5767135799493412 4.294367241441236 2.87679235593286 +1.8615430548733953 4.466702850127744 1.2411194498487252 3.080974349116114 3.189345326108149 +3.922453204539967 3.478828474385781 3.595193744895718 3.1044397720445085 0.6615454353811386 +1.7652970211046437 4.45351676747506 3.851803423995832 3.9913627525876936 2.691839930414295 +4.270922837447641 1.9476021878207734 3.7722012115167876 3.954883709578867 2.330491736969005 +4.4459635536410245 1.0046672141119752 4.095378285818837 4.663332275255392 3.4878492270413486 +4.768842792639357 3.2735828149501476 3.5624432196669176 3.54029530011251 1.4954239971391805 +4.442178038883411 1.331681096413933 4.805675214171238 2.0164431068815554 4.177918976888807 +3.833424881612431 4.655508652589232 1.6159979956002442 2.1395888181949294 0.9746635706790401 +3.771962042286614 4.735535403118362 3.746504957317818 2.83836436068125 1.324081932874251 +3.643863564149389 1.3018102411935186 2.0060644010828943 4.175863377923263 3.192685604231357 +2.0956535824209173 1.3636667754155392 4.812349413434681 1.1195163081649904 3.7646807340072965 +4.728743706513203 1.7171216522531645 2.3759881517777894 3.34850248148831 3.16475141507161 +1.3851651239562783 2.706726557743712 4.386659663954057 4.115682019078014 1.3490565248709425 +4.019189373428327 4.26528933715716 1.3732043691338043 1.5405395638423247 0.2976008392721218 +4.640226022784843 1.9096134321675482 1.643402203577819 4.0998099347267365 3.67289859126084 +1.8116863151807396 1.5882545694852697 3.5796130190057496 1.0164622516429107 2.5728706926733094 +4.420140028478083 1.8128708974227123 2.1918713050974055 2.7738080151520386 2.6714233390205 +1.9455963407381596 2.403721521917677 4.299535194055351 1.4278028077272276 2.908044975635106 +1.467389549444325 3.3080085370242736 3.0778891731510543 3.8355024743205357 1.9904412002238987 +3.763727052603498 2.727163466604645 3.762167632880669 1.4185223659223678 2.5626426214271176 +1.9102772616223693 4.064419294488952 4.144210013402521 1.2134630141331586 3.6372525168716217 +3.6153788171055026 4.131132012011152 2.3090836586956156 4.41862651264781 2.171675024195875 +4.270693831894047 2.5430646906015717 4.175510589197964 1.827152926109045 2.915387823880628 +1.562222571054078 4.907841575642873 2.7053695641952893 3.6291189159273936 3.4708038533877428 +2.710203875256005 3.5026230670980945 2.4805153024954953 2.721286066694995 0.8281900364607638 +4.198493617948508 4.1626604973858905 2.6441841331975233 3.3544055831271917 0.7111248276283536 +3.417866537736227 4.742648742893834 1.9077355752298604 3.6168976373688118 2.1624714670388894 +1.455100708758224 2.4656939953004096 2.0125843449626517 4.854831838586744 3.0165658629999395 +2.555409470179413 2.9603047733553005 2.429540583819291 4.9848492852093305 2.5871881968526265 +2.88591558063071 2.4856817535530142 2.561760225364926 1.087764840103557 1.527366855771419 +1.8547827727475998 2.4318608884671424 4.605002769532247 2.426898252423008 2.253255076349344 +2.2720215720183696 3.7178260053526526 1.2295576558028003 3.6833264436103628 2.8480399792607654 +4.89324943187011 2.692434712076696 1.5589706235787197 4.7553197226621915 3.8807516016966463 +4.77911557147643 2.7877448044788142 2.1484434990836094 2.778930381107922 2.088796600930165 +2.1348437792957635 4.489291153181369 3.818989937566257 4.51586150041655 2.455412880048126 +4.206466489847551 3.1925101606288377 3.5822943268668133 3.5846075819369196 1.0139589679625634 +4.066697862070535 2.0163093186443706 4.390996036756551 1.1349470241021975 3.847849834884498 +2.3344026221946597 3.7252636432232267 1.4256907761301751 3.554691205618313 2.5430566664109757 +3.811096011170889 1.4744058578532462 1.0650387494293136 1.882833764353958 2.475663458357624 +4.105032648124492 1.4085250804937912 3.1530942805249875 2.4129612293316356 2.7962385441443334 +4.301935731108708 4.886940374192394 1.0050410717593619 3.6891437307565584 2.7471143981394897 +3.1685606757021154 4.316011518070598 4.553506320794485 1.380832157370714 3.373796790399336 +3.9811545501804173 1.3568446563871395 3.4706646357152553 1.2613815839038716 3.4304422487023896 +4.296703498709606 2.321079676171152 3.292881898470328 2.6463726248624417 2.0787168467692876 +2.6537545428428815 4.020519647800424 1.173907148796696 1.3698538241091645 1.3807396393584173 +2.8269056620674755 2.8284991361738054 4.448400971671987 1.4320193336200226 3.016382058946906 +2.9583478913931596 3.765731694699946 2.775628197962573 1.8159106737708668 1.2541635986117563 +3.0496933471572194 3.766825254711534 4.716755613591207 1.8640644090861689 2.9414495204053557 +4.424373578123131 3.685492594866557 4.38718306241476 1.780647779809878 2.7092381377210666 +2.927097507221256 3.868075011803844 2.7387992436589537 3.790146724018658 1.4109465576658717 +2.8184957103560047 1.9805523855571852 2.880613674228696 2.3672279914814567 0.9827074207640588 +3.040126920824882 1.4251543738831471 3.0475540477890855 3.8494189768833085 1.8030872668528157 +4.295776586756036 3.050667597455775 1.6360417041880897 1.214445615380253 1.3145492221040576 +3.694584422625337 1.9700197208884402 2.4949468901041243 3.983048220465425 2.277843054273043 +3.432782239895863 1.622908321376228 2.946204337406989 4.585136028807055 2.441667604325597 +1.4914626288384443 4.138136303346368 2.8030853495580264 1.6671211602817855 2.880155582368998 +2.8886376526896513 1.305769180857133 2.5092919908119034 3.792607101656301 2.0377365562905774 +3.399483460615393 1.8061506668434046 1.0964262336693014 3.894818486761104 3.220203191395454 +2.896420557056874 2.5112573102515396 1.2197817877992279 3.3076562410023826 2.1231039680213493 +1.667435175620215 1.3688903985144738 4.890361475319747 1.5014580622359257 3.4020281196880617 +1.874922940580865 3.8484043721534746 1.2160835287271397 1.2452102307988833 1.973696361028072 +4.866616983995683 1.3058131962942037 2.237335862277185 1.5619080484695518 3.624296669172401 +4.381480926379501 3.4926257909499596 1.7160587107017498 3.8173257166306036 2.281531608806829 +2.7449569423325237 1.4028315874999846 2.238181206680377 1.6281271067404597 1.4742681143326242 +2.824344132612848 4.362856255363134 1.1184684287134297 2.4351869157971247 2.0250350925545875 +3.946027953839289 1.6025576573655096 3.4605723787069755 2.4122687587739433 2.5672540797551773 +3.729150580802978 1.943820813693176 1.632990371728536 1.364398570020628 1.8054207081101734 +2.2498150952948905 4.43955889684867 1.3503155091377814 2.137075925035079 2.3267939033068843 +2.984464224590113 1.6905522545815326 3.55652057476828 1.2923237451957847 2.607833481872956 +4.353544787359059 3.3494643851800583 1.164503786658349 1.3004332817037003 1.0132394986691096 +4.530277814773649 1.8326053779610274 3.3217349708049313 2.4923194459935494 2.822298121945428 +4.516052308460705 2.312338112304306 3.247503885262037 3.5507961056353703 2.2244870036213364 +1.2043672658699718 3.8237623087716877 4.759324051065784 4.066271006189384 2.7095300171414474 +4.530207509850072 4.490327472032878 3.299882054633576 2.0563647991787426 1.2441565745637575 +1.9905096449854036 2.092537297081895 3.150682296059626 2.794709685105232 0.3703054705807232 +4.007938874211829 2.5639450020502093 1.9538626524144793 1.432111705255683 1.5353639157220709 +3.252889356017791 1.184488157823111 1.47254096859738 3.796500265515433 3.111120430074194 +1.5960215020503932 3.1727762369311714 1.5133936743082743 3.639992797286133 2.6473721543861477 +1.894904406954132 1.830173436099043 2.536322900238963 2.350911395866633 0.19638616178705942 +3.6151366588960547 3.8187067020596723 4.758228127466076 2.1030330386407523 2.6629873680128027 +4.574180593239804 2.5085125979702543 4.786362238443278 3.853239570645236 2.2666499905895168 +2.4465190885278574 3.433510016935969 4.598937871036096 2.7423904972158337 2.102598212688011 +2.2812356343491538 4.956492937600135 4.042317289106418 3.913837961003547 2.678340638594628 +1.617215831822456 4.03116602208819 4.957263000695829 3.3386331835564076 2.9063926104394033 +4.264431295636878 4.9312559059937655 2.9078923240771917 1.0455358327451507 1.9781371948841682 +2.0438230770116026 2.5378928817119553 1.7305478849028137 3.039890482289322 1.3994581127163086 +4.323225634635741 4.442525270297901 2.649485625728013 4.021305035910162 1.376997057811535 +2.0205898479812237 2.3332733328361113 3.895689376273695 1.5014681434453787 2.4145530173154075 +3.7517435132816406 3.621525457213133 2.239071124385489 4.37998317180339 2.1448685593540158 +2.0724736891441253 1.9764917621031635 1.0590783204968646 1.2548468271652031 0.21803173741831222 +1.0449452818727218 2.16510849974913 4.202040744151969 1.6079257370271738 2.8256323725625214 +1.5501751322282895 3.324712207359847 1.5307293295700926 1.1653436036535059 1.8117639359806381 +3.872698098769042 4.961482393278196 3.054119083417615 1.5456381306410356 1.860367174742538 +3.4626646277811126 3.8223041406294667 1.4994793385020273 2.2907716571854886 0.8691858908250006 +1.9960918244756365 2.817445569438213 4.767802811526148 4.887427265067079 0.8300192673962545 +4.6613442662759255 1.1631978604608815 4.114297995600291 3.4017062242899505 3.569988138503533 +4.914601643047261 1.292956305104938 4.873568707934097 4.561216347823955 3.635089950841071 +4.7400762779008225 3.86229293027882 4.713989441420049 1.815480782915039 3.0285072310943884 +3.8972233165308894 4.243569613297213 1.8618465433498455 4.09948888554865 2.2642877486937696 +1.024363846535862 4.112617863813002 3.4480499148453774 4.478850744276795 3.2557431141269255 +3.8486708876662883 2.519803255795758 1.3061341110429758 3.030481733457589 2.1769850495490592 +3.2234146133206756 3.776349223318242 4.34171355565185 3.6615333344908043 0.8765739080031131 +2.7348547770118845 3.0596069948305256 3.2509619728838475 1.5449654704207028 1.7366312416269059 +2.3585342409570833 1.015340971596927 1.9724282166109304 4.690564235152746 3.031902302870061 +3.330972312379109 2.665461837298779 3.279872975232363 4.689376473432285 1.5587188020549003 +2.1516062396776765 2.7480351895381188 3.0272385898410206 2.0214282361097493 1.169351084963218 +2.314732716112219 3.2730408220245253 4.6872217374936636 2.758049666444496 2.1540796887704428 +1.0483338791738843 1.6469734509550702 2.7431262822575047 1.0570148444187644 1.7892291965293283 +3.9742730466681353 3.905790372569776 4.815325218925331 1.8992522493563264 2.916877001263964 +4.570215866266609 2.5357206028846293 2.9024442923895717 3.6915292764103618 2.1821608759967264 +4.5130766881197655 3.6778845816851753 2.8322094717870896 1.1144047128259307 1.9100782823120765 +3.343982488891766 3.9341361435403117 2.5808394645463038 3.246400379884328 0.8895238434806699 +4.579794731315408 1.3282146261105416 4.729052890235464 2.379137413231816 4.011841962194595 +3.6999800821772437 2.465790036896379 1.3298234667889055 3.319129872326591 2.341060666233075 +2.2953568243139015 4.7970975170716645 2.6581659447096713 2.204431228888515 2.5425541658225095 +3.2242113473944753 3.221674619865159 4.350269161316348 3.389224771091276 0.9610477381325225 +3.613832009687282 3.904891202833557 3.003402607834814 4.390134181050534 1.4169473914257749 +2.654383837627758 2.9677072284204593 3.145830722351357 1.982925574367445 1.204375327887997 +2.1705963296564943 4.03416727993489 3.040135339172633 4.22093179078743 2.2061679326079466 +2.391892062378535 3.6286283624817934 3.973776261604725 2.986979730901981 1.5821770030562536 +4.266016405573872 1.5681968981120367 4.787690428940945 1.5998386715177366 4.176197902655939 +3.932369776679403 3.4368846777659035 1.407077151899768 2.293373395319221 1.0153947578871747 +2.605921987533026 1.577612866071537 1.5419688028849672 1.2511957947193935 1.0686293050251598 +4.200330380908775 1.88134410221637 4.485896762770892 2.384135101551264 3.129712357603545 +2.8936964440652195 3.607590931647855 3.3478517262943543 3.205951722247271 0.7278605295998923 +1.4431228362797919 1.0154106395579117 3.4731677202113973 1.4608989720937258 2.057222214024464 +2.7544433301392335 4.371142809304478 2.0170858687210615 3.1084683575709904 1.950598098763925 +3.094675729951161 1.990337536119434 2.1690117350102587 1.9866242851767364 1.1192980068830178 +1.4612538853861001 1.274397567153323 1.0419458071628105 1.3432455298742019 0.3545374543958229 +3.18378984537375 2.8042902881433434 3.019908619148734 2.6437533050809656 0.5343339164225833 +4.226036315825965 3.426945320888979 4.264681964818502 2.930689635741383 1.5550183125050259 +2.1320730913139387 2.163254245294881 3.233639024454377 4.463398590093907 1.2301548088129024 +3.9440549691528064 2.0063612534301667 1.0669180084720402 1.4756229190592323 1.980327407245856 +4.3920023421433045 4.166364048116302 3.0286435096406192 1.3680371806845164 1.675865752230912 +1.4988338788024338 4.51474639567928 4.682618634590362 1.8133773175442731 4.1627243537014085 +4.265622379059143 4.958528093171525 2.212900732855929 4.018503584868922 1.9339906897001973 +3.4603376170917564 3.9512966656149255 4.633011786601959 2.322832491956813 2.3617724616765945 +1.7209158175320711 4.8464438371964365 1.3399964550599917 4.965762308230373 4.786972260596816 +2.3810850720237062 2.0597238439196084 3.2430078224658736 2.8497982610070727 0.5078255587809622 +4.232391480098585 2.7174679074796515 1.7111593849620372 4.106514425143426 2.8342052147646073 +1.5816783607691316 1.5299566311865993 1.9375697931515483 1.6503395351344934 0.2918498902373488 +1.840300774527671 4.864951527844191 4.313902576465669 2.4948806001756356 3.5294975746930737 +2.0600569831517457 3.1763953213830343 3.3510708265128897 4.6627782907583 1.7224365756573217 +4.88007381222755 2.208851328406496 4.464440974039281 3.2484585459202253 2.934968964668185 +3.8795989801164756 4.770280800282796 2.8910482291115662 4.546065101499538 1.8794666670796942 +4.914764521442762 1.8353197893801103 2.4578142717541827 1.7752431520870595 3.1541850280590777 +1.375820702356081 2.1790655992022403 1.6635894563474571 3.185101128064082 1.7205232144552178 +1.1123630916265417 2.024830532009174 2.0674067947385315 4.611446712510071 2.7027274988376937 +3.6374770077022367 1.8446944644012198 3.1946909723205055 3.5152713412389125 1.8212196519093256 +4.154750074515855 3.0048967652079117 2.8382906274633677 3.174270859463611 1.1979337833208334 +1.2904331555642017 1.367272251849621 4.220999996006224 3.1088180428850265 1.1148331460655634 +3.2295122487709977 2.4000727089936267 1.4307069810845383 3.189442715884069 1.9445105643855325 +4.910358966815837 2.9169488950831206 1.7872056426024705 3.274640372794703 2.4871963715532135 +1.1480652175674488 3.939689114362823 1.0783724218714075 4.899257087072631 4.7320527898501785 +1.7622410615054855 4.708802913725296 1.732101004632288 4.892138534447282 4.320655498740473 +2.2764330231993073 4.432553969596327 1.3051070874137944 1.5838077090249731 2.174058778409277 +3.7195156556710915 4.210904578850062 3.3858760587493704 4.756727848387999 1.45626155033305 +3.6213864630155728 3.3734790145929714 1.0212239412286692 3.344991999640195 2.336954448053508 +3.576186527561637 4.106470445974601 4.900591657889135 2.2994390728775995 2.654655496413725 +1.0176375995773776 1.1648956197614417 2.630622004417145 1.388306008550114 1.2510131726307374 +2.505290054781392 1.1972225426667822 1.2811138568820577 2.2863528488894422 1.6497108980975204 +4.99431195724663 4.658503855382722 1.8402311792010235 4.836337079804139 3.014866107956744 +4.382448329017131 3.3009527632347915 4.0599316298602055 4.360787594599227 1.1225626799096386 +2.8413801326289514 3.07122824323066 4.384114703258421 1.1252486051379558 3.2669616464577724 +2.2353775025650364 3.8814008362150036 4.396770610130492 3.9501275497358024 1.7055447336024012 +1.2933510970021649 3.8849419157107143 1.836761561102223 1.2593093690483395 2.6551448182203328 +3.234840873772702 3.5810284077400536 3.196486844302371 1.7611832137750083 1.476462773143781 +2.2476048391691035 4.452420465377074 4.3042088496972255 4.649903808428675 2.23175199116371 +3.3362763766395336 2.422117984295167 1.9569571212102201 4.119213951426737 2.3475604712363887 +4.738052439450556 3.384364448117319 2.5738924761395405 1.719168847438239 1.600944614701 +1.0249299460285526 4.128246171219422 4.606493184580657 2.618509961560519 3.6854645417562275 +4.585069160408317 4.118598930952983 3.2599092180660096 2.0192310753779656 1.3254722662930245 +4.038197300659158 1.8685977166131695 2.0915659483238938 3.3632542868885116 2.514826750600082 +1.3141567938368004 1.7651412914204543 1.2817196409495133 4.400451189102886 3.15117017733221 +1.0472634446384492 2.154941622380491 2.9904134547424377 2.6485619421931665 1.1592296589020465 +3.008094459808288 3.7329705101832147 4.358886578419705 1.931436776149976 2.533368869893703 +3.9770229773621515 3.3322924481641234 1.2293808190032567 1.690269015184703 0.7925246902522071 +1.3089226439774397 4.742072326583448 4.484518868467312 2.47844551719417 3.9762855825337784 +3.2083480869253047 4.816652640837817 1.4209904084699092 1.3061217949697541 1.6124014191581366 +1.785634503066687 2.016727287467711 2.5385775994243804 1.8555152920076212 0.7210949943077718 +2.3204748665404287 2.8348524520519116 3.907082498940285 2.8677506648791424 1.1596529488469909 +3.1175272940067074 4.4964139273342685 1.76133255487442 2.7336751029655515 1.6872398698459476 +3.5926847709625456 2.038748941597291 3.209756361442899 3.1971407576124755 1.5539870383130898 +4.717689323839128 3.0280005730126565 3.928501727052584 1.48048073954187 2.9745343887678377 +2.222382674731758 2.0327841122252837 1.388403878038352 4.118109291109384 2.7362820134360812 +3.537470175860265 3.3085983624262045 1.261584605125392 1.2815554208502018 0.22974146440142157 +4.421327191208885 4.358748051323058 1.2341661379826259 1.4703864328369494 0.24436893511637975 +3.5061712577724227 4.525874343676629 2.2001928443101395 3.2742810673891354 1.481033387321014 +2.1121486492976587 3.532833626533551 1.7316213027091654 4.94133955194742 3.51007650116587 +4.60670811367514 1.906786902296704 3.2065875773519803 3.854900356984411 2.7766677885346547 +1.609315271910594 2.6779450544366403 2.4619896773047882 2.3471284354313338 1.0747849631374535 +4.023584293924157 3.9707125083117343 3.84662798636788 1.614856180519853 2.232397997466404 +4.542272253244833 1.4164869087631682 1.665473235175916 2.8920089452122353 3.3578153415235117 +4.070833595724284 2.0164036893504225 2.3321325929676604 1.2787483769036219 2.308744365852608 +4.596500603942861 1.0885823931837613 2.2633019098368745 2.035378240754748 3.515314974835567 +4.6337992320536765 4.2659674719283025 3.1788041187699587 3.463190602111975 0.4649471751334441 +4.999500201507541 4.117327859324686 2.2355766988685937 3.1694177198610736 1.2846350041162127 +4.093789874189113 4.108046241543821 1.5145162864987678 1.3325860872684538 0.18248792124996688 +3.4151209659772843 4.30532356325915 3.6477266413922695 3.678968515505603 0.8907506491187603 +1.664558631633255 4.282100419806662 2.916638833548689 2.8811041847040797 2.6177829788014413 +4.157627919805918 2.958120973762913 3.7248801430014415 4.4406426457980395 1.3968295794459205 +3.300891795807086 4.207983442263763 2.559819045137502 1.5179814999071106 1.3813908663818406 +1.5031795885141603 3.092923237677108 4.22109951464369 2.4207136372471516 2.401806440490746 +4.689302693975096 3.488553506671362 3.246551871545607 3.561132145348417 1.2412732815445708 +1.7736166607263293 4.1223656895015 1.6937682486501524 1.5851340482783436 2.351259957908255 +4.346638816961116 3.9584617524302024 2.506612465852614 1.0667923571033957 1.4912288151006363 +3.5421395922878367 3.1074225298986957 3.005122569232571 1.726370080149859 1.3506246157491266 +4.784245427274984 1.7650862028202958 3.2980416195971762 4.163003565216654 3.14061802675519 +4.746296165397926 1.2033892609001198 3.000601860517744 3.163137664385848 3.5466332234215137 +4.73016260962854 3.226987323854365 3.2102976488398127 2.258920004749954 1.7789478242591157 +1.236218584985295 4.614937233613142 2.365222144385928 2.776011866909889 3.4035992570684486 +3.9746393328683896 2.9798459793639025 2.4212025060588624 2.557949956400381 1.0041482367417718 +3.942572115552583 2.99309956688239 1.7033308309630146 4.00303548927813 2.487999123021251 +1.1166965815639065 1.0911955867438055 1.158813897374249 2.8556740875329893 1.6970517981730466 +3.095022080379104 3.045384106251299 1.3451454972529056 3.2486735925617762 1.904175185770923 +1.7001299569458759 4.407989124665756 2.4329511356290476 3.462936907845918 2.8971316786045094 +1.7954900455858342 1.5676743718017683 4.860778855097465 4.572560359696884 0.3673824741501185 +4.891519778847038 1.4865886906939352 2.269592980549871 3.131094152417545 3.5122272113576094 +3.4294135692740157 4.452480419787335 4.868177547708854 1.567427149654729 3.4556647654067523 +2.5757452313726295 1.6804863066973583 4.2357651086478185 3.3077566460627783 1.2894526935255022 +4.010274730811276 1.275157075180228 2.214584060382844 2.1377663335212698 2.7361961832633384 +4.233953508533046 3.3906501363520922 1.9538832399209074 2.2080148417600536 0.8807629922885608 +2.1113647637897155 3.633197283902812 4.256048119793788 3.998566128768698 1.5434607850463913 +4.347374228946429 2.497271070937447 1.8133575956747183 2.5279922027980737 1.9833265784971372 +3.0909802116248923 3.8363667265227503 1.7126410767041373 2.900624061198448 1.4024637706691694 +1.0945005290320515 4.486476367657802 4.677871924271723 2.6640820425090985 3.944724296793172 +4.585139067948267 3.807094026243004 2.1795865701138553 3.31943523081253 1.380075742928158 +4.461741389574467 4.239794590110411 2.7028137009140183 3.6895450166455364 1.0113847295849343 +3.014734972767901 2.379304645714894 1.5498120189398055 2.335219213640429 1.010265391877894 +3.3611240270101286 4.115255330193442 3.3475701498395827 4.1419043537388145 1.0952994339107405 +4.607336854228997 3.0792563727541413 4.432208539945401 4.250837788651378 1.5388064554353107 +1.0833607232149323 1.6048566262310486 1.7039064570473221 1.8524388550932125 0.5422359727386753 +1.6393027375472151 2.0822061169524426 4.851284339031505 3.35803888133 1.5575446704460025 +1.3552330087852615 1.7917131484234954 3.418006917163069 3.36421812999294 0.43978192996511983 +1.6415855013650997 2.7154369325208907 3.1870886662669347 1.3881654730594963 2.0950612285217316 +3.860722228371692 4.523833609469044 3.4067751294110757 2.0930593101320762 1.471586204598538 +4.270907294022212 4.728893475429807 3.3500788606375203 4.633614351677499 1.3627966462827645 +4.964652317557258 2.315880176556574 2.6207572949154354 2.9570728325079214 2.6700378266547964 +4.459669718629811 4.383232180608308 4.6131044684117395 1.3300381252547417 3.283956045806498 +2.1940347681046104 3.6053055597873715 1.5978269694124458 3.942546661114665 2.7366760276132496 +1.8720180144223626 4.227198604299421 3.1547431328268303 4.328460745743271 2.631442312839846 +3.6632434135426357 2.724597213364834 1.1771739301289825 4.993937742226715 3.9304888610002493 +1.4196087783839233 4.514935329143496 2.7997156475827434 2.061757957676738 3.1820791957348518 +4.332423797756057 3.536929297661423 1.3254222158519569 1.464659746653453 0.8075881312058205 +1.7439917484839214 2.925753002257494 3.2923187516116017 2.1893962199494132 1.61647696295636 +4.623922588139653 1.900410274934226 3.1243553440451803 4.228388722573645 2.938776789939405 +2.56564736421794 2.281929187063573 2.3113156387723484 4.5552641016123 2.2618135882361257 +3.289178718029332 1.6568364707213212 4.4886127210007345 4.229744884441819 1.6527412892377502 +3.744914935468179 2.2944344698451933 2.842894695616973 1.693942431063773 1.8504012773925012 +4.021267332413249 4.922189125409361 3.8403796881588304 2.396740516381879 1.7016915511878679 +3.7285548546828786 4.7766562224284 1.018759982792885 2.692674813400524 1.9749702117242767 +1.001476833381055 1.930676724623189 3.8152474242845678 4.458770352984428 1.1302805835927814 +2.85613147499093 4.7890469744282065 1.76428409529428 3.2647144323562647 2.4469273639282383 +4.700903004875595 3.2620059910761694 2.972847729879793 1.151730350967925 2.320968143705496 +2.108744503604727 3.2529555963283143 2.624364511048861 4.454441414332521 2.158332804885293 +4.016217827415614 2.053666109525197 1.755117782779414 3.4089419540649737 2.566465202359657 +2.9112715706592738 1.0924271655936373 4.657010480702508 2.581285011365197 2.7598607200172562 +2.07598799380261 1.897300715395175 3.043930532201738 2.374318024858743 0.6930440487117887 +3.2576914224025364 2.1733525265574154 2.989318466280901 2.3370401778916077 1.2654081580844507 +4.970515009156394 3.540152428526624 2.2119540364292516 4.427325134428015 2.6370070560986565 +4.55579499460775 4.903940203819321 2.8767553479646306 1.9095382044145994 1.0279659962635195 +3.182071941714235 2.6285687028220694 3.082173560114261 1.4204351991566044 1.7514965645819451 +4.279999987927685 2.96649225556092 4.7590252634924886 1.250774602930142 3.7460813205699925 +2.134853669578899 3.1010236786443497 4.573171229042272 2.6275294986247784 2.172327376239482 +4.548588269551758 3.7377622776922754 4.693302353835769 3.8372381584969673 1.1791033439084058 +1.1638337943151211 1.7991596013296975 2.2923995353721636 3.1766979336094243 1.0888629565669445 +2.8791990545029167 1.2485924988017993 1.3064275492654596 1.627563497677952 1.66192840906528 +1.723935523428441 4.684443204216768 4.933363956133004 4.3023465307563455 3.027009864393518 +2.516605657919521 4.7419902965241985 2.9968282250235263 2.8021998933527055 2.2338793560142496 +1.418034037547287 2.56700324488119 1.029438897693351 4.967216844927993 4.101978230211488 +3.4177227894510476 2.167668346999137 4.713403536639052 3.8689621834369703 1.5085480794762625 +1.1284476492994564 4.796096396711535 3.785984173093689 1.692262299708966 4.223188205311602 +3.9865392207046044 3.533562342302017 1.723557062450218 3.0094388706457336 1.363334176574299 +3.8569068829047066 4.510801676170512 2.29963543890483 3.908676055581555 1.73683335607523 +4.277905456074905 1.9186851536766127 4.59138702595678 3.589783887639746 2.5630312682319776 +4.945689261647141 4.299521722672338 3.3460534386120404 2.852921124462706 0.8128419081734349 +1.9879697570783437 4.723845995316544 2.5913934401033107 3.5037893985492548 2.8840050582384382 +4.655911052662541 4.790735398135919 4.242203214044397 1.1156080240151085 3.129500772718647 +1.925969640992022 1.1602815678477674 3.5575232464226483 2.4142553104063333 1.3759868454597834 +2.718109961988402 4.040986084500434 4.070101302195363 1.9930389475204082 2.462557463435186 +4.336169887539646 3.011058424038994 2.705614843277269 3.2977298299187874 1.4513857337408018 +3.47862783275309 1.4344414962286298 1.6878069373377045 2.46909727537272 2.188404069348292 +3.003939301359302 2.178959485249347 1.1563751604745134 4.901131272517467 3.8345521297371707 +4.303139008666195 1.5613342507866017 4.090321510377455 2.814743911124273 3.024002569781925 +3.744708422600635 4.716546286302934 1.0199785127743928 1.4213403549454915 1.051456210061278 +2.394981916766933 2.7837384653940127 4.676414418263051 3.2108399667835825 1.516258595006071 +4.702727545438352 3.597310532179431 3.263537280264107 1.1608340588409005 2.3755646929910794 +3.9993073548100337 4.5476953027833655 1.2920400059618387 1.7312022512454486 0.702561612362178 +4.1023572972209355 1.9209463990319025 2.724827911413744 2.478204051307265 2.1953079135081945 +3.5649705046770856 4.503206576992126 2.903142559221386 3.531506873559986 1.1292159399013866 +2.9843559134199173 3.1285557164523365 3.3478302616341713 4.952108869965674 1.6107462358623257 +4.712687326755669 3.1351456769950503 4.866511508577261 1.967090430128129 3.3007999404514936 +2.625148523842145 3.3053942133699588 3.8141592877360178 4.598668072440104 1.0383584310819904 +4.675236792424233 1.5309780737504526 2.350045732418863 1.1152516454704986 3.378028911527953 +1.064838726710133 4.499431609494209 3.9357321728738026 2.110206713373044 3.889597855017468 +4.81183719863502 3.653486456826457 2.527958619463052 4.185523503811039 2.0222012231407644 +1.0407474032349495 2.1192402732339417 1.2854794279501163 1.5148424216721055 1.1026124675187452 +4.307414167538388 4.587857878724623 2.8425141155899545 4.6441845077858 1.8233663584861493 +1.105518527922841 1.4779098916043494 1.8740857386855554 4.8749114597397325 3.0238436361500067 +4.784052876616647 3.5964858522063947 3.6517710998365933 2.1448573820255454 1.91862043937662 +1.0333783058622399 2.3114070377342624 2.7274614648293865 4.864829658347951 2.4903213114285516 +4.275527387391163 1.3164207893994218 2.9688692847952125 2.976855040108478 2.9591173735703995 +3.1670186750204476 3.4158215757430668 4.420711659904576 3.685368467105454 0.7762940773985053 +4.569449028731054 1.4290367551691716 1.3759347166159106 2.5895039862303846 3.366740206801041 +4.107846820270077 4.741147365172263 1.3522783627311021 1.0441345809199163 0.7042884142468234 +2.8195229726375537 1.285855767886074 3.4649282895163034 1.8046584490791933 2.260228094240775 +3.3676150484246765 3.8975338597430467 3.213796539492256 2.565374487901626 0.8374157292397105 +4.776016557324816 1.2344127677631662 3.2203248876414086 3.5415517604081344 3.5561417443663474 +3.5151063356494556 3.5613066958610804 4.168793082583232 2.0031579462113602 2.1661278856919086 +2.687221467882418 3.0062101701222748 2.9707701956269115 3.587025920401408 0.6939199597028524 +2.260518537664491 2.6092543503938526 2.2935402136213727 4.415138412653911 2.1500687396495297 +2.919969769412824 1.9330247897062454 4.568122013455978 2.3151538343051294 2.459659734441801 +1.730740014662902 3.1822244053701185 1.9598915455667858 4.462036201480623 2.892669150729975 +2.436983346596726 1.6913517134165943 2.2390847424995246 1.142312828807487 1.3262259095126159 +3.81374541419451 2.542095177722552 2.661881721309765 1.65194575778821 1.6239042380428097 +2.676708601662994 1.453249454229642 1.2171170736054755 4.503932199719317 3.5071364328593058 +1.0490822098655146 2.5105259758494123 1.4546705974182141 3.4625132100733897 2.483394821273323 +4.571328648435433 2.327678460581359 2.1496771399840067 1.9221756230841263 2.2551547852973126 +1.9446211154562758 2.4283744207526166 2.1827685536087706 4.453409595536538 2.3216003104910095 +2.2689002805218683 1.3906466703131284 1.8994083351895896 1.0192861240795512 1.2433601691923015 +3.620894211316585 3.608723219385961 3.76716520501718 1.110390194980396 2.656802888247551 +2.25012756309449 4.829001101931819 4.323009805309009 2.8814986928938144 2.954410773154583 +2.408390447267878 3.2738828939773477 1.8560315965553653 4.522946247357961 2.80383860626404 +1.0244594868959584 4.3318445753670485 2.4722369849176298 4.752352883613376 4.017178690937961 +2.9278896073445666 4.118613803232446 3.314524126903859 3.2528911604663127 1.1923182181048515 +3.826346982165308 4.91862999364999 4.680554859385881 4.689898065490563 1.0923229708645517 +3.150799594251552 2.013694288779014 2.9641890520451075 2.566152087850742 1.2047580257457762 +1.7371607489766103 1.4045872925028737 2.7213228815173793 1.8681343726919355 0.9157159688149339 +4.062966474404121 2.68518289064152 3.506648542889209 2.832556948961569 1.5338471503672135 +3.995470539875166 1.1954921620083026 1.1442891250879237 4.158484661689021 4.114031313612955 +1.7563890528443338 1.4043094405052416 3.627080749112124 1.9623364873662634 1.7015679564568136 +4.586651993707223 1.007289060436372 3.144256329555232 3.9186055008019514 3.662165431419475 +3.342033170999806 4.878066480551153 4.002853558908566 2.8001067040254797 1.950896800187652 +4.301348224777122 2.5166087545445 2.83559533645314 2.7339449600897465 1.7876318904128559 +2.579447530320806 4.160876022025196 4.131644948730118 1.7971162765542905 2.8197411575507165 +2.6343245862330655 3.966305131908661 1.2058696850201938 3.836996103838977 2.94906737899703 +2.4768867927877007 4.128633872456033 4.356324334117654 3.399003594179844 1.9091179676248249 +1.5870366042591328 2.0623173747600636 1.8408767607898016 3.5475879429626715 1.7716531461214053 +2.6626848614764307 4.929742035625276 3.671280293746184 4.839447498307797 2.550326027917419 +1.1163529486207198 1.0454200288464333 2.759979712537102 4.130655367304122 1.3725098286273596 +1.9668570562762726 1.5712809521465245 3.4417670344193607 3.2544549277350585 0.43768285261017564 +4.260273244876508 1.344974583003371 4.548504852717598 2.1806992077505396 3.7557249447020444 +3.006473165944665 4.752825774397297 1.6303083729501107 1.3089091656039238 1.7756815264940022 +2.969108036116594 4.869350078716291 3.424791257111012 4.602008352213385 2.2353433538194394 +1.8094095407395256 2.5969859764023875 3.370746936750738 1.7494513812291106 1.8024638471729746 +3.1411077350815395 3.3007838931815723 3.5660034528628795 4.369848349476602 0.8195505434550772 +1.4604191404725713 2.4137815770369078 2.5105802342475987 4.0278397204081084 1.7919197202430535 +2.719675571545354 3.3337616982202474 2.344710814821948 4.592056679574323 2.3297350078483547 +1.7713079152541193 4.437593808151062 2.996853609218854 4.032547852512774 2.8603746307526596 +3.542278231953023 3.7196793404936828 4.945998304121492 2.368776813449734 2.58331991152699 +4.163242081767773 2.117483270919427 2.0223027274923933 2.1574659995774295 2.050219066900992 +1.9077334874981173 3.252301924416941 3.7125897463447 2.8360376961230043 1.605056939272307 +3.3513236973917304 1.447065105382987 3.16908226492167 4.167449492983351 2.1501018364967477 +3.943658575573837 3.492106780819365 2.7205002911983938 3.7458134665775975 1.120341970539429 +4.224018561428348 2.227415811688105 4.370643283169125 2.5888261065321037 2.676059601583834 +4.063489307434308 2.3612088164249374 2.1863149750677757 4.435674296919899 2.820882172100449 +4.056988505567652 3.071003657156296 3.020061117751899 3.1134843172689277 0.990400936744692 +4.291253078334126 2.4517285866304364 4.062048575667875 2.780675403119444 2.2418223754134825 +4.440461996947275 3.262861935280279 4.626594716643736 3.5073288021149898 1.6246532222797527 +1.536222651955228 1.9642817584782994 2.363915896616141 2.020854505268149 0.5485669666603616 +1.4326385480859103 2.1293625473093507 1.5811501506736483 3.300232062246057 1.8549034879985944 +3.1621024433872207 1.585615326265239 2.975229749539065 3.0644601303629084 1.5790103518702923 +4.201490280308992 2.2797940386435847 3.8841115404100712 3.106396798493113 2.073103148670107 +4.576431813218569 3.289221570568721 2.635669499007682 1.7976918261287755 1.5359416619866226 +2.912037330641258 1.0895217791727472 1.8503305061246178 4.748303633162948 3.4234209762138352 +4.487816350803914 4.978224161301656 1.8705562943510765 3.327742843793605 1.5374955155945693 +2.1335692104651347 3.2104698102642057 4.535716857921237 3.422470549870011 1.548880965160746 +4.567405491634935 2.866316502710696 1.707669557095071 4.8333562913122385 3.5585982224326016 +2.930834125904426 4.920164547873627 3.0844025922598486 3.11959344216186 1.9896416571053657 +4.193835785904394 1.5996409290653637 3.119644789196197 3.8509062514695462 2.6952903890779996 +2.2343816585978655 2.6660685656506917 2.943915405300195 2.9630410988696134 0.4321103769586501 +2.04451910534361 1.043959108721452 3.5964011795256314 2.8838266022811005 1.2283659206343014 +1.4076291164012185 2.070990416892787 1.4653447884364716 3.410509241747703 2.0551673813622693 +3.781920686626188 4.246754229988708 4.902726313818686 2.320598623187761 2.6236336698857086 +4.045906396803901 1.4706978231718 4.473273166045685 3.13711985284897 2.901207485526473 +1.6405861261252324 4.164022149193287 2.3625361167014765 1.7083037736053401 2.6068658042313153 +2.415855201849811 2.5737587079852857 4.48561144022258 1.4954249086407656 2.994352853439814 +2.1348431351511525 2.2461938166168283 1.0022066278481216 1.7868034931321288 0.7924589675663725 +1.9332847618286215 4.566835781781869 3.080143107414514 4.048487452566387 2.805936874821741 +4.019382972349472 3.7663325064821382 3.199728209029995 3.71985986065861 0.5784215359939374 +3.950781328392044 4.713740258333995 1.9201350277783744 3.0232199288487336 1.3412317576569572 +2.0930264606895785 3.41378854006818 3.7672940638777574 2.4402544196795297 1.8722838159847044 +4.330946075883952 2.623926603919383 3.720699003027559 1.8549967505919378 2.5287863437644447 +4.2584650563597135 3.0003233638078237 1.6985737543061532 1.9419573479151127 1.2814663835525866 +2.298339736406262 4.987146048349385 3.0327054309350716 1.9159180024776776 2.9115105260853267 +3.1552556271474854 3.7141778020159193 3.6860763829763017 2.296223432551502 1.4980271096893343 +2.1546533740268927 4.257940408335092 3.199011285714199 1.5347900352299866 2.6820605360901557 +2.2101652811586296 4.463815124791618 4.245266390615111 1.4863950345029528 3.5623459654114353 +3.401960096896153 3.133580433840134 2.249772046881124 4.6547525229441185 2.4199088275772396 +4.936891074909752 1.250928718515452 1.4197161426465246 1.1335510203695676 3.6970540934592244 +2.7014220054738827 1.5954241459166005 2.0992297826708706 2.0595810286367153 1.1067083125384711 +2.743441024053335 2.9924666677053624 1.7891340536109501 2.51592557510548 0.7682705818347074 +2.9179447050178795 3.763928426941715 1.6321842579031056 1.8556814880459664 0.8750082683275834 +2.927861094150415 1.615612676183909 2.1488341551325885 4.869321493144911 3.020438257395931 +3.4015039297138414 2.0440071773454327 2.4223103834681052 1.8162902647058319 1.4866263205780452 +3.332295729422188 3.2209489317482793 1.5496380913097312 3.727151322583489 2.1803582232570213 +4.6666926882307145 4.503337881301948 3.608958925692719 2.060748995342651 1.556804027930714 +2.2182366039665635 2.5920494751899126 3.6745124996273817 1.2297130204920768 2.4732125981954125 +2.1185044109560223 2.2449364136260175 2.675147728317527 4.419315333662704 1.748744031250621 +3.8097126739352984 3.7437728937500094 2.7387066215833054 3.36395457889916 0.628715406792718 +4.087944628498757 2.8859278303194627 1.9021825325116741 4.16372199949825 2.5611335661857098 +2.8248587666438576 4.956632677041813 2.620020897367862 1.1238823809098997 2.6043982924050653 +2.037680668017317 3.330022548107765 2.4378922558092784 4.439943709183826 2.38293045576132 +1.3225820082521982 4.64247265007397 1.4044308401485068 4.03489560200452 4.235683975112164 +3.962977277853938 2.366823234580983 2.8179020522457234 4.693682764791532 2.4629780777374903 +4.296755428278822 2.3915252232601154 4.535369446925461 3.833873471902375 2.03027060686235 +3.974256756541111 4.160044792666255 4.914522474796666 2.5167341617401244 2.4049752573774583 +4.637028488374814 4.362297010991422 1.6182678284425434 4.444954720738835 2.840006368257812 +4.28734141921321 4.690692164553268 3.328717703747192 3.2691484218979268 0.40772579401653913 +2.3976892116148574 2.285864137482419 3.2305866971060264 3.5842384101741365 0.37091020660091606 +3.6522349484368446 4.910816839256793 3.5558236826853773 3.040894562976892 1.359845717066341 +3.7841130204749973 3.645023001739559 2.2008581204670308 3.5311678559785906 1.337561223162761 +3.5234723808036095 3.441387902093946 3.3816536616392447 2.152167056783299 1.2322236701042704 +3.691082315661947 3.880733023270273 4.480800073750904 4.945066230083263 0.5015081802044321 +2.8415755064742805 4.381482548202446 4.415999138214001 1.3148112636170861 3.4624673183599763 +3.676665734040233 4.194109893728277 1.7999036929196648 3.0149076235070393 1.3205994887694135 +1.506001934657914 3.0900384251386335 1.7658986946206574 2.790071057114302 1.8862928275509843 +2.7715917198738715 2.4014881941442487 3.6488768948098356 4.077776162111142 0.5665079004295486 +2.7807957427598224 1.2775999293590061 4.9704051534358396 3.9752864145771554 1.8027365192543916 +2.76814231087926 2.595237408825168 4.708292768745672 3.6564800353040625 1.0659297028342183 +2.455020317776805 3.187813652167507 2.730280930756334 3.279398777672505 0.9157054552252567 +3.108956379860435 1.3035171878730778 4.710603628879632 4.015648738906332 1.9345730730736854 +2.3343485195062055 2.6647427112325106 3.202197703290592 4.742995977346194 1.5758234809962695 +2.9085112363332555 1.9099230737245154 1.0883036449959307 3.2261520333591944 2.359570734292512 +2.3375449291216355 3.9137080100632637 3.2354670660870046 2.137720438460398 1.9207648779038504 +4.887116172032075 3.448815368551625 4.759577811434746 3.3320833920943023 2.0264376424012207 +3.2717103808592625 4.715723905863513 4.294708660185048 3.9084291540364626 1.4947865791696135 +1.3321542211476585 2.01117268295804 4.436561744613703 3.7919213424484766 0.9362837815444002 +2.799021140861218 1.5444619937183308 4.984147175986179 4.097573700613426 1.5362067507059098 +3.2598856845094906 4.987698184078109 2.0733130868111034 2.2222076780263063 1.7342161436679975 +1.3443695342207285 1.6836168731851555 4.517967428688957 4.629232050859029 0.3570274123104468 +4.456817009465823 3.5975173554868896 2.972322356572065 1.1254830716682336 2.0369612759187175 +1.5324219251521862 2.890333692122139 3.2842049021102717 3.144021586229834 1.365128466089069 +2.680851155600157 3.7106787038931333 3.2487271147122345 1.4436141559085023 2.0782149968817683 +1.8126931141388765 3.9546740952386465 3.108964711024723 4.434642887252155 2.5190286124454446 +1.4497165585749974 1.547188031504081 2.49080754495736 3.821625647451308 1.3343828198686305 +3.0271889862339734 2.984535128045952 1.917513875635863 3.209730181759069 1.2929200800625797 +2.8971353748971103 3.786185842389854 1.821318677371115 4.678239111048345 2.9920570011467964 +4.218087625570167 3.4456200203415825 1.3790842636032563 2.611960124095428 1.4548845619195692 +4.796837053604079 3.504245516870679 1.4508958964863372 3.0145990144085615 2.0287829656802865 +1.7001459349671868 1.58148258744896 1.8233970199861944 1.0685601762191128 0.7641070937718619 +1.74282358730798 2.7354987141486413 2.005029172532699 1.4116722527192653 1.1564931222184631 +3.9960892869634295 2.2070968300189446 2.8941940328281768 2.747129313538207 1.795027031179225 +4.144291595454806 2.1120524634458624 1.411454186921365 4.56922777918745 3.7552003874202935 +4.278247753335464 1.8511132558782268 2.8013959231503804 1.3323970905768472 2.8370652863213066 +3.0842547554284216 2.7759126933070544 3.069578472211618 1.3949535663746722 1.7027752061040404 +2.9778750494423423 1.6064846715686043 4.1603218690992865 1.6537737680901157 2.857183044748333 +3.8739899893996954 2.0602137227178043 2.7278031446393536 2.53945311598168 1.8235295662187232 +1.9399429433092465 3.102290397027293 2.3565287950013105 2.99394879699888 1.3256529946073394 +3.09761100273294 4.5105531020269645 1.0607523823081921 4.931519939861744 4.120588169250415 +3.909068025739247 4.371892146536884 2.2785356071264027 2.5243877068500757 0.524070054220468 +1.7884672100509968 4.593867175818545 3.374287052432684 4.285928589415825 2.949806647880763 +1.334178964694007 1.0878477697293931 2.6266993420897857 3.977700283265906 1.3732744083654427 +1.6366404419083143 2.1106550494066636 4.922653373489931 4.700122022042141 0.5236506951193648 +3.5724046184111984 1.8725516679919751 3.557070504667348 3.276695416543271 1.72282043263061 +4.215216313446479 3.273766836232485 4.243699271512922 2.9070725736272776 1.6349000115136045 +2.3568654383521688 3.882922487788349 2.087909821552788 1.6904802430066348 1.5769592220590973 +3.5598184000495534 3.472315830843273 1.337567115006467 4.461684549288124 3.1253426120667642 +2.6622012566222377 4.42078143941367 4.226749576188514 2.652501713366076 2.360267059658241 +3.4553148233192292 4.974042661577997 3.340485361516873 4.65184498378261 2.006538887141509 +1.3134473516855203 4.609231335177181 1.7892646580963114 1.1137230920635397 3.3643050505681216 +3.227106968527037 2.9765317401294067 2.4983121553451086 4.329905413273611 1.8486540529735869 +4.145534953374465 2.8543591930973333 2.030882316703621 1.9117189684683291 1.2966629274757087 +1.372056973039896 3.2445335520198633 4.949016194056194 1.1025417767184957 4.278029217065015 +1.2346291440647552 2.9725919829131033 4.368394955548418 2.856581937665091 2.3034959149647523 +1.441344799247112 2.442370891523148 2.187664134940511 1.4167198808059154 1.2634905145669195 +3.762079957901564 4.858464371362977 3.095421786329345 4.0577150623180245 1.4587896116624057 +1.015239418990023 3.568928719423906 2.9898612486621463 4.547998574320291 2.9915081428536356 +1.913559546267427 1.255341192500425 4.82152504660594 2.4540513408765525 2.4572714845038552 +2.039241253313984 3.2526527949811346 4.586513331720079 2.0796581996925267 2.7850835216244283 +2.0107400665106105 4.336906386701768 3.6594221687466675 1.3251401702619408 3.2954396061286757 +2.6661564324330826 2.157130895628512 3.902073988270439 2.7233070527436 1.2839776031576706 +1.2012001927307088 2.569809731004726 2.9628277651240715 1.3136688144094695 2.1430859322427334 +1.6300493035981019 4.311698377795728 4.032666786079135 4.464772197560676 2.7162394673107553 +2.8893516805714126 3.5151125247769226 3.5226599556999107 2.5615085861085776 1.1469039146363083 +2.9066821058688075 3.7687659745843045 2.0124487396906137 4.538496419320609 2.6691019981378683 +4.390970474639185 1.5281963066365156 3.169831002488677 2.5933370427688636 2.9202433498900064 +1.7752781587265853 2.3731265127665773 4.336886641058881 3.4128045882753915 1.1006135991822361 +2.950469076601235 3.0184795953167454 4.680261295743474 1.4865473542219 3.1944380054909844 +1.407775482622729 4.805522315811144 2.0198692186538794 2.7751109687504187 3.4806714357334547 +1.0966016273783077 4.160495617252046 1.7047823142565726 4.10214083183727 3.8903437178482227 +2.817638474299894 4.183115257752057 4.420545051006648 1.9869878997896118 2.7904707943976845 +3.5525104817375337 2.109672018843483 1.1709491358999968 4.205142900323818 3.359778955537829 +1.763857772223798 2.5810873336362787 4.923872455729386 3.7554579120247484 1.4258529734818217 +2.070954330393739 1.5785427960701246 1.3762989328292874 1.7837482674135976 0.6391275924165168 +4.12605892811006 4.520040019275021 4.164236358130593 2.308654803887972 1.8969459677705618 +1.015356364640125 2.4504632260888974 3.2185866517107926 1.0199708632049989 2.625536724032688 +2.877084947186252 3.3108034954479395 3.1760067498838094 2.133745360106129 1.1289023800699187 +3.7000236925648147 3.993187144238143 2.6743780757384004 1.5012005824472436 1.209251934115444 +3.258671520685482 1.482486351306593 3.007454487098234 2.67073451951688 1.8078202600063704 +1.9228822804842811 2.191407219808739 3.706827221715331 1.8535994746413325 1.872580766099068 +1.0812694836648107 3.1792310985058014 4.484846769259882 1.5324268326150303 3.62190922299886 +2.0238323537611995 4.729661335689492 3.4718133169174576 1.635750801762156 3.2699596387419696 +2.943139043529452 3.1375972778985277 3.176705338385997 2.202727965695804 0.993199842643176 +2.0427676334159024 3.4007463679116734 3.344371021410911 4.554814531375669 1.8191425821409766 +1.3922958874974762 4.852681526788721 3.9993854823367836 2.669468121609671 3.7071483594504877 +3.8030849544975616 4.4482835349117575 1.349156904587686 3.575402177015896 2.3178544434837685 +2.118174962214377 1.2510178987368965 4.053061175284099 4.587657977181168 1.0187026618878843 +2.8732763448801935 3.777925085680725 1.338670408066113 2.83331763567066 1.7471003632355946 +3.162050068074383 4.528531514401878 1.8778457835176847 4.851929592822217 3.2729873277977477 +4.932027987052985 3.2582141456200997 2.3258372023536893 3.0792410464320543 1.835557171009492 +3.978587619600078 3.04778252095379 1.8378366943411093 4.918888423949538 3.2185832119410884 +4.0682398618962585 4.414794733591344 1.1070972998209334 1.377804154536507 0.4397527490369965 +2.4328271427710813 1.392908762931926 4.728768612282167 2.841017806916052 2.1552339408722454 +4.7922890136887215 3.6576070927204083 3.5800464839298773 4.119025457732644 1.2561852554356085 +4.604602324595227 1.5568471661692143 4.359731875737111 4.435989775338458 3.048709033831202 +4.643082674512343 3.525401860168602 2.9578063767154705 2.789456978594893 1.130288424518117 +3.9965849265740294 2.3294349956948444 1.465091883642085 3.436676580209522 2.5819634210750126 +4.229715879373069 4.8103116430655515 2.683521814766647 1.0979001066262497 1.6885756252367639 +3.39648928137649 4.6658205610242 1.5443696906758397 2.4111239414689414 1.537031173646131 +4.173187818396138 3.0880099884557546 3.5432773317623303 3.685045526292624 1.0943989873782316 +2.7278547828753954 3.3342855437957284 3.947502911995569 4.558650326830357 0.8609642445825832 +2.6967145990124837 1.060243785812431 1.701133861850252 1.0166724118002146 1.773844468678199 +2.0580430450141747 3.9564362661047 1.368915813385128 4.943509873407496 4.047421341524707 +1.7641489489649111 4.804951770299962 1.6676448446479801 2.841983823424327 3.259686155953158 +2.4995741802098252 3.9480009043017725 3.853674287728487 2.430750760908707 2.0304313182772207 +2.12114176816619 4.785716738908736 4.623872385175128 3.4539809762307745 2.9100868858900832 +4.910937684909491 3.15862520302323 2.4238026581159966 2.7494132468974937 1.782307854917612 +4.474025673290836 3.2598378702709456 3.3028371739736433 2.67368902333705 1.3675084703400242 +1.566553819884207 3.8378060602028143 1.5634504909019107 4.869698520730967 4.0112171187684185 +1.8459295638810391 2.6804624708999065 2.4021629065781624 4.878789772097926 2.613450937728048 +4.689538805527963 1.903091408675646 4.963519355232613 1.517953056642888 4.43127704092199 +1.8529696679676992 4.129800820482474 1.7234075911900733 3.2551598660039187 2.744125567181493 +4.875935270146623 4.045465984387045 1.286561366087811 4.444587525021401 3.265395604685421 +3.4216746507407825 2.1062910597523548 3.8691489070218497 4.930846481231937 1.6903951403518631 +2.196298505889044 4.354305238429072 1.5506367337240263 3.5410401099409774 2.9357620233499726 +3.7239646072961663 1.0877995086712047 2.1025899014016898 2.7356179276631454 2.7111051084826694 +2.312866587896832 1.9858952154277247 2.6687843076230333 4.230434845443986 1.5955132969332477 +4.260852321930994 3.6192649361501554 2.1002792077965866 3.196393277910899 1.2700789063265532 +1.5148321254018193 1.74832004340431 4.424527886330387 4.800409291396574 0.442496823183702 +1.0814993192498088 2.001283105115571 4.422415211413034 3.093432461195138 1.616229365875486 +4.140115876184079 3.0927054083513617 4.87043901964928 1.9837212255414647 3.0708644240578646 +1.3924303806512168 2.623823453015953 3.8413291738264697 1.6207339719316325 2.5391675701588183 +3.5855353762969444 2.8826651045507816 2.8572084801804265 1.8497249017164954 1.2284338727741972 +3.907878843871716 4.768542020697139 2.9154265389326746 3.728019656640977 1.1836590213782552 +2.3434837920072953 3.1891606854664816 1.6916540491857388 2.952612640480506 1.5182838921265231 +4.52382298115292 1.9659306559651948 2.2722786510721185 4.95471560259012 3.7065187367830017 +1.80984495769997 2.5138127550863336 2.664537060650291 2.5276303440177146 0.7171569624678554 +3.964007891737329 2.4196975794684743 4.239090543252557 2.2464687981620126 2.5209989606478644 +4.315507636658829 4.9547492620767395 3.198881424906752 4.595367609299624 1.5358396787643862 +3.43880984611119 4.477760171406333 1.4729171784713233 4.613874575264156 3.308327545286061 +3.6243630871837835 2.0303330991497166 3.9599941498327413 2.139163235714582 2.4199910786117083 +3.286413111455913 3.3696731873923396 3.516895602592882 1.0866957536125863 2.4316257002731305 +4.180959120936744 4.518172041815957 1.1935278696683795 1.2508515699006941 0.34205052348478376 +2.0137487261729365 4.1233534284945605 2.2957514735225564 1.0635313846225483 2.4431124303941174 +4.694404336923089 4.539180673381473 2.1789406444054644 4.084838870363386 1.9122087839545225 +3.3914906883495393 2.5532853182696065 3.081087531036465 1.1706321660828736 2.0862473352675126 +1.1828763997687033 3.696813959200378 4.322289408196649 1.961930246271061 3.4483586568115783 +1.3472523033422301 3.7558407966024214 4.3143523018710646 1.4646660849408764 3.7312209884737846 +4.376784399371276 2.4669274929841576 3.2404666969265916 1.4380924399201582 2.626043862008795 +4.268747227194385 3.0552773775719175 3.4752039360712614 2.637402493413336 1.474591581849861 +1.3031587033888834 1.4675292560867503 2.956179393140278 4.292035820458844 1.3459309317355503 +1.1360251309738256 1.4857954687071318 2.929480957358301 4.906483065180343 2.007704316748576 +2.1606060692649085 4.982802962088997 3.7595111721034677 2.927091666520844 2.9423999617897563 +3.54563381988156 4.7625059525183815 3.049941607743038 1.653962078785383 1.8519008160419723 +2.941844429191339 3.6808769882458026 2.352994756441887 3.0901805006217677 1.0438447895950018 +1.1026898075552434 1.7696262581098625 1.8728553612042211 1.9298425514485031 0.6693666924267534 +1.3486223856621526 1.3046708349961742 3.1244075780229785 3.397501628546075 0.2766082052959665 +2.289767246981176 3.6641489210052183 4.742114844951719 4.405984206164207 1.4148882613919838 +1.6930452913426257 3.2857383337872577 1.530245013444958 2.326832904916329 1.7807929122417192 +3.052218032433355 3.865269134643071 3.799806634764921 2.5093364217506684 1.5252427562461932 +3.43628467488488 2.722378216885439 4.058368739995634 4.768104515473138 1.0066713971132593 +4.940267772207523 4.716056288725085 4.069226578205322 2.8708005340221114 1.2192193292029188 +4.6476444077478565 3.9349391890026513 3.8786874601268657 4.440757250129143 0.9076734972774376 +1.1516730327778117 1.2104739503672093 1.701920385698104 4.466432285369207 2.7651371740534834 +3.96168021650873 3.077354060007739 4.526024919792376 3.9429916767677797 1.0592263750226356 +2.0128771205007157 1.2179249599165924 1.6278606681046113 1.3010850519417052 0.8594947591091016 +4.800783658030856 2.4895741444839077 1.7269179491192137 1.1455668394660221 2.383203417294654 +1.0305117911171537 2.748618721301568 4.332150837021775 4.774088699612959 1.774035089263844 +4.2704821312185555 3.909625975115693 3.185619243306657 4.874361210691109 1.726866120405066 +4.237636182128867 3.6249541838659765 3.7738919137701337 2.3814659993787104 1.5212590700022792 +2.6269630078278157 2.4840074558000924 4.420323605345717 4.521593004776678 0.1751906992869728 +4.0843859067340595 2.69390006099519 3.0521374022081567 3.6406516537501945 1.5099006296668085 +3.803733864600506 4.703689384052524 2.356823242832107 1.7081617449004947 1.1093609312983013 +3.771419245143994 4.01799211274358 3.4616457416662256 1.2467853254366834 2.2285432108031435 +1.2376392957235676 3.0766418842296597 1.8401092761469213 1.02433564598365 2.011819359734335 +2.9152402708105827 4.915573004959745 2.9411093031889797 1.0785226928613452 2.7332325053460873 +2.8279352694531967 1.447547699866333 4.283021538503581 3.290219094643017 1.7003313014837542 +1.736446066865207 4.563286068155746 4.960118514833841 3.0416709014465533 3.416352680594858 +4.502196987548617 2.979521532798217 1.20158350510073 1.5606367522181128 1.5644359286224772 +4.456597500511006 2.3934678376057135 2.5633048930387727 4.545219693137472 2.860854816450841 +4.452574073648124 4.127487483595349 1.5240481220288982 2.8415811287535107 1.357046246389908 +2.649666157564838 3.347414869716993 4.7539646292051145 2.342697827246164 2.5101913981884603 +3.777193677421812 1.957237558553072 2.337063104703658 4.390231184996903 2.7436726190533043 +3.3802383204103768 3.0505919857306525 3.578836680170804 1.5354868377903093 2.0697693795020182 +4.173107348117947 1.3436762121713421 2.6497820333846827 2.627091966158324 2.8295221137525735 +2.1648219746847595 3.8818852494368863 3.6789787688249844 2.970600134298946 1.8574462520771555 +3.0921302048761086 3.2387897477822674 2.786465109404554 1.5908460774297093 1.2045803796948995 +1.9106112778699105 3.679426323869898 3.840890206607691 2.6243803103474077 2.146765705580174 +1.3496662964465758 1.2884481866093394 1.9763563550981473 4.06784252763166 2.092381912288224 +1.6027185640172812 4.865732071354939 1.8955582246215092 3.6756624501637494 3.7169918217372153 +1.6293797584148861 3.118238865007524 4.981701657051762 1.6760437238307402 3.625475942652344 +4.337263134943212 4.09609663804352 2.4956854392204115 3.3434007375875745 0.8813526571767951 +1.2168008026209582 3.1306461143320226 2.8658756734262374 3.9566976013205366 2.2028836454823155 +2.2568492202786805 2.8679505431625913 2.054729257219979 4.587117098298549 2.6050783106219755 +2.169961024874727 1.0556601135456427 4.041952199967506 4.977800726490768 1.4551560004290225 +3.4919404043510878 3.8439060729446015 1.0384725202757683 3.0697157083217337 2.0615112710949743 +1.3726896928949568 1.3734822460473874 4.927140669753147 4.293940370527475 0.6332007952300599 +1.6600632485412836 3.626623777703203 1.3972718810772164 2.8459488990641217 2.4425448649515205 +1.4811778493117633 2.0856850359002044 4.669684866373654 3.184263263548146 1.6037163953697589 +2.568228115199203 2.8684449950061395 3.924321706423969 4.230311040533318 0.42867195792318347 +2.2247799041269665 3.733758109992801 2.4965683182457243 1.7264025750845269 1.694157754672543 +4.407897268004261 4.71066833667635 2.3581487211812893 1.4430918637357313 0.9638461352223078 +1.5321914911488936 4.85387572157603 2.1204669143609167 3.789014352153091 3.7172081834128083 +2.614687445410621 4.598002302194265 3.728480073918716 1.6198199343421442 2.89482044441064 +2.32172423980167 3.6462081698276565 3.9121338831833197 1.8058646087573433 2.4880972523774085 +3.9353023005019265 3.889674711940652 3.494101219084665 2.2770240781778157 1.2179321178768168 +2.5518606066223786 2.3383005391939213 1.6203425898256114 2.812071796424748 1.2107131800147608 +3.5842984662822457 4.951468287035603 4.060589077939575 4.036209284551656 1.3673871774681827 +3.000972370868824 1.9638580737943983 2.0374082935173234 2.3500119427427992 1.083202246445817 +2.202043279607008 3.4938709081208965 4.142637682244548 3.7396796061494544 1.3532161072356759 +2.3438364369646365 4.061782771770607 4.604723834555863 1.9629479338008946 3.151240949068001 +2.5817272334495858 2.4961635558357114 1.5441718291458582 3.666852115108932 2.1244040904081993 +1.5678332111056568 4.593644758028901 4.036017730661459 1.3809190727117038 4.025553924733915 +4.067246814950366 3.200778775263337 1.3846997130341387 4.260318856385173 3.0033235459081027 +1.096389334927061 3.6985090603563613 4.443828809615205 2.753287855947831 3.103055877920159 +2.6131438434250946 3.3909617747477974 3.6848182190591805 3.2879821477576545 0.8732007797598205 +2.307315859258573 4.088593701806886 1.1992723007965567 4.855021785596312 4.066626986578342 +4.963159520489424 4.584067409275892 2.1427321968817665 3.0039020458992978 0.940916753831714 +1.4326208320104574 3.522018024439051 3.198072109963991 2.776402683420745 2.1315219288127905 +1.5784877353243747 3.568342683371958 3.050289512087353 4.741318824826707 2.611341197701515 +4.817856022373679 1.2656952398120693 1.636924178402067 1.3881366378787718 3.560862460905832 +1.2689027809481614 2.2201456399803665 1.8528525264006852 2.419960846451368 1.1074632380040754 +2.481635068417475 3.5155588009942194 4.011554108315529 1.6319817999707666 2.5944869734548 +1.9929674016634698 1.2659401433182809 2.7722763038956 3.4542502846654 0.9968235274229486 +3.067341489804197 4.939495826825221 4.198138547802534 3.6583264226189818 1.9484247463327424 +4.770750686448885 4.13704000748821 2.6518116899978104 3.2053010557348256 0.8413915275380203 +3.812871227202154 3.2084754036131917 4.4119028513695 3.038722505598232 1.500306159950121 +4.085220224022489 2.390259614616598 2.579872798310537 4.888707149324153 2.864194045077612 +4.857529398377588 1.6956930943583468 4.20454489899402 3.3934190699193496 3.264220262789588 +2.3945805845452317 2.2671250625312784 3.0985337694138364 4.32808741885637 1.2361420173059818 +3.0976917426213557 1.6016298456728961 4.9486716993724595 1.1885379805014895 4.046826754790901 +1.1078925598421683 4.7844318990169565 3.6075070044709783 3.0328606045879574 3.721177232731371 +4.326503790937556 3.663231545948242 3.576639934503872 2.746561428802447 1.0625254804477282 +2.941238782829744 3.779209887831596 3.5049314726578684 3.712799363297237 0.8633681907372345 +2.1357597301203297 1.986536525438368 1.3146671723152332 4.713266273996371 3.4018735159854776 +4.340379557731342 4.640066997624608 2.302581250644233 2.8834914167218875 0.6536583072845841 +3.077983349707845 3.838473212284203 3.6099821189839716 4.858445211407773 1.4618498295740943 +1.190135736292032 4.232262636243696 3.951644360708209 2.625175970427559 3.3187429044478973 +4.559277386185042 1.4514368826390203 2.7327953849745827 1.0738262551779374 3.5229037978774596 +3.5890684257613565 4.865633664744413 4.676241529293047 2.8246381033178136 2.249011795536673 +4.146916050239757 2.3526680150708734 2.378021301024745 3.599355172076675 2.17047977099214 +2.5709332787271704 4.452571996942039 3.226451803792817 1.1407527427742168 2.809039842903472 +1.4551507446424057 1.3841751513694183 4.623710976331624 3.6205291551056122 1.0056894656298192 +2.1845622421679876 1.0219536652589842 3.0249568239637328 1.9852771988774567 1.5596770261569919 +2.6822433269634214 2.2849921131226805 4.929105020853481 3.8209095004206213 1.177245020548143 +4.8199365890023635 3.7603731492328833 2.796232855956273 1.231501761822091 1.8897243396449355 +3.0934050093253824 1.846049571458733 1.5450145209215935 3.294467739331323 2.1486000446289815 +1.4180497100518075 4.6120430113944355 1.7392521064781472 4.768331781639324 4.401921953817005 +1.5438366847180682 3.571144347042896 1.468853396916737 4.838850256764555 3.9327922895959193 +2.5780809666819056 4.842115529427712 2.5295589139931125 3.4218895477252125 2.4335378487305936 +3.485550844826462 1.7750206218672955 1.1455957294754637 3.662410134576837 3.043068910390055 +4.765758990891653 3.960781945495494 4.576904852745436 2.9638851941066195 1.802725842375932 +4.757693535436212 3.3373323152866727 4.556854662273412 1.4145686564024023 3.4483890932430277 +2.153853049647539 3.754033728904669 4.919795438509436 2.006962585184638 3.3234279648694187 +2.5837011965016305 3.7375326386719716 4.341556738475975 4.048900176769395 1.1903675315005893 +4.842983133434132 4.862882079284998 1.8545358698302885 4.341545581935521 2.4870893180888634 +4.307103632024096 1.4417320123251685 3.902888211686248 1.3923990785718985 3.809581368925107 +1.0529173808003387 3.0090434488886606 2.478886845527447 4.574437391092495 2.866663789716654 +3.255154635416668 1.3577360273993793 2.0760527009759002 1.5590484989758866 1.9665936842510034 +4.798875420070137 1.3771075543326696 2.933693044164419 1.2416665383671583 3.817256740555189 +2.716861893412917 1.5515220591039904 1.6223337431971396 1.8373790309924982 1.1850153607570433 +4.069451504085042 1.7935931820202535 3.447528295010286 1.4101584988192974 3.0545714574294816 +3.6149943405738267 2.741571479042824 1.5332725921640713 3.017628104451263 1.7222597893182015 +2.8704867127884315 1.0791847279304325 1.9971826565158723 3.2557808429543718 2.1892537988690317 +4.044213277529577 1.5421369690249813 1.312041214271864 3.2993118692208068 3.195251243580258 +2.124625187866645 4.5942959751978165 3.7522089527996143 3.9865717172294612 2.480765950900683 +2.899795427624221 3.9580041294374744 1.6640787774807295 2.2994308668413193 1.2342924831854716 +3.378758738183671 2.2098772653999776 4.439555000632115 1.4177890825015775 3.2399619073983366 +3.2707546118809536 3.206748487356951 3.9749527525162973 3.184477535448932 0.7930623259077941 +4.245124221011041 1.9648819517712197 3.1125180530782908 4.077430700526863 2.4759970160794182 +1.3841717352148266 3.317171595416558 4.438509334614789 1.6113053959143149 3.4248460652332082 +4.579671044119153 1.4320473042506334 2.552978923825703 2.8922434178720726 3.165854640488793 +2.112845942837704 1.0294174515642927 3.909563680070142 4.095988611124135 1.0993505130855519 +4.985441209141447 2.715187673391329 1.4390875394262972 2.455445153235464 2.4873749045396787 +3.7792764251642286 3.3941746279739458 4.969945028266796 2.5282623980048142 2.4718651785892884 +4.802965378109689 4.381308145979229 1.4152754880174592 3.420430138990714 2.0490095157728274 +2.630964071700142 2.923997205193316 4.3055585037483315 1.8686005601355546 2.454512667773838 +2.483207725765694 2.359611078392916 1.9994860810189867 2.6700775187860737 0.6818863597758205 +2.2732836484846914 4.455221372707345 2.1395631741520282 1.062426117359216 2.4333262155950677 +3.716725729905763 4.142465452884512 1.0211713422616642 2.8479799514581767 1.8757622467563735 +2.5793358724498723 1.820336307500881 4.799508135839809 1.8756953507679865 3.0207220232491117 +3.441072262518996 4.750566593121671 4.8745401435506 1.5571651711740735 3.566476147295915 +1.0099337355809967 2.5378225883042917 2.1523297941436437 3.1734337240018666 1.8376881078812077 +3.6991837274655013 3.401669151188819 2.9870976520712516 4.289714071727344 1.336160342120193 +2.1242130637601444 3.259217896618289 4.0509743185775395 1.3423378474971348 2.9368260934345862 +3.7970658606658896 4.830249787884216 4.459976382748498 3.001373521964491 1.7874538687612538 +3.383466898954446 1.5557285023033955 3.010545452821611 4.40393161977833 2.298293422707138 +3.4504435477694946 1.4265527711787742 3.8177185010691352 2.991072478777528 2.1862016196452525 +4.012797596988047 3.9769340163398894 1.3128976811477702 1.8536599117374908 0.5419501697105344 +2.6385937536260293 1.9238702258567297 1.9954354869881579 4.8911908888530045 2.98265470153292 +4.2851909410232984 1.9501170931915799 3.569007530800323 3.92643799345017 2.362271451475827 +3.9254343913389143 4.877860348932058 1.4770915409702785 4.113096900150909 2.8027913690330615 +3.205534395843392 2.4548901497411224 3.0721672621427674 4.705567677897012 1.7976272423371267 +1.3898466055525969 4.186881769877646 1.3696261686741447 2.745641669927804 3.1171821201465293 +2.177187049551535 3.3036213992044496 2.632189181968524 1.604985496016563 1.524467696119298 +1.6007444111719087 4.549241793358519 3.382201691608253 1.5245401781438206 3.4849021666853517 +4.042506712664527 2.320826170929585 1.9015597612959851 3.263112008299713 2.1949962207506473 +3.8413332744383957 1.4663445993229987 3.406509902714322 3.608986759548134 2.383604011676371 +4.436374681429474 1.3552682155835298 1.5709038287521233 1.5723790786853429 3.0811068190246265 +1.709821142702416 2.3707313582452647 4.022028660242393 1.9418532429140867 2.182643369830694 +1.740108806103514 4.160045201818307 4.274235349651574 3.745844860397489 2.4769514868965996 +1.4819071492868692 1.5961839988900217 1.193573697710724 4.4945513664905885 3.302955156846452 +2.5201894770145357 4.312095374054444 3.418363055117974 3.376176134070085 1.7924024325340273 +3.448148676961588 4.195070017902452 1.3060187704680764 3.1158074758376118 1.957862775486586 +2.5670326768590166 2.2939742190053347 4.0956407894960805 3.204231400806608 0.9322937410758318 +2.847297763777966 4.332065122265813 3.7130281392441007 2.5403576846007616 1.8920068985139544 +1.923339231923881 1.0673700579668433 4.715449092199149 2.593891684397251 2.287725739979293 +4.242213010586422 1.0440640721293692 1.6286991465085432 2.0128143143519317 3.2211335108500747 +4.7550464511254145 2.696966836408177 1.1106873764958336 2.7557145690799767 2.634730757564408 +2.2439127934073038 2.868958848568561 1.1893710113915157 2.391790553409029 1.3551735409526915 +4.811530407949021 1.4844871910386783 3.4606792749596513 1.688848748284487 3.769429662753652 +1.3405706054332467 3.0598709640893604 3.3163907969971387 3.726348635179114 1.767500821035702 +1.2411684002566696 1.4158599151054014 2.3595574808592428 4.449359752247592 2.0970909991843576 +2.4053290876483797 4.876661255121512 1.4033985955773018 4.1607064310949715 3.7027326641002025 +3.204463231333324 3.4266099732931736 1.9169603701196793 1.155584103070682 0.7931223077110127 +4.747834109889648 2.9817026442902903 4.07967708628883 3.2889954613535113 1.9350446469760045 +1.2966874313438947 1.0102555456727442 2.48251315582911 1.3795615157497032 1.139537426100163 +3.1689840069393322 1.2721718587770265 1.9852243594584236 1.894896827284187 1.8989616606147657 +4.965101386505344 3.388391992060422 4.469579413515168 1.2109690639323354 3.620021260288291 +1.0348449112257865 3.4079472830054307 3.921614087586883 1.898926098858277 3.1181535508523543 +3.733829388164573 4.424358053451872 2.381200020655152 3.289217454286955 1.1407565460529887 +4.561187917894813 1.5644376178333324 4.269808187992199 3.3601478024459994 3.131771763387402 +1.4942588109843116 2.9789149114132205 4.930255672577483 4.399345670416377 1.5767273597345486 +4.53613913905386 1.7755799179116862 2.927131368663002 1.5722909122600606 3.07510648201639 +1.9751409357977514 4.241710293485255 4.363318168342831 4.754823562849115 2.3001332846457974 +2.408033045529535 4.654353206801554 3.6847444197739283 1.9830284985148432 2.8181184048232977 +1.065432327455866 2.8431422367319197 1.3606621669812657 4.824259973243562 3.8931686689743183 +4.600770228705667 3.5604078591745245 1.6836152121926817 2.6275152905089647 1.4047424026425408 +2.536959858943127 4.918522724732402 4.031848209876978 2.3543262876123263 2.9130605011542277 +1.188895922179451 2.7582639761962433 4.072857412811754 3.3391773120482084 1.7323979275053578 +4.0120569155688734 1.4833539958113473 3.756514263882423 4.138630203949349 2.5574110049116996 +2.1399176874252728 3.7191817951808246 2.6167026458562788 1.6385780936420735 1.8576336457141325 +2.2917728799617296 4.730724597715215 4.7433770520223355 3.4192257590703834 2.775222897022688 +1.9669497855231004 1.783302131087387 2.486255477639331 1.1119011661544458 1.386569952969136 +3.682351693875222 1.0305221219953489 4.552161132540041 3.1775198160448768 2.9869447312115014 +3.6712694280405933 2.7736393618339372 2.967060495724184 2.763452926971403 0.9204323863335016 +4.157931363027984 2.752940587990888 1.194316390636303 3.4034764070654533 2.6180884355056806 +1.7010187369407723 1.2970824336291633 4.3848742923736985 3.856276932445598 0.6652666428252706 +4.823871565203294 3.1986895620166713 1.899479974264557 4.856882731904188 3.3745292433725 +3.1555683793279665 3.0753631491302813 3.0206075230754075 4.479976246051253 1.4615710549101653 +2.4313410412239373 3.8788280338376366 2.876131320738528 2.4310292473170385 1.514375927420256 +3.0730477510304666 1.764627244220784 4.358482321926296 2.103413856944264 2.607162826598393 +4.732311144116071 1.3057909545600346 1.476763880617503 3.2123670252396423 3.8410101386298625 +1.5551210650996556 1.0771616028953366 3.332780210968723 2.660144077793366 0.8251573275222966 +2.645296679118073 2.03029910512326 3.219195901968264 1.5100451655453724 1.8164300855894284 +2.6769361679840857 3.7127801987716538 3.3281899385885736 4.793064082282181 1.7941095599155354 +2.6010100839047374 2.941229068292086 1.7580775299873377 1.2562099005900231 0.606316810565598 +4.715513688596374 4.186041944753871 4.97293222075179 1.4016113157752672 3.6103563998378267 +4.436987577706272 3.721334642586171 2.3970162200162797 2.5507467310850673 0.73197827398051 +1.1974770441696827 3.976582643089594 4.416377952491944 4.996208788680466 2.8389490535307393 +3.781706146943246 4.238063361956654 1.568864504523448 4.978309536340538 3.439851353282149 +1.0278260092991345 1.7632958464194615 1.1029171865859215 1.727022775907613 0.9645847126802167 +1.0241921847279944 2.579715037555701 3.240287328100785 1.0894830853452278 2.654356840427555 +1.2548040018154571 1.4644775954417693 4.175842395997463 4.657359893342477 0.5251876960797708 +2.913402319124057 1.3405294377210648 3.0670336044562556 2.390456629285258 1.712216547164665 +2.3704148521071557 1.9145684282760578 2.558231214397779 1.7077878349116729 0.9649092723315232 +2.428170334444879 1.432884503686278 3.493491663394571 1.9784993853268444 1.812676332805633 +3.550873070116843 2.3336324222027987 4.513555462497367 2.6365695964641938 2.2371300221986434 +2.5589672700964514 4.746583061280838 4.055529685938584 4.829404807301451 2.3204623576571293 +3.8697476935191237 4.767101622067463 2.317992805623669 1.3041335862430987 1.353940393741215 +1.5321153219661148 4.913753502899764 2.4410110344836493 3.9441884864205052 3.7006782133494966 +2.605197851960716 2.1011441537496656 1.5260589294751288 4.305201566640664 2.824482948858364 +1.095498931487025 3.810167528390227 4.602767163034546 3.3759625345778033 2.9790057380635044 +2.9858499529761353 1.1550903372958223 4.257574115523868 4.552754048058038 1.8544033981247998 +1.4704967804094355 2.9952865675650306 1.3258114897599245 4.952894478817537 3.9345539651306236 +2.2415890035575607 3.9394010548179903 4.160122476968031 2.558016550813996 2.3343755396300367 +4.890985262080161 1.296871836787716 3.9287732032527316 1.155272017531359 4.539819395203431 +4.663099783495268 3.639951444497969 1.4525526429313977 1.2080947635058163 1.0519468515120824 +2.6591722689660022 4.17937321145799 2.665672608534604 1.4736788516739976 1.9318022729948812 +1.704729720329441 4.4699874776614905 1.1758341822252802 4.738598526212707 4.509982287689525 +1.7983274680227481 2.450190372143815 2.173548765706569 3.494071673926645 1.4726527074986684 +3.682761102533665 1.9371836022273783 2.0889383034348135 4.623888467987964 3.077826042248585 +3.325759428834511 2.40991593870645 4.331981931743504 2.9182338571875928 1.6844740771886326 +2.5316241413610046 1.7779279341523635 1.1042154493781253 2.043897087125235 1.2045993330065317 +2.2009687514118834 2.309363814636891 3.8307028681921196 2.2258598039121225 1.6084995339443418 +3.7951990406908327 3.1614636658396837 2.558163989223867 2.3348627194125853 0.6719255780494273 +3.606219662527775 2.6856395522979066 3.61133572770749 3.993998722551474 0.996944686015129 +3.7775277203939357 3.769296999189748 1.7027691894786696 4.321010634093871 2.618254381658176 +3.089507289820696 1.7664986449522173 4.425685973715166 4.4483234986248466 1.323202301966999 +4.661961759551554 3.12597512278414 1.2012998984813619 1.8170446618292666 1.6548101286608197 +3.713371634145359 2.1378372561456063 4.541348906397509 3.9463882580443475 1.6841278898432512 +3.1191186441379015 2.5182188539131567 3.3860189679718986 4.710618842024804 1.4545258279704472 +2.419866137198039 2.5692026158552155 2.264720573851972 2.2329644761267704 0.15267558285612623 +1.5365415248389414 2.4332619661638137 3.266393047606124 1.798796630880199 1.7198682485227315 +1.1041738188529533 2.672178998216033 3.8712758905791826 1.9252080511187364 2.499163915850998 +1.910280373240452 2.9111864485879373 2.9001631979322986 4.590054348653021 1.9640634085873385 +3.3888413981090233 3.753065020717262 2.1610012891216486 1.6654542803165597 0.61500055707417 +2.703580681680963 4.274747734946693 2.4744313306336316 2.852286740403145 1.6159643003358104 +3.8551426050256583 1.4379022915420108 4.10782745367964 3.66714659645398 2.457081673664037 +1.1855077191880476 1.6751034575752923 3.239271710648598 1.7326590940397342 1.5841671513991065 +2.7974989026901698 2.6288191878577782 4.820869247566774 3.378680918211594 1.4520192917190262 +4.549588260226247 4.575825825392371 4.2967450212182365 2.6550400594975705 1.641914611410746 +4.278355686853937 1.8653504989030272 2.159300200677367 3.4555030828833133 2.7391122556253524 +3.042647394656424 3.9392310843830813 2.9143375698849208 1.2974037709501287 1.848874582772332 +1.6916112116972228 4.424970870015681 1.4270068136330427 4.846334844786167 4.377563158465255 +3.2105324546736362 1.9634501913924152 3.7712712213083686 3.007644092291271 1.462306590138165 +4.289916155384661 4.883364354809041 3.505118817434017 4.750324971254228 1.3793908550196214 +3.9318839637276075 3.6779325565222227 3.344893166399434 4.358576850941748 1.0450100140806675 +1.453782486398218 1.8666691596369267 4.522671137903122 4.632043662285355 0.42712732765285616 +1.7921758665335954 2.205048583657064 4.355027336542204 1.096170796528261 3.2849063653225428 +4.864493601738282 2.8260767375714186 2.426500143242402 3.7038257478725436 2.405556902749055 +4.244963905017462 4.3916903972886505 4.829359156862137 3.8024691821109067 1.0373194704519861 +2.241937789434199 1.6274921979051662 1.6982120333193897 1.2389530808497695 0.7671128798116714 +4.377784982098348 3.6187254223929486 4.883935442174107 1.9254084485073069 3.0543499124093936 +4.415596590542974 2.743511888205812 3.239834330287959 2.6535432926788376 1.771892895344055 +1.1454148122543781 3.4823292934579415 2.074329144205343 1.4217945344436878 2.4263080409123066 +3.6268169731019824 4.77109539285979 3.3361468547196043 2.0888096366757463 1.6926970306114488 +1.272565888274992 1.2999070067432488 1.647545853497114 3.366913661933602 1.7195851817943733 +2.3051125230686598 3.8278034065332633 4.6201022411655455 4.522315932522123 1.5258275422682348 +3.6631812504654904 4.62794372233491 3.1208133203421 2.90007072242045 0.9896938524941905 +1.2147632582425851 1.3400395232159896 1.9495976553401362 4.0210519120990815 2.075238993564462 +1.2254679112497482 3.4352935073484554 2.112206558508592 3.4580266172034353 2.5873849337812875 +1.838574749025589 3.9868674993046658 2.830171636385277 4.231703169806186 2.5650443232183737 +4.098281303806859 1.795651449711114 1.7140619296861197 4.210460973498869 3.396190870802494 +3.5235371878033193 3.138154047689661 1.6574727306366115 2.0360965481017983 0.5402556430392694 +4.266350984738086 3.79827319968115 2.848457404463187 3.727511341267744 0.9959079458842555 +2.838570320045434 3.384255661500197 4.106176055746125 4.0822273078531595 0.5462106135953804 +2.807420660516481 1.0485178113920872 3.051444684099226 2.942179269037986 1.762293438558521 +1.4273914946817605 1.6924195129313708 1.9665951020992978 2.4768689572575795 0.5749950066873719 +1.0752676664942995 3.737718113167816 4.6567430165133405 2.680766790418359 3.315588096715962 +1.6823870006840167 4.880333477820173 1.3816021610864406 3.343757043965752 3.751921301817867 +3.7720670027721943 2.442718906016763 4.882874703980927 1.487058779776167 3.646742677161348 +1.3959615264368437 3.7556248194529225 4.498046550667224 2.1800720098267767 3.307720790573468 +2.5774110010145814 4.761822067415457 4.496466274463229 3.286332959511601 2.497213316272846 +3.9729665241184615 3.4058416027641067 2.5114077420727514 2.2126735923290504 0.6409935792535484 +4.641709296942221 3.736431164338044 2.0809954370312944 2.7260410792995176 1.1115810262776753 +1.4451538150058454 4.904700037283181 4.226206003761992 3.311571028434295 3.578409870622157 +3.837135429651826 2.9454399293248654 3.5452846092384944 3.452243434713311 0.896536404983297 +1.2945904866421234 2.4355158234969854 1.7275715665759486 1.393137280578248 1.1889309971264825 +4.796760255354179 1.5014350462355095 4.109208025503529 3.538910489214215 3.3443097215644757 +2.7396918064553257 4.330135911959932 4.487734475787384 4.478346642663679 1.590471811804631 +4.853801371945611 2.2238266667159685 4.12584595493142 3.4323508653790094 2.7198717597307875 +1.338321479164676 2.227071461334891 1.0805553282236287 1.4837825021275703 0.9759450212907064 +3.437334576663359 4.70748702926309 4.885523497941571 3.628817591928845 1.7867839788436592 +3.8726032116839746 1.8170635436026874 4.358454894334427 2.5618755080584212 2.7300074758592876 +4.338412280694337 4.215599938105301 1.3166469408512258 4.071465362249933 2.7575546062353635 +4.65238158966463 4.704235297619229 3.202059459470794 1.5686823917283164 1.634199942618912 +4.376980467705541 3.0876122777013935 4.949484389293142 4.329574032253467 1.4306499153041 +4.628199981994172 4.683070267821222 1.4081652268598854 2.4606112616633475 1.0538754216890496 +2.1119402853406712 3.195486371991607 2.6983580682649366 3.748959496174421 1.5092499734046725 +1.0744087248786482 3.779575706745902 2.8971250432844666 2.3235957908535836 2.7652964042175867 +3.1203356008493492 1.5030629702617984 4.707824942024823 2.9634269627108045 2.378759145412248 +3.1975125886036926 4.335039608144034 2.608022673098694 1.942611132390745 1.3178544072437057 +4.103845459841446 1.3578319685844815 2.2994801238417413 4.1660851837492086 3.3203621103484218 +2.1241903753101474 2.3813926164352224 2.8749895544377195 2.3785394031045555 0.5591205108010997 +4.923398073461729 2.3269685911702678 1.0240507692707452 4.397559681421953 4.256995235712148 +2.7100990410023535 1.6474809612858832 3.326681540342232 3.494714571529328 1.0758216780257974 +4.248844396528165 1.9502523113819041 2.990025702467154 2.5478947291635694 2.3407275303741377 +3.3595721578415096 3.449795921860752 3.7693705966091646 3.8159930014542405 0.1015577482388129 +1.7355093949870861 3.522526785554941 3.4329187084211745 4.294095247829018 1.9836976045300894 +4.7824825069570585 4.210828652124137 4.575612773612432 4.456450403069226 0.5839416069255684 +4.295699206632544 1.4755262086400038 4.221022344467384 3.8453187674481533 2.8450885603775635 +4.741445198063438 3.0836905100389935 1.4507764702068568 3.6668765052388057 2.7675349990443894 +4.088819423503646 4.134815286292875 1.7939913850756626 3.9308905754067105 2.137394153877851 +4.871728228646447 1.8379772094836175 3.0784929525658153 3.5755940521220313 3.074207987344302 +4.357852451019342 2.931503127292064 4.334362403920707 2.2517193447838393 2.5242572184839314 +4.26189029900124 4.167131085303289 4.92893914293882 3.5148954239087 1.4172152087488992 +3.5442422746137145 3.0263780074857 2.7639810788856853 4.791905091116995 2.093002436346496 +3.736108005843891 3.1464627271766528 1.2126159037907756 4.560740015468437 3.39964948514577 +1.3506752474847952 2.6216186316724825 3.076092957073868 4.118110766188744 1.6435018102585155 +3.9328427679134013 1.4671234960223947 3.770070498471989 4.407793691494094 2.546853430940427 +4.223980449974739 3.9307771022434923 3.9473574886167833 4.039719083335787 0.30740668063633236 +3.664634299404419 4.800877395244301 4.1781818165819615 1.3078702693659334 3.087027170422293 +1.3133696447112375 2.068015050283415 1.5984945433367828 4.541076536536831 3.0378081695288737 +1.473589146909601 3.6531441493283827 1.2399280943463187 4.03880130132089 3.5474147258657056 +4.6866392486389525 3.0048784869885883 1.2961872786815678 2.1683014026405636 1.8944398392758688 +4.146022313755657 2.3281139929191315 1.6275725815216893 1.4111354979239326 1.8307472993624707 +4.9778182740063155 2.7853122548477462 4.021697754072854 1.7841864181988423 3.13265695891064 +1.8354512921120798 1.3444126798122902 1.4742378581156657 3.3536026617806702 1.9424548859688104 +4.968807168922394 4.711173312167934 2.5024773684841795 2.441624005109847 0.2647231307992304 +3.5787733216928035 3.5692166585975817 4.165166844745746 3.9368819602770766 0.22848483163306374 +4.369076914523784 2.557331883741213 4.284507256137552 4.235785684263167 1.8124000243134106 +1.6774815741879046 2.1630674273470087 1.0813873139196208 2.1978528468861263 1.2174928776343779 +1.9558827637305884 2.7966887583227296 1.0526443315545717 1.0136085549730236 0.8417116563262055 +3.6655781033937687 2.508847522162389 3.6181053970963712 4.048834254071592 1.234322885547807 +4.046167979436918 2.570613121234582 3.062607505215787 1.0004412723851117 2.5357033957842097 +3.526874027493964 4.487785588212867 3.9537681712775954 1.0234309053722224 3.083865677923897 +4.0634296061183175 3.948066113441311 1.9501112931685767 1.3115297423597352 0.648918432837335 +3.246670968483007 1.8621698017013602 2.7391627438011668 1.9475842482477757 1.594816602447539 +3.71333036465186 4.747165843315102 1.5976761886335877 2.587081023188722 1.4309918670572268 +1.4583859838345017 1.0965365522549546 2.1084122255663225 4.469005149323806 2.3881653968744176 +3.5549371694198344 1.1065514040076185 4.133446541683421 4.7625088876749375 2.5279067014859375 +2.8956466387432522 3.2028122032860553 2.4193121935873863 4.446859139243445 2.0506821550108913 +2.4429304240157865 2.5182977347633746 2.8587992806295577 4.520225897255969 1.6631351821075784 +3.173641678016809 1.1731118852045554 3.1423956598021174 1.4387987018612143 2.6276152775920103 +3.467268210100605 2.006054229737873 3.3574554351767447 1.6350671468979439 2.2587093022360087 +2.8836776870398437 2.5315311979395725 2.7818703275185444 1.7635482005590504 1.0774911155276201 +1.9923763389644682 3.0557428181554274 4.162648187137952 3.420165855108109 1.2969303306050988 +3.894445662945121 2.7815250182697775 1.1315623731970152 1.8204807026994692 1.3088929773167226 +4.873176890660803 4.895210574818382 4.437578463911036 2.3441836279130674 2.0935107887518796 +4.965892092733057 2.749874096763056 4.286910505131176 3.340435219827446 2.4096786557866334 +3.6877986063472763 4.77040325494243 4.2939922403512 4.512986797235317 1.1045322272820775 +1.761697479759377 1.6600255354738431 2.5758524560781573 2.4802165429571774 0.13958299371085398 +2.6115062281592367 4.298840377093239 4.064866219352366 2.6334640367465916 2.212692644387694 +3.9243974576930705 1.8204535964960198 3.7975320439230136 1.1265991615734112 3.400067974774197 +2.6945076738010445 3.8395207278108665 3.5443984708321046 2.920954790022206 1.3037395894099 +4.0065653433426816 4.080611994403221 4.968530410089029 2.5555871178781815 2.4140791697785313 +4.442041334941743 1.0372909087039632 4.566496754704051 3.2341195728639747 3.656166629087691 +2.4428256624598523 2.8009169535185343 3.3588998400319627 2.7211181011021504 0.7314334687751232 +4.123349383464655 3.664694948189375 1.8941454925663015 2.6005558832046156 0.8422467162295508 +3.164561504338662 3.812108946183507 2.271317888956698 3.430489711386295 1.3277789738335806 +3.516039628702082 2.9443462291516065 3.587947235373704 2.3770718048734394 1.339049159395868 +2.0261888967833186 3.259034938731704 2.777185607897871 1.5485360576258929 1.7405427545829877 +3.5680044136737044 1.5089971421709674 1.8894645303455175 1.9101620229672678 2.0591112962397085 +4.33958388552727 4.458445025382094 1.6239787414525604 4.303339731763272 2.6819961385069857 +4.5133632950537965 2.314673376025705 2.5546258413244622 3.099830102214531 2.265278138800717 +3.649359293213702 2.4853045284623168 4.313826731475771 2.502812310566211 2.1528578048916263 +4.085706650537459 1.5271196355135292 1.757085627166623 1.2037738444123547 2.6177321181480293 +3.5813449155534816 3.091315849033614 3.8123055661855676 2.308873976515458 1.581276392934621 +3.3199931090501678 1.530373136489208 4.26994423246676 3.2172433015351825 2.076275245764227 +3.806881569661183 1.4362618222281531 1.3505228563102154 4.733481511374043 4.130889401665301 +2.9093532902924006 2.1749951847010083 4.581129915789368 4.520807097750099 0.7368315069430578 +3.040649593074234 3.3523577323374036 3.070781802608388 2.367612034374127 0.7691616780895497 +2.432844193307909 1.751836385496175 2.6977861272373844 1.0758855280364998 1.7590716835844786 +2.1583178838720545 4.844953457900064 3.632564124306207 2.4619299482709924 2.930596369637835 +1.2579675808016502 1.3558848420670344 1.227729789624195 4.9039711723435175 3.6775451722680157 +2.647504072841752 1.4417138167919248 4.839650303892803 2.93054943267725 2.258007147477769 +3.944173043673029 1.2455009906188423 4.792603769119404 2.2091983637953008 3.7358820027128123 +4.058922798572876 2.867143565912462 1.9501735998410643 4.2085078071221735 2.5535095713892755 +2.164518402563265 2.6662265163147927 2.5672738234659582 4.189443096124675 1.6979823852331997 +3.505929826340971 3.861701749334262 1.689725985475095 4.792406481204619 3.123011354409514 +3.3233866611298635 4.412703526562776 3.0112167459493255 2.013123571098041 1.4774306139380295 +1.8651698948957858 3.078404188127848 4.296540948951858 4.224255547988806 1.2153857944976527 +4.472805867118057 1.5847609915388663 3.7537182423446547 4.0357460439974 2.9017827079683793 +3.94949094387229 3.340503893253737 2.526553954365532 1.549535626519702 1.1512732259406304 +3.632611526819864 4.429936058049332 1.4667140182600225 2.2079050410794343 1.0886186386464165 +3.8058425171752703 3.3963804197169285 3.183095976686528 2.213767678573385 1.0522625902206668 +2.2849504452588243 1.8094844717147152 1.3027612471468144 4.6802088722855695 3.410750702199395 +2.6233593353494116 2.093576567293787 3.4518788725507217 2.2874967920054714 1.2792401693284827 +3.536968522827645 3.62096643839007 2.280436033205965 1.7787963699118499 0.5086236345360541 +3.356004379780555 3.534410346461197 2.9436175518374 2.157849421466012 0.8057668668135969 +3.264687335020971 4.926359073864548 4.173672873303224 1.059722671944722 3.529566379063028 +1.1624715911076158 3.1547871568588426 4.5303194204834885 1.7908956740809172 3.3872944625303734 +4.715645958297271 1.046062086685211 2.8287075098163856 3.1592658523929087 3.684442238472778 +1.4626069407540845 2.077779737723798 2.5602255705439254 4.182331496966439 1.7348386687719934 +2.8471309589066114 3.067733318831587 4.422664301646417 4.314186315828357 0.24583098789943436 +1.345326892694327 1.4054534120839386 4.9243838335994985 3.796566198628921 1.1294192384073045 +1.7323718469519402 1.2209846833709728 2.406169302616015 2.1800390518860384 0.5591526816269321 +2.006299429082389 1.9252473268453252 3.703460215496717 1.730064480451499 1.9750595359056151 +2.586771495022369 3.5003299777954946 3.5594382870679393 4.939204116627652 1.654793898304963 +4.611128195064341 3.533547180181248 1.5516551358742952 2.9766002640578906 1.7865188109758707 +2.6540794187197325 3.17863781584068 4.142501621498397 1.3884358939288246 2.803576206163017 +4.293984602477195 3.1585700225337003 4.3310074141135875 4.048419737461204 1.1700521626594496 +2.197431455672882 3.065835185410375 1.4166844008133044 4.9327007380233905 3.621670322013065 +3.3575077118707117 4.012632157900513 3.9958203312710845 3.031960310253855 1.165424463404295 +1.6316197094094758 4.08490013475393 2.5969672854102885 4.355577683408887 3.018492235757292 +1.5317149389247744 1.9837290015991251 3.297558286759502 2.102954779587612 1.2772604480695204 +3.4969117410547783 2.342252700801609 3.0507953503921796 2.55054600133008 1.2583667631002595 +3.7539317117053126 1.6549790025517264 4.837498926981501 1.2194332231854403 4.1828222424875365 +1.9641151121774594 1.2593612804817385 2.155866264308336 1.3821361370789416 1.0465831419778437 +1.4911711957978189 3.860561652122943 2.16303848051742 3.5464411695395937 2.743686231061847 +2.658011140010764 2.970347146001499 3.7892918659066304 1.3672845799477256 2.4420632821195 +1.2034617940385899 1.0721621240340755 2.3219721830977735 2.016190509493081 0.3327792590528759 +4.91148415227515 3.6504162107848654 2.9773867841322024 1.9571688625158874 1.622077976128662 +2.1602045662613367 1.0321070172621805 4.3817492615000555 4.094664836267758 1.164053927989963 +4.694070266216239 3.9290802317734057 1.6408806711329755 1.0290171458815291 0.9795849765742506 +4.941727139013318 1.0903950743480055 3.9541077280141868 4.552895265566766 3.897602492231277 +1.8772741248955138 3.5924703072199167 1.8693688148808945 1.3888660065257525 1.7812301627519629 +3.369436164729824 2.854923991301115 3.9201329610270066 2.9934218949898175 1.0599604598861778 +4.477119296749285 3.6940757708518133 4.664264711493921 4.183683233797138 0.9187577048140424 +4.415603576346565 3.2922697862769406 2.9813308461611276 1.7596191443045006 1.659656074723195 +4.416792839020392 4.566277081891999 4.6216366837557725 3.9054934269566592 0.7315782276187137 +1.8778875579169343 3.719091664673843 4.559831555438288 1.4619063100243195 3.6037721055737837 +1.9210323184331952 3.2482640300394277 1.3148876370648859 1.1812360596892852 1.333944061956196 +2.5926665568763165 4.684434233743955 1.0742391918194296 1.814917433482671 2.2190304801109852 +4.983819744938048 2.7692656789475523 1.0137741304092707 3.394071774792173 3.2511638819121114 +1.2051986484113488 4.270033274596434 2.926535478659669 1.934010594247498 3.2215395282442936 +4.970459514908297 1.844286670331885 1.8297953500510147 1.1950725020253579 3.1899576404668415 +4.32690382133791 1.4487423644084694 2.2082309001561247 1.7577881743328052 2.9131961865623377 +2.8452805840817046 3.8627599672613977 1.0208237115384855 4.503703983259052 3.6284596294207345 +1.550129855897283 2.6123410902387714 3.920201711387062 3.6437921266858666 1.0975859715192955 +2.368111611375485 3.1596384191215363 3.2523830912145693 3.592553990517295 0.8615282514886435 +2.400000550669982 4.7939301009873 2.6343336039784355 4.023663085860026 2.767875557373894 +1.0411519533370255 1.0885908419514614 2.4049844017005046 2.948215872290655 0.5452988894106702 +2.0169567451860937 1.8488978404157175 3.6763031623974243 3.2604250000960358 0.448551492419542 +2.730671402375293 2.975421255966533 3.9392382245860063 3.031297362067136 0.9403505201064352 +2.670494249614851 2.9204907018248467 2.5541075205296013 4.970379200271528 2.4291700344851233 +1.9814634973754326 3.62188625437082 3.2716134469624922 2.968258949373463 1.6682358265172943 +3.151971197687397 1.3906308993507994 1.0777510115957334 4.601190109287495 3.939155077131058 +2.0243760336566865 2.748830671938677 3.7310587743547448 1.3149047455699954 2.5224263742954056 +4.621548143082823 3.0689886317729935 2.4702686089960837 1.4579944583577413 1.8534130657274415 +1.59548602403378 2.0659804535111523 3.6037970323152737 1.7812523573370873 1.8822949026283264 +1.849118267643513 3.102961421236049 2.1455215168053234 4.32795822369589 2.516972910739052 +3.465145426345076 2.2783274102564266 2.320183158981793 2.020370102743293 1.2241016591785452 +2.806990280764727 3.2982679364521412 3.1807257361493657 4.907377694299224 1.7951826423961603 +1.2113222228673104 1.2881658315225932 2.8508211985075897 3.8225246005273723 0.974737114143083 +2.6045340207629963 1.4185937596887386 1.2578187209965757 1.5918199696677866 1.2320759460969954 +3.2601324950831327 2.151158989873259 2.032719645470767 4.693493327847125 2.882627069893731 +3.897165055242334 4.4888836109049945 3.149140394553522 2.728358743542441 0.7260771632155333 +2.778145509825629 3.0924354311734636 1.4156824057954362 2.6481512145981774 1.271910971464778 +1.930225029319224 3.6580569898272395 1.3834895735893054 3.485673407129745 2.7211358205263756 +1.0847317680944681 1.7921558942781468 2.1841588483825816 2.3098200384191574 0.7184981760506771 +2.906004945613237 4.819951012033874 1.1915190214406857 2.204351800202923 2.1654144598441807 +4.652826981645287 4.118379404538633 3.6368112685238105 3.5671948137994214 0.5389625807452368 +3.13206874937775 3.712596118606048 3.735717304631151 2.64786420494072 1.2330597685956701 +3.1728935136352683 4.286005835789753 3.509694235136056 2.921671795702057 1.2588842007945213 +3.511748307766281 3.1735497512391646 4.1589912816634165 3.5092677612010674 0.7324745160611486 +3.6580042668230455 1.4246191521170375 2.4425734071261846 1.7749995552496167 2.331022075892823 +4.848075055730346 1.5753071521104172 1.139372957687482 2.386362504133152 3.5022839233719423 +4.618388359846781 1.9951441501590348 3.9770329697419355 1.1581101839514134 3.8506799212488807 +2.879063817684022 2.8627684088377388 4.000748685826519 2.8481683580644033 1.1526955158643124 +1.6691295598781721 2.0835504481088165 4.130077450485034 1.2364456602787963 2.923157472647348 +3.984938753896002 3.9672571427812846 3.4489644928769643 3.8325261034456926 0.38396894206913257 +4.369356313066599 1.7079716842542427 3.06947754905941 4.839992900496563 3.196512592209408 +2.239635918025243 2.764594313139382 1.0681941859340234 3.6395997678557044 2.6244443189633095 +2.563567918893016 1.1696345908328198 3.0859034399765557 3.410630617275231 1.4312574411171943 +4.894451185495756 2.4393648657115485 2.5018410071374246 3.7153516317165187 2.738623171149676 +3.717165236314269 3.8488419181108324 2.0656519352814486 3.258008585134565 1.1996054055304604 +2.3475307429497945 3.028003085277411 2.18139810469009 2.9613387811009413 1.0350604172670546 +4.968046466704739 4.667218429190416 3.7291600855309097 1.404308535626436 2.3442338273405987 +2.747010761056864 4.2277257386702285 1.9547234801494313 4.082949849390383 2.5926558436593683 +3.858515592627865 2.591224968335966 4.561454734701176 4.187497215741722 1.3213136464914232 +1.1197705477939044 4.825348266458116 2.3715751147950987 3.262279393910493 3.8111232388752714 +2.4855514038511455 1.4737180718612892 2.4856162088076257 3.841491954500786 1.6918054644327989 +1.3540417445660675 4.004329501708712 2.404841441458045 2.0153110287907725 2.678760746698541 +3.889934555373146 4.283675507148674 1.6018247343674705 4.111158368059766 2.540036854513036 +1.40333889188764 4.905413799083669 4.173014358131487 2.304990108959205 3.969136335666456 +2.9374075040013228 2.9873520306016026 2.9753349916167795 3.358500698321038 0.3864070580767127 +3.558098548859227 4.31701274309466 2.7358331726327454 3.1687215429751907 0.873695081472795 +3.837156274598946 3.3645790837399336 4.653126872959131 3.5127635989373625 1.234405767184293 +2.1566088414168543 1.9817182394772987 3.2085768750933297 1.273449756548866 1.9430140729220102 +2.6211445473584662 4.811921530741188 4.093130394032206 2.386440091422513 2.777102011079439 +2.492007037508941 4.045838947879316 3.1790653202529358 1.18808219736946 2.525550910453418 +3.4481945115860695 1.3302442720427359 4.23160106128824 2.525564938144051 2.719608881926686 +3.724865198187686 4.322095104901534 2.575278227539299 1.2868719916318798 1.4200965425627072 +1.6956640439863846 4.3445826431986125 2.8772917460332095 1.773690668213094 2.8696175850134096 +1.6279656299976084 2.244039573749897 2.108265349182617 1.0673940561264592 1.2095288970830318 +3.2211214212338586 1.679830217808722 3.105955678137887 2.195226610419042 1.7902530571245345 +3.603783588503525 4.208295625264835 1.2917133265003105 2.3556376906193877 1.22367064815476 +1.6073264705683274 1.646726416651075 2.765805683635007 1.1394523561621672 1.6268305079304672 +1.6370989666234994 1.444783428928337 2.5164640805990723 3.8051730406523525 1.3029796812539274 +2.543115296651642 4.516137668928528 1.7471101020807356 3.4104954408420665 2.580633268543064 +4.843923347429133 4.612507181026471 2.8725847127985813 1.0180346242303244 1.8689327096182553 +3.095667637897888 1.0161898381043062 3.898058922506332 4.693897341203763 2.226563879278828 +2.115878708634346 3.3876799483938815 4.1436770056676036 2.091474870840799 2.4143346900629967 +4.759104853760464 3.919135288056545 4.134553135049666 3.5230040774872378 1.0390096828780395 +4.408221482303772 3.3402829342161686 3.8744225353981516 3.0332810227891938 1.3594159726608865 +3.488990589221153 2.8935848709105016 4.987700193188672 4.779019533346682 0.6309164660944514 +2.1912294976115554 2.4932689625238673 3.703435773654985 2.2332226203746113 1.5009179039651488 +3.7569259061438136 1.3647173018791796 4.056288599531255 1.4581494855045602 3.5317118883274112 +2.38497916550189 4.313435855978557 3.6453558006437077 3.1686512786229013 1.9865025568469081 +4.459393675192108 3.4631819190127713 1.678067503937203 4.548796314690545 3.038671052950486 +4.2088621813724085 4.110792863011131 4.631711140302265 1.6878519730526564 2.9454922148604306 +1.3499685765992786 3.1055516954152607 2.723575724939285 2.846532829481677 1.7598836713343013 +1.9822951073493398 1.2357278058270982 4.212822217479173 3.6082228846904356 0.9606784524026697 +2.8710580230281018 2.829978385067862 4.216140497147085 3.2366451072804043 0.9803564430476419 +3.872914181856626 1.1328884149302003 3.108666161746756 3.7163595648594354 2.806605151354108 +4.177091811673398 4.401778131173098 1.4582387175782885 1.143757284333394 0.3865003415601137 +2.747716300274594 4.8103882387719015 3.355066971999052 4.655531493937323 2.438405933942168 +1.0432427203908414 4.238795129027553 3.0430961963714163 1.094130233457185 3.7429965964374166 +1.718357408221474 2.016774327002964 1.0586816377937165 4.761268867977686 3.714593497885931 +3.8968482361815906 1.939662177752615 3.0425765824510016 3.3978681099970163 1.989173028385095 +2.1156596790418325 3.903377316580652 3.7450253154253326 4.2188153980742396 1.8494354257404706 +2.3460655428227595 4.7793241451469735 4.439597439837345 1.0194859129756657 4.19736944787529 +3.95806716557863 4.448756841215575 2.728013099368408 3.7880802956897237 1.1681261997289614 +3.509792505535545 1.8724743165292712 1.9589112033195626 2.7653935890375525 1.8251642913787691 +4.309333796064116 2.1382942979108583 4.280540168364432 4.383732056437014 2.173490526389644 +4.452406301704987 2.110689528721197 1.1038332951830245 4.948197314645895 4.501418905080301 +2.8656187419286536 1.5284173289795837 4.3108930660814835 1.4363583637298647 3.1703402615203147 +4.355442251932983 3.2755906775109125 2.766685313999208 3.261378871592166 1.1877715010496765 +1.5685704054664353 4.215615148197646 1.8238503751301693 2.0835968645007696 2.659758280137744 +2.167960641927681 3.1972662168067223 2.432451488755652 1.6410900735802696 1.2983539024108401 +1.428431583435604 4.470162542995052 4.472776859037092 2.0366533496805914 3.897027711369508 +2.795845387146613 4.881313772096869 2.2386408679079826 1.9645830502477843 2.103398695456403 +1.5356870095142567 1.5930058770507185 2.559458661254425 3.349686441783937 0.7923038543994733 +1.6854772088993633 3.6418610883825626 2.1220028671623026 4.101260201694792 2.7829655909123976 +3.551168820917125 2.9073213247849155 3.246174760535361 4.385499138092509 1.3086633010716313 +3.6116148665493757 1.8141971584320271 3.5422914313982665 1.9690198865913793 2.388701272899747 +3.1346580714203403 4.8348688595864795 2.056124300963175 3.2742565804416968 2.091545594651014 +4.8943179201103195 4.668617855642561 3.8373347120496857 4.382996309278931 0.5904973308928004 +4.099209422214191 2.0273481530004482 3.4994966545431385 2.5673177669708296 2.271908140155215 +4.603057907492454 4.845866481995913 3.4902573828677315 1.4141651410764373 2.0902428089287626 +1.431844953939145 2.655750839695408 3.7509179572467928 1.6708255237205156 2.413447772213456 +1.7050827416176526 4.308354921173079 2.33260360568441 2.2423836362876606 2.6048350588329408 +3.692033771834371 2.0080826201698447 3.757758128188417 1.2837418232367273 2.992732557105479 +2.4615903920278135 3.7484444368267362 4.483472918504445 2.9854994433890187 1.9748209703071147 +2.8397269634956572 2.132696434488429 4.523264728959218 1.148746736235216 3.44779115553223 +3.9281549709582992 4.28332124180122 2.932312130820105 3.680496072414591 0.8282042564514674 +4.262259459614144 2.9353608042970625 1.8688077946708175 3.9118873681762225 2.436151511125141 +4.392734003582585 1.4023593485784729 2.9820049577869354 3.358816367564266 3.0140218008218422 +2.47664962626171 3.0893623079717636 1.414172520153445 1.572168597324786 0.632755553693413 +2.055355005892151 1.8910717527496739 1.2080286103277609 4.560832395782396 3.3568262110246345 +4.12003719546175 1.9111243290512085 3.042616644159266 3.331898729392544 2.227774713976022 +1.3049520585189454 1.2628266555895977 4.0884941258085945 1.0229131508988165 3.0658703924498742 +2.437942104588488 4.009969240690909 3.2813308439514626 3.957211047977256 1.7111643307515287 +1.9294094137546058 3.4022355724664353 1.914826008464269 2.0376466155193182 1.477938359777976 +3.776555486476505 3.6369241884787935 1.8215429784583104 2.638702989682857 0.8290038500061545 +1.9914836168131713 4.525086936454175 1.884617796382643 4.793361419875342 3.8574519113665366 +3.4066198369597886 2.7110593398965874 3.420792225669903 3.73014756005062 0.7612523418582127 +3.71133185796172 2.9415425271351627 4.482221430936392 2.8576506587946513 1.7977223944623963 +4.690258887286881 4.705995185744387 2.814045570323429 1.1735608359646212 1.640560207597829 +4.43253256514487 3.56935356835374 2.04028239961237 1.847309294192859 0.884486630716706 +1.3380695438998447 1.123594764724535 1.8094246847623285 3.721103276089632 1.9236721309624052 +1.5501564601840037 2.5950383080404285 4.799402237584486 1.0423847132332091 3.8996100772080347 +2.950587487776482 2.676052822892102 3.360770501552765 3.0030809613914404 0.4509003097847669 +4.068381019824721 1.9446381127986534 3.409766288481658 4.830154520869828 2.5549533588404945 +3.1339506980988663 4.033805993561751 2.276767426455144 2.4565821423253063 0.9176452935726652 +2.1902582471608723 3.8351494675968745 1.7393525156535246 3.20327426183736 2.2019841066677506 +4.53079401381681 3.477390731163957 1.4302992042987692 1.4811376000976662 1.0546293274848808 +3.6585933280188025 2.0663551354008116 1.3670555039039987 2.782339547008018 2.1303172028353585 +1.6321228238630852 4.2867666923250844 1.2162520396658074 1.2059338722195538 2.65466392090267 +3.863475726616906 1.570318392424137 1.2971505152863538 1.9596028668954508 2.386925570166466 +3.03650444855936 1.1561180214889926 3.688253416635912 3.989704726213406 1.9043964942092413 +2.5957755362139214 1.4485171473578036 2.9398936142190704 3.2858982716846685 1.1982992254811071 +1.5988839987406784 3.3774350586485635 1.6817609420102175 2.850952299157488 2.1284389355411015 +3.9483142933456623 3.019491228505983 2.26594731189343 3.583984534062823 1.6124312093240396 +3.3706993881411935 2.044820408410272 3.380547072434877 1.1735866597287838 2.574612462516283 +4.049763391486422 1.7550289988836973 3.7154777432957653 1.0174130450161893 3.5419428353230455 +2.118012895918426 1.9598070253577973 1.654847956487738 1.473911288031303 0.24034802988990836 +1.2685614495822337 3.6212753578771575 2.2598410840004926 3.8658756162299626 2.848615392256018 +1.927789630856668 4.298705028953146 2.8519292262436404 4.877884037731009 3.1186107040026334 +4.697047013936451 3.698801139807235 2.1024291420186088 4.782375129857683 2.8598261001240535 +1.9176725837324327 3.749761474148795 4.481154453475847 4.749374550926397 1.8516186764729503 +1.6492952113948687 1.686699623859445 2.4759252377269134 1.8366538620317252 0.6403647256486249 +1.0074831351095774 2.8069636680888026 2.374063622842503 2.1099397136667397 1.8187610145287048 +4.581333889035884 3.0042241702422965 2.6450086043904766 3.4901724694943717 1.7892951193111055 +2.3090181405108425 3.530839798038166 1.3624222025285326 2.007538129236866 1.3816738839883917 +4.618163953897227 2.4227711525323032 4.095995804539937 3.9748570783996175 2.198732394643747 +3.6632127841004376 1.9368157968973931 2.7468881436011836 1.4154912271628182 2.1801523585578457 +1.784313820919973 4.647970875648829 2.1009984492606044 3.476906722547373 3.17705135362923 +2.184545030837562 3.7826906413436507 3.041058202589177 4.430670292629539 2.1178033792508275 +2.2330718038510544 4.168532100297188 4.304610713355439 2.5791929909145304 2.592888905455174 +1.1014584594913632 2.5407244382689953 1.6935085395243061 4.948705176703085 3.5591841346531603 +4.906739652538514 4.903981804500347 2.680487798688996 3.062003100164003 0.38152526913084944 +4.9361194515186675 3.791483563160607 2.4269710944227825 1.2989419395288895 1.607059765910365 +4.117303933870794 2.055046712083041 4.328163221397562 4.384714665753019 2.063032456039999 +1.052439146840185 2.7640464761089683 3.810293949976065 4.340179371495733 1.791752831599742 +3.2361156392478607 4.952867967850262 2.9813922636674435 2.4828871061099735 1.7876649434033112 +3.4316413036737057 4.316055533235202 4.097114462475952 1.1717344062352617 3.0561474118408687 +3.841731853426641 3.0713531560071856 3.7960275431100063 4.399363745079583 0.9785182216212281 +2.1295415408759 3.983402645643832 2.6537689691688366 2.3705991086151497 1.875362942392051 +2.8062293399043994 3.7462532498976895 1.3294637772112297 1.5958661598376276 0.9770441038295533 +2.2137884880937175 1.6323037963805613 3.5782799417450195 4.023420902974399 0.7323079420987869 +2.8939289264931363 1.6071985502072743 1.421457051125821 4.689683165172005 3.5124033073936958 +4.529786419291311 4.996352842192682 2.052909098795473 2.9983328535442753 1.0542818897345743 +3.5229164139002633 3.9544261521681467 4.133230837491273 4.406796072842385 0.5109193597944071 +4.5338732449665375 4.078705123703973 4.482629465435787 2.3824459451337177 2.148941329483447 +2.0224067710593037 4.807421248837015 1.6508083476665543 1.9740579496779542 2.8037111025624566 +1.75866193603655 4.42862878685267 2.2062159945494635 1.7129085969184739 2.7151565651016165 +4.170927878268785 2.3640945989324593 2.3783260114581837 1.622296798870619 1.9586287727905543 +2.447167265002963 2.1661909255740195 1.7927644569661938 4.698325503910649 2.919115054402592 +1.7105517323891104 3.4041501338880664 1.6451381101118052 3.335154762107481 2.3925784897433338 +3.80603030310902 4.512778819064535 2.923622070772124 3.2687513013152496 0.7865161476922221 +3.372123582237064 1.7125161303152785 1.5216950425586226 4.483651767156848 3.3952149464896872 +3.5651465873270176 2.409648275069282 1.0354861493372707 1.6959678901407882 1.3309442060301855 +3.343470235323701 1.9024025955920654 1.1609289955948499 1.8284166373681208 1.5881485113810199 +1.8076841448001297 4.764777966573875 2.692181642090407 3.641494627061836 3.1057364688923332 +2.1480278688327696 2.397895034922492 4.113613633296163 1.7451762015445849 2.381581295864519 +1.8126923994514303 1.3370320744470372 4.494794961116513 2.3423939171351975 2.204332778623759 +1.8394152241826776 1.5269775506897787 4.7226286478127815 2.225592071979808 2.5165072940218782 +4.261035746350293 4.17056447041573 3.2372007285020947 3.541629466469145 0.3175876387226663 +2.222203087725011 1.4672072425171612 2.777225083377049 3.451571577473737 1.012305250594706 +4.153927691908738 3.331793946628201 1.8205784141696255 3.855243114040655 2.194484981955964 +1.4520832660244745 4.79578718982605 1.5891376754800008 2.9684143110316734 3.6170098102472426 +2.0422422084720298 1.8376581215261085 3.3280521710448934 4.435139956597316 1.1258321427063913 +1.0936159802544272 3.6135708050167574 3.487759331450263 2.1290690068250475 2.8629026733497454 +1.7476601118572272 3.876313967261433 1.070325780034151 1.0472973153220746 2.128778416443145 +4.799270361571012 1.4012528861482694 4.510012533873644 2.494402160200794 3.9508490153049323 +2.242157073833758 1.4502226372523501 1.043777525927469 2.478036010282727 1.6383703951758142 +4.189200055001921 4.975803054905124 3.2989605232700137 2.9638919829321666 0.8549942726011994 +3.9073935263899195 2.7056700321009144 1.2841392441707615 2.206164804854534 1.5146849478622284 +2.7995623638288762 1.6736873755278538 4.6552348707094255 2.1873362876121334 2.7125850964965963 +2.424202632098868 4.0364577258910455 3.20948230370463 4.092383680486368 1.838173367390005 +1.4936495568795864 1.1201071759502579 1.7526296321233006 1.17665443183997 0.6864993384496261 +4.429361790925803 2.238566064747936 1.7150026959427325 4.22464759317635 3.331351591178863 +2.4956430823909423 1.9618028121597342 1.668378037155148 1.6176767443616415 0.5362425339447275 +1.7910854686177657 4.809502960868551 1.816916629251982 2.9686733246675683 3.23069460688567 +2.732365469001264 3.6719111465428442 3.642430044007783 4.644682758037362 1.373774575018305 +4.962332848213599 1.4741317275987837 3.3674472703759153 1.1659903595985406 4.124798126923051 +4.487118498830907 2.1659768431578934 3.9469278702271526 3.293033744474238 2.411488360617697 +1.6661181151293594 1.8659945376344367 4.295931441137357 4.350298305919123 0.20713845673758172 +4.402051674076334 4.61593313536463 4.532158984607451 3.8561148401239875 0.7090704935147101 +2.624382314971987 3.365670098654131 1.953157195901571 2.18832320644861 0.7776957186155745 +3.677481523612618 3.9412517142340477 4.829680253782808 3.1470964750969106 1.7031332554316994 +3.1528794651743812 1.74522193657723 1.7941847930882355 3.0354100450652446 1.8767364876193007 +1.2361938504761891 3.355902314060945 4.212307333939168 4.795049475900949 2.1983521953069878 +2.6587326029472957 1.5595275764153351 3.0509096713444883 2.0209362477750554 1.5063521977321461 +1.9312161490756332 1.6438041304681241 3.9317799217278524 4.414280189598767 0.5616156843745972 +4.479562291007243 3.2668757696706634 1.5113087089320003 1.821801239194449 1.2518043818345546 +4.34492955633964 4.860383347182536 4.105273290230064 4.724524835309541 0.8057078171258061 +1.9717612928771362 1.5086420902411017 3.1365698439729495 4.33930182353032 1.2888148084578435 +3.6060712730642672 1.4527082348833233 1.828969209549573 2.0984152520954393 2.170155188931772 +2.026576009031343 1.3337571544968694 3.1696824307154348 2.4486259465192903 0.9999602085082011 +1.4591910313274017 1.9401008218888194 3.8112188517395493 4.132879168353469 0.5785668379210769 +3.933195688545065 2.5517611589929965 1.1772102900563324 2.756115060712565 2.097927938285716 +3.4126341745472977 3.429466973420057 1.7081182326088586 1.1003409972370957 0.6080102885264642 +3.4027463854034834 2.206031256083969 3.55091019156227 2.5194470987733464 1.5798870885376315 +2.0265408731274084 2.377242077551122 4.34609316355848 3.293566521808681 1.1094159122607508 +2.8122493257495784 2.1609043983007954 1.1699917308004117 4.353647640854129 3.2496023092269657 +4.591993222939198 2.4026639230672697 1.451009473286374 4.4009444724198 3.673592149707155 +2.7163466799438196 3.828846718173023 4.659858288746731 1.0480179432082877 3.7792918670988143 +3.2104924645066024 1.6425155490182228 2.3421683303487395 3.372611749966949 1.8762636404671178 +4.6307969760200045 3.886643784359464 3.4694999340602295 2.1307610177535636 1.5316611435603227 +3.4684367060474415 4.263870845768832 4.4188127843631495 2.9002188021040505 1.7143054434924534 +4.464139681687444 2.6012347610542217 2.713089063605396 4.590892101196305 2.645100941609812 +3.4338007261201686 1.0346635821722447 2.2318553080364874 2.8602385982119256 2.480065441645101 +1.192763693362318 3.368567288094147 3.4986513026468926 3.674648371367306 2.1829100419041843 +3.2408743488977354 3.1641005714389263 1.946988894259825 1.4002367994447509 0.5521159897068428 +1.7784663027080394 2.1162309745962204 1.7674840754578138 2.066955490103029 0.4514068029674973 +2.5116668877344717 4.776071263907518 1.1398263414420642 3.5693247589547097 3.3211428363634243 +4.3528578499870685 4.692072959992856 1.0275109992498122 4.185765684799364 3.176419296889492 +3.43692106095542 2.1560376086686954 4.4532618133969875 4.030976988322797 1.3486982211858582 +2.6329143495165175 3.4846654035680196 4.655190302736104 4.823753538755609 0.8682703626263033 +1.3547267643889769 3.345581880276883 4.252550018926923 3.0525190834651283 2.3245598160775214 +4.389554651823444 1.5840332141410416 1.6225925594185489 2.9424650996165913 3.1004861005436495 +1.6700988277970823 3.580168341383905 4.057735080706478 4.9886829989432115 2.1248598949585147 +2.700612150622076 2.7450227053460936 2.2970535867820177 4.262851628244724 1.9662996305724894 +1.7994608017143965 2.2930803219082 2.8932420494814837 4.3956579131119735 1.5814277277210336 +1.4516446225073585 3.450473985412829 1.90821477814043 2.142933253342152 2.012563436171419 +1.0658099848357003 1.8811406676475642 4.67029215843122 3.2957493178066852 1.598165242722612 +1.5903962493130646 1.413115926833096 2.055297537110786 2.032445434896787 0.1787471155409248 +4.9315112356141935 1.6585255633486553 1.2962398620151214 3.5686559486227725 3.9845087628876823 +3.8050611747401173 4.268427859943095 3.6965976832259755 2.6277830666024005 1.1649349207849318 +3.680936916752103 3.8726971902464316 1.0952499275102583 2.6164478714028045 1.5332368333018647 +4.301601471318406 1.287079960452651 3.742536900441828 3.8747347257984983 3.017418798327701 +2.3687752256807664 1.5245222339569628 1.2970475606486822 3.2367394809221004 2.115459255010262 +4.869845327874913 3.4753578921015587 1.1518973793844527 4.3372621976437475 3.477232266319553 +2.149164073502675 3.356427671792591 4.835307435161002 3.913074524993366 1.5192099711205762 +4.56106516211823 4.004557752318737 1.8830302417613933 1.9754407502257796 0.5641278217180811 +1.601967532485625 1.7749889565407453 4.348433550847613 3.6892730808090137 0.6814902335643327 +1.687443686384742 2.2812989414108613 1.0331912191469033 1.1977705311620985 0.6162389259577264 +1.5923044380581501 1.9608108298187705 1.5675970078547183 3.66308783356065 2.127646296118356 +3.6430562238941055 1.7590751653114358 2.0982597096665776 3.3342465502203407 2.2532305916439954 +4.391664452809861 1.9161033246148627 2.8566372063829983 1.8517089590439997 2.671756665890426 +1.6462939580744234 1.4758010733512403 3.828705483835865 4.5034037366596245 0.695906283995673 +2.587138883937431 3.028111082680082 1.6708231286719477 3.7096017922210374 2.0859230376519027 +2.2833578085663153 3.7134398731984954 3.809157972355865 3.9749774386521395 1.439663435315845 +4.933759703712829 3.821209521587921 2.0947548458829015 2.666420415296281 1.2508274984980499 +2.8770546448612007 4.838691448545381 2.710618825999639 3.7959063339758905 2.2418447592412796 +4.010716738504262 2.290667894015255 1.4356602306191877 1.354496307179784 1.721962720239914 +2.7901084188659677 4.978026731505556 3.5207448029744866 1.165376838029256 3.2147697885033546 +3.985772982244158 2.844921605110411 3.8793338596885882 2.5541954007615444 1.7485805100239187 +1.127486914254884 4.078955092241224 1.434563967028767 4.612164159446374 4.3368545500764055 +4.60619490824995 4.555428496223374 3.9814835794559458 1.8114971028276008 2.170580230569686 +2.26061378862123 2.717260144275171 4.318480251370394 1.8508075921940317 2.5095685380117767 +3.7282721789554003 4.909031991898159 4.778148553711878 4.93982003218667 1.191776574200401 +3.0572099876407846 2.8959788360908436 1.6953338118706553 3.618903142917748 1.9303146001559122 +3.3592031864373024 4.650683977639305 4.330193755048373 1.2231648904082553 3.3647512537705677 +3.547001803550911 1.5835468816535214 1.0559516888131002 4.905790214366458 4.321621443759036 +3.7380812745823766 3.0366210873404356 1.0258227115655472 4.438436313319659 3.48396010154575 +4.120994896045359 1.0936562118233812 3.905598275129276 4.946117271204694 3.201165301914391 +4.492045551936274 3.815600943621524 3.1433610720838963 4.361360087420345 1.3932332573832187 +3.031027251834458 2.1942227308069127 1.9237934418121898 1.7814913932669327 0.848817812862287 +1.0974077119184784 3.779468524677657 2.9244402428399328 4.48231576321952 3.1016812119133705 +3.2878658571109445 3.4970910198690977 4.3423833063820245 2.7551197944359447 1.6009936368039004 +1.6610322811049283 3.713735172629945 3.6118996695672245 1.283746736412609 3.1038500674213636 +1.8032165707992167 4.164923804094082 2.3326631061061818 4.207372241208155 3.015326747971449 +4.564102211393296 1.7710174198125563 4.1807112781647096 2.8837080694084545 3.079535675468567 +2.783153373736039 3.637683178089667 3.7186488293791564 4.185023049847967 0.9735122495616274 +1.8534411318397068 3.5632729686462943 4.1500015942573985 1.711692166899521 2.9780661130504957 +1.7688154475774063 1.8640577032635037 3.560101864753511 1.744378059757246 1.8182200150967127 +1.2261037845231324 2.017795771579017 2.6665387404682894 4.314290414145803 1.828075977763381 +3.7372623094661646 2.808861349753659 4.4980908061895 4.680976255056782 0.9462427962222424 +4.000824610499827 1.834980992945043 3.5371093012928188 1.6509947384854633 2.8719865458836633 +2.9341609201715 4.508009415472637 4.410567389749261 1.6889367878140686 3.143926242702231 +3.576751114401199 2.3568776964764044 3.86521895364818 3.0875620745039822 1.4466656066416363 +1.808724629634216 1.0258807122140476 4.544749025742621 2.5829604467346123 2.11221661478363 +1.83725954186519 2.833258481657847 3.0986275727653587 4.777183812012899 1.951810681491661 +3.0785940655448574 1.1490566941582685 1.4960623130682338 4.206503183398243 3.327101468114966 +3.1658621861079697 1.3984110483834913 1.1423078870858836 2.2783277662294803 2.1010532335124177 +1.4168435117222806 3.7476923029369447 2.8623259360631628 4.103906125846041 2.6409046660506603 +3.0755565139710273 1.6747604229534043 1.4923815973842358 3.178448680411593 2.192042859316084 +3.530148941531766 3.7229423146306524 2.6661532964774177 1.307185437263286 1.372575290134529 +3.3526770425949843 3.3825069744228573 3.188336817392953 2.7771064302433013 0.41231087318685633 +3.9953824472231334 1.0417797110470923 3.3735890111033227 3.331969624424533 2.953895952211945 +1.359838585171595 4.497803372468731 2.82085008267412 1.9821282124836208 3.248119052906252 +1.6012379656445748 2.7728669061393028 4.855350829764003 2.0229729763105713 3.0651392593058913 +1.7163555574854539 2.7914552165548265 3.9483524094794684 1.1401140996376182 3.0069987831381795 +3.970540733062247 2.220217113823084 2.2832883868706504 3.916034457211882 2.393635833263117 +2.3718941374377596 2.8446746894000743 4.843863632886038 4.524554188410206 0.5705085202214383 +1.045608350900567 1.1471153392970832 1.064889963019405 1.0228317016943262 0.10987522941509208 +3.054354913782111 1.455979145754048 3.5762795329184938 3.6149901363381147 1.5988444598010185 +1.7417137158318963 4.647657818429357 4.438441626857953 1.780395771852597 3.938238044447303 +4.133688259617096 1.0944528387538308 2.963306210511695 2.0624157686974214 3.169945666976364 +4.27865258078886 4.248193407432192 4.191754082006132 1.6504416807254367 2.5414949305762202 +4.633385444634241 4.483100772209944 3.480216602838524 2.015691536283318 1.4722157292102978 +2.925554870191112 2.886476196207334 2.110445210545651 3.204727932374072 1.0949802820382417 +4.819618966185034 4.426834268501377 1.8247499728231031 3.1919998146873567 1.422551211314471 +3.1541061734956117 3.880235824903546 2.493232609522658 1.3092802830116006 1.3888871020010063 +3.952373258090432 3.8937353547657327 3.7224943507992854 3.0754281049102845 0.649717731230418 +4.495145427590847 1.340262795405522 1.3121318625197778 1.8130031357415421 3.1943945365598463 +3.132777709722155 4.004866198249186 2.780219337765319 3.0635028628789818 0.9169448660754822 +2.9242665015103446 4.385377662960638 1.3794547594832105 2.1298670584255377 1.6425481559207125 +1.794885850219568 1.6821491771108747 4.700259037744003 2.608297742967027 2.0949968057991355 +3.2223880970557293 3.231534020664961 2.5553979484917213 4.341620687688487 1.7862461537935537 +4.54264521839546 4.468692740758781 1.963350331550067 4.366507550306026 2.404294821149744 +2.439099406519628 1.830394285897857 4.442810787461797 3.953296458185669 0.7811185585030112 +2.4955437569154806 1.2296821322030818 3.511206023541709 2.34149395370256 1.723552139985008 +2.7715381437540656 3.5726454926662594 1.6058090034857426 2.706477281362208 1.361338915334704 +4.321142549806671 3.723120032395532 1.3680933926421477 2.8256059876541437 1.575428162738422 +1.2972142762779528 4.36317983166359 4.368891667596548 2.078719933989049 3.826882720469225 +1.1001521771257323 2.735309039733933 1.8709306519654918 1.8602853320751627 1.63519151421791 +2.7501857504197402 4.930114021874649 2.26429364535395 1.3436307199973014 2.3663701085871267 +4.0360915779629085 2.636365248720174 3.6728492652570046 2.8719095928891525 1.6126804257347649 +3.0070724533887865 2.5951042305321357 4.6235148310907 1.3522048895280627 3.297148245137033 +4.200367115094469 1.913909877333491 2.731512816197534 1.968444239424926 2.4104274212195924 +3.039023270571157 1.9256090897167208 1.8006181538215187 1.7710973782367216 1.1138054652042622 +4.566824745751985 1.9156401918273733 2.3319432216578044 4.324022170322495 3.316196326619017 +1.6018728904098123 1.1416349309361649 2.74703473303598 3.3333325677944323 0.7453617446467964 +1.8440989703886208 4.935751189172122 1.8028545717693198 3.5820558601013133 3.567053499221896 +2.7534591492697467 1.7654135603038599 1.2058151820620053 3.452691262877019 2.4545236214820956 +4.982636986884119 2.753964815523323 4.267423621966759 1.7700143224748777 3.3472425751036585 +2.661563047729612 1.2571199746997284 3.758305589880447 4.317405263130839 1.5116391070656772 +3.8902289473096983 3.401179821884389 1.1652073537440502 2.314913637664409 1.2493972892419851 +3.82188496498172 1.2371747451939243 4.23412780162799 4.824616001059669 2.6513021770336818 +1.0253916358971051 4.034922550617104 3.290606338101511 3.022107719396254 3.0214843760810717 +4.990210131017193 4.828097634550411 2.724625103645177 2.609060793630391 0.19908684351278944 +2.1162500668961672 3.4122659756131686 3.6294068754151834 2.8744887162299197 1.4998528803570108 +4.166263055163782 3.562901532721685 3.2954846387948242 3.9640545864661014 0.9005725410497586 +2.2835836745925113 3.652077399287651 4.1726274038526805 3.540695698381474 1.5073528966070702 +3.3262437762782575 3.4910846743967734 2.335791915103845 4.336724033229853 2.0077106024127955 +3.7177396125026427 3.937959875247532 4.326854160615117 3.8699156933234677 0.507237347810933 +2.26364626974936 1.8795132772668945 3.322367018910116 3.4183752581423534 0.39594916076942027 +4.304529565691166 4.400230986491156 3.5568211975052177 2.4978290816359427 1.0633076052659551 +4.843084199281237 4.9742211906520435 4.822938219741525 1.4882171629480432 3.3372985238254644 +2.1800006451341614 4.975488742670896 1.655099640026409 4.753183333859059 4.1728738631141615 +2.5778522567327613 1.487294863710383 4.237644072543534 2.7451024387356546 1.8485118220140386 +3.120552157140176 2.122912002552003 2.3442827929925496 1.042621606568951 1.6400023543545308 +2.460465217157898 2.7360581288711665 1.5097121362995067 4.970165424167566 3.4714101472605416 +4.568468603623954 3.79109398295682 4.629756724555122 3.937862138282133 1.0406869939473833 +1.384360813399538 2.6602419367278487 2.1219524726000576 2.5705603471262446 1.3524502452779603 +2.279907367905581 4.552057881348681 3.682906957704889 4.494008436930564 2.4125823437432805 +2.4886826353645 3.9686599037567767 1.9722909714618417 4.179688040612023 2.657618207314714 +3.174106562496156 4.497633719824492 2.3239298980937204 1.8609524495338192 1.402166985084395 +4.625924728654362 2.1236434600442102 4.853567038986546 1.1704352770772295 4.452737486403444 +1.1889388300096986 3.7594761303876214 3.257181264968644 4.773382423288498 2.9843806669265045 +2.2669101691930718 3.9845463001801704 4.926073773473631 3.5699566819469766 2.1884532081822177 +2.8910618522317026 1.0830267065042336 1.51014667143808 1.682327897132999 1.816215147681451 +1.2690149175827483 2.4621548466833625 1.7669267422353307 4.592378683591468 3.0670444345211862 +1.8865836250871735 1.3009139503550222 1.0333723829481616 4.007174019104594 3.030924799315803 +4.250827441783786 4.480074997691715 4.315330507414712 2.0458950692675124 2.28098479824135 +4.407963367551952 1.7821717020277856 2.194122560562091 1.4545114965479948 2.7279674478901392 +2.4192992957482837 3.7243836149899296 1.30686590975145 2.0535409531185462 1.5035852821565145 +1.7180590764207566 2.912865520484284 2.5535225226767704 2.560109746668029 1.194824602314349 +4.359538694952057 4.395354145726712 1.0736225995610424 2.2541395162533657 1.1810600903895372 +2.7890986645924873 1.2827992779141018 1.567560178699503 3.2475831413938407 2.2564164060491896 +4.891342235873133 2.949530439848405 4.202516786856366 3.0963036919410047 2.2348021081391085 +4.286527570612943 2.881463733947895 1.3665334849905473 2.7550143899384576 1.9753692334621578 +3.0559736051416513 3.5287399876435415 3.9565797324023033 2.2867667161373504 1.7354490951081751 +2.869559171896772 2.2143638182825858 3.484999590287931 2.3422090170088925 1.3172893553707372 +1.7014121958847168 2.0844569048235084 3.601432596635519 2.1394082492387 1.5113697236040886 +2.9151990676722117 4.831034914148329 3.971553557677242 4.739371544312606 2.0639698280846175 +2.503256939802376 4.167604840166565 3.0534877937607674 4.162591330644353 2.000041146820325 +2.040052510665447 2.9597325704404622 4.829404067619704 2.7428393873137056 2.280255156215692 +3.8651648609622367 3.032173500577749 4.797617818731457 4.097240643340244 1.088302712614543 +3.1267234032546067 3.8181050548629245 4.379999537062961 1.9428305509718444 2.5333379669805303 +4.925269885732035 4.195638177473267 2.6267102004312597 2.2068031857984147 0.8418339091735833 +4.609788420428238 1.1466919518554595 4.930665510027936 2.5174367556133035 4.220984502669353 +4.921936649391338 2.0496049604592463 3.4998958704251404 4.486157644009236 3.036939514919045 +1.4161437249861306 3.9385862237210714 2.46961670943204 2.2248865350724216 2.5342866881365773 +1.950681980994398 4.480497492430948 4.279794462385164 4.01396250187952 2.543743924441147 +4.550832460894089 1.026708591354398 4.445048978737624 2.3399385938099972 4.104989498231334 +3.749223502802748 4.798006087640097 1.2757384143661485 1.7103000221332305 1.1352482993615196 +4.469601269947603 4.258427874029959 3.6675651334327712 3.136044030592288 0.5719343370599057 +2.6906998820113714 3.9323918283954593 2.6712929770042546 4.448344532510328 2.167881712788237 +4.213837844537435 4.988117329120763 4.966784812903371 3.6617407568452505 1.5174480908746943 +1.6421140238039986 2.5068075437547104 2.5761148177169857 4.048186602104089 1.7072463858018212 +4.682813773814671 2.7318832461914893 3.980948978027412 2.2018058967862624 2.640356041737614 +1.1656517850910189 3.175146460694674 4.525670723232447 4.5342607263028425 2.009513035397429 +4.0172103491819495 2.1746304042973783 1.7520776501435043 2.575514326587114 2.018204353727176 +1.0016773969432728 4.261712812210265 2.8405312025487435 1.3880706094915185 3.5689596079500787 +2.595701506681897 1.593720353714799 2.4205396304709823 1.7183010109236347 1.2235625483337742 +1.11260754316673 3.4139860088978553 1.7012995051094837 4.636995121743771 3.73023479100937 +3.472258863001946 4.9886256149072254 2.044997626169256 2.047139264907311 1.516368264274959 +1.2381680768739507 1.6206541653707953 2.455629797913638 2.2360207822295703 0.4410484414022354 +1.759640962327186 3.4245300217240033 3.7800004105005254 2.331147288808541 2.2070412203526755 +4.805811742698402 4.712443026642827 1.2754337802318534 1.7527360356613655 0.4863488050524703 +2.590919340254809 2.5328843947518838 3.860599683745198 2.986499828897162 0.876024321092106 +3.9967025236334606 2.4475075969707865 1.6171837078188331 3.7321683541689965 2.6216721715527846 +2.0157694012285017 1.0117429591791112 3.9907459316173353 4.63749963056026 1.1943029110869292 +4.804838478789796 2.665351359709871 3.1033738192468765 4.552768063403317 2.5842114479474656 +3.5334709474277095 4.994450896904457 2.5047357339800285 3.335989036921034 1.6809058469835276 +3.912240242108154 2.4765568002071507 4.301965595417304 3.809801582258447 1.517699694009768 +3.4547528416888733 3.8973702234292524 4.834091594195984 4.77817404899614 0.4461355382390928 +2.795481178358399 2.217772071907675 1.247223772736859 4.72519926392081 3.5256292103612283 +1.3398578098332554 3.7315381033336643 3.035148093749666 3.534097813617916 2.4431711870589026 +3.610620293979278 4.079323349882581 4.946732557510973 4.659053124591189 0.5499472799624918 +4.458319558565946 4.08377259979946 1.0405983891721915 3.6926924093309776 2.6784114911796535 +4.576265009978826 3.184786967251355 2.3962736434318006 1.0243218450960838 1.9540887595882848 +1.794998870116744 3.9592472057476145 1.378832831063928 1.4939008057065366 2.167305123204701 +1.1592609945791508 1.0626376996108395 3.582338792778512 4.0752908001417705 0.5023323030564519 +1.9658702876570788 2.7395886709164183 3.1335407356656266 2.461487873650569 1.0248391024624675 +1.8247812436114974 2.1543139697293303 1.0200778119858889 2.2020635649826206 1.227062401783178 +2.576018516191606 1.2945300270700817 1.834092940075383 2.4378995531594128 1.4166139819142594 +1.6471363928838034 3.3319552039116482 1.5467418870453966 3.7150094544726486 2.745905801361397 +1.958232818094837 2.9983848691417467 2.2148537887289796 2.440919158892009 1.0644349866873226 +2.140651294371505 2.4876976130400403 1.1943830255727175 2.687966075875111 1.5333725820725974 +2.9896973750802007 1.13587132391108 3.5939148797390335 1.131592988839556 3.082158354529513 +1.7218536084305511 1.2792175374563817 4.162889807201932 2.715447630958331 1.5136101033278884 +2.4232237814615685 2.355119663394307 2.6827276534874396 4.667338108641427 1.985778645671324 +1.5972675711315416 4.253195376977498 1.5947038515131786 2.5830899208132263 2.83387712010456 +2.672114853162503 4.3063923511634155 3.397823496906551 3.475572321488018 1.636125857076992 +2.158283288395662 2.2483050593368357 3.4579726038603944 4.571882134637339 1.1175412126624673 +2.5873875980527106 3.194678718966424 4.1464020129453845 4.129910626990069 0.6075149968118988 +3.1206168449317024 1.673101612815453 2.021511160688 2.1095570426377717 1.4501904787085291 +3.370102598098939 4.9443876934709134 4.574525252188247 3.3968037357961447 1.966062443485267 +4.523461951462828 1.2809380476986325 3.517850013945787 4.235387168452385 3.3209668523759195 +3.9617562911674753 4.47201141317523 1.774056130472395 4.020432200828205 2.303598432670582 +2.383269324705318 1.0782672442331545 4.988773342361101 4.008017447034847 1.632455989071031 +1.7970083305174835 2.5760887168685587 2.316761459442705 2.2282760521629306 0.7840892268730696 +1.0566335454330522 1.9533845190766659 4.355863445409785 1.5429345082775816 2.952411135679866 +3.967030314119068 1.5537648938929913 2.7615590016227776 2.952850776697126 2.420835089730409 +1.341410740198358 1.3942159912674392 2.235981958761757 1.4887796741718051 0.7490658506679583 +1.58476582568054 1.0789795786374703 3.5225572631668163 4.467957313907582 1.0721944709979414 +4.621920415718497 3.5092731968079067 4.1465730147128586 4.5764422430002565 1.1927998101852106 +1.9213786649373117 1.194744779853289 2.460988630208084 2.22145191485601 0.7650977982937612 +4.716533909237146 4.257048213561828 2.8912870424106325 3.2328846541751965 0.5725522097533856 +4.241934164889146 2.6396123226410197 4.644997271323026 4.610253167566243 1.6026984865817067 +4.488835964862954 3.5426899553155256 1.6109342412591494 3.883473656300943 2.4616310983372425 +1.063998303308253 2.531480320946241 3.846205299335887 2.505733182534548 1.9875535132450453 +3.5547078296767225 3.9614704392113325 4.611849838899991 1.2342740717629814 3.4019808763816655 +1.3631530631756252 4.269156779540616 1.9799045484818176 1.7949080785344638 2.911886208872201 +2.3469173099997054 3.9923138064354236 1.5589917323977214 4.325740894416343 3.2190418692545277 +4.571277047626313 4.854005367803312 4.740866783622825 4.126994468640911 0.6758509614784625 +3.2419540136455685 3.945178979420441 4.287921243605162 1.4927033913881615 2.882319932596257 +1.1314870140812592 1.1887751697912705 1.8077285897043818 3.276113029092859 1.469501546315235 +1.6869649750776117 4.295689755317872 2.3665447390126433 3.1091082501512606 2.7123505575633295 +1.0541732696551653 3.712550894371867 4.740051619964431 4.98751951861226 2.6698711497852448 +2.4854298085412565 2.739195494771763 1.4885208812963846 2.06380805149592 0.6287705079790471 +3.687017229294558 4.0875302180423745 2.3361372929195183 3.4753876987679564 1.2076018140850648 +1.207443439952689 3.2344388507390343 4.891014799068819 4.521740109559325 2.0603577824400396 +1.467811628376725 2.6754793016178926 2.09832816187615 4.567213335572746 2.748427770542753 +3.283838824481733 3.311747836721892 1.3440274285703313 1.3901375834686758 0.05389860247697227 +2.9806431184898097 1.6561556569762836 2.3530539452000996 4.489970951901206 2.514096523452304 +4.9986815220090595 2.6291034408227385 2.3510398123253498 2.563724789756215 2.379103861218214 +3.63895512606989 2.3477749647889707 2.785570143338765 3.832385972502071 1.6622182735947404 +2.3025869386419706 4.022744062493673 4.118988181574462 4.253764721701206 1.7254290036122308 +3.507517873089767 4.09193715534431 4.81509725686524 4.2717248705710205 0.797997147650284 +3.792999508842171 2.1578842602438755 4.5714123641175295 4.711801279751709 1.6411309892362667 +3.9522336877336586 3.403746720415396 3.8724328228649734 1.870871178239406 2.0753522521620735 +4.3467875217594 4.036539377968088 4.748984672239995 1.825722828432153 2.9396791862699545 +3.2939629340739325 1.8891226081285457 4.8446359973906326 3.0869936192388074 2.2500851252513856 +1.316409443666271 4.672600837286146 1.2517744984739827 1.961936486315416 3.4305029834680245 +3.461945410027188 3.1453725525943876 2.0088957930330023 1.5054207461712137 0.5947314493749664 +4.155760816092254 3.5355248102289685 3.2430167394563156 3.697153671625207 0.768721702652536 +4.0078649903481995 4.998807761849724 4.380669276143516 1.0224675729839707 3.501354917099207 +2.9417106568729734 4.167331030142492 1.7740319703127012 3.6830903263797414 2.2686227333434497 +1.129022482716128 2.1479394210757397 4.8356242293991905 2.263113758933268 2.7669481108132343 +2.250787910769181 3.894157101036618 1.0044776078083681 1.7271295833657017 1.7952404221432765 +3.961737786801668 3.4895350943736294 4.020013125703043 1.982916358231741 2.0911094239131334 +1.8932131938660794 1.8592570140760118 4.914753817519552 3.7646259242732256 1.1506290422934613 +3.815103347197895 2.249431547060432 4.3900831881457325 1.889618172587543 2.950195498568883 +4.651213800149755 2.520016953651867 3.0460156322264456 2.7080927735118148 2.1578210901194774 +2.197949333039999 1.8131357024765329 2.6907471313501676 4.755520672707396 2.1003264763736866 +1.0905679513174333 3.71438816846019 2.3634535651121835 4.538798936967016 3.4083075006133616 +2.4178647528917208 3.103423377109373 3.656358757685305 3.0623722811607252 0.9070890593173777 +4.988574267030322 3.779474258469739 3.415783406773988 2.932692058274503 1.3020368972100036 +1.5637127666140502 1.017918966236564 2.024406930611888 1.4260744117673583 0.8098720118866554 +2.176054368008909 4.52637748653836 2.230565031465491 1.193480351052191 2.568961540358664 +3.223436686395821 3.1872534467114915 4.25218751629974 2.8420484365091565 1.4106032224501286 +1.5969761522228216 3.4189629996170043 2.241904960964621 3.322506621142103 2.118333311841109 +4.743800312079719 3.3899957483854863 1.5205088808660094 1.69228774173594 1.3646592152332764 +2.8804279916526947 4.223137005302812 1.9888497475851397 4.194801807020282 2.5824585154196407 +4.021263476121039 3.0621362710993494 4.630566439570776 1.1972956692078247 3.5647262416686827 +2.216195610866982 2.480228470065704 2.52460436850699 3.6309014391388708 1.1373682601626147 +2.8664085605515806 3.5491390247473746 2.7641860941427137 3.5191886323313892 1.0179143968980628 +3.6598970079927358 3.2158318972938216 2.3803628863779376 3.16584921088547 0.9023206683482273 +1.0449552662664363 2.135403850806361 3.2692620224843374 3.9609416663536208 1.2913167099005047 +3.556658748491822 2.7388110108492185 2.13297134682355 4.778502666090773 2.7690631778980594 +3.291330712678886 1.4185257455464355 1.357259789198384 1.0109440748570129 1.9045558587019056 +4.593925897617818 1.3504561359497944 2.8472150209729135 3.389953764902533 3.2885652553989444 +3.3218082516645113 3.694835872944435 3.6558071070056615 3.8689396758036385 0.42962204100835244 +1.5002561844256546 2.3790437386811765 2.0578866489049514 3.913528366447518 2.0532105954818003 +3.9588193182938634 4.922205936999126 3.2528828354834034 1.2687595253974862 2.2056425564280935 +4.29467876460739 3.8715858810974524 1.4908358257230585 1.3936856186294828 0.4341033872421158 +3.6020250480753186 2.650653468757765 2.6457236082063424 1.0115195952495308 1.890960242283619 +4.613289936118139 4.806597914917905 3.987915280158024 3.6802571446830656 0.3633476338048432 +1.5031709186057074 4.386819065736687 4.292366535439898 3.1256737028000545 3.1107231960084643 +3.014945911179385 1.2488832366972415 1.3817098895303586 3.494033618688513 2.7533414076288527 +4.769686067678797 1.8168900929371286 4.161305450381095 3.790012839303497 2.976048096300095 +3.4864402235782843 3.728927033089949 2.3168781393211932 1.7131553297634188 0.6506005560768291 +3.051071076257639 4.605762929974873 1.9225915861367158 1.9407789028975908 1.5547982308022117 +1.7107049797279985 4.824240029599604 4.056802838876269 3.4624390136464025 3.1697584866233672 +2.4532622135646265 1.6937815039562758 4.5740359119349 3.1780765303147516 1.5891864407301342 +4.818114980767289 1.2021338847930085 3.6405650127148705 1.9424947053700263 3.994841931181955 +4.451105576201416 4.538657962256069 4.79928396448158 2.341635156963854 2.459207815821421 +4.934186293232044 3.7180041646696256 1.7170349599529215 4.7022747941618865 3.2234695341483506 +1.5488494955341263 2.761183799493223 3.9455221757446224 4.880075113770527 1.5307330461347066 +4.043707592714108 3.4980627499541517 2.5779435632827608 4.6297209118879366 2.1230917508859157 +4.333016293621167 2.710139404745326 4.968369835665572 3.501175995613207 2.1877813329341067 +3.849205815012624 2.2843810786115744 2.7376146625455804 2.7376294779962564 1.5648247364711847 +1.4468107836675506 2.8094888930938446 2.0369432852360196 1.0264507146492035 1.696463045610122 +2.073138751289733 2.946941768301932 4.079835097364172 2.9479005296623164 1.4299676842845115 +4.351539957124056 1.847855850675689 3.171680277173447 3.764057416849645 2.572808733756381 +3.0309750372552617 4.179139492750234 1.1509691618079487 4.734594186375774 3.763063902403308 +3.207207966509277 4.326439681430671 2.409697387771946 4.749533131465749 2.5937445786262407 +4.04392310790454 2.332771089908721 3.020820378755648 2.2204893198935634 1.889066180013413 +4.519042319772559 1.693534571824208 4.618871915847491 3.002384079822992 3.2552307072973075 +1.4697547151071384 1.2687797036048742 1.8470316355633982 4.879025398598123 3.038647254014491 +2.570591293061462 2.9668547534177123 1.0904260418423064 2.9582447319850753 1.9093903187300805 +2.5340782863983415 1.6821824489512056 1.0482506992702856 4.295651275941756 3.357281195137809 +1.029202570918978 3.41919320551742 3.6670107773638736 3.792690778925926 2.393292856351036 +2.6204375777170994 1.9124180734174554 4.18405650887761 1.6615510680743806 2.6199857475472283 +4.565087676517363 4.607688606490671 4.4576485946238344 2.3173126258682704 2.1407598880732537 +4.261878648367705 4.446128816055287 3.427064430331802 3.1982900791840816 0.2937444944777054 +1.075292703741375 2.3713017340013094 4.747528838458862 3.8430003033851787 1.5804465436318431 +3.58347582795647 3.4832428805893194 3.5145686545771095 3.738707879361208 0.24553011184928547 +2.1760446106813096 4.446416591904418 2.114729990810148 4.480787457022631 3.279148802134904 +1.1980218202435187 1.9681523695105594 1.1889828959552426 2.7325745322469865 1.7250438262676626 +3.71567487533804 1.497339176867213 3.3223934874824717 4.269442699506854 2.4120355472310218 +4.115193604818835 3.118742538206136 2.6442948755922924 2.1682615870950137 1.104319890208955 +3.613106357604241 4.768039380107213 3.6327514374950383 2.3818690993908205 1.70252075178217 +2.4464889523904207 4.481565076792173 2.988901444681633 4.6666747045709 2.6375097997371526 +4.390053612115061 2.206145193529797 3.703240049237018 3.45265707769206 2.1982374317611577 +2.7414468444388387 3.5862225486227515 4.948524433021168 3.4639924747370925 1.7080635601599192 +2.1241321866142022 3.5726560877595346 4.79688461516131 2.1417480567925433 3.0245613956036053 +4.713888338603024 4.1586194248543595 2.821842024018689 2.644143939034682 0.5830095848119521 +3.4698373887221274 2.5260510081187144 2.0854432156614076 2.245889181967113 0.9573273423005644 +1.912103494149839 4.348473523833105 3.8576554777440077 1.4510179200512834 3.424588041741085 +4.605534082511174 2.2914299610035997 1.2437123541350097 2.0195496766683614 2.4406969160905794 +2.733531346871222 4.757170515086351 2.3693158552976477 2.8287146283859435 2.0751295660390583 +2.1106125742067867 1.697536145137624 2.834718406812581 4.052840429654664 1.2862555728879927 +4.667506396770521 2.0012135214435336 1.7288080549301426 1.2823005812209995 2.7034212807288425 +4.439486277199462 3.5231602685606487 1.5395219674199874 4.692193934466012 3.2831378109829306 +1.3177102110394938 2.823857009767417 4.9852105738799715 1.6599526627584171 3.650454540847599 +2.86822946611595 4.348822631060649 2.571302146203638 1.5125154074529514 1.820215777932736 +4.772946672665693 4.610508057552619 3.766238667001995 2.1196501673927797 1.654581515285717 +1.3476332796660753 3.111696676183285 2.5027417025009298 4.232215758879858 2.4704251007912825 +2.370138835887838 2.0729905132579267 4.475856531712765 4.33385528975356 0.32933490303902885 +1.2916696675975157 1.9981664716071124 3.784413893596957 1.1674009269518204 2.7107000205969958 +2.827053137675993 1.799305547847128 3.216713369948227 1.8401334377196656 1.7179165923331179 +3.8755173058572283 1.2560848583629602 2.7799418519673242 3.1899164010269203 2.6513214587941674 +3.4974900294110283 3.5187297536087625 1.2998312195519284 1.4653207328149422 0.16684695047864992 +4.672185383203191 3.152721306541289 1.3200712821483047 4.9571261586161075 3.9416924353257485 +3.6526132222811714 2.773348333594101 4.458290060859618 1.3355621387163317 3.2441541918058103 +1.556689819053803 4.822659220415092 2.1307366238057965 3.5164556862295924 3.5477843015878094 +2.761657115234447 1.1303803381617095 4.550231245444834 1.8157521145389022 3.184091713625234 +1.3546326551073156 4.524840109925762 3.799156474111709 2.867456261141392 3.3042821600818817 +4.174922546093587 4.376169156096532 4.332733881071306 2.851721112913303 1.4946233697773856 +3.74862658163071 4.647188002102292 3.7567884658092967 4.231679651403017 1.0163337367786807 +2.1635276884224264 2.4823500750697036 3.5968917346325595 3.047305834432138 0.6353679059620287 +2.3186225659613156 4.424114798813193 4.589148569480149 2.667864292014007 2.8503387197731747 +3.2317275021871485 2.4995692769167595 2.0761010045302855 4.249199845661361 2.2931232501015533 +1.288165199914395 3.518761206096536 3.5891942760383992 4.970468491305434 2.6236381230187367 +1.6135151992877912 3.3723781406539297 3.499633720189668 2.070794728135533 2.2660934913911697 +2.387306300220305 3.382448530682811 4.049533978257815 4.396005794290354 1.0537318340805584 +3.3329412576570623 2.883491447561565 2.2660545608613405 4.493103793571384 2.271949254871084 +4.231834185255041 3.1868911695222133 1.020368913599147 1.710057089971047 1.252028628568857 +2.300118137135007 4.896556290851629 1.9197767996030635 2.4089010538491875 2.642107799119334 +4.8881886192283766 3.555684730094833 2.139370547271028 4.796944971187743 2.972922540735342 +3.142088439001912 3.201064433832042 1.3254423354568474 4.940621317143648 3.6156600002760517 +3.251465061664512 2.3084131255478417 1.8272133536819548 3.94435478947579 2.3176787554293594 +3.4243017205267594 4.755871149755507 2.9276693306837305 3.957125922302985 1.683109627708458 +4.1674013367386 2.411961505104762 4.26944349281525 4.919301184212566 1.8718664539851357 +2.9419864976110723 4.428229259646205 2.340454306133561 4.78847590467238 2.8638657954964253 +1.843029127474217 3.1059336579150347 1.9067030921216093 1.8862187047254402 1.2630706485129557 +2.572367997962921 4.059822343596747 4.401704261200988 2.9888723398001185 2.051490791710805 +1.955128840120639 1.5077684005851792 4.439785384091799 1.9923348290448284 2.4880003179784933 +3.7767807388875663 2.501257327566225 1.6404655006324171 4.5399493382065454 3.167643682168565 +3.5378292879738837 1.3671959838703152 2.2158771063271856 1.6662685672920197 2.2391334232385405 +1.1492833278128463 3.762943569877958 4.555799982176403 1.802742016298196 3.796122762034614 +1.3839417906051432 2.819220586520421 4.905424321262135 1.2848502280589753 3.894686378436381 +1.9637125229725187 3.5942953586025035 2.347104718503847 1.4743978493193053 1.8494371206864555 +3.713810549890303 3.614175514678231 3.2265039743641655 3.3895371536930092 0.19106794028246019 +3.9496115495645987 1.3785754939924701 1.8150451834461436 3.372192135581337 3.005816532923427 +2.6510761779890113 1.5979002257992478 3.342258820984138 1.5778483257655491 2.054829428908473 +4.535057664083169 3.239543099240189 1.2529705759155632 2.5619140405965575 1.841654414229603 +2.7258530180433733 3.5981799817112647 4.184085098903989 2.669110863082104 1.7481708345428217 +4.753256862255041 2.6099851723388965 2.751172223225054 4.045241609314573 2.503643168027367 +1.130735350968341 3.769559958731536 1.7959287724938977 4.577160392225075 3.833881144888178 +2.996239831521821 3.114741900066957 1.0531080700319615 4.158510084918296 3.1076622104581415 +2.805210061107673 1.7606851445329932 2.5437749854319422 2.2689842811501335 1.0800658463746708 +4.524769360146966 3.975637726621185 3.8715159504357186 3.7551156483938977 0.5613328613702564 +1.5158541385712914 3.897663831770676 4.245105958667283 1.9812982114108442 3.286007141069054 +2.7201704578903274 3.5009914290681854 4.465579112563008 2.3471191031667145 2.2577763840651883 +3.8798607138681143 4.881664708912991 3.019932749870357 2.6186308875162276 1.0791915627991022 +4.7082116910081995 4.094017416530937 4.017399287130469 4.1844453162021615 0.6365052887677146 +4.133744886202743 3.7875002815855883 4.899425489886649 2.4950797189204077 2.4291488041266103 +4.294473493833351 2.8129942255700127 4.196997575822422 4.105892640268645 1.484277915882445 +1.7793404363684049 3.5974770013218684 1.8540311392451958 3.098882332417344 2.203468870205091 +4.851536610251069 4.379618182157073 1.4872202361577678 1.7010448763805277 0.5181003566309332 +2.508037427235361 3.989008029995678 3.372837030289465 2.9083780926713256 1.5520940792921114 +3.6248099331972545 3.0993349121401996 2.5196182604910953 4.323033703760921 1.878411898061502 +2.047543048324636 2.235899907533745 2.6300666430367414 2.5947555842162386 0.19163814152236266 +2.3299598277708355 2.007933044378983 2.489232195767882 2.215668362789727 0.4225380692143641 +3.1588407841656103 1.9465311889029633 1.8782755946612686 2.694550373582687 1.4615057541689986 +2.6694112577269533 3.715211998260596 2.142154767869557 2.141830896839377 1.0458007906829865 +4.155730484904865 1.0307472803089097 1.0920369607050642 3.651575698186455 4.039400769628416 +2.3707607387015415 1.4270068316425717 2.6486978376041495 1.6103389030568045 1.4031609722492169 +3.342837794397469 2.9340025213920677 4.738421944488403 1.1883531110072298 3.573532566370115 +2.834673300499737 1.6031759706354323 1.2352294225718081 4.653423260832977 3.6332677838812724 +4.194969919325558 2.0984190985470743 1.9265065724497807 4.893094162511047 3.6326529250139554 +4.96332302168072 3.7614840085627796 4.469016365324365 1.4523489823943319 3.2472602471446974 +1.3821354598359945 4.2379197485777365 3.049600948553274 4.8302053418087105 3.3654206139953353 +2.145975720171524 1.73450447425975 3.1174163030435977 4.586074821491933 1.525210290426552 +1.821355395013033 4.616935878608296 4.798726187415017 4.0174533752010095 2.902698304571715 +2.515983510099338 4.767449331391427 3.029762713899112 2.205224283816952 2.3976993070710124 +1.2006330059310928 2.0006047891570513 2.9836122591517222 2.0898181847305692 1.199509358624636 +1.9960692611350468 2.6815792534449536 3.5797132205231783 2.9197791047033355 0.9515445269558573 +1.0521926144742948 1.9367711123899833 4.535397911004741 1.45878680258184 3.2012521037003574 +3.0791401512423437 1.3720523101996585 1.4317441917381224 1.7431661891562307 1.7352615242411331 +2.558872154406151 2.0169256342146995 3.9572217159344674 4.498457702695388 0.7659258607154422 +3.178716758812073 4.830499792936774 1.362105541288555 3.554923315017224 2.745330031271752 +3.1288434731845545 3.146623043245554 3.952142678759952 2.8433198503167088 1.1089653637460588 +1.3992821793880568 3.9826263249806746 3.3814771368783365 4.452218963183565 2.796454010558212 +2.3124010812464477 3.516215650873003 2.8939093471128254 1.4287146476017902 1.8963029888497254 +4.0651952650777 2.1438237675551717 3.2078076599624503 3.929436887207702 2.0524173973893673 +2.1474913193310368 2.654957594165354 2.7083525517760285 1.433351535491926 1.3722789846163617 +1.4306378924628675 1.5283178026604576 4.238533976376894 1.99125827617355 2.2493975721469606 +1.9587558344843856 3.207629227295535 2.551460015056738 1.871569573410206 1.4219478766515838 +4.26319316641178 4.913250787749912 4.811142629902797 1.8162117360024954 3.0646673506758035 +4.884639488681423 1.104777605644267 3.9333397535788723 1.8204461463309674 4.330320455853846 +4.822953573324096 3.1686367293812068 1.7528562331977233 3.2914427369611223 2.2592061990256758 +4.03585371388429 3.847299791970555 1.0469861191858834 2.8830095997486467 1.8456800379932743 +4.471351069117773 1.6107465168245954 4.700754255929198 1.26314669004842 4.47215878313832 +3.2191909662101357 3.869424431219742 3.2660935237968354 3.582414370274438 0.7230922741495073 +1.618096896333384 4.24304397116806 3.0746157867326636 4.133805242127558 2.8305881805912447 +4.143027085318682 3.415747580390669 2.8133827831234233 3.8714645092865094 1.2839285095084507 +1.4626631077390448 2.44669902605402 3.5121161505018232 4.683281584099913 1.5296911980491352 +2.048331954254907 3.3271888392625093 1.7676696181346054 1.4352946423636923 1.3213432774453664 +3.9379796131940155 4.654680649537716 1.325027874134637 3.9426057420783454 2.713922303649252 +3.962424429627734 4.551817906147319 1.5818316404769095 1.477818277354023 0.5985010023984721 +3.3234139821102913 1.7153185276754712 4.913067471450285 2.9651649387325865 2.5259246361564225 +3.037807364208631 1.5231987241534375 2.039250253744842 4.3571842815952 2.768909079402288 +4.183125085577464 1.377242218279215 1.5028912746979235 4.916105430511183 4.41848498225827 +3.0173810992234213 3.1614149414678683 3.3569579663156977 2.322122605826785 1.0448109738272833 +1.0090925672144753 4.870794139680495 4.309602580834446 4.431691670770936 3.863631035783315 +1.0171515724812537 3.82513464280574 2.5383067579949463 4.777558792939997 3.591520374330971 +4.263453512868288 1.5404601476228708 1.5247013559039817 3.0180652416714637 3.105612429535456 +3.4407894784175443 2.461532512599746 4.720994346926231 3.3437833985888124 1.68986810175325 +1.8658845672007631 2.824389222330337 1.2794536758322383 2.5896411883846207 1.623367639185056 +4.710022659830242 1.3565955138350416 2.2006001827506965 2.572536965427179 3.3739903073075435 +1.1144461522831257 1.2156665023850914 2.9029887198474325 1.8173877739938589 1.0903095766400193 +2.322250157074024 2.233403225334124 1.8203179514143804 2.520932693171927 0.7062257384488252 +3.139998994879356 1.5551986898917973 1.2911826590997375 3.9686073298293527 3.111301154520444 +1.4491060535696674 2.9337293178669324 4.207682061290747 2.152783495120154 2.5350965177173483 +1.6969781296568018 4.8479071660453394 3.6932005206988943 3.548516178577475 3.154249094667621 +2.979335161347068 3.6652035992676386 3.6176882307079943 2.2147956203752104 1.5615771483541683 +4.056842521053081 3.5539876963491244 1.5676097017631467 4.856049391920949 3.3266647818097312 +2.1097598499642287 1.8133930234378401 4.214881946816237 4.051091570490589 0.3386156866452288 +1.8745335327570403 2.816274971371795 3.872735546745678 2.809563093617196 1.42028609874751 +3.9369626252705854 2.1031932985571147 4.306435625858539 2.5268940712199757 2.555284345876327 +3.063932283273789 3.820251099753237 4.475608708439248 1.8873953208114385 2.6964544668984667 +3.8493179082287567 1.4122183651742573 3.1443579525629173 3.7694246755738434 2.5159814369291498 +3.0700061344165883 1.4742947010562548 2.139902348707309 1.7124757776604884 1.6519650275334925 +4.211902751981352 1.902251883005834 4.337067873510836 3.6203017955143175 2.418313616371102 +1.3453092154539368 2.316810055214261 1.4720828164594897 4.708912527398734 3.37947931777575 +1.3602973364318323 1.0874622760895325 2.5317243757417054 3.5183416680656245 1.0236467416372546 +2.8699191038529994 2.2960075282428156 4.9675858818523775 4.918440612914232 0.5760119391804014 +1.6415343733228123 4.190492357099209 3.0983295696311006 3.5428678995499543 2.5874313768338815 +4.35725908008419 3.2674097949034215 1.0201633065609674 4.863073395196588 3.994462343513388 +1.4201920560644306 3.543039693593226 1.5420563085376644 3.0991893055465 2.6327068318624667 +1.2223657763999167 4.053516169009397 3.3482873147788603 4.6011978972817325 3.095997007963751 +3.8244309760806527 3.1506831222040783 3.597234766931511 4.95928317360849 1.5195762674951818 +2.03009009517587 2.6708627504125815 1.671754485162945 1.2497099659413649 0.7672751604894299 +4.26956990473742 4.765327291797881 4.178490180314762 3.4068681327576007 0.9171564594448007 +1.7025244027965907 3.1394892678667876 1.4217178706043292 4.20078479128939 3.1285908925732295 +1.1139850176865083 1.6667308005769281 4.29702636269365 1.9467960010959593 2.4143551215756878 +4.453732786074945 2.867932593492608 2.8470609086232 3.9904427598310774 1.9550151683467138 +4.447665116334747 4.72710997173159 1.7645105250385416 4.301155581070878 2.5519909027073466 +1.240992801436175 2.8467672639130517 4.963128767305687 2.4894361934905698 2.9491806614873495 +4.891975564679391 1.4946010958360536 1.8373037563499017 4.806554057042234 4.512050601412849 +1.092413516232598 4.666468871568798 2.5324631509497753 1.0471993737347143 3.870385015849782 +1.191165082940072 2.2480477096216345 2.0062881111620894 3.8976137891019262 2.1665903412080243 +4.414040002583063 1.9594051691352812 3.0172203677303573 4.764228188051985 3.0128505588296512 +3.8553544064994028 4.124827294057974 3.0360325404711634 2.071825465782407 1.001154793230799 +4.286082871686924 2.809479452472068 1.6099062500639563 1.9757343092694764 1.5212454852978468 +3.2194343816794917 3.7215882097176998 3.7730738153760712 2.728628657552065 1.158889190007155 +4.222554746574481 2.1439171488535904 4.225656447291634 3.781368444538506 2.1255884107816447 +3.5490047442122195 1.6051835719074745 3.6484072200488993 1.886552295619965 2.62346593738792 +3.7658638591872737 3.09776430535182 3.2954743378820917 2.258547575733928 1.23352102693639 +2.080344769724787 3.6421943482570187 4.499823450351029 1.698951351453089 3.2069079532076157 +3.7074903067234524 4.305834662647479 3.9389753633775855 4.377449325491947 0.7418054891401146 +4.040058569110601 1.4347156032870365 2.0956002105408738 1.2413935914731353 2.7418024942773433 +3.9261747336478177 4.95853165670121 3.7548594484744773 4.7319480998645655 1.4214299311790113 +3.057112235562926 4.084614780589515 2.6719929994809806 2.417841897083083 1.0584678846739677 +4.317687785804839 1.380638370227512 3.375649676159422 1.3206938162322763 3.5845645280552607 +1.5242527627614297 2.3296260644358426 2.7806743649581507 2.9203667539403635 0.8173983842591707 +2.0526595440145403 4.943974081104846 2.3633066701313825 2.0713686351989478 2.9060157550553543 +3.0495365915279855 4.641757073169547 2.148990980691903 4.982737180646181 3.250428216083874 +2.238401294023802 4.468470000922346 2.972065542547543 1.7039840189851985 2.5653922093684507 +2.048606912672162 1.6765689256616034 2.1613947165190073 4.944512528669682 2.8078741104417815 +3.5841362911224124 1.2386238996958223 2.2097728253183018 3.7011952369402237 2.7795267921399556 +3.5665228420178883 3.407701770126171 4.543178832549504 2.2344734148524514 2.3141618004324065 +1.1396767504583747 3.6921185277789745 4.919707007325969 2.9811509783625936 3.2051456291472613 +2.889587730129171 2.7740875548021204 3.931346541375476 4.883652093427471 0.9592841888458467 +4.852992079415589 2.266679197274446 3.603626992419337 3.7241600217808286 2.589120031110239 +3.1612872049322056 1.8921131991774605 2.7486255106900845 3.707401167121528 1.590614163224096 +4.522852983188535 1.2807396182206916 4.3340802259753435 1.0690300223112263 4.601288070068012 +2.01043403590787 1.8546424417591698 2.891556422309545 3.954878741469023 1.0746745438643663 +3.515578157552151 3.9814124865384706 1.0142989584088515 2.7664763491667763 1.81304363729762 +2.4732196466225465 1.8160963156898329 3.7211314032327087 2.8915405674378816 1.058315655601326 +4.335535047616821 1.0960660647958758 1.027143010652762 3.294601351399608 3.954178374540204 +3.2648695843007247 2.3496635690302408 2.3377486502591878 2.8799029102664466 1.0637355366966432 +1.4567087906608447 4.686436758170608 3.325765156151434 3.1733782364862404 3.2333209734574435 +3.5863547352036367 3.722707861955846 1.6222026040874193 1.8992861882725562 0.30881626867764905 +1.238755139991234 1.7585280932827057 1.9142898366705685 2.340177261785759 0.6719702536902845 +3.4281031723327087 1.637596787614481 1.031756508227084 1.1021828308612411 1.7918908952937143 +2.5121330729908586 1.6412393544344792 4.950811203879098 1.2687855045899328 3.783618521897633 +2.7791217210978587 4.14218216462274 3.4535280385264153 3.7378067753581874 1.3923893754682686 +2.2390364006074117 1.6729732837736604 4.120811332815924 4.921186629140752 0.9803203900799967 +4.75534243268911 1.2770934360892174 1.0878838282187018 4.05882767855547 4.574354975753633 +4.07372835535141 3.0067972084087917 1.358428069671512 3.8417252007389777 2.702796091732448 +4.923165500807557 3.009238995905365 2.464664421284149 1.8383028274409146 2.0138131771365875 +3.387862211319945 3.3881120378729728 4.856669795527106 2.3219301463335715 2.5347396615051156 +4.767410848061299 4.989388721306444 1.77805703634021 2.248683768086822 0.520349590991417 +2.576095409953303 1.4115730845947696 2.274382320729284 2.470211025568584 1.1808730363157096 +2.14003846888693 3.885386150814354 1.7372102391340958 1.9986218394280848 1.7648157285047346 +4.578906382752691 1.8100438437639763 3.322027254755003 3.1011973609694063 2.7776546944867695 +1.7012423206212892 2.9017779445040004 1.00958436221599 2.070428074320157 1.602084631260908 +1.5495324912364796 3.8158100828049726 4.898229504466586 3.3637571628830294 2.736899612541609 +4.827750650302415 3.130325620328712 3.0714649512245322 4.561779397159029 2.2588246678620876 +2.903419913579007 4.344943592044633 3.9338195784306675 1.2289221221892812 3.0650384605022807 +4.676176446602756 2.1039395568022083 3.195795879707715 4.63742797967592 2.9486786411729464 +2.888061334601453 3.3800575742937147 2.7449347995249314 3.397064549578595 0.8169048358140494 +1.830431647539604 1.5277158435113818 1.7207533641292354 2.767141041976393 1.0892951989056134 +2.2230239807760763 4.415590964369559 3.7180881350239776 3.03427671012653 2.2967255043571275 +4.270839918274341 4.303953028992288 1.8479322013667292 3.8645490066826462 2.0168886477899552 +2.3037910231130723 4.939041339032046 3.9854788024981276 1.317546483603759 3.749987611413154 +2.0429592148190987 1.1291346281723058 4.570589365576949 3.376017703509231 1.504020222927675 +4.698938268887542 1.4420623853713619 1.0772719941120874 4.313574930632123 4.591393820786615 +4.975063552423176 1.2592816971185519 3.1412867980838604 4.793057905774987 4.066372165507511 +1.0591628358021317 2.1649527855550432 3.240031986524604 3.9691612356660375 1.3245379854606274 +4.218791332717361 2.4142500415030304 2.3878131291250644 2.9073977156209914 1.8778544709911964 +3.7226940979211176 1.5377672870514227 1.1856585223758076 2.0251915098536513 2.34066674388318 +2.762237549914764 2.978690777391772 3.169223639239564 1.078363708700306 2.102034074133872 +4.885362675436357 3.0592533996186106 3.7611658684863327 4.380149317503928 1.9281637890452494 +3.411128906784281 3.4738774074026995 4.45981441243912 1.7397050902652231 2.72083297887011 +2.9712000102885163 4.232574087182888 2.843953241728496 4.4075731091345975 2.0089727851835635 +2.5738393135229822 3.9707496380198113 2.272481421608277 3.9235103300237406 2.1626962133201677 +1.7623345599373903 3.0564891745291267 4.495417137716656 2.8964107297848125 2.057099331358644 +3.701516131985475 4.479074522706029 3.898107181518439 4.158014253727556 0.8198467766383263 +3.165430386387623 2.7930838385967838 4.144097737134905 1.8126013852770329 2.3610415477873996 +2.5106484495238055 3.9770590521214118 3.997903514207154 3.69610524210538 1.49714469990522 +4.177592023801678 3.4513305169778903 3.462905728701667 2.7934625168252905 0.9877297151657014 +2.55236392687058 1.6619899311322262 2.1880819674009557 2.6455582327756404 1.0010246678620118 +1.2354715668369356 3.9351475140724324 1.455184131198954 2.8163847611961867 3.0234280833495513 +1.4215648501524063 1.5699292813247525 2.0987122277650183 4.373258926179579 2.279380329761945 +4.320475476559981 4.848606914230594 3.505930219784588 4.994393408249114 1.5793813595424038 +4.417211070186001 2.0391570224565054 1.3828942193532918 4.195912086509041 3.6835052022306303 +3.1440249171599355 3.001145557049093 3.582900294691727 4.90225423358094 1.3270679438552362 +2.086562480222992 3.799829857836148 4.069602529630025 2.595938675072788 2.2598606734535545 +3.5311411883107424 4.41238442716692 3.8035840221837156 3.443382473656114 0.9520161771689639 +4.317732541658878 1.1190559912046054 1.4936998452000037 1.4927302805581588 3.198676697398729 +1.2868947998869658 1.8681685342431837 3.180454774825981 2.7999390434767055 0.6947455477055589 +4.125602178941323 2.967121667806835 2.9740270191022486 2.4027588582266226 1.291675038974062 +2.479168010439045 3.695348989680875 4.16901880133814 2.7481379475198198 1.870293713569368 +4.944957342219315 1.89166408974081 1.9036066287425348 1.7356559077009286 3.0579089473575176 +2.3030183133220823 3.3213720407110223 3.805848238856449 4.045475870772884 1.046167154935016 +2.0730256928902757 4.960205852808267 2.286811905541223 1.2015718036740215 3.084405186502709 +1.4268969979772197 3.1224087362953252 1.9042306081043385 3.063399120009002 2.0538821031806465 +3.4641673575278276 2.119530131411726 4.541731922017281 1.0924635014847341 3.7020942595698845 +2.0591444270944925 3.338415735987305 2.3038215349791433 1.9681338661359433 1.3225812991153743 +1.9697047369060718 3.6576157134208396 3.826700705507177 4.276015067859924 1.746690258991414 +2.131118603848186 4.152303789815382 4.5767911538146135 4.259573608887964 2.04592681364279 +4.940331151051652 1.2786224284812544 2.273030211562742 2.5742581630491386 3.6740779860673647 +1.3931657312752779 3.243325120295095 1.5361021394621979 1.325182484681139 1.8621430840703792 +1.103300580419182 1.4279463220297357 4.241561695620812 3.0986299002552338 1.1881447497689208 +3.7557580559685313 3.506675756188663 3.566970838467272 2.852669241009588 0.7564844771667344 +4.970162415249033 4.754539021963183 3.3617856827682626 3.45777159795661 0.23602276086566099 +4.158917747486189 2.182994180386933 4.520260346271387 3.320082392356645 2.311860952583703 +3.5247759135806 4.4360139905933815 3.1677249818344952 4.333976126504213 1.4800326231003758 +4.4257868537890594 2.491732486483042 3.223175491410015 3.1654099087972303 1.9349168349647676 +3.6150085604162654 3.5948515677334143 1.0260529179132427 3.833242563153996 2.807262012834022 +4.951063361498098 1.3536038680261604 2.5692881588714034 2.841634752419512 3.6077537989985715 +3.6852437657384445 4.852632729026682 1.0811473977820971 4.466341682127572 3.5808291406282513 +4.752253043886338 2.653390599939945 3.630137942950585 1.5323194066344628 2.9675016714266804 +3.08327097981406 1.6452062942221448 2.6758661208877066 1.947314459224979 1.6120848500181666 +1.859228152965942 3.1285983533172805 1.0715351109198634 4.977894127411117 4.10742516319683 +1.0558660799636415 2.9314323463732133 1.0833967284012624 3.720596918237072 3.2361356060838324 +1.9422189469295543 3.8147888545926394 1.1654373777751061 4.618919309139198 3.928492778323971 +4.55435276046397 4.5211741963403576 1.598525302349619 2.019097004830219 0.42187838774312053 +2.8626075884658646 2.2993561298276646 1.2854855645307488 2.96961581534784 1.775822881758003 +4.830898245100374 3.2053752299211387 1.3870485926726719 2.789501645629075 2.146904664540121 +2.874181963471217 2.754721050319126 3.4475818349095375 4.0137784867260535 0.5786618687103589 +1.4179202046768693 4.008206577863756 2.109215202900674 2.7516257597135 2.6687590409443565 +4.40999631439041 3.838266668910515 1.252760788104851 2.720521758137357 1.5751815935540034 +4.124189945840638 3.839927432850034 4.292749632634011 3.2810058963762385 1.050918914164442 +3.1488098593016036 4.610293392128911 1.369060831649454 4.57186538217315 3.520495860753238 +4.0728346256259345 1.3769588066303151 3.2964734519713694 3.551412107551266 2.707903275516721 +4.81535153414241 3.6676589153040364 4.669999531106473 3.1993237987124292 1.865498715407985 +2.2086656346345914 1.0637871102899692 2.409513712470346 3.093034171588741 1.333396810232776 +4.384703488311246 1.3813003110613407 2.674884131146829 4.014370233131001 3.2885640730451913 +1.9580410497383651 1.9188016503476204 4.01621016011088 1.0332324434895002 2.983235791606867 +4.318074738740158 4.815540808943311 2.369494728218771 3.579919461180329 1.3086636409591377 +3.339486657830216 2.4945891176287476 3.7531457961383006 3.595154053004682 0.8595424622070112 +2.819062786474217 2.1860905131731307 1.3316763284728084 2.838195962097154 1.6340915841113615 +3.3194524550927813 2.153821024608122 3.7636003649837546 1.9661977413294291 2.1422774851202555 +1.5061920074199149 1.5562573628105092 3.7107988943412247 4.74627006508446 1.0366808020074223 +3.0944358239889564 3.160541072295674 4.733341181247342 1.365445011289109 3.3685448661808004 +3.822864163355794 1.8826471850468396 2.5676844804651395 3.686383969437733 2.2396273059475478 +3.2134017917370774 2.406210111930133 4.415669750632212 4.176614534837431 0.8418466630855324 +4.756951913632947 1.2090047407285756 2.7143527776541476 4.925282190786476 4.180447106659021 +2.352307074278723 1.9574681264163458 4.60667945304875 1.7805812140084325 2.8535467494778937 +3.404561200052144 3.84344130078889 1.7991121543295572 2.0767041251011835 0.5193005344302776 +3.1068318300876028 3.6180635036656907 4.31409094356037 3.0084707804179374 1.4021418738749385 +2.778079206558935 2.793300819903776 3.7340923005938476 3.6068061437509353 0.12819307015848516 +1.1181654233788043 3.4421611334111284 3.556266237340059 3.0596556053019395 2.3764633765538967 +3.3975223324243555 1.676338137367654 3.0894090604318754 2.828710898147899 1.7408154885372626 +2.6218063317934384 2.9258434628331065 2.2519254320590707 3.3401757609762655 1.1299236060191038 +1.8662433869910071 1.2115795759516446 1.9895334058262293 3.5615211706088163 1.702859429932705 +1.170608256295023 4.4638318843700375 4.796389538273379 1.9964961309564782 4.322583134752668 +1.6370010707842892 1.5270880714147914 3.3915633960620566 4.476853953680699 1.0908420884282852 +4.190208898817473 2.5015318200863588 4.849481922785316 2.1295322902404847 3.2015240557916496 +2.4988968223259462 4.652553126964721 1.2552873226841323 1.5922462628721603 2.179857060883346 +3.8716939253767095 2.905600129588858 1.1351792879344358 4.359617985267233 3.36605735766891 +4.6167400439421 2.46207754932165 4.635425549135617 2.5538599344292687 2.995911526405918 +4.748589198825198 1.0391935817040925 4.6736498814821505 2.7859598811744495 4.162089545117808 +1.5748630794017489 1.5756256283152306 3.3533799059793 3.037729285615464 0.3156515414454997 +1.6379371340438853 4.850285814000084 1.634670763781259 3.55290783568801 3.7414993659833375 +1.3391536136153146 3.5387335668376974 1.0205264820846645 2.205389423178446 2.4984099262921577 +1.3044007498678165 1.6017738931974979 1.4780740021094716 4.4446526162794795 2.981445867431542 +2.221531995277826 2.9863473247068737 2.202491483914379 3.5839691963659432 1.579057680431614 +4.916216595314294 3.5567762051890197 2.594482280913539 2.691014787662403 1.3628634191154954 +2.9220663081102014 1.6855670742827966 3.583506202991876 1.1102030655244577 2.7651688492860496 +1.856635038519297 4.289244291869071 4.927926701363136 4.186776513410577 2.5430083327793205 +3.553885013022643 2.468421424716207 3.210346599874346 3.648442406105374 1.1705379690451305 +1.4361008307478693 2.9645783503286385 3.2968659070071626 1.5498568962493233 2.3212677595514193 +1.822967383539174 4.128454264803796 4.8231481681174095 3.6801643402444126 2.573262868511976 +3.505064529447076 2.0677296488888373 1.5083150659508866 4.050233318718725 2.9201506746439754 +2.1793874447779342 1.2759608865925474 4.35750807887791 4.987953260877547 1.1016536086907036 +4.008812102449999 1.5736873350942133 1.3845564813509306 3.0047589525704312 2.924874130682438 +4.897658845614888 3.9321539154528202 2.8474810922249385 1.1994630053958586 1.9100165927768902 +1.1164057860685492 3.789535526225575 4.839366203279231 1.8353638465971946 4.021150676941017 +1.1716919873093312 1.0718606836076048 4.408076017902394 1.5309534842430517 2.8788540016626647 +3.9694566248706957 2.0174015797811635 4.664447111322371 1.1558990041547696 4.015025369704263 +3.9440981464204232 1.979892777986048 3.7597809696362647 1.4846806628154474 3.0056919561862285 +4.957255738551936 4.100609681289667 2.991787706199582 2.36116139255041 1.0637349363867554 +2.7439597313730633 2.611113705797378 4.414559253675926 3.91562974873542 0.5163126159715975 +2.3290061908994484 3.9953799847846168 4.819089250492299 4.077442514192863 1.8239631307707003 +3.4349316523997677 2.5720896871716548 1.517890828825362 3.6251071306940807 2.277028063028647 +1.7220006317891277 3.902498287659781 4.320894006017078 4.035756463327121 2.1990619467192554 +2.0314570093076485 1.975235870941959 4.279603809563491 3.248981098208631 1.0321550220580125 +2.2734840061132315 4.092968184625418 4.337081912568397 4.266149194265918 1.820866312056419 +4.768446209844661 3.9341925775447635 4.144287539511108 3.7102835438781856 0.9403927856119026 +3.2276203021420984 1.2395239564820821 2.295847814023148 2.6259379104968454 2.015313015741407 +2.415217421418077 4.904805939326613 3.0901371954698558 1.9781687801169405 2.7266324917825817 +3.711862764237703 4.858710261987211 2.64897906591646 4.934930598059371 2.5575053451363168 +3.1920636449807143 2.0202113402106137 4.523769205100241 3.996290642753814 1.285095894449146 +3.2685811189528535 4.076628451431015 1.8008046355805627 2.745191751657886 1.2429028588501658 +3.0837646682448665 2.58176501075657 4.5834246062147255 4.034428059913434 0.7439091772314095 +3.7071798326262635 2.8491061084448384 3.110763361961304 4.184120456194669 1.3741855652973776 +4.6376298927113995 1.393245759600342 4.666252801474576 3.2108914045542676 3.5558550587486852 +2.362862011581345 1.848873889098801 3.23185282256295 3.6102529478072327 0.6382557832389922 +2.1927677708420275 3.9596101880463315 2.210163452811683 2.2512367063930925 1.7673197615010452 +3.0504844958415913 4.542992519856692 4.13951576973596 3.170764070458182 1.7793425911282632 +1.716193260496294 3.243222390445391 1.7603643849760164 4.540486038619246 3.1718912927099283 +2.627288483403186 4.650399457633531 1.6529233969235793 4.346772630937336 3.3689466765812366 +1.1455677915551652 2.6655358336053463 3.435557656362343 2.9198901616319124 1.6050594425052984 +4.852045779325266 4.053878326955629 4.394706402581672 4.9063325620936435 0.9480678293873314 +3.56512513426863 4.2445693869276315 3.4344970082852235 3.344496098774928 0.6853792061217129 +2.089322564133066 2.379231064319144 2.9910099655142797 4.470017426976851 1.5071529482909487 +2.539795825425444 1.4983951448661736 3.378953999139716 3.58830367014775 1.0622347491117408 +1.4724686864029461 1.6763205612248058 3.6429544251167365 4.416018087810304 0.7994892203435774 +4.2028501310862145 1.88168349843858 2.9719804852356075 3.5719607222945435 2.397455071816374 +2.5650449515678355 4.155529456897103 4.923853078674192 4.932657594641459 1.590508874918308 +4.686669321941558 2.6971676937996145 3.8943191104530186 1.8043306925720257 2.885510061541311 +3.806518065385969 4.661261223805521 1.7513987764790464 3.176966658311126 1.6621761797644177 +3.315795181851138 1.4910183460316784 1.9534154615625692 2.322157915899819 1.8616609514554305 +4.884766267581636 4.82490446450835 2.293550495731181 3.7991885579960414 1.5068275979712702 +1.826802238131377 2.7113320149756746 2.204154249212041 2.75265937737012 1.0407933520828874 +1.4186970656458415 3.8535052155724387 3.188027070572964 2.8649143531821997 2.4561540169721896 +4.0457429922559704 1.3687974521733808 3.07948314510719 1.697280268397002 3.0127267079763453 +4.957055967513188 3.383629106530301 1.0153296829076388 3.959810764741399 3.3385087880877853 +1.960928907406322 2.7871001986444583 1.604785962720905 2.9793405543541294 1.603732935324978 +2.0380455922144605 3.1783721954053186 2.8085233316152203 3.3280619424010682 1.2531022025525649 +2.345122438675442 3.2173201517513808 3.1137101898047757 2.631717511735576 0.9965168299668683 +4.7118544431387885 4.032061620720905 3.4632303433861495 1.4883036740539337 2.088648757127563 +1.8487097677405901 3.7005121588839582 1.2564867578143994 2.039361547343299 2.010488754488374 +2.9512514030197083 4.216388838087666 4.08313317246457 2.4582552370780157 2.05932052738674 +3.936383492668882 3.421728270349527 3.667373852416184 1.1429395950986994 2.5763614492882523 +3.9583875342304684 4.851050069649693 2.0358600158813758 4.159015929242832 2.3031798528518777 +1.0946394532355286 4.345714688555736 1.4925324911248121 4.664114324040181 4.541852211222989 +1.4513472258964342 1.8539281386336475 4.685789973758354 2.9615873811094686 1.7705778638053353 +1.7565152827724457 1.6796291398829193 1.1476366954215957 4.555353316380362 3.40858387717349 +2.3151294264593623 1.8042624289387694 3.7661071738031233 2.245936240158413 1.6037159214318275 +1.9362248709087266 3.3160343578133675 1.0090460907994507 3.9749606466595764 3.271165445650069 +1.5850197032919908 2.057699849150736 2.73742020284409 1.7010525050101544 1.139071782374867 +1.8230561064080364 2.041008349109491 1.8921669201342692 2.0720219139711435 0.2825791905053445 +4.30433146337128 1.9351918369675891 1.500238223045614 2.6011566102691077 2.6124402126599953 +2.973589942874795 1.431288512236708 3.087477566219666 3.3977883599684953 1.5732089790187822 +2.8889414865715675 2.6137560749554667 1.6368597411517207 1.3804559579793803 0.37612486063993616 +3.5147916486541186 4.8982632475362315 4.430609339060402 2.9764162090088533 2.007155032478197 +4.5642008599149735 1.1441766457068758 1.5834273115444715 3.9533906919162125 4.160924422537949 +4.3716258791215425 3.3893562969728137 1.9122595568093836 3.5590611216120385 1.9175006977446216 +3.172926639031425 3.086981466468589 3.8175181074961606 3.724221376847452 0.12684972462166952 +1.3159670633766907 1.5977980312576427 2.2983577863278923 4.507192409115083 2.2267418092989915 +4.8445761050460305 4.617326834020086 1.4355613665260307 2.800620237179396 1.3838453495717158 +1.993016117430356 1.1647345280389074 3.7644621968920724 1.9044063878670365 2.0361380120248738 +3.744199391983185 4.546825112311428 1.061091068021247 4.304225623499191 3.3409773707505934 +1.9648984703570704 2.5475329197840972 4.014119814967618 1.1110215014247173 2.960986781421823 +4.731570297819513 4.589175764972891 2.207585406284672 4.520172728556015 2.3169670533079985 +2.269216654182916 3.6625723923236553 1.9838603282969283 3.980695138851239 2.4349105678959124 +2.88639649759292 4.650401163285666 4.66667837686054 3.4998347754444654 2.1150027070316986 +2.108528432774682 4.696549377491184 4.573949818072541 4.624272222559561 2.5885101418933347 +1.2134626926763183 3.0791885759274344 3.938214561921905 1.737760363943019 2.884949176127035 +1.5079660842428435 1.7904341569280589 3.1459033994000145 1.0188610902690156 2.1457160103144663 +2.099204186257946 1.1062388049193563 3.429422295465572 2.6676579297651375 1.2515051727371629 +3.695145215079439 4.260512494155611 1.000981510746481 3.5720178415892008 2.6324642399780456 +2.3192309142804706 1.4426169180350352 3.5070475049516996 3.4361095406736597 0.879479558141805 +4.9960757690885345 2.050597343254868 3.507911501669951 4.7085862689125415 3.180795978013149 +4.460066572325456 3.3012769950044185 4.158129125668631 4.658337034747367 1.2621415280438204 +2.0613277150547407 1.530403558570161 3.8107441323950737 4.7928336712314685 1.1164140460558283 +4.1621327801296255 2.3697197646810864 1.3041233426765566 4.220250550664424 3.4229435156187495 +3.115606672291913 2.4379846841478585 4.1135273529023575 2.8558445083801076 1.428613907331816 +4.793838141469615 4.661139175035093 2.0887440712541223 3.4684274978184475 1.3860502780307316 +4.332827848687345 3.111763026161201 3.303669171605554 1.9824498723792465 1.799060793152599 +4.534689896298001 3.5573807706215863 1.8070650447357224 2.5610483827941906 1.234351652164078 +4.46043819929629 3.0738143680261385 1.6259848969086437 2.9487162511066605 1.9163360573826376 +2.3155725977049766 3.662104035255741 4.023359595176067 2.198121064941795 2.268180461198864 +4.108691425001843 1.8806420689382923 3.8725762948504014 2.961176915280674 2.4072500414654243 +3.0023490328142297 2.2280211580201716 1.43103068512763 3.209245928277968 1.9394930029920958 +2.0007887015079038 1.3138474873034518 1.9536604251526835 2.538335880461621 0.9020718484762731 +2.3163517709648063 3.339279565351601 3.600060065447207 2.7054927624093104 1.3589083604840793 +3.3977217910807256 2.272390698166 4.417117124898947 4.9769783877610205 1.2569067993825822 +4.989663791181702 3.102985629321536 3.939009035409932 4.847836113711903 2.0941635907194427 +2.7076221238503337 2.7774912737061315 2.059209677403764 1.405090488780791 0.6578401105332118 +1.457167342192144 4.071667603068597 2.7928907543680968 1.9914513901050341 2.7345779690316796 +4.098383583469233 2.7291192880933166 3.2203664197067527 3.2672307201059736 1.3700660470368622 +2.674625197044264 4.97725639955529 1.050183538198092 2.8443092901118354 2.9190747966534585 +4.786601023233347 4.365897227320904 1.8204400553570443 4.707030202669627 2.9170866223780907 +3.9754141602777775 1.796883909397435 1.5321835172777534 4.644595111118996 3.799091994605836 +4.659615102661075 4.759971974117159 3.0342538914876345 2.0886456446681207 0.9509187442161015 +4.447470232952547 2.636574029281041 1.8651182857130806 3.813186136766108 2.6597581493019686 +1.6352736443430675 2.7936237062790394 3.5994657401223953 2.8953558206052015 1.355561007387561 +2.2846556026779843 4.198428985543131 4.1347553721019485 1.0560331645757466 3.625059860482047 +1.2210793118242442 4.236939625714115 2.8367221132481495 4.751232750874298 3.5722212157815183 +1.7712500474077384 1.35519021913926 4.442926698830279 1.4627641141370278 3.009065438288831 +2.6660668955888513 2.9934800622838655 3.1911527942331097 2.31826805084475 0.9322698949153189 +2.3564504942651254 4.554403973332583 1.692565160902682 1.1867880516773113 2.255395748058667 +2.936257963709892 2.65746256233759 3.4444937222097525 2.1083511028273536 1.3649190361176742 +1.9787359646263227 3.2520109424876398 2.923469332471522 2.2407691963331176 1.4447521050793224 +1.7855264206457533 2.5387624332206373 4.310098299415694 1.2607420355469579 3.1410090917785016 +4.468517904485558 4.213606104830258 2.303170368855401 2.8425811362998448 0.5966104270279791 +3.1221007003016923 2.514266765692046 1.0870936885165712 3.328486871938716 2.3223491328295798 +4.339570237013425 3.961307669074357 4.702745447763132 4.690422046236314 0.3784632565111827 +4.505950528446078 2.417120906394704 4.7353427098713 4.700268423422656 2.0891240737517647 +4.195423805386094 3.6937020454170457 1.8496859566249486 1.194048060681177 0.8255820825478318 +4.015214925623807 3.1775125739885386 4.672712910592385 3.6787049956444773 1.299921907236872 +2.0264807741737147 1.59078206409372 4.149977251008764 2.575018014727156 1.634114427423648 +4.387009094921531 1.4665116586159508 2.626302839626614 4.9932849004705 3.759243188704907 +4.31879196917466 2.168153840564638 3.5290057666638206 1.2520116670809749 3.132083410410124 +4.863341546540289 4.565449030321641 2.806628192570855 4.808797234278498 2.0242086905236767 +2.4285337611998554 2.039324234508003 2.9057158198462387 4.66104960089501 1.797965722298029 +4.641961858900947 2.671471960988662 4.143795290754564 3.7658358802221965 2.0064106642919195 +3.984991375569904 3.7411444356014556 2.0731670756124982 3.9551948053756107 1.8977591274261525 +1.3707612197159276 1.2132385616486863 2.658786796643824 2.5080754485665597 0.21800756464819127 +2.7403747765019455 4.056733283953459 2.8695680041139173 2.2019415868933425 1.4759826398405769 +4.93046069784934 4.574978859721902 1.2396785758143647 2.3337555256250453 1.1503789416298893 +4.585467395231412 1.2885274355240033 4.44643243098194 4.117239319336308 3.313333850168199 +4.093364690067734 3.9420943721099824 4.803618302693311 3.962153864574314 0.8549532792579706 +4.198066159393879 1.7328790907827685 4.307306789092001 3.8653900810257182 2.504483511647777 +3.9950415422649366 3.12386963167207 4.951888650075929 1.8856874887973398 3.187558636202979 +1.3724923915941996 3.140827951302707 1.554632246545618 1.9501027317256665 1.812017537547069 +4.9984399754689885 2.893315873077276 2.302828544763832 2.0238421903297685 2.1235302852634153 +4.23523853946719 4.072433707026862 4.091320014469682 1.7544412173329782 2.3425430467705413 +2.9612395716115643 2.4969410201833795 4.049987551055429 2.4636297586454488 1.6529077985169576 +2.4442061544315585 2.3855330220894793 3.966844255257784 3.469752078053041 0.5005428743843853 +4.515294727768723 3.3840415177574843 3.9588701188961846 1.3182069451325336 2.8727749341764057 +3.876952063060512 2.657170131379466 1.2766101272702004 3.4928289361915734 2.529722073642165 +1.0266982594353435 2.25490035787242 2.099231622506285 2.6321610462982807 1.3388406049072856 +1.8924360353965075 4.421965966743665 3.830274538874002 2.8682946949045487 2.7062754652445578 +3.512169263706022 4.55327835364886 4.639591357971142 3.1198137503864336 1.8421813465773407 +1.6019614616714688 3.3087794214107364 2.036310760933508 2.3774295853196983 1.740571630252295 +4.878284186017291 4.942616256865728 1.1881697571486414 2.455061275171051 1.26852384044478 +1.6377799778711295 3.4226724357258185 2.921212855459954 3.0186248133339166 1.7875486498675752 +1.8373282457053826 1.4793895436650768 1.7104734949522133 3.413373212234152 1.7401113646939972 +3.6218450881119795 1.3181397600652098 1.072330130301129 3.25218047959581 3.171562041611549 +1.2863378584376082 1.942356309165271 3.0164321432719974 2.2316654733012866 1.022848441359736 +1.2656672634827144 1.896461844580407 3.105632972546561 3.5596235597791517 0.7771803245309327 +1.4736176579696352 2.3736503732547742 4.48165545542664 1.685526576854175 2.937413078572786 +2.8509609843868318 1.8166034106119002 2.5336466090327847 3.1467174605536665 1.202394053299542 +2.824255187453601 4.877817128873584 4.0996291100221995 3.1069097361593383 2.2809227085745984 +3.26172666272815 1.3553797609267777 3.2287025151973645 1.8046662753003884 2.379503671471765 +2.044123703527163 1.672632524423467 3.7015632164994585 2.8759528141832282 0.905338739127307 +3.908539350160852 1.0093667442222887 2.631813767901746 4.669670288305872 3.543735458069382 +1.8151799257810857 1.5642677426449256 3.483777591480557 4.2202480562992175 0.7780396321501675 +2.7346592540932715 4.574088436417416 3.316011129982692 1.5513352474921969 2.54903524632934 +1.9407672541475698 3.2771725553226823 1.2025538108378395 3.3041424080082042 2.49051275057275 +4.201370398250267 1.0825751556619023 1.9975934389706476 4.134191307100193 3.780467459890051 +2.7395532305198103 2.1456360909942145 1.323781251101376 1.7271544384059503 0.7179467228551971 +2.2814006597059127 4.974224267844863 3.683098116423687 3.2553578105096475 2.726584081566881 +1.7884883414062696 4.975670937875041 3.2387370944527305 1.7045204536555771 3.5372239968840424 +2.446751722851173 2.779683359063109 3.411977213951908 1.0297054715621643 2.405423482254096 +2.534027429623413 2.5212716319655684 2.493478668880043 4.811222173686783 2.317778605572094 +4.6924190732904325 2.3945612616852188 4.710015314786905 3.6385275528825707 2.535396723644223 +1.4854565336308219 2.9367509467514097 3.2109984606936863 3.0558085711613936 1.459568215387029 +3.7919897996985537 3.267563729066571 4.077614408013837 3.087433060408719 1.1204828444485835 +4.685947642835449 1.0275127380124793 3.5130596723715475 1.2638244737207556 4.294555265877565 +4.895937300407116 3.296433951711271 4.245210336304579 4.09234834968883 1.6067911343548469 +3.269841342420756 2.2044048243114203 4.910712065204184 4.474708191451017 1.1511969214902862 +1.3819186142567448 2.2087263001396282 1.3140411878613292 2.419024031188461 1.380071749396502 +1.5489397955001478 3.951282338036979 4.69646596116632 3.1745807028298785 2.843832700990707 +1.2336601350383316 1.762377684670386 4.7151284101271935 4.029280463985902 0.865984787692689 +2.5489838746608506 1.621989592010178 4.877174312897476 2.5006205998852504 2.550946089375319 +3.035051210424369 1.206293408817575 1.6303736547311263 2.875419296426223 2.2123502767061254 +1.6602044955857127 4.424489741113746 2.951478986077951 2.3619973836190233 2.826439717786587 +4.822046539134011 2.937915320635445 2.1697460605612515 2.8605101258935997 2.006764919584594 +1.548860540823176 2.6387673780539957 1.718953502674971 1.2967269567378552 1.1688336793301586 +3.5238227287826653 2.3124699462208684 3.9016678350590053 3.9115563210356905 1.2113931426151954 +2.901030093175774 1.0119545412240303 3.6083079673459446 3.01509035238365 1.9800286815304822 +3.553378640501571 3.066517660488935 4.19320955998509 3.839128101028623 0.602002735405417 +3.2954170347522838 2.434836647918006 4.999086703613925 1.192601624165992 3.9025539409806456 +1.2275153405864465 4.784528389922496 1.0004163305070408 2.3475888305539265 3.803579311389407 +3.3110135209724945 4.3078668303539285 2.613402513711857 1.0016031019601814 1.895155366756975 +2.172923079563292 1.3500269182040938 1.1033913381818694 2.226530916263737 1.392336383290194 +1.0550723044563832 4.3052705509216445 1.4840497972430122 4.4364608188567125 4.390958833998779 +4.015526233994997 2.5045107847789763 4.883603660228794 1.371764002774766 3.8231120134566186 +2.3033296717987852 2.343871793716854 2.454963071321163 2.9034582056198888 0.45032382697260387 +2.484636592525614 3.253641588808139 3.145461322908761 3.2999615845055597 0.7843717327523767 +2.1424881737326658 3.3790978185042273 4.610324241283404 3.910675392122425 1.420813825127814 +3.113456893728468 2.552555752173727 4.988174582124557 4.526897438663898 0.7262139448376331 +1.9159281019838716 1.2880779586535867 2.980638489914544 2.1644891412321585 1.0297065416100557 +3.154050624681794 4.620258615056979 1.1022011830973701 2.291212283372713 1.8877270108831998 +4.117637296163609 4.902763089138622 1.6546208727161442 1.7525629799629843 0.7912112026296101 +1.7708817006967905 4.166738691747549 3.165405485106 4.996220123045516 3.0152964962106785 +3.0326489111948414 4.796186809070818 3.0629846356183905 4.443206636627418 2.2394371367185513 +3.255379419711377 2.262658870132639 4.291285205623101 1.150084166278348 3.2943342360993775 +1.7394733839998122 2.2783931684284915 1.4373719259100812 4.459911368647576 3.070208334454283 +1.957673445309121 2.4147675255795376 1.460714848212767 2.7035834593862225 1.3242572948103748 +3.4395821352705465 1.7308340379615124 2.9331853915410004 4.7907029049776195 2.5239238048683252 +2.1923857972332703 2.73104519209373 1.9277226534509375 4.722682483582693 2.8463932257721467 +4.6621432157450595 3.42557330601136 1.812730185616699 3.5486726090396004 2.131337898855596 +4.248064535564165 3.9251917852107368 3.096785546013038 1.5063482264395893 1.6228794411208625 +1.5118054701075523 4.18457017097937 1.6485917712198987 1.8118894905609086 2.677748548943383 +1.9489421645769083 3.7349176048319 1.9921892411255513 2.4455198990432416 1.8426114507953373 +4.654738356556442 2.7691192013890418 1.8409396703148189 1.5902741360098953 1.9022073515846252 +1.420504880502429 3.5906320815841437 2.8959117221972703 3.5431719431025437 2.2645966224564367 +1.017368697309001 4.050925125269779 3.434572050458056 2.0638306197919145 3.3288731834311163 +3.1419995161853187 4.865149272131764 4.842654046060003 3.2172374090445293 2.368802297640094 +2.9470242937518667 1.9591428297259337 1.9443826754108784 3.20761445521722 1.6036409562239042 +4.533132464912196 4.730680279309648 1.056942388030686 1.0938171219964445 0.2009599088829798 +2.032576367993093 4.224853902214047 1.8687395427997244 4.5651327932955486 3.4751427810047377 +4.297993241546532 2.2293840753133223 1.2928732115399981 2.332716840621735 2.3152577946237285 +4.801060683437983 1.1147175919102206 2.034772641474442 3.1845365411694724 3.861487072812285 +4.018190600375531 1.6276993942173013 2.0714524065020297 1.4444956859496494 2.471340311686277 +4.675896362999534 2.8823379024818574 4.434294248634221 1.6678452160439892 3.296982287064031 +4.84969743178339 3.4270887590073222 2.9559661728754962 1.4431614385517175 2.0766303474740333 +1.0235710886347023 4.403467302328373 3.8883572668477995 3.0201205930261614 3.4896322638796304 +4.568606079589394 1.928184407172182 1.8134913183962795 2.6015486570447424 2.75551464833127 +4.524971935267997 4.372265942613547 3.131340712868029 3.879329558757007 0.7634176011639414 +4.726645276291038 3.254421254761271 1.995982719832682 3.097045920506534 1.8384188155715298 +2.670225618917855 1.803922579256032 4.7684439141168244 4.431721037166692 0.9294424416761308 +2.891631925744073 2.217587317372845 1.4437104066006916 4.505420726844074 3.135028902443988 +3.6587418523637427 3.2777352806553517 1.9236450376768977 2.8046993752747644 0.9599076796676841 +1.5454420224467809 1.8741421029442464 3.7037723928935895 1.4793247492504729 2.2486020239758866 +1.2421496875021156 4.7471997734650415 3.383255624381808 3.6603045950467985 3.515982400020689 +1.3541927346985343 4.86070277598528 1.352454929624121 4.807430743333098 4.922648732436511 +2.8848766422445076 1.9087972575429055 2.2207910087188654 2.1193930003939028 0.9813320138117003 +4.120525430505586 4.381780546316278 1.3392111971216063 3.733234895070124 2.4082366374333635 +4.496104724509321 4.751636313792647 1.8641828165410366 2.181472459395061 0.40739306644087236 +1.962377250982036 2.1361774640440485 1.7025565847833213 3.4011850209756993 1.7074967286357432 +2.3579710625253303 4.866830759218866 2.0988428675324875 2.900164960375692 2.6337224747819943 +4.019270066825207 2.107805849584744 2.9478874607647456 4.904109233383078 2.7350501051089924 +3.9807591087039804 3.2587123835525844 4.084399719376185 2.3962575251743248 1.8360761261850027 +4.442512575782965 4.734752763079461 4.273074943614892 1.5888072573611676 2.700129133678057 +1.2650213119830838 2.1570853553041616 1.2043154112921806 1.5070394447322926 0.942029775436318 +2.0328538130589218 1.1035974531641974 1.5925940696790786 2.648055725814625 1.4062420453027225 +1.3044055631783316 1.1708394527898371 3.5735275168024345 4.490488652296371 0.9266378094221281 +2.4020140353778356 3.1972854662656784 3.2184569110204104 3.8548071462879654 1.018527501205279 +2.8568306352537447 1.5520688767512176 1.7660880656587756 3.8363738977868027 2.4471384662827407 +2.1996857949026123 4.490599217205465 3.9414844489157987 4.908759032655694 2.4867457507426356 +4.870239653976935 1.8766423498722782 2.8123836826477033 4.239448759390228 3.3163443054666106 +3.4783606716153987 2.3219636564174175 4.170783147231858 4.091523586011645 1.159110061557409 +4.441786202714612 4.716392024892409 2.8864565499097816 1.9998022449875754 0.9282048340808319 +1.5869245923951478 1.0368559734716571 2.685108555227745 3.7083889208904837 1.1617565116130248 +3.1861457544599334 4.299079571096382 3.54104491502632 3.375696557748627 1.1251496609195608 +4.107243125029763 3.8363569062223304 4.503810270443547 2.7509734532023793 1.7736449056719148 +4.892792004495995 4.467848256001014 4.8817048864625185 1.1046759855831234 3.800858390872143 +4.353842003615897 3.160517735424809 1.8483106196526071 1.872384841800927 1.1935670811587602 +2.267395196056866 1.8019010075128419 3.8870858035891658 3.6440458237099174 0.5251221490167453 +2.4920031500729216 3.6967305256682317 2.4153491923984887 1.9115951120660797 1.3058086471456354 +2.5104712629442694 4.848300839270195 2.3431405281187203 3.568710505825215 2.6395963513764285 +3.5057477468576033 4.662521023597567 2.676391837741648 3.016534778388638 1.2057452607626935 +2.8209843043878 3.839464157431038 2.8199694254690537 1.4268653652045526 1.7256998967898254 +1.2227272600958288 2.9830484533194013 3.9200804656999586 4.005698410073007 1.7624020925176889 +1.5354465053231996 4.487929114481964 4.9331997398437295 2.1199764566872483 4.078158750990289 +1.9335344156666965 3.4686254924543016 3.5974698303566264 4.233054758464224 1.661467067043602 +2.1720992834368493 4.4612678518688345 4.869682829452442 3.5377889710035273 2.648439915284257 +2.695358267193902 1.4237531842526687 1.922037856235478 4.071964245051163 2.49783165251144 +3.381010785510288 3.6248800090137405 2.1030358533449185 4.248898349341699 2.1596754501308086 +2.534139558212085 1.9679456814406011 4.985908835797812 3.4911920604711195 1.5983597043646174 +2.651802036758471 3.737964640932347 4.7385589296315 4.41413154468894 1.1335794329496474 +1.1249378164194295 1.393883063614632 3.328736474226704 3.7404895874431094 0.49180501444402813 +4.834683900852919 2.680838667286937 4.6925684676137855 4.155166392236849 2.2198761859109037 +2.1159597194380004 4.205710233381149 3.3980984945002817 4.3294754420099615 2.287907390800183 +3.1336132298740993 3.0430726636907304 4.794594372429132 4.775873903584485 0.09245566547577491 +3.365731051831864 4.319671823917551 2.8750320406137444 4.399372162355228 1.7982257376086792 +2.037948385765269 2.200632643226391 2.9921007267256323 1.2262884984916314 1.773290442371583 +3.0050531238758977 1.1275289612758348 1.2689396133003177 3.2250577467315904 2.7113640723970867 +3.938281584813651 4.7848136821415554 4.579264639454495 1.0434063630950492 3.635781943723519 +2.788856420231443 2.6715082216249724 1.2192643860032928 2.0048204897736754 0.7942726181148938 +3.05361920189576 4.9590697349500195 2.2366979721858695 3.2227159188525185 2.1454540603484094 +2.421848937022226 4.672648349359031 2.482943242717217 3.390968667546384 2.4270575120321927 +2.610982064313228 3.48694554008446 4.1096625775218065 1.9507391525562845 2.3298631645978864 +3.3696744055048007 4.574700124620527 2.497484249595614 1.151153179816447 1.806846516221865 +1.8265756364612242 4.474640594893548 1.6641479796015934 2.741321438116845 2.858767336424371 +1.9475713115821405 1.6272232924802155 4.5634612851235525 4.548204907536814 0.3207111011480526 +4.715597202414674 2.043928114428339 4.207875891807677 2.9278025069136944 2.9624995504498686 +2.162141319970243 2.458987547224022 2.4132628202657522 4.634422034872383 2.2409073919434395 +4.523548451832534 4.985800364350679 1.9207317793120784 2.0566331543382823 0.48181533221836714 +1.9451960479519501 4.566882162043185 3.5436962271090593 3.913252095210266 2.647604506051996 +2.593639210848321 2.40157437766373 2.1728639826510103 3.666030584469495 1.5054684988176892 +1.1667935654459747 2.9098923120392226 2.288779842040843 3.271552539670867 2.00105857375089 +1.197555569459297 3.649691914717618 4.0694965314051625 3.864796914752751 2.4606654768160747 +3.6979981880553994 4.377931999639399 1.5864705082603274 1.3682382444374346 0.7140975487343523 +4.648938393218788 1.6660935279734952 1.727213301804225 4.424488015905103 4.021523886967251 +1.5086003344007333 3.355920198803702 1.3188969232708616 4.187667491341514 3.412101295923997 +3.7032263669804655 2.2130921059034843 1.9854006934481503 4.066593562500621 2.559660890475591 +1.823048576485144 3.2333427820253102 2.407672364955437 2.3551635988118997 1.4112713830805488 +4.057118900703712 3.9012913236418743 4.907606203752691 4.435304969326632 0.4973436335305217 +4.005992604104147 4.645476851934677 2.0025003956443306 4.595454940874982 2.670646621486203 +1.0412639957143384 3.6200698696798073 2.9253978119052637 3.0734529574203355 2.5830524697946604 +3.9738902811251227 4.252607352306955 3.715980843379998 2.4229829597056667 1.3226967653073316 +2.3779483000147112 1.8701517262258296 3.8946133275424573 2.484744434296417 1.4985284970578774 +1.1707191517209519 3.9253550660764573 3.9288572454268698 3.1874226830320724 2.8526731728276826 +3.1337193411533395 4.818647131412144 2.8539465952093237 4.154036490301719 2.128195337300543 +4.723283281351019 4.557324314533871 3.51645614783497 4.933104439779252 1.4263361321005887 +1.8321405552696288 1.34544046102679 2.9967379666539604 3.424015971542386 0.6476445593050416 +3.8019277688511677 2.8662805236355955 1.5494440084197851 3.437725151915396 2.1073778598914297 +2.8951434696407006 2.892069397185732 2.525713345503825 4.098285134655757 1.5725747937563948 +1.0797256948828489 1.1100351292323296 2.031713504947654 3.3937221995128395 1.3623458980309466 +4.183579276642078 1.7340787801074518 3.5777327768412435 4.453987711122597 2.6015140576932887 +4.953163846355435 3.0417620807837036 4.648257503717925 2.9827357981540574 2.5352355435215688 +3.3794364904235095 2.262410960657342 3.858518367915814 1.8852945325043642 2.267456358738853 +3.8779052536914693 1.366689345336555 4.089417341424769 4.443136860706945 2.53600529114117 +1.9181226775552527 2.625690952347267 2.9947078405521963 2.9336641263106036 0.7101965914734854 +1.7242072749605164 3.689612698766388 2.4081201997720765 4.161917986035471 2.634127019531883 +4.891769904595954 4.095707980932088 3.6297093143045407 3.9934117494137564 0.8752108589430246 +1.8631824418636147 2.9337293236567263 4.106634989872427 2.1984291954241857 2.1879945109809573 +3.736388332923405 2.722425994129099 3.4946365192922904 3.73811985616568 1.0427865360792783 +2.5986284292713844 4.80545640759516 4.840378278670187 1.447787893662634 4.047191525781588 +1.5328942878388134 4.856422047513272 4.480363467498645 2.7183192192312338 3.7617332045453447 +4.0770486963772345 2.303073268530078 2.614729562991633 3.3730468738824095 1.9292573603856278 +3.7314924300124654 2.10932504354087 1.5248607413977089 1.0040816349697002 1.7037129768314971 +4.647679168457131 4.984978947680332 2.7846458027642824 3.262990835108755 0.5853077062816231 +4.555698727672922 2.8653728851107374 3.603688153963449 4.744932660419769 2.039519668341124 +4.238214249232956 4.379742566501104 1.3840952995625742 1.190138801300142 0.2401028692185464 +3.5611180979501706 2.479351802378987 4.6607806209668965 4.0967294216778525 1.2199885547222196 +4.7535407557450124 4.513016401547449 3.8072338845311724 1.297313842094145 2.5214183675838573 +4.218784027037313 3.340570931401205 2.1611583623582113 2.9049054304341104 1.1508335859794203 +2.238389338834135 3.698816892987195 2.4225488145816088 2.3103174015647387 1.4647336041059658 +4.96299621540339 3.0564051263827343 2.966182422973838 2.5063373998035137 1.961261590422727 +3.0670627242823674 1.3021475184988756 4.111411904082267 2.238095907966183 2.573759605112758 +1.5818305695612374 3.117384488351213 1.495513092882553 4.865919419103967 3.703723078382694 +1.242620134756998 4.2235553274377935 1.7808832423952885 4.5738852684810745 4.084952256842446 +3.2134463170380747 2.80689380387077 3.355999372610966 3.449884282162187 0.41725210868741264 +1.9455768292882971 4.494555156817578 1.8138510067085352 3.96170768414066 3.3332534888609557 +4.714012462242926 2.1852511026698718 1.764991521009656 2.3113826037196312 2.5871175522064593 +2.600946274644524 2.4008440478235595 3.84434184794084 4.789334391069751 0.965946068757441 +2.25326924841717 1.188684508053925 1.6021107196542004 2.0124321442309023 1.1409225832110308 +4.530572462987193 2.7975539981533726 3.8233416400672295 3.7487241936996116 1.7346240984021282 +1.1606708024064534 1.7555239924774235 4.416362727382654 1.8157795792844778 2.6677486815496376 +4.5087756472298075 4.472529880497243 4.767706033495497 1.167753172407616 3.6001353249094468 +4.880783371757323 1.213840993905091 4.606724150926544 4.228190726527096 3.6864283467709167 +1.469200134859173 3.5929869759106388 2.706784451738108 2.1164059126709156 2.204317891234038 +3.3978706360391517 2.4969773854082957 1.2145928739139817 4.595065654482811 3.498457498555468 +4.634311766488553 4.207569998945207 1.8904623865640113 4.340738927073906 2.4871597578642097 +1.0765647022995992 4.011106084097463 1.0410996414923415 1.7068622618488156 3.0091149842018394 +1.3954696734798215 3.8815914476611852 4.523713015703352 3.3141483644040064 2.764751005376723 +2.0374218272308813 2.43081233212737 2.4030287212750467 3.2768488137620357 0.9582889143555217 +1.2372537649112787 2.1949885678888257 1.3000217008180908 2.5815858374548424 1.5998945556341966 +1.8290801817929148 1.6715855077560833 1.4068541130171979 4.908595452153374 3.505281298065134 +3.051329202494605 3.8072704765455923 2.6987262227150914 2.75008354617551 0.7576838288407954 +3.4050924343814764 2.054520740702917 2.5361449496332487 2.6691151820738157 1.3571016846504433 +1.197925297695507 1.066485238990372 1.1314798696780421 2.647273343758107 1.5214816282479793 +3.049981834990905 4.16688272420115 1.0717777350113886 3.9011654572746783 3.04185839236689 +3.505930645232461 1.8359693219850897 3.014057022409132 2.850426768539834 1.6779587840955579 +4.8403771382779315 1.21769811306108 4.414337946961831 1.49769578083674 4.650871407055347 +4.304801055483226 1.2872899173092733 2.584977525430686 3.5533456325843917 3.1690866602155765 +4.075298402835594 3.8623045743276085 2.2460653770285934 3.426834434794787 1.19982579517218 +4.579079898189033 1.4298064078036563 3.0558060958270756 4.529309209320312 3.4769433332624726 +3.2548403761035787 1.824665629615628 4.733899653363964 1.537925616564889 3.5013782785334193 +4.038319795890425 2.241144869658256 4.566021875751526 1.230903093682652 3.7885162010985476 +2.4085919653095433 2.28379467531121 4.166070228817426 2.6947973696422 1.4765561925428277 +2.5284987093519002 4.470728997206793 4.282895385797366 3.9602214913868115 1.9688516788206707 +3.0599137157150462 4.272567073349211 1.5965290245396986 1.3664737077346971 1.2342826315603985 +1.2660927899872405 4.148857012679148 1.9503940267787359 1.0033577021187914 3.034338043768013 +3.2355105487087097 1.1034399102733516 2.3275169402516434 3.1981593775274093 2.3029857708773718 +1.8766486197264398 3.7434063235035864 4.678213574238319 2.8633664251041697 2.6035465233660937 +2.1771709942578745 3.5022900513767428 3.8990431784999138 2.5391348332413575 1.8987604438273573 +1.4430965420115696 3.313345684223438 1.1394216642011887 1.8079296621167664 1.9861356442149976 +3.2544778838331907 3.7202466860492676 2.864878495994684 4.684502906394684 1.8782900660018798 +3.6201443912531546 2.893585107641793 2.5293309804612067 1.17918940615034 1.5332223137185554 +4.757785063844716 2.9058388077873065 3.224353007746367 4.584751408113323 2.2979096464060618 +1.9804070221028356 2.6465432629372687 4.769807227902207 2.893446260985298 1.9910971773176684 +4.6312999048600005 2.6772708932865243 2.808364745715122 4.686451005660962 2.710246737451808 +4.933371061886117 3.3626755041215257 1.0297328449634082 4.287952688753154 3.617054199987428 +1.4655842647488528 1.943143219274948 2.3365306923338798 4.848284066846793 2.556749414671892 +2.5168040085521346 4.340366769457212 1.1800846409106556 1.8449180122181779 1.9409751555761539 +3.1668700110185237 2.654406618275047 4.868959239459226 2.0047231692970184 2.909719401337593 +4.9518955869460255 2.122164208350061 3.927201519584539 4.646015108540701 2.9196014540821587 +1.128757126931169 2.072295423545248 2.729273423861219 4.714700840888419 2.198223497613629 +4.559257854764203 2.604807842382867 2.9583566353136765 3.817179438078579 2.134818834806918 +1.222702974535224 3.5652361236298753 4.661097107860075 3.474480778264054 2.625932190341411 +2.8070641207344225 3.915518429244199 2.280542249520243 2.7255537602722644 1.1944480728586249 +3.6185750365736373 2.8703083795559987 2.020103504462402 3.8071260018526245 1.9373570647103597 +4.40424626218611 1.3789634517623601 3.9920910189054384 4.665626426391749 3.0993525175725285 +4.671872194041617 4.982685881444556 1.9877310826335184 4.681252716208094 2.7113952015173415 +4.567885690147655 2.8669446476869367 3.7955367327317067 1.8551680680186187 2.5803548176419087 +4.429593089292211 1.9522624166374158 3.9722153462384346 4.012712307056682 2.4776616527507893 +4.0036739467601565 1.3362982651384359 4.3258682578948875 4.906693058913307 2.7298810370389814 +3.6971426794790645 4.626454571374182 2.344222538236227 3.729838236467984 1.6683978708940985 +1.4943735150083084 2.3296667837433556 1.2005421235397513 1.6840846818591397 0.9651571118217691 +4.958293198377775 4.177734057323017 4.515227915326822 1.4494302907124075 3.163603585750833 +1.3272193399227832 1.515144483770872 1.6648036640392903 2.325797340667983 0.6871888388452199 +3.11252726438893 2.9860903415421025 3.998774945220124 3.35070879189701 0.6602848131995709 +3.2620352076350967 2.524227765689147 3.2570351083973104 3.364468661663045 0.7455882172876174 +2.840143221295123 2.473549962860703 4.022574926184751 1.75663860953448 2.29539931346251 +1.7396174225465608 3.2442410701194224 2.503027654124022 2.7566463171341136 1.525848861146637 +2.37831852561703 3.171722627769093 3.8230863846444896 2.3292188988397764 1.6914875507836928 +3.54298416486055 2.4266883822788445 4.207158161924509 2.9304867793176683 1.6958791505814805 +3.9171518087380166 3.812966161305899 3.603190310486742 4.720462411970843 1.1221192440581116 +4.616672850349385 3.152991353859737 4.093217321428591 1.1769565456887499 3.2629649761045423 +2.246070510232075 1.1368099165526853 4.0809380024562 4.526094179378452 1.195250219218548 +3.2875865461279385 1.1816476489107237 3.586957575386522 2.8034739861284033 2.246959094743214 +3.0919315969769574 4.114624658955385 4.556653743835133 3.7390802118095605 1.3093233287800163 +3.828333453335098 2.232844303090317 2.568316511665586 3.5747428020204963 1.8863932533982302 +4.810266452160966 3.4321665049743557 4.618157610776581 2.3251117255165195 2.6752979079616233 +3.6974985860565854 3.1749854856266615 4.451023185887294 1.6230422747397388 2.87584700113477 +2.5161792881599068 4.44708805240449 3.2162201169076847 1.6603527826074584 2.479744304919165 +3.3876561324333503 4.022825614778077 3.353823693567623 4.6490170125309485 1.4425553732142495 +4.599217699705155 4.117147304727309 1.8872827895502131 4.06955606974673 2.2348844567837864 +3.8357134535634567 1.2532055873043046 3.299887868264561 4.527255098925217 2.859331599900579 +2.340585638175769 1.4844972535525733 4.317685680627056 2.9359243894272007 1.6254696515607554 +1.4522134676890737 1.0978949388253607 3.7313842905079837 2.894362266198835 0.9089265586804749 +3.1059815603798144 1.4300151504716068 3.296147770449742 2.4849393553600576 1.8619673734662818 +4.366952115977636 3.80468473329686 4.905854903467038 3.0187208101885212 1.9691164758949173 +4.777671369158597 2.191604622822626 3.381253055649208 1.1974450437700526 3.384783397686225 +2.4765289561849793 4.956399572966198 1.3399408106796709 4.40297172814939 3.94105527458703 +3.4030870459330043 4.735873229374139 4.868746941761868 2.3135803558641714 2.881873573295622 +4.606190585920896 3.9392788323999772 4.934742409017137 2.5203974805367646 2.50476200878711 +1.3318558784319832 2.1115218647480525 3.652132880416977 2.7305054136161573 1.207176970365118 +1.3108736594366053 2.272513113278033 2.26088459549441 4.252766609885928 2.2118644620412096 +3.6793727997351198 2.7491338956792215 2.1872811740719786 1.3495304913772208 1.2518668559294361 +3.517131304171065 3.850509338288619 1.6201723327661166 1.4119096007816445 0.3930830435998496 +3.52476253850527 2.8271250985724388 2.1838046703395655 4.663975480054431 2.576421014306032 +3.764274585587172 2.5554256699789146 1.2072745738460875 1.831510732016607 1.360509640515182 +1.932899338205614 2.785809853685488 2.529758455863714 1.6018405642779054 1.260352316196228 +2.2710203504637896 3.3093103383612434 3.2152782863990814 1.701703355526596 1.835471375514678 +4.767852765933037 3.6921069521713323 3.3817970303042024 3.3275471580147555 1.0771128559576542 +2.419216299433644 4.912987588129169 1.4821624721959497 3.8624202204843954 3.447393535500309 +3.8001370613504957 4.987150700532643 1.9766200102697637 2.5015768170462036 1.2979141067826336 +3.8327184882422864 3.373270614148577 2.75405085639444 3.3747317544193978 0.7722286747993089 +1.6575028710979454 1.468949717299937 3.2628834080136095 3.9935599834984536 0.7546128476042762 +1.2734512750216034 1.8443666471608164 1.4437026819259189 1.5789696172837577 0.5867209779324052 +4.918041678376527 1.6580056985971514 4.565414063517032 2.162842187899405 4.049714336464348 +4.327533456453452 2.764884197064235 1.515274974302018 3.9602341376012755 2.9016715903200816 +2.8925607401666498 1.7690046134856656 2.103747575685778 4.799931157100561 2.92092181930517 +3.469526900119462 2.056496808724743 4.345827543077126 3.9382836218040773 1.4706277866794106 +2.021341360961793 3.534567540221326 4.281989553769259 1.6993975722388401 2.993264908534094 +4.314961865810179 3.3517220258841234 2.171551447705171 1.2001824218621788 1.3679871247888036 +4.303539288651237 3.3338330751071648 1.0469135309484314 2.823564195603834 2.024059713745241 +3.2566412116633288 2.9932172066586915 1.5034671426287138 3.25328089285087 1.769531114979109 +2.1420506227279605 4.427059853274306 4.334442774811576 3.583181887670562 2.405339914488159 +4.246520227172872 2.080453563532578 3.9535017425302317 3.994120950684435 2.166447486417538 +2.0283076465293557 1.9404079212030947 1.7595151127523687 3.7418683908308115 1.9843011063900509 +3.8419659883638935 4.345838284468389 1.5419845803392978 1.5101233040727062 0.5048786306697407 +1.869076270112807 3.304988709827046 4.97365685880812 2.7184486463830937 2.6735385944316157 +3.2645589247025675 3.8977414854545938 1.478099256754588 2.7329357148999835 1.4055371542337023 +3.836018802829096 3.2478446843819624 1.3114265038256163 2.4971616069446867 1.3235998369521866 +1.7081855520151956 1.1576815536704839 1.107515133064152 3.197099996874225 2.160883975427111 +4.71196511825779 1.6218944269139492 1.7424362125839865 2.771488005342654 3.256913334690076 +3.7238108226481303 4.701714473336933 4.504182386306461 1.7783258127988133 2.895960912955377 +3.316084762836112 3.741792178813327 4.904358889465987 3.593051741210631 1.3786780773928309 +3.600497523371847 1.0869839130717103 4.074760052572254 3.317652695528714 2.6250642314529147 +1.7538729761208054 3.3832319709167473 1.4983967344306754 1.508718428294046 1.629391687497715 +1.573648845612699 2.6974622725307555 3.6427764688487296 2.824602456079404 1.390095440497654 +4.978771600014393 3.9828002199537553 2.309360280437951 4.417301959227132 2.3313895236696163 +3.0462910653772597 4.646603940801809 4.163271492806727 2.11537717153712 2.599013745700067 +4.142552909531236 2.259116864815466 4.493990011267014 2.2624110541093208 2.920149992134583 +3.497126064448925 2.5704609716942195 2.353340950528362 4.55196978384357 2.3859331383790034 +3.4637955063847548 2.9169577907772566 4.463124980294306 3.6215508546470803 1.0036326500118056 +2.204815628963426 3.820941031215345 4.98051461153611 1.0314264161004174 4.266984754031054 +3.161447643669701 2.6556211894317596 4.651228692470735 4.529432704126351 0.5202832541834433 +2.438267989758818 3.774776588936509 1.700157784703392 1.0056144565575909 1.5062024001932008 +4.055108711818761 4.188475802443415 2.5377929813141438 1.6341168575263003 0.9134644588411235 +2.8061825667515996 4.479584091211269 3.558251226708694 2.283854983696324 2.103415899499666 +1.2778302137925603 2.4981668744880463 1.4365513398432999 2.0929031719159132 1.3856476077641406 +2.920165683483606 3.303953967175274 2.5097328384632194 4.1807729575964565 1.714546157574015 +4.903310067284066 1.6149701759198973 4.695716708110648 1.7424849156233373 4.419814165923125 +4.5524698864764455 2.269303373539163 2.325635661518415 3.9675405670492307 2.812241284919263 +4.942796918635863 1.65210980721127 3.8499730772500245 2.7418689602484583 3.472249472519472 +1.1532618355616 3.93901550129949 4.251025275509151 4.168596201643873 2.7869729166948103 +3.3621177112490797 3.3621378534157627 1.6860251128210053 4.800699899958179 3.114674787202302 +3.991000806527202 1.8900778352630492 1.8765491527784124 4.478585528534798 3.3443191582061695 +4.799773878849409 2.552027927259795 3.7400920117683594 2.190883861257696 2.729909844023456 +2.6609618601269847 2.3087427104811797 4.899957718898952 2.4090887641546006 2.515648321822116 +1.7600526928517537 1.7305634391990274 2.6251804786191335 3.523110051883757 0.898413676779346 +1.8311143147954012 4.636879658269798 1.2102907726531416 2.1513250936520647 2.9593689793501428 +1.7876643996670887 2.2024056545127024 2.090495535549625 4.391951860692683 2.3385276404207636 +2.170262124847318 4.849942393335762 1.919858625711207 1.0624319158779318 2.8135150442216963 +4.905529211892156 2.4429691101910866 1.298705564951132 2.8514890819893903 2.9112435324575103 +1.6632131989480374 2.6096977066842144 2.5378173362288607 1.8026778420435505 1.1984419048479684 +1.9518684076138286 2.7862566196293197 4.005093736099186 1.3701236432962194 2.76392313176696 +3.764065851401975 2.5139918790893816 4.002017806848755 1.0851357094785974 3.173465945336726 +1.9698464924792427 3.6641840689872307 3.039888933377583 4.136790085364827 2.018408273961912 +1.4725872806653766 1.718169010373117 3.2068255625006907 1.9652683705801688 1.265612360391529 +1.8478462654522265 4.483987809071234 1.7734034608914726 3.5888590442077835 3.2008000895070547 +1.239776135332868 3.6769778649577747 4.27109112921843 1.3246386560129753 3.823811507873417 +4.138595096477615 3.416447967410212 3.997757866815515 4.308206234806869 0.7860500398885476 +4.85798935060966 3.295539048622591 2.8869628697690786 2.8427632665833813 1.5630753504234072 +3.659009674312105 2.797802013417993 2.698056629608921 1.9797907008939597 1.1214207861170906 +1.7044609295217237 1.0261412772743812 4.028488589982567 3.170488621082046 1.093746541598304 +3.9817936343092324 1.0761107461290833 3.0715563653679947 2.294987814481918 3.0076655001659067 +2.729883225184267 1.2631191790384153 4.043845402976886 2.390780957223146 2.209981635417197 +2.6103061963988354 1.651748516278999 4.454348648520984 3.8550820960481023 1.1304659335997063 +4.629057466277278 3.539931657363093 4.878160822426431 1.4721450273726444 3.5759108802931396 +2.662559497721725 1.703184580957199 4.5603729216755005 4.611807993342575 0.960752724437635 +3.5937171449425476 1.9131143835016329 4.161909668855602 1.5452669302533226 3.1098625151673285 +4.730570557778069 4.150731630128902 2.6171501536829465 3.4253988464106255 0.9947256563059677 +3.459849707865403 2.1867318114497345 3.324767695934401 2.641520375153241 1.4448723402185017 +2.756531006247944 3.7334969801554547 3.2575781300596853 2.969923893156794 1.0184338339731434 +2.0511441973261118 4.353454130226725 2.2633111338293337 3.246283403322795 2.503370829446958 +1.4896615491623688 4.491921330585584 2.671284422531911 4.466040487581378 3.4978154794361616 +3.758336096913213 4.020032404674849 2.615704082830288 4.816635684023753 2.2164351717630053 +3.6900472319629953 3.1272090813621958 1.99485430266117 3.0625164663836433 1.2069338339843994 +4.995116786691581 1.346633244920064 1.7462843656306082 1.6652892746644832 3.649382462737804 +2.72039713625269 1.4785659063816685 2.700225637749699 3.852654835224028 1.6941776349232982 +3.8786680976515786 3.5627210175996176 1.2602650323783466 3.9943198810541407 2.7522497112291573 +3.756050845768734 1.2659051399444263 2.2845065093794577 4.127563008346464 3.098012733127441 +3.7261680301483295 2.04559210876945 1.9497409740556626 4.237969836546252 2.8390714599413394 +1.5859083836080337 3.7558600253590875 4.594544817975885 1.019799010567862 4.181805556828214 +3.6094330163040995 4.615809306906356 2.5819528244855063 2.492333156300023 1.0103588091425904 +1.101759837097156 1.1785963646771607 4.389726354842129 1.0367779631362497 3.353828673235052 +4.4827567689351095 2.365293299416481 4.659018012756382 3.545797502458036 2.3922607402402396 +3.847869242374329 2.969518751802084 2.2123514942614975 2.599356035622395 0.9598292032036021 +4.3109700941093525 2.677414417675817 1.857709075347096 4.696025424038109 3.274834933741686 +2.9570346379987678 2.9423331259767767 1.5781074493195666 3.6173831908839165 2.0393287338211468 +1.373123571750277 1.7640327526618749 1.056756321744102 1.1664701106079653 0.40601367364639424 +3.507132860940552 4.801870810384786 4.456429139326705 3.0329648884198495 1.924213301934293 +3.0215376410462893 4.404750452877564 2.1068011805337377 2.482571240893709 1.433346022800188 +3.4900435526084292 3.3652127160459933 2.2604640419979987 2.484985974452953 0.25689070810401976 +4.403747711829579 3.5786876896372974 3.643658957321654 2.486394778303185 1.421261559410941 +2.007432675660256 3.161574197833771 3.584113928742427 2.489966179763368 1.5903464873419693 +3.018329137278356 3.790848958105869 1.4863863219194342 1.6283146991677255 0.7854492586028113 +2.195726481822383 4.385325568563937 2.533935171118048 3.140494985914282 2.2720605118669464 +2.056064234209715 3.2251425860158247 2.120734349608352 2.8190654723242368 1.3617674359505438 +1.9166848587634857 2.1651373926606166 3.1703740293821387 3.9901346490243044 0.8565839918630351 +1.5769518768395492 1.0943615658115942 1.032315059265024 1.858821344582327 0.9570820487121598 +4.787926101428576 1.462689428537245 4.732856514234111 3.5683068794301183 3.523261952035858 +4.12684257545985 1.7878607063532632 1.1834082196457274 4.279212519343394 3.8800567580946423 +2.759072418187455 2.450914520147806 3.6145812840166 2.800949070437498 0.8700337172189613 +2.8614806676479687 3.5839917231604366 1.5496097287996036 1.807156784047793 0.7670415314732015 +4.706882053718779 3.239652732312418 1.7498020999407915 2.3377283205947608 1.580638833676761 +2.7006251188710646 1.8100942717004367 4.236990661847706 3.2702614448543974 1.3143860044716438 +2.877198575041955 4.821875086249312 3.0003543864319155 2.419675977953645 2.029520669348917 +4.4326629755537255 2.2593251128398535 1.6135988832848858 2.9427990381650946 2.547581307287222 +4.661219253620338 1.6921032116216264 3.716773722860557 3.20822230848534 3.0123536664736315 +2.7510097005423244 3.466500669280993 4.516157733397925 2.938235090204737 1.7325608775013868 +1.1453687875948293 2.677478981463179 2.123693451801436 4.454946042123766 2.789641605303428 +3.5802600386962466 2.0430306305632704 2.3070748382699855 4.2156474610449575 2.4506578116160966 +1.010272381292899 3.483649160437668 1.0403976865297788 4.038646968792782 3.886784204223739 +4.439023551210757 1.3292968515781927 2.8453311552862304 2.735660483660712 3.111659975418656 +1.9242714976735744 4.205569850477392 3.624797724774869 1.5749125912172288 3.0669775407208375 +4.757984305880402 2.296863295787073 4.763111926698304 2.9579529752675446 3.0521657009824037 +3.128836268801644 4.84217896916547 4.806668644000677 1.9599125969088322 3.322583813923133 +4.461704821652296 2.56453249061597 3.1468674490628166 2.360687046816749 2.053616925944465 +3.811886559084192 1.2648293957213723 3.3361762384298124 1.7817769521161777 2.9838996857686406 +2.4791451722073714 1.1049757324382403 4.775978892360529 4.738768735432711 1.3746731411408315 +3.228178247510466 4.124150151239062 1.7789697219181888 1.3647496383307156 0.9870886130020233 +2.2022125202157032 1.7624853087543135 1.832326368526798 1.2033270575540254 0.7674634543115605 +4.772261695890363 4.437949541743108 1.2073638585000883 2.9208124447300343 1.7457579082060546 +4.654366060417841 4.63777178549226 4.546723728710594 1.4854838058629025 3.061284899384056 +2.177585328305357 3.1075108375147753 4.136703010123201 1.98033339866533 2.3483379982228634 +2.1899654360588445 2.5716441449394503 1.1657226087179602 4.739051669999933 3.5936554115573003 +2.4050979605341896 3.7292607053680094 4.562593908109379 4.915856927295032 1.37047500361371 +1.6335852166234424 4.494500552847754 2.5802192418690466 4.202488020159411 3.2888588522554714 +4.278676999861945 1.0291610066809036 2.547736558249324 4.948149511153815 4.039967392741064 +1.8651872483106549 3.303305571737911 2.876902592171119 4.605342596917249 2.248485971088996 +1.9262789025382552 1.9698143461928868 1.3221481458618065 1.034790242594955 0.2906370578988971 +4.137678683240858 1.0123816318225023 3.199220823550823 2.338338019871995 3.24169721924707 +2.612752722705924 4.521786290609623 1.6126358334738242 4.668726764152563 3.6033457979994044 +3.7575145750898953 1.7546554384797899 4.625632178111244 3.3509097036302284 2.3741023794372436 +4.107106834058315 2.4865220216230353 3.0063300992154556 2.577974955451005 1.67624081309499 +1.2799844737870338 1.5202191902237372 4.840932836016313 3.081064625775425 1.7761894145608146 +1.0126838116677943 4.468543860987883 1.534404113407891 1.0509206978183498 3.489516426904561 +1.916311502747635 2.7834092531068797 1.095149644695954 2.5274229851337275 1.6742955027135566 +3.438826431106189 3.2004010541906616 4.199898557277141 3.020014548828509 1.2037329162858856 +4.3160667915790265 3.6742598546099616 1.0497298940538702 3.125359861711684 2.1725919789460675 +1.834221288580785 3.245905294763288 2.2624709696966443 4.793639751239029 2.8982179238225414 +1.7385678004114289 1.846328804997893 2.846463490539876 2.0523427966417076 0.8013988461351764 +2.5804874232809665 2.336044992000786 1.9834735643518706 2.709516756237024 0.7660879967033469 +4.049621640506711 1.5517985681980875 4.713390582021145 3.1779648148426998 2.9320048409020076 +2.4362678486815983 1.3138616088854471 4.380400842751552 2.488140359553793 2.200101248444069 +1.1637567585397375 1.2058186930040855 3.102212729577871 2.0142016687791675 1.0888238033544286 +2.7681703983938792 4.770046436084046 3.5314298507787267 1.997564123459858 2.5219539527361565 +1.0661679989038437 1.3092024138748215 4.090030590735749 4.1036513826205985 0.24341580234622362 +1.5632416089827417 2.8759628187298616 4.393135059982221 4.498193123693258 1.3169184375923417 +3.9226219848442714 3.937601079423287 2.08649547304284 2.5400174277075362 0.45376925483916786 +1.493244583434755 4.922061470631302 4.242981544517798 1.1149872282535913 4.64124268795604 +4.603754691882997 3.5252697846191925 2.0878888231503585 2.4794550073610826 1.1473681936558826 +1.9011761915695145 1.1804135093362618 3.8852401884133076 2.750453957596944 1.3443357593066108 +2.9600861893518013 4.894502212586049 3.9692238741110146 1.2834080043593392 3.309920276555819 +4.1798107233184165 3.957710084126395 3.6413311715820686 4.8783711182062035 1.2568200044053035 +3.106888738837478 1.7882502644076914 4.833238268412938 3.349091844342334 1.985320637662359 +2.099225392383821 4.773922838650824 3.719233786557247 1.0896255064653495 3.7508460559979127 +3.545551860165367 2.4767947843637805 3.8692310112568276 1.2958535642623086 2.7864876048129097 +4.954341589784519 1.297972032259299 4.201935900799958 3.8756268004647474 3.6709012476718508 +3.8865223454600177 4.788281851593387 1.3111584117461081 3.287000582575729 2.1718937568238936 +1.513448099297273 4.962222556012136 1.6188712375015308 4.157205892935709 4.282194306225144 +4.767387638288064 1.8689109767970575 4.936037258595912 4.442290976200015 2.9402299822612203 +3.6205337793453767 2.583283433351371 1.5341834262478766 1.833793999229723 1.0796549336279602 +4.493792964370871 3.226445657033857 2.2570234698238285 3.085393834819295 1.5140563592604808 +2.557528750380111 1.2940169776295378 2.6714333344193064 2.7963477123254887 1.2696714542301817 +2.1848815771799064 3.8895406625021964 1.7658917739886673 1.265383269689981 1.776617955568145 +4.354512885023646 3.8159079899029584 3.746101463166492 4.288042163188063 0.7640647586349191 +4.485515273660468 3.524609121448876 2.0210967968582123 4.822134739023035 2.961275770137768 +3.0899969058403887 4.516388096924079 4.702428284034369 2.1729652417912684 2.903924088552397 +2.5054944279525695 4.041989424129776 3.776995325827588 3.000439724987771 1.7215851632937833 +2.4259302475546924 2.732415346053911 1.5402917268095315 2.41804780929802 0.929725150755649 +3.996007583993857 4.420090818377196 4.606899726969061 3.2999650138784884 1.3740178070047608 +1.744058346289675 4.166642910519446 2.6995533934636504 1.8754706034740751 2.558911568538732 +2.7625833349291358 4.950108117793285 2.279468522666912 2.2757418533913243 2.1875279572404858 +4.5182406023681825 2.3741116247620235 4.041632608982351 3.9704065120827394 2.145311685860585 +2.931005287802269 1.2145767677198407 1.680516229393846 1.5779005301344498 1.7194931946032384 +4.343425318651812 1.1071273185712762 4.497589580316542 2.3051255699006563 3.9090309774027356 +2.533053461773876 3.342089600431122 2.1280108649739993 4.291206837616352 2.3095359468320735 +1.2405327357477973 4.401930812681483 3.6852128360690504 3.941145694479601 3.1717407568800766 +2.0285405813114035 4.088929350098885 3.9058261562058862 2.3874343449637423 2.5594365729575705 +2.833986237715085 3.60908750851152 4.943663900686772 3.4940592421961094 1.6438174004152895 +2.0694935482899983 1.6916045580428163 3.1705352955858688 2.6880623439404783 0.612846014933156 +3.854825170643953 1.6492543451453567 4.730618614060186 4.666585827301079 2.2065001391503913 +4.856262789669462 1.2192409881090573 2.8160454624530336 3.436435547975759 3.6895543691942785 +4.958555650404817 1.6313923185042736 4.647289787419787 4.715492373728903 3.32786229130996 +4.707556804841617 1.1929853503950842 1.991834230647513 3.421251411813128 3.7941331007519845 +1.4109697787228748 1.927643338618684 3.900695289542789 2.730774997106935 1.278931217129601 +2.175773708362475 1.081669331765871 1.8673103801771487 3.354343864832187 1.8461671027762219 +4.156207509480536 3.7270814444387743 2.957857831008583 3.3546697632556586 0.5844731724141701 +4.610796453771902 3.2236586425754945 3.7430519041760606 1.612962086259639 2.5419350777787337 +4.03566657241084 2.671924879840188 2.6029174483757096 1.9274509613166892 1.5218562281619505 +4.077261851265343 4.06581020815207 3.693899845991205 3.5330845671050093 0.16122249859507426 +2.773839231555394 3.382285924801009 1.8699035232103123 4.332540867721267 2.536688800208155 +3.408737742095799 4.016683820808312 1.2346874730192217 2.2075784794161564 1.1472207045507687 +4.96822566078183 3.6487287665840094 2.8311052172664124 1.9845346798546326 1.5677224654291853 +1.060580849801028 1.3287805257142233 1.9754064185404885 3.7050812358210337 1.750344548851577 +4.51280419581753 4.6538194488663045 3.483982871114787 1.209936277572595 2.2784146267071885 +3.319636901058908 2.538856712829162 4.3794551020623045 2.70738909828456 1.8453786666484886 +1.3349879278294354 3.3972193457668873 1.9699984376357325 1.2253482697794218 2.1925561095709147 +2.9786085079753137 2.9076532619355615 3.051803433325732 1.8836013626540438 1.1703549567811389 +3.918202686323181 3.6496509317271273 4.019238987358774 1.3413054087842595 2.691365507721596 +2.689948970905382 1.306153377542274 1.4711303668715447 2.891453734413796 1.9829797559727425 +1.5874221222651181 4.048190616382347 1.5828312368323205 2.764271148851425 2.7296853018895204 +4.068887370562814 4.664750995275293 4.278084290487909 3.489968814900626 0.9880179462518195 +2.9079032837916876 4.342383744902629 3.292190990649807 2.0536534170606835 1.8951806020802062 +1.4452083998477394 1.0822094949005607 1.7616345901339026 4.068743506824763 2.3354913312764247 +3.8298223288763498 1.335205012993784 4.6509583866796245 2.8880840116784174 3.054642632901111 +2.3424378920377276 2.110315317431872 3.138038722402286 3.6038582175180487 0.5204504699503645 +1.4390931699638343 2.6818124666029517 3.570243198998353 1.8533974740817967 2.1194127708880774 +3.5453715710891154 3.6440726098922362 3.4352115927703744 2.0019201312779966 1.4366858768178141 +1.9312172704507042 2.8219163821485176 1.2638346016902755 3.545946530814101 2.449771369868736 +2.321907630636772 3.2374369597531847 1.6226076834371979 2.547533416512845 1.3014152159007026 +1.020176360851139 4.057898002649894 4.8264739152127865 1.393834245987681 4.5837504155211555 +3.5829055005091917 3.083000891430667 3.901843199914917 2.657523864384882 1.340982933132208 +2.9664811879153437 1.3399785528082746 3.2891838587586886 2.7692863263629706 1.7075726239903812 +3.8698901996816066 3.82706516601678 2.5872964223672517 3.1763177498713975 0.5905760812656907 +4.931180294941207 3.179069690291571 3.139862188238269 1.3155080830152261 2.529458335725236 +2.7684535937821404 2.465484860421443 1.9161494540946835 1.7683378809142183 0.337102824906985 +2.9056541346596356 4.129895424456034 2.9391442435533945 3.9578560995169827 1.592652059027058 +2.8082606678905107 1.1845496677609533 2.947165685285295 2.572302739513024 1.666421207274677 +1.1824083113260597 3.283943829410317 4.527879678070681 1.4400962758168094 3.7350847209941787 +4.737603902687767 4.082213764809813 1.360376797559614 1.0008521290198908 0.7475253976396263 +3.2403366727343355 4.995193310847695 2.2561930340522416 2.377042082246651 1.7590128802200444 +4.593025957795134 1.4102268283105093 4.962370328027156 3.6385221441787663 3.447141469758206 +1.6920717727545087 4.711629464169553 1.2968304425863537 3.1425872959113414 3.5390036752424985 +1.3417493725653378 4.483516515933536 2.5815857108194513 4.140517474052343 3.5072737311998305 +1.9396912229636762 4.292100693599243 4.645355204324256 4.039873840431312 2.429081719407062 +2.327001827872208 2.3559430368439687 2.9766165275644383 3.152896057584825 0.17863948690296763 +4.068759493090656 3.8170573085220347 1.60959039894724 3.731176137127083 2.1364643769940854 +2.20236903684909 2.769179149304551 2.3821899953495063 4.663464864334204 2.3506358142942774 +4.042100327512803 3.65249532948182 3.13315994132141 1.3254907651822414 1.8491781701216308 +4.7539681577819835 3.041272453086301 2.2012438163566928 4.003293466105921 2.486103279641527 +1.0637991986334212 1.1653524647397187 2.0915367865156305 2.649357125080479 0.5669890615994799 +2.7244484797561377 1.7759419224825108 2.324553610394574 3.8797427532379256 1.821614108204289 +2.083755265689605 4.73260203496474 4.814501307280028 2.0963400426662333 3.7953642601924504 +2.432095720285372 1.1764827584546982 1.0390729512361476 3.7203921279579215 2.960749303364459 +4.377403072891343 4.4058793815093935 4.450077923322327 2.284966258946446 2.1652989214815146 +1.3569020069659703 1.4626058914288893 1.4277830012548942 2.3564435596318036 0.9346570193795494 +1.6544497738260118 3.1060700190008235 1.2518711189862723 1.702895384283857 1.5200737561344209 +3.9396769620326886 4.547228060248859 3.066216922601017 4.258754752938558 1.3383814156397438 +2.843127726408373 1.7711527699529066 2.8439778101917152 4.798798817677445 2.229451833652215 +1.3785221260348308 1.6074634053452992 1.4946808028804792 1.8646676253281815 0.43509120671103146 +3.8457629296085987 4.768817915478618 1.7174050351371588 1.3610510085624448 0.9894537377742898 +2.0342886080576887 4.73148005594237 1.21093755821471 2.9009320825035383 3.182911120133342 +3.5024367470884474 2.515304310369636 3.873880517616162 3.108490379063284 1.2491006812168552 +1.2963983367551006 2.2494544026842904 3.2957880309548404 2.3097725067361936 1.3713287274773314 +3.813848769838664 1.9896032609512537 4.269748392784425 3.7832570655687645 1.8880003941079944 +2.71484705889272 2.107329265562159 3.926573429136577 1.8989780670644927 2.116653212387296 +3.8192514299081664 4.400363710366718 2.4553668538771163 2.764302429151471 0.6581281578612442 +1.8759891220820042 1.6816347551814168 2.658541678380706 3.8510208886976196 1.208213676040533 +2.697864398141736 4.271038437083908 3.4935867225619677 2.0503616112250667 2.134894676276803 +2.5454921492730467 3.107332290174422 3.58751010201548 2.050508239090988 1.6364715306296764 +2.7983935720474356 4.164993845834095 3.3538737853686156 3.0248511095844037 1.4056501092000013 +4.735513307907706 1.3432181869355517 4.3859173312192725 3.216448009969595 3.588220266527079 +4.393923734924594 2.0280205960744526 4.6863629740985004 3.923439107460837 2.4858701673068757 +4.073888163757315 3.476926973547019 4.415422801964013 3.609154166417697 1.0032107332375442 +1.350628728473775 4.121170698370436 4.135704839079505 4.837301234651809 2.857995855357198 +4.366556434187194 3.1287196668661847 2.2930775107147134 4.374882988965975 2.4220144326177517 +4.871151348864866 4.986485239652188 3.659831970149701 3.834990555722061 0.20971990001869556 +3.4704639481175477 4.405209561136998 2.1800992240825865 1.5407818280037087 1.1324646104793674 +1.7314178657810726 3.2977039817480702 1.5594505984535556 1.851161197405509 1.5932191533533264 +2.2406860644634086 4.891769082357357 2.2597666244338708 1.1811383293561795 2.8621111380776068 +2.381355077245112 2.5768163189352453 2.9248814683370226 2.7160173478800833 0.2860582420020431 +3.292368552456269 3.936165288641246 3.9039067665788227 3.82840834706452 0.6482084918231067 +1.3822465207907864 1.486533964810214 3.002882441077424 1.3801671173229817 1.6260630039846518 +2.6603318289751625 2.915871384720963 1.239270809592842 3.465831171257818 2.241176367153739 +2.6140188482411664 4.4299767396927034 2.4856904083260076 2.2707313517702823 1.8286362294126297 +3.973139229801946 4.825719841785308 4.429034805320396 2.880324582366745 1.7678792534025256 +1.038885086553114 2.4910322440903623 1.350431926956897 1.6077268139298377 1.4747650748529162 +4.059262316233639 4.39524894539856 3.0397024048498595 1.5327532125241397 1.5439504147571403 +4.766516626069603 4.133565683046956 1.8335087528474179 4.764333781222618 2.9983932769441286 +3.1700658489490037 1.5711181292160226 2.3882696084759307 3.97838582044924 2.2550173786513588 +4.20039295134962 4.591672274064534 1.234055263681567 3.0773554245522385 1.8843712456546575 +3.943378036889533 1.995928803030401 1.836288622450268 2.0299591870409195 1.9570556471514502 +2.8582391729572443 4.646518862621545 4.13770714926175 3.3543925313682754 1.9523129972090667 +1.200395040307789 4.233905666653898 1.4835665979684007 4.0353098058533075 3.9640358372675593 +2.636085070364976 3.55341876830051 3.0971066891697903 4.411126273443662 1.6025444085027285 +4.679008739804699 3.3489859252702447 2.6778290717543727 4.650996603011395 2.379569455508513 +3.903099351125133 1.652286836778924 4.977046612066998 3.543889070074334 2.668351085391118 +2.7724707216486633 3.4261447234192954 1.3218319104694913 2.079580851615043 1.0007363081241916 +4.58474452914969 1.739312716938092 4.813236238844004 1.943154128727015 4.041516239823783 +1.8459565084720984 1.494986793759134 2.735082742998043 2.409588476319443 0.47867134684075174 +4.419919447001569 4.8244279750778025 1.2134849377970696 1.6825435289231505 0.6193893050381035 +3.6311281259480324 2.6309622840094127 3.0814478906360394 3.2065551171748554 1.0079600832934916 +4.34823934052949 4.386494250842928 3.0984826580688734 1.3718653462230144 1.7270410474939237 +2.1502465188322146 4.766705364989706 3.5946517809930065 1.4403079625942126 3.3892556972746815 +2.1040172263690167 1.039728799530089 4.080045341538078 2.1734950652662777 2.183493487843588 +3.498043872508883 4.564402051592909 3.9758028895369297 4.834530862292219 1.3691360404619435 +1.9826141097294006 3.4009402369247197 1.4302391702564785 4.378220276291548 3.2714280680804557 +2.642884658481018 4.27049628152733 2.593181614238241 3.4788885213014056 1.8529965787056506 +4.378954003145576 4.274885962126774 1.57054816447625 1.3458342299184616 0.24764189779989365 +4.574254100743609 4.998994619172851 2.0294040521524357 2.9986078716965543 1.0581873897445813 +2.1081783488064154 3.8368176182692406 1.9471647458675956 1.3451843813208466 1.8304573426411244 +4.702744914309812 4.589741680178566 3.810076736053858 1.8782005212617086 1.9351784000974597 +4.912270547367397 2.249693513320943 1.5432404399263415 3.1845962371415517 3.1278371625267822 +3.1630460728676546 2.0443207173410745 1.733774689934025 4.938079974837016 3.393982731239997 +2.1257390250452373 3.1808451142551086 4.139429011702198 3.3590641251309274 1.312333119174069 +2.6188095536170217 3.7572407023417767 1.8238655600637865 4.939857279528391 3.3174432739926005 +4.690494470318793 1.6769338396492581 1.6376168568394935 1.8267402071444487 3.019489247596675 +4.612993639182518 1.881037204637094 2.477330969773769 3.806962937704693 3.03833953507471 +3.2619059667778396 1.4595979378444186 4.254505713162799 3.7567231206272234 1.8697865494727766 +1.4528443272530116 4.910726646370337 4.770122455565714 2.1320748858987786 4.349280988012827 +4.866797310219855 3.3742814336876785 3.052950568132109 3.129442822225708 1.494474725994699 +4.0117513194115615 1.9051052203312602 2.3821951744102576 4.934381115135254 3.3093218131219255 +3.4057152860148663 3.941515103113366 1.0101954722064903 4.979014764202251 4.004823094285254 +4.522815262984206 4.101803683330896 3.6561139000894514 1.7388041292078111 1.9629894313827527 +3.8261909184374554 2.831168684101486 2.9103495974689384 3.9743143705894335 1.4567396079136077 +4.558577301610009 2.5466872422286904 3.014012975339325 2.1806933685717818 2.1776416551077857 +1.4952308263304737 2.3858577762013993 3.5055432303167433 4.725776729005277 1.5106906219203349 +1.9633558233622739 1.3088930932212794 3.558349096847298 4.860404293945698 1.4572814420813014 +3.7467318863771717 2.167361947269075 2.6255860330488683 1.58778776605309 1.889823972632836 +3.9262814434868103 3.181360265924383 3.7451290230787317 1.3415931920111488 2.5163251085673983 +3.2609228756065463 2.569410688310474 1.1062383987103503 4.82034786510698 3.777935710617116 +4.583710802421817 1.4018859349847923 4.109677290192229 1.5343229021357683 4.093465489181789 +2.0915330090324584 2.6361069606069942 1.359337822549234 1.3220642443184913 0.5458480634458899 +1.1056217035724112 1.3093388490724363 3.516915778061672 4.371692640381445 0.8787173377872516 +4.537947819579674 4.519632914617533 3.92948115893061 1.0665034246131655 2.863036315337481 +2.703150964512057 4.202280194156298 2.4960873110422632 1.5270593965613566 1.7850500122453017 +3.316948444463445 2.9764731944242913 1.557323741751027 4.882581734912172 3.3426432829381163 +4.272585357267202 2.0482831654922045 4.156430354612802 3.0334147252090022 2.4917231676533147 +3.795738741502021 1.1257751932051479 4.99651473386322 2.844772955100549 3.429095803809916 +2.258899750195342 2.799704042423785 2.4654133444885358 3.7690913910456345 1.4113985020424389 +1.1561760068928741 3.1796436089065376 1.0915670669783069 4.618219385958368 4.06591904928841 +2.162730407037665 1.6543593298472592 1.1387769791792959 4.585643142058011 3.4841537705620818 +4.74628819488227 1.3642774217614182 1.4139255561115291 2.041194197797576 3.439689349105259 +4.76252063151583 3.2383810160628137 2.415526599425271 4.451372450010505 2.5431613976974377 +4.919140469322564 2.7101610201327135 3.803609161197285 1.3343813821983996 3.3131067039144493 +4.776657415950824 1.306161133719665 3.0193260899011114 1.3717860171403498 3.8417096111409608 +3.6568542375647826 1.2831405238788598 1.8847050137462857 1.2394415867606452 2.459853996631887 +4.473371087849279 3.913148854361572 1.983802367468356 1.2826790705459126 0.8974535243573074 +3.74257142950263 3.768522232730103 1.526399157993322 2.439412121427997 0.9133816921681307 +1.2669584509497693 2.0205418801457475 1.9452937602565687 3.9324178395265266 2.1252176573643573 +4.8336479981900276 2.1938854148260307 4.178183466166784 4.63603662581643 2.6791745020303783 +4.330033352922468 1.6216104960117605 4.788762641277958 2.5733051787852377 3.499115050973752 +2.7776172126755756 1.0395818744906884 1.9897225495751631 4.530641381384916 3.078479388695804 +3.8154517878896383 3.969411736375524 4.656385333055859 1.5287763650572925 3.1313960979797546 +3.951541333964247 1.7521124364789933 4.234874024992083 2.438587553770768 2.839741636449683 +1.9853910546364117 4.77906545037956 3.2643306653806308 3.033379085003627 2.8032044630938864 +3.3656580643176786 4.673009086200734 3.24723717617299 4.022421598238534 1.5198939379548035 +1.5622860862500567 3.0648886247115854 4.501841349371396 3.2488074038077306 1.9565041419138054 +1.4940137903392001 1.767003663468329 3.3028815508394516 2.8943842934039186 0.49131810486019145 +1.0865112583908147 2.261501992631635 1.497085636552217 1.56118184937006 1.176737672571662 +2.765585906213849 4.277997615200398 4.583785753446932 4.955375249723653 1.5573913866535931 +2.6533946301043954 3.6441684716031157 1.5360952009250175 3.6574128011783205 2.3412862204657 +1.5809492746680887 4.1103468118193085 1.3517424460828011 2.1239401904753166 2.6446438810152766 +2.9918543461036182 1.0665301455200753 1.07786753335678 3.7473632929908214 3.2913645936080655 +1.432646043621899 2.5741983470947116 3.3068552833705076 4.195333655367298 1.4465598774576016 +2.266890899149765 3.4472148166307033 3.5324994356473196 4.191413442848834 1.3517885260142972 +2.788686207784603 2.3033047409068392 4.8374280641117196 1.7332928446246503 3.1418546480142022 +4.579169761704858 4.451804732089403 1.4092180395197653 4.444156191378749 3.0376094937266322 +2.743747073521017 4.970308128859843 4.727067798888918 1.873328972773849 3.6195855316359298 +1.6909947528885123 1.2058680117333807 2.6101453199211426 1.1691583466191888 1.5204576324941528 +3.7888783241157653 3.1324981252886714 3.8477616994529025 4.731991935189085 1.1012257149205882 +3.5869826235416506 2.0896699799780234 3.9857243958605766 3.0736764447159635 1.753218930357126 +1.7911213060365991 1.623494224106027 1.8415863319862438 3.8386928295354683 2.0041290380486707 +3.9622269842774025 3.113462735097232 3.2598070918337263 2.851010677422901 0.9420802827368406 +2.5681137314755347 4.088359728215748 3.6756160847012005 4.826223425226359 1.906579435186224 +4.698100967874575 2.2908016112194107 4.8936113844382625 4.34773281130288 2.46841520193842 +3.516450056494872 4.426877071683601 3.065149381184905 4.969270578631113 2.1105816460278044 +1.1809195463704745 2.2689776820641994 1.382975327785131 3.46132228719466 2.3459319236363485 +2.6142288377887097 2.184456049492397 4.88549659284139 3.8799467558377767 1.0935424656857093 +3.20254144329391 3.2235436478327624 2.4548457059486797 2.028427124205389 0.42693547457602 +1.5396623232166964 2.032147393002471 2.7818615579421704 2.912927960862963 0.5096272617673577 +2.34565715223571 3.51023868228108 2.1085566227528045 4.8815978335383665 3.007658174865932 +1.998617736688566 3.384929584753885 1.2991548111597582 3.9821232095791728 3.019963570476227 +3.5934766779440652 4.364901211870746 1.1089954262054782 1.9825373787879816 1.16540608993846 +4.622682891430741 2.495894603474539 2.2797837972443324 1.3752701876364286 2.3111411232881456 +2.9926664622548578 1.820189331770826 4.839902706729577 2.9889574249352444 2.191050217978759 +3.080377065435367 2.77771196662559 3.562160324616271 1.250241546925619 2.331646327528292 +3.13260677326274 1.1465847773039224 3.720458828966204 3.188249657788433 2.0560958076699576 +2.5718865282129313 4.652717717474024 2.4636210279904662 1.7730108148213084 2.1924417676953896 +1.2891923109027363 2.265208735608457 4.065994844487668 3.8009746471128047 1.011357388024604 +3.8359093338727472 2.2590703084228214 2.6064245184435193 2.140205401795321 1.644317967094594 +3.747870183058342 1.5338097953026608 1.6485967303236158 1.6424395510596304 2.21406894912632 +2.4361626587977767 1.2997165749323418 3.6926617313946677 4.554824351311722 1.4264761073061554 +4.815713077857889 3.028233840375823 1.2141894495151035 1.5382732801901815 1.8166211365429228 +1.95906671772524 1.4178588766372329 4.509530108238558 3.192422138786634 1.423966056635099 +2.670176191311477 2.6361292860200374 4.037500337197004 3.7048190019299057 0.33441899257521823 +2.0470000095591865 3.8177571808428863 2.6554819571013635 3.5373073626764726 1.9781802257555696 +1.8762438662774232 2.2304693675642473 2.242150950166776 3.1141739169792557 0.941222481887434 +3.364937023193357 1.5755484819347316 3.346851886320959 2.8292683005759525 1.8627410232827133 +2.553546196001198 3.9687311856104994 2.035729474432082 3.7499124124506076 2.222874647794901 +1.5335187651749922 1.6126784186822607 4.297266845222763 3.277917251568129 1.022418625039303 +2.1481432244707603 3.1639148708379405 2.9276395381343248 4.965469732022741 2.276959362107016 +4.069852376332809 1.5599032443146021 2.712155781459103 3.542839863349193 2.6438382494442685 +1.4312945684357001 2.404614599720024 2.4879440236619086 2.310018339454218 0.9894490549796345 +3.3249329356030475 2.1235175060173455 4.452870842179191 3.4383876653689156 1.5724424156317032 +4.731203579139393 4.3768525386495565 2.6495923264405388 3.7215244382903463 1.1289832205622092 +3.6864748875810354 1.9511885981329185 3.804300485316 2.4204452457056345 2.219521081346982 +3.6244814960812417 1.3572828966198256 2.644682698601652 3.3590320075314235 2.377074762090635 +2.1562285157172143 3.346919095521931 1.7279658470945232 1.935930270880176 1.2087155407275076 +1.1776661891774673 4.534344078505306 3.9917729733967713 2.6556554315306373 3.6128239008267196 +1.7663160599582475 3.3721486622399315 2.234335900640039 4.177784784256673 2.5210497634480573 +1.928469596440542 3.7309744872977006 3.1826189178234987 3.5580101870242022 1.841179645378498 +2.643914227362725 4.626551948075502 2.8576431692217983 1.3151751296683019 2.511983277141223 +3.8685240322121777 4.552971820298813 1.0930378451538667 1.002605239447754 0.6903961404813074 +2.9590428954177206 3.920364099069893 2.7328772098051544 2.421036785125102 1.010634902947596 +4.280525187438437 3.238642285665003 2.1160214070344683 1.4253381349729701 1.2500253450684147 +1.0330649358468196 4.864699075977065 1.6434547521481093 3.1400103138888347 4.113526313661886 +3.495326347051866 4.846419581980948 3.007762466533564 3.4712581854879834 1.4283841258429772 +2.1364842389222085 1.5896746897058578 1.31337241577647 2.100293250292728 0.9582510542180233 +1.1257993742751973 2.4694170263753197 2.6635307800264583 4.233516861065718 2.0664376810569585 +3.065617226140191 1.3996025551667053 3.358866688672207 1.8086492793224407 2.275693059300835 +4.790599966988193 4.942532556704618 2.7488538548959665 1.0931126604412298 1.662697331095572 +4.898521890877358 3.155029542759823 2.557747179584903 2.622196067791902 1.7446831308680422 +2.4658570884042152 4.447010521024097 1.3651583706661232 4.061992695611698 3.34632399802921 +3.299860700820907 3.051612673179912 3.6884846283208312 2.0456812204335186 1.6614542185067311 +4.56054302596398 2.4302104571978003 4.4489906484679596 3.92973800509545 2.1927015668337657 +1.6715259111905527 2.7896786352424985 2.041546460932932 4.046194866997368 2.2954042664074383 +3.7819444530707895 1.7439983693784775 3.6728875989656986 1.9912955452559826 2.6421536812109347 +4.427529421599887 3.715974349624344 4.178928162034474 3.0473059744372706 1.336742082795481 +3.1345401942813167 4.650744013685589 1.2133187032067254 2.7771546739882025 2.1781774412306607 +1.1374564755477254 1.6130153123779496 2.4071738007393733 2.14015097353523 0.5453965507182911 +2.5724701383390873 2.741006031963722 2.5397599982016463 3.434220849474085 0.910200286694566 +2.77087884460233 1.2222907173564508 3.90349052529333 2.789180227750405 1.9078292971482278 +1.6542252779822553 1.722899037551394 3.3944333543100615 1.704226561366215 1.6916013384266644 +1.9031610958438439 2.4602837976621026 3.529293514502604 4.154799436556017 0.8376415482801497 +1.7265809310467897 4.852584908629618 2.967256275588189 3.6945763649096226 3.2095007992200597 +4.959066623471541 4.824978032636622 1.5640567593467476 4.238398177956251 2.6777008371889464 +4.3018540291859715 4.116916383743282 1.161250159025438 1.1272320600315746 0.18804032482699587 +1.9055147547040874 2.4990063724873535 2.6240213277055546 1.8834445462081653 0.9490449250019887 +3.712841225507825 3.714937897652311 2.3129205729435878 2.468774347044713 0.15586787653537243 +2.2213310616830872 3.939746320939332 2.4491483402231187 1.2281539423214491 2.1080271162753026 +1.34434014079726 4.146143515045806 2.846303429058806 4.340517904939839 3.1753392020196785 +3.3030830662688593 2.673978260756533 1.4393626079690414 2.8547559429563107 1.5489064365045058 +2.643677616072085 1.8343759057104432 2.7099423649559924 4.7768799738735055 2.2197297893103847 +3.6302788679436313 2.084948144560561 4.789008972132786 4.976348829442525 1.5566448749693929 +1.1835823781589574 1.232136803851672 1.929597748202851 3.3009519995461556 1.37221354567418 +1.3787920182083262 4.8267884862024175 3.9137221889750244 4.339486799921511 3.4741840980630463 +2.922688096823646 2.8558297236696686 2.4702679471364357 3.9750793048374713 1.5062958754264817 +3.2027530683294283 1.2973201390612221 1.5514353743425984 1.8514494523633487 1.928907228186534 +4.961021085944461 2.4747200486574594 2.7403226439787844 2.655662185787479 2.4877419965092002 +1.204750966208389 3.033285590794468 2.8254054854011583 3.7532517636636147 2.050472528320154 +4.877294194524792 1.3249560098842048 1.7639179232826958 4.10447466054802 4.254093607152255 +2.527156867191359 2.9095550607589957 1.5838458186012287 2.8438694147226924 1.3167717498589713 +1.7950127943437044 2.9451798609402315 1.8102342071145716 3.2637864701780765 1.8535637195792047 +4.846673408408271 3.183392621030708 2.973046889763864 3.3800313291478727 1.7123490624169013 +2.045921508702507 3.24502779357072 2.3477524892623034 4.350906869577679 2.3346270266976537 +1.5597209614251324 4.629711367180548 4.298000949113481 4.9396346748844255 3.1363250675714407 +4.103713313585088 4.675823461201803 3.966192608601503 3.1009154454703243 1.0373112310403085 +1.650051147081752 2.5352849828437005 4.973346790379862 1.8972447554565792 3.2009440284448862 +1.23938518471929 3.250625793525678 2.0154082999305793 1.5815812123768938 2.0574972000970506 +4.358123388201137 1.8806941005358224 3.9206934748153306 2.604125467943217 2.8055315346830585 +2.9942345525469785 4.302469215402141 1.8234598626139529 3.8878254912924994 2.4439892352392083 +2.1383289587968775 1.2213591061466498 3.675705839357261 1.9985943452951647 1.911422683287131 +1.6291169599943482 2.0949846952349485 1.2013838760179611 1.2270049752358791 0.46657173881766606 +4.487041076215344 3.3743915237975535 1.0222393072675948 4.808886178489864 3.9467307425048532 +3.887093885302963 1.9141568929854618 4.448194976869742 1.1379938675399064 3.853558324440322 +1.5698770044772048 1.903511223164363 4.785774538602272 3.3389489901254645 1.4847949217330336 +2.1858317701693495 2.2606376404249695 2.296367368542864 3.457662635658695 1.1637021163727126 +3.7825923525510805 3.873656971096657 1.3513081101580329 2.6333831619797263 1.2853051012325631 +4.126428071324078 2.2870901662276677 1.3230372434746474 2.7445079799268277 2.324595230080789 +1.5172093635416037 3.646347815097931 3.0670870346230465 2.1999111377782565 2.298961631250996 +4.949662875104348 2.7661821989491515 2.543706246000473 2.6923152177608007 2.1885320398913093 +1.289208555098023 3.562295396537029 2.0854271546659118 1.025547284571747 2.5080408943543926 +3.581812001294066 3.7250399606180125 2.008362752826246 1.5453845104756527 0.4846267648635875 +3.788695066767477 3.198712149481022 4.827450975049569 2.614129493832198 2.290605121339794 +1.547829163030793 2.2451865994749167 2.4796447987940144 2.8317198626921525 0.7811941146621614 +1.0708302471999458 3.536828116265426 1.310795929829279 4.362423131878486 3.9234645494157534 +2.716185295728244 3.856036602585222 3.497599213824092 1.044171972999028 2.705284869984314 +1.6837057929297474 4.762349460219843 4.87258779529078 4.394722646609555 3.1155098989522627 +1.4638411520161005 2.0698885179349786 3.3197419521117597 3.7402681047407653 0.7376555122698971 +4.196500788495275 3.685952839552188 2.4730740123327517 3.4978449451518183 1.1449081504299166 +1.893112106752553 1.5836690324654819 2.005308057615593 1.5111879234827619 0.5830177726104762 +4.926822901043758 4.642792946429883 1.679342878011222 3.045648286893653 1.3955154909420917 +1.1157701501770583 2.0956146711871786 1.1220459598548942 2.0176042996522225 1.3274486902830178 +3.9923907933096654 3.7164973928310436 2.552627599347745 3.34105983481725 0.8353098576906046 +1.837924289033475 2.4114963995107 2.0268684657969964 4.638952826449776 2.674316674046688 +3.8717914514827854 3.7262424079302265 2.6994704750322 1.8335821453996894 0.8780359465721458 +1.3732630820334055 1.2036921715693838 4.141905824871031 2.5746808104522136 1.5763719546781023 +4.109354565739073 2.0417233377995294 1.3865768570190942 1.424339087704483 2.0679760348749503 +2.657865914802558 2.058408238394226 1.3354447833539584 3.2390123352616014 1.9957251640645646 +1.8724090892064207 2.9620823223933384 2.2508111513651348 2.3064025874565126 1.0910903550534816 +4.425734213827983 2.4572752339904365 3.2943410112567926 1.6988532181633347 2.533853202775036 +2.527519836900119 3.0393017940121414 2.170597313159633 3.596880122242782 1.5153228775120937 +1.0645748403700166 3.436436203417069 2.547937732777949 1.1280029685536586 2.764406095378918 +2.9992246465099504 3.229369437050721 3.503028201989544 2.7647669795678635 0.7733021771239293 +2.3785931425390925 1.2054459302539788 2.8803237415144833 1.4471828858192044 1.8520710283235169 +3.3713122716924286 3.858194596083187 4.01138059872568 4.751798417373328 0.8861562751428719 +1.2916631729526737 2.156967297881749 4.154621559237724 1.1480398423052187 3.1286234751423967 +3.565610846752726 2.757820043124872 4.0584231221499945 3.725082097634037 0.8738662489483633 +2.835795942551685 1.2128879476907386 3.9677086051883825 3.4009518209169034 1.7190240290063796 +1.5757975067036871 1.5814838583442614 1.1039589364861038 2.4507336663791066 1.3467867342951336 +2.028002667897798 4.4616418368717605 2.9775401633998033 3.5580383869426635 2.501914825149069 +2.9352185432489715 2.0348608016442307 4.321706245894477 2.9639318838210222 1.6291701203899998 +1.7810706423133458 4.173971889790268 1.6946455417851487 2.2438067467757135 2.4551078202888155 +4.395733098444623 3.733462297048527 2.9560474786518314 3.145055913757863 0.6887138759478121 +3.465137696731697 2.7711219886562914 3.0790728061427934 2.871341502495376 0.7244377803306936 +1.7992642487791084 4.726311395688233 1.2811358507293447 3.7639617286343654 3.83823258026708 +3.9876247897162935 2.068197347888793 1.8254226323118106 4.4369908692527495 3.2410631528310687 +1.4874523187225215 1.393131024353139 2.0586147526083525 1.1774566904448136 0.8861918737425427 +1.957429774958173 3.9594808556431205 2.4189399448436806 4.3525308299681775 2.78334012307305 +2.750663464927111 4.677049520815554 1.6849616285487965 1.543662986366888 1.931561167191938 +4.0667924063187355 1.6501756348085417 4.181697913040605 1.4345628464654432 3.6587959350517583 +2.255493521797424 2.4486979067467995 4.672972595336383 3.027184313541672 1.6570899199670655 +1.1053969054193886 3.1233450696159 1.8239013187339927 4.977831376993316 3.7442475353234497 +1.3894826090135313 3.561962893571287 1.453991419375507 3.823783222284616 3.2149002746473108 +2.413446587359515 3.8093527863056043 4.2970144476666094 3.55675012702293 1.580046005872667 +4.391590191703333 3.0774575934622916 3.7980230770791796 4.947188388601434 1.7457162996792437 +2.188627236845752 2.6038596928530784 3.118788942638125 2.5676115203776675 0.6900829974224539 +2.6749660969035984 3.8850940733992205 2.2850274055475768 3.2072209193366183 1.5214633075996173 +4.627358186521217 3.6014365437006335 2.463744166397068 2.51461405888055 1.0271820496722899 +2.518777939938613 2.5440971229504914 1.263599508730902 1.58821128427939 0.32559770554033546 +1.1202603473679922 1.7387067298236656 2.146442224284744 3.90298252172777 1.862232462533543 +2.4704017414026 4.127227211161223 3.9672296590769363 1.7651824371946825 2.755736308981727 +3.255480945875398 3.1110226851985336 2.5742485607820087 4.489441554413425 1.9206333309438974 +3.534020293732943 1.2367148722050398 3.8368538594174 2.6307724330306197 2.594656934328056 +2.559354476120904 2.3485687135858635 1.479448296103926 2.868225581405233 1.4046825213749714 +4.335918856243586 3.770803824119273 3.091471989975211 1.0783944948411754 2.090893589102034 +1.7867568495702821 1.8241185932356467 2.675121801179109 2.182789270579488 0.493748134757331 +1.9327447165955012 1.6482711300153943 2.209270176450345 2.550867079717596 0.44453758646882163 +3.5929949025931145 2.6769036064018095 4.970977968762417 1.5715612312321183 3.5206899065891344 +3.957219064585708 4.656213918734196 1.7080343037398564 1.8021464891447256 0.7053019988400338 +4.133400573665499 3.4481244484385583 3.129022481149568 4.6745748531596 1.6906612618830197 +1.4789540853999528 4.517920281770765 4.108472358700306 2.770353513105269 3.32052369177229 +2.4159579158323674 3.7759535521495042 2.597416678558375 1.3546613370397913 1.8422890570360089 +1.8722148778319818 2.57040561978965 1.352332326012009 4.722837736371995 3.442059998521428 +2.450670533987927 1.5404397524253146 4.387052682950051 2.218523579355482 2.3518160108394426 +3.7294390382815483 2.450521554481186 4.812165258630531 1.188463726786226 3.8427649840005844 +4.025281310565498 4.261163111804668 3.843293429036159 2.229669991283539 1.6307730752684195 +1.0488297891004321 4.80623980268431 3.534596006902441 4.857957990573137 3.983643677590308 +2.9290166834839058 3.770261753676019 4.333499028764478 3.5397382147934624 1.156611212948613 +3.5195541225325973 1.3696524659862477 2.837514713152767 2.4007813866208254 2.193812464939607 +1.9755197247356473 4.204764264867325 2.874319241974554 4.584415023951138 2.809618978303108 +3.5149893937990595 1.6200925365043495 2.7611341797373474 4.392794463761007 2.5005898068746775 +1.1572011439645928 2.171504364785633 2.919407264538404 3.37589047281024 1.1122895051208943 +4.0936389969104825 2.847344143092107 2.395324941861255 3.108347690309056 1.4358455009012012 +3.573464769227278 3.7363838104571165 2.723691077405384 3.3119131605189556 0.6103669658965166 +3.5143437448326016 1.8853495228479762 4.753724529273876 2.625585666003716 2.6800367901616773 +3.946153396223227 2.7759916125722355 3.667800033576935 3.9572893209707027 1.205438777969674 +2.9500825951951057 2.479147393751052 1.7675722261915632 2.4764823597676338 0.8510778703773196 +2.668213608889079 4.310398467127761 4.674261023950551 1.005107651091604 4.019882782145593 +3.3144913715826507 1.1174208374914536 3.1270853841379873 4.233564692208485 2.4599624775512217 +4.307475270563314 3.492626407835249 2.925695213294529 2.958611515414131 0.8155134284819899 +3.8404448255795907 3.7759588336116536 2.823295306179548 3.144675610057644 0.32778612368565296 +2.4546239043643134 1.0856853435892813 4.8789780397941085 4.040836760664685 1.6051397406324233 +4.117495087910927 1.2912026496776314 2.5764969196208725 3.35265208009403 2.930929166585883 +4.57252879024278 1.3865752120523003 2.5220124829617685 1.8792671113722013 3.2501418146112533 +1.5792571732205145 2.8181160382275654 3.5875871907072194 1.7329974858986135 2.2303081088918253 +4.20386416619324 4.152405769227707 4.222521989276153 4.5422913625898556 0.3238833412321486 +3.1060467574776016 3.9330247513204193 2.1588603123027266 4.388890883112435 2.3784299336003496 +2.6864879210618358 1.5708215108180688 2.3352038169805533 1.1116292223449133 1.6558521454477704 +4.194590466859748 4.1472908779071105 4.479986765948383 3.395908260706585 1.0851098822895218 +3.407249492179601 1.2298586328169572 3.9679006906875327 4.1175280683551385 2.1825259005527693 +3.36663885813923 3.981968648841004 1.508017204145621 3.376182333719659 1.9668939225798303 +2.600768052531021 2.996206716794772 2.420898659264953 4.792951511629916 2.404788238412575 +3.014749811079226 1.7415196733856027 4.4484929536354105 4.5244542890331765 1.2754940642773431 +3.017724579594972 4.217102383361874 4.809233039793301 1.1736878659626124 3.828275829552036 +4.343433374494454 4.569161176746776 4.979289081043611 2.4052734998042307 2.583894203169465 +3.402179946886036 4.371491698712688 3.973589465630026 4.830143811833668 1.293541889630793 +4.382478100061233 2.923211145983942 4.087832341908743 1.6559605990975057 2.836099472293907 +4.983996375454058 1.630979025504614 2.6751651283118627 4.346259118985751 3.7463689720485855 +4.136417318858143 4.185901442561624 3.9063579019433448 1.802991856642847 2.103948050456987 +2.761790202692003 1.2271115911853134 4.640161642911057 1.4131804141212174 3.5733242634244773 +3.4605502102262458 1.7294369039923638 3.548290232516063 2.7766421555845837 1.8953084270514 +2.386767599068524 3.8540965605625024 4.412991929469213 4.515541852265813 1.4709081439384941 +4.6864824865226975 1.937077591998282 4.595008361221717 2.695874175560815 3.3415472358146774 +2.461007590762319 2.6892364224118737 2.329979748822187 1.9436443344418781 0.44871310656200564 +4.559372362343133 2.555743080988137 2.6233854334458626 3.3883203537221283 2.1446807989444943 +2.345594114193823 1.6552091052906612 3.2397117637191526 3.980045196338371 1.0122870403062432 +1.9847012909007984 3.281491786653118 3.9058538460638124 3.6277882087196938 1.3262677288334879 +3.3265945553212535 2.1041367422013026 2.9581035241932185 3.972925593813341 1.5887941773074579 +4.277619814151288 3.7264185564716334 2.547636582019329 1.6154902419310253 1.0829218004120393 +4.851281958992833 3.9618871014187738 1.566659287972299 2.350878611856662 1.1857584748307004 +2.8271369050819284 3.9299526095234008 1.4465749127544703 2.104844076149008 1.2843367040768108 +3.5997088048308896 1.3643806266547984 1.1779081605447814 2.833621196456352 2.7817400528150635 +4.411826078075027 3.9730148405549843 1.5906669486164002 3.804677532971283 2.2570773513128257 +1.229130316279746 1.9972111926600986 1.5748107238602271 3.5617896185728295 2.130266030498192 +3.507733204344525 4.981886756698712 1.961481817705633 2.204007184530498 1.4939702973861309 +1.574449495286688 2.638755489184162 3.3075986664393824 2.5379394794810866 1.313439192621948 +4.827260001045052 2.5394079144641135 1.6322107402375012 3.4817336623815756 2.9419385122074035 +3.210062476289849 2.953447889929145 3.7028429567396737 2.9988982404520153 0.749259107066699 +3.260780373836401 4.248005149776855 2.133390249365887 2.280815692973164 0.9981718387399446 +3.8069860799570283 2.2917066310622882 3.829900882774394 1.2188091700591284 3.0189189688451536 +3.462608544143423 1.0490080733496363 1.5879087792428526 2.5927682267936043 2.6144234052555433 +1.7410874562050584 2.165885355134278 1.9641597757504865 2.316919372399747 0.5521707960068408 +1.7044437713770835 2.190513741081556 2.5015111060531194 2.669041876470753 0.5141308923661683 +4.777609336183133 1.629868060607575 4.330650243666076 2.9250180706178535 3.447328957884685 +2.620812478001462 2.9739146905556924 3.890178480598847 2.2803466172758817 1.6481018781254344 +4.617866075880783 4.405019401860935 3.2320824914860893 3.3119733586125477 0.227346117828145 +4.266883178269486 4.103286682059251 4.800705701781018 4.645610182880758 0.22542944252072866 +1.6572015599866283 1.3568473698011703 1.6613755864555162 3.709473893108713 2.070004665037655 +4.656751094887033 1.89909804374975 2.494880469256085 4.954120946082369 3.69493086177638 +2.3279106533093827 4.767140829579905 2.118791683271708 2.6789324660055622 2.502718831453189 +1.3831955764771493 4.788785835741798 2.1827295606770627 4.414371636191932 4.071642342741633 +1.9415320887345722 1.4206993339968985 2.433591870197669 1.9892630936980447 0.6846128979454643 +1.6059488267912103 4.416570690812019 2.305686704336429 2.1556367875666465 2.814624351496026 +2.0010010626852917 4.9597268935692185 1.34636375879704 1.3962354825019059 2.9591461152104466 +2.8087991343936123 4.673818296677258 4.1006849631949205 4.498218131774765 1.906916121859145 +2.2582065026540508 2.731316171194105 4.267188167029928 4.388872737295394 0.48850782297397377 +2.4730010377340315 4.329369762523943 3.10491437936702 2.735317284120848 1.892803966392857 +3.0646735499490934 1.883696558899696 4.94895947519435 1.8291084674839282 3.3358922290295623 +3.2970725246851633 4.889173781976297 4.92122409320249 2.1985975923613377 3.1539628210476014 +1.017301466896921 1.1480459987135117 4.6822234747795175 3.2371633924405545 1.4509627059884862 +1.2202466132679826 1.9169793778822775 1.9347131067924925 3.380611260431346 1.6050102853201047 +2.2748198387685674 1.3611595441162505 3.293309884732043 4.7469811955701635 1.716955274309141 +2.882957806319382 1.4537572480907275 4.783858044143454 4.184135203037318 1.5499295860733524 +2.5171781147370327 1.6525640151054963 4.778737872409581 4.417327958905842 0.9371097410978246 +2.3110713044384035 1.435895952659397 2.8504665157794067 1.6699729383518718 1.469522705748083 +2.1431675444529903 1.066258461113602 4.862462180284734 2.5383297088306005 2.5615083288262754 +1.3725374067889877 4.047020817512669 2.720496735632632 3.461790836727057 2.7753159204951006 +2.1535962849394563 1.0708920098575248 1.9102663324176175 4.090276420579553 2.434069130441553 +1.9856989387144197 3.1215793045627445 1.9781930095836717 2.7399403332990095 1.3676560937264908 +1.808901909424153 1.489311816315504 2.3338097573382317 4.049879199775189 1.7455750224149875 +3.1350452191419658 2.9292684192309144 2.7696428797813306 2.662352134925495 0.23206765244935124 +4.211005977144998 1.9442326598350537 2.0365256342815186 3.3714324928239505 2.630634446868655 +3.168642304770892 1.2013669888117646 3.6444916139500045 4.102681155766467 2.019928173230935 +4.851483404127837 3.297957591756384 2.352677785034896 2.7744069919670693 1.6097509042345721 +1.9471612610712916 2.2895292271655467 4.642869321027083 2.451901287787982 2.2175564811032733 +3.818498803979658 2.100801167374964 1.0608592839419786 2.3208967605763737 2.1303003575365906 +1.44503402753011 2.8352069375062734 3.0976240010973077 4.379164128676615 1.8907474231709487 +1.0180277552526182 3.703659098857692 4.218299123819694 4.393356400512975 2.6913306678810875 +2.7642979977584434 1.194978414817792 2.699052000468598 1.5894805775145069 1.9219554354972403 +1.8711613457784195 3.1474390071811658 1.1512452202881804 4.075682173419565 3.1908018054771192 +1.0689558159243444 3.1250188233505725 3.7985807780451686 2.3326315937560596 2.5251538767814705 +1.442125352572214 1.5995484444678492 1.8801836130390308 3.716052848606267 1.8426062737232307 +2.4769864437865063 2.170810717268171 1.5893222834706093 4.102656696592038 2.531914976394244 +4.685830260398754 3.7241701569318573 1.227993207908971 4.641085457845608 3.5459820728787528 +1.8512483283182233 1.8865462208799166 3.9518336827624383 3.0997621000401354 0.8528023940528 +1.904350901700536 1.80365044253027 4.9153223581639605 4.807017996855087 0.14788650092427474 +1.0527573887660444 1.3284855776586642 4.309074655295351 1.7439578936088367 2.579893415479623 +1.9027437472313364 3.3370522589638316 1.5403935848101162 2.0014634955041326 1.506594294883554 +3.753676247374918 1.497328422130928 4.955439323116398 1.9459287752518728 3.761417185874377 +3.0450946796328155 2.991382253817887 3.6369082582875603 4.41922011258092 0.7841535959586227 +4.440055588187487 4.99984488795428 1.2545362401383975 1.7232853960124168 0.7301300098379755 +4.4722007578889516 4.826351799330082 4.756002817251888 3.5714626825048215 1.2363487740036934 +3.766812239638519 4.612259475804144 3.047573531306139 1.5094362290978665 1.7551773100130474 +1.8291206143781618 2.455809556294053 4.878597638448218 4.318316148360901 0.8406273717017093 +3.979459412034242 3.6640068051903327 3.617189870545368 2.756896906926501 0.9163047148283979 +1.2971934338122244 3.767049564034555 1.1730627027201805 4.106086677947188 3.8344255036776063 +1.571844543971427 1.4420567724386442 3.9803486852755854 3.194654465384826 0.7963418065185293 +2.505872529923496 1.7145787768197138 1.602662586337813 4.73559252137021 3.2313148688302054 +3.499973015323654 4.269556577897903 2.062240819256269 3.9914626882897344 2.077054616456065 +4.538457684544467 3.2152405037685328 2.151981534624946 4.725095266912383 2.8934094053187147 +1.423970030126926 3.3448233597586485 4.481521303117368 4.094813204969538 1.959392933316436 +3.572916502071606 3.2988503754513143 3.0588172420419544 3.27763972674205 0.35070717353794345 +3.4252362775755336 3.4556866119302736 3.7753832621796337 2.8881417873814934 0.8877638523077488 +3.506036618267059 3.0255672670610423 4.907880638521364 2.030884006459843 2.916840828420651 +2.0477636588295396 4.932406635074983 3.140544768733121 3.328683021963185 2.890771714046377 +2.4555166029849813 1.5222811665376903 4.026198669768269 3.6245228881144427 1.01600778215926 +2.5780315527550752 3.223609230576502 1.1066016355725141 2.865986076443149 1.8740875510175565 +3.448645878859023 1.1555575209901137 1.8833102414898182 1.8908656670953303 2.293100804903703 +4.371096289286076 4.298886175038067 2.20446779903527 1.9579684519790264 0.2568583825746494 +4.086061240978841 2.270059883535665 2.494512961328774 3.6836200780393877 2.170676545514621 +4.476139792510414 4.0832440214324635 3.940389422029694 1.4489760200101256 2.5222029709548863 +2.1736301276125434 1.1143198571824966 2.80313573423613 4.223828575839894 1.7721473977135078 +2.344381902280522 3.0963680782459497 3.238746876529665 1.725944200045682 1.6893949055268902 +2.940786298515357 4.316445665650446 2.5715719822037593 1.0846503869814597 2.0256787812298724 +3.67276337078454 3.3911285637671624 3.9052878353700855 3.095143764375526 0.8577013351344122 +1.5007506482066981 3.3299690300561386 3.021870748273537 3.571341475101427 1.90996281852204 +2.2707698708506676 4.974620652968717 1.9714257258032823 2.744653329422464 2.812239317511767 +3.9520051687817745 1.1282451688947015 1.888239789709321 1.7236207104783343 2.8285543972512004 +3.706767445310474 2.4671837207765765 4.104544022876478 4.53887898314559 1.3134742737645455 +2.6443725754202494 3.2414499256737943 4.5010307616107035 3.757883506391261 0.9532938713355843 +4.061022535395479 4.408868417417837 1.6612555576055192 1.443932848784196 0.41015352907094393 +1.9958984520962169 2.2230932115250335 2.830703492135773 2.363623812395627 0.5194043568724425 +4.496584321499666 4.482651607734649 2.6626517507473104 2.9298993796698674 0.26761056720089843 +3.7995402590615965 2.1605962165526553 3.19392349734757 1.2699060265434872 2.5274455092909305 +1.469301201917978 4.6000741184356215 3.023594100628954 2.425351592255148 3.1874179446106177 +2.462714125337231 1.0494303726589531 3.6002508217935083 4.013782207751189 1.4725417388843263 +3.856315071685319 2.1323521664905454 1.7076001388187145 1.2473870171417523 1.7843329890609707 +3.207499684264715 3.2102895988191236 4.488940691608777 2.8464334440184342 1.6425096170220812 +2.996999897193893 4.02602321737768 4.611801753569378 1.972420197338673 2.832882629558253 +2.7384909133114474 4.538592133540016 1.9994378695466573 4.487078466268732 3.070622109854637 +4.015878334563887 3.1203335209855694 2.0183178333354475 2.4151435541495956 0.979525990378352 +4.4742540315089965 3.056760141789254 2.1788257585121733 3.948935573834299 2.2677252227050206 +1.7723392933970779 3.533393320913219 4.5216512717532265 3.618498930017276 1.9791400759455993 +3.3925124794890276 2.077088726029633 2.196491939275356 3.139734965245947 1.6186559415784931 +2.3063752581478343 3.719452675549479 3.3421248650003204 2.727474155804432 1.5409682936016271 +4.269325422814456 3.1857225583603648 2.571074772221583 4.16533417942294 1.9276561480988081 +2.7027812001835554 2.9983572414943502 3.3093936158698334 1.4153248211408322 1.9169929043590985 +1.9730145242812527 3.070856032360867 1.2869629473612076 3.5280391168982974 2.4955316817322832 +3.9017942465876847 2.3905396612893983 4.977343272603889 3.1067826845959985 2.4047634675771175 +1.7456409159240875 2.606776053393758 4.7491617856211645 3.3940120601871433 1.6056103211329988 +4.97469058942466 2.909641808313647 1.5979874406740318 1.8302625928950205 2.078070791553398 +2.3036376762459976 1.7497902863507675 4.23425996646348 2.2433526367491616 2.066508874116914 +1.9332375480763955 1.307754810004293 2.3133398421745794 2.5633352852440416 0.6735921445367894 +1.5105500056179335 1.597325294090013 1.9169014917072555 1.2946382697256467 0.6282845439133018 +1.385011424670219 4.695069520591474 1.157966771564285 2.680251437655029 3.6433274904939377 +4.830184329924505 1.7964978317286038 4.694476857353863 2.709091515255877 3.6256046014359655 +4.103298351335925 4.923967809921985 2.210217177648017 3.6284418457034047 1.6385541093710487 +4.8909030596176395 3.9596581899481844 1.3483398533479725 4.528552964123746 3.3137550357918433 +1.685660139410226 2.970586571824169 4.551719501050956 3.3127345316099097 1.7849705014976724 +4.800600845929789 1.9486921727740913 2.078222828034248 1.83653781958547 2.862131150616543 +4.93391885288764 3.626862184836388 3.767425684400919 1.5178224758336731 2.6017516656078628 +1.2363425073360714 4.631860887086968 3.0777633603646644 4.88042007369148 3.8443616236416145 +2.182456776019868 3.448822091272898 4.390280760795364 3.98250345571216 1.3303997302378059 +3.408158927795743 3.6905161207053623 2.473071230280541 1.3242059629506073 1.183054092958086 +4.786069967086796 2.358975756993161 4.883065895969275 3.1271897683201826 2.9956447186403827 +4.776893731894439 1.5946393865578914 2.978736378113639 1.8025027350618719 3.392678632210863 +4.756274121673924 2.1989177765719266 2.8962722101520675 2.774688470067055 2.5602449261128326 +3.964970077596571 2.974091914054677 1.9890795994957968 4.5757771769515205 2.769989872219656 +3.529264988909768 3.5080048098125207 4.560598865187808 4.537077331702992 0.0317057999855601 +2.066882710642181 2.4861610570232693 1.6081608788737807 3.8492768846311876 2.279998965571277 +1.977543997447146 1.033675491354959 4.546599581430748 1.1948556003325272 3.482107906372352 +1.863270277593772 2.3992072773537423 4.764813970352955 4.3439993106940555 0.6814054927101436 +2.155878416865794 3.9442197800806937 4.779413215846763 3.8544889157912507 2.013367773711128 +3.6901398024345506 4.673787848231587 3.03511571037423 4.098944362919868 1.4488943646716956 +2.106492150960712 1.451686094503795 1.6521936934641608 1.431115036542106 0.6911199202158183 +3.9312449413253705 4.938731099717884 2.802073540319129 4.811688265918802 2.248016838170825 +1.5381908958536377 3.2630376225330116 3.3498650122272324 4.792885980134154 2.2488676582572795 +2.3774464643401267 3.7220064036684186 1.830343894187406 1.1281171037381812 1.516892842514302 +2.3831571047090288 1.9447848566555077 2.576136751686953 1.3990066981935865 1.2561072369430861 +1.7481756566143467 2.872252517190863 1.3531272803898844 1.6410835252871232 1.1603738998524897 +4.531143586854409 3.8570168232282827 1.2805518880516908 1.6061574626855637 0.7486426942605461 +2.209488442398186 4.522590691046947 3.605542262668613 3.8529936892520427 2.3263005440445843 +4.058113091710554 3.194592211190953 1.6061917432064323 2.9932497029951226 1.6338904782470922 +2.162877477424872 2.5961068505201657 4.0559810936064205 1.0095943039958812 3.077037562595905 +3.2538321634378353 3.871854226620817 4.806776586654477 4.651926311899171 0.6371262654864759 +1.148422857582637 2.80863914899995 3.9802229000531497 1.794167390517706 2.745024011745202 +2.0299925084260404 1.777574100427168 2.7730952990438267 1.1339667161340619 1.6584503501788828 +3.5562827873407463 1.4404546457060308 1.4566262088655604 4.251763177120747 3.5056410820619113 +3.7882943621735414 3.69695597250439 1.24207628030058 4.26806019635265 3.0273621127366273 +3.4200206870339867 4.899184634781751 3.6746136099425306 2.2293845696291377 2.0679973315461315 +2.237201409213383 2.5819431651903106 4.741893664137916 2.9159699191501702 1.8581830913083166 +2.159470651498155 2.4424546824190743 1.9363249400003064 2.784092311491752 0.8937502324037554 +1.0082441158309718 3.1137220178691347 4.385802358034495 1.6283907239068052 3.469345199889132 +2.039649662660038 3.2826321384129806 2.095540464732516 3.7720588731604847 2.087036034386269 +3.406386065476703 3.0568065538425033 1.6607528027800078 1.8720984996623287 0.40850072037277907 +3.214682525653353 4.025532568630714 2.6759245950297563 1.03385548100988 1.831357083535161 +2.469790062981781 1.6731736552995229 3.8855244873595787 4.1911552030820065 0.8532337519001395 +2.0280733947147818 1.518328116280557 4.533212175024506 2.0009056026984617 2.5831021708658106 +3.3131911343251463 2.6718506698210436 1.2529328461079414 4.946100328273052 3.748440161284707 +4.380460457096659 4.30392475430363 3.873751226608065 4.489945468356634 0.6209291886891103 +2.7704118487339895 2.1704106576644904 1.4404469432053477 4.884106897098617 3.4955393442690657 +3.879984294413918 1.9111098239259205 3.5164989371672366 2.627224395663349 2.1603879028328086 +3.1708262744050657 4.079884385545938 1.2899578005465346 4.382282129008054 3.223174894700255 +2.7903039347578313 1.8702450009801668 3.2180889677131734 2.662394302065263 1.0748511539062682 +1.8134507023787054 2.7704713264357195 3.6742019763798925 2.7699499330317576 1.3166473456357832 +2.186675284824458 4.254103198763347 2.0284815613860285 1.5431795660598717 2.123623367266723 +2.92591735609858 2.1222136154553395 4.17086341429091 3.1834734999996 1.273137284650849 +3.259515272564354 4.771493531473302 1.4916602330677833 3.97090026542233 2.9039127730430727 +3.192595008622467 1.2870242681672943 3.6917683454715258 4.01300079198808 1.9324570193341652 +4.1639314593292305 3.775834700502091 4.862130198407535 3.954459741576431 0.9871599426719647 +3.986888830733936 2.7763005405324246 1.9029910711255917 1.8972200129743766 1.2106020458784974 +3.729105715490234 2.6415696921482383 2.835778471463089 4.376574071530159 1.8859442418196157 +1.8856880206182636 3.6277770557502333 3.918833879591848 1.6914886196466137 2.827709517140603 +1.5682586756362773 1.830978824953934 4.676888829942651 4.397082035045815 0.3838146939968974 +3.334323685522714 2.8327072920100727 3.4502705238927227 2.0086294862427625 1.526416682192999 +4.193552607951725 1.7345448190822572 1.2407363399641453 3.266259171432563 3.1858220362287257 +1.2591961787211092 4.115800109547635 1.729236570113235 1.6719364960919596 2.857178558665244 +2.5239725295258832 3.889831377757222 3.4028547774368363 2.92020370092823 1.4486277834374004 +3.644254951678745 2.3248401676155863 1.2323112280085082 1.9310882785770511 1.4930320622162483 +2.3681992814338177 3.099835527606702 4.3022654309359805 2.7511460091660878 1.7150110953885154 +4.373304456985739 4.14357090442135 3.991950033230797 4.328287130891261 0.4073084193047322 +1.3127067089990816 2.46652583727172 2.046859278495261 2.6099056437754697 1.2838690705142348 +3.9443899258530055 1.031510312038157 1.3523563196843393 3.529424184096931 3.63654948142276 +2.657697843196849 1.5443608092081424 2.3222258668132025 3.8932893298071582 1.9255544022450601 +4.173669338152326 3.6862091275585 3.959418087917287 4.190230235671163 0.5393437720628044 +2.8740179800704455 1.979348119335329 4.665470377401949 2.9563126297663156 1.9291589789363404 +1.9191930612748425 4.004530202161175 2.9386757134947006 3.8564393729475306 2.2783593056785914 +4.97924675097498 3.297594202922856 1.039803676589314 4.13066350263019 3.5187170611749443 +2.680714769341341 4.700414580946116 1.4436688291168371 2.1888486475632907 2.1527843112621046 +2.413549444225602 1.0490039197952425 1.263281705052496 2.9859072616738334 2.1975948890930503 +2.4322343737923346 4.542531786040297 1.2898385048053922 2.7332659422722774 2.5567240632052313 +4.213304146021775 4.451020062164228 2.6658253618392656 4.847864773146538 2.1949498512006222 +3.5196999726275764 4.236599166132734 4.692059667901366 4.786570402542159 0.7231021591799378 +4.346965722505201 1.4695475275479795 3.358504362667075 4.761488508049592 3.2012341340279358 +2.678074243064868 4.0416787351711925 4.838739775878835 3.182241209590424 2.1455546394832523 +3.5302286240471683 1.0820595215353057 3.264408480964534 2.0517167879686027 2.7320602293425154 +3.997043274277209 3.102505534552168 2.559249099260477 3.540546787130363 1.3278339203421372 +4.076271624605722 2.767653119123209 1.0263719522672092 1.585608819868427 1.4231051496553961 +2.4171064921773118 4.7206367435554455 2.0678678852998837 3.4849777757328075 2.7045243686417435 +4.077447316719797 3.809466251636734 2.395955819444538 1.1594117932393622 1.2652489794450574 +3.627450028317326 4.792435308147612 2.7646926089204027 1.377444378202103 1.8115320465982108 +4.268438525019379 4.617066875913954 2.958358355038387 3.8251882029632007 0.9343102869501259 +3.2464479147430008 4.479504479670208 1.4613728664358465 1.1047159234250237 1.2836014441047927 +2.6557442823513693 1.8827739091180402 2.513599599124969 1.2731982963108317 1.4615329588892207 +1.9480627922918026 2.806979060172829 1.036383559228423 4.470074947756121 3.5394877746476174 +1.5267410326240811 4.836636131623319 2.3155427425571538 3.487205329688192 3.5111534834669036 +3.997872278036085 1.3782610997362288 2.4411857830441277 2.2224703217883843 2.6287257708756675 +2.1001674283596214 4.751781046864467 2.23378435665285 1.476465499864049 2.757641498216956 +2.752129163769367 4.86154520848898 4.771555848596803 3.366156202718417 2.534715805441634 +4.158414926093427 3.9633482849936015 4.1119252982856285 1.6527959342813414 2.4668539120462927 +1.1275272476579756 1.8827133666386389 2.671535731166346 4.745483419892421 2.207162225545124 +2.289419221780839 4.023530456063224 4.720405235548229 1.4245165230437173 3.7242481359435526 +4.154862010064299 2.986907978955255 2.006122009856342 3.1885378086690945 1.6619939049424537 +1.4251639742032887 1.9576192612857302 1.466462900536535 2.0135505098925224 0.7634222193864248 +1.9919718440953473 1.405523638025438 2.3318072852570193 1.5004297903196875 1.0174035765078124 +2.6612272602111426 3.658121038874216 4.689329703189007 4.039771184306753 1.1898417858646788 +2.635006461294917 1.914324496529768 2.536380799220255 2.2872065025679866 0.7625420148751859 +4.311803634994734 2.477003080220923 4.4324843128190405 2.8738619025610075 2.407446135130929 +2.1692648938501393 2.7345121330341153 1.9673013645294173 4.569773443902085 2.6631495198954576 +1.3583780299737143 4.918621367444153 2.6750974678449437 1.290301237898424 3.820077645870139 +4.946378078376547 3.4048956963623613 3.353934318456144 1.028878038826761 2.7896334234992515 +3.019219811482129 3.325136239392487 4.893032968036806 3.9596718498353787 0.9822157796714793 +1.796093790954178 2.5732531000335737 4.460397055874479 1.5957742782635553 2.9681711961570016 +1.4841571822894175 1.7916320708042623 2.5503289213215226 4.87641292402053 2.3463178801431512 +2.858374133204299 3.352650108725251 2.6065569749689326 1.9696215824629286 0.8062229432383862 +1.9527232577014253 4.487293878548471 3.6275984170380777 1.7025535973135888 3.182741866694355 +2.4004305227620573 4.44052856928135 2.243730728307287 1.1328066866513966 2.322961959598325 +2.6945882745146053 2.987781558136498 4.087321021294111 4.558304728130462 0.5547864036422467 +3.5674378289135307 1.7469015538429256 3.6219480233237937 1.2727701048278601 2.9720345256401113 +1.4210967632494862 1.421002618938696 4.259162038461167 1.7984438435512047 2.4607181967108898 +3.363282199798191 4.4354113996185 4.059606590319277 2.9419291717259766 1.5487620324442097 +4.615714200270597 3.484066563755063 2.6299254958680414 4.836174404202426 2.4795484707417716 +2.9929550073260716 3.2507489407054737 4.861411272089973 2.537747662763379 2.3379200759213132 +4.26036894105996 2.2121723239496407 3.4585174169404116 2.2981607811304516 2.3540469206475825 +3.3004304462274843 4.713181904003067 3.63745575285757 4.275958462272753 1.5503394439210925 +1.9814430965950742 2.9111927229928547 3.658520708800516 4.149401433538818 1.051379214986873 +4.823945750690013 4.638538602013027 4.5095383475500075 2.0447040916055896 2.4717976697249315 +1.2567725337549382 4.043005646874647 2.5936546094675883 3.9441303176430655 3.096268657435398 +4.34879704269082 1.7457041379170288 3.8644516886084643 2.984254899532058 2.7478790108707605 +3.670009784075028 1.120327774887223 4.545778458805775 4.9855849980620075 2.587336108809311 +4.987770474955989 1.8945233833834934 2.1748760902918223 4.536155285786897 3.891505750811576 +3.2069900802511753 2.414983753790842 3.7210377103872845 3.76230014389909 0.7930804559264514 +4.0638171675833314 3.2094781754741604 2.7155197669527174 3.429732267634617 1.1135504521881383 +4.031310089106819 1.0217211551483012 1.5846513230285524 1.5615930409829866 3.009677264388403 +4.05946545046471 4.329993543958552 4.652391762442493 3.7983068621262985 0.8959053891553149 +2.1881294991772275 3.9757156097538395 3.202842042081454 1.949717375427169 2.1830679176113215 +1.5600611950300491 1.3911525153805515 3.865567679975286 2.6695913261547073 1.2078450152891729 +4.8468760481172435 3.8596956093198984 4.746953182281229 2.152802985986912 2.775633343883511 +2.4722941540352865 3.6763771303266166 2.410411047653919 4.692295262200187 2.580079724037617 +4.200510341210366 1.6947056106567517 2.7460660982672778 1.7539055639065682 2.69507696988561 +1.3573329375178935 4.974620875549912 1.0989372275170037 3.3729720414301543 4.272704806269789 +3.1244970116048636 3.3680931767767337 2.9780845541567156 2.963816526973246 0.24401366413819792 +1.2455445739423663 2.6355515561527016 2.54467579937513 2.654375874983395 1.3943290562783028 +3.55940735049326 4.543400269724286 1.9705185377557246 4.185038534141512 2.4232913319469667 +4.844236083482689 3.689860788911818 4.874579103373143 1.993626801896236 3.1036218332942354 +4.217090425734543 3.4725151390689133 4.42939394613934 2.842006318278486 1.7533373430686168 +1.270709695202675 1.75321268468109 2.030415575805482 2.1776199767150284 0.50445839323253 +2.9783675681359347 4.449928539297252 4.740859800670368 4.5182331890719185 1.4883058489561365 +3.7508200337772473 2.3420412137579203 2.271485317071514 2.7817752984684776 1.4983503024490503 +4.115963531475252 2.86927195950574 4.971967216996864 3.112939490281438 2.2383529579395067 +2.807017644061519 3.1959371634198974 4.097060526677113 3.8473466270516026 0.4621854867952172 +4.166211005632595 2.6564554491107755 2.711356179614042 1.3845056752209435 2.0099487808043097 +3.8789791050914575 3.576717132041215 1.0112691653786023 2.8793082476069816 1.892335148192537 +4.8922622538966305 4.851975914600212 1.8482583849760124 1.41423508830397 0.4358889895236788 +3.9795319616291245 1.1634390638699061 3.090440160880415 3.055118443096998 2.8163144058426934 +3.5753611852922145 2.181287437526479 4.998065243551428 2.8319350153982485 2.575958419603964 +1.8677623012773252 3.165268808835082 3.120207556821296 2.9213186352689866 1.3126613958942224 +1.9397364215538548 2.583974366331958 1.8969851972448653 4.3485176073493275 2.5347689613226105 +1.7302219505250997 1.8126374730318382 1.0230160201463239 3.905687296483043 2.883849164877877 +3.086294701625495 2.878873665623777 3.203117819741025 1.2441135744839067 1.9699545982360704 +3.030740035402226 2.451788291731251 1.7224418057572044 1.3493043123944792 0.6887791449025443 +1.899701278463772 3.2451758807633153 4.937478409407907 1.9343723587415482 3.2907366739047976 +1.6348371463050535 3.042588331394682 1.9004354478824301 2.9383949567386587 1.7490349742490334 +4.935758207864282 1.3513256675327852 2.0820123118338607 1.0865307966326525 3.7200994722311664 +1.613052450739204 3.733501335798701 1.7485449495372984 4.231423469564343 3.2651170299641255 +4.56429579878451 2.2496283952753897 3.7935386041793815 2.9851121196204673 2.451782732993268 +3.8084202845721564 4.364949271371534 3.233943291915486 1.5160293277968364 1.8058108708449496 +3.137645532657345 3.88497057599006 2.2699428737444927 2.2350998734001735 0.7481368558393837 +4.898117932690713 1.8253154369738116 1.1938275423391898 4.894584712168196 4.810168272287863 +4.692381571914282 3.8298115503166534 1.7879547299574448 4.383593384527758 2.7352087794642883 +2.3713073587209434 3.7802099556338886 2.869947719760262 4.620689433526716 2.2472434393963514 +1.9868447980044337 3.5404063162692423 3.2469054382553737 1.4178262183719865 2.3998091973410047 +4.5887519144083715 4.816481379114528 2.408830478591387 3.2309331600107742 0.853061268545407 +1.2468619921241366 3.6761797398287928 4.247160664895075 4.352487687243595 2.431599987857713 +2.081377628553869 4.031050299597658 4.845939622774333 1.9474331139601109 3.4932167848350657 +1.3562436796392352 2.2717337369448223 2.143952075314841 3.498609951532792 1.6349984729732066 +3.008726308155819 3.739781469437457 3.4041740227986934 1.299085593324278 2.228416241356983 +3.566388341131497 3.8004678370294522 3.0037896623058833 4.106190730750603 1.126978849006449 +4.111811718898943 1.001530425903519 3.3593886444608176 1.7048726704077386 3.522963643007702 +4.65098871398979 2.717664132148079 1.7664872020016258 3.7635205611490234 2.77954783666354 +3.964125362776843 1.3255899348789915 3.974087803664921 3.2289861626821907 2.741723118709702 +4.959757928602971 3.4841507222038266 1.0456252430315365 2.2419532175831938 1.8996360836412742 +3.751679059267642 2.8519403193356787 1.576549868561297 3.8757167431732573 2.4689467627811026 +1.0225123657122106 4.243375609525849 3.5603453815056665 2.318424866301975 3.452003273670741 +1.5611413411977728 3.2793626823918935 1.96486601817973 4.69618730316053 3.22682514852046 +1.6158713785842496 4.338523093606563 4.977215473229524 2.0710217467303895 3.9823101759226227 +1.8753597566046802 2.244288338600794 2.9017570032535316 1.6029812193597666 1.3501580779458853 +2.7158328491585406 2.5311650091229176 4.202577786183474 1.7299362373642149 2.479527866367048 +4.3818056119425 4.97861526569292 2.8766726360919797 1.2339706969014856 1.747756111083553 +1.5678749273333046 3.493369775001396 3.62393815826515 2.6816484456637495 2.1436978123958603 +2.9523706536555774 2.4442430696570017 3.5510468674879356 1.3958850520585493 2.21425294225956 +2.765068588014859 4.970083282349291 3.696109642645281 2.7042408085813965 2.4178282788936896 +2.4694430725707415 1.656948299212528 1.450914192064348 2.861572264639182 1.6279139886538723 +1.0589309931274231 2.2238181008917226 2.706611749239416 3.8995705932408953 1.6673670193802026 +1.558684542573002 1.9898001537501826 1.513243753930546 4.420868748540178 2.9394121486241658 +2.0995308297964828 3.6277354018027834 4.283530951726702 3.3515677406509883 1.7899621897401956 +2.818108153236706 4.018158181166459 1.8637531154050997 2.6652062239947774 1.4430686590742172 +3.453987716402808 2.515509278914606 3.5169198420472507 1.158744542794465 2.5380568393233953 +2.2687387933581054 4.1906039193192015 4.296327837237241 2.2370821494989643 2.8167460597033145 +2.3532695917167583 4.774115212230206 3.583286244331571 1.8517053109868589 2.9763847276657778 +4.3545158685505925 1.3945123750802049 3.1159038907316834 2.9432082010826393 2.965037012008494 +1.0510311111585096 3.6957719710856494 3.014607451277201 2.5893050027544056 2.678719169470296 +1.3158505234177356 2.231144560686191 4.5570360536070424 4.585482057957261 0.9157359607565279 +1.88742183554439 3.996209223555078 1.1017332923612924 1.0079520440221965 2.110871661274787 +1.272974480858149 4.023558351221467 3.844651146639878 4.396406688100891 2.805378014713131 +4.068897064291024 3.5721104683763882 3.774525379062055 1.9367442254634546 1.9037427584636153 +3.3368625759614154 3.674808125614966 3.1741943575348754 4.149487306476832 1.0321838648160213 +2.6962295824505933 2.521544233404468 1.3965892878973678 4.756654184219222 3.3646026628215346 +2.834098134657744 3.2214957098842856 4.9055775188169015 1.2767554429793058 3.6494419490351784 +2.208806759203643 3.133130745974818 1.2797646959877342 2.1444987456940665 1.2657566153262136 +2.4039819208356823 2.838673649148133 3.698160875456935 2.859666616739348 0.9444731444385391 +3.2309219871327004 2.317816661878223 2.770851638796859 4.15821841359115 1.660887685188616 +4.839873937641174 3.5833541430528797 2.0015875838332224 3.351484204316793 1.8441970827938035 +1.7520064298889868 2.5615196685381614 2.3216879499790624 3.6263669653383768 1.5354149330611662 +1.8808232228681536 2.6473646586358504 3.118563980639317 2.879905819216109 0.8028346596670499 +1.7664867218825404 3.1690348887493665 2.7203386822541735 1.1494506873207984 2.105903714087445 +1.968263725792533 2.064852188818547 4.741835034597813 1.952298618107294 2.7912081165897487 +1.4371061564941425 2.3669529623476655 3.7201972070246225 3.2922351178234246 1.0236047245638589 +3.7662224606937618 1.2938982158827423 2.8363469518591096 1.9677279961721794 2.6204743962990804 +2.471297345466462 2.2398949168319726 1.9555252296782593 1.6984828057963228 0.3458581958737439 +4.634000977906046 4.04428988588142 4.214246507242297 2.4088258856003755 1.8992900760828453 +1.0525769673291143 4.890060274851281 3.628166377010461 4.918126136936069 4.048490375156967 +4.452634617184893 1.828432534657074 4.176248826479437 3.834607813258993 2.646347511544475 +4.699537428658219 2.1574699083597344 1.1116275734599301 3.693026441708404 3.622944575169622 +1.2765370497144257 1.5845376880794246 4.302414155367172 2.004101722087258 2.3188584334112092 +1.5772389024181748 4.8987404843019515 3.3931209517490326 1.3625949860733417 3.892994792667931 +3.372302397626441 3.727076685592566 1.8257936679640854 1.9943225286198922 0.39276808968628724 +3.941106767664111 4.136851619133501 4.866437982988936 2.294760892386593 2.5791159541993656 +3.6628837738535345 2.661599148439125 3.2539922301943416 2.3847431616281867 1.3259580854214068 +1.9121937760897083 3.9079322840979382 4.095177394593672 3.8258331477371588 2.0138317992477965 +1.8926269171948578 2.7828366719593953 3.130650563301652 3.629442593370046 1.0204248608975026 +2.7311093502324417 3.9810511610739185 4.678948245325415 2.448965573263378 2.5563992740154293 +4.395367002522037 2.212355494399833 4.756777355276821 1.1570455315383081 4.209941620430119 +4.815903742336419 2.9808775459224273 2.2936139117969194 2.459987649863372 1.8425529469309165 +3.8295537984146453 3.9507692178074287 4.356896200192958 1.3954561141854502 2.963919796639363 +3.269406249630546 1.080620768944601 3.0222505990135238 4.154113147352717 2.4641214882376428 +2.284292036641063 2.827760433159549 1.1806294399367716 2.5839636932538426 1.504893658883363 +4.737932835331998 4.249973697935548 1.2998912230277826 1.2084768332763303 0.49644809438884724 +1.373285486183176 4.443024334840153 1.554689762638347 4.198517142921808 4.051310876209128 +3.9355489977380653 1.0218683117560818 2.927966368141231 2.4179987833693564 2.957972629586437 +2.4317029545016458 2.786264849478219 2.5211774546929493 2.0360618031037037 0.6008754719459241 +1.2697774228591405 2.73948182412196 3.9021898801453063 3.4559978971706755 1.5359421580131642 +2.2063417121226894 1.013174903161255 3.9369034865656727 4.9523183347856765 1.5667528037290586 +3.4101980380327137 1.5079293609677666 3.889080880829613 3.715347920578431 1.91018566145285 +3.8528955626886785 3.7736892804063755 4.873791937539686 4.848365979462126 0.0831872255646604 +1.2269153998100686 2.893798446983219 3.6575058814132975 4.225314943713511 1.7609390177355646 +1.8587766612592889 1.1611010554978196 4.4693846147267475 1.5313620865592013 3.0197231043416304 +1.7248302887271896 2.074021053594945 3.7876308891410164 1.7629258177598865 2.0545960226636755 +4.127955188186517 3.8599715566784862 4.164938874049575 2.0249264550381425 2.1567263109350234 +3.092258158283214 1.8649676513057392 1.4510438703385415 4.477154522601301 3.2655149162506016 +4.633318519279195 4.841053189772273 4.4209227907527495 4.219039774478804 0.2896729976796834 +1.789641945366386 1.5833990399732891 3.667331289197575 1.1463385027918114 2.5294151033657726 +1.270251360519318 4.733168544913427 3.642727778506323 1.366024476764419 4.1442940713871295 +3.2429710680745587 1.4194037140462372 1.816823855498567 3.5472489369354734 2.5139150457292265 +4.51568999346703 2.0023665435745395 3.5716261928345867 3.795919459517651 2.5233117590299554 +3.929004763370848 4.562049119003544 4.373797970006471 2.791916934178364 1.7038464624815879 +2.3071859875808354 3.865792625477031 3.299924189956376 1.6490480736599786 2.2703846817339035 +4.676110184516693 1.238421659920725 4.527655106948567 2.2426655785307252 4.127817769368942 +4.033402911925299 1.5969691894723428 4.950107415879377 2.2626000123926313 3.6275205482122415 +1.5920530901349212 4.197183111168204 4.794616912340244 3.46323062211718 2.925626749994402 +1.378089472306705 2.9836296502423747 3.989514344079169 1.0385803823850286 3.35943008697094 +2.1824667384885466 2.856842100929166 2.95028360738198 1.005592799411796 2.0583013550184153 +2.633634853383872 1.9855161228098108 3.930973499537648 1.3961180646175828 2.616400192031931 +3.907298221492526 3.164955074082148 4.1877610226379005 4.730209152140326 0.919414662547768 +2.3377647746369083 2.6120866106783525 4.242840321601398 1.3570085076560496 2.898840755907135 +2.702678951271927 3.874395610064183 1.426673050560796 1.0730395102566215 1.2239185468483398 +2.124006601616268 2.192312005070198 1.1779061557432349 3.4368786196473122 2.2600049161047995 +2.8829287422818206 4.649647681244449 3.2270649726791163 2.7287819844774233 1.835642052694491 +2.308737290170426 1.3919644896256673 1.3373483821483485 4.054852469837876 2.8679785275395577 +4.122079700152968 4.502124598177481 3.7266283893989933 4.30063542646028 0.6884171722947795 +4.671724352922871 3.999755194269812 3.29830275616999 1.069790494717282 2.3276188368429143 +1.8394425152595195 2.0065479728693223 3.4691891787643674 3.678721146724167 0.2680072378875019 +2.65597345585386 3.2611721269259477 2.1922293879163095 3.772872929497099 1.6925422999170454 +1.3950270747063769 1.0316366682643685 4.7516529544491934 3.1113892787560036 1.6800349738301943 +1.6687867271678916 3.3979378994801235 3.204210781333313 1.7457759186822641 2.2620778115053315 +2.7792155140415185 3.0133443261153645 1.3618841701520878 3.068150633234534 1.7222547847757574 +2.3671840903897428 3.9189159829967126 1.7799269615464546 2.0319955018535123 1.5720720134733457 +1.5987742689622149 4.088975053234535 2.0603664441911427 4.995267910175297 3.848992928160094 +1.3405434967953536 3.230003627782993 1.9033093131719272 4.019262228091799 2.83677921677908 +1.7860051965505792 2.7543131887921044 2.9441419175121326 1.5371683601732333 1.7079797887825519 +2.35156195054918 1.3272374465797645 2.4482367990179137 2.7638723835117327 1.0718519075091222 +2.465579178877545 2.254562485430836 3.083704257001051 1.4208477985739845 1.6761920075712655 +4.634098441747054 3.2844015018523653 1.007854481266322 4.458987847770256 3.705671780252248 +1.8520609909228667 3.7571301815531637 1.1367014948002865 4.453583965419416 3.8250487506683144 +1.950660043100243 3.817796113263883 1.2691355499943922 4.997541447221028 4.169797074076924 +2.1471309026395056 3.733614203969464 3.1900137712966745 2.150990154414964 1.8964438673044757 +2.7847666434337928 1.5428242749544943 2.81511913636342 3.01388416504343 1.2577473447597236 +4.72554390051244 3.5546348406034056 4.227435196615402 4.625633631638674 1.23676595208311 +4.391855548700015 4.680652008116868 4.9822544557507165 3.0391890963418993 1.9644099332639882 +3.9358240353293583 3.5163013042825124 2.7765260481753566 3.1062023634291815 0.5335595512258623 +4.363077388806314 4.50021250497716 4.671687549050976 4.684970889463884 0.13777694734503534 +1.6449121360808814 4.0764685452557865 3.948029715845139 2.9279377504026938 2.636864461620997 +1.2298500682814875 2.944952509047118 1.5532951746102266 3.507064024874027 2.5997671246827774 +1.7222732457258694 3.0087851941674106 2.9219814924677667 2.881451909074812 1.2871502012635734 +4.248984727260758 3.0456634134627043 3.9551056315656035 2.3211905682572724 2.0292019658837663 +3.9776870068577614 1.0756743320863298 4.033717423202379 3.936997925387757 2.9036239814741083 +1.1298801767419318 2.268543176185297 1.115782869825341 4.572045888728617 3.638998142640327 +1.4143199708962766 2.4510003067086514 3.540259435651139 4.765420608259623 1.6049068563400972 +4.922336838266457 2.4510501371940845 2.6471584320069503 3.700259217709895 2.6863133145158864 +4.19923403664451 1.5500575657060227 4.675929143506398 4.3585281521158254 2.6681228164216537 +1.8042233594281871 4.818131593601232 2.2821328307623157 1.2571583612009736 3.1834282632515274 +4.288391370879484 1.106677581429854 3.7277506731264314 3.1341252980858605 3.2366176363398234 +2.0193429551719118 1.9024024524351075 1.957198542247232 3.32876664460167 1.3765442748333565 +1.2725215782337718 4.215741385674652 2.044399170876108 4.861140681753011 4.0738894896657944 +2.8439999282121184 3.0533371828325677 3.50624918625995 3.3934270601690537 0.23780436982464584 +1.083461269171739 1.8188698113483976 2.344472818352344 2.310376028250887 0.7361985567777359 +4.794393928437853 1.694895492666301 1.9721798068662624 1.7496075056457698 3.107479522478126 +1.837983952146382 2.4436201399531976 1.884489161917584 3.8517768278361846 2.058401309865651 +3.642582930519519 1.933586118072368 3.0221221861888408 2.8541582269901697 1.717230909500588 +2.461584414177627 1.9985231828167977 3.234244548563916 1.708350065651159 1.5946095688202166 +1.47517663705057 3.885578380399574 1.112415467542816 4.74429601171305 4.358966947736836 +1.644163950763879 1.3485719393606819 4.267373767475595 1.0098827467924067 3.2708748656952604 +1.0137125087051206 2.8747473955714598 3.6197293145156735 1.0033437845146964 3.2107513282302165 +3.173422184061671 1.4607956549261223 3.657761259351266 4.005984208396287 1.7476695484388598 +2.246105783330641 4.186668431549081 1.159065418004324 1.0688560914329517 1.9426582597721676 +2.253481447639946 2.181421781991717 2.9558021001774044 1.810355538541756 1.1477109483560153 +2.1654483744340367 1.418934316860427 2.1875288632581023 2.41797374303109 0.7812733713423244 +4.172805898256332 3.793706826756256 2.5003741074818815 3.459034774370822 1.0308959114538032 +4.615430875281047 3.288705082487334 2.1277024982898816 4.532117777659446 2.7461635357221397 +1.9022863356201585 1.2291442298168884 4.62071210965491 4.917410710244842 0.7356292233165324 +1.1753947682145869 4.850121299783831 4.050383616397438 1.7877985888221621 4.315426524554292 +2.10986169900028 1.4427742206277134 1.6136718678940825 4.855862309554906 3.3101064278657684 +2.9862931977829876 4.798614585899404 4.95081159341697 3.263839279500463 2.4759613086122787 +4.161938068534186 3.5750261052550374 4.501737846968966 4.865219583682569 0.6903510886241295 +1.2514546694096054 4.3006602488440695 3.2992071799879668 1.2845747923816981 3.6546406557753937 +3.713351254777947 2.4957833184793645 2.0815001544698344 4.787428630456633 2.9672412434210043 +1.2089554425352849 3.367655740146785 3.749412220222135 1.2203119626927323 3.3251067783671657 +4.179828711364551 2.6858634390300984 4.610661629424168 4.43790412797642 1.5039206725249252 +4.72549007510365 4.999638748133975 2.9061688198688778 2.5681108633162886 0.4352478338978844 +1.3745555108865188 3.615406140001073 1.2756446910235821 3.883068802169558 3.4380331640908404 +1.6883518123541852 4.53600461804911 2.192662636598175 3.3262643528049427 3.064992553460629 +4.099127569855957 4.30235042615108 4.257398837389247 1.1500726715065892 3.1139645840150085 +2.33808960516704 1.6535581194957771 3.17847967596025 4.211187830452777 1.238979211783098 +2.624098252487836 2.9269303902250767 1.6950205788419268 3.5697481162763647 1.899028868464484 +3.542588529265481 3.4636584097009253 3.6718938087215833 1.5124426524755554 2.160893162557275 +1.7278754192897448 2.136828356656384 4.34747812804868 4.798819587820991 0.6090579761321603 +3.7883513895290033 1.768651511921171 1.337517605656354 2.706305140239424 2.4398292789535687 +2.6245305150609477 1.4972323562290293 2.5909125358567846 4.096780785612603 1.8810742474789468 +2.2719223295752595 1.6444715917318011 3.477718649408209 4.261429940866362 1.00394114208917 +2.6413343221937224 4.748229137576935 4.812165632419241 2.609170534589366 3.048309886502867 +1.3191529817951393 2.12912877558018 2.241379159847157 3.3758511519885315 1.393946730499744 +2.217440823869345 3.4417009304297186 1.863118163658049 4.872360741078626 3.2487464810717457 +4.2732008528624394 2.423125339163676 4.081253894467581 1.4203720438078866 3.2408442772768185 +2.2738253980531207 3.7391262534195926 1.8929854436095428 3.6444844203259463 2.2836057589208174 +2.893402180693281 3.2212738374752123 1.5657088490497686 1.116442151425825 0.5561837726101443 +1.9466813101847373 4.960469577681993 3.4925989554707337 2.763129824872924 3.1008135922365976 +4.198440676120367 1.6137400284914527 2.182390981576624 1.9122227699953616 2.598782080206486 +2.144018719966611 2.9459035301768273 3.9114085439789616 4.808080238048738 1.202929497431931 +1.4700872235464137 4.001515309858115 1.5415733361391655 4.764260190613561 4.098028638036805 +2.0694437357184565 1.3740485888003025 2.216075706755101 4.468294141734161 2.357130095946519 +4.9896345473829165 2.7221271114053516 2.0382511070192746 2.5031112660157704 2.3146673496716104 +1.3096549441973235 4.778602470938246 3.550349129876095 2.1857220157217148 3.7277076205044937 +1.8300887664878842 1.5149022112640376 3.600078923866943 4.91044542265094 1.3477399325275283 +3.531815933344955 4.956852464230985 2.3653256646258707 1.6887310334224788 1.5775010013730402 +3.439311394315169 4.535396905943664 2.8645939155418265 3.2705546461474997 1.1688488198205065 +2.9319704999978593 1.7217675181078245 1.1951171760497385 1.8501805121697519 1.3761174483684935 +1.8056612740292466 2.7924863331729077 2.543409303926216 2.0696774702596508 1.094644027793043 +1.9751590971326736 4.601007291410215 1.1927655891072289 1.0227829366197598 2.631344303115292 +1.9067218184953965 2.924980551769119 1.754617439537519 2.579889462805163 1.3106962883431375 +2.0127451533377263 1.555105522077672 4.890875117219778 3.6724996673801917 1.3014886741234644 +2.7936601078995515 3.433907351338811 4.355852447078523 1.766378638663448 2.667450306416081 +3.6157535286423585 4.070779417822992 3.001682646819443 1.447744984879706 1.6191883204307531 +4.308804243843923 1.3001613579998712 2.1722049169118915 2.3274831982812856 3.012647234444328 +4.175658780524529 1.6351873264281251 4.223131539636411 3.3831543397589368 2.67573483465621 +3.322772068238258 3.3985265273868817 3.5791383394693312 3.6717327710027865 0.11963472251777153 +3.8529962116230285 1.9046016049040713 1.5118171157981783 4.028354328961875 3.1826405842836265 +3.4126852567641675 1.1587513418339572 4.507007950343278 4.829033678029073 2.276822053249702 +1.0609654864784015 3.9526301628171066 1.7665431336883186 4.480512475410153 3.9657728361809976 +2.057865131896768 2.7978262912109355 4.225782478946426 4.310464107138258 0.7447909071993204 +3.6797367992213013 2.279133002452038 2.5710665522895373 1.4952149469454774 1.7661108890004236 +2.4638660581702876 3.549849668573571 3.814907391456005 2.437028122273375 1.7543978119308659 +1.9990614920953882 2.089882775974336 3.4754758282317963 2.499043077130963 0.9806474509362489 +2.833238768885225 4.552916396294194 4.635132784004346 4.830506043627199 1.7307402615027474 +3.3625256157884267 4.493728868441373 1.9280330602642715 2.9591761948388 1.5306459299239619 +3.4924599887660333 3.6443873669528246 2.893933051875573 2.959672844354072 0.1655404740775755 +3.025095990057031 4.288040810304716 1.0012249447451134 1.1008331167315575 1.2668667676267065 +1.159894589672537 4.139835461227683 4.494401007433082 2.7111462877996275 3.4727575488449856 +3.0119227213148596 2.0392342081865986 1.0941937414343466 3.129073563819533 2.25540657867313 +2.031331576536063 3.396305090941436 3.5389275172464227 1.044557318095059 2.8434196639684703 +4.092841426307908 1.9581300589667445 2.5807531371597414 1.0691713120568593 2.6156972752665664 +2.72663648876662 3.9288737655257946 1.949968208971093 1.7938120561456645 1.2123362626328367 +2.0473273957148894 1.4170120481397817 2.3293452059411925 4.586995468002722 2.3439885117413057 +2.045342465573182 3.9019474705424586 4.16951070030016 3.9653314763908654 1.8677985169587135 +4.798594805493647 1.0168135466108899 2.694911029871498 2.8893012473291217 3.7867739629769397 +1.185112937186355 4.196905071223306 3.9100469619491673 4.206185508411449 3.026316225602943 +2.1206360904241683 4.061267536911704 3.237731733291555 4.440570753515875 2.2831715046554226 +1.2315974323938632 3.689117344930605 1.0123825895280252 4.626749637894044 4.370703980004672 +2.385947170069829 3.9061692343200227 4.115814226135923 3.447193208356954 1.660761629508854 +2.778222702350468 2.2788473186609104 2.54867887079592 2.125064063759975 0.6548475231496212 +2.8361129832745617 2.109495154690483 4.714234733769526 4.817159873489182 0.7338712783605529 +2.1721871408432323 2.089066515585339 4.408252166957618 3.7450243488057264 0.6684161705956709 +4.369090240946015 4.885537775656907 3.5631512313455893 3.2025307281143016 0.6298930095339565 +4.919024484569056 3.836237849448171 2.9694244859588177 2.3423040799703165 1.2512821028063943 +4.122905818747755 3.6486145782342327 1.5502261085211195 1.5738942208692879 0.4748814171664138 +4.704177686384181 2.924650302813247 2.3323497062820207 3.404983775975726 2.0778020974930445 +4.880167271570131 1.2811211143710324 3.0720536130873843 1.3676251473877596 3.9822367629683666 +4.779690254409785 1.1580023099638765 3.115807307038652 4.815962028533063 4.000893605679182 +1.476763914313863 2.8020482130670357 3.4206466584459156 3.7575932247408486 1.367447059691758 +2.9980937742993325 1.7960774893330989 4.6680252544599625 1.9939367636859524 2.931824074840448 +3.713422441375697 1.5889424085957042 1.691752905264197 2.940824161602007 2.4644663546273446 +2.1030930762754365 3.618591030082642 4.518255120397646 4.693693649076161 1.5256188007948477 +1.7419546785672653 3.5847835558663004 2.0651391357644067 1.1107719755140506 2.0752915331518005 +3.6406925229854514 3.4616817147559034 1.7366517395026255 4.863940014513265 3.1324075125184487 +4.822615816055763 1.0461930871622265 2.847973615275856 3.9470955995892725 3.933120613927924 +4.578895745529805 3.7952728747724485 1.4497041829832753 2.2766476645672085 1.139254284744261 +1.8312219757132233 2.5285602570077157 1.4670226775995774 3.8476521419068503 2.4806606629861108 +2.0397099694498624 4.416961929183735 2.958119768180939 1.8659215723871005 2.616146742626234 +3.0924038002590346 2.086440799695241 1.9528972204578778 2.0993331407427425 1.0165653138155883 +4.824590575035325 3.6582499238537136 1.6541679497285355 2.4133050241490377 1.3916319960242594 +1.8900308048133896 1.943982304582423 1.4910083830363767 4.839156925131767 3.3485831965568384 +3.063783624406487 1.9589591388891758 3.4239834486429346 4.222703770994826 1.3633016163477916 +3.303564396143441 2.8023413883629753 1.3373513705354272 2.189688359820723 0.9887885753953769 +1.4199835018982716 4.0326363960014575 4.784446084644639 1.0408191376572216 4.565161318428527 +1.3385313937101841 3.842116093452119 1.6012550887593369 2.7253276739317918 2.744353389328386 +1.1078537483494313 4.786672595844122 3.5086934641007175 4.105492357404083 3.7269125334155997 +2.7087340875578247 1.4502015111167958 4.552372999655805 2.0509844621569555 2.8001515783067763 +2.714669096841958 3.3441314110520404 3.133841046207566 2.8800542426824003 0.6786976842853037 +3.272908750566251 3.433190665670361 1.3607925569387307 1.5576866456297767 0.2538849630657919 +3.2156066060355 3.9192686485929604 4.213500817526457 2.155266028456498 2.1751944090296838 +1.5502295814944342 4.189813555464378 3.1830768202154145 2.646114134705394 2.693646688277639 +4.76467652212755 3.148413532828037 2.7919019094352846 1.5142851114287046 2.0602453089688093 +1.176046615803604 4.278480567429769 2.2628589087045556 2.860787621683698 3.159527681475134 +1.14525817961048 2.5348668935526573 3.5394195137813704 3.2885008971784457 1.4120809219099157 +4.152218039200438 3.337936143602488 2.4413136381333382 2.6786443203826105 0.8481632261749477 +3.268754305689336 4.5400595915691735 1.375996518352685 2.4302893278893207 1.6515902815609773 +4.268002036032162 2.456366637867986 4.386209217785579 2.3622842490991487 2.716301731169393 +4.906471279339032 3.6595182794967824 4.078315313245332 4.665972509275608 1.3784893049500788 +4.230913674691141 1.836950506895323 2.594291378295669 1.7986619103851091 2.522713994683232 +1.7418508180437202 3.2347184536347617 1.8595814949004157 2.311810449231793 1.5598605080361634 +3.545302417467919 4.080703312743468 4.793377236106425 2.4449672134668243 2.4086684606014144 +2.186656250122573 4.379504417275187 4.261373011667207 3.3246393404487233 2.38454462214047 +3.5868834243842738 4.436441404098557 1.737483424661625 1.220011435949993 0.9947492246779515 +4.985685499866782 4.053787858180239 2.192652562657008 2.6701029524556206 1.047087431545135 +1.4712821338813424 3.947206424339173 2.757194309434638 3.5640061722528955 2.604063454308166 +2.448371449243932 3.718110628287046 1.5723991806140805 3.4802218712001287 2.291729696432821 +1.2794335887127621 2.520127095489854 2.5186263049251916 4.096726435395084 2.0074163493276447 +3.4073713272253583 3.9101490133489762 2.5765550618171975 2.4748368904940694 0.5129639246975761 +3.211542259624107 2.5732973205068745 2.8947964780717745 2.7246852745927477 0.6605258691813992 +1.1928786462180496 1.9708120131074778 4.3088771347718335 1.155075358295365 3.248329719813869 +4.956877786640037 2.7055858149763936 3.5912748429860195 3.1223269137407796 2.2996146855550768 +4.686129200811552 4.321708369570534 4.347097023558437 1.8248735488220822 2.5484139771146923 +3.459909994331825 3.3936290024797424 2.7762996001789753 2.6124966216525687 0.17670479805318884 +4.084693951672718 2.1408590936410326 3.7624572652900903 3.104269316177542 2.05224397469113 +2.9176499906527087 4.011728809698145 4.286612609865593 2.066676684053343 2.4748987811617154 +4.855899598719738 2.670507380012587 4.961110031541316 2.7952415239325057 3.0768369378043707 +4.241660159395181 3.9497566214269164 1.5611532974471456 3.281774419248534 1.745206211388058 +4.370604134179917 4.672609521508983 1.7921204016113466 2.6245321607056913 0.8855035802605885 +4.246019971328597 1.4941888527709604 4.165026874297016 3.856244374214361 2.769101142504453 +1.4735845383042148 4.215684052936997 2.7319826386627573 1.9465541523890524 2.8523687796635877 +2.691418879263584 2.8450510616006697 1.042413961606567 4.845791318000416 3.8064789717768206 +4.250870917586431 1.5460666242405954 4.588836545738015 3.1608472947673145 3.0586139943101562 +3.500724640055558 2.39863646602921 3.887021512612152 3.071535663835059 1.370990704886224 +3.242881546433654 4.931171511544593 2.166248378111557 3.185195081960974 1.971947106689195 +4.957053765561241 3.9125478667779627 2.113654676579449 4.915781209238052 2.9904691400551835 +1.754782370721831 3.8135705037742733 3.628660969845869 1.9205821557091416 2.6750965986484094 +1.9940253100773506 1.6691076804717246 4.794810520435799 2.359364572221327 2.457024304459121 +4.517731158882317 3.9335289126977875 2.761597768554217 1.3936489904009153 1.4874730666799179 +2.9926908500738474 3.106289438779099 1.0339259366758893 4.116614569577794 3.084781004670905 +4.239537311254203 3.2937078176051995 1.0269237423247422 2.539469205310905 1.7839246645125901 +2.480102757360519 3.368229744085435 1.1234436409291386 3.159282603142464 2.2211280522776953 +1.8148559366882364 4.909533957255974 3.692297355760249 3.277165064003745 3.122397615718417 +2.99364082188019 4.23908810696579 4.642372306090768 1.2874554514901089 3.578631867237907 +1.7666745748209824 4.9682922837262815 1.543918267088043 1.0891121525119845 3.233760126513992 +3.3118880323717836 1.2065551954193787 2.3809651738569793 4.888141124449897 3.2738902855137892 +3.4119763410410244 3.5520054808807755 1.0083898152461543 4.607659771845158 3.6019928345959347 +1.6224819940401907 1.8809581447128467 4.134262205922662 4.8967687455691005 0.805124924139192 +1.122317240623012 1.2730495663655104 2.8756879718838393 4.542487737967978 1.6736014143881097 +4.65200241725676 3.234656472252319 1.0587806400904864 4.495944902063268 3.717925186391387 +1.734305611261607 3.3049291686485196 2.091108767099763 1.2927553706686532 1.761881523999786 +1.1321945287315494 3.7355897190981286 4.810156397986472 3.544642674803256 2.8946833161485706 +1.4466715990023147 4.3119010127183985 1.133500914076889 3.535513336160072 3.738877273870558 +1.256497927741341 4.776119960708009 2.3593281917907194 4.050826557271695 3.9049847599407137 +2.4334376618815172 2.174842482611019 1.1406429300793781 3.245716999939403 2.12089799526969 +2.2419330722180995 4.308651241561563 4.254738694141347 1.8304689724522376 3.1856565532073584 +2.5132258401022995 3.934132934488459 4.355127404125662 3.1762407139865845 1.846280260162034 +4.36136888255024 3.8688026615636946 4.949770491600569 2.7465351560154816 2.257624288057625 +1.5322944733693311 2.781255195732704 2.4732675319336193 2.5129294225883347 1.2495903134934845 +2.3806719450040648 1.7473507830316546 1.607092582498832 4.972551257696775 3.424530301905238 +2.4851426702154122 4.220517487969589 3.4749924886633443 3.477166274158694 1.7353761792299451 +2.6253551344013797 1.2075845219486672 2.9680121410933116 4.5043446354800905 2.0905480245244887 +3.2619066404010515 2.227627350558232 2.9766116874340827 1.8541794427330895 1.5262987234949381 +4.00634611043626 2.321195098123878 4.740801828918556 2.465611501350681 2.83129386693714 +4.2321894084433325 4.494283808003964 2.3915319033673894 1.8771360828474948 0.5773183995416947 +4.203856345858828 2.583808279541157 3.221761440917891 3.8513326257171965 1.7380781380332775 +3.2173641194856653 4.093418903786318 2.383248586452816 3.5948582907879585 1.4951488423348205 +4.023521348591698 4.9922387352496465 1.1200519953926888 2.6694402458801005 1.8272978208168058 +4.0833940515069145 2.312802279987938 3.3840923738881923 3.6321835017730577 1.7878882596812058 +3.0713994525162978 1.87237968820833 3.5267422673082396 4.7141653487323385 1.687489842784198 +1.6903233853633037 1.878989998296361 1.1945215043243542 1.0647435377010326 0.22899216461817204 +3.695634057820319 3.168807404869416 2.328315733679361 2.681032685555938 0.6339996611990849 +4.072187067332107 4.313356562381085 3.005613403754671 4.730369109897879 1.7415352339863053 +2.412397702917217 3.179175135589453 4.786710307224085 3.637402169541909 1.3816138485835672 +2.49584846743792 1.7172184251308886 3.5393610705219047 1.1906350353377517 2.474424929379536 +4.043067300541679 2.9972823756883593 3.420998431300309 2.2761786183601544 1.5505736077822279 +3.016309038409302 2.4827021131972913 1.1150378233958618 3.586001885775482 2.527923999689431 +3.3502727666961736 3.3707807998998804 1.4559382699624859 1.8413666958526282 0.3859736401751256 +4.620630030884527 4.749801971178927 3.1559301319128825 3.8117008770590664 0.6683716483731198 +1.903336150114583 2.7728439864609324 4.741291315484279 4.869071154504574 0.8788467242515972 +1.284511144183361 3.7564398826279444 3.088284553137376 2.9690599916523257 2.474802251495972 +1.334477197262205 3.187423143968471 2.898493523524417 4.995732536397384 2.7985389328239756 +3.1399000133229134 3.3042606803011356 2.7990736517587322 1.8286075636355275 0.9842859630446235 +2.6390794379218456 2.9076280780982504 2.298439014594492 3.9906601347774773 1.7133974120833597 +3.8559629999815908 2.280913372822635 2.5913241955237996 3.6863659175427532 1.9183059456134208 +3.4028752925255286 1.9567951716298646 2.7728937766673414 2.3057257028771017 1.519668952508572 +2.261046277127102 3.1079068888693926 3.1469825429141314 1.6006774524448084 1.763017960354309 +4.994891923645341 3.3117914115538087 1.7893817675692678 2.9406830339599876 2.0391963955920605 +4.888432887123368 2.699689112715933 2.8214271099740484 2.259542497277547 2.259715386501673 +2.784106248174989 3.0513626118998465 2.674853435335578 3.1713039625504083 0.563816539242435 +2.591218200960198 2.3685239070873 2.274538703424725 1.6615725623816262 0.6521658060561106 +2.1273431305859045 2.2512328637252295 1.9852761471931792 3.222526682266466 1.2434377959980418 +3.0548376628203426 4.552634362911554 1.8586473991239147 2.4979376820784185 1.6285229567568809 +4.114111159377934 4.1096152856044155 4.9140132316023655 4.8488436926253335 0.0653244341075091 +4.6358425139738255 2.4670423719231094 4.630593855743023 3.0331912380832877 2.6935829630930956 +4.76403010446918 4.717806988704059 3.718457332567964 4.2919677386598725 0.5753701089965844 +1.3537922726323788 1.4207212238508293 4.158277144151777 2.0550289008949294 2.104312870576573 +2.7736263684361617 1.4334898376551868 1.2058079266043609 1.447359792161227 1.3617317007720975 +1.7213742989855532 1.576135069596305 1.1285977919238626 3.598715884488213 2.474384332509266 +1.76037146978403 2.9948005758715546 1.9199636641688098 2.3009589503051404 1.2918872342484653 +1.0788285973287945 4.761387878301414 4.174555516884768 1.33261929742446 4.651649635705372 +4.341326141130395 1.9751405181571697 4.612658199366685 4.485279475482131 2.3696117280397746 +3.5904189729560723 4.82957139936104 4.250370661775111 3.9800807095878707 1.2682883718298057 +3.2157850774441146 4.524212683093643 2.765218712011587 4.157936138185872 1.910927687903256 +1.7057740593062598 2.209335577809437 2.1680023582795434 2.2222156925821133 0.5064714093938846 +4.97507070681406 2.923260978703164 2.7463028848322555 1.9736715798242868 2.192460328911068 +2.235796603335253 2.6075955304257765 4.684747405251198 1.6169435037506141 3.090251643515115 +4.948723233596179 2.7452614142296676 3.1055366195123346 1.491139768729615 2.731578514563171 +4.314699062366515 2.1714635737943855 2.709671312771196 3.774045598718211 2.392979519356618 +3.578391251623227 3.8580098216313656 3.8926324828542858 4.138817453557887 0.37255011004390964 +3.5396325412349294 4.556463498157148 1.0593588864741599 1.221999453493821 1.0297558686386945 +1.284686888934488 3.4125131249632936 2.1654521071930595 4.587492834834589 3.2239611934833867 +2.871984780934251 3.924626945109949 3.5809011566792064 2.1637584218752717 1.7653184009147111 +4.553980285066308 4.524631208819654 2.24783972282487 2.489993341710948 0.2439256924068389 +2.795910498622488 2.9669328794897374 1.8439670841774292 1.3169160080694708 0.5541042244777236 +4.193788301103094 4.748797148271012 1.7821967446430214 2.861609038485555 1.2137403843215653 +4.993144538437923 2.349191816639964 1.5120860945247672 3.837267147426519 3.5209306900131017 +1.2088973101042702 1.7392952269162691 4.46786384229485 4.177172487155059 0.6048333771473895 +3.0445673498926684 3.031323084914765 4.752668676460309 4.252493924550688 0.5003500704533337 +2.543793686322491 2.264040260928033 1.567455982786857 3.2944579496843263 1.7495135817385528 +4.586399395485717 4.04231966320107 3.7079692922201715 3.747086563248055 0.5454841115702658 +4.289209445641513 3.036491627391519 2.739985105560793 4.109816356133674 1.8562703432439704 +4.547389538353308 3.451362474507942 3.6723567989661947 4.8526004374591105 1.61066767859931 +4.4511737300481435 2.467530321701564 2.4133126010236907 1.2102681764903243 2.3199476414086706 +4.759655780074963 1.3340961505530036 2.463984819057642 2.854826517729574 3.447784217266415 +2.6267117586019433 3.458298446473573 1.3938582696223971 1.8623445233487024 0.9544714712215422 +3.475385425552255 2.078270967279757 4.149728261814623 1.7972904079255718 2.736035940174065 +3.4612812398265445 2.5990603819990965 4.927064144673382 1.413619617647821 3.617695019229588 +3.4416455475069765 4.7374949520444485 1.427503141667711 2.4606803089911113 1.6573112979517535 +4.053282035222448 4.764315873317086 4.435479268305581 2.6163268150613246 1.9531729997775897 +2.5281693015897817 2.570313821464046 3.104854605118148 1.4414311477152455 1.6639572588241736 +2.95302489380673 4.14680845974903 1.631290129562673 3.638094080969452 2.3350334690740038 +1.254056536958982 3.785258892615356 4.0530920027762845 4.9499374520216435 2.6853895667318897 +4.417594450049792 1.7227819797219213 2.313897842327652 3.283910601636169 2.86407733894459 +2.899742581470357 4.781386347424652 1.6901908086957667 2.000813653391258 1.9071103307363686 +1.0510677079388113 1.6738309448886 1.7773148349337577 4.02862722554404 2.335859912197553 +1.2132380600397275 4.8403535386929635 4.215795564142707 2.526861719691862 4.001057888411189 +3.2168817699614243 1.3423142316586887 3.8591200931204934 1.95754622731094 2.6702034796599805 +2.7108498857367636 1.3171600217347046 4.799689968368957 4.931536253628817 1.399912454390953 +2.080377108021146 4.89558467060356 4.702016637669637 3.667325820237296 2.9993297098018448 +4.590562382854909 1.7175111932483693 1.5897827181915138 3.0121040846554776 3.2058417315269123 +2.14775737421729 2.84914899111151 3.5386961437460207 3.8157699320199954 0.7541353223380933 +4.089100476765165 1.8428024287328189 3.134227672329964 1.397431461379984 2.839421771939515 +2.1134740926018796 1.5598633232232233 1.5846206794708086 2.1207192162128155 0.770640334442046 +2.429709227140615 2.632823827830676 4.00188109967478 2.5481580225038734 1.4678441082460805 +3.4047656534661273 2.511188036567108 2.8191134670482434 2.8286569877368497 0.8936285784430038 +2.1897561424056944 3.929907731864899 2.8069410043186767 3.533526003175112 1.8857500669125276 +1.0902593230958817 3.9330043956229694 3.8872518552600726 2.327699145682737 3.2424380026959723 +4.919282838689947 3.909443078377849 3.862873944280861 2.5570900947275743 1.6507113022153195 +1.426038632092821 2.7281306113899824 4.432179482649827 3.829393871633375 1.4348498232910918 +1.5493747260656492 1.2664742305833578 4.593994619966482 1.9876681783826355 2.6216350261703556 +1.0345394151423877 3.9997188492175884 3.922698075927341 3.5412787357478592 2.9896103072684035 +3.6842814892969216 3.8395242840673953 3.134719373689066 3.7280435238231253 0.6132975399106467 +1.6059001455129147 1.4591463545884276 2.142071099261149 1.4874182387134471 0.6709001736279377 +2.3300801446422374 2.300507545987843 3.4178617567952863 3.193988075423958 0.22581843105009164 +2.852069780928874 2.1785943758931796 4.595653335661757 4.695123130634496 0.6807814343090678 +2.126689295555803 4.258221667572879 2.142759193688042 2.862067250762418 2.2496298215326127 +3.69806176163895 3.978303104915321 3.6400605813016433 1.0033549488229099 2.6515564868255064 +1.5352227460418866 1.6026330643494129 3.5559947172328683 2.4823382254212913 1.0757706137571639 +3.335396708098342 1.4046043758964415 3.008200207476072 3.47173481338157 1.9856543911168478 +1.875897056290424 2.3323969737585437 2.811676607995175 2.056157121350977 0.8827241184806907 +4.624122402490279 2.833176514280067 3.8777867458387845 2.0543703174165873 2.555843235790691 +2.3929993900689572 1.127311297534384 2.7768990216654603 3.767272820401741 1.6071112621119725 +4.012682733252802 1.0748009781814791 2.794533418215974 2.3128032927496007 2.9771148987841913 +4.838506467463825 3.2198636588284826 3.5122772323062725 3.6644958002977606 1.6257844366299883 +1.1444968304586984 2.432125628691218 3.970022542778805 4.509075560002867 1.3959104833104763 +3.4836471769007273 3.4733977902212647 3.0371289105998303 1.1162977449364857 1.9208585103830287 +4.792863325507331 1.9569716102043744 4.25153351562165 4.142124223065368 2.838001447184552 +2.4133417965243313 3.754089870381764 4.654168729517291 2.3586158968949285 2.6584146036525174 +1.6870502217560381 3.008488612196703 4.231944110237821 3.1340312612662293 1.7180256236934686 +2.750898968425967 2.1244068796781517 3.3140445109519954 4.97225231679008 1.7726097891543853 +3.9187556784136226 2.9988967789903906 2.4905600784079325 2.826476468676616 0.9792753525435337 +2.6749046211611343 4.954005817316969 1.6326073855581984 2.2815603276669245 2.369692423794812 +1.8731075456647521 1.9903548583590513 4.0307933497644095 2.230882772080686 1.8037253172231604 +1.69550179440043 3.9962093059186254 3.1044134359174516 1.0280692600639587 3.0991063534762673 +2.8349955266712183 1.5990610466993944 3.157720522510927 1.8594429044136374 1.7925007147657137 +2.6983781603824406 2.7597812855683452 3.1433578107317492 1.6763044355494818 1.4683378185609326 +1.2307620795940215 1.2624463396342236 2.936912899424417 1.8046976799212748 1.132658463796057 +2.7495307701628486 4.032731324532792 2.048537407256474 2.8764470624673653 1.5271011950511815 +3.340769950572849 4.526806979262615 2.5851655963553393 1.7957131359959684 1.4247522663925514 +2.629155621715272 2.863781214180657 4.021314442742856 2.438106357841888 1.6004989874209616 +1.9339647384795615 1.5525669468763015 4.390514078686264 4.380967055795555 0.38151726184527945 +2.2299879990720357 1.163369460108993 1.117876593143925 1.903477278218109 1.3247050781395393 +2.8125841796034905 2.9853731902369662 2.0946059397120944 4.627991704503414 2.539271445797592 +2.9408301003353903 1.3599303868843022 2.5279659694366168 2.6061603624369987 1.5828323559639632 +1.22598685414704 3.3886100987641092 4.427589168222098 3.877842708968554 2.2314032507863453 +2.042944252853636 2.3446229805966845 1.6226876508714803 3.244893055071996 1.6500183114711253 +1.357596106868042 1.5430306847996662 3.0841057355677495 1.3641539225119246 1.7299191373953577 +1.5609153861959415 2.4920676043287537 1.5258517455427305 1.6635748042348286 0.941282154419791 +2.635159681073566 1.8670029835156057 4.273426781650434 3.9021216161224483 0.8531894502107467 +2.2494172232592637 1.0379169199512819 4.90018648320992 4.666314772117138 1.2338674816060262 +3.883478214368015 1.7204691515963715 2.058027960051695 4.896736737925471 3.568875975879505 +2.170405456237402 4.679871726370789 3.6004417181799577 3.378026611999091 2.5193033641057636 +2.2153321644282298 1.0339479307526829 4.096898890471714 4.013120114385639 1.1843511265244102 +4.380415613197261 1.6298624728564972 4.209734328180545 4.392279937875265 2.7566039754482787 +1.1533918526571973 3.6177883090747374 1.4686430638647536 1.2625877200250413 2.4729958954936073 +1.5260777650287851 1.4314664968304238 4.425215478975721 2.158290488451857 2.2688984562407644 +2.8710289059251504 1.6888700352622483 1.8785222821554357 2.4059166331969357 1.294466838894482 +2.7860727524511963 2.8885441911296024 2.2438304554689426 1.4801323090833494 0.7705421821922621 +4.110734924161461 3.801060094369922 3.261220636944577 2.3285663621134534 0.9827219833539836 +4.9634158501879595 2.645409618696841 2.3019872303219238 3.8439621030144355 2.78403293752907 +3.2176256728788752 1.1446571939631203 1.5365041228533443 3.7296803381295183 3.017817129289219 +1.0241219149462588 4.03041439784209 4.8590478836819235 3.4587882506655223 3.3164018955143555 +1.7751305492232854 1.5561552848847229 1.566244652317673 4.433785173506494 2.875889220232935 +3.4259499054764033 2.436885418972561 2.8761835399529994 1.86728961914628 1.4128395173917896 +4.203928852641242 4.248437388137471 1.1786660931520778 2.822998066755501 1.6449342385477137 +2.6251952969676133 4.265707749742084 1.7925044684178348 3.97516730399055 2.730439188390475 +3.799010838490256 4.04256223558156 3.138995680843193 4.868525663681266 1.7465941842800785 +1.8883810833943313 2.932802616018077 4.857765652204147 4.157368734920263 1.257526214259131 +4.622342207645554 3.1678910926772814 2.9353151758468985 4.5104974494013454 2.1439746362195162 +1.3934815865024133 1.7430775165385777 4.828037103430832 2.086692725070924 2.7635459676045415 +2.492932519341652 4.786036624134015 3.75517051303098 3.0050857599471166 2.41266524247034 +2.4246502222646105 1.1749910253522207 4.693044315932854 2.364390163130827 2.642778513570489 +2.5701379236045465 4.379216942933249 3.3407775577927037 3.636725098326318 1.833126249041019 +4.196762442946397 2.4451708476957377 4.215102726408849 2.7837171403741263 2.2620649443507848 +3.181756472721227 4.278176883678897 2.77256249535347 3.6524761426172248 1.4058398714667293 +3.502699532035711 4.6130253058184785 3.6044286472761415 2.3717258277813835 1.6590297059174761 +3.832037705068144 1.0681648998410598 1.5790639711317422 2.1856845197086594 2.829660999736469 +2.047444222916493 4.204513804653216 3.9182371058693177 2.4443154888947607 2.6125455237064736 +2.311038178090247 1.4175639729760863 1.4542648301764989 1.7270363424609165 0.934184378545429 +4.709241906357402 4.632223788049606 1.7318433500600183 3.109526791269797 1.3798345751325742 +4.893755416312048 2.276816858450218 2.281786566864164 2.5686359228438476 2.632612764659837 +2.8292540095621863 4.325822156307067 4.6635637513543795 3.090123003780829 2.1715045484585613 +2.166168351920615 2.095897531623519 1.95936268922609 2.0116448918829652 0.0875866251198285 +1.7198232335770123 4.919692038235453 1.2004333827715814 2.8945431424640238 3.6206585374640654 +4.416358234292375 3.0846774427870427 4.755295122292266 3.8739815562212434 1.5968992868071206 +3.256724768995752 4.419907077978016 3.923018860429789 2.8689814886560585 1.5697094842756685 +2.0050603809523952 3.573395806721733 4.411810681726098 4.614100189589198 1.5813276234590306 +3.882280832167234 3.2164132663291802 3.5378739156392034 2.59832169706019 1.1515806470550993 +1.2920978538013363 1.7222996810118687 3.1493883299063588 2.9706932871265876 0.46583852400734843 +3.1830468889294226 1.0123027350978573 1.2205611234349858 1.4447801592839222 2.1822933710734094 +3.693001520070356 4.31784060162782 1.7123688079863109 3.135998995423347 1.554717591211853 +3.183225906643203 4.586953265518312 4.711594390540048 2.781213448021128 2.38680143315164 +4.3475426596707525 2.9135130667626794 3.5465477563093537 4.55045750574258 1.7505072574380196 +3.02666987227837 2.1408804689379033 4.642276440695922 4.38491268295401 0.9224201704588305 +3.0729048568136808 1.7512617938359245 4.13785762242542 1.170814599347708 3.2480893901971593 +3.5109424133280234 1.9023171296322867 3.825310424934676 3.5515431724829427 1.6317548259037449 +2.8975154625076245 4.569742777907932 3.7425030485606925 1.1304756561573028 3.10145631809261 +3.6178159467573003 4.992911825479142 3.071209976948714 4.413781123912136 1.9218183994166755 +3.2813394789461916 2.7859341811727134 1.7225433359452342 2.366441601461465 0.8124231566104201 +4.7299985441076 1.388178070087966 3.366648829904707 1.781192048271465 3.698842695628411 +2.2777564250739646 4.941217827922534 4.147177608562378 1.5149563252705724 3.7446782944170827 +2.462827027133385 3.9346962086471566 3.2610881946439605 4.6388471059729905 2.01608990504803 +2.1485361146750814 2.41042315635146 3.8619411051607804 1.9642940241375482 1.9156328632371076 +3.1476824575892897 1.349387212591247 4.090009174688895 4.748707243196714 1.9151367924089657 +1.1118913522450278 4.642717698227111 3.17437469581639 3.068728972616714 3.532406503265383 +3.918306245083923 1.5324819890678518 3.0611466148960766 3.8635502970625697 2.5171430332321174 +1.539933648048026 4.052530632295853 1.058821664265416 2.373131550735655 2.8355870790587065 +1.6497924341372086 4.965759578315447 1.2077958003877702 2.9775603746151065 3.7586839118845377 +1.7136988155109258 4.077737728116281 1.7022099736129057 1.0655152806059132 2.448276968076851 +2.0049960323189153 4.867216178048195 3.5029639083454738 2.570090916223669 3.0104079760140197 +2.8008585730674924 3.015879686485016 2.5522708126254376 1.0455837154333945 1.5219527220187548 +4.098604634686975 2.777287514767228 4.419830536835278 1.0646872774611924 3.6059485884183617 +2.6833449070327493 3.682700567788013 3.813983249493528 3.437982578261446 1.0677491472488123 +2.5045131572994688 3.2965794288834656 2.073368829030485 3.1378239572114133 1.326813362342892 +4.218638685718978 4.298678978330481 3.955254872971253 3.5178934295028212 0.444625101264116 +4.375083927745418 1.539577477241182 3.0066121605593965 2.8414623223263993 2.8403118314578624 +2.7906508716528835 1.316102514316655 1.8618421551904145 4.342706706921215 2.8859975367552613 +4.102101622565429 4.18481051108583 1.9768218656383323 3.3530621428982377 1.3787233446172953 +4.911035149493797 3.974211160689849 1.0950848804072133 2.7507802489035846 1.9023580996381504 +2.690625871537202 1.5912189014312408 4.4006554693492905 4.3881080912013655 1.099478568511436 +2.4628228468436597 4.594316604707523 4.465233125046009 1.171802443360677 3.9230028415588643 +3.9497034153262476 1.1868607510505997 1.1556445796875021 2.418156333569301 3.037636501662346 +3.6383308822495852 2.1551220137561002 2.5522540258046673 4.030637768944512 2.0941649981694144 +1.4328266000917615 2.5721560607789704 4.7936805585077895 1.4096508402107237 3.570676232075309 +4.166279537446774 2.0580546495044167 4.123919995058925 1.7596336104263393 3.167721939611901 +3.049129395443489 4.603332444030782 3.1446502169837443 4.385050461324774 1.9885019191339297 +3.457505313093085 1.51496788547851 4.642269261776518 1.4691879255275255 3.7204699735564515 +3.664666741718453 3.5961277388058717 3.5387700320837374 1.7121110742485595 1.8279443490324725 +4.8597773607346735 1.8871711523833379 3.2730426853847794 2.124156899702185 3.1868991541108445 +2.7695945079234834 4.346121761515308 4.260112251130749 3.6852014490659566 1.678082420993845 +1.3178116897717835 1.1772879283139508 1.3701778182608808 4.563199624468163 3.1961125109184554 +3.316885146665055 2.5368698591639127 1.7881162393701646 1.5597538932596162 0.812756550177606 +4.939640715950878 3.4947867365291554 3.5513522886374593 2.129027495558266 2.0274641399685858 +1.7308087300165038 2.8272500137367036 4.184967968168332 2.008117434681682 2.4373883018073075 +3.2021118817923386 1.4201003963691523 3.4663357171482767 3.711272864542569 1.7987660048916325 +3.63255153443758 2.798295884221472 3.6581631626625426 2.288606385533359 1.6036421844345379 +2.8252676470332423 2.5964722697090155 1.2248172128486972 2.564988768653805 1.3595613717938662 +2.073608967898682 4.851308434348626 4.656775048704972 4.142293788537943 2.824943414119893 +3.950224075718919 2.572829620558431 2.7527626155819997 2.526142995658011 1.3959125822347727 +3.7908888623094095 1.9715375562918998 4.448860009953206 2.7851262380880693 2.4653700002945222 +1.217007131971941 4.878875620323772 3.6849503883251233 1.4501211899404916 4.2899583182050405 +4.476918619342409 1.3805979483877073 2.0021552021152855 1.8918465458107478 3.0982849605930514 +2.894273509620437 4.440836880234045 4.682246968314926 4.122729343563039 1.6446635618665957 +2.2026748885782426 3.4101788051087465 4.270975120453404 2.549263661852325 2.1029398600803497 +2.607342383096665 4.184285666981403 1.0153609660853378 1.3345449192720658 1.6089215383483084 +2.0886295972816766 4.212637786309042 1.1854201515736538 1.0069109301044636 2.1314962653509024 +4.2066406867250645 1.8028754426234626 1.5824766105483787 2.2720970463933132 2.5007326315073732 +1.7486112265777254 3.4537047375404955 1.7601205481160869 1.1605254340531466 1.8074452085569555 +3.951687184129006 4.466383624971776 4.823232250607057 2.6358076009567886 2.2471624383016495 +3.1645805168103918 3.5026755844568176 3.3160576722266484 2.7287765859760715 0.6776483963195801 +2.9045992638527647 3.0427308793891212 2.7997849364317404 2.1438088625683944 0.6703618073039765 +3.4736039113527966 1.3321269040213197 4.0292975324584255 1.588347223511653 3.247177571934852 +2.998262727518851 3.691131030755495 2.6864492596614102 2.150557370070257 0.8759261401280377 +3.6552979463304935 4.999303787648585 4.681601568411063 2.814644386955649 2.3004088373341585 +3.812690183426105 3.575593009180583 2.5287459512664667 2.7779110718039 0.3439452388500895 +4.463442242045822 2.9562413642735907 2.752119107906121 1.4614675779058124 1.9842973209298858 +3.7188577589610707 1.9677350871129793 1.243225804942722 3.999336206635734 3.2653598818783838 +3.187006465845594 2.7719268839419025 4.676505021905759 2.8555830006703986 1.8676316731982279 +1.844530381382691 4.670896179900497 3.020641386758551 4.885800723062679 3.3863199755536466 +3.915839686040695 2.1941350243843787 3.523073395178293 1.385669421331397 2.744587890628681 +3.174762507772256 1.8665294927684792 1.8499924263720238 1.6652210694151326 1.321216892072442 +3.812979647440002 4.418875494494695 4.8920074616084275 1.269926419807688 3.672408045254565 +4.312214504766411 4.905870239937622 1.326631559216053 1.2414486141085805 0.5997359969510365 +1.7992503681442162 3.91975728210382 3.8448523533736765 3.767579733824582 2.1219143785465193 +2.9150115713575424 3.7571473783657923 4.160356477345083 3.5963677577704276 1.0135462462329459 +1.5763809153836186 3.0325167997102502 4.887317686658951 4.696230184355767 1.4686204911957925 +3.0330418594671844 2.9519348879007894 1.9875338550472192 2.8934060802698616 0.9094959204232274 +2.4821430925292964 3.357398081863167 2.68009990916114 1.6056633782334693 1.385815700353305 +3.41452293516167 2.41456192391699 3.3820473107139013 2.7673874774658236 1.1737668996091337 +2.4717275962501186 2.707503363076055 2.1812692968724114 3.937537348376925 1.7720236118511001 +4.372432033424399 4.834337644408903 3.5124295725732897 4.9766092778952284 1.5353107186936483 +4.420064834470848 3.4131319568899663 2.467678308726406 3.6767860939769053 1.5734851306277675 +1.2333951366235065 2.823884202003684 3.689081052536023 4.8132815221800485 1.9476863615689664 +1.751267270295155 3.0332837177354133 3.368264404487288 2.9250163354021836 1.356478905938096 +3.22896318515908 1.4243050660320407 1.306393138764136 1.977100997635398 1.9252636076347611 +4.04377837881775 1.1640433037636706 1.644689150596749 3.2823749951051187 3.3128370059210304 +3.7282950930598893 3.245668414875162 1.6543775698982137 2.4947338353719126 0.9690857358441131 +4.359148115375146 1.9605693296924436 2.7722728989254124 1.8644435140514886 2.5646314322271877 +1.8392903588054752 4.41220935083284 2.396208883656736 2.72120041741849 2.5933629974517505 +2.7608016036679164 1.661695605051782 2.357298097238353 2.8459464236350382 1.2028346449467822 +2.177427922016319 2.0780891280249247 2.376695266721759 2.0425795733607135 0.34857064211117517 +1.7188072516426542 4.899025098039498 2.9504040079723928 3.7961013367094747 3.2907430046076245 +2.875664529011951 4.249476572411206 4.456364482184151 3.088387335625853 1.9387421190283713 +4.556756902207182 2.214332652895063 1.7731928063394338 1.275614050116217 2.394689120201219 +2.0463065099012505 4.1488934402611015 2.9784559026810755 4.4080940910493895 2.542584737891954 +2.005772491672005 4.164417479795894 3.1756714898878875 2.8810789947894686 2.178653924541641 +2.8644338548586217 1.079510212926308 3.53937938186969 2.882963558779947 1.901797607615358 +4.978529297409002 1.9226514613046572 2.182463885741584 3.7923349244564903 3.453993936081357 +1.1115276294068925 2.0537039098564946 2.2870474775859053 4.54375768074387 2.4454932190621816 +1.0922029494297636 4.459000831373261 3.8737934343136944 3.7067426552433282 3.370939622812494 +4.173596271116518 4.6320517850356016 4.789226734699265 3.4134479076567485 1.4501547638722196 +1.4552375939552746 2.4569100132423123 4.516176683732894 2.0113078220840785 2.6977241611436447 +3.6716935536874775 4.2790290245008755 2.418183858811233 2.9762006273220485 0.8247660808055728 +1.819507919489534 3.7244104257012958 1.5448687919212505 1.4112658793464923 1.9095819690236682 +1.9592902042349634 3.058488438114535 4.490552563994358 3.331248173226742 1.5975679728315295 +2.4823577052705583 3.558619125281066 2.9373237188047394 4.513870745348186 1.9088842738903835 +3.559458668898105 2.6433516205050127 2.49506083768969 4.391827900386607 2.1064134006047803 +2.478847326701852 2.6915791045204154 4.5927798970390885 4.037260701796525 0.5948582903320693 +2.2028729432465233 3.453364859902218 4.556307213125776 4.778421344142451 1.2700648490602855 +1.0916299349524121 2.4899890438107968 4.196773560768666 2.8006652437784494 1.9759875075760145 +1.5865108916796595 1.9439291426524248 2.2154111812273243 4.813995541966557 2.6230494631262595 +1.7918018854360676 2.3027945806772356 3.077880692009648 2.2969960018288775 0.9332172490629133 +3.9534553177108376 3.390562194387466 3.578521130300577 1.665259414905433 1.9943467752328101 +3.0769002380418797 3.292248709265142 4.889133333128729 4.015178481365915 0.9000955765794869 +2.9384115771466455 4.650782498327114 1.5920406671093867 3.8916441113671523 2.8671222807105083 +1.7498767222685463 1.5630767710099303 4.602138955465707 3.7502671655350786 0.8721122452241072 +2.425348384533321 3.0493616615051424 4.834710830822427 1.8811012881085407 3.0188080264646917 +3.8395614821698483 3.847946046636177 3.3631103465307826 1.2619416967918529 2.1011853786772376 +2.9279556519411862 2.220310342950971 3.060619670138195 1.7583066422981775 1.4821542112134256 +4.87523810095168 2.822186233532353 4.535284069120925 4.467344934941414 2.054175673175751 +3.855205600321529 2.937739058534265 3.8008134285682575 3.4515135717919003 0.9817103672891843 +1.3848990176465024 1.4640979962300964 4.95180256691684 3.878840350880061 1.0758812180028245 +2.8917123042515533 2.754847553934953 4.1362081604650545 2.375075305176905 1.7664430061155711 +2.868590490337271 1.4919150458577857 4.797891479417569 1.7166982317164945 3.374757340774516 +4.349729992946475 3.3502244786669393 2.508097638948012 4.677892642178545 2.388937343071054 +3.1074465883872313 2.5816001865694505 2.164254576732819 3.4341866611448317 1.3744969761057122 +1.0639380181490048 1.965736914590578 4.993000177764464 4.425209144383666 1.06565843834264 +1.5761683990376456 4.769789787113714 1.6140547068726492 1.4896741452446811 3.196042567690206 +1.874256203958499 3.8459485808547593 3.8994262025544955 3.9378520050310373 1.9720667766094513 +2.2255597419327486 3.2408249636857556 2.5821062415396163 2.898876399445006 1.0635350504052923 +2.7708210594724227 1.958709472204057 1.7098898261201065 1.062205568399544 1.0387589363632836 +1.6955129391827581 2.555611770496844 3.562966299566597 2.205668497463576 1.6068687946504994 +4.2283428544235395 4.063514229460057 2.3867618860016324 3.3763286663397847 1.0032003231439717 +1.1067763338784822 4.437853612639863 1.358553039594784 2.8565721456576543 3.6524152391547333 +2.6299836567984407 2.0161749978234567 2.7365872448836956 2.1893555409929006 0.8223281629470627 +2.406408605594293 2.4249766099799874 2.5829662310338968 4.597229939287079 2.0143492887711227 +4.947730650315325 3.11286345673268 3.1599649630401156 1.889517816148965 2.231764676467866 +1.10907570311845 4.294835435339399 1.3973526950371897 2.474626657313136 3.3629725335242053 +1.706403188673896 3.1832962939906295 2.7034349208503534 2.0936567784100912 1.5978243418880564 +1.8706777414976221 3.6296245725593916 2.902541328599253 4.448255994932046 2.341607948444517 +1.2880572875067395 1.246898468677327 3.984630869753504 4.545227953350553 0.5621059851175302 +3.713130456866458 3.3881514120177276 1.8918592846026732 1.332581699809201 0.6468406267723237 +1.6694501110830906 4.756297853183401 2.565161907780476 3.519225936385694 3.230923575943604 +1.5011528192247514 3.70706118541272 2.5609400764625505 4.209399121859802 2.7538062648578037 +1.8007925193513223 4.561718846396151 3.3636036882171223 3.2253870162720775 2.7643838430602963 +3.966049675185543 2.5483071754997537 1.9400901217417736 3.1026906072335065 1.8334758477495479 +3.715580213125995 3.4844523340114453 2.128752896186887 2.8131448127606373 0.7223658297396696 +4.174554498085232 3.2536238950669674 2.8984568953822856 1.1893742229607085 1.9414110221040946 +1.0091230272670484 4.824034059016226 4.928424390519295 2.3354210066990566 4.612722919129739 +4.206667878365432 1.548308577105856 4.02988806120877 3.512492648830121 2.708241530466545 +2.3806607862763536 4.476413791161573 4.986177924180451 4.377826209382029 2.182263152413935 +1.2537335616558956 4.80533247281357 4.28314113361159 1.2991751529460953 4.638739893495362 +2.7217323962840054 3.9642420194097894 1.0057818556604943 4.581687322635927 3.7856214908922112 +2.574556629340382 3.323869620887996 1.0190207800966622 2.712116676083964 1.851497683582423 +2.0480985490267476 2.532656016327569 1.4276009030219083 2.5472334627458615 1.2199889376182875 +3.7519998253293747 3.845225163288775 1.0182037727412667 3.727675984495811 2.711075548542996 +1.5319534323372563 3.286518579008872 3.043270156408097 1.4451839835728753 2.3732632112182404 +2.566318706672381 2.4453642102533695 3.519538855317354 1.5386247818518797 1.9846033751501977 +2.908055308015038 1.8312604994561834 4.61606537923358 2.4760816191868886 2.3956246686413287 +2.0288209564340973 4.539077683687689 1.9056119423376812 3.5490385125267143 3.0003732648330947 +1.3935303755922366 3.1904684773776313 1.4005767376534366 2.5105832138671427 2.112131842211671 +3.8277001627682967 1.2420088679015113 2.1873426069492257 4.500913893907271 3.4696414183870035 +2.4488429262325844 3.072852356855824 1.6207671157015104 3.4556953867472915 1.9381304211507024 +4.423133051684374 2.8803129147154625 1.214272100205306 4.6086329146471 3.728535813647863 +2.4944320405615055 4.9739420925292075 1.510853453256193 4.5721118491261326 3.9394508581898915 +4.548689268340318 3.2487424055708924 1.6664475248926838 2.4886690183618847 1.5381514978527946 +4.293045838368213 1.7165559341938406 4.5976517466960605 4.372502146531838 2.5863086762346406 +3.1408156188506386 3.271257329581176 1.8458410920090436 2.6858888585162823 0.850114868657236 +2.526849965204865 1.0435732199078953 2.2811924173534774 2.316505826946103 1.4836970512998358 +2.71854302104535 4.240200035113769 1.7987631285282717 2.0012533005398665 1.5350707925776268 +1.5062970153557962 3.8004480819047455 3.4085247307807127 3.4324113833457055 2.294275416840455 +2.443822763191792 4.155470941055393 1.7885079964487574 2.9972032503071446 2.0953958340808967 +4.0810152598804965 1.1263520515407923 2.935816789354194 1.2847507258688746 3.38467927885482 +1.0251727510365436 4.662158994454687 1.9832184648246671 4.930423094211243 4.681205406974841 +2.4371094693508053 1.4909128903562516 4.097269686017215 3.333080624362833 1.2162536281767888 +1.3015148746332503 2.81303173330777 4.4051154840703175 1.794063056287646 3.0169981761159668 +1.070188861100811 4.805198621094509 3.793606927318775 3.8579491239535946 3.7355639233609663 +4.838004313794311 3.0517019139808195 1.5104142858995537 2.4536236003654963 2.020029721185991 +4.958384319666341 1.8639533582202898 4.416144964843588 1.2564320348949618 4.422588469984571 +3.9042923239959526 2.9257876297050394 2.5776619597986916 4.498412018269856 2.155632673686854 +2.954974241475566 3.3553266155941373 2.1716712222229084 2.138264298682991 0.40174375664442896 +2.3896392722495228 1.1298353402464532 2.9738062998461112 3.1581030939189554 1.2732129654523328 +2.4018330996127735 1.1235490721877932 3.384511390917472 3.9027119424287715 1.3793265988722334 +4.667968551845421 3.117460686279988 1.801511408485705 3.516459647227392 2.3119520113409555 +3.8536393773682693 2.806116716653781 1.2828203283221113 1.2811542503602644 1.047523985656718 +2.4833931578836834 2.416377650129112 3.204788149850154 4.886217078134392 1.6827638928710955 +1.210982402338276 4.211010286544296 3.4034841358091126 2.6862161194242047 3.084581124454727 +4.958196476465439 3.2885378461776362 2.263311633453806 3.4757480249806174 2.0634345022784455 +2.7459810925485257 1.8800771228312922 2.2873982492212104 3.8002981017366113 1.74317401555702 +1.5783765778382057 2.719939351732175 2.147943221226314 2.05042962900946 1.145720065027897 +3.3755439031892354 2.932286483435574 4.535586938104255 3.9708743698636146 0.7178979209439273 +1.8013964819793906 3.9251579804963197 3.6145461038541806 3.6264308603929822 2.1237947523291556 +2.5772190128356054 4.220176058603908 2.6109766542021267 4.894031816471481 2.8127653169442444 +4.855113961988355 1.7048307016248447 1.2907970016427166 2.67979154328572 3.4429043636500567 +1.3741510444518696 3.510112372179422 1.6557150603111923 1.4191422019371593 2.149022454714447 +4.062183751526543 4.786492278134076 2.4368193455060343 3.2667036372409317 1.101512950166591 +2.4747675643713545 1.7167164703180995 4.496189960784955 3.734428593645492 1.0746728998451205 +1.1286604728514633 4.195541673161729 4.149384087006322 3.3574163573167133 3.167486887374003 +3.4452947785448296 3.4543620510353357 4.402790016228712 4.033499206030134 0.3694021087210239 +1.8879221871313012 1.7738426305070951 3.0793031264218174 2.6962430843133607 0.39968630336766364 +2.4617793013774394 4.763110521702316 2.847125113943163 2.2866888440646287 2.368589073317141 +3.781537989511386 3.823592888441646 3.684754660089824 4.5827774953871625 0.8990070229088898 +3.309183446779172 4.412122988627958 2.6933852633769404 2.7941579713799807 1.107533643575615 +4.903287876875709 3.8440028245822577 4.269415085304968 2.4756937127839205 2.0831517429729236 +1.234756998871605 1.2344952292855447 1.2243448877860512 2.987111957984953 1.7627670896351955 +2.8287839076521535 2.0973166380355095 1.4474232547841916 3.582465753937528 2.2568674838615035 +3.550232420288009 2.7610331880490677 1.5879777406911457 1.1061914102693353 0.9246369538082763 +2.9860739134571426 4.255801266557616 4.479162428870257 2.1897725734031885 2.617921591936447 +3.212876807162266 4.511211430824396 2.2451901445038875 2.3532076575086136 1.3028202401389115 +1.1622804504855453 1.5406871657020673 1.7258525533132683 1.003119356483138 0.8158032335810258 +4.373439162334355 2.5616240249880433 3.477490139764465 2.1728128909950177 2.232679290756702 +3.9604023950597567 2.6462485507973064 1.644634506935562 1.3370639232688135 1.3496666219207174 +1.0513297083963793 3.7825752098521126 4.879421010046231 3.607974031408106 3.01268641061598 +2.5346308851166963 4.6274795593810865 3.0290479286434344 2.6783313647176357 2.122031498725251 +3.905969886144043 3.3179828386034433 2.6594021418174205 2.3929047254859053 0.6455614928005575 +4.3679484047173815 4.9773273511145275 4.651145015030857 1.0245430217482694 3.6774426872479378 +3.485199735852693 3.4998424411427767 4.705758804350096 4.233386035694819 0.4725996629127705 +4.027370875127492 2.1022903417689567 1.0171344313004442 1.6759700128728374 2.0346988434315816 +3.6929556796276577 4.636247902592615 1.9590261665462188 2.722860973953505 1.2137725614434922 +4.827943609554486 3.829177375923231 2.1657769710764216 4.036683927948934 2.1208080607909636 +4.577954233705366 4.326732502559221 1.5707357564475095 3.297512127703043 1.7449552987187078 +4.442451962791882 1.332551405516905 3.4680599853313265 2.107212316589298 3.3946115909864893 +4.863749948122053 3.492670854472269 1.3108216517621814 1.9968108108419935 1.5331141534205932 +4.7724874769525645 3.500104939091711 3.797529528888355 4.553010088043065 1.4797662646222003 +3.641068464146292 3.0615420011520054 4.37996514815639 4.7915455232377475 0.7108089240174038 +3.5985763790179286 1.1680103532841088 4.128827739486883 2.6139938052106317 2.8639785358634167 +1.7007312326673194 4.540478484949881 4.103486232111041 2.017664995754753 3.5234662885972434 +1.0081718547856835 3.532816408731517 3.748118115006741 2.29083563752286 2.915047571301353 +2.5655380357310262 3.591751571263867 2.355735736619462 4.663270642565557 2.525436905303806 +3.2373984576877497 1.1351670720307752 1.3669473783404786 3.7026730426086645 3.1424498687429048 +1.3533249486941847 3.919913517635524 3.5435433505970306 3.3185400658108306 2.576432292994507 +4.546094892317525 2.2470688206664478 1.746801132961346 1.3196459747871705 2.3383717427488278 +4.570040615589519 4.085482869314715 2.4646379905885882 4.247337681170466 1.8473804146075703 +4.6606910626532585 1.620663541078259 3.8464769120519353 2.0221476168617856 3.545411782744343 +4.310770298281787 2.8324964662810492 4.083412915587374 4.088682578613566 1.478283224462266 +2.5919932853167 1.961428232378716 3.589039629250742 3.843679129426819 0.6800393819747537 +3.185731357098708 1.88510434965105 1.0274092427823431 3.671987677421828 2.9471046315769787 +3.461389942878982 3.256319177025088 2.0322657199785614 1.3148130099795123 0.7461852384581743 +4.076385041935305 4.317688619803254 3.969565271030353 2.2713115512723636 1.7153113750464435 +3.6157140716240415 2.4153818884057947 4.590110998460008 4.743665618350898 1.2101141976521548 +4.0476129098144895 1.106628053319938 2.4112788703865355 3.784889351398378 3.245950966924156 +3.9926603581506543 3.3680710544416215 4.387399365768909 4.119113759574728 0.6797712591737852 +2.5856146020446817 2.199387906104047 2.95282998556311 1.706780126022211 1.3045349029899942 +3.4878071245624356 3.021869772732676 2.0156035034360045 2.5515786312834634 0.7101879705410596 +1.2289182939336936 4.2579650270564215 2.104585202516286 3.640482867633961 3.3961898870874987 +2.78589892165333 3.4396513209056616 2.8737222246259257 3.9912487609027467 1.294703733991313 +1.9253585352104374 3.6814368302677063 2.841548381583815 3.1263778501411887 1.7790274884132398 +3.922912028129647 2.8132397921734227 1.6575432575957878 4.997388881712209 3.519366599855959 +4.7192872876230965 4.410985026492816 2.4941319984771373 4.438357015794164 1.968517513810694 +1.1567265459576865 3.974025523972519 3.13702545137369 3.649125220277889 2.8634628869316874 +3.6770865065283322 4.7663426333838 1.0471196194039627 2.406142375692034 1.7416721166743763 +4.601162428028637 4.319821107949206 2.278567552522829 1.2306894702543207 1.0849891306749406 +4.602569056959785 2.520042907690627 1.4947127182909599 4.223449935256706 3.4326261028028955 +2.899594171303092 4.46849699885669 1.4088664988678596 4.89475176075571 3.822676044520723 +4.704390543721063 1.3246775892981177 4.142648063004945 4.488146877178908 3.3973267556845173 +4.794751620795924 1.359734706508347 1.6412579797196725 4.499887977052316 4.468904414181599 +3.4536749067507992 3.4345438717509107 3.6088968533785835 4.025581139204233 0.4171232318562447 +3.722687432364207 2.7731649974619623 3.906622676868101 1.6421305588643857 2.4555075660408057 +3.395606069465967 3.1784695705436703 3.980103168835839 2.809196863747749 1.1908693607861762 +4.588305875839442 2.5547451464113817 2.302483056618875 3.5304880790990416 2.3755768932005754 +1.0876658836988429 2.6236278508143167 3.4142486099956044 4.035904274321961 1.6569957541931963 +4.6036859204880685 1.9681679230197813 1.6157683610177913 2.303534351639986 2.723779942072373 +1.6215516008015416 1.992027847328476 2.7918467784195085 1.7824880653084114 1.0752012188302131 +3.360090054990824 1.9112031714384643 3.794654165505088 4.71304817811282 1.7154360272897968 +2.610946622185238 2.8279737855427736 3.6042789453770827 1.2646552563903244 2.3496680181895964 +1.7905820825810692 4.324215432053437 3.8980251937289343 4.2911718062675686 2.5639544084303005 +4.0355700245459385 2.292961468041199 3.1045977646038625 3.2649228063631055 1.749968199773537 +4.63634287860892 4.863325672043139 2.5606097747636496 1.7097247581233916 0.8806398242517162 +4.472094390431545 1.3593330110075428 1.9567517966868837 4.501539611497623 4.020600505850195 +1.7374810104067526 4.335659593100107 2.3322747704918045 4.010604251203432 3.093108758739694 +1.54640080739515 1.6531563713614914 2.6099730257233427 4.525166765705632 1.9181667842252716 +1.3254243072802554 3.963348722636032 3.9127232967025014 4.129901865295288 2.6468494010400607 +2.4789998889267753 1.4223642294030543 4.650563771290535 3.854319801581224 1.3230583419772433 +4.280996154029703 4.703928271850659 3.7301975212418204 4.7021922263959794 1.0600213597528305 +2.4308388050492433 1.889931062301899 3.9767817413642277 3.8859136740289775 0.5484871847411485 +1.0083045047492885 2.854190850311777 3.1954462291354213 4.078753079366862 2.0463448859857003 +2.329126371017019 4.395549314428507 2.3989484798621126 2.879220612754796 2.1215006723285965 +2.8648398149188865 4.995216030903855 3.276102632718625 2.8460532299216386 2.173348869942531 +1.9365951155582755 2.2067148818066844 3.370895316845926 3.098526996308048 0.3836002999877857 +1.0724215533249253 4.475155010830884 2.773069036855379 3.318316214137798 3.446141243066642 +3.928214854019571 2.0946588411940987 3.384290188265977 1.951829892407293 2.326772475206803 +4.665142337382482 3.6030306035496475 3.0531021681061867 4.697808090967538 1.957840368324394 +4.219660983231221 1.2230417114619732 3.152163567343786 3.1753812961436942 2.9967092156012543 +4.495553034739048 2.8358720829521955 1.1118421397580258 4.709463443819951 3.961996959762127 +2.7094820690710417 1.2218702359090514 3.3035612131900285 4.74141225571824 2.068913866419538 +2.7295488935014802 1.9998506953889446 2.4217894777937805 3.5496570675149446 1.3433334508870496 +1.1126838580565357 1.1067995885850803 1.2241522820230673 2.661100634356855 1.4369604002553442 +2.5639472240244783 2.591117215506365 3.2671592326483925 2.867492253855112 0.4005894436638019 +4.288502510689526 2.7679818979898245 4.45047081334378 3.2178868400984535 1.9573569385132366 +2.2053896340861443 4.9171895184312975 1.4679202379536118 3.3595660632157878 3.3063851168559 +3.460394775852401 3.0770659983326567 4.051703447262296 4.407609960486303 0.5230778124046666 +3.3204356723660777 1.474132591615303 4.29710938016138 4.249985449401011 1.8469043642918033 +1.1709540583134919 4.365640002220896 1.1989895723244053 4.1579644371122395 4.354486253353629 +2.968696608179107 2.9188856712750195 3.4577040168672912 4.993037787414648 1.536141567831047 +3.928838311367158 2.808349963302494 4.343644913076952 4.130948423737591 1.1404972313539252 +1.9350990375487012 2.780708194324759 4.402114799681201 3.8491655553791726 1.0103502921253107 +3.5369947904004246 2.678913276880399 1.938888472577558 4.748632917456524 2.9378508691512963 +4.816377505468209 2.2956231497029704 1.391334347352434 4.140893303515489 3.7301845766028645 +4.801161844611583 2.9806316968007507 2.365607471400622 1.735576952213107 1.9264652797794775 +4.632426597846127 3.2939431956275516 4.281552317440987 3.618306865960257 1.4937979605436909 +1.1905407623247077 3.4116144490138565 1.2126103183221457 4.80354254980651 4.222317208928789 +2.248309657339687 4.878649166639833 1.4248477171082081 2.5239183073311287 2.850726590972605 +4.345389842996237 3.8613505524110057 1.6619635926699066 2.5321229358530295 0.9957265273955185 +1.8105218110966725 4.752168388951835 3.799021090072687 1.2911716086202412 3.865565108833156 +4.439753323979913 3.9309220615306804 2.7253555848127884 2.882477007669953 0.5325376936577725 +3.3534598064409225 3.9707170519516106 4.737835771814844 3.2675294023633326 1.5946182386970007 +2.1039433004251427 2.547625038960851 3.69522418375467 2.635617364693316 1.148747185463969 +3.177224274233474 4.480752551963911 3.351284148402154 4.680799172549932 1.8619334494759865 +1.6319145214844304 4.640408145852684 2.2167435985650266 1.313871898151815 3.1410525616855685 +3.2084591213097817 2.145319638852082 3.727702524678846 1.7942880644038746 2.206435368271816 +4.823195305837332 1.8909054903339886 2.7730098211732197 3.6922966198096434 3.073013468934335 +1.605752054116501 2.1277389538640223 4.884427120678636 2.473616253086335 2.4666737447034155 +1.1560919929246989 3.4967239454519032 1.077188652298092 2.0617085479387303 2.5392592152247015 +4.314185605568129 4.013455133160289 2.2436212286482045 3.82305432789981 1.6078083629730797 +3.0577307463701118 1.9052921120938593 2.468511292563441 2.534692279120366 1.154337354829238 +3.872906312968384 3.2097501001033564 3.6349799789964115 3.493418684606304 0.6780971631933647 +1.4087642717287547 3.373281140943512 3.6448982814941937 4.570974517828137 2.1718526020270787 +4.096239175112664 3.735364526428386 1.875908543630393 4.8542763975946475 3.000150927135273 +1.9959575464727792 2.4206142246172244 2.0756559729350257 1.2998516364532615 0.8844239157760181 +3.072313189539194 3.9891168883694443 1.5161203733308652 1.451741196214293 0.9190613149485922 +4.929086570491596 3.933727287794173 2.813870447463 1.655198855282554 1.5275012144603677 +2.3927626222960083 3.756599243898625 3.251800757073 3.125215911128117 1.3696985265551427 +4.979295797863571 2.7193635929521935 2.2326402425037832 3.256156247168408 2.480902775725046 +3.802394939785719 4.853457509033422 4.769570926319842 1.1277796077108428 3.7904322356123785 +4.785597950217124 1.3485796502535048 3.9989157850185997 1.4856018968124705 4.257915158259335 +3.533348903889795 3.005623192510985 1.9393195882172392 3.390030283582124 1.5437149827919463 +1.2646608130594101 4.823000377337451 3.266846329429267 3.246380879564408 3.558398416330668 +4.794411783683646 4.51139905053341 2.421560960407543 2.652547422150388 0.36530939302684984 +4.911046016276915 4.513154391039348 2.0499585654262487 3.9806580783487915 1.971273282585024 +3.3259634996899017 2.000878818168381 3.432435439243803 2.4695922231655327 1.6379610715615118 +3.2566545910891813 4.9324187455629165 2.13279067469399 4.476132122231045 2.880873937048293 +3.0711810814131297 2.3594235147036016 1.7870039247045097 3.372755885685987 1.7381622811247714 +4.501428992046361 4.928559228729816 1.8828393501786822 3.640852308132519 1.809157206939978 +2.3048218667926683 4.8903804811316505 4.324736286371247 1.0852077702439669 4.144835142075537 +3.7778969014641355 4.319499788264609 4.5172441385090885 2.5447309737022845 2.0455175072159024 +2.246198782051387 2.099300513839738 3.874083835988638 4.277194733130715 0.42904253471919507 +3.1489373160770717 2.9449076128485276 1.841864985525827 1.294879444036888 0.5837990256907555 +4.1558947184214885 4.01831760739541 4.112660828932494 3.3254384012732547 0.7991536848992117 +4.632742488678324 2.243727240681438 1.6736281907890609 1.2423603556422047 2.4276296671432154 +2.779907650290186 4.513416023370338 1.3709546246059503 4.043351218421667 3.1853971234646457 +2.3581259550310296 4.385148958971558 2.3400898562403896 3.8574570084246425 2.532039757395573 +3.9199460905982 1.8426946971515856 4.012711597709898 2.1655863465271783 2.779720317789674 +1.09639767356797 3.4124096230296512 1.033833023392119 4.3368726557856405 4.034102398701801 +4.761009290272631 2.495166424253104 2.5009790959020006 3.434123375037317 2.4504697792820367 +3.5562604470521615 4.306172672438398 3.4154144338798975 4.3920655478690716 1.2313471258097908 +4.9804679432065075 3.0903478387590773 2.2357371610969388 2.5804761070710382 1.9213013688923708 +4.605520124192877 3.3444192104531507 3.829986985831277 2.946702205532521 1.5396647419950207 +1.3334158942621834 1.302024871229782 2.0717018912645466 4.202321444805483 2.1308507874222444 +3.5701757367809503 2.3124670289688756 3.6345411941170807 2.1048795935320537 1.9803271967052984 +3.8320436763835897 3.6282822461423923 3.1558212972153443 3.447990405165806 0.35620430667596786 +4.465680981110647 3.352079687154337 2.86282829714716 3.6587542159233384 1.368797249442324 +2.8523133140337045 3.3402531889379214 3.6893200902993177 4.352823306495901 0.8236029622486514 +2.5806887843479367 4.848697849385996 3.3074886866775137 3.0890164319371163 2.2785072405384548 +4.240642400185044 3.9919791361486587 1.4549797020861774 2.5690043557600424 1.1414395944921498 +2.2973781096828234 1.59344141378087 4.674231357765092 4.94171599640372 0.7530437595153396 +4.021346586163558 1.9099852598777072 3.1983074808081513 2.864055057410839 2.13765556923526 +4.013189552437581 4.497273399567472 2.2433552201595983 2.3637268369523494 0.4988251168309162 +4.859824369932917 4.16953240059894 1.212484994820044 2.052901297095888 1.0875672687507578 +4.740589053028365 2.230066055986996 3.941542622421189 2.091226768001581 3.1187168001904473 +4.523972948281669 4.118771755124351 3.571533166018503 1.9744046130090016 1.6477280181432667 +3.095630909289837 4.3806984745588995 4.5694123353250555 4.702735175596544 1.2919650254726762 +3.313114965168405 3.742984018538481 3.9146113399769717 3.0977477301600835 0.9230674732046203 +1.8484357517723184 4.437320709437643 1.0912000398906474 4.455707861426135 4.2452606757653015 +1.7458957452665942 2.1145127343219183 4.236593846173831 4.332397268363427 0.3808632042130757 +2.350775539317182 2.4828313490752985 3.235024358858028 3.758147323390356 0.5395334771003216 +4.502856257234571 1.0598869348236595 4.2206916711990505 4.55242153736866 3.4589134795729652 +4.008575644123983 1.30337902903426 4.134170866844594 2.8285226953831404 3.003798574128021 +3.7525381869716483 4.849942493885937 1.1689854128561468 2.2745130247378973 1.5577186888096954 +3.3165673129354722 2.2706369108811026 3.301732367757534 4.915663729130343 1.9232121165290905 +1.011550539776239 3.735474381686625 1.565075720170312 2.767401226027897 2.9774733783131517 +3.6136645295512295 1.8451213979625942 1.5516785766753145 1.0906409574432177 1.8276488980754857 +4.254767807210651 1.3739271794074948 1.208559142354479 1.1991150724403132 2.880856107697472 +2.9345260291849287 1.4940101961632481 3.245753616074115 2.971906583230029 1.4663144487399884 +2.907837725939645 3.155889423043299 1.2016017014806017 2.662527852711012 1.4818349650972953 +1.3630386397318173 1.2698837846324444 2.4431192446932957 3.321904205096781 0.8837085682847825 +4.30954361271957 2.485768163924728 2.2465465418861483 2.2313342153636846 1.8238388915978987 +4.646765468400204 1.2516279980674092 4.532270192592538 3.2920575908929224 3.614565774733156 +4.101512554682175 2.591966692159059 3.034339867259274 4.890112260743872 2.392199800911331 +4.409389694961003 1.0658169574256502 2.8728568383364785 3.0828650527718047 3.350161503766642 +2.0563943282023742 4.335180040416554 4.176171595524242 4.226129158187965 2.2793332534446966 +4.907262844595326 2.026401929708217 2.309040918466601 1.671876406179067 2.9504810161468256 +3.6163399298119976 4.50912219553326 2.786718540344389 1.3322302942124669 1.706633010381056 +1.4598684027332438 2.4294522185547893 2.676449941700568 3.6215531716137894 1.3539988519550052 +1.6767018867296049 4.702163798970982 4.021975184862371 4.620964603093321 3.0841867818885262 +4.738615880643476 4.38967999941155 4.661925460029098 2.4944386554933224 2.1953941097324203 +3.417318995205254 4.5569797507365895 3.4253707179763744 1.4133248684644317 2.3123916489722256 +4.290746024359587 3.506078557121359 4.42457270277672 1.3427081275977892 3.1801874620664843 +2.5856171584845837 3.5292160877314473 4.4230961526148285 1.294408012296926 3.267884394932251 +3.0113221929872345 2.4263120764297614 2.0949639398486695 3.9116186139924554 1.9085258818163964 +4.304023335923447 1.7398616818585406 2.623911775045709 4.195853163038803 3.00764437981995 +3.189608302477941 3.5610175659116114 2.712617021032055 1.1522119917092275 1.603997723346363 +1.33954279014606 4.355564613772078 2.459186427841724 2.9564365869803497 3.0567376991413244 +1.6799817530924064 2.800909782713492 1.939553756445656 2.717205682174726 1.3642661636133693 +2.9864406660860685 1.4431744889028888 4.1974190202303285 2.8943351216133406 2.0198262649229104 +4.356436060589088 2.057972383798428 2.139049341410792 2.072852868261989 2.2994167187753027 +1.1278028035810808 4.607768818449747 4.823991343322888 3.5836502955455076 3.694402438750061 +2.5927540765395634 4.624566833085927 4.4581842936608975 2.8587891596753163 2.585793470538838 +1.0985334071478419 1.7744451461557174 1.4440403273682887 2.454175018763228 1.2154130053970131 +2.177812589765609 1.7571311591992829 4.780716209282384 3.469845057710851 1.376719304014369 +1.567140749012279 2.8518784038600304 4.609340020632216 3.2556521697012397 1.8662855192981127 +2.0412660271342324 4.092254144564041 3.488767240866916 3.2583325755033736 2.063892534227371 +2.805334785217575 3.2993044616199714 4.97232430954158 3.0763668925581094 1.9592500014596717 +4.715358926702721 2.134616848651707 3.712369267172069 1.1171128287100753 3.659998040272904 +3.0411873878127884 4.3464708980179845 3.4063028955808945 2.03157537751316 1.8956900566670365 +4.57838795776448 3.9783580252458597 3.502749815402453 3.0233135187101667 0.7680462762778778 +3.9063556736135974 2.4390560722576686 2.9020448756825847 2.3365237517704425 1.572508270798637 +1.6629992343133408 3.406841433049535 1.0420208109250866 2.76244780316859 2.449664191217464 +1.2679918189278032 1.5587819789170085 4.5579618599733465 1.7001792903846908 2.8725389696558143 +2.6275226659934567 3.5512211199232135 4.296808299202012 1.969932408000215 2.5035115831264654 +1.7402032073410583 3.368862466816441 4.120196684744406 2.6031251078869615 2.22576664382941 +1.8517816702941738 3.827715016562897 2.8749359167770288 3.142172534684976 1.993922766520206 +2.138246647874202 2.6556896564193875 1.4077752863897879 3.5691447567626917 2.2224457821401042 +4.019522781161665 2.3308020375651677 3.3148113894153597 2.9411323701327885 1.729570397325617 +4.010682606607762 1.1964282933603498 2.995041448381615 3.7959483615078415 2.926000550773196 +3.4043693205376635 1.9477970978380061 1.7466065336454624 3.6806105644217553 2.4211514266974645 +3.183352348341511 1.5806403524489987 2.116476774821688 2.488185702523364 1.6452517341461426 +4.101629011138691 2.22447612726251 3.9148926262311483 4.9846837796562795 2.1605915998613288 +4.047263799857128 3.7118653361896086 3.497414728854623 1.284355462829311 2.2383305038289194 +4.56791504508894 1.9571099520813986 4.826421721386981 4.205412573179825 2.6836459520270353 +2.4988041561511283 2.43593342365428 4.78549091562375 1.0532722412029552 3.732748178313132 +3.8770037702761844 2.3507067373073203 4.900335199467944 2.1327322983272468 3.1605709059048115 +2.3102957133744346 1.4328276910205497 3.907836162229776 1.350898477862449 2.7033091669269695 +1.8080405550888567 4.610982548536196 4.160188909660656 3.5786087087711915 2.8626420224500957 +2.754384331520862 1.92630851573041 1.9968272910501073 2.7047152492169917 1.0894103533630948 +3.18072779149313 4.86211545514684 3.4893229585563215 2.7407905477232943 1.840479623781363 +3.3311176857117886 3.1461488894577823 3.464562792248664 2.411558795782018 1.0691262190042785 +3.8900008773835197 1.339367055668335 1.5636451130663453 4.058289585141196 3.567770162795106 +4.922874879457009 4.159506467149928 4.848902846177033 1.5299422996000933 3.405617483312319 +4.424431765862411 4.923392307195266 2.1223779690172733 4.494970624486881 2.424491190042872 +4.857388918211633 3.3799776758257627 1.8323311194840253 2.820085575301975 1.7771895914944966 +1.6501742237164714 3.638717707644755 2.8520174244295173 2.193050008419223 2.094885019001501 +2.3698907753543104 2.182556046520452 2.2559977622121976 2.984843180445862 0.752535676434985 +1.5104654184704205 2.1682574094094047 1.1564979297257953 4.850824463374759 3.7524310574034856 +4.641516638844326 4.839232704359516 2.271854933865818 2.4647169621694163 0.27620174605564085 +1.6840455255133886 4.803449333833262 4.090281326150325 3.294149672870324 3.219395242699299 +2.7409832892198653 1.5420077873432874 4.768825135123879 2.9767962806786397 2.1561330360774376 +3.9817491308127844 3.5588268655207025 3.3259040944115013 2.3505910166125084 1.0630610717195557 +2.4309035168517914 3.1069968786388125 1.1896452696424804 2.7011275992903068 1.655802242627451 +4.1483772860594605 2.257334617185775 3.150880188759345 3.9274593388343337 2.0442890088811083 +4.182337798422141 4.497224706945342 1.9111307444869383 4.144771431065726 2.2557270406455334 +2.904753169095835 4.021245049637848 3.0550836681708615 1.8601408514901503 1.6353722678500673 +1.180390681028121 3.7985177868828712 1.9447936621255542 3.782364290454132 3.198633357624355 +3.0989739715756937 1.6588309944859727 3.0635662248232403 3.5213017125676336 1.5111365164012953 +2.036504524477215 3.3018037466931633 4.208407353733405 2.549676893239363 2.0862331754411008 +1.4877987292261983 1.876294541279489 1.898508285771935 2.1793925822930835 0.4794006508288513 +1.9820899018362246 4.9811962040258315 1.8001185096585943 4.1785608866438935 3.8277443426217608 +4.211125305373487 2.7345726633206646 1.1141721233547366 1.875156967607186 1.6611157810144048 +3.6167770820027623 4.157445002860577 2.25624449221016 2.416488721241912 0.5639148992380788 +2.4849192119687737 1.5955173311381095 3.5358697202648406 1.00751877596251 2.6802227898403537 +3.3821879933879924 2.3783162887324503 4.930229512959361 3.3418597893567323 1.879009520536156 +3.990186876823089 3.809627816615801 4.716440639939464 3.8007771114052487 0.9332959186188848 +1.048438516356144 2.5805527730956492 4.185981874923781 2.7673563600647606 2.088030758181849 +3.923088151195851 2.4574657142720335 4.126722695314441 3.958431301215873 1.4752529006723385 +4.992798783641323 2.839571925026392 2.6928722823296427 2.606519540660546 2.154957702753001 +3.547367263357232 4.416133306617917 1.8616444767212985 2.9505259244108815 1.3929886019079225 +2.8218176010094895 2.352686096985867 4.550224965986969 2.4131078940199573 2.1880022274578055 +4.143741482599468 3.574017623260545 2.8037240948743474 2.8813089444313618 0.5749823343206484 +3.2747445301626734 4.695362949237889 3.716484516385998 2.8646737089509133 1.6564233590115107 +3.4673276478274695 2.8180101330507026 4.445830620281396 4.322825329846678 0.6608657476907138 +4.891392963521254 3.6572848055085636 1.193166431129555 2.5013648829072888 1.7984454773239957 +3.0680604079654934 4.725370754082645 2.3673023494950995 4.195999780559858 2.467957025097844 +3.6712858019978922 3.553739313859857 4.764382283505749 4.414460556472099 0.36913736186384294 +1.4949877033841905 1.2416864227761328 2.1087640632567055 4.743142767117784 2.646528423069448 +2.7044001941708173 1.6015141116585232 1.9638893770857475 2.274349130215307 1.145749959333441 +3.870123179959926 2.09797005592669 2.0331496309376402 3.5038800793103473 2.3029491411647243 +4.700243596449327 4.8492681235074695 1.084450758475628 2.897623686764828 1.8192867771590424 +2.5843370127237324 1.6290117869037415 4.990997597616792 1.8169008253608592 3.3147453305998553 +3.0982036252516543 4.8347679766238825 4.17491976192743 2.635664955301537 2.3205518968938748 +1.1570025476233585 4.019887842902241 2.032864497966598 2.7560115294940166 2.9528044031278085 +1.979236630432729 1.6088948888173817 4.871877094787532 4.613049603427644 0.45182372211554084 +1.3756437822718075 3.9634080115455608 3.133419016112423 2.1974736996162894 2.75182073212988 +2.499863718755033 4.842830636210963 4.995310353567442 1.624340357002164 4.105232355669561 +4.593832454693194 2.5848811283603346 4.8013911593567045 4.390693448646413 2.0505018998180002 +4.343869266927037 3.654257575497982 2.6118672115640695 2.2671162302505055 0.7709847755126602 +1.3540962641658014 1.7562127339861413 4.953265537647937 3.648483912826286 1.3653397905917046 +3.1477895830777123 4.000893907673987 4.198320204567505 1.667455986577862 2.6707790396334166 +3.850475305324198 3.7716038097030715 4.814565673194279 4.039159058316457 0.7794075514246678 +3.256565882821235 2.1782940142545266 3.9147629510577633 1.5667977288338775 2.5837203616713635 +1.4106275015880017 3.420538478252975 1.7444652799801506 4.807047473465513 3.6632160495897534 +4.409757771097102 2.330731016499203 1.4782297697552598 2.8345918831720636 2.4823517939740873 +3.9922095465626084 2.3547997500686133 3.2376329905880006 1.4941691055177126 2.391814616603655 +2.1563831763925747 1.069299965007998 1.3661313189149742 4.145751254508742 2.984633460715822 +2.03326034753681 4.344710756638708 3.5577838233559897 2.802386905201766 2.4317539961300016 +2.8710569400538573 1.38946391204973 2.4639526468020505 2.0162554357352653 1.5477566647982544 +4.328034578970753 3.960446931018435 3.1639022356322455 1.5608786558272008 1.6446292215384288 +4.4996129096351805 2.719132504677648 4.703421144434805 4.058567392669767 1.8936596403797552 +4.280709992458239 3.02939221798621 2.645524486293676 1.0835577500267703 2.0013835859009936 +4.876729381499006 4.172155561695369 1.512140810798512 2.222383507488051 1.0004343835322311 +4.999339677514415 1.44893981710629 1.615810907971512 1.7880687765250687 3.5545761972511785 +1.825657786344245 2.9639849148298576 1.0783842683265594 3.1310899679837805 2.347208840485129 +3.974887131087186 3.0173232023171486 3.390929360775129 1.344646106968098 2.2592485105655373 +3.999035040193234 1.8522940802047696 4.558071108465379 2.0131050958929997 3.329466737247986 +1.4025886690025375 2.169708180211733 1.508482134851973 3.0029080126050944 1.6798157781661722 +3.927706656119721 1.0275427002229627 3.5371306895230883 3.1432851503745676 2.9267841190955513 +1.085381919457319 1.4707294490161469 2.5143339088273886 2.384025325068867 0.40678378229502127 +2.226086433983498 2.582427835253201 3.8934835557993224 1.1396272599097368 2.776815386854078 +1.0599663920061242 2.5815976638007907 1.2199151271308515 3.397843419969548 2.65682769031993 +1.2377339145739814 3.9502422893382896 1.7016512796477183 4.99978223094198 4.270289153564627 +3.2426847297829444 2.758093488488847 2.31499073562092 3.486532545123005 1.2678086931987702 +4.2756002015624155 1.053180440557322 2.031137877200381 3.5708937813371104 3.571391515983657 +4.3623993702327555 2.6532965023695962 3.040086182840288 4.2094903958764025 2.0708787570509024 +4.657132410600952 4.410731378321179 4.444442122214433 2.427330159066883 2.032105838922151 +4.0562113838346505 4.022960289291266 2.96311668348592 4.649419080063968 1.6866301930160033 +3.263138777871813 3.98960913630661 1.9280639563331823 2.484048231535184 0.9148101966835952 +1.7278231561221524 1.4047055005713385 1.6293663077823282 2.836253973641149 1.2493929955505625 +1.8990004831040057 2.9867210407915814 4.061878779265037 1.6417227136583201 2.6533547432465854 +4.550027787127846 4.293332181235888 2.3779518635781267 4.135607033216303 1.776300742959943 +1.9069153010933984 3.825912773236165 3.4341488194132337 4.132263373966713 2.042037029382604 +1.6471342014086456 4.849075440882448 2.496914770608964 2.4231240679246757 3.202791402643274 +3.2193000959275033 3.261863096243053 3.409381606968596 1.4763459444860292 1.9335041974159966 +4.961925537461065 1.6607154693527857 4.530969210251282 3.8105145130667895 3.3789114940280203 +3.1618631414503002 3.863643153550048 3.8743506997813917 4.441317281579568 0.9021897196591361 +2.7054334529912043 3.3110621296326253 4.654627079806977 1.3427860543931462 3.3667606198814566 +1.164146425732024 2.4551032092712566 3.6426458110315427 1.2057474242659199 2.757724272726854 +3.838091894997749 4.519210094335142 1.8366212906059798 3.248947513215833 1.5679883164552053 +2.7351617882362844 1.7780933049613044 3.8384673467484838 1.1018958432303303 2.8991039435566774 +4.78145921098791 3.086127659276173 4.627953859623494 4.068219346748565 1.7853436070215332 +2.3896151440726783 1.3821094484888579 3.096402971065198 1.7904698424778003 1.6494026382226707 +1.5023106386277818 1.5927407336352135 2.8129092738200168 2.4886664194842303 0.33661703859262854 +1.514587481140063 2.1994947662386206 4.1205625634218634 3.913496978156585 0.7155236863880392 +2.727590525338719 4.521570180893493 2.5330737617199763 4.689668763212689 2.805221026052631 +2.7637541462196604 3.793260221553527 2.9084377055337485 4.370013552205037 1.7877602509067698 +1.452074154638841 4.338663669490739 2.6062405514185563 3.707748113948658 3.0896145289605177 +2.851622034852325 3.499154934475647 2.7983375881250474 2.0938329193130834 0.9568833181075123 +3.8988538836048448 3.447518106068666 1.981291373887632 1.6614976164603723 0.5531473866643791 +4.33650864763008 1.3203858993404562 4.371999587123112 2.966178276927501 3.3276613392817267 +4.893428112248713 4.589171493177398 1.19774051460542 3.9866945332673827 2.8055011332129984 +3.714496187857144 1.5038328002156391 1.6856295372047634 1.2087897790484954 2.261505863007466 +4.872742469446322 2.1548302485631634 1.6673351122914464 1.7670270336460439 2.719739936025023 +2.383756304402182 2.8805939174028126 4.033178291666411 4.786294733280541 0.9022372128889902 +1.7506237963934805 3.8184363810776842 3.8237434339202103 3.347620917810193 2.121919304715733 +4.870655183274664 1.2634125933928235 3.892024717098779 4.44790060021778 3.6498215161416834 +4.299788079933155 1.1384570702622012 2.027282863003214 2.215438935540678 3.166925395449014 +1.5044554299661237 4.443536032305463 2.060476371785018 3.6964866215042043 3.3637366609521635 +3.793738915110835 2.4777881968559936 1.422215143229907 1.2357262875322714 1.329099088170196 +3.9862019030780647 3.742573151125277 2.325799576118482 3.6663659700117694 1.3625245778385524 +2.688940185472154 4.576248646002624 1.6658614488390406 3.7520531617408874 2.8132061936819053 +3.409592614264724 4.801345699481297 1.9407437694842935 1.4952613511934731 1.4613114778226057 +1.3804188843957053 2.1479042982041725 4.176625073054925 2.570732414218927 1.7798665939086855 +1.923248560750622 4.183249171844766 1.035388156151892 3.9285061779722747 3.671203433525278 +2.3132656557512017 3.651591723975088 3.9344371195120575 1.0674937808800284 3.1639343817175116 +2.0407693903197455 1.3494802977470837 2.9036526750234803 1.7080726488610778 1.381047504059301 +2.820643135192992 2.585695930700087 4.291282156630806 2.64544653133884 1.6625207049475288 +3.294097659379654 4.353001851033495 3.187370140728197 3.8626160621765937 1.2558802257917627 +2.32947870644892 3.248339316786978 3.701498133328598 3.744392936252823 0.9198612859277948 +2.5556982487155984 2.5916542598967593 3.2189338222181307 4.565725940621475 1.3472720010945929 +1.528192927458747 1.2387057380689783 1.3600776228487659 3.7274567473909523 2.3850129459059373 +3.190010634383891 1.9008982113698747 3.4527049049308673 1.9292839447609147 1.9956508364576728 +3.867082094339711 4.477688256802855 3.3988469405413295 2.293712851431386 1.2626009823181794 +2.0905283314928442 2.1885816425293405 3.5399976687768304 4.495996898194431 0.9610145568368179 +2.3634085659305963 3.989712491212896 4.776930631949337 4.095292064280063 1.7633761919462438 +2.7435204422329003 1.2415282309547182 2.753013524169906 4.941260735880101 2.6541300763711195 +4.764883517654348 1.0034469134794803 3.461337934202343 1.7914549918018676 4.1154482585189465 +2.750644186142492 1.0837742408468976 2.242055116047319 3.2424505949102453 1.9440284279452091 +4.377657647143041 2.86688497009622 2.866269490778893 3.450748518905927 1.6198919149225788 +3.6973833687653976 3.3772875032499345 4.332647243631426 4.278425034681888 0.32465583479041427 +2.902200693577423 1.1384241675110758 1.6657986030816887 2.39995441732972 1.9104691553377307 +4.873783737577508 1.4147301639450993 2.445573593335602 4.883133362522031 4.2316367109683855 +4.659422833783718 1.4351558089118561 4.772689422715149 1.4906037935823293 4.600867736051127 +2.500168454828901 1.0160622161883976 1.8239066294824675 1.872811103616256 1.4849117735279647 +4.149829969406451 4.953336596589756 4.35259090289723 1.060068496914162 3.389148372943861 +4.651318572257244 1.8752500947560558 2.835357472317974 1.9167623615239093 2.924102113358993 +2.2734686838929163 4.6606203377355655 3.0834164050528785 2.6461461568464477 2.4268700600588833 +4.758656056978978 2.926735394564618 3.135969124828661 3.6865445257330762 1.9128686796175332 +2.404946953668766 3.742710464695688 2.157951058496687 2.658983700256401 1.428511434866307 +1.2725434265112763 2.6723177966461678 1.958299638329108 2.503822788625988 1.5023194716159292 +1.449879534412906 3.649986961159885 4.356761031656328 1.4256004423384705 3.6649931909346605 +2.8181896963841497 2.8767631640163254 1.975878196105175 4.3136139284845605 2.3384694151418444 +1.876664152289056 4.524722603857322 2.296005271790231 3.6723631274586133 2.9843884649593106 +3.8384701113631663 4.231354879454528 3.809584043715181 3.18832932874864 0.7350618081946316 +4.264352712444553 3.8309747472102846 1.294511074706222 2.3781571239882213 1.1670926359441567 +2.896981911325651 1.7258242385042504 1.0384440988824486 2.1013689334943506 1.581587651267921 +3.8434577755430697 4.600897825884781 3.514538192636566 4.061174404868604 0.9340913115884567 +1.5525319784058516 2.986682960056731 1.7767275869696322 2.7436979924530553 1.729688065302804 +2.2727505497429696 3.798261883256846 1.3551375053735684 3.1388689257488576 2.3471008944468776 +3.5338638752945264 1.5009566238505379 4.429161023855373 2.068976256919284 3.114993423275676 +1.6034168316072699 3.417160668187738 1.816322291589656 3.309195072043536 2.349113842144253 +1.505534250331995 3.643651747209633 1.0812793319307707 2.0121201855944038 2.331954357465758 +2.448571411386774 2.0235036482811823 1.1431072060447143 3.5174064728545495 2.412048841048894 +4.605551695503609 4.210680851961522 1.770228845447539 4.761086976319745 3.016812115807682 +1.260684668547286 4.171160936132344 2.8294584058671752 3.6876358717008255 3.034360009465013 +3.325534501873223 4.665938998538641 4.176233107318687 3.5825658375856304 1.4659894412420484 +4.868676190255742 3.1697716698494767 1.8626742589563037 3.847396297395994 2.6125462941974904 +1.778235136865273 1.3993617322017244 2.9642808337205824 4.490792370632626 1.5728262870027694 +4.000743296831621 4.976869957197039 2.6798666081666083 3.5826563412298835 1.3296061669534338 +1.0577638638992406 3.4956828669490627 1.787058633517145 3.948221319724216 3.257924680173746 +4.979823711874527 1.448663767392349 3.370312761987623 3.0047502527095844 3.5500319015052577 +1.9284472482298902 4.314171455613299 3.5485715667326874 1.0438988773415643 3.4590555466307498 +3.627675809200062 1.3431395991929302 3.0010089425329585 4.041146729214272 2.51017774472567 +1.7633356298914435 1.8895252112426144 2.5117828935924518 3.556527531969075 1.0523379542040119 +1.7907571284229102 3.6300041831837473 4.155008921449124 1.2358246106735984 3.45028502717158 +3.00498435689713 4.027445470228639 1.5054452015332682 2.9314748409969678 1.7547043229285322 +4.3796626969620265 3.77018790053607 4.867918899917015 2.8185563800604214 2.1380706876227054 +2.5022321383500743 4.102489596275666 2.641518063637254 3.9870890785595177 2.090785806304751 +3.2087127983081785 3.138667477073444 1.4520590740972965 4.286991415895107 2.835797547357374 +1.1861217338960284 4.549023143763385 4.306489678745782 4.825026444890529 3.4026440116961556 +1.104667259301075 2.9780605684691763 1.9536995035066762 2.572492402789221 1.972943775944542 +2.4019310673178422 3.108739806940419 4.887777140644346 2.616615039428631 2.378603767844791 +3.0714167946202378 2.8563204367820396 3.3722184242838016 1.8001251259918134 1.5867399855331812 +1.6656736142486066 2.4625751830151885 1.275516940821841 2.21886270242439 1.234890009772584 +1.2650818644003778 2.674005341728627 3.094299554080792 3.144742223008082 1.4098261693610434 +4.691279167124918 1.8883021344370818 4.772808552313258 2.0392220890245856 3.915249059517233 +2.6694190869972036 1.4201908747361318 1.4567604521383766 3.042132533617182 2.0184092159523632 +3.0156164301462853 2.923718912112918 4.890460493962703 4.215317421652532 0.681368712158923 +3.9573309186093013 4.1870549753231145 3.9140284692839793 2.68296509675693 1.25231392606276 +4.486446977547082 3.3239062645861215 4.353182135553292 2.9067995638266826 1.8556733152918534 +3.0834762055953178 4.76693426608216 3.736507652618566 4.959913723707938 2.0810462407636345 +3.7002500455343212 3.0440087955538937 1.6392659957239348 1.3113878305572775 0.7335916230225968 +2.9640184354894754 2.8070498781778177 2.810665111678355 2.6872770070558194 0.19965909031858534 +1.440930857498314 1.172917145479773 2.2930529588118023 1.3368376623741116 0.9930654776858261 +3.3926176357161 4.363296158577478 1.3796311682337117 1.1230303226030478 1.004022304893033 +1.5523582332265318 3.563069495100419 3.9037203960678295 2.440479468704969 2.486771760764587 +4.049881139349154 2.933863071075937 4.698239778858611 3.7761292803364155 1.447682320192222 +1.8505041878072004 2.1062251602894 2.505379921877628 1.1226812805184019 1.4061467734855746 +1.0025687111791002 4.158884740030185 4.687620440124498 1.5303269692307948 4.464396144534027 +2.309712395351802 1.3967423667882901 1.4491255984797133 1.1461000861166264 0.9619452864888789 +4.537196497703006 4.503149253160844 1.1513840639718396 2.8863318543700975 1.7352818359761366 +4.608895130718865 2.3484681510554335 1.4833464486469685 3.581876983660177 3.084373605251667 +3.0937457524668295 2.4756350153596043 3.315186304395052 3.0601887907560577 0.6686438628218361 +3.139472782481593 1.8451818134262137 2.540418487813566 2.8541540718145026 1.3317729270587841 +2.9346315924503266 1.256104811871591 4.041335618462899 3.2306839348064202 1.864030124578221 +2.350464518291132 1.8068008097725423 3.3180067583530857 4.964850403877568 1.7342618662602696 +4.271273941112154 2.4736872892718784 2.1249590755286065 1.2887838841661967 1.9825505596388446 +1.5894925094298231 2.4676453756710908 4.00333513168273 1.6531818677635712 2.5088588681704738 +2.4816832634400585 4.568610386726487 4.551676247659135 1.6374894912397964 3.5843757154068587 +4.391110372112513 4.07652536143058 3.3250703999579345 1.8986950641759064 1.4606540752255632 +4.502411237354302 4.60975871591479 1.212496946190463 4.564444980959275 3.353666517252989 +3.212870573186707 1.9766199450746793 2.228830236089507 4.791546931486679 2.8453176406817544 +4.263393891547781 1.9316562320718642 3.928215201088633 3.7194051661444916 2.341068590048485 +3.0921358067390003 3.505485452561093 4.796476916087613 4.150746527559896 0.7666978964164475 +4.522849450343543 4.2686283755425265 4.763348912561496 2.264345395643109 2.5119010594455053 +4.5474583908919275 2.9891929982283716 4.733221725561256 1.560266960268899 3.534944550705765 +2.863894618798347 3.1212245327369637 2.8841755358982857 1.3430193284798273 1.5624919648664124 +2.5678496940326285 3.4374612769059065 1.5915032291230777 2.8687999787979104 1.5452220849435399 +4.577063113068257 2.9259388579985943 1.8198340882533839 2.2914491808479664 1.7171581468351553 +4.038941496124004 3.484252830849505 4.694395142816096 1.615121233286743 3.1288348191127304 +4.041533498990448 1.083242525173918 1.2867489425699041 3.7396315322926856 3.8429309757956225 +2.233756398205709 1.5687398923714415 4.147241856863611 1.1769557137018762 3.0438210731399167 +2.9709280734838805 1.4785231082001369 3.3328504871785367 2.947365434221152 1.541386163963181 +2.871700098928131 1.619964479507611 4.347745341158391 2.1062697979159584 2.567304943297549 +2.1999022100232297 3.7461015473155146 2.941948615740167 1.643977065884704 2.0187774852314195 +4.674880503350833 1.2211683130734503 3.8346456019728254 3.189578755298035 3.5134369397997673 +2.3108678787335784 3.1759344217829755 1.4741789921694775 2.321303654953284 1.2107684824936649 +3.4319812463610173 3.324276402562175 2.1115072251222378 2.0955867125708427 0.10887513994311172 +1.1753696651696668 3.9640789149575686 3.541703564004241 3.79270928505429 2.799982705634529 +2.273493464401432 2.1770035833247063 1.589733099362455 2.664091125704957 1.0786822821928415 +3.6215490864145417 4.632865970654267 1.1572901590135487 1.4604078427479252 1.0557661533411835 +4.841293716313191 4.4553632803202134 1.1203921946302917 4.593635255652196 3.4946186719529986 +2.990366331884916 4.6919768669355175 3.939235141410867 4.3880505097729054 1.759805002798079 +3.272298913601471 2.6802907305033874 2.6211075850081285 3.867952443597892 1.3802520748931413 +1.1558805109419303 4.573941568341008 2.5061720219047414 4.836336459931548 4.13676294949963 +3.2653048794171973 4.366417222143364 3.45026545603577 2.169890030751336 1.6887301800394887 +1.3344042973139727 1.6146285784825878 3.21844197442207 3.210158720407754 0.2803466783351155 +2.578952152419779 3.615987356353582 3.815789484308301 1.0890244562516131 2.9173086111056223 +2.5893065071468433 4.446804895667863 3.0326647566332663 4.178995273247828 2.1827445834728336 +3.2067382200651897 1.847968253777987 3.8519112989041107 2.001729592529006 2.2955235062811314 +4.228834431176846 3.556276649551386 1.1610902722786935 3.711354234149115 2.6374571550719033 +4.2393675163196605 4.666358723345553 2.6098441442531355 2.6107216036938548 0.42699210860682046 +4.193163166456639 2.2342996292420696 1.609874608472957 2.422304179875696 2.120657484347346 +4.725662106855653 2.0688907878325855 1.8360686284578724 1.0076055589683253 2.782945364014826 +3.777704847953948 4.053575594902514 4.33155086887786 3.27705591339709 1.0899836146274642 +4.543380523393639 3.617093955777681 1.0921869545451894 4.385087763966457 3.4207020545544435 +3.2562355616778973 2.9479813743414156 4.948200611767417 4.86994631677513 0.31803204035948107 +2.2975207596932 4.960508687796624 4.274484211632871 1.0120157225735595 4.211318718326781 +3.5785054876075946 4.198766751418647 4.636706759472535 1.7252551805146212 2.97678926563521 +2.757626077370371 1.6474203614766254 1.6675505913296784 1.5554922345619664 1.1158466771580333 +4.856325493253452 2.5425151477793344 1.8550266875265353 4.825241442924035 3.7650888446362174 +1.0835954548830617 1.7489674112382705 3.203063871647961 2.754978510160902 0.8021847240398849 +4.33612118154535 2.3820716441279894 3.0971224978193006 2.1242885304837733 2.1828228335535576 +4.9287740152969235 4.588109922488883 4.744353235559053 1.7295686276916449 3.0339707078287637 +1.827290696371235 4.134486331340983 4.781013831969417 2.4601529587112845 3.272544406275331 +2.2037865696977117 4.942356031112238 4.251975934206039 3.9355785491691693 2.7567861723845066 +3.0972662471190215 4.982241809079271 1.135249150323752 2.7023694952816015 2.451325976847667 +2.4128537710856386 4.259860080785998 3.0076242002635505 4.202120712330823 2.1996031972639565 +2.2571570545089426 1.8808328024770296 4.956539627476613 4.749127794258618 0.42969711568292884 +3.4249986933836447 3.3252964981562534 2.5660985124080886 4.60892986037973 2.04526292783808 +2.7796981814802626 1.6304996088269843 2.7383689651407397 4.347646287638912 1.9774809379852991 +3.404861564183742 2.7752593882998258 1.226341482953289 2.4987501792319713 1.4196558703585096 +1.1208565983379946 4.537844046222794 3.6571866709835104 3.1940599204700066 3.4482299236047864 +3.126864346029697 3.852400741042931 4.515403755990189 2.5372063905628597 2.1070519398136405 +3.9236015618750053 2.08006445328883 2.1883992601300988 2.9063204942326513 1.9783932796867278 +2.327559421496308 1.1629486555973045 3.5891719226460035 1.7367827773889903 2.188073074994039 +3.885626128429584 3.671747214220326 2.282537497107631 3.922073294302406 1.653427295113528 +2.573734290168312 2.4772809158921922 3.380275534772607 4.852721368173819 1.4756015673988152 +3.5096195709021534 2.2786102652009856 3.7184098865455613 3.2637313754271067 1.312294349296592 +2.9560684948270453 4.774027594725388 4.273438523546497 1.8659348681312635 3.0167945140066976 +4.527761669526759 1.589655397079878 3.6917968383566104 4.6265381235694765 3.083214189522536 +1.5672239785630069 4.905950278005909 4.270979265019392 1.2761006479069938 4.485130013035159 +3.08438823937793 3.5430860434564866 4.610626660763739 1.1221364572589914 3.5185178094497522 +3.999999123288934 1.3758855942489467 1.6240380658043398 2.915713972036824 2.924790327533276 +2.2394452881588043 3.7025328256501076 4.748859624866744 1.217610079846637 3.822348557048019 +3.8924341431679395 2.2529627055477466 2.809601002874511 2.0666656697056505 1.7999498615359117 +2.122954136546592 4.946212917707786 4.721181098062311 3.6305071655353522 3.0266086255903017 +4.973899952535206 3.151386768381645 1.8402383399085602 4.429827577644344 3.1666270267605796 +1.1259704265242458 3.214151270570211 1.4541007526366272 3.6643542217878893 3.040677496107686 +4.5856582537757244 1.4793265598840972 1.9169496968382798 1.4013742802133282 3.1488274964982788 +4.42923245184147 4.043091447308625 4.058204314248684 2.047595502551727 2.0473526000801825 +3.9640689512946428 2.068971459732562 4.557659767404006 2.3388283907614875 2.9179799828816892 +2.195422542424545 2.0793418524702214 1.8650777624644883 4.857703637185994 2.9948763501408413 +1.263787108605967 4.612927459100204 4.060309047057737 1.5785708943860608 4.168424803895938 +3.160155887918803 3.0059612644013805 3.6390881620144993 2.380186671863459 1.2683094826682444 +1.7145376244325892 1.154059430702087 4.055899257560322 2.9681561129712764 1.223650666754148 +1.5396831595439089 1.1898003216867612 4.888148515065254 4.312348906200433 0.6737679049909187 +1.4979396063516668 2.445660524513814 4.0155903401623005 4.018719490400578 0.9477260840049285 +1.728362393692275 1.3432485031946566 1.660876013272877 1.4105463382086199 0.45932303977918215 +2.812029568213174 3.108256582480092 2.7818119247355875 2.7920966497104938 0.2964054985139483 +3.230837642995425 1.4546961577607518 4.652148609756717 1.599591307605578 3.5316829781972037 +4.920188004320225 4.647341642406116 2.938637625414474 2.5060806186182223 0.511420278575554 +1.1507541572433495 2.475860976302396 4.516704884025943 4.247493273817227 1.3521771233784259 +2.1512711784387144 1.4839190124035366 4.332071672736859 1.5950309582060611 2.817223950365165 +1.5191300834274881 1.0670318938789363 3.6390678938187264 2.7903349968050755 0.9616341838070561 +3.6075064917626753 2.2739195008472772 3.9176830629539685 3.444095571042733 1.415181746219743 +2.6722985702171904 3.6790606108705397 4.060436527692971 4.1266570838399 1.008937544428249 +2.1032691621719297 2.0432111980022882 3.787510246277469 1.442362229062696 2.3459169170511096 +2.0309489424933878 1.4562423707726242 1.5800302234530834 2.91801802695419 1.4561933271021223 +1.5308988851809247 4.480363801526119 1.630015550882249 3.8766508835019273 3.707656080399893 +3.3956347753967027 2.1022099329225 1.164170249968763 2.3794003404448674 1.7747484317299669 +4.173929508478237 4.034853808883981 2.3243583129990166 3.401810403422929 1.0863908400647027 +4.35248478293207 3.0687526494148054 1.2000597105310549 3.8678076131871517 2.960548439521095 +2.0587579610218802 4.309400728029638 4.48523300607143 1.2828220178633911 3.9141830567923006 +3.042224902755366 2.007595083028416 1.603938609403114 1.6501477488102987 1.035661213154656 +2.3338304018717584 1.1293187278013241 4.094120655185893 2.833870631307384 1.7432952978935452 +1.4545807870856016 4.993836992098326 4.564460638697991 4.8661842247913825 3.552093974985196 +1.94368856029062 1.2797445562538705 4.369024395487163 2.3615286739016708 2.11444099295308 +4.982164280316018 3.281638374548671 1.2105936824281112 4.952284166542103 4.109992218374027 +1.482271636736864 4.537402389563432 2.39205337124908 1.8711514542124128 3.0992196959943175 +1.377685366578632 2.6490779955691126 3.812624167285822 4.015798425177786 1.2875243671951517 +3.6366006219081006 1.7021187922851984 2.370299348623263 3.9457246972412587 2.494831653280298 +2.5989333277200815 2.1154081129786273 2.383591902810552 1.4689286530875845 1.034604027483244 +2.6015694194286056 4.322788668460641 1.5245315271769626 4.607969656882521 3.5313151095534527 +3.5661221951578472 1.875493003965389 1.8975652969994434 4.099949329533823 2.7764586236561244 +3.7623283475710756 3.992550339020145 2.599879879954683 3.9067155259985853 1.3269595212807959 +3.2346056139076773 2.0109275470399237 4.620983224144396 4.765158980164621 1.2321423050756783 +1.4646944898694887 3.453943716378209 4.9704421253907904 4.067013264062529 2.1847874479331897 +1.8942459282062716 2.4496460449787647 3.7425815975236136 3.5434828059374386 0.5900081512335013 +1.390317196041687 1.6331816089000317 2.3700254619948815 3.071713176830719 0.7425286339156006 +2.496329350976889 2.1383657333866024 3.04813828294435 1.7525558306165974 1.3441249355241938 +3.3662596578752506 2.9412960002808766 2.9484494144887283 1.2222392006637368 1.777750210966015 +2.9904458721063354 2.498644463598007 3.5906688141270693 1.5541192164669213 2.095090186397828 +4.010758534895 4.632631120078197 2.271603374376154 2.838096487169989 0.841213384965599 +4.479755438796577 3.0787585548456833 1.3835540560287791 2.246557769787589 1.6454688325220903 +3.9813924771250013 3.7448944634970407 1.7508494381050022 4.423404847806852 2.6829990175877056 +2.797079244085119 2.2744283396323484 3.7825748053184394 2.0744838551391793 1.7862638836436195 +1.0857979715994013 3.3044890559684554 4.896486442798558 2.7385067737612223 3.0950713044835036 +1.5112429802272285 3.1379966471468284 3.0733165106222087 2.6499573660748426 1.6809403493605126 +4.147249621862432 4.264651400599565 3.4993221700078583 4.746886637432802 1.253076325700843 +1.232891215370444 1.044234077831692 1.6657121018015393 3.9283537930413974 2.270493104697982 +4.105717680798278 3.7178639020529904 2.898118231424921 3.509810821401473 0.7242916389957985 +1.1344503576678875 2.7670619232183666 3.29243031138933 2.594500190803872 1.7755356873883494 +1.2535339324748427 3.613105417113052 4.560536168025644 3.924625906231205 2.443759286872018 +3.316140611400663 2.3157201001815944 1.0060478410592646 1.5394697921321723 1.133746081428399 +2.380451410920304 1.6852592251806433 1.2260552095249748 2.430468033463829 1.3906482033864107 +3.597940228333142 3.1060442929428502 2.5265192135776453 4.478997651086342 2.0134879339568665 +3.2820518839081454 4.623670319721161 1.1924130857237354 2.393473351834018 1.8006903648718362 +1.6683957928209647 3.2898344765586276 3.0048083482003234 4.08606085100493 1.9488895248171845 +3.479051489534889 1.8894877636605512 1.539741691230422 2.21182440451356 1.725806481651269 +1.489236344928039 1.489477560147313 4.237150996810906 2.682714113884295 1.554436901642321 +3.388838835742325 1.638465951616472 2.092197400420271 1.922370401013183 1.7585921764896693 +3.639190312344843 1.3041932788427806 4.593744505704064 3.1099545968766376 2.766558085419775 +3.9538907034027377 3.1575932424084723 1.0853251452590262 2.254464364998552 1.4145586454859553 +1.2723465454387468 2.085479153005993 2.66650665233851 3.3268704592411567 1.0475041741950555 +4.042644498592876 4.031658971445458 2.149680828999229 1.4269378675602535 0.7228264453631222 +2.2883495744985667 2.763908341566837 3.9230094284210115 4.875808032573879 1.0648855905735346 +4.9762917580309765 2.8502158226985874 4.810233591162777 1.492267817794768 3.9406973692534497 +1.0362615544773228 4.5742730564850556 3.8934659061854333 3.772087142374494 3.5400929638419503 +1.170109406546942 3.854564607803431 1.9842890944746916 2.7671887886489275 2.796288908301703 +4.777010078490704 2.4123530701480553 1.4696390504580643 4.542303100514978 3.8772241528722793 +4.192244855564189 3.494230809644493 4.7424688443485765 1.585217043308937 3.2334907674940454 +2.369142827050508 2.8681141900953815 3.5681629643300505 3.0770815396883715 0.7000952697790207 +1.5772551380686468 3.996749739532366 4.278217507528698 4.121351415628592 2.424574415706825 +3.181738602222137 4.787099742380278 1.7627090643956627 2.119099015593786 1.6444446441412515 +3.7446950881231067 1.7723729566414672 4.373825151466879 1.7866190400672628 3.253258374798381 +4.975265263557114 3.277451832975184 3.2470394101671163 4.0945737283129 1.8975997643073266 +3.5510520482114853 4.515589690651417 2.9475539095555607 4.498577677968515 1.8264740879261068 +2.1409662826360343 2.4681481130124703 3.227595217687054 4.072608967473413 0.9061435799344816 +3.1282460586011673 1.6273803803140723 4.240422897505262 2.34752805312786 2.4157087316418613 +2.8181986997230015 3.3067986476632494 2.4545669067962854 4.5754223238772 2.176409338632941 +2.7564454633429056 2.379596118816892 4.408831490176622 4.476390110135439 0.38285714777241114 +3.8253680240835566 1.8545783493088965 3.7615353140131766 4.110495257685837 2.0014457235924326 +2.993381202739314 4.438041536149395 4.548288715552948 3.7837622394312422 1.6344859166170873 +3.381638468127595 2.6665340630841463 3.638728676729239 3.313201053734691 0.7857114886808166 +1.6133119647226914 2.1076735110534206 3.9116475382702793 2.805251316780293 1.2118192676376411 +3.9200212318994425 2.0806922847786313 1.7944340013890288 3.3301355000734576 2.3961448346830276 +3.669904236847754 4.973656277900278 1.818507301049019 3.0930447673789603 1.8232430275822717 +1.3390331345287771 4.466799103819219 1.0852082271258459 2.997093153275849 3.665818316486918 +1.3066837020026014 3.951071862660679 3.930833304351892 2.585908607433376 2.9667509475198575 +4.929504494511431 2.7172659085778696 4.980787165780648 4.6440403417177265 2.2377216056984803 +4.944421018337087 4.5782549020635726 3.8325319591229112 1.1404652609272983 2.716854933970649 +1.7165474561036702 1.3297937693180053 4.574618219762608 4.396854023535254 0.4256507062165661 +4.523554790372835 2.9745115959444695 1.0333490410798234 3.235353067857199 2.6922772056659787 +1.8363633781537452 3.1296610897265165 1.228579334334026 3.232919297959101 2.385371597999761 +4.754211017374258 2.994239211613216 2.5258809222018135 1.8378539994061538 1.8896776983299157 +1.2816575275826123 1.284456610116247 2.4885522413609347 2.3277358243331645 0.16084077483237819 +1.004065835885354 3.3707800310989424 4.722944024046177 3.6239496480157634 2.609429960809828 +3.357389948520914 1.6756582203586343 1.0759065430848183 4.318683529297889 3.6529199536563643 +4.686806053685357 1.8515158867792993 3.954263044578501 2.7383911446077946 3.084998348085872 +2.378071014886942 3.9235813914457403 4.214644532816019 3.984043071396941 1.5626193900177778 +2.9544785155150604 2.0687425055559348 1.4710804647094151 2.873455025808562 1.6586689509833892 +4.786991892162991 2.189993497065265 4.116559773832472 4.34036507008525 2.6066241529554963 +3.177863390128091 1.0844982694692762 4.3296949798867015 1.7423599964477074 3.32813458936356 +4.9062477732269905 1.8758245693448155 2.7680524100486137 4.040012196052852 3.2865402008555216 +3.9328666727408006 4.4372488686168 1.0522336173266988 3.8896138700578566 2.8818619151696745 +4.676020216086092 1.7169879721019 2.3257067462496295 2.991800221863956 3.0330763820243796 +2.7599770291016004 4.115532446189154 2.2787141111317526 1.206718740764659 1.7282084836280296 +2.60467891584768 1.8366803992909038 2.0730467559838868 2.7103797746467655 0.9980055601605367 +1.1971903015983143 1.0042905384569125 4.8372749910447554 3.3016617234793406 1.5476816294519165 +2.6228676385205 4.619344831835683 2.435553928879769 2.5218338037675263 1.9983406617086883 +4.4946125429226775 2.5189956613194138 3.666550388973529 4.84722661590065 2.3015339266903423 +1.2251921465315547 4.158087914864971 1.1110860981125805 1.0850115554120086 2.9330116722722237 +4.007346818657295 4.140198288194943 4.1567251302973975 2.032087191473527 2.1287874210564235 +2.0212455415322688 4.776596769843133 1.9464784832584847 1.8989988540787643 2.7557602774082564 +1.5811526688117175 1.7186973439529596 4.650600702662513 3.9923965405104673 0.6724219335610537 +2.258391357962731 1.2078529097110007 3.8528709280399913 1.2963600922007195 2.7639425979963415 +1.5611814734947096 3.11276048265731 2.2700414674216893 1.6054248570351293 1.6879314738684497 +2.7836897990867335 1.5452221609608459 2.3943661526242472 1.9708853160369189 1.3088690192841368 +4.49915275641176 4.135012614283071 3.5101646095150345 4.492355946446363 1.0475198639894387 +3.9738772609075763 2.7490703684135136 4.736310743325845 2.1696098072305756 2.8439594967673667 +4.513590140701064 2.0116878482599097 3.5983701560547434 4.391919821148452 2.6247354441719724 +2.6565499510025754 4.634817535342475 2.9887861092908037 4.7918774086214615 2.676692150579133 +4.416786089708692 2.790790313112876 1.1399511107426812 1.9885014267707941 1.8340937556021617 +2.9197174409955617 2.318539255166082 4.4833361837444325 2.563809197522256 2.0114668930788837 +3.045608278711956 2.2704534438709256 3.1836206067500004 2.6065901956843365 0.9663483395091202 +2.202688985215546 3.0268611831109307 4.182528866070383 3.51888546284539 1.0581504516975646 +2.8489614161694923 1.1723778414679158 1.9093716088049977 1.6304288785720322 1.699629821375507 +1.2744314621769255 2.3402423465258213 1.7772936129210568 2.911804282345423 1.556620474050852 +4.238764190029199 4.169865706252397 3.888207138057197 3.9254587827328744 0.07832423697544222 +1.2588425900448383 4.207178456632218 2.8405033110605196 1.573942528218379 3.208872169289274 +4.815734652746528 2.0775037648861603 4.177366474850054 4.606421762051808 2.7716415415252307 +3.6275054076712014 4.754152984016833 3.361163404271632 3.844737658635207 1.2260419327122434 +1.8722420382935425 2.1459525919406577 3.971066878650544 2.105166211838372 1.8858692334273652 +4.799697845281026 2.076291810548226 4.472453678839741 2.804482496414477 3.1935980171931724 +2.852931939432764 1.8258636815168874 1.5515666783946478 2.092408153923975 1.1607664313164356 +2.6626974538070125 2.6421008038852354 3.3269413894420374 3.9106683075274726 0.5840901787271556 +4.994824025662271 3.7061229806697202 1.8569201266576458 2.4103300819263205 1.4025023928519225 +3.0853376031931727 4.076742251161762 2.3325054253399697 3.6219468026967943 1.626512293729619 +1.8075112441949828 1.5193403526938196 4.225119212105688 1.0226204255353624 3.2154379080761273 +3.342789853173522 2.910186706349631 4.491525609625281 3.459924566229477 1.1186358636201703 +3.3938249489839807 1.8382493428532443 1.7082217107760505 4.13873326207352 2.8856891494718284 +2.738834150845856 3.051998544329272 4.133622250563894 4.893795293547331 0.8221526577373174 +2.380941312752641 3.1721202727714375 2.8349002975296904 3.7197556684965702 1.1869849090470186 +2.0413602008527523 1.6137147573796593 1.9593074124206749 2.7500672676164366 0.8989893068955385 +1.391180083309405 1.193056618000428 1.0047140840354984 3.4061912806144576 2.4096359959949916 +1.181052481578273 3.985494027423738 4.584565266475521 1.1238946039675008 4.454338763319176 +3.782544243289389 2.144664270333357 4.996785290483709 2.2658342416561483 3.1844535538931646 +3.2464689395573143 1.9625632263133341 2.5288266668339654 4.358939643357415 2.235559748103381 +4.995932119716892 1.1773469818520943 3.815228182224952 2.495710297219584 4.040138599599147 +1.338616147058079 3.763924975358612 4.057478280716612 1.511312974508773 3.5164016663585183 +1.158481963033056 2.068366632058669 4.747968052425797 1.7049268197510603 3.1761596393579516 +1.0933125729610569 1.2223635152185865 4.905035407709322 3.7856562571562655 1.126793605053933 +4.948269870606724 1.3530867667905104 4.93380768276298 3.5369177506106335 3.8570251532125344 +2.315445101049523 4.7914081305958645 1.1153292572583924 1.191618882388846 2.4771380725714187 +3.420558799706559 3.5288913623020166 2.1810480585796466 2.9562665839896964 0.7827513693743569 +1.9204229849434262 4.018415638388769 3.1751076183069866 2.307297144224721 2.270389436382559 +2.5105167327025377 3.1144363529220365 3.7650246404343486 4.156827006069819 0.7198805466211838 +4.0835398440193655 2.0777469100049797 3.380750508502989 4.6538961170450355 2.3757325259153093 +3.586627580218885 3.674704803891067 1.135098665940685 2.8373766499148174 1.7045550539811956 +2.4889234074177056 1.73558664543526 1.9468477412068133 2.1189309004177477 0.772741153710744 +1.924606508995685 1.7284848856779935 3.9946202656705077 3.712708856842215 0.3434206364799867 +4.2689529396818156 2.1828276751671187 2.0079378952370535 3.4430374715652365 2.5320800566379895 +3.903621490642638 2.577478186550853 4.139901519600723 3.7263524239084136 1.3891288340306678 +4.996708496937809 1.8207576338495062 1.7553592672135667 3.95185607249397 3.861510339278966 +3.6179078236198765 2.4539383513369986 2.6888707046897475 1.0475042587873298 2.0121900362890224 +3.3555717196856794 2.4914376398769367 3.1664507099744528 3.238162834981822 0.8671045708332847 +1.7281989500652313 3.3632416616181806 3.1706837232584766 4.251875228365876 1.9601886999263167 +1.7866615907498162 2.2797201874465602 1.1858741198248262 1.2203687865722883 0.4942637573306189 +2.2302169613869895 3.5812599600809327 4.687738146194624 3.4678117139655233 1.8203125238186832 +2.0899629162471993 4.747575880172206 3.241857734307553 1.9829413308407506 2.940710318433294 +1.494421091985469 3.213346331500445 2.308230635740759 1.277274393118074 2.0043888727600496 +1.9102703978530196 4.2942946869879055 2.978845898685878 3.2976799140932327 2.405249870713202 +4.10348380612141 4.512324837479861 3.426451672465883 3.8143428605547056 0.5635694834882385 +1.8499490746097682 3.7648759058090397 1.4610680116427912 3.489408697008847 2.7894642325647636 +1.0068969698736194 4.931594881297997 2.370028042549914 1.0498238000354574 4.140796171980944 +4.531413704507996 4.122404067165913 1.4884606904256814 4.531621178491141 3.070523512295828 +1.1026814829531983 3.9452254376259135 1.1122941274476679 3.956980044004068 4.021479093331299 +4.9502633260391455 4.246354013423503 2.0090534026704123 2.2692418895058903 0.7504574398783461 +1.7284069950824623 3.09465244324452 1.8303426126343356 2.2994628165770874 1.4445415848534202 +4.53809584024991 3.8408435408783768 1.1218570174355351 3.3930154785937527 2.3757780882627597 +1.8428972542690096 4.819567664105886 1.4645277621668322 3.698805128390988 3.721903018352304 +3.61416934411232 3.86644038663867 2.0110954442526148 2.47200865590188 0.5254347414952422 +2.4687303158067633 1.229347901784307 4.2807284995181885 4.388648996469147 1.244072185144525 +2.8754379233772047 4.734553538230891 3.1174713877199114 3.8228964583630196 1.9884505021962788 +2.8759671042967856 4.620099087624962 1.3349036620277133 3.763297910962755 2.989831935666128 +1.8811176919464008 3.9811260434251294 3.7178248394824176 4.9449386546322 2.4322506843686695 +2.464968179073566 4.958127501372881 4.0423871505832984 3.848726010044815 2.500669519093366 +1.1665860002809696 3.3998756582376854 2.3685942041326835 2.8867651108696664 2.2926150538032 +3.3199001230932605 2.1387668262487076 4.368725586446773 4.822534855449649 1.2653136834586938 +4.873765064209088 2.6243362633198215 3.228829458100018 2.443111297479227 2.3827049666711666 +3.484715335130035 3.4631640821287966 3.889681273872453 3.062184330607905 0.8277775351011251 +3.890705482646939 3.5818856171993945 1.866905214359341 1.6701202561102697 0.3661885157785921 +3.082279787364517 2.1525643517855038 1.7686027583807125 2.431616433867407 1.1419097709697776 +3.990300394219499 4.50352646959646 4.506725206521763 4.550168809256227 0.5150615022163747 +3.369554514174804 2.34817309402371 3.8487597212245217 3.365489216137336 1.1299426474459173 +2.7854476319034682 4.1242057212983685 2.4511012511621417 1.6060692662367209 1.5831463221911235 +1.3929990966627641 3.341962862048957 3.894440459038248 1.3224142848600313 3.2270386423850215 +2.524705418611611 1.9960739427826475 3.7510349938003773 4.248868607424359 0.7261470540400338 +3.1807958760586503 1.7473759786392193 1.6021134889810287 2.2277119081678123 1.5639904041927286 +1.2800793929733105 2.075832196349747 2.415801718506579 4.805684289463864 2.518880947374619 +2.4284177755168326 3.036621252407167 1.4756595410930857 4.4887657550996085 3.073877116311941 +3.916635117378307 3.7089691924526482 1.5707952431588064 1.4926569894258397 0.2218799744719356 +3.422641815823079 2.3578246829922573 2.0796898665193777 4.366372351381239 2.522449665096227 +3.749155034105512 3.6148180639808274 1.0637172002411193 1.940558874531607 0.8870725693621836 +2.932958310904504 2.3822717255175374 3.5924718221047183 2.5860502881693517 1.1472314584659773 +3.2656563159432497 3.736516828500313 3.813472640807511 4.32781258435235 0.697320012484375 +2.472854487686106 2.3014478806367022 1.558021749032481 1.0592966161516175 0.5273584958140181 +1.5452735040900878 4.671033709942756 3.442383130889089 3.0064613382026786 3.1560108798657596 +4.818288407888801 4.962271314294978 1.4750461059817055 2.981385874143067 1.5132053973210626 +1.1728904780824148 1.95739081496134 3.980980797225464 2.4847539185387535 1.6894187317144687 +4.70518706000378 1.1412068218608025 3.5365845674681977 1.1887475528977554 4.267820730169055 +3.69461910106448 2.183162909607652 3.91414371626408 4.203104662538028 1.5388301553988064 +2.03681380992826 3.4725037660880185 2.0928444606435184 3.777871584288384 2.2137122797773197 +4.567204786127389 4.203053222181246 2.8172764143476687 1.8112139521986759 1.069938334330402 +3.193648805755029 4.4955653351765985 1.393857892892107 2.8171473587875973 1.9289218629354001 +3.7141935652941322 1.6995868247122554 2.495630657824832 4.985491291835936 3.2028184925150085 +1.4269809134773728 3.945783522595148 4.022807473358396 2.8340190545274897 2.7852440626352655 +3.85782044255115 2.656136975730333 2.798354239661274 4.045236143171778 1.7316921307589506 +2.339937872967831 4.555152547579879 1.331923878559115 1.705099903332603 2.2464274749215263 +3.329860303789162 3.7720932121220994 2.5773308084512756 4.9577643122533495 2.4211636894757915 +3.94186207466978 1.9730811706980713 3.483283426388933 3.951887411265265 2.0237806063122643 +1.7961045668801234 3.7303729053283194 1.164100310905103 4.17598697871753 3.579504896612015 +1.0313205831464018 4.151999574300994 3.5178526176257487 1.6045196985208787 3.6605300470237925 +1.6763129526479723 3.4448144106796486 2.2855557283782315 1.1006466126002974 2.128757153766913 +2.235573031386341 4.192187930803486 1.7728707295599606 1.481498459319353 1.9781910080895453 +4.826556757883118 3.7610842378458105 2.357421405476276 2.7887632024423574 1.1494726776938107 +2.896255784912853 4.297603045952517 2.885415822856323 1.538684119279016 1.9435689922005868 +3.76063897555111 3.7711248575190783 2.587628153010957 1.0095171786334083 1.5781458111250373 +2.144575965992841 1.1853750157479834 3.539242749938384 1.14681839728937 2.5775493683145414 +2.3507891690864167 3.4433179304247945 3.3652705567443633 2.6539856137994393 1.3036661245931542 +3.1306958272431165 1.3294391703088126 4.980120706438052 2.335908266432669 3.1994351020186933 +4.010505218370364 3.516631364790433 3.157969042547894 3.4407310238371425 0.5690920148029774 +4.888309220447143 2.5298397157132495 3.5072654658589566 2.864019460631062 2.444615271980722 +2.659622374966018 4.416499267486403 2.503373559008302 1.1279507891749723 2.231233786775396 +3.690109625958007 2.1697452259305803 3.969663808053579 2.1272385773451687 2.388731596396233 +3.0446621619399252 1.0665386856891912 4.4886872746120465 4.48609528505056 1.9781251744275878 +2.443033518947391 3.9382873607706004 2.6780749770636505 1.478064487754895 1.9172400021745075 +3.962717587284965 4.32804465997623 2.258843137894487 2.5044083980614573 0.44018878568409797 +3.914662492181246 1.364249142468148 4.639394259803522 2.8017471733741797 3.1434940859904663 +3.404494509279645 2.9036741358470826 2.1153316993670432 1.9101295843283337 0.541229114573016 +3.7250486615179974 1.2328662846669505 1.4402054021968271 2.4471790805405287 2.6879302424661207 +3.9423526639388107 2.9502603234378486 4.988860586979989 1.3669058485233934 3.755369933776014 +2.1248006753970325 3.8634038706936824 2.2560797973483786 1.6504055716586454 1.8410818391262727 +3.0230058493052656 4.857133952384819 2.0013616140078536 2.4913575889078903 1.898452515583268 +3.11580598825614 2.611344599644393 1.763571177762298 3.1251683364446152 1.4520427387414776 +2.368670715570664 3.383539996654093 2.9478296928891887 1.3154291885549267 1.9221579186522497 +3.0444401933429757 3.6091578674793574 3.5670263645107965 2.1748171103087466 1.5023823278273187 +3.014708541433784 4.128831985986423 4.681492881665294 2.2975622266939926 2.631424788477477 +3.3254208821073354 3.0836164573511433 4.146689412101914 3.971990542241138 0.29831036683679835 +2.1452115736179236 4.023327435944379 4.429394004376668 1.6254856510245377 3.3747920300842393 +3.353732582298215 3.0774583409037755 4.217212941352443 4.155708365617619 0.283037575764056 +1.911620511120561 1.6394117090751297 3.1473019498576016 4.840826570840302 1.7152618674084747 +4.018504474461539 4.984821701526297 4.332753613451569 1.5157178298544767 2.978163794922738 +2.724368804990832 4.515411699283774 2.7312545773683286 4.76908582304057 2.7130408834065367 +4.701822590413025 3.3893852361587156 4.283772877470488 2.3665940994950962 2.3233738992166693 +3.0238043977849585 3.1533367825932577 3.475791220457446 3.01401947851714 0.47959543405740435 +4.579624972561798 1.60946979640797 4.537316491206447 2.0958906684086243 3.8447863163844884 +4.454409202239291 3.991013694984537 4.582657572619728 2.9492416753419866 1.697875993594214 +1.530194045343403 1.343285400490148 2.2474986808454758 2.1788376123694175 0.1991210281340326 +1.639742802808208 2.9322730220979984 2.1798371655096402 1.128876624217582 1.6658788752878193 +1.2680036528871423 4.364612241764522 4.459773745300581 4.6275126111587 3.101148348568402 +2.4151435521787397 1.5089699421048617 2.3000401064274403 2.9911615718155553 1.1396488457040355 +4.395252133996143 3.376353472559248 3.5239358797642075 2.959288350524708 1.164895409276802 +3.3066859182145403 4.158897655015643 3.0574215647411007 3.4665085537848124 0.9453131803515711 +3.4457609147248487 2.4067851196657704 2.2740734008840247 3.873979948423575 1.907661307354785 +1.4715822616015162 1.8519568702939413 2.64431864858411 1.5916818108582054 1.1192538385350788 +2.8395841543014786 2.3598869567132756 3.5268525952357375 4.618549778221695 1.192439575288178 +1.8383460445085724 3.6681970282933483 1.8086952863274455 4.061150285954582 2.9020524027321417 +1.8664645629497638 1.1224504437792984 4.322269347138022 3.372804525190745 1.2062505782963908 +4.756535301314457 3.3642201694170075 4.546300998924109 1.1064137803997576 3.710979049075569 +3.8062837927396025 1.425279219964815 4.568222216782873 3.230536119794066 2.731041352607389 +1.6561055715424224 2.898710999371864 4.783295705423218 4.637492709342598 1.2511301942393023 +2.330056244020469 4.815682970281018 2.0254201018050733 3.085512569398393 2.7022465213501206 +4.290340758270094 2.773093963184511 1.8856355550643484 1.508840367697616 1.563333761683731 +2.960757384409813 1.2029275457395174 3.7412371523779053 1.578152129586686 2.7872751133577265 +2.559246567448471 4.074856363978392 1.1767691990865727 3.0814370657896064 2.4340979310185022 +2.94804719473019 4.4844366866987535 2.9456586319621696 1.850500436739225 1.8867602241926231 +4.39745036570077 1.0830055217775336 3.684509450174917 3.245578797382043 3.3433822308211347 +1.678472516987891 4.8715901543695095 2.313505219432317 1.0508142167150907 3.433713560345505 +4.351239186255659 1.6580091772191756 4.3830758410967805 3.9153538944027124 2.733541969861437 +3.6329635519070527 4.429551626981709 1.1314202982566313 1.2230002867640075 0.8018350551367518 +2.2996491307000615 3.937709047942457 2.3075205385890922 1.40803279319845 1.8687745975863714 +2.423819974592833 4.173058581882943 2.5930908034570592 2.796194928739925 1.7609903437955476 +3.514692360016829 1.626289743514683 4.992126486228976 1.1032470820523934 4.323129359878208 +4.718655307924738 3.617289824438145 4.229067778809708 3.056938472656085 1.6083821183287978 +3.521858289256454 4.582005893313564 3.0096129523587862 4.7435957775221524 2.0323900659936225 +1.4792833387518112 2.6380791353878257 4.371425076935823 1.5405075915162776 3.05890527927156 +1.8887090127076522 1.0382922187215504 3.891269827807155 4.870314465842668 1.2968180777424752 +3.659933714035908 1.3644693838411714 3.6127140708368115 4.661478416947311 2.523700288241247 +2.2226449664256993 1.1141340719750086 2.102660420826579 3.443221731509782 1.7395117219543355 +2.4489282062895863 4.866585602687435 4.546363533209905 4.798305866480916 2.4307493136173597 +4.663702437876633 1.8379729661826851 1.8739874612156844 3.8549938152611163 3.450961202617053 +1.7211902354156812 3.533829744245813 2.8267191815348682 1.471890597546825 2.2630118163551396 +2.5013780830390724 2.8156098686254682 1.3552430218684122 1.054542645042671 0.4349279615016232 +4.860765220203476 4.159586726851739 2.6073683588398815 1.1589662889180774 1.609198507236686 +1.098667757184172 4.14234723593913 4.874979794563632 1.7564908405253705 4.357632169636706 +3.6773707408094656 1.8634904597661923 2.5254344042569246 2.8688752942459295 1.8461076130264085 +4.701720761572913 3.5698229595948927 3.2058584622703403 2.7445978448586597 1.2222741064498088 +4.546624452808258 4.061048086040278 2.451608598087554 1.6489350952137483 0.938120013739872 +4.489383765466247 2.9281835506201803 1.6363812869770111 4.459918607208111 3.2264080816866962 +3.738282528095713 3.45707402452391 2.1758370954383772 3.0009874884353747 0.8717519105480596 +3.5775092148316636 3.035926752051077 1.72048514235499 3.4163736399285085 1.7802666542385304 +1.2298888347965171 3.035501625675977 2.913860128942668 1.1159700645696566 2.5480671565244712 +1.6885859426653202 2.499337222837218 3.971191328277904 2.0098695593762836 2.12228667231073 +1.952093510897905 3.280077335342949 2.3553420925820348 4.902180794946366 2.8722688616925325 +3.907883440784289 1.4283075798790255 2.3687098495118994 1.1242290772160062 2.774351968045558 +3.2453172114614013 1.094474168055552 2.9797860571246653 2.4700042593621334 2.210430564097713 +1.5936179705543716 4.405573330710269 3.5398485339401993 2.334917909337354 3.059240225548704 +2.292413990736285 4.15330817159415 2.293008172083112 3.1500504780146468 2.0487675969975476 +1.0656309605374448 3.301606675390235 3.3040854527187324 3.2210918628030254 2.2375154375732342 +4.743258971884595 2.3493568669711737 1.1536209633567456 2.9274587448319425 2.9794744105123234 +1.2177946026913449 1.203838249639341 4.7062960817871815 2.9678385540334835 1.7385135477165576 +2.8336012645950985 1.571907645046704 4.569682309996994 4.68922756924583 1.2673444119962025 +3.883216640615278 4.14731336492116 3.2779414343772744 2.2469626652709938 1.064267025767969 +1.017050190768614 3.9747911891661833 1.939648502360939 4.587225637002103 3.969621707099628 +3.91139270343435 2.6050337043159506 3.585394051895201 1.924694235856986 2.11293580441219 +2.1750511156094157 4.919472603200733 3.865326647514588 4.896027971422079 2.9315856666073383 +3.4487721155683873 2.00646242729184 4.2778600657658625 4.399114663275258 1.4473976351761653 +2.6741824889295165 4.942639860939153 4.673979314165051 4.1480995410470385 2.3286151215689372 +1.7054230161875283 4.430888069641172 2.752094093230431 2.1506556166011075 2.7910370830154294 +2.9152240332491863 3.7615938707516947 3.6565479870019755 1.0248669904891656 2.764432449751789 +1.4804170753673045 4.380423615490317 3.9715195751575902 2.91751823951869 3.085604762163299 +4.581293397562325 2.144069886856183 4.377605912449707 4.89983527426339 2.492545274910588 +1.0119955298949561 4.549006985081109 3.7192369779481953 2.1082902211790104 3.886592271806141 +2.5696144691299825 1.3873356033657935 3.793887139583252 2.1912095151125754 1.9915719631516275 +3.3749937422081713 1.7398356173533855 4.709040384609134 3.4032363376315646 2.092574085279089 +3.73789243375701 1.9938974895011632 4.330907919427682 2.220398773284904 2.7378398823784917 +3.024454696480393 1.5750115889747565 2.856369805266211 3.1120197756594603 1.4718159631073666 +3.196555443351143 4.92630160409298 4.4875422802168785 2.504019639986785 2.6318023947299856 +3.957258692531465 1.6161358655707425 4.1296119359769445 4.9324165778967375 2.474944723424047 +2.1124902515128245 4.340481178635146 3.932581892923866 4.012007279501228 2.2294061907540192 +4.601345545354359 3.2109055956122385 3.7226396140207743 4.248419923158503 1.4865289056442315 +2.280012770224088 2.5752413450323006 1.7691307332061603 2.3667486242831246 0.6665636167077877 +1.2774878078298886 1.2327453630462109 4.4157364020026915 1.1331999007225964 3.28284141691331 +1.6753848707593146 2.186273157248524 2.3068781781510497 1.348938748952071 1.0856586900522398 +4.983059501769381 4.017815126769966 2.012775177387905 3.2195453480477196 1.5453125729969097 +3.1153615533475256 3.99837312393586 2.508737987896671 4.696763936808123 2.35948447481706 +3.1329440154506485 1.2913820454367988 2.1706611553994457 2.6269211175589255 1.8972410607171302 +4.787085578106435 3.5059651704743984 2.738704263590541 4.628742670329644 2.283312216452267 +2.9989576211516207 2.744105968637353 4.641873944662388 1.596991942472755 3.0555287221768346 +1.8832256641285814 1.0274977873222517 1.088944434185188 2.2041281641777206 1.4056688624222728 +4.1917076256806745 2.764708419316862 1.932179483162202 1.5325826690119593 1.4818921515555628 +3.017655911430335 2.302482584504723 1.3110037234562322 1.4815540574320485 0.7352280625527774 +1.1303852749641616 2.3359908963329516 2.6477475111520627 3.6548174960075044 1.5708834675661862 +1.4107564606570007 4.75945028600194 4.680235600873632 4.837586496979452 3.352388646981227 +4.8537365646589965 1.0870606573648804 1.4181505447261498 3.629830163987658 4.367994291301979 +1.9980967224876074 4.760137992693229 1.4102697268931852 4.5904636556830205 4.21218534765872 +4.577856330745906 1.2767763582498484 4.914735827454484 4.60408930386204 3.315664374968408 +3.749842676224781 3.1095642180542935 3.3349784156615745 4.636941615267043 1.4508841018923895 +3.7583148098079446 3.673285571454446 1.765117189828422 3.1854517076060422 1.4228774064428604 +4.301108671106559 1.4355990812530504 3.5116821188960836 1.1201143238628721 3.73239088625273 +1.332872548738972 1.9974512322083817 4.143416882865701 1.6783704807507163 2.553060632084942 +3.7130345045763864 3.837301309448206 3.295159494828138 1.2390187041369485 2.059892519025505 +3.9781718927002805 2.475078911237947 4.449633409641153 3.614738704558849 1.7194003837081677 +2.3813858769612017 2.265587990612915 1.546659333752507 1.4935242564383517 0.1274067773861031 +1.6930394906596016 3.173823780789491 2.920357918447994 3.5441096132184353 1.6067944145485686 +2.13836311873942 4.235567722109383 2.593739282795166 1.540089112292426 2.3470078462153925 +1.7923924977420853 1.060432945663575 4.141828538189403 1.3741210064399603 2.8628604169923415 +2.01057086874316 2.340608131922591 2.488292908247174 2.867858832431296 0.5029859698726354 +1.9313484570811017 2.2112998845707184 3.9557424843492233 1.3872042162664298 2.58374953050005 +1.014898813849142 2.5094980120588817 3.8463251086127452 2.7351477519934284 1.862402180291005 +2.2028455916742087 3.3575786151797056 4.057876225565083 1.7669359325810081 2.5655049759437434 +2.3716281103689143 3.094751106803907 2.3805126338525198 3.851436151115445 1.6390615795662644 +1.4048843668140463 4.08610578741593 4.377835906003709 2.822376898703365 3.099742090833712 +2.6548379712945356 3.9626540184276515 4.126067173703232 3.1805873056088956 1.6137890178429684 +2.03412583582643 3.56177434300684 2.023612038248124 4.9182166006546915 3.2729872493175787 +3.2280945709169697 2.920301961204334 1.5692351169597445 3.1062215572267085 1.5675023470981562 +2.894499015881439 4.45711675587374 1.9150286728377623 4.29535015317288 2.847403124091039 +3.5035118856393916 2.818656834248265 2.0838098564242604 4.550384042541161 2.5598856726491115 +3.4298488332991868 1.280411459210447 1.669079989158866 1.8045178639501764 2.1537001748287725 +3.0705424412221363 2.3104268514316963 4.6659041115126545 1.1853553801340384 3.5625826560718226 +3.559149077681361 1.7888437158767845 1.8759128871216828 1.7955836588737641 1.7721269308220953 +2.0067823167225245 4.627428233955362 3.3074608009764215 1.939775802643024 2.9560695658552025 +2.471884305661903 4.0271392745919705 4.697590062231949 3.273985959090309 2.108427532751216 +2.550046839486924 2.696229333414934 1.8185717392642489 1.959698195058012 0.20318956187738005 +2.7357958833613494 1.399658159218799 1.2949040748225604 1.7695413000792977 1.4179367099684839 +3.571720709600449 3.7441458713232274 2.736575177225553 2.072967313558189 0.685642642428466 +2.292966037957396 4.814216216918865 1.5667117094282244 2.7513918789306158 2.7857080911189267 +1.7684292971438929 3.586335252966871 2.2194447367989825 3.689748583980345 2.3380708858486248 +4.2019485721935705 4.590370290221869 4.368062580199121 2.1911903680574865 2.2112539562498172 +1.599885783166426 3.2413960214360142 1.5655118652945688 1.7342513305291818 1.6501602556938353 +1.380811772042827 4.142719726068258 1.5016262035565564 1.1963152650430113 2.77873178188989 +2.43256399824714 3.079407022134872 3.021408025667939 4.89527205958382 1.9823653334226068 +1.6965340349942206 1.229912236800161 4.956684296440066 4.8348411643389255 0.4822671991646061 +3.4948650636189766 4.361769999240133 4.506694204610184 2.9230564297689776 1.8053899216812777 +1.0851349752750976 2.586888457483245 2.3045110305364007 4.1097356205344 2.348211945642416 +3.5833719271009397 2.6822557549416115 3.149823679263265 3.6208730497600365 1.0168076834743554 +2.825186209150373 4.736819967618862 1.349673423831558 3.7459376137291684 3.0653589829418046 +2.620302644223602 3.2492948944016864 1.4979019644916929 1.7051638805783353 0.6622603360038982 +1.1375821352437314 2.3152569848501012 1.2589275886863636 1.0945290927410412 1.1890941581155254 +4.360144324980954 1.7679669331648018 2.866746557423606 2.876861436949637 2.592197126267718 +1.3279763238269364 3.412029040087838 2.936940468764436 2.7595924984436415 2.091585051278419 +2.2171466325674225 2.9866713270572576 3.07072977698495 1.0090169954179449 2.2006425991301795 +4.781528300215931 1.3426850019993255 3.673972335868323 3.7757796980992775 3.4403499776467052 +1.605328773511435 4.580137790896693 4.195722236588074 1.5874787963807684 3.9563142611907214 +2.5349227712827367 4.720175791913528 4.9020447119351225 2.5252255501915757 3.2287149288544033 +4.801146941625362 2.9090547968162843 1.834571120776543 3.5639785558234345 2.563369415601989 +2.5031735448954184 2.847914714433433 3.059280088679472 3.6676933444535593 0.6992947617250277 +3.8839058666491026 3.3501187660502563 4.3680841216876605 3.677162217262784 0.873098932985158 +3.9108791223375112 2.0737827776297304 1.9072803269544756 2.8158613832696577 2.049498113108061 +4.500414436884501 1.4974646995781526 1.0496603379346499 4.379259347353587 4.483741371701966 +1.7983067902071985 4.658049526292015 2.1499250225451805 4.811130780134528 3.906423505051208 +2.4531451761526197 4.481604639537027 3.6005245408451896 1.848116358670103 2.6805936341691083 +4.817447984146705 1.491712397197614 2.2963782800203782 4.183907063324166 3.8240400236006806 +3.4550259501265863 1.9026131185327104 1.915870572472624 2.484187040506912 1.6531694430808608 +3.9820916991335937 4.714473585461121 3.1933417984956103 1.8759334161257613 1.5072982695402426 +3.027524094770227 2.7589786727306773 4.827070344542262 2.0988771146237464 2.74137829266076 +1.9610612379761552 3.964890147988326 3.4525470238528744 4.729632906841422 2.3761899446654517 +1.312961444494995 4.792444449583243 4.828847425160676 4.862566590033181 3.479646385019266 +2.6981454557872606 3.579144535707786 2.50171032508658 3.8681174557819795 1.6258006721723444 +4.093331159092922 3.741489710919854 2.5632379864432915 2.2765463851588796 0.45385512985923354 +1.8814650967483653 2.007145840030474 3.248141259380972 4.422406675155492 1.18097202164829 +1.3875968289910658 1.2691697065686451 3.4771334755195027 4.77011532829036 1.2983940291452412 +1.6197723908200214 2.092040797599314 2.051430543804844 2.2811480676398417 0.5251738653043715 +1.8575005302349337 1.3847017163013242 2.7200232925730328 3.000810785449489 0.5498912025236209 +1.4779590825011764 4.8847515701037585 2.1448088834750796 2.4156575432375607 3.417542106555605 +2.2252233681497007 2.10676637188792 1.718762953274612 4.899747180745959 3.1831890794272413 +1.0631044441964579 1.1306542889051627 2.404703794218882 4.726926634446 2.323205092365432 +1.7019031155721027 2.095348398289563 1.13035716988668 1.6704333660315873 0.6681927028447519 +1.493151165841332 3.676567084224932 1.7956911542719194 2.6161167346152525 2.332467192809492 +3.307842657901287 4.99671043857048 1.622541682293222 2.0895523958319204 1.7522480952029618 +1.4606311819476208 2.885187945152167 3.2696973508250733 4.126819675168054 1.6625344058030582 +4.669108176814062 2.3502775568761587 3.859679265287238 4.175640019495637 2.340257815318975 +2.9320472891056366 1.2407480573681684 2.889452852657887 3.079209869299066 1.7019109308774978 +1.8078193670960658 2.68408785839876 2.6488602795224887 3.0270615793304136 0.9544017456115133 +1.923266117699256 3.390528459033469 1.6617811146890538 2.143320955598275 1.5442601454031102 +1.9310735925608369 1.371816675679665 1.797640730899965 3.1205601254923665 1.436274355291551 +4.880739757412744 2.1630214259364497 2.70297338415556 3.9521415628907244 2.991055677851354 +4.624853025667643 1.6459165892773968 4.2430498926265034 1.456281402953708 4.07923288218344 +1.5272822540057058 2.3812825214071998 1.756115794979762 4.547929685058761 2.9195104475853233 +4.622992933490213 2.761562129380785 4.675350598361825 4.329449362224191 1.8932966760782675 +1.2531803122765992 1.5151008646968305 3.8718056805692935 1.3832626405136508 2.502288719950098 +4.341743899243844 2.5054383424650317 3.2258700505888025 2.8472554985190337 1.8749312192439849 +4.848249933796551 3.7595326802839883 2.7228516885351866 4.7050627503683895 2.2615185057279215 +2.1943002787567885 4.2137376834624645 3.3094243031979778 3.1650571697324366 2.024591144095383 +3.0756869021873774 1.274337560461242 3.026875858346274 3.1449551894565317 1.805215272307607 +3.6940471186868162 4.747793282449377 4.549235785808022 4.080604117120929 1.1532547934176398 +2.6372850413825737 3.46658482951957 1.4327851554296416 2.2523219480251013 1.1659239653689775 +4.782386188116666 2.2500412237904532 1.1614821854014128 3.74738496748788 3.619345827183534 +1.1123311751436056 1.210020791943069 4.626266541594116 1.8957475531637211 2.732265947416059 +1.6938469486544325 1.1589058259546885 2.536927660876232 4.450328737048529 1.986772680266307 +2.470700632139583 3.8668285251610093 2.0622845805337806 3.055010284412687 1.7130900200556647 +1.7905821699342659 1.7667270939269146 4.146871440682861 1.6521158508762817 2.494869639384489 +4.766236769358751 1.0877602706422063 2.1956242409148223 2.1838091777035453 3.6784954733326254 +2.8631744389044784 3.983276960141088 3.3901046885292314 2.4545321602047108 1.459426467430321 +2.4746104999474614 2.257846414931247 2.75928878619654 2.820629665014202 0.22527621260807756 +3.19720528992075 1.1065399728268104 4.795266646763672 1.8787886489576748 3.5884154413593166 +3.808634702710779 3.0179262544192036 4.525570681404936 3.2290279922498697 1.518631882650013 +4.310296661540297 2.7263930357057204 2.627960074341418 2.007833580692012 1.7009725347746878 +4.918195005473822 2.8262586190269317 1.7429748343145346 2.1508156086980716 2.13132164212496 +1.4745206680469272 2.6517333158997887 2.9400707351216884 3.487807954766213 1.2984012014969253 +4.1133182922409315 1.272746447003156 4.505034264151588 4.2731059113419505 2.8500244154734062 +3.6785083782127423 2.525668128404532 4.557781163169658 2.305530402058362 2.5301529859880545 +2.6621287360154304 1.236587106428158 4.770286307951671 3.2098237060635886 2.113578120055575 +3.528352800099701 2.5010733088616335 4.4134956476274105 3.8460172519663827 1.1735991149708478 +3.8913297354247893 3.5545144266738267 2.7740883903529205 1.3713592304879878 1.4425996146347697 +1.5118733160763806 3.4062724530545743 2.9594673261377427 4.1734635137833145 2.2500077408315082 +4.437601861043589 1.0096690737802207 1.343738710619676 2.8612737580778482 3.7488179222601734 +3.1460222624147605 1.870959189342282 4.569056604237754 4.8113766082713445 1.2978847501484376 +1.0622929380343624 3.869536993163033 3.1933736881210324 4.800216326309407 3.234588451249314 +2.4651011828526532 2.684515203253441 3.2965254207981163 1.710088927721619 1.6015377794211703 +3.472208523978439 3.246244545935186 1.2549105619108833 2.575048424241452 1.339337035600769 +4.202774635291228 3.815543112944019 1.974538969541329 1.0713456065968545 0.982703669865075 +2.4525032607898143 1.735951688999787 2.551734498539165 3.028106608374247 0.8604513594988891 +3.9172878146807926 3.341015091712896 3.3889246314021295 3.3791584443482647 0.5763554716027298 +1.4173656582575638 3.702436721993428 2.3294705328771688 4.961169187171943 3.485310254961512 +4.395389964267415 2.864800212314771 3.3755233812174597 1.4326402975979966 2.4733579735649123 +4.018969146667013 1.0272056693404763 4.0457712835331705 3.7368158398751135 3.0076738803319283 +4.689213662541286 1.8076342555954112 1.3221004471490283 1.9505337924591015 2.949309808757322 +3.443466257394465 3.6946078098531077 1.0081767778430692 1.419824460309676 0.4822093879752501 +2.5642145834918604 4.856469459425885 1.0549382811009704 1.391063264799091 2.316767666579748 +3.5799808735120298 4.438453255796924 3.069742885406001 2.57439028346488 0.991135223567269 +4.177385930715703 2.5291377067097898 3.9297163078834374 2.2254817600961685 2.3708938402658024 +2.267070294703893 2.177492822863776 4.6848680440309405 1.1923179685601895 3.4936986351332617 +1.0572223324252805 3.718283106538262 1.059226715962216 2.0926729983476653 2.854690116649982 +1.5409546880765563 1.6188921479929204 4.533331097491864 2.481764404083738 2.053046552117064 +1.7097777366758549 1.3733137823026307 2.494666236333586 4.9885419507631195 2.5164705584635563 +2.5049489548938975 3.467016433890275 1.2581007611139192 2.6470628591421095 1.6896122466120198 +1.2710928864202873 2.9689230392201007 2.956038846505441 1.630272141910753 2.154131978957672 +2.2708542707163795 3.1132340662310902 3.8717600709275057 4.138010386135072 0.8834551206708433 +2.4819720756919432 4.572832933442797 2.696466066125522 3.612923683536266 2.282891519758399 +3.7451343729896376 4.92850614737084 4.96449367472906 4.540992212543065 1.2568700190854225 +2.916398054105525 1.2495603908410802 4.7845978687917805 4.834046718152692 1.6675709833107535 +1.8226597852836277 3.688646321053886 2.59222641576297 4.677942663563017 2.7985921492802404 +4.418528967168459 2.1104506918625443 4.034433745257121 4.083517198229992 2.3086001191836725 +2.408480652789328 4.811661941203326 3.4462155318104672 4.820308634313992 2.768286863627201 +4.386281615106336 2.194952819102546 4.658795513665822 4.535395550846342 2.1948005474346113 +1.5148545037735692 4.245346477252402 3.7580798985748567 4.010551812588718 2.742139399191469 +3.8957762051644607 4.549677953936751 3.518936595285481 2.9736884814366262 0.8514006123460289 +4.911448158841003 3.765305642198833 1.5475852972012047 2.018307114282617 1.2390406359483426 +4.008668663634375 4.348136877021743 3.5415446276285563 4.455945520786495 0.9753807775983935 +1.7552456784252244 4.102455609852478 2.7327731372817294 1.9128747212192558 2.4862879710227626 +4.945505577312536 1.0487619331256202 1.9077052501761207 1.2483731745674205 3.9521297820842882 +4.792987430519771 2.235230433379214 4.157964048316016 4.521093366659386 2.5834054575815233 +1.077921634624429 3.564936531802979 2.006323760516479 2.983150412640371 2.6719718200399503 +3.2029613249860596 2.8666697126606504 3.207066313397365 2.6643833599543996 0.6384331104180009 +2.4172481975690423 1.6257112611060536 1.881408430880998 4.493584659831054 2.729467965167745 +4.80721780069061 2.2408109977233264 2.71759107443465 4.388991686059299 3.0626824652346847 +2.84148543229756 4.787569386497276 2.4825535340674736 1.8511857596561372 2.0459393987502974 +4.9140560824516175 2.4392970027653136 4.860820278199344 1.8320807651018876 3.911226858760256 +4.765307107379425 3.8502543797054347 2.274533236495733 3.4305414999727484 1.4743393773655897 +4.388687340710476 1.8369843026775232 1.5608264486025671 2.0554651387458507 2.5992029216845043 +3.3809105764244682 4.422989652239204 3.9657072941561426 1.5833770187483909 2.6002742819509 +4.749039118991194 3.649743367117908 2.5147878303228444 2.8696543902799974 1.1551542864321094 +3.4087262617602287 4.681396489576816 2.2094617911196788 1.5115599808989342 1.4514669977233776 +2.828450743925773 2.3580294374616777 2.1422512599131958 1.942177102042991 0.5112004247091918 +4.2712705394323525 3.43928051430262 1.2793955906296195 3.957576006964638 2.8044353699730338 +3.009450622950466 4.110679874714509 3.8415692390905964 4.812525090344219 1.468148878698765 +4.488756297193808 3.511062909604411 4.5096759028196045 2.5093586201999236 2.226466615802495 +3.345478287471795 4.263759836891535 4.932843348139655 4.74227636283287 0.9378468851009927 +4.641078528936099 4.095646994647787 1.6031352800210787 1.7526015579025946 0.5655402079603683 +2.9002539027516896 2.045321858003592 2.813245174349178 3.03690091564201 0.8837028300002264 +1.5484780811138399 4.813717805713044 1.7405586525608423 3.6463133671154533 3.7806998679011556 +1.499706967476281 4.901395268435481 4.534765130337013 1.9618023034876049 4.265163655152237 +4.140460224230779 4.0309253462678445 2.133501920662026 2.0540511746733783 0.13531559602834978 +2.587123837104813 1.4159717466207522 3.6890957241862505 1.9286232413094613 2.114440962053931 +3.331165159905168 1.4670579899228113 4.666793248457431 3.279317089672867 2.3237869163017506 +4.587930447169815 3.6088148511417653 2.7993153739326044 2.9335248594010985 0.9882709832708239 +2.3781514139661684 2.934020227189888 1.333824078219393 4.628036251225019 3.340781941146892 +4.392283413484595 2.704872818184537 4.465386723753987 3.683823184689116 1.8596225645884443 +3.521472817347771 2.528886325142464 3.1220928732680076 3.5871583778140694 1.0961358802753967 +4.271044759780564 3.5484718814316962 3.6747169439266147 1.9466558660555053 1.8730474242203339 +3.5583347376482446 1.0989641593142023 3.7413888900270877 3.127799784787643 2.5347574305332774 +4.913198087212287 2.106233810763021 2.325874952641867 4.5005023162074265 3.550781972978691 +1.6271696201331287 2.7930534136859015 3.522468422010902 3.7971835087334207 1.197811921355755 +4.31668065718172 2.1635679031857187 1.7274141145491129 4.028455891490944 3.1512993813111225 +1.0391499818698562 1.1419203322893958 4.444873803071218 3.424275307598648 1.0257597349702454 +1.9096559358522631 4.646349062974783 1.1517238685106825 3.194020608830113 3.414742339849232 +4.2871893160978995 3.8383817338338355 3.6850071083343185 2.135126822056624 1.6135541973202954 +2.0141952493889868 1.248734259539722 4.028950548312453 2.030073813667195 2.140429566065444 +2.6230433211942144 1.5106538438613417 3.0495996816104087 2.077911464730604 1.477020087914838 +3.7693862668762783 1.718267660170544 2.3705480658832623 4.985110070542879 3.3231042738656553 +1.406223365848473 2.2520387205354573 1.388217167385454 4.052940511534825 2.7957385634352283 +4.5405383500625245 4.745872982726793 2.9161492508860727 4.253910864065386 1.3534284041158173 +1.8825857851567966 1.4949490734509143 1.5956050843885885 1.825363479145349 0.4506119619177378 +4.882940698612929 1.315911761232209 3.87649896365215 4.068439866407241 3.5721893497212416 +4.240678290908393 1.4368984686373092 1.9687744352651602 4.659021188938543 3.8856928452239567 +1.1702479390692453 3.9527110232646083 4.287047685083166 4.031966599946191 2.7941308442706525 +4.479944910576503 1.0009704580614232 3.483175788385106 3.008934458558807 3.511149111070052 +2.7833016963829396 4.39731437896716 1.9002389275137785 2.9002981530157643 1.8987246756847982 +3.5696478879545124 3.003650655362482 4.4147608885223555 3.9352700477990323 0.7417980410053644 +2.030385482049446 4.253230595107298 1.636896822674577 1.1066589907234583 2.285211709027721 +3.294440588120817 2.002175853685445 1.594848412184898 4.140346314235966 2.854734263151601 +2.4810405331987773 2.7761082694455537 3.2108016337402794 4.731084129193387 1.548652264052497 +4.535995907809381 4.86384360771968 2.814975175739938 4.814169976009639 2.025898310321099 +4.986765274316131 1.0659793125060686 1.5549808719126852 1.0780808836377478 3.949683045149761 +2.667541322156212 1.376775172329053 2.378618219823209 2.804255348790907 1.3591336281232587 +2.6382618533557687 3.7101949701641646 2.503650568987576 4.665512466411273 2.4130245482470642 +1.5769878192337101 1.7891134300842872 2.3039414335362887 1.1321468465266387 1.1908399678058537 +3.547816930253476 1.7340272986661587 3.3475206896013483 3.6706304837547505 1.8423443670311777 +3.96977728324187 3.671995000981334 3.9974826002750676 4.847606691842426 0.9007692594063808 +3.079412152805941 1.6171873023223369 2.820558172136054 2.649205550517164 1.4722307000967831 +4.726125424068989 1.4303065117501794 1.8196655687612928 3.92495285965656 3.9108383858200373 +2.4545860411818836 2.4729900289012545 3.2951671124769426 1.9712668169986522 1.3240282093412812 +2.6591558412724625 2.551970817522064 3.089572681108522 3.961633101143302 0.878622789089613 +2.7159457366204065 4.34080166496462 3.1859102955999337 3.9976251109369625 1.816325336858175 +3.307367851773938 2.485601180552077 4.760478791400937 1.9224151157683331 2.954641414601153 +1.2417252149976208 2.1837137030593703 1.3090283320499028 1.114503959676766 0.9618638381226439 +2.8917095467256337 3.0730727084850504 4.823986690812546 3.6624779580982616 1.1755828905759544 +2.9495438796931532 2.8043547804322264 3.1343549363235597 2.2716850965213236 0.874802335987173 +1.7612241112753377 1.7657708984922467 2.4677653275451394 4.016611863149302 1.5488532093542673 +3.596632074359669 1.1027897949623133 4.46555362477409 4.037609978800408 2.530293476780717 +3.2870775445512015 3.842231306075548 1.1030181354723014 3.061283207684704 2.0354355288197357 +3.371855024430975 3.179276221284601 1.2524696421479504 3.790013263036768 2.544840706868471 +4.456713350080403 3.1991261443924763 4.788552220599809 2.725270566903116 2.41633126089767 +4.834773488681957 1.6607537715651395 3.6918340532516933 3.0882132248516037 3.230906880293014 +1.8573087539720015 4.692263724402217 2.864987727051407 3.0356628712353357 2.8400879720898065 +4.816709060037722 3.011783115416821 1.749199198596656 3.2936124364160184 2.3754936149603387 +1.3019268966839088 2.6185180506418493 2.2967176057418 3.9729440664750775 2.1314660246747335 +1.5357114681530764 3.286347228535875 4.4764826107566105 1.642090895226949 3.331441424157753 +2.545561928143776 3.883310489006533 1.2889544441569818 4.131863735680203 3.1419268692825173 +4.112342739018072 4.703313120365492 2.4021677819266136 2.284147036974351 0.6026399321891994 +2.90043620069614 2.5906538912894512 1.4180222526481505 4.767463708038404 3.363736485265771 +1.5880686121211585 1.5588559888937463 4.219314671351447 3.4692530733336344 0.7506302539711955 +3.9971987438415177 1.0437260281936194 3.524206675707093 2.9543262456724206 3.0079502633210335 +3.962761853164351 3.7649044342309463 2.14782469295565 3.5437951712712663 1.4099223860041796 +3.6139880067347967 3.9064253458324507 2.740186336320642 1.3642960185214776 1.4066249549585 +4.206160180155575 3.3044821008111604 2.1998212659361767 2.4409888673113223 0.9333730072823366 +4.217963554940159 3.2196509964432045 1.7464744533937204 2.662209051820402 1.3546947328488477 +1.0840030944337786 3.808931562742887 4.698063561913559 2.501858621110161 3.499793036653836 +3.794591948483246 1.2168102497456297 1.7628875060829725 4.827262137532398 4.004416357999927 +2.5029697558678285 1.9875600341735469 1.0261892934653578 4.200577147620723 3.2159579334664934 +3.891964186039331 2.8105048946057956 3.4828251430908512 3.4705387731409854 1.0815290814002503 +1.5416477276000071 4.372964944120616 2.781520656741807 3.011955682575426 2.8406790529197328 +4.972738366550205 1.4199412748790596 1.5233500621755338 3.2154676996477907 3.9351784297070496 +2.5506566046518184 2.4120559836606965 2.185479441972221 2.8030751672068868 0.6329570380106831 +1.3725614876884813 3.349191791895804 4.225401701432725 4.118338287037103 1.9795277048358735 +3.295458338107195 2.948532949401545 1.911320070301131 4.905155608814383 3.0138693496887847 +4.405353978759802 1.6085270957084683 2.976280193399481 3.7500363864872277 2.901885466399438 +2.649748692125572 4.55553034019706 1.5899269711686586 2.095549731944176 1.971714499196152 +1.054698353205609 2.5821685903961704 1.958126107025869 1.3493766199886132 1.6443057086415263 +2.835993889942063 1.606837421213088 2.536806328389068 1.6732802883244053 1.502166051569546 +2.761158040648535 1.5221630399477766 1.2750524641129197 3.2029531124116346 2.291704501342195 +1.1306350685172561 4.584021173078787 4.428870311429657 1.8370266183247512 4.317815340732665 +1.8486295994066597 4.945405630346906 3.3391052826353835 4.458409797389173 3.292850495020119 +1.3386962273133975 2.988890483854886 2.8209181153762515 4.732096778420871 2.525023755610932 +3.687359200569367 4.624510897509431 2.957879401919311 1.2489550419546784 1.9490191818343323 +3.9974294044782654 1.8922512070663369 3.3962490006272943 2.6544455986100295 2.2320500733861066 +2.6403265766050414 2.8838735354221643 1.9283495592364805 2.959056887112794 1.0590905140199298 +1.7101960505819371 4.399166177634262 2.7957259522418494 1.7384020051498372 2.8893761045031896 +1.1483615877655269 3.893647956998652 4.630379039389801 3.0287382356806907 3.1783408428302904 +1.1895584562589496 3.7947260025202736 2.0009963653516962 1.9332468699708802 2.606048337659454 +3.1725838788841 1.1348719375367557 3.469926064032354 4.741592319842706 2.401958580424792 +2.479350235843878 3.691344609978466 4.782742165701531 3.5742600512936518 1.7115371406363438 +3.3644462830728137 4.950899547357384 1.6858130364698307 1.7426026524696927 1.5874693761596097 +2.6055056520297626 3.7909205576669622 4.793095666789813 3.8033900040436834 1.544255742219729 +2.6776046313832387 2.028315288063668 4.049177138279896 3.39336274064374 0.9228592392641651 +2.6873290893888155 3.960658248997056 2.935020990888322 1.2686712318905884 2.0971620509680293 +2.151088569680518 2.9995939040430946 1.479303438427681 2.8002275394732687 1.5699687204415387 +2.067366992076333 4.420409106506979 4.953638862344796 3.7061178486066457 2.6632904220160643 +4.6974973439592755 3.3289911773898306 1.711164066540638 4.471871007469934 3.081284138412715 +3.773793007110348 1.5037485978360356 4.9096170789986315 2.538961446233012 3.2822415738700466 +4.051362055340992 2.4554266885237195 2.4366922968827427 2.7570058631483283 1.6277624138036735 +1.1893996496395531 4.438872691638268 1.7841266177105188 3.0581519299589948 3.49030307379262 +3.9718043550082216 1.4248876198343612 3.10664586493631 1.8841879944192899 2.825099662153122 +1.9975223917146083 1.9469996763883883 3.974827084279457 2.5809594959051845 1.3947829217065446 +1.357129548411466 4.746295972378837 2.946352564747488 1.9975636861998738 3.5194672019218216 +4.814391885231676 2.142191623146526 4.99767112680639 2.2759018885555036 3.814273459910387 +1.2097017781966146 4.101198314288494 2.9903854585130785 2.531538972547883 2.927676948693955 +1.989572467608613 1.2609153047708803 1.2410428776427338 1.3475644755252087 0.7364021399820684 +4.5203345626419225 1.535321408758377 3.079632395902334 2.827713626316933 2.9956245751641197 +2.1479939188583077 4.5082027955431165 1.380225881910746 3.852673718059778 3.418125837949767 +4.8687678695219105 3.035450785593832 3.7200155785898237 1.8001854184500008 2.6545808283051113 +3.9130382237583428 3.4378222427246623 3.3376470133906433 4.501402073199873 1.2570425879266731 +1.088929495159427 1.8821759718316078 3.2172790793961794 3.9969216975232222 1.1122421430393736 +2.5725038339120707 2.817680472222474 2.686706638387004 4.3099472112012664 1.6416520767822775 +2.8931139368679357 1.649153024184311 1.4027742620616617 1.0346604394785022 1.2972842936925824 +3.552380345146439 3.882144710566651 2.561406219633076 1.384198333348964 1.2225231876044325 +4.216512304070305 4.361989456526718 4.976924926428927 1.9934697576954128 2.9869998904803374 +2.5342620728470635 2.018450361943398 4.993892928126748 2.9971289548072217 2.06231134561495 +2.0727985285194164 1.3054085789232492 3.576815112253602 4.362331444944351 1.0981453654526487 +2.027058578001164 2.116736152262449 1.10059227107541 1.3040171059675854 0.22231448620433417 +4.192419617452456 4.824876688019242 3.364310050439055 1.704510764403771 1.776213842991085 +2.2247079003108743 1.070436409412074 2.3182768057515917 4.9073825681547 2.834750663393647 +3.1524510794203118 1.257558238411376 1.455692896339364 2.183338447271718 2.0297997257607867 +3.4035884696264254 1.149330935291378 2.278311536317994 3.0613492795824753 2.3863832756879306 +1.1343020363315017 4.901119330005814 1.602050972250186 2.7368598960370174 3.9340442063390824 +1.5644874975726508 1.6193141888930982 4.360895861357506 3.637120792397425 0.7258486870755629 +4.13448513068844 2.726268995373911 4.4571702422621176 1.3378324889422952 3.422475814822735 +1.3061220993179576 1.7118833998185856 4.291513336892729 3.4605233779070135 0.9247629668834291 +4.596383873113537 3.91930044890277 1.6942270310617151 1.1199905873565865 0.8878003472741445 +4.2291065008970214 1.9016510840938121 4.116723223977733 2.803904205727714 2.6721793524921833 +4.493293605065554 1.8620605512422665 4.005695555301859 2.4698920222086316 3.0466505995591064 +4.75553105907467 3.207045701619412 3.391586548118068 2.9780491947130616 1.6027538940569 +3.5940120903271353 2.7184272490981005 1.3671138693982399 2.888322064585648 1.755198902488093 +1.7311112740971701 3.7249188308589654 1.726456037791802 3.7849203060854903 2.8657536037214206 +2.2189464167596644 3.7410556622565165 4.4477881199789255 3.2391712116956666 1.943597537098455 +4.540892532266918 4.424327625916689 1.461056183147908 4.758487493305011 3.2994909641635366 +2.9040107042427254 3.847839561453939 1.5013497923958408 2.3701513456292096 1.282820739856251 +2.821431227302781 3.795182962972682 3.8639755394735666 3.8037100585457972 0.9756148681275825 +4.841835827358402 1.6741935319933026 4.891030439766901 3.0821142623748887 3.6477575917563936 +1.4266286952730165 1.7279641811163624 1.7908901090009786 1.596199538323861 0.3587582658825118 +1.6079552907502137 1.295931178269071 3.520780844533331 3.3946624733762585 0.33654849622745 +1.3215482981751574 4.605196946928319 3.3977359613108917 3.822721242602363 3.3110362332316536 +1.8970227552478947 3.703517853627378 4.830795749030075 2.3950456369647064 3.032540708530646 +3.898135822612269 2.2342126905589503 1.6287830027166428 2.864657166636169 2.072685489510146 +1.190993422315803 1.8307946883548651 2.0382741977415924 3.6817778935529453 1.7636468065263982 +1.2335835658812866 2.909399040098663 1.3277507146349916 4.752445072856467 3.8127272326853405 +2.3162531088037235 2.864713930875258 3.4929325944606937 1.3250387181199859 2.23619613013325 +2.383125341950646 1.7391061077075456 4.274949450085719 4.821712968880505 0.8448142515132697 +2.16612875685619 2.827349732702045 3.0744545270244075 2.178257564251508 1.1137244609785288 +3.197448285177567 4.300851798766745 3.92308445707093 1.8172959137683002 2.377360869305616 +2.597123521234082 4.1655974272065315 4.194333113132015 3.7918411517149493 1.6192931089589153 +1.837435951469577 1.01485578798501 4.740429492527648 3.261923067757365 1.691927709284679 +4.348322234889785 2.02011333246989 4.110435468799349 3.168093565438327 2.5116856802031036 +2.6045801442217345 3.826117421949391 2.8615579805295313 2.104558175783508 1.4370810781802852 +2.0930900979197795 3.2142048430024035 4.499635375345247 4.022393838829474 1.2184653281146791 +1.8963733575724064 2.176947322138397 2.35965987221583 3.6285541605759066 1.2995439448610822 +3.1065396000650067 3.688295525860351 1.9491947563215515 4.04521375073082 2.1752552912526015 +2.263416888772572 1.509285861342061 4.349906686965777 2.3312678825979902 2.154905155461095 +3.2387420187219482 2.156992596374102 2.137636500652597 3.983781799452221 2.1397276174854247 +2.986717549404113 4.1760726788699145 4.51601003051911 2.274548320934482 2.537462555294296 +3.9731767415839716 1.3759857565297273 1.31094229878377 3.9068917955377924 3.6721049552735416 +2.45411679763917 3.6305479617521 4.081255487385246 1.8665853492450726 2.5077388429950034 +4.274326980361839 4.963593018796217 2.11996462794265 4.458202701171295 2.437713059167348 +4.918662030613911 3.2188421410106054 4.124417669119943 3.465556760114215 1.8230428833428047 +2.069990221255929 1.6156812031942205 3.9540433342677512 3.8719914843081593 0.4616591707894311 +4.83277488117362 1.1271469519409352 3.9027009353160733 4.452170323063104 3.746144011911503 +2.5031503443635312 4.730672352486552 3.6943657327556996 4.467724035454538 2.357951942051755 +1.1414059949764028 2.721290475772323 2.8530020151988325 1.5979257742030057 2.017734210289355 +3.31289937235565 3.4220208413408053 4.827050564240308 4.653219073491909 0.205243470466879 +1.538852866672018 2.188483881495313 1.9634752046674215 4.146018825104335 2.2771730523897857 +4.4008133435386165 2.914336186343592 4.770040408704018 2.7771414836020787 2.4862140826033197 +2.2301915494165567 3.9372558131003697 2.1524658298369994 2.817945359966504 1.8321930589781592 +2.320682683320886 1.103443959694001 1.012021503064763 1.9125437794736295 1.5141368764432805 +2.968961976187994 3.965451371838772 1.3443868830059933 3.393585738279374 2.278641495298939 +2.7573759718431377 3.0302379124682832 1.7179428231588632 4.969293636413043 3.262780371016464 +4.483057549543456 4.346730586159181 2.0146598619162535 3.361925064733393 1.3541449581442475 +3.675306470511351 4.049429593226889 2.013769061463523 3.7464999870682707 1.7726603091110014 +4.2468657472574245 4.773679361149306 2.048670012651799 1.3797875308565528 0.8514319457445745 +2.1153897843677907 2.1512101759411424 1.5207820324824994 4.1818720079743485 2.661331050079204 +3.5184839124597205 1.2621317916910688 4.941086012480783 1.3801396765171718 4.215621389606739 +1.5155115608126386 4.686571158631633 2.798003462313519 2.9177228845617726 3.1733187222501646 +3.872525053857336 2.3908016175749367 1.415105906925389 3.1408561628570055 2.2745809036999676 +3.3682743458087354 3.0945295492536644 3.0896212506453224 2.4590299488992797 0.6874457094772982 +2.115040995026732 1.6064423905032679 3.74638065076267 2.423050954435164 1.4177002594714665 +1.0936656876934014 4.012731607369947 1.2694359919685705 4.73826779010928 4.533623262602351 +2.58821612245477 2.683546417888321 2.901517552479081 1.1268625032654938 1.777213664399058 +4.6304530211046755 1.0229384908213421 3.9481344730175305 4.5260861199136135 3.6535173726636736 +2.077830980537072 3.5742526944824875 2.0802111362980273 2.209696705239057 1.5020134681590964 +1.9571533457625558 4.747982980400326 2.6865811057575466 2.860948350614029 2.796271443485276 +2.6847607897690358 2.6184638892427374 1.8598968488488996 1.4857127667770205 0.3800118502038702 +3.419687476835439 3.056301252267455 3.2374707353216303 2.891390582772807 0.5018177161021622 +4.789672522801739 2.7602430374324802 1.3779015170457383 2.7945787346288204 2.474986540348266 +1.7080488577248438 1.1748748584950208 3.629680430439815 4.329565268679114 0.8798370873360439 +3.119217455953915 2.5972534304059445 3.130434521132618 4.0448492456161524 1.05290110281951 +2.690097181744696 4.519835361060241 3.275042464815538 1.3981521972059126 2.6211941708871356 +1.4299799673097686 3.4075777618643066 1.7039118205268666 1.675265851716032 1.9778052554678087 +3.1256851365206786 3.5382969277105736 4.9149236436839505 4.76665517985649 0.43844273011955454 +2.194487314167984 3.879097647887763 1.447108625801239 4.972187821901239 3.9069291413145044 +3.607985683256391 2.8980347066690593 3.232279211076357 3.731790777004954 0.8680680812319647 +2.5195296090744956 1.6677094853453487 3.974263354620122 2.4374699896838052 1.7570803537978068 +4.553586725473432 1.9913515421881018 4.979723876157729 1.3421780604346174 4.449358234167027 +1.2534755229773076 2.3450655580165423 2.5766066914579993 1.4132586197234183 1.5952891714687734 +1.7855422016046507 1.2031240776205676 3.92578204451479 4.929176909230152 1.160177626780614 +1.944134293998982 3.344892357988517 4.806427475934866 4.623536655504459 1.4126472333988471 +2.399164871463548 1.9966210190981446 1.533778632032301 2.4424274330470346 0.9938230207952986 +1.5111747706921466 2.141409317219562 1.177970508452518 4.35628867882118 3.2402009159513883 +4.88509601240602 1.8537244311502903 4.515572064080747 3.7169524154492697 3.1348057366964746 +3.223334955678597 1.612721357439892 1.164989152143825 1.9079715822901204 1.773724627538763 +3.743729193748734 3.9424181437117642 1.0847679604984672 3.664602067726722 2.587473926372132 +1.690843574154754 1.0713044075842628 4.881368014289903 1.635791011228351 3.3041789996483035 +2.225991487557383 4.799305642708101 2.8663639978446005 2.775572392384421 2.574915310591999 +2.395305914968922 4.2968509681792995 1.2212609750901784 4.682008428773505 3.9487525280225513 +2.443591876480134 4.37774583711805 4.176317481821606 1.9380610598037844 2.958165538666719 +2.5502890996553385 3.5240048332477154 2.4069072935421736 1.0534601593174902 1.667315649475632 +2.386883544812145 2.467286389960099 4.722108379464449 2.0554772524741782 2.6678429835620547 +1.5709191687818986 2.772186968285777 2.425995740502432 2.950580485381896 1.3108140526730487 +4.7179697114231 3.815002676584426 2.136110958943501 1.614841778719629 1.0426269823175567 +4.533662476962467 1.2240205644525117 1.3234619556098628 1.3276139987104516 3.309644516939012 +3.362673816443131 2.400440842015442 2.5232845975399814 2.8179051067600613 1.0063267568384817 +4.314285258397703 3.0652996244909425 4.024355609937937 3.1270671301376702 1.5378854735277745 +4.746424065739852 1.2577939372090654 1.691204099189071 2.9353523133919674 3.703841917873519 +2.668621724670282 3.4360045084738484 4.971436514260279 1.1383762293981636 3.9091210628817006 +1.4669568118422505 1.629533321178414 4.885589899865671 1.0281938704896403 3.8608205408739087 +2.288101006081705 3.711629292182806 1.607013773014959 2.9616378507331893 1.965054496258031 +4.205908840995312 2.8828527468618046 3.792601194600245 1.1772365437611678 2.93097418703789 +3.3269560632238946 1.283672398280884 4.596661388763957 1.0754442248771543 4.071115136012977 +2.4745860337415704 1.5392625964473283 3.2726021129785394 3.5174854454326248 0.9668494085770203 +3.607872535032489 1.2032367059309492 2.6393596422463954 4.64344775792302 3.130278365576316 +4.314115244773198 3.578054785506316 4.326065500785504 3.9292574637614126 0.8362066837469587 +2.3935629920915584 2.9091372020702613 1.7241933582954827 1.9110557027268666 0.5483924705551279 +4.308723098592442 2.026941868384921 4.288928748649806 3.075213479174864 2.584498082391237 +3.8091569745438996 4.907089164794506 2.3918138011841164 2.871778738465276 1.1982576665341231 +1.5442009009735087 3.570690885691751 3.5888887693670553 1.139314121851776 3.1791630363844106 +4.025847351438511 2.7740597935682954 4.406740149113977 4.692157167836215 1.283913924145606 +4.217148034444679 1.818499873210747 3.215047238857974 3.252446911076184 2.39893971097086 +4.042655806729246 3.496287841796205 2.532637818579565 1.5536467269494199 1.1211340288280682 +3.782816721755924 1.6333937464753845 2.1298680458742547 1.1169601694872502 2.3761316236081447 +1.8483711808482668 1.1242799987892824 3.4593584093821277 1.388022864855834 2.1942513479438985 +3.5182209719334825 1.3673023696904543 3.1950096428601316 2.379198917174634 2.30043430108721 +3.4611672590032767 3.2958551448112607 1.4658284910134487 4.861076914310063 3.3992705027692014 +1.929473440938898 2.840539012226574 3.3209228048072967 1.4212826965950267 2.106815847651252 +1.654574723130779 4.609400204583732 2.7699025091794653 1.0454475518189486 3.421218865522774 +3.168761604680119 3.7769191661880273 1.6021902394740555 4.643905733846417 3.101916950584613 +4.286222101641869 3.167618886910265 3.2385006181858924 4.965686220329868 2.05777628916783 +3.3079933251702625 4.127585906415628 3.5541219512682476 3.8234555010305806 0.8627123276388369 +3.79571855273736 4.43800987801901 2.9324454418397283 1.908269347501827 1.2089147276567094 +3.8090937809732677 4.137492757827186 2.1295437931895673 4.702628774609012 2.593956863481929 +3.337488045137374 3.7037079016027548 1.9830124492483394 2.7263161157373155 0.8286237529092918 +1.4070448361012602 3.362212331495549 2.1746085618520317 1.8298566692136107 1.985329645808008 +3.7353481476125485 3.260678093447233 2.079970971687366 3.455444976623731 1.455074018246834 +1.9227257342949233 4.218598466147101 2.934903706677586 2.8269736788538737 2.2984082517621647 +4.808487165693875 2.234575668406755 2.235809656639234 4.821681356089833 3.6485274895341484 +1.7756511313839116 1.809004504579788 1.6843285506323964 2.0033348439008116 0.320745167770923 +2.1235987371987184 2.464170229523836 2.6042616360891335 1.825180612977222 0.8502682999839879 +2.0203808978957136 1.5142907583776384 1.599110651364398 2.9126839724906657 1.4076938940309849 +3.9514964532838084 4.044407742206895 2.311881545042177 3.5902994120608134 1.2817896669585964 +3.697813573206878 1.0318934082138544 2.9508864237320025 3.2383029322487555 2.681368787668789 +3.8247705094851803 2.960825258517868 4.686905611135419 4.002773831049991 1.102015285371228 +4.918531427003915 1.4909299763466173 4.148929465860292 2.825581379185949 3.6741940426510755 +4.792152078255481 1.2069658884020056 2.740638980639561 4.575634549610131 4.027501552334612 +2.4733356428069966 1.8479771803346172 3.1852948186220145 1.491598011570248 1.805458966801286 +4.216579721438681 4.779765416518584 3.5272073221899323 1.3131116154551088 2.2846001675838625 +1.0450223917075299 3.2783080876761224 1.5822812835285065 3.2154277802741595 2.7667187207322903 +1.5445868162506837 1.9508333161130618 4.531940961292014 1.1940883300485576 3.3624836663617113 +4.6366214783608 3.678048043567634 1.1728062956932295 1.8487211430468493 1.1729125759255183 +2.9038975341357594 4.704186434342148 1.0195897404294847 1.7048994629072238 1.9263150157564688 +4.944521111121441 2.222855885672713 3.419730598588567 4.8061418441485095 3.0544390223463207 +1.9027333010167795 3.7353033175677353 3.563129038281977 4.027748669538154 1.8905513130592873 +2.4756948153989096 3.3296459082314334 3.665744534618279 3.7525041573341964 0.8583470749549218 +4.9003266310959255 3.665702165962593 1.983184407863011 1.8015286013481342 1.247916824931188 +3.838230669444125 2.6843713036098253 4.3659463818897875 4.159829696636335 1.1721243637359486 +2.197657903247397 1.7573463111763772 3.0016330704520615 4.262404776173178 1.3354473378082155 +2.149904469735026 4.675966076805355 4.758573351004929 4.284272045347649 2.570204071910037 +3.631750848402098 1.3932391448519548 4.065703024898323 3.2339750344471 2.388033939673177 +1.6136965845514841 4.750713523991196 2.5035311446266215 3.8137501990694496 3.3996395763311082 +3.7262682070368496 4.061282459634362 4.086394205398511 2.88704240282006 1.245262741670066 +3.6597353875029976 3.5034384626769963 4.759276855916767 3.7256852494306223 1.045342210813604 +3.9276337452220504 1.7855150542522442 1.071948697771965 2.737610986697569 2.713503887402979 +2.814022851357345 1.7420399575222256 1.6771979265330677 3.03984006872378 1.7337649587960906 +3.8738988500621434 1.9199393477205504 1.5237562407957457 4.509344555908003 3.5681501263436006 +3.4704747572719756 3.413093582537514 3.585201210127023 4.652664126264473 1.0690040582442033 +2.2056897330324436 4.020570401032963 1.1860790552471023 3.256509745401122 2.7532662569780024 +2.544372167775571 2.8958662419668166 4.198121421956836 2.476272081948199 1.757359733771017 +2.010880268765918 1.3476654113003104 4.955592313060551 3.954601478114816 1.20076500565618 +4.044755370729483 1.1655782553816532 4.869476088678935 3.817042390688541 3.0654979285930675 +1.4800610154413008 2.533572249423305 1.46894952798944 1.8955732235232596 1.1366150173727332 +2.3310117177505845 1.1047762874386633 4.8438596554493625 3.2751167534995176 1.9911322464794454 +4.891364162570546 1.6375351338257569 3.2406886913297663 3.438957957304579 3.2598641152864714 +1.515145154247438 1.6887850733875562 4.074055378316018 2.356923391916831 1.725889069504238 +1.4104764713508895 3.06658306484689 3.284533616282301 4.475712944966723 2.039999324045476 +1.9286513896318112 4.047622512695627 2.193059412437703 3.996053785831502 2.782234233645332 +2.778517175004195 1.8343660987034376 4.848367110795513 2.78010261379586 2.273574121164539 +2.8042874550342964 3.3842474359016093 3.9557195719470304 1.3502903801238295 2.669197417391998 +2.6638372831108836 1.1145490413700307 4.139255284784571 1.6446745311740876 2.936533192776869 +4.294446228849633 1.2000756695604373 3.3790411809478966 3.7697449096657536 3.1189386915791992 +2.0532232782314055 2.7995937620569573 2.768582807593752 3.462519664519399 1.019125733423425 +1.1381020641718682 2.135683108761028 3.8592859737328755 2.99613020745327 1.3191686083989915 +2.086641015953324 2.3984054373240573 3.5503258088337555 2.9419936911085114 0.6835678604854885 +2.4467799195576814 2.8097640909410897 4.3718752045614195 1.6351872893524244 2.7606554029660884 +1.069716429501474 1.4930096970390614 3.1624438983215035 4.4740420544749675 1.378211490870619 +3.2685378565976007 3.5831778662392475 4.48569066252025 2.472303851404582 2.037823541635 +3.2965290952400403 1.4596874446348722 3.632224908417702 4.955227219504925 2.2636966149508755 +3.988925953972246 1.9575452149220216 4.505615172336219 2.398177895533799 2.9270803854080665 +3.590255780179947 2.641504432150076 1.0388937574929762 1.4978194446412791 1.053917409815892 +4.5072542874859725 4.4476711175342185 4.854521382285218 4.7526231200980735 0.11803986605490362 +3.101603629694245 1.9642689853986663 3.959673225045859 2.829451047637756 1.603412692796232 +3.05241107197989 1.8625235873927393 1.3629545067579327 2.912591141969989 1.953767111804393 +2.5131360734059145 3.6044648826483088 2.376073460910565 3.274105769038602 1.4133154624230897 +2.868614588150482 4.054608730282914 4.761610555627245 3.8276053410924638 1.5096184438296338 +4.4525677826152705 1.6790250413466108 1.0222173301037545 1.4040882332824949 2.7997079712603274 +3.051618509716942 2.2577474314708414 1.3424180191656458 4.420573740688534 3.178879352038972 +1.466328822646747 2.652744291956607 3.587104250482467 1.449465958525784 2.44480656352547 +3.2883599374457995 1.5584464537415976 2.3448111533915905 2.1089345510696877 1.7459205115424163 +2.8578928286643768 4.2143662068270125 2.6806630270852394 4.070094828089827 1.9417880304777875 +3.463679978805726 3.925501774210969 4.566907444075893 1.220166852762008 3.3784540778674694 +3.329215165808682 1.4502701545179542 2.9356291570557462 3.8858030789608664 2.1055319606510063 +1.1415451384673654 1.1791990901836158 3.332248471701333 2.799299360384311 0.5342776200941355 +4.947298683618291 3.296825444795573 1.2196212945810085 4.243549219249125 3.445025690130275 +4.02946055663095 2.327224753254605 1.0640146469711005 3.7800191375407155 3.205352885891134 +3.432630587315976 3.2463764786179508 2.4888684896061912 4.948974320239282 2.467146386196373 +4.832205284951435 3.2456076793538977 4.9085128846577195 4.140345474968209 1.7627742712545276 +2.3891885589018256 4.35755527786749 3.081584241223989 2.409010755240747 2.080101592321708 +3.292476520098724 2.2144436354391046 1.0109846373627391 3.325450651559496 2.553215194863011 +3.5114645099454025 2.1263544644148134 3.1104003594464174 1.2451214723296564 2.323315554321731 +3.658316472323715 2.416405182758737 2.000859023890787 4.1103607711169765 2.447925912420409 +3.5269421180599743 3.683069519960056 4.573759628830662 3.077664389455662 1.5042196418424434 +4.160727889722844 4.506307187729684 4.065381095127645 3.397916614249618 0.7516208382187615 +2.8348878328148603 1.5048678115521459 1.9290575994725492 2.7198113758785967 1.5473347381417173 +2.2150718253982995 4.477380586234226 3.0811022871226874 3.0994486481221717 2.262383150201775 +4.074639527856641 1.3987120371716473 3.3450213618841427 4.364602997709751 2.863587723034954 +4.801652759513756 4.246168949068684 1.3125822577061799 1.8217465511836148 0.7535320440558263 +1.0529145614986186 2.4150580702885494 2.118061740428892 4.4676560503048455 2.7158844525384365 +4.6097955496492835 3.7783276101784393 2.555640046881342 1.8204625789479292 1.1098760488112513 +2.590976959035257 2.891230179228989 2.1121510803904155 2.7289561826084996 0.6860033020029619 +1.0777964493221646 2.7214437965783427 2.6332453330759393 3.2588585380925537 1.7586837363305068 +2.7618184029232915 3.7476282265749363 1.9837591196433602 3.1491592621883826 1.5264267098855568 +3.449755227896682 2.5346796232142887 2.4843729865008046 4.988216824912872 2.6658201982577374 +1.210470367275613 1.1537975244830463 2.432152210789081 3.974577393689545 1.5434659879491093 +3.8699911731763366 4.487518467470277 3.771785549177778 3.011111905543252 0.9797777050526415 +2.7923987054348074 2.4021975479649056 1.6346120736581429 2.060546092156908 0.5776475840902975 +1.0939760487903825 3.302066950737133 1.645825381221981 3.555364147972574 2.9192471174916643 +4.331659726720846 4.176079271685886 4.350444571674723 4.70559080030303 0.38772944393970776 +4.0602551171183086 3.4082685968740916 4.67739428405742 2.0176868734740303 2.7384539310516733 +4.482652850981401 2.237141869129795 2.9978519299045647 2.3728798640975257 2.3308602816675394 +4.5826553552544205 3.651661566122684 1.5424420179079963 3.6386262983538322 2.2936298683506227 +4.209272086484447 1.4508589317127973 4.83358669625315 3.9694108383694546 2.8906129187018976 +3.839468994445335 1.3358961777893739 3.600835895896308 4.165004167257431 2.566352019250138 +2.9742009919801213 1.9727548552339682 2.6655446244533283 1.1515866213678416 1.8152033494653952 +4.444745892180619 1.4758235306299476 4.327220280929572 1.2309100180909116 4.289712954578153 +3.617871773626334 3.7964947625328365 4.362122065037204 2.3572386443382136 2.0128248067727053 +3.270032234423756 1.960861712607413 2.582669800577384 1.8724627927743165 1.4894030512676755 +4.928147525751891 4.893445774380815 1.4837237055739183 4.093319621533981 2.609826633350127 +3.428363255601016 1.501709126666423 3.502511641063744 2.129326302229942 2.3659319743663003 +2.7974687188138105 4.139548554728991 3.3777903890172634 3.8902578788193907 1.4365936147965477 +2.723458188828833 4.7003247157257295 4.249662574171013 4.8720240628470926 2.072519019877141 +1.7761230931583518 2.226926975036205 4.113343089760731 1.2339785294821146 2.9144406686197284 +3.003673568467663 2.2600708191888823 3.9959347898701565 2.763107586833214 1.4397249602902815 +2.3407406929735965 2.707138897752774 3.4019031397261323 2.3899193677202475 1.0762707834316894 +3.4239161351285916 1.5057476580168827 3.3497562320203813 2.619494314497044 2.052474792724606 +2.5516553862195948 4.669401191775716 2.3219364448347393 4.329633783308264 2.9181665305229276 +4.013439319697998 4.156770190117023 3.7834165178866725 2.0848988899799465 1.7045544493283182 +4.321711787238043 4.959865228104889 1.9668586097449987 3.0952034371537405 1.2963031526731155 +1.061349339617156 1.405692052191014 3.8833539894667854 3.034958060054239 0.9156132135058456 +3.053602932526588 3.155247808438022 2.9886930150161053 1.012052173614571 1.9792525601083901 +3.226408447171712 1.2512114404982801 4.506913644839778 3.5075685123501064 2.2136155738977092 +1.5956693132180986 3.022915723598651 4.107354520178075 4.1893042403119285 1.4295971714347329 +4.8755106285607495 4.386649840215298 2.286143521926366 3.7938619490309726 1.5849920270501443 +1.1356121020717467 2.184890514136268 4.232298461397477 1.9474387434606966 2.514273079177118 +2.2216281982105697 3.0628155642106467 3.660493798932244 1.9400549544514107 1.9150733673456726 +4.652086680127107 2.205206000494739 2.7029408629911695 4.03502573784013 2.7859783154503432 +1.9284524523998794 4.79856837374037 1.930861575654263 4.906328678338337 4.1341226253084615 +3.7759206850022426 2.8281777497322538 3.8259805387243837 2.390555559690595 1.7200760279093266 +3.6261606960840216 2.889480539027904 2.781228030171682 3.872561585527165 1.3167029212563726 +1.3817455007789508 1.9755368718603266 4.102232013444466 4.230528599564522 0.6074933797011793 +2.3568002155905763 3.488902621987522 4.284603124489607 4.248913534155676 1.1326648248391749 +4.422513082595801 3.408310758512068 2.2529103503824706 4.0183407325509375 2.036013454881952 +3.447293613246149 4.296226671366295 1.7037064276934877 4.9648838901382 3.369861388651847 +4.1212487170459795 3.7167179321920965 4.021838683167008 3.3828175579753763 0.7563022903149756 +1.4581000660651733 4.425029146049155 1.917920515076383 2.638584935742322 3.0531992029457187 +1.6719536386405722 1.1137898495011664 4.6838075261301135 3.6724717100317137 1.1551393632068279 +3.623827324132021 1.5850200244441193 4.714983584934382 3.479156330146729 2.384114973934072 +1.9545062625816012 1.738211898592367 3.0035204999039946 1.2282321973389858 1.7884160056087783 +2.0344746401521787 3.2208703266756364 1.7090337821649677 2.9285700381907818 1.7014121795622972 +2.7330824510639036 1.0470724813444061 1.5711895064971664 4.987671335909169 3.8098527148297903 +3.581455517472851 3.6058528622857953 3.996643426268708 3.8346036884124093 0.16386612547582777 +1.883876984747645 1.8312876395856943 4.7183173611884905 3.527315677649163 1.1921621741265216 +2.604360216274492 4.1393649169725535 1.9404721124120865 1.433913010827462 1.6164286419645526 +1.7295441565005838 2.5027607171128956 1.9766429311736986 2.0400302393923955 0.7758104152744696 +1.2644413483253074 1.9117228815964538 3.3716616218948694 3.2747615235049463 0.6544944708565711 +3.6167316896241894 2.014277353564066 3.5847914431391152 1.8638601842823381 2.351481298430473 +1.2576358426657381 3.191297618832547 3.713237611510645 4.97608766283307 2.30951036298468 +3.8902146712855274 1.5965243859905494 3.511525929606853 1.0528258286011751 3.3624724997450746 +1.3341422100541487 1.0138190450527342 1.5992236133250355 2.6946704975445503 1.1413197650889808 +3.662477644161836 4.368550512291991 1.8417426496383071 3.9762181802770793 2.248227009446602 +1.3266600963620303 4.500197264972517 3.9780376049275596 1.976365284595257 3.752070127081418 +2.3547152262038367 1.029948118698338 1.3659104563976538 1.1687184584172474 1.3393627489205417 +3.458294604353308 2.160793272728188 1.1454230458431858 3.6802220432758377 2.847580668384047 +2.1130171763023804 3.4642241643247633 3.5475927272338765 2.3904271495923726 1.7789863682892333 +4.75110801704113 1.8639700608110403 4.518343217367596 1.800820874598538 3.964907724241951 +2.883668583972992 2.478732720815001 1.717397010904564 2.2739523859259005 0.6882782422368499 +1.777135764255839 2.16223016784858 4.860044810861931 1.3826914402187298 3.498611748108395 +4.816127930698897 4.909146207975729 3.9769329568851393 1.547354520119843 2.4313584228374165 +1.0840367491629865 1.724053794391466 4.056809254774654 1.7157243966846183 2.4269940525187605 +4.943514273074365 3.8830606935033947 3.464895828052216 4.487212387103289 1.4729877600764074 +4.015931219332252 4.290818475830378 1.5502142076472514 4.74816311472391 3.209741456263707 +4.587083366548001 2.326099243818769 1.118161238714103 3.904996735213247 3.5886628829943477 +2.1619434576317613 1.105685506161572 3.6014826018886166 2.162779184561914 1.784810461385615 +1.5275856313820229 3.8794442827312174 4.781735597219332 4.796227253759545 2.3519032981896455 +1.2415090899790715 3.311048567782012 2.7641282499751783 2.9543290796464667 2.0782612939167477 +2.555376113139887 2.449014396601353 4.892738008264658 1.3447259091474932 3.549605988025546 +1.9593402864566296 4.492495490306805 1.027346092353604 3.7418157114697115 3.7128453509266404 +1.8249867110430036 4.970941639826875 2.8553212988728225 3.3346108722119348 3.182255632260099 +1.8992151198393628 1.444642273594741 3.682055685322788 4.495638587480661 0.9319622370174468 +3.8825758719158943 4.398637581356549 4.082507163813284 1.216554586612412 2.912044618943043 +1.0652193198865092 4.267921417216719 3.910821713129581 4.089735398868427 3.207695563981717 +1.0594656736044108 1.2822234935399388 1.702623026424034 4.283901027461729 2.590871892815928 +3.16417098912351 2.490610915215091 2.853802176003332 3.775533074958161 1.1416089624961745 +3.421627643011454 4.007035043783216 2.060204365698777 2.312069196331457 0.6372893516982528 +1.0188113816452211 3.6854927430812685 2.812660679627343 2.404550975296248 2.697729232928988 +2.117800212745131 3.9306871822909812 1.7865868971355052 2.759605759625569 2.057504525173783 +4.342561639149249 2.1490677487085077 1.6037887967492406 1.4052524447722305 2.20246047193978 +1.3503074927129162 3.427662910265316 3.7175537769507763 2.945375564558941 2.2162275881612334 +1.9847617893311433 4.986129519678181 1.2683723244892837 3.3411362145924386 3.6475414181177017 +1.3210585558954104 3.9841114093065566 4.909969384704913 2.5627193884461326 3.5498497214668245 +2.8064278500603974 2.3854826925182544 2.9487817758656987 1.6522630199201664 1.3631418525512047 +3.535791176436063 1.4188869048757282 2.979281657678429 2.446092486263743 2.1830195572793825 +4.702210300822912 1.4499815722597789 1.4225859240760714 2.157044979126595 3.3341298424682093 +4.12372615701125 4.481142348210506 2.5482194729317915 3.810023749409095 1.3114481941227394 +2.782670045748172 1.27874542985907 2.3406734774978784 3.4429415819342286 1.8646136930567918 +1.2488553409506027 1.2881143921013742 1.2181947759454386 3.5534146488388716 2.3355498555701355 +3.932981885917505 2.14347470591613 4.080890141508824 4.8128836658539065 1.9334297160640745 +2.5039351039083124 4.826827204700365 2.189475167155068 4.210011438884465 3.0787001376061696 +2.879673860943055 4.475328791669033 1.1212924039840892 1.377527447822808 1.6160974771470795 +1.2029989303904993 1.8208919306078988 2.4750040385236693 2.611527561701285 0.6327957269913319 +2.719703049996701 4.438695526975174 4.062876544530754 1.277717751050564 3.272926006008784 +4.5480341083056075 4.371874470153421 4.602640592076229 3.806014481625978 0.8158709321731009 +4.876132081244942 2.194888943506781 2.378465297746475 1.9803712452072704 2.710635283164274 +2.927860794336155 2.7021111514034 4.889273698361376 2.2973710477573106 2.6017152518084385 +2.9886025959840294 4.2003459368293345 3.7166235273089554 2.0252380121797025 2.080650591731344 +3.134780738611355 1.0021328155108664 4.478691445409909 4.075011868743457 2.1705170730778494 +3.440623378314018 1.102662103285398 3.6349219967127313 3.6206900328339575 2.3380045920248524 +3.2948008475294395 2.959459043384486 1.019513680393839 4.431208883727432 3.4281362700535465 +1.3221513848377855 3.206766517193417 4.52954264452795 2.945193268679903 2.4621001486239207 +1.5417922026188222 1.5537440626767363 4.881161972169041 1.0913194142054925 3.7898614039448115 +2.5023645515197748 3.076807308957548 1.8260115773025194 2.339472237131809 0.7704714989959344 +3.200418412485565 4.679770430752842 2.5585685474260957 3.292813471329109 1.65154412663689 +4.77396811939253 1.0821248833296067 4.458682820023775 2.22505103789938 4.314952771210799 +2.7385116593169796 2.4704435535532037 4.105227103283825 2.6798226289826874 1.4503925071116033 +4.073257884597659 1.674227624006893 4.313799861545283 4.8623691202361545 2.4609499025398405 +3.8654645699518073 3.5865179711940254 3.396129615129934 4.015601340919069 0.6793794403797517 +1.4803387270478585 1.820554321612462 4.0027442581786445 3.37143616142011 0.7171447300355975 +1.328814666807712 3.2481925254727 3.8605134876904774 2.6952277462760286 2.2454180509377792 +2.6615346298955576 2.0615717299535175 3.024665445612446 2.271665951372643 0.9627895510610104 +4.574517640110917 1.0315041254957737 4.495027963976131 3.242297348359654 3.7579620487770216 +4.568599774496132 3.162983818921607 4.812501974840764 1.6319548746496726 3.477302988107255 +1.7114663319174621 1.6593174098352903 4.822489865268524 2.021180807871468 2.801794415214849 +4.259546370913015 1.7705762646174925 3.5829563411033245 1.7949944574247607 3.064601097617787 +3.0425205232439114 2.1811934042153975 4.108545595266849 1.1632932150242454 3.068614669406812 +3.519442585551199 2.6048512137043893 4.408465787624891 1.4635704070121602 3.0836481933273174 +2.3367120555549437 2.067222304177216 2.1840290623991923 4.863328928788617 2.692818690541942 +1.8428714116347233 3.226566043180944 1.464356506620471 4.8219620830022345 3.6315459572914324 +1.6918471230797065 2.9699959331710915 1.2023718636393572 1.157471541591912 1.2789372227197031 +2.5345018069543697 4.181361542710925 4.435617186651115 2.8649717854334686 2.2757578881819334 +1.858032512529796 2.547793219591165 2.4832444446573216 4.501244126234706 2.1326257402207784 +3.125538386082641 3.570262084161348 2.09673711074173 4.5441159074434285 2.4874569628795298 +2.83819712846919 2.8269345620344897 2.899361751422604 4.80621829768614 1.906889806315718 +4.039194972369566 1.2165720085075713 3.481036904950387 4.844074987938095 3.1344972821484274 +2.2283689799255173 1.9938696767435835 2.8791735738701916 3.971145780627681 1.1168675944460176 +1.0688134490952725 1.8326447718698202 3.338519962347932 3.9803475162404105 0.997687776103886 +3.9169600593380376 2.120499617853141 2.8459480817057337 4.178252918320094 2.236583621393604 +4.750588748047582 1.1832312891377557 3.2816394984869497 3.639536852913851 3.5852656464961346 +4.809960244864121 2.2493754536204067 4.972561617240325 2.296917464886158 3.7034667682018787 +1.3345926384498563 3.1073261726579653 4.234822616623857 3.7198622266650405 1.846014189147123 +4.531389654856262 4.579878156413958 1.2869245981259922 4.562373309526489 3.275807594441176 +2.9282335354323905 4.233046875617218 3.9362817053743755 4.178143967694839 1.3270400169772796 +1.3153034275100204 4.0439693416055 3.5285008475355593 4.410238530180136 2.8675911514269163 +2.7156865998785022 4.742439929723275 4.268655943716446 2.249266259231922 2.8610599011274442 +2.2519037808423543 1.8966364607810862 3.50903341315514 3.7101024443048973 0.40822006808952654 +2.880671696489233 4.846770779404897 2.1938738357722247 1.1745493958970625 2.2146259091703566 +3.8040650703138654 2.565586810107385 3.4129725430643454 2.7617463267197695 1.3992583699440726 +4.074633097770118 1.2578667882932564 3.1368469301811 1.484550065052487 3.2656174565796494 +2.3404877378857005 3.1692846434100064 2.890019025870033 3.3448580634684615 0.9454008994760529 +3.7393226009815264 2.36997267708352 3.5691447905292857 4.671891691929235 1.758172330184577 +1.0656477556060553 2.0677181253858814 3.0708753376074687 4.00871284754564 1.3724737596900376 +2.89989734468378 4.243187216134967 2.5426158314476295 4.568852601169196 2.4310621394187013 +1.5823187915983934 4.82095339625663 2.2473386073499877 1.2496266388643327 3.388832140214286 +2.312543497063319 3.7757807618979218 1.6033652503777254 1.5103195113334498 1.4661926213001293 +1.7479857370826566 3.841105836117585 1.3565637744694246 2.5907354419076665 2.4298830123467425 +4.074988397343926 4.910272134969193 3.9072462146788096 2.060363350582309 2.0269867380016398 +2.0205453654566172 1.794897877657029 4.708250195066504 1.1326912292968143 3.58267200654013 +4.248172561690966 3.9616369998107848 4.586692672217351 3.0224959223953203 1.5902245440112528 +4.333655638084782 1.573402166195096 1.9508577841668728 3.5121300522288967 3.171209599521703 +4.186752881978856 1.391665395591676 2.695957734711588 2.26231735066435 2.82852577135773 +2.9803708909932993 3.3627279483245704 2.946325823920234 4.758502874023128 1.8520752091129167 +3.413917168345837 4.676240676448708 4.0792131479080105 3.437559384927156 1.416043851953967 +1.635784321572837 1.6290050979760267 3.8495592184649596 1.2510163141488828 2.59855174730926 +2.8364069081110332 3.323907845798144 4.686485189446758 1.0319380014497201 3.6869190815019075 +2.594989861208671 4.700807070864823 3.8717704719558235 3.358533337619862 2.1674589907413266 +4.2259777865312325 3.578712937524524 1.1112345037817049 4.524667390364115 3.4742590369691784 +2.605323777390247 1.3792254394323566 4.086352194801431 2.181513647145046 2.2653315490189923 +2.5954114707781906 1.5759938575036347 3.463129765662703 3.417100174995485 1.020456267299772 +4.218538545365714 1.7292401825317887 2.128290389060226 1.0353555607429037 2.7186601255318172 +2.2491446047240893 3.5945254521902523 2.7866027082662437 1.8242565978401308 1.6541341121508375 +4.346504220554753 2.117663403391062 2.9928111197047316 3.346105081426065 2.256667457035631 +1.8319101158792739 3.934583729985987 2.3399086523680444 3.779152718382908 2.548069820279575 +2.760271859920904 1.1388322274730664 1.0711436927922962 4.483348473854792 3.7778575872547573 +2.6348296844878036 4.469830146732866 3.8213996239333787 4.704666324299678 2.0365133833136384 +4.819985474904956 4.114859282376326 2.2933947561684245 2.320495807419654 0.705646805681741 +3.187001623963536 1.694897810012281 3.7926528170226357 4.12509073186008 1.5286885748344394 +2.85783638967525 4.493691962270898 2.189668204205362 1.607030995405824 1.7365165048078153 +1.1040301254380087 4.919609424485767 2.813123236376462 4.979445233343634 4.3876641145221695 +1.3302617822994196 2.2472290136494477 2.9472279605996246 1.2833695957787263 1.899803558675004 +2.8450374668963176 3.1759636322764404 3.1650208631046732 1.261623731926635 1.9319505081419601 +3.0689475209244907 3.0601932447936435 4.0230652390757164 2.499482784568864 1.5236076046776938 +1.663674262925528 4.705628553682795 2.3194862054947674 4.495493889678736 3.740119697106527 +1.0739252979579206 1.3910100566419072 1.4041602279658836 4.261649344731155 2.875028138405197 +1.3030591859050191 2.3930049149803585 2.5154883774706733 4.411104556780549 2.1866280871677612 +1.6485984209152722 1.3750046535404423 1.6507542273823117 1.2774478270944587 0.4628295777521433 +2.147902342660556 2.1587766596532325 4.371192230245317 2.406320978768393 1.9649013424725807 +1.620643445692794 3.68982486031722 1.025761779374847 2.181941845678977 2.3702877615062192 +1.729131094456326 1.3108483695648045 2.1874968062545084 3.5881036547342933 1.46173184338002 +1.0368087618082473 3.1579941197783055 1.9876752158125215 1.9178330860158401 2.1223348571705407 +4.379157773959982 2.6675020708085317 4.414164722659196 1.630323219524152 3.267956358446065 +4.084234026539415 4.783135004850248 3.3183515765063976 2.4410681416240227 1.1216455779803431 +2.443715252842941 4.421338954459396 4.695595004134205 4.151074878358699 2.0512185823480014 +2.2173937307805067 4.670176533349151 1.1699548173682985 3.588915383955623 3.4449257900978014 +2.5716458103494415 3.1305191621901574 2.47119087526184 1.8112030214241837 0.8648256417399475 +2.5433567288650996 1.924330047682095 2.3487510476152 2.888774434494196 0.8214738525313554 +3.9593457804155507 1.4395883286886733 3.584502390728205 2.6852255100685256 2.6754208124372005 +2.9510264007461178 1.203941695790744 3.511415181529139 4.19209628294195 1.8750017941616919 +4.446500922239316 4.689280538007909 2.101717158416636 4.994821147353863 2.9032727451338847 +2.21291234771639 1.663868433949478 2.905545354952905 1.5117365501860776 1.498049466302772 +1.9918606608133125 1.1298017348573461 1.2904995142553308 3.1844450187971547 2.080907293945249 +1.17748751562088 2.2470369150912504 1.8091799981784082 1.7631752219535652 1.070538349309789 +3.262160355602234 4.45852894457512 2.1529350734761463 4.300893913816578 2.4586632507274326 +3.4996185464698266 4.864253388875062 1.4191524239908326 1.0598055059514455 1.4111550094198606 +4.99845512473822 4.398170213640088 3.809852529344418 3.8598580185744362 0.6023641120163328 +1.9067812121933496 3.4324586956410226 2.603425757029117 2.345282242970783 1.547362225643889 +4.310302287783399 2.0097016973102453 3.9272735819027638 3.4216474538837707 2.355508619857058 +1.5043871277628633 1.5921130169672284 1.4050573438045486 1.2670587603836205 0.16352198831618758 +1.5615730301769757 3.773727793451192 4.142459950995331 4.758297054359 2.2962761233257987 +1.51380106925368 4.428352954536699 1.0994989567479831 3.1851738336120903 3.583943691520405 +3.4655049314281907 3.6292419744822704 3.597766770485333 4.836378630186839 1.2493875132485182 +2.7636636081415733 1.4459364828055326 3.1951867803344562 1.0716385646566526 2.4991722231880638 +3.4853663870874994 4.570842078677499 3.616116382433152 1.2288585037386097 2.6224526032746436 +2.274222220898931 3.4300706474564193 4.038641920706608 1.2335948043255711 3.033854793870826 +4.152190306358528 4.909166457307341 3.7344613319782716 4.60031444432852 1.1500932593802522 +4.16270927514734 2.944259836022439 4.545542124834288 3.6005452495816592 1.5419591855626458 +3.3190078148165014 1.5337051913139952 4.016802923622358 3.8907193028737566 1.7897492944281355 +1.855513449894202 1.0254089721757946 1.5734172212399677 4.484325874513425 3.026956000940622 +3.325869924185055 1.1774777191354486 2.338198231309772 1.8850370780311656 2.195664841809584 +4.041943178636555 1.2809792511849727 4.451675174710504 2.457094577515916 3.406064234184961 +4.419998558575028 3.744761059113955 4.395185808710998 4.42788458302557 0.6760287645656191 +3.8168624152334907 3.393043242600481 3.2661395752196567 1.0015260738153913 2.303930771927363 +4.32993580389245 4.553291115697476 3.3308729418045324 4.584375152214293 1.2732460040438678 +1.271967539111162 1.3322675019896812 3.4910191074768853 4.544708617565869 1.0554135062593772 +4.169554113412467 2.6412575654490844 1.4194142492484612 2.2396130501711418 1.734478714643623 +3.0879072589369194 4.798233277705593 2.80202890530805 2.6711053667588716 1.7153297244038361 +4.308389191725322 3.3426397290036665 1.2784199508990088 4.54074406527123 3.4022684567743426 +3.613483918600067 2.867456710444828 3.2748534787147854 4.752584322064634 1.655368551318816 +1.8640077528698762 2.7755544371281458 3.7390719299171105 2.1855945608101135 1.8011688687932186 +3.0618310905400423 4.179148019336838 3.4503873949314685 4.478828864989056 1.5185812381002595 +3.268107133620942 2.718139360836712 4.404882954505879 3.810054164425559 0.8101147083034996 +4.557292470276412 4.543345635826664 3.3408494627875895 2.655299911449511 0.6856914040083992 +2.955588081820917 4.215980863666632 3.5419781849544787 3.724018913596328 1.2734711584536318 +2.341308534625959 3.864789085450533 3.273627978682956 2.8559203956080514 1.5797064960615392 +2.315019845717553 3.2013630088265415 4.275021550747384 1.473595875191886 2.9382971290275646 +2.3829534187098322 3.9636604426856046 4.963725120098456 3.371846928878039 2.2433704266860452 +3.35263812419663 1.6450661711399501 3.969991250662704 3.7896690882446586 1.7170667014198735 +2.2928652297150216 1.7502182193714333 3.7234138716133502 4.597389153999696 1.0287363958065876 +1.496387666328169 4.671289599740289 1.9367253196255199 2.0418645815915095 3.1766423391988545 +4.117821680823102 3.670078696523476 2.6877013985589286 2.3143391269063884 0.5829864199817012 +2.079373561530454 2.4251407681459654 1.5892392487572966 4.4003441268588075 2.8322898151242932 +3.1941106853446946 4.051595861320031 1.1024035703646193 2.310317361456827 1.4813293198098132 +2.3618594878387977 4.183385686166977 2.5447051583415488 1.1476322991106969 2.2955980190781173 +2.424423106245484 2.3820447061032013 4.660729234844131 4.398488315786976 0.265643047013395 +3.082471144628008 1.3699991798373556 2.6482639698818105 4.419492536908644 2.463698615262404 +2.691029954965351 2.7470348807958587 2.4000913238738417 4.608993743544228 2.2096122852987055 +2.118612741961698 2.292705992870738 2.4058008831419384 1.4915261639983837 0.9307022735961827 +2.663115443400667 3.231901590560463 4.136411743166514 2.5008108534972524 1.731677785122788 +2.4509451728456164 1.0555525659649736 4.922745925820807 4.033244787551885 1.6547908636195885 +2.765970214707872 2.3970913763041306 1.7263651371253106 1.6579927805739607 0.3751618005107644 +3.742536054133982 1.5578165264348787 4.069160785900697 2.9180707074726238 2.469414461641735 +3.5584375029958633 3.2114962981368995 1.5869654016300334 4.04674564918909 2.484127022901744 +1.6362356277319945 4.685770443199756 4.150954660072866 1.8110999192392865 3.843771949394419 +3.186099297869041 2.5395455185829303 4.334727801179954 1.1904807252175935 3.210034495797048 +2.821691441366079 1.4067181255418242 2.694962651084362 3.4907204667533147 1.6233853472582873 +2.9873339106245207 4.568074785769356 2.2434346701417764 4.523169299497193 2.7741542305062885 +2.2127300022764946 1.84156137315428 3.6354853731895767 4.665214464973242 1.0945812686639929 +1.972082511398054 2.3526846106388044 1.9192993419249742 1.2459703174432541 0.7734532520818378 +1.96012764738225 2.294341188472013 4.165200131210611 1.7541590454182576 2.434094864303059 +2.086376872458126 1.4034440150424632 3.7875347900338157 1.2099695383772637 2.666503312258439 +2.902065401419842 2.4330735587151104 2.5437642371763487 2.5408221830051065 0.46900107058121554 +1.0101703217839395 4.859614214342284 1.6500131066222274 1.400944436954239 3.8574931606115546 +1.2395374699013622 3.463692675700774 4.402523028153916 2.4270479309069093 2.9747887722202555 +2.6663003892990833 3.597860914057284 2.364879702336431 1.910691624323496 1.036384012563325 +1.105838393409547 4.23238484953175 2.5549476952695853 3.7972641570539576 3.3643190891338994 +1.5952908045889265 1.1777556617612817 3.275355713270945 4.182825408911197 0.9989178364617944 +1.463701834673636 2.4938195449312492 1.8129385108387055 1.273887982074421 1.162634065193104 +2.7631970357543034 4.952877774314761 4.601676564135025 3.4839562652959875 2.4584548812739064 +3.807595489559795 3.749748911591732 1.056175369366028 3.2060158641129974 2.150618603899006 +1.8852871086693046 3.784522759287673 3.073000115610804 1.3682601543209558 2.552103914851096 +1.7701991902456444 2.3135537470223406 4.674238123333051 4.494588869612442 0.5722831718060316 +1.930679555272202 2.7129189542658105 1.9307482787023318 4.861017207430262 3.032882205428726 +4.157001000108316 1.5046252658870851 1.8520919042494657 4.390114660727859 3.671056598295346 +4.807254970776379 3.7571131461875713 4.171366548960578 4.0074488778805755 1.0628578713275834 +1.8612252324608907 2.5467623738141123 2.6760625743972697 4.312657625347552 1.7743744060850586 +3.195273422600536 4.258342570425576 4.192728404286225 4.192371530234183 1.0630692077266397 +1.339317500005568 3.429290568576327 2.460024603398377 1.1599458559261264 2.4613395086781686 +3.0999196949938086 3.146171444360199 4.079510784908946 4.636244710247432 0.5586518485982576 +3.29884937024488 4.793182703471745 1.7365552263271549 4.595515941451065 3.2259399376638638 +3.4879750638028946 2.0213493696673543 1.170838204358014 1.6232104385376962 1.5348066865098264 +2.52961287448222 4.867380223051769 4.353338213020065 2.4342086646083936 3.0246015274122775 +1.6732463126791348 4.475177685336786 3.453159186324805 4.4719005523246 2.9813844750186647 +2.3433888330935444 2.809630158687459 2.3327954555441046 3.973249913694831 1.7054242296150726 +1.8206758385951591 2.575545905486574 3.2063679285311357 2.774369869312969 0.8697419968340682 +3.3345031829798466 3.017653066830634 3.173083086231847 2.4866490722235612 0.7560328377069987 +4.9318947711621774 3.8844865155485784 2.5853106720891157 1.3310650816839797 1.6340734545846618 +3.7816602828060306 2.954831919283487 2.8055557059002716 4.4284283171574605 1.8213623074759437 +2.0419302424904653 3.2313272287281176 3.0204872575159003 1.7287582722971906 1.7559125724606472 +1.887158217527599 4.700080230104581 4.6891046255353785 1.072106484523609 4.582052575093693 +4.746099093775517 1.057392862707375 3.468986454799535 3.081207599427581 3.7090330410761405 +4.0354418024870435 4.357738090693755 3.233047245480446 1.0838159920921417 2.173262496325026 +3.896773412582238 3.1302163913577887 2.2852395598706012 3.9052936660786504 1.7922569497229077 +1.8319671177415549 2.1335537990773803 1.387330375103351 4.384957463657605 3.0127599785567734 +2.2705580111687125 2.702620376750048 2.9835286823680613 2.429126828267545 0.7028792951722437 +1.0648828807198352 3.515620672357579 2.4550194658967603 1.7364994219226038 2.553896391194065 +1.0952381852483088 2.219008872784167 1.8834021899053814 3.8712856055126657 2.283536956611672 +1.7875158857063207 2.7872600723684533 2.390311503655762 1.6014367412571904 1.2735037610914748 +1.8783252539073874 4.599526290997272 2.510277950632764 4.8107260417617805 3.563284510706126 +1.1628205844174766 2.352190637476401 2.6190670969986556 2.6712489053092403 1.1905142016086792 +1.8377279960370805 1.7322525431230633 3.2823816934725336 4.373410628704264 1.0961155088220855 +3.2631347444266705 3.8165880912970778 1.368276110711455 3.747298737760406 2.4425517941638306 +2.2449124468819437 2.782197146822658 2.252285854356178 1.7052225626171742 0.7667809947818853 +1.6393770582574176 1.2372798092369992 1.586720557133996 2.964055590904089 1.434828907194252 +4.742656345195109 3.2209308681439905 3.599289755571038 2.4969594290421444 1.8790371407430326 +4.963984320892971 1.5198592457436284 1.710922930197977 2.7695916368735047 3.6031620784758625 +3.7867055361702215 4.280855951373542 1.4780970313407593 2.0316925143534723 0.7420596954812279 +3.9382953361188813 4.970463956992037 4.292803322256795 3.2700768922485035 1.4530455645136175 +3.614597496458121 3.2058832225935414 4.34861968144852 4.497358648640951 0.43493751047951895 +2.2676103481978127 3.1649481665701438 1.080286345797476 4.3959809909523 3.4349739649944353 +4.42243020160716 1.2941591585557348 4.051764347432365 4.316332998383706 3.139438849517579 +3.488424214391043 3.412463685236591 2.903494337358845 3.0095780759622293 0.13047513780600312 +4.05961296648594 3.486863971836451 2.3560246227165713 2.7992087470683056 0.724191672797619 +3.597531710013807 2.7342168331106604 3.9178623692892227 2.992459291625821 1.26557632438 +2.2520243661155805 3.7107890227107885 1.177804053765839 4.489286539466875 3.6185508945482643 +3.7667990971506304 4.48819508217665 1.5859422031581678 3.5271637453603883 2.0709305259041475 +3.1789146500928838 2.339515174106658 2.173947635090626 1.0066606254238168 1.4377588265153622 +3.950321141277698 2.5968753780654605 2.43065844462667 4.855439635632716 2.776937028132589 +2.3375749842542337 3.227936217684252 1.7891419905989774 1.0092352948145282 1.1836374360945336 +2.5306317725715077 2.0841351406317727 3.3312242203288984 1.2054655489674513 2.172143911254941 +2.9349276328118674 4.289010967608866 4.541868619076169 2.9402723415459247 2.0972964296383325 +1.4994617261532337 3.0481139533431985 3.7724222971144865 2.670114892506295 1.900895929564395 +4.667712613386232 1.6184280799754132 1.8539599057359513 4.365031635590144 3.9501414402741792 +1.6829239928782047 1.1180598049561667 4.666184642467282 3.9002681029658515 0.9516825606675108 +2.4547669545663906 4.268165155874607 2.763165820305231 4.368952767762259 2.4221818175213925 +2.2639132446775165 3.763251524198644 2.8728402821706327 4.9836386058851385 2.5891088891418494 +2.0695746558755115 4.772909710281201 3.1377449538176236 2.8275605854195103 2.7210723545648596 +4.494204715597602 4.215396274965924 3.915362543892615 3.490674295790886 0.508029777319385 +3.8937659563947706 3.950708899644904 4.785234306791683 3.261113287944435 1.5251843753716994 +1.0721277399684142 3.515169617546524 1.0130220581605127 1.1453043489695274 2.4466205713314144 +3.5550864243264066 4.98876449217223 1.6528593183212084 4.195618117260359 2.91908463594405 +1.9631569462098204 2.8489882549237935 3.913109494302226 3.4648009481967263 0.9928130035455506 +4.810545071605409 3.694729664995972 1.8973885202461673 2.341169910568008 1.2008271915737787 +2.223632691240686 2.8079616169962227 3.585729765731393 2.567985676964276 1.1735601065539973 +3.5121055782102135 2.391394980366638 3.726431707086219 3.1405378597777367 1.264620039550552 +4.113519046637261 2.679023288425974 2.3909566320443716 3.5758176003845605 1.860557334408759 +1.671060124995396 1.9610762761997331 3.4197358696630715 4.57619415968628 1.19226890612931 +3.3449318346328996 2.906417198361474 3.622395739707871 2.188862634984784 1.4991038151379887 +1.245790241104721 3.5372276390791013 3.1875655167534047 4.737227685350321 2.766249841503131 +2.64872006643903 3.8691481698852135 1.8815014715537148 4.06630338417029 2.5025595203819413 +3.0148895819018664 4.835873695882073 1.443506603853292 4.299871030490414 3.387447546623607 +4.438016373507304 1.0543940158480787 2.0507155783715483 3.06979286286238 3.5337542035371654 +2.7139330666833383 3.9690187034436395 4.644316324555777 3.436073044869635 1.7421514797826092 +3.4199934104404894 4.130633933565642 2.604644534047273 4.634397369462684 2.150559584383677 +3.3867901902152857 4.629331884628146 2.952838059272147 4.382200004911354 1.8939338515365003 +3.908871408994648 2.996848288902495 2.6681536855699544 3.725145844559962 1.3960725610615599 +2.3647200118994016 2.5135882243411616 2.1706364713946376 3.411286898447434 1.2495500097322598 +3.982910586656021 2.8352421756256185 2.415969638439626 3.8153229465758276 1.8097879606928486 +1.19246778486484 4.797807153793389 4.928642058642948 4.224851906518401 3.673389789196568 +3.0211723230963665 4.565010376028961 1.9610767263298388 2.3821536178522567 1.6002317589202153 +4.58918446539106 1.4586310195923233 2.994027898149946 4.056918806564953 3.306070471147526 +1.7807789407441028 3.7535226962936146 3.6343673453712726 4.629361901821653 2.209464209356079 +3.591847153307504 3.3838127793544452 4.905857744282974 1.187751805071731 3.723921330525654 +4.867558555610275 1.6666561034165364 4.286926103379429 4.280154270051419 3.200909615435355 +1.0067081908199715 1.2109504633662893 1.7068680361820059 2.519549028872861 0.8379530427033952 +2.3291627582040424 2.329546836936965 2.9771784318205223 4.4848719464948745 1.5076935635955917 +2.9645778315791778 2.2003085204369337 4.116878481234308 3.645245850539109 0.898078458872227 +3.1026398361622896 4.36774929384199 3.3478790316501676 4.472121044268365 1.6924603519274657 +3.8154409554778392 3.1679405407245866 3.1137971249641074 2.0357283036674256 1.257572729728842 +4.539880252348141 3.1243902606368885 4.343751207235561 4.39588764066278 1.4164498312066092 +3.8861330731232613 2.67595106812684 4.770327631235411 2.2120365978385585 2.8300871888999977 +3.530580714409914 2.6779416450959093 4.75727861937589 2.2882007332390875 2.6121521759519353 +2.2906879828190116 1.4806275702195917 1.0481746090604473 3.123141471311045 2.2274840855770064 +2.67865719937315 4.533665224310294 1.9588905344050116 1.2210095113976531 1.996377513571917 +4.329716138679592 2.716101353109642 4.345091359314994 1.0689967624619774 3.6519239427648933 +1.6444026531322238 4.7889249609398075 2.361997088366161 2.28574376207408 3.145446727266278 +2.781327425488457 1.8152625741700348 2.243816495050588 2.7615318930664934 1.096043124286473 +4.786698169693262 2.434567516768418 3.1184962916043943 3.2825088039813233 2.3578419609135897 +2.917143732518334 4.661193502554704 1.0728540146097085 3.013125152914492 2.608900475392355 +1.6978892023419112 3.423269152871482 4.895661183335884 4.0244230468786295 1.932871403923948 +3.9163257342767475 1.3321706163825517 1.481538140199941 4.564051724980118 4.022405707246983 +3.6728325918612277 3.4801264176506446 4.217971648517944 1.5785473309887954 2.6464497723446576 +2.1303853829142074 1.0528176562202565 4.912596738228562 1.1966486287068214 3.8690338016448713 +4.359318153016485 1.1969665008989305 3.9359517615189326 2.6473603970674784 3.4148112211642805 +3.5502875542267525 2.6613848723884166 3.6473640846820956 1.646621296832524 2.1893194561122096 +1.4304146094046968 1.7451403193090949 4.855789214109036 3.098678041289477 1.7850747732580148 +2.094742324014288 2.7153475541105565 4.22066791454732 3.4475722443701 0.9913767028075696 +1.6896286595889398 4.428049868058069 2.104463869047676 4.866145404419293 3.8891947261362545 +4.1603596976862365 1.9987880649660994 4.185730272200809 3.192585957340319 2.3788080110677514 +1.5257832173301291 4.1356583457673555 4.473172767767834 2.223182104276818 3.445853475096115 +4.882566585340751 1.6050822447667294 3.051546676532619 1.9648328707437557 3.4529480879966963 +4.5098105798715284 2.5736105379936762 3.8622510363197855 4.721485023959601 2.118290265209944 +4.522245960751741 2.165494790549749 1.85344469719772 1.7787510444062287 2.357934524115501 +1.7895266325823194 3.6418676677328268 4.299491304290207 2.5031426834480537 2.5803169724093897 +3.4072736459258364 1.884684627270242 2.091271389597954 1.4957313269435097 1.634914458299597 +3.5021586336635666 4.336560947932848 1.5133576656226233 2.191755106754014 1.0753837966937907 +2.9217872689863955 1.1372766912250278 1.8129598686766295 2.528677261155856 1.9226880631135863 +1.706659415046559 4.9681988639421935 1.670748841379138 3.5748011006204408 3.7766459435091804 +3.5416433612723655 3.192041346910112 4.852648784112174 1.315458186573847 3.554425254771816 +2.9834492875105827 3.5580054907584335 1.0501117809645786 2.422025867564684 1.487367840079376 +4.645501949311972 2.7785611294534367 1.0181189101124253 3.65853864841482 3.233772474876819 +3.226971292799709 4.184929903722383 3.7643426286184303 1.2503747355835793 2.690300962243999 +3.2337771357440728 4.428498352121766 3.932138438744925 2.1414261493160307 2.152674914699074 +4.816079544013725 4.11029267014918 3.542755736292888 4.813619133809283 1.4536949083168726 +3.7132853657743627 1.7617687921750358 1.2518562079558166 1.1217752728174712 1.9558471276455438 +2.7507834229977877 3.8457293439974163 1.9908047773823578 2.164865640229725 1.1086946170559748 +4.386831559198393 1.4816808308256144 2.013855172134266 2.904370817368003 3.038571846932527 +1.8771099227723722 4.383215183964579 2.1184607993584064 3.5399279718073124 2.881168600156046 +2.2793619257997713 1.4895384152006428 3.9271574660422304 3.663031955187697 0.832816584476618 +2.366703634087016 2.484125262863153 2.8790360847500747 4.45265862808224 1.577997385228389 +4.73567118806241 2.2286951073054246 1.7167447671594518 4.169613726874667 3.507348742714653 +1.8086947263774298 4.667532724231254 4.245917500961261 2.720339696656458 3.24042317220457 +1.5356699007017514 4.430699402197163 2.840149634840404 1.9047061079884058 3.042408652113992 +3.9601686250333965 2.134849620989363 2.2659117915985587 3.1920975772514626 2.046853579538553 +2.9387782941881904 3.594933866833075 4.474881697628215 2.488080873204221 2.09234740218846 +3.261206362453339 4.85266845956874 1.5807556727311485 3.6936788949856534 2.6452213800922806 +1.5601512244623104 3.509201745831919 2.352044276501474 2.0265784527608597 1.9760379392294825 +4.160717091912542 1.5810871042754 1.7270796360418252 3.5824997768909324 3.17758945935206 +1.1723346417131535 4.339362340045174 2.3711537214542746 1.6753200035538516 3.242568272985064 +1.753100126711388 3.217188938325079 1.1678742387538428 1.6824788973744922 1.551893682881165 +4.088485320336875 2.0813509526415723 3.6218242287289164 3.224547735552315 2.0460735524448577 +4.571978982928656 2.116224593913877 2.9583784856340816 4.28473035352161 2.791046201089134 +1.7757106301485286 1.5788492093727817 3.154392837644304 3.2024317934728583 0.2026380030175571 +1.1587852455675152 3.4748625311480956 1.8354209310270702 4.333734928672942 3.4067267022195376 +4.947197132607038 2.6316894212425064 2.700527019683199 1.1409919598107656 2.7917244785902366 +2.2076416307951496 1.5657523048392732 4.346503277924784 4.036838146480395 0.7126811351569227 +2.620368110135555 1.3603550435071927 2.560401955361454 4.306245920950088 2.1530453038095736 +3.2382102123886374 1.6129337953374452 4.6420029152130855 2.4576690260156484 2.7226527452686953 +3.5109759716463325 2.7267025892822034 4.455822076375679 3.313329189508309 1.3857758602412613 +4.923109236182068 4.21091682454631 1.418910130749862 3.751987752730978 2.4393583626397777 +1.8595954367506464 2.8155170216339465 2.84038493897951 4.973254843943371 2.3372890510046784 +3.4025426749196033 1.7638237996176995 3.9969271010741085 1.8739003648891033 2.681910154130278 +3.811856021236491 3.3973186367691754 1.8102821998742251 4.857534597525566 3.0753192384064536 +4.786713243561168 1.3632341604193852 2.16018806739527 2.675168589989782 3.461995663105461 +1.6097324766868182 4.942459006244956 3.6499489561077665 4.624849695223832 3.4723907573816746 +2.833017506071182 3.750903164294369 1.2184444533514567 4.312751489305059 3.2275765078962544 +3.728284786588574 3.5225000677874645 3.39383327269246 2.3237136971841488 1.0897262300129056 +3.8841862279060826 4.409325820643831 4.871761637887825 1.104620855917986 3.8035669131804553 +2.610757669171077 4.608342293392644 4.212440976322853 3.8393307510769614 2.03213079576819 +3.1650132711750727 2.3780143947728014 4.179791617684712 2.1362285204894667 2.1898669739682046 +3.4768580570145446 4.534345747392621 1.2587486764165554 4.745594535822329 3.643675927213663 +4.136228128330917 2.6291640076851057 1.4266100436885005 3.7003917372492827 2.7278792960301725 +2.212503120866131 3.2373908065347754 3.475622173913992 1.9568525682568967 1.8322270283190996 +4.309786882214037 2.492015077515771 2.53504534764553 1.6405193044397932 2.025949450487179 +4.504823416352491 4.388020167757006 1.09095319554626 3.673263656211045 2.584950737275516 +2.3019856408723776 4.9874487369679565 4.244106762456822 2.4274467311946903 3.242216172570327 +3.284313808888328 3.7112086603299788 1.8825311659705908 2.968831690963579 1.1671709578238447 +1.9365743239847957 2.0176489537339357 1.4615841361635948 1.5440592802496584 0.11565139420247857 +2.9557877775893786 1.7991787960803935 4.946946721937728 1.3583579045855072 3.7703731958696953 +2.8525431794360023 1.3320819761890457 1.3824457472561402 3.6926685503133805 2.7656702027437827 +4.847793843830306 3.6878142086046077 1.8693205884542494 4.711554539894721 3.0698284298734455 +1.890257826861566 4.302387667034745 2.999073247114337 1.1551374331977091 3.0361932829940628 +2.207480488044321 2.7385356455732093 3.662984647201517 1.7269926296190174 2.0075070790612894 +1.5418760991108456 2.0795139378969485 4.78478854207936 1.3484038282221666 3.4781883714551713 +1.7625489713518432 4.567009813772911 3.3705140520886405 4.127400173888228 2.9048024404502804 +3.147327182778893 1.5172443204069168 4.826347192266271 1.854004914030973 3.3899835924652812 +2.8311559839763882 2.569209807140761 1.8538999121982904 1.953299653799832 0.2801715692022565 +2.036926908154244 1.3495192214225518 3.8723980480921094 1.0136932609460692 2.9401908760877253 +1.4553591752847161 3.9661707473042203 3.3225154332728963 1.2554735037946445 3.2522049579336523 +1.964013124622145 2.017957328659134 2.3307798127283523 1.0363980905746555 1.295505314460251 +1.0837487208345795 3.8386089155746403 4.816607821621442 2.1725468096066027 3.818417647117741 +1.3906540046926148 2.138481841436042 1.6601509436700583 1.2273194885255307 0.8640541313892799 +3.6586010122051733 3.0135298421171854 1.8838017853977256 3.98509457641632 2.19807829889324 +1.0312582543867586 2.476538545490012 2.184095049329346 2.2309852663488154 1.44604073673726 +4.256836412174348 2.5032543484607683 1.609244618593114 3.935904284909918 2.9134850706745348 +1.6583555885357404 2.958542311611571 2.0030675182548796 2.9425965413640407 1.6041197898308972 +3.6380582572182005 4.711258892234981 3.793744737570089 1.4665328951312442 2.562747463678 +3.793509323446427 3.0293675868107632 1.9707739125640131 4.571465033626641 2.7106285066092246 +1.8855873774480174 2.2655943290312166 2.0278272217297246 4.4165273911968725 2.4187380558596954 +1.7892299681165884 4.6452691454883315 2.332442766627721 4.753633584888622 3.7442121682822878 +3.717744468079473 2.068406129532614 2.3925860439268782 4.947953309675232 3.0414172383707454 +4.3865175462952335 3.4910734201444744 4.145490799111952 3.43667704692774 1.1420320128364871 +1.6501579131479627 2.861374869282453 4.552822298293789 1.4464741894120943 3.334133333923612 +3.6590971255115305 1.8458723680155051 2.3669955449499067 2.587889389233192 1.8266302613388317 +2.755489557493486 1.062499929688085 3.667249374510891 1.561998157309139 2.701535964481341 +1.934637852028069 3.680487556808932 2.5540830115721205 1.1445929708658489 2.2438033261704544 +4.716218211592492 3.4374324037315747 2.2549695853755143 4.264900986673576 2.382250486475024 +1.2696387968792089 3.9278855054264086 1.5875106677671895 2.4755736760074525 2.8026650656307055 +3.153687337220656 2.5103135859405508 4.570164639837983 3.922721052570836 0.9127502300901307 +2.209371177842324 4.505627758269592 1.8382774282765895 2.113184297680104 2.3126539019059402 +4.567150700494203 1.4466856437368478 2.5218936434332386 2.3502283884816677 3.1251833754519547 +1.3036984663278472 3.8146193669161774 4.936605880902201 1.9710978079058394 3.8857382696236638 +3.2038082063339455 1.821377320802981 4.252979451755085 4.552155199684004 1.4144332014693217 +4.862573136299726 1.568025137598093 2.019705111968034 1.7033582062444603 3.3097011769206324 +4.341010419366672 2.611014447864567 1.29967762908334 3.7621886817917862 3.0094595438591245 +3.3286410309214243 3.662190840895309 2.0624781492732973 3.045772681818968 1.038327315189109 +4.948900555316278 1.1017781601259404 2.9634171777146197 4.179951661201892 4.034886228022878 +1.6012832161774275 3.296958666511902 2.7387266868404567 3.5977380924476843 1.9008460820987922 +4.390181766339945 3.8612883894999324 1.6817549276296635 2.5339193196811447 1.0029518209493926 +1.757782758269764 3.3866621634088654 1.437764906841588 3.496874899248497 2.625487017167728 +1.4735166704706888 1.4039860867404381 4.208259472701512 2.7326285403967057 1.4772681376272285 +1.23185530399594 2.4414371257970857 3.889559928643129 2.686659159952355 1.7058893407688065 +1.154604062499541 3.8530029819285416 4.4782468433375175 1.0669077180360271 4.34955070739362 +1.4032054351828616 1.9607716679201874 4.907712641641562 4.941012816755009 0.5585597600539087 +1.3061179476664924 2.0950313277597186 3.6598939333671243 4.2698963222275585 0.9972398085242865 +2.218387634881468 3.8359537932624286 3.700694794340176 1.8641067136504557 2.4473610389296647 +3.143228025907476 1.7563480029731937 2.4954726081024354 2.7106165055340923 1.403468237836638 +1.0568126181209814 3.2542189333811042 4.891270018350877 3.0624645282860605 2.858867614080142 +1.5516185766698896 4.040503558717523 2.5952350281553778 1.919868898286051 2.578888881521831 +2.431593339487461 1.5621204822152137 1.3923809666217601 4.369624421403536 3.1016062997379423 +2.668125429067929 1.0666121051845971 2.6842781874248147 2.1702814727984157 1.6819743009994443 +2.1675754599362977 4.744911543952476 3.382738156899473 1.8298464161466543 3.0090088149538823 +2.424221304453389 2.325456088579375 4.490648896220694 4.782149941899245 0.3077782115392986 +4.488979818573382 4.637330895610618 3.5978518725016886 1.000602868699095 2.601482352392895 +2.5530600560587438 1.905932750795178 4.660845569663866 3.95992597201587 0.9539717142477093 +4.711944098407056 2.5357465587854526 3.2113134363607716 1.5560979722096784 2.734149587023365 +4.799293199626833 2.142619056266926 3.469977534963218 4.56817380826214 2.874709125926436 +3.1141037474742403 1.1447603333175924 4.132057431608711 1.3725754071256624 3.3901407826707177 +1.0348612290542922 3.1951119618661297 3.820412894792188 4.646005274507539 2.3126361594635108 +2.06686789474532 4.372021729476339 4.636231449920901 3.066872326546625 2.7886595812133828 +4.2505110618511805 1.4184058143771883 2.3536995712459894 2.2227097682674932 2.8351328824684865 +2.9011591003798887 1.8533405289670344 1.7093244815426067 1.084598963237727 1.2199203792948847 +3.8078020042967986 4.157376787880599 2.6458891584230724 4.2097570655058405 1.6024622804050952 +3.6966496892756084 1.8108671313783327 3.7475358833617003 2.1141451743945283 2.4948228521900853 +3.0778959715612912 3.665302132369919 1.6691079667581001 2.5135716278436826 1.028671411408909 +2.095570762658082 3.804496166344818 4.61482465227867 2.6236381138315767 2.6239759652593597 +3.6156104127913116 2.4054677515794824 1.239632879214049 3.577946187315264 2.632898476456716 +1.8280572325361217 4.860110816399963 4.84158401098174 1.3233479081881305 4.644495043642735 +4.092942588320873 3.59959182014626 3.0937088156279153 3.064652166675159 0.49420569534035547 +4.449366209673446 1.2789302617036613 3.148710763870601 1.873154113051088 3.4174125986817803 +3.238444311606736 1.306297211822157 3.73498432343093 3.022449766509874 2.059344048480643 +2.7437587550051843 2.579239104055457 1.9372920047729814 4.956653582269556 3.0238404473799916 +2.511565594297514 2.4933703547108177 1.1206373732819221 1.909403809505744 0.7889762719225754 +1.857924980706605 2.919682335287433 3.6102312845522646 2.8375997153028796 1.313121556371399 +1.991298737433607 2.9101809402711036 1.0623851273772296 3.7410662247903184 2.8319034101341947 +4.923663821356577 3.9002234577463453 2.253409982969274 4.972443429498714 2.9052664354947564 +2.1740943307879017 2.518510078647361 2.7312391992430576 4.13111760527757 1.4416246942444202 +1.5617734051230672 4.014526435142061 3.4350065730674197 3.27074019124046 2.4582475201789333 +4.695009942169479 1.204001693904598 4.914364659309422 2.0764880719464003 4.4989645602690205 +1.1768239406084606 1.039086178832592 2.95329360903925 2.564389644142745 0.41257482343357776 +2.5660691480646496 1.7471831036374916 3.4770436591381393 1.5729780647263754 2.0726891087618955 +1.7131100686092826 2.461894389660383 3.7902592234893833 3.8082166948711604 0.7489996196463553 +1.7971865091228079 3.102944165571712 3.259982073763054 4.505340389748782 1.8044169120715263 +4.507830063396801 1.7539374893990756 2.1276510380832194 2.017076116381694 2.7561115946980657 +3.807787152144101 4.685974129573653 1.5011638323003407 1.8196921237057269 0.9341694919833803 +4.582038047350028 2.2780025807403015 3.0595444022466616 3.6529539876918498 2.3792255814642145 +1.7885042205089228 4.699349024018879 3.9437236921224263 2.493362042729482 3.2521633390945692 +1.4141480549500889 4.65623744813251 4.623882601732001 4.944082169212101 3.257863010686668 +3.2165991666226343 2.054681422232557 2.1171800254395206 3.171872111545691 1.5692126182335875 +4.322278991954467 2.341970888330606 4.0392813164746775 2.810137253253245 2.3307542370294696 +2.2684918950223705 2.821761565068679 1.9233455183667947 1.730189905908596 0.5860174215987549 +1.9931462217689382 1.0638615247752097 2.3255543588286214 1.2141168849226225 1.4487454250037421 +1.2787830229121409 4.676284047398955 1.4287222838355516 4.039830379910926 4.284961925242664 +3.933444794837313 1.1464354441493607 1.4789824507662126 3.185229938321987 3.2678282711324464 +1.765327103110196 3.1680633321137583 3.471743423223343 1.1131744221793847 2.744178686026956 +1.8967682217568593 3.042580890919451 3.7438001889895833 1.9830284565295706 2.100762663092558 +3.3086350535933 4.550067197434295 2.0522072812666545 1.51553327752581 1.3524691323844982 +1.0706121126904846 1.461426157154897 4.944739322501583 4.766131864726297 0.42969319441152676 +2.1986035261717305 1.0049933199779657 2.5978711050146033 4.856050062125274 2.554227383509024 +2.6622172605470773 2.12203000861359 1.605247824507095 2.6031101983567675 1.1346944894095312 +3.2594378127125108 3.927233583503795 4.082651821307162 4.6872286651718 0.90081316132928 +2.3136163257013402 4.466423061175584 4.583364053811172 1.4916437812703731 3.7674011047329463 +2.894417879259943 2.354370544056561 4.80967174608331 1.0768994883188894 3.7716362301521023 +2.4775339277223614 3.5518772019466667 1.557987251172941 3.7673522686275183 2.4567269386773667 +3.800279925386227 4.605604480175482 2.3980069133522806 1.5049661601670214 1.202526268069104 +3.689646877979457 2.9801806940046633 1.3370117406603552 2.8400709541646454 1.6620858177314102 +1.1800211048878864 3.8056649462643133 2.9757717867802853 2.3560068985658495 2.697798009195909 +3.2901561633946597 1.6126243842620607 3.814643511798126 1.2147767406546435 3.0940943905601554 +2.492509269303562 2.3020389580936045 2.312132016544983 3.819373070943747 1.5192282697203594 +4.276811367997989 4.655998934286446 1.2888969357135047 1.604752124138753 0.49350553237315586 +3.4199362871586203 4.369701699829375 2.3756408400327342 4.906411582708255 2.703119474068443 +4.112543539666007 3.852352378244852 4.488153894449718 1.4334896899011835 3.0657255002742536 +2.1847377053530845 4.285995925192537 2.5246855455933277 1.8461025480245579 2.208112540391064 +3.209232912037611 1.2494537921091666 1.087174902678723 2.2631116936692672 2.2855112196864504 +4.9656048777110104 4.868525905800003 1.112893788920955 2.10294424251133 0.9947985863690226 +4.971382058359296 2.4342960047379303 3.940253031262089 1.75763286478252 3.346735190391277 +3.846271723108916 3.305152354486852 4.219245928173802 3.6381400814166005 0.7940366340625256 +3.154864601104022 1.2519730041982582 4.075984838889277 4.4581458018670705 1.940887279364436 +3.6695844528041217 3.9713521326379992 1.102091550203279 4.711196619810781 3.621698929516214 +4.944365161768999 1.4635365429095883 4.47172494329663 1.8649775681204401 4.34871242459865 +1.7980401421832872 4.414226739162336 2.202181297221741 4.108111921030648 3.2368200217165963 +1.0155383973597885 1.8636280351988828 1.0093058336970562 4.2961955020111775 3.3945396927242077 +3.9986628868263066 4.433965276354085 2.8646139997294946 2.3531186133940367 0.6716514725443943 +3.1418038544709512 3.873102520366691 1.2736936973428303 2.6035886135926196 1.5177016264760088 +2.0718618335294567 2.7342058934876095 2.568525416958453 1.1345663021649273 1.5795373995766229 +2.6447568298606705 2.1213806713848475 4.2616272695761195 1.7328035402074091 2.582415934252107 +2.429277932251483 2.8610872587200356 4.415484452304763 2.95107404594635 1.5267472392888208 +2.5844617974010173 1.0816512464983354 4.656526834159121 4.98806863262757 1.5389475351798436 +4.181439318127271 3.174942480511958 4.005945173585789 1.5098089259857121 2.6914182229286885 +3.3875255419564128 2.6756082368325385 3.285876858165281 1.6519400569090288 1.7822950709224197 +3.263692654642283 3.814280547550783 4.344392024016946 2.7759200508517288 1.6623030284584732 +2.2734639389417044 3.5529710693671164 3.703334517743939 3.2422127078479885 1.3600631677871398 +1.100852602945479 3.577493003916263 1.3304693538489536 1.2275671981146687 2.4787772246362696 +1.026662917034939 4.796159773972713 3.2901136728377325 2.9271710406859768 3.7869293508985615 +1.072665741337258 2.074858963544416 4.880707005324755 4.799108414147137 1.0055096144344609 +1.5105111688333102 1.59401720959118 1.62365399611912 4.0766569409765205 2.45442390518063 +2.992864638763351 2.338713393666611 1.5453405974395866 3.6899268095112094 2.242133776666621 +2.6643390664945374 4.368733888545023 1.7855493488128662 3.5966974390326634 2.487010075198596 +2.290455602605062 2.872447777781673 3.0773041158343895 3.412338837553274 0.6715379041603337 +1.926644593379626 1.7569044484680107 3.8544648593551063 2.9384362604880208 0.9316223004721452 +2.166137286856698 4.321141740499641 1.1376066048401285 2.4681874123296086 2.5326842441331445 +4.848068990066563 2.101263300292414 3.8597447530327926 2.196460922891238 3.2111453715124765 +1.4759567712406398 4.614908324022302 4.235176670049306 1.5195790811874228 4.150600813778998 +2.540124902508028 3.203169018516359 1.450754965950794 4.322792754482471 2.947580119102311 +1.0979043387239478 1.49217026344194 4.467719776497484 3.732099423348313 0.8346154344133855 +2.607865110827319 4.741727281037056 1.1694890299470537 1.7052640689377236 2.2000960555979505 +3.149423076609287 4.845645936337025 4.423617632081861 4.292528064675714 1.7012808305937255 +3.470483771664926 3.915390532193711 4.874990118671681 1.0337042159970964 3.866965142285448 +1.691666282937303 3.641573596878662 3.4016359834671612 3.839912568192167 1.9985557029215422 +2.920580890362743 4.989210737818496 1.703089550141336 4.709635867067747 3.6494588916178494 +1.629792375961085 3.024726183611595 4.907834332632865 3.856263848453054 1.7468946192957697 +4.866976849507457 4.7716494229844955 3.414637379979057 4.326369871705683 0.9167024897520096 +1.3638462713940083 2.565178068685303 3.6849974038250757 4.446326848831784 1.4222589816968483 +1.2645019596096407 3.3621700336473657 1.4695213679126042 2.6733698412877223 2.4185662065952918 +2.9523041615841725 4.749973280283694 4.539173015183157 3.1627145458771646 2.2641228275096097 +4.768628684619689 4.945611647070216 1.878505297980264 4.49073813685605 2.6182214141471714 +3.6141796068463785 1.8367223594669815 3.2371420309208148 3.355718530873058 1.7814080533674668 +3.833280959865632 3.4494525386895623 1.1126746621861292 4.6004657462089815 3.5088475177316862 +1.434033673790832 4.056173582841613 4.911484583004185 2.6168986455186087 3.484356802502206 +3.9531919612163953 3.8833063078425822 3.9187348034253646 3.580946158801125 0.3449422748585124 +3.055578100238917 4.139868819908235 2.2698116523219727 1.1716342070155084 1.5432692785579714 +3.9498806896449747 4.786609170316699 2.9711787699174006 2.65100529637597 0.8958937456678648 +4.135114217045206 1.1774453329194152 1.3242485559460055 1.3217408322819026 2.957669947239529 +3.5401565542915727 2.963969680587261 4.881788044801368 3.908465980393912 1.1310822934214562 +4.93432654385207 4.098405155951786 1.4099935423034964 2.3764897350257796 1.2778417184048285 +4.861368251793092 4.408814152975361 3.923031098494565 3.2990487898031646 0.7708171857947762 +2.9345744872845603 1.17897599242387 2.568713527953751 2.9925147830245113 1.8060270150129738 +1.4136038733370548 2.7013324910531225 3.453599172343663 4.9345460117641275 1.9625107729830167 +1.7158823273195027 4.565603159143617 3.68297806295364 1.545504663267065 3.562260708272207 +1.040281104026207 4.535906841820573 4.872374313025789 4.601284039367262 3.5061216800337465 +2.0551897637382717 1.1460225110947313 1.90423974779238 3.734007869856268 2.0431927157761236 +3.6002533102984757 2.8575964956881545 4.400997562706343 1.4753205937504088 3.0184639919943277 +1.1959584208051184 2.3598068656747047 1.0942594618872938 4.034948050096792 3.1626243177859306 +1.425630403434814 1.416332598190373 3.6081441916790786 3.2687921407837064 0.3394794008909213 +4.308678918081573 4.72643695770779 4.9947856977544545 1.8798962212073 3.142778743528813 +4.827391566300474 1.3612685985415336 3.8201231784084135 4.913056869501416 3.634351727715992 +2.595635086935155 3.7234529441228825 1.4415343616228697 4.552344707105442 3.3089445635357686 +3.388467138768328 2.2324150893255297 4.4123826345855495 1.5771814808435316 3.061833098521368 +4.486523301967017 4.0034585122632755 2.3326791970639564 2.8537832632741553 0.7105638879596423 +2.2422584971566644 1.0768639202315082 4.056688553801214 4.169560217803009 1.170847783642732 +4.129216952718201 1.6559440061890527 3.883325168980169 4.9989490562086125 2.7132445016599 +3.155138442401832 3.1267826420106504 3.908721053558156 3.708175482224043 0.2025403110433829 +1.6246358400564653 3.7681234257434535 2.585607112258172 2.3070464965175645 2.1615122129277964 +3.328016228986622 1.1869855434583325 2.173621988220806 3.0287073447037827 2.3054681440534712 +2.7490479099658054 4.602432735456847 1.0591405731833041 2.984626676738944 2.672551598444142 +1.945601899766685 3.229314532189389 4.34025640939811 1.9328094767269097 2.7283179536611195 +3.813815435457185 1.2250664993647917 2.4640650427846427 4.070940129465208 3.0469113210453256 +2.0526659743491877 4.391709000720796 3.3777432304630364 1.04188003849915 3.3056586530961374 +3.78573082801333 2.683883612518239 2.7935532169044737 2.0385384193620575 1.3357075393971172 +4.793247785635569 3.6595610781837196 3.402033011744329 3.1062076855483176 1.1716476322990594 +2.887267858286505 1.8856703181844114 2.1589247205382547 1.2863250583338908 1.3283929399156467 +3.9812880717486996 4.010762076578288 4.570446395245045 3.9074695931844645 0.6636316425782973 +2.5577617157901393 2.5576404388714855 2.964971887890525 3.09994037664037 0.13496854323696356 +4.643173700148891 3.479398869059465 3.795667698834472 3.824983695539636 1.1641440139175387 +3.296289905490607 3.1033248943908345 4.7798796648740005 4.5749096110239815 0.2815106010153349 +4.515259453308227 2.8179896796062276 2.590992975328406 1.5672759531131715 1.982100205916861 +4.708672629445843 2.785246593071969 2.3300424155440194 4.28952145257937 2.7457468590498095 +3.3461349138487573 3.8449259292239932 1.9085722742131925 3.2686837543838974 1.448687583818956 +2.5080183631512347 1.3233931932084002 1.8988801151657593 2.416259276366286 1.2926786103694337 +2.135508665103156 4.144808942648266 1.1381162865950025 1.6909742342427032 2.0839720525045644 +2.4654352135686985 2.7962885084107096 3.5797512028761105 2.413010865717462 1.2127435495853571 +4.533077118781815 3.2024134443743235 4.9796010299211 2.926025368255228 2.4470060916503806 +4.2770467451636165 1.5299310096281618 2.69624284126648 2.192472009953367 2.792924974808383 +3.565113067808332 3.594493681794269 4.883292811993053 4.770932010635001 0.11613858170312909 +4.778309686923302 1.0805826342222922 1.1318003048296315 4.321785688956277 4.883563464031006 +1.011891387884837 1.6779212353121915 1.1957356822441372 4.676370857501796 3.5437856849568403 +3.8570652399032297 4.27122424651603 4.961155459463442 1.8491304047864618 3.1394629514768546 +2.3199046058032953 4.707422194161973 2.4761238016886082 2.57575200655853 2.3895953661504366 +1.0874302462814143 4.823229124998017 4.256585014131515 2.2770588623184262 4.227850168576479 +2.565901683420907 1.6498504473564441 4.7292473479975925 1.4133230731985864 3.4401313439019368 +3.790486144741351 3.016484983305927 3.939691273165585 1.4246286904002856 2.631466813989765 +4.420878756054072 4.343032482674008 2.9980045391169896 1.675998337620169 1.324296205187954 +2.6507709013358873 4.623807456026692 2.058329684111779 1.6575960160087218 2.013320818671851 +3.541295223297026 1.245758313067288 2.145092345794094 1.4278769724397398 2.40497143392659 +2.33088345372278 4.665498577106611 2.6250710306706275 4.177919057734153 2.803883872325597 +2.2466230270478564 3.477961219804867 3.595279876129437 2.2039725990556285 1.8579369430044272 +4.453437123678359 3.0082966312451145 3.497248325972064 1.5992733804358608 2.385527182145145 +3.373399642194916 3.769240069179787 2.3819674897616414 3.6042457872391624 1.284777755146824 +1.773368362579279 4.3234665529574965 3.065622128276402 3.4923300773456867 2.585552253266055 +3.3425087978415418 4.999963648453958 2.487628275157403 3.8933457530392017 2.1732920212067666 +3.5970197401867225 4.373677860648795 4.586685118267738 2.8948918820931593 1.8615483313751842 +3.416180107064849 4.975805947675637 1.0353145820326666 1.3598081738882906 1.5930250637878458 +3.7494493504088746 4.219064641580768 4.916178435163261 4.368864586698933 0.7211733289738994 +3.7742357763936716 1.42747393593505 4.4963014694788175 1.6763865300767744 3.6686797899647177 +3.2986121030182867 4.424323592354071 1.1498259096706391 3.5828379511996666 2.6808159115179535 +2.1821013472046022 3.2903491105597467 3.832604992408607 4.571020233901317 1.3317170021631537 +4.116537119786615 3.401940328985138 2.3017436672969693 3.7782985437018723 1.640384978125217 +4.782197431779532 1.6187430300830439 2.9154389317226777 4.7487036398760445 3.6562690330135084 +2.777674066955806 2.9572864481498784 1.1014844660915806 1.7567585125351255 0.6794443931777654 +4.724796209626399 2.3594972645991517 4.890665568228993 2.3647637307910028 3.4604651698463353 +4.535343788759523 1.3853254062429263 4.909480453522613 4.788344638243426 3.152346696658828 +4.186412544604083 4.43736000740369 1.5196291021988846 2.716604021309991 1.2229977866155766 +3.080180909071825 2.471770880643657 3.7372791461771264 2.8597159886714665 1.0678388727253132 +3.8012231506573753 2.3391626012078475 3.5297752435671983 2.0018818230306388 2.1147291445420526 +1.1143599022325184 2.1531805060838414 1.5198080630702386 1.9730768344623 1.1334023231427117 +4.907625571680498 2.3290293457922564 4.107015855712092 1.363568944581639 3.7650576954883848 +1.386996980146503 1.9572112239908948 1.8974439763298956 2.750965208465389 1.0264710310520808 +1.8193005872150079 4.761638482061953 4.528725724264085 3.5223412617538377 3.1096884046210143 +3.9680560797098603 2.824898646695455 2.073687305530148 2.1387464544193504 1.1450072530382818 +3.041908662824319 2.1305903710433705 1.2421985180178048 1.271150216791816 0.9117780595059561 +4.066551348881059 3.662511683798074 2.3742030388997213 1.611116353610174 0.8634519906900203 +2.4938989692704268 2.0303949856188668 3.6097241413787375 1.400276531692906 2.257541734455268 +4.766850862371012 1.8029792240801714 3.750080247231519 2.234894227445253 3.3287120276197784 +3.675994870302456 3.328553975515631 1.7073931029825533 3.4096749785903726 1.7373769767650156 +1.56319153729546 1.3733222540433765 2.287602513589798 4.752852454925508 2.472550832233461 +1.5809743759982506 2.116387122220711 1.2669346343022236 3.4782382168880672 2.2751989678211584 +1.7994137549331986 3.5261146694316525 1.5702901731173693 3.224178870565855 2.3909922358045512 +3.209790355539144 2.7400921727804755 3.3144280520197222 1.8777872196216516 1.5114738714910743 +2.945000296675458 4.74671365106621 3.629246028416716 3.881663631336532 1.8193091154759162 +4.197032111407717 4.70257761973383 4.844790515363458 4.514328555179459 0.6039713305425677 +3.027735397498134 1.573280290426684 4.726517488167717 1.9034133832560354 3.1757450221413257 +4.6928168395119485 3.4753692448938236 3.2864078444380724 1.017524191948497 2.5748809048528623 +3.7115078388985854 1.4257812791977105 3.3838412686539776 2.978596026354365 2.32137235533821 +1.6650024062060353 2.184039970271268 4.161260630077001 3.315385512010712 0.9924236536250173 +3.518478932375615 1.7334229946883077 1.2036859193989415 1.014364330193041 1.7950675098202182 +2.9674445004666556 3.362660133188044 1.5754285391637088 3.6148853248215027 2.0773972602545205 +3.0952147941827794 4.3238087866803046 3.0227416840305033 4.665373024996063 2.0512632499811723 +4.680423594392923 3.0547008219900937 4.552911713825976 1.7365502948627145 3.251901931936739 +2.09770476169561 3.237808661408775 1.6169145489812267 1.135687304146506 1.2375041669878866 +3.9290042207103038 4.247127870484225 3.8999621662387947 1.9394054538711956 1.9861987007736988 +2.064354911149234 3.1647432288840918 2.420046078927291 3.739932460847845 1.7184162798887468 +3.7739298946540214 1.2230935860791017 1.7346042394702068 2.2184265618125405 2.596314679067399 +2.58514050677048 2.6465404852510894 1.880962285842291 4.5364540843024 2.6562015452608865 +3.45324471526112 2.2293934329325715 2.1141566860690557 4.662909265148986 2.827357718900074 +2.81717229945378 4.531265810042169 3.4345716232705836 1.4061342077335093 2.6556872767311956 +4.022883461145044 1.5169661932864233 1.6487844297892038 1.3476957733466546 2.523940516809062 +4.133057720398702 3.4716903395798115 4.360003775638884 4.25932414021152 0.6689866974768822 +1.0212006636325737 2.3188393170859416 1.7347630916368626 2.1183864291062187 1.3531566575926814 +4.225718151833355 1.3353005126249102 3.5196918289718475 4.467735025163844 3.04192373850714 +1.996138638004041 2.5618743737933234 3.142170827180536 2.055304952626635 1.225289497228658 +1.7886054708760901 2.286457192799697 1.5791307602704467 2.317101839134967 0.8902009044382984 +3.645174197854803 4.580357174298264 3.8748712894145627 2.31383002185355 1.8197299355833394 +1.554912884750772 2.0437116059488183 4.738506206722255 2.5664141869247117 2.2264114472201717 +1.5427413366008604 2.9706198780617235 3.2631635533800325 3.5189678508808013 1.4506112393692059 +3.7517347314771943 4.699385590131292 1.7112056029329952 2.5857262628707893 1.2895070897695302 +2.2978021957887966 2.0141934179381917 2.4580837625680245 3.4380033918309176 1.0201354903583346 +4.2609191756164435 2.2173233055446384 4.932012758261255 1.753046591130155 3.7791678941188542 +4.360303463041916 2.9426762437574228 3.529860055457944 2.55583530895598 1.71999742431624 +4.814171154601349 4.110558044005438 3.42551499146847 3.3313323001728934 0.7098885748778687 +3.4906785897904182 4.650415788738534 2.1024316339733904 3.3398106402246817 1.6959060043927712 +1.7814984088126735 4.140801503207145 3.2340466931938554 1.9795208648416334 2.672105189774938 +2.638052878344571 4.250777629661934 2.1205502530996254 1.496006720300198 1.7294322038961925 +1.7595762541630178 1.7972568067282122 4.747001861176869 3.4093743005285293 1.3381581801295568 +1.8564731284362592 3.5770992437617353 2.557412502162546 4.99657397443309 2.984972850219755 +4.6012927525449445 4.224704641273155 4.0493408761554415 3.941783192086693 0.3916468574538634 +3.2364165212855416 2.9922798991371287 1.0453668671160723 1.197834323011703 0.28783504891052275 +4.614471859478284 3.5590218187602294 3.1121702433196363 2.7683612647377953 1.1100357661828884 +3.766813283169961 4.345666831874613 1.292396971405851 2.8191098478915055 1.6327656408912672 +1.2564322454841088 3.8144399516851353 1.0232957802112885 4.1602586412956875 4.047707921380526 +4.353594362357439 3.4984860404341838 3.9246011993188157 2.1127515276996056 2.0034993074041845 +3.477304886632465 3.630652859521042 4.10092049062369 2.894299482823632 1.2163263777676874 +1.952011662133509 3.060973024457572 3.7492322244961027 2.030912835695181 2.045095798503536 +4.308100602285542 3.9454360294995223 2.2719317554752116 1.2980018451990731 1.0392617872723664 +3.659312444148636 1.5402446566360175 4.398421567438667 2.1975936705363783 3.055174580913008 +2.9202716370786024 2.173818648788292 3.1115125060162656 3.6343103891133355 0.9113230438753933 +1.8165012684108017 1.2459380785277379 4.371899863149956 2.4155114797670096 2.0378905417821818 +1.2816457765177125 2.3564567852891503 2.6438503669184312 4.208807613979321 1.8985020120359826 +3.3417575670676904 4.785930680294763 1.9019251981155638 2.7935109194691172 1.6972215764270475 +1.827881907912979 1.065773784692396 4.609660565149458 2.5263341077347627 2.2183457619683327 +3.5000127522285274 1.2977303555601032 4.947873348409329 2.2197226122920988 3.506116682834815 +4.107700746587129 3.234482273963399 3.088808900651678 3.853553555519449 1.1607518632680056 +3.2790812586598825 4.836723814890304 2.2616484245180835 1.3968294953733271 1.7816178358972286 +4.321273506552779 3.923945392574137 1.2348764649378414 1.1869224717387366 0.4002114636308716 +4.194075448240912 1.7524465459979859 1.1101960931458552 3.826194548335981 3.652149956513717 +2.932965633157597 2.4151805288918435 2.3483943025179554 3.5673912617313133 1.324407414948629 +1.7708155312811171 2.6050176150388493 3.857132311378726 2.806961256821614 1.3411757380654257 +2.932594754835288 1.5940998793240402 1.8164229252086352 1.0591346633435363 1.5378732208243089 +1.4815116488482816 4.1876670269499225 2.011947248553788 3.8737541488106517 3.2847529380872023 +3.73104417962664 2.828778980950219 4.115836769767132 1.2241309177060633 3.029198775845988 +3.4428428715321373 4.488861370273947 2.696851145848816 3.2363556720325612 1.1769536241852592 +3.5312346129636087 3.751818270971127 2.22356823651821 1.2985291398550425 0.9509755415021918 +4.00187345519346 4.271031352871326 3.0110096750375805 4.667254106452461 1.677972464158804 +1.9206427525298735 1.7061502026509245 3.4547127389319567 1.9856600780947211 1.4846288338391302 +4.184844466855953 2.2684195792719297 2.2593506556077934 1.6675492374361172 2.005720137083298 +4.905812062223697 2.749874521820936 1.6459577371812775 2.272430961620086 2.2451136672909606 +4.240434448892263 2.5318567297738004 1.3391848947502494 1.6682741100800835 1.73998204988283 +2.4504650905155585 1.7350074872479646 1.832949087265456 3.279301967937227 1.6136344807610365 +4.341172562048381 4.809253841678482 2.549805389590099 1.496438648642691 1.1526845081262762 +2.6665030184637946 3.0017073753072143 2.54291838260727 2.893206138486282 0.48483344848057364 +3.2569327666525054 4.096515515310092 3.1104896173866545 1.59683083224246 1.7309136632679363 +2.326705186994422 2.364590458177013 2.405159231440566 4.125784146619461 1.7210419496650735 +3.781901336715548 4.175956195359753 2.3162024449276473 1.057691934399617 1.3187599996703827 +3.976514695457435 1.9395059904438026 2.573049746163925 1.249903281540357 2.4290164740378284 +2.151112731512452 3.116225038602387 4.716183647277948 1.3668244823573747 3.485634602326224 +1.4014938749752517 4.874981405902518 3.552752838520228 1.6781734073628498 3.9470449289595773 +3.5227716981786914 4.772010414142981 3.954486846028306 4.005752243756689 1.2502901705077731 +3.31078948601953 3.993722427667658 4.39813525265159 2.9415371602685334 1.608749640410877 +2.6766167421279645 3.6715728213115124 4.294104438746398 4.787248139648297 1.1104631057552161 +3.388113844952119 3.5342789539192347 4.2687016233452955 2.971888938091017 1.30502390005539 +4.090716978733061 1.6393040358539412 3.929101043107175 2.3704962319877567 2.904939650622688 +4.140441622017806 3.084882586052459 1.8315604024055538 3.9102310421995803 2.3313250539446018 +3.5947253452239796 2.2929366725876603 2.40810665338929 4.557462724284818 2.512844059566708 +1.0505344798289253 2.964349888153553 4.294213472640298 3.5299026584588917 2.060791216454351 +2.354661578297452 2.040835954389158 3.07781857064466 2.2626846389426696 0.873458555876222 +2.3675564582298194 2.695682190302638 4.773127527766833 4.0010693380980475 0.8388923317583519 +4.244234756048661 1.4029277213282945 3.9962482247980784 2.577791989688203 3.175695790921026 +1.6058697237013884 4.499936444430395 3.364131384781392 3.824797582911433 2.9305009008923255 +2.523725798819019 2.4849335556020424 1.5604060244224547 4.767186066651564 3.2070146674707822 +4.631334135736737 4.759582246233413 4.546543812045107 2.8097895182172183 1.7414830045037986 +1.2307306832521694 2.45597890023367 1.0310670182166688 4.810212030563658 3.972803823191308 +4.526481875796479 4.570196667757227 4.997708057901108 2.4381197162838903 2.559961613301838 +4.3233354396851835 4.799338613494998 4.512230714933519 1.5269271361358365 3.0230144688802385 +3.4520310769305764 3.2165604449640255 4.260605665183779 1.6105490166445144 2.66049744577699 +1.4451948099792995 1.0017465430010315 2.307566356726177 2.0348725870942106 0.520584534424642 +4.943828221699345 4.287472932740796 2.7321561480723733 4.7070240014870315 2.0810827239190854 +2.8912428524359934 2.567992402897124 3.7480602720711955 3.5410555646844655 0.3838512758964687 +3.3675594640201076 2.0102472210833677 1.1280639187334796 3.47726495477397 2.713124035601704 +4.783342840178284 2.0255701963551855 4.76345485257052 1.1194459838523425 4.569913630509419 +2.504601627515817 3.4466658003292117 3.849686547539159 2.603117344303356 1.5625042989235356 +1.5398692642579763 1.867292660171902 4.072899722713451 4.848960240338515 0.8423039874108927 +3.7662380733212992 4.048497538753024 2.5041444817073257 1.4280329819990656 1.1125135350323445 +2.5710212457165427 1.3695765648541949 2.3345993201029747 4.063014839519474 2.1049678213531524 +2.3920062070523564 1.7730529346021764 1.6308808577229885 3.6662350456603514 2.127385678204812 +3.0476724261485133 3.334082336284861 2.869956011451625 2.4836238261352275 0.48091911381817015 +1.5220571469672106 3.0884768299046694 2.347748099987511 4.60096134088369 2.744201255747062 +4.053432234919901 4.9000540804282 2.225438276296625 1.7399654150175734 0.9759367030347548 +3.5137610002338837 1.1973403827034428 3.3226532811612253 2.910299045477913 2.3528366906791636 +2.354745676603457 3.71498405020563 3.9522511428223415 2.595761999611481 1.9210182791084573 +2.284740752968646 3.431340315013961 4.2735972704150775 4.816817495636003 1.2687705737333215 +2.273982244700928 3.4319804125338647 1.6405505573725678 3.2891882848581266 2.014687596922457 +4.40446742620915 2.7241349711408875 4.035300967157005 1.5689552532532685 2.9843555987929897 +3.9316562062987135 4.364038880797763 2.1869396211600627 4.99845869660029 2.844572777900263 +4.260515912041223 1.82539556742891 1.1819096291818187 4.612685057620007 4.207140493627474 +3.7311662795727116 3.8035236196835047 3.515406672430954 1.2553316876582992 2.2612329648806697 +1.6925723262338588 3.205623358800053 2.5672669096030956 2.0679756117769714 1.5933032439666097 +4.192002065307973 4.847205195297187 3.6206613310909055 3.345696952524562 0.7105607300069703 +4.435148116020848 2.6285898622099038 4.87649661261025 3.9243272201449244 2.042126165632338 +3.8985346143986206 3.6154087849655636 3.1543734695108987 2.8843186825182645 0.391266946303663 +2.781780093600027 3.567612289756642 3.7946277768452803 1.423502191228574 2.4979529185480054 +2.038643794114386 1.4592637265574617 3.7582151176222696 4.573230506979307 0.99996567319637 +1.779274181646695 3.7306174265194496 1.8616195215905407 3.2990567461352085 2.423626669645556 +2.9324184056191624 1.6626667033644678 4.977082594231386 3.9737912605404553 1.6182901117037147 +3.2709029559419216 4.035797323507861 4.695046544794104 4.593834311449391 0.7715616046128287 +3.5899351705730944 3.910871433762608 2.2765499745516715 4.92725472660415 2.6700628770842907 +4.783995502233049 1.356468677230572 2.418172329785362 2.874993458420873 3.457835403786505 +2.6621907053116884 2.774009581198537 1.10044260748781 3.291594598887163 2.194003306838426 +1.6898294317303866 1.6069544228195554 2.271400043859656 4.810374237675557 2.540326401068389 +3.365119544241039 3.6676829531187165 2.9606451795567046 4.1445695822543485 1.2219744709668257 +4.450864756199515 2.147571643110315 1.5408136915384891 1.9049026770732596 2.3318919259245003 +3.2251695736324066 2.6273734450070436 1.0808812344849423 4.313790603333949 3.2877139776128876 +2.182412997106903 3.330415172178537 1.3780903798503652 4.800152656456055 3.6094901605264025 +2.9206224129278224 2.64416029751918 4.1629492317966985 4.063994728025945 0.29363803410446954 +1.6994370832757575 1.8342461054689556 2.104172172146529 2.6418705273280256 0.5543401425384715 +2.4821069667957256 1.1396161228626043 2.0437162250922523 3.32609798210411 1.8565518136483785 +4.299607332686687 4.489072063662702 2.38688510975139 2.4795860488049346 0.21092735333574605 +1.381309091203799 3.211704644108641 2.5640917080296717 4.309071063846584 2.528893203027963 +3.90890897140157 2.6089936967987173 2.432255365131216 4.155700972855065 2.1587136178586634 +4.150143279117275 3.9832752900798325 3.12813858437446 2.369794985978842 0.7764856334749628 +2.785280719576428 2.792955129207042 4.210176888491424 1.7617312228789235 2.448457692920141 +3.4702503378180034 1.480026448251289 1.3852116959924712 2.853118593402535 2.473002585940035 +1.1742543560211876 1.206503946906376 2.504136861274341 2.654614496175184 0.1538946221205063 +1.1122907703196963 3.0233956146979115 2.055500389447305 1.8995039858868363 1.9174609785155166 +4.042594106937075 4.177392536523529 3.739623216013394 2.2483121408211657 1.497390843971598 +3.292538974524431 2.1675311884326343 3.922941164228064 3.8220406793504025 1.1295235396465684 +3.2418308396471005 2.0859735388950935 3.694957775139374 1.394482670064591 2.5745274923314665 +2.2692408647228475 2.13133160817366 4.663760202745854 1.6417523439286286 3.0251529650242515 +4.006963658444324 1.4226567053647456 4.493767880933886 3.3797636010752847 2.8141869097980563 +3.1196826724399442 2.603604949315976 1.1416022258036835 1.188817540846725 0.5182330578797854 +1.56149222171591 4.892889459596576 3.1812857745819927 2.1288340409288717 3.4936889111980753 +2.829238285250308 1.8613098198374303 2.3665509530344155 3.749270212278923 1.6878382813653114 +4.330096273839455 1.3805641805793236 1.0547003095376137 2.8560127296667135 3.4560766779808065 +2.0873040188689305 1.635948057819908 2.9133034428123796 1.2677562307364778 1.7063258278374793 +4.392696354679819 4.013235002931502 4.087890483064578 2.1456127009799637 1.9789982062271279 +2.8377343611174033 4.020992635331967 1.676335991246559 3.1587114459364716 1.8967174623976955 +2.6002519403925946 4.847351668572931 2.994689467878676 3.3742192825497535 2.278925200310972 +1.4859670686645123 3.567644450029109 3.738249802847726 2.3982972309887933 2.4756521595160197 +2.654481390057137 1.8666548559309528 2.7562335473844493 3.50740449351731 1.088544182928471 +3.9613139744089247 3.697262485305367 2.253794896905667 3.9447604758752832 1.7114577932738673 +4.133615579112595 4.0347880465936115 1.7984120448992384 2.5922545851941092 0.7999705369359575 +1.0930382018943265 1.1310464260966997 4.264339442464559 1.4512265506739772 2.8133696463609943 +2.8214564579663253 4.8881745096511064 3.5393989038747753 1.4994518879501517 2.903912418262561 +2.1435488490465207 2.6150604863622773 4.092606019725167 2.6888156289568754 1.480861467301239 +2.014334507639765 2.9546071238303853 3.016979140834108 3.810668603401368 1.2304696484465838 +4.457537359400526 4.3352113013794185 4.371524904603795 3.1100685633788725 1.2673735697447506 +3.9903041017032668 1.2364864457457894 2.0479259298699186 4.394847155384719 3.6182248300838116 +4.5973111139356675 2.2458617543983768 3.4685303536766177 2.3011424939021015 2.625282557291169 +3.1745167326100767 4.208181043992375 1.6296533668439896 2.7748674871221946 1.5427175016541503 +3.339367729554248 2.653821428077677 3.3506267587242853 2.2342180358226433 1.3100924272886552 +3.6974144233821393 1.6369872734270197 2.228070048488689 2.0594978374922794 2.067311449828592 +1.246909817909828 3.6828100783929107 4.128220919670806 4.710534731585418 2.5045357762603584 +1.9559971993876184 1.249138141972543 2.542940269128702 1.3392519638110438 1.395892282165148 +4.4108047986621655 2.687326296143874 2.652432517475745 2.75779992855948 1.7266963948422378 +1.077535976932403 1.2778719373611054 2.8244026356711025 4.316985339391973 1.505967338453127 +1.15141577961468 3.912836707234595 2.653940082105724 2.3498321345288864 2.778115761316765 +2.4684678084095033 1.095065336972688 4.968168496872295 4.437673448320273 1.4722973018677188 +4.679137777481806 3.629275434826612 1.058224199762917 2.154354208798164 1.5177983842503797 +4.938410743634806 4.4284014434476635 2.1368089161116295 4.552947385696633 2.469379393792283 +4.757247532358666 4.28674595087495 3.2438946289999877 2.5501952065153515 0.8382067924648402 +1.3201908000653617 2.67904064600697 1.7384002991936973 1.4129974848231757 1.3972687269869701 +4.159766079303813 3.7448958153871508 4.420340923123119 2.2709664279006443 2.189047294280128 +2.0962661988471973 1.0862096239555066 3.067441419009945 3.0054562418153266 1.0119567415032038 +1.2632240191689434 2.123051735943797 4.898538431506822 2.927372572467698 2.1505344792343375 +4.132672001294902 4.717359704745719 1.7977442085438322 3.8271692196129634 2.11197196622482 +3.0944242292431623 3.4379425112903577 3.159982766836082 1.5243560469544724 1.6713107361862216 +1.992106740406244 4.578530273425917 2.876072904253482 1.1041665087226686 3.1351617130031695 +2.012078573276027 1.2801144484015663 4.093619775160249 4.364914142458256 0.7806229011698674 +3.48178444272159 4.238594735045663 3.719481370866711 3.573440639139476 0.7707721543303675 +4.234498989910543 2.7984989356152217 1.175985709479316 2.9106409046467268 2.2519158070535084 +4.855671546126244 1.5722291932621597 2.217560628177386 4.575945159808701 4.042644095591336 +4.913119043926143 2.581348054527679 1.17588124353147 2.9025541668269805 2.9014746821301323 +1.1907736972349685 3.792644582834575 4.183147692400524 3.2995482141404513 2.7478137024391507 +3.1545947790030406 4.265965561754604 3.7181825385326523 4.3038873991386986 1.2562623931692658 +2.9855828019388277 1.6102336050695474 2.3933577180176178 3.6438927068653437 1.8588768575839973 +2.912637816184729 3.739756554247659 4.959902447946639 1.0909088004530623 3.9564172241057274 +3.2130315214143215 2.1069078212228525 2.104946163078713 3.879211928040013 2.0908200890652866 +4.486914065040734 4.813175831896899 1.4250564821119664 3.079213314201362 1.6860253751530938 +3.609502082308464 4.1076747437562515 3.393725136859998 1.240241720659308 2.210354456747914 +1.8321136509080262 2.220881479641355 4.621775774580158 4.915779443371666 0.48742033392226647 +2.0311016387278142 1.956890920199128 1.7846436833430936 2.372885656901908 0.5929045877718546 +2.2403626043931646 4.377179619027556 3.237055638047048 1.170721193248808 2.97249474209639 +1.718488227053033 3.6211027804416687 2.2917968975700505 1.8437426281968197 1.9546597573669482 +4.77807536840382 2.254105186668005 4.143353587233495 1.5378942338078114 3.627512084148708 +3.619893161023811 4.055277512233497 3.452965325089447 3.09829848970491 0.5615586322014481 +3.942824427414457 1.8777410076050924 1.5273449992772448 4.4154422234184185 3.5504471699862674 +3.4071334282399386 2.3816354812235674 1.5174797693834892 3.327216951979158 2.080094879904304 +3.7151844744947087 3.1698479551238163 4.113788625167212 4.517224590570358 0.6783454116748546 +4.63897901001592 1.9981045426667774 3.6991459845151833 4.992850876943167 2.940729552507118 +2.767086966780523 4.610177864564267 2.9253962723053 2.5090675276418555 1.8895273697743373 +3.453000215738943 4.849319441952122 4.14731343243667 2.200849377979884 2.395501971776463 +1.623828680848261 3.9706099708479003 1.3291803731937248 4.917923244130867 4.287943308486544 +2.1178950261209684 1.4299846372832747 3.3896500870929014 4.990573766934276 1.7424630072824139 +3.186080963367546 2.413076729020796 4.188804293478893 4.237931205686566 0.7745637480679469 +3.0979502636956004 1.600888672965059 4.694924508862461 1.7825028193090446 3.2746592958996263 +4.800494826855211 1.7571278476402696 1.0055774896095921 2.6512084550176795 3.4597953471969736 +4.0875915673050685 3.586883154110246 1.4592962878997535 2.1343380345896334 0.840470270038269 +4.978599636422536 1.1772603060510631 2.7017051169322213 1.3409035664820155 4.037568768991647 +4.308723808180909 3.4479577304893207 3.0955146548662227 4.0301725148469085 1.2706311643148995 +1.0077032938315824 3.6425472079367647 1.5753157748309436 4.958874614503118 4.288458099739443 +4.208711899487614 4.0929116541769375 2.741815746928131 4.21472540633458 1.4774547578815518 +2.7243930681690784 4.977028450900291 2.2372356535174602 2.99658610681009 2.377178848645663 +2.6319362428442927 1.9650453360050482 3.684971099956443 4.491369404722127 1.0464328490418475 +4.954727942699263 2.391786465715591 4.7916944517109314 2.4282940121581356 3.4863061615586193 +4.87756935996636 1.0021599091296993 3.456483913156435 1.7663188031315773 4.227937619073802 +4.652770615395749 4.628072843678114 4.645231842528375 1.9430210081187416 2.7023236988800257 +2.8375201090322086 1.4308575973394566 2.0266364743307412 3.527011762870784 2.0566539398409684 +2.172351893333572 2.3078488651155715 4.629627810341994 3.5689041649693647 1.0693428267934895 +1.1902727070089907 4.020492602893711 4.1145684373288685 3.254338837862166 2.9580634920265587 +2.1137646835357686 3.334005956490535 1.3525794773712811 3.3800272045235027 2.366333250105948 +4.175604526976334 4.070592401554771 3.742405309595413 3.6102828553302837 0.16877170795662208 +4.686449864872651 3.8668170472821095 1.6171340448463947 3.016264145059717 1.621531064455551 +1.9023353284696483 1.7995341483815963 3.382672269859119 2.145279683706446 1.241655545992163 +1.4419828182260397 3.8749815365889755 1.3711790368180519 4.143515773045774 3.688540869042048 +4.986836810214406 1.547955249246792 4.517701031498725 3.880548309391948 3.4974090383669925 +1.323003670457087 2.0184559096691963 1.7132295061512046 3.2042248613546644 1.6452115262978886 +4.079596035325295 4.6568147517501375 2.5064358965958236 3.216520371769598 0.9150963929958182 +3.560641251571583 2.1203641991181295 1.230578964093195 2.7340755050530445 2.082042227358091 +4.488915123768312 2.595774233356389 2.0172845592695543 4.017005196442879 2.753700248336143 +3.102289706475018 4.76476204851323 2.4328707393057893 1.6638293620359672 1.8317311287399916 +2.3098475004011254 2.134154145435073 4.905901186969597 2.904670674271825 2.0089280026750127 +4.330109154510383 2.3930218441227806 3.8377237450571604 3.498797162175997 1.966514296070125 +2.9175121403012017 4.109865490451414 2.144276425642591 1.5775168311475136 1.3201980720962514 +3.7037964611567236 1.965847133369282 1.5529975402297507 3.8439041241455008 2.8755383569316812 +3.2670051765481967 1.0368049798186725 3.6485630996225957 3.7879146168468556 2.2345495659853043 +4.469578568100484 2.2199528354433467 3.7526162525321403 4.843179501580892 2.500028827275584 +4.184445984100126 4.884374718626036 4.606039825707214 3.7593784606138487 1.0985152254551607 +2.330396227615991 2.0402766446951253 1.4095917385288286 2.7949930243273955 1.4154526113884915 +1.9994574060954808 2.7912138825002564 3.516617615753105 2.1314706892700688 1.5954655514533393 +1.6858406124837533 2.8885636712372964 3.5968971449043323 1.2457859455893776 2.6408836830882354 +1.6787367331914815 4.834511976291978 2.5314690776127664 3.475628226096268 3.2939875352877532 +1.8922060189691434 2.5962275321544084 3.7790074139795706 3.9762906296341445 0.7311408607147322 +4.07897250496778 4.23093125045915 4.2272192968139 2.0059680586721678 2.226443020442583 +3.807953725662118 4.211426677753666 4.155383288988416 3.331216924688472 0.9176277126988137 +3.12530269553719 1.2102266308494882 2.837921768965124 3.1164663436383577 1.9352269669523592 +3.012381472828645 1.9010574088812158 1.6396529138655764 4.013785819280105 2.6213638106300046 +4.863673891939564 1.972510770447982 1.6010172097664563 4.727977623234237 4.258721125228504 +4.401677604282378 1.254782120527405 1.6607830811207727 3.471643860537933 3.630725540179094 +3.6044331526941975 3.292812557211561 3.052336734144523 2.378902759232718 0.7420382160606462 +2.7478718788098235 4.187581158552354 2.6523779546205137 3.1794870113798597 1.5331688647681583 +1.8403298491086924 1.7269170350393712 3.615268689786363 3.549838045304611 0.13093370701396886 +3.505047111672464 4.517316243971473 2.6181734929685914 4.274417214327331 1.941090430852111 +4.988465719628584 4.221994310561016 4.98071299650144 3.552170309713798 1.621176310242806 +4.268188703640187 1.6830078546937348 3.168941942131406 3.555724178589678 2.6139549575689256 +2.418602945693421 3.0861562247485534 2.3839005727308784 2.509105175261316 0.6791933251085913 +2.7003701321344815 3.8233287567957466 3.7574777788607907 2.928899937097817 1.3955562735202431 +2.228487903332134 1.9861285928721473 1.2875640155305246 4.256630793207136 2.9789420211997437 +1.8373310800490548 4.818669661683342 4.282223966853826 1.5820153919183317 4.022375676947183 +3.721794256425159 1.0709313875368611 2.1634042651567302 2.5573697142192997 2.6799781201916124 +1.675603914189137 1.698305931825976 2.5293358302541056 3.4022367372235656 0.8731960690434246 +4.598989368524335 2.022813664056891 3.6634813409164124 4.111487783770036 2.6148405368447785 +3.4092276685964995 2.848535003821197 3.787448552620186 4.626761487012874 1.0093673593750165 +2.5458428540542135 1.7394548492209179 2.530854192180382 2.9048315588634015 0.8888873298288085 +1.581611677904609 3.31154451943965 3.45872981765267 4.682015189600223 2.118748389366318 +3.981080010507471 2.8452076744841355 2.2708393736866137 3.6812946594964187 1.8109638530384662 +2.808921348699355 2.4172723379253958 1.7640840070977855 2.845840414196771 1.1504720213633737 +4.776694586011359 2.988102338515684 4.020014029561198 4.145865112957149 1.7930144235319374 +1.1385370582391858 3.59851151705243 2.292238726479413 3.775948494325218 2.8727807109514236 +1.154238653111968 4.326500872773877 3.89043698789973 3.3768396615302403 3.2135696357708188 +3.4971358607810075 3.094634240541226 2.6862286148875847 2.169756340810464 0.6547909316614287 +1.241424319757051 1.3984753249748296 2.5398454197837856 4.346570251943499 1.8135378786731913 +2.261911723557297 4.054815086908986 3.6330672777078292 1.4881679149903406 2.795549274561922 +3.5787353261414503 3.0247852252156924 1.520156026939235 3.1251087815865826 1.6978616136086493 +3.599753127657019 3.215190325831451 4.687628205860371 3.0326391881285786 1.699081280386778 +4.9336281146096095 1.4233864734703952 4.564515346500926 3.1796833570858736 3.7735336248793354 +2.630166751051946 4.388084356903808 1.2450450634969532 4.626222143484732 3.810857220521208 +2.2050821776869918 1.9627955832076807 3.7078120815044224 1.3354903343360016 2.38466208632431 +4.712209656183928 1.7223050417849568 4.581690173095108 4.100312636672678 3.0284078219051658 +1.2940650288013975 4.206915300317489 1.4721288477452399 2.8954363694110836 3.24199028460943 +1.9495773670189074 1.8648621838358674 1.1211656744683265 1.2279379825822954 0.13629742492696006 +3.2271204453726248 3.827257258494339 3.397546814230678 2.5822862865056377 1.012330935282726 +3.4172865504679155 3.712021332943223 3.2011654014748947 3.4012357501063484 0.35622568183986697 +4.545624527710606 2.141741764568729 3.246364840183291 2.30555631826042 2.581428483195559 +3.846756280179485 1.5184186566710856 2.572830465318433 2.661198087550473 2.3300139325127835 +1.1536840499076453 1.8599834912637285 1.6877096256022193 4.467355859761913 2.8679770026864024 +3.679936042059586 2.987499469306639 3.9844309167181375 4.619294128992874 0.9394251995692072 +4.167530367271712 1.1169433089419831 2.9506742993605344 4.368346367993369 3.363907771421584 +4.350809683860975 1.6294944979969306 4.479392421242168 3.023332020244006 3.0863681297228927 +1.1153049565528508 4.385601018610541 3.371537121000644 1.6545339495205207 3.693634554795972 +4.764452599640753 3.5002886808022233 3.5441563326418652 1.4162137254640972 2.4751262903406985 +3.058433332174209 4.181391082455169 1.280929635302189 4.611293224384152 3.5145918318346685 +3.5620264805665975 3.173108957946302 4.062882398017792 4.3390498606468295 0.4769961287223083 +1.8820041067901823 4.156302990292656 1.2108650869855406 4.2367613497009735 3.7852983507533224 +4.571361448591178 1.1964691779142922 4.270200468755397 4.095401571939307 3.379415998808479 +1.08207106994898 3.184686891891342 2.8039415977559843 1.9689952018148213 2.262328176630767 +4.707378699565721 1.687153272854777 3.5439299599780414 3.809403100750057 3.0318703165905143 +4.03333567129758 3.4449328728965174 4.5915226762082515 3.1823963922881053 1.527041170761549 +1.098173642495194 4.2848611057741905 1.0843738094731754 3.1870083491381425 3.8178592163687273 +4.832984405320604 3.605173128980715 1.8375331320266857 4.4896725072627675 2.922561170614744 +1.7730652623807015 2.2921457102740486 2.2560918881664067 1.6118079054140346 0.8273731696256633 +3.319186345836226 3.962588613515991 3.4556771781024396 3.0608712332181716 0.7548762893159539 +4.788257817904603 2.5760755733625675 3.0674401880766977 2.1061166026084033 2.4120309531688555 +4.39431945691112 2.567581318732312 2.6052215800614946 1.0580595295297588 2.3938844241279784 +2.3188956491511137 2.8320671081477866 3.0331861419203374 3.0993573784205277 0.5174201183455647 +2.937066926400371 4.333315484979587 2.959512047702103 3.2791960460444303 1.4323784053561672 +1.7705943864605689 4.579715985638771 1.9507893510364314 1.306513057416069 2.8820576159214255 +1.7714283064903538 1.7161705982564328 2.5142597375591067 4.419701694862796 1.906243024111191 +3.9387729741647814 1.2986643183410376 3.5595228326125246 2.655779027949454 2.7905065094033263 +4.041169381130299 3.159407669390673 2.7442583763416413 4.623783655253378 2.0760826068242655 +4.148838713839107 4.357464461669519 4.049114205482714 2.8102958261368154 1.2562625838824448 +2.9764799135323976 4.816700394218232 2.0465391775999553 4.246871047181786 2.868426703583879 +4.074899499663724 3.6894051536997607 2.7553293317032934 2.919179357227185 0.41887076961082365 +3.3358633063820387 3.9251592580893404 4.252939600809408 4.580190318210237 0.6740643520747641 +4.9723344963151455 3.8327574721138533 2.366394765802561 2.5594492871232677 1.1558139306522652 +4.580217817938157 4.568699981502335 1.5225068295828081 2.34243843660304 0.8200125003601727 +4.073646656092377 4.87100022321918 4.460156303931184 1.6402212048817266 2.930495977451754 +2.491214835035228 3.325114039694122 1.9347460964893544 4.008113513305135 2.234779704723506 +4.479492495166356 2.413278812552913 4.55391020902744 1.8351674248562393 3.4147915468886207 +4.488860097333957 1.3086389042475735 2.3193589461107322 2.590035089669527 3.1917193503890093 +1.8817544656594118 4.58826615522362 3.483917950684934 1.1883845637978436 3.548898287646607 +4.775257186740959 4.99232976578876 4.269161450500347 3.4054091448128774 0.8906113350698405 +4.218058236343623 2.612642000767311 1.2035400125878604 4.291311281259704 3.480185727384006 +3.985028712958513 1.239599187375367 3.179657452405145 1.2425173677687384 3.3600438966550485 +4.4231911386170175 1.7950659197627217 3.2591735058107183 1.7740338669047473 3.0187219005777424 +1.6267140424084459 2.231835115457876 4.334762563062369 4.77962780564009 0.7510503292737637 +1.2173839285555657 4.2445184264412195 1.5147851624372457 3.641297592820465 3.699405139324939 +3.111427863989918 2.6947096740632794 1.2022752734539965 3.9247752792410284 2.754207750211687 +4.487932605766534 3.441126652770434 1.8115518445681276 1.3061488278070117 1.1624263041497767 +3.280993661296875 2.0989351892547305 1.999617997325207 4.258444055600338 2.549422952918831 +1.0318475968058496 1.1547358024221324 4.000172809829431 1.004484305664223 2.998207985625276 +4.281186218275805 3.8468756038714265 1.8297799796434546 3.71272037369713 1.9323794237528302 +4.360577548170662 2.192684150294527 4.16259709894364 4.493110740372588 2.1929434675170167 +1.5331429802589573 4.970782027876412 3.6288140756262357 1.523509772417016 4.031087747843689 +1.2432978965977957 2.8044340625866537 1.541604456355103 2.225707855414088 1.70444817737661 +2.0724249202773994 1.6191384915878047 3.115182853079651 3.1478001123698847 0.45445843818524645 +2.5104174746034826 3.692643484162572 4.105450295888913 1.74613289135634 2.6389461822872256 +2.0102065973614334 1.7762427882616136 4.9075192701777866 3.4706326880572353 1.455809779417138 +1.817468175139365 2.3186667891292854 1.0441575163722039 1.1003016290368919 0.5043334334072274 +2.5818967550181027 2.3722902398236854 1.4592456016593274 3.401774121054355 1.9538044784151216 +4.719769862605885 1.6077806672554589 2.788164682914606 1.9795902447971905 3.2153179273525483 +4.1700504085160235 4.923359295398102 4.796468440846997 2.6059142656013337 2.3164632252081456 +2.8975859955384173 3.2657809803494007 4.785082828331147 2.5334098502626583 2.2815781264299884 +2.6404992047137434 1.5767373613005495 2.700598141501236 1.0143955312215014 1.9937072258523885 +3.673890198206929 2.1021383917740986 2.5546300501968218 1.2271935413934636 2.057301977330726 +1.3477524104127356 3.944826965954443 2.727641092896273 4.031007834667889 2.9057806370403316 +1.9777996937404754 1.1365270078946574 1.8655170765762037 3.989964242679427 2.284954155670142 +2.8007020784799095 2.17028550430322 1.1387555210649056 3.190846654609336 2.1467424338677286 +4.7516019649870085 3.894247849277196 1.3127470250712778 1.6098338359049573 0.9073679809734752 +2.1912637913143223 3.63286273766055 4.628721299463131 1.2341148681508205 3.688029330904712 +2.995362462176605 3.148849888792376 2.2034351965034835 3.929388528959083 1.7327646395121645 +2.173137199462141 3.675958879171826 4.2948687536105945 4.203639087656737 1.505588208294516 +2.6849388218885233 1.3797107040376289 1.7858223204630588 1.2878885570952647 1.3969819155344148 +4.658281619539866 2.6129992795611843 1.0115079746919857 2.4618345255977294 2.5073146899603214 +3.160976713142156 1.2509462635637218 3.894860485323877 1.528609070130531 3.0409475625569913 +3.1570796724833143 1.7941259032005772 4.14154280997568 1.020465994669025 3.405695738648235 +4.097487712581531 4.652237031361865 1.0557272901527588 2.7946779429321253 1.8252934502399962 +1.4628273260779943 3.053051572104661 4.419455570247758 3.777301862665557 1.7149852876373743 +3.4913702291704274 4.5716492399265105 1.2295840617291787 1.978576467619038 1.3145312339997182 +1.2993676863696328 1.2995637589586027 4.892514352242285 3.2395500116943974 1.652964352176832 +4.193028386703563 3.6539126818359344 2.469900157317214 2.5375428518211844 0.543342688691656 +4.109730465998763 1.016016848949873 3.531919810426897 4.322482937131123 3.1931260547648423 +2.5637000287280385 4.239165788303847 3.8514848496252463 4.52954922095202 1.8074724902951396 +2.7542244215410787 1.330725294418059 2.344634807958679 1.0279157553671845 1.9390974262211382 +2.759529297390448 4.606818657303297 3.996141005544422 1.4957866583284223 3.1087376603517334 +1.2890734304793572 2.629837717180844 1.2241406496890304 2.138702482809542 1.6229825073286823 +3.899524471730005 3.600156325083608 3.404374219858596 1.594493790818349 1.834472255077576 +1.0640514770187153 1.155788129459295 1.8005488209914149 4.564607981385284 2.765581070147513 +4.655997835918416 4.115301483836709 2.259467352763387 2.7667417337483067 0.7414039673201779 +1.7599610133641903 1.5988824761696327 1.2178930801748225 2.1038662922012583 0.9004969892082807 +2.1745363403212727 1.668189387332308 2.8265442628748345 4.187092070208535 1.4517153897516375 +3.7018405325502135 4.671970224324786 3.8257017392944137 3.77089587897901 0.9716765414414095 +4.220161136093825 1.4621041052648618 4.123411455790734 4.8240034804493455 2.8456471619510966 +4.670261605781878 2.4167591270000703 4.690748919014693 2.329344298280849 3.2641239566993927 +1.351649058796732 4.080825410517012 3.6008367854485246 3.158282998094851 2.7648250240277954 +4.211680548653989 3.2409071320532545 4.4857770595762165 3.87120242519774 1.1489573567370122 +3.1803088394770835 3.0450311218257737 2.5878890078722803 1.4597273832347821 1.1362432451714144 +4.04475044365928 3.1159561458531746 2.550908676684786 1.0962128524496428 1.7259196935791359 +2.1911428766423753 4.149340752912135 1.5848484486391312 3.8851710612945314 3.020930824252876 +4.009015459475311 1.4244679884223221 1.59007569767128 2.335218911572985 2.68981858855763 +2.2962939467628707 3.9808106537251184 1.8747325078804096 4.407142477283345 3.0414958144252493 +3.0020766276843163 4.15774404730777 2.7164275152981823 4.875171398584726 2.4486204970158605 +2.9259751169633237 2.9381166133897043 2.999779418654694 4.551224573585685 1.551492663435544 +4.502052948872213 2.4864308382071196 1.3684232179556544 2.1406465719944796 2.1584859048705827 +4.153335363819204 1.2422541739947701 4.601036649345539 1.9791116640663633 3.9177652204006366 +3.613992631254274 3.259679311356576 4.59269945037037 3.5420487104103233 1.1087853291036647 +2.612127275169238 2.6659866602661006 1.2391897276592396 1.7640512569573321 0.5276177198504088 +4.081794518326939 4.005885592191181 2.223322858032972 4.677348724489875 2.455199608648274 +4.651834968515404 4.041915398963017 3.992570778160408 2.944353423414443 1.212749563641891 +3.518407467548056 2.7093803538941925 2.848608693591064 1.3220189354740972 1.7277155900826735 +4.692647912529207 4.738230563367211 4.576592130448276 4.822344032199425 0.2499435441689296 +1.6924791998716908 4.505038229276955 3.929479842347124 4.625456130306673 2.8973904271414703 +1.7088556364543805 4.776286788597515 1.8093298299814715 3.7584966386350267 3.634334206026579 +3.0164339137497054 1.8619581572366974 3.368251858601228 2.1542698588538722 1.6752810415231445 +2.2245718011074236 3.5748635007906056 4.786701343985941 4.100031943586249 1.5148605677350537 +1.9802300558707944 2.789427006238043 4.269797605978221 3.305893424004102 1.258535250404553 +4.955013444345564 2.7705266706688985 1.5157490498550428 2.545610583117604 2.4150770675202478 +3.959540806136283 3.75616303336251 1.0170631263048615 3.5201152848755126 2.5113009829535797 +2.5097388011456854 3.9325570214845595 3.475061800613907 4.96089775443494 2.057211746465478 +3.8236885311792768 1.1455435755871624 1.887665533319499 1.4191527609658041 2.7188167685634927 +4.3731542883640575 4.8103874397036925 2.6409889258536823 1.6579222632356103 1.075914909173315 +4.585647989160659 3.7614110411284263 2.259504174139214 1.6363060876530175 1.0333162156385363 +4.244553153864496 4.048707769832237 3.778469555735648 2.0539361357298924 1.7356183137900714 +3.182593435251455 1.8757284706831774 1.5870856204380117 1.1289369026396407 1.3848452199564893 +3.722621993534159 3.6027354921510564 1.6745735568894502 1.9238776404677447 0.2766320648491312 +3.09560925169927 4.371510543704122 4.396917753728112 2.0287088577973735 2.690044141218716 +1.0293387164260617 3.558289397925951 3.984570692994929 1.34966502486895 3.6521664022031044 +4.37785092293843 3.7307044959050124 3.988054379532286 4.462221046878766 0.8022671166416995 +1.873485508714157 1.6788825997903478 1.3608342293019287 4.647056363023428 3.2919790710638934 +3.430970185964595 3.747582375818498 3.5397417261605404 3.108014480447983 0.5353799524213012 +3.840393098406866 4.640799835338587 4.877520983823942 1.6651790660504573 3.3105575876595643 +2.313693581759416 3.5484935660577874 4.515419432256859 1.5180161535435759 3.2417830612896354 +4.824741388202552 1.1279181530220046 1.0463371168769142 2.4866666140355673 3.9674993500385187 +2.4417479511715108 1.3502389314089789 3.958016648920058 3.118795789102624 1.3768382591196673 +2.726048862052893 3.035019966807184 1.1522923552924005 3.0377545608970262 1.9106100785708597 +1.7732175580761074 4.4729254394390665 4.43544815361571 3.11126453489442 3.006972713674517 +1.6897162928965606 1.3230609937808713 1.4984055184486462 1.9534128126125236 0.584352416023027 +4.859808780664158 4.099801592144505 1.0138934285394123 3.40839396859542 2.512218892320106 +2.748846828113428 4.529655209454221 2.8057788230350202 2.935390770642163 1.7855189016126747 +3.3025782660499923 3.5576112972943683 4.526131094675574 4.294149055294083 0.34475718066675665 +3.162339190146769 2.846892279780605 3.5484856157970257 4.638340631342977 1.1345883430435133 +4.173978059450991 1.5056427721011065 1.116487479501397 2.2962528476631 2.917509131027752 +1.1805932213817156 1.3982971760141867 2.8535367844713124 4.689954746087336 1.8492771402925436 +3.2302057038967087 4.828073391695799 1.5946940113408083 3.2642522718487146 2.310975104353701 +2.124577236521636 2.544817854259603 4.6497918201382245 1.3621787810582089 3.3143629359992737 +4.76519678313038 4.07622083325122 2.7353316280405746 1.9770945265257787 1.0245054229360864 +3.4087531412144982 2.405150278258313 4.851994351227276 3.853102765472024 1.415981322838156 +2.4920358259510667 1.8907682343886805 2.339363023219123 1.975422603603823 0.7028337966354444 +1.9788699534181702 4.8432544492563245 2.1535179659045127 3.9331618114274893 3.3722145182217877 +4.794176735413833 3.866238825363523 1.4171905420069142 3.5942841600348925 2.366602076092787 +4.940856931485307 1.9353060904652999 4.1605639759048625 1.5801033812721696 3.9613271435729946 +2.1171465064364554 1.3208595941291117 4.8533687048939615 4.588894496062072 0.8390586712794387 +1.321740147967453 1.4104739440201866 3.6484063274273044 3.314980502349572 0.3450311107577036 +3.395854400539965 3.273661824697845 3.7010754586329324 3.177837905041886 0.5373160737209295 +3.5773717228052577 1.7291497170037675 3.0485984436135216 1.2402121770416263 2.5857659352413784 +1.0819723498008185 2.5725260152332985 4.9103579701144415 1.8187712704146883 3.4321507180330255 +1.198741096120374 2.0699850089169614 4.448748080945249 3.807108892023881 1.0820197800154943 +2.018010179569966 3.6863507119178927 2.8304178008497223 4.5382299896290625 2.3874636340724114 +4.588977582416883 2.147277607884269 2.690708603420586 2.9613824218425724 2.4566568913081257 +3.9615538050748142 3.8904409586868605 2.439429664274287 4.387737591986284 1.9496052980300433 +2.325206650223023 3.0177251402907816 2.9542834745421582 2.49220568948778 0.8325249176610201 +1.5895941389224477 3.3665701636069976 1.9523791783048745 4.427154232223088 3.046662987565182 +1.7752816472948951 2.656462367088785 1.6202612049007739 2.9211763619570354 1.5712605470752443 +1.7147288346487661 2.5117777428309065 2.410726733590934 1.33818517553591 1.3362755538396416 +1.464454729757529 1.5595637187574947 2.6114701574331005 1.1051111312306405 1.509358551044191 +3.9966986020674926 1.5090334717162395 4.11790076142152 2.4677422332273413 2.9852137224891444 +2.898263345520624 2.3727892488701743 1.3910853360711597 3.2078479927325723 1.8912296467880467 +1.957705052610427 3.1117064351930948 4.476128140014431 4.360745191149138 1.1597553258733324 +4.622929664470201 3.3346989760715053 3.6452463302042304 4.974966034162552 1.8514029268711831 +2.999813607477241 4.6948291363226895 2.4068795374760086 4.607671652898983 2.777870331447302 +4.874683133054322 4.8895223700717985 1.8891164755216976 1.7046136048522031 0.18509865542608628 +4.720323612442927 3.569921251182217 3.057078683773531 2.2067425588960976 1.43055832389518 +3.504329003909796 2.2562526812410644 4.961227365968087 4.470610184661966 1.341044266905111 +4.615764949365971 4.509442982605926 4.3387494920844665 3.595301674761423 0.7510119957085384 +2.18582454512825 3.912352634513934 1.5179165577282823 2.72035106039259 2.103983834689645 +3.136510420503819 3.6252636086202776 4.658637569142242 2.4418673622805893 2.270010975507268 +3.6352259843722985 3.1741288380047696 3.6096963469146375 2.5219380126887976 1.1814519761996474 +2.5304502462389706 3.725372805755385 3.8674275548949613 4.529927573420398 1.3662892072279074 +2.229196171531489 1.475217485225592 1.995422287391428 2.3669245004977757 0.8405342073624847 +4.49813207254309 3.3816000708743714 3.2444691078300454 2.84700402049513 1.1851675857871353 +4.4770748363123065 3.15586296247907 1.4119628738639656 2.9636090997597684 2.0379418112141034 +3.7915476529529433 1.9504165568183587 3.624678882467772 3.8025485142000233 1.849703035367111 +3.4320034052217165 3.927093223018586 3.1760304489550832 2.183814141018428 1.1088765167599073 +2.106585510704165 1.6814349804247222 3.467315215254581 4.330195323672191 0.9619329783824225 +2.3506448533696256 2.9897025273677555 2.253679187029749 3.45259447250467 1.3585994893423563 +2.6896671032957373 3.408340853423856 4.3003780227244235 2.961464382971527 1.519599188549258 +3.3613438723706732 2.1530472463555284 4.916886844475394 2.711937555242641 2.5143154345721235 +2.1316241739667783 3.767897756040277 4.342328607959427 3.1846205698315555 2.0044149113737713 +3.201865235269728 4.771528751777515 4.149124786143173 1.0810531025793972 3.4462889331194293 +4.689110266839757 1.7367392438099674 2.560848795870979 2.892860511742753 2.970980719745937 +4.533146184803432 3.0958871295169668 3.434140596075364 4.563596303929131 1.827945236599389 +4.934791517609643 1.4955253378508928 3.6233183142376344 1.5981735242282853 3.991210753109181 +3.965525204139939 4.459850504857878 1.0057589715973299 4.151260929146421 3.1841074209070026 +3.002562579774569 4.059373297132577 1.5598643441998967 2.043627658876214 1.1622718429650463 +1.815311993442228 4.350359091764275 1.946179518792634 3.738542530521366 3.104678559291497 +1.8247461784226018 1.30077384620322 2.170075395439309 4.114158989714483 2.0134567356815234 +2.7696974493647857 2.4263521105420245 3.1472255652633767 1.4669516857968712 1.7149945573408498 +4.310740587942744 4.733468108755996 1.2983498444107138 2.2473326946307424 1.0388777631967332 +4.927422521227627 1.6371857308786049 2.4707271015841785 2.694735756997864 3.297853546515746 +3.0077903684197334 2.744238417257325 2.017134901955114 2.2627762196158385 0.36027668243116906 +1.7877298683474612 3.2403313063794723 3.095634881088036 4.553720924765702 2.0581705100744823 +3.31358646426601 4.793449995923625 2.500067874623955 1.3458267828140742 1.876770782581777 +1.1059683333606114 2.6711634582559576 3.8619185766447583 1.4762877841250748 2.853256044804646 +2.0337401173959844 1.0693688755171218 2.957890631127973 4.091805668525863 1.4885480187753561 +2.427816509751056 2.5367745666984236 3.0978641161036644 1.5546488886449543 1.5470569144133592 +4.890516100389521 1.1890777759934181 4.344090875449924 4.613443100358603 3.711225712668455 +1.064288543047668 1.855565570050692 4.065200241687883 2.3016595686745953 1.9329239609552424 +1.349990328379636 4.796006077258991 4.876073420847414 3.7006394197300345 3.6409709738622413 +4.161734584733764 2.6071941204980047 3.6896560519980306 4.2204781454657265 1.6426710412799503 +1.0235376512326697 2.4220598838396676 4.730075102118478 1.124998430998016 3.8668387915392923 +4.324777012658862 1.5816287644957745 3.2545678199022445 4.4305748527955355 2.9846029640162683 +4.960491579579966 4.600934133695258 1.2739159849142232 3.8544892817982594 2.6055018897483224 +1.1740407143226683 4.140049365978548 4.10260098922954 3.058121321151249 3.1445421127290487 +4.540712491200715 3.886618696081649 3.444155442797199 1.0974025564919918 2.436203563373776 +2.8238294555875276 1.6575238838640138 2.9134131353411234 3.9400909700052393 1.5538133938230518 +4.279811602913405 2.155235986676777 3.387594061585277 2.58114952037575 2.272481979500364 +2.082780128882633 4.229181099780954 4.3739663093975025 2.3507651796518205 2.949640645786781 +4.208562007257695 2.6882459660986773 4.4523830347109055 1.9058701539476526 2.965820074936878 +2.5457610773965302 4.506320802062645 1.5009666803580668 1.0273632447426078 2.0169518209936594 +1.3693267314557507 4.651245487175624 4.482600925051507 3.4636533978561888 3.4364581740977633 +4.673162899509801 4.3491265079650905 2.625647193007969 2.774110581101887 0.3564280581683244 +1.823922382869965 4.332762300007001 1.2323952484222365 2.094961292808936 2.6529790633831034 +4.785193940484144 1.0586863903479506 1.1252011732847809 1.2900843849204686 3.7301534813867048 +4.977141882923822 3.3903351568035727 2.23999203304399 1.9735073104176086 1.6090275614338378 +3.3817146404771 4.705406089049846 1.9124670911747454 1.4575963256067705 1.399666554716876 +4.642625906645279 3.891007443716202 4.522370198199168 1.077187651166347 3.526217959258251 +3.1251477307499833 3.3634761976526115 2.6927330283694633 3.73130875567047 1.0655702696091762 +4.228085619500048 2.5288492533173486 1.0069696352846962 3.939285783081917 3.389082799046095 +3.738809932237747 2.74745840262395 1.8580798067336568 2.55188187027113 1.210016181146546 +4.116733454175938 2.8900313578827346 1.2735768619201266 1.7294476030752164 1.3086696167067646 +2.9873184986374306 1.2507893184554804 4.548579903009486 2.2830206464966416 2.8545213851702758 +2.002745873133799 1.6765811338070038 4.718231920027838 3.695585905365194 1.0734003486516601 +4.588613183412688 2.776838595880195 1.7753671299474663 4.018998910676206 2.8838187743900536 +3.7188117545539927 4.073956344903504 3.3840332986332045 3.6968562898303134 0.4732714906647437 +1.1703330290177427 4.812555581034593 4.554823126248588 4.426812656192918 3.6444714018447186 +1.8070011549354352 4.180823055265264 1.161432810498999 4.934920735447383 4.4580535589219625 +4.611297150521838 3.4203896175350996 3.6132137165261486 4.628006252253691 1.564629234896528 +2.7389528898916358 4.926336349226287 2.3627961526716876 2.375716161706647 2.187421615693758 +3.267279854646793 4.994293683684996 2.6963464502901875 4.4032819441193904 2.4282103586351695 +1.6485854210753073 4.149678004074093 1.9159754021883484 3.5573708734674843 2.9915954275047274 +2.8605276288411825 2.018470094091412 4.9222272275655925 4.881346720192482 0.843049291389266 +4.9778257558543615 2.273414353250509 4.120345600805749 4.6357182161476125 2.7530800873163948 +2.2389844109506685 3.186424124374934 3.766962393457809 4.383056380934863 1.1301388463276674 +3.0962465802670955 3.0590098076593244 4.079080074582306 1.4419981429671362 2.6373448184273207 +4.979684268142718 3.05557296114749 1.0360758479026684 2.0237347998408954 2.1627932233689378 +4.664771001820672 2.1237235855973275 2.910906933224916 4.992472301786311 3.2847886317219057 +4.19440568313732 3.4220633985393696 3.9613584313906345 4.2509472584679795 0.824848042578761 +2.041505490308831 3.9136700520456964 3.7577565082900315 4.3685128933839765 1.9692697905966088 +3.4608291680212315 3.489609198508522 2.9245892831540643 2.3715162088393478 0.5538213752526904 +3.9432322239966195 2.336199939900137 4.876280223073544 1.0076783177929296 4.189108910456872 +3.746249213634511 3.1645775631050044 1.7113942536658744 4.355123453141271 2.706962502361003 +2.932398425064903 4.11582546988699 1.607949739547414 3.052441412001891 1.867365995783009 +4.329163164029099 3.3506528343288324 4.054743045483169 4.2505999170715825 0.9979190245097669 +4.2330641740255555 4.923058455111459 4.850306327888637 2.357993612236556 2.5860616350992687 +3.6652673449054705 1.1627101018179213 3.4462698440889694 3.149354661852495 2.520109398492945 +4.3807343139643375 2.7341788788215946 1.5970907876061595 3.540462679907423 2.54712369404878 +1.1115352855038614 1.3347374744199354 4.070422921697682 2.5837901419423672 1.5032951270392458 +1.7186893631601685 4.492513764356724 2.3654915535739094 2.020972321088701 2.795137798074655 +2.9665226654978927 3.3460922217815656 3.8508949005195197 3.7905802088787004 0.3843317708505393 +2.7900237525334424 2.0979979854938646 3.2715490595703485 1.7660344871012743 1.6569471295619107 +3.9732363711346443 3.6349765726188616 1.75234715944103 4.005556500976514 2.2784582568207625 +2.01122460085492 2.743564972829556 4.869754422879707 1.790737326307966 3.1649121159054356 +1.494999513300856 1.1246938812069907 3.3433984518491506 3.6126001394889866 0.4578163494116096 +1.5605294266720553 3.778569365310079 4.227767776877629 2.3730022306917107 2.891341626427378 +4.033318286772665 2.6909635115279116 3.4932652317171393 4.614909353997797 1.7492861057211708 +2.6115240653219827 2.437386927631208 1.1565621375108086 3.4263032599117196 2.276411321672971 +4.677776856554409 1.4695953047313774 2.6791474108147386 4.162150681362029 3.534363814028148 +3.2568948456862965 2.7851601114287514 1.9458861899852034 2.0378739881616412 0.48061982326823116 +2.688942698525767 2.7068532891029116 4.396364088318844 4.5882764807099505 0.19274635044041732 +3.0671637355868255 2.399223510251581 2.331251326509592 3.1121081945798847 1.0275609923666058 +1.7224173559707396 1.925813473960818 2.791473609181234 4.183172238681723 1.406483222853004 +3.8808679784509312 2.669727374868188 4.843700668944127 1.6370721393806766 3.4277292903986782 +2.8023648851458396 1.2913353774352458 3.600463350145383 4.5025613342559065 1.7598269648202318 +1.9150345239902484 2.459588462082558 3.15653301313114 2.6995687589845594 0.7108834792422623 +3.19932516171617 2.7769717830674034 2.5759380263625813 1.2732204056155534 1.3694727364430537 +1.0346259342330613 2.9320431853614832 3.5734822334600347 1.6205257901553245 2.7229085725240796 +4.363570658505962 3.508492014563359 4.882684696468313 2.1498853165808467 2.863451053892844 +3.310345541952996 2.0134253421050072 4.516710155406873 1.0837592135161223 3.669762141365887 +3.8464755680046037 4.702285157327429 3.843972628761216 4.04722102109106 0.879613530001426 +2.6042458614696313 4.779562694634789 2.215945995600976 3.159501212371618 2.371138918694302 +3.8551007092455087 4.571664767732979 4.44228114119757 3.6473116484972805 1.0702525609594162 +3.5754124585195735 4.830328053991943 3.4199330008238236 1.047880281927534 2.6835512391201055 +2.341167379756145 2.1519852736546743 2.4883633304856527 3.9056813007160063 1.4298881417813345 +2.855770436782317 3.430638021527299 4.025493829012099 4.042665321557781 0.5751239867600512 +4.116334707150356 2.9563724181107975 1.4122422964602581 4.608011251606868 3.3997723051217337 +3.587540452454122 1.1967154391128911 2.6309713820546694 2.7013326805667517 2.3918601457331077 +4.117161112216182 2.901736964817008 1.9273641743040972 2.826228129875895 1.5116918564003672 +1.8778641445573907 1.6970770370596977 2.580703462530475 2.213164558949421 0.4095959275712416 +1.7174466305024616 3.862411860932861 4.208942760697737 4.264387083899393 2.145681689517489 +4.174503793332347 1.8357230393560235 4.5008338297297525 3.823546820159835 2.4348743516868017 +1.1529126020051819 4.157394043961422 2.76208711418569 2.4042579510130144 3.0257148651312646 +3.4436767544385893 2.259684227259057 4.542740182706097 1.7027273045023579 3.0769321495249224 +2.041004483466468 1.4175016843315942 3.0716633275104286 1.731575432040315 1.4780363013520814 +1.9901945433609054 3.7057916955135366 4.5179875982947575 4.486426676606045 1.71588743227872 +3.528784100300975 1.6517803004859757 1.6088840794132238 1.0277825792406885 1.9648975082743418 +3.649585080352211 2.4204558854191616 4.449240187712028 2.07470182386848 2.6737971163125973 +1.731150901177298 1.1248252168827482 2.734722655149708 1.453033345769608 1.4178710523931615 +2.107979497755115 1.5772794814305033 2.7796660327707916 1.625495176288295 1.270335732505578 +2.700116429700505 4.155452238765073 1.1337417394162346 1.8271220933185446 1.6120727751324733 +4.399125695500306 4.823926855203034 3.0455021643753337 1.7545777194002934 1.359022423626225 +4.713458371861755 1.6116959832414155 4.5982147039891395 2.903029159451232 3.5347678772261744 +4.658786781055169 1.013758776728567 3.445293274970152 4.032754673926772 3.6920644695873395 +3.9610615812704397 3.565914131581281 3.160995309565799 2.137684479350344 1.096953309048334 +1.8393662194361249 4.253251341235991 2.5366687728873942 1.175272295051209 2.7713249089761245 +2.2671366577853926 1.7500384742590813 4.045581335021641 2.5030012513654243 1.626943098543717 +3.0552358461999023 4.9801465747332045 4.873104450636442 1.0575295886809841 4.2736275972537685 +2.7252168436864306 2.2526283547617805 4.387261796825484 1.0153858157001334 3.404832963884445 +2.420946606352709 3.5600757987690526 1.8170590101219304 1.2973846963220468 1.252068971518139 +1.0735387613467675 1.2914529912504067 4.957218523269097 4.2701439095659754 0.7208038126909355 +2.9680623474128107 2.9052241843164284 1.8195376226382107 2.7136206063007915 0.8962884671891691 +3.444888255913657 1.775729465860914 1.8761061584562433 1.3590872791542492 1.7473979477969601 +1.725466014732969 3.3974050925584884 1.774238860472929 2.310428299757894 1.7558130295566137 +2.7219331621992233 1.5909791413518666 3.376270086271275 1.9327642798369733 1.833784613982882 +1.9906953096270872 3.498834764250479 1.6083736799477029 2.5837555248482116 1.796066356778964 +4.764101533586988 1.3435769443473071 4.3853904005150905 4.436455985453914 3.420905751341073 +4.430426833011276 3.0451556608335935 2.9840955041553805 4.26856863310395 1.8891393382854156 +4.092887541573189 4.131311379536742 1.2711501550946553 1.8096744198386836 0.5398932996823961 +4.573817563746431 3.1454170879258685 3.9066075574334467 1.910682548752447 2.4543929105998203 +3.1130564951737263 3.9617974683155706 1.0764926617306037 2.484012409046307 1.6436158549288291 +4.189779005031598 2.7237037996568767 4.542575330967749 3.489168214707609 1.8052819891645833 +2.8554105626472706 1.054237234429623 1.7882462801017631 3.974022580492846 2.8322858954621735 +4.843714070990087 2.413436135029397 3.4106921419378224 4.124780981931055 2.533016722688627 +3.1611036627420286 1.511814120838869 4.498062226706244 4.019469285663266 1.717325594128062 +1.460343659960262 4.711696379900792 4.692639068754042 4.617223485048852 3.252227239866593 +3.88608447622149 2.329278901597682 4.611844973212124 2.419435709020351 2.688922084942901 +3.4582141909357915 4.12455079323435 4.322863430191566 3.5409001036673464 1.0273612371467062 +1.4845186562168635 2.3184579620039516 2.2813686928167662 2.8288495951886543 0.9975921532362749 +4.170751710852807 2.961214603997932 3.8544833772325697 1.9805103867625045 2.2304158316040934 +2.4671453505151923 4.2325670988176975 3.1980189494112388 3.9754565110470392 1.9290212833511435 +2.8072337871558983 1.8809361025390348 2.422272931064156 1.5749940592375116 1.2553520968917022 +3.323954552603097 2.566256797346383 3.444233828345793 2.080772562536073 1.5598501568049759 +2.816185256267262 2.7750659240780053 1.6662502979523288 3.627272872928995 1.9614536290842575 +4.697694329991749 3.673199027646938 2.9609858750093188 4.5596332922845395 1.8987533250233741 +1.3125360188803037 1.1604407713119782 3.9303409717266327 1.8319134370123948 2.1039322904456177 +1.3784825308138338 4.5910754107298875 1.1347097164883446 2.1090725590152006 3.357102316132819 +1.279728403286303 1.192067607020988 3.964191810193173 4.129843434426947 0.1874163168274218 +2.816632103178331 3.7206367541586993 3.6642551752796115 3.2644614151494 0.9884631807170111 +4.2137791477798014 4.299432297119716 2.834678685099864 4.2413488094641405 1.4092754524119315 +3.0993179771956414 2.0969074152355427 1.3037009093527336 4.677225894143569 3.519303589879277 +1.9108261975888525 1.7521225200177848 1.4582429430953017 2.6319430549996974 1.1843811928424786 +4.052108463878865 3.7518761170634356 1.1467288854268278 2.2698744718249526 1.1625813822351911 +4.364345689597039 4.121365623325675 3.5841187303025777 4.068141376065213 0.5415876976227384 +4.282137882852565 3.5704827196650615 1.7910939522020337 3.0084841360575103 1.410138975788948 +3.2248983165234226 1.815994590253549 1.2555182127987599 1.967280766230684 1.57848523666364 +2.8869638425571345 4.324715575091162 4.483816990201009 1.3362252265910741 3.460413841544057 +3.3761161304992164 2.8356817143520217 3.0005834895841597 3.9283951056651842 1.0737335577745728 +1.1938128421757814 4.622006703639629 3.640682079983601 2.026423488713255 3.7892405507262965 +3.490424841041844 1.9924500859174534 1.3639987827228923 1.6260535355187544 1.5207238606837463 +4.100155702925193 2.6173245409840784 3.4347648118474337 1.6780932215160793 2.2988439118611175 +2.6290147637966013 4.065436239887182 4.138971045420552 3.2639521387589396 1.6819526580702346 +4.247814789643871 4.6338209996669795 3.0932597297220696 4.7592548039423 1.710128761673364 +4.494038972984236 3.6556443499738283 3.2521922167915878 1.9418742170991496 1.5555831074586648 +1.2980692449406277 2.947200895007939 2.9322951978954417 2.129756274035344 1.8340403276820976 +1.6827189102951001 3.6689422454847485 4.772165658539002 2.2774710246272893 3.1888217971093624 +3.837762969915819 1.011644818315042 2.654942295743291 3.7721447345671564 3.0389282808453024 +3.6896605127597106 4.132920034197268 1.2271998550359915 4.883683158683356 3.6832525236802587 +4.730908388240735 3.3204742677211128 2.1049393170646193 2.7953985658813645 1.570368868324428 +3.7309523281452996 1.7697053986021563 3.8803083416616593 4.73219957096172 2.1382722430038643 +3.4235756580392374 2.906493963311204 2.057614543476371 3.6856133451377078 1.7081433128498216 +3.3808624388956736 2.762541958782863 1.7693390943225955 1.6423008007240378 0.6312360447307884 +3.724406654220662 3.2021057133236512 1.517490299095348 2.7547818339019914 1.3430147486033361 +2.987656174761957 1.6149940960292462 4.789310787045893 3.584815485416887 1.8262010059238158 +3.965799229948803 4.225238428690712 2.325855602084827 3.4545029546491306 1.1580818383405618 +1.4285181911992693 1.7149014779419094 3.3147014060845734 3.6756224940261983 0.4607379066741561 +1.6881340208635152 2.344289882328015 2.8635145361108396 1.0384301229873594 1.9394518889522623 +1.8078371350401783 2.285073707229798 1.4324158209062925 4.285360929112008 2.8925854414814127 +3.3341451975632146 1.0126728611192948 1.8925255269978432 1.6950520077173747 2.329856132831254 +1.9562267904579755 3.684001359281392 3.9636623220795695 1.8865111462551334 2.70180716704612 +3.09380016399644 1.1697024967621252 3.022175711348891 2.4966152486408206 1.9945840751942379 +1.144505487241203 3.9340866390676132 1.6330063014249894 4.055039498392354 3.6943210214919215 +3.614676500809246 4.926043386445529 4.869357429240106 2.8476239035159088 2.4097903555663502 +1.8178567205478187 2.8899347215102167 1.8823731745230363 3.418980738557386 1.8736365832239477 +1.2158813405381932 2.2828651429159423 2.379764450166292 1.9722360706812219 1.1421619038569826 +1.7679231152357575 4.7312934812581116 1.0236370047391885 1.2319655235819713 2.9706842137768006 +1.9354558676995834 1.5008362793091954 1.135648242613807 3.6941720592527325 2.595175968392364 +2.615114147429982 4.180660602153381 1.3512306799212497 2.3173748665901153 1.8396658096869243 +2.4319281609958585 3.934820946375657 3.297354535105378 4.6045594756581085 1.9918512697870083 +3.272757168777794 4.278142704936895 3.429638529231825 1.706979259713954 1.9945814185371753 +4.916962408786649 2.090926356821321 1.2695105875052137 2.8180403701024765 3.2224872776472684 +2.5979868265745303 3.303271718999329 1.6787823064516987 4.425347092443084 2.8356736242259197 +3.2136740037368594 1.3900754649982896 3.41576422269966 2.277494871083878 2.1496903840593555 +1.8111252575255237 3.6452378992552634 3.107024663982601 2.8981935673686983 1.845963057448824 +2.8083265363652026 2.6474825083451585 4.210478965474627 4.255984966570524 0.16715740332229534 +4.204532618929376 2.6327847141243232 3.081334613628638 3.32724496515796 1.5908687492211127 +4.097242291643506 4.095523173528992 2.966962242001975 1.5821764070878879 1.3847869019982089 +1.5470687208693596 4.38111886355053 1.816115053630043 1.3552510436262213 2.871277737688913 +4.005353543782526 3.8148365525521353 3.999291267155219 3.1249464285552375 0.8948606711292596 +2.784189730872187 2.786296371214982 2.983708296544702 3.902655998227829 0.918950116362273 +3.6258949143391628 2.3807513421542468 3.299309055078033 4.8764352753245985 2.009405292603419 +3.9986547166141775 3.4979160938595117 4.101143169412736 1.7687720023518998 2.3855176438783605 +1.1513455422925851 2.5551722424554133 4.622937930150442 1.8549559494136916 3.103619443452016 +2.292734619068484 3.0386640857981484 3.534342922506047 4.332201079936969 1.092240087487484 +4.167010568531436 2.5392274061183397 2.2387305733923024 1.7482361837549085 1.700077283567232 +3.880024134745254 3.870531744412529 2.5831447489484205 4.621969787882057 2.038847136216194 +2.814469648447293 3.150777194451622 3.3961497910786957 1.6375169279797754 1.7905005760040849 +4.141432470833294 3.6541446472469383 3.13593586676582 4.447862925631867 1.399500636227238 +2.8041287549223606 1.6896554770436474 3.1009562671996562 1.3287029037848117 2.0935454786655465 +1.2885802663816537 2.3357475209445933 1.3023092118480526 4.976670459742934 3.820666151217679 +2.457904404943248 1.5704219212461314 1.5586603962336563 2.9030961021440937 1.610941503033583 +3.3939157502816775 3.4755938327772404 2.763113686545366 4.2693476354309805 1.508446889332105 +1.5347732265382241 2.675225094698911 3.920763649521661 2.1585050884506134 2.0990916367942107 +4.612561520178333 2.293501936918525 1.2540357641803745 4.036805994776703 3.6224090750496827 +4.198410975431596 4.710418805974404 2.883982891234142 2.660742696431661 0.5585590417427713 +3.301857211058504 3.987915894221666 1.0349966720591728 4.981987288900784 4.00617166958423 +3.6404097309269066 4.204053731921425 4.605436587973779 4.573903867432858 0.5645253513544103 +1.2749707765413594 4.555852498304402 1.2797812752354272 1.0494953757324872 3.28895370409933 +4.924287115213773 2.684312798845357 3.8647287023848342 3.39499161555034 2.2886978544006005 +2.289870969122434 1.8089287147299302 2.1056191539713747 1.9220185934661376 0.5147957049917773 +1.9687844166334822 1.3141455795956172 4.619468567399213 1.3046333603110671 3.3788584547313314 +4.083423471182963 3.942747246938083 2.352131197130731 3.350625184712896 1.0083551176572312 +1.9046843256398471 4.935616011571829 4.013788920946099 4.770881855184861 3.1240577132730354 +3.0647459631066045 2.494900002556027 2.820345952744257 2.836622384547594 0.570078363901016 +1.6798519066170514 1.0495997112393143 4.734917922360616 1.1674755672949257 3.6226872327728064 +3.6203711468194992 4.950249017584467 4.893398062580552 3.768986447344467 1.7415156133747938 +1.2673619033791907 2.954084575763233 3.037122712166886 4.874485568649234 2.494180354327918 +4.881507347528254 1.3081722232415811 2.0920515052597004 3.4527651462690327 3.82364558024011 +4.403916679345107 3.6491067089351708 2.8124353963805837 1.1657034602538352 1.811481206330885 +3.3133352142560692 2.8917323124163405 4.1351111608428255 2.47589211110768 1.7119453442921826 +3.371274295585881 1.4811903043255708 3.3613986725633005 3.686504608379655 1.9178402862390633 +1.6974158707989044 1.1393328578328603 1.811903009484379 3.4825081659715003 1.761356930960507 +3.9333326698379474 1.174132426712784 3.9053960425759224 2.760144168364402 2.9874383402920572 +4.151920045772474 4.218136152324192 2.5281232216726295 1.5396148322198098 0.990723679330153 +1.174734478140529 4.448161637188173 3.148747554872307 3.474867733744743 3.2896321582600265 +4.052103417388192 2.0478990861975532 3.846626162738845 1.2354123114390285 3.2916975526896968 +3.5894657787415247 3.893057725565667 2.9095951121097534 3.0738600644036 0.34518262518349974 +2.1791580317034347 1.5212166458503442 1.1960851676045667 4.226673673353027 3.1011858309996465 +4.663228532523672 4.848610372412548 2.7317619493242815 2.036260833733468 0.7197834593463862 +1.5042937576531505 4.842277028058287 1.8029178520000126 2.8384562255952313 3.4949208913354255 +2.601348707016544 1.9291401408358273 1.586146085307099 3.9360935210241244 2.4442007501593968 +1.570628415132616 2.969932681813017 3.1517316736557617 2.0300525053380434 1.7933813279355575 +3.8253362776511177 1.705225611205567 3.4173010311212666 2.428297867274584 2.33944362959977 +2.738012476145333 1.9565708058149411 2.3643804018231647 4.592214606932918 2.360910063849481 +4.7342172957633615 1.0001830216687462 3.603928769423855 2.4661242706163082 3.903538271571062 +3.2281281576978937 4.345737157222663 1.9922663832121752 3.19675297160226 1.6431183211900298 +2.751537101947859 3.6370450494590623 3.947547666480776 1.7294094332354573 2.3883595932962374 +4.557928936350745 3.6138214544124705 2.5246862856644343 4.742648494265689 2.4105383830661533 +2.0566369953795376 2.4162273621075068 2.9247945059042384 2.158219554151511 0.8467245056677243 +3.1863878370712135 1.7171760722067848 2.7026029941554457 3.742416709979097 1.799943269559082 +2.1891904402916573 4.006123124294471 1.798388358323666 4.831881914602176 3.5360044590159827 +4.256931301017549 2.356435369354085 3.7735048996740526 2.197375613291034 2.4690217321165124 +1.897946280677564 4.472543146838968 2.3990246402323856 3.5279068372104647 2.811213979387228 +1.7556457531812053 1.3986544528823956 2.4940322069222085 4.155582660207351 1.699468357252084 +1.1163636603873126 4.217688347773664 4.070014074175746 4.87367141026368 3.2037602798024705 +1.1794493470198955 3.7084805894015234 4.685982907580385 1.82503384777353 3.818511299937724 +2.1232391166525217 4.157182823189457 2.3029518697899083 2.910973339504439 2.122879438167656 +2.5669911196097153 2.5002040541836807 3.034973346662651 2.4176033712503626 0.6209719789562094 +1.1058941141432914 3.525467203534991 4.1049925026482335 1.8600273560934673 3.300636672545792 +3.8670562803846447 3.2210267694131907 3.9902384798245456 2.2747272742602256 1.8331210613221274 +1.6110021980478626 2.6765454321875546 1.2393505732152068 1.7355859322088043 1.175428396516087 +2.4110839203962975 1.5638531449858735 1.417930424621952 1.7554611912600175 0.911990682644197 +1.6238913307176408 2.6383269922214185 2.1352564704456745 4.06786464627101 2.182671315749932 +1.64113022680989 3.002616886249194 3.373753469413023 4.306443077651323 1.6503199172120873 +4.034415311034609 4.456494901444016 2.381567021985765 1.1515754460087728 1.300396269455791 +2.8718492891517577 1.598930433463932 1.5438345668242937 3.608273565556165 2.4253310686689056 +1.4812747150321655 3.3823477616665434 2.521591043541586 3.218642737932665 2.024835744768743 +2.908805459554791 2.0391621533360333 2.2110371804441145 4.068836589922347 2.051267443779275 +1.849643370785699 4.683666924654165 4.331713039760476 2.9735237298824813 3.142668882550008 +2.3569216372413018 1.3947108862109943 3.678925776479683 4.1951979486218605 1.091964507265099 +2.4745287565568654 4.553717618231053 3.2368114384737443 1.1769583089108715 2.926776595143532 +1.3319235382291699 2.7125904341092726 1.6702048855281357 2.400191846939185 1.5617688821363216 +3.973750596363481 3.4986658914608544 4.4449667786302465 2.2570562922162622 2.23889655263317 +1.988019103086331 3.8725222809729534 4.728276111416866 3.9463957707967063 2.0402669174676817 +1.2946006042612686 1.228647533413041 4.024046226006306 4.310058274664686 0.29351780104803665 +1.1786261873943285 3.0240418161129567 1.9098550585077607 1.3187138478732803 1.937783985285607 +2.4363095829303134 1.7110943483043597 1.9190959455600733 1.6521495741769794 0.7727855470492301 +2.5292007365456755 1.5453412221126182 2.405818527969404 3.839238704626363 1.7385836036808004 +1.26729470800697 2.185032869263679 2.6908412971441042 3.156589739043412 1.0291573950365793 +3.876330262800038 3.713318648103682 1.7592049244092527 1.181706131668225 0.6000646982978234 +4.331101976097697 1.9427522008358533 3.1916381431855414 4.249273413917008 2.612050346928352 +4.926666894483773 2.183882805318092 4.916213942569429 3.9610004858915038 2.9043583297518585 +1.265789077694873 1.4038156739658283 2.380416654578772 1.7115691453252757 0.6829409432101365 +4.3168316182099336 4.795724271154891 4.215162584759495 3.3499155449451825 0.9889340791741837 +1.1695252851996436 4.003835712743697 3.74891250450993 3.383281753763813 2.8577966067542535 +2.6865335059858344 3.7452930552480477 4.116378259022937 4.315274641093641 1.0772797008923636 +4.521142109606616 4.433803713445384 4.65825716187527 4.46474834479293 0.21230557631071056 +3.534001845190781 3.769557184609528 3.584998421841237 4.633378076994738 1.0745167375469098 +4.413104143185336 3.0864823195845945 1.2059271255397523 1.1195536485583117 1.3294306451935056 +2.9968309046641433 2.031211065904622 3.4433607953938115 3.562699210621686 0.9729662534513026 +1.8076682190651234 1.6519217340000893 3.053923250158146 2.062079979208159 1.0039970327341021 +2.725006623645287 3.893199052026147 2.4228116757137763 3.6961677644801902 1.728036249192959 +3.4902979422894314 2.314528910538637 4.876961205341687 2.639667640036609 2.5274325536757076 +1.962053721522381 4.153110446498852 2.0867038376117866 4.02752883119798 2.9270345450290582 +4.090481618818645 4.533572232492707 1.889404456240234 4.8144509788564775 2.9584162065868007 +2.880408880344115 4.1329179131520775 1.8601619046685332 1.9847232773423147 1.258687575543635 +4.071969418837072 3.9568981635856524 3.634019293784819 3.6721714756475468 0.12123111302806712 +1.94969508648532 3.0172091849532605 3.5674858738132653 4.669714283910699 1.534435993599517 +1.1365149988664505 2.718709694678995 3.7206123493320638 2.5286882645245345 1.9809147077553884 +2.781093440719536 1.9307601595479973 4.533017852278112 1.5303824377174728 3.1207188469712706 +1.9183860607440382 1.7877010273769076 1.0139312890838204 2.379811809882808 1.3721181345074782 +2.7124384732580826 2.898531477141993 1.1540700907532928 4.653076351879662 3.503951401132166 +3.7721086618438084 2.7184379071753804 4.648578586052164 1.0819740077463922 3.7189904916838956 +1.403769721856829 1.1844573155565645 3.833259930536784 1.8664189282572043 1.979030434279714 +4.032977364672472 4.053977505165763 1.2314938465817877 2.830515118727222 1.5991591648970847 +1.8165905317616091 3.7203123056521603 2.254592314658773 4.531636124933648 2.9680102941694977 +2.6356112629246953 1.0919436887577807 1.2911768360903788 4.660732139533182 3.7063206178761554 +3.7438371257789025 4.737497440887214 2.5546899589635617 4.245756989308506 1.9613945352582227 +2.7448663697568714 2.26834726735118 4.401562059121611 3.301077051599277 1.1992237934343017 +4.725818420658307 2.0492611953677 4.789453274054406 3.6545685614868457 2.9072189272696516 +4.67389400523452 3.4593308601287744 2.677768115066581 4.700687061935778 2.359526371764372 +2.2593835244727956 2.5391532606886105 1.2042873464237451 1.3114226720971658 0.29958151363095914 +1.5840263382788837 1.2155001712988485 4.8472884471217785 3.8954221913796907 1.0207158784742494 +1.3152977050041899 1.0869999557633871 2.569862769118138 4.492855213144189 1.9364967859745341 +1.8084924138312544 3.186311434225728 2.0648859849259686 4.764267819772298 3.0306843357992803 +3.0704165567119626 3.452041412505107 1.8132309830116724 1.5826106583074258 0.44589602456831834 +1.6194934550185245 3.704382687136608 4.4552544140945844 4.746538308488699 2.105138811892302 +3.958981342700499 2.188008669665646 3.225591206950857 2.3398187746470622 1.9801356040598819 +3.7231011808451164 1.3268799975740917 2.349559753386594 3.1658939926927077 2.5314575938419908 +1.8197778017468718 3.4681067078458856 3.4933085333465654 3.4816701575316613 1.6483699931972737 +3.424077565876485 1.8620806641741017 4.5652088542294775 2.4498387671013053 2.6295674409386223 +4.296566856257856 2.0818252354258364 2.9678542939319863 3.862111969405604 2.3884675499552257 +2.2359604948408833 4.618666153915701 1.539019728083848 4.482997424046143 3.7873857648925364 +2.2623969124299452 1.579385417428187 2.8722145327475945 2.5978330974339072 0.7360637705724525 +4.037641404716618 1.6969332984339305 1.3965010294862128 1.0907715560381086 2.3605899579876937 +1.4892602889709754 4.128761968735361 3.107694344138654 2.416620216947455 2.728470737748912 +3.02267985659116 2.3848519435961215 1.9146478696245968 2.240403957997525 0.716199326799207 +1.4614477143861229 4.497562634228604 2.0496103478332417 1.5490679411569337 3.0770987158964247 +1.5936393697838702 1.5832308306662086 4.2105623965150745 2.766667157886851 1.4439327539119742 +4.017051177955653 4.91369098572407 1.9302459901493219 4.571850751041762 2.789630559347346 +4.0446515022964125 3.2508441976384885 2.9198098278229443 4.507299614454963 1.7748954503263707 +1.0561417190904883 2.3090436457107604 1.36850193946472 3.4109375218045943 2.3961023237200894 +1.9404287392581492 2.786082287861799 2.7960809814085628 1.044683720554727 1.9448707642391727 +4.21314983603401 3.5203094420577696 4.273342877166709 4.472380178195655 0.720863134531125 +3.393595019167269 4.335149836508359 1.880179245299788 1.1802049480914016 1.1732388890633432 +4.029144489408566 2.2436991770583727 3.242723586321382 1.481385603720796 2.5080124505960453 +3.2110210738767884 1.411326286922098 2.3269912345948054 4.81855048468061 3.0735596338577893 +3.6904415836563658 1.6446970269304808 3.238979817407328 4.4160578491163305 2.3602083560790827 +2.683598522410571 4.218082510490814 1.2603800246502628 1.1932176675927426 1.5359530890883903 +3.644752509278711 2.551605205695465 4.168751179342589 4.0719430411345705 1.097425552351787 +3.440717350148018 2.9848461725162507 1.392222546690049 2.4605196842018056 1.1614978711178023 +3.1966397276638836 3.5240152977991537 4.937370981317546 3.2979111225128954 1.6718263643552094 +1.563613557317105 2.819403640863783 2.6167020114282784 3.141098692360163 1.3608822920835397 +1.7902485968412298 2.26307333891976 1.6768278612163932 1.7269802323370107 0.4754771256860301 +3.101313695346892 3.0478504614117945 1.8399637386371461 1.536089883567421 0.3085411434115963 +3.56140456529645 3.7680423804527923 1.3677596131884506 3.741252553295117 2.3824709701041007 +2.3845012063106665 2.529907651975629 2.457168702465479 2.9645257535568086 0.5277823526161214 +1.9161429174153777 1.2877425726946665 3.0326777232335314 2.222637683507057 1.02520820285695 +4.30018274986549 3.86028089256026 3.479315988397065 3.7201173155725744 0.501496683169568 +3.9318165853723013 3.287154900005401 3.3675897099348124 1.7817966724718852 1.7118201559293516 +1.8324804828036032 1.3670057484583245 1.4622880237932372 4.174124335377764 2.7514946682016626 +2.916039921609299 4.803012564770814 4.100789637403388 3.1732291887464363 2.1026255353611205 +1.0659214724824992 2.418283404352577 3.4012429251215703 4.570305701897395 1.7876214842114002 +2.1290448255482635 4.35734145377889 2.898547499842747 4.180753263255322 2.5708670683472534 +1.944378710693964 4.926185882845317 1.6643438691881247 1.19250342885519 3.018908314776523 +3.373501274388253 4.0337477832930695 1.973675098459176 4.173460504349839 2.2967327411979275 +3.1763513198560904 3.066729558520032 4.005305480313824 3.1169951131398816 0.8950487355374144 +3.6600769669899726 1.1062147519818355 3.074477446545662 4.1724070881303135 2.7798672110581952 +2.4009900517833267 1.4139460926636356 4.3570119860761425 1.9042564488537206 2.6439110239586214 +4.662832732152312 4.263337041874308 1.5837678039486862 1.2317392781240977 0.532466796659596 +2.0872735266687403 3.8682835454909483 1.0432599224976626 2.4643508182271834 2.2784854665041014 +4.235612618376965 1.1935516839215854 4.69815608569883 1.2357200233811132 4.608969322373252 +1.799272284112225 2.9315989541007936 1.2068180618915076 4.508614440678248 3.490561991218124 +2.6586235129027407 2.6368248899010287 4.290992688486433 3.0157721354237155 1.2754068523096287 +2.5632385366945765 4.349574714549004 4.161584170890125 1.598951470173097 3.123793094796102 +4.212898802918968 1.9514795421840736 2.2273172348773445 2.847523064271969 2.344924805540218 +4.559706770072443 2.014911165336183 2.4437892491541424 2.868448759342919 2.5799845676822875 +2.9570001662031444 2.1399681985497527 2.7948666320203976 3.2419363204860194 0.9313498496871737 +3.488365719428478 2.0997192582128967 1.9546906998457088 4.452172566163688 2.8575784620607876 +1.3634855007585318 3.625679893026735 4.1481525824815115 4.099673324075476 2.262713792529958 +4.059318467606958 4.927831866902974 2.982758674107584 1.4995600975758685 1.7187767575175166 +4.502027660417376 1.2034502214416651 4.226071650739366 3.5823692706557146 3.360798398453099 +2.1204469548090468 3.156546332702529 2.347282257452742 4.106040536381276 2.0412576036774293 +1.6534815926449165 3.6045097966827653 4.269519502576271 2.700790253130039 2.503482077231489 +4.012445991815677 4.08928506214844 3.302875939560049 4.515326801602221 1.2148832600692172 +1.4648341502948834 4.971885752212275 3.1270775189688855 2.4311422837682537 3.5754351889112885 +4.396764870326062 4.679098798038423 2.58393956775848 1.3453410352313009 1.2703695413209382 +3.6953029354883764 1.2814217364272458 3.7689137720866235 2.623735090642725 2.6717516081429404 +4.002029059896293 3.7246140968788337 4.046912341944289 2.9424296444365483 1.138789309222717 +3.6068229643319483 1.1058761227937426 4.280681040900941 1.6573184061438684 3.6244677702580685 +1.6261646708874529 4.598700791123827 2.5636632915302346 3.4819654911870055 3.111149291821975 +2.315017537451431 2.1267219324786693 3.546057548267256 1.0156807786816957 2.5373730176917846 +1.7406954183481225 1.7240964041434172 3.068685192355291 1.7632122232326637 1.3055784926163638 +3.6263596804876435 2.763748921082298 4.283318628366495 2.341455169555754 2.1248367031153905 +4.212540864054223 1.7758218817104194 3.923039031776134 3.7550128434459964 2.4425053119449656 +1.1800562441524303 2.3834459315718246 2.3351147145598268 1.289825275619895 1.593981414868663 +4.0799824876295645 3.9732393126253926 2.0683306400946564 4.637567489489106 2.5714533038140686 +4.79583963476073 4.472414718599196 3.2327510573476044 3.4812990824588987 0.40789679721814454 +3.7295237545804985 4.940115060387415 1.6128678901314686 2.5503205192229843 1.5311266249026856 +3.184051322963973 1.3642694031056846 1.2353707970324157 1.6717325040971946 1.8713678888010254 +1.4953780230173481 1.4723350367139196 4.9634376091085 3.080221431227427 1.8833571493083248 +2.5951790411356965 1.6866210952566463 3.862285322746562 3.4100335382199947 1.01489369769815 +3.830824888471764 3.785697342766683 3.096693429917589 1.0721721078768498 2.025024216837652 +2.7447875199257306 1.4948692833417052 4.769242457915993 3.0386370504094904 2.134781177225448 +3.5649246962217926 1.8127396573809729 3.770286205322734 3.620607944354593 1.7585664594049473 +4.029330656456089 2.6738298135700393 1.078381582456411 1.1236684273708595 1.356257141322064 +2.594087559462905 3.7948342029495237 4.158848449941104 3.423027824435645 1.4082700361662268 +1.7037731921114943 4.1439964046750735 4.1954380128100155 1.4274334462780036 3.6900594314287387 +2.0209711826378176 3.2222253375704333 1.6532554484701443 3.4588423281415577 2.1686759842780625 +4.827289793272078 1.959602401749089 4.279208431580415 2.8013691923321207 3.226087381420705 +2.22254662433951 4.0916405515663055 3.795974085960897 2.4587819411032426 2.2981720869127926 +2.8493339801571436 1.3640343893079891 1.7122390232539875 1.0413876500912957 1.6297718979817188 +2.4742477244801426 2.7245664256241136 4.042114432263585 4.770705043837506 0.7703919336390177 +2.339154944402843 3.8899921929719525 2.3511425640002375 3.068043381859882 1.708520691767364 +1.6967316313320273 4.073720326615092 2.8852783224394294 4.095992897217098 2.6675653767213574 +2.696095154884095 4.553030066510001 4.490563947794193 1.1906621006319904 3.7864969915371156 +2.4714952354166204 3.811055229966907 3.6302837636437717 1.3064709177105454 2.6822615685133777 +1.5637067512437404 3.399254431662012 1.6703298603936285 2.629168476935921 2.070895163851042 +1.9111215338131347 3.7291608002476924 4.800878024679758 1.463276311879048 3.8006383631685 +4.416493584953429 4.5607200805115 3.6268873875949375 4.733636602523946 1.1161071215465561 +1.1428697147235005 2.39015764646152 2.255920375192564 4.703269700711676 2.746861100561541 +1.9594577405236282 1.628548313430954 1.6827935356655623 3.7447442231290293 2.0883346682152903 +1.0256078026897333 4.411522166704771 3.2991279364749233 2.407496915022643 3.501345735407943 +3.721009342206274 2.728652344517693 4.343670359094629 3.2913305188542474 1.446440994378494 +3.685364821253552 3.6434455083607444 1.3533479452472301 4.570011335086014 3.2169365228929436 +1.5179370941434045 4.885011286402949 1.3000517574762593 4.110767104029988 4.386035724379466 +4.867567610893056 2.7497913067384623 3.8019534230388388 2.7026592864705963 2.3860897034964985 +4.199455308349622 2.332268935009239 3.4178573034134803 2.4040956656637174 2.1246405839485165 +2.8778309999320606 1.2450496123094172 1.996894342137276 2.5268789406818577 1.7166417024124125 +1.3543379320433444 2.185438097401579 2.3075692528464873 1.887158073749791 0.9313823298559829 +3.5073432329214667 2.4450847520983947 3.176280646047413 2.9924188859142093 1.0780529796442382 +4.076504967743611 4.408086873216851 4.507102791921618 2.30961111775231 2.2223672554464735 +1.8038578337356443 4.745064894557475 4.573433577903957 1.1727367615112412 4.496158116842839 +4.5461763440609175 2.259990098150441 2.211787091206863 1.0035039150422014 2.585845274720203 +4.116155579205161 3.5467901487340927 4.41989063826756 2.3702078091334386 2.1272932786672274 +3.6388633649776234 1.0645393303148443 1.577381905586468 2.0656411488524054 2.6202178008854675 +1.3134999958246163 3.8935377575818957 3.347021936689856 2.1049479202200496 2.86344944332582 +1.3351620716048194 2.5884035984460456 3.583522140184369 2.30306738504016 1.7916971576052532 +2.7419695990863704 2.086241037247921 3.6617390620383574 4.385193164195654 0.9764045190078448 +4.894156990502745 4.970024251321326 1.1729173362290841 2.4110696569580385 1.2404745102542858 +3.6365290284136074 2.8993914408249823 1.612290045050777 4.353526582266971 2.83861754662459 +2.9043180005237352 4.848453008690758 1.5108918861634821 3.346372686887357 2.6736960746888463 +2.212868102342496 4.254339639830272 2.7160689868638284 1.8582344237104285 2.214381669024852 +1.5268525557717112 2.7598568639187473 3.457323060898585 1.0674701034492142 2.6891814334735127 +3.257224716268389 1.720611470835879 2.8710980341282344 2.4718080684011596 1.5876437707398217 +4.435493189374961 3.6813245473912377 2.071770998570786 3.0357809254381745 1.2239630221744615 +2.3835926438500783 4.378110059022468 1.9207654744954117 1.1003220302462227 2.1566703885010856 +3.0381211755476025 4.526388349058506 3.64610534934242 1.1898192858444419 2.8719819646865 +2.7249736640673854 3.743186966271144 3.947413018361154 2.9028696433998333 1.4587080554244805 +1.5693037529531986 4.8812491081711045 1.7852717619193106 2.1651405618359414 3.3336590019225967 +2.793956437271414 3.312464143149946 1.518683959422273 2.8234364715585043 1.4040047574638859 +2.9790939343596885 1.9883846339835598 3.131345689885389 3.133789580781437 0.990712314677914 +4.013250969958213 1.0732295830136458 2.8562977037178534 3.6020703483323597 3.033134120533869 +3.415681978806374 1.756114458897625 3.0034870577530564 2.7883880789468902 1.673449110017849 +2.0309514035650786 4.187996151637199 4.811254947052328 3.503860088299111 2.5223249913284094 +3.954726531692199 4.579076199006886 2.55305482795184 2.1823829781393456 0.7260923683109312 +3.096618750114026 3.9918768768816064 4.126677645596819 2.0237908887853817 2.2855239717658447 +4.095941477328703 4.081910139665689 2.0162288737488057 3.7555311020620676 1.7393588243522646 +1.0922120938047493 3.638554282555275 3.969956697219832 1.851411969358527 3.312414573413139 +1.0066851742750162 3.5878515628496923 1.9745276929020976 1.2572332522382772 2.6789795146874225 +3.059518953626639 1.786560805212178 3.776398983003416 1.904571115471093 2.2636611966646814 +4.781855091850856 4.534563496492973 2.9862661468565523 1.5794497795867453 1.4283856007230202 +1.0618052774716498 1.8673644436950916 3.102403198281547 1.3604706247550875 1.9191807265078298 +3.4361036334256583 4.032564730527331 1.7567951813452125 3.343121227439996 1.6947554882266767 +2.3342913290001244 2.763952177153873 1.5487143815504214 3.6174259074374486 2.112859631346586 +4.466974876833783 3.3240553986841492 1.7786318659963416 3.735183364924187 2.2659123331432376 +2.332471184807635 1.5758959194623556 4.881122560780897 1.3385383456383213 3.6224727816105973 +2.255355271318182 2.144104538667662 4.824267029171989 1.0640215042904644 3.7618908985916657 +1.732900472083566 1.05917955434461 2.9777902229061435 3.8271914237883653 1.0841504854304966 +3.8013360513844123 1.4915619678625558 3.762691747650582 4.897774637425289 2.5736102042789097 +3.8743882802235787 1.5979224759418296 3.612838905739088 2.216143180835002 2.670778071279885 +2.894416092558153 1.0978108558701258 4.512184867312204 4.383424996448346 1.8012133357378073 +1.8485024712159115 3.8976659747204607 3.51922501493941 3.2340869952814937 2.0689066567512118 +2.4589441701847425 3.498344165836483 1.7490151437657366 2.6963313091311503 1.4063286486890147 +2.990002214678304 3.5368244379501643 4.372048045674677 3.6282841557709067 0.9231463956430571 +4.738140298479911 2.4878202964148817 2.5724182703287215 1.361611658443139 2.5553850518228747 +3.505452359834732 1.5615856998260575 2.504353609627929 3.146459393312271 2.0471730335597336 +1.815565151186998 4.748548838323896 4.587021911055613 1.499814949561713 4.2583142359515405 +3.967873645035525 4.991173347863937 1.9483865316624156 3.341061683802768 1.7282032175637996 +2.0165125687548926 1.2640417193166016 2.369153265569813 3.6537677063917133 1.4887735357745135 +4.007399354305889 3.59153066197133 4.0043849725979515 3.5649367820161126 0.605030149223746 +3.8599443846399035 1.6567071369725013 2.4915550398853736 3.1915644518098527 2.311767191196355 +1.8305582032437546 1.5861369436450197 1.1232394693241767 1.2781569756862274 0.28938069376043074 +1.538597415218919 2.3410307256331486 1.5216791742068132 3.4680070669029748 2.1052533062673056 +4.891390831995818 1.7950003590083048 2.951933773783165 1.8049582477426247 3.3019973983248097 +1.2435528568616494 3.141623998478084 3.5538352119798886 4.939479318311228 2.3500390737279013 +2.1847996634687994 2.6517893806971595 2.039735801619493 4.442202834827606 2.4474327859307636 +1.1481850047240982 1.4787751279992865 4.459030390633547 1.784304088413108 2.6950789638518806 +1.2318127724125962 4.222570243913314 3.0398811905136935 2.436008577304393 3.051113302766974 +3.2490677894040405 4.3931882233553186 2.818146085659751 3.404572888089759 1.2856546822506985 +1.204121460249615 4.406628897006026 3.0163257551886375 2.852837702854667 3.206677755206481 +2.8930443811764044 2.0799080024242556 1.3943748855050622 2.151206752023483 1.1108488846949054 +3.6079603919745393 3.6589783657444546 3.5936272007603423 2.6645811158280446 0.9304458402161933 +4.367875866776425 1.1667119426021753 2.5499934356933336 2.517273503104674 3.2013311392955406 +2.5514175528911953 2.795450224397477 2.613910198155934 1.1302704063579325 1.5035753977000654 +3.7975759752865095 4.140304948413666 2.7385244058612566 1.1261860094986833 1.6483622943412135 +1.1486528305438828 3.0164359930957456 1.1658890514982971 4.580967402366331 3.8924766004280316 +2.569570691092329 3.2810693013820034 4.7354038984457745 2.175635476068367 2.6568109922696155 +2.988172480435909 3.186936600687346 1.3837047446845463 2.599819656694451 1.2322510518202798 +2.479774468523538 3.3644156246163464 3.8340923884291955 1.0774340057518907 2.89512614817356 +2.8684626832724716 2.5460598757626327 4.615387355145687 1.6046350558287505 3.0279651547090904 +3.482187260551661 3.5389038313645633 1.5252044116315449 4.304212113520988 2.7795864038676004 +4.812684280713897 4.316587017472175 2.577932101856727 3.5986199374350445 1.134863935585882 +4.199127661004331 2.920994657943825 3.704810715926324 3.4840020979744075 1.297066081305923 +3.547655303885721 1.0146373820787606 4.824024672464736 1.214041250214322 4.4100068141804565 +2.4846457627273173 2.0743980182015878 2.6671545151534946 3.9822009454956984 1.3775522951395425 +1.5930026897529204 3.681582370369407 1.2885376486022735 1.046491348275231 2.102558321137864 +2.4009490112035445 3.154798832163771 4.365574937077904 3.248561602652019 1.3475935373275576 +3.4158734933488852 1.2232083706848402 3.311032347507285 4.907985428172083 2.712570640922024 +4.404922082414503 3.213754712728144 3.7983591666697682 2.8534762887811644 1.5204220978177636 +2.2298480207866853 4.070764093896334 1.8124887824305311 1.689260755920254 1.8450358085281344 +3.886463882517967 3.345299190117866 2.770628943642084 3.287374578596049 0.7482548199273243 +1.8349075741332035 3.449039294251224 3.2896654816415953 3.618151342171397 1.6472170987635975 +4.7676881880321 1.2597713549859773 4.313415647057532 1.8531326625924445 4.284678852751601 +4.325450892290338 3.4298002441496513 4.27262827795802 4.139586928318364 0.905477820948019 +2.214207017177278 4.23034716379653 3.0886709784074062 1.3974872354048742 2.6315249463772816 +4.280129676028897 2.561178418706404 4.5484452522699605 4.350951867945394 1.7302592470212523 +3.4193951711030275 3.6359537032491294 4.1986937435526155 3.023588003463061 1.1948937602300438 +4.402225276038234 4.941013254497654 3.073319117829223 4.505226939100957 1.529919113663057 +1.6001099974229827 1.0670397301841046 2.6451984129305868 1.4215935790286158 1.3346807481051035 +4.30881278821895 3.3749745413435206 3.610865604710695 1.1893851193940628 2.595307614156104 +3.756221536095589 1.3009119065819346 2.5936752799668397 2.0081819840416366 2.524152882920493 +1.8446106605796317 1.1592616312068538 2.9497756826594057 4.817989139671678 1.9899559826850324 +1.004938634754271 2.464577858606949 4.965365001313373 3.503341970853278 2.0659278800105696 +4.336756103652448 1.8092049626430624 3.0829006055629367 1.7265683266723637 2.8684755570125295 +3.513789554437396 1.3566418274919423 2.2733971564520368 1.4280457781661617 2.316874029513855 +3.220904996462327 4.060146945601252 2.045214537828778 4.317074573117834 2.421915578449854 +2.05678787676271 1.2276950922903413 3.2030041898937935 4.878843470495337 1.8697144540467252 +1.7145897782395032 4.395206848336549 4.048364428354102 4.0897094520392585 2.6809358976818523 +2.6021834772388766 1.697564438723293 4.396156181996839 3.190814597493681 1.507044770462193 +4.549070730953053 3.7089262993039895 3.159819975677206 2.0728368642321633 1.3738176555124315 +4.455874464270258 2.7590048485099747 2.9028491636160205 2.033392998907939 1.9066516502075934 +2.0029059725471696 4.451699296638782 1.5695753601845683 4.529457558081022 3.841548043372618 +4.187229374738138 3.311164847712701 1.4471585233068995 2.2949923072192204 1.2191436259339528 +4.53768180043203 3.2334692776627874 3.4832033567210243 3.669797988325976 1.3174930212687657 +3.904079516348608 2.715020718554923 3.4573677178143405 4.8218613150879435 1.8098904943700935 +4.328567305489804 2.8630144533743804 1.56291890260411 1.0844462888910695 1.5416812914532756 +4.005139787611231 1.118019728680962 2.177150126570191 2.1950121888983634 2.8871753129915985 +4.4909687942995795 2.1997546572945472 3.138881924195795 3.91290068814746 2.418422475201754 +4.716029449689239 4.352438829595048 4.688586774480978 2.5714577261667375 2.148123261415983 +1.9427507253265057 1.013425282484476 1.9824304913742146 1.369528003490177 1.1132363802750869 +3.1093624339193036 3.403320245020924 1.7250187912288668 4.23231836367669 2.524472685672137 +3.9235620791701824 2.524145614440249 3.853199957239953 3.8877728662346422 1.399843465460899 +3.716819139465864 2.4193453139813133 4.536427361910647 2.6347021307156893 2.302172274783325 +1.571006597061435 1.5941968205692127 4.969697131206619 1.0067967063188656 3.962968276941146 +3.9221861654089283 2.7307874049232317 2.0400816017020795 2.8500587472060612 1.4406574827923648 +2.745370385822581 4.000710497664012 4.907014289295642 4.682914502437663 1.2751860691161303 +1.5844979876353307 1.3541465358811728 1.563052546665007 4.981399907853809 3.426099892453764 +1.2296352926377558 1.6728565525230574 4.822949932352856 2.4862567814338083 2.3783565684661965 +1.454217103904384 1.0638623409768186 2.89600099953427 1.8636959378251001 1.1036442277158924 +3.011111039730391 3.087581703989769 1.4394382368181762 4.712023813938387 3.273478902034882 +4.7323844673351 3.13001598236061 2.390558067594487 3.825898538617034 2.1512291903455267 +1.8114957267158625 1.6168537604750588 4.0807626741975245 2.626955834175352 1.466778723297192 +1.4736154766359881 4.373087709811402 4.613507467072447 4.5709866786799935 2.899784000300839 +4.370365865356259 1.3787420339212089 4.424233353481812 3.851093956056182 3.0460305181812513 +1.6484368980352095 3.563640635477407 4.067255918762206 1.009457001593431 3.6080659048513923 +4.320783726317718 1.4031783055942237 1.2823201802759359 4.185815118659185 4.11615163086253 +2.485383781746434 2.0342994679081774 2.355169720109881 1.3418728704650391 1.1091652553569697 +2.0793669745929724 4.403788856842584 1.3599316610233276 4.40426053110767 3.830257870680489 +1.7357171606595143 3.7936713629718795 3.8361168842148046 2.8276818612092054 2.291749701524891 +4.443566069831036 1.5608872629830173 2.4343768296744233 4.638214103550537 3.6285997069360536 +2.639274770069665 3.670470089544788 1.3170540996749303 2.5056907563417017 1.573601248245362 +1.2650004027426878 4.529014297107736 1.2044327271959774 4.783287689483952 4.843757791601615 +1.161183151268602 3.1338043624556153 3.8214564131776023 3.4095426511117335 2.015169320480087 +3.361779485778673 1.9505680266525376 3.766650954173523 1.64417318613379 2.548809458981162 +2.2168929003691646 3.989749667482958 1.9023766416332126 4.787179602715849 3.386016721897917 +4.423270823109203 3.52141253784647 4.945626410443813 2.1439262064427456 2.943275794042526 +4.705245857851503 2.578348830319288 1.7531869822952335 1.7694116105099411 2.1269589098725152 +2.3122645121812844 1.400630466583085 2.836012825489814 1.3554544216635658 1.7387149910880355 +2.200511225105965 1.8746927417256996 1.4530735259481764 3.1907984987260707 1.7680061552857076 +3.2985380292060307 3.074283344472159 4.625776545470299 1.301732438014231 3.3316001248556972 +2.4371430930644586 3.205051890590303 4.550473152689413 2.969687516880396 1.7574319752689456 +1.0146651285881592 2.3853600857483706 2.93717558507305 4.193554798468405 1.8593798410858295 +4.888125049669036 1.61449089946109 3.990231737105986 1.3605413274774376 4.199041819260683 +2.19662488327752 1.9018334110009625 2.808856731935578 1.7117551323453606 1.13601669527802 +1.2780185493695546 1.64711669766637 1.7171681471454954 2.353027114740692 0.7352211026265277 +2.9865972234681384 4.546538160755879 1.0690680837850826 1.4606216017561122 1.608331397834925 +4.449346360038442 4.742338688742659 1.8438239765765418 2.9311091927887736 1.1260700005209265 +1.886682034142229 1.4404939349435941 3.4911791069642653 4.581205717630553 1.1778123075546143 +2.500432682799348 3.841340266634019 1.2864245442111026 2.0988032522701765 1.567798556477542 +4.431091620008153 2.885079031902655 3.369401650834399 1.22335517062717 2.6449329703776043 +1.510564756728936 2.9667227748016827 3.5374859108309966 3.9669711343009513 1.5181744731013582 +1.6921051202190998 2.6690458408689537 4.322727536659819 2.5105150096347306 2.058768421841202 +1.807703201360797 3.5579749941413166 1.9975429802834026 2.5108214369630306 1.8239808449363044 +2.689549738652383 4.4453610954677885 3.787916175531505 3.076726955085145 1.8943768442422053 +1.6222213483492158 2.800134747218873 4.846090708438581 1.849468982416837 3.2198170358115386 +2.372635847322162 4.639504984530073 3.135767068042937 1.861895969865075 2.600277535187083 +1.1970617379720836 2.0702157913539314 4.023230847180866 2.3787836035218897 1.861882041944321 +3.661069657763936 1.054329407386378 4.594406794904909 3.1153937628926074 2.997094306457619 +4.478920736479857 2.869230009337321 3.8145994718912384 1.22550530238364 3.048690350892807 +1.948693623668126 4.815829822548052 2.1834237004998145 3.6958677828269697 3.2415979215649275 +1.4327641136759546 3.177906564366655 3.6594649342757335 2.164380992520956 2.297998730655817 +3.9233469839387776 2.0030578198034283 1.7243481851874232 4.437906639204416 3.3242908954035193 +2.88069232781086 3.907193793259038 1.8915869064907809 2.5508617357408263 1.219978917461254 +4.397159839665161 1.6645916095294475 2.504353404486383 2.336251728178772 2.737733972818479 +3.039068556687466 1.5975494850025433 3.2444131565927896 3.397399089021547 1.449614407196775 +1.3121878502920645 1.2923889941629119 4.426965125770719 3.037030806166249 1.3900753244045319 +4.579911540383463 1.463123800141073 4.794520550071951 3.0727376107672892 3.5607446282773307 +3.657272200347359 4.978633227615856 4.263752511730921 4.536123410814981 1.3491407899296195 +1.7981988946065912 3.0193004005449304 2.264543498193759 2.8073357672455925 1.3363054797265923 +4.2652466001066465 3.1674721984191283 2.2834147393630357 1.9417521640001376 1.149713856750451 +1.214603651746938 4.131303759267018 2.449037656622817 4.111418274782908 3.3571787019522765 +3.6047034367799027 1.0145896960483007 3.02417599125166 2.799460959173525 2.599843463666328 +4.594106174741649 2.477443963672925 3.0455649595298184 3.307346365038912 2.13278888313791 +2.5114980549513852 3.1901780089851757 2.585367763801618 3.6171916699584217 1.2350170255198882 +4.389479690958895 1.2495917551936486 2.7058735507119427 3.102203253182488 3.1648022816954193 +1.0422919499131793 2.5620406712818355 3.0657171436667507 3.0726077240808447 1.5197643423242002 +3.234882054002173 2.9823893930916427 4.09383780471031 2.473504464478873 1.6398880075417483 +4.711175531605532 4.7937639727884 4.222147499386909 3.59187304587394 0.6356624397965388 +4.633510923193457 4.456892665959897 2.8403493422968977 1.6952796130987786 1.1586106738305468 +4.4984996404509054 3.6907520490588976 1.983171160433833 1.055541520049645 1.23002151246183 +3.6465082741216426 1.8650387327174522 4.789534991392371 2.377177559385393 2.998850130751811 +1.3159642060979406 2.7506905207445476 1.4539243197830993 3.109908278697588 2.191055104309688 +2.5593505517055 2.285556960223962 3.0393890543519664 2.7661843899061145 0.38678640024092115 +2.577338361052672 3.9281887460753397 4.246182899097779 3.622573393002438 1.4878459526471028 +4.052511816804682 3.6541989671777984 3.533142835150658 3.095044741058072 0.5921005541505976 +2.289302168167952 3.288339819731105 4.532254300451502 1.5651706208015872 3.1307605771259 +1.8490103728733347 1.5443834114107378 3.7971504048284594 3.2877711080377665 0.5935190423641986 +2.9416078361258156 1.9363274658203822 2.802627145807443 1.2093479953657957 1.883912703432271 +2.6803701287540624 1.3135057959730023 4.142846839929524 3.9334331155828104 1.3828131515768043 +1.8034275485078477 3.3869599304428113 2.470780126518466 2.757066121469033 1.6092030560316046 +3.7710205429043895 3.0060884408974733 2.6901951785376474 2.1264102511476737 0.9502497382440245 +2.029494932529527 4.301327154597411 1.7938827384512912 2.8872019706548993 2.5212236292586554 +2.9316592664480456 2.6840250056581225 4.712206085623402 3.6391945265584638 1.1012159338676228 +1.8322577144624175 3.0593457648994997 3.1202171227423863 3.0376743017652177 1.2298611307055558 +2.553647882686834 1.3794922951438275 4.280468942782891 4.749935473691471 1.264531600001281 +3.4760912506811907 1.0044415489268141 4.9769450378088695 3.339397556161621 2.96489696327406 +1.7122035865105087 2.5090264012818877 3.248351960838171 4.795724266049632 1.74048488906845 +3.7310855324386023 1.971066483477847 1.1175446841871772 4.30361971717843 3.6398820267358847 +3.7879343773071565 1.6682867478292738 2.8533029726889247 3.4199438800427497 2.194080215269709 +4.47833441793753 1.3707522110611436 4.550326561072291 1.6575061063404566 4.245642160593567 +3.445111497109604 3.9506987079096123 3.6875785305439277 4.708528571619435 1.1392793398006529 +4.3032809920053 3.32833309941451 1.630515958831693 3.840403330133589 2.4153934642427988 +3.7851950021696665 2.1516267476236166 1.9207400849684633 2.77997982919779 1.8457622220437568 +4.5552017683829575 3.3291666831692215 2.6711140233681996 3.1727023597045583 1.3246708607513524 +4.951134875192576 3.8165058546264 4.201411432434041 2.603477524588342 1.9597897305971337 +1.8164388333368988 1.1033059665113343 4.041951071856735 1.7883888982841825 2.363704921495891 +4.311744364469909 1.9456029942824116 1.2569585958441736 4.481950952775058 3.9999000844990356 +3.4558199050660976 1.9255505443297127 4.302572995015918 4.262227691923343 1.5308011170266946 +1.9570621510949642 1.8881718288520504 3.4119469962612503 2.138128773576386 1.275679717226373 +1.0899094060354586 2.8131407819764935 4.124971616167892 3.888737305020219 1.7393484483538795 +1.107280297905513 1.6917972751790744 2.977279552220209 2.8108055736780755 0.6077612049585494 +1.3085036254610736 1.0187172627054348 3.3748899940946417 3.2684629637288865 0.30871159490957906 +2.253928127860361 4.453978617250413 3.1873029729799485 4.176983152443573 2.412403161473753 +2.180037828544463 4.931060885721444 1.993106562979023 3.7889663412904606 3.2853067139121412 +4.982294118701835 2.9168618195141343 3.5004387311272316 2.4724652582031585 2.3071064222448365 +1.2367741950391755 1.4363782129035307 3.0579493030297 2.5294364599991677 0.5649491916940936 +2.057804504048983 2.8469456293534208 3.9441775099242897 3.4067882854331692 0.9547412708403897 +2.2627389346287083 4.119881466146294 1.0194971685886336 4.920651335292502 4.320646041364937 +2.138265722434901 4.188040382487281 2.9800325868871975 2.831478265166712 2.055150734981423 +3.9098670542853893 1.2157610303056736 1.2726867404026474 2.0420917905627243 2.801819301749423 +3.0704205793689314 2.7754814931623626 3.6763110087175126 1.6920161829370692 2.0060944694085086 +2.3462159992518665 2.799392826239803 4.980348556363071 4.3343981402606975 0.7890634807046161 +2.8483720753523363 3.6202179584082232 2.439363544134355 4.9290575994409345 2.6065921346116356 +4.209843521151852 2.915155725756527 2.3004405477680963 1.50208137934015 1.5210502455075467 +1.4420559371640005 1.809396362394339 1.3255610166921454 2.955833173294853 1.6711452039252748 +1.9258597423734964 3.6726367364815022 3.5625727196142556 4.163938103986073 1.8473955160348483 +4.792557976661239 1.0495256762980478 4.1545661513584236 1.914111576737005 4.362330512753958 +3.825495125015069 4.441606737883458 3.782873950183937 4.992903505626259 1.3578531012429995 +2.786061639225892 4.178985837483388 1.1100379723054905 1.0861992576174981 1.3931281730010576 +2.5383538922616307 3.1404008631099978 2.6030730727661826 2.9428568448685533 0.6913129297878134 +1.0762422844052342 1.536994810782442 3.2284684804466703 1.1146300375811098 2.1634707885939384 +3.985146451568429 3.6011090324998634 2.8139891478739645 2.8442549568871685 0.38522819009006726 +2.272131423415232 3.787155537822092 3.119305246915789 3.610397752701477 1.5926298742875433 +1.2332769735390174 2.871013136435274 1.2215980156160828 3.9100239874121816 3.147985696455108 +4.967732952676724 4.677368573342788 4.790316974448638 1.514411954125547 3.2887482687131913 +2.9813968423741626 3.884557160212775 1.0667248573737163 3.7902777482239807 2.869396959114785 +2.573592787164113 1.7596477138768853 4.883895343740829 1.606104374964485 3.3773392215352476 +2.2737478122219708 4.332857831405838 1.5523671444677145 3.420809614739621 2.7804696250488283 +2.2879133499350703 4.051932764520668 4.794699356178032 3.29715837126965 2.3139562434314267 +3.7421068860343376 2.9850457062567712 4.8620700597057755 3.468972186766416 1.5855167339118084 +2.6723594800835153 1.0357159239283655 4.183659801367271 3.2442932785829806 1.8870642792528356 +1.6494304715622214 2.778370316029806 3.446001793562042 4.996183646305392 1.9176988681754228 +4.538016768818032 2.9046528479786398 1.9334393416674747 3.886802519360807 2.546272845134242 +4.850888753720696 3.0826317981000932 4.733863790311213 1.5531156569933549 3.6392157601199857 +2.1558618129527645 1.8110743749072316 1.7839750927928084 1.3313959210788768 0.568951917215568 +2.2503431895072383 2.974412445855358 2.457505685856527 2.2831679716141906 0.7447616575762757 +1.1502547294805883 1.0399596144475702 3.9739455496215896 3.699754871293085 0.29554278959634983 +4.444732864175245 1.8666602535200991 1.612722893671466 3.8158607178507937 3.3912054874542568 +2.335801641397203 4.863164807314076 2.0870567919605234 2.5980429697994283 2.5785017832795414 +3.494654193548678 1.5648255526872727 4.740484068104239 1.8558966102392511 3.470602740902648 +1.559556970129162 3.870627925749924 4.114498569412634 4.864165016044039 2.4296190530860633 +4.439725590026517 1.9772455948960865 4.903746430058613 4.343255352900506 2.5254619327939625 +3.2899852359880093 4.0932168709268915 2.787002235893495 2.9270339140137467 0.8153465093098538 +2.1185782097371937 4.313691086460487 4.06621191863656 3.8997747521856367 2.201413607646829 +2.8742952674004925 2.6173586568712657 1.7826418853934691 2.773874978981941 1.0239919275342066 +4.064334659955105 4.877822525966726 1.6690369089866337 2.929194267813731 1.4999196902348562 +1.5006857001059641 3.8396697828993633 1.491630239992085 4.597089995545625 3.887766303794961 +2.8262916231084656 3.3044536023038114 2.299137133690926 4.944069426201405 2.6878068588186816 +4.336098604448817 4.121868950541252 2.144073049869539 1.1668864842808118 1.0003938867168505 +4.227918020648298 2.8529962135886637 1.5995705111215153 2.012446926473021 1.4355754629700381 +1.6794308046377782 3.5879594009297104 3.017759981474153 3.1475554761089404 1.9129370803274066 +4.959899655976338 1.23819294700585 1.4491768735651003 2.1660411105435 3.7901180933916248 +4.775894485003717 2.3909925275386046 1.0938990576511944 2.13804375180842 2.6034583709092822 +1.3823559410731492 3.745375305771197 3.0109497844473267 3.2345424257736437 2.3735741377073616 +1.3173475183222498 4.958476049098692 2.196033457186838 2.639348347326001 3.668016503432518 +4.33185257942403 2.5902670008377178 3.201282285792782 3.771995656135835 1.832712219260882 +2.7770853074838846 2.0458691970548815 3.191782737455536 2.306831809115535 1.147961299748711 +2.3959460370230965 3.342892745409657 2.94986233244538 4.713018039353146 2.00135606910054 +1.5323575285233066 4.347804916423938 1.5361558740846282 3.173328143218634 3.2568507845552084 +2.028022780654486 3.378655962525618 3.861380041373985 4.596734456795051 1.5378413794181103 +2.8402251256901114 2.866269439009411 4.40552167833601 4.825585607637628 0.4208705394258291 +2.6250987111003354 1.9951321679899148 2.701097921065995 4.052871403245062 1.4913582375006396 +3.9472177998956908 4.624155423285563 2.4400188114268957 1.1445536989957654 1.4616683630314127 +1.0509210692681683 1.281122786898294 4.606695191755231 4.40635198777433 0.3051724597357909 +3.965658320947257 3.1325784119652416 3.445950167327668 2.37285104468819 1.3585153152464278 +3.539952592058274 3.6251224624254528 2.04211367048495 3.8018982575927875 1.7618444028462517 +2.7729052053207695 1.699702081485352 2.196364480870035 4.6349845642063965 2.6643259665178998 +2.7675044938258924 4.17376817547401 1.4056567197386927 4.795981948776577 3.670406340035569 +1.3597672814771657 4.363090436483484 1.4249479396852327 3.944032832049852 3.9199156455639157 +1.5632774125294215 4.1446898685341536 4.508745455797943 4.989647294016448 2.625824983889505 +3.3661454704119844 3.126560735784894 4.2841078068970315 3.5684775625258 0.7546704523996962 +4.070694764640298 3.6602941922881045 2.6340715190876782 2.8702176339538923 0.47349088412916185 +4.042788866314531 1.4592090928022237 1.8270601531183268 1.9371572956150303 2.5859245593960867 +3.4726561060676047 1.4810737855914113 3.6996218154448424 2.0537369469282436 2.5836673817744495 +4.479123438433497 3.9752286962267354 4.001070520206172 4.869135376102745 1.0037163470156087 +2.782259325670119 3.0883642457666127 2.7969064078857446 2.9307453158039567 0.3340854312597608 +3.890993464449656 2.642913999215362 4.726598849523822 2.7223228353668523 2.36110666689679 +2.2021942523315357 2.3750763074335377 4.639901066458032 1.157678381476397 3.486511585062783 +3.097925790765338 3.309224215693814 2.9588206390707175 1.6803735506177047 1.2957908713798074 +4.470566018604991 4.88270101913632 2.8184801231598597 1.2277789831437715 1.6432240795191144 +1.1809289217037713 2.7805929572387265 1.5194338927100954 1.256388847368744 1.6211470391246476 +2.785766346865606 3.8127409386343536 1.8152182696973451 4.72454988389905 3.0852693972377976 +2.7736188262572714 4.994415486449177 4.3001082788088745 1.9413610249152637 3.2396954198921497 +2.1481897462184047 2.9491088912092938 2.8998393218751866 2.8290633738799764 0.8040402425423477 +2.2157316656320236 3.1526340995522144 3.2326184968518428 3.809884071263179 1.1004643174978586 +3.913055815769718 3.0066864798133106 1.8133506881275272 3.76137058746623 2.148554607493519 +3.0155444317992264 3.1170068366538044 3.487448507295796 1.7539615560010473 1.7364537511572364 +4.96295581160786 4.573385910687299 4.0409384854089 1.2943491920421049 2.774079568819245 +2.4056205140463245 4.3220214627476 2.990692402709595 3.776839297268871 2.071381069723372 +1.292798772567477 2.326992431043098 1.1371811630052324 1.5952103378515385 1.1310823348640793 +1.0106830888178884 3.9851944649115913 2.0979024640982167 1.7441484277759285 2.9954732255063083 +3.66570389448687 1.1488718727144844 3.3155403534022794 1.9257562923887512 2.8750553320007826 +1.5319774038996004 3.839703568173973 3.7628788446707575 4.036920314332104 2.3239403555966445 +3.976733630404552 1.0742841175597349 1.2188944211814574 3.7068349182178717 3.822834170011422 +2.0469226274161554 2.1109451366378242 3.614495439700013 3.428985582969688 0.19624675444741602 +3.197823443706871 4.149338429099702 4.415436582373796 3.8227367830139465 1.121014638436236 +4.472308539311696 1.3360212156682718 4.307672354826993 2.0461345391200747 3.8666330920219014 +2.131269645489046 4.770393104342041 3.638195943639298 3.4445141945496727 2.6462209376767114 +1.3849815660395266 2.3892412500736597 3.9791264767677905 4.2995156040591205 1.054128410518774 +3.296278914160683 3.0903533848951756 2.6479721171147848 1.422764976407354 1.2423919917818842 +3.3187851667573978 1.6725281874793279 2.964365709477958 1.5582788834973154 2.16500397321069 +1.2224733255967073 3.3316667575558347 2.0264372641558017 2.5928882863102736 2.1839330790844684 +1.5616402156078122 1.5353330388855384 4.304316688983116 4.02760713490969 0.277957271649099 +1.2316559829907487 2.2673052274464367 4.8419554287312465 2.4989832708430204 2.561657254626592 +3.6959386713336757 2.027052612351436 3.30902389334238 1.26433441013203 2.639305924029323 +4.414867895187143 1.5534506517646314 2.277038929654159 4.524229915434354 3.6383479722983414 +1.5447825079996083 2.0282485973749242 2.4322952944191947 2.092196944071927 0.5911060374288136 +3.7747922412919346 3.7299865936759806 3.8601851437415653 3.345954751906007 0.5161786918748552 +3.2458069856916296 4.5617591082987445 3.1666912180554783 3.766478733296457 1.446193297050266 +2.727009572187241 1.756919487248914 2.9098694085841132 1.523124613853036 1.6923758148264196 +2.1414022037786724 4.11920156653574 1.6176536086291176 4.457808361418552 3.4609491962631695 +4.679216373867478 1.149565937221456 3.142369287222168 4.222899255604794 3.6913381337244644 +3.08962301331176 3.5252811687556695 1.670888331760401 3.82668432065562 2.199375905601747 +2.5798564776214716 2.3869957742173225 3.105135967535188 1.234567407908421 1.8804845086258226 +1.4039484867238134 1.407642057767267 2.346192375707127 4.3650056942437905 2.0188166973670665 +1.290094000219054 3.0095098395902578 3.7214430717604388 2.54143775092891 2.085378475450272 +4.809900583254642 2.077537166314404 2.243375190112186 4.967176176466455 3.858095599579904 +2.4544286595886864 3.2556811952135516 3.576924777885679 4.96882329542856 1.6060470444489932 +4.924448409105597 1.372458751837724 3.381243733132601 3.6002976752159412 3.5587378598149364 +2.291287090921439 2.5296504539708695 1.1032681847688117 3.4814515732242812 2.3900990192813714 +3.0162515550185685 4.853772643867664 2.007636013578299 4.695527778804643 3.255955450176915 +4.135525839766225 1.09526395806604 2.351688035188678 3.437049053403754 3.2281884779516847 +3.0769488314658138 3.3366882534718387 1.0358626818897054 3.0881606412126215 2.0686690119941926 +3.313808381816953 1.2925210982717168 2.996368551679729 3.266410287428728 2.039246140530371 +1.8188758386174628 1.2483186181505808 2.5767794542438085 2.2380985899888755 0.6635060434083194 +1.339403535094077 4.919670783789272 4.119384476024502 4.614787184337832 3.6143792572838342 +1.287246122970481 1.5859586964259758 1.7870000538324544 1.2756906639593057 0.5921710003984119 +3.342821928458173 4.8208098124380605 3.041566505447963 4.382992964001656 1.9959642103252375 +2.6839231739764116 3.673482708254813 1.6831206899146145 1.6591916649428367 0.9898488117472216 +3.2851294745719097 2.0900550142065413 3.358561312036639 3.2253019829264753 1.2024811909599533 +4.151803536222485 4.093769972039228 1.7534338904331168 2.3081482836794947 0.5577418333301791 +2.577857898279791 2.0768157254164383 3.4411296281405144 2.9083483106925128 0.7313680271992056 +4.541578838957677 4.8940686569218474 3.5852850468081714 1.276582926343547 2.3354559625063085 +4.872642571565469 3.692318814462317 4.582738770897281 3.291867752059509 1.74914612278602 +1.5744425721231088 2.5307999394161222 1.3558827090661496 1.2834630146565016 0.9590954207554171 +1.5364505052032018 4.578859646547162 2.0292192652691545 3.3065764640483417 3.29968101437189 +2.409509679603398 2.5274616887556784 2.4089046719586413 3.6069683225900073 1.203855966229854 +4.495213039541378 3.7677834919069917 3.8511589788060085 1.7972951554863932 2.17887823237386 +2.470157982303658 4.363382172973051 2.7144165077962255 1.1610602310110871 2.4489208967958858 +1.0038075334738488 3.4189453483151664 1.6493109756588278 4.701133295351481 3.891851761777514 +2.639837928057911 4.477219005046131 1.6299603440183335 3.389648174031064 2.544105045230897 +4.466484478945004 2.625682691513284 1.027320177364838 4.01365832018138 3.5081001587544174 +3.497265932772912 4.19615149828278 2.420347033759262 1.1560298548726937 1.4446241596019842 +3.6226066121214817 4.9706235111242485 3.4981758290892757 4.420833082412692 1.6335378682807895 +1.742369128514881 1.2964462370003256 2.0882290807890094 2.212608422269332 0.4629443225311016 +3.993262880600709 1.4448832827212827 2.052252794365179 1.45517860665719 2.617391098119511 +4.174201568986646 4.46372120752997 1.389838027537833 3.795575482737821 2.423096020477598 +4.811577186559232 3.9843222648344985 2.2780976145055067 4.657494778353779 2.5191033263538425 +4.830745048338507 4.498398481674056 3.187202911942682 4.314457348791107 1.1752262785387793 +1.0144117265332815 4.280820497046113 1.3436979122215056 3.229417217762763 3.771652629203033 +1.332266860996377 1.5734513417079987 1.5067168268559485 1.9992829335967568 0.5484444577584242 +3.1491172410446615 2.7959883884204006 1.0232212507915013 3.8493894655483794 2.8481444423796005 +2.497332812948888 4.9686488166921645 1.8199512500166484 1.5972872625058105 2.4813266696853655 +2.512124345003713 4.716420437032634 2.5466648233601257 1.524549995135462 2.4297407234951445 +3.6862090194800814 2.531315436130233 4.806698803470764 4.551074676640596 1.182845248999352 +4.7044840209138865 2.980387034650209 4.475946314149809 2.898472407418337 2.3368642118150875 +1.8830535330419202 4.920266407057666 1.682631464006004 2.8519679070989863 3.2545367964170153 +4.198226357821243 1.6374362327840055 1.7641042350745275 4.257307603677663 3.5740326106097933 +3.2067014505774583 1.889511922344051 1.4044851112788193 1.9912261129047537 1.4419616001394595 +1.5091629709005314 1.5209936470369212 1.0204232264005948 4.4977044779614666 3.47730137712488 +3.760754365207549 1.4194199948186101 3.039197576632344 1.9757087602063272 2.571547218432471 +3.219040293278291 1.6096743586565192 1.3387409727129205 1.802871299318872 1.674955423763975 +1.2138134674861027 2.1693052954498326 1.260048068964418 4.329109814509253 3.214359132280053 +3.4947411122568264 2.1018701346748765 4.141524818481645 4.408813417409403 1.4182851459797712 +1.1434354188458538 2.5042342846936902 2.113554467752002 1.3133124862451044 1.5786579053926928 +1.7647205109937412 2.741971537145632 3.890284493653072 2.9333900696506405 1.367723110429106 +4.275261828628555 4.977378675494839 1.297836674374948 2.701250140324156 1.5692474065809447 +3.6735084674673555 2.3433654267723187 4.899809876769881 2.531885258887451 2.7159432071902923 +2.8759866164727734 2.8733865048354046 2.713687391382611 3.2394905082188337 0.5258095456105882 +2.3977718255616542 4.727139698454153 3.064996475647078 3.6764038375819705 2.4082719218335606 +4.863273503489035 4.1941009919409655 4.67046635226782 3.7630145627334852 1.127501929284654 +2.853821589075324 1.409989524807418 2.4850074121005643 4.832042793669295 2.7555809028485445 +1.0266251703411498 1.9107680599504553 1.9682683791365188 1.5724467099617474 0.9687019371483648 +3.5180810026474103 1.724176234815979 1.6307605397403675 3.063182675543566 2.2956322639280313 +1.421733882363597 4.714316615259425 2.6351630444430225 2.5718471860285677 3.293191453725477 +3.471759319463261 4.177897120511855 2.829477166154952 1.4652146709106 1.536177968205536 +1.1195128272978274 1.818232129355601 2.189114201659961 3.5000776041468793 1.4855415530129676 +4.656966579915258 2.8303987233099743 2.126756782775306 2.116917854811021 1.8265943554295534 +1.8076545736393683 3.490131319923551 4.98939697948568 3.5613518903289307 2.2068168882922112 +1.6786367313822286 2.1741440898966093 3.005296042795773 4.716360008061643 1.7813667324762916 +2.0481640174204667 2.1000911324253244 1.699060097276866 4.048542821083974 2.3500564875638186 +4.3945262123255695 2.515431866677541 2.442234161337375 3.612195764567335 2.2135504766954854 +3.745586006519579 3.239141754428084 4.960319197629424 2.1969110626004293 2.8094323806101724 +2.525887312096271 4.718796476673328 4.735786847974417 1.5589867691468449 3.860169600538934 +2.4795476244232244 4.611011423045847 2.915411983139505 2.3653691587050836 2.201291673892984 +1.3537079731790937 3.3418449385913567 1.6655627750260202 1.1609117015438928 2.0511853400425193 +3.3577969983382054 4.922747569996884 2.6299430358937204 3.207796596396741 1.6682281106374037 +2.776037934131357 3.1157622517739134 2.4882806707723066 2.737652770594838 0.4214250303050344 +1.736684902811664 4.004738043670311 1.410541001930409 3.7352259223798083 3.2478031081214884 +4.263632975718762 2.0292914763587224 1.7190936154865089 3.2524285402097686 2.7098704631658235 +2.7309418777489927 1.812901792771954 3.4039469712350043 4.680868784467587 1.5726814409580332 +4.8203254275558916 2.089763764334147 1.8111139969516405 3.3569323720515336 3.1377573911079826 +2.4955638186438605 2.644759254324 4.63545985559924 3.1777727734985186 1.465302326262776 +2.007906854246431 3.5920683255132304 3.325056810240513 3.7715543433558225 1.6458820170729878 +1.9226767509846887 4.868798854431827 1.0634975880406872 1.4540090262583663 2.971890750313448 +1.5073856538445045 1.8075291774468227 2.680415889061981 4.273511699713248 1.6211231898517255 +3.390894143218255 1.4089112709722738 3.6707246670975007 2.1485867984316362 2.499031771927498 +3.911983724520228 2.28126493269026 2.1642965410452293 3.926819318104355 2.4011935194147935 +3.2007091479280265 2.863421997836951 2.146819352490974 1.312365202398638 0.9000424157909905 +4.394228901160629 2.7807402018576766 1.2029085294014061 3.9466523756075573 3.1829979698976336 +4.82489136004525 4.373774355629575 4.211058205491004 4.259319961352496 0.45369124826450674 +3.244833623522792 3.3785763070902712 2.8605489642053845 3.8603231220731464 1.008680064315749 +3.596592190756446 1.380671704173663 1.9599959935971638 4.503049714657189 3.373044000758739 +4.463482149456517 1.4008899915483362 2.199468537926988 1.696398574437846 3.103634983989847 +2.9719680724635293 4.667837837578432 4.769799854401153 1.1783327445561937 3.971726357810792 +1.6075868231418626 1.515479477723316 3.6583229397088584 2.731714354403827 0.9311751894466708 +1.6735771852047079 2.8635682931519595 4.06530681863651 1.9682236163021622 2.411189912575617 +4.723238625925529 1.207347978575413 2.2518870080851365 1.8174994817898433 3.5426232606819705 +2.5133194540374255 2.49759604638509 4.246094591145944 2.1142288107123752 2.13192376302058 +4.60740513655583 1.3560379705807049 3.0359591074587056 4.117044028839099 3.4263877561095106 +4.55614820032743 4.507552989836162 4.62343293103072 4.6769653451841116 0.07229947335756202 +3.613377800270305 1.636631918822737 1.6973160835430154 2.800191691912681 2.263594240882558 +3.8875224940866544 3.456957556062516 4.971787941015543 4.4731842018348065 0.6587805815146206 +3.0510047536371956 2.2855104194616307 4.400981037941225 1.938962154523347 2.578278215779109 +1.305417553131329 2.2813715005267308 4.871952230697261 1.8722962971152048 3.1544289225326825 +2.295585112456159 4.977163275290982 2.489588547987618 2.8206006932270196 2.7019308806275144 +1.4833730698540126 1.7352203417919467 1.5008743670585578 2.3661771505346567 0.9012080533783884 +3.278542462532254 2.633782921282307 4.621279919595784 1.2230464412565425 3.4588590083058404 +1.0784829772866882 2.940091790336461 2.7599364009483476 4.024830654549628 2.2506765306498675 +2.1915846451642405 4.258633965258657 4.075866843304308 2.3134723735575826 2.716381261659826 +1.165584940763769 1.297538366145155 4.924255669390494 3.8313095383130547 1.100882805709592 +2.3443685446904685 3.687784541769721 4.267263890033162 2.3931214169614545 2.3059003774187157 +2.3134609009171245 2.229087957539592 3.3976918403532124 3.283276796042495 0.14216045842220604 +3.559345810727127 3.8098334721705727 3.249386656570542 2.065423531565581 1.2101705457938228 +3.321219307405772 2.5144240993280076 4.531633282008703 2.9788959632743754 1.7498319030031175 +2.7811444544799135 1.0162318741682421 2.0129552538409663 1.2748141917916116 1.9130521800582834 +2.900311958851447 3.7950255069046532 1.7732834237164172 2.309842916277133 1.0432681448826902 +3.4459800626037658 1.8607944990609369 3.3073600219429733 4.155663117162319 1.7978963852856809 +3.4765061762673417 3.1171984348992394 4.13440699909915 1.8386743871856455 2.323680330512407 +1.6692660544996505 2.4171376291153317 4.187280948530172 1.5802120884069955 2.7122167932416645 +4.212345758425977 3.4306577807918313 3.445264976879495 4.866754709164708 1.6222420144263454 +2.2391230936940754 1.6238370767262134 3.841565145923531 3.557750498379028 0.6775895784595471 +4.686536845076914 4.857513135784169 1.5493533184468617 2.8894327221243983 1.3509425228871708 +4.088420720378309 2.5119206036269097 1.3135459281022328 3.0486473093058253 2.344339868954967 +1.4660760328187568 2.822057671661707 2.1289620926481563 1.6028450143037678 1.4544708264536794 +4.318107016763474 4.9503675864215335 3.8921009591974975 3.6749060575215786 0.6685260303521071 +4.219423646772519 1.4201000208913372 2.359411106963144 4.538250358611572 3.5473304394911467 +1.1772333119539176 1.9804412135767557 2.9894731362481304 4.983164484630482 2.149406458965824 +2.4537474897156737 2.637191784456548 4.786401320864776 1.8277589540742576 2.9643239471826925 +1.35267043390439 2.128644268627687 4.67052608774242 2.065791447065603 2.7178627523326058 +3.468774204463465 4.332052955930889 2.5106713647032883 3.2819347881728924 1.1576257906237268 +3.84129154252144 4.679903374149253 3.3544810597127155 3.5082623302314806 0.8525951461910406 +2.780333829202068 1.6979096251206114 4.622988692754639 2.849037980274654 2.0781105090657768 +1.9864234812041155 1.0450756503685752 3.053307311424215 1.8671087139959641 1.5143324770866955 +3.0380611357335354 3.30592626426453 2.3623999697428966 4.692654898727947 2.345600085509474 +2.4905058587349087 3.2509744511063707 2.669103081164722 2.5839847755243244 0.7652173586233685 +1.1898962998666978 1.1910148459572691 2.2157893991657045 4.25187403973068 2.0360849478079155 +2.665935364633863 3.842305034435064 1.3652071655068694 3.6791471917379783 2.5957973813498256 +1.2428192234380444 4.156479592964519 2.660999260245898 3.62429078017165 3.06876967224815 +1.8196855693267442 3.8474930248266586 3.5007289934625665 2.5797961255337394 2.2271327809119623 +4.511188513406772 4.985966851441888 2.7487119656820718 1.5072675303384417 1.329134589239574 +2.7374468806060532 2.4821002371063976 2.052941272174619 2.479929698218158 0.49751484834292015 +4.739819767596056 3.597058726400674 2.7525653757303914 4.37846822065109 1.9873255542047394 +2.9362284521860156 3.8619615693351848 3.2502384784179115 4.4044388322424775 1.4795811099616913 +1.156456048076493 3.0720399389440662 4.800589990632176 1.3611340378884016 3.9369174354837484 +3.203127538564305 3.2907396860704354 4.525384552358818 4.549471336981512 0.09086287241825446 +2.001966426130286 2.93402081984748 4.88574916863211 3.0817207290827957 2.0305772587001605 +2.421126100683461 3.640908045648073 1.1016799753350037 2.7022407663243446 2.0123774096610396 +2.3282376797466635 4.7669147740807745 1.853700153843512 2.1549902833624355 2.4572182875307176 +3.065501368021348 3.4397649496365754 1.9586235864329655 1.444049197798471 0.6362861227168339 +2.7938665895659422 2.6015145513824636 3.6437950353228983 1.310466529639252 2.341243520445752 +2.1928160774245793 4.094571052622307 1.9165678612387587 1.9829567871803162 1.9029134176774787 +2.399517917619294 4.90914217824926 1.6148957059551994 2.5816127275427974 2.6893783165203256 +3.0704285436309293 3.704015324208755 3.513622833810499 4.877072971583236 1.50347214364466 +2.242468302738922 4.727411154715151 3.1473997679051986 4.478847436430469 2.819165456586245 +2.279810880734306 1.068571285376951 2.9816357717063204 3.616843110540473 1.3676950393527845 +4.598696743936195 4.971831537846953 1.8357615947418684 4.34384834227035 2.5356909724086694 +3.1133925832863025 2.9356910383069916 2.2777171965615097 3.6926599755260776 1.4260578202976233 +4.817865855710614 2.8802101299482086 1.4654915482436022 1.4077260129881433 1.9385165897260677 +4.1181702263096565 1.4701135083833257 1.7273138316403163 3.743006355225811 3.3279454218771725 +3.820127667774877 1.47141180787987 4.899579954116671 2.659847912378643 3.245437691484823 +2.641740396097669 3.1090359713075384 2.6080157123693084 3.1212354809753386 0.6940891048696486 +4.29864115493773 2.0455340961966297 2.869667338218826 2.8206290045884486 2.253640649330371 +3.940321092886361 4.949983797753186 2.9892014599131116 3.6382831368738238 1.2003023789717004 +2.419425328884607 1.8096229615245907 1.777906340358296 1.4502319917477462 0.692263971310965 +4.135915695061453 2.471317589806526 3.3919694870385277 3.4083964600076437 1.664679157513309 +2.3899833568716677 1.3138501438463055 3.4191982481064787 1.964163658835488 1.8097481449503658 +3.604965157297687 4.697851259550225 2.3247759732701323 1.7758427725390367 1.2229994649882845 +3.180964595128281 1.436526642762359 1.3025508574787334 4.95133180239462 4.044337542000652 +3.24896952848849 2.2527189802850067 1.7427528453461654 3.8965511793838017 2.3730491816435326 +2.799489523903691 4.322836593403059 1.6720539261582754 2.7129956145133485 1.8450327619605627 +1.292811226035122 3.066753610071757 3.253188832696914 2.2106395368447327 2.057615274088783 +1.2082232041813805 2.57212527946418 3.5463282604269555 4.7953913281907425 1.8494289438127138 +1.2724585488485394 3.3591090454981587 1.509574441140904 3.357379623582164 2.787201874178632 +2.376079644649149 1.8061832226318857 1.5900472026132322 1.9156283123969442 0.6563421294386581 +4.214789028951992 3.720125810764446 2.9048683965838444 1.1075270917948976 1.8641693767810084 +4.863789456917109 4.64147513317849 1.2172346541149577 3.769537775249374 2.5619669944579386 +3.833934451576937 1.0811338197101588 1.7724939890316413 1.5160319217248488 2.764721344145447 +1.895117535021642 3.674056655043045 1.4513965239488495 3.3749605003217567 2.6200615954481057 +2.3450618834249153 4.402989151681468 4.0124081053503815 4.53011063581345 2.1220463122848527 +1.850492008387988 2.301452362072233 3.7161688089968536 4.367231423933854 0.7919897531935773 +3.3384156618159335 2.3750286937732286 1.3446129732251064 1.010661375645621 1.0196264608769263 +3.368370203415247 4.367898782963936 2.998075769644011 3.385539315931557 1.0720006441398908 +2.5904317957119365 1.7100068971060223 1.9542790437889055 3.5455063597784084 1.8185577728618885 +1.6850007756855963 3.902569091675012 2.682496615401879 1.8970164683973167 2.352570572250372 +2.6140231721171396 2.4951155759405217 4.095344798445459 4.3996289322642745 0.32669228720979704 +1.6755149588511666 4.021108045187301 3.3462335898053914 4.427855980683272 2.58296610955627 +2.7744503213410856 1.4926336526374988 3.853561630599574 1.8685169062742224 2.3629338817957373 +2.3551821795775485 3.0075855145375257 4.497660621636857 1.9020315947015676 2.6763632333702274 +4.291489055626297 2.5336992264080225 3.323957908870428 2.0122211551939753 2.193280281826481 +3.4282887692606443 1.9830999001603287 4.05209688490669 4.983322013184509 1.7192298004942475 +4.797348751281353 1.0367302004272738 2.2459222266412544 2.4505518399355677 3.766181775175598 +1.4952125532154485 1.9853548160736896 1.5037349744539719 4.05449994409744 2.5974297619377587 +2.479269500506402 4.022228915203199 1.3298893532998135 3.7264365604274117 2.8502916116412673 +4.709373185800901 3.6336674898288934 3.6761633081839395 3.824096150667543 1.0858300374514882 +3.045411516406793 3.7279998961214478 3.6333844792451573 4.703735346035236 1.2694793713013814 +2.978998720524732 2.8694756931574084 2.6438077525006327 2.5992020107994245 0.11825804715290399 +4.411353834447703 1.2714055277166896 1.2664996704249383 4.996202060974638 4.875444112182509 +1.4181569759006365 3.1546347501119105 1.2141053812042908 4.966956715364613 4.13512372204734 +1.917988008048669 2.4850749875233893 3.60730966486349 1.7623098864436928 1.9301844017240586 +1.845546635263649 4.907997634959051 3.8902350044907354 4.234265899536541 3.081714357671941 +4.842619006288187 1.1106036992132715 4.988340950664103 3.7079353391529235 3.945551518131628 +4.772788145788514 1.2792661574174282 3.0155224499591124 2.6106055611479158 3.516909661915814 +1.6822181161066165 3.131449303566808 1.0797961150038433 4.35342186257232 3.580069352659323 +3.988705681807884 4.767948665613005 1.9951337068728163 4.976607834686384 3.0816241825750232 +3.836307389081945 4.851625271499576 1.3459545352566304 4.252493708280296 3.078772542211931 +3.042246391644486 4.64878235037847 3.4868711337056753 4.297873712454716 1.7996341209931852 +4.762158477638289 2.707912463937198 4.266505665266751 1.8547258897564634 3.1680606639342113 +4.1849438858457 4.678459798164312 2.956360463591767 4.960865257784413 2.064363685413249 +1.4015622594308623 2.195944659971017 1.6720431830385398 3.1675161676710926 1.6933643571463686 +1.0882059669758708 3.7090622306534162 2.43253571058341 2.4423505375937533 2.6208746413529713 +2.8579939023080554 2.2002928054537256 1.3381872050917134 3.552489482072703 2.309914566958394 +1.61461716069444 1.8233345804127343 2.30607388960878 2.994444142665148 0.7193167359284438 +2.4914912050746585 1.9035662830660138 1.405011620211365 4.538656386743984 3.1883201277061475 +4.045709072700145 3.7826110258366206 1.7273967819019052 2.078709889467865 0.4389094232424875 +1.5286446828632383 3.678910171984407 1.2708881082725427 2.5806681587569136 2.5177699367401183 +1.1551021221100757 3.6616573876925886 2.2848558809756216 2.022498482037922 2.5202481433773096 +3.5492920954639895 3.120389591766869 2.2640719425279254 2.877166999291335 0.7482265073528113 +4.99187814065983 2.496304337327733 4.239032587946146 3.5982062863525015 2.576537784836779 +4.539796578828623 4.569670523448272 3.97132654815933 1.1771249225465068 2.7943613182880416 +3.927981183859982 3.3475747148473975 2.844721732127113 4.160787696348027 1.438367578698985 +2.0044306274405868 2.5905425034852856 2.9465055747227384 4.925354218501543 2.0638238990344715 +3.1923402363247195 4.7789599618925696 1.3912051175083793 3.250317370874155 2.444107306190907 +1.934177280396392 4.8512569551272655 1.2373113271851333 4.442476586712294 4.333871037491516 +1.9546857506701034 1.7228506534005867 1.5849912240030295 4.371391374641613 2.7960281314401483 +4.680572553380287 2.272810155003301 4.985877244221333 1.548824195467632 4.196504906107606 +4.286764387031484 4.110754917230812 3.406788266564069 4.824333660158321 1.4284307040804591 +4.018449899196483 3.2556174275796748 1.7043841661071406 3.531679454161115 1.9801316747876303 +2.1396845395595845 1.7349948139077576 4.676804243390929 1.4568613021886319 3.2452744596792815 +3.8265685628925477 3.610942393162791 3.910168872019438 1.8112014655170516 2.1100139380183442 +2.887426372647692 4.09259241950628 1.589352312456521 2.363462613351057 1.4323658605439413 +3.47089243874919 3.5372388107365618 4.0568727691139275 2.165381340711083 1.8926546607337853 +3.4431168805414423 4.831574950280478 3.5400733241954714 3.811352663200335 1.4147113808810492 +1.2103466648846344 4.529714724810063 2.299172589277409 3.799982948443351 3.642888421490961 +2.118119352048689 3.2367925759806457 2.177032669724286 4.964493753847535 3.003559401350983 +1.2294654134413552 4.608752060720802 4.710581328607313 4.340043202488875 3.399540667117916 +4.900856741191635 1.9304798369659597 4.4971884367661 3.6632182461118656 3.085230174890873 +1.5392709823967885 4.421068952966431 1.9020181017091509 1.0231203343968263 3.0128426491547646 +1.9773895108601414 3.9983606282244217 2.6710345745169524 4.69461045819031 2.8599272043541664 +3.0678016181998893 3.1137886748680015 3.5295658901696587 4.645905177824285 1.117286093416648 +4.124042722327159 1.6687090560339701 4.416069940059364 2.928618600218222 2.870744659705555 +2.383688089513367 3.3571147670628685 4.66466201650949 2.2062766347510974 2.644091182582102 +4.746189189632206 4.11049265575139 1.6496259507457873 1.0505928120864088 0.8734705400871801 +3.3459689896823046 4.197189236594658 4.230174951379366 4.097919631213053 0.8614333279284141 +1.623655746790893 2.993109302974682 4.000684773454002 1.1890640116299829 3.127397376551995 +2.0398175796687514 2.7910018431574803 1.6521638485283718 3.4726458956083666 1.9693736774552646 +3.8763453264779746 2.8125746199654063 1.1428106745368147 4.598480700779426 3.6156968133827068 +4.4292082299867825 4.991151963866985 1.3585517462564147 3.749859148307943 2.4564469974240546 +1.1670298206663463 3.6475505667586687 1.1005739156595378 2.96458741766339 3.1028260517546062 +2.788519904678555 4.0707655054284615 2.276269719104539 2.2596550369461044 1.2823532385055663 +4.981088238326953 2.7427750541968834 1.4006198849494655 3.0867584198036266 2.8023399274482435 +2.947122702402905 2.8520040817124377 4.455027962640254 2.7083964534411438 1.7492195919692928 +3.7649229251007332 1.447878091958604 4.445217038362947 1.7609038154243497 3.546016671933965 +3.7805396211533986 4.650272187918875 3.515410912121217 2.4698861747063208 1.3599840860241534 +4.280124436068261 2.6235100733515857 2.8930650210859103 3.53590514864972 1.776967803975478 +4.479483409412634 2.861257996591672 4.958530385879438 3.409185765082818 2.240339760101355 +4.051843691774528 4.181562975416977 3.234525393031221 1.9752433157143146 1.2659456713462445 +3.974080549899736 4.907447173026057 1.7912312643424166 1.9459014291400933 0.946095192380118 +4.153479455171969 2.894403890677962 3.6096327461175495 1.2353176704687137 2.687497601033207 +2.3832681728643035 1.8314017480875697 1.9099922657486714 4.963643242121549 3.1031179217520695 +3.8004185877844017 1.094746915816522 1.0251838931196344 2.839928785282519 3.2579070306134796 +4.399940294577384 1.2691970665749506 3.3858520639494976 4.3467359008606685 3.274881815840112 +4.980854576841821 1.9538353955996808 3.3787039098030673 2.1583453526107927 3.2637585896815726 +2.0913162341880547 4.649095153998535 1.3777551015182254 4.082063135302775 3.7222996849015964 +4.018545065980502 2.195752196217889 4.026244122618364 1.4383615256886104 3.1653925793729454 +2.2614507908973067 4.756061559322167 4.45467091455205 3.3802837770986294 2.716135233574836 +4.8861233995512645 4.006787971237323 4.741598501821188 1.386595378093988 3.4683247765610608 +4.0554166862778045 3.3239634793198425 2.151489010750052 1.8498608943484238 0.791203712436362 +1.5370041929820997 3.481856745130214 2.746340261250451 3.5477505234162665 2.1034994314003783 +2.393391969815564 1.396141975771457 2.0303701927081406 1.3871666609544682 1.1866837547895264 +1.7441753419165558 3.8704357926506043 3.7498561479869883 3.3322602256300358 2.1668802132847382 +2.7132356742197317 4.379908403874982 4.446517539463887 1.7427572340392965 3.176179745695473 +2.934671304075041 2.9275681516317307 3.662284546133849 1.8869543133502185 1.7753444426956173 +1.9471057432200616 4.74140150694667 2.061539228622762 2.999330998963245 2.947463692685426 +2.322876942756733 1.7852454326545337 2.3557930030589964 4.8257736435681355 2.5278156588534513 +1.0090673102950989 4.93758245436165 2.253970760980154 1.5066648837497234 3.9989620292400105 +1.1810004791067943 3.447050583433316 1.635532657322917 4.05033196425844 3.311531181809183 +3.818253910031046 4.112800767601533 3.6340024013480385 1.2027020504964927 2.4490772236406713 +3.3978249263495877 2.7011929708189353 1.6422739459401479 4.491694645411907 2.9333418491619057 +4.679083012862886 3.6478600209916547 2.3839994274756418 2.1467954499530033 1.0581524398291648 +3.7847698859459133 3.531439884513247 1.2120902780286684 3.3454184135963283 2.1483167884719565 +3.2816885902449213 3.6311303209616663 2.8463488559217427 2.8887012963668495 0.35199893803528787 +1.8906798228145498 4.263706548009866 2.63707327193231 4.227686567076006 2.8568000443116586 +4.80535511092954 3.0406223309467504 1.2117230398671386 3.7650379406337957 3.103820028162527 +1.0142147664162828 3.5868744412775673 4.088129615725801 2.526837283369984 3.0093540087085864 +3.2184417376795134 1.3416441720861685 3.95341218487646 3.8594786105729355 1.8791467794183991 +2.2285186037144458 3.9614470321875768 4.320289931779632 4.599198024715396 1.755229518471992 +2.8290764551810703 3.9195133576302763 1.7998881096361008 3.051990950937901 1.6603656715973925 +3.7106683544628343 2.055820196837414 1.7125173591180758 3.175367371257137 2.2087219342442133 +2.9939624451212814 1.8042666482284133 1.061797156884456 1.2446105293606862 1.203659760190017 +4.374927229353107 1.0623206553458804 4.546353342216271 1.5804459460881053 4.446343328687479 +3.1476398488775197 2.68393381747359 2.7579299646040556 4.495721850393199 1.7985949855025642 +4.561153104001729 3.9714597788628194 4.028741916717479 1.4170101344821977 2.67747663296083 +4.666388629218396 3.2637828768227055 3.2246523150653874 2.174779265557065 1.752009222788906 +2.389495383291784 3.7697537638880045 4.871603823881229 3.6188477959851437 1.8640039867543416 +4.574781946243869 3.438468529777949 3.852216816676508 2.6536134023958593 1.6516229367400053 +1.854417375281662 4.02205106699636 1.4655300572730008 1.8932281315056003 2.2094255959771454 +3.0429896383774677 3.312275280479832 1.4464197502435234 1.3315797289854698 0.2927507259171747 +1.868202008098942 3.506119730701875 1.8537931960692817 4.518608473296322 3.1279410045202907 +4.430729376465555 3.0873986951408767 2.3107591182391665 1.7376918224928155 1.46046001138075 +4.496874376277553 2.8970046351157253 2.940160996577674 3.3626000066817143 1.6547017574000746 +1.6239874354586767 4.470707485394373 2.521598298294577 3.697740467223826 3.080117764670612 +3.6510646857441595 3.6710889912487983 4.0164450243799665 3.49527859340741 0.5215509769750368 +3.584147912214438 2.9517932158191686 4.674272474113628 3.3155777592835074 1.498640647440358 +2.087128564120327 1.5954048575879352 4.711400228608728 2.510327614976966 2.255329876990439 +1.7973324289432733 2.2125985768781677 3.6550006545428584 1.7018606192797279 1.9967979294281002 +4.86886981589978 3.245206568192762 3.1014560202037824 4.181413302098042 1.9500230954198818 +4.849926311292978 4.956298175618854 3.4929164521084 2.413964157450118 1.0841831153769808 +2.8896700536934343 2.8697052877989857 1.3035818813142388 3.0973455323742547 1.7938747525235363 +1.378634445120201 2.287779185410595 1.165889188749488 1.3508464402117815 0.9277679363214562 +3.852654847111746 4.171516179911995 3.9145844337217173 1.5614673696973993 2.3746225945521484 +2.2817295488006994 1.330871472000613 2.2429258283377562 3.331479303822502 1.445364919736839 +2.299751583125214 1.5461680836505747 3.944528002058905 1.3251706659491536 2.7256046934418823 +3.8560429227777915 2.2618911051696715 3.6925889561498817 4.007074173548492 1.6248756781814182 +1.9405637842068972 2.3740039549853322 4.764232494462657 4.303729936820973 0.6324025515753169 +3.975210284048113 3.1393984869619955 1.435887214528495 4.711575758522697 3.380638519185862 +3.5879438327915416 4.899978665961561 2.197402428285123 2.3206673710647796 1.317812448556301 +3.1214610871424417 3.853000216014818 3.5635396227458735 2.23307008757449 1.5183210072611497 +1.9515137859477627 3.8146142056046766 4.394058165334625 3.6081790495502557 2.022065567273176 +1.8711433090950673 1.4942603638766658 4.144902739826214 1.5853244317969493 2.5871764279481306 +3.072284892993171 2.4580818322273634 1.3762980776446074 1.9475026540983276 0.8387610315314847 +4.982795539911262 2.683708716685304 2.7949037346566774 1.7235052877665482 2.5364729158281594 +2.5133018493184593 4.224925162533849 3.0647717760392137 1.560103031618815 2.27896520306434 +4.920502444478224 2.0153392642442522 3.115484961104514 3.688999010798478 2.961231410913969 +1.8057632584267624 2.810457745988956 1.1580240700436781 2.6659370126563644 1.8119637015781276 +4.995003445070986 3.881255111806106 1.1841217424170667 4.0405014565001185 3.0658343759693665 +2.176002253681879 4.92148670720189 2.455135004198438 3.3621049508808243 2.8914147694001158 +3.2373304234158033 2.927468822213159 2.515223132450844 4.0379896854250426 1.553973032828044 +4.433477471652077 4.257606090048437 2.76933614467576 2.6109002382403936 0.23671222890921653 +2.957593467533154 1.572564448749635 1.8048275437220758 2.6078762995095777 1.6009974038218464 +1.3783667011051932 1.2569140709325777 3.308705147422673 4.984841365152513 1.6805306786136158 +4.138608803961498 4.622757243817242 4.269256387220864 3.863280961898797 0.6318352299295948 +3.830944156115107 3.411230419594759 1.4826125353631316 3.0382443323341093 1.6112572446294928 +4.876195189872064 3.5180452611639663 1.3155912403252281 4.6722253953378505 3.6209893785327667 +4.868317865751709 2.962103020917815 4.436964302230814 3.685570774972302 2.048962485618293 +4.380442358957289 2.6408411080246865 4.014783384450902 1.1393472520458037 3.360706096014209 +2.3332193022075063 4.895194723210443 2.224115519343031 1.379001110749015 2.6977650789934224 +1.3658478735506523 1.4664523394217164 1.9722985973808576 3.1675811666954115 1.1995089324637827 +2.182673475482313 4.456069366976648 3.4960224220095175 4.423932554064439 2.4554726821191686 +3.952324539930088 2.569863011558213 4.442015908193229 3.293289540082334 1.7974348795496173 +3.6388700716784266 1.0323100409009949 1.2428781962826734 3.36297338451589 3.359904582159452 +4.802679559272785 2.078198026370174 3.1922699996074724 3.7995329854689732 2.7913380227275923 +1.6581664829322578 3.1586350214582564 4.814789620566185 3.368451624686749 2.084058404515308 +3.3687499187209946 3.6479710522207927 3.2225034922366977 2.388883597722754 0.8791396760028244 +2.936811295572921 4.22806592555788 2.319860151803599 1.8017464364368765 1.3913232340145487 +1.8939608729180102 2.3822321024761193 3.943845930549893 4.296129619435706 0.6020901851626413 +3.042137885753636 3.5499145743177625 1.0336550253438226 3.7486664818465223 2.7620869599616267 +2.6746421909632367 2.024934045025683 4.813895957240927 3.238297579904461 1.7042977796039394 +4.9960738428643054 2.6414572593657266 3.925487989027581 2.8139937223207157 2.6037739456812976 +1.8429015227319496 4.438306526816479 2.7118046534283033 1.337543804639501 2.9367873630449886 +2.676662762704814 4.668256858806333 2.8602073653018443 3.877194206881833 2.236226571609699 +2.7605187260000985 3.4638034183223123 4.001806947820991 4.49776471362377 0.860571591394252 +2.091746436497914 4.074047470152679 4.694937228485026 2.8219688001748184 2.7271831844369308 +3.072268052627026 3.636496416558596 3.8541875435004327 4.656528727528801 0.9808695235620998 +4.5850114102115365 3.973372656102544 4.943053020093646 2.2747562717342475 2.737500594124746 +2.0333357762982116 1.93365978716202 1.5314551476644973 2.166073867405558 0.6423988031247109 +3.1138135668739304 2.53109500184736 4.929532897503034 4.126651353547475 0.992058314642384 +2.5719056200660777 3.243196446356406 4.518856376452114 4.406595445853922 0.6806128782210367 +1.5953006658549076 4.974466988584689 4.41538158946869 1.0665415626052663 4.75746724236686 +2.5192161068953913 2.0364600647324727 4.211394990518317 2.1383486412430135 2.128514637602586 +1.7423421129856074 1.1671249822678207 1.4488127358197493 2.8526181584277612 1.517084180925654 +4.632552250286558 4.044533299886255 2.1655357562594286 1.4744799990340205 0.9073722199980868 +3.488452287601157 3.9349610430516604 2.923020393467622 1.1704187905528554 1.8085857588827152 +1.923338822453498 3.229704899452903 3.2983305241180125 4.103483761126072 1.5345566337543144 +3.42260312303059 4.071868447439519 4.716147655141269 4.595238051625073 0.660427583995607 +1.3991145795249382 2.881052976175473 1.0806763607026704 3.390606851359191 2.744434419535623 +2.0297375238555797 1.322867269140544 1.8138586647887456 4.770983494920339 3.0404362874399626 +2.9977237177939826 4.917447079014891 4.128581433536332 4.505628838810313 1.9564004011043197 +4.541204634254909 2.9663691613175533 2.000385221301386 2.574179148015939 1.6761104489729575 +1.6840140983215908 1.0329806342260701 1.6104370701308781 1.3916631206772165 0.6868090071714019 +2.0550661916055617 1.4209694502459174 4.695283231140568 4.284120111144681 0.7557339403835664 +1.0717654791594469 4.433912165665092 1.9425812374824694 3.1586937716594856 3.575326563736987 +4.962661438055916 4.876834708115826 3.5298925246148114 3.280706650260144 0.26355232412200286 +3.621893486791198 3.224509765197831 2.4804865088747166 1.294362808061996 1.250920963057642 +2.0210721230278286 4.26738501541192 2.125278415714296 4.886939380802042 3.5598725955545603 +2.694593989107651 1.6678853665998843 1.4794847312397068 4.996860129860249 3.664158878972473 +3.405521821541691 3.1958719841597345 3.672764746032129 3.8611212688349856 0.2818354732759236 +4.415486980143655 1.6252471565442996 3.168930587940589 3.326234832703457 2.7946704454407816 +1.375787838695893 2.329777162825683 1.8279914441481542 1.6845335945538351 0.9647153907572119 +3.4335534008608635 4.324092574398392 1.7866744200311224 4.835679179482458 3.176395762930338 +2.2699688618107374 1.4531533258945681 2.4319892486078993 1.4761844701231923 1.2572789643862727 +4.91211747215727 1.3098789250130318 2.4276174478859147 4.443032582668677 4.127713739595232 +1.4431937469910654 1.8321612605294564 4.893391588645585 2.411455529613829 2.5122305482798195 +3.030028798960308 4.539610995878796 4.136526088527206 4.793413706230567 1.6463109522642572 +4.6433901177256045 1.2463570279927083 2.781381715179152 3.3198393168985176 3.4394433272827154 +4.019613514092864 1.8013169131482072 3.6567785598498768 4.323374669825606 2.3162880182735033 +1.4361872725159457 1.5471461648224034 1.0388763943656727 4.174245336715513 3.1373317134842202 +3.0311327477588654 4.44558312159681 2.0497865903234183 4.1041265800098365 2.4941897789212217 +4.025438557015835 4.557579440429768 2.918733696103222 4.11393138478663 1.3083086160515498 +2.1802272725153187 2.23527927095769 2.003949584103761 4.752716948214388 2.749318596403877 +2.811863491286125 4.054727220835309 4.160990652602134 4.996189255561651 1.497420100243895 +1.979312914249158 3.0190369618741184 3.1451687643125386 2.1717072645434805 1.4243080378704092 +1.2315068380182117 2.949306033858382 4.759659172521396 4.634872568302701 1.7223256874997739 +4.449719656821772 2.185718217204262 1.2468343181786214 1.4348659597133633 2.2717962973841663 +4.2703043682693576 2.4633107928310687 3.4067730105769765 2.125036229823966 2.2154175581163797 +2.774393217650663 3.64378441641934 1.6729763714831107 4.196959705294951 2.6695192312205522 +4.670628442936467 4.753198373350993 1.8749544435807235 1.9703917365970063 0.12619853528046798 +2.2488519038606416 2.212258957999129 3.608660458470297 1.7669668519736477 1.8420571065787994 +1.9122572569954825 1.1795714511830253 2.061548849447758 3.5685476533760165 1.675671174508964 +3.876828989051267 4.896754873974776 2.0213582091332656 3.863117922662087 2.1053093960543587 +3.932214427233544 2.83351500592977 3.244591486034969 4.5465838884505985 1.70362103600574 +1.0096381218590849 2.5332782342977533 4.6138465775290705 2.6599681893696605 2.477724752257307 +3.676131742053203 3.523272783997808 3.2906130193110332 4.270084993218427 0.9913280025944127 +4.222343134720919 2.388468268502686 1.350585822764108 1.1542624254449856 1.844353518521291 +3.04829732826604 2.170714852870572 2.3446168507330354 1.3099416325616415 1.3567253989732992 +3.515460508597074 1.5947899340864127 3.232975629077765 3.62426816054955 1.9601237973599297 +3.468142690454703 2.3448272085850803 3.2683834865009387 2.6472329365123772 1.2836143024908515 +3.0405916460931013 3.7689139525487465 4.626297346266142 3.1308731407026187 1.6633541224484236 +1.4189565427452395 1.899496797936084 1.7653850711989558 4.047404414488981 2.3320658695690226 +2.24855129722957 3.100012752612123 3.910558114258031 4.678704588949241 1.1467500235808628 +1.8995638464201394 1.9235960162705803 4.858233795508134 3.6335693263817563 1.2249002437457155 +3.269102309175921 4.875191507954682 1.150202771431613 3.1174578294350375 2.539609217512383 +2.6047357310742583 1.3687138607578775 1.3583413136929554 1.903375930738119 1.3508563201458446 +1.7122506935802555 4.870662551805905 4.294723947938658 1.7946691267198887 4.028131027570927 +3.520238720436221 3.3916080457937356 4.89898243433205 2.6264200924090715 2.2761997821776174 +3.0159242780888302 3.7018074994117938 4.507682026758685 3.4382121300720154 1.2705123585433402 +4.166477250917265 1.8046654186391478 1.2302824460443844 2.9626847847806554 2.929056673119832 +2.13268646302265 3.130751741544805 2.0344738282443258 4.911252497345577 3.0449942218643824 +2.5250185766181534 2.459544454142343 2.676590700353449 1.59546774687491 1.083103735222133 +4.164864149322209 3.1339647199520546 2.4113445994294276 1.510393654624619 1.3691114777184463 +1.6940474212450645 4.290160665479027 3.8072710388627673 4.006319537977029 2.6037327593066513 +3.0911805481593175 2.5287726141847227 4.218404253103819 3.2851739801175177 1.0895969101533187 +2.911239132468328 2.8960448189770776 3.829799925993321 4.530197635584025 0.7005625016815945 +2.6556960726041092 2.6554064101910204 2.4762731872382213 3.3033928087044915 0.827119672187054 +2.8370577129057777 1.0687115747752514 3.006237368943326 1.8228270499514383 2.1277941741008757 +4.356660074118068 1.036794664117672 4.437891474691918 2.6195607779303245 3.785212393420295 +3.817726423606039 2.274960371198408 2.8318774476350086 3.953528949322689 1.907414266408756 +2.348513208365775 3.265265907272015 2.6003464481890592 4.737874291627101 2.3258247553125666 +1.750773258872988 4.653026989710996 1.1350952688635418 2.508995248033753 3.211024427021234 +1.0424539512329547 3.5859221886250303 3.90065238309022 1.5976543023654561 3.431185048120299 +3.044053035246651 3.4707805020109466 1.7350755032186433 3.5428313907775473 1.8574384727077649 +2.2544400490649825 3.7188036289966635 1.8875576050932783 1.3574663092405816 1.557355924690666 +2.7936353375063656 3.8974543150702665 1.0138670559897465 1.3038894325790054 1.141284063742545 +3.448796086116775 4.2841661439060115 2.536690956146668 1.134306413910739 1.6323374460426585 +4.502505485144283 3.405355462107943 3.1636173633713662 1.659827576905231 1.86148378852154 +2.1850171749867555 3.47126692314548 1.5054563556856584 3.4914669968294167 2.3661522946282694 +3.750291912067724 2.450531378336828 3.4855254216012974 3.900498642734801 1.3643973832070844 +3.0471592993031535 3.552979446917729 3.914010168672884 3.2184010243250976 0.8600733128246048 +4.630817244655223 4.849504903407244 1.459202207031685 2.6898197101790764 1.249897488253801 +4.489603634592584 2.5927722513308793 2.7991422329164197 1.2260865514640953 2.464238923780717 +4.382087860530491 2.9035112394095597 2.0371551451820396 1.9181252849932853 1.4833600143397232 +2.7508258962956895 4.0551233002063265 3.0386983809473773 4.460768536126847 1.9296308569517093 +4.914986545958391 2.7696935408051218 4.749780051183525 2.2063764788413347 3.3273388480529844 +2.1027146268665904 3.8520911567035014 2.8111956500732354 3.5359300893492254 1.8935570365365064 +1.0490375142443389 4.0092353000191085 3.395159678693878 2.723100356575152 3.035528728797099 +4.422207735407199 1.8582330518525882 4.173415080270949 3.5161814076198787 2.646870279854187 +4.747419535170524 1.6000473828572277 3.0360235999388743 1.7272807041123817 3.4086301401785355 +1.9044485878833184 4.171111548426634 2.41410293945602 2.3369610773234943 2.2679752740257686 +2.2333400358411613 3.5642862392872434 4.545822944869091 3.4053178259145223 1.7527606005467815 +4.603303225050917 4.1231532084283575 3.2102775702458266 3.0696493202168798 0.5003202406147966 +1.8980773695436133 1.3747931714665724 2.049013345411107 3.5342781789939965 1.5747501318733523 +4.142695662231452 4.266249396306403 2.833423303581309 4.652227890137023 1.8229963382519354 +3.1484742071246155 1.789700909720811 3.0809679207669483 4.501013677814994 1.9653994061889213 +2.8541085374498376 2.712328497068203 3.444505111681792 4.168293237884546 0.7375437827564623 +3.399328018684059 4.2357482144523075 4.557141658431239 3.0088203682516617 1.7598004322968972 +2.2017732081798385 4.582544612861092 4.983225749252763 3.8607829798603404 2.632099969968709 +3.916245516527816 1.0368018086575108 2.812566028523335 2.5216326495676205 2.8941040578708432 +1.8922934953052208 2.312250258280322 2.057214030667121 4.135509677534817 2.1203010348905034 +3.6543641836530294 3.2733438429160335 2.357796073340183 3.9533529062058723 1.6404201007545982 +1.4190432805866084 3.4869903892723264 3.1007977975431857 4.341904783569394 2.411794310277035 +1.9595732878103624 4.4621171176203696 3.774686046567537 3.5094958008708863 2.516555480519511 +2.952754662919816 3.7082121915276276 3.3314006093736652 1.6099860414394995 1.879889409573391 +3.1320123454036257 1.448746377698813 3.6476257117404147 4.323670812977149 1.8139518452647538 +2.5055305595761355 2.347462550193145 3.7729551238274346 3.623653248799605 0.21743170301758397 +2.0908627263830066 3.5488800302390553 3.280712081759174 1.6663288878400961 2.175326999591561 +2.578619558119285 2.252171966721193 4.379754447516892 4.296338753141562 0.336936504400657 +4.182120407747512 2.27727233950221 2.872223517085784 1.565285727058261 2.3100936236654745 +3.761616728430543 2.378337331059762 2.0736264258680284 4.347577853250553 2.6616380267206683 +1.858977148679196 1.618222287095624 2.9434314489688904 2.5120095548141155 0.494052379947935 +3.669651914976298 4.323715061527761 2.8180650797407503 3.239026977860679 0.7778222929085624 +3.2964417204494163 3.979113890936239 2.551546030417836 4.546348987683064 2.108383297854375 +1.8969136708634582 4.001703894039503 4.7566359317921965 3.2410410737172946 2.5936787884008585 +1.6873447381885032 3.7667862710131 3.7030467765307202 1.764973939758891 2.842569860015531 +2.2740910064501225 4.195207136344592 2.3929155709615526 4.813308922513914 3.090144197408849 +4.8791799540640675 2.924786131323187 4.794078288102158 2.5813768559834798 2.9522369217371023 +4.444251259844143 3.9385677397213237 3.7853894462537663 1.684965335823228 2.160439137351877 +1.5358588160683238 2.543332875562892 1.5543245529513081 1.5043625676308334 1.0087121395778025 +2.314075324660999 2.3645628379222257 2.700703978584738 4.7396358646478065 2.039556869763627 +1.6119308107522339 3.1415924378472915 1.3996541364575212 4.264609936653811 3.2477432827250157 +1.6106724250436821 2.391745194000812 2.167605447743377 4.487181527042937 2.447551400495008 +1.082416866281267 1.219404118351601 4.600868133258595 2.7537147676273963 1.8522259752504402 +1.7589692975683033 4.489273390579006 3.9212672519580414 2.7946427914430605 2.9536152619022116 +3.6162734325325445 3.7799525685181568 3.422197112082238 4.696805699713955 1.2850750605398567 +2.9917204878402415 3.1607093241815174 3.9522276501612277 2.213307359939192 1.7471121894583264 +1.9706618099773778 2.538843269786603 4.3027579041536095 4.603025761039133 0.6426437248970591 +2.588985180275922 1.731861716856641 1.0982565822853583 4.295183234165208 3.3098339307348286 +3.594120780825567 1.3881522481025952 4.275984643143263 3.646395681007043 2.2940530570602995 +4.636846862492419 3.1136715022173727 4.208187439475174 3.537722912497003 1.6642072767792722 +4.732353690711006 1.9129210885803065 2.321495161395316 1.7685198096491086 2.873148436401491 +3.5508789488142294 3.567001859188522 4.606937256190074 1.0603466330624238 3.5466272705622606 +4.487644439005335 4.3997020331553385 3.9035980611478687 4.925519362208858 1.025698304721652 +2.6259097823356643 2.638699674223841 1.1004346934873537 2.3106608321680144 1.2102937197558339 +2.3069377928712744 2.1056084060642934 2.574416020426793 2.2271926892372536 0.40136960985410386 +2.872258301951202 1.68499070816403 3.483064090973896 1.1005196703272246 2.6619771328115807 +3.3900224326278297 3.847268363630978 4.056468389623693 4.70531249939944 0.7937710754427989 +1.0785526660626439 1.403022269258888 2.682811726792158 2.9987842685261628 0.45290083961964067 +3.592109320225058 3.639759303982374 1.7803187437897958 1.8489878554101349 0.08358210240714872 +2.569227023938424 1.694329131613829 2.4954406790780066 2.1409071047497292 0.944002318492917 +4.360419781199997 1.7316844539780658 1.7510561427896305 2.776488464105023 2.821659239912373 +4.938201521706679 4.674318420505228 4.529188945159212 3.923825559638969 0.6603780126777582 +4.413059102848221 1.3546780620851204 4.990768465175442 4.762410152674542 3.0668945383543016 +1.709406774738504 2.8135339139293882 2.764657314419941 3.953886693800502 1.6227640790576185 +4.436201411130886 1.9531396722448142 4.571402303305466 4.2770794131135865 2.50044427308645 +1.2359457167175272 4.147318442912056 3.382807496779868 3.6904662053140687 2.9275834798970792 +2.5367024598199066 1.003362257816573 2.8141032073087704 4.403182784522679 2.2082359651536243 +2.845573515370379 3.472909238928168 2.2557407916795937 1.6490075583147656 0.8727401254217164 +4.106980542697589 4.822349339176706 1.089011054555972 2.804254023276391 1.858443154019196 +3.6866691178028552 4.996578415393931 2.175080887421756 2.428981218875921 1.3342892288511068 +2.511040947100377 2.069624061944471 1.9561960448228284 1.8271340493713644 0.45989766815092264 +4.533110319140448 2.2248245919086926 4.899169292953777 4.705072849183075 2.316431831076897 +1.8223476812504602 4.466126322252056 2.675955935400573 1.8240055634880963 2.777658175301283 +3.9772917854944008 2.311529618239732 4.787411726835892 1.7134787268752611 3.496259098823188 +4.324979816553924 2.563276863876287 1.6291015308510586 2.5010247983070544 1.9656671838854725 +1.5603736947900084 4.323215427854265 4.2526013998122405 4.437064757639185 2.768992808286489 +2.890165807699027 4.268142000622964 3.0425034032227813 2.1278771598497555 1.6538922435672165 +4.848267638646835 2.3194506356606275 1.2453535808178002 2.0257258536020384 2.6464875436552844 +2.2642954854501127 4.5536255229845395 2.848599779596656 3.6284659408737334 2.418516745913169 +2.9931683962593674 3.524160041483409 3.7505158934120426 1.3244001305265543 2.483543803160953 +3.5021443596750976 2.4187582223564847 1.8920127370291238 2.748508530714172 1.3810541506886416 +1.338412220950428 3.64199286158942 3.814922901165992 2.403680155584666 2.701497705881437 +2.5330514218705877 2.3983303812788233 4.559874925309239 4.785621422557069 0.26289016679555094 +1.2691493009033148 1.181589912547973 4.58700417820062 1.816540849785519 2.7718466228458674 +4.679883440227462 1.5580692896679351 2.1044092237529957 3.8361727006144415 3.5699759565611844 +4.145983777519506 1.461434969662692 1.486268548093411 4.9308894480059156 4.367174767040984 +4.00209527148013 1.2276692520866348 4.31828400730896 1.0327107382458385 4.300282716690818 +4.7238771209853265 4.02283934253901 1.1080465497079284 3.153541448462977 2.162291226371201 +2.8734734922472853 2.0103147398116343 1.9367320043358411 4.593104778937433 2.793091360759764 +4.050411869118582 4.922920397824589 1.4063504555613258 4.674901597785531 3.3830012861363024 +1.398936830329065 1.6788893361977908 1.782996047540785 2.348914243619765 0.6313769161091225 +2.911293901806722 1.4784816652764081 3.018395477630771 3.5758819994076543 1.5374466257772619 +2.2232451582266477 3.420244759813391 2.7088954235884435 4.121826463865823 1.8518051114461638 +1.1036506856163881 3.8019446328545152 1.3554554567019288 2.545267110260283 2.948973041017021 +3.170843238895088 3.6987478731930157 2.3028285957056163 3.096314427517076 0.9530493524465316 +3.2811163937293952 2.6797865264934666 2.281188840432076 4.132589732693971 1.9466080430066344 +1.6881404481604196 3.8471587939631697 4.307400644895225 4.034336244572235 2.1762179082611643 +3.3477838112889766 3.358877567522212 4.256402004613162 1.0945273423308648 3.1618941240038625 +1.2003481974117345 1.6961385611557347 2.7684021456659145 4.294939869382933 1.605031310196952 +4.004194404322318 1.7674542942648004 2.7645290256583235 3.292581873110929 2.298226735908126 +4.024775678792766 1.53060086956078 4.199730418938136 4.550848289836646 2.5187679008340003 +2.781225902620302 2.6483908818936417 2.1163149170378355 3.4375839918338107 1.3279296332048867 +3.6676137719003994 1.5789721687002878 2.8215175161923147 2.2888588760331063 2.15549274495522 +4.151373590392698 1.1885228113465547 1.790986837056618 4.537046725286285 4.039719006148605 +3.8210728150226423 4.671631973305319 2.38429489200106 3.0815793158842566 1.099843829608848 +1.0382594215654999 2.1972285733224672 3.4082394372242266 2.6639205953718545 1.3773961060859439 +1.6547491033646562 4.8841817140298565 3.6545020825575696 4.576379536479061 3.3584360983762402 +4.192436063225555 1.6543714166476158 4.354688533899536 1.0190144971308897 4.191478668653968 +1.131634447937433 1.0713807426945068 2.1076396432161837 4.403810086522184 2.2969608646443187 +3.413190743222306 3.3434406093900164 2.2448533463208413 1.8396323800973216 0.41118014620935345 +3.6660711051880637 1.6913952466325504 1.7461313089164792 4.102996970595047 3.074761859650517 +4.525313547305694 4.280916316189176 4.091103747383578 3.8936459795349396 0.314196716502874 +3.174265466892149 3.694849144509307 3.064097883765026 1.2649535531627767 1.8729462586362748 +2.802693266879055 2.357896170445183 4.818810811470246 3.886955162256884 1.0325693235646984 +2.1767318673198885 1.9702932349938975 2.3324261201256467 3.3840505425330685 1.0716953087143608 +3.619799673250451 3.56022009298119 2.8666722722542595 4.8510082449336185 1.9852302080248525 +4.564527667037287 1.357064881662883 2.5276185390510375 2.6179803664352534 3.2087353863180965 +2.0977121041013405 1.6409571476863474 4.401564472954654 1.7599185058404974 2.6808428722661364 +1.5578206920164641 1.6854427026143712 2.8712877622704984 3.552241268179486 0.6928095371736694 +4.5329949851455815 4.129930430291335 4.097572406081683 4.582655729263307 0.6306876134892614 +1.506548971713153 4.338658436758006 4.886250934734436 2.838434041273604 3.4949103065944653 +3.032403700164423 4.740696556561588 3.21535310836091 2.4019372893724107 1.8920649507345977 +4.9590109444875345 1.7742646674093696 4.80589561886747 3.5317604255184065 3.4301646229144582 +4.668273467385649 2.804761203590319 2.736043892384998 3.6111685634983246 2.058766899701568 +4.338190097282666 2.774307757559923 3.6519881196483635 2.7630712791702803 1.7988610623898165 +2.897511659395398 2.8325892420093983 2.140354893362247 1.146629335327166 0.9958440665944521 +1.1271446531026852 4.304908170458779 1.9823429620206063 2.7080239172695144 3.2595695760407293 +3.6352457976749775 1.3717067007214512 2.647866060726963 1.1250299156240025 2.7281200795179874 +2.3400101940745626 4.153996541675208 2.4655980222794724 2.5356649699559863 1.8153390444867958 +4.37217315741201 1.266003206144088 2.253366681598611 1.4210726163855005 3.2157433319760966 +2.0483955315218223 4.220960964862569 1.5443395148289714 3.142610006633613 2.6971297942665866 +3.7694658001615693 1.3357772207903076 1.0097759362411947 4.5443107487786705 4.291360674937663 +2.757719514629833 4.784080718602034 4.903123509413089 4.058749308296045 2.1952465739583142 +3.7129100552975114 3.147578057313078 2.344121203551587 4.892476438265145 2.610309305472642 +1.2320043943674976 4.855572533861656 3.586523635532319 1.6157283141917147 4.124836998012791 +2.8245545541526234 3.3444650569897867 2.481895801785247 1.301241082905308 1.2900591056900685 +2.407344197189387 2.852024108459391 1.1947688348029852 2.792305790672964 1.6582715546186686 +1.1106448781722196 2.8126633886411 4.157452804463466 4.498908547980051 1.7359317483009433 +4.8333516952958995 4.625309970651092 4.79779644061718 1.9005550651127994 2.9047011803501754 +3.97069272756028 4.438454290872695 2.6140070378028613 1.8663726274030075 0.8819059426755277 +2.005045936368679 3.750008174861449 3.048441776666505 4.565991402643479 2.3125419090404726 +1.9561100207033695 3.9625612337519627 4.9564398769455345 2.8340623067195834 2.9206733848450743 +4.998869629440143 2.55138832813823 2.6441314075049434 3.506775854766044 2.5950568707858626 +1.6258473522439534 2.9593769178478 1.4054751594314774 3.820999071091308 2.7591768464779483 +4.036858354461249 1.5133445803989027 2.0168970617739497 4.01565853527227 3.2191876608584917 +1.348216998796207 2.156861386823302 4.529822572786017 1.686405734154178 2.956167293050716 +4.003672762242148 4.2889111483320725 2.684915574149555 4.148291301815352 1.4909156438982671 +4.770540137120446 4.102377393959358 2.2109577069312056 2.68041824997594 0.816599444540839 +2.8952114721703635 1.6350647004456764 1.6905303756833723 4.830647024165074 3.3835340182064235 +4.329377241986906 1.6884451059031567 4.92156026570008 3.8732762587349163 2.8413767625323496 +4.916199755677322 4.91072417915113 3.8099442103368575 2.362410407247128 1.4475441592662068 +1.0145340721931242 4.04419367079319 2.5362395946791785 1.4640541426264648 3.2137857624588158 +3.8574344876937845 1.901801985977181 1.8348223293496164 4.0108599741413435 2.925685956031691 +4.446114377058816 2.2689069076056363 4.108845225084389 3.2973326058054764 2.323528587362686 +1.1353432522498204 2.7818850808831956 4.777147984248527 3.9097174935872054 1.8610576695976622 +4.275715344825384 2.1468094492485323 1.1039783740518172 3.430171680631051 3.1533181906994265 +3.977121047107843 3.577882246497537 1.7750802441979388 2.1340862392786235 0.536914261699788 +2.21126467084523 1.7095209035160681 1.9270765274100006 2.878314656652021 1.0754537584561776 +3.8392583116861556 4.770286721218511 1.541658279358478 4.345225556912001 2.9541163448864403 +4.845791440222345 4.126662569370884 1.0513899665868984 3.270513071782801 2.3327352376355104 +3.0511031336384864 4.351197578737644 4.765401567015924 2.7048611941473006 2.4364055890592704 +4.361394535239965 4.75990489930336 2.8458549612559496 4.032066458397761 1.2513625478722612 +2.3728169507613317 2.965666533871593 1.5074593983700524 2.631406338343705 1.2707192262927907 +3.418832962618985 2.3370558707800337 2.6002122922291324 1.6945650255974223 1.4108290640559638 +1.0608803592671867 1.241955546474367 4.290779965177042 3.8483373224216524 0.47806245988415436 +2.8717436527852183 4.665876729211234 2.5523217510245133 3.553488988872703 2.0545679190687407 +1.6372730794237258 4.107126284402575 1.1961281040319767 4.742721132286789 4.321862672761587 +3.487390137017655 3.1573395337627357 4.493910856577318 3.5520476661171534 0.9980178707081033 +4.829313269570208 1.0350535039290456 4.84287267881815 1.2220494802091126 5.244689486018091 +1.5633605009524278 3.4357450740884885 1.6136526637806292 1.3920933309447747 1.8854475669412227 +4.565713027827634 1.3706453170014834 4.6972206589642145 2.066124926793773 4.1389760120843135 +2.6480146378378753 2.0788063714368255 3.346984836963969 1.365945766333037 2.0611923369510077 +1.6215608598873508 1.578081175712414 2.5117177105517112 4.5549919690622875 2.043736817309875 +1.1489112959460654 3.0311419304964664 1.313749692104178 3.538176132693558 2.9139089126520656 +3.178715832675835 3.4642420546230923 4.97201412548735 4.961321812679254 0.28572635330445223 +3.7228690806634352 2.301792075213076 1.3716667983857684 4.55287106660866 3.4841814607708512 +2.174388892866548 3.0795528208808287 3.898292073913625 2.9400981036680736 1.3181264814854359 +4.873031135575987 1.6092341981157272 4.257512273388631 4.466611115434092 3.2704881554165155 +1.1489896928265861 2.6031287141836628 3.7272591101426262 2.000301614509366 2.2576320526510116 +4.5394673245076635 3.3032504528177173 3.469037454144062 2.0285656548586783 1.8982073538966568 +3.658607573019904 1.031920531054769 4.583504255662672 1.2787117679535869 4.221508995992541 +2.7483451016356395 3.3198232671258285 1.8668824071563157 2.5232401402900937 0.8702831536210175 +1.5961334522535795 3.1887606644804065 1.3807488589505588 1.287646560848796 1.59534619284882 +3.8720700565732615 4.061278791750896 2.0346217572194445 2.966229499675015 0.9506276512234875 +1.8624231485677734 2.8273121786138073 4.359047540096661 2.88321913692657 1.7632584370723303 +1.8198295871077446 4.073578761038373 1.355513302939236 2.673143374861037 2.6106578376772474 +2.182828430703466 2.8114155343008522 3.8651565930318363 3.1415669122883676 0.9584903613951401 +3.550281187409838 3.8931987777451025 1.1573546953076659 4.248875086515781 3.1104807993326244 +2.2984632458749186 4.503301944944724 3.4847071620219228 2.6091237227906943 2.372332195956506 +4.279234737579818 4.563833772282446 3.951669471317352 4.282653320998795 0.4365168030026056 +2.660710051539212 4.161407166330552 4.136979542700292 2.844776567157503 1.9803737930867213 +3.7362916462501436 4.003620857650742 1.650900979511897 3.8335799217248248 2.198988920401331 +1.7993266843052482 4.521613852733232 1.6779608952580336 4.029148160410121 3.5970722793962597 +1.3715745955416954 3.4595965952284407 1.96811901148601 1.9521965888378658 2.088082707825248 +1.4185744030024945 4.096482546170892 1.6779657904266543 1.94236143416218 2.6909286649173616 +1.0689489055652976 3.5437688696309833 2.8680616268793955 1.735946501048657 2.7214735921321798 +2.8704050117294737 3.027226100712117 3.5984657591646387 3.4222728574124006 0.23587452719099614 +3.2433272638704276 1.8133857371321729 4.141146050373222 3.2586513360225924 1.6803361838475448 +4.425881257002996 2.2938883752597947 4.452175179323363 4.959934984929079 2.1916235233252164 +1.633390286576879 1.4998743935614929 3.299909498694522 3.0967710475761385 0.24308789359092312 +4.0305369872716446 3.126772224212788 1.346041766993746 4.561860793803705 3.3404015866568773 +2.5153804413298912 4.6304313921711096 2.2870853671889986 4.0609569961247 2.7604458119291784 +1.04708315281683 1.2935219102512 4.114429276959463 3.6270782615860155 0.5461163551399337 +1.6451964521417772 4.803988342828611 4.73409546006355 3.2850323664951198 3.4753057502629914 +4.553531148485174 4.669948093570357 4.035121215476675 3.922097550700022 0.1622567530259115 +4.742311394226305 3.6228954955009782 1.1406846205240093 3.4797009224683793 2.5930848838941905 +2.1453254619819937 2.2010750549614313 1.6819780164698113 3.4316858643442463 1.750595775737723 +4.092549990974147 3.9569916106781933 4.204355473104641 3.1290999364196397 1.0837668308451838 +3.8387250438915457 3.133438256468502 2.688267189641953 1.6481778189740344 1.2566683538189003 +3.2299984027848745 3.485568510497389 2.0315100743551535 1.7934824785747638 0.34924664108503445 +2.742039518585917 4.398304442692937 2.3633787344060675 4.67315270388996 2.8422296333921735 +2.6192262717263546 3.988331850929397 2.4657050889843273 1.937610436720894 1.4674242906378967 +1.062781947449131 2.333352575300988 1.449845235676949 4.110824530095784 2.9487557589067332 +2.4729834544946914 2.435417707582055 4.939907857114278 3.4956172726111077 1.4447790411774437 +2.1974015297818656 1.7135343739877738 2.491288105769944 2.1915829072051016 0.5691666104956048 +3.5553407064102136 4.542961889013454 1.0905718224813836 2.581791843926302 1.7886119625801473 +1.4627460498772553 3.082373472544759 3.726214282057411 1.0628700634390187 3.117145395246201 +1.1676615144194726 1.0189300034914166 2.263138843261276 1.7269533787050753 0.5564314106377275 +3.806810428646638 2.734093625775514 2.1429093777638193 4.8124928865826995 2.8770466540742388 +2.299018724187092 4.0934255552982455 3.133079544760098 4.353346847558509 2.1700110980862015 +1.477191582368821 4.083057966745261 4.736622640695068 3.4876241983680027 2.889729524048674 +4.148198548045519 3.9513309561881877 2.788064434384738 1.1808521899001132 1.6192245204248266 +4.374829690014723 1.8004543485135867 3.359043985658164 3.819372330865769 2.6152075604683205 +1.1470495652982238 3.2187154091701493 3.4601896548222717 1.3637702443375161 2.9473333223988814 +1.5996294580565067 4.127059997461167 3.216982448360226 4.966007910329462 3.073596459871079 +3.556806204322172 1.124502081197953 1.023067954799075 2.7432207730755436 2.979098700209772 +1.5274563535736765 4.457474722516801 1.0451056633971243 4.72474735336074 4.703697546490678 +4.869249929747076 2.9197793565116616 2.623387234784323 2.3189944495833865 1.9730916054743117 +3.5675691868537336 4.231241186171778 1.3041430213496623 1.7332447822778985 0.79030933431823 +1.5499957839683303 1.290616561260344 2.7032664653300635 3.9718985038468206 1.294876376463708 +2.535004908543446 1.2888779833356399 4.770917284451178 1.6184787349891985 3.3897936695117314 +3.880725192891087 4.996762278057783 1.0954610354910717 1.191811407101441 1.1201884527064327 +1.8828502659053141 1.565978584014561 2.1997372806155697 3.200537984503439 1.0497665034124155 +2.161152496197558 2.3464413534542072 2.4965606434471006 2.2221737625362286 0.3310892946615338 +1.5083230901882088 4.0463476787659935 4.611547422174606 4.346084601519337 2.5518697696739316 +4.087171023637957 1.720674465113142 2.8500395721737966 4.4060034803138945 2.832195198948053 +3.758814349678476 1.2905527930634793 2.0603515947275453 4.944868122453779 3.7964128740943464 +2.5152349968627696 1.7845175672625602 4.312802012858391 1.1459838288718642 3.250028518697838 +2.819511383055123 4.082850923198908 2.247252290662178 3.7890235283735993 1.9932599788098186 +3.450524761383225 3.407238990411064 3.421700656379576 3.2445592944713204 0.1823532836758526 +2.002384271371847 3.387354399002981 2.398120187513234 3.982587172297354 2.10444241553469 +4.446042750767074 1.2692557624344927 3.9938903790771145 3.311115901089093 3.24933170929516 +3.8509915536186523 2.2587054877971924 3.6667681095414073 2.974067729281918 1.7364356401032615 +3.0761734464321253 3.656836839144132 4.014722867580195 4.595698937607331 0.8214031711528715 +2.6329828577374093 3.5135436653242444 3.788945085265285 1.3486294515120458 2.594326064356301 +2.2506265726800962 4.41494947184529 4.205108705885308 1.1202949216229845 3.768337789453815 +2.108948690696885 3.7888554793805302 1.9119105036223516 4.37120819859978 2.978293466263305 +3.485128488866184 3.974511197266664 1.7365346185516963 2.938899482390969 1.2981435595020383 +3.540765875153842 2.441041750397319 3.8544289267970853 1.1789088253811744 2.8927151542542355 +2.544316240506491 4.2349304557671665 4.617332159457448 1.3089862371243526 3.715283187949405 +1.087977295917638 4.378520228976122 4.237514684088302 2.2261681053906117 3.856577220015182 +4.754850583697598 3.015337470590435 1.2102416964998213 3.8442255267429033 3.1565450556983645 +1.0692998223354397 1.3660022349895424 1.7789970892553333 2.430795238076752 0.7161516239469081 +2.2502515566586037 2.3399776247085646 1.5020975404225023 1.3673673669198378 0.16187336698717394 +1.7114974332829358 1.0860445367715785 4.865039108088799 4.171787291237216 0.9336966355955596 +1.3930326705262939 2.2882074681309703 4.647897981721811 4.775627088979887 0.9042414738926314 +2.1187917409591526 3.3102547495590557 1.2884971618761987 4.783903728268584 3.692891978550271 +4.391644889947205 1.0129362319794954 1.5908109199313074 1.9389112870832896 3.396593302271749 +1.810438421925947 2.2525748348113788 2.2956211487225295 2.859805842600922 0.7167907479912478 +2.191719393768911 1.3382632858838241 1.9554762572418913 2.7095408908897807 1.1388594293436245 +1.4476206273810353 4.468786649904212 3.4415752066845675 3.992931019498578 3.0710645333454503 +4.921712981589241 4.000917729803426 4.981222000036779 2.0702010872771903 3.0531797605504614 +4.547953880673695 2.1327886882602947 2.0974556730712073 3.441919849530705 2.764164761447511 +4.917912549408374 1.0306101195923776 4.792307418286591 3.706790302237027 4.03602125738826 +2.019208853803683 3.302813023662913 2.073671104743837 2.973712149939496 1.5677096503871168 +1.847467008014498 4.472823465748663 2.4922511994959544 3.129793853051971 2.701658225103562 +3.146269504693282 3.447325974783486 2.898758504270496 4.77168342537432 1.8969667256636158 +3.278208824317898 1.3418127030507772 3.678106796941865 4.283654945984005 2.0288712377247387 +1.236598304665018 1.158467761877053 4.904192667863187 2.8284221122172357 2.077240424554424 +2.325943404676007 4.334277962370725 1.7215548541526342 2.0228490762213793 2.0308091746599057 +3.241456161618177 3.788740523758704 3.1207100016924034 2.1034682923961787 1.155119417279213 +4.154575116513248 3.7335672574789878 3.276063657892934 1.7258985926479333 1.606318569547974 +3.251175442743606 1.4942006643703998 3.9897001084105983 4.100169314252511 1.7604442102148312 +1.5355750174325404 1.180810688013492 4.521662801513294 1.365181184658991 3.176355447201604 +4.348710040537453 2.001449510436371 4.268367829493294 2.625327867316424 2.8651723008364756 +3.104755347929392 4.30565942247209 2.645702451734796 4.8619532296421815 2.5207019075702592 +4.323661669384817 1.7910758897883623 4.294686985158522 1.3180101183106245 3.908272751567065 +3.422260606124152 3.764938810310925 1.4977116442554474 4.255625155388152 2.779121315544357 +2.1579185299883488 3.6397625002227665 3.9343005752001896 4.6598765059298835 1.6499460546861413 +2.689636484818209 3.519014405764516 2.9221953359081954 2.8288109482428534 0.8346187031290695 +3.789272396523092 3.2183626044169436 4.621003482737805 4.820098079223125 0.6046293485039722 +2.366326612635007 3.0350515208430777 3.094140993044195 3.813444343136009 0.9821355875393167 +1.9256068830409063 2.824415302252257 4.1860640277764976 4.329980825067812 0.9102574465434472 +4.118462758338982 3.5545411130881703 2.1253420120947157 3.1052695204205683 1.1306040613566253 +1.8101154012412102 2.296422484776876 4.082292609710588 1.1993840179808437 2.9236375506834187 +1.984379912640402 3.205730159867139 3.1194476041092574 4.160032329591136 1.6045289019855666 +3.5735727013752063 3.041426636855516 2.104793835965045 3.7380040310948988 1.7177179557365898 +1.7297187998999188 3.5509137522488308 1.9154604325502498 1.3930238205989176 1.8946480063506104 +3.878985453360803 3.0851709807638685 1.2177380159204132 3.085680907498622 2.0296186989436977 +4.625149710567227 1.9537936735941384 4.179032660624898 3.294549926180361 2.813974552799483 +3.484922865069978 3.7474051383603837 4.932362675273344 3.949099333234003 1.0176953098005679 +3.683856842081355 2.964664321495478 3.376498219128966 2.8159245939252244 0.9118556195696397 +2.05496271299907 3.198521438604612 3.688287850652174 4.196613006679861 1.2514475710788462 +2.3510698048235326 3.9665198452135746 4.203117229119453 4.435920412394555 1.6321385220437663 +2.8058667888451088 3.7352225187133246 2.875749437246603 3.1227468928137134 0.9616183316136974 +1.7076617754317303 4.1478511900190345 1.392234366717866 1.024229582158759 2.4677827903853946 +1.1101398446473132 4.40941374279579 2.714749672979434 3.1612649881938086 3.329351916173002 +1.1763824477708433 4.360794419353052 1.9834377864458594 1.2217875844143 3.2742313044454883 +3.495786981934739 1.8047062699929106 4.603003473564676 2.5473866158049234 2.6618254338344127 +3.1788341783370595 4.709718074517168 1.5458267154119523 3.2859581561822413 2.3176848221319633 +1.7857863711525885 4.868291241986146 4.964735445933066 3.8296326256667896 3.284858397448672 +1.701960573551315 3.4188056145440653 2.3672758362008053 2.6898720609713123 1.7468901565403538 +3.1252388090543315 1.0777679619754017 2.6320082262729874 1.287117692634196 2.4496667971602473 +4.820958888366697 2.0629793255760203 4.981059439100402 3.58019817753406 3.093357971998762 +2.0174231004161713 3.094886255813154 4.0804251843067725 4.914692733977306 1.3626918931553451 +1.807230611901586 3.2602344165703276 1.4521881457981611 4.4345018129765394 3.317441011656543 +1.0126635410495992 3.1245229885855275 4.195769761539604 3.853504311768294 2.139414864923097 +3.1975060250808744 3.1874873622207893 2.431918428701643 1.405614751139459 1.026352576936 +3.9843319191323823 3.0761692460577614 2.2580595273577986 1.1580643072054015 1.426446257355727 +1.8929798832687315 4.731167050112222 3.7942508858108326 4.410660000341453 2.9043530416448173 +3.808469203039372 3.1164498215943937 4.413755565588854 2.768760643857507 1.7846285655052736 +3.174115425254802 1.1719104477838616 1.7500359305810917 2.614751269026495 2.180953320993404 +3.9470045304201666 4.5137157464786455 2.3006553823198725 4.203658004247114 1.985593256804735 +3.3399575525243512 3.546154506572459 3.8329683536068404 1.631972519622542 2.2106333583556896 +4.2475924080431735 1.2289729886187422 3.877785846524773 1.842108226420359 3.640885410490182 +1.7472661183116984 4.558777322407588 1.323798474604203 3.1351268515925885 3.344473910802728 +1.769831006484201 3.8951425989462027 2.3024470941746946 1.5092448060363401 2.2685059477465095 +2.4250255494932955 4.996898588263181 3.319253103214118 1.9058193809458643 2.9346764412446795 +3.0683228903008337 2.1948891425293424 4.158090710735921 3.7857612593882743 0.9494818229365914 +2.8894223725453774 3.8754427041654353 4.7583634058336965 4.798194054762932 0.9868244904552446 +3.8477681781344737 3.2983825942012928 2.7969153686636044 2.9072234400057253 0.5603502390798282 +3.262715680169962 2.291062471400225 4.795346381771818 3.51827434376759 1.6046878040182146 +2.3230782858317767 1.5024279331034087 2.757360600334058 1.9477632728715224 1.1527856843610067 +4.089189220335893 3.828093743272758 3.087176294944964 1.557065814214421 1.5522270875694315 +1.261017210661648 2.2377771963637674 3.1564670906682526 4.465014568395449 1.632898212117036 +3.9382101223242914 2.4372126223292456 1.4044289595311654 3.75351275682428 2.787685093710625 +1.0657104030446884 4.437967662250763 4.882367590482768 4.007424488487295 3.483912233968807 +4.553600740479029 4.2415246493658065 2.3693438725140394 2.271576206185321 0.32703211344434013 +3.354289303684646 3.2675366660532688 4.213129309808432 2.0439490347660105 2.1709143432593363 +2.473777530808431 3.7106814725033055 3.320797671715216 3.524900874219665 1.2536305190337738 +1.8015244023101284 2.0726952383342243 1.9802089801753895 2.9140287467155774 0.9723954847134875 +3.968444227969675 2.4317950618575113 3.492364600421115 2.4186109080560927 1.8746300039156332 +2.510860532159362 3.0381136718810913 1.2787984732343411 3.501752810136925 2.284627290675752 +4.2771090578290725 3.969236666793004 1.241371496290391 2.6635646462431426 1.455135308119075 +3.148254604696251 4.877323025868897 3.1807037605531536 1.2729839239344458 2.5746985416015167 +4.3047260812908394 3.6233204120731686 3.996954821333217 4.249371008893872 0.7266550885974981 +1.396301655663156 4.98679636984571 4.0495211321946485 1.3050959063630145 4.519239107720886 +3.5383212854357664 1.8058936843017759 3.3481276450870485 3.518512441087809 1.7407861361692578 +2.6227348876872276 1.4743094271878494 4.79153164870363 2.4753834714899132 2.5852317917613563 +1.3889898820308089 4.203448150323366 1.1823562748231398 4.131487352400734 4.076585514458678 +1.879762841643689 1.9683889194973667 1.4070000271105223 4.023927720781917 2.6184279893821816 +4.497508330071799 3.1433488353280654 3.612738507924795 4.429290709384251 1.5812986545598804 +4.681242248887162 2.415467506413524 4.416442353870087 2.5724279978341897 2.921322325402995 +2.34918070103148 4.233825711763918 1.3250710595240753 2.448392839634018 2.1940233905198103 +1.4954305314284424 1.947273279542161 3.8312222575282 2.4220608597583753 1.4798302990503889 +4.797577750801904 4.014179217487962 2.6435406003661854 1.7684311568985929 1.1745338650054302 +1.0003616957358865 2.771816637202572 3.462053800285518 2.5842050070474354 1.977035941361789 +1.1481014158099314 3.3738757051431705 4.713434098009651 3.8336336998309406 2.3933491027621323 +3.7542391781389455 2.0686544766107104 1.5923705535960586 2.4300921552740444 1.8822787434235024 +3.55836667208735 1.3670465703099786 3.9169973709747854 2.3945202558185223 2.668299150138179 +4.398963404743765 2.1320580396285687 2.582187773030502 3.5679921847162728 2.471976996755267 +3.731850572869375 2.7456210732666655 3.2454170819642236 1.891866527932501 1.674738107348786 +1.7925653049724617 2.0714293236515027 2.020417334956095 3.766299914069269 1.768013326014454 +4.3642998858771875 3.2041541758089664 3.8457270059417596 3.4613648861605713 1.2221588717152878 +4.2881810336880175 2.2162432790498743 4.583045130768773 1.2374694454636819 3.9352004682353323 +3.2575154380089626 4.663685349315086 3.3134018188659895 2.786512118120499 1.5016412941226491 +3.945935402468061 3.7579649284787933 4.579577571336275 4.130166038708177 0.4871381988213259 +2.426305151634057 1.227641455481753 3.2581062961006975 2.9893527423386885 1.2284230253187263 +3.236559586457041 4.776918758648976 2.3390971124633224 1.6504110830113836 1.6873040112908224 +3.248771929328122 4.306580636756306 2.2024777177124757 3.6493339714639768 1.7923036239796852 +2.5422452278072356 2.425865325169553 1.009371155335463 2.6043436767775523 1.5992128144475621 +2.988933343398548 4.030765659381093 1.8129103879840929 4.208995177220361 2.6127833610605693 +1.8294080960343222 4.454356810558115 1.4694074967794952 4.375138456599465 3.9158176878828757 +4.465250722273827 4.1272798992564645 1.3739862110578445 4.678090912152019 3.3213449313498975 +4.792260256455157 4.4816855316391 4.712733569956281 1.6616046803863522 3.066894872743896 +3.8539867828049847 2.4364351930932195 2.986543563272998 1.164356857322756 2.3086396212566713 +2.271731809717906 4.2213526735700215 2.116195550849639 1.9617622991094823 1.9557277780945148 +1.9674506897891177 3.789203679224031 4.194877855975744 4.807758333893879 1.9220838781718672 +2.5406962545249274 1.1663706891986756 4.333404151771873 1.0694080674535642 3.541530911619236 +4.1985915554370905 2.170625860027668 2.686000023322835 3.2252654814639157 2.098440396127927 +1.9511515406055442 1.443792534156247 3.8824439567193845 4.735598354559931 0.9926155287823598 +3.5340293920784935 1.8472612387007552 1.0780113450389148 2.8924932792742584 2.4774041844066903 +1.2903145236296076 2.1590177796979044 4.947777227338161 4.00995520184116 1.2783409164268182 +4.014844407978467 4.481386830686858 2.3519138071488013 3.796612160148103 1.5181617711382107 +4.670374504379207 2.090904320153696 4.465652867534658 4.853429646120118 2.608454956735597 +1.2271246931834097 3.921204759894595 4.274025181823197 2.664189795048052 3.1384131943330895 +4.008559414345923 1.9051677521358874 4.737519170648978 2.7527824696451235 2.8919606250719183 +2.5830564635847257 3.702595885487769 3.5180631136156237 3.573923850822223 1.1209321741997884 +3.4451206529562466 3.8527402971016027 1.007285615925959 3.8451308496787515 2.8669704123040103 +2.052140644119644 2.4420384537231383 4.9687825983076355 1.041299949652796 3.946788600548354 +1.7725550089160804 4.3011234611290945 3.126029502769426 4.248218107096401 2.76639940739009 +2.2798502751527256 4.286381890036642 4.049058243734676 4.021240927646318 2.006724426672237 +3.080836900836223 4.032600372143214 1.6869377376981447 2.2238865883147203 1.0927798376126803 +3.4649010410931464 1.9986920506658143 1.8412361674959499 3.2748155888482864 2.0505898568301846 +1.9725392263816461 2.4066044327111906 2.5779073313231784 3.3044479176389774 0.8463296207211555 +4.018059339683897 2.3258316234600733 2.6034476926715397 1.6222882141099442 1.9560952343705968 +1.465563923201083 3.6689567501422427 2.6085065564903536 4.64385237151851 2.999595395477261 +2.781243223219795 3.8832552584155993 2.6427143866322336 4.089789294777951 1.8189162475225007 +1.9911897073006806 3.271514130826791 3.2412622031033416 1.840731940984067 1.8975551756376812 +4.6081057584958725 2.9210965350945046 1.7441224822599484 3.6848600733472923 2.5714708859523947 +3.0556334971297066 3.750695477383846 1.592238272332048 4.397879990331055 2.8904561242425433 +4.6159364401096585 2.835604341620246 1.0292603583702085 1.029450543900214 1.7803321086477801 +2.136748909705293 4.864267415124289 3.7675671890195117 1.7673675877806097 3.382329913269747 +3.5800263026867207 4.4782459031128585 2.193117313168121 4.305546078747288 2.2954637309781254 +4.243829611478629 1.3054888391973432 2.9441614988246005 3.716940962102506 3.0382617716244718 +3.3934106925358396 1.4020265761812478 4.176208662041277 4.134353568668235 1.9918239248765501 +1.6408109197546787 4.40672609667946 1.7599913544410524 1.7269701274549027 2.7661122839419434 +2.4347346043059592 4.161681992824814 1.5627489756926494 3.1399309964828923 2.338771132329131 +1.999523563791319 2.7133010152679624 3.9982356971548567 3.004934591604679 1.2231620238233762 +4.312910289446846 2.320388961073007 3.548867064008552 4.940890944957221 2.4306113899914243 +4.634749216238864 1.328452138154943 4.778549603776218 3.310828200181557 3.6174309236136297 +1.4717833252314252 4.028672964811452 1.0223921855429325 1.3875652327647239 2.5828348734305355 +1.5671077168443603 4.333143470091021 1.6615029995087545 1.5546719930585362 2.7680980206954353 +2.201023544094065 3.056624942704387 1.661147368235484 1.762407902704099 0.8615726603977218 +1.475695174298271 2.836209548059797 3.8308733464860554 2.006061980076944 2.2761669280146406 +4.789406172910619 3.6311939871889076 1.8963919109643461 1.2186106205351899 1.3419548967122836 +1.9132822131006981 2.2536361373299876 4.310608649277098 3.0353674450791246 1.3198791318232796 +1.9929837769628214 2.3682685392719165 1.9025348533181532 1.973308699982562 0.3818999740679112 +3.045530175280605 2.7580498521553483 1.3547396673126442 2.129875631079895 0.8267289147656486 +1.7274139919104359 2.038169422881127 4.496192257194506 3.8007986417634494 0.7616700192734756 +2.563827377995731 1.92765750896281 2.4348946973441756 4.635522433526419 2.2907366796556845 +2.2410872269498303 2.6433313712115587 4.274848367928438 3.5161690476605205 0.8587168698675018 +2.9690455513601592 4.06628520711475 2.7427249285103903 4.030740882572998 1.6920165365859345 +3.6114762675420615 1.124174609487408 2.861507182369502 4.133158231329775 2.793522136744792 +3.506383763979099 4.5237015014708994 1.1955180897333655 4.4797963849858995 3.4382290935425357 +2.043727196072084 3.1705177332637904 2.8718708641383026 3.077510670297567 1.14540152111912 +2.3369603923449787 1.4113152633618617 1.8771592559120034 3.7109413074954336 2.0541605383999824 +3.4324893441844027 3.7216718334992103 3.28762135616668 1.6416967306042531 1.6711356573178382 +3.7315338205062103 2.556719943261122 1.3026071550999156 2.0143598242743734 1.3736009275785317 +3.7217106447661474 4.770094507402177 1.9650026821084383 4.1077124104358465 2.385437843102301 +2.32277201283826 2.450654644225813 2.8929841473462523 3.211973621832031 0.3436688118571688 +4.842236279609207 4.32590606511883 4.990679438848632 1.6159930673260385 3.41395738059748 +1.1701144824496499 1.380408827690149 1.4689779218664611 3.1347349068299803 1.6789788696094075 +4.7107645315815905 3.7086689879253836 4.085120558495679 4.320942692585184 1.0294695515371777 +4.285860117620661 2.9762789538911076 3.047715731534584 4.552252761582749 1.9946514731103788 +3.97306609754794 2.0427292288465866 4.970021273394076 3.765934945944807 2.275087758882724 +2.2613331274524 2.1671515311303478 3.696447759081331 4.02675433297123 0.34347140469135556 +2.7636784104003693 2.0046357585024515 3.455559796776529 3.4805118049956225 0.7594526648280256 +2.296660006067623 3.316824696434712 4.195475939631701 4.342295473561482 1.030675492584905 +2.544009533660752 4.930398848904461 2.8584524250641787 2.2425859669260357 2.4645781501443524 +3.280930055221682 1.9960237330991863 4.947930163643104 1.643279824117073 3.545659053428554 +4.39482306999659 1.175284826521485 4.978959108051816 1.0294159824205482 5.095519345701669 +4.554580795762369 4.930849238658975 3.3295560365328924 2.809703457210856 0.6417356506752683 +1.1067279412191366 3.834997666733695 2.796522746049497 1.9901054718206512 2.8449542202527556 +2.9339886741650556 4.628113340016688 4.557522562815622 4.672052010445175 1.697991571775677 +1.261051558086094 3.3243961039892587 3.12576785310296 3.9678527046281498 2.2285640247200744 +1.281069907664 4.841724542908981 4.023889558983183 1.7929215103939806 4.201842436993263 +3.1408939076257845 1.204874171936773 4.447202984119939 1.0599770610378125 3.9014704754716414 +3.255204656951357 3.056689877396003 4.673644165969668 3.158893249894498 1.5277036543297515 +1.8476679956600397 2.315110344438363 3.6322180684866257 4.41745805228848 0.9138403479779891 +4.932434962543049 4.816337837138189 4.260289991917104 1.4645277145240545 2.798171769963603 +2.4224653089806525 1.746413203855686 1.7004265837853065 1.9721909101075825 0.7286304261457238 +2.1047261748456148 2.873317152520324 2.407214522191497 2.578350041308544 0.7874131424267865 +1.2798197559997404 2.2530994893426595 1.7447164109331288 2.884711268051074 1.4989535395039528 +1.9427575410382119 1.6398030209097976 3.7774776188340775 3.9527747289466646 0.3500150255061377 +1.1209700007829952 4.981741980862518 4.551841961916851 2.1578109537834798 4.542790414499798 +1.1501119460101714 3.6452541468675204 4.507497853595917 2.7765642920540916 3.036752475420268 +4.973891169671166 2.198978035006204 3.8163090707497993 2.847921718217406 2.939033339293861 +1.1523434655107647 2.9542244032509997 2.8676537032775116 2.6774986086411543 1.811886826986661 +3.2213957410825045 4.5932775371721055 4.083962186141835 2.9969454257268358 1.750332854020957 +4.4789786978442585 3.9652390281983694 2.9681617597507 4.211934375702322 1.3456963878821286 +1.5623969091523682 3.0381390811557436 4.956057746411318 2.765903419659316 2.640945083340385 +1.5223508018844085 3.0029321908261246 4.399286231433847 3.976853780759772 1.5396656860055973 +2.959064838330037 3.7670219818601898 1.5089907536748774 2.268121278418207 1.1086360536165538 +2.1099686724732556 2.2412255363410156 1.016047071384679 4.543458694894955 3.5298528476393747 +2.24991272380514 3.6475361374468225 2.3974865809841654 1.6208040064943368 1.598933090493651 +4.895699499608176 4.092911475786385 1.8604684421949287 3.924169162277151 2.214346240600051 +1.8842109691030413 2.4603236539472566 3.8885527846885934 4.987726642715558 1.2410032215140672 +2.001536028974171 2.600470380295143 4.919965567776794 1.7323992280416967 3.243347272094754 +1.3103496149902338 4.307331764559388 1.8990884028307375 4.451620077328821 3.936663556128735 +4.601871253440724 1.5264446439658657 3.2595740692208333 1.5617426450768037 3.5129589202091394 +2.960275802257454 2.382881689808782 2.8809254080898956 4.592556936581026 1.8063959838350157 +2.1636860208924964 3.7815499363388136 3.120172046375196 4.777815439698758 2.316304226204438 +2.9922719970564193 3.592563222134937 2.7471383919352026 4.084900314149365 1.466273001672062 +3.8343744267603315 2.927044292953666 3.839916435222875 2.4140073712876235 1.6901078753518446 +2.1987849324454114 2.5074640955844583 1.1691922708461049 4.269210961982404 3.1153488907585674 +2.365576351375812 2.3951760513177747 3.6822400875771812 1.053341642363554 2.6290650766923362 +1.5423533374447898 2.32001700637022 3.124057432421035 4.316036166107136 1.4232266451716258 +4.852280572838447 4.416406574732228 4.019946490437931 3.4437258379161375 0.7225070121581809 +4.335591008804675 3.028414045671801 4.664180950911893 2.4668276692986946 2.556770043856423 +1.8013482300727999 2.5344234627616644 2.94921834321426 1.832956318586052 1.3354550551811537 +2.7849006771732596 1.0081243931745076 1.9492240168578179 1.7633601670294516 1.7864711959764241 +3.089815921964133 1.7637725011877992 1.8478813463588484 3.1293137451849584 1.8440336619881534 +1.346642043630693 3.011347163925081 1.5953129257607297 2.028293530681774 1.7200916666771413 +3.0360730042041912 2.881321208408473 2.9591181915316467 1.2415076005332963 1.7245678474944677 +3.7944350152859805 4.355844091490394 1.3872887986432723 2.0660180438984104 0.8808254873749412 +3.418800077578417 4.275628491499937 3.2984158086984943 1.9348623988605973 1.6104138699054424 +2.2345583461968195 3.1486453236520764 3.764176360385283 2.5511348727579586 1.5188892826860025 +2.356811795475326 4.232767438230944 2.684869710684765 3.6517466112090937 2.110464525727494 +4.679262938041747 4.154454233829732 4.4482701864594 4.01295644538442 0.6818520581367992 +3.4206070995016318 1.6396859175991367 2.769236958537996 3.650506388516671 1.9870370062894949 +4.397565975781589 3.7439560640770773 1.7746986758835228 4.818141284511894 3.112836139068847 +2.664534585847759 4.664444802976546 1.1933139046108234 4.8050829647596895 4.128500529299316 +4.419160830377541 3.3653841712599526 4.4408398527273985 4.0147153155712605 1.136673817973986 +1.6264102280642732 4.531183772566846 2.9248106921267403 2.2707715468764094 2.9774950123151878 +2.2214709898056473 3.7058793711466436 2.467120988950981 4.158023840027958 2.250026820812509 +4.306688955793978 1.0125127718560614 1.9253466767148155 2.256591339098958 3.3107883890671355 +4.633907790420789 1.6556853029086094 2.042444338529663 3.3214764137474857 3.2412547315135916 +1.3814751467857942 2.8573408075618016 4.275823868609329 4.038169161869435 1.4948776566306108 +2.889081851971959 2.3101669000631904 1.4995898347892975 4.431548635106707 2.9885656975047805 +1.8565356286009025 2.4238464411522354 2.7106619724956356 3.4615189734393046 0.9410779956538005 +1.555375588760596 2.8013247680047395 1.879276173143889 4.566725701070501 2.9622245563785548 +3.1576865507653205 3.6536628316680777 3.157188310503264 3.410667329579555 0.5569955873523679 +2.4928633733572854 4.144235343243019 2.0892157228850317 3.218299904286254 2.000465063832597 +3.62387445378759 2.504098492484741 3.4147299680651586 2.2126656912258817 1.642819749444489 +2.5216540143136923 3.12093503414776 4.824062324039424 4.085917921252605 0.950786463985931 +2.15302801561283 3.1262815748274972 3.44206256271998 3.24856728507425 0.9923018255526973 +1.46410970792632 2.9781356511818275 2.6846956958661816 4.150873574441295 2.107593919253363 +3.572349048284563 3.4801255356005902 4.154937799341825 3.165653016607239 0.9935741329372398 +2.6483733691586253 1.9969248922773497 3.678420779181727 1.3640941038109586 2.4042656006281105 +1.3552635014258034 4.560942137293335 3.652288127181227 2.6055535619752965 3.3722438770727075 +1.0121014885431188 3.141742787013015 3.0689475876244203 4.211021382004176 2.416548077725233 +2.1644705385769543 4.017386254574498 3.213626755922901 4.051154408556582 2.033408276642144 +2.876359576473007 3.887310622890295 4.420770338254814 4.911598580326823 1.1238035333045135 +1.0673548430372763 4.770796188961073 2.4350465831609505 4.977866746901679 4.4923726679589135 +2.9052759208696273 4.527533908213056 2.8690297549478143 4.776554089633883 2.504070698865965 +2.037588237078743 4.914055809539888 2.6211621633817406 4.258949589163007 3.3100473331159086 +1.895078082115833 3.5571538136219165 1.0266220116157103 3.0140535114405447 2.590826065902046 +3.462797371941413 4.7347769281792615 2.385761574258657 4.861058535016572 2.782988867283591 +1.1128744589501611 4.1719002448463005 4.1764825958926455 4.500571093678772 3.0761456586408196 +3.4601399600052622 2.390238610145751 3.3810012196139008 4.368902103923643 1.4562407272326838 +3.099346087840659 3.0273482421423594 4.562619105990363 2.0136325453712645 2.550003171763121 +2.9201235967773025 2.993387260286416 4.515365834849423 2.508485799484837 2.008216880901 +4.870375557276781 3.6345525200718267 4.176891638914839 3.1954263398772826 1.5781421711941412 +2.211211496401981 3.1663731616977566 4.434192144901598 3.551404815409068 1.3006334133656383 +1.22731941003289 3.810315468864816 2.042529056711004 3.7085518150869397 3.0736786545388615 +1.420559577678624 2.363339198169682 1.8557983490744303 2.966150758815688 1.4566110965633485 +1.4404626034674224 4.756152130526395 3.5017464875884285 1.3320924816688056 3.962473412560849 +3.770061465430087 2.33522980075219 2.382605654406706 1.3380861635763783 1.7747571306200725 +3.3201812668917823 1.6104691429680598 1.4558880324464032 2.3081040351718847 1.9103370545516736 +3.4415466052240657 3.1528974794684266 1.561263747174472 2.3038133285188107 0.7966794829504195 +4.713497014350603 3.0904887571230737 2.413055329087585 1.4278327623405151 1.8986361707964023 +4.294509220343713 3.805092741798606 4.778682034583687 4.295524940819799 0.6877276108502982 +4.000764628262615 3.4622674920574754 1.3881865065339376 3.937397076320541 2.605466118530977 +2.1992167646217142 1.8525150586518229 3.2539518383903627 2.332617867080444 0.9844076186276391 +2.5479179039831514 4.559212103550625 4.591222562969204 3.4132076698371154 2.3308846916256427 +2.8160496605966245 1.1471535212070938 2.7683177942312853 3.949664440956225 2.044699054579314 +1.2013288132926885 2.5096587842287095 2.2789914691940165 3.17074622181807 1.5833363040355755 +1.6130070342349416 3.101926027036894 1.0840547931361524 2.6050121808733757 2.12842456818155 +3.9785065742456194 2.8296276527327975 3.506473507290796 1.7367707331883122 2.109921961818136 +1.2369282100708148 2.0199800112724815 1.7735699935568436 3.238257056615285 1.6608667363927596 +2.241149512563812 3.1121797094153196 1.596624834317773 1.443186661462982 0.8844415620696446 +4.085792023917719 4.326482726439908 3.1250585701336524 3.6250601782872693 0.5549176717647654 +2.358954605443989 2.0047425244953088 4.262282399191456 4.36551603692265 0.3689490239168683 +1.5039236598525205 3.502273883012415 3.722410072393163 4.224011998574552 2.0603417451364905 +1.7466055430561371 4.995928178191463 4.676544371524683 1.0211368757121329 4.890818085724039 +4.541839549636553 1.764825936907104 2.559910007277467 4.962938473176451 3.672376670931985 +3.8084538735908455 2.139136084775344 2.6428607513286284 2.5026093568568673 1.6751991922476412 +1.3158599119406493 3.110209441221268 3.751748939775972 4.743778443907486 2.0503201628762753 +3.3531520080741877 1.0389953316066287 4.696541386787332 1.1668344999230746 4.220681441475576 +3.3031078049012184 4.826347358553129 1.3178858462116358 4.713881411290647 3.7219678418608053 +1.554735732551376 1.671364195810185 4.903914772269963 3.4855444792171353 1.4231572248549615 +3.2750148973792967 2.0454563345655186 3.3326932094506745 4.82779675394123 1.9357553740431421 +1.0013852497357516 1.3499007247864436 4.560260196298971 1.4199970223605258 3.1595436122870293 +1.833431176396458 3.43644354822742 1.2206162139910002 4.913659576156768 4.025943111754035 +2.702343823534702 4.3959497716938465 1.0257876714993217 2.5464648548493396 2.2761283363644895 +2.619408161840215 2.7351271311416174 3.1513858923212847 2.555960361207236 0.6065661076573815 +2.9076565813855844 2.4389410158838496 1.2948926836788845 2.6313778942608894 1.4162934016114166 +4.545545614172163 4.999153152616879 3.0710351833369733 3.008172731296994 0.45794266760191 +3.307605916146079 1.202610299025499 3.218515120182949 3.1615922489493777 2.1057651249287814 +3.7770429584524456 1.3859459859603378 4.7344009723995075 3.6558678700846117 2.62308566094398 +2.5390173194245156 3.2375927923531993 1.954218266192934 2.762179505118098 1.0680866327143228 +4.111441360446113 3.4539480767386666 1.9201380514656265 2.7145509846509164 1.0312077029058968 +1.3504335033164288 2.5489472670988054 4.838087947901717 4.545272639338631 1.2337649885228117 +1.8774104922822135 1.2930788014811792 4.796856786461131 3.7262994015927133 1.2196461122681042 +2.931159080550661 2.9026475358348054 1.1561995444311597 4.0228094212677625 2.866751662449897 +2.6945885590918937 3.6517340958720292 3.488629963756583 1.1957452235545052 2.484642431101442 +4.549881606795841 1.284537436289928 1.492925513485301 4.834824854720978 4.672340287137528 +3.1819120828087937 1.6823497589274141 4.631192615213997 4.192357106196115 1.5624544048321878 +4.864493665809881 2.0874271327173908 3.829259695224627 1.4511557948925167 3.656155999133125 +3.249845446929014 4.078736145094127 3.6078794886589556 1.014900928054626 2.722241283438768 +2.8016505377379928 4.625587291065166 2.0075054211512624 2.845885479973192 2.0073929369129333 +1.2853574106003074 3.5093767320627083 1.559742422266385 1.0528305659192947 2.2810571172908696 +1.338757891254987 1.488480745063348 2.197466129693144 2.6781085217655973 0.5034223296692844 +2.347044726214807 3.5623644935425807 1.764763935392113 2.906425361850025 1.667451033619743 +2.7193407491467467 3.4214019300314114 2.3442060816227706 2.4125286613004224 0.7053778254233535 +4.934771018048746 4.471609102547351 2.4535352539034987 4.5246581882445 2.122279239196435 +1.2308102661937128 2.5349493591067382 2.452963773000934 3.3635325443508948 1.5905704200134574 +3.747962874009521 1.2421866783100892 2.684175776300084 3.6430158105209616 2.6829626449428274 +1.3456604336685625 1.6152808940491017 2.247623283668749 4.18161715235955 1.9526974872697065 +1.5070763286652178 1.0154619855685145 4.742823510264527 2.2919406904060695 2.4997022340702397 +1.355936358752115 1.28594244318829 2.6449509727538936 3.3046772667272153 0.6634289194598992 +3.6985536361491316 1.0528073123653048 1.433968799841142 3.9114140248552616 3.6245976952981827 +4.073088297796071 3.3533650318473978 4.559976797072501 4.448474676525143 0.7283092079840691 +4.777480279338484 3.52937024893016 3.3892995392453904 3.5008965359000186 1.253089197810036 +4.233387361208209 3.834417025172648 1.5685935802955204 2.380238498928798 0.9044030091610421 +4.91513143556465 2.649040185184167 3.145816485884856 4.605874351255643 2.695725973700235 +1.6052987917734831 1.511637520790364 4.306221802314354 1.6987104409188416 2.6091929659357995 +2.3783732233122628 4.818438374849456 4.371488842279701 2.9406706358221677 2.8286319456013675 +1.7905038615651847 1.462977137450161 2.09396035336429 2.7699780473320947 0.7511815210500505 +2.5437286017076985 4.2983334151184245 2.1184601795611604 2.7537424110043336 1.8660711574941362 +1.8152479821471124 3.5266604813121347 2.3857700690117016 1.6902056214591195 1.8473609942286313 +3.1845045315473337 2.390494691754275 4.853364184029604 2.8557146336428385 2.149664009060171 +2.134141040018619 4.508786513179837 4.32194945715325 3.0721523939856623 2.683455574871213 +1.196403897551856 3.1621754123607824 1.7185113047119156 2.0050275481377033 1.9865420222539987 +3.8304041502260517 3.053116423336206 3.755760313206729 1.747530990404503 2.153406887547328 +3.105092704059932 3.7820489017250156 2.223048551934837 4.031561173336103 1.9310586721601306 +1.4605112813871948 3.693040384128357 4.248926496669766 2.2816363789729635 2.97563717576148 +2.8137574540604224 1.391588367158986 1.139651044897557 4.792585237034503 3.920011878020431 +3.939846539869813 4.6341892402255125 3.7294759423075994 4.011187431036291 0.7493151195718529 +1.2495036277734628 4.033341121213379 1.4390824707714178 3.510104957071833 3.469709689389559 +1.3082635103161473 3.493943775785901 2.7539702432189053 2.079341274206535 2.287427041174128 +1.2502963370948712 4.698534084364078 4.364206940068231 3.5993013363803175 3.532056645107123 +2.2539284447722965 1.4529593173131867 3.8006328244216085 3.883256449867988 0.8052193531110087 +1.2965816171224378 3.314878589874846 2.317702636186995 1.6926450570861369 2.112870002487839 +1.489662041007168 2.2420533819976334 4.1215783488195505 4.5218227858559725 0.8522255214296467 +3.6437683795553193 3.5806558693463146 3.2463336111304253 4.00373502426838 0.7600263742583231 +1.2273169014446452 1.6937474150454417 2.610340553247778 4.916865653784139 2.353213858411975 +1.386736768085933 2.5692591380872853 4.742843206378701 4.7733074637388935 1.182914716507544 +2.3695922194813988 2.4126001208628303 2.419579819959632 3.1182582542552324 0.7000008815215782 +1.0128603517047527 2.400130036138188 2.4668256076282327 2.8870229059941197 1.4495112786391258 +3.7285782544689647 2.3206082632325638 4.796751659677229 4.150200610093407 1.5493249355574747 +2.3629164674381133 1.4369604708987254 1.54328696038489 4.985778890164259 3.5648485513585753 +3.8794292432239335 1.0580519394821573 1.4792480312224616 4.338941822285704 4.017215262929642 +4.672510753987235 3.0005297809497637 2.3133296861834562 1.38829531860583 1.910813689347831 +1.6408504932163663 1.1919288771441057 3.1595263871468893 1.9962943863007188 1.2468517574954592 +2.3355531234776157 3.771692939677442 1.4885827575601422 1.531349885869036 1.4367764610189921 +1.521890509995396 4.188308356406079 2.4462095589934667 1.521699794345889 2.822145006300368 +2.1549499841052 3.8400325730059177 4.722586173856206 4.80857118342737 1.6872749489301675 +3.144955597885348 3.476692931470918 4.791572654901705 2.7516726326321126 2.0666982748698337 +1.8486745439967454 1.300658086591667 4.158653424495286 4.669884066038662 0.7494523376704244 +4.801899245867133 4.89683634750349 4.59608969294201 4.104303060062875 0.5008663949055762 +3.0918844809515673 1.1903362481331734 4.859651080298054 2.2048414854666993 3.265562687584389 +1.6813291147346705 4.3140969995351055 4.889449111051158 3.6572088367435627 2.9068682166314685 +4.131729052718538 3.117352170429976 2.7795832650973726 4.489845412009611 1.9884559513558058 +4.932121917627425 4.460548489371053 1.5581183822260916 4.1708117156092275 2.65491015903404 +4.400275882146762 4.263146781320589 2.7984079640017465 3.088414552780148 0.32079309816185164 +1.614603776465667 1.5329386652172294 4.326372550797533 2.6078668269896994 1.7204450334595134 +3.293611549436521 2.3730133226562664 1.8165861783887003 1.2160341092756934 1.0991650844467644 +3.611640894050852 4.678079850749663 2.6388612250830277 2.663797536448717 1.0667304570459095 +4.087459250339711 1.6381485091812658 4.2870761113423335 2.076964813084811 3.2990475985410828 +2.3550803808224505 3.6120269913820717 3.4804946990020817 4.850275660161758 1.8590897405324054 +1.9851615808646166 3.7151898002103625 3.7285005077815727 2.0898452340258293 2.382895034603942 +3.362103619083746 4.63382707596884 2.44058293670315 2.3784133149058904 1.2732421657588116 +1.1598272094336184 2.5897294674724156 4.087806778628071 3.423394302413018 1.576725850011558 +2.1729092440418425 4.989768725345863 1.9399459983091591 4.045527956716599 3.516841298805402 +4.900441544769032 2.0008908767712072 3.286051631132832 4.012619384387367 2.98919634289151 +3.633552745308706 1.957106397199738 4.533525115587042 4.277437370637986 1.6958930659687799 +3.3268543097413668 2.4251610686389413 3.8509851600209983 2.886300569660324 1.3204798597211311 +2.706738668800648 2.3390699415613208 2.559331682608689 1.4347629837094464 1.1831462511176385 +2.759964708810521 1.6853711855381763 2.1767969579824054 3.9341553054855156 2.0598688312117677 +1.571789301174444 4.45738549046955 2.2977101249209357 2.845576465018334 2.9371453648544796 +3.996895090423723 2.75969663234506 1.0274528599615427 1.075047831947479 1.238113607885223 +1.8960211673295655 3.8184755325485145 3.5639304257396525 4.749727896265677 2.2587488632991737 +1.3640979210676991 2.747060816369205 2.5076703673468215 4.425986622282617 2.3648517128419746 +1.0818094936321114 2.1142445024313834 4.455533326443774 1.7717352928830334 2.8755336778307523 +4.063806222192332 1.490389055802718 3.072799444303656 4.075459372296349 2.7618477227159106 +3.424100294251495 1.7117886705233798 2.5278617887494974 3.0163430485851186 1.7806249009729729 +1.9392000319110583 2.4113546034971964 3.5229882797863823 4.78941301840838 1.3515774332473467 +3.137605493591464 2.746517193732738 4.500242442952556 4.207904805970001 0.4882738496816437 +2.373317161237534 4.628143439944198 2.233013166697357 4.238122165840178 3.0174001467471405 +4.107036050278957 2.663867667655596 2.197146939837456 4.1390491856704354 2.4194460756493203 +4.72920608922445 2.720707252438659 2.7497027401492042 2.7807686377302554 2.00873907398706 +1.466447862664571 4.525563326502649 1.733301073126989 3.022336621089691 3.31960842043226 +4.214956727120575 3.6246468097897337 3.8111364868839757 3.1326816238691872 0.899314627729117 +2.6270413633552163 4.320508459291178 3.506046914104772 2.253874584003834 2.10612591012223 +2.5992464230044394 1.6724776842299822 4.636877160894426 4.4786750560331665 0.9401745588730483 +2.738265030181777 3.2525783061662574 1.1079296662803917 1.4388439422126105 0.6115737109046081 +3.9129798853241953 2.145395213121387 4.313054691437909 3.7802993016615765 1.846126723370322 +1.5382259544357013 3.160387519754006 4.40124792869142 2.3908572750475443 2.5832302886608045 +3.08384379455933 1.1638382013047033 3.1492286266357623 4.082092681684285 2.134632713918398 +2.630377783692361 3.809390674237211 3.9748159283012345 4.319271274875547 1.2282999966842596 +1.5255770372021042 4.017321143809708 4.1618957897937605 2.992164081026398 2.7526461747397795 +4.733909518992171 3.904823047343603 2.817746297068881 1.2879034753425258 1.7400584578278764 +2.975325362313532 3.3094874873930236 4.445294790202386 2.34278004438375 2.1289040800896704 +1.1210520756881404 4.303934699730069 1.0431798395087708 4.034951010622421 4.3682303669489295 +4.367488440026673 3.2372496806982496 3.615519923860738 4.480738331727318 1.4233912134053073 +2.933056427628624 2.6127191460317287 1.2243460851140209 3.7715613582110152 2.5672790307014712 +2.9005049139783132 4.554792769544006 4.213313709458434 3.0797174057245527 2.0054198784571917 +3.801731413647195 3.451429668025867 3.1138276464318904 3.1965560466183423 0.3599379129554973 +2.7192304398634297 2.6419912672571857 2.6696934818596176 1.817974980938272 0.8552135958908754 +1.77406428183525 4.994732828440341 4.218883346055435 4.309216773970062 3.2219351351773295 +2.13517729509101 3.189349419934199 2.0784715442042887 1.8041675133712851 1.089275708958773 +1.307172570658644 1.471179552898354 1.1263206678551048 2.3473194589405693 1.2319644223984483 +1.610077997379617 4.598333177474906 4.754603407773828 1.1445465965823916 4.686382314898776 +4.054338580955644 1.7703907234624725 2.1897518061579566 2.15033453698896 2.284287971525567 +1.009445690728664 1.0138278098320543 3.1109675142215507 2.930557868389918 0.1804628584416512 +4.917426441836089 4.7217137008989845 1.8345413620014468 2.358629111697452 0.5594385098887426 +2.876153914305213 2.827956373143831 2.8470962096483623 3.4172648245365993 0.572202107980715 +1.5860801616856404 1.1258520474820228 1.9638554224433302 1.7095802944920657 0.5258001120179131 +3.7038165848118965 2.4993080612413663 4.199232025184584 1.440985235335789 3.009778419928158 +1.902720549697336 4.401621005591004 4.750143088876454 1.7614327547819908 3.895753194131864 +3.2606105220527564 3.615317170428318 4.723606834792953 3.701780202412124 1.081640639512297 +2.0151719981812994 3.165915397599984 4.788977220836811 4.5299088915125285 1.1795451541015907 +3.5793204905539113 3.212952792670052 1.4253747020854175 2.6677637252785367 1.2952821217802213 +1.078862760855528 4.264057843338662 4.496259711802988 1.3506327796903337 4.4766546113707735 +2.5430927424716288 3.739870645465256 2.6013942363562483 2.641238749589176 1.197440994090562 +2.4538465179073827 4.242827884318933 3.8987271384134736 3.53382082734154 1.8258178839160997 +1.1175888988184308 3.0139580433706192 4.852426172375763 4.8231554965135714 1.8965950292234313 +2.2284085976557875 3.811034553645892 1.2465090550498976 4.224146879076182 3.3720960733119063 +1.2409673816758597 3.642927129802314 3.460902655851902 4.442080317103612 2.5946329672150306 +1.4495347783572443 1.4748106924147724 1.3947785878906802 4.532729693898139 3.1380529019640306 +4.486907315575427 1.9989314351887968 1.3054641673756695 4.27077470725596 3.8707997338160967 +3.211968058860667 1.2184628994596554 2.580930519496812 4.850169050873289 3.0205142497333335 +4.858417887881618 3.2786720834132352 1.8434677806290383 3.009570896904967 1.9635155422160249 +3.863060906690658 1.3251418005688964 4.518285687144467 4.710969330948872 2.545223050305734 +3.867875039929651 3.521344665282022 4.762298654220238 2.242187157116129 2.5438249268355206 +1.417198026170376 1.0434173152492718 1.8699220540586787 2.001215794592744 0.396169239290625 +3.17176411847189 4.696236763748509 3.22851928080042 2.120125213467585 1.8848220750764026 +2.021354587087966 1.2339224786228185 1.371185823285229 4.419634140027833 3.148505433581572 +2.1383556898602927 2.9527697522884173 2.1172498092861147 3.8651628164315657 1.9283335151443421 +4.974309115247444 4.196140697988897 1.8806938220677032 1.2134038607596973 1.0250960823655084 +3.9693467734007224 3.1083133245213714 4.897788435835433 1.040694448844754 3.952031455412358 +2.120770522681226 1.4462832831226016 3.0159817345325655 4.330076834563964 1.477084617838106 +2.403533537657413 2.7229217785680557 1.365453461699746 1.6717020008713508 0.44248956617838636 +3.493031746931622 1.1355610376157594 2.5423925310495807 4.491602693073463 3.058935828195715 +3.183588423212254 4.908618763158053 3.8942474594611656 2.827006473332474 2.0284804648323487 +1.6829084534154828 3.4316200797436944 4.761110133760712 3.0854485114418666 2.4219484355715926 +2.257831753174823 2.537240187885059 1.3486773605567617 4.579814960185544 3.2431958406981956 +4.091986570817152 4.842290697591652 4.793646972039884 2.1207295071937007 2.7762283869549695 +4.49868963582286 3.759723194519377 3.4499713605420252 3.476130816440936 0.7394293194793269 +1.2120498336878889 4.65529033434005 1.5280910653897992 4.542664808525261 4.576413442657153 +2.4604151103081 4.8001733430958 4.130214186086954 3.2513852476067706 2.499361696715389 +1.3012477879878488 2.3047265381577824 4.113405009116815 2.83702912399039 1.6236086357786093 +3.452118664951896 4.757992480849921 4.120738408412076 3.1612754496116957 1.6204553657407694 +3.2934426316912373 3.9242546830578027 4.62717759993037 2.3142841351097263 2.39737356783613 +1.9699020259721416 3.9297694342011447 4.068217717932464 3.607652371131516 2.013256242139124 +3.4172338231959603 3.935814591130533 1.0498989183506522 3.0939042283520743 2.108763552460451 +4.720404764510668 2.995150121774667 4.845309288137882 4.157504489485882 1.8573042355335447 +1.4239892101678948 1.4655236410990553 4.677018462619622 3.4174680958849146 1.2602349920924714 +1.0894116570805017 1.5454157028422282 4.539396093087726 2.2194674467598703 2.364319905132057 +3.6702013375325846 4.408479785012117 2.816350128059605 1.5730340405603478 1.445990995631456 +2.3079177823751835 3.186684417850624 4.856817167364788 3.736671790161716 1.4237122130874056 +2.0217735686102514 1.8795141627006688 1.6046782463388007 3.0451477110972602 1.447477121570932 +3.0525388414212644 1.1036978799779047 3.951937527499806 4.198290787473299 1.9643500252498398 +2.6621943210004106 1.9277601300524037 2.2118283073406535 2.0971171587007635 0.7433385691969282 +1.2188054100369716 1.5065330346129326 3.9700491349531832 4.402589739675001 0.5194983740852719 +1.9203328669089617 1.9093046842003578 4.445172507699107 3.8850631623609586 0.560217903631242 +1.237328218211991 2.156678733913788 4.211540097338236 1.5686838665022278 2.7981948516123523 +1.7450046964573405 1.6468715190320777 4.006931368660652 1.5577598800455559 2.451136695730506 +4.933774089458627 1.380638404896092 4.341256184635073 4.076402128825698 3.5629932449824193 +4.7702897265605975 3.8061320156643283 4.198885315776482 2.1024691651274856 2.3075009790209604 +4.929448932256062 3.750478196199484 2.5235644700664652 2.0230338655579887 1.2808211750776965 +3.287030425851368 1.160755974606381 4.0537478131839055 2.8977602275461614 2.420196343308896 +2.9497106706192975 2.255556313863207 1.901682574613853 1.091523404707432 1.0668683853160723 +3.912784401033482 3.4380525657825967 4.9390833067362285 4.828759297632255 0.4873825011071358 +3.082336946338977 2.1051886106872613 3.5476253795344825 3.650439862892841 0.9825424610952774 +2.8113050482489443 1.5952618648004666 1.2433408163274051 4.974557275765941 3.9243773125422776 +4.749345897790931 4.326224312502426 4.51998027666256 2.783480598363051 1.7873060758223132 +1.2620776414743937 3.4758030688479975 1.7929778500015856 1.480721799874861 2.235639530121345 +4.735934479534476 3.0379735544165936 1.1208811373883085 1.4705331874117813 1.7335881458157223 +4.305133937705952 4.175814752312013 3.766098338069999 4.69485560706527 0.9377171836020205 +4.266044132086275 3.002547192124133 3.150567075656423 1.0881568059143576 2.4186691873902966 +3.641376764857241 4.773260600585312 1.4988065021614534 1.2156350221630685 1.1667678023784194 +1.2523976649642279 1.0376361848261593 4.0325092338712984 3.5283734502713204 0.5479738877511026 +2.787857774637005 4.646273409971517 4.316796969219919 3.567580545230317 2.003754955984275 +2.4979013589676495 1.408214872926231 1.5294509697099046 1.5283264807806582 1.0896870662427112 +3.721725806797504 1.4866788947199625 3.1804104012366627 3.753754282510069 2.307413683191856 +1.7816755635652486 1.9085094305905197 2.1883340327223437 2.7338409344360253 0.5600576842092646 +2.588569126254744 3.324240453432616 4.600138630266512 1.6106218016001774 3.0787047878143285 +4.616812357105628 1.2015514997458276 2.514530090418436 1.1576716784935215 3.674924689544726 +1.4387935805113217 1.5942518831234245 1.5885279005170116 1.5910430292706836 0.15547864716315124 +1.5083636336312347 1.5481998805244563 4.058472468311158 1.1026055019616665 2.9561353908985093 +1.993936721630496 4.146479259082096 2.8876331457312006 4.081862075497975 2.4616299706150935 +4.840747449475056 1.393253007590463 4.683643439567907 2.4937016129156486 4.084245723624644 +3.5624479612812 1.801577150224888 1.5662503645273822 2.3890975624976725 1.9436418199960794 +3.1809190134101737 1.6515313863088892 4.521801494714449 2.1377384779664377 2.832451761593854 +4.595379603133143 1.5216632151258778 2.081431019960299 2.3959280893398693 3.089763881035696 +3.0158152839016754 2.501031742909693 2.786580535496756 1.6784430385499065 1.2218718452505044 +4.498640469548123 4.150320949013247 1.09968044744901 4.828058410965312 3.744613294750155 +4.190013290078855 3.719776395102213 2.7999076276076797 2.6912003758736636 0.48263858525488385 +2.4177741370008223 3.0807305587659575 3.8674309382920966 3.678430071581924 0.6893711226740123 +1.7349368344535283 3.6194698260466605 2.57557481734434 4.867817141550294 2.967463473959549 +3.94413200100939 3.8099826253066884 3.475447164403286 1.6332731289428688 1.8470520382290108 +3.3860652430851554 3.602692408054958 2.731166001520922 3.9388668146169588 1.2269753797675331 +3.344612770699635 1.0776861948727312 4.511150047249126 3.192200895219844 2.6227052762041434 +2.4887200252760904 3.6109495284622413 3.9096697674057728 2.9626682749529536 1.4684041965784835 +1.900778799757095 1.9049216193029386 4.368801467496242 2.772534791386283 1.5962720520678566 +4.661663115388035 3.023636024044836 2.3945042648030634 2.530141351768308 1.6436332228738495 +4.952068174812679 4.755325201092498 3.298308322042108 2.0273758038437126 1.2860704737775355 +2.394633461347023 4.153258560463043 3.1807875328364608 3.997345569268707 1.938950557931511 +1.294533114817574 1.910990818729183 4.868784447619719 4.560304097092612 0.6893331758832589 +1.7498337505390857 3.01226302885846 4.198317524926399 1.7339895571649526 2.7688698083241894 +3.151491172339948 2.962227658539347 2.98266506134711 1.192686840766119 1.7999563071948277 +4.50065928170743 1.6795034214888855 3.0335588310347807 1.788395991264471 3.0837235422764953 +3.1019734649714947 4.83355747466301 3.0182618815678794 2.2151124294120548 1.9087776782845998 +2.303060281552069 2.985439572926988 2.3224810384110453 2.409559524903153 0.687912901541389 +2.9834307475414046 2.5600406736284724 4.555674340801064 2.5059940790516535 2.0929520611072605 +1.7739436238922544 4.824877576337986 1.9145000339429674 1.924458371891968 3.0509502045560892 +2.315818982570225 3.733658695174562 4.654873422268651 4.774594888373777 1.4228853362391187 +2.482212915345556 2.281560885655973 2.616726850268649 4.584090790500884 1.9775697485410355 +3.2126679666700526 3.3184707025888267 1.4496412138281283 4.701259398677614 3.253339059946221 +2.969915488854771 1.8887835818342826 2.573417962833318 2.9763566530384122 1.153778916622225 +1.4088071887813851 3.250208748535455 4.352774076119996 1.1935983935293946 3.6566584059406635 +3.960106869041615 4.467955494346148 2.9372693787675237 1.851464039590462 1.1987007386370954 +1.4024992369684641 4.52683599271109 1.8058326917292136 4.793704479612727 4.323061182092451 +3.254214673657007 3.5690827666507863 2.3866040693182042 4.857747815749806 2.4911229057422184 +3.2803543035056757 4.1784790200843975 1.0517368119141701 2.5108752109200023 1.713392212537139 +3.410577111423495 2.419819825715432 2.1416959685447354 1.8479878924896123 1.0333752624887098 +2.283044958570716 3.8922085110538287 4.169897901526927 4.561365423420437 1.65609605981583 +2.9816051014541927 1.517399136378018 1.8237067505833844 3.645109001192558 2.3369649690760914 +2.2041320432170646 2.1824700832629826 3.9678547374903004 1.646337212210831 2.3216185863937175 +4.436324473892145 2.8966601209341927 4.626354617562999 4.166319129158436 1.606922204203133 +1.78774289366465 3.407965634649647 1.767640955534974 1.0711415437048815 1.7635853143765405 +4.052374009496894 2.977942396396718 3.8437644468565186 3.7938438734691475 1.0755907004415621 +1.9867161950651697 2.8739028471704184 4.041241058403856 3.6728794468231927 0.9606198168682673 +2.1545374447995536 3.4224554317807163 1.9822920972324654 3.166421022871941 1.7348709848995871 +2.3110114189151685 1.067275555211661 1.8208939621004872 4.764228200842064 3.195323980383017 +3.062358409589924 4.150202787929912 4.169191846075616 3.3257478144189903 1.3765185164112752 +4.33584587900254 1.2828869665536655 1.211690508228827 1.5916214850443335 3.076508681646291 +1.145887650235073 2.0175458410008376 4.228652418766455 4.291741680616008 0.8739383596626066 +1.4912239249211554 2.116342392272377 1.294925786405571 3.7037039382830694 2.488570931917738 +3.5489814978678274 4.598583934836152 4.135091749167682 1.2097089741076048 3.1079783873617983 +1.0190780340222076 4.666320265157596 2.818982367994124 2.559875540010185 3.6564343616268222 +1.9940523874040426 3.071456182015852 2.828577648897324 1.6790529950570652 1.5755017824269488 +1.967505982033345 1.8590960574214574 2.2002343955673713 3.696929985359798 1.5006166733241555 +1.4148681182304172 2.8423638149221646 4.025491745420936 2.9747128570523196 1.7725349746379175 +2.6269948392350595 2.017279675714923 4.106014631736031 3.341080870720425 0.9782005108196717 +4.425848851555763 2.2007468121622664 3.2445258805324273 3.9311290623900272 2.328626851827076 +3.1967810398804186 3.878055208457117 3.665603316946239 4.170420268807476 0.8479237274993207 +1.3646372687952213 1.6232010132955144 2.7450312435764164 2.939273167162009 0.32339625051667514 +4.106319622756978 2.703682752799558 1.382259009329211 3.227786829837685 2.3180515795026446 +1.9038097153809517 1.598535721500093 2.2893191920702103 2.9021797878968587 0.684682642730897 +1.2129380403850338 3.3336409947110757 3.241000174577921 4.913434466304965 2.7008179280787776 +4.997235229748094 1.3300240034841946 1.8698328886838342 1.2332507308672578 3.7220525280665213 +3.015545162039855 4.210228932002865 1.5649430534811004 2.8942631019372858 1.7872775669829757 +4.405580268658351 1.7306828726626868 1.9623710797638836 1.2649518046118526 2.764320843255712 +3.1370215218522106 2.9445485974040433 3.195788432907533 1.1401039163143012 2.06467543657757 +3.7233065582626774 2.077503125257197 1.5866920090047891 3.2580901137158658 2.3456855212334844 +2.100730341636123 4.4146405494009375 2.434761041711298 2.456244847482627 2.3140099402354837 +1.6957951407756666 3.93637867777219 2.8545023958851323 4.5850582912660505 2.8310842963955527 +2.750730335926206 3.5927156270561116 1.4588072693973206 3.7361151770378043 2.427976634294694 +2.0084284145852296 2.5363653700605764 2.609851497693453 1.0958181564448197 1.6034383017032736 +4.6816007258245875 4.336901281755848 4.881303036136806 3.3728130280448685 1.5473719046352472 +1.97874726620921 1.7123986238105595 1.121954606332495 4.594858800549774 3.483102803754086 +4.48147316315964 4.464245195618686 1.6372205376988296 4.200105918645303 2.56294328433829 +2.4180690348055993 1.8191833204588694 2.2543419279171046 3.3632951883974123 1.2603338576656973 +1.7833856836980178 1.6807318881040967 4.742277710905999 4.611262360208656 0.16644165304450165 +3.8685031825961933 1.9728682211194317 4.521300034137537 3.758004395640892 2.043539120966615 +2.5583755245255424 3.789982623711218 3.4247360577097044 1.6785103612001713 2.1368575595754526 +2.4159951374710325 3.0871479911315527 4.418652220457078 1.3794273363121015 3.112448240434322 +4.430597493916179 3.4971879169621034 2.3709795422630418 4.775137673725258 2.578997820748494 +2.7405415264222444 3.6580546666310454 4.430787582137956 1.8248591389900892 2.762732960903547 +1.6266460218100938 2.661194232953525 3.5951705047520424 4.149861275976224 1.1738704582965491 +1.613722014962402 1.4232426807397935 2.683058916292489 4.281008510826 1.6092623413961133 +3.494933765551604 3.732072801476938 2.2053954212486637 1.1990354391049594 1.0339223065684742 +3.0777692491501036 4.299486987822785 1.490736447246142 4.953352777962677 3.671825988079001 +4.574951470324751 3.160589240670333 3.645194840875169 4.987664078883612 1.9500369667449864 +2.52562773975764 2.565731087070848 1.0913320846891827 4.184625620537695 3.0935534870740335 +4.106501443772171 4.005893226887021 1.2232102071302071 4.632765227267665 3.411039057039563 +1.6974314501018255 4.386122164656548 3.6917884258833773 3.085762550776191 2.7561431602571402 +2.8269577924406475 1.5727107437962369 4.861075774714321 4.488801661798899 1.3083285803574647 +3.218936605936118 2.4674794142475305 3.5900113127844397 4.330764485685709 1.055179214211404 +1.5492102744809855 1.0162446376250522 3.943418390304236 1.8118023378567583 2.1972344811423787 +3.5071014166936623 2.12380273657536 4.32402750344434 3.9826985974245463 1.424787935273775 +1.0851815441850672 1.2432917519818014 4.878590930255001 4.33113494157087 0.5698305865392329 +1.1822725443490172 2.814052774909412 1.8491261184659527 4.067769481390792 2.754103319176348 +1.4123158341492625 3.8597250497721394 3.301888183129464 2.883904423150048 2.482845603802684 +3.2624190880637327 4.51967667412023 2.0962840037573565 2.8429281204030077 1.4622496622048426 +3.656162249760609 2.7534681198058335 2.591365613209831 3.6075717417026536 1.3592393416323634 +1.1557531873627838 2.355261717639593 1.1977249606692038 1.0377702322912494 1.2101265344323693 +3.7124247075818047 2.4614442440336055 1.134414443067369 3.912872506167255 3.047093915287817 +2.2845631008272758 2.882256286197117 2.323555158751531 2.16478763087145 0.6184207885790222 +4.030152409964408 3.6586916122071766 1.8364229759201316 2.452736908585144 0.7196012700568644 +2.554577821713142 1.0176885658230401 2.5014541309107075 2.662097154190251 1.5452620379077535 +3.602055180195968 4.854476843431403 3.510432357226878 3.9652744168957192 1.3324568742684346 +2.563094411218535 4.7482990430428735 3.1728404999771254 4.196721711512418 2.4131829641122367 +3.608090508167415 2.6771303312244665 1.8992376435011131 3.099048950111966 1.518628994364617 +1.1990887488237676 2.1482692809381234 1.9908102314103715 4.253360769407479 2.453584850690086 +2.4267916752858 4.535140198551385 1.6894199417090707 1.608658238495753 2.1098947718457643 +3.356600068938285 2.6569229867382793 2.298579950857551 4.371742176115233 2.188046990261246 +2.5680111289967353 3.5019456559885858 4.095413044334507 3.3038913756673005 1.2242304736761012 +4.753314854573828 2.5157253450734482 3.8922989914985817 3.0675218787110845 2.384756612068458 +4.657771527893525 1.1307297636799274 4.50322467842179 1.9907484327641267 4.330422668920551 +4.802993861171071 2.844305555504957 1.323067323656419 4.183257535625824 3.466575821671694 +4.422537488122255 4.668736025612719 4.424781362810088 1.273760339110396 3.160624497098619 +4.179204971303184 4.891569173062175 4.574493992486985 3.3696009835834486 1.399724943998764 +2.6590894793318 3.717925394382918 2.939824847664463 2.12549577661065 1.335763950316636 +2.2352717006534384 4.4075097221881485 4.469087819906578 4.765285900993504 2.1923392359396865 +3.970351799778747 4.616661734488346 4.972641773269962 1.2187940475126235 3.809079846876128 +3.235040076891666 4.215703873037091 3.540867154106929 1.5106977060970035 2.2546151486901884 +3.596874276409636 2.912127320385607 3.738401250017421 2.6043988389928683 1.3247036883747523 +4.257551209265745 1.2580297139187868 2.406607308287107 4.31685406089364 3.556145646186648 +2.3159338657703423 3.4208040793674224 1.395915425468663 3.7473275744931502 2.598052594439538 +2.748731245140958 1.5428576325781336 3.230726691193593 1.5958693847965866 2.031474730769495 +3.3911295872565477 4.078307761023575 3.282177863413208 1.4355667698500194 1.9703264636532756 +3.2148933313198214 2.353858249071688 1.6851375331299114 4.423278007934737 2.8703300633596904 +2.9829474508171216 1.2635959931032428 2.0547284598952276 1.634564473467659 1.7699455388891336 +4.370568803234004 2.7702571493646215 1.0102786127910952 3.4011717971056923 2.877041467951436 +1.4219904834207449 2.1972322573159326 1.3217325956443764 2.339552794150198 1.2794365027146082 +4.106428573580871 4.052175638477266 4.535827949110099 2.991097418281455 1.545682953856159 +2.819047962740575 1.147067645945124 3.2406966189051256 4.642200309056803 2.181680722117741 +3.485845513320917 2.905990909518271 2.4013188264010714 3.024999575500523 0.8515920609942162 +2.019261187751613 4.54874101995474 2.707163281476834 4.211207304960661 2.942858584115074 +1.3042097258032874 1.2453766657179823 4.857714018833976 2.7488508886364955 2.1096836328855844 +2.6629904375789555 3.9811677320450687 3.666982504271303 4.448082435882345 1.5322233788872877 +1.540758274886743 2.3232659982921313 4.291920613664487 4.522615227307794 0.8158053333688854 +1.4605435791177888 2.309201264966156 2.42536852069218 3.657317233172141 1.4959670778230851 +3.446331185713514 4.151852274433287 2.0746661662853594 3.3410252154613507 1.449629348508871 +1.8525253884408 2.4751557374684294 2.7200819019712195 3.3834161469195005 0.9097696807716631 +3.6910179422067815 1.7922369292286198 4.13064293538332 1.5773633758156196 3.1819185791834155 +2.245127741076594 4.582411601523053 2.2478654216179135 2.5101343830210734 2.351952561685502 +1.900881234419432 3.1170129764890135 4.75899730357689 4.511943855657744 1.2409721270834142 +4.848182449845193 4.650781946276374 4.911397537875415 4.675776009402557 0.30738325180319964 +4.135120505105312 3.3892775823134444 2.920623496042757 4.214255359444574 1.493239787672152 +3.1654119778872776 2.1657513667582133 4.067966798169039 1.0698967843554748 3.160339403477259 +2.135721826370167 4.693500774514792 2.0186994350608183 4.916337092385061 3.865040380217954 +4.737167539061872 4.836295829292462 2.212756694292403 2.7605699672516812 0.5567097986872487 +1.1357357527495906 4.951252142784396 1.0682587376150017 2.0924156772453686 3.950577522289276 +2.3467851393518444 2.338064332360156 4.3233986618770945 1.2659283469196514 3.0574827520888084 +3.673040894718171 1.8124136579086132 4.93760853205168 2.981307091602279 2.69982389060138 +1.6459273594215933 2.1670221343541876 2.0499753127071463 1.8226468492601953 0.5685226422537654 +2.9165190133162597 2.596005007158805 3.777384240965889 4.312770740005459 0.6239935348198317 +2.036320883713944 3.8853478252502596 1.622716205550157 4.178477053357571 3.1544911066148864 +4.659920522117994 3.8686511215672996 4.850299393719935 4.4920027430749805 0.8686102429232845 +2.091897596893724 1.8062179736163397 4.478225474135201 3.20071310693435 1.3090648171526988 +1.9453215954103853 4.93996064423437 1.4503116682693808 1.1548360365549222 3.0091807658694214 +2.290477559399859 3.925410818601081 1.2861414560889899 4.71700294128941 3.8005022421614174 +3.7673402810190253 3.190721935092286 1.9261283668644364 3.1445307977861794 1.347958901649194 +1.1140159390074191 4.243026119049123 3.025289444312415 4.0566037234279975 3.2945885705368902 +4.982801772763256 4.234597897497894 3.5269857890642027 2.901880781480049 0.9749693889906961 +1.1033402008311386 4.785287984482281 4.5482966427739875 4.127446454911354 3.7059215267133725 +2.4728927120186626 3.3275848094790015 3.7478621100845 3.2278998537476626 1.00042957247177 +3.8549010667032664 1.888144470018097 3.3288833457676996 1.4448907840071694 2.7235196866139293 +4.575992004982005 4.634854516114624 1.0989735036171373 2.8589471899041423 1.7609577427182934 +4.829156881451917 2.2326672535646774 1.4192261982833831 3.673343606546865 3.438430409062032 +1.63191418950466 2.140804168513081 2.581265553761873 3.814563530097291 1.33416374900843 +3.0634372420025215 1.4277580241055876 4.238275656180965 2.1544701365102927 2.6490926649835953 +2.4386569894855414 2.833554686709073 2.866352530950971 3.7713219443781827 0.9873772483257042 +2.270297061546773 3.7464075530355396 1.706271229560691 2.1655053294505193 1.545897196318316 +3.099457371921977 3.6027046931031816 2.74249326842769 1.072892233323905 1.7437962847464978 +4.334051862137012 4.879323997379574 3.340888453401442 2.7058477330130652 0.8370175733061826 +3.3387684506410023 1.7054429784758267 3.52243691945243 1.2863810677186742 2.769060828168346 +4.584379912183868 2.7045770077958613 4.540283057257001 1.6543657177139006 3.4441512524889375 +2.2273634982016914 3.829217378595408 1.0300080559160016 4.79310734020712 4.0898474393997555 +2.8614003186866563 2.193962942197638 4.510696362476712 1.079572965373088 3.495437085356631 +4.597170207736079 3.268808570027623 2.7415155946711716 3.6716333455515535 1.6216237760461805 +2.7810522885691698 2.3689607415647584 3.812452901263235 3.717179183768405 0.4229616109740618 +3.9826059883204414 3.5616493890858423 4.099635513316526 3.653091214076897 0.6136825479208046 +3.2468669183376564 1.7107008542575644 1.659057448804854 3.942368763841608 2.7519659768620306 +3.8100707683934423 4.060033287280326 2.303928622997192 1.1661036349094815 1.1649579238603747 +1.2259693961222298 3.132760520432638 1.8528279238447865 3.462987738814923 2.49568968854175 +1.8019999425309838 1.4176943695357926 4.501971507754552 4.220517234418381 0.47634785757296594 +2.769169991736046 4.551290146655017 4.546127864045658 1.778600686191906 3.291680258884142 +4.892977691200487 4.3918984717431835 3.98845508828262 2.7719821366358923 1.3156317213643196 +4.930727705196492 2.3476981731314885 4.006679723314029 2.3690799274451284 3.0583941300868696 +3.963055805524901 3.470044060003475 4.4227996318133185 3.844040521619497 0.760278033915506 +4.182071685565537 4.0498285383072705 1.3136625046032466 4.690089122862232 3.379015382990225 +4.978722268155062 2.8636206031187332 3.6774835398317114 2.0484654304580667 2.6697106686131242 +3.2841215027293362 4.969505273203527 3.4446804011508445 3.726517148018334 1.7087862375565441 +4.518382673845007 1.5200389194057924 1.1463364195870036 4.5310449543899605 4.521760402249618 +1.026091687278761 3.602388828937263 4.098993507221877 1.733766630600385 3.497371175613253 +3.1029925250220334 4.311155896195182 4.334146268761456 1.2534778202181442 3.309105139051149 +4.975299074735219 3.5212537878292767 2.2114558755276326 3.4298760524183183 1.8970491358495998 +1.6868406301604262 4.690311564623302 4.136049330076675 2.683680260368 3.3361974714950167 +1.5799422331969555 2.25780854912081 2.5502794351482283 3.0849546335371203 0.863354104661801 +2.8059304447857127 2.9053138487458865 4.075440997238998 4.209030882249564 0.16650320825692008 +4.966850511364132 4.795269640745116 2.2628099348217483 1.856176668005944 0.4413508908382001 +3.36746506670568 3.3309849466240626 4.459254440058664 3.7880463565661744 0.6721986986798099 +3.2024798261472918 1.7848092336530197 3.7570667305035825 1.7997636852682204 2.416779907172079 +1.2896338679001724 4.002746937771047 4.060338334446208 1.008934481126885 4.083141928216086 +3.2734235431076173 4.659409683940314 1.2079454615794831 4.372555485705664 3.4548102968730747 +4.68158718894602 3.441071913824357 4.3596432234017435 1.1308175196802046 3.458929541465548 +3.3539853767582732 1.8383728667301975 4.770933362503396 1.1284253034027536 3.945243495801841 +2.23859890728477 4.041282565232612 1.7849544925471847 2.724559571801281 2.032861548554723 +4.8673130904247675 4.623215766687586 3.380797481936139 4.065440333560697 0.7268557888166407 +2.767021495740031 1.8942280234703035 2.4340927683712876 1.2181223113531647 1.4967807446575168 +3.9204890540297397 1.3885844649287367 3.532503401287815 4.669825390084318 2.7756156352259493 +2.503610605309927 4.985011724111095 1.7127638883521747 3.077155074154635 2.8317688500799516 +4.301312657288284 1.0807674035520818 4.536993079083539 1.441514769782886 4.466978586775809 +4.712182750804188 2.863008761312128 3.973469888649535 2.9857211636326513 2.0964474682630283 +2.81609661945578 3.2870473921372394 2.241409966605819 1.9891847565547032 0.534239821498354 +4.711325813142464 3.4624609288492314 1.9287492215563797 3.603324427497087 2.088986744709528 +1.9395234609564835 4.3378769084904345 3.2825440241395105 1.659208997387518 2.896086301956121 +1.7078457607608044 2.524807586072309 2.3759920574892917 2.4544015780637416 0.8207159538677314 +2.1683703911327927 2.1265040609920915 2.630249735795905 1.7630151626396309 0.8682445476229582 +1.1631612759013583 4.358789105233157 4.123759051241134 2.2441256801163543 3.707432916917819 +3.2496102892332144 4.790553454381293 4.379777088183461 3.0593709296313745 2.0292802324368253 +2.3712361202852312 1.3440379422543334 2.5557945051550317 4.676814639641313 2.356663426933553 +4.9741825155243 3.325702136352658 2.104905124832809 3.417135281357693 2.106996806881112 +4.599953836612457 4.594569965022824 2.1744909164716266 4.706700897361396 2.532215704356772 +3.3435580654924495 1.2742284755437496 2.5371309847200454 3.46877443897049 2.2693797561635547 +3.8191622861639587 3.5823081753932673 1.1113433780650337 1.5366429922290084 0.4868055377632845 +4.737181841124473 4.117844018756783 2.8013155527207894 1.015372671163401 1.890283395261319 +1.3226773783866248 3.4964263678091125 1.0667073063303003 4.6189295438950495 4.164548894425998 +4.9594146316937895 3.6183102417362476 1.8373606180827582 2.802388575574378 1.6522227281767548 +1.8659003938316006 2.4979652604393547 1.646083985715367 1.229323891485524 0.757096408485964 +1.2590624077571855 4.611848918623544 4.954092358083301 3.136533014682793 3.8137513492924384 +4.079569607874149 4.638320966712218 2.546771361742963 4.423534771049701 1.9581736326271066 +1.521905489715932 4.267799075358248 4.620335387309511 2.8884066397064787 3.2464609608688386 +2.7005131946653305 2.3998396550658 1.3960324594133033 2.876587802326057 1.5107775153353362 +1.3429337583785905 4.554204766812098 4.228491589353099 3.745152462371016 3.2474417933624853 +1.301094044400188 3.057297926439021 2.1948184439707963 3.91658887373241 2.459419746218559 +1.9874358387676683 2.6137552167701528 2.457686749730152 3.625730304685162 1.3253685183877562 +2.4642438189352034 1.4891739978020726 3.5127186164798165 1.5849713446635043 2.1603172683843987 +4.168734746584928 1.2940940017638787 4.282354559853262 2.1853060701549456 3.5582540353284653 +2.872964276157019 3.487466520677871 1.6390829786349013 1.916246684616707 0.6741162573582792 +2.945860736719854 1.8904432046876178 2.806688326400116 2.6717594780081844 1.0640075004666976 +4.228057687196426 4.629032801396447 2.0079626076031287 3.1023663488671103 1.1655473354181372 +4.706198019618141 2.219608464005172 3.352490452445082 2.890579465644971 2.5291281853259546 +1.7669211139017649 4.073775224885457 3.932073442907129 2.2801930832872936 2.8373023476288384 +2.020434249405626 1.878122523120176 3.3023786137293483 4.410349519823731 1.1170730308220462 +2.336342553633472 1.6699240286473955 1.866246157854102 1.0433714936250538 1.0588844901473848 +4.196402040398004 2.938384452779421 4.153852958745206 4.639252856145398 1.3484143692329134 +1.1562450968556184 1.4765776830757913 1.1670806351244574 3.2630020954839574 2.120259355312459 +3.1348824085040854 2.793210878998771 4.26256219956867 4.078776555379173 0.3879646853576358 +3.4110897594313645 1.7216534941456523 4.180478660202912 1.5697431040408953 3.109684073771985 +4.917194466504922 4.760886283380296 2.9652088998878052 3.8118260321420223 0.8609255581861164 +3.099648258226351 3.1681944737830983 3.5474449579976097 4.4773217156982215 0.9323997898857305 +4.22048843156626 4.583984887715351 3.2990136159871803 4.08910910725331 0.869701419426239 +1.9847910890533136 1.3573704072608117 2.3252763422090097 4.181981078705177 1.9598492774874985 +1.3470779946491205 3.221842040796332 2.8087253839822446 4.426431771768344 2.476229832994146 +2.373547697212679 3.764951957234648 2.4540457327904535 4.7172029924323144 2.65666832643387 +2.6703589328107986 3.787431765103258 4.916158568771373 3.686098422364109 1.6615955213063611 +1.1273131884268826 2.8426248747288656 3.94980946435052 4.861068288667726 1.9423405535745086 +2.816599876824618 2.94314343947896 4.599936694804305 3.2783294862232184 1.3276516437012933 +4.463122695202676 1.8418700137898978 3.7803388012520314 1.5983579221807789 3.410572705052076 +4.275171140199033 1.3090113154230134 1.4069815997655897 2.8721738667445993 3.308306588774746 +1.1214406658997302 4.436225370708412 3.906826496589858 2.3054108419308457 3.6813489019951002 +1.3578339719517518 1.545126271646314 2.646349926780996 1.4218963130786326 1.238694900947628 +2.866044522306627 4.398467751453804 2.276098373071191 3.3659393296971647 1.880445230249815 +4.927659293463936 1.9362489216934868 3.3346586986704323 4.132107521407066 3.0958780074834764 +3.7073807519475097 1.8083981925029056 1.7918385333288933 4.710874146752162 3.482370410152851 +1.7270725378580596 4.767877488520282 2.301295683960183 1.7439924711288994 3.0914529947912768 +1.152829251137466 1.7515028649230309 2.415622432407815 4.866594241832194 2.5230285187520343 +4.904524658732216 3.5957306603141483 1.550044326260796 3.148367710443805 2.065812036638711 +1.6545627727759382 2.0388147534590497 3.4594957865813822 2.025906659771777 1.4841924973417768 +2.014715554893222 1.1188485796875125 3.633800617159205 1.0253059929025352 2.758046743991148 +4.216702391668406 2.5481753157099116 3.729184716691476 1.6666817520297217 2.652904273140124 +2.7056104802172154 1.1058617131896584 3.8546778822323398 2.6776115796936693 1.9861221508704459 +3.885094777683854 4.829101587125454 3.874768896829454 4.659331940056326 1.2274722094896975 +1.578920438899066 4.435281509261758 3.403617397912447 3.639352414095653 2.86607214880198 +4.533460469260813 3.812209625502221 4.723010846897692 1.6550284937496484 3.151621566567009 +4.201789247129925 2.614162432491581 4.773432850009959 3.9923290741986275 1.7693733385426078 +3.1227488470648925 4.071633689064676 3.4053029188383577 2.167594758345072 1.5595845388848362 +3.1484660375322533 4.9416755923577895 4.66460805440093 2.6192804246488923 2.720103972377653 +1.4020901075509653 2.3682216422841678 1.6465975541009854 1.9540060016622633 1.0138590119133766 +3.097847815449547 4.152971774474066 2.3015959064881297 1.821371792930913 1.1592677724104083 +3.3715900229683835 2.914688130551409 3.1307207225895426 1.2366188774745561 1.9484304295925499 +1.7442449098387436 4.473682107388811 1.1904926924890065 4.945146187710995 4.64190158066203 +3.4774671915776847 3.4695939217280465 1.154630125838025 3.0776878685569753 1.9230738597904735 +2.7267033937994256 3.5809653565536785 4.034290697147884 1.4918299866279385 2.6821390652884376 +4.00933886226186 2.7765748522380944 4.197807314964656 3.9633755575158083 1.2548567062857934 +2.8674516214423122 1.9862374573064927 1.7769105193324046 3.375513256081675 1.8253956045240847 +3.353054903309553 2.819639881371845 1.4451841644073196 1.573261527584187 0.5485757892827071 +3.1775704329722956 3.6617377084313385 4.249242874522288 1.7906263306514512 2.5058358406768813 +4.541853719056619 3.146479378832828 3.2963095425725224 3.3678568028418483 1.397207414740928 +3.6465391646516334 1.7190932789331024 3.5961436305335446 4.406169624722677 2.090739044844044 +3.0484078040949627 2.47992733282121 2.8792388470639128 3.403546235886437 0.7733487468105974 +3.976576899437821 2.2491221318008026 1.3918695872788955 1.530186214294837 1.7329833996726378 +2.1267001974926627 1.4929233776153032 1.9137961722389383 3.1163963684046343 1.3593823190080228 +2.2497356581878623 2.175331302403924 1.9526879164461293 3.6132711513174263 1.6622492857857525 +4.596440466138915 3.4704971974855567 1.7836253363128072 4.887449708637545 3.301738023899362 +1.6980208564230792 2.747140021623989 3.2776659504462966 4.517798839932976 1.6243708340087968 +3.2656169340357937 3.7151059295090096 4.35480138618923 1.1485148505209426 3.2376401445897702 +3.022081057446426 4.4403024612971205 3.0482488537199166 3.0514940220661146 1.4182251166362236 +1.458333714307181 3.105300859864666 1.4129435630712894 3.7504766963376066 2.859468819145195 +4.212334649242846 3.9641837834708267 2.1781306867126258 1.8174205242745773 0.4378249347278958 +2.0631647135938738 3.2950522750979108 3.994296661106948 1.0629032959533942 3.1797191739923574 +4.121964296348523 3.3989565045896195 3.414742677666727 1.821908194947739 1.7492461108382527 +2.376747082154597 1.105210004710877 2.1406847008760805 3.5629620221958507 1.907794359477629 +4.384104389175761 1.0760908468785488 3.220126336326816 1.4811766689202805 3.7372315344108733 +4.44604723005091 1.7831488564621298 1.801123194585141 2.4205548561877404 2.7339940254977746 +1.8476054924139151 2.226366666237119 4.707730392627575 2.9080310585733273 1.8391241719338127 +3.7752408494570098 3.2362533198469503 1.1968762799568613 1.5024760460169104 0.6195956537057951 +4.4031993136614 1.5365200319705608 2.6543659172635974 4.2217391388951775 3.267186698057407 +2.6709696334306243 4.60538532253581 1.7770010418094402 4.246434452879637 3.136887857409964 +1.0887006567727826 3.997733500884661 3.4417932238869415 1.0881386657820937 3.7419462672530948 +2.0632727503846326 1.0750446933080253 1.0313909979262945 4.446473509676803 3.5551910293059596 +3.2346390263304663 3.7082513898494245 2.074026351930794 4.6611677611701765 2.6301348524893453 +3.1033498973794487 3.0042475919892317 4.0853557058819705 1.8633906597031666 2.224173989006712 +2.4275476179130964 3.1159008102351833 3.763836873861155 3.1070130074998703 0.9514450634701904 +1.0141007334295287 1.4735718144926557 4.440779714471972 2.632632394866515 1.865612608161115 +4.274586065086017 3.381010468302494 3.0140499592981063 1.89378989037521 1.432989870581841 +3.350151206724711 2.7727126350233173 3.4958682304462734 1.3426765705944304 2.229275583714154 +4.429934211059033 3.156037537713402 3.709492661081074 2.4068757630522133 1.8219834020625425 +3.5169228307875047 3.4555956901742837 3.1924063236860363 2.6799140208113665 0.5161486013558266 +1.1056303158080771 4.912747300392759 4.943330061395844 2.1005646827114934 4.751363460372143 +2.0219819225110762 3.510070941379843 4.217233282612713 4.512198747899996 1.517041052110968 +1.0460746351188273 3.7835958971536656 2.9820881869499463 2.911124077548526 2.7384409003876553 +3.4055266366037804 2.3674981994366173 4.866354814705879 3.7291914415734233 1.5396894406216104 +4.693711933779635 1.4467068801500975 2.332998260788544 3.9048329653687683 3.6074514767101937 +2.7140070107649694 4.8516856064073055 4.227359356300507 2.8332434568065232 2.552102842655309 +3.721829411402943 2.4762932531205015 4.711752994486056 1.1777569730596276 3.7470639440829943 +2.6467173831275437 3.4688680258882423 4.378788988938853 2.7151579205450616 1.8556939432775268 +1.7568320736154557 4.067683306847096 4.878836653747062 4.665532787879087 2.320674893500254 +4.726420451905478 4.152390845902824 1.656123080669992 4.22523098307114 2.6324561540028713 +2.906907861159055 1.126066657399316 2.850039037480119 3.677956296340089 1.9638845130319251 +3.5048020692790627 1.758190123595027 1.4709273941847512 3.3792353912776463 2.58694659793643 +4.625208267111047 3.1802750433872284 1.706699781138786 4.785908596415232 3.4013760375908277 +2.2403527521511153 4.089220288151987 4.6630448289227235 2.49497236929431 2.849359464138762 +1.7667593582489962 2.447349164774035 2.313381822266093 4.405271590200689 2.199819375752302 +3.1513838817965687 3.575847195419399 3.204761363373335 3.1397811369483457 0.42940835394518817 +1.2659312903463218 3.271770819609716 2.795877425817375 3.126267641680201 2.032867411292109 +4.9987117076506475 3.179249155430891 2.6215688702061133 4.785473225477735 2.8271763365049454 +4.290751032776356 2.7754783001862444 1.6741074528903095 3.0882535714198895 2.072645820849134 +4.713665755940089 2.208596837174124 3.6703198484870705 4.401295829039393 2.6095394559024605 +3.2515535571529264 1.920532908136516 2.8834705425961724 2.1523731067969702 1.5185912645410005 +2.897258216682655 2.275391214622974 4.0408768431466005 2.535327822845492 1.6289249279142126 +4.394378805569458 1.1323966422459955 3.418784147531058 2.6503061266386507 3.351281262806082 +2.930233825575123 1.5672781845525643 4.175497219652909 4.352491911685622 1.3743999419393789 +3.6482548045238237 4.670693976057345 4.927793782882646 3.959357421681359 1.408279391734092 +1.816288542952067 1.668043767229007 1.2605207263290898 3.784004689764624 2.527834612320492 +3.229356018533875 3.252593713432899 1.1792918813511348 4.312221698642032 3.133015995895105 +3.4658339353163394 3.239341774472897 3.397789790933703 3.084624933354543 0.386485351528499 +3.035015340911894 1.2589847505444554 2.518695403218314 4.004060007851239 2.3152953735144113 +3.7925692626997267 2.202710295847817 4.093206469788436 4.018894937031519 1.5915947154913854 +2.547244816640085 1.9431676753861606 3.173173105105665 4.108059861026749 1.113068928225994 +2.4384758438942673 1.4328195577927056 3.9498995891815847 2.2160845983228676 2.004359994687082 +3.9317220287300003 1.0927210865044024 4.6074233496874655 3.2460908585842048 3.1485159204443036 +3.41348474574865 3.5525497403856505 3.535410323618504 3.4112854858313333 0.186402918671035 +1.1888496030490345 2.166303370303121 2.4357113814120903 1.3614141701527416 1.4524222406858207 +1.4712363109671305 4.578480085048469 4.788289451714794 4.585545477850104 3.1138511509874207 +4.027791396270857 1.8369749455566278 1.6050224307476246 1.3350395659313312 2.2073892878272523 +4.595811116656229 4.406715730601412 4.494935275226022 4.881282615288416 0.4301410608166898 +4.727130722333498 4.7725047896986705 4.29604605718931 1.2095656493309992 3.0868139098563203 +1.0504077090421795 2.97174352944203 1.8957000318228898 3.3395971532015314 2.4034080452301674 +3.134137736390711 2.157871166726606 1.2189272840593732 3.416516481175535 2.4046818280856566 +2.1276455475139238 2.562028503613088 3.0971572238041745 2.1017191245798883 1.0860872717865302 +4.826719494646907 3.247794342609348 2.0695027007905025 3.599754401345677 2.1987894175634084 +2.994584014898255 3.351457811257966 4.069275753379602 2.334297341279994 1.7713014980459618 +1.174446521592917 1.6019210865352322 3.294034926599829 3.0474874562377536 0.49347761733898354 +1.605875472313914 2.436124107676208 2.730801815916104 4.034987149688295 1.5460311062030516 +3.255379481186084 2.5060906668021627 3.1744305366589978 4.857798553814819 1.842596431274082 +1.4607051827223096 3.9205007029064776 3.717233916599063 4.377818878916166 2.5469523932648586 +4.66231472959692 1.0245405223026722 3.711954035269168 2.9566919322098513 3.7153495162060963 +2.0898877594646916 4.658313791233776 1.911834564185848 1.0717989627560067 2.7023086597090793 +4.292676090385635 3.5302298398673884 3.125701246538343 2.9339809908311674 0.7861812395228964 +3.6056143213151435 1.1513395404052802 3.5712533435925087 3.539239879825975 2.4544835632109026 +4.350815325602502 1.0831638129650814 2.7380454888189583 4.132675547770095 3.552821330910362 +4.641229069577349 4.399509905123111 1.7541189132090325 3.169232364864683 1.4356093603488465 +1.8253113895467825 3.254155466268841 2.2517496045838583 1.2452523386475458 1.747750594885032 +2.0654976711555864 3.595941919278976 3.0601665862889544 4.20508073930419 1.9113053168943368 +2.6835268706410926 3.0815912837142716 3.9779943367086696 1.4071053110507075 2.6015237187471194 +2.000852156295862 2.4066630061650995 4.792885764442689 3.3041595013822924 1.5430451491117703 +4.0189055288259725 2.332873738259364 2.6410700363011794 4.933016412580519 2.845298119800672 +2.0207976966092747 2.1419133471905623 4.757089407169563 4.636672505226203 0.17079002046186786 +3.5421543243907374 2.8806228571293873 1.8139233765453895 2.4632820717223822 0.9269792862728494 +2.32342243908324 4.4957288518439045 2.0806800694070913 4.640175217475765 3.357071724570118 +1.837569807820778 4.119245500635309 2.866066593108334 4.269993527253477 2.6790025762583447 +3.3887375034200127 1.0594339514889968 3.690688504573135 2.0777523011760457 2.8332345884637693 +3.422499614288526 3.068356427249198 3.2049251412930593 1.1417721330828066 2.0933269530136442 +2.7469336872809174 3.128332560068489 4.464988749599648 3.142423214935125 1.3764609306646105 +4.143411294982242 1.8462007187452811 1.349544733270987 4.367596371792395 3.792863314747409 +4.067828812326619 3.5242140128365924 3.7709125737721974 2.5480504061438003 1.338248456468904 +1.4279650101971795 1.485982391351416 2.5859034833431602 4.369380802836656 1.7844207367276648 +4.408871455382097 4.304811774241324 1.4688125379775325 1.3716408981153236 0.1423753659613561 +4.024420247560603 1.7500084851698374 2.788753301721368 4.151017341266866 2.6511718500203427 +2.4603816668543477 1.224662520271175 2.596018753389695 4.5861372434585554 2.342557024651952 +3.565843135059133 2.5899943235374687 3.571500474326356 4.2128674532272115 1.1677467638887529 +3.9506718333342152 4.80207598523221 2.165392572297611 3.8613382191725685 1.8976618948124722 +3.687502693893257 2.039974024282221 2.358797496728675 4.6853574632313535 2.8508300536726585 +1.7959320422673248 2.847644918241316 3.16786987237614 3.6188404875061413 1.1443227120005162 +4.36365175116763 2.982946999816579 3.4651098118936856 3.3730980740775602 1.3837672384831605 +2.0106735124493498 4.246207152295207 2.2213525170905317 1.2092957013256553 2.4539498065809346 +4.209688704132163 3.241680575632695 3.8046918586413483 2.876808863289407 1.3408976806245634 +4.081558168337024 3.5607330973923568 2.654029366683526 2.1966933242788977 0.6931197661348617 +1.9987113433955939 1.7673775938601803 4.003468824585563 4.954086202524531 0.9783602112277825 +3.1444707016919833 2.6967885748411433 3.8572618798351295 3.7541822922411137 0.45939600355275617 +2.247546049761814 4.853513844827272 1.2883381283305146 2.493781710777927 2.871264944128628 +1.9073171337489447 4.676321940693588 3.6947633224183423 4.04027331524027 2.790477517562603 +1.9531077277031947 4.955132714773551 3.71629112648897 2.626335437845985 3.193768530466787 +3.997342269781652 3.4273944590084287 4.98365273176963 1.459247836110658 3.5701919241898072 +3.768760609590972 2.1107656316434804 1.2365439889001433 3.4587369159121795 2.7725599636006835 +2.3166471284237575 1.9983810510410294 1.3868599367391026 1.7000927936619474 0.4465513617364033 +2.8003069174535304 3.512176022841215 4.085785578522854 4.189853924622104 0.71943578161313 +2.59151844744169 2.442915025530905 2.3060075604269756 4.526355733455796 2.2253154802130903 +2.184155960952083 3.045759400781917 3.994587934278493 3.79093330417777 0.8853449586957982 +3.953148884680656 3.9572725891659726 2.4315659449118683 1.4733180884814652 0.9582567293226512 +1.8886034407985415 2.7930554158385785 2.0506103043722903 4.560101223780235 2.667504086172082 +3.168080935161029 2.6804449076633996 1.3024621982393727 2.185829289600812 1.009022454365629 +1.3918777990351185 3.630259639881584 3.7907436277583817 2.3894975287100273 2.640803645773279 +4.231178800716556 2.408819746813476 1.395099027934258 1.9958512857595188 1.9188266718556621 +4.969240220166499 4.380004214179209 2.419436599530855 3.85366609387809 1.5505525831803897 +3.90467523503777 3.6487647090787507 1.9549172849791985 2.644577464676777 0.7356095164943953 +3.3778407178450474 4.863809102521247 1.4348274479143086 1.4385030100132026 1.4859729304445413 +3.30873812476176 3.829815784122728 1.2640240002810388 4.832897563188492 3.606713245477778 +3.315641498247496 2.4457910772975433 4.459812729724511 2.9695933165538615 1.7255125772411761 +1.1228784116592285 4.726640073441882 4.925538905767688 1.5301423325234893 4.951344868268914 +4.499857300534837 1.240614164069091 1.890835405402437 3.6383758536918456 3.698183803031782 +3.714562777665409 3.255529730452943 2.6481811158513184 1.135790760135936 1.5805176134716319 +2.0379026375467384 1.4402820999516335 3.2464430543778255 1.8480661694587197 1.5207262144224136 +2.8835484552140525 3.438211754350873 4.008569046741466 1.2122688325498867 2.8507799394722166 +3.374218476350959 2.53508318746724 1.094786596038671 3.8556997044247856 2.8856176505400435 +4.560660240931191 2.624795899653773 3.1728802532705753 4.4777665936017055 2.33458756721872 +2.780247528938191 1.9385756383040356 2.2633632671243413 4.5169462116794135 2.40562832945432 +1.5704438484041456 3.3026602829664613 2.607511765517732 4.669447777094074 2.6929823415691265 +2.3650896410077262 1.669685003540712 1.067937132463459 2.378120863728825 1.48329667278096 +1.108352615252425 1.3364846741954524 4.965112450258568 2.5100736493550526 2.4656154911622683 +2.974929238479538 1.8652181720896381 1.5416565761137568 1.2905577677024835 1.1377650295442243 +3.9813932820907167 2.9935973383000007 3.816093109348761 3.2059900710152203 1.1610196139399236 +4.952365595302309 2.5696810625331237 2.635318206910776 4.94437971133175 3.3179738717922964 +1.2063753493494827 1.7300611752989128 4.380199215395496 2.5268055771746822 1.925958156995557 +3.824846451099257 3.5882706721282793 4.816454640573484 3.1124411856935894 1.7203575074987876 +3.5653996729855195 3.7598797234554473 1.5882273010661074 3.3608749020964166 1.7832840512574815 +4.31783553779575 3.7152976684550154 2.719474707981069 2.060984717246063 0.8925586545924363 +4.4315847683959095 1.4404117365771927 3.399754047747884 4.277743914216877 3.117367849949989 +3.885725481763359 3.8397384840677202 1.6194475505907682 2.7942913799344655 1.1757435210555154 +1.7606289800345665 1.5685521808912974 3.2879629195126077 2.8652140276274936 0.46433837054374005 +3.7547313591429075 1.1526344598081635 4.732039480975505 4.640781517678304 2.6036966584824435 +3.447022863240726 1.3872560316542528 3.715111195396334 1.7803684595909317 2.8259279633875227 +1.9844398541920993 3.0496194197574824 1.6311041499286345 4.965865322151661 3.5007484317877444 +4.592362975934344 1.043438341885358 3.6549264587762065 2.0167751022900764 3.908760151878991 +4.655533423928837 1.9028387709357224 3.5225947613929316 3.5043605160231124 2.7527550454628344 +3.845260737863619 4.361786646164649 1.8470222551074826 4.57733521756208 2.778742141130372 +2.6848165982727035 2.3194191083308424 1.7474715972078094 1.2376507426061543 0.6272420820086727 +3.6232669110294053 1.760969793463011 4.094750046228446 1.23093573283073 3.4160771325773274 +2.641875676004519 2.75722896692692 2.210655308927899 1.344840043553988 0.8734657723580952 +4.577112118877853 1.4482827915118555 4.044947615606804 2.6855712937961003 3.4113746414143904 +4.576030356708736 2.380499738596249 4.3805016957551395 4.514273580672844 2.1996021486313913 +1.883296855317535 2.0793304548107234 2.799440826784372 3.7232471728180685 0.9443766923756568 +4.748314004104316 3.8506849724400247 1.6844698000301745 4.834035539327876 3.2749812556172664 +3.7330956758063465 1.4229723758475217 3.277321866566712 4.697437227985825 2.7117148265905815 +2.093296785949164 1.93476530067381 3.099035197127993 2.0484298748205885 1.0624988353331286 +1.258869741901277 1.1592294327728934 4.495267753572131 1.27204720616561 3.224760283870228 +4.142379663373115 3.26808404353693 3.071297878469563 1.6371115475138578 1.6796676048447579 +1.05091343332459 3.2623257370273278 2.680893264612799 1.8574232352655233 2.3597557640995506 +3.5049358787501848 2.821620785653844 1.7206471047134118 4.489157208108849 2.851590382410467 +1.6766082632888217 2.931100227292321 2.661073415403239 4.970622108136142 2.628262782115521 +4.148928580903961 1.9852027429989176 4.218389134403897 4.119523272247213 2.165983370277313 +1.8077995249772036 1.383375116013294 2.535138190015192 2.291225241647782 0.48951977008660913 +4.192785341746334 4.243595884693378 1.0734311832561634 2.3385505552500083 1.2661393038163984 +3.245158801267956 2.902936901075139 4.566391713665382 2.412573102369804 2.180837096010336 +3.6599321168627967 4.499227277498858 4.036525692754866 4.141763189684427 0.8458671866357692 +3.543625196749199 4.1484734896161815 4.016077392566218 4.742338549980042 0.9451437595160698 +3.196885245654304 4.474791006212136 1.2272536000162475 2.7424353562632966 1.9821248415099348 +4.903988201960605 4.454256179790761 1.6891006125137227 2.779575308892456 1.1795736328043567 +2.0576531864613834 4.156537467199532 1.3095325830497546 4.411902610849273 3.7456661641580498 +1.6901127183770899 1.5418783450962121 3.878107498621115 4.400193739570694 0.5427222792652212 +3.1094322969401382 3.438857623013832 4.924661744534797 1.7396760295992197 3.2019767409839894 +4.278068182143349 4.621974133310564 2.181142533862959 2.376966689724707 0.39575043053317505 +1.1414560680457515 2.4731332404557307 1.5903581094866235 3.791255439026116 2.5724138754663697 +3.6327495665236818 1.3241327433971208 3.483016247591343 1.8089197553032021 2.8517206562905897 +4.339217071386126 2.9692846270187983 2.5679120107409594 4.106349934550597 2.059977220152191 +3.903466992548532 1.7928628689573096 4.145800197264089 1.7809718286369196 3.169710235902347 +4.982029500832635 3.1079461235900605 1.3403269600325656 1.2167175206903824 1.8781554244394743 +2.468527423905971 4.880389980847275 4.166344969858736 4.527811074064833 2.4387986259766046 +2.1223487790309874 1.971349340110177 2.8199936634855756 1.6196734498426801 1.2097807428762146 +3.3953437448277426 3.7263063783790975 1.9366935206521183 1.319090076176126 0.7006927139879925 +2.7486443506310283 4.058953808136602 3.2577973604772317 2.049807930045873 1.7821754510884804 +4.012698788339294 1.5362986588922825 4.698314340400072 4.36012051151276 2.4993864581177987 +4.833894179199785 3.0331746714506393 2.4170340853381385 3.537125950535638 2.1206594568836215 +1.1497932097770445 2.3205221156959004 2.3052956339931763 2.5107870345698227 1.1886264707068042 +4.127695937340307 1.1689453438961785 4.618410040570813 4.346693018952037 2.971200971668419 +1.9254810201437977 4.027345362497512 2.2159487663352393 4.802453552333775 3.332842738811921 +3.326558839371176 2.914214432721089 3.7459190320805553 3.1409737909219584 0.7321110943675456 +1.4516575331099841 2.8621531130683144 2.236036473871654 3.124188397974701 1.6668268120503495 +3.848658758417145 1.6387774488107985 1.9014267566858423 4.151533744408201 3.1538162373138436 +1.8752196247050543 1.755548371184179 1.2082692369643904 1.9749670549893898 0.77598115510852 +1.6681007054586763 1.4314156602817754 3.9407191522614258 2.8236926487328398 1.1418266156451644 +4.266540987269961 4.626842319818977 2.4407727490884286 2.046551189238617 0.5340671198332806 +2.4671489414980297 4.20049614539567 2.68453264309459 4.247954041646329 2.3342619815927357 +4.527238039861938 4.045556252258148 4.450491507422499 3.1626909692979392 1.3749354786691224 +2.7913751939739013 1.136796093673766 4.1765215430580716 1.060006967673016 3.528497569467421 +3.2544180471030844 3.9229989597821064 1.0544462550604758 3.591553414033581 2.623721245275743 +1.3246818536221183 4.226742956507067 3.033451406183698 2.4322639895844147 2.9636776064132087 +4.404294908211788 3.4932317751387907 3.6082906521107905 3.0017325556419547 1.0945084544381933 +1.0935838393159254 2.991182533151993 4.708940468781822 3.132054478448162 2.4672758721632486 +3.925909502156097 2.6037572711031967 1.7654220397885547 2.0819385463850857 1.3595106549881226 +4.830213328180806 2.4363169648267635 1.0061140929281405 2.4988717284135658 2.821181517871501 +4.693064617526975 2.4399286983926505 3.674374493201075 2.965971748846082 2.361875508637778 +3.3756252809891127 4.891046508747724 3.236575906542122 1.0160351082683001 2.6883643604132157 +3.592312372304375 3.0567039016030684 1.3033144226974067 1.0449210909850848 0.5946793655074863 +2.299651738850705 1.7283755330095016 2.082007668896292 3.858727349965623 1.866303653872924 +3.8859621524439625 4.633929257700482 2.468525498487942 1.0241838972858446 1.6265231174222072 +2.0268225615013065 2.558712534966831 4.2266613576162095 2.2887309005253575 2.009597322946444 +3.770897112661084 2.155108666414964 4.245655402757979 2.113876403987048 2.6749306537970745 +1.9266982865040045 3.6891678062119224 3.664451737607134 2.0461127434084165 2.392764072791878 +3.4065291365557315 2.5128556157503343 2.78593187653275 2.7699291592482513 0.8938167870146556 +2.102209440973185 2.5566129996812004 2.4298823541466703 4.6047546882085655 2.221835336750756 +4.0888819441822015 3.8925888827668778 2.3485696216120733 3.6373317120254804 1.3036252113420235 +3.5172539343613853 4.277097804333123 1.3487429319808517 2.3634217408224605 1.2676497118075851 +4.318120984075221 1.8808001316411183 1.1252073940291503 2.0407127466262596 2.6035904033361428 +3.5246682882278564 3.9300649767243545 3.78675844404406 4.951334430688176 1.2331195009860327 +2.053685105252881 3.349548526392622 3.54959171311789 3.8832107618758798 1.3381194550346318 +2.5532627116796704 2.35066963717779 3.154784724534742 3.2773949464541 0.23680629289619562 +2.179648373124032 4.928579456051969 1.0272762267795357 2.483271861270852 3.110714610237514 +2.6908741097881475 1.2601767433166797 2.4950867047045486 1.5714188051941607 1.702955472998142 +4.978217514669419 1.0161005536313636 4.270181676193945 2.113933623757905 4.510850970335825 +4.704672428860469 1.1854962064284762 1.127993664985825 1.5151522727673155 3.540408602422892 +2.06943434577021 1.7572357616969527 3.6191325936453667 3.8030485354371866 0.36234380019881507 +4.601911893102246 4.7961211464276925 1.947176115867907 2.057127694618242 0.22317388679439767 +4.936870674538373 2.3676404161083124 2.882605276246608 4.757869573231875 3.1808112651303664 +1.7540806423040953 1.1083318570550587 4.445766810451099 3.7437002871536955 0.9538809657318412 +2.36169397229742 3.546450198383942 4.433916044227999 2.15291043672802 2.57033731185172 +3.7962191770094824 2.488883664516455 4.635788054055659 3.7968708372900215 1.5533538678650176 +2.6756671575242326 1.9172223731278115 1.2933395760900495 2.969257182470446 1.8395483995682016 +3.245973699823443 3.4311329538719213 2.759908529017827 1.2815605012969642 1.4898982651261643 +1.0500043059716742 2.6934768711049304 3.608644837585376 3.949701871032954 1.6784880018664856 +1.6830543309973125 2.950407625292075 4.418214438261848 4.536855133588352 1.2728943346355748 +4.568586594350929 4.663567827036239 2.158347319993377 2.120064012092818 0.1024062802089305 +1.3322573290217479 2.2025586775265746 2.009879802736689 3.308301776272782 1.563113578269565 +2.9039115926549743 2.8389715959178763 2.6487968921067164 1.1497949381334478 1.5004079649188389 +2.592578330706667 2.368322648414413 4.650462169979067 3.5210294861542635 1.151481132425566 +1.757128326956086 1.7370397650328568 2.555403621455586 1.6592345834529003 0.8963941627402551 +3.471224486757525 4.60368689993816 3.3800087273054102 2.8969908847634667 1.2311691002785856 +4.743410514168234 3.111054137445136 4.564536146288495 1.104089748695304 3.8261307624340612 +3.3030664803352083 2.3068898281443397 3.5695397766558634 1.7496090203036485 2.074732725024347 +3.927538854498656 4.343768992700652 4.330088572243213 2.389594878021012 1.9846317807754104 +2.2025528262542213 3.658856573183189 3.1290175862018024 3.140622539395645 1.4563499848106505 +4.161379554583989 2.227995599021499 1.3787630169389549 3.662134720867157 2.99194917368702 +2.8948004356663386 1.537789761017026 3.1654323640854964 4.367191185865231 1.8126506108010991 +1.8637768337703498 2.7066471479814926 2.7325448811705346 1.0499443421390438 1.8819072614046246 +1.8786319340165987 1.7143425526140397 2.928199320922406 3.255944843533806 0.36661714148884933 +2.2050900812115217 2.9111628656604323 3.119645361691138 1.6322575695645112 1.6464693198194613 +3.5632560039660164 3.5046696350039683 4.974733643525598 3.928592091685955 1.0477807543153355 +4.4186480262164824 3.1174845471517125 1.568876746561648 3.9983205996798237 2.755943365656418 +4.7188470122496575 3.8155937454251987 4.594270955727575 2.020516159724082 2.727651043293485 +1.7886615393390586 2.666919334115158 2.7303099066265095 3.761568371400564 1.3545592549804224 +2.764050065158245 2.588002530818145 3.083439166474355 2.0900752073289315 1.0088432433615737 +2.916219662861603 2.4376631168100875 2.902018058703072 4.670579512658824 1.8321642896276629 +3.3780538409653387 3.9799480487052925 4.512841744963773 2.8117511096520604 1.8044350880140059 +4.397339454545383 3.241064205387228 2.251087198699149 1.8985466561439175 1.2088247540321515 +2.951237776648751 2.1797494982635097 4.340638121050786 3.473337066893864 1.160777878074669 +4.148063954055089 2.9934342488226484 2.7464636686930786 2.279757095519323 1.2453853948271363 +3.5377972934143553 4.404604002148693 2.1638710939891097 1.212716020907639 1.2868760015461753 +4.759207257062353 1.6679738586952726 1.9458742078656073 2.513073952702835 3.1428393967435726 +2.4739281321858857 2.1610646602562635 2.1627634261603457 2.2681429445912538 0.33013390460930786 +3.5659917170868107 1.8832013305438235 4.843916639652768 4.068304802067056 1.8529320569423429 +1.498255539865105 2.035556903043201 3.1148698544238984 2.6454542784749915 0.7134730112740664 +4.903494003616915 1.208164812070605 1.7686638629665006 2.9731372789936783 3.886671332105467 +3.4752964285012813 3.405913689142209 3.4735069961907987 2.064415183397985 1.410798958534031 +3.569819190822964 2.7850391181382794 1.0894890766718315 3.47024326940645 2.506764904953483 +2.0244481594893364 4.16846538288558 4.8196751114472365 2.6143930243115427 3.075724132307919 +4.562437692177022 4.870755688595634 3.111278531296292 1.5262098669095003 1.61477634913833 +2.963818012593441 2.9363001724898674 3.7986624075622473 3.7939409781691853 0.02791994662386555 +2.1905111142889613 1.1213042095044314 4.2165069480718795 2.7370795638859393 1.8253516894884032 +2.8781682299320646 3.064547672625444 2.1292961189765185 2.982025053343279 0.8728596291300024 +2.042932736050155 3.081172545938577 1.1826591440730807 2.330308564899553 1.5475920314994143 +1.1439532630798404 2.6096498591872774 4.529149903097869 4.677633235493175 1.4731984970940415 +3.959263267686718 2.3147586173479344 1.445946958861462 2.474852181031179 1.9398560516682675 +1.5079230566686124 2.404911386716824 3.056699062729339 4.464167365486023 1.6689982287310736 +1.2712393395485622 1.9650122902338505 3.781005889411527 4.685508334028789 1.139932269663937 +3.7156402657589003 2.0832660961499627 2.645137235405721 3.1364542550483496 1.7047104866800649 +2.107028161717779 4.458564636156524 3.6883875962872983 3.3536327732257103 2.375244110018757 +4.236204832034481 3.0782202837450554 1.222389086356948 2.2359395518740364 1.5388998538654073 +1.1588754698445092 1.1826700934978156 3.140147702368344 1.2783194668411277 1.8619802798958938 +2.704414596078308 4.31878189536676 2.734063559061949 1.95728847871057 1.7915248539908069 +2.439217439737132 1.4030903070576435 1.616172624184177 1.9469892076972104 1.0876575963978066 +2.278445020620429 1.8649295164843886 1.5357450525352392 1.6905718724894858 0.4415500156698313 +3.044319628726661 2.9984959155591344 1.1099376954491933 1.1836381973495977 0.08678465687453793 +2.7685241093110804 4.822534628003854 3.222925890970719 2.4428510219831945 2.1971517954220783 +4.331499026890359 2.7587194559468617 4.869852380270062 1.8122591482459232 3.43838798731281 +2.5486150265095224 1.916478930452223 1.9703815261292248 4.573950406058813 2.6792101366776695 +2.5528162712869924 2.0351149171943472 1.5144321508821448 3.646481783614102 2.1940032653717343 +3.1409092709503073 2.658189326474007 3.5467560341530397 1.754297688612525 1.8563204101913662 +3.6340805970280976 3.8205815724827485 2.746517578965671 2.5694553601955556 0.25716462268619383 +2.8396249059802905 1.4470397595454618 3.8840670208914916 3.747180640308412 1.3992967059419703 +1.85887454276101 3.979120153504613 2.432826952043153 3.157504253106047 2.24066923943569 +4.923977696804856 1.8203858502918293 2.649264330700004 4.1400175694030015 3.4430549760998037 +4.645085201611106 2.8037278893145694 2.4963543384473654 3.2814238216416465 2.0017319613252074 +4.740940941145824 3.565158702991056 2.977838815001214 4.629123161383203 2.0271171313385983 +4.864754688139197 3.861081574605342 2.0185554639989842 2.6711487353016774 1.1971790578607249 +4.725717974110779 2.123077040074557 1.3297219135983513 2.819710800346397 2.9989676080534147 +3.3784829633780284 3.3381497460545932 1.3308004301669798 2.6853165285145795 1.355116463298437 +2.2678459414769208 3.6181973029108208 2.6229726448044635 2.1740063324030174 1.4230318158768411 +4.694088886131157 1.8345453763865711 1.2999086283305146 1.607487513734927 2.8760378743801347 +1.0364378687398315 3.5692387049301004 4.86427183544333 4.132586061873561 2.6363695012365995 +4.241258055996993 3.4984640582871895 3.8064845356563914 3.356022578488032 0.8687110554664654 +3.1759999076694556 4.511607415754946 4.00792519398064 2.5013051815945118 2.013392976390031 +1.463781019176059 3.0922875437242765 4.163807537045209 4.637741714643253 1.6960681310583159 +3.177021081375121 4.510982499562797 2.9225287882493083 4.291780429960255 1.9116231646277457 +4.0314444002516385 4.744305910413455 1.5342527533468449 4.213136805426828 2.7721095391702426 +1.4157563383121174 4.675704608828285 4.824137906291046 3.5316541274165436 3.50681865015787 +4.954756932309398 4.195527797398427 1.4162369505426207 4.389632097329515 3.0687957863359885 +1.0377441604761213 1.9812375160601912 2.026795978633385 2.035709363199173 0.9435354579747948 +3.8183547218322653 2.562603165102256 1.9548040053697506 1.0288086608176465 1.5602497717872006 +2.019833633798682 4.679392917560071 1.5584869722234531 3.849134927809009 3.5100318574437006 +1.0925631087382177 2.7557553268209625 4.052141294568548 4.028989291510719 1.6633533507756522 +4.790950120128398 1.096597551249836 3.6911102537933536 2.720807200215775 3.819650366062528 +4.419580460462672 2.490607070169561 4.96921766774768 1.6759225308210421 3.816638730527628 +4.460301642547643 3.741506484890812 1.8147897363068246 4.472597985921901 2.753290970891537 +1.0537647961884105 2.700895081610489 2.0419000940563827 1.0664260963151633 1.9143112854036708 +2.1141131921191296 4.981537688465968 3.432147010796684 4.429049451223609 3.035776295773303 +4.711718316623191 3.4157501824679377 2.5748056128049748 2.913471942000448 1.3394880691057256 +2.4879197767754984 1.5559333968507838 2.43127500518949 2.5769756368235983 0.9433065707519229 +3.021979849537135 4.645145798668386 4.059658793635449 3.515972096112018 1.711801075908965 +2.258758378343341 2.5269274912277395 1.3957752727463357 1.0525318864915922 0.4355808711511886 +4.080522021347418 3.288144685040892 2.345603487414979 3.2015975546823245 1.1664423201723773 +1.2786813194296967 3.151365653749091 3.8312997106515563 1.1417836907663745 3.2772615149274102 +3.0566245111635317 4.529118153818375 1.3511725480775207 2.4110777770648175 1.814286808113189 +4.891469800910132 4.562578255301666 2.6230190330073215 3.132396870474225 0.6063294732034594 +4.198641384925864 2.190953031151796 3.356551798652339 3.9339931011387446 2.089078979765299 +4.654206169883933 2.130028230193158 2.7648176074584025 1.865998509520319 2.6794309175718256 +1.3726748014888872 2.739363243161516 4.981935993542907 3.73190889431924 1.8521352664951585 +3.3647504228646494 4.788598900612433 1.6506998865483382 1.3012657426147771 1.4660998289786618 +4.354971938448225 4.8669924500193025 2.3266773295587524 3.3980386411360857 1.1874258141939698 +1.0637433058160481 2.4770798975279433 2.7053081490348556 1.4536598579563558 1.887894002859145 +4.008933663394692 4.2219636576891375 1.6543595468589167 4.0476041435961605 2.402707114544156 +3.189143638154096 1.5209436255974014 1.2613902214652128 4.222809703692496 3.3989552264790817 +2.6463025980371793 3.649772632375101 4.1511337622480635 3.4565942247515844 1.220384070266395 +1.671857604911712 1.4777890014700148 3.4158716042728066 1.8015545675067899 1.6259403796064673 +1.6374106894040743 3.704347594667603 3.672721170914886 4.460568534506285 2.211997205843238 +1.5209904015618547 3.641249351353568 3.2969760984910703 3.8430900180399723 2.1894607617623394 +2.1669070521408855 4.678977539119893 3.9348287493959786 3.469843409901896 2.554742550139911 +4.9445169170789995 3.163742032256534 1.7668183410284355 2.4020426045765997 1.8906795221334507 +3.1251763520389106 1.1468252972960027 4.103386319606317 2.1483538712254884 2.781371023438677 +3.288868739363186 4.630247903997416 1.2837377936453467 3.413688374257288 2.5171387604111084 +1.3087030381091203 3.779574432396624 4.993420222156592 4.333198809435437 2.557556990747966 +4.844860949050196 4.960772464674658 1.0633455533458576 4.633130911011966 3.571666694872536 +3.5238384270069423 1.676595331678652 3.2736338604172395 1.9597236431085219 2.2668628349298694 +1.7357922492542728 1.2408984341163016 1.6694908580215242 3.0723597986150155 1.4876024847867528 +4.8426954755418805 3.901149367888923 2.281655629015216 3.002863956827205 1.1860229866835632 +3.249351574795447 2.1206353959155524 2.77593001924337 3.5679816154001034 1.3788930137757822 +1.0622365921025336 1.1233621076960776 2.25001342748575 4.295133796687308 2.04603363930794 +1.3879483885036072 1.7404643659020942 4.373690977286234 3.3515192456621823 1.0812504627756343 +4.316876996129893 2.047622448379387 4.8386209104270295 4.671846250271792 2.2753746921674787 +2.685754002632481 2.7400408813928565 2.194456633731749 3.8798040750200626 1.6862215343965365 +2.537691920174807 1.8322768099452542 4.8491288785509585 3.50046101239639 1.522010345213885 +1.0075074122842942 2.801698120578906 1.4001598158880326 3.027732903649102 2.422419132548045 +1.6096787918596904 1.763729622818082 1.167171889441323 3.234576884217168 2.0731365297401623 +4.854725939438097 3.2043284632865547 4.688366416339875 3.792229511236648 1.8779971197995409 +4.421187639573208 4.353466207668562 3.2119909731260132 4.491247350171514 1.2810476456989401 +2.0942118092886743 4.137270272003121 4.833045643425963 2.5093341581246116 3.094143330388968 +1.1977627259498536 2.316767555378271 1.034403915409082 4.474706521599957 3.6177138956042185 +2.550638053989597 2.9336609940148186 2.9056354679150904 2.2251663347966053 0.7808615842212928 +2.898902767397703 1.2705197770971401 4.1790517174674395 3.8217425960282703 1.6671235621164477 +2.6869359882332176 2.763839194270746 4.320392373782736 4.113487998868781 0.2207340559528259 +3.3524605728079933 4.97222245084415 1.514280560104185 3.3708322888264814 2.463820785479529 +3.0531762637267734 1.240777756380524 1.7432933532582306 3.148425109019673 2.2932909977759355 +1.0295672759227967 1.3862523148220247 1.9035230732825892 1.1732710026243813 0.8127067759500618 +4.0456663490791165 2.8560759822639112 3.600163890896963 2.518089629011592 1.60810756762547 +3.596857189617606 4.846054165895235 4.333775910122323 2.510985926791745 2.2097638807961952 +1.627549342161612 2.9463287455044953 4.2329338963439085 2.0482779924187007 2.5518425761078363 +1.0110051249736092 1.909034504818118 3.7410510644355246 3.3379600294537117 0.9843470676273803 +4.309274193670028 1.6313690885603225 3.862391566815083 3.5871251569041283 2.6920154807128966 +4.790680578685372 1.8966522313671907 4.9989093261857995 3.6369714781793543 3.198480072927394 +3.117220412148301 2.0041431027102607 1.8229681595278473 4.523583663442672 2.9210041418613137 +4.250595037975353 1.4090021579896086 2.625729558530775 4.831157811047987 3.597021527957096 +2.232289873913201 2.823044793596215 4.301495945272288 2.6647737893736188 1.7400720648120502 +3.621536117499649 1.5169409406759842 3.180789544676812 4.664453297811233 2.5749910661348614 +1.7518929102687486 3.46439617658959 3.2149454173667618 2.496471980542018 1.8571137597310265 +4.456996231421327 4.855200051916723 2.797135877856421 1.8624040451036459 1.0160166739864518 +4.578388652915997 2.742398584670086 3.430540841804592 2.4004250732894525 2.1052311101732184 +4.904178190378321 3.032416233984553 3.9511325891340396 2.1887881053828044 2.5708657881755386 +2.578122513542542 2.8931241031428176 4.121575771374079 4.753795472104228 0.7063481800373095 +4.4044083873229845 2.3550987675625668 2.7136755956925263 1.170800736921744 2.5651769427214077 +4.6788443882078585 1.4070245457271446 3.6429111635784395 3.9877810470411013 3.289945336653798 +2.623789207931445 4.535645910956472 2.933973678252968 3.64071290460468 2.0383023296277574 +3.4226294452996924 4.345542153387821 3.5051013724904685 1.2990482962093668 2.391325582625644 +4.398150553405805 3.36554254019633 2.434496206334782 4.4104356499615545 2.2294878321768206 +3.5153641065361896 4.882445553632942 4.188654016668595 1.7538528245322862 2.792341047978298 +3.757870208939582 4.90255809248995 1.5434182275994472 2.333982795974972 1.3911515688514318 +1.2838549803281256 3.4905157931560806 3.2309626809181213 1.73503263202086 2.6659254779652586 +3.1962428312785787 4.830144009691653 2.708826431553579 4.445807528723712 2.384687902587253 +2.202377444031322 1.6825814293203183 3.1824313809138203 3.215298701580334 0.5208340980362534 +1.2824585496316998 4.052518853269349 3.844633904371451 1.190338747973796 3.8364719291381704 +4.9548173408500915 1.6170898891755572 2.4838218121717888 2.500748749700739 3.3377703729998998 +2.1442610983810826 2.900155266234394 2.226014944777776 2.360817563884092 0.7678201215861514 +3.3263669352790104 4.4057261540915285 4.410087555283711 2.221675541376578 2.4401154615814074 +2.118077259069282 2.4570751503460646 1.763516034775285 1.8248454658877349 0.34450089899836556 +4.333358678994896 4.9748049603239615 4.566340613740775 3.6568050627998643 1.1129727086754069 +4.283987991366917 4.388911205399438 1.6308930095698355 3.3725073228831857 1.7447719900264465 +3.8952692129575572 2.436451768958052 4.290544770707738 1.8933798715979329 2.806162484326482 +3.5281736937707504 4.644529761199276 2.4249552296558385 1.3591479112761902 1.5434364610168119 +3.560280358788746 1.6010899636669076 2.0936058607191588 2.8379857977058505 2.095835989510147 +1.813633758916131 1.6061939046424838 3.565047003294691 3.1058955998608777 0.5038365850316077 +3.022549832721162 2.5780122160522483 4.9620921294001175 4.873813165365019 0.4532183448678885 +4.174465929416787 1.4690310896156058 2.932431775237039 3.802890715500555 2.8420197816156603 +1.2048157443854595 3.604074697886698 3.701425980934598 3.6095234126376914 2.4010184522438442 +3.3936493736180613 3.7301278270609544 1.8739126160437634 4.837665258617745 2.9827918928405954 +3.276890429592331 2.096224996383795 2.607197312506988 2.5218139483680573 1.1837487841789665 +3.1706254578810666 1.0421984119202725 1.7472583464213218 1.0674152647701542 2.234365302641076 +2.5177446407650317 2.9783517157348864 1.990924685193972 3.1113937888827787 1.2114494994978056 +3.1708746597371 3.0661995912885938 3.890637452691431 3.1943176233132036 0.7041435753736756 +3.866079903997168 4.723063361836393 2.690559173620627 4.789005977582097 2.266693547012075 +4.279545917454712 1.457031978080261 2.8824744690942876 1.42079768779932 3.1785348748975366 +3.7528851054493675 2.7430871319869974 3.0096370951880105 4.1924128489356365 1.5552010901687199 +4.465007703912464 1.6462225798486547 1.7298537847473168 1.4003450918426785 2.8379791321190417 +3.010117249790528 4.847836947957529 1.4685021606567217 1.769980485727582 1.8622843148989217 +1.849995976827405 2.2043925652514815 3.0923086091573446 3.873291359799231 0.8576310387846227 +4.339677077183774 3.4716745021500635 1.1788199634796106 3.5642437617598013 2.5384395142816865 +4.551344986859172 4.7351183069573 3.8014808672522014 2.0067366565602947 1.804128436390271 +3.529554618071399 1.2439425702018068 2.7313323087994332 3.4460401786405495 2.3947504614425816 +4.28723556720044 1.6405453380279917 4.372679059516166 2.3620706855636513 3.3237802578697773 +1.1862810686313687 2.0540287510811828 1.7652573902245283 1.1408764349264944 1.0690358355714316 +1.0554930091911254 4.36020942121899 4.955645575696143 1.0574094714207174 5.110518103734959 +4.757080914994536 4.892133357324247 1.5469806257230618 1.3347048306822504 0.25159526096377166 +2.447291959304439 2.438894066857616 4.301219485647354 2.918951738275319 1.3822932576058196 +4.971530577089316 2.565846694586964 4.15492763444757 1.6067800443700233 3.504336040300587 +1.6402841341002468 2.364144221247027 1.5855417238784426 1.4483818089491103 0.7367402989029214 +2.0610709850637488 3.8472893722713373 4.490805955311631 1.273963206634746 3.679490915400327 +2.6975538315702305 4.002738033448387 3.2614714193865986 2.5102983132155656 1.5059106335592953 +2.659920271158514 1.8501743177197878 2.0430884232034057 1.2077597771010513 1.1633840535737046 +4.236022818145024 3.551940713063976 1.6927630620823662 2.583758093741005 1.1233167286800714 +2.420591633841026 4.687896069640336 3.2633742673783774 4.833572089490959 2.7579323061239776 +1.5550753655579488 1.2303975321519474 4.5544680126280195 3.3547985044843114 1.2428284774155207 +2.7314205321834795 2.4677720633384195 1.7506705064730808 2.9437897073196257 1.2219017728741712 +1.905746879104822 2.029492048299897 4.541091905132135 4.391222457853437 0.19435461951479374 +3.3040523662235963 1.9105047696135697 2.1754911886381882 2.4930714300560686 1.429276779968324 +1.7555764770060889 4.811865295575139 2.019902489839388 1.4945756513585575 3.1011078068552314 +4.586424511489454 4.752182064343236 2.1311193706503255 4.3544321898908045 2.229483226787571 +4.424217468967599 3.7070754392431726 3.478505938412924 2.4353230098439003 1.265908098265871 +2.6915702934768744 2.8536297938426833 3.2541436329933737 1.4820798444813352 1.7794587245042954 +2.7180398955284364 4.429940771763668 1.7608658653852691 4.610675840750325 3.324458077002195 +3.458317764251761 3.9094344571558235 1.8175583233775838 4.084609950613801 2.31149937295494 +3.591284501605466 3.4084191179552397 3.4838364674742563 2.0397443169167886 1.4556242261790082 +4.893733442979495 2.9002855249725057 3.5864599396056023 1.1084284949229564 3.1803261535009835 +3.6048167275197076 1.247567395436593 4.884879187563365 2.031393447393457 3.701216730071247 +2.0856275850099477 2.383408243536146 2.791296754041648 2.361083721687667 0.5232175205395018 +1.5906601287987936 1.26396286126282 1.289260219248833 3.43418536882725 2.1696624165776264 +4.811310127255689 2.9007587999067947 2.8302983672352626 4.8940610334998 2.8123518124697586 +3.845403684238373 1.6736207278305408 3.1327878629705386 1.193058652946053 2.91190498093014 +4.460116596630523 3.0505371596959425 4.373849851344504 4.626268050896819 1.4320017934674667 +1.5193806658153575 2.9987278469522614 2.0160032538340276 4.328446399223507 2.745152342402238 +3.315011272925392 3.3129174494657607 4.85611178247765 1.737879134271883 3.118233351183492 +3.3826309975710713 3.4445858569859524 2.64172286705548 1.1003418003277257 1.5426256828770575 +1.527380622825011 4.504546453175943 1.9381046054417639 1.5994997447217236 2.9963593965197823 +2.4762123267185787 4.753851858367376 3.356381072080336 3.4274492597531716 2.278748016659248 +1.450466781855201 4.241437064383135 3.771193486314504 4.766364976261222 2.9630864672427 +4.5635742555974455 3.1789812758628653 3.614675477857094 3.0563327039452455 1.492931469528947 +3.717822992435211 4.721893234541035 1.295987965049703 4.2693331467452715 3.1383018689403834 +4.646970006128846 2.718998642764245 3.3345040775992696 3.3829928503837277 1.9285810169759794 +4.297696985115312 2.4387967687321055 2.984727007805683 4.1286447203833285 2.1826721576128665 +2.2215071791716436 3.086323731331481 2.510278789836539 4.265065946570172 1.956319410098192 +1.5520085231907546 1.8698128314839093 3.684285316876925 1.557854239193336 2.1500485358494306 +3.963969426550072 1.3098471112023895 1.0822744723161963 3.809729427837708 3.805703062408494 +4.380611548458977 4.443235151207401 4.126378577982772 3.1162459130806224 1.0120719916703111 +4.988375439061941 4.469547463260842 1.3591567914834601 4.540081753467504 3.222959212004871 +4.352686131029676 2.505796512373383 1.8533387557032834 2.9928946789292694 2.1701587420416546 +4.173481534636335 3.463722000957858 3.459251964305462 4.018509054087545 0.9036188843306753 +1.8494953168256432 4.368239922271042 4.7896021257050005 1.735715158441093 3.958572974732769 +3.3938877728580845 4.191101061981118 1.1543044711420198 4.534454384602881 3.4728896420450557 +3.7904751412606563 3.557562852370206 3.555027717002789 3.3611993497479484 0.3030141420278368 +4.741936468895643 4.937893616468305 2.8775325699954375 2.1842359334696044 0.7204577918954357 +4.877853671074334 1.897733158689154 2.239187270122965 2.6557738832692945 3.009096654245529 +2.4734048204989088 3.8384029615260418 3.771643743874773 2.2058513296784743 2.0772399498763265 +1.6114060217414776 2.3581552171860314 2.4771708001730186 4.914138620439814 2.5488127663508324 +1.5811578534002408 4.0432252758030325 1.5142176153093105 2.289227979543486 2.581165832938193 +3.155473707749605 2.4141834576885515 1.7908829107291138 4.978204608298128 3.2723891636890934 +4.938400297804739 4.2864445917669824 2.9298654361483294 3.5290006060736703 0.885442936883375 +4.475095006391205 1.4300654461058757 1.9213962769876178 1.9952043690724888 3.0459239415107984 +3.063024131396486 1.7950803183846324 1.5467224162684943 4.272597429039536 3.0063393185408334 +1.5007091114301048 4.240975388365234 2.670306523523492 2.184615783587756 2.782975882642039 +2.4451969461176377 3.0850917637853814 4.749598456526819 4.564918362964244 0.666012097965432 +3.9137309049027875 3.974015160017768 4.21383529096181 4.207906788349709 0.06057506548068876 +4.744008981179491 3.1512017430886345 3.7638204241196207 3.0982302803432056 1.7262807237546658 +4.00034600795125 1.4525832205834042 3.2289499199430893 2.734668127089205 2.595266790032043 +1.1675604566059654 3.4027989233785148 2.866808990519776 1.8856782132179242 2.4410875866114745 +2.285855076580109 2.8446601600930133 3.2118845966643876 3.3966123039364278 0.5885468946429404 +3.562269110215917 3.9111985535849683 3.285589236326101 3.656234198559785 0.5090475856725433 +1.463702397167098 4.034019507616602 2.3465514228100726 1.4861134530631546 2.7105135210973743 +3.3326430474133892 1.8794780886271316 4.5709656609894855 4.688492088537624 1.457909756677859 +4.562946574398456 1.0566366051066898 4.221789576701811 2.289346746235146 4.0035665217124645 +2.2718878238629734 1.4724833380567337 3.675315162515227 3.2009374881968027 0.9295599549350733 +2.764922598587323 1.3017911966490163 1.0721276809436828 3.8046095371035182 3.099550063086682 +4.922926529910905 1.2190589500862954 2.072122815672423 4.011272465948465 4.180781794717527 +4.625153684283569 2.280890134942475 2.435940773833163 1.3092840344802616 2.6009473268597 +2.5278649574022833 3.996012586826959 4.972692391478251 3.468223081641157 2.102114498790919 +3.9314524884376194 2.583827032087284 1.244122088637945 1.9540355144481745 1.5231780732235698 +1.0095577570513652 2.4597696094299892 2.4845195196182535 3.2328746553391134 1.6319159984322804 +4.581759779296105 2.6000206854128862 1.177583865675278 1.8219837284477274 2.083876440522862 +4.670159373449313 4.182737063865482 4.068464625799915 1.651973748988064 2.4651589534135407 +4.226295227239626 4.889233176353958 1.5830717491616557 2.8140005727760693 1.3980960243061566 +1.4840975391706488 1.9618582273169412 1.5155319198706247 3.877637123649471 2.4099369844162157 +3.9688582003899406 4.758164388688509 2.7196199182702867 1.905919393643417 1.133628158905934 +3.4609472703694064 1.9690787337159414 4.036115027807 2.744930482877408 1.9730254077739569 +3.0836988548977753 1.4010726370826578 1.0390337880823122 3.5516208765342294 3.023958476225176 +1.801823571190933 2.924438274759976 4.304456747535786 1.334074399176195 3.175442499576343 +1.4528500609420107 3.7020669096288636 4.6749099471166815 1.7116192536044648 3.7202242091939746 +1.3067218752766836 4.449237657569197 1.692973631786642 4.64466798865539 4.311369274178256 +3.2873623636367513 2.0993607961397847 3.8295046358472944 4.83694010965033 1.557650139874804 +2.8268851344585335 2.926415289869014 3.790542736232203 1.6222257686970183 2.170600083741133 +1.4913067432001568 1.9077107225300836 4.425665282331268 2.529673094126264 1.941179706193169 +1.5555224451835086 3.5138363750951114 4.914961447810814 2.9970420155859196 2.7410597214565917 +2.489036185746066 2.0312074710787638 2.733278910774288 4.067301912159705 1.4103987025657923 +2.882327520591714 3.2679442846105693 2.8875002225567945 4.633502753708009 1.7880786133385806 +2.186731501790808 4.278388579728466 3.451994558226274 4.45473039493775 2.3195923111426637 +1.0322496839375224 4.0530470335780056 4.9261160661880545 3.1886781668623856 3.4848109104524108 +3.451049735266315 3.26004841806889 2.196731688047331 1.9118929640207125 0.34294985329675165 +2.8412363912195953 2.0754865117677546 4.243791667238803 2.140133664060345 2.23869378705916 +4.944045789510678 1.8128349361724 4.479411209014316 3.4234616821105877 3.3044683099451317 +2.1209939921292347 2.17205883587841 4.546707140230367 2.17846509368652 2.36879252136723 +4.616945256229875 4.935652566680053 3.035092467517204 4.2380206504624995 1.2444318233870655 +2.936257110768561 4.668216329673745 3.384469227829242 4.445421165818458 2.0310838856811726 +4.420300370512241 3.7446945553736315 4.283487338183254 3.796963351502903 0.832555587972627 +1.9040844090989446 2.4126865760979173 3.0073944123683165 1.4211401479601324 1.665796732986711 +4.33807648808521 4.2521354912278735 1.5266171199912053 3.825350906060606 2.300339730161133 +1.9757996623436256 2.4335206350971026 3.286770294012016 4.385479883726926 1.1902399974080422 +2.925085972708743 4.293610208583013 4.579828304369327 1.59246593358837 3.285908172565581 +3.0813762832253038 4.304472028657845 2.4437277344969077 2.609453470561468 1.2342723451853415 +2.9091847409360687 3.989716839400448 2.708208825057754 4.030792868525898 1.707857771551361 +3.0302448020158566 4.801017099315332 4.250566173099799 3.7302474963470056 1.845634323006873 +2.8291686507591174 4.842730635204052 3.248926614220487 4.299339591465463 2.2710788819339753 +3.8648672393727326 4.2908397626085675 4.4676239875425 4.446649727467512 0.4264885814855975 +4.641483344463888 1.040177295884805 2.8314274286884715 1.0165512898624094 4.032763401789458 +4.637231263012147 1.2660928974026229 4.259077508760553 1.1454308409495644 4.589048861371485 +1.564078460217781 4.773793274702843 4.410655173807615 1.743084665510179 4.173511903309144 +4.347233636523024 3.6455600394545726 4.9454016797987785 4.6136838334907395 0.7761330854835548 +4.4400385975607986 2.0536821304716106 2.751461258236733 4.089333945368983 2.735799794391552 +4.706054567579935 2.7854707213826138 2.8557370109196554 1.9065505078539413 2.1423345508757996 +2.0696761559078674 3.6079585094113686 4.059368083581967 2.3415534304721373 2.3059054146992057 +1.7779553402389263 3.5818008000805532 2.5296218657610163 1.5959130778071904 2.03117467089698 +3.9194907897364653 1.6164866513875742 3.3234394659611297 2.569190363493542 2.4233695074885464 +3.818260496615774 2.055251542239557 4.34118063120383 2.9957097175492606 2.2177674703857444 +2.8102460599001726 1.9517782131917158 2.7839559142739323 4.789323312925674 2.181390714064656 +3.0380049041701103 1.409886172270427 1.4897206530973968 1.6038653004647458 1.6321150712144192 +4.699322565573466 4.466423076960682 4.617027668636885 2.013380413836589 2.614043075242872 +4.623223264444602 3.2460601905129587 2.3573346038791407 1.835748407173655 1.4726270039607945 +2.5890889996260307 2.646039670945196 3.806695572036616 3.119723026116706 0.6893291360528626 +4.9658637153699345 1.518873934012296 2.7940145769203557 4.876490426132339 4.027212958776224 +3.2150783579262856 3.6599497428700047 1.7058139931986207 1.1318015773227437 0.7262236588829942 +1.2235586817731847 2.1627494377010286 4.127995040866962 1.1178729644113021 3.1532386828760752 +4.266965788482804 4.096563955414942 1.7448690322810512 2.896907960134879 1.1645730874459896 +1.9678703088700127 1.4649859818426507 2.143294728329144 4.686298978979604 2.5922506177443703 +4.367129394575427 3.7717139367292543 4.211006895869252 1.9314735819379112 2.3560118201666493 +1.8347542896119973 2.894637022037895 2.1263906291818717 2.506332557257572 1.125925075306731 +3.451263752267783 4.302156923674255 3.688468799833639 2.2299192632979863 1.6886047316274262 +1.8718059312011595 3.696183840278854 4.917201829879504 3.813581638539062 2.132213001054307 +3.6686640778865423 2.7582058288573994 4.062574404504159 1.8358702312047348 2.405648706402139 +3.933351676003008 1.6143252744191439 1.5727020511565493 4.972128153837279 4.1150918919059505 +3.323951965008532 4.821398918380089 3.4870015638677083 2.176949219468267 1.9896191905056178 +4.558713327959424 2.0832039654182086 1.4999668889195754 3.021390739614674 2.905662942857123 +2.8719115704293228 2.3691117657165854 4.016254455780121 2.3791509216371534 1.7125757282884053 +3.9219266102914903 3.6599790401684213 4.326010070480905 3.237479843000022 1.1196046559535928 +2.6013785434835843 4.3310294759383 1.1426794619285494 2.763309109814371 2.3702600709095174 +3.6149982851165694 2.0121967408468 1.013015511752576 3.578455947216416 3.0249723004064775 +4.067136807005905 3.736231905206041 1.938998543538096 4.7093706415990235 2.7900644465226394 +4.67153263849957 3.338041918519156 1.7160048522364741 1.752281666071211 1.3339840731792425 +4.485434536430716 4.128524762079611 4.3563006652764455 2.736828326378005 1.6583350817867124 +3.5879457594680932 2.8720253338950585 2.3813763952010336 4.859631194313132 2.5795908406324486 +4.89095723281856 3.31590508489227 2.962419380674458 3.7454674390592313 1.758963766092805 +2.577334105035572 2.3657238122685333 2.550127662618149 3.2982561114218827 0.7774799623877341 +3.940656418354888 2.1941174559624375 4.999768924741582 3.4409716503581076 2.3409928000274256 +4.829966077818349 3.6255634034864888 1.6263463185659819 1.9757986802463794 1.2540744615140458 +3.024297106573408 4.414874260918563 2.1297283312412936 1.5656055921981746 1.5006462897339201 +3.7574060128851907 4.241111237109842 4.88779437017101 3.2991552759904503 1.6606459332142565 +2.051460261351857 2.04028685350623 3.4933312810985075 2.765186347629462 0.7282306565776571 +1.7796507054703348 3.1809984976486834 1.7432298335986185 1.9678101751775285 1.419229355836058 +2.8788202895057418 3.0260966564439173 1.3653760728115132 3.428406269811215 2.0682804263424086 +4.221613317682422 1.2158792152402578 2.314020798893865 4.588342226901956 3.769214169091558 +3.6895714354635882 4.294978148127517 4.45741998208947 2.7970154187399596 1.7673314917497573 +3.843874630712913 2.338812424771456 4.563422322622287 1.4397740512474595 3.4673319378185172 +3.4455122085214773 1.0782163176788275 3.6969903616100983 4.712031835147356 2.57573271668494 +4.356795802234509 2.2336423300506314 2.529265996379043 3.0636158170067826 2.189363011757382 +3.434640061362691 2.398818727032292 1.1474380257069647 2.6250970856013787 1.8045503966201806 +1.5925775277081469 2.013481123379877 4.111288580996627 4.7516467979120165 0.766301822273997 +1.2262952636317426 4.951918060938485 4.473490397583618 2.4017029946623873 4.262929540904332 +2.8676532718099526 4.214975118693374 4.64356683286575 3.357024807491337 1.862918823283465 +4.799201140772867 2.9335222760642266 1.5251737427944927 1.6337234168513883 1.8688340370290726 +3.3325774406832065 3.1143932566119723 1.455982031113503 2.661719556108295 1.2253192716020578 +4.298123611896241 2.27788909985958 4.016466288417166 3.4869343203214074 2.088480689127714 +1.2175817334390837 2.787784100235768 3.9481624032915277 3.1603593096823133 1.7567496085083263 +4.74722180379698 2.5858863137469084 3.1284448941568894 1.4499161403644862 2.7365726516681153 +4.367083187358276 4.3686936535405785 4.291628672780337 2.8342617872693228 1.4573677753351757 +1.7850751895799575 3.4224096762778755 2.8663632273638906 1.3995327378369558 2.198284764614485 +3.764983265040048 1.909471373888179 1.9686779584942702 2.339097622881954 1.8921244953678578 +3.169901510848531 4.651278673382057 3.694475859404367 3.8951373957331223 1.4949057996535093 +2.4694751510404447 2.858642248736234 1.422641099651969 1.6405848334321438 0.4460386765999197 +4.527387424530852 4.400143027370991 1.43391148902543 2.070111902133823 0.6488005103634448 +3.003670071821586 4.102113351775527 3.302759316008435 1.2406018683211792 2.33646548836656 +1.9108140527979196 4.73208308098488 1.5470875572995109 2.2345859203266003 2.903827289728493 +4.918398595027367 1.8487883969857353 3.059280100999402 2.4255617168727723 3.1343429547994983 +1.0667373449634332 3.356210132173847 3.8800620063065314 1.7642240152166808 3.1174438323594793 +2.5147395144444027 3.3766446958917364 4.545716444136694 1.2968599959139606 3.361242145838975 +1.331592184963999 3.432824590655825 3.967937450625093 3.0689104071670554 2.2854818414501477 +4.506223071041791 2.9183551657852655 1.3256327417564862 3.6731427004900854 2.8341008258171003 +4.464688353725682 1.6493680516788607 4.75444427495134 4.114350506884282 2.887169623530161 +2.077791116461485 3.0583483269665344 1.5176333611123876 3.2524778474990557 1.9927814318232862 +3.5476247610961944 4.58557053718866 3.87302008786564 2.456428558977671 1.7561500487786756 +3.525879448884533 2.0129688477325733 3.383599866987059 1.4178954773225598 2.4805024157666655 +1.0847745514981653 3.004490957593215 1.5688538612661929 3.022191375842604 2.407800035531529 +3.0451127849545614 3.0655918434960245 2.652252973526233 1.7219583638345934 0.9305199904677299 +1.2534505854788134 3.9747907023480016 1.26750468105904 2.1032884797082843 2.8467923334458676 +3.7483361976481073 2.603537869121659 2.908339325649777 3.8183773301294646 1.4624405569438785 +2.5648133462644584 2.900787071655698 4.053828693889299 2.6615733613200043 1.432219695165831 +3.865785572211202 1.3348702652886262 4.0612311362197655 1.043304979020213 3.938706714281257 +3.779879638881265 2.211883732699082 4.771382741341421 4.980017576360964 1.5818153040692573 +2.930497297579158 2.227397016332098 3.144428919939336 2.900146258540304 0.7443279009615915 +2.229017271702715 2.8335159944681387 1.4834522004982702 3.8813609457992206 2.4729304593165993 +2.9443129482574744 1.0921335759873516 4.059271703324937 2.416350878374307 2.4758346600933194 +4.640777193509269 2.4469095330707935 4.753500491226943 1.143543087597565 4.224316248523109 +3.179942437615146 1.6552501382985594 4.259274840345882 1.851803776806762 2.8496672664319043 +2.5537397627000886 2.852814496413832 4.556464907974824 2.6171137096978674 1.962276424616118 +1.3653030943518196 1.4651053319892644 4.060281524088752 1.522811498593239 2.539431947685474 +3.9220243248166318 1.8270624328185172 3.303896600905495 4.107597416530146 2.24383607466322 +4.402885480572623 2.5312389937034934 2.788068055921769 2.9940379714022107 1.8829456120378452 +1.144509809558306 1.4563842544727006 1.5462180524458735 3.596628504307054 2.073993416212364 +4.501697683479891 1.357114678477941 4.413012190439574 4.443949282497229 3.1447351842424 +3.9388340717722077 2.720887128513563 4.1939286143264205 3.917648485964658 1.2488896932558406 +4.953320007325768 2.72801397653918 3.5309648514709306 4.907560109247255 2.616677556442028 +1.842758961255019 2.3302344571807665 2.3039423008370243 2.3136746985152423 0.48757263940116696 +1.8953151070868532 1.3470864521991013 1.3488571137216678 2.360814865164668 1.1509183936081682 +3.2174902676784867 3.2321905718002584 2.549587969758177 1.6955998895360125 0.8541145942452986 +3.357221735071615 3.9302300650894444 1.8879033752281624 4.743690745618274 2.912706653810076 +2.429920170038009 3.37809716842141 3.9388399879593736 1.9686069032638462 2.1865173286055177 +2.6745530204970382 3.4854165943342603 3.6794879142913395 1.3124883875529303 2.5020364695495396 +3.744701770176791 4.04977843858409 3.234329193783234 4.043039926275736 0.8643406865669674 +3.507086977849633 2.8528655499948057 1.9035531984864793 4.698545363242902 2.87053773319812 +4.254230524179556 1.091829018096663 1.544815981626222 1.709283682453833 3.166675371788348 +3.4660984391453855 1.0656368351130645 2.7630215389198716 1.107984151934247 2.9157099761042122 +1.7751353105893775 1.388870841167897 1.02486042517415 2.42066128009827 1.448261118356894 +2.896449849373205 1.126367603003811 2.006739075342967 4.304972481440144 2.9008736525076633 +2.2993749458820805 2.1067465113641783 3.3226652030890675 1.5221219403545136 1.810817979467735 +3.094329287684164 1.5878014762255432 2.0182918493495148 4.487837533234128 2.8927982873839344 +4.858729185658125 1.932642805648637 3.407881185395543 3.526758838649133 2.9285001962984585 +2.9427509873942976 4.580392109495188 1.5469949553540885 4.988469892915719 3.811248901693603 +2.4179010673853956 3.467309255654225 4.708189440693424 2.8843226365187435 2.1042213916258974 +1.1454870025525827 3.9339317308027484 3.4362726543220075 3.2984339032237977 2.7918494808657672 +2.602955035360363 3.7767902433815723 2.549411787859259 4.355304975042864 2.1538661284087164 +3.7024564097051966 3.2905416103658016 1.1866650263731087 4.486334924884986 3.325281227364115 +2.9042493317056812 4.455506709435902 2.63734678061501 4.2155838089017905 2.212968949040616 +2.0618879312606473 2.3736861332230763 1.057542408754803 2.857768023813811 1.8270277457831852 +3.0397072218327397 2.9139310869503925 3.964558541817878 1.2864700644397686 2.6810403817867687 +3.3304714803173203 1.3636886230387928 4.462507868226725 1.066116259942469 3.924756140769564 +2.092665780676107 4.197625801626712 3.860120533711284 2.187691742219978 2.6884707088620923 +3.297461316236195 1.381662700718342 1.1347447154797048 1.6544165342438735 1.9850297565622996 +2.479432354160708 4.809079896178633 1.2749706620703143 2.3648100400726633 2.571965695703329 +1.7313037354542344 3.638692628522028 3.3614940471016754 3.1183011078440113 1.9228299964123623 +2.727665696536665 4.116127496173723 4.295293783352946 4.306812410862659 1.3885095778679692 +1.4008225029775923 1.1616234039868676 3.7449387314503904 1.9352020769620868 1.825476093394951 +3.8196770109875025 2.966191532357207 4.830210413489834 2.544555999654474 2.439806050020748 +3.9504884944295795 4.122334794946331 4.421410561113707 4.773681058507504 0.3919510866618007 +3.1154033136923234 1.0435886259059597 4.499795513644997 4.278517190155507 2.083597897141775 +4.806644305132603 2.255706410114582 2.8807020933124465 3.6106611200406085 2.653323260543445 +4.289868424496798 3.864895823113953 2.307413238877794 1.644924093320086 0.7870791446277078 +3.9864833030658677 2.3592096781798073 4.251747188185361 4.6087473524975175 1.6659737595678767 +1.8536495695803952 2.647067574985154 2.998487616291964 2.130689986498976 1.1758336861881418 +4.066803747971477 4.420309728543901 2.0551996298910775 2.532096543604559 0.593630478167955 +2.0046629804419407 3.9657638255787315 4.530546575084067 3.0652068722617405 2.4480884317082294 +2.7711441145516527 4.4164567615618635 1.224728029179798 3.51831295287008 2.822691181938099 +2.3690948340907365 4.067621880101717 4.213246606793449 2.787995250671089 2.2172811175309755 +1.6616429854030295 4.167143558361063 2.94815851195948 3.575965099693942 2.582958426435823 +4.46653243753875 2.480097750213276 2.7451822827357506 2.572553280674866 1.9939216482506001 +1.410785739060835 2.0423235779698596 3.418070725551773 2.901440841628885 0.8159328887451824 +4.043051133364134 4.391517025425342 4.120320112472482 1.4650884847194465 2.6779999019697613 +2.37092845916324 1.7753172784914955 3.32515485679252 2.5368780693726034 0.9879944190764712 +3.944565016765695 3.092724034215262 4.280201773304171 2.773409670059237 1.7309117545252786 +3.9757980487873117 1.6052288845005043 4.231260866382312 1.539649629362743 3.586693353761577 +3.4335200272844464 4.973647931118128 3.3093464593114286 1.432702384232781 2.4277122862264635 +3.624990943976641 4.415434770045149 2.218342881584629 3.421073151567986 1.4392225486366104 +4.4364049978147415 1.237266905876349 4.49452543080297 1.308956863490212 4.514679570948782 +2.6544520877058453 3.9060568762266064 4.6623292511772805 1.7680238976605942 3.153334429781188 +4.592601861470829 2.0913726069061025 1.3869922321891113 4.862050769750189 4.281609466470121 +4.097848949060214 1.367306248634986 4.688411538070625 2.8741385903081658 3.27833033232287 +1.256615871711709 2.9015415531406226 4.662199598120827 2.253802413329677 2.9165317582934547 +1.8557846216746312 3.496752622855125 1.3761698085677128 1.801706288235751 1.6952454914927726 +3.112026922976085 3.1729900170815353 4.207642269410323 1.230435616377895 2.977830746315758 +3.7351097325553355 3.3412476896528873 4.066319938198402 3.475262569839476 0.7102648249284691 +3.3757396751511006 4.126461252495867 3.3378012133589103 2.811928624626942 0.9165832565952072 +2.649530734652514 3.718057156735138 4.701965398070055 1.067189647016881 3.7885806676290867 +1.3915045305327056 4.831118597819932 2.0358600409734904 2.7571175820561553 3.5144213424757123 +1.1595901238509794 3.33674704110884 3.5752253351860377 2.5708896098919656 2.3976451971602724 +1.304539263362002 2.2978849510420254 1.8126309035223804 3.791005682957854 2.213753017646471 +1.2677071791298924 3.8512118661903636 2.880241938290542 1.5581020675840014 2.902163039144309 +4.495981472800921 3.8118755888685767 1.0200469281004843 3.7429915428926135 2.8075662477769443 +4.856471216702433 3.4236444779468544 3.0069753524236424 4.976101837240833 2.435251850733606 +1.1829044977385732 1.9919116628815194 4.232341486605751 4.111411746564182 0.8179954738744877 +1.96440917506172 4.406644646565167 4.304259542009307 4.7654448325782255 2.485398553654283 +4.551196664428133 4.658238440572539 3.8384966092048343 2.192346235006184 1.649626926403211 +2.0331910612660407 1.0988268968525832 1.2581128559410772 2.468063589648433 1.5287305746072548 +4.342783259449869 1.9277637736226034 3.32849639695076 3.636154206443491 2.4345374190320546 +3.6703134486176787 2.698413845534494 2.9741886560734985 4.121805654426255 1.5038662219032124 +4.359588693612073 3.1057490468785467 2.6488913227148068 4.1765676724643095 1.9763372407827615 +1.9378954553495196 2.7495942429791644 3.624384183549009 4.525291827672817 1.2126374169883365 +1.6471402744881996 2.928233515021478 4.818399737609532 2.613539106628606 2.5500216259847024 +1.8045049838110598 3.2287985998984525 1.235933902396562 1.4134244236491273 1.435310137204433 +4.9670550675888006 4.042016637979358 3.8348636246332064 4.8550083867720115 1.3770952879062304 +2.4865191168887155 2.520620125074095 2.31197589996328 3.8431202487982214 1.5315240434705675 +4.373530022906225 1.5241894079962517 1.502463976210708 4.117703508537166 3.86758577813326 +2.4533958272311263 3.9526801203492243 2.2507054220225533 4.476291942462719 2.6834844422048736 +3.0278227256983183 4.930473757377042 4.145835758127376 4.00502999800797 1.9078540852043469 +4.57334358232386 4.226189850570726 4.392443446854425 1.3584023252623605 3.0538371339974497 +1.4921082963724572 2.143358958611059 3.255766006031359 4.58272451261846 1.4781563866080234 +2.7997445813837025 3.2600115847761755 3.4825012419241013 1.337458902609744 2.193866985909377 +3.2131653168300662 3.230823878904709 2.800235450807758 2.3778167421467167 0.4227876420159484 +2.1232309831418164 2.8547344520978055 1.4030500941584987 4.040382906046575 2.736900013839766 +2.0051900135600347 1.0173699633197608 3.0954560798934656 3.9826326648521007 1.3277314278706984 +2.583247900435368 3.4642007562382866 2.4363069418347747 1.9485645931317697 1.006961038404983 +1.220568505585359 4.9179816127249785 2.51760082977567 4.818565652253666 4.354917082922366 +2.4957235510621203 2.85380448905436 2.7650924793579272 1.0593372493030753 1.7429351287448662 +3.4780441349212783 4.747937613469029 3.804492310609977 3.299971746145713 1.3664444543505767 +4.925169990206989 4.523812701470819 1.6023392366236977 2.5755432217677976 1.0527172791979842 +1.9630062346711439 3.9057089665248013 1.2667103547023588 3.1847664093010923 2.730024346582741 +2.0378565269776545 3.0968033835858297 3.5131332601592478 1.800623279044522 2.0134693641915424 +2.5990562445180223 2.7115456376419185 1.7940493670051643 1.7255092042253652 0.1317255384474241 +4.885803119542189 4.543055679415168 2.5360247374065246 4.92780520288718 2.4162138983890658 +2.368311003017252 2.375132166996402 1.9472930713163046 1.6962449768810801 0.2511407453950629 +3.003581538703553 2.5223743347015666 3.4905479161120394 3.2539518948493504 0.5362257458018442 +3.727308536677473 1.3953321744405698 2.1453384851385304 3.2585290537798164 2.5840485669088284 +3.9009380953105994 4.165956898865697 1.8705408173323903 2.7956980292070357 0.9623673066565815 +2.5879472233275482 3.332437545185942 3.5316639863057384 3.8398968821330586 0.8057750042107972 +2.322013662786023 1.5937391839437844 4.821729342435744 4.210763953298905 0.9506116048397809 +4.490139333817245 3.6553643424874496 4.501213425376019 2.542197583585118 2.1294582302870775 +1.8486034718134094 4.3210748314488505 1.9176607600510938 1.5015740082346767 2.507238083879284 +3.293681472689701 3.933762748562131 2.8763644940535955 2.435403190616996 0.7772714524868277 +4.818135411443121 2.9812726841308472 1.1730929628606823 4.590892329177205 3.8801310786341623 +1.7663982041614448 2.2565456170635736 1.3516955015199001 4.1712179076393925 2.8618090580932374 +3.800274739227872 4.683048355101075 3.4538369535874547 3.296494898189389 0.8966859981502651 +4.116516538035078 4.5621446775047385 2.49675026063188 1.5317789277684324 1.0628989189642872 +4.037901137085445 3.3653700727803786 3.9577250268933377 4.2464069860623415 0.7318710993098168 +1.622219680304556 3.610511315250169 4.319523224096496 1.9755479347471177 3.0736824466224877 +2.781552646364799 1.7418075369992816 3.478937916617768 2.129677209995614 1.7034008180355047 +2.8719579724257134 4.51502624429237 3.342804479381944 3.853007518703279 1.7204593826497647 +3.1494726428123387 3.0340131805932926 2.663297457241106 2.1502991462976593 0.5258309181160238 +2.9286688753405974 4.958925969441548 4.46928062592908 4.55573123933107 2.032096842353931 +3.475200835035278 3.801198643984275 2.077012322427175 2.257121838403819 0.37244329660350695 +3.7697705305224414 1.0861279879821142 4.110764533842463 2.1935902452412557 3.298104690425375 +4.616657486965623 3.77072014153196 4.124816158254513 4.380170868939119 0.8836379465981374 +2.2536049940751783 4.554748564851998 1.4043367515422247 3.283542039158586 2.9709719363085174 +2.719207602769079 4.798082341808373 3.8890725697405686 2.2825000917250615 2.62731713116871 +3.7000887195890564 1.6906575276048135 4.23051160243884 3.405317783143234 2.172270368697894 +3.7234237108591675 1.1688770315215948 2.772812885730062 3.6072826225532513 2.6873869238701715 +3.308437940571867 1.7675026501683027 3.857670530097832 2.60562167577449 1.9854742261796074 +2.502748250390578 3.0105045542054154 4.900947459151324 1.6421063913312341 3.298160331059496 +2.891012107721772 1.3734098663518703 3.1184470486253724 1.3670178504132657 2.3174599887292233 +4.121347260729675 1.8007719627966763 4.6484536867577 4.176399864108827 2.368101460000023 +4.716149821000272 3.4820596117036833 1.7674632609955871 3.7359015022110404 2.3233010468213293 +3.987235176200414 3.3159179096632223 2.83457802890421 3.199104513616487 0.7639021078696252 +1.508925806134997 1.321152757981749 1.0498444646249525 3.309679525674577 2.2676228127186233 +3.184343737462402 1.1902420434587464 2.3969178690171744 3.5143526438882855 2.285848210647308 +3.2573372725736256 3.8725057625070316 1.0786424467060178 3.200096526113564 2.2088457805020854 +1.0223517028116231 3.309119872302749 1.2335911382686002 1.458702467856785 2.2978215273834377 +2.092010735019001 4.26348004819844 4.299653291644654 4.8815693853816615 2.2480892594001074 +2.87198841658381 4.985146252685331 1.6360980893232293 1.9426577747273108 2.1352786424708863 +2.835510065519426 2.906308443946964 4.32810294791407 4.083075908299358 0.25505030980243576 +2.254117502024133 1.2575997059097177 3.8459116908534723 1.294301526004853 2.739299573126592 +2.018050338071073 1.6426551746777092 4.781018208690337 3.978816826419219 0.8856910219804771 +3.5994659471445076 3.5542487616837426 4.711124318129818 3.2628173170417782 1.4490126856800203 +1.5668838725042757 1.2191864574083078 4.417771946356565 1.0159458008341118 3.4195488908370013 +4.801763253653739 3.8457294939315214 2.006046275263586 3.4030975444992126 1.6928534486486047 +2.9643258021152534 4.428499536154145 3.0753707348999644 4.364409699460159 1.9507501571456578 +3.175569410539795 4.616770428359424 2.972882403482313 2.6227789578889373 1.4831159079386511 +1.993288733332566 2.708520876596743 3.5288359425050633 1.8038502313625409 1.867386602287845 +2.497762981240925 2.6402059162853524 2.2181568615057037 1.151432726261839 1.0761925341015157 +3.6882466548644577 4.809540093950708 4.193249009834614 2.6663575259291115 1.8943855415836073 +1.9308928272650618 3.4910926534414624 3.986873528456681 1.145077622036824 3.241917252390247 +3.587453339563245 1.6529747752206019 4.89200692268834 1.009265793448746 4.337958735694698 +4.192510369080628 3.794975023861228 2.9779302561114553 3.3236983161503946 0.5268680119743452 +3.490057334723331 3.8478173197594208 2.1239006450301687 1.3766051204450487 0.8285184415316131 +3.2206397400461353 1.8253111646844271 1.445553439060315 1.2208409589390468 1.4133073027276075 +4.734419795069909 1.6997956354241683 3.821933692146203 2.4879105463803537 3.3148999296727846 +1.7453215413732601 3.183091091336842 1.346956200076538 3.868591649042794 2.9027274443677507 +4.445711166345312 4.679971760399601 3.520625452189202 2.620689422840009 0.9299262781787921 +1.3961018242570975 2.8087165139314862 4.1461860038203024 4.806116784264172 1.5591628832361053 +4.398560091351682 3.0328063181486873 2.533904132801506 1.891810283447894 1.509161316889601 +1.6669889731463 3.8413290894207788 3.493897272801473 1.1410055566630106 3.2037250770179257 +2.7916853888489324 4.1473906935197205 2.923062604072614 1.506510744839638 1.9607539475948825 +4.810138205603078 1.7887695561137313 3.2803214734159445 1.9712012970567536 3.2927897218419213 +3.055657865476428 3.3436562889757595 4.9987571592829685 2.7623941799477825 2.254830917669671 +1.7071562265237432 3.958825080238666 1.4850880164216052 3.031035270670646 2.73129374833796 +4.643565252461759 1.912974001764355 3.4038552335225645 1.5271831448670001 3.3133105358121884 +3.3894073322195606 1.7484481787771156 3.776370346870542 3.0019181017096166 1.8145311304304879 +1.8462941339604257 4.17124797614726 1.0469701544796965 3.456740852767687 3.3484929724618975 +4.880708268700408 2.0476447122532755 4.64942616780164 2.6723378855424254 3.454725342297933 +1.0282099662096846 3.0916596698182173 2.8986287606353405 4.468089327113569 2.5924951589255287 +3.04648376775228 1.24945733212241 3.456628418681401 4.859338886698691 2.2796711752877603 +4.0546610300830315 1.35253848942753 4.39124044970759 1.9379596845035048 3.6496647431838016 +1.519499930680865 1.5933080520696477 2.5882268879986454 3.490736897354503 0.90552302884601 +1.0138474660919967 4.7281504350720835 4.743423427300339 3.9839223764233216 3.7911592411368824 +3.2324132417482265 2.9986184551689585 1.6926910996447724 2.673536516277875 1.0083242204577902 +2.2938181078619304 3.33021494856348 2.284970714762409 4.657864887502468 2.5893522677379917 +3.6885193750777643 2.765576941134661 1.249057399642517 1.3050260642741391 0.9246378900918274 +3.149259853133435 3.425178222837915 1.6989602160730684 3.873599027521222 2.1920731983665642 +2.8066846665811784 1.6225859354882988 4.231012811738222 4.866107485829683 1.3436647833574809 +2.5676095631383644 2.133924289785056 3.1573834294959413 3.320205068599422 0.4632427036488304 +1.9471386640689632 1.1376688950671943 3.0386237858910117 3.639012538754906 1.0078233781239845 +1.757860399784688 3.1045753731631582 3.607253378133448 4.443724058106639 1.5853467816148574 +1.012600502247226 3.7202160486636378 2.1955168467622403 2.9893474821723673 2.8215862604059248 +3.245456534938071 1.75306833394892 4.0039856098246585 2.808712792756494 1.9120407029333084 +4.963756374636908 3.8773125237278827 1.282424657327831 3.2516704334936093 2.2490640649222935 +3.0753900625048463 3.474970037163509 3.4002953892997962 3.073741364606716 0.516044268635421 +1.7979689280004254 2.3046580525170195 1.5230792441162304 1.223133328942318 0.5888135706086507 +2.9529485966704923 4.378525337285695 4.19139335835196 3.6843949807876615 1.513048709802793 +1.0147823319324085 1.2248818689954653 4.922443032548582 4.154611581807631 0.7960571287420677 +3.556768793521646 3.3687423202266142 2.9468204403271168 2.6340298279992416 0.36495468461195896 +2.546930958392602 2.1579959355658223 4.678958242649172 3.920597668980421 0.8522800077887922 +4.8949107015491835 1.39903987207144 3.148815857658376 1.6747468459844987 3.7939415266409426 +4.835538492426739 3.6163682892844737 1.327874668631528 3.5244915982849925 2.512270272058754 +3.4829010995544025 3.4575269695383457 2.4574952254249864 2.5793504857232605 0.12446907622551029 +1.5346861407070862 4.6869144028390455 3.8811037975478277 3.494932572266062 3.1757945827491887 +2.5586886550756787 4.053499200981598 3.8189579764056725 1.0761219317400865 3.12371703841246 +4.0495185694497415 2.905241953583582 1.9175303709788265 1.2173854001286228 1.3414812536241207 +1.5328276730932626 4.639463923485339 3.0865493919129015 1.9848588973162085 3.29619640466627 +2.873944628785097 1.8970541431854948 4.947423122221077 1.0775782285344562 3.9912422279344866 +4.389686125760607 4.406326434172982 1.1350856870243158 3.2600111346436296 2.1249906018155 +4.662491894491339 3.3879332892755953 1.108726588223353 2.0330199855873783 1.5744262201005907 +1.587586257127243 4.5465103691328075 1.1810760850806195 1.5847490240180466 2.9863328250947347 +1.9514439155782486 4.700760043503756 1.5122205557107824 4.785035310930207 4.27434855776331 +4.522654352530456 2.4884035579352806 1.8098937858654494 3.245901069102212 2.4900387974527884 +4.076233777704131 1.0266259816599002 3.4693886049372913 2.919410875382872 3.098803513083652 +3.310719956824583 3.5153418869258135 1.8007408329895056 2.9833886381419923 1.20021913220476 +4.79746885196052 1.1815451978728442 2.26027625643487 4.088296470395128 4.051735649673863 +4.4538111726169225 3.0049663608376145 4.502866201142034 4.24681850307522 1.4712959295482104 +4.700710729886226 2.426883002767924 1.925640471246696 2.3080194096911066 2.3057550141283136 +4.480171564168867 2.6705208964212996 2.103809581914892 1.5879127892269813 1.8817505254376543 +1.0705691319069652 4.262565223540387 2.166459937849384 2.7534136041475263 3.2455128493635437 +4.087428945322819 3.30089490654769 1.0849935341959633 2.9621919661800233 2.035315638223057 +1.0105220200474099 2.535101635449494 1.8818952855725217 2.191317041185053 1.5556621826559607 +2.8592135769206255 4.5461213787605175 2.23975473600408 3.0258090665130855 1.861058661735373 +1.4975917726280423 4.200572328233427 3.3169990940164573 3.6073643376023203 2.7185319307787195 +3.3775252077745175 3.678241429783832 2.9424452373714995 1.6164626504172936 1.3596543925149964 +2.5450923185464718 3.266429064989562 3.0522845890866956 2.2906750159927585 1.0489880092724762 +4.968234238219187 1.75355664599797 4.0061341504394985 1.0991381938989706 4.334140919867763 +1.3413426612248585 4.5713233730335805 2.7485966944877758 3.3328463642850137 3.282395935184322 +4.325683085766022 4.349979524182576 3.690602326680145 2.2415897543225456 1.4492162543147644 +2.2492655121051346 4.6435987109888766 3.741165247455731 3.5419651112061983 2.4026052862587908 +2.4695728808428625 1.5098612918339573 3.932508444373429 2.6600696195210825 1.5937838300941627 +4.497347730341496 2.8398738476557255 4.928065732991117 2.6491953907986256 2.817883906109328 +1.3949470508296922 3.232379244091183 3.5076458531044254 1.0712134574158756 3.051615946280655 +2.7775054054875166 4.353308845608924 2.874849652556772 1.7178080914473268 1.9549684539738859 +3.9090888376050836 4.48121758528052 2.677944898177229 1.2273582307278135 1.559337354038139 +3.871408992950703 4.780225415962269 4.8004476520303685 3.5049255888812523 1.5825058315348097 +2.1840605627870415 3.519717521174199 3.0932877174529554 1.156664919821123 2.3525491218666144 +1.4512947520267652 4.536843727300801 3.2841764443380175 4.365985070692849 3.2696975980769816 +1.5452456962925503 1.6954006882359733 4.71076585214408 4.686646511604701 0.1520797954811354 +4.89692619589038 4.292927907357827 2.8945700609515064 2.9852469710876166 0.6107669232875055 +4.50320925681655 1.3137097218383142 3.416831117095347 3.468331164669968 3.1899152870454994 +2.4863956997739547 2.1632679097340684 3.6632579233160083 2.8500900247999095 0.8750163426320386 +2.054949375059108 4.595870077308741 1.7055610360968703 2.9756331357446846 2.8406620977202794 +4.49442039661683 3.247548274629208 1.9069319924481194 1.516962361003833 1.3064327009221361 +3.286299857337565 3.530045294178163 1.5344629694417207 3.5974329372464924 2.077319649462989 +4.791225062207763 4.507210443115651 3.5277520690828252 1.1629990075233354 2.3817475403604424 +4.1596493126694245 2.465043041353423 1.5513934696177518 1.953986860219267 1.741772618035875 +4.036399449202732 3.0998178543499506 1.8653032884219285 1.3637134347599673 1.0624393936190466 +1.3247381737551005 3.9371675259936976 3.86233806956102 1.933157903811372 3.247541105568891 +2.148993378410276 3.4075780154339452 2.8092203921844643 4.9704974557596975 2.5010305544091986 +1.6844374408704668 1.2454717052839 3.4448117496673514 3.8533767973092146 0.5996801774059684 +2.7133317100530143 1.9585685725770254 2.1293060775668273 1.126893424828583 1.2547902295054432 +4.742464427542934 1.6814441817534385 4.857273996419496 2.472523297271134 3.8803196829928575 +4.997164617472677 1.9945477384592483 1.2463024169327848 3.9442084628906047 4.036632898215059 +4.939655091726665 2.3260521871025093 3.4621190689847814 1.9119014141708957 3.038765361188074 +1.5244293161577969 1.5850552262055961 1.2938030191264138 2.265485969828845 0.9735724203442225 +3.577051592478359 2.233480916762409 2.4468593074663936 2.7240571983317077 1.3718676435225057 +1.3836311069477234 3.859567992679448 4.718121758586438 2.328331454155191 3.4411278908637652 +1.9035328948804189 2.182786391651024 1.603744957888253 1.56417462438529 0.2820431292411609 +2.8405537157484355 1.336131130509565 1.6470934139229825 4.973299640647165 3.6506075080287017 +2.6616786328589113 2.2619033226950416 4.363814828373406 4.3345458386203735 0.40084532226007247 +1.1354804420992246 4.657834121632991 2.8541171020007 4.519618595423025 3.896263680542817 +4.817723004906143 2.6340094936621345 4.358533437365926 4.951362287515962 2.2627529128828563 +2.4655794038292314 3.839055196486308 1.3759192129710476 4.891459331167354 3.7743155771162917 +2.019153830554828 1.5031794217550667 1.8161484188768302 1.0866398511586284 0.8935392218087159 +3.5870857218720538 2.767790787223864 4.113870939874149 4.366981619921092 0.8575017237848608 +3.6878576990683793 3.254940951861469 3.6900759691982903 4.360257473823806 0.7978472028868258 +1.7830384490897657 2.2150277764470707 1.6416959107643914 4.522266579994179 2.9127825458447054 +2.8253301421609787 2.1246040071996513 3.7677361229613924 1.6854652376557993 2.197013690446461 +3.5596578593360833 3.8051889367175558 4.283575406782898 1.9023248957450458 2.3938754157804745 +1.9101948611489203 3.730585039224506 4.8593956984040485 4.899710297613902 1.820836529549952 +3.301210999796772 3.783413814548614 3.584706744040766 4.43369465043417 0.9763708413081854 +2.5522825743008126 4.634329386716965 4.13172450175518 1.6487457922240045 3.240386119134163 +1.436738973858966 3.074980585858168 2.8012810493570366 1.2669901188466346 2.2445231651137436 +1.403301433473517 2.950419864081413 2.0110782756935035 4.404328417280992 2.849775724251853 +1.5847347755517909 3.372870450947663 1.7717732487209865 4.8301897881959475 3.5427871686791246 +2.0941350759646773 4.145026281950697 2.7088719558856122 1.9290432942431517 2.194148463598091 +1.964550589324622 4.571525908080261 3.624262846339701 2.442441584823833 2.862345507930869 +4.777020034360203 1.411660508742623 4.590210875273554 1.8244498610826163 4.356039339157013 +4.4508172259656 1.674174073349441 4.413962029404711 2.916728823189222 3.154592599808177 +4.049099440022676 1.3613318304404864 3.8471723810343508 4.097373149960886 2.6993879209721947 +2.816680360491234 2.8055322253883856 4.557441533299922 3.546134503749584 1.0113684733736759 +2.2179887017551234 3.4549655107404535 2.9007194930719358 4.584706369637917 2.089479223733507 +4.532262361544371 1.1324163598708625 4.997466364070355 3.906270638951369 3.570666736845276 +4.620742454044205 4.086968925168396 1.8234347756985403 4.56899410713088 2.7969644657277524 +3.1870671729258957 2.936784254549037 3.297636177205005 4.962843402953906 1.6839111152069723 +3.3698128166345707 3.0152218485450497 4.9408120305646595 2.337876183250309 2.6269773085972283 +2.6528795750891816 1.5919831897550747 1.8094220588060321 1.473248470198186 1.1128853589172836 +2.990013537947818 2.616128814988347 2.053208661889289 4.160445579729554 2.1401488765904633 +2.3163089914274417 4.92374443496095 4.364344719270207 2.3617757042089957 3.287704708801874 +4.868392476916053 1.8866652114785554 1.6589195911654868 2.21403883945189 3.0329614018762983 +2.2685875244236735 4.200176146644749 2.4028539772687507 4.249279633889264 2.6721381534120585 +3.37699734271582 3.2916563933466265 4.646855931077658 2.6230896359168256 2.025564882956909 +3.4181778299046446 1.4677386609629477 4.844066775927077 1.352597600242322 3.999321186963953 +2.3499972755562903 2.3904851288085305 3.5125699079987363 1.8111548392212082 1.7018967367393991 +3.3207279490424253 4.132988275832179 1.763974136470135 3.15360569717105 1.6096094908308223 +4.094620901616283 1.681526412952607 3.9328616928830997 2.239462475932051 2.947986756956251 +2.536882573747677 3.8475969792192686 2.7151315726631737 3.778282549013742 1.6876795463671161 +2.763441565000907 1.6376962768575583 1.2416590333813327 4.382225835781701 3.336234748052994 +2.425404252220973 2.521282736469773 4.5082992630856795 1.4467812648846574 3.0630189579972633 +4.065691503514207 3.9151726548027384 3.233492439414483 1.0050284939258654 2.233541465959413 +1.780368103364372 2.2781872752926087 3.1531368223542 2.1534903706512383 1.1167439081282855 +4.1806452679996084 4.755587180668771 1.791466219457555 2.5096951735200257 0.920005996392059 +1.1517205593808644 1.9961564092114088 4.5093064181601825 2.8827695270863605 1.832674046987933 +4.114798459462828 4.460825135715105 1.7931297010200566 4.7176963795422004 2.94496599603463 +4.110437395385972 4.386521380353452 3.9577303342407286 3.60125030714038 0.45088843018754526 +4.325069050246526 3.2517212434645284 3.565964229433602 4.12843648093953 1.2117964136099233 +3.308530693306064 2.5576551901162023 1.0288343663931339 3.9615757965721428 3.027339808739522 +2.134931287940497 4.917320037908402 4.843698652577867 4.506242883593689 2.8027778277931095 +2.644607345152687 4.717108349148548 2.0859883068703384 3.771958308401334 2.6716577732984956 +4.775292067967893 4.823904701626413 2.3598334063605204 3.302732026910713 0.9441509396207121 +4.321866679081771 2.4446761169092452 2.6291836890205245 1.356113631793224 2.268160439060325 +2.5842407346669454 4.292961338773309 2.0453768030078208 2.9747831435614605 1.9451278232442526 +1.1718670465254348 1.6916742131216234 3.769750406554772 4.85062621001149 1.1993714991373456 +1.7194263469520048 1.0024501636768255 1.5238416051274983 3.6376893230399157 2.232130601445036 +2.267532460361936 3.5924297472327216 3.1932117128494015 4.11824119590685 1.615868919585713 +1.811733564252771 3.6123131189895146 1.9447424877818271 1.0349222396638886 2.0173893072040796 +3.4045863793864775 3.0784305894617185 4.214927257932889 3.785097334042889 0.5395659021590657 +2.688347978474921 2.8711192308835174 4.731910565085199 2.75528661134224 1.9850560660136165 +2.006677716531557 3.3101066077012433 4.949967224552184 4.033020782572352 1.5936491620790665 +3.149772843218743 2.7736143758578624 3.980073256385611 4.735696896918336 0.8440748063407741 +3.491289955131162 3.475818822189643 3.661911211795236 2.713614980962409 0.9484224255922257 +3.560564262459254 3.503327195138541 4.22463229635645 1.796040748770586 2.4292659358087945 +2.367599488822638 1.8172347276943155 1.9447679803140248 3.500992770814766 1.6506777301644653 +1.7991741025870458 1.5894585922025577 2.8471671583121543 4.8532959422998285 2.0170605576530645 +2.186890825973102 1.1978507218335377 1.094011591131912 4.601896713357576 3.644647905947646 +3.444376665234736 1.5930592850145748 1.1364684371264602 3.574931183228027 3.0616133992440053 +3.8550897236569837 4.184954911445623 2.640563141759242 4.219582808621791 1.613106986673094 +1.754916356646226 4.110714962177248 1.3298622790804018 1.2204968510155587 2.3583358256782923 +3.1694864329976125 1.107925213433627 4.964689061197732 1.6279431538946523 3.922232516299104 +4.038521105750837 3.2044780037086387 2.5732346319067587 2.6686548393126013 0.8394837175583256 +4.752583332733456 1.0795343550074188 4.093191261998705 2.7002419032832017 3.9283071046852007 +2.365881134907251 2.6669806573121 4.720021844008766 1.0182994155513074 3.71394801521742 +2.7824999659733085 4.284314834761091 4.48865884490479 3.3360813738373714 1.8931145572638306 +3.5157347347751955 1.658297575788359 1.252991766825025 3.032815920624515 2.572517603056034 +4.8471913534836055 2.3587371184472072 1.318385285853036 3.400780483665716 3.2448072731279276 +3.372045904597282 3.430156243245586 2.0899250567081746 3.612939961547854 1.5241230960200158 +3.1909022480833698 2.2802688441425687 4.103693540453481 3.697350440588279 0.9971799793321523 +1.4359101717874858 2.004205060674419 4.07802079886102 1.7534452779456284 2.3930337300535647 +2.0474660948280285 4.546442531145221 1.6116213228494338 3.8569492651437347 3.3595209178863783 +4.570069256838869 2.307914581672514 2.83280243260685 4.158290503084018 2.621881461728254 +2.1437311755819346 1.1883903124967001 3.687520229648067 1.072314433023155 2.784237332445095 +3.0778060165871213 1.4056374498331188 2.6276464535729644 3.328686637580345 1.8131754066369963 +3.5868918339704488 4.136683275171355 2.8692120779786747 4.269073845715047 1.503955982596489 +3.094665252557309 4.94630847665985 3.4343912484019725 2.7150845336172766 1.9864502962065793 +3.6639275877512687 1.0646961091119622 2.993783617692921 3.7374104965095487 2.703513494408348 +1.599985714077072 2.340458852773538 2.997810965953234 4.15441018420937 1.3733252421774311 +3.28831383159977 3.5960892159898012 3.6081928093763587 2.666207020323818 0.9909908748385975 +4.969862059477686 3.1609105904544457 1.4197206525636772 1.8378489162961138 1.8566466174835858 +3.6619999361809428 3.506575185168167 4.0425126411337216 1.5557098170716244 2.491655100328014 +3.233399499091073 1.7529827385602914 3.608158564089878 2.9376473724314494 1.6251827721827656 +4.966789399251978 3.837246035655335 2.992178208401451 3.209296119656273 1.1502210212097819 +3.53763710693939 2.3720514903384586 2.7921417713486982 4.68595575135127 2.2237628516728476 +1.6846195829877897 4.269536604027603 4.5932576057679455 1.3235585874734723 4.168060421334746 +2.214138024716258 1.0538383044897905 4.984743564709504 3.704220482970227 1.7280147000603536 +3.985669070330467 1.591185294940559 3.1914381273234094 1.6772547034464558 2.833073241508105 +2.815136049641779 2.280668517846495 1.6559451454500445 3.157584974256564 1.593918981002929 +1.0715661410102144 2.2107991892940086 1.3128664319645353 3.156419148579344 2.1671498695844336 +2.373140147575283 4.224544180761474 3.4124670147939415 3.850119840245281 1.9024292075458777 +4.684507899054948 2.4100420702161096 3.012035766372027 3.7866006912443915 2.402737112003324 +3.6228431179095155 1.345606981753635 2.298763248261098 1.4888134055653621 2.416986381322206 +4.005009213263612 4.757638978567906 2.695464060041835 4.884137840877415 2.3144641890811593 +1.629090732006917 3.403183019105545 3.848070809762445 4.258470926015191 1.8209425302746673 +1.3246667376423105 4.299293398518561 2.657761874216114 1.1943197441931894 3.3151269416904423 +1.6049747184894074 1.8061809826696513 2.514492540802403 3.3684441552618694 0.877335352407105 +4.12699451412354 1.284299685901026 2.226768240067795 1.6859130139786904 2.8936893858862813 +3.6132358756708665 1.3738535487752275 2.5525078472179064 4.536874502759109 2.992080251202548 +2.672296055803183 2.4525192658920365 1.07685958730782 3.967572657893753 2.8990556900204596 +1.475545390283607 4.939783582454623 1.9564000344571792 3.7684244457418 3.909524103927188 +3.2688847757642674 2.8133159221071087 4.952860117448871 2.869726853665571 2.1323665667757417 +3.5755642959946776 2.972708150300816 1.5518299556358985 1.602458464579318 0.6049783288008689 +3.9037086422295775 1.4430874907678923 3.8271753299296662 2.835258165673703 2.6530277254047347 +1.3391485712736828 1.5335354571020212 2.4216208025859896 4.784960416774222 2.371320390283317 +3.6146149859866643 1.541794310829936 1.8440539516231857 3.7033007281779207 2.784489922317258 +1.1057474735226545 3.5373540955863825 3.5447765451225783 3.693105364222431 2.4361264751731855 +1.9909667148339896 1.294799894339496 2.331041034213671 2.4012604200426213 0.6996992240267295 +4.7859670018680145 3.965264713253864 2.6170834407876518 2.9871654645451176 0.9002849275895526 +2.7989187612001616 4.2046668471703335 2.224336499499048 4.78186871056048 2.9184068756473245 +1.0182034937157018 1.3698958272840045 1.3159993338631066 4.738037832426576 3.4400632237127913 +1.784310689559717 1.0941183092045694 1.2797529022179082 2.8976231181088346 1.758939895893904 +3.191650729411206 1.2772906420389933 4.818002492908253 4.715120114334608 1.9171226689872292 +1.0160734123042925 1.9914801588313882 4.704971715604127 4.346429798134935 1.0392163527163432 +2.3293834562157607 2.8249299629346227 4.657598641432455 4.175712984433519 0.6912164109326135 +4.386601762482018 3.167063944314124 1.8323017872842353 3.773968564600264 2.2928895228672745 +3.5397050117583664 3.155489320982473 1.0754355455696984 4.495027071816915 3.4411085282827347 +3.796713646715061 2.5913860585732404 3.822408346277555 1.1502491662700587 2.931424445220124 +4.599414196938406 3.7377907017494887 4.444226018271416 1.5197438065604194 3.0487688095484726 +2.995420759387178 2.731411068295996 3.9523931194132063 4.8730302451802885 0.957744138238776 +4.6140153198986 4.115005139040521 1.6645456343182148 1.0086350014154375 0.8241540626332764 +4.160756594085971 4.337761107907025 4.94453399745993 3.340789851539951 1.6134825327488456 +2.2574066772730026 3.610858420197405 3.690771429822132 3.094877647347407 1.4788242019987157 +2.2586474635929075 2.025437672918982 1.7098248891134413 2.7745293050630684 1.0899460077493806 +1.6341485351911444 3.92487939186503 1.466471722969581 4.486974278872825 3.790894821534344 +1.464431313334956 1.1046409615849142 3.4453057751812395 3.4139704739198766 0.3611523201054635 +1.111281945694333 2.6251995234983196 1.0226697784001066 4.779448731921503 4.050349927846384 +4.355332761658113 4.969417004934429 1.3906440535854494 1.2578594412317616 0.6282763811557492 +4.133453560503151 3.7034977762041814 3.6040926814943277 4.78850760925228 1.2600399587108406 +3.786985448064428 3.9880813997066604 2.673224450020885 4.370244542928067 1.7088934365540756 +1.0067028777595386 1.2525819156038094 1.9645041864662232 3.7485185964308996 1.8008786511624921 +1.4076482742538778 2.8508742095801165 2.9279176336644825 2.7848132040681177 1.450303409003922 +4.814357890407479 4.1664869322098514 2.393964286976325 3.360515322022809 1.1635968725573909 +3.698551426797158 1.146035326632255 2.5224372056164412 4.730604262409752 3.375105952752932 +2.8688125189515423 2.893101836940301 4.657441052315644 1.8353396243483706 2.8222059529210974 +3.160887559609823 1.3773075860920359 1.9994650482311438 3.520613684262733 2.344152447012454 +1.2296330471074635 2.612433378073813 1.9484872126575254 3.9657476001093266 2.4457056703746747 +3.3660598168879075 1.4303675321931935 1.8453226679684764 3.3328586099182886 2.4412430849096443 +1.284715752956104 1.262250890544295 1.765275420759031 1.923435540561715 0.15974759321874246 +2.522644340864642 3.101002908755286 4.758722018940689 2.0280657889835787 2.79123307505054 +2.255178475351489 4.101232326908548 4.9554617955009945 3.1661796692029065 2.5708841573160113 +4.347260307834137 2.2147691737122117 2.8305281998976417 3.1032726718415296 2.1498623174716482 +4.418715332675058 3.6597356238592345 2.9097036173012976 3.7399348841866837 1.1248707280875725 +3.612928873567539 1.331345006399415 3.809962642499285 2.217526591117676 2.7823510778946825 +4.861054161792224 4.818858934749191 2.170088756216169 2.0509905590260584 0.12635195985479464 +3.3310695749521684 3.4106666150558946 3.6956208052824135 2.42260932884028 1.275497513892777 +1.0472947604009253 4.416229213640852 3.0395079484017717 1.3723523089230163 3.7588731391831813 +4.325816612625666 3.9771586471416813 4.727311839911476 4.523449380182052 0.40388399248096285 +1.598209947926431 4.284162602353431 3.409460926221882 3.52625229744822 2.6884906334626457 +3.0634624573332636 2.8058642904687394 4.4546931709262925 3.704221789835691 0.793450760544092 +4.712596634448365 4.603912980171686 1.8619433521608912 3.237819683776192 1.380162242856292 +4.457778927865615 2.1345392084118915 2.1759583806369625 2.9800409319944006 2.458453079366149 +3.427770876639808 2.8178522238255064 2.0354443019220043 3.7751461292561177 1.8435192461920396 +1.7878682672753983 2.1044113613481925 4.471049523174337 3.6398395706365188 0.8894433740284421 +2.2097281683389047 3.3752399266924176 1.8288515952320332 4.8749673890605685 3.2614780527043172 +1.0136262684816129 2.333198019694116 4.035408657865302 4.0759726780427705 1.3201950788921273 +4.640791100446124 4.954569457029589 3.4510581805591323 1.1511306479476722 2.321233187838839 +3.278038053541695 1.3714543543119602 3.5704586309403186 2.300047952656294 2.291070643534724 +2.8817116980322153 4.845764673654305 4.605577006351383 2.8905276038878815 2.6074697589694873 +4.601054200932164 2.6488129334293187 3.705295766430835 4.90137218502381 2.289507537802685 +4.1398706373406835 1.1177639389567982 4.035313006841601 4.477281264350454 3.054253564631162 +3.004491160316769 2.2689437213001327 2.8982130947578235 4.19380781817542 1.489830769715625 +4.552243713574677 2.641549396325614 4.672622251992673 2.0742063674842988 3.2252934568552516 +1.0625354075923434 1.074425874624116 4.144860211004691 4.73918540582749 0.5944441272377009 +1.8599793076308706 3.040571168123073 1.257065807403809 1.8611661612547974 1.3261728313396144 +1.2818049030026502 1.2185753503489027 4.481074149917635 3.76314949498833 0.720703674532158 +3.9723234564244043 2.404372920241821 1.3721464896332423 3.4775525001858387 2.6251101602001867 +2.445838405107197 3.1789194274690917 4.469271401662812 4.042728073729595 0.8481432638130807 +4.582445582753282 1.523667519379969 4.450849139501144 2.007078821645619 3.91511642322492 +4.242924870785443 2.7499917467838353 3.454430779495451 1.86596109732089 2.179927807045213 +3.9798582454263474 2.3517611679469317 1.1601484578057257 1.7738980133899913 1.7399392548813013 +3.762171438866767 4.063124106355721 1.0682200520665526 1.6042201739066821 0.6147102070743178 +1.1928008504548173 2.816697048317676 2.3878340182326836 2.159007821444218 1.6399391116044897 +2.7683769743556983 2.499050804751181 4.765484464764417 3.338130183939116 1.4525415066786056 +3.6571738326692165 2.9486433719196157 1.9909845078066342 1.1161663703643852 1.1257540528054817 +2.204342957778279 1.2406937873903652 2.623040879772336 4.588625529041799 2.189096328861084 +2.674557849836177 1.0083933018606448 3.6011995767524483 1.7847079824121908 2.464902840527253 +1.795347461413276 4.21387206355431 1.7679329331487597 4.221841079283311 3.4454210832388767 +3.2149705935551602 1.211124166986251 2.0520647961869862 3.866443027165803 2.703214543154651 +1.4120264377164613 3.505150028188205 2.8022367425788945 1.0923072915424838 2.702780992331973 +4.671757462564043 4.778076739073667 4.167720321927103 3.8866663198137497 0.30049149848450396 +3.430808819906332 1.8363474066373322 3.1599729690809526 3.3188703356337768 1.6023593765136455 +4.215797794973988 2.3942781422682424 2.949646610681449 4.426841726307719 2.345216249053245 +1.5075987798190282 1.4018074962615983 1.412865889634987 3.3098553788319762 1.8999370825899953 +4.044042675295582 3.783269290157945 2.302724117475027 3.449240333043136 1.1757985333197012 +1.855286887395645 4.1455360090242275 3.217125482008161 2.0682401379866464 2.5622604420370556 +4.548856427841529 4.705954956573029 2.1573785277400477 1.7578568656837161 0.4292988541585634 +1.7628755643350553 1.2918247909072997 3.2844503094239506 4.618159203792786 1.4144498033035415 +1.2369937730559792 1.5845418851489979 1.3759433363424671 3.252151222137494 1.9081262329675326 +4.626002542633007 3.1741421010841218 1.9992782176637256 2.234879174034447 1.4708523217431864 +4.201529223201334 4.063931535798368 2.666060905003656 1.6030676786894436 1.0718618020848316 +3.625706839926032 1.584774978985052 4.859146682161764 1.5095798548867299 3.922371832372009 +3.668787726441643 1.302868945254286 4.274789317619972 2.194462889343069 3.1504491310545557 +1.0149924440616638 2.7998396038694646 4.360287614202165 2.734011198668623 2.4146333807836333 +4.2873212000942535 4.8695810693314865 1.2950334365687746 1.7809809401711285 0.7584006405466173 +2.533617076568628 3.911122661340822 1.3737431639799182 2.316836920941246 1.669415307974027 +1.6956635749928806 1.0238704500206115 1.7439387155640755 4.303194491767691 2.6459584522043382 +3.904111877043109 4.062051604210712 3.7944929258113897 4.25383294000528 0.48573470748693676 +2.5000856342413447 1.74671820875699 4.763973880089261 2.274577676581569 2.6008952181545943 +4.349986954323027 2.8577761898499743 3.7512994394420356 3.3150374838801393 1.5546759982324108 +3.7453671169643243 2.9264603542545227 1.9838482889085727 3.7503115840292263 1.947049269797856 +3.5380385086787083 1.7183552910081712 2.415244016593151 1.8206621457662693 1.9143601055673392 +1.813658155494068 2.310927669754453 3.2049298679500575 2.1706127077796813 1.1476449614909967 +1.423359998783261 3.221305616784305 4.677018995236402 3.9274073114947248 1.9479543428148383 +2.8931963019075844 1.3276637636506932 1.3698229401623783 1.740110700807695 1.6087278060706192 +1.2676680430418505 1.7905416527204765 1.5336888547865999 4.790212662720784 3.298233485267609 +4.807429146114871 2.5881717806660243 4.609634825039287 3.66432558339911 2.412200824232776 +2.605883222670256 2.554570871124943 2.269680820760377 2.404463716736638 0.14421992396634145 +3.272898779939972 4.539223988191294 2.6558574787829987 1.9602880040557404 1.4447824843986405 +1.3700466721820304 3.314968874161848 1.4435768773137663 3.962450094512185 3.182364632796427 +3.943548604865036 3.2400298194084445 1.772696132107305 3.2269921306248492 1.6155232999850109 +3.6911986039750766 4.087702701963769 4.500086929151559 4.1908792331569735 0.5028169636996216 +4.652951840631041 1.3763389772944343 2.2357443697709143 4.782381035033133 4.149885559993286 +4.1122526912874795 4.287316264309361 3.2754204908989704 2.659046209608975 0.6407530797701606 +3.4128184092803333 4.993843367912778 3.4590250064473893 4.347088895225468 1.8133663144467989 +2.9496362082782226 3.0320390239460813 2.537215170901714 2.5525649838108557 0.08382028863191031 +2.006202620705562 4.76794160672796 1.4010295080710953 3.2894265752478087 3.345630838905816 +1.9057395123130303 1.4795010275286562 3.276764157908579 3.392421313963815 0.4416512466393187 +1.8216409571246954 4.917863593330493 1.5078933974865572 3.8919534201326744 3.9077278314299964 +2.1573865256164213 2.0009068258881992 1.8317779480763146 2.1975736855181927 0.3978597968602532 +2.366241578699311 2.7207454403986384 1.0578887003729966 1.0006566680926876 0.35909398975570456 +4.304851591118598 3.342602594597193 4.133956086461278 4.585733434880357 1.0630267653502543 +3.011161822362264 2.8817696602955016 4.5337017336954375 1.2324036487779075 3.303832831286181 +1.288064338492017 1.410130902837135 3.1163105721334285 1.8308411816076178 1.2912520281145041 +3.0376092759055164 4.533311613836656 2.095541939611822 2.0910804743213953 1.4957089918714848 +4.5480497469046295 1.5089785880153053 2.926015570945396 4.666580727276496 3.502216522750529 +4.031140468358627 2.9492237295116435 2.653273028805768 3.290232064741636 1.2554921916354729 +3.813513839811836 4.047135581370043 3.4665610853390003 4.155336221371893 0.7273171977519987 +4.9878965130343955 1.1243166063825294 2.7102945350896936 3.9924852290807546 4.070781579849418 +3.7266294165762592 4.147368543165944 2.677157898754993 2.8897545904077537 0.4714008548413443 +1.8418113278184975 1.3312581873497695 2.2188019707033204 1.5513774537007308 0.840309463911136 +2.4072314960153665 4.281629274976424 1.1034811431906029 1.8179775760156067 2.0059591686506986 +2.652046873064635 1.6728552607954743 3.8927942021924014 2.7442355790023156 1.509305510638116 +4.041261115327266 4.758390792736986 2.562081881958741 3.1575732974654334 0.9321400110304954 +1.253501409189913 4.8317579285575505 3.958647065880427 4.905806531029952 3.7014903445530334 +2.996366894276114 3.2668162101353113 3.683288906454382 3.9118508320726595 0.3540951655855285 +3.7154204283530423 4.3444069070816465 2.562648552987272 4.286048380437162 1.834592858287015 +4.393619738899434 2.5987514208798315 4.968439702311742 4.627155421741595 1.8270268851866414 +1.9801594702752787 2.152625066907394 1.7678477597676343 2.8567468688823787 1.1024725175044299 +3.1387383403176368 1.9223764959771747 3.15637161924879 2.779398754011151 1.2734381325737052 +3.2427956692096203 1.0548389064486008 1.812842844121799 4.334345380313256 3.3384322421956734 +1.841900036010498 1.5772715476198411 2.6846612445944986 3.9597297268021983 1.302239559830437 +4.944204832180059 3.0794320153682198 4.183835989542986 4.555574609539358 1.9014645039855906 +2.3978081618744427 3.4975897993284026 4.067206224028849 2.7687625523674004 1.7016097139351838 +2.576984568671344 2.5068417629699686 4.611578997102108 1.1916301723052136 3.420668060104827 +3.7143294951170303 2.021076525012962 3.7180863606013146 1.2497642505403999 2.993279081506069 +2.570439503104242 1.647301267743761 2.9310508823673422 4.591651588617609 1.8999418167889632 +2.9895716225626883 4.246971923556622 3.6978168872166033 1.74986277892947 2.3185298628511033 +3.5166996764996625 2.1752483213776213 3.1924914031328573 3.3872309520752344 1.3555129029563096 +4.542829572995668 2.974545436349869 4.644300880576955 4.551998921725907 1.570998021915559 +3.30278106322937 2.448303609044593 1.0319695563926365 2.8234549032202882 1.9848303372349712 +1.4728646309396871 3.172562572444346 2.1433976351672364 3.0050373688790315 1.9056222403892402 +2.4255482702855398 4.936700271086955 1.4126891795095107 2.1497971889215948 2.6171000341348045 +4.241524323855305 4.334400157214695 4.284557594390262 3.6039538830809414 0.6869114442708185 +1.375728986644094 3.9944166983690406 2.9689970885184596 3.808379947130178 2.7499252562334155 +4.161382752429219 4.4153443444008715 2.039595784778573 4.801310011241486 2.773366538855696 +2.5855130390197147 4.792350195751387 1.1982671227897108 1.0553191134400248 2.2114620434700143 +2.3258226115142353 1.8713335617165665 1.1417285156031136 3.2534138655222935 2.160040581435746 +4.217704457300796 4.411129106769337 1.8886609713929015 3.167959657812733 1.2938385618374244 +3.345948532497098 3.674083885661343 3.9210488519290285 3.288359991334479 0.7127187413816567 +3.7905883644757252 4.567134246208148 2.415302636239097 1.9020067537626186 0.9308577600272199 +1.0528114124128165 4.565321802631059 4.310622192897636 3.2230889821686777 3.6770175041505513 +4.010849054263609 4.8424817138917895 1.4441906453409223 1.3841785111686846 0.833795140791878 +1.1145323809136234 1.1623883944406446 1.407245177172232 2.923300395162136 1.5168103447778545 +1.2527563743238148 1.0432841834025584 4.344845891609885 3.5776413223931924 0.7952870235307011 +2.044970469443029 4.901123520643557 2.519844294391438 2.372534484591062 2.8599493757662056 +1.0884033602496404 1.3158345601756505 4.571368844315091 2.2862523488653164 2.2964063988058485 +1.2773749468548123 1.2645274908850856 2.270293086044475 1.8199158441677676 0.450560447804026 +4.153158455160854 1.4108694236535237 3.9350698174075327 2.494332300060194 3.097720730830587 +3.6672901971792204 3.1318942834540957 2.3771670066763866 4.973376816871188 2.6508402748912063 +1.0167047835309688 4.071523012161521 4.734556526628879 3.3372119694417397 3.3592389348592078 +1.9103177800812259 3.38470275418436 1.5432381247738878 2.1251881898351073 1.5850794712208778 +3.9711498501726186 3.393007903924483 1.1656852594344396 4.9790668195242285 3.856958261745182 +4.332100552487658 3.8838252432657137 2.4711971944247004 4.95974020455038 2.528595868481836 +1.6638533178493207 2.539967143625853 2.555438804589512 2.3448502261418427 0.9010676917354222 +4.258034954942083 3.575063490927411 3.390324314228184 2.5594983047240745 1.075510055149122 +4.62426438459673 3.074035331285243 4.7952890384074225 2.5374179535818446 2.7388303988057494 +4.95577924155911 1.4600429599468812 1.6897177447501521 4.335684866970978 4.384211920340262 +4.246931967043041 2.391767688697366 1.8307302470144982 2.6730667834478616 2.0374408801877872 +2.9932250338237534 1.0933291851666112 4.648384410130864 4.4566943071628415 1.9095416547749184 +4.573715350111522 1.7552730070573896 2.418180201905535 1.7218029211637087 2.9031979881251377 +3.3085760056085953 3.7354361625513905 1.9649819457187339 2.2916083499650073 0.5374889780600881 +1.3140570882392937 4.562604251603468 3.1237677017589487 2.839926750760145 3.260923850393525 +4.38158068279046 1.9470985952722453 3.712588854719009 1.1807414645018772 3.512400068585062 +2.429467162457144 4.484804186113349 3.868139299966255 4.577835756289232 2.1744147122684163 +1.817958193067184 2.302586072600703 3.9770733215831253 1.6319160758773488 2.3947080591812147 +1.6152651606233026 2.2009538480428454 1.854374148051602 2.5103892008034223 0.8794242366504351 +4.923189469731218 1.8322887330528932 3.3308651583666453 3.588106778548764 3.1015867898790987 +2.225117735965625 3.3773244232810113 3.067636810645317 3.933662065805985 1.4413812794921395 +1.61695365279975 4.0231068727485715 3.5208142259326802 2.6171062112389403 2.570264868392319 +3.5361288787911858 3.4808903101651687 3.733277599004273 4.8424194460397265 1.1105165178010945 +2.7973129558890815 3.7228523379935545 3.6333151435834052 1.33129775810575 2.4811100722998387 +1.9039618006088026 1.6603135200863495 3.0234246522664634 2.1920758604502444 0.8663170887474372 +1.8977304982763266 3.6398533876901875 1.2962808043644811 2.6021319364746027 2.1772090715071406 +3.376530213284855 3.371801909333604 2.060888443702663 1.7340220027557018 0.3269006379247196 +4.619988345063608 4.508805602601339 3.0250297809033437 1.4831934153717046 1.5458398947812304 +2.087370885902816 4.149039805461815 2.292694984462313 2.1846711630067044 2.064497004085364 +2.507882195713938 4.272873329915468 3.581959245377044 1.7643966662623174 2.5335207583140464 +2.5310197516331168 4.326362701000868 2.4480639154539228 3.115544403659472 1.9154076610423203 +3.465068851713731 2.3329700686799475 3.891970908168717 2.1486408566067072 2.078664793377175 +2.190310692542778 2.8181208564210785 3.0348085010528627 4.527661867143988 1.6194927522278393 +3.88209823171889 4.592644595367718 1.9559219605554454 3.258171244766967 1.483485535192033 +1.7150974453196048 3.9732929064738487 2.4062331124050997 3.7733602884775674 2.6397885249264776 +3.556473576763436 4.643715866159276 1.0955682194526069 4.163383404122062 3.2547789177053468 +1.7921887154222946 3.7439838534242194 2.1574503768447317 1.2020929330248409 2.1730651408068806 +2.4197001145116697 4.074106083295263 3.0351499882043385 1.3165823627454731 2.385483974547325 +4.000224490355604 4.259906392639328 1.0361501884298296 3.545872383852073 2.523121120471377 +3.206814513824366 1.2959152395680076 4.256800656930566 1.3363659345424974 3.4900537250998522 +3.1170377734785415 1.352619168948073 4.819950526929761 3.3251565132383094 2.312483979486354 +3.011113195004172 1.2744885744332426 1.1802474434220716 1.4628658140216024 1.7594710046412978 +1.9403384759974829 3.9453693816504343 4.013435464161997 3.517333276728737 2.0654942055110106 +4.044846038044611 2.0274449735757964 1.596231006799115 2.5752213356925595 2.2423936137500036 +1.571384779955633 2.6856165650043544 1.512498182704836 3.6970232108062713 2.4522769152798456 +2.6319677455398516 3.06443491218533 4.001359768877087 2.9867495831069473 1.1029332161535828 +4.209756881551761 1.414729968458405 2.8542342658281954 2.898161864779474 2.795372082365029 +2.555555785122132 3.2234084096383584 4.475606816270751 3.10262391843139 1.5267970283677468 +2.0766419956532145 4.956955157810619 2.8475381923311476 4.529874433528679 3.335634743275082 +4.226989998988683 4.089938816993564 4.73299004108199 2.724576826627846 2.013083869708435 +4.690327815491703 1.8521585718357336 2.0181530451813288 1.7500807206245717 2.850801190337194 +4.862107564876189 2.96117014755669 1.5405209785363123 2.9487598868741864 2.3657345344568936 +1.8764494011157238 1.5113537777060362 1.3437946067084314 4.1710474282475225 2.8507285614617293 +3.203208987376214 2.444286344626309 2.6764316829168435 2.487278783839108 0.7821396275013895 +4.710425876030257 2.0703328980247497 4.715377337828464 3.520513875677569 2.8978939983541863 +3.0636907543683574 3.4474401314875416 3.0530201577920337 1.867983324319575 1.2456226881065526 +4.110081487858498 3.326064584263591 1.4728866645594203 1.7587305610953492 0.8344993938340448 +3.8683091578053417 1.3810534271706207 3.562412539240421 3.2077061810201464 2.5124206793722164 +3.692698878985747 1.2978068825830702 3.244671551963372 4.800364370099976 2.8558164889984448 +4.605635173647416 1.2815223827992699 1.8973069959947755 1.8710702228808485 3.324216330888181 +2.1699619205940506 3.551236506537667 1.6846597583677831 2.361187757281471 1.5380538401134949 +3.2313560567695796 4.704061010976643 4.2687817541707656 4.933510852738953 1.6157737021715957 +2.063345243505715 2.5914026991660464 4.0002052860015365 4.257399766914838 0.5873616241215672 +2.0433990002060716 1.158704820543429 2.1888905675091297 2.8492428092113653 1.1039695986077351 +4.907004837674861 3.0416571279021367 3.684879368467651 1.4287812075697155 2.9273710031291547 +4.186173630616344 1.167771604285793 4.929291878960113 3.813214432316925 3.218132946206846 +1.8675473110072969 3.2166508000273137 1.3850389816704234 1.7038113100660492 1.386252509983932 +4.927637998082446 1.733714804366429 2.429094119646325 4.801101552194833 3.978387189229134 +1.2356438581851514 1.7532234471720178 1.9782381543117018 4.06946886707459 2.154329251748347 +2.5195019775748606 1.086562782109207 4.771480122585551 1.0438396545481572 3.9935721098850583 +2.417978845197355 3.5918106429917764 2.0321619038768475 4.431387652794031 2.6709858262035957 +1.119725184560734 1.9076509593983881 4.144237143397573 2.7595932330073287 1.5931308123422587 +2.605352342419197 3.888943052404168 2.2315656161014936 4.009930518679967 2.193213814812105 +2.026709291392622 2.301033810197125 2.062347777872237 3.1143921172466738 1.0872217959676473 +4.0816566446031946 3.4355331467386283 2.2691422631050693 3.887988764675298 1.7430259809133402 +4.470376427105124 1.8674400996589329 2.3598689532035007 2.374524684463551 2.6029775863802267 +4.555032715792283 4.3819387690767835 1.6894484086414523 3.784785723897404 2.10247472733766 +2.300289348871726 1.089433990099772 1.2618642100948532 4.568995293309941 3.521830021655525 +4.286003786645214 3.3000922310619067 3.8756393422693494 4.732713842594602 1.3063683609688646 +4.238332242752568 2.94868322289347 1.8693716659307245 4.47568246991266 2.907928919588045 +1.8075947332710771 4.6648997768889995 1.915404807398228 4.765698054673454 4.035884501289298 +3.616719598776004 3.091393688318147 4.1241788476416925 4.841407646044512 0.8890356918913489 +3.369388935779242 1.3877957425148342 4.432635269943519 4.549283829887507 1.9850235439734307 +1.846412629869365 4.450185124230089 1.363465707916248 1.164742124092344 2.6113449150116654 +4.571987329379261 3.3904438030605193 1.0700683874004522 1.9850213951771911 1.4943841912391296 +4.310832581674242 1.6577505061598163 1.51115477657142 3.263257302319262 3.1794194061413 +4.702716589219408 4.7352925429134185 2.08343537092303 4.330783599631149 2.2475843151785413 +4.155316206372362 2.538653516382258 4.804242597758059 3.6831240970429144 1.9673598923053741 +1.5359420223920508 1.2665859870328968 3.0374225621114497 2.0673746754739373 1.0067500067813786 +4.513699886125543 4.595319875459605 2.4021810711285285 4.724455819230334 2.323708636712055 +1.2783400465431813 3.74659323738111 4.453717872419167 1.1125452594894236 4.153999066378493 +3.3127550777295283 2.496722040177458 4.9598867737609815 1.1823706868446142 3.864652339511072 +4.45501734031377 4.183986675217607 3.0531495700265348 3.053529130167849 0.27103093087020375 +1.4178357578198102 3.157581072343386 3.4774482852539914 3.0355788171579796 1.7949825587571004 +2.9258001884585516 4.402494431575562 3.6120573039838075 2.200432859942726 2.0428679493959496 +2.2928532680939706 2.6075224592345974 4.132444516674294 2.5538337962338886 1.6096672036612016 +3.144389593945052 4.183179441643059 2.2975267511478203 1.825633084953052 1.14095047213943 +3.467425361832307 4.429600192652776 2.9627888714894106 1.0194875483213273 2.1684557725928424 +2.5572289169281555 4.155068021854484 2.5106929020590427 1.5650574613876915 1.8566949646846873 +4.579044705819551 1.3807767881254382 3.6609355880517147 3.9685537598829637 3.2130276396246944 +3.422899216730892 4.176551371979826 1.4655662555750015 3.5828899549461455 2.247454386418125 +3.499069318294972 1.5321361211916917 2.5393029352209417 4.962757836278389 3.1212112807892853 +4.8501338026331435 3.9695896013096856 1.438456583089018 1.3869371974420757 0.8820500765726426 +4.95593968561365 4.693141916952494 4.669252400364384 1.1975595159747776 3.481625216868511 +4.315787345721176 2.590672049670487 2.7262059794326006 4.735402711365759 2.64818698212172 +4.9781279651000725 4.168122346305396 1.8376167309375457 3.578189642930946 1.9198185238308676 +2.8504476459337837 1.8272947551319505 1.0708191437164523 3.3680282299266158 2.5147587207767432 +3.453322174134396 4.37609053229091 1.1076950337220897 2.7953021579863933 1.9234134367531337 +3.1664778262254347 2.178853841756545 4.719534975528074 3.402365821164287 1.6463097266023847 +1.7490432296894363 3.367700293435994 3.7289406236111375 4.122548983730908 1.6658265909670198 +2.8627130349448797 2.788072456484577 4.289094662005365 3.4212235705480603 0.8710748804438005 +4.909254487971057 1.6224799235802974 1.2217528015871686 3.620537049412007 4.069035869188013 +3.2928682177025643 2.6212248448324127 4.474818086059539 3.9191928551313153 0.8716789647366945 +4.044319709218982 2.1589751880157424 4.884683492107619 1.810827417307682 3.6059832407008705 +1.428147591991336 2.177305346156851 2.9860934360508664 2.26890433774413 1.0371101886281648 +4.1177760679016995 1.9537511253802204 4.384555117247654 3.5703855751646243 2.312115047983292 +2.8316420998198137 1.810021422711527 2.024452512662635 4.689031722587489 2.8537153281045664 +1.930590820905099 2.787474633493267 1.7746026835929025 4.6034177966947505 2.9557477585864893 +4.8435270026478285 4.586326805414642 2.327699724407671 2.220569770142314 0.278619397310538 +2.44547894083267 4.650679314136593 1.3891491059270624 4.219378895752428 3.587911558223627 +4.536137502814941 4.868494078457936 4.834816984764322 4.1779506494304925 0.7361618543961869 +1.7720200244763435 4.362946542144544 4.628565027498273 2.490817787519223 3.3589973923768257 +1.4351147397478905 1.0062858078506567 3.5658745862001378 4.57502253050249 1.096482478802915 +2.5278212041207597 3.380236938064551 3.99803075838912 3.6993878311596218 0.9032165750577962 +4.580578370860592 4.51764912253836 4.798697448166721 2.4277965398043464 2.371735905949045 +2.1157820603087 2.8624179043196123 3.83222158544199 2.40359600387927 1.6119665430328594 +2.2608742612942274 2.7265354758562768 1.9128571935249408 1.6178661113025399 0.5512350726669578 +3.7523700100907584 1.1434011815220493 4.613433132888863 4.112647088455563 2.656596508832746 +1.8284360910058095 4.646721503540294 3.1887524247457057 2.225701549971703 2.9782880407891446 +4.932492478463905 2.9580618791264666 1.7084696076984742 1.9347220757303552 1.987351597199276 +3.35206596879926 2.5959793855676394 4.527943783841595 4.616435191678858 0.7612474306057704 +2.1206964549666494 2.776840537142048 3.3929103585065232 4.1751476297396835 1.0209898163449513 +2.616707843573064 3.593841974446205 4.246963190994073 2.732753239103358 1.802116224920604 +2.4479637941988495 4.334622184858317 2.007348233889282 3.3165666088857098 2.2964173480606824 +1.1107634287985766 4.331250006624401 2.2813372170839457 3.6406460116044075 3.495604982948869 +1.0994389494561476 2.9339342885128925 1.3447913902368183 2.1913740450745194 2.020414645683646 +2.389225019513959 4.291709117552454 1.6475161115182426 1.7690261989673264 1.9063605232592364 +2.2563124529972067 3.6749581070072983 3.3206868923094777 3.6294746234794344 1.4518627189107136 +4.138575406395261 3.339485392232796 3.026805208616448 4.688206944162099 1.8435836237090708 +3.169011685260986 1.463789434431693 4.244196273884798 2.886415540080131 2.179759492653825 +2.988643525940825 4.437322408988994 4.7526568514982115 1.3851446486656083 3.6658981085698743 +2.2713533260435925 3.737583913958253 4.7610224715144405 4.18186856416255 1.5764680096143826 +3.179065632139253 1.960385334048997 2.4816620033279384 1.7836232729679704 1.4044357365276317 +4.461682642984877 4.053571675689005 4.86617411927241 1.3881879973220377 3.5018483728035057 +4.74468649139357 2.0821243867519077 4.641482460148781 2.9291536863589553 3.1656447669665035 +3.067024821496087 1.5636184828291673 2.9098757283717798 3.5829037073915697 1.6471785816016842 +4.0423499266900595 2.110669089395312 4.99477775068056 4.4752180330634275 2.0003332615697142 +2.6058422613022354 2.5259661260495943 2.2532211806310363 4.961124154516218 2.7090807874552416 +3.3509029154901797 3.826520182967311 1.9503953359539112 3.554831527534839 1.673447721913393 +1.209902347536012 3.905636504646561 3.1664029552642026 4.772602643831119 3.137970695428015 +2.8691481716302607 3.822403214514903 1.253167301034293 1.1922208554761062 0.9552013641171052 +1.8910531165766056 4.749091218088827 1.1253816343289622 4.560748556711971 4.468794880177304 +2.603874018833189 3.6578524676749544 1.902372739843266 2.981294532305901 1.5082913527809139 +3.4559107752682388 1.1402640565972901 1.882127527900416 3.3476891276874823 2.7404544383116383 +1.0373586396551158 4.1107595558339405 3.6009455376799893 4.303821867660638 3.152749328255563 +2.298404713174726 2.8043800644923027 3.676059162036428 4.4913961002128495 0.9595756243756128 +2.8778839404043146 3.796054033895633 4.024513405927006 1.5898973888764454 2.6019975924395067 +2.8381155411664296 1.7462090639346433 4.301358971164458 4.19003608255019 1.0975666451519719 +1.052497620947054 3.7586033183137193 1.029242056197715 1.159474208261245 2.7092376157789158 +4.871600601773018 1.693882767438689 1.0047990734820744 4.577983272076594 4.781792127616174 +2.3409536932130584 2.117105192314012 4.8545933163576755 2.9329876770518726 1.9345997995364865 +3.6067882136277074 1.8872648389845517 2.2758544030906225 3.903827465969912 2.3679224922713926 +2.784142308142488 1.9062767703241033 4.272483549933391 4.22744628806284 0.8790200552012215 +1.7569946458415195 4.580071603230671 4.5253195667452335 1.8082154416959413 3.9182162183449587 +3.06690025472615 2.051601202794018 4.559965409990527 4.7993737169180175 1.0431435674345952 +2.582649020051335 4.575383683014984 2.611977733664632 2.1418417954971836 2.04744212063087 +2.2724938787243114 3.047933848546613 4.364076822593429 1.844237972403695 2.6364550020289617 +1.196059482811997 3.2592721976045222 3.9761408095079935 4.553184725667435 2.1423880105289443 +4.478944806244485 3.0156825571068273 4.170657734138466 4.914647994010499 1.6415413234322953 +3.1679072084355897 3.312455904959556 2.224119226540941 2.860472741840123 0.652564266643833 +4.63625600243974 2.1940803467703147 4.4433499365213285 3.858024955851929 2.5113397353086304 +2.597157356105326 2.4598492254046547 3.5376742166529307 1.9897513074581923 1.5540009187791413 +2.1189274019167756 2.447783456851133 4.133372125276163 3.6485927823845468 0.5857963094467366 +1.050329202681446 4.371573512689322 1.1239036021272462 3.2652325034855045 3.9517025736449165 +3.269789772824327 4.998695943320902 4.305933570518433 2.818478094938698 2.2807104897845467 +1.0500320822359441 1.2828530655222674 3.110228459274541 1.5426812026166727 1.5847428851753897 +1.3690595221725936 3.8092275988745783 1.1843441551414737 2.318642755914759 2.6909205782169967 +2.183121807836336 2.5416092767177334 4.698114649931245 1.5869429711654233 3.1317570914902597 +2.3206975471522315 3.6348035179993903 4.822258204623415 4.19099481329589 1.4578641815500102 +1.860468925600657 2.7582960641632672 4.9491459848412465 1.552816232786578 3.5129972040169988 +3.855492378434883 3.08940581952477 4.030096631347645 2.4144883391880834 1.7880376868056982 +2.9694626721332176 1.2025500655354775 2.894058357821026 3.5238241751069754 1.8757892056347538 +4.1250868338449385 4.050784777833021 4.132828690527546 4.196424234107477 0.0978017826566824 +2.4113124293055006 4.68679752067087 3.868829677785076 3.037917888200042 2.4224464499958445 +3.762556649595955 3.872703962664987 4.780818148319952 4.370619488073133 0.42472976284293146 +4.654739383927486 3.3570599244246098 1.7993420612710893 3.085081742587247 1.8267727028086043 +2.506938753504942 4.069442142970998 2.0273526772348784 3.7835080973638626 2.3506379350596136 +3.933252798400416 4.943623960156472 1.0653279799365203 4.338298698991926 3.42537402516898 +3.851756228580567 4.613034644454268 3.330135398574674 3.226960938770188 0.7682381112852439 +2.71225635575861 1.4001831998323424 2.467978370573957 3.209483721729076 1.5071052227014519 +4.535905732623121 2.246452794228887 3.4255714836803124 2.477379362369834 2.478036128880541 +3.4781827526195106 1.8135546107308236 4.2186361671927015 2.0538461499362746 2.730806230691014 +1.9630290095021148 1.989187800848926 4.768211702935376 1.5459519327009725 3.222365948993968 +2.1216706991901604 3.8071600188761985 1.2317343225002833 4.858133862916201 3.998955847906361 +2.3627149750767438 4.941702454771727 1.8412318502900349 1.3744502534032002 2.620889444371072 +2.789834886102656 1.1798562630665326 2.1786232054965518 3.0361581307049286 1.8241154882806703 +3.8847799277514476 2.055629547498019 2.6897593240895032 3.454347222818275 1.9825200549966049 +3.582996017707823 4.495081068756459 4.829929951687626 4.850421267800831 0.9123152056073847 +4.988369547084487 2.64211004298667 3.8567046025736986 2.9503662012271468 2.5152301998673514 +2.1153922459035224 3.0394314214829756 3.3106012448734603 3.0178376699108966 0.9693084693896037 +3.4323557522256025 3.1786458017645742 4.775277978637019 1.7682950284427785 3.017667178752786 +1.479633605996593 2.125466307588155 2.4157350724346123 2.5878152668507473 0.6683647744722563 +4.826735684479446 4.914207675193095 3.643026025058612 3.451315736536593 0.21072300274199893 +1.7304393694148934 4.982131837413158 4.395125407462064 2.0142510183848 4.030144757077676 +3.783034142465851 2.5108971629497443 2.3548237206906597 2.6311820936283556 1.3018089126078118 +1.6715202871314565 2.2562885547619818 3.874508907176664 4.928505314062614 1.2053473991161625 +3.7274338130049522 4.849955930236842 4.465113395621463 4.967737860039061 1.2299135156204444 +1.1990419005051414 4.195091365799442 1.5983374913590684 3.4942132406589863 3.5455122697959727 +1.795180943281086 3.5309298190754195 2.316633327432207 1.1089716143235218 2.1145380046548934 +4.626377152672948 3.338890525125123 1.9528775428656884 4.497463435711934 2.8517607161517944 +1.8669454137253423 1.748319150818158 3.557407745645178 3.666129489830532 0.1609118016493195 +3.160921277223631 4.453293744321103 2.702038212387851 1.573946696392337 1.7154640952735394 +4.982501921568332 3.3989230022869497 2.8967247459487093 2.2219210694672897 1.7213605651882558 +2.3659142765217456 3.735540042422143 3.428394669268777 4.716586112602913 1.8802425198089567 +4.791457044220465 1.7741519634720633 2.1686030753990155 2.952803127120231 3.1175470600184494 +1.3806948954865637 1.9424563323783666 1.266388869644747 1.0427871860305222 0.6046268476456027 +2.4773949190018882 2.465384629658822 1.3264767925347427 4.28044867165927 2.953996294802787 +1.470403009169067 2.3065064347530484 3.6181526398739456 3.775673338271007 0.8508123816075823 +2.275312227041117 1.4742808484593337 1.3165869390986833 3.069873623796297 1.9276061496609163 +2.58539009628184 3.0891649517367425 3.430809013678921 4.3821359898598615 1.0764813610082524 +2.2789489332894743 4.009338656533905 4.387517131582777 4.58109026325069 1.7411832619266878 +3.173740581301904 4.066314891303801 4.046131810520002 1.2973678305859249 2.890050573304625 +3.993541819312318 1.6721755009000652 3.959599447918635 1.4479515937397918 3.4201047539015588 +3.1813053395466593 3.811592800108049 4.844524459779056 2.101706176293681 2.8143053173318964 +3.3491192633602758 4.118945388434415 1.8451631774568327 2.187137146113337 0.8423648010721629 +1.4616791383629875 3.024748501276111 4.284833915230316 4.431706890019434 1.5699546184527255 +2.164048639563338 1.3526860964293448 1.3834610043860285 1.2556462065734157 0.8213682480719231 +3.602270134469988 4.3510006368860115 1.2728638400845007 1.531551170821806 0.7921593907365758 +1.2865689632799366 3.6500013291541284 3.2400535862135986 1.7134835707910305 2.813579314689554 +2.4606721887977376 2.751087895998168 2.0518452298074483 4.868531108566232 2.831618022012833 +2.1641977154205336 3.851613043913342 4.378377314817765 1.8619763984326037 3.029792742551307 +3.957370298139179 4.639761136286628 1.9094256435657369 1.80814589129267 0.6898658160889491 +1.0783696358795636 3.8290638646258137 4.496929875255602 1.5408843032597228 4.0378861008917 +4.8381990697510835 4.128775569003363 3.465854685703775 3.648179405302858 0.7324779906523031 +3.2325023269736044 3.5189908191053236 2.398532610788224 1.153228433239223 1.2778333814488099 +2.513880700379477 1.646223403531558 3.504282042193246 4.178841240631931 1.0990265224150317 +1.5934169176229913 3.6321170686963047 3.84013260931616 1.199848450290347 3.3357755839368144 +1.0441417965505373 4.896930507010612 3.2214356040075 2.860427668579496 3.869665047118497 +3.2770836737915556 2.9621983431030983 1.1741387479750949 3.6853372444109134 2.53086361939641 +4.314872960965806 4.389028658109741 2.7209796454959547 2.3672371002746497 0.3614316750349227 +1.9210820386276843 2.211518561940302 4.112577049675641 1.7524529516108136 2.3779274867708304 +1.0061023465591523 3.3029032489520977 4.991905328522067 3.6099988480020166 2.680477551880702 +2.838899739565873 2.50534221656997 3.9201644711466455 4.501329169351643 0.6700843436365815 +3.1509247939372447 1.468118926123621 2.1469688583702515 4.680804012003208 3.0417357174044746 +3.748677646764258 3.714579778664465 4.379121459571447 3.7661994938957726 0.613869693515394 +4.469602314948336 4.014869889051978 3.7301760440903244 1.8632356198929756 1.9215223461265714 +4.60518658044274 2.981975320840954 3.229374879958962 1.405949711409944 2.441248479486681 +1.2929943688188095 4.613853354329346 4.699054012547465 1.081696455091628 4.910537658966574 +2.5266964205688915 2.9955167031345336 4.107577453980131 1.7326343063513931 2.4207741348200216 +3.4608751756172746 4.841819261007987 1.5500499758331139 4.163389518107226 2.9557655742952718 +2.0685580110331934 4.480415054864225 4.1309237681732895 2.333415152591233 3.0080045915804527 +1.1940237234679874 2.762502688727213 3.405420821047554 4.469264079565641 1.8952278868661239 +3.651250873983437 4.62154561373227 3.4321337407620445 4.759199577768888 1.6439512212151943 +2.9855356390215055 1.4846384730550337 1.020897308474384 2.9480074152621274 2.442630890349513 +1.7282803888841172 1.91125344327253 1.3261193037615255 1.2603118597257028 0.1944473150309694 +4.88482858535133 3.494599568053141 3.1058613562339485 1.68958493556149 1.9845844956289158 +1.2388771850480196 3.7622572186921137 2.396773627196929 2.783371443661097 2.552822881809181 +2.42160668447991 3.7558782207733254 1.949193885329759 1.7886548515432987 1.34389482993718 +4.750456012225998 4.768877981331359 1.4033687170862326 3.269728916871517 1.866451114893794 +4.091614916607591 1.2033561450411123 3.8765254490745114 2.6510349717565433 3.13749352852364 +4.221438312610239 1.2962495969337926 1.0931475984998986 2.9737884507650603 3.4775766041209577 +3.2279403504171813 4.964091364730578 3.7855806849048683 2.2284423362306534 2.3321449743558604 +3.6650095017500917 3.100921898433581 4.287199731931324 4.380039578473999 0.5716765355701008 +4.421564486392988 3.9697899942325123 3.6138727871525833 3.5033646722126557 0.4650937918682984 +2.5127374766172634 4.790604895486242 3.059563867236652 2.3831954396894948 2.3761637628175873 +2.3503594238153305 1.1117313244916645 1.203055551704903 4.692905572051728 3.7031409280432324 +3.0823536729212764 4.8160819075739365 3.090252386463798 2.0624864199664463 2.015469293619246 +1.3744386639222808 1.1390516198339413 2.870934281289613 3.0738809177250697 0.3107963927800824 +2.0351697542879044 1.8820678299891886 3.948315600523677 3.354075183046255 0.6136463745413238 +2.831829259219575 3.784144710310591 3.7140033636835055 2.929302760673672 1.2339610021190628 +3.6703946948133583 2.771217900249664 1.095439367577585 1.4547348297503624 0.968303742128362 +3.7576336945488413 1.1171708778471365 3.6561299320886627 1.8448333550560352 3.2020054928676207 +2.5967472178232938 1.3898054939411302 4.815487825311314 3.851544577451915 1.5446342317653636 +3.7311642515843824 2.0251236550474334 3.1922312137126885 2.7910149441308794 1.7525835249737147 +4.513656281962791 4.146048750380422 2.5085326859888966 4.830472885213598 2.3508597546539707 +3.8837244619216404 1.7121518635577742 1.3103579282503461 4.767708549055836 4.082768774391822 +2.559117167999803 1.0139191815611586 4.06426964260819 3.4887511680640113 1.6488960949179607 +4.299005020288053 3.731930708399712 3.992205181414053 1.3028358911715436 2.748505130885357 +4.657828521814247 4.3996387451407095 4.579927214687526 4.738696082792254 0.3030998420619644 +2.256261071526445 1.3113861880016158 3.892532430714146 4.385666648537185 1.0658188881343775 +3.8955475753744553 1.6441248940118922 4.637671849957776 4.044921352581801 2.328144592222154 +4.165669092152692 4.173478535890372 3.279002499243197 3.469210687223701 0.1903684379993665 +4.714597290642134 3.064204616501703 1.7549462629327257 1.0296449227405455 1.8027362571771208 +3.1875029830325516 3.7596931802111495 4.640855927351325 3.0525605368167272 1.6882191413856 +3.2615048701475993 3.532584434674124 1.5547620033473781 1.42063457151139 0.3024471826200536 +1.9907254447198888 4.638072330118765 3.163335868181554 4.85406736021562 3.14118106924559 +4.238773101875564 1.2992588917344725 3.2359503373797254 3.2934545425562325 2.940076618939443 +4.436801547654244 4.289171328220837 3.2257721626523543 1.4112068685799577 1.8205608718584498 +4.2069595700988565 1.4151932171897212 4.746340807869791 4.325803499690886 2.823262473948523 +2.293912892887965 4.313811687535585 1.0138399509780323 2.0747103315173963 2.281542702849246 +4.919967425282934 1.4291630441349996 2.4869702956056536 3.7207280328097534 3.7024145339970502 +4.103572213295173 3.0176773497577902 3.453869423226135 1.4424697544111411 2.2858032028951967 +4.684115385000436 2.748491926448649 2.6645691251353116 3.7203979906730202 2.204861167193669 +4.65670401103733 2.5895092862495264 1.05788466295605 3.7084904941794337 3.3613993072388655 +1.4031045420699906 3.319692506096292 2.8794700690398987 1.232104851752013 2.5272755257352624 +3.3445812217566577 3.042158352241655 2.1378113142184008 1.8046756636085397 0.44993216567938743 +2.0631173818977864 1.6342792465093328 3.6465738098052936 4.229925487870258 0.7240174905792368 +3.0199353746847195 3.9557794522802756 1.8348414535108941 2.813753087115109 1.3542791898188313 +4.6741011079494905 3.938187790451423 4.161084370699954 3.7779707597143144 0.8296652637018543 +4.068815852944775 4.792678066194244 4.459600346189173 3.979545500310116 0.8685788155500833 +2.418814914664102 4.8388284017161824 2.261003926908628 4.309343798050406 3.1705143912657276 +3.1109000779023597 1.525220337278403 4.347706809197366 4.979075909005056 1.7067534033999263 +2.8705092233637166 3.3087959444767616 3.2700883010826787 4.695903994711714 1.4916586882068137 +3.5704623155468442 2.291567475745449 4.377907350183347 3.6428873910802726 1.4750682531837371 +1.5883296699081577 4.473552508429624 3.9570704874681564 4.680851900939924 2.97462104517753 +2.6436016784061955 2.15621619856436 2.0971052231429748 3.6827880263924198 1.6588955839599049 +4.839025646065479 3.9308922431386155 4.016045085996844 3.3120986249669513 1.1490199726323453 +2.041177689009775 3.192039010760692 4.548950051881137 1.9929914001886933 2.8031065643431616 +3.977205522391805 1.4255837935058189 1.0649303857065742 3.0463355816126776 3.2305943721994583 +1.5019029119041574 3.8548069930068674 3.5041991563748573 2.283548326166348 2.6506878473631166 +2.6515442157949516 4.7746124888546895 4.128744861911834 1.3674241656813657 3.483146692217193 +4.288680001711658 2.508950173179993 4.056670166699629 4.118040788512841 1.7807876391605735 +4.544774447842245 4.770290123875057 4.38534938213324 1.2631758464853742 3.1303074780021904 +4.971659139047633 3.595862894620539 1.8729182561539282 1.008386538532752 1.6248785791414437 +3.9159900325701704 2.752303664474368 2.28395640317102 4.508182199769176 2.5102482661172583 +1.2471437246997286 4.397523608280503 1.1821071570312318 4.208949726531856 4.368829288426311 +1.7601001883069927 4.401769971272582 1.1049102855772523 3.68167706765834 3.6902772648501614 +3.3234400467206915 3.2165404367805626 2.6382474809074052 2.741823587116815 0.14884735934122115 +1.6424382446705974 1.832465680228292 4.008383981557168 2.3676093421170505 1.6517420633060362 +3.4253928301982666 1.9707372540085046 2.742668526298167 2.0000173817834734 1.6332646961803077 +3.236771349571015 2.8113764424158623 3.0042657410894664 3.6244055136224866 0.7520200559232758 +1.4095121753521473 3.451582248168817 4.1728453951036055 1.5651672552101488 3.3121043859715047 +2.016421072089124 3.821982958576623 1.1112662710951997 4.935338718632428 4.2288986521255945 +2.382536629818087 1.0211489222668821 4.787918740682035 3.157222779634381 2.1242753605991522 +1.0462921239027332 2.788470178437383 1.4119546014954731 2.3645372812355663 1.9855976771347599 +2.0253426493359648 3.4801886264990403 4.089712816932096 4.308264527100249 1.4711701693838848 +3.3774418056110918 3.9859827410675432 4.418999362228533 4.736803969839539 0.686528833149052 +2.3909216660614474 3.7270505111348 1.382987689316403 1.5979242481969718 1.353306327104278 +2.087947622429469 4.807603958412706 2.7633988021507285 3.9482238169105397 2.9665368532102128 +2.4878963604497146 3.685256120145256 1.890200342504278 3.0977829395557177 1.7005664123578543 +4.10883379329678 2.6827334605146165 3.6919577065433664 2.1158888540771237 2.1255011613442267 +2.7671580087972303 4.982765613533914 3.443923479862905 2.1934340581099283 2.5441385284773936 +4.011501671422051 2.2361880640642067 3.055512704504662 2.0335277492219546 2.0484608010147816 +4.0417609258224 1.151286013209801 3.7407041568495205 3.9104628553347682 2.8954556180598274 +4.313882260974928 1.6885802154663776 3.315771478107673 4.743301604358351 2.988319442680895 +4.501367415208515 4.5014562028008545 3.6328064729369065 2.4815252642833068 1.1512812120772795 +4.8165828283851715 3.2624703689535357 4.967787457565112 3.958219739714252 1.8532383854990817 +2.6594139913634103 2.3864252916534907 2.0575317601377923 2.83701078252261 0.8258997375634066 +1.9708441216203076 2.7260239947182354 2.8069374639392684 3.574063852547985 1.0764662265171416 +4.861412559250717 1.8832273510012238 3.7953828775452902 3.950357879077158 2.982214678009597 +4.807074529249791 3.497386553559833 3.2645361637610506 2.9707620066436196 1.3422316674318617 +3.936859027276469 4.151572271421772 4.944798888294346 1.3245429174473156 3.626617580013776 +3.923872677510739 1.7678508297070228 1.7952597206836898 2.7913334763009274 2.3749932915350267 +1.1923870316415868 3.469153879244096 4.3686529404125665 3.684051332884711 2.377466432859062 +3.0994698656420447 3.850850775091645 3.0509392907574657 3.926221624380828 1.1535564288921747 +4.880219851241412 3.5884928379695444 4.031513296715367 2.6489772905012066 1.8920794077667198 +3.5628910570877474 4.129194677873502 3.73033758169598 1.5397081636183092 2.262643816039628 +1.9797130450111489 4.491134275803782 4.615819440542387 4.6835994828060254 2.512335712560176 +3.873156327533191 4.30080974855843 1.9144735206939734 2.32045341243702 0.5896669577094226 +1.4929714036576156 3.254936401863805 1.3725585417634223 3.5068906093444627 2.767651356223991 +1.5998699406015153 2.079985114395451 4.799126070053524 4.854366102634211 0.4832825688007964 +2.249095989628597 1.005203286197577 1.7587644914737082 1.8117059582350556 1.2450188177500667 +2.0932223233325047 3.2064003416824995 2.3420721242682485 2.322538168581578 1.113349395276429 +2.5632685627039624 1.6502784800683377 3.5117423013496603 4.47365954912652 1.3262110248982297 +3.94598638175338 1.7650535693137956 2.5370478909461047 4.720045019482241 3.0857647991337016 +3.574074732173238 2.568277809594765 4.3967221091406605 4.483163892992228 1.009504646578592 +1.8398951520112128 3.8809851865763703 4.9877305670172305 2.022781617608775 3.5995792534405324 +1.8299044061561003 2.0152125397687017 4.85740829216401 1.2007885444737814 3.661312207881368 +1.3232680034731796 1.8497660189583098 3.981663429732288 4.297174768743005 0.6137976583159275 +1.5339116081392743 2.0716586012333744 1.1053631114952323 3.4918897057748928 2.4463607693440927 +1.8831524869751952 4.216499458900696 2.0313042857040977 3.6810082821361325 2.8576268768398947 +3.4143607383940267 4.140295491317477 1.938616704308291 2.6505779984586075 1.0167940547968528 +4.123400967006312 4.534738591111067 1.5184616099530635 2.2466771407880723 0.8363590738154627 +4.433756822522822 2.7916363429679025 3.786489744289431 2.5411219070281885 2.0609465590981304 +2.8991337713920196 4.6630671660672025 2.813622595777275 2.1014161815225987 1.9022878324154362 +3.6271070594287274 3.6864650482012924 3.6522031826244072 3.3622568291471144 0.2959598937793822 +2.3036177717124904 3.0222861369060237 3.1275915769265104 3.9695486691978252 1.1069670114126766 +3.9220940954531986 2.578916012988352 1.7431029498669157 1.0214474529563837 1.5247668731432777 +2.6384155931770206 4.253536349915705 2.407936251368616 3.076786369828341 1.748134874605426 +2.6872730804749834 2.815164153416061 4.530349344606001 2.597598642500505 1.9369773883624217 +4.481726942764646 1.5899799243309802 2.0679504027666793 4.694197863413327 3.906325196802355 +2.1593507412770756 1.62146970122087 3.9705398234664 3.9226467126885955 0.5400090400279614 +1.1905794103333123 4.672920486003699 1.0046926342174092 2.5057362394745257 3.792074797809831 +2.0150380584846634 1.142666152186686 1.7240914960260634 4.643097090768215 3.0465761774546114 +2.586985356696114 3.3417382707222796 2.8787331710208597 3.0330290610844055 0.7703630202193578 +1.5612495872181227 4.757524565968573 1.286036609252768 3.1056804739319523 3.677944743202485 +4.744443715556027 1.8370777843607238 1.511651823164034 4.198186145825053 3.958565816645068 +2.3315992513211037 2.0462163261361073 4.298872611627319 4.2311596053666465 0.29330609472699865 +2.381769849542704 3.9388865129191486 1.8908276516761933 1.0217522323716892 1.7832286414826033 +2.915430912852202 2.1656150748954563 2.1827678148584964 3.118136289635991 1.1988068962340654 +4.604670071142347 3.6061338790858177 4.16810400009186 4.722274003618853 1.1420065322299433 +4.68470688438264 1.2536249863319862 3.099844650395586 1.454790551540989 3.8050658311373784 +4.26876972001971 4.229246732183186 4.151589958169778 1.0673398278708994 3.0845033526997785 +3.875072086979164 1.7774471488028976 4.6481763703704235 1.488247761358473 3.792779876991438 +4.463822417513217 3.2007353455905467 3.4903167275126354 1.000575392394992 2.79180960436982 +1.9369230846239982 4.081094993403746 2.4847772243715314 3.045058443567901 2.2161652057065506 +4.873778798056774 3.7318882199918564 4.922111932716546 1.592885995266136 3.5196106936515 +2.852958807567482 4.3440108781516455 2.951884857144122 3.5163113197845397 1.5943065918831598 +4.161417483138801 3.9922610083370715 4.529849944047882 4.836024030591007 0.3497949173985597 +1.623571657433502 1.0476446575147502 3.6142305052678885 4.395543530215681 0.9706399704259474 +1.6818375887967174 2.3820412087281455 1.3110582779929048 2.4915166111786067 1.3725039110154262 +2.7637367733930303 1.952904306280283 4.088262544077505 3.4422349013728235 1.036726099248356 +4.222182143846758 1.321948844781136 1.7692351122719554 4.253367968570225 3.818673753641394 +4.451524568248512 2.1800313776388096 2.118353009906971 1.5751899454488796 2.335531509009834 +2.922231231341485 1.3538939688693463 2.528074443240474 4.103373152788601 2.22289176370839 +1.0132805262491544 3.74694420195089 3.23224171265535 1.8940100442197134 3.043646019210373 +2.852952484707379 2.0181505685767775 3.576714695205877 3.4881067948799878 0.839491274031771 +4.164227532839101 1.1854703701347287 3.852444013171534 4.972414636480686 3.1823463720088823 +3.6047661575599275 2.1465637725966173 4.107156998614664 4.443213741501927 1.4964251835466689 +4.860054985682353 3.8137191096842815 3.1433395597527425 4.0900838800295 1.4110788685884825 +4.24272395747536 3.532886125921063 1.1188503118896782 4.617212404403981 3.569650834107834 +2.682121003599533 2.6877291343172733 3.702363580525057 3.436338928685873 0.26608375846020027 +1.2408529220231554 3.6438133832136512 2.1116174539300845 3.016839109164326 2.5678094211116718 +2.454299917145281 4.226618345444738 4.9152599759706925 4.493306883021276 1.8218553795346755 +1.9269819166952096 3.2302439636017186 1.2827946987589276 4.74010352835476 3.694790427900918 +4.966924484766067 1.5516616045321587 1.2951504702638124 4.707655961167088 4.827961709308455 +1.2306000995780728 1.950626663183146 4.471650057512888 2.7120861933264186 1.901184694985669 +4.075033980049749 3.0768849953358877 4.412651656222464 1.1575338740827075 3.404716312894183 +1.0895377398265516 3.5235202064738282 3.864579441733016 3.7631180951481458 2.4360962733022635 +1.053501492746037 2.2984804404940133 3.7270098395987348 1.486531750198306 2.563145460058608 +1.8053966578440988 2.1087916149523664 1.1239068105620769 4.744335207149351 3.633118532998095 +2.74239805699857 1.925352972017572 3.174989777679616 3.19672446255606 0.8173341222647471 +4.4753436732114 2.4105093886030553 2.506193218278829 3.8504302824240915 2.4638412910566965 +2.0761428482439586 2.0100791215112372 1.4214184668117151 1.108972965342375 0.3193534208024757 +3.3662158302212775 3.203799375985109 2.4636307826247075 4.5790596936886825 2.1216546802842267 +3.709629188675555 2.5581482751599416 4.263683561601071 4.238413308768262 1.1517581690046679 +2.842741643406482 3.8011291776595924 4.825300724751914 1.5729702717395666 3.3905987732852227 +2.4216233055253524 2.2057162329755227 4.201780119972862 1.1966799778812693 3.0128462834960477 +4.283011404463812 2.196003533853285 4.606371821646391 2.8443480428798638 2.7313604026069056 +2.930061801482414 2.7378497816408642 3.858644122647459 1.8848893436563676 1.9830918758750788 +1.095103347574288 4.082032816059726 2.1776731305722214 1.878481101075503 3.001876666390721 +3.6811065556395866 4.332488786903741 4.358567419405712 2.1622387877478975 2.2908859136688924 +2.781017713139022 2.069974535127227 1.9752079936570923 4.009043416555513 2.154546107288844 +3.3298660037120964 3.696942749891798 2.4908175174151377 3.3855140745663412 0.9670714900999273 +1.9898131411639883 1.337473297581603 1.1169334565032458 3.4360240183353405 2.409092838705846 +3.9090445609929216 3.7318169299236845 4.9162897726047365 3.9868300579950313 0.9462055771854065 +3.01255982486227 4.947594039394001 4.734592901443666 2.8040155836640968 2.733401944707984 +3.4783604572005817 1.5659000721280263 2.844552333994844 2.820445763811318 1.9126123107409616 +3.4876441576223103 1.7652473235271007 3.848956347266578 1.116861040628279 3.2297051906723966 +1.2321396984876278 2.4925516902099356 4.295807620051535 4.226843893478476 1.2622972646964892 +2.492872807086837 2.7338288000953304 2.6599163514813697 4.518369364865633 1.8740083760548554 +3.858875271102019 4.805488881651779 1.1392492358995567 2.7145936842405534 1.8378758006450957 +2.138968472261698 3.078766818506791 3.6773773933128253 2.531487177412323 1.4819869495044524 +1.126825421563546 3.8622984164154066 2.64602911697001 2.635542468488424 2.7354930954692946 +4.094365732603532 4.810240903457202 2.618378387383328 4.830086716009719 2.324678685573581 +2.638772796086167 2.4927448868572752 3.7224118941091837 1.4443794506897136 2.28270803291736 +1.704080079867735 2.5159438716632407 2.7685402534931884 4.524723918218237 1.9347619700303391 +1.863007168526138 1.440783829452816 3.6883717025337948 2.98537468007336 0.8200471703789134 +1.558673294262682 1.3641962844035982 4.084835929208971 2.616976939752114 1.4806860978252736 +1.6558741914067552 4.642599719022039 3.6599798399772046 2.8751437617146145 3.088121928786394 +1.201373079116785 4.869190414458339 1.7660856451418399 4.067222236790413 4.3299091929110975 +1.4785073456810855 4.791022065939675 3.6772015590593736 1.6244995679466103 3.8969653881255018 +1.7629148387558713 2.3954077922602086 3.390229389677086 1.7763267685986888 1.7334154166143672 +4.712787764163958 2.4636254988204156 3.67827543501394 1.9029396384853539 2.865405396498214 +2.195188669443184 1.2947956875217184 2.919692959284833 2.925717222544271 0.9004131349781874 +3.918425585919977 2.44866554701362 2.463916634006445 3.1421681722792796 1.6187092762863513 +2.9951265538946426 2.7830215977748427 3.5103614451623923 3.546618528690498 0.21518152457064305 +3.0654024359527825 1.2946140870636778 1.3375605394537766 1.4637172960547504 1.7752765710720904 +3.322984052844325 1.8109366456123883 3.5627633093660878 1.4631342963959768 2.587417506670051 +1.969391963647713 3.4188344307441065 1.9607126438008642 3.2708730630004608 1.9538177472476144 +2.1673519632175022 4.17650221389863 2.3972766957840634 1.1539856436435043 2.3627224488172147 +4.884604062510631 4.167954471043199 4.3614116592085725 2.547113297480699 1.950708892254014 +4.108502748504973 2.8141892780315167 1.0154428540184046 3.2047570058864365 2.5432938908861247 +4.081460232309713 3.449375572742992 3.521929807370909 1.5376935398027523 2.082480391838633 +4.001540792287734 2.9111107173620825 2.8776881931235687 4.188242412458997 1.7048724615408208 +1.4578349492608491 1.1201615852555227 4.042933433249967 3.192731863310598 0.9148038097242719 +3.572526202937172 3.902200843067737 4.804986050547626 3.074810513543821 1.761304277287608 +4.756641919788114 3.1568897327760372 4.930516754271147 4.5894349076004115 1.6357089857240017 +1.4879413774674788 1.5589669053224333 2.246475493303946 4.698697904520932 2.4532507779845756 +2.2919715261254034 2.794866621316111 4.629715083477009 2.653531418791959 2.0391678090179104 +3.4986059155504607 4.643004367653018 4.744805850373879 3.1505834348405166 1.9624456495311553 +3.2689359706101464 3.6379371853970843 3.8497322720120026 4.935282517442641 1.1465518879966814 +3.2968105295367525 3.9743364546289563 2.378370577518991 4.198756263190609 1.9423813795879978 +2.8365485348828727 1.9025632284688836 3.597286705088839 4.068909954678016 1.0463063806315476 +3.1952724200999167 3.239090298587414 2.1720631958189687 4.348604751747481 2.176982579433941 +3.443585140129086 2.1384075864251613 1.7948212544165725 4.922762088520246 3.389321806548582 +4.53615715147124 1.8567177855141352 2.921876490246811 2.133601247991604 2.7929864255654944 +3.1827666139944957 3.661006777221216 3.679412271463221 1.449448376474705 2.2806693374260707 +2.7070116231073773 1.4962856904336546 4.774472212783598 2.612273940350866 2.4780957716278333 +2.9454947447730624 2.1776254005305433 2.956716220195493 3.7594298965694537 1.1108431824813239 +1.9499202289389008 4.367665440966201 2.683421811342533 3.21371293765802 2.4752172811553095 +3.462549161499925 2.833004293543859 4.422378054181129 2.024059227406898 2.479568497870052 +1.826420192444775 4.502895634623021 1.1687375155839215 3.4944306799294815 3.545753726257212 +2.2160604868770144 3.9169892571188765 2.6901972134996224 1.0208030803560453 2.383282495469366 +1.3829724745224325 2.881600270625386 3.3647509183640154 1.271509563419552 2.5744018026139837 +1.4957566849787414 1.262562437207142 3.9964686233306748 2.622754374357641 1.3933665687913244 +4.51584100097417 1.0144864249496837 4.27415240945575 3.7929718759474267 3.5342635120877683 +2.5612241165776153 4.839282037197929 1.1794814503756768 4.292923594860435 3.857858198113922 +2.9382498306470404 2.247128666117082 1.2746996791894318 3.2539733839524185 2.0964667568142943 +4.547707968251272 2.300603500173138 2.548620802379109 1.3337644139471285 2.554477350647429 +3.436977446276904 3.666179101375391 1.343404448532632 2.88485366313163 1.558396316694747 +2.7683650459651354 4.850847488219749 1.3776833812617268 1.965006459111914 2.163719371839647 +4.732525469899684 1.7657318197974385 3.5997547220594943 4.918531464689201 3.246696268391613 +2.841226906744851 1.794035939901271 4.8960421822873155 1.6649893271398377 3.3965146067396 +1.4846745977725258 4.374215899611338 4.688124605432485 3.374231288839037 3.1742344876239477 +4.741715563385056 2.4129936229646947 1.3515333335553956 4.544837066231641 3.952231598087239 +2.7387546474720326 1.8884871987665957 3.260965308727216 4.674905902725502 1.6499038571032796 +3.6542663604994816 1.005614996267505 3.052382806305222 1.8956392115479619 2.890226598946847 +2.804396171201179 3.1416168258656354 4.154715688772958 3.751034216647572 0.5260004761116128 +3.3247646937875244 3.417065097662972 2.76667472146105 4.680514316501488 1.9160640281838488 +4.55123094773975 4.986322377577297 2.16691746459603 2.7081070596234493 0.6943995464313202 +4.918339369552586 4.851826554129721 4.711895883747188 2.572702239312489 2.1402274185247894 +1.7027230006430547 4.596434754487868 3.718818113732907 1.0082708520252903 3.9649254939141394 +1.0199926318849655 4.484513793478611 3.184318578622689 4.940679872214819 3.884290395008952 +1.187368528097442 2.8973284574780744 4.958519556711348 3.1143665916504175 2.514928054364665 +1.8087006934109158 3.0744184811855133 1.0324466499805398 1.1044099192968169 1.2677618981574215 +1.5166852639692991 4.613894725799742 2.5322449349605702 3.8881116394577884 3.3809881648441436 +3.61678536715231 1.7143175510587016 1.0183777284200826 2.4437556930380553 2.3772013236767426 +4.454275334481205 3.0328463485886585 1.3373402581512566 4.231107407615438 3.2240267798598645 +2.6235735326339764 3.8061946102417585 4.093598292983549 1.5032566273263859 2.8475362259401926 +1.9517072026015039 3.662742523195168 1.1537765278390157 2.266748982330904 2.041163774119255 +3.2747711785090425 3.578649801408198 3.0554332957770796 2.2724569202394505 0.8398775042261398 +3.5655764211974947 4.524498491757992 3.7184785033524097 3.9305723425782952 0.9820974157615969 +1.4224418852228693 4.795508967433577 3.9812322228048815 4.553489800725283 3.4212658880275266 +2.0808828880838335 3.1567463056367133 3.565641427534952 2.0214705484268065 1.8820057909353483 +3.011036978696261 3.2308654877823995 3.342582549801703 4.3631330109629065 1.0439577659960098 +3.5399133399274265 4.20875278080241 2.6462927411156385 2.5671593042016805 0.6735044903397273 +4.971976238822075 4.696213061781146 1.1524994007804032 1.4176756775524262 0.3825752051223122 +4.298299747576383 1.6581467608708569 4.610707304534264 4.694627354751402 2.6414863936879476 +3.5822996867683337 1.3740979142315162 3.4312646184535183 3.221665064904308 2.218126921770432 +1.0875800855736713 4.097415111656572 3.6763634561747613 4.067448689701931 3.0351366598752114 +1.8691839531411145 2.977725147261915 3.013688511466213 2.162882630656217 1.3974026713455372 +4.9025515911557855 3.954962413858198 4.825247309557834 4.9581415366012145 0.9568626466285411 +4.998044084237822 1.348852313743476 1.1224539897715382 2.467473881510925 3.8891746022798066 +3.0249117114887834 1.7574918151218757 4.361021098560602 4.9345623278960105 1.391151586080494 +2.7063310028512175 3.7579286952442894 3.41612102611845 2.693432532949935 1.2759844688728044 +3.4861385970156653 1.9825641572517125 4.548669238396892 2.6122911536116145 2.4515905414950887 +3.2454450977469556 4.231223185517454 3.795618361678337 4.292712855593415 1.104020549722308 +2.1616916983238204 1.07834488636046 4.0058381864173995 2.110967731809595 2.182698869458809 +4.901625408137976 2.467049351354452 3.682043760366903 1.8236637363202708 3.06279886542345 +3.6406676983975714 1.032873244724981 1.1855477371588519 1.7960516738760308 2.6783030017816687 +4.876281623041229 4.707079976627872 2.5348773144904273 4.613507230473564 2.08550510063367 +1.1440952066517993 3.90237127806815 1.4901441951944507 2.2428919214270735 2.8591460308099688 +1.199367627440047 4.699647384992955 1.9908382288325708 2.306933207336775 3.514523355530622 +4.134098278436304 1.4151859964940958 4.214120670690203 1.4489896904772452 3.8779418941791355 +3.824422482792719 3.8193838838915384 4.597324469769498 4.480556561384136 0.1168765669737927 +3.0427970377364235 3.3142037072133324 1.1728395713119628 2.0696162909516675 0.9369472050891114 +2.8870366236319818 2.457312148062564 1.9299794167759083 1.9483431776369624 0.4301166732601437 +4.628598107551692 3.8870878110702147 3.715082738245867 1.8911878648222618 1.968865162749587 +3.9506606392108803 1.6277048694789769 3.17661601857833 3.3535122521458223 2.32968147727991 +4.840582313083842 2.619214011081724 1.5706760658520529 3.2240509306676146 2.7691380566421113 +2.224612217545568 3.4868330352511854 4.4159060336363005 1.0638487341269536 3.5818276803670126 +3.168079166051192 4.963933229437213 4.9873186251694435 3.075071284464805 2.6233150228312354 +4.563834560239396 3.769647140560014 2.7544019324750004 1.2183175010079892 1.7292452221048136 +3.632668009050022 1.3784273834257874 2.916299747842867 1.0776824621928216 2.9089713510631006 +2.438487932905314 2.4166886761622215 1.4550615315804074 2.934634839828055 1.4797338889386293 +2.1258335163256215 4.070864688662877 4.208235364632808 4.925343307925101 2.0730147282874145 +4.086297667563262 1.676378551271024 4.363098703016174 1.0907848180937538 4.0639572227727525 +2.1264650500882993 2.4395886191585725 3.737897323890766 3.450350984113247 0.4251226493928011 +4.761193255290847 2.7138439258011386 3.19750829700844 4.859169605649805 2.6368082185850548 +1.1555838700808927 2.0866683404600104 1.4399259262421436 2.2068478557748796 1.2062700928810997 +2.0344469394886198 2.5993026560843235 4.995680848174937 1.34483767364142 3.694281779400268 +3.3649843513895035 1.9570289420912048 1.7441682015051811 4.316239526866655 2.932215772640047 +4.535609537329375 4.874103167485597 1.6394709067100637 3.4611224435146766 1.8528335756885843 +4.930907306090212 2.7316551001397107 2.7829942415386015 3.6929884355887777 2.380083968809331 +1.8385084688723823 2.147865272042644 1.8432786194379678 3.7647232028084483 1.946188818853783 +1.1899841743057227 3.5275427729604782 4.7699804030309245 3.9674911404791877 2.471471063689724 +4.476519035050309 2.7104360282369697 3.0041932524367865 1.2392221182835637 2.496832451597215 +2.1134040166693033 2.4136455427492582 2.825572016302218 1.6210412074124205 1.2413860976938358 +1.7508162175867223 2.1757465983286393 1.9064705136667555 1.3671184226502286 0.6866341868574345 +2.5950503331521304 4.223865287145596 3.8520686080018485 3.389220438843686 1.693300499629584 +3.7640510942236847 3.4947776576926857 1.0309473955452138 3.753603987336917 2.7359398934274908 +1.073154494567576 3.9662091505089143 4.055354926789216 2.4516613042261355 3.307808712322004 +1.727950917145559 2.0927829237189863 1.447674980660329 2.550204270927877 1.1613239121443493 +1.0088378782076584 4.051653055384042 4.302869492240279 4.762430937834772 3.077323662654263 +3.9161704439259073 1.6353252151834252 2.6595769372107956 1.0594804141562837 2.7861377999963466 +1.6010381135161222 4.4360204951108795 2.690953581978105 3.640958976593515 2.9899222989487644 +4.241975819492289 2.9953865749578594 2.8020189396384403 3.380484852574552 1.374266188559527 +2.7482765543814 2.5658197381250165 4.177010500156338 2.7315899327822843 1.4568909040783893 +2.630788930226896 2.669123716817618 3.696506879697982 4.067969317390046 0.37343526678540573 +1.7834826167707458 4.987595533953449 2.739556751280097 1.6458747317726798 3.385628441789039 +1.1748449865637784 2.339785851003186 2.2027405763443157 4.150758964126507 2.269771542860286 +4.3479178952814275 2.2048884062163268 3.0688127493878135 4.964620362528674 2.8612343310266413 +4.517835024358639 1.7791816542820098 2.6841530485663454 2.757377280720482 2.739632104791927 +2.136703311545104 4.537375771910765 3.644517403375288 3.293152328145385 2.426249302534558 +4.675337314786095 4.820861047203748 3.522813051086566 3.248225732758655 0.31076575114268684 +1.6865221421093484 4.122611195104964 3.8950226673755375 1.4861807825335984 3.4259376964991555 +3.133113382657981 1.7394654978957336 3.4217157112125585 4.080241216400226 1.5413988022847815 +1.3346020397293583 2.0060982019357554 3.4543915333013064 4.301946431672259 1.081321599530184 +3.7252669511453393 1.8176522230870837 2.1078474051100935 1.6280574958280316 1.9670262600569575 +3.9630744605083374 2.356812808738782 4.622064462041585 2.2026110504989367 2.9041059389372874 +3.8510591474740505 2.6457532462158384 2.8677451334244477 4.940369920996378 2.397610440765026 +4.253905638111071 1.6023180159858148 1.2341629611005693 3.8607142040543234 3.7322497705365034 +3.9589882616065175 1.4978250381573956 1.3818163964340116 2.5329128069707276 2.7170475444513267 +3.5633750596570053 4.457174374514983 4.327649297311847 1.1168183281656736 3.332913549384194 +2.808763537623946 4.748511690267481 4.129120353812625 1.5684803706164097 3.2123978612910205 +4.54292552713467 2.806520667138043 1.8356327088978297 3.6951631787556045 2.5442003470932435 +4.027347091387339 3.3784017603448557 4.6328405897894696 2.425470470066955 2.3007852764057812 +1.8223308885499732 1.5780306150574956 1.6771030361323538 1.5722862906725568 0.2658367426773116 +4.8487542983769725 3.1015328699593137 4.621322482170669 1.0788656967393462 3.9499092137124197 +2.101533433998039 2.486398782569279 2.400679057716054 3.3834227674201958 1.0554177066422188 +4.971167299298535 1.7659103875385127 4.561066098177993 3.691354121457697 3.3211550389640228 +2.1594807720968325 3.263384309036391 1.4810639975298474 4.451303562031045 3.168742035792111 +2.9853172333637223 4.796430063423671 1.7513749119136968 3.5238965282268793 2.5341591432870296 +2.935402866220481 3.0715067591395293 4.4133417277041795 4.145201551504519 0.3007048781780984 +3.9527759917041463 2.037160779915234 3.100120984462907 3.6246050572757462 1.9861181189122221 +4.702391836204722 4.157103197417593 4.461391773109863 3.7465020959873963 0.8991145366673732 +2.535728403966245 2.244191192596344 1.5481332253203504 1.8631572473344717 0.4292249760432075 +3.1605938825352884 3.902639134422669 4.133265764041158 3.7569502342700005 0.8320123399298555 +2.404229417499419 3.5751392120839207 2.504891795044139 3.9639354957973687 1.8707854681287215 +2.8841863426243046 2.072423728510235 3.3030606890320526 4.877469159031398 1.7713612201013629 +4.206605058384431 4.53860802767082 2.849622263419397 2.0113363756496976 0.9016369564568725 +1.2273981244190608 2.477987549692777 1.408507998477703 4.654413824878159 3.478487968135993 +3.325484541134794 3.8998113180757166 3.3016140493291446 2.107871802671004 1.3247157424020344 +3.362387976447427 3.6548530368149885 1.324128458475557 2.985708919492583 1.68712342167648 +2.084695669166822 3.4477685229601884 3.275236795108953 3.123302994261509 1.3715143034574386 +4.693621159642348 3.7020121595036932 4.110106095736753 4.7560707200574015 1.1834520290361155 +2.6998164207505453 4.365329671615912 2.3628769262913107 1.3304263137920933 1.959563384036896 +4.038062838839291 2.9739284057180786 4.543751809153528 4.057169093480299 1.170104623931612 +1.8377186782487427 4.385526439342624 2.5015053381693395 2.019336111186952 2.5930313439947095 +2.2957989602628324 1.4473999563158015 3.7290425633433664 2.899257349354277 1.186728431973058 +3.826463220564252 4.198581729765999 4.62216414371083 1.2008947000692958 3.441446903685393 +3.325984210254984 4.366549839559898 4.544057372938543 2.423919115252234 2.3617288287599547 +2.6970445188446224 4.469211179140457 2.950091232045349 2.349038101926599 1.8713202657721737 +3.443050585823381 4.5354761271619415 1.701800139860076 1.3404442500337952 1.150639666655461 +2.3413282251232586 2.830496175369272 4.012849541510409 1.5131621366305272 2.5471007843552256 +2.70293796726862 3.946810538637338 1.147673019572697 1.9424467996887276 1.4761044459533856 +1.6315927167457338 3.606937902322714 2.257390603101286 4.533596871646495 3.013818770123157 +4.268064864738717 1.678314286131342 3.7852334676271195 1.0459050340797234 3.7697119686042946 +2.4298406457954314 1.070579845069381 4.765113894613069 3.464977103958813 1.8809427420320834 +2.357134612214542 4.540016096392775 3.6017203727587304 2.3436150139051475 2.5194842067265015 +4.899742067488779 3.9599293278094434 2.790748646066481 4.298904767926109 1.7770151585077294 +2.7622400118859556 1.4703320013225438 4.591394761881798 2.119518438768158 2.78912152200791 +4.657840086003322 4.291822978746987 1.0097900982856047 4.233036692406125 3.2439616411594367 +2.487044133457541 2.1066248254819353 4.301270921654541 3.359527047274625 1.015677298561277 +1.3315086879551234 4.590780376334278 1.3211655427097093 1.071872811190726 3.26879164289468 +4.718730489484308 2.081116358384959 1.0026512497827995 3.5649764508998767 3.677297749823183 +1.8812565370704242 3.1506464900469613 4.16332377145792 3.4853940161089163 1.4390759555719548 +3.0670922010641317 3.233546253626308 4.141807361696795 3.4762934146556117 0.6860144060591635 +2.588595804442653 3.3410337205845675 4.951260212263516 1.0569488976008414 3.966336273333076 +3.734673252964951 4.104095787825456 4.382385178865304 4.763834228627925 0.5310144883405413 +2.374930885040209 4.749231563807224 1.2110409509951832 1.274834813785381 2.37515754637944 +1.579873204442809 3.588911530172839 1.537276669264131 3.57151729957671 2.859085506987617 +3.3082856699890475 3.617564002924091 3.1434893163642625 1.8788303361958487 1.3019275799151395 +4.200794726589109 4.500970611966793 3.0849310536824124 3.0188694329552725 0.30735923590380876 +2.9422089408309975 4.9166626708092265 2.9935537790860107 4.649486029719421 2.5769321198884483 +2.770734678476212 2.1688685032832087 4.789791261798396 1.9565954869849675 2.8964186836958015 +4.426810996965838 2.300716242210307 1.1858275749697764 2.8449607984214706 2.6968503776368813 +3.322122916063667 2.8824738830265653 3.094119340290663 2.384452238274646 0.8348165474727189 +3.489347588811313 3.4576272102807075 3.211644992724806 3.894691467679673 0.6837826184997646 +4.386000125845131 1.262631535308134 4.317050290532931 3.9846795639991615 3.141003287519714 +1.949478396621338 1.7360539986962857 2.6177593094131053 3.3525608018078263 0.7651687440396271 +1.0711031430657525 1.4117255136608469 2.2469147887839784 3.6997078323425763 1.4921900772897787 +1.6702278666148982 4.239933309557868 4.468536034695656 4.093192545346059 2.5969730068847183 +1.6146903405154176 2.6076685208908104 1.9271257465147555 3.6217747294123575 1.9641387023164893 +2.9482615376352443 4.831457454238604 1.5482438779375807 3.8463118732590194 2.971118202197998 +3.1767889393840756 3.2738783911042666 4.225816769988084 1.5443063367152687 2.683267516552587 +2.8781102977443935 3.729840250100758 3.958438027327499 2.419146799495144 1.7592218154123187 +3.740262603463981 2.4493403243592424 3.0581421743776573 1.6060057592543564 1.9429823722350454 +2.7947963762864854 2.746559135846801 2.274435290764764 4.626991670661091 2.353050860469478 +4.3944655309009315 3.427379281651215 4.1664872591542945 4.101962842388456 0.9692364076152198 +2.24802290446724 4.713029913949148 2.2237659510122993 3.404410462736623 2.7331631893942423 +4.557341276027388 2.7621127062863575 3.423377862252634 4.407966071872368 2.0475008083360104 +3.8032992391246707 1.4804391008854703 2.085821355379407 3.805692832376757 2.890265925344878 +1.2233243802726221 1.3648709301935744 2.0002488515312806 3.1047943560066096 1.113578105590795 +2.1419896427293694 2.58383167076795 2.440318321484008 2.7111524922385253 0.5182427286412545 +2.9641249571411 1.333644236566066 1.7814616252330024 2.0584712847641833 1.6538445306740484 +2.657458673609777 1.1123393265875747 1.1729793726271986 2.2421088343223365 1.8789442786859998 +4.534770601096716 4.595649752236001 3.8913166797398206 2.9193886547636265 0.9738328176733239 +3.166141022131049 2.6610120445619696 2.5507031794820025 4.101618493374673 1.6311019572199599 +4.862298717483043 4.810150008997751 2.0093089622344915 4.271451031525846 2.2627430763244982 +2.1538403378236755 3.455763822646934 1.4942607974561515 1.0368046293034618 1.3799532260606802 +4.642340980214756 3.441064450737033 2.289697265760918 3.1002712797357983 1.4491706360554624 +3.879138405233069 2.4219113903788076 4.101108346515094 3.042453014795758 1.8011834121484793 +1.9135090412366114 3.1582521972215236 1.1622435758994087 4.08297831472874 3.1749136900041424 +3.2278044395514645 2.6614229903896756 4.133579278302825 3.102531325071729 1.176370616692138 +4.757296556359973 4.041229138730785 2.6878568169863883 4.877833372039428 2.3040724507428387 +3.950213034114973 3.260923442282706 1.0314102258951312 3.144837637524487 2.2229924798871115 +3.342546226716661 1.4829344892102352 2.0348872872012076 4.665537573677819 3.2215643318132177 +4.919534049471461 4.005163942163197 2.2548048110200893 4.60643424855391 2.523139652221922 +4.2758691752423985 1.185049145493279 3.2478948609607183 2.7901810274395458 3.124527229789332 +2.020082094663189 2.695650665597037 2.197738876613149 1.167982805927351 1.2315804720552594 +2.156703225777847 2.7985820380082087 4.6539878247774435 2.2198152815030316 2.517380459926802 +2.2671372605942866 2.1477926567157586 3.242915419779575 4.614630522688962 1.3768970397326858 +1.4147385010416138 3.4666244386172362 4.9322389875464605 1.2081027526234056 4.25199089804852 +2.0604019980430577 2.585116121224199 3.7301921049290336 2.645760478474715 1.2047061316022727 +2.0589545994429046 2.4668027592153035 1.2367569019507783 1.474046120522062 0.4718541031716294 +1.8995621495293782 2.045907335152531 1.5169514102066972 2.9398024818166637 1.4303573278508783 +4.4474747005383755 2.1930282615455314 3.6268777710839935 3.351567253095716 2.2711945375952474 +4.339543122992354 2.280374928682399 1.1013399217859652 3.9380471063830638 3.505293326328414 +4.170081988591802 4.400679029524946 1.1974470258679126 3.162942645160948 1.9789765093975307 +4.051284415748411 1.4020404392655879 3.7215804729694058 4.523380789694746 2.7679193259254102 +2.7449515619825395 1.9685978863189062 3.870219177935509 2.766980946470673 1.3490217289139907 +2.1228115402948764 2.9562765252229073 2.5707066462430266 4.438953645768561 2.0457298776566875 +1.575424288830778 4.917630332761494 1.460615771482897 3.3303782238001207 3.8296674618277664 +2.4653474227929224 3.9457763754659942 3.119978582173152 1.6608860583865428 2.0786103234812114 +2.1961240555002153 4.192104243511857 3.79840256304581 2.496853488239416 2.3828484855450562 +4.085158052586749 4.5967458968971595 1.0884461852941465 4.567603850343734 3.5165693766396067 +2.5200199403640697 4.433239684095348 2.657259058470399 3.47658372941391 2.081274298169242 +4.759279206852467 1.8968458947910554 3.542045582073496 2.9028321712350493 2.932936796215456 +3.842116805910394 3.2673833907128986 4.408462465260111 3.7637631539039242 0.8636872701433769 +1.1906772194781965 2.5736314502543083 4.329424024944287 2.779940792500175 2.0768872603121724 +4.271508182569152 2.180217135365741 1.5234861772980368 4.162908396166293 3.367498759252714 +2.235597767141784 2.085052702882905 2.42279255780549 4.342138901540329 1.9252413364513563 +4.423291067773281 1.45294338075555 3.0956966799320855 3.6581683488222296 3.023134095615947 +2.0184641524657607 1.3644701047622836 1.8411599470578341 2.090334277927893 0.6998543145513354 +3.5216991741455494 3.447751489370106 1.0422581217656366 3.0116108080550354 1.9707405367218993 +3.85003206647061 3.8644908798230353 4.197002148261168 4.090847638585725 0.1071346685624875 +1.4316773214351186 1.2703046252573875 4.79823296021053 2.49686581752596 2.3070179610267045 +1.8054187850912817 2.7069892923329584 2.6230895983016707 3.422724805541805 1.2050916331076182 +4.660400360686493 2.4567896958294115 2.606969424992632 2.864953969349661 2.218660854524407 +3.61175414610125 4.159860751872282 1.8145449727075764 1.5727184325905799 0.5990834055411638 +4.8788663763993725 4.506291497554164 1.3211357809845787 4.548738314641606 3.249035265369674 +4.571895929680535 2.1650519917873714 4.005266151953157 2.05969300261916 3.0948590631533572 +4.1735147935854995 2.923349066101654 1.4762449740375758 1.4253588262633459 1.2512009215991307 +1.898646685235727 3.5961957312829798 1.0558154893003406 4.8307912444189345 4.13909588140564 +1.3797041677358668 3.1794762724153287 4.710821717258144 1.652559370116391 3.5485417022669075 +1.3993435726212202 4.784087713010294 2.2877662676129695 3.0119935215173506 3.461357827673419 +1.0392879848157035 3.9748909551524956 3.26347250321809 2.1327459193507927 3.145839698222782 +2.9437707944248057 1.378427852639116 3.600254142430735 3.7528517784056525 1.5727633527976834 +4.812894754944848 4.7984617751174605 4.331809222774892 4.167098218024891 0.16534214826369165 +4.725189848188806 3.9419084952998684 4.018117061696815 1.35725724589392 2.773752807504328 +3.8206600110746214 4.680218148150034 4.065339599025638 2.5855452718702647 1.7113244700213273 +2.887321285611726 4.7404392305806695 4.748628982901393 4.317892913606128 1.9025192980250836 +2.6454236312584185 2.194290060954579 4.1809900263288124 1.9229804922058937 2.3026351327218757 +2.408590987881209 4.283887943487644 2.01911914302083 3.269413209515449 2.253879749325241 +2.4689156212736787 1.1296924958876415 4.767330238193004 3.038761706919745 2.186656751041859 +1.804551736651944 3.798460617886601 4.226905837257455 4.273525654615601 1.9944538184768652 +4.090129666976379 2.000371507691034 1.4764013443152306 2.133712006207884 2.1906954308021533 +3.1816061067823167 1.1408437684032013 1.0371711360275682 4.622959524235441 4.12584406961206 +2.0448347383617755 3.478168169220825 3.6647749318259084 2.477581904006738 1.8611480353052583 +3.4780213458154594 4.278525424597646 2.265368770105414 2.652449848721945 0.8891785768729779 +4.924656594517268 2.936691440937197 4.729123026016611 1.857481596216254 3.4926107646278695 +3.904441975572351 2.9616330896677097 2.242639927369118 1.8150776792605394 1.0352285116574085 +4.995351850064528 1.0539192762791791 4.389943947985883 1.6481520415316262 4.801282494500222 +4.608873890628562 1.2700791694921802 2.3102770385288243 4.469159693109907 3.9759683733826696 +2.1155547280679596 3.16380859711093 1.528808694283474 2.0915999818989133 1.189777377234666 +2.8020102480829014 1.2260814851826156 1.2665965844186555 2.570817727046348 2.045615861938284 +1.8549456727782614 3.5386778074565823 4.145084531328889 3.7369710672654786 1.7324867967457218 +2.0239893360625656 3.3211623617008588 1.49831336680339 1.9515732171212932 1.3740823666555846 +1.326773667814459 3.6032663574275547 4.547039616426485 4.700674548866841 2.281671023247615 +1.6627439975136094 1.9052535991352277 2.581820994343514 1.6037147325769814 1.007721571757585 +3.0623256516877575 2.4290499636770213 3.6615523747846686 3.9166989615245944 0.6827429075065561 +2.975015582661632 2.5919569515667154 1.9029062571917263 1.3236648842837107 0.6944454499416597 +2.308544058179907 1.7634654803396175 1.2650693768466468 1.9250967308488849 0.8560062873902202 +1.9440962682901906 1.952572231225541 1.3701653891780965 4.9123277053464385 3.5421724571272293 +3.7254980316070774 3.7240224180863724 1.6265982949438476 4.412647991969201 2.7860500877999885 +2.6765103388691247 2.754172697109632 4.810105655004274 1.8622054856512027 2.948922998377432 +4.2681077742078175 2.1378632709102967 4.294531756675491 2.0971333916984776 3.060474018552184 +2.5669397875996176 1.921680163112769 2.5614095645918376 4.375065544470489 1.9250215573708522 +2.038851874611796 3.7165617548084637 4.557818038756313 4.435998853264479 1.6821267360289505 +2.3945200981623747 3.329298400366988 1.6424541062621874 2.2097510874746162 1.0934515714768873 +3.388353201521273 3.8276102180994522 4.270520812070239 1.709462656680901 2.598454464080408 +2.6143282041729035 1.2690385581363341 1.8925315012382034 1.7120061575393928 1.3573480141256227 +2.8585338952383728 3.3479581512952623 4.879088634231132 3.381300825722402 1.5757234597905254 +3.197471023567651 2.831382282837182 4.723361452642125 1.255550486897349 3.487080994216988 +2.603978093189047 3.9551391239958402 1.5658001690320047 3.335996427578782 2.2269330759912576 +3.6186774161422197 1.3415406787360857 3.349979483128946 1.23923275141492 3.1049321226535844 +1.218586197965005 1.0030221157835086 4.931547734180546 4.543732773567296 0.4436984530085805 +2.4114358633212083 1.3758084154646926 1.6451317014064455 1.1241169108189153 1.1593017824383642 +4.180009206011629 4.527973862750468 1.1261192772678643 2.850285423257394 1.7589281683217668 +1.5283051504977743 2.0204117582429855 4.140862282046981 4.234382968985096 0.5009141965166051 +1.175656817391543 3.386734214287492 3.6368416538290784 2.971674655299801 2.308963055355502 +3.5343303306714486 3.69335346508954 2.7819766070035343 1.2502094318251862 1.5399996870889325 +3.368450651573955 1.6797804433660954 4.540523540459537 2.1741188273507843 2.9071426415489303 +4.931166915546524 4.3224210686290165 1.9953214787460638 4.594555981783602 2.669567663109536 +3.914678299821985 2.7674283508216293 2.1987637143122427 1.194737251916615 1.5245496327348602 +3.0299665457618996 4.459984883565456 4.179633668173953 3.6960221640692947 1.5095802507176674 +4.876100185323092 2.8554752961546592 1.6929776576888584 2.9743907293225704 2.392685604687897 +4.132794013827313 1.302975470617798 4.444319813110779 3.8224422366862334 2.897344423355996 +2.5591287294021647 1.3143712981075946 1.3824865829275477 1.1553778100216818 1.2653060726535161 +2.5559337529289476 3.1858931364835557 3.0436441723802607 3.5003944226427897 0.7781192813723257 +3.3202594684934934 1.1381899017137371 3.8301368299013943 2.3386596401180793 2.6430913343867495 +4.85937085870418 1.285576136070551 3.1943418844090834 3.8639580170411496 3.635986040210427 +4.486823636334015 1.795621308602171 4.152702611742938 2.3185766591907733 3.256775702840876 +4.106931082853336 4.978408524339777 3.868571450104835 4.58258180946674 1.126624926182565 +1.7497488705721231 4.7372067562732285 2.5976421013832103 4.345022754392635 3.4609599485329734 +2.6655923602111575 1.3263681652368788 3.580128001397184 1.4306314289000688 2.532559369409008 +4.695902923689413 3.921308542133039 2.4491015431597556 3.21728355724216 1.090917074162102 +4.494481202605113 2.5379790066443064 3.996219662806172 2.38491060559239 2.534604055993485 +1.965602685858892 1.264916924333332 4.8191766852812075 3.188346499029991 1.7749838401497722 +2.2265077704496234 3.718604584345265 2.0518488872105127 4.758178507877397 3.09040012259521 +4.291796836097305 4.161062754782046 3.5977618279897046 3.129676949611914 0.4859988203517533 +4.39765290108917 3.256489126795379 3.9617332690077633 2.2738450948563993 2.037454600279593 +1.2421204030755293 4.409699437594417 1.3421995780793305 4.08289646146619 4.188672384721686 +2.997718866586954 1.949189276041492 3.534029239392139 3.850719547868621 1.0953113957831186 +2.300755332432884 2.843000551544961 3.454539212942303 2.236759902495051 1.3330477585605436 +3.3506380608052657 4.840695067132788 2.4580186225804304 2.5149308281334166 1.4911434811065782 +1.0309592256781088 3.153615431010047 3.4965597431111326 1.3698315888534163 3.00476987607148 +1.6387883001356336 3.8288449203191237 4.546942924791496 2.6641852906269596 2.8881004671954154 +2.811771745976331 1.4644556589949982 2.963524097457486 2.677638193328696 1.377313104714475 +3.167934445472651 4.796824625155576 3.9077092219875165 4.059686033398337 1.6359645988449971 +2.6793846079486694 4.970829826314331 3.39739964056678 1.5999619228794035 2.912302102759269 +3.9952741927067654 1.9533472310800626 3.2524065961854793 3.1582350390139076 2.044097355508826 +4.299903818691021 1.279242620743259 1.8203494987338988 3.9152225479050338 3.675987916864088 +1.8554513038624716 1.7271072812562558 2.088802866663556 1.7583066439830022 0.35454187530510267 +2.8012961015623254 4.710407156463962 2.9842831046131577 4.2574505392950766 2.2947026684697467 +4.870753996057858 2.4860901120313135 3.0521318145116334 2.6702556922965073 2.4150468344317106 +3.2638671515880477 3.4503210547641032 2.942652245172824 3.052597913783302 0.21645578776228389 +2.523410889911605 2.9122326768655116 4.110328445547609 1.9862468223115468 2.1593760960469974 +1.8002501147423975 1.545197740145372 1.3945919584681832 2.978771126168415 1.6045794929398107 +3.6701644387560295 3.9632235298248784 1.2935215882096238 4.880173826248475 3.598604994645453 +4.999991637427639 4.480358747258564 1.017648344880313 4.898872202168931 3.9158545645786957 +4.133506467037229 4.005258936255077 2.2751567876314183 4.663628914513667 2.391912734621631 +2.1699851028193544 1.4671534612741604 1.372674395569545 1.5325468899616026 0.7207853569685295 +1.3302970685731368 1.3918870860229706 4.892178977883683 3.9560932527025487 0.9381097031463647 +3.102973582941806 2.548769962633938 3.2633785418598555 1.3011638352566015 2.0389772454768695 +3.3288210760616845 3.9327423656727962 4.337012058059561 4.300568532052381 0.6050198795356928 +2.9066269903745585 2.041510327006361 1.1608188240763697 1.765322629515007 1.05539172444506 +2.4521838611806928 2.153529948822659 4.304793037044371 2.8217967372359367 1.5127697064035452 +2.3438930241985623 4.139579478391012 4.956318911768639 1.4275982426173464 3.9593382531258676 +3.1386011986026014 2.539140736254482 1.2774621512230757 2.098805231053283 1.0168369095895329 +3.413288763579968 4.651410150483058 2.7293457267782184 1.0531394663940112 2.0838934704197434 +2.7988419448605355 3.030881936539595 1.07138647779992 3.430100976401825 2.3701005555995414 +1.8192534918983432 2.8405145900009154 2.5542006053503425 2.9345270791383244 1.089780921635937 +1.6044577381160914 3.3269827763178474 2.18120840298654 3.7023302012632415 2.298021765002348 +1.2960666302512087 3.823269272231963 1.6287953623132347 3.4079804166825767 3.09067187700761 +2.738448437542843 2.46598100283781 1.3680420582869974 3.564153301399865 2.2129489589914826 +3.1719626115133965 4.566999785719883 3.8984340924453225 4.861712718663313 1.695297740559586 +4.154380130861298 3.370276474679382 1.632224404499993 2.11695179980417 0.9218346876724811 +4.959948796373853 1.1549007944435377 1.404241179511311 1.905408303629332 3.837910731542699 +2.4957073622968804 3.510100700617631 3.718418217987893 2.542020710915568 1.5533528058607604 +1.2648430999028184 1.7880606411479936 2.1482257465193526 3.4042973193046877 1.3606882050734739 +2.029998178432609 4.166034285805978 1.3771367816462 1.8657556998634472 2.191209414739396 +1.040514613636096 3.7103473251970533 2.960593657777075 4.408467594297868 3.037160786619166 +3.9566447725204332 2.902997513233033 3.159415355062155 3.0429959106150357 1.060059448356188 +1.0524072635467037 4.371482351952015 1.8469500107780887 4.159643215027261 4.045344150928698 +3.442876983873805 1.3712614119345425 3.8964463557689215 2.814243586373976 2.3372534975879975 +2.898065477706074 1.8242599485215716 2.0852499511328197 4.3365024036338635 2.4942325311404256 +4.887052367442298 3.994682552670886 1.0348248824550095 4.61805846334161 3.692680162362911 +3.1501026729320243 1.693085241595452 2.7272995029930307 4.403436226715377 2.220885884468021 +4.290409359095884 4.228342630763098 2.5046532859612856 1.0365582554904798 1.4694064438605856 +4.717528450876706 1.4992303907722961 2.3902783981610334 1.3872327735793775 3.3709854536417407 +4.794460751972426 2.7325669641508044 1.4205101849449768 2.2292940482749324 2.2148447642758895 +3.5554574171749773 3.5137569229896974 2.1507904915502354 2.2609548927359246 0.1177927268718152 +2.566940542955712 4.363472924775985 1.0119823252797113 2.928927770812848 2.627205443066655 +3.340762543307161 1.485160461640822 1.677845997083232 2.278839940150118 1.9505006549825952 +3.34234789539335 4.644809835472833 4.912993027288001 1.7768813525093026 3.3958214826517112 +1.5169699877218599 3.7215108570560163 3.750152566391282 2.6066589093114514 2.483460929498671 +4.3516444653602235 3.878733397008543 4.812536503927529 2.1165485359619303 2.7371510740156095 +2.4648245291491944 1.3184916951348802 3.093021768169038 4.5249785282235715 1.834278912544427 +1.905649118009046 4.54321726507956 1.878373452977947 2.8569443926659797 2.8132484452040325 +4.254662232729978 1.2614187582137348 3.1796877323356787 2.2637352159218893 3.1302516688053736 +1.6446095403842684 1.1370131804961652 4.721296630075226 2.5694365954108473 2.210917382752561 +3.8276925881130857 3.2838528102289204 2.7732070601928918 3.058242260159586 0.6140087696679515 +1.9688192349145184 2.719026785325862 4.507387874140436 4.968346552798773 0.8805079625560629 +4.2914203861627005 1.6834484900037658 1.263434397118881 2.4379624307617322 2.8602506031758423 +1.0798237699670898 1.6021789176301326 2.901234109996447 2.805082525029659 0.5311308949606535 +1.213287348335891 3.7441009797163547 2.4428122033488777 2.992940107414479 2.589914737517971 +3.063271986745084 2.1968297904566487 3.740760481254098 4.502372691831482 1.1535923191533901 +1.3581652974578846 2.1894627604321886 1.7683449105228348 4.2466311012841595 2.6139927152281417 +1.2901502485931013 4.178223177286764 2.837764718616989 2.152133833440082 2.9683421218184503 +3.098608809622472 1.325013460508595 2.7224438977745185 1.8796662722749504 1.9636482853202266 +4.001652600431585 1.3116396414040148 2.164659642244797 3.036638018398855 2.827811169122955 +3.1934559435495387 1.6880680707282485 3.0631865600815957 3.3136015267471763 1.5260734920597805 +1.6290796908559386 4.366630462733317 3.6661327260685534 4.995093376625299 3.0430774947961217 +2.1124293399623544 3.5448343668481237 4.200105660106523 2.519815116330388 2.2079765561597617 +4.094404004508267 3.398847832036767 3.307209397354077 4.694738117232395 1.5521064195313308 +3.7760695833486064 4.691200713507443 2.49107589397202 1.7062679236581269 1.2055656496657499 +2.831034593166142 3.1100262902091145 3.177887585231206 2.2336139411838625 0.984626366629173 +2.956526123246846 3.0438569736821757 2.2811938127245535 4.48221876118148 2.2027567957374625 +1.1105214236820027 3.101174494610077 3.391753467862066 1.783547142044931 2.559106726026412 +4.648230802961444 3.0238436423755126 4.254064249606031 2.9768938378680243 2.0663489318349533 +3.6694440689526524 2.193665312828748 1.8764026367585194 3.721525504402693 2.362710590345351 +3.3553053481883683 3.652909076919098 2.181515398627848 1.882387484134536 0.42195436789249136 +2.5717164982514085 4.4540627787815374 2.0949067912292003 2.6906832285569635 1.9743801769417595 +2.3359493369562 4.441337929386304 4.1377181824811515 2.360126705305537 2.755447801149969 +1.87224717773096 1.0491797225085864 1.00131711111155 4.34021896048028 3.4388523660611194 +2.054490133270142 4.264386060044116 3.54852137644247 1.3809948390884275 3.095450096077501 +4.899285871768503 3.946191870971897 4.592651129242822 3.3915476499145876 1.5333094085698653 +1.4058655561387123 3.413838944646871 4.742390211086252 2.4517346991421736 3.0461549211024583 +3.4369863247053156 2.1222031492351303 1.3481888091458027 3.3051454968351366 2.3576119858856064 +4.281181549431401 3.8779836182128484 4.088535932469863 3.601147068393966 0.6325476081403787 +2.166834829278054 2.553331382393043 2.194567525590372 3.3549056962997548 1.223014413641542 +4.101073670642492 1.3325529031656362 3.3502749238095793 1.1381760957462888 3.543739333679838 +2.07966735233083 1.9439035105942373 4.708507150032419 1.7627561772435127 2.948877856814329 +3.0735928930109697 4.43230554716556 1.2529461785168445 4.443176413133777 3.4675162618831106 +4.161421304497334 4.742724139779106 1.269885170865912 1.2888411148712362 0.5816118242606142 +1.413193012758951 3.81432301851839 4.455184062862231 3.2331089485805573 2.694233265607284 +1.0932829398919575 2.976873508077199 1.5457032535674475 4.345433119363971 3.374374127151496 +2.9377749154446167 2.8473311834559354 2.5432187430638185 2.3676726496070946 0.1974753138596246 +3.2311603378078626 2.2627652493525274 1.3866750813949782 3.385169563258045 2.2207587085006657 +4.4230253373285855 2.235036260418408 3.217955146795694 2.9254289464417935 2.2074573107020075 +2.652919151293998 2.386315210411754 3.0907161414204554 2.239379285162641 0.8921054332963573 +1.326923723984681 2.921203556923188 4.279205918497065 4.034495682889727 1.6129511105812948 +3.3067348800826015 2.3498901848093645 3.163368695216297 4.525045830110692 1.6642464933316643 +1.738941427103743 4.387423982736024 4.983095282715842 3.4860818721147866 3.042286804199746 +3.236601959110029 3.261572088342535 4.3567822782654435 3.6915935347896194 0.6656572479894092 +1.5569912783849036 2.9850502938921823 4.739019638167051 4.884299226230091 1.4354297999133865 +1.662846358096456 1.7846905032718734 2.628474877453931 1.4053896518819333 1.2291393186803652 +1.1476977329286502 3.8378080148020346 2.6534625792365376 3.6550306077881536 2.8705107288525626 +2.2860522840077597 1.6749502461794874 2.704618160424817 1.942770528827149 0.9766562928732109 +2.7104587359232877 1.2914235593500973 4.134050230453722 2.120371032159526 2.463445705915773 +2.411816053744336 4.081394254175658 3.301536406644219 4.669996206132495 2.1587435211647965 +3.4098738961180537 1.6362393057685796 2.8031818959427888 3.066700738417435 1.793103968102052 +2.613790030826516 4.749949463796719 4.115012851293958 2.542383497692492 2.65261007441285 +4.737400626867062 2.968781166505544 3.226855465781773 1.3585678884316192 2.57264713228425 +4.106895734519174 3.86554205131522 3.1899682362109476 3.076057335891927 0.2668844199416751 +4.455559043108401 3.827931218099788 4.199864291245495 3.7420630458304105 0.7768517664449538 +3.305475259157024 1.2366759004185233 4.13215138479429 4.511595606306008 2.1033089891776395 +3.591608948174218 1.179204047076016 1.4522268589462226 1.1301560164614446 2.4338091614630515 +1.2669609082164652 4.6519803975297425 3.360808663472964 4.886709152096559 3.7130485108886533 +2.6079082988319935 1.380200615610434 2.2275585691773063 3.7517204183156676 1.9571242928874286 +2.532484907369171 3.643926210670944 4.804365030418704 4.311160929974132 1.215957258862532 +3.813461227228385 3.0477021467264604 1.5797749808726218 3.6447892159310022 2.202423837585514 +4.632903455431716 4.2000869957356635 2.5208501638741296 1.5215546307954901 1.089000298537492 +4.307434562836127 3.675751726876716 2.797873156633332 1.64739306736316 1.3124891013082076 +3.738594897843517 3.110773208245481 2.88665772570944 4.331187610042363 1.5750640179562927 +1.4563361859589339 3.263096076105317 4.39491524087526 2.6553718425682513 2.508065496599973 +4.8085022122413825 3.7402310542048034 3.1480905284660605 2.855743948347753 1.1075512584073406 +3.0718259948155238 4.90965814196711 3.2816089629069016 4.240284565286476 2.0728448836566744 +1.9632334952518935 1.0718921635989567 4.7296485426565305 4.283550093512785 0.9967412883197353 +1.1774195579969708 1.667091145299739 1.798390807304588 4.416485417818988 2.663493505345219 +2.553714893502189 4.913987177828979 2.0526831433277306 3.8385705670614594 2.959776874430148 +4.994526626076953 1.9089669883477267 2.6637247674008706 4.403787844043763 3.5423858892954683 +4.754726648789324 3.3633001616812876 2.7249207506874438 2.742911965392964 1.3915427959040252 +1.683074012630156 4.536999598088158 4.150909777892096 4.01031625893802 2.8573865305386477 +2.227635062750071 1.6052197539569955 2.384674316218594 2.9255085231657603 0.8245619782794682 +3.455964998954368 1.172559333395153 3.6221720685509236 3.134707614754121 2.3348582456379097 +4.056747822818021 1.8262641323555049 1.9696156987173943 2.4961613437409116 2.291791397512548 +1.8628112261710132 3.449292607865076 1.9615133944747898 1.7715978095991365 1.597808218729821 +2.373058914001621 2.2742442901205027 1.7831189400042247 1.804121988580048 0.10102206661044537 +4.9615346663797295 4.057844585428787 3.7752668264583336 1.2964503660570639 2.6384061110385186 +3.7245798168450124 3.9583069570391176 1.0358918138136421 3.176695221939925 2.1535244619712177 +4.089842597093424 1.5577170549299963 3.2357167768011967 4.7747737854190415 2.9631665894870203 +4.207733658026939 2.089959204283711 1.3592232587196822 1.1707346153925893 2.126145951149806 +3.6718754979820254 1.3521946814416936 1.0920909355882475 3.63904625038123 3.4449819253774674 +3.237365047426497 2.1285425864960748 3.6773198351718124 3.0957337554304356 1.2520900997982298 +2.722857778637251 4.7781896273948306 3.1701275043293067 1.416860410827815 2.70154298682668 +3.0905418142832244 3.831955955204208 1.9022488650865532 1.2959167493618646 0.9577753196427528 +1.0862106143224675 1.538524948970878 3.432400038379383 1.3964780662235041 2.08556144336136 +3.936952961216516 2.121744094284035 3.5512363938842046 1.155317121835166 3.0058962704601595 +1.0221744185273844 2.366450812818073 2.8239257099527593 1.0141065487802114 2.2544454795790645 +4.662274675016258 1.8771435489906656 4.138751624958251 1.7160238216642343 3.6914178032309533 +4.222190625075688 3.603450581865298 4.588666354261636 1.8311039766009567 2.826126237053401 +3.041352409008134 2.3796924217434214 1.5535458071692236 2.3364852613060494 1.0250795713461518 +1.9830774279007524 4.364508543806598 4.026276574245342 3.303635954382292 2.4886590014063024 +4.452098680034629 3.239364848453067 1.9413626877907233 3.905191540930644 2.3081046576547073 +3.6636406177308896 1.1379847592975283 4.070837258839441 1.4286078777767002 3.6551762771978527 +3.367770328716628 4.920640201219001 4.062272137209447 2.6610829156437767 2.091586975374762 +4.3710794935560955 4.217545381988794 3.901388485132088 2.0844267037102497 1.8234370947642755 +2.16285028354032 2.141201680314326 1.499085059032824 2.8662312975364386 1.3673176293298566 +3.4592619633732795 2.1450012294351124 4.725556585871619 4.437902520838821 1.3453721187469223 +4.515612145483018 2.4028873787161977 4.153902192094104 2.3237806972181145 2.795165581162776 +1.5796927340550182 3.178260923042363 3.1212649694849053 2.3533581231893295 1.773443311591858 +3.2430332951966356 3.762866501665767 1.8949762051642054 3.1801900176836364 1.3863625450937103 +1.1693405671792494 4.098287054576886 3.5709507338330213 3.2589081261879693 2.945521705067691 +3.857040023170166 3.83569768747137 4.993345181129483 1.6468509792981751 3.3465622567320694 +2.6299287250407906 2.762867115685159 2.8595887428786533 4.5802989614837974 1.7258378464152644 +1.8651717163341028 4.568603718874714 2.0478377338054905 1.4949260539707891 2.7593941215524778 +3.881567724221493 1.2909677651432112 2.411685703604958 2.8144960608887777 2.6217292636562446 +3.233554490253981 4.143033351194807 1.3671913020819764 2.728058916742595 1.6367994572122468 +1.589894935392162 1.7235911515941718 2.5437775004581744 1.5246147808666728 1.027894609010029 +3.167861395503386 3.3841589892061728 3.8333423489462124 3.8644350471400353 0.2185209484753991 +2.3690609714968183 3.7797422535869054 2.577351797945795 4.687414781568835 2.538185862874407 +4.597415592698784 4.401061567138916 4.862020867573106 4.477216330197923 0.43200629085476794 +4.988912589938747 3.8613435124810893 1.1823708375027357 3.1571678855182013 2.2740350492658 +2.3231022785036495 3.7887373128827146 4.124093223401928 3.9277506498155006 1.4787279872247854 +3.0528536551528664 1.4357430162042712 3.633245080130558 2.8508837792846773 1.7964231193296283 +2.850477109411461 3.0728766423381155 2.8038290232817418 1.599275248563873 1.2249127921746348 +3.967144463870288 4.484953016732636 3.194948733816495 2.087202669972499 1.2227947658455465 +3.851373347658864 4.651596267251574 1.3227232211308126 1.1811493373033248 0.8126499157838387 +4.634896327244616 4.44028615588208 2.7068936667188868 3.4577424110076054 0.7756590459716827 +3.1464746465284272 4.056634360688969 1.425959447725769 2.6061451968192855 1.4903788470198522 +1.3565210006805404 1.0275409425893085 3.9854386710925165 3.888907582889752 0.34285001037089113 +3.751364774659298 4.634414436607763 1.2231919282308659 2.5221628477232754 1.5707011667259478 +2.665806968847412 4.988057386540586 2.235997683017409 1.8752409793225264 2.3501047639917925 +1.3601293155780052 4.47011857573923 4.173262733138716 2.082435016255661 3.747478317482914 +2.4824304887289306 1.496793842507457 1.7389308046680587 1.8054893503997085 0.9878813888238944 +3.0465017976186473 3.435677033550614 2.3092382589095464 3.841878189664509 1.5812787615114794 +2.949908507357497 1.5643115117661393 2.155184089983268 2.1318653351016077 1.38579320193203 +3.4615759686987873 2.7066612090068687 4.269912223120115 4.372178060512795 0.7618100786274314 +3.8876248395856163 2.9242218957837567 2.77969524115096 2.001037372503343 1.2387305229681467 +2.110894362001102 2.9460230537786383 2.3747330724018676 4.920498666151245 2.6792466086846463 +1.126077788076128 4.042285309613085 2.6995632460180103 4.7147352783010525 3.544740417627853 +3.7456444311632087 4.594304164425143 2.1858577047124372 4.447558471731514 2.4156807948060726 +3.854239616623696 3.5863553825917474 4.306375202484405 4.826255440739104 0.5848396574879696 +1.1525045959176725 4.633764969325754 4.548153435590482 1.9511137134573797 4.343246378666373 +3.354656209168118 4.4639816122789 2.7287603572680945 1.8512006451010468 1.414465941055355 +3.414672427151897 2.4697041701647016 4.361494537246647 1.2336803245950718 3.2674434586659045 +4.665324372655228 2.013333123659091 1.9055805191619175 3.513311250851488 3.101266788003117 +3.839904831638911 3.662884709061719 3.041953948741758 1.3594855586132093 1.6917553036946549 +1.7853341878609128 3.5707735166703345 1.9717599663388659 2.1095298724225735 1.7907468117748393 +4.490764573474632 4.898830088579404 3.643094062308845 3.329300616756012 0.5147657633231268 +3.4623106417798515 1.3259478910925493 2.07173755834452 1.022890190031081 2.379942563286401 +1.7168218201698133 1.256561399468311 4.456041069735203 2.788141913409924 1.7302390732308937 +4.520159050010314 3.6588378813020217 1.5937402288043603 2.642244065101306 1.3569209447843416 +2.5265543419629286 4.7962059903490815 2.7381087467330527 4.125511784468884 2.660113868641828 +3.3892581830096256 4.994732189818247 4.219432278370897 2.2759836323598748 2.5208211809289858 +1.6350789502905543 1.2292956289826877 1.502168182752091 4.493814382538339 3.0190407563574135 +4.208091032426161 1.9901260078232492 3.8121788284544977 3.578117286394297 2.2302810710386693 +3.409549966437013 2.8966726769794784 2.057204155788908 1.6803471566576538 0.6364466292121608 +4.9589432191292175 4.8864988284052435 2.2720489331306384 1.4297919720923087 0.8453667713867693 +1.6731243568951615 4.259700009433692 4.718902808718219 2.107130651152106 3.6758301660091255 +2.180730338280143 4.643887725425434 3.185740006998223 1.0747155294504886 3.2440050336974044 +3.8405637097534906 1.2583427107343406 1.9974238200346304 2.9079381672433238 2.7380470529646366 +3.3080335773672065 1.8471032886675554 3.979719854754469 1.6815966912056468 2.7231759736160446 +1.2013438444673183 2.055272563382306 2.853092860856748 2.2326916840062547 1.0555055079085418 +1.9882698358825164 2.421150299302523 1.9388605888656665 1.3622599957081132 0.7210088346479272 +3.9522571469356893 1.6454975435475632 4.077500073924034 1.0732305295950635 3.7877137382339154 +3.4432520157383943 3.9530395983937847 2.1545723352596626 2.725711362673391 0.7655606886881835 +1.9648834029178435 4.337610234918916 1.0338689774322143 1.3692110290401107 2.396306931691856 +2.776303051782566 2.1714026194848515 2.8339269932462434 4.388596563692918 1.6682032269081635 +2.0034402537110165 2.9161139554827655 3.146655357347548 4.775552637491879 1.8671581709023333 +4.645910887920323 1.222354502018418 4.0740722111762295 4.7838804337836685 3.4963646892638134 +4.562277851181205 4.307962610761806 4.637170133167847 1.5971024519417112 3.0506864388109816 +1.2227956859067817 2.870908215233421 4.814934812882262 1.1832015657111525 3.9882027641447046 +3.8680458529675894 4.167965728108652 4.143339325568123 2.0109405676951693 2.153387190934957 +4.144901837404772 1.3757584718935854 2.842428920658985 4.4432934091231004 3.1985812619316234 +1.348428444640914 2.7749316420016026 2.464741442994976 2.5493979407319287 1.4290129791885566 +3.403079846630205 4.7247552087629 3.6910640249001165 1.7717362179028928 2.330374432056223 +2.170156672499879 2.679111762302956 2.278191694818253 4.617624042134343 2.394155172729063 +4.360811108610223 4.591202979335817 1.9185876768415415 1.827108147650792 0.247888923426199 +1.1047185370436958 3.4718023216291316 2.4315982629819244 1.1599712240402966 2.687028278491829 +3.7487623136286943 1.7195035092955875 1.5615681575733138 2.4718507515819295 2.2240741210486856 +2.7034229048312555 4.638935487740941 4.399101241189278 2.63957003165326 2.6157520975683086 +2.6034029653739545 1.6023065262575766 4.135734633032927 4.789756749322464 1.195800572423068 +4.560802387304015 2.704278112101003 2.0204400434333154 3.902069248173392 2.6433332836683388 +4.201633404021451 4.512158645007304 4.504436903315752 4.605055652549874 0.3264200637013004 +3.388770967408686 2.12871270738221 3.4685710565382584 3.3826282452345264 1.2629857423881474 +3.365366061407024 3.7250391782737005 1.7237351599336024 1.9278498634467454 0.4135547886155449 +2.741202243130879 2.809308187745039 3.3950311921259764 3.1059607745606006 0.29698506023570914 +3.235877563283473 2.566129071652364 1.665893134848075 4.245300620887461 2.6649401533764636 +4.278713493780495 3.3455331518783775 2.136105402697806 2.214773051583015 0.9364903360385948 +2.1422321075562554 4.109903842819682 3.7771676473174716 3.600678081605308 1.9755709616614259 +3.7758639630892 1.2021976286121476 2.3441509838406898 1.4045641107444888 2.7398142078095815 +3.8379311189227354 3.537217539949042 3.2570333896967116 1.9819293837140561 1.3100835403332811 +3.9340758084712313 2.7278543941311226 4.994619984685954 4.275379319215816 1.4043778819386825 +2.0469287984765367 4.492969783854605 2.3780612292861276 1.4231543024212678 2.6258262968299713 +2.776861214204362 4.224895058576889 1.9884658286777022 4.677258797898791 3.0539170987079918 +2.1232058624968304 1.1269846645830603 1.6305746383342772 1.2551598986676606 1.0646092719545988 +1.6334462576559 2.919252778034058 3.226443570587796 1.6264284527542108 2.0526438524846453 +3.443895561906874 4.9738398101450185 3.012701816962048 4.861974297484018 2.400112103617842 +3.6868036398588298 2.21383678228907 1.6253279210643505 2.1423797876188404 1.5610810344778436 +2.244239488136687 4.436083874647699 3.5559541186488164 2.011509619523324 2.6813225515701817 +1.940105443993787 3.4817526437027375 2.0536834358218803 1.542835266793193 1.6240818760673401 +2.3846221371544156 2.6553515927505886 2.9197459457803916 3.245962659879692 0.42392426527051363 +4.661103806902262 1.14289173677011 2.0819401855656055 4.3186533765254165 4.169016918775599 +4.223992016899752 2.190103865461396 3.7585630116745037 1.1365401658238055 3.3183888887115573 +3.0579505907437743 3.3094776780637742 1.8500671082765674 1.0626331826457913 0.8266305480019338 +4.210796166571592 2.7765299020067005 2.822803674594162 4.645971375626338 2.3197112285273525 +1.4676029206160988 1.989515736934933 1.7310631585036043 2.6370795669551934 1.0455901301281367 +2.042828554257628 3.668789314226367 3.3191855476138916 4.774277513224256 2.1819809855592127 +1.5522305878283311 4.596457655219843 1.8843659161173623 1.6607291009744456 3.05243048453628 +4.269554785680254 2.8063523914461985 1.532378839826828 4.055886113323419 2.9170276320053037 +4.902427773624366 3.1149091654059755 4.539383382325401 1.4366330224591644 3.5808214937884113 +2.6588104849305436 2.449462981568334 1.7344498731360596 1.681654826606779 0.2159020474706509 +1.5553813804900303 4.670108285605501 3.4311362544592643 3.7655618413113947 3.1326289545031645 +1.0363243627972967 2.3453570543631024 3.0005756276704907 4.993302672142282 2.384224750596575 +4.064148822365205 3.891585639523845 2.7378067034282347 3.3500051611713126 0.6360542459062306 +2.3735170924763085 4.033109005781318 1.5057654309865693 3.6945267906684953 2.7468020693788726 +1.4498711681788974 2.4403358637095116 2.3553669334001235 4.287426821470508 2.1711461775253866 +2.277875345803678 4.5074349248066845 3.1392271340030256 4.9431591262634775 2.86794465585109 +3.956383822669322 2.8303183261876947 1.5675588193345487 3.1167767104959427 1.9152283353848363 +3.9088329858198763 3.4102923524968807 1.7379062029758723 1.7531438800416748 0.49877344544036745 +4.438937733464794 2.5413261269941576 1.3167691855472325 1.0967841838291101 1.9103201852027296 +4.8453092178281025 3.651198465951136 4.6998608018091215 2.0552295098784312 2.901719345148177 +1.6986370744415495 3.355904695662439 3.379539551520907 1.3353475927609222 2.6315882528629224 +3.9409731308688323 3.9088173435422426 1.5610128340746443 2.0525503151647917 0.49258815452164484 +1.8421650782772483 4.197303843744136 4.496723665481941 4.539803416149917 2.355532735820606 +2.397379204564967 3.652986671034171 3.426543793908898 4.3066250481659 1.5333274679427717 +2.2284744782721235 4.356043684860225 1.1238356839649661 1.4306998734349108 2.1495851598857323 +4.427824509034199 3.1106148942288865 1.6610154954024967 4.7158155218728375 3.326686695656619 +4.223818274992794 1.9865936287285209 1.0877343645583681 1.7223840517854971 2.325500880100843 +4.390751205615249 2.3373849577842822 3.225085362477539 1.253536631343159 2.8466326329487983 +1.969896270084384 4.087416122682646 3.8115593640740912 3.869095450558439 2.1183013778487 +3.256419599028624 3.3754898871802936 2.01978261987533 1.0071138137517193 1.0196449599818265 +4.765432659384576 2.6815278361764685 2.465277882737404 4.195375368555711 2.7084860388462113 +2.9962366075814413 2.442055931105163 3.613231967860027 3.8150643459035396 0.5897902432275433 +1.4197323452823465 4.008161931848996 1.9150415750169443 1.1186006335789296 2.708188674707186 +3.817473062169776 2.2801757644929666 2.01268258433457 1.7378951033565326 1.5616629409532252 +1.992887476292803 2.864790691294318 4.48772050681181 3.3749770713391856 1.4136524217492066 +4.9123860864765305 3.12094284662063 1.9225690981328163 1.3734249223768717 1.873720418683663 +2.8538087239584042 4.060027063248186 1.94131904594011 4.532095880621481 2.857811625905497 +2.6077987365004125 3.286997533539363 4.504943149165119 2.8353750209050332 1.8024341155229626 +1.8098611562914155 4.284116415028171 1.0577897098262952 1.714655826893127 2.55996331636548 +1.6808610542777376 4.7806261920293975 3.4387344927541275 2.912553929969436 3.144107169590913 +3.699174867275011 4.436532607862059 4.085831953180247 2.95841445979355 1.3471327484691253 +4.173402283397579 4.8746392241308225 2.588065618865377 2.7895797482280544 0.7296171539798917 +2.281128907363164 3.5483226118523983 4.79613222090267 1.1690629227884277 3.842058247608968 +2.4663399136095956 2.895391506044578 2.7776049040570965 4.663986227197592 1.9345593206888951 +2.7968857051991636 2.3142656566185713 2.529981467042372 4.888656113750766 2.407544018354992 +3.1810317735979554 2.984373736907819 2.3185168581799815 4.209961070959921 1.9016402376510508 +3.8336027876421275 1.7323178272320465 2.2322871632201418 4.856158707857062 3.3615621915414464 +3.331015103302851 2.6462433302495514 3.6723398284319626 2.1187641097909324 1.697795598628278 +1.9714417732765108 3.3056159676122694 2.4824758396297395 2.733089326154667 1.3575079743631897 +1.5038690862652833 4.2335935063024355 1.5788474036759839 1.5466695245727986 2.729914069206345 +1.3541441477569287 1.8697405456081606 4.56278481072153 3.1803953392641393 1.4754119073239882 +4.117521461351261 1.0014604172468218 2.137704788425505 2.421629584231638 3.128969434216129 +2.650873383131626 3.0148751147368804 3.703684059764344 3.8222806141319468 0.382834694508598 +2.8459446324081568 3.0149898971434723 4.309188279799647 3.1882040960895623 1.1336586089549174 +2.3743655445120773 1.9664853546487167 2.653178132112309 2.184931463979137 0.6209840509230395 +4.758394634302013 1.1106226587144348 3.9098113061428714 1.2320138889836802 4.525134185107281 +2.384664054107805 2.8900841172354053 4.695036115698123 4.8694917961746516 0.5346814235247342 +3.98350650367964 2.4327795650270785 4.2168512409020895 1.4362882062351368 3.1837532611713235 +3.3751857480780223 3.070191430681666 3.5406759879738905 1.8663940647147714 1.7018347429161047 +4.4050515519114235 4.9892458408630596 4.974956117115538 4.485574308440281 0.7620876077630273 +2.031823589589837 4.0037647773834575 4.502523327937415 3.1050745392333403 2.41690197673952 +2.706840658432801 1.595432279410482 3.5688330735437206 3.4920806535708633 1.1140554379979069 +4.839884117035108 3.1068269285931653 2.6840425478802086 4.985092914396127 2.8806804764939367 +4.260491067097986 3.9662269976011593 2.074186099281757 2.3865001040361875 0.4291053252554477 +2.918230742267486 4.392739618354083 2.3423676609489403 2.093000683499381 1.495446526994693 +2.853266006103926 4.193137157743992 2.476655697652625 3.911303205762122 1.9630252610504195 +3.1841888359288757 3.143926818878651 3.155746566639266 4.939368833841177 1.7840766301018125 +3.055244464377557 3.752831637578491 2.966829088325899 3.472473589727568 0.8615707899019164 +4.580888912832075 1.7070205319992913 4.53709219492578 3.972976890752053 2.9287105604264587 +3.242090967855852 2.279735052774521 3.566350951138482 3.229052437609774 1.0197544775683518 +4.050134585508859 1.7331041264564595 2.2838651951877824 2.037781162712992 2.3300616942938714 +3.131113684916052 2.0578674096133924 2.0253613934196153 1.1402747430857825 1.391127580795592 +4.068011192177057 2.81120585392174 3.5250538757655256 1.3731122629363988 2.492069895346574 +1.0603293160616576 4.8062367474280006 4.658358239278124 1.425512023974318 4.948041747617914 +3.327729997031056 4.857880393162695 3.8720190346831425 2.650164189949767 1.9581341875316491 +3.5330933208225885 2.6594769877978126 1.9714139155192174 1.902036319640192 0.8763667885866109 +1.134238658649009 4.615049308765245 4.708011175664133 3.216241397312004 3.7870067142226427 +2.2842106943598233 4.839949252126698 2.3415216715331404 3.7668521806513184 2.9263230573331085 +4.085254319970667 4.189207221999699 4.8647434716186275 1.1595166805614001 3.706684742328176 +3.629471589961181 1.1907498160082781 2.219158115657219 2.596408418657041 2.4677280404990842 +4.44122261595443 4.015944358001738 2.9921034330206107 2.8868352082791096 0.4381129943604779 +3.4803222902760216 4.334807633830195 4.118445552942662 3.1914316222837886 1.2607537546977632 +1.0972154494883788 4.2777419795728715 1.6768666138926922 3.2656614552472005 3.55528030631707 +1.492989287380968 3.737927645887436 2.4348649853038324 2.294054214811819 2.249350107604476 +1.0876133658017433 4.977731677488897 2.855602397722614 2.7546161393372426 3.891428876814581 +1.981256236776344 3.820875487538644 3.9237642508907555 1.6508569098440566 2.9240907593231817 +3.976062919040737 2.527490263693303 3.689898077605205 1.849997016255216 2.341708490264561 +1.4023378685471015 1.1351911242493018 2.8003026439775884 3.344326344966363 0.6060768682489357 +1.0823750558495866 2.301059396351423 3.706131019361475 4.58317517443089 1.5014652748984307 +3.505543021915755 2.760739204454401 1.0603908271094116 4.954476141652384 3.964673147113674 +4.941821049443467 3.3009778243969827 1.7484751229350959 2.8739431834512423 1.9897348678713263 +2.815026457822405 2.789271706231898 3.7151356895203116 3.122887219822809 0.5928081958682104 +2.9339973033006297 3.8042555538253704 3.1866507733404004 4.893667741260124 1.9160522830476807 +1.9472245900869933 4.03205313298986 4.569728657482173 2.9674767946660467 2.6293955741196946 +2.670761512415835 2.888197988775359 4.707125797950058 4.687385375924116 0.2183307250787395 +2.1296984528177947 3.7987318229270746 4.136561735519633 2.251068589937975 2.518085938282043 +1.2271537568643467 1.0422977743103337 3.9102981887643358 2.878042649757156 1.0486768959488966 +2.9800593000019164 4.750435461549595 4.21878560208536 1.390598374716681 3.3365962816060963 +4.5715262177351725 3.8108610965114935 1.1554349651879634 3.8055742163675244 2.7571451679751644 +4.99414844753247 4.409936509138542 4.220179333106804 3.313775111642231 1.0783655232113039 +3.125868247793124 1.0467736679981532 1.7154135040749763 1.2135988438033647 2.1387969106477454 +2.1231171542782574 4.68382815363274 4.419351743662485 2.1200341922017305 3.4415261185512622 +2.1680768726246793 4.2060545872496355 4.338072112892762 2.474376023777197 2.761651005810222 +4.194577148181951 1.9984873234090301 2.9812400590128076 3.5294921878345145 2.263490869261171 +3.6103968227733594 1.8669318926128637 4.0241325271795745 3.047313034285745 1.9984609789527792 +4.737294207509281 4.564237584690883 1.381525308818993 3.740230336629092 2.365045031900651 +2.7985725354802686 1.3149152789226979 2.7925259852665016 3.1279977135746937 1.5211114802768477 +2.2264539518751887 4.067165751155379 3.010341689332684 1.942468768735282 2.12804429055284 +3.7046565944511856 3.088110804857502 1.3861926059167375 4.721243038478784 3.3915616017401176 +2.7742553312911196 4.70367619547768 4.076820653838681 1.4583152510125386 3.252573660317028 +2.885565824502896 3.2686386567835037 3.0532718423287406 3.409355032858256 0.5230105480859499 +1.8419986247344182 4.053016772648959 2.9319579646387446 1.7920689293619065 2.4875586954184232 +3.840602281307384 2.403078293534599 3.270355307891925 4.09239992506561 1.655968770250937 +3.46754370371581 4.443730370949738 1.5765929278403674 1.4929240605764562 0.9797657315065217 +2.3775984746129315 3.9898134143717403 4.608587094674307 4.519547805029164 1.6146717954686676 +4.421804539004927 4.617788638367333 2.7091043341721828 2.3021820482236706 0.45165862551760966 +4.4181463191305514 1.2259685039786299 4.387542806906865 3.0350120021660976 3.466891804097844 +4.445423991454705 1.04253085268726 2.163654253336644 2.730108622123492 3.449717708130371 +4.22376979743996 2.416040430280145 3.8538357787542576 1.2003191143169385 3.2107687791771276 +1.372953219764761 1.524614780942696 3.256013864284303 1.2553612215001833 2.006392839455427 +4.0535471916330135 3.050886680741617 3.5916783285619327 2.329657547068781 1.611838873157482 +1.2250126273104653 4.587886886199932 2.689324133199171 4.461275078404055 3.801148962263103 +4.883810375015392 4.68495762002952 2.5745194013929495 4.9104767940154 2.3444059713097793 +1.7825638580888072 2.7308223256461086 2.0081014787562834 1.068767253274037 1.3347445105549052 +4.425540473697449 4.889469584200922 2.5222712137196877 2.0643629677671123 0.6518513490696389 +4.587086565274253 2.8408780579405026 2.3651845862545073 4.822112134009199 3.0142556504053615 +1.1620186771932346 1.7944075263103163 2.7544022664765824 4.339320808261922 1.7064238748278795 +2.1967151314471542 4.112760861703859 3.8331379559625574 2.551020371149734 2.3054406827592024 +2.7300591186509995 1.2366300770082472 1.878485839124349 4.379430790088071 2.9129119365632943 +3.054886609857699 1.8307174472350116 4.481580088627814 3.892632267425242 1.3584732882230657 +1.0738635582571252 2.7530470979407036 3.380513483019762 3.2218814203309893 1.6866598623484126 +4.111680942249759 3.0629684633569183 3.7882573509997424 2.9785183468523617 1.3249434396317294 +2.0870775783713387 1.8469466797147653 1.3567821373638038 2.4716498009807006 1.1404353361187174 +2.632228478723553 4.90323946269724 2.160538247529067 4.661306785589428 3.3780666320073807 +3.722544045454058 1.062946785247223 4.239235620660595 2.326989756604592 3.27568951994828 +2.9521806063602933 4.675372391082447 4.97155823343388 2.207640893920636 3.2570890357182276 +1.9494140037778611 2.1566466074889052 2.321436956666247 2.357233821123393 0.2103016108968782 +3.7923564881707774 1.1979180684011732 2.6441056322487277 1.781102866166819 2.734206372650321 +1.9139819992276275 3.070662668403538 2.2967244806018496 4.9937219156899175 2.9345707241974677 +4.775906219425516 3.7571865481340314 1.5402087358102077 2.5096243070094517 1.4062561354034289 +1.313174013244026 2.9614055936631436 1.7482725116685924 2.7088493394405044 1.9077146497165796 +3.8477068672990233 3.259515929441404 2.8614278963476067 1.164983836499049 1.795519709603123 +2.878782307446423 2.5167390080383742 4.4080389232366475 3.684928109056389 0.8086807777057041 +3.897615459614329 2.782517871298578 1.4102545195877614 2.2369900127515208 1.3881405574092014 +4.678177500425068 2.791927091383691 2.6115107851597563 2.4216070186512506 1.8957858650551438 +3.2200067485333657 2.1558506459167495 4.463937426143083 2.0497120543687597 2.6383540998992263 +2.9404111818217284 4.45061797969773 4.618482070463401 4.868451399034804 1.530754466783398 +2.952619189759134 2.2696352331993195 1.6968259724891146 4.185713746231832 2.5808970214257054 +1.163141775750998 3.19289437054246 2.6404989271974233 3.5370502340382663 2.218941153311799 +2.9219196871561106 2.012815579400614 2.68665377734756 1.0623654081727243 1.8613927540888744 +1.789820718798481 4.481911947744857 2.6999830868855477 4.012232335126036 2.994887856744846 +3.68102366200558 1.6001050208719527 3.9127819928572336 2.52489979963607 2.501287543102114 +1.4891159811961518 3.4171131893820834 2.4226472575066498 2.442970036980064 1.9281043151599115 +2.749353241915863 4.993674364681308 2.4066782045453676 2.665335473516124 2.2591770370828743 +3.484695957931099 2.9308775844737647 2.8590926528949754 3.0371920431206876 0.5817509635382636 +2.150296672839804 3.8806414015018826 3.270255884767889 3.6000066863474354 1.7614847348617577 +1.8314109274592045 2.491262622172399 1.1170213334319472 1.0311043426967408 0.6654216620405952 +3.75176883758425 1.1421249002528397 4.440757770306929 4.733260259544007 2.6259853742662913 +3.6622615466623007 1.6887201411504509 1.9031683051825823 4.9918275800690814 3.6653351546089317 +3.0413258974232 2.0582785203886447 2.7069222761342595 1.7213165509720167 1.3920491338193166 +4.6257990714172 1.5956358577530656 3.3352352762634574 1.301810771867253 3.649205984391989 +2.750286341523085 1.8952424463071926 2.839289469975051 4.005044967975946 1.4457129534818736 +1.2494328305495412 1.003697269336893 4.4397008594650575 4.9041927984280935 0.5254890364281027 +3.6491084800190627 4.2680708538541605 1.117933261936641 3.8003913286475868 2.7529430978293403 +4.648602162320822 2.661725849385941 2.984995823034249 1.0584422734684082 2.767541519516274 +3.561725801730223 4.024761110448868 4.842560002395519 3.0214168741724015 1.8790859455050088 +1.966846236719408 2.213701083030907 3.3090081734500134 2.612972067382948 0.7385144386513216 +2.422687887304503 4.341630876871291 1.8648941708757243 2.809054062431654 2.1386397775292654 +4.944014570976265 1.1951786284125752 3.7410721256394726 2.582765801821517 3.923702902113519 +1.4210122506089373 4.504795181938839 3.001427594485347 4.930090937129269 3.637232389718873 +2.2724453046081594 4.299032434880118 1.0366355101309401 4.284185165533422 3.8280065518346116 +2.2510441069961096 3.8422434612807135 1.9513747096894734 1.9254134810704238 1.591411125532039 +4.268963913346143 1.2799737845241044 4.654935693261944 2.836423693542698 3.498720892457482 +2.4886745668227648 2.6575386184562655 4.929802520906718 2.418921208718932 2.5165532046487593 +4.634642856439952 2.5760170852396884 1.0656709346962199 1.8755341274252717 2.21219765319177 +3.4625341082238084 2.0759892744449373 2.3414929634758614 3.4915063555080157 1.8013987281921175 +3.565910051615598 3.129328227456965 1.454953528957387 3.9701765552239388 2.552831870893019 +2.613384668429278 1.808821767735325 4.201326130318896 4.708154897531578 0.9508926650507906 +4.734752267930056 2.3576812757251804 1.7016897109426332 3.897183851984952 3.235840080308825 +2.9972210458783377 1.7947762213816914 1.0828674107049325 1.1898710305122187 1.2071964755625462 +1.3259383062230246 3.237539521232321 2.4770990269269504 3.496958914789 2.1666410399729368 +3.0507794971954034 2.2380034726042366 2.6909347954906746 4.431432166621684 1.9209206035295094 +3.2090834228963123 4.709452267952482 3.982643094716348 2.5570381895554073 2.069651182405895 +4.889943128153494 4.479148306021006 2.9543432595941264 1.8433436028454495 1.1845136652595192 +1.0270270721288766 3.2485926699364587 2.842677012451024 2.920403553393799 2.222924902134368 +1.7868508457476784 1.2719620021789426 1.096923051275033 1.537411793530853 0.6775993309365531 +3.424279192589247 1.6067783587232647 2.237364329053107 1.1698279406863152 2.1078290304459597 +4.132392763428721 3.825931531932464 2.638301456114296 4.105958949363895 1.4993121769337767 +3.5824291747912533 2.8880128086976016 2.8904104826401626 4.785901921087356 2.0186881588609276 +4.576096656107773 3.3347981365259836 2.198720485274019 4.391239166568743 2.51951586272885 +3.5369305379703317 1.9214225428764578 3.770608212115922 4.280077333548947 1.6939376812344564 +4.0960573619897875 4.786579229050026 2.2439390119074933 2.0499305105970005 0.7172584941770301 +3.904307082070833 1.2992194686492873 2.3565423982919267 2.2667286103955195 2.6066353772821134 +2.084079458299363 3.2313457113280704 1.747742123298675 1.3337684437184598 1.2196696531125601 +1.6501914791288255 2.9689465069619256 1.2826523929889961 2.274678725952042 1.6502215211077538 +2.268835336779689 2.4855059686130447 2.0496529565704447 4.594258175366098 2.553813204253815 +3.130646683987199 2.8946382234701913 3.053354278207747 4.741206593483049 1.7042726987239474 +3.7929755899459523 2.1050075711249505 1.9935210970645136 1.1257146817775983 1.8979789269050444 +3.986503609072386 2.767037804198561 2.623253171995248 2.0465774707710342 1.3489446666335152 +3.6043538207187997 4.405775974013993 2.3963266595281825 4.376626067657547 2.1363200166711485 +1.699230332365504 4.750866015515909 1.1807967184206318 1.3707005731406237 3.05753884958382 +2.447341798581064 1.4409989232274962 4.161382395827552 4.054910661686577 1.0119595905696397 +1.2360922235918888 2.867599858466023 4.896556017902215 4.914681020205844 1.6316083103371035 +4.12688868252621 4.860288523689549 2.8131010422926583 1.237875675959692 1.7375874889504814 +2.0752199453175675 4.177586130170949 1.9756384206883113 1.6611917698156295 2.125751695626752 +3.685455856657268 3.4869764080706807 2.6772021840619815 3.6975242706821922 1.0394475705663353 +1.8393531959726794 3.163284736939465 1.495725365714975 1.247004264074243 1.3470920204529706 +1.672845014586151 3.352080861098451 2.80402224366879 3.519791114887656 1.8254199805025173 +1.0932225242691969 4.531799431111211 1.5713919060030621 3.015333461732772 3.7294474605000576 +3.8482828884687548 3.63809535826571 1.007076192136799 4.791690403575398 3.7904463493467184 +4.373861163094771 1.7659384178274258 2.052332808449308 3.331631804590555 2.904800675917501 +3.829217719774276 2.079658362713224 4.183796213379628 2.4889843493466013 2.435845889695607 +3.359276877856383 1.8499163167107646 1.9740993426542062 3.934053258120655 2.4737802356503056 +1.3329961184060246 3.1237907997840466 4.704104882876724 3.2013814631622926 2.337760309999733 +1.230421243281544 3.5382248536283853 4.0626373817873 1.792783216468226 3.237004083368797 +3.817105146697342 3.119245793129143 3.912155240325811 1.1204525518524795 2.877605181082327 +4.640318945912904 3.7308767531646745 1.0184303530089869 2.8442602654768456 2.0397891977390943 +4.762260649183769 4.19731645610843 2.8677585612957692 4.955756948364995 2.1630763291417234 +2.2967079827089596 4.105021775625032 4.469530528189697 3.7263660581608833 1.9550683372106763 +1.3192499696424624 4.610549233291778 3.963648399291761 3.836221833006865 3.293765075516723 +2.655525366112518 2.941997442328871 2.4347559729422423 1.8310884328569976 0.6681921500618505 +4.5018525382205095 1.7669409711756185 2.89060042004905 3.423306954786009 2.7863089440525792 +4.047069089806518 2.76998975931171 2.5302879909109985 2.8060824580518826 1.306519882926621 +3.0838466197921695 3.6608675872417558 4.836982710265893 1.5140989216034173 3.372611728294905 +4.0444628996060175 4.887345270027034 1.6225573884765345 4.6725006957243505 3.164270037116349 +2.638296821541772 1.9994035494806073 3.945381414010438 2.6354114626543357 1.4574655695902152 +2.6981539817719575 2.1833620315845477 1.2776320197393032 2.311954939766669 1.155350446778679 +4.3551760087625 1.5607878283664327 1.2533377494634679 2.5139638383949405 3.065580440770052 +1.8451825152832124 2.252244450323148 3.7731258381850115 2.095122939332901 1.7266711173569047 +3.8278993225670277 4.096889146115682 1.1116828704302697 2.4868693179721224 1.4012470484092079 +1.0844570423672097 1.1478888189778647 2.7777025142655885 4.832981319648711 2.0562574153400788 +4.7931577020107525 2.660877712105983 3.3696643879571746 2.4527057871819444 2.321084020642931 +2.6196761578501526 4.418858319808395 3.3613253527099953 2.0557757853186582 2.222952119327909 +4.131571087531267 3.4543303339133704 3.3304103127322153 2.4625734521101 1.1008159950761005 +2.7089216132386986 3.4272305272157433 4.680177685386505 1.818098792730118 2.9508411146125937 +4.063627451436112 3.168555540616283 3.972424811840246 1.1531041809462068 2.9579929927779447 +3.217444942167051 1.178024042523639 3.953897186796505 1.3923245420546668 3.274277327929331 +4.841774851021684 3.8225058053287215 3.3235310930844038 1.6705830012930312 1.94194407274375 +4.312466273092699 4.089161857902924 2.8206856460480023 1.3545916692684994 1.4830024985118486 +2.8388509299903855 1.3083366119680764 1.4252292627419476 1.476343752112205 1.5313676138324448 +2.6315450954333164 3.3088316316436464 1.8879795697984876 4.429926330112675 2.6306292753642766 +2.1600878819810503 2.1281157055975353 3.9823539237907717 4.459154402857595 0.4778712346449103 +1.3654026305652014 4.5799456761968695 1.8775959058826084 4.631227788904141 4.232703100786971 +2.6349604571173604 1.3910390278176608 2.234191638993522 2.2987002780820203 1.2455929860062869 +2.5750396695823037 2.300628558226342 3.3978176287947313 3.2819874428125395 0.2978558208601656 +3.0679129599482864 2.8318449468635998 3.960358839088192 4.747435934717604 0.8217167767948895 +3.135676949048509 2.9362562911524672 3.8546849576473337 3.0007599608461595 0.8769016472544543 +2.10432995858944 2.345512355992822 2.544898548677438 1.9929335896043612 0.6023572568350001 +1.2768780324989195 1.0904203672992239 2.762302314167173 2.9538541045162092 0.2673173194868653 +2.84906301601056 4.651277797000912 4.897207954458551 4.465660988025418 1.853162405472802 +2.0834362707804392 1.4473979103165089 2.349080590603549 1.5367879556599742 1.0316802415308826 +4.878553866765284 2.6490490102511903 1.1266557105649806 1.8104967600520947 2.332022831402721 +2.807328098547255 4.6315480225497225 1.8597739541103735 3.212907040871351 2.271287626350934 +4.625389334721631 4.410753319600101 2.7949058197599608 1.0047149585047652 1.8030119075338544 +3.4275962259750306 4.1478180473458135 2.680856080140745 4.481918590688803 1.9397282384087524 +1.5413376195202564 1.6811135691280095 3.111642789537972 3.6976161598532076 0.6024135679143898 +2.307723993009928 1.0549725068935918 3.5006286112013365 2.5915878831991357 1.5478182487402905 +2.615102710432069 3.6040722799180926 2.118743742187495 3.356617040178427 1.5844213805829301 +1.3699352464253436 2.1958871568157377 3.1857755759818627 1.3172967340329795 2.0428924937666646 +3.18398666049877 1.5377643983492582 3.6036864635328327 1.473212255428355 2.692390775462406 +2.4277301254769386 2.2978432266971356 4.824981449854042 2.349891503686105 2.478495682484889 +2.3792412774780067 2.826544613257134 3.1968191749824455 4.202034927951022 1.1002449655487259 +4.088266758808889 3.310245741288878 4.6964939817186515 3.6973748201865493 1.2663158384240023 +3.1940912880827064 2.4962555009979335 4.98822729335037 1.1096794710205797 3.9408258012547805 +2.5301037520873604 3.720913665364591 1.1940410791609364 3.5375651323034134 2.6287132284097994 +1.5903578151482982 4.346073358922615 1.4492761684871343 4.889474283366298 4.407826134027694 +2.2396857779559665 2.672796774211267 1.3694703833393627 4.281325811499666 2.943889802554417 +1.183175092585651 4.3378609979831655 1.676698710043469 4.619705471421014 4.314317090714089 +4.593803303237797 4.1381209478927445 1.69729441699628 1.91718493669046 0.5059626958820099 +1.421950087484121 2.2654024623824953 1.4540264617231284 4.679872749848286 3.3342909566102006 +3.847955500983347 2.046814275049017 3.918690567690991 4.95873522812704 2.079856392028488 +4.068616833358091 3.828780313569202 3.8754005185162326 1.7402689730342091 2.148559580913897 +1.8783117840313608 1.647670174395527 2.756380935817386 2.2558647276768227 0.551100740978286 +4.468392778908254 2.613434505348356 2.9162842561540554 1.3794567662594108 2.4088812611551016 +3.724167303101917 1.4154904971282498 4.757965017078741 3.2921555292408624 2.734700358188501 +1.5403504717617764 3.7543361608696304 3.18800406307826 3.6925608315359786 2.2707510132488933 +1.6767328491689946 4.909456661562675 2.5125692242229816 2.400529648142682 3.2346647606553276 +4.6022137162312236 4.016539693957602 4.843490238334276 1.5570021198302681 3.3382657493725953 +3.936278755054973 3.863477564474315 4.103097604882558 2.8177630672595497 1.2873946119805357 +4.648653793205031 4.396428849058085 4.9859564156791425 4.775943703825993 0.3282114586510408 +3.4755065980652735 3.7818952587712364 4.694810932838183 1.0208435714689568 3.6867207900538856 +2.0247538957701794 4.015333697285008 4.6223679414969085 3.5889411594019784 2.242850610305978 +1.0652113373816725 3.221653002899441 2.3729188801671555 2.2503881487186184 2.159920007067475 +2.0803444035988354 4.399129253066022 1.1264813329886616 2.664999550025226 2.7827686720731806 +4.62703565114847 1.4191883286699971 4.373860194214536 2.525308466837001 3.702354377031293 +4.762652061643774 2.1951453897717434 1.9564472713437944 4.1097831384180505 3.3509619315259056 +2.52793423339941 2.5368575857902194 3.9571990837756625 1.1025713751632056 2.8546416554439715 +3.6463055532681845 2.2046733316855205 2.735577327587827 4.016534814190427 1.9285112249578995 +4.803474277963847 3.1898999961766608 4.282545580335029 2.8935885874010334 2.1290428579681717 +3.8166747222677846 3.831997096773072 2.9613191143520514 2.0034073452701273 0.95803430653925 +3.395914637245693 3.25664610530606 1.3933423469441997 4.457494858332327 3.0673158195782166 +2.5169063474642477 4.829269184779008 1.1845647901697043 2.786233810957356 2.8128927358762272 +4.3359769176079155 2.617966791639194 2.270817255123461 1.448577221958884 1.9046357827861857 +2.6637554007641606 4.4161174152824305 3.429408347569561 3.7205867928014316 1.776388897987763 +3.2478984992114794 1.7284692564992765 3.6966793088943763 2.4487836554988056 1.9661914416893735 +4.82784530418318 4.912315465356939 1.481474301453431 4.47667880272483 2.996395369867797 +1.4441827845766029 3.9585463034414454 1.2798011114955221 1.9507280796856787 2.6023387369140147 +1.1831652081549207 3.5937365019373684 3.843433056929305 3.0284360217382207 2.5446166960424987 +2.5548321186960687 4.7872095688322425 1.2575893191587038 3.57925801911654 3.2208158333317347 +2.0240510774437186 2.084244431062993 1.8971150194845552 4.968060654415018 3.071535500774555 +3.7884356758920434 3.3406755760213134 2.8372373344770887 3.6516083277130433 0.929348815924549 +1.926892999660112 3.100985090610313 1.458060436924388 4.590962897563691 3.3456793130710563 +3.0820001381944917 3.520464115596877 3.562797057940177 1.4344957816302073 2.1729972347479336 +4.679584960048121 2.156204551488568 3.3768149466861628 1.9196425298725415 2.9138977570643463 +1.8984610830902398 3.727234355222245 3.614267299127111 3.272626031131244 1.8604113622697065 +2.1672374848152787 3.100385125297969 1.5747151702005806 3.046103195998542 1.7423395884270192 +4.962800494396835 3.5230070276426257 1.0741815753210235 3.799414579358944 3.0821908041530546 +1.8293545894186347 4.492333271505817 1.9133580256670029 2.343276438553866 2.6974590456557346 +1.9727965474426568 4.912221627685634 1.7965879813440582 2.8638740675036916 3.1271903351205506 +1.931117870284878 2.244856588634548 4.377350070361551 4.440757200320517 0.3200819387615098 +2.6796766465899267 2.441183776039693 1.6075646872949196 2.0277633118176737 0.48316222260655367 +1.856989382655593 4.966395045721958 4.157516720249798 2.9072835327987088 3.351341015252445 +1.1252500525615634 2.6912619699545193 4.170413021624936 4.158663786469308 1.5660559919567065 +3.359109321687556 2.984744413623748 3.447932539266917 4.338119214052752 0.965702542378286 +3.530026693067083 3.377249734889053 2.604750451841904 1.2104335156448598 1.402661939854377 +1.3544549400189032 1.464820868130535 2.458794597924168 1.130714471136486 1.3326580436317215 +3.5642538578120475 4.326370977732536 3.470650147276944 4.3600802627766235 1.1712849503146845 +3.1251517097424095 2.0937961182281515 2.00388796097424 1.7575106014730792 1.0603754803947936 +3.4844337214429557 1.605319729169283 4.868068662094776 4.469957790763935 1.9208231729731144 +3.9994913132742456 2.24599325953257 3.632721025029751 3.4475593213626867 1.7632470844951746 +4.538317628099513 3.890164770417961 1.14484971978017 2.7360773556397517 1.7181698158342895 +2.526315534665076 3.436719101726685 1.5891769187799425 4.749080874135345 3.288438483838373 +3.75955697388586 3.870485673413098 1.4149541660956038 3.0910082379154984 1.6797209375497029 +2.9411251591577585 2.788604989694526 2.4771157668472648 2.6571266027967924 0.23593707456086854 +3.9414598575043263 1.1844868147361187 4.052250196847208 1.8685727999511306 3.517008292891192 +2.2152586824584732 4.777683566254159 1.370097813264644 4.748955130057496 4.240601142802742 +1.453779567433319 1.6897854301082935 3.221054429978029 1.7241051947586628 1.5154391376894039 +4.568980250762248 2.361754536345106 3.3598184882268756 4.4001252914500855 2.4400990961878493 +1.5474212956722955 4.152888333368752 4.474965315928165 1.3219554106005065 4.090223703859861 +3.8660339375204216 2.600187650931227 2.135124122070213 4.982278906635647 3.1158718183753162 +2.078386394792173 3.6117690324283704 2.7903929317996945 2.108485260453538 1.678171739019842 +3.9423917590444257 3.592428755410967 2.473768029493876 1.7309711641173595 0.8211097899339228 +2.667619710307109 3.468565892770214 2.6322569131276814 2.6023968747256414 0.8015025945657277 +3.6038109875901507 4.09693790078094 1.444678075066658 4.984457154540337 3.573962798350397 +1.630436667095874 1.941084664479582 1.7393002693868267 2.416011049577596 0.7446070495938834 +1.9162959184283657 2.928030379357183 4.721015817599865 4.778645861033639 1.0133744822804172 +4.016584722888673 2.8404675952591805 4.109206240940522 2.3878335887279967 2.084796226418456 +1.7055501847352859 4.579981870487828 3.389503621427202 1.6177738985074912 3.3765935093131 +4.713974083436979 4.397144885916074 2.633540323345856 2.818383230377471 0.3668073618149443 +3.258966396074877 1.347624697084453 4.95352507089639 2.3813011046672536 3.2046159243727086 +3.1232568323202705 3.598917053550488 2.738990437655817 3.8662988424407216 1.223550932964977 +2.044452918233392 1.1669720358873672 4.4350969715133655 4.478390865137131 0.8785482685133835 +3.8759112263130917 1.1727755533717574 4.324345581497864 2.360770468367734 3.3410432040355307 +1.1381432105579843 1.9080781981962591 2.189951429759772 1.370649020639925 1.12430259395731 +1.4537010086988627 1.7830474737271045 2.244645144919754 1.4687601866782805 0.8428917857305126 +2.9334663261132126 3.3296563207350487 3.9085098317668243 3.5723019485345167 0.519617409818031 +1.7169584015363664 2.148271659336504 3.4626034000627195 1.915821119703704 1.6057915646766872 +1.0624127433254307 2.8347045527632586 4.135417537778828 3.2451138509981816 1.9833453840659276 +4.854950347180935 4.189725104070316 1.3298570489556094 4.962365619950242 3.692917971255394 +2.459682860521513 2.0231682125667376 2.941747128980171 4.420353867534555 1.5416948223229894 +1.7903416243452557 2.338006294684612 4.135566860848778 3.986249757215202 0.5676549907958492 +4.259522370588504 4.5284557839031 4.137228864707248 1.365455361348828 2.7847896751311128 +2.4721492147247623 4.90206752187828 4.0483836627942935 1.6276526444743311 3.429933183386554 +4.772086385843031 4.090924757468034 1.0824997187108467 2.405418606852666 1.4879837191894487 +4.559663950079383 3.735847947219154 4.5476263729372395 2.0362336872245903 2.643059974427292 +3.950823094891761 4.331523015230385 2.384210794158401 3.3602252002877866 1.0476337863575858 +4.557965548132305 3.4721913321807643 4.12878760722414 3.300692068713373 1.3655210979426942 +1.3036778257467954 2.312119744149513 4.071200894584947 4.377172553931581 1.053837634133023 +3.5146045161686224 1.8905803790435005 2.0840931592828515 3.680594690832798 2.2773386964187656 +2.9449317494388856 4.8662443650597 3.6026910866207578 2.726181854457624 2.111802689886274 +3.3958923953988416 2.6019811358533707 4.091724387092384 3.1119013772974706 1.261090091372 +1.0534759247138852 4.536819332699988 3.8224195374111907 4.019490441679055 3.4889136187743586 +3.211334687990007 2.0467311332221834 4.928902147391753 2.80781825699405 2.419772367368986 +1.6829517106656522 4.864676621917207 3.6523411257616005 4.604495570050875 3.3211400898875874 +3.113695627404244 1.4991987783955079 4.094520639030011 1.0114270440976192 3.480239386963529 +1.2601222714843847 2.6316104985270803 4.616134252976309 2.9408029876911606 2.165113116065452 +2.1204750411875777 2.774643185752133 1.9466705688924577 1.9590177141552751 0.654284657743993 +1.230438333634087 2.1907375599292944 4.970705757911242 3.491093065260136 1.7639241265648107 +2.9639164927078747 2.125576213945647 1.8588464246417282 1.1245241745692272 1.114470093787478 +4.258548291269419 2.032385424672621 1.3667583571182167 3.960387204919534 3.417998201983386 +2.8267430707008976 1.438079719481304 1.862911318799969 2.8275825988814525 1.6908508454723261 +2.5414007076993053 2.176346645462792 4.59165258462037 2.0113084613549597 2.6060391905774782 +2.2680883141143857 4.8932493176282446 3.8170315917234605 1.884011655347352 3.260066927042662 +3.34907251498027 1.726588278180163 4.091714280484613 3.029924081977512 1.9390341730641505 +2.0571719919742733 3.4763616346861426 1.6533449457028278 4.597212921753904 3.2680969848521486 +4.203642012233084 4.048371907722839 4.220764656718843 2.7264399564238064 1.5023698330525919 +4.931307860212112 2.761344606182931 2.8758777309651498 2.15034695231658 2.288041834102539 +1.2243632100470134 2.8952968064139153 1.115919322409343 3.3800213269749175 2.8139255445987694 +4.7668233656049335 4.2196124332357385 2.7902101569468916 1.9801248969718381 0.9775878134127969 +3.6193064709608542 3.21910733310014 1.9423053220856645 3.9232378503610343 2.0209534956361335 +2.3800572177533796 2.5881893906397 2.7067699481663783 4.6167873515310855 1.9213238879862082 +1.5710058131709195 3.931928814179375 1.3038176187101085 2.8469227301096893 2.8204841431070458 +4.00744852762419 4.0774337756961945 2.085565779696346 2.987591469148308 0.9047365801043898 +3.2793725937463853 4.6573445762191215 4.193967558906751 3.1598141891673275 1.7228696922934268 +1.9049910307183002 2.671315349423808 4.061841517272658 3.5152182682448667 0.9413022563540147 +3.871783348491719 2.3889737240976134 4.335514294929146 1.2998091962002798 3.3784952018086725 +2.9110677479537332 3.493994066161098 1.5065798622855744 1.0065044694740486 0.7680354750624452 +1.3106459588980082 3.3675279194198224 3.8105449835938905 4.576359696420961 2.1948201689210145 +2.235140492096671 2.3690744076436294 2.403009825457059 1.086189155507995 1.3236143586932116 +4.431386642030527 2.3947041406041722 1.2705679532899858 3.4984704218200244 3.018546839275242 +3.075484584895762 3.214746236467818 3.135983656050932 3.3519343628087377 0.25696014350045115 +4.29094242740816 4.943341628688879 1.0235719465970785 1.1281701907956294 0.6607310424984889 +2.071466426034332 2.846574186506145 4.793611168589361 3.310280847462951 1.6736370221516401 +1.6805601971458608 1.6982776599588183 3.4157236913587634 2.8351361055434414 0.5808578597999621 +1.8808516744541164 3.7446934417750786 4.23633958677058 3.4401978774900255 2.0267579418535133 +4.536641334763409 2.3125476382779553 1.0167993258794916 2.323853250220502 2.5797253210141515 +3.1832371955950283 4.80550893990231 4.3737167223721585 2.0245721398410286 2.854863548755553 +4.483472746614187 4.798117682167126 1.377367584638582 3.726728179804153 2.370336820282265 +4.534362711089155 1.7057676983713246 3.1140149749561274 3.431166096787726 2.8463194796177094 +2.4483655862651132 2.4959990211448186 4.860402520989085 3.9719542922275175 0.8897242265488821 +4.51058240500022 3.2922730076452273 4.380780721416736 4.537654026303697 1.2283676247238218 +4.7574599943506515 4.9013412599947355 1.1371210272485945 4.787645636925002 3.6533589673691296 +4.661408942191651 4.810804593295133 4.7639309987468925 2.756057196904204 2.0134240151281713 +1.2222974072233002 4.0388642659929985 4.834462377408567 4.48479380600134 2.838189031715431 +1.547189453176372 1.6470979845663551 1.9133209876298851 1.5581991298595081 0.3689081843911668 +1.825216680650541 4.859591378185578 2.446758769527887 3.3164004025685085 3.156533917916677 +1.3832560979650728 2.6353574750343416 1.557079821083049 2.0297104044728083 1.3383338622384564 +1.6875799385462766 2.399379103247716 1.1731073855839602 1.9370619374083118 1.0441669445652897 +4.62049722013284 3.6625173030164913 4.114112714577852 4.0961660584152 0.9581480073901252 +1.223553357893365 4.620250264371942 2.0480172386912647 4.951372419865681 4.468447289890914 +1.4329446458692803 2.396100707653094 4.589254753702014 1.591544837157969 3.148640078366756 +1.9764071010240372 1.9393741715563273 1.710654224721499 2.3119491181550975 0.602434217765129 +1.461531515400504 1.6075308850667027 3.801606513021815 1.260551447110577 2.545245894591737 +3.2693255370650482 1.3812416867675417 3.6230207827652157 4.484708100497347 2.075419393591245 +1.8163066294432162 3.3730856948746366 3.3715446118951946 3.4584557401460545 1.559203194833619 +3.7885018638757733 3.069605209817968 3.0316772004994506 4.86103466438216 1.965543469343501 +3.773075490627355 1.1588299264637687 1.2308367785129133 2.0168767562083993 2.7298605671873624 +4.443428011548914 4.3860869843025885 3.250503513167262 3.4062157107384357 0.16593457107579476 +1.0284759650278366 1.7867818759035248 2.6159153740515264 3.9845977986672394 1.5647106550161132 +4.838394133534708 2.5033212694078704 4.856833165770067 4.692160180773807 2.3408721607061524 +2.1646842838770346 3.8578708112414195 4.848146208787512 2.3469179586180173 3.020434302529061 +2.3372683915171297 2.8795744351148254 4.205281792103069 4.218585293606667 0.5424691955077652 +2.028674566262685 3.6659396195327125 1.882959599229439 2.6382494485185695 1.8030805891857702 +1.7493854071640236 1.515710928881001 3.6092315002099813 4.95652212587773 1.3674047651712484 +3.2983918352008708 2.78522845621859 1.8430088769356332 4.342138017904837 2.551270882672003 +2.4225834244109743 1.2994961703818904 4.2768219851658085 2.6427208207996045 1.982829189704845 +2.8441303914683593 4.153638363190082 2.1774275329584416 3.2667827970883083 1.7033807617471184 +4.9311889045882795 4.40276610142449 3.3549809717115013 1.9391804271168969 1.5111988092166615 +2.1430312903829525 1.3482411784023864 3.9002746234135808 3.848596796631445 0.7964684048240741 +4.6546045558303035 2.66929564483344 3.4816334294509335 2.7953720182375 2.100572825827328 +3.4805505255679288 4.402103825379584 4.300673080473445 2.7141583364369457 1.834745082413072 +4.873434097576192 4.339001481549696 1.9929065044967071 2.5500440108806792 0.7720235890778694 +2.26172231237072 4.706845244895292 3.690531275641668 1.0995455736280033 3.5625599031029367 +4.610730359522422 2.5094702642810955 2.3770938498507217 2.047239550274428 2.126992676715779 +3.6739229926164927 1.1863015289222454 1.3627637568303457 3.579820001036749 3.3322063166327074 +2.9028468969325485 1.0293655375625428 4.6055241720800115 2.68668884005107 2.6817646122188843 +3.208729998959855 1.7742712070905475 4.6213836654559355 2.8713087322664452 2.262837664824711 +4.094553271289893 2.0942955917336916 3.8203992450376236 1.8833547441678427 2.7844518640072446 +4.087634628890802 3.9030540977515655 3.1736995371614865 1.0867968104002235 2.0950496326911296 +3.113113307947401 1.4935235159802565 4.808622203368822 4.7714720563523025 1.6200158109313403 +2.6592551689651227 4.236413008506693 4.988256579830392 2.428545072781315 3.006584415935613 +3.3450766968047367 4.639445443042893 1.3670519961182093 2.275519631590716 1.5813614058586178 +4.373088212277612 3.982702207690735 2.2939605740195956 4.175225060448783 1.9213425775943704 +4.926900059171138 1.1222354591796777 3.4935055312013255 3.7809495419805494 3.815507407640696 +3.329708004124419 1.1517645760176896 2.536126206323277 3.0099401712081635 2.2288869978877863 +1.287453654980581 2.364864888400648 4.978692121004005 3.8055695470232744 1.5928061839040317 +1.6109100344565004 4.307678865336472 3.788477545774689 1.1737193360587965 3.756264450552222 +3.8903909004698622 2.2156426826094644 4.721752687196793 2.3733489561907666 2.8844031751871313 +2.2475945018014567 2.5264364861290116 3.1061407018315887 4.676598021979888 1.595020077187465 +4.032359410127452 1.1735997954231974 4.1299078841903585 2.818546186877065 3.14518298924632 +1.614735063785429 1.3613292579208531 2.470947884780468 3.325960659908479 0.891774269688231 +1.2509658305672913 2.843394872851164 4.526758474320787 2.6557086147107176 2.456961096935805 +4.01074122590115 3.419524978115388 1.6410589585780317 2.6270214174672875 1.1496341252697846 +4.180915069739831 1.9230863372596794 1.1178742158993682 4.713681685998957 4.245894716927981 +3.2370608387937265 2.46397431305722 2.6443813021721554 4.661666272122633 2.1603475244190324 +2.3500737709906847 4.071807752384885 3.49144188966688 1.9474921458617107 2.3126064762694867 +1.492850443154957 1.3835927465769151 2.2405569819234854 3.635418663937337 1.3991341451812442 +1.6697272802003482 4.265971404490001 1.6438146153458724 4.771919287782893 4.065159578003164 +3.909769727519885 1.351638564875533 1.5724192896397344 4.50124330687443 3.8887073905377516 +2.683538393149327 2.718253511027997 4.518556960830159 1.9397378896228825 2.579052721723945 +2.903282657229459 3.309267272706582 2.846232527997615 3.8807562293375293 1.111333791728724 +3.489748623108565 3.5540389089835984 4.31513028114154 2.896424051535973 1.4201621762247922 +4.479208597207501 2.9511921950143933 3.291603723056258 4.627737088045858 2.0297996192751646 +4.696120894914749 3.488247138631515 3.0073760996029617 3.7356557694970975 1.4104432951022459 +4.7364409636145615 4.591585739333093 2.450020967915345 1.2333569602909304 1.2252568479508026 +4.87234396604603 4.799042769841108 2.2946893508087034 2.8196591539900413 0.5300625997156609 +1.4106672554187512 1.3734690289269897 4.410280157473711 1.9111846364149896 2.4993723474964455 +3.387423396829095 4.290036689296271 4.493458859374554 1.5381275945418982 3.090096056862282 +2.171621958248745 3.3164377725750835 1.1113820143927708 2.2143945931926736 1.589729536028846 +2.928499904511078 1.3428011168314269 4.476790525362466 1.2980254070697708 3.5523215398557446 +4.234731841987274 3.6141839333094974 3.0979586157923733 4.60678756521885 1.6314547206685717 +3.944743846761226 3.083749659454919 3.743934883576773 4.579746850649094 1.199955263698006 +2.378813040681489 3.6992639108327965 2.447554805661718 2.3737880179525073 1.3225097502295706 +1.0213812629208205 4.236742207658958 3.0076015263180045 4.656584804591094 3.6135428400631415 +2.315699316836487 1.3320651020789098 4.593758084192506 2.167138706376019 2.6183998688581216 +4.764354285649876 3.8212960016180917 2.156290358129336 3.4791655167067277 1.6246099877392524 +2.9962592110823465 2.8322208691686352 3.6789895213782544 3.5146161823792306 0.2322222474085712 +3.987203980777179 1.828483899413329 1.188527221962782 4.294971824911805 3.782865377048813 +1.9790077475558694 1.3140991449054846 2.615259538159264 3.005725700309026 0.7710818851862956 +2.567093117971582 2.0639964788499894 4.403587757648262 3.5280823285525855 1.0097603600218457 +3.381651468320449 3.3459495282424614 1.5080831550385967 1.4604563130626582 0.05952263940664275 +2.2630942253054434 4.741202174816307 1.0863647444277271 1.1937828560967643 2.4804349739800635 +2.3040887393385807 4.225362557273028 4.330584460455061 1.2829577193725767 3.602682588910859 +3.3318234575366783 3.426606831655921 1.9921263570552252 2.804297040782259 0.817682767040535 +3.5796377718245953 2.9242464665166192 2.23879142487637 3.4704988584220433 1.3952207584912724 +3.4699610943638413 1.2536846700517663 3.620434389915389 2.484813489892127 2.490284324636679 +1.5670577032894535 2.102462299047392 1.9531074167652007 4.251418304581769 2.3598497872141997 +4.039376922958542 2.100696529730344 1.9216061301006326 1.6313608207888413 1.9602867154232664 +1.7638162104724082 4.774045134242211 3.1456545161200755 3.0689081130524114 3.0112070974750527 +4.730997219704536 4.41597354669714 2.8103648953373135 1.658993434343611 1.1936901422671813 +1.8980059322022815 3.311853139974564 3.2060402503397922 3.9438221959618756 1.5947683613024768 +4.563972399597311 2.298315665037846 3.712016424376057 3.1860305436538954 2.32591091522735 +4.789215833427409 4.052581129222194 1.9582976004097952 3.0769685071971593 1.339423489838807 +3.6275925043196837 2.1974872685298883 3.5856993900891427 2.6341300985803175 1.7177558330496199 +1.3997383619721209 4.853194595808656 1.6171325557495346 1.5049361932129872 3.455278278632686 +4.666543927411585 4.48857850983503 3.1550481641770873 2.350682856697533 0.8238174784076118 +3.863076460832717 2.889721490795314 2.381362857191846 3.83769175280618 1.751660283815837 +2.655057340415824 2.7830953493275814 3.6215136205329053 2.9719628689596553 0.6620497795449078 +3.151979942453414 2.4736131436633366 2.645874824135783 4.34117685697157 1.8259875400007115 +1.744478075999063 4.575270592016132 2.2854665573209716 4.528496124816121 3.6117264444301043 +1.5699495036467956 4.309570568758808 1.7083278410116591 1.2036985962354083 2.7857089322269344 +2.759136313881124 2.0763947895759896 1.5893874324118453 3.4391093097855485 1.9717015526304673 +2.655875186247062 1.2864059597907467 3.8291146518973145 2.157399167937225 2.1610364692718114 +4.841510590583994 4.2443943073481325 2.008179399333027 1.5938823722126756 0.7267667317552243 +1.602166449144784 1.1789403040324458 1.554849639088994 3.01957791087285 1.5246472641465538 +4.003360875777463 2.674370200724497 3.5908030103946533 3.021137702367666 1.4459373352767468 +3.2044558174533084 2.8342111465022826 2.0915902310423307 2.0421754574712936 0.3735276913626489 +4.658806990270895 1.8229175295090343 2.2864750780223395 4.504135961611658 3.6000401148129377 +1.5492227492105943 1.1112164729921532 2.9236085785574657 2.9847628199174716 0.44225483518336256 +1.6915033305872522 4.401793285939089 1.4049155110138867 2.1541069047935224 2.811931611294011 +1.1562447558170765 2.799609355862201 4.608085393273663 2.54774316326621 2.6354614991370218 +2.784886088332475 1.8013965072711189 3.4450912654257024 2.932063474261055 1.1092561789611624 +1.8076884059690306 1.0568873339894682 3.7393590060406168 4.263027890896543 0.9153859025853028 +3.3821097918767515 3.567778596463108 3.0881309148612233 1.6744777269013356 1.4257938984389293 +3.868276639714717 4.924705053888286 1.3825175647898726 3.0098482074327917 1.940166491504762 +4.615328782844496 4.053185021020949 3.7260423116186216 4.558806074268384 1.004739316111258 +1.7164169670839806 2.3127919094693787 1.1329420251213556 2.0799677651655295 1.1191607678128297 +1.09939837440765 3.7049408462008193 3.413293293485237 4.07728035851759 2.6888157978649887 +4.288289868765482 4.540101085750861 2.1211089238038916 4.9363253555068916 2.826455810079158 +3.1564814299939936 3.969083881628174 2.5269199077188165 3.914080777507019 1.6076498446718561 +4.641998433143755 4.885851176773331 4.685960991655331 4.140924650273702 0.5971003048084498 +1.2643627921791207 3.271708633821217 2.2188322239619547 4.848028618377405 3.3078861843124256 +1.1377368330061315 2.4166158588112014 3.1514890367535724 4.4970562789656245 1.8563627786503025 +4.693821403041962 1.2662206826521678 4.56005709475595 2.2033714705870304 4.159617029196449 +4.392642178136963 4.691465640855752 1.9375225015220456 3.528988746328893 1.6192777001585783 +2.36795881976118 1.0851985137318545 2.150624072157752 1.1924423865079437 1.6011202782549339 +3.324495330104064 4.3248557663912015 2.16176498916422 3.9956283914600847 2.088965289507884 +2.9615648894272533 4.235761293253709 2.1855970072571504 4.146983869243696 2.3389345646891666 +2.812871878476685 3.532907195690704 4.732839190688848 4.292644536299336 0.8439325753806373 +3.8505134547744335 4.580868354577021 3.7618997974693507 3.267293719124937 0.8820733826620593 +4.8966615658316535 2.3049620549517535 1.2165915598496704 2.739849768694763 3.0061972532601837 +1.4305322900520951 1.1377890192881348 1.5176447384889502 3.216896385229199 1.7242838459856396 +3.5977003315901173 3.07096187741174 3.52451039925913 1.7596138991920731 1.8418232963721501 +2.100727060252392 3.871916548718308 3.6098734197332134 4.142768443418108 1.8496186932230863 +1.5586097784796706 1.0731898947271814 2.624482425777388 3.295559392853055 0.8282371395208958 +4.982244300089057 2.208320874314883 3.122302755365611 2.783694701963766 2.7945136582037517 +1.4495567905069113 4.920751090049705 1.4300003647994486 1.990601186927547 3.5161716606202664 +2.3075230201515793 1.0709422833730224 1.805057532006758 2.0148240866289977 1.2542463577821876 +3.7224661940706443 1.7131422451542866 4.893132533033034 1.5406274961229265 3.908538442205279 +2.3609542011082527 4.421680511538495 1.643827810907935 4.667274667310904 3.6589375261122505 +3.418569792490671 3.338280552339777 1.0454869645518445 2.5794818099107064 1.5360945764084861 +4.254909744147815 1.8353907876597786 1.988200548386323 1.8806380449294746 2.4219086838596664 +2.453958691456379 2.4199920159805477 2.5105194967918734 2.486220387411344 0.041763402155084936 +2.817451991645836 2.8161085499805942 4.9193081925808 1.8952594082292897 3.024049082765251 +1.9475641956064589 4.5415444147270225 2.9345799283224974 3.986238889680228 2.7990569748029044 +3.738138694564368 3.325310982090782 2.3671242287254124 2.613224274483372 0.480616221852991 +1.8432267879472417 3.9921653507884005 2.2457731859488987 4.627666296804945 3.208013674909962 +2.4253453792128052 3.153296602651108 3.9032150141576465 3.144040265004057 1.051788611583971 +4.259329551354654 4.831028312271032 3.3145502042647097 2.1436753859115587 1.302991678210896 +1.890886490278901 4.744897429222499 4.616762545629291 1.6501462779822988 4.116575095765591 +2.743680525551128 2.9870355970713964 2.435324092385639 1.4373442869593411 1.027222168215497 +4.132151676019621 1.637832183507622 3.857219874104151 4.020346594879074 2.499647986768556 +1.7457051708178253 2.4732638082717364 3.7761633321716914 4.468722130559687 1.0044795966859736 +4.548081884735263 3.408738172649108 2.8374986015891683 3.3209323015540444 1.2376640240921557 +2.7822188306414795 2.6732625711760143 1.6045131405398445 1.6229324123549418 0.1105021993034718 +3.8730877089333866 3.8769831984475536 3.9852105945603684 1.5026939221254314 2.482519728774776 +4.269139922827958 1.6334137509713473 3.94990777426728 2.1480275924777006 3.1927769484472215 +3.909462699425388 4.459584557796035 4.193875442475085 3.4010256048720895 0.9650103232837827 +4.0148206610068895 3.170505556857394 4.8750433092735665 4.957164427542184 0.8482994006603222 +3.0457615369137705 3.649386997419791 3.6854382133182453 1.0624978177004376 2.6915014426031445 +1.9094551975909528 1.1296194015876195 4.364961175889268 4.79923082567047 0.892599572848453 +3.8665169989263064 4.8814702743624085 2.17543009372417 3.553520402210179 1.711508997832479 +1.4687458807490956 2.7777657265721283 1.94214423955099 2.1908349897217727 1.3324338805280593 +3.456165834350508 1.6068740599824198 2.921414556724967 2.8833963427109683 1.8496825271765658 +3.248301061502032 2.5502606469973257 2.2264140398645043 3.600748175138418 1.5414456641935188 +1.9465972757774805 3.6224201391424122 4.714946705847179 3.0654135383725434 2.3514552813046525 +2.6379481643115024 2.8553881952744615 3.342031351711784 3.5275582261772858 0.2858327976529472 +1.5446058599657229 1.582882974926597 1.166449083075682 1.941495327898357 0.7759908627963722 +2.006036166561617 3.663416212861884 3.102562269640359 4.516145974986896 2.1783313590671924 +4.644777996589713 2.8016983660409625 4.397221003324283 1.8608728860064914 3.1352837665457374 +2.4522608902628704 2.9018345513221537 2.3312325849340283 3.877747896755783 1.6105359624725508 +2.6366212144846233 4.598876682460914 1.3158377815481037 3.5614146888402582 2.9821237680831847 +2.5675290251697427 1.8675797787523933 1.5530710121399394 1.9086183335087363 0.785075057107753 +1.2643886504686304 1.0093996976209914 3.120181697270341 3.4901108993054866 0.449296094566484 +3.3811343907405433 2.9513533676820165 3.9283096439605183 2.7367234602996624 1.266723869228285 +3.6479567082743487 2.662534358400631 1.344332770016604 4.793735179210243 3.587399362794937 +4.906530301134497 1.2856300797866789 4.409719802132233 2.8189256104234217 3.9549392629130433 +1.6591794350472275 3.973131141182404 4.616984879236213 1.7248051825710413 3.7039270910923907 +2.562724899231027 4.842541234498789 1.1291886356809813 3.6023752698433116 3.3636608999649362 +2.0214473171799865 2.552776632712724 2.446893463599601 2.798044419225493 0.636881335243438 +1.0047692313169936 4.7695427557924175 2.1267955136051917 1.2953317198522294 3.855496301504279 +1.3147126146116745 4.848365623768377 3.1374305325727105 1.7684786609244547 3.7895557544402854 +4.3497119444239125 1.516249059343552 1.4746576460646272 1.9241992299700934 2.868902151832327 +2.8079323867268347 2.086311369973343 2.8688436717398935 3.881654242252151 1.2435924346672858 +3.8102839107111 3.292061387778526 1.3370177580557057 1.3121601900086208 0.5188183516066269 +3.146924650403874 1.4501452597866442 1.1134582006571372 2.676108742442402 2.3067156340054487 +3.8765524256109365 3.9193544188887666 2.7134973555120276 4.09891867819729 1.3860823395381447 +3.767439623289583 4.153481654792474 4.226844876895367 4.935129169864453 0.8066567360120396 +3.8061029350389166 3.2613000078820087 2.615170673118541 1.9457598012989625 0.8630881442523604 +1.3313221649274078 2.768267383130323 4.2433935005958 2.791057557793379 2.0430592871652107 +2.5387578802214343 1.8371565368661193 2.4098289315154204 1.066416700790303 1.5155859812824277 +2.6314801887786157 3.6926306231483426 2.1707615687004718 1.369218272279292 1.3298540898913653 +3.7527090352822814 2.1520351679806584 4.42001492895924 2.425613092989782 2.5573023897812086 +3.5592613926539327 1.6206783259656752 3.6215949757496397 1.9910047765533876 2.533165747471989 +1.2568242275646564 4.493192277933218 4.395789788577655 3.631149067524039 3.3254704313434815 +4.738223322194458 4.663757764861666 2.756897273615817 4.247119313324322 1.4920813807771542 +1.9760377466091712 1.7203369360008889 1.049649528911373 2.616505193060576 1.5875829354153983 +4.675341779792339 4.004528653212344 1.5994157395034385 2.1405523233966726 0.8618695105523032 +1.7996507469933696 3.218440732014806 4.465893461894547 4.836388852089227 1.466366889885555 +4.565036519376813 4.003410553794443 1.5983336560897587 1.4567002543405754 0.5792095870299239 +1.0633655795184174 3.094458937445399 2.700436686698044 2.632525080471743 2.0322283864948196 +3.5876713642068476 1.0819119363428418 4.059076238004585 3.504051113272638 2.566492392237519 +4.327050463119918 1.2244554262655516 3.457823172334969 3.311874982951109 3.1060258911827785 +4.755439052425891 3.9719000875041823 1.8702605301497117 1.7987767485541744 0.7867930099980435 +1.3819291232033772 4.810638033868009 4.515605401261188 2.5758469288458636 3.939379104043945 +4.050460945566871 4.764653187840032 4.816081762627581 4.648258678449252 0.7336451093725707 +3.3536606532545084 1.9502096271189102 4.091960225841396 1.0717684208217952 3.3303503302008055 +2.0698842762899887 4.230982619734984 4.330797173246969 4.528499076420282 2.1701225985089074 +3.354083864993253 2.4836328405981747 3.3556348785439423 1.98095656308166 1.6270911028189725 +2.994778867738434 1.7466172121949115 4.410667689626521 1.6691188150609912 3.012307711705541 +1.128053998788832 3.8562481372506787 1.5572422769226653 2.908486565401076 3.0444875405038374 +4.063131480273147 2.699092923544025 4.892841311367063 2.647427381735094 2.6272580572964173 +3.1354806321237936 3.439155967693795 1.5913084791915133 1.6595754712081225 0.3112540628370153 +2.6891938698010422 2.386941986370681 4.280915573649294 3.0177838047268244 1.2987910019315683 +1.4412345116674312 4.8090509919109445 3.4948423771135255 2.5863829376303755 3.488192425567409 +2.5062566765549774 2.06387714986759 2.035472183456536 3.865111706640807 1.8823603349067157 +2.3090718731175977 2.7190235674068237 4.643740700603107 4.078035171512171 0.6986294706743073 +3.5044180826359947 3.9492598441967988 4.643792916002199 1.1816674034592625 3.490586950274869 +3.721099684352342 1.6664184189130324 1.7776731026829404 3.9472915481650057 2.9881364261899583 +2.390600060213609 1.1633112865577617 4.1315015168869795 4.629385257764497 1.3244342012240033 +3.7056762245305883 3.0844306056714688 1.1668846332505565 2.7487107137848104 1.6994469300363604 +2.372784487408489 4.981111927991881 2.5342804265060224 4.5828297905067 3.316613714927907 +4.652400327998184 4.792643656021829 2.283441329687849 3.6331483302812013 1.3569735364058695 +2.0189468805342097 2.907411618906006 1.5026074563184748 4.292421218128358 2.9278713115357164 +3.4034344059421273 1.182541419363932 1.953024803924921 1.1550037011785834 2.359915959999571 +4.059657527274105 3.195428905120758 1.4658167146151433 1.39032144551213 0.8675198251371601 +4.247227214094976 3.0310176373032562 1.3112958056058512 1.9712940986444503 1.383749790060963 +3.9581105938353924 2.7102813377131367 1.2109819913978082 1.0148126901464134 1.2631548785434359 +2.6271045648789877 2.0828702422432346 1.2272153772364227 1.4789784291971677 0.5996462559437737 +1.9512401216812507 3.471535471877111 1.8752790805706931 1.6367582833041725 1.538892498700221 +2.4914772658931734 3.225878233065693 3.416080619548306 1.2214115426952348 2.3142854485734996 +4.079271548419854 3.1348769904122498 2.4026663582003125 4.074069206913666 1.9197574231869745 +1.0941122304074922 3.3674929340380686 3.7750740793079425 1.9880377972152452 2.891670537449857 +4.797683167707888 3.4816901799853803 1.1057145979847829 3.345664881402598 2.5979250982117175 +4.01349849096267 4.703590327418038 3.726427100428898 1.0935394862704553 2.7218236407841117 +3.060331871343216 4.08417224531321 2.4083653408023094 2.8711661250950242 1.1235807391162282 +3.2550629999884566 2.1878260569681167 4.060782639333717 2.143915081505253 2.1939407300113327 +2.0199577615255144 2.5200460115150243 2.8007313004939185 4.480786928779635 1.752904781188095 +2.482108270039665 4.925988398892422 1.5045684612536379 1.0940124852592286 2.47812556050457 +3.5121781251856423 4.181997105924865 3.2403809867751843 3.3056275870704903 0.6729892910059022 +1.1748506112989205 1.2987433796870733 2.183503871808965 3.570637356184179 1.392655277351076 +1.9926753526131415 3.864925514427968 4.578938750138972 3.351911911734264 2.238507433666705 +4.599816946013043 1.9939024111211698 1.1876186308653636 4.022616491424953 3.850714665167776 +1.4680265097436602 4.656524545243864 2.475070625075371 4.040296551972329 3.5519645162387397 +3.974531851993596 1.0228599689700357 4.963185749508735 4.466067947415752 2.9932412221853433 +1.9718205337573402 1.778550977527582 1.173516434727095 2.0396647443974523 0.8874491623242792 +3.2795726290863523 1.16200837045541 4.260932351851187 3.572082262731878 2.226789804788699 +2.9008025407380162 4.373982484883285 4.760540593838619 1.9753727171551732 3.150780736443149 +3.6241227700429786 2.404904121190807 2.987572728011758 1.1935644467645004 2.169091936016695 +2.5579596777075073 1.017425146213201 3.150820891906843 2.1292262948451532 1.848486452066127 +4.298970306143756 2.8718925319395168 1.505227955312367 4.29335139382167 3.1321212112548684 +1.1709650910930742 1.94698466760059 4.865729442591006 4.910707185306497 0.7773219284586568 +1.1725342490969348 4.043427231720987 4.690245720079517 1.9380318803628178 3.9770224461534234 +1.841602782557009 3.9809671560057422 1.5339636485138595 4.518808045205969 3.672352923514565 +1.2192219944681262 1.31952708551449 3.3165298942144976 2.9512351582724015 0.3788157274940219 +1.5971586299333462 4.512467885538232 2.5013708669035166 4.132790609845099 3.340742197996591 +3.3672855264428962 4.031971751957862 4.669768945686299 2.152834774255045 2.6032221191645686 +4.0921494570477925 1.7158077958743858 2.829482389250052 2.4679834804047376 2.4036807507913234 +1.6864528323161716 1.0110003525248676 1.3030599052820802 4.420460046878701 3.1897366184816662 +3.9923280778000882 1.1327568946134985 1.97363274157855 4.433189412086804 3.7718120800422708 +3.7859301389441296 3.817446675372796 2.8166732925625713 3.381025960330559 0.5652320104924207 +4.454375135841101 1.2533867525359659 4.9282455178730675 4.975601143397622 3.201338655207106 +1.1518227137176602 4.762759014774705 2.7623510367305792 2.4595766981967424 3.62360776993953 +1.9560227115919906 3.7682678192670815 4.884393003530712 1.5700646435763428 3.777433627198514 +3.3917323105480937 1.3136094046365407 4.968766923963452 2.3107717771915404 3.373949171569915 +3.825445575717218 2.8617970708693115 4.554536854740942 4.161213783433505 1.0408273052328714 +4.4883457884662725 1.1446472753085297 3.375361499212441 2.386307580820418 3.486910867857094 +2.6551452197028844 4.4182176210596 2.176086023824776 2.692807004404609 1.8372329368365672 +4.231367690894621 4.853690376255114 1.9031055478519865 3.8133338897314766 2.00904401216946 +2.2157243032349165 2.6715488978128095 4.994742415265989 1.668357543435531 3.35747112818035 +4.3053654284682406 3.0632340159860005 4.776700658892652 3.7019141373187834 1.6425761817437818 +1.6161511791052714 1.2421311545882174 4.995465234559479 4.024987254888869 1.040056963711741 +1.3771449241180833 4.400743446090685 2.3169056423460774 1.889646721376426 3.0536368820838944 +4.177846390285167 3.5449944202906956 4.965990301912697 4.286054621073005 0.9288778961762515 +4.785430089288146 3.65872542172058 4.499813113904166 3.2546058870287524 1.6792868860862626 +1.5526667590924168 3.9537955868170567 3.6687697796796557 2.741661025379901 2.5738978786326285 +1.5630477748330387 3.0861241563902153 1.0764141950764796 3.3923516747593787 2.7718816846787093 +4.345230754157784 2.1309595300526105 1.681176383276545 1.1916547413983904 2.2677364246682874 +1.3333218467343744 2.432265037622126 1.3148237032572325 1.0669667156474536 1.1265474792948353 +3.4509520288666344 3.2555537719807948 2.5802622019295303 2.4112994216594266 0.2583193757940506 +2.465703137747799 1.3535404026444655 4.6984612181864485 2.751088617394546 2.2425802094167215 +3.0524455943647757 3.4568611408540932 3.2806207378233885 3.753841980294028 0.6224871714081418 +2.8692698848514344 4.958465773296236 1.9772208321439488 2.070285435628945 2.0912676731390665 +4.589428861835282 2.361306696969544 2.761952284540002 3.992347042857775 2.5452700530320618 +3.007174700345023 1.3234349078464245 3.0721004746491305 1.8763458119624965 2.065141375833637 +3.3252151232890776 4.09414793280715 2.839513700178436 3.899977226756133 1.3099009721177255 +4.34572176251549 1.4130662376225822 2.059990498880304 3.8319580163704727 3.426417562225183 +2.0005013502264486 1.4783632608464976 2.8203526270395263 3.559487014050854 0.9049573616717844 +4.698162722427805 3.625429836348417 1.1475848305791834 2.34548362848387 1.6080165965865232 +1.4343175447099394 1.336920263876059 1.4837019616415694 1.230226343576033 0.2715439545774118 +4.766829459375337 2.4102497855684595 2.708973068456357 1.1713321374035917 2.813859874238329 +2.8307318160062116 3.0549417414674864 2.7584441183394213 1.4451483378543863 1.3322972257402428 +4.80993171413323 2.897530794965908 2.3582578751837415 1.3490853470134314 2.162338194465813 +4.44589118397495 2.011442140641425 2.40837390528265 3.197076022862577 2.5590219176205933 +2.5677728494604395 2.5867983583845895 3.4386279755263804 4.709610652795309 1.2711250669810255 +3.5438503538541166 4.7653925837952285 4.971366597417007 4.844153235960814 1.22814846776051 +4.536848512972555 2.6540642114267077 3.186800873268475 4.595297499292521 2.3513271724004308 +4.566384093484121 1.5777608967524297 2.5619535815404255 4.336795033257995 3.4759071896093086 +4.228526472661882 4.1542372004942685 4.532552070558628 1.0801440889613967 3.4532071712185854 +3.7642545987183897 4.326881044207907 4.45697239196498 4.314857552863371 0.5802974622183392 +2.2209251208327023 3.600382493560874 1.8984498971386636 1.3171596227192932 1.4969305348975475 +1.6222555066150322 3.134649628198821 4.794470136966575 3.0435136847961415 2.3136949834406595 +3.947537233541893 2.7864657924857816 1.191472282831238 4.31889461023619 3.3359942004126926 +4.154565162187529 4.7460144825654975 1.9533909140564765 3.6290768979770656 1.7770019176364085 +4.996154263044447 2.24201252312339 2.840222645711595 2.3012826196353 2.80637721542962 +1.4793545643375245 1.135183752156451 3.424636594935797 1.401343524924496 2.052356790402959 +1.4584568534855418 2.0414783063903337 3.7758832140661047 3.0684757582574775 0.9167002362172977 +2.2467828873094806 4.573716565611175 3.8414764860172106 2.6386825930120037 2.619414723228316 +4.956471820549405 4.704944898524801 1.7422997028940999 2.479711106181145 0.7791285967033561 +3.8053542896897894 4.943073337963625 1.7290296835346957 4.143620908599907 2.6692050159114866 +1.9223403657715368 4.176094431495004 4.988864423468641 3.479091150942189 2.7127150095799397 +3.8454555222790074 3.195972043242473 3.3698839798751807 2.7270463585987987 0.9138210967523553 +3.8928609230523614 2.5938064062323556 2.4886790248056707 1.466106402953132 1.6532384597004854 +2.7429205709639697 3.885777434207606 2.8489468431625102 2.801129378662738 1.143856774152372 +2.10093768509292 4.291713570963729 3.2888102001927866 3.7529638701977532 2.2394056379968568 +3.4383246210310143 3.1842563465283806 4.057185296966643 3.31200025277814 0.7873064449062808 +4.97962197726876 4.775807425766902 1.9818625609141693 4.49708846650257 2.5234701756800875 +1.0657717611807933 1.7950052922308948 4.195017468835049 3.0764204041069756 1.3353055590485876 +3.404629783639116 3.678922671061702 4.443251639134232 3.1819833967845192 1.29074945951976 +1.8400938182573947 1.496248213848712 1.4577876682484598 4.776848745698363 3.336824273993775 +2.1826538812492036 3.761907837495002 3.2706268658573334 4.580660437918006 2.05188474779751 +1.4966269738012392 3.358392418304798 1.4752188073078907 3.319290358592133 2.6204523381667157 +2.17306658167339 4.5367905051814805 4.664387826791032 2.228999711425283 3.3938629994490372 +2.374379961175793 1.4531064718279545 1.964531997919201 4.110480744301416 2.3353459838479056 +1.8410445338175254 4.033705222118238 3.9267941680333114 4.220115719982944 2.2121931260307033 +1.724049586823576 1.2749532564852375 3.958610227629956 2.4164406457551357 1.6062299129275732 +4.267234712705705 4.020456458199401 1.351012435872038 2.5087805286884337 1.1837763571050457 +2.5902379932439135 3.4157675328926387 4.1239179206161705 2.1861559311419816 2.106281213106076 +1.5590129659345635 2.8742660484719647 1.2785426395411137 4.58182992624752 3.5555024356116407 +2.6528863034475574 2.1474321320048344 2.775923518754529 2.494070639823443 0.5787270209611705 +4.881059313045824 1.0266032110432657 2.8265843975321627 4.583501415739668 4.235987399784365 +1.9636670526210454 3.8804201833675736 4.890125579550178 1.519501728894412 3.8775053458165756 +4.214648811565363 4.401617279222556 1.1079825792887075 4.358845426632628 3.256235013038694 +2.110412560415399 1.7955582290794134 4.2228895400861965 2.817895704709505 1.4398405909709369 +2.2660862746046795 1.3263252884017445 1.9960398251769607 2.8196640801755244 1.2496029867966274 +4.992222581647895 1.977488707464628 1.9450553824513097 4.548144226825623 3.9830505725955887 +2.379263576225225 4.636074567007234 3.715969015064002 1.7002533551198846 3.0259387749685915 +4.059196560321565 1.7514566314736855 3.1426578782282015 4.9670917735558024 2.941806012914356 +2.8854461755630254 2.4574814512248433 2.573649341733663 4.36240836603488 1.8392424125973437 +4.790403875189821 2.971763015234006 4.272141348122192 2.054349073534206 2.868110379801129 +4.968004601061251 3.0831203094586623 3.1378863090777696 1.378487680628521 2.57842438836575 +4.980778209346886 2.3179267388114035 1.8411954184569166 1.8759895552757095 2.663078779550081 +3.234298868188167 3.571924357615306 3.3243735135628056 3.2780941458676702 0.3407825567501609 +1.6340095330604392 4.018190532762931 3.5477898838947457 4.911088146270911 2.7464342685635583 +4.729406674918325 4.095547025547985 2.756955888601799 3.9747679166539687 1.3728962782265923 +1.3402523928319594 4.842639451386429 4.804087790345308 3.090194747970621 3.899249218584289 +2.2262450061352403 4.574392534706419 3.672409659648059 1.4280734231330654 3.248205959983021 +4.220432340297565 1.8872009837121113 3.682672492010783 1.5597201478606113 3.154503957659002 +3.0363495068604838 3.2905004927265717 4.624628172617192 3.6487290045627536 1.0084502515375011 +1.9138847951520432 1.5340252855125107 4.539061945467885 3.515093822433994 1.0921556501035623 +3.950133553008326 4.333997271223662 4.80124897511939 3.1264569480282085 1.7182199184534823 +1.7437539365834627 1.5389532606520633 3.5313074300004934 3.1630115873144447 0.4214085245955341 +2.4856186001539213 3.427723288397253 2.2033578622730268 1.942354967732118 0.9775907909594883 +4.37131195943889 1.928293977458972 3.2997253449519786 4.553081142252548 2.7457672179017973 +2.963789462397059 4.890126362793506 3.3944164023963888 1.3307694239607661 2.823014825578404 +2.8204475236896793 4.297102754214542 1.8414616532658603 2.471275340273211 1.605358511416758 +1.097381312789392 2.486656553447506 4.402280723817257 2.523500931284299 2.3366427204722258 +1.8921083118105835 1.4212479117423347 2.85610041346495 4.649765253922642 1.8544387496616195 +2.871347448244833 3.211591364176851 1.7767228277485154 4.389206462507115 2.6345467663737265 +2.309815966551774 4.75603906268501 2.868834951272737 3.4005134196390143 2.5033356606296304 +3.614110494133917 1.630031856164921 1.6485601721323748 4.054848365822679 3.1187803566038843 +1.4708098765551125 3.947231242199568 1.5402064038993393 1.5873164165448097 2.4768694219744014 +1.0639626266955213 2.860508658627203 4.037255286255284 4.948141917349444 2.0142721016673835 +1.1201688977543949 3.4209419926701514 1.9079770816143613 3.196826817828015 2.6371747148845173 +1.0208305526338344 4.669531166307319 3.095204020309199 1.9753860617717738 3.8166750488460752 +1.4384240097101144 1.7167827940922966 4.31755702340913 3.967968214562318 0.4468735258590049 +2.9586889304105917 4.06804693069809 1.4198956474015714 1.2528818494004583 1.121859519514201 +2.8582097668996997 2.1942106153226875 1.8046832928964043 2.181998820891381 0.7637158378357229 +4.307804246166638 1.6640992726726558 4.8944453798191585 4.249538158186191 2.7212279050809345 +4.545666828076049 4.974989610169572 3.2685668456327397 2.195465825348069 1.1557957652459725 +3.6874339037034964 1.120126009072968 2.471445127144053 4.203209888105704 3.0967852707510732 +3.6412126841430874 3.0377889817898955 4.577248733577442 4.3456457586168415 0.6463436412406594 +2.389031752787464 2.7694036438505525 3.295353457308048 1.2808474863072243 2.0501017249660762 +4.980043705358464 1.8229334641590893 3.776534230416615 1.9793245701624995 3.6328098818953753 +1.0777687543270078 1.6174765724248075 1.102104254101179 2.3886998150327177 1.395210617191766 +3.900756703684846 2.4236509657356953 4.72005581746158 3.460109581699407 1.9414700301816592 +1.1811554882153108 1.4133310073409042 3.5559254751587135 1.357168174189848 2.2109814879924095 +3.1639164708915613 1.882572233748295 3.0973176485495384 2.2066775200712083 1.560475213682087 +2.322697567578663 1.2615740111761182 4.575671840534895 4.85111463885735 1.096290078902518 +4.018702596659368 2.441515333407478 4.215969331680327 4.103740994794254 1.5811751525255517 +2.6904645041957003 3.0050169584853434 3.280526313940586 4.416875550096359 1.1790813513118787 +3.445904028476856 2.9363406323577297 3.4136845078799896 4.8191199867127175 1.4949594442078478 +4.42378168560732 2.0703061034016113 1.4782894562192377 3.9833141841942528 3.437149429949882 +3.62885040118794 2.1518683939446066 2.2371909293221135 1.4309357096569122 1.6827130857510821 +2.0521517210511666 3.9446202691538748 4.867570623572852 4.136923454225235 2.0286159053979778 +3.475076620680103 2.707873845625516 4.274743231312632 3.7914386991668634 0.9067432761504766 +4.645045574958863 1.2363669367545902 1.419113432352248 2.5939535845773953 3.60545967136377 +4.372317683947127 3.1580776278115117 4.655723445616628 1.1592295447312964 3.7013306408442554 +2.488033997225598 1.3044749945574106 4.5974719951863845 1.7419220636817299 3.0911126353002976 +3.0018417075809776 3.851901351450994 1.1124241961933996 1.2306416265833122 0.8582405018317493 +2.1500690768026978 3.073633599459567 4.664277658518081 2.2820385752267667 2.5550018546903353 +2.6002035684748215 4.957604214874271 1.3837056759200865 1.179511686943889 2.366227586851813 +3.71825341840788 1.4464058339527224 4.350809859796566 3.3515492890462966 2.481897083936175 +2.518512581087707 4.390962759875304 2.644222981856425 4.700687181318704 2.781207413285053 +4.56631279285358 4.179933458001049 2.0180224015353776 2.3918652776165152 0.5376313666423317 +2.5509697479844142 2.4503186526935234 3.1737151551287477 3.957452427678722 0.7901738766672365 +2.2921992253755215 2.6784058097012187 2.7280923450753782 3.364842623145637 0.7447190358780108 +4.7310864216571265 3.3771990520912607 2.7530561660268256 4.106197679025865 1.9141585523856972 +2.5771112660690094 4.467160659003005 4.929750602441622 2.70445058735428 2.919631289200383 +3.878013629012894 3.328441592215092 4.688741919583905 2.419253270242928 2.3350820441940834 +3.816201842957513 3.20451652152021 3.5773723444586527 2.364946183743084 1.3579897376818981 +4.495944032221606 3.214998441774913 4.072324698424389 3.8419254474640026 1.3015012180278336 +1.8252392275212803 4.226209497621717 3.245195285540866 4.897688784140375 2.914685746494776 +1.3222440096749608 4.356219933352009 2.256107220922492 3.5039214313749114 3.2805563871482217 +1.5465868549709918 1.4985003770103287 4.4510733854697095 4.3338122023921954 0.12673789654006262 +4.080870714418014 2.438152439580578 3.2453738342763976 4.280572108511178 1.941689675891477 +3.681299253649096 3.5823118764866466 4.967572674853914 1.5119122545146069 3.4570778761169287 +4.028211433217105 4.626208813015875 3.9223647289091956 2.1509467025057316 1.8696316991625217 +3.366870973114035 4.923029882658442 4.339465575129591 4.133337892112273 1.5697513094310593 +4.590097491060373 4.606982733252502 4.03662207563783 3.3297556414419356 0.7070680781909937 +2.4200842483535667 4.47859536660393 4.952953816072295 2.6289914780737242 3.104556163511323 +1.9542348165160521 1.2339991850901955 3.8290774013928535 2.1887316389854425 1.7915003725992782 +1.1154423747017592 2.2538686070478398 1.1138641193241532 1.9047146854043024 1.3861669828570382 +1.7368388413278941 1.8514229883807056 1.681402872139325 3.232977559842175 1.5557999673081422 +1.6683157196910554 3.849303146472068 1.5421242276764233 2.8839926629894004 2.560725884093446 +4.359765131598868 2.790791759695985 1.3353009756016982 2.941822391411679 2.245570863098381 +1.9730075506190201 4.132335359759639 1.4863393675794057 3.2817908505442044 2.8082632738061655 +2.4040199380305127 1.6913593227690842 4.568447590488806 3.539186997903797 1.251903558583185 +2.486472747238755 2.640060783896908 4.922276168670273 4.113169013050976 0.8235555077096234 +4.681429701029998 3.036191903982223 1.022881728980964 2.8889222674149675 2.4877529418962974 +4.87413988867886 4.978550733300432 3.158771865432328 4.164154404849787 1.0107896294680163 +3.2944411482254057 3.595302841095089 4.270889669961973 3.3351696012368586 0.9828986749667258 +1.3773043238512108 3.5669166064419024 1.1884310993873517 3.8343189280534933 3.4344030558389105 +1.684425401747271 1.2829771349848826 1.4823293669846098 1.8217707175858613 0.525719641429277 +4.373084778619714 1.188770129942316 2.4247053660214184 2.657313405640087 3.192799129584682 +4.903966658484974 4.77295614451633 1.7188912235864175 3.311888368513853 1.5983753184146983 +3.466759509617574 1.3698701563908626 1.794704030098233 4.648131312267751 3.5410439441363692 +3.834734735518996 3.5358668574787164 1.9985506765271133 3.5146557790265875 1.5452820746870912 +1.1966368664904423 2.486614274196037 4.59956255335109 2.398693422411317 2.551052066092426 +3.835651185761844 2.702375312229633 3.8611454528518028 2.6434031820668937 1.6634934456097454 +3.7479196825701053 2.196440146025683 2.316611141219898 1.6596657264422983 1.6848341254596573 +1.7260207607997415 1.5969616969081355 3.3383515735056637 3.176317786378136 0.2071501632716388 +4.415869870029315 4.64225165257573 3.155081971841968 1.3508734444048995 1.818355609320005 +4.803184894053665 2.6167731306529385 1.1613225470825306 3.0303425897197522 2.876392240101602 +2.9257581852082306 1.1244695097925428 3.4508884408438893 2.955717097775352 1.8681101549900911 +2.2699410931944644 2.7946085165992 3.3006769924376274 4.5742478474654416 1.377410116108649 +2.4205359094468553 3.226852117446054 2.770145925964542 3.272015239043164 0.9497466160467302 +4.36361051340476 4.664603502779668 2.458286099503806 4.0184153315659605 1.588898989988883 +2.4300929238206144 3.504577372276001 3.043682405569445 3.818133994920261 1.3244969211819562 +1.3936142788918673 2.2014395934631104 1.3755854841874444 4.276664550803021 3.0114517246034733 +4.759737126101782 1.175940970936984 4.313281169883534 3.978683853199424 3.5993819255680823 +3.7742174705258527 2.8697158670109233 1.0463988701106772 4.784348739042807 3.845827917810521 +1.5614250830942225 3.6378263312726493 1.1940126568235323 2.382120712056697 2.3922882130602203 +4.58144452236255 2.988084634296801 1.4347367477730875 2.8559609442366196 2.1351051378117916 +4.986936179403205 1.5104460788277234 2.7648553624409358 4.102574354821065 3.724979935781377 +1.8742230795504344 2.5630878392590457 4.055866375952121 3.0449243767702683 1.2233308558514346 +1.84392972852962 4.717691801120543 3.6854891671471224 2.9018159539899973 2.9786997423174575 +4.550038640495016 2.4846648457451677 1.5572525912800872 2.5488990646614402 2.29109834800016 +3.2439702315191816 1.7166074137740712 4.6022363905526715 4.692183304599188 1.5300090275474765 +3.4588781457546434 1.020938723392847 2.336335941955297 4.631608377216651 3.3484062147798546 +4.969559306008163 4.4829116670490645 3.6596016432768566 4.8329577445125915 1.2702718074536605 +1.1857751846828632 1.6448315464678092 1.9437400938954572 1.1586357175657427 0.9094622724595568 +4.75655938714816 2.1644013596216247 1.6391637558506402 3.5634052176896205 3.2283104626306427 +1.7275861745731773 3.026819366244405 3.7610332319715134 1.460165367233179 2.6423474066302766 +4.453521534937025 3.5444479473577633 3.05637407604207 1.4258554541819497 1.8668170140286526 +4.214105058263261 3.5355179911005763 4.090985718835059 4.687820738697093 0.9037103787465145 +3.040210410346356 3.612431204256164 1.9676990308299507 3.265350202702334 1.418215498732312 +2.9669274755948303 2.3678501863489996 3.491991223472552 3.053564112845465 0.7423691331291655 +4.339739314249268 2.496279256190476 2.599826279772002 3.251436376073856 1.9552341811815375 +1.6021498256839126 4.357952298701126 2.8520722959929254 2.2491573635909416 2.820984524239911 +1.6446186698638394 2.3084013510031767 4.3659366830676305 1.1631684976072214 3.2708303987791676 +2.2550222899230516 1.3566591891079138 2.1006416868538165 4.262778723692779 2.3413442350446805 +3.7178553864422232 1.5136924807267689 3.658960805414569 2.747583411533808 2.385150491899595 +2.052889999296771 3.6571089984856817 4.620614461758164 4.342299191398535 1.6281824182425086 +1.8879102580365403 2.813458960149387 3.0570914888907086 4.770859697899133 1.9477273613600845 +3.4485520145298425 3.002645656233201 2.4766327593629165 2.479401439771831 0.4459149537306185 +4.920340218946361 1.185974328560508 4.116412329526132 3.9939740939180823 3.7363725356040365 +1.6861002744965092 2.8435530955219215 1.202401841986803 1.4384863728054924 1.1812844444042958 +2.3056833554883744 3.978455925166425 3.1528468620430825 1.114665108926967 2.6367314858746598 +1.50434212851092 3.0467378445072124 2.6038762156563413 1.8750698353776607 1.7059142078834528 +2.0939597011934685 1.859036817342945 1.0863270813849617 2.1792936966240317 1.1179287917321907 +3.5179390100438495 2.5194603297618077 2.7659804967172144 1.8752961033873454 1.3380128413057792 +3.2227879045720975 1.9803895317450246 1.0642255727959142 3.4855754362513554 2.7214865199113225 +3.157380652018651 3.9955107695666334 4.688403559374845 4.380279706164412 0.8929739093939081 +1.621383126715886 4.755346626284611 3.8917187642647386 4.901604644493428 3.2926580004176453 +4.688977239515041 3.277421960078359 3.335016461152155 3.106612585719361 1.429914905586444 +3.8365417698910953 1.540653915380275 3.976496575677827 4.949347909942578 2.4934997010368787 +1.8228770944822563 3.5608826527079582 1.2546073203021417 3.44455848538238 2.7958092613516623 +3.697767467652859 3.1166250653365233 4.155600979015 4.586913258585962 0.7237104215628661 +4.866214204890191 4.919564934774346 4.717858796402801 2.7624077643330778 1.956178682841043 +4.783619774936669 4.283263807538102 2.7878830952093416 3.705177195930095 1.044884951240304 +2.75329283401285 3.5443919856327026 4.878597150648741 1.101058398701595 3.859486609661452 +1.3670846467526632 3.1313745632270718 2.448873616081786 2.4841626338851865 1.7646428035585005 +4.647548380575659 2.4918586634790216 4.866909444942966 4.215044740488118 2.252093636887727 +1.17765604824924 1.809219878271667 4.781188099964185 1.9348257378076883 2.9155876882875105 +3.4434777536274996 4.983217574473358 3.924538916657771 4.6142220798165265 1.6871459869978949 +4.364650396262077 2.6873556067754474 3.0514528074327227 3.043095033870882 1.6773156122858652 +1.2888994387804766 1.62667571233899 1.5693150445718582 3.869930464299481 2.3252793639620126 +3.44228798864343 4.255479656571822 1.8667467367770127 3.0677584499216337 1.4504171206583083 +4.876254759521959 4.950638939194738 2.2183120461150527 2.937829146015397 0.7233518253482146 +3.4688773536735535 2.6834614221010367 2.713598163391603 4.437043643817899 1.8939753191553867 +4.335072562647216 3.3817532587351713 2.959999858773581 2.8965587936775705 0.9554278957367018 +4.627171987638519 2.776284220686097 4.278392495539784 1.4810329407143317 3.354251929242551 +1.384359743300954 3.484825022416454 3.75250535054734 3.0445305317888463 2.216570037866134 +4.879019557055998 4.914046466337091 3.8730765402474288 2.1552623075243114 1.7181713018555218 +4.262343051227811 1.2513390154966753 1.931050268389721 4.63783243188558 4.048804142436198 +3.1526344300593205 2.0859242902202992 1.2602928056504448 1.3174631529798653 1.0682410641091977 +1.6089945987975356 3.303241003064947 2.5628723602071704 2.3648181211237436 1.7057832101389576 +2.186450657725858 3.5910635964468054 3.629913186811665 2.694762766359749 1.6874370555649452 +1.2061808418743634 2.9761229614517504 4.315792911283901 4.672409704570024 1.8055111863147706 +1.0744073265792093 3.6829383906418562 3.0305560497412936 4.862339633315506 3.1874543775922173 +3.4982922851794096 3.114060026536918 3.3093990673864524 2.5681641353287015 0.8349033794902074 +1.214462901217467 4.678675858739878 2.6346926328439495 2.073293540714813 3.509407408054754 +3.291132656761145 1.3155744067901813 2.319554231175302 3.117474906295043 2.1306120723425654 +4.820017453674149 1.0584238670448123 1.4105555166047128 2.9679024194327797 4.071230242410656 +4.575217007931856 1.8350561879799576 2.6038780889176443 2.3402355973893485 2.752814683653571 +1.6634093301917359 4.9462397878170705 3.6826732062382206 4.118384337608254 3.311618939961589 +1.0983277968171374 4.401422003831926 2.13410872524185 3.4877534183027374 3.5697038106076193 +4.239260286197998 1.9784925060234122 3.0764437816986345 1.8233773417360122 2.5848107201178436 +3.253867544245565 1.2707594363329 2.002756219392262 1.6051894711932162 2.0225669548725733 +4.404017408825689 1.6552363273404302 4.6957926567318715 3.0031534407846023 3.2281302559366867 +2.308892850513508 2.112617945524492 2.926509087712303 3.7305813675793837 0.8276811400407117 +1.4700579614609226 3.8174164086122677 1.0416482721743905 1.7264380242662085 2.445205243733693 +3.2320184140460486 3.077848322753609 3.4304945776862246 4.5975618056756 1.1772061551384803 +1.7270865327215716 2.753547933688913 1.5918750962073949 3.183735628718116 1.8941074316524802 +1.6070829546030962 3.471709880794376 1.7716895438915246 1.9518541867031765 1.8733106716177617 +3.324893440842535 4.554434144034095 3.257935727285979 2.0229086644930123 1.7427168980175236 +1.5381582154158404 2.5340159087877576 3.8607110344770263 1.4901841371695261 2.5712118380845945 +1.2372220620511447 1.618581835421364 2.3580380549202427 2.725716809695205 0.5297385614223792 +1.3409173533585816 2.246399101362721 4.45224305121895 3.758085623344578 1.1409433511975062 +4.104573934846309 3.0613547603796505 3.0242525448045634 1.1503285090975828 2.144737172143765 +2.206511289255779 4.199755712616074 3.1735501146006815 1.439316919181659 2.642080261337681 +1.590393389211616 1.7627925331059529 1.7896076241446872 2.572008722835714 0.801169734855496 +4.239935338115486 3.041610672203713 3.631490654961347 4.416014486356527 1.4322917464537506 +1.3896817510337414 4.941696754014284 1.3910949416209948 1.100859439075644 3.563852862891034 +2.085525604694262 1.916929030600635 4.861340730446395 1.8700352903615816 2.9960529101931943 +2.738874293073869 1.1521392151001062 3.2852273022373257 3.633468151445401 1.624499891267945 +2.3921203374221305 1.1111156564362048 4.974441903286111 4.170996807639776 1.5121167330685823 +2.9455006385481615 4.1874008276265124 1.7063391101009358 1.1082836402824938 1.3783999508896543 +3.2160839467728817 4.976344238894347 1.2568886079071584 4.945357051692845 4.086969018334045 +2.4445417535452303 2.0863683302680256 4.915572165497155 4.814291297836711 0.37221769879489075 +1.4837036528811232 3.705198370555402 3.3198592441664854 3.322264081752481 2.2214960193298885 +2.5725070302631803 1.7695122624866455 2.2552934880773736 2.9863322553013405 1.0859181719912547 +2.172664736101914 1.2499421418423586 1.2744424427955212 2.4310537580878626 1.4795832928968087 +1.6321665498453473 4.103628107779871 4.366909056136589 3.074795519936513 2.7888491574087704 +1.3576304611437657 4.048424375628256 3.6257865880404156 1.1866842200982202 3.631747823228919 +4.100257036764763 4.682497258731498 4.846856613723866 4.567290423944733 0.6458799660490293 +4.1733430568845975 2.120861187078274 1.9606907386859906 1.1473813239889687 2.2077486337711716 +2.550767280951604 2.3954339463309653 2.178847502637113 3.6529988323579685 1.482312580990303 +1.863855117973368 4.770172287450663 1.4220157034722405 3.5645577075083636 3.610701556298671 +3.6331269185190873 1.3344909547729196 2.910193116456788 2.784788993573759 2.30205418873304 +4.626985148277216 1.8023916676075213 1.5125092754968694 1.2405137353648197 2.8376592298747685 +3.9214163205754518 3.9754710027873212 4.854784338609944 4.9417074176817195 0.10235980824691068 +2.209393126289842 4.447848240290542 3.642012955664584 2.2313743857628543 2.6458613856909214 +2.9600564757938104 2.2498028385035895 4.846748517939735 3.5876579768990617 1.4456034102830848 +2.991835369357492 2.183845372796129 4.813309724688985 1.0035502675960228 3.8944980363908894 +3.3588702655371687 2.4920284737537965 1.3296608759398638 3.7646458844861903 2.584679222616911 +1.517269982067075 3.7432377680438074 2.2850820781443613 3.2940601409824106 2.4439658990040303 +2.166874791226344 2.643080923672408 4.328120218300306 4.761223048228372 0.643700506346653 +1.4586634613492362 4.48201597374019 2.2366068788600955 3.2872426979802616 3.2007024289363413 +2.1520906012075334 1.0707276216741297 2.969826071544013 4.1209699327989195 1.5793916812526956 +2.7198667297985764 1.9022775561586935 1.5882027040185531 3.665196822163381 2.232119312147394 +3.178127643556954 2.152074970478072 4.197082326516355 2.6537348657771225 1.8532958405237294 +2.734873291363965 3.9692229867264834 4.5002549928449245 1.7108469610033006 3.050314137682233 +4.637150827927981 2.4110566689914292 1.7139359758745192 1.8289287236355851 2.2290622549603847 +2.5562291371740673 4.217632182134835 2.630180343601277 4.392138185065486 2.4217257303216906 +1.738083467001641 1.790238082136836 4.352058789043914 2.6668401753033764 1.6860254683656117 +3.7996836517484245 1.1081327127421088 2.392928783702493 1.2728913349054394 2.9152924971559186 +3.555168561161008 1.33746931682365 1.8876645578101852 3.3457890585393883 2.6541132225210884 +4.5554605083981885 3.070146535472633 1.2740879866916166 1.9009500104409955 1.6121766637025434 +2.812822062762243 1.5402779654601249 4.697716630036504 2.5455345117404278 2.500251257352318 +3.0543409684304486 2.574259711673786 2.6375690135099297 1.8130292901653462 0.9541193680364206 +3.9128408560298333 1.5599500336327443 3.9552021027847952 4.158591531829991 2.361665192606221 +4.73302963920859 2.534189959966787 1.0877503276992213 2.5718005852909487 2.6527911908151136 +3.2419086835089925 3.735262621495761 2.755498502632927 1.0485720227620927 1.776793774136799 +4.921306588462045 3.2018095834373175 4.977192601305285 3.385075337357521 2.3433965376029557 +3.879633181081899 1.6587025894020555 4.651522953687858 2.8180878927502926 2.879933474185561 +4.803530395359137 2.361718294706211 1.216446115253376 1.1655372808461566 2.4423427368647004 +4.862071109066014 4.773346302231927 1.1267203331655415 1.5877142704059612 0.46945447225494635 +3.1250556791624904 1.3932844312358679 4.990027837334708 2.6766700729829593 2.889750127784728 +4.683306658109755 4.943371694598497 4.323151723945155 4.974939030571519 0.7017553108335842 +2.3146121147362955 4.362972379497809 3.229464323476402 3.5083788441124737 2.067262219476646 +4.6235406056556165 2.7935363010013226 3.4405851771571134 4.934909371376381 2.3626088445788715 +1.4384456600092568 2.313448856325128 1.4747096919492382 2.7472798341437 1.5443656822034812 +3.665592551519656 2.919383943864518 3.8886343772861927 1.7791751590957383 2.2375534584334074 +3.686214234154111 1.6651252323329042 2.772901025156556 3.022270193082833 2.036414922159746 +1.341196944930966 3.212078920709941 1.9594701433785007 1.509609613078676 1.9242073339472234 +3.733706597844623 4.895440455224905 2.146717022494438 1.9795855166006895 1.1736943791490104 +1.9104113754283576 3.7557785323988435 3.024248417087856 1.9872931419782751 2.1167560526907487 +2.5349796917652583 3.015781671191758 4.883465274914293 2.085626905998482 2.8388501337685876 +1.8940566711376552 3.38731137498115 3.7874957350111496 4.5065075767571 1.6573435489124235 +2.7503591476895375 2.524489313156087 1.937292084446364 3.1126431883269214 1.1968573012458141 +2.74098656214466 2.153193067244173 3.6653699829767787 2.7126957697452307 1.1194147351199546 +3.4910339132020267 3.534009589257416 2.172923922715303 4.956537172607327 2.7839449767742988 +3.615764568466465 1.2729475192192652 3.14492801700644 2.628658102900633 2.39902612542135 +3.395668504896637 2.368952800115853 4.7619626498115375 3.334521067032692 1.7583329066731586 +3.8503192588305026 4.901185555986341 4.791515530143931 4.175191993579099 1.2182670791832986 +4.890117503306449 1.81146754183635 4.278351318364248 4.245430480859701 3.0788259721526714 +1.6164624612157836 4.248473631370086 2.4176180545141324 1.2400233606032 2.883437542750701 +1.467123019038672 3.952672116529862 4.335487742025753 2.619788292510241 3.0201951786444368 +3.912540104169171 2.747241462546778 4.845192587795509 2.617445450356564 2.51411579537109 +4.5160693874310605 2.6816364342503793 2.435058280444173 1.0989962460042095 2.269406534666508 +4.392905808760434 3.3864454241621007 2.1976980173615415 4.494784133273166 2.507900940962337 +2.3374596370079597 1.3294540575322462 2.552422696753216 2.700036733258505 1.018756669684942 +3.4637949419677447 3.6642928796787078 1.5569005545747743 1.59731252656995 0.20453007237784882 +4.593064186576315 4.830756788134153 1.0031100971099836 4.422042896807975 3.4271853264283907 +1.277363988294252 2.0534422428400605 4.383564206678892 4.605385888575355 0.807156933773256 +2.068891441994816 4.920700062848523 4.565004737676929 3.2179725755785786 3.1539353283957614 +4.616265194553316 3.2879864468711673 2.6704579562677773 4.175119770575783 2.0070704040916745 +1.6552923715023256 2.0456599317939452 2.9421519017825535 3.941681059366105 1.0730542246260044 +2.8782716323495134 2.996314340335287 2.7135178762860717 4.02732509850275 1.3190995027128618 +1.8172815019824844 1.3823964058183855 1.3650222270572976 1.9853773224477402 0.7576051024396171 +1.2358940048269789 1.9585409335179578 4.015487945951172 2.5404514440314356 1.6425441441684656 +3.913486741894534 4.609350484366178 4.478210446366608 2.497671892217303 2.0992282659488137 +1.4689602350979443 2.7846831265539143 3.9970619637673845 3.238509719926191 1.5187258586518395 +1.48749299946273 2.6533099268614113 4.134778126123813 1.6581856961137103 2.7372685605531375 +3.504955401340839 4.2419622045996155 4.907702565811604 4.088145923925794 1.102203301260193 +4.394683235831769 1.1689868010428293 4.362744502139112 1.3719152277902849 4.398883635391144 +1.8250030769462722 2.5897613044445964 1.4452754108179096 1.6325116076779307 0.7873452482494468 +4.973329192107405 4.696272730116103 1.2947218567757104 3.5857816959207716 2.307751171524896 +1.2507238499200972 3.7894539592348724 3.489909997648508 2.6353551270644 2.6786964357277276 +3.6860652505078075 1.6969139122079802 4.776115746429323 4.776799060222835 1.9891514556658914 +3.270558012565696 3.347031172323813 2.7731929037869163 4.435443321024545 1.6640085918558416 +2.5447502148554655 1.5559316687627835 1.3517131187151334 3.2916503672375734 2.177410995954062 +2.4753741211130906 1.552192844350694 2.0882245628250717 3.640612041864275 1.8061479880791447 +2.084431221847645 3.039943514031856 4.587973296752734 2.3602342622812262 2.4240100961471205 +3.3032367080462546 4.09931706700152 1.8913678708481783 1.2584671266105598 1.017008992079655 +1.0935683034519195 3.271646511306204 3.009538404208095 4.380679632646931 2.573723556999565 +4.831253281772494 1.3255721943734695 1.7596253121105327 4.2226100748287125 4.284401221632859 +1.1175003824028562 2.215756702869784 1.8396256709082714 1.1630769033518464 1.2899167338738082 +1.3481669505410423 3.182746358829783 3.502343216034069 1.1376052346319145 2.9929362382120677 +2.435219818022914 1.7681851877301824 4.000974375939734 4.458020668029022 0.8085953939531981 +4.659664228759337 4.861815307752802 3.492740498259633 1.7459472811468029 1.7584514784575698 +3.8822183963738355 3.9655311599610608 4.894034381662104 3.9739171796045123 0.9238813138595413 +2.2879423410151216 2.7839697131667207 4.725315227029822 1.9707760834286217 2.798844234242923 +4.361032586589627 4.554881615874545 4.214146080038973 4.986394549258334 0.7962067221308488 +1.799166009099308 1.0747151215952662 4.261106324294058 1.1478208750432106 3.196462947841324 +2.1161573698833274 4.1876569423231995 3.9956548944585553 1.8843533518770292 2.95782093479739 +2.5270951955012797 3.0645082573490736 1.4171997396331317 3.3880435838951968 2.0428015707626366 +4.723319794659629 3.666645330747726 3.5306911334838684 3.9111653596760845 1.1230857311354607 +1.5065265194778448 4.586442798196513 3.749598203845967 4.93027158826753 3.2984653893284555 +2.801271273554192 3.3073256755768856 3.0529963520109935 4.257264262508503 1.3062741894642884 +4.316925326433397 3.6640515597626715 4.200765590075177 2.786119743205062 1.5580330636009254 +3.9586770531146316 1.0627752911779718 2.9823639864349407 1.9222412915613245 3.0838461607178056 +4.060180270845831 2.874317749175257 2.297039973047311 2.6858173894337583 1.2479654641836102 +4.759215943582854 2.29290211175605 1.4566244450641888 3.817700239905322 3.4142909697395303 +1.5439231496279153 1.8279828913198282 1.8249999661401977 4.341505120009673 2.5324865500732097 +4.997268875866702 4.4539420508711975 3.140242965197301 4.898520563095907 1.8403108840714355 +4.738869759477229 4.495965417023562 3.2295813277010272 2.023130645820207 1.2306607036033708 +2.0350785234635755 4.866735762089041 1.0475774076727111 2.522994905681191 3.192982854712753 +3.0439553597410582 3.620923433115963 1.1886509316003395 1.8591692590263285 0.8845829441652688 +3.217294592847989 1.7167942273539856 2.337962427931152 4.415015222161539 2.562352367819051 +1.3507129138768672 1.298881408830575 4.0455775645047565 3.417248647006361 0.6304631103245208 +4.193964555545193 1.8586281304497478 4.951115807504787 2.117315307129822 3.672086803753824 +3.4977976722981783 2.9012151001628537 3.4566424645986915 3.24989489758539 0.6313915756814621 +3.455474982383311 2.601451051300882 3.8596242678236927 4.4483020418911075 1.03725522247056 +2.648474734810686 4.683210058398287 3.0631072939883626 2.3032456158724512 2.171989320168096 +4.147237869594646 3.758138944129889 3.5920520165207925 3.7533951825866234 0.42122392030127453 +4.874415186035353 1.4008307309164456 1.7615354709515798 4.614180869051965 4.494816429415891 +3.65178798141043 4.347966538743652 2.032662529136645 1.4505255095955683 0.9074955058901031 +1.3191856284446444 4.046479175618231 2.8223691922935226 1.5493193885287222 3.009781702270163 +4.628880604145236 3.5572711978939604 1.2896027646548363 3.00107206867788 2.0192755874766903 +4.8447785705074775 2.0575766156957926 4.414559330026987 3.9373127673704564 2.82776572906483 +4.146340734626346 2.743422981886902 2.1411402348657176 2.157131408493306 1.4030088875646796 +4.6513079232392665 2.592061489871538 3.824388791814747 2.5664135665988193 2.413088796665961 +2.8014920241163144 1.0142366166772487 1.73581923229511 1.4304214323957058 1.8131601439485638 +2.924828814237567 2.870919898408419 2.4342941181922892 1.3160483215804013 1.1195444755997996 +2.913069176495076 4.173144714134631 3.336595178591628 4.670010331538945 1.834607950126438 +4.807780753496151 3.1150940345483784 4.099357684200026 2.1578871966207362 2.5757515374436912 +4.376506619208783 3.2169528856661973 1.9020260819150119 3.3788087931637403 1.8776187145466183 +1.3263902311049374 2.410888700949047 2.520981975325539 1.3145415474339583 1.6222316225328106 +1.897868151487211 2.1617073111180716 4.871536005799342 2.100946372516361 2.783123787798495 +1.137751422308662 4.199866384461906 3.766501523936213 2.060299904294172 3.5053775842713275 +2.0319063150444494 4.007134207658383 3.7138116600157303 4.531965917544709 2.1379667015351 +1.8404068580619009 1.1796015874070318 2.123259360782958 1.7546736035098411 0.7566498967090737 +3.6857141202780217 4.899203089570749 3.0176636186743853 4.691449204516878 2.067392963606392 +2.348784959128505 2.1433626821812206 3.073325513910926 3.4896550972568425 0.46425061533097756 +3.265408661024521 3.5584008291795426 4.957238169878984 2.484651035430628 2.4898858504035304 +2.4700382267505736 3.0729161587346367 2.9937953438569678 4.525436471535347 1.6460213682906055 +1.7426083375374115 3.2738001363606477 1.2360991730027484 3.694718093726247 2.896438385694251 +1.8283286583881968 3.8615712391936867 2.5012175736910116 3.6137553311316832 2.3177177684376686 +4.709229683465637 2.5369493536039593 2.248819424158371 4.076285011284702 2.8387378011424276 +3.0579461339101224 1.153604736439327 1.2732638455819658 2.5791860535094395 2.3091013341296196 +1.0272241043671748 1.3967321297855788 1.8485494523039003 2.38438135492161 0.6508855573075214 +1.5108105304882273 1.3094156230262208 2.1067972989186834 3.8040186323360925 1.7091284806470222 +2.944972053110527 1.867735154941955 2.808501266504065 4.716519540281249 2.191112290103707 +2.610335304548826 4.6157431752947975 2.401937345295035 3.570797513298944 2.321183926447023 +1.3180664731692113 4.333465036283151 1.2868638701067119 2.626993256391332 3.2997841242137653 +2.595399240311697 1.9048107283569338 1.184266901686306 1.7586187646626068 0.898216318794221 +2.3961887782900924 3.930011090866327 2.4357675414345974 3.0721702041018797 1.660608092117678 +2.5933019464523723 2.7963709809154267 4.90185710256921 4.86118713501145 0.2071016152011045 +1.9189701939737378 3.4769894004037587 1.3659359393866404 2.7930687672406385 2.112849250643164 +2.7690010429459355 2.4264151257130995 4.878258149130846 3.950634655946934 0.9888632138941092 +1.4719071427720989 1.5108142138814258 2.3618618376403426 2.5104071786860636 0.15355610873129 +1.5694368197423039 2.4264567026723283 2.9875015331176478 4.48921400228549 1.729052752171422 +2.9558084572464027 3.4503291877059823 1.5979548839853166 3.994016878904923 2.44656163551062 +3.242216578321393 1.3983008045569627 2.3425099048915285 1.3643513500567424 2.0872995805906145 +3.2280974588218534 3.269950775830925 3.9697578656067063 1.7856195885475028 2.184539245117791 +2.287771994680689 3.2041030725110153 4.7073233553337825 4.18071543992636 1.0568720550603266 +3.006638770707309 1.876842585539459 2.9697126908302893 3.533002199239981 1.2624319745254626 +4.320816305253587 4.349532245862058 2.166303429903474 4.105321102006836 1.9392302952393692 +4.584158716539255 2.941138819793398 4.186787373450284 1.7484643586495414 2.9402267779220277 +2.474610815123991 4.182775299248258 1.6845144249388406 4.168213923445956 3.014396971818413 +3.806121478038759 2.391783432867937 4.558405691381569 2.7883347872268924 2.265723529416724 +1.5339307735708405 2.801764688660106 2.7999777855165107 1.2215436209554489 2.0245634709991567 +3.8467677724409546 2.9420648424038287 4.4651240389594715 3.529151881931903 1.301741629644147 +3.2005806580308658 1.3295811719005801 3.303158121813029 1.2681828570574267 2.7643739626300428 +4.793599069847062 4.612328275401046 1.3895863653959504 2.7319245930351115 1.3545224318188807 +1.478536050675935 3.021647694565075 4.338638437906891 1.5635645223250645 3.175252554120521 +3.454490352772657 3.262821150177549 3.4625738704783355 1.0972145252353287 2.373112284606835 +3.5735501595247556 2.956022204499382 4.352735575475216 3.332254785935875 1.192779031110397 +2.585064219488223 2.2054420051949775 2.205829731207628 4.3091610416297135 2.13731505094284 +4.581756145057586 2.7419629038828277 1.4304242546569195 4.243873998098026 3.361597630463996 +2.2282671128573575 3.739073451185893 2.7984071106949857 3.8813974330853003 1.858871655151252 +4.985537472711908 2.1331490627257645 4.047850239196483 3.6891183378669865 2.8748579475262344 +2.1313239671171895 4.223529587522063 4.258689400639543 3.1363103663833085 2.3742491559631436 +1.174473346118487 3.527878481246327 4.938005335189212 4.970782263960995 2.3536333735537056 +2.792350037404621 2.459758591852539 2.702238685072941 4.684379984673892 2.0098510395644174 +4.5109674610724575 1.1250563673022445 3.51757297536722 3.054008071066233 3.417497089306117 +4.283848143053261 4.976564652474414 4.195453677711107 3.508573749118322 0.9755307266961181 +3.1952784123067732 1.6865982748385497 2.919398487760494 4.005954859204117 1.8592257812099826 +4.772846223230745 1.6210586671375702 2.7981779222227336 4.842385366150467 3.756667256033378 +1.0156859616682588 1.7809243925776257 1.0419834831894206 1.056486458011216 0.7653758504286058 +3.5922316564708736 3.8245315456881164 1.836017563873121 1.1758922982379616 0.6998061194789833 +3.473980211585206 3.7343269321465153 3.1979143437393454 1.4602455855110699 1.7570637803533558 +4.051307012046547 2.356534407050481 2.392425408437902 2.5424260255898217 1.7013977688333526 +4.251105668607253 3.0417281252995876 1.7451032721344113 2.072529154116753 1.2529172959332944 +4.767398416762051 3.3356362715868917 3.2794881008978183 1.2232099161334933 2.505638204828111 +2.0239629733567623 2.394636727165907 3.3516751003702896 1.0952529449837116 2.286665689400699 +2.4821628685653923 1.7807157115645573 2.3123789096734666 2.6102010203162362 0.7620538850056917 +4.389144863665977 2.826213516378934 1.4633666353642503 1.2303467727802921 1.5802065221644728 +3.194109940667205 1.8167044497732974 2.1271694470267692 3.802325621020327 2.16873098691687 +3.1549690853179166 3.4920221591695415 1.7956874822688924 4.156509625030746 2.3847611965032263 +3.677706176709714 2.19551277856681 3.0779898954589253 1.4063151272931025 2.2341427438775407 +1.4608542225937344 3.7840997058409216 4.908311474214341 3.073564724385875 2.9603657225813462 +1.5353640802097943 1.570256477974151 2.924380601344941 1.5527999987527363 1.3720243543133417 +4.2728683554903135 4.411250376049294 4.095224183321017 4.171042334433026 0.15779092385821653 +4.996308880895093 2.933158823058069 1.062799963431769 1.141403604875698 2.064646868982965 +4.083258386555862 2.4025313736751603 1.207544045323326 2.7910032305967785 2.309152719777051 +4.752708092970088 4.6574721633778315 3.128403119480759 1.951528588703428 1.1807216198061525 +3.59928990035629 4.7819061804186 2.17608195844616 2.6313931364211056 1.2672369686279472 +3.006267629713518 2.0226553387850332 3.909285967266729 4.798304568186528 1.3258383052420002 +3.3594192946787214 2.821454603210579 1.3153221806251412 4.968743368029454 3.6928163211620952 +2.607949329469141 1.760112423359585 2.6645344570233473 1.1083910206779883 1.7721201465595289 +4.150547718740899 2.057773649114908 2.8307731960017937 4.7344489776566965 2.8290784344302544 +3.7481895312525735 2.6639272249334076 1.1533162869103175 4.811635164430718 3.815615515028562 +3.7430749597114206 4.100311243778291 2.6476024454565406 2.393835738777243 0.4381955089600561 +2.666762184036167 1.974526028790276 3.648718942671868 3.839827238942248 0.7181317953781052 +3.8491465018506474 1.629499871286487 1.5546981111945608 1.2700007682583707 2.237830141375738 +3.100722014773424 2.9902565518645243 4.411155761629555 3.4443558365425915 0.9730902905916982 +3.973969157680913 2.3446634550293335 3.560220429868294 1.8670225241643745 2.34979918728667 +2.1916555730802556 2.3442533933871954 2.309389412695139 3.9976321558207775 1.695125262179409 +2.1799386917184864 1.2095066730523945 2.992436025096113 1.892296423164201 1.4669851555456352 +4.763304330243923 3.665418141972271 2.460954116609593 3.1858408192364456 1.3156043531559505 +4.118820239141217 1.7876126247268962 4.725565805537679 1.276987144357291 4.162598193899097 +4.947890292544868 3.914261175969362 4.6096344977139765 4.096596970576982 1.1539482895188597 +3.419649016724124 1.4339441983636365 4.976910869941084 4.159529517395929 2.1473555600199523 +4.608817547706892 4.922125955117391 2.0250209211255794 3.6547489740533767 1.659570933902475 +2.1830045053332583 4.040341569389128 2.355650028177557 3.6501212952918287 2.2639250939242896 +2.4565846899400805 2.8372826051295275 4.519761887000067 1.9738982753844083 2.5741702413745515 +3.515599596927264 2.202721505259355 2.4773164679014075 1.7502055350576886 1.5007795281927434 +4.302198263545204 1.8672582903455823 2.348395007526718 2.532537095135659 2.441892909509824 +1.186568547576634 3.954204879726399 4.049869323520227 4.06331312777242 2.7676689836228925 +1.1116980290504475 1.0372410442447868 2.6214595000857135 1.1212260261159055 1.5020799975387027 +3.0528707847647993 2.9298634352800765 2.4460286005102776 1.5707923111957856 0.883837864181128 +2.903970940900523 2.6115687802573073 1.897161146700336 1.7555660898173095 0.3248817995556667 +1.6288534917005872 3.554363105088309 2.853884241081848 4.337765746702753 2.4309445888321473 +1.7329114655418771 4.356349735990141 4.589783644337555 4.5410074555538635 2.623891666103012 +1.2018189347249653 2.768819862459358 2.3378326924038815 2.559238077627021 1.5825650862211809 +1.8963958996905066 4.704496591163114 4.672278915069901 1.200458286475227 4.465307152994568 +3.151356940626212 4.704129845330369 3.4744024956031785 3.1494416973660337 1.5864120568043816 +3.935909671315838 3.1025897385701326 3.123991865992195 3.3812605695966678 0.8721291740135937 +4.679209377254891 1.309613907028453 4.4563829228402945 1.6979684086031117 4.354655470335728 +3.196970115076935 3.571845759310168 2.103302786190767 1.9025915439325138 0.4252255300521507 +3.6056557870896775 2.454890514533021 1.00763411838747 2.17964063764621 1.6425163602556243 +4.96120262085706 3.9163906892024145 1.0699408344239716 1.4240902863257325 1.1032016165734302 +3.6590585452601743 1.3242140108729838 1.9468313478537191 3.306167718959756 2.7017206312958164 +1.651730044397694 2.4030843053973903 3.7852472811844593 1.165914505941593 2.7249655801466366 +2.3522658939034002 1.0428052556589704 2.493807857869537 1.1095745158336725 1.905462964299041 +2.1312627165492253 1.9504413618092724 1.746495531730159 2.6220663935687027 0.8940473681135034 +4.124995743875587 4.477019641008962 3.4773828252157957 1.6941335157954902 1.8176630390974464 +2.3995340780788497 3.0409463350081536 3.5404114870317116 3.5800063336871384 0.642633204262595 +4.550146522691177 4.376597628389565 1.0577368632941457 1.8918981483914634 0.85202363128526 +3.444379205397605 1.5463915315548458 2.2073014092259804 2.1893803004799555 1.8980722789708864 +1.8926358379111834 4.515227701461038 3.4256002068062874 2.782883251049295 2.700198727496818 +1.5652575130469066 3.9692023057114634 1.1640438623060985 4.205078512270852 3.8764471244253143 +4.992287447411672 3.580300367205258 3.451102907320149 2.8211062600722236 1.5461575890618207 +2.2727310068873456 1.5370562928819886 2.0146625858334684 1.2637672491314769 1.0512188599467103 +3.55064965583671 2.2173440732589063 4.833221611002076 3.645237249569018 1.785780115115701 +3.0172337117284505 3.9942493844670928 1.6918663788089625 4.541086404143498 3.012078082909584 +1.3305514717735654 4.2708600661640075 4.033963909056579 3.824691054757722 2.947746555895314 +3.3632164256834285 3.879628556577522 4.031018489599359 3.4188299852335753 0.8009096414778596 +4.004905002779854 2.6134769748394304 4.827956295275419 3.7125086894231063 1.7833382512411464 +1.3915543084763016 1.9631466612675679 4.008273098260471 4.911426312051265 1.0688327957871129 +1.33782301757555 1.2596717239120063 3.8163652863858304 4.004795479653833 0.20399402549168488 +2.289641953879637 1.0399451404291238 1.4977686002265358 4.563268520114464 3.310442853211827 +2.0609523552143845 4.720511851403176 4.2424492377501455 3.2359306673892023 2.8436484217022002 +3.300810889727793 2.8309416678519446 4.697943158493044 4.696016653491358 0.4698731712789493 +3.5469723618988884 3.7588150920570116 1.3461184534144968 2.739901058676629 1.4097898045638377 +3.7181532247336055 3.0726712885231677 1.6822067053861267 1.1475545324350311 0.8381526567489385 +3.1969666932990384 3.037623947805225 4.924427935353434 3.7244166336805655 1.2105441894801359 +1.520503077442295 4.783986948005348 4.234478335990779 2.919350916126491 3.51850637400362 +4.563903022983812 1.6061429784538688 4.459232509650818 3.1953107013579327 3.216495424914534 +1.2979522491841662 3.6482977740381224 1.092469746582395 1.9546822856876958 2.503504453519392 +2.125331255724595 4.9773374792562635 4.869556230731984 4.317798035567753 2.904888398027411 +1.979039284663247 1.512522961719442 2.2927452172884704 1.165496239119169 1.2199703842129703 +4.573411221826043 2.0304454163653336 2.391900323637307 3.1722268258671122 2.6599970935744714 +4.981701168674649 1.737832788926816 2.13172879344224 2.106080669848247 3.2439697734984714 +4.471616920573682 2.231621359459682 1.4500435070978455 4.263530505694794 3.5962882538924057 +1.9027734298884664 4.650088322665232 1.4136111176634856 1.7033525088360775 2.7625512110785637 +4.898280497420981 4.597449863778008 2.974109282283364 1.408578973983536 1.594171953191809 +3.4632352700016256 1.7769745191238981 3.1059583652564426 3.408104393932327 1.7131163248872872 +1.1204425486473526 2.309633195298311 1.922429283192867 3.414723896620227 1.908171273063935 +1.0722495932199556 4.95202444216737 1.5225805075519183 1.2591133886238541 3.888710300508536 +4.502151721743338 2.2206984793233366 2.7133733600067855 3.1311238322810038 2.3193844774926973 +4.781232757571798 4.702954914938092 4.876276396805855 1.227633191516964 3.6494827935130996 +4.513928975599097 3.6733249882419097 3.6655541274477788 2.576857732380949 1.3754544355202436 +4.1050858572916535 1.0582294812450992 4.359784202802524 3.0202968943248445 3.328296865639891 +1.14951885818799 1.684065007185453 1.5627741053684412 2.5881582747518803 1.15635300848408 +2.6972229080120673 2.943207356940845 2.7114851496319035 4.237845019639205 1.546053945334218 +1.241824165348893 1.359496224906883 2.9333975290393113 4.755293740770151 1.8256923398863796 +3.6152277947647353 4.927832207045584 3.929394933963378 4.405081071100415 1.3961402666650324 +4.653607260186774 4.117798904276622 2.882393504479671 1.1092733127874017 1.85230823796958 +4.811674372548495 3.297774137244183 4.774141802194126 4.277487477103403 1.5932857374262075 +3.801937817484166 1.1276261975364732 4.4360784115004765 3.0079453814883084 3.031749757483125 +1.8955553284983302 1.6027003947294802 2.208782926815493 3.57082502807308 1.3931700175610082 +2.758375568561561 3.4593368623331817 1.0496837167619177 1.4576410870936392 0.8110338780679619 +2.7714597148076225 4.715937212211422 4.284978971775919 1.5108068585852132 3.3877756200071354 +3.1707012275998236 2.6766587564823934 3.0444550320317574 4.013242219082115 1.0874863571837403 +3.230216032870536 3.1276151071116165 1.8176305763440777 1.4134686466728628 0.41698179260268353 +3.4589080640052976 3.065779048718098 1.1670393435041846 4.092979446317267 2.952232360081184 +3.106330140834618 1.4923306356797092 3.642041849063391 2.7413545044378593 1.8483051954179217 +3.6670477919302087 4.073221320295295 1.8557690300001823 1.1050440215250301 0.8535601756727883 +4.19646872070725 1.0724435502542637 2.9491577577445467 2.8092248465583354 3.12715757282182 +3.6799785561593104 1.1863148939332828 4.651665919185943 2.776487377440505 3.120040548411041 +1.2510753087074549 4.38858744070699 2.602551325731426 1.7890858143013557 3.2412510727696575 +2.2251658222182 1.9013330875706163 3.72027879797356 2.2993587006656164 1.4573543024820519 +4.153691639200477 4.784177097759991 4.593887919794154 1.8481521668043634 2.8171930602465665 +1.8066676036158773 1.955107234959352 1.9490472269528394 4.140765930897633 2.1967396753768598 +2.604183620634813 3.9579360274616615 4.622359213941607 2.449959517115537 2.559680843730227 +1.0981014027797777 3.564353359893688 4.700683693614593 1.7590159388743598 3.8387247746154762 +4.383700507435272 1.099092581158934 2.4598418674302818 2.220580800842351 3.293310657581841 +2.5718097811055745 2.1754743677943917 2.6630136775934665 3.5916109295325866 1.0096408352248 +1.3291330383849482 3.5212326803916807 2.9617667562835397 1.7332596099592563 2.5128729870520474 +2.825215510681932 4.620998318325027 3.820919776935262 4.734650767941688 2.0148797026502856 +1.5925577769048949 1.6899216391496248 3.135004933778986 4.845670556010521 1.71343415185878 +3.322701538258867 2.845455952549249 4.104762542084556 1.3744690420071222 2.771690088311534 +2.5959086158384106 2.889075831989886 4.979930089281732 4.161209641007588 0.8696264652413823 +1.2625107497659758 4.5922533498197415 3.157790960053564 2.317053434404457 3.4342430562858235 +2.3428391915967177 3.5669737948659925 3.289450699585727 2.9918590563492238 1.2597882016614648 +3.2337647120060162 2.665330077899985 3.335384060732971 3.299222261680303 0.5695837154992961 +1.0355403526270903 4.24216936352544 4.498995299964586 4.272724715763454 3.2146023067884535 +4.808809917844613 3.0515598447170817 2.473791803415237 4.517532700636294 2.6953301605704345 +4.333284728175095 2.048162203763295 1.1763725791245614 4.936333984197757 4.399897125980806 +1.2866173852759109 3.5518518012142613 2.3349176575037562 1.2848896665435543 2.496767057807251 +1.1398232325272994 1.4409405438330718 4.845041826423671 3.3037772035848003 1.5704038565867902 +4.557070723013358 1.3941892475341038 4.851729886480172 2.343680119407681 4.036599170346518 +4.358186951093769 1.0278507098467866 4.3908193953646775 3.2235725361021164 3.528966521550097 +4.07617752092168 2.0612351201615144 4.647725400550737 4.704161133173902 2.0157325889854176 +1.3149836057082722 1.382127474610511 2.526942263155569 4.003527191355497 1.4781107364870696 +4.874602172853487 4.477577045962246 3.8897210854208963 3.0590375562273575 0.9206867420879045 +2.464904084995922 4.121937091521881 3.164164176368821 4.744916600832726 2.290095328182862 +4.833007647086754 1.5340983984162855 4.99671259625921 1.9272465181406901 4.5060430796524615 +3.113932720298422 1.5458899476103607 2.042533707728126 4.855773070506562 3.2207256712215155 +2.1239737521441655 1.4925232343090156 4.016419940285131 4.2898676103890825 0.6881158221982392 +1.457583400682593 1.6083566713318915 2.7670746551884964 2.9167691464830816 0.21246416136899723 +2.3838745745419834 1.4246324797124772 3.6767126875391614 3.617346954159619 0.9610773573404954 +3.9491944920471695 3.6164851123540505 3.9613705345969463 1.2667280839507367 2.7151046882506007 +3.436675959839811 4.603635171422045 1.6327087007217354 3.72012929078572 2.3914678591441914 +2.8438734068808382 1.3361468303708595 1.26981200099344 4.279652125426468 3.366359607077284 +4.596196326697864 2.500999334320842 1.849250323378647 1.0792287436760928 2.232214969503013 +4.8353459227117295 1.4779228992658355 1.0793684789168987 3.9907271997577527 4.443905822559774 +3.952400008003412 2.556063213554603 3.87623426300297 2.1201498648354224 2.2435661026631357 +2.2873131011302563 3.1166465866530126 4.401903269454217 1.8339914133138913 2.698511688156154 +2.7054658286320388 4.019873667003216 1.7287141184130266 1.9650138095331005 1.3354795054942 +4.7471279184483395 2.2037838197569672 1.2259616513424896 4.339380148076042 4.0201957589339905 +3.414063543463012 2.452879230033941 1.3825822647346158 2.8468152552433357 1.7515289135141971 +2.603680925353626 4.977498999564583 3.4907544096366645 2.8933968331849553 2.4478252232532607 +1.829016670349847 1.4807169991840001 4.586464041225034 3.5719901028987238 1.0725996608602542 +1.8612801736556959 1.7972167028673054 2.3880354765591427 4.654394781874579 2.2672645697137606 +1.8190098552612315 3.0365114577681065 3.49645238783181 4.842883556733046 1.8152650067402163 +1.3631889550898695 1.2389369702902289 3.3991233375175667 2.280099253941936 1.1259011747702063 +3.606427356415026 1.5289234636483378 3.868120986304925 1.4641150986078872 3.1773049479933095 +4.7653638500592805 1.6954691212924926 4.829777453942804 1.5904516122445371 4.462901024491165 +3.009204242879045 4.079658484922371 4.715818228942508 3.9504988348228047 1.3158974349561983 +2.038160801408543 4.45940827310483 3.250515452773196 4.57779378840128 2.7611785707236174 +1.3770568529235265 3.042682339731819 3.508640015041208 3.7271127293425064 1.6798924338181707 +2.6234060570313504 2.412727901275907 1.0684958513315554 1.9692697324941073 0.925083169394602 +4.393278415330723 2.0479246155658086 1.257156571515469 4.203170226534403 3.7655917067082223 +2.4067453178989067 4.421190331185661 1.5196138313196195 4.844632406407772 3.887639031113501 +1.6501451789158756 1.51325179842972 4.155309598030354 3.4065262915706853 0.7611939553448921 +1.5240513646338818 4.511775083220675 2.4801128673487525 1.4058207675601406 3.1749955172053896 +2.2824844001882476 1.0808024759154389 3.889186934657454 1.790640474269917 2.4182507507554014 +1.475022995499648 3.621157914871743 2.5786228110817695 1.8932859203016998 2.2529051790992805 +2.8392630177344946 2.056731528372456 1.7908587267859288 1.022437460661945 1.0967345960052308 +1.7431101383583458 3.683387937914166 1.399584082966439 3.334874158606639 2.7404425949690365 +4.479015358901696 4.281820041596381 4.841617200822995 3.082003222596642 1.7706290818623522 +1.7500464258092596 1.4574804198769598 2.3148047188833387 4.1773673433021585 1.8854003282351206 +4.101425365548033 2.214969861973126 1.0442583826205976 1.3428642806412618 1.909942368057419 +1.6063493615491606 4.516685648423348 2.108127633408843 4.625169059690857 3.8477987011168384 +2.7771706311048776 3.5115905101360587 3.822167597351278 3.1092689492671632 1.0235218811321687 +4.704314221643685 3.9633073835096777 2.0655149627952536 4.413032378524319 2.46169233482022 +1.9771928611692893 3.5820411075328202 4.875386557666076 2.5690971042218123 2.8097168784282056 +1.7386897497642169 3.248103231017571 3.3957992023200276 3.7076162499849064 1.5412848304592537 +4.9468649756498575 1.2554422265118612 1.0283198354155179 4.45139574470167 5.034287496119857 +4.941374593250762 1.7319331780200287 1.4248054520754754 4.7611961333860116 4.629472645575739 +2.2536832851755118 4.20340732647302 4.463102433877059 1.7070166411983014 3.376008402510157 +3.4806200787333528 4.796376596159574 2.9090450334176468 3.743654774699017 1.5581362691983436 +4.297189886568452 3.575012084647189 2.1885470783494774 2.2288455360081896 0.7233012811252985 +3.3457250104448617 2.0007728794719855 3.284329586096726 4.583334281788346 1.8698420879949622 +4.102868849361988 2.3550824344833297 4.220872631471369 3.9547743438112857 1.7679269359139314 +1.2578020427781427 4.771897480108306 2.1882051732489747 3.60070898128759 3.7873518123338186 +1.13664132983412 3.1365803558726855 4.078130782202004 2.9314687257655994 2.305339449960255 +1.65727143688471 2.857693476950678 4.120656034103716 2.1974009696375347 2.2671398539285033 +1.085707025537455 2.292088644098102 2.3176457726308373 3.6500933390081913 1.7974351523061798 +4.808784663921413 3.9998901544667076 2.7048159838433086 3.3246720196724087 1.0190838201932828 +2.5755120836380088 4.990524132625726 1.2067698100778848 1.1238638285735831 2.416434687411403 +1.3667926211498829 2.263350493128232 1.8185563948168735 2.203113627049416 0.9755512711634892 +1.5041145187323943 1.2999213224110284 1.9727940858893582 3.343723477753871 1.3860527619473721 +1.0384136479981336 1.6086789444179326 3.7777464971207215 3.521179459180878 0.6253232390196181 +1.121974764935438 3.2368568712340875 1.5931149014827741 2.5134051455397555 2.306438912446777 +1.3866494177599726 3.395900793421731 3.8283305301375323 2.585533379929004 2.3625485914929047 +3.0426264447738256 1.5085180135275875 4.051146156336319 2.1074844921235187 2.476148085989864 +4.0553053468034435 4.993781232615547 4.6978726970284885 4.309930559279072 1.0154979519882839 +1.1728316004576236 1.3635216294038495 3.951514767441785 2.4289472526769105 1.5344622915395474 +3.6648570717875772 3.372366770986745 4.3007183210631545 2.055510029040934 2.2641799510259557 +4.051017566120596 4.952960475258697 3.2424376894410467 4.413040459173187 1.4777725995054383 +3.7443906270535887 3.123790762486803 2.7269103094118576 4.632056120293822 2.0036778065900247 +4.990806274233882 3.838895838629792 4.1621491093869345 1.252312935507212 3.1295437703397897 +3.212190936232505 2.656934447058943 1.3121740821714378 2.409452247604723 1.229767921644562 +1.3942989181767471 4.6938997214684495 2.293841546652228 3.721216353502147 3.595102821938907 +4.645835767323393 2.461598881908606 4.686813128784323 2.1960978892114946 3.3127863161162114 +4.281332398939657 4.66435521421496 1.6484830333195841 3.7674189686318806 2.1532756384121416 +2.4667827017918538 2.258236869039761 3.6665132192933876 1.7220705307450923 1.9555942149145324 +3.6621293607269996 2.9591290536656687 4.216760893544256 3.3517509654947806 1.1146531331999585 +3.574260237115094 4.851421378981991 2.405788473412405 3.2804338657925616 1.547948689300325 +3.054858669031778 2.6983227496856754 1.310545911913949 3.783453867614801 2.498477860448745 +3.6460981864861197 4.440418942696686 2.6949796082354314 1.2875095588811116 1.6161427547021883 +3.3709393076536256 2.6529859218866667 1.7469518169420142 2.594411825548004 1.110695966644655 +1.201540830803434 3.0140145511988017 1.39629021355239 4.543707049850112 3.6319820661085576 +1.9647918106632587 4.899723804010781 2.9291336482797883 1.8500307144837183 3.1270255750956286 +2.4297397899487647 4.068517975748017 4.6110712293322855 3.5846788531960447 1.933668857907705 +3.482165646449875 2.2478155204827255 1.7846925965004177 1.0821684587150786 1.4202677204126526 +1.0002551185064839 2.2435905258459408 4.033431690394362 3.8098162827715876 1.263284127055459 +4.086168075345173 1.1667482477178681 4.399922587282745 3.5437229273264284 3.0423822882163827 +2.5822897255399244 3.163568243464684 2.703350804813778 2.4455010625629376 0.6359018831389243 +3.699269155726685 1.8165286981708828 4.130268231398253 2.7013628384213493 2.3635740421226306 +2.7279508351740684 4.638277186485701 1.174927108352064 4.73456989898737 4.039851923701849 +2.587055900316042 1.1622809577037159 4.604524752167206 2.3307788899579363 2.6832636625963042 +4.240632355358997 2.3596869834646266 3.0288547062480036 3.654511371984996 1.9822718671847164 +2.244115871055066 3.2447705477326423 3.8230094970079973 3.4414321496872895 1.0709393325230951 +4.978479576583248 3.618554008239487 1.9298314302896058 4.2375436528517785 2.6786065880599086 +2.244804777861307 4.900527790585432 2.1616503102369826 1.019803934125457 2.8907919100052024 +2.221196277890223 1.6009561819066254 1.5810670809121534 2.56156159285449 1.1602013896797327 +2.815982156921727 4.856486508340551 1.1534243338927261 1.4827474729872274 2.066908739664674 +4.6787321811313145 2.9159124045782616 4.9556586416801665 4.810352402176704 1.7687983118052755 +1.353846920728269 2.2072177810211064 1.2283593125083767 4.743711424351307 3.6174496949419335 +4.724142329009268 3.2619983711426346 3.510516505678787 4.108199237747287 1.579585262573303 +2.495361967548237 3.6748454464620526 3.010133268557052 3.9264972480346887 1.4936211768432879 +2.5620562499982387 4.776297495111612 3.09610552686443 3.646453732755141 2.2816107116001065 +3.0439605974258184 2.666726744128046 2.528407144645854 1.077893572941528 1.4987644917639082 +4.246198651646507 3.0305493771064715 2.8948720340556244 2.043045080581663 1.4843895436691963 +4.79210693843144 1.0072129305303505 1.7972372466815223 4.73192094154982 4.789341399396311 +2.330802513440322 1.064876072926797 2.1003826047851426 3.1994485261092978 1.6764592605271855 +4.647916062126625 3.347154288361592 3.0303620252995365 3.1306336805581942 1.3046208632919627 +2.56973743725217 2.225237833124882 1.2706550034201887 1.7964827182042713 0.6286292730050906 +1.6559922968806506 2.114728494220601 1.413947644509154 1.773485294700233 0.5828432213338682 +3.2765789282845548 2.021536116075673 3.371909373333683 2.8225064089225933 1.3700277653321016 +3.298011470746039 2.8360893200331985 4.4438234306523565 3.3678141536155666 1.1709688456950558 +3.226004316847497 2.6019412700591737 2.8121321976234497 4.947525892581616 2.2247159186812633 +2.3697431603500916 3.1880629976590518 1.4206640481136494 2.649404556587437 1.476296241713629 +2.876357608777581 3.8062587551411715 1.1188546400644297 3.943625347022139 2.9738940278521486 +1.9567574143923299 1.84682222955285 4.8966178353581284 1.1253606273967294 3.7728592172868707 +4.361416588815065 2.6653285161963454 3.56899879846257 4.039147352084823 1.7600438666557663 +3.2139301502304716 1.1600265283487197 2.432871084963162 2.876090321917377 2.1011814248144436 +4.725104959773391 4.750109165692405 3.7342311916352737 4.061192204477406 0.3279157120852755 +4.045490029984668 3.9478122010157923 4.473422256660685 3.2325631431771282 1.2446976732473116 +2.1276447141552652 2.303631609717995 2.7500257402411994 1.318371292929616 1.4424305334805008 +1.1352793528706138 4.69433482838421 3.019050624545452 4.905535511805472 4.028113839955838 +4.488743938861614 1.4804628976967718 4.929291950087707 4.6697653193532425 3.0194550658508246 +2.142647998094287 1.5935497103349228 2.4916982366444427 3.245850199989822 0.9328741144645165 +4.557752478762058 3.6558935924536717 2.993724786912302 1.6421528156722953 1.6248372977793808 +4.549374222513016 3.9131387428722766 3.2666276723864387 3.7709489177781816 0.8118716056786077 +4.494197779276057 2.7090434742975558 4.272343666965217 4.351593555735299 1.7869125433141224 +1.2041232677320823 3.193349089448684 4.121823238714961 3.077304513023097 2.24678408800335 +2.403859759087601 4.553824071553373 1.3739522264020616 3.07154504545259 2.7393736371967115 +1.3459321969473597 4.839948167016182 1.7105142003377476 1.1472411914604832 3.539127587644393 +4.1326847813275585 4.769101487976124 3.4204398849374593 4.439310867744631 1.2013010880324126 +1.7479862284677612 1.3302035700146253 1.5540429388272328 2.365117006333944 0.9123505316960423 +4.382192175427658 4.814555135726998 1.6682815390227739 4.709657568957336 3.071954733536829 +2.019043849217812 4.5255396084639194 3.827167193837148 4.765273963033861 2.6762969382210593 +1.4910176568670903 3.4072059426311565 2.322485482264546 2.9998296586450084 2.032381037053819 +2.012370253215373 1.5720991047788169 4.954622449400896 3.6434214844512183 1.3831437577600563 +4.4691463429359475 1.2912614551826667 1.5053931709616823 2.0856906182256436 3.2304330185149714 +2.1209863545066696 3.4676438124703 2.4236509322845463 2.9706162579577557 1.4534983235552312 +2.5585479474947967 1.1870877112787288 2.8974501592320303 1.8005878825012758 1.756134970222052 +1.6811361727644685 2.091840474411479 1.2164295603264712 4.090644423567081 2.9034099096518555 +1.5642630309102619 1.934335321259951 2.554797096326278 3.9983236813246825 1.4902088785407974 +2.341354657111574 4.913679952498908 4.336583813676228 1.77735854475806 3.628566025630346 +4.608498825176459 2.7403152752107873 2.525418198941556 3.5439837964899077 2.1278124101695077 +4.351458754364697 4.410261680205162 3.0451735610819735 2.963615885108421 0.10054570402362378 +1.913784929730554 2.987045423926078 1.319085472883995 1.2062938029666155 1.0791710009092959 +2.0957441980203826 1.9056921641244866 3.1817961913336426 1.6328817369693946 1.5605306028804633 +2.258627219742506 2.656446630017015 3.1477404332892753 3.7292536231701026 0.7045692820415413 +1.9946477461536518 1.3771173439866655 2.122904648754582 2.744113103921944 0.8759245072333232 +2.045328992914991 2.407908476624397 3.73354518349066 3.4897441143706946 0.43692429929109866 +4.80885060243412 3.333863618303423 4.640503626616408 2.63700279810165 2.4878911095975025 +2.778353620489846 4.684653374054831 1.391097389670985 2.644556244107754 2.2814771202464117 +1.4474192075873384 3.872896502324555 2.743850646227386 4.1430054276166235 2.8001025355458204 +4.755817503320566 2.4267739802939468 3.8187627422299824 4.357425080108328 2.3905231323709906 +1.7301568418460525 4.045435831603447 1.7353291821541332 4.867409999925808 3.8949258079538955 +3.6708074123802903 3.6797250669234107 3.7443825937294632 2.812615867097907 0.9318093997273454 +1.2820393192927542 1.12226782880639 3.3995553877015428 4.339608591328019 0.9535339295592135 +2.4058071518012523 2.5553459841040564 1.3243220039277106 1.3713253259053833 0.156751952598438 +1.6879948627675674 1.5608636556891144 1.3992052264199768 1.182344804671823 0.2513777761338731 +4.329516392394498 4.120694017555644 3.8645051733275237 3.0203323635704598 0.8696174543823709 +3.336124569260783 4.474640737890133 2.280566834890256 2.328390111941572 1.1395201323620316 +3.594676601842001 1.4057363812306818 4.58163180190097 1.1964484882299455 4.031243648871483 +2.688167560299903 1.6835853482545047 1.8332560905632733 1.3731719465108556 1.1049266221638754 +1.6098887687492667 3.5143998282257827 3.0035287466895046 3.160944301556887 1.9110055030225757 +1.7948849183640703 4.6225889286077235 3.178426546633828 2.155655252785215 3.006987045045057 +2.433783051203712 4.160850679439928 1.689181385027085 2.5292555181707512 1.9205434495679996 +1.5530051453353622 4.562179217336519 3.9156894973998386 3.033430164973918 3.13584280939856 +1.1055460583710022 1.6670784762365853 3.0591050801172117 4.000770160951962 1.0963812205512664 +4.755850014575213 1.390960605806384 3.17390154574279 1.5230710553115827 3.7480290875848308 +2.053742915448685 1.376962301142087 3.3245418403267073 1.4135216401830664 2.027320942835213 +2.0013457701899626 3.6598571971947984 1.6416725525767282 1.1411914018040608 1.732380309223223 +3.538788517430787 3.663970072491852 3.981433321628827 1.5673790656559157 2.417297741799391 +1.6644370210855626 2.4289781287869405 4.099117566750628 3.2675603313367545 1.1296063655691813 +3.6563687855500073 4.532650421084401 3.9940864653938206 2.055175345191429 2.1277325576348467 +2.4153540293776503 4.516158102662081 2.908438066392426 2.6262607025323663 2.1196702146804514 +4.379992935282244 3.6919301742296655 1.4553356392034726 4.667571608058239 3.285101259132147 +4.632507056302771 4.216769502608843 1.8658788314865067 1.8440809676870695 0.4163086119907088 +2.9433344350315482 2.0231591154512154 2.9827319440532563 2.553862182882621 1.0152102692601792 +1.642129814304781 4.1236802786057 2.1628875906394835 3.3065432691877854 2.7324057198644347 +2.869333954008504 3.064628239181927 3.132872648139171 1.8070815059297312 1.3400977615765237 +4.408417232353351 1.7778720514286306 4.437116317236924 1.1771077514909343 4.188964525706024 +3.6414337053711345 1.9102412103130555 2.2381626531804173 2.3037685634272527 1.7324351619627016 +3.8663375031972556 3.7247556816510516 1.6794402307270802 4.1885894639810495 2.5131405227188 +2.811157683447558 1.8760920109301051 4.9860250545346325 2.8068024312743165 2.371362278027145 +3.9673329970255113 3.667210335146687 3.0390960217644847 3.846794730147481 0.8616558568806876 +3.3860731429986264 1.6508537498995484 4.191845526711466 2.3950053509173572 2.497923329394827 +1.5801710822819732 2.546656599698421 1.834570262361046 4.61329684687156 2.942008784290285 +4.593842002862488 1.7527904665931366 2.0030438805576223 4.112657685413862 3.5386500586210072 +1.303138731951559 1.246941761347057 1.3044250656063854 4.462711536723777 3.15878640195064 +2.553602428132626 4.122822643482965 1.7082590438770842 4.112481909237268 2.8710171839584833 +1.9342089928576813 1.5878712136712743 3.227694343756474 2.981913609360765 0.4246857976102645 +1.6860279592638405 1.4905103041186325 4.678020656831302 2.481952261605162 2.2047547596013017 +4.736549674292821 4.863893427580139 2.341913637569304 1.0301539755484668 1.3179263417984795 +1.7057283980878188 3.6928746173426004 3.7874663193744538 3.924287372936257 1.991850922482989 +4.083442713861359 1.9708013598678193 2.1665181139814953 1.9792172437869806 2.120927888113898 +3.162886529731313 3.000444906797347 3.6850316208106175 4.917720605697678 1.2433460557396367 +1.5463644140551502 4.28261612031088 2.9075789354248536 4.111215288372331 2.989283169946283 +1.926698675410269 1.2417953054146205 3.388345114069978 3.8124987229704654 0.8056046860431634 +1.4167688951983695 3.7648616799504255 1.833160117118243 3.6743104305929384 2.983852242087841 +3.2846008353547638 4.642460560517746 4.408571260096695 4.919044801030752 1.4506433983627556 +3.4694669817178623 1.4630264184148647 3.3652316215106857 1.9865864795379093 2.4344334374865926 +4.832278294085853 2.8430459763965477 1.5255755687961883 1.1833502164827268 2.018455698177604 +4.58325970621053 3.966560704845887 2.5636977191494266 3.986317932120822 1.5505373032078031 +2.20671574494159 4.08999952748974 3.1277686245851806 3.023639079703253 1.886160323972006 +2.641006533630887 2.2593301105118853 4.095260388739048 1.1551523761539992 2.964778578179443 +3.1527060339377315 1.1665306791197998 3.5890030452259563 4.0443589229765395 2.0377049628167816 +3.2146579500983017 1.5055265151553772 2.289503993363335 4.26127599046575 2.6094089504076026 +1.4171227000242101 4.343554149483015 4.301687509503409 4.255354347791045 2.9267982148169747 +4.153216025248351 2.6242046397536742 2.533619533581477 3.0667094135603366 1.6192778134428407 +2.55119858786519 3.048898452549981 4.010695819928306 2.1252799401434914 1.9499995371927668 +2.112925762769689 3.700426343550505 2.9729980454242955 1.9577132519189249 1.8843994549730352 +2.2114677271084813 3.2746769640494495 1.6695539098620218 3.4873210707915945 2.105870682846066 +1.9163533863765148 3.993270925458337 4.587445389056887 3.4320534792666564 2.3766608780712506 +2.7983268965616053 2.458450527859704 3.008569074086015 2.719082833981155 0.44645070188324204 +4.496302866153469 4.882324539605847 1.2596081341574843 3.5283785320237935 2.301376077613006 +4.24219040530693 2.5141862880173655 3.4933059663482537 3.834413721207122 1.7613496898102163 +2.8562646116653907 4.064210147385532 4.377338055435742 1.7577757459262977 2.884655804540409 +3.2366363215139917 3.610820366775584 1.3062989327857926 2.611336970530807 1.3576221785495723 +4.51111315577121 2.092000394701895 3.470316976937257 3.032311170907276 2.4584457766817596 +1.3950279570053126 1.639543541134179 2.000700949728445 3.4408032004054308 1.460712964030511 +3.3419883813601476 3.4827412147950922 1.7952943166302036 1.6084926788467548 0.23389359118741163 +3.457393434111416 1.3730054901171482 2.2378611920598397 1.9385488968314952 2.105768494194818 +3.0545782739525884 2.7551360784543517 3.0442371822359844 4.591374866753959 1.5758491816479283 +1.3275911392185091 2.0369627067837914 3.9278663318143696 1.8681298687731354 2.178467883181122 +3.619504800568353 4.0128851507167385 4.146472835599498 4.353615151567157 0.44458524373545233 +4.729160573852427 1.5611616474233743 2.13948633335828 4.780241033230661 4.124294192071378 +3.658110530050952 3.9600151747226056 3.542349085079109 3.623461611255152 0.31261103047873495 +2.0859220558519165 3.224477034071021 1.017287407713022 2.6265146042333245 1.9712736006064957 +1.6968290151153163 1.8295267993473727 4.466395378732594 1.9160307147390245 2.5538145236659475 +2.839153556411264 3.8503312335666204 3.174594124392662 4.126987449344563 1.3890764342505562 +2.8989163008288554 3.8998685032125566 1.0353121258864446 4.3058806004245405 3.420310433001547 +2.9141558416830327 4.5814567961818184 2.3087730954216097 4.163777589789248 2.49418005504749 +3.5014474148916968 3.7449423205622443 1.938017901625527 3.176980598972368 1.2626631912368669 +3.3072579771879784 3.9672765343890557 3.2719442998458046 2.2720521762928922 1.1980854537940708 +2.6414497331850875 2.8068626738463074 1.7332700096744764 4.547656255965709 2.8192430516455027 +4.690796499496251 3.802498773763751 1.505280398721955 1.6983118709561742 0.9090291517957181 +2.3798976454662832 3.3146542007101805 3.016276963999779 2.290747108034452 1.1832849992577887 +3.137055886134611 3.1818348514809514 1.6011080332821157 3.5607935921444103 1.9601970934961903 +4.204652367624601 3.9361910082383678 2.8705630560148747 1.3852915294483292 1.5093385998883155 +3.4475071827584447 2.13945125758304 3.71137506204428 4.292129792949865 1.431183552468272 +1.0861454492694462 3.009327361134946 3.4962861131524026 4.487382221848026 2.163538805475475 +1.9285800359846457 2.8763545471864504 3.5069880577175803 2.029645709513326 1.7552256088268199 +3.7869643916314826 3.8555841616689697 1.6369832004849956 3.0895927954538354 1.4542294551533241 +3.246973476769176 4.40313079445011 3.298871407121848 2.425679820430198 1.4488489535822062 +2.385622946570816 2.564784334936252 4.3981938816516575 4.279810931799236 0.21474013573803905 +2.263340489643827 2.1104050474729092 3.317834903251706 1.9083642704248165 1.4177435290888991 +4.227075830329824 3.3796733339396208 4.180277564567469 1.7025825784539257 2.618599517891298 +1.2783330765157408 4.759131307600155 1.0457886294259602 4.797911970247399 5.1180451238981295 +3.0971823161313363 3.3885187544371083 1.9429210506474175 4.062798783807871 2.139803384387032 +2.4661742690056125 2.3463549971381723 1.7343202635881694 3.4711986000015056 1.7410063220484875 +4.270535266774809 3.990888503009944 3.9847010673822867 2.711673698073191 1.3033806026998402 +2.677909417192657 4.752294549176611 2.578520443973108 3.163554147917886 2.155304644487046 +2.4679248707720567 2.792396774144505 4.476594875982901 2.9933803014669778 1.5182909767678232 +4.920796240747977 3.012039591639187 2.821647625564256 1.6313034402372422 2.249504662155393 +3.836208904873138 4.415516430277748 2.2425343636371617 4.113655806585264 1.958747728333233 +3.4430908566031855 1.7615538872743173 2.0349159639141052 3.036531789179362 1.9572431736096352 +4.258745500289345 2.3799185137438075 2.0031625531421358 4.888580484803484 3.4432001808963473 +4.572383411013416 1.44614197051661 1.9501412879784321 2.4586207620658076 3.1673233052291514 +3.89469672978043 4.739610223926123 3.2791400799496113 3.00145569591044 0.8893747408874944 +4.624052097429114 3.4359198741354366 1.4071116877807381 4.4434881998397735 3.2605583115492 +2.6042190929340103 3.1001831141703393 2.1355303327565704 4.446572003295899 2.363661124892932 +4.65561840961967 3.553358825996266 2.435873713243668 2.86381315159628 1.182416319486157 +2.557521842150696 4.736418690516264 3.4579550181986103 3.8178143214494002 2.2084135015783506 +3.1034138406958656 3.612704739754487 3.3159281017879927 1.531180532563119 1.8559905995769577 +4.607267523117521 2.3411187118439445 3.5796655626992218 4.478262816400292 2.437807920898558 +1.6839591862300374 1.4472078596643496 1.1265153310624854 3.5594440196628296 2.4444208300628607 +2.167385880430056 2.3682105613296685 3.918967345942941 4.639602851088803 0.7480949697299556 +4.920729595171547 1.3174137048288284 3.4664385382566403 4.809659650907066 3.8455335602574303 +1.7200010614114225 3.6883604168981283 3.7705414758549214 1.0545547941411604 3.3542543444972335 +4.779397454314367 3.741658019858059 2.01150104276261 3.6270946567004536 1.920168185139635 +2.6756997240058027 2.945378394110734 4.819852842642135 3.45787873924861 1.3884163797017668 +2.113694667198959 3.0280337253404617 4.597942889513218 2.7016335822583772 2.105232742958466 +2.702978864672989 2.180638436237841 2.129907856677505 4.185424939065237 2.1208465289043406 +3.9340583347996274 1.2120290881991638 2.62549413118176 1.3556531138251513 3.003654345744456 +4.237605400437618 2.0557016395549916 4.783174679096654 2.8430716461514094 2.9197095403819002 +3.9053265085811155 2.035740011978052 4.739036473881452 4.6463546688992725 1.871882364160545 +1.3804391551757242 4.650798378109351 4.54759858414837 2.515883006914453 3.85008021134651 +1.7556627368550348 4.346552811848072 1.0954561612975597 3.874318155271022 3.7993138014972643 +1.2056328998103991 1.8085799156204958 2.3669356828016497 4.132882801706613 1.8660424246632337 +1.225673592935919 2.6426582040886646 1.7842102186108284 2.394581521773104 1.54285401641494 +1.3576374946944139 3.473820460237105 4.2461603272668595 4.347268539266011 2.118596991923363 +3.98020633944272 3.1164621334568485 1.2569168731821243 2.9887628268943307 1.9352892447289385 +1.7322296409448894 3.181739897574812 3.853828226405674 2.1087478212576167 2.2685646573344678 +1.0190399435281137 4.383385579106767 1.2059238761328706 2.371435636933433 3.560511089745622 +3.804724254838298 1.51973641261428 2.251431657696605 1.728585970514518 2.34404288606597 +2.412257266217445 1.6359542065594987 4.375105501145326 3.7597041015266717 0.9906388459407833 +3.217863302403433 4.91327916963961 1.9566609100073018 2.4749309437569122 1.772861751733344 +1.316359227477769 4.791332477865122 4.030756606400974 3.2586002287072837 3.5597281585144516 +1.1780635484667958 2.5546410039180585 4.191920683357673 4.304417273021532 1.381166526361927 +2.584740500995178 3.541771339801607 4.51536165087288 1.4854497047929418 3.177463521021832 +3.0152569500112545 1.166675685243102 3.9217145471621557 1.4958285856105435 3.049946784930028 +4.131300794360455 4.9092683842592155 4.923715765911671 1.9594511398187704 3.0646530544971267 +1.1973918994329793 2.853838342672733 2.550013530317182 3.9276895737742605 2.15448511251231 +4.203670788742703 4.428455922404183 3.591827005655208 1.99745323815467 1.6101416294255204 +4.4051229518365735 1.9302670836011648 4.369527723426783 1.6875681914734075 3.6493586422239743 +1.6660614432360146 1.0889194222206005 2.1355675404913383 4.090950255956308 2.038777691745943 +3.070217460917051 3.8532932454793523 2.2075135852530625 3.0404279046661813 1.1432208657347374 +4.167713356525368 1.4172912035783014 3.79591833119185 2.815536708648322 2.919926393805683 +3.504994407714339 4.710103601942834 3.5660155296443814 4.922905454883327 1.8147833036561152 +4.6690371161330155 2.7544233335032215 4.830299244091988 4.023431816516549 2.077686449471665 +4.775520279733244 3.435970129687383 1.3738696234525078 2.2936111401448183 1.6249058625087671 +4.718074546570081 1.4956820290563413 3.3282669585757048 1.2828120354185506 3.8167655651868873 +4.034139865181565 3.826773795631155 1.1149454776331544 3.8826793435367617 2.775491206844387 +1.5459501735717787 1.2428741878581522 3.368781669749891 2.4277119989695346 0.9886693979176935 +2.336823739099028 1.6520294378303042 2.070912433759318 4.653637579667103 2.671967891714739 +3.000824005769545 4.89481602360392 2.30643695971675 3.029928419393197 2.0274727262888357 +1.7258775948071743 2.287328529418992 2.6815079304456324 4.198883701824519 1.6179172981163636 +2.5903115022242464 4.128600236278238 2.5703621477214007 4.6903722073644865 2.619308092284165 +4.696542143666173 1.3538874567089882 2.1755652753262 3.4427950546160737 3.5748023259693533 +1.6927168143835836 2.628630995096257 4.0050729644991145 2.1607837953973483 2.0681725974698435 +1.1071112858518082 1.324608090627013 1.515767854547314 1.9547113928811224 0.4898737489725562 +3.740422763830617 1.8072869069955826 3.9451325832188795 2.6695400339668707 2.3160635985845817 +4.7155083584543345 2.13023279417216 3.373348598480861 1.577130140481056 3.1480232674066615 +2.816777044179802 3.58160485148197 3.564708471203837 4.515279388427497 1.2200600983124037 +1.644327326311609 2.8806135908534882 3.2925602944067283 1.8546002789570943 1.8963472081680677 +2.6994661081145406 3.5682994643328687 2.0743702048535924 4.0362058126587605 2.1456165437770744 +1.335365307388527 1.550209460796966 1.5326657049251677 4.561299156065752 3.036244158762848 +1.50207518548235 4.413527981350868 3.3161111279575666 2.216102574864763 3.1123264930671937 +4.025129774832818 2.251245840547319 3.1292765011780173 2.240704499615197 1.9839920398725288 +3.060862205284358 2.1266044031204396 3.225944570184547 2.1269903346514236 1.4424070343354356 +1.675888629683723 4.303473750694565 4.086161709407939 2.540243339659651 3.0486172560822986 +2.85329954799951 1.5186318372092584 1.0018209900979413 3.2880217134247585 2.647272491748092 +1.6029560462859895 4.779019417336716 1.708318525475124 2.0743009483456163 3.1970801789727235 +3.2728371661020463 1.2391094170815986 3.4722792873883526 4.684446281113422 2.367572042792415 +2.7856411426989562 3.6456585126216527 3.944302982415168 4.3857053311568555 0.9666777694989321 +4.904325564354998 1.5628549851441713 3.47636388536638 4.194478784267687 3.4177645676312425 +1.0122075076236206 1.3092383802985395 2.650562583310408 2.942107895315315 0.41620428670793674 +4.948513362285839 1.2864930953921356 1.2372054259696563 2.194499316983039 3.7850764891758493 +1.2130414099208169 3.5995285310078415 2.9167140002700687 4.918625895851649 3.1149593924777372 +3.845787912640663 3.69914984570358 3.6578313783094614 4.946979606983355 1.2974613204901648 +2.9568452624942845 4.229044127073356 3.53694809998951 1.2099436959264964 2.652063243507768 +2.426996871842667 3.577721011055777 1.0236904763021055 2.79742157192043 2.1143055701887405 +3.2024639467196634 3.3643486943224903 4.011829523739745 1.7282953504009 2.2892651642640165 +3.283893774924457 3.4100706597902053 2.807493324924501 1.938436611513029 0.8781686497478568 +3.3155763718896334 3.0668635604479393 4.800840879268989 3.1330005536700627 1.6862827207408504 +3.1765316300124544 3.120470298862531 1.880590150129871 3.274404592425538 1.3949414225702392 +1.31850918797462 3.8588187672952143 1.7250432799454192 2.1322031285566196 2.5727323803903643 +3.202024624034247 3.4335756352414246 4.377379153699961 3.4755192706382996 0.9311106913074618 +2.5733830083066547 3.455206261655349 1.9694282919342214 1.624969719480132 0.9467121834452035 +3.3536522946048426 1.1150792984138262 1.8766777240548995 2.551280796488576 2.338011626278317 +1.657016483383368 3.9851535617379765 3.9517912978055056 2.791451886695128 2.601270805699689 +4.683418364837649 2.615320915359769 2.295649584395664 2.686138893386834 2.1046398649111713 +2.9025631509715843 2.728718038406395 4.443053722215984 2.023293975198507 2.4259965697520856 +2.6108332449893186 1.8863752931052504 1.8248090098296328 1.3368089923505346 0.8734891762967981 +2.465242459070794 1.6136267065444052 1.9137174707874238 3.3858459209833707 1.7007091355747483 +2.2012569548686485 1.095071787055728 4.595784701131093 1.292068921430181 3.4839896065479445 +2.093390565396823 4.467907161413512 3.736865063285962 2.231247862197275 2.8116209241241634 +3.916875264402213 3.9678887338504585 4.806284637075885 1.2141053804012025 3.5925414661697395 +3.156650916892004 2.493902061664651 4.5726879548318475 4.04852523432138 0.844974912454862 +1.1237163420425649 4.027954053374901 2.49454969649031 4.414833388603817 3.481678638548074 +1.8631590047193058 3.626371908151786 1.2491014999211711 4.935590598575363 4.086455874878253 +1.47431407657976 3.2237108197554702 4.903216788288448 1.8611534973080004 3.509207607333111 +1.4003830627359712 2.854692591266761 2.2253817208986924 1.3641333049333992 1.6901967455826479 +1.7340865283177025 3.000877789575638 3.8822510525154725 4.137875726105017 1.2923250648916598 +1.411809716928372 1.987948528636203 1.938573759847221 4.135034902690823 2.270765836095376 +4.056480543388146 4.133159784918567 4.966547686421629 3.4156938014381164 1.552748362952006 +3.0173311608909943 3.1162848679746262 3.7633983409364418 2.7765654302385463 0.9917817450336912 +3.1582765249367206 2.3961312134172594 3.849542324602019 3.018229936174496 1.1278057292921373 +1.9969628590903064 1.3827077087703916 4.165593658120532 1.2400469505571912 2.989336536395533 +3.195458406172402 1.7721360774226396 2.7400633903125975 4.854146549572047 2.548567059306476 +3.1554871345958877 3.877252499250155 4.268974771964736 1.714621375483088 2.6543674417329335 +2.1871774150676173 3.3074213738088565 3.166223887708415 2.1522786014322564 1.5109704069431287 +2.589685106288227 4.261298776241812 4.850881450836114 2.3879419119346834 2.976636261597928 +4.547968619767842 4.1874646436344545 1.7207280387984802 4.22727144725047 2.532335478419497 +3.429415048443035 1.6917025203841156 2.9109340609310044 3.9573549638875725 2.0284579207657623 +4.24968456547095 2.5408280071412213 4.947262464659783 2.7177966528852813 2.8090405021675755 +2.3196657235905294 2.9732107792102593 4.926348849287384 2.474484954987882 2.537470728086241 +3.782355780178616 2.7430035274431375 1.84698763452799 3.703267990047201 2.1274467945292646 +1.4193972921480684 1.7644250740120482 3.9074110471102568 4.106469801703309 0.39833222068785107 +4.9403930288634275 3.5315565376515243 2.437221291262035 2.1773577480378927 1.432602289565137 +1.430125845980331 2.292585761267025 4.377148754729544 3.60029036311983 1.1607523707021936 +1.65102003869861 2.966105210006724 3.6332747532770804 1.2473248807564459 2.7243725519788446 +4.800030379813335 1.9294193512930518 1.2564270930506232 2.559300673601386 3.1524414735184925 +2.154261791428549 1.2910241137110678 4.014853688970129 3.74932766778 0.9031519009336861 +3.8244503979021607 3.6282617000010124 4.896766551794153 4.351505870162946 0.5794818514130333 +2.896328909665645 4.177829224710004 4.952328214108263 3.338804355335734 2.060510203878395 +1.4027642528737156 3.5532096306931464 3.042385138501198 4.2272197057264655 2.455249126805026 +3.993156080627365 3.319162835041583 4.583258258126433 1.1107650038280523 3.5372978806206037 +1.1845908152112021 4.328938796660013 1.5110339159616153 4.96867923557973 4.67356773618595 +2.093485685519496 3.7060671651204298 2.9760324836911076 3.117995320877975 1.6188182342357285 +3.541961493953873 2.988690793331986 4.525475807839797 4.960289200571737 0.7036839877854935 +1.2068441962678844 3.8085598057467647 4.093851101894214 3.3125215807403476 2.716505095381305 +4.740252994289635 3.905438267007514 2.2847915907067735 4.142877234589752 2.037007091026231 +4.229143800012732 4.294606957386554 3.158813216312963 4.35905237963167 1.2020230755427868 +3.291123697038862 3.113846307748082 3.7837379292175264 4.334772197239454 0.5788488898565985 +4.585953717882243 4.300351175575784 2.528507461267688 1.6944470281421493 0.8816040030974643 +4.34586279746525 3.891912002131912 1.4066845980592313 4.507775075172038 3.1341399891873856 +3.010017831313605 4.63269281997113 3.4908164513580595 1.4462733869397777 2.610216554440569 +2.437659529919244 2.5616037190045904 3.865652798400681 2.7053128183370485 1.1669408859672776 +3.565608447324162 3.409797000837002 3.8444869458014095 4.832544188932829 1.0002671256023972 +4.137380866160212 2.7094600407397147 1.8176351014621677 2.205680684080694 1.479708504354593 +1.457171244551828 4.476222277712335 1.6527220396008433 4.740393795810013 4.318377706375316 +3.7944763308226253 2.610754739425872 2.9440619784955335 2.1545323774022913 1.422868158664504 +4.183048748713454 4.887434105982338 2.8492505527953966 2.014279074917235 1.0923992403900944 +4.16764685565631 3.350167462359588 4.059426475503372 4.966264220240555 1.2209124676834116 +2.365873294282698 4.927831338862357 3.3268130130542897 3.152438550352199 2.5678854093259447 +1.8198621627502791 1.4520608006651234 4.181901202777826 4.217863871659327 0.36955534836445847 +4.263543533393004 1.1601560739734231 4.071304934641354 4.062489778969757 3.1033999790958684 +1.6407689845924986 3.633458622626486 1.7845072972566576 1.724465403787883 1.993593996404318 +1.7736721562989581 1.5015169921856835 3.4513069212040253 1.0536641489802565 2.4130394312050525 +2.2432143362546304 2.6716476535643894 4.280438309593688 3.9578208923225544 0.5363181008578223 +4.121437366407116 2.281079075963612 2.8518216892618793 2.011195428224967 2.023257558480639 +2.3017066132334265 1.1533345248710498 2.429830183771631 4.920770503392415 2.742907604940833 +3.7921975280181015 3.1061464002327517 4.749390955811867 4.218499598082905 0.8674743705994147 +4.868132483916467 4.298217423630992 2.4939054949023043 2.212124222318424 0.635770289899731 +3.0429351600125414 2.1281222353923197 4.528960574850227 3.861223995048834 1.1325876685965928 +2.1007871388363974 2.8789489472874883 3.873571306286471 1.0325334442030933 2.9456802158284527 +1.234271904048442 3.379290294697576 3.5231761774995376 3.0857817349354915 2.1891591524164964 +2.4700342207608843 2.6275412984552045 3.621961593601004 2.081261114411758 1.5487305918389351 +3.003060907437041 4.865300924553004 3.776159810091093 2.6590142185640397 2.1716243123561667 +2.479073806275342 1.7581701571781632 3.652484783895557 1.1703748875008877 2.584680175391529 +1.685554435476798 2.918600961987735 3.8544562605137327 3.176828306017115 1.406976681134395 +2.5407948874152377 3.8005118741666863 1.0869322691187606 4.025570510013955 3.1972615779072173 +4.461536673967327 3.1496508925417155 3.705096486635006 4.9686602390378845 1.8214383491881165 +3.2890472786024185 1.9997519561958947 4.1817219952323095 1.6385920456017158 2.8512790759740527 +4.128911536757004 1.4220484214938702 4.893343703758135 2.064514672165306 3.915275420038092 +1.2544740047232712 1.307113929075229 4.824512612640921 2.9541244975489107 1.871128713561208 +1.2866106031086924 4.919608922678686 3.571113990575048 4.746105193867485 3.8182824827156256 +4.389604087711218 3.122016839636645 4.158933318530173 2.5101136439819034 2.079755694945618 +4.77513908737288 3.5879940213108896 3.972091523175023 2.486287498992666 1.901822022732888 +2.6488224450519695 3.3816525449629338 4.223605848554712 1.6110519211783716 2.7133886523653508 +1.046399826749432 1.078456456288019 1.01504686304847 4.171927111794333 3.157043004524822 +2.528345502479585 4.398963119775803 4.887359972155569 3.7337844015666417 2.197714009419458 +3.0339601649800714 3.252097807734471 4.326342969506602 3.8121641843678353 0.5585372451978683 +4.488857312756396 4.603345664792912 1.5330880805584353 3.215932380248283 1.6867342765683786 +1.1592429863047782 3.4145641702957774 3.340026735108997 3.382773942210277 2.255726261467362 +1.346095331771732 1.5431608457223618 3.3571172795336754 1.490042496406955 1.8774458880554499 +3.3271965543811373 1.6331671247921546 1.4253078763390392 1.3642216405714724 1.6951304482292284 +4.887404976603386 4.86580015141062 4.6423497586649365 4.76001251125627 0.11962981158130818 +4.1337966306298135 4.700362835607291 3.8097794430355356 3.029199411489082 0.9645218765127328 +3.395972611706144 2.215605788185071 4.744661226971069 1.1913435606811382 3.744239879553305 +2.215929646903376 2.0437176877232863 4.543172320062641 2.4820872133210004 2.068267094965455 +3.757922318449623 2.4694474950049106 1.0614600870802358 4.120975680926557 3.319759485209688 +4.288403082924081 4.934580358466087 1.7085047350107083 1.6683530128980881 0.6474235338752358 +2.139564278074063 2.498892655213924 2.7259729908550536 3.817107695902521 1.1487784064722795 +4.004036876693998 4.323404466518292 1.769739842840456 4.493684574640623 2.742602880355095 +3.1302045110603625 4.551443632334738 2.2411328386503984 3.94197908687253 2.2164833858912774 +2.467001110532076 1.506355776557366 1.7526695757169524 1.9241636429023403 0.9758328098435555 +3.5201810435196172 2.3836901544311186 4.498612415432792 3.81878163397265 1.3243041313844313 +1.456019479317197 1.8347977440721701 3.8113671617934597 2.302140531390133 1.5560327746449842 +2.290388068518408 4.386536177335584 1.0913465936160307 1.393729690153438 2.117846177409817 +3.968351162767603 3.8384505541404272 4.2192421030191785 3.8766686412245956 0.3663751422348891 +3.685174356262281 1.1844334192019992 3.2003655178977555 2.9046532468522166 2.518164208612307 +2.6755380574426213 2.724625954450414 3.7675491285568397 3.8351872333230403 0.08357352959526834 +3.601462677010771 1.6305334501578965 1.1261558409592203 1.4234657509481323 1.9932273327045475 +4.045964901513184 4.401661622529701 3.847120131987798 1.5242449250186545 2.349950932358768 +2.4743389801429863 4.540640713182219 4.931598283004086 4.0734272125683715 2.23742272226187 +4.304653934880319 1.8918274242769515 4.2371867660553235 3.818817827265022 2.4488291772222386 +4.359857922786787 2.9995582626781356 3.291829072156053 4.045119598943689 1.5549475177766314 +2.918887430182447 3.2674673390463798 4.736836717459745 4.834549366468887 0.3620161800803544 +2.40099304378565 2.0364892500547818 3.20441257851921 3.454385737023868 0.4419837051487195 +1.3221144490764818 4.930633676502529 4.836607539714409 3.3237992744086453 3.912799491704234 +1.2314739097404614 3.606800032240498 1.7801095975950467 1.8096954897249455 2.375510369003718 +2.961146196589663 3.7313022668392333 4.703524592027806 3.430446721712535 1.4879071329988063 +4.34303860742012 4.962311462022605 3.2987822004478113 3.443896455342985 0.6360479662897219 +3.979307176041446 4.713963597199058 4.528087374537188 1.0666150461932475 3.5385746759166934 +1.6294505476199417 2.7592150712756927 2.494725868440011 4.297888421374913 2.1278541000777804 +4.304999543476862 3.9323339388466327 4.894650157279049 4.283302942253682 0.7159784006474542 +3.610211039735767 4.151259795424236 4.675406246783581 3.274565595067677 1.5016951380129988 +3.5164742714650874 4.3395157232774615 1.399620472606311 1.4578273646096656 0.8250971298447902 +3.000960175119935 3.051545431925038 1.9248828812360625 4.581962584077694 2.6575611781215893 +4.995212098384004 3.7546104316173996 1.3460677138605202 1.9327952040902336 1.3723489510235123 +1.4551566819263875 2.3950546955481435 4.520252310096959 3.278396556100873 1.5574382779883476 +2.182826143347078 3.0863030107168443 2.000452488308378 2.164790105915873 0.918301313531236 +3.5286001597307637 2.1719287332652497 2.8446140618375106 4.74449110421159 2.3345428108150106 +2.4450575444373777 2.327450430668336 4.663925317521787 1.7405088382193217 2.925781151191303 +4.779179839797111 3.076231083475447 2.3884382799771484 3.729855961119509 2.167818226221666 +3.9287295025649276 1.3551991159899832 4.341254241459248 1.5587170345326844 3.7901941848083807 +4.0238233605546085 2.5818061168177318 1.1782445886120056 1.7553577938136513 1.553213888314361 +2.7216023943293366 3.0845828494109173 4.336403666668845 4.544522304478624 0.4184114938371428 +1.818697069906785 4.277207829548107 4.319752596716709 2.536562997014754 3.0371105188579115 +2.6771355709211413 2.1374463165105935 3.026608213109424 1.750820551290778 1.3852431733724229 +4.363753567989747 2.667681457942352 3.618229924688311 1.4094113409171514 2.7848770418985205 +2.3752763562565526 3.5973461341378106 2.18257106483552 4.034046385938363 2.2184263356405647 +2.5692999097087443 3.0236581063357266 3.2776000805764607 1.5220296290385158 1.8134136266046055 +3.2325527826046905 2.328824802441954 1.0706028715218139 4.872831021248511 3.9081534213363636 +4.9723165787280585 2.3387849507398806 2.1654346704031116 2.067734468043348 2.635343272736059 +2.607913630201069 4.373655586679612 4.41107202909232 4.963122073624424 1.8500280831751095 +2.3461434756109454 4.901975265980032 1.3804761334286262 3.090004370635248 3.0748598235477385 +4.1975619659140095 2.593775885605701 1.4227285877979803 2.840468334619678 2.1405877186204587 +2.6740590520177627 4.447492021262679 1.8921819983810204 4.373109332434208 3.0496007826036995 +1.8570449629494044 4.757867155795912 4.4579747441694435 2.7129013816764167 3.385269625154478 +1.4834508666470239 4.040433359986382 1.0068546551286404 3.547928235930273 3.6048875730446843 +1.3421980381641387 1.2388738250358435 4.365855040413968 4.463241970958942 0.1419862925058363 +4.578097172332214 1.6348866282722434 3.4719531275384568 1.991210100922133 3.294706089704916 +4.6656655713497655 4.5613522607879915 3.7395958295556833 2.6450374608491245 1.0995177530471802 +3.969407322802842 3.4624985359154143 2.3082027461741497 1.6325332094949325 0.8446809107704469 +4.737772126096559 4.953285951073076 1.1965680247252792 3.772282336493764 2.584714766585475 +4.988304269305148 3.637687820661074 1.9819960086937893 4.216974564415148 2.611377784979083 +2.2742364933738095 2.3072628406613536 1.4297619478361026 2.0874014794928666 0.6584682932479631 +4.91733467309454 3.52763711211121 3.4268008026927554 1.7481181051857626 2.179273940997866 +2.20559015800505 4.041737628161345 1.9341416338806794 3.769927621030746 2.596449060308695 +4.482614945337719 3.785262156561471 3.6464013993649793 2.44400486977198 1.3899850094124395 +4.0692449505858175 1.0753716578094807 3.7770666773024426 3.642690775676452 2.9968874146582856 +3.585945733625845 4.391505235702098 3.423565926647043 4.986785525766136 1.7585737478011543 +3.5319821158589826 1.8776403935759434 2.358589168932499 3.729403491667 2.148482823180223 +1.346679178816074 2.8003323965521205 2.4422592122655242 3.263746690800544 1.669715351436941 +2.1326969510893052 3.766009067848169 4.7752606565942175 3.7671610044167996 1.9193679635420484 +1.952240412847634 3.7865424827914724 3.685199750710236 3.473719961335685 1.84645275734695 +3.1042442673909383 4.786247643244968 3.2345081414604113 3.448780790941937 1.6955966869218 +2.569247248380992 2.569319663583855 1.6143000788803823 2.7995201204030415 1.1852200437348905 +4.834290792226184 3.0683910400838994 3.727564867263638 4.934362702113383 2.1388695492746197 +1.8650616150082455 4.918714480686274 2.6436238788717867 1.6786892904306234 3.202482565765777 +4.023596350283731 4.1049967772279015 1.3980854135570793 1.0341163265629816 0.3729604882477637 +3.576773174473207 3.5911428902977662 2.0465309607349815 2.4009873006292493 0.35474749558540825 +1.2629733211231229 1.2588710249174078 1.523391938695982 2.9196775658805603 1.3962916534579695 +3.5775014839790873 4.052764664495479 2.0674840883048518 4.659609775801231 2.635335020549215 +4.449936534632556 4.9848459664437765 2.1240462434234266 1.0940679246650307 1.1605961560133544 +2.6154256088550483 1.3058461909574128 4.905597652656217 2.718518082907639 2.5491793377855423 +3.4971970963038386 3.0923030436483496 4.71822060859221 1.102042613814454 3.6387748602779286 +4.865354259798754 2.099678043105639 3.5320958631588537 1.2319295425624888 3.597183625836713 +1.7837994339726944 1.4835170423219601 1.2179711101725292 1.8737619908375898 0.7212705414051932 +1.2414672600272953 4.301904026445312 3.4459753991981934 4.386646607656171 3.201739452807639 +2.9948232523849514 4.462792481979065 2.2574913339005254 3.190400895082905 1.7393257050882207 +1.116086325032688 4.488865082235156 4.729909677358835 2.8966324406730153 3.838820388034145 +4.096453317736561 2.1951355457353117 4.1733350511149965 1.0720836119211428 3.6376874191207995 +4.0099490573065975 3.557808891740135 2.320180865622112 4.866159273131662 2.5858145294710004 +2.5667691186555692 4.036819721240683 3.391507739320291 1.5897965951427184 2.325341226834142 +3.9300534571857675 3.035627950953213 2.174896932979835 3.0338745798726867 1.2400966027132492 +1.9906226710761752 2.334547751436903 1.7440920275516505 1.6504933286599686 0.35643397331812926 +1.9138428068548636 2.1892544822022693 2.7206480640304234 4.32070034443956 1.6235821170979134 +3.635634782034427 2.9290608597118473 1.8258386788187608 4.086983144735036 2.3689704522112796 +4.733697825042201 3.9549242333772745 2.3499577546814425 2.2172996650774817 0.7899914403410091 +2.5969956063568684 1.808548828674501 1.5086542481223115 4.478970369762635 3.0731785147814183 +3.4591154549399445 3.0207413694908 3.2654253185846907 3.5944969858642497 0.5481423181980414 +2.469510475268115 1.4291997258328681 4.509073377044606 2.1943014666306593 2.53779736240543 +2.1419093891441916 1.3495940122259928 4.93623120734506 1.132297246278319 3.88557296118062 +2.3875762241841683 1.9754398072643817 1.803083141927945 2.5191519928469677 0.8262027749941111 +2.760398397927552 2.6956791436002785 2.389702742126487 4.578427102974285 2.1896810063681142 +3.2046762653245016 4.309629110351752 3.372221908545519 4.322819109283061 1.4575856159361156 +1.7592356910628402 4.280849737250703 2.567113620017538 4.704182188507486 3.305389457289353 +1.2547496246443361 4.95990161543355 3.5260190198232535 1.8277703828656064 4.075806632775625 +2.6245277359858883 1.6137030973201831 2.4526171800195935 1.0072404289226786 1.7637688064894237 +2.826114316054329 4.6011255666730495 4.43624126640135 1.2601038031689513 3.638476896336071 +3.9950637579221975 1.2010559507183216 4.0968735000569865 2.0997023322857484 3.4344100366864962 +4.17703696224525 3.6316013894893313 4.143833769251635 2.3570927645070783 1.8681390157221074 +4.220881762814676 2.1897581553004835 1.0340034578414299 4.278665758962617 3.827962455056019 +1.327960982319945 3.755539313259165 1.9993991972232283 1.2470818564232418 2.541479477413503 +4.045254953541248 3.0197821859353198 2.0920194918277515 2.0360746930764155 1.0269976716666347 +2.11970559198484 3.9386231525324145 4.511944787946942 1.884796180982213 3.195367098651586 +4.378523061729721 4.543754257815555 3.9138696770367027 3.6080035193370263 0.3476427111071347 +4.42468759740129 4.966211275649693 3.001287055328029 2.372226120787149 0.8300394891022503 +4.315303368072083 1.9485735767654897 3.4078779981605964 2.32210474783099 2.6039035036247924 +1.6636808862720964 1.8352064061338074 3.7989785835311136 4.621909624404418 0.840616739065224 +1.2686363680657058 3.330717832049927 3.0667043963990515 2.7891125992575354 2.080681900230683 +3.372468510962196 3.7549020470774597 2.973151407671039 2.5226283769369426 0.5909538144114648 +4.234364534797937 4.845089311386073 1.0292445078635453 3.9623577782233257 2.996020395374383 +1.2904792430665024 1.4570157677514621 4.876478986221137 1.7897286777992534 3.0912395378871467 +3.629621218664848 4.498398606457995 4.304853081154844 4.730576539815829 0.967478481825283 +3.596546417576676 1.2966779928028154 2.0217524060055956 1.4866743473423494 2.3612927180116037 +4.312227553985105 1.3243893719170279 2.4999027968320413 4.713720179952818 3.718623993903067 +2.2921929977898357 2.2925921893436154 4.1013289649665 1.5762616507447276 2.5250673457761583 +1.9472503959488687 2.6189442329306267 4.298950757840628 3.704745874223986 0.8968010115700938 +1.1451074860583041 4.987231565817417 1.9023515496668821 4.236023260846574 4.495324359801544 +4.826216034333069 2.712230825088153 3.672832956185206 3.4842018098091003 2.122384313523222 +1.5295724637679595 2.5387388645056728 4.99366444223503 2.545883420076276 2.6476496665568248 +3.5274342649134054 1.0837462141590986 1.1741000369285977 3.7389580996935576 3.5426131840111768 +4.795802481627286 2.165021980680052 3.8632558611479646 1.684649754211128 3.415747445779131 +4.735793223155912 3.2603774218662456 2.901683444355633 1.4939223086511286 2.0392751658114365 +1.4541633596792019 3.152038159025358 3.6899177072513543 2.6957011956025148 1.9675480442138984 +4.7910199916004 2.350855385721174 4.078395484792912 2.915708601448418 2.7030064913882565 +2.9383189577076165 4.655742339776527 2.687867093617032 2.1089085161279795 1.8123840949768792 +4.9422978063160325 2.435759368662807 4.237923555171077 2.5487270562726683 3.022601487348889 +4.6884857355640435 1.4937844203370387 2.868501517944181 1.8898806272749207 3.3412296151518004 +1.34939708180391 3.2371969455622875 2.4881943978066023 1.9725787022300252 1.9569486122867574 +1.326745609940113 2.3107899725172736 1.2013676026646074 4.399907421064732 3.34649074067313 +4.471369019379187 3.9499337542083466 1.8232654070255818 4.856121568986688 3.0773545838770735 +1.7274692861499044 4.5699945108960485 2.945280337513945 3.058481109854566 2.844778386478748 +3.4278177612910943 2.5754257781474745 3.4641513111675835 2.897784525299859 1.0233979817557048 +4.668980693131151 1.000092611954471 3.9235811288926197 4.629128300278804 3.7361124933881937 +3.5362823187735426 4.333929306912707 4.392488938286052 1.4869502992446817 3.0130375869958637 +3.592782051934044 4.4326160386789475 2.8135148325545583 2.5281826915537104 0.8869811474771979 +2.495225879007672 2.5588028897114796 2.6443785816614684 2.134919222274744 0.5134110197071775 +2.602413678159942 3.7836514597310464 3.001689258402047 3.7129424959086887 1.3788414936005893 +2.716153764492106 4.788379435478855 4.528848024871165 3.780154919549066 2.2033294346178307 +2.8772959476102535 4.5907790318779025 2.766121780228555 4.203946355026451 2.236820016890971 +2.219385666654159 3.1919179513903626 3.40239950759428 4.741397133665902 1.6549119878349003 +1.287162999735398 1.4949488809049103 1.8610169598586168 3.253441868428093 1.4078430659764976 +1.8404393316976986 1.1626161442280014 3.5875113597435297 3.1221026672356453 0.8222223084625464 +4.002843652610428 2.8681858664550766 4.066422046832893 1.8779452101218448 2.465132685374919 +1.2381700398127573 1.0640194395627889 1.3041597692253162 4.500289622021397 3.2008708920388713 +2.7366233499591774 4.7562153478387454 2.59164084993188 3.2842089984267173 2.1350415635787403 +4.856170780015464 2.7244007507680257 3.7900856304507347 1.731838123717842 2.9632458987687462 +1.0234869397139161 4.228089638062006 4.510560770229075 4.785767470680554 3.216398169106749 +1.5908801071390566 2.892269162955218 1.6567982024412307 3.7104849655701675 2.431304751702075 +3.459559908207636 3.515205066890053 2.2711926975412764 3.431872587486809 1.162012990722894 +4.031534919973981 3.068160703815876 1.2294024000917307 4.830269171744289 3.7275100787992193 +4.035554225353083 4.740377746024381 1.6377964310749178 2.3451174103452987 0.9985385135323992 +4.592860513887409 3.896785955174607 2.2722526616527863 1.1080638575915391 1.356412681593909 +1.353717402644047 1.2867386190715298 4.241931411946778 1.834690154411287 2.4081728819646453 +3.037730542218736 4.1197565799871745 3.125999909888716 4.817566931075129 2.0080287183141436 +2.1430385842493824 1.99669553350197 3.0400516983955415 1.534326311108825 1.5128202901937136 +4.246286070659101 1.0574995738223416 2.2781338390418893 4.8913927683110225 4.122800207845793 +1.4780372446860284 2.683684727260978 1.9850610875168706 4.359765885847446 2.6632327595337166 +2.060598367678864 4.749941058980231 4.199813382001437 2.098569746057259 3.4128857186920265 +4.754302376932918 4.893107784924812 4.776142758875246 4.5678325645234725 0.2503199519788024 +1.5051226045085482 2.468726677678797 1.1123771272204244 4.5157248174910665 3.5371327810390167 +4.763162138579153 2.5032067181802544 2.372629436951241 2.3765262894593975 2.2599587800775995 +2.06999870913449 2.804854763576412 1.63987493290715 1.5382501272681326 0.7418497299798102 +2.9605075190763346 3.4368171154901694 2.122983250699856 4.00627112650159 1.942586949090752 +1.2763386541735273 4.394347864566953 3.5439352395865993 4.147454066767212 3.1758804150754316 +4.023299007473984 1.019756724045974 2.873628389817992 4.655923745521191 3.4925410496229157 +2.224243959843994 3.2595823905251287 4.586954998584127 3.546446209237621 1.4678501990164412 +4.034856511165658 3.275314933393802 3.637893182792391 4.127256449540136 0.9035373900432591 +2.542510016219278 2.0266067741696188 4.9720514105567695 3.019569935983865 2.0194900504106807 +2.7425733961645684 2.261015930225679 4.572304417564501 1.9780107785696859 2.63860892864601 +3.3918543931148797 3.122147236680708 3.7843966047690922 1.1555673129996498 2.6426285012269197 +4.939204265882923 2.09386888821405 2.263221293116839 3.7346712774207456 3.2032949392339813 +3.8679157220391187 1.8332465952408707 3.425029240543295 1.923576221130082 2.528683377778048 +3.4881820695554784 2.3939022472312907 1.7698798323653278 4.529971282423796 2.9690997191458077 +1.2169197853488116 2.415239971015785 4.527498104595081 2.323027115120974 2.5091161015006613 +1.3709798000990299 4.133307865235761 2.414342039526104 1.7725792236668725 2.835897715232622 +3.733084938589855 1.3580857133426023 1.0091832319525467 3.5230819078090407 3.4583678046729043 +2.3655482482855237 3.093167512861756 1.8911347145724462 4.845103820642716 3.0422628541597203 +2.544135821572808 2.4323034413811486 1.4623401805478236 1.2825575599261656 0.21172688052517752 +3.30017807857835 4.5236183554862155 3.259979783356242 3.7705113265114756 1.325687960161387 +1.6184893313491289 3.7653411971869435 4.77603422516305 2.632841515841351 3.033520714144044 +2.7071515421004713 1.8304563482503107 4.705624331918477 4.744563610204651 0.8775595309227852 +3.1493465999867967 4.3095432022732485 2.2037702397594288 2.176613211738568 1.1605143946233296 +3.6211606746805884 4.779116465270198 1.5035048541301697 3.891995670768477 2.654383166410896 +2.9876726789848855 2.1646608627117008 3.087056508369758 3.738717117591014 1.0497666404186718 +1.9389480140938278 4.8038548726755055 2.27757303660747 4.497826866881533 3.624530090811081 +4.75228871629867 4.443604613370159 1.8451670447615256 1.8720816092635633 0.3098552390764342 +3.708509127767083 3.9946403421356016 1.2756056667246645 1.6696721476082725 0.4869902085175781 +3.4423741959103813 2.208887878002914 2.6052221544965977 3.0072374868039597 1.297345298629135 +3.1293115300821635 2.980538225972952 4.369912736189362 4.75350491104662 0.411432196877314 +1.8843800893069642 3.6780719355536537 2.3692845481029896 3.4307379848592388 2.0842297948387336 +3.592873387348425 3.29155171396701 1.6556115185585702 1.4649218306450216 0.35659123366390066 +4.964162638895659 4.4126275892925015 2.096671227811945 3.7677856122257674 1.7597767462765115 +2.653143374190846 3.3721142627757135 4.531338346584128 3.758629670474972 1.0554609593759872 +1.363193205638424 1.8356046709069078 1.027471026228326 1.5269274331037832 0.6874803960012665 +2.927190124898528 3.370656998695192 4.75603222218481 3.6989333610939195 1.1463511112545952 +4.579828475244418 2.643333745751024 2.7381231629126046 1.8347766734300937 2.1368309987961305 +2.7484203820137165 3.32385618838002 1.2251540381099968 2.5199374864849062 1.4168946839599827 +4.312075697159238 4.027671280360968 3.241236312602633 2.764670635255945 0.5549781230997052 +3.8052152087240185 4.884196813911128 4.329845366322309 2.2336644863402535 2.3575783308162843 +3.4041747937753315 2.8288960698968952 1.6754053357409426 2.145200507319049 0.7427335413089303 +1.7932105819857695 3.782285124508709 1.143948796643389 4.711626304141539 4.0846958678977625 +3.9742554357029376 3.16828507710106 4.439132340748712 4.986922055738786 0.9745059213743883 +1.7871535208021911 2.9901935756258546 1.5750588380424047 4.511720966319469 3.1735295538511847 +3.1524687761058963 2.673462523191266 2.1047532114751553 2.7403374340487603 0.7958732903646212 +3.541813574349716 4.629922410462365 4.909455855099633 2.1644754080530526 2.95277809763864 +3.617550577334179 2.1222155567494663 1.8350949820104883 4.263854268956237 2.85217434560237 +3.3131352345967553 4.6638960245963705 3.553544271321906 1.7825552202975699 2.2273205720435625 +1.041167972994443 3.682105423379656 4.311038022615064 2.8015137408391872 3.0419096262246397 +1.3072831335860022 4.276339657281804 2.109522417955415 3.17035095173823 3.152880241777096 +2.31320648483676 1.579615856886401 4.736301885225504 1.0836895026784656 3.7255512916282005 +1.293118635666548 2.0935885468343187 3.887220723563246 3.8943924890788875 0.8005020380395981 +3.251239337578194 1.09629836701613 3.5303954313189445 4.370136450477878 2.312776592294434 +4.687117394297042 4.0412068599993844 2.3735808448883495 3.193195132600586 1.043536294979107 +4.540394498828647 1.6090446872652633 1.1485129999366093 3.4210076739547106 3.709048902507666 +2.703485432605733 3.957119635001914 4.3242837886623855 4.308388333045021 1.2537349715656785 +2.055223423698036 2.5599297543710096 2.1358717477893965 4.368408134011668 2.288874657124714 +2.2490848011382476 2.245432818409411 1.6987478646043868 3.5312436692649394 1.8324994436769628 +2.2460511550218074 3.0244444203076415 2.4665811383609935 1.1877166417546738 1.497127408112776 +2.5660263064651843 2.65205095209549 1.16010517064186 4.436974272178806 3.277998070204339 +2.163802608516747 3.8898823649597603 1.7162522207188968 2.8130360818792446 2.0450638532095207 +1.6132210709064543 3.99578017411512 3.7770188292224574 4.484322953972995 2.4853303613748428 +3.899394947752173 3.7095710793734353 1.2493363982662005 4.177573764098517 2.934383610174861 +3.976502496699221 3.9206222581542614 2.315807087282002 2.865851670505193 0.5528757949060669 +1.9384600631344635 3.950158970052692 4.043961803708637 2.049675729450329 2.832685905298469 +3.802869968850539 4.95928316222719 2.5912513136950133 1.8127120304489668 1.3940641625738937 +1.9356540042078265 4.399477555212211 1.4192668655173377 2.6438488297791247 2.7513682919011613 +2.3544714231453967 1.1930827912295956 1.8781701400980517 2.4929317636022317 1.3140606561634631 +3.8574694455845644 2.6160118785057875 1.6325866663982724 3.369058599528181 2.1346080823900855 +3.009864067286259 3.248416392397333 1.3836666752112103 3.83619544046862 2.4641031951261567 +2.35210891164801 2.4591260493234732 3.1464557712468593 2.2890749322298842 0.8640338945143883 +4.493688190599503 1.7962520127611326 2.0395576436015603 2.252584567458609 2.7058348811040323 +3.1389130670528718 2.772763273055429 1.178613676081493 2.472182715885437 1.3443907662520103 +3.774852486135196 2.271765180396506 4.095175131109951 1.9602581379723931 2.610965724834454 +1.7345855090064584 3.114273203018246 1.8550913635779631 4.678838482844701 3.1427831497853562 +2.605675624167435 1.4646437811603081 1.9019240828278994 3.043113160568925 1.6137738930567853 +3.9784457201992316 4.925899845726897 2.7744793191371344 1.3104846716861291 1.7438318863194886 +1.9099021812267751 3.327308838064162 1.1986618881273747 3.5297325120476857 2.728173726973993 +1.5949300945733142 2.5307339173265957 3.559521344359716 2.2550147723857004 1.6054489063819666 +1.9506291927791972 3.9852461061097766 4.841875680927215 2.9756224485254914 2.7608996923939007 +2.9279811862538025 3.8043284199393628 2.864466602399192 1.0467368745421046 2.017950900672198 +1.6528076321032796 4.821416618711051 3.000422213648123 3.877877244825769 3.287858002066162 +3.2515326568555962 1.216131057671562 3.482246140917428 2.314503780270564 2.3465894167514767 +1.4195624730255432 4.5871560281006865 3.671520708439971 2.880438840704209 3.264882762307689 +3.6989994908595563 2.903460223913869 3.614358131097351 3.6623001710801026 0.7969825371049162 +2.4225576792023795 2.765996384692128 2.666535046799363 2.8424184090082987 0.3858563223926669 +4.923795160047582 4.68396129965069 1.3335407310232736 1.5535882867881363 0.32548610936715316 +3.2162488380829024 4.915297371738504 2.8233635190978728 4.931841433659735 2.7078487837972767 +2.7915042460000774 3.0754995867554227 2.3680733743381657 4.08487560733489 1.7401331158257072 +4.9266047364004315 3.465263231422749 3.1667551159167955 2.622509158905144 1.5593981710563745 +1.157504465265366 4.439028667776821 3.2056696746265723 4.769786400530433 3.6352251957644457 +3.741607275932275 3.817148987407844 1.3553095952645946 3.9627806790944367 2.6085651234311613 +1.7297092992931336 2.9665175199715685 2.3163841366765543 2.7804957445616427 1.3210201207065086 +4.599542063880179 3.568408944069724 3.6323365245289088 1.3116946164752257 2.539412210765531 +4.643942686576697 4.620644512457435 3.1861515680785026 1.734424668167057 1.4519138393319997 +2.510931371467885 2.719548319021242 3.4240520774332905 4.073948345014097 0.6825585611666908 +3.3751613013241375 4.788589316046329 4.012397969967395 3.067571844799266 1.7001397470801438 +2.928406225129611 2.846729052720535 4.964088097348172 3.712643177311738 1.2541074708244655 +4.232851087198787 2.3704376788558674 4.480267933993023 4.469593301234704 1.8624439995232114 +4.120456998035437 4.3383411355100225 4.5188916466764155 4.246664244079781 0.3486850385197993 +3.2385809877062712 4.501452219915031 3.438647334744142 3.3351230466968533 1.2671073464218288 +3.147854133853523 1.3839787278578535 1.598841729351868 1.547119214733038 1.7646335785071312 +3.0987282659749176 1.8195062418894414 1.8543646611952864 1.7185080441252816 1.2864159542337184 +2.865453394739709 2.5049391236344505 4.084846645214228 1.8430653873687044 2.2705844506862127 +1.8892156526018118 2.2694838159109136 3.197103241664908 4.386826256427738 1.249017505034591 +3.6336865025110723 4.175813042263241 3.3916865673160124 2.8050920527687513 0.7987454598309754 +1.4738297665151934 2.674209875849035 1.628376585162235 2.8338432296216323 1.701194356265187 +3.327017514388051 1.1582315063745177 3.7236748291943003 3.617490831499891 2.1713838421434484 +2.809747793085508 4.134299832438513 3.358164974188407 3.3022304529460413 1.3257325430194498 +1.3863472862772062 1.5698970795256835 2.969109410721043 1.7983193283836085 1.1850906899901186 +4.41241635407229 1.4933641922945444 2.912388702250346 3.7613987561122113 3.0400137491034243 +2.447195598377541 4.423029024615439 4.106466180302387 1.1761063371280782 3.5342504917913717 +4.9551108757900515 4.903521885070749 2.0397449577671978 3.2559817146566625 1.2173303876813555 +4.079092507444099 2.725041687841894 2.3652561865018034 3.77642922556327 1.9557256883927714 +2.675648657707982 3.658996367004518 1.6555163383242695 2.9893784783648845 1.6571544665517677 +3.1760639350122633 1.077880029246618 3.702736449525493 3.351566592245072 2.127368320502195 +1.7555509854637066 4.022004619515037 4.936134804471672 2.199451114167202 3.553343453155489 +1.1239471983782954 1.6641945759450434 1.0343989861981777 3.7927012801872406 2.8107114355609464 +2.914361231072084 2.5021331865899343 2.7433940457987305 1.0988608798987114 1.6954118362223134 +2.1462168598088813 3.0617432626872803 4.753143771764566 3.890910338221813 1.2576307440128778 +3.859421063978933 3.308904981346483 4.571654767524545 4.97175497830356 0.6805498776007464 +2.303195274184495 3.2361210591593212 3.8593675111047805 3.881043708699176 0.9331775703546707 +2.7420921947198504 4.463156210044148 4.175544048178907 3.7162813837070043 1.7812870458805972 +1.12975381927853 2.298771496522592 2.1852619662915296 2.359161544919186 1.181881294020672 +1.1871742396639 2.3012031993551054 3.7819603102015114 2.8618987095847648 1.4448438918997855 +1.488636708846407 3.5027993552679395 2.6540794525008473 3.92806543003168 2.3832522814811243 +3.2464577939053325 3.3594788392756274 4.477957967224004 1.7656452908813596 2.7146664271960916 +2.615263627613235 2.4534421738724626 4.660234043375066 2.2866315955489336 2.3791121796201593 +2.2482047923276918 3.6676462805720247 3.452165390512432 1.1666055529832993 2.690464255379633 +3.6442036561924964 2.7795966257676414 1.4255801899706402 2.316170373314463 1.2412478365453332 +1.7631044559656663 2.3714108739146975 4.410940100085306 3.6485178234360625 0.9753586140743299 +2.132023728503123 2.089022331427141 1.510114502409663 3.2969181574709077 1.7873210181415957 +2.7776514796644283 2.437277162784558 3.6126103523551647 2.5072261043734314 1.156602356593475 +2.2582316701943355 1.5813923895615911 3.6998558930083947 4.33597963696681 0.9288513494823176 +4.247146007814944 1.9199682175685542 4.948527524418957 1.4876778317264887 4.170519999091914 +3.4455279175822358 2.1188840126778308 4.08556822288938 4.912779585586223 1.5634137932725216 +1.0438656895907963 1.2530857100914599 1.585714134121329 1.6112580161667371 0.21077359153425226 +4.2316258632603 1.7339615243059856 1.490750925304995 4.0331995375621315 3.5640387338035944 +1.1605913663760328 4.875658854959845 4.280604097257002 4.784326701136312 3.749061603440438 +4.272453342553746 2.056773297558871 3.615505259244625 2.563366095341593 2.4528014355033023 +3.6536823687437248 3.0362882723992644 4.595530051003511 4.593336668033974 0.6173979924893213 +4.731833424821218 4.482168164306854 2.9546502366055782 3.315788743819236 0.439037314701398 +3.166969823202542 1.4672904591358336 3.1116524069142266 1.8913085828145824 2.092402683436521 +4.205913362896714 3.1172599950396696 4.642199495327382 1.0566727552719617 3.747154675083341 +2.620644190234588 2.8749052509783692 3.1234761263459667 4.5350353653092625 1.4342761840430844 +1.4424393644513964 1.428378696857683 1.262661567743876 2.576376360911143 1.313790036558238 +2.0263814388562116 2.0584984362208103 3.9925267187046565 3.9401707937050925 0.06142185606343731 +1.659830496109561 4.183387442753858 4.158570390683357 2.5595438751203163 2.9875115833131707 +3.087924806351308 3.870756041218168 3.378672098194495 2.9753543552759907 0.8806190686307274 +1.014894493977971 4.524965877358074 2.154226906275524 4.851318394917497 4.426613108746786 +3.4339186891731908 2.9445213610857595 1.7746166530033682 3.165711459034468 1.4746709816449974 +1.9041713263564422 3.124626804479718 1.0360345389375327 4.961950693126556 4.111244242781429 +3.0625898270266294 3.012987898218089 4.55536816675777 1.6985991156672657 2.8571996364640095 +3.835057646193104 1.829375426993081 2.347821021266952 4.273897705147832 2.78074316624256 +3.8196691121346564 1.400324293426145 2.5319536592655965 1.2828041023184693 2.722793412551331 +1.8894566506486328 4.48502723314844 4.303760157878919 4.245269810591181 2.5962295294261306 +1.3335477977012462 3.4376888975582562 2.4091730854272635 1.153301060744206 2.450433494402366 +3.6340947691179912 3.3173168435566764 4.376813145826516 4.899972209652923 0.6115910890347017 +3.776413520841947 1.4253043489582091 2.793466190285303 2.0052123430737043 2.4797295146365705 +4.505761000657065 1.3837599586608804 2.48711584231563 4.012401462161426 3.4746779315979257 +1.0723388535152099 2.1445243268375696 1.180806446039247 4.162308470862737 3.168428003479022 +1.079854606470569 4.759914528881877 3.162700246128401 4.715593270992558 3.994285640663381 +3.6097128761751507 3.4302913356895677 1.419010832728179 4.324560390530902 2.9110840458560823 +1.12512984503809 1.2690535043326383 3.7902331452479983 2.247625195976417 1.5493073629401644 +4.426585861727991 1.156384540100229 4.778024197695743 4.94058978056365 3.274239492265211 +1.604506985986712 1.7006491844666276 3.30590634637883 4.831229998492642 1.5283506031098915 +4.228945790900715 3.2654822016606593 3.953165236693853 2.282133290300069 1.928888242916092 +1.8342536136864993 1.1914590282819644 4.228380977381367 3.2924441669459528 1.1354129610645658 +4.865496353869007 1.3328657958155303 1.636783198441683 1.4923599544338773 3.535581526864139 +3.3787871239967573 2.953949910332462 1.3641870753544678 4.806409414302474 3.4683398462184645 +3.8755036610517704 1.1089535898207497 4.8219556766773035 1.958125257473367 3.981874428781772 +3.810876308604233 1.0631785087803287 4.6399135849664 3.1602624691145618 3.1207708380781045 +3.264346860800891 4.040656796009009 3.464886138804191 1.936231421109036 1.7144802015288736 +1.2067679968382627 1.955552082283884 3.2739941558776815 2.247242884755294 1.2707854969931291 +1.9743597600950689 2.7418831062418136 1.667175252602525 2.3395230037961796 1.0203644375493788 +2.8807701120617963 4.681461757321992 1.2101828498338838 1.4812598540001445 1.8209813682456026 +1.410677314785676 3.860493025691647 3.545866715074127 3.049941167556289 2.499507784761351 +3.8026931247822975 2.7407270862141973 4.140463358904325 4.479440988988143 1.1147545473193934 +1.6157723181619925 1.1703770414823307 4.580939646833441 4.7135073208345615 0.46470543431147854 +3.4982154808850265 3.2662892465650355 3.984765615253379 2.4492334989697215 1.5529483759302556 +1.7726717206650942 1.9792182626121106 3.1149882221292993 4.990783926398723 1.8871330101892374 +4.431225418992014 4.712425268098929 2.8930839552856122 4.456329199681623 1.58833530756717 +2.4550251346485377 3.639924710352745 2.594658918899379 2.4852936503623244 1.1899360346111854 +2.3072624082401596 3.4318197562262744 4.328127394224417 4.944658873928411 1.2824742860484806 +2.0366229170681063 2.7992770943936356 2.6724430134241577 3.8268360289193972 1.3835695242438206 +1.852666495120646 2.5540734840890993 1.358470268526251 2.652293298180841 1.47171661546589 +4.722507155306579 3.6448383344787607 2.058371320992424 3.3286999705379485 1.6658646299266266 +4.153684431126569 4.756928907906352 4.453672280506411 2.7036515972606385 1.8510743611625424 +3.37545620377948 3.522777803096326 3.22644732603809 1.6982513907602619 1.535280583549779 +4.86433821104588 2.9007899441879594 3.0127932424555737 2.2834254846281334 2.0946357970871627 +4.524657971660412 2.4402848658123597 3.715635217161628 3.2767192292506735 2.1300841506444073 +4.501363071028386 1.4659980524184473 2.7126649578479225 3.944721674893259 3.2758822552432267 +1.9656197572728291 1.7834070082914937 3.4764445738094305 1.6262995203961093 1.8590960719019112 +1.1892486231468804 1.8027985722919602 2.1725545240034774 2.408352709264002 0.6573007867545015 +4.214019651417551 3.6492653408524705 1.7425597966998616 3.9601145086275658 2.2883392081801603 +4.5360746686033915 4.339581913082763 1.2120577288733738 2.9575682391912803 1.7565353240405863 +3.1991540292369445 2.3281505012373245 3.6585735157794064 1.6990040852397255 2.1444252141059605 +3.0187211160896976 1.9295245000707886 2.023616598058875 4.793515698973772 2.9763552035327034 +1.5418948162913733 1.3698705136738467 1.081484482387038 4.623581598762845 3.5462718934860105 +1.0824091552450583 2.404605525374184 4.525514136506015 2.0275373007846422 2.8263211977733875 +2.1184405219790023 3.9987249368002007 4.848751866947074 4.771247322995759 1.881881089482701 +4.503752027217738 1.0235643767773985 3.8199267123739484 2.7220672306989577 3.649246706346548 +4.1702784047774095 4.712815036646896 1.5440445143931742 4.418706497328262 2.925410657164662 +3.3492504092496174 2.512029226599181 3.7732186523211735 4.033762122423587 0.8768250729145484 +1.1185039453222685 4.639895969953887 4.141979523037553 2.3714388575134318 3.941448469714372 +2.806570024073274 4.751042697969831 4.061798465236377 2.3047176478555236 2.6207455004899267 +3.974256253943643 4.078735306176849 1.6299471368206824 1.2853853972897489 0.36005369697328743 +4.530925479369321 4.739320382479347 4.432439311495209 4.886577856146369 0.49967014457550984 +3.496507725036289 2.723888092955619 2.8529148656923824 2.6664414937092205 0.7948040100145701 +3.1182698220640486 4.71059579394219 2.7679448387948087 4.333261293242341 2.232872052599938 +4.748721554511523 4.727850986475138 4.801946422843191 1.5658532223194581 3.2361605002048486 +3.7596367280731187 1.7087410812894213 1.7851493929926185 2.2292474065420174 2.098427029857089 +1.4922790570172095 3.020729534777444 2.819456366755524 3.172065341845527 1.5685961724674427 +2.5542621283902234 2.3966443746751382 4.464151847671895 3.693793933722277 0.7863171573042238 +2.2904189031324322 2.713414855217366 3.272180144867869 3.066872446259492 0.47018807576129334 +2.2129991130057256 3.612075201162902 1.8100754147192846 2.749321473330106 1.685110399667971 +1.2895836056113161 3.257325582174434 3.1043558928787998 3.234967196449886 1.9720719558243973 +2.8256745217320423 3.7996737159693916 2.380964138377843 1.8855073479037578 1.0927725571233418 +3.2590757828997368 3.045972527520404 1.7481883878531863 1.0599146940253839 0.7205093164343099 +2.9541616319622785 1.347936906111776 2.5002281524431553 2.218314049546514 1.6307769410147852 +2.643553615649902 2.7379900906955266 2.898487252920482 1.4635767540209832 1.4380147383358253 +1.7103125879269068 3.5051697445261043 1.4269133456431033 3.086138144457654 2.4442870423901817 +4.900698819676305 3.587886250215053 4.381929154028956 3.551128838850301 1.553610635338342 +2.57834781837249 1.9350806791570299 3.1312662443600496 4.00513155351104 1.0850959362802897 +4.191657899428361 2.4325005142845626 1.0581232652556363 3.753452729599052 3.2186077156223516 +1.712661970746571 3.114672371663531 3.8051693260170145 3.8755881921466475 1.4037777534162303 +4.260438993497447 3.153664411693716 2.8263805142282643 1.1438908318286707 2.013882197723568 +2.01271733146183 3.6056173654713746 2.0702539655440897 4.1630853748866725 2.63007106867447 +4.824962768670491 2.0612495655820764 1.651771790553644 2.8613961229262777 3.016836371829464 +2.322591578578878 1.89485983299706 3.2636213668111997 3.200497614306508 0.4323644924236295 +2.529989418162737 3.543666504741636 2.0148261315903193 2.9366922670827535 1.3701745901974829 +3.754896185514128 3.000813836990148 4.708291438194824 2.6993323933594406 2.145823066373679 +1.639083084933354 2.472303848069468 3.9833824311379664 3.3520676879358464 1.0453779914966104 +1.3480001763059106 4.586688359230809 2.2809477678002645 3.532260487672553 3.472014497252505 +1.6777741577325096 1.6395336675949168 3.6234326828903387 2.5798644334694756 1.04426865618254 +4.474702424762349 2.7399761617095817 1.6353007203803904 4.275656004575863 3.1592326971123814 +1.037971908511008 2.7655748015752377 1.88406916443062 3.0356221153196294 2.0762191490363158 +1.5686381093951343 3.0434101475669895 4.165429142756119 2.2110612388892794 2.4483681235137893 +2.4548737694815155 1.4620447597639066 4.681494511290362 1.5851725903636207 3.251602509617114 +3.400855227525472 3.4349799867686728 4.967625624296616 3.3674681949075898 1.6005212582225528 +3.9103285273270187 3.4042699002069816 3.8133707210723093 1.9032401654079476 1.9760298767390285 +2.265157490851244 1.9767011929004723 3.400317910289281 1.301779776649568 2.1182703638033353 +3.309616684619081 3.81688665409602 4.447509702345386 2.3010669600724594 2.2055700550626938 +3.867439199656157 1.551160134957147 3.5014548306866797 3.4112786722720703 2.318033745463887 +4.090183482182556 3.535859395078167 2.843659887218325 4.117305063042213 1.3890454375014436 +1.8286597856232079 4.523022833515652 2.779562115537628 1.7588609797806942 2.8812190202037327 +1.8467067794734482 2.358705995667508 2.460275802720952 2.6356028877616624 0.5411864596718992 +3.4946060669745327 1.5486840094970353 4.788437287052102 1.0378934117414431 4.225303777766488 +2.3513956746702718 1.6540353121225237 3.581443913179219 2.4413467282183534 1.3364628937641392 +1.8610282187110547 4.933784130984533 4.730475286509446 3.0926065329799783 3.482017080687541 +1.5726873964041799 4.4867942090636745 2.429453281072274 1.7444061108219575 2.993544411071338 +3.4947993566000237 1.093402550959404 4.83370757535981 4.358705180913484 2.447924405056397 +4.726866871684207 4.391754846652442 2.5040302391743587 2.4300129477749834 0.34318891116554184 +3.868586652216348 4.208475612291101 3.9582315379476385 3.2838894584518346 0.7551567687304552 +3.4580151414943847 4.13697892968627 2.9854317724647315 4.724850610840122 1.8672358503871618 +2.301347852004034 1.0756422923469908 2.4343824879053555 4.055424520585349 2.0322724695988654 +1.7974243110439856 4.247995478899686 4.563254107764047 1.6668199883619907 3.7940255213640848 +2.8950863563581475 1.6457514592424705 4.4374092199116575 2.0828970856067017 2.6654390024422465 +4.334126700673279 4.979047766823562 2.59382404837607 3.418255227926403 1.0467138822902713 +4.721187271336259 3.8384088925556767 4.446206560751976 1.9374943595191598 2.6594989330054024 +1.5876020632583376 1.036053979645502 2.2563459414071443 4.2782095463203085 2.0957427622228466 +4.212724362368043 3.238052815542469 1.7536887445664595 3.7820119096889955 2.250350969596534 +2.5930508793796405 2.590066542496943 1.9063731995540105 1.003122541958755 0.9032555877008959 +1.392609633264016 3.1882943302106592 1.6384172869552183 2.1341441647239208 1.862854977766832 +4.522481229216794 3.3910676363956784 3.378733586604306 2.7650854966014333 1.2871133191699007 +3.6334119731022843 4.372478875845698 3.885584475390989 1.8156889700404135 2.1978824558654764 +2.6750129338793434 2.7493429994202643 4.840023244889272 2.2495006774923842 2.5915887271779603 +2.6078372030268975 1.2619362983141724 4.487710158047577 3.3241493682368572 1.7791354520922449 +3.512771408413134 1.4998221823811932 2.1861384047915937 3.4824625042205315 2.3942474302675643 +1.892739422167192 1.3735034054516033 3.001596929835001 4.441870379258955 1.5310106629838491 +1.855513763484284 3.230320669106996 4.4136839490389415 1.2334094793743229 3.464713513430579 +1.2072599941165456 2.188345864307334 4.5194371636240245 2.0406299131257306 2.665898510785984 +2.9606090413216735 4.353551839515782 2.02212424602668 3.4133016521840363 1.9686706719112625 +1.714204310934388 1.7960071203628436 4.942026340000238 4.554090636435362 0.3964666565182547 +4.80105590166248 1.0853300347315695 4.596167157897963 2.41941967258173 4.306372990465411 +3.6079173102509925 3.7785400362060533 1.2431543527430597 4.153369117247643 2.9152121861286195 +1.7002209750288562 4.363324547839545 4.177768287589931 4.2535716729263005 2.664182199615017 +3.0002275319540668 2.2080550829133205 1.081555922290518 4.878831178683214 3.879025207681877 +4.89713398441638 4.8579446128302886 4.055401556954595 2.669548223702545 1.3864073240325623 +1.0364833274785759 2.6090074083557955 2.8652277034694396 2.4368315594273184 1.6298328874976422 +3.166805136874941 4.093962252292137 2.029285785778564 4.445923981805132 2.5883895547547087 +2.7677567717453115 1.0754498288312053 2.7188615691644213 4.764389842706379 2.654823667759279 +4.613066806708362 3.687103239332229 2.3320863068735638 1.2462106914356808 1.4270719604527782 +1.1378493137164591 4.306348495799971 1.9566489637992688 1.6835897322376874 3.1802434514994102 +4.556144155451393 1.7879194973376098 4.579998650144432 1.580047621861432 4.082006115855952 +2.03820786444217 3.5570845748000997 2.0496356126212003 3.393499402906883 2.0280424916921063 +3.0886216498083967 3.0902603190035927 4.501973246818123 2.7645328505490907 1.7374411690253637 +2.447300016698935 4.6519817213962655 4.762624703038547 2.0569106029901585 3.4902020300016714 +3.9835362399581746 2.440227331446512 4.504907083175594 2.8293880912535907 2.277974161263201 +2.45430495241577 3.3036102188527705 3.607673603189397 3.5696588879162676 0.850155605859846 +2.0920558956868263 3.4369539063413743 4.843386159075719 1.1225818279137814 3.956404368850079 +3.1772078702668245 1.235072640650289 1.5728902029314287 1.6377294762411063 1.9432172759321074 +1.3371251795253527 3.9827504700705907 1.1976251190269376 3.557991646323536 3.5455131252266967 +3.4496608378434575 2.5318472205030997 3.4533363366418364 4.461009646440106 1.3630067261225056 +2.932337822441295 1.0866856304207824 2.993955024346625 3.952530191500891 2.0797351670332818 +4.151172648430933 1.8194572385866619 2.839598957091177 4.813921450175913 3.055298031159246 +4.852719179930267 4.111593766184151 3.845142936985943 4.620434662255914 1.0725409727243238 +1.3746846468255374 1.606342136064269 4.160999399701582 4.332299624834308 0.2881127547522244 +4.366194389610795 4.199766998599247 1.0228563932145258 1.9949630772863922 0.9862502125201851 +1.4542956946367824 4.122871868070771 1.1092794967032567 1.2917317389447733 2.6748060890686163 +1.6886261651667835 3.5824047502768837 2.2226387249882005 4.1436235152902805 2.697513650381317 +3.622994757238103 1.0716097501080828 1.095733059271656 2.998740042064444 3.1829233467311093 +1.2770738827974233 4.968595904558894 1.8195080291837553 2.510837979365794 3.7556985950910113 +2.3879360659244844 3.4287472243367847 1.112022595719547 1.1710925285820308 1.0424860308147696 +3.1127329688967773 1.1703640198151324 1.8941660445495896 1.9247574386398965 1.9426098341532512 +2.9382182340564857 2.9268492779753235 2.716059045111531 2.5814320316059214 0.13510620240320198 +1.7221875768972295 4.380373773170216 1.0407597349558761 4.621444936836884 4.45951346774801 +4.8176800929394235 3.1390733086275797 1.176401801483701 2.9947842075270574 2.474719238811905 +2.190932798735895 1.9243588820528967 1.5861208981181907 4.090442696615303 2.518469639182399 +2.7720684101368978 4.468158561433782 4.324176423446012 3.538040373776657 1.8694201480448494 +2.621912313290149 1.985278569876078 2.5942162801166977 1.9975267769087166 0.8725485009396328 +1.782727762769821 2.2669098523263327 4.905130968864169 2.4413809617953506 2.5108756228015188 +4.358420653124503 1.5505699460583124 2.528755529508701 1.3906281111303898 3.0297458001681568 +4.472452692889943 1.198436316776688 2.8422397447455903 4.638580859522565 3.734437659366663 +1.7836297848627964 1.351370495192528 3.059809789010688 3.9008174542276306 0.9455908134388247 +4.900205872754136 2.6478176571011365 1.5767405528526202 3.1734545775536875 2.7609325146931036 +4.743172967518428 3.673756815575756 1.363359548474604 2.874607224696248 1.8513563797716508 +3.0162266071181363 1.2107000831529402 1.006428922652327 1.264444250511306 1.8238689476363208 +4.985482598190851 2.474782526059466 2.67363864851553 1.0990711265113755 2.9635920322390605 +2.74753145170353 2.3160807961343175 4.927036033328961 4.399465068835211 0.6815282758389188 +4.0878669823250195 3.0587304192909426 3.6250146971346844 2.025473704773398 1.90201299985508 +4.563245823231337 2.6055491062224445 2.257601649871375 3.1850384307729938 2.1662676238998153 +2.1135635685806045 2.199657613033718 4.808193595632618 4.833010866063964 0.08959956139377749 +4.2115594195463055 4.080503415548257 2.28016231528527 4.150940488457904 1.8753630713552703 +3.2724968693771186 4.418280660818092 4.296083837159176 2.435799382153809 2.1848292267963343 +3.89206929024734 2.197023845605148 3.0740101048359247 4.565285715824659 2.2576718112542555 +4.7262072890331766 2.713216476648446 4.204415509852055 4.4358824556301695 2.0262549093668314 +4.915405180204874 1.2051268863262847 1.3425869830753223 3.0306929682900368 4.07625647320484 +2.5214780852993086 1.9816181116860543 1.6204932646802193 1.4878938220923956 0.5559059302474703 +2.2173726044513598 3.1281745151993867 3.09073172015526 4.528830581015484 1.7022598080873936 +1.1606699357466574 4.769122571962581 1.7743904038045661 2.8194232180818095 3.7567304948225737 +4.209726688246706 1.5691572611258944 2.8076048274895773 4.334844905757995 3.050421144057727 +3.894571155594614 2.3445628770044817 4.933092729808093 2.386467543569425 2.981245629411149 +1.8854558862643849 4.071320922970223 2.858870088924031 4.879265045833758 2.9765755056103105 +3.1413367402001926 3.82605924016468 1.8908509640437563 2.03084358244589 0.6988868543367395 +3.9327621038247416 4.4541641337817115 3.1829952154242527 2.327467601313553 1.0018919978466716 +2.9322646863777453 3.7145102587406407 2.050317992195146 4.52264863157826 2.593130719017819 +1.447683314230681 4.555327076715741 4.450605521606986 4.40940319317604 3.107916888589596 +1.6091654994902624 4.307803359610778 4.548986276887073 4.295736099943763 2.7104947799613366 +2.555182448191792 3.7142133683235077 4.231773991437189 4.244593883511593 1.1591018175527856 +3.839027283527349 3.852416652318842 4.5995614263083935 1.3523074106236055 3.2472816196901704 +4.406863420681907 3.5236231186071927 3.5884910111679447 3.099449921807591 1.0095913125080829 +1.8034125163323078 2.9332981358388506 1.5298314806851057 1.9879717151336789 1.2192350009691642 +1.0018979177248801 4.837414989877187 1.42964267245193 3.2360503657134383 4.2396108270743635 +4.377921427605649 1.93590846918802 3.2208331730897832 1.9401130693459305 2.7574755254060346 +3.7308039829143476 3.050786621805885 4.291895140717387 4.302119598694577 0.6800942221117927 +3.3133953139501022 3.1187930047009575 1.169958561756859 2.5897495277956772 1.4330654018608293 +3.284587175002793 3.3073773864569485 3.031174624762256 1.342884816379304 1.6884436238228004 +4.120482834179162 1.1229548707297932 4.93817895302216 4.520598420471474 3.0264744163508532 +2.2687863601570877 4.921340984340901 1.2324952398886024 3.041427631248135 3.2106514028758477 +1.0624068514668337 1.6337094078973506 2.6791676726640956 4.720095057698039 2.119379909776804 +2.0933428293973564 3.1897137546252963 4.599346008827473 1.9776479861164837 2.8417124639857354 +3.5316857274558484 4.507536218674096 2.5085327190676643 1.0559390319781516 1.7499464566046583 +2.170752530429071 3.764165676719493 1.234790054450262 4.425946701094001 3.5668538234962277 +1.8199883142481088 3.5838093651684897 1.6552563504523574 4.510887550676259 3.3564407117305195 +3.845350811024629 1.1512847185736006 3.3252438824198975 1.3263577280148744 3.3546293340347537 +3.494945626039434 4.907164104285304 3.3851421711872858 1.2183208168591766 2.586402097870975 +4.3145706163412605 4.7240407142982885 2.8559084488992705 3.908430131042662 1.1293660400874876 +3.987525924837178 4.9957247210354545 2.5704476510026195 1.1454155174412142 1.7456177686819714 +3.305139180492594 1.0399657144773133 3.201562770804621 3.0047219496217155 2.27370999470549 +4.840175790521769 4.356540020856533 2.468181558752463 1.7635365647452121 0.8546508791776697 +1.3501336648862736 1.0955201137469817 4.329730223749099 1.0829352949341478 3.256763020270625 +1.2635618064028615 4.347158533784215 4.396046219771774 4.501361663102275 3.08539464570108 +4.909367410920709 3.5509666777552535 1.9531156781075238 1.0797730905674263 1.6149240932860216 +3.462787292378164 4.462154173350452 3.780467749666538 2.0635205398186196 1.986615686082447 +2.049280909959534 3.9812522905755676 1.3210649281060562 1.5242152530589514 1.9426228326795427 +1.7062387030288022 3.794968018573647 4.0464742245400815 4.654929211127406 2.175547660778641 +1.2110566554383189 3.049773093880099 3.9796106727549474 3.1020650225728623 2.037391594453438 +2.73682564625143 1.9279431347755018 3.781259495349946 1.519863525057374 2.4017082778362338 +1.0979261975406853 1.541554398291428 4.102365998800756 2.2134453997698276 1.940316213905533 +2.4199172016517925 1.1588206110978359 1.9772956153250059 2.30953988226136 1.3041283923060984 +4.802073978002623 2.8574742388951564 2.400649807532584 3.6270138359034876 2.299007802383223 +1.7454369605569138 3.858581783426595 4.242876778266419 4.382303803998875 2.1177395821784923 +2.9186514856523673 1.2870629882858675 2.5568140334580005 1.947531116465922 1.7416390836442115 +3.9728886722034362 1.4382679106231104 2.492167042815628 2.119627654787299 2.5618524548979305 +3.1004163488352074 1.4868026870946056 1.4072217156357132 3.5953675202578363 2.7187738250250444 +2.2906471369831642 2.92820984867847 4.492146547016684 3.400984785581255 1.2637722108683749 +1.7005527927047996 1.763372032970862 3.5637144764330206 1.9163377231020196 1.648574057894578 +3.8826052133970355 1.3886758767849128 2.5365875688973727 3.6980941548222406 2.751141778455161 +4.012516365351928 1.5824266931860853 1.5182115214512328 3.842154427474458 3.3624464970052337 +1.9509669753806884 3.788153527677543 2.149094249150262 2.0000470175687814 1.843222586987938 +4.4227381609295175 1.4651839397617965 2.311961193266483 3.078040597559102 3.055160327188794 +4.087539283170624 4.48457991257458 4.4275043180454645 4.600186975714349 0.432967160021495 +2.123009144794174 2.77117626540304 2.24789562920244 1.289412152923917 1.1570700888612366 +4.419836975272012 3.4136308217097637 2.587228001078424 1.319304961848749 1.618666011527996 +4.34218440477764 1.6397189039293973 2.4976442350250516 1.9649512260813604 2.754465760370317 +4.918788680925969 4.944997234628605 2.504222619197639 1.7230740996668068 0.7815880614827703 +1.646242674844261 2.66083391182724 4.727742839382023 2.1931383275563334 2.730131024242205 +2.6163298173595844 2.745934109028722 2.2927568251201422 2.682544055678522 0.41076922660470844 +3.2428480358939145 4.742563071345636 4.674139425540967 4.897619151811228 1.5162745053629927 +2.900285718741946 3.794724664955551 4.000439098242246 2.964350373380321 1.3687588809902622 +4.922320367900792 1.0180060589649886 2.007243573800652 3.7889288753848467 4.291628215123255 +2.2384196220819996 1.160422151399482 3.84378694071731 1.8166316820712711 2.295961016536255 +1.674661025078208 3.4602139915777683 3.1600023813593863 4.11540154954395 2.0250893725322685 +3.157213648028509 2.1932875012079154 4.924687280487205 2.8205935464440106 2.314382003508545 +4.566925330783222 1.7423633183606122 3.279735623220077 1.5213802065489515 3.327155591997096 +2.866508942610185 1.9801845451791587 4.62336474032413 2.860763401426731 1.972900001866383 +2.7530031695014645 3.9084514842556235 1.8312559942268773 4.066301921936013 2.5160467219504126 +3.2387979731730683 2.6388820066695153 3.6609645747404382 2.70768803896977 1.1263371256053036 +2.916934706068046 2.181509691534784 1.969290770329188 3.634271617799529 1.8201678973227453 +3.3089817689390166 4.042565243919176 1.7861285685552035 4.637488037877904 2.9442139083395755 +4.309855167641988 4.841485513066383 1.6761476046423458 1.7984440867620193 0.545515585217241 +3.2212149724959014 1.6787423392031915 4.701532586277715 2.2446777386667858 2.9009235713279775 +2.355373213052331 2.9834595935658275 3.4392627003571983 4.525284472532935 1.2545659771515691 +4.787318147463367 4.6680569511895635 2.7635599923929965 2.1802465020866384 0.5953804337648697 +1.8301592870689571 1.4753234146072893 3.35075004716745 1.5588696872545365 1.8266755926073095 +4.985243581362725 1.1960512074274803 2.0867227061285085 2.3291094478440857 3.796936946967714 +4.752901862831019 1.3861320040638039 3.019831890508347 4.2002161323891976 3.5676948076291564 +2.2236435865734197 4.9473505856575155 2.9989757683267557 4.07843888879369 2.929815769857877 +2.8710909854008144 3.546628795740001 3.2375078246306113 1.1604602493625165 2.1841423861838622 +2.4878933327473307 4.0622456008426315 3.9602323519537315 2.2936465479998875 2.292617130267786 +2.0214809533613516 4.445235580931438 2.2320955178413926 3.2918894082558716 2.6453259883854137 +2.7398754342449374 2.370306455492125 1.903976280296554 3.7786214299684087 1.9107264763028242 +4.169461837960643 1.007825518328474 1.0698754824103887 1.6447158089863803 3.2134694052807227 +3.4978157697194323 1.9853948571059101 3.2345167832595085 1.575550128338143 2.2449025321941494 +1.522718440892366 3.0571545672407066 2.8337427479332895 1.1353933997887102 2.2888610124221214 +4.592681472678883 4.519164042751358 4.623053022174531 1.3791768999128893 3.2447090946774217 +3.180595223674093 3.519561702921851 1.0085970519151375 4.717660704111872 3.7245202979847756 +3.178544335345251 2.8048675411500312 2.211686846245015 4.668620986216405 2.4851880642472457 +2.605515667743052 3.160878939214925 3.486763508426701 2.181517345818589 1.4184836651520325 +2.010201621894214 1.5929203877440665 2.346004666382266 4.727492848267545 2.4177695483302624 +1.193357040123395 2.6817890093735177 1.6351442286180782 3.339100777562105 2.2624980989550103 +2.018474783284235 4.307206773367824 2.417904413608275 3.676470710231726 2.6119500847888446 +4.994661542175968 4.842295100379127 2.2040230803760057 2.919415407871946 0.731438114146295 +4.883180464732273 1.1931706611368589 2.5042530972435455 2.6849764884341987 3.6944327432981807 +3.6622079332650666 4.059737002122496 1.0396799646472394 1.7308052953893265 0.7972976755139916 +1.8565138985160337 1.1575289234275647 4.822422850057087 1.385996243999465 3.5067945212430307 +2.533111246195172 3.703035053760937 1.7713092404640842 2.8224183149106503 1.5727530009168933 +4.219442382995094 4.433344665094646 1.8405010867067522 1.043047049723576 0.8256434626327281 +3.280813627174841 4.793402951142981 1.3611724343991618 3.1846911442398675 2.369208084597363 +2.312967896418171 4.090036748853923 1.4060564994779452 4.696538936278985 3.7396855981744554 +2.1732218666109997 4.245571017862371 3.692885468045965 1.6305516372109694 2.9236709518170523 +3.0464268225346953 2.455652398203363 2.181426853271252 1.1569456526973183 1.182614117442129 +2.5864141866423167 2.311840097620427 4.803787424306128 4.126050796371372 0.7312440544760516 +2.0464691088891884 2.692840490333661 1.775789426110979 3.173042724358627 1.5395170483675609 +2.3748721837872546 4.129589280821506 4.899490592614343 1.2266181557458355 4.070506605833323 +3.065971422334014 1.2409730820551572 2.4455966697233182 1.4860077917789112 2.0618995505831967 +4.075337259563639 3.5539479151662627 2.8828104529463907 2.3528400804418474 0.7434483466816847 +2.7834051528402393 1.5050980830655463 3.939170648072019 1.3116856655876443 2.9219422132918504 +4.093835679009317 4.1909816942822555 3.150451732875301 4.585563922287561 1.4383964489955683 +2.775047335376683 3.6881600890174213 1.201786142145175 4.233407636174647 3.1661496780668563 +3.969587024629884 1.285414831190741 3.7699210314003815 2.6728286811984527 2.899722743453845 +4.13375115262823 2.1424378550414307 1.2994820410593948 3.822434505171092 3.214127842092361 +4.667464307608949 2.2170162820798005 4.8177903098286965 2.1119451893131007 3.650519598911607 +2.029264001381482 1.0914161004855099 2.867229989452647 2.567314930803227 0.984635835027177 +1.898760732298233 2.498080979004576 2.804503008478142 2.1118389906587245 0.9159520728148883 +2.178075929304533 1.629632674791389 4.7445350929235826 4.46027851980136 0.6177311735570408 +2.761932299232681 4.534178211030589 1.5407658026271793 2.3556027567860975 1.9505934568093326 +3.3458393446717776 2.158576388840765 1.5627060934824573 4.5470376191428965 3.2118262688600328 +2.4511542418284895 2.021069218291659 3.0038250684433128 4.4477381168912835 1.506604798528462 +1.5417597137516608 1.6482415615335335 1.381693684800311 3.340088988601486 1.9612879823874767 +3.2711821819674305 3.938504505241001 3.2743021217490282 2.3447731609056452 1.14426534168689 +4.832501454152352 2.0483972868785885 3.5099341666422137 2.6783217323406 2.905652294256178 +4.113348502944679 4.20535115148883 1.803309171865358 2.0509135550381816 0.26414469123102396 +4.612705164633119 3.941543694253938 4.581371069501408 3.911033683095056 0.9485831175683251 +3.284893490214088 3.9257892108660917 4.755604630365224 4.097320237429287 0.918741349201769 +3.3594899552742583 2.6656501212434853 1.0144074014779991 2.5493476712436594 1.6844747985755466 +2.0104513757466274 2.966416012444287 3.590265855893126 2.2760559289411066 1.6251203397643268 +1.2686400586337303 3.1650750441657305 3.8752559088245033 3.290699152388039 1.9844828686197515 +4.1517484151332695 1.865490332684817 4.486984930063411 1.0118504131160297 4.15975190731851 +2.931089357390477 1.6255418905850232 3.9177820379293924 4.487323753116639 1.4243707219051394 +4.988921426367325 2.498394326028596 1.9889213722955055 3.2378307142348737 2.7861263040115505 +2.9805096575215804 2.9701355817837825 1.0203601294804892 4.139963997310923 3.119621116999629 +3.9900695803338446 4.061412423773285 4.184682873064061 1.5479008429656527 2.6377470074971 +4.206753994806924 4.8973316390616235 4.9654740909342046 2.9920081522632973 2.0908049392132724 +4.122463165569354 4.326859527086718 3.0977213883671837 4.839914532220586 1.7541421901007168 +4.738678258590235 1.3454500159270042 2.3713772525527466 1.6774558066498413 3.4634556269557395 +1.955938474366444 4.099814088174703 1.4250355509187584 3.1376475659476712 2.7439465303651844 +3.092160311679716 2.0845828866277065 2.8580010043632815 3.2120459222929107 1.0679700704543342 +3.8767978728694374 1.2617518282565467 3.9540930643432954 1.806583676557889 3.3838236340081282 +1.4321260065005124 3.2711365640970644 2.4074163433286104 3.8527070066701037 2.3389794638888293 +1.7764735951069293 1.9830824015639825 1.3775932331885636 3.766350125116034 2.3976752673447246 +4.012627023835626 3.0624604081631652 3.3630821106864293 2.572673316153016 1.2359460586992546 +1.9736216304301064 2.380200044066636 4.945695659412117 1.9903080314090218 2.9832234308192462 +3.5599027412565287 2.827093006791604 1.1942876913217573 1.3217755733447647 0.743816689103751 +1.3024070763779414 3.2577170209110418 3.4187862807833387 2.6464718103387987 2.102309829793902 +2.3028179902474415 1.6430763774889785 3.8883415019931182 1.5362015406369545 2.442912481734398 +1.004279740296409 4.203357529769753 4.320528041683213 2.641488730306067 3.6129311801155994 +1.2773159470600195 1.9132644894791886 1.051234498331525 3.1011270163610054 2.1462734877173295 +4.209044753895981 2.0284145320654656 3.400832088286688 4.766357388895912 2.572898659287713 +3.1139626573436483 4.648608287068133 2.5538601982832185 4.145599109055273 2.2110563016120297 +3.10998570840733 1.8014544519498723 2.9779664577056075 3.7968179371282225 1.5436229444001988 +1.0075343387295588 2.7141350436507423 3.7145539151086986 3.546999738453612 1.714806218834083 +3.139126768117444 1.6125026968342273 3.452572548264769 3.809932423704715 1.5678925778240669 +2.8991285139473835 3.0988964413955737 3.3354786053671925 1.9971068413775606 1.353198508527727 +4.605265301807766 4.083488508991326 2.205935137916431 2.751746617425639 0.7550901884449565 +2.857765388582272 2.3581620146619735 4.164837875582826 3.7697932558429104 0.636917406590525 +3.0878322876568585 2.458421095114497 2.6311887807151524 2.205978217508248 0.7595804581216729 +1.129471381378362 3.887644757791035 2.310187393290367 3.571673045631115 3.032963307627253 +2.4005795727663286 2.591893039843944 1.50989848685983 4.062088985586822 2.5593509303097903 +2.734652182860713 2.3702428079180287 2.493515457282567 4.2373535463328516 1.7815065179136074 +1.0668975218222743 1.4657938357194613 1.1225788988619203 2.371429604841268 1.3110096700886225 +4.0499547278375125 3.762928384245233 4.623538336432031 3.5630054938637232 1.0986874132718403 +3.1165648403944823 4.716103819000761 4.394497964944165 4.0421152723391085 1.6378945344949432 +3.3571424443568327 1.976311707649692 1.9112710916540916 3.452674086615519 2.0694484087097322 +4.583231930639876 4.792277508898069 2.182200374126912 2.365610061190669 0.2780992036991973 +1.846240598115334 1.4081484535245794 1.7686753427566368 2.3653377720139495 0.740223467366014 +3.8686060753169986 3.4920283222184714 1.8861728040422188 4.280778510060383 2.424035332131833 +2.745308113043434 2.768569139826732 4.18561040984247 4.125978150267226 0.06400845060663901 +3.954440897741497 4.044389637743375 1.6092349385077758 1.5824649115246419 0.09384780323802572 +1.0898894972409305 2.907694555303685 2.931662049925558 2.557859761253767 1.8558403433848516 +4.481348504551304 3.732805021732934 4.161166545417533 4.881643314546224 1.038943752338871 +2.184688984504365 3.406999456472353 2.8833291818394855 3.5934934526101805 1.413639339209927 +1.9457990434864607 2.396237612981249 2.1407299700980995 3.110594828706095 1.0693609067341199 +3.2597640782393897 3.890202037720792 2.1150483876544306 3.9810740576791814 1.9696456082113845 +4.094890400863051 3.7733698145827983 3.15336666518682 3.227776090740766 0.3300185601042242 +2.8625384745783933 2.7543460317451283 1.1332775387950202 1.2961154992414805 0.19550397962341398 +3.0141452868766585 1.446666577800677 2.1777335402064746 4.753591632084266 3.015300053543395 +1.9323602712125396 3.3093219805203473 3.1588544848551017 4.426408102930029 1.8715543603098252 +2.3334007905115675 3.440727562463667 4.291385244434832 2.1774114246210385 2.386432041927861 +2.3861045500438034 4.92437922532036 1.6912532452826712 3.8385141286388365 3.3246906064086335 +2.2796646013633812 4.0131845600898535 3.322197073981365 1.2676848111820904 2.688142869212056 +4.49736730092768 1.7346187680205847 2.1934578991991054 3.5137053824118527 3.0619981830513714 +1.654906459497362 3.5627268076871745 1.4268997408993855 4.540188372318213 3.6513483240426154 +4.584951997456384 2.3775824403502526 4.528318368654646 1.2464868600160135 3.9551104172617286 +1.3986966319564904 4.690804861206026 4.159432249890079 2.733184973546376 3.58777896286412 +4.29382149588381 2.0945738222102617 1.1199301471175116 1.1225948480380348 2.199249288004775 +3.331658075536821 4.973002971415352 4.496775461508676 3.4178378716067734 1.9642096095197765 +4.733403764932994 3.193495095699017 4.697349806803512 2.4830198207237344 2.6971421906962982 +4.581695855738526 3.456131332289885 1.5164971126507334 3.1446427796116168 1.9793316572241415 +3.994876430296505 1.0748565610828744 2.58269204298774 2.3976379418353226 2.925877826730931 +1.4991582961222218 2.8268347980940223 2.0958474841781287 2.064079467551027 1.328056512641121 +1.3282820386641037 2.8054955008793647 1.0135455138970872 1.088793230576886 1.479128740784764 +1.607018376490907 3.839718136356507 4.249016477483746 1.5545571158553235 3.499294138704398 +3.0187984100097673 3.0364223999087367 4.056725525744741 1.4203845913764481 2.636399842066041 +1.025261438643824 4.689010953151794 1.0354279667557593 2.1960226572455457 3.8431810444800107 +2.0001425726193443 2.6712616389223545 1.9401534545527572 4.204247507165228 2.361466214077725 +4.900765047456341 1.1957255859569789 2.745026668099372 4.400691981862037 4.058145517655116 +2.797608501402053 2.485287217743633 3.1201200953907637 1.3170594268754257 1.8299104782947775 +1.4718035602564292 3.1666653597623826 4.310968532897299 1.7438018416244456 3.076182917221498 +4.867706119557506 2.0730253729471695 2.5275810836477666 1.2972751048389157 3.053505080553709 +1.3732009709855872 1.9936979018175722 3.871686107745989 3.914192967949419 0.6219511832421152 +3.15457457963864 4.8243451753000635 2.8970287387530513 1.3715892423045548 2.261658572698485 +1.776517252068225 1.9569327158009124 4.172563493427761 2.3300143022267656 1.8513609214708306 +2.6507458000576274 1.1794454451930214 4.936482245756324 4.133071660564085 1.676363117771222 +1.9322188730058878 2.364996502082029 3.106627016984131 3.9363908622237576 0.9358442792984402 +1.3030115753690055 3.4113811060907198 4.111710973362031 2.6056588151137388 2.5910258936259285 +1.294038740312014 3.908323333517536 4.340981920657212 2.5106265211397787 3.1913452998405525 +4.789761633159076 2.681866078121113 3.5035368236125626 3.265184958730993 2.1213286596945142 +1.6882248241539157 4.587779158084404 4.213286183690963 4.5462810253440695 2.9186128383159446 +3.036209028105454 1.035993537665119 4.797337276388905 1.985719320807211 3.4505155464577832 +1.4659040009792235 4.191978229886785 1.7970658853346868 3.0633531921694748 3.005821725413012 +4.094369302593246 1.3846454176622958 4.332748626555327 4.927060106384163 2.774132236866444 +2.47606048574663 3.955584181036173 3.336167021945346 1.1611960926713163 2.630492141807377 +1.304417491749641 2.249271620085103 2.3784643656284294 2.5915456439653486 0.968582962378681 +1.740412005245064 3.728642790046053 2.2458668701115405 3.278414749216404 2.240360858494521 +2.893103932831964 4.156725204826893 3.010867036941717 4.922086079727968 2.291178070021376 +1.0746130046113853 1.0098959907715743 1.4667838951513255 1.9054936380710337 0.44345747306029104 +3.0351251786848166 2.145394760304045 3.3905828548792734 4.506007511158043 1.426811964214849 +4.6333583173941335 3.456728305629262 4.201498706074255 4.8832133370525925 1.3598503677521776 +4.576561589272535 2.2445142962693794 2.678025865854875 1.0486131089312942 2.8448955181568003 +2.6915828769810983 1.4649398364669453 2.608752850191257 4.070453007100575 1.9081982332950975 +3.682902851312989 2.345841385363094 3.2041258307011895 2.000931835373161 1.7987243129844848 +2.777893352519628 4.154563836536292 3.6240476699250053 1.8435007427591126 2.250681892538921 +2.454134511907006 3.6932727503074605 1.9868374541876874 1.0693125266320829 1.5418545867078708 +3.852450951116241 4.05208624296659 3.939690997677411 4.368804295157536 0.47327842949625326 +2.394753294628574 4.629989399947622 3.023564429939407 3.510901626434084 2.287745175846549 +4.969851844451231 3.726854427214344 2.301998376504498 1.6116306533819071 1.4218474504626164 +2.0639585346015115 2.717300993751057 2.300300086933738 4.526751633038675 2.320332488261249 +3.349867622856557 4.331742531203529 3.811366344639355 1.7393220321591456 2.2929121153072916 +3.5588944157895055 2.273685014294444 4.8427763677677 4.042633400306645 1.513932618734624 +3.2931298435485408 1.4964919755704895 2.081979081003391 1.6328680868958472 1.8519201693596254 +1.193349247790013 1.922149493838465 3.894043074316374 2.242789974903025 1.8049339591692752 +1.3300357714023727 3.7419094178429 2.959437549708784 2.812290566214858 2.416358152498443 +1.800342974371329 2.373009044426937 4.686458639808466 4.0081588518044935 0.8877144981350525 +2.2887889999556106 2.3005912300383975 4.1266472852185165 2.0438511495215708 2.082829574283277 +3.8943001884296504 1.6221192490945269 2.5109957665080596 1.020506877062986 2.7174185085549585 +4.5971771998217115 1.8850979721226095 3.838686487522555 4.362882203753269 2.762273499534684 +2.3548228738991606 4.871055443850883 4.04345712766953 4.455387804422896 2.5497280695274815 +4.88010168003863 2.7612853317344297 2.117230866275361 1.386335227428729 2.241336911918012 +2.7084153366229002 3.525905024258063 1.8300504256352417 2.7831908635385108 1.2556934672746656 +2.8644943402704577 4.989094006674481 2.261163883019339 1.7910875368672619 2.1759815058257677 +4.959036791032228 2.3062841646474497 2.823935354216836 3.817085037720372 2.8325682322998884 +4.777790657824557 2.5063951427616353 4.341262045621989 2.099850604032225 3.1911068356194936 +2.152667172857937 2.1141991988420976 3.8496861434053495 1.2602808971190922 2.5896909689226777 +3.886390360494786 4.679866658281231 3.5097469922219005 1.2295361000074276 2.4143252366080272 +2.5867754736098285 3.006129971441738 3.7172889833444365 4.718135866645827 1.0851509934870636 +1.0266147453623606 1.6899720090650074 1.0042844206594173 2.329379176475517 1.4818633443062126 +4.1703575473104655 1.51669716095364 3.971475913537593 2.687991749417076 2.9477525414572368 +2.0111540568988597 1.4625853439321177 4.879999036686137 2.179685884315518 2.7554706954913786 +4.854805523140246 2.8551085552377877 4.778007548172344 1.8985782280140189 3.505695533446354 +3.970132288841708 2.330144193497934 4.387736432138494 4.054229383535725 1.6735554679594666 +2.8309420987932383 4.175398879133182 2.214761338327036 1.0503825487980123 1.7785786459156427 +2.8540966755985573 2.2652312287110132 4.713286607825783 2.9127896526514614 1.8943473282716843 +3.0290656369713482 3.250433677183691 1.6270179142542482 4.305019784388083 2.68713561728242 +3.9070605532793934 4.761835374406386 3.6902351727917013 3.5695547139184964 0.863251856636596 +3.873484716551753 4.900255712872621 2.7318976002677546 3.5719648587190025 1.3266392416959267 +4.776610163488592 4.238729721979556 2.390281845886582 1.0281160813827368 1.46451730592175 +4.816234792805256 1.4914838948159481 2.1197177309172743 3.049468952045603 3.452304428475323 +1.8674055739092963 1.5146883302031289 1.6475336292280716 2.130790802069349 0.5982866780317109 +4.201375751485566 2.8620119326744087 1.2461190938765743 2.0614291501775663 1.5680006144915675 +1.0475642901941224 4.100581659304765 4.222907156569779 4.153530004416844 3.05380553495669 +3.777608892390239 3.8704025586336837 3.1947744844682355 2.234154378271987 0.9650915256717323 +4.504337834051219 3.8648805349927065 1.466324785155218 1.4855379695273978 0.6397458743696024 +3.8289886659739936 4.231216845628893 1.6839781008312906 4.014431766957962 2.364910526525631 +2.247054487705935 1.2699024111286747 1.5902516128469433 2.0092463906282765 1.0631946221493414 +3.469282496086564 2.647945082546216 4.6290804435536135 4.934968204013609 0.876448782805008 +4.02312427782173 2.8408832619451365 3.3932541969035572 2.731725646588496 1.3547375548433234 +3.6711100686573466 1.8962538758020875 4.752484946669018 3.2320752545404074 2.337040893359652 +2.473818917790909 3.7606547927732827 3.816885918707605 1.239484814008334 2.880788611412971 +2.58409280918137 2.1267991975984413 1.0214952502894463 2.974073101443227 2.005412105281823 +3.5547356930292504 3.9411672201791292 2.879157890428414 4.408649385890623 1.5775530291773436 +4.172501735516633 4.4659717833303265 4.002107282445236 4.33765170969294 0.4457743056982553 +1.1164954302462715 4.484612793452485 4.652170967295735 1.0469724732625285 4.933727875928149 +4.256074128777018 2.918384658111656 4.221742279775182 4.600735783953221 1.3903413955349697 +1.286717795863848 4.100779877383977 2.6463493693753173 2.1163085785677636 2.8635447680400072 +3.1790764566236516 4.889406241931743 4.80722199402109 2.8000462953670597 2.637040435749766 +4.939246419857258 1.101165921194632 4.46577371646555 4.516818736474326 3.838419923390619 +3.789810374191715 2.845748157557582 4.552874899674399 1.0615788807784856 3.616683751786242 +1.4990350863334139 1.2257571197261727 1.7169887013724292 3.125435653333179 1.4347137915000732 +1.127780723711957 2.9516993861530145 1.7923181079085397 3.8512183217777203 2.7505907325284387 +1.4168912219143768 4.152499355746556 4.952158343248973 2.2885795328107927 3.8181414250003956 +4.797623005732527 4.360996035049114 3.857803390030525 4.4814004137667585 0.7612597188482146 +2.04483014289491 1.0220948945843698 2.813172452941659 4.198986129861867 1.7223434428928301 +4.403381988246222 3.749602820094391 3.1779169352163987 1.3442787738396476 1.9467039085506592 +2.4717706976430085 2.7724655460707233 4.998279313324341 1.3455149205619579 3.66512006636941 +2.8876308948832494 3.656479769351383 4.385263277220195 2.881061681215922 1.6893048964567405 +4.863733913415841 4.792716582375887 1.9392718623799121 1.9883686558836167 0.08633629850986095 +3.784498138585829 1.5933648904996396 2.8452997980638517 3.3941111299520736 2.2588180070288217 +3.835189036267183 4.514858520885015 1.143662398026129 2.9729637482345272 1.9514850853119372 +3.0111259614447614 3.817818075385338 4.496946116447802 4.0920255826287155 0.9026144278717518 +2.1167492101588974 3.963478569202981 2.225162514844037 3.8384275406299606 2.4521487248899545 +1.9300937999140322 2.400269027526537 3.181877284360744 4.535225436037033 1.432695349439684 +2.439348598472817 4.202256857805391 2.5664592803649118 4.149718041233587 2.3695049767177996 +2.1195288314403093 4.793347010836512 2.3604433625408014 2.207456170221473 2.6781913183123 +2.3707422011302284 2.0769546260430163 2.301526096484234 3.9761206629645436 1.7001700213099278 +3.394470279375472 1.6424514023053876 3.195622063119118 2.762660010224918 1.804723326401108 +4.866209439127088 1.662745142360675 2.4455278783097625 1.7035085992656613 3.288278593904455 +2.141338270148605 3.337330450453725 4.797245768094976 3.580366717511198 1.70622153283232 +4.017317210305907 4.897995431729097 1.4257148096399632 1.0395139189870992 0.9616367597124073 +3.5049351248082603 1.3167654677587666 1.8163182130466988 3.961361680402748 3.0641961302891434 +2.3724111524523996 3.3358030054877035 2.927533676878177 2.296574984730948 1.151621784133549 +3.1822461279803393 2.402876430149288 4.859945116354761 4.090827715862094 1.094969726356789 +2.436037645508729 2.042957826496802 3.341786491928267 1.1706898296991324 2.206393541700333 +4.8046825075655315 2.8638948623753473 2.529442571830773 2.885532689921771 1.973184445490315 +2.0096935807540914 1.9035473814321033 4.026954705289443 4.484619862390139 0.46981316675302787 +4.257461993730042 3.9086822804264743 3.9072088754264978 3.102406503120847 0.8771283525692933 +3.1385994307330645 2.893492024669578 4.902760585711927 1.5664412782073165 3.3453107721309263 +4.251528127137425 3.468517714007186 4.176966035939637 1.9264418627929087 2.382847951714115 +2.0740302058633495 4.953355203520363 4.993840114777271 4.578945090299969 2.9090634787622944 +4.768293712570493 1.5611083464163897 4.645915945806485 1.6580569321263492 4.383302346234248 +1.4747622990679625 2.5901966779410994 1.2328521968106831 1.682512960626667 1.2026589940991896 +1.843271208755195 1.2945247360036194 3.245060261238854 3.1038136970185928 0.5666332881690981 +4.937559869030561 3.6632956834309343 2.255697107197137 2.813368010118539 1.3909514911265062 +3.725670404194901 1.0424532741984902 2.282373111537156 3.731497380381818 3.0495270638675684 +4.889384043504416 1.3764994169513667 4.424179102468075 3.232717218749635 3.709439286445682 +3.0617334746570246 1.6061853026555641 4.161344583940666 3.147219170994916 1.7739985440239745 +1.2211550385676029 2.8810900121204783 3.5081375829152934 2.7504635586470507 1.8246791617911404 +3.274849921251275 2.6965154266867493 2.3628749685541317 3.718787590960657 1.4740996666455581 +3.0694168497075647 1.171413830494049 1.2633927033950294 2.1690346019305182 2.1029985043567163 +4.539263003199244 4.319605915888658 3.2464091132848703 4.932400116327023 1.7002396590906985 +1.1604991303402565 4.336273438540484 3.471508177504327 1.17749211463721 3.9176590144264702 +1.3606424484832536 4.145993363574016 4.743561590510131 4.8844899549376475 2.7889138610034485 +3.2010224878119313 1.8510200704894268 4.7281839890369195 3.5762490315220767 1.774671990290411 +4.971875357240054 4.346553503602724 3.8425275563753387 4.684978088755122 1.0491664882864902 +1.6991152280813697 2.3303689876056985 3.42290010934273 3.6779755778153045 0.68084124693654 +1.1832061028381915 2.928975482571502 2.747857969499317 1.3928739675182475 2.2099077747361004 +3.3498981186481305 1.0969526524681603 4.3960709377339136 1.7514140534210099 3.474186711926191 +4.614347910441754 1.679366962701753 4.53076550932669 1.1493214468070625 4.477530246859985 +3.774095885377185 2.369669958031648 4.377260889490772 3.488076433094283 1.662245825050402 +3.7031655915279313 3.5115126481871273 2.6666452592173586 1.662594861260402 1.0221780922758599 +4.003309049147811 1.3977040524013358 3.4365384299042656 4.384918104728227 2.772832740482087 +4.1211837194804755 1.323097921962936 3.609425285579373 3.6052137419751547 2.7980889670217595 +1.7368743839562444 3.1386263553685714 4.468668481159938 1.9347678928017409 2.8957832759100537 +3.360301828441507 1.1285036876778394 4.293202718495223 3.5322018666912642 2.3579748169907404 +4.928339741298865 3.4872095432566343 4.472226045163744 3.754036331864051 1.6101716405398323 +4.729324350265115 3.8749740511203563 4.478006975293244 2.3223881944310323 2.318751121197492 +4.225358787736981 4.7278791193399305 2.505359905961112 1.1759912186917831 1.421178310546047 +1.5488752293562915 3.345701834542394 1.23531869276936 1.8456469355181335 1.8976528694683386 +1.84022176375874 3.735858164117523 1.9342279588133704 3.460113398719693 2.433467431071005 +4.51395471579383 1.1522425666691993 3.679196984482102 1.4325325938772044 4.043341372872716 +1.3392175801586692 3.9742493642004355 3.688706723977421 2.8912277455926327 2.7530646966382717 +2.386728678691061 4.379870953372739 1.011563704935639 3.793547861178609 3.4222875350721433 +3.829700670694268 1.0508549406219134 4.880664254566591 3.640575268937405 3.042992652606999 +1.202895547976524 2.8208040453285954 2.5770963544222023 3.8046084548313606 2.0308652989440095 +2.826513354460791 1.2725482675171866 1.5116124114796916 4.320342713584452 3.209949127540987 +4.771447839234737 3.709477886705981 1.3948303980366301 2.748506444808329 1.7205287035319645 +4.95017362224391 3.5792542433281245 1.9030690420654128 2.1852181563733253 1.399652837739267 +1.803198139843273 3.5617974415089306 1.9096442782209255 1.7091510809635047 1.769991250251097 +1.8266244797225037 4.023465935304094 2.238185199082778 1.600825113107485 2.2874309301389344 +1.4443599926178652 1.365085388253355 2.2979568958789383 3.837248981325277 1.541332082068912 +4.251684504302492 4.001334372027522 3.3119898051465575 4.269134701417075 0.9893439953761253 +3.7107109715047364 3.7299913155363553 4.48310073631637 1.158239731325355 3.3249169063565844 +1.1734428230721066 4.093094272591671 4.897091972314751 1.9066544020319696 4.179363761201037 +4.315739682367687 1.4065675687473238 1.9983037706893905 3.0550596289166703 3.0951599846476507 +4.594160451918716 2.5303249471854716 3.841393232380684 4.597432764793375 2.1979564975604786 +1.7711681790175722 2.3196502863585327 1.8276019128954415 4.033115144380197 2.2726903080550835 +1.9617789045566831 3.6385358916876847 3.1972486770197306 4.895932721243138 2.386847602171497 +3.9347479606186937 1.5453979621700076 1.7355907406114728 2.0422308386387584 2.408946152325726 +1.9209356317442898 1.9699203303522625 2.8958499925783925 4.466905592104474 1.5718190727625008 +4.527708890589081 2.4428562680458876 3.488764358101807 2.9087229102039296 2.1640375548970257 +1.1277709162395082 3.7264270886195963 1.2719959189638868 2.616174653282953 2.925718778701182 +2.6841534381216388 2.8184299530900367 1.8638661077768535 1.9184769850160253 0.14495699494984815 +4.0698945905758475 2.4598144990816557 2.840120912588413 1.4489431956178884 2.1278471141558235 +3.3435117945768957 1.5326707406879168 3.5181525679716237 4.389536224311337 2.0095907043439754 +3.128818002956461 4.953817315063006 4.25990654514211 3.0358553041112026 2.1974812695125903 +1.3194929983604586 4.499301058897957 3.550461525232091 3.933518727818997 3.2027975462574823 +1.9171105977530623 2.7772663145885566 3.4519516791903775 1.9411555116278678 1.7384973158237402 +4.234240116226216 3.5284763142773317 4.880371223482959 1.1192698563363925 3.8267461423633935 +3.9670933073696055 4.468367744513673 4.018399142661879 2.628083551226087 1.4779220226803436 +1.2301127940463559 4.2322056989344965 3.6453046042749175 3.9135619959249945 3.014054385334581 +4.807214292216802 3.848725050414416 4.460847000507665 2.593429055723036 2.0990358279825907 +4.322562069950523 4.086482494081386 4.594374893062675 4.922155656011239 0.4039477623427253 +4.562391865990799 3.0281133069067074 3.3414030460583253 1.7096000435755419 2.239819576612586 +4.530782056921424 3.376364980363196 4.156198058173986 2.093884479447345 2.363433113851444 +4.654462531573618 3.9021216442185427 2.758633191285914 1.855063402757135 1.1757785393211442 +2.7628075542754735 3.906055579148724 3.942668878585567 4.506910595198713 1.2749057852026313 +3.1591111052031478 3.512256836587801 1.0060292502561552 4.902755211127892 3.9126953780900147 +4.369466476291029 1.187608171983491 3.908860189873249 4.7359819356689155 3.2876059148047094 +2.210751512499661 2.477537795881757 2.3622938153700215 2.902928516635377 0.6028771029099645 +1.1859166238761523 3.6344346324599495 1.9317766541494388 1.2322263171190002 2.5464899592180927 +1.194630508215083 2.93949976806432 2.9279889526689535 1.1135957377178394 2.5172587217899283 +1.97627834545789 3.164845723599843 1.2372638949181725 4.894508500442133 3.845533840316237 +3.191387202145777 4.266379308160326 4.044562614037339 2.5831287554070244 1.8142207559017416 +4.602236366595264 1.3847688302085612 2.0544089993898194 4.862106543646613 4.270276671098483 +3.777653870229404 2.148226357435425 4.668934458455309 2.294983102737476 2.8793539307915084 +1.4366903360543746 4.381516578845789 1.9649616122901978 4.437891581257398 3.8454368063523177 +4.389780154457894 2.7108910630775163 4.95116246574597 3.6974628327246806 2.0953356177456977 +3.4824932531819814 2.5628416974748203 1.2078678528367055 4.140248936290218 3.0732096906183606 +2.4611307941018117 1.909268326562561 1.4483723438064282 3.2978085704217746 1.9300172381084377 +2.4801281741857726 4.270876156179331 3.0990981161758397 4.47027352136696 2.2554157769278453 +2.4749606337527927 3.507970069301584 4.778052356068262 4.308759660531244 1.1346118843098867 +4.922836424387571 4.983381434448596 2.247667350498548 1.861491185965301 0.3908934999419906 +2.5042694846338707 2.972803878561173 4.331947853484365 3.5859965011872887 0.8808904008369384 +1.6660643413067149 1.7147834328564713 3.396799892557591 3.246064785063748 0.15841282306875923 +3.712777838687155 2.793078550592678 2.687460058106461 3.967184657502508 1.575925705996593 +2.2073866424323274 3.919292651725556 1.6201575948014701 3.518586411860876 2.5562969620323543 +1.2750584497859894 4.045044705824306 1.8568019453983697 4.6646217314382685 3.9441952042867143 +3.9659685732289054 4.446119184835159 1.8859529723892936 4.584421806374942 2.740853636701114 +2.5625537271048824 4.960894412245074 3.3227753971125225 3.720330401787349 2.431067260225584 +4.135252101010557 4.621192506145996 3.477929821778188 1.12827475315606 2.399378465112341 +4.233677440533347 4.887701708218065 2.339155820575976 4.697546425842571 2.447397391052436 +2.926216188463977 1.5829680597919236 3.7557522478553875 4.42602737108286 1.5011942832287155 +3.548530920978525 3.650089963032436 3.5045076603198764 4.018372267749184 0.5238044232262501 +3.574577348982528 1.2796786441948313 1.495462092124428 3.8416182787239346 3.2819215281836622 +2.6834501515113134 4.3811471837402 4.9515329084969375 4.061587196338247 1.9168146973112472 +4.990261013239989 2.601503045283558 3.0966517838030128 3.837814794135354 2.501097206699539 +2.507542514338103 2.886125817264375 4.011030268936752 1.1271136258311754 2.9086595747243957 +1.9881069208932036 4.872524089653715 2.0762606124836376 4.689364482977896 3.8920655494778704 +2.5193074593338562 4.622474890704092 1.2793507760631742 1.543188409919408 2.1196517500323804 +3.600630530946535 1.3176590946666442 3.962211410349259 3.9860152950939933 2.283095531027733 +1.9848832191192374 4.0224477988638085 3.653139352634912 2.5858838492895573 2.300152978836542 +3.8466931177490795 2.1772594534747753 4.615068653077038 4.902330374965579 1.693968139096689 +4.600606296927593 4.598526184003662 4.240523122406131 3.411172800971167 0.8293529300207811 +3.912603379738614 4.827502556894915 4.706899336361769 3.1942952759805205 1.7677702191866211 +2.1008752421520502 2.05804678626466 3.9220679687996407 1.3596136374772114 2.5628122203444357 +2.642660134468316 1.5588491685245622 1.822563026823175 3.0560431536456174 1.6419864290443575 +1.5975190402655208 2.9429043779193367 3.5928863398349344 1.350702332646279 2.6148519707368614 +4.227598209805317 4.604587809950872 1.9653201730071692 1.4580938010968545 0.6319808153569274 +4.687491029689471 3.3882252751277493 1.4029870478635558 3.4029523722681048 2.384942934285312 +2.8982679499479493 4.713178674736059 2.661148773226451 3.7713431002081284 2.127541393865981 +1.396754764934014 2.8637027112409736 3.9218739656720425 3.166858608214851 1.6498437705341733 +4.002148545640621 4.209331406213091 2.795630158077068 3.965491914116027 1.188066187532306 +2.124632146571431 3.9288537864812256 2.0479349757533427 1.975287802305222 1.8056836206071067 +1.8873618910694354 3.0323492970863892 1.648313190170791 1.3156974595917785 1.1923210071813894 +1.5211033620415453 2.737256292133246 1.8226268433459052 2.557948036493013 1.421170365037885 +4.220581329218844 2.5769035757439895 3.274625070646799 2.6133583540288075 1.7717082795355688 +4.217833680353335 4.767561607179847 3.5644206661159497 4.528099655345724 1.1094494075062158 +2.6044097699512183 2.8694203394920677 4.0316214041891225 2.4740082932974246 1.579996583917218 +2.353180149695844 2.617665808246417 2.5903294362204723 1.8528268887765487 0.7834938870630753 +4.976784300697183 2.1527654939807674 3.222703559430858 4.353378176140133 3.0419578086421044 +3.570113278500605 1.742761993261499 2.5972110307056844 4.7954095967948565 2.8585467733835497 +2.352818773881077 3.5291226724501383 2.0901832765118384 2.4271628205073377 1.223620069654052 +2.0213400234115664 3.8561794782594134 4.920004408498414 2.8316708070843424 2.7798872379759243 +1.6495127068253979 3.5326301480956164 3.4681598011077255 4.979680924035246 2.414710625038157 +4.098040830098576 2.922790377155515 3.383681091134411 4.271652719474913 1.472992613654445 +2.2266858767143214 2.3006791563190303 1.8841938503519615 2.375175440097292 0.49652585722750897 +1.9194586768432647 2.8242135997843105 4.150137319268406 2.493073743455497 1.887972765924319 +3.082336596643557 4.091074260398901 2.1712631332138246 1.1470528203078953 1.4375529344484856 +3.1076020795984975 4.2146295909565 1.3253682370138584 4.162432035818455 3.0453966752117956 +4.8603534661276715 2.6428099860530576 2.2197865903102807 4.902914131931061 3.4809011032526334 +3.1388898758961634 3.1679769303250094 2.493978466725208 3.061314127448112 0.568080811736535 +4.7629318135210195 3.5273594395286434 4.482306515100132 4.9158938634470175 1.3094415145471903 +3.459483155905164 3.3048558812324904 4.956561367592859 2.1204400413495064 2.840333390861899 +4.666299247571746 1.9137132911018369 1.926900232273141 3.6485490846524957 3.2466604717239083 +2.0738404163630335 1.197448944183142 1.8256672093231119 2.6372149428151395 1.1944336466483538 +4.6907065368804535 1.1643032821787784 2.349478321809808 2.860704939523307 3.5632671201341823 +4.044692758492272 4.792772760261347 4.064734920066996 3.2012041234895454 1.142501258504561 +4.697198104301335 1.0014739087793396 1.5167832774364278 1.2893837117412197 3.7027135849056796 +3.708411170981465 2.0803854037034304 1.904264897343611 4.50055186749571 3.064502232060339 +3.7947801618748334 2.7467523103679103 3.221364402026781 4.7138985936691356 1.8237381091471752 +4.2844887547013775 4.622055939535857 4.7103535772570115 1.5711434094822732 3.1573077268041794 +1.719189170509754 4.032367370029762 2.0132086559012157 2.4614004057216414 2.3561980450169555 +3.6958207469500115 4.487447876582564 3.1556004044091717 4.464954636111079 1.5300594813424628 +2.2813253879159934 2.2280260433056265 3.4969590546806018 3.713581938441151 0.22308360294882967 +3.757944938591364 2.2327712059603235 1.8254429235513183 1.5053611671092009 1.5583989365739348 +2.121431674707261 4.3506045118009276 1.9731143645429476 1.1793746278214252 2.366270125595761 +3.948711363170667 1.9973051951039187 4.173632117213645 3.7622514768677293 1.9942968846238431 +4.280740371835077 1.9485993934601789 4.226969528891532 1.5516248511229356 3.549133794023576 +1.3618387461696586 3.56605382147083 2.927859062774485 1.5833461658690418 2.5819138305005485 +1.266392817663578 1.7491420064010952 3.424696965309057 3.176218787734901 0.542943997072723 +3.7123865440250707 3.4832536066861355 4.552941915084146 3.263678301299823 1.309466520687635 +4.653087167012595 3.8286433924369887 3.061116906220641 3.932487170212709 1.1995806243875728 +1.5188978242237834 3.067991784865052 3.8051850346434626 4.2032446590843 1.5994197583827807 +1.4001687264583635 1.1590549703706388 1.2687462016772848 1.1223240435312145 0.282090928196714 +1.575327128546137 4.166127491668599 3.907834383455804 2.6425258848598285 2.8832710795509118 +1.0751407703408358 1.8958173005909158 1.411662864913242 1.0802826734158928 0.8850552517329809 +2.7485356582808818 1.89691696857414 1.2917139396210384 3.122256829728388 2.018945681582443 +1.7759859836778698 1.462886629650387 1.1785286518672469 4.419518827295102 3.2560787033965113 +2.2942852758227104 4.280154590485283 4.522028093254692 1.0630878208526044 3.9884764939715294 +1.868920481342002 3.4551064239399327 1.4013547973923792 1.7832484822740788 1.6315111495321781 +2.0743335148995814 4.573043162253917 4.314002981076031 3.4499869235488463 2.6438747416332813 +2.016406466160357 2.4321544561701605 4.706170227680855 2.1520830856713595 2.587703136021484 +4.04053275571253 1.0579636611097651 1.2053685298924837 3.8353880847549746 3.976521251425503 +3.691665628693608 4.82894736519415 1.5975604971955466 3.083292069335346 1.8710446420731623 +2.199239988863455 4.357822741358035 1.2677882757530066 2.8682153260716685 2.6871632333668845 +1.7693746295856 4.11583771097552 4.532112486870359 2.2215817156354807 3.293089952787369 +3.4668521320231758 4.148418733967014 2.4579361881480977 1.763793717473658 0.9728138580834904 +2.6126769882940675 4.80262936743045 4.254345425456409 3.826918054948408 2.2312744295456994 +1.8024953770728875 1.788575476390958 3.844013599811539 3.2612944695428467 0.5828853647297176 +4.984165129989407 4.222230084805504 3.1586656932438455 3.6361784574584 0.8992015642041674 +4.147216639927353 4.048555966055719 3.24230905774974 4.6532216106605455 1.414357861550637 +1.4290699256335255 4.036199646909873 2.831733398493925 4.476666327877873 3.082682229120307 +1.6031302791909101 4.607939216441474 1.5095878417487403 1.6570760845815848 3.008426421097046 +4.437084965056886 1.9576457820179765 2.327250941515272 1.8529437562320843 2.524398139834507 +1.7360652914429364 3.772632830085893 2.0594412999636713 3.965344713304196 2.7892786093248723 +2.3622819806211632 1.0958392152111367 2.1952159743041273 3.95056380907608 2.164514564307198 +1.8083931173331425 4.455318486152408 2.1732140746754536 3.6189816674440847 3.016033461418989 +1.4200750241653433 1.0958958548000894 3.967413536213954 2.4344263490742515 1.5668892270306933 +3.2061140957053875 2.9766238600146306 1.1900818627158807 2.013529651533881 0.8548286548698829 +3.3112608773550893 3.4744696560543478 2.6099071357513006 2.4609914858299953 0.22093658872171507 +4.612405192744539 4.054620533063824 2.255481962045459 3.906470506721431 1.742666606447262 +4.124162762116605 1.8678804592296347 1.8591126244978065 2.77691619489674 2.4358105887276946 +4.810259367537894 4.526800130991412 1.3900765169174583 3.66081772252694 2.2883650848665553 +1.8321072017479998 3.48139769925627 2.098115027465837 3.410505391614692 2.107730441276076 +1.2819949764267302 4.124341577345945 3.083164049639926 3.7027787018865586 2.9090989183999443 +1.2932507946114193 4.7215156837671515 4.205817115426997 1.4841900735690778 4.377242728612414 +1.557537415950157 4.85338316174531 3.502402962963593 3.7493113691489297 3.3050813819210245 +3.7845886232156403 3.311559658184348 2.147243939404397 2.788293777232297 0.7966814271324221 +4.072499586897773 2.3144787781479206 3.3792745279622283 3.2350402920609396 1.7639276285617596 +3.109403815186112 2.653950155618263 3.0183382571711905 4.269492124383972 1.3314743840777579 +4.100492930403221 2.0024275583434656 3.532462667932065 3.159445529791233 2.1309669379844958 +3.8430183231129686 3.7499982404716703 3.7333186701908483 3.386806992065 0.358779986694054 +4.63329733378012 1.8461603714909756 1.1247036442839762 4.388084630864624 4.291595031003559 +4.452130227448672 2.7479248164975156 4.933278618942547 4.57953716115842 1.7405312699490458 +3.2973720912973374 1.3360058609855727 1.9908783094373033 3.203354860702611 2.3058744277986163 +4.622453106910638 1.7529282388162972 3.261304296007802 4.781262076722335 3.2472210617336312 +1.300461192186313 3.0908174835278093 1.4909873103796296 3.2234613575474738 2.491353442218949 +2.6428185679369207 3.852188857868432 2.327277546482682 3.0827220172730554 1.425928766319263 +1.5570716268093991 2.9203937856398543 3.269890973356643 1.2986815754607144 2.3967298135399746 +1.449081968953299 2.447964095852951 4.663685409011299 2.0624303668332846 2.7864481509434396 +1.7955550913068414 1.7606581179036267 2.446769442748062 4.824338993196886 2.3778256382615877 +1.5663634329292826 1.9358483913798525 3.476235693718485 1.6587575900974092 1.854655167858241 +3.7656356691861017 4.543204253121031 2.2663807344800877 3.6182520635453495 1.5595412764884578 +3.4320281021210457 4.832304582922596 2.65008219516557 1.443371272716654 1.848492757097925 +2.7477728845368325 4.886254005976994 3.648479700885682 2.465153518214256 2.444046309166768 +3.516024951879446 3.6730883607048512 1.0905109549894618 4.161064571424733 3.0745680063702574 +1.4922019708716436 3.6487372883931015 3.3059831145439067 3.4612165470937417 2.162115166751896 +2.9062260800451143 1.8104687473603702 1.8974706476844942 1.5111912690640783 1.1618502013942071 +4.936343854671685 2.494090466304241 3.250257323430763 4.725988432716166 2.8534862747006495 +1.2912769706276777 1.685570316761543 2.7480228692794615 3.8094078837063416 1.1322567693131222 +3.0288164748167294 3.3695860209140776 1.7414503606072231 1.4465931800278709 0.45062694158982264 +2.8079316497665703 4.379500002678543 2.208629982398369 2.470523103146637 1.5932404384052385 +1.2190843157807985 3.60112393353431 3.3851863714777872 2.6472532851918107 2.493723717732749 +2.6624177862468503 1.0191143387111743 2.6572862035079554 2.5419568727342554 1.6473454632284474 +4.903801611944092 2.488768849573579 1.4983736362851392 3.980236056309298 3.462950232857979 +1.8629845040304356 2.770583342839597 4.67889572035021 1.2212835251541603 3.5747472280674875 +1.1462892179092354 2.660332149966696 4.88613159745749 1.6635035405103578 3.5605698411259965 +4.93034498058174 3.5709785494022306 2.6607242500734967 4.957301068891656 2.6687341903888915 +4.790755885849949 3.3402731023809094 3.6977960372769254 2.1493447826225616 2.1216978091096683 +1.2243275220771546 3.8812198270538376 4.404774664783483 2.2448781211609408 3.4240662667940462 +3.7189216822873576 3.2103548996812945 2.065878369150452 4.371453534224424 2.3609991559033126 +1.3430265659454186 4.046901559634767 1.878843336060426 1.304633187335654 2.7641738867873524 +4.609537563244139 3.51538856754015 4.561048691614567 1.3830785540354258 3.3610498687381645 +3.6495740070834026 3.0414764180926377 2.2016660462039948 4.962121207073645 2.826640297757794 +1.125124536902156 4.263002360158816 4.233510634254436 3.5187431108435985 3.2182557148568565 +2.5419241610775165 1.497390723159997 4.009717990411605 2.392351413848329 1.9253375667429868 +1.7455845374925367 4.779030248002723 2.1621227451186287 3.1399104193764704 3.187140036857999 +1.5983521953407083 3.5928151798415575 3.6814094954043384 2.808838077968842 2.176984950584047 +3.4097793362193722 2.887214841153527 1.3201249360408132 2.005583280584386 0.8619320121725594 +2.038739756641422 1.5233546627663488 3.4021811113383214 1.5240539972537395 1.9475582793971271 +4.80701949622088 2.8227947335378683 1.4762538822462639 2.832656285172967 2.4035339372494384 +3.7742584077351506 1.4285743598002698 1.7476738317744562 1.0778795957929366 2.4394380441589893 +4.722262228569242 2.8149927481120707 2.0574397104573685 2.704144291345911 2.0139274281923853 +1.6084443079015176 2.49024136185963 3.85671225491957 4.223701937618343 0.95511647016296 +1.0762472315569784 3.5626324092869774 2.4466933484814617 3.839434047463535 2.8498838409023817 +4.795348344787932 3.805549733823586 4.827022242336509 3.676777748271604 1.5174859756826675 +1.8581813900961155 2.3291702086516524 1.2584103990070594 1.8979437280704698 0.7942501785881252 +4.640960564226933 1.3477472820313974 4.2889904259750535 3.6963921970178526 3.3461061523795546 +4.0709695169752695 4.123514089685637 2.6583852737732245 1.8725497930094188 0.7875902074991771 +2.9363677694290176 4.527960399952334 3.821105872191171 2.7357755809767776 1.9264238740639736 +1.9212663719175094 4.134800174240139 1.3950509134420637 1.1768283360391414 2.224264594717376 +1.844796655826352 2.9281205948806686 2.932861423474383 3.599932260135421 1.2722319985174944 +2.966837567907766 3.529755549414771 2.768054564554619 4.42592694604443 1.7508333693446154 +1.3402604839183834 1.9638201783245584 4.668164988522369 1.352232713392985 3.3740529850215237 +1.6134268851894977 4.746956457824842 4.731953695847846 4.967489475222221 3.142369279054538 +1.4017826135330993 1.4466531049807605 1.9488080713681657 3.0722723828483294 1.124360004701498 +3.3290983688388485 3.178380529626142 2.7114634111566254 4.468238362869062 1.763228317042686 +2.2375127744990264 3.939294473882407 3.2075315835161797 4.923607636300039 2.4168115299489985 +2.9674242916797007 4.7096435296226495 3.162594595960195 4.079648883979835 1.9688363162624054 +4.876129034830317 4.985622071101005 2.6516707068048917 1.5705273414513488 1.0866736867338598 +3.7285737211346537 3.126693947113485 1.1677319753868973 3.177102144673136 2.097576634975032 +3.301427415093693 2.6467047151807344 4.119514481468302 2.1140268090744994 2.1096546205255557 +2.9290487792735527 4.457409744326839 2.4862631929072987 1.7720833239144191 1.6869914418198149 +2.172339744311015 3.474285793999472 3.279337248807253 4.829567327670826 2.0244201178887598 +1.6257751896605313 2.55833040546531 4.656665426519644 1.2784561227733526 3.504562359331433 +1.2423579487370722 3.0350728113548677 4.26208564953714 1.1857821871754086 3.5605434376214986 +3.0697904276033836 3.6326714118366685 3.091192795435077 3.6879316523198447 0.8203244880701606 +2.5374741341712967 1.9185397246297464 3.534143715925357 4.707695801312724 1.3267645987256311 +3.514529608410772 3.724776624098118 4.448209973198375 1.4033947293530162 3.0520654771414235 +2.4905149135448297 3.5744869974746805 4.323081051733233 3.8238256695336643 1.1934200498543925 +1.0326081438698287 4.6781798692049215 1.7735620974413702 1.38657909634632 3.6660536067683487 +1.0412718203222417 2.5863870992694884 3.527699350862976 1.1750488884010881 2.8146661300691354 +4.821365981293801 2.5895822591882243 3.792297162182226 1.3313195415782189 3.322238617464011 +2.4784842200683412 3.305884724250282 2.8498849489126155 1.7255232227568174 1.3959874231398273 +3.040432041316084 4.543822143794712 4.8185644760535205 2.523108706590116 2.743956812669166 +2.5707870553850363 3.5614908990446765 3.3139788426314984 2.7143743100465887 1.1580240504144776 +4.868859598152198 4.9003874634068145 2.911811084263497 2.479979906675667 0.4329805679524259 +3.3754515188464884 4.340423612139986 1.4032348392806049 4.655169927410649 3.3920868146683083 +2.546988247681286 2.9014534030764976 1.9678294376482182 2.5842032210679875 0.7110289637395598 +1.1963383619494596 3.2283225275177347 4.336203899909151 4.139425251221525 2.0414900160665805 +1.090636217239819 3.624908012550575 4.669418615984954 4.026411231194622 2.6145730109144982 +4.869822614741603 4.893125696357838 1.4796793940261046 3.5376761141948494 2.058128648514986 +3.294290468766767 1.0585915537761141 4.008775803608115 2.318109878052708 2.802980718864206 +4.519376911596128 2.372016912352869 2.904497421698389 4.654635343172387 2.770223404444366 +3.3558907777337765 4.1389770053865895 2.5704042581097544 2.5964162098040156 0.7835181309774891 +3.6575720906028844 1.1881620036907354 4.235573031300305 4.5480683237438235 2.4891041531327747 +3.0621431568732675 1.9153611635177583 4.9665393524566435 4.1829784117297955 1.3889120519734783 +3.4906236159339947 4.065516683317117 3.7671504225456602 3.7803396321656324 0.5750443410516923 +3.4409727676776485 4.968004551116824 2.684399189493767 2.3211234865193107 1.5696481465618382 +3.6033500856745726 4.917780890736175 3.2836479599432176 3.1306819661594347 1.3233015289604833 +2.1290792447818867 3.2402520294278783 3.039727630296155 4.886530768705931 2.155315937253313 +2.1236803707796796 4.37452759039042 2.096567845297002 1.196683356476559 2.424067923810929 +3.397701179182094 3.551780135449763 2.9727945674598186 4.541277973199323 1.576033159183121 +1.4362904179653317 3.461509628319807 2.0406876835159724 2.8651579515827317 2.1866101785446066 +4.693023255664856 4.628224690998574 4.95959361994575 4.998477915499713 0.07557011594233663 +3.943723683482291 2.212261197402421 4.182830617795541 4.9645789161924325 1.899761233089127 +2.657925816488017 4.053647669833267 4.502922197621135 1.009702216525099 3.761731692749244 +2.7867117292723456 2.134105993957279 4.151000724399859 1.9466214187163393 2.298952450376448 +3.0858918852365185 3.6950826560576493 2.0120637143689715 4.00034454607059 2.0795129383982496 +4.956474297427682 1.7087425753456986 1.488656187471185 2.0066615428836423 3.2887825843089096 +2.9814257015368315 3.2550442853718504 2.7594193431446943 4.820384582344259 2.079049024580421 +1.2600044716866168 1.3131046578789243 1.55893749908306 2.212190704544774 0.6554077968865356 +4.898327197374731 1.5956798055535595 4.730490268167902 2.0001867684196846 4.285094747545327 +4.6463730243659995 2.047221523302426 1.8117910162101074 1.7725172979135273 2.599448201143825 +2.219894066250092 2.5943240414947084 4.28601168148009 2.9061407355706117 1.4297697834710326 +4.185189113830524 1.9853328464576685 4.433638720007872 2.791987935316597 2.744883402984016 +1.93905095856165 2.099982703828944 4.882851500529997 1.5698519742360388 3.316905920863413 +4.022907976655407 3.0611730772362207 2.685433205303644 3.7373287943204785 1.4252783401686515 +1.9712689592405606 1.8047504304351811 3.4109788239426555 1.4208152047681133 1.9971178361632596 +4.208054870739468 4.35164293798022 4.6189486012441785 2.274742023822165 2.3486000107899527 +4.520681731545967 2.17396167285227 1.6944745290659426 2.508725888016741 2.4839686611204597 +4.562206746746568 1.7101562167533393 4.247387913019052 4.582281937725373 2.8716452137091477 +1.7625955931980322 2.6226739162012436 1.773675232490814 1.4614739898928346 0.9149887089903016 +1.768953943795407 3.57982062146034 4.264366164929612 3.122971770742148 2.140565179423369 +4.662262433328788 4.304787852983262 1.708351864918713 3.9617356940191875 2.2815623499796636 +3.404515486218279 2.297409503631434 4.199133785645724 3.324586230878842 1.4108568609991294 +3.1909147720653297 1.8077781290270396 4.12027521598041 2.8736187460916067 1.8620470797568043 +2.0087384398856063 4.699021179395419 4.667857727232846 2.3238975543540312 3.5681606620984017 +3.1384173657308656 2.1907114177511895 1.444676763893324 2.2891212749943555 1.269343569001205 +4.298332576675682 4.17829176012911 4.81760200435985 3.3515640485232305 1.470944283645979 +3.8419701663221093 2.389643095866267 2.674989014957259 4.706892420033208 2.497575898173684 +4.499963562674393 2.008597438937234 1.1266268139242297 1.984312127265469 2.6348679775704844 +4.447426648161061 1.8990360132820405 1.4620243152965 2.3880565203121917 2.711425911336196 +3.1682697570209712 3.5266135782092034 3.444977973500467 1.7169110344149354 1.7648302015050124 +4.971579650357234 1.5311031691429493 4.583016784994587 4.73172660279906 3.4436888691779437 +2.776802816198259 4.39585710938309 2.5776522971626536 3.0115264875664733 1.6761812602993749 +4.831391009805409 1.0486400241159988 3.9574133127200812 2.281822250253627 4.1372467207494 +2.4457641711591758 3.5379063212281285 1.2423640030955214 2.971675010501773 2.0453095209023155 +2.4821297420749344 2.3025598038080846 4.944244175923119 2.89770216991448 2.0544049126418638 +4.859334301957622 2.981123246164489 2.913772756106995 1.4583613488212102 2.3761100846890795 +4.183747541961916 3.702787273969555 1.2708956525442656 2.9850132946889305 1.780315160441788 +1.2175392442510282 1.9641683836784418 1.9771485324140197 3.8631343060474785 2.028397744573267 +3.2236507398705108 4.495149096126804 3.5127781181654987 2.042754407272813 1.9436249073700298 +2.154434451930148 4.135554676881647 4.549729303326669 2.8389366810003835 2.6175654227388327 +3.7884734700741314 2.2065129280030136 1.591727467594545 3.271464107026197 2.307404241679183 +4.622296286412466 3.7068298923221548 4.195008780813161 2.7856052242474174 1.6806240221920203 +1.6648975243106623 2.7990106098707854 3.648106825426289 2.2188324385198093 1.8245650889747935 +2.826771782060528 1.636214551643016 3.7922549971428836 2.6428677973823698 1.6548466556973584 +3.3912729328288314 4.439338264124105 3.939796975432923 2.8178833521101936 1.5352951237010453 +1.3002483422052027 1.4314827631784017 3.1052414782602407 1.743494540895798 1.368055991057972 +4.65264275078279 1.6315889269276602 2.0811451074066833 1.5882951536826018 3.0609912256515095 +4.966928349315879 4.273864355977226 4.075789102771733 2.437027871779958 1.7792908899514426 +4.723416016123841 1.7693857699330833 4.327575235165925 4.5234959725919435 2.9605201621950465 +4.605403736362594 3.990227405402724 4.245253669494331 2.1808506288214176 2.1541127715402504 +4.698196166602768 2.9292414956596464 1.3501279835002933 3.95469419442552 3.1484862672314264 +1.0981018800743128 2.9579378176365414 3.5917874010689936 4.042041194513797 1.9135616512564757 +2.9791142328955833 4.6077044340592614 2.3627735454468786 4.554881253691738 2.730868405447776 +4.777620249058498 1.745868158793856 1.119927148380305 4.510879744434799 4.548634987060705 +3.186675398215422 1.6730651447072074 2.3262825563338887 2.9025901481402587 1.619613052521762 +3.473625606129035 4.725372265942036 4.907478578242248 1.1534099432003186 3.9572592809871048 +1.0769905138990747 2.440677857763164 2.440315289869414 2.1277160125087935 1.3990573540857705 +4.967544443584705 3.3854952694807556 4.965857548330746 4.089586543413793 1.8085160942997316 +1.3066400958919133 2.128452187888222 1.0658567863417798 4.978964501893782 3.9984730970789286 +2.8964192647420144 3.2286827137274896 1.2391573677992773 4.1573215160650845 2.9370190662907905 +3.59805645131501 2.793572308473462 2.728502000220627 3.3355130967685547 1.0077981977637278 +1.2819582643565255 1.3592893538018198 2.621007495078898 2.6972794935518603 0.10861636684153854 +2.7075218167354866 2.453176707110785 2.690597062639057 3.5153986477571326 0.8631275048353468 +4.154555296193369 4.324991230387132 1.9844949983887759 1.0107501011033122 0.9885481944012539 +3.7953901374446044 3.671604705374033 2.8563122277096458 1.883055003896481 0.9810975776636117 +3.7519050849476603 1.6714048972424598 3.096491141938636 3.5111813853749485 2.1214261780798886 +4.896999535252586 4.342087654327497 3.5800686752220825 1.9672659240812393 1.7055966433126248 +3.297232584235392 3.446618582136842 2.0657980339602533 2.6656295654310167 0.6181537369583504 +3.018968476153256 2.083774733295684 4.298376162049646 1.3709503549576576 3.0731757503774713 +3.4184591940145634 3.4138145369042925 3.0086574286981898 1.8716274364617158 1.1370394786835452 +2.821667044224705 1.9784464587748785 1.5184930286704743 2.0657958362100595 1.0052667898956278 +3.3413067889364885 2.514362242157062 1.1872978018484628 4.099643787120302 3.027473603745742 +3.659646115346205 4.945882943197334 1.522049848542411 1.875689289468796 1.3339662782466655 +4.24672157782404 4.430470251210689 1.107434374461818 4.428673228888222 3.326317949794181 +3.2331924961259073 2.681779719628057 2.088679914934193 1.1024810582584297 1.1298868239755921 +3.1076992815257243 3.9869392001021655 1.6642024492730458 3.940621609745763 2.440316993463271 +3.785646028359731 2.8444837841035717 1.2596911131342745 4.531656702260937 3.40463583756652 +3.4532280522845045 1.8287247197133474 2.8381755287338426 3.0275818777979393 1.6355078240719565 +2.2431200895395875 2.720531820576788 1.6351740277705549 1.8908313324200026 0.541555738915725 +1.6010320528942024 3.976908158963499 2.401894289917458 4.246153018500742 3.007669783960107 +3.928873540526239 2.0936260338956676 2.477091100084531 2.1370433220546468 1.866484905360017 +3.902285882472204 4.526815103469867 4.921211264012271 3.9858945716913188 1.1246573090564767 +4.001086761701854 1.7254434865173787 2.0567562691370576 4.7276802591544325 3.5089011494116877 +4.96896416440287 4.815527760312506 2.81066967942671 4.568317636398501 1.764332471714811 +2.836802323252735 3.2435546948873095 3.4035056193897257 1.4972637231705574 1.9491551140767636 +3.1437225687750456 3.4734725180069645 2.2215720399626777 4.961799197991581 2.759996359892095 +1.970784061503354 3.526644333648458 3.178695966269346 1.840808101359869 2.0519856543142487 +3.731526312865511 2.1482787586447576 3.9838094725148356 1.4602320904051997 2.979113227361679 +4.859338934865281 4.241821102193088 2.6445471485980625 2.280806259220057 0.7166838272722957 +4.829892987253812 2.873797349837025 3.5490972982694555 2.8078710064352133 2.0918237398087176 +4.798078830506027 1.2697642687772466 3.8842367932244706 4.930500435476207 3.6801727208930326 +1.2727944327242815 4.790535536067485 4.505229311411947 1.5130713609345912 4.618171897055707 +3.801210165738389 2.5808022215442286 3.669474941599652 4.277437942860067 1.3634568424243536 +1.6939189449549925 3.902209076473966 1.010348540095992 1.0345741364305883 2.208423008502187 +4.157232746661936 2.3549721272962687 2.2290133538635453 2.0984050709191004 1.806986957255092 +4.429592685676267 3.5176190909394514 1.7171809095686381 2.7247933845009604 1.3590359587356142 +1.586505936049171 1.4465128479149367 1.4902126496447696 3.462349687440122 1.9770995322870282 +1.2432187141331719 4.029063046401546 1.9559710921696114 4.614836107037172 3.8510377576594212 +4.592446896803708 1.7197632296307024 3.3891075734319958 4.433687063329861 3.056707012842061 +1.339180890347289 1.0788956020955847 2.342796486258836 1.970495247159577 0.45426494902767556 +2.5947124121375205 3.0342399744115385 1.4372399273702468 1.4625936343297115 0.4402582065732871 +3.4417665514191964 3.5307799708260426 2.6578345940738837 2.377059120711422 0.29454754332096145 +2.190712024464203 3.8228687317143044 2.147558457064047 3.734208106429309 2.276267257343127 +1.4377217549768337 1.2475095443143829 3.2131482692079567 4.502132503402223 1.3029432225106643 +2.6916700951142607 3.061908013440233 3.044937338987483 1.997311105009763 1.111124134507342 +1.9347856594894695 3.5347821759084974 1.9594109315568033 1.6185201050774722 1.6359081294897908 +4.943984682263621 2.225128430752464 3.533586518969436 4.372981763867335 2.845481276258641 +3.7683430442152837 1.3471439263846534 4.189240269463404 4.325766393751298 2.4250452677830356 +4.583750753483121 3.454991804312449 2.635193637465833 4.040610421116654 1.802579568590607 +4.315680154507573 2.484154569120929 4.811905697680208 4.018189818580337 1.9961139413022424 +4.842709508046834 2.2711599302961774 3.9207783420957107 4.081839551413315 2.5765884312354643 +1.7058769462503633 4.27915369254951 4.307598549763938 1.2046659687304073 4.031121905311639 +4.210911631439306 4.874657695071767 1.8993617509023464 1.02734097084174 1.0958919097452524 +4.269941554846353 1.9514410383122853 1.4273118051005689 1.156283149774512 2.3342881521304495 +4.3396655906880826 3.2302682792186634 2.338837972597959 4.420027840676854 2.3584133780340166 +2.0342722995192193 2.5639557822530117 4.21112071203999 2.3479841472546363 1.9369673334677504 +1.2100142006689953 2.6214085862372825 1.6666653682407229 2.2661666835379943 1.5334392517008428 +3.1681174500101617 4.144988785195968 3.6001337203509243 2.2960954411920422 1.6293536875151937 +2.9917239680606036 4.011692054915519 1.1022545257388425 3.6824216950243605 2.7744544544218637 +1.5656956998243792 2.969987612116339 2.8449342354799327 4.211288520425372 1.9593263655954238 +2.217157793110965 4.904145404284799 3.0675923984085993 1.151790648156965 3.3000301163578634 +4.597247888664496 2.787720747711936 2.790708780270409 4.562816826786293 2.5327367416236313 +4.143198837225033 3.8016122883116132 4.664849264037537 3.399627011410157 1.3105223076857875 +3.654114264255012 3.4794323195010644 2.2370527095252926 4.8957631689618895 2.664442735158814 +4.7716224941965315 2.2774150911741526 4.243310566055429 4.891101760326361 2.576956344346291 +4.7007654536318455 2.3897445132216517 2.734866873810015 2.617447723524523 2.3140019541625683 +4.907689747815661 3.3078039846252807 3.455083091296497 4.32754237685373 1.822311625440145 +2.0672069640607043 3.9780204910393766 4.800710148536421 4.084838377035533 2.0405099186518285 +3.0944269169897183 1.6050813508380046 4.434493981615535 4.106803238600076 1.5249693237812334 +2.6601085805846845 3.2040886840343252 1.7250650448553517 1.8135208523161759 0.5511250156022934 +4.219382138013668 2.536192158370753 2.6688341685523085 3.0154425682546613 1.71850687816911 +3.6187108780714445 2.642113563326864 2.185545089996214 3.3155628320698765 1.4935469234569043 +2.0317738909809786 4.732650156893957 1.906321925610782 2.0213870816201513 2.703326209302069 +2.9387324094218625 2.6344209262707614 1.0354561602196246 4.0840250610346995 3.063719605609243 +1.7900892604237284 4.8767040363773395 4.755037738938529 3.280792380051506 3.420612540662138 +1.6007141068149209 4.670573459630371 4.198927437445511 3.9901141852098174 3.0769529441279637 +3.123056130196061 2.6724963653306206 3.294437522596611 3.5441899750930292 0.5151508412529059 +2.8130808404475327 4.088281279712603 4.3449825077995845 2.3147316221728462 2.397510129048464 +4.293172940514053 4.282531154295533 3.9733047807377844 1.2636873552078716 2.7096383227931495 +4.623324521120606 1.2163603762343351 1.7899828483633033 3.710362825351633 3.9109159976351244 +4.532279464480567 3.661753966911034 4.507132561644215 1.10910209469057 3.50776648257319 +4.205841473462026 4.753639694349971 4.8624273880235656 4.011412281206148 1.0120818162774479 +2.2995174172834223 4.740979496509983 1.7784888203529405 1.9640456795425738 2.448503304529851 +3.339446242667503 3.3916948726916947 4.2093535739979355 1.7676150312334395 2.4422974901844143 +4.6705943359984 4.528319627755555 2.9832058815750937 4.40454025956627 1.4284374353345513 +3.782774688105901 3.4906423572780834 2.8612864751596225 3.2868474815168587 0.5161816238948042 +3.304176028389045 4.692501370430652 3.266774422796011 1.3963353351236951 2.329375374654629 +4.598377241150981 2.8185896002417494 4.676337149698291 1.3927112331323577 3.7349488894329888 +1.1184176270889186 4.416585837098673 1.2318434686061983 2.7403166854412992 3.6267623285001434 +1.9591214706257833 1.4368812533350357 2.8967796283251266 4.639386696051217 1.8191795505240291 +3.715764801557873 4.27660370377936 3.8832362819043222 3.6456048560148635 0.6091050556474308 +3.914141790507757 4.291203005285039 3.735073013409392 2.283369233120561 1.4998730030886624 +4.9023455885523575 4.376374346224711 4.24489606342957 2.5524686112145 1.7722743661089497 +3.1084821949178982 4.215398899406813 1.2489801822355528 4.0165602238089075 2.980732104230732 +3.012979380264249 1.3184696037016548 2.499861464656825 2.320174634511728 1.7040101935709793 +4.316210280273515 1.7317063680233291 4.651796345917272 4.383272867738153 2.598415927208331 +2.3670248394441704 3.5738193707776764 4.183829122086114 3.506454366350272 1.3839037540828654 +4.726483137641192 4.514377680669837 3.2890189147719897 1.1154057178017305 2.1839375116793747 +4.988077674563666 4.613671301401238 4.124580927711646 3.5776597517136755 0.6627992946734677 +3.7885388839584375 4.540358561900707 4.184047805639521 1.3979932464251688 2.8857118420002186 +2.350393223494817 1.7138653311747367 2.5916380981530094 2.3508800006655193 0.6805381835042317 +3.3861051546102674 4.767644511132132 4.540334043052954 2.198845682041193 2.7186795946511224 +3.995368282718836 1.3884708044559377 1.2140012870424357 3.0920976216199403 3.2129675230426646 +3.9240626344842715 1.1577371517857138 4.9809067807667935 2.239020479649268 3.8949322413211958 +2.472174126485466 3.7004250045901577 2.3718937666128044 2.116016705348634 1.254620775392363 +4.755611430777803 1.357107548076009 3.5829655016998574 4.9948361799075895 3.6801097066149984 +1.1768983860798232 4.500483830323194 4.566784243714464 1.3463921028001122 4.627866219592927 +1.3678945316965692 4.759335894227322 2.5232698220285457 1.8861982400303545 3.450758571107826 +1.165577105245616 1.5724128434296452 3.480665573607228 1.1786337344236522 2.3377052651005132 +2.9343939382589608 4.24911586892844 1.0035372287456545 2.9732686463277984 2.368192477902386 +3.121778504204307 3.774864456909463 3.7161435393907256 3.061604444988246 0.9246311089953764 +2.568014149360641 3.2172447844094076 2.4270402646722133 2.283518183969266 0.6649052602703096 +2.047069099288353 2.785430754656538 4.584917504187446 3.48959822584519 1.3209474840531124 +2.2620370939979333 4.87872847049041 3.9858722473400894 1.432166768225092 3.6562939479576926 +4.2951465149255235 1.367942236727215 3.3253278980713854 3.2794865195582243 2.9275632048320435 +3.752765424500035 2.7877011693730127 2.5337773114281053 4.4950734208266665 2.185870866557722 +1.231002278341157 3.2643280809494657 2.054131092955795 4.5453248721838 3.2156586052031444 +1.2625744493173268 3.824860857914799 1.1494603402454113 3.5223535167002273 3.4922676968624784 +2.8862485179447317 2.131172195038183 1.8217336252370546 1.9073178790126848 0.7599111250063434 +4.987307511604699 1.0689133864600628 2.3081230305902967 2.3180203913068125 3.9184066248562255 +2.296315940332668 4.007278493280628 2.4700723402419595 3.889082989289448 2.2228324452599604 +2.880292048751781 2.451419265835379 3.511378157717409 3.8251362746827433 0.5313906471590291 +4.315386013610124 4.175145913303159 1.012532111044567 1.967061334546972 0.9647763078839632 +1.16233671663377 2.3020541056645993 3.2901458591142148 4.961159440305788 2.022681911568385 +4.783353960655088 2.1606469451847516 4.590486404890951 4.266754550851408 2.642611284755516 +4.253852418642549 1.146058938069948 3.9734786841513676 2.53872200854015 3.422996791716363 +4.935112368316428 3.708925925122795 4.6533162864012185 1.2673881472719288 3.6011168485373237 +4.787436405709583 1.423476894192742 1.624783635308813 4.91445132964266 4.705118184941627 +2.8856656389408815 3.6874706903885013 1.3599986124722294 3.837949560515783 2.604444708846181 +3.969876889432165 1.386846102978173 4.408471366214986 4.773922774325567 2.608755024040996 +3.0216261886040727 3.59719070310135 3.0748682022416913 4.559808621041214 1.5925836109080707 +1.5872584040032272 3.4607040808707348 3.5735560760255654 3.8390166295043278 1.8921596152615678 +1.598074087260871 4.211414023079225 1.9010559481580445 3.7279126913212153 3.188565693252034 +4.617708471434051 2.1407075401777673 1.9021469551274834 4.714370415090348 3.7475504535909856 +3.2153584514617592 2.374700843795937 4.548767559817193 1.7473678028691557 2.9248155175249857 +2.5813926562219733 2.7153199500425393 4.957142703430177 3.508331213071523 1.4549884036051164 +4.702403548552764 2.8570303241910273 3.3089902499915183 1.1524855208097367 2.8382943794072215 +1.2222759068601303 2.940105126706562 2.545445749214647 3.193274293782025 1.8359245768044197 +4.656495276045282 3.158114448631831 4.744813480539458 1.7861315147352372 3.3164656004148974 +4.827390309543578 3.848934109850924 2.2328224203662694 2.7607308458391526 1.1117840799373988 +2.7453369476523637 3.0211314363652835 4.937880794491001 1.11987199438581 3.8279568698830846 +4.785094770720803 2.8486581502753614 4.492466106342097 1.1265181099382242 3.883219373084324 +1.90887285127506 3.306467187928236 4.4139493051371925 1.032215479720421 3.6591520323447866 +4.152806563515641 4.395609818795199 1.384560400971493 3.502926824309658 2.1322358510026227 +1.4004381023792352 3.9515160551799426 1.3223625503278509 4.349869446732981 3.959014615917258 +1.9794073674116897 1.1803705388277814 2.2058689230494823 2.9900313991530107 1.1195403710283283 +3.1146043317490815 2.7037822953312127 1.1320035161702564 4.874061087469887 3.7645410892335085 +1.7037720817569624 4.284003278738075 2.1235317136667367 4.661102425036709 3.6189581574090197 +3.8713234282040183 1.922764386527139 2.8518390851612523 4.778773458899873 2.740430334746017 +4.4870402375859095 4.844644221092665 4.797751339442879 4.000593300694769 0.873694195792002 +4.091755361477668 3.65459747176973 4.349171118355926 3.5782296250334853 0.8862605749214691 +2.856824260278052 2.9824377130564383 3.642004654029943 4.040919477620131 0.4182245521234955 +3.7812349193517134 3.999365423105497 2.3992052784427402 3.3758432111928194 1.0007010384496597 +1.9800398739766694 1.6513853861195082 2.4034059363312243 1.4489279709557565 1.0094760813292931 +3.1637883197991274 3.5033983239215676 1.6537289780391866 3.7743040262209475 2.1475971432908736 +4.449785210170978 3.8821097215495897 1.3884997726993 1.6975881470008365 0.6463676071013293 +3.5551101614896194 2.621642300364924 4.1399325231824236 4.292065490196931 0.9457836366766719 +4.937781714563359 4.359050357535091 2.7255266774667155 2.993933302514182 0.6379436495311726 +3.6452409493109976 1.6800082816774795 1.402431618342817 1.1645527800368134 1.979577171935403 +2.5892097752518617 3.653260722542579 2.4823859816000113 1.1654764596128602 1.6930608694109908 +2.1471098106124895 1.7301224531784989 2.490747415897755 2.895421681291701 0.581067739021805 +4.734419671535377 1.3623370658503147 3.4126086311490136 3.9944832315545504 3.4219174668832766 +1.1722021065653294 3.0626711809831857 1.970134510459209 2.5611616302025384 1.9807035057278013 +3.664601496451793 4.4424853102335735 1.487891285325393 2.785226442449567 1.5126737049522918 +2.33226814913531 3.0103386794779197 4.368867465148654 1.1423324935251138 3.297014947983831 +2.859011091629575 4.056542168092658 2.4391728083619 2.6419529984902215 1.2145783155496026 +4.113801587334764 4.56159841671346 4.364828794757981 1.1206713159969106 3.2749167542707096 +2.214755911208462 1.8674680294704893 4.070196343106494 2.165374175840141 1.9362221881053145 +1.3779819807911071 2.824232451654287 1.8375344588599778 1.5106506013574275 1.482731762918606 +3.4853916854903333 1.5948416976618174 1.75510830971953 2.031716769809298 1.9106782818338712 +2.755588274765213 2.8828250339630084 4.521989165052297 2.1235138294545752 2.401847857038776 +3.227983221520917 1.403170802433713 1.9585997016105083 2.2063547321974903 1.8415544846775644 +4.590896226199076 1.4725210962151505 1.0276264356527274 4.679647118558901 4.802240989337867 +4.035633762303281 1.2135061368901021 1.904311073754846 4.542271984636483 3.863061234495216 +3.7009882015513407 1.5810343356109104 3.802994528851361 3.5834010372818863 2.131296716849967 +3.456254045249033 2.762155484506354 3.44013255934238 3.48699528723573 0.6956787529389297 +1.2964820153047145 1.8042637828802794 2.0240193458557587 2.068198430748195 0.5097000245478689 +3.0643284158240562 2.116617009036824 2.6735196211872103 2.5189287957085136 0.960237071705118 +4.663307976079177 4.294702028622084 4.69450677030126 4.9594121469256205 0.45392202311105756 +2.526226167678726 4.043743287764805 4.822901414926704 3.7156505995370086 1.8785267040783566 +3.3356933887881404 1.3266567391493305 1.5118467494182122 1.9870554440013004 2.0644736769935568 +3.76757011998953 3.079142059523954 1.0331721758323882 2.682281355309185 1.787035052893767 +2.8937380489488773 4.675081044825077 1.7349769405511553 2.63405669611584 1.9953764747093332 +3.4917842175476372 2.0356541955885334 4.675412932715297 1.2416296439696834 3.72976974020103 +2.5963738282699187 4.373989880089945 2.5646702903416996 3.9473763641671455 2.2520645892784685 +4.5630301082189 1.517377400757331 2.836015131414015 1.5276321199760146 3.3147950945854188 +2.888952701931234 2.6008894128286673 3.5419414884192086 1.952661761940111 1.6151750702403949 +2.5864434748473832 1.3636180646029485 1.4373149690662794 1.1542361931468355 1.2551635659608356 +3.527944562489692 3.055601422794038 4.7248926175641195 4.911163397802902 0.507744862296324 +4.6313848184097255 4.902873870590646 2.529544933140642 2.206863782979628 0.42169826905422514 +2.994572208002458 1.5940198692604608 3.0340363807652846 1.0088951150261898 2.4622639987935946 +4.042744892922881 2.9217248600352006 4.164226820933539 2.687689333150145 1.85387401593668 +1.5970601424174404 3.6196632275471607 4.943271165086692 1.096620171532718 4.345992073875197 +4.994933084237013 2.6428470093226095 4.889025600182753 2.559252316477163 3.310612097071261 +4.565324709600704 1.8233017696438436 4.053226178271421 3.3887264928902834 2.821391435997723 +1.6943554515783643 2.2683189461691833 3.2997486516376298 3.2764223120380582 0.5744372996611724 +1.9300351902583879 2.3558033091149744 2.0879667972371663 3.0318401212344606 1.0354590010176055 +4.0269013295185365 2.8038354712172153 1.6560990659584256 2.8968915456202686 1.7422560292126221 +3.136226425280307 2.3882000548019113 4.71476631572733 3.814099664739808 1.1707877122399943 +3.868606188524411 3.761184303750871 2.734565775783822 4.1527703004752805 1.422267040742921 +3.707258096389532 1.6566099336745514 3.392371900924383 3.538644451778376 2.0558583478390866 +2.350351564602619 4.365819759658981 3.2899404926580273 3.57763331538043 2.0358976412211236 +4.123359917715219 1.8851888798553729 3.065923085475973 4.512485866268935 2.6649490564530662 +2.5779747741057255 1.323177737184043 1.9844473192077206 3.262878881875036 1.7913410798313725 +1.7978316989445333 2.8603550829099995 2.190952884305964 4.276793846743626 2.340873439991214 +1.0838906191480726 3.3830895236258884 4.6383579658066605 3.355182286523057 2.633031603733029 +4.579857715691338 2.228396956225002 4.10404141444452 1.5212367803376265 3.492885265976259 +1.222525759631417 4.203249719283447 1.8275873055998448 3.9864409990283347 3.6804027759572056 +1.390559247424589 1.6994534814979265 4.496437668319153 2.3776637830125487 2.1411722081376356 +2.818656323724849 3.1570788510503527 1.8679839637649094 3.402096302906206 1.570996650571529 +1.9226470347570248 3.8364110147360218 4.549552664738036 1.851757258979248 3.3076566663422424 +2.9603669568968205 1.2072616527479552 4.761413044432862 4.620268691637518 1.7587779665895584 +4.172678190257029 3.078803742015047 2.555550949514307 1.184920885249647 1.7536214191161235 +3.134401692833933 1.3170636052398583 1.1281589490353934 3.400069130658553 2.909345905522935 +1.4490619236468034 4.8418114316364225 1.0529397514535543 1.9199792191645302 3.501786210283594 +4.395303491673066 2.0063893612456756 2.046448558745058 1.2066648877469275 2.5322218182123684 +4.265533085023595 3.1468680890408027 1.9552849150700617 4.872523147663849 3.1243703812038843 +1.1129257560289219 2.6282516096595123 3.4616940284954456 1.69918461247248 2.3243605323294605 +2.6739666322157456 1.0918166927086053 3.83997786114731 2.8999293702878695 1.8403504003992173 +4.945059519984215 2.805222608886636 4.239024651082502 4.403896503258485 2.1461791010387667 +4.091203226717817 2.381957075968864 2.614062633735384 4.133734624126472 2.287121632583043 +1.9829233058139693 4.326766250503974 4.06165414831651 3.149562593192156 2.5150568093588417 +3.0051408244948705 3.6033867253457985 4.857022812082484 3.9563015992756707 1.0812940678118577 +3.9911573060330165 1.6186323473250455 4.694594686788516 2.3017325486155005 3.3696682169012124 +3.2542659257637254 1.9349474952651344 3.7228393905076547 3.735694523753669 1.3193810577327683 +4.888667374327943 2.0742188517342792 2.424467687360297 3.12270900588962 2.8997692020626786 +2.0913977617869786 3.87267596525266 4.571576255322117 4.51184809287603 1.7822792967240326 +4.015252720751638 3.419937078607681 3.0324353452011565 3.4375416894444233 0.7200776790926215 +2.9428315312782782 3.793831206576669 2.063788730620642 2.0292003961015554 0.8517022955486094 +2.1765307745255775 1.7176611090313751 2.3165237001944194 4.765247358883775 2.4913468097669065 +1.9489288969985834 4.656709189756487 3.20550883003053 3.604782948350478 2.7370593591313015 +2.112442290650246 1.1524137854897387 2.607728699533881 3.5326430186104685 1.3330871045635486 +2.367202998496553 4.921427272583125 2.938356185712562 1.3915458839430714 2.986081672023272 +3.89157239857803 4.3250189263470595 2.541110246777513 3.436026909891697 0.9943599581411423 +1.844314676172285 4.319414160324596 4.274161140633785 2.582006358320866 2.9982503670900336 +1.7518081357514612 2.2009036968337004 4.697814982145536 4.4584735501387955 0.5088920750599367 +4.010505105561335 4.816296599492414 4.503903794551352 3.3617138815016485 1.397818918588588 +4.122211004038471 4.884769093724733 4.447442864905513 3.9728473294899613 0.8981847039347396 +3.1987648410795106 4.324903652082721 2.574808400937748 4.03475000093864 1.843805330576113 +3.2309470110100422 2.7642628911930265 4.905149717803292 3.4220272631364126 1.554813906300845 +2.1151358275395977 1.3018133621149302 1.313312976446749 2.7672274907094554 1.665941429807249 +1.9438716470982706 1.9357703910894437 4.393437672502556 3.6947375416741837 0.6987470952844853 +2.1103107525937204 2.586305179489019 2.6721248059824725 2.026902510294501 0.801799541835888 +1.5321854245131377 4.996091019884715 4.848518248729434 4.1323705491125216 3.5371612207126093 +1.8750261513510238 1.79461810488108 4.591367845196359 1.3509756615287052 3.2413896646209537 +4.060705151007544 2.9882111094899337 4.486531994644192 3.025648020291341 1.8122983903352559 +3.523644375421022 3.896350375028761 1.8155820445554682 1.0212042049583379 0.8774656199456525 +1.3732945588305983 2.0322589837238936 1.6679633968073793 4.015563636042684 2.4383316010199696 +4.470469715788826 2.3190308246927924 1.0387891012957988 3.5717103151215666 3.3233084686151435 +1.2071925062457947 4.09524043626064 2.736996014436903 3.9485694773204743 3.1318893821504483 +3.9875675195372597 4.48839757731314 2.971106329033232 1.2578121057808938 1.7849951938875426 +2.5997733242004326 1.7528856182919976 2.7351774370162887 3.2245670609021055 0.9781211532248718 +1.8036174388119486 4.136217409370621 2.4301205942277493 2.152762204072981 2.3490317791038002 +3.678219856631158 2.610121036129629 4.698836675184834 2.1964659423504354 2.7207892926323645 +2.918428709116372 1.1132542658148887 3.688790380881691 4.883059712195962 2.1644708375181807 +2.7838207270488837 2.9570893955616375 4.291456968264372 3.0957544739283622 1.2081914113457097 +3.2547606522866284 4.21580730273869 4.522881750095523 2.7207570285457776 2.042367297125048 +1.4391724012326157 1.0546130223662846 2.6751937331337703 3.1951012394191416 0.6466759087564123 +1.9316957243991797 4.9036088812205865 3.7016911025445474 2.4610189276438383 3.2204868043916957 +4.611979635127584 3.0850853683980985 4.78190182727856 3.7290785456344864 1.854681364586157 +2.750961501716316 2.08863494730965 3.109941072025835 4.970355720150149 1.9747959711392262 +3.71083688782445 1.3547314755337339 2.421190398714841 1.998043601956899 2.393801563503565 +2.9505780604359826 4.983333623889566 2.8952743271079813 2.774504742213303 2.036339969992026 +3.1679651363520054 1.493429062406952 3.7204293275194966 4.443895350026608 1.824136548799342 +3.2244162726197954 4.897513840690068 4.0206156959883455 2.4764423699131304 2.2767799044362746 +3.968831535838157 4.6373406121154765 2.7648876308357635 2.6339651939967346 0.6812085360101005 +4.759428610669826 3.642555400299015 4.270052549040695 1.7096663162597547 2.7933820771706435 +3.545493001376388 4.491443534674698 4.85246243143804 4.237845412966264 1.1280853207282207 +3.5220496250107174 3.9102170547472483 2.3452353502288297 3.2049509878055207 0.9432841199777303 +3.8720491510531567 1.5340817894734897 3.014847625817399 1.8309322923677827 2.6206386436494644 +2.815910137616346 4.760384692020425 2.0946666446218125 3.2373795111313037 2.255387768879507 +2.6803625915324196 4.9416183684232475 4.962487083220983 3.701153711789002 2.5892546345251772 +1.0898221909677348 3.2023484349164257 4.310595792639594 4.7950316568525775 2.1673590468373587 +3.855384198820378 3.2681916138319163 1.7779126487841643 2.346881402184995 0.8176310746369213 +1.3736201015124707 4.401662609104246 4.942137843183032 1.1936078415231224 4.818767332122098 +1.641462901914839 1.1147354560109548 2.572477148581867 1.6870577212641003 1.0302472346675584 +1.1411088029519463 3.256369562116307 4.790424129339255 1.8474455906119083 3.62428624127156 +1.598630918672756 1.6913515601237257 1.693323445445765 4.181326535390374 2.4897302048465013 +1.7718010473621342 4.521986983685174 1.6569313414495581 3.168713845125753 3.1383130855238934 +2.0202711344104305 1.2971291716399862 3.649096930776599 3.9862241665157354 0.797865321590431 +4.666686443747144 4.772679156138212 3.9706809799946448 4.788718951067931 0.8248760980885037 +3.021493874299457 4.498378992491853 3.570931992356656 3.0105391142691724 1.579629649680374 +2.4912758917022306 3.6493698118558573 2.4785392199347913 4.755774969329829 2.554796310123289 +4.240635708248145 4.880425487473914 4.9304646802034755 3.767598163146386 1.3272488455803022 +4.242782001588444 4.016392524225923 1.2182237408753118 2.007014500762338 0.8206357647236854 +4.745549550296737 4.785961671385785 4.255016647188105 1.9059763006052113 2.3493879393163652 +4.374779770620837 1.9611151077050133 4.531208619071762 2.3659097292470275 3.2425755792710187 +3.9441083844477123 2.7341582996076417 1.2306554644286138 1.0724891386314015 1.2202441536105322 +4.724047165849951 3.1122061821426694 2.381634241848647 1.0111750656823864 2.115700761047451 +3.581656449785223 4.895810218970073 4.118665738954064 1.5630361897395213 2.873715803951615 +4.3921284544238155 1.49878282846956 4.58098341180081 3.845482369241993 2.985366090588176 +3.890471391488031 2.4418316975401173 1.5812759856134373 4.911789355920885 3.6319245962269346 +1.930249497952568 2.1338030747897867 2.6967444669632683 3.0819727513918087 0.4357004587637956 +2.746290820559264 3.5272446193435254 2.051928848707174 1.2181632601879717 1.1423895537137672 +3.3034696977841636 2.90717158517735 1.5528269002677741 1.9369175141297301 0.5518856708708578 +4.346572510304619 4.8376799923312905 3.9829861126671178 1.986077367966907 2.0564121896066334 +4.595481008551307 1.2049628036970477 1.7421371520556561 3.9356457224380357 4.038204247656265 +2.866109762628829 2.3358516189682725 4.66306103535496 2.0756569012177293 2.6411803899523356 +3.3500396968708652 1.0857754242311644 4.020542451899569 2.313214461056337 2.83581761837206 +4.090343395840612 2.757671536491412 3.1070779094471663 4.5682245494779705 1.977615682678149 +2.9522230447622846 3.22764728434584 1.1629843948883831 1.6507341754334437 0.5601413751651759 +3.9178772541008993 1.741611542583 4.946284927502486 3.5243894835046756 2.5995997962744646 +3.172329284392566 2.1487166840858407 2.361429962758214 4.77486940671881 2.6215401399123244 +2.6033872127039444 4.88536813610285 3.640883409538272 2.5808353120883547 2.516175451685297 +2.9437598251527684 4.674118198396038 3.8706089494114355 2.0242787404845877 2.5304298726202537 +3.9720501702087203 4.689153412001046 4.367652738294938 4.981805524337548 0.9441507845640774 +1.2332838706974338 2.250407693422688 1.8735057700967697 4.0771708377618845 2.427072434271942 +3.9248210557433607 3.139429677600907 3.0143783309311862 3.6660748302027293 1.0205625625228893 +3.967858265589918 2.3870559487886105 2.9001470245697907 3.9944459542816837 1.9226091938750778 +3.891816242502843 3.8445852923666464 4.368152489836439 3.2097443786972555 1.159370568284282 +4.4418600906034325 4.21228813715838 4.88884406446739 2.0094321610474304 2.88854914989604 +4.6285076993113865 2.754354035510964 3.6040676578809805 1.0316076413203552 3.182766484104613 +2.442062504930648 3.4368860352729795 3.0784732219813415 3.6559616671990525 1.1502898595061808 +1.7082534087674341 4.440564047079539 3.69511596045701 2.4370885217653746 3.0080150366536627 +2.614984812877297 4.577741934060803 2.6228689845644637 3.2562251778593323 2.0624149883914087 +3.665816795376068 1.315037896634776 4.866870424148555 3.6724288983677082 2.636826120410104 +4.186596776190975 1.746797611755563 3.5119339302903216 1.9972815589711037 2.871722787582859 +4.846392961543007 3.4729110462278476 3.996290753657765 1.6255196205711693 2.739892030203836 +3.180374608426631 1.929169799939936 1.1163106766174389 3.670310104772145 2.8440159197505896 +3.7515969267832205 2.8015323422054257 2.81230042705637 1.8449293540221978 1.3558869819466015 +4.721992212198679 2.622008783017291 2.853092754478728 3.0511313064898906 2.1093007540223137 +2.481380183882231 1.1514435438431856 3.9404245179777906 1.4640851704155202 2.810869621808076 +1.7095738245364882 1.6083081351037976 3.2925263782526573 1.7053975343982715 1.5903561572336045 +3.5782031481814225 4.647878926590714 2.390286862637268 1.3358320559896462 1.5020257022360826 +1.9770596109072347 2.2222566680093205 1.315348523551866 3.4720344563590855 2.1705796022215056 +4.737154458696391 3.923862273277913 3.9791114672640093 2.578458828508367 1.6196518123707664 +4.332766865409462 1.9648257463591943 2.4214279951606614 1.1756751617301706 2.6756392255476316 +2.935723244851786 1.313104452561738 3.8283200993434816 2.9691259300766806 1.8360572882115855 +3.6706704047538086 2.6630879879004583 3.5229910086950205 2.7311453411347957 1.2814998587537716 +3.041489829649818 4.771466767311177 2.456644043841529 1.7314180112545094 1.8758392796777876 +4.706304222918623 3.7468243841546838 3.9484589049642698 1.372057367278753 2.749262891100589 +2.4880718438699647 2.322817012683053 2.9303263280964065 2.951069859874933 0.1665516536731516 +3.2054094239634288 4.021538794936245 1.9453267324562544 1.5818074151752728 0.8934279177420618 +1.549113371114006 4.1451684548486245 1.229513582252053 2.291203526622992 2.8047615826951717 +3.1598058477041118 2.67823413274334 2.479642855312887 4.143172332090995 1.7318318731216098 +2.445323908103914 1.7467712531107837 1.3584395361811215 2.600455658043048 1.424984160881408 +3.911074584007256 4.627256679860583 3.621695719612162 4.1543843911790095 0.8925659724841164 +1.0791929510527254 4.72865304053143 4.433153961752101 4.409788266697023 3.649534888229365 +3.450040768760822 3.2090065376208847 2.6805420995290747 2.8850610038663715 0.31610992204065524 +2.542277115796665 4.26315263800924 2.8963928531228382 1.5853935322623292 2.1633612232466213 +3.474422847166609 1.9171980043893044 4.849444419706463 4.3735524607594165 1.6283188777242796 +1.9633673656299475 3.395860131542436 3.7787481764921433 3.8930570171002925 1.4370462885491166 +2.9044002035317154 4.939429045953187 2.670985769376026 4.715460534009113 2.8846523972064273 +3.3205341178393692 4.144548817762211 3.760609218716575 4.600851223539268 1.176863140878067 +4.185995703628621 1.8797152741901302 2.2751441523583527 3.103511374121457 2.450534976959626 +2.3787630249379506 1.972308645652575 2.496472877983673 3.7614682966012465 1.3286905477061652 +3.6869730805435896 3.999653837191099 3.3898074258990722 4.871892133683797 1.5147093241368104 +2.197707836400433 4.038460020434198 4.3819247751746015 2.8839805840070785 2.373226791285991 +3.1118039423937343 3.365510557773271 1.512318431725579 1.4526413644135783 0.2606307714954267 +3.4820024512540777 3.2017481056466894 4.118970168647055 2.455757009429321 1.6866595718243973 +4.646139177048507 1.3707265527650372 3.5309901758724904 1.4505402464765216 3.8802834649081013 +3.2046847729184895 1.4382805619026184 1.12633538868829 2.8478262682903996 2.4665187380694773 +2.49326449711418 4.687325736908663 2.3241131738927434 4.915187997074877 3.395228042900334 +1.4556338054104665 2.024175397095396 1.154188232132078 2.6229667547123294 1.5749761553333623 +2.847752865147774 2.8956820909740526 1.3386449098236581 4.9049552600255115 3.5666324067171784 +2.1625350273816526 2.4227265368150483 2.473618957092167 1.2734254056580676 1.22807336201272 +4.801037686110217 3.6714813418213694 3.6208655263269987 4.505986426520298 1.4350388645894514 +1.0901136070666317 2.008160603751339 3.031731307093563 3.871029299642784 1.2438775697065056 +4.4303766215548155 3.6691867900949693 2.073546776056367 1.648645045475996 0.8717519372895385 +1.9724723003383238 3.3438248465930323 2.291183997498456 3.954234424245038 2.155538106371878 +3.8102682017203766 4.320347123377981 1.1196711686740746 3.7574463587382496 2.6866407388479536 +4.816606855045606 4.693066389926156 2.2694574937010366 1.461619241372992 0.8172300095116181 +4.390600420159586 2.171480942752245 1.0621469802716619 2.822426079328106 2.8325030911869447 +2.7962867320145954 3.8997051763004924 4.06408217367019 1.673707121676327 2.6327599876147034 +3.384219100760741 1.0510159472409937 4.065601143513851 2.4455587714061657 2.8404883810744215 +2.090963187175608 1.514093350871164 1.3109190182545665 1.1451822025101066 0.6002062146721149 +1.1891393641370902 3.1862898732493092 2.8716800780954994 3.457761577857313 2.081370144979084 +4.443580180467507 2.6871355546475493 3.6223376905645126 4.753426044017954 2.0891286669063316 +2.0011581825231626 3.9939060372702446 3.5077864370917653 3.706528839970941 2.0026339044621424 +3.5227591727330396 2.0732274398270345 2.8345120055488158 2.7470662591420747 1.452167002540038 +4.208226702024426 2.382921046779949 3.801776518036604 3.3095653746909375 1.8905058964999601 +1.2547170302132375 4.155667066193256 3.526480851616366 4.816975259679603 3.175041248313942 +1.812819365969451 1.3830840946921938 1.387300941625628 3.6669472112676544 2.319797301074502 +2.229717949033952 2.6255746577796253 3.259459228852159 2.0037777481608434 1.3166011221361207 +1.080309565071837 3.220862292208008 2.1096803006812714 4.8737129119024765 3.495975150590234 +4.360820037891804 4.597744647158365 4.411975272228449 1.8116123399546238 2.611133977799653 +4.531751551234089 2.3954374491825616 4.7794850327716585 2.038979390669778 3.474796269857625 +4.743229336296292 1.7684619192536641 4.013054205647082 4.540103155745507 3.021096122485731 +3.3535860224427196 3.100620806020256 1.5819873196032197 4.503955435938222 2.9328977264129046 +4.489889120242818 3.4158742903763004 3.0962032690025296 1.6540165874556836 1.7981685903174676 +4.21384248269346 4.0353821835243 4.912752718170738 2.536180727584713 2.3832629953107505 +3.759646512978846 2.907352938265121 3.2598387801745035 3.9053843235441144 1.0691741607720728 +3.2066234730456173 4.820176402621137 3.804089356787997 4.5466759522276075 1.7762285630707368 +4.415957634511809 2.3227513866463645 4.486504012664701 4.687883431262202 2.1028709105262737 +1.4288132078795592 1.479787048780818 4.612108331788301 4.500191655292706 0.12297835148531798 +2.9002648947494545 1.8819685363049938 1.8619608516245894 2.63097770503624 1.2760542286487695 +3.6354895441471413 2.0274356527854573 2.8513957049605554 1.9801424788987516 1.8289121087265388 +1.342151728255065 4.771852710209263 3.7371648114191123 3.5775663502464368 3.433412368828754 +3.1305629402277044 4.387728741826992 4.683587646133482 1.6018576213149922 3.3282917237794147 +1.5288262976190445 4.9929794952985045 2.813965903300582 3.7457939493103622 3.587291580611093 +1.9672236932442426 1.4250476853814082 3.240728590302853 4.199746761984144 1.101667226124571 +1.594209299489537 4.600992667601681 4.753190783187035 4.259095884147914 3.0471094486434667 +2.154082386153944 2.514761348837173 1.5109122899032905 4.667839933886599 3.177464628200958 +1.3065233850338296 3.827086650175084 3.5730712797590063 1.535818061522431 3.240931941401242 +3.254466447290349 4.566238508042726 3.894898776735453 2.7111316488835184 1.7669325262593805 +4.376892888802258 1.3452206867855452 2.134334404500674 3.5717030304929924 3.3551549751789276 +4.081977778576533 4.363320410325499 2.815866604869432 2.232204759370645 0.6479311895027775 +2.6431048833298094 1.549455127954602 3.1806588408092176 3.984977795051621 1.3575709070195356 +2.1308942408398424 3.6761489173713224 2.9838626405266475 4.873543850692189 2.441046310784602 +1.9484999280208761 3.47912024147844 2.4280773112181615 4.2531219874751 2.3819291791114874 +3.8884715380565997 2.2222816394012272 2.255279676115924 2.2215012415520268 1.6665322562203193 +4.756031835648955 4.353285281252989 4.106966256955513 3.7493862403142453 0.5385798505133582 +1.6279200126517286 1.160664671132869 2.447375802589922 4.1497493457446915 1.7653337459560527 +4.5362375454132255 3.925161374997667 3.056741326658829 1.6334522789346901 1.5489240780042226 +1.177861141096006 4.569703318833567 4.914794570017273 2.4690777541984468 4.181641316738974 +4.9531674379658295 1.0976952411403875 2.0770274550341874 1.3794581093589189 3.9180695313533964 +3.2618783639290965 2.8049372325207975 2.613426888073995 1.4615204418812056 1.2392270406802772 +2.4473035629633024 1.4628678114904567 3.275410888756173 2.90243438481101 1.0527227656287588 +2.1814223340609917 3.659306908731334 1.8796000048031543 4.648149343366565 3.1383129633783238 +3.857963029938892 2.4526484542206966 1.8376837620112512 3.3515923358700763 2.065630225071582 +2.6706961609103312 4.160389141601561 4.425595041705897 2.4767066180238277 2.4530289979294375 +3.0555772412329345 2.0145343806738234 4.556564146962712 3.042256314709829 1.8376339266414088 +1.6822892777145655 1.3980816226943689 1.3566754123723346 3.1762956409347822 1.8416817769000522 +3.8257642851103766 4.782748056594056 2.02123422475094 2.248243575497672 0.9835401284185515 +2.7155701349596697 3.0278024865542794 3.8479239410478514 2.0034588209678765 1.8707059150422165 +2.710886603021405 1.19393828861502 4.902406278304547 1.2637674292096084 3.942185290257589 +2.6481047678981 1.5714588101205962 4.50495960717848 1.070327807028138 3.599425248703273 +4.888355794253995 4.661139611483261 3.744349156229763 4.1810944327237305 0.49231456433127757 +2.754263341845272 2.666270585017092 4.961639515158453 2.5961992625055523 2.367076321989817 +4.4676417381637 3.1293008577520927 4.83718914000564 1.3371532483756523 3.747186618635245 +1.6326905104983833 4.994590231058406 2.882856484741083 4.462617692428704 3.7145679700896856 +1.1291171961299304 2.1861842346589904 2.1852845396326885 3.899191255343251 2.0136700211559897 +2.2362109226487723 2.67940361711664 3.9313378385671016 1.376745196676755 2.5927520765453047 +3.3012906709564445 4.980237290067963 3.7634313755240987 2.6840000993130717 1.9960044162998651 +2.27904332505038 2.345478443518074 4.345404290925489 4.841140681020779 0.5001681651510075 +4.798545220657603 2.2551843137126175 3.894060432407006 2.836256596906283 2.7545659653339327 +2.12571101779749 3.2068549711871954 1.269430760360926 3.2637402452244424 2.2685110908628383 +2.3020957873497445 1.1501866255571054 2.6630697739481337 1.3164619758065066 1.7720742871103519 +1.0516058106059694 3.007547704202833 4.956231126678827 1.2944504337116838 4.1514270479576325 +1.4657126419859097 1.1110690332303266 4.946631613446377 4.6618843513280925 0.45481105144339035 +4.05305480258328 4.201463873529335 3.59514420992921 1.5177531416275127 2.082685502662065 +1.1030014431720057 2.1130208023297112 3.3353720422218864 2.9105167193228616 1.0957377201086842 +1.069502760081635 2.275270615223533 1.5044989329463374 1.183895107233886 1.2476629887733919 +2.765676674029611 3.0886855932609527 2.614324595833798 2.739738506309689 0.3465016750953078 +1.361914728344995 4.68938434332804 1.1742159321268644 4.370807585442861 4.614136131139275 +4.403234161746511 1.8191408878371842 1.1683676683690578 1.0309115812305563 2.587746553307501 +2.625833772884063 2.751191749749059 4.0200465617632055 3.361414187068562 0.670455984654914 +2.1589384702496877 1.4739041315782195 3.2254609078713106 1.5312516723084557 1.8274618953689645 +4.870276503798623 4.862422638455137 1.211608806394267 4.3602452408925405 3.1486462297074334 +1.6935502656940402 3.9453986820908584 2.298999200312052 3.6890497190196734 2.64632986133403 +1.7547168831141007 2.1832023766137683 1.553842782175845 3.5668100994273733 2.05806638339546 +4.429294014025207 1.7201162732489643 4.512425621294581 3.527556219383474 2.8826397225352682 +2.1555196276861435 4.1185329735489615 2.2241706325568558 1.03352524086685 2.29587844730251 +4.434154082114214 2.399404165656235 4.213776391334681 2.0750536648728706 2.952006457176202 +4.3905031375711525 1.8187500886195065 4.667597284087199 2.846464625464336 3.1512597330424645 +4.199790038162603 1.4055149289423254 2.2122602418958324 1.810185113129124 2.8230546922050164 +2.396585217354024 4.721491724166183 3.135034800233058 3.9336477637545837 2.4582459052995795 +1.704160669010919 1.052119158458876 4.775322337739558 3.427970824519136 1.4968347375914122 +4.169564495460893 4.264080797825523 3.5468061954937307 1.6278701939030396 1.9212622698667536 +3.0265215843473117 4.7903948787087485 4.668781716188182 3.488423596157447 2.122379393530751 +4.199735048065036 4.6841796944385194 3.744471657913868 1.7068143710525177 2.0944531109812625 +4.976628456374577 2.9087482348494653 1.3402200809565405 4.34291846093903 3.6458642558005656 +4.854155216305966 4.731441368009584 3.7967671691982745 3.0003981249543568 0.8057681696329773 +2.039281388697773 2.2835170554063393 1.8930140956755306 3.2849291981396167 1.4131803541516508 +3.255265290412196 1.276878220781112 2.4219369720066606 1.0204529688923403 2.4244943407376325 +1.4240833506657231 3.070457268375649 1.2927332494156163 3.3519927677686914 2.63649328480906 +2.7091784559413217 3.2207713419953237 2.211086958342525 3.1205984183936257 1.0435221018384553 +3.7178999724635933 2.6558979504344573 1.168068898013329 4.6449731930750655 3.6354795793420056 +1.341597963162949 2.1860214928596364 1.821409076403525 1.4924215710721396 0.9062471385718028 +3.9634322505215533 4.718384006427172 3.8809840502760014 4.561371867576006 1.0163069101778466 +3.753270423978151 2.7536246365066632 3.0311953074283773 3.1421280629216035 1.005782171571365 +4.461785607816513 3.3880628448182386 3.4582104028107414 2.9256549024901815 1.1985390826762095 +2.850528058286831 3.250344357386872 4.060143015966613 3.834001956146603 0.45933958240344464 +3.988027606793609 1.536621910093959 2.4084593566217385 4.734807003526631 3.3795389129393714 +1.2466588732305564 4.028157864353078 1.1068420490124677 4.257372785366842 4.202687301992529 +1.4401918378972658 4.1335476133024525 4.081611590543248 1.9504144158888037 3.4345548081466917 +3.3680865282829258 1.779954205027959 2.507311131803178 4.602533664318566 2.6290914280274493 +4.86887848478776 4.182379644781929 1.303085396478958 1.924431232016158 0.9259326674595578 +1.1370691704963463 4.112275500373096 3.100693155763297 1.382383059879038 3.435759347066737 +1.9314641828696084 1.6135383880870875 2.95650834548764 3.624614276762699 0.7398934696245206 +2.746248021965031 2.17469561934024 4.899331054984612 2.805123171903373 2.1708014203297763 +2.504655063845879 3.078520203566817 3.8154415673098536 1.6898928104664463 2.2016536322286226 +4.824944253656447 2.8914528157613697 2.182896088454875 1.4338583136743797 2.073510725427214 +2.0860966894663986 4.741380894913097 4.64181469417907 2.622851274079927 3.3356779675791746 +3.7746265598580635 4.384050683146589 4.976368995408624 3.0438311439668913 2.02635147723711 +4.395570595122202 2.7877471874951065 1.6855980958155148 1.5738708255399234 1.6117006834511305 +2.9489798067190853 2.8619608124620406 3.6389223224933662 4.252121231773815 0.6193425608693784 +1.643090878690098 2.266080348002677 1.340951605703549 3.4794756426413307 2.2274202422163256 +2.861527322976171 3.5162180490470374 3.9639128121478215 1.0221417715435273 3.0137413296667104 +2.1961792253577412 4.770841915957591 2.860747107508735 1.8696679296707202 2.758826907783621 +2.249941695190212 3.4694343340085987 4.393772284905406 1.707514816669725 2.950108723722603 +1.5156422865606691 4.545613418789417 1.409301927615589 4.33801963214844 4.214037547884894 +1.0573758282331425 2.452784403173601 3.780690735586992 4.090397545713591 1.4293646837865257 +3.259552514317759 1.847865623898537 4.974189746063713 3.5030104486392544 2.038928248308855 +2.38351588091126 3.055285590442271 1.346052948496176 4.80094188988749 3.5195926099466925 +1.8965862553639692 4.101219087851876 4.286743177945932 1.2347220028270183 3.765001883061666 +2.3370790945448827 1.2220527540499804 3.916103041954873 4.210201251308322 1.1531597880356215 +4.131541832372175 4.48943100046604 2.8112789958207736 4.532607046768625 1.7581396177831976 +1.7639287858042754 4.694371893411135 2.8913225775870526 3.162436124837842 2.942957587601876 +4.63215175270655 3.2075736331050937 3.3343478447758383 2.4675012538534546 1.667586828636212 +3.520976855024029 3.7413361291340976 1.5294276137704106 1.4512321589481796 0.23382202385825832 +1.179147166321624 3.910458179952196 2.835330418997873 3.8747625884281613 2.9224098083647028 +1.897578005083882 1.4963239292009392 2.274063514169323 4.6784383793961055 2.4376265763949534 +2.6929577029865506 3.1636247340951025 4.070943315521095 2.626274627481588 1.5194061578045317 +2.5305006187323893 2.5151487805063844 3.5114080521731625 4.029814250106124 0.5186334591908109 +1.299045583577548 3.1268514553300197 4.31849215862467 1.2884935008801937 3.53861076847202 +4.0347927110243536 3.53469437309344 4.018267067183713 3.322238776680624 0.8570610997950578 +3.1632235513969653 4.828487327367865 3.8353746816364453 3.144274646060137 1.8029760682644775 +1.3776625485113252 1.2839149745897336 4.99129384243701 2.621542055057113 2.3716053932740158 +3.0416189138910714 3.2777453547238404 4.190872233193518 2.403556369315009 1.8028459982295033 +4.57136628686888 1.938519149897799 2.8489783051907867 4.662531749387396 3.197007998365691 +1.9278434428802749 3.254993471991192 3.386468295797413 2.5323808282927813 1.578224509351437 +1.708835525175409 3.94627404039828 1.8561236159676824 1.9261668029594312 2.238534600457783 +4.242896947771021 4.541798457946497 4.081233935424345 2.453033862660269 1.6554085869458703 +1.469379516071922 2.1776585132197956 1.8340994622575555 4.268165260171521 2.5350217842013407 +2.4806116458361096 4.736892961689332 3.095313336878048 2.581726931231003 2.3139957589273576 +3.64651438292635 3.6857726130089135 4.175218109355916 4.490437959717419 0.3176551002127052 +4.9574457760127215 3.930728783208487 4.98221552139663 3.816136543414537 1.5536691945857497 +2.8883513243020835 3.512305738587548 4.140205752005011 3.4102407161503105 0.9602958214408054 +3.176452600748409 1.3406751569033255 4.9394916752682 2.715893660295781 2.8834817418391383 +4.899985379631084 1.0771427141398346 2.6928215116191705 2.8943842141448344 3.828152761861743 +3.3206967948219517 2.6974225557516665 3.879916672919227 1.7102731476868152 2.2573931433561967 +4.184532325048427 4.427211678736619 4.3806689896666695 2.089881094734202 2.3036064004676766 +3.975122866395073 4.84181252472494 3.963729029234593 2.0716604272323984 2.0811233885905183 +4.349770465429631 2.5167783599274123 2.541557989403348 1.765007734056303 1.9907009714954726 +3.977072013780368 1.6024392372964686 3.0737414380790846 3.9565342752922597 2.5334174580172375 +2.7801158088399864 2.269827515606181 2.9531989640262197 2.664822392886209 0.5861358110488898 +3.98361630915763 4.457707472963049 1.031179876390826 3.4620278479947335 2.476647793419405 +3.606988548266032 2.4529538116008953 3.481563336126674 1.6664156700453132 2.1509433333099186 +3.205051089552839 1.8739355998910994 3.7419673402282534 2.4591342856134877 1.8486560233936606 +1.5628041306026335 4.553251751770151 3.3922845762202205 3.8389031644513087 3.023614581639002 +4.438380085663148 3.559211522088609 3.7271616180003906 2.952372210672236 1.171851521689344 +4.793579567553381 4.283830934112488 2.004028897568012 4.783564056780844 2.8258908985654707 +2.7145652859749396 4.288281693029159 1.3449634521559726 4.028143877559906 3.1106334604228882 +1.7139739310645816 3.145011564824759 4.8652654590692475 2.065492049951714 3.144296400093277 +2.92123438097068 3.8080503128098555 1.7043620004691973 1.8886029748570006 0.905752302567955 +3.927702110296363 3.078813133281641 4.224814498374707 4.008517524090697 0.8760119156618356 +2.858701629901201 2.6564063179152257 2.125177913789741 1.1129211905927856 1.0322727676873689 +2.019493132450642 3.607019062008121 2.1618305466385914 1.6435401851855653 1.6699890645727133 +1.409406266022089 3.158267463195954 1.6157323989122627 4.986710451549779 3.79763196193947 +3.1898038176170855 4.504664855965214 2.335089277316451 2.271980382429162 1.3163746741637863 +2.5244118813340113 3.538286106071556 2.3017621826071157 4.2487966352287145 2.195195686785724 +3.0821013691287615 2.430775633311948 2.1870581542432417 4.459596646745025 2.3640339282759015 +4.066712058624946 4.300118428181867 2.827997782654002 1.8831558776294166 0.9732444496837522 +3.359646638103643 2.7924016664524713 2.9743319261153625 1.0078060358930632 2.046702453894592 +1.401979538406867 4.860276630430809 4.283309615982503 3.074804724905762 3.6633731516810646 +1.2039680690523396 3.9751407757933994 3.4579376817883145 1.1769866780542082 3.5891692147378897 +4.762400833782239 2.345345415465618 1.8872317351364525 2.9552048427881092 2.6424843337058546 +3.845739074011976 3.5838112189578455 4.799445317213917 2.695490882481961 2.120195855264679 +3.1317236695211808 4.141035511471484 3.8240038085114776 3.795713949578125 1.009708230341609 +2.892381492416371 1.0955418487550608 2.4031388976528474 2.2002739802747997 1.8082552031546064 +1.7794113264375242 3.9366467391092685 2.2696792399046335 3.7566483272986155 2.6200652076905113 +1.3556712056060523 1.3844408142077511 4.285520577706725 3.190622117479968 1.0952763708699367 +2.8133874871547064 3.886568622115326 3.523362699639544 3.831691098559662 1.1165948907352239 +1.5195014082774212 4.482357626266784 2.973129572440368 2.0846283866479354 3.093210520742613 +1.1341376545422697 2.174418369654609 3.3010728206036815 1.4207176980021394 2.1489344692960044 +3.7446375090537565 3.4777375666180004 1.1426702880252826 3.354197447975322 2.2275744563243887 +2.541003561406845 3.298554846122618 4.667943928388841 4.331687204766001 0.8288259969113451 +3.5382519426435666 1.6869742328827608 3.124172710805032 1.747321722677556 2.307151447600443 +2.855242886172049 3.3706307030322247 4.0005184981348645 3.3748435824035186 0.8106131641808716 +3.273089787357566 1.774967674043367 1.9881738540105465 4.70276680711409 3.100545882169851 +3.47553861238434 3.6281702685398507 2.086050762154478 2.6161262431154535 0.5516125796034601 +3.6181560914758344 4.158570966588368 2.871304224996732 2.757005521186032 0.5523698316668834 +4.580423447369556 1.0295172753276725 3.026836419033089 1.3525658754732586 3.925826855030323 +3.0240901523018078 2.907505487577508 4.911411312042348 4.704948977055777 0.23710478657543893 +1.650597035396168 4.717570569245789 3.033526867101983 2.544614906783335 3.105698240698323 +1.1231367285417608 1.069599537255554 4.947810251035563 4.0083392704232 0.9409951935390376 +1.2779397480908212 2.931255871727336 2.2072422603369186 4.431362035680728 2.7713106970803305 +4.075406694285855 1.0798593337943978 3.3291330146261715 1.8719401202331976 3.331173234825338 +2.482601712990116 3.2815503555242738 3.6552709229639864 3.0100274233565143 1.0269654849082666 +2.1176861499852824 1.347488967610746 1.7599998351114343 1.8250747577766808 0.7729414242344388 +2.271824009651199 4.8822983125462125 2.2325543625541364 1.1366450533859855 2.8311823148636366 +4.399126554109937 3.8396136355313435 1.0719618681023055 3.3489703298216824 2.344743534120092 +3.029327638494056 2.82877530317088 1.4247030111659726 2.8328866027184216 1.4223931477341747 +1.4529419613430927 4.189525727015262 2.906157503396159 1.0368616123951822 3.3140847657616734 +3.506356062579969 2.4304097609867483 3.32046652639607 3.583910788368672 1.1077289032423137 +2.9448502697034242 1.5795787039470617 4.942734744196085 4.21416710837495 1.547506784550177 +4.2049553590054085 3.374065451838481 2.5465765965103997 1.4040269524392825 1.4127270532551224 +4.5612998829561135 1.3357080986437424 1.8429708974661523 2.850763785532431 3.3793621978504222 +4.338249591930411 4.781959813169719 3.5956425934818492 2.230232890408717 1.4356957956609384 +3.191260764259731 3.3509312988808824 3.001431498752166 1.8829058287321168 1.1298647503661685 +2.828286101035833 4.592322929566693 4.230259266668678 4.048079418294761 1.7734191353334268 +4.028922638401298 4.041678971730062 4.993395125221343 3.45438203123547 1.5390659594377247 +3.9332066403629713 1.9043513980719942 3.3307532213093514 4.262878884881531 2.2327364033538433 +4.540046133961005 3.677444850665296 2.559141845201116 3.6295575881359436 1.3747257314337733 +1.2569414243626653 1.8168566544411968 2.9629317792517886 1.6680306649609289 1.410770697408195 +2.67151085886754 3.465373775129504 1.9234324452114673 2.0492773299944274 0.8037756309082698 +1.8315684226811357 1.9292401688710967 2.963047661885506 2.6303938183208833 0.34669633635519226 +3.5141983620673805 1.8161469066435192 2.546804589029221 4.133891233026968 2.3242682204993304 +2.7889406799566863 2.2702395876180836 1.6593395050792337 1.699976591568657 0.520290491928892 +2.369417791225409 2.5094932244203996 1.8862431032831593 3.655615649815708 1.7749085428291342 +3.0849881290265815 3.841781860190451 3.8721687859182765 3.7752321998366947 0.7629767055750019 +3.8939147262794873 3.785781836871723 1.6356511063612715 4.731205485221602 3.097442434372758 +1.9266748048341809 3.995662376804934 3.2956839470614585 3.8706853724956805 2.1474022008512565 +4.952298815049673 4.8245212117053775 3.995637652320339 3.257506589997358 0.7491091916953527 +2.3729627647975775 4.603460642669838 4.562255040662939 2.9488911977542744 2.752828304271386 +2.8901328402759687 2.2570266807009993 2.692359164883309 4.871617926997573 2.269359416563088 +4.845627053664977 4.941261868005759 1.3659694439290297 1.528953228706115 0.18897018763354992 +1.1103067264741613 3.5397425789940247 1.153724975221086 4.724919038777517 4.3192112244123475 +1.073765559124499 1.1517028701512881 1.4580827997861139 1.3378506289394134 0.14328293463143696 +3.6356604836806525 3.3657171289662053 1.4105223017714716 2.7053619879250523 1.3226788074180342 +1.7378087851404236 4.635545794658818 4.670789831892174 3.6644763285251614 3.067498434130228 +2.6571627828554827 2.2514951604547586 2.3478470908650007 4.1323841082640325 1.8300651863613189 +3.234541698468592 1.289909774557009 2.690048717719026 4.708471721617463 2.8027887437626218 +4.380601077297335 1.8504602422163425 1.9237133996934852 3.817887123906489 3.160618095063575 +4.31150296098522 4.266529213738348 4.137986316742096 2.167064613564118 1.9714347562116805 +3.87087293041566 4.488463202382263 3.1620626052501706 4.613793912794941 1.577637960158614 +3.8223419481160383 2.654863456161922 1.4237752055650752 4.227341967709748 3.0369380334438536 +3.0231309973612683 4.205327498026932 1.3150018657426803 3.7380205672436735 2.696035644054006 +3.148237150321614 1.6287944531633607 4.431882246296417 3.1197070929951205 2.0076129464836665 +2.1119819934683965 2.495440218892102 3.4367231033219117 3.933070305910296 0.6272166740149787 +1.5100617084444896 4.469551091112464 1.5661026807438132 1.183563517266486 2.984110188602023 +3.7870767121693762 1.6378306447728153 4.381280581676313 2.1178535986093885 3.1212754389664203 +4.550582365440414 2.174770000540344 1.1778330557481125 4.755259615572884 4.294469138805373 +1.5442860787498822 2.64891439548999 2.8083222985187044 1.8424774121130256 1.467330931569318 +2.331694758017364 2.7914158293145963 1.0790177493724298 4.690477520868397 3.640602305186379 +1.4298435075857636 1.6107004368677194 1.2212390478677344 2.746372436937943 1.5358193524389772 +2.901296151893721 4.938703962098467 4.232264219675464 3.7259063440636404 2.0993877400988645 +2.630980972207286 1.4838907151406047 4.628701072912644 4.534550234371146 1.1509476261999814 +3.4319447878515468 4.08640900106843 3.0660089366359102 3.3577900758387047 0.7165609810588873 +3.961229990756058 3.501976533176262 2.097498092730915 3.7408301838533773 1.7062983619554708 +4.892951227887549 3.06184433398705 3.295529013022312 4.21359277790785 2.0483636233066 +3.329250723081486 4.056071300288561 4.7452187786902496 1.6544277795328428 3.175099549923446 +2.434822514470144 4.443607291709273 3.28671102125087 1.7287061008982967 2.54216356930676 +4.338037877070188 4.554315271143561 4.966163292103633 1.9480488034512344 3.0258537601478195 +4.940329248432526 3.496900420718366 2.9569967100542227 1.7588959019837391 1.8758817465329258 +2.8699180138427125 3.3977908235238066 2.581718502585828 2.8525792720219454 0.5933087388705294 +3.6201234408197136 1.3927582995971357 2.377567733456685 2.0022156197720995 2.2587706128735077 +1.0475735840247693 3.3133694201248782 2.3126928588712525 4.2231942715264275 2.9637554586446586 +4.531439293832509 3.7945848883470297 4.404523702125583 2.926928494665187 1.6511335536513363 +1.952583236205597 2.7910446668810827 1.524773422257784 1.1846291625322505 0.9048290933400701 +3.621186725505059 2.945388824928175 3.819623202195352 4.308685866820147 0.8341972742427468 +2.744940768404176 3.4340229873719026 1.8713374206927633 2.788789408638969 1.1474111968618443 +3.5726604273911833 3.2866707085013664 3.450677816997225 2.8622212195699865 0.6542715692786288 +4.888761864035544 1.1119377113771516 3.8093301488792157 4.437057409159728 3.8286345076806514 +1.7140566589243211 1.6838444087623117 3.124486394397416 2.6979832350096986 0.42757189457161077 +1.2418948868184168 3.6253823105012164 2.8732082828431196 4.303828257822807 2.7798715458928944 +2.685679862253198 3.6051504354553296 3.927069664060507 2.264095579087075 1.900239180281756 +2.643004476170568 2.1617943158994692 1.4942064959518815 4.228986992676324 2.776794479901695 +2.845845096830857 3.511525211344101 3.192705367825695 3.833716874839582 0.9241351454103348 +4.467027854855147 1.4876085579749692 2.859865728646749 4.18358629815113 3.260241631037641 +1.5304394048626784 3.8005010142736393 2.7194149085725865 1.638819176854434 2.5141334184821957 +4.030500532102248 3.2540514735042403 3.4506262029312507 2.5067678705768626 1.2221872574006565 +1.0308929216128875 2.4107476089357793 2.817952356294749 4.653061917285454 2.29600219054043 +3.967048078211073 3.9338115835652667 4.6298966415753835 1.2137780812842482 3.4162802406333586 +3.581474339787768 2.1104057615223892 1.0255803194028843 1.1295094362500513 1.4747352383693677 +4.661606347047503 2.8542489932300597 2.7345165838778596 3.464275539080863 1.9491251209445146 +1.9517121127945307 4.531698464814095 1.1909591241381454 2.4789648111138534 2.8836241478890736 +4.258018757620652 3.403202166724438 3.8980850110280296 4.7158983911038606 1.1830173830939599 +3.531956560324866 1.5856403000509975 2.5917308506762367 3.6972236015286 2.238361277183284 +2.352740582556729 2.2499128638049544 2.499130770517787 1.1568610862956108 1.34620260173779 +4.735279337482659 2.7655458407047746 2.6801275195667524 2.97793001477439 1.9921185643632577 +1.5524548598673933 3.043466059345546 2.5752925515138103 2.0803306519060385 1.571019312113194 +3.2695203502176367 2.760909788842204 2.507559535979842 1.4373524298085636 1.184916854991157 +4.253330628021709 1.6921822246788985 3.399470359466723 4.848903855467994 2.942845324388609 +4.70112940013318 4.630004522396103 1.2764909850051476 1.3025359064645503 0.07574355528320946 +3.7566050957512354 2.9587970642071038 1.2161085640304652 4.926760146028528 3.795448961345818 +2.4199447563407617 2.148647202362831 2.6708458431662754 3.640123776056405 1.0065297183800241 +3.8792496402154555 2.031217347300466 4.484148110259243 4.8762254795513424 1.8891659586091547 +3.152460369428477 3.0834222507437863 1.9603296671653094 1.4746971806221372 0.4905152126260977 +3.12483794226002 3.1061682709443574 4.1325336360655225 2.548520293854386 1.5841233616514623 +1.59582903313468 1.3626069450938103 3.1891389059488278 2.9536119951987247 0.3314596024218188 +3.4394502827954807 4.677659840694079 4.8437066202444665 3.92797967554862 1.5400385535802124 +1.5646249950249276 2.425111786863161 3.340203353099907 3.2255619294372773 0.868089957865802 +2.2672606529850943 4.269107247547501 4.604488167618792 3.79434430105419 2.1595654360758196 +3.5758035197068443 3.6284049992867087 1.996763417816874 4.4264378198955825 2.430243735877231 +3.0201334872095704 4.477727092201917 1.7601674105270133 4.4248083737248045 3.037250496759567 +3.4413557678059625 4.1388656782935875 1.5093156710765632 1.3075733840240122 0.7260991844188013 +1.1447810566098036 1.0515008706589564 4.576592703972118 2.308862223868349 2.2696481497101466 +3.846393302819286 2.1513156436254874 4.7855221853810335 3.426638067061134 2.1725225701290145 +4.400028432331102 3.497993422213032 2.38024816863987 4.381613918084961 2.195252154658006 +2.310543122013594 1.7531639934492413 2.5107488098075534 4.180553800557517 1.7603750168906178 +2.056136051223764 4.837924251913149 4.538444735310403 1.0004771207312926 4.5006177837387265 +3.2622915174558815 2.0989678227120923 1.6776374731840598 1.2840483487166758 1.2281019573518082 +3.2386077441383563 1.423873860635469 2.6831155077874933 3.8582834693938395 2.1620080494576066 +1.8949480170139585 2.7975404899673095 4.329233715278218 2.55800985244192 1.9879404278078314 +4.257316766747204 2.9676104442132942 2.3882945445622994 2.9162390164943095 1.393580913986522 +2.9322837963323924 3.1982574231626058 4.073259050902272 2.9084690395734265 1.194770999254949 +2.595429310541337 1.8726995963981432 1.139213072237284 4.554048415818911 3.4904782857768577 +4.54032187443236 2.5070113646373575 2.219503124766261 3.1268791081588185 2.2265854586070626 +3.4622046746371917 2.038785755582524 2.699287098342701 1.678830445028482 1.7514146283550378 +2.068006006025228 1.6405369012136446 3.7786396230571393 1.9541270209587607 1.8739199744877615 +4.385071892412409 3.948690495091085 4.7091716616103465 3.4941684974128973 1.2909924139738098 +4.47768445853618 3.684204931028934 1.6281597731182371 2.7405938138903805 1.3664257226947099 +4.687535414712507 2.8061141643090344 1.735213030075367 1.5206699978747982 1.8936141724584707 +4.061267713776685 1.7595414927091353 2.2798106752646596 2.6783546514843066 2.3359753632542595 +3.9969726832415975 4.108203669791832 3.625965200086971 4.185651307227207 0.5706319925264712 +1.633272958801963 2.103336154075694 2.9887176990758406 2.0125132121106524 1.0834826292663469 +1.2590377314130201 3.052836789325463 1.9019002817319004 1.091386270382154 1.9684125641647952 +2.6816375628662135 2.574939496520288 3.590228859640842 2.905809953215933 0.6926858716863132 +3.2144575802325055 2.559369340145088 2.473701080734176 3.174735337710918 0.9594736222303158 +3.9095988655745653 2.4441192977873185 1.0309655157583597 2.1009337240845656 1.814514351122825 +4.543092741568933 2.3101310962018378 2.487908481255995 1.815054835507795 2.332134159579412 +1.9711314080459816 3.2008506476867824 4.046860363478569 2.3829954657050263 2.068974578477394 +1.4946120697067276 4.342915386189386 1.2455318140800364 4.132274228286438 4.055380814259534 +2.1253896158034746 1.66126476854665 1.993576264513265 3.5873337289398295 1.6599622674195227 +2.8562109339177173 4.827072832163097 3.140678612135327 2.111307166686281 2.223488743992476 +4.274006256372411 4.288499837265568 2.103451390950356 2.569894972158331 0.46666870297591984 +4.033643069226384 3.7010749986705918 4.172623195729445 3.4829006462015424 0.7657145139544322 +1.4182882830556576 3.935470475453543 4.608471814185979 3.245411975937762 2.8625405346248427 +4.628729442962783 3.9503635685754808 1.4977149682224105 1.8212953968900476 0.7515880210261342 +4.0426629904892035 3.53871065074388 4.188404303142439 3.8973082687130836 0.581983558182946 +4.204614077894844 1.3473828441034783 2.7418633708484617 2.2425172796096766 2.9005373368030245 +1.126939552287288 4.629655080100861 4.7975756916732655 3.7377617652071766 3.6595384446016936 +4.875982651971793 3.3982310232810264 4.342506229085778 2.6256693901708816 2.2652325725085065 +3.772564170259185 1.9649203510926614 2.058805367487634 4.482306386689785 3.023397652814595 +4.4536587299678185 4.176392621838188 1.8231881227583173 1.1959358229580515 0.685800220415592 +4.02774140306445 1.3069507895640937 4.615541481321822 1.249862947101378 4.327874022915168 +1.398928367039297 3.355246250881424 1.4941763461947506 1.150142338686892 1.9863381033858396 +3.458097793469617 4.683067422966566 2.049443092007313 1.984237953773977 1.2267038368089997 +4.876986128045203 1.1502938689719033 3.525566413500464 4.1314745862749565 3.7756270880042933 +4.721128522895215 3.247555783174597 1.746770748127839 2.6890428615255417 1.749083575743224 +1.0988179941400689 3.9274883157003644 3.0157908837734775 2.466683542354928 2.8814743900433633 +1.0621131814948952 1.7518069319318759 1.8324305327700485 4.863476214617567 3.108523024659511 +4.612425730664019 4.612802258094339 3.5805557077298413 2.0039003545621927 1.5766553981276659 +4.969828620815411 2.4969352056530356 3.3041304919526304 2.2266471187158667 2.697438092404553 +2.6112649509808197 3.736788533261754 3.835343926919394 2.393175327994748 1.8293861270914853 +2.696035144527915 1.0746872432456005 4.137491397085295 1.482607022786068 3.110816622350274 +3.95383235174886 3.1810685088060464 2.1453262036788305 1.0145939575097636 1.3695690451694245 +1.9034067904863048 1.5525253649170683 1.374762131216328 1.7281354731631442 0.4979864391809893 +3.1457209849896866 4.569990844379543 1.4610246282978756 1.4479453430970697 1.4243299126493711 +2.1817041480807355 3.257860841967928 4.491527669111172 4.305921263025049 1.0920453139766768 +4.993441601659207 2.7330634606087716 3.226221217124091 3.881849880816236 2.353541647218797 +4.940787737912265 2.0332142407089675 3.572471349739853 1.8469486598301987 3.381037147833792 +1.3715426555197716 2.739970185275029 4.550004026000773 2.0585411314586683 2.8425307841907705 +1.8350939690363304 1.1324165687859669 4.321412621278348 1.7564455760024935 2.659475788980558 +1.512485192697476 3.78490637052932 1.5222485754524913 4.406319692070847 3.6717521995868556 +3.0308404228501944 1.879979979886556 4.632622877489682 1.4082674149384986 3.4235869943762376 +3.890514009584766 1.9288086241286861 3.380485922754184 1.782920120210628 2.5299218392638188 +3.4042065874011964 1.0996859640945544 2.6948020137938933 1.5550555677826212 2.5709603778434547 +3.0077153638370167 1.0932649064291016 4.867264092985661 3.476454552538657 2.3663202935502587 +3.239544022964302 3.336258292430618 1.7961164591392036 3.6563058825061248 1.8627018926077683 +1.0052108704117284 3.828084499928526 2.138005948154706 2.6202918551168928 2.863776392156985 +1.7227083053311016 2.9622126915865223 3.3688051286851883 4.2943985084208505 1.5469629045833364 +2.684957169592042 1.8451295737146887 2.717780674463392 4.623946036153481 2.082973061972776 +2.8656778980084807 3.8655070265575247 4.923419270781833 1.8422492796999226 3.239331227312027 +2.2075624902628155 2.9159373733874228 3.610917693787437 2.6344063383294327 1.2063869206768738 +3.1757850590101886 3.890726529549412 4.9086197094193444 2.2768023070503944 2.7271971226350384 +3.892462477168541 1.9885149534620252 3.018645067896328 1.9194988863523177 2.1984400154270647 +4.252418576687912 1.4854149998023662 2.5976234090702315 3.908242073009627 3.0617037865808787 +4.2572750561580825 2.504904150557431 4.0824235905277835 4.149254496590707 1.753644821735815 +3.469687508036381 1.6978505833874813 3.2623295431993604 2.6136942609336087 1.8868316874987132 +3.6870203550535776 2.645172650724722 3.3260794719089075 3.117263023657569 1.062568091030222 +2.1903138335703973 1.0045338282649654 2.717430320648581 3.16841369796014 1.2686450360890908 +3.578903983112664 3.113743697925429 2.646347153118239 2.6090076742075654 0.46665654136719287 +3.989596907438683 3.8098937761502127 4.169949209907395 3.44354861272046 0.7482987658605469 +1.3450497823772487 2.3532434366932677 1.4781486150003071 4.175673532932125 2.879773450719023 +2.802754873992236 3.8340617133430497 4.5434157564554125 3.2237670622038537 1.674833267263225 +2.3645297652362935 3.0770329203739193 2.286828055084849 4.297027334847117 2.1327357760486443 +3.4846395390678535 4.346059749582276 2.0652137482931106 3.54045184347615 1.708324388563833 +2.7076155060551685 1.315584924530059 2.6202372517816808 3.1794863350465548 1.5001695494289093 +3.457896150513148 2.9716751556812606 4.0798862973503285 1.4775985918554935 2.6473216952204512 +4.551407675076685 2.541643828369204 3.147090019253747 2.799662148232123 2.0395727114018443 +2.805527312312857 3.3303155498892565 1.0037915407303224 4.293408397984843 3.3312132567326955 +4.918576130665251 4.4179716080153995 3.262230625937324 3.4399312312107613 0.5312084272788146 +4.742441960492118 2.0690075184806016 2.3673292391817897 3.3861341814861405 2.860981514480162 +1.1218268818954629 4.602128702941109 1.9486077453112944 4.510433263945718 4.321510239893014 +4.945471930434219 4.728100048851712 1.3663889194375258 2.7726607563361108 1.422972597823598 +2.3317160575899147 1.7916340740308345 1.7161553569850057 1.4807548278729623 0.5891535946349988 +1.3002370862590191 3.8232611780156978 3.6032920976905043 2.679457145017689 2.6868423078708203 +3.8061416147673985 2.1914711329869276 4.681142304387912 1.758983895069484 3.338588104855641 +4.583126263098599 2.3269806402235433 2.2954348412571557 1.6287202751419598 2.3525946068731107 +2.5327194402731137 3.631515673300612 1.1077786557380547 1.2367835892362278 1.106343271585401 +3.588802135669211 4.5382448896181815 1.3608137955755293 4.878935197942162 3.643984048375674 +1.2878292516709013 1.9121616868944153 3.1639623136404493 2.931297202385585 0.6662762517660086 +2.476280012586512 4.147370325493608 4.717650966744207 1.6015838561187588 3.5358757149839937 +3.222823220337955 4.965652730641187 3.4414144492108054 2.2499651795781896 2.111162254326251 +2.77284400745633 1.0999025239876667 4.516583835564939 2.1819830880864393 2.8721235797293785 +4.118782168966017 1.3425213781617757 3.777636341225293 4.182669744690797 2.8056507331597493 +2.16893144795847 2.845241266777529 1.6674688701611817 2.31548735806359 0.9366551829218648 +1.4217251215270492 4.42307186028461 3.4062465278670024 2.0676312585983156 3.2863312500978847 +3.634790615795573 4.280372918020829 2.7829567768015533 1.8127034357819567 1.1654046742252888 +1.5640031359626083 1.4949342530543066 1.2799336183081493 3.6046104300881154 2.3257026443235747 +2.2701808500241083 4.717605357107699 1.0938262008808382 1.76262566690181 2.537159719769982 +3.852771001011188 4.454651898518666 1.0935243436823154 3.54808229833833 2.527274296064739 +1.219196397950821 3.851010451970816 1.847834132435136 3.1257251165101754 2.925653872575742 +3.6051071946912594 1.0539173031233697 3.07196209515004 1.3040561029031483 3.103878454492161 +4.167923269792021 3.849814201425492 4.009375652163507 4.00201159463349 0.31819429397826443 +1.9417901463204874 1.1463005058606366 4.663451133615677 2.977501877241643 1.8641965194547223 +1.0879039555587289 4.268966062404106 2.0413312762704043 4.410162373999907 3.9661715667855204 +2.5117178706207377 4.469790843953684 1.447376496428455 4.189196298785411 3.369217356819483 +3.7872945816086214 4.3592441446054675 3.9092597409323067 4.746348256875094 1.0138261616941937 +3.5686163602346457 1.3485324629248368 1.4162596139378745 2.4826743720099564 2.4629277186568523 +1.2940442381789667 4.280647504369785 3.943390767103935 1.127516930514779 4.104746585747894 +1.1483987820504402 2.7991418895246523 1.9338732812226325 2.309992423728352 1.6930500335881558 +3.6444405550835786 3.640928581110004 4.831929915063824 1.3402988068910844 3.4916328743899734 +3.3652688423494004 2.2297720532819034 1.9599684672675908 1.2925170774757788 1.3171348889607386 +1.4140818379472 2.359934779777379 3.4847859441285958 3.255613370679463 0.973220353255162 +1.1165522732460471 2.150855748509746 1.4660203661924265 2.5250431730592475 1.4803084085441944 +4.271133349575629 2.842576052394505 4.134425687580572 2.825200061556232 1.9377429373289594 +1.3849589380176837 4.403870160292438 2.927447239355217 1.8109132422878411 3.218768884928476 +2.068018932471242 2.5387764670596504 4.797384664529482 4.36010518993805 0.6425153657856874 +2.7315714818548837 2.0769410376493047 2.0963211718087735 1.187926703379103 1.1196970700838764 +2.204536479858096 1.041704558889851 4.965544873963972 1.7652861908228754 3.404971911109207 +4.188171602996 3.861918949918778 1.2670567883334307 3.07796230857684 1.840059672099788 +3.856871946213588 4.559707525356215 4.524167250115122 4.5682764198237145 0.7042183398358306 +4.243331642170079 2.628243814055031 3.934057593607287 2.560084122641337 2.120450846269162 +2.3786022375723324 1.064423171349377 1.9288257711375856 1.0985339443670008 1.5544938519340221 +3.796002534866714 3.1042843326165372 4.182591706478492 2.5269921638852315 1.7942920377572962 +4.12510544850095 3.06914527598849 3.181741057778495 3.036897999786384 1.0658477364900907 +3.0313233344087696 2.1313985096343435 2.12483368120822 3.502681288451393 1.6457000695846795 +2.376214763326379 4.638363720507028 3.6468102252286583 1.6134582222288278 3.041683460285919 +1.699171149714004 4.687106381887806 3.484781438934378 3.6859989562885507 2.994702896942481 +2.2965914056976313 1.0456125977428687 3.3893440899047644 2.421275437805439 1.5818043156880448 +3.640151299870139 1.1726820626219765 2.3325925743628284 1.196529667274775 2.7164394647456045 +2.1819424986192715 1.288666538394049 2.486685670064572 1.4550322138401408 1.3646431016409042 +3.464467037458061 3.291911076490243 1.3581962035253836 2.974613606885153 1.6256016675526224 +2.4243355118140912 1.6338733209081844 3.3904518778657065 3.586052521523878 0.8143034367183141 +3.5728358833534055 3.5546449717649042 4.025789924758605 2.8643442090095292 1.1615881627738396 +2.0033442232330585 4.577487874088174 1.219806779379216 1.9352497438511995 2.671717457114461 +1.1670010123694925 2.5833477200794315 4.672311478980072 2.0220023693547287 3.0050251867503315 +1.0197194413579198 2.321085035290875 3.411110312584431 2.778169517380246 1.447123512111589 +3.5197391164402063 4.630443290125283 2.2104164191081597 2.1991035435041653 1.1107617848107134 +2.6577660314362737 4.8797937300637795 4.404719759493748 3.7093729408925 2.3282856980204825 +1.25288786836451 4.472375132280839 1.203492512895484 2.9691778624600618 3.671885482444467 +3.1896319256622845 3.571230741321155 4.289142600260671 4.187800240258788 0.39482645560170354 +2.7627179067084846 2.7026825771841723 1.9186822787536948 4.214965290858181 2.2970676769461424 +3.8469724549156576 1.0056617152833032 2.8703972645550304 2.28291973191663 2.901409411045787 +3.283204556865609 2.2298459325176676 3.850178627212183 2.3518305792866547 1.831559789963306 +3.3474459986369594 3.4969180723040325 4.787703065649259 2.0080680087008136 2.783651010924883 +3.893697762808842 3.1379431710803805 3.260411739076514 4.9930948786645475 1.8903322102559903 +1.0641151097572399 2.698729550543379 1.0655875328950337 4.03360430579325 3.3883754122339695 +4.138109998211362 2.520271283659708 2.054921748134965 1.9191554495960572 1.6235253598638684 +4.22904099952729 3.5609474759961914 2.3776515280418784 4.104109393629422 1.8512173610446976 +4.782962301406403 3.476582157719778 2.88978246437304 4.683408669829953 2.21894660700082 +2.312383133147095 4.331742361869156 4.959530616550172 1.811669441939621 3.739898617508966 +3.434846134384435 2.8389401445029345 4.355084900786308 1.299650545978472 3.113002255912551 +2.054809979327882 4.678300212563151 2.6091437786970837 2.3083402623326656 2.640678655069194 +4.106610888346186 2.346978828210952 3.2195542516192894 4.389095817577898 2.112849370296113 +4.869809077518321 3.7370509919943693 1.7957554402456881 1.4228905498383502 1.1925473184818973 +4.399233409622846 2.139322822159356 3.07265335001455 1.3079705338329553 2.867281169515152 +3.782203908645541 3.7356628741415707 3.9398983196451036 1.014077815465373 2.926190644946298 +1.3200852588864094 1.2229847478672164 2.3300460252374364 2.4352778926633647 0.14318608578397746 +2.0118091366866913 3.249166820029368 1.2503506354762228 4.017514372716056 3.0312124942376233 +3.603684736337521 4.806553147649499 3.184726350843149 1.5902122523653763 1.9973401375771194 +4.37893136507685 2.696703761221524 1.3639167823190306 3.1221929099783075 2.4333977587458517 +3.2051860814994164 4.070827063885085 2.456605680104942 1.5062860673313403 1.2854733279254742 +1.0636351122039889 2.8316419972888864 2.3405458710815035 1.175668607887225 2.1172594040444346 +1.649891427913555 2.4692229514477395 4.572650905256909 4.493482974300823 0.8231474392529661 +1.5762097331165252 4.159669827871548 2.0088600448310108 4.131389300508493 3.3435604529301455 +1.1187078421543304 1.9380275375856009 3.4863057113372564 4.53400192543145 1.3300195939717938 +3.1629955730617114 4.856390682763633 4.7667261876588665 3.0905577445349603 2.3826723751466132 +4.818947995615185 3.6500603842087536 1.1396415842865353 4.206434248531199 3.281998704077184 +3.1459047486236185 4.985435835639468 2.95034566698828 3.5458177960361543 1.933510195621042 +4.92744821179466 4.349844430545758 1.8662514951166997 2.7176223438623737 1.0288140989542078 +2.9889064880324927 1.8782047824710104 1.7708436431304122 4.058515397166284 2.54304941614408 +3.3547326241939466 4.960471455421826 4.8515027776084345 1.8246484148659525 3.4264040227863193 +3.6107846721961123 2.9208894301329043 3.2036751889063497 2.6886785675688913 0.8609163519241867 +3.618587054185281 3.032574850370366 4.5670117740165335 4.896585905014744 0.6723313251985505 +1.5246435773215143 4.0425188149399744 1.9944330914804347 3.6194038903801222 2.9967024893187024 +3.208726132936961 3.5294869731359255 3.4266601675807298 4.227995402632217 0.8631486983945283 +4.156609087317195 4.498910791009871 2.3433934492995268 4.506147658882959 2.1896749136394122 +3.024361716894694 2.1871312307139057 2.026071728430584 2.175909065179043 0.8505328415025434 +4.630668227737248 4.173240155264509 4.847930257162298 3.3024800250395665 1.6117248094678978 +3.3877475092387583 3.448053438182141 1.9223363712156516 1.049636980545079 0.8747805619368283 +1.3049864509735736 1.8455294710073251 3.7556948031449067 4.269762558395648 0.745957380482119 +1.8493457734161325 1.5275229839216942 1.1266694967096518 2.9797154053136987 1.880784157534346 +3.138077382168231 2.2712362526625443 4.009833656179374 3.228813674357625 1.1667929361320029 +3.403103603171526 1.4319953968308883 4.549864066731583 3.611512440681854 2.1830646658341517 +4.304122273978656 1.5201295257193501 2.331199411947179 4.5181819122853675 3.5402694924462854 +1.2122134194493057 2.3813924980610826 3.6813649986344004 1.903828426484182 2.1275845419618538 +3.5430262118736366 4.272498930213037 2.974360569745575 2.9718855072360313 0.7294769172056784 +2.879931680658627 3.063001951114779 1.2847328108616347 1.9331467339407946 0.6737620793483374 +4.893193551373713 1.1376991302742216 4.192816178407659 4.458531887725291 3.7648828912846115 +3.675904868537982 4.501774225247033 1.778791169905407 1.7444503928822406 0.8265830165915437 +1.4693531200525607 4.200096016095058 4.0061427632886355 4.810326577420202 2.8466942883277366 +2.276974535740932 3.3932973940749087 4.228725618970075 4.965560774575445 1.3375734636179535 +1.781794974949042 3.187169956144358 3.1908781914196442 3.7831135353378524 1.5250644380994702 +2.9548815323886233 3.7530894388337344 3.3152977683547604 2.4831157814491274 1.1531100213083287 +4.048644986339566 1.5172278281138403 4.81348880402656 3.9873268800667887 2.66282112684283 +2.3726021857627932 1.6133529086701475 1.0483181044192937 4.53150095727862 3.564971563872416 +3.8038114857587875 1.724713939701489 1.879783680955061 4.845698488770146 3.6220570472092612 +2.6680430631143905 4.995710621040407 4.904821839380215 1.7655612204958895 3.908067744231063 +3.9073038899966965 3.8017287278917027 1.3797198606972065 1.2881237380042427 0.139771114848098 +3.3916471245618323 1.9570531918672684 1.8248594213031044 2.915861316869507 1.8023165337569143 +1.241381199035465 1.5919578821176432 2.138811351383753 4.16117686662483 2.0525268056610635 +4.852649758082896 3.19303722862876 4.401387806720129 3.5235259043857075 1.877486422718248 +4.014278501653646 2.8550300768915955 2.175825594060599 1.3260208652060976 1.437367380837887 +4.5538108687464 2.406023297917895 3.6565743442678236 1.204477711556871 3.259719212686547 +3.123279926024042 1.3416248933937047 1.8227426494414876 1.9604288739195228 1.7869673057188327 +4.4534972555709675 2.441697201144944 3.61980349300295 3.1991635659931155 2.0553046993532105 +4.794101751776974 2.0781219321124227 4.977895640850393 4.999865976435353 2.7160686803670497 +4.891658271069846 2.7931242883237277 2.8463069002958936 4.37199610135916 2.5945273972308245 +4.079968397240924 3.795435315804701 3.255198278362204 1.5687414426683959 1.7102911252444608 +1.0125680680992053 4.838824204738476 3.1580664439349224 3.776128210945143 3.8758529862482494 +4.344614407046055 4.584989571083934 3.39800073751453 2.3544819837838302 1.0708462115887185 +3.365682856062999 2.262037080098587 1.001021769236159 3.8873718183378507 3.090153815711028 +4.144208865231034 4.090134675786332 4.669964378631474 3.5859873815504626 1.085324904424877 +1.1999720772303566 1.3941062112371054 1.7474972248089213 2.0270891002098903 0.3403816663346915 +4.102051078307696 1.2492557320085074 4.905728304901023 1.8653924936871618 4.169182549711125 +4.450404229220774 4.6635501913784 4.449904824011628 4.975215872859402 0.5669064289859914 +1.9601062811046108 4.489317765576434 3.6466709446010155 2.877926236305576 2.6434596951185774 +2.6061354300698647 1.234110151241238 1.4626370828453332 4.714741518687016 3.5296793944161444 +3.482679950006621 1.373058073692707 2.8442885390795136 4.790182414046831 2.8700187166040507 +4.350764550641569 4.82393244984023 1.8872856161165181 3.2725735124372033 1.4638683057313127 +3.71821104670034 2.7865106057363858 3.593364637395413 2.3910669501747552 1.521047481306409 +2.128406672157128 1.2649834826299018 4.248221294282529 1.0799432647787537 3.283821748580409 +1.4530558566144842 1.0466009194367354 4.811426328360831 2.466927461202103 2.3794706457665593 +2.560986924781887 2.6483491677217383 2.6000974789179376 2.0881177172277314 0.5193798589393335 +2.630751135347946 2.4141126240493618 1.1602889728281838 1.6277993512204931 0.5152651729761939 +1.6092849829388887 1.8430356078823955 1.6090745756342408 3.3071297406121314 1.7140684636179417 +1.6137047337345236 1.812592370296433 4.495352099031829 1.0782355946226607 3.4228995744372517 +1.3128501987823649 2.094843788036621 2.5780815085933693 1.3918462018132387 1.4207984292947766 +3.028034452798701 3.5396852343607663 3.533608717648147 1.0029905985777838 2.5818238876500264 +4.986250300438439 4.811700902570755 1.218575428997927 3.3619551744647893 2.15047534874817 +4.65280352100242 1.809939572305987 4.64655157770004 4.97193887421132 2.8614248764433423 +4.930680495855306 3.242826703678578 3.9315641440176816 2.9606281998124326 1.94719465681146 +3.540029952150107 2.5479805322539044 2.8678990765101364 4.840318099736745 2.2078493731916136 +2.9914295678850698 3.9177562278616875 1.8998110112837656 3.0429157962928626 1.4713156121288629 +1.0209216138505743 1.2147483867026958 2.5237054535939687 4.438553873003574 1.9246332864184106 +4.1935478477113755 4.432953102151379 3.7034141968429433 2.5095396207818377 1.2176417285961283 +1.1909264341277441 1.9608616436199524 1.7684739588144245 2.9572868083750974 1.4163602006892093 +2.3171839785062556 2.5404724140882484 3.050134538572166 4.549335891549388 1.515738243310298 +4.220603338299696 4.339088936091349 3.9546315456271484 1.4898260949616762 2.467651666365062 +2.6091951050963664 1.0088987535183884 3.301520449614568 2.9355254886554403 1.6416152790228473 +2.1627526848570313 1.9051726061442258 4.338091604242139 3.9995124865193796 0.42542133927157144 +1.2871115001623816 1.4064758817216156 4.236888285933816 1.2188890175270992 3.0203588263132737 +2.0648598180741797 1.6424722663916764 2.4893110219440495 4.784388104223378 2.3336216611567813 +2.02131075636037 4.012472148438422 4.329359024384988 2.4587768098334557 2.731995884092566 +3.75990728687451 2.518211299624151 4.060307828035194 1.8957827459814371 2.4953913031012727 +1.823142884360223 1.0878363154519746 1.317424761682807 3.1241262041451643 1.950601407893264 +3.092022922077952 1.0170565997439072 2.4156172185590834 3.901808133972683 2.552302622315462 +4.008373759274839 4.246559522912922 1.9898121331350604 4.474457271314473 2.4960356409070865 +3.3385400132565577 2.508753578598225 3.5926384951127894 3.8204113992128037 0.8604801119056394 +3.893379169276258 1.7849436662326923 4.361492169275207 1.2197935234519734 3.7836187244042065 +3.9303101413716774 2.9171911101962547 3.702229954025858 1.5034633529499422 2.4209470744600683 +3.808613446444605 3.432262890969355 3.725226195183134 1.3692134828463312 2.3858825707270563 +2.8694538536923373 3.589037095564137 3.8868741293761877 3.981546893838541 0.7257843855537766 +1.6804056520430168 3.4996362482537875 1.7545101689463203 1.10634784315039 1.9312468414914201 +1.2364691410940796 2.4534616875283652 4.430148985898402 4.700813491030599 1.2467277699702788 +3.047905454005541 3.843276888048887 2.427869593929715 2.4251060345308426 0.7953762350942601 +1.49588957844847 3.384355390087378 3.6874506599495853 2.759634691189916 2.104078324020863 +1.7529637682639039 3.2082850842518194 2.672877588303268 2.0792695542910398 1.5717285487044705 +3.5922495051087955 4.241052156491306 1.639730993128139 2.726523575167165 1.2657262724681146 +3.4734001555062064 2.914972662625654 4.0206431960875095 3.6802134369757695 0.6540135210328122 +4.944208363115675 1.635119581889671 1.2170525527878504 2.4775054290664875 3.541018217314744 +2.7538112579277154 3.0135347669111328 2.719545846854904 2.765478922637002 0.26375395460440626 +4.640563289451549 1.96738172847641 1.3159524723923401 4.6227510280583175 4.2521543181888495 +4.448619245116079 4.833448090589499 1.6375984347061965 2.3570213957052637 0.8158815092408154 +3.1590871697558995 4.884202928521178 1.7249400702164377 2.986125427342477 2.136963473288544 +2.2303398724247807 4.744673779327657 4.6423512700086995 1.7343901783169016 3.84423109427553 +1.4179284087227733 3.120761801255529 2.8584247639421134 2.7440889681021363 1.7066675824351312 +3.963608048088741 1.2416381806979393 4.323510348721575 1.802352175514684 3.7101696043862202 +1.6684415140730229 1.2984760095286747 2.4060389794195194 1.4926700287520531 0.9854528474747752 +1.3324134026164196 2.274868263890516 1.5431704466534373 4.948122894450927 3.532976413351962 +3.2587978535749933 3.5390845973451617 3.023241710204073 4.449260397413343 1.4533031187619923 +4.786748779087092 1.9146168595380293 2.733901752687246 3.668987431337862 3.020517669160382 +4.45764773886766 1.632217294154998 3.933265014121546 2.920608619712731 3.0014213584643947 +4.760471155155285 2.599845343412545 4.911014704627648 3.4213191264479965 2.6244040874105083 +1.5374128838072867 1.225873064983269 2.0328163619564212 3.8357390663753725 1.8296413137066638 +1.8509974092765722 4.058614835237243 3.2450431921258494 3.045298557603215 2.216635427494968 +3.2523884695189156 4.914411511208699 2.0245284040329765 1.900093432979161 1.6666747292525086 +3.3906119497760385 3.339779516797696 2.450607552856063 2.185963546623431 0.2694816993366247 +3.8726938794053103 4.456285861456369 4.296013720414575 3.269303993499059 1.180979451496603 +3.686049883346816 3.848491866629554 2.6009493980095253 3.25349566955876 0.6724611769058768 +2.9226948415618375 1.128914647713834 1.5202923738821497 2.7723389016606013 2.18752551792281 +2.6068069298801086 3.3586285587516667 4.5474754492112375 3.569225037878924 1.233778598011379 +4.363660571911309 2.850882570710468 4.270413411512566 3.710868688648863 1.6129437615124183 +1.590892203733166 3.8058454058691797 3.2303354899757326 3.555569002320383 2.2387037600371826 +2.102941296049228 4.150094869141265 2.8443841421373346 3.4927033841350976 2.1473601447749853 +2.3654150561643905 2.1986580779613996 2.175684637975078 4.603606058619787 2.4336413693485768 +4.3665119352797195 2.444795842756596 4.169970928426418 2.490417635684564 2.5522327486775858 +2.191369240214252 3.6666023620379344 1.8735392145736682 1.4148929475225045 1.5448848377809963 +2.307582781061219 2.36296749503013 2.863495248473235 1.9195513399379012 0.9455673265306819 +1.3313463816798348 1.5206497669529941 1.700799287036753 2.5146483189338182 0.8355752619576938 +2.858351635526665 4.349554376021451 4.70629180423997 1.7385308259038452 3.3213387116934867 +2.9885970215378945 3.807036659225377 4.644719694928396 1.639195365432847 3.1149670842125583 +2.042928983663179 1.5242819280991942 1.514041182762865 1.259657093306115 0.5776729465830395 +3.2649885814933013 2.493916949284435 1.9389092737736537 2.943750121455442 1.2665925118865575 +2.965225243077701 1.3660844523105502 2.4941252072534907 4.543517438744081 2.5994729825850023 +4.726985473220789 3.7021451061954265 1.4241691243558634 1.6720452621211677 1.0543909889401197 +2.189054827759844 3.75852043437042 1.7551646513573882 4.2797697571843045 2.972684515837636 +2.949390513917472 3.6168574332734735 4.743410037988507 4.173039071604191 0.8779721679693325 +4.839144571583492 4.136500547100029 2.7484092727697274 4.196742795745445 1.6097759530187954 +4.719104561065157 1.684881139759554 1.5951531027228238 4.45969206901483 4.172780279358686 +2.1776785782111063 4.646511506250999 1.4373437201689163 2.701492726308657 2.773663414385048 +2.794406643043605 4.663699054605511 2.647247477677474 2.5828521371383157 1.8704012617099248 +4.459039705333332 1.047044474063196 1.313722884945232 4.226156815421955 4.485976243539665 +4.195591098687645 3.8146974324332295 1.6879110485873956 4.687786013400517 3.0239592903187793 +2.4399962638761403 3.166423113360467 2.634956813668023 1.392987369768119 1.4388134233571637 +1.3661364121949524 3.2953027657355407 1.829101837759319 3.6797330158878605 2.673297322987947 +2.77086788514214 1.5663783513405711 1.5637745557456268 4.977424506903562 3.619917267849929 +4.609003537911496 1.6173905370866737 3.946710743701124 1.182850604932416 4.072919249552915 +1.872121396087564 2.984119873897514 2.028871580180883 1.8227517353886817 1.1309403189686038 +1.5565081300815602 1.828396963594122 2.305808006656156 1.3882714556296696 0.9569727583679702 +3.6981217924424366 4.827368545852829 2.2753982588011934 2.2832907365891972 1.1292743339390765 +3.6997770693337313 1.034206155543532 1.4711741977803734 3.0483992616916815 3.097241869579182 +4.5156354569641675 1.0864526001539665 3.21239191905256 3.6456904120430687 3.4564494281659637 +4.347047272374237 1.9443490736950109 1.4625706375532577 2.95474896201085 2.828348420176953 +4.554865636296691 3.350293100732697 3.8591751499144893 3.8497813041840105 1.2046091639086423 +3.772211636821528 1.7964340600310886 2.6242823844203973 1.8658438996169262 2.1163473174738794 +3.6142405566244644 1.5298758155152048 2.738164007236559 3.1391076339613053 2.1225767750050086 +1.9709246572455381 1.7115020495660391 2.1765876368558787 1.3295442449457902 0.8858795613139402 +1.5769057296835425 2.2174849642375003 1.1741940698945825 4.135667131950187 3.029961130612526 +3.4736757357912005 1.8721167965530165 1.7777336727179844 4.052443495456265 2.781958988467615 +3.132846488505936 3.824315025801019 3.6984441413099005 4.1647898212044066 0.834030593698619 +3.204360905246055 1.1787301667859054 1.5341447188351158 4.3262220515525875 3.4494747021060066 +4.2030773748054635 3.2322319239074546 3.5003386075828096 4.925932456716556 1.7247778732976975 +4.451594335218768 1.301522900529648 2.6646228632707434 1.2624442988110185 3.4480508653839066 +4.0426257990254895 1.3746828159333995 1.7887162299900097 4.884847538868488 4.087046469377108 +3.8246085462964987 3.2508690118576165 3.0324864675693246 2.63898440035409 0.6957161276561068 +4.1959805314454 1.9594209881984561 3.578437435018239 1.4583296655219278 3.081729310755181 +3.258103487291717 1.8077530671481226 3.1318140201511158 3.7339381073469484 1.5703724900774707 +3.5208567641441992 2.0638289745173792 4.730032939352258 4.450069850096561 1.4836810004480108 +1.7763451071894516 4.634386487068152 1.1017495998776021 3.6311776605183885 3.816596237887361 +3.378886400466945 4.731741773665549 3.6181555664249108 2.623439667574185 1.6791895009851452 +3.5684008715012117 2.7777013889279396 4.785592351012744 4.148598443478203 1.0153654071208862 +1.7905783023209065 2.3505285374532856 3.1014646739472322 4.0464730338868655 1.0984466605987757 +1.4112725658929088 1.7045122457423787 1.9506295241056177 1.597858755329097 0.4587338282069429 +3.307690682326696 1.6748600805825173 3.735663274404111 4.795938582534092 1.946874290503211 +2.5845194271238676 4.3401884168189415 2.1310594944930115 2.966133868365439 1.9441509229674914 +4.177056086394848 1.173370750655096 4.535628594356547 4.305448482313314 3.0124920713784893 +2.6672971322714787 4.179690839292057 2.1682244774261608 2.928374102623299 1.6926789942936011 +2.6614268734154973 1.1515626117959252 1.7071519312066945 2.7205960916582486 1.8184496569521442 +4.971982357378957 4.050359013179626 3.1165852237825096 2.4798052506142345 1.1202135166125022 +4.262736221762319 2.2238846235768355 1.385167787889035 2.173180914492101 2.1858363449998355 +2.7575081625197115 2.57653623897671 1.6795794036308882 3.5005160735559895 1.8299074274369103 +3.4693731388903393 2.192768935945918 4.728535304240605 1.1294417816599012 3.8187946364340855 +3.731657090970879 3.8786302139952964 3.486788868658076 4.33388268665472 0.8597494026631723 +1.990842421444306 2.6458258638530943 3.152396245527962 4.010110534960345 1.079202071961579 +2.270265954309484 4.575237428640987 4.32909362436651 4.313139237217031 2.3050266896396794 +3.364446655619719 2.157287081087136 4.915248584487214 1.6496908426139067 3.481537247236396 +2.584066907128535 1.9661186624843214 2.8136814283947835 1.2065773531043633 1.7218140265063302 +1.961623214420877 4.926860976780861 3.911047610721928 4.089049394010532 2.970575638185227 +1.8817587118421732 3.456866427496171 3.685796715298866 3.7009445389465396 1.575180552341228 +2.996284082023197 4.798042872552971 2.7257603255304392 3.3596579569579497 1.9100159544832922 +4.856851622851433 4.606812005747312 1.8476610650657226 3.4470187439640774 1.6187849749650842 +3.630275515775154 4.89384155063234 3.105799359080863 4.418273640508504 1.82186384339053 +4.878332974960841 3.5881926975745477 2.3039863392200637 2.622335776806164 1.3288371983601936 +3.3442760316209434 1.5762229496657754 1.0939540717901748 3.251230774912823 2.789239049355019 +3.289478355863163 4.969497028357754 3.6330990326571704 1.443835497931294 2.7595901080433896 +1.5433593450436294 4.419773143359498 4.6959831795627505 3.175781917369629 3.2534240757570294 +2.8715483475288632 4.719391512558497 1.6090794291030068 2.462091284055827 2.0352281413239117 +4.912413372789743 1.6083045322041833 2.8264051613441707 3.3123720429281716 3.3396555272111716 +4.326417587864711 4.683369541723797 1.3482970992019578 4.992604536975023 3.6617470418328875 +2.8198399192747843 4.406511540534042 2.4640703584752934 2.8467643184907265 1.6321707939862709 +2.9821470077624497 4.177410017555227 4.96211892755159 4.770648558697075 1.2105017822077637 +3.836154396158504 3.747235899679223 2.1770124148117436 1.5508681752497337 0.632426365478878 +4.46565783860902 1.795263178218732 1.329518153255755 2.202399635044645 2.809435837226209 +4.53985935326566 4.879190727415214 2.358529033986426 1.3347772035882866 1.0785238021136878 +2.3804559262926572 1.3708527545867262 4.906566152664611 3.2197319059073317 1.9658861463349995 +2.380011588428309 3.053949012045816 3.7006489567731076 3.0176042451714933 0.9595528797305212 +3.6969518607196106 3.6541653473913835 3.8473653931553415 2.7405245171401904 1.1076675541608925 +4.804721950815765 2.9568450532524344 3.579738712461042 2.8038700319688536 2.0041510017753073 +4.540247863836015 1.1563473636723152 4.680960892242092 4.765546547848015 3.3849575075829863 +4.094981415958644 1.3011218588337887 3.171126091877734 2.7158440936166324 2.8307124408668773 +3.2618606713555773 1.2183096899255839 2.1872957509237514 1.4408716146877492 2.1756032737746906 +3.717707844402062 3.530133995779196 4.585587169288377 4.134871714260605 0.488188867230794 +2.695143698979009 3.343965434137069 1.378039201719691 2.8885244477216245 1.6439389655346202 +2.3592846375378365 2.1025842392020473 1.725205471286284 4.0766489856567585 2.3654136415816835 +3.074700906728565 2.137172171070906 4.295232877665262 4.495264307112409 0.9586306394803569 +1.2507057963474857 1.6344116203206474 4.217116607161049 3.548700787933393 0.7707203557352705 +4.068287091452186 4.219365585710498 3.65945821176493 1.1589824996629106 2.5050356281377435 +2.9225767453809657 3.9880738638656905 2.3460967924789173 1.1016103639080161 1.6383011262879632 +1.4899310431765183 1.115122354532736 3.2208551542393646 1.0472330388789919 2.205700490426244 +4.2706298518476205 3.47815650395152 1.0008589061523083 3.7272872124323952 2.8392649253655353 +1.0785898016742839 3.226319738895499 1.6625489516630831 4.993162992536073 3.9630460220008232 +2.2694911939929714 1.530911520504088 3.0961350155857477 3.5491909611511097 0.8664638618563788 +4.825662860436978 1.2851623493099114 1.9815004850164186 3.550295610311617 3.872500744278947 +3.7039995037432503 3.7097805566723077 2.515559438205741 4.163446420903545 1.6478971230989639 +2.4854187287109406 3.3320999716625552 4.593077709282618 1.2449003894165473 3.453572135113386 +4.369408485511082 1.3871640061598907 4.649242292590299 4.423156578744262 2.9908020470479033 +3.7052591552069463 3.7145915634314743 4.804167338582831 3.072454202287245 1.7317382828424053 +1.9902493649192334 3.898270395730576 3.596681467133673 2.1032326269422645 2.423000968280335 +3.6626159745373466 1.1994780985458204 1.4111589388608867 2.4555238059263655 2.675396451314224 +3.5301859832695186 2.7805749114562266 2.3062446100321052 4.086716959722354 1.931838126499368 +1.585536154594649 4.252031114100734 2.6848378371575623 3.6655443402275707 2.8411231254972322 +1.1778465029586274 4.440780258625789 3.901941234544575 2.493540338678525 3.5539175254004562 +4.881433859091658 2.7193488604212837 1.5599891777434913 3.2991283390463213 2.7747462161164544 +1.2227132980912745 2.6817476654512835 1.9907647070514312 1.547123313869041 1.5249914658392139 +4.710530019289228 1.695267814511288 2.047093544116239 4.364376391764052 3.802841826787578 +1.8871972596075697 2.7014774279278204 4.110427728979514 4.492271507317843 0.8993646999829087 +1.5180647370761675 4.3910001745539 4.496124459686695 3.1113697561179 3.1892481272192152 +4.63859045966247 2.5722713993534656 1.2280268880217267 4.148717964011458 3.577724251582609 +3.5911185025904797 2.1162011339547764 2.3205027156803775 4.851557134129289 2.9294398292938233 +3.6011762253611113 3.372997901211181 3.8441083606177613 2.4182203895005676 1.44402972746013 +3.9499179450677495 3.7651091401157237 2.857383879959744 1.2973195979742664 1.570972583565563 +4.846237644507154 1.8814986306146264 4.371954049642971 2.3120032609465975 3.6101349936459783 +4.273330454850077 2.9360776294036857 4.65102666304227 4.636942107207624 1.3373269958680325 +3.4058594864926315 2.9689029815267762 2.968223911857317 2.1327459220150518 0.9428438146070893 +2.6107842756551767 2.482090962883686 3.720737871590002 3.9005565796217114 0.2211260647465464 +2.710737621935614 1.1650013137763904 1.4293189888165467 3.142896888439805 2.307736976442282 +3.87110554769317 1.5787568774105072 1.3866827627918776 4.805167239657416 4.115932281357085 +4.221181803245059 1.0620762645781827 3.6781850756577588 1.3850022149431909 3.903669483589868 +1.8630160208745674 3.7970072809112825 1.8654170629193114 1.7810422617829018 1.9358309071210764 +2.437003319265211 4.921617549607389 4.487435968313977 2.161168355635528 3.403649347305851 +2.3392889829421164 4.683267532200848 1.8541010705530128 3.30305313902673 2.7556664413748138 +3.5959967387649145 2.5073205591334684 1.8556401008636803 3.2814733497124866 1.7939387608331736 +2.7933260137187097 3.565613840936682 3.4115795946296674 4.521743408463114 1.3523654024021319 +3.4161157595167717 4.588250124391166 3.8743084750249017 3.5885240079585277 1.2064707750028227 +1.7284017506266323 2.114463036956337 1.680895788196294 3.6414257467400053 1.9981794301688605 +1.7176386913231023 4.087050376105868 1.0047191319338644 2.699718421070016 2.913268666319185 +1.4001628187853958 1.7299743435029935 1.1590650519502579 1.7602360869638822 0.6856983704048734 +1.020188735006276 3.72414224431528 3.5579345936482207 2.652662978921626 2.8514700203463783 +3.4836723692269245 2.2660459114350737 1.2971933019760717 1.6559459218293848 1.2693768679814303 +4.010981607476448 3.5872174261203527 2.3680060472650895 3.797616242754238 1.4910940253541771 +3.54113856188678 2.027669381790039 3.6071736787482944 3.064184398725595 1.6079260919962306 +3.6571245834452664 1.033227857867093 4.668879180663552 3.184705651244878 3.014565489739266 +4.0738620612330205 4.883183846732219 4.040653218553218 1.7454828365536699 2.4336821556833512 +2.5893934058621055 2.7714472796048493 1.6592012157267355 4.490201488595265 2.836847926471637 +4.329217251130347 1.4862332735557713 2.282454424053067 3.900258150136803 3.2710620282831955 +1.253966571246837 2.046354926458394 4.826286388583407 3.7224219062371597 1.3588215853674184 +1.1148863753762024 1.1669568490059077 3.140359700182243 1.329587507624442 1.811520705806204 +3.211986847008684 4.494134698398191 2.0700533896762296 2.766697109141352 1.4591831909300932 +3.534601819386933 2.922309296960337 3.2143606493178245 3.2378214010301085 0.6127418215614377 +4.826865559392626 1.8079933684009712 4.843424051082769 1.4483162594889234 4.543164780423883 +2.5257734922081165 1.423560722975596 3.7750996572881887 1.7365418211157153 2.3174535680525334 +3.6947342260007816 2.3593191131640685 2.5265563918942835 2.136072381529467 1.3913343544753294 +3.021352744951037 2.1285672308735046 4.114281045908644 4.951636393264389 1.2240220389731322 +3.616252577923728 1.1818606694221043 3.572013349619336 4.5981376831415535 2.641816631037172 +1.3863718696583613 1.981798905415423 2.8018710720171573 2.299675222910766 0.7789313357223027 +2.733257568898856 4.444299022820429 3.467664242209614 4.458709472808198 1.9773298930958008 +4.72455597422099 3.9061381872516536 1.1587458417289702 2.4885704320123727 1.5614868282986587 +1.2062184446643762 3.679280356230547 4.207076211158184 3.411499376902305 2.597879465572629 +2.3535038785388145 4.505604812374703 1.1603284443418107 4.013886047328427 3.574119391259898 +4.633738844647132 2.8366275727766452 1.804554562884459 1.7347926852876543 1.798464801726681 +4.086743294765343 3.872246357348348 4.13685386945147 1.2714538843246124 2.873417131383167 +4.32257266446573 3.324749505262929 4.075580347368266 1.7279502594142158 2.550885745561451 +4.931837141666733 3.924848431560389 2.519067033789614 2.034549460081433 1.117489839557256 +2.969930050908824 2.5710837846559222 2.439885960811492 1.1386331155143292 1.361005992454788 +3.9887014130674965 3.9628704468840867 2.390851733398247 4.953039902153844 2.56231837423165 +4.510619055640774 3.303295383345573 2.072969400064986 3.3669966406365623 1.7697844357507662 +3.8280304117988386 1.265005906349391 4.020834016440745 2.8057581232065107 2.836459772648531 +3.1585850419302135 1.1193018902382064 1.5711355430045466 1.6524450661361607 2.0409034791794483 +1.0827049339120247 2.387877267297855 2.62979570213443 2.2043238773901543 1.372771318715188 +1.5464855549359164 2.2564635610055093 2.4074699568158757 4.445977639959252 2.1586065744681524 +4.114303681914583 4.847581240376583 3.392594614361256 4.515841226001806 1.3414093067762602 +4.117437723930298 4.568892475042574 3.907246007141641 1.0046773823323312 2.9374676192307643 +1.5160732601015967 1.2029613432765949 3.0062113758764832 2.3999784355097953 0.682317704917194 +4.437027890969665 2.714594604895034 1.190264895863653 3.082418909208674 2.5587151531961347 +2.6789338639110296 2.611247724407034 4.65641836592812 3.2926609270176743 1.3654361082322866 +3.2542281491457463 4.146551574168474 2.617137868271829 3.2692931684045936 1.1052364590147883 +1.4223365868622295 1.498637187317081 2.7019895214152125 2.610210547322449 0.11935309679807651 +3.4009459040645287 1.2379430066825967 3.6818850684476807 2.166934251734627 2.640768356206614 +2.1314418917716864 3.9478352556336525 4.750638771664116 3.386808307185562 2.2714133019161387 +4.560367606657463 4.2036065112214125 2.3683704754659303 1.0997072539214803 1.3178713324586255 +3.302614960400512 2.1312774691420158 1.7600740432744502 3.3442985861611643 1.9702281392550371 +2.847577820236963 2.4404817749722016 2.9952995788163546 1.70753075027248 1.3505834834764832 +2.1871937750882378 2.660281092518782 3.336379332721911 2.3381777233695806 1.104634809711884 +2.6686698341962867 2.9133730445724426 4.265310483373234 1.3781545450058985 2.897507389743496 +2.2745740801806305 1.8363083243350955 2.7767292136175503 4.395161242884221 1.6767227278542782 +4.157277803161381 2.0009118419236707 1.0509274848041312 2.5978697582616275 2.6538546599605786 +3.57914870240731 4.672593513377131 2.7176563974688994 2.696285347800964 1.0936536363953338 +4.479317258966743 4.585371159934439 4.767684568187101 2.347668513708078 2.4223387735506123 +4.053153569515117 1.4671865036774214 3.2289642690293623 2.48562737232327 2.6906830745373678 +3.764892709218304 4.869492273263606 2.7176926183299073 3.047446229471853 1.152769552404219 +3.6955285364654196 1.140844515160925 4.22026023273024 4.128778503792294 2.5563214499428626 +1.3998511442543724 2.8498222091284098 3.3541196974765715 1.1514566038062686 2.6370704945429844 +1.6484884903543535 3.7315845385822226 3.9643771770934246 3.8454024392326134 2.0864908661174657 +4.213666723399191 1.7349193495613329 1.6628471109421983 4.368868892227153 3.6697060405564743 +3.18596576280956 2.2277780344338813 2.6495978364983626 4.7363061526238965 2.296187126389573 +3.5573979951948074 4.187697870362764 3.196737628864392 2.240564296528768 1.1452272150567122 +1.3726925687289016 1.5638663831339086 3.620393856642833 1.0441696795021844 2.583307654577397 +3.616482229255744 3.0431666030646225 3.1010011319993867 1.0089577280896846 2.1691787411545898 +3.927492943812327 2.6438117987237577 4.119532478422192 4.803746464124529 1.4546429322987064 +4.072951829640361 1.2839311506672626 1.6885468229425293 2.017156073994436 2.8083127296681996 +3.1321854101343964 4.002940561737921 1.6468067606868257 4.123548154301035 2.6253499699823126 +4.880387686146249 3.4655835252418132 1.5360431064217215 4.917300727863967 3.6653204384165075 +2.6530477266719634 2.9493193705828595 3.2926763104451373 1.0751008248193479 2.2372791335535496 +1.7742369520552939 1.0473725794990374 2.345868390473897 2.9167612351737673 0.9242567047206693 +3.6435156601824286 3.1874770950922335 3.1597780874101375 2.3447022578156336 0.9339806105260927 +2.8469091526192516 4.747959948166388 4.966989510256079 4.01765011942981 2.124909270115972 +4.0018336640690375 2.4220276708003237 2.5509161913631515 1.012586899525945 2.2050496562418065 +2.973422691144 4.283436891706598 3.472944812998913 4.215645550630809 1.5059022515935838 +3.957826886795761 2.741751306729214 4.959792156926683 2.6086476340072275 2.6470210396006197 +4.068674501926251 3.3218394068799784 4.720869175122964 1.3911868910566785 3.4124106980282503 +3.660515988213494 1.9881229574002006 1.8479325118985281 4.219023818859986 2.901546559244064 +1.8859701707448875 3.2023347815784846 4.4989815931048796 2.1190529237918496 2.71971988625174 +4.764092066624814 3.181116175057204 4.345193133113234 4.752190159492326 1.634459926937853 +3.9299582437242426 3.1374341855934396 2.459940923455207 4.975538782153893 2.637484970460596 +2.0959609039771827 1.4830609386213314 4.205970971198039 1.9959038490582444 2.293478373976192 +1.5581797967347697 1.9171704983822258 3.09144482412738 2.848117353603067 0.43368488765588004 +1.7250844622305097 3.8821701921656797 1.275675872876294 2.8283335336970743 2.6577743805664547 +4.838132686620762 1.6171304462600835 1.2460891387828101 1.828404565250966 3.2732165660572017 +1.1004094847184436 1.4832259851380076 1.8306250270467328 2.0768399396387247 0.45515959418226515 +2.086482884118236 2.0749176621911176 4.085432771632702 2.981742479376191 1.1037508847468644 +1.0109012076386792 1.883460149503867 2.7242005015526423 3.5184471427975916 1.179909672033321 +2.975738762971521 1.777634328970219 4.493743278183285 4.68735281560901 1.2136469370273149 +3.2798804280845 4.79257755650319 2.612602970276779 4.200947136388854 2.193419657144618 +1.569745005556412 1.2442024566825962 3.1158039333914473 2.077165268782368 1.0884614034260436 +2.2376194712775166 2.5079043292309993 4.01634843064649 2.0698023812378805 1.965221470192914 +3.7620253536080415 3.449566872669126 4.074205933108368 2.1216413926650124 1.977407036223809 +2.5279994729914597 1.9125365090393402 2.600446110337344 1.2679362022869403 1.46777972293162 +4.168750856022736 3.6418208315887886 1.7232610486868798 2.1297038212436217 0.665470493721226 +4.94840896480795 1.0725486661605026 2.0262585475363046 3.87966782545749 4.296209841955559 +4.93934628423894 1.4785195093325756 1.4301411198568466 3.3291060728942066 3.947580253620308 +3.522233535593596 1.433256531507873 3.6772248281574513 1.2424082441174318 3.2081391368697325 +2.9565618865092347 2.7687318347230625 2.5330395370319905 1.004927176529013 1.5396127807588431 +1.2623459041848863 1.3410593252682856 4.52525770853986 4.527425558595649 0.07874326785520722 +3.510046590492897 3.864609530467971 1.0604799643866696 1.9808021567584748 0.9862595075211261 +1.6178901918557265 3.119950068316187 3.2046960336550465 2.249581801393878 1.7800076036748427 +2.1164612381467407 1.1388603887638435 4.142112957653017 1.0700875642853829 3.223824349776168 +1.8127311862281394 3.6272202558296294 1.4279749581280514 3.436485372734266 2.7067479877677765 +2.1431713171255793 1.859482395069875 2.092716970677814 1.3576833318444663 0.7878793401998301 +2.9441974717281387 2.2569866494113144 1.1729450264648276 4.5368182156719845 3.4333513579848036 +4.631684990146382 3.450142097535294 4.383848570613571 1.953997452032724 2.7018919418711715 +2.5853248939620967 2.1509407131828024 4.301514912936929 4.029229713967705 0.5126683587749572 +1.1105073194475574 1.900498334723121 1.070899559617438 1.7791999318839706 1.0610255517983647 +1.949447477229111 1.9761834585160085 3.4922810749301587 4.453676811097956 0.9617674221021387 +1.1302230143891854 1.4389990340853371 2.589512921653925 1.1933499599257273 1.429899872732721 +4.251918960047007 1.979841041067807 1.088511162001362 2.5436965079829745 2.698129437420021 +4.535938137524209 3.2084319740926066 3.4972733268632656 2.4157327019779595 1.712309182719695 +2.8460823169055054 4.942629132344662 2.368555065357711 4.945797740278016 3.322301665225245 +2.7330103789513798 1.0647926943986956 3.317961862905374 4.528792588807833 2.0613251295814043 +2.035380818967292 4.904853584202407 3.798020594448855 1.4665888905548519 3.697221624456417 +3.372787441207446 1.644425993866053 1.607928451403009 3.6532921783424994 2.6778248763008827 +2.1017180984073915 2.016366554569483 2.031019397000774 3.6564082594701115 1.6276282868870524 +1.7962687244837494 3.9400464663531793 4.933127982897651 4.995490972515402 2.1446846269344255 +4.684186865761829 2.509939695355515 4.898084584967107 4.454654429871358 2.2190045201549506 +1.903323616933819 1.632290710595786 4.1923561021612255 3.8598134657053724 0.4290028454206925 +4.58480648641109 4.505358571646754 2.111522733048772 2.253701801904491 0.1628706811586435 +3.1239088408805267 4.579690359080413 4.481950359321454 4.474591222536406 1.4558001187067497 +3.450277582016737 4.759214807933713 3.4102917772705386 3.0578360885654106 1.3555595427320168 +1.215617043346533 2.7069118657662616 2.173152497711282 4.867191464275083 3.079254163062875 +4.005898268039713 2.1030644543225723 1.877309938648604 2.22291875226166 1.933965349915128 +2.1792019544808965 3.2944822427376477 2.1669113852494344 4.050408452833102 2.188929264496762 +2.0739390058461313 2.7193849736809277 4.45912044809214 3.97852276680775 0.8047202176223291 +2.14507242227547 4.030036041268859 2.972599526633994 4.909831903468582 2.702953408178699 +2.6711240238360774 4.6108928164743475 1.9029792524662188 3.520454047340958 2.5256539115540773 +4.856288532096009 3.812489821428261 4.677164450786509 4.743775017641517 1.0459219454664859 +2.0736808749931943 2.830744820704558 3.166220926192462 2.80163514421036 0.8402788884171486 +4.077019782226227 2.5592550689801508 4.192792889408983 4.917309347565373 1.6818245517634782 +2.2289337214645784 2.0529113109229034 2.382522215504287 1.6289442799247444 0.7738627746604867 +3.137209212811617 2.402137997073162 2.980213274999618 2.967566205010518 0.7351800055676975 +4.9531340960563135 4.746522928860471 4.686301334429574 3.5066712611801827 1.1975872762034476 +3.484116022892689 1.2360360271227613 1.8378223610521323 1.1991020271258899 2.337055269425986 +1.6150940309808792 1.6148511798870375 4.62804063976801 1.2720559976622958 3.355984650892502 +3.7586990601729524 4.839722420536129 2.2295944533109044 2.8128082532323333 1.228311785366275 +2.4045357449815623 3.2789262979540394 1.334506929214803 1.2119501774047006 0.8829377081888379 +3.1721364095124356 1.2695007962886486 1.729347162955838 2.547955316560015 2.071265696586195 +1.8521436504896993 2.533524261542794 4.533405275435603 1.1144341067234822 3.48620759416358 +4.27434550893898 2.291760685520962 1.5065559796467944 2.0279352683340948 2.0499948645593067 +2.6056755040898887 4.868228611037086 2.1517539218078516 3.309559153196131 2.54158602364478 +1.6731837585687632 2.5867206226119204 2.2108319681926094 2.2474382814853673 0.914269995208578 +1.598397693240595 2.4058859464112246 3.249569268629743 2.9986417962324783 0.8455778352181629 +1.475437512214905 4.512940796639973 1.4856955903577034 1.1503088589563544 3.0559630990071125 +2.289501674062696 4.103547000659065 2.0632184490981844 4.425106399628554 2.9781328274283996 +3.0892846105215424 2.3398119273509415 2.671139346321266 2.560188762937287 0.7576406369593603 +1.0221733849271888 2.8509810895935264 3.0976771440037636 3.5504808760295146 1.8840299467851902 +1.496021027832315 4.884503756844134 2.097552580118554 3.9389307356957306 3.856486576749385 +3.2405119752734155 2.365132052335305 3.723266647302377 2.762890350428325 1.2994662908596937 +3.455493750529437 1.2687194685857421 2.493770720221417 3.1548379599267067 2.284511250920409 +2.895057869931801 3.1932460937154357 2.3026165972653065 1.66373793942117 0.705040535183591 +3.6113317288886115 1.6903977035215552 1.2104145213646489 1.4903641388669104 1.9412262408468894 +1.2181556331617092 1.5377696704489456 2.4578867777338615 4.982486211172171 2.5447505638368724 +1.4738822417702626 3.438965142265949 1.4824086081334205 1.1326385624309205 1.9959684092418066 +3.4475262355192373 2.573026631347319 3.0091930608926303 2.7611087435456585 0.9090079131725723 +1.0549785010320396 1.6239292601601423 2.100724762320417 3.097183349720545 1.147447028283181 +3.159687592212875 1.043059727919108 1.4674451974044627 1.6127091952230046 2.1216067366425424 +3.641058860533199 1.7162759867396082 3.2736398843865646 1.8875116269392458 2.371948704618853 +2.4901987300691864 4.657304324145228 4.168398821425713 3.941982183620668 2.1789013630154566 +2.32606403764968 1.5083246641852917 3.054081376492808 3.655512474202384 1.0150946006191124 +3.8483367936633894 2.0882021035499023 4.510711770464111 1.3816612300619675 3.590129720738771 +2.7434869599722314 3.980321288607507 3.2156741472500974 4.8323688766539075 2.035549312734214 +4.7978991432492695 1.106588899791718 4.133530785556113 4.225360775244262 3.6924523098424404 +4.3219926761642995 3.6416606368843976 2.659281124655994 3.0917984107754086 0.8061779496257967 +4.108482086775095 4.214463738160022 2.119701260705922 2.121865424374009 0.10600374538033319 +2.0167045363115235 4.50565026832845 2.1135279252378942 1.2233675305137583 2.6433381140634857 +4.95578019643791 3.337372923085558 4.381794572687673 3.1120130903168834 2.0570821848947975 +4.167741968935914 1.3960263212619282 4.383908996618391 2.4798780708295225 3.3626985291460847 +2.1890572697642785 3.5624986687968683 1.034564730868004 2.025323670574801 1.6935006800074022 +4.5246424331309925 1.3974634083931927 4.405428124067921 3.4169393238178496 3.2796888207541706 +1.9176844511628381 3.1657675207805713 4.791973468141229 3.254603450128915 1.980206534922458 +3.886486840220771 3.661197771739298 2.038689903667321 1.0292832671264387 1.034242197103767 +1.629289716880849 1.5171427549057017 1.6758123927289494 2.696084165684836 1.0264167924244045 +1.164566816638684 1.7337398980852479 4.364807028740032 3.4988254581978673 1.0362828171701248 +2.958159142248312 1.9811346374601624 4.037873265114373 3.9005424333882215 0.9866289273577609 +1.8796675018517588 2.4353419913449907 3.3146801509904744 1.8840090392005266 1.5347944384782768 +2.306470010907842 1.2884929288506788 2.481588677764249 4.893958839854502 2.6183596274264866 +2.410191971942781 2.58729319300814 3.6418270282321448 3.1390861284465714 0.533022752628862 +2.886741368957233 2.4297616414996144 2.1980059129761216 3.2948087491550373 1.1881948210446605 +1.1918968470222824 4.222788210367189 1.8040729117514194 4.261930994097784 3.9022261350867526 +2.72637577836991 1.6863727341639363 3.8950985774174733 3.056600423532556 1.335921212506975 +2.086572033912267 1.5066762377711682 4.8208715060209295 4.057316285717773 0.958799097222312 +4.169515432866722 3.3372718042535197 4.931155887015419 3.580909833012603 1.5861254249640677 +1.5283965886900424 1.0059165826529077 4.044022725874166 4.204465216341919 0.5465593741361128 +3.998995933639045 2.2639351788878166 3.076219313466121 2.27415932967394 1.9114748338072924 +3.41700947471743 4.621166367296803 3.1339512116167785 3.5969795384162713 1.2901120313233072 +2.465644731547946 4.2960455074873565 1.7551451268861666 4.35133676920659 3.1765670218356816 +3.9530966629259776 1.4960243404977116 4.109384050152421 4.840477153225843 2.5635330157820393 +1.4968491616631843 3.9114576176343867 2.782326032752603 1.9886561693257967 2.5417013687212666 +1.137480500355676 4.110461778046961 2.481112846848778 2.4200505488226773 2.973608293259745 +4.269171065565935 4.234307566180169 2.3952094186356367 3.881796884669412 1.4869962198197217 +1.535923672775398 2.2565863541931934 4.150837614895699 2.3126469255464386 1.974411231430422 +3.5790518765640313 4.286235089038554 2.5371589355279283 4.157142475923687 1.7676127311034397 +1.333977858358197 3.3160138224268834 4.632924275181697 2.4815028861153916 2.9252488024429097 +2.350162285973041 3.164784285292425 4.1028677752512355 3.6196057891084488 0.9471806316779188 +1.540002738119679 4.4742886073697266 4.239321836336209 3.1777018027608808 3.120427960740159 +2.773238733123973 1.3939003771219767 1.4312090786317953 3.4158089927318502 2.4168597641121496 +1.846784713791076 3.889773156537622 2.232324970791819 4.85950140616239 3.3280411355273802 +1.2804948862019279 1.0863893404661984 3.9082026662324623 1.9316891856482852 1.9860217777799778 +4.5955541118001655 4.534279516493467 1.1629706754683173 3.6208731648183656 2.458666147158488 +4.050584557190756 2.6682877356922825 2.214317460857244 2.417307452528164 1.3971218413020907 +3.652375938095277 2.369231400983705 2.5606905512818012 4.96240474490233 2.7229930170600105 +2.0950590709662444 3.764747487820254 2.668062314313143 4.848378858802468 2.746204588800754 +2.9338306202282958 4.692950435773412 4.409577110187955 4.13845993653077 1.779889616604171 +3.1528950575747823 2.5599705371839083 4.237719647885487 1.2645353293869874 3.0317296183278173 +2.239664074381441 3.2618602685766485 2.4414105329043365 3.880686329973922 1.7653327956669973 +4.241349861286199 4.104467746011022 1.0778220697821954 4.830488080126066 3.755161634160691 +4.113904060558703 3.330456268656488 1.6435303137458983 2.0426111726155676 0.8792360175473982 +2.445890207358512 3.5338516565228546 2.7781667976332884 1.834206216848517 1.440389424059792 +2.271571980390333 2.39915559598947 3.8768015891348053 1.6989707992029786 2.181564697308891 +2.8150866379589403 1.7081577899704827 1.2641692071325692 1.1527554650432044 1.1125216835798792 +1.9282914661217938 4.631658510656449 3.714834002750214 3.5095400113822914 2.7111508627090104 +4.518466259766919 3.1039112052367996 4.253669565012152 1.6120915827421012 2.996481309588068 +3.009424563289881 1.304883952013534 2.3055299871005257 4.2734222176147565 2.60347047734531 +4.947042432816081 1.2239996594930331 1.8378051208153257 1.8356793112526963 3.7230433802279648 +4.659945035975083 2.5853901391994296 4.0157773418988025 2.7560551441612144 2.4270719056527064 +2.716615281137518 3.353614053706459 1.1062746412630697 3.816584606277281 2.7841601144168546 +3.1571483861033105 4.763965776172837 4.555979588292445 3.4998880816999227 1.922808205549037 +3.3166583531261 3.8096112159431192 4.3015281416756626 1.8357804006843406 2.5145406036020383 +4.370809231837594 1.5215381482917483 1.0361494921945682 1.0989600822565055 2.8499633116505985 +4.9786732608381365 1.8198455315627582 2.719349701766318 4.023350885033573 3.417398383156615 +1.5640925483786 3.889606339874745 3.7976487603035833 3.545853846245462 2.3391056139439947 +2.8727484155590433 2.0721240529890714 4.483821042792605 1.6397832130562429 2.954581281148327 +2.0167134110868643 2.3949576635529413 3.605690003091388 2.8338730226798656 0.8595174028343939 +2.718268827754636 4.314806324203703 1.3117779216027539 3.5450346934966195 2.745244576859713 +1.9151228772882365 2.211676849130555 1.4035787187563127 4.7707267675138105 3.380181983335643 +4.510785043408479 2.5979204542423835 4.0327466241800165 4.800886940800375 2.061332210611186 +1.8001586979214892 1.8893915003581823 4.259750789091635 3.7336882690233546 0.5335768623650167 +1.8925045006673318 1.3661822046473642 4.08513263497615 3.9486728443706407 0.5437245936499744 +4.31093930269825 1.3100995868813272 4.802833443714395 2.9762705549058213 3.5130287483590155 +1.7959058839718849 3.8307499665381592 3.3428807000413734 3.7240217681798535 2.070231618485411 +3.0814697217913096 3.806159337416396 3.8358527058552974 3.953040483802844 0.7341035446686786 +3.306396262670726 3.792288528892395 3.8397840288084835 1.1785925385468636 2.7051860272844253 +1.5970071800179015 1.9652882259556717 1.3691905648337976 4.567309276557331 3.219253674855899 +3.5010237546696596 1.744075131184895 3.1923806844877416 4.926494680774393 2.468606857659249 +2.2282725762568147 3.0925252531624543 3.246209927459914 4.341246041721817 1.3950042226016275 +2.7518958008077954 2.8359520771900293 4.805324352518753 4.623590879893838 0.20023114810527634 +2.4031304067127257 3.5405275785082746 3.748565388191621 2.6953392881906035 1.5501475878547393 +3.2145091126037233 4.679014149332197 4.718286328386808 4.227332083846512 1.544607093352611 +3.0323462242081334 4.124581054980896 3.1690335060702868 4.047715838387402 1.401805823457533 +3.898178491718956 1.1889798755968983 4.445778219615892 2.780937048238926 3.1798511392059696 +2.776411179111108 1.726549875805893 1.2957111949180034 2.2371381856182624 1.4101395445120566 +4.079511948415057 4.879416837800351 3.858225428559651 4.722839642611785 1.1778818154651547 +2.4244064996222296 1.36060264468825 2.83158789453202 1.865108218272432 1.4372757586473215 +3.8990333927604057 4.121862442234891 1.1964296824937586 2.8515032030439085 1.6700063304418848 +2.2823908808044853 1.7191179682315 4.66919590811222 3.9094508204685154 0.94577427129162 +4.588661762143298 3.6627531461372653 1.1447891468315707 2.33081624102924 1.5046484750150693 +1.8119738889815906 1.226695964788485 2.5317961744808675 4.731256896528794 2.276000377060465 +2.3338389191306215 1.4582436971249395 3.9206402279245496 2.6636147492522477 1.5319203787503153 +1.7354688390330355 1.8475999963665202 1.7305189672325905 2.8521722105609153 1.1272441593168256 +4.777919812604367 4.924059642712299 1.7369551646785113 4.952979377546259 3.2193428813494833 +2.6338244026058732 2.867354653931065 3.4102162699165617 3.4792737084992003 0.24352681188649872 +1.5647224371482222 2.5435470631497887 1.0058432133691864 1.147703118964638 0.9890510003446015 +4.580460894914783 4.4360062535895235 3.455571166419187 4.618009659378574 1.171379696475101 +4.071521224347753 2.3425584406409254 1.9059322060163622 4.421930565736249 3.052795449019869 +1.1257984196456974 2.899058499249842 2.8341959814017783 4.460300488864656 2.4059649164334846 +1.3332524922595148 2.492149925600568 2.8108689420286055 1.2202221195879392 1.9680448609584766 +3.385833791434476 3.0087740921867865 1.5863100546928481 4.847624108533227 3.2830387409492325 +2.2265717556414173 3.679790731161794 3.347453040635232 1.0909090754714095 2.683996284932183 +3.280604760794896 2.8790337844246547 4.200167519085376 1.9532549207308736 2.282515163959953 +3.093538741765832 2.83857122689839 1.6090296398545898 2.6812660071767644 1.1021339578499216 +3.5226331083912354 3.155182188623454 3.596069463377246 2.5728581652351337 1.0871897438275688 +3.880122900645542 1.5319435452166204 2.343602687512122 1.6900534163029084 2.4374316267663145 +1.3717353953214677 2.8375867056320274 1.0807128024355253 4.794335778309579 3.992457347408842 +4.235009381863935 1.6369546435555158 2.4260503181878166 2.247954689140809 2.6041517767466007 +1.744734999384597 1.9880548139782874 2.0137575696147856 4.832342597049538 2.8290680601663287 +2.8848384770866526 1.7166704374306576 2.094627749042816 2.8635078313168743 1.3984967464357911 +3.4909092612687487 1.1343104431928563 3.697250389863227 4.935550379370987 2.6621316371230805 +2.8972568340291627 1.8039893778622242 1.94450474863612 4.120265340157734 2.4349882714978754 +1.3619403288443612 3.1988050099291203 3.886611803284736 1.4580103837982583 3.045024911449551 +4.942000483588295 4.176724942752573 4.224550259352301 3.4106015533600775 1.117210432008143 +4.837330558679893 1.3266187597890835 2.000296688994102 2.3819433938638634 3.53139512688811 +1.1921037952870464 2.796277375205321 1.4158303469139213 4.683273253303048 3.6399939589263655 +1.7960349512534783 3.6459730822132386 2.520401253066962 4.3322643001185765 2.589424412808772 +2.2056250738551846 1.150311536410094 4.821121361534775 3.3211125587693497 1.8340428213890307 +1.1464807363541842 4.201055874494904 4.737347554147057 4.376312213813588 3.075837413049835 +4.605418774410447 2.7037784175445796 1.6401666545744589 1.088861923416645 1.979942664184479 +4.879489379192977 3.5936555730083497 1.902602644127167 1.7788638133434689 1.2917739257977623 +2.911260876479754 2.2431809805267395 1.6801375776790608 2.791558674836283 1.2967604260551577 +4.142015408022457 2.5755889158914855 3.051960163484299 1.7661496790986297 2.0265736001946366 +4.30998898633411 1.7913560685454084 2.345149872006396 4.827752868231672 3.5364995986760053 +2.8016278085342097 4.069383085923349 1.2667510683727916 3.113346294724095 2.239892268242255 +3.002197429941063 3.854745398429731 1.1613899871997662 4.369366087429823 3.3193295555309654 +2.921266677091656 4.9554638552144885 4.595757658431831 3.1358730100746173 2.503841318053514 +4.906100395678134 2.214907769244605 1.0285191182169902 4.14101398057131 4.114625380366022 +2.1542125183738756 3.7665312050449424 2.594535359747956 2.956236328948408 1.6523919445789064 +1.4183711366739407 2.0605128454704444 4.826663132861608 2.476727022798234 2.4360923002948547 +1.4792584461713756 3.9604863400705765 4.747756282466014 2.999069790501093 3.0355224111582584 +4.514238792206811 3.9696454477013696 2.2000136486160007 2.3464511177207954 0.5639378008587828 +2.7684369265748425 1.9716032950629505 1.28457696124517 4.046523795298644 2.874594606278673 +4.303115273985847 1.5776449415431646 1.248651604621116 4.407666542143084 4.172237278548782 +3.883623082076787 3.7369515086663405 1.5646005377912324 1.368475348541215 0.24490332848912275 +1.8969292930247845 2.42458659792539 4.023984405294618 3.5093962478795 0.7370367719231223 +4.813271209167484 2.1018262108219274 1.3755931268619204 2.993923474123919 3.1576774838355917 +2.8926986541553497 1.9123112085005451 4.769936058596215 1.3936244390704924 3.5157701426205277 +3.79433607767519 1.9987819307248134 2.7898973548650385 1.325992278187706 2.3166857292590124 +4.95207148902748 2.4606978281647134 4.921313905139469 3.0525050511483607 3.1143842490605267 +4.542673001922635 3.4586592489894534 2.6002735005174835 4.2914955143929365 2.0088100250559346 +3.080748826659453 1.1773858040076672 1.161894836052321 4.310106230213605 3.6788620221917916 +3.3235956641248 4.592208985885261 1.1418536131382928 3.4923295598436823 2.6709767756737812 +3.171758213559247 1.9290588915088014 4.5146348719654235 4.7130580206722925 1.2584408412664398 +1.5117000266353515 3.842084314241737 4.221789665813251 3.069575316805271 2.5996709087849186 +1.740383999408246 4.059187230120024 3.2201025382696193 1.7796358614637273 2.7297971847277576 +2.864557498726745 3.857891934688705 3.0460000799202422 1.936226216672456 1.4893996539598704 +4.575241619290079 2.6611943977037433 2.103191635395399 1.6152485627946378 1.9752633263849766 +4.053797889411008 4.9989349827798915 2.9828967826623933 4.732939618169467 1.9889530038116583 +1.5580874189588494 3.036660641294228 4.155338895832309 2.232064661090519 2.425935398115301 +4.741911606603081 4.465894579188958 4.515811649640311 1.5299594255924243 2.9985828158105354 +1.7042612363251464 1.2582599321948047 2.446581022302508 2.9179309519718784 0.6489128751113558 +2.2333884788445006 1.23845231949494 4.0673911951215205 4.69336158403267 1.175473049021044 +3.4605463125394484 3.1888846459101297 2.221243310281118 1.1869124473387438 1.0694112376214007 +1.022137822618605 1.8652259470072252 3.3654659526038624 3.561406486237197 0.8655577844405521 +2.996859479778524 2.055490206238512 3.616310799494492 2.9754014951909222 1.1388331069599866 +2.467634570443166 2.8689558944838764 2.3891165986809266 3.1640205226305103 0.8726596681881494 +3.263623688799546 3.689816542972791 2.605061242154468 3.7685687132530754 1.2391085441762613 +1.4801428317874326 1.2519099593285623 3.7447145930236627 1.372515923703165 2.383152695652708 +1.7364881587728669 4.149801770494424 1.4568276974540844 3.402283990103592 3.0998197972027524 +2.2818647269118384 1.2363308850823316 1.7713570536455556 2.8941168437077045 1.534187263860305 +2.5917772038277813 1.095925937898361 4.561886184314087 2.7902641617207093 2.318666772246607 +1.543253592975216 2.0703653369373383 4.5998432117383565 3.567025491415614 1.1595513072026855 +3.973843668129663 1.929637521976621 4.005569898021301 2.926998413169625 2.3112973014965044 +3.0145612108549376 3.844086895344994 4.659117037085666 1.072924463872715 3.680881692393336 +4.784021871850589 1.828747115167527 2.82122820293245 1.1779490715562657 3.3814220663952317 +3.395217740007351 1.9654237623729247 3.6512794050304556 4.5257051126848165 1.6759866159031533 +3.4330931037828543 2.2883250756060716 2.9666871740560836 3.491552072450127 1.259355787655716 +2.35247982462901 1.5460385196176243 2.586276611586904 1.5320547077763176 1.3273023020030081 +2.7859320411381816 1.4153010893080902 4.895347553507305 3.2179930644388692 2.166136488800439 +4.336323410648667 1.8696058180779964 1.7106346340527532 3.493572517382515 3.0436102209892213 +1.246885397232119 2.8418676302667136 3.408495257213282 2.1346610813137987 2.041230469933647 +4.004851991440461 2.792864013469482 2.019877329632669 4.956371209600053 3.176776851752745 +4.755017885118224 3.723484661961559 4.61169949368486 4.4342502199756595 1.0466847831204484 +3.780992373155709 2.207055723234603 2.9233828285075547 3.9686605370636974 1.8894131538573702 +1.796579045818957 4.7355367446595995 4.2468052525033855 1.5454261702588319 3.991856873882518 +2.7261467984066123 1.6414922112228432 3.562405541030142 3.0535329713872503 1.198093012096203 +3.115949742099885 2.9447789425563813 3.2480617455332066 2.456320007072922 0.81003359377033 +4.239693848530054 4.518023533127923 4.803575932415597 2.8846130738592195 1.9390425126456643 +3.0983054631371867 3.779316034146188 2.4404946257213207 3.9816402558330175 1.6849051163310014 +1.0124417178784535 1.636262461563109 3.009625474548496 4.818907989875782 1.9138065577587267 +2.223125570482799 4.69590413724042 1.6763837787482059 4.615698051566927 3.841119919321932 +1.2035345674396947 2.7298051642611765 3.248772726926631 2.7094025335700223 1.6187717999160192 +1.1073902801093332 2.634929190902386 3.425092478400096 4.852377756508296 2.0905784819258106 +4.158013893258579 1.7328717026608027 3.9272921799926355 1.4811174588189515 3.444573327877711 +4.229014274244508 2.8851713858377015 4.838637615811603 3.6335588809469095 1.8050286606989485 +4.216490194195368 3.5948171080076814 4.820584546057175 1.417400467992231 3.4594998620154422 +3.2287821103210455 1.229482395492167 4.240913913887798 2.0343175860360847 2.9776276973126614 +4.697001540945617 4.0914055940418175 2.0902967068803244 1.0026479620615296 1.244880011491955 +1.376500077856877 2.876879275181293 2.6577101485939187 2.6137389894709497 1.5010233837613844 +2.151072201902209 4.274019047737827 1.449092774142093 1.7726769730876741 2.147465958764109 +1.1340806391870477 2.5300554149754197 2.026738572423145 4.385990707702236 2.7413165108130704 +1.2101964760674937 2.6369593834246423 1.1001906600503721 1.8450041700005309 1.6094718259151037 +3.489350262175518 4.339274572854344 4.037610850418875 1.4812026385661197 2.6939922567652412 +3.1404581407784997 4.341634206318397 1.530481528766407 1.4996647046028118 1.2015713116904205 +1.4793140789961927 4.374629864070918 4.558961380298583 3.0237480198332665 3.2771532703634842 +3.4054658378451275 2.8341939682157267 4.2861452718793185 4.709065363854812 0.710783337752392 +1.582529417791632 3.080763683583472 1.2832340105954914 1.4663282342899815 1.509380472227961 +3.7754860941003536 3.976135926456926 1.3172085246278527 2.5094672782160283 1.2090249338753734 +1.4113794424846624 4.0079882957110655 2.230859605796478 4.928033747991384 3.743945230632863 +1.448053649691671 2.1148668980722163 2.210729478278713 4.162213541307703 2.0622633091998583 +3.8856872667957805 2.1251195039297346 2.026646962386431 1.7576705843511773 1.7809961088065627 +4.520818609291595 2.558303980649606 1.5035984346972548 3.523753004126232 2.8164673177614863 +2.0598764723176943 1.7627181518577015 4.055076670226444 1.799712973226813 2.2748557038112214 +1.468941807410845 1.6204690224533254 2.801614028440381 1.4798240166123025 1.3304470422632395 +2.300677076200784 4.59626936383707 4.984576429180892 4.675099570463356 2.3163591856913883 +3.737128839813983 3.422267052036523 3.8826260999429945 3.5296394885952624 0.4730089779202644 +2.2078358523779866 4.484968690695964 2.641385957250641 2.703735750184254 2.27798627301065 +3.3080956667859014 4.476763530736006 1.8959821424253755 2.9332731814069564 1.562612324212627 +3.5686487175923274 3.7728398804127115 1.304852425676974 2.544931868121102 1.2567780450606545 +1.361864583052999 3.959779143288654 1.0536838006810192 3.0700375995734004 3.288592815261895 +3.1212871108658398 3.3194038889622264 2.2181384022676323 2.082947047332292 0.23984778550686267 +3.185890737462831 2.0141396415961768 4.239074675057142 3.411078534365903 1.4347746302692599 +2.1191491884235405 1.4344312471168648 2.0711442548492447 2.222581204177491 0.7012644356939101 +1.5122737848977423 1.9320897421308936 4.7702525850252755 1.6819227065375828 3.1167333662518186 +1.9746750599121725 2.9273792649811132 3.3967285351723335 4.715708017781301 1.6270685842641859 +1.9513630505699036 1.196463985447246 1.3983941193608431 4.983231374137244 3.6634588494694276 +4.2735348539104905 1.3625826162011032 1.0918013691343185 4.709571613464716 4.6434797804004395 +3.7217777725166568 2.9146717700846576 2.9328939902774533 1.2860620329171644 1.833978079188757 +4.147895018521435 2.183428508297606 2.412125993306168 3.542172762087285 2.266304121124002 +2.4497111824699904 2.6070140847361984 3.0159726939130236 2.8159006487500284 0.2545054543955311 +4.548728172163729 1.7890678805395295 4.896182344842597 1.097668416232982 4.695149943399956 +4.093648815078876 3.8144553060772175 4.834722748168976 1.0726982852930398 3.772370219735284 +4.449254313102154 2.2738403397612137 3.9169537033065924 4.807972589798827 2.3508170093592735 +1.0388059679327744 3.9883792785080336 3.949711828036776 3.6883635837120594 2.961129112225522 +4.69707145215897 4.861666541511605 3.6665586126131706 2.200700532794161 1.4750699826142741 +4.5670026177762955 1.0352701112835483 4.7426224733921405 2.7449732699985043 4.057553060310705 +1.1386589957175466 2.63036500679134 3.145295328236522 3.975004575927662 1.7069283110833586 +4.016250485946628 3.376414143493999 2.810870012568929 4.398955595513943 1.7121350308550325 +2.9766150012182004 1.3336292246263555 1.1096890776087243 1.9256127314616123 1.834430067077989 +2.538876801487561 4.3889786614705475 3.580314138400835 4.444833076819098 2.042123866761355 +2.9996849053425265 1.5160728471191396 2.4674619492639227 4.75083453249804 2.7230304980244124 +4.957508433125463 3.2071264437410014 1.4328620952634696 4.157609624406783 3.2385314891682153 +3.1070959933625693 4.308217173539341 4.599872241513754 1.1390251566405354 3.663352922439319 +3.3311766771956215 3.376417020949429 2.173927749029141 1.9458912512765019 0.232480822887076 +1.1173315750074164 1.4790512382047747 4.0032413289226465 2.4761124279851447 1.5693832530080702 +2.1673619012214442 2.2749447073250066 3.670550525861769 2.8045912244884104 0.8726165090142132 +3.0188470137671586 4.9980200053657455 4.859877345968743 4.605733625112852 1.9954234541880522 +4.9635418103342275 4.411751027898648 2.7838230558375656 3.8716811191519436 1.2197984397018133 +2.691523246249365 2.5633760184359287 3.1062750206372427 2.8365966179286013 0.29857687935229166 +2.532130534098114 4.157945728075141 1.5118461044644014 4.37779662233134 3.29498822696354 +3.231266927048709 1.6326945082336106 2.8928205530342885 4.126131969262339 2.019032151203837 +4.500629015112997 2.4960761341963122 4.6165672631195545 2.4892053439470767 2.9229952082643904 +1.536176461045783 3.804060615998893 1.864094347887845 4.5846304833977145 3.541837856946921 +2.8013808296473877 2.227889670303947 3.2240401842399455 3.993711649875848 0.9598365875810331 +3.011787616444278 3.90506975012249 4.217690137476043 1.5545773178174365 2.808936250714621 +2.9118792492902843 4.899917098581027 1.6825338559201857 1.5050509289381444 1.9959445582437092 +3.4232268067291747 3.446531351202099 3.321236834499464 1.707338799632172 1.614066283874859 +2.112953205681722 3.859991010912845 3.4016305810951093 1.0650225098843955 2.917512360103009 +1.3096431675078608 2.7318537367048688 1.7864053795389414 4.439139249747665 3.009930213358481 +3.7889523872608937 3.18645166142315 4.381319492739122 4.357425524302095 0.6029743330878004 +2.9541688966782638 3.1220782981626267 4.1696217369352215 2.737767398072649 1.4416658471457289 +2.3415272986165876 2.1337583027909104 1.390651963418906 2.85017640876947 1.4742386381459014 +3.9923675232613487 2.963956553644489 4.718241758069842 3.9364812565843463 1.2918121396360787 +3.2964840048738884 3.6695003582629755 4.315715200166318 2.8803748627022214 1.4830182346307275 +3.5859202455999313 2.906018357509943 1.7688382950111383 3.348420107319188 1.719693367784709 +4.152057235209561 3.7638914542747854 2.076260723286357 1.567459211582484 0.639962226854719 +3.8984140334411457 3.4144110775352887 4.458915889112282 2.2980397361288447 2.214417442547386 +2.627016434710296 3.0855897757120436 3.0585268357861835 2.4173224698025306 0.788309931457167 +1.377358402335327 1.9699511243348242 2.0601328041292533 2.5421692594852057 0.7638882630718347 +3.7405756292586414 4.281382538629952 4.282381555770028 3.2505180797543356 1.1649954276128884 +2.58833054342918 2.4647117033117727 2.849778389034761 1.5327769253771817 1.3227904115573939 +1.2951560703804792 4.105221487099028 4.344895697416312 2.566163075909071 3.3257115607117247 +4.885441747763927 2.5795507454160296 3.1695143156582066 3.3950162647875404 2.316891116079934 +1.2598283173811784 1.3114794581426952 3.4284352836294656 4.435957605059024 1.008845413589601 +4.179841633864477 3.4196392710402077 1.5155633234007508 3.6105394031115177 2.2286391379054384 +4.378366580985098 3.38202717922986 1.1216904809463664 4.629353849888464 3.6464221523718576 +1.6740984362129674 3.774054365544128 2.2059971724922294 3.4220898489108733 2.4266636154960084 +2.6532760340179973 2.158596160676483 3.816157458831807 4.989155003436666 1.2730402258916274 +2.7010181356413603 3.2696799440916284 3.4333372169941847 1.3643513923650548 2.145711675623314 +4.261489372801597 4.031207910192925 4.1969717884071915 3.966520469813977 0.32578729604228035 +4.152767736719361 2.26175095425628 1.5560375815036713 3.4195573832235038 2.6549294760800985 +1.3653828340594907 2.2140421969952504 3.388504951087578 3.3088066591056156 0.8523934138901894 +2.7600643600552988 1.7817884724299713 4.738056992542927 3.549938903269769 1.5390413595375607 +2.365800854712338 4.545649301780217 2.562238577631506 3.958914983206656 2.588907923058401 +3.1131536285747012 4.811752007585294 1.591778806544173 3.5259473255567557 2.5741492406456823 +4.4016862338259575 2.0821702969022295 1.2522619185726698 3.8407589212328173 3.475697183936444 +1.3132675593064729 2.4436506598135153 2.3538462683937498 1.5249788880092612 1.4017086316982423 +1.2761147247007516 3.949635199320214 3.5185152949544793 4.195075067161515 2.7577971015972715 +4.044539900144275 3.7625253493876505 1.1487254381066023 2.6103781167038895 1.488610345150498 +3.120440718397737 3.3016869789158436 1.920798884354713 1.7743280875156304 0.23303197479846646 +2.060934836953482 4.782106541545891 4.004997531428813 1.594315840292607 3.635403920041579 +3.1878790550866984 4.733128380873769 2.7522309399744187 1.934665919756812 1.7482013731629464 +1.1030199110527383 3.307041379651906 3.1131741259657093 4.329298496243643 2.5172741443930837 +1.4939208998683737 1.4783427718291473 2.198606136297516 1.4764711998447702 0.7223029451129336 +4.095736294767058 1.61771525463088 1.3493454406971517 1.2574595182186505 2.4797240366837823 +1.6774262666361537 2.8747506966595213 3.0609918075478277 4.387662057846796 1.787075752104289 +2.127631575293351 4.646218861978662 4.393559162282099 2.3537640745261617 3.2409945881914286 +1.5036639816613464 3.83168074418802 4.718288547182459 3.287993798080903 2.732289354353352 +3.680153655749798 4.542283912977281 3.9965013754066874 3.5045892372145877 0.9925956538932906 +4.292517709318431 4.523290215528564 3.162306479595157 4.816275987814145 1.6699913424148844 +3.209764980562906 3.1440610160163494 1.2816444009217824 3.767446398797245 2.48667017989897 +3.729410198398744 2.759459200779438 3.571161578493935 4.068462130025409 1.0900058606889211 +4.876510397470792 4.968201980344022 1.239415470981999 2.316825080453205 1.0813042185022195 +4.254892144246201 3.8016261695659153 1.0148480482202409 2.5881219907915805 1.6372663015456086 +2.4608589099854377 3.4597705464075186 2.055428432430787 1.0556268009473682 1.4133038454969074 +2.906927443393901 3.0332353334892046 4.2161455542995085 3.465826950724592 0.7608756074227511 +3.0095722616197533 1.410023370659895 4.982085506980822 2.072067187104657 3.3206570549494887 +4.740961842417281 1.478618954465257 4.393428006600923 4.364158588758495 3.2624741864713642 +2.397325549577063 1.7993882248294293 1.7449617954759562 3.5913216490980253 1.9407662799506966 +3.3866516717132957 1.6482521188959014 2.4971250437415295 3.504579224313098 2.0092279440588237 +3.373188281884103 2.4210707607567112 1.1811071068448404 4.408487976794404 3.364894508562515 +2.3320763269618205 3.711844185362881 2.842319448867535 2.0232264628783865 1.6045786558387434 +1.6997279712616948 1.2612863406523536 1.6670987158448374 4.600906934326102 2.9663886674337854 +3.0734219099956683 4.333728222637006 1.3241760998085037 3.331314319766724 2.370015999038964 +2.8406178416940446 4.495234557387281 2.450613921193718 2.1200841388312943 1.6873074446822143 +3.597998281897799 3.259944490514278 2.2171497820337596 2.0377178277591437 0.3827220820433293 +2.6059536530711576 3.426731032011749 4.995177974637045 1.1416761513756248 3.93994312238891 +3.5236887423012475 2.2964597315025888 2.722357985272274 1.7586079855724552 1.5604182474154982 +4.607885286334463 1.0628493786270798 2.025533200913451 1.7797931085952574 3.5535429897367594 +4.017307404390511 2.3133252837405247 3.9077755723506513 1.645522577448621 2.8321976767941233 +3.2378166960554724 3.6332757417723145 4.456505005565498 1.0199764962539457 3.459207431211716 +1.5814528408563033 4.64058446868716 3.9612225776284453 1.905238562692189 3.685831871649665 +4.300567894872428 2.299693026824987 3.972446053302909 4.084346846599818 2.004001503273972 +1.9791913050475647 3.422254702805216 2.4594955202594027 2.098528109442443 1.48752460202168 +2.046217157465354 2.7013698433108866 1.7314228133556764 4.564157267693424 2.907509162593093 +4.238680297071899 1.3448197683909773 4.705283040714409 3.61880670892677 3.0910935894909666 +1.2261098108907027 2.2212611090453533 1.155584431058836 3.150547194829322 2.229395105191016 +3.5733455363740663 4.18346801566403 4.518038987579996 1.3487047471475835 3.227526757024987 +1.775813402403148 1.6579625855287197 4.612981046942561 3.3126145940424787 1.3056958783981487 +1.3488828694697665 3.541157732807234 4.045100803675632 4.106514082874519 2.1931348949125935 +3.4307488167700315 4.319873751852473 3.247440349565059 3.658187036080917 0.9794161478498875 +1.2869941051938736 2.395373285952764 4.143603196672047 3.7164874911908825 1.1878266852569115 +1.6315194464283809 1.0212430404331516 4.16869823955815 2.889061657134807 1.4177119153024524 +3.652051488732095 2.7263873367295193 2.431635415612452 4.6272834769900175 2.3827976271042637 +4.232996150113607 4.308959154341187 4.985620247804254 2.219614343299714 2.767048796419257 +3.366366696520698 2.4176949315372385 1.1873909814481345 4.528280035290102 3.472969592115357 +1.944099447253269 4.202800640080076 1.6577433026788277 2.885605576644665 2.5708708334542587 +2.718334472434605 1.185195124950404 3.1437888684646214 3.51745997455736 1.5780197572694874 +3.8322860690999776 4.377327649625185 3.7142841284935018 2.3501555262966756 1.4689850808748477 +3.1039077084748015 1.7026437804805203 4.601706938322412 4.305948382983219 1.4321360685892552 +1.8551928245149716 3.3055698145559926 1.9800242206447969 2.720939042759764 1.6286645409261251 +2.967459621599471 1.374264432024948 4.110763928455424 2.3095139972049945 2.4047395341103113 +4.145984339851191 1.2056196173165081 4.449941179420654 3.47537178968873 3.0976652816159653 +1.9044606253253695 2.7845281415931846 2.6778341288577585 2.33378533811939 0.9449277240076802 +4.465756818031087 2.1614172707551744 3.2564069629361736 1.4798124422309429 2.9096853507105553 +4.721046143275251 2.8758399739953524 3.001715087496598 1.3499827761390146 2.4764905482418587 +3.7569630441589803 2.359830522810933 4.207071003756219 3.8324550794154533 1.4464841419725412 +3.3339624246694455 4.421443434795777 3.8792432203854257 1.6714906929450284 2.4610538738119585 +4.134990161995545 2.084063610310233 3.6391027150328457 3.7267133349736756 2.052796955652025 +2.6907410721604315 3.159998177024139 4.609320749836323 4.066801665660789 0.7173068988652831 +3.767478040426402 2.0932413667532956 2.449219393211225 1.4444010361158468 1.9526208977238368 +1.3337745750370806 3.8722280820382817 2.8431794270957895 4.482460302745764 3.021752471080059 +1.5144609971056266 4.388633919488835 4.6139750372833195 1.8816226877417819 3.965680187534793 +3.332335419718987 1.4909221281395424 1.7340743806859162 3.5424191846683137 2.580874627039365 +2.6176603302048447 2.325945853174217 3.3809224802055855 1.1618433096283232 2.2381710616928108 +2.982083370965376 1.4897777392129536 1.0287918897769197 4.392400446517936 3.6797878500725254 +2.378791341891297 1.3652261802787882 4.348550082175522 3.7554821447325315 1.1743270052491657 +1.3892513569234644 3.2286345737500386 3.8804183552742706 1.7165375766256146 2.8400194792550963 +2.4373281038989374 3.172867076161544 4.934361270776441 4.969405643257882 0.7363733344980312 +3.4705652114878416 4.133435325361542 3.4037916808342628 3.5644958647736913 0.6820723001284906 +3.3560706434190943 1.267310097692854 3.288622189819246 1.4053274981815318 2.8124223567830944 +2.2676716918248787 4.049280362159241 2.5870724353153465 4.2428048052984035 2.4321963603336565 +2.3621490314717475 1.0577577504967879 4.275185742757896 2.9334695123231063 1.871266698494802 +4.630379089302573 3.503656981049406 3.2543611012824405 2.4622846106907676 1.3772755266011523 +3.721167169309251 4.361184046155025 2.7538286183616676 2.8702337138009786 0.6505165246876163 +4.1444279256401 3.563280659751899 2.0656019462297213 2.94165120287967 1.051282285937635 +3.5048315945420945 1.3026307163333128 3.0749902456460627 2.6564619500446214 2.2416187548739366 +1.9460767396836993 1.8263703086085603 3.478605666197651 3.3784626048580337 0.15607133745572052 +2.6610488666668397 2.806949643601736 4.199794231854125 3.81773000712945 0.408974459501658 +4.198179479912383 3.0891187883216173 4.538357383336192 2.8228093779332517 2.0428217192094356 +1.04306793252491 4.666746740763585 1.830782428372864 3.407872669441785 3.9519946525460905 +2.8202972451169988 3.0863557776752772 1.787669622770295 4.80141115890387 3.0254628058139845 +3.6764733703824994 1.336887351525328 4.077069186034079 3.9654640932082255 2.3422464508195153 +1.2935956899924381 1.384213621132906 2.6702478264145126 3.044186477006778 0.38476190540507366 +2.0610342501168546 3.7759175188937033 1.6258524476685792 1.1428906786436563 1.7815938638955997 +2.6656609751489273 1.2806004963106359 1.1424392053158363 4.3986956751526005 3.5385871089169956 +2.031255411446738 2.605537185313546 3.7795526019259365 2.2618618740709837 1.6227090624053666 +2.078348833407156 1.4536277638710806 4.676673335266951 3.5972347106497753 1.247182488266139 +2.4946615071567506 4.798012784771997 3.228612254870558 1.6896407038645669 2.7701733777685416 +2.1172169743651055 1.1360620123054503 2.7772963254574297 4.412956086170302 1.907366748265675 +3.398795589104509 3.6749147367750985 2.8077282753760673 1.5902010922496825 1.2484447225896715 +2.6071633485960466 2.7519728872592246 3.351024484869504 4.634094342681998 1.2912157304319116 +1.486444981759489 1.6218224927356109 3.7599586984379045 4.151420219707522 0.4142091176118814 +2.8615554571335293 1.5380286339523845 2.217068104964142 3.3566189634690735 1.7465106386161235 +3.098730364851188 2.5962629532756063 2.399921036977025 2.3278222444444974 0.5076137661451998 +3.4493841696803598 4.846037152095985 1.1416831838525372 4.727457157678475 3.848170285298965 +4.0816248867010385 2.1678921334183356 3.0837814833517516 4.844377150783723 2.6003980762889407 +3.1823603510000087 3.1838992197774445 4.896025747198398 1.1764023992217103 3.719623666304216 +3.307928108801315 2.291451184181829 2.3407983292738446 2.008376547514069 1.0694529345755392 +4.620645281645649 3.1126448673151392 3.0614124653957306 2.3093491721316193 1.6851303945678058 +1.5753794494846352 1.937916856026126 4.4033703874599315 3.5118622706262417 0.9624032904776365 +3.4070519971025925 1.6109488940731551 2.6924040726930616 4.348435749972129 2.4430364861916605 +1.953332949937121 3.039520261982631 4.94660552673601 1.1819470446507707 3.918221071300724 +2.9136465433172907 3.9638264347895746 3.6512123178871887 2.675679456773564 1.4333674223887163 +2.678946070922729 3.831344698944843 2.371818728376791 1.3990352228430476 1.5080883085899743 +1.7338495454062985 4.597718536058684 2.199186678609299 2.699384250583203 2.9072225932372127 +2.843536178481339 3.036630276532887 2.873664608044662 2.8046515042930507 0.2050564292866028 +1.0257787909935878 3.1983064209553564 2.372669879620161 2.50330890415539 2.176451896477112 +3.066705178003012 3.0140618026819643 2.20436670671959 3.1288097648922726 0.9259407609393027 +1.8389615010698952 3.08353800718069 2.420922943223601 3.93012028548635 1.9561818160528688 +3.6005013237181456 1.4035595856648642 3.8244283592330914 4.976258696085726 2.4805777805371525 +3.971097755030448 4.455817763027966 4.9738337710320994 3.260985225194797 1.7801133747966942 +2.138206750859437 3.805138983490008 3.101478921776412 2.0985960805203776 1.9453629639397672 +3.515918860826341 4.895918435424399 4.080886345439977 4.260483563015321 1.3916371604881879 +4.52379705376622 4.352954012613486 1.6312911346803847 2.0563843477385104 0.45813926321414095 +3.8691152221437455 1.9712968192361093 3.4058077920294014 4.1341506637525 2.032780861087771 +4.009175950430086 1.2961385759607706 3.5694316653562037 1.0556609758337059 3.698596338446488 +4.043285806495554 3.3652414871760445 1.6156764137234076 4.713631239007816 3.1712880976764635 +3.983376375612262 3.9214290383411963 2.2129677057037034 4.38771227333425 2.1756266699582327 +3.9139470202252924 2.2508775606347986 3.02136925645369 2.114976966852643 1.894029305494201 +2.98426301008387 4.7343431470113995 1.369308403239227 1.9490862002889808 1.8436167659305296 +2.958224140827696 1.9259818248588614 1.6186206673494636 4.213146236524157 2.792326472312643 +2.6138529449015597 1.9451823321366275 4.8851003802842 3.584922722267408 1.4620473079833842 +3.8261885717339794 1.7407892622277603 3.098256198554599 3.6195865174367228 2.1495756747494963 +2.360870744782841 1.8306468836489058 4.796048371511088 1.3012430550523875 3.534798656623002 +1.3022014319993378 1.8434185118335633 3.639002467257549 3.2197330692659754 0.6846186935780406 +2.014964199655904 3.031094223378684 3.064683380334073 3.3982296495637936 1.0694733932304827 +4.9301187768530355 1.3327387599004523 2.9519256961192957 1.1739559092723777 4.012769560952914 +4.145722765002252 2.0588519004556285 1.5752893045250875 2.9581481299931096 2.503463308392669 +1.747705474313321 3.341611170809389 3.6451523593810506 4.474899630789947 1.7969462717992226 +2.2551418595353647 1.4355269635644743 3.7062453832784894 3.4312444452233897 0.8645195738839916 +2.377123941655676 4.145778026968381 3.599738452383412 3.864575000269182 1.7883723523330854 +2.303794401545426 2.3151938131736474 4.086179827612883 3.0536901954862197 1.0325525589695284 +3.170700509196188 1.228796558526052 2.0512429469484728 2.4127092127007033 1.9752591766411676 +1.3223135474867291 1.593676129447822 3.1470514701362693 1.5959599549918022 1.5746499735629342 +2.46736136323709 3.9044562084747256 4.102971412586109 4.770795463629205 1.5846862646467896 +3.9020779787157513 3.600596780253733 3.959296468469277 3.256518648768708 0.7647140490988643 +1.3651156545168996 3.569333513207506 1.5431298550252635 1.114853917965947 2.2454390766250234 +4.237577158345193 4.763499176046777 1.6815301644224752 1.970278649585195 0.5999747131230369 +3.8636217672791715 4.1243489190116955 4.947118788827172 2.360580976988603 2.5996454565423357 +3.641475949958486 4.080350712976037 1.2359310841269382 2.0125689620193743 0.8920635913380716 +3.0983719665230796 3.543982336650729 1.596244127014221 3.309661323535272 1.7704143840636177 +1.1343484607403815 2.3147585208223047 3.959977277647167 4.8157152685827525 1.457962763266978 +3.0997095274691984 1.865467543661492 1.1436221647879665 2.2453933030731372 1.6544645404939278 +1.970474677042279 4.709750695679453 1.4932948420910774 2.1873314303036273 2.8258308321728047 +2.3108342197273655 4.353620411098513 1.483842190622426 4.131750572046231 3.3443077340566423 +4.426794835195688 2.9567294477404316 2.766363903599474 2.5637139186189333 1.4839674052372531 +3.7748324551902313 4.473053138881557 4.459576518085919 1.8176427917950244 2.732640835757176 +3.7096242567514706 2.1489000059043244 1.8060593711893809 3.7442815497044384 2.488486568271977 +2.491021930502724 3.893046820212096 4.839796867034037 4.644783504217056 1.4155225194399994 +3.7195007646842737 4.326476023847945 4.517935690760638 3.2152528756588374 1.4371504729840774 +4.511892823411332 2.417859867216852 2.811071380266252 1.5622643659522573 2.4381330932966776 +1.6325305736441544 2.9052810405782705 3.503272324486527 1.61001688245836 2.2812956669073565 +2.451349605096769 2.9024671495274528 1.1733160870906905 2.7809804177470205 1.6697579581956887 +1.5190964521726027 3.8890080279054615 4.763304912912332 2.039138858514327 3.6107563707244217 +1.4793031233831218 2.805538134992599 2.3527063825990306 3.178895596164999 1.5625261350235216 +1.9301059401009861 1.6384815081274753 3.9084469273667075 2.727099568157258 1.216809924530127 +4.482966037178031 4.049903410866244 4.6808845459979285 3.6906570359616824 1.0807838636566731 +1.436838162420318 4.308223233666362 2.601180676125332 1.6758167268753605 3.016811340794474 +1.3756078858855707 1.9259446437596939 3.1435126772789603 2.3260243855089406 0.9854733148332664 +1.217925747470975 1.3313534608995066 4.244833463096036 2.3057452564503533 1.9424028725591391 +2.318427296193114 3.2616351608083956 1.574297912918603 1.0151144581323779 1.0965068225865162 +4.15629499238791 4.845281056158636 2.1316826626789585 1.4681519101612048 0.9565431802104157 +1.6027172997760513 3.8302079977560592 1.5723498684605324 2.1646594560314996 2.304895975335102 +1.9596601120455386 3.7562459809120785 1.0157070123344325 4.357598686833876 3.7942009367322176 +3.9517610113414667 3.9275911691187106 4.182302567449265 1.4404274756300897 2.7419816192694446 +2.4333121392076764 2.9253421935754558 3.9483342966918467 2.881794797749299 1.1745637816678074 +2.3905849904145957 2.75032844649106 2.165967627256667 1.6315953063333524 0.6441809773338611 +1.3518989016676333 2.592160510277698 3.428387040675973 1.65005903779871 2.1681096244446363 +1.3581512994659017 4.850952784243443 4.802802592787061 3.2946078400740935 3.8045122715237922 +4.834174081227747 2.147688704593772 4.1251374255285445 3.137377103623145 2.8623197117720536 +2.6101940625936617 1.35466564159753 4.401515946897128 1.6528884492330218 3.0218048806705378 +3.3048937085142747 3.874899586962655 1.7646345272898958 2.738770050792287 1.1286481823912125 +4.054512314539599 2.2103631731028743 2.8518728242527644 3.2418288742197428 1.8849275256008269 +2.6492154555744416 4.592314403871543 1.036127349174269 1.2152564828196648 1.951338199645016 +1.8921831536313034 4.628297319256539 3.5528315694059796 3.7269734285113376 2.7416502538485377 +3.573571801071017 3.6182404282087357 2.662271234591669 4.023869825228712 1.3623310934846755 +2.005703724410333 2.137531178228561 1.1828161209284747 4.916826912314081 3.7363371191267465 +3.993127609194711 3.7475085366021066 4.064589752505682 4.510557574819002 0.5091326225652166 +3.662462803127245 4.927055375854366 2.3143334820356958 1.4767070027751825 1.5168429364159497 +4.214024087684894 4.284492476157723 2.5631157064306866 4.294383848337139 1.7327016976254677 +2.015270883445452 3.58460283956683 4.550634725896408 1.2405528158659456 3.6632560707128663 +3.6057896002175007 4.971916294787453 1.7041656025837701 1.3541350740768627 1.4102565427976037 +1.4957546281529241 1.6596767686782612 1.2349654327897737 2.5108171462564273 1.2863390155438046 +2.533837328787257 1.75670498722286 4.324835152510106 3.4051273257180537 1.204075231440263 +2.6669575783535895 4.2763853846058995 1.0393141074517986 1.193435556087897 1.6167904268852573 +1.8917401068528727 3.0270581795692073 2.4618837860960534 1.2043998382555197 1.694170299973691 +4.606955537070624 3.547338924740029 4.486803240279841 2.8391413466061404 1.958973476336872 +4.636655767081015 3.9343387672712784 1.268578382998506 3.3093154307691477 2.158206863663765 +4.661411026558517 2.0459779390745916 3.0682581759366627 3.7504814332165903 2.702946319829407 +2.6747150287764017 1.4217651495576038 2.5975932706842384 3.717847306292563 1.6807297534497145 +4.173625811919727 1.3287212817951222 1.5777741383253532 1.1638658100312482 2.874856846828155 +1.9943617353211507 2.2188465102210952 1.2763323095854302 1.9712124697981164 0.7302409542192817 +2.0531429396170764 3.576395125033529 1.59426203764782 3.5299407788989616 2.4631584215611473 +1.8409785498162994 2.1192008399070263 1.9478356868662536 4.4811052178555855 2.5485019441511594 +1.9324797518685148 4.30312021788242 4.828106575887146 2.4329906670040153 3.3699430909271584 +2.03862207571151 4.6432590512556935 1.3740746594510473 1.1607852237184826 2.613355344718178 +2.6131259594068204 2.3595890662149728 4.20657635076028 3.9040058919539145 0.3947528831454795 +3.88865427613167 3.55710403246073 2.787252288165374 4.075133786671367 1.3298737978741828 +2.1709449078194285 3.4915098678810152 2.7466452280842093 3.057370349691345 1.356628878853841 +4.027539214437192 2.4938469260614022 2.531387390396917 1.8281708273840587 1.687224220404326 +2.463829328084358 1.6304404393439018 4.466819013523241 4.1858008002208145 0.8794931927444013 +2.83716390119925 1.3498743668270534 3.45127344016445 2.70623151208133 1.6634655492840478 +1.944559830770758 4.291843384905177 2.9421344696830474 4.28705282342427 2.7052810319336347 +3.78938637866863 1.4124391420796205 4.363075556047775 2.908197876903061 2.7868525663912753 +4.2354345954747625 2.5779701932633166 3.453596463516384 3.8773272130894885 1.7107705844828907 +2.094773876824426 2.423878956493067 3.916924632940678 2.486253823817074 1.468035802540963 +3.4640472649094263 1.579660006104965 1.5724116423561134 2.583583663689883 2.13854721665733 +2.872092389585437 2.0138569426957598 2.787295992463844 1.436793508351215 1.6001328200784788 +1.1643296101740095 2.004498426201912 4.791449041024119 1.9047808870567913 3.0064491797725217 +4.552926018249748 4.262306015345231 1.7851166876486562 4.466314421716436 2.6969021627152916 +3.367417725299485 1.4186859265563556 3.137910351814271 2.232628235192596 2.1487418025690412 +1.2823255278599084 2.9282211856582707 3.743569211577941 2.426491214047083 2.108000703970328 +4.926879352805679 2.381002634847181 2.124785577066607 2.8385622242309037 2.644043374281186 +3.1338398548071456 4.975286955353225 1.6548117462537135 1.3059547521247294 1.8742007967297076 +3.91635779287328 4.686967811258764 2.4700126959078466 1.8555725159595533 0.9855843622800472 +2.5446035033681933 3.055830037770559 1.5310386498023352 4.711521214649133 3.221307485287848 +4.8006691094669085 3.9586649375659113 2.147704783860252 2.326543563470856 0.8607870436939059 +4.686439612165534 1.5692982724510953 4.0488419101311734 1.6442041851723221 3.936858229610511 +4.376275271374412 1.3337031487797897 3.3902160146641087 2.4489247863671486 3.1848507496676746 +4.701017236746781 1.8428597755667568 4.019658220384352 4.907330479209171 2.992829115065909 +1.2397991851686898 4.453975475942106 2.056555042790493 4.816727374229371 4.236682726781732 +2.0783447520344875 4.949315140234468 1.824850902119136 1.674990099157991 2.874878994007453 +2.70953195649259 3.096589119479103 4.246428520337192 3.404422347624697 0.9267079595563599 +2.4467060509591887 1.4246013792205083 3.2016948525919777 4.506123982482501 1.6571763077285964 +4.8792913053518046 3.5163908323746544 1.7302837761907481 1.974308551498745 1.3845742270479606 +3.9069431153491965 2.9815788425485894 1.0372349961204277 4.287381163467881 3.3793119338852304 +1.9522172782407572 2.8490680284265633 2.7912469291309483 2.53007599222352 0.9341046656525954 +3.5375472573161892 3.4885059321911505 2.800890019702887 2.2840701165247372 0.5191414680904349 +4.221545569025988 4.48786868332671 3.376567711266669 4.1802081370902275 0.8466203016870699 +4.877818343258058 3.75071650975705 2.4596909608118724 4.559813449378431 2.3834582039684116 +2.221928183755011 3.0150783476147898 3.600775973418168 4.2442010783695405 1.021314372812054 +2.810327624663383 3.01173103511879 1.8305369066140509 4.4614633831444 2.63862416017353 +4.7311587880129675 1.2324555727181115 4.054636186873536 1.8088908131010468 4.157438691374185 +1.4708185277096608 2.1190514553707858 2.5571000505149506 3.6149388496986496 1.2406566219395774 +1.1005401418023988 2.378865912490733 1.439445018797092 4.683593860166171 3.4869210603284757 +1.3512973218856792 3.4288604449271753 1.3963109736799626 3.980943969759256 3.316111616734841 +3.3081136743791184 1.0451777396919857 3.9354302026172 2.515046872545669 2.6717724171125465 +1.828584424307064 4.941292767718091 4.693786988382715 3.7220153299859913 3.2608731019780173 +4.955093947252686 2.5938277746032425 3.635836498905175 3.7435060693032467 2.3637196691841984 +2.341665121881409 3.13948365519092 3.0246919783669446 3.5664454188877244 0.9643708842599105 +4.6679970033388525 3.190683121323452 3.4084343383425266 1.40121078530542 2.4922685846156947 +3.798479017823726 4.329418676483549 1.379741697232327 3.3614018134146018 2.051553981060541 +3.2405344256311674 4.306917064396801 1.0853298885274767 3.6398700621625086 2.7681848621390976 +2.3597307687045133 2.590952890175893 1.798524623762439 4.797395083212 3.0077712183636813 +3.8889124284906367 2.39083644047371 3.103722450286182 1.629131647510024 2.1020584438842147 +3.5074560296777006 1.9367351621784814 1.2181283905978497 1.1537350033378564 1.5720402513677298 +4.2530379579793784 1.6229470787946663 4.181457092715004 4.5880786624544285 2.6613378466004587 +3.58862347490366 4.356989171436987 1.4318717495655426 1.2651235403844665 0.7862511105710696 +3.28448920273974 2.484923806988845 1.712903128421496 4.563510337902285 2.960619240095919 +4.789148058731826 2.3472735337670936 3.179628055296471 4.767583131084448 2.912791190317723 +1.2485535558295946 1.4669287973105845 4.295653600062466 3.1459534629902532 1.1702555922856108 +3.8254146569654353 4.720273403384773 3.918705338914194 4.186097699466606 0.9339544156568778 +3.6957261828772072 3.4381217113634914 1.5218446044722693 1.2547980420872173 0.3710443777037111 +3.793987249771138 3.818553477074797 2.910923115622317 2.107841464756234 0.8034573028367644 +2.5357791500134796 1.2704045559735855 2.4140655406733855 3.3760909191998554 1.5895488958099477 +2.6964154485252396 2.438898006480212 4.047442243790023 3.5239765942333863 0.5833793956107516 +2.870367669111961 1.8302769615208478 1.51857219364671 1.280493271979961 1.0669912150338372 +4.164622624804945 4.315085435023639 1.2783162395251404 1.3665128468033427 0.17440670512996964 +2.574607230085559 4.120839418385591 3.4228450679658606 1.227985681924213 2.6848168847484226 +4.373262115543697 2.164079294837744 1.2383312137555196 4.7146825178932215 4.118920626217773 +1.3089049048746162 1.7255497038136092 1.3971447410789604 1.714683976141914 0.5238549935690978 +1.4116659038367532 4.833014185676161 3.1895279221104733 2.6380893839350863 3.4655026369966127 +4.306787518163718 2.3453185731213795 4.1455754929172635 1.287475803654984 3.4664238425395477 +1.8149927079617494 1.3095796484258533 2.5066012512038967 4.258693372240284 1.8235320565724151 +3.6943165073558553 1.1545630775932398 3.6202826696050647 2.1602393709910466 2.929517693720021 +2.256299137650749 2.251889500249459 2.2042470463076316 2.886474561200148 0.6822417657827974 +4.15566401350201 4.003390929121693 1.9772344623463218 2.049798938060666 0.16867926773137476 +1.3312813537015882 1.234836735088645 3.031767649626388 2.026885972321405 1.0094992569797523 +4.877658760485384 3.3243114161925797 3.7182718763177705 2.9682551688278735 1.7249385593508813 +1.8953227697131276 4.058113929436478 1.7063395253783131 2.8763881594895895 2.4589996760396566 +4.992571883900255 3.759602657199928 2.6207547087394896 2.6068651829070397 1.2330474576908437 +3.7931609666947974 2.9700634969758597 4.373512226697089 1.218000043377335 3.2610959175922933 +3.841466256804098 4.40884418249972 4.238156970238062 2.544827270220506 1.7858564285877558 +2.018854270014818 1.767751206531512 1.17102453345856 3.7177397725242898 2.5590645277875113 +3.490363045897477 3.588489138023843 1.7823668494872016 3.006509066940279 1.2280687678248843 +4.220203942518412 2.1375547042746184 4.508874816807307 3.9478703589193906 2.156885219785135 +1.9020743121958188 2.7821341768780954 3.5724236160046505 2.8075619943490326 1.1659839903301625 +2.698448086880613 1.5459249281914547 2.225431314147053 2.2989829535536574 1.1548677305103965 +1.2986736266533017 3.6510720032500172 2.2877051652645646 3.554565537361322 2.671837069247299 +2.0024198672214726 4.287120564849024 4.913941166937301 1.2484507036833663 4.319221875980136 +1.4986576523225956 2.2756855828014295 3.6031243854893584 3.331133013906845 0.8232567709770485 +2.9529786164617073 1.8781127536628444 4.802139198896706 2.0519715448904123 2.952754434109417 +4.754210818956086 4.271957640306724 3.1011675880941283 4.551025118340428 1.5279577829015152 +1.161027711637745 4.204923628384078 2.5818932684441167 4.458594471195122 3.5759348087447105 +3.5570706191289996 1.6604840585248595 4.339644190258754 1.5972458481985368 3.334334903455091 +1.683455370819622 4.823384041149607 1.1801906329720744 4.310844725729929 4.433976443697207 +2.854371545069525 2.4755831576056484 1.4064779702667147 2.2191477217288886 0.8966118264996706 +1.5222259386393628 2.7248667253279915 2.095006793234168 3.2218139954759324 1.648041059206644 +2.480854589274909 1.2563486024085075 2.8804456709996678 4.3889619288637185 1.9429452416658117 +2.8271439118758592 3.126102453747916 2.4365502365859384 1.913960688282545 0.6020598356926088 +2.4714398098348793 3.5977059456014926 4.3797083029216175 3.3068393668938 1.5554816496725767 +2.657382481307174 2.181301285044027 1.7316935812162537 3.535364767542396 1.8654444654876494 +4.380690396541602 2.28790142825713 3.5204864536542537 4.793649691719549 2.4496347271652748 +2.4276594538872436 1.1349299177663328 1.525918179931745 2.7684492402143586 1.793051334827428 +4.427817840747556 1.0927966908836986 4.5560319839282375 2.930754399186928 3.709972142415869 +3.748079895186937 1.7117560522271793 2.735783095158183 2.0718323680949347 2.1418322439850916 +3.679361195612752 2.3941550106308696 3.297011799897626 1.390220421847927 2.299480005853574 +3.985431607443339 4.537073226875117 1.0848414481058368 3.1651103535658414 2.152168022091463 +1.7894489473205133 3.148525020211832 4.19220907518879 3.26700666597049 1.6441068304489936 +4.100659749347059 3.3821926064449777 4.257612893863426 2.8414332816558017 1.5880049525937938 +3.6444936034662136 3.7734389489446243 1.4039843767488556 1.0737720290909833 0.3544955523927912 +2.003108501721201 2.1627583760743816 2.5579635356404697 1.1019179290850691 1.4647719586168595 +1.0248604144993876 2.493177344802292 4.845838677868013 2.69363694663707 2.6053650223582125 +1.8682719887765504 4.3564982388886815 1.6706876336134262 3.7696727016719733 3.255304622870158 +4.644864298793481 2.660227211864607 1.7609314040928798 4.912740467676922 3.7246053133324133 +1.5406597807781668 4.947135163477234 4.23456483899067 3.1291215948060755 3.5813516022652836 +3.9719340290462988 3.613160789049453 3.885319333314088 4.188710422434926 0.4698557126350199 +3.775082880029947 1.0456549461348996 3.442531930555516 3.4568628366399006 2.7294655559643513 +2.1602015013034594 1.9675036141180304 1.5507831911672065 4.441309274229094 2.896942096864697 +2.4880949149857763 2.7696378480186286 4.239938014845203 2.4348743710339082 1.826888387764849 +4.011467385491528 1.601357477499508 3.7697216480900804 4.155959050244428 2.440862367980678 +1.6279226445895265 3.7579714110497693 4.032707667643584 3.470546970116006 2.202982613944898 +1.151799001928922 2.063531254352485 3.992017032497723 4.782828538091355 1.206912812712091 +3.2185780103396717 4.037900603395252 4.1842631595359485 1.048858285330184 3.2406871550158285 +4.28616646503976 1.3096088758111133 2.7093451585852693 2.1215167742477865 3.0340463561764297 +2.641982050190804 1.7930192225399204 2.2544256648995966 2.76434888950981 0.9903330640394987 +4.801733959422725 3.166184566500088 4.901806380050065 2.340980459370523 3.038560714008168 +2.776669334673444 1.5627328095787307 3.77786938305005 3.292987337134826 1.3071925969075715 +1.0297605442198918 4.928216049951866 1.1291288965674058 2.9449859428957494 4.300615321424626 +4.804392789954666 3.627409279670653 3.3572230175331885 1.1908541268343154 2.465450132139838 +4.498529401674961 1.6830453164668704 1.6403449713361153 3.7406228296699653 3.512565688534161 +4.3018947893430735 2.088252597380709 3.0485274423968405 2.6121786592814233 2.256238465801487 +3.1464682527298162 2.806008645594745 4.871229207639411 4.493797526507548 0.5082985520465229 +3.9752140063731143 3.6387670432271086 3.4775034761034287 4.5401090549435 1.114597315263325 +1.5117890466201995 4.198155237558555 3.2529145828870263 1.682925517303179 3.1114994741875646 +2.1398478749319594 2.39569703203884 1.0664268143098816 3.8092364137010146 2.754716553423319 +1.437167181517204 1.0289840130745698 4.3865756988428455 2.0224771998821884 2.3990779920185794 +3.689760444461481 1.9446628409369935 3.35639012651999 3.389873680802005 1.7454188019596517 +1.8391405042334128 3.7932447543309324 1.5336290921842615 1.2092878254206565 1.9808383774490563 +2.0803292540301364 1.5348324372733675 3.1771262391104327 1.9481078776759855 1.344638579632007 +3.0139097859731123 1.6868584080643503 1.509821935651555 4.02149351082333 2.8406970026976492 +3.9758263419638493 4.461130069748169 1.6498249963738765 1.557174571179333 0.49406862832008125 +1.8038708006522657 3.8448917696415323 3.2093165568881488 1.2497503683983475 2.8294286071442643 +4.797454901369164 3.1811455305661065 4.687944527140289 2.0696764242212375 3.0769764121470127 +1.668480145015843 2.326846183494965 1.9153762756308814 3.105275526247787 1.3598919321921747 +3.2702448077285986 3.8808254033583056 1.1004432891831324 1.304192219137264 0.6436787166102211 +3.5887606911714984 2.181860950677265 1.425247476122292 1.6189848258908879 1.420176411752463 +1.2231818117615663 3.032763861356285 4.228130058840176 4.890726817826614 1.9270759349944557 +2.429091538024107 3.788146845406971 2.414530917697978 2.8947256440432603 1.4413945690668295 +4.577023239656195 4.9479211891584445 3.12145870116165 4.535832804127162 1.462196769277128 +1.8574531746486387 3.97140717879739 3.40521717140145 2.636256388197531 2.2494670963946377 +4.518254353162542 3.8132191042182355 1.0668567596689953 4.374758784407955 3.382202020507656 +4.492392416750078 1.113324992040298 3.9101928085409208 3.868347565735641 3.3793265135349406 +1.4991362870574418 4.259643620971897 2.4543108679281898 1.4213242456742177 2.9474501017576467 +1.3977117690814618 4.780207693218115 1.3303514191567674 3.1153725135782406 3.8246018072906236 +3.680376913255719 2.5485591686174067 4.6434781873760205 2.7930548791011187 2.1691191361668425 +4.9692155968226235 1.71275441819013 1.7007043747698654 2.8807119446013285 3.4636624074525626 +1.1872941743086383 2.5726162228230645 3.716331540176369 4.5056863577508235 1.5944272345040418 +4.95664298634593 2.6114025348591996 1.6609364828708668 2.8465316938644243 2.6278867516733935 +2.220462691454148 2.574353668295829 1.6770098277719359 1.8407288964557265 0.38992660455609685 +4.574387449533928 1.6827327533186054 2.0211339057385196 3.8761847093203707 3.4355320353642176 +4.862846855134407 2.248139723548288 2.7940654846335407 2.4778738512042695 2.633755974462703 +3.2850461777373114 4.24397593942506 1.550927512591949 1.5625622708204276 0.9590003417358921 +1.54156917164973 3.3838932430833837 1.6355730529039185 2.656890904798906 2.1064776615913274 +2.0761059133172557 2.087897657247949 4.482184236322626 1.7599217846395656 2.7222879901047192 +1.059594267784481 1.0432321458762162 3.4883644377187952 2.8895474381577344 0.5990404977934735 +4.6559178469121125 1.1168545113633899 4.934475333019351 3.4536702861023416 3.8363723594041463 +1.353429388174976 1.7772039187154434 2.3013987934171807 2.3750707792727153 0.430130694364738 +4.49785787914036 2.461217099335667 3.8979672658238487 3.8391668511043524 2.037489424447316 +4.41539141887111 2.6526013404498228 3.9387580429087685 4.422931052728304 1.8280734022511884 +3.076931074219481 2.6183587098271146 4.370483675244338 1.4064680125528786 2.9992794904884565 +2.8949895346620007 4.883791544430376 2.6136076417863574 1.5462576296919224 2.2571153010816083 +4.851454809390177 1.0076632264845191 4.033010429375398 2.514489463300025 4.132873051186894 +3.1568297261869045 1.289323122304085 2.0521118590362963 1.7365733151756029 1.8939761055007185 +3.928317026232349 3.4388347305057896 4.748708086720202 1.663545134683563 3.123751487946692 +4.354297706764356 4.89763176996006 2.133768926646327 2.052282266329755 0.5494105751059959 +4.058313047266503 2.128198618301274 2.9551075482992806 3.286662944459603 1.9583847144069522 +4.197549743484089 2.963119755063139 1.78155746898921 4.69742003879684 3.166397309611998 +1.4337841778017677 1.9463527160661092 1.8463163205795383 4.052492045343408 2.2649366072709034 +2.8524178374119065 3.5970418777652093 4.691183844370368 3.7249513227738262 1.219864847949513 +1.3824657280429928 2.4394979228514346 1.558576163379842 3.37643810196574 2.1028407187946576 +3.632915454493001 4.879945115883203 4.8348041835652875 3.1676047709434 2.0819790723813068 +4.0474901035039 1.841645010136352 1.3870526492462636 3.189124526665821 2.8483706969634652 +3.0127483771927106 1.0227089585461182 2.6126178223318353 2.746282051969479 1.9945232548285547 +2.8339278689032894 3.603336580477859 2.855178727530721 3.197210642814942 0.8420068862662775 +3.3363643934384624 2.0212529571443305 3.0931956796840847 2.7966649123162557 1.3481278076901195 +4.82045492074476 4.988223220169352 1.2446957664932334 1.1392322857236938 0.19816343776753176 +1.052872255637293 4.89980591688527 1.9691738351440136 1.8105080196800798 3.8502043367903993 +4.946323428706871 4.04172319018231 2.1528720727634836 4.459127871971504 2.477320609634393 +4.779770626923137 1.507656490166339 3.6135090801441376 4.997066299815565 3.552599260269671 +2.894381219511957 1.725378727549562 4.0269662502011805 4.524341876969685 1.2704130589369949 +4.747679377853457 4.290377843673465 4.906666695586043 2.3294634092330777 2.6174608826784596 +1.881570820742433 1.6193366712738064 1.243218895047809 4.169617105552185 2.9381241014618067 +2.91158318790794 2.7100248106564986 1.0645741053973987 4.060037921691811 3.0022373747206132 +2.5749228056317732 1.0159191299423362 1.081205134521003 2.9599158689498752 2.441320643518882 +3.159325515202123 3.760803609191806 2.3713218182616584 3.1279882860242263 0.9666023179083231 +1.2283320456339903 4.392100945108407 3.326822415756971 1.9404736070356008 3.4541853842439787 +1.3063013120965623 3.095912570373076 3.5179814497015203 1.1335497101561183 2.981312324514417 +3.7576869435728684 3.5731746452075606 2.1840415720385424 3.3838962412707283 1.2139588195348006 +2.319524192446033 2.840077669013069 1.1500029909695413 4.745768960755878 3.6332504498643505 +1.1589846716089398 4.286005429442556 4.421629854080527 4.909168019606801 3.164798932439002 +2.898854764045997 2.265996818925894 1.7919666161783567 3.1934097317183943 1.537709980716847 +3.448427925976404 2.2311541826029075 1.8855122288043198 2.5497384612347322 1.3867053955888486 +2.1832629207089043 4.00794707797349 1.8623047799713666 1.6751244128672158 1.8342597317723612 +4.172114291560071 4.474720264403413 1.4851078664602433 1.7681840266386306 0.41436998837006256 +1.7792478155696783 1.4660133969886466 1.5674651439839216 1.2395142792605882 0.4535058661765899 +3.7941552055715673 2.2223436155226275 3.8315895931612802 4.630136549635324 1.7630283367847877 +2.0730846445065683 2.8102724726441317 2.8922695497951354 3.9769691586552165 1.3114950001488341 +3.6355972906865097 3.827306506240265 4.481100368994635 1.3956123449374789 3.091437977693936 +3.4409822667585 2.331497944559491 3.24515620643632 1.325850953890452 2.216909586260918 +4.120041943785637 4.276032210766313 4.553199088248661 2.7837967818315215 1.7762650380354266 +4.059409943651458 1.6604066236609838 3.18213385370032 2.1067967017572493 2.6289859108930864 +3.350798781779439 4.340712599113305 1.866542979755486 2.118345073574728 1.0214370564064434 +2.3058755070751316 4.486198104702419 1.8406137355623304 2.4986652187145784 2.277463146617981 +4.717871244996104 4.6513484709618975 4.1201834949705916 4.599887885030298 0.48429493215163927 +2.6358181048273925 1.9669668127363638 1.8342402295810825 2.2357376748417583 0.7801039991454268 +4.847169220731987 3.835063945652493 4.692978301072398 2.1425211747427544 2.743936705007862 +4.306533089209758 2.378597620631566 3.4799188634433476 4.925218897507005 2.4095284516822413 +2.7331504883827886 2.0298452752558456 4.184661610156612 2.7431199726316757 1.6039577661302709 +4.8124709350070365 3.852132612172504 3.753769753815865 2.1178348640071314 1.8969798781215779 +3.0227041644919446 2.943389974327884 1.231894130396768 2.9332483064934 1.7032019179424467 +4.318506417715647 1.350314979277465 1.3073692328684623 4.139675202658605 4.10269637211025 +3.2255744506466026 4.255746584059489 1.5420624582885178 2.0932756451860874 1.1683709179324144 +3.4277684677502274 4.597729683518706 2.752860229786855 3.7109284512175376 1.5121851617172442 +4.387204092963303 1.0262315693069897 2.292590070743264 4.0814719188944935 3.807392095833794 +1.4315961497006904 2.0770572757011325 1.0454619818175659 3.1092426810834914 2.162362328528758 +1.6783708574252971 1.2189559048191736 3.684891250770691 4.497599370001683 0.9335719499546155 +2.0109769195404295 2.2019858903392246 3.3722717680751395 4.4610907556801465 1.105446160920923 +1.6135080821957195 1.2743509384661023 3.8169795624019116 4.760715888384382 1.002828909197239 +3.307068408400567 1.353889736972 4.469923925595066 2.7834214017943917 2.58054213011714 +2.2834664238282154 3.778571904184612 4.136276215223962 1.2676234407409863 3.234889354821986 +1.2730429940804888 2.6337710765000972 3.21091792708139 2.4203683312821767 1.5737056833168153 +1.7075632162566476 1.5399932760681962 2.865860759916643 4.552357413076852 1.694801063834734 +4.020794088075343 4.210609593474079 2.4931888728667446 2.0556459524758464 0.47694206490303764 +2.678693652214064 1.9490001358524007 1.4133297611889866 4.034276100147851 2.720627195982964 +2.1011744383339974 1.6071766872808562 3.4634004261920808 3.2277811069011277 0.54731183220235 +1.8983233602238232 3.732742981405695 1.2616909397402978 4.321730460616937 3.5677636154745422 +4.932591045176863 2.5332290523949568 1.5550711407732636 4.718558182300173 3.9704644859657208 +4.675570048029374 3.6366283484189825 4.087306026462205 3.7038127093994686 1.1074596965222294 +2.5937551904217733 2.2594429514861285 2.0301939412995247 1.6020435906734694 0.5432102685363908 +2.9749911972309295 3.0003015526836285 3.011436640475899 4.401477105938755 1.3902708763824896 +2.5678842086911238 3.8063834359513247 2.764061782449086 3.260730744622419 1.3343764063825658 +1.4748774165442944 4.056413302922378 2.0941878850071793 4.342930392988063 3.423619488181774 +4.424367305914336 3.626637987487203 4.699718173578217 2.7677327587472536 2.0902008775708114 +1.8599926666044144 1.3683153337457652 4.107086105963877 2.7385262398998016 1.4542017420730569 +3.2099736467607354 3.6625342398329246 2.6200879573141336 1.840830186338466 0.9011402576890113 +3.939710692626439 4.488360204932574 2.6253289174639813 3.381938614276688 0.9345985879856527 +3.1844252370745356 1.4306171401196832 4.543903446315181 2.9779812712137197 2.351160372968822 +1.6529197227519412 2.9006628875166625 2.5189011357520896 1.9729924043367348 1.3619395538174974 +2.177633716928478 1.913258843830468 1.517864482274577 1.3028507162534146 0.34077117410983 +2.3032615468709965 2.514905326488248 2.3562718142000936 1.0400754868718236 1.3331038449884924 +1.0188167175830118 3.5708298895305832 1.9111137254408384 1.5810791861908022 2.5732652461205565 +4.76870554815528 1.801721313565872 2.64455974506351 4.538623767510883 3.520010507005855 +3.765209633181313 3.4027314954370853 1.6476513379685622 2.1029728945533246 0.5819863574288442 +3.299872126779818 4.239014249391447 1.4049995387104195 2.253862609363599 1.2659211820576435 +3.2713085297333255 1.840900891647919 4.021305218925143 2.0010437558187473 2.475383281515383 +1.1916804671841081 2.8882101503982076 3.758706237554678 2.3671101075304732 2.1942544873202094 +3.7314640596492707 1.8731406736528489 2.14848657899514 4.603260046810366 3.0788437091269825 +4.107890270098851 4.267760638177487 2.3342483172866335 2.2432730213328744 0.18394303211449062 +4.649910475509323 3.84535847527926 4.304346068392164 4.970126118395475 1.0443021574509013 +1.6562868098135408 4.302834258891885 2.5403271982315023 1.4636841737780695 2.8571618089158557 +1.1048052833633824 4.287209658945004 4.145000076509463 2.957432854974771 3.396765154582324 +4.017801683711912 3.395382585159781 2.404824813398402 3.043405220298762 0.8917345290609064 +3.0414335708264324 2.4987289710710003 4.53117296744529 1.1578405360840858 3.416708939179484 +1.3194055523686208 2.7923780392189697 2.3735246784081916 3.287539115061238 1.7335138699843988 +1.8094647995169058 1.7142244033154572 4.456411089815018 4.8377953905647875 0.39309632143661644 +1.0852674657495043 1.8412933794338913 3.461570636906348 4.258072156745148 1.0981756932603408 +4.039013384245038 2.510383199199626 3.1038884461223724 1.9557930466061646 1.9117618285294462 +2.58716187388309 2.4920803738446415 1.0153995764973458 4.4922039020383355 3.4781041976556852 +3.994515605469948 4.124690116355527 4.752797005261573 3.9818532070486516 0.7818566002070103 +1.7954648561912214 3.326635073117734 3.679790682546775 2.273033220190726 2.0792904537599397 +4.963435880082725 1.4418656982150986 4.796017055117687 4.747280093708831 3.5219074146301117 +2.4079866967063777 2.270086839565166 4.636981506939454 2.3108880048522527 2.3301775363804085 +2.813625694285559 4.1110434599357575 3.1617606826237252 3.2602916153565147 1.3011537969548208 +4.61157451570596 3.4941760515290468 2.3751441587809388 2.5383558361128142 1.1292552321607405 +4.553404321193606 4.98231754573128 2.5103706954942924 1.8105878291106077 0.8207695256693383 +2.562278603604597 2.254133106808861 3.2939803643716155 2.8207215015706675 0.5647367514294935 +1.6634070974181747 3.0194192816742653 3.945295747074029 4.581792450334554 1.497964317703359 +2.182666300506369 2.3928223889893823 4.926331383968378 2.443076782497793 2.4921314165290953 +1.3526413380942346 4.905099084632898 1.2400320570098082 1.633416118868709 3.574172220398335 +4.708946192679889 4.709290054868202 2.1198913132960313 3.9641505084717488 1.8442592272322753 +4.656810153014787 1.4096085362472501 3.7386134802771336 3.5041139648333046 3.25565790013034 +3.5414563565184487 1.0253632848138023 3.202650180490951 4.779341346083009 2.9692893724149156 +2.636118536912743 4.55901128009628 2.736031253983311 4.762513436871458 2.79359025974659 +1.8014341331419406 4.6873247801688285 3.3741069434288082 1.941458358273969 3.2219321524736415 +4.763963735677754 3.0045675415689894 4.228439371078059 1.3060434903750942 3.4111394945668905 +3.7707056633440446 2.6150052972376367 4.464780591863789 1.855106525711657 2.8541271989463763 +4.9818168933325016 4.007648205733793 3.5391694974312085 4.62918618289296 1.4618963733735757 +4.9502965051849195 4.150569499904162 2.3999484660308994 3.5596820942198515 1.4087389294427979 +2.4270295398024504 1.9543634066977327 3.352825426251443 1.1501360580155353 2.252832378656626 +4.571228289532877 1.3400740658943149 2.2702884757696684 3.432951064371796 3.43396882802863 +1.0485929285579711 1.954787489024799 1.9173698717883956 1.2989677867955813 1.0970914821213074 +4.099899535250508 2.026195528336105 3.3866915335661076 3.7641074716429603 2.1077692232802145 +1.850921052502831 3.4028507058883624 1.1721876677388452 1.9512025870069878 1.7364762864777872 +4.572259769665364 3.095301450496943 4.257729122134125 4.041836552024801 1.492653837428229 +3.5245394177898257 2.828294904665247 4.872458360637593 2.002024519925664 2.953666679901494 +4.658326146402527 4.829545109605055 4.530654579184871 1.3199080124640972 3.2153086086827476 +2.4691606829282415 1.7779249978201541 3.4774955225986734 1.5350766593603664 2.0617463017138755 +3.46575302565212 1.1382579886995847 1.1353757646274203 2.7868749097650016 2.853889026123624 +3.6268243698821325 3.3282123168244118 1.0715968453726297 3.668146307988393 2.6136637637694635 +4.201298348847321 3.9540224534382187 2.936736639654883 3.383860529935396 0.510945341215627 +4.134520558390392 3.0309440391837894 2.291404016673923 3.903570754576842 1.953704871403227 +3.081978971644524 4.154441239096336 1.5788607132133978 1.2964454205631886 1.1090237655842121 +1.8193296536872965 3.5017040973345024 3.5740498526062936 1.24106933393081 2.876313937865019 +2.6467052352854448 1.8101958610517053 3.067309149179435 2.646614673232083 0.9363395619504388 +1.3550292068593586 3.2921093977888156 2.5489457157262767 3.755677082431128 2.282209512179077 +3.256770600054981 2.0403185788251443 1.1565002086290308 4.034708666543267 3.1247142984860554 +2.283041360355688 1.0536044977103867 2.8750693328656833 2.418942539260854 1.311322481724211 +2.322440107983085 4.270956300298589 3.7115060648380074 2.7706681103094684 2.163767873039332 +1.0752305957446997 1.2229581179653466 2.1171457186758573 2.2286311952752422 0.18507412653864863 +4.867567986914911 4.812773826464246 3.6757381416222548 3.205286729978394 0.47363164034637156 +4.3777534335012085 3.8842486728356826 2.8859099056772237 1.5168372222592472 1.4553030479184865 +2.4480745971850038 4.643152795345687 1.225658002593077 1.685027193987937 2.242629784436816 +2.0426895813908317 2.765854589790102 4.244652363465239 4.640988265664237 0.82465130615613 +4.724746638926863 4.721988163477283 4.296301222868839 1.3353401152508617 2.960962392536096 +2.5917383394873537 4.596305296564842 1.503018948320126 3.94753877478308 3.1613234360592357 +4.780519394080723 2.9064369207614718 1.3372294424534141 4.180486709275052 3.4053336109897443 +2.513276009513835 2.7768367442772623 3.77195012256965 4.712436764850217 0.9767186827419724 +1.326430246041085 4.227654555985908 2.0684998595202457 2.7387170954819173 2.9776322204051526 +3.330213655487043 3.641022555314709 2.340058320977465 2.2175486625283902 0.3340820088322522 +4.933140523527722 1.9878436498677452 1.25478934431984 2.275729153209168 3.117225010705229 +1.411339973233166 3.184742455105697 4.548933385616172 2.3338419742093865 2.8375317308533763 +2.897938726650507 2.135783017282057 1.9149035083316641 4.6692281329909555 2.8578288023126 +3.4504682270257536 3.273700882448691 4.226587011787258 4.487374416129049 0.3150504156038446 +2.0214656257849186 2.2954407526249576 1.5179160001277698 4.294970957635426 2.7905369746958857 +1.1948845938994679 3.630380336027424 3.6210274837560594 4.498025209476254 2.588583496980887 +1.963478702443557 4.023137654592977 1.8803592479080198 4.372766161999174 3.2333090208915443 +3.352261273374543 1.034798341161316 1.5046447710402844 2.6611579314089893 2.590011029375809 +3.7237915320280717 4.765015772179854 1.6553075422769052 3.663206449417261 2.261814744751456 +4.1731984975058865 1.8261060582917406 3.841559932831812 2.7313939755327405 2.596403545476314 +2.691283625684347 2.386422118864932 1.972623788298856 3.003188950197339 1.0747116316757022 +3.7903997238398834 4.6377858932550176 1.530749196760635 2.531189888596158 1.3110853892849215 +1.054389952610506 1.5784679679327867 1.4712043460920334 3.6658254612833803 2.2563287892919885 +4.842673849720855 1.9753757182231149 4.997610232203844 4.355247056645415 2.9383718321893744 +2.7860238898258074 4.878647804001101 3.2817907493997187 4.781089986285545 2.574290785421249 +1.9843125690751893 1.3191092674065277 4.063417026331909 4.836930665023355 1.0202052645387443 +3.705669799951467 2.5757014148795387 4.3960858668183 3.440682357732051 1.4797379553273546 +4.460088340927246 1.5113457524244218 1.6746770415443675 2.2982941784968225 3.0139643638820806 +4.353185204634067 3.8769648154887006 3.0249048764673954 4.0571578941691175 1.136807878048035 +2.1537924245617326 3.623105536171984 4.844298795600944 1.6357034004254216 3.5290176295806974 +3.0851345068097342 2.588244357678549 4.338289035574835 1.9772735852407193 2.4127357453770233 +4.937540488272436 3.280772399784039 4.937746626363802 1.291107653988755 4.005353454300637 +4.837867786612124 1.4906901820653413 2.2512647297403503 3.8039757598588118 3.68978447330343 +4.743944560566296 4.5123707965318225 1.4499817615049184 4.664102270711868 3.222452025382819 +4.199698338943415 4.291413922508703 3.3763220980308777 3.0160952703072215 0.3717191354780783 +2.1435497330008393 1.0213350934706211 4.599012157841 4.1852172066068265 1.196073559127042 +1.5611357700997828 3.1576972858406402 1.0049016928729797 3.3325691737964656 2.8225953615942596 +4.680154029857707 2.6261132799491125 2.0516441350868035 2.1882070452982725 2.058575437221208 +4.6319485457889655 3.32075855758309 2.4554558389702756 4.373302170413466 2.3232205526383907 +3.0889050988639304 3.2502804381820556 2.27988090494862 3.743781564492478 1.47276852938708 +1.6539526690106263 3.878328355468017 3.644648045404997 1.3357595496278574 3.206058839203487 +3.2596123055877757 3.703595834235945 2.91277159399263 2.136173066855907 0.8945538810277487 +4.672550052929217 1.5821486847175357 1.1964344316283042 3.753601793499664 4.011195025583368 +2.595177458034106 3.4956513954619055 3.156435756450699 4.897977199021712 1.960566221319507 +1.6434145122860766 4.339246375414133 1.9600323661021828 1.5347588177223863 2.7291696585606458 +1.0646832527790329 2.174937646979682 3.643730305150004 4.151859534722748 1.2210078352688982 +4.0973357559014545 4.417765703581798 1.1194634244086443 4.4969608766866696 3.3926633183260284 +2.3505012146170516 3.576549976549467 3.5500745312568434 4.437177134543633 1.5133230307486265 +2.771155181447877 3.9841124031129826 4.435337799887818 2.7226805904500493 2.0986805232404233 +2.830532885272204 3.6203007560869143 3.8096074831933504 4.576038652267393 1.1005226152603154 +3.4663871039832066 1.586257075925651 2.1779274618695683 4.153943161341957 2.7275496268565047 +2.1948576090497447 2.673549949346579 2.9994562451966353 4.880857187591571 1.9413438290790772 +1.0957498515855364 2.191301025737597 2.0723417117249974 4.737707033297997 2.8817363988800047 +3.901414313138686 4.507799854872289 2.801507912279212 1.0482089955067084 1.8551982419081767 +2.1274966305245244 1.6477295565995642 1.9139015410875468 4.667087304889961 2.7946749891940565 +3.9563005922667336 1.9617256841447084 1.6471608757774714 3.9290888538809106 3.030762999866739 +1.0468641425527632 2.7164539147747777 3.984253670298427 2.564914870920328 2.191358627639123 +4.432401803219355 4.392295995526718 1.807538122943308 3.7530175127992407 1.9458927339822436 +3.2455797305956655 3.1648448195406487 4.2158671596896955 2.5891334981711855 1.6287358691268758 +1.8923281019359806 2.276059711141931 4.686538920744093 4.681466118081597 0.38376513811267565 +1.9644120100492972 3.8229341736336684 1.3949239887199232 3.2120739437791803 2.599257315408806 +2.4343682636011725 4.691833473140912 3.6616130191614173 4.215846511469302 2.324505094913344 +4.231337549047174 2.0644266436246888 2.4652550715519275 2.8105425561784663 2.1942484633875483 +4.402040582951413 4.597665480113111 4.135082299323869 3.8218150152139576 0.3693311409604194 +4.255041274723631 1.8352080959660197 3.8332782173111597 3.0340625619597685 2.5483991596245117 +3.791105906132718 1.8053222599360144 4.445028557556546 2.03535345589654 3.122478308181249 +4.685975576658452 1.5450537581635584 2.3297419365373333 3.832739060626881 3.48200950959625 +4.135592527504524 2.63538352138576 4.243302440639868 2.3259036832888413 2.434552331894123 +1.1849540223759916 1.225451931262624 1.1944750862058253 3.32509278589368 2.1310025487660393 +1.0206231325673971 4.283575665248398 2.4021840242778434 1.5820272452510333 3.364448895839107 +3.552553462240468 2.670724415520026 2.7776155561925657 1.3203055546977498 1.7033422756735372 +3.050268433998072 2.3090708865106717 3.579508132476483 1.9933898900020681 1.7507555179154692 +1.5399080594802923 3.2502257937905377 1.9990188895327896 4.496245819960474 3.0267687546869855 +2.613979486090652 2.1419658703827777 2.5865648195343405 4.216730079772141 1.6971256963170984 +1.6889065196531545 3.196697256478629 2.866446773304907 3.282691442200036 1.5641906950369966 +4.602131558232884 1.7121359049110922 1.5364959379702046 3.8507022996906035 3.7023811204204806 +2.4424159960172687 3.2975445667032477 4.145756597869976 3.0820681136860326 1.364799642361098 +3.4875822229492073 4.431258301910322 2.133916438236292 3.6047771861867544 1.7475571183411482 +2.564096387387712 2.6538043795125175 4.912048392672435 1.829340308482101 3.084013076526023 +4.301182587213585 1.3440848606086901 3.652763028787784 2.4929893465168202 3.1763976386435293 +4.042817013312899 4.234694805931909 1.67205497289766 3.26227511801257 1.6017544122710043 +1.489818443809975 1.6534866890502928 3.2348981897918017 3.249106144842786 0.1642837803520956 +3.1152265654663522 2.2098127954463975 3.9391761789181596 2.424343215360506 1.7647926230644244 +3.7806714202573724 3.3142286763583173 1.8051565245622583 1.3853662150381294 0.6275290728774591 +4.594438584150497 1.4665103958577173 4.338907195681475 3.256235614158989 3.310001888904741 +4.930573709817948 4.548728932886257 1.169223975686141 2.3655061283123 1.255745365255986 +3.6787117622010292 4.130517643565311 3.4977381524157796 4.782976125994283 1.3623381383355357 +1.746268544025983 3.2002935990080412 2.243856512326837 4.879898407883205 3.0104660329663226 +3.8649897568991856 2.3618476710805028 3.3164620243230267 3.8713882358952243 1.6023043501311514 +2.2174623389209676 2.1401566043414793 3.009450539240349 1.6676761409826972 1.3439995209889615 +2.5194576352394096 1.280607758440202 4.543775042559728 4.542865068398497 1.2388502110014696 +2.163476775892546 4.628153373315487 2.4571416355056113 2.2524167433065583 2.4731645742591093 +3.5111452989336644 4.3322641693660024 3.1146006610810795 3.4936984652203527 0.9044066256299196 +3.0543522627625674 2.39588713943717 4.740378358669022 2.0136721932475217 2.8050851736058844 +1.2401047734386101 3.147948409888016 2.283138199803501 2.033397133553981 1.9241200433735781 +3.5364097517112527 1.4167793649860485 4.035911410228556 4.159348403131956 2.123221530492255 +2.6916028030991788 3.878536143159294 3.7443836899987573 1.8744406520102443 2.21483582214754 +2.6218337470859723 4.830611828849765 1.6466454265626718 4.67578155278385 3.7489153478917587 +1.0722927877678385 4.781838148667278 1.4290884672154842 2.5884975980006826 3.8865095287569593 +1.0205630581969158 1.149292295515795 1.5427932703630218 2.1830076083428733 0.6530280354591829 +1.8396942219230095 4.876192003145055 4.660941262976549 2.2779229225508457 3.8599346090538478 +3.820541411389461 1.8830408994571686 1.9005739556525936 4.972389085286614 3.631797960292721 +2.9573851881963664 4.079421949498941 3.764330108222459 3.3400247546294803 1.1995838973585937 +2.2499546139492668 4.043420651394625 2.9302349013685314 1.9059849349148754 2.065334941662071 +2.3174664833135856 2.847336287582971 3.124639561011897 1.8121634699220377 1.4153994132961176 +1.4706719524926162 1.813045176968168 2.2040648055523326 4.616435193998552 2.4365447494125676 +4.245176622123288 1.4029679350244137 3.315815445984508 1.2625128196312647 3.506308870651505 +4.188713636024079 1.6209114721938782 2.9397792620395116 2.0461563842894974 2.718854501478385 +4.1825864566655255 4.520407348312072 1.843246437114117 1.9709485701073235 0.3611520311501548 +4.573142407044134 2.3363901385535795 3.077174833334783 1.8613072818394905 2.545858325472335 +2.9964126010846313 1.1020404314740126 2.714743067040991 3.807821414474046 2.1871136665985653 +3.5820570850271856 3.4228632911733268 3.7113039057895816 3.2360834755210637 0.5011757389840217 +4.2238671188102845 4.3833710298210935 4.697484208591765 1.8557661833302932 2.8461909339894444 +1.8654734241816655 1.9665774747294202 1.1833252172391155 3.382133417812095 2.201131420870673 +4.596401348453421 4.513446305883553 1.6726030357752566 1.1120325376552103 0.5666752354305995 +2.1412874535863518 4.135609533267781 1.3633058405276097 3.1608560960719676 2.6848663800480734 +2.639617580643024 3.546393042121722 4.563903454063494 3.9831977983806897 1.0767826131963223 +3.833751070573478 3.7299027243226703 4.258283169790957 2.960330581078508 1.302100380755791 +3.2014825936033735 4.35413218871866 2.6122913107757952 2.1234229775495046 1.2520356769480996 +1.7120864867742585 2.252371015855515 4.405945868347801 1.1598440264164682 3.290757441768467 +1.9959961578503056 2.4103604698516783 2.1273157477343023 1.5995443753657521 0.6709995562980305 +4.80663714335352 1.050650118809238 2.929586801471919 1.7018317625724668 3.9515593079299727 +1.0776804563188045 3.489048051561063 3.9148434484924124 3.253193393418678 2.500494845978193 +3.381295611194528 4.76110246600113 4.1969591756187565 4.66816776986218 1.4580481802259317 +2.8073135604515844 1.1877738141632022 3.233935286659168 4.480788491845724 2.0439060411603625 +1.427993938218043 2.639521064225129 4.36112851024657 4.196922937105819 1.2226043707191103 +1.83299674634912 2.4411589077629112 4.5764356071559344 3.828021348066094 0.9643573599991289 +4.946083947614149 3.9731991452889748 1.6521685768251495 4.813267020688075 3.3074231979575734 +3.3075116258433632 1.7684282443949777 1.861185587018383 1.9306255268023995 1.5406490711021132 +2.5117197036253502 2.862676006983662 1.1867633722930186 3.4106478125651685 2.251406744804569 +1.509798865639211 2.7590047615458135 2.802442395886171 3.196595447482824 1.3099129736172443 +4.215907409820522 3.719743730381556 3.3488812928578167 3.0796625426592907 0.5644972384811722 +1.940818682656912 1.4831290125024443 2.8805170363422583 4.849278817072362 2.0212626705675025 +3.0764148822332134 2.389906984133823 4.585505048499696 3.5513978559957984 1.2412376000351972 +1.232341821615338 3.0330062064553376 2.1716266163788824 3.6816206287362823 2.3499944987566277 +2.5717445515016575 1.41831080708425 1.5028434962023378 3.441046327635879 2.255446656105561 +2.2309572999615175 2.6419564256408776 1.998320112116141 1.1136193353706987 0.975507942398824 +4.962764562916855 3.2390751848333204 2.794959693310677 1.6581147876288522 2.0648296326071844 +3.9995168626524547 4.033284975632858 4.027121244776868 1.1378778674385366 2.8894407034835767 +2.4920967055245473 2.0812613294221887 2.796724679612103 1.8987668127010777 0.987478626100112 +3.2363400455466222 1.7824879537037992 1.3102330489670808 2.558085786745389 1.9159390282930644 +3.728914844062241 2.8233126368844452 3.753280678616789 2.355876399933768 1.6651889009139202 +3.272212190232059 3.534089257623508 4.07082850734142 1.4943092288275412 2.589793657992703 +2.1048808030589914 1.4409629606931147 4.651359664285392 1.0410435822287116 3.6708540033306774 +2.9171511723346577 1.7426126689134844 1.4955203833947706 1.3036013611585355 1.1901149554202577 +1.7183081541621936 3.699093372976519 1.4463071625529058 2.820358206908228 2.4107107573425863 +2.0113711765074846 4.47592118500074 1.8126215569047552 2.066469568684861 2.477588657838265 +4.139117329889469 2.720950434382611 3.098486348227393 3.321161132079259 1.435542198221646 +1.0828200690766505 1.6066008350460401 4.4283827341766315 2.1291083725182944 2.3581791452260012 +4.802963362043378 3.500310653926257 1.4844670701019447 2.126506673781558 1.452280596392427 +3.7620104211554946 3.3920959391995265 3.5879104831371618 1.5422508191730455 2.078836257315745 +2.9923286146405648 2.594409699211405 1.6163804383275582 4.5179211744434165 2.928699046777609 +1.0428255569395377 3.9134824415341893 4.672751584108031 2.7046228321611876 3.4805461831888556 +3.156263208186931 4.373129991990448 4.844318615795503 1.4722633644325818 3.584901865849129 +2.522873022616594 2.5591052023243916 1.900432709693027 1.3164095098905682 0.5851460234453284 +4.79625099169148 1.1811030933010174 4.204005114273091 2.4746236107758324 4.007499808094246 +3.8603355517041784 1.466728494678335 2.401232091676762 2.3777911156627938 2.3937218348839964 +3.2571772194163775 2.4607953604996813 4.979735595442467 3.5068639217773927 1.6743879575225595 +2.251685304497328 3.389302857207145 4.142277074862848 4.080850478174556 1.1392747355287836 +2.828827168266662 2.855270768749239 4.881163199451214 4.5186526709004315 0.36347372300711034 +3.614253020641027 2.4532892535093906 1.4619628916547875 1.0471446163834863 1.2328467342259284 +2.6326787800830784 3.557497336651183 4.148438795437702 1.4028323959061684 2.8971786040424266 +2.5196299804659694 4.372809261592364 1.097826061360434 3.7992842230286477 3.2759959779035053 +3.127664090155334 4.3724467960284965 3.1184789211822452 1.8644851712758177 1.7669137810445918 +1.7200677694042992 3.845221542620703 3.7914050458941135 4.242661010853801 2.1725355016035106 +1.8248705078377823 3.590793477778176 2.036625957104284 3.453118631982351 2.2638320241895866 +2.721943643230029 4.945282918909458 3.1275076664697377 2.196374750539124 2.4104451957902246 +1.5216118260024487 2.00926809266502 3.2224319625243787 4.653348521049887 1.5117310712814502 +3.7840857190831048 2.2684405948437387 2.2799368334157997 1.8192354216600033 1.5841167676103765 +4.2678051732166455 4.159260793601989 3.88497875443161 1.2185957537607175 2.668591424068631 +2.3479688979410733 3.122869676517629 1.0950716091236168 3.92403342671982 2.9331716932453458 +4.144901688825094 2.8052945581989324 1.8172496169494607 3.1209568838782022 1.8692779093188006 +4.500859136734577 4.9867484666360955 1.7997487778882406 1.7198584213119754 0.4924133527698348 +2.3537050836564952 3.5946347598944075 2.802837775698855 4.341418857684153 1.9766482254591937 +2.186922764004704 1.5118490005781062 2.0992084797803363 2.87235822758109 1.0263942315656882 +3.800313790944795 2.748441771015152 3.9130010769472436 1.5706314550069749 2.5677091330794197 +2.9998295880486046 4.461708487503227 1.6025980357360496 1.8845296151167905 1.4888167557234089 +2.2257472698525076 3.794205518074508 1.3935344343019973 3.3083905572298327 2.4752242823489445 +3.6713890803775424 3.293363506871425 1.0054904861866096 1.519788375070446 0.6382833639810768 +4.797364853556424 1.767177372705298 2.58102963111585 3.2749697384064174 3.1086313775700933 +2.70437811443085 4.705658019424893 4.966760340886931 2.0288565432097214 3.554771438860611 +1.6134574323669657 1.8121209953858632 4.147377276352744 4.524296050205461 0.4260692119292345 +2.8876823733552186 4.275620472245938 4.657442014476932 1.4540457181949198 3.491148807682895 +3.679872604741619 2.365628367073862 4.198984272307726 2.405827455880051 2.2232069819393647 +2.4759634771340635 1.0908072962097717 1.2051043230741092 2.844468478106686 2.1461995429965137 +2.25509370069453 4.5751250869589075 3.603910057804431 1.757816392622206 2.9648958588587475 +3.722383781746244 1.4734709167538593 1.206445733353012 2.2244039824657573 2.468572071312673 +1.1764927130565535 3.0396816558235082 3.383608251471689 1.3017684473943882 2.7938378632786938 +1.7887898471797312 3.901080168305642 1.1961604923347156 2.569666044960374 2.5195808984463506 +2.1516390083282193 1.9020620326599333 1.9608220225686162 3.4375616846088204 1.497681106319481 +3.564060941599188 3.0778676136795537 1.0834662681777507 3.477533340347495 2.442936982028186 +3.698650538724059 3.1190355645748946 1.0136388582578313 4.437386936449876 3.4724637393616735 +3.5925964134249715 3.278195455143103 1.8960463157199583 2.8519596398756213 1.0062893450031591 +2.044674418485839 4.9897930584453345 3.383847185901872 2.9726239284442073 2.9736893534649784 +1.2918737864555778 4.5498430011935795 3.6211758365677267 3.404184996045928 3.2651873497627832 +1.561830748197834 4.451005506729591 1.8389381569093408 1.1483505691146578 2.970562573276839 +2.245916939449775 3.5253754645493394 3.5831099648207783 3.4639068900054952 1.2849994126439788 +1.745528415923788 3.090416888202336 4.119923539785527 1.3178572012811252 3.10810243850604 +1.971939524269437 3.6519708278267635 2.31617623838447 2.4924076849027297 1.689249153817887 +4.125626470246822 2.591935396925987 4.5666337928413085 1.3366329542231505 3.5756277387135844 +4.473367281493842 1.607385225420452 3.128072084678278 2.707187734939035 2.8967217300924992 +2.885805765112508 2.5372315156801757 1.4894797931199788 4.8958031208037465 3.4241119461971348 +4.665400040890167 2.975311975093987 3.385558125531061 3.2091160598359783 1.6992732189655142 +4.4545306679762895 4.350750990718856 4.212996106721071 1.3246191019357827 2.8902408105872577 +1.6124214385553772 2.289008766114558 1.1437453869059224 4.691055530492358 3.611257352585785 +1.1659433394198628 1.9283835627105645 1.4030644280562479 1.888825879284247 0.9040350002022637 +2.7206589887328674 3.7865974117438146 3.9682844668300823 3.4038836706448854 1.206139701852795 +4.983099086676584 4.637916808408165 2.8386895715972313 2.328279944815196 0.6161726968491488 +1.8509491868912353 1.8378442511938693 2.0956976751061185 4.40987855700555 2.3142179874610913 +3.5804070146000164 2.4932087653164805 1.8353273305332962 1.4966445900412841 1.13873000836562 +1.2674130183747931 3.5221814587885762 4.980902630177381 2.277896974457461 3.519974473592085 +3.5171025855122067 4.381433360477951 4.732324055028297 3.8131897674314303 1.261695497015458 +4.575480926496876 3.1150571667053195 4.531715889475976 2.5546023363666532 2.4580104881900477 +2.885823208937709 3.419256998020021 1.6132103150758685 1.382771194952507 0.5810798528756108 +2.7592182825418066 1.412881140179798 2.4210036196544102 1.209658935504387 1.8110714079577368 +1.2719836232464732 2.8851311752212525 4.2425743151478805 4.493128045285699 1.6324895699906319 +1.9784516386771038 2.1858738262319304 1.0878008221574302 3.819865171596781 2.7399269284722707 +2.7271032938427164 2.86145042088737 2.0184729302477105 2.015226252667291 0.13438635146644712 +2.1417563941216646 1.7310436009766308 2.1892021766375693 1.946212081846884 0.47720979099278926 +2.540206126702138 4.186450301904367 3.27889664328986 2.0760596969488088 2.0388566903709373 +1.179467753847701 2.992570816029768 3.251083793271737 1.1291625422811484 2.7910378910898817 +1.9412368907575317 3.3315050868974456 3.9386974215919897 1.287000221356394 2.9940513854868 +2.681214369936653 4.041093574613846 3.476177355413918 3.9682633102244456 1.4461742765777796 +1.892381786634811 1.3404334677983583 2.9288817181881885 1.1029044145307902 1.9075743917704309 +4.198531432405626 4.034163692747725 2.8128909519654104 3.831835857744169 1.0321169869994054 +4.562480251301828 2.3190563727008575 2.8537394049435094 3.738239628148792 2.4114915185269092 +1.1553582070186788 1.4216220781900533 3.7389270450650196 1.1065868429727272 2.645772361455622 +2.474642348576197 3.8447679560753336 1.3134584074512343 1.332178157149325 1.3702534836130276 +3.0240037940189577 4.292975796543855 1.804350181275168 3.743294414656955 2.3172817444921394 +1.2882406851011567 2.45325260956186 2.0198243618414558 4.04686025563878 2.3379750423985173 +2.8741801943863874 4.894205518508621 3.7292902680460926 2.3835962895970537 2.427219519064796 +2.8051580989864124 4.442640549394728 1.0777121263827243 4.641834824289442 3.9222849693933615 +3.9528221618128123 1.8465755354787854 4.266434517603651 1.80367118545127 3.240598414049135 +4.865864298362805 2.561937632773808 4.157460229924264 2.536196518312964 2.817192592457903 +4.033135066789615 1.0608031911618987 2.532191575891813 4.27397745451036 3.4450797996312894 +2.089360192755095 3.6723249520351833 3.901575483469494 1.670306127130683 2.7357522493199706 +2.705242466938332 1.6248944822550886 2.4082195833937017 3.099462186344043 1.282563099478037 +3.1012244350370786 4.441839665105661 3.297666693293464 1.6535176039411694 2.121432398901699 +4.677173315915537 1.6177251936959482 1.8832932737023063 3.361170397317812 3.3976968088778916 +2.9778147216264825 3.4978094365475405 2.9624972417824216 4.241081636423733 1.380279883851866 +3.652436173883567 4.0934282902523735 2.700079032554338 2.053703086032192 0.7824806137802004 +3.765951386233827 1.6579808378289584 4.477553031285506 2.907798331114099 2.62824459509623 +4.727525570736866 4.268732533107855 3.5327772551502092 1.3992876577703983 2.182262338378391 +2.886661338470267 2.4269394869363494 3.762979209138817 3.9239320574961125 0.48708315529496604 +1.9649977030168504 4.123452846307474 1.7385885271094002 2.462946977584792 2.2767572928120505 +4.160390971576263 2.4897251806993053 3.628422286730515 1.7369292188626115 2.5236620634702387 +4.642227584963063 1.1755615212981518 1.8031877349948324 4.285042461789651 4.263493459814352 +2.3896744551635027 3.8702942799497153 2.585385138619162 1.8630852144998604 1.6474077351805483 +2.442038798715132 2.57702680228914 1.0507021841135336 4.375372149130676 3.3274092230136025 +2.8465953506307606 1.263730600526427 2.220071231839002 1.3899866712216333 1.787316758411386 +2.981956220776623 3.1430300593961475 2.1328307165305582 3.431311020599893 1.3084326048916775 +4.029058328751596 4.134638958388708 2.9062906343311927 3.125873208354076 0.24364682671663113 +4.65361755692585 3.8131911867708554 1.982720050192369 3.4396164564772427 1.6819225969995408 +4.831193269671877 4.304391827275252 4.269206402098674 3.403238525806314 1.0136173451956436 +3.2638760030088645 3.2019115923102595 4.268839815862392 1.1998070569961614 3.069658232309794 +3.15456484524535 3.384813560140527 4.990837416556067 3.5470345771011615 1.4620468904686088 +2.135761092079882 2.327833707081539 2.6638995696538204 1.8030549999168275 0.8820120535906769 +2.466839658972651 3.881370304228564 2.930724928520657 3.9542331459353535 1.7459856865059118 +1.4152064574380736 2.9172263607124136 4.482197929067482 4.578922512072408 1.505131035753942 +2.9556633505185745 3.9000544964695507 3.5162766402863936 4.257201688832135 1.20035185013108 +2.7314835574610137 4.475503382634883 4.00464631508979 4.441054379004766 1.7977922985844361 +2.0282191243961196 1.6870242833789564 2.7783894942613534 1.4334404054531151 1.3875525110866391 +2.397647279032172 3.732649598450356 3.1530398751559447 2.3483587954386076 1.5587632382459466 +4.497176187144096 2.241128324704381 2.2343077908936935 4.063361322743095 2.904339646113997 +1.472965362213432 1.9101493713046813 2.0115157045176617 1.3361479361314186 0.804519409573263 +4.6888511092637755 1.4848686466917802 2.650435074400274 4.520342279315263 3.7097245956353544 +3.651475128294479 3.122980223216067 1.6631822426310339 3.380420154032531 1.7967228247697018 +2.6534817613990134 1.2876943323181038 1.03317422524758 4.8913002232823715 4.092738877346978 +4.489062277524782 1.588259310898526 4.844466038691489 2.2784661337699257 3.872855969855471 +1.848299547598545 3.4237947906536896 1.661702154718677 2.9444075387373143 2.031629484694438 +2.289927812380106 3.8173162951550674 2.3997024728211405 3.182154475872116 1.716142976092634 +1.6778287061263821 3.349625909647364 1.2984758204133375 1.8127382652745885 1.7491059864671572 +4.485331354285583 4.434919601003554 1.9004052759468029 2.1873203314990946 0.29131013365748665 +2.143564984695728 3.94643807863993 2.058348457962551 1.8881542453944036 1.8108885837785906 +2.7430617396984776 3.9011356789978895 3.35971213808182 4.51888075172688 1.638538105673551 +2.757534214725874 3.431788281151965 4.460502939343799 2.208486396288858 2.3507864761150143 +3.8336765349607416 1.9625884850212905 1.2100593421288925 2.13502286652087 2.0872297458789357 +2.1969627194975283 4.139478920915615 3.599101541373197 3.5181978848080355 1.9442002454524503 +2.0013711060185444 2.154804188968992 4.563951428509796 3.142628633323763 1.429580427628721 +2.987930238102986 3.8922288655888075 2.3868430660399844 3.922051439678185 1.7817465471165055 +1.867775252970389 4.0467638802998795 4.003691241039526 1.3150109393887854 3.4607792767693195 +2.558460857798776 3.3758366903426356 2.0026457471772567 1.732334197592749 0.8609132276051663 +3.0433872456836575 2.329764486279563 1.728534267131249 1.6040382910893323 0.7244009185459003 +3.601057536330906 3.4917232206950946 2.9849632077597335 2.040018410748896 0.9512490010367441 +2.4437238832992736 2.558351093693109 4.960044165734441 1.6471106713380408 3.314915946997181 +4.0662783773930755 4.01214960683047 2.177868230664035 3.890673362212562 1.7136602179141542 +1.7669039485882894 3.188452814173034 3.3679246902118756 2.301751558052123 1.7769429717873932 +2.91213222429331 1.9456282902478956 3.1034645576087865 4.378798292876986 1.600189360931512 +2.4318822191980667 1.6381976260904354 3.802546226395738 1.827930329869409 2.1281548750386814 +1.117128186673341 4.072797631256831 4.120292223685224 4.387986186024215 2.96776716120339 +1.871522284121062 2.648661378219031 2.7535072562360012 4.214553228848542 1.654871749007378 +4.162318492788769 2.653854874957211 4.128020013611197 1.373611880464825 3.140418228558794 +1.2364818283010983 1.327135662367089 3.318940106201487 1.5944854446872294 1.7268358339023189 +1.0847431895285329 1.0924865390070986 2.3525534124727683 3.526500964645875 1.1739730894336449 +3.3967006665146275 4.830273023696844 2.127288967002774 1.4248387165976188 1.5964228943394794 +2.8600936928333334 4.040757473412823 1.9845747613953977 3.055224996284832 1.593818963446305 +1.8035903353808984 1.6647907562717936 3.88576581955848 3.233149822562535 0.6672128316331122 +2.332047114118409 2.159956231366767 2.7708501532823155 4.470304319016377 1.7081451148415627 +4.301241072318282 1.1583426268346901 1.4607326585460068 4.318441331710163 4.2478594020166 +2.6418351139972285 3.5333196524769868 1.8946344535819524 2.258224507580794 0.9627784842399357 +1.7291253272047609 3.4962318602819478 1.3168242907223315 4.790393360752873 3.897223060528729 +3.8664299812657403 1.5130571335692173 3.7532622259570507 3.612871760738805 2.357556625618871 +3.8999769694461723 4.249757956258217 1.1866444413059671 2.932240050574349 1.7802951355975394 +3.4895574037410664 4.459304650686299 3.0674131360403565 1.7394046498173372 1.6443893281209938 +4.279085683472976 1.753325691942755 4.404444232253404 3.255546980512158 2.774784393403086 +3.6624677030391553 2.9747427851481967 2.2434584956279116 4.977588706166735 2.819296644709314 +2.45728938730366 2.1845561419806176 4.998128482294029 1.0791478210141285 3.928459347707481 +3.1421412644040942 3.844998058713833 2.3796231107518007 4.65530981897048 2.381755165265844 +1.9576703542252325 1.4800232064634762 3.4050694961077728 2.9879984319947255 0.6341096673962089 +4.116110038962816 1.514184837540144 4.179461618211267 4.948782272139766 2.7132764367751743 +1.8205749358494212 4.555454769074322 2.974390768194594 4.340988912648486 3.057312249444777 +3.3949846171256617 1.1834634979908096 4.307844620033004 1.941538608748166 3.238862423663936 +4.929334192700001 1.3813712142546275 4.926529720308553 3.6582820589809013 3.7678234336128362 +4.3523086124337995 2.4873501658257897 3.8993780042434327 1.8037428453413704 2.805308668720972 +3.6501378398729583 2.97016984604449 4.458918098097815 2.259548436077053 2.302082401402789 +3.1644747570940073 4.596975049816498 2.6067718688387655 3.0186392967350635 1.4905340877725455 +3.537621166782209 2.146480977079712 2.5157731534500054 4.52571299857375 2.444407741851094 +3.018483153879306 3.9888929722113 3.2035420387432936 3.728730391949381 1.1034119909890663 +3.9996171999592893 3.785118567146497 4.608462603683033 1.8603230825202974 2.756497867086986 +3.740149381196123 2.252004064945557 3.6330238610236543 4.707600629463823 1.8355630508238645 +2.8824652307577625 3.407098444403643 2.0439072443801813 3.826909214255336 1.8585844165490804 +1.126135609546962 4.681525016920702 1.8844117456276237 2.3880356841492034 3.590881634016552 +1.625756842960004 1.112690969309826 4.631137712236338 3.05236113567957 1.6600518273200777 +4.729316610783727 3.68430853210456 4.560073180970608 4.502968992593898 1.0465671372802061 +3.5815083419749687 4.34247590817648 3.6741567612348933 4.836238404729805 1.3890663709695397 +1.8316069612679553 2.715935792304452 3.862437789238809 4.936708269086289 1.391436144878417 +3.7298343912635294 1.5192791225359397 3.807803142405078 2.207478635305698 2.72902787162795 +3.8973822698574976 3.5421471557996584 3.959743244776103 4.180282956862424 0.41812647711763407 +1.1639004833355266 2.6207337377681412 2.1287616870103703 3.8997605398536184 2.2932073757060927 +2.1247941167160342 3.9231514190007624 3.3777071481820196 1.9512225584839125 2.2954187572917895 +2.0498973564337604 3.175531833611056 4.687093337976865 4.49550048861622 1.1418234522623603 +2.7654330740750046 3.0947601335632258 4.42165301661616 1.6813849904009786 2.759986443374026 +4.515047477836368 3.5514941738120376 1.314937907737208 4.581554790495437 3.405762884937425 +2.3170419255109374 4.419990943894339 4.5225063686255975 2.4215141263600235 2.9726356951331656 +1.9058051826757212 1.2587846776690235 2.458388452164724 2.032888820007756 0.7743936149432259 +4.4741862483917 4.151493008620836 4.160950314479647 4.173461759836631 0.3229356952378243 +4.1670530769837875 1.951182407608239 1.1737706432727806 4.874779932632096 4.313647248364519 +2.127966873519788 1.2118243202444856 4.2376459319902375 1.9330649641687208 2.4800021401537036 +1.1922447020320535 3.7220642692654886 2.154162878001247 1.0810679791643842 2.748002857470651 +1.4696757982854396 3.1139848351870936 4.15311540668439 1.9054759103202046 2.7848941657543635 +2.7985859839116918 4.358431403227456 1.6791253522346201 3.52095833406412 2.413600311798812 +2.658111292642206 3.0662694475972776 4.495091188993641 2.0475345814991175 2.4813557637602934 +1.7954015596697066 1.760603887856126 4.102239940403426 2.7045428052985176 1.3981302369393613 +1.0212754339780763 4.922710306505907 4.7231215126456725 4.869658454777463 3.9041858485458385 +3.596794093317812 4.290365803306329 2.9949560229060985 1.406851278897077 1.732950776808261 +2.353699341685569 1.5125945933777856 3.221718525918633 1.5497414680766037 1.8716208161847285 +4.078909601621571 3.4257420751230034 2.425709403454184 2.384849796968829 0.6544442872501789 +1.3891393711002085 3.547625977102055 3.3764579293783 4.417559839207067 2.396446872963905 +4.09182583645959 1.5255157575361387 2.2061927162145545 3.994198892486335 3.12776493803005 +1.6442983187145757 2.020016296632266 1.1794456664601793 4.444715458307118 3.2868146909247424 +4.892211876473053 1.1960269838452269 2.435759784874063 1.1938930808824595 3.8992327028497726 +1.5394880179901569 1.9456732706728417 4.7735580467454675 3.5971383775845194 1.2445680766778693 +3.6517738329984133 1.4215711048790052 3.2608211302470784 4.681875371918095 2.6444657997944385 +3.9445768780058987 1.3677162415814892 1.2764393878692881 3.456037783929785 3.3750348009558513 +3.655791422367759 1.5753979735848378 3.5017532372365947 2.8398645786756402 2.1831476125242917 +4.7176430308763635 4.800872240291654 4.197468004988261 4.822332259724213 0.6303827711371964 +2.6698748222692927 4.491201353093119 1.707995841776769 4.078436703007413 2.989351135024896 +3.301329692812548 3.693935045204854 2.12776242945587 1.3813922327627859 0.8433311527737842 +4.865785902290143 3.0199947726238565 2.782743787769791 3.6847231298951733 2.054388382944102 +3.903375904745521 1.927891467688331 2.798318490429036 2.274374169055371 2.0437848255026445 +3.4886979460338203 4.333563077205182 4.9784782605323805 2.77694267921295 2.358083121029597 +2.932092268018469 3.031910639477778 4.998531553085483 4.071508201041517 0.9323818973551659 +1.5037292055455653 1.80058428575692 2.57067125174812 4.949760937104076 2.397538460507858 +4.708824414845404 4.750652009102882 1.8926850074858321 4.1676736867799375 2.275373164682599 +2.6248670070250313 4.647369747796839 1.299371185462392 1.3838220284974128 2.024265121301753 +3.6787370189362516 3.8267179444981845 2.2429734190634623 2.835358401337741 0.6105885042762138 +3.3901269021701297 3.7082277083716497 4.913634559378554 3.6301395767477542 1.3223265456552304 +3.5105167908579507 2.8507435570285726 2.3429613564952096 2.4803530287522535 0.6739266960755169 +1.9796281005807264 3.212577418000154 3.969291932694284 2.6871516747997397 1.778777012511383 +3.638185761859832 4.040519713148214 1.4036357223195806 1.679481443111893 0.48781499570918524 +2.7124198144893996 4.32888333665332 3.1290506646596095 2.423453974031239 1.763751969045618 +1.184973793482635 3.8728324496195454 4.2536712062906705 2.168793560945714 3.401661204680626 +3.0290927149702727 4.5672923197531325 3.272179516752499 1.0072594836147508 2.7378679260809577 +1.6255535609475067 4.472105555543862 2.2799122331509434 3.405334451405225 3.060953025984044 +3.884304347944207 2.9036384843477823 2.81013423432148 2.2816991605902963 1.1139789778862987 +3.720855094879264 4.358611557098327 4.595882527721124 3.168139498286826 1.5637082410732517 +3.5713612267712995 3.6706605360439846 1.7256248941818204 4.23974266758931 2.516078005822845 +1.511242056364753 1.031996614589111 1.6218844542270507 4.773216511845496 3.187564890451085 +1.539862358296796 2.2225272993326537 3.182003791598216 3.6129542483597046 0.8073101745317142 +4.035299566013363 1.5132059665706579 3.7334925615188905 1.5489138587241738 3.3366660355891335 +4.831797662595903 3.6539800604413037 3.1885453910890442 3.9502428241711605 1.4026536577177902 +4.071195895093215 2.964051578568809 2.1784375696109874 1.8048869570924846 1.1684642047256917 +1.9108491979467415 4.429627447852489 4.3726872139326876 2.4972522315091803 3.1403025722844164 +4.6438582641702775 1.1052340905210762 1.0878906004123596 1.1327949580565875 3.5389090753606447 +1.6028141387053352 2.2052864385834265 3.2241175627418417 1.1502398631331396 2.1596160735312835 +1.1030625407002077 1.3682627235472662 1.8539529997619248 2.6928917794458695 0.8798576095253706 +1.8606074809781763 1.2728620907505506 4.741592371837019 3.6489637993985693 1.2406779763672393 +3.6493554615075623 4.725389891464415 4.331395773826937 4.949052029152581 1.2407051802082014 +2.27176346056304 2.745960142633325 1.1551769240118657 1.5594927962880876 0.623164358625354 +4.202462036766162 1.9577080528338495 2.0916448829158076 3.056688533259577 2.443405348166533 +2.1014393110743894 3.739213854356028 4.916588347401159 2.3688466665677925 3.0287444802883274 +3.5369597062100335 2.891283557584378 4.990689108580808 4.05475712374718 1.1370428176364662 +2.4755421511883804 3.5215776115849042 4.439183283102858 4.662919451970042 1.069695310668572 +3.4030256088578077 3.6186718925120784 3.4663464977021925 2.209170667980348 1.2755369012657796 +2.5441769218218577 3.915180102189079 2.214362485238254 4.323140246613924 2.5152720265310506 +1.7450218688435721 4.644407211819761 1.429384616430894 2.8432938010220346 3.225767280715758 +3.4881186355962135 2.827362400933371 4.087304365365897 4.6086302652249405 0.8416528355026547 +1.9608045266899046 3.9091910097026084 1.9099399421907295 2.302598577623515 1.9875589780347527 +1.6759505582852148 3.8655947964309947 1.1091182398671577 3.385966818048653 3.158889256940184 +2.8427934376048993 3.605909049376278 4.6065423852345235 4.465561557821402 0.7760290140370361 +1.699301394889079 4.289029731061152 3.063298312354465 3.862451076064866 2.7102284027215395 +2.3938948014464465 2.1105427031863186 4.83907355434658 1.6181175284570628 3.233395449415739 +3.6863244077406185 1.1271480186653964 2.716198202780338 2.312823761118025 2.590771068733491 +2.999052526176341 4.881271898387732 1.584671465255353 2.100234047791381 1.9515518290937246 +1.7688960077560485 3.1302330660862183 4.504715674645272 2.8428914236496823 2.1482314650847316 +1.5034388843100035 4.777421085865164 1.9825326953780755 3.5031367668174997 3.6098748175218116 +2.4311485987499264 4.201477141294002 3.6739711008625036 4.525203338861969 1.9643470853074334 +1.525102083262364 3.2398102075306787 1.6403498532205734 1.4327599187626876 1.727228280315023 +4.4110210513982775 1.9137588744355876 1.3745728334026959 1.926866176572143 2.5576055828445714 +1.7702494246491849 1.1095472842274954 4.7474765674432025 1.8872348980179945 2.9355595251798423 +4.278291996874209 2.7033643403791974 2.4482866162772714 4.685239246678057 2.7357547758982097 +1.8496522232731527 2.747382999745668 3.6634526446559197 2.01240092837111 1.8793329446569493 +4.57816454892796 1.5243012170401093 1.1063859375586658 1.3315631068645488 3.0621538183810717 +1.0338871382729198 2.8480926705183327 2.6405171123589604 3.665945826750237 2.083949558297419 +1.8693396793150305 1.4445075017111249 3.50067781006356 1.196301532699008 2.343209851210127 +3.5927871640366136 4.554639177489996 2.05348291803036 3.373506323024686 1.633285365610413 +2.6653059595216226 4.157724524347923 2.620524091341841 1.4060341462440502 1.9241359097999886 +2.1446220334942145 4.637564910148928 1.8564004770348013 3.2988983048441463 2.8802021056686553 +1.8624568446628484 4.555133953053675 3.4583457853442607 1.756188367688377 3.185569004829895 +3.286400193754963 1.6327171717181024 2.2973639542530018 4.917844027885618 3.098642179032385 +2.2522871250816245 1.0661728459756392 3.646462844749804 2.8010240399821638 1.4565829381487507 +2.741141772051464 1.4089055332638845 1.9604017177533555 2.566679625562239 1.4637029402976527 +1.4473187486937462 1.962081911511734 2.868347975489061 3.1875139078574697 0.605679788484785 +4.877100756772931 1.8905445525228943 2.622966871287672 2.3367578920249357 3.0002389139791856 +2.146240715093328 1.117732605654167 4.539024814947506 2.589244128575087 2.2044213880592385 +2.190889664360919 4.85830320835564 3.964361589952758 2.6552853582562004 2.971325561946946 +4.350110403705209 3.0217155543205445 3.8020965486674525 3.9305643305058102 1.3345923897738112 +4.9273650801389035 2.4092540878911937 1.1779124941691177 3.9288728340978207 3.729432364467734 +1.4146886253137714 1.4418910217367449 4.254217663572297 1.7068193862351753 2.547543513612925 +4.3473449937372575 2.067032936462787 2.596224405709404 3.8297587325190063 2.5925720846234817 +3.893075281319678 3.6840766929225035 4.474776840901203 2.448278786687848 2.0372468612523438 +1.0582291687815273 4.493869411963618 4.416579574048717 3.035767397572697 3.702737655745643 +3.638324624174512 4.822963404861445 3.6661479553726615 2.1125772263567573 1.9537018837996836 +1.9073434452830065 4.053374977369495 1.3377823410840386 4.190990161340832 3.570188538758703 +4.019542370059067 1.1408801632225667 4.3980780174751875 3.8977290127517286 2.9218222443530935 +4.792213015885382 4.354942678296615 4.330131088284724 4.251711095406135 0.4442466020332318 +3.9896204350306697 1.134279323390742 3.074007896259043 3.4731892750492412 2.883109196162015 +2.5465535700224886 4.571280559397778 4.541196399690299 3.8269381874123742 2.1470175069875834 +2.935350190542744 2.701073723982199 2.177317241173988 3.709521175541925 1.550011083598011 +2.8145584768916763 1.0740823180792574 3.3314179152927776 2.226831053964859 2.0613998626207133 +1.2158038580278 3.187820384030878 1.7506661005329862 2.183001079960974 2.018851830438838 +3.2752580656123085 1.320484199939465 1.0431698155524587 3.8921232383421707 3.455094278184427 +2.3509356499721625 3.0378013475471675 2.4149078582108237 4.027253382990764 1.7525531597595265 +1.579040836526321 3.9393125802704194 1.5847832224114522 4.9268945162124655 4.091526683827088 +2.8155063923868098 3.6949778428126723 2.1237025107127825 3.4076335213940205 1.5562611838323013 +2.256281548647961 4.2089629944653755 4.68560943252123 3.1294269437130633 2.4969318707791706 +2.3595172044345474 3.4465607696215894 4.353205480393657 4.982305599637346 1.2559580696213462 +3.20738262981536 3.631766146181314 3.790496087345844 4.140488411094617 0.5500872618468804 +1.5964199910086765 4.166817302773378 2.0106791440078084 3.878218393985113 3.177207136862971 +3.7432592953028463 4.771819778398882 2.8661320826677064 3.887961701958953 1.4498525574166652 +4.738355455263341 4.2510580882241165 3.715828165929976 1.9441442463686704 1.8374772474116439 +2.9414220690785156 4.285069383013869 1.8452526385444479 1.802036577302542 1.3443421187312974 +4.717024772641286 1.5752442778098121 3.444402554152642 1.6164579986297363 3.6348543266229165 +1.1120676503033082 1.8160461028888553 2.1080066652399845 1.9852965518467482 0.7145931945056028 +4.647462156867612 1.3887846380493976 4.017099566360407 4.870769698916583 3.3686394682229968 +1.2987993278731405 2.5994780757914695 2.102944764284223 4.284028774047377 2.5394670037098157 +3.1286802844231123 4.9969182638997625 4.760921778349838 2.0949585239727697 3.2554067674635934 +3.4756770157146035 1.0085794641479424 1.233595418766741 3.424795753358626 3.2996862328503 +3.043699124799026 3.496195196081094 3.044471864786223 1.6931810960055356 1.4250401525282042 +1.0029387681251491 2.8598914922938845 3.8521798223382864 2.8929481360226683 2.0900714934732716 +1.6852924146807928 4.97320630028802 1.6768236136792325 1.554849934450298 3.2901755724571076 +1.6992206505377117 3.292552288806581 3.1787393533607724 3.1923267787188254 1.5933895718362223 +3.6518711524991434 2.968660594775356 3.5885473942589416 3.3247613893972523 0.732365839281257 +4.976484896385159 1.316658039270727 4.089167922033302 3.1103097757793483 3.7884688060671463 +4.08598199089991 4.340218520274913 1.2141152244053623 4.927719932268147 3.722297158896544 +1.9955709539918556 4.863682936575283 4.362042557645453 1.6360376959688545 3.95691405649947 +3.4081593965788604 4.559433827661252 2.9740821981049916 2.3663924729728008 1.3018139720003477 +3.9942200757036823 2.2758603714587053 4.462916359059841 3.599868757886386 1.922917376036771 +3.5777329383287904 2.841258453291052 2.4147470608622053 4.098920001416319 1.838160265266958 +2.3340510480116774 3.4331985024551512 3.218447793398006 2.582523640471807 1.2698522177342024 +1.3147519639136447 4.906578451902538 3.3269898288650532 3.791579185281699 3.6217483057101387 +3.6220425486262147 2.45989189070558 4.553087230378584 3.940837470858025 1.313561540141286 +2.9102135551281685 2.637291481091834 1.8278899566630584 3.8675552767917356 2.0578437930591122 +3.6665483803193983 1.3848455860674136 2.1479281570543227 1.2476727589202388 2.4528814531417686 +1.8271673552051095 3.5189220574988505 2.4896155024704036 3.331143671042574 1.8894982485393879 +2.84537197974629 2.7159130330689707 4.478460883337608 2.2472044817256016 2.2350088922886546 +2.0147457125598827 1.547336742585553 3.889361580681983 1.513255721730375 2.421642045835144 +2.9113730890425686 4.701607944777827 1.7058329836704047 4.091606860140553 2.9827601023778025 +2.197386348578959 2.252494487860375 3.4148928685967763 3.6796622130225685 0.2704435481994787 +1.7748328147493302 4.40545067397901 3.291812712951844 3.2554368266581073 2.63086934802962 +2.3253794701043127 2.592589568647269 4.02485325622491 4.441908050631101 0.4953139795125175 +4.074446205452372 3.542936271461317 2.3107372855074133 4.926845108665139 2.669554822871827 +1.7138020717564957 1.9158575898437231 1.5627858798861571 4.776236199899648 3.219796482944893 +2.407398462736997 2.041591431581198 4.415947888008498 3.1440934043770468 1.3234155097989615 +4.524074353663501 3.32249452636869 3.5173072326740824 1.5013383491978205 2.346896806531202 +4.33575761481835 1.3827163687853234 3.1441637322560614 4.232686037719974 3.147273964920239 +2.823491539107381 2.7520160100414475 3.813450321791771 2.541613240155359 1.2738439125264447 +2.8528505199692207 4.414260900765194 3.472814280870032 3.503866404305179 1.561719120593475 +1.2105193571112474 4.561949274611388 3.507259243291339 3.921187380403915 3.376894874675326 +1.0138760128169113 4.034860037534282 4.869825965765545 2.9564918731043477 3.5759183195002104 +2.0751280815034474 1.8386724937703618 1.2928736988735716 3.3628786455725255 2.08346627626375 +2.92842133280402 4.519110018454043 2.3681117302859045 2.010451635104151 1.6304021707359257 +2.0089315704351827 3.212240328247257 1.247433775709109 4.730477848754115 3.685043823538762 +2.047744446009055 3.1995700876272144 2.6938583302691352 2.2662410693286112 1.2286410503248544 +2.4106183660491602 3.3451012288612496 4.277676489529872 4.685810999770832 1.019721530291043 +4.41470950742292 1.1209038233368207 2.793857727861358 3.653163948765615 3.404050978731466 +3.2781082507552792 1.7638550343661548 4.8930759508972566 1.932525214696994 3.325330579801161 +2.040923352185277 1.1026786764098842 3.862461417103824 2.0036473770202994 2.082184599701119 +2.140940263950352 1.8858793485367684 1.5601526426434806 4.440394571717839 2.891513382395038 +2.2932917369425563 4.142608393417474 2.358427175017202 4.533292841353366 2.854822719981648 +4.80124509614372 3.7039115820882693 2.615958212958673 1.1310140951357082 1.8464018723252822 +4.10248265250835 2.601205198411088 1.1873781361600693 1.1251363442845461 1.5025671481955911 +3.6619371869541584 2.423799923095456 2.788689286053662 2.8747840047910334 1.241126981718624 +4.82896996827259 2.0109793653602104 4.6458473733896035 2.5763110196141645 3.496291143154502 +3.631180484021856 3.4244080164739223 1.8786735799788938 3.8149456044683583 1.9472812344795989 +4.693022246007754 2.2140111881940028 1.496402101482377 3.22900803615936 3.024470060959565 +2.8553695859611965 2.9246916509261256 4.635122733705932 3.6106895959105354 1.0267759261417873 +4.032636994140348 1.1863823245790988 1.544496020089602 4.908313144055828 4.406407980145238 +3.68989530468771 4.086389497560784 3.348240275354944 4.464404841226264 1.1844960882538964 +1.974046956972665 3.3592769801193083 2.484400230386035 4.827913030053824 2.722299480078121 +4.156626074171342 3.9527539988421974 1.9979112537576529 3.1613508147584537 1.1811669802363884 +1.518037443945778 2.797190578850919 2.0041003138174047 1.72713792772013 1.30879368345448 +1.687563847693046 1.7465864836267069 4.756859046743703 4.476509996915614 0.2864947840573534 +2.670672018905599 3.2596388138113532 4.911354083552839 2.4844855893480697 2.4973130708153675 +2.0706260848524334 3.1705831514787834 3.749793873386434 1.4585256199708834 2.5416167605544295 +4.240667419806263 2.706128536243133 3.889816198464249 4.1714384993765385 1.560166883874385 +4.577961395588293 4.013698250253276 3.1751408409734925 1.2018060700624078 2.0524236929226065 +2.4074092429002043 2.8257354292452295 3.1373611329161695 1.013377583730493 2.164787036960762 +2.549796714562325 3.380521042974074 2.3275316492270313 2.4274151369099117 0.8367076077859263 +1.2579230134533161 2.0693190963253922 3.394574806172182 2.127555389563001 1.504560336232754 +1.4118028460980399 2.686395801633226 2.466646792442677 4.741308430084846 2.607426464554825 +2.7997634602688746 4.23524735442145 3.6604844410618655 1.8983401357416505 2.2728322778295595 +1.0770124057114843 3.2651687040602018 4.013296063428472 2.4213567754005294 2.705974627148243 +4.068867678458453 4.166100171322784 2.4765776323213324 2.196836562461918 0.29615743082810164 +3.9374062237745737 4.509631707840144 2.5540818977384503 2.427442406632667 0.5860712971316787 +3.3036500168415155 1.634831606573623 2.166804894482758 2.2603609483685583 1.67143878789136 +4.671382959756867 4.636571491012674 3.328423533273339 4.086892226398897 0.7592671445596201 +1.8125316563851288 2.2523844895721896 4.269755709879374 1.7506931750928114 2.557175506105904 +2.0770387722464636 2.074696361111515 1.6709318601981806 1.9297272206742089 0.25880596108637555 +3.3273584670307543 3.713711984695959 3.4419683536172316 4.528456202543552 1.15313697645892 +4.059383405474877 1.4128248173684246 3.419958215745461 4.019208174258932 2.7135535507998396 +3.586708883566872 2.7948308221249385 4.724800749478657 1.8711012465285402 2.9615319882335864 +4.762649307421615 2.319270358416405 3.496507959923888 1.0457035458967616 3.4607142274762666 +4.96134401841836 4.378740011300463 2.068220769968716 2.165135824307337 0.5906098177877571 +3.3679222734138325 2.2209580451233513 1.8319554798142041 2.514446660382431 1.3346614374182657 +4.542279339951031 4.28714407427021 4.38216519524352 3.4176776762975214 0.9976623567102401 +2.120088268655662 3.34723644148841 3.8218035484809887 4.5624520050759365 1.433336239109034 +2.690841361618715 3.3563169232963825 3.6133356541334667 2.0778703430092818 1.6734728694711178 +2.739214958394547 2.478068555036679 2.9576972840818057 4.498365201936082 1.5626436180691299 +4.804161404136234 2.0679143985351898 1.894143406216644 3.591353349081986 3.2198710014256258 +3.3638945542783443 4.972002513176097 3.370466714894615 4.537021956791959 1.986671170543446 +3.8278623708689183 3.177505696585193 1.9083128102082028 4.265693851135602 2.4454466209486836 +1.1368707345406492 3.4830994969412803 2.7961036068551293 1.395858717005383 2.7323021716249327 +3.0847580627185094 2.341411388408633 1.8030450504672135 4.2204217849509895 2.529085715160915 +4.836601509386373 2.642493133361884 2.9462323279249736 1.4164536573066684 2.674758745535666 +1.3000128314174342 1.5725412642273073 4.973909199421142 4.725300578019462 0.3688875076836421 +4.208580775698921 3.4310204701993694 4.827721764331223 2.746721706532504 2.2215222864618815 +1.3277843820308965 3.9426712379244044 4.434883798368658 2.925099775822148 3.0194504572622742 +4.499655328858283 2.352759770146345 1.9366125530829277 1.7660820440806324 2.1536576316855993 +2.3761540639504037 1.42296558211516 2.9239701229324377 2.4284116344513884 1.0743121042830146 +4.386533776662608 1.7163314506817242 1.4489050271237551 2.7412840677658425 2.9665171576049723 +4.576313169002958 2.2649805957519 3.0390575073423323 2.1860202933365573 2.4637229455947542 +1.2860894238533063 4.297636900322089 1.0369361972164959 4.6332066718868266 4.690690730586601 +1.181789606610566 1.3911584091392304 2.2959723403988463 2.8606514015082127 0.6022439186306844 +3.268181277877744 4.250391964956217 3.797134216139166 1.755849167294361 2.265299645620531 +3.8877063171348336 4.494760269900043 4.795629061350212 4.357652386133159 0.7485573255282784 +2.3797677182287233 2.8752098378268944 1.6000181434674676 2.5529597146501137 1.0740393530778929 +3.021865482537059 4.482082080164014 3.018113293140935 2.866988607687484 1.4680160702589895 +2.467671868831204 3.4643952652038466 3.255624522010999 3.120848574319026 1.0057942557764412 +2.93270575243391 1.3265449516481311 3.874894327165516 4.325721009854945 1.668231763216841 +2.342289774224011 1.6783058973602532 3.293104145174085 3.1143286979950484 0.6876301689491893 +3.1471900035757483 1.439756576295585 2.44197267964862 1.1580445116007962 2.1363053267967866 +2.206478134803555 4.484735632446573 3.3920726134000914 3.3768778201722043 2.278308167765692 +2.9197844480079636 2.7521441153507347 2.9274157091118385 2.664822286087074 0.3115422715287433 +2.573215168180767 3.470162140101559 4.631803006510507 1.1274170497767697 3.617351904942414 +3.917028630246474 2.1705607159867006 2.603181533456701 3.84787883344772 2.1446262014961524 +4.8289826726501985 1.9390671323999156 3.9701659353806087 1.5706997681764543 3.7562015011627743 +4.686398894628203 2.172452212321352 4.739673153694827 4.426098329725934 2.5334279330008083 +4.0144872412579335 2.9992472728831374 1.209333116571877 4.652038205748466 3.589279945118247 +1.8563890191335748 4.523334741081596 3.939983518371462 4.724254825302353 2.7798706744544686 +2.063070904869172 4.21071188182284 2.993109630314367 2.7410374190818367 2.1623834455447914 +1.2573612948935313 2.172093551962445 3.032572293441453 1.0390442864812508 2.193373888933919 +2.9247791949266495 4.306511013530036 4.492137153241584 3.34336095102239 1.7969055571526784 +4.713285793757751 4.351665375047066 2.073953290071159 3.435915411317613 1.4091522795420768 +3.056113923425217 4.657799116519217 1.7043245340776658 2.790730109112969 1.935374002936991 +4.962709630553357 1.143813914577977 2.871666298105845 2.550385214237465 3.83238646594348 +1.156173893252833 1.506206901281777 3.2767388595973554 1.5628995149483482 1.7492193704554984 +1.4936878853602167 1.7497817678635474 1.0252410507971308 2.2109469106844304 1.213046768606516 +4.226642750232569 4.9274368533129635 2.204555007692911 4.17367704406495 2.0901086022114312 +1.2455661148131876 1.3704664234611887 1.7730526514145444 4.906592229321056 3.136027801759239 +3.7833977711664892 2.091488165589446 3.968864407721215 4.588843835202116 1.8019246943042353 +2.463839433161852 3.1367591869346585 4.695767812033348 3.547499691914194 1.3309172290941427 +1.5947086289699532 3.2280735448738094 2.2455820253562773 3.9341526753172906 2.3492875065464784 +1.1337311834164066 4.32008086085664 4.098454159038743 1.978447529278407 3.8271728961664717 +2.238825169194568 1.1525694258940025 1.6601222708962888 3.4444155297926478 2.0889360865274105 +3.722626805718091 4.123756248751521 4.754264124960047 2.200473491480303 2.5851018219244635 +1.6840564152975492 2.2750573964577505 4.596777658143818 3.7540027472219397 1.0293452823089542 +2.25420979009251 1.4518460703334353 2.0762192321020256 1.659691828596126 0.9040368447452711 +3.665825224642874 3.9306340148360706 2.5297333573176317 4.273817195739561 1.7640725979415228 +1.514441724114215 1.8929738717006477 4.198862984502453 2.517650560488721 1.7232996841566837 +1.1702588195372279 4.800945006762694 4.500157274657757 4.430019748782984 3.631363581720457 +2.388900108137913 1.858532183900774 1.6130797318004295 1.0944997972737087 0.7417649786511558 +1.0458757610936367 2.573369204599869 3.432580150925325 1.549283308175847 2.424880041953556 +4.475193221867402 4.6864241252096 3.6631616264345657 1.3297408300626397 2.3429620371375535 +4.544907340161341 4.8026560242055005 3.5766874548557346 4.727370416368079 1.1791970412281894 +4.099340894293003 3.4899676463325533 3.294826503696217 2.3449189199213096 1.1285655377703816 +1.872676215522025 3.7296390488343563 4.172166449752813 1.4767531418634876 3.273158087329458 +3.73639580906 2.193683436381623 1.738583187701066 2.8319021128242037 1.890848417205187 +2.026834421356554 3.629366099642328 1.5347254871370164 1.469501048841285 1.603858474822642 +2.9977026788622405 1.5663116756999953 4.423269147316765 3.6670760428235933 1.6188601592530591 +2.898366697989944 1.6964016246757248 4.375478621230515 3.9886182776486137 1.2626879911140214 +2.5484578285829373 4.252059130530359 2.1375312862090663 2.7331939384097454 1.8047358231119859 +1.1008355191627635 2.7509504255928596 3.2956256450350834 1.7489040435759735 2.2616867415367317 +3.2821642135622016 2.6257050463335054 4.297781217009607 4.649855595139374 0.7449127505782507 +2.689782963213962 4.856767993240178 1.7000407269804532 4.028930247695678 3.1811240969278307 +2.884271427931631 1.2604774890459538 1.8065013443433289 1.3863083997491112 1.6772801992060307 +3.0675235728901153 4.412885762791249 4.1673588561685975 4.967647772550997 1.5653950848587999 +1.8418876020416715 3.456895579020123 2.397735559161805 4.9858114425448985 3.0506372357022737 +1.1224371705362306 3.7927890986311934 2.126563335268158 2.2160801277760362 2.6718519188048924 +4.81469121101447 4.259292664479425 4.04329301850748 3.224263527197252 0.9895841819315483 +4.915319170519886 4.577022677542696 1.5871875324048323 1.9146150802277484 0.47080071817489205 +2.4982594069475526 4.753069492664906 4.123858306908447 4.426543744711742 2.2750356034380808 +4.8844017989577795 1.9453472378377255 2.123869269510678 2.6660556457648195 2.988646479568333 +1.215314090053988 3.5805718883301068 4.54619756299129 1.4942106611846047 3.8612262949878455 +1.1167675662531793 1.2011792183967973 3.155217134833982 2.8509463644585535 0.3157626145104451 +1.1793993241588647 1.3920481503818007 4.1382912871285615 4.09252903716218 0.21751714143022852 +1.7727353536025126 1.9978274735459407 1.2878293535775645 1.0670689408035599 0.3152802282236796 +3.93264282878101 4.87335609050099 2.9031500660311695 3.134190761671667 0.968669832201813 +4.403236547433357 3.2765559366057038 4.749254755899562 3.1626251181593332 1.9459709160649508 +3.488832558849945 4.084179777649155 4.382615710355126 4.844812541222746 0.7537003525248115 +3.4086846469090304 4.0208486886567485 1.7330319960861824 1.066372139351854 0.9050857299670221 +3.565543691285892 1.6854645799694952 1.7246255215456685 1.139638959165294 1.9689862221391647 +3.1292716024658103 4.822647390544663 3.342710564429028 1.1914333088833358 2.737793891051677 +4.85864825536377 4.82906730754352 1.6593649906902086 2.0969928068482546 0.4386264218548683 +2.059373465699748 1.7535805996645308 3.217111196803378 1.706172221030711 1.5415725300572103 +2.810307207787296 4.709792350405451 2.133536660798038 4.089181849169783 2.726278032378332 +3.656843535484198 4.559618847756573 1.6144808018839512 3.326533574861366 1.9354916589611384 +1.4073381892718326 3.737670090050733 4.599670235755543 3.127197041393995 2.756560189058295 +2.1778891652525765 2.1600558564354078 2.9257214789726778 2.1785519643574007 0.7473823054326327 +3.834546405746503 3.9273445863465324 4.061207419428712 3.0684203512801123 0.9971146699381007 +3.1839422022465045 1.3458583652763174 2.426708358475033 2.7744654593033844 1.870691634906081 +3.990948686034906 2.423641352990425 4.387884336635582 4.5667593283053 1.5774817079319323 +2.7270555806722228 2.412645287088761 1.7749774898088435 2.2509838048219555 0.5704698455164835 +2.079637732254365 4.02425879307316 4.507634642751654 4.290438372317404 1.9567128788022432 +4.86303627600948 3.2471869315985176 1.1085213214804988 2.7821768623821366 2.3263903312694736 +1.3842767487516614 3.5238801389144685 4.076178582984273 1.3876590468896057 3.4359918456187963 +4.677334599458124 4.495374833581581 3.117904646872127 3.7710309820563324 0.6779995325285979 +3.7475888351808404 1.5954786841029858 2.6806393366345214 3.614248457421539 2.345890895329332 +4.259941769149269 1.3946429302868877 3.0579788498272786 2.237352281064772 2.9804975090318457 +4.2919927623832335 3.4818179792112276 1.802330368905308 4.269012226155663 2.596324818695817 +1.545162864748507 3.2324077173671024 3.2769533446669232 1.3815153121742325 2.5376131556460115 +2.6053760146733462 1.143114893430491 4.343413412302629 4.0937290631997865 1.4834250439052599 +1.0974503322397475 4.653994882113379 2.4755316914138095 4.503070772467109 4.093888598928199 +2.763256069347422 3.7954089486291487 2.2723976744785728 3.3203135335191316 1.4708729427922285 +1.111421230361902 3.2495887006173234 3.47733035177878 4.784620108579999 2.5061457737122668 +4.198228134115329 1.4651252123460448 2.390342923759665 3.7190177460505573 3.0389518529212554 +4.439070788801924 4.604978604428637 2.7036981502493402 4.9156571790945875 2.2181722540362 +4.4498026560890525 2.7498855163028586 3.2642093284736573 4.060460128331734 1.877161052870398 +4.365512281188121 2.699997475680518 2.049712364550277 3.6224852818757167 2.2907540716622994 +4.270270896670864 4.55840889181898 1.3932566747162296 1.9812013450722565 0.6547537244247128 +4.685892871995394 1.8257606377823552 1.594060675819314 1.8405727132708312 2.87073589551407 +1.099693715791243 3.108863750930446 1.4007147535706177 2.3201410781448466 2.2095495007854753 +2.7275788758887245 3.341572530504924 2.1857307993391872 4.8945668345058095 2.777549436702466 +4.034164834833339 1.6738285771175545 1.122503210562205 4.012630882754628 3.7314910171485267 +3.3810938717534893 2.2105951568791156 4.025653413391845 4.7778321882973795 1.391344727571478 +3.157901747550789 2.2999266767930595 3.016308563863019 1.6569373330266304 1.6074860389027859 +1.723916979039724 2.548715443416337 1.0529724389907718 4.760445669576793 3.7981114073115294 +4.777090638327969 1.9690236401818066 2.427779881679611 2.7084169323406657 2.8220555310413964 +3.2389886410158524 3.043528588311795 3.9131585955380945 3.545393104485274 0.4164805981224036 +3.579430918114924 2.638041895046206 4.316177307144708 3.2787877524508606 1.4008534473463572 +1.9708709819987278 2.173876995694853 4.233205017415659 1.4525275193135632 2.7880779741693242 +1.920532144215577 2.579968478365937 1.0220595554516576 4.499278385539451 3.539195822657287 +4.7690071283593465 3.5350538389638864 1.732259487378538 1.1552856478671165 1.3621819011756204 +3.226605386872118 2.263181642989612 1.2740978499533324 2.90454277528114 1.8938151876051117 +1.4384409475074071 4.032604578101664 1.7385795097014691 4.478059658403366 3.7728552089140317 +1.5581857675100332 3.4355729623008746 4.299306612180661 1.8477776994639572 3.0878109866134245 +2.9512736508601405 2.1605926064579446 3.827447695409841 1.159844518678403 2.7823161614893097 +3.8049247405230884 1.4789737378148997 1.6049618956899714 2.538698975816077 2.5063744735776523 +1.4749039746387198 3.6689750781775237 3.6941601801232724 4.6908136197737 2.4098269826174272 +1.2267305427255364 1.0692515323755445 2.273133487158767 1.005568014533846 1.2773104031877502 +2.117428825605135 2.524939348142084 3.4788940957182373 3.1499532216202173 0.5237049977140821 +3.4601949553325833 4.465682838661738 2.3886026780772207 4.8256353910924386 2.6363107418944485 +1.1957791362706969 4.366771735641763 2.533912578621842 4.919060297426141 3.9678865540465518 +1.761750048025926 1.242513551536256 1.8750835196176032 4.704441923299804 2.87660833548364 +2.7346689713981 1.2048917199055489 2.0202384646383558 2.408727920348073 1.5783353561210418 +4.784116819043319 1.387349591764158 3.0762365263041223 3.6645877175808166 3.447344589766806 +2.969422075085241 4.017340234793601 1.6070108724539263 2.360249118863104 1.2905426476099617 +4.670096478579796 2.6234697193723853 2.3059252022173164 1.5215880001371866 2.191772328064828 +4.330702770803164 1.8340783698150114 2.4780784236442392 4.657591453962491 3.31412287776668 +3.337256895459296 2.8675104903757105 1.0837696082396877 1.718260695323889 0.7894559042012692 +1.4855568711467266 1.2131253142892215 1.8829460466879802 2.838706440266032 0.9938294034210682 +2.7539404669588574 4.562109463366198 4.798725126654965 2.976094890718637 2.567383122270232 +4.474032422839837 4.2133856761642186 2.545468126653477 2.7887367460114056 0.356533796037482 +1.0876366519626273 4.40418528206527 2.837317475420969 2.5136407489738466 3.332305724131452 +1.4348222166944207 3.841665447090935 1.713089307345173 1.4785892152410631 2.4182399857959433 +1.278248179286484 4.433856596368717 4.463172377312683 3.8236604261007505 3.219757757612073 +4.009567579639388 2.36122972415576 2.1809055028617244 2.547256097703433 1.6885586883970716 +3.7141132249919724 2.0846513900748964 4.875621334143582 4.900026206057383 1.6296445837127962 +1.8382298787701634 1.4549565717914685 4.281981217847896 4.707475044892824 0.5726634480178773 +4.946110976650617 4.242287023648098 3.5184667028341345 3.6127507685211584 0.7101110067183635 +1.2919758037096236 4.112842157070125 4.93837908315989 1.4599949026450605 4.478442082999086 +1.0648202647684357 2.3243247632135047 4.347731374868301 4.313283922617686 1.2599754793526432 +3.9056068354377156 3.8960785242644227 4.708887712429169 3.7071749638158584 1.0017580643290316 +1.5111521491983178 2.374522475273102 1.5855270206283274 3.1785511404254114 1.811942097916419 +2.275070194798566 4.326414278282913 2.391625490104469 2.3926377951615896 2.051344333262401 +2.7146812377322895 4.186274165800859 1.1517091797797385 4.650615193447957 3.7957777909705217 +4.722743904960557 4.41351085598816 1.97880425114445 1.7336663512709043 0.39461078106303327 +3.8873322669524932 3.2213143691347006 1.52494395653471 4.661212553248497 3.2062065671049167 +1.4691254651352192 3.5220529512967484 3.8098985054605237 4.286704649117199 2.1075709625220798 +4.366555632810984 1.1588440389604049 4.597203843887639 2.709993772657998 3.7216898745427476 +1.5596893383106352 1.4163494204618656 1.6516357239158217 3.691577779013147 2.044971862936894 +2.055161696450688 1.7398433512963138 4.034696463620678 4.777618949736576 0.8070684476347216 +4.62266667174047 2.623922001466355 2.668260518665055 3.99988106350763 2.401706379305351 +2.4433742732429478 3.4390955092489914 2.0312703882981493 2.003645398525188 0.9961043719878754 +2.0009245286212747 4.1678362410985095 4.116276278402576 1.3104720802480783 3.5451436597199306 +1.0908362557829352 2.03539311911093 1.4563679325959322 4.687120437669321 3.365999022147511 +1.962807001647489 3.9020951329699622 1.4536329021551988 4.560066669848153 3.662071710023065 +1.2676736395935446 4.3484399888018785 2.9142993800026025 2.678503369730852 3.089776861987694 +4.538636341820547 2.34571044946284 2.4781327940064815 2.599702840056575 2.19629306912112 +1.8364342972266559 4.2296964606449965 3.4140249231608677 4.568334421103897 2.657091304394963 +4.7210614612459505 2.0280962716213033 2.5376961801548057 3.1431783462860565 2.7601938638496217 +1.2110096473755791 4.600429393145472 3.236585817645805 4.805292968853669 3.7348371235256748 +2.73923402434441 3.5218698978115777 3.7724315100256955 1.3554960539606173 2.5404912732033194 +3.254443497117314 1.2393408583358037 2.5247640901677557 4.7711279273940415 3.0177457040019475 +1.144903029087105 3.3672591926470763 2.862630693856849 1.8038979872017236 2.461662418337308 +2.8272462602111377 3.6973888727439452 2.622339373917412 1.1344741931073368 1.723627268991883 +2.226301717917199 2.736625063807887 2.4766856403150084 4.511753172458816 2.0980776386366053 +3.072552739524459 1.9997691844439198 4.4184210089566385 1.2846246853489607 3.312332101995245 +2.0338845046626957 1.02456994823677 2.1420873198678128 1.3168688360534766 1.3037259757487747 +2.4056602802426132 4.653194705907528 3.8685439122468503 3.795368309125925 2.2487253419306303 +1.898631620941328 3.9522360149740328 1.6865724915629081 4.093240798743141 3.1637546282820668 +4.88554041432448 2.911538840926762 1.02798964778298 2.512406999426881 2.469853656725062 +2.1085250541506673 1.518809088229856 2.9478969317385935 1.5972141058813123 1.4738076592716318 +2.5507110104409545 4.998095479050254 1.9918597226677024 3.618515827373568 2.9386562950040416 +1.9216069176310238 1.7226548691922292 4.492011248662415 2.9078493073310243 1.5966060797644586 +1.7128336077788662 4.03330054493983 1.278286517252996 3.723484703413272 3.370988130512875 +1.5652189604631852 2.9421857210622053 2.904103268989118 3.1242703220972587 1.3944572388814518 +4.74194427862238 2.4564300948390594 2.425494659962574 1.6517532299821651 2.4129340821379412 +4.256553211497734 1.060980841558341 3.235514450167737 2.9973152472887654 3.204437802762327 +3.151886893620023 4.47246974294686 2.455594171656154 4.963577601069916 2.8344170377963445 +1.0256680789162411 3.6440311344382 2.085403290782288 2.52951712669277 2.655760190561153 +4.802643879077554 3.958258752270006 2.699632411283157 1.21682192120607 1.7063742824645622 +4.920712003786557 4.834316489194422 2.5543096614936944 3.9818560106646994 1.43015830031962 +2.4665669656492355 2.825990449926236 2.8677355655906265 4.962723372054922 2.125596187022338 +1.6421430800344021 4.805712460828506 4.5770047840808825 2.7789488745712263 3.638842711745121 +1.8437427713902235 3.322492626340439 4.222802153500169 4.457487486836136 1.4972569382702148 +4.488848139252717 4.342049497082357 4.835140439944089 4.8334798252832964 0.14680803446716748 +4.401836957463348 1.4023628979461553 4.677842682569942 2.1792812860682336 3.9037999034024673 +2.326247839511555 2.464681949033334 2.52546046673021 4.122334933581014 1.6028637077303634 +1.6058238414050479 3.096092736273112 3.378480123499268 4.476763299991251 1.8512502031807052 +1.7031006703760925 2.095835559444071 1.254161422163111 4.588726585387467 3.3576130689644264 +3.419714926815625 3.1547880112130255 4.556272707010599 2.5514766705609904 2.0222248683998445 +4.09377579576711 3.004632485247876 1.7264261195092265 4.86370601801695 3.320957439117435 +3.3716039469596435 4.582634462746027 2.525625944161502 4.783912675509685 2.5625092919146835 +2.401004711630094 1.6272100649615924 3.7932638441164976 3.8382200068076697 0.7750994850835254 +3.7815750093787917 1.57504120841531 1.2432217809168398 1.443331563260053 2.2155891631310616 +3.1102088957014478 3.319409895557861 4.753129788005378 1.7398231124300039 3.020559911574017 +3.9691517342788227 4.957920543764503 1.241360288488329 3.797532072058117 2.740744049656969 +4.098244060395263 2.4994066919248232 2.3855738056252505 1.570536731829832 1.794593648288793 +4.381736661235999 4.6328265054069675 1.6633437444465349 4.687817805933374 3.0348788210491207 +4.345135271755046 2.3363912158068447 3.7917973041401796 1.406925593179309 3.118118945782643 +1.30664204073065 1.5904858775550457 2.5237658773140663 3.3509136988441517 0.8744946211184835 +1.7568798380688415 4.913169895112386 1.6863284571480643 2.6834636239026723 3.3100521846295234 +1.692149609326533 3.085128653884427 4.022718294330313 3.663328792196873 1.4385935606769362 +1.8844193056733527 4.9203597647362685 4.543378291116676 2.2660568249885626 3.795145258229657 +2.5224858298075463 2.185223897984052 3.0312152394892298 4.948892001706108 1.9471080542702104 +2.953957766265174 1.479102331847876 4.239489642319896 3.7026206907703587 1.5695307654098838 +1.2119732367690634 1.5914662779010822 3.7232636372501404 4.512666429178182 0.8758834032971599 +2.5661081647048953 2.959883985584228 3.785235355770446 3.533612351468603 0.46730454031934865 +4.353557879736286 1.0483469479148466 4.765979175402347 1.5321501796164387 4.624074964554278 +2.588829243821806 3.7205528312694196 2.219761859693178 2.3431178337464496 1.1384265346169369 +2.38677789010909 4.033038903690391 3.5154541599822537 1.2219544757892113 2.823174830971564 +4.385423800994223 1.0999102701340329 1.9103531580504276 4.769325724528132 4.3552638608168746 +1.029834907449381 4.163516158978313 2.2462406011647698 2.9350072723801968 3.208482151042937 +4.9244962333953115 1.3777663057474503 1.9517657535242972 1.5542701516931978 3.5689348457415235 +3.571762593774571 2.1089690180650322 3.3469580566574737 4.731101806381172 2.01385673895545 +3.77720479025791 4.359262644517034 3.439570637852614 3.703637306619673 0.6391576888831635 +4.751539745077024 3.9521175209482764 2.907174661764323 1.8798214740674828 1.3017413201945356 +1.3086482199236853 3.689585482785922 1.1202107913987032 3.920549368974914 3.675698355244548 +1.17061861377438 4.093173014490809 1.5414846788915986 4.218616475385723 3.9633772064928188 +2.672870843865344 2.4015901633997037 3.3427656028387522 4.747168066986943 1.4303634114795485 +1.7602641711521883 3.6901414926420846 4.825795855121628 4.604908286261102 1.9424772312895022 +3.5631972699626533 1.5698898528927479 1.7201550800730034 1.0699947831496437 2.0966599320446244 +4.101048640100674 1.8961937976620948 4.143886014959306 1.3247072335335939 3.578987828683665 +1.9740581495184042 1.9755543795642363 2.1230145904214677 1.9926862960152127 0.13033688283518796 +3.423551311442345 2.267829531587897 2.9832406801916616 4.627422093095132 2.009732656590718 +1.0605606532054228 2.541891602579762 4.652342339539528 1.8448941538044568 3.174288376496601 +2.4182718901430005 4.763349023768312 1.577709227208294 1.8166913709361454 2.3572227785411086 +3.187635801193131 3.608966097738291 2.1781986203941264 2.7193942745130486 0.6858658431676273 +3.0075083482177116 1.0160658377969556 3.0891257943949757 4.106722887393499 2.236369181506034 +4.979474818279662 3.448071054964028 2.074499105017178 1.4311774727097828 1.6610419046164786 +4.409579023080514 1.9391190302343255 1.2820200150581993 3.2386806404009283 3.151458928658311 +2.1644120422820223 4.57506514930372 3.773297524482302 2.2469402193596264 2.853246401083285 +4.12867998144823 2.5518204755658704 4.921033068863547 4.045715803200148 1.8035149616401884 +3.3294581903325486 2.9084068513017804 2.7041625936928413 3.2271301394819694 0.6714009860346548 +1.5419244807495778 2.064489033838517 3.170380652338664 1.867758331482646 1.4035307702139492 +1.2064264000345206 1.1421376349389858 3.3375886047417933 1.5413549551336563 1.7973837568260365 +3.5740854559248576 2.5490755981773887 2.6548969167756864 1.866282999918079 1.2932737986756646 +1.4956389834904242 1.6017344891383418 3.7372362414178983 2.1000134357345277 1.640656811087686 +4.89679246864247 4.369676267149503 1.0964218131164882 4.9585114712953935 3.897895331802642 +1.1472116591586738 2.2181593202040184 2.3712049165886517 4.171587414804298 2.094828401702561 +1.4023448451608482 3.9898825067887107 2.001222112607478 1.9053403250962178 2.589313512790396 +2.004535675673744 2.217399988390513 3.0296730339633444 1.834706871647386 1.2137773044131746 +2.582378629579863 2.8499114060347033 4.411944593818899 3.127586885197281 1.3119254971885441 +3.201934636031307 1.015703533840902 3.9910085461063143 3.892641949697127 2.188442921228196 +3.646610667673087 3.595666423007308 1.0547635497788654 1.2094759370725674 0.16288412705565633 +1.8903514841521094 4.882330812116271 1.151929043527887 1.991282983727868 3.1074837627723992 +1.0433122432956194 2.112863594024835 3.75773200046186 3.886180542994715 1.0772367984456825 +1.88471104683769 1.1618216776341113 3.8925503388098535 2.3011899031496914 1.7478549929247702 +1.6440802272973425 1.696175537234013 3.891451357782795 3.781781607224347 0.12141406633891308 +2.833294090827051 2.61090435108012 1.9479693746065734 1.3102428112964257 0.6753905284323133 +3.906148015686851 3.621621367783368 4.514342837086328 2.6267123333114957 1.9089537270841377 +1.4768929467318173 4.209030811656081 4.596953903577928 3.88349186348961 2.8237573188218392 +1.8729648386737612 2.998613760515111 4.860171868483654 1.731490673203901 3.3250160175463424 +3.087572056213502 4.4364903579278 1.9106436884934408 4.671435194019301 3.072710582154384 +3.5040068808046043 1.7302521860040239 2.343436592039912 4.474016667480546 2.7722873543685402 +3.888686347784479 4.513612781039086 4.625448389819166 1.6761297261524324 3.0147991022343845 +4.735607604747512 2.629213642425217 1.1701144703572255 2.3513663552935964 2.4150054948536965 +4.162119987792401 1.9001093239539055 2.869188315024585 1.4770695299405077 2.6560660675335317 +4.353377260571955 1.816420245002666 3.0904168061235926 1.4496844752305291 3.021283416113758 +3.4751134041532117 4.972757970634186 1.8035856000152446 1.7237072012147805 1.4997732515633526 +4.721799706324639 2.8034926456233515 4.65775654371986 4.308335137251956 1.949871097902223 +2.8401634056448626 1.9304739610772361 2.0542586803342355 2.634206968801594 1.078830340161962 +4.777883389109367 3.222663682079258 2.424118283320513 4.7857492528006835 2.827721551557485 +1.4162301811376854 4.402417721176562 2.4640851050150965 1.7167927273856813 3.0782725548506034 +2.812485401153176 3.135541573864117 2.3953569539640154 2.7884757664942357 0.5088297274057518 +3.3048902365449524 2.2009945733480722 3.169205331651473 1.494918798622312 2.0054478377429032 +4.887464465771428 3.0599061429896706 3.7033243904535955 4.664651169410709 2.064974236911669 +4.741459514280125 4.816288627786005 1.2763189017533607 4.743197494562338 3.4676860546343047 +3.409644951101066 3.2506940928609205 2.9600981412357266 4.514568532981882 1.562575941882738 +4.88625404695685 2.9070557216734456 4.415427157543468 1.4675512478694874 3.5506616833543623 +4.1757209309179 2.105984346981574 3.2820851102767405 4.097555678026137 2.224590248506438 +4.347524165469114 2.502936790632128 1.5535573325708842 1.4711872586694104 1.846425577293203 +4.422234598665675 4.926284099914877 3.416369617152083 2.359948091209632 1.1705094361790283 +1.2414376558254605 2.723971656642648 1.9286568849407626 4.547832562197957 3.00964919748377 +3.313033358925226 4.514416301471261 3.3951690888835477 1.5775302347995077 2.178791403167479 +2.5964563442817314 3.6489801609095007 4.058974657409381 3.9037736980202813 1.063904940473529 +2.8890922045445717 4.698760953470863 1.4064304276872397 3.9117898675077734 3.090586821873527 +4.957866991575392 1.3752234162108694 4.2429355997027915 4.661752995577362 3.6070407537464617 +1.767889308960798 4.400772653131741 4.955325252636629 4.928388601273007 2.633021133071182 +1.6429205587951738 2.21021286242558 1.5304814392842512 2.9996926367472807 1.5749292366671723 +2.0801311092020023 1.1441121859000174 3.5970251698147866 2.8493091270275936 1.1980027985863582 +2.235272630030742 2.806752859562335 2.714058179981118 1.5181439699004984 1.3254434920502023 +1.8647888437630722 1.4561803511423452 4.148700899166828 2.6642521884484047 1.5396586878251204 +4.274694139101806 3.289355212603443 4.3947323258001045 1.7905872750472573 2.784324737783561 +3.884373088755136 3.3568591260426794 4.141144096219355 4.743059289105603 0.8003579700883153 +4.575283233363939 4.2751058346187465 3.015423875407599 2.673210822578831 0.4552101099973674 +4.771137755691868 4.460821519963262 4.414604557387998 4.833688043870273 0.5214663314145135 +1.2489616587741508 2.9760610765949855 4.392474716796206 2.12900301226931 2.847134797692403 +4.681862995727073 2.8292613223046637 3.568968040399654 2.779419120927539 2.013832281151312 +1.7581099231764794 4.19191235853093 3.6276299527884803 2.6374444810090405 2.6275200404298205 +1.360854233152605 3.6326126045864626 1.8643091312415145 1.448565327973664 2.309486741277254 +2.77851509597392 2.9722246856397083 1.9505553952020316 3.2581600962709247 1.3218749787275488 +2.25910292435972 1.8431359367509064 1.053184641467737 4.549649636776413 3.521121412021922 +2.977010563766183 4.667391594405992 3.6751946472393158 4.163395173530279 1.7594680396692854 +2.039449356812025 3.765060765995527 4.4470633489323 1.6081889466944053 3.3221894297565027 +4.617273090969956 4.8446564121209725 3.2536547778868594 2.2909968641981715 0.9891478319872735 +2.7628588573022195 1.0928668185591182 2.4291376710295634 4.336511996387824 2.535143038666895 +3.7242414577821634 4.850147068186976 1.6160557163804072 4.626692939024588 3.21428062401398 +2.142919126089828 4.082136180376427 4.788900289491039 1.7849068069595968 3.5755474583240225 +3.0674548695093726 3.7728309195022023 1.6266294525168417 2.501122911698495 1.1235186611957013 +1.8788504912993176 3.6513376547789895 1.6308145693186273 3.4144780465551503 2.5145906515231653 +2.2691481637700446 1.9786551137252584 2.8293761455857567 4.8721807336755845 2.0633557127274913 +3.175035328750247 2.346664484500776 2.911764654268764 3.1384486707453174 0.8588270483214437 +4.627736933504857 1.7180502128181048 3.14229866350077 3.42520485496067 2.923407724849062 +2.8537022954432634 3.3202161134713117 4.471981963685285 3.355887643193412 1.209670068508485 +2.393390477078939 1.1825124715878164 4.252616989980952 4.742582817115799 1.306251145814653 +2.8508419858414396 4.649640924513642 1.5646659283115962 3.7177647881637697 2.805621557171418 +2.158280439924833 3.7137016423194353 3.400473436589661 1.9454791359751127 2.1298693696279805 +2.4136193374312014 2.4760654796010453 4.085771209572812 1.0166593944469136 3.069747034271274 +1.6271407972281047 3.295527353391833 2.763037874320977 4.090457185751624 2.1320308931033054 +1.2010614434193552 4.343298311370008 1.4309196655944825 4.2838351470929315 4.2441464723642435 +1.4047861074135817 3.5885366300864074 3.794583250694946 1.216996040702119 3.3782720687346135 +3.2685565713390354 3.3900784694768884 2.6589987140055658 3.482827660628351 0.8327434809235282 +1.6681884066419341 3.4287516180705584 3.4970334165144115 4.15048387649626 1.877919147643572 +1.4676504015152227 3.6187640419792007 1.537512214423066 2.665154295668013 2.4287582336627547 +2.686993528035523 1.1095803740464283 4.595772021481516 2.5164473011575827 2.609947039870355 +1.3611470290316383 2.5554111420512573 4.533708219849572 4.485331028315731 1.19524354183875 +2.981327726186198 3.889559016723504 1.5338346213366196 3.29782369395032 1.984071955704128 +2.4017886526524967 2.52020036120335 1.2238485503235372 4.137637609529765 2.916194097496229 +3.2927256193569874 1.3686174892082534 1.148518692513659 2.1725927942464693 2.179660492449299 +3.6075232358262643 1.5410117311377651 4.432412699443487 3.688320797853531 2.1963930788958708 +3.5615049661819533 2.322168765502357 3.447128168838252 4.668567687927393 1.740077215846368 +3.7111626358308643 3.881103478338023 1.827344275466246 4.185424856992072 2.364196252200993 +1.0387858181017324 3.8700481483617453 4.800672960905622 3.637136404774317 3.0610233093204724 +2.2410305694780908 4.433571841263056 3.6786753596437642 4.833311462274685 2.4779874410454865 +1.7293794794361093 4.643340822156145 2.2807557164003316 2.9629025172462216 2.99274037710775 +3.7827893630507043 1.288093349144377 4.892569766665669 1.6889978434934436 4.060342506333364 +2.5770054084839336 1.2745576790250164 2.69649908454328 2.724138156712054 1.3027409590102859 +4.472459194218248 2.7211244603933844 3.576699651813011 1.4682768346550947 2.7409159282644064 +1.032214826753524 2.5145140016549736 2.8838442440906995 1.9246829757973298 1.765559736318107 +1.7708475385598876 4.453791369030103 2.5320863035677577 2.711682865824707 2.6889482186596134 +1.4012340800387868 3.821076659232119 3.6454471484750566 2.0271247912016794 2.9111175448833904 +1.8876406827843115 1.7823950889171871 1.028163557914835 3.8342092227680005 2.8080186801853166 +2.4355596182481976 1.7453580675868188 3.3959407832642383 1.8997021812594643 1.6477585183104266 +3.7466490038272453 2.7909019818294105 4.4569940265654875 4.019731758466778 1.0510236254055172 +2.4885234017680893 1.6653794297742408 3.8297124630384944 4.4612682349853525 1.0375108152251722 +4.5894744671157035 4.16568282975146 3.0405876243470105 3.720555254087476 0.8012211488688584 +1.08886613820059 4.368440423086543 1.4108583074396654 2.691532917513367 3.520757723413049 +3.33072164322313 2.746986100905262 2.831812337374897 1.645645348829762 1.322020918170121 +2.3262422550883395 4.75131119313081 4.061051760864011 2.531511603856003 2.867133140640406 +3.7092870112540473 3.252405710744003 2.667377978309408 1.3442223369457418 1.3998147641842629 +3.1634375090598326 4.866438653044934 4.616778536625372 4.353274034099993 1.7232665258936912 +4.408682225718591 1.921574102110923 4.89134344978106 4.592761777173612 2.5049666332572813 +4.261597014571786 4.924049431543239 2.3629587951552864 2.93520892315957 0.8753932908997183 +3.230882385594759 3.2718676807361726 2.0998326687893947 2.79176299044662 0.693143105315562 +4.319835008485473 3.9395293084834697 4.03040116471964 3.193082914864143 0.9196381228478331 +3.9628911133417137 3.3538900266981377 1.1504009137158389 3.333686101912278 2.2666310984655214 +3.966997670964709 2.3493683270581545 2.2564202740415835 3.901006619008352 2.306813590283945 +2.4447670219163964 4.1951436321693745 1.0391374942608964 1.7434429104712836 1.8867602913523467 +4.444863335122292 1.794878986986384 2.2362810129711845 4.658967957140327 3.590519332187603 +2.7764034054820455 3.00241320741157 2.614851887713579 2.180158207626114 0.4899377777597948 +1.8253208289368423 1.4095979704705748 4.500571563815754 4.053298413005862 0.6106379995437333 +4.5684666301166335 2.591209435615421 2.8137672395129547 4.063290260473693 2.3389856333713666 +2.24187130423268 1.9912133647600738 4.199914135807382 3.3888993536780614 0.8488665262883924 +2.4171716135400954 2.7546990788592782 4.953426271535269 3.9866680010054525 1.0239855191762208 +3.4957049736764607 2.2433201227776682 3.5450434681152676 4.567254476934849 1.6165961651917702 +4.373419353189359 4.270110262571377 3.21428055787015 1.0897234695955613 2.127067368360042 +1.0923123941445683 3.0288760512999082 1.7635603375020148 1.3487682845563032 1.9804876281870036 +1.0929637080881118 3.272671695451262 4.357546196367346 4.666974055241228 2.2015613800260008 +4.405816315007145 3.9244977528483083 2.0386986974260592 3.531069832271837 1.5680686089580151 +4.814476427723148 4.626486150452743 3.934893999467024 3.9659835884853005 0.19054371386516378 +4.712044089719548 1.1744291241348956 4.796672094716071 3.3452442632104034 3.823789010235495 +2.6075068253213582 4.890222529870217 2.3412133149895142 1.5999272551344572 2.4000616680263502 +3.780045136924386 3.2669636396362467 3.0663688578113266 4.0107269633148785 1.0747394355329558 +1.6423183152005034 4.9119886636766195 1.448255466522427 3.230241921713138 3.7237373583789557 +4.312473619093889 4.748823204011803 4.06299240089333 3.3480556852008623 0.8375771413447047 +4.385765683766559 4.004461504788646 1.8567452056529734 3.702225256312666 1.8844600007134464 +1.3375188424962672 3.917265756747009 4.1144488825213 1.9506684152539502 3.3670521308874823 +3.6861813282692872 1.3667039697655436 3.0266709347484766 2.7212222346885486 2.3395029653710218 +1.9318030267356225 2.7577365657890396 4.477600933451999 2.3475719168137084 2.2845546223836246 +2.5441544666621234 3.720349549631908 1.605995139247101 1.8534651439156367 1.2019468692138366 +3.0970023914552223 2.214170310651717 2.207363508205541 4.113120982840192 2.1003104615798325 +1.8502756857694114 2.643912090845289 4.38146292303991 1.1226110230778068 3.3540981573812614 +2.006779229676614 3.3187192710515774 3.9391519465530362 4.0366391965533275 1.315557082028583 +4.2972744913677925 3.553102913146963 3.7196203447525185 3.0028917905100885 1.0331946371802962 +4.482989698834524 3.7333616315572455 3.6351817401925617 3.8026532491989746 0.7681073789378368 +2.9381603035679253 4.4642390816874835 4.396169699636282 1.3393266568171054 3.4166073560564265 +4.736589124273667 1.5578363997721572 4.889015005495996 1.817980009303453 4.419923622797696 +2.0739686175930694 2.954680531160647 2.241790936640332 2.0553332885588365 0.9002332637866407 +1.3222084299554466 3.3987424397304906 2.582759287988656 1.1024679498640135 2.550148219119678 +2.515069784698212 4.115929490595839 4.998669426728128 3.7622038413485854 2.0227701159040814 +1.149002401894084 4.231176484290259 1.0067429644841126 3.7089955173308473 4.0990201187065916 +3.1149008108371694 2.2114552362837143 1.5730649964927248 1.5384047657463928 0.9041101911689811 +3.0981283975170597 3.8936262783878934 4.467645676020625 2.7060594050626627 1.9328743023015147 +3.4256200297169315 2.777440243785615 3.8160018296918414 4.719405833825647 1.1118794132346186 +2.9041541349892057 4.566691944754 2.798493892658125 2.0489272504892178 1.8237001178784547 +2.5278373027099916 4.818006477414084 3.07645351728167 3.5265549990596594 2.3339807609883088 +1.8076937452848547 4.560287879317261 1.846592886518521 1.384115720548357 2.791175307241272 +3.6851195294086465 2.250812435909158 1.6029156158796942 2.0878858588996345 1.514078259231593 +3.4564173089546038 3.3117824670634053 3.2869712030890526 4.826879072202817 1.5466853212102927 +4.760150022464933 4.370766489918428 3.3982474591144634 1.4858017183833567 1.9516834391516842 +4.983750276773087 3.317503820971952 3.236225312363002 2.2711108617114495 1.9255708645298648 +1.7329518101263859 3.0622472230642526 2.519140277143525 2.311538565866595 1.345408772597668 +3.472433202776279 1.8416866455574716 3.5902667258118566 2.3489365834859046 2.049447451419031 +2.6981335667856094 3.5149015235157113 3.585264038904865 3.669743271240988 0.8211252254298159 +2.851506328102377 1.8803072107059169 3.6519563323185458 4.753762950514156 1.468742846631537 +2.7755209103404517 4.572336194546704 2.187531572382112 4.13394308961383 2.648973944750962 +3.5513763043523454 2.071905611848528 4.193890323285508 1.9618543142051212 2.6778383587903933 +2.5960514992548744 4.7027519896344465 3.1378150931030535 4.690269691456446 2.616926104442791 +1.74376698427692 1.01070387329574 1.4245128104626708 3.0127364730925557 1.749238670741901 +1.429191272638969 3.0018507785555286 2.9061156740197798 4.393260403636091 2.164453133790448 +2.2527118597092466 2.751331478171454 3.0146347701387275 2.7501262702224945 0.5644344695740446 +3.599705084846045 2.9534122792185262 3.2332143014937076 3.3891670256137116 0.6648425699113587 +2.6904031941671014 2.9230974616228806 3.7872752908935743 3.7270100026763333 0.2403716436493474 +1.9187813205824922 4.089157251415105 2.907589611183172 1.7906356852188035 2.4409255936764533 +4.9800444293336055 4.002177027384341 4.635814645236698 2.9576343130635605 1.9422960338444155 +1.5792497478228649 2.315281070997543 2.521117826118831 2.188656954289047 0.8076337907691132 +2.87909782088232 1.9094232720753204 2.3115558590580565 3.6778048508130308 1.6753820573455902 +2.794234205225987 4.290323543691603 1.8789552621224286 4.803768674971844 3.2852422754881148 +1.9132593798274615 4.5054353975119055 4.9800073172607995 4.810455918358873 2.5977151852210403 +4.3324493905490495 1.3581817026249712 4.471805711086281 3.0936554517872463 3.27804307730012 +3.4220588514981567 1.5886471761748702 3.443714810818283 3.463943333023201 1.8335232652798097 +4.650039923916118 3.8106896433855386 3.1517105079685424 3.23340933351744 0.8433170172140676 +2.4771280403477647 1.4810431853897876 2.306035874659212 3.390033044087383 1.4721531515453619 +2.9101916596415496 4.871022134654687 3.7026282553003624 2.623897178519229 2.2379716011946242 +4.06683869461088 4.377369164414434 1.3116814217494701 2.7127981185754533 1.4351157342879948 +4.8590565072871215 3.715855095449119 2.899149277365084 2.8761094310593642 1.143433558431006 +1.26799978851577 3.9194252170467276 1.8894641568336983 2.484517430495392 2.7173783692294435 +1.9760844294308129 2.2539092019291314 1.3321501427397968 2.4835866452361675 1.1844798957748572 +3.1654132365937064 4.9013052942342465 4.0355123625548135 1.132420870039763 3.382493377627334 +4.8241994965294115 3.037403981680746 1.5257838912017943 4.599021500826247 3.5549159789077334 +1.2753439122947774 4.206129164803613 2.7140953828438823 2.7821518574233273 2.9315753239607307 +3.713661193297328 2.2489141972132147 4.8965800467574425 2.700997465394074 2.6393307170803104 +2.793167598455314 4.366087251847636 3.8331437041373566 4.12560637668911 1.599878323768385 +2.2968283361178075 1.5673101364377056 3.071580269607895 4.016722631705326 1.193939231408202 +2.273975940758936 1.2176613316367741 2.8362118857093463 3.5187578993234627 1.257644470486563 +2.6572459282042376 2.787088611880728 4.3312172818455466 4.070387387681862 0.2913612125759915 +3.92262862135864 4.565841325733707 4.078284778942905 4.530005613181124 0.7859861927250122 +3.834263403391003 4.316745895007637 4.171007698274956 2.584371965031974 1.6583733912240912 +4.1128348167895865 2.9938531937598527 2.136876651916185 3.946367479371618 2.1275283611091074 +2.4147511206212102 3.4441126629297965 1.591417284227071 2.8254649733705515 1.60700307525041 +1.22413963734506 3.5421387142028067 2.4411450358637428 2.312806211209835 2.321549175491855 +2.122975666520317 4.544458170487037 3.1719993236715607 4.922299960831777 2.987830289266844 +1.8432246675559707 3.8291201066773977 3.371323499974014 1.1403414625186752 2.986814615367291 +2.565097253087453 2.873784097949586 3.7908132694481345 2.077299496486336 1.7410964988537299 +4.900566565808635 2.54110622247447 3.813514922834942 2.278301994402868 2.8149479297833486 +1.7288112839916518 3.6863063398874116 3.2622123780816077 3.8276911187510785 2.0375360364924773 +2.917325076978354 4.714828376765969 2.231197093242905 1.6552543607150438 1.8875190446453847 +4.100884984075069 4.387434787045105 4.06100211593856 3.9058354794324717 0.3258641966629338 +4.742898691626473 4.585656320256077 3.265537321702238 1.7781176740434645 1.4957079833963363 +3.080533896195521 2.788749945223009 3.777673377777458 2.4724354023309454 1.3374543157030971 +3.0749060582343857 3.4219369857612305 1.4575447623179492 2.279312796553168 0.8920387697577711 +1.4388446439879248 3.928573009723367 2.3369803634390753 2.2822512913762583 2.4903298188144745 +2.7291980661411612 2.477846259869534 3.7170290709926723 2.148790627942211 1.5882536147534323 +2.5137335143626514 3.6055492285962893 4.800546015010425 3.9220250129467153 1.4013781448683054 +2.38445327931865 4.544137022725481 2.880747920721252 1.1017010040865562 2.798078233917551 +4.6107874352132585 4.178351586947989 2.6641034089443405 1.8398538027771494 0.9307997508227389 +4.705497194912897 3.5345053006860363 1.58636668644098 2.5244618589282113 1.5004147989768892 +2.616919903270337 2.0688199903893834 4.846878915495031 4.202091734530329 0.8462647477217258 +4.820638450546751 3.149644427449726 2.253705432755565 4.15310272537751 2.5298085106279395 +1.0428098442124152 4.807658452076129 3.109202326510714 1.3843303645080627 4.141167507531689 +2.97618650756727 4.489178026698863 4.820692037226783 2.2676602157246393 2.967678354971555 +3.8042219044306957 1.1453683565316006 4.2324062867996375 4.202922122471666 2.6590170185844477 +3.027131982368232 1.0981964020708435 1.294601593733808 4.696018197980546 3.910297608697148 +4.880828200956181 4.133044858912424 3.203835042650236 3.5814711488367807 0.8377284496385841 +2.4412904492015493 4.797185628598184 2.269371375311511 2.022848065737311 2.368758290427227 +1.6737947951617667 1.5615297626187186 3.2302719545848944 4.460505675986157 1.235345476700624 +4.615580958224919 2.4254383110918365 4.8473468876817805 4.053438538762551 2.329595518813248 +1.3499254205614597 1.6905071895077959 2.581040342864197 4.816779835763517 2.2615320076108425 +4.849309123432362 1.0215587994854793 2.4745168252480405 3.807959208665432 4.053361707566858 +4.680159705704192 4.617469271608266 2.8957798287429624 2.758122322664022 0.15126030380443206 +2.777952546342102 2.521061898645161 4.4343644921375125 4.216053495077118 0.3371238590068311 +3.1834926545037208 4.737009513099535 3.1443368693056826 1.1321280762664596 2.5421248704038466 +3.523769320949305 4.143467525067558 1.3634706717007128 2.4147443660507775 1.2203287444864277 +3.6211995661715806 1.9047514810185238 2.0676878434358286 1.026997323416456 2.0072943948219923 +1.4748948793201149 3.199268174601449 3.192521373876698 4.395950656813558 2.1027851294198685 +4.452706452639383 1.5892223909738337 4.785591209174981 1.074504282214971 4.687398761665804 +3.072735244107235 2.8354607453104794 1.6107350951821386 2.357115825119188 0.7831879607096972 +2.975606033493468 3.5165832190919537 2.938756599173936 2.421887317197421 0.7482046310929761 +2.5696639533684347 1.534881436012577 2.3017700278336215 4.742892612615345 2.6513872467364563 +1.3028511177145226 2.6764487958215635 1.60714494096085 4.114409351266803 2.8588713515105773 +4.950211049471374 3.4404888158524973 4.101465588800403 4.334978389043461 1.527674523764969 +1.713598348725776 1.5379727644468368 1.462533730462376 4.175968057513522 2.7191120228988037 +1.2382664117574054 3.7331284999733625 2.3479679216363274 2.8313316034380405 2.541255061598932 +1.3873070964108019 1.8921993429494823 3.4746718389869087 4.249130251748173 0.9245009538727215 +1.726610506902496 1.7719166687835046 4.157763161022196 3.696988787108669 0.46299640599014436 +3.1969908322602842 1.6720720048264117 3.5824271118403126 3.9016763598675785 1.55797866244319 +3.315446422945395 3.403312958652428 1.2867410857918142 2.267432442347025 0.9846197565147955 +1.3769751244670854 2.205788050596455 2.0510786286879705 3.956986141604411 2.0783200702275044 +3.7561241332898834 1.4043762056477647 1.9200829926389646 4.97209892759117 3.8529883963452556 +2.3890153227983233 1.0041866132241135 4.558189198724825 3.5850766050331315 1.6925420747687028 +3.1758311437344653 4.245843864318857 2.0275565165075182 1.5716979336547712 1.1630710510424231 +3.6724701558903403 3.4524682471094814 4.784239483785418 4.168974918873177 0.6534151243305215 +1.0269723552440526 4.218687247459172 2.0431001326900406 3.3336869724849767 3.4427689937374035 +1.7204230774299276 2.8548226644590726 3.58298755207139 3.6309481382053996 1.13541298251967 +4.199278985361611 4.953462392683926 3.186318871425355 3.8614941430989784 1.0122520730331201 +3.2813763450922426 2.2365982868016943 1.7151136829811642 1.3360859105220126 1.1114059759515038 +2.820041202004875 3.4400234141340995 1.9022123087049665 2.1898556404567318 0.6834593109014633 +4.406498030125061 4.244186830206127 2.300941260354394 4.890373455314443 2.5945142161712553 +1.1140388468452573 3.295834708648997 1.6756318974797546 1.5670658888320181 2.184495310321728 +1.8541781176938494 3.2665553783692993 2.7181354243753746 1.7771862865708745 1.6971136692655915 +1.9106501480376865 4.791039198175335 2.154380597771741 1.6711596256849006 2.920640954998991 +2.815240808208556 1.834015270411295 1.3854084631282562 1.2813737816563502 0.9867252763431595 +1.0144326399877075 2.895005939419172 1.6753176825140308 1.533679193500137 1.8858996251403954 +4.762236560078081 4.6327601121969835 3.358967308915302 2.8827168319325103 0.49353689566459297 +1.323894811907235 3.1084689979816678 1.1879744444194618 1.3883718378703755 1.795790672908495 +3.518231312449122 4.96697351781485 2.624583321013605 1.306841212011383 1.9583917492283247 +4.276179699346606 4.6550003442313805 2.875585128126348 2.4210335733381894 0.5917112445705662 +1.1190014935604005 3.4107409757666094 1.1583002470415935 4.262609535977546 3.8586015621824474 +3.5940731292293457 2.053961204712898 1.398640955316334 1.4985398680264894 1.5433484806738977 +2.723642567591621 3.6789602315648477 1.052557190445309 2.4793788804063066 1.7171056968172982 +4.243821842402756 1.9169993921905788 2.2108844524954323 3.2698981979539945 2.556484466583275 +4.118418443729622 3.911730716525564 2.3424361655567734 1.5180614449759533 0.8498902849835879 +2.67460544591932 1.5198599760059661 2.99853348930696 4.736283445395342 2.0864352398698087 +3.83408448619528 4.281936831857497 3.7182316402938245 3.7323894059119476 0.4480760714905979 +4.5147589630839 3.0696574958527627 2.050596222360362 2.6471590109276733 1.563395475014813 +4.108716825343719 2.818737873426831 4.551826196003667 2.998559075472473 2.0190800984883834 +3.299896767083213 2.8918241986660727 1.1354806093346554 1.3121672850638477 0.4446812369268512 +2.6870617462032627 2.056930988536907 4.393976232921563 2.984052092372218 1.5443286094160742 +2.8423354058362404 4.16846250821853 2.4506142059412084 4.590470530517619 2.517458675232329 +4.878673872068094 3.5386511385275736 2.653118310936949 2.1559153743160056 1.429290623557679 +1.0350345242722194 1.114503410846126 3.0050762745473287 4.746597902272948 1.7433338417438549 +1.187555839495742 1.0131481756025909 4.018388630919345 3.1136987588623026 0.9213478158802213 +3.787108638600743 4.632591629785114 4.5267588543186825 3.6358642933724536 1.2282241681002886 +3.1821216255111953 1.99913762067193 3.090219259312506 1.2903877927500575 2.153797684030206 +3.0984337285433887 4.340641582384406 3.897291273291747 3.101101441557729 1.4754655537493753 +2.9436369485015126 4.859688368011298 2.313690604971186 3.618203235429587 2.3179745997812318 +3.3470745741713865 4.176989011025121 4.558943105747913 1.4151238583072403 3.251516174506393 +4.44728350255561 4.399537158943035 3.396390211893158 4.846934853447552 1.4513302416991576 +2.622331823229198 2.641818614118672 1.54226175768494 3.7416084095301736 2.1994329792021414 +2.791771721467719 1.4862970891226515 4.607943102303806 3.028909791704567 2.0488070215807253 +1.0604969885625195 3.632221039115615 2.7390282626098403 2.9534048535019215 2.5806437016596715 +3.4551375770707993 1.1133221651815752 4.039549315354005 1.2832705532006465 3.6167902950073767 +4.797363878313135 3.1277319253972427 4.664345069102241 2.0642788729487855 3.0899862592862184 +4.8331943133513295 1.6786052635305948 3.1597619689471954 4.203367256427656 3.3227314169679834 +3.1412495897961246 2.742192425372556 4.410537676606023 1.7315972407499736 2.7084993039213394 +4.434766916261633 4.855402641171197 3.869387014012556 1.7567510953359182 2.1541042077747483 +2.801101431250639 4.119611099979059 3.5899982157931705 2.9400229558237925 1.4700121037265605 +4.737249677119305 2.2440908789862353 3.4117405554376132 2.069369668894155 2.831572070378538 +2.9921529852405886 1.9327177038507397 4.407891903287126 2.0803560693456618 2.5573083845588855 +1.5540690961507528 1.8246387828418205 4.619342864512388 2.2557961727434264 2.378983169240192 +1.7643792538049867 4.667579990621305 3.333723139131377 2.727366249295614 2.965846118075264 +1.3999445818917615 1.1672694696006487 4.994856738915312 4.495698579348751 0.5507236840209051 +4.864244202820738 4.890252800963884 2.262173836481283 4.974945955565625 2.712896794435557 +2.766136145423226 4.099730130667616 4.3092643494317615 1.0582315508412217 3.513927599565969 +2.6567428992953763 4.055371362474881 2.7114593597904104 3.681857094757926 1.7023023650473932 +3.5305983413362716 1.6538593068848049 1.7633080527535032 4.881265425173343 3.6392042508852196 +1.6109596354204045 2.4796975684443066 4.671353524543175 1.263615059711141 3.5167295945196626 +4.057686402575209 2.5269171005711994 3.692623779056646 3.6680625251272883 1.5309663324686225 +2.4685654866599065 1.692495291793255 1.4103292355571235 1.5743561451594936 0.7932148349810829 +1.0925840908665578 3.258971364253873 2.0304174147250516 1.653169885135009 2.198988293937991 +4.131246316658224 3.3280177641833157 1.772192758363306 2.52315883696468 1.0996027276798022 +1.5673267321701636 1.298376742525868 2.0996408145827177 4.304093571804621 2.2207985175951737 +4.695301674799613 3.88078483887455 2.8721942741704574 3.8010428666291434 1.2353936148927833 +3.7275562570455345 4.088371249267232 2.9362223924167794 1.4943373239080575 1.4863445123524848 +2.1350882313325554 3.545446367502647 2.0711294098464523 4.253570200141981 2.598491461484326 +1.4726546260224729 4.276096026441243 2.112867940226179 3.7884208520854465 3.266000803126359 +3.066177410765233 4.241329673412438 3.387064141563553 2.8430989815658525 1.2949443755220413 +3.89584705594684 1.811493187838567 3.618403213696015 2.250012920712193 2.493395885420177 +4.467775560888437 1.437168529637964 2.167016141443256 4.726221251394878 3.966624480924215 +3.5097594874066056 3.5764003606627455 3.823380729027427 2.8559328933218646 0.9697403367911009 +4.924980155824501 4.348055312770665 4.899376112972637 3.604826512362417 1.4172864717384321 +3.7538677019928075 4.500601792797006 1.6955696562848939 2.4065234077325157 1.0310514240650757 +4.522726725599776 4.94477359411769 1.6790252807244395 1.6836128547712832 0.42207180083655466 +2.2073725820690284 3.2754141192763373 2.7610029338838573 2.936211041649911 1.0823172391804137 +2.5495303024364557 2.348646132629982 1.911589335714468 4.254147360428478 2.3511555773344393 +3.5897666073407155 1.7473876312226522 3.934371105552739 2.2259187339568416 2.512602196459577 +3.898708909284239 4.381739361227808 4.494106338530733 2.9573606865593054 1.6108710737852039 +3.0278252999220245 1.1665730371342709 3.906137852928795 4.547666599356057 1.968710013746328 +2.7439932956964603 2.552588523810762 3.3385125909467055 1.8704251041002888 1.4805122950302183 +2.455179901589928 1.333544798687524 4.569877842620828 4.856855773499162 1.157765795346406 +4.129135213686152 1.660653229620206 2.013123855681492 3.3313032232550577 2.798392422580292 +1.857044493372491 4.945471072702178 4.526597902800821 4.802561707982163 3.10073132626486 +4.256622299375009 1.0658834057726931 2.1940358579285317 4.006749970678757 3.6697066833345646 +4.976094997039011 3.3651016064797252 4.840990841089457 1.8093881583333884 3.433061975921713 +4.40746259517598 2.6294342503340955 4.568500037901307 1.9725693567224711 3.1464648252517917 +4.130795833241002 4.928703312843224 2.303156050607202 1.7805243301022964 0.9538345041374249 +2.228829456759525 1.932899937581681 1.9087211936286876 1.0775737664191056 0.8822586503276334 +3.2742604138366507 1.9666152372113368 1.0614102632609423 1.9706499656585432 1.5926872713648232 +1.3755311441952407 1.300940973380214 3.249690091208098 3.609400317734578 0.3673624105021449 +3.6188088748880727 4.126430322489367 2.0977244140318105 4.247610852930196 2.209002316482265 +1.6208119121097364 4.838781588905206 2.1057273028485133 2.875654308743223 3.3087938036663957 +3.4233764206301993 4.4547940428311845 2.9092265362208387 4.979850412484121 2.313288902912543 +4.278368792508269 2.2033086887424282 4.239001862335263 4.682467514927913 2.1219180519685787 +1.7178608898519134 3.596866552151988 4.153259095644794 4.876468805327173 2.0133788920952296 +4.4278785867767 1.702311106604471 1.5407413937679375 4.124724866791763 3.7557540757925922 +4.368850681375092 1.207638198981975 1.467540238272246 3.2456399613168543 3.62696884242605 +1.6476636991188118 2.363783372238932 2.6562765067643057 4.168614871353411 1.673318473942637 +2.4042737600498305 2.259522973284835 3.457654302596761 1.4597151089503377 2.003175931309481 +3.9196596328339988 1.3868572015730143 3.193051090071993 1.694318964168331 2.9430063100539328 +4.107206916997491 3.8092590125484422 1.7366421810434955 1.1259543954177231 0.6794943158541423 +4.1183316086274875 1.5888647462330483 3.7630288761477964 2.3249734546091756 2.90967455282686 +1.8230494752722133 4.390689206543469 4.77441969806981 4.812886555557723 2.567927858941469 +4.595304138837518 3.3953633910666463 4.6557053396166905 2.086883686222226 2.835260567409844 +1.0323454964204735 2.941081588629093 1.6812743924939784 1.1687855663109783 1.9763396131895605 +2.236135612370669 4.796392971227316 2.4715473715566016 4.694007788805264 3.3903168067035736 +4.90180263633545 1.089167300440324 2.187239782550249 4.0638015096413564 4.24943197617038 +4.198986774590948 2.4514457802284286 2.3896251983622747 3.9060401337829638 2.3137445371830654 +1.37923131808017 1.7467821786256552 2.6525221923698687 3.1067776521718553 0.5843300932244042 +3.7716669523867585 3.227144551322871 1.0251621927017864 4.489675066242658 3.5070434979040117 +2.0620279095377287 3.2791889203706353 2.727374585127736 2.825124920237935 1.2210798722057206 +2.249237128369403 2.3633034670737274 1.7438060268581599 3.1908196967972113 1.4515025630758946 +3.0504289649586567 4.539797148792648 4.478469407902112 2.394746098509196 2.56127320235939 +3.3790570511555096 4.037385247013613 1.1829765652971798 4.274720473648403 3.1610562171984036 +3.5599752204505712 1.6670366227135611 1.018915436837816 4.8563849134982515 4.278947127402146 +2.514944845124053 1.7489389213966593 1.6566073584640328 3.280567416514815 1.7955532142851567 +1.7497336698443084 1.8149397972225207 1.3888058103063 4.127541750693661 2.739512071558931 +1.6049471897296579 2.877525101750689 2.4665462963983473 1.3410205403687976 1.6989004590174486 +4.566798951161308 3.6857112918019452 3.304344183986162 4.617075287022948 1.5810055067442172 +4.8487536487728455 1.2918138475814125 1.5248798200036848 1.4855520976810626 3.5571572103356406 +4.121701767409128 1.8051720353824097 1.3310757053943467 4.84815222622586 4.21142935981931 +2.68735683464471 1.614773034181272 4.80409380528463 3.413034419224298 1.7565540767545815 +2.2576951148566726 1.6643825177162657 1.6590441815696209 3.3910370198179174 1.8307973753719675 +2.2494760789462145 3.038252923056161 4.469611798705264 2.3478410614687597 2.2636430750445586 +3.4958655219699257 2.286633572919265 3.073621075680423 2.379453781698115 1.394313500845337 +1.4155327975154783 2.9878512862654185 4.619664932859978 1.4468489197245438 3.541037543330136 +3.9806363889232377 4.943535884079383 1.8135546916004772 3.1721114138965163 1.6651882192316028 +4.343882051554979 3.0274389042861825 1.127688748001527 1.8839910509799518 1.5182278266062188 +2.627257568262945 3.41015920369484 1.366956250529666 4.839856752027226 3.5600523681631344 +1.1480151273560701 3.131813790053701 3.856679999863928 2.7236226729310977 2.2845734919754888 +1.8018688299408123 4.043461289536482 2.1984342579308644 2.779389044574926 2.315652223249599 +2.7810950771230414 3.1553373428038243 2.9563305569281124 3.9779970065169046 1.0880531272126621 +4.86380366508145 4.972786624261051 4.784276191662435 3.0498221013127695 1.7378746436156511 +2.3663633907955877 1.1130898332309767 2.717352172081628 3.44372632129323 1.4485558376305467 +3.389447706611356 4.492404804573686 1.8179387027149252 3.8802560411607776 2.3387319565097386 +4.190752503550834 3.159838761329433 2.9077745856829043 1.7383835780146506 1.5589286297699154 +4.503052076667371 1.0470264244492555 2.3114228828095973 4.025794760430845 3.85787302066414 +3.250061650507337 4.8151468217933635 2.8275736619951584 2.433602487630473 1.6139098114856667 +2.3820153861981233 2.8333427364833494 1.7404310166199308 4.7106203215562585 3.0042837556185713 +3.32762155015512 1.518280415825335 2.1428885618280415 2.663137473251002 1.8826508625378653 +3.816926750527587 2.8850279470630373 1.5878010023236828 2.309478197652045 1.1786659213516228 +4.360513618640407 4.8913134948768136 3.2755824541809555 1.1848887650877695 2.1570230898686877 +4.963137541391611 2.4709584623367937 4.958198081228273 1.7381473149538498 4.071815749694848 +3.1330031588512295 1.010668285735691 4.237155136892827 1.4014172436949366 3.5419930424212804 +2.438636071112218 4.426201442463163 1.8082288008961505 2.902071481159951 2.2686797734718125 +2.245722834886663 2.2363067718534357 2.357454436880519 4.031603989396782 1.6741760320926378 +2.4427705127480523 4.750026111529145 3.758441850046766 4.601700643109111 2.4565247383618307 +1.2533921808167268 1.8586656112964417 1.914793087124521 2.7327387779829575 1.0175416840791178 +3.930989607637076 2.266116364728831 3.3512807628890995 2.866253993610761 1.7340858922984177 +1.1634211468778641 3.484500264816961 1.8511461215808507 3.9819735850166937 3.150846545083617 +3.2233111343831964 4.055040846940502 1.3321240564963595 1.6429811522168403 0.8879225465717322 +4.684792964022251 2.0175774604016055 3.941809278507233 2.7791893186921865 2.9095916747397177 +2.3680209274814596 1.0778416562823887 3.076595570544371 4.5891311248998585 1.9880458634099032 +4.45798793415864 1.5236910286335354 4.365226018192024 3.2127547827270124 3.152505079829128 +3.648649196130039 4.156125706357985 3.4324688296889447 2.5194229739648217 1.0445980772948658 +2.1986563354659006 1.9952256096119307 4.417318163029681 3.61010177597091 0.832455617890641 +1.5799334557578897 3.7209057660079945 4.678051334717401 3.965391141126984 2.2564678115998023 +3.9025246372463824 2.5923586705443302 1.7488477976155612 3.822434885588695 2.452814357368536 +1.9643039997674343 4.100660762344945 3.0649453712293466 1.3155079670111616 2.7612590331745994 +4.773109591433871 3.0590247000143687 4.729352917301022 4.06344012597245 1.8388928355528542 +4.753700303284015 1.4779126507285647 3.178391153244957 3.4241758228017876 3.284995410715806 +2.2736086090808274 3.2994093828424593 1.6766117967364633 4.893342162935747 3.3763325482361095 +4.192750740558908 3.1959840109929467 4.616072836083674 2.389585205190445 2.439424334487579 +1.7229186459597772 2.2520812437148887 1.9043308630643216 4.654263379180552 2.800382455675703 +1.109286667740942 4.068370754211285 1.219253516138421 1.9063951448354324 3.037818666196257 +1.2711147081152938 3.859864771515701 2.08270380873057 3.7578425304869487 3.083458549726785 +3.9000056046070326 1.094565147394082 1.5111736031090781 1.7537759783063236 2.815910522622932 +4.989468898763027 4.142217718582032 1.854751335095325 3.781914090159723 2.1051819035003816 +1.3162724423567682 2.9223609487837185 3.846625739226387 1.1201561760145937 3.1643572127048265 +3.063854480404582 3.8284828940849405 1.7958992790644395 1.3384941519467688 0.8909972285708154 +3.4347486774179505 1.234712988927941 4.288599917985667 4.016791059916895 2.2167627491354054 +2.635538610564923 1.3111833793697558 3.6673108298486565 1.6305998717228065 2.4294255093218897 +4.339169805302735 4.802470532008959 2.734641963611983 2.3093162505323406 0.6289272816258028 +1.338619509157283 1.9319817588724777 1.1358090345296983 1.005572852019009 0.6074868085991947 +1.362001023633618 4.583925096869651 3.185438257247483 1.996960240451466 3.4341337670663417 +1.716377920476539 1.508171866038635 3.1096363328079955 3.229373093452366 0.24018045914313427 +3.017233442836236 1.9522202774990984 4.107629700514458 1.617613110656562 2.7082163244668944 +1.3575845830287827 2.197939431449742 3.8268280294590262 4.7674360805422875 1.261324612075442 +2.2099381252570818 3.833147002562759 1.3892573822586827 2.205226451049434 1.8167588118919922 +1.5289597591163546 2.325640580001665 2.170521787237368 3.018203688640473 1.1632991602906255 +2.4269714989639897 4.229796112276427 4.992284334322692 4.5002524372618895 1.8687621502187992 +1.2170506027612933 4.995111213779676 4.071501596924358 4.524293618482787 3.805096923248548 +1.7365523507499074 3.0387819823409505 4.993291475889022 2.4404582620237725 2.8657912399906804 +1.0798786128265352 2.7915108743260104 1.0149716840652325 3.0030747967954685 2.6234021776032477 +4.196410436260287 1.4166720404513948 1.0951213963924342 1.1041517480219811 2.7797530639221795 +1.037075088195325 1.6215283717078797 3.9729738785351607 3.0024226459070866 1.1329410115996685 +1.9802387286192302 3.073109044377012 2.3425273502518436 2.325941568292943 1.0929961643243318 +2.336105296078034 4.5537863331829636 4.578702256920662 3.615541081771439 2.4178065744905295 +4.2749621790226495 3.8917138085956426 2.6311052136154456 3.380125777453612 0.8413745411452627 +3.7134065441835826 4.085917996883769 3.5103760535542894 1.6944647003919915 1.8537256606457524 +2.5718081147862035 2.9303527129823412 4.326744861814071 1.6273859721422865 2.7230667718852803 +1.5400725527092258 4.792302540410038 4.244372346131442 1.214039232405809 4.4452130064871485 +1.7130310496443633 4.472464790643871 2.3286766467701363 4.263489043412438 3.370159281275481 +2.859401990272331 2.1086443315848644 3.978943753267838 1.5718432409389722 2.5214618653732948 +3.2844770666148078 1.7774671708475993 2.5477287671066726 2.5885386667027332 1.5075623615112355 +2.0127669025350916 4.9885013477906295 1.8704707089959522 3.5318518961181984 3.4081054763026346 +1.7570911595006562 2.4398279081067415 3.224382159899613 4.201969636959369 1.1923953804008416 +3.72600746391449 2.738548339994189 1.6193017756283328 2.9843050074037327 1.684728270128668 +1.9744900380738986 3.393027212922361 2.4307116643170756 4.019226087976588 2.129700868807958 +1.4899240167102517 3.5110926518172243 2.743520559582369 1.1805719174688263 2.5549816260444516 +4.266715180213016 2.7634155061226275 1.8965089797465131 3.6446273054751863 2.3056078571319727 +2.135482114920918 4.819750294328675 3.7013191347289967 3.914689327350889 2.6927351332948692 +4.471167683237088 2.9826981823639676 4.665150179579231 1.2201861545735384 3.7527747852239814 +4.789569157064083 3.454204662876695 1.8226246395287178 1.7617516906478028 1.3367512290032861 +4.680306086444858 4.102719331634328 3.199349704193629 2.851523428832011 0.6742325838792547 +4.48736564555087 4.399411806103665 3.3587082343663344 2.94053528623321 0.4273224688965621 +1.8671531063680424 1.46467186177567 3.545798736215674 1.826178805665982 1.7660928225301051 +4.476952473341142 4.2042751136208665 2.0491987130805596 3.672919004472875 1.6464569618374985 +3.5713059492922894 1.1693938831982251 4.215332907574124 1.5429713991029037 3.593145920388822 +3.0410075761139517 2.0669319988373878 2.790597812085591 4.428794746240747 1.905915114930889 +2.8691863789219405 2.6110966766596113 1.5778347763327423 1.2945787949716827 0.3832026166281679 +2.681111418652843 2.7881116871010274 2.593662714476998 2.7508903419465427 0.19018302839024673 +3.9398473857147756 3.9297890473598334 3.5448116593410517 1.3827440541839904 2.162091001655585 +1.7924728835779655 3.004368225975594 2.315887719225515 3.249672428537267 1.5299164043402824 +3.9698814425201734 4.892367937450032 3.4263961300134036 3.9494992334432224 1.0604801696146346 +4.383115156986119 3.8081613357813886 3.292747598344028 3.008976129455846 0.6411693559995502 +4.757787618964336 3.8762916448564897 1.9609496980762238 1.6729904629678063 0.9273379499689237 +1.6601989592273245 4.933488061793227 4.507031730584282 4.631342905504596 3.275648762792916 +2.0681525997796673 3.5307840973435765 4.049106551366712 3.6249963777528356 1.522878963354881 +1.7233720495973737 1.2694571183024053 3.176171616897379 1.207033487439682 2.0207780030811584 +3.942735862393753 4.494147946591846 4.806607876704511 2.2117822608430133 2.652767472533295 +1.5512484964599342 1.321727481827454 2.11071969457482 4.524105908716712 2.424275750563054 +3.6567077783009867 3.6494473091708532 3.1653973379298312 4.3181036150574466 1.1527291424013693 +1.379816731287653 2.681932962567149 3.0920656303288876 3.4794123756131174 1.358508071688867 +4.968569751483341 1.0407965987117778 1.4427110796808145 2.544010561487815 4.079247784611941 +2.399074325766064 4.922397772152378 2.657139086638524 3.161415968663689 2.5732190712856 +3.2807908300163464 3.1009706281737563 2.133635742951018 3.3487588034563904 1.2283563640746331 +4.920622686486526 3.745065844747821 3.001449608368511 1.8849841847407744 1.6212430201283647 +2.882625886026513 4.520210320865585 2.499470430994844 3.628216465950823 1.9889068335786995 +4.326982333700345 3.5563138184261054 3.4253290421788787 1.761043610209652 1.8340599661679537 +4.614926158290091 2.1419200900366326 2.5919054008563744 4.681977672176314 3.237925433508147 +3.4782422299334703 3.467671227445734 3.028865157253975 2.7389861699275175 0.29007166939742346 +4.188797487008805 2.990343349770691 1.0777233909049944 2.5320561054862885 1.8845094756367102 +1.7709182377121362 3.362374500788097 1.7157688539578646 4.487898246367332 3.1964721812561088 +1.0195292338848518 3.8109510860103497 2.4097601348336415 1.6695168323550416 2.8879051409954877 +2.5255854831078652 4.723947483060677 3.706853279727974 4.448433795365476 2.320072659209127 +4.555569522957528 4.425592288269332 2.938700740889559 3.9032281609096846 0.973245716922438 +3.5923623908062723 3.5334352414677284 1.3676683718071194 4.19913187853756 2.832076623058672 +2.178188533769472 1.7450507538817082 4.580788776062313 4.3790075241631525 0.4778326171203611 +1.8400617908726704 3.2551367177215282 4.228716555659638 3.4250705416958804 1.6273548980957215 +3.1929245082914326 3.4995469704265045 1.497217289605771 1.7234630934080863 0.3810570797451865 +1.2852241209864266 2.14147455864781 2.2569573544498684 4.5252853914527105 2.424557051390723 +4.935481534527771 1.813080312654848 1.8029081436610128 2.095697996153991 3.136098736978219 +3.301021663951654 4.636902494027243 1.0225218221838555 3.7162432629067355 3.0067778089465795 +1.450098372823279 2.874414322567329 3.343231070648488 1.6389068030662615 2.221125195427981 +4.153176042258091 2.421444420789001 3.3239878076756426 4.236021278658985 1.9572172748547578 +3.5709511056935437 2.3217670789965275 3.05067278496412 3.7062217924776126 1.410746339285308 +2.5707524898846974 2.44636758468451 2.8606722541688407 1.8345775119221859 1.0336063199825594 +3.4187759689703103 2.8817350022140173 3.269694863789594 2.112517625266512 1.2757241713358103 +2.9605191036319294 1.2577911628043768 3.5750812643981424 3.6432726865031335 1.7040928702754254 +3.6184511207018315 4.247363616426748 4.9953170710929555 3.398599927168812 1.7161108836494854 +3.0129950014821 1.5271927306337867 4.355927578608638 3.152284333973207 1.9121625057548093 +4.054761323338544 1.5381993237400353 1.1433485978718831 4.8949067750439275 4.517440985173982 +1.1870705714760352 1.4336934241633958 1.8255154450629636 3.4360048947776383 1.6292633608812073 +1.319256945573755 3.583410539738254 1.6442680940058065 1.5640266965457408 2.265575021894963 +1.799235460433668 2.0081624927326027 4.066696601764576 2.790908204413684 1.2927824796308147 +3.3225645285531473 1.1936891245113443 3.0811778337914606 1.229936460369284 2.8212063215235035 +2.389502315659248 4.509298609496398 3.697813623814163 1.1661157898926269 3.3019736900297545 +4.714664256420832 3.8377528947083124 1.1079395461516919 3.0754219458807714 2.154056760984771 +3.888179100411139 1.7693050118649776 2.302661649700605 1.2986894490424277 2.34469349442667 +1.2827125942995896 1.048162872353387 3.4307486935128217 3.9865009906198496 0.6032198503073147 +3.1010605207698054 4.338353447365922 4.2880835106809645 1.5210855230490687 3.0310347490195064 +3.2500645446427714 1.4970398142609045 4.0542738808847005 3.6409024373123016 1.8011028998065453 +4.870200864641896 4.712678417105259 4.6568166667397985 3.2978201339598017 1.3680953539815803 +2.7627379154834397 1.3575406541253812 4.4844416691401054 1.9556014118221605 2.893028238776815 +2.357734666303784 4.754733907076645 3.3060139152413486 2.3677781707640193 2.574080743193694 +4.494004041348299 1.7931614709982133 2.319433743107803 3.7780702735214047 3.0695555244484973 +3.30811525558582 2.0964319529528903 3.9093221717463686 3.2262891576351516 1.3909387205212522 +1.1282164081988237 3.4353989936816336 3.985478613195839 1.7513464729616115 3.211609861546498 +4.380113340612176 1.2018890671792493 1.050921246728238 2.2712981274208874 3.404471950709446 +1.3289296352866264 1.2005368495757378 4.894562198710644 1.915818937791928 2.9815090343467463 +1.0169399619423167 4.6519732782136165 1.4234459480165214 4.980439256375399 5.08583017865443 +2.0894537419928554 4.451739918447366 3.4333627891317917 1.341627039523566 3.155274065062678 +3.610648040290246 3.2316459607666643 1.542388537509026 2.315432949102184 0.8609530989424518 +1.9446312657652167 2.163271084817776 4.356946621839738 2.7716347531017522 1.6003178095731045 +3.256907134788232 2.578641881956311 2.6571347806634713 4.2142927473804175 1.698465391613619 +1.400080543779703 4.982689891669231 2.5148163970441355 2.104177524423855 3.6060662810453556 +2.480663032563139 3.212730266718574 1.4037493365644633 3.7418015504066817 2.449981752988476 +2.154066916915162 1.2322415070779211 3.929999873945271 1.5829405957429556 2.521596585819621 +4.362891892768168 4.2722224494175975 3.9191668854785866 1.6702250741154976 2.250768806175924 +1.5460859047410844 1.7995056618723848 1.1769175722652232 3.346025870235039 2.1838618046080662 +1.4264253998379748 4.558935642398888 3.6006056095726966 1.9661932783570268 3.5332596972454304 +2.805916095660727 3.390341850981069 2.283908317598691 2.036228837529317 0.6347429309013118 +2.8591736991668637 2.7816707126739315 2.5287029894193163 4.654648029305772 2.1273572867605353 +1.3108495646422647 3.446242714964769 4.88566106260506 1.2802338243724471 4.1903471785323365 +3.1754633868200055 4.903075638555153 2.577247083322102 1.748777004583273 1.9159871512384703 +3.277628007016815 4.783250162168883 2.279147316700434 1.9483606700401728 1.5415310180769959 +2.399086877558799 4.101045327981808 4.5853171264407315 3.2480079190208127 2.1644995918725374 +1.0901424730915128 2.730650901796 3.7213937618433155 3.3284023399553253 1.6869232828815925 +2.437566389785028 2.2408169131847693 2.922619641898751 1.719842329922943 1.2187631512095474 +3.4937911609316594 1.8214651760497156 2.9097194777695443 3.4372286151781606 1.7535507092071634 +2.5667279569025836 4.972287067441874 3.6886327872031703 3.1345953910751008 2.468536422783134 +4.641985414587381 4.384097591274946 4.955601699446422 2.560907923312085 2.4085398918991063 +4.236290615642218 3.921929664778997 4.433675952663259 2.035274317929618 2.4189157093459523 +3.527693696506115 1.9889085343249833 3.4799820733111506 1.718372588899853 2.33904419601611 +1.293698912016355 2.4487208196337886 3.0388911258240214 4.686929795316378 2.012487779644476 +1.2472984136696836 2.5358842742823358 4.210467672076754 2.8560434359917624 1.8694701205061455 +2.943851251178748 3.103919976534229 4.1046828313973815 4.157076185806457 0.16842523689507874 +3.1933832439838006 4.3416575081925775 2.7593446648191553 3.760725151118853 1.5235802125867959 +3.6992334121252872 2.9075521014268175 1.3822822687748926 3.0106154713213984 1.8105878372022184 +3.2143105048580054 1.8941499841884504 2.3769084485962138 1.147869916071134 1.803707158816506 +1.0315099433744397 3.5041475401476645 1.1666733088441297 4.966471114972155 4.533475493750002 +1.032435566893069 2.4923396923116945 1.9616117698323583 2.49589340378037 1.5545986362365303 +3.2445922695532343 4.845613704421155 3.292550447704501 2.0498122057775694 2.0267382595821735 +4.892156073034818 1.7508752728631594 2.534833502331108 2.7694477976539655 3.1500299892377117 +4.807422941938527 4.414648278212704 1.53655925994385 1.438247881877262 0.4048914218926908 +3.7201951943662728 1.1168833194282652 1.1052012583548225 1.8204230560209345 2.699773127144203 +4.933408850305263 2.7003203702550325 1.3034668686597128 3.0273430087851128 2.8210694968799856 +4.442011834835148 3.85567584168348 4.416671267490335 4.006330248093867 0.7156602888692962 +2.394606318344363 3.7879836390779555 3.766786951182612 1.879398449423165 2.3460042017243907 +3.254530260177952 4.520552321396658 3.6051948948276773 2.3074042020861905 1.8130285551140362 +2.526042561424163 1.2279226916531694 2.894133390096699 1.221529069470209 2.117243587703754 +2.436430711966234 3.9465943597681337 2.219091906230716 1.3166955214531804 1.759236618082373 +2.3413941179264293 3.38609914189479 2.7743553999176744 4.5317501394971895 2.0444668884103954 +4.310064075377676 4.512931329007074 4.966239500203702 3.9154321141394313 1.0702108601590437 +3.4613810198893673 1.2802827980197473 4.971630509015929 3.881614903388329 2.4383034007183197 +2.8501950307075683 4.81003465211386 1.5591638608166551 1.2708893450710819 1.9809274439166873 +2.5587608137286773 4.140061649716339 3.076735615050655 1.8573833630926586 1.9968305507103785 +1.7777298668455321 3.8122706211754323 3.313838690168281 2.535108403316496 2.1784804200840413 +1.1725732025317126 2.8186183981707784 2.516287508658301 4.151341291873873 2.3201003556083526 +1.3648788667608032 1.9462802485271546 4.2131432062963645 4.45833226132658 0.6309875113078174 +2.762682443595502 3.3829952189462174 3.815761049840824 1.7092265828874047 2.195967986953825 +3.1048074540678505 3.342843722184847 2.0618301265281156 4.735356764964228 2.6841024480012994 +2.5555671961588824 4.723924645243461 4.222531978664962 2.3328245977107986 2.876241994796896 +2.288339018647766 3.0075724152868997 3.842054121710117 3.4269960009453877 0.8304034696783329 +2.4443560685222656 2.2044569502432583 2.3270814769517543 4.023472703286185 1.713270200445767 +2.7037492174132716 2.545282046593495 4.937518100794691 1.2522846275457913 3.688638989733445 +3.7834364824045257 3.4586343825156214 2.656428538060982 3.429827856595852 0.8388342565742312 +2.0557133435636197 1.9214005849562752 3.17119046053745 1.074096351186268 2.101390877633227 +2.917599068795521 4.098817082301612 1.004629924323254 1.0197830982298095 1.1813152052313214 +2.294787317946397 4.550117719662893 4.690391269471149 3.6657244549768557 2.477187377174479 +2.684653930732047 4.512656123265163 2.4485618969501535 3.337143319063352 2.032527726657276 +1.5505363782229207 4.164703433349695 1.7170763340032518 3.92312544712223 3.4206025904222233 +2.4895880227011187 3.1203002960443635 1.7576333262507893 2.8310324307164603 1.2449833770832077 +2.985587314797554 2.567566480259608 4.153734649256455 1.3889819640902599 2.7961757505996445 +1.9228231152471706 2.4920633534225627 1.9134290494712034 1.6174250256655371 0.641601769688272 +4.818587457725474 2.6020167416109996 1.8321958972958967 4.230545349609407 3.265771858986594 +3.299600651193643 1.8498998720067017 2.6370021686493277 2.2061282959035764 1.5123771498505743 +4.063176348783765 2.1542581093213404 2.4084647962114394 2.410450719778943 1.9089192724797814 +1.644372173378724 3.8746781374612973 2.3126867787736196 2.1659063683516027 2.2351306857331528 +3.8871038612002846 2.1041059006939657 4.8205462424006384 4.861874231745794 1.783476865527839 +4.575359841281486 4.360432266854601 1.6172161154768419 4.317995761054615 2.7093180980121594 +2.0839328444681393 2.8274387504215728 3.6212222396659217 3.0585521051301336 0.9324155256569668 +1.1750287073904913 3.7514937792316045 1.9860651596449421 2.2091403598623303 2.5861041764339774 +2.775470384782874 4.5067115546143945 2.705691725969299 4.983719496929837 2.8612246527294998 +2.2352171888432504 4.162146382842108 3.942377138883573 4.195165913395653 1.943439806941395 +4.020291856005077 4.842875860431434 4.427362490432344 4.9307825544878865 0.9644045858620683 +1.8143820704958173 1.2840142482694388 2.7577373183133504 3.3778713106301086 0.8160001196567759 +2.107166209152359 1.2628789443163404 4.886929868812638 1.406123732407163 3.5817359401276776 +2.579908793435625 2.1264560736567186 3.605988708292968 1.9190407035893347 1.7468293962629713 +4.556600273911428 2.530177387092024 1.2265423573284457 4.056001531955087 3.480262768399013 +2.0509392071516563 3.484897374744039 4.6694258160174815 4.159966616693779 1.5217702527584285 +2.66290845179757 4.042704272013687 3.4170954906961533 1.5769405379469 2.300001468611156 +2.9947439859590244 1.6935489093580878 2.857944667479364 1.2690006768110385 2.053740887466455 +2.3439779084136823 2.419818543713848 2.588656817667575 4.735032892592283 2.1477155437748103 +3.6333756429258126 4.17818182333505 1.607205155498277 3.335447970221789 1.8120808483220472 +2.7767746870453016 2.602847269194802 1.7167840502636151 3.0458935974875394 1.3404413210588249 +1.710185723775405 4.412083551213206 4.421183025087299 3.9363222006842875 2.7450577205140654 +1.2503577046977554 3.783296021213058 4.307166880708211 2.788404294175562 2.953373716535501 +4.631747098490806 4.89051533998982 1.0868923668533061 4.954800476425188 3.87655441686305 +4.2056840125434665 2.628816363337951 2.0206542147110724 4.913345762050428 3.294567645558288 +1.7766459163357982 2.296346418398624 3.019593677363246 3.8015415593527178 0.9388988774048962 +1.2714516695124138 4.8401586369714895 1.1945853490350178 2.0606146903341873 3.67228487995989 +3.2043476268289344 4.192125827695294 3.6247449871172517 3.6934022431927946 0.9901613974088294 +4.9866651396188955 2.3043773314064357 3.1691505740455574 1.4890633320210669 3.165021489168543 +1.9542570234036787 3.976275800741554 2.451546800351919 1.783504336737284 2.129516534122069 +3.000801235321112 2.1130294557538685 1.3122103671575518 4.3082530093188875 3.124805633354668 +1.3418257886246021 3.188212161174657 2.5101359812562825 1.7405135133376013 2.000365311602806 +3.5933362899117176 4.960668389011613 2.7901849447427796 2.430435646389964 1.4138658447300685 +2.486639831921047 3.323028336281459 4.4864871092744 4.35121770200702 0.847256479921349 +3.9012815627390527 1.1123531554041985 1.6130680213255588 4.315798343603621 3.883667449228964 +1.8676653149016937 2.8398006400506213 2.9599043158678366 1.9979357970641711 1.367636838335283 +1.562424228910877 3.7147122909390315 4.115270027607739 2.230113425195854 2.861146504037504 +4.121262949957878 1.6723453115771183 3.2373467575307946 4.764127287468423 2.8858718589308543 +2.1648994777179955 2.636291837028031 4.970391273153366 2.8041402103641206 2.216947095320819 +4.968084176796987 2.0543248443994804 4.306940649510691 4.837634103247559 2.9616936014673647 +1.2338292035484888 1.2911325675670429 2.68918169235922 4.966122695036901 2.2776619602572032 +1.8223254843377088 4.408017491328369 2.8577079398237526 2.1889247777420717 2.670781547206615 +1.8386442158560325 4.839308371761961 2.166929062624415 2.985554476667039 3.1103268228684735 +2.024629487265373 4.299004711122174 2.5014932613600354 3.9800749293699305 2.712745179309807 +2.132990623056406 4.9711730193708625 4.905832220754997 4.334179345635267 2.895179843184517 +3.427684590755375 4.218401068222534 4.195707597076661 2.564574861469501 1.8126849006121746 +4.6318566161494275 2.2566738338367154 4.925535075153174 2.4190717240845703 3.4530930742806243 +4.864718634027043 4.202255782400847 1.4087085453142194 3.0254298516475475 1.747181963087089 +1.5130927245530268 4.651976982626092 2.1590746420612015 3.1780036853935214 3.3001228433082628 +1.9482334902597676 4.218249673960801 4.458975664837684 4.650936232600653 2.278118156251007 +3.7330304559534806 4.287587000742558 4.728018156411881 1.1448849390657179 3.625793239364025 +1.6852176279134103 2.3078505659795963 1.9775227893467906 4.5344838527170985 2.631676586352652 +4.381109144038524 2.0309421142452933 4.848961678940061 4.527622478303162 2.372033715989951 +4.01955779100522 3.5365160375946907 4.270921757354921 2.804791338968848 1.5436540218762886 +3.104408976924006 3.0118347179552885 3.66559136128157 1.1464009544932994 2.5208907749201788 +4.909902135879543 2.1956369756394447 4.131927109284349 2.2819834665699683 3.2847415181886928 +3.673686870780564 4.596884549149387 4.889375027232161 3.8427701158482406 1.3955915569673412 +1.7137018690183092 3.7842899269372974 4.169131780974631 2.3544360218022207 2.753262719748164 +1.2041362363088974 4.975595950389134 3.6773290666573137 3.118416172814773 3.812648947625997 +3.3070899075909987 4.8994753890845235 2.6470918634604033 4.064844677861231 2.132068142535044 +1.2372384910544958 4.960894280946643 3.8441949705359106 3.390847676846234 3.7511513179680005 +4.261706132985733 3.1438220219424786 2.697291525306339 3.0068714205719314 1.1599588774071354 +1.144010652270921 2.7571092606140395 2.8778716527129027 1.7271466173777292 1.981478041055626 +2.7080540745385973 2.7624231003597544 2.085425697274392 1.2568150236371642 0.830392461089503 +1.3230823621287082 4.3864066381935665 2.8547453614968887 3.393262522051743 3.110298434642623 +3.5243729519661846 3.446948065895062 2.4370439103232093 2.242390084370118 0.2094868132873826 +2.487664473570695 2.874270251599829 2.0735056856082097 4.145896168627887 2.1081428655847887 +1.0002636664200337 3.0894232363880443 2.1747827069655083 1.3575057880201689 2.2433299514404275 +2.343368378422081 1.110100254531 2.448504642779315 4.99173247299273 2.826474493388869 +2.869568207247873 1.3115984511408545 3.560123390309204 3.8132420403549623 1.5783975455965302 +1.3643834986721703 4.011452469602716 4.178363289443981 4.61053691365081 2.6821163618164228 +4.703909703981085 1.0023624057532778 3.501413021314778 1.3162740005073958 4.298404929886507 +4.231020898200459 1.0479030805556064 1.8870707853932074 1.8846021145332221 3.183118774935039 +2.820854689295667 4.217704473968382 3.9067558372923195 4.994454153223531 1.7703889254680183 +3.9699600084876905 2.828036431762148 2.9106017197601193 4.087943084933141 1.6401591828932733 +2.5059436808210305 2.27055446415397 2.6326075105992004 4.414930607198228 1.7977996840564519 +3.107866089495364 2.4946305856349222 1.750997919592284 1.242051209566502 0.7969219138918426 +3.2874213110931554 3.039308168040335 4.929043601107491 3.075293172265264 1.8702809372359783 +2.188555777018926 2.493776112774868 3.6823863798276215 4.993493493101946 1.346165411766883 +3.5659039672047963 2.368603772685955 1.2767461710002834 2.191333912353289 1.5066514170265288 +4.077714411516627 3.212668344650699 3.980597466953017 3.631685234208579 0.9327617294673497 +3.3234712779656097 1.5065701345559908 1.1776587638176745 2.5136780304071698 2.255233301816358 +2.7049618791156917 2.5378300324686447 1.8467685865934729 2.069872321843177 0.2787621402666119 +4.208442332160003 2.5819355694908617 2.111963518715188 2.228214606165354 1.6306558693794952 +2.7423768286303045 3.4125096419033203 4.385001273169369 3.8615651469586494 0.8503313269824244 +2.270333613500336 2.3014433081411267 1.4149100244228947 1.7469458496517634 0.33349003333841787 +1.495368014717596 2.4305200875607063 3.9290858594959146 1.1186713293631536 2.96191479123288 +3.0752381384555703 3.6014921479449504 3.107279606951889 2.2353919739216113 1.018396448901305 +1.96084541806776 3.704755596898965 4.746430536525179 4.963470347447275 1.7573642170467068 +4.508869497693433 1.3751602695586738 4.72450181814939 2.5239248844371382 3.829186906861999 +4.569182888000041 1.6591303322317241 3.514442444108731 3.5315543205497804 2.910102866506448 +3.421628676388284 3.0780711945548638 2.1806083594680317 1.8674725298508457 0.46485028892511654 +2.807172891972901 3.8339137240513166 2.6032557738423483 4.146036233395536 1.853204867961506 +4.12880001139113 2.7730473991611495 2.688691733703517 4.100976462804589 1.957706132600218 +4.350155926048606 1.7979262647454521 1.4250877604583092 2.9019141407611233 2.948710294619314 +1.8192846974597563 1.0399575938332157 4.013800119024189 2.9330603319037545 1.3324223136498636 +3.3796284709061064 2.4202900215007603 4.274097329143711 3.8708449823336406 1.040645336181008 +1.8605781836757824 4.759426758440218 3.4618216356742266 3.5279661721047124 2.899603103721853 +1.3284056947058587 4.478889944552769 3.362916654427496 4.365394725521 3.3061326790612626 +2.3772414696279096 3.5403756345536923 2.4749243788133626 2.337498414959327 1.1712245647862791 +4.9175025418582194 4.579840224163521 4.72226401610234 1.4784540622008424 3.2613369739757636 +4.6553205158863875 4.812891180126027 3.1050719225053127 4.474498731955608 1.3784622957013135 +4.311732925463033 4.586272583269248 3.959305718533683 4.076753253567635 0.2986066764054431 +4.635977204108927 1.9630856562794041 3.429771398663835 1.8154141449348864 3.122578833132284 +3.3659204721064007 4.70164058559164 3.5087568158222644 3.761628107600818 1.3594455162950725 +2.4566083835740367 3.5764550145315925 1.8899219199991726 3.636346972432024 2.074622119961145 +4.055904492719323 3.632247569724199 1.1849183675823864 2.055550813057247 0.9682386294272878 +2.056942926912339 3.364825236853706 4.892275159689007 2.361448040424217 2.8487965958038632 +3.3855390887549692 1.701536235646493 1.3620797183354871 2.7084191885074844 2.1560370076184925 +3.3704906920287376 1.8757226913659522 2.4127949785032636 3.90467796706396 2.1118821528111402 +3.96450204325718 1.8458071657698336 1.19367061767857 1.3237454852899586 2.122684021486769 +2.001718948258392 2.599574997667669 4.130860522749623 2.2423397639116747 1.9808943718374106 +3.4275999017617407 3.6170088106961673 4.392751481861583 2.362737101355451 2.038831557496947 +1.9019751855611746 4.126980643754736 3.979100514980292 3.4111411329309846 2.296350833093448 +1.1132344226039739 2.891619879566563 2.9581344651642647 3.1555237126029487 1.7893063875536932 +4.7080319009312035 3.8867936777958016 4.937125217521659 1.5344814192209504 3.5003452740055327 +3.8826979537983886 2.4559554188871178 4.763934918149778 3.513712137521885 1.8970111391676066 +3.6569949438537983 3.381346413245767 1.7311793497600783 1.1012246697971046 0.6876227244889592 +2.044134516461628 2.159539730133552 2.8940065012639886 4.100751922270213 1.212251159810603 +1.3904984342959152 1.568914452401502 2.5856936360834344 4.054781088404193 1.479881825715469 +3.3294157085651657 3.5914503384118692 1.373486165341867 2.2865917027854894 0.9499599306018678 +1.9830300443427267 2.0169095990811914 2.932367387443442 1.7336006993510975 1.1992453446685398 +4.981380417776733 1.7708543101080179 3.793850611442748 2.9994548722092635 3.3073467430154255 +4.638541707553699 4.495592163091521 1.956968376417957 2.077108635341494 0.18673043157492775 +1.9017771537113508 3.6113617192679768 1.4819735724119893 3.3107760646532762 2.503437225579539 +1.8530141629862156 1.3447778954973062 1.190987240793537 3.0416976724556855 1.9192272417444878 +1.4698573831248902 3.3924639567234145 2.793360998920127 4.91751263119537 2.8650368573094895 +3.765215636868398 2.4844004942773554 1.9685245666379134 2.665824842408545 1.4583261309049877 +3.4125511199741747 4.70504796066375 1.3583448699521514 4.634915708973175 3.5222811566249885 +1.1874562993767186 3.0079758686771974 4.188121198566991 4.553817262625641 1.8568858644176245 +4.842556932372501 4.572468481530113 2.0704288572658722 2.5035458833045183 0.5104293580144095 +1.0728956166073091 1.450598020431245 3.4026339114013027 3.4173380468561843 0.37798851497612335 +4.928388739871329 1.9329524417215334 3.379333117347518 3.394166068482136 2.995473023198959 +1.6843911200910102 2.9545498149107967 1.1356278014930608 1.326586188308252 1.2844330327118514 +1.191541310810512 3.4323758533548214 4.735933404104585 2.6110759021808247 3.088099553210914 +2.279054576727273 1.159428460112046 4.603884992596778 2.3135860957413588 2.549319846144074 +4.43758009626367 4.821769986858462 4.876116464332421 4.824110006024446 0.38769387890573914 +3.0069460857043095 1.7485803043353183 1.52979637715268 1.796360366342026 1.2862895475175602 +1.99127705463069 3.6582359251611094 3.307159038595431 1.2683994630144553 2.6334943484016007 +2.5060641756303825 4.549106320024656 4.430996486146855 4.145990437121303 2.0628256474438906 +1.3250255795071793 1.9115918082222505 2.2822187056799517 3.58035812830802 1.4245090035693548 +4.431513174243214 4.457444531404328 3.9664663139367544 3.874597671531115 0.09545827749164838 +3.2253459492081755 3.5985010366858994 2.8475000678687974 1.6670973893693426 1.2379802917329479 +1.4010415930330615 3.9904502996351003 2.7347832176810494 4.024222565295071 2.8926961957664545 +2.54965621767067 2.5305831726271597 4.77515430141117 4.126178540527483 0.6492559736050129 +4.07459687307995 2.0980228271863326 2.421885131502322 4.353722047724201 2.7638449359140833 +3.574938233454566 1.5987211611091618 2.1003228750870258 2.871136355016011 2.1212230759327677 +2.0619296885565666 3.6471724922955864 3.419694663215843 1.311338143838459 2.6378328149462895 +2.027069022021849 1.3132501072389724 1.3379888619435114 4.102803825446568 2.8554753064091116 +4.706886444067571 2.2433651687558323 2.8770816400566854 1.1672609222525288 2.998737060988492 +4.175363138524958 4.6459235936850405 3.2571598046746937 1.6556536324536975 1.669206147131747 +1.3551028645945116 3.794767367807433 4.376497272132534 3.155997688985621 2.7279263407758902 +1.9532755856940267 1.34672381664639 3.5687946568249567 4.3837811349330575 1.0159271666974279 +2.0244839069148757 1.6957760478525747 4.521278871424241 1.5735421228230542 2.966007551518239 +2.2493834674001594 2.0493569486482053 4.59120476255359 4.817880988671664 0.30231228835619306 +1.1186511107204677 1.4662720388164514 3.244649171241029 4.770005328103082 1.5644653127913337 +4.822821638102587 4.333328556713555 1.093267935773775 3.2137884152801437 2.1762836627456563 +2.0526932888435487 1.0242368496499483 3.714294768029231 1.764259458143358 2.204622497644545 +4.673689211911263 4.415525726427356 4.701846161659583 1.9547969365725977 2.7591534626200493 +2.974830281875395 4.134857415794762 2.2269006837881116 2.711437457812099 1.2571550567892391 +4.733990764113145 1.7502318122756138 2.7495009191253947 1.4844375299685786 3.2408645237429363 +4.932737494982268 2.1207667485228305 4.919583358287316 4.003178607441454 2.9575288918819562 +4.638780930862481 1.2991108213570488 2.660175056352962 3.693643917410923 3.495919668284794 +2.327549613625442 1.6976607507562074 4.803241310515009 4.3338185815206804 0.7855683789863109 +1.8163409686709673 1.8764294748128454 3.7237549371540637 2.940232849691859 0.7858228108877301 +2.2911873139794325 1.3938778937132748 1.1390746584707885 1.0917123889413975 0.8985585013082692 +1.4769689729213344 4.926110504937084 1.4460077754538085 2.436253637048547 3.58847658126418 +2.3491809129240715 2.869660724126374 2.415772263996336 1.5933962651627134 0.9732427843692358 +3.857471547331088 2.4215924780362315 2.7808790391981617 1.0220837841698862 2.2704866110041344 +4.267569021003808 3.7051626569240668 1.9785260061127405 2.6427900958897594 0.8703721613911409 +3.5534366770365584 1.7759746749120016 3.117962624062481 1.4911360337119515 2.409550979761202 +3.927298106538123 4.847075603004573 1.7068209217919081 4.869204331706046 3.2934267069886736 +4.963843597456333 2.8001902858716528 3.705096258468311 4.1987045621874985 2.219244197971888 +1.4163924117683075 1.2997727642116579 2.835031007034258 4.458397575256147 1.6275500474691251 +3.3645567857610956 4.6317510196440494 1.3709334698139424 2.0413714287234095 1.4336206901174728 +4.38759190175519 4.691753941921682 2.0131929734846516 2.649135568752928 0.704937962628481 +4.608531507685989 4.099885578408205 3.0813695642749175 2.274782192255282 0.953574260386889 +3.6723714677969292 2.2233998063802267 3.2319532048422404 2.0169800712333235 1.8909464801998364 +1.9224078596438634 1.2964516225882403 3.2861367469474123 2.0535512568449774 1.3824211373962332 +1.0934977639299763 3.702266992847766 2.7364358570788276 4.9293759315397745 3.408029204676084 +3.4243586750789836 1.5849872706662942 3.2715477272789792 4.995260591705065 2.5208080455201447 +1.774356564887964 1.0126340402654428 2.7944693765635806 4.760532720633606 2.108465384447446 +4.258323819544419 2.360963544999975 1.300584246768715 4.280873557146014 3.533001611232093 +1.7305018051107646 4.220645234678493 4.251418838771178 4.5650430148879035 2.5098156154714277 +2.5050084108666635 2.136321143468273 3.1159636591332127 2.641316559145266 0.6010159487639745 +4.243730134591438 4.636712710766952 2.3901225543595124 1.8877235296077712 0.6378401721819068 +2.7198263334490846 2.330258561268662 1.2378822698955494 1.1673884330509146 0.3958944684568044 +1.145173031066033 3.0279417644624407 2.957165996623211 2.428362909249074 1.955620313013631 +3.0931051087679164 1.0903370084909376 2.6824436925006023 4.315020962140889 2.5838708568411834 +4.5955867420466445 1.5305495465051684 2.8329943753699665 4.251121837807546 3.3772086861448773 +3.19952801685854 4.21514666459538 1.1463298358274479 3.2728223234226688 2.356576232042944 +2.0361100317244905 2.9109033406356817 1.4280721826339864 4.8492386056262795 3.531238171962587 +3.8891955275452377 2.2384127902377844 3.8655455315920997 3.866078711191681 1.6507828234122057 +2.892486199308936 2.9835951369350986 4.220751451199639 4.104709755096838 0.1475347882696921 +1.6908278568306194 1.1594612576088639 1.2198178237379271 3.642984015897157 2.480742803595721 +1.6510957037610958 3.8802880700262605 2.7279919958651315 1.809787079085797 2.4108917178116127 +4.483516645044187 1.1376157292712645 3.156737361900918 3.560794991566554 3.370210009222139 +1.9396975756767136 4.554219763059052 2.1432904298480926 3.791136126697988 3.0904889109882347 +4.325546310629513 2.088326712695845 3.0942518390935376 2.990646167552622 2.2396173031466624 +3.181095267178707 4.7140540110900675 2.8151508642741634 2.784168653393291 1.5332717984510649 +1.9222534259146835 1.2922199633041322 3.0277841765263145 2.1649734453282927 1.0683559902389772 +2.8300239140592027 4.6619093899446264 3.1592351705070905 2.059650520035665 2.13656050705622 +1.22475999940538 3.4264874190373606 4.587523953193398 4.85376650621812 2.2177666079640623 +2.1422513136547274 2.943950117368179 1.54224864132597 4.431254674942704 2.998178919635964 +2.2198228819222146 3.871723372156239 1.0353197453201295 1.8966131504534394 1.8629550610150374 +4.200803402183672 3.2265164306161878 4.752880748433917 3.457133908109849 1.621170866126068 +2.989427926915022 4.672201940153377 2.707047447855778 4.909044900376083 2.7713753193200357 +1.2362487631850083 4.883439983227096 2.9305700218770743 4.489133165949078 3.9662479586646753 +3.1359003462129578 2.827885774703797 4.525428439649687 3.704800959369368 0.8765286291121344 +2.3547482415162677 1.4841427262295648 4.49859860544791 4.174613008825919 0.9289352130617793 +3.385890652816857 3.670547996559059 3.5695835021184568 2.5374449980396543 1.070672543286879 +4.356131874507321 4.284501587931478 1.4152667212021623 1.4967238358557662 0.10847192946853919 +4.03032960951313 3.2091081575449425 3.9797760745653403 2.157764849376202 1.9985318556100031 +4.909697329077979 4.701193287542196 4.85252496911103 1.1324466610936925 3.7259168741556614 +2.6918120499542533 4.449366623512805 1.5923869257288423 2.1030106930273598 1.8302280488416502 +2.7373248505707726 2.273427338398857 4.591218547251273 1.8241512179022208 2.805683964196643 +3.2255006192542255 4.099456597155282 2.8684655596480244 2.6376402154311536 0.9039244386793779 +1.3449887576771906 2.8307292257200727 3.8771553486103674 2.2395279542807707 2.211164449117032 +2.6498696050690085 1.9245989215436619 4.851194670389564 4.7271632577874065 0.735799806804412 +4.431348399509612 1.6742847202638695 3.6963182610028427 2.609003811419646 2.9637228014253423 +1.0669689283044637 2.7333209035460455 2.0185101844022175 2.7023608983758693 1.8012164512889046 +1.6772692304531014 1.033351798944938 3.677255319723821 1.4501734386447596 2.318301827551952 +2.415573607884872 3.3418543275063115 1.8733120689337999 3.7202062407592056 2.066159251719253 +1.1438312753272686 3.5454079613239755 1.617247459004175 3.2151606514301747 2.884596531449758 +3.098382589599871 3.1018767908964353 1.3961584165385514 2.8384791044601405 1.442324920484045 +1.6799076482174722 3.9521128404084154 2.3712630184126837 4.438476279439779 3.0718540170369035 +4.8545457834268655 2.408830888381213 1.041879721985406 3.762325815236751 3.6581892097231212 +4.816333411403379 4.250285619435511 3.95161922245 2.477612077068748 1.578957620529027 +3.9725787834632444 3.8089888409877095 4.815044605714853 3.4708789799595006 1.3540837857169055 +3.8756354720238964 3.95272751449058 3.856374259719964 1.1639887761244676 2.6934889595629383 +3.0070710308020168 2.653315036438329 3.019360187571645 4.600350736301596 1.620084694922359 +4.916980049033867 2.6975266261441635 2.8642171310211553 1.6971693768099732 2.5075832901393698 +1.7787125261862777 1.4161679245005505 4.3527747558332575 2.9761961283644514 1.4235193380545854 +2.582589608216763 1.1476737232816117 1.2891552066611358 4.636863051527627 3.64227009039965 +3.0206023084621307 1.05666862865804 1.3286666744369078 4.832279405839719 4.016508143937555 +1.6722489914094973 2.2300805710327105 4.442185679662141 1.9009378298216268 2.6017526218962415 +2.8001657270072497 1.0769620745855204 2.8953380071777817 4.150396661463426 2.1318074616195712 +2.1653903621196005 2.141468069729288 3.2709987589339895 1.110419491268678 2.1607116994033198 +2.4656591478643506 4.213635824566394 1.0107689920571716 4.606513566691041 3.9980997371630473 +4.839817849506423 3.2224682597304413 1.9442355443333876 2.083360413490721 1.623322341608893 +2.7490315814256445 3.751704083799256 3.1868550703119847 4.167611066578396 1.4025813599319938 +4.55709269467925 1.8853436028363086 1.879859467995313 3.932256040802785 3.3690614274357538 +1.5244581245757063 4.6196613559054995 2.7980706413903573 3.9589402451767786 3.3057376302770365 +4.035997355877426 2.6323143956224953 1.878805586175265 2.6996593010092846 1.6260770812193548 +2.586575031833667 2.8919962354161286 2.462182129741152 3.73431843985774 1.3082862466275518 +2.4874937670672765 4.1754376782765465 1.1868924512404053 1.8184283181020793 1.8022186877627182 +4.383868238158539 1.419142490047426 4.205377540140322 3.780213241340597 2.9950565007169496 +3.617081552064649 2.537744170537339 3.723201518462261 3.6385007370330325 1.0826557188399974 +3.8014545413483067 4.848313495402755 3.449089439562116 2.4244095440026032 1.464883120951234 +1.0354343666307093 2.3965817761980683 4.431551900591858 1.248411986389843 3.4619506039165175 +3.4779266354373095 1.927419510850262 2.671875975370986 2.5902669966619016 1.552653331816582 +3.4251809251276772 3.622171048817462 1.0315652960711965 2.1451856919123307 1.1309091452741378 +4.054658212469086 3.4530876642857726 2.5484708885954537 3.8034361553959926 1.3916985827819612 +4.859637053234761 1.7562479432772706 1.0599599818391399 2.548219536661412 3.441793205630247 +3.6843402876623834 3.84854384314452 4.23427239950488 1.8594138784925978 2.38052847125541 +2.547520848776293 3.1491499959769715 1.338982954198936 3.971062690532492 2.6999632162640914 +2.8330246544680313 1.5100418416392802 1.4532499220140611 2.7817777421393983 1.874905248775856 +4.031811135743843 4.9701298428246465 2.348991231640617 3.201600247941447 1.267826538109713 +1.994878482751714 1.3378125614693177 1.0092796826191446 2.522682167682554 1.6498856647376472 +3.9778065522946395 3.3676586829166095 4.027204753591228 1.8797269080544385 2.2324743043488495 +1.0928585634746661 2.6436439494186335 1.7268070622742862 1.9762326701054027 1.570715902733305 +1.4054642125803172 1.3926973104051945 4.5071144486790455 1.194857888653659 3.3122811645786285 +1.1949798602716046 3.2050627814437784 2.079760638300381 1.9486840243077155 2.014352111405511 +3.104487919956569 1.4168804179620396 1.7107088714727277 2.972216989094067 2.1069935480709834 +3.375807503350552 3.2705105419948794 2.5541956906240193 3.075065061254815 0.5314060136393445 +1.55209329997665 2.001166339170788 1.0877626427562594 3.502836498677244 2.4564707049106267 +3.934285722519066 3.1667576651355116 3.2800118193495384 4.57711298465339 1.50717309951564 +3.685627301956799 1.7747724019269295 1.2571758843516796 4.020607066035232 3.3597497443811375 +4.683739643489439 1.365175899157002 3.689330282106868 3.9991774983338173 3.3329972431133683 +2.73344518949733 4.816874223564073 4.640925851145068 1.1344420070452608 4.078738222652349 +1.5079397856158478 4.181443700776565 3.780600847669933 1.8091867713120187 3.3217610758213496 +4.843930806891526 3.0118967522118467 4.281421199790268 4.312985257340399 1.8323059425857613 +4.863314131307442 2.6095339889916116 1.5228126613702018 1.8106312222760312 2.272083725107653 +1.1638730186413313 3.311576789401381 3.9493388728267496 2.9236854593114248 2.3800412625819267 +2.5193335573740865 3.164358844202387 3.5883564042605878 1.0333247548706281 2.6351934179548016 +2.2957829925183555 1.4141788496305696 1.4091899031772295 3.6253306915320076 2.38505887947586 +3.397808042126818 3.585776992693115 2.980207559163378 3.496048804330146 0.5490214172436234 +4.9658111382707135 4.507338158490297 2.001279537519195 2.8472668998432358 0.9622328670341299 +1.91277145001003 4.145116046603302 2.4755692750615848 4.9609670551577505 3.3407431094363016 +3.8897185060742974 2.0312903545037098 2.0545516244031905 3.259890686565383 2.2150840727439904 +3.6768979498074534 4.921749341370443 4.908680945759562 2.467454641829373 2.740299409567678 +2.233563434164292 3.8454780074795654 4.0039990551828515 3.810952689929299 1.623433241868531 +4.040130344551336 1.113804579619615 4.692814259140162 3.2117100782300945 3.279794517528881 +4.52744991564891 1.4312435373275192 1.2949612894333362 1.031192957047106 3.1074213860253774 +4.924590381894804 4.187644967817281 4.287702874058767 4.906068405577586 0.962010641261542 +1.7316923457028572 2.7583860995705485 4.471813584491115 4.130492379313106 1.0819428031717298 +4.802643302022949 1.7547584947384811 2.4860262664106623 2.6687736330036267 3.053358544041649 +2.124801779089745 4.9665027721036825 3.507589116624368 4.725878518823894 3.0918430751265626 +2.191605708767574 4.533408124926977 1.4302458553265378 2.801444827763204 2.7137105922226463 +3.0265000929716788 2.858866215392569 2.7958831085933684 3.7271563232466027 0.9462404119687432 +3.2639487500824087 1.2775499452125159 2.2628054637257997 4.123801664375708 2.7219638261413266 +1.7594116310543484 1.2292824872021826 2.4452365479100147 2.9113072966600493 0.7058745299285477 +1.0418895147070057 3.717070143193792 3.0274831407718854 1.7414052003582214 2.9682634424608625 +4.237599518278218 4.199577936885862 4.611870089275895 2.693340130247353 1.918906679424936 +4.284567423016931 4.341751678078471 3.719739146594737 4.065358034667074 0.35031764845537283 +3.3312269778020873 3.83871169063928 1.2182694684489643 3.8778065365863346 2.7075225115518737 +2.514574986946926 3.083175514149216 1.6808502681618531 4.606766598857896 2.9806531052386016 +4.68314316539734 1.918521721292867 1.2490604564847998 1.470116002261225 2.773445020821724 +1.5199362055296244 2.2928147791090265 4.972792565254471 2.165366218207611 2.911869499752866 +2.267951528843807 3.0029044800906326 3.503895835070096 1.419439076658286 2.210229811181428 +2.910059274901356 4.876415854618531 1.0339808047071162 4.948340499178542 4.380498831902534 +3.5324415615154905 3.585952132304479 3.875914516580488 3.88510834308871 0.05429463723082287 +3.0575362915616133 1.657050556049489 4.704948601946168 2.4199595238679934 2.680025257774539 +4.443800924478333 1.683302548365743 3.7399549348179915 2.594592675875244 2.9886796396955435 +3.080320765216548 2.544785795383168 2.840893698939528 2.346798593810093 0.7286478414346033 +2.714065178265196 3.523883103718018 3.930532987607905 1.87810709000057 2.2064127305547316 +4.513936816884433 1.4537194828436193 4.631336612337673 2.6539326922426434 3.643495079559057 +1.5821040317070887 4.5502995469109635 4.231265422863251 1.493057038221834 4.038312738532883 +2.320163612602226 4.323304621954572 1.020005097337981 2.460847280875456 2.467508885740875 +4.4841412772113305 4.461538233256064 3.0114319151016415 4.6361454081945155 1.624870712467331 +2.2386223100493874 4.188513862292714 2.8915114197347758 3.9518424288754876 2.219544753875274 +1.8576774281389423 4.2593129051741405 4.223647542226034 1.0466976921770823 3.982569938404113 +4.5088182202682 1.0279898659619162 1.6993289605371351 4.93074447307756 4.7495486361158035 +2.54745793850996 3.8960266831912556 1.7865658298967473 2.0355120426311664 1.3713540301344858 +4.009584357832746 2.1945554721704137 1.711757322154115 2.3621120888119544 1.928027795002764 +2.0424668053510366 1.356413796763504 1.7572503854414983 2.3088020844811097 0.8802715531615726 +1.3094964120048984 2.350676439537159 1.1813942100282104 4.558032142476344 3.5335166019957636 +3.3487523010157227 1.30109868511955 1.0635507080582638 1.0276793637321826 2.047967793700973 +4.9156331547653656 2.2151777018610628 3.6837446167159804 4.576080336650847 2.8440679826952553 +4.23574697810985 1.486719111332388 4.323288648617799 2.6094000758949276 3.2395321038738114 +4.587015970384916 1.386126929713852 1.2272383201983916 4.063322906278734 4.2765718081298045 +1.3050164248968827 2.5451262883849255 2.9521616970690086 4.981468565348406 2.378225985722607 +4.448955461410755 3.4699779252735614 2.4398631963747186 2.692494319773573 1.0110487133521395 +4.737452521850045 2.5866424380624435 2.411213083601883 1.5748109563581258 2.307715869638269 +1.1432450864152348 3.3607797180983963 4.721990235164103 1.4959299944896483 3.9147061855488845 +4.274314942593132 2.083976562492062 2.253138649733748 3.1663662595484703 2.37309226257044 +1.2476733108220013 3.780118024508126 1.907439707473379 3.649537316653222 3.073789242577787 +1.3216372452409626 3.0146708259566086 1.6032466418382025 1.7259596330830056 1.6974749434530954 +1.3632909321240598 4.473600114137734 4.376875463670941 4.45915705611808 3.1113973497729615 +4.9924691951999325 4.964815909673545 3.055994595522182 3.5237645184745827 0.4685866035422896 +2.7631780656516916 3.1165708652491864 1.1078073469332939 2.1039861948488467 1.0570046205394343 +2.6590333864898392 1.7321830188923362 3.3885203064113094 4.943982435601193 1.8106667388726048 +2.3844761956940275 2.018985114288117 2.29550052612273 3.236416219256258 1.0094087735760027 +1.736332205463524 3.6089808682499447 3.0914210698885713 3.6938604652429605 1.9671670593294135 +4.870990423208896 4.1743867744946375 4.230812946561918 2.1011172672152445 2.24072763405772 +1.2239844967465667 4.066272535320542 1.805188295932831 2.0566432487377933 2.853389368367178 +4.746003717458409 3.921510986588409 3.477166979436698 4.1780440110009796 1.0821353319395082 +2.052455132566425 3.0877816330279466 3.600549479766833 3.6396019586763164 1.0360627677254293 +2.803042435479602 2.6233089850510636 3.6088245290027476 1.645624428486995 1.9714103448719165 +4.754252122259043 1.5837776438604103 4.5317001574847815 1.1549000232674929 4.631920504998654 +3.1315699973050677 1.7580803736145807 2.085183322128245 3.4457301082265173 1.9332773478080616 +1.1118132052464582 3.3602644872677945 1.0060266185889453 1.5670396125620747 2.3173840309776206 +1.762931711495411 3.65697757928928 1.4379179452401862 2.101735288675627 2.007003541290527 +3.9383882443934377 1.1776070504415639 3.104784646414493 3.217180789270755 2.7630681666957297 +3.85788053323738 2.3397433848834903 2.254347807399175 2.998955369252266 1.6909112402432258 +3.7111906424469314 4.145056631323341 2.682587312210087 3.047704405118797 0.5670539549617938 +2.727616426596525 1.9598504702708586 4.280553220896588 1.5976399161244226 2.7906071677353963 +4.156388996983004 2.166739812517324 4.925647293043172 3.985477586044358 2.200596045439322 +3.347019315847503 3.232949738077728 3.5869120903185894 2.303712256747666 1.2882599432758202 +4.055063198334775 3.938308473840961 4.923142436034809 1.9334435218223094 2.991977817988466 +1.7430271783871185 3.9806767027434637 4.422730527643721 1.5408660707928727 3.648591254376463 +3.905215342087439 3.9697515439753475 3.980621557850852 1.1266445596461008 2.85470657470009 +3.0286503452030877 2.448923037409185 3.9584241087323258 2.621599378230076 1.4571149959712788 +4.950449978100389 3.927342248267953 2.5457871773967993 2.1128812200447724 1.1109261878062626 +4.562018945542081 2.7516489314165438 1.4702148077262964 4.282330665908528 3.3444633632146266 +1.6082694752219875 3.333916896695331 4.182284784363814 4.377269940575806 1.7366284099889115 +1.0920454673195312 2.90539080985733 3.580028639402124 3.468702612621043 1.8167594269859695 +4.085195838242088 1.8279783450360765 3.9889574057360706 2.5215382499017127 2.6922759499250537 +3.5481008483254373 2.3360074243318545 4.507957152290308 4.453166862331892 1.213331135495259 +1.2503120457390704 3.69628635794953 2.027653276136529 1.181541938021148 2.588183674409688 +1.2546093843931918 2.0190620812843787 4.434908078090801 2.7484195966829668 1.8516563730091797 +1.1705679598233778 1.0405726630398622 4.8930516968717885 4.923207164449105 0.13344710341794935 +3.005954370129272 3.2756646011001025 2.5444908352777613 4.132849842720489 1.611095262613228 +2.3843452363039677 1.8190682766047188 2.133136705625259 3.64500253310681 1.614086838269026 +1.5196468351671406 1.4477626300100384 3.55146983520296 3.3073220826044207 0.2545102435069873 +2.225884007993247 1.6545549459067317 4.910781674269578 2.1563178783634984 2.8130921954571604 +1.0147539369451697 3.132886670101262 3.6908203336337913 4.589015351633939 2.3007043629348782 +1.2539827946609003 3.6693033866385036 1.3043778628843516 3.6257403492932627 3.349999605274246 +2.169677261779067 2.860009530649889 2.094617076298887 4.025038433710053 2.0501427410289033 +3.986215284906035 1.5428945124771078 2.669547426721522 1.1491200360621 2.877762298601138 +4.542375989660983 3.611313421925565 4.236453976334019 2.545031470705262 1.9307479373511014 +4.480971811129519 1.868726771475664 1.445187411903933 2.691420827725755 2.8942912558875444 +1.6635735382027805 4.794728968035114 4.940846223979936 2.2744549956551277 4.112636199356318 +4.895612213719664 3.3561641448501525 2.2559126546255874 2.08499029651893 1.5489076180478967 +3.904346092827816 3.724022522072162 3.2786317713532083 3.324457811994045 0.18605541156033312 +4.209721499280958 3.7368285376983645 4.266143202851255 4.949204457901807 0.8307830229762709 +2.5431168289847617 1.613917874261411 3.643119221386513 4.5116739054362585 1.2719268597854676 +4.246263159877311 2.689223232950964 4.650789941219497 2.460176065927079 2.6875941815434987 +3.1969392756191737 4.846516933186255 3.2030062015270695 4.550548460919268 2.13001797860777 +3.7772205482854813 3.8665644281254714 4.429811353078534 2.2396732663047305 2.191959663862928 +2.6681108177312214 3.343582098623002 3.292471036316213 2.2165725963859013 1.2703617218548664 +1.1185110758540322 4.794363913288308 4.33782376639715 3.5295518761399025 3.763668095230189 +3.467750087649417 1.868717680350132 3.663646814874146 1.6191787832042976 2.5955257987762965 +4.287862079436624 2.5423777330814192 4.717660217839527 2.890655457250004 2.5267888709957225 +4.541103089220597 3.570549716840658 3.723502831048029 1.5332843895456398 2.3956274063666965 +2.8945111749651375 4.380563215170444 4.4439744866092585 1.500124047727013 3.2976667619250954 +2.8620131837902503 4.030631429847784 4.757005435687185 3.0531609998587625 2.066096432048142 +3.6191944254889132 4.897083193002726 2.215214397508505 1.5331399505809884 1.4485251993974593 +2.9547350665937704 4.117805616569419 1.9481552567998786 1.2845909787015817 1.3390484141317565 +3.309537245627168 1.2617772571809898 1.6094820658304023 1.76044260756872 2.053316842438843 +1.9854131933798755 1.8533856777157602 2.3397143566873 1.8908720030964692 0.46785758866282656 +2.5546488105876 3.4222189724285346 3.717188803255475 4.626981498410162 1.2571399022676568 +1.4020988248478097 4.696283633135357 3.459411888933275 4.258595837413725 3.3897416619355027 +1.653348066827585 2.98679747553489 1.4867098009849213 4.180230875356537 3.0055187744657137 +4.133091880414913 3.591806690638304 3.717927779737001 4.884609399889916 1.2861320536687242 +1.6399923924124855 1.079102072378106 3.4523709814406978 1.487381622145703 2.0434728119676127 +3.9060493718955307 2.6052538985699627 4.771015865970481 4.381070596126403 1.3579860738969527 +3.968449325830174 2.970344388189626 4.33394842369229 3.2128216289507203 1.5010458875164168 +2.5298228759353405 4.5463508736086276 1.158856089148649 1.4230486842613326 2.0337607756844487 +3.138996520750547 2.4490663162698767 3.158800882213399 4.196394477259427 1.2460353749132809 +2.601208134809424 1.0593612871587905 4.799923094839864 2.338797090901548 2.9042095153193714 +2.5472085296344114 4.291318164339863 4.166566078239871 3.6394614258431583 1.822020233820317 +4.078258179610161 1.1810893571597858 2.46995858935408 1.1916266990193254 3.1666574818924325 +3.78781379624975 3.0736630812744887 1.3872253178089462 4.011039620897991 2.7192669491600725 +3.3620542135154023 4.427646149969822 3.8128467944095727 3.796449425386902 1.0657180906541583 +2.6870197559567663 3.007891328920566 4.2384800225683295 1.4460697985790363 2.810785197302739 +4.695129817943178 3.310880135287183 3.4015075756427398 3.6926703542754855 1.414539835987083 +4.524812786373683 1.9111995841733167 1.0944964922791365 1.1876045718734503 2.6152711303422818 +1.6565649264977447 3.353431246072668 4.342354425517671 4.187400046375954 1.703926690360516 +2.8093152740754466 1.5066406312293945 2.9413867202863724 2.534775613671393 1.3646588647485303 +2.187989185956399 1.5982221211590364 1.2053583658048117 1.1712404930845146 0.5907530955980299 +1.005786090365456 1.979883431892142 1.8164432250385083 4.833869045015918 3.170760825075852 +2.9099991784460464 3.3357455477049256 4.362549150209695 3.535817274938332 0.9299169664689544 +2.5088878234496277 4.398450474430199 1.282270252260226 3.644266220328052 3.0248094097230966 +2.560365683702036 2.3995686441199875 2.6663627982229445 1.1324938217557876 1.542274205485767 +2.5996812154577227 3.392421024727711 2.0544970184193554 4.129658622686173 2.2214256883867733 +2.6567785042789565 2.1646212338865833 1.7348915516796266 3.4780489565206305 1.8113024366052444 +2.2779098636187514 4.272499112441228 4.4726109741385045 3.132204071613239 2.4031389755600046 +2.5190377172092835 1.383116710959242 2.871608639835775 4.252600146091604 1.7881426321160316 +2.8204081531197853 4.786057275148436 4.389050260827235 3.202780298193237 2.2958686580855776 +1.2606933207754563 4.471798011781949 1.6302891478676256 1.12534731823511 3.250562964767263 +2.895851416311324 2.2493572011533645 4.910707924192746 4.903472829880155 0.6465346988541436 +1.821507623887856 3.923618313901592 1.106478143392709 1.6464371532466413 2.170351373716354 +4.162179959569196 3.1763772192245994 3.731063675764126 3.043253134465133 1.2020359327378403 +1.2213463258371555 3.1924137455744446 4.710325123403408 3.4646083838632817 2.3317197448064584 +4.818050536602684 4.224815032473808 2.320135706911937 4.291605207286986 2.0587909933424733 +4.686654981719315 2.2927294811706864 3.395676274249591 3.5717223085203953 2.400389865909177 +4.254728132575815 4.384208048201037 3.9297093240574026 1.6428761420872928 2.2904958089264977 +2.190214832589906 4.709426239762081 3.858392380478771 3.343581640171729 2.571275211322564 +4.1283608898721464 3.120334364585446 3.9294699051010347 1.3708849816220083 2.749995324784345 +2.5431046545638414 4.032693064323153 2.778766704130813 1.4644558394173317 1.9865262846469396 +3.7206142717030932 4.728203984802346 3.0796387371285934 4.500142242445431 1.7415703369548008 +4.582907392307314 3.365346146754941 1.886239488021682 2.8985255567878814 1.5834072349491062 +3.363951454300979 4.338658802521989 4.1924098474837 3.482181351659529 1.2060177987727614 +2.5040929888798606 2.5184916011893392 3.882485192108568 4.229718770184606 0.3475319809455333 +2.7020207557341394 2.1430737405770808 3.7084092704717695 1.093422714548673 2.6740561799280735 +1.3375054445364656 4.824988182179901 4.0470780030758515 4.728269440012362 3.553386781524997 +3.634694012482789 4.717009088879566 2.394810003897616 3.89518515446532 1.8500085180984496 +3.3495606080394453 1.5638334799238698 3.61460597338912 2.181366556043747 2.2897590710641165 +3.3160291717124113 1.5928146304915187 4.858115032814201 3.9868550410677046 1.9309485566149183 +1.7147162141014358 4.973837394297994 2.7919047383527134 2.121245975428562 3.3274095094371474 +4.7355829474691715 4.810119771479427 1.8675238045963027 4.987902462757609 3.1212687658133658 +2.9862299558636014 2.854378562828022 2.3753305994403906 1.7656431815605131 0.6237816423769259 +2.228460167775432 1.3557496547974983 2.547417454448382 4.558995707917962 2.1927313354111426 +4.597994855940277 2.5286196571837816 3.051590706136052 1.2653096934084278 2.7336996121848705 +1.9084012040885585 2.4843856664039654 3.6565629063307235 4.050476866334863 0.6978010523887961 +1.2810196928887407 2.602775980518422 2.3748624942546073 3.869036402325946 1.994892315752851 +3.2811710424506733 3.723058533453594 4.515890589853633 1.8614700019931099 2.690950243308609 +2.5410384613753854 4.442977148178066 2.295971679166745 1.0058902193949217 2.298190797389047 +1.9502870750051327 3.064693644853412 3.3971569040422134 4.386215077545655 1.4900127762858186 +1.4970165068808399 4.5431303157698775 3.870661517846763 1.2438693958933862 4.022293647741398 +3.2895392922810784 2.858079541886586 3.9743993604464047 2.563488972980043 1.4754069396851015 +4.140754603316893 1.8536101065214239 1.2917804791832492 4.6063808061439495 4.027108798717733 +2.779993398311168 4.232832147732832 3.864323632226999 2.1543101657731922 2.243855273246131 +2.3522725254614016 3.085964488830768 2.206188373120445 3.029127142305211 1.1025117300691787 +1.1737158732841797 4.256994698515913 3.547942227301947 3.9050810751232268 3.1038937595777165 +2.486407594937509 4.924659169964244 2.7231112185762947 2.67678517879414 2.438691625663698 +3.52118775240308 3.5799235749899347 2.8179510253878908 2.9000423535661692 0.10093999711228586 +4.913188391951258 4.585524704239653 4.441996653149142 2.91992788035476 1.5569382908004301 +2.393100855482605 2.470216296894365 4.856266701578005 4.325067717844371 0.536767316091224 +4.970697992309823 4.6249928186201315 1.5494281828188727 1.959406996784531 0.536278561026364 +4.950139034312046 3.7388779156370453 3.590617323338711 2.9924619574440716 1.3509046374050107 +2.8879972825188283 2.2907481575648467 1.0811710389291478 1.7948853459193939 0.9306420521666017 +3.727145439703148 3.171971695761352 3.1725029113373595 1.648011855151044 1.6224336246375128 +1.5708709724427812 4.08305237465346 3.493188048368558 2.863581043257375 2.5898765180020233 +4.6152260952659185 2.1079744818254196 4.307890661247418 4.527237150334927 2.5168280702850963 +1.0419411430477679 4.206095874932765 2.6629333017520618 3.6225407484642376 3.306466636622193 +4.818736785838256 4.814379471114832 1.8005765042227813 4.0247135693220555 2.224141333310456 +4.807567739981981 2.2877843736703283 1.0877586778579666 3.0083012747486437 3.168247477646352 +3.6061977745774083 3.6572430343623394 4.403938392552404 4.495729636092728 0.10502976214954557 +4.727689043847219 4.883143305592318 4.921257827066008 1.611249493593891 3.313656770872562 +2.7454711562202783 3.950218560200378 3.553026101961216 2.392347778677323 1.6728988246567391 +3.4391610491357785 2.3239406137818763 1.2391671486956888 3.1835474566052464 2.2415020413145763 +4.191581704084044 4.79312111909503 2.457939314917656 3.2797599017374823 1.0184491861318576 +4.517436727393656 1.4383070834266518 1.3444695198850174 2.1739226767677637 3.188891955494749 +1.204590339628223 1.5991876839083252 2.0839099472298477 3.2844547341763817 1.263730528861833 +1.246999585749406 1.0448268380215682 1.4578086824165668 1.0922516772038202 0.4177388466302075 +2.923985390044464 4.137637685992387 2.5973079528878684 4.075322710710747 1.9124537954685044 +1.5351361788852858 1.0495494821700544 3.1601240136568305 1.4362524854899417 1.7909571423267656 +2.017926787442587 4.846392782557809 1.0132424588234543 2.365754740973145 3.135204835236273 +1.0389532021972459 4.208553893011775 3.388385415355038 4.282097300051079 3.2931883444557024 +3.4865943666153285 2.9208000878889164 4.606865819254508 4.48694683038428 0.5783629740320508 +2.6459411101485504 3.5938166333009467 4.3348646143311935 3.467887464298353 1.2845689495198362 +1.8012160321834654 3.5826812980701903 4.081552395846641 3.650177917630915 1.8329491084088367 +2.253781019900958 4.329671799889413 4.983771751304405 2.989915048737829 2.8783306065861747 +4.639798995016222 4.814058508342008 1.0758813870350918 1.366887980065039 0.33919200340137295 +3.4913985407217267 1.5070314140533974 4.836204029224665 4.503713484650069 2.0120295364714287 +4.174405167657557 4.638699876813346 1.876130792045938 2.0814026656534947 0.50764763275762 +3.5105080739726535 3.151702330623539 3.931478370565461 3.76932901666291 0.39374353890740266 +2.301370902701021 4.1604178524885125 1.2700429922105174 3.8619812396273967 3.1897020926626767 +3.6531198140639187 3.929855199134242 2.713251380578963 1.4266642224827089 1.3160125336516426 +4.626048171607318 2.475284846245452 2.8967089090593046 4.733004951975121 2.828032184921154 +1.404910131893419 2.9828788080936466 3.1308909399269584 1.6666196860242914 2.152690281502378 +2.446987151457814 2.569430951285387 1.1661287131255795 1.2748761540870936 0.1637635186233271 +2.645032632633661 1.4649464994329509 1.6914688387795693 2.2951581236964267 1.3255353765539535 +4.305000375369398 3.282648078777718 3.836592211233201 3.7000304641560953 1.031432658543947 +2.0730858190360935 1.0374898592273456 2.218131614333831 3.527634057300338 1.6695076040879395 +4.1014754066649655 2.1243516533923117 2.030129242661694 1.3129362660923953 2.1031842766137436 +4.306544926341468 3.4185755672256293 3.648996876384899 2.55640681425759 1.4079213850879422 +4.757615870975592 2.904463920700182 4.38657695465671 2.9606701166902636 2.3382434563939283 +1.8025738353312954 1.7000322183529084 4.922568303643374 2.7700262426822295 2.1549830875019396 +3.6198760837059947 2.892508823764647 3.247359968363398 2.8240693556849994 0.8415688169224416 +2.752358109800871 2.4547776408078024 2.525726064992824 1.794464271826012 0.7894922074800209 +1.0968706024040076 1.738184392878773 3.5641639025649456 2.869122170509497 0.9457094623359488 +4.206600115532801 3.691249636089651 2.5416655259135292 2.177181784711531 0.6312166935869882 +2.3514669411311107 2.109842833558832 4.269071745644045 3.2799992493681778 1.0181584416236378 +3.1999840773250807 3.0276909156552647 1.3137057292288667 3.0300059547260503 1.724926490491657 +3.552090207349781 4.702834137712495 2.332212356062116 2.677885391358201 1.2015412771092946 +2.7486010930699734 4.965793390012104 3.6768954189829968 4.195496717900425 2.277035131230602 +1.2265136468275966 4.436101130721111 4.655468959042622 2.9514157666126306 3.6339027366451 +1.8639495364261665 1.3044805567103572 2.2452226661783716 2.6762803861518183 0.7062692809495221 +1.716097624107027 3.097606691821484 4.379893705899361 2.762798557697179 2.1268671849733134 +1.1100195513006414 1.9746256115356737 4.711066606698136 4.570453203760293 0.8759656206044302 +2.3629858011291835 1.4836420726928021 2.226401693834063 2.947426799815499 1.1371554846176213 +4.096114637551418 4.637155411037419 4.811897554451052 3.2170845121953158 1.6840884057327061 +2.4429556178087313 2.6450599053212853 4.940191540295572 2.5363157557051283 2.412356717148457 +3.799860518251903 1.000888124022377 1.9706728075583682 3.0802336819880756 3.010875586556871 +1.5696717840831247 2.066705175282717 1.5723112352535682 3.8626030805008655 2.343603833495251 +1.5560021842536091 1.2534370827935342 4.440614313239731 3.802709867524122 0.7060224659919003 +2.9603289720033774 1.105935162451205 1.6343641868038965 2.2750986942692255 1.9619676628227736 +1.1470836863775662 4.914958062929948 3.5775685219692495 3.287941986848727 3.7789893949739946 +2.8926885759528043 4.785183224636308 3.3248336154281 4.652591685590618 2.3118125979796442 +2.7816141378963524 4.593550220951472 1.358544440854362 2.8252161974199614 2.3311453001870883 +3.7447046166256737 4.945788985485896 4.362916036073175 1.5275050731764686 3.079311447326364 +1.1899815165640728 1.6283872603250087 2.0828645003389585 1.123340142782431 1.0549344002860301 +3.5627646279428777 4.324668933206472 3.6748848806738796 1.3659352147209018 2.4314083841024257 +1.7961992296654588 1.388366674664872 2.7156327034565084 2.3961389030306948 0.5180769068669596 +4.807457713635722 3.181110104289075 3.905478644977142 3.545975742934978 1.6656076617872209 +3.8239789314883597 2.6500483714928866 4.61118039443712 4.479675903052938 1.1812732075796426 +1.050260644486046 4.05487187522723 3.5486190922350476 4.490727954013194 3.1488502275174928 +2.3082052893790905 1.0796756633896223 3.023515523488176 4.3410262429732756 1.801421532538114 +4.481458153350153 1.295582052003239 4.843447405297551 4.51198838887873 3.203072214718042 +2.0673748796488547 2.171285697325286 2.292263199751122 4.649852396179608 2.359878021666904 +1.972837901988603 3.7021303297669106 1.698069437553404 3.6545942559008586 2.611214595850164 +4.70167941422086 4.46318550183218 3.4642523641893326 2.609410640105473 0.887487306659157 +4.9365216360284405 4.834780527830642 1.4060971804979756 4.892357095691111 3.487744177742938 +4.755140734391496 3.730482127175891 4.440567738990989 3.7157800206046496 1.2550866496241202 +4.110123807461454 4.80353557253339 3.1494895140189283 1.7589993329765101 1.553796260619633 +4.262215703140483 2.6557672799624457 2.824932237950978 1.5050862949881632 2.079103135846465 +4.829751406142059 1.3875398573225581 4.949680496801901 2.114789173788046 4.45930814814648 +4.842361881380008 1.5770572572687915 2.6077782328175174 2.24773820040641 3.285094079806647 +2.914965339899261 1.007503923877123 3.169839483727765 2.40271619933216 2.0559394901297754 +4.639850947853839 1.4272481449601528 3.2251624295795684 4.936250461661933 3.639867995229479 +2.5868930854060523 1.9435052837972506 1.2401238941228763 4.083716222557317 2.915469978166507 +4.451447916809616 3.36679259326247 1.4348612570842554 3.8166306241978774 2.6171172096449915 +1.6289723436992087 3.3679316344271193 4.42623179245278 2.8749239766688275 2.3303509079366775 +4.498706750204826 2.974241307920821 4.023080701339871 3.1197764737193947 1.7719913691536964 +1.6487675878516437 3.25443373594044 1.5817277153481233 4.290802619856155 3.149166654426773 +1.8976161750031002 3.1913828168616503 2.970293727846746 2.2848419876148447 1.4641298479892046 +2.2777262602369457 2.2085007863299007 3.5792554374223573 2.738792635850029 0.8433088918447745 +4.766704637409536 2.685743034394342 1.5735825449337497 1.7970694656978883 2.0929279961279605 +2.6894097107930475 4.122784107388556 1.594634008010023 2.614608563745983 1.7592357019922904 +3.376857909358349 1.8288688099109658 3.3298600987411255 2.625528266481174 1.7006920891044859 +4.134489233688537 3.654936314010039 2.0023258786951654 2.89514798965886 1.0134605688421428 +3.918555644847071 2.220962586840773 3.4857779883187128 2.149565556751178 2.160390208473182 +3.171415611177582 1.6226039065106748 1.4145382852661132 4.7800491177411075 3.7047916081771373 +1.422714308625654 3.5341007509397877 1.345262082814632 2.1142030995925922 2.2470476176688954 +4.709617038931354 3.6271679847926697 4.883606101654006 3.1878187555040354 2.011812784075122 +4.360952476365556 1.8121947462960253 1.1652439813048887 1.4484234749822646 2.564440795227794 +4.004488409855678 4.874505149061915 4.070912908383597 2.9454254907826223 1.4225508966912799 +2.7236903527737257 3.9847602379134126 2.6345061243039325 1.304022858298266 1.833162015842388 +3.9213224117612957 4.127681708357923 2.726737023073798 1.4835493925674035 1.2601982558057911 +2.2991184243267 3.747986545628637 2.2405639355826885 4.813436648438243 2.9527771384717987 +1.586395751846485 2.928145360487218 3.6889508172340695 1.5331884128994102 2.539213176602215 +4.4533614537204995 4.231243008886722 4.761804465827817 4.336548548154795 0.4797699438807104 +1.6597333011288118 4.643691231111232 2.8399718325957632 3.3453027285088774 3.026444158128367 +2.968440688606223 4.501937521868295 4.928697229167543 2.506046937019381 2.867201941906147 +2.694400372461031 2.862562343886165 4.838924298792841 4.540839600223088 0.3422468935651686 +3.369551172896627 3.7627806207974452 4.303989325724323 1.4910371652390482 2.840304430140395 +2.3904129148467788 2.6550167349593887 1.7016247307751722 2.8009469507364764 1.1307185878541295 +2.7492721046269906 3.0388754266613387 2.3205682481284176 4.2860093097710115 1.986662691783408 +1.2361321451625886 4.258953435829174 4.797894366093583 2.0115026285251703 4.111134572170646 +2.032681054879446 4.382383696336788 2.1831812369457007 4.455291048111895 3.268575453813066 +1.056747001848254 1.144079930488775 3.391078436689476 2.86548068918331 0.5328039344904333 +4.426695260493327 2.83727445129228 4.842829778019989 1.7119227377284165 3.5112444238002922 +2.5402255232213724 3.50638348897073 4.579372204443073 3.9377957410954676 1.1597765186028552 +1.4229447782305762 1.4169128707978498 2.5390163404492605 2.9516561161988295 0.4126838601616637 +3.5556930561257776 4.148137782581351 4.065062654029737 1.4184381279854823 2.7121231785750433 +2.871932649701263 4.652420881611745 3.0965263907069067 4.520345104033138 2.279780268444676 +3.02038107342029 2.897744164053885 2.5420260676418907 1.5892888198333224 0.9605977695689226 +4.558603988237739 3.120497417596342 1.6542202946309876 2.7176711676708742 1.7885967314884756 +2.9334271894583748 4.407699472147869 3.9706336277203897 1.2918188036868488 3.0576997277313454 +3.739861981536759 4.858780041703014 4.392932176922264 2.0649213026103204 2.582946429231716 +3.5395817469158137 4.874643308300299 1.6182460936767114 4.08939552775643 2.808730834067034 +4.6398933339568265 1.1843523424597744 4.5564190865675425 2.425598293363432 4.059699594387179 +3.9010776924907713 2.6632887951414497 4.32402793289317 2.5411481709060912 2.1704335051100627 +2.379578802356129 4.690776744513411 3.3616579642175366 1.549027412046335 2.937220701019338 +4.092235700306077 2.2583401191076797 3.457021918419072 2.4442265837883226 2.0949767045456182 +2.6223461595886697 3.8714140886659436 4.524742414131014 1.9384485329277772 2.872122339211666 +3.613624457917693 3.256710881791269 3.2008096011068945 4.889204905232649 1.7257073922937378 +1.1344812124423345 3.275073345791891 1.269153516740697 3.746483621530757 3.2740340757935207 +2.0878882516821595 4.0201277822115 4.471264437121283 1.0643700879701652 3.916692317455899 +1.251907886326809 1.4948037275715396 4.7085124948995585 3.6566760307847237 1.0795176408635403 +3.449182078795037 3.9207993067299816 3.6964015782700215 3.0043860165433567 0.8374415486211039 +2.4168067986876123 4.866735347056876 3.6309103908660147 4.540391405421572 2.6132940148310393 +1.2221430459709666 2.8065905208202664 4.590575402322072 2.424722819973488 2.683540796973721 +3.6951550241604956 4.888652123327699 1.618961615448395 4.3244801430708115 2.957070480903135 +2.984629379886643 3.634178643688936 4.848153998396521 3.1421057056178263 1.825517741189934 +3.5587513263018327 2.261285327191877 4.817812391029589 1.8951339421389424 3.197728464778746 +2.940838547074223 3.2837539130972617 2.380117165047325 4.792488318413658 2.436621745336917 +4.273936683738107 2.439339987847608 2.9338854780776233 1.153894997009116 2.5561907497811727 +2.3021536797423576 2.593592178103407 4.838752964838266 4.215374353413491 0.6881404591424801 +3.233078780942472 3.4145035732178046 1.7385014279089006 2.8079658333901394 1.084743780735104 +2.914415695167457 4.0837801777751555 2.9075264486564314 1.6681198018116552 1.7039783242246311 +1.0126845543840113 1.9720228227972045 4.47537541310483 4.2883095057607115 0.977406551508891 +3.1953394199740295 2.839520417975784 4.384179534150995 3.9975735662507903 0.5254249105239316 +1.4220765542780387 2.1323356772482134 4.520503071269806 4.152146907429977 0.8000964224399186 +2.7747973607842313 1.5865729463743818 4.725177235078799 3.365490567969752 1.8057201033697712 +1.3739183230015448 2.2750927313231157 3.6402427237762445 1.435770002104364 2.381557325534945 +3.8744384367951765 4.268854205188585 2.29553978544245 2.5753459855198844 0.4835858847807041 +1.1818383075586048 4.521682873079189 4.555914245180082 1.056582652901478 4.837342588090747 +4.076291055673755 1.4331520411016507 2.5374261950073405 2.5612465880006425 2.6432463489950284 +2.7361547868115457 3.4287130336366554 3.969673519859354 2.3442633893318496 1.7668036160442135 +3.0344853036799027 3.8310087273724625 1.549205576047357 2.952718410795164 1.6137837035342568 +2.424070596545542 2.416043055598197 3.5333593382037174 2.2329794965489955 1.3004046193380046 +1.6632081039990205 2.587740357055107 4.321888672238795 1.7967387105968804 2.689078320860351 +4.133611429066075 3.5157928820744226 3.8211222659504345 3.121505050594301 0.9333616689309386 +2.6638316339623413 3.6946865226526002 4.856340651899718 1.4974417400681657 3.5135258219400907 +1.0592988536941172 2.9666479701208455 4.824153585385762 1.608977959936353 3.7383599284201914 +2.5601115714199736 4.13489388592699 2.7529015105531496 2.058283646300843 1.7211720760640152 +3.547776888284835 1.681999780077656 4.961989986353849 2.419108553074883 3.1539451804406546 +3.336011258911867 4.062344669706654 1.371389989629853 3.2524344210677905 2.016404814683912 +3.862472303076586 1.0033403077717562 4.156652728539506 1.8373043849389954 3.681577447988594 +1.0678637666352397 4.968708852210504 1.104039573396196 4.490625746826503 5.165806644825765 +3.5927102073996977 4.7171850570265335 2.729914508529141 1.5788112666866372 1.6091868632398216 +4.2837941317859975 2.0697248711507097 1.697552952855765 1.860201869783575 2.2200354413990513 +3.851902444219821 2.4396789467497384 3.477267186813177 2.3862185781011878 1.784590225620156 +3.477911817737018 1.6437971154962496 4.933079273371317 1.1942075847091043 4.164509364289576 +4.524747743848991 3.033870519472782 3.169331139833091 2.2513907377169313 1.7508082362157444 +3.797234889365605 3.228650522895135 1.9814367171735974 3.6166632681162696 1.7312579399680723 +2.28415535088827 2.9287922876883807 4.803164871431086 3.5858262175475586 1.3774869068437596 +3.36104777955538 3.975503236525983 4.397292577483405 2.054970989379466 2.4215750929299538 +1.8205169062617474 3.793210192416418 3.8634624750178372 1.827791897423706 2.834691076946858 +2.271895690458747 2.715558440394943 2.898260767935745 3.8277040360106547 1.0299035994940091 +2.3094522837502556 1.8580953102855209 3.148524754142493 1.0308189617227232 2.1652715628168884 +2.7708455828202103 2.7881875080015996 4.102704650080539 2.549136610085048 1.553664827839141 +1.907166657878852 1.7565294849145818 3.8686662289167275 4.722276422797538 0.866799815975928 +2.111557122583077 3.7072860223247086 2.257519480956684 1.4862299728696837 1.772353866121471 +4.64508545292858 1.4521524492933682 2.459883504815164 3.8295118300799715 3.474291714158536 +2.3830259126650235 4.3887618744915375 4.776771722708101 1.629700694001413 3.73189399746149 +3.7677463004379494 2.953023618626351 1.6481223479918778 4.543757246956229 3.0080682366526483 +1.0331349558054477 1.739902135340162 2.0277280076019704 3.755422809715135 1.8666679338640557 +1.5815206862345281 4.40336061150377 2.6156749943086135 2.3143818899798596 2.83787915503102 +1.408068825977009 3.2206336328028846 3.5008031452082884 3.9392503176295657 1.8648396987269273 +2.9397117327538713 4.846715918152017 2.848180552720255 1.0134432151200161 2.6463042268625236 +3.8430295425688494 2.2797911215786293 3.4818716526662468 1.9774745644635372 2.169544873897009 +4.1010172088734915 3.138735359080648 3.3993729550107727 1.8410433142324396 1.8314960081226128 +4.373927284570742 2.477474098256433 4.283741626413114 1.8563035080051438 3.0804205080770584 +1.9512237857076262 2.5705393099695444 1.7616574136746252 4.538337896693829 2.8449088251421295 +1.298666767207299 3.5423617274344883 3.48325558391475 4.706730637353294 2.555593528113447 +4.911113015783359 2.2629265861611048 1.3170444895487528 2.443413654040326 2.8777767218380417 +4.478303211440025 1.4879516768947965 4.815272630585691 1.0864487699344831 4.779783434834552 +1.61207221532326 3.0354056953994206 3.3887908398267443 4.63545660115787 1.8921029876782682 +4.390252341110292 2.8394143277386865 2.932673298190788 4.056613330600264 1.9152910327600354 +4.807599454424114 4.66526225740712 4.4548237605120775 4.82669001912496 0.39817633273387576 +3.905368645024071 3.8652530515101935 1.6507028867561013 2.3946587174616187 0.7450366023785053 +4.281652022764192 1.1504793828973496 2.69709440480621 1.7051858891771734 3.284528064125513 +2.091035269873083 3.441757808080648 4.324969859016599 3.512058278960654 1.5764760106677613 +3.512829091759587 1.4088599337677365 2.241739061608561 3.635106334099257 2.523521066650544 +3.3416886037555678 3.1068833945559686 3.8342398594491285 2.603024894756804 1.2534048729558973 +2.737776572703696 4.670635050329731 1.9974605627300646 1.0135913986205751 2.1688569400991717 +4.21671176763706 2.616317157512847 3.2484773753352343 4.953277006464703 2.338290976421413 +3.218222188400341 4.697702032776039 4.337950313211248 3.2546194184540678 1.8337029305340966 +1.0461815905777376 3.5964340458815096 3.0615782321990945 3.268972117795462 2.558671493092788 +3.5170871133892225 2.814265885851905 4.648121477951872 2.0015259282360525 2.7383253425501946 +3.358382408463231 4.576995781285098 4.201205296697674 1.0735835434668108 3.356640639643033 +2.5290750556398374 1.4222629018533683 4.905050433216616 2.768018676895507 2.4066445253286424 +2.671525175597707 2.0153229457435633 3.255140920292463 1.6476716213406242 1.7362485172170103 +2.5301146676340065 3.268648242400536 2.7498513415993155 3.2448076373326926 0.8890520658226576 +2.557869138676035 3.2545996912099473 2.634068722537536 1.7280590666748297 1.142929113878315 +4.443986035663252 4.002183127674481 1.1670072832146916 2.6831414465258585 1.5791936583796764 +3.1473215613817263 3.030162395268593 3.293860847085086 4.755656053541763 1.4664826953714947 +3.109781504145962 3.375272442805688 2.4010131033101065 3.05732280931609 0.7079744830910804 +3.3885483674880006 1.3057570591708245 2.382206074561975 1.4595515557059313 2.2780059251826037 +4.712011217057205 4.455299565322182 2.253590632338382 4.715566017636148 2.475322942556911 +4.997644122843183 3.2456555559081885 3.3444223044688464 3.920261609707732 1.8441949040513417 +1.2205407624398665 1.527301305240759 1.3487405237445027 1.2686913458799403 0.3170329659456418 +2.823938554807166 2.663570153092022 3.7237852105840217 3.7880601642582694 0.17276948208088272 +4.644936688373859 2.290026168976317 2.038079061416797 3.438113930025256 2.739653479491285 +3.933300010978768 4.4282002774078 2.7787618928002784 2.7014585530929307 0.5009012677578651 +4.284624350245622 1.3959178237211782 2.2092077888221695 2.3260616437098602 2.8910690444517284 +2.546999675906624 3.7750994207858275 4.0798220928385245 4.505275225469781 1.2997074099342951 +1.793104981959707 2.693205147694616 3.547733868501113 3.1125218604245566 0.9997948791277335 +1.3197320026271218 3.634634181640964 3.4700819538521928 1.0105786862344894 3.3775624971013043 +1.389199514926815 3.1643911531380207 2.956382124029252 1.7241022392248304 2.1609764151578754 +4.085947918419183 4.849877352245783 4.2460439549259945 4.830680008756721 0.9619706312073113 +3.3579161866680067 4.222810677716026 4.060983862980649 4.702380618614214 1.076769371213017 +2.1096566070652463 1.5849706625875242 1.693985448154248 3.7906361591471622 2.1613050558029916 +4.886309650356532 1.4082205295273793 1.0829088252804158 1.4454322936374173 3.4969311113517376 +2.760303278127649 3.4386262715393796 3.3876824953981934 4.943726170803744 1.6974669372805664 +2.3746578824630515 2.7870123843219923 2.559664631850248 2.7299855970302604 0.4461451180761549 +3.023815614923842 2.164683480411365 2.954947838087044 4.505490511005369 1.7726507284551765 +1.5590308570626643 3.033502375559068 4.268122576837332 1.040019307634513 3.5489036300659134 +4.493610534101016 3.818396057323373 3.5037256170217512 2.828969551908601 0.9545733796084449 +3.935593632622472 3.1981737376651043 2.2701563855111533 1.1411210537319052 1.3485209979398958 +3.901698856683518 3.656175134815451 4.2355250515868565 3.1106880968144868 1.151321012064631 +4.339286680952654 4.369471943402429 2.06048773099182 4.552417602213941 2.49211268468307 +4.936435336190977 2.655786242906302 4.483105263551293 3.4629472365899687 2.498416035546088 +4.452066539215605 4.22804670315603 3.457285408442394 2.610181006882235 0.8762252872924596 +2.704792508565778 3.5252908281941706 2.5413577117197295 3.6709607713743653 1.3961448939469467 +1.146706513580709 3.3387584828036023 2.265850543533307 2.256043481219894 2.1920739071128925 +3.494699521674467 2.2469416283673436 4.619134125614615 1.439255590120554 3.4159226075551072 +4.655095890594449 1.396717491416911 4.316108791888361 3.261123508098524 3.424912223873759 +1.6524968068143973 4.408529871828602 3.7508292582763163 4.748482289532838 2.9310458587724137 +1.5308319881341568 2.3501925959642693 1.4180598155541206 4.549396834018481 3.2367612406337605 +4.260000497696316 2.0953804230726503 1.2387264848866604 2.534771594123566 2.522957191995272 +1.0783214502460519 4.280334559928109 1.5459553602354346 4.422943057380025 4.304642396773174 +3.6752670050307303 4.2976910929087655 3.728208945798489 4.290790586034342 0.838993353430924 +2.3607013451017087 4.286232856301435 1.9124222091035064 1.5984912664736965 1.9509546989521678 +4.470010525575974 2.119891171358782 1.2629861365004853 2.6659968399999787 2.73706046940881 +3.8387817222514835 3.0952324925186967 4.061937030182749 1.0689467872070164 3.083967582771284 +2.95461952854414 3.8437643064594917 1.604952482089696 3.440122065788894 2.0392218704762923 +4.8663597573445605 4.620910500061363 4.563148408927415 2.777434254128435 1.8025039197045611 +2.56362545367741 2.3224596722484563 1.1646002925749817 2.7343648841730297 1.5881819187886583 +1.6087477335370113 2.9496331073541415 2.2813940996935322 2.1286166981865504 1.3495608619576704 +4.774769858414937 1.3554470480640806 4.967707664269739 3.597281181211326 3.68372599779809 +2.0998944500139682 1.1599629606930937 2.151293274329297 1.69059794600527 1.0467623369975347 +2.0517698135911187 3.2124783267224477 2.4807805607399582 1.598257505566076 1.4581122025993005 +3.353497570924017 2.2870010234368596 1.6311611688758112 4.0489244008615035 2.642535511917281 +2.3507919622701468 4.4377183237667115 2.4267429737418835 3.15928326181612 2.211758782498936 +3.2941402451749693 3.8787173579271217 3.6995694415036517 3.359495548963103 0.6762992334324529 +3.6008566745450725 3.3871535626251315 2.9143829919953155 3.6806957360474244 0.7955527900403215 +2.5005029624468667 3.300995789083837 2.5552889885995107 4.0602987586934365 1.704653388104285 +1.1277700332025362 1.7885247742817691 3.2769318022961533 2.500386875881124 1.0196170117252887 +4.0570638311915515 4.3825451197903025 1.7083817069838165 2.2878563091610915 0.6646268756200088 +4.606987489302095 4.351726816096571 4.950678343569413 2.7348249706095578 2.2305076062956846 +1.728492131482943 2.34998342440066 2.413729271833294 4.607015658256488 2.2796395767844193 +2.0934036489682666 2.801704579472067 1.254296160324469 1.8836180874102877 0.9474894701597261 +2.376540780397824 1.6708828039527432 3.6566414629897066 1.1592080871691444 2.5952122545917233 +4.736156386589062 3.5249807224359615 2.106066709953476 2.6996208910466586 1.3487968918002087 +2.5990659646691685 3.9972839751345703 1.291530137465125 2.875220774378852 2.1126025746074513 +2.1831027084682666 4.9771281027448095 1.4353446724588803 3.2686393129644817 3.341788015833553 +1.3431818831146787 1.1526677572530937 1.523092903005578 3.6182118129783323 2.103763028261079 +4.704880007988919 4.5753036106240135 3.07362097988848 1.7303607868992352 1.3494954571333582 +4.137343504479523 2.918779183027301 3.049321757362597 2.9533990036487068 1.2223339069977437 +3.5346295079875683 1.2436977093749317 4.456429693544425 2.5071396440816835 3.008006017751459 +1.1123231443202095 4.5389719245283 4.670599800548929 4.254977516482787 3.451762411568031 +3.657781491910733 2.1082226960663584 1.5931524616692254 4.778400576732396 3.5421657240016517 +4.393355217009969 2.822405015044175 1.5655180877939223 3.586117909477592 2.559435128391506 +3.0796771215078333 1.5832846757317558 1.8860587966656368 1.2176872171260529 1.6388748945883422 +1.1135387306142084 2.3561431690553043 1.2595758192051516 3.4283600730940873 2.4995381434077175 +2.6024933417849097 1.4266913189816508 2.0669775547435623 2.587095606287043 1.2857033811768646 +2.9252490461274268 3.966665990128582 4.826891498836295 1.2909882854867445 3.6860766114431724 +2.4049554733674388 3.32740602332987 2.1397721427844925 4.1771533005779835 2.2364787052994575 +4.13055866286278 3.175448215506163 4.631356640404218 2.433095373999864 2.396787133231366 +4.268356493499424 3.3598333005198633 2.7848336580909616 1.6381778987611848 1.4629538005644347 +3.209671638784127 4.252515855754855 1.9942780697112426 4.048513042301973 2.303780671740288 +1.4016558887831585 2.2897467190565943 4.804096638831874 1.039289803240909 3.868135963500794 +4.5376739715131045 2.2101713914891064 1.2046961463690713 2.0518765836612314 2.476889774162125 +3.896271184826404 2.746798759479167 3.733648076182117 2.2994017717136828 1.8380286500800307 +4.856026745547968 4.480805312564717 1.708352408940538 2.199984966965271 0.6184607472426579 +1.122569641087431 1.026886757810213 3.34262457281932 4.879072388407067 1.539424276856969 +4.04374946599647 4.9150458739064184 3.0475355097165244 2.973407309971253 0.8744440636394385 +4.915317085806048 1.8592206859131695 1.1933922981645888 1.2770558277938036 3.057241369540232 +1.1967634104641642 2.8782045759714125 1.8765591927860603 4.1190577887855255 2.8028635974877454 +1.2855386517239764 4.618533779126383 3.543999766715441 2.5744421656859617 3.4711523246613973 +1.3976119616715548 2.1746779672136354 4.269258329961007 4.515496816240379 0.8151472070088208 +4.1370260821548825 2.5951364668555663 3.269406425643166 1.8994603496695142 2.0625653533508896 +4.297402634617983 2.66737806110243 3.1831719428503282 1.964812839459741 2.035037841190988 +3.0064944907760824 4.232946449397579 3.4061301234795023 4.66019918148174 1.7541019380426912 +1.1208959327824104 2.6177316696560635 1.1557259162230067 4.18865757548102 3.3821874094898496 +3.472154004315593 2.700776834075691 3.0047064461098305 4.826552103060598 1.9784196563210978 +4.612073699037052 4.967446561071425 2.6578820811841144 1.2761185853358872 1.426730608604587 +4.618484472185627 3.0527368772034067 1.9699415951063424 3.9975252092255054 2.5617690847219494 +2.6853031459765386 2.541255466861327 2.9090107247096717 2.368080512274961 0.5597814114305156 +1.3036503401406243 2.8178824520278036 1.079705206835257 4.729697784648948 3.9516255777547222 +3.2889302395357425 1.1592476211153548 1.7206929079258453 4.406918302708792 3.4280249308864015 +3.5696997300638937 1.8101970239568566 2.091376151518132 1.7754965335869555 1.787632430289385 +2.4165956963832556 1.597208809868309 2.1689786947688554 2.8852309331785038 1.0883070057752497 +1.523214850633393 2.6962765801756623 4.143441029401094 2.9912147357125387 1.644292934116049 +2.7565953904909484 2.019741519777773 4.670977193504127 4.155038064780921 0.8995258814134531 +1.945873828320757 2.106743137078321 4.165393761039757 3.7282830251298296 0.4657732602327607 +2.6177343078731403 3.7910591428229283 3.219938808335001 4.412227872339276 1.67279537913462 +3.0507059974502546 3.8810197133814013 1.8274874819499072 3.0133021514548077 1.4476108929116296 +1.8097355952580636 4.288185872064709 1.4863709359967703 1.112429428390461 2.5065011521469156 +4.494808100038747 1.3597289424846806 3.692334142425144 2.8647854462800595 3.2424617451284363 +1.40986667761064 2.2842828526170744 4.543819666729913 4.161736768788593 0.9542489130264286 +4.680207274308897 2.5538698090368155 4.066495984472597 2.372933600563193 2.718356960447359 +3.489643819005356 4.889446794965327 2.9913169860558617 2.6191711427942415 1.448427043438258 +4.977031667758242 3.2262793053636125 2.97891461319518 2.10524237835817 1.956639212618277 +1.6154957873143188 1.3252279094988615 4.9519953630120295 4.227923256398337 0.7800870826180112 +1.3405460808750798 3.043991213654261 1.282234111844363 2.4478600201238074 2.0640758412522935 +1.0344498704149658 1.455994841623855 4.718818490230811 3.1071543394504078 1.6658815977320305 +1.71795474214034 2.914288490740733 3.1440293544591107 1.8982466550917212 1.727191064151088 +1.1854305568090497 4.937664964602995 2.22001317244064 3.509273434942185 3.9675502612441256 +1.7376133845556403 4.794320505677231 4.947886237442127 3.6684071253170822 3.313687556587032 +1.1036995114193417 2.6325396983425176 2.457133906290708 1.992269136779992 1.5979523056347902 +3.4364094131159693 1.7279324402798206 1.2685955110196683 3.126208514682103 2.5238105392614445 +1.3940973602223532 1.229406475219223 3.1743958547489326 1.3884805794031645 1.7934928096639988 +3.91971530091769 4.405199270647669 3.69548210658848 3.3865620016775764 0.575435761908263 +4.491456362537373 4.730217282743087 4.279435358644699 1.4252202109085665 2.8641841572398716 +3.0004860858507274 3.069548556846608 4.943867685359376 2.208452387447094 2.7362869873155846 +4.326299636730502 4.992245124729314 3.265624098717795 1.543628732741412 1.8462804319577548 +4.898848811863228 3.7545519368321982 4.298807860430514 3.0105467873038543 1.7230879056911854 +2.271035888144066 2.9020501473683162 4.069245197363218 1.1081819328026068 3.0275525845267612 +4.812446172322312 2.7835097395153987 2.7069478397529263 4.267239387051033 2.559510258026165 +1.3784679010368106 1.5129560561706774 1.346279394971838 1.3576803152435963 0.1349705332817279 +1.7278285127862203 2.0449360682789752 2.9566883976523375 3.2603048880280854 0.4390218388402532 +2.4235869760330506 1.3808570677365304 1.8514711173119105 3.8012292760768984 2.2110727123563136 +3.3824987265680115 2.366103123198871 1.7504257244649981 1.0831204512132153 1.2158767825144765 +3.0049303163749572 4.056700989508183 3.5441539562954922 2.9665990998170377 1.1999129806385824 +1.9782856751642632 3.386996900916214 3.5742117054102613 2.0393327720291343 2.0833436244884687 +3.9590642963787936 3.4184648859209923 2.7662626516149995 3.0048049559277 0.5908892904209175 +1.7475213104642915 1.8559703558182115 1.211052024312826 1.8995911546537338 0.6970274954754585 +4.2047252404070505 1.2776050149580969 4.524673758576305 3.631972308587509 3.0602203667455767 +4.927295785718723 4.72681387793845 4.409856501984033 4.173186947390349 0.31017007176513767 +3.2888527094597593 1.9131736836673543 2.5056964403866027 2.107589769531484 1.432124890986986 +2.404684071388634 1.3751545242392709 3.017867055754462 2.970582800247867 1.030614811300704 +2.3944928902131983 4.666922656472304 1.242011952659786 1.384932000158643 2.276919669763843 +3.9690735900948146 2.669953373581807 1.1545196503973427 2.482177610416057 1.8575222732860723 +4.407574470640779 3.992376121181273 3.741942916037577 3.7094385389116336 0.4164687310306064 +3.311328516575111 2.721018083311329 1.4368211882050526 2.4443404531285493 1.1677163511795394 +2.942578922581157 3.85344389339099 3.458235351006015 1.489835384857971 2.1689337061745384 +1.9456191603281123 4.681337338613324 2.547156998903551 1.4176276131953576 2.959728126733685 +1.499246292135488 3.8100771904640887 3.050963846966565 1.7600279532346033 2.646970895645758 +4.98164456410373 1.1418073371331312 1.3661365288536151 1.990140971915681 3.8902096954522207 +3.4343895057123857 3.8887755861442206 2.490189519761969 4.988682286674951 2.539474909584006 +4.579976987582937 1.501252399029135 3.0797078691214215 1.7543880929527362 3.3518677780111776 +4.002113807183605 4.372447125435696 3.8595840344996657 1.5868387570540055 2.3027196665593395 +3.870883980035614 4.765446037770804 2.7181871079871507 3.9977212706547562 1.561233149972453 +3.859004269876051 2.4841365639194093 4.649718880759018 4.176282246470793 1.454098846560522 +4.733393091537577 4.782333870579386 2.8832487351216 4.212121758516892 1.3297739327272746 +4.510312090109411 4.651812040578246 4.0018559438305985 2.035951489828202 1.9709902481364903 +2.914371880756862 1.386348625077122 1.7235747397166494 3.598522783575795 2.4187362892778013 +3.443302734792508 3.6823018633035214 3.8959087422503833 2.739573055849557 1.1807763560781077 +3.208908173658345 2.4344377388005336 2.9877383399665485 4.29154226265668 1.516479186567037 +3.651683942629641 3.898445468947969 4.193493262408095 2.9163047867272733 1.3008080770362909 +2.1670985650552392 2.556602847411847 1.1370998728598876 4.746557082145804 3.6304125015816333 +1.8728825823220445 4.542135681767455 4.501061724890528 3.734789009471296 2.7770642742462575 +2.2640281302340726 3.4659050581052853 3.1791333855917947 1.0530154462642578 2.4423115365733987 +2.3987867590077396 4.789075640779418 3.9808402751590015 2.1432690253617968 3.0149874023621663 +3.3185277678625797 3.997005848517925 1.270431731684098 3.062758871739492 1.9164469945471772 +4.65865380018164 3.7846226789192188 2.313188129694706 1.3267797183574892 1.3179271432412556 +1.6109794591431177 2.2079305737557156 3.6466297413999453 3.8513083988624155 0.6310657541475866 +1.4184827731396887 3.565155969738802 4.746717754105205 4.561427243663298 2.1546550504098976 +3.812516183724309 3.4690335621446886 3.7536227302895777 3.83721394059781 0.3535078524842184 +1.214706416942735 2.5282925589262253 1.4070401178633771 3.726686479859418 2.6657583906146742 +4.466042989573461 4.067310932098938 3.520122427242455 3.711675499958879 0.442357133236224 +1.8489100840143355 1.4230192986792862 4.0714369922386355 1.238317746789504 2.8649515912084036 +4.149487699683894 1.7048315553007374 2.838726488102973 1.6144494975476649 2.7340807987097753 +3.9849132756403196 1.41616573436849 4.6975158981607015 2.7181883814102368 3.242869308090542 +4.500458376182994 2.480410788159584 3.34491832287873 2.169301622858751 2.337234879776755 +2.6078384634637453 4.696510549112634 4.545869035301964 1.1444831050183382 3.991488109477502 +2.7786080775756146 3.461147576843174 3.226307649736307 4.116329138739692 1.121605286608535 +2.3611071532292462 3.4620618707689834 1.6355555297082556 4.578420993978595 3.1420627668568435 +1.49955712811198 2.2896360399037174 3.4429765217380717 3.495236434544316 0.7918053961324919 +3.2113235745828645 3.2122282752233002 4.333548808885192 4.905259008207398 0.5717109151418097 +3.9587192348683113 1.101345321550923 4.783407358673323 1.870230103230833 4.080586649261863 +1.6085354897573958 4.2992667538696985 4.743761647246001 1.771723936877259 4.009119964222231 +2.0607688594044093 1.8393057022794923 3.8670080525337567 2.1853851052739888 1.6961431740022315 +4.506603925114863 3.9900324191762016 4.989250301277294 1.388953383873516 3.6371670313878743 +4.674535326648343 3.411948006580586 4.473037442913181 1.1286945745717243 3.57473858650143 +1.783039893504792 4.19651284381764 1.6886465686035517 1.2295941344965646 2.456741911384131 +4.34626059489344 1.692750833684301 1.1820517126085601 2.9809909237747414 3.2058222561931573 +2.042878619239197 1.07806052462587 3.5466801364046767 2.9092387453838033 1.1563760126705829 +3.623681959995777 2.663621891156615 1.6555332864878944 1.558769325761883 0.9649241420313004 +4.770642630873615 3.4028152980691404 4.5700075040589425 4.160125220509584 1.4279198502488297 +4.789661307477392 2.2854521066579436 1.7494848296936287 4.710491108376726 3.877966207159302 +2.894333306548688 3.3235373058541855 4.152575435708629 3.616832443628325 0.6864667701957542 +4.2110033210940445 1.2498166100336174 1.5460113654820575 4.46127078439486 4.155401811777133 +4.8957908069221885 3.8354278354795546 2.1155259931451322 3.461173045739049 1.713223751108228 +3.7085970078913375 2.3862326856769416 4.4732052821017065 1.5027303921069306 3.2515178721260343 +3.762132213091829 3.9654021903772962 1.6181235885483916 3.326966512260835 1.7208901247865092 +1.1213392087061922 1.4890659789854723 1.672641294594737 2.9370970275909976 1.3168414021009291 +4.607217733072799 3.7833664526408506 2.9020581654498314 4.113040961601067 1.4646536330626523 +1.3402280402176077 4.961386701208287 1.8594212774083516 3.8503531850920045 4.132384288652337 +3.42203624387557 2.6849176741672913 2.5139796671009074 2.88835436237703 0.8267407080045519 +1.6936027701917435 4.314279462250472 4.558774655047428 3.604566429531005 2.7889890035536316 +4.572255975231794 2.0727081863111634 3.309030584106786 2.342692260452957 2.679841208889084 +1.4693749883963916 4.03571680761388 1.7010210149002578 4.444503064417821 3.7567012243575637 +3.4010884898490796 3.509345287921305 4.49261627259307 4.635110541048483 0.1789529292062415 +4.142502298718614 3.4017028334371324 2.070723875623694 4.392991265331072 2.437562240653487 +2.1295292535278723 4.690955019641825 2.5254597870975193 1.1203493256186081 2.9215128554004224 +4.856750828314069 2.0243714685675798 2.2412396352312935 1.084676225338597 3.0594136298677483 +1.9269135923589884 1.6320695782335437 3.917395585671709 4.3126063545223445 0.4930766111681997 +3.6647056558758804 1.454206730184041 2.480236668640569 3.9746084071883034 2.6682301987375365 +1.1037964930843835 2.0668004578165804 3.149396571928605 4.725116439574158 1.84669156530885 +2.6653044110170194 1.7580187773733478 2.444976180052895 4.714211557102404 2.443889608282098 +2.3746716124915177 3.443329100823786 3.485570491334964 2.9476166426869645 1.196420983869736 +4.349582244481679 2.8850933218413037 4.358665527343045 3.677153328992276 1.6152977066278726 +1.458362115428959 4.756316822463685 2.5965774384292475 1.9065834457213913 3.369361506224203 +2.599554795343447 2.671716895399797 4.344289708933538 4.736395180364438 0.3986904430891098 +3.567496186409583 3.6808119094257523 4.325780580964961 2.514377721771577 1.8149437377992317 +3.3036086212189386 3.7337973498798838 2.3710013964966996 4.214326358745689 1.8928574322217608 +3.443870665566071 1.210955853454395 4.211331474618383 2.399905633829714 2.8752690543364214 +3.528887580973883 1.0604177726697097 1.5571455407192092 2.7641710160185817 2.7477724965016512 +1.135478106162906 3.351070330006714 1.2569933578689785 3.7541281674262206 3.3383425767077344 +4.917745589539798 4.225319201843983 1.4753478641368054 1.024784384867373 0.8261124325591837 +1.6881963896446743 4.693656838735701 4.7040687330416056 4.469829213431856 3.0145747069192765 +1.34486224239263 3.807871284765165 2.7360832127118115 3.339684060659652 2.5358918601652207 +2.2089492209599078 1.4358647157835827 3.5777310020784396 3.0733625891711904 0.9230639999925795 +3.344691291815949 3.8201341509019557 4.788159798190556 1.5337668476051038 3.288938945781171 +1.472943040885033 1.9514270490095114 2.927495736203372 4.788973568036107 1.9219902872896022 +4.428877062087869 1.608851104130368 2.0105984242246544 4.137097710227085 3.5319322780771105 +3.5811176708076684 2.023400592201697 1.8891276917296502 3.7158889796463073 2.4007372409348853 +4.569681705097629 3.801542149518665 2.6973649254186207 3.8424198441208453 1.378836155491002 +2.953463259943049 2.330542928878869 1.5990110238088264 3.800236794096884 2.287667945885801 +1.4757543305787792 4.117430064519931 3.2628604024020667 4.351960443165898 2.8573745960383463 +1.6818562328954538 4.773576111981729 4.281694103028564 2.177724768949694 3.7397083802726563 +2.4585060175617284 3.0985981950690125 4.607618393668136 2.907261835194684 1.8168462845407967 +4.602942888386252 1.5744040966160653 4.710667342807103 2.113900761029003 3.9893914189380237 +2.924552607280397 1.4755788755494033 1.4395282737046493 3.313253057574467 2.3686218442238594 +1.2982043149686495 2.132294200929191 3.8323603576817753 1.0465500583519063 2.9079967265652216 +1.9946138918369214 2.1730902826418106 4.235519800125999 3.3061492760324285 0.9463526790413276 +4.666546344353735 2.426709816901781 1.860044007443626 3.014888839745068 2.520026638034085 +2.3393453362399206 2.448906017071018 2.5171940836429836 1.1738781888441778 1.3477763672075904 +3.507127503960738 4.622950304798573 2.0714631552665144 2.969294103567994 1.4321874648933097 +4.332587032450601 4.997787499443014 4.603069124753246 1.7585694102302938 2.921244646928442 +2.2331451521279106 3.9919095096034227 4.8179938414643395 2.976575205557058 2.5463846248736433 +4.8967737611021445 2.6646753949681448 2.8445419053004533 3.7501099923400036 2.408799841490061 +4.416227575519155 3.1163335835524957 4.309620075931692 1.3474573970489088 3.234831081604887 +4.474960887791589 3.035276548599602 4.508263755402564 3.784341350719441 1.6114448934161119 +3.119743729781939 4.622550546202158 4.720830061111652 4.255532299274675 1.5731911309976208 +2.179505916880174 1.424495707846214 1.1121354688578333 2.982110280610407 2.0166423114510357 +2.147035742557503 3.0193143498273205 1.0303035174738424 2.899903603587421 2.063074029378605 +1.2298547136944622 2.4020112629349946 3.824252230740714 2.215876172744652 1.990182031840913 +1.9722850108441898 2.497234282345989 1.4014598190248853 1.5571489802581069 0.547549863095384 +4.364796418112347 4.63331809877787 4.070658016465815 4.766267401993225 0.7456381898892107 +4.158174042758094 1.4702103168637835 2.446799295582193 4.160038679457579 3.187528537626814 +4.732449800290249 2.893874750737669 3.7255389776247663 4.091690876569167 1.8746800862914885 +1.23244070668646 4.4986935884740955 4.5012205359908855 2.454698267684417 3.8544339769232376 +3.9569841575132108 4.534721611667249 4.391436212415765 1.408552516249618 3.0383179081172864 +3.6515907563695817 3.5333795771482555 2.2672478681043904 3.9164759546091057 1.6534591510554173 +3.3404588096421355 4.099283668061096 1.8871290253508164 4.771985352417836 2.982986958331057 +2.8407512317866632 1.2731874439598192 2.4038326359038873 3.448443999134375 1.883738073378648 +3.1167340665624024 1.2228661790129358 1.63055078837229 4.863733103815003 3.7470259487202084 +4.474236506804009 3.89999924612756 2.4633049344775473 4.527173812600554 2.142265897976699 +1.2594954799352491 2.989179128692244 1.4731849777795505 4.611377992557646 3.5833030743685836 +1.543277302338887 3.419802199533493 3.993262043414674 2.0172690637002835 2.725049347382866 +1.5433315787402009 1.6720547649282373 1.322433457660893 1.9054132475273704 0.5970218539175615 +3.6904867902591074 1.2621536264760387 2.1924252278466474 3.841230847357163 2.935193677640054 +2.04450056533153 1.3903089925897438 4.8038133733801 1.5614792903390007 3.3076724323754214 +3.6136378131340576 3.4482045391239087 4.317772998081642 4.830576279412778 0.5388277772105826 +3.907941891652409 4.024943765701952 1.2778336941006416 4.566108033010053 3.2903552340835835 +4.912923631890024 3.2799679861020588 1.8009865884930747 3.0227416057547325 2.039418903343505 +2.117699429599177 4.59293282858917 2.7106393290554447 2.6413061535049276 2.4762042461613447 +4.732702176748205 1.1298053054898616 1.4972305211028094 1.7299690466949715 3.6104062217731085 +3.2523240304053442 4.790906647144865 4.478106714631057 3.5979355373028388 1.7725512037547388 +1.3251355166898575 1.8367059824536067 1.742167966492508 1.0699816059597214 0.8447122851764693 +4.641453130764541 3.0556742420986844 3.13660441017915 3.4513651178338836 1.6167154934686643 +1.6298432040735409 4.991873914696347 4.276652674225696 3.6795887765316255 3.4146355291744577 +1.1614884050162941 3.7195886045472553 4.911006535163537 1.2595652236059047 4.458351745049964 +1.5505153622134378 1.3411648267241514 4.79864705276939 4.126011808421608 0.7044613677473385 +3.0557372231347384 1.1019049412693622 4.84336381716188 2.748037039745795 2.864935407616747 +4.441788376685468 2.8177212271730436 4.281351145560746 2.550620560665702 2.3733989263536275 +3.7519103415045567 3.7482930676631976 3.538679421894996 4.658611854421185 1.1199382742339286 +3.3657754460207947 1.111912838228589 1.0520397973034514 1.5949049558153119 2.3183181910880974 +4.7746756972163755 3.9932517524393356 3.506572098521862 4.827055332113067 1.5343726247774352 +1.9671828612659286 4.195798549028055 2.1510202475165086 2.3542066018465593 2.2378589272618132 +1.5139348179905565 2.4571499972680866 4.930214193076844 4.7138812916256185 0.9677059463854961 +4.970727996124611 2.8376247813453768 3.907864741114344 4.2826481734980675 2.1657774461127883 +3.4173838698390058 3.646430526783762 4.873289394609425 2.6494779199876173 2.2355759539137083 +2.096158243572762 1.2712689668623294 2.6195390870224635 2.764622492394868 0.8375509019434664 +3.7785810483912528 1.3479210228131007 4.190608247491976 2.8707155457566875 2.7659039940022616 +3.9489907316357327 2.072097379726153 4.09800196214313 4.173526179218913 1.8784122449045328 +2.447153960309425 4.287035877580255 4.014739218348943 1.972236652974507 2.7489965804018994 +1.7881972289660055 3.6912668703589384 1.419430008834277 2.950501319191674 2.4425096555368913 +3.468300639790114 3.3384149460625063 2.712054543880267 3.532400313768089 0.8305645523425289 +2.0684075843428658 3.4539937414375177 4.244420478814394 4.792246518895323 1.489953814359048 +2.7381646031835496 2.0085807600590835 2.6623061677235005 4.117022538888173 1.6274189087886308 +3.357651461549498 3.659029608666165 2.8653617207251014 2.6491348889528985 0.37092159594410234 +2.669074126447334 3.138267883037366 1.2021238783888664 1.8916370265458093 0.8340090903007978 +1.7541684792258225 2.022738346373315 1.3671447883224057 1.125858185960174 0.36103877633729514 +1.2628121710897582 3.393606043340527 1.465061667112395 4.5213892374282025 3.7257778708739404 +1.6658042411529772 2.8961278367275005 3.7032913579383697 3.808751569362838 1.2348352141160848 +2.464073677486247 4.0876374788133845 4.727200654674528 4.526233226444341 1.6359545605515087 +3.793184859985882 1.3644814847855868 1.1790528256527222 3.040082466447645 3.0597436834850376 +3.4652511167173268 3.3149520711133134 1.141583749037351 3.1133705648422176 1.9775067762441099 +1.1786379201937303 2.134938415909578 2.581847380295017 3.7231086740821344 1.488955331365928 +3.2195693057425885 2.056255468679855 2.0887508841530997 3.4133810336462584 1.7629362201871874 +3.727367474989432 4.918354291440425 3.309836215367673 2.2999458903625754 1.5615146702797806 +4.222649749674407 2.5456858736108092 2.371776922687607 4.657832139921778 2.835181880914489 +4.0628878844146925 3.480945860088506 4.287956563930681 2.1588147260451027 2.207238429692551 +4.621944751702688 3.9890564661447074 4.56359144659606 2.7989559127671377 1.8746962818676005 +1.8319654938671253 2.338909279248541 1.092606969453823 3.25420701802079 2.2202492588674705 +2.1062297057097483 2.4315313270007777 1.3743942894975052 2.2892995189387584 0.9710163354308332 +2.8026814325541016 1.9600056259783987 1.6525242763252717 3.560887512043139 2.0861334459778886 +2.1240441332751625 3.0080594447069635 1.9580549577874615 4.236331761386199 2.443773366059534 +2.159217451393675 2.8874037960482704 3.14997385472001 4.399108817524493 1.445888483888705 +1.1179044567001415 2.234851430021401 3.059876294091006 4.9515017302667115 2.1967743015609162 +4.731887477297224 2.791519924183491 4.133879279730651 3.796954150563443 1.9694021386809035 +2.6916120773451855 4.441293688825828 2.3908581091289562 4.809652793431743 2.9852895113145923 +3.4178406917814863 4.671168876428053 2.743153955593532 2.399514334558968 1.2995844441875395 +1.2505341985310618 2.5546346283441226 1.6258574373173058 3.2441245733391977 2.078332614036335 +3.2847680003185884 3.69787081237444 1.4940285523396333 3.5070049728825072 2.054927736683228 +3.2581827354711703 4.67333952155975 4.768580365582446 1.9510507575073475 3.152957630795628 +2.1378211037536015 4.470671471039961 1.5437284710282841 1.3153036071441648 2.3440069868898816 +2.4838840448805057 3.7911440089051363 2.421978250198987 3.8184171544604304 1.9128434925201223 +4.671661363786175 4.4890892703016725 2.6623782410460954 4.623193616956717 1.9692967038328246 +1.1299881190416645 1.9712704543945092 4.365011336569751 3.5057529012199793 1.202531091696374 +4.07528306322793 1.306263846510526 3.0419170498567016 4.477380471436524 3.118977822499531 +2.92321744072951 4.796117020933072 1.501934973319874 3.381871183166917 2.6536603005322186 +2.827459302302727 1.9215879593152794 1.2049887111151838 2.6774889334460017 1.7288319162978771 +2.808852885212067 3.792197800073232 2.6057354162752357 2.4819639008110457 0.9911037330287954 +4.759442370588287 4.27006021318151 3.051870654889048 2.124338649785071 1.04871851155604 +3.70877444486496 2.1812813247005556 3.441960781152027 1.7999958172941195 2.2426065581564876 +1.9037413801508487 3.4337564970302754 4.227083007726932 3.9780830207296103 1.5501442679325794 +3.809800328741069 1.6646396757387159 2.7318823934166154 4.876999772434754 3.033684689771686 +2.8429349766829795 2.441033362915129 3.535865584932516 4.600685047008942 1.1381412012425924 +4.498115251207301 1.3181344275530296 3.705188090412322 2.1929651406799073 3.521235051584359 +4.190150259157443 1.848206652805537 2.4549062735153675 2.034571422337535 2.379365722718402 +1.6530983942601418 1.8997706568813206 1.1802821645791637 2.3460741438431523 1.1916031822980753 +2.021523748461037 1.7249430823299678 2.873019073135341 1.7537285691711384 1.1579168034825247 +1.8588896628695024 1.9363081456858282 3.1416680411396416 2.0555152151426896 1.088908436418208 +4.585874521303413 1.0691360105804533 1.913128207661627 3.9914873635004002 4.08497570781771 +4.499113609912469 1.0261247258376902 3.1528519841627527 4.352668504707854 3.674399470917654 +1.9163531582673157 3.4495437728553937 2.943332032779857 1.0632027153507049 2.426017252807073 +4.660596003732136 3.089937171856833 2.493267188208598 1.532317812696347 1.8413019492862317 +2.5696511659898498 4.102803584133367 2.435731994676901 2.2454337130614537 1.5449174001366892 +4.193084934769292 3.0309343560800563 1.0098425652180127 3.402504880319601 2.6599674662775517 +3.505075739986391 4.580349591746449 1.970471029595621 3.5909469245059054 1.944776589293536 +3.2177375643292354 4.8589159372808775 2.9753912381766674 4.8316199269891165 2.4777109187745414 +3.828440042734763 1.3411231902933043 4.29163268761957 2.438787792831129 3.1015769099899613 +1.6294412864234538 4.6918500330326705 4.273116832471476 4.275433692503024 3.0624096230173126 +4.962551488051375 3.6036471668160988 4.241308054021857 3.459887624527581 1.5675582419492187 +1.8289204389454397 3.22010858406484 2.9149889311768544 4.167212712956988 1.8717555542261646 +4.174125065338307 4.547177884591267 3.50701994886035 1.2047846784657765 2.332264060135849 +3.3189234715869786 1.0741931001395861 4.186120714390858 3.9787576394113704 2.254287888749637 +4.30654129952854 4.285123197040919 1.6727478314906659 4.960368928892342 3.287690863690619 +4.107063549789096 4.068435267085151 4.171535765641529 4.5282406945174145 0.3587903991315908 +2.169255065126307 1.974699302044748 3.8529610613428598 4.535836495354403 0.710049859745568 +1.570892556977196 3.3213979947449666 4.862251440534872 4.87852834056863 1.7505811106970288 +1.2555678220337847 3.508407637379474 4.960016512165732 2.335079743963707 3.45912998753526 +3.3238177563962257 2.2570583018494443 1.3965671431582178 1.1757258070241123 1.0893790110014252 +1.7052428832606346 2.3562048831270843 2.992045874346067 3.741098485125226 0.992386688234582 +2.8442139514085785 3.8518345355653083 2.5011569914981036 3.1872368631822376 1.2190179785165054 +4.209960421182078 4.741816343080936 2.953044278195094 3.6687344208405905 0.8916743250418369 +2.451782709131418 4.48596687376242 2.895853139798601 1.3043105873818712 2.582811048409985 +3.2655530607654355 1.0017364510896583 4.07801253440501 2.9313307798716797 2.537665204163774 +3.578584125555452 1.36275243121775 2.153579436108205 3.4774072296121745 2.5811683642267664 +2.772939950290131 4.4727978080661135 4.43435960112301 1.6990974716453504 3.2204309732701013 +4.1086424872844045 3.270179573595631 1.1610075647094646 3.9116939714685515 2.8756383232181135 +2.036273650340446 3.306727405898621 1.0600329020295831 2.109261672642389 1.6477056041943692 +1.6470171966103533 3.3551378078659635 2.849530703903755 4.73398141387298 2.54338956923625 +1.164467835915029 2.2284741805668284 1.3237290390251806 4.548531996558901 3.395800879965949 +2.398443733214026 4.690138086601998 3.1868986653558276 2.1269252894400847 2.524956745570215 +4.9074501867859075 3.298182756533236 1.536240171543565 2.5465891218475734 1.9001438533575423 +2.831864856856494 2.156591208514106 3.597092047438303 3.578024203420924 0.6755428060612518 +4.770892549018038 2.971435519941683 2.805546738439098 4.562694742633501 2.5150774755734018 +4.211265596521385 1.8589885558452135 2.38725897570321 4.936648132146942 3.4688027253052502 +4.722836372828275 3.9724409902923967 1.2774375542590768 1.2878190368656073 0.7504671913630048 +1.8493571303479377 2.643546846662772 4.603081189256239 4.293276765246656 0.8524764434494049 +4.4554073527411 4.66089404536426 4.218303959226109 1.3522293630939606 2.8734314628052746 +4.527118371300035 1.0857954627238127 2.8377353103176532 4.469114610842885 3.808425105378036 +1.3130202999689793 3.6920771294274477 4.047299006346217 2.2999963290168584 2.951775405412025 +4.14474907085553 4.977803403947563 4.549288892988644 4.117079945595436 0.9385009835318 +1.5655464215474737 2.9182632783242775 2.892864533812066 3.850252199657893 1.6572368682001486 +1.077262931165766 3.317368378783915 4.013480682133193 2.889043326396 2.5064779638819408 +4.328328401472607 3.550735846424072 2.6551169602235287 3.9384838262446045 1.5005601269085045 +2.7188638405128986 3.876498219804542 1.2468237672177147 1.0604129536026514 1.1725469489749987 +4.713663826630183 3.0315244944952844 2.5102146355349513 3.5698568543933176 1.9880730280103711 +3.308613574943505 3.9036603773904455 2.1903760511652646 4.600403783134098 2.482400927723233 +1.6618153379707277 2.6375227044196228 2.062277881812011 3.6559208395876595 1.8686098420511854 +4.996595602874791 3.0095531227416186 1.6850284699934872 3.8926945885922355 2.9702066441684916 +4.986754264955172 2.842475284206588 3.471098611306821 1.0184162319245038 3.257849474947038 +1.5829534987761673 2.32185522930675 4.016244296686406 3.234133894842278 1.0759518799899337 +1.5107418650420632 2.4817023814270227 1.6987018377221514 2.1265619708701204 1.061050714111227 +1.4472613957028742 4.317842906063047 1.0807067477090504 4.568152143259718 4.516914167279388 +4.142922502547213 2.5753799485546764 4.191915907270461 1.7541942418587415 2.898219552862608 +4.118412293712312 3.0392543096629026 1.548846650696877 1.4730404414836986 1.0818172377499162 +1.3577655033716218 4.014135926896183 2.2176794940284354 2.8443636190519044 2.729292366078154 +2.9618338029689437 3.087107360604383 2.506157927847483 2.4315944547151007 0.14578468975925818 +4.348427937618558 1.9210919354504061 2.045847320781188 2.151543353050582 2.429636128859455 +1.9205548560968047 3.1276362615838904 1.513966017962006 2.0831292825885974 1.3345382502098162 +2.8509518586174596 2.6210896199254874 1.562239296555267 3.871941187655682 2.3211116893698414 +2.195289083520313 3.924658568208531 2.587803965802738 1.8922311738440314 1.864011889308655 +2.923755439867463 2.0530259752144806 2.0135348952364747 3.9504070318567464 2.1235921157865616 +4.964669201245721 4.228054719337787 1.556304000693308 1.4236596612687116 0.7484620335981526 +1.2443674722968345 3.956963331817602 3.320403937699817 4.013679720821799 2.799787064859149 +4.037840236410344 4.141251558845724 3.22188648392542 3.039004329310008 0.21009470265718194 +1.3749416725400199 4.043260786079665 3.7513467343709945 3.90372664751414 2.672666557880072 +1.2521781144477844 2.859658441985629 4.571723626829478 2.139835707993045 2.915145254220409 +2.4597176424536027 1.9802897078960338 2.0158258081357174 4.006137644343648 2.047240178822094 +1.7352844407746932 4.357376864423494 1.2138855445242482 4.567392212278277 4.256920911742097 +3.3056400307192972 1.2358925942441457 3.1702071534639136 3.885782454763209 2.1899548996783103 +3.625142820199463 3.040121935000532 4.056694817125118 2.1941436124186118 1.9522669966663366 +3.302630273389787 3.5811767454643286 4.703039148836725 3.5470427212059787 1.1890819474704928 +2.8444475553601727 1.7645002144093325 1.6954538381271593 1.5421648466851852 1.090772099993435 +1.6395959081239089 1.8616975447412356 3.0334266540208703 4.017183317839292 1.0085168866187846 +3.6432881677694646 3.6956517792200345 1.5400742095213102 3.5870260884734555 2.047621533035308 +3.2945550313982888 4.666573192278587 1.0943295345197002 3.897805241389635 3.121203273225766 +2.3594359688002386 4.739567475729576 1.4501715005778308 1.526528054124502 2.381355982113393 +4.586566781897846 1.0528262249134785 4.965544734883419 2.5534372394088356 4.278502646230438 +3.472555021178026 1.73353453285011 1.9603184176304693 2.4942123459204124 1.819130282714553 +2.6093554505480943 2.1836971261468325 3.8042780014558777 2.255771100273504 1.6059447786712742 +3.5890858768422476 3.261498247668297 3.2537334673190554 1.2581030081492455 2.022338889591484 +2.2684071605284193 2.8524942086550102 3.7274906639207552 1.328711515299677 2.4688659509273685 +1.245026578348984 4.6165952149933425 3.0530638690521092 3.6572874553856725 3.425282647298715 +4.5525568015996924 3.727721514932325 4.996502648864835 1.883053147085651 3.2208571918451594 +1.1657520105195105 1.969600160918234 3.4149149086487016 1.563690250206276 2.0182181707944076 +3.329615437960607 4.822770320086472 4.357440318626527 3.346368331135344 1.8032687170540274 +4.233960685776307 1.1986732957780157 1.3916875250354264 2.290740698159415 3.165638347630214 +4.265141567239668 4.348038316476281 1.4880403850122432 4.901727575843994 3.4146935598795345 +3.5107072065751006 2.8409872036524355 2.350707421223964 3.922152180639174 1.7082047635480535 +3.4216716789599224 2.7005464962860697 2.595518032791077 4.278547068467402 1.8310129065672849 +1.0971922747234992 3.1157629126842536 2.1553888928966205 3.6653454028750856 2.520832418560114 +4.94764044530131 2.075548706183007 2.9095259806003266 4.336702578983503 3.2071395356117844 +1.9120715649101077 3.5484798865589533 3.7447000169743827 1.1726369828829433 3.0484980640474832 +1.0414977342445573 4.711285119828863 2.6235260399819222 3.994243129868601 3.9174232342065243 +1.3319402310288515 4.223653625008215 2.60411567159295 4.282912420992076 3.343705261938127 +4.848522111064449 2.6846639594925197 4.390980612127788 3.4216601394661135 2.3710470849068646 +3.8202278008656037 3.2102084054599564 2.4275034038526555 1.6754990822359703 0.9683151152911134 +2.8318177765241996 3.7707703978388736 2.6216028038411876 4.537127264719625 2.133275881197114 +2.5433872317795894 1.5412320850243977 1.375582644619092 4.064116854306523 2.8692387727108977 +2.610246884489308 2.3378258928650073 3.168364630634115 4.31145808974401 1.1751067410824394 +3.850472735272139 4.39129810243039 2.159739815553251 3.512850542686357 1.4571893211400297 +4.621216946839329 4.387838292237113 1.6331943440507941 1.4109341740296015 0.32228121199007226 +2.656204194057294 2.1732961965103144 3.400873646021255 3.2676696439193735 0.5009425518667702 +1.7066700529327576 2.0521553578308707 1.0723092136545147 3.9810556815873213 2.929192057652096 +1.9402261121145674 3.278803912549183 1.2259328704466097 2.56788611677264 1.8954231831285975 +2.1536078215554952 4.46175334171377 1.1093946575443558 4.101711188378262 3.7790863926256804 +3.5744741304612817 3.5679425350540894 4.6363449759380755 2.498500004573702 2.1378549490848306 +3.3272522702910647 2.574121144687429 1.6872631084509284 2.086936874296556 0.8526110552052589 +4.082776775245769 3.0846128956691636 4.839896496876014 4.602093420974454 1.0261001088586155 +3.440049961202874 4.396651641606244 4.491841213309653 3.6967626960456474 1.243879666030955 +4.29826696825357 2.917066852292522 1.3631269248576068 4.9144329708354455 3.8104446449895533 +4.473012732958236 1.2993133736955307 2.493672032462472 2.14071560628192 3.1932657048492934 +3.312242720022941 3.6347757201773967 3.568427871030989 1.5422037341678565 2.0517338494540125 +2.9992849154897843 2.3643248021973347 3.7256939417637382 3.711732728456828 0.6351135811406976 +2.6825081730729208 2.5173926306624126 1.196652706059822 2.177003189286892 0.9941580419174136 +2.002330354791682 2.0600116046243917 3.7931139913119947 1.5698254733481747 2.2240366365444664 +1.0952733386059066 4.207070955298548 3.902206844486273 3.0697119813343763 3.2212314577546732 +2.366188887151916 2.8545975554751393 2.8730216182858492 2.3023308856682094 0.7511530733405294 +4.5801804522157035 3.8414757757746996 2.3051071755873953 2.603813699061522 0.7968125163184921 +2.362600392306672 1.9219623259194583 1.6939792048372437 3.3096857118656944 1.6747147286638222 +3.181386528979786 1.6557885156758054 2.6274557469555657 4.858645822428123 2.7028981577344506 +2.7380198427971014 1.8252135937542757 1.8259310694006872 1.7484267279409829 0.9160907003330705 +2.7517452471941937 1.6920777764835249 3.510752911978638 1.5516677575687887 2.227309989810895 +4.200039891720676 1.450180940567936 4.883262078964447 1.425188652880756 4.418143962278848 +2.643533835968772 1.9374956169657356 4.033662961468019 4.343620550028497 0.7710795506296394 +2.7439476924986774 2.930480548241697 2.2259827869892574 2.4413514577427553 0.2849178313369922 +1.9430860543077024 2.7182345356669813 3.322115811125159 1.5167543210440502 1.9647354218880155 +3.7293348295215356 2.8575371441698145 2.5278300058633802 4.988058830943832 2.610125873581839 +3.5927356608037004 4.827992196869795 1.8570638586370904 4.380727419961687 2.809757370423922 +3.835869110750254 3.9211029055630724 2.8753821387936367 1.1410248471776754 1.7364504066513522 +1.1996851169560419 2.430545727794597 2.8074444900949573 3.880801788693982 1.6331300419040906 +1.5896806200547489 3.103167567425683 4.16970014589224 1.4224112950622536 3.136596685861435 +3.038686501827147 2.245818031383987 4.359390880876447 3.784402805301132 0.9794139566478928 +2.9728958448138765 4.156435960123133 3.4945324013643786 3.3087467759411906 1.1980331811599099 +3.280430926914544 2.5328385556619186 4.376828321046362 3.767184933335228 0.9646550750061035 +2.5738942089923738 2.0096643838594064 3.3197781857845468 2.503222175746718 0.9925316181857773 +3.727922971552186 3.10482160606532 4.093155264441247 4.654327556518984 0.838552117084787 +2.717497350516931 3.797441699441704 2.6329581541901756 2.6377497541184223 1.0799549787858866 +4.454436553877125 4.79641514157637 1.7906485342663054 3.8594401370409797 2.096866245175351 +1.3460752054143983 2.913660779747994 3.0181230194613673 2.664455171528341 1.606986459034539 +2.57799405349952 4.104977915579511 1.4993620869366593 2.994316511003446 2.1369530750789973 +1.758124800112137 1.5638888473891535 2.991092572624385 1.8446412178315077 1.162789023957755 +3.137391934321978 4.594486566916182 3.1680372454044208 3.3678936819443983 1.470737013731992 +3.3778791516315456 2.579162620942869 4.031684042367606 4.217429759536868 0.8200302237369544 +1.4961635058614524 4.285346880338465 1.544980668241501 3.327698993099952 3.310230886546299 +2.0896723946283458 2.3644613278190336 2.9704057054741613 4.66697183497222 1.7186755335327546 +1.9341125928300076 2.1133406821647545 1.7488729838174644 3.6967955138644273 1.9561505287352363 +3.7985430542118976 4.645144120877163 3.742730496236684 1.3423819476560488 2.545271404143756 +3.358373202165373 4.204398243416484 1.6164098455416709 4.453928956929413 2.9609581351168455 +1.95370504949527 2.793981670687241 4.482153639008221 2.76310519688322 1.9134242463432378 +2.858349604862455 2.592159283130156 3.545506457945273 3.5182674830677554 0.26758036014685915 +2.8277900736455606 1.9524733695068681 1.2249875756492536 4.748749389837679 3.630850679341788 +3.21551173745933 3.981609664348742 4.662021127742534 1.7782270602152765 2.983818737371568 +4.102393390658307 4.862329562168894 4.424781830009137 1.2131230002401026 3.3003417131569233 +2.694268755390276 4.2893332686222205 4.501157429876994 4.9028157755513515 1.6448587258551177 +4.913312464030042 4.548886864862518 2.5044475098645775 4.559066938813089 2.0866880493119515 +1.7055152255758719 4.4770130645759 4.519429411636368 2.306670153123711 3.546477662091686 +1.0930972707315822 2.8832972037828783 2.0993338708228824 4.199563377186038 2.759670230244058 +4.390370246757134 3.435390601614895 1.5037058637677383 2.4822367830005247 1.3672998509948568 +2.7686043914839082 1.7333016043823943 4.580258723541504 1.6420079312925044 3.115312115845222 +1.4945248188365219 2.5569185453330094 4.415820170794986 2.267830302679392 2.3963599278126697 +2.9099458794404294 2.360264728991527 3.765862217938864 3.359304727237603 0.6836946397362896 +1.0638699516460721 3.568815711159234 3.257421122162075 4.013278599821368 2.6165002932612946 +3.046598914512435 1.804542088300391 3.6571948500250913 2.25392908761511 1.8739957202437791 +2.3909319334487757 4.344465670998742 3.3830903406555892 2.632382372626586 2.09281067395218 +2.9467066565797984 1.4153889268715614 2.545412561675634 1.882243340966844 1.6687502523188702 +4.458051727625392 4.3020783874673185 2.5718399566530956 1.7486848475530845 0.8378018957232773 +3.900503583643041 1.089657902136751 1.9468801204314485 4.2161801897163915 3.6125581309785466 +3.8757151587297156 2.4903173791264694 4.0922745379573655 3.983450661652069 1.3896652991939156 +2.509962473208593 3.0260531047409045 3.2928874511437103 2.490349768425887 0.9541573623556617 +1.670750855586896 1.7138747374329824 1.437933687468393 2.58544430462722 1.1483206371382986 +2.365651798201445 2.822661161445002 4.998680805629286 1.3748942904590304 3.6524904196482253 +3.8642124410195926 1.593380802366973 1.9307241248885014 1.0603345258638313 2.4319240089271017 +1.9156677302679932 2.849396959094115 3.0179019548282557 1.8993845147484598 1.4570283238588342 +3.8940354438464895 2.135777009200327 2.357526629502241 2.3999336938326787 1.7587697638148942 +4.840231773007872 3.097493403923495 3.8180353087226333 4.688031542774306 1.9478271151062063 +2.380710207183555 3.3676122195403346 2.1833717896868037 3.0280283878864065 1.2990074483527747 +2.3582179307350093 4.954204294912296 4.475390469487665 3.2073756565508558 2.8891186837548886 +3.4333653759997484 3.5578719468573294 1.5915131486682546 1.9876307429688174 0.41522407769923353 +4.230535445317456 3.828622084140718 4.3242106815831525 4.310135590947386 0.4021597419792144 +1.8224932068374673 1.906134287288181 3.1491861262732046 3.3011902039679164 0.17349659931763142 +2.29235172078563 4.863224234010282 3.189051868031161 2.2660432441439036 2.731543592737317 +4.37852135626846 1.8911457936896703 3.164366866217914 2.75551788779835 2.520752799555893 +4.262754537641906 4.110757048807697 2.146364619607469 4.3406325684052085 2.199526100716458 +2.5462297416304986 2.5512625218129408 1.814460937074183 4.815029832764122 3.000573116365989 +3.222581499856978 1.8104225645866343 3.6814920533596633 4.917235701177958 1.8765007917896375 +1.8404171701380005 3.6897797241934986 4.187714064070079 4.814929067695143 1.9528288499290112 +4.076476034153028 3.8818450900703914 4.055523788137677 4.5154971795134005 0.4994564296995116 +2.118573304291111 2.2266540617359856 1.7854478944473704 1.066065175488196 0.7274564911161026 +3.7789953076839735 1.8073365823307785 1.3067665248328035 2.8785886430572276 2.5215199583982875 +1.3336533711527196 3.333760049403279 4.314092735070412 2.8971440635895784 2.4511569231678716 +4.616761032039611 4.453368624143341 1.9739415527904955 2.107024298244326 0.2107322853662208 +3.1681227944925 3.2936029142057555 2.826709543323921 1.9215089522147664 0.9138563183496714 +3.6352368615539716 4.798726403925404 1.2018384688612436 2.414136059410596 1.6802896664740428 +2.7796682163395445 3.490246664347108 2.307908786056839 3.0612864835351505 1.0356156071779528 +1.1998359756068586 4.273114572849035 4.453772774411467 1.119610581411567 4.534498744679145 +1.3271230176047522 3.740040167885519 3.152018361055833 1.5620014046653523 2.8896925607628754 +2.580435526378297 4.061904159295118 3.0769674600114394 3.1309790873393517 1.482452888358697 +1.1298954658562792 1.029824491447532 3.5047685287573693 2.9713433455497973 0.5427307122313495 +3.361339049225336 3.24570583721063 4.662237619852034 1.9813775559464175 2.683352701745498 +4.052160178215623 4.8226345875557985 4.026201867521721 1.672066500045672 2.477011131151752 +4.428236889465178 2.6886808538729663 1.0177892587188055 2.4712777956829983 2.266866588057533 +2.9106495279965414 2.0397549747249517 3.560265539136896 2.1044123294349717 1.6964568639129958 +1.2417522583625091 1.6935160727514074 4.392905537815507 4.7758849155910115 0.592253111256091 +4.6281066461197 1.817927278266092 2.4457715211215056 3.0249637175016635 2.8692458381703325 +1.97793718943452 1.0169074375214553 1.484644456087104 2.2762966795074786 1.2451069941609474 +1.3203884820115839 2.0568696152754753 1.4982099166493819 3.2259474161478323 1.8781590259684677 +4.071453703576202 4.382356649839442 3.1720557993019876 3.6373796026089797 0.5596310248004911 +3.3558733084316756 4.373141701692603 3.1906859984423686 1.2770962331025797 2.1671780669665464 +2.0551981964851613 3.9178915238851064 1.232767259629922 1.1713233904655875 1.8637064632066294 +3.1553605524647366 1.8144172888932801 2.462578009093401 3.9475571308572692 2.000822787803122 +3.865254030070495 4.57863945546535 2.809329392125678 4.88088428109552 2.1909492059791464 +4.067674090053551 3.1871990343741916 2.8494003824167895 1.6768444181325002 1.4663300491540878 +1.559224718574903 2.371194486965763 1.8699078683500452 2.9351881233984995 1.3394465000800915 +3.330926731728137 1.4084301219965494 3.0195091499486333 2.788069329136634 1.9363774438592645 +1.8967216178529447 1.250912122467339 1.8514001472496027 1.1299686353094467 0.9682630483244056 +2.317240659748879 2.897958872066207 1.5378514251961048 2.3732486308045124 1.0174095209183807 +4.905148077475121 1.037400258386603 1.6129831071980836 4.878009462971253 5.0616074814190615 +2.9979185292030217 4.658455525073842 1.1943874648340915 2.452699310738895 2.083442299704996 +1.9984706192923527 3.0394319770656346 4.4749052116635095 2.7556360369339843 2.009847517487916 +3.7076563381570224 4.975956989828912 3.443387876247406 4.243602986448921 1.4996435461889477 +4.941206016214131 1.1895591454266095 1.663322363901544 2.3397139142469445 3.8121332312064404 +3.2001704516039973 4.050147254302793 2.0377519443735532 1.124468670770121 1.2476164887375725 +1.5445583363410038 4.24649673709114 1.347410025020228 1.3592535050981054 2.701964357549625 +3.4975189298042024 1.65275202885779 1.3504269710200694 4.9280144248165545 4.025207685125011 +2.5145757556550783 3.906024466763274 4.5018686363952884 1.9371240792241253 2.917883506787714 +2.1569885937033746 2.2563463533620354 3.860606287321079 3.4293161892663746 0.4425868424212641 +4.347096556879875 1.3994435458624532 4.170337482863252 3.382131061204561 3.0512174023664835 +2.7286114196705493 3.500677774549999 3.814171389857704 4.367765099281403 0.9500276056254003 +1.4906845772701676 1.950339281471774 3.163028214830548 4.898047784198464 1.7948747458205254 +1.6459764224284532 2.7613830446062186 4.726557531292 2.139840157735886 2.816955573567864 +2.5299330568006626 2.202223318652356 1.1567605962859493 1.9078726476278955 0.8194894667708292 +3.3929165767423854 1.4977294747297338 3.9299549843978547 3.005301372277281 2.108724366540762 +3.0899166500162942 4.9953481241240825 2.3339224746611116 3.47254398405753 2.2197135049777836 +4.004542223194286 2.8460755559305864 2.9808767734481605 1.5588331468675078 1.8341900378804041 +2.8602042419147433 3.7067054964305624 4.610166780236923 1.7871716917659204 2.9471792689668974 +2.847778257800622 4.357239791359646 3.799845401165854 1.0883009129351708 3.103376811305478 +2.8158261600832635 1.6672928441258934 1.7520501099857477 4.915764458404055 3.365741709675879 +3.696941524919947 2.4145938081841507 3.5588584447355065 2.6735560039133017 1.5582605938492005 +3.0901425556938604 1.442035423345934 4.203223984605119 4.104538265589819 1.6510590512860743 +2.574300574156236 4.5214722130361364 1.278377876822106 1.624349928278939 1.9776688427660196 +3.966981886982769 4.9205469221720755 1.3422812171896612 3.415876930603405 2.2823420994722583 +1.3026703712446075 1.642104343377425 1.39942614301069 4.469689830767979 3.088969817560354 +1.4912564681104454 4.248616332836223 2.5484457713483173 1.6105856721403593 2.9124929166071665 +4.598311617186435 3.557123643656268 3.088610255064875 1.5696931311112836 1.841516121477981 +1.360463511349122 1.4990552147375116 1.350365783420027 1.4388530294435147 0.16443130163358982 +1.9737944922840978 3.505971332268435 3.842426044230505 3.461399699605427 1.578843546486712 +4.801928000913879 4.075193213718685 4.439100667277216 4.477012749206368 0.7277230083457898 +1.3850807548854873 2.609137039154151 2.044243340609957 3.3715709086932604 1.8055780958052035 +2.383216609405195 3.920433685783399 4.936894125622173 1.0057191905748382 4.221039292621329 +1.7026925889226843 2.4079911653364596 4.797272804173474 1.4063111890503475 3.46353385390265 +4.111565394690882 3.6399575751065214 3.182349019910132 3.1199362244562976 0.47571976260134213 +2.0616972973531853 1.5770702819139908 3.778876428281092 3.9486291130425846 0.5134971451500349 +2.216581921631749 4.003521421478345 2.7012674947582918 4.687726074026095 2.6719226155071674 +4.652154195534131 3.2688302219091616 3.504835371483192 1.5842036000573465 2.366941405573014 +1.2383903492955417 3.3731307514884485 4.009478271977986 2.3602742232740748 2.6975897721885187 +2.560753709347661 1.1791149190163477 2.5153413471142954 1.5216336642505786 1.7018756434976534 +2.1584490899221107 4.191419462026532 2.6006600940437323 1.6862991582156863 2.2291308743146354 +3.3565410248933927 1.7459894626252654 3.3480435205676735 2.1696450305690833 1.995620037971974 +1.242567536520784 3.6236451170873605 1.3585191927819942 4.064661360345047 3.60454378191466 +2.3522376230291786 3.65061820776589 3.512754941409871 2.9661531321445973 1.408746137781153 +3.562155802393428 4.806176318239162 3.900343504588463 1.9024554706610437 2.353538535897693 +4.373436120692665 2.835380626346438 2.5521318938210262 4.526067403172872 2.5024060619269504 +2.7621029356261335 2.8334051569766165 1.2866306764447635 3.3338309419169208 2.0484415866015766 +2.148606828030813 2.1565782474101423 4.10239713212638 4.734538239948209 0.6321913663797784 +4.457415607903561 2.861087319497092 3.3430590254572254 3.710800464940505 1.6381385077825268 +1.0675488534744586 4.2526289773856085 2.585397580228285 3.428833627603633 3.2948626316958975 +4.854725433073398 1.3292935156262877 2.551672002431834 3.5723044207403265 3.670199005211713 +3.6141011599088295 2.577269213282319 3.854572846164869 1.7242499803907578 2.369239540018134 +4.895428600249099 2.487753520710844 4.123741032720714 3.601390211021445 2.4636861954314404 +1.7170046367031015 2.6246941240514814 3.778419748684437 3.85685917970908 0.911072417419293 +2.4749441286794194 3.5131913291934067 3.777645680991566 1.9283436009695918 2.120819519088961 +4.935507220307137 3.1934406375527105 3.5021079159857944 4.483705758597295 1.9995825322724836 +1.6084489828247786 1.5674715304054145 4.233482988373259 4.665087804056819 0.433545693702545 +4.597729722325641 1.9303682733765752 3.61228484928284 3.5909414585765704 2.667446839145347 +2.1547039993972317 2.9399596384658566 1.1402192665836726 1.035272408574433 0.7922375033379107 +4.882659630995701 4.096405626989103 4.070043128486212 1.420534259541678 2.7637099351111636 +3.6517751899880952 1.599341156395964 2.3569692603918444 1.1838136359644147 2.3640599783789282 +3.069741316046275 4.224663527594837 2.31191054150826 4.90398362087392 2.8377258788509496 +2.5103362276770094 1.3693733276408193 3.564772169205677 2.126249098498566 1.8360677994604693 +4.482434114243469 4.417475831216084 4.640816477132413 2.5373106514897956 2.1045085737640257 +2.4418709674121684 2.5304100538060137 2.5314412276374774 4.026495647225556 1.4976738254203765 +1.9771290166263418 1.8747869953119047 1.0040603311655674 4.019958410901273 3.017634026299452 +3.0642658969577474 1.2938258537649934 1.814912957075443 4.750194598497764 3.4278763485591592 +1.1250920918111196 3.880845488000646 3.6902512004100743 2.1897836726804014 3.137766655183477 +4.074501905630561 4.8708160253552375 2.0591328684268793 2.0334733601611985 0.7967274236759536 +1.7048015811458406 4.666071238334615 2.1711489783980267 4.266392636850625 3.6275561981687825 +3.961149648136819 1.9981224091631025 4.8208333677880315 2.9531537732103423 2.7095577146380654 +3.2794900953179176 4.667193112590823 4.374596912614209 1.4265282999005997 3.25834746603481 +2.6416738507113546 1.653611902069613 2.976869116478748 2.3662337759998473 1.1615256920944534 +3.290919012694571 3.636117247513493 1.5008752673737966 3.1324253993734232 1.667668328700314 +3.198276878142867 3.9552733760569323 2.1400923816239663 4.248861657950156 2.2405248399942908 +2.753979949923028 1.047441494350739 2.6992957358020875 4.180407843715992 2.2596385942349766 +2.5655208086518235 3.741330214867489 1.0116227092835448 1.23849220283441 1.1974963577603326 +2.2481607707743367 3.1152328199234662 4.977725470493645 4.128131584445874 1.2139290381342003 +2.098307838704952 1.2836034759857116 3.410305433815909 1.9274693062685166 1.6919060788925342 +3.5619652671726185 2.3133207546698453 1.483090516174916 1.974386624679922 1.3418215175035206 +4.563101901063633 1.0678727041941798 1.9068974501832097 3.732395504317353 3.943230944833973 +2.5328062171348726 3.9301456134186763 4.055050525674497 3.508098216490455 1.5005712968494835 +3.234898584832749 3.103493594565459 4.525209486344093 1.2996834816284655 3.2282015548233516 +2.4840637522126094 3.1169209589217184 2.902776322586796 2.877289090437028 0.633370225923442 +4.9395287392849845 2.3538819650554217 4.881810910808968 2.666533715841312 3.4048527562330078 +1.7889521293116575 4.248622086326594 3.9358673861050226 4.62095908221106 2.5532972661864712 +3.9217842527438815 2.0225144155397734 3.229381824966962 3.1180870410417314 1.902527908715739 +3.318457613820287 3.6503518537855855 3.7769894599252773 4.003037730971959 0.4015614615041355 +4.346658055320641 4.183601317172911 2.294039442118961 4.380733463850641 2.0930550494877362 +2.3170287012580033 4.140991833491805 2.959376815323017 1.9579103493541172 2.0808115220289363 +1.1519648943569987 3.953698518503857 3.9246274463853528 2.7945591090334942 3.0210537479098716 +1.8583700997413741 3.9500553545158357 1.1361678652726188 3.402978718689637 3.084408962866321 +4.381356503020092 4.579621769377474 2.875045766801942 2.5797053526060334 0.3557176915774287 +3.758698493388077 3.938661026058256 1.3810373178102457 3.9772012714059573 2.602393857031403 +2.0847282972067807 4.123193348750757 4.732219529573598 1.045422935304828 4.212814842107114 +4.004061234771461 3.159937075143151 4.771627760051685 3.4463627171254108 1.5712647870014083 +2.3755852205913794 3.1603104701339606 2.9487040352582707 2.9885751566436567 0.7857375029806039 +1.113114317126087 3.8439368547553054 4.514109713430061 3.054541848764577 3.09640599463117 +2.473281584938113 3.0452612409248743 2.565577182711473 3.1220992925625812 0.7980461049437324 +3.758429919926242 1.476032869114122 1.9418167276284946 2.617799432832646 2.3803967978660583 +1.768153695881824 3.201550593416654 4.781001046328637 4.616874279965485 1.4427627182940723 +3.085557300462297 4.431955103480104 2.4463348588790095 3.7124507492387604 1.8481981743829967 +1.8361951554091775 4.520888516628752 2.9931789351033986 1.5055743448800265 3.0692907748582736 +4.823915736571193 1.2482697304797883 1.5685304363928005 2.618839395978831 3.7267134678512788 +3.839844776201226 4.681292200441076 1.0929978229063608 1.710816433660622 1.043903062335868 +1.188299833749443 3.012283696640774 4.209098107905164 2.5190296234161695 2.486613885256597 +2.6679852394057884 3.146359067456647 4.9001670626668865 2.483038131525128 2.4640117266617323 +1.540515309436223 3.569842036248422 3.9071250988191144 3.1213140159001873 2.176158547117496 +2.0521390774269386 2.700216201720732 2.1614316286641544 1.2331290616274417 1.1321438137444655 +2.218531590517903 1.2444829548871872 2.990159289308045 3.918244982210587 1.3454046967156206 +2.915995062207234 1.414746521290454 2.3955544809240252 1.9174695522399912 1.5755355853295028 +1.4494082722540753 4.597860607949831 1.3002740958981445 3.8155299584058477 4.0297970375724175 +2.8745839994597135 1.075871180989529 1.0317802049994653 3.7721760524865986 3.2779776088700907 +4.943786273157572 1.754667021894031 4.471160590440906 3.0944106122451434 3.473603618900948 +2.145628287192168 1.8814432231791276 3.4680620805818263 2.2496823997484907 1.2466927427057217 +1.597495055323578 4.442940886245713 2.580357631771526 2.7361493329084206 2.849707534266506 +4.075949036768042 3.140702292640374 2.238381758824039 1.7479712449569305 1.0560250681270813 +3.0972785816325423 1.8726846743320995 2.065136053603692 4.754059185145535 2.954646822403341 +2.7108823721435478 1.359861743282587 4.08615242889223 1.366957313633188 3.0363265329105333 +1.4004096921136586 1.2981579919475101 4.734509713112269 2.554858877322125 2.1820479316796733 +1.7633161022188775 4.8188880189012195 2.3494614472322772 2.6221791011373607 3.0677181514554586 +2.162971980006687 4.625925473041422 4.514883088722193 1.9476829352281326 3.5576195042404306 +1.279402461852321 2.257405917258307 2.599266211643665 2.336492154610264 1.0126899643206906 +1.0678425668668527 1.9809363813999976 1.1883739447363344 3.325679881577339 2.324180927078289 +4.189826482586589 3.5352365770923107 3.0745454880202585 3.498991844327599 0.780155531774009 +4.713924558694981 2.59494097970143 4.441970556258669 2.9612128583348634 2.585098599281066 +3.8013142370971518 4.830036942463671 2.5932773163082863 4.289867284157102 1.9841088487131593 +4.797940676202529 2.57947641152487 1.2999539273841427 1.2147175009757478 2.220101110769206 +1.2567780690725474 4.015927993919405 2.2340842661440745 3.1663976353126584 2.9124073420647902 +2.1706580768480586 3.1873862332536254 4.130545454142853 4.83916987638207 1.239308160152965 +1.7058517537861864 2.4223280177441007 3.7865244696026057 2.4583198803474304 1.509127452448467 +4.644595303153231 2.136366695320051 1.7981627388824735 4.123212753170911 3.4200977059282147 +4.715317957416107 1.508564653287669 1.102623852097052 4.36589016461733 4.575169262439188 +3.0989726433850926 4.32529995245463 1.1494987285337714 3.709433705435434 2.838511186332414 +1.9276917405564435 3.1165437663504374 2.2914577848557074 1.5081370691945923 1.423713623878877 +3.576974299539411 3.569236252571748 1.5958151998842012 1.61295234526462 0.018803167889038415 +3.655161662154211 4.683430758752374 2.100672855915748 3.57819088366531 1.8001102347755702 +2.4184444837088956 3.6167865656848615 4.585146551805732 2.0728818515621397 2.7834327133100447 +1.3875340123555158 3.639441714396571 3.3576858317388303 1.2136970696681426 3.1093047631901936 +4.881629597050068 1.7235382015952134 4.730355089486386 4.039725745591001 3.2327248804523037 +1.5739866308612647 3.373631242387043 1.3038260973597735 4.1180090682211254 3.3404111305765634 +2.8492753765187278 1.9245236050952257 4.244091239516571 4.542885100740984 0.971824886621195 +2.627972738601373 4.633951805754084 3.4836796491150603 1.281731021898715 2.9786791997049304 +2.3555413841783936 3.776070768874728 1.0804288285482841 4.369974119953881 3.583156702824268 +3.219659677080906 4.803857902564253 3.11141589728655 1.6955093463458621 2.1247294836334674 +1.183756686021094 2.643185929097818 3.589943433028164 4.024860473055094 1.5228547360970732 +4.559045431509572 1.7746232021011323 1.7798165119551839 1.7852936852132286 2.7844276164143262 +2.5908927806723274 3.543797823928383 1.3226395856174653 1.3938174835352974 0.9555596865789318 +2.233559026192697 4.538826603288691 2.26593879282641 3.7507133731471707 2.7420456152983173 +3.67432857336216 1.502423213610936 1.9587363653683427 2.807939375726502 2.3320202924754865 +3.797749449420881 3.8963524884896263 3.546445104762541 1.9396139037940294 1.6098537410956009 +3.2053501207379687 1.9129756107915683 3.83665511462338 2.923607648295789 1.5823677037043038 +4.841142265746093 3.3205366317913954 3.666955486011964 1.034308357802459 3.0402421606978156 +2.5169944338789287 1.3659823777155071 2.4175796251732944 3.39967551889503 1.5130568719974282 +2.685382210026837 1.2596992476533617 2.6285621262023855 1.1149692959709299 2.079311223682034 +3.717573348153134 1.6516344552874482 1.0071458340633206 4.153175347281081 3.7637222542440982 +2.1132390278982345 4.042806735727377 3.0923942860855282 3.032332652962243 1.930502250418385 +1.2808662358590337 1.9579650554091477 3.122701620792484 2.387160954217587 0.9997414083759867 +3.3619895146738563 4.843061053049176 2.1781236580225274 3.6729925099619543 2.1043302464879736 +3.428121671441219 4.361702235797549 1.7720726851130033 3.9639645034630453 2.3824278401441115 +3.6038549027319067 3.1231463811952715 4.744007275926572 2.1784561809766485 2.6101979050402844 +4.2648195615936295 4.03670459272119 1.268608283915043 1.7369386344121747 0.5209316233637965 +1.15673193281309 1.7687208992341343 3.617998949370139 2.7882626890059123 1.0310154008472956 +3.3042950836723315 4.90614656828416 3.3246794355292075 1.9519432443462925 2.1095811976163645 +3.114152350669902 1.1307239188695353 4.045016004027847 2.844687335032056 2.3183565855336554 +1.1684162929996051 3.8195534367053625 1.1246236054675114 2.850359157332213 3.1633354785267542 +1.7292629704115567 2.580344024131486 3.0057755247363294 3.5576792554095538 1.0143651649835221 +2.4630855292728064 1.4396320487063288 4.371915432296415 3.8076193300479804 1.168711734302524 +1.557923178242378 4.348907085488316 1.7266951785074154 2.8023271187777037 2.9910826202957725 +2.389460039356668 2.3936073012701935 3.776114964299844 4.26740924001441 0.49131177996388314 +4.381968777035279 4.157111956555534 4.109421145536951 1.0817841547657103 3.035975351942534 +2.5131136660330924 2.2128659093624217 2.9576599190888078 4.825516812732982 1.8918345832867718 +3.8154155853101903 1.138228248228729 2.7569908536540346 3.5668839693702687 2.79700891967006 +1.3086939845087802 4.487387536185921 1.292486536086129 4.376913406320243 4.429196520058243 +1.4454635253756782 1.696267499143996 1.2781835736807121 1.202702077941642 0.26191618784830073 +2.540801833917269 3.139656751204938 3.669638532368202 3.1436976145637865 0.7970201132848351 +2.2412208349661626 2.2886072291916797 3.8321820286477077 4.567380647896899 0.7367241546899443 +4.083560698725005 2.3985212373816416 4.656945573212519 3.4482646085772544 2.0737086730194205 +3.752673971183171 4.269823029353327 2.718057912554823 3.064917526753706 0.622699558638415 +4.063161488113101 3.3704009044720458 1.9544004365313983 1.518374766782518 0.8185570297338208 +1.3328187077762461 4.602355536222567 3.249075512664314 3.713232493806112 3.3023193025068753 +3.7594707227401973 1.9560927142525366 1.2598594508644618 4.407038169066156 3.6272449773621 +1.2841224671122 1.322193217241101 1.132779111706824 3.2807504399291982 2.1483086856596674 +2.566702334005461 3.812177708820236 1.1546274464522295 2.2825131288077753 1.680278257233795 +3.6253206802561424 4.391558494760257 3.754250213204429 3.1837802214555877 0.9552781793079775 +1.99172856089104 1.0762835686362662 1.7112520283389618 3.97432183464238 2.441213731332538 +4.06830860703505 2.4923907344075813 3.4240500039557333 2.7078155938042268 1.7310427122262935 +1.6636560702107337 1.9165780213223176 2.8546369367584954 3.2475837592024877 0.4673079483840616 +3.834428903995091 2.500051154557389 4.400808635457539 2.558836486898333 2.2745165143964647 +1.4751443432812166 2.2676824346041147 3.3333955272559805 4.8774681822295225 1.7355912508522233 +1.4125236341533056 3.758716860529519 3.8826985267553256 1.1572278130234683 3.596222082533789 +3.883169971321117 2.3975435911892307 4.859947310332571 2.9760239928763625 2.399219207867213 +4.48991862362577 4.920299334100914 2.6480941002925436 4.248859886133538 1.6576123361836521 +2.2574357791842816 3.0998578168378783 4.391605366352235 1.946180847456473 2.5864601228592345 +1.6924910910331152 1.699541142419212 3.228328776793557 4.657812624223174 1.4295012323487968 +2.706684129010169 4.188802150758925 2.623295957945305 3.547284977409803 1.7465478918378998 +3.9926181282207494 4.058796593800203 1.7661917750809732 2.154183832821488 0.3935955108689247 +3.0823738761437505 2.851319966648132 3.184716806802749 3.882842418032273 0.735367444307814 +2.866031355639216 3.288720176173945 3.1086691454496207 4.547905789193868 1.5000226517293813 +3.5304463790133243 1.6599749370490926 4.246540787264405 1.5697944301707865 3.2655220831312275 +3.8176039364008147 1.8533106299878708 2.729896266714636 3.129015320686512 2.0044311444552294 +2.847355242706843 1.7729295221163253 3.231079019008252 4.960825285404503 2.036274238696307 +4.291404251949508 4.250717533423199 2.1745097554712243 2.6846507376733415 0.5117609117415867 +3.1871151274081586 1.7018358996407987 3.4648337607891437 1.6372689811784489 2.355004757555851 +3.990732769002891 4.679335318499119 4.003617258617301 3.457547895588932 0.878843114788364 +3.7267234496308013 2.7445143539639916 2.9628753492819446 4.990864192637902 2.2533249779796183 +1.5546239079873612 1.0442597911761493 4.543803858810131 4.695580257417282 0.5324543237711992 +2.8008679023002396 4.2299029335033715 3.4142829073781704 1.129697959572499 2.6947113953345685 +1.898085735190163 4.80277893473552 1.7167968626141783 3.2377334135570566 3.278794073356706 +4.863433466410876 1.8773754449135125 3.8811657260716976 2.493149311396874 3.292891142317872 +3.5022180004338894 2.7808847123461216 1.2198969322163586 4.021069737820967 2.892557829908039 +3.461244304578002 3.4110966920676846 1.1394812030285904 1.5649337979222198 0.4283978215890082 +4.92415169026885 1.7467658921537925 4.677782175898342 4.049181416581229 3.238968882943662 +2.403095021342541 3.8326028621607477 2.3411264379601957 3.1501316040335445 1.6425535077111182 +4.879071719993644 4.1323306257263015 2.33995950603538 3.2019965705931823 1.1404955776060774 +1.900261148884943 1.478257761810886 2.8627181995844344 3.6917849165735253 0.9302894602869827 +4.748860350267327 1.2084522546408993 1.4422507388322678 2.790820331919228 3.788552418929409 +3.2572307949771746 1.190295761502389 2.1449197255193946 3.3656290507119433 2.400489885256228 +1.432256157138946 2.908604300799154 2.47953387731474 2.2142040794910782 1.50000124763351 +2.5919283877517882 1.6438061438692393 4.287311027623506 2.147430571510939 2.340517924690475 +2.5130741150054874 3.4055249115129076 3.1451397510680588 4.915647691973503 1.9827170229248463 +2.383331404773678 4.1949860305701385 4.95971928419372 1.087326212466761 4.275221700114353 +4.781524545797871 2.3671008728852865 3.4953576627433747 2.270475038521645 2.7073564810421633 +4.408483552408649 2.098839973476023 3.5633378204047954 4.979896838054562 2.709445129946274 +4.734434883642395 4.620218243195665 3.09073925130973 1.3850044526111818 1.709554516371477 +3.006881754674083 2.102972959452604 1.4881079793933147 4.50386316785198 3.1483059677855496 +1.3807439652151041 2.6987199625969467 4.752978056866667 2.0536632175969785 3.003891031841236 +2.7166310082077443 2.1936846894656488 2.7486631093795046 2.4579525148879844 0.5983188966057503 +2.5530281987593186 4.667019236484503 3.913140139394131 1.4636784915136367 3.2355556666544665 +1.555431820078676 2.3769670901357296 2.1807184917122466 2.630502472580988 0.9366033468837531 +1.7707010292276566 2.9580174054560793 1.6626827290287696 2.797102301988266 1.6421412682147052 +1.0942508718070774 4.888083140229048 1.4789759082065843 4.430615898941316 4.806801630588089 +3.085124296998756 3.504559178675537 4.6481806130123235 1.1744719539977182 3.4989394775674905 +2.158098873550224 1.6456683890136152 3.215502258061539 4.994538307921174 1.851365514473735 +2.7333053119447595 1.6310764633240007 4.3670673760404775 4.8224591589675425 1.1925980507653593 +3.2416948239609575 1.6336519696172989 1.1832523055133 4.031124211621783 3.2705009119411157 +4.84253722237886 2.273488973178457 4.31707451248467 2.377117758320737 3.219229894671382 +1.4323294531957074 4.240539475994691 4.131220715683911 4.4787632609555335 2.829634137644396 +1.9968092419166652 1.8288799913364868 1.6153509538278885 3.151347165650872 1.5451487293898203 +2.5978876831441893 2.901987062793918 4.457036630323929 3.3365743786549165 1.1609961628354086 +3.4737299412322096 3.5117927308236294 4.581624643348743 3.776602859654006 0.8059211178363154 +2.974720976873547 3.8204546663432826 1.6483072828226306 2.9299586794875774 1.5355441302930046 +3.940778668011441 1.1613061303647552 3.071620794230962 1.2629124131508958 3.316156449162401 +4.044471271917752 4.492348770229869 1.5672483496408898 4.024300750586382 2.4975389395335417 +2.9068886600541233 3.576871905556113 1.2325164053787994 2.6483180874072048 1.5663243444727024 +3.867595061379395 1.6769440846700139 1.8889873511915818 3.968766619678634 3.0206677254187198 +2.382420775447438 2.457517005033954 3.428285016508031 3.904273992072113 0.48187648682691975 +4.947406381345203 3.206470530112786 1.00674213008966 2.4026906135077244 2.2314860085744512 +3.7215893866831693 3.44936245690442 2.432476093312863 2.5038084240563565 0.2814174882733184 +2.5346852818743355 3.122205909649838 3.849985352159411 1.9289314174519934 2.0088874304242568 +3.9781803703365646 2.518076879341653 3.08273777814514 2.784974339240001 1.490156122681158 +2.413615181940557 4.42137353607162 2.279100224107182 1.4543857482203228 2.1705408485721733 +2.276109708671461 2.6041869945915725 3.853842302860721 2.270947177607727 1.6165369414542927 +1.6291499149844917 1.6033039915030454 3.5631964890927947 1.0582840858719265 2.50504574001561 +3.324490546648872 3.84130119117374 2.6671307034924245 3.68688145297446 1.1432343737674189 +1.3296931399697134 4.950668752099817 3.81632551620644 4.593745471058136 3.7034910786773327 +1.280985372427561 3.829171314791059 4.115069414852956 4.239284913221921 2.5512116899414674 +3.2604104234493847 3.631873738090095 4.148981051136962 2.418019197626751 1.7703711284449284 +2.671647325975423 4.227026016201772 3.745399647822332 4.931866824330205 1.9562482539138013 +4.218555052243479 1.316341354168412 1.4603609890475768 2.711983455185062 3.160601706484801 +2.937160374342446 2.4607670221784845 3.4872586111732984 3.76169593705997 0.5497876606707751 +3.7751820165403283 3.2790035053753233 2.3429599553514 2.8014842220056373 0.6756016711441197 +1.6965002266758127 2.2657757764574424 1.3410361606542827 2.4340242462949364 1.2323544972659441 +2.640980021033327 1.9385287539081824 2.285514611336483 1.300664860723987 1.2096969926255154 +3.7321856690048043 4.438349595714515 1.3007464631329686 3.7442718825817427 2.5435180295956985 +1.116118252747381 2.1328199073661285 4.642307422071571 4.456562582875126 1.0335295834143368 +3.216391987184953 1.8259297151982143 4.987580255579088 3.980932473806426 1.716602774775325 +2.24662252708353 4.047716485971449 2.3344061739843527 2.006832974047236 1.830640229553475 +4.952495064513462 4.312649240835516 3.55242831752589 2.4401204594349273 1.283211381358899 +4.093850491610938 4.303321482519309 1.964888842518576 2.2521953958389664 0.35556033470140785 +1.1136477545599863 1.127355388058744 3.9856900284554198 3.1441457555174113 0.8416559050650673 +4.99860112332215 2.485586150571663 1.051407676481941 2.681604177100244 2.9954607131284976 +2.8183732353560864 3.05179595041538 2.366227424373022 3.27432145110524 0.9376144864987883 +4.525661605943787 4.612228768479884 3.979512549838748 3.846992326845454 0.15828923883746307 +1.043295605473062 4.479161170377031 1.4424017366889905 3.281216018173418 3.896974485659864 +2.2336650692043745 1.9234105764764338 1.6515003725375421 4.384606949705116 2.750659814010908 +2.984304385163396 3.9072384419677713 1.1864556741402628 4.660898901428864 3.5949357453035256 +1.179859932146344 4.84488312184102 2.856120883188459 4.620237295250035 4.067493293947114 +1.7485419186351883 3.86191453771633 1.2212767329893985 2.451732772497217 2.4454786632156806 +3.374454846711961 4.0378755857484 1.1652890108988325 4.8654488187395515 3.7591634282834154 +2.934465169891277 1.2995999959255715 1.3854872392905349 2.781960235654094 2.150097896984817 +1.6314100203564101 4.104094749273673 1.4792193360829606 4.252442709926014 3.7154996500941957 +1.4219013965199419 4.358187333820946 3.489361521562428 3.368821963758432 2.9387590732462603 +2.1075742555317603 4.732245131301617 1.3540772997904407 1.2888356618004368 2.625481608665756 +4.236274901010474 2.7993239833679096 3.2662586931352 1.3854310767387945 2.366926374502002 +1.0288234116121893 3.147214557750763 2.5866005960889877 4.000260619458061 2.5467657351452933 +4.023263919427777 2.2949398239283574 2.6482804066197714 1.9408626677934646 1.867496729927528 +2.6592385875249756 2.8770897681696486 4.2114309005149115 1.1494571763021888 3.0697137040247595 +3.450737425624015 2.7849059358832315 3.7191397671528437 2.4233827425785304 1.4568177097578503 +2.3710356460021766 3.1248081753229826 4.265068803810837 2.9059764760149576 1.5541251498615891 +1.3373314115565487 1.8237970520271025 3.7642263021182396 2.086507097199796 1.7468229875721812 +4.058374788583544 4.5349909706537535 4.9945452825524885 3.038985520105028 2.012803261502413 +1.1224720543535058 3.1059849305975353 1.6093493646909116 1.0741123596994129 2.0544590484451453 +1.2351517269017256 4.730586000042118 4.957930496846204 4.356495888520916 3.5467991691010496 +1.482553932267753 2.5129481816276464 4.788826963438682 1.8565630690122008 3.1080353691152056 +4.576108374351575 1.4595541713828721 4.695952268848677 3.12487936319859 3.4901547494215346 +4.424696601773192 1.6557011118930274 3.412753716468324 4.124534314330933 2.8590151525429777 +3.238009195382964 3.7075302717397935 3.742662546207339 3.528002793359688 0.5162643224510972 +3.2734737658197433 1.2832347749823643 4.553741640022519 2.056632196450793 3.1932126164451504 +1.6727672017493496 3.1667018445050816 3.7387059049252542 2.178262886701431 2.1602831133787004 +2.1242241519569554 2.1773690468280384 1.9004099937051913 1.327817411101515 0.5750536022873052 +4.296170663284309 4.2910758086788885 4.278737026702691 2.746139422548778 1.5326060726102335 +4.507702899483272 1.5747510469515529 2.8174756566319905 2.6253180468825983 2.939239887497079 +1.032581253272292 2.602119685013485 2.219811043775396 4.114866461883823 2.460627140875819 +1.2952070418024069 2.9205406169111563 4.978085128948951 2.363471926327812 3.0786216769354042 +3.355451516087096 2.141865437948936 2.9367502284326013 3.822762764270679 1.502600872724684 +4.601015354225332 2.6787752971026992 2.5146027827811785 4.600528272021563 2.836563410867023 +2.0252898283943677 2.200261665870583 2.0443496727180306 4.940397879578487 2.9013290679220565 +4.494360649041214 4.142131221289874 1.236660569250159 4.263088490193836 3.046856007500437 +2.3332564907366633 4.076609339515279 3.66392994716354 3.751487918351401 1.7455502151651352 +4.482539156677182 3.3578753299460726 3.0573347249421943 3.8230465328704506 1.360581969584421 +3.0722039340976983 3.0746612472625503 1.4556946614179305 2.9500609461627083 1.4943683051275882 +2.9227339590296952 3.7959821408681163 2.0840295571846297 1.8210162025595973 0.9119969362860936 +2.411396169797178 2.1874391543682594 4.1323052757646686 3.708073492217261 0.479717991044367 +1.9136805941728885 2.857913491628948 4.195417528636502 3.389676659390683 1.2412872806128616 +4.423017224891618 4.282507432194219 4.652366727471655 4.934552827985326 0.31523324248400175 +2.5118009077897865 1.2135347417251192 1.6967646523390552 4.2710953735524075 2.8831707719334125 +1.4149312687770306 3.932257746125323 1.6426412597308921 4.539452910571446 3.83776632092215 +1.830928909880157 4.999510448534352 2.4547011603718603 4.754551070270764 3.915254599021905 +1.839822946194913 3.8850651270668255 1.7168199143823006 2.2590720722983 2.1159047665673083 +3.0775637622105907 4.486588291165077 4.8498876626464185 1.7713662820519391 3.3856526717861586 +4.749209361059364 4.199115353729182 2.8337391482128242 3.9803726141145233 1.2717593019224673 +4.1028045801397965 3.5857291824707302 2.4505144169852127 1.1460667191218308 1.4031930598943612 +3.8558505650428456 1.0039067846329108 3.202597111627688 1.6718376499335967 3.2367897454399 +1.633442120435705 3.9058197880098176 1.746593502504644 2.958539147079845 2.575366480618703 +4.9991909414603715 3.2179694862803525 2.9966983155093403 4.036142906735622 2.0623275517296458 +1.3052829018320669 4.425669295230211 1.3208059077840635 2.0661803691673186 3.2081761690696875 +2.4255731559082916 3.934759162957901 1.3261684083109326 3.9582546223253456 3.0340600260837083 +1.1860662489950702 1.9507094900647202 2.887982807035945 1.198135783826272 1.854794395064879 +2.1993952663855834 4.236658334966284 1.6104046742184446 4.422000533936602 3.472104849941479 +1.9722768028683557 2.063020870958568 3.7163545211942774 3.1265995156321202 0.5966954436554558 +1.0110172927105436 2.6931431450837304 1.4944966476708577 2.6047466367428624 2.015490615571456 +3.4049192290675734 4.470485570633773 3.5888345267095803 3.758374250382217 1.0789695761149938 +3.9079640621900946 3.832787444161311 3.5664276684101885 4.116087589805535 0.5547770300639568 +4.289965825765138 1.8217023422014993 1.7535476941453072 1.4477205567011553 2.487137885661145 +1.2834014266386102 2.850125055796994 2.3607152671856655 1.9746686898995542 1.613584484927126 +1.530011811603472 2.997764872122974 1.1822267774438893 3.302968776658793 2.5791172276378584 +4.309624675697785 1.3704734227988693 2.6848083859091574 1.722741122563141 3.0926014141203777 +4.51308869697136 2.286802773124079 3.9672112732726217 1.6438551824463619 3.217814870296304 +4.2646986336549 4.630422014721919 2.272468325973665 3.4860825307536896 1.2675223980281152 +4.9662844205729595 1.468576778342972 2.837250611305328 4.578708772316766 3.9072541863906673 +1.872662319032683 4.311515637696457 2.504390038320751 4.507003139801322 3.1557035260269517 +1.051985766258845 4.664220655166382 3.32159670610799 1.8842411408517705 3.887702652417475 +3.5861140853092723 3.5055340634412304 4.186698423504067 3.7046830007546396 0.48870441750874677 +2.736627197748114 3.7313864723818937 4.1132767320209425 3.678692278685628 1.0855457897070384 +4.3168181501935265 3.2327840411589563 4.283825386658691 4.909339633733117 1.2515582378952488 +4.522225705440475 1.6597326835992456 2.969948401542101 4.085333972541875 3.072124878985915 +4.976619962555961 1.94441154036797 3.8743600635421327 1.5845727067343 3.7996597288421476 +2.8322551928474127 4.231546005098199 4.072460244036131 2.4386359153017025 2.1511384693724325 +1.98711517472844 1.016748400770417 2.203132913814701 3.1555604133573736 1.3596800424683773 +3.0417435258299252 4.429763079979935 2.7503805671428423 2.9018428909225036 1.3962589724787902 +3.779669485151712 3.024730382573874 3.6388623824420376 2.25943884022437 1.5724955826409717 +4.533336629418988 4.061013249010347 2.008249956224333 4.281594240792405 2.321892248115524 +2.367269990593858 2.3671410351752824 2.756651516345277 4.296603278306641 1.5399517673607215 +2.119144017223945 2.8929721936103814 3.6746339206235383 4.69160070711135 1.2779012056449843 +1.506912647561745 1.1514340291132705 2.9151948795005733 1.6824280938769771 1.2829961012843218 +3.048443698200018 2.1828235667514475 1.3343011307039685 2.4794926452934147 1.4355353764560144 +1.582064656176971 4.445022256378126 3.9929100210586737 3.60094658951862 2.889664608949317 +2.5305663704894026 3.649578008368125 2.4096581792793463 3.4004586070821285 1.4946145099798132 +4.268889924224916 2.3363105982144057 3.3292672807389443 3.400478708071076 1.933890875594049 +1.8125267612807603 2.525047755863126 4.115224902672679 2.270657160305543 1.9774014068726757 +1.9404373778342356 2.8785245324289255 1.5056740597743028 3.48261334744144 2.1882176438228007 +4.312421676976252 2.935283095999472 3.729743101644007 2.7088255396283425 1.7142879978716372 +2.727988566996564 1.1152661158639994 1.551768067861727 1.6457046664988009 1.6154559074609647 +2.339624597757345 1.9046767061846683 2.9221826507226716 1.487159565995578 1.499490220736094 +4.6366957208257364 3.667374996323724 1.9280571317322734 3.5978387063004025 1.9307390226844037 +1.8466948924075242 4.371025780391099 1.7668072173244216 2.91473728762418 2.773083099787374 +4.291973849981489 1.7774227995450262 3.591531274115668 3.7108027370307455 2.5173781335184873 +3.471439450348358 2.951735031692775 1.7181540132737654 2.514969590758151 0.9513189513995359 +3.4508319294271796 3.1987510454038763 2.6976178801837905 2.684136113557971 0.2524411418951419 +3.71414312623715 3.5490436591827015 2.671398682002528 1.9737633239347758 0.7169051030980209 +4.193324056106855 2.6300696611226115 4.470487403407688 3.786700971548121 1.7062614652604655 +4.583813497531155 2.8344911365463075 2.432745511645827 3.4033782902513887 2.000564098834415 +4.241360827202961 4.187682070065174 1.0898826596071731 4.886274111763612 3.796770926323358 +3.384301116145419 2.1010600975022835 4.298608368544183 2.162770884765555 2.491688036059509 +4.581706034873866 2.700054806992704 1.4900324042160018 4.683487866962045 3.706584564788618 +2.107151476051015 1.2377719609688866 4.822634777528663 1.2788350042600607 3.6488816881700936 +1.755584536594955 1.851048877629669 2.181365706162076 2.606343855931976 0.4355684426023534 +4.3551606768795015 4.868885520987828 4.374520391790131 2.5104950351698845 1.9335210745107907 +3.5468745776896964 1.8946838452449852 4.459821482023706 2.811562277256142 2.333772187356168 +3.853096443008103 2.2978462313793937 4.6135516565505075 1.14730549939895 3.7991664405154832 +2.0738112219296982 1.9722424208460883 2.1269148034474616 2.5824423201945166 0.46671355226444877 +4.970305469200348 3.66975600955131 1.918881528583376 2.5078359533415693 1.4276891158216687 +2.0423730783581497 2.2661590363647064 4.5171615273791925 4.067586344621165 0.502193189871016 +3.374111821779079 2.6022527415277708 3.2898725002369007 2.1922473147868615 1.3418448075320144 +4.315178888233112 1.6869302643124664 3.433997475693142 4.6805995235949736 2.90890142407298 +3.5365660667031493 3.9343898573176097 1.289025628288195 4.986466654541914 3.7187812400036404 +4.216590194413323 1.0879431892584734 3.079656842986838 3.48306380932246 3.154547394374115 +1.617127698287117 4.800782499068187 3.7351985670919436 2.3127283823177227 3.4869871403703168 +4.506073524297735 4.461705886248193 3.0263892751311996 3.9294644085398884 0.9041643566781519 +1.3748543247116123 1.3545980880737027 3.0887618302943056 3.7275461025796064 0.6391053603607094 +2.96483814069615 3.0803237230275284 4.900263385151785 2.5823715093766055 2.320767042921585 +3.4423992841080118 1.0410366025153968 3.072714181253612 1.655516812899367 2.7883671044924974 +1.5180203898060518 3.0975276132834177 4.288482782567554 3.4666077319539186 1.7805397125136926 +3.880631124246102 4.247687781610795 3.257735250693345 4.368776550839953 1.170103995526554 +4.108281996487605 3.711353364777095 2.6485903220642277 2.5890719084998373 0.4013661423498494 +4.801675440742093 2.5532448409934614 4.704716396621455 4.270135309777569 2.2900438604813673 +3.0970948104105043 4.424587097862783 3.0358699034544445 3.651974425107765 1.463496004383664 +3.535465253927545 1.139028605328384 4.737940416866211 3.9038638591219663 2.5374381401184283 +1.2668819113091412 3.5197574797794458 2.892302688322349 4.122175989004334 2.566717098306862 +1.7972663736925196 1.7936630611961122 1.7894436691988775 2.026199725501705 0.2367834750505499 +1.9454290316816594 4.405838560495545 2.062912435867112 3.5450743488661725 2.872354258412984 +4.4368618635481365 2.1168922873182527 1.0121992111380838 1.9353747043442562 2.4969004437279287 +2.210833071522505 3.6771999338982755 3.841250352814288 4.889168320415193 1.8023217919934755 +4.67910000432261 2.6910553469223886 2.8911903436106714 2.9562287971013697 1.9891082324122098 +3.089287961653917 2.708543027034527 4.570175017410685 3.892852670610509 0.7770021021292167 +3.673390010171717 4.629422493291361 4.917195039445259 4.8675789430217655 0.9573191034363707 +4.327416088128828 2.5613898645163675 2.7538332254767446 4.532607997828613 2.5065690322116265 +3.17550002161794 1.094052693385989 1.813319080209935 1.8172204674667678 2.081450984536137 +4.6800341747323895 2.928654359249176 4.667483523898676 1.7628286045835395 3.3918065184181185 +1.6753490920923366 3.538181297301019 1.3372737996916544 2.9141731105744415 2.4406464843203435 +4.47817179167949 4.454926362002349 3.2115009746679744 3.5354782253416546 0.3248101121500861 +3.369984838335635 2.3083689996083496 4.119351232041138 3.6032427389119364 1.180422028647692 +4.805170891261314 1.4337729886828319 4.188303470789823 3.393075338274965 3.463915645660797 +4.532248322519477 1.1476434292187458 3.7150442809222097 1.783654661158689 3.8968982726118897 +4.1707174116529115 2.8776131115571304 2.1165829482204277 2.58217516570241 1.374370708326538 +4.611556240437405 4.148151639005793 2.7639145354444032 2.1316506611739126 0.7839014168475029 +4.990342533037719 3.331432393914757 1.608783129936981 1.817064687433116 1.6719342262415648 +3.8889387458625913 1.675718482735257 2.966253276050981 1.4594122522898147 2.6774827364535945 +4.071216042932855 2.7588208256252282 3.6048278343520432 1.7362873183500014 2.2833801405707965 +4.302411585942215 3.2740690048366745 3.6905118497010982 3.7010739603632774 1.0283968214149852 +3.0566854322691 1.8845286447140155 3.0675716890563054 4.443961224462483 1.8078715905138532 +2.554290385691813 1.127977763324239 2.6804986050165858 3.4498011797367876 1.620553654834112 +2.996957097339641 4.8182340417631195 1.3195448040333995 3.8679279554372323 3.1323004955858647 +1.535949678443044 2.3351119990252536 4.275603868529185 3.5656678097370667 1.0689572593006833 +1.6445876793698644 3.0037480926027254 4.90190519821072 4.050927425097064 1.6035835491900003 +2.8028143365336113 4.449669778892694 1.6440146821362651 3.4208899407990225 2.422688286361985 +4.699505868601417 1.0238994023522863 1.5249915057646133 2.1319192701050484 3.725378397674483 +4.8564593033732475 3.225023008122609 1.1689707689627613 1.9272284343958628 1.7990383744237324 +2.460135130418445 3.9425534779163147 4.672716901519037 2.4086541483607573 2.7062047792502626 +1.9947462766424935 1.1742947631618148 2.6158712503515718 4.0504677217945275 1.6526365970319414 +4.359713674870619 1.7663305220454903 4.360651891801919 3.0824225158335157 2.8912811200133723 +4.333804716323018 3.894825369300612 4.452758038706427 4.314959516998698 0.46009922809873643 +3.3954211545418573 2.5322544620657754 1.5725028115084152 1.796540066753118 0.8917675878488066 +3.2020803415774166 2.8438985739201392 2.5632216546968642 2.3146574016383 0.43597977771985463 +4.785531251046214 4.328534228759066 1.917924359083314 2.4770800267950035 0.7221504961664328 +4.752288465517925 2.9195027147730377 4.823369561281373 2.7449764198270543 2.771068685286933 +1.097400656854791 4.727244544045526 4.239167873591629 1.623918181289481 4.4738459515792925 +1.147749790106281 4.591191474514543 1.8478652966475178 4.211506619194818 4.176612375547144 +4.18528941622931 1.9979671757761626 2.6456088064551255 4.607016102040833 2.9379409733277173 +4.327967837602937 2.4846529340121117 3.6434944963592772 4.659170993928198 2.1046160175941653 +4.714328032505163 1.8096914760175404 3.7047043178101013 2.755589730441196 3.0557702834540295 +4.207137927339913 3.4753026004923657 1.6501402706776966 3.246626984037755 1.7562325505345973 +3.97673771653108 1.0716149922111033 1.912577019080142 4.908910509112133 4.173458089743757 +4.7891988837852715 1.4028427574566535 1.004659844150014 3.6175762852859052 4.277235104910836 +2.575591794876292 4.068865421303995 1.7861243859388019 3.812727246929265 2.5173369420002705 +1.8107058730121337 1.2747844886700097 1.0695251990522845 2.607362772655987 1.628544175938283 +2.708359525323595 1.7001682212201659 1.8505549577624993 4.305954728646839 2.6543243472734526 +1.8753315722698698 4.173449185729345 2.094886095156215 4.011895525187937 2.9927027450321924 +2.558783344035701 2.21631281610154 3.565748672202797 2.697430774537314 0.9334141813309391 +1.5516058624469835 3.0610656172943354 1.7452079210488196 3.3905969188056737 2.2328846153447186 +2.3326211995544277 1.0758589839033696 2.8815156673182525 1.3009038451907076 2.019352618771054 +2.0305441964131403 3.9057475825129306 3.362031909340549 1.340192962561641 2.7575751061307767 +1.8849399067794796 3.7578115767972204 4.203720540437248 4.197917727225025 1.8728806595712972 +4.077663275574983 2.9554592915580686 3.992116826762583 4.046956962557809 1.1235431554851256 +4.9263176829581905 1.755602233032025 3.708721377186171 2.3928886191278655 3.432907268130005 +3.6525726932908915 3.3929795046728453 4.609928834335109 2.409251874256772 2.215934950804403 +3.1755497437805467 2.1365787834601644 1.7204506704616551 4.12196067461113 2.616622050740051 +4.871927755194463 3.0822692740819133 4.887586150418576 2.0137166432849476 3.385558066707845 +4.44961777020018 2.199966640797382 2.907603529878066 1.0396661202277038 2.9240588862734262 +3.564985802121292 2.0495583022122195 3.1847890973515156 2.8752859153106587 1.5467102919338445 +2.7327926801285845 1.722864174679378 1.6630485837728628 1.2966464500612558 1.0743398483288638 +1.331481163279693 4.442333609479123 2.7688949367779228 2.784485091323437 3.1108915112783553 +1.3659482923531967 4.739058667674452 4.137978148411417 1.0304875858998512 4.5863243670938 +1.3447132501872483 4.033018041610298 2.745781761682166 4.339839612012516 3.1253804699248926 +4.6539131437235195 1.920234802752689 2.4122648968105005 2.17758017171803 2.7437336226544953 +2.5546990898884903 4.571297520699153 3.0156680756085503 3.823359351381096 2.1723338666298764 +1.8196937867006509 1.2320033726960031 4.24471677080644 1.6710135610146022 2.6399485288175155 +1.5042598604567137 2.9900137534094866 4.931880412966935 2.0519069868217072 3.240634438767662 +1.2048936960720393 1.189829788942292 3.598718210399145 1.329471829266617 2.2692963798457635 +3.1259562132185 1.2746778554301343 3.791133873914209 3.9448334158534752 1.857647734961591 +1.3708733965058943 3.094687188154084 1.6347243969318694 1.1274054185593618 1.7969158394575502 +4.002705798000234 3.792054491708489 1.2735893549761577 3.595236440035484 2.331184068323839 +3.327008651991488 3.7912303549389925 4.168549609157568 4.504425878949628 0.5729874851136891 +3.423274225042769 2.2259817860964533 2.8517280488866836 2.3301784788451947 1.3059567903910447 +3.3668055928854295 3.979411005444453 2.6588936633960794 2.913348968365866 0.6633497521849834 +1.8841553362224466 4.585891479650307 4.010533778186913 2.758324720072574 2.9778189525100496 +2.714808894280481 2.7110009448829855 4.949996660471477 1.8715333165918309 3.078465699027564 +4.044590921482818 4.914397942257107 1.6280830322860331 4.011669629848259 2.5373311414686324 +4.5051864362422265 2.4473052552110026 3.3462182160848006 4.29479379593519 2.2659811530396645 +3.8711779130133666 4.696400108206543 4.693805972520085 2.0788635014960803 2.7420641491775086 +3.102209560877902 2.0645039581106275 4.586606103990802 3.410533991609802 1.5684318702241744 +3.2229748892072108 3.87923261398558 3.3202238636342005 2.049054822646774 1.430575035465171 +2.893857831764816 2.2807092716295103 2.840128562918942 4.544419786881889 1.8112315514238144 +2.38033426665776 4.129367859880199 1.03750355288282 4.627682639237587 3.9935578601442288 +3.4713960581658507 3.077675669654391 1.0247391516983004 3.6337748118908104 2.638575907660377 +2.1166994235591607 4.855012833666583 1.6617946842945304 3.696913011836356 3.4117542319268512 +1.2659058373995604 3.261692087225762 3.1889736701778575 4.734473533357917 2.5242291064966587 +4.201186900229144 2.95849615411568 4.654400147813458 3.866607960269957 1.4713588349653575 +4.3755700761325755 1.755359042417978 1.7498874120536279 2.0117300376376606 2.633261745776986 +2.5155266556142433 1.8812837966837952 1.198638176291671 4.456360871360057 3.318888543182476 +4.138529154684484 1.8738716649832816 2.7035962994060134 2.044795041811648 2.358536122824425 +3.1438806473442775 3.368767161155068 3.566697034272629 2.506603461290404 1.083684607056957 +2.397626290554573 2.062308604999566 4.995240057565132 3.0846536585124 1.939788220010435 +3.1194635876840153 1.6148277050075817 1.0046585169985414 3.9944399422259753 3.3470467744076235 +2.1383655686316128 1.4592717658768883 2.191109877972468 1.3085343271104772 1.1136013631094472 +3.521987305306084 4.076230212704643 1.0096773669421926 3.714925583419176 2.761440405504618 +3.447493065656975 2.561837156850568 1.5732630692943443 1.5280114609826079 0.8868111957223488 +3.4042268846733266 2.6370604130497135 3.593317163110688 3.0456896619279417 0.9425710982387921 +3.8768864844360653 1.643605476509773 3.5567193483363413 1.9747412544112684 2.736822747278874 +1.3825005756829594 4.643740770257667 2.6435314295715857 4.418583400919632 3.713017251198311 +4.786888233062631 1.280232357780282 1.1018184983798966 2.2959499924249362 3.7044008223628353 +2.083630049061042 2.0275065479571803 3.3441847013133494 1.829138874944448 1.5160849921340105 +4.150666393974097 2.2099052656799807 1.3936298849843092 1.9056750914042477 2.0071731491117277 +3.876654004510048 2.163276294786889 4.1180396770233845 1.1149793439289963 3.4574607069901973 +4.8787804718017895 1.2678244769115814 3.894812757321483 4.819926499411814 3.7275781189450488 +2.0097932796326674 1.564863307315778 3.890287336084004 2.020622204655918 1.921876786878886 +3.774226290868801 3.8838714240379795 3.4097218233385194 3.3521350891112496 0.12384783884529055 +3.1712286153238662 1.1325429862469827 3.918520248554428 1.8445681483599956 2.908180944870093 +4.641678773146719 1.909856990266512 3.4624502194779008 2.1814602835857184 3.017247995985058 +4.627252347209302 1.5626285096965562 2.0589934827034395 4.495431689007615 3.915118184498401 +1.250147027496841 1.1080201546127761 4.3482457264392975 2.5522446823618896 1.8016158853437496 +1.7282242269087842 4.452907509348219 3.55806530954104 4.088748673348734 2.7758825303364665 +4.058273767727549 3.5306645350738766 2.2686307163446675 4.359539366902151 2.156448582126992 +2.2223597088029763 2.075708984745585 3.455056115679522 1.4166484810609576 2.0436761288760525 +3.183249491586603 4.981274280646593 3.1995175116617527 2.2792829789208184 2.0198328488573374 +4.542726726693758 1.2009981078209004 3.9458717978937945 4.402720391174164 3.3728120017836964 +2.3722009805013333 4.605303615091278 4.525638918523159 3.797724674484392 2.34874573406469 +4.854875706655619 3.387853006971918 4.431314460339431 2.0648373843373276 2.7843076971898633 +1.201101175435265 4.630489349279252 4.989904781874704 2.409904077849539 4.2915156855907375 +2.9756607743548162 4.047627755474827 3.542411160787315 2.188429589941044 1.7269566592137986 +2.318220240010149 2.1843051491426095 4.497751213684052 2.229659887711456 2.2720412660236144 +3.4165835265755202 3.7634464853580267 3.4387065104876893 3.799888228055492 0.5007655591996946 +4.711383080526073 3.304276570380881 3.838790527909442 3.648864846090274 1.4198663653694512 +3.9654665246080896 3.667559114295703 4.703790727283044 4.571617751945748 0.32591182937804847 +3.318511574783561 4.738599001422461 4.62617894305971 1.976601742449735 3.006144980084973 +4.953217480279796 3.9835329956630052 3.3282742928531492 1.8733645012905558 1.7484423071097428 +3.1695291355362727 2.5913761673737565 4.899885013380301 1.6807230982048496 3.2706672546609212 +1.4386595935830981 2.125290587671075 1.8761992758406474 3.6514361132697144 1.9033990519613586 +2.434206553207242 1.3800243749706063 3.397472538436944 2.9827840069570932 1.132813595898572 +2.978023664385026 2.858725782953029 3.1714928769339825 2.600885431325947 0.5829449729584176 +1.083181151207285 2.789355372391093 2.5938518656780896 4.212779372622549 2.352011212935342 +2.256205100001105 1.7312612029469903 2.737582903103329 1.5557844854805318 1.2931409803072937 +1.5612021052253025 3.627264022512264 3.8509679779664143 4.3468685725647545 2.12474215983645 +2.3900195670026174 1.6129737795245798 3.3481008271862267 2.0448742720662536 1.5173001053869455 +4.138654190656434 2.800478861096958 2.4547978017124112 3.862871199743498 1.9425199887991942 +4.219468591923656 2.7081931424666683 1.3058447098442199 4.730387231923852 3.7431864727345534 +2.712617934394814 2.10777802493915 3.9486553716611246 2.433233663627066 1.6316661022559729 +1.4910975689904764 4.514504915309515 2.961585530441184 2.861951740829012 3.025048573793223 +1.7871819789646701 3.725250750019226 1.937159249106867 4.190996417192343 2.9725229253246264 +3.946372474118915 4.755764568007807 3.472585701532917 3.5894118700649433 0.8177798697104977 +3.4652640288316903 2.017750448904047 1.470859584333545 1.4284747159517854 1.4481339859083069 +3.432229385098861 1.005751747124045 3.0992887688838104 2.978055687874396 2.429504309015088 +4.697369988133456 2.519946988032125 1.656604185947626 1.9372062960148027 2.1954289935100233 +3.8353175999720563 2.000925899065589 2.328180155560615 1.6151890766661525 1.9680826179146067 +1.9913928596424118 2.806036973535743 3.388643798934608 4.093084022678854 1.076977744027189 +4.910153260080101 4.388845056509255 2.4377665778059345 3.181286489432154 0.9080661331064624 +3.58856825275269 3.982263073682365 4.077332892733555 3.3192208216591967 0.8542420759571034 +3.35594433298229 3.036260678758431 2.1388199602455846 3.9153962176405486 1.8051096468407166 +2.988982173523702 2.341978868662677 1.355632604264743 1.571025219135401 0.6819144044833693 +2.9659356055451256 3.690977865875387 2.2016178738945973 2.3426028870956777 0.7386224023221362 +4.660654888055654 1.050906914193281 3.5493028415600705 1.3811052651323066 4.210862282862115 +3.2802959304765436 2.6302902496322167 3.781523162229415 2.8423964763927985 1.1421323553688356 +3.778911400726147 1.0721310252019567 2.203200785809947 1.9168167974026193 2.721888276571793 +3.8303410625500023 4.733625096571309 4.659959752674952 3.0161639465043595 1.8756296805344692 +1.3032648362029438 1.3945797211284416 3.16764576653785 2.332226641556188 0.8403948611183212 +2.092404672678796 2.255964526326043 3.7818945753716795 1.9465010083679855 1.842666918225769 +2.3548267687929796 4.201858237535425 1.411619402425329 2.718916382408422 2.2628633720129434 +1.3814234413563184 2.484989830704635 1.2605871982945378 1.527813324895003 1.135459633116549 +3.0168925810648033 4.447797889447747 1.6868538482399154 4.7417644628068505 3.373420943871698 +2.14148307685577 1.9133052847941374 1.4518301094716755 1.3709343418099174 0.24209343240928055 +4.9266051014932515 4.671634166895905 4.8227161213928955 2.710652442635475 2.127398213926056 +3.558172181200039 4.812903700086171 1.084221613328768 2.2534441943434045 1.71506053200487 +3.8401847431939165 4.150859538440178 4.692146766328127 4.357862159772962 0.45636063215515044 +4.91295340517885 2.241139827134698 3.137079829172608 1.7847671046693452 2.9945513020608834 +4.161409723569829 3.064702083708011 3.2617901939949423 3.6797277740942342 1.1736436717294272 +4.160294794305086 3.014859011280778 1.800488542149985 3.8555689066349266 2.3527384974799195 +2.9931379079828226 2.6178953605512487 1.4912871888576666 4.111382501333848 2.6468295026054465 +4.391546188383247 3.8912276082258788 3.409744036589316 1.5286970638711992 1.9464471210959409 +3.3369176956819953 4.342574865292599 1.4216301098786799 2.952570890119551 1.831700307199226 +4.884621120783264 2.5149980856727323 2.553423043852785 4.829891955606252 3.285943401019936 +4.002697487471319 1.7151355886921085 4.313017401960687 1.6479753949739697 3.512177150963507 +1.309486653797034 4.6739589621509685 4.908551123241427 3.794495731843575 3.544120952899756 +2.874856442329924 1.4425288156972083 4.129146968490899 3.1245228924237023 1.7495233534392094 +2.445092919724821 2.0140473218441968 4.18423451594622 2.8037122706455815 1.446251007682339 +1.9888448922121076 1.0357177457076414 4.433111042571445 4.806765200131572 1.023752307379922 +1.0509951697519107 3.2642382510671024 2.84297165519707 4.179923442773195 2.5857078371874422 +2.013878801002842 4.193202477810075 1.0364048442951068 2.7835907109695093 2.793225759046229 +1.1806621823471106 3.9603008117893976 3.8407439869055247 4.536844397066854 2.8654749503903476 +4.089521649253058 4.865173511573212 1.495434030620888 4.899294033272073 3.4911171176529225 +4.234776659484812 2.542635596271301 2.9799058739082143 2.205221590443206 1.8610419438747328 +4.942317058375835 4.668309387072766 4.933215659813872 1.5376063309646049 3.406646873114544 +1.3076414548482518 2.419291922772187 3.5476174528121893 1.6767354541807138 2.17622751927247 +2.972905100576081 1.9866246905406513 3.886545344575654 1.8905781548922524 2.2263499431833065 +4.599774015720132 4.6205087945814896 1.0904499946210988 3.7503920202274834 2.660022840248073 +2.7327593058948 4.879814493123076 1.558755683211262 2.8747697035340134 2.518280937204962 +3.0703143240162127 2.8455886224033273 4.501565062641274 3.5323668021687116 0.9949105030445925 +3.7853366531291344 1.7322674465977368 2.385740596521177 4.245112173940136 2.769901772576228 +3.4840842411660504 3.9378442516452608 2.533022243014359 2.2622104548251287 0.5284289656447134 +3.8547255111727377 3.3540742322238155 3.73378071694422 4.7970967901708 1.1752841250928154 +1.9029271925352162 1.6246591372286403 1.7126725346835316 2.2967358010055117 0.6469644578110948 +3.3887162291377697 2.5627821328937053 3.6910628340231733 2.0222598605368365 1.862007114824038 +4.610933783261322 3.3043279358047606 1.6582901285512688 2.5307913831804862 1.5711388480771638 +1.5365319898443457 1.638523265953682 3.678439510571548 1.8150737586063261 1.866154909432582 +1.946867726050478 3.0220692472481443 3.860328209684363 1.6791199243376158 2.4318157609595086 +4.4489633724461335 4.946365822903374 4.230457074393954 4.3326473547228606 0.507791346041431 +1.834910740826127 3.400101459004905 1.8337128712996429 3.024088971788964 1.966422448226515 +2.7097903379905333 2.6908151238516544 1.0310511091473389 1.1556067000201091 0.12599267426831304 +1.183590174587343 1.0647348339448248 3.6681834259737305 3.0477204562105267 0.6317443223699153 +4.9507767903377005 2.8690241270131436 4.051288909319496 4.98229251332755 2.280452117878135 +2.806228897288131 1.5991075174957246 2.836555168328768 4.15206482048494 1.78541526555252 +1.9916280196749083 4.174135299932628 2.347380087112192 1.5328967059767904 2.329532400831485 +1.8685431186882884 3.2724252988839866 4.2416685522431585 3.8663767617218747 1.4531789648572877 +4.830648650712254 3.5003691267544226 4.6733142721131316 3.2430814824593024 1.9532561133815627 +4.646669051685531 3.1271435232372427 2.4442423686254156 3.3234807577323067 1.7555677077473626 +1.6918489387083042 4.377192611614232 1.752231280796396 3.5466389801740426 3.2297011677865304 +4.443867124329604 1.3963542684415953 2.7325787591880486 3.9229181147744794 3.2717338504622604 +2.467474776685554 4.300644556181181 3.9215085037421473 4.5580339116288755 1.940534986889289 +2.208762612306786 2.1442797161954745 4.76285891061917 3.549008101920778 1.215562351205664 +1.0806505137090738 2.5427292075276493 3.056523929298786 2.1110509981437247 1.7411470846729677 +1.2434697650801683 3.2209873929512165 4.205371054709241 2.615215050064132 2.537552381262234 +4.497818238214825 3.1890826212137626 1.3599364687014188 3.93834337229155 2.8915343808587854 +3.097955755819243 1.2917220799319433 2.26538217234227 4.3276066437499585 2.741395604866628 +2.3062784359239266 4.151257875147179 4.855468073554803 2.084828805467694 3.3287221399544333 +3.732189625558849 1.4607978755220072 4.075427159776602 4.990840879956819 2.4489186922455413 +1.74306218409509 2.8648892464834983 2.176522024210586 2.247835575368691 1.124091446674062 +3.285192764460825 4.496066394154617 1.3470043691702855 2.201743806974031 1.482158714046806 +2.7579993455580722 1.6135858508479104 2.3410755958236087 3.899066914236286 1.9331371382092886 +3.985702317377457 2.2832760128504406 4.6473241997536885 1.4026538036516043 3.6641699335165625 +4.091056615668487 3.735874287778937 2.6720754927474943 4.327408061915611 1.6930092736289888 +3.1598151172493605 2.109189601590659 1.7789465467899168 2.765180430537181 1.440996616097458 +1.9298310558040428 2.8764657686543362 1.0176862824246378 2.451918810540169 1.7184703152157808 +2.100174650164798 1.0573110567309842 4.4721171192068025 4.837153296317215 1.104905373825773 +1.5117024584260252 1.8637776221808857 2.820061887726347 2.484731567981759 0.4862132703588205 +4.851834385787385 1.9952707503413292 1.7282386805366525 1.456344960224798 2.8694741675954862 +4.853375710574317 4.804045647975084 1.2509268285543165 2.007529295674348 0.7582089081039359 +1.0725010881858181 4.20163854705287 3.5925333904223984 1.87445185502325 3.5697766595074887 +2.8174638870967312 2.3806968824159687 1.8488032776003727 2.210855315781987 0.5673156922995046 +1.4810827791402676 1.4913027355146848 4.777485543771235 1.8403053530922238 2.937197970860236 +4.670551442107158 2.908361811340189 2.497248804588537 1.3864584364794972 2.0830668584244822 +1.6581733817931976 1.712902140990563 4.2207244033545575 4.98423975122572 0.7654743127748351 +4.764815236740931 3.4377222152813602 1.2741539053637068 3.092883089809831 2.2514332621605195 +3.4460122924899337 1.370099223630676 2.2028109370836804 3.9747628645847346 2.7293275184256216 +3.265685647897136 1.505834626159269 2.0591004632725234 1.850274626882014 1.7721974632235566 +3.6791610303101496 3.538263787217268 4.230389333195603 2.3662727496947373 1.8694337832600854 +2.599720843835902 2.9794763602501932 1.6752008599375028 2.408686148390933 0.8259630261850085 +1.2377562549671648 2.351825621221335 3.6187845850601716 1.1163258026698708 2.739242689209614 +2.242641079131573 1.4987607206074283 2.39297207615531 2.7958474199845633 0.8459707621800824 +1.8379267906700023 1.5843404369737564 1.8979359002693594 3.4761743406653935 1.5984813460045957 +3.458014712020509 3.49011938573603 3.9407079532281215 3.6799637209946945 0.26271327472622963 +4.407695076380335 1.4231848432830776 1.281443457718845 3.2413207449203396 3.570493006904024 +1.8518406176666282 2.4477409308419 2.324455220238035 2.7232457194277053 0.7170293198233484 +1.6832620161711738 1.7189051774504827 2.5569240329477108 3.120087605937456 0.5642903905690394 +1.5698273435050574 2.877672081952683 4.498320384902349 3.729609540945352 1.51702808856732 +3.743617455113678 1.1841275778820237 4.5124032014599145 4.608569451383435 2.561295839858344 +3.3181548737948305 4.376195485195874 1.436685390737538 1.554224940754922 1.0645494263735162 +2.9787290625247094 3.42754178343034 2.620812581954721 2.257402402515356 0.5774944302474847 +3.712684781733422 3.562365552863199 2.011857029681013 3.4115513783924665 1.4077429241104065 +2.299560479379113 4.894737469960793 1.4378306589275813 3.740466307678244 3.469448737673172 +1.8156608186056502 4.5646757518267815 4.299627659668093 1.3823572883983584 4.0084347970449805 +2.334020789092389 3.2103956431214473 3.0676844095169953 4.666477098405336 1.8232309088037268 +2.842673792690851 1.7446613399806377 3.655998904445672 4.989133520861549 1.7271014017112625 +1.919498329840252 1.706069640877928 1.1728349361797075 4.945039644662591 3.7782377066527477 +1.0797230230189028 3.0057998587782824 2.1808540386435937 1.5855101914090914 2.0159876670478027 +2.4591838376686983 3.8908807798403378 3.360869678368829 4.143875584848665 1.6318254759029631 +3.849106818810726 3.5374952445301067 1.8358288832275123 2.5125477138276837 0.7450168782749216 +3.8668246783541282 4.88582782335749 2.093768420554358 2.955456077445748 1.3344935472177135 +4.788693049462082 3.7852244774917456 4.599742795413205 2.4500973701714663 2.372324730974855 +2.2414141365671956 2.4242225421742805 3.8108640044276716 3.4828941997856466 0.37547717096720074 +3.35501296380568 3.5968127079967123 2.766706866457068 4.721261149346833 1.9694541276845143 +2.2047462392023354 1.191611888111404 1.8292064710395723 1.1158716835811067 1.2390672832251108 +4.292029773942164 3.2441138829340646 2.1675946791267617 2.3167824071126137 1.058482259090288 +3.467008518958897 2.431450986311765 3.5504694806789376 3.4918247665221136 1.0372167593713242 +2.7163264482275484 2.0302409534720653 3.7275410075167716 4.41715187041142 0.9727674173902914 +4.085713175242002 2.9683734726660576 2.5755917772145716 3.27746551304832 1.3194979166356133 +4.49902995545601 3.859905007312882 1.9834307284971198 4.113132684837037 2.2235357254105512 +3.778032143986687 4.375591128548258 3.231121087665589 2.7380665975003446 0.7747125081618117 +2.750598091374678 4.777582623088864 1.2337627710012722 3.9295766605728937 3.3728443217877477 +2.686961963416978 3.589919385888513 2.957524999361368 2.2221900774836323 1.164495407517511 +4.551297495354617 2.972277581914709 2.6618795691936454 3.2536444492722953 1.6862649733462036 +4.145503227268803 2.631608242383366 3.4714655319336787 3.0184453003777936 1.5802231979882537 +2.962438784352007 4.944418930265513 3.941071419170399 2.349060199355096 2.5421929554644613 +2.1601719406110518 4.598564101465559 3.0154105612933733 2.3955555736608063 2.515944461988317 +2.2535019442306674 3.7940923333436327 1.712289899106393 1.3618121747741383 1.5799536013061757 +3.959197059180989 3.4564551220826916 4.337072611143968 3.464172867114206 1.0073248822721363 +4.117471885669801 1.7560071089111315 4.728605104467306 3.246150804945259 2.7882228465535666 +4.76505976472844 4.191773768129227 1.8466129186230789 1.2658855961402091 0.8160276079734528 +2.5236384451792175 1.2272512443351062 1.8214787282279548 3.143502580420833 1.851584953567977 +3.0032820379133147 3.8456530306876235 3.272386894317109 1.679382562284831 1.8020132328429719 +4.521585108244743 4.778565980274532 2.765883762954934 2.9169182075298776 0.29807813075979367 +4.169733917103754 3.3071683589968526 1.9780750554372726 3.004584804898268 1.3407988692457737 +3.9399285986044776 2.693022355012174 1.1057713514459797 3.0317681738901543 2.2943929350428465 +4.115697579663119 3.48116120658217 1.1324152630722577 2.447546760638585 1.4602079525375062 +1.268178921769025 2.043335393557126 1.5451106976544575 1.1213722577514003 0.883414863587009 +1.4331663036815807 2.3245108815620363 2.3171277647585007 1.7980446579596334 1.03147584958682 +4.343698165493567 1.900003407382215 3.9838669178800505 3.434647103253022 2.5046529651031193 +2.512766180459128 2.4027824620357805 4.163058035084413 2.0230675353288063 2.1428149143970594 +3.231754559113304 4.267395662010037 4.920884193980345 1.3115683752302627 3.754958478264272 +4.699201764496088 4.438489020900742 3.310315688138237 3.444159872391215 0.29306211002338334 +3.92085171632293 2.521379405508864 1.7475537061106747 2.6871107754074357 1.6856127180348341 +2.9702068498975387 3.880738713909114 1.9375991458169954 3.1147859642502134 1.4882328718561877 +1.1177940777076127 4.076537724567968 2.826477899711725 1.0526009007753485 3.4497541325711953 +2.7804774116219018 4.108077551720159 2.197923295199522 2.373403273910228 1.3391472491541856 +2.172208880185608 1.3981181872878614 3.0088864578289214 4.699213793401842 1.8591457452862492 +4.794182361808165 3.5520672273553826 4.631297429277185 2.4628111826758086 2.499036336057557 +1.6878369985513357 1.7251506846714562 4.190673812257975 4.445985045620379 0.258023520348248 +1.925408688098111 1.5649495610625852 4.56305998899783 2.3004127275153916 2.2911794805639283 +3.528950828795743 1.394293244713734 3.5159570505865845 4.9724844826844805 2.5842281558973332 +4.1422468990709245 4.314638429784237 1.306171965563462 3.0582694440477174 1.7605579837007823 +2.837763976549155 2.5906705428035766 4.710164127104562 1.8954548050885958 2.8255342384129345 +1.3149681798645827 1.411700918497199 2.9548305083376145 4.123917313111065 1.1730819152210816 +1.3975039164559377 2.117591568506736 1.345729785778237 2.6509617879947007 1.4906900436529487 +3.043130970044014 4.4161171078736885 2.8927253476337094 2.503298592293816 1.427145448945903 +2.1353909671200575 1.6973881611455712 2.765598304890801 3.9518821645471793 1.2645615262701762 +4.180543256729325 2.0926968363955423 4.654667324893994 4.5283761408665315 2.0916625296791183 +3.872173304848869 2.88521675571303 1.3850608602054297 3.6860133301157467 2.503690375958759 +3.3056978463362707 1.079139038507218 3.2214584881667054 1.3697357125061327 2.8959353174097706 +3.1977346646382245 1.3886362375024515 4.991912289926789 2.215230673036384 3.3140304646521046 +2.5322499322502443 1.5705443713685932 1.030722205068415 3.8672990580807625 2.995170417334567 +1.1424803115821827 3.3118259504050536 1.2481669305666285 3.2816460529244367 2.9733983658004672 +2.675250047924279 2.5356069655237476 3.8606482367909996 2.2246162630455415 1.6419807579809762 +4.659880232490438 1.783181406001329 3.531262963779476 3.9441720526855426 2.906181352569907 +3.9199677256474277 4.572111812642253 1.5515970117226332 2.752374304532376 1.3664399061538741 +2.684501914673536 4.262550007019058 4.528655218469133 1.4677139942403894 3.4437765548795847 +3.0622453675283405 2.3185294317065113 2.1196078075321507 4.486788920085987 2.481261738073385 +2.4558756522818577 3.4205661439282475 3.4921178904758325 3.6263199605588974 0.9739804619639623 +2.181066361683636 4.733484077903926 1.1652283821424523 3.129014215452487 3.2204488813183154 +2.637309073110516 2.863107512165412 3.660485795112327 3.3147030173176146 0.4129778014603874 +2.4991563989442893 2.637712613998466 1.8516068059141384 3.162405483508615 1.318101285149805 +3.9053019399030506 1.8077500236565194 2.9011878263809456 3.358941386562242 2.1469192726341966 +2.991590084116604 4.171870982858481 3.9831438574670037 1.900160514201458 2.394135043863784 +3.362215875133327 3.870703148070128 2.046835964523703 4.587289090598292 2.590841830857464 +4.845309705286406 1.4261586738126137 4.294293441728568 2.7755772990349596 3.741268835315961 +2.360644399211892 4.8187356588078565 2.269615841800389 3.8481411899849296 2.921293363454482 +2.5350584162229777 3.600592014763053 2.926481532177139 3.711711947963657 1.3236119731605747 +4.437791662697034 1.803181670971472 2.33265857321315 4.585250952008943 3.46631536844371 +3.125747477244473 4.868044320127748 3.715543529127289 3.014503275758137 1.8780457197749238 +2.4396960666810372 1.9790749652663133 4.441899700982324 2.8343008621972037 1.6722876025169178 +4.139492625838356 4.161799055967993 1.2041359056830347 3.0354493340936446 1.8314492758201495 +4.076281068203924 2.468328949772552 2.564297785195312 2.331789312261904 1.6246754153226308 +3.18868703066469 2.712055675800501 3.9222462434353145 4.175235930313492 0.5396121107855073 +3.998003151836272 3.122634667789976 2.1361997522181198 2.162365251126683 0.8757594511020963 +1.6178466943333651 4.710542476166529 1.2361643220566978 1.8465687364786572 3.1523579663665195 +3.65458647626646 2.8074271866279386 3.3693100449367184 2.9993540829246084 0.9244167219653431 +2.364030897824409 1.589013817432427 1.2045998989848057 1.8261054466057072 0.9934387855438646 +2.081136600423874 4.842430732868229 1.4083583248292162 3.9656707037659316 3.763587635399843 +2.796010095606646 3.1506800559807457 2.020445792517185 1.2339418014769499 0.8627741933518778 +2.748545520458395 1.4071909844314545 1.7815987277926673 3.8886484134491512 2.497777085559305 +4.920868993425476 4.0999132593665815 3.335910687384087 4.45040983173961 1.3842242087369265 +1.5103231314399386 3.98737821250071 3.86706174567646 2.248506875909975 2.9589730889370705 +1.3195396617182884 1.0612041179842464 4.772696662000595 3.392645356068689 1.404022385918658 +1.463830331517478 4.272869159746797 4.708225424007809 1.5068523421937994 4.259047868651311 +4.434926968017012 2.5676623048243066 1.5061955477541908 2.2814634641401113 2.0218104917586945 +3.8107917375997826 2.866611584886397 2.362438824207913 3.6404625822365415 1.5889684977567966 +1.5774035972484626 2.0198814200020454 2.2883164091707946 2.857344031659574 0.7208183257825677 +3.6373283951046007 4.730367746066467 4.896923782942551 4.3384990313631135 1.2274254461789902 +1.400200882594675 1.875100376200602 4.7504460468018195 3.01785377833977 1.7964981207231017 +4.080557947117163 1.550060833056162 2.1802353525991935 2.5136681903778086 2.552370094947078 +3.3320452637122355 3.789532591959087 4.890149527571132 3.87220282550316 1.1160242576922341 +4.580412028101967 3.83453396853705 2.5057609043105633 3.0447747474141837 0.920255400852209 +4.537126234960731 2.901514882417726 2.889854169253824 1.9674901962753757 1.877759248470406 +3.9364457979571217 3.9566142332161354 1.1707492207766075 4.924575666265422 3.7538806252506203 +2.2225071392610882 1.7169381204858367 4.82233731973469 4.291426639981089 0.7331208513074783 +4.588621926794671 2.5086279778261162 3.135371068784636 1.2971432300092158 2.7758703887240044 +2.3355965569174235 3.746381724132018 1.814138215983573 2.6342493194831618 1.6318385367786925 +4.6415368909785455 3.9472621727675774 2.7255978358428115 1.7737976936851876 1.1781090335610673 +2.150795448799915 4.565328713003687 1.1099002805860372 1.0280888368562215 2.4159188720384797 +2.945660990265517 2.953875243070279 4.741816667267666 3.8151109875325844 0.9267420842944386 +4.405394072065382 1.0171110463275066 1.056062168693391 3.255299302213062 4.039443752790133 +1.360389819089027 1.2499663633574714 2.0259914524976876 1.4311815307848397 0.6049728775273674 +4.564949342547422 4.789645074828101 3.394288369536677 1.2469456142089221 2.1590667152646636 +1.631947342559584 2.696810278332227 4.060669064349298 1.4164250633581013 2.8506068492095267 +3.5558026177697495 2.037738018797521 4.605458431795597 4.636744264592512 1.5183869500185088 +2.076672411918077 2.712594717603258 1.7711651094609584 3.2456136572063947 1.605738365617694 +3.9537536324237976 3.7229596541390335 3.6265418231661073 1.544627924000654 2.0946673587829667 +2.423326256653238 2.257367846006334 1.5404764015152348 3.6345039865034474 2.1005936591249657 +3.6868301155413166 4.495765523559583 4.799649239459306 1.5980132977617063 3.302249111971348 +2.4684658199199703 1.6598685094059333 1.4508141037132862 1.6280112681214454 0.8277852654190132 +4.71957933251322 3.0054528539432526 4.171805638020034 2.606714447244863 2.3211505810646407 +2.805316974265553 2.737319249656589 4.580523451403428 4.848863556757459 0.27682142744630384 +4.946774372926278 3.55982155845161 3.3753962552030945 4.084596836964976 1.5577559419724878 +3.863080338431513 2.7071802861197565 3.4705710416550133 3.9197446118053225 1.2401055709317237 +4.350984965966177 1.3504603521081857 1.9908787512793462 2.141843599147537 3.0043199469529727 +3.1087442513986923 1.9777998147260036 4.9721833662757415 3.570225530961125 1.8012554207665692 +4.065375118470978 1.567693061287358 2.564885547958777 2.682537598859264 2.5004514920026124 +2.0693444702357007 2.8100811255766796 3.975724105362319 4.188757072484646 0.7707618553396909 +3.4467172718412336 1.320595494746228 1.1555246623327715 1.3918693943312785 2.1392177643664683 +4.933935971596258 3.212220831934744 3.1114794081182606 4.363442783760473 2.1287825901413955 +1.7542560107891787 1.7575737599688868 3.250889991228855 2.422393528592016 0.8285031056437716 +1.2983672099094132 1.96390825454146 1.6499138120157641 3.543427234059499 2.0070719871369067 +4.477270686146296 3.5199832212401105 2.8629717578510814 3.05575836516209 0.9765070232338324 +4.6116428604164454 4.864905967764175 3.230336692612789 3.317982265134975 0.26799990284731307 +3.683247833257289 4.9885636584022475 2.558068939550568 4.7967612642875945 2.591446068937252 +2.9204727010987295 2.747656650434365 4.007659610274667 1.3184698021452945 2.694736946626538 +3.666560732785755 1.9169616754659726 1.5029045755225683 2.2677283085781723 1.9094638525039902 +3.1509070894584528 1.828307351538868 3.5838684530910556 3.522597244738595 1.3240182127591467 +1.1311712721386362 4.9443790029926635 1.3618675369863968 2.8571037097073453 4.095886279043659 +1.9926371029229837 1.92716668656676 4.011112288543476 3.4666154697119307 0.5484187826246745 +4.546080269167211 2.629171592519322 3.190741746904355 3.866453416545362 2.0325169458326786 +3.3701021118825665 1.2118041045162564 1.0828892369212668 2.4431556028701844 2.551190873873074 +3.688601628414571 3.7268556148916403 1.3892703403515059 1.6504122441882823 0.2639288946305121 +1.9648277245734387 1.7981908834604337 3.2738611002580438 4.671413054739324 1.4074513498840968 +4.146298501331785 2.3501907206916983 1.6089609056861192 3.906354934756608 2.916165716224747 +3.38143993534092 4.734611918122862 1.1994347885505925 4.148194896867262 3.2444199160074443 +3.9314037407597886 1.0589429758532574 3.820165667910797 1.3332702718601088 3.7994314781063663 +2.3760408290429877 4.0777255179815874 2.0016739290068104 4.456157335019285 2.9866736632847353 +2.6840548151362142 4.704462092608318 2.814582838425407 4.607926076352546 2.701504309802454 +3.171409802175138 2.6076552242314373 3.2321683040243756 1.3915308905498192 1.9250364443393755 +1.7923182120889014 2.878999606110323 1.2292796817744636 4.384708383769217 3.337305311997186 +1.8308967697852343 3.1408698830853847 3.6698574567266213 3.7299756297772837 1.3113518796647368 +1.2292709763015344 3.274329174644448 3.7399741500085057 2.90465389233708 2.2090774018774946 +4.275369261181821 1.685384453575098 4.004294709644254 1.7275231529765733 3.4484358809298756 +1.2425887986775819 4.4763916217982525 1.2229615256744957 2.256878959775497 3.395064941847389 +4.396026818325453 2.25174658557943 3.979242020836949 4.863352158661394 2.3193939838564073 +1.6863639744268584 2.8183379126739037 1.0909788553590691 1.923090779925448 1.4049111188527508 +1.4024479614034644 4.840055580479497 4.997521755611927 1.9363968980253516 4.603002448018469 +4.65363167122344 3.964811145033074 1.3522432174256585 4.674386355114476 3.3928024912443804 +1.7539337925542346 4.031051398451285 3.0519468313422187 2.505422452366982 2.341784253064441 +4.754467249182436 4.370311390533924 4.430527348363317 3.5603250743249375 0.9512243276302086 +2.8527179435670593 4.48822215597581 3.3322368472871937 1.9821631061883997 2.120748248899728 +4.960016925750626 2.56714483216736 3.5797069308329097 3.0664377637368516 2.4473009815184246 +1.6917626561063543 4.962742378146922 2.0556499326970106 1.2169419194281308 3.3767942598745964 +3.733295733285997 4.585698535471961 1.6055269802983685 2.629895344891525 1.3326368911124071 +4.277675539832994 3.2245251669351105 4.903944763515351 4.023254990234953 1.3728583993608474 +3.870521495832288 2.0047293848967143 1.0938086798281037 3.357492647926938 2.933503930226975 +1.3600613995274102 4.464504337344822 3.2319478616641844 4.617440039536943 3.399581522645251 +1.0852081154966084 4.964232533692051 4.952702525044111 2.0483449195802894 4.8458356902986335 +4.3788673341249105 4.019790670174878 2.7334150742552623 1.8108260023160652 0.9900033566888113 +2.2546600931860463 3.103784846461944 4.059618647100782 2.201174689921682 2.043239288140615 +4.590505887081138 1.5289388791352883 4.153597779483665 1.3258035277141267 4.167686753402101 +3.4110299444602203 3.251203478319418 4.992418672856926 3.5857119477425026 1.4157571507010671 +4.042545069869606 2.051310843242287 4.499741062922496 2.5468503085073766 2.789049308271933 +2.257406702288166 2.4204348416038717 2.688866690791779 2.45175495573568 0.2877501504952773 +2.445575468299049 3.680566507159899 2.0528257842560382 2.2605699022558183 1.2523419998666931 +4.030064581670681 2.6721121847997336 1.7650193673215204 4.548447690663998 3.0970159740228445 +2.5528202832042233 4.450259725931021 4.124360649502569 2.9148210121611458 2.250169454311253 +2.9938994320954295 1.8131346592470918 1.846637810853644 3.3377767193952934 1.9020254186961771 +1.153931676133999 3.310741798615846 1.927097500159181 3.08820509496528 2.449489896112365 +2.461390922135454 4.470297207299677 3.896417601987828 2.2412392056644643 2.6029444838927898 +3.938778759484629 4.35418161536097 4.085543871152403 2.9039042275043587 1.2525301513779605 +4.967607308010537 2.5300769653480124 3.4277313357834673 1.0502597152930737 3.404985385818521 +3.580267221792567 3.692882295103984 2.2420259048593105 1.1315166612403718 1.1162047011637442 +4.971966732523459 4.716769958048346 2.5797288948458736 2.150418583909271 0.4994324146258273 +1.5978233897067051 3.953622059540946 1.8219532143360357 3.861526789230738 3.116030766889431 +4.210975953619833 4.8143682441072615 1.637989923475553 4.228194035416728 2.6595562783548377 +2.770651640773794 4.304429881338372 2.4940172035892196 4.352175269685118 2.409403886820684 +1.5218305274609496 3.7335299780006777 4.412996735617886 1.0680890675804076 4.009990245276621 +2.211696780886749 2.022676410492935 3.403076051364153 2.146764409913312 1.2704517467691252 +3.5116526851047416 3.3242951054853505 1.9189154938431217 2.7320844902537917 0.8344738937584404 +2.513445263729269 1.2716113215794547 4.501469434203644 2.272101216821063 2.551907950642212 +4.0440954730048535 1.32364794732915 2.0331322214065666 1.9776807003297172 2.7210126076783974 +4.343932942870184 4.7822543187212965 1.581681166445394 4.17834600241067 2.6333996846028875 +4.556986368191863 4.147537102067575 1.8778340888231249 3.6287135867932485 1.798117826490197 +3.4590348974804397 3.1774042703995624 4.131471881784755 2.2226247109550337 1.929511163920696 +2.0594475619682315 2.2042727210782473 3.150366608198531 4.542949829279735 1.4000936948462206 +2.794084383701397 4.628411663186977 1.617113744715268 4.360470744739207 3.3001157855210645 +1.2293769379438841 1.0263055459313386 4.902329950029483 3.497657984101517 1.4192749283059463 +4.701309826048361 1.6217358255545036 4.189897163116763 2.7428611279764987 3.4026003749356453 +3.0285979861888452 3.0061764388202836 2.126838053762135 1.3661160252523623 0.761052383510113 +3.2899745722237226 2.213015561770738 4.596774448946763 4.881773510737359 1.1140310477798148 +3.7280641962213314 1.4522939072560082 2.6017902762653637 4.755111596699842 3.13303736287568 +4.924125407194009 2.738974341583393 2.939485042313907 2.8962507513727807 2.18557872963945 +3.41555054943364 3.849177864261809 2.353841571506151 4.997309644608707 2.678797510391114 +1.6144165600053264 4.34658065270927 4.885395862199566 3.390018748371564 3.1146225039354816 +2.5798811388233664 2.7446951681733904 2.017420911830974 3.504198930740984 1.4958852034111993 +1.9791211896476808 3.900854937019799 1.4596912245443678 2.252816521401369 2.078968093142218 +3.4225161233183408 2.847881381728903 1.1017641953361617 3.5307869593919556 2.496068243166202 +3.477064406865197 2.7181579891866776 2.7176759971414306 3.009513184035155 0.8130854164524697 +4.284564774086927 3.471790298095038 4.812934626961772 3.4773499445676745 1.5634541223424596 +4.9687138726601745 1.993612215045435 1.8942525157367789 1.7744951072371529 2.977510992428494 +1.5746496756375632 3.231400139390528 2.3211051825399633 1.5162022425433013 1.8419258513742982 +1.9499415822788024 2.6949313071236753 2.2809581885216996 1.2763939571277305 1.2506634179988616 +1.1311292047849046 1.185101841183727 1.6989700550329925 2.3280922158101 0.6314330832801652 +4.4314720892354975 1.6242560359836675 1.4294779029028803 4.126325086986586 3.892742825301332 +3.163337785546003 1.7104014411848256 3.2420426471589634 1.4337246780094732 2.31970642502765 +2.0890327321904625 2.448699029476373 1.2223564024461044 1.5528698955308573 0.488465980918264 +1.7704355479412333 1.7245484305396506 1.5520982977446307 1.1054179296579667 0.4490311556868457 +4.432279787976034 1.9982098933083705 1.000570058617095 4.7391550440686965 4.461133706309597 +3.7941029810725384 3.528132907002226 4.651042874105342 2.915947354856296 1.7553622250746668 +4.267883804390875 3.017410373216613 4.956194865479869 2.056352780565886 3.1579689548048138 +1.9176993297683258 1.6128313609148837 1.510822085198364 4.940694707166257 3.443395225842908 +2.8794984690214585 4.874836158000401 2.0746543545381595 4.086324917261836 2.833406244432454 +3.6658015065265785 4.352177089473078 3.1585301393149874 1.3457853480032798 1.9383382365554453 +3.2104582594110846 2.0011095250520174 1.5780995745921311 4.873240099138727 3.5100534807613815 +2.182762897596907 4.503888402146714 3.7319213445180623 1.458482288411863 3.249022737639834 +3.8975921282520245 2.907849600011633 3.5610534008474484 2.616759043034498 1.36794813732285 +2.9638921327173895 1.6426628973888557 4.585650314532733 4.057236965637214 1.4229783412187973 +4.92744084118843 3.6934456466625205 4.20486064499528 4.06849391327011 1.241507158913891 +2.0966432412403626 2.7082313673296072 2.190288298866776 1.8639468664908838 0.693209035182392 +1.775771408090741 2.416053812242303 3.2097545404145817 4.012162159981056 1.0265571318754938 +4.998621096444687 3.9003234013994263 1.47393313319379 1.314181357395619 1.109855151275337 +4.97588654128175 3.213653892189399 1.1580795224753015 2.627753346337556 2.294647044334476 +2.9864237137511056 4.450633460859107 4.522883891873795 3.3722503901232215 1.862221157348628 +3.897904535689677 1.5470632781062927 3.74981612053124 4.865657932568105 2.6022216600139854 +2.652159189355528 2.3185965651241935 1.5353579758599647 3.677074732160007 2.167536548365556 +3.4812868475866723 2.3373037063757542 4.555086771007207 3.0170894246727786 1.9168028758081888 +2.1379902283807946 1.0334726443709652 3.9160895448052564 2.044608872462648 2.173108142808096 +2.837438722879017 2.1661975437069683 4.98500274171356 1.213085830709515 3.8311776132325916 +3.1453915511279735 4.391698860885654 2.1741445221499585 1.7656517923550243 1.3115442122363792 +4.31228208170622 3.548342844818167 4.159488709851976 3.1410307817051426 1.2731298869566459 +3.793856484599115 3.4665924163645094 2.896215345038525 1.318528138557367 1.6112723828862034 +2.4054154391508265 2.495825641150258 2.4137338896815983 4.143667271505985 1.7322942908685972 +2.8656043122584554 3.9099287637496998 3.5518708056312054 1.0347140969331123 2.7251956729978684 +4.728501792013086 2.001610167011573 2.210448674810683 2.258200092153653 2.727309687652221 +4.097238727761613 2.2782237894943167 3.027396261986472 2.8255667119928884 1.8301777271320365 +1.2463068163063422 4.220341631647915 2.7693823238432502 4.8880563911092905 3.6515288423028247 +2.9012194877222153 3.693379908981242 2.089202174287805 4.646221743888652 2.6769137476450338 +4.763425403741659 2.5214831535852342 3.8743068307014275 2.81317407042223 2.4803846048494576 +3.19471315069713 3.1645270338648555 4.6331249848155345 4.131652494897805 0.5023801944679932 +2.482325827000205 4.02247780530947 3.4945068841653537 3.225136608087612 1.5635307678213888 +2.719147492779514 2.651669514220667 1.7451064893348383 4.204067626882614 2.4598868172256703 +1.706103004244846 3.068093598624319 2.191950655705111 4.318745853645858 2.5255249341794217 +4.326841822184403 1.6360385550512917 4.21366683791069 4.386612005555992 2.6963553648260254 +1.6281930303759014 4.507257279612746 1.8916346993258526 3.400575777005814 3.2505252078923617 +4.02482351346679 4.550688098271927 2.8525486278587375 4.637142740526334 1.8604595422959689 +3.8974015550386856 2.9166972077667945 1.903327456468757 2.528314776134488 1.1629231128930841 +2.5904918259076317 2.518167538295406 4.474185544510215 2.1780244387763146 2.297299855496392 +3.1640101745686087 1.5166543358207583 3.0536931098502214 1.2952943342847623 2.4095118828025606 +1.5441673872873616 2.519898312661632 3.98655208673305 4.598625395788656 1.1518179432488493 +1.0082988802199955 1.7272879174399849 4.366959016861477 3.9782357102591845 0.8173438962507442 +4.583316931946626 1.858932567914981 3.9290896702538336 3.3324941554719745 2.788941801335757 +2.0688376306608696 4.148978740500543 1.2428624909439883 2.3837484759922685 2.372468728502994 +3.3236532733789237 3.0906050193469397 1.3147856341419 4.393171472158301 3.0871946580038148 +4.211479883054055 4.100420362463842 3.739799494898325 1.573530465504708 2.169114041451876 +4.876166045810999 1.8249761670719793 1.3046905828467072 1.6680303186444063 3.072747213769622 +2.77428816198927 3.2002369391077727 1.3694551595371602 4.6106308321368665 3.269044524227363 +2.8568227799607566 4.139683831269194 4.520842289987076 1.6522494740633245 3.1423808204184205 +4.935346845709567 2.845375216771278 1.0320184948957367 3.4234503115457544 3.1759923714412426 +2.1008620295255276 1.4393338349349083 1.478626912173925 3.507410473056082 2.1339124370845233 +3.048305946900716 2.3141511027895816 3.8644431528020746 3.190474500218643 0.9966027693103058 +4.74673299190653 4.476679847909433 3.1279879203757233 3.282385093801415 0.3110742479610935 +4.135503700748816 3.1918290277798644 2.669233833390106 2.7684801314376957 0.9488791894014796 +4.521689808091666 1.327505091928261 3.652670995804092 1.2073079114461684 4.0227623115606015 +1.271971410928928 1.2088277525989 3.164284127364885 2.2610364657742315 0.9054520747981548 +3.517048007897373 1.99607460580722 1.5452393138549105 4.695419311823265 3.49814152221799 +3.579230997391534 4.850905324180816 3.74547125039649 3.4775497887777305 1.299591283062066 +4.309705644849117 3.090942129999731 4.437367342850692 1.5582310254650626 3.1264693248482245 +4.7509389640851145 1.5149133191742505 3.903087897080991 3.9951335548107836 3.237334455632857 +3.0823043243320862 3.921503620158621 3.9891616704486883 4.772332524793265 1.147872834947568 +1.4421291803860048 2.9932937174908285 1.3148436852738414 3.871535983797628 2.990449285726555 +3.424780696068729 3.8311305392500388 2.8994086368921663 4.425135259714743 1.57891162597628 +2.7968037666818306 3.031875605557841 2.3610367549427935 2.0682538533556 0.37547382983953137 +4.697792379530673 3.803732995515618 2.0098665029605542 3.142160218590717 1.4427166182590885 +1.35278670253697 4.395232012046402 3.439481691519979 1.4926010236693732 3.6120379007156562 +3.321962406298348 2.3484444396666277 2.8270020461184617 3.334381898346547 1.0978030541958574 +2.8768250191201226 1.160599260897675 3.9766128242434102 2.3118943123609395 2.390966034261132 +2.832941545943707 3.4090385724779217 1.6583873229904724 1.127137163514107 0.7836545896791695 +1.1468781973224091 4.949695209685214 3.8972929034222257 3.2928254993663275 3.850558150720756 +3.7437479280476706 3.058070347348547 4.083687508009205 3.773681261438065 0.7525009086948198 +3.7875717512637332 3.176580993680379 4.192191016830555 1.9955469533275738 2.2800339575486963 +4.2032642003609775 4.377884962755162 3.449078849287444 2.9953832844972244 0.4861399759014296 +2.686726697671566 1.2652251307562428 3.576490940890303 4.212612044953891 1.557342853638144 +4.317187865025449 1.8399558132565859 1.7512180302448286 4.7798818085564285 3.9127334333388553 +2.809245552279704 2.777451811400451 2.3812364625624585 4.097858509099266 1.716916448932596 +1.3719895489077798 2.5576472335432823 3.2185572339995336 4.902926061623447 2.05982584035796 +1.3763977061633623 1.840972306208494 4.175647018119188 3.112765307612355 1.1599771935417627 +4.00103447811 2.425899373218246 3.69970646754907 4.010476601524242 1.6054995094466096 +1.6957376200763856 1.3724644018294812 2.2280980224971585 3.910216442862986 1.7129004506303738 +2.707358121955808 3.42250560315256 4.1595969597188915 3.635070736701115 0.8868842531555926 +3.3435788194073375 2.3853128632399807 2.818242797097106 4.50029963067056 1.9358690126453533 +2.3317245642542 3.874901112269689 4.421212622745129 1.8468330013115453 3.001470355275481 +2.5660316643058336 2.7718887361213094 1.126043654859858 2.3084481567598756 1.2001906265797406 +3.1392595952759086 3.2002976605380575 4.412220058628059 1.6352184944674302 2.777672286782861 +4.283544298432377 4.2801018853309 3.840013945410388 3.308659063582294 0.531366032646526 +3.6072685320001336 2.330855881535079 1.645387935329993 1.8006536209066137 1.2858214057110748 +2.8546907927888303 3.58817534406165 1.8436020241209956 4.564424208280974 2.817955454717651 +2.1586859774470297 4.3334318604276 4.634538752640816 1.6394130205458675 3.7013913338903044 +4.966280764682018 1.059853439614137 3.3246209313273223 4.142108587742494 3.9910475459994426 +4.769577394240734 4.545745039595129 2.446599342101982 3.7817014544571546 1.3537350454950334 +4.251619811006389 1.996132756262622 2.8619013678517256 1.373312029668745 2.702428550742601 +3.0206653895195794 2.3559598536843005 1.8873512264419339 2.381004560680388 0.8279656175076402 +4.127114788412467 3.096891035048582 3.4731120003234666 1.1932601393610263 2.501816438096343 +4.203237623408101 1.3058597118898643 3.192242656409842 4.687665554018417 3.2605349875205762 +3.421164728020201 2.8411146782499506 1.6434502530708515 1.4325886214386139 0.6171877250343526 +1.0023877779129324 3.492777512228356 2.624207611366287 4.841026358442239 3.334115532816918 +1.6429912160991056 2.4207388166278614 2.6896952862477814 4.017402218067202 1.538732279160211 +3.3369688167157743 2.8196863136698473 1.9084422691685319 4.180700507229568 2.3303945349218673 +2.388148401232367 1.4657481505978085 3.4188960617445834 2.9237593229345884 1.0468918819487012 +2.0953897504663663 3.7095364132500808 1.2081721128530662 2.3563682943099673 1.980864437584766 +1.9922905996889084 1.1715247977583143 4.166534786882572 4.840470607021084 1.062000937515848 +2.9202152456319017 4.716151511577785 4.675728146614338 4.767176431879751 1.798263011969502 +1.5860757410590898 2.578997162362712 1.4441745118734928 2.110477416468265 1.1957644038668467 +1.4995238031049096 3.8164878396394406 3.2483294599664236 1.0204921416692345 3.214277751438416 +1.9759390116467288 2.4538536504210673 4.784823366072819 4.86070076780417 0.4839005910807582 +3.0620908953745802 3.5543684278869305 1.1344451236481023 3.3830391208874206 2.3018497199941494 +2.894614400469713 4.383886636957871 2.840699086861721 4.599554174352617 2.304669827365093 +2.5117387550130568 2.386092621597193 1.9994207015006595 4.2463066429637415 2.2503962728343643 +1.5789022602258167 1.8357982018554786 3.0545588609831906 1.1239653818775852 1.9476105119840765 +4.489409849210288 3.7815170560885076 3.1079427912611073 3.277961482749844 0.7280237372567587 +2.7919734019146816 4.105207655478933 2.9835560540191093 1.3067376368470023 2.129860138342898 +2.414665614021857 2.9291430443765165 1.4118012635005828 4.323455174140754 2.9567576027957614 +1.7260651062427645 3.4370275352899546 1.3415194901742096 4.685241600150434 3.7560444595817706 +3.92052982289769 4.982388776950014 3.1020283171310603 4.140326281064709 1.4851286476968437 +4.665604115738556 2.1977675984944685 2.3188432393652136 3.51016507811842 2.740340270720727 +2.565428608712481 4.5607338750366 1.7488075274757446 2.4385649897826362 2.111162822386944 +3.0161291692536683 1.588195121502276 2.6219525527113756 3.785555481297553 1.8420009283770742 +3.139990715782876 1.9117296670181458 3.4183743482608984 4.597386162681969 1.7025551569500181 +3.4374467873361674 1.7406767405944867 4.660301115990739 2.755192970366691 2.5511694647833303 +2.081816321883402 2.424443184784759 3.6747970310453146 3.621671676243242 0.34672102691424916 +2.156229484822216 3.9231442668411223 1.9327375820714638 2.2395184033215227 1.7933494693460559 +3.195143059698675 1.9731858389861219 1.9737024714227585 2.4650805575142334 1.317054240622788 +2.9576720902088502 3.966670458468928 4.303885528584688 2.741393561292486 1.8599620574098161 +3.651681768942901 2.7254911522640484 3.03917781519884 4.08702785011648 1.3985059006314036 +3.6128053768916333 2.7791313222309673 1.578003999787251 4.162716708435145 2.715833613397604 +1.3115124878224038 4.386733146427488 3.4348621116528917 2.8039920339152684 3.1392641102806507 +3.962530339951496 2.442853883520329 2.04360893752269 1.4716251532768183 1.623755517826319 +3.4170977102746076 4.588161124887519 1.1417146911779517 2.919908416653634 2.129169426411609 +2.165716890915103 4.556041699959797 4.595150975087237 3.66181776626136 2.566079416431175 +1.2587358700534619 2.9622387764912355 2.7856355293941406 2.875221729937734 1.7058569223618312 +4.849559560425169 2.3806067783590077 3.041880754807616 2.5629218600817145 2.5149810064708826 +2.2801364163832525 3.7168899545765233 4.021881864596916 4.096042436144442 1.4386662294928376 +2.1521922093918313 3.1191573775222707 2.803349761980906 2.6174191841232464 0.9846785344263437 +4.260705718062161 4.485749115973585 2.75656411970488 2.416203173183169 0.40803198999670903 +3.5403622928181946 1.068771478008904 2.426348369270415 3.192738588868673 2.5876852831334647 +1.9063089504912485 4.040942667756141 3.4390184052383663 1.0519643176312679 3.202294228212937 +1.2331037394313875 1.365284097536625 3.4730952256617784 3.8583278898726943 0.40727859340243877 +2.593184917109392 2.0705019408986653 3.087651159283251 1.2683391212939323 1.892906174429507 +2.2426088959812875 4.577971120805687 4.471604624255727 1.4148152897655906 3.846800976992366 +2.1950156331137882 3.4957229189746655 4.389704776562718 1.3087776310054995 3.344241546258721 +4.327668591191088 4.830378168833697 2.7515949069655563 2.9315535118782625 0.5339494535400683 +3.0343039372257645 2.4350822548616646 2.595343363188693 4.096439427172358 1.6162784469027958 +3.08084094402119 4.373165099122515 2.8567232032515184 1.8957233128409685 1.6104727601631275 +1.8011558889807904 2.412097759900145 4.51538104531522 4.148360515106228 0.7127089442664031 +3.3456036867163834 4.106313336068338 1.1482616492879538 1.733494055611554 0.9597792142094371 +1.8737869370524862 4.776008328564515 2.5313724084261664 2.465671170881014 2.9029649770476014 +1.1817837448040942 1.2842634267899906 4.602452939317634 3.4756653125474317 1.1314382179608196 +3.131775903560271 3.904670722448701 1.0494982697983137 4.783644950053752 3.813294878543658 +4.093114656529329 3.44731836280512 2.4942254747690398 1.4790556529400547 1.2031718996636422 +4.669774525829816 3.2181865324084815 2.6246289105191014 1.0621512965047408 2.1327081368394 +1.1998370927937687 3.0937453081938866 3.113499696651011 2.3221976149715164 2.0525709032407042 +1.5563543113295628 3.5674285419279657 4.1528692462568655 4.709822006323218 2.086771654475517 +1.3550701479945313 1.655997536303576 3.684684715143875 2.8034159098748823 0.9312314428619453 +2.299356840746237 4.448733495518282 2.222481650271973 2.757990594466965 2.2150823536365194 +1.2141781550547583 3.6741595839280516 2.653070911195385 1.4100612218712554 2.7561897101170594 +1.881664134803461 1.6575175351359492 1.031329233667611 3.099833302555665 2.0806130781932866 +3.3682142345815476 3.951213579975151 1.2110686163434297 1.1171204205328729 0.5905205332801129 +2.5707367858101082 4.515900829208091 2.16055846725892 1.6276602440673265 2.0168400214219138 +1.230018983318046 4.062107028999346 1.5016351334872544 3.5924694389610177 3.520271408774738 +3.7693790391442534 2.8027148071524524 1.393027993121693 2.9529260626413247 1.8351353423394616 +2.915432774798341 2.4420318801096763 2.438543922993656 2.46202899404384 0.4739830752825046 +1.7275490354350809 3.725601795176771 1.7089512429658278 1.5442243453765179 2.0048316092631775 +4.061802027154976 2.5230573280675883 1.217865318351238 3.512731489471859 2.762995836465078 +3.6748441408995496 2.9442938031139274 1.3488334100772255 2.1002305885222623 1.0479988147960135 +3.2847845652879983 4.433647050493851 4.851816397545083 3.568899192806299 1.7221386599598028 +2.6737183091039634 3.022970430890206 4.278414073559014 3.844098563683438 0.5573212778018384 +1.080654395277708 1.6914279167199093 1.7149946209740992 1.007987931510569 0.9342926487140353 +3.1499583150541137 1.4955039161223906 2.867241745077358 2.6381259547466605 1.6702435162345008 +2.0793174056752566 4.134053705896113 3.7880820629214744 2.89660544441519 2.239792808450972 +2.8909212226296503 4.651254912432264 3.5101621657882016 3.8302835965876647 1.7892044125563684 +2.141892440635022 2.7848355404132374 4.168132676057613 2.2741748222910227 2.0001130421545104 +4.29280492735084 3.442948541100124 2.177933850093809 1.4412546415339578 1.1247009084976747 +1.7452053820267186 3.116897514243242 3.2429865428370093 2.4803957905062433 1.5694215371037559 +3.3249620674954605 2.7155283746945416 2.3217076820958806 1.4769009572684206 1.0416850907230384 +1.1152163373305206 2.4899517501944697 1.2847986650426644 2.783938060209893 2.0340394247714513 +1.807134295214588 1.9473096022069298 1.6579637879595133 3.846472812366488 2.192993585627 +1.7324599710696433 4.724289177816564 3.4854349688971302 3.9109111376576338 3.021931827908602 +2.1701196355827843 3.291299025646903 3.3634350852562873 2.71428953054075 1.295543583177151 +3.024254800456742 4.622554819717701 4.5130793356314 2.9391645798605084 2.24316085245863 +3.0359449090450514 4.691045435703819 3.6823116737346715 2.0408182259728487 2.3310638113082884 +1.6063912382369434 1.6026082526525123 1.0285713486463628 3.0146525621944313 1.9860848163632139 +4.479756947041976 3.9263988530006 3.093111390092241 4.834950649213412 1.8276239177842069 +2.7841946987517607 3.996147415039458 2.1374566088355786 3.0318874791742965 1.506265570320189 +4.706342484412653 4.019098460211575 4.65786718235573 3.8967197078710205 1.0254997936199421 +2.133644489956704 3.486260885886772 3.273113582272496 3.631582721063572 1.399310986880494 +2.4485568497780528 1.9687578615904866 3.0963298406562196 2.844605566802772 0.5418230145655109 +4.215427704810477 4.180201834058123 2.5352436125125815 2.348600062337409 0.1899386132208343 +1.223751954036246 2.759695690726711 4.163847375120353 3.112675840417652 1.8612051895607589 +3.110455333138364 1.3412849034133711 1.2629065569832765 3.773337654357796 3.0711933029489287 +4.8219644087668385 3.5547337228465277 3.9515217868447046 2.9826507741843336 1.5951754293843654 +3.686167922985856 3.879199619666261 3.002317690561229 1.3445324510491412 1.6689856608933065 +2.679445420393731 2.6236929118963754 1.2190613053991042 1.8669704251347947 0.6503034442784577 +1.7999052798183524 1.6580899328427083 3.59503130342792 1.2002453170262974 2.398981349094531 +1.0093526153476242 1.2857727393366485 2.11249064766391 3.309650210663517 1.22865743973962 +4.190768072506362 4.629931315994335 2.6983449707667733 1.4349783895674966 1.337519896271463 +1.6263801674171852 3.7437499866632993 1.1827637044359225 2.00823789011509 2.2725894003706446 +4.341751329561983 4.993766135287928 3.6849533371861796 4.687405334785854 1.1958400036699808 +1.9736405411559268 1.3824367463134606 2.2662662666648297 1.4830000852279164 0.9813398178097618 +3.9034208203385505 3.6065530581012535 4.5483958287071005 2.635258854311592 1.9360329416244395 +2.7906553322257204 1.2074796991741659 1.6828598104966401 1.204469589124416 1.6538749314844687 +4.398961129105533 3.0339610326878925 2.4694486866917464 2.852654972525463 1.4177701931986864 +4.8784726800347915 4.116909819471707 4.229691033625102 2.497348205969625 1.8923503013761487 +3.923923083962937 3.7089126280530342 2.4644327155576358 4.3199990138265 1.8679817406553523 +1.812537084171662 2.6555704047384294 2.427202220672127 4.732407363216076 2.4545215274665853 +1.9172162477034278 2.29154423771836 1.719603167727234 3.716633564414585 2.031809993429961 +4.1857568836197085 1.0158772259318152 1.5514416675996308 1.3276730851675627 3.1777679938452357 +4.216830721997068 4.368701990271791 2.3799541189372393 1.388612756921885 1.0029070635755992 +4.725558977854318 3.521869543205242 3.2986891250534156 1.166396019016085 2.448579617888734 +1.5143538902322433 4.075258774044382 2.3669168925558903 3.2769713283152093 2.7177992751448876 +1.3575496394804563 1.29890273269872 4.747820729050112 3.241550826385087 1.5074111845643074 +4.53860697412775 1.447672102624065 1.0912946878869554 2.31862482131562 3.325690550291702 +4.54984798092859 4.173283963491454 3.1479881585616902 1.3654422603157284 1.8218864779623067 +3.8579713257571826 2.534463518046044 2.5529723439092042 2.0041259114595142 1.4327963300780389 +1.7115327556424713 1.2407915962105185 2.0456543067943733 2.572893487081317 0.7068085967311006 +4.785424777450581 4.716652074496087 2.0106288801740115 2.5078972756919873 0.5020015357075006 +3.8225981580854236 1.2012846714099337 3.8718918079930202 4.459752255912221 2.6864222120981984 +1.8775978372658413 2.138151391424791 4.77874260174986 1.0828926157318843 3.705022978840203 +1.04119468846601 2.6876667535871652 3.474271121909379 2.0777362789129366 2.158976569795842 +2.143783244502755 1.6008789958095857 2.4344515087433156 4.745297307918979 2.3737635372582724 +1.0276168634554756 3.469142655340664 4.141019156333014 2.3215258297634525 3.0449308954181156 +4.43285249975032 2.5756649453986684 3.159726399693274 1.0668252403012852 2.7981030851316038 +2.2734339524312026 4.666041844966699 1.2086960425822868 1.7175553964686148 2.4461214952370542 +4.269229925706489 2.643456239553159 4.9110638309840535 3.7729854345600895 1.9845308047484496 +1.4069544229240112 2.307568973212862 4.174797432726837 1.4937126181194 2.8283073297134074 +2.2582788933306763 2.0963506028569157 3.5664089979902265 3.5182833610786313 0.16892852981039438 +2.2944846857718915 2.6585770050034676 1.6276422994383708 1.1143122351876942 0.6293416971622267 +2.7275074388224314 4.540294075016112 2.7636618092671874 4.564010882151425 2.554887898244761 +2.777821725271356 4.851845256282665 4.224361485683056 4.854128178199462 2.167528475981728 +3.8164695291600346 4.953451878693233 2.064971626547668 1.5786486380808329 1.236623997932009 +3.924559870539641 4.2453273042512 3.645310722450267 4.357301431178177 0.780911336737258 +3.8551314618843664 4.040482374733902 1.8972340326784152 1.0072057059481234 0.9091234147663776 +2.8448360313017074 2.0298912127958566 3.2715637981354777 4.887095124502709 1.809440942303285 +2.480078187840276 4.314772940094654 2.561683577067031 3.902342350097829 2.272327172669948 +3.31551050594268 3.4469689904469116 3.991212181153812 4.053722884336615 0.1455641479230303 +3.432256077765202 4.5549252329402075 4.808721373966057 4.851887611327128 1.1234987120728144 +3.9270678144858278 2.711849319602242 4.026765170910775 2.5511634078365346 1.9115848277005478 +4.812993941487633 2.5328474178275546 4.618465248150419 4.1886744574360035 2.320299181817307 +1.3687807765145092 1.7407470201593869 2.0747282735904866 3.4340919514249015 1.4093361894973064 +1.5794255014863277 4.134345391910603 4.767736987830959 4.532013866421533 2.565771041315377 +3.0788854864581547 1.4633966448141038 1.0280583930679588 2.035641848744546 1.9039507918088665 +1.7549148303585866 2.6170916334127674 1.6155542232887599 1.6757268875562876 0.8642740243983851 +4.842218401285496 4.9723206535351245 3.3419431632864223 1.2650435471081654 2.080970593670611 +1.3902385756826257 4.753225280240532 1.4733997165832786 4.662355092189051 4.634556716951277 +4.455853749266238 3.7045119609868875 4.782370582582775 2.899142932556142 2.02757511935801 +3.6876159403375834 3.335125723694562 4.707302215155663 3.897011161391743 0.883640732786175 +2.5367405884677456 2.4505204002160546 3.866195131339887 4.515160027961215 0.6546673643224388 +1.4552750122309979 3.5042805775581534 2.7938697689402856 3.631029111651367 2.213427110123599 +3.4613348876904486 1.504950534088068 1.1649582702202723 3.1605388801173433 2.794598667003434 +1.7069325863367726 4.385630712356155 4.588204688186434 3.6923696254019096 2.824525466348977 +4.239776829895482 4.423315143939913 3.639967828133315 3.9271156587884297 0.3407934702605237 +4.955239740531554 2.078538649687201 3.546643361871248 2.2221439444160764 3.166971403865873 +1.9139313494487191 1.8442330506917326 2.0115904738899157 2.4436124829043284 0.43760812277935085 +1.7370582377530361 4.804466833118495 3.0031358648301705 2.2557010895225056 3.1571592031858504 +4.134425095841458 2.6166564049855965 4.0008624362680525 1.2907777522790491 3.106152087927134 +2.058315036992029 1.8243400055527301 1.1613342597715084 2.2717285301051455 1.1347774014875303 +1.2437815641162207 3.906621526972594 2.8913300793074965 3.0373393894084235 2.6668399626563795 +1.9307296684399322 3.077904998837448 3.4343262332154256 1.0469303420997838 2.6487110789190464 +1.4196386917036286 2.2766544036637293 4.68574960271912 2.043424561449813 2.777833248102795 +1.3715256635588569 2.4504531027975998 2.612818498334457 4.223267675860306 1.9384609804006774 +3.001636583720005 3.18055230543434 3.644359838058126 2.8378500002350044 0.826116791974379 +1.6261613026992583 4.988439545772895 1.5197911301773366 4.822840888169504 4.713284702584649 +2.0230181383045363 2.6299345472708167 1.543743694583251 2.8671542212724104 1.4559405721471612 +2.45136126348436 4.377610243183625 2.0609884052305567 4.979612870338197 3.4969706747579856 +1.05336816844981 4.851703002102218 3.4971527561558715 4.258718522696632 3.873929519919545 +2.577911219276558 3.7131720811204123 3.9580228385503284 2.4457428237775916 1.8909807157968268 +3.559520485298501 4.513511223336428 2.8620100974030773 4.614946761156368 1.9957167322525173 +4.921540056008078 1.4799268827572893 1.3383350003494576 4.082150353791244 4.40150246257755 +3.039208854626511 1.892161749478583 4.637239430933408 1.3113087192528128 3.5181717070558727 +2.647225527738267 4.306147174495466 2.5396811800299277 1.2374964099316528 2.1089585594685154 +4.106383970054184 3.9152740101273205 2.0837380514785138 3.0870421916805633 1.0213433382216879 +2.427322805118127 4.0984469641557535 2.5460618779118844 3.83117311955125 2.1081192704178493 +2.406512113747299 2.97866379169125 4.13925239682478 2.865679342029758 1.3961897680738113 +1.6108058228068889 3.7030172110219497 4.697097834669384 1.6525726517389252 3.694114519404418 +4.031447109857181 4.219596396412183 1.8006453060216332 4.768825940660221 2.9741379312121166 +3.38852394706751 1.5763051450647865 2.2894843442589714 3.5963964678070672 2.234313381110443 +4.08631130736198 4.4455715731672765 2.6768513290431257 2.9527916324013215 0.45300219602547803 +3.0877337620881593 3.1050082764032165 2.0761687996476437 3.4523448881512233 1.376284503805021 +1.8183598012099509 3.345153176919346 1.7338607771991357 4.307809264992772 2.9927092792192895 +4.700301928237629 1.367346882007364 4.859101681103992 1.9331934892483522 4.435034169807458 +2.1760379675047647 3.3307734300534175 1.5742128719075121 2.8416678928658086 1.7146008919337021 +2.4436226514370607 1.3981214304910865 1.9456305040513109 2.408042773830637 1.1431963568180188 +4.535546361564265 2.267558793414236 2.535698186488965 1.8599689705117082 2.366511690782093 +3.124231719811796 1.322911129794421 1.065512748708528 3.4119462463459715 2.958125424463207 +3.095385523986554 4.961317964517404 3.7299372875993515 4.882817220677039 2.1933618061593547 +2.929101102743738 3.287882669643865 4.262398208159942 1.0509749751810795 3.231402697601108 +4.164002113686324 3.3398620388829956 1.3842576098665478 1.5257670908366388 0.8362008108709659 +4.786057592159378 1.6007382331893458 2.5978334242150902 3.44931509897894 3.2971624863036255 +4.679359332255395 3.35319441428921 4.679947393090934 4.0535066341249735 1.4666769972076696 +1.0662965082645468 3.7147389498237664 2.9144382181315787 3.6158701988728255 2.7397544032009056 +2.1900005082311176 2.2110928954160314 1.3474692271387227 1.2028964951037442 0.14610326363642953 +4.835485270687836 2.1197204283554467 2.1982910897718777 3.848959436233502 3.1780630372695597 +4.0043834068871025 4.007161272639509 1.6617714622437094 1.8397530460547284 0.17800326040277234 +2.963695489062556 3.5446744721336243 4.49641673870872 2.8723141585253265 1.724890074679731 +3.8868409016739456 1.9334832296997835 2.822734344060199 2.616965000784645 1.964165781519567 +1.9926727782936102 1.867555236431504 1.8985547547432011 3.9720375922544124 2.077254312003025 +2.9303142595647826 4.323954853318956 4.646759130536948 4.414789586202948 1.4128142036580773 +3.2797085464927345 2.9145246733652463 2.807659914974052 4.802300187528496 2.027794140954268 +3.5733314297848433 4.712874071868804 1.543079843903814 4.09757838781872 2.797145016618028 +3.344663220713709 4.265062738400732 4.946856136535992 4.5675320422552685 0.9955008993769899 +1.345058227159706 1.8030171107812176 3.2023380504889865 2.064533556363695 1.226509439808586 +4.426584644871718 1.2496110697866896 3.211686439268981 1.51233820754344 3.6029079240881616 +1.0859327275713588 1.9337202033048047 1.0794969730463873 3.8363094043237287 2.884225786108947 +3.1807506820648643 3.0017898663218037 1.7875300258936955 1.8940655173979541 0.20827094017523348 +3.838913063358219 4.86427121015829 1.7542605254368544 3.324274681921832 1.8751809994697877 +3.450842341055116 2.941016966371317 1.4833842295967545 1.1655756685692844 0.6007696681206759 +2.9686242147885045 3.4025936437265174 2.2808138734041075 3.9980569384463713 1.7712292933690246 +4.355417357710019 1.8622464173361721 1.8062741949532217 4.921590663091138 3.990125065029405 +4.593997269262404 1.4848358104687427 2.1645683918043814 2.700123899220979 3.154949235466742 +2.018386762347779 3.7026844445606537 1.881816761960911 2.7410074067621113 1.8907848228768824 +3.9631971395307444 4.012125117915553 4.245819750871377 2.381003023591246 1.865458488793734 +3.719260938255425 3.2738044931133405 1.858129982005933 2.214688827115752 0.5705836087241475 +3.3803723109022954 1.0391101694556388 3.1345910680492213 2.939795342525197 2.3493517807373623 +3.1644547654719988 4.205066257797192 1.9921942591586999 4.3145563001940745 2.5448453248874 +2.6290987585248495 1.9606305782578404 2.771851364984218 2.2299005539946375 0.860558184878716 +4.360816804095716 3.7100544325941263 3.066923102903504 3.3002366925972786 0.6913225696432659 +2.8510976064873397 3.8579468642863755 4.248541531840276 2.3043032451797134 2.189476636835221 +3.085008180046292 3.672828242516851 1.4761147905752097 2.3983467165205044 1.0936380347608892 +4.527951144996399 3.9362125720762244 4.190371521193406 1.2543824630318205 2.9950269261437628 +4.3266862056094295 1.5982170164292833 4.132814060457511 2.218175659012622 3.3332243135727913 +3.099231254636438 1.2020929047442555 2.091052107540221 3.538320004966622 2.3861513542842725 +1.838939659066384 1.8775886424779906 4.82488481026356 4.842350553223401 0.04241221635201198 +1.4610212698718539 4.0450311810169755 1.9361297536991358 4.056047529124954 3.342328319519578 +1.1865898932706287 2.941067884562223 4.028680568303118 2.1219855130519836 2.5910768139222955 +2.4316426498624275 1.0329640407431553 4.920576296511836 1.4545936008203992 3.737557745164655 +4.7698525555420765 1.7257394150498961 2.8938373088042133 1.5076621388493416 3.3448626898449185 +4.287323661195124 1.1771485998658977 4.581140550289081 2.9497704455054907 3.5120588450218033 +3.311636516215502 4.799749915498224 3.852554015192847 3.4127979900420535 1.551730276427319 +3.702919583249298 3.1890519107182476 1.1209765608704068 2.019973165692432 1.035497407217424 +1.6224128887119011 1.626818461353762 4.184629366054784 3.130370556155087 1.0542680149380557 +3.001247891129148 3.7204369235902406 2.922044275853566 1.2440513676229896 1.8256212817790085 +4.08424000788901 2.669858440953432 3.8033413652398247 4.55497092755955 1.6016935461692046 +4.7523141135297715 1.6348256559859378 1.040597741023503 4.483406450594856 4.644530772168422 +1.7948189743594112 1.518082905340063 2.0224934561298054 4.578308649233961 2.570753615809635 +4.333517664218798 2.0210810036939177 1.1654427145416744 2.935149206745358 2.9119107777346693 +3.208560189240411 4.556317448961676 2.680611156982692 4.684108987352241 2.414633137233659 +4.862411125078765 4.886091496017697 3.3563858954503814 1.2712744030973964 2.0852459556393574 +1.1074285525848881 2.5724294736098683 4.049917943453406 2.172018902679701 2.381749883162134 +2.913064541523046 2.6194879742567925 3.240641571869358 3.9090526578221922 0.7300414924320973 +1.743989699616563 4.517180661093047 3.722284179813937 4.891936537736484 3.0097632377329346 +1.7481333933672056 4.870125533776352 2.2874758664439447 2.8258248891035644 3.1680679593365815 +1.901111893352828 2.9927522421160764 1.2884498938218258 2.241173251910696 1.4489169914443272 +2.5737064107191943 2.0764611496540777 3.7875954797887457 2.3842516816406953 1.4888339952635121 +2.0672280009845747 1.7272540233107763 4.303701722714301 2.6675979127623077 1.671052956202996 +3.9969275578553725 3.076617579821501 3.077248933982503 3.7866490155889334 1.1619892131392249 +4.570109456483541 2.833255123116685 3.4472319360906654 3.3432099373335755 1.7399665374830189 +1.7682928430450882 1.8939392871567104 3.8379730932882827 1.3354948270514786 2.505630559740493 +2.630115886517457 4.530604140249249 1.9369925997822994 2.4923013149147057 1.9799553963851102 +4.804361327137155 1.7843372182812454 2.3889491046226428 1.6210817359831098 3.1161139122137897 +4.270701119157783 3.8667282352680394 3.9708981949636737 2.180909731844203 1.83500757192416 +3.2369491875795418 4.404583149552387 2.774933903298312 4.397694744725454 1.9991802864228454 +1.7036012224505113 2.7448238198904713 4.660421164539244 2.4813287626976748 2.4150751941054085 +4.475766621377589 3.3271108239998917 3.1431787048448463 2.2345461816076706 1.4645897729855106 +1.1637085503095843 4.5795796508351945 1.746968305953641 1.8356916223123414 3.417023149215078 +1.7806147621197903 3.925908180019731 3.8766380318409137 2.0595479957436957 2.811423135739015 +2.3474472352300495 2.5897034648418824 4.462918588461584 1.9860694071641114 2.4886683080876204 +3.1469461654094286 2.550542156917914 1.8260041031468752 3.341371915200529 1.628507705586014 +2.6821711120192293 3.9424078162551592 2.3781788125700705 1.338306998664895 1.6338696214991815 +1.2818177419651726 3.7787887836577645 1.2752353323971186 4.557199743717868 4.123851934808928 +4.668465266416547 3.453708703320391 4.793491160425631 4.555137752383137 1.2379199710444357 +1.21344420425386 1.9760932940115685 3.4477751837471473 3.457713661731618 0.7627138437532841 +3.0509458972839374 1.4602092960194186 3.517307632274363 4.1693801983280165 1.7191979426472068 +3.627186003159984 2.950681590936471 3.0277014736441923 4.560132781021119 1.6751131100874463 +2.1801437557536376 1.280293459347417 1.8198838976192868 1.5905936793053712 0.9286035538144394 +1.1334223034605766 3.511138321113162 4.695829826466848 2.9723197519849696 2.9366682545773193 +3.701558835153305 3.7739738561436735 2.4891968001899283 3.055764523644484 0.5711767857025648 +2.246269232949104 4.598731709821038 3.278951313560791 3.068820592277574 2.3618286612532757 +4.357527171054777 3.9660998798234437 1.1767897621685588 4.068802673136668 2.918382086281188 +3.8469557414436673 2.6751127719937546 4.559445712552423 1.4232409833915152 3.3479838781362776 +1.7992694714510318 4.626645797858894 3.7958999110692373 4.928461012074514 3.0457760158360143 +2.23533648670058 3.946084351479153 3.6766340808165365 1.4837639134044824 2.7812475308699542 +1.8521477313676953 2.0471588917486296 2.9595945351229833 2.428806547838233 0.5654778864985924 +4.061266958927386 2.7827616896029697 1.576923040608449 2.207293365322071 1.4254621952089284 +2.4537069712616355 2.7413569686554586 1.4710970490735025 3.881346985962849 2.427353966622043 +4.8234777493281165 2.3094562766605113 1.044767335650167 2.346097435459549 2.8308592324069544 +4.748199641625657 2.9124396087290902 4.904697215150526 3.331316988447108 2.4177552060044674 +3.844718166914638 4.051443796033764 1.2050827297854072 4.798287433736302 3.599146500245515 +3.460270273756698 4.898385871473151 3.606965178880404 3.0377830946584066 1.5466559790058831 +4.984096964178849 2.002126269814628 1.9595258655423775 2.7869722332004425 3.0946432287741277 +1.6557658688452324 2.236111313372178 2.299664397709761 2.9575479149517707 0.8772750750146137 +1.576466939778694 1.72087457007469 1.070413767012969 3.2917059654239376 2.2259812655117157 +2.0743766646145723 2.5532550771906464 3.025027056641419 2.35112836559239 0.8267188033599908 +1.1720622608365185 3.3702034836289343 3.2623545563502767 4.353816136620429 2.45420317344452 +4.1624172229730245 2.5648119515784207 2.751832677942622 1.7013493310326715 1.912029776264731 +1.774214205244259 3.45462443348861 2.9106336966318276 4.88709865194216 2.5942614083314934 +2.4360086270686527 1.2577809905301915 1.7631724158608053 4.191027625346511 2.6986480470283425 +4.436196203871786 4.909115829377377 2.3059653361319015 1.4003064343455578 1.0217000629212054 +2.0323449450239703 4.891307279076884 2.453515647984968 3.734465522014193 3.1328099539085943 +2.275833285602927 4.775899888967996 1.6889535880149222 4.186274069190569 3.5336868292140315 +2.503260271776766 4.302733154761303 1.1926946764552957 4.841749902122675 4.068624668922792 +3.5553269302175825 1.51066060080215 1.2752444097592366 3.8686023990547884 3.302448494570089 +2.148213358542591 1.6091005350226668 4.547279715913604 3.405699629684062 1.2624768234543842 +4.1468945698844735 3.187667550482136 3.429482842924498 1.3491338727627293 2.2908444539960855 +2.8200393353880013 1.760092561793749 1.91010030514729 3.7392755368631314 2.1140882647551797 +4.771627687547501 4.431939126678765 4.836648171571682 4.170518747917974 0.7477410831579963 +2.7316672153841655 1.3251205968661712 3.2521433856146085 1.9838521460772491 1.8939208162834094 +1.6094451673277956 1.8638831948647092 2.5589565260888163 4.115538509583748 1.5772400518620777 +2.736127331676993 2.8760207650698817 4.612552278184541 1.7622256065829522 2.8537575768712107 +3.780743979238552 3.999919081845461 1.374122272982166 1.936105870741664 0.6032108170063417 +3.158114560843255 3.252312682790628 4.5607404779591665 2.6130826837594214 1.9499344013287803 +1.5176564324779886 4.387502459131866 2.9109650762088717 4.794520213872436 3.4327534390514938 +4.196118574359575 1.8928844825878635 1.247469580298041 4.103362361365141 3.6689250276410172 +4.797357972234812 2.2532650713978817 3.3754043180346387 3.914054652372617 2.6004908903457595 +1.0530625127228048 4.944477885134661 1.3243112461910331 2.274430641635096 4.005725959953114 +4.740069387021862 4.81795855140367 4.846593424423975 1.8280530070495313 3.0195451599953222 +3.0674578586360997 4.580443105657761 3.3343324326861317 4.034772408197416 1.6672553844565758 +4.8373212602486975 1.658048580593933 1.1462711970831068 1.2482573134616861 3.180908036950011 +2.8795837356615768 2.1125785603104896 3.34347722219515 2.240017348056643 1.3438454646458131 +4.03718392234747 2.868343415552133 2.5127267986659283 1.9862737097353738 1.2819286193739896 +1.8785381697329324 2.541618640809102 3.26942734710073 4.899632429964942 1.7598989525875937 +4.96672024500463 1.8458419158151713 1.9881761843732693 2.4343203804509574 3.1526062534509753 +1.1974358758715309 1.6141097729550506 2.126256474306209 3.05557365339455 1.0184535118793978 +3.4664253681055657 1.361058127998442 3.011774406813266 1.6183566187289227 2.5247147062323996 +4.376208493355456 3.0265991373803343 3.9339655695171856 1.1717650064339522 3.0742799749588383 +2.8646599110984035 1.9936385161635615 4.833610757576271 1.9555633805407204 3.0069644119768784 +1.3820110561871117 1.0448654680171772 2.025111867258551 1.4458093517756367 0.6702675227603403 +2.9068263402501042 1.7227585645604786 2.550174680753054 1.4931314012884411 1.5872482452621837 +3.9495699223422753 1.7949586133313256 3.83832491775142 1.101200015984901 3.483418237993861 +4.6319115396840935 1.2057935657567915 3.5793991857413032 1.1318779548210256 4.210539697838417 +2.3204362753238414 2.164408729037273 4.279399727211436 2.8124139758420905 1.4752599058880742 +1.71380013673711 4.507688930208547 2.820886384687524 2.5276317331748364 2.8092370638518767 +2.074472829694471 3.9312903740386345 1.8252969166577397 2.681116593396292 2.0445534260755256 +3.7887986367783855 4.071513649206934 1.0453350090365463 3.603186245321343 2.573427816204709 +4.823938037050226 1.5034608472005093 3.4298912341740433 4.516348453265049 3.493702628620134 +1.6134115590915319 2.12764404741306 1.2155122597676984 3.52033156365791 2.361488317911039 +3.1099219793492416 4.040416243233073 1.2029147146895736 4.158893968337272 3.0989728819588462 +4.391288614706728 2.9485859922537294 4.796968458198181 1.1229597742888444 3.9471167535650595 +4.957211518416846 2.695137448625928 3.549209612643271 3.5060426063435877 2.2624859088297824 +3.221549918430065 1.719224350654308 2.2958459070960604 4.575465918607902 2.7301372691639516 +1.8241934583061221 2.0129671369603614 2.547307740648155 1.9095985078241577 0.6650628296496692 +3.087030436537352 1.7516151531071125 2.928519114627337 3.2172674706315982 1.3662758112161066 +1.2925211228705527 2.8577785483769973 4.938248109018975 1.088760353069845 4.155548915763757 +3.469379101804962 4.252655187151969 2.9484218518686753 3.972125271115524 1.2889880202911979 +4.569885585883895 4.656754488192409 3.7420829917913982 2.8186864766416577 0.927473627861715 +4.411787236189431 2.6756374250445987 3.1627205903803013 4.288716958219686 2.069319691861488 +3.4394954196180625 4.958854683140777 3.61197637924719 4.535039432573403 1.7777789435326874 +3.773308973012512 4.580847545958772 1.2987975675099142 2.7884840772890382 1.6944864839277975 +1.3325928387475794 1.7601447270362027 3.074316057538717 1.5431090610464877 1.5897784384265379 +3.276822594885238 2.511410369893616 2.0138893541783607 3.98433345676849 2.113884063897272 +4.0304772973516805 2.653702889710951 3.2258317905482436 2.8510974972242598 1.4268614369053172 +3.9256466780799273 3.69442417124867 3.8631079606529797 2.8168974837280314 1.0714570498591434 +2.565081095915053 1.5071185390980277 3.795020709351879 4.230011472270321 1.1438976070659406 +4.9687434623237525 3.804863808376886 2.083256886813979 2.4054919611574594 1.2076635673930989 +3.1684598042387826 1.129065499353712 2.9368557055195406 4.988437803034938 2.892769993214694 +1.9036625071688666 4.957034290354644 4.537451367591274 1.6876938934727592 4.176625061895002 +4.7984454507449765 3.23991558411233 3.3452369844287 2.211078391866194 1.927519405419655 +1.6633507430448256 3.6642529578464433 3.8035532951827085 2.9661032720489664 2.1690855710286594 +3.071748162107565 1.0734796624116965 1.7728543097381038 3.601332453966204 2.7085806838262387 +1.572411861869289 2.327336489659659 1.5868478075801011 2.0949667783530863 0.9099978473072484 +3.23824693863214 1.3886279932347558 4.744484715213316 2.416980200964276 2.9729392033848576 +1.1619733218638668 4.444776472485174 1.715230215251859 3.219121215310243 3.610884194457887 +2.9230602236241343 1.722877818057479 3.322778326943938 1.6807570140462644 2.033880969634645 +3.170703342239975 2.562667990507468 2.408368678913241 3.6187815947505175 1.3545502632911677 +1.9320678137328802 2.480522451482293 4.139383965550605 2.6665847936733456 1.571604241006998 +3.7146586796717105 3.0025861359966566 2.7282943348908435 4.026233015727852 1.480436464921334 +2.5800818749352836 1.911337147125332 1.8911274974465724 2.820464088934605 1.1449393046149654 +3.293485931674262 1.618856445439648 3.4311290002773167 2.6546026464252686 1.8459082031328549 +2.926478915041102 2.3661034212075687 3.600469900737653 3.9621284284644074 0.6669464631937558 +2.536869537557564 4.250556860454324 1.6812723191276908 3.539222620554113 2.5275884877146435 +1.8065647758254366 3.524045192374885 2.2470037168619514 1.6709391144453294 1.811515776190836 +4.879626053569628 1.5909464864267355 3.0147573342496075 4.306036929003129 3.5331029262066482 +1.944307291151231 4.222506194814883 4.977741676118301 2.398541810566097 3.4412878680980428 +1.949739042669925 3.646055696497209 3.6248516918129146 3.5626119061548245 1.697458094024874 +4.847600786727882 2.9490216901275748 1.4984675202663094 1.6700417926184672 1.9063159016754831 +3.652273676124765 3.355297411409788 2.303966711252505 1.6714643452885523 0.6987518477643246 +1.523686940296486 1.6479314939989242 4.39508429507149 2.7305210964530753 1.6691936230765694 +4.16601056357779 4.790794625030822 4.818254101341638 3.536902044588448 1.4255589138269156 +2.2463162729184956 2.340171557416166 2.281214909276396 4.1027932694966225 1.8239946646990908 +4.474075810650638 4.784217876420122 4.62758576200639 2.7143289853437693 1.9382310477353326 +4.750138243967637 2.791433176774558 2.528118098027633 3.3985426430378545 2.1434002026696026 +4.325107562864172 1.6883772876785343 4.501320262091984 1.2970486606300056 4.1496630031866735 +2.656904034579915 2.4068619747127626 3.3390990081137892 2.8214864110348805 0.5748424413327371 +1.623927077993582 2.8922924669906003 4.468321797552303 2.1408884377434187 2.650603102004679 +3.331364426518174 1.670154326056092 3.0014973074215865 2.768826722595164 1.6774249905497145 +3.778281306108021 2.052341839351542 1.9239660143055626 3.251704821299388 2.177557664564828 +4.769563773401735 1.48682876555843 4.161845276495281 4.429176222348364 3.293602126294354 +3.741927693723049 4.138659466718604 1.3768021203524627 3.0722683634519923 1.7412644489549052 +2.990667261876557 2.655761367785734 1.5847584082834478 2.9754149788678927 1.4304152037805187 +4.061571091200184 2.975454714120364 2.6369664754918847 4.585253345292711 2.2305762734323373 +2.2271461250212603 2.552056842073807 3.1834902396653604 3.9587532615259757 0.8405948650331223 +3.68803103388641 1.5692785233755049 1.8854125281245904 3.6058924496900886 2.729315548137717 +1.063221808994531 1.2416691096925279 2.636767194029067 2.672573371084678 0.1820041797370025 +4.59882747208738 4.3021140078113955 4.100080695404396 3.4336035861364316 0.7295413744681225 +4.584041526657694 3.4909028631275665 2.0976529270962585 2.3897258506661543 1.131485187877906 +2.3402330805046283 1.5009816325592293 4.763921794107899 4.3288633022813165 0.9453141722141214 +4.549373344860148 4.671815245743625 3.4568540678756845 3.8640503668505684 0.42520682613382665 +3.8101791729559835 4.820969479832618 4.282371333344009 4.197848514330861 1.0143180721103662 +4.615796152007139 3.68163097852897 1.9464477081661555 3.634472556877678 1.9292725212387842 +2.614405620775916 3.5262723315929 3.2244425694666794 4.475384833576067 1.5480172629629507 +3.4749939603934283 3.8748907434052784 1.1481112316657387 1.3369042763605368 0.4422219474295218 +1.3756593906352457 2.0918554081060248 4.334746689895699 2.3725692796339826 2.0887979616952856 +2.5364090301952285 2.2841374930045517 2.1633657082872833 2.7565944617987563 0.6446404288200696 +1.2622969667589143 1.2424121465749782 3.5036520756114986 2.9958950516507894 0.5081462402253742 +4.722993058681656 1.0407931584309442 4.0822392524985744 4.633572133786796 3.7232464397882556 +1.112576945753783 4.320250805569169 4.201710586528909 3.7103733075083674 3.245086117917096 +4.394012221153629 1.661794401633447 1.5450623854241563 1.1516995450322844 2.7603892003673645 +4.4221828828029235 4.898697361421576 2.4833442927127938 1.91273025246874 0.7434153827147032 +1.3325189887541562 4.138741669160888 4.659662671447064 4.707495134071241 2.8066303063477807 +1.8690836767488923 2.1088030961769806 4.085332018482269 4.8619030703943835 0.8127287362452662 +1.0340335541038224 3.4083041169503536 4.050746796331782 4.001697480304702 2.374777156072188 +2.165088970461478 1.6046197149455712 2.2791582091468143 4.276463831714468 2.0744530692013536 +3.392340528351969 4.985606905603028 3.9509081704290576 2.416650072008157 2.2118873527937244 +4.008773070569655 4.604816875254697 4.73220298383131 3.3991821298720057 1.4602098527930198 +4.323096344149447 1.527465054034515 3.8038724043944683 2.7531749803142826 2.9865564430022777 +4.130564727164307 1.886070190785281 3.4079654610330494 4.306994101738519 2.4178519848501945 +2.0772253183023883 1.6749316586509684 1.6204384043167805 4.247413652397906 2.657600260126911 +3.0951293533242277 2.098863680366994 2.275288962326145 3.5324862721402157 1.6040855235668283 +3.48848859292178 2.312210113743314 2.227870908072664 3.174542150348112 1.509906454562581 +1.9972812306170558 3.815516020388245 1.8135855491099657 3.6231981133012665 2.5652827101926396 +1.169194762541156 1.1496468195042628 4.885035456657549 1.2557680261553585 3.6293200746394563 +4.566702131146572 1.835277018285744 3.2527582497302685 1.9149323215985632 3.0414571115089304 +4.141065350817991 2.2525811062288383 2.2936576841602614 4.680117647897006 3.043281764901148 +1.1273541546511625 1.234698592069472 1.5817529027403534 4.4807816283405995 2.9010154050090873 +3.7240544364111496 4.568971750743625 3.3363018992698192 1.848177314427181 1.711256862096359 +3.9486685851684142 3.753099834481611 2.3011079910160976 3.4870828655634947 1.2019914888645888 +1.6277916805745356 1.6966065056073312 2.06605301243527 2.3978363625073893 0.3388446126609848 +2.4820632486198235 3.005370994469779 3.507723134577756 3.5316185585878688 0.5238530215195716 +2.8384830075565315 2.8396325392230954 3.452906987946032 3.973213571298856 0.5203078532016806 +2.0445039847265853 3.3645800406761444 3.3491710130216616 4.9755137975298 2.0946578828565365 +4.150886229135772 2.0449435774666034 2.2557219274896814 2.4116257656741458 2.11170558053911 +2.410560128106001 4.576144094971609 2.309445476763787 2.1951507370235075 2.1685979814335523 +3.00591199373961 4.458234222357838 4.435568475873296 1.206206078422484 3.5409068541558497 +4.898856794036348 2.115145343953359 3.906985884953555 4.707307952539268 2.896474555246051 +2.130059082348729 3.1445733894841887 1.1390690414089972 2.2958739958947474 1.5386477771424234 +2.239246008752697 1.820487796739234 4.608128366549558 3.680894333321745 1.0174091568806662 +3.7657529827093983 3.841397458876165 4.080331082572759 3.3992284673286024 0.6852903466903452 +4.914969691046804 1.0573673054252066 1.1833208712868775 4.826240951294416 5.305842334151626 +3.110531119731853 1.9644510739999945 2.8296854525245823 4.2357800619225365 1.8140015219957022 +1.8643033428936304 2.8664378878910375 4.93094102523921 3.648818671445185 1.6273018700829573 +4.672701959857276 3.3896783928117165 4.334873029753869 2.124343940190283 2.555892863443444 +3.601927013316083 3.900223353566722 4.648789446108619 1.5789912732905926 3.0842570464284944 +2.3428448324162985 2.343320809703588 3.6672439727141786 1.0282777241429732 2.6389662914960392 +3.8706649499358834 4.7798876312014755 3.7444853949288723 4.46225310852238 1.1583938772304714 +4.444211710326389 4.154090640626928 4.861134512380104 1.1317062162512896 3.7406958779149417 +1.2442829585145563 2.823755018793636 2.3129822843601655 1.8893131357215678 1.635306557410688 +1.2159131389113496 1.3782695163428968 1.975747916879985 4.409046927869303 2.4387094271713243 +2.505076268960961 1.5891909604960457 3.414118803464921 4.908853204380421 1.75301934602619 +3.9623724539321534 2.6289467993199773 4.92053398774184 3.5299637135352944 1.9265797839396057 +1.4815143180305248 3.6391119831935113 1.5842799482657108 1.764084387836681 2.1650767471861596 +2.975405828210942 4.018726208340839 4.9479583451916005 3.255125071610249 1.9885175150695926 +3.904813430064353 4.28488966830019 1.7639795354165386 1.6837483992712734 0.3884520331761245 +3.548677906822649 3.9769706368876174 3.097862032414573 2.0484663925457607 1.1334310175754756 +3.3554725601390714 3.1109850861169788 3.9404996931503855 1.7555538506008737 2.198581920199495 +3.9116031830266675 3.2173932968492003 2.637249233993381 3.850400126128854 1.3977347577976398 +4.3259990502680985 4.574056925354608 1.6632230784800308 4.246085718478252 2.5947470255288887 +1.186345720538747 1.1234245891977919 4.951379646212805 3.6147116247128612 1.338148148924401 +4.427997330935543 3.5678675978282435 3.5308484437113323 2.4246087168784487 1.4012813746705293 +1.3291199577911157 1.3889288641647224 1.5769861869453097 3.760463047022124 2.1842958370542465 +3.9771269714512956 3.7124743488369716 1.2281147783728001 4.702933107257537 3.4848821256119917 +1.8070863757663895 1.3193067393330447 2.958597859762674 3.83696661797793 1.0047191891905205 +1.5495518344341246 1.0495843008680676 4.490722300306111 4.516358582531377 0.5006243637563595 +1.8994569899002967 2.408200722119429 2.844365962343026 3.350845185542957 0.7178728220273127 +3.6519635310632963 2.3155902452029515 4.793451571792839 1.7791705726014984 3.2972387692199545 +2.3358724592108726 1.7613881787082106 2.211344797417591 2.409064146448795 0.607556688322978 +2.645609555765101 1.0632891204935286 2.6212156155575213 3.713890547897977 1.9229343378397603 +1.3963227912056455 2.8310488054579177 4.096588605830652 3.3776198610096313 1.604791198879694 +3.6667682192517024 2.900944616417683 1.9645092847227215 3.2228743147228336 1.4730812399134205 +4.753547041430508 1.076469093562412 2.284806218366801 1.0220477311539184 3.88786075261525 +3.9072756274498954 2.6580570053738026 2.288419555394853 1.5050269491245771 1.4745342116412992 +1.9260562921338278 3.4525583516476703 1.685594288772216 4.066088258808808 2.8278896865119365 +2.639322784470928 4.329752768966555 1.8484839502197485 1.573615213863531 1.7126314123908712 +3.8542855301031826 4.462056669799965 3.6363190511201937 4.9421749361613845 1.4403629232749078 +1.1726224529515306 1.6505422701049808 4.922501979854918 4.888389078101241 0.47913572366714974 +4.151926002700973 4.747679504466884 4.909846650817665 1.3010453330684895 3.65764530618464 +1.5272159806103693 1.8693774488116937 1.591259706189164 1.9994945508860718 0.5326632695675517 +2.109717479765322 3.0265119179198208 2.2341250379318516 4.3002628700496475 2.260406508382828 +4.488577558803864 1.3504634201405494 1.525934166578213 3.1462207476745583 3.5317260584818126 +1.2223628883820816 1.8505738284827866 3.1762888298249443 1.8718179915090807 1.4478581260878787 +1.717383205583762 1.788695483632834 1.9467889964413208 4.164648866310555 2.219006048521934 +1.7224271091503778 1.61335227207796 2.470120219844937 4.745311619921782 2.2778044751615556 +3.7393245151569316 1.0154880610670372 3.7601647769925197 2.8394092136781155 2.8752523082337373 +4.300195238509929 1.7168460222836552 3.173567277592125 2.463153282603903 2.679250122189421 +3.4531351770426117 2.6270327353338776 2.4436548032904293 2.7283117407203306 0.8737704596884145 +2.8326091642292264 1.9838913614764637 4.274241266695029 4.788687052766745 0.9924597601497118 +4.1032744896745434 1.3072521173299623 4.499479423414115 1.6798807902100061 3.9708786885295173 +1.1226222482349075 3.538497956895736 1.104241338099751 3.3440981703363164 3.2944520134028785 +1.3632536458372124 3.4519700000382825 4.453131642727881 4.248797380001072 2.098687327648194 +1.1347878703563277 1.9420228425677197 2.5940596585619993 4.752619784453663 2.304562890756198 +1.7903361039629835 4.832718857808212 4.675815505514258 4.825988361746577 3.0460867859671774 +4.408067212533499 4.418552060461596 2.047713186471682 3.863525470379532 1.8158425544156402 +2.8007306608585223 2.6187260895683666 2.690149586519835 1.8788872867212332 0.8314277978544076 +2.510484222149141 4.010260617756927 3.36865966607541 4.071076024980638 1.6561153275300489 +4.658577955902605 1.8647132044192443 4.343888869426184 2.344131608503699 3.4357982117978616 +1.5576724837451406 2.503327083794643 4.948303238049135 3.6085227696275317 1.6399007061888824 +1.4765230029780056 3.4366307921331285 4.126787591110348 1.3395634841045272 3.407439033611751 +4.6822742530138335 3.613818129538665 2.837500064548956 2.9307268303236444 1.0725156025197924 +3.4606414419898734 4.497363913734954 2.7182441117890113 1.3382085796755034 1.7260624418939898 +3.4257662878937984 1.8277837754753965 1.0981566673532481 4.74270114022989 3.9794789262880523 +2.9286945971269684 3.164457248716437 4.439115669791814 4.246559771906538 0.30440401064194583 +3.529076434605273 4.001458750585936 3.604960532151521 1.480663917865594 2.1761850008484815 +1.2951451136892502 4.3964866373203275 4.377434000948744 3.3940397210917075 3.253518642309257 +1.5686966696825566 3.760276869685198 4.852846225658567 2.177389267793884 3.458481416233165 +4.689745122534063 1.3902610589292381 1.4122432032358736 4.503602593839778 4.521404424275399 +1.3696181414254789 3.736760606516401 3.8482967327724262 1.770806078132889 3.149496923343685 +4.305840274859156 1.2244822994702425 4.563563575657484 2.373728506896707 3.780230760266809 +2.6996144787050826 1.5644641300828246 1.9310244740524727 1.004891810293739 1.4650215100325599 +2.0827242359709204 3.4731579563066655 3.834035032301084 2.9394877761751776 1.6533362404813756 +3.580784405340647 3.725368048360591 2.181264388295264 4.409082998418988 2.2325053615708343 +4.936711611570301 2.46076037415044 3.372667855207647 3.3146334815647567 2.476631284346756 +1.6218450228184986 1.9321578703192683 1.8246242892615898 3.6308306014760308 1.8326689023408802 +4.032210089012594 3.9339290710439228 2.561147268337773 4.5937248134744415 2.0349522440309906 +1.349577092142754 3.6234727181995097 1.9307417162849267 2.678894916341784 2.393811715435314 +4.272266940475194 1.6461819546400056 1.9715811158593946 4.843843633267346 3.8918137573290505 +4.732203821944653 3.208456352755381 3.13926196966505 4.468853781682504 2.022281072562508 +2.710897714095172 4.6826875688118665 3.9372089885639387 3.025261585532241 2.1724647976572466 +4.4382998244698975 3.2875169607211783 3.844595418619553 3.153724144158794 1.342238547119228 +3.540058493412913 4.240697334076618 1.73892347358378 4.285707033793504 2.641401387067308 +2.799348821420771 1.0256914502678312 2.196634587277248 2.1132543666300667 1.7756161554345946 +4.370456326203203 4.378338082577455 3.474522734950211 2.5190404565283857 0.9555147861031273 +4.202777741718284 4.053629191363633 4.224592815903787 2.497037113485639 1.733982120735492 +1.0821593242675798 3.073347303203795 4.215795542303109 2.1883843308707482 2.8416941756110425 +3.9857278076195346 1.9189166919256913 1.333316599518807 3.212578302561324 2.7934446005743325 +4.583311716508144 4.345736021542915 4.217995908621867 3.9877136959648483 0.3308656952668618 +3.2610601286815672 3.227268502840055 4.7022564876943616 4.74951409813624 0.05809609041655991 +3.3697092599118066 4.50030440808092 2.8782170283357993 3.1399780866343923 1.1605017193891352 +2.9325479895284876 2.5297954024189644 2.4229209929690447 3.1287505141448717 0.8126530375176797 +4.185298596130945 2.1405791749644716 4.968102931661555 2.112429204816031 3.512228629444724 +1.1771862614986013 1.1599642819308134 1.0124204050205128 3.7868184119441555 2.7744514588296756 +4.763848473850179 4.4310461588495365 1.0804865916933721 2.590560101215608 1.5463115420349771 +4.63140573101761 4.091896695920871 2.564601884294551 2.2747913750661417 0.6124215298389206 +4.357062807556049 1.4979930494021017 4.388391293259593 1.3753654835457079 4.153625453985046 +3.1915689920110615 2.3844629737431036 2.1663930645079645 4.349204298767162 2.327248377189792 +4.307085292985468 4.70974863804649 2.0961731674969757 4.4637499374906575 2.4015739695602645 +2.1246408800299617 2.8330633847248494 2.0930797030201096 1.7424563600777492 0.7904423911799355 +1.5806728637711203 3.019611537170969 1.8622220606347577 3.3072609593903053 2.039284660051745 +4.3613603923343165 1.7926294091101238 1.4586517559392722 3.7382098617373316 3.434350596821117 +2.2790570669771446 3.1046832133609654 2.8349347848030315 3.5092525982606886 1.0660033054071238 +2.188437498982983 2.955106615144682 4.625914455012232 1.4617353983078356 3.255735037831378 +3.6896342549532153 3.794901462314122 2.6312209632037593 4.022090302136408 1.3948471969819873 +1.3361568624830316 2.7734897504417164 1.852371702694986 1.6984323417522051 1.4455528899542642 +3.5596663158519504 2.032494411919482 3.5095784926804217 3.380524284852779 1.5326150895507786 +1.914681039013281 4.547009342344127 3.972903925579617 3.383271543908699 2.697557903369559 +3.819317890630971 3.666054086153479 4.79719233497684 2.223332996559713 2.5784184469786835 +3.1955988323387885 1.540192502165381 4.130129511734253 4.48374878939629 1.6927541792925542 +4.317306238403213 3.398568772555313 3.4814096665837524 3.018007880409887 1.0289896727284245 +2.8891353910011244 1.0840634312707853 4.094879376882305 4.448324589869426 1.8393499662620592 +1.6294736560670788 2.417284070176299 3.8317553657173056 2.9420160281219836 1.1883944368110713 +3.0519563794718847 3.797147795093449 3.9753184293110237 4.894615512489388 1.1833923157838735 +4.995293575969336 3.507445151906719 4.403306842391738 3.643000467770261 1.670855683856529 +3.5581100162320674 2.616663391575161 3.1882405719397022 3.4312018021455675 0.9722920890663613 +1.7523900008598052 2.351556297423028 3.5942019748464897 1.6142180411477787 2.068655754020545 +1.1028064519088843 4.639947884644958 4.119885361489073 2.016804483338703 4.115132889132494 +1.5284264449650253 1.6995476498420796 2.1639065494132828 3.7943344104624175 1.6393832611210324 +2.274823719476467 2.658727547775729 3.845045898858546 1.1499314045241182 2.722319651869403 +1.3909400944122376 4.391415163110485 1.856270443083917 1.3023217810943661 3.051181698621006 +2.7572755682674557 3.255670125485337 2.5339193976527334 2.462710415955933 0.5034559104218593 +3.9154342551078387 2.349154046117738 4.693023865330675 3.806250951420904 1.7998888559903077 +1.5534190019206058 2.895539770374428 4.639080269138506 2.7201003052656767 2.3417455580955937 +3.8985386516729745 1.7699977789371735 3.1817117262557653 4.140098125462689 2.3343501744793342 +2.27673813315587 1.55977576171693 3.330951863384009 2.6540800266830105 0.9859972238187749 +2.186101862710575 4.333945814896607 3.4098655465596446 1.3416336744369928 2.9817472595453296 +1.8272471686264882 1.0751521152001438 1.8198190284172102 4.927870750654321 3.197754286603248 +2.8135820518734067 1.2139681358808918 1.0674367246376826 3.789064683443783 3.1569009212187784 +2.92262153942661 1.688557642963155 4.229327920234052 1.0773302825307502 3.3849671798470604 +3.6033139219918078 2.4232889413427006 3.2139588352148247 3.632016653863143 1.2518910873909583 +1.8437559746640537 2.6284017337584875 3.1688492299959137 3.9305080358229705 1.0935232525002743 +3.334279322131982 2.030792507524995 4.36778722790331 3.123438570113291 1.8020769844815432 +2.8294672668108913 4.361813649359176 4.990697115900499 2.8450627064069955 2.636632787346647 +3.692481777028855 2.067927722334432 1.6266226434555278 4.01182807086637 2.8858934158374994 +2.6046365104492217 4.353031463423447 3.335499517797936 1.2113077664990364 2.7511952871201326 +3.842548743423356 4.015702998481569 4.562370160397979 1.1881179817720722 3.3786920784537977 +3.0816658616273997 1.604507782787267 3.7705573078332195 3.4047820544814864 1.5217711805153875 +1.160934471537724 4.855275307101758 2.8798834969061162 2.30273408859295 3.739151728511722 +2.737861975118187 4.692176280493461 4.921245785578129 2.035638211169814 3.4851220176167543 +1.3207278587629618 2.3415528392297222 1.4271476228128717 2.020679861371913 1.180831977443814 +3.507903482218026 3.9914069692597316 4.512948623902842 3.772411968841805 0.8844038441065699 +3.9755833788224786 1.0848660220783835 1.2300993039146109 4.645207555354531 4.474283317541994 +4.289320710694354 1.6983812989991032 2.680624270897703 3.085974979533183 2.622456144927312 +1.6709854865156206 1.1222007175590316 2.1241683720261917 2.5248732008080457 0.6795064991946963 +4.3721435797634856 4.031229268681754 2.664890998830694 4.105053513916886 1.4799630527008834 +1.7475294893187363 4.967337864395882 1.619227693335374 3.4055462791303706 3.6821325427221607 +2.2924376000186126 2.9340687623566137 4.95972224996226 3.6043714185940745 1.499555408970821 +2.4978599884880146 1.6726565626156185 1.5291355718942952 3.9715137446370976 2.578017035002292 +1.398340052952546 3.120303967897381 4.564488060928223 1.6132499721701827 3.4168649345428266 +2.368615637932895 4.847382630777205 4.41934256024785 1.0170577516144745 4.209492573205454 +2.2706748954702873 1.5172222657133756 2.1809273445048056 3.2234897467518704 1.2863231428637114 +1.7472605603538742 4.876120331119584 3.6385225351460067 4.621205825796069 3.2795472118630777 +4.114329682557219 2.0059171454046645 2.360006071350285 3.916102492877602 2.620465512063113 +4.823005691736674 1.3852616925258223 3.9039980688577773 3.457021927668486 3.4666801806487273 +1.6322869963626307 2.3488891793637796 2.713881206475122 1.7026219690024114 1.239420805883095 +4.294938524024857 2.846556900318013 2.706099111362735 2.2429962492617914 1.5206161872010178 +3.3438954354573074 2.149799343784581 1.3900714837344155 3.9753133241351124 2.8476904413061583 +3.5543298748159926 3.0308922313722393 2.0145217449824315 4.377293077572001 2.420056887075393 +4.485564539266702 1.816847698086931 1.1274667061221124 1.5397895527175582 2.70038140051014 +1.331945822795125 2.024699914871862 2.361672429015387 3.5385790584217665 1.3656564159515923 +3.2115489500449828 1.755246451629347 3.5736339538171293 3.783450258849137 1.4713394743392525 +1.0351967049148159 2.3145018374057553 4.3965464196549 3.838811985029431 1.3955964035438941 +2.604204428517986 1.4643286469470471 2.0639699218594028 4.618810573359276 2.7975931712756696 +1.9923925424785622 4.522129076393406 3.184771725361781 4.451868076427893 2.8293285588472297 +2.5288753254359313 1.0145696049742692 4.907684190440515 2.059513167300948 3.2257092231127715 +3.194777113772055 1.5918306235186646 1.3999085224338201 3.244570040475427 2.4438112788755246 +4.451638088817335 4.654758882535138 4.610247420855615 4.77355405384778 0.26062830471725074 +3.848157272152507 2.681824605107366 3.8170334741133987 1.753611773857056 2.3702407057734467 +1.3631714129096935 1.0029810080074508 1.6414111929710362 4.324578776623973 2.7072357506780937 +2.9601620978491106 1.6561342870241251 2.1937572668411756 2.1796283777938292 1.3041043504684418 +4.473940223011536 3.0077805441956666 2.868702547984981 4.0520258145966075 1.8841120341131161 +2.337401186371109 4.090239751613961 3.08366604148589 1.2573138483448432 2.531403833684726 +4.151746379832884 2.38433424670588 3.6963501249514326 2.7016893867304193 2.0280768310108273 +1.7256819056439476 1.5704430893160652 1.2882370167134969 3.7729214191224973 2.4895292064302947 +1.9545176617195938 3.0897911126772133 1.2198580405315318 2.413231561107815 1.6471144975568197 +4.973281490916428 1.2520004912396945 2.5056055426713253 3.105146995265213 3.7692681294826262 +1.0140111789770359 4.156561562980523 2.6715218485680015 4.9767012517551805 3.8973677010103707 +3.0641268771151986 2.256987926841448 4.194546810676263 2.473527188340895 1.9008897457539151 +1.1026042355770893 3.745518799078935 3.8284816616388593 2.7091109843513546 2.870189558747164 +3.77141661505173 2.687486255879574 4.209610047194385 2.010443691729539 2.4517825520513874 +1.6372756717122385 1.4292524748581252 1.168861361737334 3.1281070275587743 1.970258163152612 +1.5547603701908423 3.545479660653101 2.0634132086478987 4.360173838172182 3.0394197937684324 +2.292826905920691 2.1457782097106857 2.9931455196393615 2.133501805062352 0.8721299416192642 +2.9171257112402653 1.549364945856735 2.9159071726237604 4.118259106073534 1.8211039737458568 +1.588170507683226 3.5546495920047336 4.227138363057451 1.4899437187142044 3.370352282788152 +3.5506692054454203 4.047477678948984 3.569331890387488 3.265125065689134 0.5825465230674682 +3.2393895693514727 1.1272718872591474 3.379661441787297 4.248875757641532 2.283982186859828 +3.627183310733162 1.7738651574814384 1.7936600084115253 3.1734337373905106 2.310533211263788 +4.720064953020989 2.2195683227586724 1.8742060700838494 1.8128646158765434 2.5012489224300465 +2.9588922769813535 2.6993154464607083 4.5523158840549005 3.357949388506063 1.2222485249051254 +3.186367364600533 3.286082508719647 1.219558112341733 4.1255010235784955 2.9076532312732697 +4.618253938428239 1.6414098999038842 1.8788422199496737 1.3232327454153632 3.0282507026153374 +1.269270062850433 1.1931544407261492 1.4270746143339306 1.6989482447279105 0.2823275736356071 +3.906949721608268 4.6221078031758385 3.5956675797528463 4.565283020780775 1.2048257903577568 +2.5254958325731605 3.961882364544333 2.9920496184509573 1.8749514455337453 1.8196468330868893 +1.9508215579897095 1.7985758524398747 2.389137600933866 1.5288553835599363 0.8736499575849428 +2.8743799473451976 4.491687316512019 2.827091581266495 4.094018610974937 2.054455457041393 +2.6677766370770346 2.481487486540908 4.578245955163814 3.0324837961093967 1.5569471089192608 +4.900400903366174 2.590126343841041 2.5487308324775366 2.709687936831838 2.315874722395659 +1.4026257789036483 4.295938274776518 4.801318600977367 4.811025460710496 2.89332877874257 +2.2856721837102136 2.1094313376107676 1.9312059208509318 1.5479140736631845 0.4218690270148356 +1.6903566508965078 2.3716738716559043 4.83924639976771 3.874056862356111 1.1814330274848948 +2.061372435535439 1.8459508712930983 1.1452949992830916 4.30021452246311 3.1622655878472714 +1.620821637811578 2.348306945818639 3.5503706508800703 3.004114429878557 0.9097421240928565 +4.297371172578112 4.413248100343238 1.6435837564725708 1.6297102237538876 0.116704487053329 +1.8202038597765515 1.9719103786779026 4.93358857622621 1.9176702693121959 3.019731461878069 +4.660439073019481 3.266379397412978 3.949991111221685 4.8113479089382665 1.6387000677746597 +1.3516039623533223 4.751513667099285 4.678622454372107 3.7495404069078626 3.5245679808092985 +2.5853423433078895 2.594364735737176 1.7092273783970295 4.20907649392475 2.49986539717039 +1.4742556310927104 3.758887194807794 3.2945481560598635 2.263011753347055 2.506712734248763 +1.0983754409552642 3.8540891970935625 4.6247307913503315 2.474539420765393 3.495322765626629 +1.0305608340286776 2.444694065213245 1.0853129114877076 1.6652935384510572 1.5284470298944959 +4.196268177360088 2.391906494407961 1.2320844793940209 2.4657660176672977 2.185793041617196 +3.781349487019492 4.153698079624412 3.907277940763505 1.7003181938659506 2.238149860675326 +4.481615172661787 2.532081484745982 3.737826902338681 3.3546106423556976 1.9868407843191525 +3.5491276814142876 4.874175322451999 3.6917697907716356 4.219627174331643 1.4263185718479654 +1.6346872200118692 4.10631842123646 1.0067874371416883 1.1231304702291514 2.474367898315629 +2.6623061428995487 2.942178226430679 4.878039480992937 1.9399534250082122 2.9513857856118935 +1.7715835070830357 4.057719262116434 4.731521134585094 3.6472511573945017 2.5302288580045507 +1.1599452682109859 4.450964461171072 3.7450894165641047 2.2998843636401736 3.5943601618964838 +4.813736580211781 4.793327818159647 3.7759780346457457 2.918564660206363 0.857656231969447 +1.1513902604593724 4.7191224929178865 3.2881731670786785 2.976570384445685 3.581313945560768 +4.194881287332766 3.226427441052364 4.04558657607537 3.5712637907996587 1.0783714374031856 +4.8623425640812705 2.4672750733055375 1.8866503469848452 3.921075218512363 3.1424883203061427 +1.4461863712354295 2.845675427456321 1.9026947690237184 1.6990393067119336 1.4142295308087256 +1.2886179760013503 2.215756277823161 3.943479469439646 2.960436931772023 1.3512801565807997 +1.276913521530655 3.424373043421307 1.3483334078917837 1.7629765918389886 2.1871239946909053 +3.3576061833996826 1.228354625568616 4.154303362658165 4.619719483049687 2.1795238841651448 +1.953869515156987 4.9535230225255535 1.6130762452472696 2.011012568828518 3.0259336545757085 +1.3763911123378674 2.8824104885098087 4.5737276856383575 4.599529994835225 1.506240392688104 +1.9245473433756475 1.9193025985272332 4.098568171590386 2.0092438735390905 2.0893308808745594 +1.0831467682372655 2.259831763969725 3.455842932868349 3.0670952038425843 1.239238627547006 +1.2977208133289553 1.6713579017128968 1.6679149963589666 1.4021422349270471 0.45851917575514467 +2.9957051072515557 2.37757017690261 3.8246120297311625 3.297806566938021 0.8121667241066899 +3.2794395170361614 4.373831312703446 1.9494570104772242 4.42094908820004 2.70295514070628 +1.5480565885145077 4.062679565404643 2.7388302841442616 4.683139377439287 3.1786265219703824 +4.760352097146917 3.784827027733622 1.2341155950519593 3.9825252197265426 2.9164026858542185 +2.8086846007827475 4.060147828362733 4.2436471025462374 1.7607873275269892 2.7804231462843108 +2.9323991416199062 3.771384201749124 1.397258046709632 1.5310283015950978 0.8495824928823271 +3.754448267352314 4.185225406358745 2.397963086436552 2.392999697484788 0.4308057319958177 +3.080356572382202 3.8926503642159145 2.13673442809166 1.899660405177916 0.8461827796593929 +1.9962662485164464 2.4007029005240024 4.673490684428483 4.613941632738745 0.4087971318933489 +4.919279764468181 3.943640086963001 3.5017216479348168 2.310313401891383 1.53991116271774 +2.7290916921632364 4.918342090313834 1.1692285272621947 3.728458208028161 3.367858943708305 +3.07951833766577 4.939100501599409 4.901010830076879 1.5813164273042886 3.8050514782614675 +2.4724917440007235 4.782613590055875 3.4217016482422804 2.235491021665886 2.596874774459489 +3.0698022246469336 4.656240014469027 2.4326858457587415 1.8216205468169115 1.7000546051661038 +3.7369235364329683 1.9816638417793246 3.9888733095665256 3.7960686481412993 1.7658171573362 +1.0215986094714924 4.721333916431698 2.789687027387146 2.4557096446414994 3.714778894329185 +2.9028969128105238 3.601056053775654 1.010646834491157 3.0079849945777606 2.1158416556659687 +3.445153928089153 1.786296215438722 4.334179119992329 1.7766879395604414 3.048371704501718 +2.40585773270921 3.9694249004478124 4.8671189308507845 4.487464701903583 1.608999571655508 +3.801014187124528 2.0297953200007814 1.2324750944289318 2.740970281026616 2.3265369120741477 +2.467936033116331 2.120160546377414 1.375665945011527 2.1779973545451328 0.8744618230092571 +4.52122971664855 3.476315746741852 1.9824108914428784 3.4364894527605627 1.7905836107230186 +1.3411134124505457 2.2501916281646195 1.7846362978137096 3.175827864729406 1.661877606246391 +2.967076830724228 3.5073667073042203 2.2584861210094362 2.251508710537053 0.5403349285320386 +3.606418762418238 4.028210159034767 4.37903956696346 1.6830156559979295 2.7288189589559795 +3.8094916930302514 1.3345300149553867 1.188692134430736 4.785201750874286 4.365812264528799 +4.432898190417778 4.1671378806159645 3.0852740396614644 2.921269846362455 0.31229139867376254 +1.5546498432743516 3.5107664030941272 2.8439416437082907 3.2439294177076383 1.9965926512311185 +2.284691982833846 4.172031202136225 2.453946435188419 1.0789247073916464 2.3351090082970716 +3.801386180501678 4.45849298976911 1.7382544649715364 4.038298710580284 2.392068747035406 +4.94718268387534 4.357556432766575 3.2268032662089547 4.094170898253786 1.0488020428639688 +2.330289776501002 4.229223682606646 3.3194091746008185 1.9341143824372775 2.3505300765897608 +1.6385048797443291 1.2647591864363048 3.7785481534505885 4.2762509371859805 0.6224097558716879 +4.193587211611142 4.010108377846452 2.0551667946755563 2.434139746917347 0.42105223069176284 +2.0665825094626973 3.395422025300473 2.8233367575995323 4.648191033928574 2.257411701194172 +3.2719348807441997 1.7881411452119114 1.3588813704422593 4.8606649151488455 3.803173917083294 +1.724370435484965 4.445634558127937 3.933834033841992 3.0925840137887906 2.848329338651578 +1.6746834684106582 4.9655978756684895 2.5536156935626306 4.772581547419589 3.969121703410001 +1.80978368195894 4.7840305298254915 1.4157241365480555 2.483806062735642 3.1602125423921574 +3.4210266358267423 1.312820701435537 3.235700475728565 4.142729564276356 2.2950455396950473 +1.7212146474143268 4.587689550646925 4.57310147413137 2.5258803735048865 3.522469674207663 +3.9270575336597764 2.1930786933458117 2.468052585978455 1.2228411161831354 2.1347679553446506 +1.6448238705558214 2.251167375454177 1.6828070397592656 4.044928797841324 2.438702861345986 +2.664726446063154 2.2030328763466156 4.663932290188082 3.871714233165575 0.9169353315202313 +1.8473542412527113 2.361405299635568 2.653207464316622 2.9375209745345803 0.5874373691867006 +3.9929096346941755 3.0957681740955985 1.6966622193037488 4.3201379678025615 2.7726319271202144 +4.264079434375585 4.483713718064453 2.6752321383366193 2.437319191351351 0.32379281788627917 +2.660831825837247 4.507584565020019 4.066205917123163 4.285391555238938 1.859714500571335 +4.083513670036983 4.663751457750708 3.0801113178720323 3.966727056077792 1.0596052838321737 +4.0705817991145725 4.790172673685108 3.6754681206799686 3.9105196858553954 0.7570074405556433 +1.1653405060523787 2.8248509055357047 3.1106690091830207 3.2371651399500645 1.664324498735851 +3.3968126082475205 3.3658301191971614 1.4644149658226953 2.009432998672438 0.5458979490336622 +1.9592160959129172 2.412405645693734 4.409155258924352 4.234608213636001 0.48564126580165456 +4.884218576821844 2.847627219601962 4.423374469419478 4.556021629110104 2.040906569462873 +3.2490126379145536 1.7263707114591935 4.2371032490536455 3.693446602420499 1.6167872419177756 +3.841060675138601 3.3895669813439553 2.3948556746723257 4.0798721648453515 1.7444561122858198 +2.1921973958723404 1.9661782163775188 2.879916992303601 2.524454977498206 0.42123379905822306 +1.7301580299050485 1.437267759915985 3.5239822499924855 4.844079878643095 1.3521991197391117 +4.780048736944931 3.7241655873025308 3.411544988917544 3.068171988372048 1.110312678123767 +2.5432393371059856 4.501740320123861 2.168731926457786 3.006431675226062 2.130133087290185 +1.5142029497845741 2.083962047579695 3.828773722402642 2.6515331207807527 1.3078688250842965 +4.094324645495868 2.253308581034074 1.7193232420205327 2.2190865789672416 1.907643452682524 +3.5009239420340226 4.927269625729309 4.446209495058071 4.3126112315204495 1.4325887425972752 +4.250924512099383 2.8399865180156003 1.3752249205005018 1.4370081778608248 1.412290053083721 +2.7679666082563146 4.947629156673386 1.3144137560127276 3.619296296873322 3.172288188695345 +1.3416448054837589 3.203882755118889 4.847364170196167 2.656591961378597 2.875310948747747 +3.644146989735846 2.2423474922614797 3.6385625560575106 4.606036656156875 1.7032463020604098 +3.3814672916818247 3.3329117231801453 4.261646872572349 3.1537221792711074 1.108988173633593 +4.842884662144185 1.2338891429943804 2.9407789763243755 1.8959992556264416 3.7571815662840966 +2.8551427214376526 4.867316369430615 4.737846723218341 3.4426231279957875 2.392999571938646 +4.187462955760088 3.818544357254186 2.1072511622915737 1.4982003193164801 0.7120701241115449 +1.0726551460723877 3.8212581614113117 1.4252031548641515 3.57829170604719 3.4915052406040723 +2.6152472157679543 3.059547823133995 4.0695778095079795 2.877644719119898 1.272048553188091 +1.0850660852753715 3.705285057548474 3.7046723090741467 3.221066621210324 2.6644740426572286 +4.516059599765862 4.860332082228856 1.6991744021762587 4.783687699709257 3.1036665131484606 +3.9281357894955473 2.7215367356348725 1.541723960154545 2.2433061912779926 1.3957431367574875 +2.1297241018283186 2.073120879651315 4.33466791079578 3.435815840402048 0.9006325383928329 +4.347685628372188 3.440561582996027 1.13005756897571 2.3115956735492933 1.4895993844852875 +2.141595191877069 1.5873048231403306 4.459096567517425 3.552210011629417 1.0628645436388975 +3.81218087092138 2.957724203888592 4.125611909440249 1.0241323944575567 3.217028345802078 +4.963066515232106 3.694981518089495 2.3912832527617205 3.1091252374715306 1.4571673462544703 +3.9977697046088827 4.045695552057017 1.81769113505599 4.787919446459748 2.970614937806319 +4.774201846595731 2.8375938299198302 3.7651948033716907 3.024201258799923 2.07352888654834 +4.320798082891463 3.768557806848982 2.3808105731547053 3.0744338299672065 0.8866129622753421 +4.356925893253603 3.489105145103685 4.4839809117668405 2.042754592050549 2.590887646154312 +4.736021230750669 4.4762620588665705 4.529555966461743 4.331058925023049 0.32691880159731923 +1.4834367178205508 4.1590629819742695 2.2085732250042525 1.7347211483596028 2.7172618011464467 +1.8305806849703883 2.4063037058664567 1.2742461292636689 3.153110904362959 1.965092832386959 +1.4931498556566956 3.236615829165336 2.612309457280531 3.4816380152942807 1.9481801104006522 +1.5693975427585367 1.1717415410214373 2.3343808756706452 3.1449983736950724 0.9029014474575385 +1.3833242973271842 4.943161745113644 4.887818492062209 1.711951274992472 4.770594851286482 +1.9820608332988634 3.582219523017576 1.5248244718935458 1.4088452840931613 1.6043562585302382 +3.076550580262636 1.754160479425472 3.258367005108622 1.016010554753338 2.603243751407477 +3.0440778718982604 4.381736962896121 1.0589760326186797 1.8512469413693378 1.5546784351054133 +1.3723900943271397 2.2892551359423634 1.66182501732 3.609049161978405 2.1522832931741918 +1.8575377395086523 1.3274236700147393 2.640822123990069 1.9238843752727228 0.8916393117238011 +1.9346649747829066 2.056099904555592 4.832609937657271 4.5857170973248085 0.2751409034955139 +2.2645689276171774 3.4460522500802964 3.7292065923049975 1.263384671298951 2.7342605192944656 +4.5202800157145475 2.9875063631320806 1.7233699663150528 1.007759732563129 1.691594832311059 +2.5577356714714266 3.5698290844762823 4.363612228127464 3.776018106745495 1.1702990763605967 +3.778384986343363 4.561707545077949 3.5958468439680793 2.8289579274750563 1.096226637727045 +4.0349225599194245 2.921293733176387 2.673732278228111 2.4289930988849715 1.140204556059406 +4.033227791569082 3.6850575351967976 3.4949595580252955 2.499061188775772 1.0550052555775267 +2.1359294719290975 1.5489390962645677 4.8475116045704265 2.661936109627296 2.2630284897054866 +2.7682721086306636 2.260120337001441 3.772352964074769 2.914599349477247 0.9969751683793493 +2.9794783426655886 2.8860516211700054 2.6513043185178793 4.175989147390368 1.527544558984563 +2.77998498899363 1.0780833341172125 4.486193065295459 3.980162445507119 1.775538293316835 +1.0170229862396387 3.6717743809118404 4.355423012926186 2.0468325255049 3.5181380027119538 +1.0272134226910041 3.1776113551721314 1.5716890835069601 1.8709354352099905 2.171119445591762 +1.281546527758079 4.814468309762262 3.7450986642600714 3.2392128525592954 3.5689573788768847 +2.194494862341653 4.7062431366616355 3.1369902315806613 2.2495847652052987 2.663900871898631 +1.9235841654797654 4.215456719035376 4.528345927097937 2.717965542370011 2.9206432406490777 +3.488437874681872 4.241607257133682 3.066777572964694 4.108517520717015 1.2854906601783809 +3.897394006693142 1.0650839868601039 4.858197659384247 2.9537349433229703 3.4130570293087867 +2.344220710595787 2.6881451699526204 1.769408202404445 1.3547515457830581 0.5387245832745309 +1.1078628102455572 4.969700656196993 1.0075682740769807 2.960832323643784 4.327705165067617 +3.4181794556350606 2.5849282250103256 4.793926331619586 1.8785398941873628 3.032125606385953 +4.942889897868875 4.158794241813547 3.9710589814193726 4.471913384207588 0.9304091200311696 +1.6984955393409846 4.901391148192488 1.97786935325226 2.2858565714632073 3.2176694062289184 +4.1450151222648115 4.088791019626225 4.013741221965592 2.7511754421726273 1.2638170350259297 +3.306622178990525 3.0429080439595193 3.0424102835688855 3.5995916474884404 0.6164383321260992 +2.519377118448647 4.82584227048063 1.4918279277831425 2.6830456940054623 2.5959162667739517 +2.4072834939934475 3.3464607389591547 2.8908027111778574 4.546687190979641 1.9036825649014597 +1.2905758429319967 1.091984936728155 4.542557392693671 4.686840890895244 0.24547113044133384 +2.232132103173646 4.991430320603293 1.454228501399769 2.2405603004165875 2.8691539433873974 +1.619706315311412 1.2267785872389583 4.225008280498849 3.498438027541204 0.8260124284604415 +1.3184901729855372 2.7410524347120084 4.919455957236144 1.5517180269157862 3.655864077862685 +2.94912238875518 1.7127238195988248 2.9806297799434667 2.774546106112795 1.2534559834439458 +2.042348987394722 4.177941378095884 4.190419357984787 4.785160576125172 2.216860838161885 +1.2679672330562637 1.4787579954986532 2.003310269020082 3.4028254842724603 1.4153005275396298 +4.896199111260605 2.2322829107785003 2.2497392910827108 1.9007462306907734 2.686679303413927 +1.9585424968101037 2.1594370422193743 4.959211119964083 3.582658225143191 1.3911349649171265 +4.938103774766078 2.7289401823837394 2.903842241744084 4.394357529053899 2.6649652154600254 +3.3145081039898927 2.065022965434396 4.229383060621657 1.5657839647631624 2.942103542523485 +4.007730171302697 4.565205649555637 4.142317155640119 1.1906941118384045 3.003807167837949 +3.8000499813905573 1.2533921591329524 2.3863134460175224 4.507708678236489 3.3144809239075745 +3.0633657100645237 4.039465629925338 1.8485844889372829 3.4536731618689265 1.878584760271879 +3.925114040470699 2.0630319991287616 4.177842539812053 3.7069379801886053 1.920703161074691 +4.667783611144392 4.545679205666871 4.3620992703438946 3.4700380416132712 0.9003792099118062 +4.472059527772082 3.38511143656887 1.8628576169646633 2.4911962635840763 1.255494168766156 +1.9028429551075927 3.1540020566213247 1.2425595587922738 2.1317267078184083 1.5349323490655584 +4.355606100737106 1.2365901322709867 4.638356993634347 4.380824449948086 3.1296299497870605 +1.0848532314955426 4.48048422024647 1.088258534341934 1.3671700794396449 3.4070664011366714 +1.4856844334498036 3.1469832963886533 2.3606127102430245 3.6491152230196726 2.1024159049611595 +2.5141318469068676 3.4441057680799205 3.9456945688374736 4.16752080342364 0.9560640001656064 +3.7657747132601203 2.805632807389193 4.9027839267933775 3.1722502598321034 1.979045035337976 +2.3116185425315754 4.889734347050659 3.430403757438983 3.7964470725682036 2.603971737569721 +1.300573527416899 3.190256052446554 2.9925141161986493 2.8683990315234804 1.893754102212422 +3.297670340822266 3.8005942165524633 2.4862203077466583 2.7458250043889847 0.5659744016280571 +3.01455137739635 2.2652546241937643 3.07950474886964 4.545787705435345 1.6466424423884503 +3.2517949018563264 4.631883230068038 3.716233334340308 1.7099556530624964 2.435116820207948 +3.577981558019734 1.9829718255865387 4.184658738511398 1.763893661129118 2.8989928607070157 +2.492623197751537 2.1068956884754613 4.584880775039261 3.886589316523876 0.797744741410352 +1.521828897718264 3.6923770209683346 3.274737252795865 1.1337622082449927 3.048778984566447 +4.051931556450172 2.88391036241975 4.000164502036826 4.4006526701240904 1.234772967991341 +3.8636726452512296 2.8266708452751708 4.829970122800329 1.520366420188291 3.4682631678546105 +2.9736125923817642 3.9388517221408454 2.169950011698534 3.569037057026967 1.6997444331498524 +4.445467709069963 3.64003511873607 1.766977606230785 1.0200447133827857 1.0984672976426038 +2.8925501357556507 1.2805215939807129 3.584485751102378 2.08518482056019 2.2014857028429016 +4.420745018756012 2.6803753331992892 4.368396815667651 3.136093355351761 2.1324770715558286 +1.0177916079295755 4.630800844943406 2.240649277522037 2.4319557051062346 3.618070465867447 +4.939830867034761 2.3946351971750524 1.6412871691553526 3.368801346506768 3.0760894380402446 +1.8020088258097648 2.2820873848318803 3.830254062771207 3.3098915438614194 0.707991930687695 +1.2111413972694378 2.795982757094373 4.056983654457507 4.080843619029402 1.5850209568712716 +2.6904922193216945 4.959094920330046 2.7548682003542706 2.9488833403599726 2.276883855090949 +3.0109867066553093 1.9827571346262167 2.050764273347225 1.9791721592070002 1.0307189159039423 +1.8900057457689794 4.524135788756859 3.0863109351313387 2.5351962884884425 2.6911648847879337 +3.9001953311136845 1.9928571411734528 3.920105915581793 3.5238349212412734 1.9480681897100274 +2.756748930490235 4.810103345620702 2.7094142805324197 4.992982254621012 3.0709847030584276 +2.9723917499185806 3.474715857770725 4.218495967665257 1.6252700227722765 2.641429595994477 +1.5297205826118527 3.386518776103287 2.886648284104802 4.012829985643968 2.1716318187562793 +3.4999580126632157 2.253829827128529 3.5039083099007473 3.321072859416083 1.2594698316108652 +1.9416206522884547 4.451798838794776 3.443982645449833 2.750170968253456 2.604298210924819 +1.5750607803977572 1.2105405517319276 2.5772653967635866 3.4027910350934887 0.902423169387057 +3.5154838221376896 1.1745838275862992 3.911761970306511 1.125670656176486 3.63897205198961 +3.8215253027446856 1.5216626958203938 2.027619043129879 4.569264066271123 3.4277291950192414 +3.2416732632550365 3.1377307238917584 3.5609216344061814 2.5992182082822306 0.9673042599450453 +2.0332751518285384 1.871102971738006 3.8517502742606604 3.153955443692734 0.7163919608445067 +4.340695980413409 2.2823018739669965 3.8739455459430867 3.4464359497352866 2.102320325807436 +2.915687006087526 4.755455832489636 1.0914315545867908 3.2766815655219985 2.8565830890932125 +1.4705760096179596 1.349838683046853 2.45900789708586 2.8795431777185794 0.43752419851292584 +4.395848203819018 1.276864912537893 4.700663926897721 4.193155996340711 3.1600033339965155 +2.0124826082902554 4.896313266210999 1.2901680495493042 3.295005980052921 3.5122434982713844 +1.3201654489951844 3.880240565672136 1.015139434707642 3.9217905670885687 3.8733196883809926 +3.1223388697619003 1.325352826883254 1.9755344821905827 2.160887540509572 1.8065200232847847 +1.0284256116413548 1.3570613394848068 3.1970821105790184 3.782262632534786 0.6711465450195063 +1.9463481673118035 1.9962109591663992 4.538664728879849 3.6225843975111163 0.9174363583007714 +2.705722081523114 2.34505028613986 1.9119091229133094 1.2259914168731787 0.774962736810187 +4.88243676988599 3.964013098114377 4.771740439555465 4.290418272707857 1.0369055256720972 +3.7102792822136506 4.647044954322791 4.840239705605706 2.648549661625243 2.38349222220782 +1.5160106763842802 3.3214691717038605 3.6337455359870683 1.4981990216529737 2.796469076032514 +3.0374804693267228 2.165082057154538 2.7389868787184533 1.8619736724065907 1.2370251224635507 +1.4961218482720775 2.331780658131668 1.2916686114397908 4.666894753382337 3.477136344141298 +1.2854869409003848 2.294408470818094 1.9392534007539677 4.301654076490941 2.5688245573129356 +3.505535330511812 1.2480523374163996 2.628206896688069 3.3915737069903216 2.3830565144759066 +3.8216675795683224 1.5600521035719552 2.762387870666854 2.8490216663236363 2.263274171596578 +2.81674918568863 4.304065350311222 2.2081384988840407 4.328217746798172 2.589757786161441 +2.7624961534647468 2.9128465526978053 2.194026254479311 1.7184467056593746 0.49877966057700707 +3.866667346478541 2.606831883656275 2.5496552957607643 3.9373194153454145 1.8742457422033099 +1.0155105980666805 2.915687278526104 2.9605694452118883 4.201960665889968 2.26974086180304 +2.4765948782260647 1.1627261122922805 4.97209951063102 1.8688928040812143 3.369887683242879 +4.414286002911091 2.0587500295716676 2.9382907518682764 3.5762032332421283 2.440385636654307 +4.5758822642422405 2.489053844196045 3.1409540839126864 1.7670427394035215 2.498496595411625 +4.1857284023883725 2.905319846630397 3.3721062008210425 2.3562848307715587 1.6344231782214285 +1.5233591669055402 1.4245799291651662 4.357647279428985 2.1728259376758334 2.1870531848102392 +1.604109790152357 1.0800387108165164 1.565617479734445 4.83537844916868 3.3114932120467566 +1.1927116349068787 2.877377510406599 2.7381158572644324 4.547986163100193 2.472595728383285 +3.6513442781144203 3.7199282840277528 4.231332070791359 3.4409692571004964 0.7933329333466856 +1.0161712693816933 1.9693186413118822 1.9077783940982287 3.8247397736576803 2.1408481598048708 +3.798249081884983 3.2461022925057628 4.677970389466569 4.667088523660417 0.5522540104202088 +1.9970126856309092 3.178081522407647 2.1456421744023797 3.5743996387356836 1.8537182874140528 +1.7774237073161814 2.067085966067115 3.7982060455389823 2.9480198777228135 0.8981763435376349 +3.211752626269034 2.7800783107317875 3.989050346455133 3.6956287107239514 0.521956867001204 +1.5344799454743372 4.39509083492341 4.052529079096521 4.537568617325089 2.9014406791246996 +3.6228206544660995 3.1744014725570944 3.447953858028263 2.6938990583032365 0.8773131730985757 +4.567355172946561 3.1246773723577728 2.8501127711367027 4.091245860226779 1.90308449133137 +4.855028804111245 2.530302230596305 3.3451523237903107 3.5397676151417734 2.3328584940442334 +1.0128703130809598 3.2313472642957617 1.590458990720426 2.955061662876287 2.6045691459291764 +2.152805967733372 2.888605488595294 1.3482123532213057 1.9499343976882288 0.9505105752689383 +3.204510821059897 2.5965377953173396 4.514625460092997 4.134084327433227 0.7172466477276427 +2.510764117950989 1.7005429383318513 4.82290341143775 1.1121313133394648 3.7981953509434154 +2.4802756707867455 1.1510384142646441 3.762116051569301 4.2501005771805715 1.4159804311368358 +1.0302646084298224 4.415607924543256 2.5078056280424392 1.272845906289751 3.6035641915061505 +3.5723834350311705 3.2982275433202237 2.0248295259544498 2.138096205637256 0.29663242183920463 +2.956148104846149 4.596088159495673 1.755459970334888 1.0020704888565493 1.8047157930394702 +4.003722793442336 2.1526808610506616 2.2533814149982763 3.592593929311339 2.284698315744339 +1.7357295038312905 3.1772122863102426 2.4708997085270847 1.9677883289408635 1.5267592057860375 +1.1880952606150492 4.97438051089328 3.9526723148634964 3.131547282007003 3.874300235662959 +2.393841508550215 2.3249637711904896 4.012644331439426 2.8254379065375965 1.1892027741440812 +1.395199601212886 4.3872504502028935 1.3694856479947655 2.601084790746627 3.235615046844872 +2.880899544058943 2.11539393150956 3.806945812829125 4.0910677898030325 0.8165317756487914 +4.814527934614159 4.3407194931399875 4.600108045998741 4.385066641652376 0.5203241727956148 +4.536724532635139 2.140599178411332 4.802000580806411 1.8911608898020322 3.7701995199035068 +1.7556905778982643 3.0891401680538966 3.234964784525866 1.4246020221181932 2.2484441600801572 +3.174733394378659 1.0556640568180056 1.628114493679493 1.666298256778894 2.1194133285308405 +4.217041254541497 4.15352182477728 2.4775065034218344 2.523468293380893 0.07840410763354165 +3.6049518962652973 3.8770115207545386 2.8784440528717723 2.610351677678691 0.38195544362385364 +1.416233827282663 3.890404582336423 3.4399779146522658 1.6735947311655894 3.040005012507022 +2.9298132264865875 2.72700789507599 1.5443578602192525 4.611392417775413 3.07373241836245 +3.664465961905092 4.813480131888646 2.762149453917009 4.52236698356245 2.1020464586906957 +2.3979299231809654 4.45352442601252 3.9594295373014274 3.964957229028891 2.0556019350660137 +2.0333116788861503 4.640493157200984 2.624927512704529 1.9271841049121403 2.6989333307782273 +3.2005121488954025 1.2477534511918837 3.8085129092575007 2.9903753631946013 2.117218830384466 +1.8882643954887852 2.611277060725997 3.1253148455929716 3.6027806271193397 0.8664415079057569 +1.620718360978211 1.1391405782236341 4.477574466334042 2.4679312816400016 2.066538867437538 +2.6861054203795436 3.300804531977112 2.1766145476211762 2.7951329696563287 0.8720206627114376 +1.9780317700146886 2.3414634244430093 1.6351233275967458 1.6897971357328543 0.36752114597205193 +4.559286701686613 1.840980694471229 2.707610181673947 3.1051354523723798 2.7472193013494763 +2.6087588114875677 1.8628675212661165 1.8631963017771649 4.198340501019787 2.4513776224981516 +2.4763632872659826 3.582974297816752 3.230341574725951 3.107929132202478 1.113361008279326 +1.4615714728288927 2.7092306503690566 1.3915183331104917 3.967175420103005 2.861933411712257 +3.5825937153316416 2.444010664748159 4.483202381936275 4.101812408284024 1.200762122603163 +4.662008251305187 4.2036170464662295 4.263867397276101 4.944285004148189 0.8204209994967522 +2.783227669287289 4.620417244800801 3.0242185986525043 2.2159854905535266 2.007113921381358 +4.2643491518228345 2.755307784124295 4.315033680373343 4.2537911292881105 1.5102835824734724 +2.071195786752244 2.0068078462108776 3.709709992934229 4.7767604863161806 1.0689913761643843 +4.714308685936929 2.166150409771988 2.1956728540055384 1.2826783435540117 2.7067821442632782 +2.78401134263487 3.4639797367318206 2.5563470561406407 3.297190035337715 1.0055870607741444 +2.3829113525086583 4.6138471128573215 2.57649469288383 2.452610794777791 2.234372750239408 +2.3547251564898457 4.172275770603054 3.7456235902490023 4.191340914950721 1.871404330550338 +2.2049228024788303 1.8165918835833956 2.6000591676375793 2.9132008584710998 0.49885731538010825 +4.276585584585549 3.8896784737997994 3.6677584541574406 2.999372305559455 0.7722934390594188 +2.042231224438176 3.1767964512672986 3.247655692011842 2.9232829119187493 1.180023709251276 +1.259118292065693 4.8031540646768285 4.998523555148961 2.6508184803395642 4.251106758931514 +2.9833372266274725 3.348922605312694 4.674276038629682 4.354284692402336 0.48584681821414283 +2.004180103479259 1.5508303152620897 4.075958639931464 2.5150106125576506 1.625449099368772 +4.069234133480849 2.1253111681062107 2.30144528959202 1.9476778958566063 1.975851174603309 +4.8732529411035985 3.5777988717008595 3.260577971164294 4.1254453469804115 1.5576253797634314 +3.970637008208724 3.4532952126679053 1.6133507155366713 3.2591680534857193 1.725212231381139 +4.384762465963215 3.0021703779219475 4.5737633667679924 3.3320308200593614 1.858348890674142 +3.097432076032243 4.612835642088431 4.919753868326415 2.4563563720947217 2.8921921084977025 +4.407472029721188 3.339109469791471 3.6317570520290685 2.8104290075613094 1.3475823967716445 +2.2779194417056896 3.428741561257648 2.3225183776940876 3.811673864767226 1.8820137128964014 +3.2181784937529416 3.441458329200703 3.9047574126913975 3.1335404278600723 0.8028882379322168 +1.8050920163000064 4.932706088337014 4.965419168099475 2.8745794066961943 3.7621244917558 +2.2024277232264433 4.930248731554787 2.590864876734132 4.69254986570404 3.4435573534266717 +3.7910989851361694 2.6850224538289913 4.261882750684521 3.5661200454137996 1.3067100042297646 +1.2414919018476702 4.460449414041255 1.91894086852334 1.3225164195854515 3.273745498446447 +3.3378820775977034 2.9412082050031425 2.029246398928983 4.551980874310788 2.5537304858733774 +3.2417219707543348 3.258181623996928 3.0633780058908755 4.665689696025886 1.6023962283181339 +4.145733103519087 2.255068362981094 2.723828679526828 4.122532897709713 2.3518049772623995 +4.196976491991808 4.333240004774694 1.411275095946276 2.701803121622486 1.2977019418848335 +3.681234280039028 1.1809073672429302 3.2931811898672385 1.8261441024920417 2.89893644059106 +3.8677897512440875 3.8072995150639612 4.6995750888545365 3.944300307150308 0.7576932522805634 +2.1850713319850916 2.9720500696245784 4.630402266326347 3.555863967153284 1.3319039341808323 +4.544721597568781 3.27700038539333 1.153209647909653 1.692409483141259 1.3776260501723196 +1.5938670763607772 1.554910451265651 3.96586920500107 3.064279004294863 0.9024314426305527 +3.6726174784921706 1.4711938846603507 4.55682758126552 4.471112932822091 2.2030916550241813 +3.6629756891409437 4.6558979104696085 4.438020190703277 1.1002142897614746 3.4823616655899152 +1.730622703032303 2.761906512647794 3.408759310693488 1.3752568728196928 2.280061065150166 +4.045014032927421 4.517601018603514 2.561693014954185 2.0434687708276504 0.7013521413889988 +2.03547139356416 4.761923489092723 1.216579513264929 4.052942129572951 3.9342717141043755 +3.9666036186011695 4.771650732473148 4.1464189461847845 3.4526197205803313 1.0627597193170906 +1.02758576597141 2.236229681868791 1.2355420572061862 1.5799370757743265 1.2567529766228147 +2.9353456007554404 2.0078158824370793 2.8301072315207447 3.7590590382434685 1.3127310606430973 +3.1242770352425415 1.503348886237077 3.5427336805273493 2.4291943657059036 1.966564992541893 +1.1740312225151652 2.951736524246781 4.896635380738719 4.911359399456503 1.777766277251286 +1.6139420708443497 3.4017781013482167 4.693095309230991 2.9639178760352123 2.4872499406857695 +4.1311231603022405 4.072261937008111 1.577225761929455 4.947555048872854 3.3708432396117267 +3.7480158076792076 2.3200487416632036 2.530340425157378 1.0616189389755148 2.0484708310343636 +2.199844927344162 4.943304467610485 4.482527861143945 2.11024569141262 3.6268847433994185 +2.973453713436321 3.9221248115379903 2.480149889781901 1.9146385804864416 1.1044364596093756 +1.2903874959607458 4.287906657267214 3.080524871426082 3.9090715562449447 3.109921338446322 +1.0109663955816375 1.6392476566959204 4.126803952665485 1.722098096791381 2.485427045065407 +1.8602650183315674 2.778993323665595 4.809524394022299 3.5899254463264425 1.5269195434739757 +4.021844568785028 4.819129016128942 2.9257747607884474 1.9013894109107898 1.2980862201797159 +4.057025767916876 2.5724108480712 2.849687863881292 1.704545972561081 1.874948375685265 +4.814761599363915 3.0420836809452676 2.4207020878451875 3.782523428164444 2.2353846124096863 +4.324670552273719 4.936602263780552 2.517700351078923 3.4949323169873874 1.1530146290229815 +3.0052886597745982 1.994134562574366 2.463896442677537 2.2407975955717045 1.0354736615987719 +2.9771975209446553 4.536359281612265 2.328697901476782 1.9295288025375066 1.6094475342415218 +3.352423124579945 2.5006443029081162 4.423873928574508 4.222149532555809 0.8753398728481172 +4.484043411358433 2.3535323701459587 2.0916969059184627 1.9744242418754085 2.1337362007661627 +1.888884939611474 2.953261181754734 2.173886623811512 2.3547435457063774 1.079632349939688 +2.2953878917109494 3.509049203083718 1.961076227667537 3.230696766505525 1.7563912125043015 +2.003444167618577 3.9321826672535547 3.704142212988627 2.357650949262214 2.352248057341261 +1.9939933688763083 3.7511191403880346 3.2761149233018214 1.231501297353792 2.6959109511115216 +2.443864295509031 3.2870563112236044 2.6322491344318997 3.2654538213058926 1.0544766241335066 +1.5133474775221791 1.847905183203184 4.8450111443519015 2.8093174033208705 2.0630021487394172 +4.988466482408967 1.0849139506181507 3.37563256170442 4.987550158582801 4.2232689598907465 +2.13783520145984 2.0749692575622123 3.258922845250958 2.648336339055815 0.6138143110499553 +2.2824081077401375 3.7611561406788554 1.9605832531564311 4.024089180708392 2.538651700797533 +1.8687855758678977 3.5209037872152864 4.9700637971084465 4.858090088335926 1.6559084200890966 +4.5247936415494685 3.1779489639499032 3.073370505465135 3.9660648539140904 1.615826038078042 +4.221612519953732 2.389831861861219 4.567696951050571 1.1673852450601814 3.86232314511061 +2.3123201379906257 1.6897294329716068 3.6982087819349356 2.3468164898622903 1.4879113928757441 +4.559563809422979 1.2345648618480318 3.071790488055659 2.090486111888391 3.466781833352012 +3.876417682444216 3.2225459670574956 3.4948842294882847 3.6395980824695315 0.6696941984424308 +4.26802001419877 3.5539174077910194 3.6234077594577365 4.106645723575266 0.8622421135868958 +2.733301306413162 1.832678591011824 4.979335051610674 4.025070022763373 1.3121520570337188 +4.660807552332018 4.813828704191311 3.244378612656712 4.097543032779491 0.8667785188153794 +3.4271314019856822 2.4557527551876777 3.354840482951547 2.0809295661815197 1.6020067101360638 +3.193456388618794 3.30120389188217 3.6564513385226833 2.1686909655113524 1.4916569484845723 +1.180971940092158 3.543397739204219 3.2708344526487347 2.5053389853746886 2.483352364592542 +2.4371937629340317 2.7806116625975346 1.4078078801501848 4.814408904617445 3.423867169402265 +2.668456380649467 3.6316509359771474 3.632294669726273 1.3319120717590485 2.4938933113594346 +2.591260663175808 1.5355126578801657 2.536586310474243 3.871510399365399 1.7019477588303382 +3.0953616921702225 3.6507314851355397 2.4419513620609807 4.720200546879198 2.3449637428035452 +4.605634376375074 4.673519715286039 1.7867714488161996 4.021383335109407 2.2356427938295385 +3.338379611125148 2.7280716417347346 2.1106237272595076 1.05853249382102 1.2162942822276062 +3.5316322414039356 2.941364842927732 2.2160749246893503 2.989136187929889 0.9726455255780098 +3.4360336071988526 1.8688478819693408 4.709729466931581 2.1125626011668897 3.0333721871852686 +2.8371674408151173 4.594264127998275 2.291079612274201 4.408929183670722 2.7518494826524313 +3.1786665441444333 4.44739641599263 3.9732330884287297 2.2568411859788156 2.1344031134056136 +2.842011931189868 2.0905554059737304 3.4106823580117664 4.103154968419148 1.0218636041342923 +1.1902389458400449 3.4633424452858383 2.081056744650024 1.424368858839085 2.366059698858749 +2.044813036076984 3.1199336487290767 1.4512915369444035 3.630003814626765 2.4295414218887634 +4.096567183211 3.9554874880972593 3.5166317650238916 1.027253238278182 2.4933730025401384 +2.351947130563851 2.7693024565761726 1.9292443562742698 3.258644265727074 1.3933734558272508 +1.7759336892719104 4.635141765202606 1.9058955389493963 3.1860591599268835 3.1327128368143646 +1.5784085638397487 4.451551344178897 4.477529904035984 1.4122853633373156 4.201270466239703 +4.122946078128209 1.2631400114122298 1.2069625542617262 4.9340521353216165 4.69783859710726 +1.819875539881485 1.1480337584588627 2.5586869264262244 2.2299558989980817 0.7479541882087999 +1.3934283730897783 3.6948887720976704 2.7244498807231206 1.5983705758250952 2.562181603462406 +4.572967554474114 1.4121741597177264 4.982431909410245 4.799952246251685 3.1660564922000476 +2.3689101874082046 2.0290777391753356 1.8279408433233186 3.1557376991605866 1.3705949741784698 +1.7923616062876504 2.6977786421544887 1.6681717222718975 3.1231962820536308 1.7137317405025556 +4.235858166314783 1.277900060782791 1.1254307681010762 3.336138264659655 3.6927962019887732 +2.6825187407738778 4.401496638836305 4.3372768755160696 4.72158987430047 1.7614146289450925 +4.031157394930176 2.593155968029137 1.769846370130185 4.421955770628724 3.016874603953924 +3.230218655939368 3.758927809793807 1.6153944385763452 4.658612780336354 3.088804177184759 +2.6747894548951257 3.8473432510321746 1.3734774630943791 2.8837158792076214 1.9119891417943875 +4.099130534758846 4.629388226469125 4.526429556942606 3.7760459930567696 0.9188300781798137 +2.800753871411755 2.277727835162885 2.101680415762163 1.3460600968681065 0.9189767684331088 +2.351766529540886 1.0432144905356733 3.0134953045534965 4.29385423744249 1.8307450493756203 +1.3956882418761323 1.633104284158287 2.2165507250113046 1.9607756044982514 0.3489803567629398 +1.7796333138229627 1.1673441397339812 3.0924273519215535 1.9281051153900468 1.3155015405495718 +3.412576807009715 4.388849619551707 2.2503562814607583 3.751557116772275 1.7907296145562142 +2.208343523281905 3.9062383633928284 1.8909337374136461 3.1626679790447705 2.121356846316147 +1.3997033863495716 2.519696673375677 1.4563197042468108 3.0624648270611625 1.9580825106526716 +3.9955214716365193 1.433463087888874 4.983700294198366 3.361236181193522 3.0325785991001437 +1.0062963969946574 4.823425457560498 3.897376345439334 3.606673495955688 3.8281826512999833 +4.421644603522053 3.3225581134456244 2.40117546471564 4.057618992474005 1.9879125416680437 +2.1284397329797957 1.6051969594826887 2.917549405660028 4.921095074030169 2.0707434040126023 +1.0331179562029318 4.8623875839861785 4.700602150703144 4.488740876494381 3.83512595383419 +3.3631832618218964 3.3878584539384544 2.364129321963779 1.061820261692525 1.30254280297063 +2.927403475451259 3.8895783874807974 2.102856429632078 4.081751324546014 2.2004103177488257 +4.536548805454488 2.121963041430811 3.4902525545945586 2.524835888738912 2.6004333774464663 +1.8499902728941384 2.9839489564022847 4.504166577749301 3.48318476259135 1.5258657092898946 +1.0357517691740492 4.0767347338925575 3.7459801174923926 1.028205273395261 4.078465090559849 +4.686018814114234 3.1689737885020923 1.1396141900881562 3.044446383043793 2.435120385741683 +4.752960962323273 4.068414859888595 4.945334014679825 3.997928500475353 1.1688372746894882 +2.7170491549718103 2.4731963682510054 4.974639658481593 2.3874660863750257 2.598640274027584 +1.1509688324056158 3.79186930128121 4.06017445956893 3.7764398551119434 2.656098758004622 +2.8102993608676043 3.617693506243711 3.967249935592525 1.8478955624411397 2.267939211042376 +3.549110353275007 4.5376132855821 1.8149665650941427 4.225042060300726 2.604918797155677 +2.7406878209883216 4.253547663927426 1.094768721998805 3.6757724212655085 2.9917093775977204 +1.1548790437996996 2.8634384380576727 4.976089284901916 3.420957732561389 2.310326675773846 +4.077994049576029 3.8213032352218534 1.085433766467769 1.790229852621076 0.7500851266561881 +1.4749403717668583 4.513606695133573 2.1471231934546653 3.727626122837647 3.4251251852379316 +2.1304951481090413 4.388358944021911 3.342285514390363 1.0767882639563928 3.198503824074305 +4.839404735046325 3.203287942277954 3.655462158445695 2.7327778226117734 1.878356873219769 +3.0057969458485707 2.756165722617538 2.141974306168354 4.942225165542563 2.8113556557358264 +2.5734977293484906 2.1031292130959325 1.8746842303595144 3.2285186253109823 1.4332180957674376 +3.217176727229819 3.527039619308335 3.87426333186366 3.8013634437161494 0.318322800909991 +1.6275891232092743 3.2297754528042217 1.1888206815045312 2.1555121734886113 1.8712277989104737 +2.2506230706904176 3.8124088659293465 2.1248918152123535 4.4090783758540315 2.7670712159296067 +3.097577101651081 2.74503686511033 3.8350844206669588 2.924415833719516 0.9765254188361209 +4.635918225736244 2.9747358455117836 4.2632125406217485 1.1457029145310256 3.532476916999816 +3.9713699281986687 3.7200081881840297 1.9070541623785155 3.158296946855826 1.2762410548363192 +4.365515350678869 4.201000316518348 3.1175510452027018 3.118403377125478 0.1645172420585273 +1.4580237444742918 1.5712114832055195 4.764110306425805 1.3977546920119615 3.3682579454214454 +1.4228865545490224 2.5603980311160024 3.4806499970450395 2.3475348256579314 1.6055785097432098 +4.503909543596863 3.6203676735018533 4.936309900001641 3.3922015510400767 1.7790213122792526 +2.0719262651306694 3.9092362901526148 1.3965437932466087 1.8067470609137213 1.8825447800386896 +3.7373045003156538 3.416603341946762 4.4570423992444494 3.4727825812970776 1.0351891721830087 +4.74068428288364 3.4269565111159404 1.0056773614172232 4.558043390337072 3.7875038035277933 +1.3964798737592283 3.9621512798674714 4.0944410784023315 4.103753249752769 2.565688305437102 +2.1337458148872197 3.2153755967772693 1.2515824327424703 1.2157566763676844 1.0822229298491794 +1.736289652437582 4.3004749071123065 2.7419769897408184 3.988100318687906 2.850941839329146 +1.3397226792240686 1.9487862661491056 2.9491625348793136 1.8175768540592596 1.2850854469470023 +2.3753847088467857 1.8937827583047393 2.173092796668602 4.5153501276456005 2.391256958856868 +1.0467649730061859 2.265446542446722 4.54004765574318 2.5005030838962066 2.375905475443942 +1.5499834571887856 4.700917140500939 1.895127121964971 3.6906899675598073 3.626627773719233 +4.970012461412715 1.5605412331721675 3.9576952385477475 4.2752665975497015 3.424229201478554 +1.6028496944872548 2.350314682081402 2.2362949880534657 2.123063856714448 0.7559928549817336 +2.026930439930602 3.0345064197092513 3.1410911859698394 3.156717310379896 1.0076971423949679 +1.5585021225155336 3.205144056775432 3.0296452848602096 1.3905957433757585 2.3233409261457023 +3.2891617448444883 3.672621973193141 1.1317826504365391 1.3920808899672297 0.4634618864890377 +1.3066470336161933 4.643307395694315 4.219247705758791 4.413353691228722 3.342301528207554 +2.917489810818948 4.489399847638836 4.405484891952007 2.508579668865124 2.4635646103216775 +1.409729230154631 2.964176375618376 4.009048736204976 2.135566396252557 2.4343873985366375 +2.9841636079084273 2.2984800848465037 3.3675080972710947 4.142923808714237 1.0350997146900802 +3.111119502902271 2.8901563673935162 2.226098745158024 3.982685118307678 1.7704294376192784 +1.7921025506816823 4.858768041190517 2.2715205772826943 2.0084357474742878 3.077929638304474 +3.436924412494948 3.4341644714134114 3.64313169741683 3.886724202206503 0.24360813956943334 +2.47604849913831 3.6657830528402977 4.101199978733615 4.922991138209246 1.445963007156397 +2.4361187800561055 1.6790925538651362 3.2351658805727004 4.657517868227802 1.6112646846273766 +1.606783604450721 4.025209564264802 2.8657126334600234 3.107822986802797 2.4305146669580955 +2.2323503100193207 1.5078947283689286 3.6056198384701723 4.749857987195011 1.35429569547483 +3.195497355961478 3.9897738043351088 2.180259622399066 3.482014865611471 1.5249399298569162 +1.5776826848116814 1.4317888552281723 2.5349060758788498 4.705721451354798 2.175712389980193 +1.5394865443408947 3.876166595709194 3.778924442358195 3.7718012488412733 2.3366909086031122 +1.2426774437148302 3.7699997988964222 3.3274646052955736 2.695504845032756 2.6051355867962167 +1.6767969938618248 4.231156783841994 3.303906130535554 1.343074897778159 3.2201883578487176 +2.9345200348720337 3.7962091121263097 1.3570368016503327 1.2628061756216016 0.8668260937126271 +1.3004730479748234 4.531973971634675 4.658674309932639 1.0137719850989368 4.871130379818693 +1.9830382291328292 4.299051180070673 1.5966495724799268 1.1466009063813858 2.359334607631757 +2.344955620370009 2.89474163386754 1.533170385229357 1.3998845125100279 0.5657117503676768 +2.564070632121371 3.5085284325844577 4.551835962847119 3.8601004194126713 1.1706829625932558 +4.282883357299027 1.0960073543835982 2.398493416394618 2.6831054763180116 3.199559763875658 +4.644941565432486 2.879061923836492 2.46315993501985 2.0502687824555164 1.8135076543729007 +4.113575263367077 2.25252499757112 1.0311861447928905 1.3579234255368515 1.8895145785219964 +4.348250220024003 2.069133519968915 2.5157136264278095 4.914931727623848 3.3091721668079943 +1.6630492045455867 1.3356609279470804 3.824453623881162 4.001344238393763 0.37212010582174365 +4.613415923993174 4.0210934904255495 1.6289722273336542 1.9995728774293018 0.6987064527817027 +3.2630632697042175 3.037233155671525 2.0996234214108376 2.6886331123877025 0.630818243607999 +4.365399275897836 4.798819360386553 1.115485831900016 3.621374060398014 2.5430943323760213 +1.5682322289252792 4.738129393343886 1.6552533603247856 4.177744436872544 4.05107507511922 +2.7203130417665426 4.529947423647151 2.298446297648982 1.194282294799951 2.1198949835480074 +3.0171351877467933 3.1054890581314436 1.3613970170839464 3.622963496705146 2.26329170637772 +4.485954458635554 3.2067352872927306 3.3361926635581045 2.5489913899037226 1.5020278071906994 +4.347082019100279 3.899533938388217 2.6393889686153518 1.1551606760376765 1.5502364042419763 +3.2608443374333764 1.1477887991473201 2.207411758922757 2.8558830628524734 2.2103209585717822 +1.2265499023323376 2.5981211876501447 1.1821291447696027 4.032995625498314 3.1636446516084655 +4.466011285678036 3.409929676426577 4.660130519135956 4.998960518676906 1.109105105022996 +1.2299561340247398 2.4093362914261003 4.4814332531718115 3.981418905834036 1.280996449337655 +1.3302923230732038 1.047795825660573 3.9173891903850477 1.425580257565314 2.5077711276611 +3.524206497997838 1.9930092754508228 2.4126764887108525 4.062715328311318 2.2510426709695546 +1.851012606794404 2.539609048346445 3.2579628526841584 3.0875998964377747 0.709357875954825 +1.9328402918917291 4.5449460535662505 2.352508183322693 4.142748311024677 3.1667106317135527 +2.248456015284832 3.677665130030653 3.303991853949936 3.588737730662914 1.4572984965262181 +4.974254507537042 4.63695350197036 3.987044532034089 2.9881917223944425 1.0542669982890058 +3.497791228105591 3.0917952172050995 2.771902198225813 1.3888851467451802 1.4413774403511717 +3.543331052264501 1.5097400644075138 2.9995038031570678 4.747068045162806 2.6813192808448316 +1.0308471194196387 3.165722942839019 1.0770694685659459 3.5674721427058724 3.2802134474426925 +3.7687292935201047 2.2977310655385335 2.595494332968168 2.4243489501502564 1.4809208381222854 +1.6791301870105455 4.430885282708406 3.9582994273490635 4.0142176699148475 2.7523231926048926 +3.2554743644477546 3.423599284646582 4.875749887169027 3.665097020118065 1.222270981939184 +4.6064580353259235 1.920637246706248 3.9099236094424765 1.8429366211886586 3.389110284158986 +4.127955232188857 4.74900285306169 2.229656793128612 3.7882402193271214 1.6777611402736954 +4.078286769766088 3.1053307319710606 3.6954594712850977 4.642118360165393 1.3575000933251802 +1.8732794799079553 1.3362842021797317 4.975341120906295 2.452546018361249 2.579313679591469 +2.2284810319320476 3.877321555285321 2.0050145604695744 1.8459088848229248 1.6564992265240794 +2.75783830307302 3.530342790947534 1.7707697009373726 4.954043390667732 3.2756670416139375 +1.3339810250435193 2.6411312449195914 4.542085794820228 1.006630794728082 3.7693611865936405 +1.7628137709148164 2.2079409790265383 1.0723460563966962 4.192711819554585 3.1519550642877587 +3.902171302844785 4.717469668673633 2.9984933113212096 3.430775550780934 0.9228105763782214 +1.814712865395641 3.2020352548270767 2.6791291871782823 3.4500609654550445 1.587135538942632 +4.371629156489876 1.8496893855818426 2.847304304190819 4.717131625347837 3.1394958861309075 +3.6184799209390737 2.756167714098571 2.717888511451156 1.4137044942333303 1.5634827446545625 +2.8562800131410953 4.4746100734178675 4.546527717136293 2.0792340675803724 2.9506829950257947 +2.2472488032071603 3.8406893364911148 1.4456201273044238 2.6016415088562947 1.968613260068455 +3.678165659395614 1.31982099461402 3.375945418679478 3.4739511791769173 2.3603801996700637 +4.125374130643746 4.601926444105932 3.355701549132951 3.5457145673221646 0.5130370888615519 +3.697707857600773 4.55757142229613 2.389956296307787 3.54367504955035 1.4388996877733278 +3.166140550530677 3.4654901414812938 4.727881835807416 1.4661746756547323 3.2754150540341582 +4.749974988021968 3.526660174922605 2.545680267900119 2.8561800678615517 1.262105089810044 +4.986467222549947 3.0908208104328443 1.3958066482825067 4.09144637593526 3.2954436516305745 +3.54528744768676 4.72596106052511 4.9247883675223765 4.4250418096730995 1.2820829934660871 +4.542387596529706 3.306011917414185 4.569681143267932 1.4877584708594616 3.3206734525715915 +4.173835062454376 1.148458622935339 4.917293577875636 1.1112097062888266 4.862013681423585 +1.5488697203371484 3.1089291792693228 1.706229399080705 3.2386056763833806 2.1867698943061558 +1.205628451058844 1.1076018695853325 3.1210319713713477 4.514740324950005 1.3971514540343561 +4.031451051148602 4.138327368076297 1.1684830483504727 1.4385512796125135 0.2904468912848546 +3.0953901902128713 4.205342390946509 3.375655958072301 4.986437282405093 1.9561723755162137 +2.1667243046145233 2.4825572861976966 2.7931154064940396 2.607141752163856 0.36651967527083684 +4.456464645520381 3.159552589589332 4.379728736862262 3.0081965364005097 1.8876126344466853 +2.500323723156881 2.83268341682964 3.3849768670702023 4.885093076722128 1.5364932829136317 +1.4116711663029262 3.9368602723135298 2.3582565970038747 1.5714606651972605 2.644924925101291 +2.932571135324796 4.452032983667566 2.316257717055911 3.5915674859839566 1.983728639530249 +1.8489930486973365 1.4658316484303948 4.7681095857618 3.3974767167904596 1.423182040414764 +3.9486836827888108 4.917464825160822 2.7968921991689086 3.1778052895034015 1.0409763129888177 +3.6819887252054815 3.292308154584758 3.212221953329108 2.264133076661147 1.0250480306701775 +3.3591243553292727 3.837024813963752 1.1529979801094452 3.1947650077172627 2.0969505104769417 +3.604251783719253 3.6342234758247285 2.140166441625603 1.8206815399435925 0.32088768242241605 +2.541088478728285 2.437807392594396 2.5298527387091805 2.1906302674098677 0.35459676787501726 +1.972868816547134 3.6775776386743773 3.0552263447946344 3.064820285528807 1.7047358188110155 +1.5863108818126426 3.3283505500363066 3.4593776581563174 4.473169681168523 2.0155586003855093 +3.2567158792950273 3.2914210973419573 2.8571822726101956 1.544250791810187 1.3133900888294339 +2.9433741303608505 1.1377597411932823 4.19643768326365 4.687834361323613 1.8712867277831418 +2.62478337289597 4.6263618801112365 3.668469014390814 3.947187225446813 2.0208909821463283 +4.361796980455194 4.269542975141871 4.307066877372599 2.2810918040721666 2.028074406704804 +3.1446464926531013 2.08497662961472 3.396458233516686 1.298693949453269 2.3502159922279233 +3.7695132957588955 2.0940619112378873 2.5711958167020352 3.516396831405112 1.9236793651981323 +4.226607688909725 2.468283334455882 1.9482410847149776 1.4444713732340713 1.8290676471008611 +3.104407564891754 2.2299405472727183 1.6155009720827396 2.4619262103893957 1.2170161251791245 +2.939958548896357 3.47967617502068 3.197638904825877 4.388889888064828 1.3078126857532166 +4.980850756016709 2.288691397041338 3.5374978266599437 1.1699159802691148 3.5851312128676804 +3.127619382587704 3.1457161826252626 4.102373633748121 4.728568655629125 0.6264564626533525 +2.0655199669750886 4.4318978167588625 4.152306881571896 1.727615048254394 3.3880487916356614 +2.960128976132481 1.7601613470617723 1.6986441366331975 3.0954831788504245 1.8414889683839863 +2.010694419556514 1.9597721519102151 4.749117573584179 3.2214940420955016 1.528472025030285 +3.9194840338744945 2.484737254214903 4.956773378382224 1.7299283007568405 3.531434195442234 +3.5854266008607563 4.3699939643659205 2.7620067970485165 2.683551388798022 0.7884803098119801 +4.340304165816164 2.5810775687262164 2.753936007152793 2.3331017571196453 1.8088614335845736 +1.2009043646006017 1.5957779479599945 2.7584042778479754 4.424638457894467 1.712384737607262 +1.9853468453768626 4.349009097557419 3.1160695353944234 2.134193727580456 2.5594881020144613 +3.828468364344369 4.2420151011679685 3.2711547523909372 2.841143071465934 0.5965994881571677 +4.390769998223387 4.787600309544098 3.78932442237078 1.2052602955630665 2.614356843936459 +3.5847345708732536 4.816819596817188 1.821806539026956 4.101012868312406 2.5909100722738567 +3.8666889355732734 3.7485435003774388 3.7620161579083256 2.579567326910457 1.1883364766705764 +1.9404510214090118 3.2939457375386745 3.305945023342582 3.598419362588619 1.3847343375927104 +2.83147971807647 3.3187569451426837 2.956848307621895 3.3336036365978536 0.615941290975951 +2.8622392794178597 3.6393458337023636 4.52794607988649 3.641205785092536 1.179068677865375 +2.8215442719777357 2.7902689332107777 4.230773870525904 1.053943860474864 3.1769839564555373 +3.731001790121441 2.093251564394918 1.345680961625535 1.584161154234606 1.6550222367491432 +2.0112532386893163 4.2578450094694755 2.1510859559496653 2.7608469170710763 2.327870918724842 +4.264130615207647 1.5634011219207693 1.7401938395276986 2.219711635697426 2.742968667840205 +3.5177945698412043 1.0089204353059795 4.730504469604237 2.714090157034459 3.2187538120950046 +1.4144456379187482 1.4600218881009188 2.447750026894545 1.6431411137538499 0.8058986894679246 +2.4415080828308224 2.8461901416802444 2.564970328566902 2.90623069830157 0.5293639661953291 +3.700059776270496 3.3682124632980246 3.80355324574777 3.906717047989307 0.3475131784838962 +3.9495634139465 1.6727529906165262 2.365016455197446 4.45036124654765 3.087479328286335 +2.42741818359646 1.9278445536161128 4.10262498449036 4.499488362667135 0.6380237869465548 +3.8871813114827605 4.831424727801397 3.2319195864915433 1.2871560733342275 2.1618743606808133 +2.1209690715341973 2.4586110769875584 3.7764392714318626 3.9673306513554176 0.3878680739319576 +1.9462132157656211 1.1581634462149872 4.482547808261792 3.692855996373273 1.115632375405348 +4.774768509798231 4.037649077303165 3.0802655915844404 2.6786298617918214 0.8394380961142389 +1.2890501276244777 1.9787119791707641 2.9001997816472334 1.8851354512970646 1.2271874609151971 +1.6860562843946547 4.807186406778886 3.494082551971483 1.7387679310197992 3.580863395800091 +3.594777843074789 1.3535411836597593 4.412225395634778 3.4558154749968244 2.436772804305017 +1.6944470900726691 3.469407982749152 3.93371175500355 3.143843031698522 1.9427760474605438 +3.093531340567997 4.2519564838087565 2.1011852242756457 3.0028661790861735 1.467984113252047 +4.042108145550187 3.8484982996632864 3.489724942927207 3.2151945727467144 0.33593406581617696 +3.1483114269975827 2.243559093692167 4.279947180154895 2.550027556533203 1.9522291588881187 +1.17445412146991 1.4083843557464615 2.235764932000097 2.817009984199953 0.6265534017268565 +2.392491420262933 2.182628494976666 3.7934693546716693 4.413354809932738 0.6544466556213205 +2.328377699543298 1.577646426646655 2.7256156280513357 3.71409015363273 1.2412410450143747 +2.7567842028025233 1.1568500995859106 3.9414653385309237 2.592929658967534 2.092447756502188 +3.5824815965109034 3.838351990897317 4.082590980697905 2.7900640470240337 1.3176097802444542 +3.2852780516286435 2.0248751796539404 3.5397712655398927 1.103093828449886 2.7433578570987787 +1.6785543308315583 3.8137820130933613 4.471244087917956 4.3285321867541064 2.1399915751775547 +3.0297363749045916 1.3741341224228827 3.0342474002443267 1.2569602162941504 2.428943917149191 +4.907992684953607 2.0265487287615915 2.742965697650793 1.200665893943313 3.2682423345265605 +4.794890715262309 4.293659113961214 3.57836213822269 4.079248571116947 0.7086044995626214 +4.708373558894056 2.0414537496887575 2.4667639028644373 1.626826111574485 2.7960609367409486 +3.599619900342671 1.857758140744295 4.9914455935153335 4.668441255490444 1.7715569965242575 +1.484852605123221 4.598461072431773 2.4488218237097996 1.8385401811182396 3.1728538212435446 +2.480033321414073 4.482791094182646 3.462517565885914 1.5292716264086494 2.783608909112462 +1.9956286109958024 3.393163797810047 3.069840052878053 4.887286296305682 2.292643767822015 +1.9024110847905331 3.492786438128234 1.2409367922652579 2.0327140426828656 1.7765711296716729 +2.608776789046791 3.0800111223786657 1.4569996103472005 4.870757528686745 3.446128976393176 +3.3788524195022696 4.742635247307167 3.1422277733169692 1.7198293640767166 1.970563583349881 +3.447835699255456 4.5433908708162605 3.842980197545003 1.4375811007923467 2.643139411493862 +3.6841215593305074 2.4245844832493 2.179936368333871 3.2741293054787537 1.6684399389012907 +3.308721739598711 4.8974261273814985 2.158077474109425 1.0151956969016873 1.9570795559797254 +3.2511686524345462 2.453036601890159 4.373492966559362 1.5227549852208289 2.960358391876275 +3.557552134675222 3.9826752001327774 2.1466764147870223 4.398262138856509 2.2913681270405997 +3.7957136898831187 4.872140022699242 2.7588881933015657 4.282090295171632 1.8651644145011337 +2.475567290429008 3.1023739933976326 1.991984758439525 2.427697428743931 0.7633689631824141 +4.026891136206627 2.419870039499796 3.3107962360475116 4.5365356842159255 2.0211269133968393 +3.860985514341986 4.64103362536062 3.060473602397423 4.908322422281252 2.0057468226697504 +2.0490438130659987 3.626001830184195 4.840527856681446 4.209525843279005 1.6985170380868388 +3.885448012638214 3.839275064462213 4.798892488022488 3.509400752164316 1.2903181305359483 +3.9602095281430922 1.7870053273031803 2.523049413229056 2.651370869233638 2.176989410773368 +2.0651083425405363 4.257116157647452 1.9422097099185671 2.488997648714132 2.2591758035845944 +4.583548483818166 3.9498243467230547 1.7628019838869902 2.2156528351677456 0.7788967681552215 +1.7223973883246857 3.5516940304382474 2.4401456948972036 4.110108526689881 2.4769138185284065 +1.933803661056852 1.8154895129226611 4.161736786832172 3.59695731788682 0.5770390681668903 +1.920737605684816 2.6324300637870106 1.2649740904003823 4.336923691645722 3.153312624449238 +3.0837144055516124 3.206714124396245 1.2144602009878667 4.63488725974304 3.422637900085317 +2.4705867663853818 2.6952547204933954 1.4425995442242514 1.0765610574937097 0.42948790829436106 +1.8337375218511722 3.734207422464007 3.914450188940808 1.1053954964180805 3.391544501951775 +2.2850816386736006 2.9520812167670605 4.914729276793951 1.7934081234037698 3.191791688030073 +2.5018643658574184 1.408239470961202 1.1517749096576053 3.489516727759112 2.5809014353200896 +2.19563903251127 2.99138688421698 3.133759914700129 2.2874019697847556 1.1616954912607806 +3.5885156412964005 4.953401215821247 4.057619007101832 2.929400303546906 1.7708162170584436 +4.4733002071492844 4.262559962723985 3.764034263623933 4.889609622970277 1.1451337651943054 +4.671837692857675 4.122448409548696 3.8748360629097394 2.1143334275642722 1.8442337470269565 +4.989748062677846 1.5164991099103604 4.877621079111174 4.452929626630942 3.4991171911941166 +2.613151885706708 1.2802751337049 4.948688645694846 2.4878671827359424 2.7986072801638473 +3.3298343280361187 2.73761869786194 2.5117269631600463 2.8855498299704743 0.7003305565038316 +3.4692414386872907 3.7234369228470747 1.4606966741910878 3.3249508155586613 1.8815044107770185 +4.544429113643452 2.135395647980436 2.9295517994819145 4.847334384528722 3.0791772086375895 +4.375898975809575 3.8397367558670767 4.778908978273349 4.067774185715445 0.8906080053985822 +3.0852663465530017 4.041631832225673 2.169057138709781 4.361810984467836 2.3922383598363828 +1.0885031508526843 4.58589811287786 2.8480544514276356 1.381843435020179 3.7923009196309394 +1.5940475051782745 2.5280707885734364 4.42678050939824 4.703824204823349 0.974244683382506 +2.97282860618515 2.8669818968594636 1.679105544335794 2.595061853735388 0.9220517808691663 +2.7716346826491365 4.274924596395415 4.142106773338175 4.973790760415641 1.718015954271777 +3.7306532287548126 4.065497136922188 1.4615084075190756 4.727225692331228 3.2828386843032136 +1.725909140508434 1.9196966232743198 1.8882311722020213 4.310800216945352 2.43030746306416 +4.727901705266376 1.9481361278929246 2.089938294327036 4.290812868465225 3.5455529267292447 +2.005453916061467 3.3773222072555127 1.6031317915566086 4.467497883697163 3.1759432800647156 +2.166751236326314 2.2594732649122387 2.483857894387456 4.053173167134444 1.5720520983294552 +4.290690932841999 4.445930475572384 4.441897796631625 4.660830667962186 0.2683857629908544 +4.439202900950328 2.462368267741018 3.276359211721748 1.286149014235189 2.805140245555519 +3.6121405798609247 2.447121838753885 4.225569926447783 3.6491376318263415 1.2998241640364943 +4.438010705769516 1.0343670509147933 4.032978781793247 1.8088063370120189 4.065923412136156 +2.512056855319829 3.8958110218453754 3.7595575814722424 1.2403704285634634 2.874209370376043 +3.582011322771474 1.313746061996314 4.6922168774873905 4.7950140492220505 2.270593436032979 +1.627417902199801 2.625635777956114 4.753403079067783 2.430791024138013 2.5280359343143317 +4.81017454422706 1.9810294294422612 1.981839035903628 3.0566109382162323 3.0264164819983623 +1.0265979172421327 1.7266455415904356 3.6264317515028734 2.3253030831669617 1.477498726876367 +1.2904703275015361 3.9770375561226152 2.1040894080970505 3.453758843894803 3.0065347261968167 +1.0295191791954417 1.8102321771049432 4.199960729903767 1.9718828892243017 2.3608989070334436 +1.6825344298173288 1.2322273930217316 4.271545715292639 1.1115978135023186 3.191872047782724 +2.2407575253288927 1.0194533546347535 3.435279110757732 2.2424662404020355 1.7071574095674642 +4.577913562880198 2.2482600745523857 2.943635720822272 2.26171818835351 2.4274053836898006 +2.0534675647301897 2.5240886447014406 1.1278789790443362 1.2511265390983541 0.48649168746503296 +3.1156748444275455 4.927378068286622 1.090604609126229 3.6486617098655088 3.1346331048440135 +1.1581948996343998 3.7008273442587867 1.536029269215795 2.8408658228691803 2.8578975104448077 +2.382641048833999 4.36459726451814 3.542620144218823 3.8055868953662153 1.9993253744946105 +2.4839631694452864 4.536665024148709 1.3908468553209303 3.528729605791058 2.9638028880242 +1.0034992905451725 3.324288515315932 1.2959984646518752 2.292732576802769 2.525775428682703 +1.0964889655734678 1.8822127746603132 4.566710222810478 4.841415517089095 0.832361041177831 +2.531609404498937 2.809969510982733 4.112473493535458 1.0550296904023133 3.0700890798475116 +3.325578784751886 4.901016554972772 3.4336581563698134 1.76878836588818 2.2921159628380314 +1.0216643728002315 1.384426278969932 2.8020493261072565 3.173518742186704 0.51921645548873 +2.3512804479039646 1.9475466406449753 3.881682328256227 4.375250229458081 0.6376599879407849 +4.836905412533477 3.6122776840308317 4.896349012046906 2.387191452684089 2.7920574369316116 +4.771885828131133 4.289299242670825 1.7159885068218328 3.5107506066288057 1.8585103732209225 +4.16270340193761 3.7746428458593337 2.7431625977220015 4.307723877295082 1.611968669895025 +2.6175141108987794 1.90106744600135 1.9966058135881481 4.001978637444862 2.1295107387157497 +1.4023095455143473 1.6221663837736826 3.4784397494351826 1.3713208155711585 2.1185578186062455 +2.2787141665265676 2.489753745462715 4.0914565381448345 3.5022307772144483 0.6258791426637725 +3.746947576338266 1.2493131745122428 1.1303604858705931 4.26486351959009 4.0079030519189915 +1.1413702766362377 3.8899701062876417 3.5307393674301677 3.2184172389668855 2.7662874282126872 +2.3151944527345787 3.3311551674793702 2.6035252890581027 4.561383680365861 2.2057619214953705 +3.809100815999036 1.5194244724284491 4.867088288767096 2.0519325188558106 3.6287352848026235 +1.5251800766308854 4.2098361139746014 2.556936561517683 2.7362781422726226 2.690639597090949 +2.693896055471697 2.327398034410738 4.667628698888402 4.343676037822863 0.4891483681389962 +3.866792845335584 3.513991565100034 4.488643926746752 3.8699618629036734 0.7122051947697194 +2.1226661662734503 3.9666338656485385 4.030464227397291 4.377835222357826 1.8764017385620084 +2.2695493203485113 4.461894739908834 3.2056787654506125 4.05704207571599 2.3518498941754653 +2.6441786719777847 3.8440310207683095 2.0080508679084788 2.390022863346085 1.2591855559037857 +2.064089481376123 1.9935109293410567 3.8481617077397976 4.4827098767105085 0.6384612053613347 +3.759135593908917 1.3922786146263388 4.356796046329711 4.177482356994154 2.373639686127989 +2.5972289847932513 1.606322346667076 1.8805981866130215 3.3844631508616123 1.8009735689834359 +2.270144210205191 3.69364334769498 4.062696911550379 3.626248303582568 1.4889046919904623 +3.0408947120787464 1.262196143613842 1.5055863471697042 1.6352103945827503 1.7834155407887529 +1.7924600498377776 4.2135058320805285 1.2193927912165066 2.190017933482508 2.608366509237977 +4.165104411563304 3.0928189349635398 3.0196259401100334 3.191712957647885 1.086006484755895 +3.208698846998158 1.2182984531602208 4.0335912126736755 1.1856504855697918 3.474544590717928 +4.266375264455869 2.6683429073841607 4.799109850517509 3.6913320452146334 1.9444482714049802 +1.9702022733733617 2.9762272113543187 3.696684724826085 3.4343210376384525 1.0396734488262542 +3.249680023355446 3.811072638371182 4.305427266376422 1.5585838517263375 2.8036245135183036 +1.2043727730590552 2.7173223775396638 4.435019457024771 3.672634940681116 1.6941802313976453 +3.267879362373692 1.5843878562514444 1.891890699167051 1.7480462094601084 1.6896256651710773 +2.825855530049012 3.343218509235015 1.219728923386377 3.2134124882496296 2.059718089700157 +4.606507857828098 2.6889567262693497 3.5898723157405783 1.025545688021746 3.2019952210723353 +1.3211256426546947 3.9482924013006664 3.7639060882883313 1.9851766804083808 3.1726776521089155 +2.8972939673970135 1.0584521801329827 2.138427689575607 4.180731810863479 2.7481530602238666 +3.8282305021236023 2.5735804285844393 3.2782182611886372 1.9001042378673634 1.8636912481166443 +4.514342766743628 1.929233621972383 3.5733004157131742 3.827319526838522 2.59755943131179 +2.9773890952699285 1.6448030124279547 2.2444497284714955 3.8838421698478403 2.1126744294912094 +1.4727166472917035 1.6510024815174265 4.462442763379809 4.862041614265953 0.4375672294803264 +1.292110862536195 1.615964622719436 4.122036663229645 1.6831560451165006 2.4602885862013784 +2.127186448813771 3.11714252160094 2.097794813796564 1.6689969986599493 1.0788329770238436 +2.649593885171304 4.418970515225606 4.293175592304018 1.180013888405436 3.5808475887145828 +4.782941519748112 1.881254847973508 3.641089806432011 2.7978695967472484 3.02172233389754 +3.877114828392162 2.526444298163449 1.2457442892573862 3.2964421943922346 2.455539203383397 +2.4922315284269683 3.4345857634314876 4.517666982330999 4.0703240638625875 1.0431429388798013 +4.113887448046819 1.0847549214197274 4.62765798834763 2.5608828777909842 3.667042844239301 +3.042136398263398 4.725833508081273 3.104800114599728 3.9524064072069085 1.8850125688908164 +1.4853153856625085 1.0153469145947218 2.6403311426090275 1.6820983016019664 1.067277162400778 +4.129462274608986 3.579805231460576 2.7022544906744654 1.322896950729079 1.4848400883889288 +3.339842017284284 1.5335831529687858 4.051529490129136 3.04414649740811 2.0681855765239936 +4.39667311510676 3.6877529700549436 1.4722636575209838 3.9362884619699345 2.563978550807315 +2.5338465350039128 4.3237149914655735 4.754095067857865 2.709323172990218 2.7174843501807096 +1.127807111600562 2.9264269174224506 3.687856407209306 2.4816286739404307 2.1656450656563595 +1.1632713267480588 1.2948210805166203 3.5288362342166284 1.3221403024176293 2.210613551287249 +3.9375039153205873 2.9163988740143574 2.627732681738293 2.6798675514950205 1.0224351079777867 +2.3523159192030714 4.310078340581613 2.836047324250897 4.615207878051124 2.6454198106842517 +2.9822139182697316 3.6038620897398297 2.967122382677729 1.1026018164908455 1.965421937097979 +3.947589837637798 4.109817610790708 3.9220535715762566 3.78253973595706 0.21396719540932507 +1.6131188636783969 1.5866359349557775 1.4888566481894383 1.7083293523747498 0.22106472671174973 +1.103295062236286 4.779498339687057 4.989627438649091 3.7400895552397384 3.882758743369837 +1.7050373723373613 2.2490640802986417 1.005847183559069 2.3190078107249135 1.4213922371090193 +4.433426116341696 4.114462066898497 4.170696541915839 3.886028814444597 0.42752050231637395 +1.0513949488021228 3.447249380620979 3.459737429967599 1.9268468429469054 2.844270031175433 +3.7299190803948266 3.7204999831791237 2.053770691246379 1.8818485888181193 0.17217993116420924 +2.3844192024771633 2.1696999101410266 1.3305334476341266 1.9882613223302639 0.6918889590487978 +2.41081601836855 4.627678334818022 1.3937728745464621 2.9766062501215607 2.7239383298687545 +4.2733355382105245 1.0610068276804379 1.1706778327221423 2.84553806049563 3.6227355033280237 +4.527677529807411 4.701715867574626 2.56591091332817 2.220730191387029 0.3865735037642679 +2.4650067727181657 1.5156617801640562 1.0378575398165584 4.3700018513979835 3.464742649619451 +1.3175767083323962 1.9379358508449278 2.34225000117219 4.001470526458631 1.771400072606608 +1.3011819010083796 3.4388769915861626 2.6876737120296132 3.108752294049984 2.178772010219665 +3.3328317246072356 3.748533873589095 4.341078306662691 3.8559124074960196 0.6389007954153296 +3.203982395055071 3.471976117316074 3.780707307868599 1.0390825397088026 2.7546918166209746 +4.024088578557999 4.965896527120982 2.526191621751896 3.2990231296000294 1.2183065096679222 +4.772679990852996 3.0398396823811042 2.9027694174573733 3.979434678727402 2.040084218724958 +2.579995491877734 4.646168413647363 2.604848375839489 1.0999335842362088 2.5561375300715707 +2.629602980385104 3.9072463551706242 4.159823337221978 2.8376084346964476 1.8386475577429 +2.3733571770170983 2.8827565558387356 1.077774705799254 3.7745696166765925 2.7444836524340572 +2.728942923806883 3.122948184450489 3.6179771057658083 3.18648666208278 0.5843151105393499 +1.761906741926433 4.1917794359563185 4.633315217712813 2.204207497526486 3.4358180431246454 +1.474722635765254 3.7011996602945887 1.0464653973729958 4.239318961410701 3.8924945500469588 +3.38174892428747 3.128485719894609 1.069052627824584 1.7627074619528091 0.7384438229200617 +3.978688166025512 2.7371182896494766 1.468263468951739 2.5732256637498896 1.662058124692861 +3.4036638080584742 1.9796292865551406 1.548451067007242 1.493740999627069 1.425085088654699 +2.1306507909956345 1.2439351594335926 4.680039730873619 1.5410814591863282 3.2617976090877456 +4.080412633033523 1.9809382163821159 2.313178982540756 1.7319220588191344 2.178451844211409 +3.802992709382163 3.9828948145421137 1.524909603368887 2.451985638905772 0.944370024464865 +4.600261169462585 2.418659255471548 1.7531300453401983 1.2185257998714683 2.246149730183308 +1.6794516166051179 3.1745277086539962 3.983467772043612 2.2491099448782057 2.289814314232937 +3.6325027961741037 2.290187875842118 4.827637312404946 1.2814443772516384 3.7917401913471203 +2.6152241754855154 1.970647325990448 1.8559720828105046 3.6829718367539606 1.9373712643204026 +2.9201788999566447 1.3621871050283811 3.3031510246105023 1.1597343373294993 2.6498251882677963 +1.565484937226239 4.013343954134362 1.3153560619074804 4.191422345153354 3.7767407949556366 +2.397707034201713 2.0327576312816467 1.0288919983496454 2.283556073575309 1.306663693669332 +1.2050546384599188 2.2205850889708283 4.630369768713756 3.9444827844738763 1.2254562624037495 +1.7891376035497917 1.0357739439613156 2.233290727219349 1.8550089619442502 0.8430029048159835 +4.222093825351489 2.7200057511563362 3.1767403415092828 1.7961991889882434 2.040137852313765 +1.6371615594344235 3.047589313437697 1.5568783930441366 2.464553606011717 1.677253928747362 +3.521010084871952 3.302189440156558 1.6623658928748726 4.073602839974818 2.421145615119736 +2.811858056746866 3.734936240877296 3.7089897750092793 4.730620022967071 1.3768811486689152 +3.403528293558903 2.5523872822992946 1.8277564660302326 2.5515489686060304 1.1172808992518244 +3.4353306524193425 3.5054057635863867 3.347425401010224 2.7792804364617663 0.5724501916733384 +3.220290547984388 1.774847406245553 4.331853106597248 1.9823950944307063 2.7584885040422757 +2.9590903430181763 2.267831525498423 4.032244888957173 1.8972114312110633 2.244149419823492 +2.5666260551677995 2.9228849309209664 4.666993488394223 1.6669333442571173 3.021139065814889 +4.512494099085545 1.4184183514506343 4.92993448671433 2.644386825439302 3.8466911552738785 +4.9984222920876515 2.7909802661974155 2.894688679650661 2.8201174265438276 2.2087012404253126 +4.85109116834478 2.802933771308862 2.3062530950883624 4.200394142964516 2.7897525037684474 +2.9611282936167918 1.1214109900066735 1.6016421599603206 2.035704425676562 1.8902300938566186 +3.7250318484967835 3.6654348946750996 3.181383707480731 1.6978015394519503 1.4847787196069997 +4.747146669171457 1.5314755374896185 3.5798065683391664 4.354200143507871 3.3076012813509617 +3.507469029895741 3.8537616579662264 3.124888424652437 1.1072959858469242 2.0470949741966398 +2.187540015106677 3.57821324688456 2.8402759740736636 2.790731738391057 1.391555485373442 +2.7434179199455717 2.6452761346181597 1.0430398615907817 1.6317545136780578 0.5968389662291617 +2.070132326900479 1.1947056333710195 4.031309961946193 1.7852701257416186 2.4106154487105145 +2.3055035048041956 4.572228003155244 3.996434597148892 4.998861818403031 2.4784874995319437 +4.257370472508798 4.920642412509884 4.265803717175377 4.327560053350329 0.6661407594874807 +2.1785970318346766 3.7100127910669536 4.285462789098023 2.592092910170641 2.2831416457336826 +1.541781854692895 1.9592849266929697 2.0304789744541525 1.4376111412109065 0.7251214262618647 +3.095826598751042 4.083497368154413 3.259848598903647 1.4953448374054354 2.0221194507434976 +3.0510388754468716 4.894942767435083 1.0902098347715512 2.16934869598419 2.136474255559515 +4.126177994231868 1.3384426692915063 2.1022740413203964 1.512535669522166 2.8494314501478306 +2.3120174188785843 4.981803466182711 2.1099924216872155 4.263493299118453 3.4300617439744294 +4.691698543303284 3.259010197774692 1.2041374367816395 2.7383842585942353 2.099168693948989 +3.0708603508824184 3.7013222568155926 2.1686641030950584 3.4036919834551034 1.3866420158424149 +2.7489691926738113 4.619588586621729 1.1498010024524672 3.666443664096855 3.135714783493968 +1.8555842852838813 4.907694577562066 2.0257321726298394 4.914342616251917 4.202314544537684 +3.903368695887055 4.457917389486968 2.172682875303485 4.433708050907004 2.328037606716501 +3.592489963715172 2.2416209464904755 2.563000783009513 1.4984298483529757 1.7199297592091112 +4.2917046629587245 1.9923350811787062 3.877340326716035 2.2237780541553667 2.832202087219628 +3.199339939173492 3.8071628565679 1.939175893654689 2.99163372643852 1.2153666889864507 +1.164958497279537 3.4303286533771677 2.4001154306405192 1.4453968294689519 2.4583306432538317 +1.2197759976816238 2.2598266474780258 3.1959320412940295 1.3670251668995403 2.1039500253925563 +4.790502812579252 3.9511822932158127 1.0573285307223506 3.37917523335446 2.4688926758261713 +4.585088319610449 1.1223828056301768 2.93479360634211 3.96035977776255 3.611386914816988 +1.2455403594653145 4.141445841273747 3.2830836738626443 4.690315932811705 3.2197160107989347 +2.5654705242183082 3.527681977194712 3.6406648505471777 3.859523540547813 0.986787721056437 +3.8013355271720255 2.0743313027336905 1.2917548825650673 2.662574807482611 2.20492422948699 +3.0819724110178015 3.955875242965817 2.8865670398452896 2.45168306848794 0.9761302311834736 +4.031516109679513 4.656555811348609 1.991991577286623 4.982235586057827 3.0548705145479853 +3.624421171994681 4.413837366888149 1.9577368915216313 3.596689703210011 1.8191603139089552 +3.2751042979934444 1.1009636202672377 4.55930492603741 2.2700104048666945 3.1571754926209006 +1.0614416271864577 4.572867229687453 4.048014709263724 2.953820052992476 3.677957545664717 +2.9054617421817213 2.491067631453197 3.979728182551796 1.2614340574592737 2.7496991525472394 +2.5818523643541806 1.4625326839808763 1.061170446934768 4.1016613587575055 3.239978631372074 +1.8642635330405866 2.096149963358783 3.3855013782224237 3.5470963007601344 0.2826379938290047 +3.693517462973762 4.6899968285753575 3.589410806139399 4.22181651418756 1.1802152793629024 +2.0474488986389177 1.0977644467398737 4.296175563608802 1.1131267293776967 3.3217014374080622 +4.360606492375844 3.0673928360460048 4.687854213673372 3.8262578693771716 1.5539465310693827 +3.8918605551387895 1.6716941901409048 3.0667663913281427 3.3559150409779566 2.2389161730315474 +2.035910494750365 3.3321593495937254 1.526609836098702 2.407129609681069 1.5670278125650057 +3.011112326669927 2.8047167045145716 2.9704582869955134 2.2759650447804765 0.7245136412292388 +1.326040674256587 1.1174969263114836 3.5527571968440803 4.730728384484699 1.1962886832694026 +1.7526357647785442 1.0590688850287733 4.930817343191339 4.057031745312939 1.1155878664388323 +4.3758275603186725 3.6501462669657347 3.424766735794263 4.815264040396471 1.5684693473665332 +2.9822148834249718 3.981895161734024 3.374560151864251 1.5816381959635009 2.052785862868077 +3.8479366219402893 3.494041919588629 2.3867010635518064 3.8060393122593887 1.4627927141590762 +4.65317089214733 2.1999133425587307 4.147269694607827 2.928422177228626 2.739354280708302 +2.56975099077978 2.170818220502448 3.4333524575073486 4.617015583638869 1.2490819634293782 +2.1572805776684922 2.874012664914319 3.933657342105064 2.0142101344631897 2.0488978666131574 +1.70590251206692 3.017506508157633 2.544062116327599 3.549668533166145 1.6527399396601954 +4.491779041066657 3.7435179085927057 2.336988457130164 1.2738587675624804 1.3000536370517484 +1.1132234433457744 3.50979070871084 4.464311324758182 2.595126867488941 3.0393066960601876 +2.610013538215506 1.1075714863154245 4.094817292080622 2.662073338649369 2.076074987906637 +2.6423519384074265 2.5114677909985565 1.6516238306986133 2.613384672998225 0.9706258691297104 +2.0779498031455472 2.698737542474001 1.6627857118678286 2.7609547853393175 1.2614883000764459 +1.893705418840502 4.171318356169133 3.953678746013325 1.4784582221516813 3.363664271896448 +4.204224423272842 1.7220415286354944 2.4244110898120557 3.1187133729905065 2.5774575811945093 +4.052340505098762 4.83809919861395 1.0115460690364682 1.1477706671676309 0.7974796960241005 +3.1472409686442706 4.417485573184591 1.6199220620026473 1.4159861882731586 1.2865112498371727 +3.303197826617345 1.7419213160851017 4.491227847239998 4.77977937551082 1.5877173321492608 +2.7731919818119573 1.5886709647717852 2.1941026070224163 1.5247229949230938 1.3605730795896718 +1.6233825219750946 1.027943354180739 1.0520734018255555 4.549993493045479 3.5482379806184974 +1.104734371213858 3.241481334838093 2.3881461341797925 1.8079630765857968 2.2141138107325258 +3.2572342201042885 4.193979811709882 3.2128343138167024 3.1015377744780666 0.9433340993843432 +1.9963046174452166 3.0733820478191562 1.150274398702893 3.269932516938619 2.377613578616918 +4.82113131844636 4.380132434466668 2.0365237127663276 2.313565275602132 0.5207994270444614 +2.825603291453018 1.2693034015646898 2.54686766372812 2.469205074519544 1.558236447086578 +1.9936804169005589 1.6024148448762734 2.7243582860784334 1.7135278059689854 1.083912822772103 +1.8093804114106171 2.318194906491515 4.1240813272283665 3.758251081818225 0.6266769174473185 +1.3375818018695314 2.903633131297578 4.77169698362279 2.4150880726454047 2.8295092022648327 +3.7918649012792573 3.8701197408058627 1.1686629798643131 3.9895461621522084 2.821968417261968 +3.1967312192836723 1.70635531579897 4.676975158174772 1.4519798619798951 3.5527193801603474 +2.928407519800477 1.601621472782631 3.9555344072319736 2.3228683581421925 2.103796483125608 +2.929941320837631 4.658129722644557 4.326318332302012 2.150614613688458 2.7785467106616775 +3.247349237850189 2.8836217423253707 4.324751024122522 2.848885234944173 1.5200254993478848 +3.9581018014635845 3.103557851706589 4.630858672791637 3.1459416192461713 1.7132495492415676 +1.7144402363668712 4.069095959392694 3.3684525651218893 4.073309740587618 2.457890805504546 +4.114281661965 4.4217060572419395 4.34759817885308 3.4076987825683833 0.988898697515438 +4.626738238321314 1.2388793386409045 1.4162875138692979 1.387345546548966 3.387982520854576 +2.953443658765339 2.478562493263107 2.9751734928436817 3.4682893899697644 0.6845987214034364 +2.281944015601599 1.0294469008255702 1.0182041625280336 2.4959559038005494 1.9371368643841944 +2.9459981769842125 4.330196340867165 3.1395999781979627 3.1499849495733985 1.3842371200511148 +3.9896131583428143 4.719294066340376 3.385881455549776 4.661292307822457 1.4693900331739946 +1.8323506932173306 2.1715437558513453 2.3209894881752633 4.3143510304347 2.0220143846911585 +4.593046231920714 3.0175526130674157 2.6898634837427964 4.571298142810631 2.4539715808030786 +3.79549879348207 1.2902888104927652 4.6348513952459065 4.604077843481223 2.505398984265278 +2.5942918444723766 2.957366406857868 3.58280395058949 4.760246319977622 1.2321500197142203 +4.744343458243911 1.627831669997601 2.9502713040834427 2.25917383688816 3.1922188890240513 +1.0065645069638203 3.93380574851964 1.0860651115105266 1.2059974113716305 2.929697090624768 +1.5854619769171152 1.8158773572047662 1.7762447300466753 3.120331297278053 1.3636934947725357 +1.4920610599965438 4.1492240612165014 4.18798271550906 3.4527036769738264 2.7570184039214447 +4.784915470969594 2.7451694738274695 1.7078187271982985 2.7895287443853447 2.308822274264548 +4.104831801881717 3.1503562592440963 4.205659033440597 2.281795294125941 2.1476208345383387 +2.0179140186720392 2.6265273887399134 1.2659732400426331 3.988316196569882 2.7895450179516548 +3.8132207838848324 4.840250179136116 2.3390879210519855 4.770677841647869 2.6395868844676644 +2.5961788754906037 2.293514778182642 3.891800887657404 2.7363747203178237 1.1944099731550615 +1.4901167430025977 1.5910036130945242 3.8991624191724834 3.5879028521796608 0.3272012814790075 +3.4069433445218302 1.7385409139464612 2.5198182130621674 3.492592985676652 1.9312838808898503 +2.2306213145540283 3.6330671463432758 1.786894513330123 2.538294812383992 1.5910552223355663 +1.1503301814957627 2.687921365143229 4.798817248706534 1.9804691458913255 3.210494148362913 +4.038228624735304 1.6927478987570495 3.973535312558224 4.550189546032062 2.415328122826954 +3.185806651039226 4.567959269934059 4.995523652670382 4.250170541062047 1.5703175229558106 +4.116367248656697 4.492400999466195 3.7454655892503026 3.626826802327189 0.3943051401014795 +3.8792975416734095 1.1276379547039266 1.5391573614376757 2.623215120247885 2.9575009225692015 +1.0042710950029416 1.0374325380352176 4.984863503545528 1.055147524595112 3.9298558951343505 +4.45274900085426 2.4267339531029553 2.8180726676589485 1.716423561954468 2.306158651483935 +4.098193343933611 4.014986898786805 4.780505030075261 1.1992390174378098 3.5822324834921195 +3.7419473899943085 2.773881967910686 2.762065607311532 2.4604039619587037 1.013977519332119 +4.188867834414594 2.612140969294889 3.1576873583889378 3.5808758480737124 1.6325305831719952 +2.467170758191739 4.996657036069532 3.773003570333573 1.2008615366469102 3.607522068044742 +4.466545712044644 4.029424128794428 2.6628425180785826 1.540179021929493 1.2047608078489571 +4.792174027778406 2.676895916760126 2.3680330222859594 4.384017762676267 2.9220876031425957 +2.9502229526234367 2.7118595952023097 4.935456930281661 4.086197311711434 0.8820765215643819 +4.977747137336738 4.972560922221721 4.543974083348141 3.0743230090843907 1.4696602249880124 +1.5199473355928634 2.210032440345736 2.2396251883614187 4.8757685000733835 2.724971378140605 +3.751640193091189 1.6370471506961883 1.7435187563223309 2.2303084798219874 2.169900451599155 +2.955290546057564 3.8991757357995755 1.6084609487010622 2.3039936956948153 1.172469638649543 +2.388644365425089 2.662932399811333 1.281080485984984 4.240536148478478 2.9721392538157216 +4.786413035602251 3.5058633124601726 1.2740657859114104 4.088211226568959 3.0917991776007905 +3.4453787943990553 4.299168294033493 3.4009753403339933 2.4002063198450267 1.31548285509788 +4.594646689029741 1.228407625339372 2.688606687303558 3.1351018562574455 3.3957213327677773 +4.233276534818342 3.961926478357267 1.5768338143115384 2.5868169126222664 1.0457995563274858 +1.7978379051024804 4.539775113254285 1.764133331672821 1.7432535101055349 2.742016706804682 +4.05786428871685 3.275027632942826 3.488941702724649 2.9849997278447122 0.9310159739066505 +4.82623103623159 3.1930332246568076 3.2068233685456247 3.3018229037613898 1.6359584357262473 +3.8013335954491767 4.615332818491122 1.2156869484389037 1.6760850679085446 0.9351797493124373 +3.2074488108401056 2.564939660522538 1.5414188863714524 1.5982793699347502 0.6450202499401511 +3.6307727081173935 2.095848416812541 2.6410073572856576 2.573325240386906 1.5364157799845715 +3.5543042797078557 2.99854727210329 2.7215969173825476 1.375466080014065 1.4563427078871076 +1.136280350333537 3.3198841445550142 3.893800108703774 1.6973193985669326 3.097200839490664 +4.487616535666792 1.7759090855252802 4.765865690737793 2.7503227042186262 3.3787232537838285 +2.895244529656191 3.0850084946643275 4.190534208507309 1.4751866326810967 2.721970392925113 +2.159295267541693 2.012784596350788 4.643696924315513 2.183503263496777 2.4645523377492933 +2.5769125313054153 2.1605315955054545 3.5733542207181164 3.65839679373691 0.4249768498675051 +2.372262282336388 4.1369518342446785 2.769431718855776 2.4543725431961705 1.7925935118653065 +3.4395955754834366 2.2895019937593806 2.7922749342442756 2.677989442758428 1.1557579419095634 +2.0623001527564475 2.675863821786612 2.544208750777755 3.9849108736691528 1.5659128273494467 +4.677757102596773 4.998586052019023 1.9884202070743027 1.4000352231040605 0.6701702053575996 +4.193435904349689 2.236519467966911 3.3078172452520036 4.68262470534114 2.391572179822682 +4.2752852900917615 3.341204924503749 4.9182475943848765 2.1005807016954576 2.9684596759152853 +1.786522073554893 3.6443946033136085 2.415218272188166 4.966830002051331 3.1563290000897157 +1.910492531901868 3.632361798112735 4.753056361310749 2.4713108285605054 2.8585304696901943 +4.3094745143214155 2.238907051335819 3.9806956184502575 2.750535649204827 2.408431682383482 +3.621987798148789 3.592974767717914 4.339608821912428 4.073488641253702 0.2676970423606057 +4.236167220111558 2.5839856004534405 3.8377974825544845 2.7375226660255456 1.9850211022112363 +3.7910190632889798 3.3755233497625197 1.2660795280695427 4.456220976224813 3.217085505111275 +4.425143208317183 2.263928171507982 4.533155645561329 1.391669211630044 3.813107322106801 +2.117384030830746 3.8944290533437735 3.3043650540874427 4.250539669625139 2.013240029188332 +1.0074330805249598 1.709295513856599 1.8430453854277467 2.5468136802944668 0.9939319333746253 +1.4456987523731142 1.6842130197562004 3.7322069654798473 4.949114322976676 1.2400615196332823 +4.600711512062169 4.624725595998813 4.846826700658002 3.7103475311548664 1.1367328529350478 +2.543756928822861 1.2952858952147333 3.5144117457180766 3.7726151310902356 1.2748917248049696 +3.584301858412517 4.334620592053247 3.4377998759747124 4.648232862258516 1.4241229639101236 +2.5850972872249853 2.810453943739097 1.9960396780625422 1.431169463941461 0.608164436181873 +4.590883962654685 3.7647446530201267 1.163255514241289 2.04418078265434 1.207698425705718 +2.005994678374462 4.243464144099557 2.947221102476221 4.069843166654623 2.5033077935068864 +1.5418537445390923 2.9916089840229128 4.12928918341967 4.278806542687331 1.4574449201026995 +2.4019277215078887 1.7710277373977115 3.4688491176010388 3.0411032521948385 0.7622344228138225 +2.252724930582513 3.848990941919672 4.822194796274296 2.0276664342399413 3.2182998532089355 +1.6965774585326225 4.274033929378374 3.751648967314149 1.8970249914998463 3.1753601293034284 +1.120049045434325 2.5788516617143356 2.4749465132180304 1.65369584477761 1.6740841477295103 +3.273009482890507 3.721321849373897 1.0369419411949279 3.361960818908831 2.367846439207567 +3.9990378795143893 3.3590114852375286 4.409095668805051 2.1695125942152584 2.3292415360713683 +3.5324956511282806 2.0959251880116003 4.965054386670493 4.407169457802428 1.5410938613067666 +4.510971454765237 3.3459085378342066 2.4256116402299477 3.8421118958668226 1.8340786718751112 +1.239652592593853 2.5211558595481605 3.1990778890693625 4.86088029751307 2.0985323128138558 +4.910611343924695 3.8242122916776706 1.8324624201284254 1.1871610556383096 1.2635967520281297 +4.102909344099361 4.77315784978501 3.5440721668438773 4.196754987923949 0.9355361694273966 +3.2033406179950568 3.425404585335848 4.476335722625171 4.398395573328036 0.2353445823969434 +4.390253403037319 1.4820409956095042 3.3877038362838667 3.0547778652039543 2.92720670758602 +3.1501415989816923 3.175981219651991 1.3981008791235912 3.7204860783021827 2.322528944784149 +3.846005582110924 1.4591260467371443 3.78440453961521 4.315322041917424 2.4452131421692 +4.765422688888573 3.9779251525013497 4.80106688277313 2.8604376720135076 2.0943242593899973 +3.5948657502369854 3.568137309324976 4.18050326105279 2.1071801730681785 2.073495366940479 +2.9271270611077194 2.971659636658916 3.471596157462167 4.99259560279012 1.5216512290841033 +2.9440803546190333 4.578171030818508 4.289566500438857 3.1547064644184974 1.9895124124765315 +2.6788917761951176 3.800262617619845 3.922836955050155 1.119013633431142 3.0197512783095695 +1.6837310948600193 4.871522732400839 3.2834315769577502 3.246914982442032 3.1880007820027596 +2.594694409809072 3.347489904644395 4.242153218920711 2.7148517055302417 1.7027480641155275 +3.30340100182684 2.9395196723003236 2.082365363067915 3.9438850649099444 1.8967512283702423 +3.1524475757441603 1.2838918255729 1.9449631020436375 1.0949271273291385 2.0528180021148756 +3.162333885743521 1.1416088116427479 3.2963334620013067 4.301772899252556 2.2570419329466795 +2.670553218792242 1.906722337688048 3.290223145920831 1.8278986290446966 1.6497971413435744 +4.105095163931059 1.0047293471035084 1.8019657026257478 2.40028195401177 3.1575703531078116 +1.7050921504770336 1.6329190083518323 2.359597268516341 4.905281241332625 2.5467068641478794 +4.06412748566737 3.9734056107354796 3.8997524421617635 1.0588410830721142 2.8423595495284824 +4.959043287529038 2.4047535373416893 3.349107519831936 2.101526421712523 2.8426844222137975 +3.866208275006838 2.9099431857934133 1.9387584475494508 1.4745194309380971 1.0629961361136908 +3.401047502581085 2.716893747280946 1.165878549940739 3.8304807682733846 2.751030959992006 +2.3201240946474524 1.152635638982734 2.061196536623474 1.8287154955570935 1.1904103194133095 +1.1111688937079864 1.2376151513544884 1.304846219619936 4.49246899323866 3.190129715695826 +3.7066772025801686 3.161087240225684 1.7939251656833495 2.3157134526199714 0.7549380262022986 +3.779624068121971 1.8340271819400766 3.46404132811687 3.130680480344622 1.9739495176797492 +4.702812868888973 1.4525147041631397 2.6144575341640324 3.938554426748977 3.509653934588598 +4.77140015165935 3.8483033150715666 3.3084372329919725 4.219194658167534 1.2967601386651235 +4.007533812507953 1.8994527630827691 3.8980024530557507 3.6298503343964237 2.1250673565059226 +3.2283579030258913 2.994351189919344 3.9736264610612655 3.3664321763372023 0.6507257803257043 +2.5341954244897655 3.8283282719018517 1.4965885310149605 1.077889056852801 1.3601797956206314 +3.021154429549875 1.7910944620819294 1.8280523964657283 1.151687269211529 1.4037511563424738 +3.6487185195144174 1.4764190987756676 2.6855817939845887 4.362121290361781 2.7440243177228947 +3.00524806409975 3.5939666828592083 4.648682764210912 3.0557218215908977 1.6982679932174694 +1.9151630684612098 3.1478322573674165 3.7733799044334746 3.8307016371215314 1.234001260257479 +4.0072161290044495 2.330472380738605 2.989717202044209 3.991183560586449 1.9530500415095482 +4.261130764010005 3.2100990852892175 1.6609183662596125 1.202927510889198 1.1464829755724946 +3.1230791839681236 4.263376026208611 2.136467418946628 3.2200553815105097 1.5730352065471935 +4.261905874460698 3.726927802544107 3.807239751892943 3.273873709126484 0.7554342281151588 +1.2595837701528563 3.193994498469886 2.55534231019143 4.625709007541078 2.833436628428896 +4.133235294635876 4.783157759324354 2.1619584172018014 1.34918216523177 1.0406749953146746 +2.6868339646948067 1.2182257125667078 2.0131503474540473 1.9364006779983889 1.4706123588425002 +4.602626095578504 3.35380216893954 2.4882106410031044 3.8495363847756385 1.8473681226013954 +1.2380882892260066 2.4380269749610206 3.136706202767869 1.794476542693673 1.8003980976179585 +1.3079395926504058 1.0429203780204936 1.1990325896356424 2.300118378555809 1.1325303963624997 +2.884636872805203 1.2055182480687687 2.892931448538567 1.2038895474615448 2.3816594843786247 +2.3824023099922593 4.6825503137176625 1.5339631737505628 4.742465702539361 3.9478056330430036 +3.5069185375041894 3.7394632397166783 4.890352213069717 2.6960768786160774 2.2065632286247148 +4.5768929345773826 2.659307258429829 1.9792104165081579 4.734991209985486 3.3572998982910063 +2.1081306305227687 4.101131496249012 1.5806218691734757 2.5981454154957326 2.237723534779437 +1.5131494083700412 2.922791593888454 2.8085915000553006 3.079574629215465 1.4354521752683236 +3.836060822278619 1.4416407696990543 2.472667810834901 3.983495127041599 2.8312270427486843 +1.8410745102607695 3.2971914404576106 3.005654093496991 4.318825800160768 1.9607897504801808 +2.307481331817935 1.9557186629836125 1.6408678962727072 1.1465592594620793 0.6066943246899764 +3.689356531089116 4.023772749432732 1.3055281178003746 2.021852786887995 0.7905411049621229 +1.2421192634393132 1.935328341472927 2.9021462179785678 3.7328002563294738 1.081908017022187 +2.231924240798841 2.231681407659596 1.0793329744142008 4.4153433464799825 3.3360103809038737 +1.0753729055369883 1.1302778434043668 1.024117630707389 2.2391205159290495 1.2162428060626629 +2.546990324913804 4.163405696087011 2.91682707050002 1.629540945174825 2.0663746564018277 +2.888154129637474 3.994905265099524 3.554892831089788 3.071991504581212 1.2075147067387122 +1.6344337969299105 1.8659333260631041 2.0496859657433295 3.1075799280330676 1.082927360185332 +1.6125162090532896 1.896470716070148 2.4223614244852545 4.827728931377122 2.422069983560835 +4.1276308596551345 4.158056853692501 1.8044982361657684 2.4187578365813684 0.6150126810203953 +2.5676023175335345 3.5669943707936493 1.803272802724965 1.6927982206699324 1.005479542009534 +4.091195219869395 3.3690479676802325 2.4711495454392303 3.531948038246667 1.2832731962395563 +1.4378924980478303 2.855832567434146 3.8506590456470686 1.0426965174539782 3.145664889988729 +4.461332588309075 1.2610309503524104 2.224891146978719 1.4398619332144942 3.2951785141887813 +1.028560793249301 4.177106681235742 2.9205547854145486 4.138291982584229 3.375829541035358 +4.098334980577751 2.9153820024330726 1.959088929800056 4.077722439010911 2.4265171944275328 +2.172667412612959 1.4513749983919886 2.5767731149326702 3.8090539583320346 1.4278581245424087 +3.858233544510621 3.301421914133701 4.3051177074387 4.232053936139119 0.5615848167458954 +2.5487975380921797 3.7959870903790276 1.807228908623737 4.204285002561976 2.7021028286910025 +2.460328212054481 4.963008773271097 2.915512960495679 3.64058617450993 2.605598042133988 +3.5746991199987224 1.1782482970092794 1.1758496136233458 1.31160122827719 2.4002927004613217 +4.6375934773355345 1.1897647146680788 2.1689066842981113 3.0036051508264445 3.5474279001414177 +1.3288778749419392 1.9044890574804976 4.307540487410147 2.154904356017922 2.2282662649779366 +2.2193046812436785 3.2060486811945488 4.947141314758289 2.4336335806888996 2.7002564416487704 +2.883910610333962 3.888724774801619 2.032930554157206 1.749738728689298 1.0439583876413285 +1.7582239510844762 3.460994288605899 4.713342976294488 2.9523147529754206 2.4496218536070278 +4.705640145688843 1.488316137785453 2.292279516543792 3.9983284022653347 3.641672221974851 +4.453414761599621 4.015996420618643 2.3757993670975837 2.3122175342689264 0.44201521975199254 +4.482146542231039 2.3824633490522524 4.188099216447854 1.46333200694741 3.439916548070069 +3.0141094962460766 2.0124353873043614 1.1474946477490775 2.3868409722026667 1.593527637808896 +4.940642658584462 2.6450864201164337 4.7815164679280375 1.2983109435350495 4.171606305625127 +4.674047924971012 4.478311050979279 1.428753955490837 4.125605262666855 2.7039452466455476 +3.805809320649143 4.750809754268609 1.4621782168419686 1.9254499799259417 1.052447882800812 +4.43819943759415 1.570683585669776 4.283242560259442 2.9345204232167177 3.1688639232360014 +3.4119041255713203 2.282399795195376 2.100728590761264 1.8479702036601124 1.1574397757931019 +2.724790331258575 4.187956733353685 2.5699343185245884 3.0939736442558936 1.5541792480704633 +2.4868260391541144 2.866215701463889 1.6551465289760832 2.276280363218755 0.7278349784865576 +2.635947550006652 4.602053436172861 1.9985864989166595 1.4981322017753946 2.0287993639452306 +4.248073307441776 2.982646723720312 4.6153658850940165 1.794355815701453 3.091828302219127 +2.77307266251827 1.6623684998584527 1.3861395998411652 4.640445517181147 3.438629194982191 +2.1427283078404096 4.317578161020563 2.030758024283568 4.326780549917439 3.162545070365935 +2.6738387262131966 4.951821269538431 3.6068382099707708 1.2248417964566607 3.295923449003115 +3.981251415945527 3.694427556512812 1.1625824842525727 3.0855207259221094 1.9442117702593529 +2.000043637974128 4.754170962274204 1.544585558320359 4.4964458355685295 4.037164402752499 +2.239540518169531 2.7156007511340534 3.582430694020097 4.647201897942164 1.1663494596868829 +3.4580129595242606 4.294765883471404 4.409509472342265 4.465456087784894 0.8386211775966429 +2.4909527518047563 4.733974647377691 1.6001334397302265 2.8876895962507283 2.5863000754385497 +1.5897489004172707 4.648900931269068 1.490493999388213 2.755818254497608 3.31050700322969 +1.596331681302535 2.0900554178222 4.861555454641975 2.3754041304710123 2.53470146855206 +3.1751571008688932 1.261535072107721 4.201020461686083 2.789355091539787 2.3779714855797374 +4.292170276429034 1.908719758655081 1.2620432210799017 3.0444418781579605 2.9762025037672744 +4.032736301747777 1.1857847213133552 4.143192019161443 4.866774157124098 2.937465644346612 +1.3952532168837695 2.726696308100851 1.3103896460205742 4.753251112659641 3.6913460666290563 +1.0367169143794586 1.272550543313884 3.3872978408864105 2.057673938782952 1.3503766961782209 +3.7551371351901843 4.024165177264457 2.140928124963766 2.0928589572974454 0.2732887343130881 +4.508116125485534 1.746457219065804 2.7110471668205363 4.376458213513976 3.2249579640447963 +4.0064192434027905 2.830989078797869 3.102307296287769 3.4718887692164833 1.232163356456972 +2.578591307346235 4.778375605915579 1.4949086563895926 1.3391923191100106 2.205288765202414 +4.32060538395069 4.907249052143929 4.527868689421203 4.703224529939925 0.6122911596905893 +1.4521145751237277 1.3535879696269735 2.97714973053958 3.9709400095802643 0.9986624107807772 +1.5824057051768574 4.340758641802919 3.354344888223082 4.615762613455775 3.0330983499591375 +1.3235605513974642 3.9345905239141423 1.1450342451244175 2.4071997776625658 2.900092989700115 +3.52850735467406 4.7794357896501385 2.3148092333563794 4.469157530060391 2.4911921910890733 +2.8287037078915827 4.6432612970518745 2.448746363145671 4.7819457509623255 2.9557467123701957 +4.298695709549613 3.506975641232426 2.7344530915674827 2.5699363149786656 0.808632448245398 +1.2849630994764119 2.5220109542121345 3.5874584240595935 1.1110099513409701 2.7682276699969344 +1.5542331033170154 2.2174888829266073 1.9538166258777911 2.2326065275045246 0.7194664956998146 +3.8308821144858096 2.682137079206672 1.9625758424144477 2.73472320708274 1.384133920125743 +1.3572161787396784 1.3422803845462266 4.077901727517952 1.0347220450936563 3.0432163343193706 +1.021463003377054 4.584057514910633 2.4093691990113264 1.7175500917827802 3.62914498618279 +4.922903835885659 1.3099080730268855 4.6790605256034485 4.414256696723424 3.6226867723038065 +1.794072444241141 2.3013440819531628 2.9452118991631857 4.915233692500595 2.0342837512626843 +2.471928364243664 3.918862503002626 4.321809102601037 4.7234505188986695 1.5016438423247065 +2.4097841912581583 4.125958434874345 2.461635888862326 4.029556211551009 2.324570535120794 +1.9073597399768403 3.652914829243738 4.388294751724565 3.110672431254937 2.1631646639652202 +1.664922794944363 3.821835626020629 2.9459419515395635 4.33293325310631 2.564374744744467 +3.205928234050906 1.1106796599774191 4.944960912258782 3.763392402747383 2.405446056311795 +4.943422603254435 4.700838154242496 4.00125147950348 2.4979133876297466 1.5227844999805404 +4.745316799850297 2.397484473690819 4.612552638475254 1.8866249091308784 3.5976379219382277 +3.3142740568996567 4.9809034454036265 4.280546944126065 2.72506689454309 2.2797306207698687 +3.67636749911962 1.733075680463863 4.820836380396516 3.2606639968272284 2.4920916834873212 +4.881694073051884 4.282648013633063 4.27489163668411 3.5406478414607063 0.9476128598374368 +3.49952051991125 4.8006580969823585 1.8758563827571195 2.071553409343646 1.3157721385868004 +1.4819334751018003 2.0346013901063067 3.009305578163803 1.207395019485717 1.8847608563823157 +4.107596089865293 3.9569231097614392 1.8896984293686785 2.0642997336151447 0.23062515556188443 +4.020985747096374 1.636644179678341 3.415112109790082 4.14425208416013 2.4933370835773156 +2.0248491040298853 2.0881320055223425 1.2306498604999012 2.6646439401238182 1.4353897540451335 +1.3392589115631464 1.8347748702277538 4.6774444424470705 1.4860758787545025 3.229608238566478 +2.0983964020430674 2.0132947397567675 4.3586474897220695 1.2781441424978226 3.081678627823427 +4.733760247594095 4.049429106510882 4.071833363297719 4.56666424269717 0.8444919833032677 +2.253307914002855 1.5904319881511078 3.359013213128126 2.546037167372273 1.048968323662175 +4.311966872502557 2.6948478168522514 2.608184319155244 4.341132490247251 2.370270744838755 +2.763147797442435 1.642557790734986 2.7657512667826922 2.7344356252960123 1.1210274896425705 +1.5236088679327846 2.2372038598325648 2.9152209583565654 4.337367258949777 1.5911373016667683 +2.5820943000926757 2.549091470852735 1.3581375023573607 4.688250987665616 3.330277017271947 +2.4756902296460592 4.111201387995724 4.683567418439566 1.735266862666927 3.3715534870821067 +4.488952600532659 2.4356949529372223 2.6782930993955563 4.447131831977026 2.7101028447809075 +4.150467816667723 4.821593636444707 4.206149126494533 2.6675359797278526 1.6786126061049926 +1.3733630008028417 4.811102829610279 4.406130085997262 4.782233158532689 3.45825225391954 +1.1412319295995723 1.5529386610539064 1.5799539749933649 2.4674595580017287 0.9783499336105803 +3.8013962235339815 1.9088105762529461 3.1906788421650085 1.997819660245952 2.2371395710108875 +4.564343818477285 4.24089775917953 1.7416963157019945 2.0485159556954913 0.44582019330777933 +3.3201202088616544 1.7557225695086944 3.5628145917061267 1.9226091398757519 2.2666305164775307 +2.7163487772470227 4.827646414646042 2.8084005814257833 4.986741352355665 3.0336028461191273 +2.331182147462718 3.705135184916587 1.0683865354597022 3.7148155327495 2.981833896585287 +3.8529353489389297 4.352253421410312 4.882713593640847 3.866334537646041 1.1324066950355904 +4.241686140785033 3.662600521207401 4.02455706535622 3.8222811838753925 0.6133968430228961 +1.3489576322686663 3.2693589297602648 1.315633185825431 1.6819372171822011 1.9550242419969213 +4.009079671331337 2.8252772879767454 1.9944867367702672 2.4239656157835823 1.259301469210032 +1.9457154984488754 4.406821635410842 3.1121272337199795 3.1088299409913005 2.461108345752213 +1.546470841889044 3.079566397391623 1.2020800324627712 2.6481768523405234 2.107505158893403 +2.557937724440893 2.2057109061315714 4.474748823114619 2.6152493438039106 1.892564938144291 +4.230832233742339 4.682879667651877 2.845525020203713 4.115790576317979 1.3483031801321552 +3.085869138324461 2.9408235355102477 1.691995323888074 2.2887414250659353 0.6141206202096757 +3.1930334762934063 2.2773277453878498 2.5415413386798815 4.339359567705738 2.0175894949743736 +1.0600611062873537 1.9632716894430624 4.926521650097982 3.678694065165778 1.5404100230919728 +4.323255873854366 1.3259254215407754 1.243664241620079 3.0848600032213787 3.5176684995753913 +4.209523998224663 1.9434725505170456 2.2560089739335276 1.6536336778934815 2.3447484216728074 +2.8568305039136406 2.155793186007792 3.9642338919707796 3.9551537133201546 0.701096120899947 +3.0576429164155257 4.53849493720607 3.133614010960893 1.6597609933562154 2.089297830607655 +3.9473422880257463 3.0800805223434917 2.7969607987730236 3.282018136154912 0.9936918993140222 +1.2474210157172059 3.074637373603498 2.077413766994197 4.636351790342925 3.144341493201262 +3.9838327788999948 4.951106203078037 4.16872842550603 1.9551339814858846 2.415702431947688 +1.1007227521970004 3.7701207936392955 3.178300171828598 3.6139153157373087 2.7047082018692086 +1.586299854298197 3.077950144327525 4.915621465466391 4.779579627294485 1.497841102880332 +2.7061340044235864 2.277696391847336 3.4846353248087647 2.157460027798722 1.3946157380668456 +1.2927850838290995 4.374746021503267 2.1663162066849706 1.550195364942609 3.1429425882409543 +4.778924852453573 3.833256819063656 4.839117197124233 2.960153268689914 2.1035193067174074 +3.034706174859019 3.372097736508858 3.9337027887784544 4.084772418181929 0.36966890429223315 +3.88536109280893 2.523449205362085 2.407626947272363 2.5082238325821744 1.3656221009133762 +4.634722164464691 4.985632591313997 1.9739926189979018 2.761616878062047 0.8622587205345655 +2.4453341545316736 1.649462788658473 1.593124867122404 1.0306426170867664 0.9745755551120844 +4.2355015949905965 3.4577802639898785 4.139672489507393 1.4001917322229849 2.8477368713111617 +1.5455011745626344 3.933946056984227 3.3333810571300955 2.9468074647599627 2.4195264203318474 +2.4557184746008835 1.628001514655971 4.36200929636924 3.0038749096227555 1.5904855793887906 +3.3215349007019035 3.0982018194958867 2.3592317190532386 3.3938481542646324 1.0584464243269498 +2.2288262761192614 1.430190461393868 4.247182565920227 2.154671702313469 2.2397367878557497 +1.5472994952067367 1.8176603502653577 3.4196537776717104 1.7810475402353543 1.660760486437873 +2.0625553587426553 1.991814285263028 2.224351385163662 3.1913553253792295 0.969588015535198 +4.147906636333367 4.166212760261741 4.2448508710112005 1.3029620173136407 2.9419458087604577 +3.3889135251864086 3.2088445096870553 3.026099042531145 4.130803291428223 1.1192838459810646 +3.0178273736962056 1.457929959041325 4.544240422209418 1.497766208771114 3.4226137785896196 +4.473641818989677 3.278568592336769 4.871227131850603 2.719549790435639 2.461283282887437 +1.4991576325409302 2.176222589329503 2.3680552585609274 2.6310570647742337 0.7263517782607638 +4.087470774853841 2.506973023572834 4.334707886094087 2.8575091170250366 2.1633514150834205 +1.9639337148937104 1.558199649061644 4.289894716946918 4.175116779992825 0.4216563849724765 +4.597401331069451 4.625529937267924 1.2940549248393225 1.9150119169165003 0.6215937616290925 +4.01510986846707 4.65771670249168 1.8944071065030186 4.959403914040876 3.1316367882231155 +2.420298195057264 1.2718294878885295 4.844937485624442 2.665272258942293 2.4637209403163274 +2.343825020024072 3.571696224218491 4.381850573991606 1.0756115875321872 3.526880197805712 +4.454348574709414 2.2902947922835626 2.284734621335513 3.9459259537733327 2.7281285556582873 +4.77296694984838 1.9889184295786535 3.1072167437059175 4.17852354276033 2.9830562215480056 +4.443019243776915 3.390068172538019 4.070627453575863 1.9824926317627494 2.3385920962176416 +2.229290229039372 4.132191026624122 1.5171014884823637 1.3873029804486574 1.9073224945290332 +2.4338423629873027 3.7856177731981853 3.2276958459379266 1.3918606990292988 2.279821801430064 +4.685027097244969 1.3982670538606543 2.078621926062607 3.236637391456384 3.4847943125640617 +3.5164972836867574 2.4869648100677257 1.5829484737992434 3.9796696585944162 2.6084879819316975 +2.5974922796013864 4.163679501048801 1.9596669916217495 1.1464517943344519 1.7647269958053542 +4.424518162831665 1.8338309888480402 2.5301015911312756 1.9917705482773238 2.646027275963626 +4.943677290906626 3.0573665388517424 2.34575270401468 2.545676564670326 1.8968758007253186 +1.9053188502941363 4.291870191534033 2.718671831586843 2.299318234082731 2.423114678283633 +1.7084956460373948 4.775375314941707 4.7837664380329805 1.8157983715914843 4.267854888226062 +4.3009547672754245 3.7451524085991004 2.8007214572588808 3.169074672456755 0.6667835878729894 +2.961898318162546 4.4016710247273245 1.3510706042184903 4.020352432822911 3.0328222709362027 +2.3723423550342893 2.787964166691109 2.481987974150211 2.318125553960432 0.4467576334830202 +4.026010431649749 2.984967938979243 2.7270409659494046 4.231687477566542 1.8296804629407948 +2.9626951119321663 1.9426421157700169 2.867114773664072 3.697531406300298 1.3153326190505072 +1.6864172340044994 2.712502620141936 2.280092463517133 3.408813428331887 1.525405597228869 +3.946136549292667 3.579314974902487 1.1397182510590484 2.342539871912788 1.257512591997117 +2.3499870586797678 1.6142858898621268 1.6158862055667829 1.78580454634386 0.7550685083699875 +4.832743470868285 3.789416435080994 2.889131964757959 2.414599461979879 1.1461729362524327 +4.508548807852315 1.4217732277648847 4.0524604175793115 4.025487406430122 3.0868934262709082 +2.8821573166969148 2.3427947088433885 4.330436824825966 2.183361116235867 2.2137854731586426 +1.244575441459617 4.149165369100366 2.0692510463370675 1.393094115859983 2.9822526456328755 +1.4078700840939442 2.221820680642776 2.901493368612849 4.93935616220581 2.1944020459188205 +3.8177690589702853 3.3811618710653173 3.065535706565928 1.0983454423103751 2.015059148588973 +4.2110161110378215 1.7198028489576997 1.9066701545996767 1.6373327165667173 2.5057306664304604 +4.5016249229046945 2.7923018277728517 2.701176311848367 2.8299725445140544 1.714168577795071 +2.2279815430128638 2.1594291692134653 4.222391174792801 4.3309972885702415 0.1284317558214123 +1.6644100922617695 1.6997960678273976 3.2253268275305373 2.0835803713769008 1.1422946806346073 +3.0902843433672396 2.542520747732592 3.377633862512036 2.538602617059921 1.0020071793892122 +2.3528684927225623 1.6311299560871482 3.2590361460998976 4.815208586151962 1.7153947587777643 +2.738363872970853 4.205781909512273 3.178576478505797 3.7273873911322735 1.5666873050436647 +2.2109643093489026 3.4094211769055107 2.7362966979440295 4.117187235362989 1.8284303486123883 +2.712367244416224 4.736605803115001 1.3854496823571565 4.148226002269471 3.424978063636486 +1.3369686639075535 1.0467220075300623 1.9097090382536668 4.293680259701368 2.401574880412676 +4.492497090331215 4.711746692966762 4.517415436427601 2.38568566855684 2.142975079528965 +4.072480433783042 1.2861969948933698 3.716894232739849 4.074894654547912 2.8091884422098863 +4.773767295284179 2.4244623259319416 1.360788008012329 4.133443443503836 3.634123278451588 +4.14807441604891 4.591047974664625 4.2947509549352585 2.493264857217067 1.8551489788975406 +3.540414445321154 4.234113118460819 1.71923338806603 2.7093531213448627 1.2089478629551724 +2.3280514508235 3.0572002817632224 3.310278234263557 3.636233554875375 0.7986894820240947 +2.5277043641178527 3.404853324358784 4.6724051591307685 3.0056209358456507 1.883496733589926 +3.33315476494009 2.1433873923706845 1.3666584280743672 3.4036124548964253 2.3589675937191896 +3.8917451649091244 2.957074825660833 4.089348068342293 2.0011712949568983 2.2878135588322652 +2.194677364682787 4.56233707637865 4.228950677394666 2.2734259279408437 3.0708125237653587 +1.5002808052683618 1.5959936037503515 2.386336608608813 3.9765610910919755 1.593102270565859 +3.4924264491641748 2.777214153122076 2.7861085361425113 4.983138971287813 2.31051322466775 +3.1860096923975902 1.5257645535069728 3.872067120731934 2.8833534550864854 1.9323479587910626 +2.7322717364982916 4.144223189140768 3.0523389652926665 1.3545095290956253 2.2082191238725297 +2.8220751720218273 2.2952613894122065 3.822248615759795 1.2687565902601232 2.6072695077106762 +1.405446192008863 4.167129323685694 1.0505839578616594 4.619642567295345 4.512767784559832 +4.635199234013982 3.3771385032739847 1.9559207124477678 1.0999922178677206 1.521620974508475 +1.3759466863606722 2.4780165717138902 1.853261531125347 1.305424734780265 1.2307246595531016 +1.2495848045685038 2.291557913824476 4.274521862744042 2.908701853452379 1.7178976273905366 +1.5198832366188957 4.477693371130468 2.343932677058421 4.873774146688811 3.8921380568115795 +3.2211516558837054 4.828772894819624 4.492910406016221 4.4855674784394 1.6076380085278075 +4.9168265107615206 1.3684541744189604 1.5463111581587596 4.625446000024398 4.698086590486822 +4.371353635225897 3.9058079068534153 1.7215488124649174 3.0637368192951646 1.4206341791203025 +3.7037292575041247 1.8421188510491078 3.497454044167914 2.6692883407750183 2.037511162594665 +3.170150642940228 4.254806888485277 2.1869795041567968 3.0788096722901948 1.4042222828999422 +1.506040261720596 4.0255982106741754 3.282430842059081 2.052029459403831 2.8039364865444294 +2.3370202380616933 1.9793933356345979 1.705917905755073 1.595013870056508 0.37442850649199755 +3.6559679273263703 1.4725336282644035 3.2104682941232796 1.4566905004886088 2.800557424472192 +3.3409629726634167 4.418028211232711 2.534315364793142 1.230685301181309 1.6910117891034708 +3.318293371985841 4.60265185641405 2.870590844180789 4.872646917947003 2.378614142526466 +4.246610734569874 4.909336096746132 4.733763477254587 3.286684541472645 1.5916162703539596 +1.910550165130393 3.4317901343667168 4.2963671857127 4.345589552347841 1.5220360985795622 +1.3681365046199727 2.087748826938741 4.630904172237483 3.058536395629297 1.7292143647763227 +3.707132094535265 4.87956407934759 3.0327687463416515 3.508351934189125 1.265217818232945 +4.520899217313678 2.8675461534865443 2.0094216357638435 1.7159594061024657 1.6791951744524511 +2.5170618034995966 1.4964713729206482 4.449102150671891 1.8380975579023544 2.803381852415567 +4.721981000852866 2.6651970051566103 4.011183471547004 3.20684775493484 2.208464704261822 +3.3004559820477484 4.323395703045761 3.0842799836358927 4.932218308580953 2.112174643725335 +2.799467942983089 2.428155655330391 3.333844305882256 1.9434056301971725 1.4391638286876058 +2.386787790731759 1.8023959164701928 1.9890553571680814 1.3175766928608996 0.8901670962929955 +4.770709489061623 4.889234479937668 1.3024159657564875 1.4225415618406316 0.16875524376071252 +3.0786717662451677 1.6321310341254143 3.0027348069809183 4.007311056638375 1.7611511948317764 +2.471598944457363 3.067071344156131 4.5920183069804335 1.845857420409168 2.8099798920520564 +4.348166375441919 3.8294747273658603 2.043755169518642 2.6796989839927643 0.8206494750816303 +3.6677045837228635 1.6497603890976285 3.0013705170284535 1.5342944699171084 2.494876930958627 +4.258113201231792 3.664218904728957 1.1833462915788546 4.374947236997738 3.2463867653465606 +3.083372602685593 2.676103231248583 4.448920244734076 1.0132622704045908 3.4597130021844986 +2.3111510510772773 1.3356097720445392 4.298640177354818 3.5916647891639486 1.2047800573567196 +1.886043770834965 3.584201425716332 4.220381709635187 1.6609501666507924 3.071551602049958 +4.041507753813993 3.2480489928751792 1.8217170318341522 2.795275017316886 1.2559426564966076 +1.864491486224352 1.91303792787112 3.8465436664337673 2.28096334803605 1.5663328159592587 +4.413936350773525 3.1994398782539486 4.487160704199132 4.825219698115946 1.2606686976087507 +1.5340441477912306 4.928918311182503 1.9679864073144366 4.511365576362147 4.241927413665564 +4.631712488174241 3.7145027784425073 3.0472493276076595 3.0600157206803513 0.9172985514096582 +3.348332009253408 1.3959724742005757 3.5942762867573297 3.4246386954001795 1.9597154554968348 +2.9076405701729375 3.8550732096361267 4.658462056165453 1.7995685303809013 3.011793618110811 +2.9458274715763078 1.05216630348822 3.8668491107756324 3.608218341915673 1.9112410873895094 +1.490155928857881 4.583986022826656 3.958460935110617 1.429071789408832 3.996197455174211 +3.0762766853512 3.17156080978743 4.8049114911734385 1.8135047921020648 2.992923838593069 +1.633360167065066 1.7795780174133786 4.731946641062001 1.4706252996175961 3.264597456336878 +4.630921160003723 3.9349770589224042 1.6526529181112743 1.5878964250397898 0.6989503524749109 +4.5239080870483335 1.311509282342954 2.780102857190255 4.944451427983104 3.8734881975250164 +3.497510437366712 1.358443235557139 4.316086801064685 3.201741857004538 2.4119231223672633 +2.9174204525852074 4.440559604136643 1.865639242120276 1.5459023508150427 1.5563369026821805 +3.437158582649124 1.0821068054702527 4.186579786478056 2.1539086531299 3.1109517530074684 +1.037357259165245 2.488469511151366 4.006137109913887 3.4590808498993653 1.5508053776942183 +4.492744172207109 1.3665501458758142 2.554982808975366 1.7204523621428676 3.235665334511578 +1.421861850016462 2.2007768758933692 4.937248960749759 1.429706764934617 3.59298773626637 +2.5294323183742446 3.33614095569134 3.8442361836384507 3.7788220827616104 0.809356429588059 +1.891802981178183 2.1473285489790266 2.19275809458366 1.6495842975194286 0.6002758446057266 +4.8247038520131476 3.339211854951218 4.2919417151069865 1.7960039789366409 2.9045467212930474 +4.654541692018348 1.0327018520250557 2.8748800448729863 4.057578200968983 3.810052329692535 +3.4892373762695947 4.9342741284988065 4.114864678357893 4.593321622679763 1.5221866714903824 +2.5898150146283228 4.184589151095911 3.3806668937301314 1.782068004042153 2.258057341268724 +1.6895011803698847 4.276808802354634 3.7327898333221006 2.451841222883142 2.887038287478342 +3.0949751203446225 3.8517635146631086 1.1146620135083616 2.1661316286585324 1.2954987554448676 +4.454858875977224 1.1693971453265117 3.3957783590751545 3.524824659857874 3.287995092958029 +1.6854532024727606 1.0171694318092022 2.1349919924738616 2.8496027365006262 0.9784026336896225 +2.0662106785413688 1.861372271555041 4.719261424745322 2.4237887923256527 2.304593972734543 +2.682772926799431 3.2003820944573307 4.007799698938809 2.9161945301504995 1.2081064087938853 +4.528215552348322 3.7677504814129437 2.87795434104026 4.659418553365098 1.9369878326687824 +3.462922879544111 4.71501940971133 4.216379940417345 3.280088166539801 1.5634538709816628 +4.774907323769894 1.536353381811896 3.3627849772796727 2.0928086195113687 3.478659452183001 +1.4202900788158908 3.033712906792746 1.4381142937173585 2.855795057614996 2.1477783801319497 +1.8166724014835927 2.173703520500152 4.273037356363364 3.916662985102716 0.5044540736654219 +3.6105252779943475 3.079767982012113 3.516479240544165 2.423698492302108 1.2148551646047538 +3.516071186602691 2.0072652392255628 2.1769440155829614 4.561237206001426 2.821586327709371 +2.8263693124620013 4.898900276064829 3.3907653990708213 2.1184047093832303 2.4319305746165427 +2.8385813700839195 2.5853863423613546 4.966445549724569 3.0847844148433645 1.8986195902775926 +3.80390037613526 3.1995734608783852 1.0092089506490387 4.057903095881656 3.108013354488608 +1.2595399775265474 1.5320365092110437 1.2189723953008675 3.1385969253037467 1.93886892181211 +2.71133207985038 1.0313554760413761 2.209856672875416 2.6545667900904806 1.737840176109147 +1.3279999278221832 2.2578915474892844 4.60344234477353 4.691874937364557 0.9340871200051286 +2.7253225589206953 3.5158033743226516 4.807822654535546 4.493199513637274 0.8507923602778973 +3.632465800072612 2.974963600488114 3.3202310670652406 3.176078141830036 0.6731190149686156 +3.1086896545545573 4.533953082328665 3.083537089522362 1.0914920447468126 2.4494120312771432 +2.1454285765248824 3.099519935314109 3.820865612864016 2.2028155713334825 1.8783972577208565 +2.0002006854580157 4.955330388935399 1.2239415432107332 4.858056568781615 4.68397092043219 +1.977828284160842 3.159434009385268 3.4616694981158402 2.013790412546956 1.8688354492332735 +4.671140805007816 1.366493393043104 4.243076260723141 3.949131366484158 3.3176946993739853 +2.64729306750908 1.5394353154645208 4.665906691160361 2.989972776584873 2.0090055462316525 +1.8805792164326944 3.5714012144948466 2.303222843160759 1.6329308497118062 1.8188376468537975 +1.1188500143960862 3.983525741472832 3.3552822229050436 2.516696749386063 2.984894071436997 +2.1466104724699138 3.957398887677444 2.870674406857098 3.903965756227864 2.0848610738690136 +1.9278628117291277 2.358177422599262 1.61587354158041 4.269944789485482 2.6887292264719966 +4.459417240597892 4.435230783980694 1.4454849931073839 4.5667009972909725 3.1213097137989148 +4.044770609461613 1.0981718627363306 3.545884786819249 1.583398719733216 3.540310118861032 +1.8683380752441456 2.020141260216281 3.606194595473244 1.5057580923695872 2.1059149343071772 +3.9168250677084036 3.545683089593948 2.40441585174894 2.4028517796078646 0.37114527376806694 +4.2316983195792 4.002390270623739 1.5771348165778871 3.363756867617641 1.8012774729555845 +1.0074031023927805 3.3038221170316606 3.9261375716786007 3.4514215275526934 2.344972412064917 +2.3629290080127348 2.4079159886142905 3.3949887219252646 3.926512433617441 0.533424113173254 +4.720956644240761 4.4732326784862595 1.1020153695023551 1.1672286987689073 0.2561638958228996 +2.65202427138426 3.524498720800387 4.951375956830256 3.5747026219716878 1.6298592380308756 +2.2428346068322496 1.6977176315187608 3.944330116533842 1.017789471196127 2.9768763268884073 +3.0083516104129147 1.2144566976406335 3.0893040776866085 2.4070199392917604 1.9192630365782253 +3.975138590526768 4.107228097349252 3.563013182337885 2.1681395566572057 1.4011138674041346 +3.8995037082424635 1.201062200110965 3.3261376263178604 4.428259355179712 2.9148342796866573 +2.4779666874263993 4.295482137687961 1.010320836218047 4.076167778674465 3.5640959423827043 +2.8102478026988598 4.324618748041495 2.411601944098516 4.260283698782498 2.389758061017766 +4.303234226899402 4.884418444303304 2.188093592354871 2.3782147232370043 0.6114909148689673 +2.4032785872444933 4.260259775265061 4.500091804451082 3.5138952242790644 2.102608576840982 +4.544550143986289 3.937759778001273 2.3991555085018352 2.9027824806742335 0.7885649468190727 +2.6471779631827137 2.569091782794143 3.7784277374925717 4.288583993991751 0.5160977209918031 +1.268507861848052 1.4076132699852724 4.880671255196293 3.3624993289007707 1.524531505861679 +3.8753901372722597 3.006604048600941 3.6737246539054635 3.1277898969703135 1.0260770081717308 +1.3223776765384327 4.343635046649782 1.8274765307606664 1.8677703384060655 3.0215260527400236 +1.2212815955287177 4.645184247421145 1.8081805113385765 3.4720871306123695 3.8067958452350896 +4.4532328599496305 2.4678108790274713 1.7535802672744367 4.7515217734247255 3.5957688630705302 +2.0117076665719686 3.79076514989578 1.54629659126091 4.06840138504092 3.0864312919257673 +1.9446576724457674 4.823086623716312 3.2980048760308653 4.421151647165605 3.0897915620673895 +1.703165175507411 4.87693479330044 1.3475765028179416 1.2095299109361135 3.176770443131876 +1.3234853362366872 1.7078826205929825 3.482601983373936 2.2440368014408354 1.2968442397286841 +2.424821492502453 2.215230485914816 4.02663675576431 1.6252516577586809 2.4105142146367697 +1.8499850850226127 2.355478477028187 2.419426088612307 4.202305731957701 1.853154983269532 +4.283749729537639 4.065481357171224 2.1592970460817593 3.5860610836378743 1.4433629831885366 +3.0887756131984427 4.3860844813213244 1.0089436215018517 2.605954044271248 2.0575355622064855 +3.144247843583238 4.466952462834907 3.766791780077492 4.552853109523289 1.5386487329601248 +3.7166295889923417 3.834128740971946 2.8174414161231605 1.3266202196001737 1.495444379011856 +3.4801339354014726 1.5558193856373008 4.604701531395307 2.580928269565186 2.79260536090093 +1.6157199738198482 4.363404035480508 3.4160892208819416 1.27120071098587 3.4857301132744363 +2.359227925039577 4.39564127630195 3.15226998806484 1.276539083184736 2.7686360838365847 +1.6946371191066691 4.805171733635424 2.254913956717428 2.7818668704452927 3.1548541902071854 +2.41003927723779 1.161333837701616 4.921032430165022 1.5923561683864578 3.5551864832179123 +1.078360173725247 2.7542953369722705 4.819587480810236 1.0999052724409486 4.079803230876074 +3.8912061740889827 1.2854127471751071 3.551154517923723 1.215078118886427 3.499630312745422 +3.5971449102315507 4.2298030932902755 4.359951822339546 3.3055868016163013 1.2296104966679067 +1.3710856337440154 4.803729653733862 1.122894101696553 3.615497836717736 4.2421832053570725 +3.455049711461711 3.4841120026555563 3.7952311034589004 2.470490709479065 1.3250591414013508 +1.0900592446481574 3.6671425560123816 2.295951997512924 2.3296168378873032 2.5773031865089964 +1.591560997470621 1.900583867253622 4.154410277394785 1.4730485392543358 2.6991102061258063 +4.081953681906837 1.3339758230232102 2.9600292437009132 4.9302474000928695 3.381292932694705 +2.7364849959778876 2.0923944887122126 3.366914114064817 3.9501041932207435 0.8688862123291232 +4.1700975804169715 4.853567193843741 1.3963198110460056 2.127287070854117 1.0007216632956024 +1.436192904461251 4.113017869834625 1.485461807105327 1.764846777416028 2.6913654261139786 +4.803116254674839 3.2081317234645708 2.304830354255494 3.492574796174548 1.9886458996285996 +2.506927690468356 4.2996380978723145 2.12439960243206 1.7547833856114567 1.8304170979728207 +1.5320238715330508 4.899397835584779 1.897230653605082 3.104501059785772 3.577248837782065 +4.051922537502642 4.1305870217451295 1.3627237940005097 2.3088794201969085 0.9494201230562981 +4.761497570013892 2.749869403716712 4.1546396017577 3.6863784141875318 2.0654095040027247 +1.3860690600903856 1.2376577870549537 2.0063746728591543 3.7099529755134526 1.7100306837125752 +3.406850052569358 1.7238451104901924 4.148587161725481 3.018746262686386 2.0270782156109237 +2.5830711857043736 3.585932585563009 3.964393689351917 1.189043975329831 2.9509823826056465 +1.7173083113668848 4.726302122731889 3.327136401301706 1.049173287745512 3.774011089484969 +2.531844541564938 1.8470522779828484 3.6275061606115733 2.9222578186564854 0.9830135645515187 +4.456178347204657 1.2544466938761536 1.8006717618624237 1.734511145748169 3.2024151522015836 +4.00933490002206 2.6796055988239225 1.7130959667124768 1.258495395432341 1.4052906083344876 +1.3709798872414845 3.37941142212679 1.6317951537465483 4.2761196075861285 3.3205796252304713 +1.7573432090229293 1.9539078163285328 2.101345247257867 4.984959715528248 2.890306220189044 +3.9823764720159374 4.7560900211008645 2.1726292819580335 4.664229203893969 2.608965853940744 +2.7463195449711146 3.771533774537675 2.6970711931865496 3.496841221098955 1.3002677855168012 +4.006599807889211 4.688471456072815 4.0273992639810245 1.2716778366690407 2.8388289010687173 +4.393458613725969 2.039412110658339 4.091626987109704 2.027640988704895 3.1307464190215137 +2.209507542637502 3.0553999773524834 4.807912052211492 1.261959637145964 3.645450937952271 +1.2528850255805462 2.5607335434106173 1.238692978288046 4.974289599418631 3.9579224173033705 +2.870614928939321 1.6934473325598787 2.9017530608913837 4.3272964759786525 1.8487556837679842 +1.5662745855315992 4.506594754311478 2.92570881653806 4.273952901824508 3.2346939280932943 +2.4422939001518524 4.291637179788815 1.687493219685439 4.147843731045775 3.0778881078898013 +4.336263873002897 3.6997430350589475 2.8241534106774138 2.3651404974497354 0.7847621497285837 +2.6081589312316917 2.152401333337519 1.9983585548143212 4.607536740107284 2.6486837845705455 +1.1026055942125286 4.9985700733554825 1.367485186424307 3.4396385061483277 4.412749551378019 +4.863287356024761 3.9144949834169758 4.485207573224249 4.4799243580201695 0.948807081909491 +4.349052089182178 2.8597984387402358 3.139432052358362 3.4361760420722964 1.5185300230110674 +1.311267699042677 4.321075620136677 4.267680385192859 2.989378288653126 3.270015286187216 +2.152794538791366 2.6506634979143286 4.416176888711496 3.947804556267116 0.6835540521842957 +1.8380424654223897 4.591650145428202 2.291999837997746 2.033403449736701 2.765723657093863 +3.775622752922637 4.809121918359153 2.931231759326506 1.3365120449157541 1.9003293115900428 +4.296020038853676 2.861025168907978 4.86474528118657 3.508590457056312 1.9744280649803994 +3.6735941582322136 3.6032946225662164 4.970448239705142 3.902236110415502 1.0705228525708184 +1.9226249352703189 3.0312243499219207 1.8620236208166423 4.936581508387424 3.268317436570319 +2.669787575195457 4.1224551215027505 1.0932909092613143 1.757834142785549 1.5974544467111726 +3.6456509796405023 2.960742270727448 3.681836026068926 4.95304654059857 1.4439792629382424 +4.480441059266688 1.6093916786158857 2.5493793983439335 4.027114638938961 3.2290286445666294 +4.116791266274419 1.067023131740363 3.7629033479817093 4.267567240234914 3.091241064453481 +2.1869947237999203 1.6098014184213154 1.4209845390379865 3.4121691792730386 2.073154211167581 +3.5751083837008477 1.0940378369811192 1.0449168862936853 3.4257106909532125 3.4385884019616713 +2.9167923660587296 4.686508319783959 1.0487041182338226 2.1416808861231975 2.080022300845715 +3.681900547726146 4.7576172344995085 2.217827035476148 2.2160355586260536 1.0757181785170151 +3.321124446592101 1.0982196212082531 2.192343031850937 1.9093013831053711 2.2408521677342756 +3.602572462002342 2.230915397154125 2.113750639093368 1.212235681793583 1.641393408596263 +3.859256490744961 2.561113033490206 1.643031964136847 4.724864785542063 3.3440798397621667 +4.385196954123065 4.991565405543398 2.419061395393879 2.8722702143905803 0.7570210911819282 +2.923142051044804 3.663194311965585 2.6887190622779555 2.8343632573805637 0.7542476917174138 +1.7767020942888294 4.645901504393777 3.101730621024091 2.3232223235286344 2.9729413758457888 +1.632591893710213 2.4270990798654433 1.9860161828459644 4.184835991982061 2.3379585586364873 +2.1553140610249195 1.4713467173249835 1.4845256102718172 4.324496586651934 2.9211721061809044 +3.0516910598106364 4.92357270503598 4.882022535050852 2.6202783914409 2.935886146444622 +4.44825306006313 1.9949231707352126 2.6607670129761614 1.3406856427593463 2.7859365337105646 +3.770978420234255 2.163065712531633 3.4784037289856977 4.566867578246263 1.9416840182528936 +4.7619280588421296 1.398795537102055 3.9912157253569758 3.125361502386636 3.472803463229862 +3.0149944111934177 1.997852195881824 3.7963727593290466 4.751249226533417 1.3951227020551549 +2.40916200130191 1.596644217740304 3.8903583979729657 2.70291037747806 1.4388251978545326 +3.362354786767006 3.4279573148655405 1.5239014089100533 4.742855433750654 3.2196224476994844 +2.5387632724585187 2.856342493820694 4.944950565195731 4.770205677574039 0.3624808099622971 +4.25642371826841 1.4926517185968238 2.0758381081567765 2.856751290609567 2.8719785975346723 +4.852605434927126 2.5303417964882167 3.830434855694242 3.0935252310542234 2.436379322129995 +2.1557439953452597 1.7665048096708245 2.026178442384689 1.314834640882514 0.8108743106055731 +2.417813183672091 4.125778744189426 1.0462724522925568 1.0424587490639254 1.707969818306404 +4.677988401374282 2.330511315688877 3.756087577022632 2.121505995906786 2.8605079292218756 +1.8668338357982153 4.042322767266107 3.0806520419665184 3.4610581075405933 2.2084974226077008 +1.4320963584127377 1.966869934465433 1.7151063620261322 1.9170697660285025 0.5716397416209028 +3.507823733056631 3.940892085452052 3.5886885225468133 1.462719345675377 2.169629723905417 +2.3887639710442716 2.151633496463395 2.8710531487601205 4.582156105565252 1.7274559880825373 +2.5421510582991367 1.9450547867259775 2.1240661772605094 4.795572036751921 2.7374198645482775 +2.761878349980371 1.7812495586550372 1.9193071302627858 2.410225254927058 1.0966464478126354 +3.1982587020200834 1.65909685817127 3.62715297341914 2.8860974897760268 1.7082688346386254 +3.965318707958527 1.9701914346631515 2.368106949306939 3.5926726634782047 2.340960064796241 +2.624672688636555 1.3929382054140618 2.354645359672141 2.2126061878306187 1.2398971584356533 +3.431291843582992 3.987891939842959 1.053765916848631 2.033546965288753 1.1268427441480149 +2.0663895704598 4.0115029436998935 1.8568314179531562 2.8504049535926703 2.1841827774892515 +3.016352460620557 4.249922966824036 3.0464454207089693 2.2317327086870637 1.4783277704572808 +3.5452081612288517 3.8475140421252214 2.20391302740305 4.815271400936073 2.6287984709074914 +2.9235645303666264 4.733371695999454 4.744979334584967 4.368605160364337 1.84852900864341 +4.300424656387918 3.2670832763278956 3.2365513496577436 1.050433742431486 2.4180373447010717 +4.0204400887757945 2.40633466862118 1.421326685039233 2.9251695517209053 2.2061005586876257 +2.820508150494003 1.1659345601609394 4.8382656927676475 1.2514790066493928 3.950019303439265 +3.78776826419247 2.61593744140625 1.0981176424471797 1.4393139596938962 1.2204926890950847 +2.2416482395071182 2.610333764705356 1.4823079156977435 1.5827399654999348 0.38211989364356624 +4.398872337578782 3.396812833014369 2.6196638538673334 2.890902266671536 1.0381201892210838 +3.803604082132865 1.023401226084422 4.410032904200049 3.6255755452805265 2.8887542762829295 +4.217554393056334 2.3878183402844755 4.7145686345449365 1.9840813982113334 3.2868669840128697 +1.474613062456644 3.7066434009690052 1.7863356395385246 4.3460313611506125 3.3961745566561845 +4.647297737699617 3.394931289474381 4.281480076086706 1.942295713499314 2.653338501362703 +3.193255789239942 1.8259019615690768 3.650738899953812 2.2090690743850887 1.9869746792552538 +4.589394253571772 2.7249302147394054 4.352283691794764 1.373414823222467 3.5142404425776412 +2.3499292887032666 4.144914707432807 1.117526616979263 4.012602265863536 3.4063816090118793 +3.0657984644013756 1.357996572739454 3.7983805657658154 4.592831825200423 1.8835445587458959 +1.308069773281856 1.9467427462087685 2.274263683049002 2.8203447928632452 0.8403021747224364 +1.1291379770651213 4.1851838435121875 4.7040891871361 2.34648038040308 3.859758492886996 +1.1707738828533691 1.598576516288043 2.049605795002513 4.176689096577322 2.1696770416382325 +3.567332153829492 4.458049732860696 1.0235419915425283 3.1617943760927565 2.3163551251114205 +4.371926036131627 1.966410218796141 4.0803720145652855 2.6707134815463007 2.7881254503993262 +2.786611293415229 1.0069843605428002 2.6445197066351347 2.695888348850446 1.7803681522673824 +3.8851320802326526 2.9496516138942828 2.0856312136464346 3.5312217336708636 1.7218756210845059 +3.640530553285829 1.9795670150198381 2.328054290923419 4.316303290029803 2.5907400405862067 +4.559286960404731 2.4353339799457805 2.391207618627741 4.6388172719679694 3.092398004298386 +3.542640712911898 2.1728202089897954 3.010458209022375 2.4578320695249274 1.477093044808368 +4.946144920017058 4.920078372179107 4.7511945748884425 3.9669975805442075 0.7846300981065667 +3.540234177256772 3.236934719591164 1.9000316681354685 2.0261233670300425 0.32846564135442174 +4.7386616545594284 1.7060004779373679 1.3384819969264563 2.746849837506527 3.343730519430487 +1.4905848152688828 3.512541891432386 3.9829962212230825 4.45572421335836 2.0764831259598315 +4.167073759165067 2.631038547598564 3.057668552488144 3.6551708532426677 1.6481544741252565 +1.8229771520728315 2.8234219177605393 1.1673446105526208 3.5791798089609173 2.6110991466187414 +4.28668817938196 4.562983154864149 1.189590121926801 2.5831469382721743 1.420682763272419 +4.714758807689257 2.524494022377705 1.414057776659022 4.388130923454767 3.6935580288209096 +1.642325764445987 2.528232054953635 4.623869143234172 1.0503492086845916 3.681694538956791 +1.7777912499129074 4.877287019586959 4.608288428141677 3.6502157799026196 3.2441913053226594 +4.034520124303365 4.801397519074381 2.4694284842411935 4.8487367151487515 2.499841714244171 +4.094207390738064 4.027297160426871 3.5938599400144415 3.876571143440607 0.2905212616366791 +4.529362873162922 4.460933316281869 3.6037069521356204 3.60933838883237 0.06866088649447233 +2.412211610094369 4.065409148123837 1.5779190088282862 4.723702097466606 3.5537323113185577 +1.5221566565651439 1.3061170850554662 2.381839893340536 2.2564234539219905 0.24980468317169482 +1.4572603219898186 2.7344721847814926 4.058019931149813 1.2688616369668408 3.067682208519234 +4.272535503919991 3.2953037139484205 1.0470316915472972 1.9006283982494852 1.2975397138522813 +3.710584510915319 3.423462259941058 4.953289772845967 1.5976104475933601 3.3679404568567293 +1.4568421743789899 1.5556436853043132 1.8947896080129523 3.746719863216822 1.854563940310659 +3.659646730324942 3.5691770561106146 3.05060741284356 2.063623197348459 0.9911218913882017 +2.7260545943530317 3.17312321714657 4.286002256960542 2.355869223817271 1.981232918946521 +2.2344700947055696 3.6529160867888497 1.9219272947580905 3.9196164979511052 2.4500512617108776 +4.430849543939418 4.252376750653738 2.0607098900141985 3.3343401177248113 1.2860740627512013 +1.4889346436620827 1.8877636315208224 2.506079520841815 4.064434901474841 1.6085820009885505 +4.398683231588839 4.809066712793855 3.991736797716952 1.812200753138018 2.2178349738573275 +3.875328715352447 4.042393151403099 3.5754357130998886 4.220385536105228 0.6662362944087787 +1.7509076519872742 3.9184933709526333 4.393785891875323 2.063291341916607 3.1827083901057995 +1.381407926975689 1.390855090447967 4.298789507472301 2.1166358473967075 2.182174109707789 +2.042001854676439 1.0768388437538343 2.5605738317622255 4.727816716197024 2.372442066265571 +4.199976689898451 1.6570503327892991 4.115092812471033 4.413964901161609 2.560429452861119 +4.783882486218982 3.6663463207417384 4.599391884133042 1.1106707493263022 3.6633403114639522 +4.649775381170851 4.308522855174832 1.414950785654142 1.4936569469358614 0.3502112881138581 +2.170367124808233 4.866067407765669 4.295336430668536 3.7152795025469154 2.75740204819658 +2.322235897675866 4.383134253273221 3.1775365070308763 1.5072418356715485 2.65276955676049 +4.871998612783061 3.6780456522095313 2.247296763430282 2.7570319800538337 1.2982117173745416 +2.955363594580807 2.1934128092346032 3.1725846180296084 1.792626919291827 1.5763414127641797 +1.7586926144638655 1.2569778028064857 3.6199834178021892 4.212758882328023 0.776595456837225 +1.0490318005392392 2.4566045966008643 4.169581821046093 3.25683659684998 1.6776069326590048 +1.8200832309380264 4.519572711368307 1.1321576196095613 3.875939576057641 3.8491015678316147 +3.571378524906389 2.818245807966429 2.5404452700984606 4.504008669204103 2.103043059861749 +4.506264971541728 3.5617144318278195 1.23225667354428 4.118466735596895 3.036837869292267 +4.186523756554376 1.1740869212509795 3.4201432323969683 1.8600863775510756 3.3924258395791647 +2.6424712699926687 2.777980963757542 3.2057447609667817 3.57652321584312 0.3947651703288104 +2.6262990578583167 4.2124867847522545 2.602031908414 1.8719127847218817 1.7461573353308983 +1.9231734115443846 2.8199288188871083 3.5219834327133275 2.4582663580396855 1.391281522751835 +4.535798212271578 4.279635622747289 1.259891216350825 4.5848701267032475 3.3348319337801975 +4.027180476410468 4.339372739679085 3.222840996633683 4.9665742124558125 1.771459719329279 +1.7791102484788595 4.098123008449301 4.66792919656656 1.1996264330074258 4.172163017023383 +2.435728136325028 3.1201509111779826 1.9200026329749242 2.16984959580834 0.728600054607808 +2.516851977552897 2.67252933249808 4.7163942894905855 3.436474414331157 1.2893526769937136 +1.9491740112568121 3.7856287329727456 1.109884159215956 4.319131410048969 3.6975443015455536 +4.74757757044793 1.5574464819679918 4.465659121706759 4.400944669583875 3.190787414103259 +3.9887668682015307 3.7235843160969244 3.311654533963025 4.441515211205583 1.160563197727605 +1.806603452230847 2.93620149491167 4.420568570567678 4.670122074164546 1.1568356362015384 +1.8592498631963417 3.8954150383951758 1.3257556898063227 4.2180558081669535 3.537141302713452 +4.608122935990207 3.176749590441646 3.7881142595169686 4.620160782277063 1.6556361527775494 +4.604007654586956 3.3206731590088037 3.715303414200009 1.5873370432818534 2.484992616347062 +3.5730653267347825 2.1561520303700923 2.5647495786593217 4.226922645025673 2.1841388673728535 +1.993231685296493 2.0001007949413188 2.4754068769403355 3.4692848820020408 0.9939017424337014 +3.875768623151003 1.4487217406814792 3.8961323371798837 3.274351882728125 2.5054276088610643 +2.106659105404761 1.2939472339964024 2.0040374665985716 4.980591939792188 3.0855108357964007 +3.122075457883949 3.1241370121302308 1.0274599876662802 4.604690468763028 3.5772310751324943 +4.993148543327562 2.9971512305459984 3.6117178647784907 1.312895546442706 3.0444357973046396 +2.037244847791161 4.465999873009636 4.1575434109622496 4.723615412167234 2.493850132440242 +3.6600423714106514 1.2635062501929033 4.074579235687654 4.363153746875421 2.4138476813603353 +1.4571110405417254 4.0496496563950855 2.1518315516046775 4.756440948 3.6749485142627045 +4.335611554805302 2.5185770576732405 1.8004495808428933 3.8087473591172882 2.708297311963706 +1.2190157018626313 4.1618474311729265 4.6290778058941076 4.508543347492763 2.9452991601359493 +4.773455666245125 1.5876634660888498 4.363240094189723 1.5838869778328668 4.227774318477646 +1.7780977202972443 2.970164972581175 3.4993429705784895 3.5686144849401997 1.194078253997503 +1.6426547393019484 4.146224854063499 2.9886693099379644 1.953885942134645 2.7089924211428764 +4.896895999740139 1.210001072036249 1.5163557462684976 1.8098514951496476 3.698558362732699 +1.7361733829981914 2.1012107213200593 4.390319987240236 2.3569989810030405 2.065828301862126 +2.758333994853472 2.616208993165594 4.763826861999448 3.828198941256761 0.9463609893576883 +3.568726693345783 2.444603632763444 2.326487608562726 3.3353370998452223 1.5104403170578955 +4.718668933471707 1.1204175061723247 1.6576980605089648 1.519880096657991 3.6008897685463896 +1.565002367762685 4.532931248225413 1.689971231306314 3.4180905280825122 3.43438468191538 +2.6209074339615697 2.996258095703283 4.358376377784131 1.6563811467840956 2.727941778634008 +4.934581468230114 3.250989663572205 4.461095843969815 4.935741498621949 1.7492197867024681 +4.7835352672055675 4.972489135581481 4.115482721269556 4.159905562982285 0.1941055208902005 +2.1220658097534906 4.661042009631272 3.1580859376319173 2.570103759684793 2.6061702141512675 +1.868385733425273 1.1529419272353127 3.1306798439554444 3.8224587257738953 0.9951973980801817 +1.8559808178544217 4.952625642057344 3.856856894557829 3.9962031184754165 3.099778465855719 +1.382101257964222 1.8135441133623265 2.934374409703732 4.101028419537828 1.2438747992205827 +1.3128301931478221 1.0310572577278005 3.6146001712195495 2.126489602017045 1.5145524267279153 +2.930049256177765 4.542781698673428 2.2057724330095856 1.586516503235118 1.727536928010185 +2.5736625788351057 3.848446916148816 3.244860139456313 2.1812901929935298 1.660197620067925 +1.8475940174280994 1.2637448876501094 2.2022105367642593 1.5257217562967695 0.8935977151050173 +1.7135454203921778 2.568027697842763 4.026522532412892 1.4279754543537084 2.735431753739629 +2.5462157175724447 4.756011395826167 3.054508459882594 4.85284754398803 2.849073604007101 +1.8882038867343867 4.362369531454882 3.108350020640358 2.9396953042933514 2.479907266585038 +1.094141097847149 3.7275937561971366 4.750848358391659 4.878047429725701 2.6365228061821995 +1.0971175352036364 3.6258872664434825 3.630487289974578 2.093253057696757 2.959352199134403 +3.722364031755199 4.189442697427884 2.6306988147594184 4.779677310189034 2.199152348916625 +3.8437821074398637 1.3825029282563386 1.732564716667126 1.930267719630724 2.469206689457801 +3.5780757402956356 2.876862923715022 4.513103859777733 1.8327026993122968 2.770604590186296 +1.0273714975804769 4.830370014996178 3.2108049387797983 1.3644048588733448 4.2275277620075515 +1.4799295734966122 2.144056082814346 2.5275571500174903 2.479635036502936 0.6658532491039296 +3.9942996478592314 2.975729379046418 3.51528021592731 4.281370720547231 1.2745116922877606 +2.0968829146284405 3.8690156273729297 4.507890341416102 1.252638089822847 3.706362310012622 +4.984662146442654 2.0050138372749036 2.6373190535152964 2.8334789995210135 2.9860982520244033 +3.8504138859688393 1.246989625512986 1.3963307491100752 1.585759556233958 2.610306716249737 +2.2591698872158514 1.9398324719400368 3.5435993493447713 2.751274733029215 0.8542568012106379 +4.435813566614943 3.727916351594073 2.569752292511603 2.123020775756665 0.8370707945547207 +2.6771188284571314 1.5326046927281847 3.4160356208531204 1.9439277574317848 1.8646753520198383 +4.883690563484034 2.1026507257788913 1.760735402463581 1.9705863700335362 2.7889460388277674 +2.686767175935361 3.8826491830103556 4.9189563042819255 4.425156029547976 1.2938208864340695 +4.838796091132409 4.913792749861683 1.9731598389976912 2.42919851058846 0.46216422276808516 +1.4158035111654357 2.6434253959239267 2.072473796750905 2.6085904947315477 1.339580757472896 +4.962392440177839 3.283318349031433 4.6194751600618895 3.459246776865719 2.0409359874168347 +1.0212983509770481 3.6395060447421472 1.1717556608894575 2.2418893874416495 2.828462076888294 +3.8052389570350003 1.7324201607558112 4.797856636114038 4.275626718374138 2.137592535819427 +3.9865877585678646 2.9075326723577883 1.7363565132144836 1.1584860369686991 1.2240482696333363 +3.571760350953635 4.507181423966228 3.1582891182610893 1.0686006396272312 2.2895000593079526 +1.425997438772459 3.680472400838605 3.6863379521958 3.8482862842721652 2.26028418939864 +1.3895509442461402 3.6347039466713187 1.222923378309062 4.69234602892716 4.132505962841518 +4.139825270013544 2.3316069099900276 3.7141971759882084 3.875998300090212 1.8154429876167435 +4.463801523359959 4.130613699564697 2.7444525509826705 4.094274921892291 1.390336131636336 +1.7120247973440308 4.837466734719834 3.8319652009033165 4.952464733695146 3.3202268758164895 +2.4325510454842942 2.621718322011299 4.559513224095734 3.4155229167609313 1.1595249379744363 +4.596780543235728 2.3980159410320985 3.4927484002940195 3.9310942405229916 2.2420331959071724 +3.70930551490984 1.3074961646132675 4.8857710766933735 3.973534400884999 2.5692146480708766 +2.8130872897316093 4.781748985666576 2.0638487257728646 2.30233096372239 1.9830538698832552 +1.5235788562326866 1.48735605046117 2.075400590720048 4.217063859563103 2.141969572325779 +3.3786663722421144 2.394867348067233 3.173246396374328 1.429405540911199 2.0022091422101305 +4.971931178059599 4.827726098285741 4.127981605829795 3.271859431151794 0.8681821715561632 +3.867379581823658 1.9065916919231851 4.710392812536819 3.0705848231789568 2.5561023827582146 +4.857652356586744 4.090405762312476 1.055037437766594 3.394780117946324 2.462328805395431 +3.914311221626339 2.258166022748443 4.519481906950977 1.220137178772562 3.691678826106763 +1.5346030449366124 2.971874475430043 4.191453755154212 1.1068956932008547 3.4029762859112145 +3.9120837465728338 2.5179642170055763 2.299422566153065 4.472076832677127 2.5814716393108097 +2.3577317006013128 3.740067198398975 1.6828277480079694 3.852949443271501 2.572990400433895 +1.105924336665804 2.743503736388388 2.842954634586113 4.08712221733891 2.0566038180380577 +4.115677359849255 2.242773938977307 3.3997808457097722 1.6814815450979888 2.541715898836215 +3.8687931200596273 3.5612409479922786 4.496134332190076 1.5645121197438634 2.947710490372379 +2.7763998696635706 2.9439325656412128 3.392690263228831 2.455664554130037 0.9518846483338382 +2.694578311836119 4.238509909264652 2.811411180092369 4.085947727167403 2.0020410054162654 +1.3574672162757344 1.2421496134451075 3.2234989556717966 4.14760917682686 0.931277536702063 +1.9315950930653925 2.6142649738380994 4.894913548231105 2.940687710422998 2.0700330411061123 +2.7379370203120166 1.6601986540645939 4.2151905458778085 3.0278522562726677 1.6035249296609408 +1.7690891757643445 1.8270050734375247 4.725018936529171 3.2531697394347514 1.4729882247291655 +2.2800103201963084 2.3085662991914133 4.417386528196993 2.3055708622612583 2.112008724136328 +1.8462592760407297 2.4302386058925287 4.932046933324315 3.6621659801930067 1.3977229671218245 +2.717420623614719 1.7300934873489062 4.511768367305498 2.8368977200420193 1.9442238963328362 +1.444199658025529 2.567762565810108 4.194087737200698 1.2051658076775564 3.1931251006707644 +1.4984943392104904 3.0418403782184416 3.5185904117699103 4.683788034887145 1.933805185906684 +4.878708961740064 4.589905050745299 2.202346004127843 1.0000342544243384 1.2365117235517722 +1.1191497443527658 2.7037758042423246 3.1072341214832533 1.4721900744857606 2.27692968387323 +4.049239341538911 3.1717071179268457 1.715578168785862 3.7105225787997607 2.1794187304240635 +2.5746133807387954 1.887623031122963 3.1243135152957158 1.1221409030711649 2.1167548062086374 +2.6146551148674098 2.402385746558194 3.1122574886229764 4.420742239564411 1.3255906714248789 +4.4773151516115846 2.2773105143620174 2.5943435189681545 1.1279962072493892 2.643897661125417 +2.1102077842300986 1.7215003983118962 4.562318230161096 4.227282660412962 0.5131688463496384 +3.5232703589397456 3.6173881626674054 2.404790485904817 2.180384893634004 0.24334344211614325 +4.121988659722864 3.4034241285332474 4.384959881148493 3.5408664484294317 1.1085254659425745 +2.497781832192464 2.6399123424412734 3.1281371802347295 2.4673222343909287 0.6759271222507145 +1.113625534801514 4.180199920301934 1.9804921886688436 2.2794039371805943 3.0811080304341214 +1.0163592208834666 4.9523757366044086 1.004966379206813 2.231510051976222 4.122697586925179 +3.2679338203031554 4.506724509742961 4.042799519733549 3.502790178292686 1.351374286082928 +3.4666795906655774 1.8022688006294705 2.294099840679039 1.2264494352858932 1.9774075619671243 +3.136557390743926 3.6810148605927773 4.895576393254762 1.0222750891827088 3.9113804377227845 +3.5994769834584717 4.067088267214507 1.7950942467572855 4.8261207561165715 3.0668847407645927 +1.6284613436610913 4.470696373405044 4.859316598659365 1.984142455578834 4.042885889725615 +4.941501009938419 3.291620363355522 2.2066816890022727 1.8162143813079021 1.695455946448296 +3.6079374567330884 2.0435751885346725 3.2022547570320152 3.2883877966386454 1.5667316958160928 +1.0904960767387117 1.8137714351770367 1.65763045665574 4.13068266981327 2.5766479179599693 +1.1244910841316842 4.129318597350975 1.128588411377749 2.494535465658674 3.300727153113139 +3.6406969158609566 3.931173975288729 2.024187079757505 2.5725406315894 0.6205389108351389 +3.5421332341722302 1.3765812470748022 2.8296108328938194 4.019128449871843 2.470742311517471 +3.014360974641076 2.2209907509452154 2.9607851143825865 1.028757223194222 2.088580399260938 +4.632872444912326 3.73436479390827 2.1242682547287606 1.0644920037254777 1.3894033615561034 +2.4513374265578074 2.679041489035379 4.976558893749788 4.734419310212069 0.3323863986155415 +1.0871081893283399 2.960830235681541 4.912761809416816 4.529693557879227 1.9124789129101771 +3.7550397884522537 2.0988724100150256 4.005051588554744 2.505005676175664 2.2345084749548008 +4.3239168365476495 3.5012494582068348 3.1467256763563487 2.5896485834900234 0.993537368588895 +3.1978284647630972 2.074816437404678 2.452742620381245 2.4144279420636314 1.1236654431663586 +2.2418811983843474 1.6992085366195 3.46551098084118 4.153352663052914 0.8761391428390883 +1.0616927804998535 3.714060036977454 3.8231252267714058 2.206995907608227 3.1059501025440435 +1.8576534427276479 2.5426549228987443 4.960493962205078 3.022697911842149 2.0553054665034005 +1.288179022427987 1.5677381113778277 2.206148188185737 3.170869357428651 1.004410383558374 +1.0523035388966995 3.213302055928804 3.4290002768571695 4.998792948921329 2.670985515475756 +2.840819155353649 2.462045888264638 4.355827160083237 1.0667664190656336 3.310798958856389 +2.2588860733053098 1.865803817235017 1.6941506975489005 2.337988386538844 0.7543478175226749 +2.83191763099067 4.136496350181371 1.8642444632234132 2.6932382458833297 1.5456895956996175 +1.4564443473668565 1.5695051980443342 4.385559032676561 1.0250958158696997 3.362364612511236 +1.2497129573146495 4.529199053186096 3.8772584751774763 4.378298380852309 3.3175397571231584 +1.403175100232736 1.786199571197069 1.4770482881654243 3.3785716021114798 1.9397161284161908 +4.864486052105756 1.3073576412112669 1.5108630276590973 1.928056576475968 3.5815098755646573 +2.1990372952198176 4.802358437368394 1.9741296855306483 2.2000555530135606 2.613106095579679 +1.6309439273653044 4.76282343748818 3.51892134575912 1.3025752866627083 3.8367771787790463 +3.4912341715599795 3.7402178171064544 4.684699576126592 1.5929256246831396 3.1017832004467807 +2.0766517824685193 2.9660265257275573 3.232166618066133 2.5757286793090346 1.105395043134692 +2.337146559333923 2.459648558716522 1.0141331453462112 3.2546775439249283 2.2438908043519405 +3.0290949867624493 2.661736639106825 4.292717163129589 2.5360242768063213 1.7946927459738178 +1.643629490756553 4.52113023714343 2.6107114179205753 3.7347190464003375 3.0892399865238267 +2.5727671415822977 2.409597778517935 1.6037466141310541 4.015893331441763 2.4176592040392415 +1.340977892265951 1.7813333608513342 1.3198385557305805 4.70958776115289 3.418232381564225 +1.336727290820816 2.288539117922124 1.9867144048913903 2.5138965593733698 1.0880564223486722 +3.680178075028719 1.94234730762884 4.809521046585582 4.865332180448545 1.738726734937012 +2.13115839504585 2.700967385170484 2.9075276580544784 3.782509832650385 1.044162866169563 +2.9007367995659847 2.1599751171935226 3.143304851373864 2.8847449701691077 0.7845897541007645 +2.794329418174757 1.795950781951165 1.7903439424876835 3.112028744029854 1.6563848030863015 +1.6463910741588426 1.9003247771064964 1.1934299600317542 2.7788816033709303 1.6056585063018853 +4.32525282317175 2.0030929793596406 4.830279167647655 4.083437770079876 2.4393028539593997 +3.5911624071022454 1.528122466979923 1.535703760096288 3.6210466222713995 2.9333920036988923 +1.975404497667506 2.4549745183149767 3.573574457543225 3.307245115495176 0.5485605920402613 +2.8121769024977215 2.0103725439082147 1.1283712813695588 4.816017182720645 3.7738074305937497 +4.203058701284192 4.7697954320993485 2.5742432946824994 3.783319617385201 1.3353112282068695 +3.4591540593469206 4.612512549603558 4.0009467589988095 1.156759501525761 3.0691427080895295 +4.642242397724269 3.4302671936976457 4.154009529622994 3.8235306307896715 1.2562245809366495 +2.8230319664335113 3.103296981876607 4.468795058110906 1.6521642315475584 2.830540176720381 +4.93469650447407 4.619650975916597 1.9655255545619887 3.9504273458147012 2.009748443458107 +1.276178949586181 1.5649563303093355 4.773900136230239 2.52741263044777 2.2649720725108433 +2.1261223600733397 4.059279686699652 1.728774989227304 4.669608441219118 3.519317922814459 +4.489111216412201 1.3566824263678052 4.264160993786041 1.4419408804735312 4.216282307043099 +1.9968587543861869 3.214951950694218 2.864542452117446 1.1425726996894285 2.109248886018178 +4.1836754701758805 4.494495145920563 2.3088622279286777 3.146976249023392 0.8938926015946106 +2.8152267932850483 4.453812568139281 3.5738275858486004 2.758394617745619 1.8302716374964352 +3.7153858057195714 3.6665930140637273 2.5489288608445193 2.4130113500421766 0.14441020137190988 +3.9861626491185542 2.914679926854251 1.8173731016941654 4.481494207818355 2.871518151119247 +3.7322178233734307 4.890331812245581 1.2025152820638292 1.231864568803592 1.158485818581089 +3.9267502259330227 3.955565048402554 1.2075739712040892 3.5031270420242633 2.2957339120520657 +4.563236055110526 2.493415635082502 3.5298310554471573 1.7726859856624149 2.7150903055761906 +4.872706735962071 2.3658927520019626 2.3212236934589123 4.7211302976353 3.4703988328357003 +3.5728834578676056 2.390807660769495 3.978350348212734 1.8262185105335411 2.45539704260585 +1.4568266869636983 2.582734127737522 2.6602641228670243 3.3687229376656975 1.3302561623446074 +3.431981658886237 2.474362185184259 3.150597981598718 1.8303348429455784 1.6309904388743341 +4.29319477725099 4.117699168459791 4.33539572213853 4.871662459657987 0.5642523570839163 +2.1987647461693065 2.7767642719485175 2.3816011234890997 1.2101584682343516 1.306277668166798 +2.6938755526198443 4.372346096985096 1.3264169984188623 4.229531315576521 3.3534066420265174 +4.790445163437168 2.251482693151429 1.815981436549245 4.095447668222192 3.41208099652642 +3.2499414884456628 1.8649450858461232 3.1084783813823913 2.039867942295739 1.7493265291930589 +4.324901755318068 2.305111822734166 1.6850650203157844 4.010549597133998 3.080167185200614 +4.613174144252964 3.156029568497692 4.58903627804894 2.932327151601304 2.2063443621311483 +3.062317258711518 4.242448695016724 3.137767984710767 3.8422360369473814 1.374403668351419 +4.987081010150393 2.433785976360458 3.259233666128918 3.613155278003722 2.5777075157838225 +4.692473950983922 1.2025994730584708 3.8620595205472656 3.940806599045741 3.4907628069015932 +2.53204900446625 2.955876439783136 2.331648492966673 4.8591253686883835 2.562765898835722 +4.948776303057636 3.7361876138677936 2.774949974488084 3.8549413162818054 1.6238080636271468 +3.291783720712594 3.972528783570853 1.8359161799649417 2.6135830841599565 1.033527771511803 +3.384048932338999 1.4504964242082043 2.4532057440648525 2.821332429346659 1.9682841659972414 +3.8544873526479373 4.622030108690713 2.1698367464952253 3.5510553195613794 1.580153988994947 +1.8788013530092749 3.1122100551561074 4.831324107761938 2.409069560541073 2.718200529406117 +2.8055950707807065 4.389637448206182 3.5221489607770793 2.7006468158789483 1.7843923412612996 +3.2782793151423757 2.001843474458441 3.061277754555702 1.1691459447812664 2.282422231083194 +4.572594468386168 4.264905888273903 2.688527093498233 2.333850050945088 0.46954027180397073 +2.7753549646015725 4.973976233628294 1.8271095367561476 4.2055410031315485 3.2389615195091945 +3.638903403416877 4.346831627079349 3.2902757425944333 3.581833233777081 0.7656161835558488 +3.649217010434464 1.6429676752112172 4.0428719170912615 4.354480792028055 2.030304530365604 +1.5784776635390196 3.0579194237128986 2.783523371659757 4.601396085676845 2.34380227965463 +4.226164481497735 2.805323674370175 1.1315597604483068 2.11433944412703 1.7276123714104814 +2.632027412405269 2.682850761563109 1.9694320297810926 3.1424694946039087 1.174137941937641 +3.9342324936714963 4.987805303408412 1.3083003930459634 4.172304210143624 3.051644397659549 +1.7819498664748417 1.918414226573948 4.512455651154077 3.7378391415149084 0.7865451408424232 +4.268510244554788 4.065046427344031 3.1860756451585255 2.5778348619658247 0.641369141176002 +4.840622632762457 1.468767024414964 4.467243062874093 2.0978148162493966 4.121116409354076 +2.810237581743119 4.186092728189074 2.352190954694353 3.8160832037391335 2.0089693628363787 +3.0895028041570036 2.332776217302794 3.17230781260269 2.55606313470437 0.9759060560781586 +1.870349372376209 1.550000837953497 2.5204999094804608 3.5601185905806334 1.087855774263869 +3.230756841067191 1.9380511703504042 4.689441310932665 1.220020823097864 3.7024271056310085 +3.54950345009078 2.448457069942563 4.1998570845572765 4.97679990069777 1.347569393682497 +1.098649286611554 4.43967684404187 3.2990223117706203 1.108338934590373 3.9951919601644468 +4.3313609847288 2.5847656364478797 4.383830095602326 4.711004508415671 1.776974509394073 +4.406003926483342 3.2169714052592355 1.237441509722168 1.0926548313888884 1.1978153107851557 +1.1771212469694476 1.9146298422825052 4.284943706255477 1.416975030945332 2.9612773005446265 +1.6484888734989953 1.4013348607460414 2.222413276415575 4.443997370815465 2.2352899128548107 +4.259548777333063 4.740244001602978 3.859251192874435 4.933765005427735 1.1771354348602932 +2.284105723279109 3.5256062156026693 4.3272820602234106 3.327292365607238 1.5941464367423053 +2.741546600839996 2.763033375280164 3.0308646671439075 4.499319749234841 1.468612273404568 +4.534707115522627 4.264458148426394 3.544313872978362 3.025163668712998 0.5852789410232953 +1.5218574921202603 2.2862382222522597 1.126443042962396 2.5154693214683816 1.5854563705688391 +3.413568265751615 4.045596075691526 3.906503584565574 4.689242947654545 1.0060517198764525 +2.9376925762432538 2.571688543038974 1.7332648495039065 1.8122606814862157 0.3744319614995181 +4.064512494051893 1.757123921306588 4.1399979702398415 4.401646433998838 2.322176122567593 +1.1748784561000618 1.5755375588419054 3.8823528096269135 4.492102698266944 0.729604443041864 +4.436502981492978 2.53639578032968 4.865940319645217 1.9792631526745477 3.455909785023682 +4.752929807761237 2.6047311438684235 1.8972360067855671 4.125384733330904 3.0950612671086946 +3.5965973121327837 2.2941425100499035 2.2082359003393415 2.794687113455273 1.4283954413375528 +4.359743520246608 4.372559060611476 4.979237425966939 3.3673268705325117 1.6119614997870666 +2.7365383188577126 4.8172899981038295 4.855962619845945 2.8987502963948373 2.8566077136622066 +1.7277808915302484 4.26372886187102 4.475027043332243 1.175624273091504 4.161380870402005 +2.0199559311167357 3.2346398664167038 2.527745720639997 4.3263887909485454 2.1703856701159774 +1.6040890608304625 1.8760588395763755 3.980097896640392 1.3192643006651 2.6746968026342546 +3.7324493557314375 2.3398017954419834 4.559228659305591 1.8784547664461382 3.0209296403287835 +1.7302025974241246 1.6294558043793117 4.40725118140128 1.733699278348821 2.675449437874736 +4.3945896313824555 2.4159810878109367 2.987889455492636 1.0841633057723752 2.745735788786484 +1.034290437685089 1.7173180093923168 2.8922593306250794 3.3586400981190074 0.8270657071844398 +4.264765274898331 3.5720462576325014 3.6693921534030904 4.021706778236443 0.7771648678068274 +3.4047504771451886 2.8637381633979113 3.2764368187585635 1.1640848318102033 2.180533246797872 +2.4250173628147023 1.888266400441291 3.553601478550255 4.2714869859669315 0.8963599708642072 +4.1747033912579985 2.444453043243171 3.5158870978921755 4.384406593397186 1.9359990653091002 +2.8491096483427305 1.1356683802045429 1.6767945546793266 1.6519663253595045 1.713621142589621 +4.652759066842293 1.7207970148924372 4.4637554906760855 4.096502024643174 2.9548733614805216 +1.268630871775474 1.7300873487541448 1.3957164109748663 4.432792983944434 3.071933623994201 +3.1368594373216703 3.8229274793020913 2.30096990988203 3.886348780358291 1.7274592675890894 +2.3380248346996004 1.7757115166206296 1.5472557336710104 4.752241210885728 3.253940407697448 +2.845980098189061 3.0763357999464533 4.7282977041694405 2.720372346519443 2.021095740242409 +4.389194809823675 1.0371076595988797 1.353501070598191 2.1284625804321635 3.440501940767704 +3.4954320630893605 2.865632754917937 4.192232336424826 2.4527750292326655 1.8499618623413314 +4.190888899984115 1.4640244214837712 2.1377525651558575 1.5536151168557617 2.7887284634064855 +1.1188690965877384 2.8581012687229603 4.44995289241916 3.828201949568815 1.847025387894139 +2.4491000417350386 2.6114576075223455 2.5312904060330332 2.0709053281721865 0.48817455800698745 +4.048317765506528 1.2684358658877994 1.6933100119975601 1.341357655948857 2.80207313194286 +1.3244598001061676 2.0240814643260636 1.0635457976273321 3.791487825671708 2.816227650850811 +3.5552601273809947 1.6029001426013618 2.7232498013450765 3.0571102837679462 1.9806999600879382 +1.5896308631393485 3.4511719110848142 4.024448729316349 4.046023682189584 1.8616660688150775 +3.426764404434105 2.1730966282849438 2.7547151464629778 3.96952406391009 1.7456928707146075 +4.856977466664233 3.6118341653310857 3.618530989869914 2.8678022169937423 1.4539516949606583 +4.872353696979831 2.5116172650494226 2.198109260961379 1.5473915365010589 2.448777257728912 +4.023095800913187 2.4168792233670926 1.2788999980164335 4.136410172145324 3.2780018439949075 +3.6934473160666457 1.7836391330443222 1.55526638689701 2.588066073908322 2.171184582072582 +2.2379275592906533 4.198291428294329 4.826811978272389 4.704117304467759 1.9641997051916806 +3.9573429151571897 1.4988624535458688 3.6259190485693296 2.948829644359667 2.5500149492537507 +3.9725354814569855 3.471134629253336 4.7057105178612355 3.7965693272738337 1.0382391434603229 +1.3002923175297427 3.8490368887417055 3.1613856996622367 4.836645753321562 3.0500155961353865 +4.481265575095116 3.9207929056332316 3.7114378774623122 4.562024627852097 1.0186399919266789 +2.329146953637397 4.281273633286678 3.8393502968995326 3.122960004868276 2.0794262727769777 +3.1468881642900954 2.2758381343716185 3.999957840935796 1.3679977793289035 2.772353137772087 +2.6964574411388105 4.7372492657230625 1.9385362208824524 1.3680631533639618 2.119025906414048 +2.2767603456040586 4.2577423574803905 1.2741320023793299 1.056362382052769 1.9929157882145383 +4.59606102946391 3.6639552617584905 2.120112609609889 4.57467395748994 2.6255842345459888 +1.593823950661542 3.0997408851406876 1.8438816039816834 2.308243011271099 1.5758862046895625 +3.0972545635553237 3.7838830009741886 2.1560894121392566 1.0019130803398686 1.3429749126317152 +3.850241048609804 2.196572297584163 2.149469440996859 2.6651099024994545 1.7321967046664517 +2.615595362616311 4.2866525022138 3.2438299675537663 2.58122675906221 1.7976303779428753 +1.889963474034595 1.7001146701856236 4.272911596433303 2.4977914788001185 1.7852434008697349 +4.894348213098549 4.739552938024294 1.9994815295121482 3.631539262835417 1.6393822074444997 +4.158325350217249 3.690601580879273 2.502254811658127 3.5006183169010625 1.102494994548585 +3.341869943366087 3.837493836865874 3.3670083439423637 1.818916517866597 1.625494185092795 +4.776383911848068 3.5219414969077945 1.827142713134065 3.1451352708670957 1.819541193444337 +4.9733791547811865 3.6481868208224766 3.949854183933855 4.541604763343612 1.4513109488371938 +3.544224440184255 1.755869305671586 4.178675312094784 2.9087163165842664 2.193401453773547 +4.528667948748939 4.732425668343397 3.226233794163415 2.464881544958635 0.7881462146477078 +3.691186772921663 2.42705471434848 1.6149902532555798 1.2499096206769065 1.3157939541571537 +2.419615790260095 3.4903503025940554 2.5701707306745107 4.192846642922616 1.9441063530818636 +2.682268481342895 4.316284190574001 4.4371219028710325 1.129696064579889 3.6890477109695814 +2.394647319999402 4.450236444633976 2.4675048984202763 2.8640006221251157 2.093479282971809 +1.0963880284355492 3.184268549839387 4.28669028880547 1.1969982968114374 3.7290000907816583 +4.701010652246098 1.7553329670013067 2.9444535366417677 2.111062266011718 3.0613000563994834 +3.3579722877331113 1.9912398793178419 4.74458015851871 4.80324142962084 1.3679907239962996 +3.9233927493908864 4.6976620890496665 4.279877636705472 1.0005319674339068 3.3695105028632595 +2.0904367699788633 4.645566150728117 3.3652728687752695 4.784871105417009 2.9230027892296646 +4.071741570787668 3.0171663217128537 3.8659073856093746 1.2693993768578196 2.8024958154245603 +3.9277536436791975 2.573892995221061 1.3963756230890167 1.437436509972791 1.3544831678079903 +3.0872168342862567 4.569501118464545 4.76466802983385 4.939383187225971 1.4925455052843424 +4.677624067724237 3.780150385444345 1.0123826583789715 4.499924184938935 3.601167159389471 +3.2703996723647415 3.2791663041445704 3.7488480193947096 3.1201467476602907 0.6287623898685725 +1.6873345099946615 1.0347069473323294 1.01352073708565 1.6017785458943719 0.8786182249253739 +2.293722138682863 2.9649831030479787 4.145623726296857 2.600753957606749 1.6844031241045039 +1.3265409693058232 4.746452529655292 3.7340557297107355 3.0124503175127155 3.4952123614346253 +4.0133258880293115 4.3508525432413006 3.760013648253157 4.187820280935157 0.5449245433500906 +4.748369380644767 3.5463953492046096 2.4192312394768605 2.799517615441296 1.2606979416183195 +4.650732811441213 4.408642895417103 1.9488722666403078 4.0321459846681575 2.097292757739401 +4.578976673098101 3.9923002060150026 4.626444209421371 2.1177273832673906 2.5764024124459297 +4.5204139803087315 4.547271133000503 3.085149149693824 3.409380700498769 0.3253419819022573 +3.865561311159334 4.612169569226895 3.279236991696936 4.651450304695437 1.562175811931871 +3.1491859301197005 3.370795808917115 2.592535389908296 4.028019821306676 1.4524897559596535 +2.4364210224037857 3.2489422283294966 2.8004382271104764 3.57590196816769 1.1231806282933394 +2.7856012025966024 1.710811574493528 4.639843052046473 2.9534629611283014 1.99976262484404 +1.9402824709541 4.5581139738910466 1.5581665207001518 4.935987640625547 4.273490060358531 +4.853823374278795 4.667742186075799 4.231984604195651 1.4927822402911661 2.7455155798179245 +2.835676460246295 2.788186349408476 1.8476288805999252 4.969360543663317 3.1220928696628993 +1.85826342001788 3.8552325373864096 2.2352355354203794 3.7046058388389396 2.4793012613016585 +4.000916688023083 2.98670352746936 1.6275449678410858 4.584037449334353 3.125616119770083 +2.461373670879162 1.2746604487170106 1.7902149979761557 4.191284189230808 2.6783243890251134 +4.960345201911144 2.2426833825525003 4.285276043009683 1.1457888447074875 4.152356636020453 +2.3920202027746376 3.8145013269208983 1.7802446946014956 4.185502827902932 2.794408566470751 +2.957290056154587 3.5941375549196057 2.3942215989524853 2.0910840703941003 0.7053134749200146 +3.1351192235697756 1.6922503602622192 3.694893495678034 4.6618196793109545 1.7368986157221047 +1.9705089061556484 1.2417385586481902 1.7824282355907712 1.2313485440548848 0.9136711913097783 +3.4288558832380223 1.6554372904584884 1.146546896545523 1.5895379356455446 1.8279098899943231 +2.8275392770785595 3.298738832119372 3.011497261904382 3.5469879177943313 0.7132876440932562 +1.5984945926164746 4.497088572958273 4.923303377400578 2.391469822033982 3.8486397876332834 +1.5511248268623654 2.155909137175924 1.1455355109456051 1.5356542294920672 0.7196920706536791 +2.7570613867158498 1.198520391500523 4.85124677351844 3.508390904724909 2.057258349872473 +3.5632348701019456 1.197648108013329 4.507182012945417 4.844301314482868 2.38948742462437 +1.0152154883411568 1.0512774770778512 4.897001611097796 1.7715223644915348 3.1256872825025357 +1.8810062109120027 1.3979233927294556 4.162952931059323 1.7931452897643099 2.418544451930422 +2.7114599279215037 1.1987119220266647 4.370552740535834 1.5287157716343711 3.2193856381542534 +4.683620564323187 3.1351331430650027 4.637021275423839 1.3470702947166107 3.6361505399599827 +2.525635579312508 2.3537173414867776 3.8126290425643123 2.0774074728068865 1.7437172295554486 +3.6178505139758435 3.56459920572125 1.9419354140233476 4.1083117276542716 2.1670306952352885 +3.4499861286859512 3.710510062745046 3.4672713795184698 2.6739390571172783 0.8350143076523272 +2.38421825149646 4.265398019916937 1.3458883414686396 1.8737526129301494 1.9538367409279902 +3.3504475220483707 1.6457490033209172 2.3686648350333206 4.077888798789743 2.4140098587269256 +1.4865605685187182 2.0962619176738824 1.572261347272205 3.691574863145508 2.2052722085322913 +1.8031242031173584 1.5257408802891224 1.4027390169586211 3.2544237738712467 1.8723455735429297 +2.9359056902164604 1.8940547480269965 1.377097061772158 3.367039966528631 2.2461803467067605 +3.7943302348824703 3.122638938449092 3.0311782263777554 2.5205996615201207 0.8437177659599413 +1.8889212416889025 3.991205484615912 2.105249001076753 3.7595363988175103 2.675119779072159 +2.1149821875580805 2.9469286827540047 2.0630816825716702 1.1142745472543276 1.2618914180300473 +1.9104125455142364 4.165502556887175 3.247169752955301 3.8157338317326417 2.3256603516141228 +2.202363484489221 1.612291980881099 3.5636019616820414 1.0872237166561094 2.5457088584141085 +2.9917690169691666 4.113031783782741 4.663460040735603 3.113193409311058 1.9132581688707981 +3.1210098666269035 1.1192958240925615 2.8949156013473325 1.641915695953661 2.361539301175343 +2.5499022363266586 3.2350284827865505 1.0025119496157306 3.529961344968098 2.618663479650501 +2.3517741857194054 1.181142664075884 4.5773216544801905 4.5326233487606835 1.171484570107358 +4.88471715068459 4.469791842851405 2.8234662034816838 2.8622272827205992 0.4167318470482293 +1.4185530859290743 3.87691695367668 4.092927116734997 2.4122944441981398 2.977932015047581 +3.158061869855 4.739098751192309 1.4968545335949965 3.5636487107261554 2.6021752037040216 +1.4229562372564515 2.101915454148648 4.8709734988304145 3.7221502281519165 1.3344588886343807 +4.407450574808528 2.5251654259054503 1.8294698200315125 3.278316521301053 2.375321903566064 +3.980458826216289 1.3297210748838104 4.857533477744688 2.4922683829110097 3.552589139652619 +4.2976176655514 4.363282980901661 1.8062398318870536 1.3931532463976084 0.4182731891376472 +3.158142079071212 2.5351707591109336 3.869366138075228 3.7553986539393978 0.6333102343506715 +2.934754286568114 2.212041061956085 1.9811637891265943 4.225136259490899 2.3574831606571442 +3.4526654960993737 1.9777255237450944 2.5725648495115117 2.147115298939273 1.5350749956046323 +4.362467557906015 2.592432438194904 2.4487229674076634 3.0406528159548163 1.8663882957765736 +1.4292960109801789 4.302808037286531 3.9239433723128205 2.181921596961535 3.360314156611742 +2.2828434996569142 4.965557113937544 3.403298584949361 3.372673309387503 2.682888414330697 +1.1671474744837127 2.7094938391519814 2.221972660432411 3.7487227190987054 2.1702069141542606 +2.8958027162740114 4.115999549592224 2.7692975396043082 4.574051518245243 2.178535571309332 +3.5137675037815446 2.923724619961418 1.8412895592081897 4.915302663919105 3.130128938667098 +3.2984210684394553 2.1373702474403093 1.6447649611505288 3.207058846926427 1.9464843165244219 +2.8735894769334203 4.144801789289607 1.5090184740325898 1.3597417218920276 1.2799469878927012 +1.0866774723980188 3.3933023774253934 1.0132701596960594 4.935265524228603 4.55000726284116 +4.033778529341367 2.196988327465437 3.7319594382755454 3.529161112742621 1.8479516786286316 +3.7934641928516166 4.58415910081727 4.1619355327101015 1.2061896277596142 3.0596784622104307 +2.709710927871512 2.4516383857667954 3.4266532856867697 1.5360698369756087 1.9081161425681032 +1.2100669133477258 1.3563210859498587 1.8558233096990806 3.1100918922406255 1.2627667877143074 +1.3154450515807006 1.5743935335344204 2.9620461576807666 1.6696412328767911 1.3180913496278266 +2.641434894202864 1.518340967430781 2.313471701136976 1.0745270441662984 1.672221226808381 +4.887457567237506 3.454484750884422 3.1837998725450776 4.934413247863072 2.2623125960505877 +1.5460739271306494 1.914278644217144 4.369783757630229 3.906509962962751 0.5917747227707092 +4.841947292756526 4.625559107952743 3.0124989190320557 3.024954929355612 0.21674639262478343 +2.2580741824099877 2.801272263859981 3.032771679734938 3.448958197524883 0.6843064907488995 +2.250725727123327 3.4930699406389802 1.0837988076576859 4.07479351237237 3.2387448909241225 +2.4468545398626196 2.541683741855934 1.504017736453641 1.1917270921476568 0.326370991467893 +2.688218894511093 4.60901248718403 4.984938969396797 2.985828324137677 2.772344025845592 +2.3456550898200343 4.681050559623285 3.935377703365159 2.170973281940533 2.926977103210805 +4.901241497204038 4.241032646074791 3.9951409285271478 3.5071860488438085 0.8209602254166656 +1.9674678136470876 1.5862457780350416 1.3995244094803634 1.0909056414872014 0.49048525400241055 +1.1881873612221296 3.8562215206956676 4.09430287429355 2.2090295413865926 3.2669040108163228 +4.408702661721662 1.5589451758068193 4.073768976651769 3.0408420823375057 3.03118057817831 +2.650563066990455 1.0041933717878266 2.2207061447112375 2.3475096621230294 1.6512456829041515 +1.4529527498284587 4.077942921758964 2.704879067061274 4.113296880186503 2.978961923063166 +3.9087401804280915 2.176146530993468 3.9289469254727347 2.2081846117733543 2.441905750496778 +3.496748118250016 3.0740358449248197 2.2140666807128673 1.568669619519667 0.7715069880542723 +1.0314236161908816 3.223256689117023 4.069668227139219 3.719292634024655 2.219661072286315 +4.239006216671191 3.178763716112346 2.0176160524071385 2.2966846948483344 1.096354626562612 +4.490398195053878 4.586011579695079 3.8324323224517647 4.729534671441464 0.9021832097115214 +2.6957017835098696 2.39765297717888 4.9014880728470835 4.317586955656539 0.6555712055998902 +1.4069554672837268 3.8606337566828146 1.7941536080447187 4.884881621488789 3.946281388973215 +3.533769663180043 4.9064851935566995 2.183478723940937 1.793840046815251 1.4269429652405594 +1.023516566609267 4.865900699204374 4.702500520959126 4.399441658507309 3.8543171245409016 +4.791465054228828 3.8018722545757435 4.301750258730191 2.7048010720446087 1.8787071655745005 +3.6900652124933613 2.262328333188981 2.4398239238606942 4.550181732245009 2.5479487192513233 +2.12658006222704 1.1545516461225098 3.030008308815067 3.342749182621559 1.0211004337791314 +1.6003940242897592 1.8033594423202448 4.614708713009078 1.696071405726011 2.92568602081304 +2.348371719723733 2.871492996524016 1.5242278736094965 3.4921482911824606 2.0362629103683316 +1.8994763456887727 3.163941619428497 2.698303032053736 2.609572944446543 1.2675746356489055 +1.7787826407609812 2.2653967072414103 4.839018787101196 4.614127337619116 0.5360684785983695 +4.931935105551862 1.843936210336063 4.625682830505075 4.675150595374394 3.0883950907575213 +2.8151954263188883 4.668638321091012 3.455531933401307 2.180940801859571 2.249407281215679 +1.9241804038032972 2.770900030372883 1.0277671939929336 2.2099853153187987 1.4541574235306838 +4.335841085650385 4.695942078719323 1.6839660135189711 2.1064344227249423 0.5551146566127213 +1.3832528117165244 4.271999867968234 2.2895447149190074 4.984333485487085 3.950537441030363 +2.5182647794733475 2.870467141832784 1.2018348730550419 1.5845165161604546 0.520088207923835 +1.5026773925827217 2.2666018631628466 1.867634500999452 2.1917606702092334 0.8298423767907566 +2.005597865692589 2.1780920875189254 3.740247675462558 2.9288507148909106 0.8295295559462488 +1.572669615103079 2.2648270130802435 2.658912147805154 3.9462095569791504 1.461580132336439 +4.486839309267305 2.0321739910418724 4.927097252510073 3.7276265028687066 2.7320526905138536 +2.2862397862479775 3.2369040172078085 2.911647236609884 1.2411176888371718 1.9220903854939155 +2.9171755377879243 4.5621201338759665 3.3148435336028164 3.4301601323719813 1.6489816985494232 +1.4027196733722809 2.044393074426219 3.875161166851888 2.427788062023661 1.583235187266955 +2.302174782285439 3.9095182014855268 3.1033358485288733 1.929126687379381 1.9905577161622878 +4.036271203033515 4.201470719714912 2.579004584765287 4.629206945098636 2.0568472472763264 +2.2366931287647316 4.53249847414235 1.0272124754411918 4.074322472868483 3.8151804046841336 +4.192787625890204 1.6962374591275382 3.810563302984266 4.379304070151754 2.5605133851243496 +3.163353969957811 3.2926887679786883 4.299251484164644 3.7738135400590713 0.5411215418785251 +2.2674758910834347 1.0265645432677166 2.666259873173234 4.704558006277554 2.3863193944973875 +2.9385938104921685 3.82741928274635 1.4740292372449089 2.920741288526183 1.6979359468043371 +2.2321714526860053 1.8551703061074991 4.6918510106890405 2.9097607365386318 1.8215311168747537 +1.5705734884736633 1.0221372746765653 2.203655718954192 4.985690645288196 2.8355776504878762 +4.34240763254747 1.598424056039919 3.397375163926604 1.4045076311611417 3.391307545961273 +2.288187646163153 2.06558200043423 2.5162295480521397 4.499551927923304 1.9957757729785701 +1.9039073126996464 4.259588659872925 1.5933263401298392 1.4051010828564912 2.3631892342543646 +2.130467390230523 2.6561396658922325 2.725215896644236 4.752093687397781 2.0939352712176493 +2.4708811590479045 1.1652867798766868 4.938145128249926 3.911215631663192 1.6610722061016372 +1.9679845513444238 1.1611200235247354 1.6154293774411324 2.44447738301152 1.156871194988416 +3.4389642556672855 4.851650731128146 4.516932539414787 4.318606719939415 1.4265399428759806 +1.9176381679562726 4.446981358475998 3.1485999005788163 1.5031131020099502 3.0174830206138563 +3.5403573926145944 2.8448894648089524 2.010734956370052 3.7623164584715187 1.8845990016739116 +1.665096157073711 3.935789723628625 2.894307230478851 3.3417360664036138 2.3143555985221593 +2.4950441571413293 2.64010613629954 2.8122538428694663 4.930440808579726 2.123148369639327 +4.5766989310373205 1.8591778408925825 1.3784456538591017 4.162655106967351 3.890596760672941 +1.7076739838132116 3.3438504438094374 3.405390973441087 4.2895247084830235 1.8597757579033518 +1.9333158145149616 4.254359328222772 2.320433899762498 3.628805797395955 2.664409881201102 +1.6572989092322792 1.0253953508915261 4.9619602108981 4.998498413794695 0.6329590407874891 +3.3109297671827758 1.8721596158193852 2.7961361093093515 3.678272225117351 1.6876681176306727 +4.566905430550254 3.602712000356832 1.6148441431585607 2.480170271407232 1.295553271408781 +3.424289557562225 4.381661069606773 3.2931872349195257 2.2269299804563523 1.4329915368800363 +3.910740556984162 3.4715908287756476 1.8573815505314668 4.516547667309247 2.6951840234768074 +3.260784755301236 2.580530382596723 3.8090045356982003 3.0737243294499232 1.0016900684763321 +3.4764443141788606 1.5980907526659447 4.121583576708424 2.7836817660028736 2.306120846169482 +4.425670405011219 2.8996561363599214 2.365843105360844 3.6041558235819275 1.9652322855671398 +1.0497339112725639 4.761365983597016 2.8545990684409164 3.5736252033009173 3.780636351584111 +4.550544615084335 3.7636826794789697 2.9935809229950516 2.2445902610203556 1.0863418971161498 +4.760330450383748 1.2928218377249205 2.1143268061941582 4.393740654201794 4.149619677675548 +2.9360193779986643 1.469117951707637 3.0212674018762216 1.0142379765742229 2.4859539232420866 +2.0816542792483657 1.860776403340302 4.171818362147842 4.191262874791286 0.2217321021809855 +1.6713750632526807 3.066138836091904 2.6770429075567543 1.6545861480618234 1.729388275391498 +1.613088723887162 3.768556371647225 3.821235952270622 3.401594479366253 2.19593709980993 +2.0265468446250194 3.494197489216839 4.237694084724497 3.91708178861913 1.502261847676609 +4.04871498139398 3.429248222967877 2.4655355817806166 1.410976638901582 1.223042774722573 +3.7177983196790696 4.57862415507267 4.156132634765616 2.2983776120258668 2.0475045405067736 +1.181506203498032 3.049667318033704 3.4175578215906666 1.629383703129447 2.586038017469528 +2.880371416367973 3.1591919562425823 3.8682681411083126 4.078364139069686 0.34911491204953443 +1.339493735015051 2.682730455054787 4.876449913815358 1.7668131522855517 3.3873478821521545 +4.237916064338697 4.293481264841251 1.7091534070427299 2.6961592060953175 0.9885686313404477 +3.7551452193068027 4.031597676727477 1.7668972121958952 3.789673208431381 2.041579949980013 +3.199766171148842 2.259447805610211 4.774867836420349 2.9230501729182548 2.076879218305099 +1.7459351783692019 1.1213937648687664 1.3841268023774274 2.269974793691774 1.0838720592822682 +4.48674124186095 1.935258903578879 1.8206096307321458 3.933159314890953 3.3125410624782936 +2.1243706885270957 4.463691060734078 2.9167904665626767 1.206371387077247 2.8979222265772417 +2.597100622898641 2.751549741748729 2.3161410779354314 1.5546727848643762 0.7769739324238073 +4.1566999126221535 2.7348796446803045 3.004731271989789 2.369931162819848 1.5570947475771666 +1.6825569663844262 2.8070582280981986 1.0092702584687716 3.4713485039174423 2.706719855158171 +2.3900445102120425 3.302615886686083 4.8982710017080775 1.9004785931677657 3.1336154585177884 +3.700036645232593 4.750856775648874 1.1434205566975746 4.943100681299326 3.9423079529359026 +1.2751061396333752 1.41735182877192 3.163540075580216 3.3139489363286496 0.20701850513937442 +2.632501938967646 2.724191906239698 1.6658391663590937 2.6261950496352107 0.9647230030642998 +1.4066324388047375 1.5607787139319633 4.1303141033645225 1.8856582195845504 2.249942468314167 +4.97328281059166 3.042348533619054 3.8475481265946123 4.320610282085651 1.9880379737181955 +1.3451451344488041 1.8592385960707332 1.5131059321487381 1.53935894804839 0.5147633515764746 +4.229226180818103 4.995105494316288 3.7349777385084497 2.3274173695359717 1.602434808392026 +3.2122044699255445 4.072940672652443 4.983402637922341 2.3649296683019885 2.7563141155022857 +4.74832891332686 1.2326738581115197 2.0953027637828123 4.830284099587358 4.454206256389615 +1.1208966312511444 3.184235542906432 4.988887277921675 2.1475312274524327 3.511505612965612 +1.7377216060525749 3.666537972170482 2.1481500753072567 3.73257549114543 2.496144321259942 +2.300522847837586 2.0148077458622717 4.131902132156445 2.9396362525023547 1.226022449747192 +2.75850411787811 2.1954543896239755 4.493960738771419 4.563811723193901 0.5673659811020081 +4.609146482141895 3.252880014203729 1.5254334093815327 1.856957581910815 1.3961973388546098 +4.812868277308415 1.1970847147405235 3.5754811763114906 3.6879174674668773 3.617531297847323 +1.1932102447610173 1.3872705668354048 3.1333180665744766 1.528331335594269 1.61667616275683 +4.376396345509418 3.1793225294636507 4.833082232545327 3.4066123458787265 1.8622035491935354 +4.980301657342807 1.066870733022376 2.0314970321868406 1.9858423043036555 3.9136972230367477 +3.1506288163047675 4.936353613087277 4.62826148966634 3.9053733688149586 1.9264942992679674 +2.3520019873342815 4.223673128225819 1.9998511471529445 1.0942546881142179 2.079244527771977 +1.6031659712968271 1.2054860662231057 2.1423497740414517 1.326734607089564 0.907401458815997 +1.2834109478528624 2.0281934804796893 3.056452397187826 3.1037648721909705 0.7462837873067816 +4.452322440378902 4.652225300245281 4.464915499946494 4.555102211062371 0.21930525813271246 +1.2851877540415892 1.7676081165998427 4.635958341046498 1.0192743760833478 3.648716528949928 +3.994856127999717 2.1905878354278445 1.4290442908297698 4.447345454307246 3.5164649841893363 +2.742624287724868 3.6409651115508184 3.716822729024597 1.7502933179260576 2.162002349783149 +2.476868301763874 1.1434075829586545 2.6241417442921944 2.056410031535061 1.44928837236303 +3.1780090631450415 4.0103228009628005 1.480413189486971 2.786707804565512 1.5489195523148909 +3.204010570218473 1.9258737244335715 1.547034913007277 4.175301120616501 2.922570282236776 +1.3886472233284204 2.1429375960987724 2.3072959171669183 2.7947249289831184 0.8980762818458986 +4.357181035401127 2.9701170980371625 2.495769578060903 1.3443705291235548 1.802683038204291 +2.320321358127574 3.2510072860718964 2.8543548721098917 3.685678991574789 1.2479086857930235 +3.6171427498564435 3.4452653761195857 4.5025019426292054 3.600752294423574 0.9179838014048285 +4.195750251108101 2.0301691323619315 4.41115651330767 2.0966695126669475 3.169635887291283 +2.187430965554815 1.8886807435378183 3.199891344998412 4.636707033384781 1.4675459166746365 +2.464062468581761 1.4688676150697493 3.5602854128227848 3.1584003422522184 1.0732774135349648 +1.9416731845268362 3.9716669738246755 3.2125764756197435 1.7511773893879359 2.501312070459614 +2.0156875716337814 2.784078435015219 2.5626915758459146 3.1137235050487675 0.945547833760455 +4.909888368019926 1.8039934606088042 1.1990103958119542 4.831792340658147 4.779507070261831 +2.1409042237446654 3.035080271154116 3.9113125340304 3.2079042451682467 1.1376880172528716 +1.3511492795819353 4.900457610805743 3.2427832038367614 1.5090007455658552 3.950138129572514 +4.768057279867718 3.648869329894674 4.537014081270039 2.257949579556958 2.5390385326602583 +1.420211952912351 4.89328131776073 1.7097347862861865 3.3325470918222972 3.833501088045724 +4.481461387765921 2.9408726169154065 2.5594218946675595 2.7351954622302728 1.5505837958409159 +2.7203779039266798 1.631599664950011 4.106540225548575 1.6519882208633176 2.685193400366825 +4.484167030775785 4.303851479718536 3.707349479107735 2.4573624317347336 1.262925697162487 +2.476599952878213 4.201202406912512 2.9315360078284147 3.183707430505716 1.7429412069476757 +3.8274555072506757 4.975501460110031 4.438826799278015 2.368357939208986 2.3674566121456775 +2.206644460545444 4.87607488401842 4.869927168888395 1.914151323852343 3.9827716017695143 +3.4104999926955126 2.0485176182828466 3.9948294292126563 3.9679471823815433 1.3622476439346307 +4.304867299935205 3.995973691711136 2.915988371727455 4.5620447843073615 1.6747886357976984 +1.1284447546420235 3.679974676376276 1.9162467955740392 3.9959484111738632 3.2917265608543063 +2.1226441654010246 4.566085980522569 1.8473047200984114 4.929252919232651 3.9330411396311695 +1.913814035662849 4.095232957340732 4.616394573217562 2.1243048035487995 3.3119631537717935 +4.058770865968949 3.456628700340923 1.8655122154272346 1.1703136424831482 0.9197153056520825 +1.0128170630622546 4.672071914861112 1.9983077512121539 2.935694046964745 3.77741169822383 +4.827193810076053 4.047914963941704 1.1779516304236055 1.1857545187097474 0.7793179101612436 +3.7421481424039347 1.5966116350785802 4.323698256250244 2.881486410373452 2.585208291927988 +2.3096990231528554 1.6282023513186403 3.870482869286194 2.4151335436050783 1.607009450339851 +2.579778141507698 1.0733139111313594 1.2574798815183579 2.187971013419048 1.770663215845747 +3.9699432845140383 4.179237973307188 2.5853610780555147 3.9223727333036935 1.3532939196739548 +1.2879954921570618 2.2765118569262714 4.098512348374948 2.351232057149197 2.0075241018534444 +3.3509751150702 1.290242931126219 3.3614947745434067 2.078895777834665 2.427277759198729 +1.7840748190386857 2.7537162977139875 2.4082563765066327 3.9450379428035856 1.8171136947581847 +3.467338203180493 3.8177300657190507 2.9956550367345796 4.607508114598407 1.6494983485752068 +2.247071937795496 4.536448398463701 1.3634505244297346 3.8300005031134843 3.365280579090915 +1.0635536369405498 3.840534895065885 3.206199752083714 3.866872653808683 2.854490075486874 +4.802351474871359 2.9697491533344476 2.6673618340947396 4.407524160041527 2.527171578968672 +1.4322172013076573 2.3670542698832473 3.8313638527086895 3.967167863861594 0.944649709801586 +1.8352719536909476 2.5108944479946746 4.950925465313828 1.047543317310943 3.9614212030730593 +4.565629090008093 4.403876509277248 2.5601170695352997 1.4442469592520268 1.1275327048013695 +3.0031236288531615 1.4487614219209246 3.3921904292833274 2.5319462939826756 1.7765308448373252 +3.187748031823359 4.2762218269777055 2.549330224297223 3.8396869363852173 1.68813377644316 +3.7764091268721045 4.299399921130026 4.256096118567253 2.9675351962840724 1.3906504310263643 +3.118978754315971 2.8825103386022266 4.479513271709521 3.1970086904610375 1.3041224300476997 +1.2487467067483986 2.1393338381115696 3.0536887934805317 1.3060397743854826 1.9614847775329711 +2.496768459006469 3.957530533700323 2.6999405482309426 4.769000966634629 2.5327528213129544 +3.9979555584720465 4.623321294436302 2.2636549941199244 2.474919699114341 0.6600871755264546 +3.9286597235814398 4.147291443551756 3.221151658914886 1.857771045448604 1.3807992345568831 +2.7457130116705937 1.4804102682487335 1.070316578221981 3.531545323703639 2.7674244289765353 +2.0436377665056034 4.700800785801805 3.31684092838747 2.7130442680504334 2.72490104740511 +4.79525054511438 4.903661611796217 2.0957283627635013 1.548220449437082 0.5581378633761946 +1.5847757927788764 2.111457851358338 2.066448042903913 1.716696064506532 0.6322344796215894 +2.5249235893286586 1.9015310502071734 1.2326345991483567 1.3049392409729283 0.6275716844008435 +4.027127606378631 1.4535835977781404 1.4593529823443028 2.046856786581428 2.6397517845806218 +4.546250288349384 2.7244883213086166 1.5605646745321446 1.2577097648240922 1.846764132446404 +4.093867951214747 4.98947476607889 1.644865534942967 4.667166565922295 3.152207970405792 +3.926238133720372 4.509650181610882 3.3284688238101223 4.708130373474681 1.4979437937541615 +4.890148733308475 3.323368723531352 2.6878014078087493 4.089144337843314 2.102037489341011 +2.5245645563945383 4.109532527514233 3.4981804742786213 3.693585271366204 1.5969679095711724 +4.099565740985378 2.392926209186847 1.0124228688781463 2.766680235105431 2.4474552903904496 +1.4904270071436145 2.3902582973658393 4.643707958523613 1.9526288376329966 2.837534702123731 +4.171615032217093 4.21866430514312 2.3410400391643593 3.265038985536263 0.9251960262448471 +4.013317794990692 4.895570495717468 2.0082101295496027 1.9389043410346547 0.8849706889278139 +1.2180764801963333 4.581775352384115 4.048318043931973 3.84909677779569 3.3695933308988932 +4.54482923951001 3.305502319463845 4.619558467485415 4.234400338269322 1.297797364480432 +2.852908634197847 4.946549460339014 1.2791205907834367 3.0033010091633754 2.712218653429308 +2.3188525991389137 2.530391635843584 1.9520571451105742 1.7118778012140767 0.32005449736645125 +3.2785954406984215 4.300486829100744 1.466549210640196 2.400371779472756 1.3843000396416476 +3.116193876983167 1.1950175578742894 1.492961964454404 4.428862910620849 3.508622637846048 +4.548232832698339 2.1953455379927296 3.176589161575441 1.1969279023510002 3.0749207018817866 +4.150652526387997 2.935138910957545 2.6600032324655656 2.914321161695633 1.2418337080401218 +4.283719651045241 3.462327385290179 2.0446106246246636 4.870200201847624 2.9425570025325354 +2.431038231988833 3.1603623814696205 4.056998843587884 1.094715493474887 3.050743575158777 +1.196107014885849 1.251503417897549 3.6619070781715166 3.6138984020058285 0.07330480512092369 +1.8398322692854716 3.727733474400673 1.355538211481878 1.0513906092426728 1.9122438976823244 +4.8698361080486485 1.6602809702012453 4.7727961929812 1.2243700961717803 4.784618265588259 +3.83070750937893 1.1558544065765912 2.458506698976451 4.244840800516654 3.216493221490875 +3.3446536728358223 2.393352973108179 3.7928153224994237 4.981213550335404 1.522256013036573 +1.95368733219774 4.692648816933798 2.4421770163644023 4.8431393679552786 3.6423248384272844 +2.5575859929524385 1.1458491504336363 1.7834407790739788 2.484178883911558 1.5760821057598235 +1.6126551493542554 3.217026990869256 2.559606716578608 3.4687878714408837 1.8440768363067024 +1.8240911992590507 3.280894249600698 3.4433838762674425 4.372530781322865 1.7278857307874265 +2.402773239414582 1.1525482342285334 2.813439610291829 4.928721562881015 2.45712846683725 +4.226273717435502 1.3435524523079492 4.371965507407858 3.262304276558126 3.0889205136535227 +4.986568871347123 4.185232360598388 3.6880892986020584 2.458193342892957 1.4679183442305503 +2.215425451081534 2.222604273666916 2.57093863251264 4.992106215090603 2.4211782252490477 +1.0370134164015448 4.325669688935454 1.2392979060535185 2.714345786550142 3.6043066363219163 +3.3526285470110078 1.214849299041484 1.0215170382213228 1.3183575963003271 2.1582897001954575 +3.5847696185172118 3.7850636680023464 2.0012824738450448 3.135516414759393 1.1517831128217009 +2.626904836559857 1.656207462023917 3.904920212646223 4.0210264567881815 0.9776165162576371 +4.71011441203818 4.7771930841081325 4.375999325881238 2.3858106230545633 1.991318814531111 +2.012192263571124 2.9958281810902907 4.999815587728268 2.3771255971775713 2.801078793031104 +3.889270964630421 1.7393620943934653 2.595347147445403 1.3613309289282967 2.4788917237117887 +3.542862691622724 2.731805007797571 4.780141568075386 3.1067136155937876 1.8596170784972312 +2.5705757059420127 4.4688480549928595 3.28274750995825 1.666663696388114 2.49302322565483 +4.10449550784001 3.842830163406486 4.300303817106107 1.1829130716934615 3.128353210886188 +1.3802796857988224 2.34164150152695 2.403160656825713 2.783826662592079 1.0339841143297128 +4.9922307883910015 1.9984541955845563 1.7945251960734776 3.381704008584196 3.3884856308561653 +2.6791895046275456 4.943019412424475 1.3992467409723326 4.090530981492657 3.5168077449171022 +3.2955153696233985 3.7964409392962937 1.3506857889136947 3.9359358314198323 2.6333332885584575 +2.248738176600092 1.042341664367997 2.8732584166569146 3.6269979999927835 1.4225033933924698 +1.7917985529871783 2.918165249224343 3.9612346292227842 3.2858662510009133 1.3133256948275496 +2.4921640051490757 1.5322466225330307 4.173925280507291 3.068857479704774 1.4637678182754768 +3.166404664257591 3.940624133827632 3.7812683093820803 3.6378421798744247 0.7873924318196502 +1.7442772628641632 2.66205517862069 1.8054942047554965 2.6863577573472646 1.2720994068605584 +4.310387906773094 3.8885138832948933 4.394914616607983 3.515297559809928 0.9755531037804958 +1.4791144630448754 4.224002394626945 4.768348083811372 2.0582901173708295 3.857307861502986 +4.004746714390796 4.95096206177347 1.5608630650029691 4.128334399732443 2.7362807857162728 +2.1932836722085396 4.971818476592322 3.4408935177406508 2.6464180692935955 2.8898870042541756 +4.933466358634231 4.799760487542958 4.912184520211148 2.0424849501999636 2.8728127126714424 +2.811770217054912 2.402287897954505 4.394968723182634 4.436109639520538 0.41154385507861735 +1.9877206879117453 2.438041683214463 4.855358691180089 3.6866899618538427 1.252427881243249 +2.059964223957699 4.584035624866978 4.38283773993154 1.0818085638516193 4.155445831462493 +2.2359973345299218 3.014163672518 2.6573570463072054 1.582794193642981 1.326735909630719 +1.341172133759744 3.4790538311366372 4.82703304363787 3.5618943156984026 2.484172730087705 +1.1144895408637656 1.9542346508533046 4.611223832406621 3.376724767858272 1.49303710272789 +1.9291251212050793 2.4133388096980135 2.129849964500715 4.183158692742197 2.1096302115765653 +1.8804804584271704 3.991184261878125 4.567877951673213 1.6192825744505979 3.626194319735348 +1.3617932125423753 4.142285994960982 4.42760569923926 2.7604993177777257 3.241972208423715 +4.6552528998874045 3.5090494300955077 4.37097669567161 3.3053380654087663 1.5650457132210076 +3.6683945087106875 2.1276256017663497 1.7307448391034876 2.8387899723691605 1.8978231851150391 +3.145561101187138 3.551438247871546 3.430241752338921 1.0063303672913895 2.457657962525241 +2.8704935453355485 3.2801117871251964 3.7948871036202143 4.085956267432378 0.5025021016166545 +3.9100874987156384 1.242544206110754 4.449233373122169 1.9754579085912 3.6380423673779174 +1.7135713351347168 3.9057346993849045 3.878061256987852 4.231752353366327 2.220512915345936 +4.935580953559095 2.4970051844329184 2.6489870310640278 4.034204517356214 2.8045461782789323 +2.9264370873868915 1.1825678062987417 4.68868362254336 4.282791319607213 1.7904827927421445 +1.1429274210505596 4.9224705754687905 3.6153792966041065 1.7563940365833952 4.211979659623724 +2.866044457282179 4.063878327112095 3.293864813241006 4.639535279147226 1.8015645929369208 +4.640615200774079 4.245743036764026 4.047351402351673 4.774967049176014 0.8278578111086385 +3.6028304737933783 3.1504790266326967 4.257893634924941 4.134065136267477 0.46899395393557525 +3.113339722724518 3.036435079309637 2.17687255490508 3.8111807314961244 1.6361166035008365 +2.350356804396238 3.8468016963910556 3.511730507105264 1.8441754871236387 2.240555078422153 +4.15516369770192 1.9486708089511757 4.169741901103832 1.697977241832235 3.3133414250468722 +4.508634814404132 1.0272988687874185 2.9553002277811617 2.829936259984211 3.4835924116728716 +2.33127886258013 3.6044393114987168 4.678189540364402 1.1532443233804037 3.747822876208125 +3.685564109242222 4.786683019158303 4.572216961012989 1.7248498343434537 3.0528613476234234 +2.407123206205374 3.572057507155783 3.57996135526026 1.1895141252805002 2.659193465103418 +4.187724899697541 4.035481262131883 2.1951652408877513 4.998706705151099 2.8076721437915606 +4.087881768918171 1.7893233504526824 4.933791327747559 3.6199572168892233 2.6475518642613 +2.9081881102525307 2.688463984770788 1.7538291327997708 2.6383050094555247 0.911359571028187 +1.7523951020964499 3.388162850142692 1.1126758299599038 1.458400946306964 1.6719036998647567 +1.9530367751054927 4.189898810642235 4.885621053561363 2.174623958783233 3.514691595847499 +4.376911187523748 4.339096644821919 3.85847978074056 1.2437619947454954 2.614991212229724 +1.7081822310780046 4.731096094941627 4.761832052424628 3.935749979571855 3.1337549073639486 +2.2766418922479974 2.3973631837350533 1.6457298831098544 1.3396383010661093 0.3290375158190103 +3.8850765408850085 1.6280181594792515 4.050697283971344 3.627605781422058 2.296370822973369 +3.1444197857732914 1.0015353686328554 2.290665197257291 4.761896933174031 3.270923404457122 +2.4247175295393517 3.3005587091066606 3.8612659303484853 3.010721646962272 1.2208699151944167 +1.4966765562542883 3.1944347117958145 2.4549057270699746 3.2415678625828437 1.8711547424404622 +3.3218400750411425 4.007012640452501 3.940227695839321 2.4420887961501436 1.6473862956678624 +3.3134822820186685 1.3029981248574583 4.420799785161824 1.1559527374672456 3.8342238837913767 +2.8501553433394835 3.1756359748896057 3.120031771966835 3.5787867981007353 0.5624889470179677 +1.8692732129506102 1.2762795919920662 4.201247158570165 2.342137044200765 1.9513922854844257 +3.054630951837589 1.179495575383744 2.322189116322384 1.5679250522607444 2.0211499099184813 +1.659970982162346 2.705925436081871 2.0998538616764204 4.12906753732849 2.2829211245961774 +4.0489521187559046 2.987779337457238 4.038906840002538 1.5530600233756808 2.7028729284787003 +1.4291865211525376 1.4717677337441808 1.3017060372541809 4.881851890072409 3.5803990681371443 +2.5403239634136185 3.511089792334292 2.219300536854388 4.0297996302433585 2.0543352359735074 +2.539777280881772 2.0743938056347364 1.1016274343400019 1.539441814731016 0.6389547798633138 +1.575213412882801 3.439997095480868 4.417844283197586 2.5653837587180424 2.628503029794532 +2.927682461850204 2.3706388230732127 4.89716979832157 2.620544782801626 2.3437830694825608 +1.122667840565359 2.0084602068253123 4.171450817946001 3.010462823225552 1.4603154590736263 +2.8736751514930994 2.9214035531994234 1.7783051806381232 4.833204686313136 3.0552723266679322 +3.0372084464164844 1.343639033903333 4.5581779712612125 3.6035083144733844 1.9441120102996972 +3.8208622228119387 2.268715795834083 4.379667436356335 1.282997264744806 3.4638886648575613 +4.398566842413677 1.0365608115020124 3.2419319864376748 4.3052084299492925 3.5261368871915795 +1.644908148966488 4.0322681375218234 2.051108294701475 1.003582386801297 2.60706698085742 +2.795205653848986 1.353545014340972 2.441941383063846 4.022379271861629 2.139198289045279 +2.534407109349544 2.93930646316754 2.6128691528069377 4.970205698664651 2.39185682622489 +3.327217609962462 4.427221881917619 1.0445758373494964 2.801856885004541 2.0731729495551514 +1.0058441946269139 1.1547569405889218 4.304554879241897 2.979659756857721 1.3332374474291233 +2.660142721741468 1.3604186235301943 1.0758964925476397 4.673729526100184 3.8254000142198215 +3.341465583329681 3.64146142716513 3.1158145584312975 1.208544240127762 1.9307194445077236 +1.0750379283159281 4.084859412436753 1.8387957212997565 1.5041504147513383 3.0283680171785874 +4.555256953852388 2.0380159768702324 1.136504120884028 3.0211887721614774 3.144604644618919 +3.7430590633361955 3.411660203493912 2.8049252724624845 4.7639970978677635 1.9869040292378335 +4.1558122909212525 4.7147553462992855 2.712691357606869 4.557900839595052 1.9280081357645849 +1.1513088086554344 1.2368519743524562 1.5108541501014696 2.9544782684556 1.4461563637073303 +4.525925802141561 4.440679680156634 3.0345451663379266 1.7872601107366988 1.250194749324931 +4.177215163596991 1.0065871244540263 2.274480623914708 2.173807792003634 3.1722259033184503 +2.763391039033556 3.629418473222582 4.3789929298232515 4.406011299670714 0.8664487919532475 +1.565744523916 3.3673602781963967 3.1884335298433157 1.0838954329932946 2.7703609741628314 +1.865687063862186 1.8506405101813619 2.0880677059282 4.2631962068043965 2.1751805428749127 +4.914351616549892 1.087507293380455 4.814600965423609 4.741460496686912 3.8275432070639215 +1.2599692024921745 4.037059258844419 1.0793429158504355 4.398967995807865 4.328064215393862 +2.438294612528552 2.5207629516411334 1.3176305924849459 4.624242184644524 3.3076398305075614 +2.7668956068148325 2.906352353357374 4.40803887723056 1.3926925835340689 3.0185694385031785 +4.610502605803541 1.8108922203066387 3.8832801530424454 4.474802856049967 2.8614187772424082 +3.6872372671852047 3.9921141976181715 3.6681049627360958 3.148862821236264 0.6021315007700222 +3.681760842070181 1.8152750795480097 1.1246839416750158 3.9940529297995555 3.423017308122881 +4.563078672230841 3.06063027477447 2.400224905209481 3.3332863221563604 1.7686024976840147 +3.2727045303883004 4.332648548160279 3.682831869394677 4.420277834108356 1.2912427624901108 +3.1386079351863185 4.736983544217416 3.904160107952359 3.44572616707047 1.6628187711527773 +1.332156258555794 2.266329627883677 2.968335894311279 3.3421638082281384 1.006194411227194 +1.2810111388643786 2.245889160937986 2.1459955211952746 2.3729358393984117 0.9912070951656965 +1.4488593729233732 2.373816013027371 1.9982474556504028 4.497820326585208 2.665222190209615 +3.6273933355120316 4.140439286294656 3.5548839229250686 4.434273021525547 1.0181067401563595 +4.065937258250205 1.7529864983821968 3.689196636892373 3.2540711920636856 2.353524032235779 +2.551657080309673 4.412231829244451 3.5425317291814395 3.4671104583096093 1.8621027803195058 +4.981897060451615 1.8216528130461493 4.384903585777135 4.96676070592453 3.2133629442572404 +3.735911839101213 1.3298764597587645 3.3171082164130428 2.2657557492114906 2.625709096023082 +1.086649969626127 1.8075993207565522 1.4300630695380918 3.875674106283726 2.549662979679361 +1.437916571892632 4.716998142897813 2.438834873459436 2.650538516107106 3.2859084560614433 +1.6008103378597731 1.4999847264454962 3.0547342587890514 1.1316702697349466 1.925705301938422 +2.814411272939623 4.551521493821236 3.499868432402496 1.745798674653412 2.468666165065924 +4.7475518346002925 2.5559430394961034 2.608109957340661 1.8502487540755128 2.318944310282706 +4.27239975953284 2.145508204062155 4.823176272331812 3.5625044053117967 2.4724403420564554 +2.091532369178044 3.7684931765462455 3.8620908018623217 3.3415255844485943 1.7559002520160454 +3.476510110704922 2.8557260264041133 2.055826692244403 2.2490019575925273 0.6501458009273856 +1.4915810046109592 3.346092567253102 2.817762342393626 2.6292519547021422 1.8640679446417707 +2.3630440119778107 3.693186086801405 2.233651795473096 3.852374851516945 2.095123450153703 +3.547951513567911 1.6330263642079523 3.8666720364825404 2.6763661897180633 2.2547208999104433 +1.6244377101468723 3.892904693039355 2.4969626732975927 2.0041496490150004 2.3213804361577353 +3.1781072308622527 2.637493034785466 1.4686584506851164 4.495495922714304 3.074737190570894 +3.3395260207243473 1.1015822592875701 1.1941063417047664 4.715123206182177 4.1720441080228445 +3.219814517468262 1.3899097187478948 4.3967047183090875 1.6447616532651304 3.3048059255610394 +2.047656668699651 4.17206478242684 3.7612020605265464 3.130756122356216 2.2159810275869654 +3.8615603673101973 3.73206364496021 4.584783788843875 3.9982504251539295 0.6006586283579318 +1.8545788261847092 2.281137704162454 3.945148150480898 1.7013685307781108 2.283965730516817 +4.149331052475914 2.315470605125765 1.993470136785223 4.643450866794181 3.2226451883156635 +1.3371736943254438 1.9219050031080789 1.171616852575506 1.6111908026528847 0.7315298770776784 +2.4309848910564313 1.5509900776975418 3.6032382341151226 4.524460027131724 1.2739860530897773 +2.7716681252054736 4.937445725927658 4.119302580065491 2.9414960279561457 2.4653236886830183 +1.0231149332649365 1.7617044172115315 1.5949514395319428 3.4783422510579998 2.023036177317963 +2.202848935455366 3.5195660245236993 3.5134155459893774 2.8339772557957743 1.4816815726821306 +2.9017483107559987 2.3951193247996754 1.1676584875424392 3.7953815865765224 2.676116891058464 +2.856431302278447 4.855097136223559 4.958709264723534 1.6285327289647649 3.8839079385456325 +2.034502531947235 3.3408301252030395 1.527778530601977 2.7194515717866574 1.768212775088973 +3.642747354842125 4.02378555582651 4.2422735800120215 4.278217913758171 0.3827298077467594 +2.3052734685479868 4.301632627929095 2.667996124468065 1.9705934422267282 2.114667915877634 +2.267810099346129 2.8784323646678014 3.302699448072917 2.4276072392513064 1.0670735330083192 +3.75768559978347 4.066681336229566 1.9760331230648416 1.094824117950373 0.9338135123442457 +1.5079409471367295 3.465568470896439 2.701427702199427 4.469854257171452 2.638112583289765 +1.8985314370358113 2.1509204727220568 2.294472534152974 2.084665922819105 0.32820578833109293 +4.707021180423507 3.939481099693353 1.1680464843529443 1.7970720811124985 0.9923663521633356 +3.7657469820884044 1.7512212754156242 3.8663644628579243 4.076443870749635 2.02544987113125 +1.2213988256390147 3.571744304939477 2.4453390073989185 1.9428263243386246 2.403464763358218 +3.054644523374094 2.4860593113929683 4.035803590129547 2.4823927709802813 1.654198995385263 +1.8906121797915434 3.68478674369877 2.9191224863784377 1.3156081743756154 2.4063084828362244 +1.961883034733913 4.73619712594931 2.530318635500954 3.841487871670772 3.0685474483205337 +2.218805269239177 1.542041872274957 2.060600123643367 1.8915968139575656 0.6975462810131706 +4.034711943297664 3.717543969458865 3.3809725074089534 3.044418999500899 0.46245409211534283 +1.9755907274588336 4.696695592504124 2.1158156509919555 1.0544916017950832 2.9207568238346706 +3.8857521801942596 1.0877926221601877 3.1190085454736387 4.834563789801662 3.2820279530704184 +2.5991579625822423 3.8788784299289603 3.9014535165404607 3.492632940677327 1.3434354237532844 +3.4944618315615887 4.5881430375273835 2.655362974486743 1.076533898038209 1.9206352680616186 +4.456275804158896 4.811400185189326 4.009354267160082 1.083223057263945 2.947601937767458 +2.1277854433878463 4.072081886942902 2.4731329272923537 1.2972214270439735 2.272236016974741 +2.4992863396767193 3.6580899578292 1.2209850293146292 4.3991764465470675 3.3828577430943225 +4.008517585605727 2.120994437939548 4.72712422521035 4.866932547300585 1.8926938473776806 +1.6282422319770227 3.578131588240527 1.3635234780109693 4.885649662586738 4.025846663963242 +2.8946790339089516 4.584941241631842 2.0878422202041125 2.8549365520596957 1.8561842701685691 +3.2398763431815727 1.6519389312054003 2.402968979586936 1.8558249443262964 1.6795570307896306 +3.6021345163732645 4.340461724320134 4.622087837593643 1.9257786547190952 2.7955697586803714 +3.476564576117752 2.5491006685472244 1.549468798588065 1.349368423989573 0.9488042262555795 +2.020613802677857 2.417808415786765 4.873385863040179 1.377976645101736 3.517904086459972 +2.8806040740281667 2.2495060742491195 1.1932388201083537 1.7448911855430573 0.8382153766275217 +3.1879201726756383 3.8095699025207144 3.770536610025506 3.25259430411289 0.8091431386785244 +2.2796148888519965 4.436773135154007 2.058559877058551 4.190640665955085 3.0330018447027745 +4.793770930147465 2.2099084502510884 2.3829730642124756 3.955150388669381 3.02458044273131 +4.6925601779243085 3.387989004475436 2.2783854102710337 2.946072791846719 1.465507552388988 +3.31885743877094 2.097457316801468 4.503204067824235 1.9478737005205824 2.8322308422886833 +2.8603996449488043 1.4363541682484144 4.556252959907758 3.104592440903459 2.033524964721769 +2.5870077291705518 3.7340794392886894 1.1570318496431624 2.760270091605902 1.9713311159328677 +3.540226925167883 1.5507552520133276 1.9467406051907492 2.6574600390601746 2.1126096780910717 +1.470863028529724 3.6027493550225245 3.8312025501129563 3.8443996632668678 2.1319271734471994 +1.667731850203006 4.113187474617199 4.0056305198508095 4.83123363835686 2.581060580510641 +2.206385542798012 4.480232449261477 2.481370656268432 2.339651779956784 2.2782589830694198 +2.5370883104337216 3.7770860017019405 2.7775315258323183 2.4565852955473093 1.2808593822448548 +4.971672772957547 1.5394144331621442 2.3552937569766157 2.5448932971696716 3.4374911340593317 +1.084227848023804 1.159807954473624 1.9791157234565828 3.77746247716854 1.799934276321583 +2.832009002781288 1.396006214497119 1.0864997490208395 1.3859562486039918 1.4668940667623216 +4.107039565137544 1.578269179599014 4.965129696167469 3.867279344707912 2.7568015991319648 +3.0003454272772667 4.983597519687489 2.4170297194924184 4.460373127603882 2.8475500251131844 +3.5330481741046476 3.17973646929305 4.02778595916975 2.922606745848697 1.1602802481787828 +2.0319541722228887 4.963916648905574 1.804534705016982 2.7864866395539094 3.0920274200621316 +1.6935966227918966 4.949798475041651 4.509579142749679 4.526107145352563 3.2562437988370543 +2.8058002842467387 2.71224653991689 2.357055372349965 1.8251927796710974 0.54002788869578 +3.8563452022419513 4.765862499488458 1.6784897298744959 3.3624780629993505 1.9139065860410265 +1.178298914231609 4.646462544124084 2.9101162790862025 3.0294487115225563 3.470216015342579 +3.7652238540285317 1.342868115244829 2.6695075981796013 1.7785553402925895 2.5810081850029656 +1.5390336273302085 1.7218762864381665 4.127443198805854 3.6508615920216076 0.5104522170729822 +3.8717710270434504 2.3927561678758926 1.5314764715212998 1.5859187492818143 1.480016525328749 +3.4201785181804634 3.198352547917916 3.214694471129524 3.9093762627947544 0.7292390230604333 +2.4182466879798965 2.141019210725431 4.115466430761428 1.9078572742358135 2.224947923462617 +4.839603194537274 4.360810865698129 4.934563235283756 3.11391277745728 1.8825541648884816 +3.8953187455747305 3.0415135138759295 1.4386390947434435 4.305119592810772 2.99093527503966 +4.888859743427749 1.737524637459182 1.357741516832656 2.2613632514251836 3.2783296340267443 +3.2487723263638655 1.5868988594190756 4.9877869694618795 2.5396437680055137 2.9589235466588386 +4.461741763319031 3.5713402113492805 3.1282196585030704 4.150188019006366 1.3554461455992763 +3.6304019935347407 3.5487556154816655 2.772910845693434 2.599516604662236 0.19165514308771045 +4.5098965968358 3.5616326237414553 2.99544710120951 4.219157964934206 1.548119129998242 +4.374115204958544 4.907807514539314 4.110882526199569 2.5583833827608062 1.6416702079540062 +2.7500165716914453 3.6196942646743615 4.845989975606059 1.7351628745950851 3.2301059645244505 +3.97689136081111 2.0723498235632163 3.846337129218093 3.2636484345627106 1.9916838559324026 +2.1287538591973996 4.355382335453408 2.6430312026196705 2.451926444275439 2.2348143994381187 +1.7492794929986148 4.556671476495563 1.888945661609922 2.3681101579684283 2.8479902323521804 +2.7852449957341228 2.3691268182774765 2.68867575615565 2.05254463127537 0.7601428455568674 +2.679187003830332 2.8411817030534694 2.285185960714531 1.135058183823737 1.1614801701932558 +4.4376870371579 2.7012143056390325 4.880030225497051 3.3314680122235116 2.326667676245845 +1.8553709266523564 3.015204022080218 1.5338876877072725 1.859663733788694 1.2047169134075522 +1.5071893652338817 2.505063759470199 1.8965030426960632 3.1056102762021798 1.5677032910564779 +2.7114759953203813 2.7931266949491222 2.4610125624381785 4.459199489565253 1.999854452826856 +4.024207230376916 2.2528660696515592 4.408366113146742 1.207630594103037 3.6581904502838327 +2.86106369881101 1.8047799521669923 3.6280271892041096 1.5696206806535398 2.3136059966787066 +1.3566715636237654 4.9959237349377394 2.8045668980310783 4.013498230294666 3.8347974304442847 +1.8630211377664527 4.721594098021326 4.14716963833045 2.11368931775046 3.508059518207524 +3.3173265610938985 4.844994965793729 3.3752559226939747 2.3538398199467028 1.8376783205092102 +1.5996578658322798 2.940293366805734 1.8085377754091496 4.277246565767321 2.8092395124058127 +2.2535681479830085 1.909655440146587 4.696620314134281 4.638697572150036 0.3487563542795359 +2.6464166968305824 1.0366394126597522 2.8191172764670047 1.961080974260934 1.8241735664502654 +4.615132683571346 3.4949020940802087 3.6840884991062026 3.4129203158584684 1.1525835142138456 +1.3217860904149465 2.5851162167500084 2.9857299764616103 4.434086522039925 1.9219104274719234 +2.0060112363977445 4.421826729188982 4.378007515274451 2.9971143275965533 2.7826301390924013 +1.3546733016692807 3.977170892806769 3.22027554859487 2.870619004753842 2.6457046914145166 +3.2569110295494337 2.8242772725111895 1.0476682819413266 1.206819536274085 0.46097840457522177 +1.3263175341649136 1.532329352462928 2.0123955631850805 4.334775306582482 2.3314992047652585 +2.63732067807295 4.626440491594846 2.4752735578263634 4.274523681683548 2.682144410867073 +3.2088505519158903 3.3019253466148077 3.2225967918032734 4.659244682634646 1.439659709667002 +3.663526045812811 4.220491623028265 2.789206951986889 3.12366169448669 0.6496696306458789 +1.7983329184176986 3.7835423874485334 2.0797066046767743 2.9613284964787594 2.1721679944318764 +2.9974403403667886 3.611313904889068 2.2812728561582247 1.4843932358350655 1.005911468522788 +3.736017789195945 1.7315960183118935 3.262869026219245 1.6653135074216565 2.563179718871579 +1.588684279539116 3.3089876175091923 3.7874391896263973 2.895230188233374 1.9379062094945985 +2.910510027822416 2.982605479396542 1.4790376936401484 1.927469901855189 0.4541907082958598 +4.122415584329824 1.6951647814623239 1.9366898295987367 3.043377726119991 2.667640260666262 +4.948163350660435 4.854668767542447 2.1456613301273855 2.672888894076791 0.5354532110842469 +3.9344996250820143 3.7635559360122413 4.14520506621726 3.3598031303568328 0.8037897397243198 +3.8662622653355365 3.073643841998694 3.7686197228908815 3.029221295810679 1.083952950538749 +1.8136523188244196 4.948466542030715 1.7099753645706475 4.96304882094503 4.517692677305979 +4.417428267122351 3.9240532128762045 3.5208697410765115 4.554844725786438 1.145654054747017 +3.4891220413389163 2.425982320379765 3.012233203006629 3.189759785834562 1.07785980252149 +1.206087821351428 3.525710535175519 4.0082602227649815 3.4684919983403 2.3815959503213837 +4.611588744867366 2.7702862466562075 4.726365129356381 3.35999346845559 2.2928947654943608 +1.049546294807266 1.8895750852586954 3.1930074327784106 2.9378777483405605 0.8779177208990877 +2.93159336036743 1.8442396137893318 3.509440822156228 3.6167701468206372 1.0926379794471475 +2.0970077516429186 2.301972952380798 1.4824478143866182 1.8434098625556095 0.41509557180470175 +3.017414552867102 1.823964815700505 4.812312638176563 3.532082960506691 1.7502314997535962 +3.0057562695063 2.763588702210805 3.332230159320104 4.4878872648321035 1.1807575856924195 +1.5627116543371784 3.6896468682654793 3.6755904862218904 3.855889234853944 2.134563431478791 +4.088115099987046 1.2528570817252178 1.4448417342720368 1.320194576276799 2.8379966427242795 +4.435428541409845 4.120035518915885 4.508484127978838 4.820743499881578 0.44382279569549943 +4.6446507068393235 2.6192207148350772 2.2745063323625576 2.0442471402104307 2.038476379083376 +2.5355970873656934 1.0441254857526432 2.5711944181483757 3.52499626841001 1.7703743976856179 +2.0908983089614854 1.5147240383928615 4.894630169518729 2.2589793435733436 2.6978940057704044 +1.6504158899576389 3.8345472739451036 2.772906299731196 2.789397175591787 2.1841936387384813 +3.2032574996950323 2.749139973194295 1.6318523136609273 3.913217673510972 2.326123520580726 +4.922967220233484 1.6856216501744394 4.74774979499014 1.7038358269172051 4.443626737813432 +2.413832095119228 3.7173244294190475 2.6060240151595297 4.226291824363798 2.079509566970538 +4.528869362313655 1.963111504545934 1.2059464773857487 1.4837316753871597 2.5807514411359898 +3.542747172350298 2.206249521843325 1.75322955829966 3.750401820044293 2.4031069499489264 +2.065041181101265 2.8094291405570266 1.9131037710520746 1.7702080381495962 0.7579793035858229 +4.165478730848126 2.967304215960367 3.9525318093420885 2.03508947467556 2.261019078844304 +2.2215953182755883 4.215730960970771 3.7423950303162563 1.4955411270372716 3.004152030797932 +2.3894503607456383 2.377990245840649 1.7387028129913618 4.040486764611001 2.301812480235381 +4.211051218160854 2.594020715556417 4.007650294281809 1.1440612245783495 3.2886060886762163 +3.673579934977659 1.0472001973981109 2.940882487058643 2.7060444862000836 2.6368578673519094 +2.5141083846516663 2.026903893133619 3.2922773432554915 1.4276543639472226 1.927222631539959 +1.5203447902415763 1.3919345942131836 1.07174265151495 4.1021820995673295 3.0331588199031154 +4.134953062904999 3.8221211935178236 2.6992759575940792 4.80990126481602 2.133682958171149 +1.801535843173125 4.210352544061482 3.672443332366196 3.199391178459276 2.454827130124369 +2.8064525209125546 1.8852456354244835 2.7415051543672213 3.9419175906991377 1.5131464381119757 +4.593542656374263 4.515483700936586 2.9639013979527813 3.2746281739298095 0.3203815379092552 +1.6078614510767517 3.446069402405055 3.099713410826273 3.133815902854243 1.8385242593692137 +1.121804082969939 1.0580653094106398 1.3905360295784375 4.979005578999441 3.5890355721804466 +2.509089273136593 2.602919379205884 2.027030332675298 1.8380367791715169 0.21100391482377992 +4.912046333257793 2.256539036855763 3.24041865795142 1.4338379957291179 3.211767845028652 +1.7931352254195314 3.881237661273104 4.232250237930962 4.22337042170507 2.088121316818979 +1.3319937206802952 2.354600641278588 1.8382715910760608 3.631919464024487 2.064678572123985 +2.2179150809706325 1.8136640237510693 2.908834522775842 2.970559893534573 0.4089363503755046 +4.803220900840866 1.5126410920208238 2.9448452779129 2.036140834982321 3.413745632412574 +1.5854767188122696 4.389265123789223 4.228434715111824 2.3937627816642935 3.350708958304691 +1.3119547322954097 4.645497470237663 1.2961986358020212 3.5943542938267417 4.048953767851464 +3.4463633720063176 1.1793613601282358 2.1098749258939926 2.10829001786753 2.2670025658990163 +1.4219155804228265 4.2267943918692765 3.1833419905272202 4.954441531917237 3.317248669064949 +3.714907414943628 3.1632512766702003 3.729873660935013 2.88506095467895 1.0089762155504185 +2.9054825847680243 1.3437603517111008 1.569088220259026 1.8076646675807648 1.5798401990204471 +1.5260804750033277 3.8803960772722905 1.0488249076699163 4.071232716942191 3.831155298423323 +4.738190204238857 1.2431935895336363 3.409031645391435 1.2689241935164275 4.098177795358797 +1.0406219182288354 2.5153533867176576 3.5145504282236004 3.081704881820657 1.5369411736276897 +1.92932459591264 4.51882455894321 1.2098876044813331 1.2005290589235647 2.589516874034669 +2.958903618412746 3.965731985363408 2.359973344487739 3.011542857346858 1.1992690234405317 +1.5460328960624143 2.7053387130351685 1.3581455208687614 2.796686404928426 1.8475361572586413 +4.4743774435978665 2.639970028271161 4.721180009884332 1.8429544439684777 3.413097269885118 +4.021533531277457 1.8197664198167356 2.192784609111916 4.759447375186419 3.38164696085551 +4.449372382182408 3.051146392838659 3.1977484365915627 2.1747339860689974 1.7325110340930852 +2.7515079732612655 3.9862548478811735 2.6360658546710507 3.478524834283305 1.494769874165569 +1.304885304078033 4.89822257017479 4.9836416862589035 2.718328642791146 4.247789530193894 +4.251208762317931 4.869580263356902 4.734962739578223 4.828142598780939 0.6253525401389428 +4.2678884496866925 2.630012187113585 4.3470718540989814 4.682310241103492 1.6718323563150215 +3.8158536278233535 3.2528403421467167 4.1754373901392885 1.894730944183705 2.349171311861217 +2.0377954524782185 4.122145738755698 2.517352554299678 3.4227012533661925 2.2724815472972364 +2.9547780654171123 1.7793439531850357 3.316588554180207 4.6250763576255975 1.7589160537001627 +3.5551204244308625 3.2727030705323568 4.7352125941290115 3.9577094569023283 0.8272065583518837 +4.094577683461297 1.2765460463913012 2.831346036078169 2.0940162099789648 2.9128950513162812 +1.32113430899143 1.5125258415902851 1.1252624364027741 4.325535362189493 3.205990879318596 +1.2969175966679871 2.572943314106928 3.8200296858073095 2.8320422655737967 1.6138032017892503 +1.9120051086882883 1.6233483215012088 1.6258990237394282 2.8678618389694224 1.2750664199182644 +1.3590429039064995 2.202391059035175 3.2167349374818652 4.751061655269121 1.750826829722104 +3.895279300497457 3.154241596546336 3.4338830093490404 3.2307219452033964 0.7683822594659117 +4.803239511162836 2.2983543823708708 2.1618574649216504 2.1015542253102346 2.505610901387279 +1.2176631344099258 1.7883958714961752 3.4983026630284315 3.266954803597128 0.6158390124418945 +1.3230763496999662 1.941754244965035 1.916210885273168 4.185788079376524 2.352390906733759 +1.2450608631665983 1.7596857620007258 4.799334903402456 4.249627701513112 0.75300517548623 +1.0278106223995485 2.8695091424892487 2.8413981214268014 4.588159299346977 2.538312047717867 +2.1428219540326996 1.2918749806562873 4.944869019974675 3.758176541525004 1.4602567547892045 +1.4975681754862928 3.441187944238267 4.810581343424575 3.0470986321016684 2.624410234437114 +2.9601588559158705 2.233281044354712 4.199268514820824 4.6828401007713705 0.8730365580424827 +1.058153054399968 2.714051099275791 2.0253329868109984 1.281568194363735 1.8152642786954452 +2.451107905335247 2.977016524267433 4.642218694399134 2.213010029066714 2.485484784743869 +3.3556665359600815 3.545122379377838 3.274614513863028 2.533801531382461 0.7646550801615627 +2.4622840793490997 4.2244073069335215 2.7567385822152257 3.6341063969872667 1.9684645162131844 +4.733734360808184 4.311159372564519 2.3336584970825984 4.879404075270518 2.580579425158714 +3.788224621632648 4.190719315204049 2.2520757116112597 3.2754110288376874 1.0996441014419391 +3.2150702510894913 2.0983262874813695 2.858237892615591 4.067678815053272 1.6461665848637819 +3.808547698050832 1.7055739987319516 1.9142482072108744 1.3315100502323105 2.182219544323098 +4.085543710503455 4.751034636329421 4.472591689476012 4.259612842838241 0.6987404106475144 +4.80831392020092 1.9203409267337892 4.390003807487175 1.2426218114598049 4.271580672293657 +2.1069644211762815 1.0263582594940521 1.4852137046478218 3.845599843444195 2.595983898426115 +1.2909109951692748 1.5800720006514193 1.811315688233162 1.1323396916357877 0.7379854273946352 +4.86565605470184 1.5974794729415565 3.2239021302408775 1.0499141665314022 3.925200865678087 +1.0994789691252986 2.2076763182286845 1.3889493926336955 2.592870794541803 1.6363154055780793 +3.0003490190121873 4.2401245402102905 1.3766080987956024 1.2858708156066219 1.2430915483272122 +1.4842750919577923 4.353405142091298 3.3863892199428163 2.303577231857799 3.0666576343178122 +2.2363186989321506 4.607016434588754 4.294896053925458 1.9491058667043912 3.3351070981769078 +4.009145652299228 1.911686685045912 4.019830159377497 3.7557686627955738 2.1140157504825816 +4.272594508606428 1.5393023244820117 3.86130270455992 4.018243275907204 2.7377940950207402 +1.0406806279039151 3.161767348091752 3.9466150075638633 2.2767117134361845 2.699552904889191 +3.1097005996686167 3.5438868840154125 3.8458740783277037 2.190292019856838 1.711569362265376 +1.4768742182959174 3.731262205061978 2.9317804196276165 2.0535152948085105 2.4194244820511863 +1.572675144159874 1.6151761745146276 3.0484942664393935 1.2458013509354502 1.8031938567966903 +1.1305692869232824 3.6203600273649115 2.7016233953138618 3.690218214119092 2.6788761910468017 +2.8591177920932567 4.564537204957847 2.42731877381672 2.497259497677291 1.7068529751063926 +4.2073228605977135 1.8062556423125078 4.391423395630593 4.240281664553679 2.4058195297230385 +4.080711433821884 1.0390188995474952 4.689449870164925 1.8768153833784207 4.14280173666582 +2.9451056356281424 4.612337420580678 2.061390018111234 3.6542939827107785 2.3058631497105297 +1.9061637150540705 3.7774165237910915 4.725720151869386 4.858724080069335 1.8759736456365286 +2.752158227799318 1.314930752289432 2.8223467027517946 4.398253502205176 2.132863112561122 +1.4807524542261388 3.518362910120587 3.0474782432520175 4.471536235127094 2.4859198567519547 +4.942760240723383 4.240194002236836 1.3355726024422614 3.5044255928781842 2.279807582578841 +2.104559981469152 4.6694781417847215 4.47161292434491 3.7634521937938863 2.660882708691078 +1.0162816150511058 4.651446344621192 2.208721997487063 4.831087099468719 4.482323207802135 +2.801226432280778 1.8120236489164943 2.6430350610592535 1.5374435590445055 1.4835277941255003 +1.469134057603397 4.004894122424156 3.855336839898819 3.5229268536323217 2.5574548882256893 +2.5076608614014044 1.688936546786131 1.4258111844277384 2.2137510840713284 1.1362916829725542 +1.478306769377916 1.0991488323783196 1.2740713718851207 4.149693362151888 2.9005107433167 +1.2871181314693003 4.30230062329053 1.9458755405559875 3.2281378332430197 3.2765106510176776 +1.863421928231574 1.1248888335050942 1.778729587882733 3.9404389863919134 2.2843858377273296 +3.5144630019940024 1.1458829840444178 2.5672791074995174 4.518029476996368 3.0684846920788367 +2.3317938911772185 1.5750888455039425 4.51028737476335 2.180923683023094 2.449191240908964 +4.5196982290759475 3.5152779645904135 3.2731795849578176 3.0135751129442094 1.0374268887968223 +3.6229136639347685 1.1003365751478982 1.9354101353801343 2.2590785275607073 2.5432570450053213 +1.091079404655892 1.4258676653201672 1.8754359745497164 3.6341168270460416 1.7902629752122485 +2.182308196030168 1.9588388287535938 4.75929286711845 3.360300869050586 1.4167276268813664 +2.774853555309469 2.48945473590747 1.983818084966218 4.031338245017104 2.0673149958172465 +3.801927903313986 4.128014521117082 3.573973708358974 2.868946756572869 0.7767853532701744 +2.043587358302041 1.4986208204391955 1.2568969674655817 2.2341453169295127 1.118929338215865 +4.297318645589449 1.1522493978923039 3.3498995996745213 4.202144123771194 3.2584937166830708 +4.145884798952034 3.618925799727181 2.054862384382966 3.6169732155980947 1.648598203281709 +4.856510567645888 3.413179147480768 4.288578286365302 2.1497668123411398 2.5802558225597076 +1.4682347556366193 1.6033422927398742 1.2675070329396512 3.872797164953035 2.6087910453979295 +4.116781606440213 3.045856617616829 1.1824548288250143 2.0849999257017235 1.400524181720028 +4.531332413853184 3.0156534828776542 3.0091397375511106 2.3112545459538403 1.6686300855653666 +4.291597733101377 1.0564501923138465 2.957414609220259 3.242667273203442 3.247698984353862 +1.3552728704280974 4.866308340701206 2.591429439291439 3.250116429858681 3.5722875899146804 +2.0623663602052438 1.2892530559016957 1.8646644157107861 4.96548103513609 3.1957421498918404 +3.44401369322953 4.58480557819267 4.689088053752818 1.9173756338209302 2.997298093884296 +2.047825697302042 4.524598231524402 4.518549776804031 2.7472705041707917 3.0449683820917404 +2.3773844611895023 2.682172262841953 1.8048905075516672 4.480039450706356 2.692455658334559 +2.0034402386264363 2.609867066358882 3.2554644573645324 1.3922376037158202 1.9594304798974922 +2.716382751607759 1.718139505265479 3.52067228398932 1.3767751879991765 2.3649068347533153 +4.532415809843204 4.998507829061925 2.3051658116268485 1.7238202736055879 0.745120396282784 +2.7058733832225403 3.2023826463556424 3.961706991627246 1.6223345450160886 2.3914817357321483 +2.355763790997806 1.1974227488173907 1.8599640997638947 3.374258964773362 1.9065263985042669 +2.057560915074359 3.303825726323456 3.20627321233842 1.5336143562461748 2.0858963609493077 +2.1591831417495815 3.0139724761145565 4.764570549033731 2.471367622724644 2.4473341552343597 +3.4113543072162127 1.6302495598063569 2.0530017615383205 3.7814031819735083 2.481875418188492 +4.603042203215272 1.8767693414907565 4.14718669449427 3.8611043542586274 2.7412418393805167 +4.534749832747585 4.977279571223836 1.6036090433571664 4.717724378825408 3.1454009111771963 +1.0771329009364385 1.9085870559945377 2.226626381651592 2.708653315843043 0.9610754274506174 +3.778238622515619 3.639862907063239 4.484037926769746 4.999110126239433 0.5333359253730232 +3.4498641609094904 1.9929248321907487 2.9796218192430293 4.160361318356203 1.8753180989723972 +3.6090337168317057 2.2287154104472493 1.398395085238291 2.565710840828362 1.8077346874441707 +4.670824893546486 3.18702419148085 4.259212544752057 4.545664834198528 1.511198014020532 +4.882770790529673 4.011665608335061 1.9423964643071767 4.137227368141601 2.3613781854825673 +4.142188002945048 2.216010392825204 3.7496759607758334 1.271820976649134 3.1384590977243145 +2.5420828050542785 1.4829643214766866 4.783607897672706 3.5227935526980843 1.646628304976409 +2.822602614393868 4.129924856616735 2.414951990483053 2.787579600697698 1.359390591737673 +4.397975482838215 2.0699871232997094 1.705033470106713 2.7996895419639185 2.572508837263855 +3.249174886549127 3.447248212836034 3.918666757335417 4.833631894013688 0.9361593047783306 +1.6056515845048862 3.710028790063646 3.7555930022895776 4.770667623957641 2.336403199541949 +2.1682139000059784 3.9069541341952805 1.3356187118559442 3.258460112903243 2.5923997869869932 +2.6297799146440113 4.1156535929547395 1.142125536809067 1.5566159515699263 1.5426026357507894 +3.038188777492486 4.711926583752085 3.2073033439138072 4.697611557673811 2.2410749242502424 +3.942155971275092 1.5298813386421513 1.0110991332684063 4.31335259165032 4.089492243132355 +3.293116592723881 2.4251626226207024 1.156105448908106 1.50178418184346 0.9342579304569276 +3.900004693685237 1.217731660292202 3.030357904151496 3.69971402089006 2.764530020940775 +4.115543014172546 4.4028883943385715 2.5838724134635656 4.32879948115161 1.7684280700817763 +4.631056359576027 4.378836629465649 2.8480889651157453 2.130203278167173 0.7609038387224598 +1.3199661644331457 3.253435195336754 2.7323863601069203 2.681040077931842 1.9341507009942478 +2.32923298219116 1.4648722386977617 1.1551403786924461 3.8220173645441307 2.803453647299671 +2.5132323337358162 4.929600569569168 2.9554474421529084 2.9633870184591906 2.41638127952033 +4.656342606994508 2.073180573787421 2.2578508065151803 3.9917173907577324 3.111112248337483 +3.436795129362114 3.973829604246904 2.8083440622902596 3.8465691980085857 1.16889582925602 +2.2461194548262657 1.7594077645523272 4.69797164098831 4.972409859926588 0.5587527230030545 +3.0436315439529156 2.9208609655749074 2.7384346429273507 3.6876070625172397 0.9570793577469922 +3.9233961506253165 4.252326217903677 1.038043792810552 3.2662385897064494 2.252342567655661 +1.4707248330850584 3.670819865849242 2.1129790089238787 3.213054709961191 2.4597936298003473 +2.113306435482219 2.6261490605991766 4.206892300332646 2.129450434459776 2.139806595049703 +4.204476309536889 3.2921620995937784 1.5061776620439948 4.487886260051471 3.118157048818393 +4.115176911133156 1.7758964389116767 2.4176449339041386 2.512735178331234 2.3412123530987006 +2.9088436438437277 4.202097366983271 3.6945180876715638 2.320889388888963 1.8866268827018953 +2.713033763428538 4.607637631745227 4.997152167187355 2.04657413970883 3.506484637650596 +1.2607190509876154 1.2568104945102943 3.6760546474035967 4.8840345862822145 1.2079862621515718 +1.728736045193175 3.7485352711114515 4.183640916569239 1.9018303839252 3.047334609114224 +3.678949882847201 3.897448140735646 2.749984979665704 4.935818147799646 2.196726684777774 +3.184244087164085 3.6712168935932317 3.030480684407567 3.7796002951512797 0.8934890628330551 +3.5622133002654093 2.6113644903755064 4.265432716360941 4.7975687663115165 1.0896248138354991 +1.8353458253871882 3.8706338134945444 2.6424240416089626 3.3595396716012735 2.1579277145709397 +1.599524029511144 4.208105380150114 4.874259896514657 4.418383628802308 2.6481162803707794 +1.3100122400785752 1.3666485938029642 3.6528898123406823 4.669345021073699 1.0180318599747626 +1.394925510854283 4.572019117103253 1.226664353158537 3.375113331417975 3.83533007641482 +4.430523299675144 3.9203048330628265 3.834837334535704 1.5943918343989565 2.2978074163765823 +2.9044710382670695 1.149531911133439 1.4940424029763855 2.9399499865330374 2.273864569434861 +2.819631125476247 2.307175660760323 3.8338256405424813 1.822710896289439 2.0753778253294493 +1.356538400003044 2.2314795053610514 3.739508723917131 4.965428345372788 1.5061211292970675 +3.8497545255670302 2.245467797256441 4.264579144451043 4.3857010072371825 1.6088525141473593 +4.973132731353068 1.7990677967858248 1.809614249501657 1.2124812256979407 3.2297455096286347 +2.983020963028916 1.4420452776753563 4.217349979536747 3.124592424032358 1.889106968374952 +4.332317907783262 3.345539229608201 1.7313732573989373 4.516280431281977 2.954562594843125 +3.92071353340975 1.8698394904648334 4.789563245332242 4.928085513807142 2.05554682721865 +3.311811136300162 1.2623830542071346 2.740459245506474 1.0984943897742032 2.6260624613918457 +2.7721567818381567 3.167023572631574 4.869282392745662 3.190558762550097 1.724538433624623 +2.532770350627015 1.938136538338512 4.392519600900375 1.7785904260168635 2.6807116782720133 +1.4701450924472401 2.3852461130667284 2.1035495718444164 2.808627396488512 1.1552249204131977 +3.3024069726418883 1.3398700449015357 1.1884628047644408 2.4065531283094987 2.309825800587275 +1.9498100563075336 1.0418855315542248 3.3138190575164415 2.5247733894244258 1.2028798813611012 +1.452256899110929 3.7643749067327152 2.535735771146993 3.6121280830131264 2.5503941048813332 +3.6796911320628496 1.028925401474261 2.634377412042811 1.1887724850114556 3.0193265082664023 +2.4496830946208514 2.373082360982274 4.34977563903835 1.9599316940471536 2.3910712565302306 +4.435116343828222 1.304251099948626 3.2904268786572177 1.9643014529868683 3.4001361472656657 +4.1996374380348485 3.3850050456326457 2.415063048608839 2.411752757729303 0.8146391181232605 +4.14855433822893 3.0195790370331976 2.072079603095962 2.9187033525312254 1.4111544932493458 +3.7538862268041777 4.915792710514278 1.598624867874443 4.701855155286843 3.3136180971260427 +2.748423654203983 2.32148676471324 3.8582787112802452 4.985485749777913 1.205350909588869 +3.7097049967715146 1.2349064384983173 4.5744739754383685 2.521473527285481 3.2154997658446582 +4.16947267997174 3.8933961800132124 1.2021608906012746 4.974183770181602 3.782112483507969 +1.101186627950852 3.545524528305148 4.756385993020003 3.156565078054556 2.9213378324098924 +3.935599539612479 4.384800869362522 4.005766139402102 4.755014110240166 0.8735870628930834 +1.070768247782206 3.407066095602436 4.801079889499793 1.7383863903677268 3.8520616692045904 +3.147711534066207 3.520183456984612 2.6802497093775353 2.4721931610627617 0.4266413724185597 +1.6795713401471288 1.1452140740227237 3.564812312797125 3.458939755460629 0.5447446064505072 +2.571639031011568 4.393257630794205 2.020886256548275 3.029308337515296 2.082116571293718 +4.71077486143873 2.005226020696334 3.529836567764249 2.8330901598050615 2.7938235604000754 +2.465923603914542 1.6378034125109378 1.063514461451705 3.0306671148895044 2.13435531562524 +3.4465740862750516 3.38210746786342 2.632291371516256 4.3790629886810795 1.7479608197617142 +2.556296271434812 1.4199677545364189 1.1836891159410583 1.5514458486240188 1.1943565266494542 +3.2037264628855766 2.7521305206323694 1.477083729113959 4.194607722498628 2.754791380428093 +4.500166503306641 4.042956635588316 1.9878535608839178 1.4610634009040218 0.6975304550990246 +2.5948947764124046 2.031418904157245 2.1676337355202984 3.8868892873913494 1.8092387104119636 +4.143421790208225 1.9413039567943855 2.0814888163738106 4.225093428449185 3.0731683463731825 +3.7800532974473184 1.0923198031955583 3.5917877892823316 2.0137220456423157 3.116761592963583 +2.3849930143617684 2.6781293458196482 2.483624830697629 4.067605497842669 1.6108766752019934 +2.790835104051998 4.502940589646206 4.469171789133629 3.0272243740056908 2.2384185358855304 +1.643783964467115 4.833969157670201 2.6597183036751657 2.0364124722868384 3.250506379992955 +1.7483527466250357 2.2437374456440082 4.324124721888667 3.626520042990434 0.8556040486362984 +1.2620193083456748 4.8400208391287105 3.925008075817312 3.3221160341414926 3.6284395775872835 +4.310570466164478 2.8835559420075167 2.392342127865749 2.0648066248896395 1.4641208822582688 +2.202150581800248 4.3487537726597605 2.594729425728096 2.490396115045675 2.1491371986744343 +3.2243194275683913 2.050676283298268 4.276247798079913 1.579146303482852 2.941393326682095 +4.968801655681577 3.7590568480904136 2.8114767035885326 3.236441071317807 1.2822157436770623 +2.551193151934229 1.319863911561833 4.33524078354422 2.2091412764694858 2.4569230374961872 +1.6525170152749156 1.6762074439711698 2.843521808898959 2.6754914029069052 0.16969223243763012 +1.2219803932262243 2.354041370424665 2.5581030101784332 4.374162985716223 2.1400083856952077 +1.6091428762857007 3.242131933675568 2.6543914929709453 3.889031643431219 2.0471906512788727 +4.720512700886229 2.9949114945978685 3.975624468610396 3.4012824833795015 1.818672108749351 +3.178428896563442 2.8219732955030135 4.1724092620748205 2.7359853229945017 1.4799913270997134 +3.5432333015201407 1.104992757518743 3.414842584399554 3.4179316761787706 2.4382425008395394 +3.1455670258485946 4.1423003399528495 3.9037468815619483 2.2510660719500932 1.929982165177841 +1.2687726968933704 4.429899068194771 1.3757245313704134 3.624325015510787 3.879294275072914 +1.8202388204175857 4.29503869089233 1.155364403020441 4.41224932279761 4.090468650359485 +1.3428515005402675 2.5703574553613446 3.029675314548889 3.1172413285832525 1.230625319069566 +3.1000549777791715 4.82103892996483 2.58616766177344 2.361121395608774 1.735635787138312 +4.27040227953081 3.1181511827188397 1.38558441549594 2.8462875731960366 1.8604666901128388 +2.2947021651239465 2.7589810600475593 3.436298340617644 1.8824297939044414 1.6217466980808353 +2.696469807014337 2.4103324294206714 1.605836023145411 1.4142234916220304 0.3443689316604774 +2.2489632042946317 3.215542460648593 3.9623811438330976 2.0463155139145552 2.146062197833259 +4.0599846130211645 1.7133941716985008 1.5189828521668494 3.6905817549945423 3.1972376349075673 +4.6124479307121256 3.808939313488733 3.126805454781264 4.857254982428511 1.9078998049391456 +3.113418698785216 4.287446328582887 4.08231100395578 1.7908094533250885 2.5747466345392516 +4.9365911887906835 3.6586079185472373 3.3157640247973736 4.001001428298299 1.4501005269217795 +3.350586222487258 2.4561466894641226 2.078560056269929 4.620070948619002 2.694308759990886 +3.5897677975815654 2.727417164448833 4.858454359256337 1.1002099769221179 3.855910975607598 +2.8202048875962533 3.2946646079275586 3.0340483760523123 4.8582369369313305 1.8848808800183432 +4.4406148834452495 1.3321347280986542 4.527770269714372 4.438969551176892 3.109748292675207 +4.098484425074016 2.7615937914197985 3.6166704332660022 1.4762308126488461 2.5236398982145 +2.935009690171657 1.1928845829095929 4.611563734352799 3.2535030784635515 2.20892024175324 +2.0946439291587367 2.257456469444169 1.0911391573656077 2.977431468305363 1.8933057348417444 +4.773299229801307 4.466977751685873 3.833722200188023 3.9412899565670223 0.3246593140004396 +3.3209992861880893 3.6201219842502255 4.727280326637328 3.1271752792429997 1.6278238698313705 +4.868134651765901 1.7774865684471552 2.021201900810018 3.8523121951838926 3.592362799757816 +1.8094969282785294 2.582478689935378 2.650320738481535 1.0969152925875383 1.7350992142201125 +4.461711766951414 4.724432754885511 1.8425582529011817 3.2102492751761935 1.392695605619812 +1.8872195715691946 3.330344114105062 4.915849307066212 1.9816592282597734 3.2698745945120726 +3.1108076246953567 4.0723680959351185 4.519680201454135 2.0361886681587653 2.663142642781385 +3.835424065056911 1.4140560328007301 2.086280288981748 2.8478191942550253 2.5382995591294955 +4.963462270584545 3.013578979866734 2.2950046169298917 4.799463980299664 3.1740134766870547 +4.787172333622801 3.2647795029813045 1.1756931647613813 2.732184469479908 2.1772333619649067 +1.9028857484904278 1.7669245938216247 4.244013939427189 2.836602034478101 1.4139638276035549 +3.181924687294409 1.0254097109484999 3.8585601852999294 3.3783105721218623 2.209343009621159 +3.1305371285575565 1.6439786526601123 2.185104546426776 4.935629699035578 3.1265387759303747 +4.6956487122184 4.463655835228368 3.108093137582197 3.463721557999617 0.42460837059895684 +1.8604088113548918 1.5121295764424576 3.32788494403099 2.144824419543141 1.2332601631742812 +3.574018790313295 4.557742615600565 3.4855784518680752 4.518498365606531 1.4264067136112613 +3.8799517617046697 4.356657596315652 3.6824357667992063 4.655519145138506 1.0835772764101217 +4.718210830371488 3.142258584917135 1.2787053979211098 2.3127256598948205 1.8848934670492117 +4.46560959819689 3.07586841591735 1.3309817305294849 3.848145888999689 2.875325364964936 +1.385319664153653 2.731983888807172 2.592855354316235 3.4788447036655743 1.611980664003799 +2.6867850068896453 4.327511560681408 3.408363873052154 1.9682092929573152 2.183123642601476 +4.063361877533383 1.3604713339712373 3.868776221417475 3.7516220261250766 2.705428320239197 +2.098055404879629 1.6778805971715864 2.874203930571779 4.473644510347597 1.6537100825918962 +3.142016054460288 4.162022325664129 4.608527988679165 2.1456356543012665 2.6657553233619504 +1.6853772817481523 1.9352466775344093 3.369188415582108 4.736299339530272 1.389757890184111 +4.868318206338882 1.5613462277565815 1.576297850848504 4.534665827975223 4.437116716429418 +2.366013123442669 1.1180989320877517 4.2078276180803496 1.9316074070373501 2.595855981780506 +2.39088290249173 2.8252069836374627 2.857594153522647 2.9778859786613228 0.45067452852172446 +1.9654337661885806 2.7976398298332845 2.9140598398292155 1.232578056218781 1.8761524247727692 +1.6105442318335572 1.4645571330795142 1.5026979558018247 1.1288467774771713 0.40134391304385636 +3.110703276131122 4.3601673313971485 3.3383301413452084 2.350964322008974 1.5924985672192418 +3.779223129496128 1.7284918349443554 2.8298055629340735 1.4388782367030486 2.47793818916255 +1.965347067456416 4.026375380002992 3.7092364705037313 3.344262846532325 2.0930942289618524 +2.4993831353615485 2.261034948699741 3.11274371111056 1.538487006462062 1.5921978615158732 +4.406120972340935 4.379221350954506 4.042123380171358 2.111394615135511 1.9309161436394844 +4.675747138277986 4.4615698528898236 4.731188408591835 3.452665140174813 1.2963385581938027 +3.096332854930809 3.4174144101388078 1.0242832803366801 2.4574937576935016 1.4687360680190826 +2.1748494267562335 2.9809301903821064 4.395402976024942 1.459101328695636 3.0449357237216788 +3.9725316746982466 3.388860371028051 2.370235033342726 3.7118997773017424 1.463125584463165 +3.704637549889189 2.214591939680759 3.5762354371707588 4.64180242090005 1.8318484973696247 +2.605366344130466 1.2033941974842195 1.7935703961049878 4.0470519527161555 2.653997932546025 +1.3820718286498144 1.5090358539526005 1.0042312273047718 3.0556588774216804 2.05535283282099 +1.5403475688555854 1.0241636321993273 4.1028380094331 1.6450873658573806 2.511370956760234 +3.674398992917317 3.124350126369655 2.030378614654676 3.199124186114452 1.2917120292066675 +3.312235437569034 3.96621897697939 3.0062001962931606 3.4237779173255527 0.7759288774896206 +3.5815446808615397 4.39804553029507 2.8235219853517934 1.360257769103503 1.675653843631912 +1.2853815737809375 1.2842787267058817 1.2074519734667515 3.8564925175327605 2.6490407736343373 +3.5693721989386105 4.285303887752974 1.9621894653411363 1.7307221869876313 0.7524196196252233 +3.242525031918836 3.340049494652902 2.9591282303235866 1.7015534600441522 1.2613505950666295 +3.239019839092604 1.4793888348344013 1.7937893070380104 1.3851983518914968 1.8064461906667113 +4.6558053640098525 2.50427076564666 1.3990813693952524 2.1796793886112673 2.2887626341667304 +3.4760693016381907 2.9261686729070866 3.7078144040113106 3.22434751523087 0.7322096243739921 +2.1999228669559043 3.5467187514994127 4.759839417168834 3.04388596824605 2.181365488287859 +3.8933114361170214 3.8357630209565774 2.5082247277571086 2.035133961555366 0.4765781081342602 +4.0623764550454675 2.6808841856414443 2.6364140826851776 1.5506150019422371 1.757122799967405 +4.542233557328675 4.357944837764695 3.187618447462239 4.452916658598095 1.2786484643021043 +1.6019811433616544 4.828064976776167 3.4585043282234222 4.258344495007536 3.323757089893862 +2.0532735396025794 3.0760131376342508 4.820031894851133 1.3047754297260004 3.6610141082746495 +2.6029517660640273 1.7994127117410406 4.558585981585092 3.3004963746920852 1.4928042305655758 +1.0379157676775281 4.324654666998622 3.1879179913812874 1.1738349139327098 3.8547611125950683 +1.3797813436429425 3.2475671448812107 2.2086283410173824 4.079512611342531 2.6436398681093727 +1.649343777468911 2.093992710531599 1.204065382137757 2.947953786274538 1.7996831498229113 +4.491401012297201 1.746062185775234 4.939359282570432 4.941887156595252 2.7453399903392834 +1.781026207889254 4.386793517181524 3.1221203562238213 2.417771989205904 2.6992832182446294 +3.7699670638217384 3.7424301912105062 4.330444414018581 2.5367018574625537 1.793953912048289 +3.7762277723601407 4.520068822703371 2.9579489718908656 2.531598897022537 0.8573645050478531 +4.057667606421989 3.6340424424895814 3.736114641625064 4.948021298634675 1.2838130801720984 +1.9809504847818458 2.957178143710506 4.02037001054539 4.2588674595457885 1.0049385430149598 +3.3227938455201835 3.2300651084703316 2.18017562405614 1.0474017328717058 1.13656293588344 +2.794790592684949 4.438228073650935 1.3053231344464602 4.2934500668545414 3.4102476915946083 +3.8370377840820145 1.401360258990458 1.0356332797373908 2.224865268711147 2.71049769043152 +2.129014738011884 1.05643874785916 2.5952226825496605 4.1270372323682345 1.8699933341292894 +4.81274823539954 3.0207148803580495 2.1228749595638234 1.9522688264537549 1.8001361054753695 +4.674367457352545 3.339144650607755 1.1470264965815455 4.613422056491601 3.7146625851368493 +2.434041559555114 1.7544169687486604 1.0224541425543228 4.428197649898387 3.472891939327379 +3.8969968925685574 1.4091557768646346 3.335198566348745 4.9336317252045365 2.957083357011879 +1.1894558296331001 4.481622813103879 3.21486160319104 3.4033325393524887 3.297557390074153 +1.144415440573694 2.525682914004258 1.9862216293130914 3.7421585731743714 2.2341025902975327 +3.8696450812158245 3.1348683031510918 3.8201027497412112 3.8249324799562983 0.7347926509411618 +2.7296080157835716 4.528071763179156 2.63654589453107 4.064856188111438 2.296637138392525 +4.787263587012334 3.176166067400289 3.520374840057376 4.266252741645568 1.7753785685812724 +4.932683564451063 2.253657508832154 4.097899004729918 3.659464404297982 2.714664897467258 +4.239279198531303 2.354323013664339 3.868260415415971 3.0134011101022278 2.069744972393874 +1.5109075977137802 3.9834686069523397 3.9431284756772707 2.4813740395316763 2.8723307567197285 +1.5343742989862799 3.696731841588881 3.019760539506391 2.726448483289381 2.182159963057844 +4.243711698091193 3.5677604429830976 3.3868828648165494 2.229820633864499 1.340038471678312 +4.667762114827478 4.171882552651839 2.078956323902203 2.3360178495611246 0.5585491635994058 +3.0178833171809822 4.681519126858091 3.5256350189109704 4.803639078383453 2.0978509201723923 +2.791346734629191 3.997868298935609 1.0082899303549637 3.056953522159255 2.377544278771873 +4.761574789707496 4.574421132129448 3.0421862540542937 1.5877744493167967 1.4664038288631902 +3.557791241481104 3.870845720163614 1.698311949207734 1.156233984977011 0.625980531588406 +3.258159024830801 4.74596868663499 3.362703806967785 4.318956153872579 1.7686141865084148 +4.712214600496512 2.6406342765072313 3.0565851975416862 2.2667666995617157 2.217038181559098 +1.817368273534476 1.9534968622265172 2.2730646540435053 2.991919235251659 0.7316303038989272 +4.410331821666615 3.6328867451503455 4.4666307622010315 4.202324721519533 0.8211446462957169 +2.00312016709694 1.8636737398759031 4.643672810905031 4.282363053056069 0.3872854853742743 +3.0672285181837005 1.2450214235644994 3.609897095617124 1.5042070928641627 2.7846667813895287 +2.025376271797119 4.011531246016784 4.31186177117231 1.3178937159108113 3.592861853389835 +2.94518774149329 3.857237463272831 1.410307863416938 3.7522519888787755 2.5132721662771322 +2.2849510320233715 1.8003619714727432 3.8008566411450935 3.3049924767551055 0.6933309650747768 +1.8857711399086536 2.0813196076314497 2.0125774700356205 2.3858869145099852 0.42142513518119945 +4.589432851311679 3.846430295500435 2.8128155117193647 2.525483572568291 0.7966256593898778 +4.994826506372723 1.6756800443660742 3.0118098419777666 3.1158222256462493 3.320775784693639 +3.854960725969819 4.197587172783502 4.7463765782922565 3.204419581109175 1.579564580261926 +1.1705314770463247 3.16156316780253 2.540999638726081 4.4381673220055164 2.750173160380156 +2.2753400645617057 1.772172985148416 4.739535497740544 1.470203805985415 3.307825089166559 +3.122981625013392 2.4816233197089805 3.316621986862564 4.114199827886743 1.0234602524161538 +1.6647575629494868 1.7304968026577359 3.7916408982150114 2.3908049856988853 1.4023775887514411 +4.315580087836642 3.4419279241574463 2.096297673596454 3.4134455821180847 1.5805526615789318 +4.117360087210942 4.043763107197993 1.105322065163691 2.6485380405703807 1.5449699227549534 +1.4617706731848763 2.8488882823849755 3.0922105794867036 1.2937379084271572 2.2712549857515025 +4.883663499571255 4.325280272802525 2.793531535860935 3.6086024687496523 0.9879941566511126 +4.7954832739013895 1.2612680344101808 3.353143069654307 1.0301697509366132 4.229288639774566 +3.264770946360146 2.153583676431495 4.778565106206367 4.959601559394201 1.1258380639480616 +2.973513639233107 1.1493351461603813 4.1770445606595175 4.911753940794746 1.9665769875211527 +3.4773212600059047 4.931332846164268 4.857286985249097 2.303918600940061 2.9383396329681997 +4.587040217373078 2.3215263208796766 3.342616286282721 2.7852433147226017 2.3330704757101683 +3.4204345214617944 4.08596538368834 1.6582757205146974 2.48999415704837 1.0652168259307706 +1.2764450863281942 3.3090378933510114 3.265216665195176 2.297603080790258 2.2511573840773167 +4.089878553915629 4.386849531257294 4.792889623216428 1.7963008397979618 3.011268187706407 +4.998249791630574 3.005646822603894 2.4910453081172164 3.759080521491128 2.3618594146413883 +3.6442164933894077 2.6126732761432363 3.4632182411122785 4.234822043646165 1.2881979029370196 +3.973635635339059 1.154456125349911 1.4298097135871717 1.258974809327157 2.824350841176815 +2.7927876085933927 1.982537363034131 1.2483029452829841 3.514661036563456 2.4068411784621992 +2.6098988220703623 1.7996915895016259 3.9825295791355435 3.483942394236395 0.9513279879475576 +4.991059923434991 3.055092382786564 4.4780311721385955 4.922134292584651 1.9862522246769774 +1.8800217024035306 2.921785675208294 4.498593402152784 3.9526091307080695 1.1761679300588752 +4.340936107884615 1.114805324520396 1.9789746014926881 1.0584919991631119 3.3548782470548257 +1.0332645249646282 2.936614181323419 2.3973079410580174 1.723488587047214 2.019101888513966 +3.1229930479313794 2.960479663666964 3.6804592616891862 3.5117503986661043 0.23425046537331493 +4.398713412297504 1.5645540672131126 1.0136949754557478 4.3586002032815925 4.384159004468913 +3.3487639439400656 1.3829204230054897 1.8529448187150583 2.2562171621913656 2.006780838012294 +1.9062273444754112 3.483302392146147 2.1245770125488197 1.8238755013402113 1.6054865632663495 +2.5416465550235245 3.361710096758906 4.607914876987842 1.442767980174136 3.2696573353935747 +4.608935264137499 2.046674215194008 4.457897479054298 4.753027223989571 2.579202056698653 +2.638930172633978 1.0670977596563254 4.338972361039399 4.550743215648025 1.5860340568061009 +1.5525422563356512 4.307222881189771 1.5365022230489975 3.9571010351622204 3.6670920296810974 +3.694910047325503 1.0573934876671682 2.3076394570223924 4.7100909810632805 3.5676696775119647 +1.274303913965456 4.120677214833094 4.32538446804937 3.957811777755138 2.8700088241227193 +4.9025211598495 4.284268785150562 4.841463057507113 4.936101772746357 0.625453823429844 +1.6969791698682002 3.25759560507984 2.850558645080273 4.956846573583716 2.621444734418792 +1.7617788639117626 4.287087826255642 4.226631154766305 2.2101008570047904 3.2316527964935315 +3.8402427675466084 3.873959340473904 2.732650141497312 3.98244469244582 1.250249265894823 +4.969961406618323 3.6691161001752888 3.0655284242552243 4.110282445377189 1.6684452271337484 +3.938309140670855 4.9571100556905545 1.242474747247273 1.8672755577895703 1.1951281760963086 +1.3371093070877285 4.15895379588245 3.3514209285287406 1.6055448234128815 3.318266067294132 +1.8842312401358416 3.5375169085935942 1.671308219298976 4.239871799778367 3.0546476668337554 +1.9508787105718186 4.794770257581218 3.9682067273346058 1.8681905388080557 3.5352209440465097 +4.897903258650207 3.0935811858625475 1.5340085224829303 3.6446098616916918 2.7767275983464015 +2.936897031930582 3.0443871086554783 2.6774914870286564 4.256823812283132 1.5829860107366815 +3.508599678892547 3.1353714491317994 2.547723462668013 2.2577288160261983 0.47264807898821753 +4.607133489236565 1.9508575377875643 3.7485324776698765 4.023285343643426 2.670447727930089 +1.7184457028257074 4.23946902267244 3.4756252581301137 1.2495107102841891 3.3632045075109995 +1.1925456146516829 3.4351753106857084 4.610992796681033 3.240246637588412 2.628370785524911 +1.0117786157673443 4.815043687975789 1.7256011706184582 2.831498350082018 3.960787015357701 +1.5358834596214046 3.526102360759146 4.571148962852249 1.13863893790219 3.967757092593821 +2.2070398442357178 2.1271132940099733 3.7872783501243092 3.0225121150876757 0.7689314973930356 +4.847497888905324 2.80537136320361 2.553933630619777 2.239433096326089 2.0662021520281044 +1.647086393360691 2.5953640471511603 1.3543183053269376 3.3084924563802827 2.1721020052758617 +3.1997833991101285 4.192328220344631 1.8929936152882525 2.4246855887586336 1.1259847142889015 +4.873152628190857 3.860780335379629 4.86603494450806 2.575736784755376 2.5040693520384765 +3.8302283779530963 2.011262266381948 4.630920970550719 2.6534632776426403 2.686815334608168 +1.971378014048454 4.453265785311358 4.00789941794703 3.968453531291839 2.4822012180962205 +4.260090163462881 2.860187595930144 4.492532273067633 1.3790782930804486 3.413696366709082 +1.608193306136375 1.5681673733247914 4.00195808428953 4.088454762897546 0.09530871265343854 +4.360325316636677 4.0392024356892735 4.902972975264835 3.6569520798758886 1.2867353948710019 +2.7675314358920393 3.047368761828603 3.672673654685055 2.0802546110702753 1.6168201320661295 +4.530841928928506 1.9670137128233183 1.7053454578680527 3.281653360149801 3.009644783773161 +1.5262244191363714 2.3791370867404473 3.6311079836324387 2.5829833272870273 1.3513050409876697 +1.783583182080648 1.3199079962075033 4.3615101397987175 4.770494720140975 0.6182742635370063 +4.1442028198209 1.5730355499643314 1.3439983925805872 1.7765405573456605 2.60729627274718 +4.687630608677669 4.4776051918967035 4.343617743996659 4.407582748697563 0.21954998865954156 +4.970893751659451 3.6059429362376214 4.337209650467967 4.751881987320157 1.4265496400305089 +1.0390225634036625 1.1190536020585533 2.9328738263334126 3.3173585175085676 0.39272566111248053 +2.9694469034036763 1.3311021089841741 3.042881514457967 2.888997595936346 1.6455558105944172 +2.43666237038765 2.0597232993045407 1.7795946268668223 2.865825254930231 1.1497739084933285 +3.541871873763665 4.347865501284929 1.67501561830113 1.5019805968584103 0.8243584452473136 +2.9797146220906945 2.1589734515644987 4.538294237054164 1.8335990543661649 2.8264805147484 +1.7454802944321033 1.073691214521732 3.51600681442811 3.696989561413397 0.6957408444192159 +4.670832296878808 1.5526224293543254 2.40626486191828 3.7756016052469503 3.405630029019156 +4.200752401658853 3.728264839280102 4.041193916540928 2.6278352764366906 1.4902439874597428 +1.943824526847266 4.248135974145792 2.7176324738156072 2.441544223437642 2.3207920992945046 +1.1921287304478496 3.151786046134044 1.5215143175991903 1.7461548459429954 1.9724908521706774 +3.1332504398003787 2.015696949643267 4.151178778694511 3.1003997162074404 1.5339695047567112 +2.5564340988998584 3.376666731168039 3.3614024300203917 1.0651354509634388 2.4383649460540013 +2.073199082039402 2.6351856181313065 2.818867241958563 4.476688045213766 1.750485270561939 +1.0694044564455605 4.695142263930782 2.637484899906881 3.3976725525600715 3.704572838516488 +3.688058431677608 1.5317924161764527 2.2926686540242556 1.4641130874646984 2.309975639802736 +4.746280246098786 4.572356670227772 4.352579941763062 3.970228854892026 0.4200497159566028 +1.9058472175799683 1.4589007235480551 2.357227666505781 2.1015129335293343 0.5149283379157089 +2.5884757271376047 1.6441533042889769 3.416757181602058 1.2356703204380097 2.376738255306449 +1.303566452415263 2.0307058681848837 1.2818559955178577 4.219196573422594 3.0260041970512064 +4.1730389354645485 3.0364069405681824 1.6308828514762932 1.9401761770633148 1.177962076246418 +3.3118303528992894 3.5900857011429887 2.3429290497217723 2.271987196488607 0.2871563778960488 +2.5695975254226378 1.3281910015101146 4.839212038334692 2.9693117020570194 2.2444637277585766 +1.1849063703158027 4.8961056971915 4.518538342113903 4.942458377850546 3.7353324671977437 +3.449815951830902 4.292022846108468 2.087947144420726 3.1601647416290786 1.3634379445108296 +3.6357904133177557 2.352321709482308 4.638706647817786 3.3359337170356875 1.8287999406451279 +3.4198082645063224 1.3297952508385649 4.290294669523838 2.433054585138957 2.7959783848138997 +4.562778557256095 3.548004877485972 4.989280324476228 3.4222896000285665 1.8668758800893013 +4.439928620039563 1.485079420298304 2.238159589091391 3.8536304672401345 3.367622299391402 +4.319905144719854 1.2855991261024489 3.120102383037196 1.4323385510171889 3.472111715842776 +2.344050752139283 1.8601487406750126 1.671317830574409 4.487433781296653 2.8573887038013255 +2.1967629395586155 2.5612938174680684 3.988635614177333 3.2226334090992714 0.8483172396774034 +4.40731228711717 1.9050155439460634 4.1892542415919 2.0445144209782407 3.2956634975389463 +1.1324532750163603 4.188819183518751 4.854619614706306 4.832870730836205 3.056443289283352 +4.264853146010211 3.3589727446918487 2.182143654625101 3.9483537731198726 1.9849729177412045 +4.053893484472789 1.313961849935236 2.659879821286796 3.8491113314342886 2.9868875015084373 +3.1873964186974213 2.1511839772137926 1.722492551702333 4.9054953192386375 3.347423313838457 +2.533012248212285 2.8957289597841362 2.2598578375714746 2.904892164832776 0.7400220916965501 +4.51937338496138 3.2923177456425754 2.737642626574072 2.547967366281891 1.2416288682013588 +2.955633762973437 4.387379728029357 1.71814393585672 3.087221401280853 1.9809769344407004 +2.3416829502392464 2.66264352454749 4.623699094228276 3.7067857506228656 0.971465784236342 +4.9231815435597985 3.834239206433042 4.268118181496182 3.9687484912174305 1.1293438914009666 +2.2489968721001814 4.921499129773969 2.75037556127834 2.6729928707851127 2.673622336467786 +2.2971706352772463 3.0698808945457405 1.779772379815722 4.300312241419716 2.6363236407378867 +2.9265605334413696 1.2529765173316436 3.9253758633438403 4.734240614965414 1.8588022071736923 +3.7077302079518537 1.3255844422727137 3.6955660625825097 3.814313525676619 2.3851036474196134 +2.92710258201249 2.4547307360402355 2.50692363380214 2.1584653432310708 0.5869909208283779 +3.989463085692256 1.0193276591853464 4.093633387150791 1.71487658418366 3.8052842705182734 +3.5897289245038255 4.435017825334782 4.507252846205091 4.841853036020845 0.909104291537965 +4.767662020288562 3.0564746913775362 1.0101386031909123 1.2399005817575928 1.7265435532938418 +2.918282574267271 2.365360143415444 1.2349764053802494 1.651796157974481 0.692431888846701 +4.174260116462188 1.4744205244913777 3.7963135454157015 2.440871488275468 3.020986096068245 +4.652527247271342 3.3516806446469354 2.1293877592191652 3.6569772221623347 2.0064225504251247 +4.297928476407664 3.7548345942274 1.249148481589478 4.501811314014138 3.2976910810896833 +4.843824803971005 4.084700428282869 3.764836030629329 4.9296479432771 1.3903440615941294 +4.0499285518273656 3.261881893974501 4.627885974021141 3.703496850021101 1.2147068730861086 +1.6663983214486575 1.341161737338092 4.3871142523094955 1.8643200490182812 2.5436724293437747 +1.455381315440694 2.587601928148618 2.1666084213141996 1.6313900633190723 1.2523506723660536 +4.953864992997929 3.6270032046298724 2.2383907297407104 4.452370140500514 2.581136772179964 +2.0876547269585175 4.330415560991784 2.4069982323615706 1.7571718757316765 2.335005450195882 +3.0210096178331223 3.8119325093329435 3.6203472464279676 4.589982248814119 1.2512997475228824 +3.350686236550827 3.7014406947879146 3.523789322755767 1.1245029187850157 2.42478946266518 +4.5310128758098145 2.8035694556113864 3.5033041762338697 1.8564612848480588 2.3866613247159347 +2.4948076091811227 1.470341638941382 1.822714027249313 2.400729777003952 1.1762791892844449 +4.266935585928696 3.3145777924520368 4.900574165667669 2.736675263454444 2.3642004622695025 +1.5742708969371155 1.543903554401561 1.67152875048903 4.2740269977777885 2.602675412461902 +3.819869305482027 3.662877204642044 4.728611852830268 2.1969956550650602 2.5364792710592603 +2.222271041212069 1.789927869467204 4.425164583072689 3.9425491131513493 0.6479493112596121 +4.9629388891415385 4.032718783950834 4.364049615759108 4.6634466902611855 0.9772144351785884 +1.1270615960967816 2.5160788274978487 2.359409822354307 1.8533702063074498 1.4783250529359018 +2.5067717318071243 1.5125830258632726 1.312104732914145 2.3708884564296766 1.4523891201078738 +2.7481280760240265 4.7572626558330136 1.2100452450787982 4.943589095514902 4.239807948824272 +1.5496512569205354 1.121722402869879 4.850492580966897 2.9481147131663534 1.9499140124698962 +1.8467405638998455 3.027836857896265 4.42293425773209 1.3220437677211452 3.3182088973921444 +3.717617392874288 4.488549334938254 2.7519550582900143 3.1553965691225563 0.8701155739080656 +2.7941767685668926 3.3841515574659633 1.9636773540131633 4.296815436541489 2.406575069196981 +4.770184004589966 1.4074119065425625 3.5024671432042562 4.825934010313469 3.6138346298277146 +4.578732781498937 1.8898929065506387 3.541560920571428 4.794148124278097 2.9662829561593873 +1.6976568519049526 4.644101390623556 2.0543880442409805 2.0213742370854586 2.94662948658422 +3.8077818094323908 1.3648520783518885 4.374559904856884 3.1207273880011575 2.7459063442371483 +2.6526602257403686 4.121350505706452 4.699685936549521 4.85238001390684 1.4766064539093875 +1.7725510344270936 2.8226176514806887 1.4513176495291198 2.4238238072292617 1.4312260922073334 +2.393225624588846 4.04843977252691 2.2289147456613 4.302431891378857 2.6531504346943873 +4.829953773399939 3.2430384896241495 3.9915010021604815 1.544630546673131 2.916414775682305 +2.138290647316732 2.380487523465809 1.5869222665773433 2.28795931428315 0.7416955366405039 +4.651613543916483 3.7775192003538103 2.152670078606967 2.0488220724337807 0.8802416315048984 +1.9784265549862181 1.9410073043164138 3.3726266886570664 1.4059152142686733 1.9670674172004519 +1.9607867034269395 3.324534452693858 2.4926045035953566 4.02343177844568 2.0501804967017545 +4.51748355771095 3.989328732750429 3.3426581312735952 4.36631729920113 1.151879165195365 +2.5673371355686596 3.608183834081996 1.5050515646816773 3.2055437541574396 1.99374911567985 +4.766522498426299 2.2962991929196517 1.4984054522975927 4.5184204352532396 3.9016014245877013 +3.599483887605667 3.1648577615097424 1.3494087751553714 4.215164955753428 2.8985269286520543 +2.4478845269170204 2.4522517053196853 1.783813524985577 3.8563351247281763 2.0725262009554486 +3.4003658979190012 4.4335734228729535 4.7844521783135345 3.8735795040064587 1.3773913091132803 +3.8899919508107934 3.1390472986093774 3.1444817488884707 2.053314341556199 1.3245996306409484 +1.4726145942495226 2.739813460238017 4.050842980784671 4.170904469270647 1.2728738063845897 +3.467330653102763 1.7406028300117393 3.9374084884383898 2.8889946842998713 2.0200892256890204 +3.2501894085251766 2.1523510852785646 4.5216798177455715 2.3808783153804245 2.405884464499034 +4.3257001168659315 4.364048530453845 4.38769678353926 2.237424128783039 2.150614584396069 +3.87488238257693 4.244899789337108 2.227547277858856 2.100217407915881 0.3913128889842779 +2.6837524300422904 3.225947576730301 4.849136641143692 1.4252641769026804 3.466536921551514 +3.7782964683927633 3.6137969118302182 3.8778066146838346 3.0795749204638017 0.815005485727954 +4.98049655389802 3.8806135153230934 4.820291247162983 4.613737837038222 1.1191099185419553 +1.3205823647607393 4.2550511456477516 1.567623293262693 4.569272583252168 4.197738139295355 +1.4854081014232103 2.578758241142616 1.1910067260345492 2.7083169576138313 1.8701991516626295 +2.4525916315552454 1.9047930991267297 3.6387473446367085 2.317756830798002 1.4300696380885392 +1.3217534510411162 1.5813950633253238 1.1658155567913235 3.2363628860927065 2.0867630458934796 +2.2330076651308413 3.3959474349917427 2.5186519602940467 4.004217066886069 1.8866193559507154 +3.0037330331985297 3.9847644630842236 4.227207645676357 1.9165528214194492 2.510288505985973 +4.200196815620024 2.742059404344637 2.3168677038641796 3.4718736215583355 1.8601621918718287 +4.510795448994321 4.472869434915651 1.8824017982607741 3.9389129444322806 2.0568608307008858 +2.3681078048027775 2.992774979781161 3.758773369350844 1.0513780676174678 2.7785245004036643 +3.036253449519812 2.6897905956216865 2.800028106206683 2.3966144166871532 0.531769794199514 +1.2656547408625487 4.103795958455087 2.8830248759852366 4.495898178853045 3.2644150872861384 +2.3131368900549014 4.309329920021899 1.4861866003487445 1.2762599993486292 2.0072009841309573 +1.3620129735035706 4.3786704341895675 3.5774824530906124 2.5289754862353795 3.193679554159504 +4.6656542832165915 1.333061854889829 3.0365529813814116 3.206859299990924 3.336941194492224 +2.280283380560438 1.238998740526665 2.870209370743837 3.1538572472677093 1.079226491255087 +4.64682258010901 1.9231448911593638 1.4447875882955197 4.360933216883948 3.990278872512232 +2.5174279632263072 2.211504559498771 1.8304405782304212 3.734024548703693 1.9280096113845042 +1.7991045153889433 3.2625482286598104 3.3082802628118677 4.201106116686027 1.7142944634041568 +4.770395698594243 1.3397971932261985 2.3509519233339806 4.681646734013851 4.147426238712816 +3.0649048154733074 1.3883057458053867 1.5243388381841272 1.3126548737331611 1.6899096251625456 +1.851907325080505 4.694970215931036 4.179626427420056 1.9989528992719814 3.5830634431582635 +2.5020086305934153 1.278432543670466 1.1285067669766495 4.766404505226494 3.838155597999254 +2.374427360059315 4.20040962935882 1.7575822931551977 4.779747446013564 3.530962115195744 +3.7228434666228867 1.2477069646012415 1.7791294220527991 3.4672280750555826 2.995993619137023 +2.810469794869925 2.0188989512926114 3.4437305930162516 2.753129809892707 1.0504826709910795 +2.406892510551111 3.8073086348983534 2.852400073585624 4.352629020764569 2.052279760482327 +2.299772564765264 3.422173726414144 4.444042226425865 3.845823019629221 1.2718689346985252 +4.735786725341292 2.3225471847091126 2.5146748102299856 4.028105166417406 2.8485428772444683 +4.415278691149546 2.6276947800732917 2.4412030183857234 1.04946581907063 2.265477581238909 +3.7994829616137693 2.5284839792183953 3.8353364705608435 1.0884684332689791 3.0266685361211483 +3.6724705395616812 2.953231158147988 4.100102173158906 3.7745996020213153 0.7894664094143169 +3.5351087965470995 4.441508824307668 1.9685968160220892 2.0753957037081587 0.9126702650658348 +1.139586091516915 3.075375045222017 3.872203076476092 2.60884333980305 2.3115701801012385 +2.8540036694651025 2.639221962925282 3.821051210494552 2.269126883489612 1.5667164064417956 +2.5709742536035836 3.6572899297411965 2.715519699226359 4.228018208131889 1.8621851378592225 +3.2277261727419 4.976092556359429 3.3986128953710533 3.0389095537222097 1.7849850154433178 +2.6023178017134603 4.819249443229905 2.450797193463722 3.959963384041931 2.681859148788605 +2.8291334665798162 4.201100238448747 1.7369860789549447 4.429276537455458 3.021708248002338 +2.7717785992547035 2.19043549403351 2.8810422934539988 2.5290362151651906 0.679608773589987 +4.903722306577459 1.898760567811531 1.269702309183819 2.0320348738991143 3.100152575386016 +1.0013313098272336 3.8331719278476934 1.0479281910292078 3.565454648770484 3.789097617018838 +2.783879916482795 2.699723759880623 2.6677576966974765 4.246919167618518 1.5814022922506332 +4.64320326044591 3.5703779751692934 2.5379232499441318 1.8834903849223568 1.2566767553947444 +4.223503167466921 1.738941124762599 3.865425758227475 2.930577316518128 2.654616761985328 +3.529280645321175 2.688383970850971 4.03973899230315 3.8817574926606206 0.8556081879951539 +2.9484378681746835 4.333376704900118 2.7374839515914133 2.809098657255912 1.386789186407874 +2.1693155997943734 1.8498962495725806 1.186290382127925 4.202827993293697 3.033402030867952 +1.9550382472812293 3.12118370436534 1.7191230692108372 1.2553827246036477 1.2549702523543356 +3.9950460859918344 1.1678025669848475 1.4723442424992665 3.8672621967021823 3.7052581452755073 +1.6203480482934727 1.9159992971720166 2.6215617593659943 3.6686273352180065 1.088005506005254 +2.1146624805497307 3.2055893538586844 1.2741166939711452 1.9343966079777508 1.2751827350416176 +4.576791425167896 2.040010454171817 4.674787407020067 4.749236845566834 2.5378732067831393 +3.9336667330360084 3.5940309037586284 2.0905203869497972 2.1036813072329785 0.3398907270750908 +3.731425082487842 3.061097649641294 2.9589235586552776 4.3698137207961665 1.5620339038742366 +3.9876307206027732 1.2091640022706063 3.8437113333074815 2.9983811030470786 2.904214266040236 +2.359189945441659 2.830547681577876 2.776358485344963 1.427523715154864 1.4288223656876444 +3.6157050642085555 2.7947268399933516 2.887138760752902 1.6641184274136687 1.4730186626097985 +1.8710140040689458 4.243162746906281 1.6156728752429612 4.9138423997157865 4.062636074066449 +3.9099140947937006 4.4339698387266475 3.1429669021829216 4.509784947957945 1.4638394696842163 +3.50111423594897 1.8309968995482557 2.005026140707224 4.884222419316952 3.328522664502425 +1.6812267759493165 2.796141971225691 2.219169688716564 4.635663873792986 2.661292926223326 +3.5487383773270844 3.7497774111387354 1.132421273158163 4.482668267322222 3.356273471429471 +3.6451770575336457 1.8169464295100606 3.7429828748473164 2.9542739643696048 1.9911024520879008 +1.716798031455332 3.807932409319467 2.5430435513535103 1.1019470539002576 2.5396066823934085 +4.771932391971146 1.5203653234723853 3.8689886537540654 1.5929780074566868 3.968993935874006 +4.79609849651078 4.046607051039704 3.5403993365673814 2.953269065180533 0.9520816049126865 +4.585738790247762 2.2603159096696666 2.1868619794976825 3.643891411463355 2.744180449447583 +4.973713574290955 3.817541465669341 2.0500238913374367 2.8907667348319337 1.4295392522214148 +1.9247482477190045 1.6718808029791608 2.407965631685263 3.235092652380149 0.8649167896236354 +1.1788348167321523 2.175472249852852 4.863696491775578 3.3680526359006553 1.797285930706025 +4.731934011608329 2.82797261289463 4.026895683817235 4.17805567727976 1.909952447422557 +3.0622437459746235 2.021878250542592 4.863143038636506 4.29201976347384 1.1868201883680891 +3.4739978805124077 1.3055820793484036 4.55658249339532 2.6593856915059018 2.8812120352096904 +1.6369449606926385 1.7073121172338852 2.56490722518284 3.4367566004289487 0.8746844401478341 +1.7056123538415089 4.206291680243064 4.382814914686319 2.0828505918657476 3.3975333669795837 +4.755450442574251 3.0921156707720776 3.078411290739816 1.2707155951206222 2.456510999577724 +2.4596241092995035 3.953257226288084 4.68236762891083 2.699705143404057 2.4823155358658413 +3.649640242277184 4.347073712240894 3.066791624162277 1.481389671751761 1.7320256336823359 +4.0950938753562305 1.9290850728601523 3.378475258935028 1.9899499700006045 2.5728576739689504 +1.23737787261038 1.5727445015220178 1.561132050245294 2.840767035445087 1.3228516436603277 +4.4819761269392 4.629210890718718 3.8309920948936873 1.733646420270989 2.102507301895466 +3.3120836687077966 3.9933475267737553 4.763044078654336 1.2003900190145513 3.627206141505436 +2.7195296963754436 1.4981313408070296 2.051070704184279 2.3688543772388555 1.2620619659292818 +2.9487638587261924 3.4820789726615278 1.68346318502648 3.1923926787526065 1.6004040826580155 +1.9738479532587254 1.8898424632041912 3.545924803570776 2.0684340134154398 1.4798770075087802 +1.9304682709881327 2.471463080845131 2.7611444238378424 4.149213634172817 1.4897689475123885 +1.2080051895016712 4.912884414397567 3.354850968721663 1.5321788178483549 4.128954327748654 +2.1390064816386616 4.349139660403032 3.731678075110725 1.777678068967227 2.950051642240164 +4.7445010001166725 2.1663412968761366 4.471202934057539 3.95380050188859 2.6295651222640735 +2.143102851564081 1.6569563210802816 1.020363060711222 3.69982971018685 2.723211334941448 +4.6495306989262275 3.6110856984167463 2.1051106185242117 1.860926718170138 1.0667679205315768 +4.524879762166024 4.7287310324375245 1.1366856014355822 1.5080644349895564 0.4236479415779273 +4.910356985620101 4.56130587265196 3.230231021820089 4.365236905722633 1.1874658041214043 +1.4652700531779161 1.8685127023705084 4.055015533820801 1.9203886179608998 2.172380423416077 +3.4795415988326917 3.742228511394235 2.4860874337117367 3.052405572965695 0.6242760998782364 +2.103315999265174 2.127517472690613 4.181351396155655 3.975348119881878 0.20742001145379482 +1.859221353597858 1.4465999058212908 2.031553062449564 3.7928494044196484 1.808983488980049 +2.0771051770449818 4.192825530277959 1.3679544951323797 3.55633363950078 3.0438915704392047 +4.228196262241481 3.534490771921482 1.52334443682751 4.19074523660473 2.756130318753499 +2.548221331139674 1.2813775440316468 3.8347233731559407 2.3412161826044606 1.9584322579969886 +1.5459021567419038 3.2609367249271077 3.0247270199427096 4.9760676073863745 2.5978979306884242 +4.724445250407236 4.119934971290901 3.178555646088125 1.6145401356416875 1.676775833101831 +3.866206725321205 1.6231410902439838 2.4909328668535533 3.3948044340319194 2.418331501928107 +3.4378434295671636 1.3841823556085888 4.7911063418957 3.5544403236421718 2.3972623234422477 +4.539115515032789 4.816808542708466 2.6689280270026123 2.9432975052521813 0.3903742156119241 +1.0570420888934686 3.2409007532205867 2.488625095592906 1.5384239204796537 2.3816214936347944 +2.0283873379061426 4.502044146113793 1.3001528764973873 1.4290445417162783 2.477012528461444 +2.7629633795306754 4.10032776146996 1.1712905903338933 4.043182285217923 3.168012846757997 +2.6464166237899014 4.420786729171563 3.252444296836139 1.6784168887855038 2.3719088414538043 +2.7325660356943944 2.146902572672311 2.046967850757914 4.093456378036747 2.1286420516852766 +4.195141662060818 4.876958439285245 4.627899254702623 3.4044614608997206 1.4005977841657524 +4.239803177714814 2.2064423097104138 2.4996592611803767 2.5293454555430186 2.033577559294787 +2.3332140684363987 2.6675881692404695 2.3271707799482173 3.885256792879814 1.5935614399770126 +1.481346090940678 4.1702550941090815 3.807946585901042 4.25593145165006 2.7259717656755478 +3.0741803540209625 3.5813028524587125 4.080935945402094 3.9729104772808714 0.5185004630514374 +1.0701326427227547 2.7612517390573736 4.5351306262147695 1.9252527190078172 3.1098788543148363 +4.717494376446758 1.7487341674734882 4.930834320699226 4.8517876362331 2.969812377357886 +4.971356657571515 1.8722016802703263 4.629826164514354 4.303751833721236 3.1162615491214645 +3.156286995514966 3.4211540491280927 3.480443398685986 2.497050041998545 1.0184385352424032 +3.120593975162115 3.110320779777863 2.563227674081786 1.792411770859181 0.7708843591643842 +4.433682400566618 3.592752607833454 2.353954890201664 2.227845209871771 0.8503332098531434 +1.1669001349850907 3.7293441926105824 3.8052135670290443 4.8715733440483975 2.775471621635674 +2.70863313935125 4.33565238615482 1.935453210479912 3.0551926663849214 1.9750969795378914 +1.2269001550593148 1.7679623940337685 3.6602684646273342 3.982367771935189 0.6296795297706991 +1.0870708377961096 1.4137121201683445 1.9462504529118325 3.342156991200369 1.4336141708934325 +3.3366960236781185 2.6163595210674178 2.071635677211948 1.0956472024235424 1.2130285157048923 +1.77935488473409 4.550195584214184 1.1637147492093178 3.842102236556068 3.8537407430016586 +3.8684341890919796 2.7503537456319274 4.444940717740675 3.9760028246679027 1.2124382976495578 +3.2017775091456624 2.5393079394574856 2.522204019794697 3.4072799364902346 1.1055429928669824 +4.037291705436161 4.22368415616455 4.413905475665057 2.548437555056309 1.8747567064845672 +2.996270917531512 2.0375535439327614 1.7795109284749926 1.5472301432194762 0.9864549486109366 +3.3229408102826072 1.1948111212657877 2.026449868521172 4.055007483356874 2.9400649601637614 +3.7613214922833818 1.2845792163786411 1.4448084227204299 1.9880385754374919 2.535616552256038 +3.846903348121851 1.8885384749017242 4.580565996003174 4.572541555997067 1.9583813133044072 +4.071997378285355 3.05988228098382 1.1479082439627284 2.9938653324325712 2.10521603230114 +4.96141272197097 1.355703505102949 3.7216500306843696 4.392248032221939 3.6675387709297884 +2.9328147166873357 1.2213909119126072 3.8894898907228055 4.905824319165447 1.990453995948522 +3.0649978406892346 1.245483212822586 4.538790192848646 3.558855293519516 2.066617015303973 +3.9166144507886664 3.0877203823468524 1.1796539215378643 2.8682173921057843 1.8810401300435888 +2.079259435873943 3.0679092310464986 4.221552758014147 2.097578708755175 2.3427962308788812 +1.5181144226012124 4.493396341501184 3.125239046797425 4.475585349143914 3.2673747310637533 +3.8341252591795634 3.6630894320093264 3.7258871302049332 3.0698801101054825 0.6779369178585634 +1.5343956570852257 2.3795612110476485 1.9949418573320399 1.2768022753033073 1.1090668477963859 +4.431733589466237 4.405232210230091 3.7811827243681377 3.2283998775554377 0.5534177435100641 +2.269673888207038 3.0017772042831297 2.134757022009405 3.610364978453837 1.6472383271802908 +1.079172478068526 3.5819996716904248 1.4924517457782667 1.0078173101796333 2.5493164764895857 +1.733040400825061 2.125433577936193 1.4839537949971442 3.913531307056948 2.461060603185154 +2.780716594999106 1.5853481766494646 3.3058822401647476 1.2117531486726785 2.4112822952572603 +4.575285631249875 2.9030526495755726 2.0392204627706283 3.894270768283625 2.4975137198788695 +2.7981806906823015 3.8425620883561664 2.0287828042755467 1.7695212553318904 1.076080412686654 +3.7329655117973215 1.6091310036404827 3.095281225798032 4.942501179425927 2.814763680154844 +3.4312810355983814 3.7539832622801796 1.2378332695819259 3.229002587209496 2.0171494685736193 +4.964862906667235 2.9331159358781766 1.7250980264280993 4.538042403761691 3.469964239481897 +1.1224962053883818 3.3684141052799768 3.8338025427316302 3.912318127393964 2.2472899034366574 +1.4308063223159717 2.9755237203067417 4.934432096699542 4.7771812417949295 1.5527007667363362 +2.8975302122260573 1.5727633666915435 3.212704806261131 1.1803544057301427 2.425995743105485 +4.529826927790814 4.370964207056799 3.536133243282301 1.0446549419897373 2.4965379007438866 +2.203879754234369 1.894238759715663 3.7344943055754425 4.804056924607183 1.1134818101417594 +4.8770726083052995 4.43152723338118 2.788185897046836 2.401961106700846 0.5896441891463682 +1.7999962241891319 3.9490558992550984 1.2865731292006837 3.0344976359811597 2.7701439616739068 +4.640412824785026 2.382454358422799 3.3344971014016287 2.0636833500600495 2.5910121625372033 +4.817517110259622 1.6361186677473643 2.056110030111206 2.8522822141879227 3.279510054370456 +3.9898852733508954 2.0483831411376094 1.4882154771750287 1.2681821220323743 1.9539307067457814 +2.235553091589453 3.5109966230367813 2.452150876784797 4.2137218914160925 2.174830715596036 +1.333456500575355 4.017380997650324 2.205435344572002 1.8249918533644554 2.710754130496035 +1.5049498863272408 4.373026782392358 3.7485369722535444 2.799411003015418 3.0210437248117965 +2.3338250463872634 2.782933229905659 4.379943770970847 4.619854980980051 0.5091714339898431 +1.7192102502030897 4.700275167962534 1.0859469346181867 4.426001526621622 4.47690883550909 +1.8729543843674348 2.534224060702269 1.2875260781204734 2.317930267547161 1.2243407934182562 +4.058449428394211 3.9821136624044398 4.791137796531583 3.6780811561758138 1.1156712032715181 +1.1818116445106197 1.967475320277035 1.6999182081307587 2.9872062778222013 1.5081041031005504 +1.7082723825111974 2.875051840107888 3.300285587352132 2.758572367845386 1.2864009930258884 +4.207685793226114 2.226358792092565 3.7034481992341006 3.2362415331690904 2.0356666608844494 +2.5512779236420866 2.7461636156629305 4.604484170583632 1.508570806540169 3.102041261914057 +4.055693144280404 2.40272887589103 3.520935246059226 2.697714824290273 1.8466138566006354 +4.994974990206714 2.6087587679831326 4.038481850339699 2.2059090164329627 3.0087125237842094 +2.3532365155252752 4.7558295512890165 4.4978908467219005 2.290174851850569 3.26289184765771 +4.723031002315967 2.9901489014260703 4.8045307275074975 3.6230188300487614 2.0973437342078967 +3.871592869696653 4.281064718185512 1.5066711652029139 1.00472032804936 0.6477822455301135 +4.379508664032377 3.147295797971507 4.340806145669834 1.598986910737716 3.0059809154965857 +2.766596254800252 3.653425499632429 2.9341967381554603 4.052289625004933 1.4270941850883556 +3.026420300884749 1.0885158824798737 2.435035729274329 1.13419341814806 2.33402319039239 +2.539309748897967 4.140525667445195 4.211757571126042 4.250166543883056 1.6016765175893957 +1.1743523545974508 2.900424614327973 3.069670983423854 1.4031759102756554 2.3992772400534395 +1.4905007251213345 4.92980935433291 3.4717392703604895 4.099528932093699 3.4961355388983857 +2.599648385011628 3.739674241955349 3.81446390698954 1.4797174532390698 2.59821091480285 +2.972645287081954 1.8061506560148013 2.5202984146902137 1.7736721425580328 1.3849767198572294 +2.402126694153545 4.754459925210318 2.855016184245652 2.8260299203570627 2.352511813663901 +2.408276441452509 2.827398006431668 4.984688916799449 1.729129905939609 3.282427053175939 +4.2608166553315 1.7204762733134529 2.8739053188895007 1.4806460341278171 2.8973264729895796 +3.2747734342144934 4.025688597991312 1.6454047335926942 1.6289416695313754 0.7510956102043559 +3.5647997945738914 2.072035253400249 1.935117371385985 1.08114359665367 1.7197724219546942 +2.769891116916666 2.1016358505498416 2.4068230451243533 1.515522856233328 1.1139933248202938 +4.972803838030847 1.7202379047499932 4.36065732700089 4.0783907573852245 3.2647908917205934 +4.479078976370445 3.0382515014933955 2.8709290972954595 2.3272078815496338 1.5400053807739422 +4.727390496838716 3.1105490892972654 1.7779975256429874 1.0949918825314535 1.755184561709343 +3.73228761862102 3.3639088940866224 2.07784134313733 1.2215787314473223 0.9321419124080745 +3.1713016824533073 3.0117845323751777 1.682380124606944 3.607497280894972 1.9317147270245554 +3.6440810936169754 4.233317120452215 1.9710447666658055 4.013586654542115 2.1258354731845777 +3.768980327558899 1.3566776406407306 2.529556289603733 4.707537416242403 3.2500470829369323 +4.335098318954351 4.792829526728099 4.42520672515321 2.174187696569131 2.29708609451575 +3.659057660174274 3.5554241911616664 1.66622904773129 2.984639626199101 1.3224773530444351 +2.2675449342809206 4.313153747126073 3.5028072149810017 4.683473884933485 2.3618825543888584 +4.719212984309978 1.7678394217622904 3.3613777441978105 3.3316630824307816 2.9515231435361233 +1.8678690961575004 3.0689382186921783 3.679260288733353 3.1671396346736893 1.305693149794667 +3.0921249913770503 2.5959627965421235 4.462185416565024 3.331556164939469 1.23470621129675 +1.2588212773756529 2.7647433679522013 4.644782602438564 2.8281185594817075 2.359675737862894 +1.5071936234612213 1.9104984796049935 2.772223822139457 3.8159758853871644 1.1189607573650628 +2.568362445896037 1.6977649324056503 3.01731685304549 2.5329273514375865 0.99627968952679 +4.180057535845725 2.8501168266216115 4.220806631304701 1.6825735411513691 2.8655487275565332 +4.175252026803685 2.8024855060888236 2.1033215760339616 1.7372371666413517 1.420741255540896 +4.898415091141992 4.64408604113119 3.7266203196877408 4.5950824575050255 0.9049363240038304 +1.2166023635920338 3.1773625314759903 4.488031460843402 4.890936397865502 2.0017274600297377 +3.495851457040126 1.04699072228473 1.4855103592189294 4.135346410537334 3.6081227802132028 +2.838403999710021 3.4705975457567066 4.262028899440891 1.1677884232516131 3.1581628843603253 +4.501743123719574 2.4591300045655933 3.655725840458538 3.698533327025796 2.043061632806549 +1.2944234798031835 2.904368194006575 1.6373362935636075 2.0403150487267885 1.6596125631918754 +3.632488052060246 3.83187845683789 3.7660745216067752 4.364818331624792 0.6310710606201839 +1.9076751420110685 4.531680636278755 2.29668401183116 4.475757365404532 3.410830619394711 +1.8805264785357942 2.855163731038082 4.086847948012547 4.6444559828553205 1.1228733207652712 +3.6005207110068045 2.185483844776385 2.338959725473602 3.928202273486882 2.1279147560950245 +4.998386864350573 1.1377237742394994 1.6235596823396743 2.011784759547218 3.880133787115953 +3.123342207122264 2.2379329818039184 4.357403619426021 2.5270486088629442 2.0332606721648347 +1.887013443586084 3.7824626184164565 1.5526780850320523 1.6269399055706706 1.8969033692718378 +2.908927719725919 2.352365030015757 2.075383906561926 4.616765079253707 2.601611095550152 +3.145664911088621 1.1215327223338454 4.9660074813714274 3.677745142211367 2.3993188558529166 +3.0035570333598627 4.548201163258669 1.4558015421537616 3.6449943638245865 2.6792705534316443 +2.606931126118434 3.4432344637461374 3.3664043559175925 4.038521525972783 1.072914145125431 +4.603217838562664 3.4186248737101095 1.0872832102301508 2.477433881779294 1.8264116135161588 +3.136445032214648 4.565265999736674 1.7789193235430263 3.659420663964569 2.361739750386947 +1.4119368403764034 4.611817574910728 2.0671344789881867 4.225697921780419 3.8598747197030874 +2.5917966450874177 1.6960173227795936 4.214822547221555 3.640045731224988 1.0643255998431196 +4.940471947198462 1.879018028088077 1.457350137640204 1.2660521345440654 3.0674248197510736 +1.2480507387244661 3.415625663604306 4.050811865001938 1.7941139689403638 3.129067984089924 +1.913186875461724 3.7870438046838433 4.401302731059902 2.0608431143085637 2.998181283517988 +1.8251154207286517 4.691471623099722 1.984660923692822 2.883861413126806 3.0040904445554597 +2.9195123964432144 4.757497755444651 3.776211567090775 1.6792552858997114 2.788443261952858 +3.703870671701591 3.2474668008352374 2.821873750442768 3.1508466543549942 0.5626079139598322 +3.1948906473995597 3.440470244556709 1.6563226774062851 3.259681088900921 1.6220565755393581 +2.6038159748414365 3.9759103446110564 4.465980900168585 3.4252697819285522 1.7221273446472853 +2.081088992215132 1.6288284908227957 2.4562654679914337 3.6567126315461977 1.2828144657768425 +1.782575367643712 3.3557950642125323 2.1624874198233894 2.2912298918253184 1.5784786465990785 +3.5243393618004286 4.27203948545276 3.2702567157953157 1.594209842111372 1.8352625418984156 +2.967217273022836 4.099710445569433 2.506005432794135 2.7942979604400136 1.1686117265204494 +1.7927442425923465 2.4864095314296195 3.4325039048880654 4.382553270870165 1.1763355519326477 +4.423720786979428 2.650562360042763 1.3808922670356232 1.3321958010915322 1.773826979390028 +4.375461880299728 2.064732735565841 3.978405245578456 4.6187515370265135 2.3978141198378746 +2.0256940724136596 2.6495907028249897 1.6922023116665965 1.8097721552544024 0.6348776839359476 +3.203736778811001 2.799964934604918 4.292714676894777 4.1519086146426645 0.4276190469805189 +2.9396515923451516 4.252918822880581 3.5419360811790086 3.9143031456691464 1.3650377465532586 +4.399048152981078 1.669812858027206 3.8991000336754906 4.249706038829769 2.7516631091164103 +4.580287274596657 1.6138926540695202 4.88771204116922 2.7699446677703365 3.64478198148053 +2.948951950856482 3.822999643533369 4.2285089086386 1.222646132930565 3.130362661970814 +1.5631865136900376 2.873190023086541 2.880151889017828 4.728758874067607 2.2657133489932013 +1.9332342905124955 1.5089739595830798 3.4111557771574788 4.3912086073713485 1.0679421231558168 +3.3939391871233777 1.2644166388928193 3.870923860421614 1.5446980511535617 3.1537585194696147 +3.9009315933448443 2.595699996213479 2.976931010236653 3.6058815440504155 1.4488644850829602 +4.432023347085643 1.281653254348607 2.140622168820733 1.3945816817347172 3.237500290283153 +4.5211016377510065 3.844637712435799 1.1197430788319744 4.265311747737017 3.2174843733963807 +2.757470059376896 3.5346229746659192 3.0063462036800432 3.656560715282419 1.0132845428805 +4.035709974354479 1.356399655005879 1.230198322440578 4.787405717458379 4.453361453838799 +3.0188125103072334 2.787549675449263 2.752622772660246 4.0591438878995065 1.32683078173239 +1.7246491231336258 1.9223367860798501 1.3387595375539654 1.0048996328440372 0.38799851553074577 +1.161492208888109 1.0478370250740907 3.475364968058155 2.288370422690041 1.192423394412175 +3.181061861591964 4.957489363155286 1.9772304749796001 4.936320151248072 3.451362974320313 +4.8076360361952055 4.077182734850152 1.0222985642026718 2.689284396455412 1.8200010413121328 +3.560636800648784 1.6005320517782167 2.0140302612186076 3.764650155442899 2.6280564378640765 +2.235862626429924 4.6419596194895485 4.081120122974143 3.799034704266064 2.422576092397983 +4.931970759059911 2.4000722903832665 1.7732133005491488 4.682291471004941 3.856584714162202 +1.8818593430242694 3.8693944310880033 4.7669871131776755 3.2462508351880386 2.5025855736574303 +3.501261994054322 4.983315470625175 2.6584883732057625 2.4385528414022883 1.4982837333313843 +3.848951384584634 3.8789012535831353 1.1931493151766812 1.566405023331117 0.37445536225683407 +4.56472750384704 2.734160855891881 4.63868514235684 2.2868326757964423 2.9802993603113115 +1.8829434951018653 2.640429236171072 3.8987170876399437 4.593685978704917 1.027991443286978 +4.279197656295144 1.9257436806667108 4.951002530776987 1.4976024481030503 4.179080969114337 +1.6915325800982033 3.0923496794517003 2.452099213128009 3.356967510144636 1.6676555941761224 +2.8091614412493424 1.525803440947651 4.180861400226625 4.457799003525912 1.312898394034934 +3.171090077297188 3.152136153169057 1.5208464232755823 4.152589339767015 2.631811169089205 +4.447408149015918 1.4545805388930382 4.151196290774334 3.9706811320872877 2.99826663698038 +3.38905703907233 2.157481006075938 1.9031183775549345 1.4267434694969219 1.3204970950662518 +1.4276419812972292 4.203294166672112 1.466925382103772 2.77495198582091 3.068416309793727 +4.77604524282741 2.4696527364786984 3.917368863345608 3.3351980377182144 2.3787327011568937 +4.1003601986152765 4.568389530942731 2.846852741025001 4.519861964629198 1.7372424465754923 +1.7059578152756254 4.222394170629792 1.4129570652248162 4.66795894892822 4.114303002145183 +4.670604920390964 2.300673110665608 3.7664269934551378 4.855240725008457 2.60808207784325 +4.063213031556508 2.784424078768074 1.3330706168218596 2.9840598259392297 2.0883166796239836 +4.206520477503686 1.5859588794693034 2.1684091004786494 3.8546115878510436 3.1161870799926894 +2.0825265557909813 4.9216893727724695 4.568467653931296 2.2162216431686868 3.6869915644708042 +4.572755082088157 1.6236151770924319 3.872375929388584 2.2405611666800964 3.370496343126862 +4.920042881716782 3.8918370254750676 2.7731979217102287 1.6665891338718897 1.5105595956898872 +2.1202173174551677 3.550679396496864 1.2490792318665145 1.4708606035394682 1.4475526713724198 +1.0806445102701372 3.3839039378958793 4.282691161836482 3.223446104541324 2.535153660500894 +1.4264692841103597 3.4751854061903966 3.9028321703761697 2.876636417358964 2.2913566881612333 +3.5026703571599 3.471357858562654 4.813513859393254 2.3887901246674432 2.424925908623001 +4.577316816921136 1.3004844918400291 1.7938237718995027 1.314867812611007 3.3116504793885504 +3.6809235874647124 4.183875007654791 1.280273536233722 3.4896986553555833 2.2659478123023638 +4.531586526041391 1.2275320026941694 3.515900516245806 1.8687920525494586 3.691848125862083 +1.4623757598835172 4.437017534481045 2.785212947494059 4.379035798861962 3.3747244285605373 +1.4257264540159462 4.7718899502436765 4.587688968183665 2.6887212662793383 3.8474522058581555 +4.894467113471853 3.2604879770174993 1.5433371984507582 2.3512317411534647 1.8227949447200391 +2.2328928306289018 3.9113048832541732 3.8913122044838855 3.221941741153986 1.8069653664573269 +2.862230260488577 3.409194613553041 2.031603154211005 3.7658718704529046 1.8184768306631114 +1.3805255896321968 2.645878387451138 1.830291854130044 3.13551493347623 1.817890257910571 +3.5041885247007323 3.8241896019171264 3.795685482821281 1.5881002299865323 2.230657602132858 +3.7219735099781777 2.6038941172423624 4.323132743117444 2.6816750835734315 1.9860727017247373 +3.937665626998549 1.4979491200424788 3.7053675132445907 4.427721600289624 2.5444079982158114 +1.7672551598149373 1.3780011128271457 3.3864443709203034 1.6680457630605634 1.761934303142619 +2.2262360292790495 4.4209597097193125 2.737728010056791 2.470491126064425 2.210933645691612 +3.9198829789049037 3.6652043288480445 3.8147949476384952 1.1574839962164414 2.6694873491631994 +4.563267204058945 2.64499077616349 1.2085736005946504 2.4697807332083688 2.295741249613088 +4.78750979359115 1.821309001000337 3.9117717223536683 2.029823491074961 3.512844472386932 +1.0507567198190095 1.1811412302341506 3.868155104121699 3.9470650138536025 0.1524037217724462 +1.7327695257211366 2.1381358330961153 1.8474255327761724 1.704055012556343 0.42997319593543293 +3.5939389986667507 4.0961277755905385 3.4676562860231654 4.504825079662486 1.152350933599419 +3.21412535809082 4.588815381547141 2.0074495723902706 1.0045473966165184 1.7016419819580342 +4.710693032481214 1.9769645257716952 2.774676020417577 4.3842395650145445 3.1723755062242884 +4.6934853485752654 3.5470137683035987 3.3276521103401477 1.1918826718697408 2.424027264424806 +4.09269489006981 4.633926878203478 3.687887859322506 4.841582651263606 1.2743405109825012 +2.767318875500407 3.6544947547311586 2.721142726044684 1.8520401980062489 1.2419421262408552 +1.3746618252737357 1.977942139102093 2.9194607300943183 4.930535250846475 2.0996113604834963 +2.1114696053711977 3.399524249384041 4.144567734938628 4.28286539394754 1.295457837388156 +3.1758960984603766 1.5897761377120672 3.0588851422275645 1.4420324607225798 2.264947929550275 +3.8536314954126705 3.1790259907452776 2.3194832957228426 2.725639554252466 0.7874360248746116 +2.317479871021416 1.5005114224795975 1.804262002178441 1.7211448560520597 0.8211856707791607 +4.168242712188388 4.268375901193991 2.1957016947192187 1.2931482540989045 0.9080910575024945 +2.1837965542855837 3.2565997065939367 1.7508866028067742 4.96780582489482 3.3910877141475266 +3.2616560953133034 2.219108011934305 1.847892067357614 3.8368074553485254 2.2455936691094096 +4.537849662887957 1.046317385344326 2.7960049950296337 1.7581050357247099 3.6425312587065304 +4.196648827649955 1.4287405661529164 1.0707962882459898 1.5930100926993873 2.816739853381077 +2.9953740595712035 2.6098249185328823 3.0830347648170413 4.253984579851834 1.2327901725295358 +2.1968486739017687 2.758072856498812 2.3484677243836325 3.1184637532863637 0.9528202703856039 +2.6212301049394773 3.768811850881532 4.951468368347921 1.5395708909227959 3.5997205808339277 +1.4803196952124353 2.3406062084941417 2.603867466160993 2.7468063477809506 0.8720805059242867 +1.6448840091597936 4.976232343984282 1.0775245829511872 2.5151843859855485 3.6283257071545676 +2.210966390344376 4.8908707066447565 2.4267686382215894 3.4961772163859663 2.885398040405685 +3.936287542421148 2.779122914057547 1.5480916583313413 4.819363411678216 3.4699061747230293 +2.19592541839641 2.767095137463538 2.2483517298929807 2.965569397517586 0.916862056545095 +3.446889049413174 4.867240795659335 1.0667391391112515 2.392520248600922 1.9429602758018958 +2.9321471124582046 3.841493269228909 1.40155681737859 2.0716270370424636 1.129559441602806 +2.640895051908073 2.909342737541791 1.6203451431518303 1.2303629601090011 0.4734451003157073 +4.649642461256216 4.419343507416501 4.5857326638721005 2.552983916839953 2.045752936378299 +1.4027242671535025 4.69928886510133 2.361889707011082 1.6634859072232313 3.369733819755061 +2.730237911384914 4.259864949228888 3.5821782319592215 2.677533514084734 1.777115905190638 +1.8819341814344157 3.583496757582695 2.868016821940978 4.61320062865619 2.4374129153201287 +4.802330119167417 2.916519535438653 1.1633490608041406 1.6564953432605423 1.9492241568388151 +1.5605012644081788 1.5952876939586287 2.02650862005363 3.8493606175078976 1.8231838909731188 +1.1137536073097114 1.3480562563246128 4.7553070462647735 3.054683009868586 1.716688627708549 +1.1902100393102342 1.2896769440028635 2.367504526187386 1.343231861363941 1.0290909372031483 +4.130381676410635 2.30661438896171 4.678230425977665 1.727079815090434 3.469209859162297 +4.925419890711542 2.71791914881919 4.278452160998635 4.309228602016459 2.2077152703138614 +2.611418754008505 2.8135890866403934 1.932201270716798 1.97549431987066 0.20675379440660124 +2.297590632015513 1.8741215108881408 4.638077439709754 1.9251844096275899 2.7457448332313716 +3.177312430420256 2.5123259376872813 3.81514355160789 1.4729900255387127 2.4347258932363585 +1.1761900118882669 4.3139935579141255 3.1843512000463003 1.9540316273394085 3.3703853406455058 +3.498778831585757 1.870068049059618 1.583747657433395 3.609673203340245 2.5994370795760524 +2.817196456652954 4.090704585202644 2.468163839589521 1.1995090261885504 1.797583931016181 +2.9987712057535933 2.180888697160099 4.724087396293768 2.582540642195577 2.2924123315520024 +3.5527718280400777 2.4097339795675223 1.5009606504404758 1.0175360815874628 1.2410619794399835 +3.54021464036527 3.2769435419692745 2.5640650429899616 1.9907983726674243 0.6308298871750787 +1.2352849794818974 2.11650494106388 1.9403992060194657 4.602124628782408 2.803806492408689 +1.6626233100425942 1.4696318473141403 2.458169456206403 1.918085745209798 0.5735295280715134 +1.2297220422449149 2.6050793735180813 2.1444038141419974 1.6043110485411534 1.4776021061643134 +3.0062402389872642 3.455175433507548 4.723299250245587 4.779617262551557 0.45245389531869507 +3.727476453966739 2.634250849904292 2.62714694026405 1.3757435886371967 1.6616716191355692 +2.237246499410685 1.886106941156101 1.9328296888990502 1.1858324842458954 0.8254112993719263 +4.6238110906897125 1.1549946659926138 3.5652637910128115 2.461573288695315 3.640167594102531 +4.182449707419625 4.406739204309105 1.857360208588958 1.458063725500108 0.4579775756759932 +1.7621839341014902 2.4788524869164146 1.4037494849397474 4.678431635023685 3.3521868979327807 +2.63508210358809 4.171566100893741 1.1869166906647766 3.0144794860946913 2.387628288745121 +4.259180487606968 3.690014915839336 3.5179801653990155 2.5879286798429106 1.0903876438545572 +1.6701678411226903 4.535920177904224 4.330385564423642 2.42765387458267 3.439901792100161 +1.1523062254637861 2.7157324472168662 1.5563088215693988 1.0702890434754675 1.637228382225151 +2.7414369201876574 4.340238803604737 3.4571289705537818 1.4891780388801563 2.5355469492583036 +3.521724532059781 3.056771229331418 4.022811348064172 2.6354854907264937 1.4631659537303814 +4.587467493040387 3.8357860584026837 1.54050559496278 1.6674968977197313 0.7623331097065796 +1.3198300244710222 4.545587786862386 2.05378650383376 1.6414589213306154 3.25200356348529 +1.7978102252936243 3.6916606481777796 3.415073650759084 4.2862121718253245 2.0845987017035124 +3.122049031162246 1.585344200932362 4.686681976088197 2.3251656481303637 2.8174848894826936 +3.433362009941217 4.892220476573495 3.4725973103749297 1.904731526489185 2.1416048052673826 +3.6497767880213 2.333821256038934 3.944748461792955 4.250882966024792 1.3510948511619252 +3.663560940705854 2.1610044603489698 4.797810622342475 1.3487727171440458 3.7621188774622785 +1.6533761879883957 1.2669708591049207 1.6841895117235222 3.186809392718096 1.5515075201073614 +4.352047623172803 1.615471722770065 1.0439014515477751 1.721465190294126 2.8192091583862644 +4.6244927723780656 4.016808795881009 1.357957565727268 2.006985600243508 0.8891103446025631 +1.410827922776663 2.894412721120618 2.484460664350419 2.6759477409570005 1.4958914246644401 +2.1486933791841643 2.507184856934651 3.1469269080816926 3.9841903597733466 0.9107833041719365 +1.0528877350795516 4.3248937815145325 3.5402020429612184 4.896320518250267 3.5419035682705093 +2.520942143716379 3.914015826371706 2.6065387374666837 2.109569563627137 1.479064787307722 +3.438792440646961 1.7316999396345891 4.012090012610632 2.922927466590177 2.0249542855744753 +4.194557740821924 1.8446803718045555 3.543109293411486 4.622018773004683 2.5857241373696565 +3.929732482517108 2.0954128651933472 4.2600294932374005 2.0469039850312676 2.8744830793677396 +2.3596376739536007 1.9615887055688166 1.6010096076385705 3.4821385608533713 1.922781610026267 +1.9457191568911525 2.5587418728684534 3.2811091453967163 3.2799765705208226 0.6130237622066832 +3.0045187701595437 4.061556846611822 2.2535957695839284 2.216023740178815 1.057705607654394 +2.251124816635782 2.447223980111229 4.121671008876645 3.376413820843978 0.7706251736286122 +4.739374348777371 3.95779735285729 4.085603874532749 4.6476632684037975 0.9626906890534203 +1.436106432910095 1.5063851817197458 4.583682172210034 3.690520656568872 0.8959222039645341 +1.9220429410995101 1.4716508622412814 3.2995041244882954 3.5874045774900196 0.5345462520089678 +3.8104410389121908 3.7584714033336164 1.6073745728269295 3.3478348736655716 1.7412360270272111 +2.386777612615652 4.441529371661215 1.9038467220613606 4.636367034392379 3.418869995861562 +4.060967208002977 1.1175833545053289 2.7151281066299213 1.0708286000957532 3.3715322000863606 +2.335986795323807 1.1809147708251855 1.8035811732116005 3.829761661427589 2.3322947396516 +3.2633516986194557 3.9589785755483553 2.745152184054523 1.5960728267188373 1.3432349464486275 +4.978126805348262 2.970985178243265 2.2656645525665033 3.5127704524024024 2.363025737621832 +1.0613508543426953 3.2940141628812274 4.536356763897544 4.124247396641072 2.2703787304929444 +2.121442977789645 2.5285104228145197 1.7175039098621157 4.814723652684107 3.1238556368893553 +4.7637454219584985 3.9704551523220837 2.2012663501409966 1.3790359201436555 1.1425289195085733 +4.822313168584307 2.7361913704506304 4.848764800246473 1.8626863063648074 3.6426046900907427 +1.8163110753655851 3.8763928071431817 1.4834134653177338 4.9073092852198315 3.9958727866571078 +3.467490632537074 4.32497989073076 2.02274154090128 3.2253097230549628 1.4769759851283877 +3.0812190226104605 1.4194352224821616 3.6892030636432733 1.0666728496391862 3.104704514399587 +4.446358031636679 3.693430467772271 2.7395736791068916 4.303748314384247 1.7359557039486464 +4.498843475463099 2.9064498533536005 3.773597745049152 4.792302560162882 1.8903642368789426 +3.60892343860125 3.510127563931353 2.1532327259460082 4.982944144039769 2.8314355607256885 +3.309410815219845 1.9162727809485913 3.5176103995369488 4.854315216203644 1.9307028123025867 +2.365480089766217 3.2107834227600964 3.203694869621419 3.4690513414259256 0.8859750458670366 +4.453634894680493 2.694902067130662 2.048991032393092 2.7131968145134873 1.87997619125977 +1.503963893380917 2.67145642723206 2.339068204452285 3.8274917278888627 1.89167740424141 +1.9596154467670535 4.156914342560228 4.466337127122477 1.1332213173626577 3.992215354752892 +2.335970975537017 2.4565741535496364 1.260039630426292 2.0853159406255415 0.8340420341462602 +4.555520598343744 3.8052426362949707 4.310150868720698 3.457819582136137 1.135511181110496 +4.117632194683269 2.705123844393596 1.6745868171613956 2.3346245456852834 1.559111812126708 +2.303718569684773 3.442594608610428 1.938525832135285 4.168920467942776 2.504336012494693 +4.278692762866817 4.775691895355948 2.540235631149084 1.0691803423363386 1.5527433144080507 +4.2084236894495675 1.5920004012477404 2.802284063898326 1.8184835550956508 2.7952699805502266 +4.30539224865179 1.7503770769929017 4.9151081202580755 1.0764832761590464 4.611197590771988 +3.69081054229961 4.440370379789524 3.4497385734029415 4.486051285809859 1.2789777120317964 +4.206343318821064 3.473790962193007 4.93373362640449 1.3000190412390658 3.7068200174334405 +4.2547904704663395 1.423488754796419 3.51008194143375 1.4045791411810438 3.528372350961194 +4.677354154613484 4.588642859892639 4.7799284333612455 4.422209936200691 0.3685542253479865 +3.874542433169373 3.289348778122281 4.030879999567805 3.091587853934751 1.1066712920986617 +2.0739752508783456 1.204092698608985 2.6188163448354422 3.551102873128976 1.2750897323640664 +3.62060506989743 3.0152104950196374 4.395708673036534 3.5924663248652386 1.005833416221195 +4.182407315497585 3.915048313372065 3.455944743512188 4.278780447058295 0.8651817329600586 +4.993457213461943 4.3854161969632965 3.1327364037664585 1.6681544245325486 1.5857850584620299 +1.4345884969136882 3.70449887503364 1.8562185472321455 2.9058708259428827 2.5008524608419633 +3.464650416263199 4.1454557770465 1.6802761708867355 2.1335064751095234 0.8178714128377161 +3.7306150429093217 2.332302208784908 3.4811201083999586 4.869293663690383 1.9703564656388215 +1.0166296467154003 4.385062224224553 3.6835918900210274 1.608571021322542 3.9562671338977062 +1.112039016146654 3.4066541276923297 1.1771321139085527 2.3351935725821282 2.5702849749004377 +2.986971213763178 4.668031537684033 3.0356745839746027 4.396864133962744 2.163053583168436 +1.5794099756324713 2.3991670324522247 2.5079215534426154 2.912915444329216 0.9143422137587502 +1.6149464508713591 4.299659709564943 1.4992710161519645 1.828832248366841 2.704865225327153 +3.153010188917036 2.509974787986899 1.3406157889046892 4.536253888680955 3.259692837000297 +4.394173919058361 2.4082561911705906 1.62552337285085 2.9873651393189964 2.408003782977927 +1.8290228190790567 3.148420404969383 4.240271049123113 2.8538201786259623 1.9139111802681772 +4.496177151969745 4.992081502904089 2.0859435751458104 4.855193939853953 2.81330210032833 +3.0470346781588664 1.5388129199014333 2.895617302473997 1.537010419626852 2.029912691275361 +2.6347440750641025 4.014120927199132 4.63077444191218 2.832597913722871 2.2663008023510254 +4.83725531898677 4.714982192409208 4.252542510796497 3.4896029411464426 0.7726755492578126 +4.944622916576476 1.1716097230279883 2.018574097656871 3.7543231067506175 4.153125712190865 +3.115834530097928 1.130231537079124 4.264059740259176 1.1718846986897842 3.674801454989086 +3.3922567827471712 3.860082344250878 4.536513777596644 3.767433118653748 0.9001920994744941 +1.5209328402025672 3.6099328388042684 1.3089833676620422 4.559722625983509 3.864094553676231 +2.237137217884301 3.6597767736470455 2.8603906193488267 3.2767288687918836 1.4823092941657379 +1.572705528857099 1.6513704404059593 3.6003547732015218 1.7726743089427912 1.8293725830847032 +2.6213018756102375 2.7801099420691573 4.677756246119248 4.576575334992122 0.1883018288518092 +3.2284799139037244 1.9719477904804856 4.1358483747057395 3.810543631654391 1.2979584558244601 +1.0114961497728312 4.068646702849681 1.5157104887171458 3.3485255591346452 3.5644607707937523 +1.687645664848206 4.378980431889823 1.7665239994191473 3.4473302355047255 3.173073026507761 +4.33286490964238 1.572680553526261 4.355964961310543 4.0127394101875815 2.7814423342380863 +1.0429946230888545 1.1939410103854384 4.3093711693404275 2.1255992718360055 2.1889825289773226 +3.5820017344524304 3.5073474606964443 2.213492944204777 3.223471567828312 1.0127339634704287 +4.159865224654754 2.1793739158921825 3.424690201248374 3.7916431360019733 2.0141996624983243 +4.952803750897018 3.056659680868979 2.28038390522068 3.47602640755994 2.241634075334907 +4.489994402625702 1.9901194870146588 4.797456434241359 3.818210214999945 2.684827322492067 +1.4522032348450336 2.098125186131126 1.300952959784666 2.224231545408739 1.1267912467823054 +2.8395503039258805 1.2566525680311136 3.3239545293607433 2.8859786573138932 1.6423727064207985 +3.8981838107160107 1.8536424855414597 3.9599311749889603 4.540588458029413 2.1253969301507967 +3.498863698487069 1.8139594811319846 4.648419602585303 4.958984060203848 1.7132870465852625 +2.6237324997494453 4.779605713003978 2.6914011386616177 3.6856930003621287 2.3741115428455104 +2.3264655681583726 1.5177714555126038 3.6152134070011988 3.875536917296959 0.8495613561365855 +4.071963610643724 1.6827254816761066 2.5691057743274985 1.5942692483905927 2.580458309915783 +2.679598584986025 3.1540234428978495 3.9642306850594324 1.78130214567252 2.2338880799795082 +4.361207005870003 1.5857725043461488 3.2333854410996987 2.94530507350983 2.7903453138347736 +3.926421712761413 1.6681738702283226 3.7761643301579273 2.0946778287025243 2.815507089829839 +2.352876440615573 3.7227997216229234 4.5399958963220834 3.994023930827994 1.4747118982877376 +2.4988660830324125 1.2980427694876826 3.727874730686985 1.877408832734588 2.2059466606963363 +1.3802912768619926 3.5733705622731122 3.639910226864868 1.8937145184958775 2.8033544556523045 +4.1597801192762045 2.0060497061442626 3.0760502043185625 3.758689258661054 2.2593252910909256 +2.8018549573569485 2.434911426458792 1.7878191184662877 1.0081041865799873 0.8617441208818685 +1.0833177806025795 1.5537593178120876 1.4145243532162546 1.0581297808202401 0.5901968579765424 +2.725194233825869 2.4371365211391276 2.8650837845784896 1.601694394358201 1.2958124853386426 +3.271655071368256 2.484980058837231 1.2093617026542298 3.161046014860148 2.104264534190361 +4.578958395195576 3.830983083989387 1.642876317854245 3.0458029471971857 1.589864834976087 +4.6537898406673595 4.801302980596679 1.3955428084883503 2.5256321011986502 1.1396762417240578 +1.4280537117005827 1.168394167419494 3.336287270925049 1.3152377075224866 2.0376615068911597 +4.77097720084733 4.316963331404753 1.3278127831849411 4.693485254499116 3.396156618562855 +2.4718366629499813 4.113449487348461 1.1642504883208966 2.6629486848211084 2.2228335406463846 +2.187124548343159 2.406706738046716 2.36940879578935 2.412540455316146 0.22377818948356934 +3.6013420355722627 3.222812427593607 4.423787416322654 1.9975877357539602 2.4555507639037124 +2.7349012113852185 4.330838153782545 4.102979193179913 4.605457097928321 1.6731702749179107 +1.1697079433682305 2.315376703069968 4.35020825456606 1.9537177630817197 2.6562612037846303 +2.8033633923124643 3.685542760694866 2.442471827805444 1.364177452750932 1.393183116921022 +1.5016856322912226 2.59304035594902 4.592036378559184 4.962429355150734 1.1524955921644713 +2.0106670034351977 1.5544514043701518 2.565249288767601 2.4485636355996365 0.4709014912755248 +4.9656243266858375 1.5178090723355013 2.7277202223463473 2.2452525247949415 3.4814084947491337 +3.017953477461721 4.624461069908305 3.9680370842871895 3.575133932197453 1.6538559585134884 +3.049659206638196 3.23975161618284 3.0695386602642736 2.0248626525005533 1.0618300642586993 +2.9833746917996304 3.457863286439198 4.474033316979045 3.583306511422414 1.0092242905222566 +3.0646101452418324 3.6846768373978294 1.821994739865692 4.3006645517336555 2.555051220423349 +2.182313290032931 1.384418276292875 4.372412758098867 2.039516875835286 2.4655708569079122 +1.6764966469510085 4.627008683978552 1.0552005694042932 3.675360640731103 3.9459802432373805 +4.733280648602901 4.449638004369943 4.37784037750023 4.597400967792057 0.35869207189002617 +1.0065208082390429 1.3637763531925056 2.7665489031182307 1.408391367875475 1.404358720176819 +3.0937709217026526 4.610960257957283 3.3881606183248496 4.934860624883884 2.1665974227655864 +4.9217915813157145 3.269172453676499 3.0369326213832606 4.74441140253923 2.3762646673165166 +3.6737077340467805 4.85894787159309 1.1679337534466852 3.1843207083613505 2.3389336321496663 +2.5932460043595897 2.8477396777986383 3.24247351203524 1.0978830105721826 2.159637805000197 +4.983081610372569 4.539291918304794 1.514165570137025 4.600614077656675 3.1181907703596146 +4.310582237365796 1.2879834748551096 1.8043661359760161 2.882974373462297 3.209283254732183 +3.501552172747691 3.795185434848484 4.496009407015514 4.73897726197165 0.38112185866719717 +4.5110967404220546 3.8802197977623387 1.131550549960433 4.269953555653482 3.20118402203354 +3.8543004500768423 3.98957352222923 1.5435421060457846 1.7897591890938371 0.28092998422068927 +1.0253011624100616 2.5627486274968416 1.9182986504951591 2.1004623697739646 1.5482016433666685 +3.547902550123119 2.5816794970689765 1.1002339191232111 1.6845351183273505 1.1291567117298928 +4.102454389234252 2.7028537184367396 2.075050056519003 3.7433252432124386 2.1776189143727294 +2.938853992091585 4.8650667959145 2.3976960857315484 4.221885180284875 2.652915682470633 +3.0138585168250343 3.333457825173568 4.34715330289546 3.7336737361004775 0.6917375924234715 +3.7934562812073307 1.3510955796821928 1.4570481411439542 2.289499661008508 2.580329693911065 +2.4200089344849625 4.169698315510899 2.768909912910439 3.734005398028737 1.9982047506375933 +1.1208167407989018 1.9928138607341483 4.302058014166999 1.1098742136279096 3.309141337809485 +4.104710466572071 4.918741867503687 4.933721404766214 4.5421283103368735 0.9033229064445542 +1.2625366273539789 4.006953337831866 2.14935932742463 3.2502652919569988 2.956994593078116 +2.461336752110946 4.041294314047551 1.9989860241795134 3.0787232220323615 1.9136609715275539 +3.7825545306417667 3.34995195932626 2.617525058982222 3.2966972169219506 0.8052451830525258 +4.003729358672652 3.62373702324035 1.9942832706257274 1.0063540726378153 1.0584886750571945 +1.6096685825936992 1.8392107991116946 4.404303970902422 1.5819934818187273 2.8316295884094442 +4.948451341730017 3.182071877932689 1.9491228956120183 1.7636203756727702 1.7760933520028581 +1.298549349125257 3.9036945254569817 2.5682017174726592 2.6796978670242115 2.6075300153841514 +4.342238295123458 1.9617525027419678 1.2286933481799078 1.2533066310038876 2.380613034791985 +4.76809837405181 4.262442810671583 1.4717830830064451 1.06031739548941 0.6519137679028116 +4.788016484756195 3.136553831727381 4.298199077371091 3.639955738871603 1.777811347423545 +1.2530942852451323 1.5307646567189814 2.109293697534436 4.957533021586818 2.861742141121872 +1.9193370982961349 4.620213978046465 4.629711241611239 1.2478956807998305 4.32798017635433 +1.5311509758146467 1.770852728484619 3.258256094372109 4.57032846343086 1.3337881510496707 +2.9710371678149703 4.196303853088744 4.349797592928348 2.4415074433968904 2.2677852069454403 +3.736679121600266 4.8454813811866755 1.3713302763854718 4.098133228624181 2.9436196750262535 +3.830251919288281 4.414981815851518 1.708886405545722 1.1984288094115816 0.7761932809461177 +1.0619552211652303 4.483570900938542 1.711291134604025 2.136974507186109 3.447993647581654 +2.967890039800681 1.0986192376025983 4.066686217016727 1.3887197176829083 3.2658349473763204 +3.2661822616682605 4.0987274126201 3.108801182617124 2.7355515119799327 0.9123851955200681 +4.488570633384006 2.624549371600563 2.016551729537003 2.391389679987205 1.9013360443326286 +1.1583570835742028 4.027065103343187 1.2140512476004477 4.025414714598524 4.016621745479443 +1.1402100419761885 1.0730899146715633 3.1208787692799813 4.65836927314848 1.53895489244331 +4.6100656200184185 2.2747498729425053 4.909341897911196 4.400153449111482 2.390182527534621 +2.7849081817897656 3.169871823185542 2.6737812055669568 2.565522416156734 0.3998961998834984 +2.408334136939382 1.5088815887604037 1.4277332827245028 4.530905591001639 3.2308966652128803 +2.3933986670346106 4.883223736210747 1.6280150081401032 3.3388390773973464 3.0209514843916083 +3.2068277508629515 3.1280020742124424 2.6565444684652775 4.929233874862191 2.2740559855131455 +1.6033715662937653 2.2410198117348363 2.7527746553531736 1.792416400688281 1.1527719905588767 +1.8495152505193944 2.1566874319378955 3.1173657910831847 2.4254826497504314 0.7570053040090797 +3.1628068570386785 3.6293527336895646 2.3903441230019378 3.6792514923735666 1.370746972216403 +4.137155746508084 4.248540703027018 3.5107673439654756 1.2669401517816996 2.24659009988962 +4.421669015697438 3.6253296853442674 2.470835319196884 3.214920645590849 1.0898712318536299 +4.718218022481127 4.289682120437623 4.095400003061875 1.5748469913370844 2.556722609955009 +2.653787523694819 2.6382075700458225 1.4834339784231072 4.310270357968975 2.8268793132498065 +3.97344960028863 2.374809793396716 1.7244529827141144 3.0965923209329453 2.1067547545139247 +3.0757802465632706 4.51484327166057 1.5553049085358812 3.5581221385253334 2.466207462267685 +3.8969057731920964 1.7281952527360422 4.592859374771336 3.059679921412742 2.6559263087927962 +2.6298099688544228 4.751738306642335 4.667585614617389 3.3094794696197876 2.519331691498287 +4.903448460490762 1.9218071161906454 3.729868038791573 4.2935163791485955 3.034449630102143 +2.837551828106448 3.5978332720169544 2.3223980249137917 1.7911082308477009 0.9275218160417759 +2.0973770561622027 3.111029314151901 1.771638363949601 1.8276763748873357 1.0152000585093914 +1.410981101729528 3.57836775505204 2.8908818198726425 3.233280537216783 2.1942656599964083 +3.175180663460774 2.4123069813578866 4.670272217898296 2.3185362413674446 2.4723750439920584 +2.0887931639076553 4.791642544855058 3.372055161529218 3.308922343018872 2.7035866046533115 +1.9595680123493602 4.21452010636656 2.193699644601826 1.6387930339584624 2.3222252889950754 +2.871942606353267 4.4398466977782975 2.890814335983482 4.300208979265949 2.1082496295317266 +2.3356911424137548 4.75797990679485 4.315120953469319 1.7859506525173985 3.502025880724487 +3.3553145245028806 3.6242245268091557 4.605777987345778 1.2542889525258163 3.362259856087688 +2.7371682329553915 3.4024691516972703 3.8293769172406664 3.416954184370554 0.7827629418073139 +1.397568189718751 1.5562749663596778 3.2983401202108555 3.092396331366783 0.26000131752590216 +3.7643621645240213 4.817407400153048 2.2469356599370625 1.9467309290274368 1.0950009811600685 +4.279817825756213 4.989749912051029 3.7830543802521355 2.783938786450585 1.2256571857286744 +1.8404734739715618 4.088989779201455 4.031700162857468 2.7893199150188175 2.5689169420408122 +3.597154537313813 2.7024101594055145 3.152763748511256 3.6086532651877326 1.0041925877111522 +2.5495814063640783 2.582523553608583 3.0291101432760232 4.18349517067522 1.1548549590959567 +2.51328956773707 3.1542251443094433 1.236043191611501 4.839912454119615 3.660419658258727 +1.330575629191236 2.923665111539299 2.2279199821680127 1.619893144487282 1.7051776253833641 +2.1962066918053456 3.4603127051906446 1.677075442097704 2.5824932757145422 1.554910115250487 +1.2806851729205082 2.2979079757779592 1.1811301445345301 3.9992747191462126 2.9961109916133664 +1.8816923242933021 1.0696879212870916 2.509286665253342 3.222360899715428 1.080659990170434 +2.28655995486929 4.754261389703558 2.6782395172501543 3.413489015500291 2.574906249974974 +1.1199597367947156 3.559074463130623 1.7032924797148392 2.367535324214952 2.527943671187768 +1.068722655913744 1.9842748571311737 3.423163074824806 2.6028494850174915 1.2292885010349053 +4.456826159638891 3.342073922777416 1.539228070758662 3.498034458913577 2.2537956907990053 +2.713395828452042 2.194359518619121 4.364175535441925 3.876402128188609 0.7122651105792596 +4.522507601146389 2.2486905463062605 3.339886821886749 4.498154045456863 2.5518281603741766 +4.523758710358058 2.2394096558032093 1.136878753386275 1.881142834627631 2.4025360820748705 +2.9620441111365894 2.8472489654593116 3.7291254845421165 1.42011081167136 2.3118664937672144 +2.402253689133206 2.957126542478687 1.424862160740655 3.5648273856630817 2.21073178998653 +4.45932659662774 2.9199954199039637 3.874164612588859 2.380020883760706 2.1452286484266203 +2.966341561128164 2.949442811767217 2.5501520657676293 2.2528676352736325 0.29776433692452847 +3.3279988792761372 4.120344819740532 3.916590283881298 2.1368624088412314 1.948138444404051 +1.4897377490241612 4.165122082178209 4.347286630587252 1.9541070689260884 3.589566790636281 +4.1284670084108415 1.1641129379747759 1.7469445222925426 3.64065070528055 3.5176011943365437 +1.5488391472151704 3.618352313854715 2.420611645662343 3.4593879019494844 2.3155865040028982 +3.22115198140887 4.779852761554409 3.794624976099373 1.0168523592827015 3.185210955770881 +1.8629796392085334 3.981860513152861 3.5132439681534424 1.8213835317638227 2.7114660046158705 +1.2118750339168924 4.974572199148692 3.407292770484944 4.277493099928457 3.8620122437153177 +1.580700046238832 2.23378011442589 4.105168036700464 3.0295275664079937 1.2583783202178185 +2.1701021864567 4.106416783772135 2.796356855468136 4.768775216235203 2.7640094807485514 +3.199847826627144 2.9654082421163532 2.577942386835404 4.626880620519091 2.0623069132009473 +2.171364558363335 2.6297248135886084 3.503830421246294 1.1121824316303996 2.435174373592973 +4.394707898532186 3.9318397600237147 1.1135071679809116 3.9709531468334016 2.894692459607162 +2.032256739117898 2.582276284501402 4.401810027216353 4.583999770027305 0.5794088389810751 +4.649318668733381 4.3852892063591895 2.7006900016235513 2.9676297219431262 0.37545754924611296 +2.559720029563523 4.380701027884724 4.463088631967785 3.6194042934339117 2.0069317525352517 +2.8120927907455746 2.137235772590324 1.1976760120161285 2.5153837671602903 1.4804680756167836 +2.1828598304961755 3.4082684158872785 1.9665000135872859 4.47772129680617 2.794254557917321 +1.802896548122353 1.9072466570987165 1.2485375025963696 3.9891217212022942 2.7425701093163006 +4.050376300945659 2.445437232150528 3.1340695661332423 3.670524920173026 1.692221546199826 +3.5550299690716605 4.98170273925354 3.8978510138081783 2.4261499819518457 2.0497070815961558 +1.2860080383665395 3.197002808808375 1.6228201049133602 2.2479896245390747 2.010656097129763 +2.7222639725217244 4.828068638792436 3.9425428936651157 3.324606215507493 2.1945976922205994 +4.975725778057095 4.103276398432719 2.1862563457667523 1.8754651748776112 0.9261528339910221 +4.49302382870301 4.085578750663006 4.3972208524058605 4.351853414577306 0.4099630422783895 +3.6079999771948374 4.37054048806808 2.2288512660820032 1.341921851416008 1.1696631212971498 +4.586030352494976 2.4681798831078994 1.3065689576092567 4.427094960106005 3.771335723976506 +1.452042414754788 4.3315839973168195 2.7318960809002064 4.076404070228228 3.17796498707439 +4.803710638704491 2.3588758315215235 2.4187587357578852 4.836625603714758 3.438502206713986 +4.618327714580278 1.4212051331226556 1.9821491967251448 4.6648456363085185 4.173542019414632 +4.3753864518149435 2.840529237782614 2.6637135031950767 2.0990835555292264 1.6354184923952109 +4.099396835845937 2.3575176196958485 1.0358703200171409 3.143652528678677 2.7343900677858217 +4.1105247979692825 3.87091694186879 2.0588348285473868 2.171035800778551 0.26457698855851547 +3.3626238033264935 3.252862835595855 2.9411702503842476 1.0866183198192263 1.8577971722444875 +3.2817234841250653 2.1266168446331597 1.476321562120055 4.488206194969989 3.2257898862442778 +1.0336769914666268 1.4752504244353073 3.989380715981233 4.096673579932666 0.45442145125274014 +2.8529595520879463 3.364289563902545 1.5606986343646692 4.253930766862319 2.74134231727819 +1.7346333925885231 1.1049359152904974 2.986767090452923 4.0588354677152765 1.2433219689370223 +3.087983008276192 1.681254847581986 2.241500690663923 2.0621630275628045 1.4181135763741475 +3.1964872517336023 3.267719537199693 4.018026275724392 3.470259140220425 0.5523792838538966 +1.8821929576331744 1.667396860262437 4.181468793665916 3.641560621585596 0.5810664314214095 +4.564628333601553 1.8598851390774835 1.990473123267717 1.4516473774396763 2.757892117667298 +3.70924972535298 3.0061805423316477 4.321875559383702 3.1702200722632066 1.3493022778936639 +2.100154638920713 2.3012525297073814 2.2882498726052027 2.12533667369011 0.2588070170215549 +2.801870894325266 3.304800203595864 2.3758361952806535 2.2877894625001125 0.5105782185686427 +4.296771761807881 2.6017239131927554 2.142344326919769 3.686211080162708 2.292752005966555 +4.671778530835388 2.638982744850944 3.887625980487593 2.062800820861166 2.7317111067464155 +4.060759403032482 3.89946144659408 2.143151146799873 3.1953683746277823 1.0645083960632038 +4.583463509966899 4.76744342879139 4.887863156970076 1.2847585827344314 3.607798661706123 +4.747689164874068 3.67919836932159 1.0235974564751924 2.8974591581358045 2.1570883749004746 +4.647811488254046 1.2110310065419427 2.9798766951799327 2.1300481072860435 3.5402921783772308 +1.0244766949404815 2.630037482681679 2.3177847540238985 2.2989556284151518 1.6056711927114231 +4.427829437845873 3.225226652372098 2.50109916455353 3.7334194604341775 1.7218788491844166 +3.5813695313464726 1.3924756795248427 3.4072145681319874 1.37563277808979 2.9863993142534695 +4.236866239620264 2.7119606081885794 4.095069791110251 1.1889377643149213 3.2819111112182173 +4.983424642111821 2.2704237592584398 1.0235295510649842 4.969763810758332 4.788855669441368 +4.424749487053052 2.770089356764842 3.1361801327362633 2.0416931931509934 1.98388553290963 +1.9217193162329793 3.466449069720835 3.347661114019237 1.3208155207609233 2.548390290010794 +2.5197042137658037 1.3123376510581557 1.5830354027460225 1.6574476552551651 1.2096574722077176 +3.7365208973146844 2.4044068050698013 2.5986831971633935 4.438502174921315 2.271444876213291 +4.601079015698845 3.1541098504485965 1.7570127386324943 4.972893063169163 3.5264154643103347 +4.961023088837075 2.0689459449313796 3.7777907309231966 3.0682641449585337 2.9778411949753796 +4.283737717382822 4.396038050199881 1.4006552360554472 1.4547034422220646 0.1246297450075676 +2.479128142215324 3.306215490898839 4.105288659739724 4.753356733113025 1.0507453117088401 +1.539144078017617 1.280385534299445 3.045540536303344 3.8312068035364866 0.8271804322003811 +2.914403608375683 2.716004816639215 4.465698050653467 4.574285818929006 0.22617113870154298 +2.239400835016972 4.433310969875663 1.2782631589956317 2.8408223652975346 2.6934797109008475 +3.795494929046455 2.2658025202065373 2.1037423675872273 1.4183905366659548 1.6762058339624075 +4.426618130820107 4.61625127666433 3.494821453545945 3.8203902016208606 0.3767701417652996 +1.2329638081188237 4.877796213008413 2.063273088727233 4.188679728530294 4.21926020106039 +1.6325599594606532 1.7477954655845713 3.313543474015096 1.5280211414034937 1.7892370502888693 +3.78585667985992 3.11277973343553 3.3762063612520583 2.755955862659866 0.9152831566306923 +1.9214708739665305 4.596455522318203 3.8273153257621026 3.293834654652175 2.7276628265540843 +3.171548461204009 3.8616738081234723 2.916086100368569 2.9524938908531033 0.6910850321549987 +3.006197381766395 4.623951320050924 4.926831192257474 4.614015727625875 1.647720036822939 +3.769712847492288 2.88703166124166 1.7947062711984452 1.247963911088564 1.0382934483561663 +3.84957502184172 3.763406057943169 4.308907306410107 2.350562703294162 1.960239443255006 +2.383883172341453 4.8309855958534715 3.225312491671066 4.52074915059719 2.7688384583518184 +4.845325775698719 2.261068699641189 3.8339262985057028 4.26527574838624 2.6200089662185624 +3.0987515266031354 4.2771060261151055 1.3225894710089379 3.4616538543636635 2.4421539187071803 +4.606760715653525 3.202611808337729 2.378756960172056 1.6171927590056172 1.5973772836792257 +3.0014226399141983 1.9362667699923621 2.0425866636572083 2.1713219147335585 1.0729071684440525 +1.8473160093822782 1.071397218916268 2.250774356887745 4.263981258583684 2.1575569513768107 +3.5770224857901276 4.549851233965761 4.622340846623657 1.156097709619122 3.6001718373027707 +4.963421879948173 2.17482728232361 2.586794605819823 3.2098727513881258 2.857356506525872 +3.0549762202874304 4.469674970296875 4.316067435667712 1.5679680434480399 3.090861178182614 +4.2608834011466685 2.683868853912779 3.143708029888943 4.50086905265347 2.0805914841454496 +1.8345670396838285 1.2915747001517879 2.483213866481396 2.8658649252582182 0.6642759318035705 +4.754358606642461 1.0475261919559924 3.375611591561929 2.3071335942495654 3.857752166911575 +2.912223843143922 2.788610403463322 2.7066529270075628 4.067140677500964 1.3660919448237239 +1.786480686852269 4.992708377935173 4.817528161997417 3.4378466480925867 3.4904751949953083 +2.9299435729311507 1.8704668290559185 3.921131327706545 2.172473022835622 2.0445774228447586 +4.421097581028999 2.6204675831989146 1.6222048243703941 4.920703144157825 3.7579727985612235 +2.898176669762946 3.2509731965140687 2.5776457175645637 3.3798693378160127 0.8763721390921763 +4.28103154381464 1.7807451268790535 3.192293114124517 3.880232970504803 2.5932013829838056 +2.1150924397361486 4.9988141966396284 2.418160331469719 3.4405446235573054 3.0595948770949932 +4.479821181012971 2.469259124427098 4.090979356901721 3.218042307250815 2.191889339368218 +1.7551918177969865 1.951396319987694 2.5777749938851455 1.2907374680944748 1.301906985722588 +3.281232807281681 1.4130237771985832 4.238967858045687 3.2737629610336216 2.1028137038977324 +3.557391918163615 4.1868658690544045 2.6313059000304104 2.839089788361272 0.6628812858272227 +1.6106991735231353 2.311895759717579 2.344690530885454 3.588802816743694 1.4281078503790097 +2.887565229570951 3.3618965802670333 1.896144253381241 3.7583123485243983 1.9216295805441446 +1.628302676515741 3.9837050263667257 2.921416700050725 2.8596268359158157 2.3562126850081575 +2.7509567039212284 1.3733987897410413 1.6452496843848845 2.9367500920097562 1.8882899962176565 +2.0813663405182052 3.512677813897196 2.7646288912661787 1.8160269549540304 1.717119147701025 +2.166507165699897 3.035631593315983 4.274970872454543 4.320191754579728 0.8703000625411724 +2.9148397045556815 4.889521235901943 4.04656937051643 4.96968091969001 2.179794045880863 +2.82596726816483 4.745548244458629 3.9993228670845613 1.5452758474836084 3.1156280103634604 +2.181991523781412 4.031657859298557 3.573341899950445 4.341193362096135 2.002713514376107 +2.166891013595697 2.5254169888185474 4.534761450937479 3.971420467524183 0.6677529022793949 +2.3002926848555334 2.1631940524658684 4.067985792371786 3.144671375852116 0.9334374894743492 +4.680409911739032 3.272080484281034 2.1785990129160715 2.9435847536389983 1.6026836742643813 +3.831159678288343 3.3774422789567837 1.1884959925355965 2.129903820653712 1.0450397969925649 +3.89093873112684 2.3941996997306 4.51852193126005 4.120090423521784 1.5488626131660428 +1.5215566610347535 2.688147825532567 1.9265223353670997 4.607765834038197 2.92403858460356 +4.6865765444919605 4.877450031287142 3.253925438802911 4.998760219557777 1.7552438862144577 +3.8608596625712543 4.899023107382527 1.99043189387675 4.995058617550521 3.1789251464539063 +1.3187407061070444 2.0071660953893673 2.8347217394697 4.565130299873389 1.8623220190200418 +3.074189508926951 3.595984573540253 2.040449525891696 1.6491112885899866 0.652238994103549 +1.6036825104038939 1.7844575467208728 3.640386005485927 2.816005387642948 0.8439686112827758 +2.155782600664415 1.2042660794287596 2.132069626095033 2.939548458944139 1.2479606386756585 +1.0649103389868992 1.534280997343123 4.30662575637426 4.903626363502966 0.7594198705839871 +4.453229317231701 2.529154236426256 4.746758071157771 4.391446593105403 1.9566070538082594 +2.680992225186353 4.631865232336162 3.950413383404692 4.198716810259029 1.966611319456223 +1.7608154666699565 1.3982743796893242 3.3028722248747684 1.024298603693937 2.3072350957130974 +2.209314265750195 4.134441698042863 3.1148205827901214 2.3381171930166045 2.075905534038443 +4.550603128460882 1.3465965063400591 1.6756028428384209 1.9795467420721953 3.2183909533298647 +3.3923464497797817 2.270468633632042 3.7279594929897795 3.2709588296871295 1.2113874031966336 +2.782859806772726 2.679399961158359 4.5779416900546686 1.5763399974476027 3.0033842013162673 +1.5933874003176833 4.611178609359946 4.649047210098926 2.952743609858143 3.461865058832104 +4.590658973309711 4.2339581059101565 4.732254868098772 4.693999714926058 0.35874638053625385 +3.1857429159934267 3.8808681363582505 3.285495172640637 3.232611976360637 0.6971339214498414 +3.7670705704351044 4.957594952460997 2.0753892824274653 4.709651988054567 2.8907937156524937 +1.3756863757039075 4.821984646500196 2.426391028877154 1.6770287837295395 3.5268279722359814 +4.772669914838261 3.76362773640117 2.913663677473924 4.098139580556198 1.5560042682613822 +4.42616948581947 2.8562307579193096 3.0851131363960596 3.521296346200264 1.6294058432066185 +4.678153646524143 1.2932001105838813 1.0454628316690595 2.07452101589441 3.5379190475469695 +4.626209085801893 4.612974624956314 2.005704384064084 4.47942099646821 2.4737520145394565 +2.5428000018280383 1.0060436258289274 1.2619596423254786 2.9627550288692883 2.2922314686921625 +1.8393676422328422 1.3475324644750515 1.5079855771572714 1.580441831430861 0.49714359179556633 +1.378819474212166 1.7499379155986503 4.196349954118736 2.910520715054517 1.3383145107072556 +3.336496816834779 4.684420653179535 2.8485390240295345 3.5551509846380958 1.521906413502959 +3.5168622411841794 2.4829181855877005 2.8689603844171354 2.396845425976457 1.1366322378354128 +1.9889214304230634 3.5943791964243172 3.726770000055428 3.9808596910317893 1.6254403124920336 +3.603918890995687 1.9279850956194529 2.3414087374228503 3.621461996942027 2.1088599843730402 +1.0323100357018586 3.1409807498859625 4.222940237161817 4.08230184067228 2.1133554692537757 +1.2656808520436056 2.5073066715508805 4.094286247536569 2.6586274483079606 1.898091373846276 +4.757151307998476 4.877773282878183 3.760836190913811 4.706480051882731 0.9533058127443087 +4.325370181552422 2.1731458107282577 3.476799292263021 1.8558265165754606 2.694368661094785 +3.988494453012001 1.1766353530202056 2.9148872236277703 2.1713748960401054 2.9084982687774628 +3.3843543271652523 3.6643241941762907 3.104366493132356 4.694924690490428 1.6150103732227659 +2.584928565542998 3.8344968489861313 1.9636207165331712 2.5264959193986276 1.3704923892484218 +2.2822657408699634 1.927854369095709 1.4799456768200856 3.923270301995675 2.4688950249924244 +2.289713059189564 1.0316956694316226 4.832187496764863 2.748898188289332 2.4336602260261886 +1.6608892372517947 4.73962689844108 3.0019808750947465 3.789231330452245 3.1777962278733134 +1.8607585874666541 3.565361424501062 1.1373109586511525 1.3036028370554429 1.7126949001059644 +1.688574420680348 4.752365108106549 4.220812754500174 1.1659263945481033 4.326562613505174 +1.0230865049974711 4.840060736701176 3.049900415931999 1.825245988090439 4.008624546290414 +4.879813351598309 4.643206411164893 1.4875658412962105 3.9118466534400467 2.4357997250164143 +4.928322802398792 2.289249216404956 1.380346468183418 1.1423976922216603 2.6497790497081195 +2.9776939632594646 1.9756104341310747 2.3760060405160237 2.294202259009697 1.005416957296396 +2.568472064043148 2.2926807190924423 3.7866552474486737 2.3528559965133327 1.4600825859972661 +3.5052631819916016 4.783079865158285 2.2892338549707283 4.999512458778424 2.9964021068669835 +4.24996751883104 4.0976122583172305 3.8999741367182574 3.1925928909164245 0.723602344052577 +2.5627080759647787 3.6864261786793233 3.624865853258319 2.2520538597952062 1.7740786746265063 +2.2571429084485244 1.2146677778019952 1.9218920674878262 2.2967842739642292 1.1078350800066066 +2.1275291417171194 2.012352247079173 3.840355573483525 4.485341431665608 0.6551888844549479 +2.54631496271758 2.701637564200853 4.321242058731743 1.868141065413706 2.4580133429152635 +1.0152045557092073 4.383317680142145 1.8776399689732934 4.331528183744458 4.167223702847044 +1.3082328301242292 2.455726086569456 2.3092409683148714 4.371336951005466 2.3598687708039954 +2.29708864554813 3.9268532002633885 2.7968807926769585 4.854809352637075 2.625109990401496 +3.796943146353663 3.1323871075783654 4.170150458710513 2.8655000513239157 1.4641541633881072 +1.5230581484364518 1.0292228775380043 3.536855210827266 4.138228212707787 0.7781534309981113 +4.4870313265670605 4.0197789115066325 2.299575434204424 1.211162238508884 1.18446954538476 +1.5119297834096166 2.9743259480528135 1.3700884844284071 4.33625290415994 3.3070733144646844 +2.8525262567049197 1.5751633942773977 4.6900533040790044 1.5747146112121952 3.3670448547030243 +1.7605795036601903 1.8948691819485743 2.2439567129897284 3.1874997805813803 0.9530515401042392 +3.592528050726245 3.8718349098979963 1.6283681747039442 3.2101876150253195 1.6062892215784232 +3.3627081806067394 1.0622395790396615 3.155095308883462 3.1040820017718094 2.3010341467041413 +4.740286298114558 4.535341549620482 3.4589737397938274 1.6184572814979439 1.8518917849575667 +3.706827580120345 4.298656078482254 2.7435230262749863 4.233614635823736 1.603319673777159 +3.4987396153057166 4.735442018249657 2.5575457210244434 2.565552224150878 1.2367283200200556 +1.7237811931436196 4.972228452468847 3.240711106600861 2.446288807939367 3.3441764883492904 +3.029312559715435 3.2783000512310623 3.194862989433614 4.633430244034456 1.4599556558132338 +2.7926262190693696 3.0862460184692266 2.672106056003711 3.5355990621462277 0.9120486600267843 +2.6674909665581326 3.5745287321660366 1.4175492782067822 3.0121034078531395 1.834480956731694 +3.2418088370273974 4.277156773432529 4.66625116895881 1.3052103103560553 3.5168936581329144 +2.282493351725539 1.1517173036923545 4.10608605198615 1.7525594500341724 2.6110806071244084 +1.9180391747715673 1.4141854043623159 3.0925258078041087 1.6313332438578114 1.5456236058263255 +2.9931333139214997 2.6935427039725535 2.1469509476139423 4.138114938854535 2.0135760660036537 +4.548761032204802 2.2955750623040414 1.2599053206714443 4.024886123501622 3.5667864885604024 +3.2141361806074724 4.972183954771465 1.3439323751137429 2.780552905202955 2.2703767360763667 +2.4179359570989245 2.8470087076310175 2.7419563010374737 1.1033056281343847 1.6938947585534712 +1.4730559164121537 3.0155760869065436 3.9495927637054997 2.6410371577095804 2.0227916972257396 +1.2535441287425928 2.8990581679457854 4.964664143180061 1.8377582593131283 3.5334482958968634 +2.2632220063509187 2.017736960123687 3.1051273153980565 4.506989500975493 1.423193765891747 +4.04039653119807 1.1124809439221668 4.931267864296048 1.3024099863259022 4.662756607921883 +4.937406439206942 1.433495508419599 1.844610681184828 2.276993516304727 3.530488171202015 +1.6576548995668445 2.0950110946264435 2.74228119426731 2.8398163875606866 0.4480999389508844 +2.9505258406596524 2.651735939649005 3.2493709986961914 4.403057541931388 1.1917499926527921 +1.9798678527084728 3.8709728154351044 3.6896385690909703 3.0271232798437815 2.003797516850338 +4.326668501501185 4.6920081144055485 3.9043296273281705 2.2414802197549495 1.7025102598879462 +2.5435094439271113 1.8135673056722443 2.00197415812289 3.698112510382343 1.8465375260756278 +3.558750511447111 2.4904641200550994 3.7787670343978608 2.887665953990296 1.3911495065365533 +2.9344402579704227 2.889032597716809 1.1390305836420915 4.225044598116227 3.0863480609193252 +4.727587539279002 3.458428630650209 4.335419984186602 2.0583021353399213 2.6069196445015264 +1.3106001265607534 4.132542668757496 2.5658192105023203 2.2041565391019446 2.845023655322443 +1.4560066298072458 3.043780672678961 2.15810047387002 1.3815028275539287 1.7675209519213297 +2.3526300629429864 3.869302699313771 3.5259443703934643 3.437299856011308 1.5192609176326346 +4.190552333103767 2.9263417933463214 4.462102653601231 3.7890245752895 1.432222883610517 +2.196994029439749 4.902864947083234 3.6237842645779836 3.213212179588484 2.736842498194118 +2.297313824661754 4.71636917417888 2.771324466553969 3.6377150234190854 2.56952551671558 +1.1827348338572379 1.2495203952311118 4.493293914429243 2.897550690859845 1.597140177559777 +4.5377953950786925 3.8099858675861578 1.991417767814291 3.218572607485844 1.4267500512837632 +3.2489986528119226 3.9222859727066206 2.5782030268432363 4.0828897331497656 1.6484531838261518 +4.322761578416721 4.848015611446222 3.381762168659631 3.2320245305232604 0.5461805191403434 +4.352288004174979 1.277752814342492 2.956283866017109 1.112547976963202 3.5849865637270786 +2.2328018451032197 1.5188094031431052 2.2245312940099145 2.1725976068151955 0.7158787013466781 +2.0006964117279336 4.052272305079525 1.6179485640154603 3.335578776566868 2.6756713537448453 +1.4035171027882862 3.6012856364407506 2.3310634787874704 2.288541140049066 2.198179855426914 +2.7275691017004675 3.537881115610148 4.540869363517089 4.066352915131094 0.9390268471535953 +1.092025565663548 3.952261546581066 3.3649941063888833 3.55708208232098 2.8666788548829265 +3.229580238606209 3.333876227207762 4.205012225536198 4.233826955604389 0.10820324351551586 +4.0817606005798 1.7071952879978953 1.5342873675928121 1.6703920932580023 2.3784627220256356 +4.266099604340836 4.471590363264699 1.309511718402248 3.5230305916791154 2.2230367190750577 +4.139268035568312 4.963632448891538 2.0854047790850307 4.144020171330796 2.2175378281203977 +1.7030504343577442 2.599161642203758 3.8508639582860082 1.2601512905818995 2.7413149077458763 +2.214443407525162 3.385093253256704 4.810670075049577 2.5484255146747343 2.5471889431796866 +2.187239198810552 4.144608725441781 3.812871908877641 2.9224791846013374 2.1503708208652617 +4.245073513103807 4.119871353153122 3.1553036616160712 2.731269565206885 0.4421317629099633 +2.037287142539876 2.384073024527421 2.400820115840582 3.8757392267825397 1.5151392120091456 +3.4788126331236726 1.2720784819910058 4.878776820451107 2.946440659576395 2.9331891606916924 +2.323603810213253 3.9372344840718116 3.2722035765519415 1.7659211566481634 2.2074171966641036 +2.6099028697757314 1.7229698804040416 3.8665051135772406 3.262763539291828 1.0729184573659034 +1.4974745517644519 2.0023372808882463 2.2053979971940727 1.1345550666479594 1.1838880678336587 +2.301249312475781 1.9872156439268576 2.690139293730784 2.60614848635794 0.3250716854871205 +1.5540375014842778 1.3415284705743913 4.4878825483155484 1.421508934248847 3.0737285549089632 +2.9353861102407683 1.2917394143421155 1.504261563230902 1.774536847435753 1.6657200215494115 +2.4401200454323946 1.439417667318379 1.8605346783012942 4.0713989224624445 2.426793348365967 +2.203996159960672 4.217957370682374 3.598033621880492 3.025483569732368 2.093765345139336 +1.4123649658780675 4.821934818912316 1.6402036470325205 4.672697996000062 4.563024058586593 +2.858320587163337 4.9471071742230865 2.305962152242323 2.5458279966277475 2.10251397845138 +3.521126010967164 2.7101886425438493 1.9242187766406493 1.1230403612271602 1.1399588890963568 +2.4514835633884697 4.012810423001392 2.422599676201841 2.274443257476011 1.5683404882098828 +3.5429246832083106 3.37480407340308 2.0434960105334703 1.4999574349445122 0.568945272055719 +2.347508240550177 1.1098813755588295 4.876141444197971 3.6305672534007165 1.755897298172233 +4.052703067636498 3.764566659957936 3.0094190160889718 4.217277253611218 1.241750422339471 +2.036765987722035 2.7314015992877967 1.9244109601088821 4.77311612515833 2.932173212863582 +3.9515398335933094 1.4434871925435315 2.459847673560469 1.2543150181093026 2.7827391242507633 +4.040579314285758 3.2739927667698803 4.76848676013279 1.5422836665878248 3.3160279455444 +4.635692920279601 2.823733782556827 1.7015066080178998 4.836106019052922 3.6206227895816716 +2.659294535557486 2.703411578236171 2.3902384483790615 4.131946121953947 1.7422663211014415 +4.493851621512329 3.2291522081773194 2.542954021238734 2.566012272546666 1.2649095971820663 +1.0596512958284827 4.819851333112629 4.524011655440343 4.33135254200047 3.765132382052872 +4.776084673350232 4.84693254339789 3.4114249686305045 2.266856737289891 1.1467588486183438 +4.612279782483228 3.5956252976597183 4.015886625652582 2.319944811566763 1.977322679351161 +3.2215257966906043 1.0562724489830013 1.8997037404580301 1.5610427096991213 2.1915778228284912 +2.830919304733615 1.4505666783204934 1.7969228531749328 1.05467990175979 1.5672581064301645 +3.554724148679134 4.198795389024842 1.5106587456322318 3.5219620284519038 2.1119111387844063 +2.4223938282557764 4.322743670546954 4.484952510885993 2.860701429965014 2.499904217558959 +4.856562258290673 2.879566665466435 2.4765174896759996 3.291682896071945 2.138458840808288 +2.4336775483862456 3.3529932987352606 1.1694773568974597 2.483098390023924 1.6033532572430853 +2.7310261184504148 3.9881481160964896 3.9483063333856117 3.2379954074329715 1.4439173551465314 +1.2367526769642336 1.9728095157376853 3.8878920033745548 4.68063972563545 1.0817710575972184 +3.094389144129386 1.2317799535434997 4.321758464448013 4.582993378244566 1.8808393543950803 +3.6209227792292373 4.28474935410024 2.059927923462853 2.9721458660993694 1.1281876157683022 +1.864582743046598 1.6746284324939662 3.131044827424042 2.7093148681476062 0.4625351863899975 +1.503726503164212 4.6160138592523055 2.936063627063164 2.635283496951506 3.1267876924306517 +1.2721211418873621 1.373944268678422 1.2696488692011871 2.814022710430014 1.5477268850224801 +4.326256697712179 4.27719323025525 4.065824847878204 3.4149040147682936 0.6527673052592303 +2.3542699508825504 4.691784904084596 4.709765632542089 3.9834647359243203 2.447751856065262 +1.195001634366915 2.5785650838690715 4.288778359486928 2.4432866429168336 2.306531485743722 +1.708091234613688 2.4918755005267212 3.397609420783703 2.6154748354283943 1.1072724529679916 +4.606811806797651 1.0908298538413583 4.506640615734604 2.7409102245874015 3.934454588343243 +1.2285349654618893 3.5982990268833275 3.9362808691780686 3.7886688886247915 2.374356966340043 +2.503316857105687 4.745803611397193 4.474154792559624 2.4321811927995856 3.032886912710367 +2.9529546320142184 2.3576494672194843 3.8137774177431827 4.473722021360523 0.8887716911979889 +4.2221074654146085 3.1017367490755596 2.4775112355722713 2.0070599031445795 1.2151357941452732 +3.274733880909774 3.755173877728312 2.74882328476132 1.3360693458111568 1.4922118758950413 +4.259833036787211 1.7405450398083842 4.103555972742095 1.9618396826938915 3.3066237582736004 +1.86639446620464 1.2868235179755594 3.045067728207805 2.9518499215539475 0.5870196278733033 +1.704889973263564 2.7332968557978146 2.5941735127537915 2.761117458451757 1.041868992267752 +4.423863326656235 2.3240538100753514 3.241385021371999 1.6748576037683747 2.619772538986453 +2.19842448321449 2.629437207957815 1.1746537517040787 3.0150610048761637 1.8902039113331355 +1.1860888038429032 3.9238754310369903 3.2949288478744836 2.1850143640640027 2.9542149172690637 +4.650019862470703 3.8610637440032805 1.3053270900946177 1.4225051530296424 0.7976104658919582 +3.797685470174235 1.5517546083322706 2.345874194538612 2.1728498113955075 2.2525858193055024 +4.597587011892841 2.9218225262298207 3.3740469238018997 2.377074645733543 1.949907775933584 +4.635823548242877 4.843420443661607 4.472330694861535 4.004995009353255 0.5113698406603472 +4.5407725688521055 1.228659446614473 1.457151984682174 2.161027392225002 3.386079432594915 +4.327968534613591 4.790243433145388 1.1146091249063055 1.2360972801607444 0.4779722310759382 +3.2304342036680698 4.018139190799767 1.6128963586332965 3.5149031387586356 2.0586667866352015 +1.6135804787022545 3.2113549700922235 1.0498066945011106 2.8763719805617654 2.4267723563569605 +1.6807839181617665 2.8675305671689495 2.7877199186353865 1.6034950793141136 1.676530965713211 +2.5842400739309457 3.8571715790079137 2.6394715040864063 2.7415539038031014 1.2770181803519611 +1.6893816297092021 4.683598222699158 2.9692252537668633 4.880967568523484 3.5524768378931593 +2.623364907571433 4.894015690985574 1.218217894131835 1.2314413366471721 2.2706892873423277 +4.0965049731326255 4.030559151482779 3.1884155861408385 4.583061801472949 1.3962044683115913 +2.048189012620287 3.5871510919077902 3.4573428319992727 3.420855244961119 1.5393945645911522 +4.929981341765327 3.833056164593714 3.5062048841572624 2.3633056906308694 1.584128596697962 +4.525108318180262 4.439854857149415 4.0534940174039935 4.066761005321318 0.08627957803638471 +2.066034942174673 1.8193367608421052 2.5723958454332165 4.928343959759102 2.3688291432833424 +2.2309634888514474 1.05363164613614 4.3655250307062445 1.1951083777514442 3.3819597900040947 +1.541812114228442 1.655560828611796 2.158858460254142 4.410497970430063 2.254510867973168 +4.687005849197233 3.7369153502952264 3.045624872130831 4.19203461079751 1.4889349364608468 +2.1192300628464076 3.160870399085524 1.65058431936537 1.3752022559069093 1.0774274318741746 +3.068401400164621 1.3734621497786463 2.522097234380367 3.3990847992968876 1.9083831511300813 +2.7537296820604946 2.1118232844417197 3.748385370994215 4.305628692228137 0.850037612322963 +1.274840976231781 1.8552092932800153 1.3433044271749766 1.2135959462757664 0.594686197460964 +2.6249517258141353 4.705807612629437 1.100741502928591 3.489542219403392 3.168016743125645 +2.9834487353970385 2.199679743287117 3.49485598956 4.872699153563168 1.5851642241683555 +3.960923273990839 2.2782547771532236 2.717457172583198 2.9031706464795537 1.692885927827511 +1.84660750744816 4.429548067723612 3.5222189091254634 3.91953675999753 2.61332038076805 +2.3658695795330815 1.0700966082888255 2.3365022893759475 3.88354875373369 2.0180139632542087 +2.129354621481614 2.1517921718140185 4.158174480002874 2.5324161267786582 1.6259131793374553 +4.132223960154962 4.001939329990431 4.786271300129833 1.5932872890348553 3.195640934142208 +2.783112648562756 3.601911052849035 3.9054502168991503 2.513540437874394 1.6148819337049078 +1.179794184674313 1.3681491327607862 1.0684341722149737 3.57725548616858 2.515881947114482 +3.274036798144239 4.104390715951393 3.8084899919592705 3.4805600993377728 0.892762926701393 +2.032898037666908 2.8761466897325683 4.072284018258703 2.876661226698464 1.4630728447035204 +4.163602998344832 2.920886434228612 3.2289395671989514 3.9809383893672443 1.4525311312572005 +1.8813382591230128 4.652938292966634 3.733193713865674 1.1557732734260666 3.7848200583908693 +4.883411795321317 4.713577282780488 2.5925688167102834 3.306534520337505 0.7338874488679412 +4.5486654432557865 3.6627259928206506 4.076806871767044 3.818762064613453 0.9227544810708017 +1.3639009025390685 2.9648881908338653 2.5355581305726687 1.904359253453502 1.7209219388914836 +1.853777413029313 1.662950602913611 2.341461301147956 4.230228436462882 1.8983825122731948 +1.1453874039665108 2.6592259296249217 3.208359112275833 4.262331165510305 1.8446040688361607 +2.716984222630292 3.1449853858310854 4.044061731738634 4.667110513418681 0.7558933655312915 +2.755814246524692 2.122925575251953 3.300445271004792 1.9514674981881783 1.490063455621486 +4.705603608149744 1.9505494603869624 2.368327172503147 1.8008498307667313 2.812890664510289 +3.883812401994002 3.3081822484560237 2.4037816172076125 2.702300090939993 0.6484314557620307 +3.7968975467085806 1.0821904563011517 2.1385838102045005 3.7896547650006336 3.17736838979678 +4.197379085301202 4.353187448111661 1.5352682362855918 3.1642327867879687 1.6363990200177603 +4.138654522654196 1.9842500216850456 2.3806399051714053 4.544938325098373 3.0537921350829538 +2.315067554634348 4.10673859147456 4.598078035899818 4.613163228500369 1.791734541523346 +3.200204957753018 4.062803519442274 2.196697766043844 1.2752252798722012 1.262215441753 +3.0260965317145554 1.059047908098349 2.207511035715725 3.754230517030372 2.5023232088498606 +2.2451055890936917 1.9448242378245864 3.786107733451557 2.453414948373198 1.3661035646391941 +4.084643499006592 1.4774512719919493 1.5687145777398857 3.364582433927982 3.1658478588673846 +2.777723688384958 2.6754670679101475 3.526346852691197 2.578716118288548 0.9531319033667027 +4.488022765753481 4.821424703917657 1.8199194363061446 4.359887758175886 2.561756414742319 +4.823114964594173 2.274627055240706 4.813409519394932 4.629518972612438 2.5551137660223215 +4.325912038413815 2.2887750498966333 1.6125912634915318 4.871990133796702 3.8436451586653355 +2.321209865198397 2.2610844739694542 1.896542319739888 3.189427694665894 1.2942826798532043 +4.386049542406878 2.7528974932659867 3.3672280928237184 2.7934743859173263 1.7310051795999686 +1.054800143235512 3.740351923842916 3.9858774868189144 1.814026463984388 3.453856573702935 +3.011338104543373 4.130013648164594 3.3125794565990345 2.063590634535862 1.6767253947903888 +2.6341037675119456 1.0190389692825201 2.914751012207006 3.974406593377053 1.9316584204213447 +2.467152214495562 4.783543727541217 2.2952267146612626 4.8334629865445375 3.4363226003409295 +1.4554936784318993 3.6097972561478247 3.9291966944342476 4.863789141127246 2.348294476077317 +2.3616725413902984 4.69296842338075 4.464002233394313 2.902005589558251 2.806202773275794 +4.473350944783123 1.9024920463674366 1.7144531341223677 4.692824633192411 3.934464672866673 +4.436578388617957 3.8781868086858324 3.2824972674685537 4.908229564013309 1.718955106036158 +1.143025653115596 1.2608767408966326 2.1758742237476176 3.42415336988921 1.253830014628441 +2.8151746476691124 4.577132299114279 4.5959708922650275 3.0369007064745994 2.352699430379233 +2.955560980506574 3.206801542240798 2.2436964156541666 3.602972490170195 1.3822999915402707 +1.2051637706790186 1.5032080690196463 2.762113543416365 2.4043775615952363 0.4656237069382143 +1.2291357688240576 2.3863965804817133 3.6111715122895425 3.200566620824666 1.2279450163152335 +3.0361940778937977 2.6191259280091064 2.139896061832702 1.8185776346877658 0.5264896706214994 +4.667108335610935 4.637752882567394 4.662752339899871 4.465614824247832 0.19931117053705108 +3.1123568294544897 1.9041661817722089 3.6112250787828306 4.954800714101841 1.8069089985303113 +1.732255819534104 1.6300170582378422 4.470834871536916 4.364479683990178 0.1475269135767979 +2.1722108842743983 3.357947369017639 1.4526630838365477 4.056677842123905 2.8612696259929127 +2.491490492767233 3.5815887746190143 1.760376383170545 3.7352595065725067 2.2557654167031846 +4.826859846279042 4.752330800530525 4.975281213564889 3.0467573799809884 1.929963407777808 +3.2566743637849216 2.8972783875707298 1.646959842709831 4.833229480547697 3.206474648695417 +4.769200092632799 1.6483592189559344 4.686738165522222 4.5878726963083665 3.1224064661435498 +4.978105120891961 1.689822778889103 3.1695341535663157 4.994431969600567 3.7607250364383695 +4.201338880513243 4.5185411298513225 1.8601823945451534 1.0317413592746805 0.8870917742292228 +2.3015833761240776 2.945238536461232 1.0769187285362034 3.238845960519788 2.2557086074714645 +2.4763657068833007 4.636468138874722 1.7395586937166039 1.6850439252681069 2.160790220422669 +3.614212706696072 2.2916283923604697 3.8648592603341867 3.6248875773853153 1.344178439472933 +1.6691753408434522 1.2785849930057998 1.576895404795398 4.164705575078157 2.6171209940013895 +3.079998542796364 4.421587192824077 1.6064777689861223 2.9959429525550734 1.9314433986616022 +3.25010311989326 2.403709391365282 1.2091783805933884 4.41073349351481 3.3115460867644266 +4.611486523984488 4.530972636730517 2.2888218866264523 4.320041554977193 2.0328147547515583 +4.744706889886515 3.13364624052103 4.311373937412906 4.6928284998263 1.6556038170769996 +3.887946185236813 1.4026621174186582 4.5372702840704076 4.930893047552482 2.516262263294909 +1.449211802082473 1.7107044987737545 3.1815809989093116 4.571026666674441 1.4138379306321374 +1.5997875086524567 4.997641431723088 1.0709662569831169 4.361393673463647 4.729939097457092 +4.856680840780733 3.073691680193764 1.4240716801990452 2.216185762220222 1.9510241069004952 +3.575751986188386 1.9179707909059718 3.6530692844203863 4.010778840856743 1.695934732882691 +1.147414412209085 1.8755888932937985 3.6476292781777504 1.6178888942463905 2.156405365664076 +2.476421834413002 1.1438673273500557 4.759725303277477 1.2075590626189006 3.793888047316138 +2.858737401235549 1.2017916741874943 2.584529794255741 3.4041189916859156 1.8485658210967344 +4.309028892969767 4.048463101491665 1.871601772770819 1.896284994622755 0.2617322928673529 +1.3262458591729072 1.8232090497037183 2.892580615859369 1.5213190406053343 1.4585371851655824 +1.2905977033970015 4.7757631111653875 1.843190997196376 2.3510236565094753 3.521969893308345 +2.5427367495602593 1.1702597555195977 4.214624184065736 2.231732707176811 2.411545502015177 +4.624439343512227 3.7383444675035773 3.3770611751997865 2.7014583680866546 1.114272535005655 +4.062187240365697 2.839626094839275 4.45813644899574 3.6667233570091615 1.4563620555063335 +1.1055484459980622 4.592590459442808 2.788331449746208 3.67032431036762 3.596856045175554 +2.6975610609858256 1.2397099512261525 2.3581782183814073 4.679578586795962 2.7412095010602058 +4.741572003079657 3.1660453508103954 3.9052106035181833 3.1725537546048934 1.7375472051919447 +3.7574754627576543 1.389699981312615 2.3408424928405744 4.194919923142422 3.0073183815630475 +4.115802744026735 4.672398102285687 2.084154092836121 4.827958022087458 2.799688981835391 +2.023027321413044 1.9969654822843061 3.617007731234123 2.3112879609531323 1.3059798382675805 +3.3751434477631768 2.390048079936231 3.2641557961269863 3.9293201002692815 1.188636376365459 +4.8664755317130695 4.033960699233429 1.6644140553608482 3.436721654163723 1.9580998879201787 +4.912333313917644 2.066408743015506 1.9775916179271982 3.620366380971345 3.2860303689039867 +1.6083788879155332 4.2901734112152 2.535186059582308 3.6937072786706504 2.921334161008977 +4.953049633286785 4.353003198495769 4.829595828124853 4.388626860924543 0.7446538484014684 +4.205130337145809 4.256625780209214 1.030841149569389 4.36424601575735 3.333802601022123 +3.329992270869471 2.9554902092935262 2.965977513766251 2.430659076347334 0.6533128068278347 +1.2765073000996945 2.556071673519788 3.0366645566440207 3.2669151733259953 1.3001155072563308 +2.8041948089737168 3.1771059616329507 2.8486714814236134 4.408656415428469 1.603937568018086 +3.594459325727967 3.924580287476397 2.971849661211323 3.3816829214601367 0.5262538841584736 +4.2562598828734055 1.9509294082422688 1.0701307097250332 2.921310530408508 2.9565884606702917 +1.3991646427860234 1.6584966813403499 1.8543423688161713 4.551583831207109 2.7096797989174934 +4.306350020813762 3.1345335692839105 3.750591113884105 1.0972399276938058 2.900590683521803 +2.440160243138637 3.768238854740671 4.8987216389834405 2.345548807511021 2.8779305596146125 +2.8501592907015842 4.24994075201523 2.2957904266103357 1.1360943706607047 1.8177687096059543 +4.163203752020208 2.8310763518342523 2.8231802829877437 3.366887446286637 1.4388123191537954 +4.193748832625488 1.7831632368138406 3.374661761927728 4.2340491197522 2.559193143458133 +4.581262593157199 4.546635850688057 3.4604854230641093 3.4751390787991037 0.03759974628137779 +1.803780402498635 3.706748848316038 2.168966346786306 2.204921357344784 1.9033080855607591 +1.0720252356407753 3.9200240595850406 2.2045158536585783 4.768918745487699 3.832396051142089 +2.2119172231878776 4.0932837235156825 3.617157840933504 1.8455567647490252 2.584203993823571 +1.667760678219464 3.278763898866112 3.1596554161103643 1.9854802551651178 1.9934940896613331 +4.458145006214082 2.617459626584764 1.0428901407888826 3.8921477923036383 3.392107284785743 +2.3310530305295702 1.949575581711446 3.6727414885173606 2.3726408400661816 1.3549120783504591 +3.5839506639371885 2.147924704420451 4.040414729413264 4.142741970973534 1.439667121515005 +1.135835850842715 4.877756597612876 1.1205704823121159 3.6586922394087456 4.521507815868092 +1.4302359896252432 4.8411829178440735 2.9897437699504117 4.97086246851657 3.944539294383305 +3.318750580658558 1.0142290403291074 4.302805250433107 4.8627920180904285 2.3715827436110506 +4.519183670524301 1.6867881393541007 3.0345326724801622 2.8598485809653655 2.837777118947376 +4.610108766174012 1.6876978122392288 3.202117073452174 2.44093423130246 3.0199147509261124 +3.3451813885693062 1.8003870112411087 1.22295382611378 3.4092992288214488 2.677031170562975 +4.242888657027213 1.0357080612263712 2.7559440852506762 1.4327269407392844 3.4694251664519764 +3.742006270316976 3.9108753717833915 4.8994009480847165 1.359869040674187 3.543557943227018 +2.380343872843615 2.80795808978979 3.987755812179046 1.7726333524765234 2.256018933877339 +2.1451233639516767 2.5561768456552203 3.1536519256381643 3.348411165568564 0.45485835856766726 +4.7439203645238095 1.9808167045025664 1.894019846259273 1.478099684851268 2.794231811551871 +4.940419979449633 4.682524884657475 4.883524833257634 3.7386634734376574 1.1735490672003033 +2.858501858663973 4.5594948091119 4.275028582198109 3.681869685182512 1.80144788838931 +3.0853250855353673 1.0832240757556826 1.7371572630337697 1.472949070380766 2.0194589429908696 +3.286444293865676 3.388651463236719 2.3698769243102906 3.92470823066615 1.55818699028554 +1.3253478356679622 4.718102385531822 4.225379902235709 2.1420404291792696 3.9813423358984092 +4.593048400959676 3.3103227547508025 2.469186806947141 2.335706435864832 1.2896519270354472 +3.0945959099840046 2.3481124708237364 1.5515081427309934 1.5750078640418383 0.7468532398284345 +3.2377678124244107 1.182320063603688 4.538711108256187 1.3169191700518885 3.821623835650284 +4.251023994029709 4.862085175759415 3.5780112917751663 4.729578855037201 1.3036501143229209 +4.626002798513527 1.4728555636557 4.3407272738200575 1.2467407720194088 4.417588704034835 +3.8027046263154607 2.4496811366464075 4.8267396524734405 4.476010100622968 1.3977423876156347 +2.2330743170156113 1.4098793089561323 4.949505627623348 3.906062353424482 1.3290688047519947 +3.36999837567536 2.5420727761297734 3.812973168334388 4.550778352185166 1.1089712745152593 +1.1944089379156289 1.6579955376462028 3.8726746657858753 4.651978632164468 0.9067674494947214 +4.885601621288685 4.278394718844012 2.4086717469378036 1.1678000367094983 1.3814712532736153 +1.4826942542738508 1.1949057610046756 1.2926713044432856 2.283318869692731 1.0316030318842595 +4.181083607385503 3.1351989051055105 4.655968674290346 1.6057130651231728 3.2245827779294345 +3.687223581327636 3.398149669639914 3.513171887497877 2.1915506847999207 1.352865968911641 +4.100483381986354 4.964563758679018 4.817682471799918 4.440067310273442 0.9429889223103329 +1.0795568728629732 1.925907043423638 1.5689211497779145 1.9528188599501077 0.9293471165735222 +1.3807270213667944 2.0548602863549967 2.7257931913612508 3.946984326525412 1.3949062504581398 +1.3244853996599182 2.516353496719286 1.7070665270343226 3.975941033130256 2.5628775010132623 +1.221717680257346 2.897712877320396 4.802509150542937 2.8494554508042813 2.5735925580093797 +4.94876618900755 3.334196694694782 2.3719774304865715 2.266713414051911 1.6179972698126976 +1.580589221249424 2.692872059820846 2.514210835598105 1.1428908259816124 1.765698638430431 +2.779112794906044 2.762643336816398 3.312373403478179 3.2657131259010423 0.04948155770933286 +2.214421835749691 1.1291974451784617 2.5369708871987995 4.4468222849625105 2.196643880885269 +1.3134957641127478 3.162547696124519 2.372304289000926 3.4848121770462623 2.157931150022993 +3.9237606848602824 4.779877666466364 4.2872579490384535 1.627082813069467 2.794542545788474 +1.0869485225248754 2.6721226354580065 3.244588727836074 1.6747453078564694 2.2309606297661553 +2.0033219058722547 3.630549592954579 1.5924889068137174 2.617730823449245 1.923276093865304 +4.450150601589451 3.346271937436676 3.324937546151371 1.6216903406117469 2.0296795678998825 +2.8608785497189992 4.83309238609432 4.214149555374946 1.1924180592046403 3.6083914215807984 +1.6394121936349717 1.8349261129790544 4.726660395939225 1.2479354449389959 3.4842148293939674 +4.797610408254354 2.6225062049627104 4.963928813391085 1.8641035749904948 3.7868185596622204 +1.8618914578659038 1.7393006982919097 3.8633842448671705 1.57767614127313 2.288993234845484 +2.3411061885449946 3.9569506384405337 4.596848481059421 4.978544279557077 1.6603147198194024 +2.9816085391343154 4.923475437594085 1.512848069651536 2.547955590853287 2.2005214454265607 +1.4288112738801222 4.942209844504006 1.2248394773416957 4.78635663825209 5.002836595724588 +1.712830642710609 2.204797475988486 1.9567318832056841 2.430403116674785 0.6829317699899471 +3.0617261630293044 4.7959082985209065 3.9379250820760596 1.937184021168564 2.647707021530038 +4.879041766908464 1.3486749844108066 2.278042162317446 1.4644159627783435 3.622910047398266 +4.864209908028107 2.998483878034807 1.845584017312087 3.985163980450444 2.838791298714594 +1.859279861319778 3.3525589645230425 4.745767610397014 1.4352924249995338 3.6316839665912597 +3.860496417744076 4.008763343042294 4.595880848177162 4.199676945429376 0.42303736677740916 +2.6763487037407967 1.668072787485499 2.093299470705037 4.420198600792595 2.535957390198561 +4.924327573404756 4.734237559870282 2.0622688605222437 2.945690050268051 0.9036410856847059 +2.2566473162352643 3.482837666631726 2.102160087888478 2.4724378162434695 1.2808779690201288 +3.9268738858120664 4.5558051545007485 4.566910017652354 2.3004752845944663 2.3520801304261587 +2.2050071101115902 2.836301754286593 2.4437389803928906 2.367893031810123 0.6358345191010497 +1.7547119288374726 4.1737281256099825 1.3538045546517647 3.9735257990622626 3.5657507987327755 +3.0517507174356333 1.3551776031263993 3.4400682531985955 2.7232435446807046 1.8417920607220273 +2.585321830633385 1.631617002080914 3.9577643232295494 4.3144084933104425 1.0182082125267835 +4.83222806233012 4.160418900733165 2.4645725718739637 1.706560852954838 1.0128718159887418 +3.4342487774532233 2.419802696998467 1.929207410898429 4.904632788868597 3.1436057370508372 +4.1451696607209705 3.565540834896623 4.223145915153451 2.2289155853300384 2.076758094751074 +2.558896397023873 3.774340294047832 2.2864741654942815 1.426889454959913 1.4886872543947038 +2.585105709127555 4.39839360046565 4.882518749727902 3.544366396078032 2.253589292318377 +3.4096922524515945 1.4018477178207416 3.642780234712874 4.010296887294784 2.04120262717154 +4.133887198783432 1.4954821778418625 1.986900567408099 3.1717262193302407 2.8922297419088983 +2.579182000955655 1.6034373066331136 3.973055650322182 1.9699198076957893 2.228145173123407 +1.3106821284456913 4.606141372387108 1.6821194080016513 1.1278829009065419 3.3417405246781087 +2.0727048095833926 3.2325613757809446 2.8811709117354813 1.2817234617674749 1.9757275620289187 +1.1639791265214092 2.6446119803727086 2.2705964734231125 1.5189371434040555 1.660501549625456 +1.6187136616201734 4.050296544327428 4.4609942094314565 3.00687538313711 2.833206112597276 +2.9833296725437912 1.985333083714535 4.002268891580739 4.91855846787432 1.3548371780177502 +4.237500933655519 2.798570445799193 2.2371037821530915 2.4083747188807254 1.4490875345023175 +1.462868234104302 3.6874454374765135 1.7448020321716347 4.6121634603139 3.629119079523484 +1.4828320432078366 1.4437852619354614 4.6849662018365805 3.722655955707065 0.9631021030677803 +3.400799732005764 2.7744844300563116 3.798173714837871 4.115668372535697 0.7021920785103557 +1.5910349759893911 3.6690169542328435 4.016136058113005 3.8854578800905393 2.0820869069555776 +1.5607224821780066 1.6269614150962801 1.4023516194380878 3.0394693861793924 1.6384572555956987 +4.972162574557633 2.7421866618796855 2.7006739341674986 2.07081151546729 2.3172223107882255 +4.7375607190683 4.143856327313985 2.3353135773371823 1.8270179972557479 0.7815684880537873 +2.422413653286103 1.069627059530497 1.5076771140118423 3.545849328636766 2.4462578655395184 +2.997474451637963 2.493292090337531 2.194089588990682 2.37320652141298 0.5350539495479436 +4.853447857155488 2.6975308497611845 3.9627908903429234 2.3872575428794467 2.6702590645368995 +2.712936721267117 2.8316991989034044 1.0083297042509813 2.7482524305285523 1.743971220952767 +2.6781413808346786 3.704539185433603 2.3523170177583497 4.206613389715718 2.119412061950142 +2.056014820060846 4.96509806291102 3.866316181588908 1.6790666614488394 3.6396189054878594 +4.702376417455337 4.087949407132285 1.4308779139035757 4.984570822163635 3.606418422373139 +3.55314319268979 1.3137534768062977 1.56652415078351 3.595481266673025 3.021842695727798 +2.646746910718431 3.6135818205195482 1.8192371013295543 3.8406495456618943 2.240731579844355 +4.684180919111381 3.300708137996159 3.5581352693405757 4.108707921499272 1.4890020756841638 +2.092599736944397 1.3742515476275385 1.8909430340470528 3.6568927641219653 1.9064633671399158 +1.7024174388115432 4.284079774983374 3.447866640597078 4.2580002813023246 2.7057895213431755 +4.900234202274622 2.248132179933674 3.8624864072879244 2.3285367396310184 3.0637634895353263 +2.4202244234033112 4.491489473731194 2.417561096163623 1.260679165811105 2.3724490952359623 +2.902487225809927 3.671978436116875 1.1485188421626025 2.963265829329794 1.9711477240866677 +1.8323573172231131 3.306616311726858 4.860934566938065 2.7006683365193904 2.6153756458991704 +4.575946598073715 2.1105879954610005 1.6591849322144188 4.557800260014943 3.8052547691365763 +3.943954924372066 3.8132457399309088 4.493922510244651 3.6987692569925206 0.8058247868207579 +3.5228802137455903 2.7105136060366677 2.935160038169962 2.6607287324878968 0.8574683940874239 +4.588586896069428 1.5790116808419423 2.3971988031229845 2.6264450230405285 3.018293691054277 +3.4069423141785986 2.566799370607347 3.4849988674458 1.9377455727635313 1.7606342389996006 +1.5009775621315908 4.176360384609646 4.08295301133859 3.984934784779168 2.6771777713757636 +2.4198571263689637 3.771676427811562 3.065287732302045 3.947583708653909 1.614268135608036 +3.6774146848997553 3.2925514580935675 3.8652933030680656 3.368794676907513 0.6281962982436201 +4.665067135168766 4.772876415024358 1.5685645653665041 4.544179433725295 2.977567242837832 +1.722768700509845 3.3210661149195757 3.784257201149519 3.9256883557835702 1.6045427374831593 +2.608450349219955 1.557048030015003 1.781430176634152 2.481447638895177 1.2631196634919106 +2.800413192106246 4.5884699023715285 1.8802908109394556 1.5688193563954234 1.8149824423725096 +1.1605648281023253 4.243340694302467 1.5090528121728353 3.2008388216508887 3.516482182962358 +2.4859382505074152 1.4205080179523177 3.6312221728197063 2.6646149341378313 1.4385656517220924 +2.67215703481772 3.70438936662509 4.3040412477593275 3.567974197860397 1.2677926836732398 +1.9889104691235309 4.576036631234272 3.2535554494866474 4.358405937981015 2.813168388242001 +2.1278019398378634 4.679709526571354 1.0444757933281417 4.827877987986877 4.563591184338983 +2.538076304833661 4.490631666647115 2.740569028483041 2.187103497013164 2.029481839157892 +1.055099770892558 4.9967977404808686 3.0468899987947413 3.4507085049227126 3.9623291470230027 +1.8972066489575048 3.970407304056929 1.3176385471877112 3.0344227799755426 2.6917483274358296 +1.985882426036445 1.5658479062006747 1.8590266596677365 2.838142075722912 1.0654088397467731 +2.4884197473718124 1.809635466149294 3.6242105399834097 4.798079319902155 1.3559926301063345 +3.591152041869101 4.412816661854869 1.9846941547958608 1.9175727446328321 0.8244016202304735 +2.4455401512456145 4.116994719703724 4.9957841972478905 3.364988999736783 2.335220193181957 +3.3567183700262984 3.980357447813932 1.8949116720584094 1.7287019281375886 0.6454079162189094 +2.1545134762240212 4.540632294070196 3.7389730199285407 4.945419239636424 2.6737755130016185 +4.44689501552894 2.0343315310451793 1.7876721633729247 3.6068024926507722 3.0215389657528755 +4.738343471362263 2.7272916609498523 2.7842542114758704 2.236725813657678 2.0842544783640005 +2.897804822127124 1.1635257469181135 1.7529277493633133 4.467160371385043 3.2209909402472365 +1.5181978791817983 1.5319810298411034 2.754872792353417 2.071362274014314 0.6836494744547721 +3.7292769289564345 3.919347656766997 1.2795812839331275 2.6020618165839604 1.3360694745449682 +2.1226749154660034 3.5503709405064074 1.8905236885617738 2.4314210982959414 1.5267239265084247 +3.158058638060863 1.1762991727322087 1.3150286473967112 1.7518057575279147 2.029321271350172 +2.4987265552665416 3.542382323302149 3.1575835874466938 2.871538407894442 1.0821456495772985 +2.1998401837326385 2.9605754779729674 2.3329969375423683 4.232838970445472 2.0464891736552913 +2.501642833242532 1.7994694870236856 1.3751279969533212 4.0460182728069105 2.761648470350532 +4.253344506229604 4.5138007008208705 2.8690055472931864 3.4679931114236213 0.6531642452583236 +3.997924139464272 3.1642069441643 4.871166218634912 4.772419131047878 0.8395447272455308 +4.951314099384315 4.625300166926747 3.204441743195527 3.569399931167466 0.48936649162382245 +4.195831618642684 1.3285419757277657 3.9231673540814374 3.2119383275298827 2.954182903033702 +3.7988702992898173 3.7674574027242587 3.877228567381846 4.490465681048764 0.6140411449155272 +1.1140207897740195 3.3855944297636076 1.0656418395568399 2.7333605247602204 2.818036978975265 +4.501726509810219 4.485709112752122 4.962243433705282 4.600237603815905 0.36236001142843244 +4.963505829218301 1.065129955960554 1.7338137269475182 4.486247070592855 4.772129897688112 +4.396666447762733 3.767683987208203 4.990282165470974 4.2494972148654515 0.9717928167715885 +4.267356706911313 1.4457356688408654 1.7673368540617638 2.41111221611372 2.894130611991601 +2.847096069229477 2.447601141814891 1.3048406450460739 2.245963422390694 1.02240318811457 +4.496855010442157 3.926560555257366 4.530942467636166 1.2743719046610962 3.3061287932036585 +3.647969963857835 3.3167343646624365 2.7381697242006062 2.48283729061363 0.41822442996049664 +1.8640979577176515 4.8840240913825586 1.1018922069940391 1.404417519252167 3.0350412546371017 +2.097384171293021 2.923523947405629 3.8349010505200907 2.7530135852199926 1.361244804305552 +2.801400163612012 4.920266287448413 1.16676417720196 2.2790956587720697 2.3930890028650107 +2.3424704371823064 3.078153501380838 2.8573939322573145 4.425971990448039 1.7325318743347622 +2.9506163014381794 2.305348676075593 3.579679067942034 4.981133097666832 1.542868661219401 +4.27972796861487 4.124857700364428 2.4525857878174127 1.7192312195811552 0.7495290006003447 +3.1564162551389536 3.6736419172065746 2.9043176859226785 4.595917228097889 1.7689068366052156 +3.02933432981166 3.9077129477141286 3.517780980543552 3.458910855650727 0.8803491852629542 +3.3798883934926813 1.062338616620715 4.7376363951681055 3.3661188176948267 2.6929718590429927 +3.998626395912544 2.631903839962391 2.445003905272408 1.0446452151437757 1.9567664668942222 +1.7486835202273094 2.4559849745487567 2.5865715019992335 1.2794721247998622 1.486197876852278 +1.1627126706440447 4.402979971771556 3.150640100632858 2.839460083964205 3.2551751389948387 +2.9279656590058085 1.5207449709021161 3.7052693089765354 2.6613727575628547 1.7521387145658316 +3.527898883211549 3.0602052296038234 2.27576160288806 1.4164292791279611 0.9783605655809492 +2.1145553698657973 3.079112838957101 1.8393912416834173 1.022814667567614 1.263791285210704 +1.1735999781760018 4.9800909009412635 1.9236729374170753 2.1416755693176754 3.8127284577596035 +1.4133703833148377 4.075715756690811 1.3537979119324621 3.398022326537874 3.3566257379108104 +4.7916745351879015 1.8932841455830745 2.2327093273426133 1.9486093053174467 2.912280836916028 +3.4613212948300998 3.6340399711726783 4.837712092169723 3.109091793389563 1.737227641534736 +3.430410440742021 3.705405974999053 3.072878313950151 1.5174024353836106 1.5795973387745565 +4.054601064909083 1.7496747349884885 4.866851309924284 3.7740523055585635 2.5508616289998822 +1.848641741155841 4.925220191560196 2.5617898014478775 3.3655606287460382 3.1798400123760993 +4.165282981266509 2.4782201228609293 2.4714391869437087 2.3728609112589205 1.6899404618650304 +3.1272392049321636 3.9368903294205007 3.463146484479453 2.8982018349675096 0.9872676437508734 +1.7801736812230247 4.7090265509747375 3.8130597490720457 1.4806345150543967 3.744113594021304 +2.432566487278031 1.9179473662680886 4.080899563602205 4.139136510949091 0.5179038344570636 +2.6817661608636487 4.940683868698017 1.8660850493719168 4.741111094516711 3.656293747913123 +4.890446519521793 1.8579504921945054 3.563114466504748 3.5260693630981685 3.0327222911836467 +4.089262660050923 2.4716737308389916 4.226113278817264 3.5536785407820672 1.7517883493234754 +1.5722436964606024 3.5045461863688288 3.661723971921175 3.788311511643998 1.9364445041670078 +2.9625100014020442 4.36565457134349 3.2033203537856365 2.8724705777944157 1.441622786456154 +2.2220719633978416 3.062571076956578 2.93286314805655 3.8137716820246452 1.217554354068368 +3.173029151059497 4.24558217807076 2.822153201948664 3.3730029862264685 1.2057385622886605 +3.861300089300531 3.5900456592514254 3.708638619361169 3.622497089466397 0.28460381057511686 +1.3796148458465813 3.2038187967548017 3.8484295072356187 2.839369090128228 2.0846877415771656 +2.3602284493173706 4.198415468138734 1.879319057075021 2.145641375170699 1.857379630899194 +3.2860401553123753 2.0327405551483975 2.044348063518493 3.7304408393534025 2.100873327093725 +1.8415966586840553 3.7994696652053657 2.8465392380104992 3.6144582131346508 2.103084939326161 +2.780263359205689 3.7702814237950433 1.4547104534932656 2.433549216171318 1.3922144560139977 +2.2285844565325883 3.2372578266196808 1.9702377163317162 2.131266885666384 1.0214462104778037 +4.897116102789613 4.640715861336053 1.1293987801673122 3.7778017402673822 2.660785471037501 +2.669437914599981 3.3683874838553534 2.315307947236111 2.9594979994071338 0.9505321265892992 +2.0370587196340173 3.034676312117361 3.526249074282549 3.798536893458475 1.034109045170694 +3.125054296688617 3.484353022161546 1.3113754337097423 4.048147320713348 2.760256498157326 +3.3378540124930494 4.133586495755688 4.115948628700645 2.0716463078805587 2.1937096808442353 +3.663633454112626 1.6627903171067495 3.5199419819715096 1.9956385365029874 2.515327861884157 +4.953328284425865 3.925303200981667 4.902667950701851 2.7733375301785506 2.3645049401420977 +4.762019817072215 1.4658338033240614 1.1557061212653559 1.7485184322064513 3.3490698220897492 +4.439965389756045 3.3383903575750478 1.206479696935315 3.953206513732272 2.959387733575327 +2.996596092745433 4.201707511499513 2.9616360723072277 3.3038980535986258 1.2527716453723658 +2.787430816192845 1.9296188610895304 4.160408878678995 2.1050700676106473 2.2271638867856174 +1.9097691626463145 2.0198654594810934 2.229830671515431 2.814779471160097 0.5952195332669008 +4.643126236261659 3.0275148963149188 3.457470026677779 1.0510452419299003 2.898461703458125 +3.571699710042582 4.2438455558760655 4.864488945354327 2.3004780958125917 2.650647406698775 +1.6109700153598028 3.1458650006817273 3.074161339078034 4.228029606479687 1.920238160875594 +4.5381523711967215 2.6946583227120775 3.1717390238523726 4.761597722621672 2.4343625426075532 +4.772219343018154 4.165469546815999 2.5556333428762383 4.458635839596694 1.997389250425576 +2.153332851808416 2.4553255191255814 1.7938955679390713 4.139322313583557 2.3647888257300735 +4.796255349764381 3.8132315266308843 4.216290123395474 1.6977503653276256 2.7035862016618695 +2.5786657271194007 2.0839630681989036 2.33124023721263 4.418626522239746 2.1452068020734774 +4.024732737501216 4.269898029523009 1.0901401765038705 1.5983692349016678 0.5642719169088986 +3.415473008140123 4.834231238920237 3.8004419546687616 4.191074288503947 1.4715531039156706 +2.7472748904558886 2.488647461521067 4.533561643211 4.110157168747397 0.49614463213183735 +4.412153094083472 3.7044808763040873 1.7197959632401791 3.0564108311118185 1.5123952105294147 +3.0186872067835107 3.2450085860545297 2.4815229752621653 3.3227142551055704 0.8711051233919603 +4.750527887746546 3.942790716013037 3.4197185581227587 1.5220380290664721 2.062433205938897 +2.981100062185497 1.2336657788216705 3.863896519255949 2.7787333373069365 2.056965168915836 +1.5010906394103363 1.6294558705846178 1.8520966691100704 1.318629113083691 0.5486941460478553 +2.851103169866112 1.9226380306710298 4.407618627691168 2.403454434993855 2.208782838123887 +1.9644754056324425 2.376777983751763 3.39749784230846 4.999436098179354 1.6541461820366783 +4.6802224017464455 2.762159960084131 1.1115663015229904 1.292864149521836 1.9266116473759347 +2.0007141989244897 4.41405806836227 3.8512216655024467 2.2511499404304365 2.8955928853220785 +1.2262858751674206 2.2928488977754826 3.9795078759839537 2.9695005441248123 1.4689014574177763 +2.868941008942358 1.9139702706585693 2.079168608332556 2.4508706661858266 1.0247592550402462 +3.96378902632319 1.315016044187387 2.8565896296554243 1.8533305517186545 2.832406589519791 +4.8821654590338115 3.89069536124721 2.416767246358646 2.932004309069361 1.1173549953330582 +2.435033512341041 2.1307817957346455 2.9283522316065214 4.0108752287235845 1.1244666052601329 +1.164469002157341 1.0407995919895754 3.0387381656674672 4.74618439762648 1.711919027887205 +3.5233306944227936 2.467585285410334 3.3256453235425067 4.174418952047035 1.3546272701727322 +2.727169646255937 4.441294122893188 4.187287045028587 3.8306269572792324 1.7508366970109766 +1.376409799914779 1.491888820520447 4.425348269528308 4.127110760678398 0.3198140332834763 +1.541908926874954 3.1519025913007694 3.247613550316102 4.149761254101204 1.845521627870017 +1.709942131801975 1.3218648841184248 2.759431629530381 4.812657493919524 2.089579000747802 +2.5972583660778437 3.9248038909544056 2.6693747661815523 2.937398968395409 1.3543316039996116 +3.8407967759846917 2.370544562933399 1.3211453075159896 1.3229441052207989 1.4702533134311944 +1.8838149657435612 2.4868082520328194 3.510129213739803 2.937539158181669 0.8315409040053205 +2.288897287759805 3.3078414106412324 4.007243707486392 1.825185169875045 2.408241388880519 +1.7246398056578003 4.649089695021253 3.126980949076621 3.73363066812658 2.986709064676589 +1.1495770593518078 4.820292051694055 4.336343730266267 2.3828583249397752 4.158155093768118 +1.8044608011951038 2.0056490697037788 1.8234624752454205 2.910657893224261 1.105653922463853 +1.3353782600000632 2.267065655505827 2.549934245494069 3.6836869484585066 1.467459230923804 +2.8619721207590993 2.370910137834875 2.2263208720907754 1.3169014656625895 1.033530612929131 +3.0065537161357225 1.4943156012040104 2.2566745699965725 1.7991407941451838 1.5799371102347861 +4.07687960138144 4.676289608091523 4.479106201988619 4.576049049885375 0.6071987087457574 +2.617957086128948 4.519543111611146 1.037664662356986 2.9623760000710178 2.705650226070273 +4.093745382862993 2.2309010997594076 3.739123278522126 1.518166826418624 2.8987646308784516 +2.430336321323259 1.946040817449977 1.9067305562616297 2.5506850440458284 0.8057415946873328 +4.819619567811342 3.9257353903952907 3.4531408080683375 1.6203744772467608 2.039132498399247 +4.103307563446636 1.623695817592774 1.869942656667046 2.2180720753321777 2.5039306105234944 +1.4015309910382268 1.9950765416742517 3.273806201563754 1.369629292073005 1.994539050336584 +2.3040240486185533 3.0156271741155747 1.8924788691640129 1.651435860857453 0.751319332954108 +1.211872217242144 1.1181021500941504 2.2419795911181115 1.2658124634067418 0.9806605359232138 +4.0445491569614465 4.388129456229417 3.399392497027197 4.937134627852202 1.5756580475976678 +1.7189789093164278 1.7223858854272422 1.7003594907170236 4.4872197677902275 2.7868623596106703 +2.5383436754940885 4.788423475504457 2.7375486771572137 1.5866442376305474 2.5273385478279105 +2.9329155280287917 4.98514965721631 1.6241926224213579 4.351369788724687 3.4130866114718375 +4.961067156743184 2.980416330978764 3.327348864905663 1.2995470918954455 2.8346000995245624 +1.5852592772552807 2.9561472607094497 1.950449251699471 2.1401816111764185 1.3839552851923098 +2.3433596865755058 4.078407545584961 4.931613037768651 3.4955269369666246 2.2522731543864882 +4.591158557337283 2.385796371798182 2.1023460754469183 2.9944472955524515 2.378963420550972 +2.176712578718145 1.3503166253573697 3.9443642669092753 1.108836107096713 2.953497962894351 +3.847524613416546 4.4152118408400876 4.957424701107483 1.5080688742266477 3.495758059222148 +3.8120400242416257 2.334423259177674 4.1226151689547805 4.571755853629872 1.5443699877388406 +4.880920360537065 3.9818414782950824 2.555788113746534 3.659180641949294 1.4233123015653206 +4.400139740514225 4.5057757477713425 1.7271520795908097 3.447344037536642 1.723432429255856 +2.9743826157911197 4.998050902701108 4.325591006281451 2.0744827578537404 3.0269987911435448 +3.4844578181013874 1.9453528017262527 3.8071174667630796 3.698697546790827 1.5429190291385655 +4.402951648181695 4.918528529993345 4.37256563336653 1.8267835155353334 2.597465324605454 +4.985505644332768 1.5844218992266192 2.9432031448895613 2.2373263043254346 3.4735619694011595 +2.988561482173129 3.61710665302431 2.940884441935746 3.215110942555432 0.6857617701814962 +3.7784692337379053 1.4113295290352794 2.76805001878449 4.649609201395345 3.02384115641792 +3.2697433923916517 3.2469764405031927 4.313955373417341 1.1840019409422817 3.1300362335859138 +1.8777860854794248 1.309575190796381 1.724136662537823 3.507501727863641 1.871698313580761 +4.385180689181402 4.717427829824336 3.5521852375492107 4.849494630439899 1.3391787869242153 +2.6650122121787176 3.9282388399632246 2.595710994543717 2.655837423024631 1.2646567520658276 +4.987761608878336 3.1840833081281374 1.5222988746823072 4.460525746815007 3.447670599799208 +3.2135297182753733 4.924911274402014 2.690811710044395 1.5488105976689885 2.0574239648932613 +1.7512736703298355 2.9247000470837965 3.630568487797639 4.610593427790491 1.5288486990771588 +2.9941888818227933 1.1617996077258743 2.2366720671365985 1.1168599295936645 2.147470529533271 +2.020195369262173 3.9693918400227064 4.5486656653412645 1.0455409324067078 4.008896328931833 +1.7144602547582783 3.2384209953241547 2.711152309186576 4.422110859494295 2.2912519502789706 +2.013806187133889 2.7057371712612626 1.8680956784535074 3.422405492122466 1.7013663578615594 +1.5566209665837172 1.4286846063561724 3.190719683478047 4.619139944466799 1.4341381224524523 +3.6676751278598108 4.4166085243913695 2.1240534138379576 2.2268764528630367 0.7559588677928515 +2.783644970238891 3.9557224030352116 1.322416228598692 4.069831924124657 2.9869815052143927 +1.4749364053182141 2.7769890564511144 2.2149715991697176 3.267984987306197 1.6745680941415557 +2.062877947965318 4.755605436995866 4.762320187410541 4.6238329679542485 2.6962863423852994 +4.662001878841418 3.706049617739108 3.953272373495217 4.023193002951093 0.9585059310876097 +2.1258142576299672 1.9939676718317143 2.2977307875668855 4.928878111857751 2.6344486642008484 +4.551814871027792 4.490629581600146 1.227247580353687 4.591303405522283 3.3646121967461733 +4.165298404651031 3.4973842037216194 1.3226996325019855 3.5599431731997795 2.3348164896190826 +3.5718432801839897 4.409769750331023 2.0988330198550247 3.781879039800082 1.8800969854307954 +2.60211219069523 4.009055527624077 4.5853727094486105 2.1493716305695165 2.8131105221140156 +1.03314700386785 2.425370671554348 3.5145137086440474 4.954704244373037 2.003106467482395 +1.5894776638210888 1.9546427667354673 1.4491748911500215 2.273606284599797 0.9016832453206655 +2.1999082723478858 4.5831548933239485 4.249590455141172 1.9331757545533792 3.323498385962156 +1.0747353955973726 4.350694609534212 3.651233541646001 3.0007056895682 3.33992443892173 +2.3013296583393723 4.07882869863545 3.0155785705400024 3.9174063210942527 1.9931874297022882 +2.8769299231630474 4.499552939126753 1.6582010254712607 1.6767873851715982 1.6227294613403866 +3.5140315705027994 1.5065488251773664 3.1688933884458685 1.3552962922533909 2.7053874768870214 +3.4986291757257924 4.522487450499648 3.0498001930624623 4.577364089688571 1.8389500333338142 +1.668629183701237 3.133422824104379 1.746438348747188 1.946650844556669 1.4784131535006546 +3.226506702687854 2.9179773484309517 4.717832837752832 4.6849632244087775 0.3102753195463162 +2.7086373511285036 2.231896528064835 3.185634667016234 2.491657113140682 0.8419540709911194 +2.8376390676131233 4.556276486021501 3.787792098148735 3.76602599442489 1.7187752439527193 +3.1655952164023553 3.1185260948540687 1.9780209203479457 2.540537482156719 0.564482404076948 +4.352813998362773 1.1688404433202808 2.401449697640349 3.438531319244034 3.348615518251992 +2.301220372298493 2.1099468969336113 3.9301135643863265 2.1915420778196215 1.7490615644627614 +4.02741166004126 1.0381203985921919 2.489121569623331 4.101910988838213 3.396608890718394 +3.5141110196963092 4.711818640682596 4.623488999085259 2.175391725938213 2.7253777360502953 +2.845905165636043 2.3198167675052104 3.166886323186378 3.680323656827442 0.7351101265962198 +1.8114590204088676 1.6120095374929044 1.0150248553566241 3.9526923255917366 2.9444303798719726 +4.781789172053648 4.61662541246493 3.9342792329807192 1.5878124936585367 2.352272353752166 +4.723376132853549 4.0200001665463185 1.1977808770407434 1.7774264983308812 0.9114421518996472 +2.064763273953629 4.5956607478207525 4.369039798481694 1.2822552945777845 3.991701466388524 +1.0314707421012748 4.428972089360872 4.7464015619698054 2.27394870272847 4.201908916885448 +4.5803979035990965 2.20376620400937 2.070469217166084 4.563615234214175 3.4444383138354375 +4.52963706688837 2.6192923711034064 2.218691143540936 2.111272103915348 1.9133624086376912 +4.5750683373247 3.86759665359055 2.213104591166847 3.786006532726103 1.7246845221797842 +2.014076785185574 2.33605518689381 3.954266997984972 2.54564685154412 1.444950105756471 +4.473730361166642 4.091037163178459 1.0968147323966995 3.2929532537782533 2.2292327130388117 +2.9221598158853763 3.1413998181968927 3.251699186732407 3.5919931026977423 0.40480381403412724 +3.7821085362501745 2.6499048142107524 4.414469603215627 4.297747883928811 1.1382043876005712 +4.40589715282061 1.9559060452397423 2.852359482058819 2.0495387210090974 2.5781733071300272 +3.0971148505987736 4.850484984768725 3.7696386929126815 1.617679982102198 2.7758301677934605 +2.33613463932078 3.1717575327826 3.490059174750195 2.533323466680807 1.270279038311086 +2.670394928776537 4.757433011821064 4.998868030357484 3.11043657507811 2.814587238187289 +4.263025852637688 1.8330412928486823 1.16168008568969 2.8355038958415393 2.9506797705349563 +2.9143048033898036 4.538207743797916 2.8373194642901347 1.7195329105655448 1.9714227196503564 +1.2399847138248927 3.1720875835032065 2.8550955210549556 1.3098094911770355 2.4740514168373786 +1.7896716157304495 4.699954678357173 3.234995150701713 4.759973311177442 3.2856210820086846 +3.027140590031781 1.0045188075359315 3.962846871062402 2.3643461773851366 2.5780231462718457 +1.8469365682829446 2.2285538070767834 4.364960189912397 1.172379806266378 3.2153073294766075 +4.185080782922837 1.855733819615307 3.04002517908643 1.2971491103840798 2.909205091829273 +4.8126404717079065 1.9749795176341762 1.9326466916232237 4.034020272273 3.531018353921074 +3.7788871020099597 2.795127652461892 3.577484071738017 1.30991212661757 2.4717736912736257 +4.0514342851473355 2.6457925008802654 3.570418358657073 3.477674386284201 1.4086980762707857 +4.852191187992869 3.7685226929974913 4.420711989387662 3.822665572559195 1.2377386330429034 +2.0805652860273156 3.6295566439556723 1.686943579263306 2.983577262237633 2.0200577057995894 +1.1809165410100517 4.936963680557302 2.2578758825902807 3.377430550190652 3.919348513241309 +4.228287157775679 3.7977492418980954 4.3231967907446744 2.7549633628017673 1.6262591987520851 +1.8206456938063544 2.574947015046912 2.600860259015734 3.869862728034105 1.4762580227046935 +4.7157085470557565 1.8631679535953674 3.35047775229856 1.9580314337100382 3.1742549657344914 +1.0922613070200153 2.3339321448749417 4.956196590136409 4.102581083369179 1.5067866149434799 +1.1133269365973009 2.7434940253614437 2.0667672023827115 4.537719623019896 2.9602450240381324 +3.9458529871945083 1.7854412151615735 2.9262095796894023 1.1800237326487535 2.777866814147783 +2.3112086730646695 2.69380634942019 1.5179695052763118 3.1038168374596995 1.631346910667934 +4.796114781481842 3.5988176177742695 1.9480970911567934 2.5338262257378914 1.3328912623763876 +4.0286903985030875 4.949122690673505 4.545074998705955 4.694111049402861 0.9324201568377958 +2.0927875870292856 4.433828915865501 2.7847443748731044 1.3779985067482876 2.7311917619979518 +2.0201006791523346 3.692273379109482 3.6235007616205506 3.34025985774299 1.6959914351527114 +1.988825901219863 4.808902508514844 2.1796376892775435 2.199218488095767 2.8201445847145377 +3.6338941878243625 2.0252259886156185 2.464770223711339 3.613685929964936 1.9768208505632738 +1.451195348003802 2.303613079779916 1.0428248613976687 1.6541570333892532 1.0489723609124708 +4.35937875674533 1.0638395644650953 2.788682504126408 1.500845466590642 3.5382344189021673 +4.9307307206760065 2.9037759043204687 4.7153484683103475 4.269580103723125 2.0753927971383344 +3.6681001181025765 2.4884667606132003 4.108291329744772 2.1784541334039873 2.2618148603460275 +4.86102133434607 3.7947630932041374 1.3691678558767197 4.16797808572944 2.9950367843369348 +2.5331002540745313 2.5308136651134614 1.3543563847458082 1.453371040616751 0.09904105495358033 +2.3634677496539984 4.810822473580105 2.7507970129533788 1.5481585871787118 2.72688179572808 +1.9753110815611565 2.6470316545077552 2.4348179711894957 4.475548171139032 2.14843856721708 +1.943346963762263 1.2028873095493067 1.0469197170105113 4.2988371393042675 3.335153282974388 +1.2302248547083585 2.2283047909590876 3.4772385776810264 2.017160027306859 1.7686132794958282 +3.7858436643472486 1.0151055376427962 1.7032761502724982 1.7276462645557178 2.770845298684839 +4.903292038128781 3.9348349574593295 2.512040133158778 3.740117602380165 1.5639959678682045 +4.516655348823168 1.754835610789533 1.463086726825889 4.545468883407542 4.138686751205645 +4.572211240108542 2.323446438632067 2.693691181875208 2.882954388896787 2.256715244307891 +1.9052536423539794 3.2975152164947583 3.3507189375403725 2.679513668532865 1.545609525065241 +4.561798654979044 2.9606990106989244 1.587030140313419 3.3465418578816735 2.3789496747879966 +1.2585821666478214 3.148764199516489 4.45488226125518 2.9794212478986544 2.3978684950002145 +1.5661261680224836 4.2302059843946616 1.5848657492336833 3.0458970877583877 3.0384097551437836 +4.685773925479031 2.4400462194500765 3.5752951750619895 2.2174246962696924 2.6243294699411686 +2.0770460454466124 3.9218065340509667 1.5225138603571358 1.4478250858911186 1.8462718308383008 +3.7264525051734596 3.2227614150773154 4.7003828250321025 1.3567871895574006 3.3813217072333885 +3.097033602333258 4.1464897754493455 1.7774098441619621 2.2626309342127073 1.1561997083209703 +4.9293478762033125 3.5332686571148786 2.9773096463010953 4.309446280628725 1.9296697122793622 +3.194241349762345 4.266888702764586 4.43023250398205 3.4410376517349612 1.4591363197504383 +1.3531888269432768 4.526409612168283 3.6196702834256 3.199473165153814 3.2009210814994984 +4.997364351108683 1.9121281996737833 2.2925499018500943 1.7408278275167972 3.1341792159076456 +4.039729219651006 4.911063717922698 3.547983858374656 1.5873688629135012 2.1455150822833953 +1.6372152363198085 3.150398514256847 2.2214190404323797 4.334949854249916 2.599372257600765 +1.2155363666278838 3.1379241001098066 1.9385184914610676 1.8514394839194974 1.9243589455702357 +3.179358270634922 2.852223963247986 2.2870670977886456 4.032121904113237 1.7754529371814074 +2.873176405536576 4.877142470225982 1.4592425646734455 2.3465032398180714 2.1916002131056755 +2.092434998440564 2.4390830669452277 2.527984989583893 3.036897472713995 0.6157570940587369 +1.3218536369713263 4.055992840825467 3.5385054579630197 2.730713484044771 2.8509726514259817 +1.4111996468952532 1.8115715760710795 4.366153157006269 3.1582389464391856 1.2725385737815076 +1.365224955472092 1.7823594765745492 4.164133654021796 1.3360581629978445 2.858673152290367 +4.940325818432502 2.5539019372379217 2.133448634057921 2.8806208886729388 2.5006569774365883 +3.3327471878755706 2.7445777940704956 2.0740315196350747 2.479041461414255 0.7141262414650538 +4.95365932207182 4.12615637686865 3.214173511642544 1.3757418902240088 2.0160833194467696 +4.65578598522786 2.6507807548337734 1.9501564216673364 3.253723742254102 2.391512854493867 +2.7663634381964304 3.841769757983428 3.077037993521057 4.408444100362981 1.7114733342865098 +1.3537259407094697 2.9587484956299206 3.064126553739215 4.641745168331285 2.250550575950422 +2.7620265353375606 4.685615609704959 1.93327317518699 4.5304461511387935 3.2319502462197605 +4.256899041776894 3.131459622650427 2.907665262250638 3.7418471879683968 1.4008830683957556 +2.1683252486294773 3.2909690842442756 4.641774987236371 4.031756107441785 1.2776745342025675 +1.6291252009202313 1.8248932793730335 4.834617258409669 2.703054523231117 2.1405337732778182 +4.9055202679337215 1.5671498182030872 1.3365657803065143 2.4115718602867537 3.5071862413663175 +3.4630427697813557 4.734032677157083 4.316957965060412 3.1456386273171484 1.728410927882105 +3.1154625034528203 3.0248785287901274 1.325954201837234 1.4093020958978966 0.12309479237578992 +3.3548247778481572 4.448616659184305 2.3473725010595583 1.4381652186973763 1.4223356010370034 +3.800418388984512 1.6466279725620518 2.782816581734909 3.0505993080612175 2.1703734117409343 +3.2300577753083357 4.1783894486599635 4.454867086667782 3.2564797090472695 1.5282229122487558 +2.7946212806738324 2.9547459826256066 1.7489738419823477 1.4870812725052893 0.3069652066968509 +1.210322589859914 2.5804954736437438 4.8460390895458465 3.2640632537669765 2.0928500367787346 +2.230123004956798 3.537781635521305 3.5670232764531864 3.829827091002285 1.3338054352233686 +4.140122143087656 2.5867734410025958 3.9814835802145474 3.757543361853987 1.5694079812683244 +1.5592629812556096 3.092388912031848 1.6963400699276554 2.381210391979542 1.6791433761433128 +3.641889912963578 4.381238129932646 4.979937031167836 1.0095546662962733 4.038634906650816 +4.697266955339044 4.833557812959111 4.625994823103065 3.028060038819635 1.603736503511018 +4.164398625119784 2.4268256431266715 2.7131422478515286 2.9774098694625244 1.7575543358839205 +1.438579294775927 2.8728191749606853 3.5005146178343027 4.335268313747392 1.6594751479768992 +2.225751576276048 1.4461755415862525 2.688003887132695 2.4185596397398315 0.824826646220751 +1.4602610444111064 3.3154395814830995 1.6449841254144153 2.8682371512704963 2.2221690686531117 +3.445300481162595 2.4142642055465986 3.480789690872786 1.086062574419738 2.607250230398232 +3.0287694087061783 4.593999789799548 4.807104358591811 3.9655680700012486 1.7771126781699784 +3.953734981863365 1.5584218056820154 2.574640173294534 2.976201450168094 2.428739728968979 +2.568487456440984 4.8942345170385 3.7951883216267683 3.5269093335456168 2.34116915350511 +1.5311265084185206 3.6879270645793194 2.4185024769512617 3.9399831171083046 2.6394491806867992 +3.9206823232578007 1.7826272574866286 4.55364555459076 3.969484332694511 2.2164213943736173 +2.8960950547916218 3.043917323416336 4.0518242968199765 2.3891960791819318 1.6691866322216993 +4.876406880326316 2.016318315115678 1.2181116710157456 1.1507910345518688 2.8608807505631106 +4.96902981454679 4.088480074989741 2.252947632190495 3.2712678344429458 1.3462332183353147 +4.670920341241982 3.4221451821344 3.88091231046604 4.0239536877741156 1.2569408234385413 +2.1746488502228307 1.5729920075736077 3.454897354812899 3.220139604730518 0.645834466044027 +3.488764318945289 4.386248153340158 1.3296631748279153 2.8447454019920975 1.7609518414962104 +2.21143663725708 3.4145929345672545 3.482044664763453 3.2807619867445545 1.2198769578230375 +4.956774934252889 2.7046643832879043 2.748632230222811 4.363261437177953 2.771106170777366 +4.623008435786992 1.632319749817119 4.88253747822582 2.4863851617372488 3.8322010307657077 +2.1272454251522173 3.179568100511917 2.904901632850472 2.9150750975970716 1.0523718508498536 +1.4910012818929972 3.13793685344897 2.784236351403715 4.304202109162588 2.2411364709932116 +2.5290090879555116 1.8635403302765687 3.372173017142446 2.1593011504585244 1.383440216431522 +1.415378389615463 4.3774659033303 3.13625543320304 3.435570377739733 2.9771717913026703 +4.595702419456691 3.653956614289791 4.005122879563178 1.7925625311516296 2.404643103853976 +2.934348496414895 2.747837719848349 3.303370855037333 2.067522450709384 1.2498430094437438 +3.2776205747363254 4.249887294091692 3.588678465410046 4.14255352444434 1.1189638754608162 +3.1496228440565113 1.7522911261677518 2.778018117633409 3.062548593797138 1.4260061436347005 +3.6567747742002354 1.010366947231792 1.1059360615257288 1.4808792189298634 2.67283683713092 +4.289817724613842 1.0303868838465542 2.231229887775945 4.8735782242485355 4.195937813767551 +2.4226720463819196 3.411553213658784 1.5875657858307193 1.4325379086993277 1.0009593426721786 +4.6182341868185794 3.572836108495376 1.1053349580775658 2.42629285885033 1.6845732153206745 +2.874144207013532 4.224757189167821 4.4213151913488975 4.326072069317733 1.3539670157939396 +2.1694976434572775 3.758831184297329 1.1186959505918823 1.664837642962612 1.6805510561077104 +2.761598540454566 1.0796606278528134 3.5801575687827447 4.3574582547048415 1.8528657528763663 +1.2317449868827786 4.635152476411138 3.0236054004148922 4.63188689694285 3.764273092092541 +1.34839546366034 2.880583003058579 3.1433955413861594 1.1467563915597836 2.516777016445164 +2.235028303007284 4.078014186865975 3.342423943572819 3.7312343908096137 1.8835526358408134 +3.164021453965824 4.6552077927965385 4.14769362217503 1.1965154258417336 3.3065222581480374 +4.051993101298454 3.127587075908991 2.905465395596015 4.939685018307629 2.234407297965464 +2.825211299849372 2.5358729052531586 2.8883351044408294 2.1921335886002664 0.7539318651219166 +4.891677540383034 1.714974939223969 3.134520747343966 3.305000566471846 3.181273767681845 +1.0643308734240926 4.586810531968869 4.251865776882738 3.366770171095323 3.631977034102214 +1.506582436118467 1.8923876059987865 1.2109044220237482 2.557280433333619 1.4005620275221873 +2.930293748177924 1.110027971928154 2.7280026362546477 1.1393378258037115 2.4160346388558436 +3.032151759403683 2.3679917397161105 2.2448742848029672 2.1053973564436506 0.678647438141445 +3.3769481426323105 2.1109742440950017 3.7498847167945897 1.7125529062653775 2.398626860929392 +4.163627875069326 2.8464780380110306 2.074135432429096 4.370041230012579 2.6468976415116896 +1.9071224727226954 1.1096320017609522 3.8587195914348555 3.029987169322937 1.1501254186975738 +1.766159671396748 3.093354141771751 2.896313931870664 3.274974854451976 1.3801555189485406 +3.282375156600245 1.2516107541442483 1.5164365685573054 1.9613273532604336 2.078925652493669 +4.199965101278136 2.633803975351337 3.0000493059049926 3.673635189262541 1.7048690901716963 +1.2502120345144667 4.026545860598954 2.531335189953403 3.711548970705269 3.0167754444335997 +3.177612147718175 4.675603448861267 4.112225371140089 2.1019353694398544 2.507038856746401 +1.6994325804956767 2.330274030796711 4.774014881483863 2.436391132230942 2.421248795247856 +3.378164687125217 2.2035071188008106 4.516114519904868 1.3964820010857295 3.3334557827119364 +3.4451896809637184 3.731379999875436 4.912827331781825 4.087901245257003 0.8731597487676293 +3.4506030922174267 2.477906987883029 4.668836904407579 4.291643460690125 1.0432701497554435 +4.9631936486139665 3.490031037860508 2.331303840937804 3.587228396261944 1.9358601618887878 +4.919626472307143 1.8648663563672288 2.0316563827221286 4.41102851048895 3.872075811284026 +1.4991110034902242 4.1806579765219825 3.8514982134875315 1.7032305779730823 3.435949359692984 +3.6178976308156363 4.463083862955659 3.6050880785769777 3.6746969739975173 0.8480478555604726 +1.8741696924207485 1.0298523596103548 3.1248814545237606 3.7698491780986565 1.062475939933437 +2.2070098026141483 1.5483094058141367 2.5233203954992733 4.134106010031093 1.740263344648489 +4.428938081829226 2.277547263802044 4.764587130628665 4.505921491162761 2.166884945014841 +1.6013750173851649 2.253088420815977 1.0753264900594472 2.1247290294798535 1.235304031383922 +4.968965056669328 1.0080623042815482 2.720065901363197 2.6157213742370025 3.962276920435304 +4.2860913917467585 2.3602814225797752 2.825342561516615 4.7025452200401965 2.6893556586124747 +2.4845349454539503 4.631940076031495 4.820436473398567 2.7421252315139726 2.988432099441888 +1.51859119976471 1.5405179044156831 3.2185838046071784 3.7638606730637085 0.5457175493335459 +3.9611339850709175 1.4220459664116616 3.8406315305983303 2.4366675516908978 2.9013932550704973 +1.5845153429970105 4.916474491703235 2.8983763419251622 1.7489652963248266 3.5246414740218848 +2.4905111725414146 3.031566967333756 3.8522554988782387 3.5606257899971587 0.614645637892628 +2.2536649071829844 4.863297806605862 1.2672175297965098 3.023199620892144 3.1454184100050746 +2.782562489027693 4.307954062108546 4.334069292849314 2.5979343082813457 2.31105693046859 +1.3817079560764007 3.288380662390023 3.012301351363257 2.937292973285524 1.908147548221354 +4.7458000562442315 3.2285875235158237 4.357966471007185 3.4322601615132764 1.7773199039297853 +4.99151168829629 1.1009798371789743 2.3784778013795913 4.484844484611155 4.424140446322457 +4.456769267039107 1.6782316060919875 3.854761255131091 1.5002967896855108 3.6419465196989687 +1.731523521373251 2.3136934992610083 1.3514247579463095 2.0481527619278572 0.9079382108304196 +1.6476617353538163 3.9078000099533177 4.654605448328382 4.578979785373575 2.2614031620228543 +2.003953484919267 1.710898492352813 2.272752563437129 3.038853663974681 0.8202390657076587 +1.059098410736631 3.085287887175643 2.165918537777814 2.699574932725631 2.0952882718854933 +4.401946782703055 3.6031000146355483 4.606035696648979 2.966849008575708 1.8234827000025307 +4.82286718298791 3.363802331774686 3.4604353222597184 1.4286591076070931 2.50139657521034 +4.4943407128704465 1.4182334251452975 1.5370020943415619 2.431884043543391 3.203630713519122 +4.365511061421234 4.0801331392295594 2.5694156681947278 4.132736574116166 1.5891547480863728 +2.1678185107529613 2.2572047179056898 2.438912095837369 3.3169561267595227 0.8825821289076584 +4.350325056295759 2.7485498238169717 1.6031301402061833 3.5396349622378724 2.5131125762954705 +2.058127541874668 2.8034920424221026 3.3976273634389 1.0134482696932063 2.4979748176733816 +1.6731132681656744 2.0588851241021633 4.442911444269557 4.028931172110298 0.565861812256082 +1.3959084913339748 2.9245044316813815 2.350127372232673 3.6892667984579366 2.0322155278703833 +4.483970557107394 3.3737674571716076 1.0499440394827744 1.4790714841023807 1.1902526147136931 +1.7194410530997186 4.008700221517344 2.8654128152533906 4.798746419331248 2.9964122488137104 +2.852377602094465 1.663707875260687 3.7318158115877598 1.164501309538335 2.8291411191250915 +3.140582674337492 2.614858265256271 2.0410049047095877 1.780819587006388 0.5865855042976375 +4.870016623126057 1.5544304140879062 2.123945866674624 3.0749703899374565 3.4492839189332147 +1.012411293682307 1.3851799056270342 2.1814950935893784 3.2529532019552505 1.1344509315233389 +2.2232918726600994 3.288237589688107 1.3394840360353872 3.769285481305964 2.652931292675195 +3.37095126552488 2.2581458595843227 2.940726852140063 3.1781659450716395 1.1378546455249452 +1.6493233193140857 3.9588384728963084 3.4945312734205745 1.040332518239358 3.370007681676549 +2.2864753482507205 4.269417899153077 3.6774443981116414 3.05677515816547 2.077809294808959 +3.487976359666707 3.875726399993516 2.0880124476248034 1.6085588588856714 0.6166245515127294 +1.1700501875761473 2.5133253851548365 3.6091639151179886 2.886989544054669 1.5250980554216071 +1.1768042767147322 1.8668236869043842 3.5286489961237493 1.5747297075765698 2.072179377514213 +3.0641925730647013 3.552945549302166 3.541095622272624 4.38700456332386 0.9769551721196849 +3.1602145462821043 1.9655908900424475 3.1113764062237563 1.361728002536449 2.1185833041381565 +3.4319923428811023 2.1467269719025506 3.5055759927614214 2.5996599517617143 1.5724474386055698 +3.918648873532582 1.1402876398710737 2.046450496854651 3.1549672744871526 2.991337592283065 +1.070505580356285 2.0542700378967305 2.514620279133625 4.0870314461550326 1.854796319301252 +3.8775785040809643 4.331168685048844 4.995883843259115 3.957520883814649 1.133111507229868 +2.8777636172305305 3.5273042752922814 3.593889529412755 3.7175192589172488 0.6612014643757579 +4.862050123881437 4.187348284439772 3.5638397495948264 3.391744501350315 0.6963040618970318 +2.5384725738995257 2.7022202668059814 1.1653969257017436 2.3637679719806406 1.2095067058482005 +1.3754707710374596 4.666113749366442 1.631246584507783 1.23286705175311 3.31467003832111 +4.550927532514759 3.0988691969828004 2.970855825979912 1.9848609590906792 1.7551806993354724 +4.514749153081 4.569566478160244 1.860517830051485 3.731189896554934 1.8714750651625383 +1.9043052073411846 4.462270475915373 4.935045391452215 4.414115035386418 2.610470216474928 +3.4736735649375747 1.772663688828061 2.1112587998276 3.188412660722906 2.0133790101875424 +3.8295628379608866 4.606706897305973 4.765832228446631 1.073769132242794 3.7729673726823587 +4.806107720790914 3.240920203209139 4.912847150872283 2.3256242072642856 3.023827793563223 +2.749570864865218 4.597068743274811 1.3807026238400186 1.9363947431276296 1.9292594802582423 +1.1106951913059357 3.3588002624640296 3.1715963175655824 4.4464546176711135 2.5844225847014073 +3.8452273541870836 1.90321124062707 3.38717836621519 4.31099281794407 2.1505487035986586 +4.51255482751796 4.3870282284765825 3.307978960569212 2.846572262347553 0.47817681691055214 +3.2641030166900946 2.5891243671402724 2.628536695697826 4.629619522286358 2.1118543169962387 +4.210657418373113 3.8082747297823714 1.615807776740657 3.903742291126411 2.3230488953517723 +3.0021540243954163 2.8588181451395593 1.2371225467224938 2.7716714778554974 1.5412285996319603 +1.6515968974968915 2.788384752430205 3.1793768722895193 1.7657725440612997 1.8139911311551222 +4.105895468631832 1.4245514480715395 1.9484540330766018 3.2691569487303904 2.98895666546219 +1.3720396612691323 2.990767900295723 3.1947137602067803 2.4593922432343174 1.7779141838527557 +4.9837362670117775 1.6768284121365205 4.497082741060865 4.69012560349091 3.3125375631637537 +2.725124625773884 3.351721061886644 1.5183165246833052 3.9831898449983485 2.5432702528339606 +2.180997690620547 1.435730759607055 4.5897130184002 4.185174815009109 0.8479822854666016 +4.387982617456057 2.7991843539917416 1.8336937602620442 1.1311338154400912 1.7372018875350816 +1.2224606013675476 3.4398462011135824 2.7706733915500075 2.2963722600372467 2.2675450296114006 +1.6556427984207387 4.8178390894128835 4.977469866602751 3.4480053768605714 3.5126552646319826 +2.148286380057837 4.253789803812445 2.451794714114584 3.093035038928329 2.20098473906786 +3.760192933666373 2.82225848339634 3.2565817409519195 3.554596008747565 0.984141014699176 +3.8785174002520826 1.0722126808206505 3.554324480782957 3.5878811612964747 2.806505341008674 +1.218517529750788 4.704776472761575 4.521090434844662 2.2189478592314047 4.177781930184237 +1.151274405548298 2.595020221455335 3.9776812200415885 1.6425944024879646 2.745365627099929 +1.7782118303989871 4.939517526773546 1.9845694789232757 1.1977034109616782 3.2577617952882285 +3.475422134065566 4.386231721162645 2.587082227685819 3.9002378344691686 1.5981088046733543 +3.904444320714224 4.059914827953603 3.6731676014869556 2.471109831987117 1.2120701134159675 +4.382441886045269 3.943122472252156 4.413975878722432 3.2333744307409513 1.2596909646065952 +3.0889713662324905 3.804271761213003 3.6427411559950897 3.6444288087863197 0.7153023858699346 +2.838345077586931 3.27176839841084 1.3028900712524112 2.5666884356197874 1.3360546698438955 +4.576091139534396 2.5552035673739217 3.526934058736687 2.668405686716957 2.1956906760460377 +3.1064618036328753 2.2003071919947628 4.217305425429437 2.5925403130607534 1.8603703530650664 +1.1583156771845764 4.203616305652929 2.5251967064362724 2.6023142167931117 3.046276912585818 +1.1359316575916067 2.0532154079066927 2.7450181171895034 2.223284105929013 1.0552799899069774 +3.985904617500686 2.1006633455887327 3.612724555883562 1.8019948363559979 2.6139771939518845 +1.504529366453653 2.6198597858343207 1.9954865216103785 1.0938499571283171 1.4341933059413123 +2.822394317256781 3.424488781343051 3.4292378341132936 2.58201412974978 1.039377577648646 +3.6348798686651227 3.183083209594804 4.624759716810921 2.978086444608084 1.7075283559971413 +3.0399334267712526 1.3743303000872844 3.1241488805662665 3.701122074533011 1.7627058297332534 +3.660461399694183 4.428476236076943 3.010862830484469 3.1982790908122056 0.7905514806382133 +2.5909212722091475 4.075929702745075 4.424799679584282 4.19534060194778 1.5026315273787425 +1.447843844524178 4.758370479565798 4.601495980222893 3.5472609863956173 3.4743341842042175 +3.7378198905568802 3.901470361195931 4.041475000069383 2.4461243785090465 1.603722258451673 +1.4955634532449085 4.531035977553228 3.337807695376808 2.8261503542963498 3.078292819163285 +3.3544779275520678 1.999736284987133 3.0379819018018 1.5298811006407913 2.027237762217845 +3.6270477620994814 2.3649165088806647 3.941587971607987 2.8014954273069943 1.7008193054885083 +4.657073700533221 1.327330002176407 1.0608181394518894 3.9208010395159505 4.389384385697584 +4.391230511258939 1.8048255670832565 3.576859449839515 1.2686405704252435 3.4666071208807168 +4.268199440987372 4.159256855375407 4.213083983077164 3.0157919429371933 1.2022382111471723 +4.612638513051916 3.875611990691358 3.9347301524969374 2.59348750054395 1.5304051574928714 +2.328245112046029 1.9033756718543091 1.1798401801944238 1.1182778136193696 0.42930637799495436 +1.750731777183299 3.594433161362568 1.0333161872359478 4.579942021459946 3.997222736101858 +3.528025944624419 2.432509563872362 3.7033802936586864 1.283767650216669 2.6560650377580277 +3.475290468981173 4.211550369984484 1.7572882849797358 3.084703611420789 1.5179295407547784 +4.2811171788261735 4.819931619610781 4.028270763244031 2.0744678274458086 2.0267379982454026 +1.8547730894324568 2.098324030677753 1.1313710805469839 4.862242673839308 3.738812633258997 +4.455815395901073 2.1128098446395107 2.276991138711137 3.4669653275134547 2.6278724442518575 +2.6788621848327345 4.78292589792029 2.9320908840546034 3.875715631064917 2.305973064001847 +3.4484214540110028 2.0044235826675365 3.220895798679726 2.266142760377615 1.7310930698814473 +4.36278159319874 2.727883373807426 2.9766132307084114 1.3427641444653853 2.3113535048507963 +4.130642565409492 2.5252103350167547 3.0265766756529935 2.848592368676169 1.6152681077498614 +2.912604111743917 4.880378035927443 2.492229262880295 4.663051701587499 2.929949534905221 +3.046110816548431 1.1775950033742872 3.7713895909400152 2.684080107992301 2.1618494988758714 +3.6624249560170825 2.242902759042359 1.2220225022873175 3.6367476604352773 2.8010606664434516 +2.990646982110432 1.69568865271195 3.4314003838176523 3.676148629822307 1.3178842053840931 +3.9817899674432127 4.079940764119463 2.1163130408257884 3.67518301691306 1.5619568435890006 +2.0806135337633798 3.4758450730103614 4.186905275659606 4.867239651608989 1.5522647683974335 +4.415822554534598 1.6656729142122626 3.2573883402990815 1.0165645771817835 3.547479976196658 +2.346650195147191 3.8271450182702766 4.033490552415362 3.2400953795805907 1.6796847387446767 +3.124288406812541 1.093235932582325 3.101473318128385 3.100124025092017 2.0310529224193985 +2.2366795604127434 1.005082619634475 1.1703756645533687 2.5669359201120976 1.862044997292131 +2.146751322251932 2.289126792766244 1.6692483413541197 4.550681279100494 2.884948274984124 +1.8378093010496008 4.947873163978972 1.4498504711733697 3.5822229159252363 3.7708764862610145 +3.497094144419475 1.2890097313926314 2.55418698681232 1.1249089705809454 2.6302989226957445 +4.551762714332813 3.0237698167567317 1.495140342925882 3.741330277803732 2.716639747664292 +2.155163955279038 2.656258194525495 4.234433910969807 2.0040833909368376 2.2859481356359166 +3.292596667192617 3.93693812831207 2.2830932045807373 4.943854355967473 2.73766795343161 +3.8224820368204333 1.1869644038574494 4.996834599591448 4.118960957665888 2.7778796454933854 +1.1821701184429063 3.3159306675800817 1.5556589378399686 3.766713155216804 3.07273409738527 +2.053497613044628 3.117532119949696 2.848160295032545 2.572320337346943 1.0992074936701923 +3.601107213773987 3.3853444032166826 3.5048538251921686 4.17286486418889 0.7019916941396573 +3.659631520559517 3.3197707192739148 2.4332858577804255 2.4208013132138118 0.3400900294091659 +1.287798837857443 4.482748747730625 2.2598748917569047 2.2580765280305077 3.194950416001905 +2.244069209510255 4.259364069628422 4.56189697868056 4.916293612696718 2.0462185483033535 +1.8271281636284429 2.4514018411196155 4.828021094536963 3.4202305469291985 1.5399973540049092 +3.5196416601228573 1.737369911399619 3.986613731629023 4.792406971413719 1.955964041484328 +3.5191942661345608 4.5491245824986235 4.534874497355404 1.0731110028984925 3.611725757601248 +2.355661497534507 2.0080492309521207 2.4538279750698058 4.121176435694082 1.7031985136867303 +3.8393680414729374 4.7277728959812535 4.028464902993628 2.566397444353994 1.7108198149211684 +1.6150016706964276 2.278862647203917 2.062780570680062 4.570886299662787 2.594476005648432 +2.3067329935795264 3.794132262447495 2.3225696473432853 4.371623847458467 2.531991251967241 +4.583975400678262 3.4472703204889865 4.371555552746981 3.867261189545559 1.2435478455149342 +1.6845948016701557 2.5579167506460903 3.8276108845718975 1.4791430329448145 2.5055922407065863 +2.2684461178001722 4.334304988937578 2.1245849313848626 1.0760906238610013 2.316703085932045 +1.6868061083894172 1.7307630641696305 4.708729506020164 1.9462995956062485 2.7627796191355727 +3.122361355607735 4.283309145153793 1.1402878118080713 4.28122098743313 3.348620758430849 +3.6643413513344947 4.9689994070613235 1.1429044767128111 2.5913790773794023 1.949413068374466 +3.7128026708697597 1.7774277946986512 2.749427418140394 3.782954326334956 2.1940496305408734 +3.5380514444402507 1.6330318437013243 2.8903540024945027 3.112906993260081 1.9179753681677463 +2.5717178864353563 2.123116025944149 1.0779367749323323 3.993987512064301 2.9503551533271497 +4.219049230384178 1.6824732417367523 3.755484503036354 2.186433922169238 2.982639346535564 +3.579138635227627 2.148651350767455 4.626726079770405 3.2227439384756904 2.0043601782306313 +4.274905594171494 1.7508087048645433 3.7446563637126755 4.8056569199430825 2.738026166224541 +1.0619626974952663 3.625829520440348 3.0688027607714314 3.9033378452189047 2.696268141890242 +2.070684545048897 3.8274655849336856 1.4394314714297387 2.9836126135116623 2.3389687945032773 +2.083285654946374 3.645276707450171 4.1290218094992515 1.3045535522289637 3.227605456747986 +3.3769918296700863 4.174333601489717 2.534891067659163 4.0181894700191325 1.6840213928368328 +1.3140449563022343 4.845405224803527 2.5633306185364106 2.7138904933564185 3.5345683784382134 +1.8439452186019842 4.557983429197663 4.524698422411472 3.053838990180898 3.0869776283535066 +3.7463287937451284 1.0576364715750155 3.3387325983379 1.8627168525974906 3.0671956059192134 +4.608795658161297 4.693918888869513 3.094869463534148 2.3869740078851143 0.7129950494461778 +4.274841096588595 1.4653784152909801 4.315411110337496 1.7845539484611956 3.7813117474527997 +1.4019032663194015 1.0051660868474586 1.4600463062090498 2.1500773832929867 0.7959543183606523 +3.741759357818697 2.127142461094461 1.1534249069413227 4.412771583367913 3.637351849948045 +1.6362632290213588 1.663413834376935 2.859510061776014 4.6270890625112315 1.7677875096321065 +4.391882308199329 3.196794489569168 2.7840849621502337 3.1315235433470208 1.244567580303389 +4.64807418689203 1.4047096881893064 2.0679742124835676 3.016118958349701 3.3791110858565636 +1.2502065555028468 1.7793933339629837 3.0173157197687868 3.2892789298469 0.5949812048569348 +4.772773691184211 3.661387710613236 3.909860392955538 2.5513727852884585 1.7551830041322565 +3.114589294295258 2.1906887744360626 2.3220183589570578 2.407449595356436 0.9278419406067059 +2.3926834347050674 3.205065105092114 1.672139999707161 3.4774103214571204 1.9796375711154932 +4.423651040591938 4.613476121486087 2.69670614999268 1.2390592330653307 1.4699551339290178 +3.001946470048386 4.892470565659398 3.8321223959932915 4.758341294892013 2.1052227446906877 +3.978949400122001 4.526625932977404 2.1458178710162144 1.2937970924678122 1.0128617831267703 +4.7137960247262685 2.4905072576405645 4.402794611351611 2.701137506230551 2.799758890557981 +4.236462950239216 1.7656089726238795 3.566929009500392 4.929005020136485 2.821412844205516 +4.465188242204222 2.776728702245145 1.0462442098132745 2.5356889524159376 2.25151976659001 +1.6613699130438802 2.9554349489925795 1.3329595003539128 2.3309472548940886 1.6341921170648972 +3.984538509223206 1.2487021516849977 1.8101087662636801 4.314748051823299 3.7091803037863404 +1.5449808735899428 1.0709809353193611 4.625949620848871 2.6443770742898516 2.037475324698906 +2.5669303963743695 3.705778770838592 1.8134220576532787 4.194125821185656 2.6390767381258597 +2.2598082673234963 4.66296521871866 3.0753332379357423 3.8092528620525843 2.5127278698065783 +3.3366470795628493 4.808488714835239 1.8039352100269364 4.513035577722857 3.08310599908136 +4.891217785335604 2.7343361515317737 4.639014104272265 3.2386400060437253 2.5716115564427056 +2.588118915105688 2.0205617590719274 4.714426371696897 4.7025116874439705 0.5676822042886118 +4.720562874944848 4.668603316544327 3.9193521596065466 3.9417744019158696 0.05659110053140153 +1.2565932081005786 2.84516240865028 1.4477691898712175 1.2059361266350979 1.6068712877543374 +4.678207872038346 1.0099406044712822 4.851651954016177 2.555346964200913 4.327724731606022 +3.9812407190003403 3.779599740829142 2.7442200604462967 4.465947515320687 1.7334948840265103 +2.9619325337437576 2.8545387681922447 2.2217329057027455 4.788117117383685 2.5686302464240605 +1.5632354418822847 4.988602014086801 4.019860507697208 4.708763116386713 3.4939552026657874 +2.264582592844033 4.925188457769794 1.6824702859362382 4.188613614629669 3.65507564250481 +2.826641001757872 1.9739009937576504 1.1517832560971928 4.6001353881512745 3.5522243662086086 +2.1652629778859147 1.9620302402789527 3.3162033376954914 2.1804208158275507 1.153822119139653 +1.188617109638224 1.0999096151695902 2.132116237868409 3.7192002636109494 1.5895611735136372 +4.5677596443075466 3.723832691173616 3.665429559340469 3.769210232978016 0.8502841468865467 +2.9480284875471487 2.086136939588404 1.1882942334180924 4.177215316377236 3.110708324578243 +1.4419665715547567 1.6143151282024286 4.252047305855391 2.5197468851813727 1.7408528865030257 +4.504080801678864 1.5280649997404914 3.7650060053297474 1.7421593393524626 3.5984133569452954 +3.6562289055193435 2.462003345116049 3.9617576541958566 4.998900750705622 1.5817207376014353 +4.368769534287317 4.4657714856861634 2.7038387267435087 1.0067104373227753 1.699898176164481 +2.5882503158001016 2.828004959814247 3.496757649434336 3.7172282657361397 0.3257139572981894 +4.018933209823123 1.13512145758646 4.544959252534317 2.9812709283921524 3.28047121575496 +4.983362990876595 4.366206052093776 4.051398290688084 3.9638124356758953 0.6233409733733178 +4.86896965097476 4.654802233630463 2.901831020120235 1.9124388168182258 1.0123065813313328 +3.132605619253397 4.2083124540159 1.0262851671561517 2.2479779522874423 1.6277832950354947 +3.9982873639119534 4.457005504847316 4.918210489089544 1.5540576381706623 3.395283012823649 +3.321860768999856 4.9893823976091785 1.9825368564096282 1.2783730552516155 1.8101035994498185 +4.9765676403266745 2.9154144815196266 2.9597876153478877 2.0070391968232637 2.270700749341807 +2.389742833444986 3.5132059015847545 2.8622089222520333 3.1734184920690165 1.1657704155706192 +3.9129546364463317 2.6560047325094214 3.7881025675254736 3.331935659174749 1.3371654008690421 +3.654222576743619 2.245724227371569 1.8785640485971764 4.516769332595058 2.9906512201689672 +2.0424608454010116 2.7344242892764954 2.4447303738071637 2.5417789806170172 0.6987358869728628 +2.524129489720483 1.7277511752038985 4.053966978381689 2.279830164349769 1.9446798849002396 +4.299321472117524 3.464910544127357 2.192070351235424 3.6987441696313677 1.7222971845152695 +4.183093511495933 4.077979250454445 2.5907227030209388 1.6042446082925634 0.9920625178148924 +3.544885683064855 1.7784222365100226 1.740216581084482 2.8354791894560076 2.078459354741193 +2.6087063583280337 3.646737870759343 4.783236350355372 3.9905220094306704 1.3061031533183418 +3.756204078354518 2.430585449747591 2.5971193372654233 1.4927694027348934 1.725356057863795 +1.7560336111206718 3.2602769516136987 4.766640114137994 1.876707785733065 3.2579835619870083 +1.7745986532317835 4.8395677915537245 4.050041221299555 4.92048829007344 3.186175437480333 +1.9289307497358537 1.0426157439758938 4.129367181849357 2.0642326686956864 2.2472950066365844 +1.6788444674870031 2.8149093790880935 3.166582039159481 1.0901629851502812 2.3668881619594226 +2.7321466254006843 3.598765274036228 2.9593349923153776 2.1352732027753474 1.1958702752150057 +3.174315542148896 4.406907571189944 4.1286021778071635 1.1620446599090588 3.2124362432666724 +4.081204956046349 3.4792477393121497 4.393318806119998 4.893921154483065 0.7829145559797708 +1.4774047721945007 3.8350630944204864 2.03287965473306 3.8313461979940047 2.9653051565716506 +3.431231552091191 3.2192532300671277 3.4698232931027735 3.3286103433414165 0.2547074914258333 +3.4139745043098815 3.0921031912603003 2.112567905020101 1.334314686656251 0.8421871609434282 +1.9177303201629043 4.680425915590908 1.4976458176187006 1.945626638137223 2.7987807646455156 +4.514098328755077 2.42415061990994 1.8430216045091674 4.867241960262433 3.676110741783964 +2.376723358582671 3.642039544558089 3.5829253589502112 2.9154738638041318 1.4305651152129064 +4.3226667953630775 2.7016858004167656 2.0029218920511127 2.103240967753876 1.6240822956140466 +3.6947488417757097 3.8978714570892268 2.8132805392171787 4.889067317092609 2.0857012115962976 +2.605855210705457 2.3679743618675073 4.687259609817986 2.2683931609514483 2.4305353722371703 +1.4248913386111162 2.1831087891318317 3.2964989072564053 2.4020645818171693 1.172564055733449 +1.92594899070613 4.261346607341682 3.441248765322496 1.3574270561703408 3.1299193189794567 +1.7113777100834424 1.5425457049057503 3.5182804594934365 1.094775031200545 2.4293790990575004 +1.6467206687696967 3.338153099547179 4.811332019340517 3.5041514188070786 2.1376774289627476 +2.526482922894912 1.2374356593663332 3.803319029951679 3.1460181096680886 1.4469579632512386 +1.297549054038099 3.1398980209506884 2.054784217941692 3.2187288436727446 2.179223900303061 +4.448083418041251 3.224904290337784 4.3325748659597565 3.837231071701871 1.3196714185581244 +1.2136551002082703 3.3702654221922894 4.008922446903457 4.493045449908486 2.210281240685588 +2.7698108169248754 4.384002232474224 2.6811457913124417 2.042346772720092 1.7359948479726999 +3.567021114674318 2.669462580767016 1.5930121443419902 2.3826089811841027 1.1954390350582063 +1.0872492586163442 2.767925582572784 3.105947683796761 4.14715166869834 1.977063136089149 +1.2831471066596865 4.19360756008998 3.5186370449918543 3.504893260139999 2.91049290371987 +3.697328134410955 2.1694440207965586 1.3317797690790272 1.143426209541318 1.5394502031653299 +3.8823463406183407 3.1450418389684853 1.2386262874508667 2.7281843366534884 1.6620472647002136 +3.2946270386348533 1.5231751466317585 3.4314905804268134 1.5806025564253958 2.561996932682242 +2.6672391743560557 1.364110943727907 1.9213371144365787 2.713811194434769 1.5251748597878958 +2.2462747819499116 4.2735340084618265 3.2464283275657673 3.2205448173525655 2.0274244566884962 +4.924277671641914 2.03423432463729 4.907483482127679 4.102504448018134 3.000056964946103 +1.591536240775509 2.7122574024440658 2.705679438450371 4.785102246432389 2.3622055661113706 +3.771013308084329 1.8068512677760444 2.0163621332889687 2.1464241999989593 1.9684635281825462 +4.087654747823304 1.1766068977131923 4.3409797204999885 1.9728544804969337 3.7526279775605564 +3.288409759186145 1.2260228791905186 4.122137481424619 3.881757243664648 2.0763483092881203 +1.6284810072711124 4.861584731398394 2.3348988970703104 2.529630642327781 3.2389628191099566 +2.112930108820135 3.6599852572794687 2.955690157425637 2.595124101546647 1.5885173946251459 +4.1108122959807885 3.4956308540508956 4.241535613604704 4.737680014824885 0.7903211204042789 +1.4035905183034743 3.8639272960900106 4.863794978415861 4.992294931403472 2.4636901789890007 +3.3313333037845965 1.2950104225180228 1.2323720165628664 4.505239947189563 3.854643351607834 +3.8491132111803674 4.0606615453087285 2.359075090411975 4.547057064487985 2.19818511880916 +1.5719405569929572 2.501492424547015 2.126742672340626 1.8804160502601595 0.9616358350325813 +2.6205282335947366 1.5701068246304417 2.1237302814546 4.180049325698077 2.3090762542906504 +3.811203652075367 1.602445092689606 4.818436359279152 3.6855224357666074 2.4823594283963897 +4.71613467434081 3.107888788150647 1.0341169527781298 2.3488166925291236 2.0772313872433457 +2.7386037575303077 2.875608011147527 4.470273171424353 2.4328421611648805 2.0420321464355413 +1.643035779445138 2.8603576317860377 1.0052840886512366 4.6594435159550915 3.85159104946778 +4.362386342942816 2.688218439771213 1.532488919017577 1.3725344767663135 1.6817917800982127 +2.8391033477908225 2.332437004457743 4.881657560772014 4.088537504865181 0.9411430319288199 +1.8442869442529104 1.5993250219057082 3.835992128757452 1.6608188951143963 2.188923237520499 +1.5797880449392556 3.015991816246282 1.8202844193113972 3.6271503729958763 2.30812604666657 +4.419711111347841 4.7933160556721575 2.700978397463562 2.246546727817179 0.5882931214974176 +2.3848846524065004 4.33368125001283 4.987845604903708 4.032635784661798 2.1703073467895253 +1.8780373258812797 2.2775624073068097 1.248002069261147 1.7053451656988519 0.6072750600405916 +3.2433225994602695 3.7170554250162837 4.002089035374272 1.6816207824135088 2.3683318397150477 +3.4099790547707425 3.4061565276381476 2.0982840639256777 1.7465250781024793 0.35177975470604406 +3.2196941082104233 1.9924906878598443 1.9560580369243747 4.8979445621724995 3.1875891457897527 +3.6936870502202876 1.892365270514576 4.141199784891425 2.097778591510239 2.7240283272391905 +3.1655129490885137 1.9312104958937777 4.09238833717374 1.1936363427936034 3.1505976688376705 +4.0138070414600495 1.6154386327177268 4.429545301341209 4.954489220478221 2.4551450348792243 +4.859317531461139 1.049035138488268 4.17376094010749 1.411715337145813 4.706075629124441 +1.7018546355100832 4.001350292907936 3.8653495100042954 3.7726192997648744 2.301364632187309 +4.276736862108337 1.8920042659045273 1.4353670670317222 1.5136934449172483 2.3860185617194243 +3.9736998196158306 4.920408771068228 2.7571560768473056 3.93140971305103 1.5083532215292832 +4.4462212029156944 1.974467606485021 1.9366719347805326 1.4567803985891215 2.5179082048351407 +4.59061756893885 2.831118108071452 1.5240551809301972 3.8814094293995556 2.9415909650339214 +4.410669839154981 2.988447418760985 4.164618533625482 2.2418660943621296 2.391588082376338 +4.859130922754545 1.0622492306837832 4.129032873343058 3.9107448663756044 3.8031513561213885 +4.642455421058818 1.1530781168999495 2.0816911441592896 3.957852421494597 3.961784334028225 +1.6270989711596524 3.808898553412996 4.280819049433057 2.0639871663338156 3.1104007804535727 +4.552681220742538 2.049825697892568 1.8493100592929128 4.642153297631443 3.7502345422911674 +3.451164385671347 4.073929608431731 4.055384614471183 3.654884173728676 0.7404303652030578 +4.931790234232241 1.068335540599131 3.326737134846516 2.680601075631981 3.917112964515192 +2.1387841083653503 3.1868154152236867 2.980498995265706 4.154396690853831 1.5736598806166162 +4.9189810511265275 1.0297390458085176 1.4761490481572856 1.9488758859906419 3.9178660057661467 +1.2208513439181092 4.960428573847187 4.791266709780849 1.9574775473164183 4.691993060087034 +2.1691332172500077 3.627122308414492 2.495183976810073 4.148851984969117 2.2046201648273422 +1.6646776089953996 2.9347876214282707 1.0888166297262627 4.592710877506892 3.726989984332184 +4.9981446823402695 3.234849504899557 1.1021840071270264 2.2413112469891185 2.0992428995667707 +4.516076978800227 4.484246449144087 2.3720671148842505 3.386437614828506 1.0148697915374902 +4.3972454564260275 1.2908074957214697 2.5801007297003253 4.85643092324767 3.8511863047328134 +3.936091205311907 4.989132266910239 4.990321773122433 1.1484774657992465 3.983549065735694 +2.0737956293002595 1.0273407939818537 4.014617189791126 3.5309199473563435 1.1528359574112375 +4.82703509751161 1.5953320597230496 1.4092913182137843 1.6826366121878586 3.243242540142439 +1.0938159885330632 1.7066086150594568 2.5845347237944387 2.061553366659993 0.8056204460136938 +1.3146019135361957 4.8851267825679585 3.446537020418043 2.9451762314824723 3.605552728924705 +2.146312155271371 1.2416571603819748 3.2187983264625903 1.9502332759204428 1.55809433194378 +3.042391263063162 2.658324964855137 1.4218719718409214 1.9937978193674417 0.6889166106925745 +2.332649122607691 3.7909679978599558 4.409458628464799 4.922757861538549 1.5460174787469672 +3.4120464202692724 4.91270828706863 3.0505267200988784 3.8018262001449914 1.6782243435200466 +4.348747393062357 3.2851270802550006 3.0765883170322397 4.786698982087225 2.0138934074451966 +1.177314405313611 4.942478388928016 2.6604527428587046 2.532693781264328 3.767330908717042 +2.385713998370073 2.4786699853834806 3.5832896216734618 1.4129885562443327 2.1722908484188874 +3.6808112452767365 1.2108855308934108 4.336246579652 1.0967939758527736 4.073645321678554 +3.0278318105305937 4.702590978325091 3.4933754067063245 3.8763626701647733 1.7179922916250552 +2.7922073684062196 2.232830641888278 2.005757049164697 2.8259708835505872 0.9928006125541686 +4.864540991974588 1.9145549209357897 2.7534072942835253 4.666598522492579 3.5160657694387614 +2.9011241031736072 2.034878800906937 2.0968620001722194 1.9988385851468826 0.8717737743200951 +3.5254497236664064 1.5178614261992092 1.9162470522789126 2.118835684564707 2.0177841624065413 +3.116884891781891 4.3572127632125675 3.1490263323796945 1.0640905453060654 2.425978249050903 +3.0490271749689013 4.500214261209037 1.2697523427032746 3.599062367936587 2.744381378912659 +1.7591918743940416 2.505801903852013 3.6636046425973845 4.808632392189212 1.3669363860189538 +1.3863615850694067 2.6528370307068614 4.97864562978814 2.6654098649446647 2.637237144845637 +4.422674142998673 1.4132749024355369 4.326171180110716 1.0987987529758478 4.412756119766012 +1.4769897768536793 1.297972326753765 2.885324074545032 2.6423801163702785 0.3017764309118453 +1.5281277538229432 4.739424109314177 3.2659245859789894 3.5991500904345055 3.228538914061733 +1.868306507106571 4.751293782167227 3.8355856312392937 4.0106630670046926 2.888298415447382 +2.4131751651927784 4.65905851828057 3.6577520314175054 1.9400421553644591 2.8274580905765934 +1.5636546216672058 4.075970059283883 2.706864061334524 2.454448655081516 2.5249638404145407 +4.510884218379676 2.705685697953097 4.456731980573732 3.8755855810802706 1.8964368789375838 +2.494133128141642 1.474629760379262 3.2197968623954765 2.418229445637232 1.2968798866846996 +4.721825907943812 1.946552051443621 4.31005489819866 4.071564437656129 2.7855022308989863 +3.4410294812740894 1.1087399710616923 1.3635226200739314 1.8812031991509022 2.389051598731231 +1.2846253898595088 3.26483553575557 1.4628951315960723 4.036171476201872 3.2469960529106725 +2.470089686766352 4.977765161739652 4.774499482977593 3.196118943175669 2.9630594688949423 +4.3766587095106555 2.4594139849000314 2.237693713698761 4.679793157453536 3.1047829275546217 +1.679880238727541 3.8224918441354334 4.3143252466046444 2.5797241494381113 2.7567418192351503 +4.583370923897931 1.4407557529515702 3.540686542433185 4.629073427547426 3.325750460324843 +3.303486435065244 4.502432185472459 3.140920454855059 2.773647132378754 1.2539380390682404 +4.39040770405486 2.4741745774127435 3.0793960977719808 4.324739509439995 2.2853510908885646 +3.881776280841525 1.0661834736359328 2.137322452088767 2.802667350190168 2.8931378621519976 +3.8281543606831776 4.005995371986993 4.096460197132503 4.269412668437985 0.2480725350219918 +2.809639041205597 4.694821494679319 2.1617972940982404 3.730438259887808 2.4524574129714116 +4.841304040292842 1.1372370707611053 2.643845072306938 1.1535346922485141 3.9926353632263876 +2.7934113943091665 1.9088175706136306 2.713791225313394 1.1051552239126803 1.8358148103560896 +4.135868291551509 1.6681601363303593 3.1699287634589925 3.7396557769437244 2.5326216474710943 +2.212048728748559 4.661529121989505 3.568264894153405 1.4455352801695849 3.2412860427545915 +4.084919796067499 2.4792440372876037 3.744912889878133 1.2935059369362576 2.930459126359753 +3.868907660512198 1.802871250787799 2.416404950381229 3.6928648653205953 2.4285502590545454 +2.933237020017424 1.222277544499252 2.335306148521687 4.443154180909106 2.714849103450306 +1.19236350205103 3.778401164588172 4.59586874902657 1.0827252091221764 4.362312268056075 +3.0769870032778726 4.697936670890437 3.300408087232396 2.802872052384974 1.6955883730743668 +1.6662471176758298 1.5510904268809789 1.3793097424146055 3.375197977228286 1.9992075703394308 +1.5734956748447981 2.6466688359787702 2.773912192642352 2.539512006999942 1.0984735230343419 +2.0039829575261385 3.2170653040460957 3.948211261706892 3.287269754394047 1.3814530232792357 +1.4882766216182097 4.587246997590174 4.5595991778546825 4.023514433585641 3.14499670018743 +1.1117483410794193 1.0880213500746874 4.987170307958424 1.9182974836050444 3.0689645456011427 +3.2896567141320343 3.751410858185249 1.9443988318345111 3.8679585041862063 1.9782059302934258 +1.4460106563579775 2.537670196298932 3.304207285107625 3.409792799139483 1.0967537790759911 +3.6387523400993036 2.296207716534368 3.582631591099487 2.2005341381946235 1.926815880043868 +3.021453648671796 4.050108933179938 4.243765208150979 1.0818768905417815 3.325006680802318 +1.508594123785906 4.15637112877236 4.969370692754584 4.935514802312445 2.647993445885519 +3.4064575271609123 3.4876299782498537 3.3018981619466015 1.54225254771305 1.761516861828793 +1.4119555914824282 4.386872464744868 3.083676463002627 3.243036583022623 2.979182111028857 +3.412609986196502 1.023123151257876 3.0306806796663053 2.7167500712069903 2.4100206972705958 +2.496019267732009 2.8103447855213592 2.6289934422350854 4.66061242331179 2.0557908977823325 +1.276123318291273 3.5808932763935357 2.911603249267434 1.0985566027745004 2.9324226677152083 +2.827990876491216 3.118628574420711 4.084431282343452 1.1792263633149824 2.9197064737752276 +2.925930131143233 4.33533263189206 1.0761378579899938 1.9488092839855224 1.6577004635536894 +2.7997797987788666 2.2615305068406553 4.540392719474797 2.5104925324188034 2.1000493017264956 +1.912603193898125 2.764421779435034 2.533682137706213 1.2201920169514486 1.565519466498729 +1.7818586740222786 4.058436075899792 1.1512950012411283 3.3279675382622784 3.149715542737385 +4.948010537452818 4.293795525678031 1.3016007930338254 4.051377328602908 2.8265293695975973 +2.1888043019379304 2.346960323804307 4.28758912765562 1.3199025626460377 2.9718978574962787 +2.8579249355704524 3.0119108050223953 1.9479882426515114 1.2605116645213577 0.7045109605026854 +3.3920911842586596 4.895328757749098 1.990042807401347 1.0000546610841958 1.7999443691964179 +3.3634695264306185 1.648328804774863 2.6642871996927964 4.603661626506945 2.5889922484361616 +2.2801118722374545 3.6000433304748687 1.813640902528022 2.6776735816372894 1.5775840785877262 +1.7139389461988532 3.2306956251843877 3.4655880039470746 1.387665424277483 2.572608223252806 +3.8978574960930183 2.936516003475051 2.784042574189735 2.573708659536437 0.9840822227244644 +1.445254017758514 4.263855724670238 1.0562898778407304 2.171613909325875 3.0312478086448094 +4.484960172526952 3.399926078000821 1.4695048902457057 2.8601294043141166 1.763841128166634 +1.1771918469726481 4.912791848667091 3.1050177130006564 1.8567896986610277 3.9386267338301777 +4.6236512869405235 4.351554976786641 2.5378750616737316 2.01648575101167 0.5881183684191623 +2.6618224767924477 4.82552102133284 1.9485320281493763 1.5114798824437137 2.207398008903726 +2.7771588488391163 4.679816630364838 4.337861813919121 3.1932295165874036 2.2204255740049623 +3.6243816725407267 2.895970433973668 4.274297796753662 2.9390414335760324 1.5210169255722128 +2.0096739898500466 1.7994072380189978 2.1397836772312964 2.457747396959582 0.3811994674563799 +4.283590731548534 4.740948516403766 3.418545384482229 1.6495362558009683 1.82717526272805 +3.111590687722658 2.4656057163733256 4.875374527393842 1.9113796822222455 3.0335724856038953 +3.7073185084044074 4.833579977260591 2.436885127970391 3.02000260410454 1.2682629408774617 +3.795115129963979 1.0614551210522642 2.535562022636809 2.5301534604128055 2.7336653593423845 +3.5802456641697233 4.267300974745357 2.333241476971656 4.104026026357432 1.8994006739320606 +3.19815719371459 1.9794929691840308 3.8350217591558664 4.968787888344854 1.6645023664287322 +3.5231287534018163 1.7520517880764825 4.4515178292736834 2.9836985580589372 2.300262382871872 +1.120718770721345 3.351948345748106 3.2536534025416084 4.185408851693843 2.4179647709383576 +1.9475125203313786 4.443700180635812 3.837878700012711 4.292262745955991 2.5372066720438653 +2.2318282360341786 3.3156451877271707 2.7652411938038335 3.857364777827894 1.5386335195746417 +3.592221620785276 3.456807990310733 2.274837205011046 4.968355649403398 2.6969201807988474 +4.731971108733548 1.7800679849910583 1.932160100633049 3.3033102494735527 3.2548094848433147 +3.9425074874792387 2.63663058883984 1.7386146615112343 3.0356232243991266 1.8405286432448071 +3.9360572490329933 2.816347157670429 1.70816103072716 1.2897796943183488 1.1953215598132514 +4.475396575141115 3.9004416165067033 1.7474738119453126 3.6148234744307715 1.9538597612016209 +1.6333636868005672 2.2389267613691812 2.729679938783025 1.177318717038915 1.6662928914377144 +3.3816367790037103 3.3229937791627076 2.1672492257242064 3.08359276488909 0.9182181021955387 +2.1335006632717546 1.2901040742281111 3.0489350856049793 3.506371685891072 0.9594613330883903 +4.219582563921297 3.4880725434770925 1.6175204520987747 3.194032503260114 1.7379577547993548 +4.952487263268832 2.9233299087686966 4.8466171609737625 3.753268153759532 2.304971067258401 +2.101822321566682 1.9493161499870872 3.7804611132390744 3.5584393034791777 0.2693544437705169 +4.842607538192663 2.3144900336550127 4.290059828542093 2.965567030717122 2.8540601409640787 +4.854282409092186 2.886216515433211 4.3230421249431465 1.8540343718241679 3.1574170846983978 +4.969636750301859 1.626111204916033 1.1873956437254676 4.301817904456005 4.569331361455579 +1.0919862645321947 1.9556881026421111 2.742863541145273 2.587953401475235 0.8774839124035488 +4.0144761300255025 4.590512344451395 1.3464340082531994 3.1797996549118936 1.9217302918667762 +2.129902923910312 3.7369203710431367 2.3805222642041883 1.2333900590206444 1.9744410276223905 +2.624491781014203 2.1505987543770413 3.306287155559403 3.310497637201265 0.4739117310755096 +3.818809707440708 4.209662787499385 2.2956574203756595 2.3298714020297395 0.39234771151617526 +3.304498866505307 3.6291968383214552 3.6048664180338807 3.9121154489830903 0.447024316923306 +3.8154630232811106 2.5005911672735843 3.8422037251830043 4.7734218610222126 1.6112278591920284 +4.604430176767812 4.644897064466173 2.5870999552113845 4.901601992985263 2.31485577344668 +2.5067111298545646 4.687689746567381 3.1431827216154677 3.101645062370041 2.18137413198519 +2.4113828210840733 1.5534770895177132 1.9713118903226623 4.1380498901811915 2.330398207235268 +4.796050220927457 3.002575469344876 1.3140079814315353 4.033874234879352 3.25794783893304 +2.5147728399701905 2.783485297383913 2.300980982577212 4.239351168967781 1.9569070913707507 +4.220518112921498 2.1073676925218567 4.905275072723088 3.7732588780739027 2.3972620558009927 +4.638402900592959 1.302163457014009 4.374263930325986 1.8506503376836627 4.1831948543979 +1.8180040654028757 4.059638887581945 4.339655410971433 3.5794698756668795 2.3670252901251523 +3.9941200810565536 3.5376463574755688 1.084790508572163 4.733265550394364 3.676919687879979 +2.1863168651081497 1.883642272302215 4.886614074265177 3.506850619942763 1.4125718031356702 +3.554318695630673 2.5534838134338487 1.9342035942777027 4.462752935837678 2.719417627751448 +2.0932590993941527 3.3333620636127894 3.5171989968692436 3.7910929889663203 1.2699894805748286 +2.903246321329271 3.7442966598732754 3.207573835412807 3.4350206656170177 0.8712621491462416 +4.3225205701105756 3.919196165249514 3.4867288758502704 4.308655406317029 0.9155510892580778 +4.816198793185944 1.3517245430249707 1.4419687203697502 3.0340218289467837 3.812769981333549 +2.4322732792778585 3.511656672477433 1.3637210510101867 1.3198375994011595 1.080275088502993 +2.12646042552055 4.807069452125722 2.1691944276312225 4.347330798947649 3.4539749283352674 +4.273475597797141 1.3420498391552296 1.6603443818548351 1.0750517888722007 2.9892849308538056 +1.907455315452649 1.4093167090951382 4.560884215647185 1.8286092534189393 2.777313187302283 +4.584547009454923 1.5017520490035663 2.870794605128909 3.639040872621641 3.177078389920651 +4.713962592384348 1.2904433124554742 2.7100539718503422 1.9074086469973275 3.516350917862596 +2.2643447569342383 4.7842068769047055 3.8310090844142484 3.1960101756911 2.598639782221008 +3.0472322844684565 4.098809459634072 3.314007695418569 2.444452604368548 1.3645294469890734 +2.834025185630396 2.3324015266599196 1.0634115260441526 1.624410065933854 0.7525594042979635 +1.8997937996171403 1.0399614570629168 4.164288882182811 2.222070193523563 2.124035096668493 +4.983018551165573 1.3347454478048828 3.519975996214023 3.1800069282423773 3.6640790935626035 +4.443889833383863 2.9800596492403066 2.6910378666591557 4.751999901607032 2.527916794023539 +1.4833437234599458 1.563947060805837 1.0896694786272265 2.7628258782107977 1.6750967839079491 +4.786692969471321 1.983123503969078 4.917852957083912 1.4121258609388843 4.488888973960258 +1.5022077656923138 2.459222707082806 1.5373551148976001 4.535337158030273 3.147026204052105 +3.740575523647455 1.8628674785304677 3.6539967623979126 1.6267468467701938 2.7632462291858193 +1.3689589575591206 1.4082065809977902 4.724243396112233 2.3386821699659617 2.3858840582974867 +3.0878122380065154 2.684075873745061 2.4500432269056067 3.4929891994149975 1.1183645887637075 +4.295996221985936 3.3575884786893058 3.607086587011303 3.399538634871597 0.9610854515163884 +1.776412275443786 4.140563642142948 4.517484926393463 4.05635388915355 2.4087037007841943 +2.317443495416992 3.521655263585711 4.693115583960216 2.9623483911240722 2.1084783751307334 +2.2650570931359386 3.5039852907719666 2.0724809826499517 2.6371879541233856 1.3615568451329363 +1.6509266528880335 1.7143961720952916 4.692773215777025 2.5917668536720373 2.101964822130484 +2.0360547940506186 4.243440230432714 3.3347315065192302 2.5287680578928797 2.3499207529773116 +1.3050243542279705 1.0312719669619699 1.02463073435496 2.9578566511644504 1.9525119244085882 +1.4085716701004811 1.169434493247389 4.995418898819473 3.4570601390824196 1.5568346935410298 +4.38739002796234 4.585489581127066 4.513291144308412 4.095997374646954 0.4619280497678554 +1.2544760060121303 4.47369702498592 1.2336521814393424 2.26752536381435 3.381165143295558 +2.255714261845367 2.909163124279262 2.234547479795658 1.3480339812045044 1.101318118892302 +1.6958136265874884 4.876599323255213 1.7064505853401748 1.4898127888382136 3.1881545732600873 +4.743862910824263 4.485924192780753 1.2853447613693318 1.6145720734531932 0.4182379768599376 +2.4787017601337245 4.5053582045889975 2.07267230756959 3.9700402245620663 2.7762098905314163 +3.8436365169942377 1.7006381681881315 1.3080928734039383 1.5976061940835908 2.1624661583101497 +2.8985777488971967 1.8029494705590232 3.878222433842784 2.967832424762568 1.4245038760661013 +3.795714095202501 4.895689019534761 1.3149982708193404 4.720435146034389 3.578679245927776 +1.5702993749395397 1.2174147188653506 2.086682475707142 4.233527313163631 2.1756540020431046 +3.3177703171306496 2.6250923053554502 1.6103110554728586 4.7602567385483425 3.2252070684411445 +4.072326876479623 4.159406683576657 4.260512872658115 4.092195767163356 0.18950868266702284 +1.9361296811638091 2.3785020619918686 2.4816923483690956 4.924391397549574 2.482432671430727 +1.778814538750483 2.87005365894854 3.4693194867207353 2.7172741975426042 1.3252829639083303 +3.3723980567697276 1.1208317194533217 3.203832703943668 2.2801678269635652 2.4336613931077355 +4.290383637059481 4.45854440941706 2.8289225504740028 1.2132607590841924 1.6243894451506475 +2.5016749284153734 3.4910754426601995 1.9102908930456457 2.4938873759167683 1.1486941422360746 +1.0508814516274976 4.454697655242585 2.695806798911381 1.7679921158381462 3.5280029526800165 +4.03325493132289 2.68189338783268 2.1300381233532866 1.1289228509454938 1.6817876827567662 +2.435563622148212 4.3023223122603245 2.3855862606088203 3.3901033377134526 2.1198685254760314 +1.4429036485397577 4.066938349873395 2.5875750014707513 3.5024658829880457 2.778953659003079 +3.2883108310586655 2.485002986197304 1.1792947276819974 3.735687448725117 2.6796356539309687 +1.3937737869958968 3.3724650733204236 4.867950762521289 4.212552483556815 2.084410254879352 +1.0449034856531418 4.942303768825283 4.660366605362906 2.6436481975056543 4.388266412133677 +3.6949169855498174 3.374301519055522 3.8726044310070566 4.627705832544817 0.82034895255595 +2.030832565080201 2.21523919860225 3.9446818627405755 3.004093916820875 0.9584943873056206 +4.339669497555694 4.323016300358114 3.3451731059601384 3.2692054377051356 0.07777156033540564 +3.3429536991801387 4.262998466460012 4.346729973197997 2.2155126677599886 2.321329269362173 +4.371974244276812 2.651922760981234 4.503537315159615 4.359673565517783 1.7260573233958152 +1.6567393207000811 4.737686594111937 1.8039512327273362 3.052434889584875 3.324296548592547 +2.6005910981875977 3.1511279591439463 2.4344076646193726 2.2426423635476924 0.5829792157245248 +2.960288955169001 3.330056030182701 4.930658851751106 2.618047980391962 2.341985638746038 +2.9891532960508376 4.264673840690919 1.8528490648760751 1.6909307005111471 1.2857566708042167 +4.672548889200685 4.669139110092907 1.7479164615270868 3.878506811956739 2.1305930789189924 +1.0608873686249911 3.8209472538901834 3.5422961325902853 4.416584705170758 2.8952221121003663 +3.732025945773172 4.8955431355370305 2.910603098192028 4.875148193093061 2.2832454271881715 +1.060765407357517 4.680443659067275 4.487781371256524 1.072336785902316 4.9766788485420665 +3.224843902174174 3.185485837645141 1.4112372839421727 3.318884140274716 1.9080528257149765 +2.114348705093097 4.973413597776647 3.1370632484071823 2.670457702717015 2.896890193957033 +4.776189059466434 2.800749908755815 1.3781250757047276 3.6277069771723602 2.99382340320384 +4.0718848376693675 1.2650206828743875 2.5997072389078677 2.4090260785847026 2.8133335544110523 +4.74112687624413 2.123716001934139 4.051399071193053 4.512000561399349 2.6576292852345778 +1.9154619981994863 1.0563779215919111 3.1506598282726044 1.8205621705112849 1.5834093690081659 +4.508738434263494 3.860024038202002 3.6874161253295146 1.111884247926024 2.6559734221522198 +2.667545389411972 2.4933514775165495 1.2946007986356745 4.450831972848045 3.1610344420792744 +2.8092740944450854 4.185269120753079 2.2835293217018617 1.5852513130075176 1.5430341829818535 +4.054427056637163 4.1519099751917405 1.0331451463069907 1.8254149438655083 0.7982445436915512 +3.675780032119502 4.4321188193798875 1.6387861662798149 4.108959495991325 2.5833707902530287 +2.066594764446726 3.9371556185494256 3.545572111357745 2.850239987940103 1.9956163636225044 +3.797486403410753 2.123555849287158 1.929693077812316 2.0719827507878743 1.6799672172587228 +4.224617052508152 3.457924822193416 4.511249226775977 4.82984311892208 0.830252397851272 +1.460108712469406 4.44751580863692 4.2094083519279835 4.214594364524416 2.9874115975135846 +2.0704479450369098 3.459456081228099 2.8324847705868343 1.007999602554917 2.2930524919359727 +4.157606515253615 2.248691452113188 3.353978982251575 3.315303064202193 1.909306823148491 +3.8720241016654446 4.125274621830279 3.7082302768004736 2.6844355412608087 1.054652305967465 +4.613584635563866 1.6345007778834155 4.6833447061968565 1.282748533848745 4.520950669768568 +1.598217281528127 3.4296275524793676 1.4797068830914322 2.7686604160999853 2.23952334008845 +3.7054946814588514 1.3376379862858006 1.3732656723388401 2.6362938647822576 2.6836515317348355 +4.455911287192459 2.628188862652836 3.189586778608045 3.420527909695182 1.842254886597618 +1.7730002437842494 1.4675266597332857 1.1340102295093293 3.7847872195692824 2.6683202134646895 +1.4492485330211085 4.197508118182353 3.363829721533395 3.125527768417907 2.7585718348974186 +1.0972183360031118 1.3990717443469074 4.006369412037443 2.6246956008669993 1.414262352112586 +1.7118997925868058 1.6981781603481445 2.0526576721450134 4.169368203082133 2.1167550058926032 +1.5383189493837603 4.732762799175003 3.640613214215646 2.213321747748805 3.4988044300472354 +4.156275290294154 4.161491062769792 3.780390957240904 4.266832199574226 0.48646920408727184 +4.4727931101099525 1.3340827828016555 3.6236132073276686 4.404238515819154 3.234328120492598 +4.806223909869629 1.0310978578588026 2.570780005008944 2.3049623753154593 3.784472977949071 +2.995109484028503 1.4226502368547278 2.216931258612194 2.2565011726826016 1.5729570439531573 +1.4339146946495465 2.394961708203214 1.114118610570062 1.6346123055287163 1.092943296219953 +2.9987388886156823 3.37150566682069 1.6118026976942312 3.570216544024966 1.9935746448109948 +3.1554627049184467 3.745321241028448 3.2601739707139368 1.0800885547291013 2.258474156064578 +4.790633115672039 1.097523870837016 4.90549857752994 3.229665596297087 4.055548307599566 +4.266097868939337 2.6523187878456063 4.367461487209612 3.3264206402637515 1.9204293706318594 +2.883272926666806 3.266072637065755 1.5948149278245296 4.388131113291429 2.8194238649541274 +4.907736049306681 3.505953762401831 2.764947624274505 3.270071225310265 1.490014574493661 +2.540442859790455 2.9096349825775674 4.481464020450591 2.545927002764006 1.9704330413295283 +2.8638786624480113 1.8438678663156614 4.410642536401847 1.1870689975042024 3.3811016525546274 +2.0280207599295683 4.107437687210746 2.3435844641451795 4.562767484612504 3.0411754365366646 +3.9056082324654575 1.5767878842001748 2.52008734169131 1.126396743728277 2.713996628101256 +4.576157306457206 3.3546996176304265 3.605875241300632 1.664286814001127 2.2938449177347238 +2.618648717850518 1.881663176483102 1.1126812350612156 1.6024011065228838 0.8848577516691912 +3.2233826633280116 1.7482119900658248 1.7723143505281889 1.8919815629131973 1.4800164718586115 +1.8376676784376764 2.856258738468714 1.217168501502472 4.821935014626575 3.7459136885032547 +1.0853860125414108 4.886722323601168 3.2790919578912847 4.652746816354076 4.0419160580051425 +4.564324025644488 2.4925190633138374 3.1602048410072596 3.3830817122382495 2.0837585996625485 +1.5526442602507968 2.542794126463494 3.7503522724410807 3.0700976936646156 1.2013088901308309 +2.67205312692732 3.148971002437812 1.7576078761224943 3.251049204570317 1.5677428556678035 +3.5955732270927983 1.168232627360144 2.0345369467085734 2.7450551561906225 2.5291932534142303 +3.246237226138164 1.9053293367446824 3.323261382689349 2.8504359469581457 1.421829054602586 +4.380174246581377 1.6119995365907998 3.6558943804864543 2.7616969225652657 2.909017070899401 +4.7425021717883595 4.694168202508567 2.070524635809061 1.0100287778438441 1.0615967395144552 +1.0802114092016835 2.077775782825322 2.5394595184394873 1.0338087345878537 1.8061337055811124 +3.857289980639012 3.6216122262795185 2.554002529897678 3.2384508632297293 0.7238877847435725 +1.8168036760040618 3.415276756319709 4.08991367070059 2.2123517301889186 2.46583759176304 +2.442709540968104 2.1255027104037327 3.022556343701049 1.5706199610266336 1.4861828395895171 +1.1896861631255846 3.6476405141044332 3.5935593818481397 4.623950344294266 2.6651913865586665 +3.390877887178778 3.374700819041717 1.964918328120588 2.668579742320627 0.7038473437951656 +2.515661926764556 2.4436808035816022 4.600870418533015 3.0867999867874545 1.5157805099620683 +1.0843755081503876 4.7122025879579255 1.3356081799169255 4.806021199491324 5.02044777359713 +3.9138100591329334 3.9114778636491785 3.286584528461483 1.8166225340535682 1.469963844500765 +3.3844302383005687 1.770415970960923 4.472141532127236 2.856174364459364 2.2839421932606916 +2.677926940277692 2.639044570055779 3.7646447797012756 3.067005962163387 0.698721517093711 +4.570225497427519 4.057226251869693 1.6672294925900308 2.853723618571931 1.292647104561973 +1.706613263784591 3.16421620752272 4.422965891308857 4.713962311937927 1.4863664616819736 +4.683356676594126 1.3329252227843331 2.446240725537616 3.4202577322263603 3.489140303283447 +1.5525633764318285 4.787619454678109 2.1248363353316733 4.0614913603522265 3.7704403609307446 +1.69427138766644 2.9294012707657417 3.4004113247442875 3.3822545250374803 1.2352633312377115 +1.1363490851054858 1.0717847423714915 4.995936926375267 4.4521223952490585 0.5476338179994825 +3.8384531307852736 1.6844897659021703 3.7300978248967014 4.394712079249112 2.254167315073784 +4.315880587422453 4.781797516794631 4.491996675612523 1.5558155380641447 2.972917465650617 +3.935696311420214 4.831432664535315 4.489478897629741 2.043783810770487 2.604566772455534 +4.8929791995968905 3.5685368066289267 3.3114392475828933 3.270784059422227 1.3250662234828439 +2.5111192748800804 2.754736120313925 2.5629354035199245 3.578657759440735 1.0445291148151206 +4.7139125954554935 4.520475428307325 4.025747758664277 3.9683357666102324 0.2017772892719153 +3.6789378609115055 1.399131130407191 4.768117227007611 3.983803903118544 2.4109471413705217 +4.405546335978025 4.455247851874942 4.577283736578588 4.316757463044876 0.26522477237960607 +1.1218022424587226 3.241449718328643 2.8586089927419707 1.4640093574927837 2.537284683396581 +4.320367727917688 4.853852553375086 4.926990550344794 2.1357019708125846 2.841812448635597 +4.30425213740147 3.85362935627556 1.682252754149598 4.5634563870337645 2.9162296317359115 +4.127856318836957 1.8760909153939838 3.409485580011298 2.68364874312525 2.365858521958454 +1.1992948792310996 1.8617189228788296 2.549959912177504 2.427484649041077 0.6736510993703987 +3.054328599960472 4.796484691497358 1.2983197350320665 2.6234283022128544 2.188840003767977 +1.1693822899815611 3.8095738849538505 3.727364983567373 3.9128998775619563 2.646702638199445 +4.3071607566330705 1.9331565459149647 4.448499057781374 2.0715983147303416 3.35939773394337 +4.575682868001657 2.247448604978157 1.1655262959102783 4.397516141871675 3.983269153335505 +2.5632991918047603 1.9607812172111734 2.431742333675173 4.8207571841249575 2.463822206527485 +1.0147394978633346 2.7526642069548974 1.1494919410467275 3.989234378903094 3.3293421884560637 +1.8577916040407243 2.05014041952333 3.967241928140196 2.1353913940813274 1.8419214005894287 +3.1193279669311416 1.7898000498999935 4.5068665946802735 4.034900618160083 1.4108140788771002 +2.3417430712647973 2.3771790630193923 4.339251905319394 1.07007241635324 3.269371536027778 +3.027705198099561 3.3084912109060354 4.373042955332733 4.578521758151605 0.3479401146686519 +4.552637896297642 3.5666397173241924 2.738335701812546 4.146391893262754 1.7189574303106587 +3.1651990479636405 2.062401266523684 1.0433019073002257 3.121630591979677 2.3527883602887676 +3.3691075192130713 4.273113155001446 3.1742734430581137 2.316644802349993 1.2460951307584835 +3.419045134782605 2.5925722735966836 3.6483304140496955 1.0610149956650679 2.716110907987313 +4.364802191884364 2.223844872746492 2.9106062619237565 2.2080539929245684 2.253281592044352 +3.2574360073641513 2.0047486221104487 3.1681421291025256 3.3895757207657264 1.2721079044997021 +3.0103925638139457 2.7639158489380384 1.8814625231185818 1.232395144555182 0.6942904528302135 +1.2641917062167773 3.222987685346506 3.620858651528082 3.627198137463869 1.9588062377215165 +4.058036456473762 3.5237195282268097 4.490465472048305 4.705217066721868 0.5758583395472342 +3.0496098445753486 4.456504021502254 4.555400871600515 1.1373864803658922 3.6962377634234818 +4.426121132420874 4.582211002738043 1.4056895878511564 2.0451650130906796 0.6582498515768155 +3.648604174655871 4.412821117200958 1.0638463165619623 2.6891286542069404 1.7959872528316247 +1.6535914361476478 2.208552487533938 3.9975914766975698 3.389189540805404 0.8234893345715606 +4.263773931400662 1.5362062848416596 3.2020559423415316 2.8631825234546873 2.748537876868986 +3.5450453843821856 4.125110687995786 3.6198837440382063 1.4784266632987126 2.2186288975639106 +3.9587139575845796 3.832613953224554 4.572438133290513 3.9297038898220853 0.6549874188307211 +4.046326894920687 4.306855766664542 1.626729668768276 4.346199673082147 2.731921008626532 +1.1331203481550154 4.871305358028669 1.309328292425536 3.6615630662666954 4.416676986073541 +3.7583048381538022 3.0240995574660015 3.382653429629751 2.156722830745213 1.4289727875195015 +1.576744499388567 3.068200984828024 2.0520052266192765 4.607491342152022 2.958876769086549 +3.8057017069060532 4.408809951803756 2.273676265224922 4.76582068556678 2.5640833385256108 +1.8170298285681419 2.4198975379428647 2.5995988084778294 4.862183648731543 2.3415250659244813 +1.8554462992802963 4.46806474609074 2.992515270501272 3.009156471010289 2.612671444741684 +3.878532750648433 1.5028626006482324 4.739226752080855 2.0117604830570506 3.6170265288306367 +2.637279282163114 1.6724100358661347 3.7558407544677155 1.0993410182574839 2.8262985530433142 +4.126418670465097 2.74593074704597 3.547528536404967 3.171273847419093 1.430843980904246 +3.9888075197167763 4.414232915207914 4.609293272686298 4.947947132262044 0.5437584056677565 +4.079748044275221 3.8784308778213243 4.796912210798894 4.283646504432273 0.5513350041862499 +1.3447811202448579 1.5537265018898765 4.82620846598374 2.2962651734522943 2.5385569199715876 +2.058135853464091 2.508493780950259 1.4237240897369636 3.4197640568020664 2.0462154854684522 +3.288453912805134 3.1248696255829596 3.463999788517641 1.822164393799096 1.6499646306441198 +1.8580009289027868 4.241043027089736 3.2487205239659276 2.6032875434533644 2.4689012483419805 +4.356107417450699 1.8630236558460855 2.9997714905812725 2.3077866635747246 2.587336399307962 +3.572007263374304 4.340192454203639 4.417627638600102 4.966177791578971 0.9439363102151772 +3.001958521329212 2.592402920188422 4.531986821525271 4.127173933057135 0.5758552466511955 +3.915558384523701 3.784624324913513 3.9749245366157733 4.884666866596585 0.91911633372763 +1.7130355559357984 1.423058775892978 3.4442909472778007 3.969442013913038 0.5998918033713495 +3.6784032924365713 2.0523460147079273 4.539967788645674 4.2115330298891775 1.6588947107076224 +3.6656322749740826 1.7480585499818253 2.7316120810948323 2.6783530353530627 1.9183131956836468 +4.921007494218538 2.1203523818152448 2.4039559389516247 3.013836833259485 2.8662909419443894 +2.4435098167609284 4.62303021508211 2.5129830922994505 1.3248002701867883 2.4823552496493595 +2.5668807733690353 3.044211629829215 3.0241520413115426 2.568689019171209 0.6597661033019311 +1.235664297181334 4.8240534960263854 1.5794658798167571 3.773933126966803 4.206212493586377 +4.768324122175795 3.7406571947458476 1.8477423360392722 2.6069362026251586 1.2776833100557183 +2.93344799963774 2.6290811658874382 1.3410734155136796 4.5453681340423255 3.218717728021169 +2.385998568114114 2.9204895165012483 4.367251252084197 3.854462590536866 0.7406974991987494 +3.7383515853936546 4.919509979999804 4.068641339904524 3.3844369438517434 1.3650167796501715 +1.3136832143174573 2.5235436930570616 3.4748355989014987 4.483263559474159 1.5750204219884771 +4.0477187343659375 3.4219790503853162 4.370096178491414 4.249900031439996 0.6371791473943368 +2.0120951428965483 2.132649945672716 3.4706146834974985 2.68972276177847 0.790142806003091 +4.068868480705907 3.3613732355833155 1.4336098256778511 2.2565966916273044 1.0852911606552316 +4.074084587550379 2.3445063046954786 1.1822466062172237 3.689798412940428 3.046187305456464 +2.2075074476537937 3.459710150060423 2.526211281255736 1.4243325597426448 1.6679773154446045 +4.893372458860406 4.2913586719895225 2.751943603279368 1.690812376740578 1.2200082292830399 +4.124136311973587 3.8251180024986042 3.570583939611069 4.22485150471095 0.719359434596505 +1.2305052445293105 1.6532520346021542 1.6192894096655208 2.7531014556400937 1.2100597522907452 +4.875183178832648 4.650151766182221 3.535947520014469 3.7316306848757628 0.2982130743102641 +1.898106758036259 1.547887420406275 4.66494200692547 4.6066977874345 0.3550295389880918 +2.613394212428758 3.4453297937496434 1.394995806353501 3.9019873228008137 2.6414244783840624 +2.1685545138994704 2.801690031542714 2.628585779580176 3.574268312257432 1.1380580109608855 +1.2721122728133345 4.079752053287765 3.260595022212831 1.0634473188559843 3.5651506514127527 +4.198755849648885 2.8572176817107304 4.8309037369247 4.765421452427978 1.3431353564022388 +3.17126290230752 2.378637559829439 1.52519460343414 1.0523553398433378 0.922947399764248 +1.2496916137608247 1.4407748845961188 3.1705946883240905 1.1998735439867572 1.9799632938848546 +4.101344763291866 4.318818111862736 3.1787651681658944 4.854095554199061 1.6893864447498879 +3.814298102053757 4.360926760962102 1.7913732374315154 4.097655803216689 2.370177665067448 +3.1149730836015492 1.7395306823647303 2.507994742228125 2.396997378665269 1.3799138429039732 +4.218756235051358 4.064916037885189 4.476026914519808 2.793209850358501 1.689834334393939 +1.2238139085004973 4.418519745555676 2.93048502347139 4.184853959844168 3.4321402672168575 +3.6764498566475003 1.07270818503032 2.824746284822687 4.492816392504841 3.0922368241547384 +1.7030491430202566 3.20329017227736 2.3017387382972556 2.0581266195448453 1.519891446870286 +4.337988117778872 1.6851774443544438 3.3849526361814584 2.8359176144286358 2.7090300707348547 +2.7371800272863407 3.5965695556979593 1.2838869147843956 2.2694982221872992 1.3076620399873986 +2.2510956628753043 4.081884358478186 3.5951743824557236 1.014713619032562 3.163947692284711 +1.6740668965885446 3.8573877726864514 1.863290935690145 2.33779399563006 2.2342880749574965 +2.263365602350842 4.716108713834723 4.864020242331949 3.5141716773651996 2.7996499637051815 +3.723942977750295 1.621473666555306 1.6525420491462772 1.5302800235479386 2.1060211792430152 +4.601415526586976 3.7402545046497475 2.462107585408622 2.081788107676176 0.9414038510897713 +4.11523292596074 4.218965534690913 4.86904878939297 4.657778801313 0.23536240561584515 +3.396533685408627 2.3270878769274 4.985963667471445 1.1748353478365208 3.9583346758455615 +1.7176126738007613 3.859046346833189 2.237814694057506 3.6590450202785334 2.570142761826176 +4.996021716069977 4.656655135721986 3.527042626253831 2.545000866935233 1.039026319639044 +4.173812467071558 4.528814209177372 1.0865868579170321 1.9537488563199008 0.9370144974183802 +4.929248590000628 2.4914959504806498 4.074850930052518 2.2280824338995933 3.058298842472651 +1.4314906484628107 3.0133306160344575 2.901690615884338 1.595961644692229 2.051132816084193 +2.945067535284713 2.286116018563886 2.9254018983452816 3.704903144646907 1.0207052926160742 +2.1576044272126023 3.2326944418234973 2.6835035475008566 2.9716418647469887 1.113032896810102 +2.5402425547380965 2.103831061419341 1.636000669212708 1.0728442618368788 0.7124606169250037 +4.158908927721296 4.717414244102294 1.7583278970900036 4.063533771267318 2.371898461310567 +4.6241225497067795 1.6169877122944736 4.565564399574206 4.592564468289446 3.0072560473111305 +1.1931922870506768 4.510783530272416 4.369990132863967 4.957162154116473 3.3691516201624587 +1.7021190570123053 2.378879280275376 1.4728306492161547 4.56823705964057 3.1685241431126325 +2.0992433155669676 4.686153534187441 2.1230845775051552 1.858839159879388 2.6003711504205014 +4.120694242855123 2.8875230879219207 1.5764506281422448 4.1238041546442705 2.83014506454026 +1.7039079575719378 4.230164098186519 4.054990175133589 2.79739050494848 2.821972185979616 +1.898517170929078 2.6519225812808522 2.653180992248949 4.608887905111285 2.0958075391993543 +2.672402561850415 1.5808074809827048 2.386060585871287 3.1119581951411224 1.3109184412915416 +2.2915784657066696 2.4212605768903437 4.290144048166126 2.2056591598435458 2.0885149507739356 +1.1696541927179713 4.993247870109457 3.332048343336059 2.053506610281364 4.031691651521808 +3.4908856104850066 1.794971339189753 4.217856180583482 4.588756590256353 1.7359989428218021 +2.6308649561991677 2.814418117808551 2.193231821346595 2.1180115741232224 0.19836796296061926 +2.8499690033698264 4.9302382662915365 2.9863561553478104 1.4108107752979526 2.6095715071354695 +1.1727776210802712 1.709645401662708 3.3579751965272657 4.31585788368614 1.0980738846663356 +4.875579108901042 3.5386358976547423 3.4422776573472467 1.651330374617471 2.234929376874074 +1.7744906997215688 1.8565384624698948 1.5097040883930943 3.7067735694735404 2.198600950619986 +2.0800480406637982 2.89729679186558 4.996778456712011 3.5362899157343266 1.673595620114966 +1.8998826910107711 1.7232473159200845 3.025171791524737 1.6905987840434218 1.3462114128290366 +3.7439354564892184 2.9161230395187667 1.955045253737267 4.045755344748891 2.2486311574707614 +4.579886814104146 1.8121582274745829 2.9480221193744502 4.651761366804106 3.250084453130203 +1.693106807345476 3.4840061450878497 2.5853193669593577 1.478081450502935 2.105539418193075 +4.5220425711077175 1.6616608251090215 1.1633233644321073 2.643254234944146 3.2205557151425075 +3.4298178515412436 4.475614155944388 4.520378599434215 3.9405939292286245 1.1957592458804909 +3.0310310553567295 2.227381085049955 3.718483181973302 2.389314403886998 1.5532362715998873 +1.529611199960573 4.586560819140784 4.921354442586385 2.1178952731086373 4.147809577250974 +2.685600972480431 2.525339391770021 1.4184684533512772 2.206480081376353 0.8041430843789741 +4.87820029672341 3.1479516624825807 2.358397586370279 4.936816972608339 3.105158106702541 +2.89099349333932 3.2109122385328766 1.782894045423319 2.978926249834489 1.2380795764064854 +3.7186601536648363 1.986749934792234 4.664378915514785 1.3449584149044251 3.744070707947124 +2.6344493884956632 3.9299724709598878 3.665681963151503 4.3889103061874515 1.4837248037854356 +2.026204219187162 3.689724267575144 2.655105318061158 2.32309917463432 1.696327512794011 +2.9345111050311252 2.3744140488225525 4.831720313718577 2.1065626673498676 2.7821202184548666 +2.1318286990621695 1.9254411973922139 4.757767442761601 3.1898399247076483 1.581452655856758 +1.3090565393466043 3.2666551147855216 3.5484130776006624 4.359218403284123 2.118867022424282 +3.075285604364781 3.14581271932612 2.4864207822354567 2.856129991254147 0.37637610601364624 +3.2295231927642867 3.3744264274277573 4.439741506610537 2.2169439551140813 2.2275156345926233 +1.9641826651668866 1.840408966449703 2.822636494527007 1.40779716718429 1.4202430252212908 +4.944716193122989 4.257702225776942 3.6430035956634716 2.9899430089388983 0.9478799086707131 +4.442767955149593 2.2477003024287603 2.956611534639112 1.4269298457989197 2.675490248383337 +4.691735394275131 2.746435052449662 1.6727905657154216 2.109681871072062 1.9937571147465574 +3.128286871623446 1.1409676299229905 1.9454487536732459 1.6330063405042878 2.0117301086327948 +2.3303355138669346 2.178464731492565 2.3566403461499106 4.838985222839625 2.486986292959146 +2.0521563260825175 4.560492330982912 2.620155802894585 2.8654903095093447 2.520305246119124 +4.613217381336829 1.6254124685297007 2.1492406654344416 2.7392849674130337 3.045509887570851 +1.2811707531697465 2.741502338143098 1.7111438956325347 4.171669892335495 2.8612508660587377 +4.8397943927130305 3.860187829542955 3.414578459505335 3.972818840256267 1.1275022577834746 +4.448100852124643 3.180006222103082 1.148146092011193 3.41511041918928 2.597535611187557 +1.9043200193828436 2.6388616829457257 2.663987722750893 2.3468684064084853 0.8000725694005528 +3.6462160006097135 4.435552296285815 4.866516445603198 3.544733830478942 1.5395327438272908 +2.850116728867086 2.614817033662901 3.3663287815589964 2.545138602025824 0.8542360666261443 +2.070750402595829 4.129386638644158 2.571806395027237 2.2762549978955566 2.0797436814948425 +3.9935567177547937 3.1879713278410127 3.6922608264472725 4.765345885219025 1.3418194229484512 +2.540065345990045 4.219154445362127 2.2938614961961337 2.9704147921189947 1.8102664350460231 +4.5603276861699555 4.799656634695172 3.4311624649661208 4.190507914393422 0.7961682342119253 +3.898736947297216 2.7231613287331697 2.5423977271807536 1.5198991227714589 1.558037685995174 +1.6311296688107428 3.150742609555476 1.0254088715877767 3.313552669020695 2.7467845797240074 +3.1295922774756306 2.132319989067104 2.846994130951292 2.126577513813072 1.2302650606582537 +3.377614715780599 3.089378729215537 2.532424791428926 4.378283517636911 1.8682276148984893 +3.9230001161050168 1.088756535850612 2.681764899363629 2.504629949472944 2.839773487918725 +4.608061384530485 2.7496582378895766 4.433376460804038 3.1698366043670028 2.247263941830098 +4.055247292185326 1.2013692743922384 4.204327193775859 2.3658302931525936 3.394803469133958 +1.7853086797985287 1.6050464557646316 4.681470435036003 3.1200731646632796 1.5717684006688257 +1.5907753282446477 3.439246096497408 4.255725107559469 1.6286778702376412 3.2121988369659182 +2.680289934964472 1.2593892936629865 2.3016104103747184 4.887930534091584 2.9509338208088973 +3.7551127239071125 4.568292167644777 3.3139959483729453 4.411155326241102 1.3656571708014924 +4.687049924173028 1.023846207778853 2.2550881132412335 1.5744464945833347 3.7259004926129387 +1.7945624110845806 3.2375560911868946 4.047080118114046 1.6376122695950568 2.8085167035041727 +1.5543369770417166 2.342507632017757 4.021528400804411 2.2643919029566493 1.925809350230198 +4.049593816331296 3.156631829800528 3.6720751601743014 2.534271312826848 1.446367416816226 +2.2518919463544407 3.230973274504704 2.663106501503649 2.8415011177279874 0.9952009275670479 +1.6253135054060746 1.4498002280759588 2.0639878372836016 3.176821134188981 1.126589036525944 +3.5848293645521396 1.0198290228120288 1.915143009636441 4.184405606372469 3.424730571310979 +3.1847062285433116 4.846646142658946 1.793859845047864 1.710082497389192 1.6640501561285355 +4.24433331692419 1.6189140151266161 4.250958271435088 4.964566996554552 2.720673431857982 +1.6975059371958703 3.006912387728354 3.7355353190077816 4.92618540283585 1.7698002358503246 +3.9034759457507473 1.492977834996562 3.6662301214009023 2.810957642149049 2.5577318381165584 +1.977853031410127 3.910227694317298 3.9030061899962396 2.313118167318389 2.502362036656584 +3.325883298775447 3.0051848212690806 3.624172457731527 2.3715228284695784 1.2930501178086637 +3.9400904456173698 2.0287303269667047 2.8133839281183786 4.363883012318315 2.461167388308468 +2.297873409793988 3.5108352100879663 2.4391399736734525 1.9299030661560481 1.3155221613299786 +1.9857224030214349 3.4541870747989227 3.934139132485993 2.310095620087575 2.189498988906356 +2.7009785382645637 3.9950106207105205 4.469581993401743 2.9819202727373666 1.9717140831087838 +4.682833318732522 2.909543783343651 1.6498313766878274 2.6537169694752256 2.0377296336182047 +4.03491137665663 3.410245367191686 2.7203148348153126 4.398120727195908 1.7903184733135902 +1.440922024552827 3.6158920070151406 1.294237147284918 4.680851043251702 4.024878644750354 +1.810331572113094 1.4320028422975333 2.5207971725906955 1.5934584686266207 1.0015436583961905 +1.530610636189731 2.8626955953015796 3.8877806502732635 3.6603520038045376 1.3513601028321844 +1.545578463885458 2.4971449081128094 2.8046067671174946 3.2131351832659494 1.0355550031650904 +2.1016786480845298 3.369247818353672 1.9497306284815314 4.156825983337784 2.5451918408726777 +2.783666461845037 4.076149767001256 1.3620283574250696 4.573417693389728 3.4617242179663985 +4.198841084706045 2.629317743112495 4.604757857341742 2.2564224497585297 2.8245500006755044 +4.315877201355308 2.0946858496954324 3.493401550122853 2.0407643100507804 2.654024485933171 +4.958503508542872 1.9572778287404131 2.2309975288897284 2.685869729465646 3.0355006670996647 +4.2806746967261216 2.3961344522623476 1.444394600853796 1.9921193731515294 1.9625224480734444 +4.248170482261318 1.5006079684623117 4.939583498709457 4.900072631752753 2.7478465888475623 +3.9960989230371173 3.998571371404823 4.997022286795389 3.4318883633498802 1.5651358763126162 +2.1423381152752965 2.286717849930157 3.26213115894796 1.904421360713855 1.3653649343673293 +4.883484153120895 3.6974398456567847 4.422497711352298 3.1813010992809043 1.716761523650133 +2.8087151436483517 2.2397662879822384 1.939720480413964 3.600998033691729 1.7560028215775558 +3.172994203517318 1.4167348401214834 1.737395661543847 4.453416218652196 3.234380097970968 +2.1318168275354656 3.153972373487217 3.909701727905355 4.453930706690116 1.1580099919556077 +4.644930998565265 4.5488309713055335 1.7689645173032704 4.034072688494467 2.267145836164151 +1.2353192767940775 3.5885668171692093 4.333543602245934 4.883377742785626 2.416628140278233 +3.900550403113856 2.367177365669525 1.5051667334999896 3.0128799972177056 2.1504492920205256 +1.2151298355858575 2.2753491894114317 3.4633211348747848 3.5887925786553554 1.0676179847823375 +3.8928774023706905 2.2806607552311053 2.8407770155492815 1.354442406340611 2.1928139656262444 +4.889704461946242 4.454950920587697 1.2618126630982576 3.306659984905013 2.090552848225573 +3.1934702603257477 3.2197957957011742 3.803464516989417 3.813262553476665 0.028089772726177 +2.3139285276300066 2.9798385828543954 1.2899105931834387 1.2734389653502687 0.6661137411676951 +3.747319177218378 2.585860634037211 1.5156228351939376 1.666127259879632 1.1711693000495231 +1.5746905733890264 1.544082182814091 3.1777338502658456 3.1575443361014033 0.03666728863420389 +3.8169239523352636 1.9918680018273882 2.25857107805043 4.910186300155319 3.218989361365235 +2.8396990495767116 1.3238485483348663 1.5124320185875129 2.822905234953065 2.003782122119725 +1.4065584686961703 1.1585888080424924 1.144143357075147 3.377578468244157 2.247158505403486 +2.5289102464782496 2.529756675794229 2.3769114463609426 1.5405131510901704 0.8363987235609825 +3.8896184297585332 4.030337445183097 4.1596481568362496 1.1768211404599538 2.9861444792451644 +3.7272891572074447 2.5562838024026737 4.638820805969699 1.4117634880567733 3.432950986261938 +3.536271337932173 3.7283176027674356 2.9386210704659397 3.1623138910810775 0.2948223971002408 +1.0899255512440407 4.1369963487813495 3.4312483773001023 1.998636647905987 3.3670486798385095 +3.4276376202845364 1.9429748382124608 2.278981987109733 2.4154301188460674 1.4909197393301665 +3.2651438447321572 4.710648925421484 2.610587199792281 2.7347160435530715 1.4508249060972342 +1.565718257376326 1.2300922929443963 1.048796278185208 3.2044234437298535 2.1815987864029687 +4.470643918470154 1.080776863991733 3.122584965907045 4.339094946458002 3.6015406675224835 +4.145799597263563 3.8966207443312832 4.987668740947967 2.91223090248783 2.090342632694634 +3.003449908751581 4.063741613224968 1.59683831792522 2.618527565759872 1.4724358789828567 +4.095882810508116 2.6215273105543346 1.8807095306446686 1.3779138662276105 1.557731562368997 +2.424867209825056 1.1564802899240139 3.304442100774103 4.962482703882742 2.087559345296059 +1.6109302678381572 4.166412922347972 4.507215991277297 1.565167472916381 3.8969399638549977 +2.342198818574907 4.162346521946214 4.805451189009107 1.3199616066597333 3.9321209659360497 +1.1435267243651133 2.652258557039664 2.2953190444323894 2.0739312445788265 1.5248882912690718 +4.414189178286594 1.309859469796324 1.8267210293448732 1.6219266234045557 3.1110775766154934 +2.8184725324972857 1.7690545408188858 2.607966456529628 1.0931421715356877 1.8428159798704071 +2.5801688095610453 3.3369311083676374 3.4171569808595366 2.9463166223872603 0.8912798775139823 +4.054713264763375 2.4319753067070957 4.465837339947729 2.9427661898956936 2.2255390827027717 +1.0126324696776448 4.684664458532353 3.1390323808043687 2.528488211645152 3.7224431640612843 +2.893671633023721 2.5493246903435374 1.343064845732374 2.8944518495455585 1.589143307739626 +3.530071354134842 2.9116170310933143 2.446725584862216 2.896025727653485 0.7644320558434273 +4.959914319182456 4.8339563026104235 2.327915026591159 4.041293302009965 1.718001902390065 +4.402842687676086 2.8214318449289157 4.0193895355707765 1.2130985386299091 3.221199995819832 +2.2690044269145253 1.6379001500324146 2.542252766622438 1.370272648994884 1.331101049662717 +1.2754754266285122 3.9200214686005896 3.55670325026113 4.843673180965089 2.9410738465136053 +3.8446217652477106 4.773628226374349 1.7652736950475698 4.446452939360178 2.8375650027704684 +4.80698349400438 3.723194686380972 4.589298417388152 1.5897892856822295 3.1893029349243363 +1.5270668956742064 1.392515340991304 3.482277834355106 3.763749426669088 0.31197816934419365 +4.2610216134140995 4.8879646935552525 2.348998496324821 3.4928082108157064 1.3043612569762246 +2.2489644801813173 4.770426915560567 4.316684603772667 4.471986280450208 2.5262405712456433 +4.581386079389295 2.067250507444679 4.033125886327676 1.0732917665012445 3.8834901430293334 +1.723405618054552 3.353711080935941 1.5934568220381329 2.8656627868738926 2.0679467883058757 +2.022625678512132 2.063586252080736 4.400685461049051 2.882629923624143 1.5186080413633711 +4.438682863684044 3.7840818563822607 3.7003573783559953 1.425575718355153 2.3670940157578655 +2.191210749035024 4.953905511654145 1.4342133817783917 4.633187536738167 4.226809434491189 +3.024523530768926 1.0962537083448125 4.972161106830335 1.7591539420906006 3.7472175742463083 +3.8966347843270874 2.5935982230374206 3.9638606703281516 4.213523349298946 1.3267387585084238 +1.0063645053430883 3.7729909478781254 2.311518584421998 2.861330074528757 2.8207294353034804 +1.3207356109703907 1.682306239696917 2.467994120515502 2.3996725095371074 0.3679689689150142 +2.0175501810096965 3.0411799716311916 3.9452685069426185 3.310187970062815 1.2046348976230705 +1.7397934470489869 2.557283646803054 1.9283007452911445 1.9524429159898053 0.8178466060943141 +1.4083705636247887 4.499792969332951 1.0770510531160924 3.4597712784112327 3.9031075007671725 +3.6748697634106278 1.3075291033786125 2.4986921474640904 4.575537301473899 3.1492201565427025 +1.120305837614994 4.989904170060132 2.5295107087660225 3.0902845922889157 3.9100202816486185 +4.262687781975478 3.9900572741927394 3.6933039434090054 2.7431975253444802 0.9884480762393522 +1.0558528818381672 3.8004174849428174 2.0289296631160263 1.127195165689145 2.888902899798589 +1.7834362413041802 3.9715199659914755 1.6817860751394247 3.6703728020257276 2.956719052698414 +4.9903382275334724 1.5836965411038109 2.4979626686782983 1.2298780772584914 3.6350029038113116 +1.9194888068877316 3.601746116119321 2.09632830348613 4.304621646171331 2.7760672077258657 +3.505338666965863 1.782055019538355 2.7205002376480603 2.2451387588389045 1.7876451171937575 +1.232491598812206 2.2191451055053406 4.842745401755766 4.58283793531661 1.0203122234790094 +4.331555352901086 3.938013406598645 3.0709303042384595 3.443897797487514 0.5421992387674448 +3.2673691769279465 1.1668523670192856 2.692809299639585 2.805999430445351 2.103564326190355 +1.1655581995130815 1.3314704332355807 1.030861010572739 1.1609711020884799 0.21084474196200312 +3.929788801972622 3.506815331272941 1.9021372257334104 3.4370670855064542 1.5921420261203552 +3.8805643533650893 4.6230727859955865 2.6800574719414643 2.465394522623128 0.7729158779178003 +2.1714772967606053 1.89268350737097 1.9657923662689734 3.316606630913977 1.3792842906995837 +2.2872340968416696 2.3839372280438202 4.660344783488636 2.857644346845753 1.8052923197800241 +4.179140807506609 3.8748423650863115 4.4426416405338784 1.3248114049020043 3.1326447165741165 +2.9741085704881782 4.827697545826798 3.3701400666081818 2.7344184540493437 1.9595749687550315 +4.717986142923847 1.4280839477541907 3.5216636399587125 2.9813676628350994 3.3339730347856866 +3.620497908446389 1.4714637667708175 3.0374666560598436 1.46640433367521 2.6620639667190305 +3.310780226099419 2.626847332394105 4.919780664817752 3.8183789268263366 1.2964759895742903 +2.546167924640589 1.2228792573076368 4.866339992896894 3.490327162528057 1.9090584607160352 +1.5893353092529434 3.608673222717074 1.8940010300182712 2.897471343665186 2.2549231204465277 +4.702849975548901 1.5208185945409771 1.3535767731818042 3.767016269499802 3.9937468512797434 +4.793273682046207 3.5974313807043297 1.6250165529388507 4.736991561109744 3.333830718731662 +4.171460288148253 4.302131850756705 3.4077016475197146 3.0101326082038873 0.4184927697070098 +3.1216311953386184 2.4823291996713195 1.961823621664751 1.6499653748405336 0.711310486198865 +4.8538522483341335 1.7392507660098873 4.405905726427832 1.2057359049937895 4.465627534816758 +2.460567849253405 1.5380655556921115 2.183404070186383 1.1284239938281222 1.4014255039561427 +1.5885298696820809 1.7278910635396127 1.9926715824457748 4.198947589861861 2.210673056617207 +2.8157652944919045 1.3322066049085954 4.6953197609755435 1.282189373949545 3.7216132824728563 +1.6926391410045243 1.4229372107525595 1.4521392624820328 1.346386814950944 0.2896941686338394 +3.6720695063559785 4.706314712554274 3.930931841298328 3.3129449292695967 1.2048115910726298 +1.427578916657486 3.761929900102015 4.840357504360979 2.120719276319563 3.584079603654569 +1.2628375311826554 3.204826076058407 4.344175857867317 3.862562708940698 2.000817516328676 +3.927611092286655 2.846681866371587 4.772967049629351 4.578016637240426 1.0983686333503702 +4.442987956279086 4.482597650326085 3.875030995306167 3.3083038610654776 0.5681096483489444 +4.976922698625499 1.9548651115071922 3.8849584906832804 1.6065575176115434 3.784698542018051 +3.95246582363168 4.581754689637318 1.5015974492594069 3.150613723667365 1.7650096742343833 +4.136900453069622 1.7543594665140563 4.952333139889497 4.732848089127874 2.3926293570306703 +3.9047384083233547 4.993586319698771 3.7375925792410643 1.886888849417713 2.1472526795160065 +2.1464722531317397 2.575159479427926 4.7655689254288545 1.8052456372595826 2.991201549288655 +1.1869437283768463 2.682774248098049 4.559841010341115 4.5351671789073755 1.4960340041880813 +1.0431024620920804 4.6454878469427126 4.250828009932463 4.100171478550239 3.605534336465756 +4.639210349854745 2.2490960594465608 3.392088874821999 1.7881995266369213 2.8783862427469615 +3.36989405000916 2.2325070001522183 3.0198650288959126 1.072735742130543 2.2549859779079986 +2.7401878981679846 3.8702435419718753 2.725924839446424 3.4308755980201187 1.331908904582687 +3.85027408134493 1.1450045853599398 4.758158803713157 2.165544107697066 3.7470166810284544 +1.73723014781415 1.112285443443743 3.653819105216283 1.3507834041606568 2.386321295185834 +3.1419801957571716 2.7500150007585638 1.0770030730815385 4.199681385462782 3.1471823202201783 +4.340860361564593 1.043485584892676 3.1022614414095 1.5499246637232558 3.644506810144479 +4.902344516136912 3.5604720638481258 2.8612700535366495 2.6318786136721917 1.3613383528332001 +4.5675411161765975 4.792655473131921 3.739091111256949 1.3373465011833003 2.412271470155304 +2.783525895983302 4.498240041332078 4.848090494018246 4.672703972773374 1.7236603586825228 +1.1717091994263167 4.059186621324983 2.0310097419486746 1.409183307334303 2.953674656552375 +3.023929390795365 4.067045287600013 1.7607925647375948 4.085447837051573 2.547962501541917 +2.964431953237485 3.847222754288184 4.857907826800157 2.746432508795922 2.2885907491206945 +3.9714177400955046 2.798211021536766 1.0660107409300266 2.7290911325197276 2.0352519238073494 +3.7583923736999987 3.8989856319025455 2.199252480518905 1.8214711733493019 0.40309450541874436 +4.8727846298154756 4.152721134504013 2.779322335539996 1.0486115860658245 1.874526909816343 +4.629600864282276 2.794151579192472 3.9095576518568462 3.280121640948359 1.9403772236256178 +3.96643621318812 4.471772965627915 1.1240059714741246 2.455184601227366 1.4238685956499344 +1.0325939976902383 1.8055758281559746 1.4151252836849664 2.192360345003879 1.0961730022097673 +4.734232414111686 4.538969105834081 1.0922116624229483 1.3787715362528252 0.34676262896816024 +3.0843948595400636 4.24547661059858 3.4139264692540086 2.294457011462259 1.6128616492339518 +4.658756066558611 4.519943895564031 1.8557713918094816 2.655939498195673 0.8121193368550538 +1.8199914927759706 4.488632173254759 2.268901469196566 3.2930135184101075 2.8583996520519395 +1.7090024482064359 3.674175116599577 1.5103540956112327 3.183783490716525 2.5811372603954803 +3.5611034303375897 2.14633393202565 2.1604612827288805 2.493459972588301 1.4534307210190338 +1.658910117301434 1.9308680340992592 1.8210814182205262 3.6219893329629276 1.8213265566314125 +2.8335498850556635 2.83209260211671 1.1110905960208557 3.320580335985989 2.2094902205451725 +2.9827590882521444 3.159059850299448 2.7669696954996943 2.3065446185600993 0.49302455331686257 +4.557032359610185 4.713060665041395 4.689163135185298 4.489560643220649 0.2533495350187815 +4.076573144846375 2.624125235479489 4.189360314287359 4.723463174805499 1.5475370092627496 +2.014558240545286 1.9676372439352345 2.8840602934684445 3.802802686442729 0.9199397613816871 +2.304966916544804 1.7101321767600575 4.992175276611088 2.4835813587860156 2.5781527907018496 +2.9693321386042997 1.4445623578249447 4.293675966097883 1.236469333001434 3.416348237786489 +3.6472375881048094 2.2776839026056392 4.69194805936371 3.0552568445184147 2.134112328397015 +2.041607851836876 1.8497975999865846 4.060075850650955 4.267999258278937 0.2828839269992269 +3.508514833940611 2.8941205343603125 3.586886782593448 4.727294256021093 1.2953800835300775 +1.227145844683044 1.2259979940566952 3.603198934951113 4.154827552290431 0.5516298115844978 +2.6517153909581737 2.0509870789521196 3.542593190078511 1.8044956684383728 1.8389827349861751 +2.029969421972871 4.994022377054515 4.737931513654219 1.655461423499566 4.27635730233411 +1.2160428488733377 1.2115654465650172 3.0953590324415394 1.1817835921400963 1.9135806784288696 +4.840402499545805 3.0224790321327193 2.2843968718424903 2.321102874709225 1.8182939982350679 +3.017209785777603 1.9457067844722933 4.019662670061174 1.2852636382914162 2.9368446923100437 +3.6069775121868726 1.9153495211551177 3.049599940736173 2.2835817208954277 1.8569838914675902 +3.2043401664832447 2.024441381980035 1.3825663882411319 4.389178883589647 3.2298420764579148 +1.051678659387409 1.2028219917432943 1.4262923767906668 3.8591850351899426 2.4375830230391613 +4.395791465513204 2.6999874124205894 2.570907767655276 1.5276464136795114 1.9910162327777956 +3.6754850024896606 4.595456343410016 3.264366138559349 4.880468497189936 1.8596058995620937 +4.418594176605408 4.354384574995107 4.452393381434057 2.6028721832934614 1.8506354409527492 +1.6507102391741624 1.5535442401728519 3.533253185445956 1.6122489469629433 1.9234600374407633 +3.3146382923867885 3.1523583414497427 3.1735113099224956 1.1225624032026444 2.0573590353779974 +1.4384530046372452 3.814754888762959 4.503794736256548 1.734446773828723 3.6491230153973384 +4.947179038147431 4.226452037324178 4.9642939696785255 4.197770772975378 1.0521431560389936 +3.333628961163803 2.1863620643207446 3.932810753824926 2.0923520283782775 2.168757628842975 +1.0353870716968117 4.428099329405322 4.839845139564806 4.364374833207819 3.4258675508304153 +1.2012635761126784 4.955504677132028 4.566916689326938 4.610355463286565 3.7544923986693717 +1.3788259154394962 2.1099093095780943 4.574116009079473 3.874359152269567 1.0119993022911096 +1.4880498978901397 2.6779688266932324 4.8952469635924825 1.3463508638616206 3.743069673918564 +3.226346176024188 1.440071225950493 1.1873810473583446 3.2975556349478463 2.7647088431459297 +4.106668802741973 1.2810549447147999 3.17018661139007 1.9839629130273653 3.0645098037422724 +4.660009959395322 1.178632945671028 4.24209713084379 3.0157902291211345 3.691045181097151 +4.226504958384282 2.9555080137296756 2.877013388131846 3.242538460434096 1.3225134448476925 +4.533389037287463 1.3372034577893896 3.055238491146039 1.5387745455724078 3.5376920664207305 +1.158669031200875 4.735822919320933 3.0411626208517193 2.4517976779579747 3.6253801145817244 +3.227738934056766 4.030636374583922 4.981260507825667 1.7808887513652714 3.2995490115399795 +3.6801908596674675 3.942286371086861 2.7688902357745833 1.9797752927546814 0.831502525795019 +4.385742265739505 1.0075358563433765 3.808812277916732 1.277530291027157 4.221334746455996 +1.235168796074447 3.535672535997984 1.829517034816622 4.867348051879661 3.8106081857929768 +1.2761096665259037 2.2316733142393317 3.1592756418027244 3.0606817201029735 0.9606365838481943 +2.7135017105103674 2.4584884042849966 4.021966655922599 1.7039664043443632 2.3319856244558537 +2.7045600785926855 2.6003059876189125 2.1556065247217875 2.107449858098325 0.11483893079026394 +4.623958248069249 3.14455584224963 4.807845231569487 2.4369760285481488 2.79457550554282 +4.382877577003798 1.0741022747453934 2.944726165026411 1.1539059688684818 3.7623172348703298 +3.3107022013044816 3.2440265510684436 3.886216130229683 4.916984235975006 1.032922325325675 +4.675407775334342 4.213252944353056 4.130990863467352 3.7218985879979885 0.6172062683155791 +4.145578525293166 3.2576453015121927 1.6089368184858444 1.0021479328150869 1.075461836453359 +2.287492357831265 2.210303395894599 2.838448679815604 3.1318413752035736 0.30337667931447543 +3.976483035340078 1.5741429486794227 2.9011382742619185 3.785880483722346 2.560079426341621 +3.7625167843172274 2.4894551548785864 2.0494703687097844 4.089232014684297 2.404436209330084 +1.9621848946494835 4.586614120220123 1.9946067819001359 1.0170623985733833 2.800575259014295 +3.55971753793011 3.8661546086906893 2.017109466432875 2.4399584317828884 0.5222115719073077 +1.199963607280127 1.3930526401713377 3.2917377372393686 3.1050783030112776 0.2685612016081512 +4.863978001678406 2.0938339758608344 3.845071553891594 2.1689392709196658 3.2377642523496784 +1.751978746860356 3.553741452667872 4.011035401937934 2.061334431312811 2.6547472050828813 +4.827722591659244 4.615183358016788 4.492391897589896 2.8413041191268578 1.6647113197270371 +4.207307291308364 1.3561803309217448 1.6664204557537556 2.8442301228538387 3.084827475914634 +2.5385473408752484 2.52572102472071 2.151043548854281 3.586308332548119 1.4353220940603595 +3.4978653063523906 1.659349855700098 3.340087631313051 2.516669006100584 2.0144868564063634 +2.9059921192856693 1.0207631171441522 1.9077841827368576 2.5888647222886654 2.004484744734088 +2.2153321483922173 2.727536950197425 2.260846622702992 3.3680353992725096 1.2199265330149258 +4.923681107709545 4.188835535441413 1.8451499093728327 3.5561321381694295 1.8621112217963371 +4.8591408932503 1.1748707063118875 1.3624497385391239 4.2996786796386735 4.711810762625764 +1.625223910457914 2.695738385373575 4.914560346036488 3.393341246621473 1.8601367663236439 +4.620236624720446 4.717478782635437 3.6945717039437187 4.389595400582506 0.7017933999158219 +2.1252297220710137 3.820695336952404 3.3156254401749585 2.0053899160476423 2.142736750030277 +2.256264349760655 2.0843915528586057 1.558557518890864 4.997289864960133 3.4430248918963673 +4.213750170352766 4.843321156271493 4.24022273486038 2.1561178009320052 2.1771203462223383 +3.0045288232797587 4.477164430789708 2.482678917894986 3.601367952085758 1.8493568578629922 +2.734068518897958 2.6404292423263698 2.910866060678803 4.066317505336753 1.1592395589691518 +2.1148047155855227 1.6718161270008034 2.43753279117956 3.6723232175659626 1.311848423680036 +4.17239638733046 3.4433013710369247 2.2760001138058774 1.3277115711761902 1.1961733581997247 +4.471575017121896 3.36449341017215 4.330671026297214 2.828236172664415 1.8662636935484338 +1.5824257964520316 3.835358027587192 2.5245871184416493 3.274252553448779 2.374384531311658 +4.111768638601285 1.2369465266601227 4.8423546592844495 3.2792461636529735 3.2722943547946817 +2.7947127037794837 4.943427530779255 2.0161274620742065 4.4986035181702135 3.283239677035267 +4.567590689941536 4.847589488393145 2.5746563291286746 2.1725885859953067 0.4899569340285987 +2.988270592547744 4.0804487779020135 1.7405844004981663 4.072340769388829 2.574867171802443 +4.460650789587346 3.5156664152508057 3.720425609295849 3.2350280252151657 1.0623588293846793 +4.842184075152637 2.759744603111732 2.6766797149326185 2.214768839716425 2.1330531665565653 +2.338358923339036 2.0694995487181607 4.037142591387354 2.0066640750649314 2.048201251969258 +1.034350398247144 4.4309098361108195 3.857127065999316 1.231438054235877 4.2931176086191805 +2.267612264660983 2.8019180078065555 3.5613827353990057 1.7219277720356092 1.9154835393186174 +3.568492637194447 3.0458098913885308 2.800058559969767 1.442117479676976 1.4550605589837022 +3.066335869369926 3.3919143398277063 1.4766875163165896 1.4225724146254284 0.33004512518240975 +1.3816014845524247 2.0689442570024745 2.1348565698152475 4.725470278207586 2.680246159021523 +2.4820761448862676 4.32919700240848 2.634127456862959 3.195871113919798 1.9306505117543116 +3.6275341976726296 3.709629017501432 1.8360197249671257 2.1774748676902904 0.3511853839994203 +1.8609131066576237 3.4384732005400935 1.435650564332886 2.905014097208568 2.155858307392991 +3.6581750870275345 2.964130019697358 3.4600172007068095 3.5690295554237386 0.7025540897085996 +2.4027241053055777 3.9852542768195858 3.558256115872778 4.792027926078329 2.006637641282062 +4.834674742087403 1.7395062188995478 2.2655493877406223 3.0260907416174923 3.1872388266161904 +2.828674310060543 1.852250262459934 3.297226746044631 3.1194250366178338 0.9924804122036099 +2.9564372951217623 4.668254573454588 4.880418398140811 1.4982138729805254 3.7907289331226934 +4.888849205425995 2.5835960520252375 3.473112224121476 3.158431964894612 2.3266318502958785 +4.863831125902925 3.892924321841725 3.3831731088797468 1.9584688861519743 1.7240771863320619 +2.192292528986047 3.1876534470079774 1.4696708252225892 1.3535085833313465 1.0021162724787276 +3.886558415335268 1.9344948317602602 1.5676003284190263 4.8975471306197775 3.8599349657483493 +2.2167244079660002 3.881658533928162 2.6168093637955505 2.0860415865417536 1.7474896500878978 +4.615701711511862 3.0872647040515413 2.2727311740788823 1.491545150448761 1.7164997201541579 +2.0503984533183957 3.0905555507525624 2.594904536745159 2.40478887423708 1.0573886477892396 +2.8603915479234345 3.010456378316948 4.387452901767052 3.156790038526044 1.239778422251972 +1.819938214136573 4.8746914316070935 2.112707424556855 1.2406434982260648 3.176792834173165 +3.286458156723619 4.614847089404099 2.1710636502567766 4.433022844495698 2.623180617660548 +3.9405741046893312 1.913768723883508 3.3911454613933314 1.4651057425795702 2.7959916040846102 +1.1872865721321122 4.821229924378908 2.6893334122180943 3.578808401609975 3.7412177220916147 +4.06856681626887 1.683464667556148 3.132125673859464 3.342425197597569 2.394355476841005 +4.459222213359242 3.0393491522683798 3.2683733986176873 3.6804203583129986 1.4784526392839523 +3.472052937031131 2.795153920061157 3.852488465963918 1.586968838653768 2.364481224476616 +3.058860664020124 1.984606747963451 2.539008585811605 4.71034383693514 2.4225437558349285 +4.771451748899205 2.668164802118435 3.422054951094551 3.0829552797679045 2.1304470346836157 +1.811149499506663 4.799280017949041 1.3857676903546952 2.0670259500780666 3.0648061621720926 +4.011777535666427 3.522027734459911 2.908809499728467 1.0144248590109064 1.9566675841257304 +4.356150478337076 3.921002916337446 4.859768337799304 2.451151056079968 2.447609162123574 +3.7606270348273374 1.575753386443024 4.261647325582377 2.4026993864442066 2.868686162658828 +2.7656347391001637 1.0788627962548483 4.398906931474887 3.7910778501921194 1.7929461172113381 +3.597606735894399 1.0063826056162015 1.2599100921337105 1.2877480165318511 2.591373659542521 +3.3985725967290312 4.949198715876044 2.77673450839007 1.753123404633918 1.8580153533041144 +4.048388808810722 1.6236908654305595 1.864278712868905 4.509112711089544 3.588078454378577 +3.0905124221593385 2.9349879058902997 4.17961901760059 1.426651665928678 2.7573569073538846 +4.605265622012345 2.1215901726679824 3.3528300207099853 1.54900085666285 3.0695998746975 +4.994812865799089 2.000540915182482 4.520013161220065 2.7735224348895717 3.466395010873371 +1.8097268691659951 2.0650263326169815 2.598069626825174 1.4446476377924795 1.1813382668916212 +1.0068470975765398 3.6200321890400833 2.968840437194166 4.4104790433348064 2.984469499419027 +3.021646057609046 1.8346341787179066 2.2486601858841873 2.1230842758779245 1.1936358363431345 +4.405360187943206 2.5918245447499904 3.6245180592014483 1.602464124765416 2.7161762908361577 +4.263074995302855 3.292099828210271 1.4530114846121296 1.3280616598633008 0.9789817331366476 +1.9376025210356116 1.2605445904544337 2.301403808957087 4.537427838643964 2.336281426262685 +2.990443690207813 3.5838486444194486 4.150381424943328 3.6169277448143675 0.7979362559290338 +3.06178331198931 1.2786642223759408 1.2646185555577931 2.405917394658881 2.117091572860537 +2.885859268446137 4.920989931932652 4.443775507642611 4.614836206940467 2.042307170899455 +3.697690339526622 4.010857197444755 3.6175726989542305 3.968110025579861 0.47005308025387976 +4.981014183586581 3.083338280609758 1.3691712029538023 2.3703512012060446 2.145585053461936 +3.7169536698038197 4.641318320371024 3.8679007277043502 4.342486289554424 1.0390772169260474 +3.9083541611362516 3.7048064316365257 2.1231648347646983 2.771946322115931 0.6799625699361482 +1.0888287463238107 4.718849584775168 4.740543725303493 1.352650619815965 4.965367154783323 +2.1597363677014796 1.7745150200616298 3.3377160489348285 3.587271443740992 0.45899170118240923 +2.3535490315106897 3.5147091695013835 4.260764111032937 4.078699860505926 1.175346866834863 +2.5737616631706457 2.198322193872542 3.926448116065815 1.955572676426574 2.006316224746242 +2.465539560316365 2.1838186798026644 1.1222543769054916 4.863366230837382 3.7517042205039464 +4.309304555083228 3.4773078510968523 3.8504123190874817 4.137631976610539 0.8801781905454462 +1.9244405891986802 1.7887053884604218 2.6500018084671413 3.428907973438196 0.7906445842155445 +2.413233939672906 2.124313961209827 3.4596992547224747 4.418969545588996 1.0018354380307408 +2.984430676137341 2.859983943508524 3.5866162123940546 3.77969254593103 0.22970733517689337 +2.9367773814608547 1.0074150903610994 3.7881409026322346 2.8168399522143726 2.1600611997349377 +1.564357167010773 3.614011516092013 2.0071607998164853 2.6829750973937903 2.158195523004704 +1.0037195206785006 2.653591046220243 2.4412690611739474 2.7564692517249947 1.6797104544881698 +4.522225123159155 4.820810404861381 1.0988726439599081 4.142637122250372 3.0583746287451476 +3.662410885732217 4.23442922447984 1.193087416636776 3.4455242263161012 2.3239355760136657 +2.772578748137122 1.4592932917408077 1.0965918404088857 1.757740882714919 1.4703185866077666 +2.011275009055736 4.274742334669147 3.0561926175781133 3.8376672963274454 2.3945744940690195 +3.2849645032791517 1.0592383005990986 2.09148123487994 2.286298177661376 2.234236059706152 +1.3700949732440608 4.165346419292761 1.2884592953841323 2.092377481398303 2.9085589381069217 +2.450640093353257 1.7408365777394286 1.8343070024271326 2.519653911844158 0.9866718892444533 +3.6568255190761305 4.509855697769425 4.567242780625248 3.2538608502363084 1.566088305566992 +2.320043294246276 2.3383656538034225 1.7325872328544953 2.6325664738267553 0.9001657308744576 +3.2974851116576125 1.2165547743498735 4.610168598487728 4.2263631615901645 2.1160287526685053 +1.8649287470878133 3.56108148004616 3.050082127120424 2.702623839932316 1.7313755672463909 +2.835733591777847 3.6173156826474058 3.6865362367747316 3.5240310769022423 0.7982972452371451 +4.401715688850411 1.9841393429690566 2.446269756723746 4.160118576336094 2.963436040249845 +3.2500283502341034 3.878320423253951 1.9344840204452902 1.6238571938869488 0.7008851221115222 +2.3447391329684635 1.576728015296787 4.955658962805947 2.1302757554120793 2.927905624416633 +3.0588265350227655 1.1883968487560175 1.2514459591833198 2.066202833270228 2.040180378089103 +2.581567665579536 3.4336758018270004 4.6777373707160415 1.4600038520106886 3.328647964753716 +2.290097858544259 4.38574286751774 4.82879132376425 1.5010021586382924 3.932671958244824 +1.5326289749204527 4.627227001882697 2.2447124031683687 4.93758223418895 4.102204879732292 +2.7483053086523905 3.4923885365250826 3.3171239084478885 4.776396313407215 1.6380280223113464 +3.2831623119102358 4.377673791276489 4.358458716233535 4.5269394974374855 1.1074028860805802 +2.899993361377431 3.431925610924314 1.9285823640968407 1.1494417137774504 0.9434045108478811 +1.9789800466211633 3.371229046272881 3.349623479732084 4.292616871418497 1.6815450674291943 +3.004141096372291 2.7398437377985037 2.829583004988143 4.639589312689964 1.8292008986629813 +4.227917112239034 4.06373179008874 2.7048274804713075 3.0759260167561613 0.40579667771232025 +3.3582246213858093 4.033126686455278 1.3901069354666555 2.4205551729953503 1.2317939631533459 +1.1750466413777216 3.5336542264551465 2.037104579991173 4.595428347248527 3.47966237421084 +2.1532055548820495 2.248776781599666 1.4503918833833307 4.378859073819834 2.930026270332636 +1.7812859043461966 2.44941280867711 3.7564293763794576 2.0883623964142637 1.7968976069718086 +3.280105817613495 4.798950548266689 1.1117800173405885 1.28459037555732 1.5286440840627258 +4.9785010854514 1.3001026279215129 1.6693739986357854 1.9656064173368972 3.690307420561025 +1.5765085472781188 3.5688794120535228 2.3368937634775753 3.4638980416152574 2.2890347978452685 +1.2229969024528384 2.1343821002823864 3.214878177227734 4.534073206621329 1.6034021655216675 +2.5877098658915036 3.316413168915007 4.087610365107282 2.679998323734437 1.5850489465171704 +4.099239393746961 4.9883807932127056 3.831230031484161 2.8752112105405274 1.3055820212619191 +3.042753402645529 1.7273658755776857 4.5632331082020885 2.7422700124225488 2.2463639381357288 +4.192445582048608 4.123015168672698 3.509019337830534 2.595139166215698 0.9165138026087287 +1.5416701161529813 1.096476781839641 2.5147507938734384 4.729715277285946 2.259261996249188 +3.0770090716314127 4.647521491574722 3.904774957924502 1.1277395694331411 3.1903659367115793 +1.1934915647140536 1.9617526897875126 1.8253330593233623 1.8427929726763739 0.7684595011276988 +3.52259459056333 4.471800764471706 1.5414672144428199 4.2988433979273815 2.9161817120737976 +1.767935811604468 2.4136598114900987 4.201471245455293 1.4713045731408507 2.8054891806322857 +2.5278026767377617 1.2838898274682942 2.737202762640338 1.887689574191132 1.5063173085133228 +1.2358947087613519 2.3925882342756655 4.503958312505984 3.9054940245646788 1.3023438163203391 +1.4893451008874345 4.460095838335475 3.9226939812706916 2.4182867780332824 3.3299551013790976 +1.9416264403846841 1.2126217213604518 2.379096102918482 2.6223469865485542 0.7685173210451479 +2.378292818935481 1.5779363556951287 2.223832793660636 1.7103949019249907 0.9508884986792876 +4.172201667724581 1.5436243738298026 3.0848178071189887 1.9061245353831655 2.880752752114366 +4.576037079968323 3.5257671391571783 1.5110451649522796 3.6745093753552007 2.404920859044177 +1.4061413362437971 1.6485036915249855 3.2237609446011306 2.4986027226461704 0.7645874430870051 +1.527194091332237 1.108106146031031 2.876064971414959 2.6349843935509063 0.48348169657190976 +1.405623025225538 3.5694372079054815 4.061628802766743 4.485589208056258 2.204956743888669 +3.748369057771945 4.702259640514512 3.7497827535777786 3.321874536083721 1.0454724704380773 +1.6990210120249674 3.2078551894445435 3.714543178911541 3.2062312383465166 1.5921562749524276 +4.24730514383222 4.429034202476173 3.360524735120087 2.11149364764856 1.262182280110889 +2.1843911973898655 4.2471904825619 2.294494142275431 1.2718673997145773 2.3023697238946825 +1.558931588899453 1.9410685929977554 1.344682874071236 3.2589336295638804 1.952020656859293 +4.1767566780037315 3.954658901158616 3.3004485920548206 2.7934392490077857 0.5535213603977073 +1.9543071241772778 4.913256439957167 3.9809850408749075 4.324327923392557 2.9788026769710347 +2.7357452671958824 4.549685113492929 3.9780758918979564 2.358407845652951 2.4318105078338785 +2.984619924692365 4.986242127504699 2.086216721020112 1.368914906625426 2.1262674657072687 +4.47670440186339 1.9311600910077744 2.2867841196870775 3.2006843379294794 2.7046274137915747 +2.5374583111707185 2.5421156977902317 3.188117293448593 2.4823512733748263 0.7057813870745587 +4.999507564523523 3.391669122194497 4.02851872793531 1.6124868366931246 2.902129314164054 +1.2659966298614207 4.7441067942885 3.220551765773784 2.9896497615421365 3.485766207227495 +1.4174860241032698 1.2022033620125918 2.4495865439532243 2.121226557955993 0.3926409364813493 +2.0183310196150903 4.8645894276979895 4.667711858321129 1.3709684959099069 4.355422335799945 +2.384031283898166 1.0837950951479827 2.7642201186026085 1.6327531139716607 1.7236100861575776 +4.754844358385787 4.119077612608593 3.5527772080370617 2.6369618687576333 1.114861915528384 +2.8682357321223972 2.505576138658067 1.234715956343046 1.6900111743234962 0.5820787886940899 +3.378215208636512 1.8167726404448747 3.141609437547947 1.7251206836869852 2.1082085484067927 +2.5814234623205428 1.1902997856784858 2.3921088531221537 4.959294787221433 2.9198747753887155 +2.432978835761544 4.348423837725277 3.6179121713502926 2.2735919619411114 2.340112471864075 +4.810815472151043 3.4410672324508043 4.005242654118257 3.7604700516702954 1.3914466813611839 +2.734536944522861 4.411384788164749 1.138305883715602 2.147158417120649 1.956936924094446 +4.7102625075485225 3.130989818967536 2.463114322424082 4.00338813016435 2.206024847482122 +3.5728005571916417 2.0783835815642093 3.809391510515464 3.7690065940507687 1.49496255422044 +3.176193194708314 4.558923184776246 1.8424829085326944 4.466662220443119 2.966185983125794 +2.926238592754566 3.993291791690192 4.619805747698196 4.152232166507801 1.1650011086629763 +1.9266108928937817 2.6569979324704045 4.8853223791094 4.506927320503956 0.8225861948504367 +3.176588021801605 2.6047752639406103 2.4421491357104244 3.366873869888201 1.0872376299837845 +1.3931764975272376 4.921249083515864 2.2073489142888536 4.56369026800993 4.24259834856666 +3.3528388500638333 4.261592360684107 3.9237470775170262 3.8725878966633864 0.9101923999080013 +2.215509486422292 4.4802619164597335 2.7992421632909616 3.219669071755087 2.3034457568436895 +3.9825027754040274 2.666377488634273 1.695231956010253 1.7690558125360298 1.3181941178244982 +1.4195917909298008 2.393568788297824 3.7783532975485405 3.6856225629682937 0.9783814085201243 +2.5919277500014 4.586779568704944 3.87754550212607 3.9213275107403343 1.995332213658452 +1.082140078499878 4.1774562196286915 4.359575125219868 3.911161618304946 3.1276279648827012 +1.8329266212937547 4.498841899312868 4.585124731320322 3.490983949762671 2.881709270457954 +4.116358166811911 4.835694219738609 3.828943853252789 2.4364507354813782 1.5673166368289801 +3.90788073176524 1.3617136781946568 1.9304992101742546 3.5105964289301057 2.9966103993359363 +1.822630926469114 2.874129902040396 2.59215980054156 2.143372739224073 1.1432672137490174 +2.8588165056502244 3.792632517413189 4.369620094409624 4.070460046603966 0.980565692867119 +4.063095828192697 4.0640361956064 4.102490957852673 1.968153767349282 2.1343373976615747 +1.8176912477523497 2.330494352502073 2.4620788740710573 1.3830986797626146 1.1946402320158318 +1.0878045966652667 3.7051194284770173 1.1667076662821372 2.8107427325258345 3.090823228180591 +1.1098408818368228 3.835874617307359 2.1466050207227863 3.509468929092973 3.0477299682979635 +4.364738276920806 2.658902933819776 2.270610182956859 2.1970853593028816 1.7074191393638405 +1.000679688397125 1.7199392967939686 3.9392864491159845 3.5098266641712548 0.8377171904383689 +1.315241068600483 3.8224592621549482 3.9012493222894 1.6953695539413407 3.33946831434254 +2.7543889701943707 2.1864297390837835 2.1190951694313487 4.1386481051162765 2.097896982274711 +2.414673709289484 2.0103643787853707 4.071233456948461 3.769743324174742 0.5043434691681841 +3.382738603598274 1.2810135151252968 4.418307138489551 2.776814057119622 2.666786058854757 +3.1380963048593333 2.434696416303023 3.9973684113286825 3.105471995335626 1.1358919931412006 +4.411940671570264 1.2970908960092378 3.780877533322273 2.7202844675404836 3.290463003210489 +2.687818214335476 3.8239231832217375 2.0272718569115638 4.380158331157614 2.612816346591942 +4.896092375177735 1.3340821785345818 2.3167374369616427 2.9522147522585094 3.6182520723751006 +2.311297552221551 4.7787936875191175 3.5907897862747973 2.0977446335313665 2.8840459437809036 +3.105351392633242 1.6288261705845515 4.025216558788298 4.192200293459984 1.485937515170419 +3.6933297770624853 3.1479660137631527 2.7993620874580865 4.19034462445172 1.4940729743025458 +4.776308904668905 1.0409904257700582 4.0795740682820485 1.9564627578360998 4.296534158522042 +2.2577263015318607 3.8343356385209395 1.2732003466182147 2.2297078765417684 1.844072573485545 +1.0596522902669228 3.602890207766677 1.7957374956338876 3.0245283463215307 2.8245328923101867 +2.742843978977901 4.738589884447265 2.697041674294619 4.098579026649005 2.4387104521124012 +4.3370540901764105 2.275200623420054 2.214005971128766 2.7954544723085024 2.1422703092512316 +1.5514874708914603 4.739911091241445 4.771968321477086 1.2720888902909424 4.734469475627185 +4.974531443584534 4.915262004889968 2.939599515993968 1.1325627481494336 1.8080085029405117 +2.62328730920148 3.7427084438903 4.14135552459359 2.6398563388511342 1.8728597068582746 +1.9410520755176277 1.4499572458188705 2.262218395208404 1.4991104061391032 0.9074733796306333 +1.038737375987056 2.2206451662162094 4.041383374368839 1.3384266801072915 2.9500645612694094 +2.422230584368405 4.594633293965526 2.4800395432448816 2.399755290851868 2.1738857131521923 +3.5027505628816282 2.4537676703072595 4.998392302682461 4.998336539776366 1.0489828940565196 +4.307096329189957 2.436509921332126 2.543777839461953 4.04660141605484 2.399494157447753 +4.439128941914031 2.668305358805743 1.3533787466725218 3.6596159463676132 2.9076702329786186 +3.545060328760728 3.449329683290491 1.0684370129989884 4.33602505424664 3.268990052567737 +1.0440208318016828 3.9295358831804585 3.9026940141053243 1.5752416752082867 3.7071864670624204 +2.103785545653097 3.8865559649647774 3.666626563413842 1.6859920244700155 2.664804597870164 +4.736492396400935 3.0230854616512226 4.949930723784933 1.7760993872337352 3.6067947927381128 +2.4440085234620677 4.106452039788477 4.344480521153963 4.39938915626772 1.6633500543138158 +2.9888608337615707 1.0554982654969223 2.155344332347967 4.934772180938017 3.385721486756522 +1.5657795922162911 3.269738187454144 1.4457232158202604 3.825843427975556 2.927190994553503 +2.082200862904256 4.978623363324567 3.317803014180891 4.127924180133901 3.0075836820388075 +3.564540391484657 4.279655473554072 1.704842603087116 2.5406408318614546 1.0999764814874307 +1.7245624476969086 3.760565093564446 1.6094546716065645 1.3723347468052598 2.0497640431809194 +4.310110500407557 4.87189286755341 3.163490593076231 3.7896815984726757 0.8412577507966321 +1.4417612155810375 1.0996383634127675 4.649198917251813 3.6383557201299666 1.06717009663093 +3.027804484373367 1.3081911505717563 4.174265470456563 4.995221828183235 1.9055286298243155 +3.8086315427998265 4.908245981381455 3.9091146991832764 4.867290330531862 1.4585103544532865 +3.690177227540238 2.9657388053736713 4.624214906026566 2.9776738366751654 1.7988631189092845 +3.8222383299396125 4.25436816415497 1.8714602193013263 3.140826179518904 1.3409049685112233 +4.3444727918392685 3.1995087885220883 2.29311195492346 1.5403392010943664 1.3702588761980492 +4.908042758387978 4.467900575741517 1.8228110206541746 4.829425161558424 3.0386598581003086 +2.507659785113508 2.6283688864511983 2.1136707040991642 3.212685254039125 1.105623655737108 +2.174015791473387 4.093774919606618 2.6319359356661223 1.2410387637496845 2.370668693195236 +3.554584992904064 3.2949587504721225 1.7808033799767453 2.337951556642122 0.6146705430723707 +1.3412466187189778 2.257053403649803 4.350920087084031 3.202230121894305 1.4690781815318437 +4.267935167235171 4.573766949044167 4.741451853418637 3.7817802376427228 1.0072252423814738 +4.044327657995257 3.4053417954072573 2.689365165428967 4.302180482456519 1.7347841881415722 +1.54768522462712 4.799654299563241 4.433044823397008 1.9350639454297376 4.100635478926532 +3.675469791791877 1.6435373958065527 1.4867079155092195 2.9533329161728714 2.5059405728042154 +2.6949344438446894 4.136455233711944 1.8045490713261247 2.9258456882543875 1.8262771670133424 +1.0378039080009467 1.0309249776750131 2.0965778192307214 4.6191435817106985 2.522575141738818 +1.440276836287992 1.909323641079613 3.3034138958582706 2.6010578133222038 0.8445762083794685 +1.0230803445005199 1.9337783404511644 3.2660365203200032 3.9824137698032365 1.1586920226728423 +1.7029926785688083 1.4528935221420793 4.081120706854132 1.1244606675017028 2.9672189296290337 +2.138800831255315 4.451227657493971 3.182835815854109 1.8293292298759476 2.679421188427538 +1.8059669353112602 1.1682758590068465 4.500590023087012 4.7835199473136605 0.6976383381245461 +4.682414798023482 1.8296704676238735 1.834678543990424 4.952584919082667 4.226049026983473 +4.070602344862092 1.026341548902335 3.7678208099150337 4.967346812349076 3.272061494583029 +2.247617800273576 4.441964775954343 4.404912819963776 3.549321742854217 2.355248339540615 +3.4490347780825075 3.529998064318741 3.8221662917473633 2.222338426216339 1.6018752301748487 +2.5812004266266237 2.3387853136400283 4.033595003546611 1.1621129184313208 2.8816964538518555 +1.8881831526566035 3.6800001932881155 2.719951710664567 1.2637721243077218 2.3089104129047238 +2.8048736545092416 1.5461744499945347 1.9039672452329892 3.2305581544714532 1.8287064083444589 +2.6962747206671294 4.663255870063563 2.5729872922061325 2.3484639137141534 1.979753921468617 +4.835656838774954 3.9200161955953132 2.218796076349413 3.343844859078904 1.4505628393708199 +1.2381825419228547 4.449877212921853 1.3769637573662585 2.757213622747454 3.4957220070549337 +4.625484540910303 1.0887958963479107 1.3541360782454528 1.0941955503957947 3.5462283692107777 +1.8634956493548143 4.244924812548538 1.0128001788890217 4.326875327161401 4.080967893491218 +4.676011783613852 2.206949058282377 3.1207302787491544 4.334176947468233 2.751131323555224 +4.488565861007609 2.6767772338965687 1.6330631052759084 1.7971628218847835 1.8192049764443863 +3.3489712737528894 4.718572804518706 1.3819016594245372 4.739459949647326 3.626155819227829 +3.1290261584391166 1.6995840190351341 4.441690379361861 4.536452633864862 1.4325797411600953 +2.750159672597052 3.286872011639079 3.9495700367750106 4.524769172178642 0.7867109890226835 +3.519286469007543 2.4979804145284494 3.1089928998769487 4.833007550465636 2.0038194959526887 +3.4200011719893144 3.180041278872447 2.875219531853683 3.1120645507855276 0.33715918094793784 +2.1698021154686034 2.664608310571855 1.253102275628156 3.4276141104058557 2.230097506904314 +2.44200311792542 4.513536326030355 4.488822551954325 4.788339349057585 2.0930743283573374 +3.6292054557179987 3.7612266013473854 1.4370841498403442 2.4224669468615514 0.9941875273602226 +1.2055956169673592 2.2569557149711255 1.1600616527791057 4.105684380449534 3.1276271052417783 +2.2699433610739406 1.220763762644176 3.270438876536109 1.7288465083823756 1.8647479345238802 +3.0652361153022794 2.798493772949738 4.152247390026899 4.195658775782638 0.2702517818941328 +4.412806285101937 1.9687266845398668 3.9054747585666774 2.853221584882258 2.660970092919607 +4.345758253912209 3.2786018326621087 4.185820596169811 2.936204837899759 1.6432779347183355 +2.1520605117891076 2.3102668196964697 3.558743484655551 1.556277741770384 2.0087056248465887 +1.1562430287963057 4.252931776127319 1.4010764955342951 4.11988436481881 4.120849114919148 +2.07509238262432 4.693638257412106 4.458448893688804 1.0647578451330588 4.286481241229865 +2.74082022490499 3.5176001772586987 2.754418587829958 1.3150161505083813 1.6356241838961434 +1.4770745766672122 1.648376816990897 4.9896639540314585 2.6056659317711834 2.390144562088414 +1.9915913626442614 1.9367928171750144 4.946883126338785 3.514048963193031 1.43388166166638 +2.3343932756903 2.3298086606238138 4.532652004497503 4.266864192983751 0.2658273489402058 +4.913979385678282 4.733283078156431 3.1454238806582433 3.376676225514674 0.2934770903386306 +1.5011892925633377 2.2516376992753284 4.404176261607388 1.1805449733071707 3.309829526432545 +2.50772495078341 4.880597057405751 4.448998240881961 1.6052976890880473 3.7036677581364335 +3.6956921832483545 2.644839615102975 3.2757407100420535 4.93995924604717 1.9682262206262657 +3.7649326185082033 1.5460835453629707 1.0840563509406174 1.5760020421532168 2.27273002631199 +4.173711286911856 2.17701427119247 1.0941205185843441 1.3884192656688588 2.018269239997037 +3.9805295044436106 4.298217982137181 2.696832593805829 2.042161895503193 0.7276810373201428 +3.31135284825474 1.0706177442303293 2.4676201447747577 4.31122300767915 2.9016831878267753 +3.5040366799930625 1.6434397618949679 2.428325357223209 1.7756237356120819 1.9717607102511 +4.3622060990749905 2.1030746813865813 2.0177299401859914 3.7484526393642414 2.845887528318308 +1.4682500035052755 3.5071262080137533 4.6502308304426885 1.5031851972221575 3.7497883133429424 +4.4438582779940745 2.441664238218701 3.834637209023917 2.686262441999444 2.308147650920656 +4.230164920193492 4.174293478166428 2.8435075709806354 1.2597200684313896 1.5847726875692176 +1.9877973730522025 2.5363043922413033 2.0206415375988063 1.5865001820625597 0.6995274595657859 +4.102143236642467 4.091992392499469 2.8709891086164423 1.5280177455954478 1.343009725032281 +1.829320353206655 2.18422844746442 2.5138600493197445 1.6383789415411631 0.944683505438139 +2.9869029385998354 4.648306700860234 3.2260350028319285 3.1904431222989333 1.6617849569703298 +3.641341354399299 1.1504029889917362 4.576736116516756 1.8657484107853333 3.6816067526130793 +3.625197781303924 3.4257934507190395 4.4513805046601345 1.1659875973517084 3.2914386888484675 +1.9147446609693524 2.685313203103793 3.626703543615146 3.2563462364228837 0.8549505325560661 +4.008963318320994 4.868049218382536 2.5351221469171312 2.2041989821512984 0.9206186640858333 +3.0601870944352263 3.026297899091354 3.8627443461871236 1.9561607881385217 1.9068847215766143 +3.6420160433799356 1.5138172269566432 4.6229281196327285 4.581286696126855 2.128606166104265 +1.0411798444348275 3.5271390583199174 2.3570044775570627 4.1031120974605395 3.037908002785002 +1.0109080046056769 2.4181976870811774 1.8316097904592321 2.4994878107383065 1.557730817687668 +4.15768836548483 4.507825411094979 3.0688814851413873 3.3478324771306323 0.4476713154094052 +3.401589167607261 3.641254406012385 4.0343414777618145 2.3308363481283907 1.720281707508155 +3.3256348143071244 2.0130742263867076 1.8403299009582486 2.722484820165199 1.581459009409669 +4.274945009983773 4.0093364733322225 2.3187089923794404 3.0918298592673357 0.8174740176664139 +1.2317007557511594 3.9635931703165896 1.405585778717803 2.716872420709328 3.0302984708153002 +3.276500333783732 4.767545463065618 1.8071638630687543 3.9265971426053614 2.591372802968059 +1.4552428516932703 3.4844468290504107 4.915804876111409 4.020023504422058 2.2181282757288168 +3.044381352130955 4.329941032549543 1.032638740235945 2.36938661169946 1.8546046920516999 +3.72802817021566 3.7013640046211704 2.257389799871403 1.887583303461677 0.3707665337023924 +3.048335126691764 1.2599690856323082 2.1302657556162523 1.0492179199780298 2.0897170908409484 +2.074912047657876 1.7002695304210285 4.272464172560416 3.8441052940981844 0.5690767474418391 +2.3684793764823224 1.4722872249712955 4.924737620526459 1.7747686466865207 3.2749755584712683 +3.9497397505838974 2.3983279208743955 1.9972403441294158 4.890549395248392 3.2830041015279856 +4.862224303803 4.704770642067773 3.162071586875765 1.7012237741640788 1.4693086767246524 +4.4245393194484235 1.063671269216648 3.836790460178358 2.510921528174952 3.612943741040066 +2.745760475272511 1.083786558079606 1.3249096618605196 2.1938605830381523 1.87542875227106 +1.0376918835718136 1.8670253643937653 2.094366931080676 4.340980805952805 2.394800184812966 +2.6880818378495563 2.285846627051743 2.013568518982423 2.1586970190506 0.42761600336937844 +4.628682597092185 3.920130315154681 2.311148389619614 3.8709616535217926 1.7132027768142366 +2.513412401528936 3.2438838040292763 3.231614055251855 3.0523739099608216 0.7521406115579485 +3.47195629752658 1.3091956173294252 2.8727056075015462 2.9855761495203796 2.165703931534152 +1.706403473240246 4.016629426995902 2.4245864396432264 4.73437752867582 3.2668453946246987 +4.844689985332723 4.158489921675647 4.898771011517148 4.036741766609805 1.1018007743864127 +3.224080371366623 2.9772924997919366 1.2694296642383565 2.945465700102132 1.6941077436427479 +2.7826687388842246 1.382408823149285 2.0053784810879614 3.5274995529678113 2.0682312223430634 +1.1333209240362034 1.1442287958832091 4.903673474051374 4.465393513911721 0.4384156761889866 +2.003346634085227 4.817956430493852 1.613526827693931 3.4409248114035664 3.3558026904014246 +1.7809892155679221 3.712983023851875 2.105627979874964 3.1740310287408517 2.20773303414916 +2.3557530429854645 3.241336289788296 2.874180490752213 2.201823617107141 1.1118999292002947 +3.370362374868339 3.1788454188662683 2.764181345323612 3.3062261693549253 0.5748837584202883 +1.04511174303126 3.3303774301275224 2.3298733599214003 4.702655355835239 3.2943183909197984 +3.5699537125848955 2.848471103131172 2.2533103447552607 2.365800942829186 0.7301994867152287 +4.532249503664435 1.6318318935929872 4.310067680661611 4.286420337330094 2.900514007837095 +1.2732729092948096 3.9844883873291232 4.783341143365369 4.726040317947982 2.711820929362104 +1.4815188030076607 2.3414161276050725 4.2373804123255505 3.5601959516236765 1.0945328696141905 +2.8854183723799096 1.387607131578895 1.2954267381924707 4.223916416500577 3.289299364458485 +2.802002200150568 3.0746542241674146 4.709509771146296 4.7969380914003885 0.2863264524680444 +4.581505770420384 3.0851209090682157 3.6274751136575762 3.8748454465698883 1.5166936852539135 +4.788937797360667 4.792871268667198 1.560733380463101 2.0065741935967227 0.4458581645009636 +2.5946494473532895 3.1672856604058315 2.2782399346997897 3.2911352822134545 1.1635588586375785 +3.4627490942609884 2.6779533721294095 3.669757595446227 3.669528020289391 0.7847957557102224 +3.614843524066255 1.7027842097408952 4.093786583360215 2.333960397731023 2.5986456136080878 +1.6166493770951655 4.599259211791496 2.825755465562639 3.0217218439878533 2.989040690171408 +4.849171794152783 3.607353428239362 2.013166087759973 1.8877547403961228 1.2481349526263155 +2.716756544109171 2.207561336951294 2.3454162680366406 3.851880193140253 1.5901928551691884 +1.6542364156847187 1.6340445172824305 2.4561339560893485 3.9698602771718137 1.5138609869796311 +4.873021546137871 2.51781961074116 4.09489712322286 2.9432798348152795 2.62167857210903 +4.379818765720913 1.4502249302917778 4.292071318349278 2.4726345469745956 3.448604095226751 +2.606905229554502 4.6125614065224205 3.3897283577228987 1.386669937372778 2.8345898707829127 +2.102837841738154 1.579956330707653 1.719861732574489 3.171448843228789 1.5428902146281305 +1.9229812245064486 4.065998465583736 2.291346545071583 4.530845318061225 3.099657666545875 +4.570693133033034 3.1839824857857755 4.18092322229926 3.664433139946153 1.4797730989438986 +1.3860990439198941 2.9759609012421926 1.8580708834574224 3.0182092202025252 1.9681416833536152 +2.539769280715858 1.0458557568483196 2.7840366872721334 2.1844341239443508 1.6097517978693403 +3.477358569431744 3.9155497458876862 2.9244927613748337 2.3974677776072886 0.6853953900042105 +3.201215499109176 2.8990950331072893 3.2694823907009787 4.727384999015923 1.488877695214995 +1.7203843009309963 2.4178944707349066 3.1227790100576613 2.7723379639989307 0.7805955186539423 +1.0800151375922948 2.1962596084268835 2.0269622513712613 2.660231683661498 1.2833674035684364 +2.742010636752914 1.2611585220656507 1.8002528442143158 1.3660149869672202 1.543206240993176 +2.474060946527664 4.287066785966453 2.848319936068711 1.3390771128896 2.3589836949747665 +2.947215005453794 4.6194561312115106 3.009663340036246 3.0662876160000843 1.6731995372052506 +2.7953348444455313 3.730214984219309 1.9927722227183904 4.186361985709283 2.3844993025878365 +3.7664566106882122 1.897830396790932 1.499696122037394 2.6284533365837395 2.1830842348966994 +1.0037096163803367 3.8523970126022795 1.440023619730142 2.3706610700140347 2.9968493364306217 +2.734214596674978 4.60102023094456 3.9345953102000264 2.1630200824812627 2.5736048771339095 +1.2182804760721213 2.7081802585147745 2.0600337045554187 3.3422010291364357 1.9656435103919299 +3.6327623761344867 2.8755671281637945 2.21052097727132 2.2932009900369557 0.7616958894862987 +1.7695222979979723 3.7989079272412454 1.5194650378049523 3.5275429334881916 2.854957594660688 +3.298427852253855 1.3074393174776522 3.049458375454871 4.411938518350679 2.4125479239583347 +3.703963203622341 3.1884726129939307 4.96874332545678 2.6885208102600378 2.337765015530129 +1.4195277151942887 2.5705315311034407 1.4691848757322892 2.109832188687668 1.3172846176261135 +3.3893429454682544 2.199102652495315 4.35202951066042 1.6910362241847556 2.9150569849807164 +2.1915921488720382 4.089513330151698 4.787153876543815 3.7447233898525014 2.165355889902043 +2.6585866112264465 1.553677321285004 1.4557171997223293 4.774563785926457 3.4979375640165014 +3.203009994006686 3.0873834801133655 4.785878988537112 3.838939529045987 0.953972657184925 +2.5617090351208764 4.656476380140651 4.722174862711356 1.1508055061810456 4.140377918804625 +4.3661707112741635 3.0653129832420514 2.127446560053236 3.672961367240584 2.0201106028671334 +3.959344208760492 4.747374590979581 4.383559610304095 3.4091255148629105 1.2532013763392709 +1.7110207684201022 1.2286946221935535 4.1817480435015355 1.862408362433972 2.368960756852747 +3.089206369662413 1.2525821692623005 3.9294777505190166 4.49602611737271 1.9220212031816766 +1.813522232367406 4.624650455362489 3.365340775021332 4.879701384870355 3.1930753111666186 +1.158496390510237 4.419761313606354 2.583640901233435 3.895527641593482 3.5152376474641978 +4.041146628334317 3.195681934398025 1.8602727701524908 4.779297517913471 3.038999181759324 +2.602897856733553 3.6087793002159616 4.4176635749379205 2.727738054854862 1.9666330979036861 +2.5891383812313675 1.3475411033522642 1.9725620616664572 4.557955627411302 2.8680696801562617 +3.8379386655290344 3.113714302401384 4.229733952629541 1.1858692123789822 3.1288358034719965 +4.8072780656171865 2.5304862664542935 2.3106928285230817 4.134882580947604 2.9174387996299154 +4.989331146208153 3.9130905537998966 3.6823771685936557 3.239212516090723 1.1639109596422401 +4.0237084982519224 1.0105902200781904 2.884826114745893 2.2987397301277346 3.069589387605355 +4.405748836900194 2.2744379568325304 1.3924331349163905 4.303348243418691 3.607757313955826 +4.734740479165016 3.5579190239698764 3.300182548233708 1.4071433897881818 2.229014578870168 +4.365615174231763 2.1910222307622793 4.109594652318126 3.7311445818035525 2.207278624383374 +4.150280413828488 4.052894347795587 1.2784923939190342 1.873346337278483 0.6027729753295605 +3.1946275506797397 1.164531528864119 4.388489430777829 3.250693656515739 2.3272019855870436 +3.986234225684413 2.34481019012512 3.8133889690637117 2.0252040539504286 2.427319129235061 +2.8866903376134467 1.1843783876103489 2.95893279098777 3.243650496853221 1.7259577477900885 +1.4305184943140032 4.084917447089848 4.19380475527101 3.6807314668129827 2.703530654501005 +1.6513007080891158 3.954235769058274 3.5624559450094453 1.452319242002147 3.1234895230206123 +2.220473011221002 1.9487663269140736 1.3488605043302462 3.3795353663959316 2.0487715630891006 +2.8905843984176585 4.09749157705037 1.0958603916732175 1.2275775678828649 1.214073454262062 +3.9896797884160393 3.4419359881573333 3.1951553306195697 2.3953573653254754 0.9693812748399995 +1.5187761717991441 3.3882304148323414 4.093767004860915 1.1947721911627949 3.4494970787990855 +1.518197206735497 2.6191682778061436 2.7551751027180886 3.2643031619527867 1.212991624057865 +1.6920957250650113 2.7913864052097392 3.4061730079058887 1.6413885480201373 2.079159491070202 +2.9575042991816805 1.8816738568122404 3.070107314377118 1.440297281735318 1.952867605146004 +4.876911119371808 2.45295590078445 4.8829495765094375 4.692748325945833 2.4314060577025893 +2.347947275604947 4.911217527146267 4.194473968685913 3.9327282646404953 2.576599541260328 +2.1650686434670217 2.1132470193443664 4.151612200995325 2.304616527500933 1.8477225166766014 +1.0315498266058962 4.782727542681531 4.3539947806375405 4.409912967646388 3.7515944745162386 +1.4603045350361734 4.088941538057881 4.9270274241651295 3.9595758224697817 2.8010167966789914 +4.317857073613552 1.7046363054983034 1.9584077446892905 4.746993867707661 3.8216665668788368 +2.96922856468542 2.376123488374026 3.5634779873029476 1.4690293305593873 2.176807021139276 +1.381878531510556 1.2210356780524165 2.372545895885658 1.363068797413257 1.0222105633619787 +2.4745353819919558 1.6821278206639363 4.515908724205258 1.649107457632529 2.974299790752913 +4.632177003962779 1.349220637222551 1.903787638083386 2.4553218499566896 3.328962675186807 +3.360945849305813 3.31060971765048 4.826328859927829 2.402596675870229 2.424254818740523 +4.234277083614672 2.2221551767862087 4.845848993500738 4.939484076646301 2.014299405931176 +2.310066085385237 3.214289689256594 4.177850159688708 3.3900242353310364 1.1992872937241201 +1.8304745928504964 2.8254604893220576 3.2596735108271555 2.5083571648197247 1.246785140252832 +2.3110064123968073 3.7822060302411877 3.174707328503351 2.9016776019090287 1.4963200015871008 +2.8169424475009692 4.863031828049304 4.0310692716533065 4.62959306252918 2.131833127014658 +3.890399066931848 4.074180968757178 3.606893656705964 4.578212872553081 0.9885528850356936 +2.9741731458143654 4.046098006286964 4.331423820838346 3.9787573491534967 1.1284487346573788 +3.7846595831183554 2.569482892237139 3.986237275904705 2.7835418481015157 1.7097165502268847 +2.878939151158831 2.31085946717335 1.6860203829762912 2.4926833676538243 0.9866203414717892 +2.6054958984944836 1.7005841249556757 2.469391020348087 4.386205692391039 2.1196801185198395 +4.889767510464002 1.3243962645413099 3.5692453266869144 3.886999967458659 3.5795027773399353 +4.593685899099068 2.8607286148760562 3.998919592863697 1.6268262480509756 2.9376806813277714 +2.1629087095602353 3.6092439345939704 4.11409811308086 2.4492664438388423 2.205345793766716 +3.762456322673285 2.406599874223825 2.038459986205319 2.950474100096691 1.6340490974077393 +3.31756576771738 4.226337431092841 3.228585592866637 3.035930057564717 0.9289682940965598 +1.7303269249142548 4.779220209309123 4.699259799838894 4.766473582604186 3.049634068576384 +3.7912313925942045 4.722026934115969 3.8176494373877548 3.438744543813723 1.0049623169508115 +1.0561053973767862 3.6247269934675543 2.9578969312534387 2.730677524564792 2.578651888619289 +1.4313474854910773 1.7168179384333553 1.1996802725415 3.9571418495656463 2.7721990780367056 +1.794450414496334 4.977036238481394 2.6628580880615034 1.628372950448918 3.3464924961774516 +1.51843793532972 2.250565583743977 3.792284678699166 2.715640642441959 1.3019882005535999 +1.3884594508818218 4.987903798767093 3.1516234254120468 4.214380682469268 3.7530590990485364 +4.160518782633355 1.8675032305401165 3.4262857498971657 2.0137700450152027 2.693161884974546 +3.8444369741991125 2.1343585510172915 2.8907276038898018 2.5024418309634666 1.7536060147276595 +3.445129046658957 1.4539249618383212 4.989699995538136 3.518206063899756 2.4759216664214083 +3.0235975985010803 3.9710444788543553 4.9300716677505605 3.769918788433813 1.4978685838477594 +2.087005419666045 4.938454431910555 4.85565941746362 4.0980065328414845 2.950389696803871 +4.787153354066662 2.3821013550562733 4.348077155010763 2.8612842651512658 2.827512725927263 +1.8855159204718288 3.844936403792745 4.594615387493855 1.1811190837465304 3.9358970573624283 +1.1601281827236662 2.901741736094725 3.164039214925535 1.3367979503336285 2.524287703157704 +2.844191179597023 3.7404964932860585 4.1217025112972925 2.0532325820281967 2.254313878686306 +2.9205272170503394 4.208449415086152 3.557142972813532 3.0723853020020284 1.37612993122161 +1.2606311944789304 3.9319617060959877 4.070268793191695 2.7763819060762223 2.9681896804189614 +3.70337405746003 3.3441589543272174 2.8487837402447242 2.6893701006611823 0.39299898066533 +3.312260109320413 4.146730583282494 4.569495548315748 4.976344522514157 0.9283679549191679 +1.438160440521643 2.9341501052610264 4.043422351291042 2.1387420921390192 2.4219397115969814 +1.8229195402222373 1.522443229013962 2.072553422672221 1.8986231151282835 0.3471854914590484 +1.318031094244962 4.135258649573902 4.524470540002614 4.430637116505061 2.818789777523316 +3.4302280143594865 4.450741917188425 1.416815244504014 2.012299858798263 1.1815458314125278 +3.38958566522562 2.26517590118502 3.599990244424742 4.006813830494687 1.195743596116094 +3.792436262142475 3.3570274668337503 1.6531343351664232 2.5268836943624766 0.9762267983044253 +3.8026653782290394 1.5311610151123034 3.4478257182696552 1.9945667110202052 2.696607834634103 +1.7904826022575895 1.3112985724923991 4.135150910107383 1.8450187429804545 2.339727051878378 +1.5435129597251867 1.9009759431686555 3.358258384552762 3.632226341924948 0.45037565009555497 +4.163430201814324 1.4556181285327714 1.5626599312422478 4.830855317617229 4.244213390927942 +1.3435594479656165 1.7515762440016034 2.5059985011846484 2.3856422127362418 0.42539786320167167 +3.8144288675450007 1.709942326630046 1.4703061906538193 2.5525487486644765 2.366455694759917 +4.734695997044468 2.856370895322095 4.506313204095626 2.888518864501385 2.478984411605593 +1.1486570392503737 2.3269193999791393 1.5255842748867212 2.7174298312939564 1.6759469028098104 +4.701355400553008 2.9926104409070335 2.9844248923686747 2.046999744724041 1.948993392639412 +1.146112802612703 3.4620376922951546 2.6558188636044977 3.4073409657104916 2.4348087326532424 +1.2471580486147835 3.047581380048495 1.0848315317369974 2.6120835316810185 2.36093685720391 +3.794748685439827 4.403529324104802 1.2618711187907672 1.4854292100433257 0.6485307133650824 +1.2163278747536355 4.43405980142874 2.022620743782883 4.441659224955938 4.025611248660297 +1.6078018626389126 2.220564164412776 2.527994654616925 4.552104967742157 2.114828645109368 +1.796432503805459 1.2235129991042561 4.1735283902653695 2.007963239854343 2.240069012227481 +4.319237845580942 1.0877889486303363 3.8162173239031 4.380486749335146 3.280344792560791 +1.7370602466523666 4.290404431576908 1.119785984124979 4.66411327819263 4.368274544274992 +3.906177122568146 4.572995551758737 2.1950784424951424 3.83365701334724 1.7690637496607944 +1.2867282401060018 2.060431513873199 4.572974792561199 3.1097172501320682 1.655215814120267 +4.551327784852861 1.8707428313835472 2.420222007043578 3.3900906594096596 2.850645698014483 +2.501049501005142 4.7135679242704285 3.5103766625201853 3.739337259702304 2.224333771795569 +1.23727294856802 2.202371014907813 2.8009407255408605 3.2175441842630605 1.0511768259774885 +4.1079663598728136 3.6542681899645264 4.363368433313607 3.8421280962796223 0.6910380006406527 +3.4089005752047497 4.767195306766007 2.9536585695333573 4.666560331713564 2.186091723754318 +4.8506811397991845 2.0612851028527874 3.8518994165813707 2.597110845775755 3.0586311657924146 +3.6220566540805033 3.9325661180218416 3.719318096412085 1.4288633250081806 2.3114063223596255 +2.305940371125018 4.763778605455874 4.270706644634375 4.396147348096018 2.461037211466656 +2.210827296893025 2.710129284986015 2.2033458980675222 3.4302847083135544 1.324643846247572 +2.723001993925286 2.547745316415952 1.0980540502328178 2.272326518747984 1.1872787092019772 +4.506725071174123 1.815418233823943 1.81297608647033 4.046123125257889 3.4971528690655593 +3.22606545563589 1.8589969448349448 1.912814926277043 2.1160483799277703 1.3820926705204382 +3.7373739142816995 2.521201708157673 3.618558756377204 3.3284816221048255 1.2502877983793401 +1.356586164644893 3.095984982668372 4.061706510867409 4.54667722721406 1.8057421864306267 +4.27305429242857 1.8819263217625903 1.0974209096774379 2.612524995051894 2.830730181705698 +2.348334852112575 2.189422516380024 3.862056153321533 3.799844423979839 0.17065588098761564 +1.2906063355051587 2.42686737903499 4.498316930747461 3.44444234949002 1.5497550748631375 +1.3862541656363767 4.385338631778886 2.342092076523249 3.1330304478508273 3.101627176547114 +3.1087058218778294 1.334225904318687 2.59944833200427 1.027326144732319 2.370727135191531 +1.2866534926310074 3.151490625386333 1.3830647642299576 3.0234205118537134 2.4836232625874226 +2.3385435811753355 3.768668994774691 2.621496333109043 4.2920342547148 2.1990806365719306 +3.587929736671856 3.3843735589561548 1.7026998611781137 4.726219707590662 3.0303642320910513 +1.5913789994761527 2.709964334551444 1.8027191940660572 4.418230871531389 2.844667728716838 +4.616738958067906 3.1379602410365655 1.7202256612080893 2.0469481873583812 1.5144418453802988 +3.6727112811226075 2.356508551648933 2.703931820494161 4.91568703844482 2.5737619876760007 +1.4499290761759518 4.084167114371313 1.0418569112769411 3.754920053894913 3.7815237216904314 +2.4014659666117186 3.726512334546928 1.8108108456440184 4.062650885639042 2.6127631815576167 +2.973091254515179 2.9830657911178085 4.267166777640433 1.3561336413823755 2.911050224879822 +2.9336452330777116 2.007300256989521 4.715863246527278 4.875909701040378 0.9400690838050383 +4.505973010458111 3.4956368165877874 3.611355927744645 3.2259616695767948 1.081345439197447 +1.0763093978128042 2.7293074089427236 2.374039698235569 4.822335313062361 2.9540741091549423 +3.9325568710608407 2.7782884900483604 3.4739728756471995 2.468593917697201 1.5307260840835624 +4.359314368334703 1.6631285788566883 4.1415980930840615 2.291734659587359 3.2697725508009565 +2.437658595389323 3.1927043915619366 3.46051486851421 4.017785128970529 0.9384265008550162 +4.674011358560104 2.9739825088758147 3.149664046362012 4.1150026650342335 1.9549876568558897 +1.5585377057606613 3.1096130401028264 4.6400485437779775 2.992119926553931 2.263073887496963 +3.346852092607959 4.978151947881813 3.7037161730988193 4.527996746989194 1.8277247282645004 +4.2333368948127 4.441668124564135 1.4894538658813836 4.8415592915173775 3.358573013329919 +1.9176942068453062 2.2694351130375856 2.876322315913362 1.1558298858648306 1.7560796869570776 +1.8809302724792905 3.366059338004135 4.70146228952144 2.2217146585240024 2.8904595922974083 +2.11369389617767 4.66043116867219 3.7536189379988363 2.342426564078969 2.911586277499332 +1.1983658958256647 4.921598587575713 3.713230808443643 4.419353294673304 3.789600327537914 +4.360019266022547 2.329016009573331 4.274833177448261 1.078125243554855 3.7873362462718263 +1.3596981447668375 4.751269848298499 4.380785163191742 3.855469210419215 3.432013326086302 +4.63655887176902 1.5204039249231913 2.1156789858808596 2.5197063038245693 3.1422380123721556 +1.4558234602957905 4.558097762581032 2.686401533809163 4.330645850788535 3.5110746532277473 +1.693947011365291 2.478014817904946 3.5752804044773083 2.4765778617512635 1.3497813166007975 +4.799160945199623 3.1547730383892976 3.6420879152241876 1.9794705006115403 2.33844141586598 +2.232334507357354 3.6423574088076576 3.4645771078843515 2.5849688693893174 1.6618890564182283 +3.7133611906771344 4.471791619305571 1.510127190125818 4.669742881979614 3.249367328462305 +1.7377430942249292 2.260469711889422 2.470157690905845 1.0924810766727737 1.4735114421746645 +2.2677474479935005 1.1445652554996304 2.947519144715018 4.918886100461819 2.2688820841431463 +1.1435429613930226 1.6136836890619497 3.000358493105224 1.5970619009753677 1.4799573065789218 +4.635315522276695 1.808708641221838 3.9160931387485647 1.7055352442814762 3.5883523607384817 +2.4672185815222294 3.0572885638530596 3.725040448516779 1.585143745709427 2.219761357158396 +2.850371705823115 1.415042112054667 4.665793779477109 1.6860892771958036 3.307387180791354 +2.157478701235455 4.149164687973409 2.5204615215376744 4.937007514759445 3.1315343854290556 +1.2667971330737626 1.12459404055476 4.328889205549649 2.1365219424750026 2.196974268334379 +4.008175685355873 4.259802568256804 3.2396466715523893 4.580105499962768 1.3638716797638124 +4.994902724152785 4.616303637456644 4.001988179923991 4.267249703565204 0.462277994686757 +3.735871140994778 2.6533283268606844 3.387186867779659 4.264623718680946 1.3934828207598866 +1.5080736703781774 2.0541331150364157 4.139615280481946 1.9663701022851345 2.2407979653811174 +1.5780837305327369 3.8733677113018574 2.766669783050057 2.3443706554543957 2.333809140770384 +4.768439188220325 2.3706258686532196 1.46569988900281 1.823309870707806 2.4243336433973917 +4.9572210448282155 2.5818618621941667 2.606771265506372 4.705213693734535 3.1695097209366634 +1.7822006187900126 1.7115745728085798 2.792668618224072 1.761786187550575 1.0332989036296656 +2.1536783498173886 3.562044094296283 1.5788467289937516 2.2705192616336243 1.5690458765217945 +3.4564326486667087 1.0831831468262938 2.598964736533129 1.774916816446264 2.5122436531087637 +1.8762248298468527 1.6395399560505997 3.2934281092333455 2.698707588433459 0.6400876716079106 +3.4243448502034544 1.9255150601355187 4.578633621534614 3.599966135433448 1.7900504987141197 +4.655925049686149 1.1859939272154079 2.8148407760073795 3.4210182760970613 3.5224811080126512 +2.260925771481658 4.3224889547436565 2.5140473078962877 4.369190037823092 2.7733729116333454 +1.3377310302016552 3.4862148216367994 4.17943374295408 2.351505091455246 2.820869680972497 +4.615018157684407 4.600787923368559 4.070073214942117 2.4575480362385 1.6125879670646863 +4.764407119016478 3.95089348546328 2.1839172771146873 4.922033091191181 2.8564107973596347 +4.943309534693211 1.405205918685485 3.420474425023008 2.603689616619336 3.631158853705793 +2.558495797578237 2.450818019872373 1.8788056669418842 2.577431998534847 0.7068756998275679 +1.9583607591237073 1.4060656470229183 1.2481804343799525 1.8378641527076693 0.8079336473443999 +2.6731172684201856 4.464976025801777 4.191259103727512 2.6942811687657247 2.3348877369517274 +3.6086911618046775 1.1903265265271523 1.5671625129258335 2.099083277827786 2.476171886056151 +1.6773984773269115 4.7203392541524805 3.905998065989699 4.2212871117443 3.059231235725839 +2.001888958671613 2.8906276369645822 3.551266248817894 2.8374218623050007 1.1399255442571252 +4.249693820247975 1.8790442229560984 4.353195253134516 2.551397033637909 2.9776595401290056 +3.7165861931008157 4.1884025727304675 3.857617806453295 4.290542578705133 0.6403394057186683 +1.5176592826478843 2.981955500996387 3.603108851759152 2.999815949776873 1.5837063303061985 +1.8978119406869198 4.371846608976851 1.9530104525141039 3.2064095939035258 2.773419720766442 +1.940354472978961 2.4511037904615676 3.4614530072963854 1.2612483152003517 2.258708824180388 +2.146858872709326 1.0053043534533805 4.051186158384058 1.890034717041046 2.444119938311672 +3.3382467882292435 3.34336393544227 1.5343670959316618 1.8533072573097256 0.3189812090632694 +1.4839239415765184 3.612827528089397 3.6047411576637773 4.462621579775348 2.2952536459637143 +4.605967923629873 3.0443138829019234 3.373916706694179 4.712070736501495 2.056555263155233 +4.309988513696698 3.4661830258098574 4.261533475315201 1.5615432892043026 2.8287726501935633 +1.8335889703217778 4.655896175387439 2.2829006901301 3.79276100703559 3.2007961722564424 +3.000466118170068 2.052061756249672 1.9171662746167435 2.835197550575225 1.3199440356877221 +2.3042228308889494 1.1539205431263087 1.8427230421981107 3.30780685928481 1.8627039336194302 +1.4879563716818773 4.1298716522207926 1.5057117836729423 1.7259393871548077 2.651078374337579 +3.5797817113089927 2.57825667896949 1.9951428703600866 3.8151620865462093 2.077383531678585 +4.33984024907513 2.6334374751510503 3.178276015356298 4.293344000791539 2.0384275898344786 +2.0595058860556614 3.6979710570635707 1.4886693447812007 3.5023875574748793 2.5960795744237504 +1.7669208799747054 4.211648932160836 4.10014001162744 3.9330058734737112 2.45043446541265 +4.3039528680012396 4.459344501633568 4.817279550783895 1.0035282206830556 3.816915740181966 +1.2317000904362199 4.39832362356886 1.6876119317150575 3.8425114087150845 3.8302867198898354 +2.248465493397131 1.2358003629118048 1.8309657124691974 2.9464424154170885 1.506578554646375 +3.2718922289207395 1.2520394386970937 4.487674164984614 2.617063214546564 2.7529966621979387 +2.2691077692323347 4.045942098211258 4.522582079285021 1.9803940452130857 3.101589952462529 +4.6084299834881435 4.8185008208593185 1.1550927006361524 1.8885085614941386 0.7629079771977009 +4.517448039486845 3.8659400660561234 4.230065090514788 4.155790454433524 0.6557281151581117 +1.177886166546612 4.202553650031533 3.252892803362501 2.683480444921406 3.077798534601713 +1.8141893749216575 1.5819001424222634 1.206128184461674 2.694239111593534 1.506131607458127 +3.5861851669500724 3.9301321359913577 4.9096036465059205 1.8070761387000203 3.1215343109126605 +1.3615201182692198 1.1061629441477008 2.9945692248618876 1.640501466021532 1.3779356958531377 +3.876474411188941 1.2698777688596632 1.8134563947737625 3.5692071309343016 3.1427705457653983 +3.130003372488972 4.771036332472884 3.970261174478143 1.755300060818 2.7566359771975955 +3.208824194666453 1.4545962970944273 1.0293017605507986 2.349691331455444 2.1956193057025444 +4.6293081770053615 4.508257837957624 2.265143228485917 3.9665415424469193 1.705699096362812 +3.769306004411709 3.4611487795213165 1.0511438395074642 1.242408008718439 0.3626883754355968 +2.4178012322418994 3.688197018091488 1.4307816798995296 3.733898634767554 2.6302572422683212 +2.0716409560867657 1.7077627818637833 4.476093155727947 4.105281464907827 0.5195273195172007 +4.268998844241693 1.3475112141565373 3.166816010937331 1.192789251151059 3.525885934214672 +3.015470708421753 3.1302093091500103 3.918785445449557 4.073697034811984 0.1927758984309801 +2.720599445075461 1.259954445288534 4.296521448262647 2.1545628966032915 2.5925798449477298 +3.5202882878837234 1.6319935171721083 4.520013475863093 3.525957622322159 2.1339644282545636 +2.2133960501019976 2.8394991927367395 4.321780507101069 1.387239436572826 3.000589348750366 +2.231092290430905 1.5311503524316534 4.665043008259582 3.0486669032819638 1.7614171650443189 +4.086236173940495 4.876931095883258 1.5322924422819426 2.7781936997165584 1.4756247500171675 +1.5797769893693654 2.328476721429276 3.3192604278367046 4.331387923347345 1.2589493063484418 +2.9508945366045394 4.339502339190345 3.122354759585781 2.3077280281820443 1.6099218431090732 +4.10007018915406 2.371515029082761 2.409698550816397 3.954283655695125 2.3181126132313645 +3.310213244046637 3.082865131849306 1.844097566244975 3.4815922776936543 1.65320177054771 +1.2521360156476242 2.7553626420414226 3.1470984448506893 3.307294500554961 1.511738425311233 +1.7332872145630525 2.3105997777925227 1.4944976851640894 1.7436861414553362 0.6287962169188008 +4.007449839743362 1.5699013744396408 3.1188943607246022 1.1132494177184964 3.1566206864478494 +2.334347258919901 2.564361754100739 4.1300911990078895 3.940060812347214 0.29835920607164407 +2.057636548863337 2.6859688913177444 4.395593592373227 1.3457835687441793 3.113862988765314 +3.7878300702530563 1.37846725881958 2.4618268585650247 2.274411576844912 2.4166409838742813 +3.9565437874680596 1.62629945257952 1.8074455868784045 4.280597932800964 3.3980172433968594 +4.027944095410475 3.6652635773225906 4.335953296935449 3.825883831986479 0.6258658141117985 +2.5094786064263555 3.6896866855539523 2.9010961887970637 1.8489040903885434 1.581138615679023 +2.048331391071305 2.6314647105812963 4.01911676974502 2.3135906322597957 1.8024605055223846 +2.6547912405201113 3.339841455361987 4.639546703531857 2.0705847474485792 2.6587326546040915 +4.42744401196793 2.1350269689729884 4.385073393058432 2.0676761307457037 3.2596788139919863 +3.7758082092991176 1.873646114755883 1.7155433686670238 3.115999888119351 2.3620963352060036 +3.797511897989167 3.0097481426660093 2.309055433152921 4.113298123338643 1.9687212650066679 +1.119087324199549 3.0086439265858447 2.8996639714880836 3.3830846535356947 1.9504152658992953 +3.153552553574562 4.392433397068212 2.838336587007352 1.3636170329929684 1.926038293328541 +1.7410508520463823 2.4285071092099684 3.2554145536344588 3.8557717025575347 0.9127019293155959 +1.3850713797530831 1.2387863349422727 1.9528490970885364 4.143772740565417 2.1958018412145734 +4.247166750424389 4.744627116799318 4.314835333696626 2.7265502860502138 1.664366608860874 +3.438820690738283 3.248624964836911 3.741224997686578 2.2757466668033186 1.4777689780339598 +2.2295842683302425 4.3005054518847965 1.660232431558819 4.664841791812257 3.649163185747873 +1.4506971534797684 2.097259968467497 4.166362037921072 2.8318335465120703 1.4829058527456291 +3.465969565881099 3.8245755297389135 4.8443970861297645 3.4400964533432252 1.4493648624687527 +4.56008956965783 4.473736974972443 4.754181296255764 3.096718752542964 1.6597104730704701 +1.9102226890661482 2.91252767816882 2.238049302653266 1.4736938680090415 1.2604977277449845 +3.6085079955525012 1.936087430288293 2.130760756601744 4.154201868758071 2.6251294218539187 +1.0310508058226104 2.641212342824782 4.166267319053651 3.2728683071523554 1.841407605530999 +2.4821706569124036 2.529975642937206 2.0189000624273867 1.2552614174843932 0.7651335156292677 +1.3389355571650325 2.0928190741056176 4.839655079066327 4.541082886394587 0.81085492620537 +3.9100197928067773 4.5208768082756166 2.4244517915091417 2.887045952691262 0.766250384213468 +4.817821327354178 3.2127367993856266 4.869873234288776 4.029485435499551 1.8117803383075515 +4.455843249888669 2.8329703482637427 3.9284319208666414 2.581688571922216 2.108894047304073 +3.6791373681175394 1.0728763204892187 3.356524106286055 1.8395855184465724 3.015576118697904 +4.465037766162607 3.3772413925552613 3.3126442471567565 1.0424134001318066 2.5173893320694187 +4.687594662952407 4.873683160416234 1.9488301545802034 4.660861539608822 2.718408203759802 +4.064946893816141 4.6825206873215794 2.6718741545314413 4.4892495168043025 1.9194401782345578 +4.8675827080417395 3.7129109346883125 3.3832294221999435 1.6391944297965395 2.0916321280059478 +1.4473838473496539 4.027003107609138 2.920874395526101 2.478099697756247 2.61734311103586 +2.866520424553899 2.5319012103650858 1.2887274162175824 3.3773344514401176 2.1152421530608283 +1.9456107832007907 3.239818180611935 2.5174157849116137 2.404177678228598 1.299151898862824 +1.8700687383257768 2.116691747770316 1.1103576210796295 1.8770381136422776 0.8053706516030902 +3.4797506973095023 2.082274791551223 1.547556386328857 4.3505190761231605 3.1320183185214354 +3.0094479048860263 1.8071686236046003 4.995597049619743 4.829799566407829 1.2136573963182473 +3.57763920623401 2.0088432718204734 2.8006324041468793 4.188238868021516 2.0944145679447312 +4.74457267288941 1.9328878167919759 3.923901201288629 1.188490589432365 3.9227596084215395 +2.7928893343345123 4.659247157486545 1.2312887136131625 4.0326553147413335 3.366147108781373 +4.500650545907842 2.7073425622026877 4.879135218151866 1.1105267496890687 4.173531276148552 +3.55837292692396 1.020820148368772 4.792178039623376 4.861916980647503 2.538510906781439 +2.544911687801749 2.5623062842540825 3.932414354137052 3.8335958683437243 0.10033775520822498 +4.322730887399054 3.741448330151993 1.80979685093047 4.262262052508463 2.5204116680238307 +4.450713471833755 1.9686450628783962 2.3698866725663 1.5041611841051217 2.62871531515026 +3.0868628508263574 3.906569762514446 2.614906631154785 2.5553263491895857 0.8218693515810628 +3.834940273613985 1.7350793978231347 4.650284575128438 4.665016960381155 2.099912555525194 +1.8845729342039337 4.745631795062656 3.6575058696446887 3.1098548125122343 2.9130017998066027 +1.7803557027675185 3.822272282545718 2.019083748111665 4.313107655809638 3.071151088413427 +1.6250306583098162 3.097636581974552 3.824992614124078 2.9592256230546514 1.708250768838662 +4.158211988960916 3.3019864422915024 1.3722246636956843 3.139429620195963 1.963704546271788 +4.82833923347881 3.2024954565480312 1.9266049074266793 4.648302555505012 3.170332171009793 +3.7500442054852208 2.860470473199805 1.7271588887339595 3.5878357156488607 2.0623917376168643 +2.9423531685920192 3.240357813955419 4.1364814491485795 4.3231450474291435 0.3516391155449198 +1.463406459855705 1.8122539979233836 3.6715136038271816 4.100825258435492 0.5531754708936448 +4.067206946779702 4.06744706700326 3.75580610820215 1.8937735150157033 1.8620326086689152 +2.495842478266035 4.32610093745207 2.1024844834278547 4.176224088204986 2.765907080117344 +2.004417745269007 2.630280271958766 4.4570038311098426 3.2967938495317757 1.318253049936873 +1.6332380037485437 1.433316194621332 4.752961796261751 3.4111003123400936 1.3566727578149158 +2.221317759817527 3.352781359903909 4.910100918644044 2.1255061483937374 3.005690921040584 +2.293072169335731 2.78978537345798 2.4776764979328574 4.781999274972596 2.3572499799413555 +3.569068423555615 4.562010332736371 4.96765087505413 4.136564255109207 1.294850804092503 +2.3502157045433476 1.9036572591422556 2.524434243775358 1.4587725764547121 1.1554433064221103 +2.3679328481453634 3.8756198144988905 2.6792136087083187 2.3866572650019937 1.535808973393213 +3.587071870214772 3.121006896976459 2.503224469858331 2.783302599939055 0.5437465569814164 +1.020335831699251 2.8863145766374694 1.5111366020361094 4.512229029861422 3.533897626829566 +3.203816277487529 2.1211243886554514 3.0376193697025475 3.4397518623939947 1.154959855501917 +1.9461461996649736 2.716077742833097 2.521412109124537 4.284165780339535 1.923563122579345 +2.0866867003160956 4.424449002170567 3.845927075047152 2.802263500783575 2.5601496511369293 +4.212865937193835 3.1045751202001255 3.087286688819125 4.722438691793183 1.9753558180395396 +4.765689040832777 2.2599786174157175 3.7561534461264356 1.6899167596361488 3.247755959215418 +1.5784546170184095 3.7714599701695044 4.596899389416867 3.2119269713539875 2.5937272558509883 +4.1822979459757335 1.2003052591381338 1.9933599643297222 2.7610918733559813 3.0792357279834928 +4.765480342595505 3.7737806039231794 2.256885429582811 3.135429619622176 1.3248804721689738 +2.9032321775767844 2.106675865158075 4.224259996293786 4.023684064767092 0.821421124126896 +1.9155812456384647 3.1070714062591644 2.043505366680857 2.6262908188444363 1.326381425574653 +2.9286622168281045 2.362392398335022 3.976159305480502 3.761515487174615 0.6055852343585657 +4.443274101106439 4.495623557908086 2.4287405568288114 1.0106945324495773 1.4190119777102583 +1.9793837761551263 1.4457461138754026 4.528028041551165 1.627019761464127 2.9496810328808305 +3.5333972869342243 4.6129421829119766 4.2775779082710095 1.762966767116454 2.7365464318462114 +4.619603863705061 3.4037301631158345 3.6227882843358965 2.98815301112913 1.3715359221627288 +3.0899035878514893 2.414360581004953 1.398864733156148 2.2736200135315983 1.1052398629455926 +1.9559393537680352 3.9199401855923113 1.6942363672481342 4.423725134885547 3.3626489855566626 +1.9396793284232619 2.2711853552803003 2.3459030907054963 3.519433713879428 1.2194549476588037 +3.0697261375913634 3.1491128451017665 4.0560973913742995 2.96248878075988 1.0964862254216163 +1.0332656714948976 2.5849243507803683 2.4844826584631035 3.7457285242039675 1.999596406990759 +4.239714643714634 2.0716912597879116 1.5921281369968994 2.2172608985841675 2.2563502305410834 +4.252219521225243 4.095073283280797 3.0207777940516847 1.0213550543918277 2.0055887494621176 +2.2719774623837834 3.9382999371007306 1.1257244848975558 3.7667026736225684 3.122722591436527 +1.2708740485775185 2.9031419630729642 4.89702615725307 1.2647312306070657 3.982193488371655 +4.856889427948074 4.736389143089794 4.511503062097658 3.2608448408219313 1.2564498816488827 +4.261513432140625 3.1368777758540016 3.2343527374281855 4.504562847695232 1.696537380553658 +1.1879699368918812 2.897994067005632 4.08874829326981 3.2348404548997487 1.9113715290338298 +1.9424691347149667 3.689788994273776 3.131190793687677 4.924246682005684 2.50363258291637 +4.785541805330906 3.374752476901564 2.014191553405454 2.142409937282077 1.416603855414084 +2.6020322264276246 3.329808453295674 1.3271417652663606 3.656876843014622 2.440762948113764 +3.5529269228464297 2.1380806909243018 3.4382443875114816 1.4653859473324453 2.4277479862971574 +4.423628824889267 4.797153447194015 1.8289211502727682 1.5895423248819966 0.44364723093170555 +2.488802125360105 2.4049703151450066 2.4805649049372693 2.280457141981264 0.21695826603104384 +4.1464872305834515 2.086687186182648 3.8454057677288076 1.0388684551890135 3.4812968717981585 +1.7543654834926388 4.963975420757014 2.540902386194912 3.489253060533233 3.3467842701471175 +3.9910408782952453 2.995623471388583 3.6043086883911206 2.716704725791757 1.3336778503052664 +4.069119066661628 2.3812522340210593 3.257489909211997 2.297231273500335 1.9419039863461136 +3.8273783419669702 3.6056962272416557 4.968263800685328 3.1024898470646214 1.8788973910244622 +1.1081842208841994 2.4358179431301203 2.4114480055946075 2.829578072584618 1.3919209939381005 +3.534261051199946 4.939242812058703 2.2299547115770375 2.281195143012163 1.4059158332416033 +4.067051950475011 3.2211686374296047 4.501447346509282 3.4920703477560564 1.3169512158393502 +2.1974617466981416 1.6660910623281153 1.215456348043304 3.380622501377308 2.22941680171094 +4.476852717176014 4.756973041116601 2.2920202144146384 2.09581216634483 0.3420014532307486 +4.675650675487784 1.9502910774375852 2.0035540678318107 1.8601006505828912 2.729132430206481 +4.912571354410458 3.558155836954309 4.618013224653591 1.0368578422137378 3.8287224066395753 +1.3118973826032572 2.373526741855195 1.4011137666449756 2.934138287182932 1.8647308323177132 +4.061876921135381 4.548297079975706 4.819483307085632 3.5351110627812763 1.373396021861741 +1.8016493787201542 4.838838527338759 1.391125074072809 1.733003226488929 3.0563701666496597 +1.2683777370506917 3.495033756715949 3.19220832302863 1.0978819921919403 3.0568283906603915 +2.9097912981988374 3.3738296303221746 3.045037573574793 4.648487356875886 1.6692461715541334 +4.145091973595354 2.8774408585740026 4.393534135992937 3.680651173325458 1.4543525940694155 +4.847949419303083 1.4701960135206615 3.661074738978593 2.8933663260771683 3.4638987106314714 +4.703253241688133 3.0769910865100885 1.3579170498772295 3.243252697595043 2.4898231065519263 +1.3080824547248886 3.9821394603680407 2.0788172651683166 1.7807603834733983 2.690616801804917 +4.028837061040733 3.723382236723652 4.556586783942161 3.2189692456263006 1.3720507747560806 +1.1987601635227159 2.923724633080388 2.9797499815309556 1.1283881957262047 2.5304234592602355 +1.6655051799020497 1.2334849838517812 4.1525434638778265 4.902489619995074 0.8654829211892905 +2.877863448203519 1.8917101305356692 2.3516515304706043 3.8713141988201247 1.8115940471094762 +1.8190030959812797 2.282206961169116 4.01800107069159 3.5120410660608754 0.6859689111110386 +4.217696838242912 3.638962409538322 1.24152392469817 2.863341988718352 1.721983557340255 +1.0860318032915268 4.111540549182166 2.8240657009930747 4.353553947712403 3.390138266843008 +4.869818062783039 1.283136403899944 3.01960629060053 3.975960877067597 3.7119939947722145 +4.101132782545057 1.5729067804667376 1.636976072962788 4.585017584948327 3.883667786252437 +4.359509284299179 3.6778460049069754 1.062774479319736 2.3147370449629285 1.425508713492702 +1.806894083193996 4.797035419381879 4.112373520909395 4.343545048085035 2.9990641015750525 +4.333668573683024 2.6915232519092633 1.1359973342792262 1.8894358976929273 1.8067404148527673 +3.089916661938312 1.129343049181783 3.5590645013089635 2.680155625588505 2.148564567998222 +4.945743164808138 2.9972199281141956 2.2375869275391347 1.9499756817049474 1.9696352537123545 +1.4837649300996008 1.695521453526153 3.966443450517716 2.472012544283577 1.5093589893466328 +4.310739388952211 4.7500947478949715 3.4376080453216784 4.211384296065775 0.8898105515486505 +3.377513428824807 4.49385436319258 4.130914663724392 3.388320767057589 1.3407694720241425 +2.933233031892167 2.5565784214049794 4.94591148402694 2.2836367077670445 2.68878702762248 +3.277599834357592 3.8110432970781223 1.9041816848823672 3.0840796923466876 1.2948827112667554 +1.4876049547545938 4.936408657504431 2.216930065680903 3.6675694359699924 3.7414705080668096 +1.592078570815933 2.050815170222817 2.1821909598068023 4.996402531030824 2.8513551226121536 +2.303113433925123 2.7657804743236745 2.4158135673811465 4.431744959779357 2.0683423723184085 +3.929119707798382 4.720801817846036 4.147852993395954 3.2370313919869007 1.2067959864711426 +4.332727521123594 2.1178522441800327 1.6369061199867874 4.622048600672493 3.7170886621669688 +2.9446189264726796 2.164340809316081 4.464903340951716 3.2338251373914066 1.4575278671074272 +3.2512709521952523 2.256911724967519 1.5662065465886759 1.8238631297811403 1.0271987089338412 +4.870095080276846 1.9034370190379661 1.007901626044045 4.112135993098715 4.293871336907632 +3.9256675602178084 1.2251680086910555 3.410108503886873 2.517214552693649 2.8442850482807875 +2.6588888419192043 2.154063114181313 4.576021761284725 2.2641544455079834 2.366343064972374 +4.006693754480944 3.9866139855493135 4.804385539486809 1.410014482277913 3.39443044871121 +3.7952428484656227 1.0391687569212693 1.0802773660098306 2.962325869154974 3.3373718651467215 +3.7364188781784726 2.5969120407542188 2.7343299198931423 1.175868246569495 1.9306161243901823 +2.727482100366297 4.211156044336973 1.8494429396800185 4.387714557490931 2.9400869337150435 +4.3658492861490625 3.597843236694324 4.017491153017682 4.660740334676146 1.0017997812454136 +4.448332482889995 2.2634778724118645 4.836724785213411 1.1138611756850212 4.316630992345569 +4.430298946239214 3.402130094030958 2.255870003501791 2.627674078053233 1.0933295287809146 +4.226108355443042 4.0082938671925685 2.8120696499694118 1.8515178480156083 0.9849380262374453 +4.962135315624442 3.943314557263957 1.3038590073594492 4.293313480245281 3.1582960252521204 +2.384912727242577 2.9974599471275525 3.8762320536032813 1.6317366274985208 2.3265798534316424 +3.9031405500335663 4.156339076016134 4.300769528062581 4.735776307577856 0.5033293074955958 +2.2782012641962215 4.390475340058709 4.16386297256186 1.9394634044258603 3.067516130403286 +4.364500239468104 1.609849502016654 1.7880700008244053 3.8944769123035807 3.467715496125519 +4.4815463592104265 4.2026193470275635 2.298210790835237 3.797002142480719 1.5245247764115055 +3.5947767990069592 3.9898554424052626 2.6957258196373632 1.416421122971423 1.338920326748749 +3.811159129701809 1.85766112647695 2.267410916987916 3.9522908280698554 2.579723776564265 +2.043601445517557 2.268548993354379 4.234995623206633 3.818835198171875 0.473065427444143 +1.5453377349999542 3.5154547749604643 2.9164434388840856 2.287777622755128 2.0679898112688684 +4.477018428919183 2.156327731947744 1.7111130830499648 2.3754348711294027 2.413903218674445 +1.6512060885101398 2.533880776379435 3.5564148255428214 4.125362982236327 1.0501507556584888 +2.054112451465871 1.1422979038051722 2.821762150830303 4.766527486990645 2.1479101429195153 +4.807944535410844 1.982717784710709 4.889771357604807 1.8850012922627881 4.12438472240977 +2.0239459543852916 1.8468228522976293 2.5399188730157993 1.7843028717617702 0.7760980187091612 +4.168725307096558 3.4587755084397953 4.41049378701686 4.315369866265902 0.7162941273749301 +4.314208046578106 2.853655328656601 3.3568235629529277 2.874062014384356 1.5382694674874817 +4.8163888069674385 3.473658451829169 4.327049406724879 4.016398532388558 1.378197653580815 +4.244486410115638 1.758311723515083 1.8586311621097353 4.2470853366428765 3.447575657783039 +2.516314880191925 4.713733793406101 3.8297345944994308 3.316740203958773 2.2565046254943844 +4.210257437653322 2.8814434990366102 1.783818919019379 4.147398398510129 2.7115040917047906 +4.860825642723684 4.869658653923792 1.8108496011564639 2.696368855538261 0.8855633077130933 +2.0969924454134468 3.869063214651192 4.244967866756223 1.8405648560234433 2.986869372638802 +3.745088416440618 3.934912664087733 2.613932170187819 4.987838113189968 2.3814832922394635 +3.382083319294222 4.62024389270744 2.920945986086472 1.20579195755347 2.115371113338729 +1.0656024958889594 3.1553635976944476 1.0797432103189815 3.133169399714035 2.9297884868899287 +2.519045452667078 1.940540804178975 2.6472696848122657 3.1136756241137244 0.7431030403234935 +2.4760121094880456 1.3032138327915685 1.7397398581828574 2.4004200362815062 1.3460884426941229 +3.9196152064376055 4.056952447309503 4.27877727350506 3.8470854591558807 0.45301141299794206 +2.024358176796611 1.488039645803262 4.2569625488688665 2.217793773608716 2.1085176927602114 +3.3968351076393004 3.3225843056162727 4.999911443268985 4.6578470807949515 0.3500302982254963 +2.1984090240726095 4.72496130898972 1.886536722785507 1.2877628113505675 2.596535508217627 +1.2636252831541857 1.9126540024573768 3.1289242738810694 3.3968771520385426 0.7021659514624831 +4.790760092691794 3.587548343438173 1.7209621674468591 1.9603336768630726 1.2267914382902074 +2.3002177096372094 4.291830158375216 3.7456456609865376 1.560208090117392 2.956798525793503 +4.920552282686492 2.5080206737538804 1.5705900836771418 1.3916236390086136 2.4191605470526896 +1.638291683446369 3.4342919201688953 4.788991305805229 3.4509051682047818 2.239663225117976 +4.059856488872683 2.57370397231532 1.910941706577932 2.5853475905273204 1.63201488926276 +2.8786750672398327 2.465375958750849 4.042912100724273 4.155807217574158 0.42844073159112467 +3.5942901194187686 2.3298073801512866 1.24492302929802 3.1058413807395326 2.249874153955548 +3.6803962818047387 3.2296267971689283 4.678342356446051 3.587487013061441 1.1803213581349739 +1.0620616244285634 3.3108986519233135 2.645745826503046 2.381048226307261 2.264361454313518 +1.501286751970226 3.5789018295759694 1.6998984546296851 1.6267040861290472 2.078903996406502 +2.0636548053148918 1.9793038015313047 4.790999146274559 3.217979061618193 1.5752800635352495 +2.903222316054264 4.317064881385666 4.706259895578931 2.9482773827920883 2.255981674306603 +1.1822224187449875 1.2662145786664865 2.0546146066233852 4.119053866407841 2.066147172944771 +1.2264268336536603 3.6491814874343618 3.6505893453191365 1.344396896455486 3.344886204882278 +1.4822109583090048 2.1266122189532006 4.935308687794844 3.972884170426759 1.158237426588789 +3.7428007391860585 4.327112798770475 3.116703170114631 4.186695044328309 1.2191403503531015 +3.3964461158046855 4.672984736684326 1.4921979271415986 2.625705097938909 1.7071582694191585 +3.0149204245697456 1.3499132618291867 2.883953740072262 1.3310649190554331 2.2767767880089615 +2.736164005953962 2.811151039993581 1.2790333413128607 4.117783084385686 2.8397399808908723 +1.7956494928641136 2.6619496273734757 3.184040366604398 4.550334166509721 1.6177869670357299 +1.6934155278532566 3.230791291845037 4.424109737648793 2.30232269546086 2.6202107724581865 +2.5451303406771286 1.1727196876296384 4.607596354386786 1.4189417942206828 3.4714591895435443 +2.383039349066375 1.1621386308433403 2.395525112784545 4.333742021009874 2.2906949485010166 +2.15133029644723 1.1958299964060108 1.9404576419638238 4.483222733729703 2.7163643230027157 +4.77226196234244 2.7745843050373162 2.5068947051248895 1.2383931487340503 2.366392237365156 +3.8928209494931147 1.0716267759335505 3.046958139482958 4.705947083736706 3.2728246030122965 +2.478298218041835 2.748947710428864 4.696140397323374 4.762098114614639 0.27857058028376025 +1.5159316209998108 1.010680857910343 2.1315076784055975 3.8712212149058285 1.8115964017088988 +4.509827152234962 4.703324821738997 3.1261413529816644 2.7946002528760303 0.38387608568748705 +4.844689154610971 1.244721392818097 4.561144700201174 3.42834406830252 3.773990614399827 +4.939180322338837 3.8265430551905886 2.7100759502687204 3.0919927391071638 1.1763596906744938 +4.173636452395103 2.2022230985283735 1.470523045288552 3.0677703476360567 2.537256304881406 +2.7012915265874153 4.573768932702757 4.285321841789127 2.971656681120925 2.2873320246011186 +2.384736529198246 2.4147558056514296 2.99604658517812 1.6044056709314765 1.3919646515497461 +4.5549587714375255 2.2829907124591724 1.66344820559509 1.7844483311892287 2.275187880464306 +3.5020107490400525 2.009474849398155 1.9335644193867698 1.3005712033451844 1.621216772450408 +1.4222937357399323 1.716661669493969 1.459328645134438 4.1068870147168255 2.66387270731324 +2.722051229944706 4.190155732102538 2.031847125039423 3.526700540695176 2.0952130114987755 +2.118526481979688 4.361899653674139 4.3100909465167705 4.035593852744224 2.260104387405147 +3.694988519482766 2.0847318861566513 3.136498404094411 3.40702829227908 1.6328235806638645 +1.3007658382298364 1.7855664349582643 3.4205503557586403 3.714637814043333 0.5670265000055911 +1.8135050602226395 2.6029873488281488 4.082901116486795 2.967521356663392 1.3665117242985898 +3.791280160889453 1.8831390521648745 4.396698724808793 2.1440845536454356 2.9521641375320993 +4.172405533300664 1.3447828593269158 4.675229936805275 1.790823687947063 4.039213957544557 +3.1374218286965325 2.5999585905660374 2.540348042853811 4.449815515289522 1.9836664943058702 +1.4194401217329107 1.958090365416843 2.498994343097064 4.886940783979189 2.447944502953931 +3.1479312568205313 1.8167092827013636 2.443166237355815 4.114334219609319 2.136575383478659 +3.741888467679552 3.8115847911703704 4.1833375462994145 4.709380454854866 0.5306399147723587 +2.4761836931163863 3.7141994703336496 1.8482922981464482 2.2453318237372084 1.3001243977097732 +2.5197447554650383 3.7384176836250353 3.471308614350259 1.5808442284009985 2.2492263781959734 +3.2866667434977983 1.8753768369132224 3.0305025993241683 1.8050921398731878 1.869055909960792 +1.728129358980182 1.6073265451599785 1.2592759088020569 4.234483794387281 2.9776593630359036 +1.429019177066734 4.547810748568624 1.3713343453303763 1.463921045170356 3.1201655666740646 +3.438566394120782 1.5867119190884131 4.521114007963118 2.7830426882275203 2.5397355982827925 +1.8901185427987075 2.1778197661357006 2.5026191208052535 1.970476817200892 0.6049358851935954 +3.2975668335164086 4.762042878361492 3.051138049869887 1.7214275090646725 1.978084985093814 +4.2872697799784385 3.395162649110389 4.547998041417151 4.296138858634393 0.9269779829627142 +2.229469412812377 2.657131069544922 1.7267124425620737 2.5160997366974254 0.8977899491426473 +2.9920789677212767 1.1209789991857275 4.5779789714563 4.530011038390967 1.871714725821297 +2.12433502185686 4.432654356705327 2.410609100916323 2.5193202679351114 2.310877813617556 +4.073378767057271 3.542130144446255 3.339328323372102 3.6228410484568725 0.6021665586123943 +4.209408961512429 1.584423105851649 1.350362570802548 3.053995271770413 3.1293633733119295 +3.987882583349089 4.047152707614308 1.429517976959755 4.555470564710531 3.126514437595993 +4.637409907406427 3.4110364817780465 2.0294950702439656 4.153518604415123 2.4526450523466345 +3.5889631324230615 3.6187051388888123 3.2192674887497343 3.1102671275163014 0.1129852454864246 +1.2908244554913875 4.83806852832716 1.6133247253175131 1.2494133037544253 3.565862032526298 +2.6598272902206865 3.8187196713989437 1.2234608121064743 2.2247042932252126 1.5315090791881647 +3.6513622735978375 3.5700209694082137 4.445528870356963 4.606988800846374 0.18079191608286727 +1.8902652177874715 4.776147599524485 1.2441073236037719 2.6398332740173593 3.2056774712809166 +3.4270453050205507 1.1764843636286013 3.1025301507857725 2.2053117313727677 2.4228135386473695 +2.225666827595208 1.2556692285052553 3.921449256007008 2.0142213952998973 2.139722751876442 +1.3965708393571892 2.6599607501056246 1.3116548884233161 4.196178792903277 3.149068468943992 +4.582990585907115 1.706836374025658 1.7108748032631822 1.918158334394477 2.8836139673683276 +4.254021036745807 2.342108732971251 3.8580942336266046 3.5761510690178078 1.9325890937791599 +3.450600852336517 3.0714050526742245 2.9865219245690198 4.515609708160566 1.5754043621910006 +2.1990721749303854 2.436712266025724 2.5072837376205626 4.45801256147174 1.965150314123477 +1.5948829334621166 3.9437144122400567 3.4835669827070346 2.4640715235983177 2.560542971098407 +2.0001920646773015 2.7242651105434224 3.3470352120117544 3.1889452230842825 0.74113036663527 +4.668216929785899 1.7837484194511135 2.815493828773562 3.384826033620223 2.940118661991134 +4.289123726262524 3.9833520630029833 2.5375800036352687 3.4992722688716182 1.0091324606155165 +4.498881098612361 3.071106559737477 3.263303967390343 1.7987355283163664 2.0453608108573342 +4.968437441703418 3.3267425280454788 4.658567737665266 4.834523499722212 1.6510973986205015 +2.0322132892901643 4.400046644239334 4.370219704369934 3.9992699598106642 2.396714106813415 +1.9352411753106509 3.210166252214111 3.0255404084121174 2.380800599270795 1.4286788908669725 +1.4655141263619216 1.3949513724480949 1.4546343022468 2.496068727304064 1.0438221898073718 +3.337202129200912 4.907665706821384 3.5995392240431205 4.232335041356652 1.693158703442177 +2.3613272164134393 2.631298953347892 4.425355482996436 3.541525885007827 0.9241425739701163 +1.7313772050277625 2.304833693929207 2.3274265037901327 1.2423505786054925 1.2272905556869877 +1.3036624447272054 1.4416153001975158 4.264423940312065 4.14672859194283 0.1813372144932418 +1.5435178385889237 2.342824241222226 2.802188413410073 4.460021092605828 1.8404618761332618 +2.053867400438609 3.3817457912844286 4.237122977160675 1.007494142711558 3.4919569626758644 +3.562236890353471 1.6293743134906573 3.8271248342069284 4.7273951407946155 2.13223928440507 +3.053639029333425 4.727580698100866 3.5545297959309994 3.0378135230575283 1.7518779686633927 +4.269133278556476 4.0555479482589 1.4065597595458694 1.4576845923360309 0.21961885585292223 +1.8480985301786887 1.9031426049591271 4.729366844853406 2.014221382958069 2.715703358141179 +3.7874213787604174 1.0634999978715598 1.02635831791526 1.8543408495485676 2.846981342045178 +3.9023764660989504 2.532755835111357 2.957511183087075 4.603021608847073 2.140926256112458 +1.257389637640446 4.145031208679067 3.8780421182808475 3.5025983899411695 2.9119463999084862 +1.757272839385684 1.3370036941707557 3.260799726988813 1.9739546901035103 1.353734207064305 +1.5521926715952659 3.011479263335722 2.412619140228069 2.62584508026783 1.4747822409899427 +2.2647502303142515 3.5294596530285838 2.185167911675177 2.501661835121872 1.3037094490265468 +4.472027564607622 4.3767623147538535 2.9728581018197553 3.6354129473487986 0.6693686511659441 +4.025640316813169 3.336765524251886 3.444322223615422 3.8672583842075583 0.8083461361092583 +4.97205424389737 4.254587761835392 2.3629018549148455 4.914341279850987 2.6503964405350495 +4.125004239070943 2.642146137730351 2.7534340985961663 2.7643531304236735 1.4828983019639195 +4.755062866315381 2.6969468838140034 4.545432557151509 2.964395660083747 2.5952878582764702 +4.527579416787345 3.5076841622371133 4.040238927163632 1.6470427463964628 2.601456186425719 +4.497481341826793 4.360986219348744 4.079641521489094 3.023753504984077 1.0646738570375425 +1.4666368771863358 4.409135851282045 1.6231589540281122 3.380893225437172 3.42752534366126 +3.1667236873572686 3.975910954004924 3.5381167110334935 2.2646922906212748 1.5087722780482475 +1.0086424702537262 4.113141838688212 1.8986252113313045 4.588389919336319 4.1076453733300085 +4.150822666914539 4.579491164664782 1.8124524820184984 4.454074063956311 2.676176612842112 +4.8102712450268985 4.935857589209463 1.349274658472953 2.1955246212021273 0.8555179304165814 +4.175572793641779 1.5552717194461114 2.3582217886285872 3.0934736983184568 2.721501991572589 +1.777287454952138 3.6674987260801597 4.096726266991171 3.6025463808369556 1.9537431789717923 +1.6479326246315145 2.835438714410237 1.687273122559346 2.571990880780973 1.4808430791188691 +1.026799596074802 4.689342973231181 4.562326405114527 2.8104615818277985 4.059957431873085 +1.8802091443266122 2.6961983487404404 2.599807606524311 3.4561104784968886 1.1828326129543423 +4.562584766440196 2.239233772163302 3.8340065893737996 4.361190362936686 2.3824110841152994 +1.5223015119733274 1.1268593533491504 1.2757305004834327 1.7429882736936007 0.6121309724582423 +3.877846016473738 2.3167223253033273 4.738033940349375 1.2765216920579516 3.7972587776190694 +1.8627108361342546 3.992700989468811 4.099903394549253 4.5119895434312784 2.169486816600319 +3.8976475068039584 3.713596289298917 4.724631555680723 1.5925904183570507 3.137444268278379 +1.5633487952930363 2.65613239558023 4.382790034361301 4.312129062951833 1.095065737724074 +2.720057650489372 3.0969530805854935 4.5058945278034965 4.706438693027337 0.426928714696807 +2.2626577716027434 2.1663259740020435 1.8260634740692772 3.2078132138278295 1.3851036634677598 +2.513324434866088 1.2456147790762766 1.922247747286686 2.758521292134741 1.518697209188011 +4.024906747761329 1.0770008423086042 4.202286533828107 1.0803585865489223 4.293784267450552 +4.0214306434746785 1.394649579264061 3.0677549663268118 4.6774209432571405 3.0807472010183723 +2.7851537279781464 2.8840517192650745 3.7003272872579402 3.2725343816996477 0.43907582799169836 +2.3740650572506676 3.1462726419154645 4.889443996272648 4.693318702981005 0.7967243466109045 +4.807171854272701 2.7921922275700037 1.114031299399914 3.844424866644705 3.393404179887606 +3.0980900665419595 3.0087813251974915 1.8014604329202433 4.82121163358289 3.0210715590968764 +3.6833280963894004 4.480043339604402 2.2084748845574977 3.9018057940998987 1.8713964700145271 +2.609004865872653 3.75981739459206 2.4436115398732334 3.1180144394364606 1.3338623419217008 +2.466179674531682 4.925162741695527 2.548343366376074 3.4097204365510625 2.605488088942599 +1.841065529082135 1.0634462875012365 2.848047224524314 1.4444557272016878 1.6046061124878042 +2.7730967751186455 1.309359683202132 3.3080038159923975 2.8200606665837826 1.5429241041953456 +2.0662379128817174 3.9577903097401843 1.354298567155448 1.3515852353146172 1.8915543429229542 +2.4987452651821003 4.733139270255245 1.0049021800780724 3.1713846056754487 3.1122600582742277 +4.157506293890429 2.5995672366771174 2.582978454826721 2.6549178785378316 1.5595991108854188 +1.7054148347631513 2.8374381880179778 1.8538539640279956 2.80972316295685 1.481608179572181 +3.2387058715884898 1.1004815094516331 4.540323985587268 4.100165619396486 2.1830581325661726 +2.0265814207371986 4.719597840589522 4.189983301270793 4.683842567127938 2.737925202058519 +2.5160643511214835 4.296216774343712 1.775564636339098 4.997523991444193 3.681027673877664 +3.971650780187396 4.6771306248958675 2.148553148351689 4.90895638884383 2.8491275614491887 +3.2713192271426745 4.6016663341537 3.6980340945064505 1.9556746345856681 2.1921769802431657 +4.1465804949538985 1.1473500313630463 4.891353966802409 4.58127147837285 3.0152171602327527 +1.5537433911670462 3.8645872673601667 4.090129581917 2.5596906628756804 2.7716858958142443 +3.0707963075720843 4.975993244633058 3.213245210504795 3.3774761480071067 1.9122623172094886 +4.7183032861422225 1.597668943403745 4.088709373457375 1.888975042011484 3.818008620998715 +1.4960213258491875 2.469119073906496 1.419592891994938 2.0276786604818233 1.147470055866597 +2.840045493606025 4.940699619239523 1.007854958281421 3.6155741926587948 3.348573929433656 +1.3367924915975737 3.3660802403485 4.609142086547234 3.27684753993263 2.4275538152983582 +2.9732772948586397 1.9571692200955342 1.6961175788935252 3.941585450205866 2.4646706840255064 +2.9710056103573796 4.4732526911642925 1.8358073021324923 4.489238433934133 3.049170881240838 +1.3671287214537413 4.087962575317738 1.7565480340814283 2.832803014318231 2.9259633700401873 +1.533385925303894 3.9697147615116752 3.7247025716054556 1.5622712617621421 3.2575769166557262 +2.04838041166497 1.5729254805116928 2.1759988131029777 1.313966763566111 0.9844575389455346 +3.4377600634554266 4.294936253622607 4.539168691504757 2.828155556101135 1.9137181011092659 +3.0080838824643763 2.253434531175343 2.679746751688395 1.0651127588980982 1.782284650126038 +2.7090254425696325 3.2008010918979264 2.820994617285377 1.2416873200385066 1.654102423796507 +3.8974216430291366 3.252159634299651 4.00362333814887 4.426146853690765 0.7712905944554836 +3.0463025454228174 3.3218218986157644 1.3973730306493284 1.6156892220678283 0.3515293350765181 +2.5642656608245575 2.7993398672668075 1.5522070070105034 3.535328552352202 1.9970054947678286 +3.6795864693458653 2.2922320189256205 4.484413171841913 2.180906117663399 2.68903274798784 +2.232606673996021 4.575283071046508 1.9581571252199645 1.560236217205773 2.3762309968377 +2.124891297595038 4.9184820598089685 3.3852055039476476 3.194575316133509 2.800087358500278 +4.604411203009338 4.150124128433105 2.6058697218931073 2.63465732372755 0.45519827783770267 +2.568828474944145 1.9106855494021118 3.2801294368643887 4.069984879831122 1.0281165941785007 +3.0319957226682863 1.2666131385988373 2.954535803956405 1.0558575988253227 2.5925961110006153 +4.01597875845911 1.0399112373370705 1.0658923854362348 1.6173839673030215 3.0267343549025596 +4.262967275302584 3.258561085735188 1.6445573037644898 2.9035456376630018 1.610553761454068 +2.572712777484026 3.6269279467078 2.374301107013017 1.3932054900734427 1.440110493191253 +1.2820663535971484 1.5374845773977759 2.570426611115341 2.892279593892012 0.41088661644267205 +2.0010927533532317 2.165135776711194 2.9578383498201513 1.9296467062708453 1.0411955480970152 +3.543005748988303 1.201168308011888 2.3105961279859204 2.4215115860694834 2.344462590616632 +4.630433825509106 3.0249350322211255 3.5461839580643466 4.318377669237343 1.7815469409544862 +1.9318712705509884 1.1282746735560512 3.787930423371921 1.0769324239707414 2.8275921989316353 +3.4289287018917824 4.360970057943705 2.0944457676440273 2.3225024308537185 0.9595368315106226 +3.542036145423521 1.4352748917834557 4.628538764259103 1.552926091881095 3.727980189101231 +4.969760919938148 2.3724062723413075 2.8978718976005275 3.2126999214497367 2.616365389236317 +3.673768342671093 2.18303961740289 4.484594861157737 3.1011700621122356 2.0337493225453933 +3.685934671039074 1.7608213869209237 1.5682882216741905 4.301692955584416 3.3432861971495953 +4.9554510345365586 4.859991953420659 1.8348716597524612 3.8036541338344145 1.9710953468616756 +2.1269599224720044 2.5407747052129115 4.910620010520389 3.7357732735123403 1.2455952512246353 +1.2154884811936788 1.848545255734504 2.8882695423917957 3.0864235959235518 0.663344487218443 +3.7165592538085583 4.607113991228771 4.313049622274946 4.842693746000558 1.0361518412562203 +3.3462030920477215 4.76806011545669 3.220409356673406 2.0304272905288943 1.8541129180184717 +4.221884234052588 1.4875290034446946 2.785917338555461 3.1226392194471413 2.755010009459853 +2.8051078305217203 1.5418980567800853 3.953432123008693 3.7215178996204346 1.284322054426448 +4.7227213680646 2.4635597190885483 2.7443008509272335 1.6047650197863161 2.5302871905493682 +2.6395277563615966 4.881629116409069 2.764509967550905 1.0465855438035079 2.8245854270024395 +4.8442314818864975 1.485861486883206 1.6298419396345363 2.5548653131733357 3.4834346936510103 +3.6579540225709937 4.53004222157316 4.656182834505694 2.4690629464897493 2.354576656512529 +3.662100104045988 2.6223134944140876 1.6854430018092432 1.56479546063145 1.046762639169955 +1.12749790645986 3.7483897150017937 2.6735693844360844 3.6661169261844115 2.802538937234032 +3.505638639436318 4.538627879966337 3.8789808877569922 2.0891895990709837 2.066499365619818 +1.9670745374304137 1.0022026136334508 1.1017390749884424 3.0915018701193753 2.211364694078956 +3.811987479003711 4.563756747094956 2.3532997086719365 3.2417759187099557 1.1638500797997862 +4.558777575293083 1.6458490630418097 3.59175792321611 4.167032332575949 2.969190657999369 +2.297348848255003 1.1556473617213765 3.3497663703862384 3.339901785013644 1.141744101976299 +3.174030253952335 4.701909525630368 4.83919071191705 3.3566183100297007 2.1289518537678163 +3.55310563701134 4.201200031133162 1.634009481766773 2.1010401974549233 0.7988391784885849 +3.8834805104124497 1.2750252605185302 1.7508719319190993 1.2584139339388987 2.6545345487436807 +4.892562954567229 3.1202954128675424 1.2234440034819682 3.671564799630521 3.02228848257364 +4.21447545441373 3.553504646469619 3.1417064762458917 2.593327753438225 0.8588373726046501 +3.084775646347651 2.821734305501747 4.7221968041960976 2.3566645436491847 2.380112102965362 +3.6032813585727896 2.600128415510361 3.8765947676837786 1.7842805005533773 2.320365234098339 +3.9328754978120974 2.494733886628159 4.462755836140811 3.4432072479390023 1.762875667063062 +4.965682194136669 2.9705933380511076 4.836704372834138 4.790722281008259 1.9956186751094198 +4.75349850763762 3.0432882844137894 2.554848816383702 3.6055558364731297 2.007188145063763 +3.7460682039679525 4.34299762570161 1.6738443795948088 3.934740024411531 2.3383699132691778 +1.81255241775321 3.2964885841556186 1.9048662597601598 4.19152412797698 2.7259623534148396 +4.772160607340322 3.1660353185809877 3.590399883997277 3.1792466744097783 1.6579159824750944 +3.2191703321229235 1.344526660171422 1.1538838185989304 2.9386801489160277 2.588394644852517 +2.8622353385637114 2.1782133761468434 4.337977373437985 4.191000036415145 0.69963446360721 +1.5842183047734233 2.6379610148105876 2.529169823678861 1.3825375921019618 1.5572858354995358 +2.1074535922101316 1.3645749759424528 3.322777085108618 3.8381996618458953 0.904173142223477 +2.5826100722797514 2.883301026732455 1.8223120467353726 2.6665261374634226 0.8961654317554689 +4.087656783204231 3.490892641545615 2.5895993651396796 3.9898658489088645 1.5221280058972906 +3.6242554359326076 3.3476833871388716 3.976119483654842 3.964960532477466 0.2767970743439022 +4.275026227215072 4.179041888970245 3.585092666849784 3.67846933529278 0.13391114739935084 +1.3469184279378914 3.1906035730204167 4.374670780983882 3.128705351579467 2.2252201611231417 +3.4488502161031986 2.443728419709705 2.433671151896458 4.732053395831347 2.508551527240463 +1.058403477564589 3.5176247325279957 3.9741552907899056 4.573343787090312 2.5311649560948286 +1.8980745454962458 3.399906644426565 3.7057762077989174 1.6918934378661783 2.5122148523582553 +3.301580194779577 2.8429472656576893 3.200780671981216 1.941843654230703 1.3398755831559428 +2.8220933808254185 2.927789537357279 3.2399444279578735 1.0902123157273187 2.1523289320781918 +3.3707614445158214 2.6594791603248606 2.9021636531617196 1.510447938141863 1.5629443749657699 +1.135755106145231 1.0317449062311912 3.4670491192113277 3.5391805225326354 0.12657433006443153 +4.972781722185021 1.2292045962633056 1.3363702110589588 1.7198012864234093 3.763162112808778 +2.2821662243710605 4.111479678665929 2.8715987985860147 1.713647932139791 2.165002984563251 +4.485197429472734 1.526476429406233 1.873764702352391 2.1757357191008815 2.974090861286964 +1.9734095391914739 2.8961060002623076 4.928637336378559 2.464962948488423 2.630790802937109 +2.7652090484443863 2.591736723115629 3.0741501720445994 4.191149833199528 1.1303897074350915 +2.716489720322576 3.0703331399488962 2.1338086758628365 2.497790788604182 0.507629928204102 +3.0580534609723733 3.6429775485817357 2.2161051628796704 2.3425544131359572 0.5984359624521425 +3.5331445219089517 2.8581761911828023 3.281163747482128 3.001849543803562 0.7304783856212557 +3.877205857771681 3.004379140339606 4.459662726930475 3.0636620260875937 1.646403484999065 +3.5147550247877826 4.092130041324204 1.5447802722069732 3.825790496833759 2.3529491185685196 +2.504500754875822 2.9283469215119107 2.3654458111534145 4.262019667890487 1.9433573955993382 +3.151422176192107 3.5307651403458924 3.6668613401033796 1.183804751839665 2.511866060317074 +4.2000295149204145 1.0204930581229856 1.8251127619744856 2.156223225501375 3.1967305515418314 +4.6101246080966725 2.430718127826884 3.590714951912004 1.502106737999112 3.018624997820423 +2.6858155156857126 4.174002365965158 2.051002255449486 1.2215934969852555 1.7037074249887607 +2.138903010434799 4.413730184411343 2.493805752543081 1.0287829136877646 2.7057587826393172 +3.1911781573922244 1.5496630848455957 1.8649646530307442 3.0560836408073904 2.0281361336063775 +4.957270078352076 3.09349072709333 3.0760742072440097 3.919197083568314 2.045612293363491 +4.277536901587281 4.441284236633774 4.808418517223691 2.6710735177391647 2.1436083682791356 +3.631778769818703 4.360056238616057 2.39810026588314 4.1602715131221455 1.9067342699374115 +2.387558844937984 4.259605034602714 3.079272653845787 2.008356488286395 2.1567147168540086 +3.955817162948292 4.612862114533705 3.3767306671144377 2.079907653535584 1.4537737089903704 +1.493059368515342 1.390343867212743 1.739869216445045 1.2827101086929136 0.4685562122185226 +3.7842114651765115 4.218772904354188 1.5098017180889176 2.010465618370845 0.6629539844255298 +1.6777029180971645 2.9138815443382797 1.9535902900808417 2.2396536168562657 1.2688458625464298 +2.226202203566833 4.656245367590394 3.01832290288815 4.911470658664896 3.0804412353135664 +1.8297981267707248 2.4044051158265036 1.8453507220079404 1.9575388566294927 0.585456547851001 +2.437799498121336 4.0615085286850245 1.3371687077617898 2.289578308836128 1.882422658212723 +1.1746586632678548 2.10830055786559 4.657830549982243 2.8509866905009993 2.033807247477776 +1.3091576976563375 2.493502188213288 3.609564117401837 4.057607019355288 1.266259971057868 +3.887584857766432 3.089672076278991 1.0913266230127778 2.8598298997156015 1.9401723239366262 +4.473926106896046 2.949461890568797 3.4891944847787606 3.5474994957462758 1.5255787823531686 +2.5369834650363248 1.640741454838381 3.320820632625128 2.3091352661571536 1.3515757550241463 +2.3093600548176947 2.5978577925788655 3.04682442185799 2.984860605827232 0.2950770394158226 +2.759907344994967 3.064671922088881 3.7881894567945067 3.009287956537323 0.8364024118533635 +4.083338778507599 1.6920621131094795 2.7734281217922327 2.0975461501382444 2.4849588588313556 +4.6777486006334446 3.3584669581820066 1.3336540843250946 2.489827503758541 1.754206666249388 +2.1729099266878946 3.6927759028638145 4.813369568454557 2.274527303820432 2.9590053447450404 +2.5871142662084337 1.6782574734098943 1.0644936579042765 2.0003969394025747 1.30458254707601 +3.065581803131179 2.1302264935775033 4.212874113627726 3.9874113247765837 0.9621450120781103 +4.9248559265470355 3.933008736357131 2.3861090088766232 4.102400285451193 1.9822756101848134 +3.84039279711063 4.235666361698543 4.4389850870864365 1.7048345812876615 2.762574918300268 +3.24906028451591 2.889583728706408 1.7356896174593723 2.5736540543306905 0.9118156566092332 +2.9844114489863225 4.930871433619835 4.913890899762826 1.0223586647172729 4.351175658161612 +4.92908112839649 3.643840207620549 1.5287938117188333 4.1003032322843715 2.8748051976602342 +3.478423381392296 4.333283447652368 1.0349292607257894 1.1990796479099641 0.8704775025805607 +3.827484218626266 2.0447708998491074 1.6558640176190376 3.825192060166567 2.807855219402982 +1.2212803208971628 1.1274135971080739 4.243481252956825 3.5260794864463185 0.7235165902916759 +3.3082747712996294 2.6311237092922815 4.5684565773977335 2.0291969000751817 2.627997958456952 +2.6622809632707023 2.6000603834797102 3.940122375883752 2.41183169486853 1.5295567352103998 +1.4416356763902556 4.27165198926302 3.124021869267192 3.8240773451703856 2.915316449455874 +1.2322284708775624 4.085981436423104 1.1186692005471297 2.1829470733245575 3.0457500519319733 +2.997863361445525 1.6287261057974356 4.8269279225652255 4.949823704155932 1.3746418435128374 +3.0023186256220886 4.268123432674404 3.046555227479472 3.530584353018483 1.3551922387347153 +4.965018713401978 1.3056140274518997 1.4348445370838925 2.563678977369215 3.829557395982944 +1.133435319275946 4.289601126847359 2.380460413784619 1.9308676762863737 3.1880270128237735 +2.7582895411038497 4.968517597744908 3.352258115184078 3.67781960734307 2.2340766207854417 +4.8724699551221935 1.287315825367752 2.065592433259565 1.105054284246036 3.7115985329512218 +2.9510845347308354 2.2821881219762945 1.1114568967022342 3.104923788755018 2.102696521304603 +3.8383225210119654 2.4892459221533185 3.142062064970187 3.2836870008126087 1.3564900633769437 +4.071489107636157 1.0975112175832735 1.9297111586442082 1.458205699165446 3.0111230278488583 +1.5942242085040084 4.458498169638136 4.703134033784888 2.591299691865429 3.558638730208699 +4.505511457011423 2.647828970558305 2.9285263425997554 3.680125796112636 2.003967554376941 +2.3649654352275724 3.0135160226007867 4.6600757498117265 2.58164906967959 2.1772632659068205 +1.287030903258548 3.1652414423892976 1.567355685816811 4.808212499137512 3.7457746480199567 +4.089725271062445 4.974276412286992 3.2322571444953385 2.058956324445253 1.46937590009223 +4.189001652506786 4.203802261921579 2.1445632493394187 1.342690454504452 0.8020093747179579 +3.747328169036515 3.705226832433383 1.6532649447624714 1.0623958572960674 0.5923671168010183 +3.9497825979261245 1.4360239733087807 4.892661899835897 1.3013651792943284 4.383650825260916 +2.5432781354291243 4.978215908499587 2.862752517758941 3.32392418167544 2.478225426050838 +1.9915272706307454 1.55141693859632 2.9378317044928894 4.764414305553176 1.8788563284241864 +4.283625719271643 2.2577289847366497 2.8864097285706434 3.403258051944139 2.0907868777982945 +3.859805021963086 3.0542341274895652 4.912884705337843 3.975197692678906 1.2362044328233541 +3.839211266349695 3.4187883000243984 3.7184611760733683 4.119321669536973 0.5808998242671845 +4.613258684899506 1.4707405578736679 1.8605717149583332 3.9966526131811673 3.799771280279703 +4.894366764876349 3.321081136363928 1.0591894344046722 1.6178308936280903 1.6695232699327651 +1.5083850904430411 1.1591477463860245 2.81961886516124 1.9885461998311316 0.9014701867188342 +3.0734388720346497 1.4865282885667073 1.181497971567079 4.376157527110266 3.5670905337187557 +2.369381718180949 3.4517464296694977 3.888186593335542 4.566849559885226 1.2775354362371738 +4.771460366388865 3.5053142586555848 4.2014151282604 2.4839561081134036 2.133727126886758 +3.796423436279985 3.1745448447942763 1.1951912634383537 2.0265328522055475 1.0382012424198936 +2.125282947230125 4.841581402917145 1.2709134989302884 2.110856225265786 2.8431990932559748 +1.7116980705523703 1.2430506089628621 1.4382368735612028 4.461226345547184 3.0591004872335215 +3.5290853278844567 3.813308182053627 3.234785016630368 1.1222558686126018 2.1315632836152765 +3.188798320545686 1.3374303397929648 3.606289052912372 2.1567743562476758 2.3513094768667426 +2.2802698724999297 4.804416192539373 4.727686968159045 3.49321595126042 2.8098457851866865 +4.191516990552143 2.325387914488753 4.052496803797635 4.371063608720636 1.8931250718661072 +3.7489835589927143 4.119443606111153 3.66856109678786 1.1686365188500139 2.527224473981034 +4.505837522014614 4.145966666384091 2.250687336556178 3.3232777152745956 1.1313519139735273 +1.3979847494284532 1.4669791011818645 1.4820357593669105 4.678088745818072 3.1967976027232723 +4.0836174172402835 2.244406642799737 4.750439630116024 2.743336883095978 2.722344157139874 +3.614513662572279 1.8854765680564576 2.815664799764392 2.0038690775522263 1.9101260609744282 +1.653095793131531 3.0910752662794603 3.0468212816544575 1.657481591924303 1.9995123752190878 +4.973146048362306 2.3695832881477363 1.6589778899930785 4.793137529001271 4.074493304591882 +2.208188159343534 4.198786209220275 2.761267029752755 2.051521337943571 2.113343214722772 +4.066762787483843 1.9755630407847593 2.9916955444259297 4.0646557204605145 2.35039569433542 +4.0977867083803 3.7813918871835726 3.853499034607443 4.374396184906984 0.6094583858396666 +2.9938096533143033 1.374209730310096 3.3040878866489356 1.1849293618288028 2.6671964239465145 +3.89887033117457 2.118585962454733 2.620514313753363 4.088158578687299 2.3072477374355924 +1.1753402173607048 2.498575226215714 2.5781077246438913 4.494747114898546 2.3290464660318073 +4.755320103468321 2.441017502672874 1.0585553482681096 2.0926310994153936 2.534819359867561 +2.2303204901227733 2.6028126976688437 3.01815919575139 2.5685506125773467 0.5838649867446372 +2.0855560093757677 1.7826076694791118 1.6424329479536972 3.8779544000772503 2.2559551989236706 +3.019932717081325 2.686804838790467 2.8049961700087587 4.400686729654119 1.63009280270661 +2.0514600468553716 2.666440454340807 2.6260538306031336 3.644242651882022 1.1894996331938248 +4.758264635440787 3.99343966379019 4.260420858593937 1.7449418156794003 2.629180871032377 +1.7171526138588522 4.9653544618654095 2.0103604289460657 4.6631012230908215 4.193786948130885 +1.724766868185022 3.586338381338605 3.8149933988468083 2.2551057476181144 2.428723529560475 +4.477169484416988 2.5666463337655787 2.9720549968543857 4.358792760200769 2.3607499514912456 +3.1358581129913885 1.5413457918333853 1.0319196584647048 4.4070364076662765 3.732811623035064 +2.552475619858789 2.933672868265397 4.0370111514777545 4.305439026740596 0.4662240517293085 +1.668364325065816 1.2681035600315855 1.606431397569842 4.576978650330704 2.9973921433324158 +1.146581021324383 1.3855822760254162 3.0884018288272355 4.615141761137201 1.5453337570436056 +3.691681178668368 3.7576962225900647 4.143485579695678 4.462043856716887 0.3253265465385585 +2.6297804020603075 4.766820598588139 1.719528925981761 3.7605945214151832 2.9551462851164754 +4.894283088135458 2.009748384401634 1.4429120176419605 3.5377043117994855 3.5649256952574095 +3.9956679951610123 4.443141457186632 2.24690135566067 3.370067538508522 1.2090222386334373 +3.2539089984917644 1.5175108777531485 3.167435118706142 3.241650962111778 1.7379834363759072 +2.123050922821912 2.5890223039301636 4.907730194425962 4.363139005507973 0.7167348819884802 +4.527733988580959 4.9514049193046095 1.735835169295933 1.2578331487016579 0.6387354610732476 +1.4122586302243598 2.301649031852824 2.0446551361816696 4.544438808888301 2.6532873377829804 +1.8107824946664035 1.4852877579094081 3.7544252698474248 3.8922387874833486 0.3534676637256834 +3.452893092316653 4.021551989872222 1.0376487368308598 2.3085587436478217 1.3923308468882694 +1.4980765507823377 1.1326724629234128 4.980654548053007 2.0342204522997065 2.969005562143928 +2.0486707475812196 3.1591706893470612 3.0655172449656156 1.6520265835035994 1.7975444280190311 +3.21346779686203 3.562761768193958 2.2778209092505 4.820647841662753 2.566705103164354 +4.974462914037451 2.5167250467940887 3.7943135593873896 4.406081252546126 2.532732740435657 +4.875599238795626 1.1853209365176318 3.44082985202704 3.1853585177861183 3.6991106432333964 +2.2366871744780283 4.685362041090741 4.747288578127905 3.873015459980144 2.600069631278477 +1.0857092002977442 4.83373160197414 2.1352810140135987 1.0750483546796423 3.8950950200715835 +4.051577624270996 3.2892462470471537 4.491180661602443 1.253110130699019 3.3265973444054184 +1.5030651914052822 1.2058228536786677 1.8088453378233558 1.4383695902918405 0.4749792488585346 +3.245178551422806 4.730691514014163 3.591250084494997 1.564049734038822 2.513223034853172 +2.2313999161296088 3.5872068061360167 1.1768813678599823 1.3194491525328744 1.363282031061579 +4.486574865945222 2.8759606461004847 3.6169856831236973 3.4891356643089675 1.6156805972954553 +2.889751655844372 1.8268210889753775 1.3451026108000743 1.616877188161411 1.0971247927580414 +2.317260333101221 3.8405929814591313 1.9395028330624542 4.00279110097674 2.564702874421491 +3.3480837189767487 4.6253611645399175 4.887124564646951 1.571409136344287 3.553224799309593 +3.303725234101714 3.1867726221027337 3.680964731582284 3.518064260167671 0.20053547576547956 +1.342895935422466 3.0031681246213235 4.728914787474409 3.8869078425593657 1.86157982302998 +3.5114355393032013 3.212447231746007 1.4879460029450056 1.2833712106528439 0.3622773160126046 +1.9469850324809732 4.268635910658603 3.401155977312958 1.692629223682082 2.8825555446539832 +3.6213125776054818 2.5235712989134327 4.457860892841684 4.474401577890003 1.0978658885338968 +3.0821885729485374 2.7149347691786376 1.2665172918821237 4.2974657566244 3.053117087880356 +3.059450876514959 3.7034802035590078 3.3976427559697844 2.6868772309615214 0.9591461857470331 +2.8215942735663204 1.3594581532965218 1.7331912345705178 1.0028918982515251 1.6343742395258132 +2.255687183126093 3.9740348686211604 1.6894559709556982 1.6726797377571954 1.718429576749244 +1.5448916134800106 1.5962687352447613 3.8275526770919086 3.2203364532054937 0.6093858803678559 +1.4820819889252776 2.145420660409122 4.957923922747707 4.976761190367249 0.6636060847651429 +4.190644835498842 1.8813860711587576 1.695921445438564 3.0141511932976135 2.6590234502204053 +2.241443784185104 4.6256325358190375 1.8859504285576718 2.1801344163393703 2.402269806263426 +2.86423584752711 3.02574710194318 3.72016830345419 2.845925512262719 0.8890367502265055 +1.100320204433329 1.190833637269142 2.7962385385813064 4.9588303046332 2.16448511847949 +4.516905919415731 3.7050921074422085 4.196217017703983 4.43961860128284 0.8475175491986442 +3.7632355440860517 1.5003185410940625 1.229430800601342 1.4893998792388365 2.277800975563465 +3.333815706494196 4.51378089538432 3.4773808307877787 4.555710173663739 1.598471776009763 +3.2201999243865376 2.999220187203004 2.787764577123998 3.375998118626369 0.6283715012587099 +1.2853630895110326 3.543742204491546 2.157374750921531 1.8593411497411103 2.277959669180457 +2.2363295546617294 2.6179902290289183 1.4982606988823566 2.173056363889636 0.7752509657336997 +4.884513947643505 1.7894147386090564 4.794412976029498 2.8449320298287066 3.6578839611673852 +3.0837076287108243 1.941392944750317 1.048881534507478 2.2711832957861158 1.6729926577294514 +1.7819797587534314 1.459245067357176 3.1541870316295872 1.1943767902703253 1.9862058964687634 +2.8040091692404427 2.493096382317068 3.122399134246221 1.8359707998994366 1.3234668943659686 +2.687081853015208 4.367826027045687 3.9368080459735966 2.0370573434773402 2.53652394236136 +1.7677253818417973 2.189820318372317 1.362267647687747 4.838745154924391 3.5020079945321387 +2.2995027268343957 4.646051495672864 1.0047366350976956 1.693349426827481 2.445501727963245 +3.6112759399323275 1.7789179994656577 1.2413595761493021 1.638180614375866 1.874834008217918 +2.6673172899432167 1.9680647225402739 3.1462657739192066 2.3249847169555675 1.0786365131715685 +4.109112853288329 1.6520813608177258 2.7912934067015276 3.4824664223944315 2.552395716305437 +3.429033111042283 3.780265722238859 2.1281829068433655 2.082761150278414 0.354157427053861 +4.405700418137183 2.3762943216776256 2.3328772461596174 4.819858493526847 3.2099166389648626 +2.251644601219782 1.8621455730603942 3.4333764763913623 1.4595318721173047 2.0119075562159705 +1.7847823520531256 3.607320516357559 2.340213266219037 4.019116529654481 2.477975288077013 +4.0617655464076075 1.2220969402867543 2.284812494346748 2.261779325257897 2.839762018104092 +3.2748667463982355 4.8883814530934835 1.1076240227638343 4.294516234000523 3.5720738618851264 +2.7017127086847443 1.0587741180354469 3.806689791928824 1.7189774478060214 2.656650154696216 +1.4666337526020712 1.0910082182332763 4.31198528742058 3.930606902910534 0.5352980611223387 +2.79141072110451 4.818247357709307 1.209104386459701 1.8358278244648525 2.12152044987279 +2.3856789189542664 2.403932698784923 3.11548797116472 2.4951204899842883 0.6206359739688472 +1.7729873034852255 4.021515413123962 3.0003884350042513 4.408971000779926 2.6532967237839666 +1.918255231620162 2.6457475115339792 3.6305184284698115 2.7778263013169515 1.1208607768329986 +4.285938701722008 1.7179767680518543 1.5896891997588956 3.768913092236943 3.3680031571134443 +2.1515535463196844 1.8165359033261534 3.075177092731839 3.283955763106215 0.3947472030556179 +4.733446379904684 1.5215960245886402 4.797820326957146 3.0714212503194744 3.6464279064255756 +2.2109344754456846 2.2986553178652853 2.0001118287943056 2.814251494670709 0.8188518435884149 +1.8134145532203196 1.208148467395017 1.903823594280389 1.062094682186534 1.0367519453104428 +3.9269760906734725 1.0783645145321068 3.8737700862698174 3.4927695028854258 2.873977967254767 +1.979777206168826 1.1787060766294073 1.052045538276431 1.3277832465038153 0.8471990547209376 +3.448620514943523 3.5846973117719143 1.5440550919013876 1.971700503431932 0.4487733198823254 +4.468688375538573 2.3566618323826387 1.75711319473946 3.6807975631253065 2.856784498026979 +3.131861094710403 4.135476661610306 1.9868061158064836 1.1410466871786595 1.3124607488365803 +3.541974218470661 3.373762455814287 2.8727152064081936 1.624828427458803 1.259172986595825 +2.4097433265640977 1.7254068478997553 3.2060731529328335 4.2571860761793445 1.2542546764698699 +2.4425878841199444 2.24267997009899 2.01557623916655 3.6997407805315543 1.6959874340570467 +3.4852764569697676 4.857895232692251 3.2493423286776992 1.6751085595019117 2.088610605996076 +1.8906755183145294 2.725464339620912 3.675180014583412 3.721777718890796 0.8360883459448636 +3.5474674960929877 4.955964620658552 3.6936652600990896 4.680986344223298 1.7200776357669627 +1.1273109992471082 2.9895787701860987 3.2321120303881354 1.3973664795595413 2.614255627700435 +2.11660172424138 1.5356578500471363 4.501064666971473 4.153159557203043 0.6771512019976044 +4.912087278136712 2.082757788992764 4.171548432502597 3.002484361376691 3.0613422155219814 +2.057938950954149 4.7543812432183366 2.2620249730184967 2.556779412832052 2.712504601894852 +1.854575470784845 3.4303911910434564 1.372839545041653 1.9527422602095892 1.6791314252533394 +2.5269826418638326 2.2231425293385114 2.5324007658124934 2.4184876321365016 0.32449193518989683 +1.4506501609150515 3.216098359781181 1.5782686310893301 2.7814835273870795 2.1364768731611545 +1.1909976058267961 3.260747992520848 1.6273319660549705 2.1620429183917906 2.1377049529271166 +4.468584324731172 2.752232871169357 4.628343590768537 3.163874948094685 2.256220449672139 +1.5476557945076768 3.7899310367789867 3.1129035584489353 3.0094441719421035 2.2446607999337522 +3.514899779533095 2.5006587468757813 4.789434838109506 1.902343120766612 3.060062655678102 +1.7830866767363895 2.44471576826469 4.862130146761626 1.785405793492091 3.1470598660906344 +3.420422780511097 3.5363346095532946 2.85848653663211 2.4071103626449077 0.46602146147493323 +4.987992588144833 2.9069367282572567 1.872693086596215 3.692978344964809 2.7648204125777203 +1.937736701314693 1.08102765328792 3.937567447115598 1.599711558598603 2.4898836415472365 +1.9246682352494253 3.618734752776227 1.2203605795602148 3.3796770909409983 2.7445417034774793 +1.2146938510642382 1.993958972703663 1.649749667666708 3.230285587994146 1.7621997404519754 +4.376487040824287 2.8269411252933456 2.930773478164857 3.079723875967656 1.5566883969967258 +1.6811084568027468 2.8686859175187833 2.0151064648310526 4.2405011283289396 2.522443583814239 +3.1915752304817464 2.236601414577627 4.643998370531833 3.4336579526113984 1.5417194674499917 +4.961722339720772 3.1757220633632017 1.1421617095588141 3.165880732763786 2.699117572843207 +2.6084562981709856 1.0036883728832136 2.256432735217804 4.694040725038967 2.918426426359313 +1.2433202160130348 4.338680235354309 2.826298515342857 3.49006863983358 3.16572968326464 +4.520552038608747 2.714439624720429 4.387419040869521 2.5633400649947546 2.5669643865526885 +2.0842311259687865 1.9967366386218184 1.609815380353151 4.753753400445781 3.145155252050378 +3.4954423558015217 1.9383119296760971 2.573455959912267 1.9904190136964526 1.6627047977973146 +1.1321320350697914 1.5495205796073126 1.4584092883827973 2.765007262428679 1.3716455310654982 +4.071550584918553 2.918859948275276 2.854597200088946 1.4928633349505551 1.7841005642255214 +1.5062749321877789 2.50953086033367 3.0668749538112428 2.534373477646046 1.1358170096798106 +2.9225119288009473 2.3268774226620677 3.4798572112069555 2.0945049530427555 1.5079725939498885 +1.0349620579290182 2.12010297156599 4.465614624409568 3.8689759685482374 1.238349097838286 +1.5420348013079077 1.856065478744224 2.326680269615463 2.982135485732834 0.7267990139691861 +2.8813665186848167 4.548255084370644 3.2990395610094243 2.3444615870185452 1.9208687094235999 +1.7723679119686326 4.687667101164041 1.0986097920902402 3.3659621276732556 3.6932175641569183 +4.069597471408047 2.140080013140099 1.468413503166063 4.665130075722125 3.7339033821210985 +4.489121815763912 2.5700012058521855 3.880378362280016 1.9927904094191096 2.691841784944573 +3.8590257091127667 1.0128310377786596 4.386848477716136 2.96839484793921 3.180068365139027 +2.2042816201372135 1.6165906715461 1.2385735250087886 1.7040212514980762 0.7496814237727712 +3.291095558033724 2.677723813646552 4.646442024778413 4.6253389712934005 0.6137346622759328 +2.2875829466202604 1.5141232159922042 1.6335243458963746 4.971865041058168 3.4267708636377407 +4.797289588952983 1.367169116926227 3.257467281469356 3.109854518211596 3.433295207303568 +3.078633301626252 2.1553207025341328 2.4003626056155367 4.531408165475043 2.3224688014781085 +1.7401260190987382 2.382516644256099 2.162416323624563 3.9938439742305643 1.9408227520034596 +4.839768719053054 3.5266438916004894 2.829572797205487 1.5529650322337516 1.83139951896315 +2.7358608457884803 2.1401972079646105 4.6827164403322 3.174099968396954 1.6219552487106157 +4.191058472235596 3.5871926372471243 4.046741005811956 2.881754305444686 1.3121920433758714 +1.5563280858767587 3.6561784552559313 4.846618276350764 2.163546459181095 3.407087605253495 +1.640089463635226 4.833001130064942 2.6907771075541738 1.045982919409013 3.591661569660912 +2.5801371101014667 3.195549992870008 4.117740159893495 2.9757058892868953 1.2972953755862369 +1.9223905109460508 1.166171366134579 4.342455453722071 3.9933733102029034 0.8329019977784483 +3.853465195187375 2.5962025532661435 1.762533830048063 1.8969554668908306 1.2644281423719752 +2.849702312048815 2.0747955992734437 2.9846294142272907 4.037166665583891 1.3070252786375784 +2.245373560072976 3.7984521198627474 2.8355660092065156 3.0680011789708175 1.570375471351368 +4.177251852470564 3.409193656163982 2.6967770534997895 1.3917410508751877 1.5142761838780006 +1.536547335996838 2.7858274949883586 3.733737480537764 1.4981852551332118 2.5609362874076202 +1.0123478519890594 2.713937652560043 3.0490439366312945 3.923081600575869 1.912942677500005 +4.919670300227053 4.5459814994103365 4.813281425471155 3.1137271427321855 1.7401517404617934 +3.187374069667279 3.397349886632575 1.6456925440548407 3.9264260195473026 2.290378796169352 +4.5021895226942 1.647748757491867 4.45675406427427 2.2270096382939735 3.6220977743897365 +3.349858381430946 4.760865706896034 2.9284593375108483 4.6439787533576045 2.221249319338857 +4.6610089671076445 2.847108079842766 2.840383782105131 2.8120910903040874 1.8141215243829896 +3.6521136252570434 2.7096738293314107 1.8648447518092302 4.579023169725274 2.8731441406977107 +1.2558218408331956 1.5474245872724723 3.14426471090562 2.1444330096282944 1.0414872023265769 +2.77657940794956 1.9447221450446177 3.5118456329736114 3.9688128648325396 0.9491077688231792 +4.6134602472078035 2.570696992332344 1.0119079240983404 1.5265878215979467 2.106603216640378 +2.133651238170547 2.9250980651264773 3.8626050066767026 3.992161224468439 0.8019806066652175 +2.7160569387842513 4.873375144002692 3.7421310684049227 4.515837669559185 2.2918646869386934 +4.223782507040939 1.9006014012142716 2.372581035597054 3.469718086576153 2.569217810755081 +1.8872740777467993 2.4391516928399097 2.599210676419738 1.2302999980084919 1.4759692908421898 +4.11604886906671 4.2702579189129946 1.4441498307444642 4.775043025700125 3.3344609620231607 +4.508166500009404 2.4189353973024272 4.902962501439427 3.3869616436327528 2.5813068785769704 +3.1357559577063885 1.045739791236544 2.849988436159041 2.117687748637323 2.214595193946308 +1.0498578390731632 3.750109363623463 4.485096847279362 3.2588441273645095 2.9656456344166933 +1.8375722928489866 3.586530182713954 3.772876648765556 2.7749362249592724 2.0136381973898847 +2.4296134767844513 4.992089687366478 3.26511737382835 1.711562239066518 2.9966344265765352 +2.1837385926380573 2.568232052806046 1.4659061518431158 2.753361757806322 1.3436432406848327 +4.935533033491686 2.6364119045312044 4.280408270013002 3.7433561276001943 2.361013123492266 +3.9205132282347472 3.406865081120702 1.1961272505133942 3.70710360840246 2.5629741881087154 +4.3420508013639125 3.735694873760147 1.7840760124748671 3.733052701263969 2.041121663297794 +1.958464699581623 3.1694113572923737 2.837072376636896 4.570472431005344 2.1144899045172516 +1.5548537046540574 1.3674348681566517 3.068725713134161 4.2950262536692705 1.240539735756474 +2.1494019809538014 4.2003269760516435 2.154071979365824 2.6685947479386574 2.1144803179261182 +3.964276275534678 3.861417794006029 3.091851919134014 1.6408732064803333 1.4546199131719983 +4.646829202913681 4.530009004342572 3.531788277040218 1.580775047303244 1.954507503542233 +2.123376755907846 4.790729785262676 4.380684169942791 3.976072768377335 2.697866299408692 +3.4307384449791516 4.252867556579557 4.803939398420435 2.3261048564455864 2.610662807323952 +4.519867772373026 2.621714512863262 2.690963168892191 3.0423026981180636 1.930395104993845 +4.636691842561949 1.4696157123866445 3.6363702509410674 4.920109291985175 3.4173611368755026 +1.9208805761972236 4.750287302554516 1.0338918071055563 4.5633853707555945 4.523590082998562 +1.896207460856116 3.4279780840431804 3.507920484149795 2.467166826082473 1.8518880686584165 +1.7020715585256925 1.6790645536454267 2.3795373675980067 2.5460444514508755 0.1680890574866397 +2.117389504279278 2.2158723009877788 1.056887144206994 4.7271432592109 3.6715771557970958 +2.4690067384136443 1.350173612802998 1.2368248812232285 2.2054422585602884 1.4798672868345366 +3.781059962010112 3.269636087211467 4.747836898617985 3.0904658828395557 1.7344835149566806 +1.9462274008050868 1.8331543773353345 2.046232404171667 1.3759724518697567 0.6797307645651698 +1.7005307095897186 3.8275268258521766 4.2213292909376605 4.70098778389713 2.1804093075529947 +1.354417862874108 4.142637835399132 3.2534373037570883 4.650969378136045 3.118856603645861 +1.9492152572714536 4.353580160411394 4.717020971572515 4.311647572294939 2.4382982139789613 +2.698961800856754 3.1211746696491804 3.8703782740956383 4.652606736321578 0.888901048312066 +2.831503231453707 4.737757243391814 3.872961606681637 1.1315976794609228 3.338993941218987 +3.412122177366292 1.2836169804459234 1.568045365597925 3.0381754386280675 2.5868546161206334 +2.5970620492795975 3.443839030927566 3.6807781040073535 1.548579706950787 2.294188584458443 +1.411514593214077 1.0905636215844763 3.202568368604633 3.1885808200917705 0.32125562672641916 +4.753698368898437 2.400894624312878 1.5140885452128594 4.5282522740959585 3.8237244206467467 +2.934409481155496 3.2328902142823486 1.1515380111020508 4.653154423531637 3.514314762203891 +1.8723169499802363 4.0312437440269715 1.1589204979231722 2.0103438543411074 2.3207513080696294 +2.213405615670793 1.468499992463943 2.425341119272279 1.9842871545669878 0.865686425484102 +2.6922343319197855 2.5507534432084493 1.4545005880350272 2.680886497227512 1.2345198419371102 +2.5146707186791883 4.511844904116067 3.4887308603533365 4.175231986101249 2.1118684908461067 +4.207203271401237 3.15692768170993 3.0518471918305985 1.6976493066537954 1.713747567910382 +3.9153165658718043 2.221734038956343 2.90401644796978 3.645224321653976 1.8486781459964323 +2.25732794746286 1.3545362671501726 2.373769425416985 3.589807200099764 1.5145232541949465 +1.3592952681394292 2.3879393120736654 4.105279354883097 3.777036494302278 1.0797462408564604 +3.986522801103198 1.3079890850999911 4.942348525056243 4.684028071374428 2.6909612268771776 +4.856990608926533 2.39061557473476 1.6035212692788376 4.859518868864608 4.084669653447237 +4.947305392515274 4.9114828635752845 2.5635049560729297 4.471689159883747 1.908520424112034 +1.431804335611473 1.0382743854283376 1.6722326251685922 1.277760920993667 0.5572017113091189 +3.2590454022877613 1.0507563288472892 1.3637700996926028 1.6344743237556258 2.22481941037967 +1.5946855865604874 4.05567927024531 2.4035958768154555 1.737884876418665 2.549443281813873 +4.974160253172693 2.438049544333783 1.9177808496599056 4.042688574974788 3.3086387485777693 +3.090374896758196 4.26948888396837 4.582450171528352 1.0033071244774425 3.768364996399306 +2.5096599212652544 2.684956118186381 1.7767782043890885 4.000925440527542 2.231044527721787 +4.8580830690088375 4.445483752791267 2.845712593879988 3.902843078441452 1.1347964826929813 +3.359909265447347 2.5723616338457114 1.438000870514657 3.5430452527836365 2.2475415732225144 +1.698752569602441 1.3180141615682688 4.36313955597421 2.58371448820274 1.8197019830636818 +3.023575002810191 4.972019890726063 4.890731876767029 2.1926445763984526 3.3280794103590274 +4.7199527811533954 2.0053080928644107 1.3015297329053706 2.6490080696737484 3.030675444800329 +1.2346792946321394 2.0330114306490183 1.4714880373182044 1.7807698241449121 0.8561480146913812 +4.655407891116217 3.7261341326437956 2.744253322578287 3.677908834602329 1.3172935638339451 +3.690313830970743 3.8157145501921557 3.5403530947040758 2.3731269502504566 1.1739430193486005 +4.21765387175551 2.864827068373741 3.4806617607365875 2.7441611442140212 1.5403160448707454 +3.3982735068996375 3.1050137434691534 3.0852554861143417 2.4347851821714093 0.7135214819183193 +3.584247090345615 1.8489573283809326 4.634472657995344 1.7058775411502674 3.404100456271564 +3.161842615687198 2.9478583695893237 3.827616679380036 3.718637374281897 0.24013693284821694 +2.0123925507166844 4.165586255396997 2.3603363388305234 2.271639962000852 2.15501976258633 +1.3411924396826471 2.3002486718823927 2.787403768952123 4.480512104488488 1.9458686215631036 +3.620593342590726 1.3841589628328643 1.2505266318638646 1.522845152655893 2.2529527539940313 +2.9984754967950744 1.3418511522431307 3.950128171814399 2.7934632615739816 2.0204647815647836 +1.0002176422857718 3.0695378597627987 4.084106090996881 3.117932905935173 2.2837637325238913 +4.5998963616149595 4.199449687128114 3.0675850606522728 2.7091436125971495 0.5374363318491105 +2.629198570640721 3.9603640320391897 1.3428593752571238 3.6037198169183506 2.623640871439686 +1.7983670095855029 2.5571019725363286 2.2281282567801464 4.360058774708927 2.2629199007653957 +1.6037622791408688 1.417089465859772 1.765333898828576 3.6916285532735174 1.9353185357871803 +3.664690407947068 3.3443925479930288 4.657822626979937 2.8521377216815464 1.8338725954421136 +3.839601487501227 4.301486675440351 1.4383093926233599 3.6571239787876904 2.2663795124853094 +4.257238751197944 2.418152793134372 2.1260639382265216 2.3455355080276887 1.8521352356395564 +1.8713028986127047 3.670004081064412 1.477286410236192 2.2502434047155324 1.9577508674669781 +2.583836268207419 4.319329377874346 3.145681436497578 1.9021707502211633 2.1350070633571727 +1.2204773509097415 3.7829932488557576 4.232917499630238 4.702579324566063 2.605200559847193 +1.391475542948006 1.2868395876644305 2.4509190917589145 1.1218968144164858 1.3331349882178332 +2.4226876049330994 4.235553423280793 1.846300033094745 4.153463194904918 2.93419227906887 +3.613013448848009 3.031643168159716 1.041985588592682 4.231505035655907 3.242071206260295 +4.3702346035913875 4.123842439771179 3.708890728551652 3.9603296674018837 0.35203783654904885 +3.704519584437697 4.123450835211234 1.6136239376956305 2.0935982036853886 0.6370860922097475 +3.8530548245729945 1.982178082468248 1.2603345321160697 3.582908092729474 2.9823694822420808 +1.2458864602936375 3.1579975096997344 1.6024822142879094 2.7093014519698158 2.2093477522028175 +4.579134873192357 1.9952536299937518 4.113424878272117 2.706331042145063 2.9421684762467835 +4.415991181067309 3.570821649537642 2.4262191549804872 2.241302590827706 0.8651622233570685 +2.9986511277427743 3.2866156042180568 2.5551808448278193 3.97834871245444 1.452009063042165 +2.042864916523659 4.265103428292115 1.4120858847657298 2.497494814971143 2.4731470940800393 +1.9349029130991129 2.006510944960694 4.6649839223469804 2.4624854311322943 2.2036622504435788 +2.091649984436549 1.3545415887071401 4.428057399918631 1.3243545090340398 3.1900314139425254 +3.551967313777013 3.4701012768115365 4.784440790954328 2.811890549523714 1.9742483387295544 +1.0056813393898394 4.060730841366563 3.9090519481036865 2.596560235297476 3.3250506696459836 +1.19089986624439 3.9282243227483944 1.994774939595652 4.651938955496778 3.8149004951079317 +3.1219404824910817 1.136490485274407 2.451541417587891 4.361986453045059 2.755324286713024 +1.7354628455060213 4.664670936725702 2.8251628823308903 2.847081708583711 2.9292900977218266 +3.256525953726201 1.6700262473864238 1.521477338903797 2.764384713696556 2.015390795982364 +3.442399945917335 4.323466972944202 1.6010695965361652 3.386009101166676 1.9905497083229484 +3.161705836955679 3.710349064889811 3.26105354764345 2.7832723680090012 0.7275192417873699 +2.6111262071621426 3.2102971739196025 2.5631260809338547 3.7405429370430503 1.3211041974254458 +2.7694703257952282 1.9469544368041105 1.512202717037554 2.0806695743595114 0.9998434655066518 +3.619434708732894 1.978220254469616 1.3800373519204352 1.183098297393427 1.6529881657412742 +1.5892417175225222 2.40154678040319 4.73684527314497 1.82262591366305 3.025312213699733 +1.5672306692792577 2.9166054176201848 3.7983411391256734 2.8001652474072283 1.6784419329449718 +2.0104431212225964 3.6091349850786765 4.689127353575077 1.7785854111271524 3.320703249961996 +3.559589076695976 1.2962795311355286 3.322273769632276 1.5044967312879973 2.902909481908924 +2.233231398869166 2.712232378881699 3.8257139895943015 1.0140244908704532 2.8521991122793184 +3.6305204953636245 1.5144570078611457 1.5090043294951951 3.1990780343241774 2.708149517824951 +3.978697582068074 1.1570396485761991 3.9420948787216354 1.5002779294212325 3.7315175877286664 +3.475879208783367 3.1559963051520445 1.5600342653979564 1.819494780228645 0.4118796314359474 +1.8002925531422145 3.555856532501303 3.9223140058282 4.967820218379257 2.04330323890165 +3.401881663535122 2.1880569652955373 4.5763788414386966 1.6581509355614523 3.160605085849402 +1.7083222238197933 1.6848461175808516 2.40033193286993 3.6285795051966487 1.22847190708238 +1.9476275468023694 4.62029562778781 2.6009591416220004 2.036493783497305 2.7316251228236346 +2.132472154641026 1.7648336680636985 3.895614803715378 2.952456163088541 1.0122777673158345 +1.0802915447676544 1.1031476457632272 2.085468484574395 1.4900112149259321 0.5958957638127007 +4.039088347411621 1.5260823454494759 1.9604513733900206 1.4049848299480638 2.5736631960653127 +4.252236539998373 4.753538362866204 4.015977757584803 3.433027543673188 0.7688526968868665 +4.10574427495718 4.312974644905216 2.1173495203347086 3.484400445707315 1.3826686728174973 +3.278276420668007 2.643573130448027 1.4171073918630235 4.840670686109567 3.481900902715112 +3.8152314031080117 3.8515091681697977 1.0374210676073865 2.474058189877603 1.4370950898680042 +4.102731568719481 4.859148282686373 1.053036983856825 2.3748540006904593 1.5229466409429584 +2.149800020515076 2.1269664418119114 1.777259292066717 4.935988509578216 3.1588117452417452 +1.9601099461289748 1.365946146640412 1.4919551360637895 1.8344685605052962 0.6858178085653164 +1.4713102142527283 3.5604502151864743 4.574140751741714 1.1919158457987487 3.975418375200572 +1.7886950386372802 1.8809682105507441 1.360920776106188 1.044748018465747 0.32936233987651453 +4.481167165282777 2.973090724728149 2.238994004231368 1.8804931969485152 1.5501023770636484 +4.37161301605032 4.928822153212774 3.147358528866214 1.3096089277065581 1.9203660117539574 +4.367469807309183 3.187921512919285 1.8724112525879444 3.516924191918243 2.0237976643980233 +2.985081175369874 4.140622549816404 2.936692885399244 4.428095010352601 1.8866786070693562 +4.913675763977331 3.0044674832808576 4.876334387229093 4.7329173641052185 1.9145873449915252 +4.890106412095815 3.3849530289140692 2.4338926151393165 4.911770160406141 2.899200551228044 +2.319771986531307 4.028017596948684 1.1538468843510192 3.2224300336721576 2.6827484621495166 +3.7744106222170757 3.337286874740168 2.648719378320449 1.0626378379676065 1.64521482586813 +3.942281827769021 3.809947848600778 4.28438604588493 2.4419073450714612 1.8472249578743214 +4.149167497295267 2.2372546416455688 4.21417837003855 4.24920187119881 1.9122336188949574 +4.3984039916888715 2.688308421768221 4.666258625639548 2.0285053411048004 3.143591775077687 +1.3300660655743508 3.662823152197074 1.3571964383696913 3.380803717509495 3.0881615963832165 +2.242474854943768 2.673201324408293 2.502986328238401 2.7937350198671 0.5196730637440955 +4.533203598214219 3.5942241658342544 4.126461750090561 2.4567132829019656 1.9156571504607145 +3.890112337892086 1.2450437783949324 2.8710905884436007 3.760646261889159 2.790644545727658 +3.995269001275901 3.401400427842879 2.8144217417834674 2.8575841363389776 0.5954350298858291 +3.808522107156663 1.89158345399035 1.2506667940655234 4.866630084204924 4.092657366020131 +1.046086973050024 2.3698380275591373 2.5573890365265792 3.4119677149784904 1.5756337048878475 +4.235289818232218 1.8961078325910914 1.3923839828946183 3.5896086769509363 3.20929411524074 +1.143108185878062 1.2916485018824475 2.5577579105204395 3.3122488817883236 0.7689738950077809 +4.942715289271063 1.916194826891151 2.308513089367481 2.833160114748117 3.0716576323615667 +3.8365142428211603 1.321277811861452 2.2500975707541535 4.46056475360616 3.348518996525571 +1.3702018059235521 3.6477215978391175 4.844442657174828 1.6175212534857262 3.9496984882588144 +4.366871016509821 3.5719627139164443 4.975456582594557 1.2542349619467794 3.805176679144919 +1.517950482685754 1.4609812052442592 4.545061849368957 3.8113459389607978 0.7359242731139393 +2.8101937464917617 2.1170308496950394 2.3580632437606655 4.665661690856089 2.4094574896712397 +1.8175221930084842 2.4938423027909113 4.579146696047323 4.053155028536452 0.8567824258159016 +1.6579529817282688 4.313473233525841 1.540904317532191 1.1419897288450072 2.6853157461971784 +1.4528936448892158 3.619612882946117 4.492729092502491 3.0105292739969913 2.625183528544931 +3.167320036783401 4.730759816499892 2.392638288967217 3.9821225901991615 2.2295300600491466 +3.713934586077064 1.0052571501433838 1.0591994801173334 2.3033513122987075 2.9807460867132787 +4.831139281521481 2.7542974895674743 4.6768776339717935 3.357725147821413 2.460372961671352 +3.947947758893519 3.507977944041353 1.0604686121440365 1.8275661418891471 0.8843144565832337 +4.944889688510184 3.6533819003563814 1.0987184488665216 4.218587804273424 3.376622152635531 +3.196219839885135 2.884201712535335 4.983268086807332 4.403951151423443 0.6579995618672225 +3.4936368114427876 3.166298958020446 3.1111333584491323 4.973734744353518 1.8911462114432305 +3.281643857083326 3.669590304048811 3.765687647896514 1.8010423049887199 2.0025817758889217 +2.9574539901866594 3.125110446088047 2.994805828377536 3.6811368168711573 0.7065117925215725 +4.696816727760037 2.709609062186353 3.4370931884397433 2.7053456702419534 2.1176517033033164 +3.577525466934658 4.081250984216517 1.8317224142313222 4.2774701394048895 2.49708256410407 +4.856176700907282 4.387618441681504 1.7161867789854655 1.4425968596433796 0.5425848194101093 +4.191837314402937 1.3692341823059464 4.222800699216482 1.6167414646873768 3.84169665319871 +2.0466764029631945 3.194679988534574 4.356050733772097 1.4101798323960333 3.1616558320062236 +2.5179254655748786 3.320570417230429 3.790566603985529 1.2423907958156275 2.6715985603680186 +4.703867655055728 3.8143018715119275 4.379314735276703 2.985743099092317 1.6532904126104164 +3.0257526014788905 1.3483088173379274 4.944394457240831 2.730398149395313 2.7776964017161303 +1.8634578491439044 1.766724651411271 2.7869502777354462 4.0957078655598576 1.3123276020992443 +4.75102590026979 2.837359078226553 2.801694018311094 1.3945121636001527 2.3753487066148384 +4.708040556865058 4.227873866435106 1.5775103377279258 3.9236718237776373 2.3947930535270565 +4.431315777723675 3.005971628796453 3.787351259019705 4.003813891698466 1.4416872109536412 +1.3335406073809715 1.7072067802394257 2.789129968393739 3.5355766600182297 0.8347509042677533 +1.4970480928698193 2.53569585819569 4.078016482024732 3.8425887042624725 1.0649955018489519 +3.7131570383795367 1.968201737298501 2.689815899642494 4.959935741267358 2.8632696516586957 +1.6764838685023786 3.5329343449777753 2.5284852273752993 4.560125298449776 2.7520846189754473 +3.652013048382913 3.718896114023356 4.237142132727681 4.5602915100238866 0.3299982795658022 +3.739755016532011 2.5294230005012563 4.747628531826827 3.3975401525375215 1.81318565539249 +2.1473599864752133 3.469740969449701 3.888679181187641 1.2205374547172636 2.977863619554277 +3.969409770431321 4.0909752852824965 1.233073345895797 2.487881437557889 1.2606829582816181 +4.417629274876356 3.5237129196297667 2.702570557490337 2.2197444729234026 1.0159761208392564 +3.19984332897078 3.581954098404474 3.592633293468304 4.384314357406881 0.8790719806228193 +3.23364248875061 4.947054683906621 2.281207265258329 1.9643711029161826 1.7424599003354535 +4.304877141368717 1.6965360191557646 3.1534373358526193 1.2743439297505619 3.214721673595298 +1.4433247174676938 3.472269867654746 4.913648246759228 3.533958545962467 2.4536018611323676 +4.494076917164255 2.994123635063671 3.3359225243779105 1.5985930162515434 2.2952502408868014 +1.5061839591643489 4.400733276114623 1.103878069843868 1.0453754576735217 2.895140463585153 +1.4996225196015498 4.952715586904513 3.887750189387042 2.1261490355717005 3.876479118553243 +3.762258078867473 1.9119371897565745 4.24310030483805 1.796368927969315 3.0676019662326013 +3.0673216036989897 3.0888943430440454 3.9181374730988403 2.8870255516438417 1.0313375672637302 +2.0535704504577343 1.2478881910262953 3.24614184155614 3.855000171038452 1.0098675004883264 +3.3125402609230767 4.489174115184711 1.7450090152257585 4.619843262097561 3.1063063554616686 +4.412270361355295 2.8499761176542195 1.086065558974047 4.646729668452448 3.8883276873778434 +3.6003651069011577 3.247231419093699 4.251402754888124 4.967556450492257 0.7984857651780353 +2.4256362242261704 1.3248793427362426 4.407402311264249 1.7291679847386718 2.8956182103183674 +2.935596990637521 1.9750506020799783 2.596431215862765 4.153853041578483 1.8298120416552672 +1.7668106591159698 1.511266625792973 3.3675911199581425 1.7592940078877213 1.6284723988023382 +1.5647263570164514 2.805128702705896 2.387197005863027 2.015357700389509 1.294937237199898 +1.014000024117006 1.3120749430250749 3.786666188022742 1.1117535672441954 2.691469150126452 +1.2068938451643456 4.339042901771953 2.542071711552105 2.420525469580681 3.1345065324138823 +4.7374974362857625 3.0759556314337937 2.50287108781084 4.420322057169596 2.537191240164125 +2.815262361381185 4.154416726551164 2.4578450209376212 2.4870580091867502 1.339472960696203 +1.563580371950522 4.708471647826384 4.90145930286216 3.142200783186743 3.6035165708139387 +4.5603655650818915 3.1969159083555043 2.774975116758564 2.247424653222556 1.4619522762403567 +2.7891443655185038 4.292112621628135 2.255252823279269 4.404514110435138 2.622639445165906 +3.401699344783736 3.638939264320718 3.0734382709623764 2.024256910671373 1.075669236430974 +1.6085659161633217 4.540513100347617 3.352465876932688 1.7219731383449095 3.3548205408685714 +4.979099676914224 4.816712958022959 3.3014918445760952 3.524058245145216 0.2755090726901114 +2.7836186488878574 1.732476215402499 3.376699200315951 4.035157590481599 1.2403498970262614 +3.201554476005508 3.8947754507755294 1.6546836096469697 3.062023074076588 1.568808365608159 +4.38973373427422 4.332730424654075 3.7583293526092456 1.0405822267034779 2.7183448673184776 +1.596850201818011 2.844014903299324 4.080380745250903 3.3311321228231607 1.4549203726770894 +3.0267527909255243 3.582907165652918 4.63712320152665 1.8022573641107864 2.8889049836704506 +1.151690720819413 3.187880216679768 4.8591555328694405 4.180971798882261 2.146159556066799 +4.450578420836468 3.0328047750514844 3.7468938394928344 2.3713028191852628 1.9754322984686845 +2.1827211801302107 3.2565115741918715 4.140190430040576 1.0751565403286167 3.2476851071897226 +2.8236067365765596 2.5269752692968095 1.5069082132878826 3.4250350921545345 1.9409278582191718 +3.106876854160576 1.7975353401584542 1.8009750884868114 4.451259807775626 2.956075826765132 +3.67784736813236 4.2932874035844195 1.4037064275616755 4.105082066761403 2.7705950229687066 +4.43763438824678 4.866808518023182 3.0168286813147667 2.6076525665723365 0.5929717755045706 +2.6739331606630232 1.7730231935869933 2.9716414210974746 3.83316644463804 1.2465408677470244 +4.186912970499634 1.6267986669321202 4.592410366652032 1.7755508112593845 3.8064265397006998 +3.7435609378278505 2.898696525398981 3.2924557340309915 4.863995643566112 1.7842459367055967 +2.614259864514416 1.5165554757150868 3.928856994013836 1.972797844737321 2.2430163442689564 +4.149026300260258 3.116772997165729 1.3955183128002422 3.0083442335586756 1.914877106349087 +1.0476490238829341 3.060212343743426 1.9315628488012382 3.2523964414137123 2.4072832188634266 +1.2518572548802633 3.8371344972948704 4.911113794057993 2.1519401269228764 3.7810974260866015 +3.648897787841535 3.1883737351793044 1.4020092918547258 1.2609156730744222 0.48165320754767793 +3.429628167522456 4.372027303803452 3.140292352311191 1.6971560204151053 1.723588873398078 +3.8078352064361103 4.696708437637466 4.8886114630557405 4.315740171246321 1.0574862354308598 +4.407553630468031 4.429654174400843 4.402615485904439 1.3518309492417089 3.0508645861759507 +1.975749672213634 2.492617736988506 1.6197570392839977 4.974118617722093 3.3939496453668596 +4.675924150448592 2.868595912897346 3.6196865648221586 4.394114618460016 1.9662589271282187 +2.556023242135879 4.145373812058306 2.2833309995193387 1.7446163832109969 1.678168248995609 +3.020824043950251 1.2230713015405401 1.8386004006267354 1.9645286590698072 1.8021578313555509 +4.619324991196718 2.228861671428251 1.0056240713295899 1.5507319045567751 2.4518273660688505 +4.301350269550403 4.899506851439585 4.7693471748595435 1.4805231658441529 3.3427764894969294 +2.6508051410875613 1.8966623740419117 3.7283403696489024 2.172385909949022 1.729082298141767 +4.316305282191879 4.435266528976656 2.7901555354002676 3.0325611199761258 0.2700226762147064 +3.9033113459292545 3.2907906170943884 1.324646012440776 3.679446863891865 2.4331602276149367 +1.2741313304677457 1.529605505599923 4.0775520935917 1.614229603055772 2.47653482643382 +2.4052151658959398 2.5027336305106234 1.4272933920907374 4.074533420237826 2.6490356014151644 +1.0726867641550082 3.6900491681112753 1.0376746419488416 3.439441407775087 3.5523329730011506 +3.1840071843896975 3.4750813772388396 4.306722650955354 2.0620918732293716 2.263424731255168 +3.646362672664293 1.9820375557528127 1.4999288722868602 1.8482898557945386 1.7003921517146712 +4.327492717161105 3.5516286271221627 2.1084738732425286 1.8072805765847262 0.8322754881429292 +2.6522321512733904 2.3632584782595276 3.8166962038489545 1.7128145025013808 2.123634619457943 +2.75660424069524 2.064005199839021 1.4030301078438545 4.1483816796265565 2.8313686944805876 +2.000936382979387 2.362944033644166 4.5343227600957645 3.3365851799176984 1.251249315728341 +1.7806928742260903 2.9591922306027794 2.6748515283086203 2.4481326551870266 1.2001092368654596 +2.05561628180979 2.4623263062075167 2.8621744405197584 4.450454715161877 1.6395265398165542 +4.014285510264748 4.0424023126678446 3.9260428945998975 2.2602854504812706 1.6659947230450627 +4.347042783700582 4.231769098444873 4.4079825703071736 2.0040703334011725 2.4066744826126456 +4.0027020760472904 2.402587763770388 1.3840680632134008 2.543557396565361 1.976051954405642 +3.142685162212607 2.3950729752301876 4.514366558691954 4.725712294731933 0.7769111932949071 +1.1353817147593976 3.4737413590045163 1.4752410668888238 3.3939885920096153 3.0248170012401276 +4.687207399962487 2.436088747416328 2.120183504400524 1.0268301049649384 2.5025900271316086 +3.3694272725544 1.2099259407411238 1.8527140703658902 3.259150420173333 2.5771125718840837 +3.689670526749077 4.628999391484491 1.9158716450469564 3.1117817376165124 1.5207036744990283 +1.2247492780683706 3.0900912736812125 2.8916037928553733 3.495219606295806 1.9605746124114365 +3.595646223669639 2.4359386778726106 1.5610846034673052 4.973134648693012 3.6037490343950584 +1.6236157533535045 3.025871906465587 1.5392301350193813 3.117713466488476 2.1113815256050876 +4.739694347481425 4.938786498955183 3.0166114439992135 2.5973642882677357 0.46411837107292353 +3.821769382057612 4.076627876370993 3.380468981435255 4.693233740007315 1.3372749019825516 +3.9017561448899234 2.3400541013764213 4.793259648496578 3.975917161823751 1.7626576562778062 +4.15787008454377 3.2167161464226375 2.5265345035731217 3.634311147515456 1.4535954829680293 +3.2155857502918983 3.9987235727025343 1.7920346313646087 4.089151001833931 2.4269422054033813 +1.0428584022518481 2.887822757074989 2.1982580119716393 1.825268510709963 1.8822897329102664 +2.424837823992386 2.0105626665546827 4.748708683458027 4.375261702841628 0.557751336530482 +3.8258540656089877 3.029349485250884 1.750026823228274 4.045024272251773 2.4292864873365194 +4.961811757335456 4.185238309383639 1.3620190241047827 2.840832069694279 1.6703156419879013 +1.5374899357323195 4.200160443327 4.417033583853017 1.6209584576894338 3.861068549399921 +1.7538937025703318 4.438604779907248 2.0728366296771137 1.3916946153003833 2.7697703898563026 +1.4189180620497543 2.7973748132074157 2.0276463299445915 2.838147350096653 1.5990793971781598 +3.7628048152841385 3.966005507558173 1.1763997834751763 1.5548541508630866 0.42955585147408976 +3.3630021740051643 4.171394195691073 1.9619150309410816 2.3787240518354835 0.9095204344182605 +4.342280717880669 1.5440687577534926 2.202443337347485 1.515726353705182 2.881244590350073 +4.5483822363378135 4.736906918742152 3.0900045556447697 2.081149812509232 1.026318395344607 +1.9331437462672572 4.072457409658046 3.531341829030506 3.4219503870212367 2.142108642892649 +3.821324149054509 3.5407543195488302 4.489947845437135 3.86730607316123 0.6829364581069939 +2.962616551007437 3.869363756199853 4.679507385469259 4.058374579486199 1.0990889212400636 +1.9130882331637111 1.9122288288057407 3.747797587254901 3.1366343773014878 0.6111638141909339 +4.99348513806574 3.209100942325443 1.0541751654586409 1.0988123727648382 1.7849424187586116 +3.3734831468456723 3.3756525709670857 2.1687778861492495 2.5888680121920467 0.42009572766176967 +1.4378097439940283 3.0453325075934776 4.554574725173104 2.102093484406178 2.9323699752596184 +2.892887061982152 2.0127911745230067 4.676092589043925 3.090199913461101 1.8137321603780832 +3.547361373829197 3.103468386611768 4.9009789366056875 1.8433212189828145 3.0897106178798572 +4.06015873126429 2.7440054148408066 4.701105386229699 2.3729182115488516 2.6744560330431537 +4.057110411516296 3.689195480425206 2.4713759570029747 4.677123154957273 2.2362204940038892 +3.3053325204203454 3.8180038823048936 3.2406473499946524 4.685458207690571 1.5330721900199527 +4.671446792297241 4.248447915340048 1.8867951509289491 2.9076567705966214 1.1050278260829225 +1.0145038698926472 1.5349651940317472 3.2410998400793667 3.7124418254805533 0.7021703903801112 +3.6629587876160223 2.1635229552384803 3.3942027609982577 1.5585043931099007 2.3702523733319434 +3.931091903877505 2.5718669060123505 1.007831939319464 4.088418486583585 3.367121332831089 +2.1581594144566876 4.681683987161408 4.157234956212008 1.6420608743079042 3.562902879861686 +1.6026923997204485 4.873564885473861 3.943777592997915 2.786339490692556 3.469620984881049 +2.3444128970776927 2.4249448102622515 3.5069032379095053 1.1446632052823036 2.3636123541705665 +2.8401273449291495 1.874663665470555 4.48862691321765 1.3062188657150755 3.3256339391404572 +2.4124952496628818 3.307656375067184 2.2380075789161316 4.995185712665149 2.89885230766571 +3.498873727326014 1.021642792670126 3.5668677403950477 4.8617524104716034 2.795245859028389 +1.6975330578829908 2.103456524201713 1.2220321230680122 1.0311064195299195 0.44858275131766107 +1.6425672436423042 1.0878268970980152 1.4988222507698472 2.363864817788235 1.0276358765817004 +2.273990001073041 4.815090317813165 2.7938504998008518 1.810975777522597 2.7245611645603245 +3.254016434051991 3.5950308450009643 1.9512555105696054 4.694629732864094 2.764487828156377 +1.1094836666272507 3.4987078416742468 3.276505443131355 2.2098371647614616 2.6165193243524096 +2.634673318146099 2.8854045372611137 4.453310786522059 4.793673290954739 0.422744341964014 +1.7172948621380129 3.9341506354346314 1.7753362708874287 3.8958560724657163 3.067744081321675 +1.566211898268572 3.1510953642713075 4.634758120624074 2.8398799520231566 2.394460949969539 +3.145223292384113 1.6862829308319962 4.883978660579566 3.1177520988007057 2.290865174142511 +2.322828070642302 1.068805341510358 1.6001853945741842 4.200774290044152 2.8871500841524047 +1.9447953071710073 3.299083001990779 2.395267795596298 4.1030158927265425 2.179563883806167 +2.0593461828620834 4.374133528485457 4.901051219077674 4.40482030068447 2.367379475248416 +2.9833932030160617 4.745005783215007 3.244046155824037 2.1988904477290414 2.0483235430172497 +2.9115834676235286 3.0973757975583838 3.1832442132761627 2.6127219973219287 0.6000119905134828 +3.043294101851427 4.007729520414522 1.4667884149722048 2.7267012212260298 1.5866681933981535 +2.689068710310319 1.7518992655725603 1.1035345737302054 4.706024439957217 3.7223943644404995 +1.6259944802531057 3.4405602499344137 3.7025740101337017 1.387210007479244 2.9416932874260002 +3.4067759097575268 4.137592702591659 2.312699956772152 4.425221411608661 2.2353612866453885 +2.277173836973324 3.6604850927320896 4.088179142628141 3.183730804108005 1.652748264969813 +4.56569246242335 3.4843228211652497 3.0302803588460625 1.6063670494465248 1.787984735315102 +3.524619501504617 2.7684411818204313 3.3653908239758823 4.496011352905891 1.3601869105378024 +1.3542729213517215 1.2498911616097774 2.2353419460059394 1.0043709383913586 1.235388672991007 +4.16260141133181 1.3969352885319406 4.2986854758609665 1.011581477973 4.295807467256175 +1.802784717962457 3.895737551087532 4.990368133416949 4.297336110672686 2.2047097192681133 +4.772594985674283 1.8379940888249937 4.005597752773916 3.6174708823551542 2.960156227520723 +1.6943983749815152 2.0063038160050115 2.3746572442226626 1.2425724443788124 1.174266153040933 +4.1750046187458345 2.275503609438853 3.0621449657046167 2.8622373391781806 1.909991398803061 +2.9373128483957642 2.3561990991331796 3.5037787567131646 2.2551869125971535 1.3771981639455664 +2.175743780124878 3.4877917952360353 2.6610304697692766 4.0019499208031935 1.8760423684230134 +2.3183795963247245 3.454372233803783 3.94787600200034 4.725668528120355 1.3767499722516006 +2.8932920186053948 2.4672566613997002 2.6418759699916676 2.3623579938009063 0.5095453116290668 +2.8841419351419355 3.9750372882389913 4.419216956622249 3.3751186155842405 1.510031131191364 +4.0950748853305665 4.032219477408344 4.972439461458693 4.484363225074961 0.49210691402131024 +4.6214685989669535 1.2805121036599894 3.694853252093405 4.099898466768382 3.3654200227408304 +4.709847018715109 2.4990222439600185 1.2888398832120478 1.6757124033760689 2.244418974150985 +2.6990993762278253 2.0667963659130475 4.451064359197702 4.1164325237416595 0.7153918941068665 +4.539178629055949 4.1805327479583845 4.724726425666848 4.393469742683617 0.48821906768304446 +1.461810844933225 1.8134672523960305 4.490609556875306 3.059264476127405 1.4739100953215778 +1.6635812136245605 1.2768193339636174 3.3280748044261435 2.7177170252306255 0.7225796635550646 +3.0874120037957233 2.001557432054569 4.627048413696091 1.7459011634686301 3.078975418619711 +4.69071257548304 4.52142766524952 1.618659311065569 3.7909159540284025 2.17884288183635 +4.367001402675479 4.886200681760258 4.298394228253255 1.1855262289486626 3.1558699390970992 +3.765782911590568 1.1235840195153655 2.48891626754315 2.1255181996914527 2.6670720164633304 +4.725736409876086 2.5405085193205474 4.756688735025775 3.064803870913428 2.7636380600712287 +3.198095311182829 4.089401921216713 2.694654788596571 4.008657558579051 1.5877754100034815 +3.934835200069673 2.4972304211325 3.126633246085685 4.684923830321228 2.120136091230973 +4.089299897983407 4.960194452713732 4.941457909734743 4.555733765874071 0.9524917010745968 +2.7575188663333146 4.324256818382313 4.782432281698657 3.8737883934527213 1.8111602706655707 +4.241721584130728 1.4451722496873223 2.50584536633664 2.1961652647338483 2.813643535578836 +4.507495830976261 3.4894622616998285 4.760316955629601 2.0519161562483412 2.8934110040336054 +2.4619684075618053 3.824238095279306 1.5127060410864588 2.9525977889394874 1.9821874148549088 +1.1247442087866877 4.422279742273785 1.4888463582743432 4.01648125588023 4.154837995663026 +1.7784753501953672 2.38425297605764 3.106702798245989 4.33678654140169 1.3711573750562958 +2.367509230447493 2.781033406348599 2.135147367998705 1.5350021869257033 0.7288185524668228 +3.9690619733324493 2.2644838052171847 1.5879226645519733 3.696357413288328 2.7112882216566585 +3.882789279772994 1.8159783253218817 4.992109214573892 3.6500667676489043 2.464302223914008 +1.69419406237895 4.552691584242911 2.627291972793003 4.607636349945054 3.4774663096312164 +3.9766236137647746 2.6078731470072127 1.8624092493164923 3.7691693264283743 2.347171027410818 +4.728145183162764 2.6828721394290627 2.400025575417717 2.328693545464522 2.0465165725986587 +3.197888363793871 3.0013051283859236 2.1836122662524295 1.6842201877601237 0.5366911742374023 +4.466344393534984 4.097471711881966 3.4543168994010154 2.682468473906956 0.8554630601069497 +4.652128249930412 3.5895570005626865 4.7111854024834745 2.2498145421366145 2.6809334516446937 +1.2735050494683073 3.7556040859259454 1.5910023999147946 4.521801980933942 3.840625184899712 +1.7471701476070076 3.1936080012232813 2.4348949536171056 4.723726296858275 2.7075692756007608 +2.0092950114850745 4.783989676450237 1.7243440811147916 3.6780395107328956 3.393502072416754 +1.6729123315473928 2.920686011640727 3.102533123734524 1.887056501831439 1.7419307033078548 +3.639164752874333 2.793674613228437 2.4999665758500464 1.241997294795579 1.5156979541831974 +3.183728963702102 4.641331186154425 4.579276969565917 3.7948777652653263 1.6552602063136028 +1.8847512305042096 4.570593257876489 2.2176261782867805 1.3402304353721943 2.8255213121977816 +1.7217130677671069 1.924605080567896 3.4192542459490864 2.3654675963242298 1.073140937522158 +3.872781004145901 4.144172793949894 3.7263434244153237 2.7507908800804524 1.0125987706546238 +3.7403233581439173 2.682841850902101 3.136331414928985 2.8203456908805076 1.1036820719577103 +1.2683062656036488 1.0337367026460877 3.863109123464386 4.999117100191649 1.159972845826173 +1.5340452178972819 3.631307675716842 4.0116459849205555 2.15201091764766 2.80298990372966 +1.7680540310585746 4.140677144916483 4.164633564583786 4.3440697998025195 2.3793986221148975 +2.4567900733971886 1.3533344381296604 4.138435039607065 3.605600113788774 1.2253682700214852 +3.5469738253872176 1.6552662923948254 3.029040984081066 3.6570163858700564 1.993216118646497 +3.0077679195637086 1.0727069867217214 3.2256344261992274 2.3892338849486863 2.108086022726658 +1.878072403465561 4.325850179198239 4.0635139645725395 1.8769198726626084 3.2821958750425355 +3.776271488497396 2.934199420430715 2.1407998938214177 2.5674715257699536 0.9439989668043729 +4.26927120944171 1.8788525025433787 1.2324838543475143 3.497192409567858 3.292872064684218 +1.9684613380584484 2.9314118642441334 4.18381326312906 1.1383820390130173 3.1940452496328575 +2.2977338725301455 2.6936356028707613 3.4961225368334174 3.875445375786833 0.5482918896339543 +4.929650900670295 2.392938001261305 3.2293107709824285 3.5477251519629873 2.556618871095807 +2.3244867364420467 3.3639197730443056 1.3532805901263454 1.003583013268178 1.0966810989711944 +1.5715793222855057 2.1400343360946725 3.765394078317235 2.799515134493192 1.1207422704830172 +3.6331392464921626 1.405552719255358 4.779521317771985 2.9818000789383805 2.8625064871333223 +3.8221434967019734 1.4766673038987346 2.6136687339467195 1.5329256061811294 2.5824918739890212 +3.488652612768856 3.5984604481500764 1.7835172830005566 1.8192344422234035 0.11547067235475574 +2.22079046371324 4.876787175998851 2.626640882433045 4.2700702121685 3.123328112367752 +2.575539426612653 4.880848393618873 4.6184799853395155 2.638477921745379 3.0388908511488735 +1.82056144861851 2.0381806087444785 4.486287279269654 3.323634367507386 1.1828439846755838 +2.0345365158968907 2.382345169335193 1.4304542326176843 1.4097029431034143 0.3484271450720654 +2.8395827521789423 1.815142234760386 2.997556125264638 2.9063604922657054 1.028491622331886 +3.5187855519254443 4.754917836944987 2.428181108950202 4.805490091524055 2.6794814842976544 +3.0540377891595503 1.3380541156919175 4.783425022712953 3.093872783239103 2.408150065406758 +4.189808920839467 4.82803795462717 1.9759754449259699 1.9348523399077044 0.6395525070984622 +4.509379840537337 3.8165605905168887 3.2505436391359135 4.166388217143171 1.1483770305366563 +3.1442260189549067 2.445257173393961 2.756822772405745 3.300942973436378 0.8857901784477055 +2.432163621442709 3.6365881832572153 4.987248186101397 4.063289644770208 1.5180045820750752 +1.7814682146918095 1.136725658856924 1.930902712488062 2.313248632751047 0.7495874639068142 +1.5420112208074102 1.9840340589262175 2.8063692894025225 1.2681126601867185 1.6005054347752066 +4.648487559331025 2.4497876686749445 2.614876213540669 4.362443853008379 2.808607103830261 +2.9829282938880226 4.606136252985403 4.274341892551849 3.2797627555543474 1.9036784755382872 +4.663824219656121 2.2197712271860364 3.409734444049847 4.825276756650478 2.8243857861072583 +4.716636250159831 2.553288295823109 1.3742308505022631 4.872402289862389 4.113061851065186 +3.7152931511525957 2.798265975853254 4.925890482774008 3.818226197697007 1.4380052185832408 +4.684010645965742 3.070299344855193 2.9035434598614573 4.841397337561904 2.5217735454736134 +4.621615425163339 3.9396744504400916 2.0028036041668873 1.2494800602703773 1.0161396827185174 +3.3473054917892218 3.84619891006984 3.6978407458919675 2.1887067317366067 1.5894590637963573 +4.544637801610679 3.486255978675667 3.2932014981865008 4.31665629446121 1.4722879484451898 +4.517899020255891 4.797135062185815 3.6031932135751688 1.1097277725531458 2.5090521462663626 +1.7842190426624898 2.510430567980908 3.405979843469997 3.8682558814848824 0.8608613795658646 +3.9748029241387006 2.244135768911416 2.83154652571366 2.7706852807383497 1.731736958467552 +2.8205975943192 4.401993142127196 3.618931708386554 3.389486560375802 1.5979539901300754 +4.27349607739612 2.762433945370978 3.167472356829704 2.6482006852371356 1.597795930574023 +1.4426635312716916 4.708045300638109 1.8278477684876315 3.083161264453806 3.498361055246496 +2.200641179462327 4.493701644605594 2.4063145360922014 4.190073760537314 2.9051546030454367 +1.9065269074539035 1.952228983971327 2.419736398665562 4.491900373365569 2.0726678985892883 +1.7544325171187647 2.9230126740342524 1.6586800791482288 3.2844028809764727 2.002137410749048 +1.6336718576614921 1.633227486789727 2.2990153928545625 3.527048842597793 1.2280335301422887 +4.176004653520687 2.5616210245232924 1.020817339115149 4.808905076589047 4.117747346350297 +1.811872250919064 4.296623319801339 2.904327684954743 3.2496406810238896 2.508630889462588 +4.952886571623048 1.134881092869739 3.9986345504445113 2.115477348491366 4.257164183239623 +3.3240592102334516 1.6750436322709752 4.820861556099159 4.467289166773439 1.686495126247455 +3.5581184476024577 3.357040944736262 4.9756996530296504 2.7078781134851564 2.276718405376665 +3.6563025025618305 4.1188580179292416 1.901274857570995 1.9054448501762433 0.46257431147345296 +4.225395588051599 4.26168332428171 4.4143238796105475 3.1651007914590554 1.2497500245134852 +4.071273614704711 3.1798680146462255 4.625734409331651 1.6784061896316835 3.079179692459569 +1.6165940108636971 1.0020132572124667 1.4128867681638897 3.5390361215443598 2.2131923946278835 +2.75250633078445 1.2095426606822275 2.931900600728769 1.1788201041688375 2.3353860740087784 +2.9493793700177533 3.633728412928762 4.38917331278093 1.3993689787402332 3.0671262719982275 +3.35353777469286 3.5215091242467644 2.888972414722708 3.9686626924649557 1.0926781182590288 +3.7917676772436635 2.6935248259042583 3.7082744568649773 1.2280241499055076 2.712522616622883 +3.260634387954185 4.6764393429157085 1.4899876487885044 4.599699178254605 3.4168420313189776 +2.929400648969432 3.118774873493268 1.6072922984299112 4.59407836619864 2.9927835891576575 +4.56803295113341 1.2821724291892362 2.466370591706615 3.5505990964081664 3.4601200586220413 +4.89948103393349 3.6985117827977367 1.9172283492237194 2.843661837897448 1.5167749177480976 +1.570393892680272 2.7100020878369806 3.8437411147698515 1.093082874271162 2.977386033837681 +4.8808287151871035 4.472533440166137 1.7634645096844341 2.276846155944527 0.6559464508030896 +4.021744461348767 3.805834418652105 4.827195103115967 4.988584336650881 0.26956192468199486 +1.250050054091794 4.583872325631859 3.336746902789088 3.578075255360647 3.3425454839046633 +3.570040194315034 2.1169232119256844 4.133231903707719 1.7875549268311577 2.7593023473981773 +4.458622506598342 1.4090851132648265 1.5830649070094296 3.044817867525428 3.381774686598245 +2.787290368780799 4.905342114417799 2.0542322945602587 3.9484610750922458 2.841521752545921 +4.2096991619692865 3.257938668424891 2.369057099652574 2.6525276411474903 0.9930778342946196 +2.3183412237018515 4.4276852670970595 3.6850051054243393 2.5275292506078446 2.40605125628903 +4.429919201128316 2.9251383856685607 3.632420998244108 2.141304803822258 2.1184411268295436 +3.3587983631256866 3.40781156412293 1.6479610929413964 1.871853820421836 0.22919478024297713 +3.4986778926350808 3.7648714282222824 2.2832951221988407 1.989397329608563 0.3965285751088472 +4.410390332706752 2.6236636749800977 3.0837619966008445 1.6492391022951258 2.2913419831440085 +3.56675478804007 4.610459061345681 1.1756076750620976 4.087908225382909 3.0936730767027236 +1.740013096361885 3.29758261978156 3.5159843987505117 1.6862311610219738 2.402919002227054 +1.6329361977876293 2.781777352528989 4.2917193348052525 3.399308533765105 1.4547278221855036 +3.874905979170155 4.728478466124194 3.7763926119252966 4.093646849524713 0.9106240946514051 +2.0711051293227287 2.104498549978247 4.333408144617331 1.394920788915352 2.938677093551363 +1.9273218025817531 1.030994324254645 2.806904835018347 4.63199548201097 2.0333122775767083 +1.2170622152425938 1.6315652132169127 2.4906590477191335 4.236409855103011 1.794284987623526 +3.114407088631951 1.6925627716921383 3.186329931804619 2.425170812165319 1.6127629915843544 +3.544349899456531 1.1635077293486344 1.0605062636208054 1.2997486313844648 2.392832286119786 +2.6088278351607586 4.326464018312354 3.11526875532449 3.0264789785027815 1.7199295573190287 +1.5390729888970882 4.95664367557548 2.541374896559506 1.241412726125593 3.656458811883796 +1.6369591337283627 3.877425582500276 2.566714309775905 4.171068642074036 2.755656497395205 +3.043851010579597 2.5235727828392887 3.8202502624244064 2.2179242643233765 1.684677428604971 +4.9933391330773365 1.9194940608584492 3.6318365814042375 1.9696365448966189 3.4944860121869517 +2.9404880676916987 1.6052807701347143 1.9796312170846275 2.0536953312260664 1.3372598926360506 +3.4271821610017024 2.4420515378697423 3.4821090199888403 1.953323928450673 1.8186990407271144 +1.3377417564673513 3.165359419585034 1.889648272000009 2.2140727417256585 1.8561889879795397 +4.7033492226077165 3.395285335623889 2.5729730422258137 4.353985227707825 2.2097591582040446 +4.939225178060848 4.763681242706924 4.633082019522113 4.29714261662717 0.3790395172761721 +1.952311165078116 3.871415820789108 2.2850803678054463 1.5870994212828582 2.0420920844271873 +1.7459041738386305 4.144307936439241 3.0606275287760742 3.56363279591873 2.4505825648669792 +3.8806807473060236 4.204200674116196 2.983404511395113 2.286264712566816 0.7685499607401056 +4.820375810917383 2.187676408541768 2.0295913763655102 3.6283516857207636 3.0801202362957567 +2.7893794837908636 1.829697486216471 2.718666182388101 2.250187787812882 1.0679239404808523 +2.450659510271536 2.642765264681201 2.5911052831143624 2.5153073692394914 0.206518630213085 +1.0266288446802818 2.9037561749701126 3.60378185568009 1.3464795226525017 2.935816894292425 +3.387047879018504 2.510963304343573 1.5088203990055735 3.746021693930629 2.402622279093761 +3.091776126778712 1.351228535625559 3.434414365359025 4.698431146994712 2.151103052232896 +2.8313900109747947 4.5303426112602025 1.118759045641215 2.278438011958792 2.0570112403523595 +3.5825101674257445 3.301158599344701 2.376529596998662 1.878408766859219 0.5720865898449901 +1.4434166901652636 3.643130650234669 2.6060749350711965 2.2519842177201794 2.2280309114189563 +2.378392561034934 1.66535596305829 1.1362182059214678 4.564552033009484 3.501698733473522 +3.371382209733171 3.175154745013068 3.149455855623164 1.5118740016147085 1.649296682373505 +1.0965020238908267 4.735729020995503 4.188397847713498 2.2842841401943836 4.107264557782674 +2.178154405194566 4.640587513924604 1.1448704959648994 4.460591517990862 4.13008265182124 +4.3105671809321 2.0738424970829015 1.795214007471221 4.731101147462866 3.690849578363851 +2.083436727626717 3.206532332464707 2.3453790412093567 4.214994030167945 2.1810098451279476 +3.9917295735500375 2.597653772437479 1.8139353835830154 3.914396937923125 2.5209891075743447 +3.1845830710701666 1.5492647395970103 3.185153556882249 3.2069829947649424 1.6354640227196753 +3.4044953927141126 3.8679553066473007 4.471038247231341 4.319543534023187 0.48759177592836717 +1.5384310578894724 4.411324288687142 3.6001232740011444 1.1477507026846672 3.777253862809391 +4.134895139453208 4.863613849556728 2.0369637190999637 4.571768853104302 2.6374737962356503 +2.630736915336303 2.3800762457619427 1.6765158311362658 4.6603284123307525 2.994322676493963 +4.203575829074609 3.1919644609690074 2.271690506920824 3.093743320014944 1.303506190087505 +1.5039712005358927 1.1315109954364977 4.017465588703994 1.9425268434253113 2.108102796602043 +1.243178244680296 4.673042297223551 2.945896535906352 4.0260399983988835 3.595925099121754 +2.088912779632325 3.88522865252715 2.658423148836097 4.952275467827798 2.9135046209947055 +1.9537264704175032 1.464207261238827 1.8311086054761478 2.7752163389952114 1.0634700130447587 +1.7749501843176825 2.7087106570018658 1.1406543427526579 1.406362570958799 0.9708292758687472 +1.3180208346192157 2.682405691056173 4.017084097181638 2.1237989718615946 2.333682626715259 +1.290421593733785 1.1530574750218214 2.033488220156074 2.9100311073415446 0.8872408546640281 +2.6904565460546412 4.086911919965431 3.487054579676902 1.4924740255837774 2.4348386390253376 +4.919195836199646 1.0952113463479316 4.631227982437045 2.9031954581446207 4.196302394208373 +1.4230753202445365 1.1099442734426743 4.510595304319194 2.7908254424063337 1.7480444589354727 +2.0307778111999797 1.3606900824318178 1.763992605332258 4.312324733526729 2.6349599996648596 +2.959437275580462 1.3956690104998781 3.7762156473427178 4.343723176862279 1.6635612351021332 +2.484124997300604 4.573299350490972 1.624959827149976 2.4578925824805244 2.249094585145527 +3.8825468096453 3.698409090183657 2.2412599803664515 2.397382786030829 0.24141464366738805 +1.6302000972602815 1.316894600881564 2.9519950817965257 1.1900760781466961 1.7895583001074657 +4.342809365546891 2.357476360664148 3.3596258815158824 2.9977929432868087 2.0180362274905344 +2.2036817805514843 2.6624113877011077 4.087439268184701 3.626787379032436 0.6501023115288843 +4.584811737119982 3.23096922994646 3.612920629879943 4.047239590700478 1.4218025509746837 +4.590918007886808 2.2116677433804632 1.274522693620416 4.322325115176179 3.866514117651025 +3.2679715489059458 3.2899261447481134 4.624192376887253 2.5462291147940266 2.0780792388375655 +3.1921500125217337 1.677519460685335 3.270607236693016 3.6468458484350705 1.5606605016856876 +2.4120882536679944 1.2774472601346436 3.0029713964131295 4.839779675649831 2.1589985731534984 +1.145385783760454 2.997238681111295 4.898874815084296 4.539052064994133 1.8864865663208825 +3.104774203990643 1.173364272256039 2.1491605598474632 2.6885801888966285 2.005322383210891 +3.1528175461475167 3.2015065368403537 2.9669960150635686 1.5461872571779844 1.4216427625458736 +4.24921414030153 2.876561337017297 3.815317492633952 4.361928247982704 1.477484022325452 +4.500083373553345 3.361122952994965 2.1418700158266906 1.5581480563755776 1.279828959487934 +1.6188024725365273 1.3258863822333633 1.3749949595703934 2.3993719050155153 1.0654332275267042 +3.1107816058925595 2.553790378042682 2.5911055130743597 2.6387575526458105 0.5590258891831696 +4.310622234665436 3.906855441075038 3.0773292328650754 3.1645545988715713 0.41308097036929475 +3.922040475033537 4.2659381171996875 1.6516171272415439 1.3246853070311935 0.4744997400984437 +3.8864260297546296 1.153940055914945 3.4207717924310206 2.856486118736605 2.7901429925305563 +4.54072773688099 2.6487806751130494 1.6282649322181584 4.699098210624273 3.6068657735350773 +4.902740284721487 4.6174054350005465 1.5758075183144125 1.5400562439908954 0.287565870855752 +4.816837941242291 2.830309996782143 3.00470569296932 1.7121316444087054 2.3700297350736848 +3.9355705243876855 4.6569986151505365 4.6997808746631655 3.3148621476912847 1.5615563936211676 +2.6722656176946473 1.6833812439926295 2.359479886968648 3.4156734231137973 1.446871483700894 +1.176823346083864 1.1735939101231438 4.8366722821392765 3.402736426089391 1.4339394926293587 +4.181753937908891 2.1304289428539107 1.7515549305693696 3.9544317044277006 3.010083107846327 +3.041506357082241 2.605472903796046 3.728879059344343 1.6477080695262631 2.1263578864445773 +2.0831771664088454 1.4732823872444274 1.6475078583491847 4.944272070901957 3.3527042689179605 +2.5659803709598137 1.0803445031867285 2.0016903812973776 2.9036277302857543 1.737988755174805 +3.4632881881930113 1.5673652138764536 1.3384028833971429 2.7091425593684764 2.3395408061889706 +2.1113205065727056 1.8891638067300622 1.0460517079969769 4.412203408111591 3.373474598610382 +2.697677037741308 2.252408969000094 2.0265754762621264 4.133236645561027 2.1532034124235317 +4.764306395271386 2.47131189790411 4.325418541387103 2.259921245835273 3.086114521998257 +1.7876690509489963 2.845471075922157 4.861057959212896 4.270954987320243 1.211266544355065 +1.517243588224277 3.741184793934845 2.4071933076044436 2.90412810036215 2.278784473071229 +3.3247049969442433 3.7790764971702764 3.2026008064959286 1.472730421119512 1.7885482969212791 +3.645131964170262 1.6626538428179156 1.6774011504371482 1.7234238223183187 1.983012251088684 +4.197960920487278 3.2878438294226355 1.4628334978802116 3.2045801036616934 1.9651957556943989 +1.107916150830166 4.311944414119628 2.480453172979685 2.1509907565127437 3.2209226311449832 +3.0652257124087305 3.239162453622947 3.868750765380452 4.037047485355867 0.2420284609270253 +2.6670277036860033 3.467488287268535 4.42596493984512 1.6518014124652192 2.887337947403141 +2.4611468727120216 2.654186423821727 4.173227668059138 3.351236008092287 0.8443545211270532 +2.2549672675451067 2.6752540941873426 4.725283316629383 4.452935790885336 0.5008135295974994 +4.598915503947898 2.731356704849908 2.715811469642962 4.897182664183314 2.8716121180373104 +2.5836675609787343 3.028153992256228 3.5891862463859634 2.2972064159877803 1.366301602774995 +4.683807684662628 1.473645005062218 3.352376378317972 4.0261813053859825 3.280115471936988 +1.2472965635412359 1.1852444107384672 2.4603030898687295 4.930890117385124 2.4713661667587323 +2.0839930718629276 3.787761920899322 2.715904222407324 3.1586941522371026 1.7603667836293264 +3.8917336016987205 4.99291064384321 3.340800534677675 2.6593361986113533 1.2949843703598893 +1.476504407890145 1.0770114455828703 1.495703449955068 2.6896948153096645 1.2590512330617745 +3.8194360305339177 4.419462131273821 1.4590769978330704 2.497997794508092 1.1997448659331678 +3.0941273187124896 2.4765217569971556 2.9028627074108333 2.0069265177995215 1.0881811823942507 +4.938537051852923 2.0277371370139456 2.7727510524424046 4.743590067719869 3.515247156085393 +2.0452334754774144 1.363795099215619 2.618012653179394 4.2903353785704965 1.8058298808309263 +3.8256247534845578 1.357749357438026 1.280810966116333 3.460817773090553 3.292846587508407 +3.198003573913725 2.741280436805028 1.8933454688833788 2.205403039478038 0.5531509299782931 +2.0459421787303973 1.3393142040633133 2.0919234299292455 4.122040215345473 2.1495807165609815 +1.6717603980030056 2.175645918498512 4.655915293728336 1.027191920974866 3.6635411740189774 +3.134255049523323 4.157486321944608 4.106529574728739 3.9196289606509525 1.0401606012551798 +2.739775572790312 4.18614220037454 2.1267757314839084 1.219434157295482 1.7074089005390904 +3.991310090741592 2.8731381302776056 1.461107501876758 4.619899885472569 3.3508622555740457 +3.6452021228939 1.0808923235823173 3.339667470570601 2.6346281519697827 2.6594670871470694 +2.47762387700554 3.5733567222487848 4.6799027319559166 3.378685214734813 1.7011165437053128 +4.006601370541832 1.2738750510130976 2.7143031184231936 3.7055026757195644 2.906934760160534 +2.5062986401719325 4.091513611749198 2.636897566567175 2.0408171448506294 1.6935815230647995 +2.8280884360506846 4.131363660338433 3.5220484245188484 2.4014630942622994 1.7187896301259384 +4.221017053100371 4.160812740905611 1.0624617003555135 2.229257747954978 1.168348225445041 +2.7221983984079614 2.0756859777077126 4.060761592903756 3.6743785010081784 0.753173422142923 +4.895730015073996 3.0208172741407373 4.002471327970952 1.595801162355516 3.050796465216467 +4.067998491193256 1.6303757447236156 4.639111304735984 3.380566700826246 2.743344523412346 +1.8513471040107956 4.288610358719417 1.009733368143808 4.288819185669083 4.085664691509604 +1.9821009476098355 4.189486536928321 4.408915144253845 2.090836420877981 3.200943627697744 +1.339188008637894 1.7102722855322292 1.8104162567510138 2.804535850540205 1.0611207788530852 +3.9659308278538203 1.5503484045968734 3.1791090448540444 4.289376297126857 2.6585206064684406 +4.580923583572469 3.55185490849212 1.9256349761425313 4.21961737420447 2.5142270344282007 +4.532448004153146 1.2224341169611055 2.200809706324366 1.8757662423540782 3.3259352349187385 +3.9409337021327815 4.204687746393408 1.3771903886979606 4.008291516158886 2.644288058965965 +3.3423473986424996 2.4441654765467775 3.5497329767272086 3.761187619148404 0.9227371407833552 +4.025282211334205 2.731674132966623 2.0652170490885955 4.119207426238068 2.427405678876216 +4.537794631587156 4.098274882180084 1.6722173006003311 1.5859435756175366 0.4479070949887514 +3.5094483213218464 2.257006056390445 4.620913399186282 1.8459966648345723 3.044466210942676 +2.9060683281960067 3.648603601615364 4.668882629627236 2.179695419538268 2.5975780256120236 +2.1761754090794305 2.9770161170679423 2.604329347733084 3.1452349956048216 0.9663978267106591 +4.480030466585502 4.658294820967202 4.45197495837603 1.4511677004215735 3.0060975332539144 +1.7446549202862829 4.026597566130188 1.8721883114140603 1.2021247551549994 2.378286653948094 +3.3778543052039516 3.6505017175407097 4.271695831054959 1.1662903162761964 3.1173514435610694 +4.942478806251241 2.332260295315681 3.8382552313442733 1.3214331598884592 3.625966631699441 +4.77714517487939 1.2926496899083757 4.527684671433162 2.899857308182975 3.845975911173839 +4.106481391730298 2.147234984660179 1.119577028487777 3.087069228399979 2.7766296188603414 +4.167551565919319 1.802916746004612 3.609561307739051 1.3625452335718533 3.2619900473666106 +4.347762684378224 4.536560522713508 3.2344507347515044 4.52690498677376 1.3061709755351645 +1.7429394459397094 4.276200526315376 3.069041920367949 2.4326364854516704 2.6119769483931266 +2.7377492102214687 1.700337291509857 1.6829874330927392 2.258193977435338 1.1862065830787913 +4.413538697631655 2.8684784142906077 2.8207250570298044 1.5571176442480361 1.995974692423466 +3.3194641656266204 2.675242807544489 3.78090870721009 1.9228985681163926 1.966525574505495 +1.1945001047518207 3.698641866583887 2.284446631645929 3.6553426978846284 2.8548348442213163 +4.679321069102484 4.2286571383290745 3.268792375876637 3.209936990873417 0.45449085232160313 +2.490229450067786 2.4810853565210658 1.8677324081621927 2.1220872270809408 0.2545191316069979 +3.9946748295986856 4.919645457079981 1.4026956369193733 4.266806622788225 3.0097678317567604 +3.0721827284758763 4.353464733006273 1.7146717108570502 4.983089842056179 3.510589787412457 +3.9814048343998536 1.6644000723607575 4.4718432356985875 2.767081341411702 2.876582031426265 +2.097645060107409 3.3637953712903332 1.1929096538946635 2.824973951194298 2.065616247280401 +3.376885672598314 4.801452895012438 2.477040081121813 1.325138796063745 1.832012101951054 +3.509572219244483 1.9695309264704228 2.037764808129216 3.1600662143561333 1.9055937735698325 +2.3304540900512323 3.5585425784263385 4.941536690940026 2.1959629557691835 3.0077194800279208 +4.967495571216439 1.3300775454681606 3.3276255001588546 1.7672877521336514 3.957962074344683 +3.686787252580991 4.231845407730677 2.3259330420690336 4.076693045321962 1.8336436353570373 +4.595190748575699 3.9377720743910722 3.5686840944401634 2.020246863355989 1.6822179323067201 +4.649795853898122 4.411988917497066 1.4082580437178147 1.880720598412728 0.5289357282215864 +2.5697867673976167 1.635912405816006 1.5585133296126172 3.0600850774758452 1.768287034731774 +1.990243285622208 1.8233872700198814 3.8669749272155265 4.811859180608485 0.9595036124229298 +4.732754798800681 3.419186416588735 3.172905880105951 3.4445296835390953 1.3413580377134195 +4.465417951944617 3.484470193502969 1.1239485649218723 3.2772536554776783 2.366216667552919 +3.702663242241123 4.74724756645321 4.241699663835082 3.6466268058295266 1.2021930446997782 +4.56765070758253 3.5811970518874587 1.1678570053176411 1.1543855930416616 0.9865456369488841 +1.310114672378829 1.0927350757063365 1.301372803147796 4.426584352707997 3.132762537849616 +2.564770226813247 2.490742526939998 1.9586384966777781 2.140178352686493 0.19605310420441907 +4.1007100364426226 1.2800155571808003 1.952642927764654 3.3358242411086203 3.1415772934820594 +4.694044111648311 1.7482366586361464 3.1769789121657985 3.6296830438678014 2.9803896693355516 +3.5382500680561226 2.026776374722444 1.7612959609836132 2.2517340494185047 1.5890507368323459 +3.8712988159340465 1.3269767181558816 2.4044707457226706 4.554949410579894 3.331386111703113 +4.763561208184315 1.9360810896735678 3.901036144533336 2.427016954644918 3.1886323702698713 +4.084184958662991 1.3118360951318868 2.429263243386808 2.1622487921523676 2.785177721132035 +3.3023966611964846 1.3474312188045272 4.282668050574479 3.045106591369558 2.313751984603405 +1.43732857374725 2.2428034241482506 4.503496803676952 3.878296469801973 1.0196397364294405 +4.852569813200394 2.105344701866453 4.7356040713022765 1.2904680223505807 4.406382667010468 +2.97976800722318 4.97255431941352 4.377227485354791 3.725354324901339 2.0966964261363037 +3.317639149627028 4.691936704252231 3.6073369548566108 2.0131361960360152 2.1047968614745165 +2.628496470978332 3.7308335892567888 3.8553438466687284 1.7038390761225846 2.417461457814223 +1.663800646047803 2.2841042268075777 1.2096563527051676 2.365645904407448 1.3119025786803826 +4.321637266344331 2.005296977489325 2.809851891370429 2.6316681988943498 2.3231835403250654 +2.924080371532194 4.704371692470428 3.386021574733969 4.367500404599141 2.0329136432425035 +4.9051616575164925 3.349749288205504 2.3689321539947015 1.2094478807284097 1.940028715910536 +2.9186101169504726 1.5513819907887156 4.025798869190048 2.433790603701255 2.0985240209138483 +2.4833476351568007 4.740557570165399 2.933375595110946 2.787870765262689 2.261894857461481 +4.841592462039053 1.9963352374130814 3.0056042927442443 4.438918171149412 3.1858872152534135 +2.7721814719566464 3.938485876155947 3.7940915347550517 2.79776542736111 1.5339268807636983 +2.1989378848732493 2.1912137930750673 4.018778826844383 4.1771900388482806 0.1585994126176084 +2.9441361665636787 3.269612013035112 1.0511679183962621 4.420986686803813 3.3855004147907115 +4.1302918894124225 1.2064992079161345 4.852926345105395 3.109109467734529 3.404329735230524 +2.3179056373295728 4.957419020193771 1.1787810966566332 4.472490497058015 4.220847369025754 +1.6885527417414798 1.9304164553732703 3.886707174581751 2.9378880524465587 0.9791607541671378 +3.8049322632236438 3.0305606261411175 4.345171739288244 2.8637582310386764 1.6715972645174322 +3.921783514915561 3.167633254348091 3.8729740765823206 3.475919761955637 0.8522879468100251 +3.442942472564442 2.471650578519419 1.508731286116427 2.34275772803058 1.2802374972049329 +1.9918337138188291 1.5656471623732524 4.263374599787074 4.286039627405978 0.4267888003568497 +3.948220943352657 2.394785397372437 4.233046449095357 2.8252610839810153 2.0964306880374046 +2.37957479653979 2.4584742225017604 1.831940985916753 3.2123284998193067 1.3826405201480252 +2.771622247655489 1.7554406517128203 2.8312762052236784 3.0817476706014464 1.046594950733604 +1.1965621278782113 1.94039380211363 4.262908478321473 4.267100802097907 0.7438434883592869 +3.4112179311719792 2.625553042952358 3.5646015540763383 2.8446578827878257 1.0656398108223677 +2.7626885752284047 3.6535503991284712 2.3397102343886966 4.490432815353607 2.327926633198503 +2.8802375273738003 3.479064836277343 1.9327118007071857 2.31749434507062 0.7117947403117398 +4.314034120691224 1.8077066631018854 3.6050272073293854 3.816008809942616 2.515191953173253 +2.488702349439675 4.028959209361327 4.9217269860473 2.7984992461220153 2.6230682854481584 +2.4544512211601806 2.4829672502970594 3.4673386154262436 4.800419089625032 1.3333854336266768 +1.5770003256769916 4.724182081294146 1.6685262388826403 3.412160623167675 3.5979179908595094 +3.098631163227235 3.049252472401017 2.0055785681892897 2.384006805908153 0.38163619614852534 +2.2960083790743266 1.1971479401648768 2.33388642362652 1.5921472512067454 1.325771950262277 +2.4570312878599836 3.6189031894303927 4.349923627248771 2.465563235398158 2.2137661127667108 +2.15813739377825 2.3046019494974668 1.3157661985296851 1.6550008005913805 0.36950234277739624 +1.3945155621624519 1.2263455256722344 4.437480415032633 2.4307122505025767 2.013802281095255 +4.9811967247542945 2.461319933148589 1.4589034937452579 2.2676687402952953 2.6464845113660136 +2.87380000395179 4.953354087615084 2.96112319556528 1.1487874075973692 2.7584608380816196 +3.3680868053052486 2.6678149455365268 2.668656410927514 2.9999232935104265 0.7746731085303952 +3.8549819384362283 3.1151307806253112 1.5089323685493925 2.2455502976879114 1.0440238068370253 +2.4603743816458956 2.69648950387053 1.8958213956710641 1.7184448033368662 0.29531814446668564 +3.45014644403767 3.7990861623517365 2.956977054747384 2.601204467082986 0.4983302731628111 +1.6117085891388916 4.37380216879143 1.09939273487258 1.8855110872643874 2.8717839415117887 +2.4160135269636114 4.4266669086584205 4.5527955779806275 1.0113311348243301 4.07243138965669 +3.3734397223376478 1.7580865181709107 4.750427815675188 3.8611978926668837 1.8439348768828845 +3.9488949643640963 1.3359697197528706 1.0746698354561017 1.183630924127534 2.615196140401537 +3.9313467531503368 2.954082462162964 2.326091819758878 3.238212306365521 1.3367906629411321 +4.303835978027973 2.565624213440747 4.999991063532085 4.946655776411904 1.7390298420100871 +2.353710900440787 3.759009097727155 1.6981120029815955 3.940152483494696 2.64605527900604 +3.387974537460336 2.5111727339813967 3.6257702942495387 1.8594387285074334 1.9719808829501562 +3.7601690192566615 3.694088921236709 4.37700933111851 1.1638777107737655 3.2138110381622575 +3.0920829514806623 3.301569280135082 4.551464696376586 3.1351941535721877 1.4316797031139936 +4.406555681779604 1.049538814529274 4.868673653385949 3.0219504820847383 3.8314421199365682 +2.106092769890439 1.1346184806337898 1.4624748548707136 3.2299478293458734 2.0168596902577978 +4.91065899358893 2.748619361530603 3.1346591012907212 3.3162976047373154 2.1696561747256693 +2.653911952502591 1.9483872857458282 4.954743931473081 4.088441660831519 1.1172487097871122 +3.229167332870361 1.1282542929393538 2.8597578524954885 4.8180374420363705 2.8720540649793747 +1.7727310574100552 3.6018793700540193 4.29612307608474 1.3808358083630718 3.4416105827051857 +4.319708798744655 4.7635740914741245 3.9175951799732767 3.8810282664166156 0.4453689900036577 +4.636308540691248 2.0546615577221945 1.81304329836152 1.5191418144249966 2.598322387028466 +1.6340546480880112 2.624288281993119 2.0537601808615196 3.092090552841341 1.4348144866472006 +2.7085859582931926 3.9320165194340606 2.4466701159393596 1.329194739255735 1.6569651642166976 +1.681210023985312 1.491161265110676 2.703343394027199 2.6976805258116645 0.19013310818007487 +3.4215224913368782 1.0810275884135399 3.8759326213250564 1.06613427988542 3.656895282909679 +1.722395591990733 1.7956320304955429 4.063500731240849 3.402823055613793 0.6647244293666646 +2.8566775725522358 4.277974389523825 2.7146119984573716 4.1974762139199555 2.0540133698282093 +1.009969171728673 4.668215650620795 2.570269665466186 3.2352135375438293 3.718187415037092 +4.841367848633668 1.329598356420632 2.26491233599582 4.828737752667422 4.3480714959174165 +1.817648164629038 4.230222465612281 4.829428648879974 3.202846514142812 2.909687989941685 +4.269079499408887 3.4014735024383085 4.010960662396136 4.282872609409075 0.9092173958452837 +2.5769940363880854 4.57856249947749 3.4985588163784826 2.104495203821276 2.4391985709019535 +2.794460367208758 1.954820260268047 4.493080831121546 3.4645312250441442 1.3277461358804201 +4.09183587626174 3.4267004888266834 1.2006476871323142 1.201088140128915 0.6651355332691415 +2.74606257126507 2.4055378418657356 3.5475160744999013 2.450722570796656 1.1484394111567795 +1.3145728102759446 3.855450336700628 3.214942879700139 2.4917675958851775 2.6417874811216113 +2.24593739549595 4.069258248394782 1.7859871790943118 4.550828068099248 3.3119245272393103 +4.761593484323934 2.733521522233731 1.250997618821041 2.7902587510493317 2.5460559138803545 +1.4054926198832112 4.851623149803264 1.0145042479843394 4.999389745616471 5.268313587713429 +2.340821586463781 3.719612291153535 1.5977398796883318 3.3239204001516534 2.2092448928459456 +3.641661540628124 1.8915924019458021 4.761779144941169 2.060106532648497 3.218971403131844 +2.293358045301936 2.056187570079933 1.0762748979872687 4.477892087676063 3.4098752674406314 +1.9860640995429106 1.2275438799622589 2.9521621611997144 4.704760965489973 1.9097003671550998 +3.3149048964690486 4.86367105734991 4.647152965253165 2.5025068851692134 2.6454079893107414 +1.3123109562988038 1.427900709497381 1.8416011477666414 2.973973934883191 1.1382570535896583 +4.930738059457626 1.306831794778867 4.6315900202527605 4.215303567806325 3.6477377956301074 +2.3482205248842307 2.614635324652705 2.9308587916567928 1.3993710130003727 1.5544875881491147 +2.7032837785167354 1.3066035474370628 3.3514018340752303 3.5014774209204194 1.4047200253629533 +2.8227565057919044 3.853074898109669 4.616630217306282 3.7006556461940576 1.3786099537115228 +3.3949599006782174 4.4658441336722206 1.64379949436209 3.9695037282615493 2.5604088001827026 +2.7970273343748544 4.2346550150935744 1.94326166435083 3.7448842338426025 2.3049115452161764 +2.801081467386482 3.1728263960850116 1.1660614598209236 2.968828215292379 1.840696136423976 +1.01506340473146 1.3143472161871603 2.462248777849926 2.172595667234698 0.41649696792237123 +1.3767451870652283 4.108952283769501 3.276043426597601 1.1487534135358608 3.4627039173099114 +4.144234426052265 1.8432700357535103 2.289099693031609 4.457061818843617 3.1614074246098434 +4.868598852003607 2.107410592249985 3.224620850547516 4.553939159847825 3.064514280149836 +2.5753083985547502 4.040233607790334 2.783236744208489 4.520151110627497 2.2721965990923105 +3.291079520671945 2.41863965228632 2.5528378561873932 2.210932578463413 0.9370435117347748 +3.9423285245107005 3.8911331180346806 1.395564431884237 4.804792927307636 3.4096128671230606 +2.927014973105049 2.763900435408466 1.2706618288506122 3.2551909944458086 1.9912213240887957 +3.475134495059664 1.3911555726638247 1.3610541828901987 3.3498130911057964 2.880647521651516 +4.483887451657385 1.6395826711078536 1.5154952817736813 2.2514674321326638 2.9379796954303377 +2.260258025717284 4.505171121765844 4.327743466468376 3.6269748376385813 2.351746474423279 +1.5081686803242458 4.635458745210231 2.0096492454849515 4.81820438902358 4.203323107284506 +2.190141133902419 3.2278569995744397 3.882564377649223 1.1885072358736717 2.8870050400058678 +1.8606006237289456 1.6175363286100857 1.9012369189094214 1.6974960770136804 0.3171601838472376 +1.6879441871246899 4.2601158922458 2.351070142358706 2.634362602315098 2.5877252362825893 +2.260787372225014 1.0416243415143347 1.1668651888237132 4.229560737486276 3.296431785923853 +1.1175581890319455 1.0509809899278695 4.758544642840165 4.853872790559848 0.11627544533653476 +3.7781162115540643 3.4308563224998583 1.775193835641458 2.5280294916175694 0.8290663154747764 +4.3385849154669325 3.101456978442278 1.9509694797499817 2.021287557041782 1.2391247574642728 +3.9880259202775274 2.6298629389816948 1.3528205696778044 1.0623902449249787 1.3888687689261416 +2.0796295012539465 3.9863752328849094 4.375785537949623 1.802532362141032 3.2027037315215243 +4.6687455861738965 1.0195850788413914 1.8684282802876142 4.6027335056253404 4.559912002833435 +1.102497127181191 2.1075098001366457 4.341599361687534 1.2015210860016756 3.2969898468505083 +2.3434312730634703 1.8104485217676385 4.10863646634399 3.8726476282882705 0.5828905084711563 +4.285320091141833 3.091503292891075 3.6521416337379002 4.464655364055421 1.444083484338833 +4.066734969599722 4.669965035959516 3.7510499879407204 1.4880464070548998 2.3420229973385163 +2.8285834964814303 4.294173924354927 3.9325024242812185 3.5970675480888508 1.5034865674293891 +2.2454522429580646 2.828569519557725 1.2110071264381248 4.472446876948447 3.3131578598789764 +3.7530301788678093 3.8213423713303127 4.387371503892007 4.982928763705836 0.5994622634962022 +2.3021611314015806 2.443790672741885 4.311195160429599 4.2832737637756075 0.14435557270633712 +2.821857224567826 3.064072289835148 4.059407375627863 2.358878732139978 1.7176919995054993 +2.3864052197445873 3.2983272267454016 2.964186010006201 4.134582083490777 1.4837212392092074 +3.435687120982788 4.000866982738318 1.0903160993945225 1.2767154161679604 0.5951243411486411 +2.045265282602866 3.947467639394702 4.879927189416737 1.3271422611250254 4.029969547388808 +2.6273464277706293 4.225808994225282 2.5839141908886503 3.607528469003063 1.8981224319617758 +3.604009117686038 1.8801893794011328 2.0138671760960127 3.112580723969763 2.044193227261543 +4.875408839272991 2.5385388509922846 2.6426641420425936 4.190338523815102 2.80290159194396 +4.906337538704086 1.1367988298491576 2.118897462662537 3.8412245310593183 4.144373608651605 +2.267118420703846 3.8792282600296746 4.2909956212957665 1.1960152576595662 3.4896706986970583 +1.4126481695610238 1.06143168552697 4.205813093712291 3.402745825983489 0.8765101569032994 +3.7637181596606744 3.5607497258781593 2.492886879676386 2.819283195425891 0.38435756795850634 +1.8404478340171648 1.136661116787288 4.823373210686559 2.05620970140798 2.8552599934913365 +3.81103243405993 1.2739653853253552 1.064531177701121 4.792216487795855 4.509140381588362 +4.63214070088112 2.708434210846628 3.0515725183071956 1.7305897082682127 2.3335899905980297 +3.3366979199826874 4.715358247646167 1.3998829848742327 2.5351491980314247 1.7859265589070128 +2.7157929320024907 4.526849508086162 4.283526740354196 3.249270167527956 2.0855724826076387 +2.3465254777184845 2.5911671889255277 3.5018638515905582 3.7549334918462187 0.3519855248180523 +4.274374759992621 4.1023537426050956 3.524880284246969 2.155802110869652 1.3798428443997564 +3.8499840466293187 1.7432243543379018 1.8692518100495694 2.9358512706330067 2.3613705364429163 +4.845910800750461 2.1422112827594004 2.675965324749938 4.535759751040219 3.2815890040718827 +4.769146629885588 2.2908294936161364 3.200102534917982 3.0001809318272175 2.486367727289992 +2.088634566088581 3.7593750527078766 1.6723008892568751 1.5522394917993645 1.6750488090764197 +2.1809628617354915 1.0152106834735335 1.2635806011479254 4.187973858779856 3.1481826609022536 +1.6689974837750112 3.0887115116289015 2.178697794709939 1.375749699861168 1.6310467693804451 +1.6571337216143691 1.2609765793371888 2.574431974380007 2.948620693680975 0.5449382341415591 +3.083737154418594 4.838602620777556 1.3011386910743599 2.918558814789832 2.386545759380916 +3.913119867440336 1.6993396540986923 1.10112213466827 2.524587027778023 2.631933725400192 +4.379238614230996 4.777740890706903 4.3393251901884735 4.450788183368536 0.41379712807744246 +3.5758556983258147 1.1215442319337736 3.5353974301050197 3.52879283357914 2.454320352920279 +4.6552220188341416 2.2088946736887896 3.943578175074515 3.910590617254791 2.4465497457801293 +2.352416462423945 1.1174594054607558 3.704447011707829 4.171842303602863 1.3204458684205218 +2.809344836844663 2.5335320569516604 2.122716819957916 4.5068003462266315 2.399984781155535 +4.475648445413092 3.39237908221236 3.585485878176467 1.4761085706109216 2.3712750028037215 +4.887407790045733 4.8271183249741245 3.6453887672742398 2.1708675230685306 1.4757532717946362 +1.809125281002844 1.5175159820378972 1.17188471744352 4.465425171957581 3.3064247623019516 +3.8493439444113253 2.9893838154367045 3.558748428661985 2.3153380036011018 1.511820395607935 +3.888604381710666 2.4977024901216107 2.1271973150369234 4.190644780984868 2.4884580600751556 +2.3727386173139733 3.6027649887667392 4.483391936868529 3.8528926614917696 1.382206283707275 +3.71689565490455 1.3540285325718044 1.1441467898842848 3.9870089727540186 3.69662094737774 +1.3880212139618484 4.001154162741451 2.897075224204367 2.1586900308094155 2.7154514361009077 +3.4389021396567743 3.8296794115441504 1.2238068904728236 4.185657887714234 2.9875187373611025 +2.689953017604956 4.882818294800602 1.1126998122656202 2.35693604834692 2.521265938989399 +2.007643347079909 4.497766525384206 1.3477058255938772 2.317807718119336 2.6724167199390463 +1.7888599630528197 3.719204692390549 3.0342994519629545 4.433073765164212 2.3838624862507487 +2.912618356711441 3.4782576656532878 1.8912028072673315 1.8231202978004908 0.5697219110368781 +1.607858412079449 4.107671644851677 3.3748859489860132 2.68689199778645 2.5927595097945977 +2.0584721677426443 1.2132346316591596 3.6193370532765043 2.538248775779751 1.3722894578569704 +1.3828281764641455 1.7191311214011886 3.1617547739067255 4.292227462162822 1.1794355301017068 +1.2638878890911789 1.9408606342812704 1.9084418132989303 4.500439187846968 2.6789442859817245 +4.356936961557791 1.1069888404909274 2.3784262444099893 3.4643260627263084 3.4265640523774614 +1.5759136029814695 2.777482794880248 3.1146422176569484 3.6058690418535635 1.2981033532544992 +1.0947041402795423 2.610195801058242 3.0913851300900332 1.4637744912552217 2.2239225178809723 +1.4794648575363332 1.3305621376781933 4.72970065706329 3.15208319163591 1.5846289430660614 +3.598079198738196 1.8307367060920443 4.772047434280447 2.414262956243517 2.9466331857196937 +2.27131475153312 4.977303581091968 1.0961727344540213 3.0815395875103144 3.3561968188579043 +2.5250225945972686 3.6979768412426623 1.6512436028582944 2.654856422856643 1.5437164108697234 +4.451827885219208 3.88506054172005 4.067591540549882 2.578051378716955 1.5937236634279972 +3.718703872078966 3.556526168133071 2.8135241101068105 4.90785220686674 2.1005979588048804 +1.8530508759232216 4.673133482980612 3.181216557228767 3.715562724704794 2.870259872785725 +3.336002815128631 4.598404365305631 1.863710343529998 1.6604996629556843 1.2786525151849377 +2.8084486796773143 2.9509752818747086 2.1336942255538944 2.3670841890789576 0.27346792756768495 +3.375470561329642 3.512909421702911 3.7550975379538087 3.0864779854874214 0.6825991109582953 +3.5116353390313146 1.721196561391153 3.9374268885060295 4.972117490091833 2.067910940414888 +4.484738483051524 4.606247268219422 2.256312749369033 3.4350972504724333 1.1850304995714545 +3.6754916244666855 1.3460443866428786 2.967459823104431 3.2638238830569346 2.348224028885765 +2.907558866686058 2.090819278766427 4.873250837388071 1.9514880757109356 3.033770128074692 +3.0008596371635723 4.873316599747147 3.5928091335799865 4.6093620733748715 2.1306043640557317 +4.3000235610119475 2.9050699109126152 3.5013197266791964 1.645593596998546 2.3215544693814483 +3.541233139111105 4.286834651855754 4.08539552657045 2.651064515325247 1.6165478853491457 +3.890666420630023 1.002716780099285 4.944948937737907 2.6182561022780604 3.7086052198666013 +2.6445862719692053 1.4448396182711818 3.796912579012451 3.5303276517105293 1.2290075494170798 +3.404246190891271 1.4758382017185077 2.9220181626568222 2.980451163314141 1.9292930799313923 +1.428092795944825 1.4392932100179507 2.1444907901078003 2.971719024808657 0.8273040562947249 +2.5126507836313796 4.553473719504037 1.8715855270855482 3.723813608722674 2.756031045178744 +2.657932625676813 2.395417899763554 4.391405716381977 1.134959409563328 3.267010335232218 +3.849544399675156 1.7883115545705532 3.894627100146686 4.654415769584513 2.1968066969909117 +1.5950551257590808 4.356352523812391 2.6465757273214052 2.430158403122914 2.7697652930725405 +1.0337315738988244 4.9033647626149115 3.4298620281498775 4.688060247849114 4.069044577694789 +2.721663196721072 1.518482814148347 4.4485014965130105 2.994449192058723 1.8873026087770535 +2.13581306644271 1.103765226000724 2.6985357221769086 3.5035241401304074 1.308865576749669 +3.3906861625288762 1.9666772581417988 1.8059938630217656 1.657354515093402 1.431745443689713 +2.932132436208588 2.712619409608719 4.9574756447457045 2.31851202265518 2.648077598478597 +2.852437386295029 2.8542617722396537 3.282026835906962 1.704855704383637 1.577172186698282 +3.959145041634443 1.4316949465074313 2.264593136742514 4.147496643537444 3.151718515232315 +3.2409451962413285 2.9038385531091997 4.838708429444189 1.2652297432645958 3.5893440639514687 +4.911025892675682 3.9621718187642334 4.628892829600533 1.4539593446653463 3.313687777588746 +3.6312667257001277 4.43889569425181 3.437648780984298 4.681420773111743 1.4829812268685425 +4.034995425369279 4.462174628015677 2.0826630092348584 3.2324487117376255 1.2265762238252436 +3.5363847981877683 2.558529234649338 1.153393425950818 3.2307268178016773 2.2959781192427897 +2.440397521901336 3.4713412004535655 2.611658196652527 2.1951424253336533 1.1119038879796037 +3.121870597063285 1.9737804470212348 1.0580182423591902 2.679582194870015 1.9868519433279639 +4.846678179331482 4.982690777837776 2.271122591798191 2.0094155212158205 0.29494070208304635 +2.8531028474201543 3.1222695997270598 2.2604553465777553 1.8272898238360766 0.509983441534643 +2.328270250315868 1.0711627844271474 3.1512398501881878 2.0422441975070984 1.6763622933180988 +2.9070147382265414 3.203002861032362 4.4225260944074165 1.5951511672913554 2.8428256976688995 +4.818870554846818 1.5786964080993648 1.9488574333991036 4.498813872086883 4.123227660517406 +4.181174773920825 3.13358799232153 1.594190497902408 2.4728494835292523 1.367289171318329 +3.9233987130063337 2.2648122978271417 4.660990766780101 2.2965156499516115 2.8881917309482867 +2.217363098714429 2.5131397765168435 3.558933563233195 2.9435167421508615 0.6828042961221892 +3.3800663581359904 3.810412701143807 2.4177252584948885 4.271605252253897 1.9031734041332393 +2.4047846221592986 1.8062890573646548 3.3363569929672 2.50049645380136 1.0280368582952013 +2.7360965146132434 1.3684372697077394 4.9066962872569215 4.116968023169683 1.5792917847167245 +4.745245151531989 2.8773001703746406 1.154854838852692 2.6383344201095897 2.3853574408539004 +3.631849979192576 4.368195526905543 1.292470852167114 1.2551092639488086 0.7372927871008262 +2.5939455575929804 1.9544929321380096 4.635953383724788 3.175260377268946 1.5945293096428992 +1.0866288878366395 3.094418087642918 4.940303894749619 4.026716714974359 2.2058692177707293 +4.74341957851467 4.978003042616317 1.6103150531257233 3.1571902989536684 1.564561417070354 +4.718284352103538 4.86516999856937 4.833862970154769 1.5237529888093198 3.313367393112399 +3.447126886927517 4.425276811793925 1.306480893810118 1.4508530141440228 0.9887469770602924 +3.617936817391275 1.8973165554410376 1.8833858724376693 4.307394387615256 2.972600102181111 +1.9693222705890778 2.149962900151578 2.9282568843151 4.912569246740291 1.9925176507931313 +1.947376949347877 1.3460363983760475 3.264574975066788 1.2561708563803822 2.096496497063523 +3.915582522979139 1.3358631844402944 3.5271329658168744 3.6944528367473577 2.585139803731993 +1.265258530302424 2.5799847112553294 4.869669978760962 4.82482931520104 1.3154906369835955 +4.247854507297179 1.8258538202165298 4.524576059771022 1.1048176888758308 4.190564955173332 +4.992134705761083 3.0466594996789524 1.694258338441129 4.6101334833609595 3.505310490989572 +2.262537173430684 1.2243851908283876 2.419788849593722 4.777347373407762 2.5760127585455233 +4.927947995469461 4.292509960580727 4.4348336743347945 2.6850517652979167 1.8615902409971956 +4.29022506276238 4.084148442633083 4.753466667986398 1.600529663222653 3.159664433032801 +2.378250440738042 4.306839980825735 2.21790607128243 4.784181511411445 3.2101755791147983 +3.885487936662553 1.2076044040029021 1.0751188319826057 1.6912708865764028 2.74785435728859 +1.2182563965716517 1.2446790681403073 2.9606480237608066 1.3114855037370474 1.6493741767785564 +1.64981206265014 4.719575892899712 1.8400371281229808 3.377421694665256 3.433220249117569 +3.6892248016971436 3.592391906852035 2.5485826211118714 3.104274861273807 0.5640660203382883 +3.8973377704387917 2.5834325662884923 1.4208988949333738 1.7256544771410272 1.3487856947565708 +4.438531284721274 2.6725522262743144 4.952304951993227 4.700873765759704 1.783788013269516 +4.314825836467883 3.1554354657897776 2.6573872325530843 1.490423036615001 1.6449898073308942 +3.124973694819216 1.6639251117434029 2.6239835178528055 1.3088436684501512 1.9657710409899414 +3.6309792234069143 1.9589960977757488 4.135939961141562 3.3699585119078534 1.839090849568214 +3.0936462555757185 1.7330188875648633 3.913193913510574 1.3043813883473678 2.9423136518781563 +2.565480070866011 4.531488782005068 2.191351761269153 2.973074167643996 2.1157221398149457 +1.8984834285434848 3.5966038471215525 1.9148210147250708 3.479551909845839 2.3091114590112776 +4.275252076769519 3.0400627586067954 4.112904602894382 4.95636945518839 1.495702379739581 +3.2864422682970265 1.927737292120395 1.0273969830002034 2.4939348052368326 1.999202940258366 +2.3236081284518417 2.234167847680261 2.888764578054971 2.7269848563376886 0.18485735631405253 +4.289724162984501 4.714587719833629 2.370655227813293 4.415075687900685 2.088100586552869 +1.4759938890004975 2.5101201039974073 2.608237528888461 2.2249874124345177 1.1028588669026493 +1.5682191667886616 4.888429025929623 1.430998016533764 4.5468958400404995 4.553307891552125 +2.500289947371335 1.0825278693833953 4.774414722148267 4.392762931257051 1.4682327469686653 +3.2480272955446536 4.024555213833869 4.7047731144873985 1.5493555740507787 3.2495623493599366 +4.933633491538072 3.7384010214113106 4.374385331069346 1.0468552485103508 3.5356805721077795 +4.549116774514593 1.4260800572134014 3.2892373007906848 4.728665584882032 3.4387951556691423 +4.2841059842554685 2.7475926685185725 2.9876491420802784 1.6127933535812757 2.0618199748295205 +4.047714126063668 2.209441976791008 3.2258282355605425 3.4765656627088397 1.8552934409856765 +4.334050122964805 2.8747047705999185 1.3408809170990992 2.3722090340907385 1.7869881203764382 +2.6894423729412056 4.442601057246868 3.9046646248114407 2.3171008316375197 2.3651478113963895 +4.2191386724339655 1.1077425837853547 4.60511428559645 3.0415364079349625 3.4821776807007243 +2.8621614726298215 2.321807015359889 1.9470546870133818 2.8918986857024005 1.0884452771499988 +1.7291579508162584 1.9872449628002036 3.7158879239331846 3.471470100907023 0.3554560141109574 +2.1687111873311156 1.7337070966923074 4.481445243872129 1.9180802884697288 2.6000131640931445 +1.2367127535629678 1.6379165144416814 3.6514428285014167 3.490777350591204 0.43217803453593173 +1.5806483548765358 1.8049894978483838 2.9719642902891654 3.016152657006305 0.22865161312145504 +1.109606704782017 1.6147965073419641 2.45461357420729 1.3558540655900053 1.2093341946655831 +1.6675188717197837 4.520592104472556 2.893246606859695 1.099780821015695 3.369947536155925 +3.0817504552602606 4.963013424936878 4.326418182130094 1.6514972746185688 3.2702220448340764 +1.752460875075582 2.8615993036896317 4.9406579727793245 2.8146760444597 2.3979130954582306 +3.7929972221416577 1.6690211721999755 1.2172124039192527 1.8908736301965554 2.228249023003334 +4.1161361524034685 2.1882341766817346 1.4326713307406398 4.8144946676761515 3.892754180555639 +2.43342825257782 4.436778249562815 2.584043150666227 2.263233203229983 2.028874129361855 +4.646054355354437 3.217257634366188 4.23570919845665 1.7481930813828228 2.8686576133461488 +3.783831541511139 2.7940778535335538 2.885836332874618 4.103610204825152 1.5692627460277733 +3.897283379204732 2.5890944464183865 2.187130732790404 1.4704648375783864 1.4916327595037326 +3.4104153820852625 1.3809747395813807 3.0693001939046654 4.130129891473161 2.2899757572275377 +2.1925364425074387 1.154328859537919 2.8285664699807818 1.6767322240371771 1.5506763412988167 +1.7017241598939838 1.3273188280280892 1.4455423621939913 3.4045735284278824 1.9944880202210615 +1.0404829162737506 4.442881072345364 3.527368952346942 1.2251461399988886 4.108106995945371 +4.99979586614019 4.800101864113387 3.9110750812105204 3.087882296045537 0.8470679169896375 +3.0178676772708752 1.0388421838686077 4.932352634102074 4.09853098310415 2.147510290827262 +1.9632980241723916 2.5208867323961663 3.9980846575980586 2.022590789079001 2.052676592182765 +4.112625825761521 1.911782524392084 4.342818655939121 1.637612573773112 3.487384576465677 +4.567022823245204 3.194172111715543 2.6962922178407176 4.635795194088162 2.376213557536484 +2.833830538433667 1.3005110952760073 2.0344974116381027 4.108353749856015 2.5791371864117507 +2.167860064685828 3.955229606973087 4.262951881102984 1.0970401939117247 3.6356136609643177 +1.2761898052120086 4.384070857847295 4.949546988815683 2.963395552877026 3.6883224050793886 +2.080597365113455 3.804392720472956 2.2799058708690527 1.2467956536202314 2.0096733934007522 +2.2161634394121337 4.551240969569022 4.27366577985411 4.834421803988796 2.4014650508485307 +2.115537518745487 4.733059721046562 3.0566989583299664 1.3272588203740225 3.1372576671851715 +2.1474596625245734 4.807016513204334 1.9407524474990976 4.510113810947644 3.6979535500030036 +1.2151432150056443 2.450161829919013 1.5550824547853654 1.919666744106808 1.2877083067226667 +3.1966160676661435 3.611760936037994 3.226851961083758 2.8459378317623383 0.5634188811640735 +1.471531094569552 2.8542214102318586 2.875652164992253 2.842405736843927 1.3830899587557388 +4.687595754525715 3.9392020437273945 2.847798573273672 2.7391114688800218 0.7562446912368749 +1.3490513708752436 1.389977671543678 1.9319575256464536 4.393960054849325 2.4623426682506513 +2.538173465255833 2.542681620893203 4.89160511696945 1.8213109979635278 3.0702974286980087 +1.8601840005849763 2.937653409336032 2.52915539488288 3.1745002532749225 1.2559499643884682 +4.762316831498417 1.7450933517092877 3.6120569443967647 3.7863216166585385 3.0222517603583796 +4.482240321075507 2.6237498360233165 3.9296208255103404 1.9937728424215306 2.6835600042962593 +2.676432563772436 3.4759472326450154 4.7996879192154935 1.2864726516779816 3.603041107425934 +1.7864575575478359 4.301818326385986 2.372230722643008 3.844302645670175 2.9144528721485528 +2.0697168853818617 1.8393212949374007 1.6896458192893582 3.21476838413238 1.5424269726277509 +4.823072860603833 3.1384443450525255 4.477404490953743 2.7391245753025526 2.420659063264572 +4.001701450244829 1.8345520871817622 4.990638245552731 2.253903780488052 3.4908812489251915 +3.409865491760205 3.2044209576003655 4.67832550661175 1.1196565318711098 3.5645942726203432 +2.6032628255901074 1.661098145133995 3.7407088586758297 3.2298917659110167 1.0717314903275277 +3.1900707859369475 1.6630998129841799 1.6303001293538286 4.197032337543618 2.9865958181178707 +2.9942532659651566 4.971052732548209 3.874415936014168 3.7286898998680567 1.9821635171433 +3.1216630628649873 3.209745303786492 2.389726563124115 1.1740082738283437 1.218905016846674 +2.4866655925648384 3.727502844387827 4.8530489924673885 3.9587850656659325 1.5295048402309772 +2.8059227061161818 4.850965394129373 4.087472879672054 2.3217386589313724 2.701854351013563 +3.166736900085485 4.962727842038194 4.4489835602888075 4.353360187761465 1.7985347627859967 +1.0696324772358379 3.734864621452568 4.107813532709293 2.8242137654001476 2.958224255394138 +3.598616591912776 4.8971617993853025 1.477026049625585 1.4450213897173936 1.2989395498273606 +2.277093093775105 4.766644858746021 3.91976081551406 3.851192065594329 2.4904958670785544 +2.661186778126017 3.322165960016545 3.840308678077278 3.732301189687874 0.6697455460403295 +3.423887370748507 3.007960570718802 4.107581552480713 3.8435348914083054 0.49266189441282876 +4.203421696984446 1.9035833087809029 2.6351322230224303 3.8896634120626796 2.619752873102616 +2.967399752275302 3.4297180312734983 3.5109814906088386 2.3698468185499673 1.2312296824194753 +4.921828192160687 1.3992721155562289 3.9658983086166852 3.406075400047916 3.5667636593670444 +4.8235942378819345 3.4880729991357673 4.1322571383312265 3.413172483118112 1.5168057622863451 +3.2409071385055355 3.0538851101763704 2.348295227559454 1.1193234621408052 1.2431206052819597 +2.2774026200429462 2.411536020658338 2.317937684151492 3.8352025788015536 1.5231823691528574 +1.7455199709388847 2.854669118217398 3.0881800945980653 2.9509193825140927 1.1176100992700686 +2.589296724641285 4.20447892784213 4.5158110443845345 4.024164667625511 1.6883511806839868 +3.2384144601705267 2.9974754232514416 2.4799272490442235 2.3817352803241847 0.2601793270661859 +2.832554238657756 3.418473462569492 3.1756331536602347 3.904358285860321 0.9350623804053741 +4.948177067131674 4.6974172233872915 1.5344353281183598 1.1269283154167278 0.478479325191502 +1.0965208537088929 4.879073680947366 1.5726925644329541 1.6484837116084714 3.783312066013052 +3.995949745633004 4.87042713007144 4.241506946288948 3.680000506632399 1.0392305700228712 +3.354773114773828 3.765065114511611 1.636129563247024 1.0789668618080333 0.6919319337359876 +4.586294712094175 1.7560313718831142 2.4423000299804807 3.709779686643951 3.101111938482457 +1.8442376682410746 3.0677270749978196 4.967160689740645 3.106799627463094 2.226627407197807 +3.0022204308977063 2.590654177168165 4.572472006023332 4.109279710243978 0.6196239860417914 +4.585566193258371 4.193811054068089 3.369817125370132 2.0225953383530086 1.4030248153527465 +2.1525404128120265 4.810731666277874 4.911755801868621 3.3498192294866462 3.083119620797527 +1.5132347678780045 2.9551549005371123 1.68859074731466 4.333416243888742 3.0123471872106635 +2.7044250010798967 3.9763689610163166 1.2953012884167148 4.802874692913299 3.731073923838886 +3.3639843824858566 3.2121702492314004 3.0182503781459227 1.5061997979457278 1.5196527524864185 +2.163011488702658 3.9631984340229454 4.039296212424533 1.386573380138537 3.205871404631356 +3.832372458360853 3.841137555427744 1.198460749379529 2.933956944695485 1.7355183291693441 +2.2050162014393284 3.089687494509976 2.0462879911661975 1.826163403925893 0.9116458362165685 +1.3841794651805008 3.4717697430499315 4.1448229113590855 2.481179181273689 2.6694088538302667 +3.8882555602052244 2.9543626812621016 2.0478699859245952 2.4829518663716525 1.0302680001019258 +4.5690181398097796 4.638749615347738 4.383788381293829 4.977766177044108 0.5980569375277414 +2.5164438626312915 4.284070073520637 1.4185963162690647 1.0961653176672197 1.7967927455002732 +4.0612262699419315 1.0333337307359471 2.6728411015507003 1.7469976045088296 3.1662784795393444 +1.798579027569243 4.72369241492463 1.7695723734515814 3.936915899325995 3.6405585132003364 +4.230182006341364 1.2999748655569126 3.612543730362598 3.629415251938409 2.930255711733103 +2.3330446585859304 4.0463525800903435 4.711341679024043 4.98939452403944 1.7357238889036841 +4.37907053296537 2.2475329900098306 2.043584402443036 1.4719158460269193 2.2068659305503413 +1.6011075935929617 2.521032139252713 2.231453379396432 4.3211113465398014 2.2831845280995267 +4.541018215721358 1.7082890898826526 3.676203576348367 2.8422139231990076 2.9529465017055605 +1.8798629816530186 4.245848142726208 1.1177862247088175 2.755374221534447 2.877425972942815 +1.8152867173616198 1.280408035072452 3.626650021821651 3.3462427433247237 0.6039233780881891 +2.6966643849682894 1.7392360948196703 2.5265927280688554 2.2582505798380694 0.9943221003749346 +1.1290958096163939 3.9748148990796586 3.04864914689869 3.065774285199678 2.845770617336798 +3.361886032794288 4.979667627477216 2.551294016537202 1.0175275543221582 2.229272717437346 +3.6543697405548095 3.734100266932771 4.248890171096356 4.120267760053035 0.15132971109172158 +3.0146419726261073 4.7873788758019575 1.6894961018544294 2.6008949256273493 1.9932997626689684 +3.651931144628203 1.184874671264569 1.7519373278971604 2.402947753387729 2.551505872394344 +3.4183053030157367 4.305572999003945 2.6739307901163856 1.7751882963603816 1.2629259813730118 +1.6457400215586504 3.47107182926106 1.5265215694794447 2.3112032414860058 1.9868471341784597 +1.7915446040296201 3.120364206537078 4.086489266862081 4.761512947109921 1.490442385637035 +2.9481987394963753 3.425165797896559 4.55534210686196 3.811735662637811 0.8834297474562458 +4.672774414891963 2.2944472220467156 4.989517185816544 4.136013648191922 2.5268376530685344 +2.623129647961368 4.638145591201035 1.258504432727415 4.294377883663213 3.6437366619456566 +4.458629223577397 3.082347829092188 1.5931891994688678 1.451111573783884 1.3835955075550197 +1.4556158888660842 3.492293775207197 2.929212870606089 4.738029085340203 2.7239443664282046 +2.53213352917063 1.6182942519745342 1.5933485431619427 3.254033280810267 1.895514711735144 +3.0643072436872036 1.5869462780626495 2.080660306978474 3.3989576832419446 1.9800261096799368 +1.6414451665981344 1.326398499122615 1.9863397562034315 1.8286327123093988 0.35231507827685277 +4.925987977018247 1.2493363673415812 2.017563226493805 2.496461101558594 3.7077095670615283 +1.2829135284962776 4.384618264682752 4.907573472645192 1.2600438953132764 4.788010472836578 +3.626449804594206 3.2713166447442923 3.689443777691167 3.1584079461100205 0.6388416201595384 +2.8633008746005326 3.8052562304962962 1.9818988901409704 3.405335027224046 1.7068832206260343 +3.92472824717847 4.299684934804411 3.0296777918208466 4.35027862054664 1.372799718249778 +2.2355963438052506 3.103466512552646 3.9647017523972035 3.1225261605818635 1.2093214449645515 +3.8322487275151857 1.2767862677297614 1.3379576180744999 4.406884758870358 3.993582624522249 +1.9273500284739273 2.0613544034995424 1.0967417560380617 2.9771758611238086 1.8852027997262362 +3.868159813933099 3.7193647928002074 2.2640846826941403 2.2552817457210663 0.14905519116518415 +3.1810156095101227 4.318359125116185 3.8750974867629515 4.4888122648672235 1.2923606699968602 +4.340726775909358 3.7514338857035887 2.1866680337387026 3.3720078661918387 1.3237434150344614 +2.0103031665320934 4.325359282413237 2.4649100478440946 2.966745589715022 2.3688232797664703 +3.3528963417007427 2.2704824857720345 1.8725139431864144 4.580012007151783 2.9158473077105174 +1.1402445193501016 4.578980421796035 4.617336591032607 3.616059393346022 3.581544448052788 +4.712733479634866 2.1280847346235405 4.935930187669728 4.909920085304865 2.5847796154631153 +4.606463691296582 4.427342843553474 2.2161287803305236 1.3530138042250712 0.8815053828954906 +4.907969112228378 2.365363283329246 3.2023871986640224 2.708251315632635 2.590176571597205 +4.6544484846346315 4.229212032247535 3.2086193253462865 2.9052793810965785 0.5223419973697112 +3.519335451799321 1.5785696399203633 1.07013119371892 3.3948713189546758 3.0283640115480415 +2.0824154277714055 3.6258555029920716 3.9300264776050664 4.539521506089647 1.6594250376394215 +4.030387027455371 2.022900040635937 2.842587628329547 2.0359467307214114 2.1634864316522595 +3.1381536364661278 3.81816830159196 1.987287205266878 3.968404665515195 2.0945754548564106 +2.68263269067138 2.536378373682226 2.380576891278083 1.451395021208731 0.9406217480494176 +2.6723129126579583 2.7641043505515097 2.721567953166365 1.1003894645695498 1.6237750336668006 +1.663371474607119 3.4525728273706164 3.4444381930171857 1.788014677149937 2.4382330373958814 +3.3293346296397184 1.224523619893482 2.5416046199401965 4.994510399934168 3.2321782364648155 +2.6974852612639695 2.969708038234046 3.899433544020339 4.690390022577345 0.8364911184660596 +1.8583645766310495 1.4824614043444289 3.5201686609302376 3.8722844075529883 0.515061835078898 +2.0528122826347044 3.558771265603658 1.1046843239384154 2.2571697371780024 1.8963478283571573 +2.284986571869552 2.4289489253749132 3.768223653044095 4.230493811587259 0.48416821323412407 +4.067292762851036 4.2375911750684665 4.647228790419923 4.651382436432151 0.1703490592253824 +1.3912167489290872 4.737992955151517 1.2703824432049409 2.739329511399125 3.6549577923271412 +2.220024705989574 3.8144311952540946 1.2842330540193485 3.839329200703263 3.011751711514049 +3.6533107302985535 4.499623833535324 4.7540821890120375 4.182687766927297 1.0211451680832686 +1.4764899198876194 3.7612494159302137 3.2957492911964756 1.4688467119822453 2.9253545064994118 +1.2892623868080357 3.933760819155419 2.2764381975183365 2.3790180981251314 2.6464872179355536 +1.300684706768429 1.506190197388571 1.5503965279792986 3.220149267417492 1.6823515439813335 +4.590490745387415 3.867438275938879 3.7973113855762524 3.7603679184274936 0.7239956445591351 +4.4124564843245775 2.552763329705054 3.9568938675704644 4.3479592969446195 1.9003659645947952 +3.086735816303994 1.524454666937138 2.1968292737354407 1.5826399290078776 1.678675353022108 +4.588738167059875 3.507633586040396 2.862943526662006 3.6187447265243686 1.3190991504866831 +1.4948620045271896 2.782068181042482 3.6892899054001123 3.9456326061378424 1.3124828841095915 +2.091126256365252 1.4404612766614404 3.3063611053265585 3.142402939933452 0.6710046168336213 +2.8574911449522653 1.4347717900719887 4.002098959654017 2.842101552435122 1.8356808947923133 +3.3990879774858347 4.598279042049338 4.888798828946596 4.188612554965724 1.3886396320140677 +1.2544635209627888 3.409132089409081 4.240728660576194 4.956285816877962 2.270378533149278 +1.8377821382704345 2.0778131636283104 4.849279271096856 1.1954109096741479 3.661743969168273 +1.8962995922283539 4.136206913999644 1.720309020896429 1.3248990006242947 2.274540369889319 +4.730662556609497 3.0956475421782548 4.031535724552038 4.091238908128803 1.6361046933325494 +3.4876312453629175 2.3278460842229194 1.4117341821880847 1.0205707415527856 1.2239732257243932 +1.0595487219000743 3.882958544102462 2.8579966730179054 4.640643337213644 3.339082531695962 +2.6150560416638147 3.8922952086306815 4.604971747116215 3.408538420667003 1.7500835963669112 +1.90192507486584 4.464913981572766 1.6217520348638854 4.018230456188954 3.50884895083551 +3.3509675220679127 4.1041933373244905 2.7572596837870647 1.8775988723064505 1.1580812890396204 +4.009351588629012 1.136029130536604 2.4812693284910807 2.8345407330376786 2.89495814018934 +4.514758861595199 2.23585365647138 4.936320403791907 4.711802702408124 2.2899382376332977 +3.974651634791446 1.513563794067382 2.428493591364121 1.5426018344786012 2.615675355367624 +2.8657583073028507 1.2133040472373935 4.351440452947289 2.887580537372838 2.2075984539843554 +1.2107230473734298 2.188758262145554 1.501740468782525 1.5706798963240898 0.9804618942131886 +3.7322975330563657 1.4452366932332574 3.4288866550664925 4.1189974999499235 2.388911941298403 +2.8174126782891484 2.9955336621851916 4.5903076732325365 1.9644133582935726 2.631928577703594 +1.1557682190857466 3.1648875541982298 4.92418270811396 2.4849787122982363 3.160107060832943 +1.1111478288498007 4.240243555482394 4.753737136448918 4.8200141648522985 3.129797551108432 +3.900188357307839 2.425842938763279 3.1424529197491005 1.8570187464988979 1.9560254157200427 +1.3317635081101664 1.1027701077374346 3.1580197446923566 4.401632405463731 1.2645198406688305 +4.823847346929583 1.0100180855743517 4.493858753512521 4.9305852589445145 3.838752880209434 +1.3321826200776665 1.9074120015790768 4.098361114599781 3.4782173530921874 0.8458528987236977 +1.0084607276057174 2.633277877692407 4.514038089864089 1.5707813948527147 3.361962335295431 +4.50735753310702 2.246752538614386 1.5291654635265064 1.3606347909374907 2.266878366549107 +1.887644561355725 1.5061564398886462 1.2400872227438384 4.115298678616604 2.9004092991856285 +1.7687655458930638 3.1791221102860563 1.781478913465211 1.599080036682298 1.4221023131188815 +4.793632015381382 2.0701389015171783 2.9029808547229434 3.0180953307543037 2.7259248125833757 +1.00109358374785 3.8453073167041008 3.8387401255408427 4.535709525530871 2.928364407525025 +4.4278935039901 1.8391002072276281 2.2033464614596188 2.4381383527951472 2.599418774572351 +2.008545827341992 4.485158212892677 4.383174523029684 2.4284353876420806 3.1550933418330005 +3.137774465248556 1.5044448064617346 1.0078128286750063 1.6904818595343416 1.7702550042203238 +3.1143790341169906 2.4769893387971686 3.025661671408016 3.0999560059209625 0.641704972585235 +3.220539442607596 1.8857413865205115 3.732328825437364 2.945827824641313 1.5492803732013936 +2.4993722668732024 3.217637170060312 2.4469358690394056 1.3252157636852067 1.331976150652189 +1.4677261985175583 3.7744734828391726 4.162131303715025 4.305924640980749 2.311224687815349 +2.0336250936731126 2.147406119023082 3.9340357726000628 2.856092439326691 1.0839317097853527 +4.725449694513198 3.4923322617126136 1.1333732209715004 4.942462551226674 4.003715790230435 +3.120723251061962 1.601910775809067 4.6971432350587214 1.3286600884750706 3.695060221945228 +2.7315549740270897 3.895364523317139 2.6959783978094145 1.430343949834589 1.7193845477144571 +1.0976268068741732 1.1929660052311908 2.707257782402643 3.8764470314649593 1.17306993093603 +4.629627989900568 3.33108721604762 2.233413706077917 1.7675165745199637 1.379589895060319 +3.726136529674387 2.437031238328251 2.541284737799735 3.894336730528002 1.868834435471088 +4.626562110802173 2.2737825182653713 3.4667137873028886 1.7741485349768977 2.898335547247589 +3.4727625194330387 4.883278772954303 2.6790062042805274 3.9984279145876007 1.9314320467148995 +2.38195456109732 1.8427080849492605 4.664698989888317 3.4537092000833027 1.3256255251955928 +2.9488712318511383 2.429968741773868 3.2291813716612703 4.361150031589269 1.2452360584514013 +2.7485137807676963 3.3828560224724336 2.7566026239363812 2.007076334923448 0.9819265438577828 +3.855830358669291 2.495165724639428 2.635834388629568 1.1174672117355455 2.0388347481266704 +4.313244557066062 1.5058443914196662 4.889764619767745 3.08915127195824 3.3352217495064944 +4.284766849644233 2.226013545831731 4.494966240573011 4.63961214449081 2.0638283851810666 +3.2149465449058034 4.355391339826546 1.4860461264757605 2.630024002082504 1.6153326933296224 +4.811481998669409 4.491287914878908 3.7468527491829944 4.3617280248030035 0.6932502115854133 +2.649051210783519 2.149146742563102 4.787447603811689 4.811919968511132 0.5005031208501306 +1.6686172131261339 1.8492167887445428 3.8688850561732337 3.8924559810430797 0.1821312581979527 +1.626066462478787 4.042918879483761 4.254077389387147 1.7602955790830492 3.4727688265973544 +2.4206476805458546 4.047798790839759 1.1482056791224986 1.1703855877470706 1.6273022718835248 +1.1854568552868656 2.53161802575291 2.9584243428549506 4.0770347631000625 1.750268313474096 +4.043155956448713 4.906098609621275 4.108685019227688 3.615996087320312 0.993686271560865 +3.996384262554339 3.182648684460415 2.7934745844805944 3.9327089340675863 1.4000073193861342 +4.455536511744757 2.7572459855096856 4.717223485676234 3.766018718971754 1.9465305596627864 +1.2953310510970555 2.3238120419588384 4.569103705081719 3.9858770278504347 1.1823394206395554 +1.2093741379209937 3.6843033580485813 1.6183975133552537 2.5116714402093656 2.631199907464029 +1.106378427457832 1.6037567165345759 3.4130664848467074 1.6146406502545427 1.865936934886448 +4.539746273813652 4.996058642780296 3.6891113145244625 3.1879547215631523 0.6777749691015 +4.301669561173802 4.623585788684062 3.2698298762589446 1.7935114530609924 1.5110083203636324 +1.9677614060261006 2.395298008944331 3.126499969175339 3.459312475621124 0.5418041263054262 +1.755684057794129 2.7944187323450427 3.9391210447918787 1.5665056068564267 2.590033540409087 +4.460561422200129 1.8768854552106458 1.0337710109634473 2.5578501493789805 2.999699772069278 +3.736472385137826 1.8171187008541683 2.9502145914748055 2.632444341080406 1.945481045245358 +4.784230881011251 2.8723474442835997 4.660217659704232 2.8955323646213342 2.601809460032642 +4.068042542572621 1.8698111404694613 2.5192834707449183 2.8992564315157567 2.2308296098333864 +1.8821318003808076 3.133380248699927 1.1940276814089192 4.8390846995020205 3.8538374828955586 +3.0414720782759077 1.2742331619301779 2.205906401166548 4.075805495632667 2.57286921761135 +3.531831590579218 4.4697851347552895 3.4491465073191447 3.0266926984201086 1.028700185518481 +3.2763324586887665 3.08101492023476 4.344111371316979 2.6511996222251852 1.7041417579065328 +4.572017888724847 3.2070885266721656 3.519547683139596 4.473942672987355 1.665503515469134 +2.507964018554842 1.8745315278163734 3.686690757255403 4.750009026710141 1.2376923941268119 +3.766357338840489 4.8322916567101375 2.5894126898477197 3.705649200654176 1.5434376949101656 +2.326665440676177 1.728850317654139 1.1226932935179166 4.8248669195905665 3.7501296616119513 +2.7100882428744253 2.416832879457091 1.4745367327685233 4.234394860910426 2.7753946738516233 +1.67328496656256 1.6507988648913932 2.319574733130989 4.584476509652906 2.265013395558733 +3.4374305667117375 3.0839267891973914 3.838083451528536 4.066572481740613 0.4209182315416708 +2.8457677687663416 2.0230202169345572 4.025084985224872 2.4494242709127327 1.7775320589716057 +2.2691128942374146 1.5294235486953132 2.606498889693929 1.1358917949234635 1.6461547785969979 +4.419644976752043 2.54288458186574 3.715942061374758 1.0341990908103962 3.2732208816371005 +3.796212876263952 2.2444061236424933 2.24983522045179 2.88310549353055 1.6760475638378538 +4.772536329527298 3.936612846122515 3.5279585058247522 3.276342512865858 0.872971178230001 +1.4513885087915996 4.994555384812125 4.923555847528338 4.730982697108429 3.5483962475450372 +1.2885696492379837 2.8085007827825956 2.5963435946592908 2.3202514860445316 1.5448033865698099 +3.5950619079676436 3.7711357704470108 3.7330691747861375 3.448176840040405 0.3349114023817011 +4.146408190556762 4.657298343381417 2.2997056281654404 4.886200108557803 2.636467797139453 +1.2236746131909544 2.9164957658976447 4.159919991041418 4.000168643789442 1.7003423031848703 +1.6445547635225832 4.051588715751416 1.7540028812281827 1.965426908471862 2.4163014229351214 +2.592170769512021 1.948966203537195 4.805517142462749 2.995639640847758 1.9207729393509756 +2.034817080513897 2.7375109156807778 3.678472063857487 1.2979123136782684 2.482104621113881 +3.3983859500435734 2.644178740975858 3.6079362555035583 4.286950758758611 1.0148345726473935 +3.274038981096376 1.7922937385773254 1.898922097102778 1.5179393352269956 1.5299401388859433 +3.7342057311130405 1.733320551670234 2.5428865653805572 1.9441288253273439 2.088552688487294 +2.1119568623551808 1.532350369654544 4.077713162708999 3.119339285659918 1.120010792176049 +4.512406048025543 2.2956600074098006 1.8943916573587174 2.2536023839363035 2.245661451482384 +4.401085446374866 1.8768783538533098 4.775519318297809 2.4614666077365928 3.4243921202443857 +3.8618738488192146 1.0095453455888825 3.014853510760872 4.269614618137245 3.1161199153634267 +4.303270243498913 3.9916519931797643 4.377414048934993 4.824249220898185 0.5447638064660162 +1.035211566646475 4.641677987104032 2.545570816062588 3.3001716259999605 3.684565432211251 +1.2478537637396991 3.855384436905362 1.4857245651509796 1.50291962977504 2.607587367998856 +2.8426386849717735 2.8658268033084684 3.779865276169825 2.8302531303515437 0.9498952133354484 +3.0826452540063705 3.8740064058238644 2.054350430360061 1.3495171474755958 1.0597369623013075 +1.001669568691213 3.791873394057576 4.005372882709316 1.3673736502355713 3.839827774473896 +3.8089460295406212 2.2680412570692425 2.5102596037121994 1.6871803786273842 1.746953613749172 +4.992741398621923 3.183001565588718 3.148280215617544 2.727307105843259 1.8580572172083625 +2.3507946642258473 4.077952592813935 2.2045025662443885 4.160090787128386 2.6090994231621245 +2.9511299969573503 4.445379800167929 1.0246105639471987 1.983102197908547 1.775243275376293 +4.108181234310151 3.0721487880265395 1.0311388867431335 3.0188010419110776 2.241464715947873 +3.4711862248471155 2.8570618808378887 3.8845275973910556 3.109368138246786 0.9889493905178363 +2.5973477767472573 4.393037287604873 1.913140967533233 4.108863727992806 2.8364941847647547 +1.493645673165855 4.201599618756816 1.0199078156379602 2.311521729642073 3.000213504784398 +4.121421946000841 1.8147677943998173 3.0357951002427845 3.5375257526556565 2.3605903970551276 +3.949237832876406 3.5305252985494087 4.994401108032484 4.924892234083785 0.4244427758369239 +1.6828288300945968 1.5439274214794376 1.8298542832760156 4.465395992224828 2.6391994431880477 +3.7340622030828885 4.90344365730555 4.992231982600156 1.9650722808882666 3.2451731610421537 +3.099274510289205 4.983293194663303 2.73660190252029 2.373101898851533 1.9187648776590356 +3.1788173588867896 4.482077320706981 1.7970977558407961 2.3778249088346928 1.4267902979442928 +4.273297718202485 3.422119842215848 2.442072522437167 1.8453201647882116 1.0395273699757548 +2.0564086653194327 1.8005771462069466 3.272390003200897 4.776394334359614 1.5256076803410439 +2.8988468635497693 4.160779364882236 4.28905561727105 1.4748657890375614 3.084175420959717 +4.387131895279113 4.3022494949997885 2.1913465650616004 2.8424351411833286 0.6565983215280092 +3.144726723796388 2.8239052390654367 3.889428384963685 4.076139525240023 0.3711973531266927 +4.261000976606695 4.650123908850205 4.937728540589765 3.0279856703282735 1.9489829365369997 +3.2800063558314414 4.207774782378045 4.322891446115127 1.5281173395998704 2.944743886952635 +2.0710739466546335 1.896864001830024 2.9777151948333094 1.232517158890237 1.7538715145458492 +3.007956370715577 4.4155857141139 4.588405504336433 3.531508964774972 1.7602416492439281 +1.012046406832256 1.2088600701692522 2.673082708735864 4.435903704116825 1.7737737961284832 +4.501549243342879 2.055452729483111 2.410873766626441 2.4686275027339053 2.4467782182190687 +2.741582479148279 1.8478133868992006 1.4872721514719243 4.727828428938778 3.361551453970261 +4.036646125331728 4.35813631282501 2.101058540770562 3.9672296781199194 1.893660649253255 +1.419867418303871 2.6057080540566933 2.1330166910934194 3.9183548389291634 2.143280269941433 +2.766876646697691 2.669964044204207 1.6391697022306708 3.7889683698101946 2.1519819617387026 +4.971064010699861 2.3076902000014545 4.490956834451875 1.979831564908611 3.6605068193971286 +4.9203800920424285 3.9970058165544393 1.0964849898908051 1.674868291918993 1.0895628924931313 +4.46570355322546 3.083807928074239 1.0529556767535624 1.0673451813414658 1.3819705411673464 +2.3969251203282833 2.797543113659724 3.0702660601044944 2.6982781489280576 0.5466898413564303 +4.647266928246788 1.1636924157321582 1.0581798148797805 2.8299201460542274 3.9082419558353445 +2.640642791139976 1.34681190227368 2.2039133835431 2.4161062048545885 1.3111156174802734 +3.5746287366717406 2.796040075470621 2.6777468426210413 1.7797644865488955 1.1885169814385632 +1.8075219125014046 1.640103102727327 2.409459147467978 3.3631800246633445 0.968303965428454 +2.6618112890971464 3.3856928562108934 2.3296483436900206 3.6004457188268653 1.4625082877924995 +3.756164767310156 2.4922969514580524 3.4041868212313764 3.85032919007153 1.3403002906890196 +4.144713450842252 4.601742424328592 2.3184276949497966 1.3457537632793253 1.0746953335514537 +4.840744704017316 2.6346165924020117 2.4104530254152197 3.0287583340554223 2.2911356789924002 +4.877847981477467 4.212792628459761 2.7026855591599706 2.085999104879043 0.906973431513343 +3.80833493475196 1.9668024644052844 1.950039021265737 1.3905019454418728 1.9246619387733137 +2.2020139557837872 1.6334826639025222 2.1969118437537367 3.9855104373047854 1.8767825549863173 +4.5951560971584104 2.1112969401652584 4.594619624972276 1.5291871556973584 3.9454318566493645 +4.409556509904674 1.385228700001365 2.6232024689517144 4.532418290577249 3.576543548637401 +4.165080891543372 4.966047930133213 4.904657116444458 1.0552912524466884 3.9318145622369673 +1.7885834724077596 4.08228104383236 4.146415232362125 4.231617026216634 2.2952794807681123 +1.6930771417945323 3.267088889486739 3.986660401677497 3.0192423204854677 1.8475418062090891 +4.729610384413924 4.917454592971541 2.390854220019299 3.90036850989262 1.5211570721067547 +4.507272521857633 3.5049475626948112 1.2565392297796776 3.72971091676507 2.6685639428477117 +2.947566293489986 3.0361623714372246 4.50755825292168 4.909888100941047 0.4119691391778271 +4.244857132495396 1.5036308276981405 4.904977019382258 3.1059137554419824 3.278864175560167 +4.625172657365672 4.10612167888214 1.85598538970277 1.1937756473462642 0.8413891258725551 +1.056362496416123 2.5903370251355913 3.4107448658636295 3.1691694587759716 1.5528800765254485 +1.9686509941808978 3.191752068202616 2.566148562893122 1.3397527875684032 1.7320573994551678 +3.319234395975138 4.398210468854591 1.4688578967954937 1.5777648983220387 1.0844584366530008 +4.738041173238063 2.5433483772185497 2.59212787558858 3.6780222046638045 2.448641044093168 +3.3084727073765468 3.380306690336875 3.087347944738641 3.1578772902674572 0.1006703019200194 +2.1687759999079392 2.9658905553550925 4.094417676443919 3.7174667165664714 0.8817503278469714 +2.868220871547286 4.876873641652621 3.1217174732382755 1.463125199810921 2.604921165856033 +1.973154892770426 2.785025335009504 1.4180167936107315 1.6583584232903519 0.8466981244449122 +2.9697992821607535 1.952375330011539 1.4661653859093429 1.8290105845621532 1.0801889355998444 +4.223695619452833 3.2133769934869107 1.3352968653494837 1.502474878779969 1.0240567436173804 +1.0940816188781706 4.741110964701521 1.2370118650546957 3.428037968131151 4.25457617556192 +4.865978678401021 3.750076575616765 4.023677119687735 4.324201576380268 1.1556610454924343 +4.000155580630418 3.65515642196081 2.6909884012397773 1.2596105106904258 1.4723678497699713 +4.110863644951131 2.665694231517532 1.37222803344631 3.6578440904235268 2.704173698828552 +3.5595968317601283 1.7063433216405155 4.446340511706836 1.3977459046773313 3.567699209684029 +3.7868283188201888 3.935400364085619 4.924101732330401 1.2880844849518587 3.639051397805283 +3.6211591207830223 1.2257393727210286 1.3447713988623726 2.3095407424216603 2.582405013873154 +1.5735611926495157 4.070257501705855 2.4844864095215033 3.0526074727197754 2.560518307316916 +1.6826595832151159 3.221989560197129 1.2594383774424753 3.066016902275971 2.3734495453716757 +3.102100702776912 3.127555273234803 1.6658963278642207 3.8336055866926233 2.1678587052590808 +2.988176016171781 4.417402844419365 3.0034185704863825 1.732483765221823 1.912580614200487 +2.87044399117541 4.947126469831001 4.287709986949412 2.8634484477963613 2.518160250870811 +1.8856789957950006 3.8579203555163883 1.7435075773370214 1.4666371652129286 1.9915805798675166 +3.139245019854537 2.0519955574306343 1.639933838795388 3.0454013665841737 1.7769215979355382 +2.1356950553831964 1.7528349712475997 1.0156348122514074 1.022422683342353 0.3829202517734776 +4.606804653645963 3.1784471928449047 1.4455593591816749 4.135154099387401 3.0453447920339585 +1.4877452646325122 3.53513114638578 1.7470313474389703 3.347603656691983 2.5987729154256876 +3.520923072976744 2.2926612435796656 1.937586074795714 4.139868962847856 2.5216417351719778 +2.805995102175785 1.386722274935038 3.0517985576052316 3.7151583844803855 1.5666466155632472 +1.937972658780874 4.017528802822154 4.30967396927087 2.7900159392885953 2.575638616791852 +1.3338980980675115 1.7158597172351748 4.123008625597178 4.818399283519101 0.793386945722116 +1.388291482585434 4.783018358754194 1.9872351802332524 1.0438925466266724 3.5233600281779753 +1.352944118251675 3.2620996178321664 2.22470634782164 3.9384589978444016 2.5655063568501393 +4.815000210911845 1.338281772220327 1.2635984048869608 2.244519350385856 3.6124475087198196 +3.8912661016808783 3.482123773152741 2.173230742511274 2.185141462776463 0.4093156608910314 +2.8366151930392283 1.489190311349795 4.655745385687796 2.0689292559358865 2.9167055903776835 +3.723719726646487 4.851431759431305 4.777074341263422 1.21778736639043 3.7336655177436824 +1.5185308699205202 4.187458348154371 1.4792838700448412 2.5949822045804884 2.8927420655421936 +3.4132529765237254 1.10597092296429 4.909132588074549 2.1894866856439164 3.566514308016326 +1.1140976759473187 4.294919020456741 2.7302146867719608 2.1740986395866546 3.229069445463157 +1.679271923901109 3.1094270069200136 4.700661755050279 4.936727685216727 1.4495070489204804 +1.9183453778986848 2.211266267449383 2.133684951607957 2.8053190891140005 0.7327312346274446 +1.6816851121378056 3.0606426125815043 2.208656712651892 1.4382458578514612 1.5795748393869358 +4.174002804537737 1.042423141864023 4.555272749035909 1.8851081590663559 4.115406434509097 +4.511473373277823 1.255355750928166 1.1178106377643378 3.6287019743871265 4.11179732901603 +2.889705130236284 2.108692785039081 3.1254022984641163 4.370111316156011 1.4694491560016485 +3.9184414581627403 2.0603235014058727 3.065334019680432 2.2554469171926965 2.0269483121180705 +3.0096871984385594 1.0128583156424247 4.558805739166761 3.8044147824417007 2.1345798890548493 +1.3563959184837224 2.8092223153121285 1.7361438899992807 4.06234093612454 2.7426077438677394 +1.5913557524334765 3.9537670286607005 4.322286606106019 1.1858595581932683 3.9265967026070085 +3.4242422009898026 2.4415840441822563 2.2276737001078675 3.4805858057256893 1.5922957632123778 +1.919402403265103 2.2990726118778104 2.233503925596932 3.0077153887010946 0.8622951101043687 +1.8778690801371645 4.823950933602063 1.5039485408377846 4.4695476266666 4.180212461727739 +3.0169077226934293 4.462490379166527 2.82204276424855 2.0376111031790387 1.6447012639333902 +2.5327676026073984 1.5902714395184776 3.702994662205662 1.473411130179099 2.420607721982515 +3.515108725901997 4.036843207476344 1.9710793411332004 1.2046412569249045 0.9271646057677867 +4.9551029548846355 4.536039453709632 2.0375434068474734 3.5704067664531633 1.589114312199942 +4.83545371833511 4.306144059933491 2.965293904782565 1.2490651822085113 1.795998257979502 +4.7670859974738 1.2998932526979292 3.718627007170159 1.5514840208771674 4.088757054713001 +4.328434143478635 3.606204238781402 2.379598605216831 3.705288095277731 1.5096584578297514 +2.7947803860072713 4.773772527863098 4.213725188422174 3.4242930823878863 2.1306367469760876 +2.8896890524124577 1.6673931865654077 1.9205236114334392 4.485126283766359 2.8409846973547643 +3.681863479125565 4.523203700015146 1.428847636729298 3.6202691978270014 2.3473776487243003 +3.090187839212443 4.71273075158743 1.1455063090275583 3.065824460954137 2.5140141819641784 +4.577302388171558 3.772346228527586 1.9591831316934805 4.633631765787532 2.7929607794160507 +4.125345768578214 4.979679662423619 4.336047238559596 2.0942691012365033 2.399053067181476 +1.4865002904429008 1.90643958722423 3.8745760866688723 3.7925431377819714 0.4278766383950848 +2.91166799026592 4.357835931291881 2.2432770764571908 1.6085231422029298 1.5793398211602623 +3.486610465241853 4.92524917114079 2.3903664804228866 2.6993146256295995 1.4714381680985573 +3.283349589538972 4.550139256248529 2.808924953874864 4.397528853061409 2.031850980803662 +1.6503325363455024 4.182291142786369 2.0182834285029965 3.2448401830293845 2.8134064506935856 +1.554895349724442 1.232140894598702 1.4616611313233787 1.2806110581495176 0.3700669767755207 +2.6876214975479447 3.842654449762742 1.1563290800062491 2.490171891096922 1.7644369542152247 +2.6472827483186716 1.1857726217859144 2.485975216370959 3.219886563613257 1.6354319660471361 +3.5509427627559265 1.250282560492519 1.1871231232803066 2.0222646503982395 2.4475495371075895 +3.8753467638874675 1.503700887616612 3.677332843636422 3.923769697718897 2.384415082464171 +1.5819899176264447 2.424922535658156 4.437428368179769 4.628821070137352 0.864387971286285 +1.4257871664865105 3.4243752343782137 3.7593914896413563 3.8262309985775618 1.9997054245748107 +1.074784444507646 3.4390149027513 1.2340750468141213 2.11153776782479 2.5218101606684127 +1.8047245693386746 2.1706616266208085 4.124748537371083 3.456912782724658 0.7615211914821989 +2.7645475373992894 2.5044786779739536 1.1597724207342655 4.594572456405636 3.4446316343973336 +4.142727606135554 1.8522205414639479 3.7286010709113104 4.969248737916601 2.6049240386153696 +2.2790719155552126 3.8865924226728144 1.6600026551173115 1.8519396747389472 1.6189385412377049 +3.33277488270741 2.5593691628085367 1.8273708028701043 3.119509586578322 1.5059146868050812 +1.3026724785354689 4.6655566348013995 2.0331548532169945 2.047876622015226 3.3629163800102093 +1.491938199141512 4.081583264294627 1.0807727441371608 3.5483927368557384 3.577067233354206 +2.723894652754848 3.0098267591425683 2.137611597270779 3.445286894136107 1.3385708242357373 +3.5101429500522725 2.1068234298041113 1.4611785666080919 1.2755130157367858 1.4155484353033898 +3.4283647445326006 3.881598776339598 3.0115960361204666 2.7329829544485067 0.5320209928816458 +4.762484757446441 4.759611325823967 1.2717294932905063 2.2458587859010546 0.9741335305445636 +2.094624813394239 1.2425605113832239 1.6702679113216647 1.5424818315088702 0.8615932085128344 +3.6134888462956027 1.2792655256730336 1.0927514524481987 3.170035251047997 3.124693023396612 +3.261780637429645 1.440697164584678 3.4526101395293463 2.7762518510975696 1.9426285155426521 +2.786268052367246 2.3206216791870844 4.45229850747268 1.1674810745196575 3.3176576243922336 +3.89345593740517 2.6335053535086437 1.3976683388090896 1.3614366909134508 1.2604714221950575 +4.150670211857785 3.8060698475241472 2.3404972506592747 1.6402575136717306 0.780439043330907 +2.663407812910304 4.495897473226602 3.2259016100701983 1.8654606750910183 2.282283482114605 +1.8026742537830258 4.148979123162791 3.6765171076034995 4.640086690113483 2.536456757055728 +3.02560855842214 4.627609223983853 3.3272087658977814 4.595493577446506 2.043270049617856 +2.224093663088949 1.8246118969508829 4.881118875543244 2.10255646244904 2.807132837066439 +3.625710659452136 3.17006822723921 4.0822999323121305 4.1592574755247185 0.4620957579227801 +1.0390441503766072 2.1459748480244563 1.2741033348663113 3.3860871145047406 2.384485490593512 +2.2180137445823433 4.69671961519485 3.7782573184896044 2.118260295930523 2.983215196380227 +3.159054028956887 2.091532524580597 2.4248193780980256 2.1702498894700804 1.0974551411543483 +4.781114776232351 2.8384832390346326 1.4806215343378284 3.8243149958295284 3.0441281725239686 +1.9543552006508689 4.653858389599811 2.3784216178625157 4.597204138603471 3.4943258779757644 +3.524833601659792 3.6337783329861244 2.9230513870172534 3.9447463117726467 1.027486970114315 +4.387856881950903 4.779787485453221 4.430846882420813 2.9991957370735705 1.484329680339163 +3.9238234540570223 1.044448881293624 4.810486720246151 1.900786638279806 4.093550109290389 +1.9998838696863839 1.3370107020528956 4.125292090215497 3.6864209748878443 0.7949897434793688 +4.987746181308212 2.8986964927497167 4.395864072354481 4.985832456738258 2.1707582306278947 +4.604225608361461 3.9308120802614126 1.1404383552800081 1.4645714504649 0.7473607182761837 +1.225595471081573 4.424230680522275 3.7659681305015953 4.5795107138851066 3.3004725022414716 +3.0748091923047847 1.0887372360973147 4.630978731150463 2.233216029840569 3.1134784063851613 +3.202892729630741 2.8083296947384544 4.409955257835819 3.2288382240565605 1.24527805569155 +3.0271721094873554 4.180515827184449 3.098370277524758 4.29544620372064 1.6622853257576091 +1.07390270784677 4.857608189570632 1.6152973052656519 3.300194697302001 4.141896473128957 +3.738920265886844 3.367366797079703 1.6759493293006673 3.453119716216961 1.815595374612644 +3.5504939074981743 2.399352712437432 4.233912381945024 2.7828661178421594 1.8522044464725687 +3.699347023774912 1.5480875723943406 4.087522175659455 3.2989159199350944 2.291247924979275 +1.3063593921109948 3.887096869821693 2.9280056408082475 3.3020464723715137 2.6077025276164294 +4.288321516825931 2.4488243867974804 3.7223743812674654 3.0443983732590527 1.9604594254454568 +1.3531274773547715 2.512759372197314 1.6869497766251733 1.5797968944186258 1.1645719693094436 +4.635361809660215 4.836584316007038 2.2092921295040866 4.39685248813126 2.196795579861163 +2.433086369901509 1.6726401683141638 1.1120498640720466 3.910915825772199 2.900332583872467 +2.280919934575821 1.2669973512291972 4.233402734459743 2.397288653402638 2.097463688285561 +4.054106619811952 4.020975212735758 3.8200760884357963 4.036874312378144 0.21931520704092725 +2.1597940949521917 2.610305778177148 1.5661110580986652 3.0266969081875783 1.5284867687363657 +4.888299341559673 2.8193980584330114 1.3503665299631695 2.8043902137778756 2.5287422550385075 +2.6151731212853444 4.651397083056319 2.386140412108194 1.8085508115264965 2.1165580004314575 +1.483988871420559 4.763149761814812 2.398977447726635 4.25863447080961 3.7697772332848882 +4.251070862908869 2.06210176137087 3.726679948150367 4.698406100557991 2.3949608436801215 +4.671999971847798 1.0602224794464004 2.758132638939272 3.367574041127083 3.6628343502427154 +4.987762928017672 1.7842732787313835 2.4745866829716063 4.219807695619586 3.6480326637891314 +2.1092289359582153 2.6778540510749895 1.835363096192359 2.800899474037056 1.1205333633957635 +2.0695727257277525 1.7463282800145126 2.483966919804799 1.9511994454558232 0.6231598136984176 +1.8497348894390417 3.515985913970185 1.5076324598406008 2.7471567401239714 2.0767313062028734 +2.7051221251724793 2.2404040742639877 4.80201092309509 3.50986528458002 1.373172683231685 +1.9526496849517994 4.169873971134267 4.054313694965094 4.352902441897364 2.2372390965276683 +2.837297056016036 4.981317031535621 4.426167413170665 1.528226386196644 3.604841723466683 +1.3185293021572595 4.8058932943573005 1.9274367449755054 3.8432469127122846 3.978949134243492 +4.342358409561189 1.1758504743080143 3.258120173519779 4.669646742683663 3.4668688696685503 +3.168953369353754 2.803175048179807 2.231980752754975 1.211931398532717 1.083648681672283 +4.351150780316161 3.637624451074802 4.014447586971023 4.817708621913477 1.0744059348204797 +3.1180375426241063 3.0578522471519327 4.479008750099149 1.0311464237829364 3.4483875784229534 +4.430466069894782 4.113534750623694 3.3993952432829935 3.8125319681873973 0.5206989673502814 +1.6535872383530341 4.066982714557202 1.0632743874848987 3.1484572995278146 3.1894302784727113 +3.6352695011280955 4.936428928894207 2.600378102446813 1.1553045165368747 1.9445445546860691 +4.883673526606138 3.468703983353125 2.331211313346294 1.0785855293152196 1.8897645787645363 +2.436856793632849 4.138303633473518 2.270338992257944 4.617886451953808 2.8992930904495156 +3.5504531192464115 3.796077541501602 3.1146758240665053 1.0817501951276123 2.047710421325435 +3.7667625063759846 3.2430012837746953 2.84551320168784 3.9135798545103953 1.1895764763866061 +1.2394396652809245 2.4068030994791165 3.4072006073128005 3.249312028738042 1.1779924408702096 +1.5811881927841407 3.0804609423675955 4.4347872068372585 2.2232593482397913 2.671829756364771 +4.309026444877253 3.8517867272213593 4.216835456898348 4.0338678675741235 0.49248888124013435 +3.3582893027517358 4.8517905657043245 2.7932801174877446 3.4819210288075237 1.644619204309713 +2.069882045041135 3.6645122909290353 4.5313060231757 4.720451538956347 1.605808720626598 +2.7627021105020226 4.297031503444796 3.40099678549951 2.3530224638894173 1.8580680463326076 +2.344311789983725 1.3615264967230436 3.578291467756129 3.8224533975506745 1.0126608418471013 +1.2828563489997635 3.732566324447483 1.2420726263136372 4.726616273224153 4.259474544005692 +2.9363015572753413 1.4370306472748946 3.1546532015874194 2.086392088295269 1.8409223415847156 +4.298235608505131 1.1796415908794589 1.012767294667547 2.868060202327138 3.6287381305327906 +3.3018094990810347 2.3554971796243183 3.2799598802326857 4.70931049099512 1.7142199900953474 +3.4849633706413914 3.5778018745571964 1.5190832169491273 1.5929028483373897 0.11860997339019974 +1.6697810065477583 4.618680711179504 1.9641890064282497 2.093274415602842 2.951723650824882 +2.2964437519051852 2.456381358039125 4.989934221379727 2.806111658294275 2.1896714422252868 +1.870175242866717 1.7420499099820397 4.271445597830731 4.381426321447158 0.1688545542589906 +2.482566817701914 2.1791400556096785 3.024232943822058 1.6178688519707976 1.4387243512231236 +1.5364434821925612 2.7126812710610597 3.098360646491383 2.7994256767297383 1.2136298661901206 +3.6802401858758733 4.11553264310228 1.9430366446315723 1.662378424819635 0.5179271760259435 +3.9135517410956764 4.93809596071733 2.4561920174960745 2.717463280152753 1.0573332164697933 +1.3686707894669885 4.092839170271518 2.339002058381942 4.9774358961203955 3.7924169711542053 +2.0446392660828256 2.062473680791034 3.9407588346701123 3.855016010700554 0.08757795504725484 +2.0351698005895824 3.2774841159665007 2.5796745264898 3.397496303380225 1.4873390053873505 +3.852417937937863 3.866591645949868 2.3855109258343306 2.46594944653805 0.0816777179640338 +2.9056844054286066 4.835317686223593 3.6959003251108995 4.2907420000877945 2.019237781104777 +1.987022407534068 1.6939740686973823 1.9589957755402558 2.561829963916413 0.6702882869109983 +2.7816198653319835 2.1501933117206518 1.3618975394819062 3.4915421136641105 2.2212801500371775 +1.639186499600787 1.1332264488048578 3.4463895812150005 2.7015834834372887 0.9004064061790552 +3.0336703832398966 1.7074564932839489 3.159252363808867 1.093383533934221 2.4549251117212774 +4.676304220038993 2.5051595302534055 4.6703866108983405 4.311998411303092 2.200525247660949 +4.5527368446724115 3.8894185770716407 2.384316122371338 3.3376563780481177 1.1613994864932373 +1.590781561419826 1.9511085806212378 3.6649605667410894 1.3413999393215978 2.3513335684374166 +3.243704764004944 2.6864819844305785 2.595072962375026 4.605313949400932 2.0860407599075024 +1.5077456144187211 3.8642026351481706 4.0295751973722105 2.885764337391499 2.6193879006277263 +3.520449651438528 3.9830288143493764 4.81330586914497 2.9888414291148164 1.8821928633627965 +1.0200444384792307 4.373099586992897 4.125895501700832 3.170744253429585 3.48644413924103 +4.9054229223173 1.198529830412142 4.95333478162228 3.7640290014028213 3.893007145341194 +4.893119420823126 4.197490801447632 4.1669878187930465 4.764987169348993 0.9173343988751267 +1.4704406707196491 4.647987314192567 3.4508900580565642 4.122593287308339 3.2477666017793316 +2.9972429362963084 1.9433332953023332 2.671525654273869 3.6345811934239842 1.427655946952125 +1.8249917107837033 2.8980418275412374 4.885941965768559 4.73339269052098 1.0838393951374528 +1.8788712220859773 2.002325109552874 1.6566656869102645 4.830150326503598 3.1758850136718615 +4.059353325932467 4.0492442585463575 1.5881664213280366 4.959910758177014 3.371759491173202 +4.652996553969313 1.4712614104172452 4.586471095561923 4.913390911781077 3.198486374826546 +4.776079373162229 2.766520281084768 1.3868967848342533 4.633930084390696 3.8185799707456156 +2.368114923479198 1.25318599762746 2.332274945886299 4.170817043297695 2.150186864822405 +3.451018035143727 4.14909249949009 4.821759929283093 1.8188762184335214 3.082956136350006 +3.4019607605673157 3.3866713362898637 3.0347374157067533 2.228218751653839 0.8066635742119718 +3.5978269816060977 2.3355626079926193 2.957673667983648 3.501648264505687 1.3744888906626862 +1.3079388826916833 3.427472419532941 1.3504203291676986 4.996008071248779 4.216957718427663 +3.2258225787575183 2.9011652781859407 1.8121927341244044 1.1061871596892754 0.7770754364589709 +1.7553633792119836 1.6901772724779631 4.545432786068152 4.461105792919501 0.10658456869843673 +3.3294871056366784 3.9348267654780313 4.258572561709826 4.558841432027982 0.6757199850966277 +4.831598077952282 2.590543993524095 2.4242464705526463 3.875218955564804 2.6697648888234737 +1.6567350076769496 3.0981431394903316 2.4533457140964763 4.750372447079024 2.711823964510643 +1.8578219926925796 3.410294721876913 2.2728967408577736 1.4348329085049376 1.7642342707132108 +3.959386017885066 2.5743797641580985 1.2173567185627112 4.147238008857151 3.240747860923497 +4.832768696212522 1.7117125343812774 3.9740649129475245 1.0761779851421638 4.258959991787898 +2.9042979682358427 3.4106734240431 3.353118577234881 4.281238895002373 1.0572716900101113 +1.4385421263935179 4.665172989819926 3.426552853232266 3.6024972453610853 3.2314243234118023 +4.240456866799748 1.7413164614934455 1.7803461428271223 1.5562851047292225 2.5091644255066385 +2.9064434074151406 4.589511589410149 4.741470125668405 4.914797944689815 1.6919695736303006 +4.538259312690688 3.0521687937177955 4.6750363535747645 1.3131613648478218 3.675686122400674 +1.6301594219128313 3.707356878097079 2.5185317082686423 2.7730548003757747 2.0927329682484777 +3.822251114175013 2.126254522655179 2.1179582217226014 1.6012895561838412 1.7729497873308477 +4.031297827236532 3.5961437752988963 2.1833152508679667 1.8222919426274604 0.5654174369531437 +2.350833137151297 4.502831855956632 3.3752029503640144 3.3891588909813417 2.1520439712093054 +2.7615652720767447 1.2011476519290936 3.924042535697101 4.956538140470148 1.8710826606921775 +4.458105647124168 3.932404142019154 4.903297757789654 4.09650947727641 0.9629482862766804 +1.5612626857645795 3.8785966413447186 3.398631679157321 3.2493777227440277 2.3221355268781614 +2.066343573450681 3.931931797681378 1.200350373214671 4.896119122884306 4.139942762095015 +1.6966720481439204 2.6994142734810445 2.8661441698804877 2.1747418370999005 1.2180021166847312 +1.7344053727786188 1.30525698749415 2.079365860435596 1.6454699919282798 0.6102736773776049 +2.9446418363254097 2.131363721807848 3.5507542051377294 4.948020922170544 1.6167175294654597 +4.800905200480139 4.434400004118035 1.8073304348574397 3.5312281511909545 1.7624271319235674 +1.5515050871586125 1.2971989543974547 3.5213739323493445 1.5224452610047523 2.0150403078557493 +1.3272480098082506 2.2400876820846984 1.653403197301468 1.178567458596965 1.0289534712672015 +1.0007682058122533 3.217266698606913 4.342994829114214 3.6482754715382724 2.32282167941315 +4.014834573805372 1.171916824855705 1.4212566666592745 2.7879612202559465 3.1543719920318396 +3.575267443844849 4.9878515027708 3.6812270127365614 1.2231050161619574 2.8350939091281675 +3.3017261716376907 3.396501866851392 4.788050205949251 1.7631199204954942 3.0264146550429247 +1.535762610010857 4.435107119662236 3.091780419666428 1.603206638323266 3.2591487367329335 +2.674414283648223 2.7018870119033167 3.861442294936856 1.2201441666333968 2.6414409994124677 +1.5807259625318082 3.0490155248746547 1.1279202231465666 2.9568028511440496 2.3453541109768326 +3.2276217953421686 3.115602680024921 2.9867929703738065 2.0699894348034107 0.9236216785193151 +2.0144606389928215 4.136133152748204 4.628062214384373 3.299893247610231 2.5031034856607466 +2.1259082876451196 3.88634505395549 2.271812814116211 4.051790293760648 2.5034890525462012 +4.492350542357455 3.1071801422626373 4.905890567162755 2.531967360495538 2.7484920280859466 +4.973610548213465 3.511350974200798 2.509774760398621 1.981176975688014 1.554869344926662 +4.658637156897202 2.6904101709244936 1.7676614686532628 3.5706320082279674 2.669198425536309 +2.5279710514331923 4.732804170818451 4.215099090088745 3.77620807534603 2.2480912808780737 +4.855560522253782 1.3539469936195 1.1490063500576762 1.8259225234946816 3.5664425986934414 +1.8010082662650198 2.216461942330302 2.0544210835750545 2.948868766302414 0.9862243223995745 +3.9034618889643498 4.554882298300589 1.8408395318337658 4.975371889668073 3.2015061536736265 +4.059007225273424 2.8224721090391545 1.1732133652886105 4.522464467813636 3.570224368502013 +2.3621888296582734 3.5764955539894583 4.415916371691636 3.7043826963449917 1.407416424484323 +4.643241075512689 2.1204241815265052 3.201527918418611 4.337017609286843 2.7665758472613993 +1.1945547630814874 1.621511265042824 4.909670611138816 3.503852754277237 1.4692228221879569 +4.701453423788444 4.055468674068546 1.3248155668568922 3.8963973674886954 2.651476806274456 +3.789339543303243 3.124082992609136 2.183155536180317 4.788282379854405 2.6887268641259823 +1.6425295860898692 1.4869519463388374 4.980470045250776 3.710163986492633 1.2797975952892506 +4.723168355604322 2.9752489346002755 4.179467555726505 1.2193127532905423 3.437693813693682 +2.377748335509351 1.358490008541081 4.571277901926495 2.379124627584276 2.417524253302015 +1.209878337522881 3.176794744022247 3.935159979582866 3.4262494649698776 2.031686506831218 +4.393219883285904 3.608312649144632 4.937560708158816 1.1335694159546148 3.884125270556125 +2.4279707398795556 4.903421175616253 1.1953864636260652 1.3274244635269064 2.4789693207473986 +2.0353709610202233 1.013772123862473 2.6497596109118335 4.9386287584596475 2.5065087589470587 +1.031025605012713 3.9117171770745145 3.074049036733029 1.182005491338419 3.446478305606652 +2.5902510484252876 4.398336125610275 2.905072278111647 2.001919128157827 2.0211029807039886 +2.7390498065308493 2.1840765491589678 4.590575862322101 4.807666572326981 0.595922556015779 +3.0891880036195825 4.846432050791369 1.1589718610776005 4.598038929199978 3.862005818271708 +1.5603953385630454 2.411164333436072 1.251802242149318 1.3445919173243386 0.8558141191031764 +3.7095472064887445 2.266409326534109 1.4892962917903771 2.477046997103258 1.748799129804808 +2.840464908519162 2.101689269726805 2.028732963890748 2.874625434137726 1.1230866020452699 +1.845067673331919 3.6836065298869247 4.652047917733018 2.8753057587118165 2.556763154206097 +1.6667626673645102 4.505834110995899 3.1221997981532668 2.702488195667198 2.869927610812621 +1.61686969677341 2.952250613486438 4.041983039948492 1.2930544587192383 3.0561169050643993 +2.2638282415900766 2.9382518071946775 4.489625323842217 3.811554585313511 0.9563613711833453 +3.14141569341956 3.1975450003128016 2.2019110395265993 1.5886310691202068 0.6158431790593945 +1.4342384500092127 4.350343015073128 1.6333164160578706 4.904780559697059 4.38248142922517 +1.4348334766580368 1.1106087394453903 2.69623441368017 1.8953129620694278 0.8640583613801028 +4.119173838929768 4.224969531527435 1.4612887117125717 3.097319802676674 1.6394482178993672 +4.621379572513018 4.24106842856365 3.7167509771924063 3.6076149135812265 0.3956605193756641 +2.2728125725370774 3.3912175767127137 2.131360320627024 4.3503759267198365 2.484926560976915 +1.1558030311757959 1.0125341198504052 4.208319271332737 1.8713232234673987 2.3413834604119366 +1.2087549234016643 1.0225919990080312 4.46831799822223 1.1195637361859117 3.353924826516718 +2.5132446678941136 1.9416395998947191 4.21173440505711 3.036511654068119 1.3068591615796725 +4.39698237176245 1.5251109272493268 2.9769067776500613 2.381158854584238 2.9330123050623453 +3.4276826756789207 1.404288197990351 1.0971530396753586 4.636970226047426 4.077306822557712 +2.0607359835490047 1.7849524162977781 1.0544611862967264 1.6722197547859436 0.6765221540405449 +4.168289400080427 4.200086008923625 1.649188538681249 2.143817863500021 0.4956502731812035 +3.685628823338123 4.650895725965459 2.5589491087970715 1.3203488547947426 1.5703091359736796 +4.195985292726279 3.110401000717763 2.8065186540529163 3.6776733648846998 1.3919065289235621 +4.226024834114337 4.178900331724007 2.001203144545543 3.031958738816243 1.031832260518094 +4.364852688132361 1.7833727110874706 1.53458661470926 4.2201580301275525 3.725094991969399 +1.4731790525421111 3.498621945907816 4.812052346695506 4.434608194909012 2.0603113847191796 +2.2619811226142668 1.6488156394087214 2.322450098639679 1.6110755222651045 0.939162231835797 +1.6058367961445805 2.021490543963089 3.5794593416410825 1.634422875036945 1.9889532157633776 +2.7548997305517386 1.7317361499770079 3.8847000470934594 3.877259249505134 1.0231906362370866 +3.2505379227267115 3.0551048421618217 3.873514242640969 4.8027684388138185 0.9495827768467218 +3.7943812484288566 1.8970094720727344 1.0761230111613327 4.633729637654399 4.031945506400125 +2.0342055163692323 3.769524440612236 3.3772487100968864 3.8822127914103004 1.8072964594256793 +2.993237495011526 3.3184327962741347 3.439685572894726 1.8637996366393104 1.6090893287977792 +3.642855133318389 2.9021086969865335 4.691644574129442 4.083596560586038 0.9583463203416724 +1.2157231645070392 3.1197671844061508 3.892926252180016 2.3867141732113235 2.427768204863215 +3.51946027126195 1.3477625419362065 3.6931106569315566 3.3207518169299317 2.2033887839611843 +4.980563711964261 2.786569747145189 2.878661486461277 4.3399604783447305 2.6360964059271637 +3.0337629009427594 3.829451240206132 2.4112053969869542 4.993281230684335 2.7018948062801647 +3.9531348179863617 1.8184497389447185 2.7285460519448352 1.0118401960112609 2.739335573178221 +1.8887065715467979 4.787450266057131 4.983577235317682 1.921764445884949 4.216326904308686 +3.7054965498293657 3.121208546426352 3.542800095637163 4.535288119305653 1.1517052348782937 +4.3663443932711825 1.7612277660526017 1.1546638732909824 4.291761572811427 4.077746266965023 +4.411168706312729 4.371313457891178 2.691408693654683 3.912806135026228 1.222047523877734 +1.285319491518623 3.9502405853630527 4.343787211375723 2.6308277455750066 3.167970102114802 +1.956989884932046 3.3971139915736694 1.8381901361132846 4.738351647528228 3.2380386401065295 +4.442547591684733 2.714629559446876 4.777709320227131 3.2721967640220977 2.2917828830462454 +1.2629140341854206 4.207317080197338 4.897213481832867 2.541059673000678 3.7710701489416354 +3.034690407111972 4.654590967717817 3.2096345004886166 4.085463744358972 1.8415088081976823 +1.4270011155790359 3.6466930661793966 1.387149106112512 3.5962757098867417 3.1316565435984667 +3.10964783385169 2.691917489995246 2.060143037511373 4.034840348097019 2.0183974109705463 +3.115344547669632 2.486989347609125 2.3310252475416897 2.149708276932435 0.6539924321228782 +1.2040988219989708 1.4058883364716728 1.1361093558340896 3.0688803134399274 1.9432762497173983 +3.579027535341962 1.6946547042465676 3.8140045906264994 1.986424689553838 2.625054144465449 +2.2639993828584064 1.8376400929985914 2.9921434398033795 1.2773523846931272 1.7670004546507334 +3.5766737123099364 2.3337615845985638 1.4656203237654153 4.765872272993057 3.5265412922001724 +3.21568693135866 3.559120874137644 3.4148591721458157 2.6593689269478245 0.8298869704014153 +3.7352427200108536 2.816599725147987 3.271479526177927 2.6434853662537563 1.1127810282843078 +2.651598638200018 4.141122486608362 1.0336241113348548 1.2985936815752472 1.5129078518305668 +1.7860413443527334 4.712244959079605 2.856992199107086 1.6162242410798577 3.178391530398303 +4.169286366748944 3.619157332380615 2.27026069551473 4.0690313379873855 1.8810150926232674 +2.530581280301265 1.6162879317648389 3.2480634358119285 2.917738542748295 0.9721352077542772 +4.453120989588092 4.159518383330427 1.9533659089297224 3.1869614825022032 1.268053835426127 +4.423787635111898 4.074849599935746 1.6014533689350081 1.4348691449642552 0.38666271616039166 +1.0236293458662438 3.8128521659607952 1.2239451662660694 4.086419788476185 3.9966892427274288 +1.6217035251050782 1.9939857951997242 2.4028301393119755 2.78937224282471 0.536664593964305 +4.183654239883187 4.115358411088936 2.777536054373593 1.4292997190234353 1.3499650129500087 +1.8801457924263172 2.3750126295848855 3.3574965052240504 2.7141721866364548 0.8116399234916424 +2.824213399001938 3.967071607554319 2.584282139732159 1.308862408758578 1.712547919041181 +4.0981914330227704 3.0842837297189676 1.325577919146986 4.47228769988709 3.306023483737559 +1.5365994372884404 3.1462282251417273 4.603693579997177 3.240869015622173 2.1090745904187367 +1.7054824615074056 1.6249393603743827 3.406668511028104 3.883474172040077 0.4835605748126999 +4.623773415348081 4.605239892844998 4.601807055411983 4.327770969028442 0.27466209803462194 +2.54619395714997 4.4781358198190695 1.5853477311878197 3.430640567451528 2.67161093954556 +4.881933630288035 2.63225645383017 3.461486759953582 3.259676441893887 2.2587108718804156 +1.4463078734225343 2.3995108603808264 4.62982992327148 2.194858835153699 2.614895817105473 +1.3975349870735299 2.822612625299284 3.293162145336012 2.3543749599276533 1.7065074434229817 +4.6224975878647925 4.446358775371822 4.622681673391191 4.431810339606651 0.2597243679886875 +4.621756253376578 1.1835331101645306 3.2753333736581194 2.04772718262594 3.6508074918816886 +4.024937202597226 2.4251327866812336 2.916560956549217 2.157381899908049 1.7707984101040082 +4.563948785463783 4.728546887152612 4.301531838955551 3.329919703727792 0.9854555679488607 +3.7669583127833244 4.427258909260585 4.697485321205928 1.9485574455967294 2.8271189120745395 +2.3972667574526434 2.880498046879324 1.0676094699247658 2.1941288211459025 1.2257888593704314 +1.3441454555423076 4.045542159798752 3.370674482878526 4.2390358818210725 2.837533378295494 +2.0007206708685494 1.8692014377574884 1.5034159653088617 1.2529967325833797 0.28285526475026185 +4.723472360472641 2.5065447999451873 1.7383784197666539 2.008804398346378 2.233360252739582 +4.702213467905807 2.098777616384509 1.1277597830810095 2.944099821548247 3.174424257771099 +4.727409531572235 1.4625285481096175 1.0354031835504967 4.3729416204191605 4.6688982269644255 +1.0307697777340241 1.7621972153097767 1.7314245982230894 3.647410982528042 2.050851023668125 +4.371152509788049 2.0341103653177846 1.436392837762798 3.0837851926291058 2.8593124271233687 +4.196187191793288 2.540978989747984 4.884325610444089 1.7230629536537019 3.5683743886166797 +2.3848891608645078 3.609870019556568 3.8701767083815355 3.9821078215606343 1.2300840126834627 +1.207643474562183 2.7097152791124457 2.993204153655996 1.4225007871822664 2.1733220588483406 +1.2097603827530623 2.9565279440590317 2.2301342539248212 3.0334055140654024 1.9226132295910794 +3.0673932035550893 1.6862415810944609 2.7574422805900634 3.3222646868313532 1.4921810060504814 +1.603786283411622 4.882446101171208 1.5726549785470056 4.709780699944621 4.537749220973525 +2.6817484201152437 4.116287110612719 3.470470104670633 3.1495521538857285 1.469996457706682 +1.2752605360063565 2.6497678530032975 1.532529933103429 4.915688521172877 3.6517163630964258 +1.6648121211483216 3.225900220717585 3.2935328789882283 4.392961100512382 1.9093816980636789 +4.0941301409425 1.404843753923878 1.575812570608738 1.040230573813099 2.7420994414308315 +1.0667461577798285 1.2150637014009371 3.9680269694307153 3.7333712785336477 0.27759932819835786 +1.6777780758347132 3.340428991208353 1.3864469687081087 4.8254557998305465 3.8198415944814936 +2.230073584700483 3.4281938926099125 2.635358082246693 2.1473731450476428 1.293685267427185 +2.384969989552818 1.7460002976210234 4.328136990101546 2.233452251395356 2.189974068745115 +2.6788551164024477 2.823572394548454 4.296509285265467 1.7068199305965224 2.5937297554447807 +3.2006389138490134 2.677015227894557 2.438082207769775 1.876998850243909 0.7674609427098098 +1.5292019998645632 1.8434074225534336 3.5657074146555923 4.408721903527695 0.89966575798759 +1.3318302016887702 2.832037982050495 2.235925501157408 2.958892860616458 1.6653243489185654 +4.352565331669229 3.943686652130955 1.8058700898491993 4.399584582627522 2.6257449694571013 +1.6678843058708805 4.731304210580913 3.5868526312203945 4.235790982108945 3.1313994468651836 +1.9953216054921712 3.352606105658248 4.836111038468667 1.9900484899855182 3.153140219569925 +4.910984809559695 3.9821517464913376 3.117523827048739 3.687918054251542 1.0899910244929678 +2.00693754220982 1.4965601151768806 1.698301398772426 1.9439305014028196 0.566408663496398 +1.6106532347814153 2.1782687811529713 1.6378640299769276 1.6984382726032368 0.5708385475354927 +3.3650342703548253 4.979758093325621 4.125469937816955 3.607473058266055 1.6957752774745514 +2.2472848775960026 3.6201197291187284 4.560322458546141 1.2783382444591944 3.5575407110912076 +1.769294523063706 3.473974395706128 3.232705661787864 3.230378952666574 1.7046814604985645 +1.649076479197531 4.638588356189339 3.623816847824578 1.3526860348891754 3.7543596567377113 +4.767625922111523 2.519478162517791 4.730883423641695 4.4659284699902155 2.2637070208909043 +3.2837583901705525 1.0412958208695011 2.3068012266492013 1.0631562274019961 2.5642330742092954 +3.779552895033767 2.7326758477517648 3.501766996041631 1.9852468161630341 1.8427655868571278 +3.8629915631785527 2.4910375561208604 3.205779321603687 1.6337164001126463 2.086537712721389 +2.6003860274863686 2.973730545278671 1.3246681496456234 2.645021253841239 1.3721218782326026 +3.9846482620157126 4.659502322889473 1.0080716872199877 4.334337172004505 3.3940344840243726 +2.5099001034119386 2.967147599246263 2.9286493198055665 4.450251248062845 1.5888195934476097 +2.446915508714154 2.8899744572480968 1.9739998677644728 3.4515615479712247 1.5425594804387295 +2.7115788221032178 4.246235653602545 1.657591906223439 3.1583466546646433 2.1464939798276577 +1.6401841390184169 3.8970581667225224 3.040390051052247 1.1652407951410515 2.934223084373385 +3.718210061730813 4.809925739874793 3.942198912182378 4.496314377772819 1.2242904357675437 +1.4390506965705034 2.264082475204153 2.596399649959294 2.148712607463732 0.9386698694289843 +3.550684386407805 3.8315515156659434 4.53377948761871 3.76391748209325 0.8194960962990557 +2.205538459497293 4.55107247771504 3.1355902285265946 3.601717681475588 2.391402231538937 +2.568066276545384 2.421536307636901 3.172283083087756 4.542997422952441 1.3785241504228352 +1.9844067414264792 2.4365481586217266 2.822374451059858 4.9370932487725 2.162514151293011 +3.0680717784477243 3.104251040396436 2.4704402797725558 3.6060788425936163 1.136214717543052 +1.75478748149045 1.0154569528223565 1.8210234445023028 4.165645117683604 2.4584264115429866 +1.0455732205206587 4.528472925094476 3.3096595009408434 3.4782229287565367 3.486976337934825 +3.50517643400113 2.874885192714574 1.8381146454089423 4.7718059538074655 3.0006352230512103 +1.9698599526758263 3.1513521678106904 1.763732828520753 3.1085031289570386 1.790064528267008 +3.934642680917991 3.0925313964863776 4.42448734376187 4.385501245299006 0.8430132449970272 +4.53769567052858 2.6804002034139405 4.934084124226434 2.8405821625071814 2.798624111217322 +2.1672302265907115 3.6808171172384987 3.3595633407460532 1.0374666185325774 2.7718366587617327 +2.3085895092997233 1.5708849043318267 1.994698794353 1.7608905605060143 0.7738697399469028 +4.526593149824736 2.842732415753734 1.1319429777572299 3.747918217876037 3.1110630705051263 +3.4169887794507696 3.429587138501724 4.166723291730598 2.3322533170366198 1.8345132342680175 +1.706011272041545 3.762974617466925 1.3449372969043276 3.6341195490058555 3.0775726779005876 +2.7232487187437253 1.3511779705094513 1.4531662881855505 3.488639988115351 2.454736507502602 +3.4600334598125717 1.319812839157808 4.934347057174438 3.9354937787473876 2.3618323769692737 +1.9865414012948825 3.80965358827073 2.236848975699741 2.159473650839382 1.8247534044897964 +3.439627896622298 1.774225678246503 3.5921768429231893 3.5498866669789346 1.6659390769029987 +4.618351568241014 3.4014388053666806 4.1336685644146 2.07222325916947 2.3938323706900673 +4.650439158892718 4.626800861929503 4.335873918325559 4.913355399792472 0.577965077249951 +1.0887207038083755 3.9516040266169754 4.601115275979309 4.6750743497228395 2.863838484378023 +2.8104021778282533 3.162953568159424 4.239299168723011 3.3316740640579403 0.9736918472713639 +1.5864498900797228 1.1065572142023523 4.8416331213327695 4.264388417261161 0.7506719847839414 +3.140461461387131 4.8808773724553465 3.8345271344583227 4.0431424600560835 1.752874181900591 +4.73303741506678 2.5880088355846933 3.38263512883644 1.4455954204926318 2.89020249091575 +1.4817529354274726 3.7316328086689032 3.0310553047933184 1.0586328766183972 2.992057766685718 +2.982915499368381 3.6321197833067678 4.1209036618586 4.228997431003793 0.6581416756382836 +2.1785694592442018 2.5877409357633705 4.5942836324562215 1.1456911944433354 3.4727814645780026 +4.581244491183609 2.5361149983842926 4.427578146746361 3.9519684941258117 2.099704546831156 +4.2980478924159 4.827926683288213 4.612703616079026 1.0728509737815068 3.5792915866407182 +3.253646608784599 2.751988094267998 4.768590605190685 3.7838335326098718 1.1051731797256643 +4.284600275497877 3.4961425030814017 3.8223749615985345 4.317318488553177 0.9309321961121826 +1.364770180681921 1.2158533777052698 4.8853058355182 2.7474988569438636 2.1429873755694224 +2.754310615716269 3.762393564617576 4.772188631439527 1.1345714270505702 3.7747172288175554 +4.96424080679873 4.003935838434633 4.038264749722647 1.2747714365890301 2.9255906965942766 +2.7708280180557123 1.1341056765629496 4.138488224769837 3.404984305531178 1.7935685163048625 +2.440456667644104 3.8625926088727907 4.165591815355471 4.680314813726352 1.5124187252167676 +1.4455652690723602 2.5413110416324916 3.038913524903835 1.3244385396851093 2.0347194580639734 +4.078234448591282 3.4293225757980657 4.036508801834973 4.616838460265391 0.8705567937279933 +2.433504683375977 1.039832935091729 4.979443865307855 1.6901429376814265 3.5723691766739 +3.5806489147527585 4.821055258841903 1.276712134659037 1.6780092942241334 1.303705223097465 +1.7964351242983914 3.8456019734144498 4.435563613978257 1.2943471122025056 3.7505100835145773 +2.243196595187284 3.340900246075914 3.325981037369526 2.7155784962212404 1.2560034105903182 +1.8479097005136067 3.468435423499802 3.992962701509022 2.9884639684226175 1.9065994135192956 +4.111086119663705 2.4011295780372013 2.919768790564212 2.2173972962687034 1.8485878638166426 +4.227896495156858 1.9265264721239208 2.77930720702235 4.514940570817142 2.8824862803545566 +1.4744485301732917 3.3591986001210388 3.1011867635777643 4.0896240935733115 2.128213142872857 +4.0106525680595375 3.0358586866044672 4.059690399879513 4.614851587236609 1.1217963519596514 +1.3960169141042318 1.4318971304467292 2.8207554980006644 1.8771766940162027 0.9442607421965247 +3.8737382411848627 2.1894861081199757 3.269503868667621 4.840002116187524 2.3028612622554374 +3.163831418009383 1.079429798124273 2.099425369219342 2.3191282594259945 2.0959483469171722 +3.852953107034264 4.2896489830409585 3.9304670673166533 1.1505354409557902 2.81402258970368 +3.3429198305103527 2.013198294566413 3.331349835132846 4.959607682859402 2.102232856235538 +2.1564468977240736 3.6986425591693646 3.487685296419483 3.4757836381546676 1.5422415853718026 +3.991239904040331 2.52493929804848 3.684904069712727 2.374149370185773 1.9667524881042007 +2.147967396706958 4.676050748665793 4.024695396948317 4.339111745875201 2.547560220078013 +3.7788830356482768 4.250954880676463 3.1639321093864603 3.5792795299927533 0.6287808097203803 +4.127889013736168 3.874172197504122 3.328012196257478 1.8990287743202394 1.451332437110942 +2.190283109764719 3.900604037399184 2.9360494930822423 1.9219273419142922 1.9883765772594306 +2.0869002760055744 1.3344264062732782 1.1027831670835888 3.0545473027928653 2.0917935285469444 +2.1443604470695505 2.399542229938517 1.4219049428322617 3.4772065032275856 2.071082385244884 +1.021359647640025 1.7448001913631357 3.521710276520062 3.696059010978308 0.7441530094742491 +3.82993318822068 3.8896282879175823 4.441992309936131 2.183753355834508 2.2590278171704337 +1.5848279114774777 2.104473851786969 3.8041546526855496 2.0780559714085975 1.8026226895238417 +2.98396929169917 2.840408209240091 1.1509861808846171 1.682379827454743 0.5504443586884312 +4.963547175375663 2.6896421819000116 4.459376791065524 1.1301432371425912 4.031679547771601 +3.554787768500674 4.094736585108759 2.813177415506429 4.994585151213437 2.247239291655174 +2.6413418930289105 3.590136130694952 1.3647475291467206 1.5080275936898748 0.9595518132564678 +4.135195495924277 3.0807093205337064 2.748515821878376 1.7717014258205923 1.437396068742212 +3.537896098339303 4.127936777186317 2.0072840732409087 2.7314410656016164 0.9341045724538294 +1.8652299454188648 4.281627035244368 1.7261786878705223 2.5249364868704465 2.5449929110275264 +1.6030897919337632 1.3714708574724135 4.398454590330202 2.839269085698678 1.5762952669643049 +3.519764552108938 4.6748489696355415 2.3977063279596216 2.27923890443303 1.1611436354085578 +4.503459899855681 2.1188452334237784 4.365351985234497 2.3360633483416198 3.1311977706917022 +3.1706750042958536 2.7162358355505964 2.747020064738379 2.1386171689494113 0.7593872804401466 +1.5906498693688387 2.2397131141268587 4.375950763962729 4.254225384035333 0.6603788032745133 +2.51686586107218 4.37727747965152 4.934882596438678 4.317155625789008 1.9602851835416748 +4.917956785535262 4.897471864366631 2.0223497853967167 4.667015752518209 2.644745301469679 +1.4354399017240098 2.6637058330697347 4.784704448451812 3.070030403000697 2.1092046558473823 +1.4985517590348398 4.7165335282300935 1.2600655936675071 1.203034487508535 3.2184871001672093 +1.5622613887266095 4.681889226773388 2.392174161893836 3.190621931243901 3.220185815802639 +3.6278120354818286 2.152150116367762 2.539715369680535 1.114831984089995 2.0513095237080554 +1.461028431515143 4.2705114303624345 2.8460716808822326 3.774164728396389 2.9588091228830704 +1.6800535190122248 4.73373892457213 3.088648455169714 4.632959297717454 3.4219717319902094 +1.9353582502577669 3.8218821357166473 3.6490937044788265 3.2848613656666124 1.9213634656262948 +3.472053464187311 4.416797707844952 4.552675726188571 4.374211804208562 0.9614525767674323 +3.7796494160992076 1.6819152231910133 1.8738939593403319 1.0344047729899923 2.2594757883401515 +1.072812462878355 1.5133609944528805 2.626338944749948 2.7337775195085747 0.45346009308277135 +4.6590934374926185 1.4574530255566547 2.6639118520641016 3.9534709088976987 3.4515886035857526 +3.8823358115373217 2.861888280360504 1.4271904349562 1.537409285815266 1.0263826571847146 +4.353060449803865 4.907125251138973 4.292928171046345 3.641195760621016 0.855419744264371 +1.805977818180609 4.410390013459027 4.354223965460227 3.0633571964093074 2.906767947111518 +3.0949451866538804 2.793399307677842 2.3875750187462277 4.225967772454821 1.8629594289773719 +4.9450021577278065 1.7034178164531841 4.705598650868129 1.3730281185892634 4.649074681504941 +1.2332407542222295 3.495526488258497 4.863613264757059 3.6037054679431892 2.5894602524264383 +3.230242801264127 1.096916806713938 4.0382804460312345 3.62412012872903 2.173156360562078 +4.029204958525039 1.6254840889024993 1.4449143499589656 1.3727666584978029 2.4048033824914072 +4.829743216807377 1.6825036992628206 3.7233749350858947 3.5063108217948438 3.1547160585499485 +1.3414942320356125 2.4853748401383213 3.139993784476734 2.2907650818205485 1.4246586380633541 +1.2584203728534602 1.077711145075818 4.005241862076409 4.799580421992289 0.814634625321822 +2.3156365650503083 1.5052750395438266 4.330788809883764 1.9715975834532746 2.4944877319577636 +3.895328867833663 3.5550063758363892 3.297704048703645 1.0466639760383725 2.276620479417707 +3.2967105785628577 2.3781172917377784 3.840006370657195 2.064614763204716 1.998956974627718 +2.534168223114476 4.037968228156147 2.230052233687412 1.2483513695073327 1.7958705526555199 +2.8932931577661067 1.3001205856787088 2.250094365948005 2.9887189422873046 1.756065234899884 +2.300928999825025 2.147881560294977 2.6089995993917516 4.880304451578883 2.276455413645414 +4.4115604920510325 2.9209305463649207 4.295429781217331 2.9594836098981934 2.001681744843182 +2.310379193415331 1.6553035081833247 2.486262903364449 3.889298118100461 1.5484288705560583 +2.489469505289928 2.9652965621856944 4.087453948372207 4.23102105316419 0.4970139853690629 +4.95269885857841 3.9848662185815003 2.5970147011580615 3.2463956646088086 1.1655023186315883 +4.9179876523306545 3.619914368695268 4.087073729183616 1.2652577226110133 3.106065006505386 +1.5952936265041822 4.413051660048991 4.967963918847325 4.255264155230542 2.906492953486336 +2.498849974454962 1.0203526047408595 3.9706554087045833 3.130047107552022 1.7007577100275377 +2.6982419798248225 4.37113211689625 1.5185541907424134 2.5115576113133744 1.9454092638764957 +4.104918680144181 2.474558605820477 2.87534875842663 4.633718571669389 2.397902911310666 +3.715625520164041 2.032853435081315 3.104308376236578 4.076064844918758 1.9432016171152504 +3.429208011842811 3.6049078702111936 3.899600071846643 2.42741227901883 1.4826352678868449 +4.546409117050089 3.1773654653064693 3.4536035111712184 2.578409437159818 1.624883130432518 +1.2461865710451279 2.025098293416807 1.174767554439005 4.172806470828318 3.0975701469753387 +2.985897543257028 4.7318050754922245 3.6328921803403214 2.362724464218677 2.1590551494098684 +2.4116222525236863 4.489622530470922 1.0356685385972928 2.056992812492839 2.3154240276020834 +1.727620469147503 2.518642786876057 2.1323944762679545 2.971018070453409 1.152825155810361 +1.4013342315311763 1.6377014650466193 3.904757758570948 1.954756269388343 1.9642747457761913 +2.517402141267929 4.8823030914545065 3.8390902937769766 1.8722082768574344 3.075935853146951 +3.616414396493602 1.9120549405433942 1.2081659291784121 2.7867925579035915 2.323123584316408 +2.2663639813868057 3.253418716466726 4.639272874965011 1.0905992063762415 3.683389995123916 +4.396965192757497 1.3760220874186673 4.881157714807795 3.532108096274758 3.3084788225041346 +3.958568588672526 3.5322631364586297 4.781575355016496 4.66223307304241 0.44269506305591094 +3.0867238544029365 2.6622007983008253 2.161302767492768 1.2483917482965863 1.006790124172902 +1.282355414272161 3.7258062174960043 2.1833803576137814 4.962494913424907 3.700530981102106 +3.0674052327876473 2.6980496990216634 1.5803191279072202 2.7209286474383214 1.1989218433111162 +4.51702808899847 3.8627595880729304 4.925054551425983 1.6919922471659081 3.2985995717168852 +3.887775833778529 1.2739813436172165 3.531067053452013 2.847751066721203 2.7016369805211684 +1.573189191721562 4.533682046977774 4.256007994482287 4.129185456062951 2.963208042354469 +3.287661457315907 4.934918308687423 4.317590757091464 1.5046358038111944 3.259780775385732 +3.1964654445372824 3.670240689583459 1.6047634833679347 4.86114160642635 3.290662769587916 +4.396651375753226 1.9304935612967937 1.6335301316812072 4.990725371800188 4.165656520415728 +1.2224009713252477 1.6597931860197983 3.724301792879672 4.66081740163305 1.0336215143436764 +2.323445872791008 2.122546946319867 4.745712237167602 2.617254702047677 2.1379176451552206 +3.531717640063053 4.300558036436678 2.2792275239684074 2.8354755645187315 0.948961241417176 +1.9828607076879878 2.933743129018964 2.7377628567095305 4.0633771911016705 1.631389206395021 +2.149658904990404 3.781440337525668 1.462795334121842 4.181462307952935 3.1707823574264364 +3.7507530962383995 1.6923768636935677 2.573923518010775 2.5671933000065073 2.0583872353228 +2.7058184526149294 2.6388221086936774 2.8002854556608856 4.086913929441149 1.2883715844588255 +3.60276363590239 2.395215490273608 4.665221871435756 2.5918173395120094 2.3994121940620046 +4.69578104091952 3.146011839162881 1.8028417102951728 1.0473573710286592 1.7241059032409731 +1.377642473807283 4.574535546274326 1.4319721047828828 4.556045374477388 4.469894753929615 +4.278701857474401 3.106578843891919 3.53372999997447 4.810497625457015 1.7332074106840227 +4.595691349478074 1.4995239764439043 1.4988221674078663 4.998377661823467 4.672594681794658 +2.1270826555152893 4.417309346464567 4.056951907283686 1.1762939149705214 3.6801261886807892 +3.2063197970961106 3.2445979489153958 4.895575431629856 1.905321079682306 2.9904993406198845 +4.468430306894003 3.0298762047773407 4.71523877535234 1.6730231977655374 3.365191454468598 +3.799816529680213 2.3140958918080705 1.1269471524622374 1.716877296930293 1.598556658098582 +2.5064150098277556 4.217838878766708 3.5154549840133367 2.6978838462651433 1.89667978964633 +3.517297044784086 2.157442436805937 3.2246165770154813 1.2356789287253411 2.4093728486112975 +2.446268563490751 4.172716950061792 1.5838913509699064 4.690500094750916 3.554102125492509 +2.691635072821064 3.94690538965236 2.194949653043039 1.0462338438854655 1.701543880870041 +2.3760910681955143 1.133325011722099 4.537279423179089 4.588436518482041 1.2438185235484795 +4.085441276383133 4.469563220736058 3.2639440440607275 1.6755248618016285 1.634204750544477 +2.7932631004805817 3.1778873415371196 1.0627185763551337 1.7686110893779454 0.8038781292894951 +1.1991922301632263 3.248122957045195 4.176030621553162 3.0399957093627306 2.3427958607775867 +2.5629156399900133 3.4176192521515887 4.761412466700914 4.274714791408328 0.9835613309688689 +2.135087894318213 2.64010979097701 1.412699010629915 4.447719529574082 3.0767509919583946 +3.5154286201476204 3.8242350007797294 3.6860419031597877 3.4253978324086876 0.4040998791596052 +4.2989259427992295 4.84546798942825 1.3496406213014347 2.476413258777721 1.2523277467574951 +1.731283344136413 2.449663260574946 4.51715445428246 1.4445456761770425 3.155470552490183 +4.525616511388917 3.1478494250531317 2.4431772632691744 4.68139043724822 2.628277069938319 +4.9215980109381405 1.2578428705901543 3.7546278778935536 3.812326327640239 3.6642094426396348 +3.7197346881551505 3.396149084497743 4.81888387993582 4.957291014139721 0.3519434296770798 +1.974312925606477 3.771056276863923 3.3505540905003803 4.600629907787155 2.1888298744427432 +1.7574121107687324 1.3349329457341814 2.140625769994497 3.126198685938587 1.07230714701098 +1.4999404609364846 2.1781255476934454 4.5261084640202665 2.0759482895595647 2.5422863513799627 +4.361264736108322 1.650681868284778 2.456240018625069 3.9297340730276797 3.0851975968644787 +3.8739245149307044 4.396658837919564 4.804429975797559 2.9652623579327813 1.9120116890419427 +4.363902326213869 4.7189788568971505 3.2744000034546485 3.131492037995057 0.3827558350095728 +2.3526336752375103 1.584539667459353 1.992073347908606 1.7131100077735848 0.8171835472670748 +3.982989790819014 2.64702547867304 2.3331865391656046 2.8937150465970087 1.4487901335151836 +3.303090518243741 1.665095523772195 2.245218550632281 1.2661525203697854 1.908297118775743 +1.2330151062047223 4.435422736505738 1.4886517086073678 4.867681194683184 4.6554543170758285 +2.2081220063314557 3.4794997029122214 4.350600429074104 4.14507187558559 1.2878832375887554 +2.5294786640601075 1.3497447467085046 4.396865344240507 4.997490898952759 1.3238289816751856 +3.743491407369121 4.445842298517574 1.2385954999207662 4.819718441243133 3.6493476533707203 +4.003144186008212 1.3851083499866874 2.398942903121723 3.170085409959781 2.72924392543895 +4.785959211632918 3.25020014384572 1.9760014757998845 1.2156914172265596 1.7136590382740602 +1.7412992902588673 1.878514296510029 4.891127370619748 2.0579976363118915 2.836450607600953 +3.7571482576838156 3.3827069026263166 1.4939824973944602 2.281938872159567 0.8723998950654829 +3.0727368993403394 4.229069573741709 4.346110215915619 3.4909737505137075 1.4381806661015504 +1.067047172938294 2.846360965554215 2.234597562473843 4.496639676108176 2.8779840333901316 +4.743771353613166 1.8630850119830895 3.0271812973916004 4.398600442152551 3.190477122543105 +2.1335540683253496 2.9507108993345033 2.29385287925312 1.5995774553678426 1.072270325373226 +1.7911734527454803 3.990186985751557 4.727061367012583 3.215244056756066 2.66856742428126 +4.124411355658449 1.5175378793971537 2.7976015099045295 4.862927333122478 3.3258623058216865 +4.7213255503086655 1.8850483996711724 2.409134636239894 3.361128656379574 2.99178219287602 +4.056903500781143 3.976114108868969 3.5842356463472536 4.5265853454235945 0.9458064713221247 +1.6750440279137875 1.2667972828943985 4.546249090709923 4.121220076678602 0.5893344276277794 +1.2859688520578016 1.130151613044427 3.911082869939563 3.3434932973996943 0.5885889353612944 +3.598639005290484 4.534865118509492 1.221232147125511 2.622453445329791 1.685212289776709 +4.090705107813797 4.036957274094112 3.744570771852861 1.0004708031995682 2.7446262892409528 +4.184048540821462 3.7070345376972496 1.9672805838154632 2.415575306964941 0.6546071478224579 +4.22579409245597 4.5245509455791755 3.3698804515901486 4.856793701841217 1.5166300376361654 +4.314628121418657 3.8329723103152378 3.1318704894530027 1.0544151263376484 2.1325602233246403 +4.6056575137792874 3.2651174196207475 2.1953312219168586 2.6876369673075504 1.4280800716315847 +1.9662475004809377 1.1504972578739352 3.1464271781592217 3.0660474166119065 0.8197007773448716 +2.189882115600733 1.2450632402131987 1.5717809515323622 1.1591437048615836 1.0309957345346321 +1.880526175104536 4.413672080245698 1.0531076269771797 1.9811569208726447 2.697796076176498 +2.8585138008073563 4.012450932852131 1.381329369519519 1.5720365346036589 1.169589726154496 +3.2623843654327978 2.8246099716438593 2.219947082610757 4.712137468203734 2.530347671348612 +2.405718824307184 3.324839021823608 4.231566883082033 1.184875685738504 3.1823119252287597 +1.549924781421598 2.711533855318773 4.531880532643557 3.834932802748253 1.3546482121814762 +2.001624378131164 2.0012824207463615 1.5949602839627057 2.3797771869966815 0.7848169775321466 +3.8038812532403994 1.7247051194310186 3.429797628249955 1.2417494290070201 3.0183651730055416 +2.041859856210145 2.6381199822836545 2.6708332627860356 2.8866408782041026 0.6341128171056233 +4.004637990096712 3.947918526391422 3.944279407908798 2.9467215565583578 0.9991690369271473 +3.973469696897293 4.911563765732659 3.877438521433515 2.190456577776496 1.9302664479829996 +2.6881661626791993 3.021509371730141 1.1659398971167074 1.8159126992560481 0.7304672056576162 +4.042368312052945 4.820295974025676 3.6242906721208095 2.039823449975963 1.765136772409936 +4.560297675124492 4.855982211256859 1.2847014359260198 1.9791969362240667 0.7548200744826861 +1.319369437191365 4.738699606002944 3.4135332255796906 3.1125640863411124 3.4325502510697543 +3.483902171546227 3.210117685760585 4.288524815429778 1.5765628254760014 2.725746829698414 +3.942380215815757 4.332978358570564 2.1102893393800577 3.138113278833719 1.0995403401592634 +1.8270492800502476 3.9206090487226084 3.2783176763957034 4.100118188123473 2.2490772743682004 +4.78379299167739 3.8315631699353734 3.001770040920145 4.022355098807196 1.3958278883147264 +3.539409243578334 3.930288970972428 4.557382050907584 3.0406435786097523 1.566295806875586 +3.4997467792767565 4.021539768533701 1.123611119611879 1.6373784396665183 0.7322737075669346 +1.9266300973730446 1.4763773519924572 3.7994375774997935 2.7941671797146577 1.1014972117013466 +1.2062870596976838 2.5189488917152274 3.8691043670808316 4.14995365978991 1.3423700720929543 +4.685522545473084 2.044593249556054 1.5677682931332755 3.979030514924136 3.5761282203339158 +4.100037618458028 3.0053150393009997 1.0681657612942228 3.597266445150261 2.755860626809218 +2.923425487702492 4.4935315191566225 1.8159919596820342 2.331375926070567 1.6525294499097483 +4.083568335319226 3.4302216825933662 3.3436048537080056 2.884085947719846 0.7987612118703816 +4.987297895056952 3.1470483947575 2.276594796376454 3.619525807991486 2.278153183021229 +2.349666369479656 1.0532811789250864 4.309862672027352 4.002734640723519 1.3322695635275075 +2.359878023886109 3.1026644676145945 3.9262229362354484 3.468225812126531 0.8726357010109373 +4.3844310634118475 2.2909541078239486 4.288022476574965 4.962596411944457 2.1994762462589725 +3.7291394942240212 1.152977695244553 3.1640539298817054 4.19648609664617 2.775342464181871 +3.0961471895875956 1.325243207343033 2.0052284225023853 2.6211366076047624 1.8749516811922793 +4.7224903218083245 1.853237425216209 1.7775276908083444 4.870628163357937 4.218990722659717 +2.3206815591782846 4.971479855792152 4.087345941656491 2.0154152141518447 3.3644655666106784 +3.74564609608326 3.067537386611844 4.369401635918411 1.8569442911237726 2.6023591856762422 +3.3251912227860703 2.635642210420016 2.902729358992195 3.389065476036744 0.8438013150007353 +4.462975301919872 3.9087519741107366 2.7750116459045198 2.829253979417066 0.5568713745854774 +3.9323128787527155 2.8364682721497436 3.5738894958866325 2.5518123855515102 1.4985049286845258 +2.8691115596032533 1.3067392222290635 4.998390652664156 3.909365936152091 1.904463744408455 +3.7093585709768355 3.2698123772001524 4.289482556682742 1.6396515052170866 2.6860389903676287 +2.668514223340915 4.375288467732185 1.2525018428728028 4.123398755119286 3.339929251056642 +2.7913914457086855 1.4655845660401887 4.166315157338175 2.3729205892655374 2.2302528912589175 +2.293849426967565 1.8431763233728788 1.9781410584646464 1.3500631854877714 0.7730382014019892 +1.8474631718296375 4.9924413968117305 1.3626066640107126 2.1076351073469843 3.232020330535002 +2.5392389367467203 1.8175018635040163 4.923423761879841 3.973466650539052 1.1930309787595121 +1.9556627316374486 2.3927371410196883 1.4457599951487805 3.013691156527792 1.6277107132903468 +1.4237896743496323 2.2015716848016176 2.3811408280544595 2.166875236426157 0.8067556008721344 +2.452339561461178 1.9641576372583929 1.7109173561501505 4.667268734848575 2.996387001949249 +4.992900689965433 3.9612109500167896 4.253059844774391 3.7231538961255892 1.1598206904210175 +4.539206277667521 2.3121370678603346 4.57091279033274 3.610681243745 2.4252591383877906 +1.7176970291995035 4.868184270833927 2.8592784769675617 2.4647013688028574 3.1751001486549835 +3.1183067259302844 3.6069704944656467 2.237937868946546 3.86113522323343 1.695158378926029 +1.369247272713515 2.4711631191191645 2.746566650397909 3.7178766377814134 1.4688980986272746 +2.8337122557948304 3.1739256445239317 1.7005082255810162 2.3767194953949913 0.7569721469736962 +1.4484992313578542 4.918663795362592 4.907151152400623 4.470065928671012 3.4975828216179465 +2.667704093492773 1.4114283459501076 2.5368509784445363 1.8276236996906587 1.442647596189906 +1.5675847777355303 3.194903750777337 1.7495955878838312 2.858565195237664 1.9692589037646506 +3.283247189529992 1.431698850975868 4.853406132968276 3.7617388226759108 2.1494112604067896 +2.15828299521463 3.5304650428614375 3.2304845263791955 1.5247643445725796 2.189147073749633 +3.2259939809971914 1.0928821762358392 2.6811871756510945 2.0634335823952465 2.220762363152065 +4.696483879115638 1.6737687278518014 4.22868216349681 4.262189457196153 3.0229008624847444 +3.205978203842719 4.460604960449819 2.020528683878551 3.916341517525639 2.273366358204382 +3.939681727296986 3.156037411912153 4.082751417949293 4.093057591125524 0.7837120837657808 +4.238533014385672 1.6350676254867387 3.3153062637283615 1.9533093633345064 2.93820822745379 +4.730072223017282 3.110876521688253 3.0285754594067016 3.7263427591364455 1.763143194347681 +3.2068528566151726 4.266651802752005 1.5374725275102863 4.142719306329147 2.8125583700216414 +1.3941021473751074 1.2355551387177073 4.491293464037666 1.8687837606016302 2.6272979082263155 +2.0590511777755145 2.2328445456481387 1.4906011490013835 4.35427819994594 2.868945866833848 +4.3689735578250435 1.9344576055577152 2.5449514228238472 1.3265008955766975 2.7224051148190553 +4.721105599770746 1.1800737589977883 2.9614426521992274 2.2032385467481674 3.621295343228823 +2.031801894876113 4.431493818308871 1.4896343280434485 4.006152374315599 3.477266800894319 +1.1757896559708914 2.0546489671310613 4.472119325389487 3.3340593228885993 1.4379062062962413 +3.4805600037926165 4.6033658647352205 1.1373179625654135 2.7969425377268524 2.0037581520350325 +2.7056217640777867 1.1250699286852521 3.4767616209164243 1.745610778714612 2.3441474660990833 +3.9794547496967096 2.0042315970588587 3.4569569113102325 2.6952440014690433 2.11700568249954 +1.9572304002188279 4.367294978944285 4.931502764484289 3.358870404241897 2.8777741075540786 +4.9137536502110075 1.7250289322046912 3.830443330130471 1.0941489277373524 4.2018177475697795 +2.1361382330812755 4.624458104717125 4.513847464857228 4.8024664072128935 2.5050023308301244 +4.927776541856398 2.4631097020167956 4.994151738254374 3.3670354844826447 2.9533184614418193 +2.880286925821717 2.8745359490878393 2.17026417155464 3.9770347620697954 1.8067797432127355 +1.2653595908460464 3.1509188804530535 4.417831306986027 4.149267425239211 1.904589297775822 +1.518447325144178 2.9993655217713027 1.4701233277046755 2.364965518188736 1.7302777958962678 +3.1603618626230356 2.3384624831457983 1.8516342685328433 3.0699203980383847 1.46960528147209 +2.9675841143326873 2.4963601587345052 3.818304962294232 2.8094708789455214 1.1134622688064606 +1.2664920193644393 4.589438975995289 1.305954713783117 1.2115861426014813 3.324286675936522 +3.593998451223292 2.402999996249161 1.291338708379779 1.7701390488998938 1.283638222332502 +2.716618470123517 1.3790822705880013 2.8392729331798976 4.212716897191568 1.9171206032349661 +3.3102882439801133 1.8472691487011712 2.825633295302771 4.333743553084046 2.1011476442115913 +3.215954053196441 1.231898127214642 4.313052543470709 4.706539071458814 2.022698584844422 +2.8572630089960946 3.493421080498104 4.090232889810801 2.4916827159258643 1.7204824179179274 +2.005772632466445 3.294358605620391 2.2194044289286685 3.2578377479235052 1.654931288062358 +4.8521980185618965 1.2170698371664788 1.0706118702284528 1.4357643834636455 3.653422129058882 +3.004794462393028 2.9591453812520285 3.4846674051317317 2.6072261743701035 0.878627880305137 +2.546850463971997 1.4754237344020567 4.116993215563312 2.018493696157279 2.356195125575191 +4.609390518769823 1.074433205087335 1.2484643585210105 2.6611525987620364 3.8067848998429894 +2.3263307743400707 4.918816170268743 4.885956496064619 3.355836518338778 3.0103567353951872 +2.3456493053357357 3.427054088978412 1.8338386986724267 1.935398883676915 1.0861633289995611 +1.1342607212851714 3.3739070870123853 4.7190666557746805 4.0332754794953765 2.342290626924351 +1.2170195352747681 3.423025634924956 2.406510942541385 2.088070492451898 2.228871291023111 +1.6232756766756622 2.7544197691121526 1.1950782700540774 2.6118080120925797 1.8129010231754112 +1.9088561333231513 1.710152080658422 3.6613205746257838 3.6950097259566466 0.20153972179890808 +2.15271093521311 3.7314570974755354 4.613125554134239 3.0054812471391865 2.253210967191474 +3.970587396386349 4.081086032696904 3.969046691891046 1.015020017086563 2.9560926142600676 +4.322905568089171 1.9440820177587907 1.334553493228865 3.3572398247074084 3.1225088437275184 +2.46125220796114 4.000155025050373 2.583209073217107 1.2546745828545571 2.0330336378250253 +4.393073604916678 2.354560805352431 4.184752185923875 2.6385409938141833 2.5585745024510302 +4.063459219938304 3.578935614370204 1.1338618856639786 2.354998947370527 1.3137499182972436 +2.6291588598152904 3.3484911261323997 2.6797526603737554 4.779552056087532 2.2195937492263873 +4.995193617374762 2.8282488408068795 2.495506289246132 2.8457753993523305 2.195071323257953 +4.092317363852339 1.0588141633520713 3.66056825489554 1.9310890282754611 3.4918820230293797 +4.702426681175891 2.468330228821546 2.7907471063166382 1.4199145570349336 2.62113884344047 +4.389458781173312 1.7497639482243805 2.216603125777766 4.709073522837585 3.630481716152392 +2.0941607539788554 2.324301580653097 1.9365705749682482 2.292130711299774 0.42354198215808125 +4.580522081319325 1.7768334026413104 1.5839556640539003 3.349010116729744 3.3130178731570545 +3.9605151615705223 4.681672197924196 4.750256682700247 4.009873365263192 1.03355451129658 +4.394929057584044 3.9162843830418246 4.829411955947444 2.513258809005759 2.3650932591666445 +3.0817422645274437 3.316750796798616 3.9807198959849046 1.76942306267382 2.2237496925805025 +2.303965763555001 3.378567378139907 1.1337120108542473 4.292714931465721 3.336775102175798 +1.4300923496616709 4.339236123178435 4.552175260399533 4.375623262947078 2.9144962005114725 +3.473262542142256 1.5754069862217954 4.713970977638747 1.915433920707601 3.3813703391014416 +1.592020484242045 1.7861723460804368 2.957363026093618 4.234005846599256 1.291321740157698 +4.898084424264932 2.7214933344264876 2.043064019361504 3.755089427935965 2.7692200656445953 +4.6694935056009825 3.4077845021137008 4.4748386247162415 4.468902574730002 1.2617229672833528 +3.865250341216223 1.406603631200427 2.4721871616138684 3.12329056289931 2.5433991593607495 +3.2302867269633295 3.2084371443063215 2.0623869520724636 2.466009037984536 0.4042130533497129 +4.356546899145556 2.751079038456802 4.9740500950277635 3.0443205131650135 2.510255626588796 +3.471959165815618 1.6588566450497275 4.105439388385983 4.544211516841636 1.8654387504062229 +3.1852514971381596 3.0557605556826513 2.271781555796211 2.878965757846719 0.6208385934675341 +2.2502909937094575 3.2814430122810267 3.2750420090636423 3.261875952466105 1.0312360692152653 +3.7662926454984236 1.9344183763084808 4.742931386042237 3.261650641621672 2.3558344555403994 +4.478958159869292 2.2820030651060126 4.48943241759198 1.4610099516826223 3.7413840113560712 +4.015119537854687 2.303666151452485 2.5760356326175593 4.557049164474481 2.617916596690544 +3.9676434548118578 1.6039170530763016 2.532744010372494 2.9094183717950655 2.39355093466064 +1.8503449358797028 1.0755692630256894 1.7394553819927063 4.020123141668073 2.4086765605346523 +3.8930527786624944 2.394381485366853 1.8617448793754576 3.2500226955375164 2.0428732070777484 +2.731908738237675 2.7897877789155707 3.2097453703126875 4.062020762767107 0.8542384491072315 +2.6889880114199887 2.8404651832653345 3.354184191299939 3.471779886983064 0.19176569357802914 +2.935231110060449 4.244251304928012 4.676537920282744 3.3516843103054152 1.8624636797642717 +1.2398124163280166 2.0668851981140928 2.088220473489955 1.1290694609469165 1.2664991319514176 +1.350040327425289 1.1488851932831357 2.2748324861137457 2.5677672596794543 0.35535076974130886 +2.910895234780435 2.655818163338888 1.3107314628430786 3.424976810736493 2.12957688367059 +2.4280910021762994 1.2990466693791065 4.1822636036090675 1.2311700011175617 3.1596984913259925 +1.6324443839463685 2.2657854664584773 3.5778014956582296 2.1474367488298722 1.5643095076636724 +3.8498851089562613 1.645393210629762 4.5383673083617175 1.763890016671847 3.54365754156492 +2.273398991404948 3.9030402083593896 4.577647050537074 1.4864051903306317 3.494496635323797 +1.78997149604927 4.690767189030273 2.2231718736031114 3.1781670510391162 3.0539534117833504 +4.037223992146798 3.8535061703826403 2.4189257132754713 4.478587842426255 2.0678395305950863 +3.8970059838873103 1.1588969094279613 2.8353137232454904 4.368551158944689 3.138161617550327 +4.144459455736058 3.1395801657851563 4.005911737053129 1.1287993051317669 3.047549562072565 +1.0173763420295567 2.655008591463868 2.163619737162331 4.0448520345987475 2.4941680659701304 +1.2555510380379964 1.6021161364789194 4.169360061546723 2.7073768188415794 1.5024987086210797 +4.4270225540695 1.7956705349669306 3.6319321496747414 2.378265239058077 2.914737410335672 +4.780601195978761 2.2004637055120964 1.4740000346070743 1.689371511735692 2.5891107243360953 +1.1837742323516274 4.9493443674685516 3.806447801536022 3.9648655369290005 3.7689009832272764 +2.8079864424420244 3.2622623048601005 3.5584432474145222 4.142593033655549 0.7399983323907725 +4.389434695172467 2.430526693431199 1.6981034891045534 1.6065985026939353 1.961044038726304 +2.1822363987583597 4.411124868891056 2.475930527272587 1.0982917830685968 2.6202733296017837 +4.886624447289217 4.401089017327616 4.746799398578082 4.439347728760101 0.5746922507062903 +3.691057350990556 3.7629177546586448 4.6083523545109895 4.964676207134387 0.3634977380448485 +3.1835111004939707 3.1427408391177645 4.84640175527967 1.0499388349793395 3.7966818301548524 +1.070078824140266 1.3233781702293874 1.1925296358967343 4.941840651896561 3.757857588231202 +2.038189744734435 1.1690637949269407 3.516863259638299 2.308513877564231 1.4884515933639095 +4.716682067946544 4.7624020409353065 1.4102982572468532 2.766076745918038 1.3565491610235196 +1.9412534879934444 1.5045174351520707 2.564132763898734 3.3196459561047766 0.8726617692146414 +3.0736268115131966 2.598177239460431 3.977036496151916 2.606986989513966 1.4502027258987098 +2.2346008999213227 4.618567235957719 1.4616900704634261 2.67935746789199 2.676940302306955 +2.2958510274966804 2.0176006617641624 3.550522208297979 4.28112171812259 0.7817921141750163 +4.961564532192444 4.917610259782961 1.566071644980895 2.244775356551968 0.6801255076553132 +2.5813041163021073 4.260302076213552 1.4061332794374142 3.7515901583801727 2.8844760564731162 +2.273367623557939 1.100957246665156 4.6031584135434835 2.2809941039974766 2.601344493214069 +3.106647590919127 1.844188603918996 4.045187379564531 3.106316261315235 1.573302790482519 +2.335212206811544 1.6337899676503658 1.5932594714404638 1.5566107362834742 0.7023790197453854 +3.156298368255139 1.6730237890218862 2.7525507088965004 4.943343379811436 2.6456900809305273 +3.0268861633257065 3.9207597972029267 4.616021648152041 4.502028160219787 0.9011129721804185 +3.282352644997166 3.868437762515167 1.8133523568139105 4.893970278833259 3.1358734901846566 +2.639926204270755 1.1588216372754903 1.2976743420034302 3.8311956061805073 2.9346892057612584 +1.0650240495792405 4.90955364570743 1.5752882956843872 3.0199625702374413 4.107005183227916 +2.277830476680098 4.831591742308739 4.440275124377292 2.858310519550931 3.0040487034581558 +1.7006894248631226 1.6861804333708412 3.6059662279814177 2.3871317330263238 1.2189208493280284 +2.003038767905732 4.485673335545252 2.9002308234748013 1.3722393629524396 2.9151727735878583 +3.992801950847625 1.5034590435522275 4.332076419932832 3.169500311439272 2.747437227334218 +1.2842685005063883 3.163979686056857 4.60968347871129 1.9584314018298112 3.2499925717225726 +2.3581861652204483 4.903345855579653 3.8260727635957834 3.732720415636632 2.546871121650809 +2.588104248007404 3.687499601838753 1.0472150921909589 3.0090282080964124 2.2488621224442866 +2.7752238731356416 2.3656078542630516 3.688160618492712 3.1132117586357335 0.7059401351161935 +3.5877944224958886 1.775789503893726 1.3575487521729097 2.637731253066751 2.2186097134541805 +3.143118130284254 4.967506078080054 4.47749504347348 4.471396604929037 1.8243981404877747 +3.1881884860609424 4.347329937889132 2.2301171447388928 1.1113646855420098 1.6109674019996296 +4.542539739095762 4.8728319904535145 1.1074157991411426 4.360444468957875 3.2697535836751666 +4.514242994392829 3.630313067557689 2.948696859846162 4.8276201256019355 2.076459668318438 +2.712414733413386 4.8218973872151345 4.108428911896516 4.895914579768103 2.251677317866312 +4.845291631430891 4.118638989569575 1.0048912902781546 2.6273636122438746 1.777762778738734 +1.6059894862543231 3.278893511621398 3.7811557135086202 2.8325991169292153 1.923114009881803 +3.0921897850196087 4.324025998552798 1.532272750715491 1.6754644904692153 1.2401307718565338 +4.741632456882382 4.116245228966792 2.824826830186828 2.886416433573101 0.6284126543006783 +4.2935120568167315 2.876431074715534 4.107441239981179 2.5144708921674823 2.1320584041828177 +1.4891547526889486 1.387269682770154 2.131838511429771 2.3033335431657935 0.1994770998949428 +1.7074978170799087 4.801180376480801 1.2524532435444788 3.4137418255265564 3.7738627575664903 +3.3488848980727703 1.402147728097043 1.279905405541352 3.1795936464432653 2.7200369522464416 +2.8141305161687047 1.8794553101997544 1.5687701358451815 3.079858515924126 1.776796508625202 +3.2755611322372307 4.0009005026384585 2.186170823260307 2.29172285895174 0.7329791501077334 +4.362250361707509 2.6295180447197843 2.446080200079034 3.2817739457867936 1.923732132847168 +4.9286402565108585 3.2018662657617876 1.7205467118120956 1.6484899329814078 1.7282767702260327 +1.7889073904533386 2.081664206509257 3.8537099789106355 4.631249599127161 0.8308275479024858 +4.721209123812988 3.804448844450222 3.6332740592445982 1.2734354285541647 2.5316571198952276 +4.655814740196785 1.0035489657547019 2.6842340377460565 1.6951251580388371 3.783831611353325 +1.7913169858716094 2.1785486894497406 3.524229970044296 4.531063502227752 1.0787317339288005 +3.240691377946014 4.1903289403275314 3.6282086245480456 2.162159100022647 1.746743458051885 +1.2957414742865327 3.87428487396893 2.386566726950571 2.5099196045328815 2.5814922034461953 +2.719473278917737 2.1538699765975555 1.1013004238240378 4.510993315084397 3.456285970273137 +3.0842512476339077 4.601265997816371 4.675502715274639 3.980342676748328 1.6687064545434775 +1.796503526629715 1.108019326388204 2.2132440345108133 4.601714062513365 2.4857191250518835 +2.789637671909988 2.435551653188276 2.08518775252962 3.669867055827899 1.6237565713357753 +1.917926286096359 3.3384322528892816 3.143022755776717 2.8214056521820075 1.4564596674878938 +2.1599392200758465 2.32727047782699 4.4090454985524685 1.2493229140377058 3.164150211496482 +4.510606777386904 4.9343381003204065 4.951874864158525 3.6306826284657383 1.3874787053104205 +2.024388395362906 1.4436595847994806 1.7453292955250999 1.5643077085778927 0.6082883907812939 +4.536724949576298 1.8963536389742597 3.533958511693111 2.7484779031265636 2.7547305574746144 +4.542701553303321 2.7001190212238075 2.6732711534813305 1.1075958090020657 2.417943273080412 +1.0900112606311785 2.7920145846303592 4.9836220998885175 1.9471742468520912 3.4809238542538936 +4.954651482741553 1.4224602747551698 2.9803378681893604 2.912410395416176 3.532844303296376 +1.4569790927950472 2.735210182937635 3.230313672094126 2.5949515421904623 1.4274311737953702 +4.742807072937797 4.4389968646796945 2.3327993729993035 4.220346248703688 1.9118404354504104 +3.254798693619025 3.5980515089744127 1.6678518671678648 2.3852163878900114 0.7952574116852449 +2.9405787150156866 4.153233696527348 4.252799038912066 3.4893361063177597 1.432971651370168 +2.993729889188014 4.808306625741935 3.7852852552693164 4.823628736182378 2.090656814782697 +1.5790036699193482 2.3588080280918655 3.6457992918213447 3.8287409482800823 0.8009759588731228 +4.71075254533698 3.9842013476553446 1.4000469362509818 4.863563009584308 3.538900992270188 +3.98518195016555 4.327384369517114 1.9664791775997688 2.474998280122227 0.6129389638783865 +4.021381396052336 4.259673101165815 2.833771961016621 4.865513144277864 2.04566741492494 +2.0666110466494554 3.3196237497509893 3.306892565454996 2.7589028220993868 1.3676014013435198 +2.3459796927364205 1.2084213194943385 4.9842942351586546 3.3274615358855972 2.009759599035073 +4.287187224311883 4.490363918129329 3.1959854573977338 2.506415048304996 0.7188797660296984 +1.3164253033302828 2.5154787327065775 4.117133078635309 2.3307656316427114 2.151473397970308 +4.711613152329922 3.046338907405791 1.932097587621202 3.277486371068053 2.1408431258343597 +4.746759789347756 1.663679768041705 4.063162082367072 2.714604439913768 3.365113687945139 +4.314945171856715 2.6522671397591484 4.570296421595714 4.468193845834907 1.665810065522726 +2.7751257832311467 3.9024195328025764 4.389941849295745 4.561496714331058 1.1402728925744476 +1.0037172705082336 4.747291006820806 4.460872764426702 1.094872024305091 5.034312793391815 +1.091951101335992 3.7646975789714276 3.236096141005866 2.6676017551232527 2.7325372093519014 +1.7716180234803294 3.5116533315115 1.5973068008917681 1.5251419214018527 1.7415311203153747 +4.33905908886938 3.449684103634938 3.395754892161528 1.7555766198747467 1.8657900817729778 +4.1558912624679545 3.706862820463599 4.897611213802572 3.154323482867929 1.8001885052838533 +3.8128604486924296 2.8421404204687386 3.5221041929400263 3.2289962489812445 1.0140067258190884 +4.551070539483003 4.224245874395883 3.6940526517284886 2.952730936240926 0.8101680366212501 +1.872605624566393 2.054565836481623 1.9305696914826873 2.5358697045536975 0.6320582445819376 +4.894499842940331 4.622194950683336 1.4891534326365532 4.909039498727353 3.430709935186753 +1.6457875184233477 4.807824621999914 1.9975170208213857 2.5210899691798527 3.2050908375033083 +4.1776806901554435 1.7919219509824824 4.664067021623413 3.883485770327564 2.510209523409301 +2.9460437298669633 4.834532407239292 3.5140887805981653 4.6647369086740245 2.211420493530791 +1.572111672123392 2.6797896314250953 4.842951658453585 2.8401283958997143 2.288722674888707 +2.822063279741614 2.8211899555890714 1.6693326180806252 4.360136469073344 2.6908039927152485 +4.993324983751833 3.06993236548732 3.1735450305259274 2.4710348397538167 2.0476717833024622 +1.919188925366949 3.302626803250023 4.419038216126201 3.6370829904746915 1.5891363493688409 +4.225614168541231 1.983404366996092 3.0649025354946864 2.135973798523353 2.4270173861174227 +4.382397671087517 2.2548997355369162 3.0446994395456572 1.534535576325728 2.6089925947666868 +3.017582743737822 2.9657305585517855 4.489615026566184 4.618705247925174 0.13911482436850564 +4.4834238928863295 2.4077036104529714 4.763050615600964 1.5177981415803212 3.852308179655714 +3.2042458160575378 1.6680310695352683 4.960804096134754 3.7055202450833056 1.98385818397965 +1.9635971198351032 3.50186145369247 4.438770945226398 4.5026332573944785 1.5395894114123747 +2.0249710513616845 1.4139246020096805 3.3594468336844536 3.251787880884741 0.6204580673853971 +3.372107182567671 2.6532221862537924 2.9955196207718706 2.4348586194762047 0.911666823076865 +4.858102537014924 2.156373989350974 3.210272475373293 1.7309694508864943 3.0802069059591024 +3.9184159458250414 2.1113166452286376 3.3209182573634752 3.8355612803866768 1.8789532520428684 +3.4943075147628857 2.246313873307936 2.47161426756357 4.021004553087996 1.989497018341432 +4.971486825712825 2.2243379824520733 3.566568586341741 2.6297061115580584 2.9025054803887436 +4.024067534666081 1.7627738878087253 3.5910635305755854 3.4149032052723842 2.2681449286869584 +1.954172217655333 3.95256114408479 2.47935099076441 3.8394064161174013 2.4172937474183778 +2.8950624377862924 2.1363213619195696 1.3850158731282614 1.3906174079404177 0.7587617527258762 +3.8081655067831477 1.8475056691683451 3.175350673819483 2.426014330058591 2.0989740243549098 +2.780053476242705 4.959570686254137 3.437957757913524 2.0129944620917914 2.6039999353254895 +3.174094054843221 3.0300365309269317 2.2667618263866136 2.7397422031217196 0.49443200439835505 +2.807676211012051 2.417253831266125 4.877429943794228 3.9106166608042847 1.0426684798018322 +2.8595496537875036 4.245842299494328 4.7037013869451485 1.1403807944651843 3.8234880599176178 +4.0778299519396395 1.430684299332508 1.5372671827129132 3.8088617864453815 3.4881975502862943 +2.255290390416241 4.669301074253687 3.246014778294958 4.6231056265361445 2.77917735777891 +1.642721366290198 4.719245791464685 3.2953928506022896 2.3979421394905747 3.204749649749591 +1.3656819308499526 3.06036027485373 3.782986403852321 1.0736792291134258 3.195665823694186 +4.3402407052688465 2.385538489058728 2.4361181231050737 2.584299604009712 1.9603108185539966 +2.991128238030825 3.0339607364391457 3.233097509739488 1.6462441787553752 1.5874312951984009 +2.3100448399524596 3.0464915287866123 4.7746536792825465 3.8341354609342067 1.194541018358065 +1.269565665026931 3.5995240486518556 3.112258438779783 4.313014908502151 2.6211680924740777 +2.7699435400734376 4.112797839719976 4.773454739890008 1.243048843987014 3.7771713569688385 +3.872473639266766 2.197342672205575 2.2891296293633197 1.2311599304137588 1.981253048124541 +4.970430345673498 3.1297587031911895 4.970123993604464 2.963193685120698 2.723204244736201 +3.622800466045775 4.28383024205619 2.1465579695195185 3.3177013884764133 1.3448186764536043 +4.660232749830252 2.248327009425512 4.044455846902406 1.0458895032780524 3.848205999906198 +4.327671671606653 2.786064354057667 4.5571503420211865 3.211672425943193 2.04618277389244 +4.7903060921682545 3.0562591255093357 2.4709272770056008 1.3822763140910266 2.0474569108124907 +4.795520399609456 4.2859176587737675 2.3974778225975752 4.618380472191332 2.2786187773385476 +4.179341686093201 1.6586642058869283 1.410074052834898 2.1488604984953454 2.6267128452708035 +3.8389643760456176 4.1171441956602095 4.703280722873533 1.2829547852487355 3.4316196659346963 +1.3754036269943546 3.8561741344337417 4.028433771724686 1.7837185986258826 3.3455894127823074 +3.969041562148701 3.2153640260276015 1.3517273858346202 4.966316558684925 3.692327818184651 +3.4630211323272686 3.3902879299580504 3.9866659608138284 2.656068752353635 1.332583599587261 +2.7979311296533163 4.495117771263882 3.8676821681410964 1.347432833848404 3.038436967169816 +4.5324485531206475 2.0109507692024713 1.4518014939237314 4.11009099882911 3.663939705589375 +4.4177925882366615 3.328388690451658 1.5346205503913586 4.5815065704489015 3.2357866542359144 +3.5367337142022963 3.7686438450384956 4.20547071659867 3.825518730428812 0.4451357327589904 +4.544896553611808 2.0384884082627397 3.263355394201088 3.086069658976679 2.5126702973104567 +4.848031886313276 3.522881946940787 3.257954540133649 1.9923879377634348 1.8323976606767973 +3.3886735650119877 1.1076033459639198 4.293171207898878 3.7949485202150184 2.3348462884633174 +2.0076093757689266 3.797643175668187 2.6268783149476174 3.249959661505905 1.895376313350643 +3.4898833135884644 1.540237619485075 4.115861837236677 3.6913964200284424 1.9953168226980014 +1.7654536734758874 2.3092372370205307 2.1891678531706646 2.405191963642885 0.5851213380886269 +3.201670100553407 2.2283519340888263 1.056988226657667 2.461080447279773 1.7084563843368934 +4.852136963708801 2.0584731498084157 3.1738792203768593 1.160113702889729 3.4438073500874955 +3.0778258512034116 4.828446766082355 2.2455365741822826 2.476552061638073 1.7657977639174953 +4.675053253558586 4.100538641012545 1.5249033200739528 4.089507774877153 2.6281672415630912 +1.1989823766851941 4.69570771443557 3.1745403302545157 3.3312035454479796 3.500233056620692 +2.1468167524253294 1.0739995909420976 3.348071247356172 1.9218977973266465 1.7846308782328233 +1.6058000970290354 1.7667621164623073 2.1798212807409976 2.9612301310327527 0.7978148676317831 +2.989290802462854 2.5489445695957214 4.12697343207217 3.592566224902098 0.692456401425816 +1.4683068058840063 4.009722045160472 4.1697952147330275 3.1619003285925498 2.7339794293181474 +2.9715684341807185 3.785343903238188 2.121057583085721 2.5726684030895903 0.9306894470145622 +2.961034234889052 2.667385218552558 4.7887045221684446 4.274763979416909 0.591916063542064 +1.8563822293675427 3.530463397831008 3.0090241895712757 4.806554328170636 2.4563514320587427 +4.771394597815274 4.474925002597898 1.7103472244538929 2.3352317512199616 0.6916465084709157 +3.2959742597422093 4.572918374571959 2.522033433235338 1.902181609390019 1.4194374082440904 +2.071271704390085 4.626371979221972 4.223124970429035 4.17681214969333 2.555519965058086 +2.2737623210541913 1.9200443934644613 4.3002910945416115 1.4572927443426615 2.864918147440224 +4.979261632930676 4.641047712062804 1.9976335367742646 4.576772541145836 2.601220225228844 +2.6346436121746573 1.7307331834096953 1.546374088922145 1.2401955949756434 0.9543580739876439 +3.64389180999093 4.4001416088853915 4.964372143814645 2.862123178774493 2.2341361796766783 +3.116895150342292 4.434378748545092 1.3737135557977402 1.1892176681774282 1.3303389658587785 +4.096955222017568 2.059699700089066 4.666405668576871 3.1650371873811007 2.5307147958543785 +3.6272499234394564 3.248145774089798 3.036441830151526 2.5241373734374757 0.6373192390185678 +4.48197186017565 2.3811239499702923 2.5233613767786323 2.2215846906630428 2.1224116259804853 +4.6383829177624545 4.6657303204112806 2.8981822489150253 2.6366845061588498 0.2629238480971477 +1.004039906955044 3.11414814395307 1.8258513802657883 2.410817948944417 2.189690082710009 +3.0998737252741786 3.507269371253016 2.1376088537928126 3.4548064351299983 1.3787605595762615 +3.40838326116435 1.6512350902713848 1.6110363743333282 1.251178491616821 1.793618518589084 +4.366019388058729 1.6689188249479545 2.8645133210461777 4.650720836669898 3.2349480268472814 +2.7022949592226633 1.0876265930176912 1.8077606063041793 2.355098323768315 1.704914223584836 +2.290745141680333 3.4779067758763778 4.8578384715792025 4.7157593423341435 1.195633398945537 +2.247772133492994 3.9806700540300732 1.6194040720063976 1.7638795657101247 1.7389101101789792 +3.8170871610527475 4.257576517788491 3.475241550786538 2.6446531838845404 0.9401637669206345 +1.1748154425047175 3.414836969093684 2.1745463854898888 3.068725141970508 2.4118980260622944 +2.0539507581534693 1.9237431946151449 2.2474293399375664 1.1071415702343632 1.147697785715949 +1.1260429695945668 4.399978475665936 2.2492372893191157 1.8668782492916192 3.2961875149034743 +3.6669446793650065 3.336579512841619 1.8897226706960732 1.474145110887037 0.5308915628156646 +1.1914027621235572 1.0692455115166877 3.802596767252493 3.8998469359619548 0.15614092733760843 +2.820398949070631 3.8651112645650496 1.0719019180046154 1.3447051228358018 1.0797432151728836 +3.6391584621625457 2.3410902025202773 3.7518648912847428 4.543457402695836 1.5203946562694928 +1.2358366146893522 4.713102981526062 3.246638489244982 2.1555547009626266 3.644426596734574 +2.3405956711192544 3.6861615087418653 1.3816085280576504 3.9246671482249673 2.8770982897677193 +4.95270365842862 2.423090336446619 1.406781364556355 1.5505057199023078 2.533693006081917 +1.7778084314520926 2.7911200040496507 3.1917667713799407 3.5551294848649304 1.0764909682441888 +3.1625797623474066 1.045360037855271 3.2504714161622106 1.330536323297277 2.858106037674746 +4.151521709863696 2.4915146397362227 4.184675006589492 3.435924374330079 1.8210576548209745 +3.8287694966013843 1.5818656840475298 4.908811754145615 3.851673222454122 2.4831670539969504 +4.149495070184492 2.778814167517986 3.642840963705501 1.275906386006361 2.7351682639359636 +2.373927985474691 3.4687368443469877 4.022108469656944 2.803228437673817 1.6383757108283952 +3.18298072407093 3.82808384349952 4.247837961071104 3.3221275137700714 1.128316386010048 +4.081375027590555 3.3750519382600843 1.4274915204128096 3.5001023516630845 2.189659326091001 +1.1205264914843895 3.418004782596218 1.6925659558493495 4.845887681874558 3.9015182180726424 +4.200701595157836 4.66046295886928 1.1376709121495359 3.7944231064752705 2.6962404814141507 +4.834694744996751 4.717806867341091 2.4220606267295173 2.3097035545834004 0.16213231511358966 +2.6283682683812843 2.58584802132319 2.3334484347321256 4.550665503853244 2.217624743506422 +2.024035593112944 1.7597547964994678 3.7604118749414854 2.263944830500519 1.5196242807209075 +1.601299202494335 4.021130698646998 1.5603272524109792 2.481651379972263 2.5892899833350063 +2.92106833750882 2.0812786238855017 1.8799987052993488 4.330240857823592 2.5901608770719573 +4.88833380996288 2.024383907318275 2.0124258944964857 3.174046633841916 3.090561726763513 +3.8031493486317025 1.803992714910474 3.1418090547145754 3.966713302564588 2.1626590725938724 +1.4227472501965073 2.585369318118919 3.2395107137842194 3.6734379664237267 1.2409604882523275 +2.2422630524405625 1.9837996897891745 2.332946041336292 3.425842125689856 1.1230428135331332 +4.5807495361231 4.3176357665039315 4.2976546582283035 4.164263762951091 0.29499489267793266 +1.8718864882971689 4.990706677954404 3.88652938352479 4.820319072791067 3.255610934862089 +2.5669190989694552 3.4179339369129735 3.8321440463520053 1.113612817458585 2.848620419934675 +2.584889688260441 2.4106271273432416 3.938207212818863 1.6089254488994338 2.3357912954425166 +4.117448580633176 4.224788262023775 4.404667799103399 2.458839319064646 1.9487868741683787 +1.0561008901904683 2.0514766199742143 4.104163215155528 4.6977071132856265 1.158907762701587 +4.642916514368586 4.671941910819411 2.388033830073942 2.6997204248889557 0.31303515302040125 +2.090888690061225 4.99838759062909 1.2051657813370644 2.919862738542245 3.375460785115426 +2.1950103965006442 2.4714257105802617 3.860878161044095 1.6314194802589834 2.2465287523612565 +4.72563587408987 3.082873961945879 4.276833297752622 3.8312603525171247 1.7021169024238076 +1.4730882240045489 1.2328064637911762 2.301132372798896 2.067460805783795 0.3351682048204001 +3.174153440205337 1.9220954219717221 1.12755284439796 1.931050875592578 1.4877023785544992 +4.041687805537823 3.3954143282104576 4.607267177405038 4.785095172200956 0.6702926250750049 +3.3096687238657347 4.467662103051635 1.494152156944745 2.2758123355983346 1.3971189287713273 +1.8105221028990592 1.3466675739355423 1.761293203111551 1.119088510728266 0.7922044502267555 +2.7248755645787837 2.201820196081588 2.6871075656854684 1.5012757676448318 1.2960648022988768 +2.6366310669316504 2.3228311313668333 2.721831883000295 4.06450965540707 1.3788596738159047 +2.4037878997163316 1.205927350796379 1.7498709251249038 4.44906899926482 2.953056067550943 +2.084334111075644 1.098260317105523 2.035297063460257 4.127710177151803 2.313122168304774 +1.4104587042147094 3.0889549457619743 2.696858926978652 1.6796364645039272 1.9626744944211805 +3.541867552148846 1.4691411360411002 1.4599490034634455 3.2128906274625613 2.7145900488249635 +1.7689121516867363 1.5327650684676426 1.891247115872988 1.445058855294901 0.5048261173816033 +1.6284099609802025 2.9703741035025355 2.498434102772945 2.305061619855575 1.3558247220659936 +2.1501333417509545 1.3620900499011417 4.205051406372684 3.945305966198501 0.8297469032908584 +3.1653442490022847 4.525218933729674 4.969415786738938 2.851249435168198 2.5171189584699634 +2.3152257537510077 3.736935255056133 4.122351047617114 4.632130230979309 1.5103419221787808 +1.1840442227066497 1.6083762738780667 2.352735558167692 4.3605043104273555 2.0521191613065914 +2.4768030640601624 3.2906915983824763 3.4111906970473087 3.84485923110351 0.9222163215492226 +3.3450268599435913 3.4949113319459206 2.03439677136853 2.563437981084585 0.5498635799225513 +4.4083514308887 2.738792857527655 1.2229965721887175 4.775307088800746 3.9250905513523873 +1.2009095215949066 3.151889231160173 4.084385880094102 2.1411615616648763 2.753623536155605 +2.7125802940691566 1.8087438796395428 2.8651464773375057 2.8274363612506055 0.9046227483897739 +1.7542651788614876 4.1127784846152124 3.1668379356395295 1.4052837921554233 2.9437489726271475 +2.4963759687524503 2.458922838439226 4.34527985918977 2.933628312532632 1.412148301755077 +1.2103452486967283 4.796665421939206 3.96967167160401 1.2907634111605715 4.476409482261206 +2.5461954928810395 1.844672038365168 1.543278690408286 4.654752486134225 3.189577454573734 +4.181460735120305 2.970655796787496 2.686128678400173 1.0135954001413823 2.0648041470256238 +3.5793534374650955 1.360072193868774 2.2942948634406557 3.3072764630059046 2.4395370378898136 +4.670595441287843 3.1213213115161813 1.9507066578640795 4.10004763293972 2.6495125884431734 +3.58126016457787 4.524048922246678 2.883481961485957 3.688218766749951 1.2395369971619217 +4.929839631376954 4.9619743031761185 3.9530275912013786 3.308126056384624 0.6457016545902957 +1.1983921989011939 2.817314786593585 2.001015021706238 3.6764077964323674 2.329774945041934 +1.6308125790012356 3.509804679787018 3.4199089019047957 1.6143511366755314 2.605887595118996 +2.152841286846859 3.610966363538471 2.1820291289293774 1.1538717108940335 1.7841626651003613 +2.6454314774300207 1.2246575092486824 4.549422333237892 2.9910424017697355 2.1088259007003027 +3.4524514533628725 2.574004102456922 1.9079798282821674 2.5971573702102013 1.1165282945862363 +1.7824440259285783 1.9108769853449528 3.8100067920818432 1.1024852531673264 2.7105659757236094 +4.0768055099203275 3.5304334477712493 1.6852944619696637 4.172701186506143 2.5467066269137346 +3.43685295432656 3.115687969551223 4.423335942119584 2.092502254143029 2.352856270249445 +1.8582030768838664 1.0927670928357616 4.134657414512727 1.0289822883564295 3.198610672604846 +4.762214490572587 1.2701002365924725 3.855030778560342 3.024676419152681 3.589477723156727 +1.1977798308458376 4.654077471515405 2.1217248864812 3.2150663105642274 3.625105357160523 +1.860916243940875 1.9742195776023728 1.8354361802124508 3.340223280844548 1.509046673780358 +2.3002059682474836 1.0229035992428357 1.7846938976215703 1.4559647981973756 1.318925381768479 +1.858940244767683 3.8119519710811467 3.745824477928363 4.983137869912605 2.3119686920677465 +4.655313155729127 4.562168008951885 4.825005815946167 1.3687097126462486 3.4575509789523498 +3.2176593827968425 4.285388659708728 1.038591670039334 4.0280179739915845 3.1743842608506596 +1.4397075533737396 2.182769303188177 2.9374276593762056 1.9368791963715202 1.2462896897825693 +3.3962701747448256 2.6525531631126653 4.327723028216477 4.9551064306199955 0.9729979069877212 +4.793484322148975 2.663999357598913 2.7828871715845014 2.3732115148891473 2.168534149588968 +4.262483238073369 3.3876418089085005 3.1024143794359182 2.141040636300995 1.2998411442066613 +2.2827369482273077 3.379835063920416 1.1984404653632401 4.790191039323695 3.755568726704735 +3.312545633641289 3.7678376393835347 1.5467126770147925 3.0492945573169425 1.5700455781617113 +2.4321492515471648 4.848629950951707 1.4010585322696625 1.8634862940313517 2.4603289222058478 +2.777451622067537 4.345802213524864 3.9541497709949742 3.836807257961815 1.5727341933999799 +1.4618533642283058 2.5596152377740395 3.6548871014300457 4.052228975332468 1.167459504979478 +2.156289830739803 1.283954188786808 2.369102839443664 4.75523780985426 2.540592365815091 +2.525178942845129 3.3926288159303786 3.2939218644378805 4.670044886796182 1.626709517701351 +3.650552711393468 3.605130583400455 3.5057995730100124 3.123427364801668 0.3850606125294292 +2.203811586429204 1.0590316521146121 3.766527772807999 1.4726101508203673 2.563704186226389 +1.6151659683523607 4.966830486504202 1.977782673700987 3.5863259880996297 3.7176695168525384 +3.364918290453824 3.203289868025028 3.015882531337629 2.2899984132895015 0.7436608768594252 +4.316678228088049 2.408947273967071 2.052605405063265 3.9363334270782855 2.681020077178826 +2.4271243148535557 4.1633267889535315 1.0145909235813635 1.1801445066646101 1.7440776989407836 +1.7351802689949194 1.226280051739058 3.3046871919134646 2.918558251496481 0.6388074747141 +3.3609384945814584 4.849119556400025 3.9019965700332175 1.0536235952237107 3.21370681244892 +3.1060028615050705 4.619277046978514 2.401536540727092 1.2314921908146954 1.9128519391689038 +3.876981254735642 3.626869292128361 2.047022841257118 2.50342794611022 0.5204436699348325 +2.607027568089019 4.316112439886485 2.5610343594343146 4.3334417568296395 2.462193956890608 +1.9658932981196666 2.818831903895524 1.3582291233959465 1.909907575833953 1.015801840964692 +1.7337094110533142 4.3957565438302275 4.34155758145992 4.937285900273119 2.7278906075870757 +1.1256797007047994 1.446497474697774 4.9548940852897 4.854054051869095 0.33629266487700255 +1.6459284755989372 1.348608576199707 3.344989835325153 3.875697112910554 0.6083168064922061 +1.1707418069267699 3.5464302990320413 3.3506670106645022 4.7785264668831 2.771764499057286 +2.9119149940426916 3.678729258473756 3.489120576548255 3.48885917340897 0.766814308986573 +4.067003660841088 2.1249911531782124 1.8690659717614224 3.8623273954373865 2.782894838658799 +4.505499489668418 2.4507692573984934 3.835601369170692 4.428115169533454 2.13845479985534 +2.8118246958425113 3.7728444009741837 4.357646018374705 3.411997103237562 1.3482621200461808 +4.765190350814556 1.714662459139082 4.382539512268939 3.549455155662501 3.1622381256180523 +2.774568062879188 1.7297684405330673 2.657686224175941 2.1516741835399062 1.1608851950659205 +2.0465319103733712 3.312994285554667 3.3056849018594736 4.656030372385579 1.8513130036598935 +2.409955391751652 2.92437996976961 3.2237834533168916 2.0761935919511774 1.257614860113514 +4.227541233983496 1.2245765276570015 1.1223977280027353 4.572701267285266 4.574100079865779 +3.7330642813992507 3.6521019912219126 4.06019586349545 4.68013585279774 0.6252043528054514 +1.1842183925913075 4.315414258444392 1.9321110835716038 4.950821429397408 4.349367735927969 +1.9186762824587968 4.388853427585653 1.535066802760619 3.0774544703884685 2.9121701264791424 +1.1022549497426577 1.923025367746067 1.9597827808670147 1.8630908423183707 0.8264462535759878 +2.1991214945842303 2.592432644799179 4.326717744433941 1.6343067287251039 2.7209870889796033 +4.796676472013642 2.1847437124881766 1.8021219202066776 3.0635492049348194 2.9005846884617807 +2.509211535012013 2.2163471478979133 4.913484330124442 1.4579584654774385 3.467914149814574 +1.2643257293527688 3.4754716317111463 3.5750928380479956 4.831129939396034 2.542989461535188 +4.216299721519606 4.883345194757061 4.5293838668434745 4.904275728123897 0.7651755164802914 +2.931220624644384 1.253756941038032 1.5846111089359693 4.314778719369717 3.2043251381343487 +3.009814069718619 4.2008021400693805 1.177334448747673 4.044832786399962 3.104995861536126 +1.7571985876664744 1.8383187773723737 3.526766100311691 4.304521730086382 0.7819746190408915 +1.2011316665307237 1.4424563929452385 1.6962760604628575 2.9320415065172654 1.2591083596105181 +4.16632042891311 3.7718419225807147 2.381148920289412 3.043736724482646 0.771126377595689 +1.729311076810486 1.667026358402814 4.474348039975734 1.6548923456551878 2.820143577618642 +4.2566774402154515 3.7994666944806106 1.8555429636908118 1.3310737439921523 0.695779870667965 +3.114340941742159 2.894422679091705 4.229094742247584 4.857858338729795 0.6661138810356965 +2.97335135094813 2.9513258610314064 3.386462213638312 2.903998351278285 0.4829663556495694 +4.959624241993211 2.075189606697948 1.5664370159685874 2.509466035599936 3.0346773958952835 +1.2443733505997665 2.7813244949590974 2.6404069751784727 4.468202178910055 2.388106808107969 +2.3458466671451546 4.1031099216349975 4.049012461229632 1.7752909937894685 2.8736359298071292 +2.866181558165135 3.025761349898247 2.4727180664927326 3.204206056242187 0.7486924529319642 +2.990245116093938 3.147235513836601 2.010120838431566 1.7507770097327446 0.30315871497874386 +1.88687902586436 4.28492748119702 3.450777012958843 2.6374776656195515 2.532210935626389 +1.9637581806028437 3.3251012311004278 1.5003391658015097 2.740186648429732 1.8413247082786914 +4.794633905206625 2.4437891156132125 1.5994992491626547 3.3497888756494563 2.930867619212066 +1.0756297735980693 1.5640172691860208 2.0891355458535976 1.0898818556951695 1.1122186309992776 +3.070892899800078 1.334561336186376 4.244022226251741 3.2881049676002165 1.9820759582289094 +4.136795903271432 2.4756744137613174 3.3294435616978917 4.478055354857137 2.0195627383908623 +2.3090519133712695 2.5697135735303314 4.0436798931763365 4.2772459451079605 0.34999657382866534 +3.3507255225550887 3.9674315036003884 4.983199441651033 3.9118274995220728 1.2361893485377657 +4.584495237794342 3.985115311848809 4.330485830729248 3.6142241113098232 0.9339631397074212 +2.1081335480399437 4.3599558859377865 3.8515497925778295 4.112944877911046 2.2669431470798 +3.29690546523124 3.5046069832363527 3.433045696452742 2.0896659127993678 1.359341444858581 +2.52944635461387 4.895618327139579 4.770428404073119 2.5741858885384676 3.2283511256689814 +1.2964401566777917 2.471995727690869 1.0758080113416946 3.4909401212633657 2.6860368591876367 +1.7432681204642098 4.989840117079368 4.355527815088692 1.07253875686096 4.6171687088137405 +3.925284600878889 2.026283263592545 3.260129272904719 3.863503563021443 1.9925527880056737 +1.6632184032036088 2.019584719515338 4.65944151108811 4.362505908908018 0.4638617285826082 +3.7484468198647436 3.673944124706364 3.7711473144006016 4.804758645880922 1.0362929297020138 +2.905865639365621 2.7328955542635542 2.272703738346369 1.1609888793068315 1.1250904755394184 +3.2730834378472666 2.6212546522448683 1.5945986473600016 4.010574508220682 2.502362908532933 +1.6415717904228102 1.2455471724677398 2.5814715337794545 2.498456822281975 0.4046318578059187 +3.945006992836526 1.8817818334324938 3.9686424612942144 4.767226309911225 2.212382024350621 +3.2958679420317623 2.7181704305356704 3.0439828856955446 2.967803206468265 0.5826986856995203 +4.188499771308066 2.116420193564537 3.797390330930074 3.2152459358575274 2.152302458581549 +4.879238620372744 2.6418435828767364 1.245632036241378 3.48176451544427 3.163261768864195 +4.311762279892139 1.4343949925524133 3.021955531474689 1.7921165743791523 3.1291766275879356 +1.2454202122961582 2.6109757237105273 4.033451808433535 4.645217998296989 1.4963287492440314 +4.044446107845939 3.7955363298232467 3.1715322889790927 3.2424198947278704 0.25880712943058604 +1.8582703112082042 4.586564715938669 1.379952893202001 1.1102960377307256 2.741588076022038 +2.5488550998043893 3.268769144507591 2.3479558461938446 4.18249159539434 1.970735306137165 +4.892496696084527 3.8841798123524107 3.5138115790308824 1.0734226229169197 2.6404926046369157 +2.2179832088187754 2.552234552766462 1.1138047690471629 1.8685450291548316 0.8254434088162713 +4.490280750143672 1.5304410200094578 4.440461666187915 2.046668301398804 3.8066912012125895 +1.9521447261212348 3.2284358649711686 3.8519606465376026 2.2399499731161203 2.056087907248044 +4.604759889884209 3.1194047328343117 2.3893979850604015 2.1965902413708602 1.4978166672197821 +1.0616936271023745 1.4590823362890806 2.6923209121697185 1.5899496402683542 1.1718106533491273 +4.853795447332693 3.5892276414749076 1.8716478509956809 3.445520788843259 2.0189620501883985 +1.7961134088183788 1.8004432969691173 1.9090326606000954 1.6538822592804547 0.25518713765582224 +1.0566175684719532 1.9793018616802978 3.4578961315318058 3.694335136501768 0.9524965658754724 +2.868159311683618 2.791880343688774 4.987395876450977 3.8440425030220866 1.1458950290011654 +2.739173064996481 4.978299855865037 1.8363507262653167 2.000791668207654 2.2451569230172312 +2.7472532557291705 1.2435546166812137 1.4326412038735596 2.335899698524371 1.7541338333301504 +1.115737838174884 2.8813255455093048 1.969616655714863 2.758789542735211 1.93393221129864 +3.1438201965888 4.900189977769597 3.878565953885788 4.933441177830497 2.048803686627267 +4.325949755740054 3.0040046493427077 1.3488213106532605 4.34015183051005 3.2704123812379655 +2.644783032420369 2.6541501307218263 1.6256625941461929 2.9986304915318085 1.3729998506125438 +4.336836523679958 4.102339230465502 1.297395777139907 3.4322340871453667 2.1476786515658888 +1.4193113010117435 4.825397122250999 4.078067463984984 2.9216611198474367 3.59703992949879 +2.4371768443745654 1.8452180479472826 3.8029546232779463 4.55124842362322 0.9541272600145171 +2.6545584519688403 3.719039869707657 1.0858270345379646 4.611792806049071 3.6831447582981522 +4.605366222808428 4.277947271038829 2.0115557852223502 2.2212995921867065 0.3888388284852788 +4.283249858670409 1.1137329163000569 3.0502580508728583 1.7002593548420095 3.445044865782984 +3.258545050559615 1.3448553822937561 2.859517851641078 1.8374924524994762 2.169503183431184 +3.4101039365588437 4.977983950910843 2.6021660281447465 1.2221403430129345 2.0887121943982496 +4.968171077780312 3.0110193204306666 2.6082045602103308 4.325825294871686 2.6039708119399916 +1.9319589679673488 1.831464856973302 3.546329917087728 4.557393701766087 1.0160457878622455 +1.1684481030764267 3.507309953452935 2.8983416427254767 1.6430983565158144 2.6544133933359095 +3.3105400152092406 1.816959184132183 4.270236897121817 2.3352914463881205 2.444339910134403 +3.878765520087798 4.183435944424671 3.4161712865222555 1.793143542020065 1.651376131258254 +2.6310863030950413 3.0610562009268185 3.9875793329832536 2.5680328369680616 1.4832351018602812 +2.8353978458715665 1.587060275359351 2.339844759807626 2.6937057757869303 1.2975223730565288 +1.0275954459690624 3.5754490320737835 3.3321381176413767 1.7048647425463095 3.023173255623961 +4.463673530086244 4.679130398748605 2.3828914390110394 2.803380624014106 0.472475202479805 +2.461774705104727 3.6466760762489843 1.8023802751394582 3.2286730297137667 1.8542659682717335 +1.2784827681011692 2.954888180179022 1.1290296727230311 4.648646146285531 3.8984657529105524 +1.7255336745410395 1.1569343529572618 4.649761607819264 4.9419331930024395 0.6392725738634356 +3.9814942230329318 3.224058195649804 2.0912262292365145 3.950028496383108 2.0072008379649633 +1.2274661759359797 2.5592455784021175 3.2718737654134524 4.195858387013823 1.6209207129860002 +3.798852945354608 4.309192378824507 3.5944705294449566 2.4146993249242197 1.2854207219314182 +2.6660783307998743 2.3723615142952417 1.7882027210460105 4.706016377094959 2.932559649815046 +4.728268502730094 2.268694353947955 2.868542619215648 3.1994008230080055 2.4817276531428845 +3.8092680422015333 1.722656191162061 1.5423047296671384 1.1707086689917108 2.1194415890059033 +3.173952245932765 1.1827708181549648 3.80585442999373 1.7098089001083974 2.891056959258936 +3.3087525665285513 1.135805349463101 4.074837618027704 2.434862685542926 2.722355117785139 +1.8994456704799183 4.2213805321516915 2.1686812375166262 2.145261886917009 2.322052964044796 +3.102182900979747 4.197887769806512 3.4335287631136424 4.433462793801848 1.4833870787151406 +1.822613345210843 4.645153197697901 1.323103328524788 4.763051769823008 4.449716451378415 +1.5820738321731844 2.6584487035998547 4.300123818988858 2.0256393288771637 2.5163192483461705 +4.66446123051878 1.8050086823158975 2.530050966656274 1.943635647742382 2.9189641658781698 +4.4289555451796065 1.4354655859845429 1.6898400495057522 2.9943348300783383 3.2653772781016874 +2.6514469372976985 4.362791657276123 4.219703667989911 4.785579188284746 1.8024749249481897 +2.6588566065198056 2.033522898792904 4.0798700866841955 1.5023239984696826 2.6523171158233345 +3.0694895718079684 1.6543741094389595 1.0567985043486745 2.502620277950381 2.0231046371497046 +3.6571000301080927 4.703346918554795 1.6912613778578338 1.865462397317128 1.0606500585796728 +2.2611831342812088 1.5503457939770864 2.269743984016 3.8228220562842976 1.7080226060949109 +4.876844941561833 3.477564803901562 1.103482199101546 1.7003272206565296 1.5212524062119068 +3.2716397310915917 4.572468911191955 2.155352278265552 3.3415421110831804 1.7604553034032127 +3.669882430571737 3.287732478903194 3.961760167673032 2.927566057207126 1.1025407220065098 +4.940906403145479 4.117120648565181 4.359581082547734 4.253595422216019 0.8305756616018677 +4.263388112548633 4.8315473782503044 4.667850823407399 3.684202272154036 1.1359442871837957 +3.3137991456166103 4.154612049027012 1.1387410806382903 3.418769886225494 2.430122978955765 +3.3534045686703893 4.194155906592135 1.961976603400101 3.2567221407851825 1.5437709735565666 +4.597353959245456 1.6197990058364935 4.374976355668263 4.182604342594859 2.983762807594492 +3.867860824973555 3.8698076557251477 1.5567491368219701 2.0070398531372207 0.4502949248544522 +1.5163247871018917 4.069373962346991 2.5527855365488024 1.7523346811711664 2.675589965427153 +4.208585187199425 2.745466585082577 3.187596564771396 4.264114899124335 1.8164822509615628 +2.531250280678819 3.5382042118372534 3.0092464896859945 1.6817793099385456 1.6661708594205071 +4.455514294865585 2.0228366743386093 2.978609936442576 1.1053801920604962 3.070327357245566 +4.258010610217418 4.731875360529019 1.8324184529687755 2.6830150426995205 0.9736849388017921 +1.9514753337984199 3.191834759824798 1.568091379674558 1.1546101723896993 1.3074625097914776 +1.0097381974612003 3.9020366297916795 1.882109810429001 4.818718413564899 4.121778779807708 +2.50635139851666 4.01823976410474 2.3607200430088744 1.2974094915092258 1.8483602892648072 +4.928801431874906 1.722442588287998 2.561549737637105 3.4573626415548913 3.3291467063909317 +2.127797289564358 1.716201224343521 2.7003364908321945 4.190065003966604 1.5455427408360252 +3.9830294529223793 2.056231385066818 1.4657702089159512 1.569262325397764 1.9295754487621906 +3.300073551888457 2.3157838592016784 2.3689590844911996 1.1357346897766378 1.5778683743736455 +4.308994464550617 1.071378423443833 1.1771253151121397 4.013662876287255 4.304428297182941 +3.275082615500713 3.6926981594429864 2.3012996602943705 1.658320881737509 0.7666971059138508 +3.3491464783089806 1.52213303246265 2.6058964679656316 2.3795050163403246 1.8409864803067664 +2.7991118871800227 2.142676533558306 2.610486804027488 1.402196414198941 1.3750901932733326 +1.0109701986693076 3.358107759798901 1.0766803418837916 1.6051511884606011 2.40589612546905 +3.2915405423496926 2.357528246402284 3.4575589815230523 2.90730181708765 1.0840488531396724 +1.8658438527761971 1.929641541977904 3.452650770584999 4.961427200615518 1.5101246508030766 +4.766552189014304 1.409643248033746 1.7443768144848208 3.8388965770742414 3.9567474867513157 +3.7649450376573865 2.4322137244435345 3.793786973478076 1.1033483451684347 3.002437803838971 +1.3720685054816006 1.359514027500734 3.0128607443784423 1.0795316825024281 1.933369824014992 +3.7801950792081738 1.2292460813065378 4.697925186397862 4.426506916367604 2.5653476698493676 +1.6976387876721715 4.696536253270402 2.208708910358291 4.063911089405375 3.526352383740533 +1.4055688459694706 3.544664019294991 1.9152699290269477 4.917336921566605 3.686208673995633 +2.151428942214667 1.1087859618164524 4.989212180378421 2.5369150837294145 2.6647449098941567 +1.3640854929345076 4.808370043443326 2.127689571216013 2.1996217103537257 3.445035601777529 +1.6643369975175362 3.773581127918221 3.3405154704824875 1.0152508180009727 3.13938951162638 +1.3247283560043668 2.7900210948231257 4.612867517524029 1.629288570605956 3.3239774582460293 +1.2683254506010853 4.602777916860883 2.8729866060455582 1.8457702745874047 3.4890896579710295 +4.491743709988244 4.294688487912353 1.840984595708794 4.772808206343225 2.9384384363843474 +1.9183080612544967 3.53193899766555 2.7484014924885156 3.161785019499321 1.6657402976895006 +3.557347526615827 4.957994400934014 4.254985356212551 4.0908476218735945 1.4102314924760522 +3.3722363406548026 4.258131228551191 1.8269236690507182 4.989276130182066 3.284095437228408 +1.275311187819586 2.963109202982508 2.112908487102457 3.7604879681336487 2.358639499012706 +3.58213878943329 1.6925797130663964 4.5833061492430485 4.538117872509136 1.8900993316317236 +3.763554021663491 2.2051463855636992 4.857542868575831 1.3037851428485578 3.880441770394245 +2.9889623460844175 2.543283300419474 4.469078294052853 3.9104273465331434 0.7146472506834991 +2.2423355330730708 4.229081603143439 1.2239804865860875 2.0935747528963247 2.1687217744421927 +4.748959616162786 1.410361313196347 2.5241496250424023 4.64381662208773 3.954646230313597 +3.1685412431260174 3.5171943745679988 4.052216335391337 4.969118549696185 0.9809529431432646 +4.5976860622161855 4.686959660964846 1.7673167532638563 2.4075100007237213 0.6463877857190256 +4.81897351092486 2.34214900443235 2.4764056573390802 2.5878835697156184 2.4793319585948344 +2.936872566874186 4.4296501672340405 4.031235006132666 1.2136605903954854 3.1885906843545846 +2.542516891318857 4.546529879699634 4.535042163589619 2.4676422117093137 2.8792725849828007 +1.0126790120304445 1.6297236179998804 4.507947951140361 4.939341654593951 0.7528908108984866 +1.4311628375059904 2.6253779059450686 2.7608342442468987 2.0007837436412026 1.4155657502065813 +3.7129016261057637 1.9650232372739045 1.2682545539821928 4.661025884238619 3.8165398152718666 +1.9048777150871992 3.6439035927731775 1.9585676807080294 4.609903713806416 3.170771793060386 +1.0934146536169331 3.9640751445343434 3.605276316107963 3.224290756247219 2.8958317718639304 +1.9917826166850183 4.012196356963722 3.9729337824627153 2.910834194204851 2.282570309384687 +1.6880499269732887 4.801214928538009 2.727420581826504 3.9050856326217267 3.3284668090326486 +1.5563446077105447 2.850498485009214 2.609708706109618 4.2664517122056775 2.1022919983616424 +2.33979237388109 1.3441529926867122 2.0836328003808684 4.432170585565063 2.550867990669648 +2.7805334493661666 2.2958990397946364 2.94373622503938 2.636782544808907 0.5736645995246501 +3.7650031711135394 1.308475041550885 3.413948362902011 3.5929782196487148 2.4630432681825423 +4.294581809243137 4.957382378754065 3.400637421692078 3.527250570657405 0.6747855099473659 +1.897608602978373 1.5714250490110557 1.500306109439908 1.90890065227167 0.5228242642711282 +3.0843426885639316 3.545499561672458 2.7715758934550623 3.491341333792511 0.8548262693199099 +4.9250518599332676 2.662467724743153 3.399448686101958 2.4277646372829396 2.462408751516149 +2.0207677036498026 4.990779069140532 2.9725720935527224 4.881996622831633 3.5308454432552128 +4.748241188305482 4.750787682192513 4.230889187349339 3.8246128572878417 0.40628431055032804 +2.022565591172316 2.2965816105488295 4.396084530530469 2.560576303157838 1.8558489247855197 +4.759311006612009 2.616242032046514 3.1501668619115004 3.5231806732217197 2.1752893906727397 +2.632298054517167 4.025539577087667 2.8082569446434382 2.110171798440709 1.5583468200511241 +4.566091005176217 3.8056354024816255 1.636129275281664 2.1272418933837742 0.9052537364345443 +4.503558926679237 3.860996984451794 4.946164939894503 3.198655034479051 1.8619013720184605 +2.0750048412998274 2.7100239544012674 2.9822137238526474 4.840460117604274 1.963753786475042 +4.722883355382436 1.4139330132803805 4.8846211011162985 1.2024112172513441 4.95053754609841 +1.577474551710023 1.1166854094000507 2.5560216352974874 4.631233102751438 2.1257538117861015 +1.1398280001656027 3.1815656125704006 4.161720474903199 2.738297152361163 2.488940825545086 +2.870702094252713 4.938378482339848 2.0715558549704967 1.6732114402918352 2.1056979647040426 +2.2914216504956704 2.9102162191664713 3.7710583403727074 4.348980890815798 0.8467001786507012 +3.803111427733224 2.4164635636788825 1.9256364366451773 3.9332243295030547 2.439918327820831 +2.906213088735775 4.076497188754457 3.1220887611225026 2.038461389043063 1.5949335899266557 +4.116239105249715 4.175108571848423 3.354071321395698 2.4487145062009805 0.90726874569619 +1.1927842873853347 1.5737999597980736 3.8013280326546335 1.996680049268034 1.8444314263657111 +1.317378004381391 2.2953088679194367 3.658727106719901 4.633565027148084 1.3808177812314741 +2.471571653277074 3.31558652768419 4.1560397161880385 1.404303101602126 2.8782660586320366 +3.3910453103340155 2.257490491049806 2.9940850588654047 2.0571886714655996 1.4706193827925915 +1.2411370072919952 4.55386562717746 4.776042855180446 1.986853924569747 4.330559525009385 +2.187836255520403 2.9633887416333606 4.07951362238315 1.7027267985632593 2.5001194500663027 +2.4240343793078774 4.384030682284233 1.349987203102799 1.8473017839164787 2.0221046708741035 +4.84550616003123 2.5125710770633756 2.0665773475558904 4.738428960967442 3.547023702406307 +2.6921981637050587 1.4927346251187807 4.859888425320118 4.667393703169841 1.2148115073761971 +1.7499126825675906 4.750441765136042 4.621076642172635 2.2951678431805687 3.796449198470564 +4.822973957185857 2.372813351764714 3.3458533149116088 3.8060242967636957 2.4929990623536975 +2.7736905145131776 1.8185028462206532 2.749131669469063 1.118559452211222 1.8897484587508628 +3.4135431563808813 1.443808052889564 3.5143395367655477 4.056897829598849 2.0430922345915117 +1.8732736116211854 2.188218922537978 4.065279132078871 4.179174767583689 0.33490709854453893 +4.636641600330915 2.818543500353379 4.432812689207686 1.4125233154348433 3.525284187475823 +4.5406542291015946 2.323399154183117 2.0431901269757877 3.9931223068339516 2.9527030960288156 +3.410118324666457 1.9597296416417116 2.578863132588732 2.728193540463937 1.4580558640060506 +2.531895214185351 3.061876615786269 3.145996207734585 3.1495195401571228 0.5299931130818902 +2.9628539812921355 3.582981487419105 1.1364991137602174 3.775417414687963 2.710802081087189 +4.88164764938411 2.6858633623983756 4.017161170884657 2.854299395267861 2.4846963887292346 +1.6788293994657106 3.649866365185566 4.192905678215023 4.499162297628953 1.994687904703135 +3.8604193278673637 3.777619678574606 1.0523146006742556 2.996911043752547 1.9463584223764505 +2.4123017301362717 2.601485788716656 4.989706178058795 1.3521829204947338 3.6424395749744987 +4.905124412313745 3.1816701448070557 3.638411122617144 1.9401869335857906 2.419557812576136 +1.4901618990735734 3.9472228320161 3.851892344523987 1.5807291170368916 3.3459424433307277 +3.3290075898277767 4.133474940257827 3.8621710042492587 2.587633867408854 1.5071869927428654 +3.0086033427527616 4.76338563595935 3.433451279814179 2.8040852059499324 1.864232429575955 +1.707688790189502 3.6649834611387617 3.6115115974796725 2.820313962498935 2.1111599007478055 +4.101919242082735 1.621150864055621 4.02407406673109 4.064669518488247 2.4811005090730696 +2.057984742297843 4.564328868098964 3.643017208820304 3.337675664502514 2.524875112876706 +3.377678015666 4.052337644975925 2.982295297086657 3.0485355818483297 0.6779036736483381 +4.490997989928691 3.2395042880187903 1.4813769224595572 3.1874499603583817 2.115873743058756 +3.8329208281833878 4.620243229174182 2.765294331019236 2.7392986669671604 0.7877514440808203 +1.6358063322930767 1.6412656517154467 1.1558696759822236 3.4201173006655208 2.2642542061465867 +4.63552832921089 3.3942213301218795 3.306046733182997 3.8523292823573896 1.3561960365374317 +1.7389451344630755 4.841321137915957 3.9044554708289634 2.999933587277048 3.231547106979036 +1.391685041827453 2.4035796116962835 3.934143767272973 2.4065073548257927 1.832376497656668 +2.1506393077587913 2.6354047385213795 4.733781140940932 2.8123714526911585 1.9816187102877614 +1.1261713767209107 3.41125438629749 4.375926499611577 4.427370006831763 2.2856620036852933 +4.434911935416921 4.762572425220202 4.100292099775325 4.174842050934219 0.3360343610345808 +1.3816743876218256 1.9363893433086767 1.0395130369444492 1.1447034520201163 0.5646004830731695 +2.6886786260996165 2.712047738433969 4.847489795468533 2.1584660717604245 2.68912526708525 +2.5823783221720222 4.883460769881582 4.00824049978886 4.181815706929078 2.3076197225042927 +2.576351101577161 1.7231763912050009 2.2416252923718347 4.995860702228952 2.883352177471462 +3.6835735989003715 4.260637090589674 2.934900024837967 4.278506955890581 1.462286517278086 +4.495008923025621 3.0751492103975133 2.2527402754602286 3.0964221646311403 1.65160550182523 +1.5028478876864289 4.008326921271141 4.482917928979711 4.24927795890363 2.51634910601644 +1.2533922520558205 3.560986272460362 1.0860274380682218 3.1823190834736432 3.1175998501416706 +4.33607594332186 4.444175857133048 2.7125567426648254 1.006246586826121 1.7097309552336852 +4.515332334797986 2.5073142901566197 1.8163412045723413 3.0495364170913866 2.3564606722339394 +4.854495303351284 1.5981843571904184 2.8710135999996966 3.282523884780354 3.2822098794207735 +3.7720176064305666 4.992783831547072 1.019254340519467 3.627002241387937 2.8793435520738253 +1.1112680052923296 2.597267901447893 2.5490186232119325 4.380374537875785 2.3584020389977236 +2.700855728793987 4.990643451229673 3.351792334629758 3.1392518659556723 2.299630680053083 +3.201749092118475 3.236117372242617 2.051796667671021 3.62325660151154 1.5718357109904137 +4.217489887387786 1.9140914310470265 1.1979455224662985 1.81929343954606 2.3857321062374863 +3.4232583114348762 1.0270015500707892 4.988482862204272 1.3443279976190237 4.361411599868032 +1.7682645026667259 4.298121866755148 1.6438912246081618 3.7811736776674914 3.311820430939414 +1.8170857552714925 1.1552611946852576 1.23465486300642 4.699571876046958 3.5275574632106177 +3.725231193022399 3.3565139020300068 3.399137879069222 2.8877556634881243 0.6304476275547404 +1.3470571567768195 1.3062319826929274 4.4102232182457985 3.8610719876683355 0.5506666585909502 +4.889828174977563 2.858964111654002 2.0341885962342587 2.598066364005606 2.1076923353957238 +4.724195664024174 2.8826769861743333 1.448490208846763 2.9184718921724446 2.3562761277453945 +1.5122352436721593 1.9484992954906541 3.1162684362817434 3.613332973864854 0.6613618354817594 +4.00827066495984 3.539194944276907 2.210052073973033 1.669856705135786 0.7154320849999825 +1.1215580014005502 1.8475062459598544 2.5991165264254885 4.738186577861496 2.258898301989087 +1.2369798079392949 2.6256485517083727 2.62870620627565 3.3493308963097137 1.564512966966998 +3.2606603942360213 2.866979596512415 4.888151803663424 4.678145841845808 0.4461917463324899 +3.0352278126909122 2.044994623635083 3.2515857232762797 3.452155548841065 1.0103415381121206 +2.5005966288966466 3.5860938560888096 2.211458540146048 4.7112448976053845 2.725295591891216 +2.3333131460134253 2.4606640822650316 1.0897414853342289 2.565506524413722 1.481249712753882 +1.7551904735904453 1.7963045458374793 1.3574731112551843 3.108688120947482 1.7516975701040203 +1.9140692303289 1.155005626975783 4.41633525790472 1.1185462955038057 3.384019739077879 +3.989692016565584 1.1242297265185233 1.9242844079582566 2.127322288192112 2.872646604873562 +2.2125816169249015 1.6430302949929083 1.1476439896083472 2.0763397230695007 1.0894330973783708 +3.7933576046883473 1.997950867048758 1.3832389657629025 3.6975115569963513 2.9290515495798317 +2.0050676273355084 3.0472689432535334 4.986788215007924 2.2777470483781572 2.902600149072557 +4.026977460039216 2.802734535861372 2.959043666528827 3.0712832415138003 1.2293772649566634 +1.445307928362432 1.5360771252034806 3.3805680918760426 3.135246386697553 0.2615755839654205 +1.6145297098827434 1.3170770240765828 4.77759395338522 1.8953190483512365 2.897582911407706 +3.2572275934211055 3.486085605827437 4.180889276886507 2.380307858957389 1.8150673355096802 +4.984715436556681 3.1496677956822645 4.235284876855804 2.0110259457228676 2.8835269440397804 +2.0334149243720705 1.302468187537892 1.1744468752901183 3.5479331553042583 2.4834895315873378 +1.9502746127977133 1.3501849537673705 1.592198908993797 1.3698385650527394 0.6399622812578398 +2.6493818417058286 3.0183169917306665 2.5778957649372645 2.17034272133229 0.5497386909028031 +1.908491443604217 3.020857092879679 2.0461778227119534 4.440559887182863 2.640155830315323 +4.4848506974681985 4.535397294498837 2.605315748186458 1.6065188985030958 1.0000750498881505 +4.985673754676818 3.9104433409065895 2.6394344074838023 4.140289934756087 1.8462631872082227 +2.9431263037801667 4.472708040392254 3.900707916682152 2.617382096649102 1.9966335290535289 +1.9728837631067542 1.8487168698614371 1.3544778725934314 3.283006118116961 1.9325213093677018 +3.137428579755997 3.1266569407217855 4.251001322924264 3.056909686409595 1.1941402198241893 +1.3043960772901126 2.9045376085038193 1.4214175642166738 3.0558051832677853 2.2872856859654647 +1.663279192812833 1.4990791941567334 1.8563337439435248 2.0359501107317297 0.2433591559338955 +2.6390070719316543 3.8656775521882407 2.5627691095739724 2.301121485070327 1.254264703538023 +2.000603895074784 4.017188992351751 4.176560388287701 4.436584604565017 2.0332801203007387 +4.700406044615396 4.765342800153067 1.554535510479106 2.9652402542682985 1.4121985187533268 +2.799127318260943 2.894498721348171 4.012231622902011 3.3009499782012632 0.7176470459878079 +3.2016305253726234 3.6409331005313623 2.2924470888554187 3.3229374249275176 1.1202218910908173 +2.8942567032797437 4.137505266348603 1.617344316871625 3.6949330590939122 2.421165415947776 +1.6041981730590766 1.9227610272404903 4.7923532476757575 2.6672662198716384 2.148831582001147 +1.4958871268068523 1.149446502938169 1.639695816976059 3.119244307440603 1.5195673204904196 +2.281425377098165 4.106883547520136 1.9782428750286827 2.21278911026412 1.8404644708397513 +1.127224151372503 3.389751106349542 4.465058671759431 4.476951638543261 2.2625582124348966 +1.1359391612082606 3.642576577890037 2.6033589808689794 1.8090003739105986 2.629493627137733 +2.5655288347008662 2.1135124466802275 1.6950512664955748 1.8430041498377143 0.47561420366561524 +3.796543098334836 1.8914353362187772 3.112356233896119 1.0353480203623322 2.81840357372071 +1.471875224522745 1.860732300122606 2.059225366523791 4.361730152619678 2.3351098721984247 +1.373752524096592 4.01548826652154 4.897200210385702 3.1779877376240115 3.1518977234841965 +2.170684697154689 2.217420253307754 4.083390895496535 2.0242285984427935 2.0596925930382377 +3.7383829335319487 1.9376041310098442 1.3389187531183242 2.4259097960083897 2.1034148004937534 +3.245217458951759 3.340665160889601 4.390525551117759 4.045746294821764 0.3577471165184069 +1.8263959509851397 2.664376535064464 2.958199625569433 3.8521433803084983 1.2252946159723805 +4.466052725204195 3.369972686385003 4.209189597060056 3.547163787726705 1.2804958507239919 +2.7308136725634107 2.6587138561357597 2.9093757572339394 1.49277112432318 1.4184382501586483 +1.4432647020632645 2.9817038218629937 1.6996523895535764 1.2092942814456054 1.6146968754281388 +4.120302585297308 1.4495908586935387 4.81918297469924 4.492875092442302 2.690572050817799 +4.847388044260287 3.411077635845115 1.902456735015464 2.6816989444060075 1.6340765007237614 +2.5333313706629066 1.0684669216156815 2.027929261008279 4.377014230243122 2.768398101207176 +4.134751087894372 4.295657157652917 2.9697301184984437 3.423137720875317 0.4811124787181126 +2.3574533144257157 3.6003600870197934 4.85024004412646 4.326491887581436 1.3487510433154584 +3.317992696130522 1.4790024906032815 1.9595718038657237 1.4746951320557704 1.9018386795127022 +3.9284931496401647 2.910329256121147 4.410938130832536 3.746490810758181 1.2157910820613045 +4.096875936615701 3.752062164944453 2.5065589592471444 1.435069970318911 1.1256043667863942 +3.771948197942078 3.629237924969181 2.1905709262182813 2.553872902326209 0.39032620698067916 +1.5840165049803314 4.450642112674507 2.0122885105409707 1.0942528184339024 3.010038522456234 +1.6063629519697393 4.65489766774128 1.827868847520827 2.867810468754548 3.2210312772213947 +1.0139773536229133 4.395462864212487 1.5454448974478217 3.188113140759421 3.7593620756601305 +4.775862990242793 2.205408141716999 1.8446510883096936 1.499307011825608 2.593549818197524 +1.4100260198976362 1.5653456483490813 2.6185994350552817 3.1249152095001853 0.529603484159647 +4.892262215935066 4.379997831295483 2.4724897473804237 3.7511063307137897 1.3774161197493158 +1.5994852538923578 3.6105565513250073 3.2270656298074654 4.70194761157661 2.4939295546395694 +1.9349633690086003 3.620938867082057 3.185168944651937 4.331809885091142 2.038945518250879 +2.929264871166328 4.8298789045487105 1.5863090310938457 2.4572395651271965 2.09065867587267 +2.6191743160346888 4.92451573073078 1.0445948323807634 2.4517517750308575 2.7008683232548263 +3.7514569091914405 4.645947416394646 1.3057583829029955 1.6804359688209964 0.9697920193866257 +1.5378506932565923 1.9494661598903296 3.5761588851458885 4.0974860596761316 0.6642358882774972 +3.2880108479553134 4.715661502832075 4.915900162672824 3.202208314462894 2.2304542458860737 +3.448980265617177 4.5216993555082 3.9318606274941743 2.600977577147822 1.7093788168559467 +2.0251701172727983 2.5217705042897958 2.780093588370315 3.5314654027716013 0.9006506247497487 +1.3956093425197866 4.214471227019066 4.912507945153944 2.0081150095119797 4.0474041864496035 +1.0219432007681557 2.8947986676607065 2.1815135028393664 3.067862262237347 2.0720042768188613 +1.8608726930114226 1.4981388684564116 3.414463131140184 1.4541663292664708 1.9935745230396114 +4.027978353253486 4.292736874136514 3.5910849607971715 4.828473596303297 1.2653962658629432 +1.3962946083987293 3.988834054203071 2.155119642599941 1.070572567575525 2.810249657236079 +1.1213142053965361 3.048713165559936 1.3250729112526245 4.540388474898002 3.748749248143859 +1.70880255265112 4.977646656935455 4.343002675051311 1.5041553401611116 4.329479872793919 +1.1426651794306744 3.159836031853508 4.356743515854325 3.700609757540145 2.1212000746425956 +4.759852671231029 2.5559586854826186 3.197394528848322 4.663843637151542 2.6471912827865927 +3.780730388633625 3.8917572196359647 3.6545448002546235 1.6534791899750334 2.004143341641523 +2.833482219845609 2.829170835448592 2.862528441988889 1.6360690338436865 1.2264669860470352 +2.8729092767109834 1.9024992308807875 3.614882973444068 4.026675476028176 1.0541673122577104 +3.9250789021028756 3.1738349585308923 2.3726208861737783 2.8519830198128147 0.8911540371454054 +2.4790265300943792 4.666467531892925 2.5757785346435957 2.5334125613950778 2.187851231697146 +2.5161760391932524 3.505088253094683 2.0509374060125185 2.60828803571082 1.1351595003472077 +2.9083032758939336 2.2799052509145867 4.458765239362295 3.4463813348306744 1.1915558098354577 +1.337865391029076 2.9028960290829753 2.797172906261733 2.115398860664312 1.7070842824235917 +4.913291533304878 3.7825027779396296 4.391637644043547 1.7372472517707478 2.885216034173287 +4.681161754545771 1.5852472113806177 1.9664536561397803 4.6432109879398435 4.092641771756587 +3.069174840815134 2.67776826879565 2.538228122844067 3.8250395829389703 1.345021501111272 +1.1635635632342805 1.9078256521629195 1.1682431027443991 3.0148213861107362 1.9909237588658661 +1.6406061827981668 2.493069606616185 2.146342555503742 2.3411007783466866 0.8744281870528192 +2.680731756347012 1.268296198486873 4.671113642302492 3.3875929600940227 1.908507151352747 +2.6537181074141705 3.777926168302199 1.3756177741418174 1.8555926451439233 1.2223827718677607 +4.339360265681056 1.8550789495484765 4.404243944969224 3.196940424800072 2.7621070666247256 +3.7083800722604683 3.8047176342391253 1.784356683241659 4.361396618341501 2.578840001424553 +3.1125787942904606 4.526040684153882 1.7133718154327173 2.1231497627391227 1.4716631680499876 +4.8044400768556805 4.534612778789392 3.055324079335238 2.7013601722978495 0.4450811367233245 +2.9494683531250043 4.6757954596066345 3.5042971939438594 2.8480899296235993 1.8468387185458066 +1.0418684448520192 1.0100811878342308 3.199502012558668 2.724506101779349 0.4760583419768947 +3.6011751916761354 4.1289903576652325 1.9999124758871312 1.4285335031035822 0.7778578147626221 +3.200209360234389 1.554961940525534 2.4395547160740763 2.234824493320157 1.657936529595604 +1.0606393650698487 1.913471419453348 2.5896250210471288 1.108689761232735 1.7089446324400055 +1.1037969762007975 4.419115899633393 1.811769732777579 3.614765470481843 3.773875089910901 +1.386205312465755 4.39389185744089 1.2118538584036052 2.5818455606786457 3.3050046319372877 +1.0006389847527917 1.6142554409444108 2.4930683863688214 1.1320544002523216 1.4929448167008335 +3.6028586284731245 4.055813093869736 4.674065926814628 4.019454843733685 0.7960423467474171 +3.817822567658611 3.1117382695398503 2.188773830912873 1.6527395331760495 0.886503132763823 +4.538203081801352 4.419943132625197 2.9308238552464334 3.192430893977653 0.2870952077149052 +1.2897969509444618 2.6931100409927358 1.9264705778724873 4.7646342649499225 3.1661428810693013 +2.342609979529208 3.5686038453950917 3.9039508422989693 3.11046502892131 1.4603700541891362 +3.391801803050785 2.9915989323204952 2.1186929302859583 3.3553066036355204 1.2997598681509837 +4.725054466412551 4.166759490662909 4.002986101402373 2.274039616179082 1.8168514602777144 +2.3670852197599355 4.368562616843448 2.1042984302933307 1.3415022256601157 2.141907986081342 +3.8432886156580106 4.761485825253675 2.201715484734125 4.856438223725721 2.8090281124667134 +1.1362030677120778 3.7120460782630706 1.4093879672887564 1.0499818868369055 2.6007960215422825 +3.6020663621001043 3.6608302143934615 4.697757248081832 4.220746043776012 0.48061718588669267 +1.5300738632762774 3.9329677747493235 1.5637194257076996 3.709104936119318 3.2212696469060695 +3.789274545912041 4.617795921229518 2.03318399434311 2.4135862800091026 0.9116762409418567 +3.1720096386530328 1.3942018491773776 4.04573834191212 3.8151732784000276 1.792696512194033 +4.9563739904627 4.903485015314533 3.2407748668509937 2.9393706908912347 0.30600934786082085 +1.2010284258018569 1.1015917557885633 4.445765997561334 1.514501337294882 2.9329507598782376 +3.912588119876139 3.0866382994625607 4.724301767227053 4.667447523715024 0.8279042884576379 +2.9400395088997304 2.6196856997307956 2.57434553825528 4.534437766370875 1.9860987150109644 +3.657685889961943 3.1957576149623255 2.817382730045922 2.733782814191031 0.46943229242891593 +1.4770152506047998 3.7580720380949755 4.030525966696602 4.276728725204557 2.294305094369955 +1.2289402130509055 2.456983538373496 1.2567785585855584 4.298797595023132 3.2805441967633886 +1.1124223348677065 3.477247361456856 4.997561089181772 4.700878514467803 2.383362741279909 +2.531046544244668 3.710665430250607 1.1378215371725746 1.7293447951094922 1.3196213399692343 +3.419858282490554 2.43954964077288 4.205801286801071 3.3821645124226403 1.2803837585407185 +4.861406801269549 2.624500395464275 2.146056821232911 2.534437226068383 2.2703721296723223 +3.9178873103142458 4.260413456388719 1.0537014796183986 3.9568485037292285 2.923283565504414 +4.995964181505668 2.4913782873549626 1.468328999573572 2.8657634468589332 2.868060936528098 +2.1941422323884554 1.6989634986848374 2.0732464409827123 3.134553449185076 1.1711424097742218 +3.0072778950019705 3.510397770258351 2.5108963761691943 2.6872249211551806 0.5331241550097603 +4.705155341053265 3.9332100690061127 4.331666569786895 2.5469668575403723 1.9444928814291849 +1.321750764498026 1.3638148002012507 2.0424924814575705 1.8354817539048751 0.21124115229173132 +3.3673604568281386 3.8280622856472095 2.505179306471253 2.9514111979254136 0.6413806015370238 +3.5222487441421597 3.7101272476018385 3.581185490994729 1.5357414888286351 2.0540544048441114 +3.4705356723646554 4.816421427662368 1.0112085723134316 1.3926004796076286 1.3988810718795215 +4.238594342433263 2.348776432909573 2.927098990368481 3.5701940678594366 1.9962422222389717 +2.9627890054883865 4.586614790128541 3.4838536503830166 3.528952256011632 1.6244519269870252 +2.2535549107380146 3.946367219670597 2.159304755463166 3.9689801708156818 2.4780110214050626 +3.6141307201135513 1.5522080289882254 1.3880996304430497 3.1355472818308017 2.7027945683159267 +2.081252154685201 3.15833998160735 2.175022466061503 4.9751906731617535 3.000176690623222 +4.359329807734721 4.604308929697884 4.887396146398009 3.965305848444692 0.9540782398616369 +1.038526045154493 1.2169473822410222 1.2587561679976993 4.025469621287172 2.772460550871861 +4.097910277987282 4.400086403332704 1.4379620045403394 3.9432661073481343 2.5234617211826977 +3.677150468847797 3.058093563485308 2.7507036853319295 3.5169603784328087 0.985079068805584 +1.3891235742560442 3.573479298931314 2.8481769831525825 4.689707695167607 2.857034353173967 +3.6833985444033104 3.0383007745809834 3.1527660075660684 1.3604408382508981 1.904883367870693 +3.3851420961190826 1.8440642003348438 2.188629596763399 4.230256209554152 2.55796018478205 +2.8669335372277898 2.8447921654418344 3.052587095753363 4.972009164461776 1.919549769656793 +1.5374642505053986 4.820823530973775 2.579051577320697 4.349284834682486 3.7301707668828707 +2.298469372003473 3.048951027921946 1.14644800203954 1.3896400731242164 0.7889011974313309 +2.9227377861939243 3.36635209097106 3.0667132602805935 2.519857429655603 0.7041625883923752 +1.3512910954713777 1.7720473409600768 1.8354857909802456 2.381839459671528 0.6895927417035146 +3.3874904832349326 1.3411119734707921 1.6731229078938226 3.541639660479336 2.7711044476737463 +4.672906169658556 3.6251736614963237 4.277752670023652 1.026131330481359 3.4162530269912295 +2.5710992776541284 4.355018540758218 3.5718161758343276 3.8031300722313075 1.7988535393244751 +1.1129290504699152 2.6627548472426814 3.0010932547151787 1.6287327146090842 2.0701046959955023 +1.6247779124809383 3.4912614052210924 1.8395653290077556 3.95988543716256 2.8248040621814967 +2.0650625417568995 2.756218435527422 3.6885072241655013 2.6677755909626892 1.2327163244293513 +3.7616419771351435 2.265613515103524 2.368646936107615 1.047281879044942 1.9960227386567853 +4.522896591739023 4.583643702952637 3.724969448603126 4.809825934701743 1.0865559382521626 +1.9485721418765984 4.0809685512715905 2.8341117978655896 2.9292334947606586 2.1345169439526246 +2.2343097665806297 1.4421902591076923 4.675605301210406 1.7905166784511324 2.9918538860201997 +3.8730846362755886 2.3984203703373317 2.5717159806355654 4.1214867304133165 2.1392578325442475 +1.6939393763678865 3.994915511457634 3.020874984055908 3.1338471867568667 2.3037477928010386 +3.6100627195065402 2.481266762755853 3.3933467725901876 2.300268856101776 1.5713050765180345 +4.059752194250238 3.44502859524118 3.198578377516285 4.428009102107218 1.3745490204961175 +1.3115751256489463 3.096815648704639 2.7509422249249758 3.3917679202359285 1.8967712821874256 +3.8548047988910077 2.368588480773071 1.8994417005202244 2.4143153176202183 1.5728743706430173 +1.7892452282341837 2.1945466530683553 2.806743302111286 3.790321754283492 1.0638119272456397 +1.417301936997862 3.577989336611327 2.5469196925515236 1.7230109785996501 2.3124436442374603 +3.1488686171461935 3.5193792124807297 2.92222612059292 4.961142365836542 2.072307302591366 +4.063698227646245 4.123882805651354 4.085741889023941 1.4116484512737668 2.6747706251654924 +3.451430139204673 2.4923381607780506 4.090382717824591 2.3394477496228787 1.9964044394745828 +4.0416818645355885 3.742707816985848 3.8942225815608884 1.284364408214218 2.6269269434250915 +1.3349289759769625 3.2687253665166773 4.346774561306685 1.8567407990456397 3.1527506430519243 +2.919960286232867 4.678512178533232 3.209599229064554 3.999406771342498 1.9277709178614355 +3.4377217800927036 2.0290983816551136 3.3693785259198537 4.621258561476079 1.8845220885015175 +2.2695140250123425 3.6540988485591743 3.1265350508026297 3.3509575029935847 1.4026548294728869 +2.453108920744653 4.790140597382813 3.39731820992714 1.1952430056456937 3.2110515821022467 +1.0396053595563886 3.5065083272990685 4.460032100327856 1.7728084819254657 3.647846080573751 +1.0334737794105182 3.996617874937614 3.820043532746333 3.138056176547733 3.040613373132442 +1.005409123471054 4.429628893871647 1.1580552928979548 1.3497562748077714 3.4295816512320387 +4.842058303290588 3.1738747880712324 2.75406875025671 3.342565077250757 1.7689443652458634 +4.443073739597235 4.493020137590075 3.712496680432309 2.1243925197172575 1.5888893819120693 +1.6363054366110323 3.477781444057883 3.1531287952251588 3.3826623343006945 1.8557261467045547 +1.2818648917007605 1.393830387301386 2.7123911000739778 3.0888522334836748 0.3927585227251057 +1.6864319370303091 4.516854853119643 2.291350829396358 2.5485600033437406 2.842085579831533 +4.159828014142395 2.1757372105821564 4.553777160424597 3.3611375531320666 2.314952602032101 +4.8874824127913925 2.0256473701471074 1.1625561746536501 4.644160091629396 4.506846530114784 +1.911039440856095 1.0026232439529958 2.2755923789008556 4.488533500102981 2.392138874042059 +3.7906686397125395 2.039538767284267 3.640134747619542 2.2855779653847934 2.213883444630456 +3.122906042954451 4.9917908342531145 4.550100328555406 3.5270103933673043 2.130596953586164 +1.7010187684152696 2.7814807076426935 4.647326600707063 4.8466986245397266 1.0987025102393357 +2.202335183279183 1.5346543052377548 4.343175227935859 2.5793960167348042 1.8859254653265562 +1.9247680754025427 1.0595525708629139 4.251038174950363 3.6013368539001314 1.0819933806961022 +2.1153851796958576 2.736872532122053 4.347187771048942 2.68484299917903 1.7747215752869383 +4.573608189389587 4.96452281492207 2.56511250019403 2.337485906835511 0.4523583871878645 +1.3451826590352693 1.8618237624362872 2.6093941633928885 2.158914160161357 0.6854562444349763 +4.258281745716491 1.8376422274291553 2.6157769749521878 1.1392780492516774 2.8354090983646625 +1.234217197775748 1.9309468171013013 2.666110078413544 1.67446954244069 1.2119336264953042 +3.581253101814592 1.7313835083307758 3.145442039472266 1.1143879615281764 2.7472164422246195 +4.045443531164244 2.12355572363381 3.2523337861332675 4.492499372168755 2.2872829788902123 +3.0491316333899854 3.3776605203517067 3.9127548247059276 1.8900456237889305 2.0492153964487443 +1.0679131029002056 2.2221811684389157 4.4630521719449465 1.0422202089713712 3.6103221582047382 +1.8279287728467088 2.751859799405135 1.9088455089907526 1.099486083141906 1.2282960644924668 +3.0582052263232615 4.864248581015023 3.508012907508198 4.150252085706651 1.9168369156084444 +2.259267275533794 1.8875933815704178 2.8453188883439555 1.1335594236509303 1.7516454973595688 +3.4344915272196155 1.1980432019279914 4.849409723000305 4.264510861296137 2.3116677508073127 +1.2959400681329853 3.1626590734470685 3.505352218568792 3.2767332524324297 1.8806664979411047 +4.751113088692275 4.2738760881388576 2.078121304263025 3.687559144475815 1.6787034628563895 +4.190230382160303 3.8088570494722296 2.2321779064161014 2.6285945018691925 0.5500833900748392 +1.9560734889328852 3.5908922057503663 2.3006547763078777 2.1544073169818017 1.64134717723463 +4.46238557919124 2.313260220750542 4.461683390214705 3.0774918054382665 2.55631104321418 +2.9333504943584057 4.78390091948482 3.712570316657998 4.042168730612998 1.8796733733330384 +3.7686931946310023 4.365506774287253 2.0133522772256454 4.821712481597954 2.8710753188246705 +3.114701236086204 4.039881750741024 4.846768301249698 2.874156482907187 2.178797000769348 +3.3712382452543865 1.188376286858444 1.2738727740183458 3.967505794168196 3.4670657877596978 +4.1791778317981265 1.0018630954931007 3.881998089759656 1.2838642414637547 4.104342630337037 +4.543240059384169 4.769722467073539 1.2133653261569513 3.533233630483127 2.330897516067573 +2.771617892717198 4.755935233561513 1.431679956852057 2.6238519719735462 2.3149059209424228 +2.103290463792413 3.704785817955171 3.0349628725517555 2.740803123646405 1.628286623196591 +2.0578874129945377 2.2201548744085904 2.7678446742023612 3.325287797417408 0.5805803688151253 +3.8262405703962536 1.0847189759951958 4.375554634379908 4.900529766683231 2.791332932866341 +2.370542350876587 3.783319387597623 3.9932525637819762 4.278646006034865 1.441314806823001 +4.462119066321389 4.866559252635378 3.1697026543246043 4.470395035879699 1.3621206024949328 +4.148532955406919 2.322070438393713 3.758532045664964 1.6816935999195253 2.765722917390776 +1.9849020831583624 1.8619953868602979 3.749949970417275 3.4099555216470248 0.36152770459467 +1.64826255367521 4.877167078215711 3.453544664232749 4.287402174889255 3.3348377436805507 +4.336064999541433 4.996186584435045 2.2054611834960247 1.808067058286443 0.7705080126731602 +4.883732287653304 4.179755470055818 3.6438186212986206 4.497174135761794 1.1062544887047425 +4.102833145954953 2.1627042743435125 1.7735082486075786 2.4941424296643686 2.069640949867313 +1.5718477862202516 1.5611057669988613 1.3603705808459647 4.380891129090019 3.0205396493576298 +2.0266448553968788 4.449164594224877 1.3668701868469708 4.816457825418148 4.215241008672498 +4.451637407788912 1.2367967108173001 1.890719423489462 3.0993094473582588 3.434514602196371 +4.634481450617703 4.6367173988772805 1.5911445532693453 4.702888516376032 3.1117447664285596 +2.0902643233207567 2.1202868178629224 1.3681807190069977 3.7531682582558252 2.3851764950524545 +2.43913263037659 1.4906968873182875 1.3781522765199052 2.3205196427062456 1.3370065862079865 +2.973172823129843 4.661717883040627 2.6313940478271127 3.8030200316300995 2.0552109053017964 +4.072373004877318 1.4439349549222347 4.051452384905611 2.5703332053363317 3.017018496221005 +3.816191009181605 3.0979501542459884 2.3383667336589884 1.3822098279534152 1.1958703750938484 +4.244283126132535 3.8601108350178572 4.947833992468992 2.911455460196475 2.072299658823663 +3.7967647696376536 3.906496085015699 3.4765495505921375 3.6453918371415956 0.20136702635199588 +2.2959000999243093 3.9858319956100474 4.86160948130937 1.3612071821881488 3.8869893320858395 +4.3566227216285 4.684337993765907 2.5811665620205857 3.498466139302645 0.974082036624195 +4.818696043541401 4.577967175980913 2.2159201893690073 1.9334358512499814 0.37114389252619956 +3.5208879704208 4.189695566489339 4.5614409713503665 1.7725256506407248 2.867987494158219 +3.8486442529182625 4.0907901358295415 3.0294142836825277 2.6788630714769224 0.42605255660505337 +3.8383303115893166 2.844901266290761 2.3260981943446066 3.5496541736087 1.576068051333988 +1.3272701523749202 3.861906389070671 4.14049200883813 3.85437963804751 2.5507334515959577 +2.8268551399808266 1.8393066358146637 1.3178935870218709 4.140000827004554 2.989906574132962 +1.4941533642772926 1.1051199886900314 4.1312016267905385 2.308236622801225 1.8640140485228582 +3.5397216193639327 1.500583660664085 3.0861128663847497 1.8110851820113805 2.404948899775024 +2.9042498193484474 1.246748448765182 3.546502678298246 1.6187945947379343 2.5423157256543045 +3.645600892660171 1.9311318155604744 4.533140253071506 1.4475745016866859 3.5298895481941157 +4.311043019424509 2.4566359430622895 2.1416420850403446 3.8933621652370642 2.5509505765942775 +4.427488289279642 2.9579093145954234 3.7635401515475366 4.674283399101243 1.7289059042639052 +2.133086857216693 2.1915381356902857 3.1309825994068308 1.1448630566322704 1.9869794639467784 +2.5578609265093 2.0818575262878847 2.794148468915329 1.2766905880669581 1.5903640014698452 +1.5004884968051853 1.763111787903397 2.6835301168643015 1.3028862362744444 1.4053997716085895 +4.234632205599489 2.6721827586471765 3.3004660884269486 3.3345448664690505 1.5628210509826228 +1.7136608808468097 1.3039313106895145 1.4571309296059578 3.780570097045884 2.359289699349196 +1.4940357633755244 1.7724152574070993 4.523109151095346 1.9688432190044853 2.569390899520209 +1.5112002825044915 2.4451333969225373 4.8022132557900585 2.699155093207921 2.3011051035122114 +4.621422321909041 1.579711043726347 3.212292168321364 4.495559285625855 3.301330337027601 +3.607104939589614 4.131823298519823 3.7342613898499866 1.376644239431395 2.415302876275829 +2.6376416430625578 4.00923445804586 2.043000066855242 4.113092843114799 2.48325410549058 +1.5822292596282974 1.7748290241641622 3.748788572607505 4.377313688183426 0.6573724136355243 +1.1128260431209012 1.1963371504400104 1.5977299284953221 4.863349272540192 3.2666869769302522 +1.680033685952369 2.1760949704088004 3.9586436278716253 1.0244965294121848 2.9757849373458622 +1.8078436946379717 3.9032752131739863 1.253059662987455 1.8542002583983428 2.1799548766717867 +3.447787070384893 4.087108073635751 4.023516029109192 4.813220058785587 1.0160530496410214 +4.421556061943624 4.374341353691932 2.235905662460598 4.157224881794397 1.9218992614746304 +1.3110249880847 2.1674999282205114 3.437770798939152 4.439949187409791 1.3182984659773553 +1.0358558424340596 1.4103150797495845 3.0831757321486766 2.2977079487851237 0.8701605364028971 +2.2445738535495745 3.3748877236965926 2.1551229725004735 1.18180359904138 1.4916299969488185 +3.1916029783194104 4.754907734888082 3.4426080154150553 3.339206527679478 1.5667206609910282 +2.198940542194849 4.4243253716023805 4.046547473660825 1.6019021700174751 3.30584759170514 +2.6834705957621487 1.3694701967257439 2.3244653149143453 1.9975031363670674 1.354068430644557 +1.707474550835872 1.763233798909475 1.4860245166814798 4.80283054336469 3.317274681479934 +1.3394225643195843 1.4574353567832765 2.9853360653266336 4.02173920133559 1.0431004167932625 +2.70730439288653 3.0637870159501683 1.1414245326105465 3.9900438179723476 2.8708381517392283 +2.8633831164140524 4.026233870416139 3.8054789599972336 1.9731153869739044 2.170202326933146 +3.3697312039088856 2.5766426102733053 3.900322978065828 1.1250969315448032 2.88632450127209 +2.9023814734634032 3.577762220909749 1.1482147090599168 2.960638799615199 1.9341717188621919 +4.738428847852203 1.8377862563787635 2.098557402549283 4.7032677761278 3.898492474495403 +2.3156851130910066 4.722448051043861 4.410918372230879 3.6642586607584833 2.519922332977645 +1.0191758599624952 2.3086903076089436 4.246677772064896 3.0916370406165687 1.7311749195253525 +2.374458187795276 3.146406038149197 3.026586148135313 3.9054171089796688 1.1697210528175739 +3.925096643303209 4.250045721434027 4.025447918859048 1.6697491795462107 2.378005141663525 +3.684685957445212 3.2502957976092746 1.2126208950749073 4.707245718297415 3.521519198591033 +3.921638025964869 1.344764351643966 4.589713310058004 3.8254969820099327 2.68780663915085 +1.9024225070925058 3.1096910380903697 4.626313504499547 4.733017532099224 1.2119748575955414 +3.1596923863735666 3.989914696327098 4.381389700171767 1.312499127197051 3.1792072019353594 +4.012477317875906 2.328667513899604 1.88258791844016 4.956370431492287 3.5047616742814 +4.310386605695433 2.4480087097010124 4.889356601324356 2.3616149079496176 3.1397339848964263 +4.788900737947353 4.155440488864775 2.2440364818481506 3.751907420884656 1.6355264155490106 +1.4535137064553663 3.343672407955592 2.9377115276259627 2.2936726235448233 1.9968690560041875 +3.623199932611797 4.457696568157796 3.366077183708648 2.2586322628806594 1.3866574513575085 +4.850413372319483 2.6526087009549184 3.0199164375256653 1.7337169759990467 2.5464984642255857 +4.777477244856343 4.666123998608635 2.355933396723699 3.6128848539393967 1.2618742057933385 +1.6323883726505857 3.7951925713231454 1.3639080889413213 2.7238105187821327 2.554810486216658 +4.161171216547714 1.419764065257671 2.5909184961684786 2.1074536576300584 2.783711806068863 +1.6833111060429249 1.531025743967064 3.415867357972322 2.206360901859368 1.219055658647911 +4.657716793890843 4.766275867756892 1.567102105693527 1.468511400190689 0.14664651284705615 +4.038314571094006 1.3173079885172605 3.556741797945203 3.6456802830496424 2.722459710731942 +1.8234153864160234 2.7179691646606363 1.3645563746447285 1.321466825019502 0.895590962135403 +2.4402083942922688 4.7741642394905535 3.092045037194547 2.5948345697972215 2.386329427431323 +3.4532058156317844 3.761554123487121 2.756293980622008 4.146093363044418 1.423594395303298 +3.756164893258408 1.8915082488775603 2.6904029977906267 4.463608799022532 2.5731698768165554 +1.178975684523643 2.7396022884119895 1.8670463549100247 4.518315549810404 3.0764888656700475 +1.0331854087171357 1.155885274635843 3.174703255301015 4.017521028046101 0.8517024451951843 +2.4725001970696 3.8782093629996015 4.574345666223464 2.2543605109326568 2.7126277628803646 +1.014562016189585 4.598554381062661 2.432313519518221 2.081351045899167 3.6011353667082977 +2.895190431248728 2.20314622446169 2.704559280795847 2.3627281110897815 0.7718638045213145 +1.0309457871454621 4.185315516120411 4.288358862700598 3.237140510129284 3.3249223166648934 +1.4060850368435807 4.1956483941912595 1.9631824467256203 4.950475338360117 4.087246327916492 +3.607443494000495 4.829062706925803 2.178342688638513 3.6025346914816434 1.8763465464435336 +2.6533976020518613 4.324534488765426 3.466205211357798 2.4061905076052854 1.978971871024506 +1.1871003148606838 1.223180100911585 2.7244895814817216 1.9669540485101988 0.7583942475229674 +1.6867360490044563 4.582912071646239 1.8018757999420347 2.0800589069132234 2.909505352311509 +2.280947035472918 4.953372008619817 3.3537426617988344 1.5946106855545414 3.1994375360279115 +1.4081104791571128 2.7957689142374216 3.0414584345553117 2.885677428719083 1.39637518390613 +4.195937787038906 1.7317212496332477 4.410092059375923 3.0450094387436293 2.8170576324200156 +1.0227832905873946 2.9164469482735065 3.155928257241147 3.038337514195982 1.8973111582687374 +4.010288266740684 3.9628745101216025 1.2153700111734618 2.1820178739486793 0.9678099787275544 +2.235661452100461 1.7042355359817587 4.271404290705328 1.3301823877325387 2.9888458954669237 +2.783400825430102 2.2429781398469895 4.460522838486201 2.6168423163832095 1.9212533790926227 +2.57302770844028 1.4027723550167828 4.7094209415815635 1.76361603057501 3.1697419715059905 +1.6963187603308807 3.4477904428987194 2.4057917843262127 1.8739657488169779 1.8304349174123853 +4.059671658809713 1.5951954111569338 3.1393649020557493 3.8410161980548634 2.5624124797584718 +3.0381056232310835 4.357257911901149 2.4625419868738656 2.4478501698014905 1.3192340998444363 +3.3534698556551708 3.128120956222387 1.9538669586349071 2.6163742948037454 0.6997843217399894 +3.467534865337097 3.5014801247763994 3.81784339025017 4.581227000541763 0.7641379568508745 +4.456805150482943 3.6040277991159946 4.644345409920001 4.042743564047335 1.0436254078747924 +1.743624976785818 4.571095304749925 1.851814803974598 3.154339893946533 3.113062811047001 +1.2328007280653264 2.28246106886194 1.456166467973401 1.9930101361332655 1.1789775040621433 +2.317404229704607 1.427965149981218 2.480730218852974 2.207839466540909 0.9303608113181864 +3.1423593901408386 3.155628591375623 2.743434345371874 2.7557369766216047 0.018094928490492813 +1.6974903289385916 2.7749268362645942 4.845626402943578 3.46004066511508 1.7551972151848347 +3.641914532362223 1.9454153785331316 1.5671164721584288 2.4069498458430605 1.8929948427022545 +1.9487867537174122 4.2153576388895955 2.6428087609911572 4.3801225201446865 2.8558015819125777 +4.444928526920201 1.4967016898550862 1.9231171702759258 2.6372610686365383 3.0334869359133 +1.2908411822922146 3.446754606606501 4.062774544742078 3.212251011053073 2.317617952661177 +4.63296789066352 3.8370332351047356 3.432540002201061 2.959938816288179 0.9256694101274724 +3.2143928022777994 2.212576375193196 4.179304457310385 4.899381264118977 1.2337531200690919 +4.850778633563927 3.106021168839701 3.0602472563857614 4.049577906844064 2.0057302277841744 +1.0111606545211278 3.8645762391383105 3.163199991685589 4.038918271407294 2.9847718512434014 +4.038395591476238 3.8061821509728926 2.796833653537191 4.989480994610668 2.204909395931495 +2.745703700511103 3.3752913163379596 4.8615146743667 1.6125492052718684 3.3094043550725476 +4.061842100597117 3.343035128909195 4.525221831628489 2.160737691829702 2.4713293406398043 +3.4957498374901554 4.078817177120824 3.910382241075894 2.6254440909972 1.4110398903190662 +3.900443002656348 3.078412092609588 3.6980435472869724 2.147952895093122 1.7545699892255826 +3.3040872710922398 2.154287254268958 1.8347520896186293 2.0766543051448534 1.174970961583015 +1.8986489949440424 3.689980360729944 2.5013831682222554 2.934913668915159 1.8430455113966728 +1.763799113615438 1.0063136370873584 4.86425149729588 3.916615895531042 1.2131766074579493 +3.4398249522529545 3.2960746623431474 3.217267926799551 1.925547875245083 1.2996941322622917 +3.641340326089122 2.239696619943343 2.689866251685115 2.43789528255813 1.424111810308751 +3.1396574200994043 1.0857554742716427 2.6720397228744495 1.794318169711031 2.2335864272426686 +3.029002369659311 3.300820765370269 4.264106936151935 2.063191113888672 2.2176374133152725 +2.0070202044618144 1.4713212376132319 2.5731180103673683 3.1668770036890836 0.7997018977300576 +3.6967356031688117 2.8298270189212062 3.4853952467781637 3.2481564282295583 0.8987840399498234 +3.7496824002046374 3.205468380505538 2.2512517307137068 4.273997167324293 2.0946761087495127 +2.5726892764113787 2.8607865055812103 3.323961731762826 2.0793606750264964 1.2775100014812106 +4.085818213037248 4.754770696582281 3.025043988918875 3.666936384199824 0.9271047796018433 +4.556635239685227 1.1137049256164264 2.7207091727179598 4.797094865621922 4.020590341383981 +2.1114451199707127 2.382407569834301 1.7489339680815141 2.6322956668925643 0.923985140661051 +1.5672756983070797 4.5167306475152085 3.349057544442857 1.054365330899167 3.7369635872331384 +3.9650072699663554 3.0084443072445977 2.1684658767922174 3.83127853098062 1.918321825080481 +2.0165867067570504 1.8942401019418877 4.22674032219728 2.5864353255121255 1.6448614451862145 +4.092327175178697 3.854468998631996 3.285766794374627 3.4733626078936237 0.30293349336112685 +2.2478583831324115 1.8229237499819244 1.5646490914391236 1.6778344058248265 0.4397503358080917 +1.0650746537558264 4.3407147636248595 2.412107915739545 1.3521058158722168 3.4428799835466175 +1.5940323849880036 1.5373217254954494 2.7394434110405936 2.9415431253291633 0.20990567742584262 +2.0948391294894058 4.905247009229355 4.928741202865612 4.481263471996275 2.845808983422529 +3.6912478863262934 4.850098598031362 1.0441779033623835 1.3758109318424565 1.2053694195549385 +4.056409290311773 3.4542931458769837 3.7406275984324884 2.6282355173823597 1.2648952499602693 +4.870259508214601 2.3686826961779457 2.257474681687139 2.4343767460251744 2.5078239345868227 +2.705742834696679 3.1290464708270527 3.7895400800994534 2.020509963728887 1.8189704563261206 +4.612218530572912 2.210369852119296 1.4637818298087506 2.8917374665678013 2.794268128641439 +2.946473613295194 2.2133960389681677 2.6095754025584537 1.274638696380193 1.5229769333391956 +2.2927378803391765 4.711487363170706 3.7521581013883147 4.707048531824322 2.6004162733754868 +1.1105624187083682 3.2628050632277317 1.763757317196097 1.8871016750344438 2.155774160597129 +1.1377410497948852 3.494978934939658 4.933225936161744 2.991822252448751 3.053787600717538 +3.3646165781494446 3.798272061068168 3.9122977475661593 4.451790914702482 0.692177690519025 +4.173287218342883 2.7263011154573125 4.09036543362424 1.2201696579095422 3.2143105906048444 +2.377767374412824 4.504987901105286 3.2729906630443604 1.7275792916172135 2.6293275710945743 +2.645379344666015 1.4329080259461637 2.3104189327626603 1.2850843800578762 1.5878909420009217 +2.923001491632706 2.5073931045379005 2.2289967256597603 2.2333878187803715 0.4156315834033061 +4.401130628322682 2.5651272445531306 1.004262565490563 1.119632736295551 1.8396246088604096 +4.931297350660808 1.572375080589187 1.4583466730174028 2.5379198816541453 3.5281492498460607 +4.945488551239102 1.1613353116470635 1.866848971029687 2.0179951556648676 3.787170567830909 +4.656545282609256 3.539264795765753 4.264138461035326 2.8674391152465954 1.7885985432197817 +1.9065366000425743 4.803146549526366 4.976029985746404 4.03462188698888 3.0457508775102973 +2.5319774968166806 2.9797771024349093 2.7047273575353534 3.911919294293682 1.2875701374939408 +4.778176576852811 2.527013732832061 3.2877335698538146 1.704654579924087 2.7520670846940702 +3.889496268391478 2.9314452447602646 1.949337003038735 2.922333213454556 1.3654974878645383 +3.166828156388464 2.9817662875657147 1.412368558179756 3.760582070440302 2.355494554112825 +2.9248854065450285 1.3921082840303307 2.742794657654656 4.833388632226359 2.5922941333536875 +1.957598693900727 4.465687983140573 2.2547503693306967 2.1398140484544554 2.5107214581980624 +2.3574780939923117 3.6187460124454915 2.0284904059166604 1.5386159484868234 1.3530608804342081 +2.7266061424605463 4.882220640929271 2.1701727003880062 3.7910451177747153 2.6970171040343076 +2.7564264771663654 3.5222612981971775 2.348865087196692 4.740202154405619 2.5109750978674974 +2.6680093546514194 1.7486495904783133 1.4506769147620697 4.345879939164529 3.037667349873843 +3.826228688803825 4.382215654420634 4.725630124521483 3.157376916270664 1.663892914560541 +2.41651003997268 3.363466137169005 4.66784992701201 1.5962787621056367 3.2142301210556767 +2.200874101697252 1.1906294003083162 2.780792819915165 4.079675199240974 1.6455059380043255 +2.980296991861299 3.713695491054598 2.4756364991687634 3.5623907364607206 1.3110713675811119 +3.784859471004482 1.233717953479902 3.008791640431081 2.479816159264851 2.6054055542492156 +4.997800245965156 3.390056628282116 4.653677421678868 3.4389942882467066 2.015017284006547 +2.4579237605573017 4.592515646077333 1.1105333502401424 1.1692250554140307 2.1353986124337956 +3.4037853664334 3.3032415046714205 1.83299523035355 1.1063397171328537 0.7335784232323395 +1.1906284635359938 4.7409739706469045 2.6220867518927675 4.4232262358391115 3.981087371622624 +1.4747604177260771 4.161774006157758 1.5017052442527365 1.8190702863765096 2.705690779519848 +1.8286310938520018 4.819976494404404 2.1572767237419996 1.1996429491237848 3.1408931455392657 +4.76994158332362 1.35238551931472 1.7379342907911899 1.3899830390978325 3.4352233587059486 +2.4795894367759796 3.122340499713547 1.964512875720799 1.8481499158755468 0.6531992554583328 +1.304878230572836 1.7812037782247985 3.3511876340046878 2.4000762560567153 1.0637193617717189 +1.1532753151870794 2.8060433781147 4.83269864494712 3.1011447250873916 2.3937253909367113 +1.5352930165317393 4.64280814985691 1.1099347110777789 2.2932647556810917 3.3251947759952087 +3.4869653854090674 1.658849957856373 1.4176060756305509 1.862931984854296 1.8815741234089414 +1.3144155357159573 3.166898680577217 1.9149859401981684 3.910377553564009 2.7227341942771046 +1.6504047164638447 4.67252866305558 2.6926548592388393 1.214033618702639 3.364454476067111 +1.5119115888458028 1.6283319017561255 3.801193481122472 1.9707085359509562 1.8341834215142458 +2.9110317559324312 1.6325982510943557 4.425638138285189 2.8663825553284554 2.016350713361718 +1.5807877800304726 2.821556102089479 1.7982627712475416 3.1100305876355234 1.8056136998639591 +1.43874451676971 4.076074739240438 1.971974775177177 4.856763602612114 3.908646476883134 +3.0181560585131986 3.642935441532619 1.6065537041105538 2.24398883342159 0.8925653037878545 +4.104690545518417 3.1884819106900357 3.799500419577899 1.9296765205209487 2.0822294964817454 +1.3298759935472395 1.6202688480325298 4.946562894412031 2.57294048209106 2.3913200049781165 +3.1468037115802527 4.262981857523097 3.3967153792818654 2.5770983633069284 1.3847836316031703 +3.3727108250183653 4.995575623315311 4.761698461396801 1.6829791173992281 3.4802590352811715 +3.202008782793453 1.731426839676466 4.772366381097701 4.76596694425896 1.470595867059875 +2.4521245319994684 1.9340033511334793 1.3292454031924832 2.5004852814683534 1.280723393448266 +4.285527441203962 4.530448618326696 4.345868222910139 1.8665585765564434 2.491377672193775 +1.55731216323279 1.0397380978744657 4.67732168825105 3.3757303849011837 1.400722254441453 +1.1047079255991554 3.0315658668410848 3.644206138507793 4.267690935388529 2.025219696148667 +1.5366289728198814 3.769299517433099 1.2530237519868361 4.404874374311044 3.862509560665058 +3.7878761887242196 1.5238017143812268 4.7181400850398285 3.276530369476611 2.684077457410229 +1.8908636658313842 4.683680664836883 3.929428238208651 4.06696099584852 2.7962013606602274 +4.641215957570067 1.3200630984469326 1.0695387617803198 1.5216946351652405 3.3517907523439243 +3.4257653584338983 1.8213514904792976 2.5197472035868294 4.9290489533451876 2.894629299422247 +1.8299128359866939 1.6689421224607734 1.3689639390371822 4.836307107380701 3.4710776738170983 +2.3334267880250184 2.9111054034829595 1.6788092252765017 4.855420794026031 3.228710832742807 +2.1943725273218853 3.497167081674683 4.560660552989564 2.9525124821642046 2.069640999920187 +3.3949365269658065 2.6742903386850356 4.402424218996815 3.4185044206326447 1.2196020245541552 +1.2235359261938115 3.842348087876697 1.2651505254232531 4.412610223523412 4.09446940266293 +3.766311159461061 1.8334333463248558 2.445553332198594 1.8958942815195376 2.009512804763284 +3.039409282471545 4.719790672287317 3.888606075030704 3.2646603826017992 1.7924814761496901 +3.1709191386652407 4.405522735027846 4.785096972798229 4.177434396611099 1.3760450016804895 +1.0113516043160988 2.6692215748131507 2.1991688245505157 3.4202691472989204 2.0590334716298697 +1.745185970162054 3.170062843892142 1.4922819134720866 1.2865153804785625 1.4396575882448592 +2.0294177368620923 4.065557272590929 2.3795663427047264 4.04037520888866 2.627574984458713 +3.7847116998104777 2.355179535015567 1.7321561112280635 3.067875982124728 1.956453368647315 +3.9877395825997892 3.6419984138661587 4.033343449105866 2.035716719205787 2.027325703425224 +4.990210494794761 1.5127335981664487 1.0794347097840773 4.3840465614667785 4.797218470829263 +4.788766280636363 4.436936234968026 3.422642598917022 1.7337143224632476 1.7251849477780927 +1.6796643027929834 4.394243080983728 3.9898272145031126 1.3264500839107742 3.8029614358767603 +2.1674832439685607 4.779895236401304 2.5559160845536075 4.159396207394968 3.0652642500368152 +3.3512312045760955 1.6498292635884702 1.0039378714485845 1.9470458141231828 1.9453074708982054 +1.299184901880733 2.0528127658236195 4.172105403791253 4.56422065736311 0.8495347723282665 +2.309200812658954 3.3910100666561585 4.9207491086092485 3.8654248095969392 1.5112976669471205 +3.0572003536123384 3.1073426116305685 1.213524222308803 4.5205851009625615 3.3074409898229984 +3.8869776176166946 1.1694030406467002 1.9896025831816115 2.4022976629004686 2.7487322187178944 +4.220140833909145 3.7558650283681185 2.4080036331341064 1.5914279511752252 0.9393337362074147 +2.1018659058773768 2.024345793498421 2.08325810707116 3.443855482329694 1.3628039423863059 +1.08076548910763 4.643604698297288 2.8767891866975104 4.842682538998185 4.069221043782111 +2.411381261481959 4.799639372489596 4.1974455013350696 3.9071401991564785 2.4058374785647443 +3.452465286332671 2.0943648607622634 4.21942749216038 1.4392642952592256 3.0941467591790417 +1.005739041031437 3.7437768396621975 3.683812607160486 2.8896691267183052 2.8508796632372264 +1.6822543156815968 3.1281180648913387 1.1461454496216814 4.486983191799428 3.6402910324365765 +3.4656966194474634 1.3690240602100925 2.8016520962036195 2.526730753955271 2.114619957600566 +2.1959173569254418 1.5105251965093291 4.058727737378568 1.9229188502719552 2.243087607696912 +4.919824684343466 4.028170496922897 4.143376067146852 4.075984358366703 0.8941973117589558 +3.1730645481140485 2.3304138839925073 1.914138733791968 3.437644834822354 1.7410143542260885 +1.9822890949757062 3.9452076649929784 2.386988639788112 3.332310937621477 2.178688495241944 +3.3265076062708645 2.8725688485763246 2.3676284657149647 4.3796058796860455 2.062550244252736 +3.454443556073016 4.308509478044585 4.258551652360515 3.423410503486388 1.194524732944422 +3.3667347380667074 2.3822796278574523 3.0569649952631526 1.7682086245756912 1.621741300887609 +2.4382662245264393 1.2563943695170114 1.4109506795093796 1.6985846141575687 1.2163693361905439 +1.2917233932915333 2.062746474584723 4.834318248314565 3.6748665797683184 1.3924096967421333 +4.090973012813487 1.7245367884055565 3.2573225941213204 3.3790969793915715 2.3695673455502395 +1.1508527403936384 3.8162621601458335 3.554065646824705 2.0213704852355376 3.0746645074320837 +2.6617673768639025 4.909643887775129 3.5068120103002314 3.6272854397163874 2.2511025422005364 +1.7832843861734409 1.5186128178296858 3.0190792744425505 1.9404782188769678 1.1105995120459635 +3.6862220966706203 4.317467079480877 2.494846073960548 2.501809610037343 0.6312833905290189 +4.402318389831592 4.976587124429205 2.9721322802297925 2.8086897886807978 0.5970745578067171 +4.211661038443747 2.1346185292663233 4.957892323054695 3.9123610864485436 2.3253475335203633 +1.011126219916167 1.7362443338971447 4.558795447664615 4.662643412668743 0.7325166749356828 +4.579836952122918 2.4133841658199575 3.1499635834356967 2.488340555947486 2.265229062541474 +4.95944558197705 3.6736598088691745 1.864582118916072 1.4149024612424745 1.3621515513525142 +4.708411156241541 4.575469775240632 2.8737916971730546 3.132868849460626 0.2911947486131344 +3.6714580300153004 2.8329742169665244 1.2779251189592586 2.0935356403272745 1.1697331436319232 +1.3761199004917262 1.9654880046705334 1.5975631390333986 4.887798960419818 3.342604751172009 +4.612972778228847 2.967489111979474 3.3288685872495885 4.284279061021936 1.9027416191609878 +3.1937932150977315 2.02547138077384 3.2498141693551976 4.064532085160867 1.4243388609781997 +3.4072508038129152 4.694240514195408 3.7133400861701817 3.4245500291732274 1.318992877786198 +1.2833994428503668 2.3438190666391074 3.664313037901412 4.896169491904391 1.6254107486371094 +4.488533282671796 2.659554962205431 2.4871566109734733 3.4638640146149253 2.0734317083193243 +3.8222704069219433 4.432506318868797 4.849041175831053 1.7206113666100564 3.187390929812679 +2.688801979331812 2.1764383585008926 1.0519892205844807 2.355431380748258 1.400527737977147 +1.9730036946814442 4.956323655337478 2.951503709129041 2.6657283544120887 2.9969760661393874 +1.361151504494985 1.258631808981387 4.600167098854652 4.171784895472084 0.4404788305277623 +3.014826870776546 4.8283254143137135 3.2171475793674156 2.4543443681576482 1.9673956659613134 +3.7335139058469635 1.6250776867668941 1.4213687797026529 2.1415068128038866 2.2280264981924187 +2.337499032231071 3.17403248240237 3.7593119867273947 3.348023797431495 0.9321728315660123 +4.485932747362207 3.575105197343706 1.1651411005854206 3.4277091442522476 2.4390204956283243 +2.8985089404052906 2.8199835423664683 4.22443331190083 4.009182053168153 0.22912735001120554 +3.0427505472504905 4.876351424919836 1.9247404298993005 4.2211305036452575 2.9386220494287376 +2.885698177451019 1.1251638151890209 4.25384550796362 1.640544696140624 3.151003391584971 +3.0947515256468265 2.454435343001386 3.5715226346998707 2.5780670179445657 1.181930148621437 +4.4155259425422 3.5588281576803573 1.7739901449908744 3.600959995249708 2.01785775721233 +4.885080534887798 4.645414071216331 4.619208928003697 2.0284879307453307 2.601783099999724 +1.5880176271826252 2.202602655833334 3.232407610542807 3.424910641712481 0.6440280851415606 +2.5968929748753156 4.635047797608909 4.0401099688725 3.0260704979689104 2.2764777903556705 +2.7738211839739324 1.5347321607197766 3.398386928546403 1.8878356297892878 1.9537417520557177 +4.448183202504226 4.233771172301733 4.024289313921338 2.496278168277289 1.5429810691994876 +1.648512225131931 2.256020807381951 1.446343207182049 4.177806779458334 2.7982065549526096 +2.5759908072025817 1.547318845808067 1.6057380105947465 4.3887076987387985 2.966999543189692 +2.129784144495192 4.911096288308166 4.591330669840993 4.595786665235463 2.78131571333002 +4.791849891440757 1.1605479994624361 2.399473451877004 4.957726348515416 4.441960300795603 +3.178094583779569 3.33115464047704 1.6539175434447495 1.5169409369130533 0.20540197587455725 +4.677087358283995 4.326441255036303 2.710257389365061 4.996270939319404 2.3127495844335693 +3.9400295951213096 4.564447165000136 3.314285647988809 4.30832959675071 1.1738912529035774 +1.5529523440639226 1.1187712524082754 3.847761064052803 3.2571945870322563 0.7329952142625143 +2.6622404195019254 4.212765416528441 3.751175681230175 1.8450697725144898 2.457105512924694 +1.0288547708908227 3.9199118030869124 2.4010238707996696 2.0256258102276403 2.915327506008836 +1.6697119555779865 2.536926591779309 2.7976712919483915 1.8397279107646525 1.2921751997293272 +3.8948613489414883 1.5399846079564443 4.3952106509633895 4.3409330889642135 2.3555021797843696 +1.6643632208109604 3.972386791222099 2.757605874208927 4.207472409486698 2.7256349300102074 +2.7414583399916004 4.427477073980419 3.897875620384143 2.040514274104967 2.5084757009014957 +2.0156056020890403 2.5073730761016213 2.314069828451314 2.437992097668878 0.5071409836571532 +2.4454441315351816 3.583312744958043 3.3398231065563535 4.257863437454699 1.4620338677913067 +2.6991152735830677 4.193770335874248 2.5425906696617546 2.2450255385776514 1.5239877829135484 +2.614829645335449 1.4560360215330417 2.5850398438053412 2.0847769646743304 1.262167029676169 +1.3049140933934242 3.0218920253659793 1.5472257591578198 2.1068378939380406 1.8058734618665915 +2.866059028271392 1.3196673131760188 4.905074729288957 1.523817779096328 3.718094390913384 +2.5682511647349227 4.168863054023442 2.21163178673722 1.0662905148335415 1.9681882657047058 +2.558598761257368 3.5082088521381882 2.3780347166606277 3.7016195760901427 1.6289985281803443 +4.949811984133344 3.5640397029318587 2.5266708517501533 3.102353661580646 1.500591720915686 +3.774700726151966 2.2270137923488242 4.493521446384634 4.641451365671294 1.5547405269321077 +4.407201229538339 4.636225770680449 4.790751983437861 1.1913446211870995 3.6066862352955433 +1.7938348958892383 1.642545956073831 1.2956065402791306 1.9462271490170457 0.6679786821635592 +2.5401526868166 2.843220710708883 3.8053030230661506 2.7115297699519507 1.134984650263603 +2.0235634025384455 2.30124476250395 1.5429273807462107 2.4282266634640917 0.9278263618011112 +3.9753747505314667 3.201536887560231 4.411946509709917 1.9595882254440844 2.571553264580601 +3.5281755568816813 3.034155385820397 1.608771676294476 1.354988228820592 0.5553935250137061 +1.3610965060719762 3.606410175267348 4.677637943991943 4.811185953524463 2.2492817840203307 +1.970129760155689 1.4200729768813538 3.0118193145656242 4.879936884121954 1.9474151376917963 +4.549499888911299 1.7138714798541113 2.4054691584724353 3.1543213136626873 2.932842993510782 +4.902563059580306 2.6819961573420397 1.3455940571025207 3.631699271939872 3.187035365448991 +1.1706995741571875 1.2469192504704885 2.596890750943773 4.654258109985965 2.0587787372880912 +1.610283507243901 1.3955648080327219 1.259089655310492 2.7589048155400566 1.515107136358804 +3.1679146596838432 4.152143193161053 2.1534460929966643 4.91545922783552 2.9321361433489166 +2.8544370707606714 4.20667301386365 3.4539398598556623 4.827077935473412 1.9271871264957168 +3.6522214953332104 4.285698424313647 2.9751525752531065 4.690590996127499 1.8286667261593936 +2.560876915263294 3.399347948253548 4.51172545878938 2.765339347910831 1.9372398203199437 +4.801349012854825 2.506578917534666 4.125589188697396 4.5320711903169215 2.3304929538654062 +3.2181493898949864 1.9982974180239905 4.697382028685169 1.8615219808219923 3.087092652374414 +1.299653977363226 1.9050036799585595 1.000018030115271 1.091765625789845 0.6122629204388615 +4.8905177409376 3.5070650007640545 4.335365118118607 4.163202476783889 1.3941239038783602 +2.0110859202508213 3.7489593863567148 1.3770900479183457 3.6367838904739176 2.850687714618786 +2.3673565210203913 4.386252764787455 2.6337771936121053 3.20943762500653 2.099363469094853 +1.3885537671805177 4.327758826160105 3.417132875556323 3.338895488258188 2.94024615763756 +3.6378249249985566 2.4133801405567556 4.760968963369752 2.5289194726337985 2.5458416995644795 +2.7749981942637523 1.2262460452759045 3.6963897004145374 1.0198330015337516 3.092343606606175 +2.8098143098265074 3.5006735420181316 3.050956925379386 1.7968598638973847 1.431798141611516 +4.854773142601255 4.732841576275437 4.294958930622586 4.4690514520470686 0.2125453195970243 +4.530677067519077 3.2437044279328773 3.7385853758120926 1.5264757071572603 2.559243591610549 +1.5016446692139587 4.937352368361896 1.6019470108517133 4.886686107627858 4.753272380989141 +4.5379731401379235 2.773424152285769 3.1299300764536877 4.095796195475695 2.011598988467805 +2.913374169262489 4.436847582329204 2.1995135742274656 1.5903104587525676 1.6407619194220309 +1.3595404708077155 1.8040270029892276 2.722736605104619 3.2349067754431116 0.6781493645763497 +1.6263528673446914 1.421352606442317 1.4054928879396962 1.5695161049554178 0.2625428016347584 +1.5854335969700393 3.781797353703218 1.5029871515234428 1.7658317800458039 2.2120354994064044 +2.824080505582004 4.083649235039951 3.5527819726596253 4.471639931547268 1.559106581616367 +1.076577618458003 3.659215376681594 2.5632340944477123 4.914060354961427 3.492334734432407 +1.543853490355767 1.7458289030684377 2.3657717281497472 4.150022002190192 1.7956455963674611 +4.369594388653592 3.4300209789631873 1.4010779744019644 4.920477854302153 3.6426602513600845 +1.2423199885541552 2.850716295268907 4.065183472275656 3.7339859982540036 1.642142029865863 +1.0777065194937676 4.883987297752643 3.2001874715659797 3.4430999942336182 3.8140241027832724 +4.624355067786461 3.5308176354863745 1.5520078591741724 3.235694414478374 2.007641534824779 +3.4804911913186003 4.57558001358777 1.8435019568453823 3.7083401608448345 2.162600530785743 +4.183444303875907 4.307014878547459 1.6311293792621537 1.830532799595265 0.2345877468351684 +1.1268518002987906 4.517739481331546 2.6225446891213844 3.3736672325528687 3.473082829509063 +2.7462710473944134 3.5021352269399673 4.610025468081346 1.7259453250118844 2.9814843500457355 +3.5895051811529783 4.382504158255674 4.042079513612817 3.2399871321357696 1.1279182444261837 +4.700157921026767 1.966794006430832 2.374063728024034 4.5997728296098845 3.5249197571714035 +2.4038017905380595 2.124547280243045 2.632220932853633 2.3907105880734316 0.36920228622797024 +3.6306567404975736 4.838503779985242 1.302160719134216 2.1731229279025266 1.4891170672253071 +2.231715543537101 4.528224180660279 4.729325233932176 3.428597612674119 2.639288590716256 +3.8287813035412195 1.5170343975589735 1.0902947655888018 4.102818796527243 3.7972983546595445 +2.1731844323514755 3.3728886170330195 1.4868817478501177 4.193097141557873 2.9602182162609614 +2.4089073122998745 2.1630386136257878 4.9008400194614685 4.837704385308017 0.25384547521602063 +3.757628185391983 4.825487094847894 3.3535734457656923 4.5153841534696895 1.5780135522358578 +3.5761653685998716 3.417163605785782 3.2171628065087776 1.9066252224081088 1.3201478401748818 +1.6645135946590086 2.47234396172906 3.813884861668627 4.70221263269649 1.2007148415589213 +4.630388264069348 2.102812984471816 3.612124073147828 4.402364585101402 2.6482290045925385 +2.8541800153196815 2.3107310111274173 4.339231128655998 2.4440455443808973 1.9715641554364183 +3.110799534700723 2.6484575959159082 4.9361204118793065 1.3980326349636467 3.568168323596758 +2.0012167087858264 2.57204033123587 1.6727126705984272 1.1388267327057444 0.7815841622157781 +2.519844914031276 4.258127515213321 1.6675781054678231 4.437359462499153 3.2700634806270243 +1.8263280302431477 3.761087229378487 1.9589595620716374 1.4812821610088331 1.9928544498093521 +4.417908061185211 4.577748152430256 3.172705421532582 1.2340666465663839 1.9452169942121276 +4.368455606947593 3.4069056789894927 2.015139528274308 1.170961651447323 1.2795368504581426 +2.9260249436063557 3.7284451210571365 3.8518706096957747 2.8072516431760572 1.3172345753102843 +1.0767887053576901 1.2938992922905705 2.676932080145315 1.5808202332902606 1.1174069034037415 +4.624128819970755 2.3218537891043987 3.955158710180137 1.768420790027411 3.175262674045181 +2.3842738729352515 4.841408620747961 3.9545559714858043 2.586197313215772 2.8124573928454795 +3.8881084003414172 3.257708883996781 3.529440498054647 1.888076524823458 1.7582602887026786 +1.3898467881872159 1.0308552015328267 1.5785382793529839 3.4984311244989095 1.9531675545459874 +1.4296059091963942 4.592735834133267 4.814012951122502 1.084298072256792 4.890415524233436 +4.343104263687111 2.370608470867136 1.5671960530283062 3.910166682063958 3.0627195466147756 +2.6398688009269002 2.80280303615547 2.447417935808542 1.3373924568091113 1.1219198407361528 +4.577753333404047 4.687893265812842 2.4284145588624884 3.2851740596285306 0.8638099599239938 +3.4172792145941377 2.2256492787630684 2.4508826423189807 3.1212430779490514 1.3672472408554703 +2.0426530173166797 2.276489231682937 3.9226394800910147 2.869922663642736 1.0783747357862854 +1.8478800495505534 3.8889374273524044 2.664891903674596 4.7461136122309835 2.915029848843016 +1.4417115658183048 3.974269124659921 4.842922765945362 4.657311725493054 2.539350162380839 +2.548935278974283 2.595142843513411 3.5945961558982025 4.879162115062123 1.285396764607474 +1.9571510874598026 2.9960855495312058 4.714664165186356 2.789400812756934 2.187698286484536 +1.5678946132419256 1.4224908814195887 2.273817315572671 2.8781410935684444 0.6215701681056991 +3.9050385898449336 2.463251834261153 1.8243581657807768 2.140308898098184 1.4759992933022392 +1.1651131412339955 1.6404783005066537 3.543416183206919 2.357092494590274 1.2780203162795665 +3.1415545040785346 4.555706521103911 1.5870725978118743 4.109528887616071 2.8918180546551846 +1.7655075361878878 4.017515453135889 3.4730679644938567 2.095999403034458 2.639669956823454 +2.2863197917807203 3.7670046890592768 2.4754317962469674 4.844434353146426 2.7936715769082414 +2.1097438528499706 2.305020294691558 4.975669485025122 1.7571440441270445 3.2244439679495867 +3.7616247627825494 3.2480832053295896 1.6186376369786153 1.1810100006038637 0.6747168882947598 +4.813515548404 3.05122463705941 3.11353709979155 3.457572448346774 1.7955582912462797 +2.6484668489073417 1.5309816997154315 4.348367101796503 2.8013418256843834 1.9084182622250938 +1.5815535814766757 3.2144292903408243 4.320465812171895 2.450727059367778 2.482379117769099 +3.6244292537132807 2.886661227332216 4.673237783700287 1.01514473594467 3.731748438304516 +2.995061728439771 3.561302370514848 2.93337666298101 2.899341951123942 0.5672625726670052 +4.387208771317679 2.12253188509109 3.483183507806317 4.987246308399106 2.718633168917054 +2.2559773281933224 2.3786676711481882 1.3257051527373491 4.00018200826228 2.6772895568079496 +1.8250962966545283 1.976602498032812 2.093093007374102 4.515090306734928 2.426731350431525 +3.305449836527792 4.918517389438345 3.4763077052861253 3.989963251137506 1.6928759405333638 +4.548691453539993 1.7719800485387611 4.052212126536014 3.6409857348490573 2.806997216223021 +1.5449210850425907 3.4390109369177666 1.3847899968205506 1.4037900581760852 1.8941851465229156 +2.0713993959866674 2.3692314951843247 3.755603100512439 2.930996478412423 0.8767439994226832 +3.7582671331105897 3.5691750049037823 3.915195403625821 4.837280712245792 0.941274215796102 +2.1746547109733814 4.0712572073091575 2.6248648037866356 3.743613309588848 2.2019762142997323 +1.5054513576924724 1.8540807859124775 4.11122932375182 3.8997656765821898 0.407749129116531 +3.0866572655602873 3.2651471522095603 3.3727383401302835 4.82087624958608 1.4590963108852941 +1.0705914561636716 1.334510942882983 3.9654890103125773 1.9120041939142691 2.0703751801662853 +2.6630730145773653 3.8659127676570324 2.909376837841451 1.9959698214574328 1.5103429574663856 +2.0604327519678702 3.5828669736005976 3.3637318996179246 3.322016344535656 1.523005629252325 +1.3880229038843703 4.051896753253886 2.6262274258433767 4.68881869855974 3.369051297270564 +1.4196422698512365 2.3938682717034205 4.566173080788456 4.0363539907419925 1.1089745582575616 +4.14167351769597 3.130240833436603 4.972761764634279 4.3139113738866985 1.2070956516268074 +1.8233292498581766 3.563296978217982 4.815811442919295 4.538908924629307 1.7618634170584617 +4.669392857106106 1.2372175303957298 3.8685241896931424 2.1041921601110256 3.8591054642091387 +3.866151940133745 4.021760934066883 3.501399272750811 4.3818417258954465 0.8940878437224316 +1.0502402187726996 3.426587914664046 2.6000291677411815 1.0679860703089248 2.8273988795636766 +2.269754698852495 1.8233335525572314 1.1236951518382918 3.516413462854812 2.4340075504676078 +2.643293653683991 3.452287281594292 2.2832815554218615 2.608255446481592 0.871824936480927 +3.074118267076737 2.164149266291125 1.418947727874039 2.769555610252166 1.628553110688348 +1.6882651359912662 3.358338744729399 1.8706128809105227 3.5235980297758758 2.349788450259517 +1.1198095104969812 1.6513682395858091 4.0613125901219345 3.70468210507974 0.6401093541981409 +3.856969755993431 1.3868401860053035 1.2550420361147494 4.631926563613568 4.183884463580544 +4.579980083005966 1.8694754683973511 1.0895297609395027 2.1191634149067267 2.899479388993219 +1.9390364437663883 4.095877241302172 2.7872345598854698 4.10805137496895 2.5291340978528725 +4.485780165331851 1.7674603528303776 1.45015172747796 3.6554230155149305 3.500354847280242 +4.298819050741063 4.646053346298728 3.4307663671089594 4.424158214534326 1.0523302801604684 +4.8167775284128584 2.3762348515089395 1.691801436650616 4.635603538011736 3.823901066942958 +4.563124478899455 2.9690727916921444 2.909014389157251 4.501581419249035 2.253279948613541 +1.572868239640687 1.3745320306974365 2.5174198205247547 1.1989883369958783 1.3332662256796781 +1.9804655905578028 3.630978818875107 1.8472015968559412 4.955040268171301 3.5189281214275505 +1.3490246158779806 3.9815416797664156 2.7335067732768232 1.1463415818938785 3.0739615216201788 +4.5655237123495525 2.0878382420591923 2.666894192260272 4.39709395513015 3.022005378738255 +4.751230914140887 3.711865287972008 2.6698054228400583 1.7035589900796921 1.4191240515485455 +4.465605971263569 2.378124577304389 4.708946218486176 3.37231751915318 2.478740577391345 +3.2373808067815686 3.0422728657856886 2.180430323683191 2.586255683699107 0.4502902746803442 +4.040591801329585 3.141560892351555 2.3628212831617903 1.3067186790229912 1.386942423378352 +4.627262220845754 3.525268220711566 1.6504339955650194 1.6357625721319007 1.1020916599799233 +1.3801821155113667 2.6947142924302976 1.0508745922745861 4.508275046821623 3.698866413816168 +1.2991690935661007 4.1894347447915665 2.8755673952330643 4.9110112330644276 3.5350625385726113 +4.720183661499114 2.0847502744871225 1.206971093109939 1.4129274617413872 2.6434687747649583 +2.593523224776904 2.8565282665852147 2.2980066303395206 4.8524235739493955 2.567920865957089 +4.12607323316035 2.537207795058918 1.00233133387573 2.98552322984482 2.541169706381439 +3.8335514811622295 3.8144447063885734 1.1639415231406351 2.4507257543658163 1.2869260765762855 +4.709446083773135 4.47400799796168 1.7084643212605704 4.814482678649288 3.1149287517833004 +4.531251808519157 4.193665502548377 3.9023694397789286 1.0726071153268517 2.849827946888622 +2.9512741684026875 1.7236307494226137 1.6522413463203218 2.2928190334865786 1.3847195158082939 +4.796613255898212 1.1624706245072334 3.798867111355658 4.932637636237916 3.8068922060369843 +1.625171853480281 2.399097604997873 1.461488843622543 1.186602006607802 0.8212940046207803 +1.7678421681621974 2.9848750485851085 4.086374472853002 1.3803933982131324 2.9670697006204003 +2.935344868387437 3.6212005508121035 1.9508619344939242 1.7110668324804004 0.7265670705887252 +1.38022805715124 1.9282955409750335 4.569243135720415 2.5576955705320805 2.084874474360521 +4.91998867075233 1.018562781854094 1.3418958250746562 2.4801792216454475 4.064088219696286 +1.835544249968462 4.523967721341057 3.171369252432425 2.637587598273926 2.740901971202775 +1.8675812919807715 3.9815894935609113 1.0961949959779176 4.927144640308642 4.3755234948227395 +1.4607080716582344 4.0794592439557 3.97796505918283 1.4037901462174025 3.672088531741837 +2.3847490469145476 2.0257378914941144 1.3854147040804703 3.6826876745968145 2.3251563626520477 +1.9533753451268976 1.207056588632244 3.7193095567252668 4.748264924442969 1.2711179469470164 +2.1484893676031795 3.0665392951319386 4.523233763836421 1.631605524700432 3.03386379766862 +3.147781004410444 1.5443781795176195 2.897578732945928 3.5979106746403553 1.7496758120954228 +1.108051307164411 1.4523131282230648 3.6229509403789146 1.0671717284237907 2.578860907784787 +1.9430113517102456 3.552369599715032 1.2372361554387985 3.2764835416660616 2.5977998138147136 +1.6208883823859805 2.8794431681474877 2.7954940988514405 2.649171549783152 1.2670321373702542 +3.741163392895381 1.357840783471414 4.945589312728976 3.0863188216633777 3.0227658558907233 +3.137813563133647 2.6629148435763104 4.029952055928334 4.092826056200683 0.4790427264320428 +3.379828508504904 4.146063050739915 2.0020953404181796 2.150014965742783 0.7803816946022432 +1.531040111188057 1.1493236180238484 3.737381307847179 1.0766702259535172 2.687952927873798 +1.5752024235889195 4.572075837905622 3.987058884319424 1.0394587118376877 4.20352198022713 +3.016599762447243 2.318310940334957 3.774446531109995 2.278890430398588 1.650543949569981 +1.5522938463019749 1.2689301018143522 4.272989396271404 1.180312678366255 3.105631061984442 +1.4435848195554741 2.011392775938431 1.1620989940932693 1.2507138185412572 0.5746811833040453 +2.64700270349159 1.3641156146430138 4.620699995717514 2.415014929520525 2.5516359250447134 +4.43064830751505 2.4390357457427716 4.378031351070111 4.062395429724381 2.0164688519917444 +1.2274083239473743 2.1980806486752194 1.245681921914629 4.223719175181418 3.1322373224002935 +3.981929967272166 2.9485002062680086 4.857236061094381 2.828733710628529 2.2765761258465744 +2.76252607518135 2.4663034969976687 2.1691368953297823 3.8999381025553177 1.755967150820071 +3.694432912392395 4.598718091128028 4.773511485266459 2.4461656925350055 2.4968520427581873 +4.042827145079965 1.0245819202853323 3.6162381166055435 2.368280121862605 3.2660684918780283 +2.33046117977514 2.0012314952217056 2.2340063777332584 2.3171219751665637 0.3395591078558327 +3.5471802771200514 2.284185272452695 4.243584874072277 4.5665691098998575 1.3036392132825023 +4.802821775969123 3.305795569948406 2.7819881495020966 4.345792953316378 2.164849400292179 +4.457890855242628 2.4002761992579535 1.5212057981294582 1.4336375652919608 2.0594771831523677 +3.899686339070957 1.9003190980101845 3.1839871171991576 2.4681923649791733 2.1236363841139645 +2.40681424408948 2.382281207852862 2.5479463615422517 2.048301906877172 0.5002463902364036 +1.7689711140692772 3.0630052738979483 1.4825913771253432 1.342938673926314 1.3015480338098517 +2.9328696844865907 4.8096970072588565 3.0855408327417235 2.2623603272386954 2.0494162447254904 +2.1417808578255095 4.487115133392141 1.946022541666847 2.9135905243861653 2.537081131010829 +4.539498973668756 4.838536191048409 1.1986207873080121 3.9497717039492635 2.767355167576826 +2.3797244928617225 1.298017663780036 2.180615453831714 3.8798291170045847 2.0143030400600908 +2.2862964943947555 2.120228158232151 2.789668376273217 3.44030671597734 0.6714975363832351 +4.7487497390113464 3.8045848609307136 1.9642776812335954 1.3100379141580296 1.1486848957934925 +2.1642774309571906 4.748845149638303 3.5697252228342684 1.8920603579934805 3.0813227177901616 +4.9043065195396425 4.711234472919211 2.6112483489951734 1.7495349840739531 0.883077991159362 +4.290262620839503 3.026483367376544 2.2245546039723627 3.631300614206615 1.891050591283422 +2.603228081886247 2.9654717702440188 4.304438934396393 1.0609283343578264 3.263676071903826 +2.2424091309214313 2.5171444164052255 1.5139323372890647 4.145049093218626 2.645421490126509 +2.7015111503154867 4.08098825328352 3.527621225247398 4.340927667793469 1.601382042830512 +1.359944248854934 3.4887503287571238 1.9132640820143996 2.3395458248184853 2.1710668921239202 +3.669237853967107 3.6948687528757294 4.19864977859886 1.1259319742247453 3.072824701849512 +1.054689236851643 1.5714478950004485 1.1255653301946964 1.6034149967645837 0.7038322347070404 +1.6054739405137983 2.700230975880444 3.605677443304975 2.543179361456266 1.525580263511872 +3.588434054702554 1.750211788057689 1.634510738214669 2.1094737662964165 1.8985918412427585 +1.5418666653481927 1.3496663911378404 1.4385023684349978 2.764827689598822 1.340179018999647 +3.458739989090951 2.0367691653484252 1.6021196609327677 1.9656139318344508 1.4676951688117472 +1.9064565698386091 1.958678160988796 1.7632451171042876 4.164608380641221 2.4019310185862977 +3.0726579314245663 2.9140402215657186 4.701432994088526 3.8963011790970965 0.8206075903818212 +4.1859649629687965 3.4324803999265896 1.966032481316812 4.894763182641431 3.024103587449395 +4.2113671937869945 4.481882626514331 4.584691524479835 2.9126081696647055 1.6938244728405232 +4.862318005720912 3.9479338010299116 4.447105091028106 4.686149260257323 0.9451140611750941 +2.874536821024056 3.602503606210686 3.3227895211730663 3.3595345644713683 0.7288935714779982 +1.0034121700058178 3.248185707774071 2.723952158016496 3.8701893658973785 2.5204896295353327 +4.642878767684592 2.2883839597374993 2.126202336852696 3.7973576355833316 2.887283469478758 +2.5960490703536245 1.5850923053979402 3.583137773265275 4.690850452116404 1.4996869538331015 +1.2195242924003176 3.7608474443260267 4.935149049794989 4.112201087765711 2.671248155960386 +4.145348678791519 2.97913485374666 2.5737689297629602 2.811974736438548 1.1902926917610344 +4.872862672568852 1.283089204337759 2.268236410484352 4.640957053531057 4.303054357448422 +2.109366644211106 3.3192802448871754 2.1774613151203512 2.921430785252563 1.4203455542894254 +2.8888952570832145 3.06508343431798 3.1899669364369596 2.373480547008967 0.8352797722430904 +4.0420780987395295 2.4922686356614356 3.834553573666382 1.3464146760054683 2.931338354045755 +4.459611863972814 2.1069359923610333 3.3338368976858495 1.3678973256174327 3.065942295264019 +1.9064178145060446 4.4510483011256055 2.650943915241853 4.8952560963542435 3.3929458409652167 +1.3163549327972692 1.3796574875778247 2.6442384905525294 2.6551360676321436 0.0642337187772229 +2.294099479730899 3.0591862846117452 2.628957669446993 1.2402129833557205 1.5855502584748078 +2.6582088627199876 1.7067197590194203 4.166897056939337 2.3059848014173876 2.090054051265828 +3.637297874718828 2.774436881761375 1.1556776267594087 3.374677577489699 2.380859062294228 +2.739425695005998 4.587057393137907 4.5268462530370845 2.9707706892448353 2.415598073391591 +1.6546404266544212 2.5297949108399953 3.9307436169554717 4.7852807774797 1.223163574468652 +2.3842062120313035 1.5901221249647102 1.3459558026535077 2.9379573035177367 1.7790554561582228 +3.6310998924301288 2.4710098469514175 4.43441406623263 3.9169880685966554 1.2702513832499387 +4.2415431203908565 1.5192640558493116 4.459346824968529 3.5847929600844606 2.8593089668353175 +2.8724178561836093 1.505232769469488 2.756575989152528 4.59134277706918 2.288135535184812 +1.612737546404864 2.7602409403189765 3.783613336659448 1.0420813217508367 2.971996269818197 +2.073963095446038 2.4602833217587667 3.590340357116227 2.872301158675288 0.8153671613181539 +2.3002924277786914 2.98108607676454 2.822245438399125 4.615445052824718 1.9180836399061336 +4.456888787625742 3.4155086603406244 4.360846154702449 2.550739095015345 2.088291200248054 +1.270310287082208 2.9798098195539398 3.0774671494547614 2.3319868998145585 1.8649743843079156 +1.6952628468620268 4.332379524897725 4.667031115895648 3.9539143374455175 2.731834532558868 +2.56255850850107 3.832966292158057 3.654893675930373 2.643881637118767 1.6236013301910845 +2.088443838664763 2.6159769955903553 3.5577852801369225 3.6462677103072134 0.5349022079826576 +3.851897584195964 2.7801001509141225 4.973094314462232 4.739169560734988 1.0970280435776907 +4.580548343202635 2.0952575716454094 1.2583810820535168 2.538481761884426 2.7955908087005623 +1.7717845431521768 4.558316210055139 2.3037158299921923 3.9017861735544517 3.2122558356435746 +2.5246377693395976 3.2491028895402323 1.03874280871976 3.7825689715377346 2.8378568889483717 +3.940522758611613 2.1957544346216897 1.8944149380934605 4.451393288061249 3.095537883244623 +3.0071731409172164 2.7584926314537848 1.077760186868164 1.3839213269577821 0.39443204673044335 +1.5735619780017047 4.6734089242155665 2.3237945965196807 3.5165826872723858 3.3214145359158183 +3.459320890696349 2.8983458700143077 1.1404778639186244 4.85872389391775 3.7603253201596103 +3.846453949332319 1.8240332700682913 1.9523806308114895 2.063981345716893 2.0254975002409084 +2.7615908907327174 4.170626700244631 4.116446098237489 2.246408789659874 2.341457120674881 +1.71494391416068 3.785551523972731 2.0016776913989593 2.6538379179587013 2.1708820407654645 +2.1159933565792812 1.139563233788849 2.2847655695164844 4.733192944726956 2.6359462051363223 +3.8029239348934456 4.68319780678061 2.4377407009956302 1.2194506516668895 1.503034508526217 +4.649815875421261 1.6860584838026123 4.0872522873486545 2.9500372621384643 3.1744473361418346 +1.4864290022167546 2.340649492145842 1.8249970872489465 1.8337414837332058 0.8542652456260666 +1.3363607604308285 1.4783362490211553 4.726596682429778 4.589517217423708 0.19735201819797132 +3.515463290813235 3.9943972056937382 1.3103155792042882 1.0064027007807628 0.5672219428887054 +4.936463346545943 3.3361106457800984 4.905226895395716 2.6674525250194168 2.751138473352727 +4.719694631490204 3.2598209569169523 1.3726645442038703 1.6488344272552506 1.485766115516376 +1.5721117276517815 2.376824435781879 1.1100914091674827 4.75788093408961 3.7354960796067873 +1.9744964422993223 3.88454354835494 1.089527538056072 1.0063742465824128 1.9118562752556332 +4.975837050697561 1.6690898849657945 4.267566768887892 1.2711986695440332 4.462375892373994 +4.616495442925384 2.3901873582216955 2.3775069637240636 2.529663466466568 2.2315015772667146 +1.179480096167996 2.1827299987319018 2.3937822029313276 4.959991367973297 2.7553474999970304 +1.4868679561855993 4.551794851417888 1.5858255741791112 4.594177886651927 4.294643234202205 +3.269086679346815 2.26985515782467 2.807191156370116 3.0838270253525484 1.0368177456096739 +1.4932587833472324 1.1064524210297972 1.7185084579921361 4.180304222066781 2.4919987050448307 +3.499208806485082 3.3279821206599864 1.7113339864401818 4.041447552000088 2.3363963290385787 +2.7206997322616244 3.7188680329986563 3.040134184888152 4.236989047598618 1.5584612664387723 +4.862095395992914 1.1605874995287744 2.55259077783835 2.2165970457767266 3.716726045267673 +3.261216092278607 4.79000947135332 4.295284058534991 2.1735047279642443 2.615178143748514 +3.4816530788317515 2.7189776470800857 4.9239819116260355 1.6304672365324326 3.380667497588976 +2.89899748046682 1.684023024795248 1.235612066725448 4.2855382870655205 3.2830188664478177 +4.579796798233648 1.632859008135294 1.8814341655807487 1.6087086727188549 2.9595306271715676 +4.181000496816859 2.1540380595675837 1.5065929469489632 4.72057022400713 3.799766658554937 +4.2813684613791745 4.801586229449391 3.9330747160068174 2.1352758105835643 1.8715521447603336 +3.74378683281848 2.5822583550181215 1.9455745128458326 2.6561308500448124 1.3616309019241772 +4.850477863758115 4.538033762580719 3.8301953113660754 2.2659725669247655 1.5951219735769597 +1.9781264334102584 4.927676705616799 2.331218439898887 3.171043526270826 3.066782187240123 +2.2709688942450272 4.2827137240001125 2.6078296891757167 1.5954515218508503 2.2521160746556497 +3.5434159027183996 3.4221553908143956 1.8137126330699185 3.7260930668968 1.9162210299000253 +2.711464221441069 4.611284029130712 1.2918495840887112 4.484055750606567 3.714767221676822 +4.5413065076409875 2.6697078302135515 1.4793471659999309 4.54993677529291 3.5960258839510786 +3.580598774516573 2.470160983331991 2.4661624757492477 1.4595979117167257 1.4987475803673127 +3.581645021639863 2.6421503165074833 2.1543187303273608 3.162621422089926 1.378159867064562 +4.753862448840994 4.509180718884078 2.2875146774602686 2.6802134457671265 0.4626893899847202 +3.7351853767159886 2.9591880669522017 1.8905629266822435 4.4774921516017105 2.7008099969274157 +2.794477414152541 2.183154773705497 4.0454692261542435 1.6997812562124635 2.4240394846315385 +1.0204997154472921 3.0358867806121124 4.885359054301366 3.1226659055664916 2.6774749595524763 +2.2714141674615758 1.780648119385305 3.8405209288776394 4.065646009007824 0.5399376034765707 +2.2366792119949523 2.55058537403772 2.2789825374887944 4.095523061637621 1.8434631958472387 +2.9811449055208397 4.057628472750881 1.0597990740794194 4.7474402948746555 3.841551072656004 +3.0626258406835345 2.460631532258478 4.193597906469151 3.0363063116433002 1.3045002808856436 +1.1734509524106982 1.3575212163865973 3.113885207749465 4.6751582462054015 1.5720863089186896 +2.697774463299126 3.8951570192314606 1.7141260899815807 2.995724899266843 1.753915760010284 +2.813907075828965 1.725997235092505 1.3040820250728502 4.976416078762677 3.8300894537153023 +1.788900272926544 2.241984472911457 1.9353313896384843 1.773076750345052 0.48126069884025496 +4.2666071067190945 1.293625526840207 4.0092972922869965 1.4473861988641508 3.924539199052827 +2.6939046656517363 2.2380730600808305 2.745827434285621 1.3283935283404684 1.488926234022452 +3.514418347419654 4.108935841449871 4.128408108341076 4.958794468888485 1.0212700712794538 +3.081611135094172 2.4561353818268596 3.755362242378966 2.4687558429152956 1.43058587476117 +1.5405547773503119 1.3674224565537374 4.853514803105144 3.8456411202339904 1.0226358888327118 +2.4987514941926277 2.494955230720884 3.0212571037495177 4.004637395393331 0.9833876192071052 +3.345850821823511 2.323150929944804 2.7409033542261483 2.2875335300668826 1.1186864021283724 +2.0155939987461085 1.5030475806164358 3.6852039453148544 3.115806857137708 0.7661050024390719 +1.2231515302235239 2.5929590098804907 4.495363918950632 2.030869328863019 2.81959325362636 +1.289494857011277 3.433181835791418 4.542781549271521 3.622783032324786 2.332764697558612 +1.2683233670239469 4.405738811100686 4.461030252054082 2.405315223525619 3.750911882096008 +4.597074914556417 4.354105193355621 1.663092489079271 4.6516162689578096 2.998384342995391 +4.597471881166386 3.6860188543987427 1.6619862323199448 2.2737165549443126 1.0977069771218597 +1.8954776863652452 2.3057700725528165 3.048221064484638 2.619314330872564 0.5935493478231356 +1.7038259101377493 2.706539671297868 3.8461008540643045 3.3785545114481956 1.1063609127737528 +4.269150031975937 4.825310501637597 1.9755645912070032 1.1860001399813425 0.9657776610864206 +3.0207765009338288 4.926727491224404 3.164735090457512 1.3252248076349717 2.6488577270211184 +2.344667627966091 2.5982007455379077 2.5499562233635458 1.4444435115640455 1.1342122366012322 +4.189889843867414 4.993597511363303 1.7424496333796058 4.453136978916108 2.8273259274521942 +2.4775439453961545 2.839825691621146 4.886276757312596 3.458532522900335 1.4729907204545734 +3.0514098478498637 1.4915938925205872 4.660738874234809 3.3687214235824445 2.0254221553271354 +2.7419759087249793 4.809530165973198 2.5092316174894855 1.180865185205319 2.4575064567737357 +1.2192468553259248 1.437022305163727 1.7243948209578561 4.853998931793961 3.1371719807996348 +4.1759444735080535 1.0150580034115486 3.631552365388617 3.4198944451489095 3.16796501748983 +2.7854114217941457 2.3428315274908798 2.8182634794516446 3.637256523563307 0.9309278001782832 +2.313502094905927 1.6158115990162143 3.8901574853144067 2.301332296521468 1.7352629508514696 +1.2843874050524202 4.394470337343677 2.715961860192158 4.982969357412138 3.848628176140296 +1.5829887268284302 4.368118564039331 4.3383551252329635 3.4681795695902147 2.917902278651666 +2.1753905225167767 2.900072568127854 3.104660481352688 2.758943493353781 0.8029223518012758 +1.5073847776569447 3.3725684045852864 2.6935178166401657 3.859311372736434 2.199541901759807 +2.770143395599175 4.18132816181114 4.118703300024579 4.648840627475705 1.5074773730791915 +4.004779417890554 1.7947420213541694 2.0049224541422457 4.3091820573802515 3.1927852438276982 +3.2982091639707947 2.6368169138430297 1.8443192362970415 2.2522097060916533 0.777054916899917 +1.3892746096700077 4.406574992221371 2.4937660808658375 3.915170922698642 3.3353400610627912 +3.5173401757071 1.3007192667651464 4.919839865238011 4.533755237353199 2.2499932430671 +3.297055664519077 1.0082358881668152 1.0176685585523986 1.6188609343466016 2.3664590090120505 +3.876838995360638 3.3310136771929235 1.337658746222091 1.0758494457807797 0.6053671511987215 +3.302507328297788 4.762547698680418 4.843049395676857 2.6289163550869277 2.6521883425916517 +3.3677868263538184 2.744286712159063 3.920739199760088 3.558388233482888 0.7211453495398091 +4.954142228805091 2.864817917923028 1.0900695008990238 2.3962288357084676 2.464006551118048 +1.594908055466521 2.9120818220051468 2.49010805949432 3.524453455318015 1.6747588271507117 +4.821320740340024 2.9368934173263694 4.9742149359485825 4.038157313002962 2.1041079366788704 +3.7078458932714558 4.266060248137027 4.745307313833301 1.197080963732431 3.5918676893126404 +4.54022279903265 4.829830627557817 3.4057943079801363 3.1686118000415444 0.3743370625720924 +3.463308473613832 4.193201926700817 2.7117182571796885 4.667713462417121 2.0877408114445304 +4.198906014212178 4.479596568814517 1.6483302412692922 1.3119212291051312 0.4381303583503833 +1.9543421857660461 3.9777866078551094 3.93751287616956 2.243483592986168 2.6389510305358415 +3.340402406365377 3.6877705928960887 2.14493648788319 1.2148831253312937 0.9928060808676203 +2.2709148062820534 2.564868948924012 3.549960572246748 2.365357426356894 1.2205300697764507 +4.272894136659073 3.0970070824629956 2.655973568134992 4.694801189509125 2.353620282438107 +3.2009244854826346 4.892617001105721 1.7258989607556021 4.643045487150999 3.3721754734704863 +2.9219728201832287 1.7172527082391307 3.9628023804006074 3.3316196275347845 1.3600522841559728 +1.3814265202930343 1.1891069752896795 1.8771200198665463 4.734445162729214 2.8637901074320133 +2.2528339746442403 3.8111083630277225 3.142683279166865 2.2297268599970783 1.8060200698760895 +1.7879600981401493 1.826528885818949 2.6081422264270735 3.718524182958914 1.111051592309957 +3.1372730773676105 3.5865190864116276 4.803057352090345 3.584151867074653 1.29905833511945 +4.897327029272088 2.478325636108618 1.42180281040975 4.730395977617656 4.098579813328228 +4.176464930133777 2.986200471799593 2.308460962359416 2.058777913885404 1.216170672837018 +4.149285768021457 4.641741802686385 1.8192703453274395 4.380946321604683 2.6085813680071155 +4.900824790619566 4.423182961091821 3.6884285048313066 4.623346848939053 1.0498638137700445 +1.8802425289136169 2.398504794790574 4.664877431675816 2.7306105517741788 2.0024944791225594 +2.8423354041502686 3.6683463434799757 3.503646381565032 2.97811333167567 0.979019437201509 +2.610601839655175 2.745752928705735 1.499213287803288 3.1233397604231197 1.6297400455091262 +1.9688845191637747 1.3469267862106942 3.0740196139385914 1.6294684532617927 1.5727553774801795 +2.9923428521255975 3.428070030117015 2.5977266752939436 2.922707248925267 0.5435720254741854 +4.284238935965089 2.4479332379724688 2.1561455707873414 1.2285493932429254 2.0572927076804546 +4.669732669639488 1.5915506580196674 1.0448808230997866 1.1226823245708988 3.0791650768172536 +1.601797057919741 4.424396154776618 3.178269415530472 4.736434049503561 3.2241189010552556 +3.1748970686949356 2.776148166001989 2.9553457589397385 4.259328961139568 1.363588236608893 +2.2497666764405966 4.2342469124635596 4.013063112260403 1.7665034505853008 2.997531004115137 +1.3727572462525188 3.07888631428892 1.2532412119519307 1.4899788522270532 1.7224752849088407 +1.4537431724017291 1.9469415559649947 4.723435191103982 4.861721531891444 0.5122184666700373 +4.298677630234657 2.7936656446397135 4.0159191744107074 2.155430636716418 2.3930062005093653 +3.081890184374715 4.5107704676684275 2.2322775003822484 1.6647559637890508 1.5374587989545032 +4.842217410121251 1.0041633241536458 4.105917178780887 3.9770223919070986 3.8402178366462327 +4.575580786434123 3.4419900912727353 1.2143205446390741 4.822262149267807 3.7818342753969847 +2.747368103914662 4.7309052762378005 3.1205497134778177 1.8711312926532973 2.344241050805849 +1.0817350703371011 2.8930858688606613 4.187257625986412 2.6690595735419245 2.3634544721145305 +1.2206214278632883 1.193971122833322 1.0514372833855559 1.0266532130381316 0.03639352828699517 +1.7353926380302642 2.567452401864828 2.504893064133582 3.021089112395095 0.9791740452203745 +3.3647698237459345 2.7691858391720197 3.614445659324502 1.975242874272678 1.7440487531037079 +4.312043689629524 4.943094180878262 2.908302009361123 3.6215115674161233 0.9523090864873034 +4.241699771629812 2.096028545350178 3.260685696425367 2.0231624634488554 2.476967654904074 +4.676166975754805 3.994347712091831 1.719286073816372 1.1936966437877672 0.8608842879619268 +3.185616059544512 4.592082876677061 4.676360080183795 4.606825113186803 1.4081846538470146 +1.7725645731943986 1.2566074871723933 4.720436155705556 4.7707572116563295 0.5184051728988821 +2.323117544731417 1.1270459183347419 4.998772850739952 3.7080518182545603 1.7597011448457216 +1.1189907181604695 1.8597474832592424 2.222778937815688 4.1850416107580255 2.097425894438801 +1.750876477380631 4.508275307760872 4.577817647368676 2.043683098833298 3.7450081735375322 +2.766300762140808 2.0858726224165745 4.785019746004107 1.02185568999516 3.8241843791541075 +4.555933412177385 3.157634094090474 4.604449642428495 4.7749076251059845 1.408650739829004 +2.1964843764859223 2.696498158800792 1.0360987316894592 1.226164424049446 0.5349193863724732 +2.0677200048999533 2.063257944886025 1.6206988562527203 2.7312239663398836 1.1105340742695264 +3.8479198324824893 1.871334980381297 4.164218439248378 3.6625307207676747 2.0392592391430435 +3.0695216690988576 3.4862095214509297 1.4568049261058627 3.992249061281353 2.5694563099795205 +2.3630042440529193 3.8480559929683387 3.3959665523444142 2.7689676594417705 1.611988309094668 +1.8750725668036354 4.23679395626068 4.074715597093569 2.7667347900090964 2.699729933367458 +2.066108413214369 4.264647722214385 3.3081870197623067 1.7740530467562103 2.6808845816912257 +4.2198165370789535 4.46023524852041 1.411376769036806 1.0047214948306453 0.4724083708518068 +4.518031485110271 4.9330895959787275 2.0575177738577906 3.9842014977140354 1.9708839151939566 +4.484668570308625 3.2051299806003897 2.812323850676919 1.7305719790194392 1.675531591581311 +3.567963866320479 2.7184044556355613 4.435910133810252 1.902219811978627 2.672328168325617 +4.1048678916049965 2.428024720259471 2.804533266956631 4.052496754649024 2.0902669417807576 +3.1853811923652535 3.7203686848167834 3.203149370021617 4.585738273534021 1.4824856468766259 +1.3413005612669573 3.2346432033604215 3.7755425513289778 4.592162102778421 2.061944192304668 +4.051528495000873 2.134631547762731 3.262101366423542 1.1224881797731383 2.8727057793688524 +2.156463187445591 4.5732948266754905 4.447173687984998 1.3197685159018548 3.9524344754537144 +4.6354716050939935 3.585199218252019 1.4586382363675092 2.8162489769479504 1.7164437099719034 +1.2709390785290986 2.203392222322518 4.353861142975189 3.6752724018333875 1.1532352513579553 +3.7518082914674658 2.5865881509794924 3.1006896282786083 4.284177251126711 1.660837418061583 +4.55942430434555 3.9448995416325308 2.3478693441495673 4.367091978141256 2.1106635756585717 +1.1575195172528265 1.032012674663966 3.516035557124507 4.188188066535982 0.6837696713402609 +2.9513518669803296 4.269432953166507 1.9989368063843105 2.0932862441810522 1.3214535807868144 +1.8093488945779876 1.236365711490783 1.682449337172991 2.3387366213782075 0.8712191041926273 +2.221012957600424 2.9102901291168926 1.6251300588253375 4.8741356446258335 3.3213160517687212 +4.068034855853972 3.4339969866348867 1.748397291327458 1.9924330317211179 0.6793802044461991 +1.4345501915048855 2.3954778015340374 2.030544894818861 3.926174574922155 2.125274983573856 +1.3436519304928112 3.4515948808045605 1.8328961887598139 2.835699610317795 2.3343174985544266 +2.562241295149805 1.3578713157565456 1.5080497023829968 4.679584045486452 3.3925119213863324 +3.412960091052946 2.7264715937970383 1.8776503129266993 3.4487074483912465 1.7144932136811577 +4.12428874602567 2.757575081924216 2.5686741890743154 1.5501525353959913 1.7044918887026859 +3.52275591675847 4.859320209347704 2.110484565226336 2.539798138820889 1.4038213036911373 +1.7254198055483183 2.0282278864271635 4.469838610901702 3.7332521320661054 0.7963996325017684 +4.585324140119923 4.3617744084559344 3.561137002090682 1.0360552337366111 2.534958070541042 +1.7003862808796653 3.060902339976898 1.2789044632227018 2.4401816321594083 1.7887338008085825 +2.2247524581069094 2.220988734776434 3.0186222747523885 4.03056549483226 1.011950219269173 +4.949851586608727 1.772784234960667 1.02351936887516 1.0930986405195138 3.1778291697242906 +2.087268039960377 4.169555915263437 1.8019860905470262 3.4952489044292347 2.6838520362550593 +2.1367773990766885 4.100277369400782 4.205470782173654 4.125853439339788 1.9651134966567814 +2.2349648642705655 3.1584533141715223 3.9265494808498436 4.404611429815242 1.0398914097871312 +3.980503267658584 3.680371815618864 2.218012727933443 4.484379362023969 2.286153233845511 +2.055585362623599 2.1175315104254753 3.5322569478060513 4.0322975827800445 0.5038630387840393 +2.5027638451281606 2.1264868469961433 2.1866350236303567 1.1083982897023317 1.1420064946028181 +3.5071097407726293 3.174509888812289 4.710914995186195 2.3655590795677686 2.3688218659178206 +3.5845958737237 1.0229099199947411 4.867429127782288 4.84385625848038 2.561794411286622 +3.336871382737466 4.7026283873535455 3.8628797776085024 4.024778887059284 1.375319423733571 +2.281568277820101 3.3832775750768285 1.6247874344641802 3.2358455523843856 1.9517355443242064 +2.222848421080646 1.1136161683459593 3.9286694772292114 3.4824000635938406 1.1956389839969777 +2.208576313766988 3.7545818291898083 4.412156033477451 1.2795993710269569 3.493285602005762 +2.0506166491516598 3.674649413402222 4.2093251437025945 1.9910285598873916 2.7492402865383596 +4.4460774572526125 4.143813230660895 2.794438238409484 3.0132497198747665 0.37315161409019926 +2.2915075687428015 3.7647174002216457 2.9677281437181224 4.91243751677904 2.4397216548690364 +2.1742570263822083 4.372570741864045 1.3626459207942618 3.7801427376707113 3.26754863028591 +3.153048618496943 1.524065849895286 2.976164249540705 3.7427111143035487 1.8003274580694664 +4.037308471395463 1.7867301000847826 3.001700897531553 3.122892366013511 2.253839030952354 +4.559883387693201 1.8607504770828127 4.950145222313486 1.0435761049655792 4.748326098506348 +4.86928074780649 4.2111381245687145 4.601092079968737 1.1316601765381327 3.5313042130442978 +4.114557205279435 3.5591893528458787 2.971034851685689 3.9614310817286835 1.1354814591176892 +1.2651762229684733 1.712073253916698 4.15276470737398 3.4780201188521236 0.8093189828552573 +3.2574999586561977 2.7039210544268237 4.150433749666885 3.417787908484946 0.9182698578353667 +1.531628266640341 1.7396533040170663 4.847298914324295 2.2494668344428987 2.606147718652281 +3.0684354870715724 2.0959353097354043 3.2595684504085516 1.1331485417411833 2.338251103473666 +2.271943086305355 1.9914437657875452 2.4602099410278737 3.0344596070659895 0.6390951007133763 +4.920710922604915 1.166141619417865 1.9147661508825942 1.4127339612076266 3.787984552754186 +1.3500213215917358 4.606393527872829 3.117534565496777 4.362047666621846 3.4860827306178392 +4.542350750063092 4.321862756516952 1.4984419730073313 4.303625793318954 2.8138356776891067 +2.30972867826119 1.1674141286610227 4.86258955583622 2.0637138333721325 3.0230097320430684 +1.5439001513048694 4.78198930910656 1.2875608748968763 4.742292791891501 4.735017847080855 +2.9353789075375554 2.916764031035583 4.091901861958757 4.495488676302408 0.4040158788206724 +2.0155128365638015 4.398134216506566 3.215391461243203 3.2389839142542955 2.3827381820081377 +4.999975257885721 3.102190838342159 1.5985158860022062 1.4414801404541109 1.9042704451947312 +2.734567338234016 3.691917213766297 1.7832497767691642 2.6743534972065977 1.3078932008230293 +2.0529017766562423 1.3183164678717487 2.5910655303867656 4.072957975081364 1.6539712190739422 +3.593235200022923 2.5811539777729178 4.1708621042561855 2.746892393394515 1.746996891205744 +3.3017188404468567 1.6775683596313855 1.6799062765942252 3.675500633881252 2.5729869069175124 +2.157292412144155 2.2127554252858 1.6020595446073806 2.306785081340278 0.7069046809508485 +4.33893760321489 2.6811214865101554 4.737098708566978 4.446167325420165 1.6831504230180037 +4.744957074921527 4.98005662990394 3.4931495100591556 4.86904206353255 1.3958338437853075 +4.379618481488861 4.03565607505846 1.396759550367502 2.7553290861079858 1.401435449986729 +1.6128845351544827 3.791352803554413 4.724159224785633 3.1579025451938803 2.6830736074120614 +4.9916020253539735 3.833450605942435 4.332255417422946 3.352127992748957 1.5172226200802 +2.995685051629988 1.8084933273247126 4.012862764457349 4.180729654493719 1.199001035458025 +1.5161954146927674 4.957111531536578 2.3676844736074236 2.178674857274352 3.446103358609817 +3.822142420519779 1.077928249858029 3.295861403199816 4.308230449476439 2.924996153898291 +2.270378973808164 2.8716632882582847 2.771921012716411 2.4891428028401577 0.6644594365230808 +4.603353361226854 4.518720538165935 1.1151667763298105 1.4792359055782964 0.3737767323028703 +1.3544802907742213 3.493335195519702 2.29790972290967 3.8440865510170346 2.639197432427129 +2.5026639787755056 3.4383007853186935 2.5293668202958903 1.928253661139275 1.1120940894859486 +1.6267683802957684 2.358086973055963 2.428920560293948 2.1490788742896356 0.783031451055759 +2.173395322977426 4.043450599423771 3.9716642573834693 3.177066733565424 2.0318690808766653 +3.096641855300099 4.9428662793575056 3.432789819129104 3.941176849740906 1.914941773757204 +4.695489278944809 2.964743343755842 2.08773412215976 1.1774358651176007 1.955536859521478 +3.4766504270560787 2.77882916360273 1.2758573271985436 2.557980596090545 1.4597241494069828 +4.6110988639937105 2.568836861736855 3.020254024632001 1.202399920058761 2.7341228266806077 +1.478149938709182 1.2908944297097809 3.7434669941946965 3.6874668254270695 0.19544985175903193 +2.1583138536078312 2.050334513189716 4.006555098448228 4.435277664303051 0.44211149773589276 +1.9322283103545304 3.1001560382122615 4.4166943288928735 2.052134192547478 2.6372712821954205 +4.611697725587563 4.425446072926862 4.810661059091904 1.6189318047562775 3.197158943671819 +2.9619481625262196 1.3090782755260362 1.4866369725435002 2.877441067661495 2.16016547846432 +2.8992487300476366 2.4591275373024444 2.2127135350484086 4.93365072799145 2.7563029354996904 +4.28225539956987 2.17837044294757 2.598772240545336 3.650929009600532 2.3523107314660376 +2.6205874022484723 2.79479524450908 1.1225779361952402 3.165219285056595 2.050056597360969 +2.0376669656923765 4.067675091779001 4.0561222148216505 2.0846249414208327 2.829794072190517 +1.4245712482894297 3.925226120675734 2.2516175508231804 2.9600247537917794 2.599060514110273 +2.286790375459054 2.04795103786456 4.3783481219088145 4.709737100181679 0.4084885360733022 +2.9552949298301545 1.0982378393387653 4.0038959383387205 4.4009324033021215 1.8990258007344127 +3.862835098608476 3.769573258459978 4.458878555835816 1.2105840740248555 3.249633027188058 +4.297856374517765 4.682187137011775 1.3492814018586805 3.8639890484766055 2.5439073652469917 +2.5205892941621917 4.61837817133425 3.1678743420316313 1.3376758183942616 2.7839441102707525 +2.9483079546724005 4.613940599864069 1.7077069400953127 3.551464988629018 2.4847084034672986 +2.328116586545642 3.1240099561407204 3.451706574328211 1.4797343861574546 2.126527819400529 +3.2162930218841472 4.418949372530518 1.363534888079653 2.5023052959939647 1.6562549138618048 +2.127728170985106 4.976840006503281 1.222730007697371 4.270989710241139 4.1724483778043275 +4.338194579714306 1.537296839106597 3.168334002347278 4.650803332571536 3.169028789455364 +4.490350328953229 4.903866490797233 4.094908947952712 4.379992915463795 0.5022633618312771 +4.0946404509187175 2.000753224815925 2.1034544532789705 2.890047980720828 2.2367595072000634 +2.3191896105741177 3.282519329088663 2.4415976515507136 1.6280624185592472 1.2608900514683241 +1.0979620319639674 3.861262706200018 4.274558274442846 2.0825796025083805 3.527123631863362 +4.280334088895783 4.045984409652107 1.1802762917751974 3.4607239928960856 2.2924575218985317 +2.59562997003221 2.174937870036479 2.1302003146736594 1.5886485892271751 0.6857551416744042 +4.741429652502592 3.465029949661746 4.128326297925586 4.723444420011053 1.4083187780636641 +1.8865336646342667 3.4054248982870625 4.457431081785119 2.8244513418768 2.230168919749881 +3.518740555940794 1.6228222536858374 2.8697749190170256 2.0454887239247923 2.0673543335008993 +1.5108264324813514 4.768722160370932 4.7912202258869305 4.020340080834003 3.347856145630813 +4.082566669004898 3.154393311249555 3.346619201473096 3.578070043402453 0.9565956691709595 +4.385702223815782 4.127546389972256 1.7270702562459057 1.915855021159023 0.3198188893901473 +2.6708456739334103 3.8150996083614306 4.2407027087230125 2.1147750110111554 2.4143085226110688 +3.2384718204458807 2.9882556095153183 4.431684851225674 2.285967702349358 2.1602569836004126 +3.1156045942605974 1.0873729459774526 2.2145244144602376 3.7187106664409817 2.525133639977346 +3.3291307735940325 3.707681963845181 3.037822050303547 3.1303746029784825 0.38970114016667684 +4.007077342159249 3.25266010249148 2.5976989152535443 4.890195819418026 2.4134389213551004 +2.0929259415264645 3.23421448603338 1.8962971101463735 1.8752816261382685 1.1414820157982377 +1.7993375876709887 3.1741883504739503 2.2753496613619637 2.511917274087458 1.3950551442041725 +1.1513726753789788 4.195537455278968 3.572363329431635 3.0018556528591733 3.097162930201067 +1.2800465275981145 4.951436902506856 4.005637322697946 3.543439959015796 3.700369398852941 +2.945351222923482 3.7471228338444815 1.7523754742264464 4.227765621608036 2.6019980972000543 +2.2046816564111014 3.984747834467447 3.0164141608896875 2.9322103169383658 1.7820566448899162 +1.1307251717159037 4.891435906449413 1.20615750960506 1.4204568544377292 3.7668115747320785 +2.537373841758342 4.692379335434797 3.410821448271041 4.687202098050017 2.504634951625866 +1.9516729073129406 1.2653568536513768 1.4136631131813222 4.42255425289349 3.0861716763900175 +1.2134764782500116 3.7449455171072454 3.7166888300211816 4.324692622853826 2.6034600259638423 +1.2580366977475292 3.3435285593443824 4.719708156581846 2.8305383845839747 2.813936518867687 +4.767122272582676 2.5242564868910917 1.0337879385295201 1.5663199428010999 2.3052195704963627 +2.9173702769063112 2.0320376677849525 4.074518607467933 1.4748996615189616 2.746239700556103 +1.5501324261285423 2.183184953313489 4.938672873022728 1.2977545925827347 3.6955434548950126 +2.9810060730403074 1.621360749002037 4.119619331204146 4.511031363882344 1.414863522218455 +4.446241114912405 4.819793253288275 2.4086587898064025 2.279650655243496 0.3952015926949005 +3.6729556042747875 4.164358731109855 1.5594958460345252 3.3806795562375833 1.886315758130716 +3.51490609072395 3.0957768233421086 3.811562940998952 3.0864178229243526 0.8375588248257335 +2.409026808005534 1.9956134299051076 1.7030110518769601 1.0745062259921547 0.7522824850765141 +4.123940145849739 2.1842014143807504 2.573718748315577 4.79940646948552 2.9523333447508215 +4.383163249115934 4.509890936799019 1.3423687024316466 2.0163998362626967 0.6858409992112403 +4.861570046237249 4.618174294225499 4.651667668032884 3.6249858932520618 1.0551383600099393 +4.749050422036523 3.84185536219689 2.974670128996298 4.290895749864432 1.598578356423963 +2.125574326503364 1.3727004990759863 1.5291874753069217 4.386118286139454 2.954466560634826 +1.1773402405586153 1.4804548985771038 4.847245704074076 1.3961524986645855 3.464379137497687 +4.679963783329297 1.8213585819041507 1.9813470701970015 2.1496000702198863 2.8635524736996882 +3.2141734962046424 2.784453116254304 1.607664921001105 1.9831331389591065 0.5706452379904879 +2.3562315388645225 4.83358446813317 4.841523735240255 3.6167526246815784 2.7635741005833516 +3.6956906049365577 4.956164902207199 4.504511436833062 1.3176314736411312 3.4270978033715527 +4.085196056189833 3.149298592666312 2.2585668734370903 4.683966962732075 2.5997056863002554 +2.626260446480885 1.9363151486857766 1.43779774494993 2.491847615219823 1.2597799978430992 +4.018159207782068 2.241464736487196 4.257500990489964 1.5222998563463586 3.2615898712974674 +4.872434896371316 1.4942597072939305 2.832040101818624 2.5841200877837327 3.3872602411767967 +2.0162543134791626 3.0671383894060535 3.40374824238604 3.729763885347883 1.1002924795219402 +4.262220884238378 4.627461547859465 4.988134143151872 1.3845482957245645 3.6220479983209444 +4.778782033851151 3.6870714917134437 4.740892416576873 1.0339802265413924 3.864327870723219 +3.812601796734977 3.277571115738926 4.723257279831138 2.158937127165485 2.619541119160815 +1.5099112579434384 2.142429174613079 4.809417424123344 3.9267548259965315 1.0858969458655265 +1.5803505148113226 4.148751532451927 1.5120161299929977 2.63470999676468 2.8030564221763434 +2.7905022776438297 3.4125711394422433 4.272652899296878 3.1426859192528878 1.2898817948978536 +4.3275259131026225 2.195122701087151 3.9566931802438416 4.124701506994572 2.139011513870713 +3.089550391429771 3.417050322862845 1.9092193307113487 2.9004689333282156 1.0439501806967442 +2.008394373938578 1.5809842783666541 1.980313998800154 3.4513702659751226 1.5318896601882115 +1.0902565377092848 4.4263332725978675 1.036986604995803 2.7308389508746953 3.7414627822155726 +2.334571664559771 3.5704256958286336 4.936446779432803 1.5367138587787053 3.6173912033926796 +1.3902369293937746 4.495115666729547 3.9075225631024786 3.2474774464107625 3.174260784754202 +2.294450751458664 2.3269668189962798 3.2284251134351023 3.075193483620876 0.15664363065134476 +3.9200692772174595 2.41532621486656 3.6236746321781705 3.917574522789659 1.5331760594904318 +2.215471229920268 1.3442235291764937 2.66084042417871 2.2231120940114013 0.9750275109361652 +4.859246327119527 3.4236631565606648 4.788064497768486 4.385439426083035 1.4909748448386206 +3.0830359824385396 3.503739699153178 1.2495544187740468 2.6813169156384964 1.4922920172288778 +4.7980437630936414 4.3456189404003025 2.0055588211256308 1.5126203504155749 0.6690863592205926 +1.23925187404509 4.101363143150919 4.740438281558189 2.4727039942872255 3.651616041481761 +1.6582101859392955 4.639235890610191 4.773238330861908 3.4620902812931584 3.2566276206831732 +4.46487239875362 2.457083996887659 4.537857482549944 4.90135774620636 2.0404280698779247 +2.087757346321316 2.457770564523332 2.6921072745298344 3.0133276937819233 0.48999218298734176 +3.2105845852337778 1.2283097172384676 1.9755023332762414 1.0040674717336282 2.2075097604554643 +1.186728591132494 3.498272685060842 3.072513791593466 1.7388362345487853 2.6686947979002196 +1.726236626600345 2.6445509674099306 4.880330508086619 1.3219113785557277 3.6750031197194826 +4.377435377472747 3.683636422859225 1.2361365128960338 4.638443586450963 3.4723263689038104 +2.996803578640435 2.5192144681911226 3.8367516365973535 4.064794712386747 0.5292400238410286 +4.902482376034372 3.310419234732186 4.266694294945669 3.1126559394279267 1.9663340438234491 +3.1614459660751577 4.052490969407236 4.623547877162839 2.6282242902235287 2.185240813859978 +2.859178473003904 1.2070105346246147 2.2792456117721893 1.8599617796358667 1.7045403569582596 +1.548645517298577 1.6544436613835654 2.2446705280464045 3.06619733216069 0.8283112562135441 +4.567492832280326 2.74777747519401 4.861400539492024 2.6544185778439284 2.8604428607919887 +1.6638944478773676 1.2109283404900535 2.0578226007862246 1.7654843538281741 0.5391103273691962 +3.620971293954933 3.8703445200168347 4.858235161407672 1.9786070309993908 2.8904057111961308 +4.6096287629429735 1.20500914427587 4.592027787147847 2.6891600498893276 3.9003000363192952 +2.976386285221086 4.523586527850842 4.165994795718829 4.555137449909363 1.5953872871826544 +2.2442377622876424 1.169922486467427 2.08323040776238 2.2630946441791293 1.089267852918852 +3.551849732901783 1.9491098972879066 2.923042538300415 3.583500063534231 1.7334875607576687 +3.209295301407586 4.303192563337818 2.180049478030052 2.4051400822148032 1.1168155621008848 +4.057236461648235 2.9909622176677577 3.671277130678444 2.4556311738860757 1.617014488383382 +2.226487736214428 1.5759768558483445 3.3624722725430964 3.4220984456984342 0.6532378479541794 +2.955762009136951 1.375270871784815 2.3931224956373223 1.363381426985641 1.886350684182704 +3.90644619137559 4.881651649035099 4.944857541246179 2.3782400105599057 2.7456422260511286 +4.438875534696633 4.580702426105553 3.2864391915119033 3.612369403203032 0.3554509389771555 +4.090821464765149 1.8308082436664472 1.3830748271061295 2.86242753462022 2.701137573832588 +2.113061583068458 2.894147142052927 1.7191550260854793 4.609596293964769 2.9941184635070326 +3.6428766785067443 1.0192210641910338 4.215339501504239 2.682180880718691 3.0387734596411415 +3.092381992736728 3.676395891830196 4.441191161945285 3.784962231192109 0.878469489448445 +3.5191690252892336 1.8503239164973673 1.9376518127866853 4.584227630293306 3.1288028948703963 +1.1199581771343396 1.2458527904060728 2.527733613871847 2.8490334582810752 0.34508411100517716 +1.7624177371503582 4.7172962333098685 2.4354309268220313 2.2266464327543574 2.9622454138759307 +2.9147938471418233 3.095045688983685 1.5189675569549825 1.2235798143314525 0.3460413920033388 +2.861757684615878 1.8658143488101735 4.991889678706697 1.4142659603391294 3.7136632316840434 +4.806251458762743 2.742252005915475 4.489937656648544 3.4539092370094306 2.3094260385761958 +4.677762585993262 4.683207104612396 4.266594497321243 2.204146433150083 2.0624552504688096 +2.680026355082291 4.215292830757306 3.5468810908870445 2.8939467195962973 1.6683424242476201 +2.359940070003545 1.566744322870918 4.66742403814443 1.0594623559802665 3.694123305093395 +1.642255134579806 2.585855175035637 2.911900432508593 2.838965540096334 0.9464145681885048 +2.707435554762486 1.5855861043968797 3.7416109126530293 1.8614004148602046 2.189460596881331 +1.0021074097562157 2.5633056978199744 3.661358865989285 4.248613839907054 1.6679953534240946 +1.405389962866503 4.835642961848072 1.042757757702275 3.844725283550657 4.429182503908701 +1.9694804477152283 3.744021141255896 2.0664920006255976 4.6644560279220135 3.1461741465084234 +3.2060934717702136 3.042353565355241 4.480289988320898 4.2805125058675255 0.25830563185534977 +3.5291383092174695 2.8218611334925927 2.773334421092643 1.506084826703138 1.4512623945316447 +2.8367194053578126 4.69508351644262 4.46451134589885 3.978838135562698 1.920779955280211 +3.5299914422399135 4.602654694460524 4.449898458781295 3.3510832811261944 1.5355784731851732 +4.654406268007849 1.2307633239001277 1.4348876444166163 1.7867951634882577 3.441681262220216 +1.1260147461866885 3.6833279941780965 1.1764269011711352 1.8534123681025978 2.6454036309774684 +2.6286914746594374 1.1610205927928612 1.6801788452717465 2.8741310753890983 1.8919777338227877 +1.6466317418473024 2.231547454229425 3.218241005125926 4.165479153387338 1.1132773689037225 +2.4265429757672234 1.4858908693590211 4.068264314922695 4.300593611177051 0.9689186174226566 +4.881114646130685 1.9294829128350872 2.1678648054153538 3.5107238058702106 3.2427457785185987 +3.9391335422187117 3.738115767529301 3.4219850801781933 1.3207483010064478 2.110830203470931 +4.0977725120585955 2.7771211201206882 2.9626911903068467 2.4348058492480438 1.422245770720483 +3.2978063482248885 4.707440040689274 1.868595446758512 4.155316584377955 2.6862912552748885 +3.604088802432992 3.2967775369861982 3.43288392533707 4.8947065038580995 1.4937755738210412 +4.48620185972864 3.3108157579303352 3.4426862456485985 3.912830787005629 1.2659258975423588 +3.0481744892709917 3.038755016047496 4.112766470111529 3.1439714342504246 0.9688408269602012 +3.3178415745764642 3.9322296428996895 1.7667708233384913 3.180369324601027 1.5413414356558484 +1.461994267381781 4.311696613742524 2.972061873913181 4.002223449762151 3.0301875082591105 +2.6174760225628715 3.265318645818117 4.636787549575546 3.12882452605456 1.6412350668971192 +3.0467916582114722 2.9129437813536283 3.6117983135632317 3.986703263189861 0.3980816190103456 +4.849181173984359 2.844089142058346 3.594099400335102 3.999039520040084 2.0455734054391383 +1.6247297331509087 2.6799707269158217 3.5223797350794133 2.9884728889232703 1.1826200046060276 +2.1300508476098194 4.801214296992475 3.306557702006809 3.584329718338562 2.6855672522532097 +2.368117528882844 2.955107332092931 2.0569878478839847 2.979416130053507 1.093357656404725 +1.876839557648485 3.868919948301948 3.451363523810201 4.182795114372544 2.1221160322891426 +4.13109665667805 4.610534102109595 4.083712744049894 3.6750697505006658 0.629959808447174 +4.043931082536286 4.306179851682069 1.263331708334888 1.0727795901617259 0.32416743614798355 +3.3522890608957763 1.1184052846526984 2.813982331256013 4.497970637634391 2.7975084167489386 +2.187215280392153 3.115250771610684 3.0076911158762476 2.156334712418955 1.259387787247818 +1.143577538637242 2.806589942981137 3.672574609617158 3.6316739830018023 1.6635152894575966 +4.051865095580553 1.8714336023639553 3.2273495429393853 3.4647128174787194 2.193313206250032 +1.0894691476921454 1.3879926088164845 4.030291508881584 4.407803193608062 0.4812809251847394 +2.2584872113365377 3.0053083165129717 1.336672926485329 3.6069144876271064 2.3899243730863966 +2.684554463089426 3.552304177933102 4.515834196292684 1.9825702243061674 2.6777632306416086 +3.633939422361626 4.4178686752371 2.7413254800486353 2.692102030699113 0.785473119514452 +4.418241897854096 3.819952965954933 4.036576950302278 4.77922814477204 0.9536668405058477 +3.252781110804156 4.144715067483936 4.819404541284047 1.464518990223858 3.4714266870828308 +3.976534638043523 3.89417965313301 4.26049509925093 2.930903678516066 1.3321395158283404 +3.3903608957449287 2.9283954672903856 3.3370707615007733 4.26958312931617 1.0406687144408002 +1.373816123385187 3.417052740766488 3.5716505804467062 4.882891546904054 2.427790919071035 +2.48016874444162 2.345639989618035 1.075897519245097 4.923791208544535 3.850244645477067 +1.3773668745287848 3.689818647432512 2.779867002015062 1.909486195305436 2.4708290006987714 +1.8219611851698674 2.343550050152274 2.8636920007062834 1.0648050921583403 1.8729786581322305 +3.4192864847311673 3.80190917806149 4.665117562744619 3.469669673816836 1.2551875479756973 +3.6990021907299235 1.1340710475581992 4.369102815356829 2.100243498775334 3.4244115359651004 +2.546292944875503 2.842507811233974 2.5018581941311306 2.529824052498635 0.29753207606239407 +1.662890081759385 1.8382415844090763 4.3072382216560445 2.69727957020994 1.6194798574998281 +1.0274060797393294 3.8782652679295544 3.0216931789331003 2.020115156906399 3.021681095862955 +4.3459500736220065 2.0974938233133904 2.388254679338864 3.8568958927033967 2.685602823044526 +1.7025156852178127 4.185142487039124 1.9183852983109038 2.650919888960697 2.5884440816096395 +3.2588536227223797 4.590449992082687 2.347505528611247 1.8602242569457332 1.4179534296335374 +1.4954897597481596 4.695233869868428 4.8934651464504775 1.5999258377769117 4.591923730641364 +4.847041448845712 1.2660712138959336 1.9653454579642453 1.382479018579979 3.6280960722887095 +3.9328360658622254 1.2810601234679857 1.967326963884326 3.4481036732131294 3.03720518100959 +3.007985634446677 3.5575955466219784 1.2799106250422416 4.733992371938109 3.4975350991520515 +2.6761296194752986 2.4500123955006448 1.5843383658739838 4.3236882706755875 2.7486663857068137 +1.0418377983577063 2.373444876808237 2.227712691253666 2.2592949631820582 1.3319815506529045 +3.1695419237991413 3.536173886976725 3.727782524276593 3.0904524163431017 0.7352609488487506 +2.1118770076238222 3.364124646772808 4.38107153158812 3.1949078813046565 1.7248502413276343 +2.7185738393405563 1.912106617186501 2.0448536249987987 4.912213903158278 2.978614500934232 +2.173068625386183 2.605835922013832 4.2718161366887495 3.174843322135747 1.1792526823792853 +3.6565151327839382 4.4494747227560705 3.025263163099772 1.225346873870841 1.9668460945280943 +2.832204434396228 1.2040017800630078 3.7095720808304997 1.7175138607245755 2.572807772817341 +2.497405930806213 2.1597487747482877 4.676264416282034 2.984748512946115 1.7248879402081334 +1.2761936733914299 3.480269618084231 2.8787414585554307 2.2302587927098028 2.2974944043186953 +2.6841938052279244 4.975570581370362 3.6037506234991628 4.270779204291946 2.386490028858144 +4.628073151111073 2.244387622482071 4.032808921878997 3.5141363087655693 2.4394626414416014 +3.3876353682044447 2.694722192601274 2.5647784784119274 2.2224915971792227 0.7728447308408604 +3.796560313109826 1.4551187145567899 1.5557338379617147 1.9786462447834645 2.379328405932725 +2.2491838052608526 3.669393954688132 3.534147237471153 4.766816318780898 1.8805504333979628 +2.3488055451447174 4.892228837679396 3.023823849455122 3.292085363837156 2.557531287219472 +4.8810440135976805 1.4388229931935372 3.432354117092827 4.932153798351653 3.7547682534633497 +4.1652024360971325 4.580212022150604 4.057028058338537 1.3574528038268907 2.73128898348159 +1.628341298343857 4.172796435402306 2.1328082995271638 2.1511196993945205 2.5445210260220357 +3.327694201530213 3.8178160820028966 3.7896146834011004 2.8345810646428524 1.0734564130306148 +4.634215556157393 2.916421513059781 1.2121285069018146 1.7321562844116651 1.7947827901680682 +4.784702891910736 3.1652812078889743 4.945600728155984 3.6013816217296677 2.1046262368319564 +1.021681363722125 4.341386288914258 1.504816243147312 4.570323813445088 4.518603484916317 +4.5147478297331975 4.065136896561133 3.899567603889747 1.5157494635275315 2.4258480821246464 +3.626602689146154 4.85013123712344 3.3080011411731403 2.787003517478653 1.3298348136557068 +4.997196353750421 4.754784504710537 2.682251797942491 1.7013962626494208 1.0103668074862666 +2.2130103923581532 4.354901872868627 1.1656565623529267 1.1318036402747547 2.1421589891080868 +4.471847461804376 1.8059692623401018 2.671973100927977 3.2347922173630588 2.7246416153695607 +2.1030657121047955 3.822320887422532 3.1777674067597514 4.707572101859611 2.301334561294032 +4.309453899492125 4.983718013611158 2.5578811272456767 1.718139716214524 1.0769390572308706 +1.700748444855675 1.570929985698716 2.536587481114029 2.0112432423420166 0.5411463771927446 +3.486956854046905 1.013441260761459 3.3725595278049125 1.027764250573326 3.4082758518573293 +3.8184482646567623 3.9102399908266516 3.2564898884457194 2.0663672530184622 1.19365724073101 +3.667400517313968 1.623751816734774 1.6902074334705217 2.7082963745228765 2.2832006270304266 +1.8217952171735528 1.3569549853247254 4.067282254643104 3.4201673350887463 0.7967648086199051 +2.7642588721061223 4.804454254960136 3.8721474042004447 2.548374995360574 2.432030137688378 +3.9546674245629436 4.170157718063398 3.2459696127434134 2.129093916383726 1.1374741261724808 +3.316837104619797 3.2181708827593045 4.994422013651517 4.919764801069182 0.12372842327770876 +1.398412984700368 4.98202141478647 4.312716418505334 1.8906732994941375 4.3253372412487865 +1.5897705414214278 1.492213159286806 4.059600569378633 2.7163012555350288 1.3468372171059344 +4.492302848881099 2.8419537697533754 2.8336216326116395 3.880168422660942 1.954203742382105 +4.3254163317244245 3.831832983668063 1.128817866710302 3.66494698561284 2.583713495963492 +1.935740355400469 4.295378855913134 1.0354806424382246 2.8740963536760153 2.991387903083133 +4.2418448012291075 4.926754665017016 1.8527705370779737 4.38843143984885 2.6265334064798775 +3.406334066644406 3.367080600656097 1.4754086026866116 4.549727828998583 3.0745698137891644 +3.765881625472846 1.4515268772660992 2.3129530939644547 4.6546423724192865 3.292377040585939 +3.413816856646951 1.2390387805849876 3.0518622994401903 1.0376057102154745 2.9642687609855756 +3.114701321649317 3.7420760009180167 2.734486933913069 2.1293897196880662 0.8716315889470521 +2.2041593048475754 2.531878852087623 3.007346138732241 3.2702186271989166 0.42012146676394 +3.8515650343042513 1.3843623628214958 4.731100215448194 3.6644187971861304 2.687917087679085 +4.437478259734608 4.808329142771282 4.685366207428945 3.41159671014375 1.3266571183479403 +4.874372874318732 3.2662985313703934 4.28741656216096 1.4709712536596777 3.243187824999905 +3.304320015275585 4.280378194540857 4.549898000479946 3.5569721345653167 1.3923330580406952 +3.863520948888874 3.2083838622278997 2.2459877755786635 2.8840290735471363 0.9144951067293484 +3.2523189812415754 2.8710224324122096 3.107271258015936 1.459501909117476 1.6913104047804 +1.9215320046529145 4.2940265586167605 3.3550303768457956 4.263346992269874 2.5404270275769703 +1.175941992102013 1.7261389376340373 3.090409194516387 1.8576147244187196 1.3499995868059214 +3.396971920155925 4.872852949440005 1.2158238385471356 2.252366209150048 1.8035090514482428 +3.522793161363728 1.5932377648638112 1.1385742314993221 3.180684740696515 2.8095194179673455 +2.9402433359044875 2.6964179615577386 3.421587465488092 4.55998694824459 1.16421827657686 +3.1350599445605285 2.0154739701488644 1.2729433264373249 3.8966683167131166 2.8526138152047533 +4.858125347722215 1.3375651372348507 2.1430988055326177 4.601200331477029 4.293787058939588 +1.6439285324481179 3.62737069940401 1.541478770986635 3.4239394416324584 2.734538536240988 +3.5416463309208437 4.832610371629757 4.632782500276129 3.1372968730637436 1.9756177301295677 +3.158628195141408 2.0654312988830132 4.388459309213475 2.139972238669732 2.500154707291405 +2.2044463843671136 2.0540617074188505 1.3397241759396938 3.0321657687523556 1.6991097951995606 +3.8865099521691424 3.4681375273214914 2.202406400544169 2.7645973734108478 0.7007811183569991 +4.872533167193898 4.400519395556696 4.503792024105624 1.442632567329389 3.0973366333716057 +3.0239020782180135 3.4154133388796426 1.78652851951776 2.3973374505199834 0.7255126583436963 +4.381567525270392 4.904518782337517 2.9240892993636574 4.479130187799243 1.6406188411616582 +1.1952147967446485 1.881633873812381 2.952861299782268 3.1004414702913965 0.7021047329921806 +2.6957651916472014 2.960706459645517 1.0846209715857906 3.284559595067943 2.215834791354514 +2.356553420938751 4.992929070942197 1.4149436315832498 4.480926586119778 4.043603349172571 +4.53823638614959 2.2907174355456106 2.53194000527778 3.0127709492930994 2.298377651746265 +4.57384981104334 4.067894920118186 2.704315818199465 4.610938483604107 1.9726125671012507 +2.9780963521138957 2.293755143604728 3.2349397257850643 2.497067397942238 1.0063689491732042 +2.019186099335206 1.7867401253342021 4.758464854647471 2.060937201909922 2.7075240660265654 +1.3174435045592165 3.318244441223453 2.3631256475315707 4.660217081382749 3.0462819048192085 +2.843067394570781 4.200906999244152 4.406020555386654 3.918561373881839 1.442686676188867 +3.705180326944316 3.9140881809354564 2.805083199219454 1.708318649176857 1.1164833047069376 +3.2942113830324997 4.564440275335433 2.84251327087913 1.1699545009359458 2.1002224353041736 +4.510612143533631 2.9354461387391755 2.061350809782797 3.985315259237033 2.486521092897438 +2.3911941689539002 2.45908624137572 4.553972837844258 4.0003694842917845 0.5577508463124682 +3.075432511855546 2.3036981212174066 1.0843867927845547 4.129539834459199 3.141421814547349 +1.5568894112715865 2.898697001083724 2.0917959694938935 1.050741752819162 1.6983054760948328 +1.2724139092623967 3.764557957511131 2.027187187823182 1.2964906441359711 2.5970559093284895 +3.857911247379325 4.191161700478272 1.5494365393322767 1.5476056692237155 0.33325548243953584 +3.2500249837296695 2.798927769921985 1.847536751731087 4.957352773323361 3.1423628664520993 +4.6454340018113145 4.461000321599565 4.761550717502935 4.018536467205745 0.7655625111910488 +3.238992910066802 1.2359803587836433 1.524628142544648 2.1138690321435836 2.087885079829159 +1.785010271557296 3.882693648389233 3.181428466843755 3.661343315498026 2.15188145849066 +1.344973552551818 4.393371296212328 2.9612975352720126 3.452786091070621 3.0877645318313194 +4.659147462549962 1.1418523937497072 1.1601995068088762 2.72490935416998 3.849633944602447 +2.700024553232692 4.684487618138478 2.5292959897645173 3.467615700488657 2.19511674758057 +1.453940587241596 4.033462365369374 4.266786267654041 2.9207605224074014 2.9095906775184486 +2.625720162715499 3.8099036596895863 3.690270958889877 4.074750787797706 1.245036261858574 +3.115471930391842 4.1183655632991005 4.586901017916972 2.8591084006384944 1.9977644924384683 +1.5353665348050645 1.4662613350090092 1.208633707576884 2.147858384675501 0.9417635174022478 +3.152380904026603 4.188025469349274 3.8453573369524463 1.652605608760671 2.4250195477913987 +2.863589749441089 1.272695956729387 1.0457410904126183 3.2175707056202083 2.6921714167529105 +2.0539450683344955 4.844201238199149 4.403810109181733 3.29378321467953 3.002946752772345 +3.052856154876337 2.312838363655177 2.0981262194213515 2.2062928006218123 0.7478812342962219 +1.1251699078435178 3.672834461202384 2.3161644317021284 2.057365868301966 2.5607755412880726 +1.581836657716884 1.660762602268023 2.9321680546754516 4.672783080994381 1.7424035050959168 +2.182756791970116 1.2709466059611105 4.033520434831467 2.0010855035741173 2.2275972627709986 +4.264598628429976 3.802779961834464 4.0096595224068805 2.409910428021864 1.6650746667347192 +1.7454403778656857 3.7839006596499494 4.723847185370468 2.6855552210604055 2.8826991608877526 +3.185630358986347 1.7780758095953337 2.881663317503982 3.984373638630376 1.7880659556711027 +3.4484622100256774 4.519906405450985 1.9490684803941956 1.1015290237446393 1.3661316900242122 +3.042386191188353 4.9207425250543695 4.318606326896663 2.810379996569087 2.408935279426985 +4.267771769690925 4.49872681828011 1.5526920325999396 3.8805209383501937 2.3392579269749754 +4.936230822487246 2.365382338920537 4.359199973146612 3.77124109067158 2.6372253549779434 +4.179880278151016 1.2277140505123971 1.338699247148151 4.6946029011826855 4.469605661663272 +1.8300786230134016 4.74174197815219 4.996342722716288 4.978263969660775 2.911719480817152 +3.3634513928914354 2.7527834893168155 2.9260241999828116 2.9301470710817275 0.6106818210183758 +2.8490604356958404 4.66651213293888 1.396442733781976 2.7135479993562988 2.244525997268736 +2.078970609364021 4.384832639535107 4.424975762473666 2.4303449945069198 3.048860705690625 +3.48026195870341 2.98295262898697 4.2948824499986085 4.57815483448797 0.5723284137951771 +3.7902345508013067 2.0884354869973722 3.0818742188222603 1.7129636112803066 2.1840412782282366 +1.682720135708288 3.4702221299988927 2.92590988530616 2.284342357551445 1.8991504080146433 +2.9095005647853456 1.8228884436435355 2.7274365218768715 2.8450095020251585 1.092954394050023 +1.9672152269660308 1.6607175451692133 1.09297003762433 2.9587427516654166 1.8907799050675 +1.2832807879643395 4.547888848274484 3.386821417472248 3.5726451830860384 3.26989239261919 +1.6720875325424407 1.4390064897462072 2.3490779709858907 3.5825573200064262 1.2553079610084148 +3.29689033990019 4.881998284648251 4.639628131370091 2.7746841630375028 2.447566792045423 +4.498599565201484 1.9878462402451667 4.8878186637744925 2.180026099387551 3.6926985837634265 +1.1416378824254036 1.4030305413115562 3.8645568290980594 4.611343344088619 0.7912118686491737 +1.221217334456048 2.3872672305412834 2.08523345809093 1.6968568708192162 1.2290275561195574 +2.3105049849989125 2.2254801186204274 1.317774887031192 4.524636666026282 3.2079887308845447 +4.923423529966451 3.1677384776079536 2.8069106260991545 1.2408089636692905 2.3526802630490704 +3.045404864978004 1.034553979020616 3.4366474404720413 4.638483313039856 2.342633293997687 +4.291875812033597 3.2458337180658168 1.0880885810258345 2.7688632503192494 1.9796988536873195 +2.68905035630131 4.637859368977871 3.0587057300943328 1.6161690139708642 2.4246172368548553 +4.442712793615377 1.5526290211319171 1.5547819407244567 1.7616687909437 2.8974793149849867 +3.1747781052606006 1.4534463586615578 4.525537071459309 4.317132401727769 1.7339018104309203 +1.2148048047424798 1.3453548124953283 4.984550563284577 3.1385521935063516 1.8506088959442872 +2.9787684349423045 1.9223480305493896 1.742670496418378 2.0689853568111554 1.1056696879859047 +3.490052809182838 3.882620727698894 4.02906810740409 2.4731305889869497 1.6046965856092912 +2.0415223054262817 4.532767794275426 1.959634482167103 4.481804386805963 3.545087462049026 +1.4797511872931755 2.132637454203959 1.2646952415739503 4.596668486718215 3.395335945658088 +4.6365623538522875 2.632776798247285 3.016689189180549 1.2331448140845653 2.682570985228121 +4.924407421240087 1.9648411931745997 1.8747240063676047 2.3427522088233443 2.996344882786313 +2.9500657873409604 4.901097733285627 3.9298204392117366 1.611343105761594 3.0301588736927174 +4.575937533274251 2.979489238145776 4.902289024634399 3.684829775942691 2.0076987277088145 +1.2914858205820474 2.7878364652639367 2.9968431060103393 3.312861536705517 1.529357021881728 +3.75497523322485 4.794765547633395 2.244897004184013 4.254341921076751 2.2625279604822306 +3.491060976176654 3.2561464711698545 2.5163386925139175 3.7912608656502367 1.2963839601820226 +4.431417134545851 4.164776197372165 1.0440371064910732 2.1718381921742322 1.1588928674579777 +2.2309602643295174 2.068789964187893 2.8410007136719524 3.6345821885459317 0.8099819525836269 +4.359056256762202 2.710418512919695 3.5455373209598986 3.8355854585880804 1.673957685416119 +4.554690379250079 2.8821207473328876 2.031286873000672 2.898627060375336 1.884082846970039 +2.66203624842898 2.047974738252204 4.592692740548024 1.058888069980659 3.5867599568418718 +1.0778719480348466 2.263360376873562 2.3256131426601496 1.8303226751444028 1.284793937611185 +4.593453566419816 2.6450805389183665 4.268991036618093 4.151191116100495 1.9519309095275676 +1.6434421292520427 4.827329550266713 3.7392546969601503 3.6266101741898384 3.185879454437283 +3.371801281473168 1.469488857161187 3.62999074099534 4.503733740904513 2.0933751191752537 +3.478427693770263 1.1500217526073748 2.710714699772808 1.8065468905847344 2.497797760831448 +1.4615514911319138 3.089183655741042 2.214500328047491 2.1172707620547855 1.6305336708493101 +2.5740257596691327 3.328186419238809 1.842648679182361 1.8709677563954 0.7546921694152969 +1.9945060558715566 2.794324610584652 1.2964572085263133 1.1679792105614393 0.8100717970799917 +1.5294887411093878 4.6366946680774 3.559613990965028 3.468061207139161 3.1085544204358735 +2.253498761954242 4.302582146064326 1.8801731112053122 4.425643453068084 3.2677457025201657 +1.9737400457463758 3.3877850746556524 1.8455828628314301 4.496011291147365 3.004046304138522 +1.6326108526384502 1.6200495911451176 2.9426184499183505 3.7281757669867774 0.7856577395342382 +3.4783101850227824 4.4087502067472055 3.18742743952405 4.334026054119868 1.4766201329453674 +2.028457187094852 1.1861976902224702 4.016771234278754 4.292411737589771 0.8862159709333095 +3.162387685980439 1.974238120080308 4.035701864088239 4.865215022961007 1.449065723730897 +3.331355158347985 2.4233171849836816 3.4532414416258077 2.0040528999884786 1.7101696963414128 +4.071688375407253 4.491957697266572 3.643269050113927 1.1792287966941344 2.499624106414636 +1.2950932459990798 4.102679856136723 1.6806619079539722 3.7084859388473363 3.463323963144769 +1.3870573219160502 2.0755936951582377 4.78861059483307 4.986445435334312 0.7163944174780097 +3.7788998739070507 3.630268704774349 3.134470090081027 1.0711469951432626 2.068669480255681 +3.3708364259972163 2.2410901276338513 1.3922980379183056 2.637101707372761 1.6810303013785928 +4.2694324036344025 4.67043570423886 1.815252457500419 1.2853452889587391 0.6645338624686697 +1.601701615893146 1.0200687943412894 1.5430827726410565 3.2098219480160095 1.765309099799792 +1.1765842062385818 1.3533881739263625 2.5864773437208077 1.268137819397305 1.3301423774858319 +4.787025336460636 3.154463658842852 4.60891820748096 1.4619680086327982 3.545215534386686 +2.2030339050279126 2.4913112544748377 1.3226555957565678 2.37403273855588 1.0901824281307189 +3.9282103640452477 4.433379725386985 1.192233659128016 2.2925457722411644 1.2107364824361824 +2.342280474109313 4.032839491204884 4.765779899489063 2.425606101332472 2.886936645626604 +3.0438164687817113 1.168397875980411 2.841824085523489 2.4289401692048327 1.9203301868635614 +4.212007471006106 2.126967088566484 4.546578889508933 3.966948288803231 2.1641083682843654 +2.161490106157711 2.552007991580089 3.076085943346041 1.4945298865921837 1.6290561007803184 +3.62058211313979 3.480758053853029 3.6361584554366027 2.768827564826563 0.8785292490075858 +3.619910686393957 2.104348992534063 1.7863742166170131 4.1917994541171275 2.8430613466997077 +4.678697636136597 3.468706636804025 3.5428759974882174 2.6772494227153065 1.487745806722008 +1.684027527256342 1.3079784588298056 3.9357366009783483 4.887671525609624 1.0235199082564144 +4.445627982946839 4.266874499388141 2.183544690671079 4.604760342742629 2.4278051902326574 +2.60132458196438 3.82084010799618 4.663148747034677 4.066583425167839 1.3576112482911673 +1.8602397363516632 1.6026796767143523 4.758417443664552 2.894689750067711 1.8814404322752754 +4.438883692935393 2.4332007528739816 4.26475489150321 4.293863422354994 2.0058941553884986 +1.8170360904243656 4.229241732844988 2.441887435464571 1.5454556441391052 2.573388042605482 +3.082826674976932 1.426381104019355 4.842885460636042 1.8687383968771707 3.4043153036125324 +1.6308968918106466 1.8284738615204765 4.7098902075036655 2.2356797028281385 2.482086678665039 +3.103374767791507 4.122299392013959 2.1494476298396767 3.8991731289564515 2.024783127178393 +3.2786847165127355 2.207111500520939 2.9857603640478065 1.9701548577350274 1.4763887366421613 +2.017060842141565 1.6946459727817982 4.036845577057619 4.203650390044164 0.36300853105643605 +1.79166795448407 1.3569246013353595 3.054240433783548 1.05638259143244 2.0446118803701614 +1.7489501611783225 2.9023934227195003 4.94266190353631 4.454219208537221 1.2526003448397747 +1.2030125408883778 4.443106721151798 4.096811039408333 1.4466524927334978 4.185875131856009 +3.2353151793310215 2.260963820515274 3.075840709574358 2.514319068908093 1.1245741964684357 +1.1554394454840407 4.014559170193561 3.671879618657088 2.452387278393478 3.1083318947925522 +1.5475547171225763 2.8624689969722623 4.8824325889010325 4.732134532006306 1.323476130974393 +2.0474211039817583 4.67882306890632 3.29224510632721 1.8955244593329557 2.9791114223454103 +1.4455859043846244 4.312629719406814 3.2395424540324376 2.280127624438689 3.0233122651326303 +3.9225969702148635 2.9748813138499006 3.4743544734609313 2.3212757425696147 1.4925667572853154 +3.2792487348949044 3.9206817137166103 4.002757052349798 3.9071995334206986 0.6485117622248437 +3.307379665532319 4.15399698146496 1.1333008653337195 2.351633994458263 1.4836092791430602 +3.3128010211876027 3.860520015739396 1.149447273146715 3.5206943720287156 2.4336821692548787 +4.999769493971294 4.210670808270121 1.9416474814033022 2.2558443747638472 0.8493505893167645 +4.146937077912681 2.5373232731976625 4.43645241262769 1.91370141074648 2.9925121917582573 +1.0717513466948447 2.8323646263127387 4.741692731526834 4.526318312883362 1.7737376526907496 +3.098662453807265 3.8453154142395602 3.687639888713864 1.1229830115188233 2.6711337557423307 +1.5730195179856237 3.187914255372236 1.7473834131626416 3.0481646356887655 2.073624074347984 +3.1891624248021166 3.969896433976314 2.5612708874268626 2.2457895156548244 0.8420653709875394 +1.1126940234478928 2.1654382457546673 4.69913906512153 3.1374513357432936 1.883384974372167 +2.610594923694492 2.1597394899053457 1.862597722952084 2.5895982441282634 0.8554533184035442 +1.2116560748531362 3.0395196801969977 3.99651422178221 1.8989865416326204 2.7822127396614333 +2.483150439019605 1.1778561060466615 4.191636225994584 1.4276211043162808 3.0567258445201797 +2.055002429460586 3.142434911498127 2.7591599882709015 2.523566517929826 1.1126606339121006 +2.064581551825692 2.6125386890676596 2.253018067047763 2.7551583170108915 0.7432374148866875 +3.939037373321798 3.4541444584124443 1.11024958535367 3.8934056252167304 2.825080296408497 +2.3787394368435013 2.2980446066027276 1.3370912848608367 3.846002299658937 2.510208384935964 +4.7632827288632225 2.892135743755731 4.341932385996682 4.138208665314064 1.8822046632196043 +3.8084133654580734 2.538950918724438 1.1186095497224482 2.7976790870372126 2.104948791492412 +2.7522813239247843 4.6769215340015755 2.181556042048854 1.89790132859012 1.945430526827363 +2.6170486349929263 3.813628135605677 4.0647705081337975 3.5143662240039206 1.317098089466074 +1.0118088079682397 4.886495169643432 3.2412049209557767 1.8324885340330335 4.1228238211372075 +2.671224349436483 2.6716604824631625 3.9418913463165 2.3093962790863447 1.632495125488222 +3.7507296797038974 4.983533953449546 1.831961095828266 1.925376402181917 1.2363384637010546 +3.551794553980799 4.726861568553184 3.565330946137824 4.306006416461495 1.3890221888347383 +4.79467352230597 2.633542020417305 4.140069230436123 1.8815297813141565 3.125938229027521 +2.5447464019532298 2.418861388183492 3.271857957678934 2.7146011633764813 0.5712986710014766 +2.8973430022296425 3.899249154630728 1.3464615209475408 1.9288919278124195 1.1588965083474603 +3.375192913647972 1.201216976541275 4.055318052660297 3.4350598914350177 2.2607281043251324 +4.496368057784483 1.0624739362713305 2.0071097601832526 3.30763308067919 3.6719190820218746 +4.5678654689227844 3.194209292997837 1.9179211361282924 1.6208207529827408 1.4054180614045002 +2.9198291747580245 4.6982228993183535 2.9761084410063026 4.469692960955959 2.3223864789885433 +4.094888849038235 1.9152024942775276 3.7667403496589476 3.0039882550384456 2.3092906622982707 +3.3964594422268717 1.6764725001732663 2.8976985814428784 3.0148389515185907 1.7239712721319886 +3.6298899804042226 1.5712267358728296 3.4331164362781856 4.219029252905062 2.2035773890932244 +2.3495644515884284 1.0692332948439107 1.7400358979827906 2.4472174407577585 1.4626529340114622 +1.7464082995072965 3.8677937643405866 3.7290335812812634 2.969334434918892 2.2533129128884144 +1.7307437886526356 1.284377241606867 3.937251603377148 3.1229895357624744 0.9285826883362007 +4.61783026914919 3.403066552080896 4.574308474812231 2.6734991452876917 2.255820692234448 +1.8026264739172682 1.7248480106402249 2.911212020331356 3.311219408362828 0.4074989568446757 +2.1230020401440464 3.9186665336669697 4.285733629791758 4.08072561555862 1.807329316754075 +4.677614132151191 3.3948296689802775 3.6001617774267594 1.122637391193869 2.7899216948386467 +2.1360275052958633 4.932296739192837 4.706188216453878 3.1874163240591216 3.1821046006640192 +2.802253879045889 4.199216553630074 4.623353671170989 1.4728679404799458 3.446311804446788 +4.856257292631593 2.2774337039781725 3.512970640785375 2.321534811991863 2.8407482175525853 +3.235632180801234 1.999318310400671 1.7131493595004668 4.560213710911501 3.1039084083169004 +3.0500173915094453 4.909948145516117 2.5571722633592753 3.8814263363717916 2.28319759538899 +2.315425484040369 3.6779639094166288 2.4685763070245854 1.1991152135505878 1.8622680871644166 +1.6670234695241324 1.7922231680400262 1.2718640113292663 3.1273552989988467 1.8597104299127292 +2.523984148420911 2.607556135265418 1.5007517419046539 1.789741061298126 0.300830689439493 +2.5646525738483774 2.210425070149398 3.523329523567462 2.7931945954872277 0.8115258083262291 +1.0807228367765878 2.764019007120825 4.495173089452601 1.3217831824383275 3.592198421445513 +4.3469723687230415 4.437024571334174 2.348259762441486 2.980314516760313 0.6384376333301078 +1.3713537192400822 3.2913071466965538 2.081020269960553 2.774685558766352 2.0414192848349124 +4.549559915192033 1.9877670023479848 4.708620387059503 1.54855631976938 4.0680201373243206 +4.8096907070036945 3.296665881430145 2.1462558887580885 1.8004156809800005 1.5520468975252848 +1.7749983772744602 2.1269627866808367 1.776028631970823 1.103943508478133 0.7586681479467579 +3.94621094481543 4.460351810513165 3.326035361921972 1.107249623749265 2.27757568078407 +4.992947833574269 2.00795482416697 2.7866293099370285 3.3455210395866817 3.0368640456367526 +3.9125490562851644 1.961284323133413 1.327824571739335 1.6705642342722058 1.98113718230589 +4.190161848090853 2.198917646169521 3.210334008078273 2.7334273212478912 2.0475579258299037 +2.032440750150796 2.812218857346159 2.920427009991135 1.7625958578165326 1.3959322596054404 +1.1804645036117134 2.169360802436665 4.612378258128784 2.191985078574993 2.6146164218600396 +4.067569846888836 1.453526108445451 1.2324423709508148 4.766850036902898 4.396050752167896 +1.6338096064590042 3.2717895860911526 3.830505908469427 3.438853190140524 1.6841526847201687 +3.284889529444496 2.9029088382606116 4.702593065809449 2.224081847842711 2.5077733362535537 +2.4083555202461997 3.2873468502362844 3.4324997494364626 3.652796370395605 0.9061767815408613 +4.4409263622642845 2.0011440694228697 3.9974820957156254 3.6487548927611986 2.464578726383665 +4.641447337572696 4.5399238760140435 2.016211294725269 4.928231007516245 2.9137889115256943 +2.685667687731207 4.771854633679938 2.0238330700486977 2.7788446076521374 2.218607309859319 +2.9093572458013264 2.7293208420045025 4.241582022583211 1.6645630618529714 2.583300182064651 +3.5768358132795472 3.2691468076777355 2.385185273769452 1.8257908613640672 0.6384313845657944 +4.8420789456537765 1.8808132777558453 1.7068825638377474 4.648570061743024 4.1740411702812885 +1.2255392241338376 1.2263569867020396 4.426568552135915 1.9338462485368666 2.4927224377366537 +4.97334790122366 4.528167474223725 4.278840761459561 1.1256740198986415 3.1844381156916444 +4.538233123842492 4.99704617422118 3.6739154879477995 2.2718077194463384 1.475267978941434 +3.1235550905117657 4.750642246407502 1.8992187967515997 3.951740902166859 2.619209729307519 +3.2176603571095495 1.9088839480140143 3.139241779855031 2.3885934008927157 1.5087639569673432 +2.1351867679807426 3.4459424024549574 1.7315754726127093 3.231368884875972 1.9918485416251364 +3.287897625677602 1.435679247898892 4.278697789936775 1.3952890744377178 3.427062698521449 +2.536214110260079 4.7240645226003615 4.332583056726742 1.3067247806017268 3.733966755873945 +3.2437758662954757 2.6253552864920255 2.8816521175655545 1.9905596729605324 1.0846611260465593 +3.7030830933940337 2.3636334532558414 3.0024924675747906 1.3421104516838098 2.1333058330114154 +4.2106568950735355 4.293429822773003 3.4556679474045917 3.0371228610812886 0.4266513176416107 +2.802079546507562 1.248767280256057 2.4410152551459885 2.083656512353139 1.5938896660490247 +1.9482816219526886 3.191286258611828 4.634396849162949 3.8022330670050004 1.4958466121536458 +3.7666247948914426 4.308854733828185 2.8251949556902365 3.0003066673176737 0.5698047193806262 +1.4416616878216808 1.7660831672949913 2.3727555867958294 4.72601278809164 2.375514418351158 +1.4604932172544514 2.9971324566755593 3.430191708246326 3.243765753150196 1.547906582731072 +1.9139912767176641 1.2528996859214376 2.8288188476168004 2.3787294540471895 0.7997640612238996 +2.0464093968771424 4.127032845759395 4.082254485451282 4.886869680526461 2.2307845140632807 +1.7806735358915593 2.9584316395368213 4.539052700384264 3.590802519005419 1.512049125255888 +1.7327854646681167 1.7792291321266251 4.632291470527627 1.959114740395175 2.673580154917489 +4.788381284781716 1.9430638118468595 2.33012940214758 2.0779395065801 2.8564718211833866 +1.2654935033350685 1.1167763102589907 2.3179815895011178 4.063331590502193 1.7516744644798814 +4.461902301156505 1.9271165365018517 4.540496795622529 4.708412759659458 2.540341442340838 +4.103157732151693 2.1895523371803653 2.2723717526191636 3.8173849312371204 2.4594615934725503 +2.46353171494338 3.546677041608127 4.767168905031973 4.026733817339466 1.3120396022079104 +3.850968639487471 4.939230184492853 2.731190999522937 4.060294719366984 1.7177979766086533 +1.345884462694971 2.7946867766376133 4.470954228403166 4.15151908155546 1.483599325265137 +4.402872382468114 3.210861547489979 4.381079362163787 3.434467659597436 1.522157530001687 +4.312526400704506 3.4654809682111054 2.4373378679593003 3.5313273395010762 1.383581919711365 +2.753995719375699 4.558111300504936 2.854345795047305 2.087114444384392 1.9604787618113388 +4.84708007545181 2.500481193074364 2.2776360433878047 4.206531084453084 3.037624465634504 +4.482186650520724 2.802861638114066 2.589698736529258 1.529645489440537 1.9859117261242913 +1.9221913445224126 4.0933613478673685 1.6058196999829253 1.776002558647964 2.177829513255879 +2.1072426005860123 4.148595301809436 4.000548811394788 2.2335748419228896 2.69987367474544 +3.2135036767156904 4.453750266113813 3.952765325320471 3.2973739971753546 1.402764910995957 +2.5461179074674427 2.3016807638099137 3.7031447065268224 3.066687183827426 0.6817827332809947 +1.7179279459098504 4.595069378007997 4.137938907804156 3.748389911417356 2.9033930565601582 +4.701956017422212 1.801051557438027 2.1564089278372887 2.500813473572724 2.9212773194408244 +4.836748853645254 3.485176570406219 2.4191074446407286 3.4156287788239594 1.6792267286767157 +4.5098758673785255 4.03641634191821 1.1667539231761426 1.8143899175111882 0.8022445409022426 +1.1028867737228762 3.821589746356475 4.206213906747542 4.101407664776241 2.720722367637484 +4.142781552356304 1.4573599001097337 4.941732428694914 2.7334658523358057 3.4767701567143434 +3.1782347379281584 2.535422016526273 3.5755813042299747 1.4987831653489092 2.174005221809726 +2.6292292506966777 3.5433572732083944 3.466497866318516 4.922494430526207 1.7191730676478685 +2.024153450118751 1.54177547065908 1.6080378427126378 1.408987896782337 0.521832728029251 +1.4248405546126808 4.589248690245893 2.291087865091532 2.78832133133981 3.2032358590679735 +1.756180579083435 2.9910710023188805 2.2649154885823037 2.1288565948269986 1.242363223847412 +3.8644833330805604 4.643546105236538 4.009998655238675 2.133843018287346 2.031476993968577 +4.5809363154851 4.985286034108459 1.7819310988534975 1.9772982387611822 0.44907350657381057 +4.651533054988901 2.346929614399699 4.635748000819247 1.996681024820019 3.5036939823827793 +4.681783533409853 3.6408527984902443 1.1226741772794493 4.0550478797184555 3.1116478473079376 +4.917166813318737 1.7494634549879349 4.987738833694273 3.2709079170456907 3.6030338553420025 +3.588127310469311 3.0145916300986464 1.03101092753159 4.725914511770638 3.7391517318077376 +1.938944997766908 2.434364327047117 3.2415130426616674 3.4453722628546823 0.5357227767065316 +3.219829467543264 3.3483693952992635 3.720231828667658 4.757249050928618 1.0449532201459326 +2.7835667202745005 1.007245217061155 2.91176432060473 3.039236937548019 1.780889483052918 +3.316487612433455 4.099427322987145 3.5018127910043684 3.7415649774419553 0.8188258064225254 +1.3807670325319088 2.7532380234094083 4.0755125934968515 1.470261253575127 2.9446580726740086 +2.500496310306296 3.1112271681982797 1.9722849603053372 3.672277887675888 1.8063687701827038 +1.736935962492581 3.903153570995469 3.0523464066885904 1.7844122164284912 2.51001112312645 +2.9570230586799093 1.3758239042090974 4.4827267103803035 4.551756828840746 1.5827052547312381 +2.6505618946390244 2.693250144421359 1.8094363110559528 4.458687653729106 2.649595245188401 +2.1937527522489675 2.6157804466899757 4.150199166247157 1.8193277999797113 2.368769448671749 +4.687696755514106 4.382653453995768 2.1478886340337633 1.620261838759935 0.6094599666033351 +4.4858922506217045 2.7051038281364947 3.666497713531209 3.10232146236027 1.8680209442194848 +2.567562711363116 2.934590392256012 4.2829876269197165 2.823302337227757 1.5051214115428422 +1.0448062216038823 4.741333501728844 4.877317595978818 4.269565638019379 3.746154878687156 +3.0625775408915787 2.4810707572186783 4.116919567397886 4.958781346843352 1.0231722216463306 +2.680396382496117 3.693214571051142 4.744763612864296 4.474140262685615 1.04834998007813 +4.187677783965791 1.922471630236429 1.5289539264842031 1.0617751670585909 2.3128802200182834 +4.270352033840278 3.5541143880068793 4.95988904806016 4.886243381728537 0.7200139231142673 +1.6620131674683125 1.938254995782938 1.7537111830958647 3.870456094837858 2.1346940223592292 +4.3939185596740025 3.1830319532353752 4.3438046086275515 2.053561336036308 2.59064868735649 +2.8029633783838097 2.052355044721234 3.6269487196205827 2.9393108012301683 1.0179679648063638 +4.721963181474706 2.3752848149080807 1.6113338057856033 3.9971140449302527 3.3464677953933615 +4.341588664617653 4.307173156147412 2.130869032806028 4.428546909226244 2.297935606368068 +4.346974066413459 3.1242318343088264 4.094412059171001 2.5943378554036904 1.9352832306875263 +2.669874893108252 2.0611963978491397 3.3804993589554946 4.276682393053187 1.0833436856304852 +1.031419410086508 3.493634074409811 1.3406349142252463 1.353578966457027 2.4622486880282612 +2.897021576770317 4.620642495304951 4.031863705469154 1.578905328477231 2.997978297130422 +2.2716509275080052 4.954736046559416 1.5025539215722454 1.3378109531528382 2.688138017609729 +3.738848741552993 3.421006541494276 2.1539576951488644 1.9716057384022667 0.36643676162126354 +2.764284400817998 2.328204889689236 3.462669412940474 3.604352070976828 0.45851860988900595 +2.5475905263569043 4.631311353127003 1.5438806173852995 4.293341351442052 3.4498444620062747 +2.2560175967873133 4.337735830519706 3.54518911013572 4.136346846115657 2.1640282515399 +2.631050541994485 4.220396836620211 4.763677174914026 1.9284321642246685 3.250328585678596 +4.760161264641498 1.0805013384713393 4.247471324320486 3.624257057225253 3.7320628605335187 +3.1403598406926645 3.0274170554188222 2.3660412081500852 4.381517152556762 2.018637995091592 +1.6264341446262072 2.9061902810060265 1.6072550042797058 3.8769460585328432 2.605623389969955 +1.0329795033193694 1.3863129847094369 2.474239706906183 3.145250182804182 0.7583532210230826 +1.332800405279436 3.193809208643285 4.023780320636478 1.4127463433949043 3.2063768020162096 +2.6552068424141284 2.2299049285420884 1.3474206610490063 2.8249850091978064 1.5375558919478696 +1.8557228966202741 1.9338048624418422 2.5862492707790423 2.232785336024561 0.3619855612571872 +1.6889091704306867 1.1260139601604902 2.5953017826470948 1.5108957080673244 1.2217968539534856 +3.340078523748071 4.0569737810636335 1.588110640150176 1.129242970229555 0.8511746873937962 +2.118533267834402 1.5037696926247501 2.070815299030326 2.791169176184829 0.947018459026052 +3.9015767181384993 4.281470211930983 1.5234090550735306 2.5453606070726624 1.0902770479374928 +4.3331196813856625 4.161766436796864 2.1730154451000736 3.101475342320047 0.9441396693163743 +1.2444383849984817 4.4121885078605 4.594375530492547 3.348826726909521 3.4038261799039384 +1.478098286843843 1.7829034605839649 3.3333016180364385 1.3381563534759442 2.0182940372098686 +3.9537819881490996 4.560511793007485 1.9809605332678637 2.3192438635126678 0.6946629885239389 +2.4905181956166103 4.14098108467185 3.6807592620170873 4.19395972562446 1.728410386452069 +4.071166719624729 2.3896977451265493 2.5291691088783304 1.5456715543897346 1.9479746794773822 +3.781918938612724 3.476901484691611 4.025010237738494 2.3754750571666983 1.6774987210548162 +3.620595795014836 2.537350441775039 4.604163289295454 3.713844386645358 1.4021726868441289 +2.5670212083431476 4.212961780459161 1.4199603451761216 2.477757118321124 1.9565414332984543 +3.5980515911628825 1.1574522457576655 1.0774564167611604 2.019745927755316 2.6161870512870404 +2.7040341210983043 3.906002058786255 1.411573952968184 2.4560142291321285 1.592351221842481 +2.7256279764803324 3.9469710203403894 4.617878496408521 1.6058258393888583 3.2502523039672715 +4.146998581280096 3.342865213883203 2.1465963379810584 4.102346799213445 2.1146135200484646 +4.710916609627537 1.970890533370497 1.8688175816121664 4.907978168692548 4.091972626085287 +3.1808219942605644 3.6994519377062396 3.7146655943582045 1.0660870550034627 2.698878525863838 +4.968280013922605 2.168199999915291 2.2365515450146862 4.514610374122428 3.6097091453078236 +1.0447233784521317 1.2815541698019373 3.6558298022378755 3.283833875379825 0.44098729384230007 +1.0402517880550959 4.506593329668916 3.3867035511122334 4.237342151663366 3.569188943144544 +4.916038309004416 1.1493343946855905 1.2065941942568843 1.8004333792814111 3.8132274198918896 +4.509635497119778 1.3178189663765258 2.4832480994016275 4.812503501260799 3.9513445171252806 +2.288991264095492 2.7220025450467626 3.0215459195304226 2.6152377916528797 0.5937887370188273 +1.1751254173962429 2.1228696184921145 2.24006615583565 2.440420164663273 0.9686902495453081 +4.412874286266811 4.422158135542517 1.5693533687155825 4.278946715125879 2.709609250937914 +1.5717524922306976 2.256480007358498 3.9138297722480266 2.351545228297755 1.7057504994104502 +1.0029706648299848 2.3583427021076386 1.1597860862085865 1.9372013709887468 1.562500523021991 +3.7468053122888585 3.3394598618962794 4.2807607897441375 3.4122156362389857 0.9593231987358697 +2.608961635989253 4.372281745846138 2.7441241791252384 4.3956406411822995 2.4159479369951598 +4.1204027726022066 1.80912310635307 2.1661196193934744 4.6035718533596395 3.3590455621326973 +4.245000555088515 4.931250850593255 4.061824517538385 3.6900514324325706 0.7804836288413987 +1.5624863691576385 1.2548902540215066 1.1371724473584761 1.1433386140300494 0.3076579133685044 +4.020516620989877 2.719160697053258 1.107462832125759 3.200298459885142 2.4644448067635727 +1.8211645756441808 1.0909980643734931 2.776769729271748 1.8905634539578262 1.148261597627902 +4.619021078836743 2.7237833985578295 1.9812816754719034 2.0495849184471897 1.8964680850860476 +4.125564326773856 1.227906011125846 1.2031591916209434 1.114835036351601 2.899004117045732 +2.2555216516806995 3.426113935006185 4.606183759111208 4.042779331848472 1.2991192564350764 +4.837583529131752 2.56729966371225 3.3029029557135914 3.7648749155907786 2.316809642870317 +4.987736968992167 4.526694888647379 1.6617382165941401 1.7347221752831161 0.46678309531790524 +2.3429803680326047 3.7130023322782124 2.5198175880604032 3.229345251418095 1.5428511553566078 +2.938988654706155 4.8418314654803325 1.8308337240718924 1.5301112923183426 1.926459120634212 +3.276898975693919 1.0167295600539545 3.7787295500111964 1.2765872300211019 3.3718069305462484 +2.2683047500434994 1.7481978887909189 4.886910235180332 3.364556417423128 1.6087486732121792 +2.48573684630807 4.215164100297651 4.442981010262382 3.8245790842941485 1.8366653393809014 +4.890745282600774 3.6635433915467734 1.7687428964874017 1.5449160833418079 1.2474465614564125 +4.017971891155831 1.323829581927114 3.837427469695026 1.8862543379614753 3.3264815304425115 +1.826900086835236 3.8377527530593545 2.8523304598531176 4.128708683253048 2.3817367223163455 +3.3227365038255217 3.424811285841953 1.3302096115286126 2.687508011251502 1.3611312232896646 +4.099713472478429 2.6361451569739742 1.9822272763269688 4.950435897769507 3.309425121460578 +2.214603514678097 2.5506659573294668 1.0303870879675858 4.870974445215129 3.8552625350305876 +4.116496497741253 4.064291974532795 3.4982747524927853 1.1902032902791913 2.3086617740431836 +2.9085023836530715 4.706277186760275 4.118226515029352 1.3863265780148737 3.2703625958824283 +3.661026384802709 1.7384244698628257 1.085828667281933 3.7838722610842055 3.3129801323563637 +4.811632310068985 2.6785946687207516 4.633757768693295 3.122886104042858 2.613920956427722 +4.036753477397604 2.529677389558654 3.068451312737699 4.5347226643050895 2.1026721120905223 +4.2673909998807655 2.6701859746176138 4.623339046180643 1.4527478861006617 3.550170727881011 +4.039149849407815 3.1593860825939393 4.069308932481363 1.0141971588387677 3.179259699182837 +2.2747881972123123 1.1127905109097487 1.4565058979114722 1.265428717672442 1.1776031215059724 +1.4329292667878333 2.834912138882602 4.320487221135535 2.8731251160985076 2.0150466587015576 +1.125810661428392 1.8956765097459192 1.8171536309435292 1.7023644418591286 0.7783765042293608 +1.8232982365961106 3.1568835549221017 4.1466729686131405 2.3542154641163746 2.234133770990763 +3.041879157475483 1.335720783061781 4.774856846540468 4.245838121623825 1.7862914683484432 +2.252729794781649 4.556809760710164 2.4710490007425694 4.282477590284012 2.930880076768964 +4.098135094363405 4.6874885423118045 1.9578696131465008 1.9700675987041083 0.5894796667064354 +2.991963759820543 2.5360130767202698 2.412365467957672 4.36044360979927 2.0007247367243246 +4.993720749314898 4.15297348881697 1.0603319948501317 1.016499831343772 0.8418890749929104 +4.8929555857152 3.8792326103308574 1.3307274878753175 3.8321686895954237 2.699044711835099 +3.473993807529949 2.2680928622914633 2.565494748901016 1.996152291575279 1.3335471208175516 +3.972238865268574 2.0348801095690634 4.4308722372653 4.607283161933802 1.9453739390225089 +4.093737837726188 3.7898343265967647 4.750981223675022 2.0073051981879 2.7604556647245038 +3.2230028412968967 1.2694848390773896 3.054627688043549 2.972640820793562 1.9552376917902237 +2.538391120922161 3.7214614800131596 4.465385754521725 3.712953593192132 1.402073333304227 +1.2137217328307566 2.552897256469066 1.9733051522128742 1.2141361216630928 1.539392315187339 +1.8260478306052774 1.78345614188007 4.453768989557188 1.2745111675272094 3.1795431041090274 +2.1197273793602585 1.1641536764390215 2.4080598268762303 4.12202157804356 1.9623419646379638 +4.198190565239662 1.1631785095576639 4.308232813334691 2.0625171504146524 3.775518112368083 +1.770259286557312 4.1242746410272755 1.9657772924009058 4.375803908112056 3.3689192002059785 +2.3409277710282677 3.950022330708292 3.2551615480900056 3.7952711955715555 1.6973225189381351 +4.427351318933678 3.4920431404869614 3.0574029315279585 3.479034173760584 1.0259504340346772 +2.862335639465867 1.1854172968116399 3.8905902350390753 4.925125542242641 1.9703599746698515 +3.785900528527923 2.8200479155167275 2.1626089361736383 2.013063840974236 0.9773612461923956 +2.5942187828027015 4.629790013789817 1.7532781463982148 2.897804001762266 2.335270791582684 +2.9817279750394183 2.015888481022106 3.825856755579622 4.2076588892663 1.0385657405726987 +1.4910156747086378 3.8001929929418115 3.8825983712958823 3.7990003935388965 2.310690050380537 +2.170752138337667 3.6904901176401386 2.965913240779442 2.1066170441587837 1.7458503599281037 +2.559577302997107 2.676701509648961 1.3975433573694636 3.98585809526181 2.5909633849544367 +2.519587706217295 1.1432320068037596 2.645962912029253 1.4031182107852964 1.8544589406935656 +1.2338069105940908 4.258855493058357 2.7319773058583774 3.5954234321787926 3.145863655552605 +4.242011081299236 2.843554547982638 3.2577172965146697 1.338425109728917 2.374734337527614 +3.7067407326512503 4.925216638604801 1.7808651200331247 4.907159285337131 3.3553537431101357 +3.2430008799338927 2.462275571488158 2.9305602847382537 4.1107603859606 1.415063350586441 +3.116751688888836 2.3150033079424692 2.7133415073982974 1.651320731411503 1.3306722342401651 +1.0122217849050403 2.648802183668088 4.12085104240081 1.81850582279993 2.82474581366792 +3.738957114260375 2.1585848369534353 1.630019422526817 4.060142141059078 2.898805437073511 +2.6660513832953185 1.3279394215459805 4.065108413105554 2.8767802927345483 1.7895997719716965 +2.696164943541949 3.7919222146771103 3.6221967178551235 2.779846202272843 1.3821137392947476 +3.768734124563851 1.0634466246936132 3.06265569840793 2.9440739036424795 2.7078851709413305 +1.9901000160255045 1.0369897490779239 3.3338830987795727 4.381213462462293 1.4160932425700887 +1.7655565973258742 4.10887678319802 3.4049688518361076 1.5406708970679164 2.994454267085862 +2.3340529874951446 2.8685079709414367 2.729600434632503 1.6920882111854132 1.167079150329017 +2.682829402526076 2.0992401488595305 3.046045972104932 2.270574145536456 0.9705323131130277 +3.2279420848368616 3.219935846694112 3.0281669488508953 3.89668984282853 0.868559794839989 +3.902139592660373 1.656737584710943 2.3198007081203276 2.6980810954164944 2.27704330848499 +3.6287267292005647 2.511578680902731 3.141105918593772 4.454801955346815 1.72447587364866 +4.113432204915503 1.2651979509755242 4.107404856528358 1.9475762820032383 3.5745346321797244 +4.2714975806168916 3.8814961834425787 3.6733690006499713 4.450547182661886 0.869544142866399 +2.8871909876894 1.740602966248182 3.7280312355661755 4.015879894694525 1.1821678990204714 +1.64823256148996 2.2006713431063236 3.877278908194758 3.60082785424752 0.6177489722066003 +4.024167756957484 1.9014977670719406 4.492327837721783 2.822173127621329 2.700952543387503 +3.744176970980931 2.6570038550675887 4.740463520162011 4.036511905227267 1.295180782799822 +2.4668154218568996 1.006505928453004 3.65988775985399 3.6644452473038993 1.460316605129654 +1.9470912600463297 3.096400891478464 1.3354582599092129 3.4622835821831526 2.417498413726122 +3.064242358290262 1.4633169975347102 1.1753585071843657 4.541959160024659 3.727862922159958 +2.0360567801417777 4.046259352706232 1.4389786750244822 2.9023528327664234 2.4864388808679143 +1.4062463092390218 1.2079194118023926 3.953326801897819 1.4438528957995205 2.517298719587147 +2.2800661753725886 3.5793056158488024 1.9443065087384381 2.4328584076626507 1.3880583855268478 +1.2269034924253797 3.356638550641235 3.1855074663486365 4.957745261943619 2.770667468739086 +3.860565609976528 1.9936336293967245 2.6639117955330365 1.0863894681197017 2.444179149244018 +1.6149690822376965 1.30488495839985 2.8790199889173986 3.639511846834598 0.8212795077284218 +3.249155706868518 4.307904030268531 1.2729395660449558 3.405145502082878 2.380598699062421 +4.22780804715666 2.707022647588733 2.1553446892943615 4.251976978209113 2.5901071766355326 +2.6568724463260387 4.94073215681348 2.411978500230441 1.6164497136673717 2.418446035668005 +3.5420378448330867 4.5441764306751855 2.197189633869392 4.127846268367566 2.1752509707078445 +4.1903277538796075 3.112841633520355 4.616628415362518 1.3923071097840323 3.399591772724217 +3.593454836240739 1.9522410518517885 2.479007617692953 4.509069629751963 2.6105046368228066 +1.418027787589668 2.3912727280321957 4.902099365170573 4.037872993175261 1.301573254238561 +1.7411195159621058 3.5551718463316346 3.5758063237862348 1.520819302530764 2.7411234037977112 +4.126969872472282 2.8577256597759675 1.417741912719459 2.5789999364954297 1.7203200484930585 +1.813266020696418 1.003510532900787 1.2622897938835416 4.7766672067938165 3.606459836236785 +2.7497261823388754 2.3895865971888757 1.242118245087224 1.7623247462788365 0.6327047689673543 +2.4204362434904234 2.0674112494697305 4.353751154227318 4.472060660320156 0.37232215302777977 +1.9582814851695374 4.376507621436543 1.0997481156861242 3.8303334898568893 3.647453102064528 +1.594891927036449 2.7231092975026376 1.5354888734059498 2.656673489113658 1.5905751719177823 +4.50597422957134 4.503130112188694 4.743648353119333 1.9949794553880458 2.7486703691710686 +1.1020458906512691 2.8257333748822666 1.558913038835724 4.95687662908345 3.810151585428564 +2.7921103809939756 1.9249648775031472 4.403497064608027 2.293870609864931 2.280891295694796 +4.187142439654023 1.7033017891534108 1.5450967396934914 4.054023157406641 3.5304640129277973 +1.141608041080859 1.5464365910824793 3.5164197535238153 2.1125116011466445 1.461110623877431 +2.938725747669728 1.924002689000544 3.363656537903517 3.6862524617897927 1.0647680573265637 +3.9052121226187366 3.5905693178263385 3.4928070629911767 2.5542440615044977 0.9898992890023263 +2.3069493591306323 3.7081792139054004 1.758206193589634 3.6667720021729284 2.367713781605649 +1.5709382589374008 3.6752457582137 1.962160476201471 1.3907121092265249 2.180519040877379 +1.4353884354011455 4.944240036436502 1.3827758103580288 1.1962818350895117 3.513804143787732 +1.0032497751042335 1.6147450481010486 2.762828562446804 2.652607499715488 0.6213494601004093 +4.463935524078101 3.765808846849049 3.7659174435312965 3.727073829004536 0.6992064672529715 +4.776059205477772 1.2420103557381643 3.646686974512906 2.4180483071121555 3.7415310031293516 +3.5896915119956625 2.9426961257508912 1.2684921165953043 2.262194348872699 1.1857685930463409 +2.141589296320236 1.6281656477559525 4.649884297682086 4.1366344897187695 0.7259677735818875 +1.5922316324487782 1.2806888700160188 1.326990711623249 1.6546764194042205 0.45214689638230504 +4.777524565581224 1.4696240933828792 1.8384151501795905 1.4315273332595257 3.332831113262118 +1.904356847005023 1.6327540700762966 1.6140084114342939 2.791822017533063 1.2087236901570109 +2.277384759104184 1.6613612441176526 1.3857269262384722 1.6009579989277611 0.6525407157161485 +3.7150903146789167 3.8711989248957077 3.3369735419718762 4.969908252060312 1.64037973213382 +2.5070787821491693 3.4985602410321803 4.3692738229488 4.4738997761224475 0.9969864960902319 +1.4051440485521227 4.395837673109891 2.1139777854587676 2.1776253213333128 2.9913708169990194 +4.3724637335576055 2.770875660397747 3.8981775380550303 2.7187151388711417 1.989023857870117 +1.9374786701851074 3.87883473451503 1.5962932139980346 1.3872356020750436 1.952579948072168 +2.099462846572484 3.5637294015822008 1.1151812102264786 2.6237739103635347 2.1023625945651805 +1.782398351203606 1.2127886283496916 2.023632404558557 1.7490369673048463 0.6323431746530278 +1.229605196996356 3.60584338827616 2.3078953137437983 2.9829114502413154 2.470253980105841 +4.919033443712022 4.073912946126875 1.8710377531085296 2.8120425743658015 1.2647998770825353 +4.943662073766706 2.7926519785655057 1.1617444163239732 3.840716048794849 3.4356561872866656 +2.3184808934809134 1.1760639634914685 1.3483408584007583 1.206803557232082 1.1511512713577745 +4.437973547813871 2.067637938264135 3.960691138512648 4.6276956175012085 2.4623943382184588 +1.1200078350656706 4.337391213559236 2.1656024713599678 2.3706170808804305 3.2239086206534293 +2.328153824396011 3.946394160399622 2.1486063023664315 4.467627104657238 2.827818817839392 +4.139665251958903 1.734633184117453 2.7289190530168153 3.8454093360157575 2.6515523376650094 +1.0354527431926095 3.2571759141206136 2.5422688618252356 3.7247839600329886 2.516822561430916 +4.296908727811184 3.957523807089669 4.161883105389945 4.967770604537659 0.8744351237774619 +1.169438361630883 2.172769118622708 2.2221862667908585 1.9121268326438776 1.0501473518651248 +4.161516946324637 1.9440710914094375 3.9309826384319546 3.289340622849083 2.3084130036979627 +4.371469544116344 4.659507097792138 4.632471588279692 1.7734007510589125 2.873543402242929 +4.125639723028627 3.043659989642595 3.3191013086633956 4.851138160908006 1.8755844582672576 +4.043656801624133 2.9108972861340696 1.3408860046859958 4.838653843036424 3.676618551186934 +4.495570226914305 2.2407052176188085 1.1360356991200278 4.217037233583447 3.817982014822899 +2.786725459545897 3.5406509697932074 4.762427742259449 3.6024450022756174 1.3834607446769371 +2.7100949871916686 1.3314259736366885 1.2779719644320888 1.1362978451577397 1.3859292207789056 +1.444981270676497 4.525875638426533 2.1110586289186783 1.8805926407652769 3.0895023348315207 +3.182380067906498 2.56799761219981 1.4905319584672352 4.963219717544691 3.526616802819181 +4.337526832346851 4.066714966901114 4.381975146918266 1.926529658938061 2.4703343115676764 +3.4492686503596914 2.9057590418002404 3.5677209459290182 3.7755324265938346 0.5818834128006667 +4.319084613904895 3.735207713250891 3.6032926144537254 1.0859623492678705 2.584156322504119 +4.960342778578974 4.092661783136074 1.085794966444491 3.621623242986588 2.680167039190514 +4.398921725825055 4.537587241598706 4.444060587682028 4.478703834375558 0.14292753340851247 +4.9437661214439395 2.4810209237391874 4.479614190015166 2.0649730421241634 3.4490006932307504 +2.788854249797635 4.409550056629271 3.4152191392814633 1.8179608470620945 2.2754975171037173 +4.822044882859691 3.9558294722143734 1.2696273277971892 1.4298250554698781 0.880904336231199 +3.2306050538372806 3.0968354104518294 1.6171571325348832 1.005016993338518 0.6265858819881088 +2.5592902050262443 2.4072781813403386 1.7202201106865522 2.322580951798452 0.6212457148746539 +2.6745361755827037 3.2723139148728433 1.7520705791755673 2.4598813440523366 0.926463331420228 +2.7344673293616073 4.251983801489149 4.269282725633367 1.6774853626985844 3.003376402266974 +4.248074592044465 2.5710374377812113 2.991576465383459 1.9824289662037127 1.9572512081692857 +2.394420431315155 4.301592113044542 2.500986595227839 2.2596871023806506 1.922375943679802 +4.215869482312457 1.4927800295436398 1.4444615735316853 4.872627790841593 4.378074894435418 +3.5933807108942633 1.7565649982617217 4.667741819390203 3.378560315398738 2.244076850824741 +3.8036744129067475 2.6511414915307387 1.4436225536001137 1.252237879630231 1.168315123708529 +1.820145088961616 2.822902109079116 2.785119134151477 4.298335654812066 1.8153087560509 +2.5277394016593977 1.3202649821409924 1.5854798731945836 3.062445098474446 1.907726592171243 +4.3943507477364765 2.518344739399029 3.9322936989729804 4.182142963090184 1.8925705265849702 +3.7314573175230374 1.2523481931741274 3.6649888565462496 4.704021430732377 2.6880421761292865 +2.8822991098667123 1.0787846367925487 2.8405349285010715 4.482614599481666 2.439075665172304 +2.2639832867558756 2.4813483020156206 3.650786114296936 2.8491977398574595 0.8305368576381134 +2.2471652493260312 2.182176972035545 3.543994291390901 2.5255854232488697 1.0204803275396925 +3.7254497464169796 3.041141398138955 4.1127570216568685 2.8050239113510487 1.4759552172451345 +4.848681293159208 1.9652199700364599 4.724366354498416 4.027674493541824 2.9664336754877816 +3.432942597509525 4.367748462719069 3.455202545559115 1.2478054095090454 2.3971783667203854 +3.061141072976131 3.0412133896354105 3.66087320824324 2.159418270546016 1.501587174458647 +3.1693340786060875 4.830299580016083 4.899053773193072 2.1501497814484516 3.2117408912774494 +4.221519897734391 2.3398349657448843 3.5356554718214355 1.577413326705193 2.715778062026758 +1.4740869913665282 2.8129901553300245 2.3192320257362926 4.944032659206652 2.9465641089136105 +1.2010608564605514 3.221350334557576 3.6349785330676507 2.2203392118039815 2.4663280366923788 +3.400740169326953 3.227519729843171 4.304307391823063 4.716031408406716 0.4466788404287025 +3.835214686112905 3.043368824612437 1.2248599300735759 4.733076964796602 3.596471413913399 +2.8021142492175755 4.7012759484035715 4.642709238600149 3.8881037260619107 2.0435862201551807 +1.3708268363199125 2.4169248789585267 1.7115752681193537 4.589840651473169 3.0624716703710466 +2.8948678171145548 3.5418308682672897 1.9416874465074403 1.0283646109959337 1.119249655538761 +4.737585678512043 4.373514739924445 3.287185997485442 3.782949517750651 0.6150846416143123 +4.099004607413326 2.28238166981524 3.2837950780721488 4.314614187749575 2.088709394406905 +1.93445315502932 3.6190222645481716 3.6218482326885137 3.007500558770287 1.7930968041892976 +4.202474349144449 3.740833778515032 3.995848209918075 4.434619713607303 0.6368928080146296 +3.5511149433999196 4.035637244502234 1.8004964960646062 1.9209935799328175 0.499280890367561 +4.753636507454111 1.9820837611543651 4.485340211004082 1.7842618832040942 3.8700553947498526 +4.350459197101021 2.16817477404493 3.94468801570723 4.264892894283099 2.2056510302804115 +4.276460659207707 3.439888848372738 3.2317978296590395 3.567392818310947 0.9013747229049488 +2.803225392212125 4.143654185789872 1.723930604771407 2.2050798926048514 1.4241678229179755 +2.8007924783972094 1.3444902551741196 1.3198526325679873 1.683702333832997 1.501067210512291 +3.698734891744296 3.7695634708196217 3.303612314057342 2.1595114823118102 1.1462911501074442 +2.4953895006538143 4.945010751986256 1.794853323474857 2.3836393779632794 2.5193874836831993 +3.6409446758660957 1.5708735329358174 1.535521089947542 2.085153481990513 2.141796046120066 +2.837141659580031 4.9028000457311345 3.333985426489085 1.6379456373119292 2.672731848642597 +3.868752452306724 3.6915040877965026 2.545959827194748 3.0892234581677305 0.5714475964246389 +1.0389875312295254 2.2201893384199702 3.546110903677783 1.240886069520994 2.590231504194783 +4.2709641478235225 4.434769886552855 1.6204037019224908 2.4855695064053487 0.8805363077619986 +1.8241002752169657 4.394982907824797 4.6629627309441855 2.5763048887069546 3.3111294842114996 +2.999075909176766 2.361890239001829 1.8354691315713256 3.046384717451426 1.3683282261225302 +1.7799315654630372 1.9372876442370943 3.764574055923487 3.0904081082234933 0.6922865451280833 +2.4627040683272026 2.9424508985902587 3.345301453994304 3.1547913603884608 0.5161890321511653 +3.8441387901543025 4.730282792901078 1.1596756952913214 3.250654084030723 2.2710001796079413 +2.2940091959614466 3.4525540695555534 2.2556315598358054 3.454982012236755 1.6675334274926985 +2.6750483931863576 3.4087533106768877 3.951433328754814 3.1234043644837666 1.1063249394375816 +3.4538665813399443 2.02671060611427 4.1518045817522315 2.4592647037929893 2.213925341131591 +1.9929058908645438 1.0625863334025079 2.5322270550516084 3.5785957037050427 1.400136360459642 +2.952500264628533 3.880974116101995 3.485279352388296 1.808409830538757 1.9167563971923678 +3.7384871308047862 2.7426278803968147 2.196217855562331 4.556950462309621 2.5621854123351384 +1.9639516752445316 3.552736145480938 3.286479837157224 4.997013751773704 2.334558280685568 +3.0967108910729957 4.446114949559034 2.5955412707351924 2.4749121373510303 1.3547851124365091 +1.9936246735409044 1.115263701135846 1.020639247044505 1.9413484907495473 1.2724871352152332 +4.521583956155522 2.4242106373306784 2.265099778289403 1.742775536335809 2.1614341193408455 +1.982528779940555 3.4718594358811994 1.5461457336818767 1.3006505498697316 1.509428265271175 +1.3711319102595048 2.384109853453447 1.3491275484166656 3.4777302776254113 2.357344669791066 +1.3618223808665824 1.631741298451154 2.465995418305659 2.614523520858495 0.3080857337138034 +2.56952182562507 3.9794970243417924 3.5027996480269246 4.991098862623525 2.050137705902976 +3.3796751176888167 4.432859735638503 2.9061469865256693 2.379662694173969 1.1774478967576003 +1.478203599933245 3.778840598208031 3.437294284487987 1.842842632210849 2.79914391721471 +2.0423412159848398 1.309119593214219 2.2190102746473097 4.104830389653143 2.0233465976591845 +4.920994974438379 2.678455122726328 1.9624796477135096 1.9236190679984868 2.2428765305233584 +2.8465680395291284 4.728292686448885 4.440500700132107 4.97917717496953 1.9573093754868074 +1.5598862187461089 1.2459071148954601 4.491306367552525 3.456653099702036 1.0812447744745646 +1.199327858486889 2.4692070492132654 2.596036090188582 3.753243446996666 1.7180576316557685 +3.8089475318802153 4.356077916829955 2.7227073033761506 4.78523247784466 2.1338607624331085 +2.176680674785535 1.8894018482022674 4.854541247148758 4.469649733048444 0.48028179418909 +1.3415371775024258 1.736981394221643 2.0217632435288273 2.474592154390231 0.601190611244554 +3.053013338378513 2.8538284627999877 3.630384986531439 4.380817704655273 0.7764173356449215 +2.5599525480807297 4.088633632355643 3.007046983710365 2.572722434074651 1.589183334872409 +3.554584534310041 3.8201486510816807 3.0358486857945555 4.856495895886786 1.8399131946190623 +1.374110613343011 4.246179845521451 1.8009413821609233 3.801166112086309 3.499954377507103 +3.097436599117194 1.9686700674378446 4.096148930597454 4.947274335066955 1.413693155240132 +4.988355700059653 1.1024104087995648 1.5980407319805843 3.7453206573948075 4.439750205220263 +4.482790318989334 3.115964520847786 3.0809575604918 4.801580922846032 2.197443404855848 +3.9950792841808958 2.0536198486537267 2.622387089455568 2.3401756421405477 1.9618634103303707 +4.596833370672527 3.9613376011488053 2.0287701832093092 1.5641338373249796 0.7872368176090909 +4.65679867208352 1.782198674129111 3.653920113361012 2.8424920243411402 2.9869283037746195 +3.9341173028353573 3.2943060277167335 1.5672696778801405 1.339274838443285 0.679220225389937 +1.8895700994491453 4.076190134211535 3.2855363043700834 2.296170213320077 2.4000317578198507 +2.4102785424436894 4.6939921901788155 4.036136163217924 1.7277440073582073 3.2471560433841713 +4.50059658428073 4.898409560974482 4.495752973844512 3.9098203706608725 0.7082176077304911 +1.8438647213643304 2.7734838094556027 1.6501604156200798 1.09301985755453 1.0837883789676104 +2.9786824696363006 3.5649539790557028 4.912269344915105 3.9854047994664983 1.0967188191904778 +4.881598020915424 4.248955467010682 4.6753582166881635 1.9382329542855943 2.8092866181814644 +4.752275364094293 3.409847478625442 2.2676651681455504 1.6967469783387505 1.4587872384747012 +2.88352395013882 2.5429293390276873 3.364346304403955 2.13867783867004 1.2721115819818924 +4.425652165833668 4.013656933252532 4.065249842526752 4.085464431730989 0.41249084994249297 +1.5961387280821713 2.9739203190392787 3.5897865234567 4.3632365093436025 1.5800338581969526 +2.910279976234908 2.3244941454120465 3.1927195634791725 1.256653707366974 2.0227446795866975 +1.074758244218844 2.0920850603848233 1.8986953946424854 2.4566170323228897 1.1602716943381808 +2.6278892065748325 3.1948223969977954 2.3761770511853446 3.102492229056834 0.9213831884778738 +1.4813407675606336 4.8189298937132925 1.8682457351091108 3.8315507683584062 3.872217430438855 +3.595330465289156 3.846221594182219 2.4264246219517007 2.992859744725196 0.6195119908998212 +2.8435920185853836 2.6074039589071196 1.4144102887507772 4.505261931233464 3.0998626865350833 +1.3804512281739747 2.0341834562013554 2.729792829587573 1.592672027803998 1.3116438326811757 +4.049010790356505 1.9687549369957291 4.1187089806604735 1.7788244153770725 3.130898304687212 +4.404963635152935 1.2540173782290123 3.125749534746751 2.1578357367508088 3.29625839921172 +3.8111788260249355 1.747666128271319 3.4528307261195117 3.774014987889888 2.0883591606329093 +4.0285732216954635 4.70705374811784 1.1161737203442956 1.3704752501143553 0.7245723516514948 +4.131695792879134 3.600097419523412 1.4220954933072347 2.3936027902831483 1.1074399571226854 +3.34862047991346 4.509250683500042 2.367195866162877 1.5173216406395102 1.4385230859066438 +1.646543720531314 4.8410782594478 4.698437060896195 1.8605366737653632 4.273023464434485 +2.5308063738255897 2.4483110272256594 3.664140415391762 3.456163465777162 0.2237406842343086 +4.764509960260495 1.3119869581376835 1.8347349439598548 3.81660432809402 3.9809196595705676 +2.3198807819962592 2.337805464885304 1.7974199813169371 4.068540651512821 2.271191403833608 +1.8922275818954084 1.0784429544348426 2.137480900136042 2.554325396071003 0.9143329555924381 +4.095872266609898 1.9147412834952648 4.8495767730501225 2.3046033321686545 3.3517491225171767 +1.3184496630452172 3.6083028173710847 3.6996175189235534 2.8389390176906386 2.4462614232458195 +2.188682480969327 2.7022410006722524 1.160855744430993 1.7597199034546813 0.7889110432251594 +4.539910297251628 3.2921679178621055 2.9087728380308793 1.1079192689858317 2.190875309657515 +1.8054959957122287 4.629038617954778 3.6502763958656024 4.407983004562089 2.9234418489996785 +4.581072345677605 1.209167759898429 2.4389072871019284 4.204389037826058 3.8061353559402704 +2.4107841619154033 1.4738959394948865 1.786340829526261 3.7514918500405687 2.1770572052058488 +4.044613577203739 1.5490733070111626 1.891475440266809 1.2079443253869449 2.587457444125748 +3.6141446736161864 4.357714558396216 4.003188862952614 1.6516700688617316 2.4662799542052043 +4.929245013884648 4.648497374827385 1.4443502728136242 2.232538755505171 0.8366960745000718 +3.541605656929592 4.618382430702193 4.656849334144731 1.7688414190945965 3.082213155822996 +4.394356013793757 1.5184038254788215 4.402726790015476 1.3461913566089057 4.1968452253023765 +4.859526934189155 1.6148821862473839 1.7598755456654467 3.7423626409777078 3.8023643464857186 +3.07628842638678 2.4512069177170233 1.301376010659816 1.4727510570804738 0.6481483618867996 +3.6184486210412863 3.940218795244667 1.231432646231592 2.217240207604532 1.0369920892017146 +3.207310175686701 1.0493027952085385 1.5607879360914354 4.589014651050878 3.7184879845701095 +4.048381476311977 2.9606009654936543 2.289235487647839 4.694015844531862 2.6393626133162185 +4.845580356630671 3.2517300216310554 4.815375497410411 1.158532522042496 3.9890925580733336 +2.543331993314272 4.084530270466098 2.5712165773867457 1.2656763376680376 2.0198335196299073 +4.4682047717803295 2.5376039959373995 2.832865174915243 4.400931969278042 2.487177683091529 +4.8875349940542785 4.882255246860488 1.5493080108614032 3.485422106791769 1.9361212948032693 +3.5416160010585496 4.628148936367335 4.147493447579093 2.5196280983145805 1.9571661694518425 +3.71867617030069 2.781725254571725 2.7352004017647586 3.8114909773111285 1.4269822779191346 +4.573652417469759 3.8043424254330387 3.3930517217500564 4.449507393068142 1.3068804265531282 +3.5578360426821125 2.8717830956365082 2.419465968480657 3.3722021932481487 1.1740421458083057 +1.6911742179443254 1.7535794674793888 1.2297079749975306 4.854121117994677 3.6249503508737866 +1.5720070290227333 2.569706622274086 4.372964523718262 2.450972566214323 2.165515542101635 +1.1921139049322496 4.934293670490575 4.103127455659663 1.167524971500335 4.756224484058399 +3.6416287113217503 4.665490793446794 2.5591234457536616 3.600743681992548 1.460570532276953 +1.5953732942263632 2.1136558188752597 3.159116833272806 3.79294976998697 0.8187557431982602 +2.5670630210264487 1.5116530172617204 2.3935909279445484 1.2382970388861625 1.5647984682195704 +2.9560630498473404 2.047970055118356 3.0725156338056774 3.301307213284993 0.9364712883567202 +4.12187262653269 4.421702792858439 3.987867873724059 2.6717728050665914 1.3498164165483506 +1.1948531745676725 3.786992471167318 3.8177258494583026 1.3753790384565883 3.5614946410441712 +3.9923831003954855 1.306750298525646 4.34385372890903 4.30083619254459 2.6859772997763978 +4.445379267811113 3.3503611697330427 2.7622621456946215 3.8095173591682663 1.5151924357210351 +4.502611577560952 1.0476386031365954 3.315723256562377 3.296719147634985 3.4550252401623363 +2.8680166560646905 3.2743047344964804 2.5469422578713807 4.4511206771268395 1.9470401780738922 +1.2400093063415372 3.5059969575284846 1.465876119087329 2.883152183333054 2.6727086406145344 +4.574869408661522 1.640669780205188 4.868768280958091 3.4539511966755625 3.2574890393692817 +2.459365044525053 1.3026641261310417 2.5811006723699195 4.600482426447801 2.327199966336415 +2.98098818595432 3.250147364500593 3.225971504401251 3.336628226761932 0.29101816712932776 +4.2384276368567875 2.505484030744113 1.726205846869329 3.472000587825034 2.459856259929713 +2.7743294655506006 2.0683431509427406 3.2589380482695134 3.730100770203318 0.8487702792591527 +3.894571042716024 2.0510791495778493 4.522361405024689 3.0200452649413525 2.3781118865228077 +2.9967232364641534 2.3970359403664077 3.390975708998857 2.020718624835167 1.4957370523597397 +2.4392480271155677 3.6094113835297934 2.55374057543796 4.595686351077374 2.3534708052887026 +4.582083181813248 2.5886809476041504 2.3327838271652372 1.0877993713022334 2.350242277445098 +4.906664914066501 4.31707880923506 1.4273276333693272 2.032429481705253 0.8448431936577726 +4.817408777171337 2.1028964042964824 3.44180015330333 2.9938194574495487 2.751229566275471 +1.5909859593603515 2.7307866673104964 4.932431619617865 2.91478312747435 2.3173370690714483 +3.8583914146608067 3.194556825948543 2.245064990034266 1.8708723222294221 0.7620344571013089 +3.412626323471357 4.84786837721623 2.1703445008689015 3.3213538488236263 1.8397669069523348 +2.339690514117532 3.573922814836827 3.264034114814347 3.9231312560293072 1.3991920574733752 +4.711130739935543 4.531379813922076 4.938161324076625 1.230352601960302 3.712163239299234 +4.033699433893572 3.3960672852472378 3.481215015095025 4.288465057467985 1.028701797363301 +1.3776922598962957 3.2006595022285835 1.6977583763677404 3.2642767827978236 2.4035784747540143 +3.3400596294107925 3.1271650505698347 4.690683055526532 2.9082970110267707 1.7950554624655397 +3.8120474315154644 2.475474246816186 2.8045124315661383 4.177432269167599 1.9160732654407535 +2.9032465931608256 3.3057933677753666 1.4800478535564952 3.923630228075327 2.4765174594199135 +2.413343295942797 1.772702723389461 1.4235975076903777 3.089444028522085 1.7847870949131637 +1.6616042771322261 1.1979761901863855 3.4049036660377765 2.2148576067914885 1.2771689888705722 +1.8673235454608967 1.3642289662980875 4.12030269663875 2.6986875063644575 1.508009915352554 +4.511044044093078 1.3676026001889805 1.9449567845266214 4.113442003331569 3.8188417426530545 +3.434801933821818 4.3472526368566164 3.0372845394728962 3.8449218877442015 1.218541903994854 +4.627091491158245 4.255005155424796 1.7426463309407683 1.4718442578908792 0.46019778792130456 +1.4650639424613336 4.094445827715168 4.371353268331427 4.029993324036488 2.651447851659552 +2.122421169355283 1.5083468483985447 3.9794719693830114 2.7056778479541737 1.4140858302964299 +3.856710635115946 1.777849213761249 2.800595922336011 4.871957860709749 2.934655872319663 +1.9839647575383843 2.7978468142441293 4.213004042559973 1.5105755547246034 2.8223259439851622 +1.8444814022666445 4.362345518246416 3.196926289796141 1.088659662735393 3.283965267373682 +4.549937438146413 3.047047238999392 1.5031987540756329 3.9099186449578878 2.8374248155432187 +3.3489444525641074 1.819659318973594 4.263222524703282 1.855274027603937 2.852530277578828 +2.005435019690532 3.032748638010662 1.3949755923800082 3.8479612612909757 2.65941947843295 +1.8304128933003758 4.098705507590372 1.0111434969098592 3.67520156422194 3.498907939636756 +1.4638981511028355 2.5109992158848655 1.836276568269346 4.242432179013143 2.6241199406623004 +1.530455089074687 2.22627934137572 1.6056059043120547 1.1740269214713868 0.8187990037366174 +3.329758991549577 1.7047709056870728 4.04000858309271 3.8057830803244714 1.641781917716881 +2.242510885617692 1.5142726030769866 2.064048140747858 2.9788184337491748 1.1692457761803339 +4.315497946622433 1.31034643486338 4.859659764651838 2.001534814741586 4.147265826773972 +3.8783777441039553 1.1921490621057318 2.067160200726788 3.1548080177253186 2.8980687199946766 +4.46958316999139 3.972380722859793 3.893119246942848 1.368446831168351 2.5731655757852585 +4.71035157714118 2.862132790429514 3.7670019189330612 1.622116478770776 2.8313329431513528 +1.6727018455275675 4.670272750068791 4.7206802895396445 1.5672847891147335 4.3507855049234685 +4.972359642534861 1.478874285849813 3.676662749481268 1.5009240974098943 4.115614002732789 +1.5688661313592576 4.278903113043571 2.601078351664555 1.6818943173887044 2.8616777825192425 +1.3842341986748776 3.1019164437991664 2.5512535651354056 1.6318014630699653 1.9482875719995172 +1.772570044782511 4.868269245257267 2.421139727013047 1.2191209495476767 3.3208737827866006 +1.4618166984462762 1.089977934349247 3.655369213509257 1.5042829948576117 2.1829878576295925 +4.7958680542660295 1.1496130937770417 4.800346855373015 2.796443678444032 4.160625335138532 +4.1271595079476295 3.138314112862902 1.994531655992264 4.3223307509955 2.529123136993957 +3.207948051121893 3.4457008229496644 1.4822422433217484 2.0260466238245143 0.5935061792144926 +3.4250126226166286 4.576323255445987 4.0650776347668085 1.2986728880761769 2.996416425628854 +3.3470212877834205 4.969986362426077 3.461453121212999 1.5459431618804098 2.5106162665393894 +2.419206978299819 2.490692338144507 3.20736098718504 4.925030237455567 1.7191561331063094 +4.661722672473125 1.9122195039695988 1.8783820941586589 2.1035032046458615 2.7587038963973503 +3.575152595924307 1.2486704117886949 1.1686235423383087 2.347323333859398 2.6080361484519856 +2.5101300081937667 4.931875414576214 3.428035443589172 4.857456343552348 2.812133517915894 +4.789807561358676 1.329180906899912 4.177420636407745 3.638602218938687 3.5023223907222354 +4.994490704062812 4.784656452346794 3.6400513541576536 3.6637835280129796 0.21117203713825572 +4.793824669806742 4.4297263833569005 2.6580806143604288 4.708397378237914 2.0823943897429116 +1.7955144772965408 1.0977540691126197 3.532201120471841 4.445030507774559 1.1489678313827798 +2.0247590884266793 2.3385452013024177 2.8686156773075027 2.955158174444574 0.325501656592383 +1.8209647851831292 4.639815321094556 4.489262085887586 2.5324963047522386 3.4314502278235604 +3.8848855693088056 2.2924609187072713 2.121840583406112 2.4685588966252348 1.6297330629783924 +1.6086093888726238 1.7813231740301312 2.74203217145025 3.2176175329438603 0.5059757777309519 +4.572567750577949 3.1855218698072023 3.0377148885105347 4.49056718574423 2.0086503112638403 +1.164728320859211 2.136205146157117 3.7942566542633256 2.229990583420389 1.8413841431057503 +3.487153600656647 1.7686156296580116 3.5726441883742392 2.198318455794906 2.2004872135492692 +4.595621673611246 1.462455053307318 2.6612527513493394 1.217578202109598 3.4497723511427982 +3.7993637999176055 4.963774498620923 3.668864846350303 2.1534257750306285 1.9111273777896085 +1.1096339410205593 1.227219795995043 1.1704245707498822 3.1215709634092375 1.9546863377221664 +4.7842896758644855 4.087092600252904 1.6554866586317991 4.815797952493442 3.2363020928755697 +3.516746788338924 3.4554677551513446 4.105105305020419 1.0968974595148717 3.00883192645743 +2.591934914117477 3.4279197348440986 4.242158106535053 1.0481420410346738 3.3016070703764617 +1.3630359713816138 2.7800510351560646 1.7839426508827674 4.313861751462235 2.899727978007684 +2.973128734010004 4.6835024411930535 2.098071453116929 4.173556579596919 2.689426840139503 +1.1144688057064087 2.7186092667077286 4.841398570864626 3.7263099794600705 1.9536348648870194 +2.3443807889860397 4.779861096266629 1.5941819476817858 1.0535162181549427 2.49477128375255 +4.641420097946005 1.133985678001018 4.130684020721924 4.453738565270346 3.5222805749923185 +4.348759785071703 2.963885569333805 1.4896517901505342 1.093592622104711 1.440395590804418 +3.2722556213776226 3.869716558863384 3.1304598606602996 1.3885153311158134 1.8415564927070052 +2.0062917869815697 4.523903038875731 1.5789057505764497 1.3729532488649827 2.526021149678937 +2.5810391289754517 4.0135481703178195 3.6890133088242805 3.501561220745066 1.4447215783163507 +2.751212842239133 2.132397934230906 3.7223694926785686 2.522948821497296 1.3496450780965212 +2.4706230409188485 3.8622687838466323 4.794233591454612 2.2480950284973638 2.901637374929373 +3.596771566886443 3.3536944752733455 1.4211087843214445 4.353423677899273 2.942372700316096 +2.1062754778111255 4.353290792184682 3.4628206710733624 2.4107376848511124 2.481119995672845 +4.628204675762117 4.501701373906924 4.36162259405242 4.683132943602747 0.34550251843979246 +3.2928862283789138 2.033989151900333 3.2978342130316465 3.9208489057467397 1.4046242047270865 +1.0893907261777254 4.71075676825182 1.7082061953813477 1.0435493423289435 3.6818556113727383 +2.310416300264958 4.733905155996609 1.7026272499281578 2.4435186490268803 2.534209600469932 +4.27655295824035 4.5684888472385 4.3785011087875825 2.2337604542086718 2.1645182001287755 +4.00300229841517 2.555330607417043 2.8789049308708963 3.8669824164414726 1.7527265737726605 +3.9371927472997132 4.7461431683799455 3.010751772548837 2.295845560443972 1.079579397669301 +4.549760127318123 1.3268738555873791 1.9625867775486627 2.607617437507984 3.2868009481558285 +1.4674529191290322 4.927321537473855 1.4216946531266643 2.9639731378389045 3.7880488091646334 +3.929211851464186 4.2521921088575665 4.982221730610283 4.056114027795485 0.9808117678121513 +2.0426883388690515 3.611931586352796 4.032304499938807 1.7156513081287348 2.7981076428359795 +1.5199133769511333 2.009438636697479 3.786596197590736 3.4675195066884696 0.5843328799638676 +4.2767214497166375 2.8257912586143856 1.6361856838815143 2.2606686405186065 1.5796130483704613 +1.592537919212484 4.9826185800419065 2.5141434203218114 3.705190160913531 3.593221288092874 +1.0162734530044673 3.8897755656231405 2.2283365537826976 3.5529850140736765 3.1641283056436316 +1.2135640050024712 2.764757181759433 3.1786211081642515 2.49846452685467 1.693757139236937 +1.6227559144539447 1.7861280816299745 2.4035809696919617 4.664339490942358 2.2666538236824056 +1.6292726916033549 2.457190122254751 3.4171007143721788 4.63586083749578 1.473371477154579 +3.7234688794645634 4.170380961422957 2.6775920123221435 2.517769763098334 0.4746299193554316 +1.5556731619073965 1.9660557743942042 3.3758918470545645 2.097298348504259 1.3428384948185716 +3.6074635645308057 2.5291205414009683 2.1593684682563343 1.8658196020612494 1.1175842752907796 +3.9043515574732996 4.953311527391348 4.062243678955548 4.68620515903732 1.2205101175804762 +1.0253622869271841 3.8414523154069986 3.622735900927491 3.1098629912476623 2.8624118623962724 +1.1439069657308685 1.4931493971614072 4.44365158985236 1.8672360118100224 2.5999783665812966 +2.3844450536137995 4.828142323717997 2.7542392175990216 2.6946908061348465 2.444422705102907 +1.8553686962744114 4.0264335494261125 3.0641419707308657 4.955845627886117 2.8795946456203123 +2.3528758404347276 2.8709835759439737 2.1598813811032676 4.931571996049225 2.8196993617359314 +2.658797514681781 2.82149163441697 1.3841211266090472 2.3732006752981465 1.0023710541667892 +1.501371485316866 2.041662230966073 4.7904278853145295 4.615898032648598 0.5677805555897171 +1.771897407947264 3.9041902433398916 2.0478155786821195 1.2291601225769955 2.2840467358785412 +1.8869688331332757 2.9046495651279813 4.316371596084286 2.3930206443538418 2.1759947049098454 +2.319350597337654 1.5592244476374875 4.491836714385648 2.4558858158826804 2.1732206111145365 +3.8087270319802435 3.3039036019942936 2.8936975759282753 4.251756099513876 1.4488511479604385 +3.1201803899941405 2.5137122139239754 4.640780735946834 3.4784838081905933 1.311006406108478 +1.4316066923083186 1.0596747818216832 3.3936822787673244 4.654526974979154 1.3145579842683772 +3.470474822783457 1.6266154725499167 1.0673883189635713 2.6062227821616553 2.401630447960258 +2.2875664285037054 3.4639988880601833 1.1059350535757995 1.3608811649679997 1.203740358886462 +3.0750075641126102 1.4168351233581604 2.064608149700487 3.0053800417243575 1.9064594399304022 +3.388753067429526 2.5250096664541943 1.015681219112579 4.823713087398941 3.9047611159471654 +1.5660253541918099 1.9761067224416031 4.336009748058245 2.9613037594294456 1.4345672810145602 +4.252041020959631 1.923581060634338 2.9911434552678084 4.195144271899337 2.6213248088108903 +4.350105263654687 4.137325180094784 4.325988015948818 2.8135751445588872 1.5273074534964117 +2.8031716064653156 1.4077551051542372 1.2745931690876118 4.287562195633458 3.3204170772744614 +4.194343869497574 2.110192233453857 4.0714811127871595 1.3948510846342868 3.392349679740187 +2.3810181229073093 3.926059158583931 2.6132313333676933 2.4127094038091697 1.5579989878554352 +4.329296955089151 3.084092067888131 2.957997872988274 4.437120669920461 1.9334785903944736 +4.03530911998393 3.4517306685823663 1.7038638731854778 1.5985334807572271 0.5930078418615868 +3.7120125949629226 1.2448484543173608 4.042453959702748 1.2985548064388839 3.6899703874380214 +1.8023595482968986 1.4152341759821128 3.3001252036379034 4.038873044543738 0.8340350270419666 +4.60962179286388 2.112315147314261 1.1331670750748568 2.0394462372524145 2.6566675369160415 +1.3904175239725562 1.3811795256437107 4.560345849630478 3.918513840645098 0.6418984875907814 +2.0132602201715177 2.6325906497718994 2.159193559823446 1.9743877967652632 0.646315210318085 +4.310717317279725 4.619235592957411 4.8352614420632465 1.8110162413915138 3.0399412099929073 +1.6163899360513536 2.6652434877052054 3.354408703662211 3.703278655362206 1.1053524397295442 +1.5860687443859076 1.0199328133625358 4.880277825801493 4.481311446598145 0.6925922784223991 +3.1113129120953693 2.480016354964623 1.4154636171648352 2.8152391092767517 1.5355477105457491 +4.927597325529321 2.120286035497158 3.6936718947888507 4.733401180324717 2.993665590266049 +4.753589121343078 4.851278478905776 3.257864937464558 3.844448385188064 0.5946623846555352 +1.0993818723833404 2.1926025438317214 3.464054024995953 3.772885423873692 1.1360054002577762 +3.9384602715182466 4.679215927043462 2.6352995837348248 3.8271340668129645 1.4032777259853901 +3.122300829021352 3.6049906974050994 2.81644240167204 3.196684427311556 0.6144701026923619 +1.5541879858535235 2.7949986102993076 1.7204582910159685 4.138581189265901 2.717890607949148 +1.8897089467039714 2.1386483174806648 2.5934709806247858 3.1581973240432424 0.6171601520460283 +4.272301993850155 3.6959164543193075 1.4697055346669763 2.644373401024616 1.3084589739206482 +1.0140321629277853 4.250694483636096 2.636726685403591 3.89807662784237 3.473756850383057 +1.9765059227591268 1.4728729631323776 4.49080783674748 1.3579368826282132 3.173094163933142 +3.335178156734573 4.240852618134337 4.810558579115387 1.9159554915412116 3.0329809205838574 +2.0905011969307594 1.0845472419015652 4.645602283770302 2.421485926574052 2.441031939567116 +1.5303698368111802 2.195090654268052 2.642153953161797 4.185749121425337 1.6806367271504803 +3.9425599149339035 4.919254952015152 1.4633146226527858 2.5902511509293435 1.491281037974788 +2.10206646832168 4.660596212252047 3.670741408427455 1.8352638399833188 3.148817612190009 +3.118477596131989 4.317788535238646 4.715389416616997 1.4330910605693186 3.4945427779287783 +2.166368397726802 1.9639196253578781 2.2381813266999924 3.370482139179661 1.1502567693240506 +1.7433085727779614 4.316235807352966 2.195119656244766 3.108396882411756 2.7302069237061595 +1.9476500608057212 4.081074613060334 1.935098105598152 4.01660758233512 2.980634499885654 +4.754666811347989 2.154639368156592 2.38257921952337 2.8214415310236314 2.6368054220597594 +4.593949673584172 4.52257450971415 1.875176313733745 3.264130300074092 1.3907866803317515 +1.6595065002474807 1.8077804267105537 4.0999553184851525 4.169219103287039 0.16365399217207896 +1.5735049715950402 3.505105829360999 2.6388943606820026 2.3012418659012295 1.960890379637237 +2.5164688603227234 3.4306568139224995 4.962561951536152 3.0414541449005537 2.1275325659606685 +2.1898263727439957 3.2426127068543176 2.7604956884390193 4.62119415761756 2.1378863062597167 +3.6424102827512725 3.004598148598941 4.194458152276493 1.4787606465061147 2.789590877049788 +4.448076945334719 2.504299635175267 4.531251882822513 3.1140956192386176 2.4055357213946715 +3.194602168077132 4.722557719450707 3.8027845291644593 4.940747717339636 1.9051531131683717 +1.3784238336110652 2.46643841808596 4.864028325548321 3.2193753647095105 1.9719683307867661 +3.8480784601450075 2.5283284772953363 2.8061415259892075 3.8243276049962445 1.6668661940046152 +1.7310975821210177 1.8945443503469215 4.765583438148925 4.34789598515105 0.4485283206614094 +1.8461298968295634 1.4901447555054403 2.125607330146348 2.040118591763338 0.36610619392995064 +3.413286395919665 1.4046926628305214 4.200480738701744 3.3931973535702937 2.164752930131814 +2.709052687664047 1.198938188052062 4.213186111379421 2.815622085472848 2.057578919129602 +2.327757825079561 4.0340390808946305 3.0309832323437793 1.1019164502505792 2.575401788793598 +4.731265379555178 4.2682828581808785 4.003800229843154 1.5467744587216945 2.5002656768937794 +2.945607937655807 2.210600715754777 4.181680736898722 3.6583955754616913 0.9022543856512136 +4.458194699288744 3.664713163192391 3.0851835657606737 3.3211006451171174 0.8278102538975357 +1.9504785179132225 3.039559277145827 3.5356170181337587 2.95215603204743 1.2355256461990163 +4.295848065763318 4.018833117921123 2.513167133080872 4.069605585027341 1.580897825928525 +4.396701516420931 2.2358270034487897 3.842650891869454 3.9870397243870617 2.165693144415521 +3.14635896328598 2.5736686601843655 4.437316703308097 2.763193364820875 1.769368004609053 +1.198052762964588 2.6255171698721096 1.4935674226581472 4.873625996600584 3.6691212294321405 +3.2779556743904643 4.922385892547673 1.2216763254894363 3.8963146129993445 3.1397198460057703 +4.312015915300375 1.2349891620003923 3.9789354126030663 1.5507344190430832 3.919726228405438 +3.1249988619964113 4.184159642737956 3.7027467057094827 3.359003996143387 1.1135441660935055 +1.419485955605846 3.1219044161399103 1.9568288450889133 2.845486189132514 1.9204011273402752 +4.077027200550926 1.1342194404686965 4.1420709297359615 3.669466123500267 2.980515528507991 +4.192332029566147 1.8202835114008247 2.2849008711334973 2.22007245543257 2.3729342376080704 +3.339494296024956 1.6175453322685325 3.705387757606889 1.8682576893645355 2.5179664655078264 +3.734279566664929 3.9024904207439444 1.2212296798697304 4.53242495720525 3.315465134197469 +2.1850941293162154 2.617132990395056 3.3594551500267733 2.786418801799694 0.7176546759213154 +2.577832625393484 3.786320802768376 3.6886569024408873 4.863146998633302 1.685191579883117 +3.985868818559845 3.657223961557118 4.340920765512765 3.967000865989678 0.4978187755536129 +2.3077139593302403 3.280032818611728 3.370191910211683 3.021968771811029 1.0327939379334363 +2.4125968720145616 4.525348451737866 2.095044618251917 1.9077045375639656 2.1210411461014815 +3.906735684311094 4.683774189704355 4.510982475743722 1.071521292604651 3.526142661490628 +1.811937591223057 3.8805505876212756 2.1008618909091648 3.279380742782043 2.3807701302493243 +2.707969165355384 2.354754578865986 3.258103810819555 2.4287064915285037 0.9014768201989767 +4.235459234758919 1.289921120079994 4.508956799857585 3.0566136747663757 3.2841277895395566 +3.5272753039793106 1.8809340890325932 4.283944423304621 1.1021108105724169 3.5825276740235656 +3.4983506780262696 4.211765949303672 2.9010859669533664 1.686489197204733 1.4086187072361436 +3.850781505803468 2.967278885725633 2.8001516901519663 2.462258007675115 0.9459117402496737 +1.0823851049564235 1.148755057928562 1.8843322225470351 4.64061027168686 2.7570770128575597 +3.7875176356236007 3.1834120979041485 4.60009307751581 2.192500853188161 2.482225577852719 +3.5588507008949772 2.43975355191242 3.1734241687091984 2.939983125929484 1.1431855270755351 +3.8584852122569546 4.588967033437665 4.703947103634977 3.1037843994217256 1.7590123282770234 +4.6310205113539205 3.5111613310173717 1.9613346715526014 4.362852539925069 2.6497872850280433 +4.452042258185138 2.236158138792716 2.8412772647057465 3.415147687223292 2.288988792549233 +2.9082331282932787 3.2144891523542665 2.127460966588899 3.1344973960244364 1.0525754711582067 +2.538970380435887 3.608566649547492 4.41220726449955 3.6907536735544295 1.2901672227990733 +1.0224493039107738 4.3485515642516965 4.511875987562398 3.9388955448219583 3.375094492604322 +2.0489351282608994 2.517180044809636 1.3694911436263313 4.577325897415644 3.241829284446094 +3.6027289860259777 1.3091145501976853 4.952241237528002 2.484522655847809 3.3690209525334858 +2.621183237164311 1.3901639269193833 3.7905081156883464 2.63326076226564 1.6895650266266038 +3.874176875541452 4.307472135868236 4.580051328586921 2.0815936593900095 2.535751467985481 +2.421110005580386 4.556274250756604 2.6533050707206396 1.0719044426780981 2.6570198155550657 +2.7150919716436452 1.6217243979601341 2.8954831186793246 4.19906142633578 1.7014020851565443 +3.232356465279987 4.984306691369752 4.618745168832641 2.49389264184446 2.7539658414991344 +1.3261448753818854 2.80841869081998 4.173897936443193 2.4311504763881993 2.287860217203302 +3.963654526541785 3.9927010562742593 3.019623215279855 1.5467247225054277 1.4731848732955002 +1.5615700646607125 4.991262100868964 3.702570622556441 1.0114546506237896 4.35946013144074 +4.095186584184134 4.4181655942413975 3.5094566106801897 4.526031435125461 1.0666488712943467 +1.6148714825747517 1.9450613422916718 3.643515585235988 1.3540931571946113 2.3131105458837786 +1.61078508132384 2.6729616497982858 2.294369091661102 4.519473628333378 2.465625531530628 +4.581616302178739 2.8381404127996896 1.587016330354626 4.465838712768383 3.3656093781561287 +1.24228270689659 2.928918789401794 1.5798843036655068 3.536510479765595 2.5832396845450782 +2.5677015955951576 1.902860020215055 3.77487545013412 4.955020691671715 1.354532063658046 +3.103105807861741 3.5494030976731743 4.897411468242033 2.497742277368207 2.4408182022678524 +3.7137352815603895 4.3608323614392575 3.7844912295452904 1.7430743531133848 2.1415222376078087 +1.1393933295561416 1.1660793665416462 2.719981566342453 2.168144490089777 0.5524819483902561 +3.738238650049408 3.7890441720960335 1.6387647770956812 2.0509870679138684 0.41534132724522393 +2.7432246561361353 3.354994533542012 3.7224207979230894 4.315577479678189 0.8521133915224673 +1.708617172142259 4.5785028487946375 3.5150000509319765 2.0738452731897232 3.2114126004709838 +3.8753542803828585 3.6091187202677153 1.9489374850910122 2.654686539638811 0.7542964281136003 +1.2665855576447624 2.3439188216142774 2.0910305683360924 4.878118776582831 2.9880608498160175 +4.3130753407713165 1.7151943221199373 3.9823986035288215 3.5201051004460013 2.6386930609795662 +1.4437689347238734 4.206580278619505 3.940461214465076 3.477100211654239 2.8013978548011083 +1.3119310495254655 2.830944331346554 1.3364940258611733 1.1203612421609441 1.5343124618339263 +4.168419811143044 1.7563760586016817 3.535617622557267 2.172144826047399 2.7707423429464275 +1.7663878804359299 2.5548926707664434 2.021804948437941 1.0169951950449998 1.2772558259361162 +4.344498105639853 2.305702881006935 2.4290966977625037 2.0225686384726016 2.078930261210319 +4.745289794236226 2.7975563138049035 2.41381243224129 3.605238390607172 2.283234881710853 +3.07546403232428 4.181905708571458 3.8204424459897424 1.7336421222271419 2.361979842037683 +3.3430253509098806 3.2322847409785505 3.3441364444981954 3.6607232885506944 0.3353963513741382 +2.006387475893011 4.242710149844128 4.589306993426485 2.6642246662692792 2.9507763501087094 +4.409417854930215 1.0417401755651707 2.9523148131331833 4.636748331479431 3.765444094635034 +1.9173280792726053 1.0747111848193889 2.583224912113967 3.2631318238113893 1.082717248127095 +4.699154196423104 3.622009695326168 2.684117093391848 2.224886022098203 1.17095407812812 +1.0405273568198705 4.339246866084112 1.8173875366516552 1.7142017302606893 3.300332969783666 +3.893481839023862 3.6907575158028116 2.8005769926577018 1.5391657816056536 1.2775975088396296 +1.2782922007411317 3.5385596100304273 3.3248169376738153 1.6483498477130358 2.8141340879952588 +3.3423069061154758 2.43215950385028 3.55468837216711 2.3265863935522617 1.5285950293415813 +1.3802747778502669 2.656122644634973 2.0799229290335446 3.308422957451284 1.7711578413573057 +1.167788744151237 4.24882561834968 3.54313503673483 3.6205673988344924 3.08200973244259 +1.13510750399697 3.093252263565858 1.945888343712796 1.5245196255212377 2.0029684211433527 +2.929146419201456 2.8078502615561662 2.9607216592429846 3.0010872609390624 0.12783637846793608 +1.7367426144145073 1.8707535613433532 2.363970974838589 3.1225394463244402 0.7703149095202212 +1.5691037325958659 4.009072698457507 2.939149278601074 4.39084041722155 2.839164615924399 +2.6998458459433574 4.1908847739633295 2.1521176601298873 4.9433001180154275 3.164474142425391 +2.812680732421244 2.0320928297274734 2.634165023884044 1.1649047167905087 1.6637437674811735 +4.976948410808607 4.355560707536576 1.879286934961732 2.276514931495901 0.7375044128737398 +3.3838149966628728 3.564755012030902 3.7780533324311247 4.436761498574148 0.6831074127140528 +3.0512079263832543 1.832516532312578 3.9872505603581305 1.5562196815910405 2.719396963942745 +2.0726933617004786 1.235377311689335 3.0248612583818795 1.718019450390122 1.5520739926696245 +4.9632506891467525 2.0941748600028722 3.25952709281904 2.2934501996684964 3.027358696431107 +3.907608753387846 2.570377978495038 2.7610582973261337 3.128022500005969 1.386668262912535 +1.7222554207893062 3.0284937314172584 3.9193260506704615 1.733603098565092 2.546299932747982 +1.6855476785653098 4.111262718817283 4.950845768557052 1.1305071839757557 4.525381791334876 +4.432549843739585 3.8520033734556556 3.9738297815013133 3.669718402840082 0.6553761780766552 +3.4950294229753247 3.4286289059019466 1.5120199553358318 1.6525662296802 0.15544222045407863 +2.580214520631836 2.544197641638773 3.5381836443996595 4.044413365193591 0.5075093553694388 +1.378795547591491 1.5516991642985958 4.125183143507805 2.6203624159225094 1.5147214538788094 +3.581269500279242 1.923817100092144 3.1550682648147315 4.812658085013881 2.3440888359688548 +4.793318956417256 4.078063427250403 3.9424089544419036 3.9422848563922135 0.7152555399324636 +3.341214409649808 4.74453643769035 1.4343568255576642 4.739089158302271 3.590343786529561 +1.727961389600945 3.0418934622407074 3.6417819549543444 2.758366633673375 1.5833003888666801 +1.244093487752152 1.0402080854038216 3.6039343838076046 3.027789126122624 0.6111567845026618 +3.406091762417266 1.169341981053989 2.0008638336099325 2.6422218675279625 2.32688412090071 +3.8198700354404216 1.5095276546431116 4.245330160587136 1.9726320919818607 3.2408082984882536 +1.2480229455764893 1.8690791530064148 2.4007102381320498 3.6674132160811235 1.4107612296672651 +1.0142926135551487 1.9336452940062197 1.199964557668069 4.822439554116215 3.7373164772259475 +4.742426209325668 1.9252577662978583 3.6004786397641926 3.9566601539474484 2.8395956239291555 +4.009487241242801 3.034175830427425 2.3101740948098124 1.0358172624298763 1.6047484800740905 +4.935531369057021 4.611332959450639 1.7013578174454551 3.098347918050647 1.4341150407063625 +2.2177328622687806 2.0079060089024305 1.5905796420188318 4.565010886711761 2.981823022548312 +4.097362859000123 4.778265846144837 1.9272617455981353 2.2033874574900967 0.7347613807695919 +4.478030180028227 4.7642767614566 1.3411614753792018 4.938187042024011 3.6083971555908088 +1.7167341873415558 1.562555987898493 4.556955829108661 2.3746898901587774 2.187705543596835 +2.046173288727118 1.066472861059454 1.7221575899876922 1.8743258016785136 0.9914474734555462 +3.9817000060303274 3.8529396668843425 2.2014761140255223 2.846077751969531 0.6573359084798941 +1.4001530118939947 4.442643178223818 4.818328632516359 3.79815523340847 3.2089718254389554 +1.2197159619848077 4.727787352381514 4.621884071482576 2.1167245182807655 4.310729551609353 +2.5995976205200666 4.173288861727821 4.802963871970318 3.6166591243998885 1.9707417580094415 +1.3281924727310441 4.617999426034766 3.323157192365617 1.8271383263592722 3.6139870278478345 +3.260047525058136 4.728672923375115 3.060768287809129 2.8208862387391718 1.4880873489307356 +1.7134171467215022 2.5345260100228018 1.7739367264706507 1.1956243064018834 1.0043231654192522 +1.074267173450702 4.222629943124703 4.773787993618318 1.6800159926590412 4.414024617442557 +2.9154948139902968 3.740163928418728 2.0743337846758383 1.000320379606582 1.3540989412006168 +2.0809367024720804 1.5781692310935642 4.6632879714336735 4.841461420008352 0.5334050131498024 +1.23518612267987 2.6415097812408597 4.892727835618742 3.8870570336822046 1.7289071676917895 +1.743383658053932 2.749435791064891 4.8942956276827205 4.722447322268265 1.020623698730203 +3.273085569398238 2.913818665094929 4.170069418174162 4.8836094544937225 0.7988817759584976 +4.332425094845988 2.8209997421231443 2.7461666966370193 3.8358537865033724 1.863283271720855 +1.5747189592955126 4.602491869123538 4.478397085556022 4.18167341566968 3.042277720682201 +4.306110796434144 1.2202297212200883 1.5646189310963718 1.4383281438980937 3.0884642418676984 +4.488913487761172 3.0831272907684086 4.8857073125373685 2.844782590670869 2.47822689679158 +1.4521001020217192 1.9356266131048048 2.32861346776281 2.8827410427994224 0.7354286208301508 +1.8055397146821406 3.2091530939358393 3.137285445147787 3.326454040042907 1.4163033840652155 +1.5767713757091224 3.1514866226792004 2.801207956268815 3.872418466819637 1.9045262053735532 +1.7491090936350084 4.192849580605033 1.6831233062005322 2.272549823977004 2.5138200388083853 +1.1880258338242013 2.042202404538593 2.647324627828727 1.3041193287587927 1.591797125706335 +1.7086102970654808 3.1491100033450623 2.4227461595790034 2.058552022698171 1.4858252835141603 +4.0674419145191125 1.279551760706954 4.483751065643919 2.077029363447254 3.6830206164977124 +1.964936963082728 1.3962245159917148 4.794272268765294 3.0638932636417118 1.8214404598692557 +4.555600890613906 1.5188447850223028 2.4389966234151794 2.331135768114766 3.0386710267737143 +4.320784822490502 4.63338857626486 3.751154152673455 4.669118844680348 0.9697320674522057 +4.101942120181446 1.4623775479802186 4.810716789752337 2.2665305253958725 3.6660857707587735 +2.8665001801298926 1.5310210682462633 1.6820880545341477 3.7753754736951386 2.4830136281331945 +3.0193749792772375 1.8285088047050646 3.0969710862300057 3.2182740215934142 1.1970282569212558 +3.0393744735897714 3.168449947035744 1.3058955779770907 4.996699965781287 3.6930607234217003 +2.1431368089432423 2.0867925850776246 3.1858928340788153 2.348190785481797 0.8395947795137008 +2.1006261340512014 3.0632232120220975 1.1398409864540398 2.260059576495018 1.4769843682285553 +4.439652567204715 4.07327428475736 4.644695282071639 1.2945303772825834 3.370139156641657 +4.683637874361566 3.947026793204691 4.759307134213078 1.6170975316960647 3.2273947807842203 +3.9957491048844185 4.302936350509985 2.7754731668185957 3.31781050863777 0.6232927050804542 +3.235337747633647 3.373786516831234 3.841993143018744 1.2762226089988187 2.5695031611066796 +1.802474373981458 4.420462251143633 4.497548066376737 2.078321091628264 3.564620552081071 +2.9025973892748125 4.581092999503628 2.235510066241659 2.56912574661895 1.7113289969351326 +3.942638951408733 1.603790993933651 3.194963209206011 3.8326233781114953 2.424215390429228 +1.7380932811308685 3.178291511434107 3.990463505602692 3.006359263675906 1.7443142209896914 +2.8335258659063847 1.4721891855973492 3.1958730688625576 1.6363407182676988 2.070115627134569 +1.9948946999826767 4.421112481504799 1.6981092867205825 4.4033784831476 3.633870408876878 +4.205496222363098 4.559287091495436 4.919209507645615 3.069312858171834 1.8834239015197125 +3.425728777450822 2.732548762649551 3.8571286834926677 2.1810118288883986 1.8137988430937975 +2.823224238404607 3.3839805778852345 2.8641495123076925 2.7218919392890286 0.5785195669541986 +1.5540994523424279 2.3362872080670445 1.1388028625507496 3.9814460146587556 2.948294044940574 +2.676076840834862 1.4817721668029376 4.625293060139747 4.784658939134124 1.2048905086364285 +3.586850752813856 4.2553190746669705 2.1561208890563326 4.909314846961573 2.83318316865801 +4.926031285867854 2.309405417764385 3.635778234983374 1.1482420877521569 3.610341675992753 +3.6403550232619932 2.5994334320995742 3.1795947548324395 2.8929812829575345 1.0796596876832483 +4.631610234513421 3.613455242607276 1.8698567627657856 2.9058790861675097 1.4525776544233733 +1.5066952419816757 4.050531642959065 1.7854605607414729 3.5362819348670005 3.0881190260468263 +4.315836649720868 4.365077135955383 4.107451892869047 3.5112490653419504 0.5982327615869235 +3.2041966698056963 4.237061917471213 1.2410933354029186 3.261242872195845 2.2688796289886835 +1.9113642030261624 1.5681128962157285 1.0089720836769582 2.3341587031812456 1.3689196602212532 +2.507532869130544 4.733750782843299 3.3985129018474685 1.8529131112445567 2.71015219352112 +2.8290585528380343 2.128945511992668 2.9930863097860883 4.604884686549218 1.7572854854285926 +1.5026207967185377 3.638751935986515 1.143709025617878 1.9371316807774934 2.2787223950869575 +3.4550184453418376 2.9823639319761397 2.0652226127237574 1.9895353842407446 0.47867613849073826 +1.1743884109748226 4.4553878024685485 2.881004915154277 1.9298875632023202 3.416076876208482 +4.583438609401163 4.675801519640336 1.5584741024152038 4.569297107956061 3.0122393792462656 +4.83097108982861 4.7012455986039585 4.15685151896761 4.101409865944151 0.14107614952021746 +3.8246626393244374 2.8379070425199155 3.0739645187082254 2.1769564880422174 1.333532907319635 +2.485272026148278 1.2974975640916693 2.92694718199144 2.211577034373587 1.3865650438463586 +4.494252446225451 3.952319193813587 4.370583395155155 3.439305564160814 1.0774832010621902 +2.5302974542766323 3.7970661659615605 2.2655834025498156 4.556749289289781 2.618042033555769 +2.802650218696321 2.7216166497252376 1.5978469005081308 2.828009010886464 1.23282815392522 +2.8886976866192575 3.4622522343861215 2.9788351246807494 2.9715173286283685 0.5736012285578859 +2.904080148321315 3.0010542363686983 3.7398330294784525 2.2637284479097057 1.4792865542148574 +3.148739034990314 4.942002068771622 1.0918424570900287 2.5683817632522 2.3229207112961054 +4.750388856517208 3.134203770088054 2.9096692313478294 1.8785087662305449 1.9171192290561658 +3.790458434393341 2.780345822934271 2.290924132332253 2.9054200447065908 1.1823420461750616 +2.784680764876712 2.5112568848346055 3.06591175663568 3.32536814963405 0.3769326704399671 +4.330458456085874 4.159687235116961 3.7364155977309306 3.8753440476295467 0.2201452341124956 +1.9092925606960223 2.750890449947074 3.0233336938192616 4.417774630861811 1.6287272743132686 +1.4031510477703013 4.9538618977068385 1.9626260492358072 1.3994779090599772 3.595091565960531 +1.6549471162573632 3.517932954845437 3.6886381768975536 3.2768384141826177 1.907955785481358 +4.443622005724169 3.7071163151811115 1.018676113141674 3.4254951461498284 2.5169859931776766 +4.589432335757344 2.3284310150567173 4.19426363271232 1.4882688304909237 3.5262635808826306 +4.437907453408697 4.129010212848831 1.7947230520897803 2.5056112678913114 0.7750997100960522 +3.259984394752511 3.68990452772219 2.5387005894579877 3.1711560610040097 0.7647425999780366 +3.7875518994021076 4.756532552232279 3.021522979758021 1.5249764197386795 1.7828558864543456 +2.3790932420762383 2.579723376399064 1.7697891875970262 2.176670786400104 0.4536574547419492 +2.552408020202562 1.1904275700057516 3.674726600232079 4.7841887243666505 1.7566721241049799 +2.299932348396869 2.6438452415619036 4.109225675919063 3.560985351810229 0.6471812196472515 +3.127656088735377 2.616897117131559 1.519490218408715 1.5245157162795846 0.5107836946327083 +4.935781636199106 2.311303677458309 1.7985659314758244 3.644817297925412 3.208820447459351 +2.5090236083036443 3.8959331959462293 2.6969566967778675 4.4955478636003185 2.271221783460759 +2.0599623277798895 3.2955146014018597 1.1219837790707703 3.235996500648468 2.448599438014467 +1.2150373093545568 3.4376656552324607 1.2095706034583724 4.569353156796414 4.028425941930003 +4.973321838034497 1.5514970836252835 4.3476467038963635 4.302584195251446 3.422121458915953 +1.3743323710482702 2.4619030247542546 4.39335859410116 4.96554528284138 1.2289050140568063 +3.118741519078126 4.690271589484215 1.839127067267596 1.4403954002859023 1.6213246758267046 +2.1741111409556284 4.708845013773411 1.7150784548538724 2.1161090566374843 2.566262135787527 +3.3087472054639626 4.412501831573714 3.339359287211399 1.103578286718912 2.4933894514940627 +3.154165977238416 1.1385718549010342 4.183172126992764 3.723683001714391 2.067304990138147 +4.74508054257327 2.2436769414603637 1.3069667604404462 4.608375530113841 4.142018812141854 +4.343758825881563 1.6487034614124196 3.8413899785283214 1.6393451396711045 3.480276553650818 +1.080266105661789 4.15649253606704 1.2209910503639088 1.7206897246674067 3.116547419216416 +3.091846102709276 1.8043508163570152 4.106039333546625 4.190407294804699 1.2902565889256812 +4.059775436416135 2.5032179002840684 2.0027884487806773 3.496763395611546 2.157506084591148 +2.873139989209405 1.590349600354525 4.144917493599945 3.6150603032388036 1.3879120375282643 +3.8065883974583663 1.598855036927859 4.711877785269492 1.1016286260698154 4.231782790113559 +3.8634162402119196 1.1966008573473461 2.326714497967772 3.4437772992809976 2.89132038839712 +3.4480812631555136 1.7685584617276846 3.1202926250910714 2.2175815285937817 1.9067470110781142 +1.8508735263460148 4.377035549527391 3.474292371490452 1.4024100409107167 3.267138037967227 +4.384810643713125 3.6450439423695666 3.6998595618469787 1.2121548313535073 2.5953669487254256 +4.6814437601516605 2.0032643269299633 3.3096534936169446 2.2035248718448295 2.897613777651392 +1.9732454854470292 4.155418690198594 3.5998709842879943 1.5318572116844562 3.006419940596063 +2.7914883398500816 4.054440373457556 4.554116957674405 2.153259994269688 2.7127775430215753 +4.645452520951063 4.1345390361018275 1.669565345205208 4.608310507581148 2.982826799931364 +3.3420129920175543 2.5229565736733255 2.8811125652865854 4.237306517913653 1.5843343881810759 +4.402455641760453 2.952896832083689 2.0104171353263323 2.9649777298698115 1.7356286098606222 +1.9143860835669213 4.023593095238343 1.7701448272293363 3.800180419606961 2.9274218562420864 +4.252428393293998 4.160616510984818 2.6562031629816967 1.6491700182687845 1.011209758795638 +1.7054137250544077 3.8623453539715276 2.6511491289336897 1.5651652563538434 2.4148944124591827 +1.1324075708201677 3.033879673945845 1.2142878818543799 3.462039262867702 2.944143751553664 +2.422934224869923 4.480960902949301 3.665283205016827 4.906379376812152 2.403288063327293 +1.4892845640680883 2.9382335401345627 2.126833752297957 2.473483831918462 1.4898387204476151 +4.1762383096548685 4.779760913765447 3.281772841743736 1.083310849857689 2.2797970662846243 +2.722567468898086 2.8818846096910997 1.6812992483808702 2.6598532225917757 0.9914382642375765 +4.819902714711968 2.523841463700795 3.0173818753028314 1.8186568950803994 2.5901426305522754 +2.1646575379548434 4.176126123759847 1.770065600278734 1.255253723085589 2.0763037206968327 +1.4248501603317223 1.9729748239464544 1.2633785437690004 1.9858512897526808 0.9068668676007315 +2.388902969888373 1.2318666834373921 4.818688965836125 4.094641406973306 1.3649094606088286 +2.3677205792398017 2.2254327948356165 1.440286338422001 3.2855852189865393 1.8507765322165153 +3.010820819468056 3.1136506343326564 4.849323361913095 4.283823392559553 0.5747731606155121 +3.3426458006805944 1.7358060370969337 4.982593404832608 4.580145596918659 1.6564716308854603 +3.5136921007881896 3.31891386547276 3.1045322604167116 3.5817877300849252 0.5154719626524997 +2.9113946909839346 3.7205941582792628 4.465753242765912 4.798074356322328 0.8747806012860707 +1.8831487971040684 4.901056035589036 3.4407000384491475 2.895376202146893 3.0667804268547454 +4.04074571519762 4.058645299325906 4.783995463564384 2.337684104418252 2.446376843619838 +1.5332263065358966 4.224989682593806 3.0048307776035643 3.5832975473204547 2.753218821008125 +3.9490053405179584 1.4630771128161957 3.238894047278745 2.5862761742850298 2.5701652167585003 +2.605235039523821 1.7160892505537633 1.860815251593356 1.463431192644249 0.9739067328805433 +1.8531172948319954 2.5374705177671184 3.863244267244546 1.1265946249507555 2.820920168740764 +3.2581244018070543 4.904346940081672 1.6862332973750873 1.6344424039165983 1.647037019064403 +1.5634582955274543 3.5688046418590007 2.3557440650754837 2.7341557761244286 2.0407374627335755 +2.18222043186987 2.511889653623921 2.3569715499482475 2.170357263863595 0.37882276534390846 +1.6170861769903282 2.022285272741075 3.491880875991581 3.1049133249787375 0.5602947373785522 +2.562222007108918 3.9444584010878656 1.6299798788651354 2.266247581433844 1.5216484607727196 +4.4543636160394975 4.946169046565208 3.5902699313445856 3.5190476453486945 0.496935806233622 +2.934266527807015 3.091882724712018 2.987393811236767 3.1626116848419326 0.2356781041113332 +2.357952636128034 2.5609603310480265 4.367987948350641 1.753226876010733 2.622629899475119 +1.4182782522807873 4.676716564156445 4.800191651213947 2.395454184483342 4.049713880781828 +2.4133357291114748 1.1438463380640864 1.0544908196863543 1.8726912922550687 1.5103163004131077 +1.885333028726702 1.4757516170383154 2.713594930242102 2.0465488444590445 0.7827562924430247 +1.2747861810902132 3.588014099655619 4.131519333116501 2.34880102084707 2.920463659101275 +1.8643724407274465 1.3916334656760392 3.595811937701371 2.8088135713175397 0.9180678445645912 +4.449476123230012 3.9394265801043735 1.6179757271326625 1.9375876978487918 0.6019155657297128 +1.8203503703080655 2.13254723985472 2.0047271077466977 1.3535219308839026 0.7221738486871669 +1.2514160154619796 3.9073449077328255 1.6109299536671968 4.7984262983003525 4.148986771230871 +2.2162164697608002 1.1499899827246591 2.07615312183109 1.2250671133597106 1.364253024725683 +4.845543940602828 1.5345183075057487 1.5009600300288328 1.5624121876877868 3.311595855581845 +1.402201150001814 3.6122162664443054 4.677059160449378 4.248344737917137 2.2512136440132626 +2.7984749683306354 3.4425690250335976 1.640903190121867 4.442318879127127 2.874506395276395 +2.3280928722184715 2.3412009598062036 3.0704533998559134 1.5567985777203912 1.5137115783841806 +3.032865451297137 4.71776611432864 2.402727321745111 4.015407135191491 2.332300672079277 +1.2902357617457958 1.522129327392928 4.671685414817555 4.435816541699425 0.3307699368058669 +2.0640784714618077 4.9020435335600006 4.349138512477378 1.0537822363184781 4.348956044904322 +3.0832755962572236 1.8376208647815657 2.0074106760116286 1.9014009338998963 1.2501575002655823 +2.8869176019543046 2.163891136034309 1.1708898028258106 3.8482513408332713 2.7732710065232418 +1.3827197881593492 1.5892872966064204 1.3694540282112797 2.628861170865535 1.2762352786671378 +2.002714242368459 4.0265810341520485 4.969589673854637 1.4741458143235384 4.039079668193988 +2.397220337108628 2.4831631936705647 2.075754814946568 1.4770955928910685 0.6047966920760408 +2.048170864462777 3.0410848632147096 1.683628413648742 1.72759163598388 0.9938868013187625 +1.9884822922355987 4.276483061912909 1.7418603101621066 3.6807414409775623 2.999034438194431 +3.570935039186312 1.234140288343109 1.3193028402455758 2.1409187254962707 2.477026921626939 +2.6597775164326967 4.53764784225792 2.9121156818762244 3.325697770419121 1.9228746980961695 +4.753878298300874 3.4119043507403135 2.7409732111053993 2.2493952314721732 1.4291756316113002 +3.957713321780794 3.3361162171533607 4.0946682428351995 2.4618781443424242 1.7471080293494317 +3.379315953671527 2.0473830871109984 3.1739807096238715 2.481934246255932 1.5009908289140943 +2.1257929663114727 4.494483569946116 2.6233233765882624 1.3100633921107208 2.708384566965519 +4.6060500817439305 4.890977604536175 2.7007800840196525 1.6532997781561827 1.0855407336513694 +2.285138682518463 1.7643659427568146 4.136893856785671 2.9845203617840803 1.2645825075735604 +2.1534466345514685 4.771863882295637 3.3455275387117696 1.1903461880837773 3.391299977498134 +3.323393331075373 2.6796366032529675 2.744659351830987 1.9108461139802775 1.0534074426506084 +1.816214668576904 3.5049830650871976 1.9079552452504052 2.472300358697499 1.7805684777967852 +3.43896656468579 4.294046263056878 4.807902381489649 1.775817963725956 3.150348743712636 +1.0796708522686247 2.315443308075927 2.8214439864201832 2.7303798390648666 1.2391231744526296 +1.033002539161366 3.5729208248388815 4.10945775469509 2.681575880537566 2.913765869878123 +1.0953282776262587 3.4408823586041555 2.5841564696465893 4.503006716345185 3.0304471973699405 +3.4183131056832363 3.881203773291146 2.935238779898617 1.9671919716551147 1.0730248800046194 +4.341745405211816 2.4774218645076433 2.8661244271328083 3.5878190320319567 1.9991361552341251 +1.1249402319335573 2.671367720979361 4.500170582166701 4.429715439629172 1.5480316230576472 +1.0154180393399175 3.295762049251707 3.0976927820572855 2.7303435981179147 2.309743324805053 +2.228361200085976 1.4053172751040521 3.772357664447121 2.4905566790435585 1.5232908680324955 +4.879808575406344 3.840935213793199 2.742825969369727 2.519657798153161 1.0625732417643228 +3.5517486565400533 1.5460083696950302 2.7310741991139653 1.7515609133700636 2.232138072616022 +1.3997390010528359 2.2604537458991305 4.502253452140987 2.7793304486371273 1.9259526338927924 +3.631461234012689 1.2254628680540312 1.4679721676493962 2.616160935679335 2.6659267776939863 +2.456124658604699 1.5790516198763052 1.4681953816140094 4.5328871002378825 3.187725277602511 +1.1639331156239208 2.8830889010452143 3.6419543242164556 4.222797215223032 1.8146280827156793 +4.17595212753832 3.928333447596818 2.392880152516857 1.8888648897840858 0.5615571170625087 +1.0946924175394162 3.187079796042767 4.998790711822849 1.5913692389724465 3.9985755007705097 +1.4107105234721766 3.0255130069661145 3.9029368935487305 1.3238824900592459 3.042878353936728 +3.8657740885627314 3.625512454283684 3.9177619095343266 2.263921273530792 1.6712015145406653 +3.7942373511889804 2.722219387039228 1.1892189682536682 4.52454276620327 3.5033708557086465 +3.425266700332395 2.202798099050772 2.3283198232428073 2.5095268068347316 1.2358258178327282 +3.7727781310484616 1.1871955677500057 2.5015975015618546 3.757936074288374 2.874651944314915 +2.9772125562799503 4.496227869484137 2.3938882901626592 1.0367215822086115 2.0369852711611935 +2.109053009740477 3.4837462000634543 4.802980845290846 3.8040096891647877 1.699330673615997 +2.985230285514902 4.50149311350232 4.439311339588622 1.483493730879573 3.3220341207595814 +3.2035815920766457 2.0778352911717324 3.1717036518785506 1.6149719451908018 1.9211242387227452 +3.5502468479824225 2.025263714671742 3.7977795068427245 4.935056431262363 1.902359682000082 +3.645812924365871 2.1486567760301716 4.412575858893579 1.1536200973357742 3.586400589489439 +2.815696935748037 2.165123063663626 1.684544624176577 3.800426545210064 2.213640139407321 +2.277154681200362 4.845333837233511 1.601570864554914 4.525929642531331 3.8919684530852585 +1.4969957927185722 1.3101967524894582 3.8746489948920715 1.80867428080836 2.074402420135445 +3.656402107372708 3.045527602391797 3.4138965848589775 2.222651759776511 1.3387426541801934 +2.5182909445989132 3.748763974402696 1.9932540992938739 2.368018852927762 1.2862785458992814 +1.533251448338787 4.424168786998166 2.3827150939430357 1.4592053416440343 3.0348432120214697 +3.5487134671417797 2.3458877304179033 2.4624791871062284 4.280370803377604 2.1797980827212164 +4.160508215575801 4.4678534622356985 2.901423759898412 3.025545996615423 0.3314625624291029 +3.975978292597117 1.3237447258217143 2.2608977236295744 1.0901492654517626 2.8991369138169207 +2.715996866562382 1.3802859590553789 2.8001840200951955 1.7859502588843998 1.6771385604096576 +1.2966235812944622 2.6347131140125977 4.910204240605406 2.054098236032426 3.154017296548589 +2.225576765962849 2.4060647646022906 3.7977166827574855 2.6117154214197895 1.1996561630515126 +1.4148663561486474 2.8679268287324327 3.691492700571876 3.7379778715152177 1.4538038409988623 +4.475228642388368 3.8692106038375242 3.4602803911278377 1.4882609020178266 2.0630362886965226 +4.524910733372247 1.9430667487424467 1.1345973178859383 4.335195694222026 4.112146438002212 +1.929515541610073 1.1810680455196803 2.7214401073815617 2.5864640898072806 0.7605209922968539 +2.3576257377565377 2.3631509296056397 4.923936967263229 1.2193183552033813 3.704622732285327 +2.1157429226275775 4.140634240581367 1.9277679822341032 3.9668904584694693 2.8737093316153057 +2.2706072777945465 4.583826175372289 3.266598624029365 2.862388473252769 2.3482690463619424 +2.9496177494732776 4.799079504856073 3.683423630246777 4.779220827897369 2.1497163261701537 +2.4110540652131833 4.003333426984639 4.541339024068694 2.303532987029049 2.746475819178898 +3.816817475607439 4.726058304416167 1.6168828937428428 4.678298967480901 3.193585330207184 +2.2161068542277462 3.911307729323197 1.8317320533858905 1.2586413871445905 1.7894521280708457 +2.572324640344393 2.310129768836482 2.149569139143335 4.716596959685394 2.5803833013879864 +1.6532913453334541 4.073415360474203 3.903912786137877 4.354639859215596 2.461738236097857 +4.109336667793313 2.859572525094985 1.2082500634665525 3.6208860746986984 2.7171166583473454 +2.2196541579234976 1.3001937974759232 2.379343522339707 1.904854472873542 1.0346725146140145 +2.8625172201376077 1.24206506351753 1.163729219033233 4.7261851149746965 3.9136884396209615 +2.4480184943999035 2.663861232837133 4.4327459008014936 4.705656928847299 0.34794901489313146 +2.491012267659352 4.686580694562408 4.021064309380017 2.693534594182801 2.5657076727377106 +2.5135299635783346 1.944075954478432 4.004911097616608 4.829529098329699 1.0021340806399146 +3.3975973192208566 1.0479473254821592 1.6637996180185297 2.5934887920822978 2.5268907877958697 +1.67871332428913 1.4083606424396926 4.424852834485364 1.2540834949937163 3.1822741517417197 +2.443292734022998 2.06115244029623 2.128044841114915 4.947447165281012 2.8451820099253355 +3.86540118055112 2.4980870746516257 4.3301473303989155 3.865727416345337 1.4440338364322587 +3.276819686539204 2.143693791428722 1.309278326894979 4.969413240276439 3.831522135956393 +2.2415803836777686 4.932954357150267 1.1636842452425618 2.795336899168789 3.1473455876578993 +4.0646240565958855 2.617529731454183 4.307308580444655 4.801808399367822 1.5292521233506147 +1.9579404404446676 2.0813503032530454 1.4440841545875078 3.345713590566044 1.9056296875359673 +3.9521524294127945 2.6986149649937334 2.511287602045462 3.0962479773594462 1.3833057562916615 +2.974659228775872 2.903487025557854 1.6585665646323124 4.249605135124197 2.592015886580855 +2.6570698308375116 4.61420854488787 4.712268644038037 4.339256751717363 1.9923678921944459 +4.49208434735063 2.254184873765562 2.6623181931676836 2.6825657186314014 2.2379910670419862 +2.767133016089418 3.9852522707468365 4.510977015649797 1.7048849623156932 3.0590794579990805 +3.4033614137669486 1.8657220343026815 3.6995452964913467 1.9326267699446862 2.3422928810746697 +3.1895850205346603 2.0653273057821675 3.0510792847394796 2.4296681478399726 1.2845649887192299 +1.176929698928543 1.6746100232901306 3.747941090416016 3.097262757920827 0.8191874008036102 +4.66402925057143 4.412843077681126 3.4639593535969766 4.940015360893552 1.4972761368991314 +1.3957055995738252 1.1086892549882927 4.485975972099721 4.506397817962335 0.28774195705123967 +3.056121284878889 2.3366026938854674 2.0229587774929976 1.3220289839041874 1.004494688052461 +1.8432756042962382 4.69032570072901 3.510401869858593 1.1225628914414503 3.7158403139056015 +4.859704184279664 2.0932554408371704 1.6352430282379826 4.180227880431051 3.7590140393441906 +1.6611993356095964 3.9830922352785927 3.1602430834477997 2.453129958260449 2.427178528527624 +2.7677821803716283 2.2408497951192685 4.298994546043028 3.398896416496497 1.0429929920382521 +4.035463909692458 4.130300314625664 2.242646208466038 3.451291012901235 1.212359767968589 +2.5280724828486396 3.3393929458084144 4.595959266545615 3.1265148865309595 1.6785433207319724 +2.887911512017256 4.56812876851038 4.436976580351388 4.519260454205164 1.682230859577147 +2.1057441027867263 3.394421403441444 3.5955570753542934 1.8520928318983785 2.168030616350248 +1.6152561622524138 2.2776055146383682 4.310227278360847 3.174399585762843 1.3148426567002602 +2.7274663051487296 1.1953120650262008 2.02080667582808 1.6706900852941033 1.5716482566059684 +2.7688118665534045 4.4106664285412185 1.0214227254183288 1.8372645924786064 1.833380580994736 +2.6653951762853807 4.658500730214035 4.180218593761184 4.6561686307762535 2.049145721230165 +1.58705043998381 3.669095496555945 4.186396113354343 2.7257092771123883 2.5433280659732036 +1.8620078566993374 2.953920241313641 2.796596554809977 3.745516184591341 1.4466240421956549 +1.6900203755613377 1.1354464412295284 4.516791123670487 3.076221255314459 1.5436300704040349 +2.9795583642352432 3.9529637916322327 2.8163564334688838 1.4040916229400184 1.7152288538687914 +4.616024525253524 3.45284451627562 3.751624579689566 1.1597258409698248 2.840937663001922 +3.257445231740504 3.8593412257469653 3.9389954442618107 3.5297597611377425 0.727841076020754 +2.7252917825146676 4.210599730698119 4.254573003687806 3.337018004850741 1.7458656525711882 +1.6177153481966897 3.7421929228828836 2.7439311113549865 4.932324018147616 3.0499948327570703 +3.074923763818338 2.017443404478879 3.8925850374806394 1.8187633662816172 2.327874789228024 +4.570235488633461 2.398512675810701 1.5157650057098695 2.337059162999764 2.321832050027159 +4.281905153986178 2.0792945595898176 1.1286114681802282 2.4926735145097094 2.5907834137155614 +1.435078362753663 4.520325814121799 2.8595304001646995 1.3920249868487442 3.4164782999874608 +4.2794975594037155 3.136327250305057 1.3836430817083665 4.844894480183474 3.645147404296651 +2.747768586351201 1.1161723411618616 3.7987781141123578 2.3737108515207526 2.1663155380106294 +2.4849896813513155 4.160791962800768 3.226942206258212 4.302978487938674 1.9915238803498951 +2.1604754726987068 1.0496653017025688 1.2896652430466826 1.3248923540723387 1.1113686091210617 +2.552296522956265 3.279254029830228 2.283115486133888 2.512487305737506 0.7622851490280278 +1.465430417880448 1.38218201502916 4.816237655707027 4.042201863392479 0.7784996495575971 +3.496550483590003 4.286463513441963 2.8347024214082857 1.0351090598828843 1.96532411107588 +3.8132520931184 3.0409151652314543 4.516685509176518 3.3276555044375073 1.417849315811626 +4.549747116664209 2.314778038565825 1.1814703002456337 3.131137797451047 2.9658540304126833 +4.9701766742357805 1.7304724336238109 2.0708167206274606 2.5251476695502477 3.2714064525503797 +3.122683929144137 2.1453432851255005 3.0124195233297395 3.630205020511508 1.1562238775336238 +4.295805552770816 3.4646993623835547 2.89407973267639 1.5980771049550366 1.5395974508814567 +1.0650126546024814 1.2607608598694893 1.5861388398421705 2.8696115628936623 1.2983141340532598 +1.1002680859938434 4.9810343595767215 4.224556407519868 4.939962667399619 3.94615673622494 +4.207977469723982 4.822928185467807 3.8343229388011184 2.0162538735659314 1.9192549358433313 +2.887927185836287 1.070657688837477 3.5206812521272424 3.3995016084315206 1.8213052821447948 +4.9233840331745675 2.908480237447103 2.8984030206552855 4.651190613165295 2.670599492715817 +3.901224315288353 1.1111516561699948 2.9022693607267094 2.5770478662152536 2.8089632364365418 +3.082696387470212 3.1754440138250066 3.6929485813629586 3.837446178086979 0.17170229367561235 +2.8586540973162826 3.136029997294854 1.8910219315825292 3.5916745101645313 1.7231240764746267 +1.5760532647276935 2.556541940901398 4.811436017351802 1.0554925738793681 3.8818126171504503 +2.756040154412122 4.845996361501198 1.5478896620258094 2.4796363717836787 2.2882458081890533 +3.643730271701096 1.0397961504395954 1.6099713947072853 1.3459178850068518 2.6172881316077947 +1.0716126359440614 4.667174509124505 3.6680505625074966 3.4547655799898664 3.6018822395570362 +2.0205239969855615 2.848085266966016 3.5292503753141777 2.557958611091446 1.2760350100285531 +3.6192303228479776 4.795452018205506 1.1384704317062186 2.301364338290007 1.6540313523628996 +3.3899095223122035 4.372960698464812 1.389974420842273 2.030414804497223 1.1732661675643454 +2.89230313688512 2.4684971694565885 1.8368376741793924 3.732124318450921 1.942092418496624 +2.86637275497221 2.902772686408833 3.0557403841161253 2.471038120838716 0.5858341844671713 +3.5536879804773545 2.741292105519817 4.1133724666356 1.2777660717014974 2.949686540064758 +3.6357653596822908 1.5568923734413125 4.566745071971523 3.3544282478388463 2.406537964586809 +3.186910240084616 2.7348038763862847 4.684000419734028 3.0901713588545605 1.6567109703869451 +1.8555003812403195 4.741610211877852 1.2055963291795408 4.3607366488498105 4.276042608687572 +3.8381068159379503 1.875295113244801 2.9792853178170593 3.3248646822407055 1.9930014744963516 +4.7586877864845505 4.866511199624323 1.884084443930372 2.846088356555425 0.968027590684801 +4.354576626429035 2.9067559736404163 3.3192626753128422 3.2759658796400473 1.448467899249684 +3.9057961095701685 2.2508287279386328 3.2812573737866617 2.1987980151493858 1.977532628647569 +2.7490510610083567 4.2023164533489075 2.796011983814848 2.7742475318472937 1.45342835803633 +3.8170024701775143 4.202551514731791 2.5420273584190385 1.731003307525849 0.8980022699770388 +3.07499257858423 4.7551733641981535 3.3915552001989098 1.7000911937588539 2.3841262461179498 +1.9557393184295946 3.332578518521273 2.1121235184520426 4.998422802229909 3.1978758166079113 +2.926934261837591 2.3614076394995998 4.5683722136098535 2.902118226882509 1.7596086806042377 +1.2447353681909599 4.976279829915441 2.898030565713522 4.746028313745914 4.164074896847971 +1.5504036131504093 1.6757337811893063 1.7923668597291726 4.548561056811053 2.759042243795569 +2.124496013975007 3.546544868121736 1.5506936337201584 2.5798527337948474 1.755389243685448 +4.5581878794209185 3.2649629674700464 2.527617110718381 3.9432188295265846 1.9173833469557102 +2.3583977046031896 1.5340418863012601 4.919231276355719 3.43530620749456 1.6975264725955936 +4.212246988853583 4.047393392701302 2.8834536286958814 4.709658784827035 1.8336308190157442 +1.2678716774526553 3.0473819983211907 3.4139229398445003 2.283561060656054 2.108168627031546 +1.7543266661462438 1.3816046094434151 2.7173923663231627 2.6534289936329967 0.3781706553907742 +3.2063884369164275 3.2058575880141795 3.292943001848116 2.8869615326967635 0.4059818162120659 +4.8263033245555595 1.2888765983852841 1.3832204527609746 4.66733039894473 4.826879528395837 +3.7818128385302208 4.693431865835731 4.953436196681418 3.6406975334629275 1.5982277837824348 +1.0961519810354088 4.108696103641453 1.3721115440016307 1.8598934615003846 3.0517787091607707 +3.448942921137351 3.7855673079454277 1.138099695978326 2.6018061902249983 1.501916335583909 +1.7899549991904191 1.1428930750563624 1.9600340099438585 4.076639269281831 2.2133022743225186 +3.3240801443574295 2.9026105979313184 3.1084252544961553 1.4578596703315845 1.7035267318692604 +4.886237464513691 2.17370659120043 1.1812423819349478 1.8255534168333654 2.7880029498494925 +3.8174975742789727 1.2643350155423185 4.346404459750258 2.3434345734353172 3.245077413070324 +1.2147408819164611 1.765679847511994 3.3307953092051266 3.73578121191846 0.683774323302659 +1.544741153030424 2.265470719845933 3.84061400510631 4.697890199742236 1.119988206353766 +4.346027575176164 1.710140296121323 1.1848005099766192 2.3657620904447807 2.8883510871126785 +3.908057697872703 4.886057168092622 4.250302587062568 2.407241107380725 2.0864703644282767 +2.194950131280305 2.096496197707436 2.2781816326683284 1.2578720117325504 1.0250487303587483 +3.3840446280388594 3.158807828075468 4.303853176322672 2.8972996310782317 1.424473408561021 +1.867573277055918 4.137097293187578 1.802512996483213 2.063380575534466 2.284467367593252 +3.9544257690617504 4.269734127205409 3.228551170417539 1.4441217879845873 1.8120727307713935 +1.2410529498111824 4.598153137974756 1.8368316524948645 3.400574113583547 3.7034324832484247 +2.2252128856971822 4.812363688395618 2.975293680517049 4.1159800842498 2.8274572936764084 +3.6161164127920506 2.5331822925405905 2.233469063186844 2.2530227790106467 1.083110639134951 +4.290044990293478 3.825574311189578 3.331575963280405 2.0855381528069996 1.3297906740824275 +1.0398820539655764 2.5453675965791245 3.4266131101373865 4.364250813335241 1.7735983709612944 +4.952178270713572 2.7569726665262433 4.579833455925647 4.67019866017479 2.1970647497956097 +1.4784031308026027 4.3463292503069315 3.915752186027566 3.4348503817433187 2.9079660885744527 +3.141679301119711 3.743470628418349 3.164708573113884 4.041949215452462 1.0638157482301422 +2.9096860751449425 1.3486659199673734 3.99979067832515 2.663885755032978 2.0546108850453573 +2.386924206405006 4.58390677121988 4.867406730308486 4.223994571824944 2.2892600542063786 +4.582773206504482 1.5472393225686951 4.555454487109215 4.769653152458472 3.043081830769539 +3.065256502986809 1.6514205535812936 4.9177204881134315 1.5953320502490902 3.610705889973047 +2.1152162526692178 4.80592801472004 2.0970816485404957 3.1832078858501474 2.90165469858339 +4.498006513276868 4.721886547148689 4.577342894941889 4.883260675405371 0.37908832476106435 +4.037006570929802 2.241782145227713 3.4207261296220905 2.5143093427717833 2.011074869347591 +1.7394491208155323 4.631869146206573 2.916359911568771 4.729034133932025 3.413485233555777 +3.9509996038476056 4.636646645666483 1.1982792905044128 2.7852584655140453 1.7287610499630164 +4.973509201604578 3.43129592696983 4.662514276705558 1.8786730515572607 3.1824823253703713 +2.937779155689836 1.449428317512103 1.827768117546138 1.3843384420020501 1.553002928090445 +4.056438340637454 3.400727765970268 1.2029320991341903 2.9077407713319467 1.8265620620529293 +1.0855336982211536 4.8249022941511335 3.8798399438067284 2.3699434838270066 4.032699445295501 +4.968905410952983 4.972885413775263 3.848579701390931 3.392766617933588 0.4558304591329504 +1.3604996179453868 4.777031627551749 4.548414780439005 2.6858823878201625 3.8912360357885465 +2.870160330194195 2.798693789024925 1.394981140884643 1.8620885537447838 0.4725429098564413 +3.6361766443896255 4.361643261531634 3.8808249827400525 1.4353548035685733 2.550808932437797 +4.441827377601825 4.3694808312364355 2.537446763399883 3.545660233809985 1.0108058293695092 +3.4664255319610877 2.9764301080897355 3.3712874273504414 2.6788114143309727 0.84830333255399 +2.8255942305031247 1.3346427623301813 3.750167783140851 4.470576925040078 1.655876085997692 +4.594693121946739 2.7207874678484045 4.865747357763814 3.667581360739219 2.224213154553234 +3.4420283242968033 4.90222691368132 3.5291387730695876 1.1134182071500582 2.8227443690577267 +2.5031121358417083 1.2779683477651735 4.03868034294492 1.9129715993382441 2.4534903635654235 +1.9905986615013869 3.1362419551943796 4.978043079859695 2.1259672815050297 3.07357038571498 +4.952334458232223 3.9507618990267375 1.1258230066405055 3.240399903719481 2.3397826918356275 +4.007686431609018 2.4951483643954613 1.2581613540059733 2.5658935451830884 1.9994836554998447 +2.5302009176974787 1.079312447772116 3.0762618990031547 4.898223898271502 2.329081982013573 +3.182008504118798 3.1153542887808863 1.0952944529416313 3.905337243276489 2.810833198170113 +3.9053031422004416 4.706935837021827 4.238651873819961 2.7559940512586967 1.685493754425897 +3.8149235442051252 3.5058391822056993 3.5283556681514643 1.4024017499655472 2.14830472817118 +4.81879907633025 4.9338550052929415 4.23016609683133 4.927555960697741 0.7068171538757946 +1.2223055202156061 2.400276468315949 2.8062348201341805 4.014141288101475 1.687202889378051 +1.6214562726649162 3.6618684980252145 1.3804954542854904 1.6915442610037212 2.063984837531662 +1.1514002701171955 4.021665020680393 2.2799822190058876 4.658685146273506 3.727820724567794 +2.7983457882176546 4.414213082487288 4.6898129694869635 4.730268584983394 1.616373647865945 +4.400048425875237 4.839019077727754 3.630176642558503 2.144943155330575 1.548745861906031 +4.604081426004575 2.703040579078661 2.039012223963641 1.1218681097362144 2.1107130614896015 +3.966425460596856 4.403976627665548 4.908872494577128 2.0497697472894183 2.8923899362553636 +2.5313147872616124 2.1213286845808543 3.166050205192743 3.9291848167264516 0.8662926986371646 +1.5956992134700485 3.9835658565022976 3.1142534449815473 2.2843230062182145 2.52798173215156 +2.3460355616082667 2.8383085144860147 3.0555112826823794 4.808494640208741 1.8207919463517441 +2.571321540974993 4.902670604629632 2.0692508411557586 3.5552970261086374 2.764691975684881 +3.7605054717873574 2.3329433910310478 3.934123362067241 1.3123195896556648 2.9852618838964293 +1.9824183440137522 1.8530473619108103 4.787738344469801 1.111336735672205 3.6786771590042844 +2.7687676825550085 4.189677078474417 1.750678985652752 1.0213153158776573 1.5971708969925076 +2.1583015027868395 4.81176230956018 3.894927948907397 1.7224818403538178 3.4293405120593987 +1.281547654590466 3.4470794706810093 1.323543676610016 4.572157512804326 3.9042310258504833 +1.2427827967768192 3.053505317754948 3.660247431175091 2.288499794870388 2.271653060149135 +3.7672795033026407 3.9826386102837525 2.80664924865136 1.5133262679280675 1.3111307629015057 +3.2122380444126355 2.4079821923771276 1.5235190257922935 4.609432277907013 3.1889948377365878 +3.5377996190746397 3.816559580644182 1.6612109857787822 3.6786683530915365 2.0366249888231174 +1.7409839142138224 2.454505948752044 2.438758516283968 4.758043787873932 2.4265609130589936 +1.6754697665102811 4.8825770863418185 1.143720740440803 3.8922141521535587 4.223713223591944 +3.354576542675298 3.3232819515911607 1.258533543054579 1.3453368659027203 0.09227225091327296 +3.7446640694450033 2.517975651790391 4.132270297386665 4.21930141348733 1.2297718850167718 +3.1859558691951695 1.828323347771112 1.209210605001057 2.6877252794933035 2.007279678051157 +4.206514715952047 1.4157586715755 4.955363744707071 3.5666883344881035 3.1171683775778063 +2.9209570008830754 3.499255008962562 2.5507337788510345 4.136757645027803 1.6881647698702298 +1.7181005483786693 4.624319020362653 2.086982511887574 1.0758609138031545 3.0770883466377286 +4.741372660515764 1.629452800071388 4.436515119848113 4.0180298654715125 3.1399323441690257 +1.6670178399529605 2.8260257268496884 3.699444481170529 2.5017352706550113 1.6666753237636067 +2.988428397762735 2.593395908425554 2.800917240614271 1.0289369539729951 1.8154792215492932 +2.9866511729010328 1.7372466509968443 4.279409231800833 2.3966310897286762 2.259616160240344 +2.3736633246449594 3.6123096868498163 2.7844518859264467 4.692122839211955 2.2745226480764194 +3.9037562467363163 2.6639881397314706 2.120933440212689 3.761272727551052 2.056146380181165 +3.461230808715086 3.7601811008690937 2.4242795656754197 3.0507330167324986 0.6941290971572152 +4.901858376836229 2.1686294959720067 2.202741058360223 3.365732837996902 2.9703686630943267 +4.401786300146853 4.5898084448056125 1.660387944849794 3.660481004288073 2.008911290549001 +3.3650722707902663 1.2352829756194903 2.839353870868378 4.192335228833206 2.5232045095125324 +1.7330073629008087 2.370499287600301 2.5788064563349358 2.868063233823176 0.7000467394252649 +2.013453999646998 4.367302850916223 2.8413455373864553 2.9241050102630286 2.3553032808902254 +3.941817212798411 2.4121542139900694 2.8096119778788498 3.967393098641886 1.9184175805904824 +1.34663175855608 1.5092152398319612 1.9771337105576858 4.676753707433177 2.7045113266381064 +2.809866915775349 1.926338411063706 4.6843883062961655 1.4298935119179585 3.372292838006931 +4.470268332074184 2.722003568279546 4.31996326548625 4.309728409323289 1.748294722467181 +3.9733199459613635 2.9096271719586118 4.092387877765887 1.0900102868676527 3.1852336673772546 +2.988929069856259 1.7184925217788707 1.8400728271856153 4.511785711012074 2.958387864411136 +1.0229395760361548 3.2375665606499253 2.5970991722767485 4.094937386159872 2.67359159109017 +4.419666536806554 1.6614736789037923 3.3690404460639636 3.6945369188293937 2.7773324963296244 +3.8344019067278294 3.454093683505778 4.901027604059936 4.475235598894463 0.5709055756542826 +4.29314828095541 3.572560806826467 1.8004849204546614 3.316966329968168 1.6789765255272635 +1.5846832549189207 2.0656502399754832 3.0707405721056826 2.329193516899845 0.8838672274718918 +1.3701791046254144 3.088850845809479 2.474153639997232 1.5584076696369276 1.947414500350606 +1.7562688715530475 1.7314588681465497 4.424571259294571 4.057924457963352 0.3674852557524512 +3.263364186089832 3.8055482473465636 2.9776127617921944 3.8261967608685787 1.00700464734246 +1.8353343925085226 2.0596550104492097 1.0641887615113839 1.3251967274096574 0.34415824542737034 +3.939634915671791 4.872577987537648 2.924312505963116 3.736959990706355 1.2372464224244148 +2.735907466518988 2.8042626435468945 1.4735522121374003 3.120794904972794 1.648660340799801 +3.0825020209900083 4.2633077300243 2.611278919779761 3.633595219390255 1.561868348785284 +1.415396724293149 1.0848302329818136 1.375832275755859 1.9006576950756617 0.620254726658406 +3.725962752280899 2.1719705047505045 4.006894878219759 4.0240776602856085 1.5540872412397218 +2.9193488845904274 4.267367220706564 3.853677495678084 3.3676625026330083 1.4329563873230489 +1.4122655428813689 2.3337237076669872 4.010060064880919 3.671969906510333 0.9815243780146918 +2.7824951965293208 2.3442243420248228 4.544935857692973 2.9880741416240815 1.6173743366546525 +1.3602602121406941 3.7874170115866024 3.5629388190704674 3.1803665325578465 2.457122643154794 +2.8825858915788465 4.835542914623151 3.1805376106771392 2.563298809350615 2.0481759865111875 +2.854897921652813 1.3266011327210325 1.0079515437419557 3.123348643563214 2.609711854782321 +2.5428373277497243 2.6269204605644094 3.058948051592943 2.166785532602033 0.8961160268158009 +2.178641172293368 4.761109873869034 2.8713721909852707 4.078609822736846 2.8507134710691395 +4.053033469188275 2.729339256897049 2.329876006219158 3.6847372332709005 1.8941529273586761 +4.44967346537087 3.7152224103967697 3.6761912612707164 2.757447683771624 1.1762262169108453 +2.0984943858145755 1.4935932027020127 3.503332761755934 1.9113222584357188 1.7030569233037585 +4.26882407580933 2.447939543394032 2.522232046991193 4.968542205238549 3.049598968837293 +2.4569480250317532 1.1000865246655231 2.9080117082648944 3.548253963003318 1.5003277228421255 +4.654537560128489 2.0385856874116386 4.286441683816027 4.546865639854821 2.6288828116235403 +1.0634933603261891 2.7906722285104224 2.4911365059485475 2.4272526585094023 1.728359912942266 +2.4382942225078335 3.9817803613840264 2.2011748090077607 1.31590115166106 1.779342268731607 +2.76269900047161 2.39978202246871 3.830598965302526 4.422892121676377 0.6946365351822893 +1.6949483497064919 4.222848152389897 2.2846000166202867 4.363079355047779 3.2726676844245555 +1.0070326306611057 1.9164908031795678 1.4080317346116953 2.292791858873535 1.2688241190348042 +4.91498831790018 2.8703511340287715 1.6913367520402094 3.421393905513488 2.678364980347837 +1.7993688411702382 4.985389619633757 2.0791525761728336 1.154290047619662 3.3175441364845555 +1.2892956603891546 1.0063705563791165 4.850294092863843 1.44808220485594 3.413955527739251 +4.714922049970539 1.3024700773318183 3.4693405039927723 3.027357912601849 3.440955837650134 +1.1453797721117498 1.2272283193339883 3.268052621280819 2.6208151695437967 0.6523921394479133 +4.368442412179033 1.493293850790237 3.1565352929276993 3.375192751679088 2.883451115299803 +1.808442420093757 2.973371012185702 2.56006878657371 4.883779621948181 2.5993635126911436 +4.989162452509865 2.5488694161006316 1.9736441844401686 3.875807224095616 3.0940676031687877 +1.3616315132175738 2.9944594193664664 1.807956447928066 4.331961109732253 3.006114852081977 +2.9752931949930885 4.3863090191065215 2.1659528254872518 2.5614153110119795 1.4653860356083326 +4.855357333816659 2.8682441927909674 4.2010621887660315 3.890347268646144 2.0112589084506496 +4.673899041826292 3.6712855683614523 1.8504391910525455 3.8539528374037553 2.2403795902232173 +1.2227869697400462 1.4636795573421804 1.0960142040503915 3.9196777041886826 2.8339203942197946 +1.336740846176967 3.290028012724941 3.296857775946727 4.995267566859086 2.588421637382128 +1.0587329074988805 1.9919393958158436 1.53216616064168 2.886580397868909 1.6447833522505917 +3.6535365186789512 3.12070415253018 4.323244168618231 4.8864574517565185 0.7753189877199621 +2.7868016429536895 1.6290248342276423 3.281826398362887 3.010014822258448 1.1892555115399923 +3.93795776373559 2.05548957688854 2.5963720958141296 1.9682515320096226 1.9844953809886559 +1.4943108696887646 3.042604800847295 3.996494458446621 4.205825926090119 1.562380798847745 +4.81799350642208 2.2382950892670945 1.535766633807362 1.361122447203213 2.585603317484444 +2.6049626878643553 4.586420280431614 3.0424570583545982 3.6659128751667356 2.0772268404436063 +3.161768038089345 2.923650522180037 2.401111746740981 4.574793047961046 2.186684785390107 +1.3880000848046516 2.249437844415937 2.508314823183039 3.1256579984159325 1.0598054584171295 +4.464340106486523 2.1755259289208806 3.6199131137616685 3.502196157390966 2.291839353279952 +2.900544907959902 4.293956689891877 4.351976201759598 2.5185864389102055 2.302805770478221 +1.8080909063631543 3.5572296295486736 3.21041629113908 1.2360217166381964 2.6377490799478243 +1.1450538501087397 3.5357412247722286 2.311686824219092 1.9917695315964425 2.4119977606735894 +3.5634414667519856 3.2487938980259052 2.5373278086986026 1.7635165821974224 0.8353364033516643 +1.8882872536829365 3.83875517503781 1.44813657585091 3.265382737568178 2.6658410913838324 +1.5133259011517866 4.135897236641995 2.310664670348542 2.7218157847495803 2.6546046124815104 +4.55864982916788 3.0451725479911556 2.1437032973245933 1.9641184277176542 1.5240945528509153 +2.1945797181754263 3.368946813760385 4.235946438351524 3.2076057558538342 1.560968492466285 +2.0029190396028174 4.408981821524061 3.9244287488984333 4.693176842087022 2.5258883073738008 +3.5001521950782326 4.7487551777720505 4.531345422898049 3.830663578478852 1.4317696935927182 +1.1344917492184248 1.656557575028914 4.784103033505408 3.5069935610803142 1.3796961009719098 +2.561605339197905 2.6012288528828855 2.567792275112987 4.144319454310898 1.5770250377170507 +2.2717048190408997 2.2513296223087065 2.778969071045783 2.708034149271519 0.0738031961977021 +3.7726030180995074 3.4308476445593095 4.273156352750114 2.6955539849518693 1.6141951450262226 +1.5038058657528324 1.4126078232090937 3.2648605285927967 1.3858374728408926 1.8812348941615538 +4.199458442715323 4.445879698843143 4.609409969991397 3.444062589551516 1.1911162632462482 +1.0505684103169308 3.28116595973905 1.9160073276769958 3.5395707188778576 2.7588989674751785 +4.863679172441317 2.147891799610741 4.649846279155534 1.208679980922609 4.383734315229437 +2.068293802046199 1.8152514072658072 3.0131180154060773 1.626265454091346 1.409748374846173 +2.729085662656515 2.08615735366245 2.6506801196361542 2.929848694133741 0.700922180768295 +2.83506797934107 1.8921941148176042 2.4046736782634617 3.0886592749524358 1.1648379376030757 +1.4018593508309607 4.545718647862472 4.393321411131934 3.0966936408812473 3.4007491607169054 +4.748088712648977 2.25125820520351 3.29755374258382 1.0568908490051716 3.35480741408067 +1.9710524780131 4.969736786285829 4.4934748569715985 2.20870698583481 3.769916684180173 +3.530398670068883 4.759857214182909 4.723913598715874 2.704173802301658 2.364512033573591 +4.698420145787358 3.3695567778832767 1.5211443896051726 3.6232317539957224 2.486895481938834 +3.347967493183421 2.72302927096287 1.545247560792046 3.1614085458776406 1.7327793025382727 +3.029606494318222 3.7864678249076045 3.529258048469801 2.0924562597949596 1.6239576514431506 +4.083048226530614 2.3631798108886852 2.5311974126277668 3.121734398288118 1.8184282494933615 +4.824388534514629 1.4386654558509617 4.426457684852 1.5698083214193104 4.429849472724347 +1.2820410044251473 3.2325686776711264 1.718028781320029 2.498797693893725 2.1009898378954346 +4.905741662213865 2.956824943365033 4.690969791344173 3.705269364180016 2.1840058857796376 +1.1591759807110864 4.127272430863523 4.394628274526605 2.0034928276297377 3.811446610253668 +1.6356989463102525 1.6032860421526625 3.965101019338049 2.6667057903179088 1.2987997409524656 +2.9140401455537788 2.4706317670048628 1.9114032937192822 1.4352746200873487 0.6506223974179516 +3.7955553600752374 3.285735626043009 1.2349994109274074 1.5107956503963407 0.579637582385664 +1.3572084709035157 1.2902010910752248 4.199018388913195 3.1596829854811355 1.0414931923823285 +1.6779806364258976 3.5508499339182746 1.4516151009841334 2.0192215391249495 1.95699168984145 +3.3416649725709786 3.0937671985588766 4.8764046898067 4.432033793724567 0.5088406426819629 +4.784752203966223 4.569740823471253 2.0222288666251793 4.647985940853264 2.6345455218312672 +2.68755694127746 4.408225119692182 3.9268684557245153 3.806955742133873 1.7248414533196117 +2.011749770539456 4.382088766103804 1.631699386688251 4.813206376129603 3.967429101793399 +4.581365080223106 1.9310653977730916 4.44485779125992 1.4106069341565646 4.028742566934141 +4.514724753355297 4.969111860249671 2.4725167045331955 1.8524445608060334 0.7687373454816915 +2.752600710877447 4.949428040097269 1.201788104086321 3.568489399616414 3.2291369337132356 +3.44403389045461 3.9673793983146286 1.465350173031347 3.6197779085203172 2.2170812768235164 +2.4946205242202155 4.802608767043447 1.7341660246983022 3.661737407432563 3.0070485803435796 +1.5700717475166104 4.8578474799527545 3.1452367889080337 3.6002456971463124 3.319111684377646 +1.6979690706628188 1.2244565956145128 4.243728985623548 4.027134801917077 0.5206986695218696 +3.5425627171851013 1.8518969544849049 3.5865271090317568 3.623279642158728 1.6910651879386216 +3.30661111519878 4.013473456246035 2.7598299638206845 3.1642759188408274 0.8143898941679969 +3.104178299922422 2.9694070481890433 4.023890483419617 2.41369881310285 1.6158219287567803 +1.9181913487832696 2.507743408516567 2.756200865873114 3.978396177990159 1.3569572624429462 +3.3128766967395857 1.606409204203635 3.0239077893671595 2.416065955643487 1.8114919259843505 +3.658045201543239 4.7620464180782935 3.5129503741632617 1.335689719109744 2.441164198933565 +4.679122732158758 3.645131600392055 3.314399050168218 1.3038758099051533 2.260827583034602 +1.52877070386092 3.79386600984636 1.6536794482633157 4.7748212659475495 3.85644693873707 +1.3570875893952143 4.809772946256536 3.7799232567439356 2.0530002004582726 3.8604791691985083 +1.917565971447329 2.6810569035492953 1.5695887934874442 3.5779167597324966 2.1485575680916527 +4.735794477245195 3.27101441638722 2.195916623086611 1.8365970430921261 1.5082079389973075 +3.2164226778717158 1.3992244665624658 3.4238485863011507 1.4079451568374797 2.7140515794857194 +1.7512326434880268 3.8448584393341405 1.0009677940487323 4.804321101967771 4.341516481356598 +4.160654732244519 2.037639050547591 1.6629089886491517 3.4614742103741185 2.782450797683519 +2.1096393987460202 4.371139388825352 2.4287912434092385 2.3300567159421854 2.2636542828009225 +3.924095882423397 1.3454156642676485 2.0622349984477713 2.5942415167540265 2.632987391353806 +4.894378952707071 3.5474036018810637 3.777623358041295 3.615790284716643 1.3566622790343026 +2.2825331763049737 1.2615274660035305 1.211049498602891 2.49947243238657 1.6439240605234466 +2.61284888673762 2.5124834938537277 2.325269721344392 1.1934519964672337 1.1362590261180963 +4.971614940901255 4.799612036289151 2.0295143782694174 1.1687602471658405 0.877771424350824 +1.4314058941883552 4.352509252265541 4.031565677899472 1.5874418076038692 3.8087512811837123 +1.028672380966476 3.2416200930492387 4.386073987094569 4.7502869797978935 2.2427190373442336 +2.109717443506395 3.092283214443207 1.858089783770938 2.047606520737728 1.0006758155402733 +2.2693165713362458 4.476126862456531 2.8828728478304697 4.298339330592739 2.6217469414147865 +4.470053727715646 3.042485171842382 1.426756136751706 2.4039452893916597 1.7299857287721383 +4.6834527177817264 1.2060795545241643 4.6020126239844155 2.624180394066644 4.000493025396421 +3.6186216695776996 2.844276365260002 3.982961185203648 4.182154725618232 0.799555324453389 +1.2975600272733727 2.3373141918049267 3.552556483199307 1.7594599272883782 2.0727479300388514 +2.181730704339203 1.5058475114393017 2.3931241401807597 3.7113524456940064 1.481399323579193 +3.9805662754809656 4.358559537770172 1.3574351294075013 1.0823866803288937 0.46747251863246914 +4.613939937617192 4.98508732381104 1.6877855331106018 4.433858097044011 2.7710404018466304 +3.8714381621124234 2.2185188526693764 4.0481621040889575 2.723649199522964 2.118130467627413 +4.811315460425904 4.0917418373170165 3.7338007072583523 2.148017374097552 1.7414060350201586 +2.948293641672032 3.026076050315533 2.9740173785179556 2.5812260142600705 0.400418729494457 +3.4654335616874343 4.0748216491290385 2.1132255388613834 3.6494150973599626 1.6526440030314442 +3.3696804029898586 4.121804011727441 1.0600978578747773 3.2443501554934335 2.310118616537433 +3.1344544364332445 2.683641480925064 2.508761496619559 1.0339647834968755 1.5421600649386211 +2.166991540992939 3.001501605179497 2.4409298964809105 3.906361706880088 1.6863859102110836 +1.9895695331833396 3.9242952274240785 2.5080205568060725 3.0255979674720224 2.0027605668144606 +1.1723083382944703 4.412528300229673 1.5575710474003137 2.1475119713411908 3.2934868597678637 +1.4394424633503453 1.3919934621250283 1.1179326435176549 1.2727972302062427 0.16197051561166084 +1.3256369381740547 3.207887202317617 4.925232984424603 1.552151842627557 3.86271179950244 +3.604871418812193 3.1244116721163557 1.168301599755786 3.3701105576288013 2.253620255314742 +4.640459107940412 4.606414956494715 3.5138709782975117 2.591717606414292 0.9227815806155045 +1.498107387254246 1.5137970895231336 4.290355894504751 3.587055559636345 0.7034753213747432 +1.2673452540413987 4.810594008105699 2.035970804109045 3.5116188308654355 3.8382481462313307 +3.4524323957567233 1.9608524026727903 4.65840236387295 1.2777680660750033 3.6950641579296133 +3.8539378612506447 3.5009771280285737 4.365429013520738 3.976960655947956 0.5248704068929366 +4.166828499973991 2.6570657134809577 4.993317644597891 1.862541041724585 3.4757942701745344 +1.0648512215892816 3.268546097178611 2.008243812440958 2.925583236753095 2.3870028747565417 +3.852057261083333 4.024554035311493 3.650142576637457 4.652122603180455 1.016719779836228 +4.1347913421719 4.093541555009358 2.6939930111127306 1.4788336919420497 1.215859250040196 +1.1447806505224243 3.5437926156025847 3.606804348443511 1.7934888714299384 3.0072198835094737 +2.7837377252327458 2.2064630503970877 1.7039819755763626 1.3060294054423625 0.7011506958442465 +3.907537016638226 1.0772723786622764 4.250538718121135 2.073160268416974 3.5709067243787294 +4.547129288315272 2.0721751974925913 2.4551299672928315 1.0750994449450242 2.8337046413293474 +3.439730986222248 3.0463599840989817 3.6192565615776098 4.743935969949861 1.1914883620615102 +2.627429079040434 3.317377962869437 3.6451213830030476 3.820760471351064 0.7119540375983617 +1.5385678773765767 1.32397477654987 3.688289300474363 1.6318436485127967 2.0676118877569967 +3.9658780184860887 3.857072105121505 1.689472436629425 1.3010713021159268 0.40335365137119283 +2.0386472813369547 4.044795834055572 2.673878962403204 4.003971601321677 2.407026888856896 +4.529840886042162 1.2977797319114153 3.703836262126165 4.2670908414873985 3.280773540677926 +3.3102518859962347 3.952717100550255 4.282644716672353 2.318859788032675 2.066207346290369 +2.1271513119065966 1.469391378653262 4.349591283222582 1.02493071286742 3.3891025416572655 +2.0744273502660957 2.507406942335235 4.612539862221926 2.3967081953910223 2.2577380943942496 +2.3309502966402835 2.860990716345693 3.539598340710862 1.9819853956701348 1.6453269988303036 +2.9649322522484747 4.120764645464835 4.75129630140335 4.079055804694324 1.3371072532238604 +2.6121894759348496 4.0130036149530275 4.074671981988504 3.064490198970391 1.727063255012651 +4.1291639531816475 4.8133792533986 1.5810227054747426 3.6910658077335277 2.2182047855058045 +4.545986411174171 3.810067797357146 3.909682325129758 2.547668798090365 1.5481140313299464 +3.468970405153316 4.990682311960212 2.731214796502426 2.6727092660169984 1.5228361777995887 +3.900713573484036 2.5628958244085527 2.2064015839282343 1.0625241258653841 1.7601738461884155 +2.98341573384624 4.576351395851733 3.2407873440180546 1.3430012930178292 2.477707795253489 +1.7053312237372258 3.9054660533473147 3.7825372982731067 2.6714034693330952 2.4647944446298773 +3.03952027145129 3.1319575839931235 3.5861514137971984 2.9453792479952416 0.6474053021226247 +3.2585985695540955 3.631637247519768 1.5429417804510117 4.7429099876649365 3.221638462403607 +2.751682736839084 2.6683342021689955 1.3792914485676495 3.9526264442979717 2.5746844425059217 +2.6712799189532013 3.417024369189881 2.6154506212833333 1.4357564217456456 1.3956407809610873 +1.9639527535562862 4.092082591860632 1.863848323256963 3.2640353128908006 2.5474418962208247 +1.0843841265526 2.434050849910156 4.522772319640094 3.760270702505953 1.5501641784891371 +1.4603199966690417 3.68037119069573 2.367704755374509 2.695260029310606 2.244085506744936 +4.119258113100257 4.099196636359464 3.1371337940073962 3.3235702420550943 0.18751269826244674 +2.0406269845681253 1.4436268867757382 4.665532423377873 2.1326503885845347 2.602287555006741 +4.464870119117333 1.8074953642877225 2.8811132916832114 3.8560070865383365 2.8305579836584798 +3.5310123214331006 1.8927275564672734 2.806867470202114 1.1119577318725704 2.3572645146871953 +3.4304597015092577 1.2591947432279227 2.3546347132150967 3.6330151137189257 2.5196523505144075 +3.5494055761628487 1.7616200629396532 1.5926338561838667 4.658624278553029 3.5491512099867144 +2.8102576140295636 1.8256744944267456 4.19375290845041 3.979009727292006 1.0077294047812877 +2.2407824816890907 4.714492374429788 2.9624318515350754 3.142451499319435 2.48025154108038 +4.6745303975087555 4.78386264261267 2.662301441305507 1.1956723914660752 1.4706985787891336 +1.192233803351857 2.6972940950877144 1.659294636549291 2.563693004978774 1.7558880632255394 +3.9552788031085813 2.3955175434455587 1.214598061342108 3.3785227507891187 2.667475444824923 +3.856037019980734 4.022026902069792 3.5691761202475276 2.8889213458607896 0.7002136809802355 +1.115334233614948 4.8254207839011 4.650642945448086 4.717210540849553 3.7106836910967944 +1.9021748594780727 2.571678861650418 3.690076139916069 4.989913195156674 1.4621258424299042 +4.258457478319533 2.290823215547127 2.453369722365463 2.104874417304635 1.9982576334610487 +1.6219606799969504 4.158638778053324 1.1077552569189986 4.08965083675796 3.9148993629749964 +4.45908924437755 4.086663579414017 2.3117415341996868 1.3978040907089824 0.9869055307058797 +2.8307028490183814 1.16881113845551 3.049458559615972 4.197814781334802 2.020051006682241 +4.402496255018779 4.786090318674037 3.2205176608932558 4.003442815745441 0.8718464335947428 +4.307500786934549 4.574576170299379 4.66788626686444 3.47509371820788 1.222327012108496 +1.9250936987633551 2.9200872095275985 1.7809237248350778 1.645853721004805 1.0041195110133376 +1.8710139863842499 1.7370172851110541 4.633726241845928 4.152886319828112 0.4991614433809945 +4.431886537795398 4.969001814323277 3.7218560677701613 4.091787243930119 0.6521824095870029 +4.355273386982493 2.674433715130754 4.7659870348461215 3.8570163408962563 1.910876690142606 +1.0310239614113814 4.353135426270474 1.7654948351158573 2.9337560783714505 3.5215421220597842 +4.2676610475678025 3.257532320393109 4.359787504123364 1.587640276513024 2.9504508633446624 +2.342676789372963 2.2653780253542792 1.4044817012200062 2.3778867843879437 0.976469433651661 +1.8867292200364103 1.3013444587317755 4.5456012838248 2.827372305146279 1.8152096688642656 +4.543042483929397 1.1181818293457577 1.9304359075163373 2.926014989973245 3.566629811564527 +3.6283711115176467 2.4115029581825054 2.4345461533208708 3.346958791630697 1.5209421176194624 +2.93134916447342 1.7901743996949446 2.0062697324155176 2.2326515689428104 1.1634124718588326 +2.38465970818924 4.590367816935236 1.7566780658312258 1.8866393308664624 2.2095334782250755 +2.421938316612174 3.2084149214810065 3.74378838721332 3.4546606682525067 0.8379381169737348 +4.238331957033857 1.2586596450817855 2.7744380494844965 2.94468025350115 2.9845317044123103 +3.503203510557763 4.825492371032033 1.0053891496487584 1.8037789925348569 1.5446275187753302 +4.632064337594804 3.1684342951776894 3.4833819261309986 2.69422348188212 1.662824089071131 +4.937706512074959 1.8333312693106039 1.3622793281053305 3.420300357755989 3.7245934283318234 +2.8413487189677595 4.453728036237324 1.1261264000284399 2.324405160499644 2.0088900045933507 +2.5770864188089293 4.521727491607976 3.7115470305455003 4.119583411257036 1.9869883215563187 +1.675820872491855 4.865823310744327 1.0928997063520454 4.048930675800128 4.349049855818267 +3.6654993999280485 2.832797753183849 3.528769072024922 4.597636767581471 1.3549428707863918 +3.0813337445813547 3.959249036908911 1.9417644167138022 1.616607725710053 0.9361955640821451 +1.0797267110635649 2.9091819164843065 4.631815550750593 3.543745321799029 2.128568338525159 +1.8194425427913279 2.3125607546058355 4.357721895336548 3.247739951748943 1.2145886076831343 +1.755827465138355 2.246756627686164 4.355626770972256 3.944904613216995 0.6400813491354285 +4.942777120211153 3.285386367818385 1.153302155626844 3.599348381754511 2.9546719355066253 +2.9995951180021843 1.034207119120695 4.7895808435116205 4.02332530138872 2.1094780259536825 +2.5675680854383622 3.717316795642746 4.326035157490158 4.995408520094006 1.330407003582072 +2.3366659249747515 4.040640339484707 1.3193199245131542 4.258418959515504 3.3973271763043797 +1.2398988864278278 4.521435149528381 1.6746306699285944 1.2282182582674968 3.311761508220213 +3.1203018594349126 1.985141103250169 4.068597466067419 1.0146389014919115 3.2581057159837545 +3.5541857190492907 4.790146892165324 4.971248683556439 3.2642836616624957 2.1074462288323637 +4.150709991862239 1.9251916501506607 4.01615761325885 2.0038945084373063 3.0003557609591387 +1.3546573555723622 4.576790648321504 3.1550562980625907 1.381142847827618 3.6781669191551067 +1.5368871544221752 4.075130977631002 3.07539593921718 2.945425139654021 2.5415692229008533 +1.2080333431390526 3.7533710153806292 3.438209573278255 4.279542663461077 2.6807807135923563 +4.1543995558871245 2.2562734123285013 1.8191880095056474 4.550319971332366 3.3259531941643723 +2.9916788168109876 4.567247518614941 2.4367854701934366 2.8990023838405095 1.6419686992648859 +2.15056970441008 3.348065890745002 1.7269395517177237 2.2880039010444966 1.3224183605698148 +3.2799079194887923 4.981110557924888 2.867286293648975 4.294258839763458 2.220437133626256 +3.78562794061316 2.312606825776979 3.0563604839464538 3.045695708741152 1.4730597211869605 +3.801621095367772 4.5200987927542 2.3544246565503513 4.965749934416722 2.708362957298298 +3.161467729913964 2.473813120415599 4.185652694354387 4.400396159467929 0.7204051761150249 +1.190359224720953 1.9050960436550919 1.0588435551690516 3.865767655971027 2.8964929877358707 +1.361219057104488 2.2687109936002994 2.7837043404605355 2.237235775867693 1.0593250241984655 +3.3798993355164857 2.4296746149359185 4.031657719992237 1.439004861523935 2.761299669381481 +2.5738352598072685 2.2117522644441414 4.222183865814766 2.9512012666021468 1.3215524442989008 +2.6333880108346714 2.924646679204629 2.7219316276562964 3.3260508902480725 0.6706651141479422 +3.9754053777869713 2.613991538809513 4.024894271313799 2.220072629352608 2.260714223481338 +3.1264888412025216 1.0580472096730293 3.009230244329736 1.6197981575792144 2.491780950793287 +4.8387970010052745 2.69750922228071 3.236651712957099 2.744144754869874 2.1971974092191875 +3.8435051425059017 3.5857699022748455 3.435046225671713 4.015984897629503 0.6355448014365632 +4.867235500928327 3.5810977568783446 3.228980590199863 1.479261225196438 2.1715589222809424 +2.2194361935458082 3.274204646493105 2.9080621626901255 4.949377319663167 2.297717140864103 +2.0526901837024636 1.2723741267859774 3.411432827536764 3.7056941883811314 0.8339561722103098 +4.104678442134765 3.09090299673129 4.6403838632517305 2.6789354196520145 2.2079448930176593 +3.398104525818291 2.2302834626141292 2.906626540826637 4.356098852219343 1.8613908824202976 +2.88541457477828 2.495116878661811 2.2403955444758332 1.7874791272717978 0.5978842467959524 +2.136052105453045 3.56942046307896 2.211488109314137 4.455145395730142 2.6624317582861807 +4.20743875220035 1.6057677654477058 4.007974341121263 3.219225439051058 2.718605663539203 +4.8500572634683685 4.496825495468666 1.1647191440898252 4.581986980429303 3.4354755343626726 +2.433556177206099 2.5824867947661496 4.33972361471019 3.9927722228027225 0.3775653548636937 +4.084876487581422 1.9350968570063283 1.4524593270087087 2.1318545840447234 2.2545798666977 +3.8687015309259793 1.0401543158351139 3.6113201196998075 1.6721612960265073 3.429433814994584 +3.628968178704206 1.969678516106884 4.869073380877536 1.1635650923997751 4.060053430729664 +2.0356112830504594 2.2478014903043175 4.880726682497974 1.1882240375109419 3.698594390750446 +4.663975751450733 3.5582589515969896 4.779353614676522 2.266335697273903 2.745517928308865 +1.0599453174077098 4.21860983633926 3.6766250718506686 1.78472676956908 3.6819072135692172 +1.9542929466427106 3.8917791728103728 4.751030424899281 4.314221110070633 1.9861156195223082 +1.412373203258845 4.894043047578046 2.524709830292402 1.8434311485719768 3.5476986268577564 +4.171126794859019 2.8963002287464947 1.6842724769216124 3.296402964773088 2.05527309220125 +3.602127530159031 2.308918784978926 3.2853165256452987 1.7450088978579217 2.011202736381959 +2.7847592567383024 1.6747816689064465 1.6000154246793166 2.7514346494185973 1.5993175033708071 +4.218863447630869 4.326390443801962 4.003488599298382 1.1972901617388803 2.8082577741131547 +2.6901085479936486 1.895318896305667 4.498844947212227 3.1219952876809294 1.5897816124807058 +2.9526165358152987 4.26010809986035 1.0685752475081771 1.0106131465160129 1.3087756855933717 +2.3557457004661 3.6882719594605113 3.629127690872901 3.651821530556105 1.332719490841643 +4.107332111043647 2.210174084913781 4.027127769250393 4.187514787078249 1.9039255688174053 +2.158277367489639 3.222606024369939 3.6791808922475098 1.2297962793339434 2.670632972131207 +1.3526080258107078 1.565168336646766 1.8756200389053306 3.081754834965102 1.2247216140857757 +3.800582755567305 1.8909215558462469 2.0429861157734575 3.991741986809972 2.7284529210927126 +4.088505098711637 3.691815975174822 4.330214559992745 1.419137510800296 2.9379809133259234 +2.7729408885541273 3.3599673739869194 3.979975968061969 3.8740630796924465 0.5965045134132272 +4.927144492338648 2.2275316299707857 2.7953605469010165 2.2759982961083933 2.7491174500574513 +3.8226354368055806 3.834498284937601 4.858033268533534 3.8506947750176326 1.0074083420761855 +2.4086755537245934 2.448958641958841 2.0798589848019606 1.8176407801584973 0.26529439127906457 +2.986561168972659 2.506748783537931 2.5797974690695717 3.6478325224773784 1.1708624174190494 +4.7728719636532215 2.1452180588023873 2.378808688939889 3.394802293399207 2.817234113093918 +3.825631413533999 1.737447148376174 2.0327667098993456 2.6403239499617994 2.1747733962886873 +3.0170176132807534 1.9188863300561514 3.3350754716352693 4.716010841842582 1.7643340987143334 +3.759286517254744 2.1165564723068586 2.6714038342010897 2.984655838734935 1.672330355796651 +2.7774934114437415 3.238806382285452 1.8177650392037012 3.9132393983319718 2.1456519864206407 +2.799707572100949 2.0928426764178543 1.8315545569233462 3.514338783675244 1.825217996447015 +2.472595117223133 2.88963375586583 4.03306980115395 2.45801993806067 1.6293260254937045 +3.522771887278614 4.260663206631325 3.8934956435212182 4.6587530216939355 1.0630627705003433 +4.439797211713369 4.331755529705871 2.757862980715342 1.0478308525506752 1.713441824050758 +4.980567518698052 1.620794887383345 2.3239454289890435 1.3325764965395424 3.5029822286670846 +3.1503284810112224 4.086516750526409 1.5181376918684162 4.503830899028509 3.1290273893431744 +1.6933423360286994 1.0788478877517411 1.970522522454766 4.398205801180479 2.5042462995415673 +1.1560860168862175 3.4956091429657876 1.6434908568576434 2.377667182693946 2.452016177532199 +2.725126886744173 2.249301937883788 3.0998155878028033 3.5317860618381207 0.6426568854344322 +4.327322463124981 2.386609216953813 1.5018110440078258 4.139099121203251 3.274394036456421 +3.8882831598489562 3.83587788888907 2.091272930533044 4.576914161933736 2.4861936054264815 +4.239764125706232 4.57243992772853 1.3679763184949083 2.2417921774777896 0.9350012538286617 +4.715162129923554 3.7973508259849478 3.727831099924881 1.5214103595430442 2.389700833415057 +3.1323365398329024 2.7245777448833155 2.0890970453493294 3.031220847185075 1.0265790241594546 +4.6304421149233 3.7088546073469812 3.907495014806335 1.7111619868228685 2.381848505663564 +1.1043261277829535 4.220410815664291 1.8424472968200232 4.254590380775873 3.940611378901067 +4.650195233656291 4.900254415820261 2.3567923756940314 2.4458743493286796 0.26545280674944444 +2.508825119552576 2.2865460597596026 2.190221400899444 2.2749134893281893 0.23786704325078478 +2.600928225417273 1.0522764649041938 3.3498228769328464 4.322140570018631 1.8285852377255813 +4.722148821634857 3.268659009845757 4.50157118322495 2.9827276082965604 2.1022650732188755 +1.8358653629881454 3.7061256709052546 3.7731127183676225 2.8620090229323987 2.0803806294055716 +2.7754370084556172 1.6674761582637574 4.279484025883059 4.796618435352122 1.2227040700900547 +2.78533603867662 1.3394457364193921 1.3136313840530875 2.008533547285339 1.6042093948815912 +1.2039694131914476 4.806865055846103 2.80231431422473 3.0307689703580456 3.610131374585819 +3.047692392772109 2.199479482345943 3.174992856688816 1.9943106253101934 1.4537797883128072 +3.8782300941197976 3.5624267530461857 3.8678033193158496 1.8022117128489579 2.089593365930255 +2.6586318393464947 3.542157518654846 3.6178350940617445 1.2024718664295566 2.571885912593143 +1.3635822978491845 1.9792894529621097 2.4437050752088196 3.9729775815138133 1.6485659523954777 +1.2533538599382283 2.8405589780523472 1.7530652503541586 1.501393589357554 1.6070341352679614 +3.350617543897514 2.6790632798880276 1.428080771025932 2.2769472034036173 1.0823859522032528 +2.7273203988891557 3.481758354515691 2.223107274642726 2.071174351605587 0.769584460597117 +3.2433285408158317 3.4791687198344685 2.1463586328573236 3.3209294445943907 1.1980138487614471 +1.665103635167052 3.0716327484564654 3.1904570876875322 3.9642289330888927 1.6053183532454023 +4.612594342287961 1.1069125226470335 2.8759204665583042 4.7164922157135205 3.959483474438202 +2.3151079036718127 1.0241949227951528 2.61113295072464 4.846119988741011 2.581012085267532 +1.7922738358119856 4.960465710754914 3.399712907246583 4.3190624150928425 3.298885156235595 +1.2760449927993762 3.1344293881848952 2.9539231639005448 1.3188999407659674 2.475256249603621 +3.1337751758064436 2.916772207212279 3.1457368448231717 3.108872386676077 0.22011196390282603 +4.705975208315673 1.1675293443498833 4.841614318258373 3.7987864593679257 3.6889143491676024 +2.7221097749746743 4.96909147642689 3.738835707935718 2.9965679504377745 2.366408289049487 +4.866383591907724 4.906810172396536 4.322948110832511 2.8734173896137416 1.4500943487121882 +4.120276131533137 1.868178808305296 4.467238724515408 1.140432814615262 4.017409602646529 +3.4471945693117045 4.225473688670226 2.0297389751495913 3.163463187537724 1.3751541649519037 +4.138461605888331 1.4749468298460182 2.8207232899156947 3.0672987500528834 2.674903815044122 +2.1791651634474953 1.6185737946419185 2.648807708063938 1.5686496214718888 1.216965149381652 +1.670713872322858 2.820560456035278 2.7314928055872563 1.6387144470843258 1.586288658122311 +3.1396004658579337 4.383990717462323 2.251915598355991 1.4709006191829888 1.4691805525464323 +1.2624413383919078 3.241305737586876 2.406244086972945 1.0915246880693994 2.375792795732524 +4.132016635936344 3.566599079501945 1.7935203403947657 4.460182799470825 2.725946749987942 +4.344954221383846 4.562973588613552 3.9302571502363493 4.13067063072765 0.2961384940359467 +4.716712765430307 2.8759589473164 3.485146878067299 4.661884582311531 2.184739399445827 +3.312075028745955 2.6812606549116738 2.5244766596679122 2.708420892721316 0.6570861854502354 +3.7036789470796605 2.2110078650885194 4.620164959846896 1.8999450359293362 3.102847626534481 +1.3902663650606182 3.6436836370039156 1.4913274013058553 1.0163946191526136 2.3029221760746044 +1.0550632398402278 4.146539487438624 1.966588905349067 4.239854235223331 3.837311643517295 +1.6805268221679062 1.2261157162320013 3.363104390187597 3.939192675333772 0.7337350785403083 +4.772334581608136 4.448723232497544 3.072588177255454 1.0649270419069912 2.033575063690017 +3.579162833536323 4.885910427352615 2.464041720659431 3.7223395208115115 1.8140845150687532 +1.768964731062515 4.339046689186169 4.760018711587646 2.4187129592018546 3.4766411804538464 +3.6544747009217677 4.722340879726063 1.1654136473456247 4.620607530203355 3.6164489411536787 +4.804939033443527 1.573698998537881 3.421450474184896 1.6650256760922706 3.6777629388708237 +1.6824683777769978 1.5816447921180723 3.933396764450781 1.6765879491814295 2.2590598540327735 +3.7359806307292107 2.207534437233345 3.5935116793072277 4.218828733224997 1.651414298209992 +2.0914769074931576 3.5244889011344345 4.510011117371677 1.0357673651662642 3.7581768217658538 +4.964078654391843 2.225111202212042 4.94680164483996 3.3651157275799153 3.1628583662502274 +4.408588445497502 3.748590730644086 3.7206096148313983 3.2709675667921925 0.7986081360571166 +1.1233097618434482 3.417681756872369 4.7599722033490695 3.63904911763827 2.55354878857883 +1.2854767013532733 2.8687176502573495 1.4642702733215547 1.4945668545217634 1.583530797022622 +2.0501123331533844 1.6630104769019418 4.706710590999954 1.3123709925528546 3.4163414871320064 +3.0327271325245215 2.341597870681267 3.214778374509225 1.3475359948575956 1.9910433849976954 +1.2911548238054693 2.3060107976157407 2.2849361426540176 3.9067874819784763 1.9132000455903544 +2.5231160845491645 4.34555210206616 1.2425086441645758 3.157830781285693 2.6438101155131033 +4.299621923191712 3.393866700777112 1.4059708810685918 3.769396535571877 2.531041948940318 +4.120287505405511 2.3757709064697585 3.670314362001275 3.9532299947662306 1.7673085240628357 +1.931333565104587 3.595473559302779 3.9495066623756263 2.0455977936344842 2.528681652711771 +1.7235525563256955 1.2945025358009032 4.790282689302171 2.9092121315862016 1.9293808237924917 +2.684358715748362 3.429455263864358 3.1438292137385706 2.717928761197428 0.8582307740282463 +2.9190262925530557 3.5062553236736544 1.766529255035731 2.221957886781899 0.7431373854174099 +3.9455477539123756 1.1653228650845429 2.429523680992709 3.4943105658940374 2.977149902627614 +1.9737461026950394 1.9672410980706014 3.125071408793123 4.608252452248459 1.483195308363138 +4.902471775529346 4.604875405092079 1.7586257194380686 4.1029954059749745 2.3631827747448115 +4.182823831461764 1.4942607060374735 1.0519069653555992 3.045573897644833 3.3471001652616845 +3.531533166618879 1.2312903321346247 1.2259333631584943 4.491312896053948 3.99422340279668 +4.163953122018178 2.5819352068266785 4.012409526122214 4.552402808155822 1.671637947830895 +3.364130426722932 3.832604660282608 1.1488945421506744 3.01855158972405 1.9274557279092346 +4.116658602387285 1.6281201336801874 3.116554373293759 2.173507171768209 2.6612331229225745 +3.6148048708483436 1.7539123100733227 2.4210084956060194 3.0800677796916256 1.9741530494587411 +3.445153646986585 4.300923008441899 2.716488008633249 2.139554186874077 1.0320822809714731 +4.230497269108687 3.017714455522248 2.7326366715095327 1.3111387597325734 1.8685551814481944 +2.5264403958502 3.281697369113095 2.2689559009046074 4.7134287147538565 2.558487919320765 +2.4381276120510194 3.5324823330301354 4.2128838587330035 4.507272439623427 1.1332594106769889 +1.6867985585528023 4.747786216517427 1.7813117408484356 1.3687121877096144 3.0886702370861983 +1.3094508596793202 1.160895742017563 1.3746392055805399 2.669677816578855 1.303531214417186 +4.675617132786506 4.656596522549297 2.869569042400033 2.614723980452586 0.25555388710171095 +3.250128514267164 1.3265878356345606 1.1570386490131677 4.693082826995962 4.02537168109982 +3.439038667961619 3.933424867074118 4.3077640865087705 1.8207469619617616 2.5356797691473143 +4.037623665462986 3.641890979917391 3.40766439709234 1.5057080168337436 1.9426894838896698 +4.911923148049084 2.757246241530621 4.461809527299152 1.614490694324739 3.5706942053464537 +2.109220279218914 3.36036425641472 4.8582419765755995 3.516441219930046 1.834609092479354 +1.8211807013271444 1.7623146410984405 1.3119126733730786 3.8195089102642688 2.508287084908286 +1.4949399392042677 4.57344092867449 1.3807709554588414 4.494874403462506 4.378904957525049 +1.0564433051606659 4.361110145056912 4.423415910306295 1.3066588989838661 4.542576052234828 +2.5438943702912966 4.127381179008575 3.8927307998532523 3.6308166741308048 1.6050013964587646 +1.4738403703113323 1.818341291100872 3.1268140168955045 1.0646150544740913 2.09077627809309 +4.710544218348719 4.810259560190529 4.503149177612366 4.686488288525004 0.20870165066157323 +4.488444938702734 4.023485729680171 3.528362714331371 2.9603906488591702 0.7340158943862487 +2.4768550363402455 3.4937366476774785 4.392876909566816 2.1492136304779104 2.4633459199649135 +2.025803191856404 4.206214146572595 4.766515646583921 2.0326270785697926 3.4969041499252893 +3.2495530574541047 2.8895618186317913 2.0189861427917792 1.2371680215036691 0.8607167169303115 +2.4268933935408166 1.4748380251147073 2.847694942221183 4.760228302142842 2.136397265810412 +2.20792275801132 4.803360751034657 2.039171795210943 2.1683323562093997 2.5986498082940006 +3.8878886507830663 1.107221869421041 1.1097312090925189 1.5168315721683823 2.8103093165320336 +2.388728885141557 4.608962108871962 4.96855053878147 4.603565364376915 2.250033276485357 +1.418568895765524 4.290184628737618 3.702873011984443 3.6567459607108415 2.871986180801025 +2.952372276870524 4.987259589038803 3.538249765049187 2.2495198092999322 2.408649262983077 +2.715963811556906 4.386901719099946 3.5879616111425365 3.1811337000328335 1.7197506912695795 +4.613077983058192 1.0121154406575368 2.115970886929856 2.028403931117378 3.602027096444841 +2.6122223358692276 1.5616637683572456 4.858053632608426 1.7365127353805465 3.293583288280268 +4.0759882687509785 1.7196117440563787 1.8492662380664866 4.24001942421757 3.3568156224647425 +1.2934248880612431 4.890395446289478 1.1534633786222925 3.1284377949019277 4.103501083431053 +3.8561465306134948 3.2322626492084923 4.245106411405759 1.1244187616814867 3.182439709502534 +2.95281574990435 1.4362352491467556 2.3795131786490598 3.318541754955202 1.7837575738865683 +4.413874365419706 3.337940153557046 1.3669784061018109 3.9627976273965215 2.809966522558516 +1.6491511796500293 2.8468714934549157 4.886791586732782 3.214822273301486 2.056700108221127 +4.713170026744472 3.939639577494254 1.250481541160029 3.4114378231432196 2.2952301428309667 +2.736261281969247 3.057307891475443 3.9388990933688848 3.7372466872411856 0.3791234869702938 +1.0957728812280596 1.2554928073547664 1.6692058890606303 4.231852020440925 2.5676186729108186 +2.8858524880786254 1.857782098412108 2.290635369720428 1.206161682868835 1.4943265719321703 +3.5519964206496937 2.9882225277256405 3.5872746208894433 3.068249918110331 0.7663078000631911 +3.3804027107424255 4.337119697623958 3.778051282347869 1.5898712926510767 2.3881874005816908 +2.224652694104591 2.394819687201917 1.1886518827012753 2.7137827627517934 1.5345947369984863 +4.9831572575597205 1.3731218467645334 2.9318535332055604 4.038437335284602 3.7758288332787124 +3.996255106951574 2.418556616416035 3.3935702282974156 3.7065068915851516 1.608434606152137 +2.6395470796893514 4.128525322461503 2.2801731455135537 1.677487059951933 1.6063270915907608 +4.685013895392997 1.3413263184125563 3.2204487687888825 1.6796829236388047 3.6816037269149926 +4.115930459219603 4.732187791922765 4.775130766039323 3.557795444189452 1.3644333570877494 +2.512132643274168 1.483147184981791 4.574042279298709 4.865202419863294 1.0693854781278649 +2.6420237027466573 1.0009651569695777 3.6276015200405904 2.9515118937025457 1.7748719203114067 +3.6035433472554463 3.82472134623983 2.1032504887492496 2.7450162679657044 0.6788100047937121 +1.5764506397859108 1.1634489086653526 2.644024943434243 2.831725477611908 0.4536539655278664 +4.978226572722763 2.8238338853814473 2.277139221786084 1.0510637210429006 2.4788442840953895 +2.721562606050313 3.979831829407234 2.836267859995586 2.3446940775567797 1.3508834968376895 +1.2790434155742436 1.2309934570960057 3.5544415073511275 2.4294221479048526 1.1260450069329675 +1.5165877555874894 1.719362471870388 3.236421419173803 1.1467866201978114 2.099450208662983 +2.3344849616037155 3.1602996260352856 4.367958421000855 3.9833822714531 0.9109712809914503 +1.660638253195406 3.767150981865733 1.0352074384092464 2.9726320358612446 2.8619940508083075 +1.1444405837298475 4.165921611079524 1.8306548899174118 2.557802409268809 3.1077469513351543 +1.8831553019497216 4.126740940009261 3.6873607842939253 2.1874144143965206 2.6987989232018443 +4.35200749677745 3.3967179815902195 4.407322378924875 1.0257062626785012 3.513958681527696 +4.867825122538233 4.442077072592008 4.81680792917156 2.481211281918267 2.3740836338877864 +2.8220377639336047 1.6260621268015658 3.542719530136128 4.100882016140567 1.3198117613493379 +2.4642034576071525 4.875773209568829 4.000720340611554 4.744480368718756 2.5236575932535947 +3.567797039153821 3.912267598315736 3.0142817049304016 4.346115727829686 1.3756605070588501 +2.5580497493867607 3.8897436762591604 4.192459054812584 2.1829393279596085 2.4107215201014176 +4.809430173234901 1.894567441977197 3.69340119834269 2.633265962525033 3.101662692862859 +2.8826039095903564 2.4834494663662485 1.2994747393492094 2.860228939863292 1.610986636806122 +1.1340628589146569 3.800328879783143 4.356634379767506 3.4810580710930745 2.8063514331512036 +2.226120304189176 4.360245837276846 4.92785837797571 2.8083336887615014 3.0078026363385812 +3.6041756122245125 3.5750475480346897 4.40141610192412 3.2365729982887466 1.165207234877271 +2.892135932000566 3.2872357569777693 1.1830480930734741 1.5231040878362583 0.5212887407868342 +3.2962479546861085 1.3119300139882242 3.101403460574265 3.497356575548171 2.023436818641252 +2.022603577731087 1.4001433525130036 1.9615683047086052 3.1267134346545546 1.3209920158030142 +1.7781221743920708 3.118669383423667 3.993626255693566 4.635816134234675 1.4864301731810503 +1.0367994742142503 3.4703104461685763 3.6825731798120884 4.1304783813827655 2.4743877465377486 +4.625078031790663 4.775201460297254 1.289463875496922 3.9230469934650247 2.6378584274053005 +2.928046038626161 3.827039826613237 2.790143887103097 1.7652212575053179 1.3633254297859252 +4.8110981927452485 1.2249108716833108 1.528381186122663 3.0301636635869373 3.887941629109693 +4.407470705144728 4.7368455331246135 2.8391238375731955 2.1233401570949573 0.787930234567599 +4.9793490794432405 2.830428842653456 2.312836681975362 3.8839366766053915 2.6619942481551577 +4.623466172006555 1.1364359861014557 1.4643244499085655 4.558424762259733 4.661849017321877 +1.5455067827038476 3.1087270662060007 2.9688889015097 2.4996661983541384 1.6321236472489344 +2.244756370164025 2.788254389383737 1.901349403300289 3.174471120936633 1.3842792365751448 +1.3262866160787454 3.9449432597576544 2.568571397166581 3.2279880460232593 2.700406068403984 +4.0315865043961665 3.043222137929933 1.7143969874939171 4.915324070092565 3.350044523437515 +3.9191609582950058 2.1506583638147725 1.2418081998086223 1.251752177712373 1.7685305508754625 +3.789535001004762 3.9022401398356834 1.7484521279264027 1.9307310890209273 0.21430834789292855 +3.517573375429184 2.4081713374624756 2.9525333216566776 1.7432012102794596 1.6411145717020386 +1.9563273775741963 1.9959177164263 1.1378523193903316 2.377437399795031 1.2402171448953403 +1.688326336371916 2.4693303341476702 3.735111652118803 3.0357151054635887 1.0483905636808017 +3.9640857040443143 2.554627755283964 4.788440210259855 4.205423048888801 1.5252805380574737 +1.4787591031212677 4.216763283996189 2.8780880056231393 2.4938828074298676 2.7648292042741587 +3.8782204159633733 3.142450044471317 3.366134699960237 3.9332328839576833 0.9289555370730936 +4.307848232774109 1.550139635163323 3.878039943488758 2.0185509860194166 3.3260571089936004 +4.077242374650751 2.858217013335496 2.708913098986423 1.6878736845548992 1.5901397162993125 +1.2303927884549881 4.246490067394856 3.3441391042440474 3.627111653829265 3.0293425458087815 +1.8843290956280367 4.699054218666374 4.132983245436898 2.7376479420452964 3.141598021255125 +1.9520659499921407 2.585987617486134 3.0776935082422687 2.8034844726562143 0.6906860905761742 +2.6722173166307224 2.1293486700133144 2.3499210761791023 2.496305338555085 0.562258587974943 +1.9254459196363278 4.642648465872375 3.4164457933265866 2.3780625319908633 2.9088536358321417 +3.568650530145956 2.3519603339838846 4.527163582119916 4.400039902847544 1.2233133136153813 +3.354959975042178 1.170499953241043 1.3470702767178588 1.7978543035572327 2.2304869032794024 +2.966823405868064 2.5137816135022253 3.8464637755280973 3.350608906552651 0.6716538667473809 +2.357508073803242 1.1139608548471331 2.110325429815961 1.4547594942356237 1.4057654077643238 +2.2823265274019353 4.795691819084336 3.55318332969345 4.701340828453867 2.763199365118908 +1.1597370792761188 1.2393758320403352 2.755226619574836 4.660900207879341 1.9073369277878538 +3.0805572126471614 1.946943991350519 4.409880904521492 2.244646604563112 2.4440373379338554 +3.8925054600722753 2.118375548529735 2.8419154859200635 3.283367264380415 1.8282277253492656 +4.433889501257941 3.922494088542241 3.4117180580388067 4.8207622902365275 1.4989766230453114 +2.5835551894128224 3.213466788195462 3.8276123399553885 3.137669279302912 0.9342430354160571 +1.3919325304065149 2.181854454353003 3.1479495928222554 3.0267263041631427 0.7991694010938183 +3.8235106290772616 1.381601921194084 2.4062453755647093 2.150696592993461 2.455244044470801 +3.6823682084036187 3.1631837814955253 3.5591211741034305 4.854307242869158 1.3953707112694838 +4.157991289461516 2.492758214874548 2.3302363854823547 3.1543961272857723 1.8580205791938478 +3.712082484812077 1.6548014004797635 4.656207316042207 4.036416796515853 2.148614844044015 +2.2542068568324067 2.86478256216046 1.755754002368393 3.779035466002583 2.1134026055209074 +2.016976291366258 1.5638936770464151 1.3501579539625985 2.4304719640852754 1.17147864507478 +3.994935649853052 2.4402153105606543 4.646506927158949 4.301241334827548 1.5925965159629798 +3.864764981018031 3.119595792975184 3.0548832716877836 2.8486343987049927 0.7731854346889283 +2.339911497064885 4.85961605307693 2.4086659568913675 3.3683813999560193 2.6962872215779683 +3.3498590037643474 4.905132697298391 2.5731541395661717 3.2928820699618058 1.7137340971080104 +1.7731789062812515 4.24362098199144 2.255581396957021 2.4942489489822592 2.481944046474252 +3.212452359432457 3.0587812983940856 4.134792938582274 2.0793337802783083 2.061195562399722 +1.9393645781368702 1.256217454460764 2.1367976440522796 4.029523163933792 2.012237532250524 +2.537537333035176 1.9115804160074652 4.715526362192612 4.390796140364641 0.7051749988075863 +1.9258291190037693 4.149157771596297 1.1002026547570365 2.388456899139017 2.5695893243098387 +1.5788683356537074 4.271891674997706 1.4145051170355396 1.9968698298349068 2.7552719221458686 +2.119735919871358 4.865407303025782 4.738955586069757 2.394896456025479 3.6101696011984066 +3.234077788962227 4.387893048488203 2.627673290801678 2.976193059231011 1.2053031494611761 +4.303430203884199 1.4346472628284839 4.593626267841962 3.848209721917993 2.9640447685265316 +4.572361258040619 3.2049822958808316 1.9512369961690523 3.944657569165733 2.4173230663284526 +1.4852972332021994 1.952270436446975 2.10858781715292 2.707481097599348 0.7594321127741245 +2.4216597194064184 4.352062741103536 4.500268297246961 2.528477422779872 2.7594229612020427 +4.883357429344885 3.0013959910604506 3.2871535535926855 2.1572721508469352 2.195087888778106 +1.8203488439043887 4.399844597380497 3.7428817269492107 1.339210750778593 3.525823663186559 +1.867810293148887 2.9449007833987006 4.741358919953705 1.8754659884221523 3.0616117028762972 +2.494615502560651 4.866540550797751 4.766422918662401 2.1154652043994533 3.5571906383078207 +3.4294931029554756 1.3437566480269192 4.883102531371593 3.4806483451833077 2.5133989543594124 +1.9590021849411356 2.746330826562789 2.9956346102512397 2.3734424458597565 1.0034986195047584 +1.5649788726052125 3.234264274068108 4.980704742124528 3.5628503883701597 2.1901654549365346 +1.4619691513022484 1.1945666092906069 2.610425102752391 3.092509441297507 0.5512798100282379 +4.324570958483378 1.6368199397073462 1.4081622690121667 4.454434711795008 4.062484625766568 +3.141434245079842 1.5104044184175338 1.2291097651592429 3.0017554749798343 2.4088443511375797 +4.272688215106222 2.0356913643210404 3.0616288097159883 4.944628583049406 2.9240114665979893 +2.6985116458976486 4.511054675613595 2.096352704590764 2.876428729910714 1.9732792098055545 +1.4629902572859175 2.1034695893161897 3.118300180570962 4.672303100146761 1.680814935918899 +1.5967377744064413 2.287885023879053 3.977668186009673 1.5903781993091886 2.4853245263051575 +2.6047905332931287 3.5355206786517424 4.475376936472395 4.2226147179590185 0.9644414666464057 +2.1241925300941262 4.5599996985208655 2.5824268433004507 1.8419347101004457 2.545876108747278 +4.8314083658609315 4.252508002024788 3.0978338662081075 2.192719084226267 1.0744107221224357 +3.242214123114077 1.093198651090875 1.7851180873944235 1.166475712413925 2.2362884176949573 +2.2454165689754935 4.16053606724046 2.2625445163656623 1.8987848163588756 1.9493598467147322 +3.6982091880410937 3.538815371349478 1.677175440839234 2.6862393703390226 1.021575451260001 +4.500150193439612 2.658297691999256 4.289793524003677 4.177609293501767 1.8452658178797452 +2.0120333614477603 2.593458137120865 4.343579376905277 1.5755225265771355 2.828461330196167 +1.4099765825363044 4.238081981314073 1.7379241936283338 2.537936422104875 2.939081440230597 +1.6606964024482092 1.7792285770602452 1.8954247648690958 1.1206047154624565 0.7838341568091844 +1.7605317891394017 2.196720242879115 4.129672191836121 3.2764992551402896 0.9582089683811313 +3.8881161985580444 2.5432571392957763 3.363389399213374 2.896555129436643 1.423580038044144 +1.5400101011034537 2.2246920260509495 2.699817134701442 3.6505523175252006 1.1716171414795595 +2.7772965421999527 2.000538346812132 4.365556000617568 1.262936742521708 3.198374517596313 +2.075324341798213 1.5487186682058116 4.752213576662756 2.4937635483555307 2.319032139885218 +3.7186292187267327 1.066900254078202 1.8580510889325144 4.184011213008608 3.5272874848455498 +3.472088954157812 1.4288137147153916 4.101380260021838 3.919729546481608 2.051333879661757 +3.2233380296070036 1.5895104947196232 1.5000545403809507 2.833088509388652 2.1086422115391223 +3.158362249039241 1.3167491334185701 1.7545206216033016 2.4776298866265893 1.9784908078605254 +3.4114758294513936 4.668913976366708 1.042395719071462 4.563465320913457 3.7388610343704354 +1.3368734809262692 2.134537760129391 2.181004355882012 3.9795218116993047 1.9674687649861542 +1.1197833261184336 1.621740694297665 1.1095101630942414 2.7339077633995337 1.700184920338671 +3.2080589805336284 2.395183671743209 3.540033897504386 2.2850940394740538 1.4952057767793403 +2.7639988627396384 2.1116351809937024 4.258966501603737 1.7581392053316391 2.58451456545339 +3.1346783232112854 4.301048501358415 3.1755977209925073 3.0321233511024888 1.1751613877618277 +2.0394991807079283 1.282760947742751 2.7658273439747205 2.8533767220504123 0.7617858274034109 +2.3866230754322313 3.347072894810822 1.5258047880733074 4.255737579579101 2.893958690389858 +1.8119910396176646 4.604322016805621 3.9291076274049526 2.7704596765164946 3.023173392358015 +3.6295144844174985 1.4890951829455643 3.3389572063848716 1.1321034347246388 3.0743451913545097 +2.339261299418872 1.5209181990827139 2.6821252742553643 3.6677787924200165 1.2810926148168023 +2.556623668526354 4.604703838886784 4.33471574411608 2.6837588651023014 2.630644597923962 +4.665909277700539 4.493696154460556 4.4361378065097234 2.555951461514125 1.8880566865759028 +4.648609011668942 1.6081792548871627 4.595787186347469 3.441385454207048 3.2522079369395973 +1.4496310339100829 4.229257530239332 3.6437042929053054 2.5271523523735695 2.9954985720244975 +1.0733080543335096 2.178195342757571 3.983206178593315 4.285215399825212 1.1454193510807176 +4.573874148101622 2.88392381521893 3.851067443202014 2.400172988223041 2.227336267180834 +1.684219811042957 3.834006523093291 2.9179189065472317 1.1698970944720966 2.7707694171111794 +3.5257595771505335 4.450777008759163 1.0149980661576992 4.0045113062618345 3.1293524348557726 +1.0456147856971096 3.880552563672592 2.4779941666367216 2.7099666801342486 2.8444126725935757 +3.672756136347671 1.7442521430150588 3.5592749477605046 4.474746245756053 2.1347635348566096 +1.3130578834530664 1.4656704956064415 3.886152391602939 1.1398719560510266 2.7505175585848343 +3.850770740711404 1.6581110636857161 4.727534928418207 3.236776804970758 2.6514366373494487 +4.951327815899944 3.5236161456701702 3.4877720986092493 4.466600779990607 1.7310303870253283 +1.5965792422075942 2.953102492589448 1.8688963770426001 2.5545780572834094 1.5199719390319046 +4.8228376438766105 4.0570820669774115 4.417210005741509 2.0231760520953723 2.513519479686358 +2.897362118395542 3.486779202184543 4.638687384844962 2.66687535118638 2.0580221560379575 +3.3774984901520795 3.50890128115447 4.619169597360165 1.2454984633956863 3.376229200399225 +3.7216614960791046 3.003390786709404 4.441255037751915 1.189356162819959 3.330279133154183 +4.334560292979983 4.344231358774914 3.8949897406792164 4.884432035549201 0.9894895574947681 +1.5416490160656808 2.9223420173360655 2.82249381900798 4.474177128734777 2.1527589087928747 +3.2895735620915842 2.8495515621065093 2.210256026855921 4.283050753164751 2.1189849782111634 +2.499433291744777 1.004844340461713 1.3635248870354442 4.138485111436218 3.151856656052715 +1.917082690196981 1.758650266851609 1.2024457029155844 1.5336976165662208 0.3671902273540186 +3.8868448515435117 2.7944557836732535 2.9951970800781123 1.1513505138329196 2.143148159940567 +2.363673329788543 1.5653446806204299 3.4554453794166786 3.4775673293870604 0.7986350936147725 +1.7031302748436592 2.6258443450300426 4.701461063289912 1.2597341338376435 3.5632689362770336 +1.4473333340532513 2.689021726005422 4.181773555665471 4.5296488682819485 1.289498854531007 +2.92940725072672 3.9802349924750344 1.2696027421861542 1.5648257581285083 1.0915106833970802 +1.015879829820658 2.99036875736184 3.352901069616082 1.4065610012884413 2.77251621935028 +1.6056405184196656 1.4214138139686994 1.637421194563213 2.508433282298032 0.8902817169935774 +2.781219795655996 1.9633930932050396 2.136934744611078 4.111852998826507 2.1375552919340173 +1.3372539023698455 2.1159120101529627 4.555252122687769 3.5843989078998106 1.2445338137151989 +2.894377145011581 3.9455565159097885 3.3649207261502054 3.6923537262497637 1.1009952040568336 +3.910714095221619 1.079903815042194 4.865809681743503 2.718058784590198 3.5533534525279555 +2.7593952036232983 1.3751239707261842 1.8280432095208758 1.8219092443286566 1.3842848232049196 +1.9496191090365174 1.508146019600428 1.1031967695935392 3.563278082410648 2.4993796339028203 +1.9454230381645323 3.6498906314906003 2.827753653412831 1.8001186696726919 1.9902872748689708 +3.1588057723904464 3.7895248878769694 2.265318102019525 1.8852051683531106 0.736405082125721 +4.51486288075561 2.988198556622247 4.839477010918875 1.0744096698329502 4.062811347022332 +1.8939931739586129 1.3986362869143045 2.9582979936573857 2.4540869873617477 0.7068289640442641 +3.095567865732144 1.3145231073066435 2.276699414480167 4.427429744469049 2.792447203412991 +3.743591412708749 2.173385881010644 1.2670860924111893 2.968296672504977 2.3150945660163367 +4.1704507034533105 1.413523042185199 4.995856949261521 2.5509356092179103 3.6848731984243233 +2.646765929678528 1.228508812858601 4.8765487874109965 2.2201551970802207 3.0112921074118337 +2.5595465576140053 2.0785210342218554 1.1643603885765699 4.148374659075932 3.022536471359532 +1.9419917177978325 4.397282237187764 4.166673506970676 2.9166206336952176 2.7551921385976534 +3.1721161055212193 3.709265895088896 3.846750177358807 2.9489246907386075 1.0462411294044014 +4.65983089701095 4.708101522495081 1.1867638692080207 1.402399954942458 0.2209727918896324 +1.6615751675939459 4.725419240600328 1.3136465171754224 3.4641917718629838 3.7432586600655213 +4.95337777327757 2.8364964582994285 2.3151665574921516 1.1180255047008711 2.4319402134883576 +2.1235119359293333 1.9334808065055675 4.039533239243131 4.285360885587348 0.3107137941212293 +1.794896250207926 4.7868085743662885 4.389101656525137 4.368060350412366 2.991986312136743 +4.755404205163658 3.68872136799794 3.4265619772598166 4.844281475248815 1.7741873773877674 +1.5451704755652447 1.1058938754442305 4.804760991633632 3.705262809160612 1.1840017671757723 +2.2405915390958913 4.7955600190451255 3.748468454447427 2.036187379296001 3.0756739771724546 +1.8088406821060095 2.7569348409431282 2.6610701553392353 1.839931675143117 1.2542531393940597 +1.8158524324913583 2.5405493546340163 4.198182519297312 3.9198468512261186 0.7763094570360967 +4.190387057707725 3.12071654434933 4.595129938204402 1.1496592525853822 3.60769500548597 +3.109820867200296 1.1274352856019592 3.9994493173790264 1.2070789445108931 3.4244977578326274 +3.404828940286499 3.3459034910251346 1.9081776415447385 1.6188168517985568 0.29529963632417083 +2.5077688525533155 4.529633755051215 2.0078420043588414 1.9832118958224116 2.0220149174027764 +1.9148088599597037 1.956423072176701 2.8310591189807757 1.6524306327322091 1.179362900575997 +1.876394414801676 3.23132812895496 4.270287344576127 4.464264363690091 1.368748499065315 +4.736197691309312 1.6512824828626789 3.484999015204092 3.196040971025469 3.0984187248660997 +1.1935939789701435 2.1595863903947787 1.9235882712833483 2.531946246556433 1.1415957099640612 +1.8558707549687807 1.0536335279671163 4.917740550250148 2.2758343517796433 2.7610238915851837 +2.7180342125907466 4.649509476898968 3.1428694836987536 1.1673925699611551 2.7628075816720825 +1.756799460301231 4.2649784931341 4.397830046859067 3.5888536621629363 2.635413601645565 +4.5388276598439905 2.1901835606661564 2.8169882719075945 2.996293038209566 2.3554785721422866 +1.2625510169288878 4.5662040803099995 2.082812730232637 3.348498572574981 3.537807826139409 +3.631941870292649 1.6759807686374857 4.151864934868544 2.670879471356624 2.4533857777205963 +1.722326090197953 1.2204312587240262 3.0452651399224813 2.577324009215202 0.6861977292791404 +3.357272452004935 1.6707023872614397 4.5283725374297426 3.887054558304179 1.8043855834157438 +3.571450968722223 4.678665581499553 3.002091958473548 2.262791887260847 1.3313484870772032 +1.9190880937561547 4.652470797070428 3.143130558534909 4.177618121431646 2.922592260402685 +2.039860565966068 3.2105167880408585 2.3660020928570624 1.7396366156400416 1.3276933762475913 +2.0792615293414705 1.1116936534743078 3.133790565444093 2.5384561027887735 1.1360504904427404 +4.448277091963333 3.7976753562728534 4.950538760892945 2.872995739737387 2.177031837901235 +4.447386364799273 1.8496723466331524 2.151709277775921 3.081805743241519 2.7592023403962913 +3.199940014988198 4.026071579763451 2.388141712306527 4.6691197790991925 2.42597491815295 +3.2973744632243394 2.5428982112034735 3.4822877117624573 2.001801872564153 1.6616475964927584 +1.9385934554333377 1.2135684229372559 1.2069771256554276 1.2953926453252955 0.7303961951327768 +3.0414861222867637 4.748640366867206 2.334614249319677 3.770993131313322 2.231044577642126 +4.838114896841097 1.6736384628164784 4.411326001953229 1.622917355602267 4.217716666697987 +2.672699466916393 3.609298644193373 4.789249334185168 1.6184314611254975 3.3062522594306945 +1.405842244318999 4.831589511090987 1.4997227965941686 1.3007001246778649 3.43152362074523 +1.6000176460813615 2.5487241321510634 1.3437770662718114 4.893026099776942 3.673855290910058 +3.1736198811433805 3.695045453911955 2.33424474557971 4.12134009414357 1.8616107038786658 +3.2765746835420493 3.039113623010611 2.352384227598147 3.4353217622747807 1.108666523026749 +4.508099616606365 2.328864115879963 4.383368918142887 1.239194427832563 3.8255588602378654 +1.497250019059277 1.1017612664610863 2.7913751815846246 3.330936789679046 0.6689828715005421 +3.9529928143545567 4.6869651158155445 1.1289940611475222 1.5324302583820515 0.8375417031712493 +3.793436921536357 2.9324976088028003 4.661065338538318 2.5643321137407082 2.2666068728785573 +1.2573500079849946 3.713610610232933 4.207936685177492 1.5351912281555191 3.6299840804316204 +2.070592760939808 2.222002286599036 2.848459605203625 3.599734520417634 0.7663803511900398 +2.1024535738515664 1.4380737545813118 4.006250969024994 1.4929933285384371 2.5995892967385505 +3.3936930659124704 2.6040866885519653 1.0524370965808822 4.084970828626424 3.133646289414688 +3.641241173962348 3.391992896016966 4.90371882646717 3.2859381180473664 1.6368686949764846 +2.5504896133668016 4.313617868663609 3.202292583709612 2.3203621958963336 1.971401139690866 +1.3923608347781697 1.3024817504486603 3.128062499258939 4.0272698522129815 0.9036880620028833 +3.33346414941899 2.9758704468575687 2.5355594869628955 3.09766347634678 0.6662087893392464 +1.4768010895897046 3.0573290963714346 4.166095095040868 2.5616871510117387 2.2521531100449645 +3.3603136455237346 4.020728990243363 4.327254360315457 3.6683682401106523 0.9328876389682127 +3.101315735787609 2.13370708333403 4.7842052271817845 3.683940729696639 1.4652127725109656 +4.226271490928605 3.5311889843519895 4.278943084694531 2.673353157139056 1.7495881533710802 +2.903606563246945 4.8015079488725 1.9238798405931865 3.025426201561326 2.1944097281322716 +1.3878680393477159 4.8467956238160514 3.8149069787054994 4.949499095019144 3.6402581371376717 +3.201757217408195 4.294760035672523 4.426899303201269 4.111172751657065 1.1376899472544166 +2.1966088796478336 4.0022167845096135 1.12217400300543 2.8375510073132535 2.490529697274744 +1.3560710621596894 3.1275354987623896 3.300346587820119 1.824626481318059 2.305609698731026 +3.930540126962778 2.430393176831108 3.462972498147455 1.4321667291583045 2.524799584788655 +1.9542639918392148 1.3701954164376131 2.267210775477 1.9584635340278123 0.6606519203590795 +4.440472251414631 3.1173631582060186 2.4178473099765045 4.853979826935503 2.7722480611800058 +1.2825068061906149 2.9207810824580327 4.066298658215757 4.041699046718229 1.6384589543730905 +1.9692830603849334 1.5184239867802618 4.062397461121579 3.5622429726392837 0.6733709353696885 +2.3973007680959495 3.467618392806209 3.240728291848178 2.809087649381948 1.1540768873840563 +1.1254554308439442 2.492717557675743 1.8028331884594953 4.15332889002819 2.7192344081674027 +3.272258306072654 1.1326142055400785 3.8180351073724017 4.233605213526124 2.1796273511938846 +4.567837963245699 1.5801993841536985 3.6279566900512914 3.852256286915162 2.996046493035808 +4.240869121081229 4.860432712744247 1.1592220325677296 4.6253075463843345 3.521023691088104 +4.900536337821753 2.9482448395326513 4.481528819222161 3.7180617250062213 2.0962643197465427 +3.076468900848293 2.860864504502096 3.62267707754065 3.6826160487532276 0.22378100007335358 +1.6106708108553356 2.149770225160457 2.272655433336408 4.181184770691839 1.983207606391849 +2.0100840663173742 2.6938388960915165 1.0986377764530633 3.6274670063014853 2.6196369864878664 +3.163605317136426 4.959511116464041 3.2782722893157787 2.5484790913931614 1.9385241168973577 +4.5506409574262054 2.695165572538841 2.7014696390065316 1.536633777716391 2.190806127358251 +1.2045336843160754 2.8793166767952605 1.1750675016044663 2.790316358230326 2.326784678634592 +3.6495915957281375 2.069995150849375 4.964182513398759 1.5719012383967703 3.74201779490728 +2.4793805405696867 1.7371585823869813 3.4420045342427597 2.9345352037981383 0.8991209910520842 +3.03931469173031 4.4859481741639 1.1893331828217777 4.433336206722007 3.5519437005070578 +2.539170725836349 2.763674126445987 3.4789722859396206 4.050343789873432 0.6138950825612446 +2.861476766202801 2.1589763154618598 3.1713751540538424 4.14498547086446 1.2005931585226095 +1.4484541644592945 4.974740689231689 1.3995015635571155 2.398783487098092 3.6651413366345267 +1.9563505562129397 4.498075612030071 4.458736977589766 3.1584146829680058 2.8550314060022175 +1.3797293467730083 4.550828100759186 2.3650266203719714 2.6980212456279418 3.1885345737473276 +1.5286927052630919 1.0080427058967838 1.4135468644863738 1.9593400773826 0.7542987823692425 +1.4002449631902159 3.653245233116742 1.5676967552753385 1.7832360046913527 2.2632868541852615 +1.411178403904743 1.355470510319189 3.0548649923909825 3.334365490485062 0.2849980663839281 +2.6738332312143496 4.690163027762198 1.7163130927244032 1.895139540015129 2.0242442408704813 +3.2378815489339696 2.903805618338547 1.8407769055401295 4.109065690954073 2.292758325999027 +2.738562342608388 3.6839924468876433 4.800873404513923 2.8222664270047284 2.1928802186908327 +2.906839626291634 2.2331130847323224 3.030789346365713 4.11366491843515 1.2753536597297948 +1.807310675889469 3.2033326521187484 2.757659740673468 1.8223302833306398 1.6803923803351206 +1.7228615267862533 3.9165058037033553 4.727070815853951 2.8360693026905013 2.896197841384047 +2.5821857026601958 3.5999431105730486 4.812709073010669 4.913804520014635 1.0227660684469448 +4.234151337464667 1.2572080115476667 3.96909366310862 4.745011873958768 3.076400597394732 +3.319753252705443 4.446206024099008 4.588433791165949 4.738293231425514 1.1363774452245845 +4.624677316201748 3.608290503918777 1.9632663324996393 1.4409087953488946 1.1427596198680323 +2.878468718456413 1.0630758111664895 1.9867883973060234 1.7621142092342943 1.8292429851236962 +4.347644575932721 3.8855196049837217 3.142127755962586 2.8867049498696655 0.5280154340992269 +2.3649988667603883 3.6561724329517293 2.3726455464592475 4.3122387620397555 2.3300538663209487 +2.129037639577088 2.967059763398058 1.2710768320916803 3.806590198035315 2.6704136587600487 +3.4310490201829946 4.632914855848242 3.636010149001813 1.0345416492168855 2.865679647537834 +3.4329175210948706 1.0295982186896682 4.536466189865525 3.4562212926354925 2.6349331504432807 +4.664037404145316 3.5091813150366935 2.791451638878703 1.653947364360831 1.6209899941386723 +2.0506294515115675 1.6677826323950793 4.807520662461696 4.897728607249443 0.3933308533670377 +4.600580819009259 2.5217561499151224 1.5448298207521125 3.566427146298428 2.899718564186939 +1.835476224287833 1.2891097570269778 2.0669905579131704 4.679624922579377 2.669152419773344 +1.1117548502958035 3.7719005826219547 3.320612686272864 1.8079008393820493 3.0601752317370416 +4.19723478191347 4.111707096507143 2.3690334489588474 1.3093343591980653 1.0631449317053596 +1.8655355554876056 2.6327438375503616 4.467792787128679 1.2061971349040777 3.3506140850112995 +2.8506156045489646 1.3808035002111296 2.3141503264569963 4.692917500324157 2.796226187118269 +4.601588564882547 3.3494833239807082 2.210459714036745 3.108837116209788 1.541054668410254 +3.755195938902588 2.093633430814121 4.462414442817078 1.1034356588289542 3.7474696048890874 +3.1270810369184745 3.5880661451339293 3.9475937312613065 1.0241175092878207 2.9595980285236 +3.020196866731446 2.682598259077553 3.02427408807883 2.001271024323628 1.0772688096953227 +3.1349600380181304 2.772032610560049 4.6652575031206345 2.0525730738080563 2.637771075126447 +3.785917629766374 1.4972398948416465 1.6300692287194996 1.6170651204206425 2.288714678847678 +4.075776377075572 2.6034746693138175 2.247689058203879 4.559983436437822 2.741236511191706 +3.637523825511222 3.126982686285995 1.3149737619353954 4.762797153254798 3.4854179652619313 +4.74889844897589 3.667145173243031 4.058862985889178 3.3870682857881724 1.2733806456211632 +1.6464718377521175 1.363232698478356 3.760034773182753 1.9509660217212117 1.8311073582756312 +4.880180622967021 4.329972629480725 2.35408652411488 2.0583389481880814 0.6246562772939961 +4.019329821832166 4.191844803303306 4.644438866694506 4.422013910772662 0.2814858430699878 +2.936509116867624 4.454739722042239 2.711861798317202 2.016363410203882 1.6699527473426021 +4.841723121716651 2.5621717262119583 4.76046770946871 4.423714927471272 2.3042909974502797 +1.3156055716475015 1.8044335337437452 1.9987573700704537 3.092358039644932 1.1978794601381701 +2.8819606712705577 4.245326499703009 2.4681696300219502 3.9339224351737045 2.001798608238986 +3.16918614801382 4.808905021497376 2.7769318980989537 3.6439617651852347 1.8548365896967405 +4.912487324446918 2.4721865128527694 4.498968258174486 4.257599691385764 2.452208562928672 +4.558573114816146 4.1448382206062 1.1634822094778436 4.445393444480871 3.3078872285986427 +1.0249192369282718 3.0455261014391963 4.697572539036189 4.143325335363972 2.0952427219029164 +4.971474502041573 3.011523699453109 2.510427830461134 2.8396590994505333 1.9874104701967168 +1.2736455595926754 3.612044185282174 4.336854463365777 3.6751834405800285 2.430209183387486 +2.052918026909626 1.54376656916082 3.8631054990994573 3.6538361230765855 0.5504805888210196 +2.771609411875888 3.965977833247075 3.282159702667992 2.626803484406492 1.3623537348217298 +1.89693720570355 2.6531665136876064 1.1182173646953273 2.2496588123081347 1.360897687421876 +2.7797339453684815 3.7719950024934663 4.283442200055106 4.196035072200368 0.9961034140522794 +4.185957847793858 2.2052764878264344 2.4080874007484536 4.815341543162583 3.1173660606179037 +2.183726286469952 4.5202931854257535 4.78543221823672 1.225215721364524 4.258484046922903 +3.343513022487962 2.502959971299573 2.9491169677490277 2.267960472733518 1.0818981479621472 +3.1502605483657207 2.3279948271199733 4.796488836395336 1.2669635433622188 3.624040522744786 +4.971040266247524 2.1308785255544413 2.197591208758934 1.0902135417449954 3.048410079155689 +1.010602187994281 1.058867497055732 1.4265025681209211 4.388453595368734 2.962344245335638 +3.9517345690685954 2.74744259669146 3.2293797486172013 4.130588699992645 1.5041598082555048 +3.7066317280618177 3.5754912718903817 4.748351136520656 1.8363600842524734 2.9149424878948826 +4.553080357042321 3.549581355209697 3.308439434970555 2.0824039868554722 1.5843526017632008 +3.6303075767077537 2.5119389973572517 1.5180026947507432 3.5955448911634074 2.3594342239515003 +4.5933256741649355 1.5557764291278153 3.732042333925074 4.35265522081661 3.1003009162662623 +4.3358700624710735 1.9230970545851438 2.311333398600754 2.8204385461947874 2.465899762538952 +1.3789953881089247 1.9218194125589814 3.1735876731577735 1.3294295024811906 1.9223884310912185 +1.5707715820161465 1.9553188640182544 2.6715903521727467 1.3844625337548435 1.3433445697364617 +2.508407745538607 3.5723764139536485 2.6844393049027304 3.455137469234333 1.3137750902924663 +3.651881930104001 3.044164677559793 2.3772488931267906 3.5944736442883682 1.3604985681287007 +2.7604285617562363 3.5329918909402376 1.1895959159516991 1.2827855767652676 0.7781634857036247 +3.8398997270060375 3.7584332566880074 2.0073236443217195 2.4130117175559582 0.4137868999262634 +4.502164406848108 1.6291916343553448 2.8293896489070725 3.0641461010598974 2.8825480296626687 +4.748638308344696 3.29651595609153 3.310918784463606 3.2600285315344837 1.4530138140280906 +1.3499418233354632 2.4462211563231797 4.319080024622378 2.8820941805821807 1.8074171327914075 +3.236124414658459 4.230363080793273 3.552559772317118 1.9190134716541691 1.912324251178952 +4.044319466106614 2.7232306157783923 3.9668121730423573 1.4149245148040541 2.8735703176937424 +2.3981595764878154 4.200959854708217 1.2435434972281953 3.666629985008229 3.020171678963588 +3.8621527604383954 3.4591448442353334 4.792378414595375 2.4488236205161593 2.3779538375195615 +3.0452922917890395 4.351850823446205 2.290521564883851 4.766735988363302 2.799773752947513 +2.9192507029888772 2.2001345256858076 4.343501082546592 4.03767378902317 0.7814463576745629 +3.8178165752005833 2.462717510180249 3.1647271992946586 2.3305784143744894 1.5912566327914484 +3.2501585695305604 3.2236427153448846 4.995179318397671 1.7370183059169135 3.2582689075294002 +1.8198666128022918 4.175192149179178 2.7289309681984113 3.6826821301616564 2.5411020564423046 +4.877836686975201 2.169070740282128 1.0295018764855075 2.7301607583515572 3.1983829643171093 +2.658578224528413 1.1427952540221793 2.9272143493937914 3.44365597218041 1.6013462971584809 +4.962486042909972 3.551040766944029 2.0145866293524834 1.6546770811816245 1.4566099855181303 +1.44353202676945 1.6019112485405604 4.299963953810169 1.0987956941185826 3.2050838061969116 +3.715508462332695 4.877540912765184 1.139368717825787 3.206131826933795 2.3710396801884053 +2.2830862641902954 1.6768972195335654 1.848776617811955 3.1406338995594747 1.427011000050781 +2.5207341589120005 1.5099126765723838 4.7033750280148965 2.281950463485266 2.623939212494598 +1.4178703615186814 3.833824080988624 2.6697019301120997 4.4858407717979745 3.022448124765876 +3.7692327421885685 1.6866557597190095 4.8753465040391175 4.2544945022145075 2.1731507301799473 +1.9988348766178454 2.2987022002554376 1.8859226243063834 1.7333331227268625 0.33645797327134197 +2.080253967025759 2.007523435660008 1.7180273097163008 4.529045860254862 2.811959285207497 +3.205750122870605 1.8625927204947756 1.3689262308294188 1.2538234425609223 1.3480802867129864 +1.5215363201412284 1.1066227408431315 3.602564343919219 2.9169816728701847 0.8013593932366966 +2.7939223723398157 3.2576711752366783 2.8372135822394378 2.6138753720872674 0.5147260517034747 +2.631541807176269 3.691518240385652 2.698930678822354 2.010893043457335 1.2637032193667836 +4.136028750451949 3.055973973266572 4.5225436162087265 4.744307967216215 1.1025868442434485 +1.83246212140482 1.4825572515780663 3.8172630552755566 1.1277606620101461 2.712168236173569 +4.2344815091767805 4.28031802904502 3.37635740458495 2.14770747362941 1.2295046317076992 +2.417625329379055 4.605959514909959 2.4995904874430006 2.4459333149957567 2.1889919140367415 +4.21499905232935 2.2455008057278913 3.241117849483746 2.0910451082759733 2.280699597368181 +4.524930328243018 2.344683655721516 3.5340150504184447 2.361754310982685 2.475413257269088 +3.709512743138537 2.4866139944589536 3.2445129324907054 3.028361188084391 1.2418546316425219 +3.8253645019585276 2.1606932379314463 3.4222437052862844 3.4249839508755193 1.6646735194095599 +1.4415100826985894 4.547797134476651 3.1919686246906496 2.498926823769201 3.182660237265123 +3.096041129546679 1.641198685945748 2.7222077949008545 1.0328453126136217 2.2294645393597112 +1.112603774524108 2.867171172810276 3.7691031159826567 3.1394681480332642 1.8641209585199465 +3.8771269450548416 4.832107926440005 2.9510929185469883 2.823942763517317 0.9634084475088641 +4.254751383210827 3.4660919347452843 3.585902173621722 2.55694042511203 1.2964358856303293 +3.0887145749127813 3.5308404004402054 4.4808084897202445 4.547389272180412 0.4471109998549738 +4.5214876848055985 2.194583166249828 1.8139382130815815 1.8691726996533409 2.3275599856893288 +4.457047348981625 3.548228096029966 4.193830149122623 1.9565795818144371 2.4147965826248 +1.5395071169360528 1.3247558663255985 2.15966907837766 3.4789369920953455 1.336632308379447 +4.898061075507448 1.299639119948392 2.0948905246922376 3.2242105163370525 3.771472419861784 +2.74038544092499 1.3202944056652606 3.5635714587460368 4.3849754522436 1.6405374329648181 +1.860759741882993 3.6659364241574064 3.144158428904752 2.693502062066573 1.8605789462420146 +3.9491749623173256 2.8452763005932558 1.799776126118572 4.62322959290704 3.031580731974 +2.5299281842628805 1.6666017136685203 1.475068449232627 3.0466187035000054 1.7930707728689286 +4.60687743288895 3.7405720341108877 1.4264952041671184 4.989106996965677 3.666427120527473 +4.014984074526106 4.254585919622393 3.0219104718906538 4.052466298048223 1.0580426999893981 +2.561934092955442 2.0937725877807347 1.3959248599502971 3.1591016471499485 1.82427179385286 +1.233767684410489 3.7408391520051802 2.874034171221758 3.841685404260849 2.687332553375088 +1.946310839404946 3.3350716617042133 1.6643359134143934 2.602919556170875 1.6761849170074774 +2.2813924673357695 4.266952750207825 1.2973353720259593 2.9014297206697663 2.552561128801807 +1.3025394352827404 3.6880411908082213 1.1661242953257949 2.4519073323717784 2.7099550999915745 +1.2640415310117592 2.148149748597693 1.7653261492743528 1.1457468209640447 1.0795952410382463 +2.2614010361627557 4.310415591879456 4.949950735056177 1.0115502309285542 4.439533667002833 +2.996746493634797 2.116397470547332 1.9255854084190114 1.6681380449142074 0.9172205554972199 +4.680870945145834 2.6858898576463703 4.257847253396273 1.890693038113524 3.0957016358834437 +2.98091553337534 1.4566114429078603 3.1630740785730707 2.4754442400416163 1.6722253900281159 +3.1089041964599193 1.8079343702345887 2.7914959987515306 4.859780953269203 2.443424879515009 +1.343979870911654 3.8632714369801464 1.9662836047610681 2.4436233251525423 2.564114506711283 +2.2847317815573094 2.0926062204531295 2.5486149273496084 2.2748412265175912 0.33446116440755086 +1.4872624517150448 3.20264075388141 1.0666027315000632 2.129287114376601 2.017875322499596 +2.8581006618863545 2.0648677181715467 2.918605938833623 4.915855702168191 2.149005611936471 +1.628896305893226 2.1151845813266332 1.9367922750195996 3.2353773738736624 1.3866504771534223 +3.3638419554452677 1.2709159035330608 4.725767042249304 1.1485190854276435 4.144519562429108 +3.195570516058001 4.254365192715317 3.2299894050124 3.4765776321470963 1.0871301307016121 +3.3669802632118846 2.0082379109002217 1.6933852710536996 4.657661780411532 3.260845903120245 +2.0759649385328256 4.729135725026806 2.689508232883449 3.463571355273409 2.76378163749403 +4.517864425893732 3.2540212011152176 3.1564412204860752 1.7165018543097577 1.9159136397768064 +2.798793928352375 4.394588068688385 3.9191160484603023 1.375092653986154 3.003100725910224 +1.4092551873126395 2.2157168445392252 4.7980842280713 1.7986963485949214 3.105915011091974 +3.0717829022004635 1.1501673286816452 4.8594736538438905 1.2758588218154938 4.066313032308749 +2.029529048916594 4.646782657814427 1.409040596884271 3.9867440185154663 3.673495798715156 +3.6747776250647606 4.630966846055765 1.7733454597526515 1.7199338517898597 0.9576798140320985 +2.704331388988468 3.499773080708408 2.582446892992861 3.6537343937226257 1.3343104564328745 +2.295425801170921 3.4880492717658966 4.246176044157731 3.478044631918714 1.4185826056604216 +4.66838061710245 3.1732612002328127 4.213728536276995 1.576365046220872 3.0316774646029905 +3.9185227481084515 4.571932221809412 3.612688956276883 2.360015873709417 1.4128459902307977 +3.709242309970828 4.024782223297554 1.5621045152411845 4.0355041276082915 2.493445623902794 +1.7975826714008778 4.991885420101797 4.230958509120458 3.2531845678978084 3.340600534408794 +2.4870374048594837 3.7967772906358648 4.058996526090649 2.3949270898769592 2.11767458712005 +2.699889152076511 3.7844439703043005 4.207113367255937 4.307059674925345 1.0891503193581045 +4.140456098162322 1.3191819901617037 1.9793858786384604 2.1476533014607595 2.826287585872666 +2.513602325310389 1.611165551310786 4.878670995928162 2.713054258951672 2.346121902744934 +1.3944180849656433 2.313128159630193 4.205504242688971 4.3779300682572995 0.9347506975729207 +2.617890924002655 2.582155683744035 3.0754561821927626 1.066614139855135 2.009159863838503 +3.0929524808021864 1.582703101900273 3.9863191262060242 2.3079774683150016 2.257805108304524 +3.434339705702983 3.7026234546806647 3.133774008060777 1.8267959794882929 1.3342292670814628 +1.8578036527992454 1.5883649274461837 2.2381841903377317 4.920741646836442 2.696054846277559 +1.4388230247747948 4.327983097018004 1.783520304047535 4.28248540205934 3.8199571311895024 +2.5865172609798672 2.8754051796298654 3.005251926581505 2.3091932882631485 0.7536271342776432 +2.3740874117216655 2.3266088730038135 3.117644938616077 2.2312363727890414 0.8876791972386899 +1.6422248342787658 4.874445400141301 1.3222859220811687 2.1349584759494853 3.332819597007252 +3.593233927786288 4.739070898209389 2.1002969858850586 4.162661589855198 2.359298650552173 +2.9559102249427713 4.882792142881424 1.9208298520409808 2.9185319821342754 2.1698579368409443 +4.363483045267385 1.0252696339044958 2.3828705714690717 3.0174884847077243 3.398000687993815 +3.029728478099174 4.967810388193141 1.9426430464032278 2.5482083359550973 2.030485363193618 +1.5455828770237843 4.3335230913496385 2.9487151746486906 4.524894946731527 3.202647859596554 +3.4256120660388443 2.8742364312316164 4.326384681773066 2.2881967087345805 2.1114509949553177 +2.415321317136278 3.06098339965134 1.5177962981530668 4.699507285739738 3.246561925072035 +2.2738829600519987 1.8240324650269568 2.017366064658356 1.892728252347459 0.46679765651931215 +4.654248071586657 3.143674774486198 1.2100044925017754 2.4182032616566107 1.934315370279679 +3.533330534015982 4.9983327686261765 2.867701154172669 2.931572010924214 1.4663938876560552 +1.6742458513452783 1.7936832357025736 1.862894612825102 1.767437108659974 0.1528967752555551 +3.7247343864290183 4.768315933442678 3.427551085016524 2.619005498311625 1.3201546920900569 +4.594169224351872 1.1696292632790501 1.4546120623873242 2.8390202204427473 3.69378666047121 +4.074587361403774 4.268670041674949 2.043878249308699 1.9498740404481012 0.21564989697365985 +4.067445648876474 3.1936426186315656 3.0342551319839814 4.805709212501597 1.9752420851753067 +2.732853397650293 3.511020005044869 2.3519337609112747 1.3212837301766336 1.2914266354374533 +3.130026898239661 1.214171412719176 2.915835084760666 1.1757588091242646 2.588120493028016 +3.14373467937465 3.0799573635460686 1.9183892735197063 2.3807111066109328 0.4667001428831262 +2.4362454126816924 1.7649230471911066 1.9991726848183933 3.8706364587992965 1.9882279486343413 +1.8692604734706424 1.7434201129567386 4.753388475358262 1.4974600570610157 3.258359351178117 +3.975144419649094 3.9304153497718275 3.657304305483853 4.078297060741809 0.4233622440319524 +1.000801190571015 1.5480852189624081 1.5773138251548446 2.1051187482054394 0.760327458749686 +3.8947099976011286 1.5058588390159424 2.020009063874969 2.4647443881662805 2.4298969868178126 +4.442383127798733 3.4672693811178954 4.44721549921133 1.9321321407265053 2.6974971953819056 +2.818980225697624 4.518384134514176 4.090575603820213 3.5021784476797055 1.798383957517196 +3.261491945381237 4.294870840561055 3.802838065425489 3.923325550836493 1.0403793419439507 +4.2875473098497405 1.8879744236021643 1.787527309160791 1.533204599532286 2.4130126557992417 +4.653195407157353 4.860008072705256 4.742026640012837 4.056466109949264 0.7160759170730955 +4.924646466380451 4.085674532631151 1.3827053568198742 4.0032564449414565 2.751574442219263 +4.052019448299718 3.429375726104993 1.1217121399355072 2.464661405169432 1.480269547677328 +4.536088124181543 2.5260748757836904 2.7799501486591005 1.5031179612322516 2.381271444750497 +4.190349813943325 3.386282256748563 4.036530844581167 3.6433616186978215 0.8950456282865474 +1.5444301297706744 4.74773306897665 1.2966471433856088 2.890087530511408 3.5777369925204483 +1.9972565133618403 3.1223559574991135 4.31867049386582 1.5409680921456816 2.996911642294418 +2.2531038198504834 3.5408033623220674 4.393388276860341 4.755240459099641 1.3375750870410492 +3.5002282948675854 4.964423143099616 1.0083015896132816 1.0885463601450156 1.4663920951733576 +4.934660215021612 4.215164346043087 2.6227513342581656 3.344208932441426 1.0189089122456045 +2.3584887285861353 1.292414083878044 2.9390778434221034 4.287395679299644 1.7188589629853224 +4.0612847629932745 3.7752696586445933 4.439896443361593 3.3346577466879417 1.1416467126657257 +1.0406971334839636 1.858550192647427 4.117990049602804 1.9581713565360035 2.309480550535947 +1.5540184450869972 1.2308368005498163 3.195451217930964 4.669418128066523 1.5089813874068572 +4.058064997202471 3.798373334713298 4.028551350223273 3.529603210822454 0.5624846712381851 +3.1695995724154526 3.8776302686689434 4.190488318133014 4.745279588314789 0.8995003170133459 +3.5594854064255874 3.6053132981957927 1.4253399422862003 2.664279679360077 1.2397870251639145 +1.6622655026325566 2.594336231733178 3.2584691322715704 1.453994648548857 2.0309810453208366 +3.812869707543098 1.4685950285046512 1.5033185281319197 2.6370025016851613 2.6040090481164384 +1.9870849790685776 3.7811222083036387 4.845728497658717 2.284453933546445 3.127090816182019 +1.9349170729005096 2.785081399609565 1.78944133620125 4.490401230851184 2.8316009137793485 +1.197189988493625 1.0465996309102232 1.1922959990574005 1.3995834647571028 0.25621387400627255 +4.29047815926017 4.96786568388955 3.3456672443305235 2.7259749337924912 0.9180808342752202 +3.596362278024263 2.0301835481935506 3.6841436967198367 2.9088122971190744 1.7475853607137535 +4.494657521766532 1.7624203971440675 3.45078176880749 4.376369467189804 2.884758619462277 +3.2316758539109083 1.2818603635068286 2.145689089469078 4.5086053748586785 3.063519841355543 +2.4900203133714256 2.7985204268536443 3.1266551527534223 3.251979369678968 0.33298420287836933 +2.0035567701092027 4.220680430340029 3.6745861557133432 1.5073771385137933 3.1003922734045086 +1.0681355119416898 4.736275540418498 4.859709504682515 4.35799459549042 3.702292413980759 +4.795224237325248 2.0451380305460263 4.130411095342232 1.847020094234351 3.5744717943575632 +3.9340894161384616 4.3793704793632475 4.194077655853279 4.81482510431726 0.763938885017079 +2.913892268083369 4.593124006550726 1.3991359619749422 1.1066379068196603 1.70451586784803 +3.343791336180373 3.9851746074786423 1.142589776531811 3.6388819967028585 2.577372179020284 +4.829672748863801 1.7067272939072797 4.591227886372826 3.229758059769838 3.406814994005979 +2.1801879775900717 3.364924313451351 2.247233195817993 4.676980215885541 2.703196398162209 +3.0318330796555224 3.7625985979797556 2.88677479337375 2.4800871917119887 0.8363091821312743 +3.847972644259733 2.85914267838124 2.2221889161769095 3.128080801706861 1.3410536192443137 +3.448323409891612 3.840244739515651 1.3237454670354456 4.703869380779062 3.402769460435975 +4.140397925195925 4.4957449462770835 4.640265394422933 2.76511329145205 1.9085248006424693 +3.611282651053114 3.864033879017223 2.3235773614629394 1.250722363070802 1.102225490003002 +4.835055310060564 1.010293855464218 3.204933171779811 1.9963682990376097 4.011163077735974 +3.4732163702536787 1.380562109721089 1.2942394778659376 4.594161877419971 3.907517075740508 +2.8730055794160174 3.4832530049121084 2.1269569456191935 1.4655793419067678 0.8999012473693975 +4.873186880314101 3.0878134812087583 1.3164798860256104 3.446217887769515 2.7790901623202307 +3.291757321694525 4.693088577713428 4.480455267933348 2.3353324068160357 2.5622805034546157 +2.347806815189205 1.8383143506477753 2.341250139122528 2.1456499406230174 0.5457490348846693 +1.9278861197406245 1.7880393058141548 4.976740947186344 4.602034726082204 0.3999523515364416 +3.592329840159982 4.28901042726687 3.3849748724988964 2.9536944500573012 0.8193696621385241 +1.0867473146966984 4.652734787672241 4.0552760038529385 2.7742331348194744 3.7891077432187097 +1.3761666755528101 3.476409940516524 4.780577538504357 1.7580670355814894 3.680569454894784 +3.6431856179069384 3.4675587872567166 2.999387044336274 4.710963081083696 1.720563080276993 +3.563114373134018 2.422731724400426 3.4003419429443738 3.4566480787025196 1.1417718539430972 +1.5590953266101777 4.461283285526161 4.182648745179904 2.3180021024985518 3.4495799818151425 +4.962724906880608 3.693722248929927 4.476743286453209 2.6645062932340067 2.2123676605569127 +4.769314465670188 3.648524105273751 3.630745964562304 3.431459217512451 1.1383699923606945 +3.3868944467214783 3.943437341487491 3.387696502178398 1.1411955626107506 2.314412768974639 +4.575087532986445 3.625115550512496 2.7904433117035365 2.8975431063847155 0.9559901325360192 +3.3839600964730003 1.689525545764008 4.85728123982792 4.215984534929288 1.8117311915265542 +3.6546532555206817 2.4157702944751005 1.4661050501103743 2.2241239091909066 1.452385479785177 +3.790919254539708 4.147617752463839 2.1760694996369634 3.743564940833619 1.6075682805385372 +2.0070973608093636 3.058213864822872 4.7397934304172065 3.317220051915855 1.7687738471128323 +1.827054949875512 1.7763950608789965 1.2646687307718034 3.7127593839035327 2.4486147655979034 +2.5461595943804607 3.5360824365396133 3.077120889639971 3.659157024003062 1.1483524263625629 +2.713727286932087 1.510431438063078 2.68543505007535 3.272968996415798 1.3390732011386717 +1.571574039646129 4.962179057089349 4.885319127189752 3.926395653120916 3.523597112814032 +1.2993923955066018 1.7987381833551983 4.458485551572162 3.302316070533505 1.259394332497702 +2.859654299040136 1.400752785548503 2.112669367163331 2.7494936488361876 1.5918350391282157 +2.247528542095949 2.988063560657782 1.2889908343611949 4.155565015178614 2.960682294310795 +1.2320338518873708 3.926196720263438 3.53026614659042 4.483575532608972 2.857851001505751 +4.165945400649835 1.8634584211093754 2.9192054701107897 3.2914238572567145 2.332379218455451 +4.161704684609196 3.8754608739460417 1.0743122337041133 3.55391893715798 2.4960739017417564 +3.877005013533749 1.0934241862571175 1.7111965935374833 3.6225407359457944 3.376619411882337 +4.477045193985779 2.9380737075023435 3.8125225379594347 2.3433659063656664 2.127640581575042 +2.8805702657007153 2.4250071900390857 4.125655158472824 3.6719729088822066 0.642934910780156 +4.385620810713739 3.2423949501254663 2.566251189720302 3.5671984267476597 1.519493579989892 +4.960105126764021 4.699036172233887 4.169888050819747 4.911093884202848 0.7858390970552398 +1.47763038539847 4.813845946676439 4.687403667898474 1.0397893180839164 4.94322007564769 +4.209373015608664 3.880988331013373 3.899482484997301 1.4574350076393823 2.46402767491498 +3.690650744803747 3.942611569588971 4.268198337178207 4.773824879139064 0.5649269485178988 +2.3334706163440613 1.3509798688468044 1.7375457502347564 4.764610165736993 3.1825158357057104 +3.2243135089050123 3.4495869677927993 2.0425526216328715 1.6911629559304484 0.4174000819857707 +1.1619413721903826 1.4533590823194644 2.2605906377370317 2.002822690709377 0.38906117294293113 +3.4016669985346293 2.8897671047985627 1.4795251955628683 1.0199583154583216 0.6879267537289294 +4.2903017896370255 2.3864917025236867 4.195046700058385 2.04667394026841 2.870539733708992 +1.4468587758783125 1.2215180420938405 4.257058466303517 2.700791585703164 1.572496438773735 +3.37741386870466 4.827663454812711 2.716276959605743 2.6815383804903936 1.4506655820296859 +3.154069370548204 3.390820542550343 4.678263516380685 4.104357490868262 0.6208214264696835 +3.2300199944897425 2.931711520264322 4.983861877234894 1.175428245763595 3.8200987776648345 +1.527519945986954 2.828350854835419 4.035592473190603 4.233203149686204 1.3157549288832522 +1.862812187653633 3.2222049140402693 1.2546166207007001 1.8917690173406738 1.5013033541216627 +2.5528947856735544 3.8415797299813126 2.763702570565256 4.250576105218536 1.9676132225968164 +3.1554830498424558 3.9982917731056324 4.338539397873715 3.283594699364136 1.3502721432814841 +2.714372611110119 4.028206558853363 1.2602440806102861 3.080954658295547 2.2452497967793232 +1.3598088091389133 2.832202916126724 2.3862046040299485 1.1757225492711707 1.9060984264159773 +2.739395438521668 1.4076217411806162 1.4354602515971409 3.2110683399787288 2.219550689769344 +2.7932814635459553 1.2669717809321033 2.60179492530376 3.406636937711257 1.7255120724518118 +4.007281416538432 1.649963222827921 1.5543257449504084 4.550452349914801 3.812312119878702 +1.4379589266448636 1.0649949118075317 2.415089396933673 1.3694038882911825 1.1102073407019455 +3.5408553927974458 3.9252811204697893 4.939090163325885 1.3957789451141478 3.5641040289533574 +1.4770036164943599 3.256951208388138 4.202252636250071 1.59026627267031 3.1608046749862733 +4.712489544055944 4.786018126225794 3.395504107369295 4.669120684357028 1.275737291754795 +1.5977273285942344 3.778725331921346 1.0378436818405485 1.2863172618532066 2.1951062412742472 +2.7449742199392286 2.0706607681789913 2.5531585102495167 1.0420790838511191 1.6547083320359863 +2.1660244210599076 1.1438357670504762 4.181590372589408 3.4775404448546974 1.2411913410626358 +2.5311730909474974 1.6688013538842195 1.920740970315037 2.322718418889149 0.951457241313391 +2.493228649472326 1.4348875707692148 4.384804794218697 1.0664403348742941 3.4830487398126566 +1.9086331432638253 2.658635099490464 4.28204631610601 2.7335070217026267 1.7206036384522478 +4.631092119806315 3.5406499778481986 3.395290214230626 2.6680379736297968 1.3107096880763225 +2.210802104971573 1.871577577670478 1.6397973962854024 3.0697423989174406 1.4696312430249265 +3.1036090780983003 2.321230881271092 4.225863729215785 1.4669380193599029 2.8677145456572863 +4.024973345733494 1.8971106759271708 1.9648651721459243 1.8406970323721845 2.1314824110205945 +2.5339168616577674 1.8079568322348325 3.7383027311724684 3.7561413320301544 0.7261791652204767 +4.903449934271711 2.636373549669247 3.839567205035306 2.3923880501971158 2.689602728995559 +1.8259539119489592 2.397395340570157 3.696184400185649 2.42680726808436 1.3920716970926206 +2.3730180062344184 1.9791111489772448 2.3714507252980224 2.569725348413687 0.4409936942473011 +2.2686238208095535 3.2006146639604336 4.043305410654872 4.2899631995341885 0.9640783145221771 +2.7831595633998356 2.6281025503364273 4.884967516254775 3.3800300666057934 1.5129042946122297 +2.2736135201644454 4.028465398573966 2.32112591299026 2.4194368236385455 1.7576035247773931 +4.999056436866953 1.3449393179348728 4.05683812181303 4.799427813418241 3.728808304130263 +2.797799040004889 2.879336967281376 2.478011792138921 2.792304984998143 0.3246977743412939 +4.662162823263456 2.89099541301609 4.6006831175391 4.4317391444671586 1.7792065819234408 +1.9216946222609246 4.450031900201012 4.68705229286817 1.4664844269752249 4.094453171040515 +2.822213425773705 2.3325557805324584 3.683756516355454 2.1941759698118206 1.5679970708468915 +3.6464458429245217 2.390068900671146 4.08014577050959 1.3102375906240367 3.041525003353226 +1.7230978553290806 2.1781501296664656 3.777221582872473 3.8586734373749323 0.4622845195131636 +1.91964758245421 4.883891849341511 2.6287655350936925 3.3537676481300585 3.0516179540829533 +4.942908039033485 1.1739702868654933 2.1509338347785074 4.561200113486777 4.473731698928236 +2.8917504595303516 3.623548306674961 2.84566929110308 3.2762564635601543 0.8490779717847258 +1.4407572636031283 3.4368507420478407 4.257522619445872 4.9025723110502675 2.0977316986040986 +2.547128019570932 4.050212092925701 1.056435328539954 4.848577346923495 4.079166927101999 +2.9838073282975723 3.263123422431426 4.86628958868074 2.285412053874647 2.5959480599790448 +4.665843861481267 1.508000684142048 1.4442808409809942 4.416540443425998 4.3366231882646185 +3.577201588628244 3.560749640406169 1.8118294037819562 3.2206935874453926 1.4089602388321476 +2.7188558980916406 2.5057475179954434 2.0559651813839124 4.302453617452608 2.2565738354987634 +3.8783155134084297 3.853719044955687 4.371462097562432 1.9902497774233692 2.381339349996637 +1.377108004545871 1.2838700414074724 1.564878031815709 1.6368477323242772 0.11778351141603133 +4.928697130199401 1.6902732959365911 4.865634473739889 3.669874462484659 3.452134257939362 +1.3376360549003792 4.344998837166006 1.2144070549661854 3.1845912037621624 3.5952547175858602 +2.980611618491991 4.10640942701398 2.1209302544273694 2.9602335221802276 1.404226007782771 +3.979665399727004 4.521665134413256 1.4363049124547955 3.3734832938586923 2.011572467941085 +3.346094052806675 1.2162709125780564 3.424019498750607 2.7736706465775405 2.22690373347752 +3.7512198171723474 3.3351322036213915 1.6870080427252572 3.6616268354672212 2.0179812384658735 +1.2507849642517792 3.996799051980393 3.6312533132015434 3.9441755151721316 2.763786112290554 +1.611295760883213 3.198565201382554 1.7225259240497022 1.2162025946708832 1.6660695035370954 +4.602759226781911 3.98870060712924 3.2536652026997395 3.9899744650094866 0.9587592597377447 +1.535132972656994 1.9219520095680451 3.8231151882265655 4.46923494408898 0.753060227493458 +2.8181665740846524 4.756148293470666 2.0827090356058577 1.3997957644704897 2.054785555859097 +3.9021391872537774 2.9306339354610964 2.2066260318786344 1.3435417114967554 1.299514139342012 +1.5342337063086968 1.6418155918797481 3.4890244582028513 4.853635878667898 1.3688455687062202 +3.3981280680185044 4.187516970424211 2.356707164482646 4.097141123832364 1.9110848244123075 +1.980607856632854 3.956106629589285 1.0399406791451997 4.539716509968773 4.01883394381619 +2.942002240624335 3.260646292363066 1.5639982733019928 2.779887222354743 1.2569486736287512 +2.1524890934071177 3.840647807360065 2.3624374866357263 3.9438155680263765 2.3131442842585597 +1.1790642665542048 2.7467221456551667 2.3540840636380485 3.086842076261877 1.7304581852711003 +3.742577032111515 2.602030126776391 4.659178951494157 2.428258900213286 2.5055641118272294 +4.356367334278412 4.862871456372428 3.136021441201247 4.966873365581247 1.8996223821339278 +3.044253071176604 1.3582827156241732 2.8442708140327753 2.4474656629160902 1.732036479914417 +3.7121633706014476 3.1205951884568948 1.1326165064232332 2.488199718804608 1.479039810084914 +1.555600183614943 4.445611682938837 3.0551669421422716 4.726730830047025 3.3386063406115425 +3.3441597805968555 3.3593165494905386 3.8963436994564273 3.542392342258158 0.3542757272320438 +2.9419841932556374 4.551410529386425 1.4883041255952918 2.903039349325657 2.1428319777095863 +3.528240796104109 2.7830867506994306 4.47464986459157 2.3210352007363158 2.2788836459449477 +4.491599965146493 4.798522751392445 4.44468743630528 1.5801644568549191 2.8809188632302978 +1.2994256419311023 4.654126398046337 3.2785776492335095 4.597784355312463 3.604764000103725 +3.70654973312617 4.250045851788308 2.3108611013421965 4.799261878970843 2.5470623198311544 +4.602017541961045 3.099237483503985 3.656757570476452 4.767372042911134 1.868639186808832 +2.7073881212677358 4.785971211139721 1.728164548152502 3.8845189779199236 2.995057944060407 +2.136392016065072 2.7435992384136108 2.657742490195206 2.065051641778502 0.8485181510546139 +3.2123400842488836 1.593476722702193 2.652074977170561 3.7310315670193335 1.9454731830935996 +4.899108467495273 3.5988642787976146 2.568871670305003 4.1600474255305535 2.0548662326924427 +4.77996837438322 2.540913770092883 1.0253515724660067 1.0842242788552285 2.2398284569473947 +3.235047279248924 3.82230052036102 3.272161863946439 3.327429610095248 0.5898481948442585 +3.882857450649257 4.047547392051021 4.192979466817972 3.4092743303326123 0.8008224008807776 +2.1729494450971427 4.1622659581118135 4.255462405237157 3.50944634435995 2.1245988214342004 +1.8647876222002502 4.985314976570637 2.5022812572265654 4.153731034307497 3.5305774790527544 +4.370407438800422 3.27632654278848 4.450853191292026 1.2122805921632942 3.41838638641768 +3.684296279365078 2.4903820478038012 1.8301109542619054 2.3217786554030146 1.2911887238780926 +2.8393633067968977 4.839789631002462 4.766550684066707 1.9986316309914174 3.415125380268167 +3.567328991083993 3.796826569731408 3.61455824962908 2.0684549621941652 1.5630433500137084 +2.5790793053453642 2.297678195302241 2.158238399559914 2.816637354647124 0.7160138048902634 +2.460817782552881 2.2543544455244198 1.9206864320284076 3.512463699581976 1.605111204570335 +3.3137610802660733 3.2765155600590026 3.772322497994219 3.3320950214154035 0.44180024888001934 +1.7235501724179954 4.746878662203748 4.384017408639982 3.1509443532154697 3.2651162792715587 +3.9347272450707824 2.24213731674236 3.6587417083250773 2.1934098748652056 2.238762615292136 +1.8331836220958286 3.485670984392878 1.4260333011102437 3.5609480378082816 2.699736175170069 +2.652475261727346 1.0247189310227909 4.036132667400488 4.584980381963178 1.7177964040972507 +3.6029518031987804 1.7461139241876706 2.7289450281454726 3.075298224587643 1.888864062238515 +2.035700881103361 3.855082403829279 1.8208716964977802 2.6341321110433036 1.9928727072001455 +3.8078251739415796 3.528831481934344 4.8589091869046666 3.745507338770241 1.1478245317159685 +1.287162209195162 3.053433620494565 4.192774545152243 3.0880033743401447 2.083322835815688 +4.301608370265273 2.4649226577110173 2.52328220524328 2.9196565719240244 1.8789696765148969 +3.2224408657943915 3.250203480692038 4.669611878636166 4.71224471458102 0.050875549005940636 +4.8569896555859255 4.651094705796417 1.0621825952945332 4.054634060415175 2.999526379522524 +4.829055344585684 3.58947715416256 4.680444735517998 2.149941422186105 2.8178007574980097 +3.298839114663819 4.386102476658703 4.586162600456116 4.2400086409704745 1.141036450777978 +3.249397662127894 2.605124720684002 4.74705605968761 4.92219549298094 0.6676536858065517 +2.940085796952584 2.035504987028552 4.039989708464532 3.4913874776583205 1.057937072480386 +2.41301063936047 1.6953507436941995 3.058097599019039 2.9068812327521534 0.733418103999815 +1.77793307527898 1.638546060574611 2.6547737804459755 4.20719025136729 1.5586614895659627 +4.5764640669686845 1.2242087461916684 2.771115757656537 1.0814226628925678 3.75402164220864 +4.698066721942686 4.919241587769253 1.7170892523106058 2.790384287204266 1.0958469570157976 +3.5152882896835402 3.4820649228083735 2.384055616326102 3.0125705623519017 0.629392428842559 +2.9886505127806657 2.684164941734937 1.282446917486575 4.052317860370032 2.786556387946444 +3.6074162814760182 4.839813284794586 4.978766241771117 3.3879043650962335 2.012372700184068 +4.3816077841481365 3.564448492984082 3.1898089655593314 4.853566271631737 1.8536012733716627 +2.4989067142883363 2.816907096060812 3.3227275565017806 4.925860199510133 1.6343679248830065 +3.8607198491878596 2.438960443852933 4.686274771416353 4.716856820302921 1.4220882772783217 +3.9298304320219395 3.590781962307129 2.7969339902374872 4.608773725515116 1.8432897469326035 +2.448435818717455 4.501967851271665 2.083060489897705 2.5738666292836427 2.1113702837695603 +4.314385606095524 2.4383625316780457 3.7956627155255105 4.168264517304886 1.9126669021123472 +2.0251001937189144 1.5385116735652602 4.241666216034641 2.336977361376344 1.9658606311244087 +1.9258927279905005 3.9416264394426337 4.936359008900459 4.639783436055545 2.037434530455612 +1.2760637851847116 3.4425965047017084 4.470378913485117 3.051698732305171 2.589694476421973 +4.110681640420921 1.7736579638851944 3.779779392989792 4.818797409682752 2.5575844274825292 +3.688560844151902 1.4132016296413323 2.103267690962925 3.238246470093222 2.542722238887735 +2.1712298160417443 2.458005880623429 4.45307241540075 4.362020647450278 0.3008835915497307 +3.520686895658642 3.1092290008171966 3.979796876060832 1.318780740938092 2.6926389417467242 +3.0448931632035032 3.9735399863695045 3.254166950323803 2.750845973743439 1.0562750246229045 +2.914432295018865 4.836921358425304 3.474095612517302 4.524357953049391 2.190665465756309 +3.164783842243036 1.4183682427243074 4.5062438211371925 3.3621997196539954 2.087774976471568 +1.6486786059838958 4.168379177946827 3.295071417684269 3.3919956064158634 2.5215640524705294 +1.9757449580639008 4.755952396926025 3.3845592941736222 3.7876182434239536 2.809272133431554 +3.3007591955325166 2.2690190205710192 4.403217595597839 4.955131958513329 1.1700842929558501 +3.1462831203452435 2.196501998158389 4.324812924383576 4.922692382407268 1.1222940908644334 +1.058519159681223 4.758370586753225 1.2749446705016076 3.949208067439842 4.565148989749443 +1.5545816551457179 2.5612357930207 4.657229319543108 3.6663574508292966 1.4125082702445404 +2.4455066153258045 2.1971485476817754 2.607204073563786 2.5666280439326106 0.2516508373610272 +2.127488557823371 4.484054134520694 4.430792217156384 3.003150618715743 2.755278906185893 +1.3580354621524755 1.2570402730977475 3.7187305651146483 3.3066275706479518 0.4242981336991931 +3.5510973312862437 3.3404153914459283 3.2213828180229447 4.1088261405796365 0.9121088369955302 +2.9763984207565453 4.460380357420962 2.9406487774013197 3.2570679816732415 1.5173409310956945 +3.2320758638296834 1.321639511751211 1.159405474197241 4.030388929927285 3.4485233156263457 +4.377852742972024 4.0420619639170745 2.671424040066643 4.904310394422573 2.257994003262021 +2.3307560712950566 3.1752673627968386 4.039929713397239 4.052474129988768 0.8446044540858341 +3.4757064555773836 1.7906772746603452 4.547716230222482 3.3025504946934205 2.0951756607687035 +4.225136849924107 3.02234361644734 3.630521247641688 3.098821735924278 1.315072596193088 +1.6234622769783438 4.371184122302036 3.891036771997687 4.262633795465983 2.772735055341482 +1.8553421649849713 1.1213439322056593 2.8817384188750954 4.55078312080572 1.8233111700326528 +3.9161179397890575 4.20703593909509 2.3791006873049794 3.4897912966460782 1.1481580518372574 +3.723374671877611 2.2655784968979935 1.371906196339721 3.3616758257866532 2.4666481034096828 +1.6214092235200313 2.3199414646026213 4.156739099690027 2.0573554255025868 2.2125458420734745 +3.1555363563968144 2.7585592353330197 4.557105881936756 3.423047432593001 1.2015321057616646 +4.892612137293208 4.028911326273548 4.289250270538757 1.9016137629547853 2.539052418384426 +1.4610240944907127 4.746665104409505 3.435545244381895 2.479536692652117 3.421898478482471 +2.3377802895428306 2.753031695398996 3.9832684100432383 4.257749577895334 0.4977686627048475 +4.4817054214077805 3.934618243110953 1.5473732150801038 1.6827700465064348 0.5635926566387065 +4.050145403983541 1.860417616468534 4.568070665376428 2.9842304413208796 2.7024910062295677 +2.544117451993918 1.0407281556265313 3.986731649441121 2.076479711561012 2.4308932190877366 +4.6282316493880975 2.324316786704678 1.593692542432525 3.6473668263175787 3.086357360835642 +1.4380830702020915 3.5023852119638046 2.915290137059664 2.755598693577717 2.070469678503731 +4.420391566937926 4.886648377422691 4.321988278618485 3.1245395728234913 1.285020940036983 +1.0533241015571426 3.202628876589057 3.892639668693133 2.470208516863409 2.5773671445237722 +3.823915615986659 3.560341655613416 1.3612948991086706 2.502999260502135 1.1717337928948255 +2.149615657970096 3.4408723420108114 3.0597290721920247 3.5801134312833587 1.392172297263066 +1.624142683772789 2.3248805042806837 3.241718357059846 3.3990980369493284 0.7181934674809222 +4.494089686418391 4.5213175740385285 1.612841751591512 2.35388264379764 0.7415409373634803 +2.831658743182181 3.9994311525968644 4.994524793209205 2.3759906478118733 2.867126343711053 +1.0839404662553478 3.7169624055894412 3.279452540434525 1.5864749043746573 3.130331900807569 +2.111604356756906 1.8922685207580967 1.5947660101920964 2.811701300709657 1.2365434526373733 +3.3208267788708015 2.148221537545213 4.851484338133836 1.1507701555436065 3.8820469488671447 +3.2694197617206733 3.155386221696563 1.5192371171238808 2.1740928608852914 0.6647102326485885 +4.697132799945085 3.6695695414872795 4.5041732898064915 1.0929621818812367 3.5626180644246817 +3.8094780779478166 3.968015603671668 2.585061799612698 3.261368578936095 0.6946401995432075 +3.6896853317949745 2.3930276660827188 4.311822413953149 1.0150268648414307 3.5426236033049285 +1.6801774189053695 1.093065493857643 4.87408019629218 2.5428231024752805 2.4040507586165614 +1.4800638932803563 2.8893089087525547 4.396777730056586 2.24353317753961 2.57340894856944 +2.212271868310507 4.7957209871381306 1.1147497030597502 4.154008580901838 3.988897576538306 +4.55245170855579 1.2656581621307796 2.845567969435865 1.1507458402786828 3.698031079683076 +2.227325373610515 2.066938500120255 3.798601037615471 3.0291468551933733 0.7859921679220724 +3.0282733189601396 4.836023510721482 3.7186293363561074 1.0787695903062633 3.1995031230845075 +3.3042206119653925 1.1872242605408565 2.1281606414275163 3.2077415975201022 2.376377199163167 +4.4602333057743415 2.5502094350817703 3.592453011533489 4.365430890375137 2.0605062455120016 +1.4234457595316146 1.7087762146035064 1.4190137302117791 2.3710410379864277 0.9938659181902649 +1.561066448348622 2.309940776080689 1.822415750704776 4.754508433516575 3.026215501139112 +3.1606517474602875 1.672644390309971 1.9789532809672696 4.213346415634028 2.6845257635529243 +3.23902934002767 3.287220291059239 2.019863923930465 2.815800355610882 0.7973939873346689 +1.658996304228237 3.667406377269754 3.2605445017623045 3.986490330631352 2.135581505807493 +2.999729189104107 3.91481506795785 1.7972950008400939 3.2531601415750218 1.7195713052050672 +1.1614922516371546 4.2394843679828575 3.42242243339948 2.8187663662640636 3.136628144309698 +1.3043182913415419 2.4929206608787426 4.794272357367226 2.3336226007397682 2.732686007879466 +4.605538958166784 1.188348892076355 3.587203260768539 2.7834719280024656 3.510437579997263 +1.006836049599654 2.8635557362643453 1.0407792348198361 4.118291287538812 3.5942298798878727 +3.1934432815888205 1.3393885247419974 2.2370740370422473 4.9032526168356085 3.247464743570787 +2.6137071968937606 2.170903299476305 1.6700429804124433 4.125722707629253 2.4952831931930515 +3.0823285885912033 1.3454972510055514 3.990723140651829 4.8097679027568345 1.920264934208613 +2.3707442919713704 2.654557868364353 2.2939435919927487 4.806439477679227 2.528474979456284 +4.713277142908085 4.04705127136885 2.6615454724525693 4.332774620407433 1.7991286159922397 +2.826663134299078 3.286180322629378 4.448272305420479 2.143244832292727 2.3503845851784972 +4.297129694469487 2.210992337410796 3.651203015413492 4.7204201448899115 2.3441830863824644 +2.632941545065928 3.6437292469763274 2.7293797311311767 3.892430775601992 1.5409021741752331 +2.5229761535332638 2.319318514970566 2.6278583499828163 3.4691081784820414 0.8655505229014133 +1.9898603066115634 4.128952071382688 2.13671521386575 3.8328906007614885 2.729967860840591 +3.7594747138656968 3.9658150894745763 3.4647889977852113 1.4521202668573094 2.023218171888871 +1.3211849451849202 1.0925316630928985 4.45448243115389 1.9928003594139603 2.4722784927546586 +3.3397082476998947 3.246906031821409 3.211567478718799 1.0169093864792336 2.196619310009034 +2.290553193805011 4.818218669927823 2.5000134883068403 4.556353674961483 3.2584701506127094 +4.593564065378549 2.8508739193855566 2.8605857273073694 1.0722733621862308 2.4970042170942044 +1.511905518678537 2.530680237259037 3.8966794145300785 2.8679124204461552 1.4478478702319688 +4.492524155020686 1.3705928641271323 1.7641794712310421 2.1072839026712606 3.140728519935176 +1.1462413654270303 2.9275196008937816 4.461592419048879 2.5815829627238545 2.5898624882450916 +2.5700135680030805 2.46156973328447 1.5274237613523032 4.168038920257113 2.6428409870301226 +4.739900910696591 3.9345562881309366 4.666410809808308 1.3249897381359288 3.4371026663909254 +3.7046219236903553 3.8474535767964233 2.98735227897972 3.9782923954214007 1.0011809004882501 +1.4084613693390788 4.590067691702016 2.1145326385841807 4.584370580528317 4.027743568049816 +2.424209003839872 2.4148630165420015 3.112785718254788 2.7900778857328503 0.32284313938750314 +4.532334617294715 1.0283713503921401 2.924586381445182 4.144416355230007 3.7102215217890233 +4.6442627483244125 3.6616639785482112 3.601878009186007 2.431144333970528 1.5284363515204837 +4.629250707289803 3.475946846159824 2.2875672257186808 1.0213502125183194 1.71272161211779 +2.4418878840300353 4.688366332595216 4.334554488736188 2.0846256748937986 3.1794410023188107 +1.810355231092803 3.476334275873103 3.86478813846131 1.9363202160739128 2.548425926983997 +2.25517461924725 4.494711829688628 3.0272215779575773 4.4128585914039355 2.6335369467664753 +1.8888201703792284 4.014801937843879 2.889280609640315 1.35023842858342 2.6245855502658864 +2.804210114293932 2.4928216053919803 2.2364502903974293 3.5126962537821225 1.3136843466114319 +2.2733864198633515 4.856161649622393 3.1284522938213484 3.559172989917962 2.618443851890436 +1.2226474393755686 2.362101036001076 4.488155147120396 1.8720247860961465 2.853505311846409 +3.752788368422884 3.758457046635474 1.0145409826815555 1.0637578300577029 0.04954222419638506 +4.002059594161567 1.0309207131432045 4.574991913796467 3.375843412190714 3.2040011515607123 +2.3868796090624795 3.328765212493216 3.753350854669968 1.6970491578838978 2.261752673957821 +2.5059554005109272 4.898369161613953 1.403643759070707 4.641963122622396 4.026208626570281 +1.8098957713043724 2.9187159099863913 3.5702851636057704 1.270031654219455 2.553556012189839 +1.6943844861276927 4.910660533613523 2.8287850638007073 4.520615064696189 3.634105167102499 +4.412472453123886 2.124736560086582 1.8249213485468476 3.561477137403349 2.8721701767308665 +2.4274210605930695 2.10773276281443 2.4508305728884885 4.174046120924264 1.7526187357006209 +1.8764417031039944 4.5884879582214815 3.512224810993638 4.646049417225916 2.939515798153595 +2.9077844353060875 2.3449849836745664 2.391902902145254 1.586439147130338 0.9826062707918515 +3.5701526693030736 3.9292944936406533 4.061757076415242 3.3296625806671862 0.8154417212119608 +2.4726359913119818 2.9797477314856065 4.235522185383752 2.1171581932524393 2.1782167752958923 +1.079635768839915 3.642044422409392 3.5219977618375187 2.553835107433115 2.7392110238663836 +3.9418449774093234 1.7463752701462654 2.8831126450739197 4.807274238564515 2.919329558884027 +4.126823560187736 1.2648410220629303 4.18544925375137 3.8638754558504447 2.8799919715214015 +2.7044081327822993 2.1974147652938134 2.1332649883019488 1.1803675100931459 1.079377542222373 +1.386982639837155 2.9234172021404974 2.358552462456546 4.80990970502736 2.8930578105085716 +4.401016625764095 3.4244022327219343 4.159367556577656 3.086867844068316 1.4505279404512434 +4.884002629030776 4.501564171745418 4.217099921444499 1.685222370425115 2.56059819318977 +1.718750258715517 4.315643484476313 1.7675517835835999 3.4337487028256732 3.085460516631851 +2.372654443380338 1.2217764587544577 2.5880015173968034 4.696581713715489 2.4022136832105243 +3.7455532901045046 3.909543519838547 1.2979075676825893 4.010504310528402 2.717549242377392 +3.7479448210089985 2.2568592314222893 4.425682674774663 4.506258513999344 1.4932610961716997 +1.4224290977570035 2.120549370686553 4.224652294240807 3.6236416549147648 0.9211871167457383 +3.8872004569743037 1.2836054212404564 4.433869865801652 1.8453135499282802 3.671420829943887 +3.971321795602185 2.7937190034002293 4.051134494152326 2.2631409785673227 2.14095052441103 +2.39367421528228 3.911670534926551 2.3055815607141286 1.8491113852702727 1.5851428476712426 +2.8677159948216175 2.246578427298969 1.3680762462754426 4.611834036217137 3.3026923074357653 +2.61534850575025 3.7529424712350865 2.8510941223941426 4.692611841439945 2.1645571232626706 +4.6118608508150984 4.680766275981041 2.197095209837746 1.6755086044472223 0.5261183750261048 +4.052257263658245 3.8107931394981507 4.525954207649234 1.0979558636535565 3.436492044177246 +3.0972892644146213 3.6382088701154 2.976501567087774 3.6931318978556367 0.8978602624060953 +4.419840461911699 4.05408238103122 2.944573978928391 2.8558465533345627 0.3763662176416464 +4.655307051962305 3.39372729306967 2.24808610029858 4.281871233752435 2.3932959401431146 +3.6729901507449636 4.571402139349756 2.828566607845846 4.063117576842851 1.5268464874768062 +3.3456367679011323 4.418446304272754 4.1756800954571 1.8210321820336675 2.5875252844212397 +2.6072385891505783 3.8062750016183946 2.907393508842885 1.9462409460049628 1.536718115814868 +4.9018798298499835 3.1575818998984935 4.158568241667009 4.440604139877891 1.7669520413165356 +2.747763015498628 2.8548165175894895 1.8056074475897814 3.290776435200158 1.4890222879693735 +3.6184110078536666 4.979266275796734 4.672732746720028 1.2092420375482313 3.7212491118988194 +4.8280122879351985 2.1257260350766285 2.3614797222844777 2.81506607435517 2.7400897013005268 +1.8509288288076564 3.429884094538917 3.3274546958105184 2.1775236860365483 1.95331540167487 +3.119074883612116 3.363631540935711 4.616538311237515 2.8130970665186803 1.8199473294011315 +3.0277413175935535 1.2717260907516694 2.936830872551509 1.3419171535886094 2.37220135061015 +3.446864342145688 3.403833264309565 4.0254164757281234 2.41731062053515 1.608681483440915 +1.0373503349547657 3.9016372747092576 2.818289051935755 1.3176812203052894 3.2335682361129847 +4.645417955298029 2.9622448085317483 3.1575360584343573 1.6263855533004925 2.275410668729228 +2.7069925361715135 2.041461699481074 1.9904080036793728 1.2376317617732782 1.0047902094288834 +2.5643634628508174 4.208587287724861 3.284095880811571 2.8858779665316936 1.691759289478514 +4.076356803109166 4.326485909020612 4.756584524755532 4.661068714830357 0.26774584883751434 +2.818709656859084 4.151938871949987 2.5272810418370297 4.934109311680051 2.751421897944308 +3.609876487600993 1.2850630570752033 2.460678846786151 2.779017862300258 2.3465074505638333 +1.0599642216298562 3.223014301858688 1.4950015795035565 2.971844076449685 2.6191314228888993 +2.90753656936926 1.5665282799313096 3.3900198123713627 3.9860279061350252 1.467490674646041 +4.638518184140226 4.19738978938585 4.5347156836807825 1.789529110623774 2.7804034925799987 +3.9500211671166037 2.2739724463319564 2.072769736001802 3.5675652749858404 2.245785612610971 +3.048014225526607 1.2066905894575397 2.60774803313163 2.6088130766990036 1.841323944085997 +3.471576150917223 2.615878980345961 3.7023657450372855 4.189540718215611 0.9846609072238856 +4.08195737419806 2.747609281826683 1.1423703255624291 3.897249577133364 3.0610201767304916 +4.537667278285863 2.1949611465464596 2.1397494318913877 2.1622867410391935 2.342814535978685 +2.7301969345303436 2.386081446857626 3.387054074595385 1.0180968025336958 2.3938199651833036 +2.0156393981522815 3.146462343117465 1.5971292451518742 2.639698514458881 1.5380868682109852 +1.0766896970592814 3.8448443779508557 1.7122118541478475 3.162964156774328 3.125278000581383 +4.528186088301809 3.366931975311651 3.101586779417065 4.329546296839229 1.6900874803879928 +2.1958119806671297 3.014897128438976 2.383681824586131 1.9791974856969028 0.9135141267145698 +2.62104207691456 4.4292845845598166 4.810708374110303 2.188092422170223 3.185569870184262 +2.5678502202740843 3.504942724410679 3.1204479265829113 3.075482784800856 0.9381706802519858 +1.4796352301245888 3.9126427676324895 4.882022017391738 1.3331283063609463 4.302809808690615 +3.4213371259767045 3.805431752866977 3.37308829283592 3.0851138917069663 0.48006034840586176 +2.9940991413908273 4.792898336729534 2.101040147591476 4.149813703643336 2.726380683090415 +1.6566033333836159 1.9036019367230073 1.1538994354089236 1.2836606112087448 0.279009449296188 +2.94734041831996 2.71976607474417 4.026723339412943 4.704703277958075 0.7151551432546737 +2.7849713202065725 3.593138704284925 2.0370725041810434 4.154002672834161 2.2659496595559587 +2.1749873396916866 1.7554548594830677 3.67160846227811 1.0050698843536994 2.6993398247551443 +2.607683697142307 4.143246223730886 2.9760227470147833 2.140070012286467 1.748361875517437 +3.2872278600019254 3.1920921806150555 3.404629159758792 1.533913099965988 1.873133570746922 +1.9558183119572243 4.415259719848651 1.8710524303336111 2.636461483291563 2.5757917340501253 +1.101291878435016 3.848828060127778 1.721143236317133 1.2228101228390638 2.792362970979881 +3.519100096976588 4.913908832844497 4.01577995497487 2.25623433090719 2.245326749680134 +2.8660880733793284 1.0420569037877918 3.8686064946023486 4.15743764415514 1.8467574666407758 +4.590505041337018 1.4807599845231807 1.8498562395591298 2.051720129034811 3.116289997457288 +3.7866920924465983 2.1765470676610983 1.8323838459680646 1.5483959146847028 1.6349972923390736 +4.5782164701443815 4.780554922656027 4.944893079695186 4.017054344586949 0.9496449693080358 +2.008834783806815 2.3987380544793684 3.4724735475146886 2.880335583285705 0.7089794984076757 +1.472041125493178 3.1895255432687466 2.6413757872797707 3.1654198784695895 1.7956544586341903 +2.9036211991271133 3.9472122852743223 2.2320268967913894 3.4757772491151133 1.6235754660598007 +3.9482100452689117 2.1903119192237956 4.437246519005412 1.5374319074641054 3.3910368035250498 +4.856955372603247 4.531465156780506 3.6094161331555226 4.77085410802717 1.2061849153717223 +2.9360054154873994 1.0834407444318828 3.455070050831093 3.4097023647453395 1.8531200952404054 +2.1537225088129404 2.286991250101062 1.9678218718211489 4.046494315266856 2.0829401538558585 +4.108543854213991 1.962958489883242 2.3253269205894314 4.979015072169167 3.412564631104441 +2.4527770469678662 4.6094185220786486 1.172044204856598 1.5225785403562635 2.184943196637433 +4.19915935534832 2.891237634699132 3.255122200233589 3.8538353721398524 1.4384424526410475 +3.7562112245778176 1.8381165267440478 4.757964340543005 3.875165647910289 2.1114972890278723 +2.2537630431971034 4.967733341616874 2.2021549919718697 3.6156348338187976 3.059993471236878 +4.552996699811505 3.325131743497378 1.1419548600261722 1.6089993336095816 1.3136905614523904 +4.2962619170666265 3.438636281126496 2.9191772272353558 1.882107738507016 1.3457469509060658 +1.9329152273467836 2.9795421916928375 1.9751335634092304 2.539436798372324 1.1890610343821921 +4.434388546028304 3.6885485714333965 4.238498609896315 2.6217407375509163 1.780500852427359 +4.036472195327651 2.5703917314282867 2.9233964299321835 1.1277545204546855 2.3181289424230416 +3.2131250538307405 3.1420828871043933 1.9080689085862637 2.938089073639675 1.0324672052272803 +3.668207521404334 2.3231197299604904 1.67500491762216 4.968502184586967 3.557581399517927 +3.2296944888339887 2.4979327985556696 2.477035081087185 4.994476426680922 2.621638056609606 +3.431033615645435 4.370833345617907 2.578146884987304 4.567988141492929 2.2006116782722516 +4.844489496431386 1.9874460967546366 3.1345237308752223 2.041534288598889 3.0589741595123043 +1.4953040575722918 3.8542806081271155 3.1090838233153164 1.746833491917315 2.7240587973576305 +2.715329280646442 1.6619529383969627 3.341107052101295 1.9614813283873453 1.7357905564739462 +4.631969111382534 1.6690056980675845 3.662672666406755 3.5997021817621144 2.9636324789992696 +3.033137990570301 4.574338198515172 3.9955552249684176 2.9978103934532574 1.8359719033211077 +1.7994508212306761 4.6020669431969345 2.4517972633402847 3.4279484209944657 2.967748003064746 +3.407182189622023 1.7680415034057084 2.382821148330075 4.39669860354528 2.596629467951437 +4.2236371267953725 2.715723246303481 2.1800035723765476 4.062317244791172 2.411826907624 +3.13418932567948 2.419843243647211 1.7465029324945385 4.125708600806309 2.4841316263518953 +1.3394794458955523 3.4305485721899918 4.958547999946264 4.662640531192668 2.111902299114699 +2.163393591531672 3.872254441361164 4.374592845812804 2.9642616974721308 2.215680336163115 +1.1428343808054087 2.962514032941206 3.0883976748471715 4.184377610916889 2.124242466542941 +4.54638253921069 3.1718853643130447 1.0694495225368343 1.9016525510939934 1.6067994163993573 +1.0413084845424505 1.294803971428446 1.4416465195644688 4.876111914699653 3.44380785065785 +4.345694590381607 2.656713212524514 2.638340331796537 4.540304123295607 2.5436439135463838 +1.3035610921575982 3.268962601578423 3.651243708987282 4.677391973060518 2.217156591919969 +1.1591234996199402 3.0612156474568275 1.0995089508206397 2.7575917746677185 2.5233297821726444 +2.7421342757102702 3.061851442330635 2.3354495355747167 4.14450561425663 1.837090896620996 +2.1357972512674817 3.793417570268416 4.595056686982188 1.562780705119644 3.455778168827567 +4.214311409546291 2.543774638549947 2.932844186914282 2.395217742652525 1.754917461540693 +2.10640676779847 4.5692951092348535 3.861268346533686 1.8216234875196693 3.197807081936865 +2.205838211070257 2.342710248193656 1.055798342425636 3.422559226977068 2.370715301167347 +3.8334696978519434 3.5464221077952542 2.7243801364931537 2.344554895398801 0.4760919372660456 +2.3194460079621546 2.8893976781009454 3.629535814430562 1.8412725811092256 1.8768937897342184 +4.760776928385795 1.386488176781826 1.970471316694077 4.790505494859167 4.397546741675446 +2.9121483834783324 4.291627088301263 3.2242752141404902 1.462704272573859 2.237430150693402 +1.317489864944252 2.728022633278707 3.555420245058166 2.699577509004174 1.6498695340546308 +4.4304211444784345 1.1854337664555121 1.9084770124595036 1.6933330907256323 3.252111620253387 +1.1065742224377746 1.5092879531618304 3.6546146100720986 1.840477508734859 1.8582980846360384 +3.436081727693832 2.0791448947862685 4.226764778502849 2.0624170089711837 2.5545408268371643 +4.866290084282333 2.5141247578647485 4.69849097361331 1.0028103645895912 4.380723329167806 +4.556261992883529 1.4300226143899968 3.648554155976746 3.3051230816543207 3.1450465106980348 +1.065069393114349 2.043835726040173 3.4063355564649944 1.649354367823518 2.0112101908326436 +1.346998087883145 3.7636156844252784 2.3153386059918377 4.667157771359767 3.3721052763087007 +2.523007194110386 1.398138352523338 4.052267487470523 1.7664576686666291 2.5475981705350783 +2.677259716618631 2.933651502293343 3.192983953283841 2.4064908389927138 0.8272292104301104 +1.6168566022000723 3.4969292879459384 4.134194447213444 1.270361257395285 3.425815792302868 +3.3795611760243496 1.3957375580594178 2.9570630803488167 4.535117398715894 2.5349184560676603 +3.2998737198312864 4.704285808744892 1.4914157698894428 1.6087986707895872 1.409309072173457 +3.4275227067684133 3.8734385565115645 4.498342776087183 4.162534914737943 0.5582184740727477 +2.613093605705368 2.5981394503918906 2.5976797263989178 1.8412893333392941 0.7565382035786636 +1.3653911837747006 4.406813436177721 2.1394159766417453 1.5290122251631533 3.102070608034479 +2.3932846283589195 2.205447978016515 1.4129133247575583 4.332280094689854 2.925403381517971 +1.7535526440348561 4.364690311386168 2.2899496183304664 4.828865396470118 3.6419957779145378 +1.3915633340746338 4.64971810398367 4.524523435364184 1.8097369707769015 4.2409477776774525 +2.470568351054035 3.0739969973732535 3.369065480302003 3.3681279960711374 0.6034293745545768 +4.476411222828317 2.802182066174682 3.359757151545209 1.6228016461871588 2.412479574334834 +2.9332439671395 3.2725386264614205 2.1079886160417813 1.097912212552325 1.0655398663262547 +2.6600074332088686 1.2216418984267974 3.4074570934198034 1.8322559358350996 2.1331090217110575 +1.235128438366809 1.4414036260133969 4.238772620564982 2.915196733857523 1.3395531273197305 +3.348263089336728 1.7802123017736275 3.5546708394932436 2.7204011333645797 1.7761726309515264 +1.1187187825517695 4.393564069670706 1.4906398164848467 2.3164946150870622 3.377372914402468 +4.252034711263755 1.2595519016815513 2.5264583590097796 1.8943648443032743 3.058511987385209 +4.417720582467068 4.677937587784925 2.089050283974834 1.8890023647172085 0.3282256233993611 +4.80942123599066 3.55848631002357 1.5033513463052355 4.084089381949574 2.8679342735888644 +4.018424188467819 2.4188703213127067 2.0209771525852758 1.6874565823570236 1.6339548784150228 +4.148202146390375 1.179272398860984 3.256635693574972 4.007353401452498 3.062371780611528 +4.0879557761785 4.51621649457093 2.2851104084555596 4.055173793545147 1.8211347095019657 +2.3932720493495716 1.3509541468431459 2.009187387071971 3.315102068985015 1.6708799377338401 +3.356020612606088 1.664473671646629 2.531837682263037 1.0817056856435867 2.2280515840278063 +3.512149922698958 3.481888457994202 4.129226015604591 1.1378091526783822 2.9915699229744495 +4.072166894199675 3.3632107457740967 2.4109853931474925 3.6118538385990684 1.394526386868214 +4.864199746620801 4.868922395894972 2.258485383727173 3.639340203034184 1.380862895228764 +1.8128473658384348 1.57796751106061 1.8082605761188058 1.179884192751993 0.6708393439219317 +2.236535145615718 2.209628780331279 3.0556323723058383 4.171121279706705 1.1158133603014437 +4.318063994713761 3.9488917133653967 3.4501106789325724 4.807615758383432 1.4068078099196206 +1.4003683588368876 4.873119119284519 3.467801204319564 2.0187694549113453 3.7629364670404213 +1.8792872698944558 3.371904849363044 1.4379293731609417 4.16664340354893 3.1102712901248544 +2.6089124195440503 1.9041850724005562 1.4591374333730829 2.4480923470123295 1.2143609245290778 +3.837237541949835 2.0621800088184377 3.2237230535733876 1.4789558314600377 2.4889841110958617 +2.279252062574027 3.9946481821435342 1.1810661569021579 2.7813904847268094 2.345979923456624 +4.237542756453336 1.3613503920253192 1.9302378333154664 3.44223317453715 3.249401857122338 +2.559492776149413 3.1502864592444353 4.385882549548647 1.7304098676929716 2.720399297909547 +1.7888539423268068 1.6640523490940846 4.425153860536457 2.160077181676353 2.268512243473538 +1.5496315749904133 2.2792002674053626 3.0876387833791124 1.6025491325685461 1.654618308824337 +3.6662670155870303 2.498341364192908 2.162890530657907 3.156747497464399 1.5335586058752972 +3.232219366840081 3.284908370256252 1.5683745937601667 4.037051881116682 2.469239494295948 +1.2371301634950727 3.5714328672650892 2.9735019191425542 1.3383128822544328 2.8500547888044383 +4.558812517275239 1.2108356519623555 2.4463011588422257 1.9544928651829143 3.3839066902594057 +1.6994154707329492 2.3207776654047545 1.497358764156972 4.165428690919448 2.7394685818716167 +3.885294366720985 1.139268069371493 2.7877624326422388 2.035020422962728 2.847328740920393 +3.571771402370395 2.2025843593340406 3.158747087746512 2.1991929305994122 1.6719501605361673 +4.214549393116343 1.598806442696643 1.8513272869449877 2.8238126059279844 2.790669969435264 +4.436466867187923 2.917837283334869 4.828545230701801 3.6676408982912636 1.911526793420185 +2.503149428004006 1.0805156934650313 3.0624866013098626 4.927092715440903 2.3453449007562126 +4.128188061170093 3.5119525199979504 4.740906441357469 1.6467728381084097 3.1549023751867074 +3.1439848341763965 2.778038909566746 2.4473611651711953 1.2686125031448694 1.2342466641507546 +4.934660307169822 4.99243853093803 1.8641146266299842 3.534690687434852 1.6715749154842323 +4.235390292306368 1.253711626302961 3.1046628698074876 3.6703410503029223 3.034863995501031 +1.4999290150582643 4.031311744848216 1.7516233195306325 3.62454762880769 3.148927435327745 +1.7678490947548124 2.4637653857173465 3.467696294572318 4.885051141023769 1.578985194606481 +3.5378204967701126 4.396240138216342 1.2184868534151359 1.7103547457378836 0.9893524671817903 +2.0213068628307056 1.5289440354734007 4.102486787210676 3.5567318611296153 0.7350303348196068 +4.181496813153782 1.1923281616552672 3.2062565555104263 2.153730022570893 3.1690600072644823 +3.6620200266637 3.607913581097351 1.5056471625932235 2.0160049696273767 0.5132178861385623 +1.3751882402438245 1.5790500141755412 3.8599722309472053 4.873098163166449 1.033433005765588 +3.557240447602034 1.7375505216023872 4.393443377023795 1.8980623511076278 3.0883973013987402 +4.51244229918216 1.1528700312034252 1.5622080166808376 2.8285763832385458 3.5903223620713804 +4.3913602670440195 1.7247728119073966 1.4448116363853751 1.7150215270706881 2.6802429070731963 +3.151214880836076 1.0516446582671914 2.819410390875351 1.2414963374891554 2.626405886258179 +2.1107504712410226 1.3523267928088734 2.984981696464272 3.8527910143211543 1.1525187582706755 +3.058515688828181 3.748239459313942 1.5463096165402415 2.0602379932764476 0.860140253672508 +1.5257486275608043 1.5970358711445156 4.306743424266537 4.56685601394433 0.2697043388724983 +2.414844613976622 2.7000785639521716 4.127304488869569 1.407671525884464 2.7345496630293256 +2.519472622363776 3.2319152029646387 2.7534373647763255 1.0064916864792415 1.886635532786891 +3.1993126813705177 3.1292361198130743 1.50480843864788 3.8871142829707686 2.383336287722466 +3.419399130049771 3.401110262817987 1.5777280566339416 1.9647441937668235 0.38744802627691827 +2.5659190606579623 1.0740113896009218 2.1178810671153325 4.246587328627154 2.599457413915157 +2.7013840295915337 2.9943005141766212 4.569362908277386 4.260620668116432 0.42558411366178833 +1.8318579559528523 2.518645695174965 4.950651800140555 3.904057193660528 1.251813751745404 +2.9880551590088906 3.445944856534747 3.1709839948814333 4.887974855379355 1.7769976336882705 +1.1700242471184512 1.1146872820799736 4.306619907025112 4.167636837916998 0.14959436218781977 +1.5073901652624402 2.6472062136528276 1.3004620703686927 4.24679178371119 3.159120036322324 +4.403433737493673 1.1257329169191785 3.7736535557808177 4.367335683479608 3.33103304365833 +1.6741529451562864 3.474092419421055 1.1869420987925787 2.0137256702125144 1.9807456133957322 +1.458156115109528 1.1160543756928503 4.598063206542937 2.4888849782475373 2.136742005677625 +3.264674500498599 2.028156297037358 4.539094793570346 3.9817184551636635 1.356335375232341 +3.3772298405328818 1.3429340726524543 4.781268875604718 4.992646983961308 2.045248145313577 +2.4104095534389067 1.380494020578685 2.504180285954314 2.0343264668391194 1.132028540348647 +2.1436163882386996 3.964453295727842 1.3401836033297 4.21324004313119 3.401455622224026 +4.188014792701802 3.9579316821961874 2.5926515283674743 2.497442064340035 0.24900417623070312 +3.870288985855275 4.980794138367376 2.594154022673298 2.618164315835583 1.1107646861210805 +1.8952059478394534 4.795493999269501 1.1762511589752456 3.2614456861528005 3.572073207178029 +4.878156226689206 2.6008134160147085 2.6499814966395085 2.1811505817933883 2.325100579339799 +2.6147331651623005 1.3202316504046965 3.7283879932552284 3.188181421720396 1.402696443154808 +3.1888838684365823 4.997245939035453 3.1881276700439716 2.703121717653337 1.8722724567313866 +1.2843375009843676 3.7833938414241746 1.640899208354826 3.7477067275966496 3.268626701816267 +2.6697007818687726 4.464553094883296 2.7535286101087055 4.635515845448176 2.6006481460424995 +1.516926093299662 3.5197930819608243 1.9071456831880869 4.806853085482693 3.524170709995582 +1.5357834887323394 3.493694663327385 3.940480744330873 4.3147279469841315 1.9933582558832572 +2.9305765928196474 1.1975818901131077 3.8843957954031443 1.9160052278562163 2.622562118619242 +4.2621449466128665 3.8285279233658756 2.212775420938658 4.8011748535922765 2.6244685835062223 +4.9811191291254655 4.631244856156581 4.834102632718029 1.6302517781823496 3.2228981220315527 +3.6357201218230966 3.3852366308166806 1.6482846069591135 1.1299139162399388 0.5757170765779278 +4.59871342449019 3.6694889382396787 3.3140019628152912 2.1383396326092208 1.498545982115028 +3.989010525005661 4.1082240540382635 1.6775658538574811 3.180796628309485 1.5079504722516512 +1.251631968391441 2.9527998630594485 4.81986542396306 3.0106343063953327 2.4834027950826965 +4.74392065491569 2.5439529479846144 3.2193081587732464 4.72789262623448 2.667524134287236 +2.7259924955696895 4.768702084468588 2.2434696272425345 1.1875115477633713 2.2995021048472273 +4.179049903429323 4.043882746218395 2.241421568870925 1.8762411281920213 0.3893930079533044 +3.592044857780049 3.3672047765961923 1.4409092505592596 2.4806552500218575 1.0637785509706612 +3.00121406079279 4.90862809020909 1.998514245879826 1.5866148989517912 1.9513813957332555 +3.9494410472170647 1.906212359822006 4.350194535653536 3.0532482071448963 2.4200936444745635 +3.4301953956369626 4.081793037757839 3.9168597519703963 1.6459346761684523 2.3625579753994503 +2.648243784312802 1.185413244840035 1.846058507488566 2.822882151013838 1.758993353530415 +2.0357929974007174 2.246560629592243 2.4467014632849082 1.1874928436195993 1.2767260248851493 +3.8676446836999774 4.579276480765841 3.3544893739126995 2.2831626466964803 1.2861418160696765 +1.9212130391692486 1.4919030844509886 3.0217760557704056 1.333208494582554 1.7422879916695986 +2.2079338853945987 1.6866684168490056 3.9597882264029214 3.1050691724060377 1.0011305359259524 +3.911335521957356 4.499449036412777 4.232260702810006 4.350905925873274 0.5999618278197703 +2.9581675623747157 1.027072213405901 1.7830399644276365 3.0326720634489015 2.300154262155754 +2.848355324497809 1.3269076804481705 3.531804755777704 4.567250456811095 1.8403670105097856 +4.624121052427393 1.7009208849226973 4.905765332193609 1.0401791279501333 4.846427129518917 +1.5530454429341933 1.1177745770347327 4.133303222473665 1.897630191736459 2.2776511205771945 +3.9023999586839775 2.697195549137713 4.089801860793136 4.736768979680129 1.3678757698382908 +1.287903407200469 2.101433730084041 2.6625226535480584 1.7606579411855443 1.2145746356876423 +4.791332934939469 3.7210969287506273 4.87708976320515 4.262956889297756 1.2339223216056985 +1.0426827506881509 4.173703532494717 4.6817338251369485 2.490872961892286 3.8214084390708294 +3.2160849294815743 3.0129721314649704 3.6803514694756743 4.877502446621216 1.2142591448280962 +3.003699897694371 3.408910004352072 2.53362612631206 2.4498116448083365 0.4137875032517096 +3.294832064792286 1.8680634724984726 4.8095860876687695 3.12066870070848 2.2109071794023474 +1.3025218498345859 2.574827870132764 1.9672439694458936 1.2694256650415219 1.4511075064407808 +3.299441526922634 1.4593125321516838 2.261908484602773 2.0538860683457116 1.8518498975516815 +4.510337721840396 3.6282985322795005 2.475670260838484 3.5963377457279306 1.4261447134178493 +4.5307792754915415 1.49553640408875 3.6590397866161237 3.738167357842634 3.0362741083323934 +2.6042767707370835 1.841402919109027 4.8006945978902 4.834276363319989 0.7636126298505069 +2.1826722889068617 1.3445831020278098 3.8889417223878557 4.480180765014614 1.0256495944959936 +3.735064500901212 3.6589445376359264 3.848945649936816 3.1865069331884577 0.666797797127975 +3.133975387115481 3.1847767798503206 3.8063726110681397 3.942313552209849 0.14512312352720727 +2.208393867594493 1.0075933213907304 2.576655045068721 1.3031578732476423 1.7503476792910433 +2.092510996027404 2.662421243701778 3.021659324375549 3.017813768621871 0.5699232217617747 +4.520595466117728 4.904359978572767 3.962435188583308 2.908445929375397 1.1216811309572319 +1.1149711742801238 1.465560324172131 1.2759776483600418 1.4703710858060672 0.4008759914787639 +3.4706867569356095 2.3230937127498237 1.4119262623490307 1.3887509757868695 1.1478270292038069 +4.050578172270324 4.146050144102402 2.2050632573983004 2.354544463360868 0.1773683408659184 +3.7368047354126053 1.9752189178072133 2.4948592750113914 4.43700926842472 2.6220471372009797 +1.2948761821149288 1.1485624463322526 2.3440640656248526 1.7675857962742878 0.5947561721513323 +1.2231391146546744 2.1948751552152697 1.0460299082727333 2.4819328978404953 1.7338074656587505 +1.4547557319519853 2.9551345628786008 3.3182586465046384 1.7413207175431547 2.1766648497391716 +3.6128175968993688 4.2061366202614945 2.283232019736789 4.722888841295951 2.510767386769141 +2.893504739622182 2.228984274836584 2.0836789218655367 2.67345945386834 0.8884979032324032 +1.3502672845456472 4.182884968089312 2.546441558993698 3.8328213322651696 3.111028103731344 +2.1639904708528634 4.396916976996922 3.595932221569914 2.5263690891940738 2.4758687517674134 +2.265940184179152 4.564705011950938 2.1692028765932228 4.604516965530326 3.348891524844632 +3.5706673244504707 2.5250818922808915 1.3747489788811444 2.4325933187162563 1.4873747151563488 +3.1688419368044247 3.5675839617349623 1.6464594809415205 1.593399380125284 0.40225685419186413 +1.5156040563826836 4.309506184569648 3.1506021880985653 1.570423450893684 3.209805904319148 +4.090511189196631 1.970054428932277 1.0664574156367816 1.2975065603892517 2.1330074025754455 +3.4568662182592145 3.235313521635522 1.873121950994458 1.0723031516378296 0.8309009247703494 +4.329049389829578 2.3952359393281983 4.555953819691469 1.633878247516631 3.504020563701212 +4.052959272833824 3.028876494038405 2.9977279898782507 2.9626981972843045 1.024681718483609 +1.1421374433346494 3.9507928932139134 4.454908422229373 4.956507335628471 2.853094268694893 +2.0541573043338035 3.356179587298211 1.1660599645250178 2.5766614930817653 1.9196506707478005 +4.032893292906831 3.2067616329970483 4.574072269945184 4.140195110002734 0.9331360615821351 +4.568127474839555 3.716361347180477 2.85620727865883 2.526342572638267 0.9134091418993863 +1.8506613232156002 3.7682915930682563 4.626578989221301 1.945782895893109 3.296054238913381 +1.372304390173364 3.8094169064643144 1.9708799170767297 2.812261739835769 2.578263134113997 +1.8102381002905057 4.054815733792251 4.505463117247071 4.078242207888398 2.2848734009151457 +1.847935199582179 1.494046462937618 4.654225584703731 3.0927136991087174 1.601111053855534 +2.355532078663048 3.2254622789944847 3.4318126066656633 1.6462735294978144 1.986184369473818 +4.918134838992123 4.160605702776576 3.375599224872984 1.5261586977412165 1.9985696524296828 +4.47993102488954 1.1762557108360978 3.2734636895557423 3.5324372654330722 3.313810177678981 +2.7969939249242817 2.5557115616217834 3.882007014622074 2.5310028451401876 1.3723809401176776 +4.111743766434803 2.291149500411118 1.0386014819374592 1.3775315368761643 1.8518739329714307 +2.4878956327466604 2.4159281072511445 4.15286152472671 4.193652916056234 0.08272401303458439 +1.8740459689019464 1.566224445283201 2.100316060998536 2.521306094342118 0.5215234401036989 +1.3871600915220257 1.354950296125343 1.037610130779464 3.12115590915063 2.083794731130637 +1.3175590530367725 2.546999280288154 2.611767003970204 4.46100948941031 2.220635279000275 +1.9663887864204241 1.3031756542562438 2.3885325023705994 4.507675853725967 2.2204999892521236 +1.4665814485467465 1.5489038082004298 1.302762827863491 1.030549397220677 0.28438903410870214 +1.7860530122089249 3.819010493464918 4.4000966909968735 1.22985942169751 3.7660749414011128 +2.04070692533562 1.0723541647152905 4.336539399400307 4.620634449571197 1.009166520715295 +2.860575048614528 1.2139746846352737 1.0985745230274149 1.8508955391076602 1.810325846330606 +3.5145962275304288 1.6760880888311935 1.6850365193888233 3.982961085885166 2.9428845525046903 +2.8861124055885368 4.763691867675131 3.754186493612802 2.3024512458364117 2.373360458524108 +1.5907874285352706 2.2198995664480914 2.400502722203139 1.1750393389232743 1.3775131889854895 +3.0044805114822015 1.7940957250094178 2.6396703858781896 2.0924057459187324 1.3283560958849554 +4.448658068489113 3.6108861826442222 3.3659317055344373 2.7423927552487117 1.0443479090971215 +1.6951229797612393 3.8816289742677994 4.905463913738261 4.411511587779632 2.241605978831485 +1.8592347641544604 4.292099656208291 3.349784093094099 1.7172117724970257 2.929867567820738 +1.274568780217677 1.4227495147686025 4.809575855012143 4.614270171390975 0.24515676647154486 +2.155279396386622 1.6622547753392358 3.2550769960019013 4.359568832103664 1.2095352384177822 +3.702349489006544 3.1970639164321395 1.4634231632464627 1.0202089080074188 0.6721252754501531 +4.48811394985643 3.733017165206164 4.915036014467994 2.55238167793599 2.4803843791079343 +4.9623574836037285 4.365200981217177 1.3079447847864092 1.287256356437628 0.5975147691982874 +3.65334429414579 3.8761970934211023 1.627662032976982 2.8553032867011456 1.247704459393441 +1.688810695679451 2.017684865022917 2.894506628575146 4.680827249165485 1.8163423627740476 +4.0674531335617825 1.1653277372708541 3.4985419320323166 1.6842849000616131 3.422551737206017 +1.9938418242332157 4.777104291417631 4.445315526033536 2.601034552273259 3.338850441605858 +2.2443129477626593 2.5372553073501822 1.4577891875876499 1.5937519198749914 0.3229567937228522 +2.628009335551298 2.3789678323866568 1.7674572929875079 1.3898422839706237 0.45234363633561314 +1.7405165495703114 3.2700530859638715 2.1311252580445177 1.737126360615147 1.5794673619098205 +1.5984759634819063 2.349133023973402 4.217930336582822 4.162527262216696 0.7526988263010324 +3.0377619156071023 2.712326029482482 3.302336994971962 3.1102566094942663 0.37789335858543105 +1.3758209842594002 1.803897136269478 2.902442652699456 4.678777879991607 1.827188012121033 +3.792298818949518 3.112332794848482 4.026905650943396 4.195374195321566 0.700525120446562 +3.2901936925683533 2.8246128603775658 1.8028715776563096 3.208739937347739 1.4809562303069381 +3.4401544654673986 3.0859844657058204 4.987775290959596 3.5044326522998923 1.5250382855512346 +2.846795624984732 1.8760306441667907 4.726423215860139 2.7256687157956057 2.2238262561429885 +2.9577745000407054 2.515841926162263 2.880337612039971 1.7835122292148524 1.1825101776578046 +2.2530116682411094 4.167677700020256 4.345022935733494 3.072280746094309 2.299090840862199 +2.089489306380628 2.6100700537762243 3.5568515322591683 2.859572441749982 0.8701738013869849 +2.441319323484115 3.6032507139566605 1.2456855080630351 3.492924218408045 2.529855011149565 +4.351634746089138 2.15476019838672 2.711294915711867 3.0623621358550475 2.224748518687396 +3.0771902264504534 2.0656778053763833 1.7462429324279132 2.022652822296182 1.0485989725362672 +2.2200870180139805 3.320376948402728 2.400522698325102 3.6879028792432544 1.6935128169387235 +2.015425479085757 3.725814581678593 3.28555595039057 1.0498908186919857 2.814894218858175 +3.74614748366388 1.1344313906944534 2.4670555695799044 1.2118391899476002 2.897693757106281 +4.550572282947327 1.4888916242596566 2.5229091930159613 4.257699961652415 3.519003760544797 +2.6551449586511553 4.772320539325653 2.533488276057631 3.32855816107817 2.261541191637015 +2.514635199294513 2.6794670643731906 2.3305109835669042 4.446528247186777 2.122427526131964 +3.6592820003954216 1.295470956434237 1.8191919026445031 3.4543105001061423 2.87423302453329 +1.3456983191893839 3.2753760396029863 2.8736741232828997 1.9261594090140592 2.149753529690462 +2.972795774216639 2.2802444837392906 4.4124069966043855 3.7854794535369427 0.9341656353122935 +3.933303543129838 4.376914672342788 3.55946205077622 3.536208515995243 0.4442201715831898 +1.8619765470034828 1.8409195544147519 2.0677360515370027 3.5398989364561833 1.4723134709260954 +2.4921564322208267 2.59717417453955 1.8740236114993198 4.553775949250748 2.6818093366020572 +4.382206053732359 4.947825558242087 2.96785407334412 1.1349381996533316 1.9182038535853003 +2.7585140543161755 4.3192208159598025 3.8054943152851846 3.0860070293670954 1.7185655502301664 +2.8821096152544925 3.59149510733819 3.241205498343349 3.0073069403720796 0.7469513450017137 +4.90968873759963 3.9394169629211957 4.490371923357757 3.345304731224257 1.5008684789941245 +3.1564780678526674 1.5245535748340138 4.863768077560762 4.824383956168257 1.6323996630519284 +4.579125817121721 1.6413308193600122 3.821105765859649 2.050272629792955 3.4302316896480214 +4.791238529175642 1.6799270237831956 1.004177390019172 3.2648524303690074 3.845895334203486 +2.616991278549578 3.5725924890290766 1.344126839982411 1.1685771977206452 0.9715921728627277 +3.6599980681504616 1.007383340126609 3.1691218978964453 3.0395357573107957 2.65577812762304 +1.0741204747125463 4.137123939661745 4.440047792995444 1.7498885683798866 4.076634258806519 +4.035668261722115 3.122371685378681 1.5538931124064774 4.374836879051344 2.9651027589163186 +1.1029606084316907 1.3711115696107643 1.4820057254030732 4.956963346215101 3.485288424853939 +1.1166398272208355 4.14620980823881 1.97307544175891 3.163200088760675 3.254948685507396 +3.3250821930345222 1.9325261348492857 1.1612804548615046 2.1123927654879844 1.6863650265033503 +3.571583848492517 3.4298528142358804 1.057847684931863 1.4456182686506134 0.4128604021567536 +2.1133112359461905 1.7833119506799355 1.8940297134767832 3.9171331804609193 2.049840766108302 +1.8652665073186583 2.3186370712089746 4.729373990606213 3.2555074762848215 1.5420205479305753 +4.382413997558315 4.482384723541221 4.9899301850273226 2.7078632583873468 2.2842555907160595 +2.3646190199488304 2.972702468421093 4.603379190093787 4.501245855687281 0.6166009230474035 +2.6955830960967346 2.6997051821484117 4.5007377754590365 4.940864466605068 0.4401459937936178 +1.2870347664611161 4.900132313067386 3.0384749637243442 4.21948381692767 3.8012176723566995 +2.800023034542772 3.2911827872339767 1.360041595175113 2.0421802267338305 0.8405658899387275 +2.9532255220400065 4.350164184821931 3.9188895324047808 2.2364110827139707 2.186817633285625 +2.960482729812978 3.8424713496410545 4.739566002262926 1.231067916604788 3.6176598434033362 +4.560899666426278 1.6420468300016573 3.7542022060449174 2.9150948125463008 3.03707146747127 +4.061569095737724 1.2722871248364918 1.4883227322406576 3.3201564663946934 3.3370209383189944 +4.545079889678258 2.943081458984845 1.5635166648976067 4.1619845113477325 3.0526110333580516 +1.9976944141231145 1.823120792338715 3.1565882092514164 4.959759867147828 1.8116025991546316 +4.713820666084054 3.792593788074313 2.244228122806991 3.731548755757797 1.7495089671015578 +3.94447313962282 4.440944599806535 1.9760165977487567 1.7133196093298855 0.561688186186335 +1.2121701349406493 3.1114373885896147 2.0291829517018316 2.7875316024993664 2.0450693819403107 +1.8951137349494593 1.6470572300661837 3.523305131136745 3.7810597219363693 0.3577281910797474 +2.481979881927575 3.0710075480316514 4.827784717067125 1.4001368935137095 3.477890624178179 +1.685133379372091 4.594977934810997 2.79186634628346 1.6528381119079296 3.1248329004159694 +3.1819723103141566 2.5118785453726615 2.705437939441289 3.7178184119446565 1.2140592551105605 +1.0782560143557238 1.2746059067583544 4.278352782930282 4.3980287027962035 0.22994696354220248 +3.6162472531902052 1.8556633452193845 2.6198862223968273 1.968564747039308 1.8771988070707117 +1.4392299805627373 3.4831106540388577 4.506397482425713 4.4715132678506695 2.0441783473649546 +3.1727449717876266 2.5382668710597214 3.709004212375334 4.260908634102927 0.8409286242159669 +4.237385301061014 3.5622188328807605 3.56148512245883 1.6765378130704272 2.002217800072104 +4.831735743527602 1.1717126372269395 2.4660605934743094 3.097729637109383 3.7141317854030977 +2.2154768056935774 2.726060412871251 1.8748252192907389 2.6334476430397107 0.9144416885364148 +1.645211474913467 3.400092678835671 4.1802923675838874 3.6458089899031685 1.8344700926688433 +1.2172773012000033 1.3097220750752583 1.0423961046312367 2.308032391136257 1.2690079770967024 +4.1416112057958205 3.744780388782495 2.286242789369614 2.260890111756374 0.3976398566462173 +4.024298310231284 4.830523517336589 1.9237226098849303 3.713647335842746 1.9631173192570925 +4.435377152867494 4.04042651920534 3.0397628101446617 3.6288382316369336 0.7092220070164451 +2.669218006283946 2.8341055490770617 4.930114908527286 1.6806071867653887 3.253688420171567 +3.522522512824409 4.963853810511544 1.4159503871266126 3.621616346790462 2.634843113984651 +4.830991744409667 4.442950882877691 1.4906069572181666 1.2474439170245897 0.4579344651089954 +3.572095506560453 2.7344030860999955 4.16594573705353 3.78664823068129 0.9195624990380478 +3.0592359796953454 1.6151921248369878 3.143732779693468 1.7832043014805627 1.984011188169691 +4.880639647291067 2.0933690127515296 3.073850063457202 3.7405550791546767 2.865898317826822 +3.9111643115352 1.6686101950668437 2.7720538875306637 3.207249542774475 2.284391433978043 +4.382721118633848 4.6298250867568775 3.6026026097550106 3.183775610560866 0.4862884188587255 +1.6670614591033224 2.1292773564183083 2.1967248746733006 3.1845665275037436 1.090630398804966 +3.1457975924268684 3.6117170313006994 2.943799279655673 2.5133951726253474 0.6342937953890749 +1.511753568884977 4.230288552922536 1.7904355997333234 3.521724672834544 3.22301013248109 +2.142953185321187 3.931524674234946 4.53372219339081 4.701121934339108 1.7963882220234961 +3.4376946300183926 1.7628408282344243 3.4971920985037492 1.7812257536433354 2.3978481507476284 +4.321686868398659 3.0719037806110983 4.057443779371775 2.807676215080047 1.767449216038608 +3.295563198762356 1.8120530423459726 1.0566462499794809 2.4168665877173865 2.0127100514943486 +1.2196836236183417 3.7608019875511376 3.351767672607888 1.400246138651744 3.2040160481825044 +2.1447947561318097 3.8418589393983593 4.269138811889965 2.4428086303628525 2.4930922113076797 +2.027572828289483 4.415684040654866 2.136752447669835 3.041366583784431 2.553703564998024 +3.7381805702924455 4.584062373009031 2.5729180957795625 2.1130220530611297 0.9628189831298172 +1.7285453049952078 1.2670318477735885 1.0462942659352898 2.597127759176781 1.6180479581756089 +1.8410221028632203 4.747817236663137 3.5842530119360942 1.0145580721786813 3.8797925245169655 +3.840318797694217 2.8974440081529154 3.9847451728177585 2.525060840531149 1.737725875584397 +4.036011989019101 4.99796385432251 4.131972308817523 3.7644516254442357 1.0297683447590904 +4.045331570642885 4.700916795419603 2.453536290177852 4.95530954363519 2.5862446517412176 +2.6077178616540335 1.7266024610080262 2.2598755403018465 1.708533052589717 1.0393954435209793 +3.2273718747073104 1.7261453720962647 2.5974530553078736 4.035268884156423 2.0787004040576007 +3.6036844429852914 3.1006242587592596 1.586963779667046 3.0128542118665504 1.512029455265875 +4.322387659385562 4.716917216942708 3.8695209622444033 3.704356764603729 0.42770642264119074 +2.406304451982653 4.757629335018868 3.02222709727966 1.9548141883725503 2.582266257318716 +1.0660142800845884 1.0289325331085726 2.5370345486914365 4.516731708259334 1.9800444185825716 +4.558615239111584 1.0460996598009715 1.7807690317617282 2.356947497993176 3.5594588521078023 +4.665468288435152 1.805392006525227 4.1981915618182954 3.9780375703207493 2.8685369299201993 +4.728163470038323 4.899573513911443 2.872238490551759 4.853525439938065 1.9886878535730736 +4.849429295644052 4.109635612701426 2.8844082210907636 1.1600943614170127 1.8763136678031211 +1.0611538975176158 2.213884898854672 4.684260208296823 3.387499702640332 1.7350436797020448 +1.833794702450584 3.011110385261176 4.008124132281958 4.750182943759607 1.391662134529567 +2.207736267082546 1.8596237087472538 4.627834472261769 1.0189076949342808 3.6256771557023817 +1.391214533700547 4.340735501862561 2.0884649255640393 4.640203429195841 3.900133758288868 +3.6953959393278097 1.6217753024446862 4.093764483078301 1.239694629918882 3.5278346435768495 +2.6925944782084295 1.4866925928622172 4.080325607683195 4.911847048590557 1.4647959802546584 +4.392732949790066 2.528655928461271 2.7334435807064685 3.4327653079305778 1.990937974828383 +2.4839949691693954 3.8482382546208824 1.068228713092632 2.1698419859017193 1.7534855416366044 +1.6138541596524876 2.4532232954708095 4.8452446514858325 1.8264518780730659 3.133312999841149 +3.0255845815107003 2.3356101205765625 1.8156567830787216 4.456707229196793 2.729690864490303 +4.477855407847866 3.4582923938660235 3.143613023837877 3.194735290853159 1.0208438791825711 +4.682776636329184 2.99253108378358 4.44860697091028 4.83330609859842 1.7334715015667863 +1.990552301263563 4.413737571909053 4.13080603621534 4.3555043993156906 2.433580943846584 +4.17552208142247 2.563049855771878 4.7373933767825465 3.3689901870019066 2.1148508146666996 +3.3588432241829493 1.930279553862217 2.2387227752331857 4.302580063356176 2.5100400526482893 +1.8332142191129428 2.974578482327715 1.0283331030270806 4.5003988344083705 3.654853324604982 +2.3260745766851594 1.6296474539384205 4.044596195058091 2.6362477231404178 1.5711321254592645 +1.2774287605799652 3.649527405874663 4.222314551025979 1.106655512785947 3.9158885614347794 +2.8325533809755528 2.593694983294554 4.9880410106203215 3.1467017764478213 1.8567669507629931 +1.866754790140135 2.2639701671488384 4.4901098939390245 2.3128596155262144 2.2131874820224393 +2.7252208098671455 4.530348543352813 4.096759231924549 2.7619599338792287 2.2450334741961826 +2.7867978854377644 4.497360272533676 1.9072647336849808 1.872469757615292 1.7109162371393154 +1.1373780676097418 3.663065585405466 1.4007444533378224 4.254422700244964 3.8108499018486865 +4.136642770710136 1.8983882946728179 2.835331716443016 3.1851571347613468 2.2654273157183136 +3.5098486772240287 2.146326997229223 3.6791370773773266 2.6414434321940865 1.7134758454876269 +3.234631406799184 3.3112498607152903 2.5568527353347 3.4401609109547158 0.8866249041154074 +1.692111354252975 3.817155330781791 2.0249483400221298 1.6859405548193545 2.151915003109903 +3.159114718177641 3.4914501963561055 1.9862471351117126 4.446134517798024 2.4822354452298474 +4.625996578872332 1.3278345466826722 2.85603921023138 1.496311619756534 3.5674545422297896 +1.621953602238158 2.5225817635042196 3.20646227149078 1.0413083721313772 2.344999465410752 +3.1230767477527928 1.563869809326993 1.1108956482579702 1.5772119607655468 1.6274449852900774 +2.520376593432527 1.9196339777760874 1.885388210438761 2.2372888114985465 0.6962224668107019 +3.5881326104376363 1.1075129544827629 4.276248895977735 3.2468370679176806 2.6857331567487526 +2.026074780869725 3.1837392385651757 3.569557416386509 2.411524569219045 1.6374452881638781 +2.423713354050766 2.42967570625941 2.142776137095823 3.286199390350282 1.1434387984176813 +3.146729287945909 3.0966733315181343 2.507421560199832 3.6879664553359177 1.1816056229579184 +1.0244545370632316 3.3279717059495635 3.134360472782869 2.937753715331759 2.311892204327343 +1.2726902269280576 2.6410107263360802 1.1548941096849323 4.806141509086632 3.89921896804192 +3.5342495275872237 3.5589089425238156 2.9373364570796228 1.0462933735049296 1.8912038575152863 +4.398320250152304 2.2406897674842017 1.4691638135393559 1.512666671953887 2.1580689976061525 +4.544644934652014 1.9885586429743185 1.0718340418707761 1.8349152968969848 2.667558833891955 +2.953643979188914 4.582479398056464 1.5842969174005295 4.215085441677257 3.094212837091778 +1.0736220645996908 3.1593436007973725 3.558892664346241 4.653389589950368 2.355452790169165 +3.332578856727795 1.4460354535681197 2.74390674865098 4.896063153458584 2.8619614257986923 +2.4375046682345762 3.1599587579119772 3.4856023950790957 3.975695168767033 0.8730010529848965 +2.1242335514519235 3.5190090822493576 3.757279348636273 2.7685292887635393 1.7096857787937523 +3.7095130201351214 3.2741333227814255 3.7010779716471194 1.537488448035488 2.2069606039868046 +1.5065806289318573 1.3096401016169494 2.338727720399634 2.7632548163651416 0.46798378872347823 +3.5705688728624407 2.743323769838728 4.815377433817286 2.459149418351837 2.497227446858007 +1.0157020667672807 2.657629783308768 4.373106388296112 4.475233587860754 1.6451007845229604 +2.080181557718672 4.407416784684358 4.666715076376613 1.816734776211792 3.6794580460928743 +2.3681788798162158 3.3077632518073554 2.51380844515173 1.3839442047902288 1.4694937882609973 +4.955318394922161 3.2729815966363156 2.4517916692394004 4.574755723147 2.708732817582874 +2.432269427853751 2.3370188626974824 2.369553178257416 3.469426361347709 1.1039898953540115 +2.3397003931319698 2.967933631973756 3.309363333769831 2.2549693215934368 1.2273645486566227 +3.5335504831699995 1.5082977677834415 4.0682049226312085 3.466244442171427 2.112819202207325 +3.025343503635411 3.393060683353904 3.2021914909427203 3.109517973201773 0.37921538095204427 +4.1119148355950745 3.4347824265921676 3.136013010233383 2.8073996040444604 0.7526586676901861 +2.1878305166360983 1.1619126511716003 4.163340540792685 4.878387989148909 1.2505200198637276 +4.707352407027241 2.775907487549868 2.0956257679596284 2.6401847321858667 2.0067446131718176 +2.1448836369012487 1.0370839431664263 1.6805271237738704 4.761081959321819 3.2736887842702482 +2.974697085385238 2.9931904762814683 1.003641155872848 4.637143265177522 3.6335491717917283 +4.802712642957415 1.39820488252747 4.975745736134168 2.0331868701295335 4.499925085013105 +4.4929853042646295 4.1356670077246775 3.2682355675119403 3.096019864244791 0.39665427451877017 +2.199192929466897 1.9140479837366176 3.3622178648584944 3.136280772894747 0.36380655519184746 +2.3229054588174334 1.9771018738852515 1.6895046847556907 4.710678320529361 3.040899580197584 +1.7579638487671123 4.398867583664765 1.7683169705683626 3.3392415513097857 3.0728124862044517 +3.8526332005786643 3.744159254286261 1.7447171338993588 4.2298131522298466 2.4874623248094214 +4.490153055358604 4.414779699839763 4.1464068363268005 1.6279224333241964 2.519612039757223 +1.3208507911064027 1.9935023388595847 3.553515736874752 2.0281812659931115 1.6670648915847652 +1.3999087538583672 4.1940046602681385 2.8667020593364883 1.733360498526149 3.015200661262175 +1.5981912865264016 2.677423210924095 1.380404928892617 3.824333508895962 2.6716153261269326 +3.7485573543006607 4.198550734571585 1.0136585033024144 3.8287053550824264 2.8507863511677285 +1.230813444722029 4.6734984562574855 4.600234605907305 3.4374226070458467 3.633760013174655 +4.0752936640539446 1.4991882547804507 4.014132477375249 4.747587548738789 2.67848379151285 +1.0930387239130757 2.2121036087240387 4.933409990796076 1.9900643675173293 3.148902931894079 +3.4197635822368917 4.620896216954505 4.11539523755741 3.773861998846703 1.2487451939158367 +1.5305652541394994 4.223819868139294 3.9458691547666036 2.916705238342597 2.8831924636937414 +2.679420027528432 2.74310128214379 2.9128706208152404 1.356139925624079 1.5580326567629263 +3.2955305765855214 4.407896395930512 3.4535523766824983 4.215418599607921 1.348257341044989 +2.809846202909125 4.602352460644886 3.704624885251045 3.9120418246702062 1.8044668106617736 +3.5073837585198127 1.2697230559909611 2.39936198501524 3.5823801204410635 2.5311375561964833 +4.995713650746751 1.3944268071380161 3.8520009070766896 4.762182605869515 3.7145252260237456 +3.518576788895312 2.474835600859844 1.6846498023431455 2.6390651046737874 1.414321122279018 +2.5178028672743693 3.8812976776660424 4.531447989561707 3.9411638325862217 1.4857837944806385 +4.98871581792221 4.191016193060923 2.243468771938066 4.359186282287382 2.2611026679703303 +4.626015342540504 2.491230408633248 1.9180581493968978 2.8457403923152196 2.327638515290417 +3.6524884549765813 3.507225785358055 2.4112149795186824 4.361084652651756 1.9552731229648659 +1.6022722988140106 4.684375136495419 4.930640504868188 1.2707453515026552 4.784787397123544 +1.5791105624981232 4.224997582912842 4.223078018494712 2.137286715998488 3.3691606495339412 +3.4137430532035546 3.6733646981826795 3.7205535088805353 2.243558526715775 1.4996391485559275 +2.118757413536005 1.855811309395854 1.7333016261339673 4.999122823464923 3.276389590176766 +4.72040539521594 4.234120668019536 1.4683323687017173 1.6321322488916876 0.5131308182663856 +2.97052128233839 2.065031659010583 1.5365822278251984 4.360558584472994 2.965595036558446 +2.1805879056876605 4.92607072493966 2.637064360943126 2.510984772103863 2.7483762430805907 +1.7996213642552568 3.6224772815267734 4.726064742704391 3.698706297821427 2.0924313774659673 +4.423143468377063 3.159961879279804 4.148786444766159 1.3668055100183585 3.055330693776784 +1.7622260934684237 3.897673709446554 1.7440532746918738 3.0872879146923697 2.522779383672687 +4.8166461890001555 1.9229094979268533 1.4458015689252748 2.324510514793046 3.024209227023143 +1.770004185778053 1.06690464710399 3.493998202546478 3.63469309405019 0.7170383628362722 +2.3547822553372835 3.9130008402910694 2.7812215340662925 1.891411292482018 1.7943821846317032 +3.585585390426754 3.882429520477426 2.0231236839719187 1.5205845418689767 0.5836625967895331 +4.463686626966295 1.839515055526809 1.4182445708094313 3.4208180512290722 3.3009963618324716 +2.906811643184093 3.5631263234420727 3.1765608034770114 4.869642860671448 1.8158402495582806 +3.3552687266443875 4.103618902206296 1.928162051749391 1.363640651539332 0.9373966057964288 +1.9240715435505549 4.817706194553743 2.322342542945235 2.2896321471788887 2.893819528491287 +1.0936850729632979 4.416395182197196 4.37883987175416 3.8564453636119262 3.3635247125808823 +2.593763557939746 2.2505745801980455 3.558223063999003 1.7599352067763965 1.830742442802282 +1.2799883038828326 2.469210376320565 3.391693490039465 2.7703921951665342 1.341739332576889 +1.3951432106924742 3.4913168788454487 3.5581946259007893 2.1249645540071396 2.539309450625932 +1.7225381999387328 3.4407123457997297 2.3936436207216474 1.3885915421336525 1.9905406492154878 +1.7509104705188205 1.2384182546350484 4.092155266998187 4.662799100383049 0.7669958643445407 +3.4237953529292637 4.1463849688128525 2.8674475924980007 3.1927475240170544 0.792436621080256 +4.961669389777739 3.6546876752495305 4.892122848942607 4.084628919142325 1.5363097502702368 +4.36521059605181 1.0785256017913016 1.9721744795836171 3.936638591379231 3.829023047466563 +4.36983590759646 3.715471898484662 1.2905457286741813 1.572184987973893 0.7123994166194662 +1.6427884284315692 2.5052999045164164 4.077530653050724 2.4866841223800273 1.8096183936192332 +4.592150427086531 3.40125768053565 1.7953786877603584 3.829896142576707 2.3574322488122315 +4.155540899361075 2.949987586653423 1.757579939609741 4.428189789617999 2.930105076740683 +2.7716227723855074 1.9811757707847506 4.229480580362253 4.75117380792334 0.9470851524666254 +1.7339890302732726 3.9334492498406437 1.3929012618663963 4.713669177615346 3.9831049205019657 +4.477847265365274 4.024235304853134 4.0361558542167515 1.1187244329210877 2.952485378233549 +4.978660450141263 1.8271830124225517 3.665688449665662 3.5510201621961794 3.1535628829311895 +3.0050381004753297 1.499967528884628 3.453465733182339 4.856992410727846 2.057941826206536 +1.1107517804369675 2.727765158252101 1.1364818302274489 2.873661680541943 2.373294355188963 +4.459509872341184 2.348171660315252 2.711520106150819 3.0411326072517415 2.13691212885389 +4.9297324726181895 1.6100230316640798 3.327315443096845 1.0026956575968122 4.052693908932436 +1.1383411515929023 3.0836838338256056 4.406689887378519 2.538027733236452 2.697453687765408 +2.2263325142107164 4.374334547350662 2.007584645174088 4.228437905881013 3.0896766723988973 +2.396070559116164 4.489922096903685 3.556145753920684 3.8424781581870096 2.113338711145968 +1.5048821746813692 1.756537695913467 3.8584481318965573 4.168837932204907 0.39959020195952755 +3.638008868296093 1.053135748340614 4.572725652845897 2.379451832866943 3.3899880671874705 +1.064956443338056 4.446684781036867 2.6803803486521867 1.4632156225204072 3.5941030203006994 +3.40728408910997 1.5701414518750054 3.6380914915505533 2.908829930809015 1.9765918884589768 +3.852008168300702 2.7146058797659736 1.8786709191039588 3.729197315796742 2.172126126821556 +2.817712867580115 3.9163030848833333 2.1583680989493566 3.073333330778868 1.4297069073803776 +4.664940347351985 3.7912987687353543 4.766884220389532 1.2094236989809075 3.663164611271063 +4.260788823796244 4.5294537057355315 1.7472838004712763 4.243144696797988 2.510279353498377 +2.231190976210985 3.904791951304715 1.000274192400905 1.9582485160037315 1.9283814530628984 +1.9025359478570554 1.2598416795722782 4.477035064137619 1.4753988812557082 3.069670291231941 +1.360169388846042 3.251830088084467 3.769019805753198 4.285548829657589 1.9609136731582115 +2.5421680902247896 2.33952865168433 1.4857246361942806 2.388027612665254 0.9247774885886718 +1.5008932661621666 1.0154822023714858 1.8509509633640349 1.8239312043441296 0.48616249158886593 +1.856780828722234 1.728713439816599 3.8278389122805443 2.899103461972072 0.9375237558381057 +1.4915878348127811 3.4947598285611594 2.009669148325271 3.114948646182069 2.2878681790960833 +4.464195489692756 4.809688149404094 3.5668486752555606 4.5658744021295785 1.0570797419639515 +3.5267067228797107 4.625403838872128 4.684374125605101 4.3442647111161286 1.150134673207484 +3.4802925481432507 3.6328738743702904 3.921456602191427 2.62379865933474 1.3065975653475905 +3.4861977664841377 3.996744433033083 2.65448039362126 1.8092305413543173 0.9874741573740187 +4.34104544859572 1.611990090335127 3.192820376130837 2.5075617019359875 2.813773729177621 +1.702050253430932 1.9513212407422529 1.7848564880152993 2.7073070706551725 0.9555370754333933 +2.0662283208500747 1.4405280135737386 4.216741895115996 2.2664978768515494 2.0481583447824434 +4.108840904114453 4.284371381483092 1.5302935868369758 3.4872148364153515 1.9647777801921147 +1.7006423383023077 1.4646308077086836 3.039678779097846 3.2866184128575724 0.3415854582597639 +3.636564796434771 1.4475772061706076 1.9863452477158092 4.8662881851467645 3.61742145639528 +1.5782406171673684 2.1619670548965955 4.3168941520263235 1.2791901549451397 3.0932801567247434 +3.9574976641398503 3.651236758048317 3.4367191361780454 4.949859539546276 1.543823054273183 +3.52199593072038 1.3900408801696744 4.989819751019626 2.2098910154124978 3.50331787204971 +1.5709554829720918 3.9241141129454222 1.9184138165802485 3.195052820555473 2.677155707890151 +4.430933100163847 4.681774086340125 3.079017277761317 1.3635660808695471 1.7336937472527534 +4.771250925372174 4.279275520257409 3.4909922811522716 3.1806581716618125 0.5816760771693067 +3.8031339014949896 2.4514260577482854 3.211347008651429 2.103096442417597 1.7479512042399734 +1.7445919469192104 3.3097262659849376 1.0390680558817524 4.821406958264257 4.0933767245629165 +4.044001229150685 1.804284262449353 4.558582630570688 2.4952555123719904 3.0452669649185036 +3.1015564875906216 1.1857229718266389 1.4485110089262099 2.204100704544344 2.059449889715428 +4.372915230835354 1.0240251671645564 2.342091790489675 4.581932601876014 4.028889613641061 +1.2297244905365892 1.8108308789820757 3.16730229573835 1.1272682442205597 2.1211844724220117 +4.0098590483077725 3.6882343992716438 3.2034217566507643 4.457095919645575 1.2942725067884087 +4.601678038527261 3.135185871829912 3.786064172139237 2.2937933589299084 2.092240773654198 +3.889662997398314 4.408975354313293 4.684594729250792 2.1382933527822727 2.5987181501367296 +1.486276181701597 2.000419059943494 3.3858158991915253 3.9363177906368345 0.7532564183143249 +1.7800897275478524 4.571089140799925 2.7107213108399 3.9749232262638423 3.0639654384041246 +3.7825743873122515 4.457833898576406 4.824302334496547 1.1499711926444802 3.735864658621431 +4.721022848140703 1.848031934964018 2.7255458036617886 1.3747092153581986 3.1747182986046947 +1.872981378136203 4.434787321192497 3.3708409243655324 4.726218945406304 2.898257971575157 +4.6471139317721475 1.5103192771188239 3.666657385098226 3.5263119750452376 3.139932728512604 +4.47846459761773 2.935310782568044 4.067717134334606 2.588085462797757 2.1379040156932514 +1.7043158262507676 3.843672792988187 2.876696856658677 1.583485628507002 2.499848697770626 +4.53641817361822 3.8863616998430537 3.0264877430765784 4.691633038320256 1.7875352509444833 +4.138171254964808 4.52931645415044 4.970091210088832 3.797174413256827 1.2364175585685515 +3.7095411357705617 1.9287668194223744 4.971373392462086 2.6689345550003827 2.9107356056532088 +3.292277854736489 2.2878613484456007 2.8750720194075483 4.45661842940126 1.873537180061712 +2.6858406127947263 3.7617604709114913 1.2489957193845136 2.1885132358608415 1.42838954940725 +1.820416349304538 2.5052146686387364 4.700160490220345 3.851828331373334 1.0902367586432649 +3.9600514496373918 2.3544666396417644 1.5504585410371265 4.439105394417293 3.304872648927918 +3.503083551146401 2.834112626555229 3.65864386933096 3.8259945632883268 0.689585638420914 +1.150298441725532 1.0213796444536132 1.6389317483159869 1.0986618530578198 0.5554382197979437 +1.6227064998205014 1.888315187996795 4.750085252235946 4.653448122180548 0.2826423714521151 +1.3296661665392655 3.2656325838049667 4.364697241582693 4.054719051959076 1.9606255243730073 +1.4567508639937925 2.750598229125375 4.5672555924805165 1.8386612023919953 3.0198126348964913 +3.484659142572098 1.9401903385382604 3.676229169259411 3.035513401548658 1.672094668859061 +1.7807851194188493 4.7688533048122075 4.254722015836688 4.768644633557022 3.031941282011325 +3.7083447312434576 1.7455099412718482 1.5472982140255005 1.770032061481889 1.975431795715969 +2.4990459732671013 2.8488716141830985 4.221854857125358 3.5534655941260507 0.7544018729662892 +4.343857183370913 2.1807301668935457 4.189508437054606 4.073627176440614 2.166228740455579 +2.8821706644428797 4.02551803687807 1.3701830852121026 4.55178886991183 3.380807386304227 +2.2277385857736185 2.975371671156639 2.6697315290362895 4.70788109923603 2.170946544911855 +1.181518340515626 4.809140341358973 2.3245060182459345 3.684438746503975 3.8741526049434407 +4.378600643637946 2.693454362532282 1.4247466164385463 2.825814595559811 2.1915084920764496 +2.736351748145394 1.2141837016047252 4.241749253512087 1.6497522193981524 3.005901559726278 +2.992397834061049 4.294200208009864 1.0866563694203006 1.7748409511326 1.4725105905647338 +4.706400702185141 3.9010499522130253 4.240722092007758 4.132509645147966 0.8125883115920582 +4.56156396260065 1.6922065130364432 4.726819000607582 3.41806382414328 3.1537362421882587 +3.3215169606516826 1.6286888682130636 4.9397783466333856 4.46878505590319 1.7571288030369976 +4.875433587483208 1.6552885692976664 4.175500402925962 1.1148366946819785 4.442633934177671 +2.9881061987348083 2.396690120968424 4.652209869288914 3.1425703023253613 1.6213527065948592 +2.7504504435748665 1.4842806435658664 3.5048679373583402 3.792258760720294 1.2983756959399282 +3.0394833073751366 3.5042971504609386 2.3865037805173555 4.081053161191168 1.7571424279967158 +1.1141600471231015 3.408879121895804 2.2082379562591585 3.9160675191472225 2.8604925184310694 +3.882554117115209 3.455887920636883 3.723954551737822 1.5031128198948704 2.2614557349443043 +2.2312582281260105 1.1166286665414868 4.3726480801381635 2.6484711331004025 2.053091621008318 +1.818861933843292 1.2481825913248525 3.773307747189781 2.7513508886730604 1.1705002061711236 +4.8664038580562075 4.479673444387307 2.8206426984708566 1.312721197722269 1.5567233746804185 +2.364729987787089 2.431202927751067 2.2189444770314752 3.660425791260967 1.4430131777015196 +4.20512268560285 4.230651639526624 2.664084495059965 4.971019534334914 2.307076288925651 +2.2882680365707557 2.8315111710794607 2.4884862682511115 3.3427500615657144 1.0123634385728761 +4.226444296533976 2.2762344938869656 1.1169527805459039 4.789576977137726 4.158303351576484 +3.100774639389763 1.4018790522344915 1.2783467818608907 2.0383641043488145 1.8611481796292757 +3.948626556707058 4.700848240842449 1.3834609163499594 4.313396578600962 3.024956271917613 +3.7512737768573956 4.818707847272365 2.5980419194481104 3.347248998112813 1.304119143868369 +1.7389244181955745 3.413374399318308 2.383227895276319 3.427625403995306 1.9734611461846288 +2.5458973802193805 4.542192392382359 3.739529985222305 4.602665746473445 2.174901634083107 +3.250556132554483 1.3610395895835024 4.564404511465548 1.4983492801258973 3.6015229345078787 +3.379941860434347 4.7018034356256875 1.6774604794046142 4.671767178220565 3.2731010724603986 +4.981454307367749 3.656195999114055 1.1814596091686234 4.601675132886452 3.6679945218437644 +4.541696787112677 4.1573236047472335 2.1897010777493153 2.9623157805282267 0.8629462452968227 +3.2597132049571753 3.709585985431831 4.571389331468259 2.440769740938577 2.1775962339609394 +4.325892092114001 3.436032433602641 2.4669417252368557 3.2680293504968194 1.1973268539503334 +2.00872430124618 3.5174589769471694 4.740914609387616 3.6750285499790643 1.8472664705732253 +2.7496931024998825 3.4255334705988814 2.243146847300414 1.3921886757437663 1.086687633541131 +2.117171536901791 4.454717961176401 4.825738917748083 4.711697485803514 2.3403266297333336 +1.1989822012895957 4.004594362334684 1.664318808858427 1.068337239386325 2.868214362517997 +2.853325023838367 2.00114131526453 3.642143781245153 3.9870245132144126 0.9193257270643038 +3.2287202923921114 3.984736512465785 1.6868685977091342 2.978789959313633 1.4968705119630445 +1.232698533146884 2.2482022661855123 4.979104331939519 2.874414829152074 2.3368709281770466 +1.1333904191340811 4.534966636104248 2.1835255579072212 3.5909183698728206 3.6812328487925767 +1.564242100570652 1.1130427900692164 2.5265484244646372 2.6857403516236573 0.4784588670612905 +1.5704317039966238 2.1099289472020613 3.7516278225376847 3.3078082967941476 0.6985936206819278 +2.6519560694155926 1.5625929944787886 3.5381383473004577 1.8817947409829499 1.9824696848185739 +4.147075145903075 1.0131625674951867 1.0586174248145874 4.736581172421897 4.8320622282641175 +4.13562216472747 4.634105897938376 3.664036769968138 2.654543623745066 1.125860757175255 +4.186919179042906 3.440090662482515 2.6767389118741947 2.39648865709203 0.7976797844080435 +2.4766633977342596 3.0744299625247673 4.316991889318604 3.265161512615041 1.209823130601248 +3.416693841291736 4.75463612539749 4.237903885038248 1.0256854043612953 3.4797179660427475 +3.662544316086495 4.842559709582703 2.428820206522804 2.3197462929289165 1.1850457575615794 +4.771800058001577 3.6643671484924387 1.9687466742092106 2.8498974102294508 1.415215272901224 +1.7259344321269157 2.429258939813736 2.857207249610277 4.68302790503744 1.9566007331332016 +4.102435180656279 1.057124777376801 4.400732266942314 4.793132286054443 3.070487457606921 +2.8986203464308136 3.275340938556303 1.2530637854691609 2.643364152100707 1.4404351821540569 +4.426175200087509 1.3962897259508322 4.734422199779841 3.9527157940989377 3.1291006521150755 +4.6142610359652165 4.601510409257307 1.6221384333285713 1.5220063003660806 0.1009406881939209 +2.7812079387252866 1.5483860604159352 2.6135920490933024 4.348775658588917 2.1285469086445863 +3.8675469410504584 1.0853330554548517 3.8017505466186288 4.113960785205334 2.7996766488791827 +1.1658014951276345 3.552592445407303 2.5615419984404015 1.115045517669083 2.790900053606494 +2.610364398593209 1.6387218508757715 1.696250188929643 4.0870347443777435 2.580685961349037 +1.7652385168619085 4.7850621719258095 3.926644851073217 2.106926632541596 3.5257211039075957 +4.499716838096402 1.2470488261433963 1.6715572686051559 3.6622952363844914 3.8135137147177693 +4.835796537113314 4.931761308608831 2.871104805284748 1.1659681525681784 1.7078349574258205 +2.7642488960167153 4.804241268120559 2.208524196711527 3.8769912891723095 2.6354034448005117 +3.3932353376078868 1.2651366298312672 3.3692163715049257 1.0246177390239959 3.1663775607896105 +1.751146405729402 4.501579516488418 1.0262511387127904 3.208242510411288 3.5108358894893117 +3.4031285639796183 3.7777420422395127 2.580777923871222 2.5170824188310004 0.3799899675732312 +1.9814578283682116 2.573210335306834 1.1360291772050184 1.7546670797317545 0.8560863764310372 +4.675511761201694 4.223969131448492 3.5658594450723573 1.9110372906570188 1.7153212845494163 +2.9767559593937207 4.68958101484627 1.788956192370652 2.3640841866352216 1.806804328191854 +2.637175378750161 1.3010128975291306 4.164367142656857 2.2333635283005377 2.348213179181122 +2.69151480224743 2.550856811051858 1.186294125613506 4.335966819104752 3.152811879356517 +2.60031422757257 4.612543916451599 2.881702589952979 3.825451581469707 2.2225504448257265 +1.8639719788735092 3.0914597214565007 3.8118489987577586 4.65757815486778 1.4906320685152514 +4.7414854023576165 2.3479641666106033 3.8944902187107724 2.186701546115343 2.9403207403644194 +4.525422531630862 3.8987673496201602 3.1660698444370268 2.075166073699041 1.2580809807604683 +2.353278816793004 3.8494945091115467 2.5684786692957644 4.929783481941258 2.795428735661674 +1.8584279711029192 3.8977849457826785 1.6490178415999712 1.3046847607771586 2.0682219756892413 +1.2649430625742042 4.355083566873579 2.8477884173208 1.715209848491757 3.2911552000600697 +3.131332608053304 2.647772586004012 1.8137808774736914 2.03368208566547 0.5312126093086605 +2.6502672434668777 3.4107322511698315 4.948333301486734 4.3738807319523465 0.9530492026046263 +4.552350010848594 3.597856462394135 2.573009944011467 3.493792160167216 1.3262344527382313 +3.9855746426686625 4.402206210267484 4.587941545547032 2.7190698710023526 1.9147488605650835 +4.357980336458812 3.8380470364480073 1.4031261240768598 4.498640897266277 3.1388759687974384 +1.9557875756488698 1.1323778285284836 2.2000798732113678 3.833626187480956 1.8293379055047798 +1.3062734982794049 4.69835199372113 2.0504232492097234 4.630895701609675 4.262045822939169 +4.368843314628606 2.0204090692314702 2.139286825267575 1.0414759582255706 2.5923603346659836 +3.0426801831350505 3.9977807750928966 4.9465573780001675 4.67813392112536 0.9921029648977217 +2.4751751779943043 4.174419473264406 3.9431315742805486 2.012943371994638 2.571586605823669 +3.419052960820188 4.718360273210854 4.614725140852202 1.695439712026539 3.1953758631788043 +1.7741997811636332 3.8298444372877003 4.752226799334106 2.5117431457564754 3.0406318347014656 +3.8876085921838124 3.3100682824910996 1.627740324660342 3.6843500287823185 2.1361639179633753 +2.237533158602973 3.2102893445386993 1.5347849545403842 4.117888642649636 2.7601955113360797 +2.9662257982108216 3.561873663584517 2.5431643763934435 2.6581994685944688 0.6066543100992017 +1.0018560133302659 4.292260397857818 3.3139826408041224 1.9912537359824585 3.546318199114239 +4.615483276705328 4.078710888592999 3.5083214444541664 4.639725399276727 1.2522777270349987 +2.4213294725738206 3.9187080994710626 1.6696718805357493 3.720655309565669 2.5394243005933443 +2.7495845829365213 1.9723215344601481 2.4319042132220576 2.4172960894403714 0.7774003111699955 +2.966223108935871 3.344787520124018 3.233282754834703 2.296135785505637 1.0107202657218672 +3.7133361144011725 4.863037862805983 2.8962747044597354 4.102643785614527 1.6664754634411318 +1.7637942487980927 3.7263186203086045 3.0783384290913713 3.448750932205704 1.9971748374231424 +2.917442217139628 3.303806311267989 3.1775530339265887 1.8243130983577602 1.407315009672659 +4.904791801303563 1.7014096653538888 4.54791790086531 4.8247171883345885 3.215318795153134 +1.1811770478943586 1.3616294927846884 2.3247171173518786 2.3415986648844975 0.18124036943791955 +4.256864681086381 1.614736067581302 4.010516379751662 1.6669707081091767 3.531720533306182 +4.102704310699275 2.341906685008906 2.637508634416114 2.0741168023771626 1.848734333279135 +2.3332793703480936 4.266263983065352 1.0242138268524643 1.597616681377017 2.016239159072801 +3.0263186592099607 1.8994344018296134 1.5882601549635944 2.5302347088134782 1.4687355751231548 +1.1059064388498565 4.504627393112999 1.7880933082781088 2.35469916702218 3.4456271307427437 +3.9343080319989165 2.53615987394716 4.211954128081072 3.775325595687158 1.4647398223452461 +2.0730923629371607 3.1042786662894373 1.9562520496195601 4.264881452025056 2.528460976537406 +2.3419210318154895 3.4154097312147083 2.1355873887970627 4.01708809618974 2.166200106097535 +3.071216157143156 2.8566109647199798 1.3592303136170272 1.7434288619823755 0.440072622621573 +3.1243206306044673 1.1124741321613154 1.3579528443904763 1.168524992986482 2.0207447251410815 +2.4396832413735443 3.0159989262392397 1.4846829390632186 2.375091984139634 1.0606451037817077 +4.3457157524707455 2.496946984956058 4.8308730047700195 1.5620905184888443 3.7553807927234644 +2.0137089202808336 2.4060178184232384 1.54659221601201 2.1884049769927456 0.7522166521152152 +3.5034865032919695 1.9326614600377683 1.4069446848444311 1.7702260640959389 1.6122855445067543 +1.3982289361890836 1.498154645076208 3.516133448365003 2.8007370909384823 0.7223413981738331 +3.5680204984834982 1.2785136230394878 3.9210162394234294 3.9575323434156533 2.289798060649927 +4.755726517994294 4.128207707223626 1.3635384983338712 3.1376099878399857 1.8817835974812505 +4.834226651819854 2.293972442454526 2.1787678680156635 1.3988706964341682 2.6572788800649216 +4.6217413255562425 3.75466378276912 3.2024585761655224 2.3648528653916894 1.205573221304576 +4.809682759893933 4.0658089232291506 1.0517805277541052 3.060050464643416 2.141610707922376 +4.894545553511897 2.2972372152794884 3.702717016825708 4.676305410962698 2.77378531343899 +4.203624702859173 2.092822660624445 4.0643359203400315 3.9570844207736426 2.1135250520543964 +1.497206755025902 4.925954174108231 2.096897826280618 2.282279494680241 3.4337552660086827 +1.0277129194030934 3.1229447262524497 2.593344958342221 3.820225151362341 2.428009747191783 +1.3595999004153416 3.2232527600776746 4.699825537876173 4.411324475698655 1.885851225363535 +4.562748281611693 2.608539139530984 1.5395292989148932 2.769081649581464 2.3088378795449263 +1.6860439344406983 2.2482321110062022 1.3263312743137226 2.8527617227497175 1.6266669787582702 +2.2107160947403792 3.6795711693494764 1.5321817193256266 2.4146358536973738 1.7135520212338713 +2.507563910435543 3.1349991672050868 4.811583102856127 3.6879456142379277 1.2869484089370782 +2.4033676699011233 3.4331649873110393 2.7326794932659055 2.0410658156084236 1.2404886110188866 +1.6165855835741718 3.541968942535056 4.789083048626136 2.4209991424280672 3.0520357903795623 +2.735000731368229 1.0240459784552187 1.877489544546405 2.1476158537847327 1.7321473348010383 +4.699866399350402 1.8873721248167628 4.329343040310574 4.963622738985521 2.8831293381386276 +2.354029412963899 3.1149775809329228 4.27781225285201 3.492123545152068 1.0937773355407487 +4.896479614729125 2.095069412429692 3.300892850930661 2.1419378280639094 3.0316787208699116 +1.3984033777120248 2.5574696847908958 3.798504001218463 2.3409667323857066 1.862216312419667 +3.4916718202595147 2.8766278717428757 1.6029246076827137 4.995020720944349 3.4474041103722715 +3.5936417743505285 4.937147616139425 4.69409733048782 1.5617317300031157 3.4083312928793754 +1.4355330929171015 1.198794845304692 3.213275166670241 4.819398663242437 1.6234770352930437 +2.0468938212703316 2.2800108251215914 4.584572370122625 1.3916441833008277 3.201426860586653 +3.160727851411814 3.1681996924992246 2.9220534781895635 3.830981344267186 0.9089585766918401 +2.2788057880670025 3.2766286299819645 2.0027833800035726 1.503584886768567 1.115728264182346 +2.552624923268994 2.7081067224593887 1.38646712999667 2.4899305843067028 1.1143635784057697 +2.803102026876603 4.305281307601739 2.7649859696457133 1.43254199275742 2.0079714995451945 +3.2093974890485155 4.792141106805902 3.4187891969561646 2.532951981864096 1.8137764281172615 +1.6541712626672829 3.29495267896448 2.012930864871836 1.361243499125178 1.7654631343474874 +1.0538044368740263 1.2551119805541697 1.0639924523077364 2.536525186933656 1.4862292493715163 +2.080281011327881 4.733324365462016 3.2271392858176604 3.0216261893070584 2.6609912949411685 +2.4668981640659773 3.003203221190306 3.553784637685668 4.573082725546442 1.1517776288041714 +1.5187265195116955 1.6505582342631153 1.7089768021632463 3.6777816506475722 1.9732136560518958 +2.2808324095217496 3.620699722365528 1.603582211329154 2.4816861825424845 1.6019709736096435 +2.020824816592768 1.0540354529603344 1.8449575278981842 4.057056601026657 2.4141383520769173 +4.770831682154995 3.4595340495257365 3.9901074798473513 1.8769014659790413 2.4869943985438105 +3.0801893400141678 2.754590061323691 4.648635627444239 3.0612724595766427 1.6204125144500738 +2.888143545444966 1.9515607564235071 4.4460450062341454 1.0884765112307395 3.485750065528315 +3.27486595375074 1.742511185470999 3.3156734247651345 2.2147573560769 1.8868299674760352 +3.9209001098507845 2.4472191554833707 2.923866535477828 1.839540445861577 1.829617070287584 +3.78787119383912 1.3522811834054758 3.3341490135625844 2.088205601267558 2.7357766147047777 +2.6570615524989893 4.739455993222761 4.410573227045761 4.504860384571186 2.0845279261337555 +2.044091992882166 4.3356333807116325 4.934721539645183 2.182102836290093 3.581629748898629 +4.898671126270306 3.4351917010000133 1.5663868474337748 1.0765402299560094 1.5432827792870223 +2.6428688996057894 1.7149709532541735 4.725601746867511 1.6188270888623055 3.2423823609295233 +1.7433036052471516 2.6265240713282645 4.248856065259693 3.2751713804881155 1.3145874855114301 +1.3684314256819783 3.9213196495933755 4.956233580281628 4.065967333408079 2.703666450231575 +1.2568131121014874 1.6093945585445115 3.6547327484676337 4.9919438208642175 1.3829125527363892 +1.0419143815829548 2.6807018412618446 1.61139317345897 1.1226387319436886 1.710118487737532 +4.962606961559462 4.931945256350146 3.607006527926756 4.213923559125043 0.6076910587830672 +3.293304289689669 4.635747640533642 1.114300991415572 4.110801913535868 3.283469495288936 +4.845757919425239 2.911632499794752 1.0022234410145678 3.072124632630636 2.8329017070689955 +1.8667707068499233 3.6459505679992437 4.674244938066097 1.1818430175746673 3.919483658923907 +1.7921062995671555 2.4298785250931134 2.2053086596495417 3.030223558367587 1.042707054631998 +2.571358717862885 4.051125305072334 4.138614620107754 4.634273062055943 1.560572473067498 +4.02778759315037 2.5962444215861047 2.831638965345977 1.7449061223960318 1.797304683129253 +4.579940606735949 2.3711911862394004 1.3973988251872798 2.1420232242535056 2.3308881350739634 +2.9442050338667145 2.3794285570887923 2.209219018697326 2.3908946348100093 0.5932777580624492 +3.1692636688399873 1.889459844597643 2.7947997088096916 4.328053280566952 1.9971891106882504 +3.990452715926455 3.5408447964055325 1.7172317860259114 3.777081368608006 2.1083471213629794 +4.92534165265379 3.801366552894451 1.1650945080459523 3.8639989506510295 2.923594570933603 +1.0365578416957635 2.2700926063207065 4.596770324052913 4.227687781836005 1.2875674500808139 +4.753165284859277 3.2434630502399573 1.3290536780773068 2.8071426979157432 2.1128057146319716 +3.8403236058999206 4.970229185660694 1.2704884288030645 4.207888988465535 3.147222373312684 +2.126837316898704 3.103087420759683 2.724853868202865 3.667633633852264 1.3571654106285307 +3.18182444086038 1.5977537168644247 2.0481134622639687 4.266108726063937 2.725579396909978 +4.562187528443976 2.318363691049244 2.593539144155021 1.6363716171381375 2.4394497510783943 +2.3740426556844274 2.567355080131923 2.905864922827929 1.2954555904688876 1.6219703792593938 +1.3673338658700698 3.690632730645621 4.555690280615053 2.950081961310167 2.8241274210078458 +1.1594540101499495 2.0757837602390676 4.580695982085103 1.546605139033908 3.1694427672361427 +2.4483596329771133 2.604132368886955 2.8893953468124023 2.0061655878239786 0.8968611667452139 +4.523682942349109 3.818427184787789 3.707051711372545 3.663157941575041 0.7066203695057395 +4.310756565124741 3.737401164192888 1.8744654932612805 1.765028509842451 0.5837061496314215 +2.26997346093346 2.2612647975604276 2.3508311105078894 4.888924525163586 2.538108355121262 +2.525217243292094 1.5155759424330206 1.7858314030185105 1.4342699648985167 1.0690982186746925 +1.0466033150443068 1.6278577465195139 2.7287837620947064 1.5003937481370397 1.3589697349464716 +3.770482029576055 2.7064408246976543 2.888447833293936 1.7847670554260753 1.5330671691462459 +2.979087033034754 3.0447787485388016 4.052206100138898 1.7070883429656512 2.346037658797306 +1.1569365033291374 3.243750306986758 3.2258208566222843 3.526130219635995 2.1083115435460877 +4.920756402442445 4.168424382509398 3.2382289713063708 2.112437800346172 1.3540344267515776 +4.812931475528531 4.9050879108134176 3.974493950619753 4.210256936490727 0.25313433996835466 +3.7812222311961508 4.970785537187415 2.344709106711819 1.6820233217272382 1.361695013055969 +4.722427196312037 4.890500061998117 4.936472978624871 1.9144481301527607 3.0266950082495616 +2.167224569404595 4.518906276759464 2.155310933406965 1.8027569105386547 2.3779615622940877 +2.1919311420089893 2.2067851390711097 1.4211553733096571 1.9127882907600022 0.49185726257671475 +4.042819458021858 2.3579346021357575 2.190938181250816 2.9206209784367525 1.836102927970929 +2.695637897312248 1.102153910981992 4.161744915523457 3.138849562136882 1.893543270873631 +1.365621597919795 1.2360776275114893 2.4798166137176945 4.607457857987459 2.131581315499585 +2.7618739836640906 4.291398325031427 3.8288791787306464 4.473451708228817 1.6597947031542344 +4.678540249852407 3.2134011921902004 2.0314187105219554 1.3604291258459078 1.6114774218185726 +3.65441311186702 2.6454307348812285 2.0971655237515088 3.27091685725441 1.547817053132487 +4.803560337274519 3.7285338000881736 4.410403069034521 1.9246140813971984 2.7082889333883577 +4.082431485426018 3.3116986166875746 3.6338402519399993 1.626518637899538 2.1502021340208444 +2.355773498940371 2.781947804072859 1.1502489213161304 3.9158108313148556 2.7982060711089445 +2.3418751214479157 1.4995141883557919 1.702061019388231 1.133224651257076 1.0164382693053604 +3.0708636663558964 2.814048100588435 3.7008558100078996 3.4285642396557248 0.3742952499101674 +4.016464379364474 1.2875402612774134 2.4895250079910003 1.854302586693528 2.8018805054456313 +3.6961717938767884 4.077071113551689 1.3028196173661386 1.6420701320958977 0.5100737235667102 +3.8944754457678403 2.531790565282737 4.399233187756842 3.167067007675019 1.8371563838824747 +4.628300223543439 2.9231085712984513 3.291232847677721 4.544874602904358 2.1164347902389324 +4.120038948304236 3.024985625807054 4.536010332299147 2.973521928016726 1.90801252423278 +3.69482708924675 1.8864657620211838 4.524406440033287 4.416339240161646 1.811587483256911 +2.258685675465621 2.813550763939624 1.96691721756339 4.308381227811767 2.406310241364499 +4.943544196765133 1.0601706311734067 4.403472198805041 2.297303817892669 4.417752312963193 +2.4657563040223867 4.164434458727593 1.8001821051173512 1.4331394860141757 1.7378802483228821 +2.704377033512349 3.176317837514163 1.8034910098225425 2.130960956014457 0.5744255288031809 +3.4558290909273133 4.16293367145886 4.96490010619805 2.8427157381903196 2.2368869840975565 +2.0327399602627096 2.9098352309621998 2.6835168899772377 4.994531622948017 2.4718586549176744 +1.6517688699461415 2.4292576720561976 3.936859680205504 4.064484215151251 0.7878939391356226 +1.5618352488748117 3.009458040598633 4.6649184563382375 4.40447166774878 1.4708651456897168 +3.9434197142958056 3.343288161140382 3.833276206556105 4.341534459088427 0.7864377485598912 +3.8092299580521356 3.903456331378987 1.2544657493131184 1.9849783076502865 0.736564462432614 +2.289633675901507 2.352797713687517 3.5886902119220725 1.8906295338198778 1.6992350520708774 +2.7167159138446593 4.327976674850677 1.897734720047433 1.9918765253190083 1.614008649127223 +4.1370511688153435 1.7525686802297544 3.4361088080213746 3.606913581269777 2.3905921879182492 +4.4151650418917034 1.7421942058796578 2.359464243642969 4.95129786168524 3.7232209971723442 +2.0305885606063545 4.446253692823786 4.982323670479802 2.2781649855875568 3.6260049950447146 +2.367957873842962 2.1049882080570814 1.8319362785181963 2.9050067306579357 1.1048227189820647 +4.331251221547026 3.7375189071401844 1.1832203508349437 2.608220024473217 1.5437428966768043 +4.69024159287159 4.864684388393009 1.3077003484342686 2.3757920580424567 1.0822431284342116 +4.833470723372762 3.2326717184214484 2.393150412247059 2.0413028313986796 1.6390101202866236 +1.8210208395483813 3.9405423639961907 1.9588825133786063 1.5974025263533544 2.1501254088116215 +2.6564171493366944 2.806153009601868 3.2071558745531163 1.9628051228331533 1.2533274197732167 +2.6933377512183703 2.286877051612559 3.4429788673534283 4.45544250191174 1.0910054590271638 +3.808488103310257 1.8418083448813523 4.821254496461289 1.659282230597507 3.7236941177150564 +1.4369260542519187 2.4973965119685024 2.586548931316861 3.4734739829153467 1.3824737389341604 +4.631820745807535 3.8118091897929434 4.482178434874426 4.6515093133720224 0.8373123063769217 +2.06722863460904 1.3421622394722323 4.716792948498331 2.6938793249951107 2.1489301537070986 +2.8411938857569146 2.770141616125578 4.719816954031325 3.488648835292896 1.233216672615841 +4.249312175971339 3.8532959320330966 1.2934938629239308 3.77610356815091 2.5139967808153894 +3.2589041777228847 1.8773893636523784 4.261547540806992 4.916951218592951 1.5290968453147846 +3.3378432712880435 3.9842983299237362 3.792198984157777 4.171592361246724 0.7495621904916446 +2.3084387450582344 2.030176323736983 2.6538596277636537 1.2323440016612155 1.4484946152378242 +4.272559938936009 2.1817472619582907 2.8977342010913287 2.3265324481832557 2.1674337574043614 +2.870214825057578 2.8780238978931143 3.4727065664714356 3.655112256918287 0.18257277323287635 +3.206820389489189 2.0165149478321385 3.4871635616280248 3.4249632191956625 1.1919294975111108 +1.3023589166644505 1.2427621159154199 4.718044416989298 2.7816436562139106 1.9373176520619997 +1.620396685408858 1.9126512757420633 4.999072202142656 2.9539898028425546 2.065859328584086 +2.3525878063639953 1.556491164903559 2.246057619581391 4.932988959182292 2.8023864626910537 +4.04906954675539 4.021972806046334 4.246922362332976 3.074541430168829 1.17269402806492 +4.564061426499948 2.2533602217820317 4.232156722091632 2.925912804450334 2.6543574043183624 +2.5675052403494862 3.5648889592450197 2.2228368219180323 1.3388951872879682 1.3327141839683234 +4.279882307045973 3.8302392094391675 4.447625525587387 2.9651719391521216 1.5491441350501332 +3.945752202435555 3.0679145383547857 2.0183979740375704 2.9689937775598647 1.2939209195901342 +1.545396543951452 4.034073701645564 1.9953671536134565 2.136891980151846 2.492697990482434 +2.4516937255763245 3.622781318675694 2.5955078618220515 2.4705929825744906 1.1777308171941105 +3.5134530037792313 1.937754884024331 1.7103389918372112 3.341121403624331 2.2676586690225986 +1.622509806520839 1.182687432045967 2.9669624497324607 4.953012947015994 2.0341682081010126 +2.38148138297063 2.5645348984075693 1.0429249104103628 3.8125661305174576 2.7756838936792025 +3.9988264228897283 2.8014062487783087 2.277253191931374 1.9935852753842718 1.2305618880199387 +2.4010914191703283 1.9574277266220284 2.6201211467963383 2.3107448758999722 0.5408799765930831 +1.2725576985781255 2.301593059532704 1.616549545121544 3.9778525946251735 2.5757845146071636 +2.386399785110953 4.239773970327397 2.7331526888599544 1.6341129372154564 2.1547353076704145 +4.608228054642728 3.2488151818643587 1.2975352270023892 1.354690035264663 1.36061384337476 +3.1312167199705514 2.5272590674619955 1.4535864531031124 1.213610391544771 0.6498871872446006 +2.1990930442146626 3.684941629139864 4.950574378306205 3.8807181991560733 1.830939174683294 +2.627953549182673 4.7395709660093015 1.3858088027304793 1.3446464431356828 2.112018573519886 +1.3883639574013418 2.9154775841378497 3.3073307004638908 1.2197661283925045 2.586503793063509 +2.8673090398096313 4.170909399101463 3.4232445530327786 1.8319429704811228 2.0570888710450013 +4.28621807671688 4.937831074246997 2.6118346978720086 4.128141719944205 1.6503897975131925 +1.7943052482898532 2.1411269235283084 4.219485825080495 3.099067413704077 1.1728694262220603 +1.2249872062171105 2.9401980440750695 3.7556354356876276 3.2133932045228106 1.7988815568469205 +2.9770283080337596 2.304485873511404 4.229193075656414 1.9398213091896386 2.3861132436094605 +4.475156756659475 4.013781731394947 1.1917276177122256 4.310533069750589 3.15274711348723 +1.3414286182968147 1.8111225699701152 1.956874828866772 2.727653463926928 0.9026140440430106 +3.648616856064142 4.450325125835954 4.297506742904293 3.44496039116318 1.1702869014423747 +3.3557885593490075 3.381771269765332 2.48555879967708 1.341708472894871 1.1441453890657185 +3.751048385036914 4.2980245583273105 3.2862014632991197 3.868735579913593 0.7990800530405018 +4.955274310773261 4.691713635554079 2.63030014278647 1.5525684717839154 1.1094907769801194 +1.0364554267415955 4.180460006508243 2.250509500540026 4.781301592450697 4.036046755188949 +3.1895048288734773 3.6012255859433036 2.915073229091332 1.9171954984290926 1.0794785533551705 +1.1019105586463271 2.3899051316878954 2.1980231389953597 2.821964819793909 1.431164994409188 +4.261699335702875 4.915148340847315 3.035432946793467 2.957578035063832 0.6580706570002094 +1.7801564533603451 2.2505089756789722 4.026338074332907 2.0651918967219567 2.0167612216644626 +2.150950429470964 2.9165639547746727 4.682368343219547 3.850104104464085 1.1308527018313135 +1.767359973086827 4.898540875488043 2.7115534132229073 3.4953228518107133 3.2277838181059053 +4.863097583705715 4.195386804466569 3.4542822882391335 1.418224725921025 2.142747787721389 +4.807442228567002 2.32686823823391 1.5602636997617818 4.003270698410786 3.481598844922409 +4.26433788827765 2.204635669047774 4.217360248192076 2.1661047781911646 2.90689219530225 +3.0097265272528335 4.349951197784444 4.967654692502585 4.458853715693039 1.4335552314103255 +3.5158415241846814 2.119417991374367 3.3224931115301715 4.017142235837305 1.5596589655713542 +4.53629497191797 1.0891099514744873 4.463209324587336 4.847608074073399 3.46855113322211 +4.351586411817497 1.2354731343043945 3.888759844762794 1.117881200745804 4.169883741564371 +2.6340626980132362 3.0311951908023316 2.3442682213755295 1.4188811117066997 1.0070032371199766 +2.157672297401222 4.363251111741986 2.5008773443733676 1.8163178838253216 2.309372114080934 +2.6999308719860764 2.5211074333579364 3.221700448428355 1.3540927940085128 1.8761492939130342 +2.8635148238603927 3.54384342589867 4.57854932621416 4.354886165055095 0.7161509731970086 +1.6890830439610758 3.707898057830353 2.7921238170329516 3.4448866025782263 2.121724137209368 +1.9027966340494884 4.159638520845781 3.3477562576441873 2.097705849983578 2.5799149838106494 +3.9039680136705774 4.098380028572016 3.9507229970858044 1.8478123859995956 2.1118780906475187 +1.3777045598252196 1.9168356603542245 3.383247807494511 4.331322918025613 1.090646028171458 +1.1039868722824062 4.088194753163625 2.294471000778339 4.475074497285998 3.696015190079041 +2.0757780412254427 1.7059534267281675 2.3185221254297743 4.821680008558467 2.530329945552037 +4.452856862212377 4.580377311725236 4.545481819276252 3.7529795882128356 0.8026962384890401 +4.537513844820117 3.9273073355147736 2.344901048033169 3.277993298719835 1.1149049880102426 +2.630933022866791 3.1618580510479175 4.0553952188134135 2.9463951246980145 1.2295375530243449 +2.1303376862505936 2.168240934589913 4.2049843861865845 2.7980629571204796 1.407431903787918 +1.814983413849633 4.495177693243032 3.7001200955878746 3.889797661848576 2.6868976449495956 +1.153779121137318 4.656458179895914 2.305946663970511 4.311567926738488 4.03624543831678 +4.510869243349047 1.901322963404822 4.618886995824307 4.5472879189472994 2.6105283401986625 +3.196378934566926 3.5578347956017704 2.9302506131459825 4.851048337938231 1.9545112532404407 +2.9714921262672123 3.054785478860132 3.306915174584824 4.600310323949443 1.2960743786473417 +4.941365757648148 4.760601232375389 1.59401851948549 4.830519004874786 3.241544570960306 +3.8819184629574677 4.606591763550753 3.588061865301784 1.6602130447856798 2.0595515209283066 +4.843215306363835 2.6844486215579053 3.457986284468594 2.7998607481571205 2.2568568454763023 +2.223075239743993 2.130638758228156 1.012823539566543 3.036839091592921 2.0261252325460215 +2.434649737494415 1.6928919164189828 4.873019863899624 2.265537953065308 2.710934632272558 +2.6258692857709156 2.467975085559808 4.835124170508374 3.148829485768617 1.6936706711287948 +1.7454454752935908 4.0550204094966285 2.740108109755831 4.728973017544647 3.047904197663172 +1.5278772813921013 3.245822313634368 1.970369648149556 3.4692977483307605 2.279938723588579 +4.639247942571633 2.8028176465625596 4.538789556194441 4.733802733292694 1.8467556339001456 +3.961494102136097 3.821823559311411 3.445838020928582 2.842926061268184 0.6188785758405956 +4.404727158829114 2.5860731083048387 1.0661940209824987 1.1091139119554656 1.8191604306738545 +2.677226606922886 1.3655161241430198 3.353332210807462 4.351775993307511 1.648476380615626 +2.623615168691962 4.411154574948309 1.356953794889153 2.515693075621212 2.1302520624636756 +2.735044804296613 1.592563889316307 3.6160023646422403 2.7285214345944766 1.4466806981129876 +3.7348642168461654 2.6004184615457713 2.3520914615525994 3.5657623719247504 1.6613140131843371 +2.672633534671435 1.305144687192901 3.9841315185372865 2.40329526580184 2.0902318067479544 +3.544228012235942 2.3760556887835658 3.7953882576862497 1.6439874102979686 2.4480915390203726 +1.3581421165183687 4.252053194554074 3.241717621987696 4.487275969784001 3.1505772368476923 +1.1155332111128122 4.2567634768719955 4.033391779096489 3.7033801987406867 3.158517884339179 +2.4193406517697564 4.22876953242298 4.530278234963684 2.8011084124273102 2.502810649911905 +4.518963546246598 1.8050388248853522 2.4693896507983615 3.4530886898348965 2.8867024773289534 +3.960212526968674 3.4659801408986746 3.977710007400729 4.465807034796692 0.6946253375692683 +4.489001902646424 4.797318259627452 2.5535164104840944 3.6301483234100846 1.1199085908737059 +1.3952407180887834 1.803428819493191 2.614416054786534 4.770271345206728 2.194158052502343 +3.6920653491682347 1.5269308391269876 3.94207833183877 2.693442319274299 2.49937979075699 +2.3271817623638915 1.248074843991196 1.0092293369274077 3.976632571670328 3.1575233488990326 +4.166705154193171 4.699552791787289 2.0744788730658064 2.158604354031324 0.5394475891477433 +3.7918163632288273 1.9413670281483686 3.6992761022822216 2.2053516979143297 2.378228935082927 +4.721228243459149 1.8928976615442057 2.70326651139277 4.041284219938733 3.128856862973746 +1.580401734448866 2.913588980379372 2.789475393553226 2.4941733110659765 1.365500476980171 +3.8792508477239815 4.262230925841994 3.4122391413494952 3.727245643656787 0.4958859110028764 +4.190177716935052 3.380784086602825 4.74614777220328 4.192031294632989 0.9808991383099935 +4.069434231434601 4.792523022571194 2.5090626401746996 1.588526621124903 1.170574201934857 +2.9178575249849685 2.359371673156027 1.7561859987273123 3.8284912271326963 2.14624215930295 +2.1162230425338127 2.4395886490662235 3.156776391038389 4.3828937509832535 1.268041440902559 +3.8730529837127876 3.882345738227441 4.3212117011161615 1.20483859932973 3.116386956849944 +1.0214825840607404 2.979480540467659 3.454549670221215 1.277229180810966 2.928221390349329 +1.6559812069411572 3.401184757782289 3.011601891979301 3.059169661472356 1.7458516908841482 +1.0594243372192644 2.111668936194699 1.266410174619272 1.6180983110114142 1.1094607885598982 +2.3625982482954857 3.1780852899743546 1.9230763819003087 4.153116319354238 2.3744677799005145 +3.6379674435389444 1.635518114244146 4.533732216811338 2.284763416332941 3.011256213263566 +2.876748938201501 4.808121004854797 2.5426796866699406 1.833386839273869 2.057497121071097 +2.5254602377639674 4.9079021820815125 1.2168938784870167 4.891492782529986 4.379350034381512 +1.6801747810137955 1.509093638867765 4.324460390798104 4.082523542987643 0.2963143525488639 +1.8801019616223966 2.6953166148743306 4.054100500720704 1.1973941661876424 2.970748392684576 +2.9190037194141945 2.893763412127565 3.614651384370389 4.983064826892921 1.3686462007357088 +4.897160335728558 2.614076635023429 1.6968927773254014 2.39535025716122 2.38753304386851 +4.922279303604171 4.048357261218982 4.4296989419697175 1.5762187336104572 2.984307128240106 +4.733626260491919 2.5122657242289614 2.0008126891289257 2.391102410680891 2.2553865963101676 +2.0937420049817765 3.6604369879958143 2.9216910569263623 4.465622668223727 2.199604053043327 +3.3672932650754515 4.651198976837804 4.30008764271917 1.0122480539826872 3.5296321391837533 +3.618910911050123 4.196009391921789 2.451807527725911 3.016190525742963 0.8071993713297234 +2.474209228712696 1.064707097832744 2.2924678538740992 1.897803880702567 1.4637130554431306 +1.7981350219441765 2.238182396792292 1.1113605273334262 2.3086758283715456 1.2756197012474841 +1.4555868350079693 1.8947259371893717 1.7445503739253585 2.0379640749310743 0.5281427373377009 +2.1209073559363567 2.489664196086937 3.235367490930403 3.0814640144488377 0.39958464338729566 +4.536819412256982 4.331924095113736 2.88216202841577 4.052906049980026 1.1885384533180563 +4.988138040957924 1.7700134911968046 4.55190987459763 1.5688713606370657 4.388034228848638 +2.5095596536360834 4.873849669752174 3.6879142032704806 2.405264837153163 2.689806066746705 +4.147201839339309 3.884915589250442 2.870720058639806 1.340543381827192 1.5524930722057906 +4.919431958493691 4.669725290674306 4.571486248821827 1.0229069236459214 3.557354163844155 +4.771668267372304 2.0299510782425725 2.004023652331844 3.3388291739988207 3.049380088779043 +4.521616324771259 2.5751338015321554 2.478514862540914 4.28560167294658 2.6560039445786576 +4.1047607158807065 3.9588914097195516 2.047210976908876 4.695919366703809 2.6527219961107873 +1.060448054016665 2.3826087126181874 1.666277520973499 1.597139837547343 1.3239670790556488 +3.113842317845827 1.7269888333607835 4.849205150905432 2.7011972444252335 2.556814532524749 +3.609505937815461 1.5157982775470522 1.346946191660877 3.92607352137497 3.321973743054686 +2.8725760422597304 3.66602284915052 4.272237600177396 1.4107358997228858 2.969469618815664 +4.695820333728497 1.3566335479455147 4.870296050347554 1.44451056774948 4.78394968233649 +3.6533184186912298 3.9370965628806696 2.0775278807511897 4.728206765933573 2.665826060993351 +4.840311303493435 4.148179255445569 4.108951347530013 2.479775926241011 1.770101501402428 +1.9582759753534127 3.746094309945325 4.290905445220726 4.049015758767321 1.804107817708112 +4.790745599508252 1.835583557879212 1.0640696109165 1.4130730220830867 2.9756992578704975 +3.9440584124311986 3.678736401834599 2.4522134650987986 3.210982103005221 0.8038193921381775 +4.368960519982836 3.0860679780483395 3.138829482273568 1.57153850455905 2.025392377534902 +1.3310376081282098 3.9989213647956308 1.015535440844682 3.1793158232836363 3.4350472023711025 +3.3971553571849142 2.332674311916441 1.2521234763398392 1.163424399104799 1.0681701278533344 +4.328320810372311 3.455519514061051 4.783514916161495 1.04024763936579 3.8436742848961787 +3.709946524178341 3.8168688308756966 4.394067205134753 4.771486617090732 0.39227259933709346 +2.9506628676470434 3.273526928694556 4.491427118922263 2.277916831288802 2.2369329438709733 +4.64173511096898 1.6228967693709828 1.876167093014054 3.0550036983044775 3.2408395015296265 +2.0887414420167976 2.179661382564775 1.02949279770385 3.085263187425743 2.0577799519984032 +1.4124964344266817 1.1790068692302462 1.458367186045936 4.015934541880853 2.568203293489055 +2.3806317364863654 4.825017022132293 2.2447222740054245 3.653924544315292 2.8215014554894013 +2.7431347773622914 1.9282430073749106 1.7967812009252357 2.5024976116053232 1.0780001155363352 +1.8886018122831358 4.854560953783757 3.2793591253791448 3.1059857386978553 2.9710220396793496 +4.922460157075934 1.6880548492676484 2.902485367578493 2.3498766975698637 3.281273234180158 +3.475391036896696 1.7233192877519659 2.1636396398528395 1.187181318998776 2.0057981619585283 +2.4745343130904587 3.142570375374649 1.50624339353412 3.5112278893204496 2.1133468737658117 +2.017381089872784 1.8544336483705806 1.7239458152870863 2.1132814414242738 0.4220593542047728 +4.781970208462542 3.2917715317650065 4.757200870993707 2.5503275090042137 2.6628898084393002 +4.073051820463147 3.9733981983898143 1.0335267126233312 3.708912683008797 2.677241291876344 +3.4449518961911485 2.2627953792874793 3.538761161279922 1.9833126143288364 1.9536924560099163 +3.289204362141358 3.0967065133151146 2.9005044665797746 4.2499171603996 1.363073747104246 +2.504047616399087 1.9073370338296258 3.4404449039125806 1.7522389792612638 1.7905593437186584 +3.5092698768468042 1.6896649601940226 3.9553851216277134 3.178651556797632 1.9784532047639194 +4.611533761481398 2.7903542954490455 4.95892191111501 3.6601440555249316 2.236854614334389 +1.6053411107931073 2.5003981657464505 3.5298423566269337 1.4067914503427925 2.3040122140074835 +3.1537612121119256 3.0184192627038167 4.599775091978012 4.068891289370029 0.5478640845511767 +1.2726454646167689 2.935445322095924 3.6596324519368086 1.9757645627601956 2.36649834866471 +3.394565343910764 4.843701256673302 3.5084973496551997 1.1030665597081306 2.808218684305675 +1.554258979992729 4.03715141917948 3.942347850933274 4.934000881240262 2.673598810047567 +1.0119178739856851 2.657469778685483 1.1996108461467454 3.0653907448791555 2.4877652022598626 +1.3579034274745156 1.9301163526250886 2.757021694300056 1.9200099310182495 1.0139113982895618 +4.888533219046769 1.6252758234654703 4.238951210699367 3.9266181317723587 3.278170340602829 +3.832168167309938 4.625045560490019 4.723109912566621 1.427280075756601 3.3898597130004076 +4.155510019995721 3.2862007098036625 1.5960464978882034 4.784002627221126 3.304355150303602 +4.481476719377847 4.5527341904538865 1.7916934483970457 1.9105033834142615 0.13854034734671222 +1.3251310838461023 4.86241033813816 3.657725955527747 4.229412178706258 3.583178708998071 +1.5847215324510278 2.6530581525207633 4.499900647160834 2.7409975589593456 2.0579317791090057 +4.485935366106344 1.659214026066775 4.647608674840727 3.278313467484734 3.1409111574705815 +4.48919990138475 1.8795161338944442 4.715510012363351 1.0662747886535113 4.486353428372201 +4.628135453992174 4.1430918292650105 2.6304112905838655 4.911604259193554 2.332189674516794 +3.924144418388681 1.4937193404972815 2.954082015553386 3.2341385734223667 2.446507252155374 +2.875901687976234 3.9070883731948878 3.9200206895035596 1.2805601134647855 2.8337427745360326 +2.1031836016150267 4.118599844825903 1.4125726556221192 3.1428385715469918 2.656261051404696 +2.6687788107227615 1.5413417458028351 4.496773234545729 4.9410645464296605 1.2118205746606234 +3.8412369539498474 3.1071163069354215 1.3424986234618381 2.1691052193737907 1.1055367876185873 +1.1970883948634752 4.424689209584547 4.730547625838106 4.250859870513855 3.263051847855952 +4.832272662034775 3.3025708922693995 2.2116294795795985 1.70973505605809 1.6099333889280358 +4.281058734758153 4.094100621348456 2.76407757665529 4.006482159524502 1.2563926471068405 +2.5418676846634294 1.0993529250957104 4.159205729935824 1.9110990652248252 2.6711107067077404 +4.536837328872944 4.891344906868568 2.349882441271564 2.3056444792695046 0.3572570785000892 +1.1801957807808243 3.5701716453048746 1.4433083545860876 3.873339563523812 3.4083773719203716 +1.6427645882957842 2.2107563198005513 3.9099231407797217 3.6939603912795946 0.6076631601713551 +4.995006680542206 2.7161815751187137 2.275897413271668 4.126904768532459 2.93585968505614 +1.5037912908051552 1.948449394309633 4.6585709749203055 4.7663970234916375 0.4575448456301373 +1.1616616771632304 1.0313306487419167 4.41091377366266 3.2487800669168 1.169419056337047 +2.403032388822139 4.421094823718558 3.1740229104257613 3.464481052231616 2.0388579948788426 +4.580999465397325 4.746234203248632 1.4952262899126447 4.3122057208734175 2.821821332588027 +4.891644753082301 4.059826045110764 2.758833761536152 1.614656441219235 1.414589729659818 +4.2342301070052315 4.447193236037939 3.3988220681492285 3.5131932416431653 0.2417313791252219 +2.8004000507091775 2.0496883459782484 3.7407225534322532 2.268562148113873 1.6525205967270713 +1.2031570811466907 2.1911160796229754 4.176379443370214 2.2801568288155347 2.1381588310083157 +2.312716575581899 4.277730592807545 4.295925207215124 2.7110047454440487 2.5245302450226084 +3.690350728295102 2.567352349024844 2.9868275814303593 1.1971303079907867 2.1128515542746173 +2.7286035071244163 4.031077850867743 4.583163943447083 3.2211114802831644 1.884575901501584 +4.052204358723616 1.2137986487195898 2.3825786597441443 1.09568966971707 3.116509304853166 +3.754213471842653 3.4416369680157763 3.6980243247693445 2.9289515347812456 0.8301668669880242 +4.379635884193921 4.906023597891361 2.908296861184645 2.3233653625350654 0.786910975424832 +4.98387273975395 2.6333428400608225 1.2463561990730714 3.7050274361940576 3.40147836412308 +2.912707841634976 1.945668207285547 3.539775061924851 1.5089360560829017 2.2493271709673084 +1.8169988718104157 1.0807935355578442 4.860468491319101 1.553286627519444 3.388133730739112 +1.5742381362481153 1.7079577770275551 1.9674325201897322 1.7521824501921919 0.25340389690004467 +3.227216623754312 3.780849027312516 4.475100501356351 4.066659742540729 0.6879917817325405 +1.9351171769218176 3.2738289413219848 3.300182849877858 2.085293608580648 1.8077901030714594 +4.3849373538185645 2.0679776956686418 2.5698162698740576 2.83974921832996 2.3326306724718133 +4.560157240008369 4.149094509390908 3.938794762069769 1.3415425838735135 2.6295800892248704 +3.1480968664948663 4.091688942443911 4.8954643266354605 4.041435487444808 1.2726866322717312 +1.6371447932908922 2.2742195838348156 2.281816423607657 1.8985209602936428 0.743491560775029 +1.4566963045374757 4.644692163820986 1.0189082372746499 1.5984901604998396 3.2402519662116123 +4.992028508425948 2.39869906526595 1.5795588569645647 1.390756471251673 2.6001930585268904 +2.481299623347528 2.675639130804267 4.102301025850924 1.9541518055307048 2.1569220933823483 +1.155778230227817 1.3534369183934056 4.333948094267344 4.924370394298641 0.6226294639523489 +3.907832237762422 4.458455021436807 1.6794068875670947 2.192918335416475 0.7529139771406128 +1.4673866137008735 3.535010475241777 4.8262423419252345 2.702966027682759 2.9636752081556486 +4.765496803480374 4.189144793808584 2.576618786080134 2.958482507321493 0.6913765548910447 +4.1572539676851665 3.0433927784944403 2.68486058123539 3.821944431707434 1.5917432053537117 +2.2712338776091867 4.329600021603058 3.834640489976241 3.6116543960031255 2.0704091336848345 +4.10077421969436 3.579901768904535 3.402506696283269 2.5266256193989314 1.0190563138687996 +4.172312129403112 3.0328572032036085 4.818199478346113 3.2734760398037643 1.919512446019148 +4.935602466559813 4.003048760608588 1.4647777990412463 1.1894164891608439 0.972358095283016 +1.3626215513926692 2.3514530445607313 2.7892092250384155 4.8069519515950505 2.2470143373937743 +1.3320222256395922 4.507126633032971 3.0977550271758143 2.798651542392939 3.189161471681564 +2.6739385289970516 3.3217825714148175 3.872951645626981 3.0915069135629203 1.0150654030981765 +4.31740609963282 1.1878479001932658 1.8414424052424772 1.1574781939242733 3.203426535140689 +1.3622743025658428 2.961400967831728 3.6167725266873427 4.767697178834901 1.9702369518627367 +4.853438301500655 4.603938506532207 4.5042268926773 2.1624365489375554 2.355043982969747 +4.620218910379734 1.5811590542336926 2.1970726303269137 4.170047007310618 3.6233289529757897 +1.929558183254957 2.176744637801257 4.277862768979526 3.0663511048026044 1.2364714536728716 +3.329247495596018 1.2457248712001863 3.8719332534462256 1.9434728293479995 2.8390185159104555 +2.332463228055278 1.5350889978839395 2.1296364553310423 4.636956228757068 2.631056462555388 +1.4444018495602564 1.356854482411134 3.0728976201322573 1.473974400666397 1.6013182079904715 +4.573860963515999 1.5237859550373636 2.8985279240905215 3.7984267464452746 3.180059032128401 +1.1902810938124158 3.682092679425759 2.8769200333198652 3.728052854379589 2.633163887281224 +1.4360888926925286 3.22690647178582 4.18481081301905 1.1787102269093022 3.4990953595749468 +4.39361913488387 2.28818737854295 2.599547551070644 4.935964710291765 3.1451054072179683 +3.5468749526543126 2.00664044905024 4.875086786777899 2.4747292238461376 2.852023624729674 +4.293189864065477 3.575173339407401 3.483288676509469 4.116297951941132 0.95720868804278 +2.7628996343212937 4.566057517293126 4.402849268592757 3.0749953087531936 2.239324561019476 +4.773530090551009 2.270034462887375 1.0953177850972806 2.2111732674574567 2.7409166012931143 +3.5394765637628165 1.8973792232835636 3.9134265618862947 2.490404490244101 2.1728956468247334 +1.599565760294078 3.7997465305077824 1.2694378715780221 2.3708745403006666 2.4604792534839643 +3.4929500041648267 1.085443227785447 4.6471361332832375 2.7461976505496755 3.0675162580579762 +3.112900881671301 2.422483471016814 2.113617640134961 4.537240925872801 2.5200448472409236 +1.5355118585820517 2.5414327767222056 3.241405578175311 2.13655528770537 1.4941790581799235 +2.0709131863471 4.172487209920263 3.6726850157353423 4.095779920026856 2.1437403468225664 +2.056825761584524 1.7765630757446713 3.0458871020871423 3.278002089012755 0.36390182773606006 +2.0399936032833375 1.5022912896440856 3.5201958436730973 2.4249693061690007 1.2201003837988973 +1.665838882480653 2.3139468172068005 4.632879498980817 4.939483606035608 0.7169727843634364 +4.233930880861603 4.677050388783153 2.91728627609637 3.936890982224656 1.1117322767013578 +3.7908216118889784 3.920211673906113 1.1278963420445507 3.5650789820072 2.440614883320207 +1.6598869577435345 1.5882558569231158 1.7463666861182423 2.742273404375065 0.998479446996191 +2.0573055756364202 2.9446478195734125 4.225118195981205 3.9670769518298354 0.9241003958219709 +4.576286643807754 1.290224349655619 3.2934945064210592 2.96645727505859 3.30229598185045 +1.1106748950848924 4.400312918570586 3.932178038465588 2.6698768532428323 3.5235099840610125 +2.9914597375130847 2.865207529696286 2.589870119775822 3.7412622552128325 1.1582933434690952 +4.511987816700016 2.23593869729762 3.7470743521037515 2.0162998037872617 2.859367085743376 +1.990394539842201 4.04529715843414 3.4479391867765914 4.679390960399264 2.395641509628357 +3.093605263092275 2.334583778364352 2.421791910766605 1.61847316599802 1.105185332862844 +1.2216819055061268 3.157489190743358 4.233645422587753 4.339778863479157 1.9387145619850767 +2.5678196808416507 3.5460882548447614 2.653451680920688 2.979282836979491 1.0311039448768955 +1.0753785539567402 3.1786053375078445 4.777710179973205 3.899262642033681 2.279305372248031 +4.019003147191505 2.682600767230717 3.5854910159125835 4.579833981426333 1.6657398519071145 +1.3090063236920835 2.7203520486475936 3.2133274959334424 4.711269287948209 2.0580880368960424 +2.384419263272854 4.802726575814862 1.7553240533596477 4.889738423292075 3.958884148384876 +2.4328037324694725 4.15414166815021 2.7469575311842442 3.6477323483063397 1.9427813978867945 +4.702768243485606 3.417980211997542 1.1428498373598308 3.78392141692376 2.936994956453838 +2.5994842989384943 4.830659643216617 1.8767412018112615 3.0533477944673146 2.52240886669792 +2.5198346895449255 4.331677987078379 1.1880536724056188 2.5660539009575327 2.2763261551688996 +4.197048864136065 4.109399081328588 3.3559284197703416 2.6774887766774085 0.6840780903860789 +3.735920340150639 2.736278952185177 2.5313974476717886 4.446298452452629 2.160122395292495 +4.571750266772839 3.4303255424384727 2.4191603934491535 3.0303466807484485 1.294758309146723 +2.083778742106041 4.045392857399784 2.481474308818456 1.0518406546598538 2.427299388708062 +1.0065756784799413 3.4465478874613984 2.8065555395947444 4.18668427310448 2.803251630100487 +4.487790129233208 3.438089798200357 1.5383670677586436 1.1433239720521717 1.1215747110361525 +4.707639078580879 2.4291860406455545 4.772690546497437 3.6264724453196546 2.550522335041258 +3.9280208564399812 4.511453085869222 4.715349872533257 2.5074288923872174 2.283704932977512 +1.3239172819749427 4.383664213540008 1.2785307995179083 3.034905458143658 3.5280168971653967 +2.826808358151394 2.493348939061554 1.7066222609966002 2.6661622909877454 1.0158308192485308 +1.268579045843865 4.0186735897181505 2.793926478408364 2.525047069680012 2.763207581179022 +4.453172474082741 1.4014168012555137 3.9464708764165386 1.938098236622357 3.653323602817989 +1.1026971763327449 3.9918475075881314 2.6631709546503135 4.765518137594455 3.5731013579558972 +1.613879794133923 3.0746957050947383 2.8921904475263633 3.5839517146480864 1.6163281771985938 +1.31510896540061 2.7002853880873174 2.6163045738626836 1.8746327299179253 1.5712386343479343 +1.4966051261488125 1.4326185177224007 4.358996977044164 2.871633738346664 1.488738959618721 +4.265535264066203 2.8955978246996223 2.81147931181416 2.200475865700197 1.500017932873272 +4.564140176752151 3.2849020124021133 4.432457111142339 4.651113377103176 1.2977907550038987 +4.691049684763972 1.9086357387094441 4.851758584288737 3.2991328602985113 3.1862947142401787 +3.717546043351073 4.326328494825061 2.712913436120159 4.047141608841573 1.4665540870033402 +3.341314713131604 2.3380673286294154 3.3050749533817174 1.8952239681281773 1.730371380695734 +2.005596280836947 2.8506744693423336 2.786811069906943 1.7730568040768233 1.3197934899734542 +3.345621521063639 4.626890502745425 4.925947005162053 2.132416574499516 3.0733471119379763 +4.506182981210294 4.380699207971205 3.2205098382492188 2.5604647484395873 0.6718673216700778 +4.390215410613418 2.5748346941877034 2.618452623726187 4.556976310580364 2.6558390821104076 +1.653451623956411 3.105142421731911 3.466369220767805 1.2382016870080026 2.6593489298787603 +2.541610067094097 1.7410329731342329 4.9698791067290475 1.4128345052377478 3.646023858996485 +3.5546595838056914 1.8439911772265147 3.047069272551853 1.766706659585838 2.1367533357758686 +3.1037070507430404 1.1454351540157681 3.9959551887904428 3.219540166339319 2.1065728348670043 +2.805772867044725 1.044841337873863 3.855481625373663 2.792678989032974 2.0568007424737935 +2.2938685707989794 4.093084962474954 4.334944051893945 1.3663552518717204 3.4712676485245137 +4.72369814556549 3.5676647147869742 4.971295035410266 2.874346490492526 2.3944950392744966 +1.912859797764379 3.9968406838893116 1.5585464806390399 3.926457148184155 3.154358455091623 +2.7326311078407124 1.5428983984067766 2.1477094177622207 2.7405375177683626 1.3292513216295503 +4.51670117335112 3.7120305791711714 4.082366655563911 2.8038639530357465 1.510650166487838 +2.5607543069106664 3.428891931608533 4.773081977229369 3.825987942063255 1.2847762633483257 +2.2688973968073345 1.349342482422975 2.329116286779925 3.041365308180102 1.1631336591526946 +1.7662939004683929 2.8496508307903468 3.4328390250754044 3.7652387494962016 1.1332042248737113 +3.6222760657258912 2.5565908619070252 4.542790162362004 2.860282463998159 1.9916116862210014 +2.096855910681647 4.202960076052884 4.165750991819397 1.9054235534571435 3.089458671678154 +4.4910081943082805 4.150477103236955 2.2500959212610194 2.7386018017224183 0.5954825095933495 +4.404031862447362 3.2140320497895387 1.6360375069706175 4.810485533310898 3.3901651620623667 +2.724610333170009 1.5296130016389489 2.3634295500633344 1.1421717465769938 1.7086512941330763 +3.2019609550761836 2.400205952515452 3.4164548696379935 1.4230568601563345 2.1485917965813326 +1.3782080478685255 4.953178040991814 3.9320609738159833 3.671808084877331 3.5844305011999937 +4.355942244646419 2.5041639082048963 3.059186298550222 2.036984975868163 2.115178137038837 +2.9074772679319594 3.485701469307339 4.592415094635044 3.4161658135438704 1.3106889784856275 +4.6409243975687335 2.750001313631131 1.4330200434876987 3.8353286792260732 3.0572335355205142 +1.5673335676084665 2.076189189926479 4.495018416760346 3.374457699488851 1.2306869486009264 +4.549489931867859 3.6249193733784355 1.6690961791831307 4.823857488768223 3.2874533666776915 +1.0312263011261362 1.9497095018739077 3.694400347707573 2.3422079872273747 1.6346362194068995 +2.4081332172598935 4.504007204518377 1.6252380949978296 3.1514751626766073 2.5926988558688198 +2.3411348111237005 2.9992521360732693 4.823252579206521 4.421468229909818 0.7710700854906455 +3.6789086250439498 3.2675970332448943 4.71956477407603 3.666855506321098 1.1302097274246927 +2.082585349763184 3.89622549369783 2.5896364850739078 4.77942266818248 2.8433174461224855 +4.058235651763702 2.1176599230657174 2.74548808946289 2.9489766741623207 1.951215457840239 +2.874006107972121 1.2274697834780497 1.7374630298444411 3.1758400941369174 2.1863235000706296 +2.9650476830902566 1.339492664367353 3.17139931308455 1.444895944040271 2.371337808541091 +1.3881541960332737 1.2336833181055415 3.0629578374939452 1.6992739271844193 1.372404845286129 +3.255888520988558 4.739800030307656 2.6784119323555493 2.6820035565437457 1.4839158558536907 +4.680413292046934 3.284665408842437 3.1693583076426726 3.1649964042265157 1.395754698960833 +2.917275111792108 1.2279945252506335 3.195385008935766 4.786969827830948 2.320950481118354 +1.1984140618476236 4.453910087668726 2.696252613478853 2.5285113859972372 3.259814640977924 +1.258704712853207 3.1905824811407086 1.1723195493947043 4.482719645776644 3.8328710531048467 +4.020309917135247 1.9735272107412123 3.202574342598672 3.0571166481166703 2.0519447819270646 +1.2164172136669853 2.4621624430608033 2.5879130632911655 4.458390694306413 2.2473468234088543 +1.6593739267795002 3.293269499467329 2.728920220560328 2.954284580474604 1.6493646768281593 +1.8506856222852384 3.685938006839743 2.165259665169675 2.039695813069293 1.8395427681810723 +2.260498490652716 2.13034137918382 4.747517774128766 4.039475584258842 0.7199059774038025 +4.736568583931141 4.820778556656833 4.281102526814202 2.4362205789932547 1.8468028375823102 +1.7919274582776348 2.690168686635822 3.609120290419226 4.170099686479557 1.059025583792308 +2.947268117008811 1.8053993474343373 3.4203255827721644 2.2442647286776647 1.6392020679168893 +2.6236482462620456 4.7900510380241865 4.211300833973281 4.405350660656343 2.175076180594722 +3.0840668664597786 4.701092198388869 2.5572199532525888 2.4343267434059626 1.6216885228448747 +3.9413524488737894 1.1705106688480011 4.876344225732234 1.1435089135616647 4.648830351574903 +1.0592451610861056 3.6805615085708965 2.6640060036814375 4.669837939513037 3.300706159050355 +3.379051439590778 3.8023319764831474 3.3052525220613664 3.944932518516129 0.7670442691111493 +3.5056774180718797 3.6050083132688857 3.8370418615530206 1.6962737065753277 2.143071375411289 +3.7745146896812085 4.327596917991996 2.6605647499171723 4.452022098129307 1.874891832009644 +3.792595906602912 3.4970960659779005 3.142730081217671 4.820513837613444 1.7036074926563687 +3.8106307961900128 2.08783104111875 2.874564355196381 3.1595246174426412 1.7462077044650386 +3.5365955959410726 2.431618079124873 3.9329172699566133 2.7966669693055755 1.5849416577271442 +2.1975715186489517 2.0497416943003706 1.1948561542693574 3.7954160639552446 2.6047582423005022 +3.6772845129019047 2.0553465031839546 1.9923711681245004 4.949995671162197 3.373162552907406 +2.0225400534975098 4.128030765085635 4.029067354232813 1.960147875814486 2.95186702694458 +4.484725696474619 4.192397860093084 1.7679656259979954 4.365317972507471 2.6137510929393772 +3.9743186595288806 3.829105039125434 4.491065142921933 4.47660672901106 0.14593163222377237 +2.9826479126863807 2.9611022193375267 3.0595637850613633 3.804355739506334 0.745103531267865 +2.527932100579377 2.852372562832799 1.6243112022300403 3.6272091992925124 2.029005175001798 +4.691995230816568 4.715623049231867 1.170538690803585 4.5715607018079965 3.40110408443193 +2.186630306539688 2.7496210824341336 2.2975671348256843 3.618049168158619 1.43548995611161 +2.4532443232337466 2.085267129668172 2.285175551190137 1.4312696640961327 0.9298185193887001 +1.8698430306176013 3.252435088686359 1.5135469305849405 4.501195366299488 3.2920516360565157 +3.959443434025507 4.600744572581954 1.0185401205491766 3.8607784693761458 2.9136894106710227 +1.875428550736284 1.5655284319218858 1.4268802571984063 1.7623791717838064 0.4567248683060292 +1.4348276402967213 1.1180106674467294 2.0430751641662157 3.8118127798703116 1.7968877949088649 +4.742333488457945 1.7806344699368708 3.3169047576194957 4.747609775702662 3.2891606718245074 +1.841733730248598 3.5477127738026537 3.37487576073059 1.347806705372376 2.6494100196527626 +1.7217742908071756 1.380923828739832 4.268679698895275 3.268907759657971 1.0562778838818125 +2.789814250585522 3.6761716788986054 3.063387586651837 4.283802273658335 1.508324069617319 +3.9109641493428713 3.5528452097704455 1.694653789891377 1.1458854748627947 0.6552830216477367 +3.598536298050747 2.930161084441891 4.472516750628713 3.8117122838659023 0.9398872110313908 +3.1100948698004394 2.229813675710672 1.7300716634920987 3.815159233546956 2.263290780139701 +4.807759884787941 2.7908358057575997 2.1647122072494787 2.6940354017952575 2.0852255956746113 +3.324975002575504 1.7450124724947282 4.967142492368857 1.5149889967685843 3.796530699684177 +3.202563407396604 2.840155025900244 4.468288704618564 3.6849236447810263 0.8631342027477998 +1.285921268801188 3.0121561086148487 1.4186411591742094 3.405235319907154 2.6318136487306103 +4.209153949325891 2.5003591198349273 3.0238939589482476 2.0054881335721277 1.9892536777533099 +3.3540717025356135 1.3848063040592051 2.7263850253740873 2.8215263632291943 1.9715623459087737 +3.380196256281874 2.5519117332907375 3.929003080408404 4.299784399011437 0.9074877614886376 +4.8601069971446265 1.4895941099995467 3.4478596846550675 1.7257966786815198 3.7849515345580995 +4.991495751806875 2.0063601139182032 1.6398651782365272 4.633717858958063 4.227787678024587 +4.385644044519348 4.331772811642011 4.136951112966869 4.0189635607605805 0.1297041718964962 +2.6701441169051834 3.0880718724297003 4.537704564243493 2.7816528124923208 1.805098712997747 +1.243534552519197 2.3606196164361735 2.166233644847075 2.8946081425093766 1.3335698140222003 +3.4161543553379907 4.350157613566456 3.2337244779253806 1.7851872806361269 1.723549273537602 +1.7393588488958573 4.0830992532043116 4.1741270628613405 2.0425851844950387 3.1680577428477052 +2.230497908683283 1.654318343116234 2.6863746817291823 2.1855638685068732 0.7634096949983172 +2.9535401088307305 4.876977019374054 2.2414086551218015 3.8405869187336723 2.501395743909612 +4.013393281958851 1.1112178560441386 4.11682590514056 2.513297993932445 3.315708667058477 +3.8914704681934906 2.4597920825435415 2.719089625833338 3.01966521114354 1.4628905230473723 +2.3167276670839563 1.024398364204318 1.8458078814861585 4.316314991696133 2.7881033712327477 +3.110351287384938 2.8835439112881223 4.866832458240122 1.3519761982587752 3.5221663950162805 +1.5605581437865887 1.0452416944718026 3.6084156299334924 2.185870380672024 1.5130056275938868 +2.4091038100206656 1.872140474190258 3.915733197919334 4.398528975339213 0.7220951368902743 +3.3485343320754923 3.8968785676279216 2.199821775248122 3.295546236875269 1.2252728253216418 +4.5512054344264925 2.3337855822609392 3.385590535003857 2.16035190818998 2.5334088681882085 +1.3435684894629842 3.462132971901616 3.660829267562945 4.320064182629546 2.2187622990066638 +4.726948394013154 4.516307306123673 4.884147235803646 4.0158379215127695 0.8934935552042649 +2.0672817841999076 3.625610757157205 1.428270875361033 4.607096896050948 3.5402435026101564 +4.2254107325710315 3.170304771842129 4.120174857904322 3.349198427856812 1.306772070429447 +1.9858353672892415 4.558510312842827 1.5787817295959883 2.667356993140567 2.7935018310143085 +1.4490453623414914 3.5737416171641474 2.9465595175799093 4.271089193125293 2.5037398100956456 +3.7502328077141076 3.7488153889291596 3.4685241179662447 1.1683246846548418 2.3001998700291484 +3.3874457541833465 2.253441589889979 4.236304407420068 1.4474845542775618 3.0105616781452076 +3.598305793216693 3.9953005730479636 4.793486248932499 4.065613742428011 0.8290978476262042 +4.137904101987983 2.0815392737755993 1.7737081707221312 2.227117192011377 2.105757832063179 +2.8378806986598986 3.3499232487578494 3.1950041826812 4.401456349608049 1.3106160399572797 +3.3211589216947757 2.357525566741992 4.3767868082106745 4.528884660661934 0.9755629141669147 +4.189352799632559 3.6613775384867195 2.2821078897374205 4.041957621954586 1.8373429065819056 +4.0650757459408 4.064684308871413 1.1973920964665248 1.6640636183514586 0.46667168605067477 +3.4565635554448453 3.710070134999008 2.0974594064970824 1.7436710376750395 0.43523763140497496 +1.036669077271247 2.702272910176252 1.2527697322444031 3.864279213971575 3.0974534542650947 +4.700776028492983 3.308658163810313 2.6996884877193725 1.7040395463128073 1.7115224110985667 +4.607653654288417 1.5341587296441777 4.737462810973561 4.851981549887612 3.075627674699323 +3.774210030433071 2.2113543518488856 3.0592023028008786 2.5616831330735574 1.6401351152661163 +3.5036664629279013 1.5666404404597336 4.322200200786153 3.90840034424537 1.9807322214252039 +2.761611272602062 4.833366790059639 3.230101401524785 2.6224406288550806 2.159032778527796 +4.7221201670229735 2.7515773518618407 3.2355108707744824 4.575582390472846 2.3830297237529043 +2.349797746600089 1.455778447824708 1.806870439977685 2.1395662653197647 0.9539166728718351 +1.5590452046043266 1.6760688678472118 3.5178712070382074 2.5005765373340076 1.0240034095486994 +4.574989635981938 2.5809091531861816 2.687205644241841 3.979888054167272 2.376422686475951 +3.3679966257420335 3.189470230669671 2.113965741325137 1.0566433865521274 1.0722883174036149 +1.742063998595873 1.3170442590400753 1.7630088366408985 4.237981181680723 2.5112008855772587 +2.3778737646219974 2.026489454830636 3.2971695119343147 2.329911420009684 1.0291059952994293 +3.833842886584629 2.080845251436901 2.2054336552544282 4.690948100113295 3.0415099481072896 +3.3239948093450336 3.8370637631401188 3.5353332800402444 4.346283664232706 0.9596250710409165 +3.302294055756844 1.157622946126848 1.1546584601914613 1.4043334753398726 2.1591553398657815 +2.617369048590655 4.9843967283023805 1.6603891873586867 2.9132018710023684 2.678126146547238 +2.639350891248088 3.666306326431314 1.6118320032981535 1.9155289158878852 1.0709198291977342 +4.135705572098852 3.9241917100713337 2.4260467569746775 2.4742505726293693 0.2169371376078042 +3.7937927296887684 3.0294618080763636 3.1309532250603205 4.621240959935076 1.6748609764547613 +2.5403460305043333 1.7870131484900145 4.621401273965899 2.178906691767333 2.5560301671133203 +2.826337457618125 2.370723005530698 3.106412963253423 2.6218939831005525 0.6650888445007207 +4.524130632629465 3.5327347018955297 1.8084880617431347 4.762775775494019 3.116196686201824 +1.3115519894620546 1.7432886248159183 3.123010272435705 3.522142796938561 0.5879653853950061 +2.9129007780453735 4.751310658722691 1.5562214765776141 3.3827254406784877 2.5914991067426962 +3.2787427691797224 3.5784721543998113 3.6614288751305093 2.600559435799398 1.102398145712845 +1.71652143873425 4.139471381231661 2.2022499022748607 1.282201891898286 2.5917512930923947 +3.8663962935580236 2.2214433722485283 2.203636153857453 4.8918174110307495 3.1515374953730837 +1.5950146047413978 1.8511738898654615 2.1303274893976183 1.8297101006741623 0.39495366026684803 +3.6879296821431824 2.38686766365225 2.839612024672489 3.9253034667731743 1.6945466306391113 +1.5181196494026952 2.381061071748129 4.009526175552889 4.144565947905166 0.8734435519920651 +2.5114966593517845 4.233281041061202 4.866195791604273 4.8838084284839685 1.7218744617643698 +2.4657697154011755 4.204440716467821 4.844232686044911 4.002116300182079 1.9318739237560947 +4.503126554937812 1.2539520160690905 2.764439644906038 2.5290893639332 3.257687053537642 +4.268695352674566 2.019331256987952 1.0544179584034294 4.075312327071743 3.7663565446749714 +1.3587076905308408 3.6238495543093165 2.4543162288794544 4.051971590961056 2.771889304974122 +2.3584809929724098 2.3238361752984855 2.474849165701213 2.402077747755389 0.08059741100994039 +1.756961631423148 2.96614722724428 3.8507074661088363 1.5897484201948227 2.563994074182254 +1.3860488186926005 2.0517091420426743 2.6144208958503263 1.2968762190450644 1.4761529871461179 +3.853658782724773 4.327931336782569 1.6636951613001276 3.5879328292784196 1.9818236698553786 +1.3708476298705645 4.081928695279322 1.2359997774152731 1.9112765424745146 2.793914682420842 +4.521063870948336 4.090273263457938 1.389816719921773 3.5479908396881257 2.200748981308686 +1.0439931955786461 4.409392127667876 4.9348919476167605 4.489490237317215 3.3947448586963187 +2.691030168869494 4.068170506924494 1.8872713852242233 1.9544757986133523 1.3787791497833204 +3.0494578070802474 2.436648840695258 2.8507852584650943 1.0296419232119285 1.921483249164266 +1.2457903966293244 4.280986587717995 2.9799299820194403 2.345149806960989 3.1008646840915857 +3.0894177665529665 4.748150917008125 4.624376966820069 1.1088036037597964 3.887242176077767 +3.0033505291371307 4.5023569852591 3.2960759675905305 1.5025740750164611 2.337449335100574 +3.080962056678273 1.2136647173381063 1.957727203488909 1.74661565664438 1.8791932946660796 +2.1852128923544822 3.603275587925785 4.2010539547142995 4.554306244362902 1.461399667686061 +4.970054601695814 4.696579862556772 1.9570539915718572 3.649955456591682 1.7148480408518525 +2.3785982792179574 1.4107220550844062 2.5175569030845444 2.9379016894230263 1.055212833813617 +2.676227599601949 3.6467013005281483 1.3182263314786886 1.4151363697821124 0.9753003433370488 +3.6419356718801876 3.502309716098969 1.5607110001839182 4.776730314652314 3.219048871726179 +1.803821794525165 4.7429404398927755 3.4595771445789643 2.31035449671844 3.155809104794378 +2.4957826887496664 1.1166496974842248 2.8441412623302442 3.1698274305748675 1.4170671430043917 +4.983585333733211 4.263730041206737 2.5389526508021514 2.980593190399629 0.8445341961071363 +3.750675944924799 2.751290690777952 2.6640808160105833 4.188775161311266 1.823036953217909 +4.55060515321826 2.375808972848381 2.635854734588627 3.9208625944193174 2.5260608911857347 +1.1317416022959086 1.1684710161720626 3.373619883580022 4.863527040128725 1.4903598172853179 +4.145814649768954 4.524690501060521 2.7958189145171297 3.923915314726698 1.1900203354807413 +4.421315665190758 4.870372651018858 3.680020136155759 1.576348482045967 2.1510663878239664 +3.5237594942533343 1.6611323188564286 2.0904778278953358 3.7401052025189263 2.48810178040099 +3.9664426547207885 1.7204708055307498 1.3358313211532598 2.697291665765416 2.6263974979628606 +1.623954990892726 4.9677477199367415 4.223975208501921 1.217660661098884 4.49654055610919 +1.7464607099051146 2.1487031138812234 3.3539674263549895 1.931711151344654 1.4780432549024922 +1.5836252617629136 3.3468045804330497 3.1340226929301616 1.9338498898313796 2.1328891361446973 +2.6621627398870094 3.20302114908244 2.0575893304836046 1.5256744858949074 0.7585916033619339 +1.1957281499689132 2.3808221306004884 3.199530650361687 4.292020971099609 1.6118259347197637 +2.1566441475393203 4.646710743037026 3.4799179923596553 2.0574032000407216 2.8677482428518224 +4.672904337964139 2.644782915891603 1.9864940731984726 4.917090153721972 3.5639402197356262 +3.4415785090564315 1.387317069874825 2.853530546507773 2.3150359209568605 2.123668176117847 +1.2328230007947392 2.2084020951807894 1.5522746448523477 3.2212858906647703 1.9332235018361021 +2.0192578760374973 3.8679049254513798 4.530277856783185 1.961332176656382 3.1649609509042627 +1.4263167621539372 4.329291718991812 1.6283028159159092 4.312443567980232 3.9537166283030816 +1.3555482485046686 4.222555034644595 3.133060597796909 2.263837291400634 2.99587667772805 +1.9572630969361846 1.032416342257867 1.00171549986172 4.374236542801313 3.497032985933844 +4.94312847850437 2.673410049442161 1.7885010748200791 3.7874573295995573 3.024474806598101 +2.708369537123725 4.2287350055719015 4.825715469381323 3.9310771050835207 1.7640546931779328 +4.77933655676994 4.546343122413848 3.7437130730560266 1.8357564578728582 1.9221301688164252 +1.8257068353003518 1.6552020870312405 4.776225379702073 3.796778115554045 0.9941774552007145 +1.7220911953285882 3.4444914751820206 4.095888602825391 2.556670608788518 2.3099469165342477 +2.9593575236948744 1.8069412713470592 1.218609307614614 1.554921903861795 1.200487143233905 +4.869511999649527 1.7604397146851354 2.9726864611103285 1.6944156477994228 3.3615928880957946 +1.037035368894068 4.130556525387824 3.3469007873025385 4.904295029036685 3.463430376066645 +4.620035979854832 1.6498962514814508 2.012564115566609 4.704802049613038 4.008724872023582 +3.324050103897548 3.239638675566169 1.1441106320284642 3.096573008753564 1.9542862179731935 +2.501062908138064 1.0200644615909074 4.47711693625997 3.02512365641506 2.074039749713074 +3.6741427828166278 3.874854245417858 2.2844378567617674 3.9292734219755987 1.6570362481888647 +3.6012160954375 2.298223913044415 2.527852686395889 4.705988535426357 2.5381222201086326 +3.524327763584545 1.0538847924800416 4.7156476827886245 3.9173743521583178 2.5962143177856576 +4.618313838800213 3.321173769192686 2.0083964854210157 3.320555867249578 1.8450839014804001 +3.3494976860559533 3.1719126830479274 3.45040829821336 4.789870433741413 1.351182906125863 +2.2349690352536102 4.1206766887381505 1.2788719386308744 1.4641527842077777 1.8947882061454424 +3.5544932946960346 4.449802995441916 3.5647633876856526 4.192069144140641 1.0932026218095363 +4.859685356288642 3.1701711801351955 1.1209480210269587 2.883188074598076 2.441300505434305 +1.9728774802816793 2.701587888894866 2.911576997017937 1.2977224884772114 1.7707470836792092 +4.873571334418216 3.340622813433796 4.655482382092128 1.6798839346018193 3.3472551872683765 +2.67316913045673 1.6712387332416725 1.2180582915736364 1.4624199512798643 1.0312987644702698 +2.110273182529706 2.3104902228189728 3.4473348290632875 2.363219750289394 1.102448351283233 +4.951276732079156 3.797221192131502 1.2102350679379463 4.973017990028251 3.9357819436623167 +4.623611081484843 3.040415085611032 1.2172369776433438 2.207623862527708 1.8674516708878501 +1.8378112945534348 4.238097943046595 4.275982614715893 2.2152109400082085 3.1635669568087295 +3.6833922673656536 3.129468606411254 4.548818140455169 3.5333291849675983 1.1567407837896797 +1.495922034733292 3.3563413238476527 4.439194427778769 2.916328664893851 2.4042213007699287 +4.329785894126536 1.9065026166498376 1.3685428590584698 4.3470928921712435 3.8397997529369046 +2.5157574171422494 3.5104694524115247 3.908457887033041 3.317876236338563 1.1568226827161363 +4.22335123471384 2.360719209696934 2.4005402767250854 1.7277479629624444 1.9804160063170235 +3.3492331791479697 1.4021306436123067 1.1092102120937661 4.230057712722205 3.6784368155601346 +1.9693722777589628 3.5393735503644552 2.386970025260932 4.95238549000894 3.0077002016077174 +1.0974051113693455 3.9093138211572964 2.2930274363725283 4.215082209137507 3.406042445667695 +4.219789037993229 2.0831052467226425 1.8729417953263106 1.7078453117873975 2.1430526061567785 +3.584360569657748 4.460165996320266 2.5167535624899497 1.6721902762700656 1.2166849591418667 +1.7687157860509983 1.8558577394258284 2.796085147435745 3.7678872256462257 0.9757012858719569 +3.4003097520497096 4.254468755532725 4.398050432222508 4.001021901745558 0.9419231695015178 +2.1265855972520535 2.5649326019266785 1.870146586424768 2.6660253558794653 0.9086094387446891 +2.6362952677103206 2.8183745158901283 1.1904939779447252 2.888201274000722 1.707443385796287 +3.828053009604331 3.2377972442994585 2.5161211327910364 3.8993601729784277 1.5039122683102815 +1.1496413364505318 2.654106183133049 2.063849443478882 1.723329802875674 1.5425200486671113 +4.910217136060436 2.8096069286268306 4.2022161551440345 1.8396926499980113 3.1613415753350202 +3.336983499619611 1.079210668656759 1.2052348583603898 1.3331442393175488 2.2613931471486453 +1.636094860174481 4.956744930460886 3.8496943571433233 3.777875946143644 3.3214266172010523 +4.490685062709041 2.287209906927863 3.0783716127163907 1.430499346673689 2.751506090732418 +4.966452805885217 1.209632282468915 3.6353460912648026 2.3233903056150376 3.97931255729703 +3.284626623031355 3.612879504440332 1.5460349170017387 3.1144946905299986 1.602440643309329 +3.7393508916837255 3.5714005703835694 4.937302806281145 4.883700471420639 0.17629668382395483 +3.961598949152123 3.7524598354679943 3.206823414103112 1.6972993635799694 1.5239429214968576 +3.7631613105791 4.2249272998449205 4.343228894585634 3.694599908177524 0.7962081328719608 +2.9155874647093096 1.9942567614246824 2.9549866860994887 4.478705596993889 1.7806093294802658 +2.534544182137543 3.360147215766927 4.996111321519908 4.9560158621771535 0.8265760793768157 +1.693039634257972 1.5512958230243008 3.0663748271773836 1.3753645657592868 1.6969404857697121 +3.162356339544831 1.5571437208654424 3.5000300114575076 3.8956899233288143 1.6532556720088851 +2.7563471732772387 3.1818046311919823 1.661254012804597 2.9614079819226573 1.3679964882662243 +2.756179702035949 3.895985854464816 3.923260103069907 4.702752832690007 1.3808573353700562 +2.2400799683316346 1.0410847429404582 4.219773073856528 4.895088819107684 1.376096256188121 +1.173260144630612 2.738514868005394 2.208991838089925 4.150456459817238 2.493853890360428 +1.588153253149358 3.2020177673628156 1.179094890749203 2.970596741066684 2.4112315421643764 +2.4181023298021467 1.593275097892569 3.2618206436101103 2.420390468334395 1.1782804005686156 +3.2605730729511633 1.4697270386693586 3.7159779829307307 1.084719725988712 3.1828681300406427 +4.865772302393774 4.422778400782053 2.3504267691176426 1.6440974121529424 0.8337534152106016 +1.5044925444829391 2.786513661079443 1.5914929946700087 3.164284076988688 2.0291007693114973 +3.277942005961096 3.551260449429171 3.570232096833149 4.049193662886719 0.5514591129869008 +4.370720631254471 2.992865268571217 3.3738239910272525 3.9610780453627203 1.4977826026524834 +1.0305484478072922 1.5520862355349072 2.321896674376387 3.583410255083499 1.365070759461316 +3.8616075268251153 4.841160712978732 2.766531554502227 4.139986901671403 1.686980745346936 +4.05364062200402 4.960779398925702 3.7383892548832764 1.029835166296099 2.8564253904832313 +1.4883268536028922 1.7721315095470023 2.489213269563771 1.5904835396825296 0.9424755753376127 +2.1560577407407133 1.1355762449737488 4.622526129158613 2.889810726981221 2.0108916301346382 +2.2669364581162834 3.5710029201635085 4.490319869668641 2.2772569936040497 2.5687032975514406 +4.321737146096899 2.822966968158798 3.374657823202599 2.609868513191567 1.682621387889669 +2.2077605148882427 2.8973444004449123 2.2800886204043844 3.4754553041863234 1.3800099434117366 +4.530397669771802 2.521189767023759 4.934833433477634 2.496589877843639 3.1594221042867785 +1.6167951583535678 2.3558652887954064 2.897551761579267 1.1205900715565482 1.9245304636507352 +4.19521027293686 2.0137013052655397 1.6199767538011076 2.1862593197227143 2.253809512913003 +2.78225325635464 3.8499529482502806 2.9403360118697575 4.323101970722055 1.7470043872397 +1.4754426144508686 3.9551223775517514 1.4618318967204824 2.2275217890848813 2.5952057218650424 +3.216871650365553 1.2529174331495336 3.7519265245522035 1.8230383052763108 2.7527669588582886 +1.0429165229940023 1.321808502538218 1.522449395030804 4.9801342189847535 3.4689141064684126 +1.9714466312819319 1.5879536663629144 4.865720225624046 3.7247608462824933 1.2036839948465878 +1.6163368329394014 2.0158548477548797 1.9978998060428315 4.177859475013877 2.2162668617525396 +3.2254105655027954 4.304916687819959 3.374003564208055 3.661064195133561 1.1170216085410292 +2.7922140984143273 2.095086433713758 4.8000125422261615 2.3833782550153213 2.5151755920837644 +1.41043276790064 2.01071865452121 2.1426882388002317 1.6217520187074803 0.794806700450095 +2.1881921109153306 4.8255483123640115 4.190581406471004 1.8532800797714386 3.5240069842597315 +2.2311576399568187 3.5071532543080335 4.116029469356905 3.6789221790357525 1.3487874521567267 +3.413800085328076 3.1782977397712684 2.5811181106835046 4.31036840949236 1.7452128668713383 +1.216228489531952 4.732007843813682 1.8880072900511324 1.516381459019954 3.5353656425161 +3.8955178880151875 4.150766407827849 3.072335395915757 2.858182879040607 0.3331862952621488 +3.1271162861482864 3.746453559683475 3.5973083639443737 4.750607584665861 1.3090751509775103 +2.166192336768433 1.73732627193163 1.6345625887196324 4.434228862752342 2.8323236657424586 +3.313074172708775 4.689734407850036 2.348692211463211 3.2048701765151377 1.6211829356552114 +1.5709381492476027 1.6698443933794764 2.4113513446372914 3.6291394008732225 1.2217979354374278 +2.363610537733135 1.8945529977360511 4.000561228090791 4.385574706349328 0.6068363488362019 +4.282085095328984 1.8982922954768164 4.241442097423999 2.2964866317488806 3.076575998750324 +3.517931680393426 4.217573668042473 4.586299385163464 1.2425223040840372 3.416188530926471 +1.0047647330922276 4.954611598457996 4.843647141392474 3.242786942976756 4.261929567075387 +4.366762545489477 4.123138839533719 4.563751686885467 3.674041833929944 0.9224619951790725 +4.868367604360824 3.030136780093671 1.1439078485551497 2.66110715897787 2.383481971996657 +3.988027996134804 2.9011862064285805 3.6033721439891426 2.1182206088066913 1.8403532699747132 +4.180926353218084 2.034673548740039 3.7576066509879467 4.258445257096592 2.2039147919324655 +3.4556013622875086 3.9866234325844903 4.954457440290009 1.1736696487716305 3.8178974270712023 +1.4261368030622323 2.0404291459319626 2.9923423069606527 4.1738313962969205 1.3316424260022004 +3.81678667899182 4.745318754510177 4.289604391106135 4.109230738636697 0.9458892481530772 +2.4232364128225283 2.361577144217942 3.323368018951012 3.226529744148753 0.11480207694780777 +3.419554308338999 4.369426965492347 2.212791549513147 2.0837647335054483 0.9585958397868451 +2.6353930170014666 4.846421948676143 4.32770534999969 2.137739985195088 3.1120085532893724 +2.527493935167006 1.4962616640165316 1.4395206819147717 1.8398795736953213 1.1062220569532661 +4.415636568921106 3.5990028244935504 1.9722812873110476 3.734991418564433 1.9426882609829856 +3.9061093360518795 3.0535154351756595 1.439910731062434 2.7330422266993395 1.5489045886753225 +3.4181408150212165 2.3237313997485556 1.1719075794609695 4.162966320531913 3.184990480484101 +3.0368341776112255 3.6764384947971203 1.0076771629420618 2.6741085504045286 1.784961414620192 +3.085908818423516 3.2443497323631343 4.14291283883661 2.225661504124447 1.923786943418005 +4.689110022717752 2.6809506625987436 3.218496953810111 3.633069155765146 2.050505822051581 +1.7168089024448787 2.5332441772075702 4.538597591560311 1.9289283695390607 2.7343993867469014 +3.32293844327403 2.794558510261974 4.757417855402826 2.1172049455287527 2.69256560979961 +3.170564784724132 3.534369051027739 1.978594077303848 4.054613318754768 2.1076549611013564 +3.6061954428910576 3.6096590891273794 2.734811148851762 4.1421028253950185 1.4072959389244253 +3.543282012024969 4.9270031646893395 4.939149973186897 4.281213808397638 1.5321763035853324 +2.4324232756560433 4.329479572042386 1.9406654830726051 2.5676366917914404 1.9979778497824807 +1.9257588076109076 2.4272599083537854 1.7767692055971849 1.57711810323904 0.5397813601071646 +4.152957878668328 1.7515201830931977 1.3454718746850904 1.4151199041377498 2.4024474715872213 +1.0359941177124292 2.4892145509989945 4.520448687681473 3.9492610478557317 1.561443225868713 +2.7570056653093693 4.548279729465657 4.409280385139598 1.952066502681392 3.0408161465409766 +2.8897783572706635 4.57875775617398 4.376510008362825 3.069605418875434 2.1355680780398956 +4.8972673260227655 3.251671772012201 2.692292332801729 4.232885226885197 2.254198569931188 +2.013566340779363 4.372223139085687 4.708325897854763 3.5209643776935 2.640660764232374 +4.453282466426814 3.1997036141654474 3.8748731528531097 2.752560491478499 1.6825711422459044 +3.3046941343127414 4.735604452860263 2.3353934788530197 2.0541238666182564 1.4582924722059238 +1.534074295286917 4.1346164553301845 3.6824317408219924 4.864403510528696 2.8565498053676746 +2.2541146417334685 1.6187249343872967 4.38215194959397 3.0766567981172948 1.4519082859225514 +2.582001188498202 2.076372211273026 4.816267340519579 4.937160748728861 0.5198806389530521 +3.2454685936988543 2.973725086047384 3.4047020500771246 1.721917190668746 1.704584822472851 +1.5787570948190823 3.2127361898574542 3.6467933440701574 1.5943871575987876 2.623405961205465 +2.2546450796856607 1.2103145355592884 1.9559448144475553 2.6927130026347075 1.278066370936918 +3.950490934848925 1.191184081404495 2.4525105629666935 3.729382685313946 3.0404237744585836 +2.0257457888338237 1.0807455838675155 1.3192822479843622 4.433605357924281 3.2545404929870227 +1.478875719357951 2.150746531195423 3.944153562184615 3.4986729996869403 0.8061410046402481 +2.1813620075787776 1.07826554842406 2.043316578150895 1.0411324280422654 1.4903673603942862 +2.3566762462929263 3.882603988721524 4.814742178477534 1.3640999533360598 3.7729812139795422 +3.733291563981252 3.2755288041166715 4.275046174622741 1.3773264802052614 2.9336540647686746 +1.408095196170426 1.9620597252916676 2.4439496016886446 4.223880003537692 1.8641429491728985 +4.039631056298061 2.1433240741736697 1.2450720467635006 3.7890912372138903 3.173013364584772 +3.950585842139296 1.3718502466050873 1.4823435448299978 1.7542753731277787 2.5930337812910467 +1.3786826836612933 4.478667374832096 2.8343265689140726 3.029196495832165 3.1061035678016915 +1.0865500627738482 3.6026646115352907 3.02697312704763 4.765264447949068 3.0581839609170447 +1.8969463352259153 1.0382347576919844 1.7072518754051709 2.007353598515088 0.9096409278415047 +4.239649339523985 1.3856470493525475 1.9127509197687953 4.919911314380954 4.145882621496629 +2.4354494086184295 4.834680956712472 4.094058416268668 4.913293609897197 2.535243247471396 +1.4431914609963599 4.729387337499791 4.013812898147369 2.298180286621143 3.707084918973458 +4.681822714654126 1.0828192775255356 3.9952402092824677 3.1398370361933323 3.699262133046855 +1.685186506230595 3.960187430291654 4.30772396980546 4.056115565241358 2.2888722100034258 +3.015745457212805 1.9486208651933463 1.4200473923495873 3.003965008413637 1.909855991788574 +2.589713348507616 1.4832255399094922 2.651537676830404 1.7234749038341466 1.4441661196682951 +1.504479287653273 2.080831707746674 2.2632139437967984 2.1080018425855527 0.5968860096449993 +4.945742392665039 2.9278229335124584 2.7082737535134473 4.567539618177145 2.743878368137023 +2.1555613288304776 4.5950715427276645 4.960684803680025 3.7225269406425534 2.7357348149099203 +4.566020408258685 2.700268248336931 1.6593107195218395 2.6955295067166665 2.1341931724162664 +3.721130639809938 3.49771474961191 4.451472647087373 1.6542992524534603 2.8060815490004534 +2.603984740350834 4.167123083287729 4.227066619024896 3.8174124082122933 1.615926375673099 +4.71164409041905 4.200874857152709 2.866292682880862 2.6949174225045134 0.5387529020994202 +3.1700440463081505 4.02033810204585 1.7708446534582376 4.372128110521801 2.7367271704017972 +1.6738965429977974 2.0765171994395164 3.9253730966063993 2.1589835199921157 1.811694104799469 +2.35773583562176 2.7028491889810664 4.510902473067921 1.339249538342039 3.190373891101512 +1.621653219370213 2.737536174102481 2.3963917056251884 2.630888037127345 1.1402558038221011 +1.1378298090460874 3.1928043530698482 3.692207456842145 1.014450371003842 3.375396774801876 +4.115620990160014 1.656928120836195 3.980685342804841 2.275866224203119 2.9919189248396667 +3.696187372399164 3.1849041604767354 1.358122624730996 2.086178232851188 0.8896490832395532 +4.8139343746208 2.052527714467617 1.660014550749521 4.098074147105924 3.6836804066210607 +3.876943139307841 3.4091752359087937 1.1897786329788151 1.8845208280195065 0.8375401656161324 +4.457528558893656 3.5889969626068963 2.5565922985723235 3.7747011784096576 1.4960402323757844 +4.884259197731941 4.894196091452425 4.604593654385623 3.4808817594160804 1.1237558296858146 +1.5366020140015104 2.011392794312048 1.4542982020297077 3.7893678681897547 2.3828505263420703 +1.5762646583384075 3.5654109331410413 3.995811297947285 2.6438877416111684 2.4050780038779798 +1.6417185053879906 1.7429839568260905 3.6315826710767856 3.2053543350464966 0.43809278251314654 +4.613641563132333 1.9701600175366822 2.916550295017164 3.446629913385158 2.6961044274497104 +1.05905796616885 1.551695647319892 3.696060562868841 4.755831767944456 1.168677411434523 +4.093865925598111 3.640397328855012 4.35370136475732 1.9092018915012439 2.4862042239086857 +4.682276804761433 3.780289138854673 2.6686606666571233 1.9007796910861292 1.1845771152997122 +3.644277685951815 4.104793980228994 1.8487898548306738 2.561600278036247 0.8486306362165422 +3.5423441873524215 3.7489048188366745 4.9586296940367065 1.8028270535765012 3.162555548921596 +2.7191703576014636 1.8561731545220939 3.661346659646123 3.4301334379931387 0.8934336720708298 +2.517322754878412 4.228352828856343 4.806107886347535 1.0551348817457007 4.122793033285643 +2.1623034826499254 2.70754735256702 3.8988019204072724 1.2992323933544778 2.65613489937233 +2.076594740106037 1.762186242450019 1.9422369558739527 4.826886392250065 2.901733115602353 +2.2440701128363147 2.34021778609842 1.1644672111954377 2.5924575845775393 1.4312235609944628 +2.5410663428283926 4.891694485773083 4.2210595864394485 3.6525365764843576 2.418402588332224 +1.5812300275583318 1.4363322917233305 4.265075026277369 1.133412901390491 3.1350124430855306 +3.077538623317212 3.46777521406411 1.5022055025541436 1.0790053033785387 0.5756587577202604 +4.875983879785421 1.71372512726116 1.5206841582069246 3.9257625955538367 3.9729438339482424 +2.6663222826448068 4.738393521306891 2.0111315467138495 1.2289746741128078 2.2147795807817237 +1.248074285853869 1.4948387392885327 3.09543630865861 4.701814043388726 1.6252206379798304 +2.183953174963369 3.7430901725960366 3.376599125075687 4.967285859216394 2.227373445015056 +1.763138561117942 4.171615401634003 1.4595242245793192 1.2070069505846464 2.42167827445512 +4.615791041973715 1.4020114252413967 3.7424579142601386 3.729581881823485 3.2138054105896696 +3.106951915786208 2.7641842272730166 3.742427358727292 1.6558869447362654 2.114507173671095 +2.2587649301917088 1.3013269643715364 4.9096210316913105 4.876974660489639 0.9579943861769269 +2.260945129161803 1.4030599946230535 2.8729710645971607 1.2634384028065209 1.8238865900689742 +2.146895779486228 2.090132697423303 4.014130767038044 1.4989092566639801 2.5158619385279613 +3.020917112871784 3.5720728495430802 1.2316610434849538 1.4030719547285373 0.5771952412823885 +2.154131655234762 2.4892989886872794 3.8205877128480936 4.246665126281984 0.5421061737816546 +1.7792124007086905 1.0478983600973448 2.239641944986625 3.808646937866932 1.7310681366366332 +3.748576178318056 2.58102094526641 1.0990544147506194 4.6415562931335925 3.7299470211483134 +3.3061657856282443 2.9767651507897814 4.425397911572562 2.5509708070475154 1.9031504797073013 +1.5771626252986857 2.763708209221852 4.374320527513232 2.027485174540772 2.629738883746624 +2.3453867629600396 1.2340572809302048 2.136666724971757 4.492836081528116 2.6051079160763972 +3.145711679133681 4.863430090899766 1.714700619651123 2.7677510161852115 2.014813063229639 +4.041458830597023 4.236455854670894 3.6274079521859797 1.5277601322919154 2.108683192654497 +1.4145398737303405 2.861213904074059 2.091496279503918 3.9215202916768983 2.332778093861615 +2.384327045199006 3.764895726515245 2.662124875697534 4.901882977070917 2.631061807806681 +3.2475365131175953 2.099403348225734 1.8478319369619203 3.684306337258106 2.1658365559912034 +2.093877836332801 4.039465441381202 1.2178962379351796 1.8345605720765272 2.040976734291688 +2.498949064706068 2.984163533284285 2.7180746923795462 4.622406923480714 1.9651753934263456 +4.83413484827722 3.3437100915952858 3.3396329030957355 4.274513387459599 1.7593656457299645 +2.0908922918667527 1.7916710508474338 4.975307896172993 2.3976219457938766 2.5949948381179926 +2.212948658173187 2.2922927067219687 3.011556963875707 3.1722277734475868 0.1791942719190396 +1.7506997588774782 2.8949701326775563 1.1360153952976813 2.1927366631311007 1.5575668609238065 +4.8967281500342885 1.414296201576525 3.5769946449802537 1.042646849265037 4.307000235115609 +4.006108018146507 1.2340273958108616 2.694196205370865 2.9019682743661854 2.7798561490450138 +1.410076867919174 2.8125823556158225 1.7070785605868637 2.0432608508583665 1.4422344384015404 +2.832070537470764 2.5599924021488403 4.27244621279591 3.6629200262571393 0.6674943324079626 +1.3656192873359987 3.3024351835571797 1.3464390644220452 4.098844523080512 3.3655596302410067 +1.9509234805124778 4.8770143786215705 2.341924076166787 2.0881165084066127 2.9370778378260955 +3.18667728266282 3.358076317877307 2.2398126631459516 3.402195044608546 1.1749512458000584 +1.9481153009410228 4.273565164772545 1.9957329627080194 4.876265497512605 3.7020514249888237 +1.3709292855149386 3.6300028644677633 3.250853853249093 2.6683381116602063 2.332967643222163 +1.9410640753641952 1.798552031433149 4.703728494951854 2.779325415788205 1.9296727426586968 +2.519215736745865 2.881875969199296 1.799803059580729 1.8161652031488464 0.36302915026939653 +4.830070872385283 3.4838133775994056 2.60405573416487 4.769133737890332 2.5495042664178813 +1.60924398726572 2.5491925714290913 2.8048036932092617 4.262242689644077 1.734252510218638 +3.431919069852853 2.525807858748231 4.138394557855619 3.364410723795148 1.1916746629329802 +3.054760103642613 2.989937833196745 4.543878631646215 4.208802904530774 0.3412882500873688 +3.6193346797499126 3.6512645136964763 1.6200895700004363 1.189326220917759 0.4319451090228706 +3.3000337920219014 4.509268788049839 1.429749332803934 1.553916060277623 1.215593127584313 +4.50023995342168 1.3988817776003848 3.9882681355936227 4.497055969218774 3.142815233891195 +2.9894436504024346 1.4063277154871936 4.776467085955655 4.573818549108949 1.5960333620788347 +1.7637444109694989 4.1037940636455055 1.957425685302105 3.1891319177022486 2.6444153644846446 +1.6422188481252613 4.571242845761121 3.362579303827893 2.2620023778224083 3.128969662489945 +3.119099796826641 4.735900073497341 4.228047695110696 1.7539920239912168 2.9555024274124544 +2.3925576493877423 3.5197450964527692 2.7005179590653157 2.7847577768649936 1.1303308753298282 +3.9507349377620575 1.4720313197975514 2.028091858153811 2.6735471153973474 2.561363721694686 +1.0716710988524958 4.5007509513857595 1.6321099910056307 3.452956447184664 3.8825340245810205 +2.88544189868199 4.85391253945612 1.1116702613477036 3.9223416255063936 3.4314355860035297 +2.400917192964448 1.7648597964368467 4.941857733748814 3.5658913695489605 1.5158668962302841 +1.1006191486527972 4.697645374698244 3.2796039779665977 4.038738465755925 3.676259354481116 +4.646635591872574 1.6952764085726941 2.402230004845298 3.1571384853383613 3.0463761820840314 +3.011862881206442 4.434507089400742 3.200174659547291 2.9839085839029527 1.4389883802808798 +1.2819098257972805 4.384813820500839 3.152358616620444 3.879493853940284 3.186963892751137 +1.5061696244258491 1.3781290365452663 2.4890571904008407 4.509233229043165 2.0242296359972105 +2.9670525219815436 3.028128861385482 1.161966189197742 4.1299320154457275 2.9685941900183783 +4.237648685047802 3.9648691564894487 4.683723249137406 4.335877476655407 0.44204677652270735 +2.3301507567464923 1.9100829405262605 2.6892744126667574 4.339936469323639 1.7032739637271397 +1.2907329656309696 3.0147699351043418 4.631698842722022 1.5323753480949533 3.5465630681630738 +3.7626581186578796 2.9181583754679172 3.9239735356889325 4.912690303197055 1.30028483902552 +3.9831275305841407 4.010783189178287 4.435598338980348 4.969199558594944 0.5343174122433781 +1.221636217928407 2.3984085889571065 4.022655933619141 1.227081494607975 3.0331550664727156 +1.1248106051931988 4.088654312052121 1.7761106084819445 3.36682917249652 3.363741230919499 +1.988963779411411 4.841305193065087 1.0119962689501634 3.8417591984670536 4.017886232499853 +2.5453325852012343 4.774923643875254 2.665769877529286 4.745336592958298 3.0488807803584814 +1.0933308060499116 1.1498897367759815 3.504910653736441 4.979287890465569 1.4754616731145187 +2.0017870410066507 4.398349379749979 1.602087192102449 1.4477396488812113 2.4015274738343764 +4.356366206817939 2.6902957411577613 2.157051053019856 1.449741393681387 1.8099938537847644 +2.302638075864359 4.31477641382765 3.027480762691893 3.139593971794845 2.0152593040988633 +3.24695535840955 1.1661398255581874 1.0111209967720738 1.5716186923656426 2.154982818613921 +4.268968074388013 1.1935558941212423 2.004830706081979 2.349757103185809 3.0946945403306354 +1.4860951756059828 4.3397224374488514 3.1748537562063146 1.4769620568532376 3.320545854564413 +1.9367048101559354 3.4541948697588922 3.4189302238308596 1.93154116088227 2.1248770095167555 +4.907154591931077 3.9366388001479407 1.9484290065819545 2.668162749550736 1.2082704841500926 +4.325962839619912 4.292837118357269 1.6584160991557564 4.4027360374624145 2.744519855493239 +4.406105670362306 4.514573050103484 4.918344336756919 4.406033532158121 0.5236673877344132 +2.976271999089482 3.151041111168501 1.8443750964423797 4.907402742321159 3.0680095504992453 +3.137156526066215 3.15136353917622 4.230787978196307 4.47521176288396 0.24483632439355063 +1.8128786680478606 4.880088057146567 3.5160728340545586 4.990624663036428 3.4032450004266575 +3.8763709962600474 1.4091053927642823 3.4156999064174074 3.259518765791408 2.4722038967044284 +1.723220124749199 2.6658996281894236 1.183139384608967 3.1202317152973107 2.154291378578559 +3.5579159253064394 3.937147736700395 3.11521057879403 2.305698707099102 0.893938609294937 +4.1957676645886774 4.933093158965251 4.316002843574693 2.231537822804022 2.211027658685918 +3.4585352892307735 3.0092615484229337 4.3474752123490115 4.097019420662067 0.5143685427482944 +1.7195397909710683 3.3707320957194065 1.9952092302098712 3.7070942891938894 2.378442028394395 +1.9946483160632287 4.918039513006089 3.7475856979166693 1.863875479027607 3.4777263088273767 +1.7546090037870568 4.18606580198481 4.967489147191794 4.535293366000888 2.469569872423392 +4.334010139679478 4.438298551439625 3.7269740664979913 2.513937651853274 1.2175111564505539 +2.949571413866465 2.6367126513070875 4.975214700187854 1.711967904155097 3.278209916574629 +3.1933541185492893 2.1991732008409066 2.1649175345720018 1.9404655233146029 1.0192028269647673 +3.529717137717368 4.235116466747466 2.512778417829659 2.5682758688175364 0.7075790983785945 +4.211127996881846 1.2098793688227722 2.5170997231773753 2.1486208052941143 3.023784059808321 +3.2073948466775435 3.5675836742507587 1.4134640768746922 2.7554403029242662 1.3894733472761631 +2.740604483561418 3.7968973511948163 4.736911187974726 1.94509285336598 2.98496302082132 +3.637398464770568 2.8230992723992308 4.671040440090273 3.648240662225603 1.30736473881493 +3.7328939076795167 3.3295840062483104 1.037285551641833 2.8029584487834014 1.8111487118104768 +2.093203736729664 4.811666919812804 1.0683101472108554 1.331748046045735 2.731197833244794 +2.298327798120051 2.6600424700729843 1.0244108674341992 1.4449371837868537 0.5546889999370378 +2.9483684516902127 3.5119517340277313 3.153023114824919 1.7143895321039175 1.545086632348813 +1.3255642753415646 4.900013015527771 4.7896610191333355 1.953198913458773 4.563135004922223 +3.1488968290398742 2.7444291044122067 3.0324397056617296 1.5958958654615327 1.492398185834669 +1.9836675315730705 4.360346292996675 2.4780908011076512 3.8061692066319988 2.722571245389573 +3.982128420455835 4.201384540773606 3.2151342348873637 2.6595704927066897 0.5972640269785177 +4.995562802523635 2.2291898115711124 4.836850149795534 1.0023423806039222 4.7282416770996845 +4.744637090858404 2.131155949380165 1.1859940118256733 4.937045605258465 4.571725246934366 +2.0601720731601545 1.5217898233673353 1.5596459036040398 3.119152563566205 1.649823163056673 +4.203299186753906 2.6582354974988958 4.244462022716537 2.3569201167374865 2.439269614183994 +2.5312499542232336 1.7847932167812592 3.555544598442986 2.907793829827191 0.9883211619280801 +3.6228302316468413 2.887236015253171 2.2421036344645358 3.78342228365614 1.7078530468215496 +2.1488031716761746 3.3149567564515823 3.1269462352966513 1.9814328313840601 1.634660558595559 +4.4977860407127785 2.760732604150873 2.968526220982748 3.133468364177995 1.744866915289922 +4.698594963783105 1.8609375068971818 4.420844120264979 2.979791432464529 3.182598418216974 +4.809035469251838 3.3060914140696673 1.1184025535747244 3.9692246105084643 3.222735985666115 +2.895027911694163 2.4041940938116837 2.38593679822299 1.201822239539832 1.2818132176188937 +3.9586316342251195 3.030568938611222 2.596496851139237 2.256309173107391 0.9884472789556523 +3.4608760827120504 1.233310469104544 3.83550991360069 1.5794914576227628 3.170436537235782 +4.701502744161434 1.4679145516475018 3.4335934752296975 4.9860971802665 3.5869709160959924 +1.2763621839922368 1.7849665891096516 2.407992032865738 3.3069631925218492 1.0328734611743555 +4.139635917573965 2.7384448819172205 3.7365538075004263 2.6341727559858885 1.782857341781198 +1.8724292106227223 1.8612919335743885 2.852817369367084 2.119643256097883 0.7332586987606289 +4.672148908136282 3.884843460585568 2.7100398990976453 2.508590964984544 0.8126693920644078 +4.43462530752581 2.9157950629543414 4.613798988399755 1.217307110748353 3.7206185489481416 +3.39566024986607 4.54233776108882 2.3807525044500846 1.0170365752773871 1.7817380419756867 +4.1812462959125485 4.406464137138617 3.2320117583151355 4.486495950797069 1.274540570242305 +4.950163769301973 2.7796723931909875 3.7990574322899393 2.5694925532756927 2.4945666167648195 +2.8303922682571163 3.0937570238898875 1.9386143852975866 4.069447898832442 2.147047381152266 +2.450802644880121 2.089387041125784 2.5964731874857914 3.7308716677211207 1.1905801739477004 +4.474792050314954 4.649009987019902 4.749156961859095 3.6493893903612693 1.1134812979066842 +2.455203735346271 3.548073196066596 3.841767382045921 4.61200963887975 1.337025352185815 +3.4372422416876467 1.8761796078206654 2.8372035990644 3.5941369518185904 1.7348961488709969 +2.917633962255833 1.5920978461918103 4.348442682327299 2.3685247387197323 2.3826709924807727 +1.4455470882899784 4.688555254422431 2.4776899009299105 4.742671841618645 3.955659888975274 +3.1834682486438775 4.955301677608638 4.978543356840028 3.398046927882489 2.3743130926532316 +2.7843973406473226 4.799689649025373 1.590247619171255 3.062935084673344 2.4960391541910347 +4.6180164305519655 4.370591971827167 2.561576364664854 4.69888172493396 2.1515792027741654 +4.921966525793425 4.033106695794486 2.6551875626910904 3.94032126080533 1.5625749324158906 +4.620998670315239 2.1101399019196454 4.550320001242783 2.471862582561916 3.259508704712809 +3.7398867827589006 1.137499305466053 1.1214342209825112 3.163934117521781 3.308205920031817 +3.551851918110185 1.2946771074237762 3.4543499636387476 1.2087361908243 3.183962836254714 +4.0356964956488195 3.727060648426948 4.623467754471392 1.9285880642498836 2.7124956462561807 +3.6142970989284366 4.644822313742439 3.83638224526374 1.4478679117345767 2.6013425264354764 +1.8375497481012957 3.768026962465923 4.879633057795701 3.766478012598107 2.2284201645627486 +2.074965736676751 3.821627524052246 1.5598693928960978 2.149240505150382 1.8434168566652553 +2.32251369798001 4.595531615469387 3.0761520450398327 4.175843951212841 2.525060938221129 +2.8181840167611996 3.409177587996892 1.4210042967896963 1.2103733691124394 0.627406398545711 +4.403438030608646 2.5838897636798697 2.043110821268457 4.0178935666165 2.685241662682871 +2.7398447817930642 2.0297069558023884 1.0459229013969091 3.5250400151068213 2.5788209312381754 +3.4543741067921627 1.6397712524302466 4.55584275360782 3.49295003420954 2.102979898146505 +1.5120281685451529 4.03349620143546 1.6702929656528087 1.8632352840053303 2.528839215746814 +1.3439166989754079 2.3139594845762756 1.5650523898714899 4.343085747986313 2.942524824822216 +3.156055425648814 3.012883277374918 4.833146915793529 3.196077525521303 1.6433181227649258 +3.247541739074113 2.111591658473727 4.269827372790322 3.700992312673212 1.2704156450683612 +3.681022458964311 1.0657873239165134 2.9084328408916367 1.6130431291839864 2.9184737992290595 +2.605534015210575 3.01558686017673 2.8918972666810316 4.909103309453702 2.058461453285782 +1.020011464090261 3.3726800062287494 4.607886302556329 3.5933605696893935 2.562091280929942 +3.7939163230039945 2.6278926590737375 1.1895826555229854 2.22448219553852 1.5590472227516734 +4.248845920476703 2.1511033793333065 3.4532391331741956 3.373095408818792 2.0992729182925 +3.5589061004851517 1.0936675271681566 2.5410404823063524 3.8577230491655516 2.7948263282789045 +2.374053631134675 1.271137329319822 1.0689773058274774 2.8492433642772883 2.0942233901084615 +2.763881731798235 1.5893603651782264 3.7166003989156287 4.168437021205054 1.2584342548932976 +2.792065281165233 4.553871663002706 2.954378642452899 1.2927815979482022 2.4217486379453157 +2.727800182635506 2.555783696427583 3.251316181024184 4.9269181860556515 1.6844084275474265 +1.2552120628694148 2.216548579071839 4.639873681329529 2.933841926303761 1.9582421317448253 +2.952818534640406 1.7310838092675578 4.325528625245914 2.096529886984216 2.5418637088471345 +2.412809899514538 3.7864258371060124 3.0273721206591335 3.465642688978361 1.4418397397284357 +4.3220194915394625 4.1249295314507455 1.4901756120610656 2.443247366239871 0.973236980894806 +2.670680071443933 3.5791825723976265 3.0797535129791154 3.8496281344630385 1.1908332070630756 +4.2404347434671426 2.399504883664276 3.217737908985968 3.8477368564777223 1.945744439168341 +4.2359474918712685 1.4628080216943937 4.771432727694716 1.8173609302319385 4.051770317480724 +2.7583227976306186 1.8198142580179404 1.8035559452811252 1.693022205737699 0.9449952309421333 +1.3752702732847957 1.9949737013767157 2.325774448453599 1.8549534649343697 0.7782703497570057 +2.5110099534897214 3.6627730049573786 1.5388733857044654 3.527224516217473 2.297846458086015 +2.967696967024171 2.6624871460212645 4.5599169629812915 3.40665340323399 1.192966836537229 +1.8954449854856765 3.9582058654821926 1.2902251204432456 1.9067350437198667 2.1529205590412634 +2.3401432161947953 4.180797873248916 3.817214878564826 1.6165829653948873 2.868935409485025 +2.1803916822104017 3.005288657267064 1.8342743741402159 3.798861745722453 2.1307413170157554 +3.0492604865483552 3.4889620031591235 2.5020256032021564 4.029368064706804 1.5893748514509993 +4.635478521671438 3.9861880689985383 3.0670735405364846 1.809623699231032 1.4151883957025957 +2.618494910177824 3.6350732127682113 1.3707107558098461 2.4306217503794865 1.4686193385990658 +4.745640192390005 3.074507113313273 3.8838532894640707 1.7592694955785695 2.7030616095874302 +3.065714320518222 3.1193889962942873 4.396737859198941 4.789801005635297 0.3967109878817501 +2.3153179703332496 3.787277590263091 1.8810481807248371 4.309710244362346 2.8399057276705517 +4.520045507254705 2.4903451042827403 3.4567558709598365 3.212699701735264 2.04432070369625 +2.247893490171357 1.693834989591413 2.2358934870217584 3.8086410285733967 1.6674878264987778 +3.0218232007134462 3.4822507608597757 2.425022706066734 3.1723273543341275 0.8777572417612709 +4.076581400507546 4.521170140906927 2.4949264549016967 3.0476903039066983 0.7093708627063363 +3.1066834353711696 4.948882897502834 3.9149082307468124 2.39297959793456 2.389553435613434 +3.4473003425274444 2.2142729642635084 3.3363059233910235 4.686244862251735 1.828302943770758 +3.194013520152528 1.4448910608263654 4.811676665165823 3.9176028497262796 1.9643821840909235 +4.670027293802219 2.276059302539934 2.4956784224924786 2.4051254193060525 2.395679984800654 +4.058873460389059 1.7863191507294616 4.788488445578734 3.518414937591449 2.6033804574136945 +4.5507002207123834 4.585212268515036 4.089583908139151 3.873337316947397 0.21898326339148855 +3.849332681423713 4.0646658019532405 4.0656669430076615 4.942667428613753 0.9030493920878878 +1.6473079823778276 1.9639585711473675 1.6813768686115078 1.6627229877185532 0.31719956279992695 +2.499753753295268 2.263440483469856 1.2933818140743987 4.342560634744747 3.0583223247264493 +2.9463978945377436 1.6593034195242429 1.51730127641716 1.0683158239086858 1.3631581434941868 +3.0154243697652263 4.2832099738905605 1.69794051878714 2.7956894505389775 1.6770012090603093 +4.826583442724052 2.2877169452603554 2.880133983808909 3.2302465854376354 2.5628932724096836 +4.066728492404076 3.6098613069768275 1.028769526372706 4.981691865711527 3.9792364400678824 +3.4301758539129525 2.2419602296129733 1.2913151887171592 1.8253568331658143 1.3027113447867158 +1.2714364272807757 4.891732414767048 4.069476130281563 2.0429232371882087 4.148910660102751 +2.186200850755948 3.9230975977987916 2.8770205050217252 1.585346593423072 2.1645396286029457 +2.603806575940495 4.157526625248084 3.7671615237659717 1.420470094683954 2.8144282998412624 +2.195775009722354 4.063052955164757 4.652243256483715 3.919733259249706 2.00581599893494 +2.3329230918971056 4.419329756368816 2.669695698513047 4.991779560704895 3.121724880991882 +1.185530253650486 2.8020104405383908 1.0595388139504434 2.168555310574346 1.960338181127203 +1.735198338492559 4.870714082612539 4.288878588516631 1.50617567118947 4.192242181425754 +1.0034341324993932 2.3722910476676944 4.5244605698808265 4.545474398018767 1.369018201185466 +3.5786709218142576 1.0572265896797428 2.1939510911878157 1.1544539531358913 2.7273129303531363 +1.3295935651979573 1.5077906686941511 3.958166949310899 1.7445474925343385 2.220780337429659 +1.8606095862722194 4.194703388361767 4.031704847601687 4.174936796901924 2.3384843955547763 +1.3024255806571046 4.681791820086333 3.1085943110274243 4.842815248012372 3.7983731304956065 +1.2379349413194052 2.42197062520693 2.821145020668222 2.9886401565955243 1.1958240344123816 +2.9358835156443557 4.777077079542118 1.3548384396249924 2.2756852217364902 2.0586287999208706 +4.12679357005986 1.9820802701297437 4.605430737255419 3.162040122122786 2.585183089599282 +4.597827007887767 2.203310106949364 4.1363408337881165 1.219096092080429 3.7741261335441356 +4.159079283432083 4.020979735985019 3.1839392983059476 2.3462641948009213 0.8489823696857552 +1.2963971335921056 2.1162101379151963 1.6483806352324994 2.5381350826487616 1.2098579828865328 +2.3504047773940995 3.576185772031784 4.956444173598588 1.4300853361000612 3.7333290368810133 +1.9314392740119022 3.609842829183201 3.5122660355864195 4.131886814820652 1.789125038690838 +4.159033277031152 4.4756010904203976 4.523570520389388 1.3596082364475035 3.1797598202821535 +4.804795309373107 4.925440837424507 2.2324682568253404 4.4456332125484455 2.216450871253332 +3.668970692665531 2.0281496688338048 2.3013516192778845 1.554473217693909 1.8028091909574981 +1.9962630398273382 1.3374931370906866 3.955928119788387 1.679061281818901 2.370253231744832 +2.870198314039737 2.3090293841339484 2.623876061771782 3.6370042469284907 1.158162029877743 +1.5784918392059 2.62565747906233 3.997264211776347 1.8107652125654314 2.4243212969501924 +2.0391285054020805 3.5635611354660277 3.1983125281846383 4.183214495137431 1.814917829575533 +1.02060885437181 2.456906662824271 1.1360223273056147 1.7120546715108018 1.547502716035053 +1.3374783546964477 1.9779580126283838 1.0987303548591165 1.0635903385713932 0.6414429148172979 +3.149966056371565 1.6291955609663265 3.2979102252925196 3.972517033827409 1.663681834311093 +4.402366363560093 1.5704404014570033 1.698651691723681 2.2174082560197603 2.8790472430708363 +3.1400651002884836 1.8998509713638212 3.456187812718095 1.444506696931116 2.363258766449054 +4.215147396028861 1.4120306531134625 3.627354249702088 1.023659063275395 3.825793002533483 +2.6765909585051184 1.2717050897266589 3.2936658427180023 1.90509654430539 1.9753047868082287 +1.8344091998015175 2.5102603925793745 2.203311203827157 3.8303371838858413 1.7618139443667638 +3.607454410226475 2.618460462396812 3.8811381304499264 2.9273267717455496 1.3739960468782986 +2.286182642790774 1.3311146142379995 3.552597143320875 2.691035649707482 1.2862515875368337 +1.363943500808146 3.8675082140837205 1.991920698176397 1.255585719366437 2.609602551075101 +3.1092566693125434 4.93933058448178 3.470589673463069 2.8887041456254225 1.9203544731350397 +1.4970051615381976 3.2407126422384067 2.7131966432017274 3.8873994178761433 2.1022054928819323 +1.2328596372994105 4.785816317843304 4.956490571952543 3.9415105657269796 3.695089388209591 +1.887955773557565 4.462106597566787 1.9648926345573505 3.743134238791053 3.1286411855268743 +2.8140049984648545 3.975673865663478 2.1585904986983913 1.2208065988877999 1.4929545203262202 +1.4676258553595143 1.1030660506301952 4.355289566869564 4.179263619515366 0.4048320458736216 +3.840043466501746 4.865658662862 2.8652850467791433 4.828551958340414 2.2150177193504375 +4.020051149201938 4.973075572190324 3.419051592332715 3.1137825431281314 1.0007221108852427 +3.8690319984069985 2.6175024159456193 1.4820082406931268 2.9172172136113304 1.9042455439677097 +4.829905286807032 1.6792746485170906 2.0422803965108063 2.8275427576161674 3.247015613559634 +4.438292522046808 3.399235562880009 3.9767845167455227 1.5630025039869908 2.627923699331772 +4.653390384523256 3.903258851861886 3.707375702325242 3.565495442183685 0.7634312834242067 +3.216580111246241 4.196343727935043 3.413949034678467 4.501318134962913 1.4636626335465857 +2.0356607280934167 3.6631998462662323 3.2922552310756217 1.0728348503276584 2.752219178710551 +3.301296518793894 3.7628704578817413 1.9175365272683638 2.572000199539926 0.8008577898530117 +1.361988065512382 4.001984615968275 1.0279129719790245 3.798423943846879 3.8269194963650826 +4.983226436721864 4.115169992138487 2.345068633986422 4.563761389653532 2.382460815004614 +2.7467857096230057 4.545001194019457 1.5045596978811955 3.353106849501954 2.5788961786175846 +4.257267285688382 4.456827417976992 1.8110379750895342 3.820608525327435 2.019454887533392 +3.4116320254364965 2.6958059232876654 4.778392025705656 4.843429184620035 0.7187745408382541 +3.241003584368018 3.164687457196687 3.0657908648133407 4.900805982297387 1.8366013809919173 +3.0472237414255803 4.449213808869232 3.9778800524921922 4.395873268428838 1.4629745308034983 +1.8179475852394194 4.526895916744091 2.327529315973475 1.2034362232010358 2.9329143090074505 +3.293421698793845 1.2358822740013529 3.227061442871741 2.0217437243472576 2.3845878652640344 +4.740869631710341 4.695676597079608 1.2234682339847054 3.1960788816428902 1.9731282719665182 +3.763519926986379 3.604116830861653 3.0800467267429354 1.0593802331041449 2.0269441101245573 +4.422580284910966 3.2559912818848757 4.383502130435442 2.640340097338807 2.0975089452994 +4.591702616174957 2.414284515880172 2.5747561506857943 1.1120868274539233 2.6230804662867153 +1.3467109465894427 1.0561589701233816 4.407049760218666 3.4899058434753782 0.9620672611868426 +3.28394531317518 3.919667591551584 2.397380956817164 3.8110920145775036 1.5500715370775457 +4.131457276932221 2.7744391617969524 3.249010474281812 4.680307926877053 1.9723363208669318 +3.8530377907179107 2.7602657167741307 2.030501071866222 1.7461045713720216 1.129173226340732 +2.1794736074080006 3.419006480929261 1.533972258337374 2.8947103418525924 1.8406656069119514 +3.616621818486116 1.5371186937453807 2.1260222336107297 3.0743964495579434 2.285551771297245 +3.3095188811916687 1.1803881788218256 4.247422118667702 3.128963841722387 2.405025252474781 +3.596019344150519 2.7893894836929247 4.375440474457647 3.075048295234823 1.530252120261796 +1.717987580957673 2.7451676179578444 2.437683110805111 2.8752534296305603 1.116497475289881 +2.8580320436694455 1.5720457740072153 2.75043927623174 1.1961277140128121 2.017336144078924 +4.081452355289491 2.2019228711080063 2.2916115577590133 1.761143088984304 1.9529536293193708 +2.4452009731604836 3.7125433429214354 4.027610834009245 2.538365296695918 1.9555073389274114 +3.4150428048263906 2.4592022376116636 4.504959002713317 2.92667086401926 1.8451624965502964 +3.0752293101955686 2.9451218087983446 1.4091329090478717 2.1983840007089834 0.7999032739075926 +1.4122310604459947 3.9100210562323086 2.64723038077136 1.6920931728844444 2.6741806126251473 +4.991588848194988 2.928540217774812 3.388584541113571 1.8808979300012703 2.555247261774457 +2.431242471234087 3.5826687091770832 4.874057054044192 2.747325396228252 2.418423024572024 +3.2419130951974426 2.8681201856852665 2.9054997911883964 2.663182679582279 0.44546461338551857 +2.152157652769642 2.28032602444796 2.133902510738831 1.6707947170544202 0.4805163473493014 +4.391997662992325 4.267878261225199 4.541903506137767 3.004621389885243 1.5422846465049398 +1.5155126519831104 4.280850234735913 2.41544462878372 2.269485895200762 2.7691868659399383 +2.6132975587756184 2.075226537897227 4.84929563084232 2.1174448722519137 2.784336364507725 +2.163581030219148 4.739390604136957 1.1219281628582167 1.0800430168498667 2.5761500978286933 +3.793176907956558 2.1419100337733155 2.061609951177628 2.5337776811154487 1.7174471330930483 +4.5462535076027795 2.996804830382359 1.7546323444265113 2.911243608995657 1.933530661941607 +4.164242600920953 3.374565763268068 4.217396497493649 1.4205666130399637 2.9061739298429257 +4.624439133542034 2.820660372285817 1.503592039216223 1.3322960689069094 1.8118940722357977 +1.6298161351702203 1.584087473748785 4.923841863846411 1.7403579599153507 3.183812318127992 +1.0584328821516475 2.0899872418993386 2.1028519809245143 4.746496101835513 2.837773534858227 +2.889956506595564 1.7870032341640631 2.3614329617329783 4.638374351952905 2.530013441795124 +3.557325369969202 3.5457591512261746 2.6985681909505725 1.338372086267869 1.360245279576449 +4.608302702312218 1.3862662284661185 1.1161594965465391 3.5381192472224434 4.030807372312488 +1.1580724720407387 3.1870075071240356 4.895816091149408 3.5628506984408075 2.427627260257895 +4.6321538826251025 2.787513782649593 4.387333958269687 2.281844157387717 2.7992471130744523 +4.834497296826559 2.69632954777953 3.4672447548022394 3.890406503231817 2.1796392335427472 +4.051476619153531 4.6197757201184135 4.350733544404726 4.6969509921039325 0.6654550242118896 +1.4553690427484738 1.2594350700326098 1.9497899358384077 4.616256865951533 2.6736559260778363 +3.4173605102333235 3.1331306614177086 2.10974338359056 4.20781143134441 2.1172331331158123 +1.4763502217647426 3.684606627255376 2.9200644956688637 1.5789393465771075 2.58360465588619 +4.711757734738143 2.222839432484471 3.074517787677395 4.02442751017144 2.664027551693491 +1.2614837530147134 1.3314100487356195 2.7027572901435364 4.74875317266754 2.047190474318016 +1.5633682384610759 1.5558677896084823 3.962058873761952 3.0733829872886185 0.8887075379066813 +1.4291696422068 2.240348905600936 4.03340220302433 2.4805671302960763 1.7519442229864552 +2.586383566545556 3.8686916782707046 2.4749275216184854 2.331776621977565 1.2902737203648385 +2.0200469659572766 3.451380844061688 4.128714772592126 1.7178825479740265 2.8037169411098666 +1.9743887547403989 1.3717274929429513 3.6736468075705773 4.92096676863272 1.385282527766577 +1.3355877242244514 2.6830789705262457 3.232609229218508 4.742979061613913 2.0240923124872756 +2.5126150657907513 2.46406231076693 4.665029445609273 2.713619789104699 1.952013580260061 +1.7027863134164356 4.589478347283636 4.036678775923592 1.923234756563736 3.5776579659548644 +1.2059428496373674 3.0700977265321776 4.3876327016028105 3.840192039777791 1.9428753648317538 +1.5028876223304168 2.4394366063255197 2.415229680271744 1.0448295024176009 1.659855610251966 +1.4075074754306547 2.95296770385016 2.2162906951469097 1.0304025258840817 1.9480190111043607 +1.8939078225419306 4.5636391697372956 4.73676826075717 3.865613739458425 2.808269158427807 +2.618066156590651 1.8974151082675967 1.6864636792193624 3.427193038185845 1.8840054762704324 +1.2825350279492822 4.48412848387669 1.0619880984131278 3.139922708266105 3.8168066364255404 +1.6950001185823038 4.002758230447933 2.3756765000933617 4.23675207092621 2.9646837577104956 +2.9223962355480007 2.920700132365658 2.452565495961821 3.7982236388094774 1.3456592117539303 +4.949628072114529 2.693472356230511 2.465727523294171 1.1269155083337865 2.6234816991392202 +2.03193542653556 4.594422353832511 3.3699578879755228 3.3522383463172623 2.562548191688177 +4.749568490593187 2.1311594191159924 1.1422099040283569 4.012035009170541 3.88483747403909 +4.0282664585789245 3.4657315859594036 1.0360646598802505 4.6498779692908485 3.6573340178586697 +4.368812346182725 4.970811315442082 1.8335174367123521 4.1336753757218645 2.377631027594024 +1.0714786485698449 2.502521322495208 3.784888381674108 4.048554930376093 1.4551299541621256 +4.282210689098838 3.3450046705489322 1.0321966884294387 2.1501679577846255 1.4588402518129986 +3.079066228804575 3.865372188724414 2.3037635626086437 2.789526650880855 0.9242525848128399 +4.946724407972068 3.3448310934413286 4.935118085276862 1.7434769135209565 3.5710832474734735 +1.8294931134682249 2.3390257968675527 3.8882162813807346 1.1095173650585148 2.8250294198507735 +1.8141283935882262 3.448926088919336 2.1589690586796233 3.753352424110601 2.283554645858714 +3.119779610141001 4.3059870435257155 2.9548370346260207 1.0670484759177792 2.229536659803308 +2.9207345557622064 3.7885399396239103 1.349146400487626 3.1913405550371565 2.0363608440833416 +1.8052201930941858 3.22501182434007 2.323605755082098 4.475553571718429 2.5781170806776252 +1.1405663831534842 3.1167893481471896 4.232105346044726 1.6735199575003965 3.232926908830611 +3.997991274490893 4.060220994060728 4.306212235629883 1.1425159834965526 3.1643082204109354 +4.608978377017718 1.9959775347911193 2.0454587733233183 4.262127232597875 3.4265715314027156 +4.170643190702082 4.420068788269491 4.001301024707637 3.6207872606031124 0.45497676137892223 +4.926367609542063 1.2458193669838464 2.378250652529982 4.580158524955535 4.2889198692034345 +1.543739626292834 1.805834738856372 2.513563599605026 1.792923910153561 0.7668216285697722 +3.0707897211223387 1.154587351702422 4.408562861339163 4.48385021831861 1.9176808146017035 +3.025909564303914 1.2823246240064838 4.636973317854695 2.0630637100301366 3.108874251764385 +4.102399840896416 2.081827689543726 1.2574245135978566 3.313476188242485 2.8827175213036424 +2.062240756229685 4.914744229761055 3.6009613046786133 1.2647981053868826 3.687063134831502 +1.9146164904263845 1.1849475343859437 4.671736293594803 2.4587407987966543 2.3301857963274193 +4.735544209530529 4.795882426240842 2.4151015107345377 4.793343408441926 2.379007193012795 +4.638666064016561 4.113800205747925 1.9424356311821733 2.9836205579855 1.1659975218577958 +3.310896635074712 2.2659418244723524 4.477953560427348 1.1099763762077823 3.526358017788972 +2.9365677806835673 3.086809241126995 2.3275324561356783 1.2933606026256887 1.0450281905424663 +3.095516536687807 1.8510037594209248 3.595220774732458 3.035364945462458 1.3646430311067168 +1.7430574986904754 4.6151599414776605 2.9506456345600194 1.8015617433555433 3.09343922372652 +3.2762070810835247 4.871949957256646 2.338803146657382 3.563188763742083 2.0113466797598942 +2.5528281018494274 4.800982719378407 2.9533696789988357 1.2036480644562046 2.8488111402328067 +1.4613616602511583 1.3162173815333769 2.4615481697072132 4.196231151113933 1.7407446417055576 +1.9316128963109116 2.3942948127531016 3.168281461942249 1.6034125438186813 1.6318361703038216 +3.059106349928234 4.6373101215852435 4.812097704028849 4.215862471955138 1.6870754567708 +4.912739552307982 2.8782005759307046 4.595742777469194 3.0325792550742694 2.565702446532802 +4.620860228140952 4.438741313668443 2.793812873067041 1.49734941149236 1.3091924252022118 +1.191413665943248 4.329974403370995 3.9915422460456975 3.7736753713154894 3.146113392366479 +3.8985096391593923 3.692042777351655 4.526890006234838 3.1901529184307384 1.352588114296337 +1.3583816911606856 2.683363397556468 2.471032067346296 2.3553292115000586 1.330023937053185 +2.436699390281511 1.0301380864474265 3.1508656894271954 3.572743821166894 1.4684671802541651 +3.9305558878652103 1.209299581222031 4.5847611020357935 3.417112341144236 2.9611888685554772 +4.203563374737083 3.100018944424832 3.6974034946160637 4.149942944648138 1.192728914510134 +3.029951870133409 3.5278455655600616 2.8163421085632065 3.484111800351194 0.8329552768403788 +2.2829832150275498 1.7467831568820875 2.6375623040764813 3.0118693465675115 0.6539237451060934 +1.6527896800973694 2.505163980426985 3.996170041967695 4.0879278535025545 0.8572989232700975 +2.6685698100813933 4.131956995443951 2.4194183766379465 3.277089151543066 1.6962019963464543 +2.458374248308891 2.556435445733405 3.427217990731986 3.781201425381494 0.36731494721368463 +4.007350934563856 2.8112278948065685 2.112600064902074 3.303771258997195 1.6880755729173416 +3.9229815811623516 1.4943372242045876 3.0837303650570287 2.810720885090687 2.443940995346304 +4.101537875364807 3.900596683283443 3.6405465117877545 3.3162000310491733 0.3815468545835261 +4.649766452717911 3.8273548760155562 4.1873803172042665 1.0378916786962762 3.255094389658304 +1.073483756898547 3.7211832666378752 3.817276039656215 4.478543890466249 2.7290269079634966 +4.453492574985139 3.9415798219841625 3.232838270910315 4.679653669400464 1.534708266737769 +1.2964723354578669 1.634971965095787 4.938981433732369 4.623024291530461 0.46304526233771776 +3.255560058044691 3.0523162808310293 4.434840659495939 2.5982101426110367 1.8478419003066742 +4.815831558578896 4.902505664193523 3.4685605082279314 2.202126084595793 1.2693969237179372 +1.3159704669851195 1.9480816870510904 2.4871546735944783 3.0415560915340203 0.8407886338115335 +4.237921384950689 2.2305023551134675 2.7219786262469694 2.750402065077043 2.007620246268586 +3.303029368562518 4.143294263188099 3.2912693275291156 3.1187368539508356 0.8577951664466167 +2.2852293500904977 1.3651909416838128 2.993836626080699 1.183089054041286 2.0310779016547182 +2.0212035076475976 4.67178179104585 2.2800100958253116 2.0403242780554596 2.6613933432813783 +1.8804110290438865 1.2866616266435726 2.4625730380132436 1.4786177390754855 1.1492199020024072 +4.99558228121439 4.4550445131984215 3.684223279562152 1.1081777103416757 2.632145864756004 +1.5277716479666368 4.230565423417525 3.258282346552222 2.9568682107851503 2.7195486158287885 +3.235842520274681 3.493543740990345 3.4690926037926624 1.8014369334655624 1.687449363368416 +3.9254588818522174 2.7367456729720905 4.242895878761141 1.1125978879464942 3.348403291759268 +1.6497910014651822 3.2889597023672894 2.3230537382038485 2.080930057770791 1.6569544069296387 +3.024985909333798 3.3195213446273373 1.8797798161146106 3.991600083823604 2.1322607640131728 +4.522028160740905 2.124482183130048 1.267723025669325 2.7077785404684795 2.796781471703046 +4.808548651738461 2.0907888845788114 2.0413547647552126 3.733504495829971 3.2014979094742584 +1.0041589977025582 3.8619482452016305 3.923414158428461 3.5667976814315225 2.8799539396988663 +1.037800600670129 3.9802581248508435 3.2352107204499614 3.2360156741942525 2.942457634284346 +1.9069398654180896 1.247681487406462 1.9319970267045559 3.475962786962155 1.678824552425401 +1.4888855925497166 1.7430024006919393 4.012452944610828 3.743509966395899 0.37000767250356753 +2.9537667894533204 1.0608314708868343 3.734690843734784 4.941176770396291 2.244729919502273 +3.028066054362833 4.648837895422917 3.2476757231006794 2.029542648629034 2.0274983471990886 +3.187037132078169 2.3885360049438833 4.144958701630957 1.8131709986764748 2.4647186333706457 +1.6573212021707113 2.776091851691184 1.6198833169728624 2.915879031387787 1.712090143073755 +3.912478921726703 2.0028917653445752 1.1901707957800425 1.8332636450878979 2.014966878301099 +3.429236923270068 1.1471463890845577 2.7703026985782335 2.7616974560819205 2.282106758330453 +4.077448419317216 4.934038749760967 2.452263615887432 2.8488053290961752 0.94392389763384 +4.234668369904655 1.5224445282071115 2.133344449708002 4.373299221350106 3.517606508192013 +2.054708808123594 3.9946607600136925 2.1462106496635927 4.123390448204903 2.7699555107261307 +4.195375815994007 4.186896673764176 2.9171224960581004 2.2492011405669508 0.6679751739204747 +2.7520204994957043 4.92646079120232 4.797498780948697 3.6269742312428623 2.4694773341055796 +2.082733092030776 4.888602382079335 2.1368725301837115 4.808428305624335 3.874288674599217 +3.6461122293399666 3.624354788976906 3.877343677400775 1.6461288406552042 2.2313209168393318 +4.6801858798496205 4.384384118987919 3.085892819530716 4.748255017885945 1.6884746845153797 +3.121849494218631 4.156659072243649 4.639578872698456 4.354108165896804 1.07346373353465 +4.789291098498296 3.7270641180411244 1.0768809418336671 1.359012101015579 1.0990560263209925 +4.37171251685127 1.5066702303864163 3.189788847125471 4.246124539565439 3.0535737093370416 +2.4313580510090116 4.281465110277141 4.05536905508186 4.378003074666011 1.8780279128241923 +3.658243279727039 3.58518935116691 3.0660056701796834 4.487155074824705 1.4230258278755759 +4.0093896203597 1.5636999183869151 4.25306512750829 4.768392900225946 2.49939209242365 +4.040175934981954 2.1411407043917507 4.406495195998491 1.2360382435944741 3.6956910171265336 +2.884220558802725 1.8510222541600139 4.6330662956088915 1.1382373613284091 3.6443556380518936 +2.9527500305228784 2.4009446247016832 3.2787766001139507 3.090433791288803 0.5830627920984498 +4.738209042304588 3.0177693028174852 3.128605871780364 4.658432935065592 2.3022345103760293 +1.199523385348622 1.3060031398790586 3.946683022395756 1.1878552223862697 2.7608818823394174 +2.5332440601764503 4.128815462058043 4.479012549566345 1.9424575486156646 2.996658033768668 +1.8248395099086157 2.4856919493643086 3.414592203889088 4.476513514910705 1.250760895429822 +2.880083406087409 3.94134520407747 4.01174023581244 2.4864474043902685 1.8581697515192102 +1.7006975640405693 3.1452749216336997 1.250372920381317 2.2279198446925186 1.7442481851218998 +1.340059889869619 3.6792293420354456 1.0432074499529946 4.008564081052654 3.776910599359282 +4.154481540449091 4.780348301068255 4.708377334313937 4.922977184969092 0.6616360766683903 +3.4740692491643763 3.3374257602264517 1.979447473870934 2.9628950525208757 0.9928950513632153 +1.1332641355274822 1.6339773258095578 4.974074249776278 1.1208170786590146 3.885653680616566 +1.4031058392200948 3.5937608728900354 4.458707732439944 3.078756264378336 2.5890607429623653 +1.4683793864558172 4.984077398826976 2.7378862259143473 1.8369680529990524 3.62929553336175 +2.278454694067955 3.643409779399916 1.4944193931206686 2.6976649879964985 1.8195885102301754 +2.1622457183261057 2.234873147344127 3.1368989342015228 4.565290662039773 1.430236928485106 +1.4731948133420922 2.994712904510475 1.4798878346682747 3.9068507341018264 2.8644661312327626 +1.283995089273891 1.2717207626196583 1.3597782376282472 3.1419990937950315 1.7822631229003982 +4.697055405631064 2.8883179577437734 1.6747596365524826 1.6885692256668388 1.80879016476244 +4.978860330003348 2.11706546245429 3.9614472047604687 2.647602689559551 3.148977179030306 +2.8516647840763167 4.7031719004794015 3.458347867963601 1.3552913124473722 2.801950298950902 +2.587527883932016 3.9763993516378693 1.5403561067308638 4.293008583451867 3.083189843555807 +2.3111837556482646 4.639191086638856 1.7756743975337015 3.958484657345379 3.191281680373116 +4.306587889924314 2.3740449492450053 1.6391603352983921 4.076961962387861 3.110883956467919 +3.8884273559310567 2.9836480938173757 4.985198391588126 1.9609458495074463 3.1566958915030807 +2.75551528671541 1.8365548635427285 3.7701269958654877 3.931409486896072 0.9330060563955329 +1.6389967271549168 3.203952894951031 3.142849113976974 1.8802532979356532 2.0107799486289264 +3.4307954313793454 4.513795630226207 1.5772749805335802 1.5948257400114367 1.0831424005460186 +4.016942661422891 2.8854153367909503 1.9129159296784461 1.0913384012152436 1.3983360546250752 +4.055319005113505 2.9563577828885697 3.8381890508261995 3.9656149038303097 1.1063241459752875 +3.9858749866720538 4.068491614145251 1.881077756837242 3.519482022826743 1.6404859176316147 +4.774071548817474 2.1172144512711437 2.7676922729062925 3.244296333069245 2.699266764687426 +4.8141071279432435 2.571790610302602 1.6212107699424716 1.3053020732845737 2.2644605692986013 +3.2514218703204536 4.4008139936992325 1.8232570057020592 3.944125362369687 2.412298663018164 +2.1856500721018373 4.48756430008533 2.6698600367336627 1.8796580697085519 2.4337683253923723 +3.703996512036432 3.410443063134302 1.5869669063131302 2.8198212872703756 1.2673214083285298 +4.071994634487192 2.0059105681808322 3.1097657139214223 2.460772740359761 2.1656165978255313 +1.3728928908518636 4.673200269119204 4.146445077693475 2.140564921256352 3.8620699104280933 +2.172990394709059 2.1173313894300825 3.65419924243282 3.617733783896064 0.06654062319321197 +2.925497367628451 1.8854820657424507 1.9284797837484864 3.574142304020929 1.9467503586198398 +2.282358164882984 4.544458860835319 1.0593523864252026 4.362613112201167 4.003577273024962 +2.899547679285111 3.3653730259765258 4.188503896777164 4.0465977701901314 0.48696057579963475 +1.2554119729876292 3.1702812801703373 4.584751287534175 1.4423583681552343 3.6798583836002825 +3.828222509878758 3.473806474530938 2.456327920955835 4.085438520757997 1.667216864267941 +4.080817173887775 3.0687264575058646 2.97049456145714 3.288856209656567 1.0609815065450974 +4.967766957037838 4.221455645460625 3.127792178895607 1.146240709456296 2.1174340130982108 +4.3210961012980125 2.1905350267967654 2.936419063782301 3.3995133194397016 2.180308873027579 +3.385983527394284 1.3478636935786596 4.8122551220760705 4.008265243994107 2.1909660383152634 +2.2025126385782996 2.3704490284155786 4.402473681742805 2.025816648843873 2.382582901613191 +3.1616972212084393 2.6205867797626334 4.3689244708898745 2.260260941128038 2.1769847017352517 +2.6766400578767415 3.040633915062465 3.910438843128474 1.1789702780363331 2.7556146410838105 +1.8064791621345475 4.339319626218552 1.774648892791706 1.341536293043871 2.5696045105349588 +1.950789169645875 2.101304167074529 4.1834648718129515 1.628482017794675 2.559412461636132 +3.2663112648004113 1.6775997196005474 1.9404152035981639 1.8824147001952927 1.5897699306020119 +2.64680595858232 4.72874678124044 1.0553710449420182 1.6806228263172858 2.173802516136945 +2.2358796087840602 2.923162063690844 2.770225970102548 2.414081652993229 0.7740774815430033 +3.870855293381494 2.0923369911415453 2.6394181759743454 3.03722381639679 1.8224644520413509 +2.944069788954592 3.5920972789756864 2.5688363860053953 2.5295558171731023 0.6492169059034337 +1.348844227240015 4.211114826409039 4.813195770335197 3.197016752982628 3.2870393363934847 +3.550174825037261 3.678080778498863 3.9475740907672354 4.567340997666282 0.632827742610999 +4.406711320449753 1.3550406275374316 1.7064212864348174 2.765439364387299 3.230203291963238 +4.5720756663608135 3.368099600049923 2.941120466621515 2.7878527784745475 1.2136924455888163 +1.196800400251151 4.750759766163192 4.602719622582141 2.7939321053109873 3.9877737469909023 +4.618124662551264 1.388787657769719 1.4123987078835714 3.9206472640508556 4.089000893857412 +2.0106540237114108 1.7039848519241225 3.6132380753556648 2.2415959855989804 1.4055063156445742 +1.8279933870823313 2.2969638574894375 2.926059718730962 4.577275905518176 1.7165221226718785 +3.352980150512235 4.0746986409352495 1.0742340009742208 4.091304366328241 3.102191349500529 +2.303730881773136 3.389919244968113 2.1449037066202234 4.1584637981895884 2.287843832673247 +3.332197870260665 3.8191876855894873 3.6775099050459943 3.898229919742385 0.5346741111383412 +3.7105744302263046 2.806180207783355 1.7404330664633991 1.1714691763513958 1.0684796759131974 +4.840314177289388 4.627127562420198 2.1984256817003205 3.0507926424911544 0.8786227680905995 +2.4043582763629363 3.255771147667343 2.8580639260699745 4.747331915989881 2.0722541869082614 +1.0715132206182743 4.002763466222808 2.991377641946488 4.381109401344409 3.2440071463293476 +2.812281911317918 3.3192290472788692 4.327309256973895 4.485013905219136 0.5309106843313348 +1.2734191098770404 3.996699308931617 4.227793312674448 1.649578795662654 3.750126016321731 +4.94578473964409 1.0536457545084241 4.279876562697702 2.0134817682461796 4.503919542346404 +3.922428845173126 2.4833249829135533 3.798511710209318 1.4230590450300626 2.7773720116105522 +4.159312807608544 3.2778341260662156 2.017534851245029 2.9803362290752604 1.3053701234383275 +2.949650911586072 3.3005721072731986 3.596514401428653 4.689216594284733 1.1476688406744202 +4.3401115542798046 2.2300516037677354 2.0684301319764056 1.7602251379352793 2.1324500728286435 +1.2434350861982533 4.326013906432417 3.8572147773593883 2.387957046319467 3.41482217153058 +1.5089880331323933 4.5544092758789905 1.630554307651333 2.613156336556933 3.2000152019922705 +2.8954019134128757 4.01094183689404 4.147157313436333 1.8873860201200183 2.5201181755974957 +1.104995362622462 1.2588868132716962 2.7405843353405612 3.966921330517495 1.2359550980203595 +3.345429292661992 4.316051970084951 1.5914815322338312 1.530790236609708 0.9725182853253956 +3.667168916102714 2.22371896487925 1.061870215870008 4.782748549183447 3.9910504047190902 +4.201405901589741 2.413838881590231 2.472383604647298 4.938235637265134 3.0456234333475045 +2.6543525734142497 4.56893843095596 3.419569823288233 4.921071506891414 2.4331350788153774 +4.6333000000755415 3.346500680796407 2.12460354047861 4.643666414775382 2.828697624836836 +2.005272738946148 4.592381863225594 4.502577610282897 4.249894853365062 2.5994195884030646 +3.1059603935776128 1.5046312451802217 3.9236721634198815 4.6708572260684855 1.7670711811787074 +4.805719989827807 2.4247572275009457 4.89152313616097 2.513066100300735 3.365418480222068 +4.861471101123246 4.84187896700588 1.466789223745565 2.2192466574469045 0.7527124558898162 +3.763096335789165 2.9139089779224054 1.0215276125224535 4.693124868096149 3.768520343038766 +1.0782950904656348 3.6847468465628803 4.011433560231957 3.2733005544320797 2.708953873936132 +2.6675381336229407 3.017604923221684 3.1452826689817015 3.707261050786155 0.6620924850770646 +4.3403492881388965 3.0228209654497253 1.4699639718865867 3.561539070851656 2.4719561637899004 +1.8935665643976494 4.613179135612328 2.555480088955356 1.083502163960095 3.0924119307075295 +1.9379225919357936 3.037765503457984 3.2101488222087475 1.7182236345965158 1.853508887342438 +3.633757416104208 3.8103089425149386 2.8653511601648627 3.826318079696773 0.9770505933228881 +3.9498665460817275 3.389122560702021 4.608707824490439 4.71306149816533 0.5703713758148828 +4.177347135632946 4.046423660340138 4.182029855109166 4.4351310869487275 0.2849582249057747 +4.635936452678494 2.0020931359490093 1.5003294168144516 3.8581643929847593 3.5350412150260158 +4.3768210706682575 4.0779132720275015 2.926817041574126 4.192500767621489 1.3005003523526621 +3.2940397079220713 1.1561526551317254 3.8118713052753135 1.1315393726782381 3.4285186771240093 +4.2435098373933755 1.7172719353754147 1.618553870320548 4.409553088213475 3.7645125277877662 +4.1437984240400265 4.256710975264774 2.5183927104225763 1.5134629644869833 1.0112532019678635 +1.9970598229099372 1.7833734304923619 1.5620955715727307 3.7137002548914237 2.1621897667835195 +1.5891091642831032 1.9304868770290171 4.992175633738794 3.365354900913188 1.6622528205754006 +2.6666741095866837 3.4297896321095265 1.906003577981707 4.524709676142117 2.727630277229271 +2.7605297183028514 3.949101039376326 3.203618801802574 3.168187793922003 1.1890992984598796 +3.5472605305209792 2.070336426889106 4.69067712330043 3.535607199790707 1.8749643559506861 +3.0144632828090847 1.7451850173731294 3.3212469997020295 4.72299545179968 1.891022484812454 +2.794671156456836 2.115177618311326 4.193057174690014 4.642978886349853 0.8149484738340355 +2.4270186910039815 3.042467042136102 3.6989665428685403 2.9570904439470804 0.963927808013738 +3.5135270712781597 2.200200074842479 3.0880948549807883 4.637225925572239 2.0309197112241 +3.099119666899443 4.9910909530668786 4.105413887446049 3.4230229292105094 2.011271430603954 +2.4542718398320447 2.51820728201326 4.4396949229405696 4.33899984660469 0.1192779911182118 +2.97157582957497 4.388518695833895 4.351595557447665 1.0970083538622122 3.5496570189222836 +4.242971038962137 3.592376018925051 3.1207061716007223 4.608519272649122 1.6238416498379122 +3.5847794620208546 1.2673547987734253 2.253206731967738 4.231926147682614 3.0472590300062254 +3.492107134262973 4.42283741614351 3.7886319248985063 4.781280430601341 1.3607387381431804 +2.847852362590963 1.2528793288927376 2.2961397169704525 2.7207047021160355 1.6505133761457949 +1.4438840334977021 4.877130145384248 4.498727520463036 4.049695795319365 3.4624858635046567 +1.9816439186493549 2.8299036634769195 2.443606112664394 2.2870511938954037 0.8625856695341573 +4.799166198841616 4.60779719626426 1.3806463685971249 3.9424937180264363 2.5689850013041027 +2.611272086461163 2.0143742716320236 3.0961866592603373 4.222499597998464 1.2747030388748264 +4.155849264352132 4.147091545203334 3.328169355409726 1.0590096367424704 2.2691766186145026 +2.936973319444166 3.712228338105286 1.4681949717158527 3.4798828810146216 2.1559008762877077 +2.713907689785973 4.6332078437663 1.6981435896445416 1.247165485299302 1.9715715385620003 +1.2636615705222636 2.8556362582307133 2.8755767279553446 4.923493665451979 2.593905778780334 +1.7813913068419045 2.690470478009742 4.598842747181923 1.2538660927369087 3.4663083761017806 +3.8261594968614676 3.5341565890829423 2.476230869278784 3.1997534728452237 0.7802247471226949 +3.364473508719759 3.1441376617181374 1.7971857442818875 2.8499865359501966 1.0756102418680014 +3.648421027723388 1.4188770637805361 4.320498139034064 3.5838025048283284 2.348102796857879 +3.0799392203908313 3.6338516440455444 4.136037554958715 3.6501047496908763 0.7368511819319489 +1.5765788648139374 3.837094119631998 4.433735181390265 1.228881753088757 3.9218636786814876 +3.9816275859159798 2.4750765516310445 3.6166818430974375 3.144062717147116 1.5789442222950925 +4.58962817456049 2.403014642333228 4.624259228401886 2.835722627970081 2.824914496122589 +4.3511417571595885 3.850324173551738 4.328328997444119 3.3805739122299547 1.0719412080893778 +1.2009914982326828 1.0703139692993844 1.4328893390285353 1.7837398083583142 0.3743964054275083 +1.0605703802520088 1.5927141689298177 3.3944762213094717 3.006989864612305 0.6582725031890792 +3.843760928767504 2.205311918564493 2.189160775521685 2.597413562752503 1.6885453791109546 +1.5966583473010054 3.7051011846353874 4.4842289150571215 1.2028520681072212 3.900380136602781 +1.5057518533376868 4.19778146053201 4.757991364023308 3.473010191015936 2.9829850856137754 +1.6988878331569173 2.410916783451945 3.385140101716257 2.4486526972664246 1.1764326945267303 +3.9030721088399125 3.422991926818443 4.514950680877828 2.3578690050663607 2.2098593478525674 +1.8060272525206176 1.637651472773178 1.6073202419155392 1.8080438993155652 0.26199311030178124 +3.329783755840757 1.242305747285891 1.93027873753802 4.373628876546216 3.2136465795092595 +3.8376678208799575 4.432156034287042 3.1289094141774654 4.290140458943748 1.3045588431377633 +3.5609437191089373 4.311384675025046 3.4048471428754676 2.860215017547071 0.9272463428108031 +3.979919443112187 1.2000025122677296 3.228523598755811 1.4630883227038676 3.2931291891336834 +1.4617330616813922 1.3450264942949066 4.738960754703248 3.6738429191968214 1.0714926161131637 +1.554431321804925 2.523103392855052 4.096024528259425 3.4637912596262908 1.1567387290132027 +2.6727211725902795 4.435645442519871 1.1195367865828731 3.5366948466648203 2.9917478284317185 +4.9102546769438025 2.7498819533345347 1.2017497651404696 4.966377666851111 4.340464669047911 +3.68859744905201 1.612285962921634 1.8319669381569041 1.486761887501197 2.1048125604041656 +1.3944133704591453 2.692105155985861 1.72039087115754 3.1820504509481355 1.9545978352124347 +4.586350947749487 2.21110197437021 4.355186876609324 1.9915416679758264 3.3509142570103756 +3.7181892625424076 4.7428924458712896 2.978026903690874 2.3225266627199446 1.2164280413724813 +1.574572057544541 3.5880371831207225 1.9292339941663093 2.57261922572769 2.1137611899414748 +2.832365009565879 1.913048379303718 1.6123018367447424 2.3841560892628735 1.200375796909825 +1.0362963273604069 4.406070444752466 2.752376212393129 2.2433934612719826 3.407996631920912 +1.2010001138895339 2.9475987671566526 1.8854859502472676 3.4221155861274033 2.326335636459114 +4.771329644332361 4.355078450667616 1.417018988964596 2.6384249176220242 1.290386569515833 +1.611708993969878 4.647894484893449 1.896388172520723 3.6762743809735983 3.5194342230443176 +1.4014640089281025 2.8216636920664526 2.4726721417903703 4.647901731742519 2.597805017507985 +1.9700021991094419 3.5726151044868453 4.582328613368478 1.3374521207044907 3.619059487923008 +2.2587679963535714 1.797952161847172 1.9199135708229047 1.1027540749475553 0.938136916996173 +2.7219032249893487 1.1743364802400698 3.103781408858503 1.1847832321137441 2.465262020922642 +1.9858201200615273 3.6357432885460104 2.5865965696470896 1.2467264110234937 2.1254407787261203 +2.225276493608195 3.1499800835336402 3.7061938700820174 2.930822272744867 1.2067633749738058 +2.1206231466102587 2.2990236010349108 4.085653874100498 3.5768247223126033 0.5391973922860821 +1.2896338040518174 3.0658775081259915 3.9161570320706987 3.4747004165582873 1.8302802079580096 +1.3918041326943218 3.214035778864581 2.1849000533890064 1.9588103297811967 1.8362038926615498 +2.760832706843884 1.1516586543199159 1.1517772551262642 2.1234432061268813 1.879780798830104 +1.7165449787052718 1.1628331557105205 4.821496939718999 4.0515849775503066 0.9483465676716594 +4.66137719353751 1.0126950706721423 2.3057347919655444 2.632969192648675 3.66332684683032 +1.4359117139131299 1.6415260323221972 1.8823679602813477 1.2875325575673262 0.6293698469554904 +3.651366125227915 2.5564502620238168 4.227594773318714 4.465883622934575 1.120545547198875 +1.0816025730099215 3.3066836980018275 3.002258148961346 2.5708303990985204 2.2665206630752226 +4.934597405189469 3.11311939045032 4.820783125994668 4.133948043737507 1.9466701282953083 +2.805928658771364 3.7165073579883785 2.497049762614444 4.150846227143054 1.887907919776566 +1.0512913540955529 2.080291275268284 2.0170955118799263 4.281068281387228 2.4868481133442883 +4.672939584986331 3.801394403246286 2.239807937468311 3.0399084493724935 1.1831110822588145 +4.394845355321319 4.00454131353141 2.180262116519016 3.9214049498715697 1.7843529951140544 +3.147122327101378 4.462554767304835 2.3598488565782536 1.6354522778282474 1.5017033355640967 +3.8603105064870786 1.3692545986961058 3.2094207440106657 4.75856515793736 2.9334634735991836 +2.373244969997309 4.738440075270811 2.100336043855689 1.3103272263370145 2.493644284529569 +1.8682141531640815 2.00834776298182 1.7254442796596927 1.9691570836971182 0.28112872399015854 +2.6837222025060945 1.767745617832337 1.0368439328938122 2.538928671643971 1.7593384171491095 +4.232617095509353 4.498182685696074 1.089768652771622 3.198583775086878 2.1254708426126974 +3.3026749275373555 2.5147465671935083 3.5194977589285825 1.052047973654985 2.5902006763725596 +1.2989974176714973 2.923422691653015 1.9845554162875425 2.196917714328935 1.6382476053330124 +2.13383794093605 4.783720073927229 4.170833210039808 1.1982340045405162 3.9822382343703273 +2.9416802413192675 1.5826163635965593 4.5006313357025185 3.552214335933695 1.6572716823687 +4.78121849099769 1.602138201709952 2.7351695671260448 3.8128759747178878 3.356784560662528 +3.952645893593216 2.372669776269303 1.6690165415521085 3.647350943712761 2.531823757311376 +1.1144547654662125 4.806819412095113 1.9090767210152864 1.3646265751066426 3.7322891963317777 +1.539318709009168 2.5356344500369428 1.8259797643922773 2.735502992093983 1.3490283753682324 +1.7677669373347396 3.133112680205858 1.6268304186374571 4.486306798949617 3.168718063687493 +4.540721351941681 4.3586255144977555 1.349992481022992 2.2462631135481437 0.9145818392803565 +2.0968414041712693 1.793939780200597 4.745926386455276 4.474016057831751 0.4070437576185439 +2.6066799610678055 3.0203986215260477 3.134056543228306 3.1704227540706 0.41531389490647724 +3.184352627636977 2.6026375248874483 1.70687723016187 3.4180728324738707 1.8073690409373582 +2.8850598376599415 3.627627046041365 3.96930259673662 4.680631302869495 1.0282969352925497 +1.8155570044162914 3.708767951449641 2.4973108849888335 4.256374818441813 2.584289769345145 +4.8476852012869145 3.1050363546266904 3.0145440414987834 3.811197560316144 1.9161111219890907 +2.604118979294307 1.8534683995664953 1.835898876917267 2.4861518413174215 0.9931289999576532 +1.3463796887244444 1.3563154809644091 2.988879209145083 2.5257032131363903 0.4632825522789306 +1.0648970674478009 2.0297565111234848 3.114271739799843 3.648312124021692 1.1027932163510845 +1.5933881731557809 3.921248424283154 2.7890779634671214 3.8281628382189603 2.5492412058722183 +1.9950277827077882 1.771999509268264 4.749855733200613 4.504006310442689 0.3319390748673916 +3.2799888810908855 1.741032606779362 1.8253797593235705 1.7520515259976688 1.540702256779519 +1.7102451875097042 1.992238191829657 3.6712116271073145 4.193305969098873 0.5933823020827222 +4.770513677900707 2.394744099538297 2.0192456397926857 3.1961359259898856 2.6512924839062233 +1.7316961685323355 1.351203177789035 4.432230126143454 3.1302733582790854 1.3564167285139968 +3.683527191051342 3.8120880584274848 1.9030031389701634 4.162018276800911 2.262670389068849 +3.6058416228371017 2.5293169542109513 2.7957524474583915 4.225176307458871 1.7894574411534112 +2.3221552162051307 3.351855466304734 3.4176305925058736 1.717954923442233 1.9872543835810552 +2.6710266863031062 1.1254361631568264 1.7348310083145515 4.664581010136489 3.3124439826833654 +2.2521501515427866 2.7042196118925217 1.9519173983702198 1.9073886377777307 0.45425720412647713 +2.3911603078670987 4.553222356311448 2.0384225826105036 3.168511196259203 2.4395927069947176 +1.5610657581123029 4.050702323942255 3.317441244764788 3.4819703778187465 2.4950671464994767 +2.394816557297334 1.0834039260927542 3.383721315778719 2.553775651630771 1.5519706487949114 +3.448289597418479 3.4253574889145675 2.5603648605033507 3.8602258317086284 1.300063239255369 +1.4215651690894577 2.111268302700627 4.141821340490228 1.9607987606838972 2.2874767553219266 +3.7087209490217883 3.790088569511906 4.045092437121028 1.5659090021836266 2.4805183316662336 +1.6713369133557565 3.4079988242375414 2.8462797348940048 2.4350887137996997 1.7846771832844588 +2.3727308099318454 4.564152592623898 4.000288874200226 2.4295486480072213 2.696211098530319 +3.601490861348639 1.520785758672028 2.6462769900890213 2.699941621093334 2.081397034908361 +3.311719772736491 3.486923840404117 1.0193555563411092 4.785489132914057 3.7702067028105266 +1.0100916876037362 1.5376862137025564 3.7647212220996 3.4254179678547967 0.6272819799026209 +4.436477775017952 2.6401222045975663 3.1506554862293794 1.3283738621149142 2.558828570452816 +3.3923665482064433 1.5221661733051688 2.180888152867214 2.2554930016000525 1.8716878280673084 +2.0306719286397454 1.3429290608011484 2.294724598603662 2.5542404630972446 0.7350773674836611 +1.1636672704995124 2.146071306754876 2.3447745252355987 1.7173442904366412 1.1656699318377841 +3.892767062180291 4.906652285361814 3.2276829215055356 4.769757504373772 1.8455235747380996 +4.153392427858943 3.0168981742636736 1.5010829990767416 2.899035919274074 1.801635799917208 +2.7429987212781923 2.5716176070729424 2.468406431220867 3.7082452441372022 1.2516276476332808 +1.191387170838774 1.1334157243531275 1.1509034960080582 2.680278498635675 1.5304733213192123 +3.8442914525226883 3.958570088401146 4.735919551467245 2.2590933284340378 2.47946118052354 +4.883555990811422 3.778011051388985 4.056395285837775 2.758887450203053 1.7046278762873908 +1.6440880178459003 4.387595121975342 4.294215076836329 1.935808033393318 3.6178605574248324 +1.3176980714659479 4.447125283289555 1.0957010861368408 2.9478989960613617 3.6364751850701307 +4.05217693505317 3.3677471695561154 4.054821071717376 2.526226334184754 1.6748271479501333 +3.390088087585313 4.407571472952197 1.0634892681967276 1.8051845469665246 1.259120457322119 +4.812990954409938 4.182779925037563 2.3250504724919714 1.745971986155169 0.8558608735540553 +3.9941414355353224 2.538747666811557 1.4000854325264238 2.1532902745251055 1.6387460315894662 +1.7021339016550603 3.8455602644334723 3.9701459754123545 1.0988594281453121 3.5830940553061383 +4.664117827204661 1.8560402983837707 2.5355593809778734 3.113367850384783 2.8669080967458997 +2.354499488182288 3.711364768544488 4.11647562372759 4.510450415649487 1.4129046414115476 +2.166091673899275 2.248521006230828 4.160267621394253 3.8212955493189815 0.348850484413636 +2.0268094777387202 1.4718584331598237 1.3216262396553162 3.3032841207339003 2.057896649377726 +4.207116025873579 4.050430856234684 4.8742152730109005 4.160696648880277 0.7305197255146688 +2.2293236460610437 4.891350513952529 4.751830385102404 3.9214836806213857 2.788523389720559 +3.886269527226646 1.7586699383795006 4.820915857863007 4.944963179251815 2.1312127412359096 +2.7609504007486367 4.030220417029768 4.618685814210769 2.9003192254706476 2.1363122682624525 +2.1050178162288242 2.4407576683546397 1.7529079686778197 1.3855747041898216 0.49764945042155323 +3.0636557513291223 3.239447877183846 1.9421022588393724 4.539990853478654 2.6038294916659552 +2.4009190023327434 1.9992036634164019 2.9678149422902003 4.616255758805398 1.69668274555792 +3.821732377626855 2.8518549297802034 4.0175442919618725 4.419385856256966 1.0498280366977548 +1.4171099956743887 3.0668899545846986 3.4858076938740497 3.146191883352561 1.6843731212466766 +3.9587205576074647 3.675615432838991 2.793500305187104 2.6071840677085554 0.3389133399828575 +1.8332204765817965 3.237933087896587 2.824364536330586 4.411688729825007 2.119626291505069 +1.4795833385240793 1.8576153114594205 3.9453299432633124 4.923504603243348 1.0486819527332607 +3.650979884157135 2.6040865142399072 1.8378361580186766 2.9313970335738184 1.5138894003597416 +1.048833852826741 4.606347550349533 2.4397021667478485 4.352029092530518 4.038922873630503 +3.2782335504514197 4.0493305072549965 1.5486670656970722 3.744040740548031 2.326855407845606 +2.6253483033547313 2.878966630200681 1.463518329700014 3.3234779292555796 1.8771712675435448 +4.756069432910227 1.5835885952765292 1.5922973412235772 3.511275038403163 3.7077095446414994 +3.1464753817460576 3.3779603969316474 1.2801738059714847 2.7653772728185433 1.5031349407787693 +2.3754326010012505 4.40304971796482 4.308578035384194 4.71964884471976 2.068866932234032 +2.241245050159502 4.634235545867929 4.193648789835679 4.9271662811035615 2.5028886156892383 +4.128017849694767 3.229956368991771 3.707551225124827 2.4393085084647828 1.5540122301589863 +3.798531441646969 2.94206820198563 4.705267419507529 4.6069527566284165 0.8620876137772946 +4.865023720028081 2.6971338532686064 4.541389914980609 3.6014986133469917 2.3628673541451595 +1.761271559312906 2.5128875725586157 3.84797161939505 2.8244429205222112 1.2698573261527066 +1.4422538946808938 3.1024046358577375 3.7698771644229065 4.904667069999826 2.0109322746500684 +3.214997998700197 2.5794019825299053 1.1127696786783106 1.918591198967941 1.0263189652020648 +1.175476716846084 2.4217484622044934 4.95707036379948 3.596307120070563 1.8452289475190715 +3.3269303049790953 2.286041050775624 3.238774934725434 2.188706850475337 1.4785443588465406 +1.9461201095353373 2.487465023100224 1.0161594409146044 2.719588318369656 1.7873791584301164 +4.948322397143849 1.176347622749896 3.9767441296116317 4.404008540212469 3.7960964918229343 +2.706915443014955 4.2430040905238275 4.900349869685584 2.2641001359893616 3.051127822858138 +1.6798851753037325 3.4644831590557676 3.1633105939793604 3.639893500649523 1.8471386603452407 +3.230681175103821 4.768738941015687 2.92231239212124 4.130486617293332 1.9558391165052367 +3.165247855331317 4.296100214858216 2.6071559146655807 4.112049444815224 1.88242704935246 +4.293389235615221 2.7789947230080783 1.1881010019330436 4.00145733287812 3.1950531427009734 +4.920010438520698 2.7492818770339347 2.3072241585037947 4.994394579568258 3.4544098424330256 +2.83041358751246 2.8197919343491895 1.8594129336489171 1.6558898508512723 0.20380006071485313 +3.3728228009197743 2.336866012323745 2.2696897440816235 1.162459662722938 1.5162997463904555 +1.416618678692938 4.667789244745585 4.176295136046716 3.1519590180740806 3.4087203657898275 +2.5706466625942896 3.7919841002597776 4.668843596284711 3.672994823114127 1.575874333717209 +4.281050476153792 4.182880784660078 1.9527045112254107 4.079748600365477 2.12930830211918 +3.1714042572053094 1.4636816817765181 1.7565135731875965 4.657180810453378 3.366034286215196 +4.900548294774727 4.8208636907096585 1.518323312835126 3.129681689012749 1.613327447421258 +4.333704564501516 3.1966964621449327 2.0424531029371784 2.284575300090958 1.1625018637314486 +2.519570362423882 4.253859315929168 3.7244157063219054 3.4163444911670764 1.7614386301706442 +1.6996571851586797 1.6510742949330481 2.3801114002462453 3.2392279599499423 0.8604891401870168 +1.3063849537229535 1.2944864364261512 3.4458975459034455 2.740825253208869 0.7051726828511218 +3.76055952528044 3.1636876549937054 1.9959870821293824 3.460967232966104 1.5819048239022369 +3.162498840137904 4.506956966971471 1.017573852410596 3.5786287516354522 2.8925023511922094 +1.246201424614266 3.0730474545815856 4.071645819905667 2.2772186486001003 2.560729444968182 +1.3315785289214292 4.342402932877947 4.620541326163549 3.969034902772659 3.0805071353885403 +2.0139786791636842 3.2590849397995556 1.4041151945279622 2.872324462006363 1.9250787135553975 +3.6724830122771928 3.3503446819686924 4.253259109937656 2.4686293778526784 1.8134708115918623 +4.461456573200561 4.042701409068152 4.751939620646067 3.587097282735717 1.2378261427502697 +2.341179757271686 1.369876714337869 1.9631114403846688 1.7569847938503433 0.9929339331617082 +3.3933009829650604 3.529614656440645 2.631194971681474 1.2468621150228723 1.3910279923858375 +4.2010166806003415 4.031476221488669 2.355987352812377 3.611590781174047 1.2669980018095435 +1.3713054725868665 4.176816932880322 1.3276493400796427 2.973724620499424 3.2527616547553833 +1.0765793195281574 4.409642948384323 2.122731908109856 1.82697059388456 3.3461601738404734 +4.25115465378048 2.998258434410119 1.5095715643603587 1.8080050313305267 1.2879485512707325 +4.04154401990232 1.4707331363331249 4.6133253137094385 3.251153759350918 2.9093951162709635 +3.1406088510727193 3.3498414674817782 3.6050452063505647 1.889270489526179 1.728485223154419 +4.047063634938761 3.493671168302579 4.417948064381276 4.359573056897798 0.5564628142368309 +3.8584456401193368 4.983471481607374 2.685654111677355 4.51672842717929 2.149073356799797 +2.0112696365616443 2.9518918592951335 4.7007622883101305 4.330667598055059 1.0108116766515352 +4.881088329344228 2.574519644172911 4.464386227880205 3.0925670671211067 2.6836815960986757 +4.427971917005272 4.486478846237601 3.433021680364405 4.594460614797992 1.1629116299987814 +4.828630146089307 3.815707915029383 3.250743411661332 1.1305334239976839 2.349745058078451 +1.9966476258393668 2.7822754737236313 2.429083978548788 2.2556893541965732 0.8045351522000183 +2.219435945949212 4.51580277302472 1.1800638053212746 1.3146546579114795 2.300307653791943 +2.0802922762604186 2.277860040467219 3.2926655977250454 4.23063596144925 0.9585517329172125 +2.575986103325793 2.474739017315389 3.710025691389553 1.0313340848625532 2.6806043526234524 +2.3300113756400322 4.116881946781282 3.758532651024811 3.6437883966419653 1.7905509436831257 +4.350024298936466 3.297294835174819 3.7421251937643785 1.8660894730998505 2.1512204324711033 +2.4888513532513783 2.1721912339322618 2.69688759449389 1.6022481802418023 1.139521425161173 +3.8309482337453464 4.4390885605497346 3.707132096561758 3.2448893166173627 0.7638737099131442 +3.167523142429672 4.919028893079943 4.457688430410183 4.3176614006052985 1.7570941817776724 +1.5525926135610315 4.618295321230862 2.0216214963576196 1.151451276440087 3.1868055013517 +3.0587464384996657 1.4470387407206418 1.358248686291852 2.8946066608501466 2.2266561317520557 +4.968817323591577 3.9144969035386348 4.879992061547833 4.948062168531484 1.0565155406359996 +1.3235747969749676 1.4863656168260895 3.2055954142091463 1.4899906435326393 1.7233109354367222 +4.8239394740103485 1.8787071078495687 3.7928838690467708 3.860139732436468 2.9460001768230293 +4.426868676778824 2.084840770397353 4.7272002204182 3.612444051576224 2.5937956801261 +1.5388461607859232 3.89954449038348 1.7240632869242791 2.3635827399522578 2.4457885710269194 +1.805797855261682 2.40560215470064 3.902951578993158 1.2077820849243879 2.7611055393418718 +1.393314043842 1.8052363645929583 3.2831281499726317 1.3894211356857293 1.9379902616608449 +3.1652130604049526 1.7725313654988355 4.103682989541819 1.412142409644832 3.030503752935935 +4.195316491081216 3.758908365737273 3.5690656968327077 4.9962571770546305 1.492423389351781 +1.556271713619651 2.97265722645089 2.5447242265834595 2.076190428369456 1.4918685736441573 +3.520464025480798 4.673034587429187 1.504621451147568 1.6322833017400527 1.15961909624097 +1.3104103359619406 1.0014517786320778 1.9722830742465 3.2677328672882493 1.331782848830567 +3.713744908120854 3.4090496013386553 3.8986473591910844 4.4165225897774825 0.6008610358726991 +2.567560327836649 1.7751667494742671 3.780705330074748 4.05060984833506 0.8370997742248355 +2.095697537021976 1.5722484936234542 2.8274797646798797 3.0743915350280173 0.5787610244058243 +1.4738451086897841 1.853800242074814 2.22274904502224 2.793661223792786 0.6857890486542982 +2.146487632971591 1.7969570766257568 1.1960746869648542 1.575078628654683 0.5155730769113682 +1.099229234567705 4.056670567703933 2.8958673225136256 3.1476556632791843 2.968140260750503 +4.154536455239664 2.2907479597176845 2.6082978266812296 2.7504322920305637 1.8692003002033315 +1.6846951734431737 3.303194272233525 1.4108571370029916 4.409658774125127 3.4076899201059327 +1.193464978418311 1.9271724388461902 1.8193883930891528 1.735943279349741 0.7384373531278814 +4.210436491211876 2.3358780669109565 3.0551646930144023 2.764728950224691 1.8969244072464666 +2.218882754723383 3.2546566435553617 2.656820620293913 1.034748991926738 1.9245633053604285 +1.8590641945588202 4.866514007637807 1.9114138765661512 2.2771744697810945 3.029609742151253 +4.311738456283894 2.8407004600878643 1.357928846759883 2.9319838862932315 2.154437758147764 +1.9989401202124344 4.075793226048038 1.936495856189632 4.125260605074737 3.01728519520132 +4.311829608724034 4.367796604702135 1.2735987578053667 1.4926798450598655 0.22611684464326415 +2.279844555805501 2.7125137965028236 4.800062738439616 1.9824878436137205 2.8506018592217943 +2.653968713990202 2.2532956578402517 2.2777663296687662 4.049535983676857 1.8165094562893118 +4.9229988416148736 2.333613196757622 1.513234559709458 3.9315307106152084 3.5430317937154294 +2.7290313711788787 3.9744771218370882 1.0980748649168173 1.83781845195236 1.448570223493774 +4.436154362413346 2.24155207661461 2.815701738089767 1.6271128948083429 2.4958009999208888 +4.403149764045514 4.05253090308085 3.514555438979901 3.3539033997466303 0.3856717041396304 +3.9217820450216876 3.0679930660146075 2.1594468403238936 2.6075205787916054 0.9642228454970271 +4.0884526780325645 1.6684982891879638 3.8204415549790833 1.1769631993902037 3.5838745877269664 +1.057007870998787 3.4428173970612015 4.7375511320072015 3.352651651607923 2.7586289466799183 +4.544016081416657 1.2681013772223824 4.157511823902393 1.8732193250116715 3.993696203975044 +2.5020242038975584 4.910514913257035 1.1236540693961619 3.260955071223271 3.220075009915465 +4.075737926037441 2.9067616325235655 3.8685596353932863 2.011720231897343 2.194164566565737 +1.5775222304798717 3.388378273159266 1.2140871840028002 3.764914619479933 3.128245548688805 +1.5605343190936232 1.6374711701209659 4.734875328602389 3.7150298172480953 1.0227434409838585 +1.301677906801288 4.11155999529926 3.6873483491414296 1.8404343793636455 3.362518187760782 +3.87622159054048 1.768292216976341 4.950539035730674 4.275420940169234 2.213402513527309 +3.9681347307283734 2.057041583485451 4.652695007283688 4.9816174209762005 1.939192350353148 +1.2420251502342068 4.2503181280061995 2.336484515809713 3.1295090058717743 3.111063239786436 +3.6061834649936233 1.3079478444575905 4.258061408111959 2.6114059314941866 2.8272533006746934 +4.501402110737911 3.814291105370077 3.252899061936722 3.178295257888351 0.6911492322762743 +3.9413483895223598 2.367317774129477 3.5337040677125446 4.231932520477293 1.7219452228350216 +4.02369145953501 3.4217575747643525 4.437313789813248 1.507239144959323 2.9912642521266744 +3.6079185853048314 4.055107091599931 4.971805366855422 3.877278169668382 1.1823566913349628 +3.704287815120937 3.1405093965576873 4.583074209167359 2.033753960993308 2.610915516248636 +4.361388200283095 3.785504137913159 3.1805482236720684 1.022572068663524 2.233495811251313 +4.443818983259553 3.5267309538965805 2.331482624635581 2.911469776020652 1.0850970230226558 +1.3348689522176538 1.002677803145167 2.812854707335388 4.548036553019193 1.7666938040058768 +2.6541414230801976 4.0137105607119405 3.8515972447204114 4.9255056434644215 1.7325436470385516 +3.0728711468636836 1.4037344232270788 3.715999763677379 4.634395733101413 1.9051164160876497 +4.875455970798939 2.3432097931102915 1.889392017053603 1.1830230213372266 2.6289214257044895 +4.4035632208181035 4.513457743910243 2.193527588022406 2.373718992478717 0.21105863745790332 +3.5344007347377566 4.769241710042706 3.645107510234115 2.1881234551490096 1.9098782084374686 +1.620149885149575 1.161456326672977 1.0574276056280967 4.490813369113985 3.4638905267770084 +2.059029907589511 1.1118402693808949 4.817016627292572 1.2052857250426428 3.733867742836757 +4.381256174064108 4.1147408146453355 1.4019977420757517 1.6422362670412864 0.35881051501277544 +3.481405357920772 2.6960116002193133 4.445225490094019 3.8264473543403663 0.9998648588300242 +2.6296971370680993 2.6521625139374803 4.011561894525937 1.939801002224288 2.071882691666787 +4.772226435720401 1.6284774632757522 4.651893238518024 1.8101589627507622 4.237760174410212 +4.46288548947728 2.426522676267273 3.66022389145927 3.779446853469411 2.039849901756265 +4.794255382507659 4.8857892558218285 3.4413454507180212 4.300589166820297 0.864105441265788 +3.6292279224713564 1.5130480193786537 3.0296212963877047 3.63681794866789 2.201568794472184 +1.8525265381951086 2.779146366859185 3.815190602270486 2.0127077118518777 2.026713812338896 +1.1585515323518458 4.915220850460935 4.913513101529739 2.9084681639530414 4.258258983120232 +4.834453758282342 3.006525907321832 1.5640568831870962 2.5941983664019332 2.0982163148153177 +3.657834214605283 1.532680919611086 3.5023399271042472 4.949016004844356 2.5708263654183647 +1.0651776727493663 3.3669180965829177 4.509465245783981 3.0045580779288885 2.7500462837143473 +2.6290072170083105 1.1411423800067517 2.0370355354762486 4.110363725617188 2.5519466211538946 +2.156653454382272 4.648252739878612 4.404617142400607 1.4947637682711448 3.8308372007197704 +1.4175561049629173 2.5632889339148925 1.3938642309175924 2.489951781683582 1.5855950410752684 +4.734297352186622 4.2846816009248165 4.27860864488179 4.9933258385497234 0.8443784641422849 +1.0439161581205192 4.428922774389173 3.2782307282221557 1.6557727884640596 3.753750066062823 +2.079374980512881 2.3824615899081785 3.2917504095714656 1.5218858627389231 1.7956285826778038 +3.8003021546317175 2.298397938833858 4.571241546546703 1.9103573683960446 3.0554902852020143 +4.512035400215916 1.9135760070378636 4.138100158996823 1.2444516753475017 3.8891120792439593 +1.8635777600976033 2.720817538631947 3.627456533993252 3.3809807609027227 0.8919699236085175 +3.008473300481459 2.1588812373703923 2.307620056921954 3.031551540033518 1.1161915005685301 +3.2457003847618298 3.9478629136694283 2.7349097108074254 1.8101107592359607 1.1611568876898568 +4.712980996790842 4.847067303878114 2.8783219722803075 4.666338578463497 1.7930372337838258 +4.870046887992741 1.3992359640913246 3.9421421481715413 3.9251496024847707 3.4708525200708715 +4.013384456205344 3.0634949073330677 1.3025199965068386 2.916890728810261 1.8730945027880106 +1.459979834402728 4.547517102141371 1.2264952395139237 2.3946634156555224 3.3011366629427803 +4.35964821867705 3.713134402836049 4.4876703389902985 3.662753428000214 1.048078252856491 +1.6284865412192229 4.009204758792013 3.313671788883631 1.9222252116675898 2.7575247612177844 +4.967317436066575 1.524152788361214 3.5627072998530642 2.391702530614078 3.636844093549851 +3.1978963163494605 3.1103484626434335 4.5009722935586804 3.186165931180723 1.3177178746750338 +3.015641958792589 3.0215104189215567 2.6601615269853642 1.6344766507559725 1.0257016643010715 +4.0618257671859475 2.628329115453414 3.226442113217197 1.5484935917912481 2.206903688674228 +2.059714122100631 1.904573845245622 1.40440654001576 3.858860857839557 2.459352456193811 +4.129923682145829 2.5764758185591283 3.75180850257422 2.51569549845976 1.9852394374037003 +1.95959064133176 2.931802272452073 4.086884986848547 3.1455161171365114 1.3532814949405523 +4.58374457729721 4.065376247722428 3.9153914423361873 3.0254311628244674 1.0299199115536746 +3.0097186790874906 3.396292225392517 3.578364067472723 2.7020864896939574 0.9577585812827079 +3.6210861650438773 4.27439462006177 1.5872568462582843 2.336649796046486 0.9941839520884092 +2.638830106707215 1.9146119804967348 4.566216724858409 3.737940734374651 1.1002422509355243 +3.3994163618174533 2.1325848351438084 4.768206811267231 3.9837497434809253 1.4900453040676875 +3.68732808394619 3.0056431697788906 4.659532065666288 1.2474651853836725 3.4794963310405747 +4.646875198927109 3.7973526205284935 1.1328615389628087 1.3116623540939467 0.8681349795398129 +1.0563024260303315 4.061963033282427 3.155205963228396 3.5620104867669053 3.0330653811545885 +4.960452596073967 3.864676538545672 2.7517985012385795 2.140650366537042 1.254682115438577 +3.3573926562269945 2.4385742760073694 4.246995378636745 4.093541709525349 0.9315445477233847 +4.7106314594814735 3.0803649413359664 2.2490988358805883 2.3326233708077035 1.6324047500914307 +3.7938547818500994 4.560609818852766 2.795855900211571 3.7674676496967034 1.2377167198137549 +4.333220623711298 2.559605608884138 4.117717578888672 4.78784008656492 1.8959890284795025 +1.8677437747187793 2.1888575501870062 1.6319598843013678 1.2907097219715506 0.46857841402009276 +1.9770882249384902 1.0308530107689151 2.5743960941740216 3.72470993835151 1.4894908595358796 +4.543985401414705 1.2367739834378657 4.563062057402627 2.986334949892966 3.6638389340624897 +2.546210176775643 1.349657950295604 1.0178994725685149 3.4662082604246742 2.725060210598664 +3.1957831125118656 2.811372187197791 1.5059577102548425 4.982364841435267 3.4975960746236736 +2.724217741717718 2.9926014293585728 4.093167458749759 2.033523380482011 2.0770564587740763 +4.516401586783479 3.0109957627796713 2.139303355198946 2.608273859532328 1.57676251505396 +1.0621190680444559 2.8247229757710133 2.892819202929474 2.7213084997826926 1.7709286989675315 +4.740536170684878 1.5388173900647288 4.482182118743198 3.5455595340529467 3.335905426766116 +2.9929160131833665 1.5504210502823952 1.3622257706389167 1.6646322963122175 1.4738525790473318 +1.0177106000041514 1.7014463255156493 4.199143374312278 2.0166533783536793 2.2870848529952053 +4.985756854124441 1.130418935489884 1.8718953742765967 3.1185556669372576 4.051887504874513 +4.409995929592535 4.315462168002805 2.5948543462070286 2.5502950591007343 0.10450914863171121 +3.595450525337462 1.9709180399015302 4.704971275373088 1.7462701476424538 3.3753545235235918 +4.241333294159697 4.271291423164213 4.991929672116795 3.9272380137063063 1.0651130536155906 +3.6359525064066145 1.5087432277552812 3.101920949874341 1.3481293394917317 2.756955626742794 +4.235425894150634 3.389659223437642 2.826690844824258 4.912822929969474 2.25105938126058 +2.875502587243672 3.2751871876626497 2.5939760126720675 4.306503658661187 1.758550175027461 +3.91775088793797 4.324744862764527 2.0824188461154742 3.744012458925409 1.7107125502771912 +1.1705929394579155 2.0015388047628107 3.393588150465972 1.885560517376109 1.721806717732834 +4.22703043320513 4.842925209976084 2.8240681995943118 2.1564880228860694 0.9082894188459709 +1.1601830061051919 1.3160130481038461 3.190873144022367 2.2376110337838835 0.9659149304186314 +4.944161349154202 1.0104379255039473 4.27310297540567 4.744726371163857 3.961894572196636 +2.9952336579675305 3.862283565211962 1.2340462921917128 1.0828346420158592 0.8801366398471784 +4.403832195647668 1.8215922297057503 2.9558682247557204 2.0240769665201066 2.7452136876083117 +3.701770813175054 4.301168512458908 4.1603972870850425 1.8045910448137072 2.430864178236079 +4.461888312341596 1.7821986139458357 2.5479174621972436 1.2324967798346247 2.985141278277412 +2.3642532259074795 4.486292709674525 1.255535945703226 3.2871414204478557 2.9377665624890383 +4.949934816546574 3.1191088638030524 1.2038760685528938 1.5860074807640618 1.8702802157531704 +2.5570454802517113 4.0426289104524 1.2621718393157373 3.4102645931714712 2.6117543160210066 +1.493194650907275 2.950291386433733 3.8595398301196364 2.07753166724902 2.3018870496224113 +1.2288539149863422 3.2845260868095587 2.1542261897294708 4.031511594219062 2.783880128151718 +2.7691744689289965 3.758889232610109 2.019872640689293 1.753234818089369 1.0250029472587816 +4.5606165630854845 4.454661677385196 1.8857817900579739 3.331478742457864 1.4495744603096767 +1.4331793905962464 2.835719020387082 1.080344937518483 4.823662552182302 3.9974422043834776 +4.278155184302324 1.9842529162189808 1.072960829323573 1.3091914869435017 2.3060339414495727 +2.511160607095941 4.625151591190248 3.7368308859969255 4.397531921105209 2.214832666055197 +2.627465105627298 4.109365540749087 4.381813108498021 4.980937532620635 1.5984301596236226 +2.2844850350997503 3.4200270225955984 4.556714112495602 3.231500024985495 1.7451784960574277 +3.0365704157966222 4.857821100153184 4.101098800245261 2.8923784681322986 2.1858542715681013 +4.828191986143461 1.3082833968305185 1.7616478367172745 3.9356912364225582 4.137175507628499 +4.7896740045969235 2.457092390922616 4.860879114906699 1.8020146256755325 3.846763437999649 +1.771321744019533 4.73315103983516 2.372667488641397 2.4626380164484143 2.9631954834984424 +2.8350664137079655 4.044164892403443 1.9386187318673223 1.8551930917357224 1.2119731715739772 +3.053982622312795 1.6927504817633596 1.663224939183328 4.758143834980611 3.381046570520417 +1.1685761327518813 4.98761117849351 3.1672887008490505 4.070633389010975 3.924418467267874 +2.907191101417476 1.4334015419359738 1.199157357631973 2.0497005369472285 1.7016108149387106 +3.162941606219227 1.8717207582843844 3.3593224846565994 4.680429603322642 1.8473157004507015 +2.847009224359153 2.729183169669431 1.5360283871972498 2.479778143111092 0.9510765379038545 +2.6372318057307496 2.91755667956656 4.364703981436645 1.70787420819364 2.6715775262719856 +4.531848238572246 3.844991291388237 3.735462698058569 3.519398505275004 0.7200390276215238 +2.214385012856157 2.5573563215592756 4.01291574634599 1.2437878734470846 2.790286453943241 +1.562028438760597 1.5799957542264633 1.549798365964921 1.5041901155116673 0.04901976065278864 +4.919886095526114 4.39753020851204 4.700676463129842 3.774262330460173 1.0635312961583945 +3.5276575802388868 2.990650446650108 1.919584636089822 4.809067762825018 2.9389605987853327 +2.794263664066494 1.5209931140285793 2.253946039661064 2.2381398085552093 1.273368654606994 +4.698342948669246 4.691374229540013 4.0163819886006635 2.1825223365121285 1.8338728927067396 +4.351119433513999 3.7599782249123654 1.3817905571803464 4.598957083184879 3.2710255860434767 +1.3230687559526833 1.3398441472684635 1.7145349841798416 2.879047315684553 1.1646331542508725 +4.995753216722919 4.758687105233592 2.9614792199892257 3.8373032151093205 0.9073411770909519 +4.950610481105625 4.964906288886575 2.5644853022345786 1.2381012908316826 1.326461049494235 +2.2998614346948614 3.655869143811867 4.997618548936968 3.1066585178699535 2.326904971475568 +2.418279857504531 1.8847369987567961 1.2531495397881507 2.6613640815473953 1.505900454127996 +4.394821560467392 1.7076223594108741 3.011226136596101 1.9944213435814975 2.873139664766796 +1.6970764147965953 1.6433760176323253 2.145650774230232 1.8993378420381628 0.25209877671392084 +2.819643341612359 4.328238302367096 1.7846569602912346 3.7794914076737913 2.5010444274499917 +4.666520671687075 2.09652893673824 3.94579106895451 3.5180293786401164 2.6053478810719213 +1.4477630678139715 3.0549865506929 2.037817468312576 2.2820889195893024 1.6256801240792458 +4.929614038729957 1.6165714886350568 3.6425334083863716 4.489625321500657 3.4196221498877533 +4.510394635909542 1.0446956075385403 2.2891005344870297 4.999688691759314 4.399813395315358 +2.619095689944711 2.005641474397226 3.2980602106643824 4.414552656211647 1.2739236458819234 +1.430056675265575 3.7961761333151953 2.218424622272189 3.1142620110749037 2.5300288371751605 +4.505950069443957 3.795414040964575 3.649378124285936 3.5393242876987774 0.71900854982038 +2.025659111312073 4.478034728535199 2.110680959428067 4.677048026413136 3.549702253775104 +3.9257824099720398 2.9815501023753814 4.210041266808432 1.4558181738166085 2.911583675026146 +2.1312200243627784 2.565361052300709 3.5711367475096685 2.850059420991459 0.8416833982903854 +1.8419602402114137 3.7148365800112972 3.4123836220424257 4.194561892133507 2.029647415287908 +1.61746815625298 3.1170252196952757 3.6820785884359326 3.0879241830197817 1.6129757729101517 +2.0527789864554005 1.7348392343745407 2.5170607053681544 3.3053352234530693 0.8499778831329927 +1.3310996975678187 4.5458842005979605 4.977464585515297 4.998679956259492 3.214854505709173 +4.765121989256348 4.233653647761243 1.6866493571819174 2.3356070889706935 0.8388115018643878 +1.3074454887133302 3.1716291942732466 4.487197355732203 1.8649156113336565 3.2173813008533796 +1.8907018430171778 1.8405388804325744 3.869759664750256 4.8172865402053 0.9488537835329864 +2.5982736614364077 4.094252065806177 3.764560976221118 4.746328881857746 1.7893629053042464 +4.608977168078791 1.3718763618792633 3.2058167364740378 3.6840707390528533 3.272239068356756 +1.4635541285563036 1.9096597652453342 4.626176519997935 3.185803229172858 1.5078744828426498 +4.451731427402323 4.875808945918862 2.7513298803562 2.077397184673066 0.7962581365498759 +4.723548128038194 4.253382497830607 4.812551050736518 2.6007981159782094 2.261173758082401 +2.459218926032282 2.1093165271485774 3.233736564389392 4.67282787156214 1.481018392568012 +3.109945965360478 2.4104069275956266 3.344484569564316 3.2176554492446723 0.7109433810916512 +2.44196053478647 2.774656880951957 2.5115012700227735 3.929813990677689 1.4568108430140867 +1.4486501443840067 2.2890339036650684 2.265647391699799 1.9354638087445744 0.9029208499733069 +1.1677812418025741 3.987428890039118 3.3030264836574967 4.381339145186436 3.0188029177505933 +3.7473241333939953 2.5294866062244825 4.765131549869681 1.4855151622256186 3.498429918218434 +4.428980609029075 2.48735110554099 4.142748183840201 2.7839416895177953 2.369869240660365 +2.6723253485826755 2.4303305937616315 2.061775728903389 1.9859150423412868 0.25360659519533535 +1.0152188904426978 3.090725918617997 2.3059015590706315 4.358306495275648 2.9189202534779497 +3.8475639706864007 2.8686478223236187 4.591742189565542 3.28415474513021 1.6334202614056024 +2.940354908449914 1.3833932403491267 2.2007531790301234 2.662381066878936 1.6239550310199302 +3.8852273321718305 2.478696949489352 2.1668251206061884 1.6667936861343637 1.4927689549521288 +4.06533361278291 3.541900966362746 2.578849266855824 1.9345643619902533 0.8301113021613751 +1.6908288432498964 1.6366386430860866 1.021445090437839 2.3860247968160206 1.3656552833174844 +4.397608383813214 1.405575763642636 4.286929336596172 1.0210484981180108 4.429247887768716 +4.333415701595067 1.249574411190324 2.026130208186512 4.901615091564577 4.216454721557075 +2.195449562940604 1.7629394407648245 4.936502609623764 4.391736143402271 0.6955828552400931 +1.960683286444418 1.536912822228834 3.459980783701576 1.149726704954165 2.3487986960807303 +3.9950284175050763 3.9093740317499734 3.4988178789681874 4.296162457803313 0.8019320739294871 +3.9956398695947324 3.179042203492023 1.7087000737007205 4.057201694003574 2.486421446346037 +3.985151025140197 1.4930619128495404 4.96681831842087 1.7180816741463376 4.094483841395614 +3.7144898847381165 4.615103939254207 2.7611420805323843 1.7172875095679 1.3786725646488218 +3.0757218494245646 3.49672706588762 4.754723019035233 4.475657046750519 0.5050972274486538 +2.8476287654599357 3.850031376465116 1.5360268765030982 3.5665099803151725 2.26443649268782 +3.013081757141983 1.0078163520371528 2.1273873596935897 3.712134520652144 2.555878109197783 +4.4475109212939605 4.07412356628923 2.8360800348240347 2.3172354553187113 0.6392322070730515 +3.9838826547107185 1.7111151942056684 3.1513013432917645 2.427642740159963 2.3851946887869016 +1.0183289224049243 2.7392637328071348 4.772482820155926 2.373600407736923 2.952330172976476 +3.0768577265088615 1.035946916184411 2.1846650805302428 3.504978637829225 2.4307498483568186 +2.596671159762673 3.2366800899930044 2.636212615525375 3.10800770305125 0.7951113352154658 +1.951319079033504 1.2933927165296994 4.760262881887794 3.030214417692927 1.850928087998155 +4.519662084263517 4.089712971753294 3.53342532075106 4.940610493357038 1.4714028508027448 +4.001698133529481 3.5631046137836426 2.9255672502970773 3.487221002133907 0.7126143504837875 +1.2053051715921486 3.206384436347196 2.3241476430836596 3.4630215195118836 2.302466488408301 +3.5087032239592624 3.691452718178804 4.731830922143981 1.2529475993752248 3.4836800299505235 +3.732671767360292 1.2463819483532728 4.494468621679751 2.914105877979722 2.946045394384316 +4.105588483663045 3.548094865324456 4.214235213879702 2.4193113577329295 1.8795081228483828 +3.4074616079382087 1.8331475288684005 2.1917770828699292 3.327946816919718 1.941480487702152 +2.133615758153191 4.124944356717972 2.1501054062804315 3.2477606314846854 2.273815423661335 +3.8936885010555042 4.2941701759799 1.129824091422707 2.403392311741844 1.3350511539851588 +1.8137391141044779 3.696770773421398 1.652713774064562 2.754287584629624 2.1815758272663053 +2.5646846511037205 2.8446240076473712 1.3251214112361742 4.085859192284907 2.774894437460992 +1.1850948998598785 3.907032733683171 2.5892073621370666 1.4303263818637277 2.958369601256397 +3.8849958267743703 4.9449113485203195 3.4829217564018404 3.648441230841703 1.0727616742113955 +4.5042318766234475 1.4222536784683353 2.3969231139124805 4.738075030480006 3.8703464845348448 +4.110044610303369 1.312837300525104 2.753254077388894 4.581667980367509 3.3417758953111223 +2.1067604239250772 1.3867958127945195 3.7468409033126124 3.971898044815564 0.7543207263636966 +4.663241450536207 4.362008034871008 4.039137841234133 3.737900207535608 0.42601136448410554 +3.797670309389835 2.3120295529706376 2.267648319946685 3.151725238184535 1.7287916168511286 +3.852768443383676 1.938014743799509 4.952103639877616 1.3725557727530213 4.05948822674823 +3.669298538304237 4.419280202090544 1.290202049916405 2.341822535340177 1.291657129960814 +1.3668908754032536 2.6455826959699675 4.193400051211482 2.505922156475677 2.1172232799603825 +4.720457783758449 2.273490928698611 4.642170715799061 2.528324092119686 3.2335729987433597 +2.335680191753521 1.6275861787967458 1.991346154096341 3.593237413754272 1.7514144966151508 +3.4143525685670943 3.3136402322694214 3.693320171983784 2.5143941329052297 1.183220005028644 +4.709745990466048 4.202302391362236 2.643842999007566 1.2533421882161613 1.4801998213359515 +1.6265976250653322 3.3760797075630813 1.7619381081155194 1.8908647183754987 1.7542262191102347 +2.2359338430399056 4.358328809578254 1.4463982995909754 1.4529485642194837 2.1224050744271277 +4.792130115226051 4.557995976603021 2.098691415658016 1.0235853893574074 1.1003053042936008 +4.5554640803917055 4.8212491033806675 2.1205452590228786 3.819896721933224 1.7200107769839041 +4.442931663083963 4.9035513517248015 4.558525614403446 1.0846270860139087 3.504303280697973 +3.2608308916219158 4.660363733171398 1.0437711137184418 1.8180437072773263 1.5994343449207187 +3.8525463207225474 2.615489157607497 2.182944917289832 4.227785668312727 2.389912994620962 +2.2633122622120165 1.9941854242062038 4.6930958224808546 2.824674374144379 1.8877044163583399 +2.245917489348169 2.5282988963440043 4.202138387620231 2.239724242240823 1.9826266761551807 +2.1737188302955643 3.346194923947638 2.6265791801561535 1.240515352424716 1.8154539720772738 +1.76083135252658 2.612540319636764 4.072933903730153 2.0647716379302623 2.1813124146803102 +1.715077071605866 4.950717581195708 1.1787900033174705 4.3447506268122105 4.526883715848908 +3.3355954294662955 3.081712478192379 3.87143413199593 2.6465212344249687 1.2509469051815278 +3.0498042482066494 1.599266036820982 1.4157980951553149 3.7732571485633484 2.7679729570907 +4.456520553416606 4.467093623670683 3.850573181170795 1.7115215778922073 2.1390777338150415 +1.4883607256401934 3.7022543437465916 1.459767724517627 2.345127766292887 2.3843630922878605 +2.139980469495718 2.70141344569463 1.802525437895199 2.5880977558198768 0.9655728110573121 +1.698776820012343 2.6384080060397266 3.8783318657760586 1.411222440586875 2.639987818459118 +1.0019493184315964 2.7258432186733677 4.406804627208896 2.9009845304068644 2.2889526738715382 +1.7067918939495343 1.648512324388403 4.352296034532133 1.348470058272293 3.0043912867470524 +4.206542026961296 2.000416302220492 4.518922213639502 3.5388189429415555 2.414040831178286 +3.769734507371883 3.740788814528224 1.5393162387343668 2.1114769997898057 0.5728924764960162 +1.952369790071797 1.4535260100647722 3.1037552487740383 3.866561924737047 0.9114379527677302 +4.756550500207593 1.0502344409227713 2.66034116371494 2.69629819849635 3.7064904747837737 +4.968398325346952 3.5371180158995723 2.9484099432319133 4.341681415280709 1.9974405420529553 +4.3012284420626195 2.506244032408238 1.9916105826663588 4.959816900786349 3.468748733740989 +4.080401056824959 3.115162058687365 1.0156939384489632 3.43078997431347 2.600841245822998 +2.3650575545521964 1.190129770371518 3.0996005534940663 4.649062516331071 1.9445533349122677 +4.8891897792974515 3.266239276578901 2.979829028242373 3.8833407016629584 1.8574987693890037 +1.972890699726776 4.877083441653828 1.3248392428478866 4.364039127774607 4.203697351475289 +3.5714278235965073 2.4876454117368403 3.74258707640591 4.793929355415937 1.5099353972572318 +1.877010955027958 1.5534917515694437 3.2513589447890765 4.411080603815142 1.2040012464364815 +1.1131179811663467 1.9484390159962448 3.6174363259353233 2.811773065744867 1.1605406154245557 +4.771082224302687 2.581351154043374 4.582739449198655 1.78252394603342 3.55473332673858 +1.8812459756847568 4.479525424906954 3.7216933892549884 1.5304197159925055 3.398931656768588 +3.7326361219440187 1.6725405083182872 4.547136922745853 4.1519656148499555 2.097654475804853 +4.399719349843524 4.701322813964701 1.161855987928138 1.707722760328303 0.6236466810466224 +4.577475827473926 4.343889058244871 4.7527927954483875 1.959812838009459 2.8027307793319047 +4.894644724775045 4.901337061922142 2.7447901542002704 2.727105714851805 0.018908378342945203 +1.2294469559330574 1.7876485555008705 1.2232353776083875 1.296055365348733 0.5629314135616961 +4.743497742707477 1.7763932579490609 2.4212731622345918 2.701158381130977 2.980275953536885 +3.813746667484868 3.753103699093176 4.038004710836492 4.709672873645443 0.6744002450670581 +4.241520862835307 4.660295813739946 3.1535908177877383 1.9085331302750697 1.3135985325583983 +3.943950302116822 1.084870855800712 1.9316590544518646 3.7782695934515953 3.4035725000493393 +4.970465122153226 2.667720657227952 4.326410527598092 3.3983283071225325 2.4827341135745553 +1.5963810208545497 1.2657432265845179 2.394023684202102 2.5955231701187125 0.3871994238430763 +4.72540474497421 1.2390232867530533 1.5223086960999188 4.663434674815184 4.692710100399151 +3.385309533109559 1.7981939672134462 4.21010603688026 4.699770971972511 1.6609357507648022 +4.024144988307054 2.860549349719577 2.654181781910511 1.8615119254687524 1.4079347681803995 +1.3268833246844212 3.1483885193311245 3.7703470220987922 3.471224212452414 1.8459023889078392 +2.7457944166126946 2.4086889961427222 2.0002031862671936 1.1976963711663688 0.8704350939579046 +4.752977971444318 2.545151280611578 3.909279576444426 3.823614081128136 2.209488011698917 +3.544678656180771 1.0906758755380115 2.5352196016879853 3.1870475039816744 2.539096150525022 +2.994042879993372 3.351563132238161 4.322744473061295 2.3352000175429453 2.0194439069770946 +3.5815195760894776 4.793528398947081 2.0008152844813902 4.049368937551613 2.380238949389751 +3.0225050039414127 4.15237252845834 1.51018252537204 1.9364524787654922 1.2076036999463295 +1.0811211871569824 2.6831118579098434 3.5954202520460394 4.063912309800694 1.6690892478709436 +2.4081296719701206 1.7161951960700033 1.7829095642884192 2.184241529055579 0.7999004093529637 +3.462559202720449 4.799383565673251 4.732375163112976 3.0892795591638644 2.118221551467424 +1.9668880028394624 3.6311403972860687 1.1455919934422334 1.1700366925794872 1.6644319078103416 +3.5622257141178237 2.7552450727910824 2.8310974717033845 2.8921906914401925 0.8092898967452445 +4.374352793042257 4.31730009497674 1.0604210100521323 1.344582887905247 0.2898326813552322 +1.3589189358624063 3.8789163201578347 1.0094809892955379 3.897678370083053 3.8330237316306386 +1.2348914384912577 3.178089567329893 1.313635348672487 1.1110114427516438 1.9537337114286049 +1.4558158474561802 1.6297735720274198 3.4629767439471086 4.232629601179487 0.7890670507529551 +1.0900511484742048 3.7072009519513855 1.7262398282911464 1.0194183162047743 2.710916771829912 +3.6326803132352694 2.2023998400643867 2.4148163616969778 2.68124527265061 1.4548837054987807 +4.021736357714078 4.7468079084589 4.115631177957149 2.8874074805666545 1.4262756411476283 +3.2232502327829113 4.953400206873298 3.00812112954142 3.4271567396111347 1.780171276970692 +2.9611152574114152 3.6629144373521125 1.7530811241061826 4.042639198125891 2.3947021241219697 +2.009690683142473 2.5844236623780787 1.7422799572670549 2.215506204289097 0.7444871243289587 +3.341913460765245 3.53138422597446 1.3832236068568453 1.536107779418309 0.24345993733829988 +2.7292732022504134 3.6795992797153727 3.8429974212275533 3.1679551869976517 1.165676486639425 +1.2350200566417553 1.1553173187600247 2.1875182576236365 1.964774978679248 0.23657365605819566 +4.092717028713691 1.155997760222189 4.021244984064114 3.4847869201741855 2.9853152792028173 +4.680311179400965 2.621773568524309 3.497030500548231 3.4169570591955623 2.0600943792466957 +4.823616760172591 4.936376695160292 3.981273225062274 4.434031924430803 0.46658894413853474 +1.6854965733336402 2.751085877789008 2.40648390372385 4.679866069089821 2.5107263960005164 +4.626798391088661 1.5915416003090526 3.656031210107791 4.862556572585226 3.2662650284805474 +3.6324865891970535 4.948397674769151 2.66303794364761 3.1780032101897695 1.4130857054249657 +4.183191303748314 4.434990736366094 1.1721087649457163 3.1699163899667466 2.013613235171741 +4.89146249192703 2.6261413638080584 2.7299332021708578 4.914195113312818 3.146852381343577 +3.1032118585989674 4.6660988047130285 1.709823797129168 4.713869562587723 3.386282115728578 +1.3564233682985556 3.9502323208069723 2.4892389611675165 1.4323091149232359 2.8008830004116145 +4.8217165339639365 1.0342637834546422 1.9408648051328843 4.36068800095574 4.494479128484496 +2.211232180808142 1.8147382712127293 3.7397116172114266 2.9579667535378222 0.8765457502186167 +4.966607231381383 1.6829808249595644 4.7591424507860545 4.520313862766859 3.2923003312890384 +2.151969834941881 3.041105907406307 3.1123968729791316 3.275649389397903 0.903999081567302 +3.855227726291694 3.6506085526146466 1.70800656827603 3.102786677571804 1.4097093883220788 +2.9236804365101814 4.305179040911517 2.7819609764723463 1.5722630235626989 1.8362754508070485 +4.537758626944951 3.240988095001951 2.6995775896324816 4.281785740358792 2.0457263856001133 +3.4124357923988318 2.142483773551168 1.3511142225022637 4.6537596699939465 3.5383958345573485 +3.0221930748183623 4.509647036995243 4.778580757056995 2.005581591862566 3.1467512866073 +2.2190607615873015 4.973887546284287 1.730989099500989 2.5177824442501913 2.864980694703817 +4.020092847850091 2.8094014206023816 3.936404321764535 4.306356345390816 1.2659534872167597 +1.1189826366219813 1.0530258547744555 1.3268187302038683 4.722546056282486 3.3963678202086296 +2.0761308268379355 4.922792148606199 4.699538251998367 4.845802657612698 2.850416453292597 +4.759382595857494 2.7648496323151783 2.902916862317136 4.03303908154837 2.2924523927569402 +2.9918237537424375 4.826147418986178 2.2753756869135975 2.8854149203273867 1.9331040259585912 +3.641553903718043 2.3173798622330386 3.4351708261672464 2.5316108081733413 1.6030775396904158 +3.8451322809796933 1.3385530874077483 4.395493969173593 1.875837375593898 3.5540974386217123 +4.761369757077709 2.0198040014085272 1.288370856767429 4.16282469549214 3.972237110699355 +2.428230450086701 4.9285411681194 2.30703732876009 4.709642453412874 3.4675733693343838 +2.5814866202152325 4.185712115415961 1.2792578637536653 3.4069221130729983 2.6646753268050545 +3.2287878603292954 2.260540775669865 2.1352340688629368 4.267477708346743 2.3417867868511495 +4.886117979140309 4.826046392984554 4.422903060208361 4.4026848774739165 0.06338272932236079 +2.8312300346500905 2.984815928813306 2.9647715791740983 4.943103529891621 1.9842847411890547 +3.6814046642473164 3.1961818525020216 1.0535047987903234 3.190053405395733 2.1909543868884005 +4.501342582173822 1.1771950775270676 1.3821339268859028 2.0013828221954233 3.3813349178972656 +3.954743356673226 2.3577918139761187 1.0917308714294007 1.0486995739021703 1.5975311960301584 +2.993715235010933 4.389481166342103 4.35888939206921 1.3624007335345216 3.3056174636203415 +1.9894837237793648 1.5715634425973026 4.159148090040522 1.1946573453031486 2.9938040578930414 +3.3664163371692855 1.451520147561867 2.236839160557669 2.1532986425123446 1.9167176200808222 +2.0570394381658446 3.84838290509132 2.0707559247787346 3.4741567203699324 2.2756197418643103 +4.745208262367356 4.424180145450705 3.729292412537992 2.7945974022670708 0.9882883253769664 +4.608694869345886 4.284798793732538 3.9798380953630845 1.3014229928572667 2.697928117858031 +3.6134611120291416 2.216326035063882 1.8746530158530659 2.4129945906983314 1.4972635287395477 +4.309820939963594 1.9739346327225906 3.515544448084508 2.43926951612485 2.571912239855936 +1.483394126401377 2.7107345004157466 2.289290256261615 2.6014692949329516 1.266420209042596 +2.183717513340941 3.1329670128362577 3.367511004761033 1.0306552949771128 2.5222944357552346 +1.6902821974141244 2.006996854558241 4.069129873855124 3.220411423933274 0.9058869583384354 +4.057378094128948 1.7465543270834205 1.411723694106786 2.12096695783351 2.41721585496294 +1.776422252613179 1.4665637017252884 4.07173533008615 2.6240490385699164 1.4804755723085634 +3.0168107246122218 4.570559377293665 1.7207799334859875 2.4994124584761392 1.7379308054931129 +4.422281364531143 2.751212819602593 3.5231666224931115 2.8486032756992867 1.8020837357590536 +4.912504614175174 2.3739297673497015 4.008034263015601 3.09068012724641 2.6992407938803478 +3.3257179393514424 1.5867206324505863 4.509198323393436 4.367221489098228 1.744783383370245 +2.3769044364194576 4.484050993838444 4.777300186844663 2.607271884607351 3.024746178930331 +3.291356553280056 4.658676259358094 4.1850977353705225 2.4172479367749107 2.2349174680564556 +4.531368088458715 3.883437856129912 2.0829931737162464 3.4537310813046727 1.516158302178751 +4.912845274429118 3.4340070567410987 4.201855704281067 1.1407872034402708 3.399573920498626 +1.588431940883439 3.3317762102382735 1.823201640531813 2.9845295609778293 2.0947390721280326 +4.2487251650983335 3.9838072350473857 2.967745464074441 2.828191426808827 0.2994275187413664 +2.705488039072914 2.797327260765426 3.486886546014909 1.780465668301118 1.708890474705325 +2.453525610568609 1.6517348821834026 4.118592499029673 4.164354844863615 0.8030956134986077 +1.2931843861716388 4.9722974165871445 4.959236470713026 2.6844737382206407 4.325554089328833 +2.8817384203605867 4.4427942000642915 3.2230040156442454 4.370192552857501 1.9372497741024082 +3.0320815101525533 3.9141608690631826 3.5337904676485015 4.6303608932193905 1.4073132890912767 +3.1435704758064373 4.4830965638755575 4.496767334396306 2.9008915030744373 2.083542610463013 +4.140277470170778 3.580111450512653 2.195617629639877 4.432198390818221 2.3056624798206538 +2.2098947498385946 3.2738459866121805 1.0960829840579 2.301985620085584 1.6081646065656836 +3.1057579913621938 2.1740965765803755 3.1049198568161875 3.406442729180508 0.9792390077770031 +3.479849577536581 4.572340350238788 2.37165622774935 4.773850373010413 2.638952974186163 +3.389508694140227 3.781567201784635 2.383699519495407 2.4441689849425434 0.3966943781651348 +2.9080543381028496 4.300222803198 2.8967078206515144 3.5858205800062875 1.5533864394640946 +3.840214944879936 2.3090659417060233 3.228137733466112 1.7148673616303478 2.152766705473777 +3.8616276582334876 2.514567268778504 4.448112869712666 3.722831639718587 1.529903446437172 +4.400956700868877 2.542894469441461 1.3889366802407417 3.074676242203974 2.508807112279662 +2.3588641442931273 2.1725291942990657 1.2409220271200225 4.038718814564135 2.803994931775356 +2.749774535421448 1.6173428743799492 2.3144306393305745 3.11702146906567 1.3880034246730364 +3.361167717406313 1.7375108989606312 2.0264226871277824 3.5850817014124643 2.2507064195261117 +3.3195000181871066 4.610540984841579 1.490171435202281 4.628911932126812 3.3938884313739845 +2.549566360531261 3.5691939908829853 2.1871260185717487 1.2759062371921814 1.367465536879851 +3.8587648184834604 1.777688238459489 2.5776973620034016 1.2052565935336594 2.492884553059384 +4.958723747922162 1.4675431767325482 1.8442134512323958 2.75176753508693 3.6072144648984876 +2.322921338308427 1.9573464574449595 2.1336813853726144 4.4871029372672755 2.381646068256283 +4.950079768308056 2.7143337456021093 1.9105861623991225 1.4580094274511413 2.2810931544024315 +2.2980361678822874 3.5413306520088113 3.8568349490057674 3.7340193583776964 1.2493457662155665 +1.863476086649678 2.688776066491072 1.7295444635462847 4.875471202214969 3.2523799135089972 +2.8497626386577974 2.4554135175868965 3.494443607291522 4.919596563925536 1.478706251793122 +2.579287617967321 4.14180409158636 2.2830048926663538 2.762434209403586 1.6344143293785718 +2.9904842995384464 1.632740411408228 1.8349705048766323 2.4045123862971005 1.4723608322849837 +3.423524600077664 4.006499556022481 2.8686427176918645 4.496298547035835 1.7289081230812322 +2.866941939434592 3.65174014647894 3.663623665348963 2.257109063348749 1.6106494191536043 +2.652812461939028 2.0526297222819294 4.398515976375279 4.627741832955964 0.6424669752660048 +2.787958227033087 2.9121788609499295 1.040946678051578 3.251971455116526 2.2145115332022556 +1.9901069868389407 2.0522426237151548 3.904741238447251 2.5196902638331165 1.386444026872191 +4.677396003489385 1.9791519797236634 1.8227504572264412 1.2325522264907662 2.762038153855039 +3.2704360345915013 1.9714165577096332 4.696984335933221 2.0596139121322277 2.9399276102752387 +2.7112811569861384 2.6226567549197406 2.5744500721075445 4.165539364157373 1.593555590469705 +4.785714674530069 4.325568770011296 2.698531349474263 4.5769368629209914 1.9339445510128948 +3.818336464185711 4.4719025205701035 1.6910302746514794 3.5646129259981367 1.9843035406623193 +1.0480977746822249 3.1654411403522147 1.0672124527108897 2.334994864771925 2.467876652606045 +1.6443266118988817 1.1289381152784084 2.4781353098211913 1.6916494932641295 0.9403112474570003 +1.4300683443460058 1.2652214739496812 1.1318148387228897 2.6608053616671525 1.5378512639175588 +3.899828877270076 1.1351069225768349 1.760571898138192 2.9383031030723403 3.0051186794931173 +1.651490341520668 3.5254917180388103 4.39347814653622 2.5642890090039607 2.6187428396194044 +3.876952217954419 1.7654608504380307 2.462975152526637 3.8245544703111585 2.5124279161231255 +4.617264233057618 2.566371850785006 1.9789383893363568 3.0517647410139848 2.3145444356325844 +3.415304973305496 1.1309854403203827 4.6223376209811295 4.481813106983478 2.2886377755799634 +1.0009222206801929 3.6087563214253473 3.047026414052824 2.053012061523981 2.7908534949084345 +1.5162160897219055 4.8607623655006496 4.140294921124875 4.6467870450522515 3.3826800118287763 +3.143843532262761 3.42845566728055 2.069149790504307 2.753001741026344 0.7407142212973767 +2.2924152646267615 2.670286063550325 1.6491142495923414 2.5866426876819166 1.0108144799644545 +2.3322301029260193 3.268184906782332 2.027431200252846 4.15618397210398 2.3254246404744223 +2.965227386422375 4.32433129571549 2.8721849827767922 1.275388003092571 2.096884362711611 +3.6118805490609636 2.438699502612524 4.560922184687217 1.3894865261092693 3.381472741904864 +1.6359517728372723 2.069397149651323 4.528376980162779 3.223964460173862 1.3745424391357695 +1.2089720880372568 2.3589151032844597 1.6524180948481257 2.8277920749657235 1.6443457457156971 +4.543038131422968 3.321631379375731 4.135558131835052 4.967161409612663 1.477632723499668 +3.798702050867476 2.1325639849638693 4.454860319406311 1.8896207462260572 3.0588347654724704 +2.9588141492985143 2.245353608371575 1.6589317647904482 4.014949820963986 2.461675653792655 +4.776491900319749 1.8699810446608889 2.52955517928735 3.614802901921884 3.102509947372649 +2.5446667008201467 1.3523610848046732 4.327884810072046 3.4510879404036823 1.4799883217925334 +1.4990635222747208 4.303380549820835 2.913318189725943 4.625100122203399 3.2854819091483867 +2.334947500845307 1.1747281731679866 1.35173915852251 3.66725259743346 2.5899249746070305 +3.276208804718893 4.06642004678746 3.7593139688818984 4.649249821552505 1.1901342903051353 +4.532890380985101 1.102150527740934 2.6406206921844224 4.682651058699996 3.9924759183255616 +1.3361795508391343 1.342225284961239 1.826192172209482 4.514176527024117 2.6879911537483383 +3.7301892030202644 1.137080988329314 2.232493101087301 4.156921309015701 3.2291847485964933 +1.5034865135559983 2.800742691322272 4.250596682113061 1.8100939261976055 2.763860939407715 +2.609969874528152 3.553838104759844 4.221322999609228 2.7490075650132426 1.7488853521572738 +4.929446176409167 2.7720163854368822 1.3086888031880388 2.568088760122287 2.498117602215857 +2.0809671318756626 4.017370862344196 4.583476977433996 4.423863155196527 1.942970915794085 +1.47920963519856 2.461697768564204 4.799012971663321 2.5913974334692274 2.41637110077908 +1.8707914181505387 4.601264277430188 1.7599770241345838 3.7672728783737024 3.38891113511528 +1.5710767028525656 4.997289348503766 1.70497724027596 2.0069386494737596 3.4394932455036042 +1.316583164691921 4.302473424216375 3.784444357465248 4.1882583563889035 3.0130725825392464 +2.0900098758923646 4.3280411917785715 4.442351312069904 2.529788772307426 2.943922492082637 +3.3279917110687465 4.772660716044626 1.2211929430038309 2.5079333579346774 1.9346238469931063 +4.064741573192844 3.1333804660815323 3.560192514855305 1.6881398725790824 2.0909362991954095 +2.6161199111986986 3.0927041045173502 4.674735666907171 4.435186866858361 0.5334005258021545 +4.501786456215375 2.0433041925196536 1.2116429169410208 4.984448268304596 4.503131716948114 +3.124997260443519 3.5136564796697525 1.9634930328320408 2.264517849451713 0.49160139229913963 +1.5719492470645657 3.3746717464749123 3.408134171341819 4.236854805480794 1.9840832390119099 +2.6489137346001446 2.8224206003944303 2.294834191814677 4.1652834843464195 1.8784794884188256 +4.609731908906435 3.230320054801015 2.7691337799515567 4.098285746896681 1.9155735471342896 +2.365899515477877 1.3473579038172279 3.0273900560441684 3.5551751866174137 1.1471635274617522 +2.6606413477329482 3.253325638463335 2.9550620030426207 2.486000385338629 0.7558395793299442 +1.1775607615695285 2.304615515558521 3.016191475547836 4.025439787303386 1.5128894782073856 +4.655352027006817 4.351810494763532 4.14682496074181 4.067835253074587 0.3136508181305362 +4.974353085441029 2.030004921364542 2.620645148192436 4.850743403324694 3.693578798244938 +1.005718331418624 4.2872511504241295 1.410949198172462 4.028683447739435 4.197736323730468 +4.557824642293913 2.7186801159424134 1.291134937390177 1.9835711582060758 1.9651769662568526 +2.3706086121410967 1.7004929154619788 4.200966393921389 1.5895648528974213 2.6960105814699786 +4.155821624778328 2.319592211593084 1.5870432492472792 3.866487905329048 2.927047385674916 +3.334314543105138 4.955789175379796 1.8074111033545535 4.647493197974198 3.2703587398463405 +3.3638676431974197 1.7911595590439875 4.801468182286705 1.0127156177718066 4.102201447159778 +4.91580965205751 1.4613065146686384 3.1641524560537446 2.010723117399995 3.641976271956859 +1.2635360010183248 2.1057791906940797 3.217848263575697 2.449048332901212 1.1403626282723767 +4.6078692314036385 3.9690894128338225 3.15916646849698 2.5306796105894214 0.8961224175159344 +2.833334133760782 3.388942565432354 2.9936992916968532 4.114754321270935 1.251185481324767 +2.6709143271335236 1.8801741360386717 2.2962933022322116 2.9153326821682097 1.004230951387313 +4.698945325283347 2.568940486120345 1.4982153537328369 4.508943503479485 3.688008216711926 +4.445350932682544 2.2028208355590473 2.735007047333962 2.8264397492470836 2.244393275583371 +3.204084147575403 4.1679937829533245 1.0157393829230785 3.928122430972751 3.0677510987271273 +2.5188723536401088 3.5788831013438345 1.4809519386129009 4.505541230273757 3.204959152388207 +1.2261902778158884 1.579463134884886 1.4470727667047187 1.594162181342222 0.38267088658545184 +4.308228436724939 2.942235855286912 4.430001243316319 2.381123969472202 2.462485292508084 +2.9939378598277497 4.812014519775348 2.9798838872836506 4.198164419501895 2.1885178081587964 +2.4447327237363528 3.8054404875624117 1.9067921487922872 4.49474825290207 2.923874555335027 +2.624276327819871 1.5669702376622752 1.4420727240829763 3.5489026603571725 2.357250209177099 +4.497800123839074 4.108993278547519 3.144597041447015 3.1547629945832103 0.38893972482730316 +3.7651587962075563 4.292445012437014 1.658709865021216 4.0952994424057625 2.492990076683937 +4.564440893811647 3.217351318879271 3.835027027697848 4.590659767453724 1.5445488533168712 +2.9987792084126212 3.673196816756691 3.5631709686399526 3.515826680690456 0.6760773565546919 +1.4407523990860183 1.345282880027462 4.523488849901528 1.552350478324604 2.9726718036349133 +3.3233628173540293 1.825756911524135 1.281675632666575 1.5340627315185351 1.5187240357759164 +3.8118113739827275 3.4469928978477116 4.450073005997286 4.0738909340270215 0.5240281211932395 +1.5274277611901086 4.050881070731881 1.8850561645989656 2.4686322494951654 2.5900536002755046 +4.265604202483056 1.4447924223056883 2.8231865698456184 1.4469248083140012 3.138642307661311 +2.8795991496514226 2.2774966512406416 1.83042620895832 3.280918734201845 1.5704954582487152 +1.0268815714092385 1.478505766021474 1.1268912570001413 4.343626441041861 3.2482841097125523 +3.64680317221116 4.4602064917426265 4.426462019613949 4.960644024041484 0.9731265971491214 +4.543846673660145 3.291347069487237 4.607964329489287 3.300491255911584 1.810591366538573 +4.881279471828199 1.5742662860862957 1.9855870380946428 3.4662350052840347 3.623348536010977 +4.75440632140299 4.220788666603147 2.6787072358090986 4.884930179459089 2.2698386459397755 +2.7610608861499015 3.2093093558804813 4.5099372139097875 1.4964425556154972 3.046650085944237 +2.3240856912332912 2.105063370602828 3.672388770174934 1.2922007444469217 2.390243881856696 +4.7354455431464935 4.578499185730737 2.5359505749975395 4.889453851473323 2.3587305550843065 +3.211596900313813 3.166350988899931 2.9719443867162583 3.0355920646482697 0.07809109684086862 +3.5310847087494337 1.4723760218942443 3.7015683181324173 4.6444174819790085 2.2643422892971006 +3.181834123618548 2.747039072457201 2.9156963956559223 3.8565794902191914 1.0364881736659382 +3.6999143961997287 3.190921240412097 1.2659889215051972 4.389744108769107 3.1649518957792764 +4.188636413306904 2.907475653105287 4.2404634192985 4.550732570421839 1.3181956757701727 +3.0837941871864123 3.047231356077218 4.703320352113371 4.150614493588449 0.5539138982427597 +2.038053920661672 3.6012946480767285 2.667060094691242 1.1972192356120002 2.145729182088914 +2.7065324201883194 1.3022631263514999 4.806814261142066 3.733303231176096 1.7675967246721065 +3.6046545173874716 1.7145925497369037 1.5291042063891664 1.011380222724843 1.9596868027367007 +3.2107924839856548 2.330705311315241 2.348197623379922 4.629064249357712 2.4447711543206467 +2.526424724313182 4.062372716760768 2.01310222242213 3.1792774172810883 1.928497036712294 +3.736037808992273 3.9485155795688804 2.169066035885004 3.4130766296044923 1.262025816009926 +2.363442696312852 2.4541298623328736 2.301574823891819 3.8247238367065375 1.5258463478735969 +3.502506225997607 2.956886213843843 1.0553440440114472 2.3966655486228423 1.448048540759477 +4.319747070977488 4.435552048723862 1.8727690356179192 2.767870129707425 0.9025612231372832 +3.5267211080230596 2.3477417553610755 3.4603826949641756 1.1824734481364083 2.564929404639963 +2.8578539472477953 3.1595173538051453 1.6894354443970196 2.026127197190513 0.4520643176086119 +1.9161644629318677 1.1695550235243721 3.9794600638349555 1.4846313917942036 2.6041497187851923 +4.57313709232841 1.2748546802108174 2.291808644179271 4.962091932469641 4.243710606274546 +2.357592227648669 2.632350102308372 1.6690426156176956 3.436009645496159 1.7882014356232452 +3.5673585476646537 4.558700316796532 2.3343982714913913 1.8960193788362805 1.083943982293847 +1.5657063684628287 3.2528533506665935 3.348305360504783 1.726886333509265 2.339971068338744 +4.963631222645283 3.8707328918022514 1.1036877671861265 1.5475984587636664 1.1796115732122732 +3.0609392100700195 2.4268457368823144 1.337009566440416 1.222047048101596 0.6444306893390866 +3.199809704856337 2.3041401056089517 3.242531469188767 4.225393099606862 1.3297522384128886 +1.4689641263297628 1.4656278077112743 2.9810426400720154 4.887329018385101 1.9062892978674417 +4.321054379511997 1.8420967846717269 3.3104675592575132 1.7670997700420634 2.920139532591558 +1.8253017389143475 3.4080669415672307 4.713837422577166 3.754964501069804 1.8505628782424242 +3.269103976165461 2.4954800883596917 3.158929231476246 3.354621783780649 0.7979909114840373 +1.024706616027189 1.2884952044193816 3.145330443510258 4.913376110752885 1.7876157027788078 +1.390669933706917 1.7707812999103876 1.051682163896587 3.372788851814909 2.3520248526357523 +2.139533198075227 4.358315886106267 3.3768059182697354 3.2723867641645583 2.2212383880282385 +3.719450761354378 4.258057207075447 1.2628387470187232 4.28790315911145 3.0726391914252154 +3.861270195321177 4.880063577423254 1.0457716372856072 1.5211280019985578 1.1242346858588288 +3.450781214087291 4.18790559485199 1.3019178908987383 4.292645430181027 3.080227843348481 +1.2386772335047174 2.946133711874386 2.0974823999824075 2.1089322947672056 1.707494868401406 +4.769084991632962 2.272048467470448 1.2625135549591517 3.51783026596334 3.3647652027944472 +4.569090303984858 1.7173060146332988 3.9434787476853783 3.8430724079232506 2.8535513077666583 +1.5493572187670601 1.9000210791412178 4.279022558411953 3.0024089726464895 1.3238985574179996 +2.9718989767112394 3.902802825962083 4.8282491670145875 3.877474129664691 1.3306220906770392 +1.4316119089273402 2.202648752218174 3.358059625481589 2.6601160513837057 1.040011079910412 +4.856297636252557 2.7248139450792612 2.506024951548566 2.680753754753668 2.138633414217412 +3.057211602851226 4.858403885624247 3.642277292891918 2.0878950969280954 2.379159021723937 +3.54656360240906 3.423528117079402 1.7210306074183954 2.6223845007721014 0.9097123565799183 +3.533897461349484 1.1090244293756761 3.115562462162783 1.0198527048133945 3.2049974427826426 +3.8196635333227897 2.698710848500791 1.4491883880477432 3.7926340062221477 2.5977436915428096 +1.3729313006580375 3.094753997048611 3.433417444120015 1.2952680535260348 2.745242469127839 +2.8581014922583163 4.543733293229254 3.805691734561507 3.162803486265232 1.8040675897099807 +1.8276130022197878 2.1118209483883086 3.2244831708512502 1.1478082151716422 2.096032687772839 +1.0427000900481862 4.813144061626087 1.6649309178836948 2.262757881464415 3.8175443443648795 +1.4838812067388893 3.35253556563564 4.76615414206893 3.091670877081397 2.5091359703585487 +4.245839850998827 4.252639295405416 3.823731706093174 4.195131167112399 0.3714616966654965 +4.626318798357817 4.717113431169448 2.205222369875758 1.138043494123084 1.0710342749884993 +3.6367393364972456 3.137453488301934 1.9308577198290822 4.96952549168397 3.079413610724883 +2.7839319011562083 1.429427741083551 4.024148912122849 4.974821061228989 1.6548290107259491 +4.0695485685874875 3.782068421267474 2.957557307681338 3.8125660217720396 0.902044752922033 +2.4211194262174383 1.1405684918291574 1.4690294944468443 3.1712481714343244 2.1301077718856636 +1.027670985408856 2.735090854827845 3.3707780104575837 4.9991133000216585 2.35939789474486 +1.4120320151797863 1.6599932004224973 3.487117315946804 2.9964136035024738 0.5497953099050754 +4.385195205167575 2.579614844675539 3.421717223497724 4.09109800131448 1.925666394759257 +2.4504311283305826 4.3147222327362105 1.2063607619115078 2.3113568337382433 2.167163501150403 +3.5559842952900094 1.8383599003660192 1.2636000906943128 1.082671409047816 1.727127311427951 +4.872256666165177 4.162335741889192 2.17430692605683 4.235843235402772 2.1803485211031184 +3.0128880600753614 2.035154488376264 2.3826237071861516 1.9314827969233161 1.076796665178832 +1.5583016301646784 4.563287336821395 3.8564698433195863 3.5309829752772033 3.022561959411122 +1.4302569598387271 1.1854176626517758 1.6857405706231905 4.018037110574419 2.345112669300874 +4.6579889769944245 1.5052570110234402 3.25768978344486 3.898486154888357 3.2171942494836117 +3.8255451653095887 3.41599413548713 4.612313494239173 3.9769111373872477 0.7559551581420801 +2.7234245086143174 2.2748815135536296 4.3394678725840965 3.1699250821489517 1.252605746864047 +2.484037586426425 2.9705774577352098 2.1375713777461156 1.0204752564585675 1.2184518006752887 +2.7189887714777363 1.02722407817593 3.159571423899403 1.8433289544517386 2.1434929474762074 +2.5464375078965826 1.0902745094499626 4.982344597490714 4.03721705714146 1.7359944543608665 +2.137184940398004 2.1581897642679597 3.68589919108779 1.4573419376171421 2.228656239670543 +3.416042878982407 1.05825029473966 3.6360659467406116 3.287769225538703 2.383379213702698 +4.6761542505812015 2.1858424482229775 4.639179181435978 1.6170169152504865 3.916007869772492 +1.259833631061206 3.2038793945055146 2.393753134221425 3.726773793615403 2.3571716120675053 +3.6795019182107715 3.355500550072715 2.8391466553488582 3.884363010759532 1.0942824663556043 +3.916961656700513 4.751750902574168 4.407363933664454 2.3770808952820093 2.195204387060521 +3.0238087177517894 1.4115907165600081 3.112631812546784 3.3773271149975903 1.6338024625107976 +4.055768755772737 3.105447397174597 2.87300026053168 3.2791078939675256 1.033457350132398 +4.334688673461334 3.057114701054806 4.679846761051033 1.2809810323724151 3.6310444085079197 +1.7342858490737365 4.3336927418266775 1.1763039874394692 4.159262251413972 3.9566344535103672 +3.25870917644373 4.941723396651385 3.657438087921347 3.7358347946010038 1.684839134469341 +2.8187511316527094 2.9349475052100287 2.8458961069651116 3.2520684961272903 0.422466101534294 +1.412984965368055 1.0999446658294025 3.9198186258216485 3.4883613896985755 0.5330568222415041 +1.8157258184478837 2.742883614592526 1.4442999990185363 2.554582696127753 1.4464955051613217 +4.439727745562317 1.8725453051045187 2.3071986355884184 2.8710965391419165 2.6283847755279077 +3.201841786944834 3.0445993988901208 2.1135813702958113 4.945834211550518 2.8366144125341584 +4.853543097003591 4.20512929991878 1.7341225330116963 4.0547966730482665 2.4095578259266612 +2.024856771849708 2.364617524471133 2.72168417042449 2.376553310327784 0.4843063902252059 +3.467196549793633 4.3901415535620725 3.497394129315816 3.0555601513661994 1.023252043267888 +1.7965963772979086 3.9850682583684076 1.4179326733467512 4.387138013608686 3.688575541706614 +4.703718966617188 2.6325356573469305 2.785744884957942 4.080367329668106 2.442508459544617 +3.2029102711913255 3.398735569649894 1.6078307062994708 3.717377395695847 2.1186162423288457 +4.661967162635108 3.9325278144992657 3.5770019625076497 3.3613168959987116 0.7606588003328478 +2.3233953062877464 1.3404423914890362 3.9956566433454306 3.1119177386891654 1.3218134831792026 +1.5141399506856472 3.1942115858477593 3.5789498864665985 2.9178764853787196 1.8054525030867439 +2.931545504319696 2.4023055614573834 3.8726749069617274 4.050246670299327 0.5582352982889279 +4.998088100059662 1.6136502228448477 1.844183505113278 2.8553671483788885 3.5322672754385716 +1.2613506938909467 4.759033469029253 3.461558770475046 4.740016374633037 3.724008410453526 +2.4521405577982307 3.8167474278095357 1.52921187094995 3.103143941586747 2.083126033791783 +2.6286725530682635 1.3698903776458575 3.3171896094379045 4.22897773077209 1.5543133993398142 +4.929494889982414 4.799095851127006 3.5374051984136825 4.7878990567252036 1.2572743531183832 +4.352792097908512 4.857638190285453 2.840131217277829 3.6078174751878427 0.9188099735920079 +1.3251766594625884 3.9164292747177596 1.2383426302494205 3.3311839696379026 3.330851991295942 +1.1469867363818254 4.874577051762506 1.7500802415874306 1.86846263784232 3.7294696608315356 +2.3673922616123684 2.4144524605554705 1.8704905301125367 1.4356969612243025 0.43733295081794615 +1.4393372216715417 1.27119464814194 3.1638966156108954 1.7671773991457238 1.406803644676911 +1.539162834701934 3.6745634317543066 4.168864155887895 3.6477771123606355 2.198059921117623 +1.4473080152239595 4.312498976734455 3.1894788144546644 2.8910150146879436 2.8806943408998857 +1.7733973127618792 1.2996330311912048 3.2071683260210526 2.664337226665699 0.7204985752376747 +2.153079883445399 2.466482642339445 2.609564695875078 2.1078080104936356 0.5915919713851527 +2.0492412428143107 4.466342191890994 1.3143753496898336 2.2125048145120925 2.5785681169225136 +1.6820078410825454 3.632904820680903 1.557316648094555 4.8584716082763 3.83453036187465 +3.417593710738055 1.6227950694043076 1.2641105362849099 1.8131614091495543 1.876901442251802 +4.557821383494886 2.8150529681901264 3.1407387008681615 1.8215758743784733 2.185733815489921 +3.0926893788599803 3.7305577850563574 3.498833701522118 4.624185773507492 1.2935584213885662 +2.68954109001323 4.507013100740798 1.7105937337522166 1.0684039454260947 1.9275923412403508 +3.5241274563982548 3.6987491382947995 2.7783559301611707 2.6472855851039285 0.21833956842909294 +1.552188953593673 2.385237476504079 2.5423872422158595 1.6726071497491666 1.204361760757364 +2.4691083977430055 3.301193045849186 1.861909279650047 1.1919874447691425 1.0682509660487949 +4.794741902026708 2.3945621109073616 1.198079602082034 1.4279905437476446 2.411166122604429 +3.221171944386765 2.3361002341223673 2.8361938859104163 3.2447476130227524 0.9748169470458168 +2.728613732551857 1.3098347540594273 4.2506522221158605 2.7994498572648356 2.0295127724558 +3.389184590833993 1.7229541414275222 4.32358466676009 2.94229229637391 2.1643226476235844 +3.822835219252792 3.217561548410879 1.9913076425548941 3.821208870937005 1.9274062162006231 +3.3009719688263246 4.217424846916817 2.545575331031823 1.4268373319016994 1.4461882963355843 +1.7880987803180606 3.607462638481612 2.7760822834727175 4.048614745499937 2.220230554538159 +2.9370482136306078 4.755940531739084 2.314110192460445 4.43397905134684 2.793244214842363 +3.0607376334390426 4.690086301871601 3.722290263415919 2.047121225805162 2.336871495802176 +1.447390530482449 4.2221985579976975 2.1444257372167654 4.734153182762643 3.7955563270457 +2.1724971294834585 4.5052923126732285 4.999925787204674 3.433990465190603 2.809641756424599 +4.6289628728028305 3.260095910872041 3.6405405793675936 4.750002822261454 1.7620168069211781 +2.2497438679598014 3.031791179477266 3.6165020334618383 2.660423906944043 1.235185565596308 +4.951813623301165 2.1531885985732724 1.4769905589424348 2.874385524560551 3.12810081662469 +4.156236051275212 3.4942746259568547 3.859395104365042 4.561999331756408 0.9653215158473005 +1.52096749434704 4.504508288696423 4.3507229813048784 2.2940893589037543 3.6237077045945245 +4.4729948852888715 4.02686878685866 2.232184896999392 3.5788385543968304 1.4186277061591814 +1.958019909958168 3.7204941226915795 1.695399496932645 1.9634029399050155 1.782734191065876 +3.019571510666432 1.2013926848076295 2.0358136139080067 3.5066246352277672 2.338601997612456 +4.905543677472268 1.2487584824624176 1.0908833006944425 1.652150831300109 3.6996079796858767 +2.4457964902734846 2.571934796399609 4.582554684105106 4.387224103200068 0.23251861884388425 +4.5188924957606265 4.4202917344380666 2.518340858282213 4.6541548134698845 2.1380887168936167 +2.6362661823220077 1.0149533717761452 2.0687437967262907 3.6611324887919094 2.272522161885022 +2.408190043091228 1.9696075846121999 2.9112955249582133 1.8249096840220256 1.1715753361487842 +1.4141192322501621 2.9046664870692767 3.628960303739721 2.73399782052461 1.7385882103624644 +2.1152330340634307 4.456870206666039 3.428497549954675 2.088115114757239 2.6981270764551004 +1.3715185047323044 3.291123248295726 1.7773132647186864 3.7526078877206084 2.75439126109046 +4.515598219777987 4.542457840531638 3.2776736322479185 4.48578759785762 1.2084125095050233 +2.717010451301572 4.824494884258966 3.83305939434994 3.629976176573988 2.1172466621770796 +2.744892106151173 4.573683786911092 2.3963150665659505 3.0303666920429295 1.9355878888303388 +2.567817441404664 1.5464718980966023 2.9437329536862626 2.396363517128689 1.1587752236359714 +1.551038925241441 4.763986956670298 3.6852809586795097 4.985991167351738 3.4662489956156812 +2.0517201984123896 2.6495323624144533 1.1198973433338733 2.3987689691901677 1.411698274720612 +4.362587864700415 2.6876596254312273 2.4462454639856324 1.1602542358725842 2.1116718602768487 +3.748644832800303 3.1535197137027344 3.7482788964206435 1.0031813487021104 2.8088671121772917 +3.8355510569111937 2.2960303115446212 4.099835709008279 1.7130274700916481 2.8402425415401336 +4.548781713677258 2.7049072495548168 2.4718267372923117 1.987866417929074 1.9063290980733063 +1.4714033888632865 1.2477218366875111 4.480072765994349 3.523618856266984 0.9822614306876384 +4.466204541109883 4.987959288011114 4.552279177968471 4.934121414746313 0.6465535629021564 +2.380913546738796 3.4090139240722586 4.825882883167565 2.9663611701828168 2.124808553007762 +3.0319037794755785 4.990396415390717 1.7500464069029702 3.1670570478326483 2.4173565234449312 +1.1522571135367814 2.038152858143002 1.7074322740354058 4.910618403044379 3.3234338638502945 +4.852978346767275 2.9687156831422 3.3768251667777127 1.3804607940266336 2.745162380319472 +3.177814815993578 1.3977206938953746 2.827521833858383 3.5312334296189003 1.914143435988115 +4.734970288100678 3.7797962486407024 2.1408358608276417 1.2972276468525288 1.2743752447158438 +2.592574344218104 4.149953891096186 4.285045250134924 1.3320163126466147 3.3385342530334343 +2.8862115763280545 2.2355965840735403 4.610725314639288 4.463509789598874 0.6670624250842394 +1.02334726761279 1.82929758958378 3.335359252583617 3.1467485687486545 0.8277257465742108 +3.667070655031081 1.218027789247527 2.693545184808455 2.069690269234145 2.527252641532214 +1.265817149232935 2.668632414103796 3.9533664243016933 2.2009512698486104 2.2447381898367404 +1.9380520724178627 4.376251893101704 1.5195363741739443 4.491998415099644 3.8445219404142943 +2.0204268928051965 2.153344865918656 1.7011212360661006 4.279884324090785 2.5821863317226352 +4.674498797515122 2.4109253559491592 3.8318233018310885 2.3944754069926892 2.6813678778114642 +1.6736038202156749 3.097364307225549 3.0144555083443128 1.3578187560077515 2.1843853262560664 +3.1027224076143884 2.4001097745433255 1.0309671226488897 4.167319597787676 3.214089507225996 +3.464591788989074 3.100536397911942 2.5192470037285797 1.9395303286200782 0.6845493051425728 +1.4206489896377095 2.712159167335286 1.2438255750803342 2.5605458785751054 1.8443836088872043 +1.7916061576276512 3.7196465923300974 1.5160086723835473 2.2332750271584882 2.0571365879638934 +1.5511177179455462 2.1035492888817333 3.3808356442666687 2.801743272963472 0.8003303162248592 +3.417197858045317 2.4704205133877646 4.1792549931104155 3.5811227279964712 1.1198881850109603 +3.1452819167085635 4.247050122284872 3.7348058000339113 1.166422345658836 2.794724807119027 +2.9778227732297267 3.8483267659546097 2.8214984344637646 4.77766763311258 2.1411153950902118 +4.140223375428846 4.014678639375267 1.8318715577578648 4.6632844414883925 2.834194841380173 +1.0138819856925956 4.977615672759573 3.9799420074471996 4.2637633153447405 3.97388214178607 +2.905524171118615 1.579499689466128 3.2164588686892683 3.8721921532154213 1.4792995188186886 +4.799803193199608 1.6646494833607317 4.202529095349911 3.8159944318767254 3.158891867472326 +3.46833843828385 1.245142012735256 1.3669732097732616 4.869542324141106 4.1485651432146495 +3.7571422987795744 3.795671011804005 1.144421360940668 4.588639230768005 3.444433363641294 +4.066513895952447 1.6208472947986454 4.048779602509599 3.4044772941266555 2.529112608917756 +4.694870990562599 4.883032784596288 1.127605273749464 2.824442371034879 1.7072378262731793 +3.822175668291555 3.6366328684336624 4.115929830858734 2.3199778244376716 1.8055109359809889 +4.2303536980408145 1.0222650575964969 3.9313103946107226 4.719924219556286 3.3035956910377426 +1.0151388522332567 3.057427138725197 4.563621983179077 4.375524895118245 2.05093197344016 +2.400514469577082 3.766280310855847 1.7978646211240097 2.597924031508716 1.5828491378994451 +1.2519905349381903 1.3837653294309207 4.575713578771661 4.102585472723688 0.4911362348637528 +3.9048098329377283 4.709367231419876 4.726489254147536 4.039231390066076 1.0581285267840437 +1.206522408457451 3.410134676467025 2.668685937401141 2.3245440490185767 2.2303229961289945 +4.417753346606545 2.854777154689052 1.9192209838650598 1.6213063491907165 1.59111523971523 +2.391136488620082 1.813532575586474 4.520420702315786 3.657552472869558 1.0383486224478768 +4.592031353672005 4.937058027104258 1.1416415708150396 2.014982976134806 0.9390253540909486 +3.6273891397598947 4.730145078875531 1.7415784590294994 1.7371925392023382 1.1027646609986828 +3.077900885876853 4.714787292345612 3.93743701055373 2.9953531633482853 1.8886288896571553 +1.1355082022325331 2.92392826637593 3.193572117095816 3.5550820762761943 1.824591947920759 +3.3563174437212444 3.783461610688512 2.6313414114267912 1.5954015700394586 1.1205460697123404 +3.966689086197758 2.3035374824590105 2.498072896816795 1.5970836233030585 1.8915218550166368 +3.9415014766106617 3.831977637215832 1.6086346582994797 4.849487424258285 3.2427029037546173 +2.4256813158165453 2.6833969415938848 1.5195473773276968 2.6077249952651895 1.1182789776929196 +4.271522695357305 4.2379108444388125 2.4975813745583846 3.0046888512615015 0.5082201781220117 +3.7651878288743883 1.8768375286436396 4.460555621371547 3.0667366173973436 2.347040321814093 +4.445638090929842 3.0817656018842006 2.9823829021133723 2.1775348201491282 1.5836440892501937 +4.32449381549734 1.2073949580790413 1.6403235653653403 3.4780606937436582 3.618505636300523 +3.6236465885593114 1.8158413517484853 1.4784322689086236 4.586243127177097 3.5953648083347636 +1.8678908084595314 2.8687768716644095 3.555629611829899 2.521807007421509 1.4389447831322457 +1.8346264769253726 2.5921208723113924 2.546734661909357 2.6774651001196865 0.7686925305451436 +2.7514168580299176 2.2801725661514705 4.392949945368943 4.670029038712341 0.546666266195399 +1.164418927469769 1.7433871155009997 3.6251944279255306 2.3899314872772073 1.364213581258928 +3.5391109228422857 3.6720327841187905 1.4863642994943014 1.0286247018686945 0.47664846631418306 +1.4990104072339245 2.179991747466744 3.628626775764395 1.1749745747053746 2.546398379968669 +3.3190946729943054 4.887814244401834 3.326049850872574 1.3687416130533463 2.5083733038668767 +3.665747943932765 1.7796754911299777 3.9059961251864266 1.2267414315973597 3.276533993466353 +2.597561601059244 1.69645883742864 1.0893452824504575 2.8963792118687803 2.01924684293222 +3.7475559927541044 2.4424840989588152 2.463966196937917 4.923157544222448 2.7840320994078946 +1.9914090560494682 1.3188921294565406 2.0067787353425945 3.1298923184329706 1.3090695692269758 +2.098022659804018 2.186803214965109 3.70086725675883 3.312425330706909 0.39845842554730526 +1.8597407352196371 1.7148808074272792 2.3104273974568925 2.324481676432704 0.14554010250627517 +4.701154817762885 3.9046009449597876 4.957816383717797 4.991633413242635 0.7972713865199832 +1.249131558239263 4.791551858964332 3.2757379840692695 4.785028569569606 3.8505453715634927 +1.4971170222299395 3.3746035129529535 3.8528297832703355 4.89879735056639 2.1491867472796877 +2.1972883073207745 2.4393286610303284 3.1211622969052257 4.414403483007478 1.3156961268678287 +2.5282556336073645 1.446778240552283 2.3848380742622948 1.5065717123906164 1.393178076946565 +3.3054212823130453 3.2871761281623795 4.3264632121645485 2.9549886258603935 1.3715959414230325 +3.756065088176779 4.730522856131831 1.6118200618468381 2.8271148508684614 1.5577257029885119 +4.1400914001638185 1.5227069600073508 4.004915173890772 3.774884403082927 2.6274732088247137 +3.751139015560228 2.862049974737703 1.4758368846324137 3.2572994826335995 1.991001835907705 +1.3506236434648913 2.5708563816052266 3.2160553103137235 4.391721665415005 1.6944495606970995 +3.135422100115333 1.0671938014924542 4.5641379646344475 4.166130854581972 2.1061761452634515 +1.6579070051779774 1.3930437799576865 2.158780230051287 1.0937101046773714 1.0975094077219125 +4.4953940246985 3.758462069839212 2.915808910310843 3.9998943612871534 1.3108432290366543 +3.822539241937823 3.3850925489056425 1.6838354136465106 4.933207441318254 3.278685435271333 +4.952350620354965 1.3601675324541058 3.338694192247651 2.399271456545647 3.712989955999718 +1.3328932461363592 1.3004149400853473 2.833057215447264 3.9772996880555582 1.144703313738842 +2.2969883246477822 1.8889794295066888 4.619483539037043 1.827601757380493 2.821537726357741 +2.636324651125364 3.707839775366618 3.230767690413392 4.973690846826442 2.045953516245807 +2.7993661050989567 2.0709458617343386 1.1610985022205735 1.5178766452776515 0.8111021478868283 +3.986137396825674 3.795251386012267 4.565859184518249 1.5121382557360459 3.059681189275559 +4.821003630268509 2.2199491170508643 2.5176019860987613 4.664946363653023 3.372917499219893 +3.286847260725389 4.5770361004688365 3.05747700485925 2.1921367183558838 1.5535124890532006 +1.1632771108400042 2.869860237074405 2.8147462841867257 4.3759351002988875 2.312949737089346 +1.9161012403968356 1.5258710740040398 3.155152118249977 1.3559298884144866 1.84105410433728 +4.332281180526984 4.626015883043104 4.781036655031018 4.56083538513272 0.36710853262632953 +3.8231492266099187 3.96408476915675 2.5796920595005965 1.214111750512184 1.3728337144205989 +4.204583782766525 3.21699337047138 4.79191164885791 2.2947070924907753 2.685398558649735 +4.289398052685011 2.769436398345372 2.8710036819229146 4.1753012148398785 2.002866816599689 +2.2823611660409697 1.4067144372734979 3.8398322259865054 3.528990469434575 0.9291823239910798 +4.058600155307722 4.89697723469844 2.7656477804155246 2.849027787924327 0.8425131173458836 +1.6630927559653137 3.659175470289643 4.955838437060246 2.759583916203986 2.967807292060241 +2.8353860750952156 1.3853304295665478 2.5617066412436595 2.8476133620694544 1.4779729456735398 +3.916604020493705 1.9130671041813954 1.324582658299732 2.1680053514249242 2.1738265833098995 +2.2782499206032094 2.08838173173098 3.8482127884030817 2.0585898399913067 1.799666698760544 +4.566717488195261 2.204836552633843 2.1145514185549836 1.0024394991885166 2.6106080661342954 +1.1164825001252403 3.5492281161355397 1.9534133380702468 3.1976073024193505 2.732447593850625 +4.966532392965029 4.056362791776694 2.4916190232868622 2.9603834825478392 1.0237913953504245 +3.7332555158690277 2.563824646236559 4.200025852771262 4.251795666613286 1.170576213868448 +4.563144824444997 2.7604423179485895 1.3452560540352145 2.1222560255696203 1.9630245242209525 +3.590884696590625 1.3638520388464146 3.3017716167322733 2.29689087625855 2.443247789569093 +1.0179259770934883 1.3445095732959635 4.765907084375629 3.309190086954001 1.4928768388201432 +2.9384461682079 4.861122492799037 4.428189089217449 1.1904865014952488 3.765554712879142 +3.6992562649213765 4.134715963424551 1.2873188800774136 4.684487940949268 3.4249646388197106 +3.3099811956211447 3.993976402216097 4.304442474769546 2.726607617851934 1.7197128476432026 +1.67848334818559 2.36247632191929 1.0408900315234217 1.77912376684644 1.0063972556033953 +4.598874929937523 2.578457739725858 2.8887602765870346 3.050003716849184 2.026841155475774 +4.909871318110278 3.6081141304462125 2.058421300733403 4.458947357515935 2.7307685960049692 +3.940795021069433 2.2181500640674194 4.089646254203066 4.839018686599173 1.8785804987595627 +3.654679604340311 3.7907848738393444 1.3651086388854767 3.514842237295302 2.1540378800098803 +4.822773010189561 3.717542588639858 4.680906481961186 2.38638007248413 2.5468383789527365 +3.8018099902673743 1.3300006750451003 4.540378053056932 4.981595205238678 2.5108791022665704 +4.647953742665023 2.5398766328980265 4.916190139228448 3.262035655631892 2.679592535503516 +2.4553168178000493 4.400893357543569 4.5201957679949505 4.877048320064436 1.978032309119058 +2.9518589739719783 3.40973779043177 3.6154365312908188 1.516472906341698 2.1483252336231993 +1.100805901978057 4.074318109984786 3.398466925491107 2.9380247894966787 3.0089502840299907 +1.87810532093249 4.321333083876242 3.6513705265872245 2.3577385438400866 2.764569696789253 +1.3488127459697385 2.0284666147047687 2.5986900594785527 2.148438345384741 0.815264366528373 +2.114317472780298 4.265209028351335 4.4785890589168655 1.030956342517015 4.063558272132616 +2.689763911291691 1.7729647096192265 4.882216729090462 4.8064715902019355 0.9199228784265074 +1.0992544238598385 1.72619110787645 2.247416148661012 3.5163930716105742 1.4153981901727457 +3.9925083024610726 3.8470599069229454 1.9039264048597957 1.9850361748265937 0.16653537326550888 +3.201741556150393 1.08562893755344 2.591324645292195 1.9546426860682087 2.2098182123845724 +3.7362349820066534 1.7540259307166126 4.736679185156446 1.6486211761482386 3.6695033710320937 +2.940498370721554 1.737290851832343 4.746959557493334 2.9487584478906044 2.163616316283462 +4.008832517255707 1.0651612028252542 3.0742459452110786 3.3248474479327057 2.954319197474614 +1.2835810804829002 4.896983400613575 2.468250030230358 4.328622256144926 4.064192557701968 +2.0071888753377194 1.019667763782762 4.459157733014818 4.4591456032192 0.987521111629453 +4.3534651123124215 1.169774882850532 1.1681245757117833 2.37087497568812 3.403306039987344 +3.188157865001545 1.438382281074452 2.318631725436486 2.830810631475464 1.8231954985405936 +1.7578981771133813 3.6807829754309322 4.300277888970873 2.1725988824944844 2.867839587947883 +1.5112795466731566 2.103574095494569 2.8739730544960604 1.396398546175769 1.5918665962327092 +4.928323267070137 4.151508936939142 3.0542355758736326 1.1628542543531424 2.0446916165753364 +1.6981018104902166 3.6050014438327986 4.075901436248657 1.6955342632401629 3.0499859163574055 +1.0751408390011137 1.5625029561291877 3.3715241358299934 4.455921580321932 1.1888816807538944 +3.920480825826776 4.129458679372651 1.568586869245272 4.715422440495777 3.1537669311095478 +4.4726305625817915 4.649973668785854 3.194448114090314 3.8818842766931625 0.7099429941708245 +3.0936718587979763 4.3830135828679175 4.367010295694838 1.5197268672998336 3.1256079413516433 +3.064298209869503 3.7761511431527763 2.412830448846329 3.5851786498299814 1.3715447141721653 +2.013209525434533 1.048975309583661 2.6686353597289747 4.005049006725508 1.647952990499462 +2.702483479794905 2.8510323677740357 3.7754607086198813 2.1311711358858894 1.6509860602444741 +4.762392737520491 4.410929250878138 4.3262162313245796 2.905460868477427 1.463582038527989 +4.358040359720013 1.8864108723089612 4.023127879649547 4.407519978284636 2.501341561748996 +1.9814477354311335 3.3065004155764663 1.6106766766017908 1.7353811021959076 1.3309078852133562 +1.2875391134500136 2.4052840067248042 2.0582041870706087 3.8429344549478173 2.105852743075576 +1.3384708598263297 4.534071241552137 1.9151556920160178 4.49049669108283 4.104173858544564 +1.251063730561893 3.410435560526264 1.982287499283851 2.772526073321239 2.2994268207404036 +3.180784371461979 4.651798859763909 2.3245550082188817 4.3357088630958405 2.4917109488824423 +2.6132223142085333 3.050648253598047 2.5844306890624327 2.428650323165944 0.4643371349026935 +1.1436790492955593 1.1469215467906326 1.0142492346684633 2.885811598841199 1.8715651729976828 +1.0688992879061976 4.077301185628111 2.342665859078225 2.3681023512602963 3.0085094304906774 +4.521982896013457 4.062621454398013 1.7483384169132408 4.332641502030316 2.624811492238757 +3.4054233323453893 1.5509817413611584 3.994005215815176 3.4947214528530415 1.9204785576334233 +1.3308587281553872 3.445337456729438 4.573080955061072 4.74786308164594 2.1216901482934927 +1.8990999084755469 3.3951707372341375 4.374419577128724 4.409124935288587 1.496473316349951 +2.071406142845575 4.273835959272368 2.400062573505915 1.2900732489086737 2.466327917574141 +3.7817942156246893 1.2110472608856568 4.995749400808453 1.2748487867284322 4.522592319141875 +1.8758336504792714 2.9602870055757564 4.065293656726091 1.1941113082354895 3.0691574019043126 +1.4894845645407395 2.688821503284535 3.8454059761743054 2.832149734855145 1.5700628341590572 +2.9438980134133876 2.9750819753466735 3.9286124758986225 1.5345366356356336 2.394278924522536 +4.16973063532445 2.692248893621483 3.93858425681883 1.5113584359962227 2.841544911194193 +2.5688802148417276 3.517380876664836 2.8365237751757295 1.8653476144518288 1.3575111935587458 +1.8113087665044678 4.053168966164176 4.230406071863182 1.1677269805541521 3.7955158241219036 +1.8751058409257904 3.4791276123841377 2.0830888539537713 4.2395037867305465 2.6875660374426222 +2.919270683120832 4.157421533455823 3.8433449584223704 4.149533282822433 1.2754484772754167 +2.144256388421041 3.924449942404627 4.517340569014198 4.352997722626996 1.7877633122992982 +2.031944656593048 4.676213639308045 1.790548978281664 1.0711418657922849 2.740384105640834 +1.145383914271461 2.125851979811686 1.3193382418002715 3.2825293187544418 2.194410360934496 +4.606681382412649 2.7739734926738304 2.3042993361292288 1.199660618593414 2.139870301067353 +2.7064716604481935 1.6732483218012582 4.520738861081297 3.032232185394527 1.8119609794608709 +4.905426285136181 1.435904748509159 2.3338556869508205 4.03871743353763 3.865764254076257 +1.8036878700879635 2.553770091597785 1.9311511258659824 3.540889620281767 1.7759170474515709 +3.8984306523543966 2.367560519811941 4.031691819125513 3.8040711650476857 1.5476997528181533 +4.824563462353821 3.822652691098808 2.2213844918568566 1.0854944159326787 1.514619245269203 +1.9250601980609878 1.3682714191862013 4.072695778668452 3.749982744221538 0.6435506560347919 +4.190220387286518 1.8022137315585929 3.594579532977713 3.515242623028478 2.389324200078583 +2.8409121892380096 1.2931149876798527 2.3873377963735023 1.4021210593364941 1.834755622988825 +4.645785796071599 1.2471909721933745 4.3261275236454075 4.415825509657639 3.3997783024171606 +2.563375228515979 4.876772894358091 2.2033869879949677 1.3887567421335913 2.452637600175757 +3.6508933274514774 2.2876133120684012 2.310913735598749 3.9659456409440046 2.1442161756813674 +2.642272407497544 4.781483174350159 2.19392617143155 3.0350237134374507 2.298623018284321 +2.010366459087508 4.507247540134919 3.6844653930464055 1.4942160204091004 3.3213863742766505 +4.832650655297499 3.660559499457493 3.098901563777525 1.8476596692143556 1.7144690012678534 +1.5665747059412318 4.024182906657619 3.2391380564010723 2.9028667632038783 2.4805072970779487 +1.748457787118157 3.8007002755079715 2.3650674465759813 3.7985799351077656 2.50332924041745 +4.119523126771586 1.5394792743363843 2.07313557534503 1.7728401264786302 2.5974609981862193 +2.6698332201768484 1.5288801234727987 3.18388367117138 2.0337019601500854 1.6200901015827587 +3.0000553935141863 2.0249670410641754 2.6996348587948207 4.4892351095058025 2.0380054839054007 +1.123656105731199 1.0485787726318891 1.2652872122405086 1.4615584704415059 0.2101404595529078 +3.0922174058819163 3.6280754274031124 2.4021675971874283 2.4740458110947645 0.5406572822621734 +1.0947779031946672 2.5706144576647505 4.011690381242925 2.402832725882953 2.1832353264640334 +3.770650234190046 4.4370009309895115 3.0619568239875194 2.2717407568671626 1.0336656538070217 +3.6340406004350623 1.6018641583434996 2.0002980909206505 1.817269276183867 2.040402077732689 +1.5110250048314113 1.3401703939216643 3.6983270408332656 3.985393543820413 0.33406357958686683 +3.160006337816399 1.487318308252867 1.5205381432274652 4.83129903868365 3.7093156984984397 +1.895598795681515 1.1006311952671526 1.186974480606953 4.117350012292109 3.0362928452979676 +3.4774254896890633 4.172199019429062 4.1308222834221855 1.6384345004278678 2.587413209838488 +1.7576694222959763 2.8144493336022904 4.730861719223027 1.6626645892270426 3.245091279063838 +2.426836795950911 1.0960591907874018 1.8564136195852998 3.0455545052235413 1.7846638563889914 +3.4441957892342647 3.546468751590415 2.5632422598986757 1.2579869505425632 1.3092559648256044 +1.8079792654784423 1.906355322788749 1.624561276743012 1.3455892393226327 0.295809476376938 +2.4688968930057715 3.1810729501512447 3.7144707734894613 1.7851048668127079 2.0566106919438796 +2.0665553464851736 1.7441323446181984 2.63456232892025 3.6017210859867794 1.0194864655812677 +4.268682454109872 3.4326629020822965 3.9092317989470624 2.613914241972239 1.5416796894230695 +3.3904910426603894 4.078235991836066 4.021912831317189 1.7454140826177 2.3781168322744346 +1.5683938139213067 2.828619673687999 3.552054711523559 2.3329657849524725 1.753381598087804 +2.177037795276987 3.2375995906259605 3.1556835022027347 3.4920872186027356 1.1126359612027514 +2.064071207322364 3.651301009872299 1.0514181731417596 1.590218648229996 1.6761874591041468 +1.4369751158504642 4.174479305940919 2.792193236267826 2.9446532077366485 2.741746383906263 +2.800174165386014 4.9931443971948 4.866346243946843 1.870046189010195 3.7130758754451603 +1.6746169063675627 1.3682675007377925 2.2551098711019457 2.732827676829499 0.5675070574352903 +1.2688785971345125 2.2020995633486473 2.2788684421694945 1.8062542876723522 1.0460714654423435 +1.0423376535858906 2.9435252011342765 3.2405994449605817 4.403989820002947 2.228899112946627 +3.603051912244959 1.3090393526563258 1.3144530950033588 4.752448023367409 4.133074249394428 +3.9584855178269938 2.542401457508438 3.8607964069380833 2.162553907967009 2.211181053464371 +1.490851544825187 1.3495361140170736 3.144860504364054 3.0148083381478203 0.19205107893999848 +4.99846483404632 1.764166467804479 4.395351373633236 2.9288314891939202 3.5512485823060245 +4.651433443355614 4.182577138109666 3.4730579465256635 3.971247371704549 0.6841190965971861 +4.491078383370628 3.874581052344413 4.501583965364101 1.1215756428640398 3.435771415465837 +3.183225740585765 2.1186937393154692 1.779139852531653 3.8618670808153657 2.3390128450187904 +3.2219498310175623 3.7241640118566437 1.2918396300995005 4.730808555341198 3.475446209080771 +1.478589673607475 4.0983357958851805 2.0280545352422448 4.098183662292984 3.338937607660995 +4.91989277849123 2.1561529638049786 1.0628998497787072 2.520484610630873 3.124549743299098 +2.2239298246761705 2.4171298491615096 3.90057376133653 3.075894980081077 0.8470072855141888 +3.644127199436592 3.6335669544934213 1.4501393219872791 1.110899541661769 0.33940410623408795 +2.3297026893058885 1.679223042775087 2.702631766494883 3.182252832516028 0.8081832326410245 +3.200928501084338 1.105668311839067 2.8963765282988705 2.0144324574557104 2.273310494572075 +3.838188751314475 3.0349517562698707 2.717402518664099 4.985485321927895 2.4061149749480473 +4.316199814372444 2.5105028016171085 1.8975916827227732 3.608307432293801 2.487386193920017 +1.2708652229367297 1.7249968249577838 4.559832542730156 1.9867765248233655 2.6128246751821216 +2.829367488286635 3.063436502400401 3.784137099602432 3.8109646948314446 0.23560140753815997 +4.655215916277935 4.467008612114897 4.958976318216845 4.8983829589438 0.1977208752972499 +3.185841680628582 3.2901812748895987 4.4585216109755414 3.0441766877956526 1.418188391101577 +2.7778623597075742 2.5779425732930212 2.5405004696515645 1.1404195964198105 1.414282281791521 +1.4291978036886954 1.8434293478162833 2.851768144133422 1.4383220254833602 1.4728943283471663 +3.3482644389872744 1.6067258030464808 1.5803710596072928 2.692257465971041 2.0662159134831506 +4.819596830436829 1.9233020409214747 4.375450262998605 2.1821741592025683 3.6330405413725453 +3.8606301970021897 4.771050390375566 1.9670265985294155 1.6436223403161705 0.9661548751274176 +1.7405679134519305 3.652998279568623 4.942361647996825 4.8736771342151535 1.913663363206458 +1.7105514599888298 1.223265501357937 1.935510039637017 2.9544510042166525 1.1294637199916189 +1.7475515976132292 4.020457615621609 4.258055814460491 3.711980874282243 2.3375841390181846 +2.804411125126532 1.3383764238270008 2.593367654212815 2.2109989685062206 1.5150787297112296 +3.548233153998681 3.0075838875032197 4.334676418217244 4.290346655764366 0.5424635998859362 +1.7938641286019013 4.879732857503297 2.994906543193253 1.4530305107481438 3.449632953147362 +4.682007034331389 4.504591429352741 1.2697806631395578 4.329574003411652 3.064932557506511 +1.5808841326903957 3.871262643881399 1.6585227361954482 3.605106556008598 3.005831381179568 +1.411257601376298 4.592792179637682 2.6708017261415566 1.808216559005674 3.296394309428967 +2.580241464542453 4.911085533888331 2.2308990287043797 3.569994352984512 2.6881239486143054 +4.771388681968476 2.3790420488935897 4.598385432583244 4.488378770756865 2.3948745016035664 +4.471004406410123 1.7129371857995004 2.2398703161855966 1.5012012955709078 2.8552699899348695 +3.6952277330618255 4.252622803638996 4.203315431588951 2.429492211760428 1.8593380757426976 +2.1704066260052985 4.457507779060833 1.4611030066765305 3.230535383306496 2.8916643338697394 +4.491057428832705 4.993656480887317 4.992984487072087 3.4404872039340115 1.6318252422601207 +4.39480126628784 4.840760315763445 2.4421318375592 2.4249065624858352 0.4462915906787157 +2.2740875812533825 3.282789681833214 3.337759650386233 1.6652694205510565 1.9531265951310697 +4.2786428468792685 1.4592957056836937 4.769540086392656 2.461659664110616 3.6434915048783068 +4.684253744222236 1.5542826223442003 2.77987333335558 4.298943079167653 3.479122319843326 +3.6962873892513994 4.623295869666526 2.047949701544513 4.94967175037094 3.0462001857079253 +3.315294539414013 2.9756698574074676 3.017205577693213 3.391171026067865 0.5051683691662631 +2.6580498182095593 1.2952348249658723 1.209853674368384 4.856054888636232 3.8925631659278332 +4.53749695177515 2.2256892918375417 3.1319364906374347 1.271380237402977 2.967511453726176 +1.5541614330280251 3.9285085336792633 4.4842917119596635 2.884190545996687 2.8631884142834574 +3.1893987675627287 1.9785583468022683 3.9233005034472397 4.038775599909114 1.2163342560539219 +3.951186140397929 4.2216086562810835 3.744251688688708 3.812428110886314 0.2788841365876537 +3.3439417143062324 2.3128907194837915 1.791843694217654 1.812359315208758 1.0312550822318383 +4.040729933996733 4.506325210488841 3.548328075368661 1.1878079526444028 2.4059996282788383 +2.5198301366054876 1.8448572455296839 3.536457413201933 1.5401449375949472 2.1073328887366896 +2.6818966814457377 4.754884042494464 4.067097914281796 1.4990187848961058 3.300349529042965 +3.3587437501221467 2.399716386409876 3.712022518655217 1.2231050804827883 2.667291416097558 +4.75006510009689 3.0448228633066443 2.0548051342399285 4.266903585436301 2.793068320667934 +4.975505643372555 4.829581327037969 2.5506438182553435 2.5434184356288427 0.1461030877559255 +3.6085940263019762 3.3398447098292356 2.7024711058188235 4.073550834847855 1.397170647579918 +3.3176908874898086 1.298033430431793 2.9425993220612354 4.094187528070565 2.32490250119652 +3.3257311849045474 2.9214428373729304 4.471889398909799 4.787876105425802 0.5131244163403997 +4.133121257828247 4.888498720007441 3.223238398433494 3.0260189605947705 0.7806988004536074 +1.9365115170545515 1.256585412197107 4.032215447160672 1.5229569031994243 2.599745746897019 +3.583920026713378 4.5951539936053605 2.3659183927934775 1.1996502561260622 1.5436241454453152 +2.16544066654376 2.886728216334115 2.3204902755871712 3.2449512079622376 1.1725543675968082 +1.8887482564594813 2.672852457758733 3.713336425687503 3.681618686033649 0.7847454450354503 +4.00738218930633 1.3015919885806793 2.295718273828101 1.541577332245371 2.8089195734506616 +2.3670053780607825 1.409942249059172 3.103197203001286 1.7391698565668348 1.6662954224012512 +1.107885186735734 2.552518255131186 4.223494869409008 4.081277446995118 1.4516165118720954 +3.117098833861741 1.7022642555380556 2.8337813923605277 4.031185440460476 1.8535191767085937 +2.0506000202817902 2.442290937716466 4.787503254668682 2.0617428684404286 2.7537595134528385 +3.0499768619675605 1.7959959023144618 1.8829469890505557 3.644636442521575 2.1624102241812317 +2.6520892762757415 2.9722070656526984 1.4507676336660404 3.3113655464380556 1.8879353781544455 +1.2270101110590041 3.5188295546381503 3.1222507888461117 1.174605677332663 3.0076166381987015 +4.488937000053888 4.4493661534975 4.36953842423344 3.43008474344795 0.9402866957681548 +3.780977961577379 1.5289185650239032 4.75625164353424 3.9626817272666304 2.3877865770645808 +3.0571853883842195 2.533337973248419 4.315253590341731 3.500103825639454 0.9689609141955303 +2.279536041789367 2.22651397359712 1.8168728773462348 1.8358525301471893 0.056316666590167215 +4.846766310789654 3.25752284889398 1.7388154625608818 3.2257428360043088 2.1763841101867833 +4.91725756051196 4.3626209602901 3.1076221845726124 3.357499936112091 0.6083261041744706 +2.7956493616010185 1.8248296946446843 1.615727085418957 3.4163966795666423 2.0457032563490722 +2.151925403685557 4.230419535273104 2.8413603416436963 1.180244098375126 2.6607226515919624 +1.9634595917735025 1.5821855838623788 4.499762556034258 3.1309764024493476 1.4208959861138273 +4.111443660952886 3.516759107512749 3.399660872006221 3.071029400863988 0.6794471001670426 +2.886267134333895 1.5257267631489553 3.004479631007494 2.86286471497653 1.3678906703631362 +4.791488363241406 1.960893452403893 2.807988585164141 4.3268014249835165 3.212329371602393 +3.9962203543800197 2.9772292307438053 2.8490002352937402 4.453985275629 1.9011364732047433 +1.4873583061851572 2.3468185329499565 3.8320550229112187 1.6270153893600474 2.3666160793255173 +4.536449368795146 2.0701660381707097 1.8389734904383115 3.436565315192323 2.938512056370845 +4.659216866266022 4.357436989540059 2.338112243547184 3.534917431668383 1.2342664835077375 +2.4440333016377362 1.8114366278271672 3.5095581456144194 2.860740410151341 0.9061694132818832 +4.624406917239863 2.8382491269721903 1.972937250292106 1.636448895907339 1.8175764260053728 +3.0326938085795185 3.341224951348646 3.6622493763955593 2.4114018421010974 1.2883365321642317 +3.8553484865317684 3.907476580977904 1.2635201886496117 3.0059619101786312 1.743221297241288 +2.67625335941238 1.4252822917343417 2.831503435168606 3.2937056550293624 1.3336264485273759 +4.597434963393381 3.082521586477941 1.3800126356070241 2.701608114628738 2.010367416600253 +4.403489324524319 3.965449991423871 3.2182857845487947 1.3156995748770934 1.95236081259997 +3.9250257181308204 4.972246240233606 2.1728691199555827 1.3553346077891328 1.3285456335769823 +2.738347600211825 3.2809513713446976 4.41634158639506 3.0573957006530548 1.463267840425237 +3.548691540729314 4.395758321371394 1.0314331848834941 3.8588459286698558 2.9515733015788137 +4.683888527848494 4.671509337728047 4.38395579368804 2.0670281213748622 2.31696074267101 +4.0193520274113705 2.0928209961051447 2.267534345079724 4.9436752629463605 3.297461451915081 +1.0003509677100277 3.078455551940984 4.16141502509476 3.941074769862532 2.0897532129602094 +1.6132735787669645 4.388383903708711 1.5386233786695382 1.9739697062809576 2.8090503271680687 +4.267822930890123 1.4715336850233904 2.243180718798746 4.236788060241489 3.4341962346966053 +1.7294589428653295 4.851425582397578 2.4520240057375 2.9967855609401606 3.1691388184140976 +1.3552972724238694 2.9992351644591677 3.7823858352185105 3.4421412655272987 1.6787787704381474 +2.097851552121082 1.1271594862872312 2.5243914025736394 1.5688544616914881 1.362091748768492 +4.943052201743376 1.3609935354860663 4.573532908159637 3.8397709207797677 3.6564396539027895 +4.316537747335234 2.843590055452087 4.848548058392337 3.6130454196056885 1.9225092128446775 +3.9190434827388976 1.8958980453047691 1.370688391632712 4.676098062269938 3.8754161778772387 +1.037407150700969 3.3559151953513857 1.2053379713959922 4.904127198529675 4.365377566702437 +1.5993564576892347 4.749001720498578 3.2918825024831793 3.353659819769466 3.150251056418905 +2.6612901183017157 3.1410829442631947 3.616937199909804 4.032286112278932 0.6345989874324727 +2.220403539604396 4.009441644051286 4.552220134861021 1.812982829753563 3.2717087817920607 +4.294804070275623 4.632213196131019 3.3149461383971124 4.090590016199231 0.8458536181765794 +1.030194035009207 1.755427724935449 4.318462976268821 2.01138857694815 2.418378834881927 +4.146841937449539 1.5402005075924947 4.449812740327037 3.3324385991644663 2.8360367619595426 +4.953022586173892 4.619010196083188 1.805849962458851 2.049480981997845 0.41342514487596693 +3.9047152463265835 4.318734064838257 3.76892484538448 1.6723348430910274 2.1370777290025416 +4.559865933307366 4.353003197895255 2.756477406819373 2.978162713073111 0.30321043239142437 +3.5229411432509186 2.1834445748563946 3.8116082221498586 4.400186651325522 1.463104789149293 +4.395648996446846 1.6127237322976593 3.4216267779315572 3.477574812242915 2.7834875980293368 +2.135156402378883 2.6049073285479962 1.7549724024501958 1.5321826493202138 0.5199049977990768 +1.9646851361782396 3.8760382220514713 1.1674308745678434 3.905731419549202 3.339395228708685 +2.1273561304525272 3.5812634547741964 1.7485600643882577 4.140169675292964 2.7988645981340285 +2.1983960410897785 4.018486382921824 3.3722238985641857 1.509966793233306 2.603983559622764 +1.7612031547749192 4.817012592800532 4.074471228056179 4.0379281992267195 3.0560279309067915 +1.2596689083948251 3.469246718405894 4.257856065928539 3.8519164169659 2.246557610454987 +1.9369477491529494 1.2911947440195881 2.2238236531596463 4.15597337940642 2.037203845537862 +3.162861859000596 2.2149486372918212 2.423203962344197 2.480605692840903 0.949649637789814 +4.359537949144349 2.8713113218491593 2.445558603469355 1.5770972911979726 1.7230912759057624 +2.492276493662958 4.560977296935354 3.1393233294625666 2.483275838116502 2.1702353154350154 +1.0112895579096848 3.43785613621946 4.76573994305896 3.5694996637883194 2.7054049908875957 +2.016051972735792 2.457444041436584 4.026147391421794 4.720094485974457 0.8224290415288408 +1.225442663460846 2.725728330909984 2.4509598794887837 4.684876353176153 2.690955201292864 +3.552016009700504 2.6195458746621116 1.5009890182321146 3.2177084969786973 1.9536187758737518 +4.986752874722908 1.3953015288426491 3.3311694257769715 4.253700869169866 3.7080435587886105 +2.0716502653028424 3.392200456247407 1.1361671762741241 1.8640359318808968 1.507861310662316 +1.5511156578916312 3.827052560729825 1.440242900833744 3.9515783271340794 3.389202621427612 +1.3732213474354404 4.6735370735384265 2.47021643026744 4.704490041765285 3.9854814593720422 +4.946394209908663 2.0265656209619003 1.031401493356742 1.3043728488879935 2.93256071544502 +2.8021121773157796 3.8371406643392394 2.9803347003984872 2.4798223456312023 1.149694127246358 +4.471850300872181 2.0202347912237655 1.1787016510530877 3.52095046198259 3.390655998394607 +2.0009783301012813 4.566816887776843 2.474671024135274 4.684894893746822 3.3865346680427257 +2.7756825927958757 4.043141638490402 2.730165633012441 2.517482577768661 1.28517956508058 +2.736150353784131 3.919934992779074 1.6677989737311782 4.6915840459409015 3.2472484097214904 +2.1880729302911472 4.656865716018373 3.927443724527833 2.6369111446815325 2.7857516325946117 +4.4323762534107995 1.8891620308923813 2.0246766356542953 2.5226842044404036 2.5915150241100693 +1.6638901749215487 3.329880357294695 3.689350990674479 4.376042506230855 1.8019624095138114 +4.203810436176533 3.052047444197308 3.2581754536934775 2.239952759066267 1.5373143613284936 +1.7773704479669612 4.240611374239751 3.960419129542357 2.354524528517508 2.940485220242739 +4.721753051193986 1.1013702114450559 2.9879851622956926 3.8297471628774997 3.716952403780819 +3.8136246808877132 3.9832300029742527 4.153387370581044 2.5741076094248365 1.588360956860148 +4.305856208082904 4.506749703161484 1.8182796017149632 4.420757926331624 2.610220608773218 +2.3005492198192843 1.9810367945813039 3.7232828036849965 1.2344621376205507 2.5092462010952468 +2.3085409197838316 4.2103380121168055 2.39782135224183 4.63177339679611 2.9338326328838873 +1.456076437022796 3.4872355042611436 4.75758339758457 3.2302322463783275 2.5413399409594124 +2.2904321354843167 3.9996447272296107 2.953579708725039 3.6464440882679634 1.844307114398268 +3.523982729679148 1.8596658233374104 4.0320537555270075 2.609512502309292 2.1894232989171285 +2.584736423458007 4.00930610694713 2.5878818829553842 3.002698172706724 1.483735602241642 +1.4765791096114271 4.410457833266931 2.423759593767132 3.8882204609622013 3.2790684647723025 +4.592716307328274 3.1967626018096174 2.0301716573863824 2.7621281507261517 1.5762128841287653 +2.005500118665349 3.909225743467729 1.0517764033583554 2.1679516207157703 2.206811811272561 +4.196803092992782 1.1032822823205906 1.9320935290707495 3.83213034414454 3.6304284739817816 +2.4702197004249355 4.6669197460866005 1.370515580426014 4.898211307814883 4.155734379823576 +4.181922374743877 2.4989151581015636 3.0086347813654606 4.869728187713776 2.50921939224598 +3.4679924292176034 3.017090899597423 2.8499185885571983 4.730987144978288 1.9343554749243843 +2.823433146381078 2.5219674420524867 4.293408484127648 1.2490260987051296 3.059272083283413 +1.2175267781580734 2.224060701041362 2.885813733874428 2.482830974399094 1.0842073797706677 +4.255110836494854 3.565650079823 1.0465448463450517 4.599564600999837 3.619296273028457 +2.5451129628596627 4.400181189061971 4.290150430003998 4.406549944291935 1.8587164847797115 +3.130942785787824 4.237889211655432 3.6233287247656034 2.758375967239637 1.4048037807796665 +4.822011969715167 2.5483981575753893 3.8307776582640396 4.039921735295155 2.283212870432796 +3.6426900795982418 4.055666691813436 1.1771865031627802 3.6754502022161146 2.5321672915201296 +1.0969624062296837 4.231122929647075 2.8126272845691873 3.345506072077259 3.1791385607934814 +1.127314201107969 4.136168328568914 4.042604501635788 3.223636081062193 3.118318847429745 +2.878168998870906 1.0966056125745731 1.6692561226961447 3.0773097705768078 2.2708111270428675 +4.881242358287826 3.0023140564819397 3.542515169769533 4.289738012708489 2.0220567599196935 +4.962440994230636 4.517288838455677 3.7023312658362753 2.429170674192545 1.3487395352349194 +1.0613413544637824 2.074055455824799 4.554233375502573 1.2306220936167462 3.4744757596181617 +2.4221462148772908 3.538361168852478 4.93922888589856 3.2993007915137422 1.9837590524633903 +3.9862461552036796 3.1282269201568607 3.580729968000089 2.4406138386824243 1.4269063725558948 +3.368032532350022 1.7665885255695688 3.220125511778665 4.834290273934166 2.2737965577943773 +1.201274236051964 2.9181767288514875 3.2692594909792034 3.7487638365358085 1.7826044393495957 +1.6390760126722097 1.84078910970601 4.310866446905886 2.1988038792618467 2.1216730339894743 +2.5330908956714127 3.857110282978955 1.1788346180232665 1.1400379281229478 1.3245876796624152 +3.3415017717941975 4.512888117955273 3.943962706647533 3.5181657337999117 1.2463743555043139 +1.9627897750023027 1.6124821404975749 1.7784730236249646 3.198399859129585 1.462500481018199 +2.8275084347154817 2.6900898441850227 2.9461048379719315 2.5083010689401255 0.45886382424618405 +4.842692936557944 3.8662455915562783 3.289755828802385 3.0908580967655976 0.9964987332506644 +1.9167212096308757 3.7365099148888583 4.995395586276317 4.438878167006625 1.9029825458303926 +4.844163202622996 2.7419014676838134 1.824591710315699 3.8453895371745745 2.916012390101773 +2.288863560080482 2.3944029998052847 1.0143043121281474 2.7986866753326938 1.7875007668397984 +2.084205050211448 1.9009638801575903 2.6250205905174333 1.6560557269176508 0.9861390537310912 +1.1381502098370828 2.850937094872716 1.1520047158307185 3.0572246202141438 2.5619332149001965 +2.139216508358335 2.9011854980264884 3.856019566209982 4.710473263477252 1.1448527686954395 +4.292320495518081 3.6497323461144404 3.81598761208835 2.320699062674862 1.6275157067632522 +4.335886811323498 1.9743644535685716 3.429264725427993 1.7190991234321982 2.9157253355599226 +4.197351787744029 2.4997674340342213 3.1757114800844484 2.4108774483478164 1.861924739097383 +3.5795023091634324 1.2990903748209437 3.1015291248756527 4.470588532028053 2.659812446508989 +2.0615953018202964 3.0991439650854478 3.9765312460444573 1.9246832492926025 2.299258017365146 +4.741424389691794 2.7466357191534723 3.5967823586318644 1.4971060240920875 2.896173777578693 +2.4011007100546697 1.8980730681296394 2.5735308363823055 1.7105545924025622 0.9988817778966848 +1.0873738551079333 1.9586799217830597 2.9575742285574815 3.3728645685177585 0.9652151720156508 +4.807345459390454 4.09462098660691 4.519008660182857 2.610041341112014 2.0376781883764434 +3.4146656146474057 3.0492079376471524 3.061638972152087 1.2768146152528312 1.8218554549302928 +1.918642188091292 2.867206198730487 1.5960326824232682 1.342203931796425 0.9819382449648751 +3.860572177906715 3.625559095887543 1.8021132940679947 2.3481641991690507 0.5944768621921567 +1.301264757215268 2.628710450398701 3.03756066025694 2.3473971574344885 1.4961409455594084 +4.638763896787833 4.701648254179945 1.5205895082273968 2.5288205917758892 1.0101902594254144 +3.4337508177208607 4.220473039380438 4.799760907800019 1.4218528464380893 3.4683129508547657 +1.3982779981831 4.727028679312897 4.567521271143196 3.362143076848796 3.5402708495823476 +3.14035402603225 4.0987599690901 4.7381664255066465 1.5651031286291732 3.314645175230608 +1.051978747114588 2.6762210682094336 1.1448088726032166 4.850801720445352 4.0463002985310705 +3.949012208063333 1.2465032239883187 2.085965730498425 2.602073210764604 2.7513490763974082 +2.327417970899675 3.42544143808555 2.0913600766839706 1.6286765146887148 1.1915249107893244 +2.167337558147545 2.1251942614247286 1.9504623938369345 3.1826039239839146 1.2328620392288865 +2.0736285713648375 3.591748331880585 3.907360666710402 1.806364093070715 2.592079128752457 +1.3028950580275724 4.301039033731303 1.2009428045250248 3.4050369542718286 3.721142071998415 +1.493557319652397 1.5144773297170664 4.565343951660627 1.3474528328190387 3.2179591202407583 +1.4248735656023719 1.190815589876848 2.1217523885626974 3.507792997422521 1.4056641510009567 +1.3504096053425072 3.1458495275597915 1.349099502791744 2.2312989692591794 2.0004700479954796 +3.4810000862008517 3.3282813755879084 4.575909665385643 1.7260013054003687 2.8539973133983914 +3.8694601350705695 1.0671374254911576 4.196655320155418 3.8140528289895914 2.828320567911423 +4.358586802131766 3.45292698096376 1.0177918742389758 4.719719327186665 3.8111004419413863 +4.815267569141454 4.679463144242552 3.1642946873903655 1.7209681784944593 1.4497014358493843 +2.1938864099385853 2.533349764112197 4.622103768245884 2.7301342087519713 1.9221821409217152 +1.5346170358665572 4.554598929717999 1.9718582748099909 1.1941105845052364 3.118522423995845 +2.371871351605794 2.4867169529404034 2.3286481902793956 2.0393909386743756 0.31122221924534554 +3.692896865391208 3.5696730839207285 4.720526295044232 2.3393702703481134 2.3843422812730783 +3.4332020919044206 2.9867393029895424 3.864084106828669 4.039296948278127 0.4796129290317809 +3.835493981651914 4.3092488925228505 3.187549367455472 4.695363537236199 1.5804895716726106 +4.551821014098294 3.8570184322591827 1.7616774404183415 4.924937277416332 3.238666920832528 +4.416191867980326 4.1236745767526966 4.725387723626154 1.3023181448693841 3.4355453288637015 +2.6976959980158184 4.708855606757414 1.6622410772256 2.7685315778649127 2.295352182920614 +4.3565107141850055 2.921758395447109 4.2647449007402285 4.616047527041831 1.4771349807550336 +4.3659475882780665 3.231476592035669 2.091039982617952 4.655110200571244 2.80383318403757 +1.9715887236647074 1.3812499376018907 3.093412780120941 3.7933836635400002 0.915674134157222 +4.09608372151073 4.637988599338035 1.2425270615793185 2.953240707846789 1.794492149923975 +4.277232408081028 2.940383788878406 1.583832621489802 2.7834203559395934 1.7961556066517013 +3.76121418414271 1.0679493779463374 1.1024510967890895 2.496839180162081 3.0328193885143553 +1.3479915567043403 3.761943232746893 4.536903613371599 1.4391943281679955 3.92720836089776 +4.721560481812339 4.860485428624029 2.30564178282542 2.642888910896414 0.36474068355307504 +3.5098027524811797 2.618178471235008 2.146751896176453 2.534227188306996 0.9721784614562298 +2.8798227835666363 1.2710918412229417 2.6185086713170524 1.5840715856247747 1.9126095600277555 +4.747167741458613 2.536983889181099 4.642668942725907 3.695116855969689 2.4047385758090907 +4.6266986435395765 3.285927898609811 4.954607024843116 2.6836485126782863 2.6372179952429824 +2.9168483456904077 1.8790700549572739 1.1114343218254614 3.2713562689130353 2.3962985202656952 +3.0516817664725524 1.421237234003176 2.4739967189178893 2.8900127484363116 1.6826819991536002 +3.0780267816704496 1.223696561199672 1.442557389282988 4.778559853545282 3.8167332901468636 +3.0859248626683593 1.367566460245337 2.2776188494606284 4.106087465118362 2.5091937106614766 +2.1594858792045133 2.0773786812575747 1.3738981710694316 3.6759560112018925 2.303521628131594 +1.1331502097605735 1.797277341008774 4.515487508813074 1.6697033763351752 2.922251216976896 +2.5730770022391947 2.3603257449694617 4.3108892119505064 1.107214919312844 3.2107307689647975 +1.0413536074146457 3.0490204520250703 2.854800647514276 2.1762421799529035 2.1192375404487382 +3.2872965953147593 4.48036684079344 4.970300910555462 4.798092436735628 1.2054345146468624 +3.6952322642729647 4.2253133146054385 2.2550709021931707 3.877121751089906 1.7064685395073063 +1.484067505311479 4.425787578862769 2.0062200718048038 4.899078932319424 4.125814995609056 +1.984300793144854 1.8094312723167283 1.8460185201652939 4.041136938101069 2.2020727095342507 +4.333588531701988 1.3475634552831637 1.6588791497399735 3.7844600223819036 3.66530214349967 +1.104994339941472 2.3850822276143253 4.411139724815218 1.7634554411353216 2.940893922978568 +3.6079957281511166 4.135613065227004 2.7425884664571596 2.831292238310604 0.5350218813507333 +4.297421302949282 1.018787882987672 4.210908529918626 2.3677261960677325 3.7612176510153184 +1.9954593377609342 2.794296583717371 1.9095786304244053 4.718571763159138 2.920373839986613 +4.7736202513833685 4.655974375350681 2.5194772125578027 3.7146344554705544 1.2009335483007828 +4.3401712998688655 2.634315010343317 1.7948314366633231 1.4207215522285983 1.7463974021240514 +1.8924879425907477 2.347075360558397 1.4122487415810787 3.2332576375224806 1.8768918774591727 +2.035653915593187 3.265134030184417 2.843586373289431 2.9116382716357787 1.2313620154299894 +1.3755696821401115 3.1724992570568955 3.448702435394403 4.983115637815104 2.362917639904862 +3.073940847702927 3.2210590877441434 1.9243773112015319 4.120856260383363 2.2014003613045365 +3.511275638213016 2.7732101168830523 1.7651961640563507 1.2519863002986478 0.8989577732208957 +1.8893128373694923 3.271717589473399 2.4775537613345926 2.811284793438327 1.422117892591359 +4.568735490535214 2.513857797237029 4.280680831817373 2.0180952912969587 3.0564383950255767 +2.6657423586596734 1.6851987204296628 2.391924206969107 1.1378424787130794 1.591912939710891 +1.7402401867857091 1.8716288953316291 3.608294747552411 2.352135492860796 1.2630119025095365 +3.3287101576845752 2.445928772991775 4.948482595470161 2.7091699178716597 2.407036402137181 +4.41360037392654 3.3178466198648255 2.1882259012234657 1.6899220300344227 1.2037371131531698 +2.227315344848304 4.8356722264593115 1.2069825148869615 1.9856071238716733 2.722091457604629 +3.272775246979777 1.1240073899600822 2.5076817719892435 3.3277134459941977 2.2999250530685513 +1.4332825883451434 4.7815247560378875 4.478518496926835 2.768723349152485 3.7595378786319626 +3.495436562172448 1.2651938421637081 2.0861625301087043 2.7501303375256385 2.326979982603639 +4.426790724221339 2.66289876384268 4.938183096654233 1.474312553354113 3.887121555679824 +2.2529642088870365 4.315339727554116 2.1972255987180622 3.35305062305116 2.3641751768580757 +3.710210161671268 4.752052668385685 1.46065588382341 2.2052610243758908 1.2805751146005302 +1.1415352172075952 3.367804208146171 2.0123322939279213 3.092456502210366 2.474457905346632 +2.8303602062787268 1.960051532353145 3.0478854383190366 1.101218089225458 2.1323580740431765 +4.492316409377361 4.370399402778606 4.154902176330705 2.760694695818822 1.3995278686804675 +1.519916640528196 3.7932364143796566 2.5125113349547927 4.552018894907093 3.05410770623543 +4.084132693254446 2.7526177191338705 4.1385703080758605 2.2959068819137936 2.2733984755037215 +1.1283893952779 1.204987493305619 3.8342824542654577 3.8658635724853316 0.08285309680079378 +1.8826020392052647 2.647032444345867 3.478012271695572 2.282919259579516 1.4186617468276408 +4.8738824802932 1.569910243000896 3.426900451022638 4.116022604619413 3.3750736121418403 +3.004215503219726 4.678996117890635 3.431203247316447 2.3536747728062712 1.991471245250027 +2.3060434434181243 4.370552066287733 3.665284137206491 3.50750437827962 2.0705289918834726 +1.5823479294671277 4.843012488340979 3.311038222280272 1.046548183117694 3.969867567433773 +2.9946616279002543 3.961929610930433 3.187292634087018 1.9030456546053434 1.6077616910795811 +3.4980317291778107 3.363634435792787 4.59220201870733 1.3375811281610446 3.2573946297078464 +4.750599849971131 1.7487190008008846 2.2916971738448124 1.6949576825816184 3.060618671616596 +1.5071044520262413 3.1696588607709035 1.1718188421978142 3.9891754835888538 3.2713278048563876 +1.6126615565398636 1.7933281275645059 3.819280957224135 2.571190917912682 1.2610983927173434 +2.381481939942119 2.717596523244549 3.5591380510831434 4.862344463161274 1.3458528766511295 +3.9218949917061794 2.066522644710729 3.1322632628626383 2.142974161723824 2.102641070565171 +3.6832164414456 3.0620426094515873 2.570500715770544 1.120730383527683 1.5772415622870524 +1.3344863610513271 4.299896930491332 2.592268373449623 3.125127329475383 3.0129053274809947 +2.6643915614387574 3.5346120421423635 4.898451702649838 4.427494090510795 0.989487118394032 +4.1107954838581 3.8126863182096407 4.425484771148887 3.566488820568215 0.9092541546551288 +4.835145597456243 1.1213026704846354 1.6404400030435196 1.6330592450900303 3.7138502610909083 +2.3733446199707116 1.6990003448858464 1.1051611394774858 3.4137096821297326 2.4050231963791004 +2.3844781160993755 1.893323339031376 4.059861958678967 2.745358039751434 1.4032653234198293 +2.6095325027556453 3.5034462025134285 4.0973393198883805 4.7676439373025685 1.1173137351439966 +1.7193016863153412 4.916726737099188 3.6658232265026562 4.049634198771898 3.2203785208907263 +2.2447739623974816 2.848625671507883 3.460049347069983 2.1203334039458257 1.4695154626122868 +1.56642519873541 4.585677966618595 3.5247214786318852 3.515320634397783 3.019267403235856 +1.551173900319316 4.735537320397386 4.239885245291006 2.2372034231659925 3.7617688487998926 +3.911181370771064 1.3065523936200432 4.627411622801656 4.383223189819833 2.6160504772303024 +3.93371280307156 1.6282838759388523 2.9227364794343025 2.5031622502213513 2.34329790506455 +4.802249692384727 3.043872889641844 4.637892863408499 4.440303824944257 1.7694435307591783 +1.6229076814900805 2.4919898374858698 2.431518792191896 2.0886190946829606 0.9342826105745569 +4.058618605727997 3.030813656656917 1.7522394110454043 1.7908275848338282 1.0285290761526047 +4.205128075176837 3.856432674647768 4.4830287951480425 4.55605354347543 0.35625987174870866 +4.758019108096001 2.4725767497349813 4.493211785891889 4.571720282816106 2.286790405236142 +3.704977593339213 4.650780255311579 4.015977929679591 2.5969847509390114 1.7053106217655216 +1.3846273224350734 2.9751228962278495 2.8030257780058907 1.9091419892540493 1.8244737318053552 +3.8286429270221367 1.432654735207647 4.742624136617412 4.649053984585175 2.397814585964854 +3.3001778736991496 2.0992641514006953 3.770232752231655 1.326432683923795 2.722930873574691 +4.936656600483007 4.578842332785166 1.8898438459214009 1.82381505276014 0.3638555368473513 +3.6106096688936127 1.6979185617370205 2.858691011832492 2.8103698816213525 1.9133013884437529 +4.265766653133404 3.3642376973535058 3.99364887168467 1.3175961713705262 2.8238294057836097 +3.0375022331408514 2.686951066871879 2.0075798815375543 2.822427790975667 0.8870531188650427 +4.204991003687668 1.6411588642455208 2.634833757055127 2.50920260247633 2.5669083400537107 +1.6830552327583486 1.4706873147000898 4.608366323848527 1.2261133535781092 3.3889135851366086 +2.8746399294224294 4.416991029025468 1.0134498556461793 1.1796061517767416 1.5512752267700687 +1.805018246127859 1.0125500066888362 3.4331498258281727 1.5403954385127556 2.0519564033432447 +1.3717737424960785 4.364956609102428 4.864427740333987 2.086778504172185 4.0834395981936655 +4.888048929926811 1.428348319566195 3.4259230244145447 3.301897121184698 3.461922982679077 +1.0635395006859891 3.589988580102106 1.4549509749483236 1.8221128492146659 2.5529889919068034 +4.7442156733629215 2.992317897727361 3.6482143344388067 1.6845018448760611 2.631598859617769 +2.0099889893755303 4.220091620438414 1.606332880985665 2.8789822877501963 2.550331380893313 +3.8066410939041617 2.3903436540805947 3.0305975081061365 2.7703251137059035 1.4400139434525003 +1.6320183957439691 2.4630899937601485 3.9854442035205797 4.030353392533967 0.8322841079144826 +3.0136109926988737 4.740987655403478 3.79154510227229 1.4284488297650175 2.927123866185758 +2.1133378717098066 1.334509068019337 4.282877474581916 2.611345304364292 1.8440699828179972 +3.6046139837406255 1.18110454132494 2.5875403716066283 1.7236396557385039 2.5728821318427015 +4.686503678789503 3.557252303486261 2.9519366275736645 4.491006167803151 1.9089116580623806 +2.4348320806776504 2.21405379866461 3.511965166797287 2.1268678722215744 1.4025824629053325 +2.9470915416723 1.764574973508445 3.0267418691659844 1.5302964128869094 1.907274085599736 +3.685088481560036 4.777714639852538 2.4145115009637976 1.6372690312664795 1.3408720216658325 +2.272913156415592 4.851138240109071 2.7545423962410993 4.973142791936535 3.401386819808384 +2.4412702385640346 4.857596460151568 1.6219988543736226 3.208543573066345 2.8906325524949135 +4.366948240310342 2.6055950244069277 4.7359830465976955 3.22712727467303 2.31926947370151 +3.808822991089391 4.77034636913391 1.6806313791296206 4.632300894307137 3.104332477901556 +3.9986394265590297 4.951470000675689 3.329484950754714 2.1407003648368956 1.5235139955665922 +3.0049601988191665 1.595095404794976 2.545978944569102 2.998570115304465 1.4807287075141349 +4.494354961006247 4.482364536895803 4.747755550197439 2.9969513791757874 1.7508452288929375 +3.3938790466194986 1.3584776691409663 1.6064204474273653 4.590951151272746 3.6125174448903783 +4.846012323317989 1.9916130304197184 4.3625659081084995 1.9915059437151874 3.7107304776885863 +2.338974126612379 1.641587035671039 2.4893642372734552 4.601479820096457 2.224270889486119 +3.984740798097965 1.8720949828547173 3.0613208647961176 2.6357095686102885 2.155091022696208 +3.9317273239665806 1.4941751335559696 4.6943147916674395 4.145827179034708 2.498499418088209 +3.541566445731403 1.39409048357808 4.673355809443327 3.20100542977266 2.603741279110253 +4.307610193985241 3.9393906280755213 1.6319562954119244 3.8528068607236188 2.25116922557235 +3.851798377224922 1.9460886217784572 3.7998802799344604 1.7283186804191457 2.8147996611819948 +3.3898453755119986 1.7192345458471694 4.9033792795531035 2.6383547815933257 2.8144762426695578 +2.6573337530717795 3.52911925915091 2.0868132848779224 4.182739884687079 2.27000402651564 +3.73728233072021 2.6038667036152594 4.824108451811556 2.9777302844896982 2.1665048627982655 +1.5524736514192936 3.665897289287794 2.524684894943128 3.9772333437725713 2.5644602686136797 +4.617647698958333 4.388049465619781 4.784218798528923 3.220439965343867 1.5805440796984436 +2.831266149767072 3.046594619035874 3.513939011232766 2.006442753192544 1.5227972017583025 +4.2986898248441285 1.2401810549500705 2.462261080382193 4.209530395973676 3.522417629516181 +3.9592040134732227 3.2491071856406517 4.973694759715064 3.4841143249435422 1.6501779832951342 +2.9458939123839523 2.391664030547485 1.8248690146104138 3.1928892294250955 1.476025091271172 +4.114451275691363 4.211769883823912 4.64550316091107 3.4948570211692953 1.1547542813912854 +4.395419930186828 3.771904343290374 1.77436589673355 4.822234085040065 3.1109921537017198 +4.542298562842417 4.060854301957972 1.1220862780114862 4.392904132779329 3.3060608003191168 +1.0270469374278157 4.928151707477177 1.0774716792853596 3.02751445298351 4.361339845294592 +3.9875827274084195 2.7399917890044296 4.8532368113938755 3.8517821990773693 1.5998107669714414 +1.9152927701577056 1.1092414506432355 1.1527242615312137 2.1816976547683655 1.3070979204638788 +1.150029511255866 3.247009862393682 3.4906103247727547 3.5632927104374836 2.0982395769415834 +3.8281137526972713 1.418867678138704 3.506824937589776 4.859750148528908 2.7631274444315017 +3.561935912396897 2.218859541035564 4.9595203623873 1.0083173429817922 4.173231294796435 +3.907917313814225 2.6823641214776006 4.48131247216647 3.6104072377408567 1.5034814779691914 +1.9121749519558113 4.585121965565609 2.912181733632369 4.661648335336775 3.1945702571777472 +4.745153889195679 2.9635576290382497 3.9129408572984947 2.173328960881018 2.4900471450083326 +3.789313381077203 4.503768108520057 2.9202206832109985 3.4415344277702187 0.884428390448768 +4.048987141086704 1.4311965532067146 4.282868257289427 2.312395999486705 3.276520789002142 +4.617590637382848 1.8798454824920765 2.599268614522791 4.163099310502165 3.152905799229534 +3.460988342458633 2.6937447350791817 4.293831063791884 3.3390405682921256 1.22486229567299 +4.974418494458083 1.389144601242529 4.871644538175872 1.824011272884014 4.705556014870775 +1.0550581409048072 4.363209732106601 3.135607093855446 4.635322541790707 3.6322187950544245 +1.356899836809685 3.4674583056551276 3.053333876747832 4.916482372965319 2.815276073384758 +1.0750702914897552 4.684207184132509 2.092963394098357 3.6343819896264717 3.924517855288068 +2.6523098379429153 4.284347067697501 2.467817145276848 1.5155858217768787 1.8895211067250683 +3.425684190141124 2.900136745336091 4.565044449815707 1.7838186721322953 2.830444654677388 +1.1426081061475268 4.495846639496236 4.2789777267402425 1.0976672531194125 4.622222949091074 +4.432832476397115 3.4964503807284455 4.35607879952855 2.1709280145878957 2.377329464339263 +3.8844500299943645 3.489006811291868 1.6276833662828234 4.699558213208981 3.0972230165739427 +4.3380687180565385 1.4447285708985782 2.619563792249389 1.8229960443216786 3.000989400880095 +4.155584707611893 2.5168619434887436 1.8797910809039013 1.9441424398004918 1.6399857911113902 +2.819644944377478 3.808134633582359 3.0119995168655294 3.8212816129015326 1.2775168791952571 +4.835978804559052 2.9810584324762353 1.0716205527933904 1.3819359928938444 1.8806980776117665 +2.9702763383781985 3.2710916732745585 1.6772742262461109 3.4414413475966463 1.789629989065629 +1.5744595518334825 2.134053208272288 3.239408594061986 2.9057304999847453 0.6515260016250861 +1.9419974284029222 3.812703224834849 2.9299973657746277 2.1571086586038497 2.024079329096596 +2.3821962821192244 1.263451308230294 4.6493093445757605 1.8422225639286558 3.0218084834558048 +2.3868118150102133 3.549720861857976 1.791091050500527 1.919983024717479 1.170030167242672 +1.4892986901410161 2.1058381331628118 3.4557042166717205 1.5450193086571469 2.007694623820138 +4.737991842465158 2.087876818271844 2.000900697375305 3.4821168752696106 3.0359695332975503 +1.3735482975459878 2.3520449527832774 4.533548636585958 4.493756092870859 0.9793054430798805 +2.192965271757489 3.6580552098946684 1.2014507662799163 3.4713478716147663 2.701651605155323 +2.1412398911622907 3.305964901553111 4.5552685778853395 3.611568929946749 1.4990508248052554 +1.9745955722163058 2.8296889262218494 2.2667365101351624 3.6146000029133156 1.5962207363734418 +4.394228892015165 3.421699161583145 3.374951294621362 2.1906815445110053 1.5324193021495858 +4.571834875275799 4.799573429629708 3.6287458343307684 4.600389155739315 0.9979757477900152 +3.261865955722055 1.9323486521117648 4.163673628585744 2.0861895034157003 2.4664866816856557 +2.4136825189296744 1.9210529387855422 1.2124746359091527 4.446885802190717 3.271712012968112 +4.630757458351047 1.0856694742335562 1.1987991513880218 1.3884548182843317 3.5501574735665034 +3.254715666081618 3.806124749957454 3.2290060256964557 1.589575927681206 1.729677144457624 +1.1554509917764761 1.3357658326694852 2.1270174929908547 3.172963905104375 1.061375211157401 +2.89073137431794 2.298970291556161 3.2546425023781502 4.337002139629799 1.2335653867642826 +1.1367781126327174 2.962306015297605 3.4019704259613417 1.759226356230835 2.4558420555977967 +3.500168599183028 1.2906433019004155 4.179288547302527 2.1626439461045184 2.991464104226038 +4.365615312244213 3.7335477130908985 3.90619938116058 3.414915233473738 0.8005432928129631 +4.919869494122091 3.8094984479130414 4.327170078605231 4.66353024419619 1.1601991300012928 +3.9743044783831203 2.2301019098274253 2.6332084384310463 3.2987073034186527 1.8668506473352593 +3.00582760741605 4.915778635725818 3.4580957500520744 4.0688357053494135 2.005222237942253 +2.235140047612303 4.303597426547306 2.2628014461842247 1.8632011113656008 2.1067027213296656 +3.898390399599428 2.9225555672847507 2.9035697352010885 1.935936042640301 1.3742520085258885 +3.973100488884155 3.0173088089224405 4.001534302565551 4.326730788469564 1.0095991729039577 +3.943336900371164 3.8282390567771962 4.175289505983477 2.250174145930291 1.9285529972268558 +3.995883690179516 1.7230816734441392 2.651011590814563 4.402709953751664 2.8695079999876136 +4.394414693993652 3.8756277830414936 3.3455067133667464 2.0863453448665275 1.36184698512668 +3.4581300888754956 1.2507469893838987 2.5604909430552287 1.27058660601358 2.5566371167297057 +1.2676110976958417 4.020593226000715 4.6917506201015335 2.779619659003316 3.351888335126399 +3.808095564401815 4.086946455031441 2.3826370450852883 1.3652972191999373 1.054864038887179 +1.6232313235139775 3.159731100092386 1.7464109033758786 1.8313088651679954 1.538843470708426 +2.480836660919177 1.4417804375161274 4.277780715665106 1.852930627064282 2.6380932105556907 +3.573731314238138 1.6806037004259946 1.1339361966525945 3.7400398200147347 3.221134622750086 +3.845265681885582 1.8149647034422918 4.009478181377318 1.4861981395979074 3.2386824840218726 +1.687189791869094 3.5260989801513376 3.175432950194915 4.83749855159849 2.4787192390663946 +2.177190597554752 4.5303423027482586 2.984557418201821 3.393745560729207 2.3884634984944024 +4.373410539359757 4.679520756410753 3.0980298179511294 1.2487530006473602 1.8744407731374622 +4.981701322569183 1.6766273028289365 1.980765639530778 2.574783669064244 3.358030925315128 +1.3429841231127417 3.8645094396789745 1.1502224595427446 2.6181789992068807 2.917702233681008 +3.7106071549319073 3.1693719432557135 3.8414714330039397 2.46032317740823 1.4834102798259305 +1.816431496286591 1.3882901536009418 1.8733661914390902 4.357365640959147 2.520626563879032 +3.7714106596687405 2.644936208502141 4.585120919806142 2.708944853423038 2.188374127337433 +3.283255552606985 2.2074422359524744 4.2806933797319235 3.8301944173475406 1.1663291162448892 +1.5866785979477078 4.170231903060747 3.0944043310761744 4.390456785943132 2.890415133873883 +4.076831393218865 4.804385974249735 4.700249922705755 1.6971650120245858 3.0899602989585366 +2.9569158699649005 1.9914090997863996 3.89271009075958 3.69388238793873 0.985766594417531 +1.5075018537932978 1.7630591094735255 3.9143797408363032 1.6885125312082052 2.2404897557963492 +4.116684624549153 4.001640649680269 1.946235213786692 3.8087817634724885 1.866096129865795 +4.23567115481951 2.2988301545097047 4.620301608806422 3.7921174061663794 2.106476236273177 +3.271691522023202 2.0642088716642686 3.9344013020235895 3.2323104781962306 1.396762641188693 +3.8743293201307316 3.036781688010459 3.223164306076034 3.8759328145821814 1.061881707991816 +3.8902282323617774 4.703830237057485 1.0557275281172536 1.8807438807882013 1.1587062631311473 +3.4087413645541247 2.1196925601331595 2.3523176256154565 4.762329258522731 2.7330940142862823 +3.7074101602511655 4.34591825168227 2.9163989624620017 2.1046285475154463 1.0327941660396298 +1.015849942661374 3.8291151751753567 2.051348870265766 2.208100957848027 2.8176288764550503 +1.749062980015239 4.697384361826589 1.9697171073533153 4.270803761335385 3.7399998341684966 +4.048408449515392 2.2592035871914287 4.327136587112999 1.5057892259369834 3.3408464454055027 +3.094223722840217 2.952086974102797 1.8790021481076096 2.364115122346609 0.5055071246942543 +1.1839761404788494 4.977758660956468 4.004812289635835 4.867202235746827 3.8905657984199205 +3.2773675482681286 4.782359614437094 1.8318792816600697 1.896557846660337 1.506381238598657 +4.671402769067992 2.8107596155871075 4.276308785728469 4.867962651944274 1.9524464760918288 +1.7790839343557727 4.8217916380035994 1.215738213534871 4.013963455164145 4.133779707813304 +1.8866959160768229 4.810516313770197 4.744346014010112 3.3076920814305297 3.257713959199644 +2.976276910211532 4.507453091100123 1.0138919107712154 1.1857993581086723 1.540796114796066 +1.9080609686143823 4.246054923176276 4.900078014350209 3.355621651864602 2.8020637371748403 +3.2544331183223956 3.661533262484356 2.393884575766926 3.9492752280758494 1.607784378785497 +2.9363708592001405 1.1572278087220895 1.778215896987374 4.100255979790929 2.925272660831924 +1.9402156737325402 1.171456746801165 2.2442826528072937 3.953928847554684 1.874534715322955 +4.899910571094569 4.591398586349599 1.2802407630238384 1.392844981380469 0.32841947981657316 +2.2663813388520513 2.576932648086703 4.522100986419727 2.263092154563104 2.280255033559532 +2.8843866402174494 2.4339128458515926 2.0494650632895053 3.05693209036557 1.1035925199347159 +3.901812167004805 4.039562019266064 2.7585180448532887 3.209318257539735 0.4713765517674208 +4.14815926764051 1.8745572018009944 4.534739645190178 2.7437455437018605 2.8942920076170027 +1.8374927343421228 4.28673012323855 3.5533336536645073 2.02712992742886 2.8858381106957065 +2.4201769178287638 1.2954056293883176 4.316486581754887 3.7430266501727583 1.2625239579628424 +2.2469119257145693 1.8218476532355843 1.9728834620831384 3.7123366285367356 1.7906359077220402 +3.6539953270923484 4.247379103070276 2.693593740818598 2.2884632961347116 0.7184949427821933 +1.4109109871253454 1.5044089461825707 1.4201821947112 1.3019873089698852 0.15070467598342485 +3.1578664767942284 2.2021102062743685 4.885062591956377 1.855825900271436 3.17643589308652 +1.453923872697957 4.782702601860066 3.0493996123949434 1.817353264528279 3.549465597947625 +4.736330328835118 3.2109829894561237 4.5630951419376675 2.1309410426053033 2.8708984775936957 +4.353940558502502 1.7676313581420366 4.268899847834668 4.877420094640929 2.6569328502320757 +1.8610452571916265 4.094092246330511 3.842441759215184 3.0241002666604295 2.378272830046835 +1.2354352567611033 2.0782148551917596 2.74544249193678 2.455054345962819 0.8914049174494905 +3.9590009224045604 1.7689517209721397 2.701907790060259 1.8560946261783426 2.3477042856566754 +3.189789327284368 4.047515035849635 4.187537771587447 2.3154546954393633 2.0592203464257683 +1.1784265102570557 4.069906040857209 2.9050488108196175 1.0889538261664162 3.414506533770611 +3.7415802501684237 4.736643174661323 3.800497436795364 1.8172360051411771 2.218890743138872 +1.149956494888992 2.866957552337433 4.795889728481516 3.131561137774272 2.3912511974120627 +2.5213940851463206 4.183026306256452 1.7347112139520546 3.022666415481386 2.1023439869293155 +1.3309892690139846 2.3171374733438665 1.8480808223545084 4.615025789593005 2.9374262088824454 +1.1848948167697189 3.4210397870944065 1.81350793211644 2.56036235399578 2.3575699047513146 +1.622490516796157 1.5917797510973966 3.1873431381859736 4.255179885669173 1.0682782738618724 +1.0542471197580285 2.8400307418778756 2.127935357215446 2.510273720771517 1.8262545740608604 +1.7210726405690622 4.345712557931382 3.9636164173366506 4.557650142877482 2.6910241104255466 +2.149614921523698 2.6085569475263193 4.762464076570968 3.6049347972606247 1.2451914775214747 +2.759648242687558 2.0487778419723477 1.469334526620378 1.578060255758226 0.7191369902804057 +2.871550169117994 1.8013309200419023 4.217198080048402 4.666860241909951 1.1608468033737247 +3.333357263365098 3.1437258606225447 3.4823461729180356 4.558382834783786 1.092618399344115 +1.8165401021092116 2.6065477926358667 3.681458940582156 2.328079911792585 1.5670823037283845 +3.5276746386396343 4.536724266993959 2.2642534091652426 4.243375119253251 2.221509373336895 +4.282421814653545 3.2486226911275806 2.517723618751569 3.639264619384214 1.5253179484629187 +4.296060571755329 1.7336679156418664 2.6353361107280056 3.568455457983541 2.7270071214294256 +4.194127643779848 3.856013935490272 3.3426415526496394 4.427543066225313 1.1363679746860682 +1.1708271798478096 3.6195288204810265 2.0057055735094944 3.0653839995252197 2.6681563094022382 +4.7183367884665515 3.5027045005789677 1.1951053450720468 4.949828127915319 3.9466067748582616 +1.8166421843549179 4.7520598355336885 3.028437660143761 1.5519584497460208 3.285828304337983 +2.9231302213901684 1.4457927630020566 2.897788515803437 1.4372171805948688 2.07744905862685 +2.6354659520843993 2.479990717571615 1.2465473253550905 2.7318234594922046 1.4933913563376802 +4.695920150654671 1.036112547490136 1.7406293640739312 2.0599738361403377 3.6737137319094844 +3.4962591648935173 2.752395482264464 2.5900916524411275 3.7067332124197705 1.341723351442463 +3.0951414810353524 2.5856107885714006 1.8989956328371846 1.1746144436446357 0.8856351584138954 +3.174040999500184 2.546602780286263 2.369420442099624 4.137834684348318 1.8764241660984757 +2.8372922417730044 1.8747515450081376 4.026270754705321 4.61607025767421 1.1288702523456555 +1.23658761823005 2.710567741281866 1.7656256477859489 1.5973370433392864 1.4835560176610965 +4.549827373544871 4.173838772705172 3.402675808840407 3.541076629813643 0.40065223724254984 +4.42765735841547 1.0290150632589112 2.423920771077086 4.830945296936317 4.1646772406172 +2.9396037191681503 2.965851727239722 3.8810113597491744 2.1860146079047174 1.695199972478464 +2.3757472965458835 2.6931594467641498 3.4089933136498014 3.5451396314991834 0.3453784778617918 +4.318085699261941 3.1302644288272936 3.507351461467114 2.2104191760519676 1.7586792554212762 +4.997708998620142 1.2310445903101725 3.7796648138867446 4.442077107589631 3.824467389281521 +2.8420591321258417 4.0039982796668125 3.8124792440134265 3.7766099482672577 1.1624926618975124 +1.7884933804776302 4.576603529593607 1.6687027433458717 3.9135168613965403 3.5794899955444928 +1.2486433397965913 1.691640882346697 2.604114100293496 3.7153254998557323 1.1962598368341621 +1.3583485534145634 4.24652739193221 2.7116686990252035 1.9293347749544294 2.992260578895681 +3.295883636664597 1.7474079672070837 1.3655823522762103 1.9411251378572616 1.6519765122229462 +3.183631582919691 2.6533459473354557 1.5035905279069386 2.4875826203724185 1.1177849942370714 +2.829864382349117 3.776774569389183 3.0900873050659676 4.82951197262067 1.9804638538529404 +2.4432151266514306 2.6227609137846284 3.7962543097451875 3.581594379442471 0.27984920109738853 +1.4057124444357565 1.0950665629383045 4.602694905154404 4.995830972864476 0.5010557168877199 +2.9096538139684447 4.268198605397981 4.843050406748964 1.58654811734442 3.528519677034175 +4.499096340772631 2.972105823702571 4.8817087875961995 1.3068340332631032 3.8873422216715117 +2.1891297107627725 2.064184577274385 1.8475715555987704 1.2225091207973766 0.6374279047722006 +1.3428806053405742 4.776813436547998 3.6830110619096565 2.536060284565275 3.620413066888241 +3.3817094849004308 1.8461285967065924 4.679243117584002 2.1853972835501563 2.928698637298509 +4.131801265709505 3.134066078936692 2.042835155152669 1.2306886574325961 1.2864903562341854 +4.325279550525936 2.855929749292472 3.9167076796834164 1.201887007154835 3.0869467313793026 +4.707777896755509 4.089779886037381 4.003887715599971 2.9716509227397787 1.203093652957183 +3.7581404943566556 4.307919769319486 2.3468445925116224 2.01413814233445 0.642612506233851 +4.060380609343522 2.9091292048083943 2.8995408477706412 1.1370344131367363 2.105186150574344 +4.11360691762555 1.1575679747222782 4.936332672117263 1.445550095299116 4.574246301914429 +2.985713419003425 3.886400226813178 1.830737344164214 1.3184564962412089 1.0361797107216666 +4.85911372998731 4.969942856221425 1.223373762456001 3.603866047346905 2.383070836892377 +1.6198795671598387 4.43383009656632 3.55314325215666 2.3515953998566586 3.059744241487148 +1.7393789581306303 4.172677193009241 1.0505896749150985 1.5324307971423332 2.480546546012101 +3.947559483913085 1.1579077270327267 2.1452404541309105 3.0987093834806565 2.9480942868064823 +4.533016779977409 4.46600799905592 1.0367276079881393 4.8564327160712715 3.8202928277079695 +3.8895278209149065 4.952674216050011 4.254783336470599 2.762281914495782 1.8324412001714045 +4.648889043779503 2.137833010318287 1.6259744858887886 4.615943522358676 3.9045252262254166 +3.3829940512494763 3.583060598990717 3.372352207533476 1.6650776635563567 1.7189569488609593 +3.38013491515445 4.146555233331274 4.7688635249469025 4.191549463733853 0.9595267736694834 +1.3880795844438638 1.569237889942329 2.615510452544603 1.707791229277345 0.925620073215782 +1.301530575018694 4.1542692754036 1.9320453262767088 1.5267044167479034 2.881391911144924 +4.524994217971894 3.927560553625877 2.079944931518008 2.0196783017340474 0.6004656942402512 +1.7767045867771651 2.351457477732104 2.985065654559785 1.3553753192484872 1.7280716057698855 +2.3457806143906215 3.5977078196861942 2.726428085427597 4.473497488240818 2.1493192470187688 +1.270901747889849 2.292107031207072 1.0769268968266936 1.9327993698053119 1.332433083001749 +3.8636786711591813 1.4741128648529758 3.7584180866688452 3.7012137086752244 2.3902504227652512 +1.42032741781698 1.2302092522482577 4.896503674417832 2.6893624055112353 2.215314311286287 +1.510126081647818 2.829633317438092 4.533893568734008 2.768569302973074 2.2039666759248586 +3.3734368504029937 1.3151047186396698 1.7041954078134443 4.9598359484250825 3.8517433058711723 +3.6688187022448564 3.235436652200623 1.7161250958018157 2.29507748676029 0.7231914492698849 +2.5852833024025266 3.010603125075085 4.919887586911942 3.1222118603900992 1.8473047851624411 +2.339117243563712 2.485385847166499 4.6242041908404765 4.6036342405683985 0.1477079119549964 +1.5909895456008782 4.684193772517743 1.1484252428294006 3.930391049121502 4.160197848275346 +2.339015630387997 1.5405647610599718 1.7755848888330434 3.04293222908416 1.4978962152206203 +3.365771471665174 2.3218137524926696 2.4072955197209964 1.4802629196633967 1.3961508374776026 +4.99652006455926 1.180679787938442 2.4000009604117825 1.1396678417430328 4.018591368464196 +1.0249942790048459 2.3048714567590123 1.34532734643538 2.099317791804168 1.4854585762798616 +3.7596126438317 2.2797326060508545 3.3050005527826993 2.8950736390868683 1.5356057439311779 +1.7230309478313757 2.7660789942990633 4.211213353537254 4.63332045447188 1.1252215923539213 +2.8863413258891693 3.3377584365400583 3.6187699561536437 4.336696163421971 0.8480539174315995 +1.3040977679560282 2.254281231151659 2.3074326592551047 4.861260765895384 2.7248645125944 +1.9435795782940057 2.645008094458514 4.158763151826379 1.311458178377774 2.9324303188846454 +1.7637884553165115 3.3639272997297924 4.952507158049336 3.5245224144222544 2.1446642509800857 +4.972593621575683 1.1779713069716302 1.9380723753184168 4.073861459360818 4.354394736585752 +1.1498792388231012 1.6864176742027812 1.8991641640502297 4.2027633669398545 2.365257444802445 +4.440288662781057 3.3759541522980285 3.724591948884519 1.3520165228858643 2.6003696087783075 +4.725567544062817 2.6207895833948194 2.4164829178950726 1.6520378319339368 2.2393004606715605 +2.194859841389018 4.145279971662257 3.8169570587297685 3.0496584081803317 2.0959212541768033 +1.2904934778161627 4.901994907337077 1.6335292775672947 4.6576181455395655 4.71041994484838 +3.694643101521992 2.480789733441992 2.107086245870761 3.431559944361304 1.7965718959152113 +3.9911627855808742 2.6301661192351773 4.192724008208453 4.442519451689503 1.3837303528462455 +2.7848210196504644 2.016941516868957 3.4426169337216272 4.774562922362411 1.5374391199160535 +2.2058346850551716 2.780361753986554 4.935696427709024 1.3650884599376512 3.616534613749369 +4.7149573611214235 3.329050949792822 4.441344726074617 2.151530267119086 2.676562503922435 +3.435260008112388 3.906050957044763 4.618281250821156 2.570611620293844 2.1010937707252637 +3.191099319505409 2.6426364974472505 4.695367900546744 1.1210016472571191 3.6162004341346607 +1.6699109121851579 3.261950783350002 4.758992306431442 4.268195944460164 1.6659747958185969 +2.189700354274767 2.1858566815229796 3.7129668214939495 3.689716489422655 0.023565902521403604 +3.2999890872996183 4.38379359737681 1.4463808438416605 4.099439647185914 2.8658948393243784 +2.8424462476767562 4.103427004531671 3.917063970149494 4.322227633954777 1.324473504312757 +2.1392568223166553 4.031714586978685 3.2133132619428855 3.018484289644896 1.9024601755296477 +3.10858347636421 1.9034979446615137 1.0924206624818793 3.403951373518776 2.6067998325122534 +2.897224932368844 3.6810543929287007 3.101189401374947 1.259124449652456 2.001897077675558 +4.102553620257909 1.1583635979125426 2.3578949827839284 3.3743525435312973 3.1147136080992266 +4.828711903211707 2.981538238127166 2.1548839032123452 1.7232029490153056 1.8969446473733291 +1.1299874530730625 3.4139196389934083 3.5644244530219376 2.3565754751813377 2.583649624688586 +2.257462628413227 3.1035867153057395 3.460779857793734 4.64151880248086 1.4526081460326994 +1.2120115328100298 2.2483718759440774 4.000479444613811 1.3563316589384629 2.8399930058563116 +1.237260037549115 3.7548910669720486 1.2828409600925297 1.1581420776104014 2.5207173208444997 +3.604923149245699 3.170627003685562 4.942662093540562 4.118542726532569 0.9315502526037159 +4.708229958924235 3.752537809947949 4.556770185875452 3.3934750338365562 1.5055241925562373 +2.421167265627621 4.372635729433522 3.545275387656806 4.887067649463033 2.368255822134094 +4.314245152241698 3.9758249597675697 3.4468584782556904 2.8640978245898285 0.67389777127936 +3.9364245525752795 1.702500187621582 1.3862070291907433 3.320844085375039 2.9552053410034334 +4.551596227808472 2.4693532774911002 4.590819641146158 2.480217020920432 2.964857353170653 +4.9935052921376695 1.9188703856654934 3.9742098250341917 1.1905817159106702 4.147525196789015 +3.343857003154478 2.3001597769507294 3.477579485350952 1.2448886123483138 2.4645917378695157 +2.240590839620544 2.4964108178523405 4.5865455165763045 2.745289501237895 1.8589425960159165 +1.504959386100567 2.6082570749849787 1.9050163708505692 4.525038267908807 2.8428472578318957 +3.954164589374959 3.6356190987084034 1.5967757524560158 3.632860718515218 2.060852546553561 +1.4187347425169738 2.126236923253531 1.7855927815983441 1.0042950688022243 1.0540329462438223 +2.258666924855619 4.268761669143969 4.351848290965286 3.0187185036144832 2.4119941772188516 +4.050447208144297 3.704368005715194 4.674780471777021 4.824509289608456 0.3770802742695018 +1.1491499225599657 1.0258128041895405 1.8266533777934977 2.4650250981784603 0.650177282097104 +2.1187586361896593 2.6577974040229444 1.971000573552935 2.383318308517902 0.6786521257565373 +1.9589416207898669 2.820817713339425 3.4902246670993664 2.155578818953399 1.5887447683255367 +3.2608858911081686 3.048520859222716 3.374160608582533 1.8519127661922208 1.5369897203396223 +1.2862056167959701 1.4026381500168665 1.7862069090847332 1.2560972427803097 0.5427456062481044 +2.6460040034119334 3.7511936719162806 1.4070586756091017 3.523396312324741 2.3875362187719555 +2.220528657858406 3.1019403202530182 4.443347369541318 2.9105984766231856 1.7681079399592645 +2.0057872458954518 3.6630581187272835 4.333510239057487 2.1294140086074993 2.7576415537594126 +4.856372230147731 3.6322956580594634 4.607216628862141 3.467602664356647 1.6724483377465784 +1.3437575612503796 4.407944607364439 4.191874278510026 2.2332158623744234 3.636699746290864 +4.235280432561743 2.8833225558748756 4.853352297609589 4.256196910287412 1.4779663923592994 +2.4295013422758673 2.769449168752687 1.9263833965754809 4.936851750087598 3.0296013322257886 +2.117226065404435 1.525606942428516 4.610119550668626 4.698660341531206 0.5982078721626509 +2.8092503087745846 1.5235037987271567 3.876422737390623 3.080962299049321 1.511919772033317 +4.7929431762618675 1.0634168164549722 2.5048587621741136 4.7722563102993 4.364683093849836 +2.7441130775777647 4.446141191650727 4.654877345552411 1.605473370966124 3.492243448174455 +3.332453881409198 2.5653227946355193 4.010357491677682 2.3473897410952778 1.8313797650328196 +2.6751804141046702 3.3495853883883338 2.0170923890693326 2.14932382724343 0.6872461149982144 +3.289232559774973 3.4328866853323254 3.3343096418973786 4.510249603183232 1.1846819405809403 +2.8718450979729275 4.748398502417193 1.0664559357911756 4.690203377325876 4.0808085228004325 +4.435405503998586 3.5902350892810975 1.1009201138413869 1.2667429470792722 0.8612840657627258 +1.918430033334412 3.4222386147799173 1.0305021237418592 3.572010938167951 2.9530843712015176 +1.2418137417544992 2.5748144547101117 2.7682947584646764 2.5237590025732244 1.3552448622479907 +3.6190053903611283 1.9315380271314537 2.2470450489184213 4.256739262102565 2.624198340916926 +3.4178264234186555 1.2361300790146732 2.3093067392135547 1.2809148170775542 2.4119263845939156 +1.976441856042912 1.75275219293948 4.14808777310048 4.451545788924032 0.3769931468168807 +4.475771234763238 1.5421642889874314 1.2323138709842865 3.782883019841953 3.8873451988997036 +4.604244016794661 1.5500971341658758 3.3064137682749557 3.5125299543360162 3.061094095716021 +4.295950678631542 2.990115769959383 3.137100544755886 4.444500602908003 1.847836497302449 +4.922745915710074 1.103784684872977 1.4437112271831678 4.502187940116284 4.892723647028406 +2.683998704785216 4.0865545386917255 4.804364766095363 4.554554169007473 1.4246291453015387 +4.625508610292291 2.966690074768199 4.341853807216889 1.4398640717135152 3.342637186229645 +4.2243009528603945 3.4897657596925495 3.1039205409187804 4.760245102296436 1.8118921056798623 +1.3071250458689128 3.511265155908189 3.2024918714753845 1.5368174740488296 2.7627350258260868 +1.8526051574713849 3.1301909410982818 3.818419275432944 3.3136845923805605 1.3736748286263174 +4.685111106710474 4.113962879954 3.2493284279248718 1.5754291229304798 1.768657451342055 +4.626552373717872 2.740718559545303 3.4805103268800788 4.767504642585292 2.283138967153377 +4.215236900244193 1.147761020292903 1.138870126618114 4.0395052679151044 4.221740458271914 +4.599569213202015 4.928318033120743 4.7400144770823465 3.379959057163651 1.3992235460598048 +4.933392672986711 4.590865820393056 1.2968500634355098 2.094218725297734 0.8678256896794827 +1.7442718938053492 4.874363967494617 3.1132154740857256 2.9547971829478348 3.1340983942338867 +2.674565601939651 1.6465483080145926 4.825083230183273 2.0254890964831587 2.982372691341089 +1.5843405370007662 4.17467020225541 3.772253951517822 1.9986139473720033 3.139364050091135 +4.625090841596016 3.6482397125882966 4.411518043059349 1.666052576335904 2.9140725380838823 +4.544855802331489 3.5385838186453564 3.8622875638196574 3.2613364845301582 1.1720603674089654 +3.180271632370805 3.846488328226863 2.4816222428488093 3.169191338304719 0.9573901748312551 +2.8277810743921576 4.207357592514032 4.8649328406623775 2.402394735595477 2.822645087193881 +4.120565317866765 1.8916793876188027 1.211365530916963 2.7765962742509953 2.7235784860979004 +1.594509844239966 2.5032031060275526 1.014638648497788 2.5952263557673096 1.8231788020898243 +4.121026289215473 1.1974381842816606 2.9180176218592733 3.8546322033333364 3.069953465696234 +2.7741670077433542 4.199990441138452 4.344055158781703 4.118547653458027 1.443546361630236 +3.922108051332165 3.9844589083508075 1.9461776713234045 2.9043283733218206 0.9601772737942805 +1.429603658422216 2.5035766804866237 4.016773142001238 4.154483781616075 1.0827660284591885 +1.7660294610824847 2.300176209909123 4.1755774531101615 2.112697167279411 2.1309124390624845 +2.8427100315907947 4.569430675410908 2.9892868432445714 4.439505660725683 2.254927670762603 +1.6342587410344525 3.2900232742495454 2.8777006643071417 2.369371013481973 1.7320378816183648 +3.905179499523978 2.5862204048671082 4.711039608976826 4.684190305782343 1.3192323443806626 +3.9515802492823475 1.4436269714055832 4.490747139335717 4.5014150735807785 2.507975966558265 +2.362369368540781 3.518900405843354 2.7279603929890937 4.1339378190621705 1.8205319450290454 +1.6714901397890949 2.568043906931842 2.666466118359584 1.1196760083063713 1.7878390033602807 +3.505829462782959 3.856599139772116 3.531521480435295 1.4841743720805582 2.0771782659135396 +2.930456931812325 4.856692328125406 4.48391323409605 2.834662626525784 2.535825382115319 +3.851355920203128 3.3331511007325996 2.5082461604904154 4.587112562927812 2.142480280914036 +4.410065895842285 3.5743028901298524 3.3099143064945427 3.860357796521352 1.0007436422133165 +2.800303250688552 1.520936007507046 4.783541404604893 1.3265215261807946 3.6861588385126893 +4.456822859023715 4.020505048690003 2.4458605197127388 1.0918663028239908 1.4225588110804344 +1.3794599501778735 3.0008505496531503 4.749997200021156 3.4372361826985367 2.086204439806587 +1.8711250606022474 3.349801037901474 3.8875599763527253 3.451652222925967 1.5415895093504584 +3.776079212828429 1.039952464290586 1.9051954340596984 4.596626137543085 3.837992810795422 +1.1173164724594398 2.4513697616940786 2.3869505180817683 1.9319143992690968 1.4095233406871484 +3.6902750957889148 3.208102602530585 3.9191739279497995 2.365212102033705 1.6270487606889463 +2.824477731282858 4.747847952769032 3.3038373716699403 3.7745965365540357 1.9801432271990185 +1.6424619926282507 4.9754270766778035 4.234856547722599 2.615992518687305 3.7053173947717117 +1.19925666585002 2.3628712566790506 1.669626998891248 2.2089557819344723 1.282526589279574 +4.601941085234445 4.659626739790408 1.252515538966077 3.2455476618116013 1.993866765216695 +3.833762357860718 1.1949490610985385 1.1553861080539813 1.1051731609967206 2.6392909947978564 +2.926878771954837 4.447979395381417 1.6213152923903213 4.90607986978764 3.6198653891426567 +3.5966064982191743 3.826203762201497 1.3323521964072995 3.695926059415154 2.374699204009224 +2.673362971299459 1.938041706263078 3.723432321566347 2.45545110752537 1.4657672809745532 +3.5403744053171806 3.05833966071961 4.563592490606682 3.769824620570518 0.9286683619575905 +3.265800402719318 1.5934663455807696 1.4693780610578786 3.039109427789784 2.293634182333245 +1.3850536285578499 2.0158177411428397 3.4382711726862905 2.7530608643670313 0.931330517245142 +3.310531174356748 4.8968238639069 3.5552558684951094 2.13226138469041 2.131018019130495 +3.343056751760802 1.877600858606256 4.428235801572226 4.126976391111995 1.4961010016613965 +1.8769079601385124 1.7828004280573428 3.685476957470774 3.940944416279956 0.2722496099259451 +3.4957744744032153 2.3759837328731064 1.6947436013165054 3.705488828795341 2.3015272482952414 +2.7246455836729098 3.4355903023168937 2.2545000532995347 3.145118589004966 1.1395805233110385 +4.222579181635572 4.488184247114009 2.469202063797158 2.621034700234189 0.3059398638543601 +4.735254841989467 2.6669436510825792 1.7144363725330494 2.044748631688477 2.0945207974567905 +1.016131541016589 3.4637685694140603 2.980166329955286 4.736640964004631 3.0126616409482803 +3.780202985022819 4.963023115232011 4.732117663487415 1.3509136753130315 3.582122816162847 +2.0841850797394974 2.3271646649441866 2.472872311036641 3.2107588881013003 0.7768627159533672 +1.295686201714334 3.292369556867305 1.9541691534430101 3.2626730343631096 2.3872425153569727 +2.226364240067946 3.01111387436278 3.597659584564804 2.149570091045633 1.6470565168707734 +3.369165006642402 4.144682975614776 3.3685603620489695 3.7019760475234045 0.8441529124035666 +1.6306123890745146 2.2379668583683907 1.242721859586886 3.789989099666994 2.618673298400657 +1.0470970301686697 4.117278330130068 2.5053084471174 4.179221839247463 3.4968556245554425 +3.560591617508099 4.223650339168502 4.947194301467017 2.3533901516961935 2.677212512248192 +4.764171694153671 2.23334915442881 4.052244741091753 2.6775296929013157 2.880087531881736 +2.4255574915433584 1.3172244649979095 3.786457537907651 1.5234879834310666 2.51980818758479 +4.866240826304244 2.7995539318458325 1.8692564982973807 2.4381386742977504 2.143553509921567 +2.7677184368586247 2.9706282789933005 1.2207654599322368 1.7058201358405043 0.5257855481615992 +4.34910522315481 4.493409220968225 1.5098202686475046 1.4938342177464028 0.14518676802087252 +4.158312971126842 1.2093326254301426 1.746273352660773 1.1681485077515519 3.00511454284304 +1.733260734225416 4.568279601153698 2.05539690091977 3.504459545243161 3.1838835599017776 +4.8490924044944235 2.470389613293384 1.7341558190931026 2.246168841855239 2.4331839848942036 +3.2415076517190005 3.082588987374282 4.893635008662764 1.9837053350283234 2.9142659191253206 +4.222498069807473 4.281222086454822 3.3227218780211922 2.7845049907871497 0.5414110525608985 +1.4974249012103407 2.015993204047546 4.340897064904453 1.8762918178710573 2.5185694567376946 +3.271853601149944 3.7255093624988205 1.9698700686697217 4.401216709677302 2.473307509903261 +1.5052806325127515 4.7834801562659655 3.657219048877395 3.9291388607647773 3.289457782314993 +3.9481801087041677 2.416753257684229 1.8294692482934458 4.880073437927446 3.4134226403768637 +4.171018650244385 4.017684627325121 2.5733319737891605 1.31430646788646 1.2683282489553547 +4.386324285523909 3.8983415032765687 3.132483131415438 4.47782330268958 1.4311070442890679 +2.164073688951314 4.962789224205587 3.6015150364435846 2.9843854613612297 2.8659479338806806 +2.797305147084998 2.7752610319110724 4.275696518996114 2.0301005532489325 2.2457041622604295 +3.979614855650547 1.059191201099761 1.772421350147841 4.85809118215304 4.248556535366661 +4.8426759262711645 4.545653947239153 4.7946986076857225 3.0197461467284628 1.799632822185216 +3.2659709273700703 1.5872547690250776 2.874821596596543 1.9066803645361814 1.937881674794394 +4.51634775903114 1.2878505006277692 2.3558949031131298 4.057334507696943 3.649396015173525 +1.4946205433779598 2.141548083236193 3.736659003287196 4.240226962069748 0.819814571070466 +2.5431886094706617 4.806298167743842 2.9350719535598517 2.683929228028101 2.277001875566848 +4.239536370770738 4.427390471450199 4.6110461529466775 4.368691402806281 0.30663494265608926 +4.475901859325528 1.1208680165108857 1.6439950572195334 3.6232359003464674 3.895336494005801 +3.9018299633305427 3.587177837803213 2.765187607910583 1.5410618721381835 1.2639184218450115 +3.6375805756367345 2.7162524952932707 4.211914626494714 1.4564622574096466 2.90540241445585 +1.9515883335255908 4.024824482098962 3.2674484614187027 4.407345063982607 2.3659400652358205 +2.939222056525232 3.814573246516851 1.9442941708271682 4.333558828639042 2.5445678043409714 +2.0377481029089055 4.88245257585311 4.7503925282957935 3.787797316100463 3.003153855687407 +2.2116315966744016 1.5692221879804524 4.331167945596867 2.7539140409581435 1.7030618685404855 +3.8917031151817034 3.135343539869574 3.7611339720813963 4.297811899197566 0.9274173842558985 +2.45919315145329 1.5395911241861948 2.620448502331727 1.9474172656024655 1.1395784019395376 +3.2512674863949877 4.288954551570633 2.163124441131756 3.7999346643839234 1.9380253228932935 +2.7876638622525762 2.691242144300444 2.9968984037249933 4.96113157032497 1.9665983526038595 +3.934520941410524 2.4984940277773524 3.4674199546307523 3.179783800016755 1.464550393165063 +2.424750845053536 1.6594852613570539 4.810701229850828 4.705536298400366 0.7724578152865681 +4.289745236553328 3.685968658269186 1.4075694278012243 2.3358366888663764 1.1073510123036443 +2.484072048810062 4.013816595309661 2.8641505332544708 3.7981273174052195 1.7923255872965267 +3.0408156514167946 4.779074934143193 3.9127062416379563 4.676021568532132 1.898471917689607 +2.7836076728297865 4.293903254436955 3.7270647005425324 2.635618276915651 1.8633969087314828 +4.79814017074346 4.231157922965837 3.920892748778428 3.3274328926615704 0.8207700470394909 +2.2048372703009886 1.158718752774984 1.778536531052283 3.7098634533531905 2.1964488688597106 +3.5053243181107594 4.845315885946945 4.590890460091186 4.01533989456912 1.4583675309553659 +1.3617209745693266 4.99034697867639 2.6164716796180323 4.168479246590981 3.946600330109864 +3.3217561839540988 3.8889308235508637 1.6802690663205087 4.049424641220032 2.436100410467354 +4.072467585851249 3.1714130100529787 1.3452887892769785 2.138570086915754 1.200497632546795 +3.0467687309861464 3.357661669336449 1.3094933903580501 4.5722595592526805 3.2775444302098222 +2.1707962032564443 4.06054457577658 2.347616588330497 2.808839102946899 1.9452185274234821 +4.566757362857603 4.712083220279164 4.948397975977407 1.8839387868770459 3.067903148161127 +1.8576668850697908 4.834101223558598 4.301204372735356 1.7471263655306295 3.9220499535602764 +1.1020178527351363 4.698528985579239 2.1889583744471843 1.8161403599357264 3.615782847547103 +4.042512555694485 1.8340453723626742 2.272064696393484 4.750897760677661 3.3199308216349968 +3.5839581102110665 1.9351460499537616 4.508715313509063 2.00974340959985 2.9939007643169426 +3.161256510106177 1.9646972677044228 4.177096234105719 4.6195916085695705 1.2757570995291245 +1.474503093867706 3.8111005709661474 3.1971447050247255 2.3383019647928425 2.4894374108283603 +2.4886182203925475 3.374539579618703 1.1086020448891785 2.5695152817716074 1.7085444508210534 +2.077693496977726 1.8999096542103877 3.924278596453652 2.0256987647963145 1.9068855424291007 +2.6741015689569725 2.15901453107291 1.4815000130410754 1.1132390081238555 0.6331909856740051 +2.7705450470874284 4.528977113487558 3.4155780411368544 1.059059452056105 2.9402828423176155 +1.782665490344507 4.285636895339222 2.5001866000739232 2.7713327489836526 2.5176151588933906 +4.694041118067254 1.0214921861687714 1.8153316884424453 3.3365816095932175 3.975149931737156 +1.085422828555079 1.7419376458193545 4.3485015645879725 1.5838265638721625 2.841555835254783 +2.9480840576061182 2.1615120846874927 3.5448805934738843 3.000749356464662 0.9564383261195075 +2.0519569997562237 4.7205515967410605 3.951416616475827 1.906701355704691 3.361883046848453 +2.580797408416033 2.402318252533458 2.591066350444437 4.647461332408401 2.0641257546310325 +2.1811480721961334 2.322460200168345 1.1031207020824323 2.073828018760334 0.9809392499864845 +1.5752466818942286 2.781796565390205 2.5857706252931902 3.8430893855633688 1.7425880426226654 +3.885985875434299 1.0357334482873957 4.521314064069007 3.4681934113069417 3.03858552746682 +1.1090634285862797 4.419734081401888 3.134327790697851 2.016901671492952 3.4941638918768314 +2.838043326161465 4.816922835159506 2.212129455124262 3.871756456221449 2.582697406569955 +3.2464861294812244 4.299230275619669 3.441149682199742 1.1276258230746947 2.5417834061873985 +2.854532001988746 1.275639252305731 4.380679555587581 1.5673930815135688 3.226063096129612 +2.463878294691085 2.38414774000591 3.073911118718453 3.560458979606165 0.49303730313721106 +1.0089411074745627 4.089233836961117 3.5086630886066827 1.561728212948033 3.644003115995332 +1.8768048438100564 3.285360663617825 1.76659412073762 1.3124883432038197 1.4799464702157008 +2.442278861081224 2.506057084937528 3.0728965553981977 2.522496982430348 0.55408244130405 +3.7493200447418875 2.985603069370693 3.6604612349725314 2.8255411978786906 1.131527766699035 +4.353985720572746 2.394763701705452 2.8250269188697716 2.8975052308712055 1.9605621706349974 +1.9120033860004786 2.7632899496320555 4.756837377498014 3.632169502369333 1.410519990204365 +2.1451385860467536 3.6757362942076695 2.846121401237255 3.576428155037432 1.6959001441339643 +2.1852860488464776 1.2297511671504715 1.854223419973386 4.241086887480354 2.5710239443959266 +1.6002571923099898 3.1216988411909425 4.634844646219015 3.4911516730323884 1.9033702498111238 +4.060586764543979 4.599018232006258 3.224118662361594 2.859239544890383 0.650419261338525 +3.6929314586621698 4.872199920114356 3.053672281134691 1.7972670206267582 1.7231448815487957 +2.662742487589576 3.329431615415384 4.224916283012913 4.1053652129180875 0.6773232991134694 +1.6058756437659785 4.158907048737366 2.602105383742763 4.8113137521929525 3.3761769755154316 +3.694895617963049 2.573979994750143 4.411700253468075 3.2202488185672014 1.6358509577862304 +2.1832377658602744 4.991231012308037 1.2386544987897086 2.6735044669852135 3.1533506787743875 +4.934205767196341 3.975752885413111 2.461333716432054 2.9700453325564546 1.0850895976731496 +2.5751205308914216 1.869811033515223 4.952739454539796 4.155399531957615 1.0645245132134933 +1.5892093547999995 4.369382928444202 3.7679403434709133 2.3908853399458625 3.1025224547653085 +3.7714537719221224 2.3386720326675365 3.0091488220990583 3.3878565701720347 1.4819861911610044 +4.212232647276348 1.9146817348437755 2.351853186695674 2.1333355895540183 2.3079190053986536 +2.786519212160696 1.0829304796295136 4.973491748756569 4.527579976124401 1.760980374274274 +1.637890268209381 3.684355052289375 1.6821495695482462 4.717779309277765 3.6610198072681723 +1.3459410175262487 4.344357390536768 3.5544480946679684 4.083989958734108 3.044817783010372 +1.6998446642206866 1.721532608864624 4.264869957421244 4.893771630607251 0.6292755211185622 +1.79260921866133 3.732629092567173 3.9415119420751195 4.945582478907314 2.1844529644934294 +2.004755220061521 3.8434520215417085 3.7481528696476953 3.3845932741781075 1.8742949360310086 +1.194575011280259 3.5804778753847804 3.023964169690682 4.836853190454097 2.9965144882924717 +4.163355633593524 4.494451115589905 2.812614550362462 4.761994870869758 1.9772981191968864 +4.362485051099842 2.330535515027196 4.912714197495465 4.254771690260007 2.1358153618637363 +2.839060166721798 3.5184243374338817 3.830266708029343 2.631371309603346 1.3780006722837064 +4.1329476300859005 4.862919284820886 1.3579721793380393 4.652398302843098 3.374329874204521 +3.016982569638156 2.860060472764373 2.8824017462700118 2.2285410118894844 0.6724272484454415 +1.0200911917100495 3.9380634868423456 4.18647219842093 1.8305729309249195 3.7503098103687216 +3.257454635939983 3.024986375926416 1.9798399783984686 2.869224437004554 0.9192639485608989 +2.449242150920911 3.2580919263933543 3.3195375032860364 1.4336548991162243 2.052021236730296 +3.985150910332546 4.9405955976516625 2.348283978379824 3.7167140784827186 1.6689743824858252 +1.4100500907066071 1.878679926252822 4.720977020818593 3.7882233358878925 1.0438598371026027 +1.1196791673756152 4.209333508342136 4.858871348861701 1.5839175434096155 4.502364531498795 +2.4846944179154766 1.738059665534284 4.849042941042434 1.1398702718132303 3.783573092147186 +4.937518391261605 1.7724258997238125 1.4238282468730392 1.972355055017835 3.2122721147565363 +3.848583280462015 1.6946877481593843 3.3509136208828156 2.9873213404019916 2.1843684008194404 +4.448918511127715 2.222177300404247 3.6349101500389156 3.3005424770033853 2.2517056113767207 +1.9037727573627676 1.9796188774449255 2.811656056997861 4.027038112804714 1.2177463510554283 +3.2117272267453942 1.7125927452262686 3.3809886360516814 3.0093522967010586 1.5445121438193838 +1.0112578270425083 4.492719438220194 2.554899976648953 1.478620786177125 3.644029616502398 +1.9514056364791807 1.532447431955438 4.226128225867971 2.823390038396699 1.4639673492697667 +4.653507096825637 2.0170515122951205 3.1479359515938117 2.9258657491939806 2.6457916063053886 +3.6153852659369368 1.8076960530122244 2.0837292656620607 3.5663345081631173 2.3379175767370377 +2.3433542114856265 2.102523193603006 3.007702766319808 1.0975808137931593 1.9252442579315998 +3.8727574800906335 1.1116905160506891 3.58549384016383 2.526691415175794 2.9571190972081762 +1.0901108234003707 1.454132682003507 3.0238661778838805 1.2533172895602203 1.8075827171902896 +2.530978398320997 3.2381567430388722 2.4783957194735526 2.2019636728871377 0.7592864331843867 +1.432626656555882 2.899229071033089 2.5645542702495887 3.4590770697639424 1.717874757076711 +1.599096252501742 1.6808018188714589 4.283583400957439 2.5348816147063995 1.7506095329379914 +4.65390265138484 4.433072254534721 4.575103888177985 2.3598766108256215 2.2262070780812246 +4.82341597090168 1.058815330125468 3.4649048404030105 1.6379045721061951 4.184512870680326 +3.8353529334012375 4.581963230759806 1.2932129678741031 2.595063651871025 1.5007471937488681 +4.534252339455089 2.5419813836388463 2.8800468680206586 1.521029309259411 2.4116534341422997 +4.277714487490862 1.4346004480336312 3.4468507138684528 1.9036965045594854 3.234906854156206 +4.623672188072073 4.713005028315335 2.821291731712483 1.3434132436703123 1.4805759628481547 +4.435947809885837 3.983298061024452 2.460961707706937 1.2111456075008746 1.3292599743761806 +3.604862297528739 3.7598264129270755 1.6119275127332449 2.518913563709647 0.9201291070969103 +1.6448588874127443 2.4761665451668957 2.3389389615839886 2.3498065928136 0.8313786906393718 +1.0524601479804048 1.8585597375750904 2.4295355536960144 4.518309362403038 2.238922189868412 +1.49256909103377 4.593168872959651 2.909902879233851 2.194818197622702 3.1819907463023425 +3.827670185145819 3.0469349484605948 3.758618774644184 1.9418637008936295 1.977409039071157 +3.326377377591621 4.078028405975148 3.8245575703359873 3.2903790620815268 0.9221311984479079 +4.369540516542824 4.907685589880488 4.378432013701051 1.3455049970990873 3.080299726973284 +2.1846191302981914 3.7455552669134513 3.6983130613400466 1.0992563044868757 3.0317680729131466 +3.9667179822016903 4.718040619228059 4.79099313867518 4.209401650257883 0.9501233416287089 +1.9756017476498933 3.9982055679902153 3.806231537040482 1.9062374520812746 2.7750502224167475 +4.4461929338887565 2.3545969816050314 3.301838659023722 3.2906785493601656 2.0916257255200716 +2.8906029575713936 1.0602217029037884 4.8548375916572715 3.805131427421641 2.110018618086778 +1.8199048782537819 1.5593253241678848 3.237919265475364 3.8365061986926463 0.6528460926022887 +4.268832667102076 4.296380318285701 4.545977093593004 1.5575662272861375 2.988537832945518 +3.3482933016856844 4.379852938754033 1.1400621064410128 2.873133295099524 2.0168418455066845 +1.2666073900698103 4.205680172019436 2.445354553216725 3.8339563585037975 3.250594375071062 +4.1194256447881905 4.53920097856631 4.102520056975672 1.1996726888929206 2.9330417953437844 +3.4146750442705027 1.2058510131834481 4.329006061173342 4.949684025367113 2.2943724055922985 +1.5102519334211153 3.4268819905287837 3.8867113983180674 2.210586203364335 2.546147372986731 +1.8388451691241166 1.4574910282948008 4.055398629668149 2.845858055482427 1.2682347500873772 +2.5649696416610737 3.0716388664734158 3.866713734704143 2.4978631754471436 1.4596114404012253 +2.226942193902436 3.140220311462867 1.1740436595123143 4.800284942574727 3.7394789427139257 +2.5995081344861823 1.177983961230474 1.4820488710204134 2.5135787465117216 1.7563555617190498 +4.609639688056052 1.074589996479606 3.4183516479721816 3.8590809546856915 3.562417527987265 +3.904594722475234 4.594522703082708 1.916767149669195 1.7764132680884792 0.7040595361898597 +3.5215707608230407 1.8170597931163028 1.7488624714529912 3.788994275488289 2.6584761456272044 +3.0351361128947407 2.4069582838050523 2.4326816437640217 2.210469509851546 0.6663224575367168 +4.465104763682898 2.148039275223884 1.7441226393298135 3.77351387189586 3.080133317345817 +4.488518375107567 2.052103007759892 3.1935506532526974 2.2630452197523616 2.608056786962576 +2.243344218106544 4.442313422179354 3.371245640741288 3.0144460464981524 2.227727880804268 +3.606576389804626 1.63027829792316 1.2422624376570282 2.760952840884809 2.492423456965225 +2.878018525345938 1.8665779395165893 1.2591631839640103 2.544798869773289 1.6358090277563302 +3.0588288912541453 2.794217171607721 4.261008458495858 4.472303736962023 0.33862229234994584 +1.756198937832926 3.901636198075153 2.946481082883659 3.1272933937652163 2.1530429929293105 +4.407275185843764 1.8400179141236825 4.47885033991 1.8890183377333094 3.646647734385399 +3.9725030255025473 1.7200795862326035 1.300005341668014 2.6253364731158495 2.6134104074479847 +3.640155497807123 1.427226928406502 1.8153684418023381 4.869019867572487 3.7711854745394775 +2.8834107301513026 2.9339991869967843 1.0542641778824913 2.8071304656133895 1.7535961378349085 +3.3791659444001545 2.0360209372624025 1.7282892939695875 1.3041354928238622 1.4085258099251996 +1.8470162775881787 1.7926394059922561 4.720503774375719 3.90667683610503 0.8156415448097302 +1.8917288052539938 3.7535088618600887 1.4858540401289475 1.7514458513293074 1.8806286154775167 +1.4984306550637316 2.11305264845994 2.99764031759435 3.5918459708639046 0.8548921295367194 +2.9953339555388188 4.319044556582535 1.792506387108824 4.35858559579154 2.8873815578390793 +1.3893617313073787 2.1910736996504676 3.126765211593018 1.1684349611764158 2.1160811538977664 +1.9781478564032309 3.256830902206548 1.9237045125339964 2.7345475396539713 1.514099318490677 +1.007875187840427 1.9986754995490514 3.1949117261826765 4.24150304853818 1.4411934823998303 +3.9469943254599302 2.65059977652344 3.2676239934065 2.4995322456171323 1.5068522686495753 +2.8582152275892008 4.121407067451671 2.783780706350495 2.665509794192788 1.2687165297881753 +2.094677479717502 1.1812849138838852 3.4542067679142616 3.9975535747385913 1.0627848944195215 +2.5388461448727346 4.4261909176061565 4.3531449754113325 2.8146870693263932 2.4349379909885647 +1.7924201847114651 3.761605924602319 3.388797199916869 3.661630216586057 1.9879965626666205 +1.7888932525359018 3.0587173357340034 2.7592756434794605 2.6494804143590582 1.274561961854935 +1.931021473327991 4.375933841219783 2.996823844999472 4.228100683246037 2.73745121218127 +1.929177843550816 4.031753160246039 1.3092819869874806 3.3782308129885474 2.9498088424484745 +2.751417622324339 4.868408852561922 3.4486800906569024 4.075047407023806 2.2077110055248426 +1.974442683674679 2.1153657583763024 1.4698903513175128 3.0499316334128066 1.5863132622873388 +4.688482462702593 3.1888160436544566 1.0093350521629016 1.7045826621555507 1.652987782054408 +3.363288401502216 2.770148435376833 1.957799549476675 1.422234693734711 0.7991525099260661 +4.250686985033647 2.744260170868832 4.209006747836064 3.363957335775146 1.727260911170995 +2.1923361112610693 4.466039921263411 3.6778594114265366 1.3569370000996228 3.2490629195229044 +3.203644168123191 4.961325624887555 2.1414842925012603 3.7035251115142165 2.351470948941526 +2.2427987217084735 4.099482264838658 4.610984528476305 3.6972306521966547 2.0693525378114144 +2.921376240860709 4.756268369308573 4.209903351397635 2.171951725429859 2.7422756886980997 +4.845577494530085 3.79153613222852 1.1250945215191024 4.049233686919143 3.1083103210697907 +3.910725739222349 4.5935079503736524 3.6668276589454285 3.620958662268242 0.684321205809695 +4.976734483676675 1.4581343224123273 4.8296241232643915 1.0813639030184814 5.141011746098954 +3.113102019700172 4.443763032489647 3.9731870356858727 1.5981715106667012 2.7223808468030337 +3.6329230921703517 4.773153032869537 4.243576321755787 2.0967082563851003 2.4308777854461017 +3.146292699822715 2.504222117333239 3.6102893579165833 4.091927161900578 0.8026391512534761 +4.327529245920811 2.513930750574194 3.3837161915426273 2.5245258461193067 2.0068252420158954 +2.6519730818582024 3.4850366453049486 3.337359307698257 2.873801309556052 0.9533524628300906 +1.8353521538284285 4.912223889462641 3.1030533953661417 3.08549405724021 3.0769218397450584 +4.3009051897022275 4.595438182782681 4.196528492112881 3.9015561669107104 0.4168433238617426 +1.1024704242395917 1.5389361124584902 2.041194823950789 2.0920495572547764 0.43941836658452993 +1.5789892000509091 1.6276063583876876 2.741501999620902 3.9965715369840753 1.2560108167136752 +4.016902049597749 3.334581169431288 2.580882680401071 4.899005939319235 2.416455509014909 +4.510567550431345 2.620353207526337 1.071192535265837 4.43081056268297 3.8548597318540656 +1.7296270954498754 1.545515483351882 4.132369843779243 3.5494828003789918 0.611272763235209 +4.505911666987334 3.2748518098478714 4.169399322934137 4.210007242001811 1.2317294244075039 +1.7819139231798249 2.732136570985805 2.9508060917618333 2.2776784246444484 1.164484408071787 +4.428342240485101 2.430413163412289 2.249911187734566 2.6999275260613618 2.0479832279035084 +4.734581422047898 1.7049464587186156 3.05340451055202 2.4747540470061873 3.084400163725361 +2.0638457403294526 2.5297058611709433 2.815664686115673 2.208160993460729 0.7655627921861413 +4.753407324832088 1.6929978747814087 1.295836663224391 4.358774628241056 4.329860849900367 +1.5793861507271698 1.9532898679225115 2.413522920140261 4.365432430892474 1.9873989855832768 +1.706033400355135 4.188996373159832 3.0078057438190093 4.746935488294202 3.0314480685701164 +4.504968186644213 2.9065857387013834 1.6724045455309575 2.0067714044440494 1.632981214292167 +4.640859512808788 1.3417906528843493 4.199395152770464 1.3831876639693044 4.33761224206393 +2.1964499882621915 1.5395934447550244 4.0179026900905175 4.089176348288088 0.6607120803353357 +1.3055898520400322 3.7017237098024633 3.0288173513109204 3.235326076609315 2.405016282260858 +1.0483620087456131 3.9288474386157444 3.3287013360853526 3.5064710232405556 2.885965760948209 +2.646778716404892 3.002444267872332 3.601035882044682 2.577485596154939 1.0835834865138971 +4.613332039595035 3.1085980187905147 1.4367425029965388 1.9305152334851705 1.5836779921248942 +2.7418720149766687 2.2680433801150675 1.2613625374293904 2.2619420142893967 1.1071011086293123 +3.157958794453509 1.9666207891246135 3.278114667575147 1.9422598745691557 1.789914598783448 +1.2047274231516751 2.8156958267077563 3.284563630799701 3.062000375894648 1.626269842212528 +4.769746703473801 2.9236060462445175 2.7585477592699843 4.056661030894267 2.25684146369258 +2.085367746977082 2.5326838476106173 2.5560388115238957 1.8594159267300339 0.8278738656972527 +2.2466969137085715 3.2804256571407024 3.756242319845788 2.468009156729592 1.6517081453907443 +3.8049757211205173 3.2746905525891603 1.2550957570227568 1.3514838597886323 0.5389740497641187 +3.1661781449242024 2.0795296177438924 4.957941570903923 1.6914208540043139 3.4425227109719225 +1.9649725394957218 3.15960954152964 4.042576111365953 3.4254241272251877 1.3446315994195106 +4.772618688667267 3.7408817097572498 3.853614076907227 1.3673601455053221 2.691828338706203 +2.971148527563848 1.9464379446066777 3.096344309271678 1.1809849005227129 2.1722415711673526 +3.4471166080270486 2.699362532545027 2.013095897450395 4.076173364129287 2.1944076173122826 +2.9274903774450594 3.7733089381277836 4.782251558121258 4.182978478827659 1.0365988911635144 +2.902844482547421 4.404612626780748 1.765209949219018 2.438242871959068 1.6456855331824563 +1.2171246064824857 2.7539439726178796 3.254025366589463 1.41552452188012 2.3962260160773154 +2.4206750335851055 2.480818108743503 2.5823289463506343 3.3490044783239203 0.7690309231858169 +4.520828188176843 1.1709926521214271 4.105017349420709 2.2104713218223266 3.8484675871453673 +4.603983384321807 2.9029759344655313 4.0176041538173735 3.001968121153387 1.981146863640349 +2.2281928930449695 4.503860980976061 4.963003044308321 1.0711272872415871 4.508365796480107 +4.406415140729202 4.3048772117806955 4.492743380766157 2.627303319517105 1.8682014273434273 +1.6679675087999501 4.082242687664987 1.7681392510434644 4.2106394832293494 3.434316820491655 +4.029581949553528 2.236971138173525 4.6937625625176995 1.2254864012160698 3.904150746593891 +3.668916359532504 1.110571713799994 2.201359192876796 4.987588584384781 3.7826183455975517 +4.630882312937532 3.4250261326389784 4.216615919270463 4.744879978598317 1.3164923258195467 +2.8268563301221237 3.404115309502049 2.522311721125773 4.2253182981425255 1.7981822295410075 +4.513268356186465 1.0069080302577724 1.829134255691144 1.937456775015645 3.5080331388742003 +3.0736375282052633 4.00994734869801 3.5997391891514634 2.8903206505970767 1.174713047001608 +1.1903573557515048 4.1295741739421485 2.380133259637087 4.663755301694243 3.7220861267982537 +1.292332633499485 4.932490580975199 2.948425641052305 1.9352712532194527 3.778522422343894 +1.6705240560051147 4.053839374003936 4.890185755350744 1.7016208828460342 3.9808463737224025 +1.9873290637581054 4.089259067245287 2.282121147210106 2.8926822186269376 2.1888112210716786 +2.562085414041643 2.5841776191804655 1.5337589545187282 2.5940378174239105 1.0605089969686265 +4.118060807536789 3.509936878796795 4.392364966396501 2.2800734926686927 2.198087801405886 +2.948622130057647 4.385270516998714 1.3193406487049186 2.1482639912055532 1.6586357331984605 +1.8801661287770628 3.0820916562471776 2.6167082412369838 4.74936051429913 2.4480258763708878 +2.747655417021316 2.905483393869222 3.6660756262590657 4.374761605956227 0.7260478552376752 +1.3989109103312911 1.2651805923230715 3.4005697439767966 2.513432771498954 0.897159855260885 +1.2782672706801628 2.751517393810576 4.175808997680372 3.5301555462587775 1.608519289482223 +3.952744565194266 2.5887604951112637 2.1500177515664323 3.531499589333678 1.9413769885112369 +4.778246318451226 1.6607573325686724 1.2778286307980546 4.055141896812415 4.175189403449667 +1.764401206297436 4.873618446151966 1.4729195196502274 4.684077642966148 4.4697615526498105 +4.238711408715105 4.940534535330588 4.012418767939841 2.890076835403329 1.323709603569501 +2.4315915739525265 2.0003104854932854 1.6482554115188108 1.7548548748831911 0.44425985960039377 +3.8097630371720936 3.788920908201779 4.514480685065923 1.967622911016616 2.546943053068797 +4.86792876892053 3.794642561512325 1.016239985959401 3.0507932750265776 2.3002935397611224 +4.793348704336652 4.982216212534343 1.555821510222128 3.7952027296969786 2.247331569170307 +1.665944017525312 3.8994878632757297 2.4576068906869364 2.9596041780389357 2.2892617559812445 +4.365394278029506 4.703259807911093 2.3465673910743177 2.2758331331588932 0.34519045688577626 +1.8730742355067274 3.4116662758840675 3.0286373657705083 3.7340210960123916 1.6925813639534322 +1.638346314198095 2.6816526510301415 3.6531798589634206 4.650699803722658 1.443445237155319 +2.227334028767792 2.961981763212047 2.032010250828826 4.37054620296703 2.45121555420306 +3.01541305762077 4.9242990647109215 3.6160695640855796 2.917778375495509 2.03259842864426 +2.076431737808199 4.571949668689228 1.9988652919251906 2.0840510054880195 2.496971435388066 +1.935875220188386 2.12813645367534 3.14232389105646 1.2832316871506113 1.8690072778149984 +3.0704164744971747 1.254330338520913 2.2178883806884757 3.658461425767658 2.3180637505241086 +2.0748835201407525 4.2443393094328865 2.224006970988138 1.6851140044717234 2.2353845420987453 +1.3282524589852271 1.703031670703278 3.7949567813307374 1.4856276651420415 2.3395427810606213 +3.086277780564927 2.3209164500278745 4.743830866400882 4.559557075544615 0.7872323648567723 +4.2607261205345965 3.3804281919966117 2.3238495601318454 3.487063815461398 1.4587638077461864 +1.2680830707782467 3.507522104672551 4.724966413102942 2.375970028415879 3.245438522265111 +1.0592524699148784 2.9598282206483093 2.083696575538843 3.713929069127433 2.503966087515567 +4.028813145579936 2.789355101879674 1.212484690620197 4.563879689684559 3.573248477484724 +3.758783760081398 2.4460394695378938 1.592555757796204 4.262073922434608 2.9748318950301984 +4.432422298354501 3.1279023215735595 3.8161536018867133 4.900919052891364 1.6966108727442106 +3.640722515830915 3.4781382189343857 4.609963897759991 2.2537401683196885 2.3618263942921183 +3.0006465830184172 2.665253830632582 1.232523715961761 3.6404816877310475 2.4312033835449065 +2.120259135233146 1.2031129457527987 1.829982220308092 3.0651264631252233 1.538420759559174 +2.055080889249907 4.018694549287612 1.687654546449834 1.6147547687274661 1.9649664077226976 +1.8638574448857193 1.764445476040458 2.673679305659446 2.8266993676613272 0.18247706410601508 +2.1710995086834277 3.4474105823449466 1.6570534029398818 4.251696477695885 2.891564047730969 +1.8428870772065102 1.4640203181327243 2.795077599323562 3.8948752931411863 1.1632261123520393 +1.4030227063705047 3.527880784472487 4.167613493155351 2.06751639927772 2.987545757940541 +1.1721689156177941 2.2338160949440136 3.371646002705683 4.601678727435707 1.6248308334340793 +4.6881528933138945 2.255111680224988 2.847330173375176 2.450849076276375 2.4651342366990496 +2.846290379346722 4.286821892152138 3.1068753083749474 2.235884112877713 1.6833765776020413 +2.562870243375055 3.807802176432485 3.3323914157748864 2.318416776629974 1.6056151739365088 +4.213039185660438 4.410220949486004 2.629428748692384 3.228862966430722 0.6310325105578433 +2.7466648354587835 2.666178751177931 3.471224933541431 2.6181053141425106 0.8569078683068697 +2.129499354065951 3.8079111710049625 4.501348437833611 3.9590266773038216 1.7638534857477945 +3.6338461664949215 2.8470712447060302 2.703696442736288 3.342327332117473 1.0133430763703473 +4.852061079558497 4.942541649017827 4.269235374815301 4.227755531104521 0.09953547550474375 +4.450416427721937 4.856831681963726 3.880465165255704 2.4236739621438943 1.512419904769959 +1.2140141829735493 3.402375673807392 4.443306892771446 1.295577020797904 3.833683523907404 +4.296856745724537 2.727280045759896 1.5633597430393782 1.9153132729282851 1.6085528602670027 +3.505689154128701 2.5677436636906745 1.9957650729597938 4.50713809303383 2.6808088684180404 +2.6774003594927183 3.8784293538861276 1.9980379171216551 3.885816424143919 2.2374490691295863 +3.7281748171471714 2.845137016213741 3.5249447873722795 1.2668940847127135 2.424571866053615 +3.3776226169688224 3.881041680736963 1.4554615833819136 4.843489502171632 3.4252246542765312 +4.374731867748064 1.6654240771943671 2.5387836186708115 2.415597472327821 2.7121068435085283 +4.430130584452287 3.947360226702342 1.5031141145420275 1.9537697129940854 0.6604223548140933 +1.7927312834627096 2.6532409474587513 4.8803774596481855 2.4320071983337606 2.595186663482888 +2.168074343866302 4.599050153233686 4.670302101926077 2.2757669150887767 3.412248840095246 +1.1629859895578112 2.707889304181488 4.373057283907488 3.1297753345846093 1.98304721503229 +2.8532001841357624 2.5557580200802543 2.5971417952387 2.132895542940725 0.5513587069510546 +3.787672223338434 4.2115597562299865 1.0759127941838282 3.080596893645322 2.0490092677132106 +3.893264252413974 4.762664409756204 1.7729449820728784 1.1122105027451146 1.0919829145912612 +1.7190341229756334 2.74604861123354 4.314241867151632 1.9398277868791478 2.587006181609908 +2.4232329162038693 2.479031782346238 4.914762102245221 4.493000909505838 0.4254362668646394 +1.5551391550378884 4.890341335412579 1.599671680620586 1.0282086440652511 3.383806079864083 +3.4708628379946678 2.5811223850158487 3.8563974137405803 3.2346089117719337 1.085476399949519 +4.553982293074437 4.608757651885922 2.1492595782254846 3.8381367755219213 1.689765228509805 +4.763269442384299 1.3058268087680265 2.2808081185055125 3.3205320947417496 3.6103927087656156 +3.602949682656372 2.1304860047314813 4.5001677770963155 3.2122800974446584 1.956221858125153 +2.1439706169583497 4.857883460030797 2.2886085088636223 2.8073637043191138 2.7630472078134383 +3.260312114221877 4.522061136486851 3.933269995611107 1.3703238117648011 2.856694547283444 +2.938341502113282 2.2698509631858865 1.7114211919707105 1.3402538425608004 0.7646206915218929 +4.861741977529498 4.7763423483052785 2.9573165808611397 3.7315554267285687 0.7789344562424766 +1.1162213980663473 1.2465949610845075 3.9984829944801654 1.1882932766634124 2.813212312652042 +2.329393999211688 1.3501468986546503 4.145017306219533 3.113534281263961 1.4222806033694129 +3.665929294723841 4.958662049050929 2.6024150038271103 2.2265443713027193 1.3462676949642611 +4.089316833325363 4.808014094483065 3.7371365060037562 4.63685932999646 1.1515324195214773 +4.841834443717508 3.2322841383574437 1.947181485266055 3.79856974969569 2.453220473408872 +2.575645610325239 3.9293375336099947 4.507137081751599 3.06238991508352 1.9798424681680673 +2.5700865060437326 2.8643983946803044 2.6357074703333194 3.2251133056480965 0.6588009763926705 +2.8393453629243672 2.7806488849724427 2.8261399361709256 2.205398607365594 0.6235102836449208 +2.8832004134682894 2.616650353210052 3.835390665624409 2.1971271969052615 1.659806051188922 +3.3006427325875882 4.552454514983802 3.4075615242660144 2.3037472554434295 1.668963354481555 +4.257641947657048 2.264609342321928 2.0293224189532384 1.7307355741135426 2.015274936538492 +2.1074237680151535 3.2773964283014942 4.523362440093191 2.772154396673781 2.1060782599785637 +2.9894229168330178 1.2602716637864209 3.1865583873185406 1.9764686662757893 2.1105168061131234 +1.1244290537390813 1.5502608288824615 1.0196512370133837 4.697457766733324 3.702376746195934 +4.5320424328798925 3.442745328863259 4.888045300513159 2.156986147461062 2.9402809862815262 +4.873422174123931 2.3643246602764725 3.9661775118212215 4.987636439071836 2.709049404137081 +1.5692800808183338 1.064858273594087 2.335957099836298 2.5117464606248263 0.5341753073381571 +4.696898756339474 2.632142710615147 1.3483826210338323 1.0111332205686692 2.0921172735937317 +1.844256362577163 2.6480859019771334 1.2614498855749199 3.192418118163092 2.091597533866556 +2.7637686439678997 3.37896266368209 1.9364966827979613 4.462011745896474 2.599363386644812 +3.3296283090292293 4.430656111766489 4.08763712434205 2.3611629749954837 2.047675562866928 +1.7231315170968537 4.68359262253464 3.198613256864672 4.4615092065630835 3.2185767252893895 +4.3932780651974 1.2766782470832116 3.036940814853796 1.4331887796660898 3.5050271064056124 +1.5461598571848172 3.2820592896074907 2.654657203532961 1.1374823878443139 2.305464434955621 +2.1351266233313657 2.824790728374117 2.889770895242536 3.065691103289208 0.7117474955232393 +4.813810604419855 1.252487578101673 1.1609549858241786 2.79713106659077 3.919195563512596 +3.5343469565305647 4.328004839811849 3.3315446545827525 4.907445104543241 1.764470193536915 +1.0920560457994468 1.2892580330529584 1.0989233682594577 2.8796368866960806 1.7915996367826355 +2.151089966088514 3.281155788184583 3.2112763221847564 4.60956856405056 1.7978514832799066 +3.9568525568772395 3.4588005782107567 3.9559969617715556 4.993287791137959 1.1506641726156421 +1.544468741233648 4.992953214128621 1.354425059982451 4.37725693362663 4.585799569989611 +2.2410350327096236 1.4082738954059089 4.951314330566587 3.2349057008483055 1.9077603874634692 +2.917554633786224 4.673722562767447 1.0436436738358332 1.0234971679418896 1.756283484088469 +4.632630370427342 2.1552254868055853 4.0089916545998685 2.812824054092081 2.7510637735060754 +2.8572308490377694 4.389221145724639 1.0976927985978921 2.689315961622273 2.2091307254706445 +4.688189597129922 3.3409980488698334 2.8433173573001604 2.447636880657678 1.4040969009649713 +4.653294224953191 4.795811818381404 3.3421799976712516 4.099987271320716 0.7710921659779738 +3.2617606211998975 4.21589749494559 4.7925851746246195 3.6511687932179373 1.4876856286140325 +4.668419567670918 3.814090282258987 1.606119885373734 2.310720387324463 1.1074025443630156 +2.166023264886075 3.117110306701108 1.1154441686524414 3.2246531531434166 2.313726237342249 +3.3207370214635055 3.233210377784557 2.8537684921376796 1.6891230685412624 1.1679297393498376 +1.1355340702957668 3.660284832621142 1.7735166664507283 4.328039742614044 3.5916506732299913 +3.3322390541783333 4.157658839762155 3.6958658359427354 4.439777388870437 1.1111805528412317 +4.799345815038315 3.5037539516162415 4.8038900595423275 2.374885100464941 2.7529299605671076 +1.1121219485771268 2.81554692521472 3.8269908380830655 2.672015289061435 2.058063451371362 +2.6149563221248804 4.108216192660362 3.2208263281614604 1.1282304040564144 2.5707552863959444 +1.4445176448562633 1.1850059483485214 4.465605959750201 1.5815865978964498 2.8956715974315257 +4.406425410211858 2.356518241000124 2.2042810112841664 2.700952702325563 2.10921837917926 +2.8161700220049064 2.6055016698060878 2.721300180271108 4.117369174660123 1.4118745665647923 +2.1993262269527367 1.63007090820498 2.5444503319941982 2.1003455000007656 0.7219977283361251 +1.9415831608806648 4.580580623313079 4.600509306543515 4.631666084136336 2.639181379048187 +4.118250136723364 1.0522686460465915 3.6699486161040373 3.341509990192136 3.0835230552346227 +4.8169656814757325 4.8615758865443635 3.283637079295167 1.3047574376360167 1.9793824053399365 +3.1067734794422472 3.2440252665893743 1.4958402226378835 2.2112993520382545 0.7285051948458686 +2.250426646417261 3.689142707873294 4.203927301831476 3.6056860532945336 1.5581387925799803 +3.694046510592762 1.734133587654445 4.713854225202581 3.802774030106269 2.161325007350202 +2.5894275010796957 1.7616003676571417 3.7653403532237535 3.895753229315992 0.8380365630933131 +2.3436497404844334 3.5859381623449957 3.0084397684985635 4.41608754287921 1.8774324967379237 +3.577869032572737 1.621670093214472 1.3251464367128842 1.5302378230160034 1.9669206306005682 +4.565014659782015 3.437852991512468 4.10456322800926 1.6574586286052493 2.6942186894980247 +1.5575875470254794 3.61225428475159 2.612360599956435 2.08121839134542 2.122208153995796 +3.654988086384185 4.124519700142831 2.9973603440009184 2.1102054689286938 1.0037448424192341 +3.3210456751202235 2.039006357050055 4.004216185003401 3.6289482953775645 1.3358333736144083 +1.9984492149542876 1.4916587148833664 3.7171896134679687 1.932335933844623 1.8554081137655756 +1.907146677885247 3.8272326196736124 1.9569204312105541 2.457671618113805 1.9843088910344397 +1.3828840611164739 3.9900710397768537 2.0541074190728694 2.3660167595523864 2.6257782424215885 +3.3595499577162875 4.080937356664107 4.908030700954013 2.7345218205877937 2.290096205924877 +1.9036836135400894 2.5297286067314135 2.849785466355946 2.1482179560908397 0.9402815030401829 +1.7679142031155863 4.299874220916414 3.56440974300197 3.215682550545562 2.555862317594689 +3.9353608590541245 4.21774568692218 4.2969411050637945 3.8167152967820352 0.5570978531191271 +2.2458251145115393 2.9412601035429797 3.570681198400089 4.381878696304581 1.0684901518384096 +2.603098944298265 2.1409771964071975 4.096489698567765 2.832484976004352 1.3458322512618373 +4.285770300586424 2.788268787846025 2.1172125517487568 2.7074026170075283 1.6096071240491996 +2.056162503398612 3.516097457056994 1.601526445104883 1.6341472075484287 1.4602993470709693 +4.005666620765826 2.498761044657762 4.495491948910656 4.110049375505778 1.5554196837826604 +4.680776432889795 2.460644112672645 2.011416025784236 1.0486887912626295 2.4198824862712667 +4.739068894132581 2.2023330473955793 1.3324008101482812 1.5810981334646574 2.548897627356819 +2.6254424885030767 2.509971903170445 4.847451306806027 1.1420885957879539 3.707161485055684 +4.018672980313122 4.124683562625307 1.9596496707959634 2.109608392757958 0.1836460232475602 +3.5624845959941545 2.0045573263996825 3.044795842965082 4.843007482500147 2.3792230828372256 +3.6222358581752294 4.631002832823193 4.456504533806395 4.274941106901171 1.02497613978569 +2.894333550805566 2.4728589618250214 2.769516995746925 2.8496698338787847 0.42902832845502314 +4.568325838848535 1.3443996771277633 1.061303760020798 2.0923142040547993 3.384772138849943 +2.244263323651534 1.297734670423706 4.309113239666258 4.803509831376413 1.0678691311560156 +4.553539999895712 1.9597851468934633 3.261741754915754 2.9878812371166443 2.6081725059286076 +3.499750584626279 1.5261411394422084 3.9974868399121166 3.8734393318598777 1.9775039889653183 +2.2207894819194163 1.9476650850236363 3.515465509926131 4.194271847090222 0.7316932277627097 +3.866142066541886 3.0781506711245856 3.3416263809293447 1.3637266489859163 2.12908848779791 +4.723630551499257 4.378540405860455 4.045795150552371 2.583509519450995 1.5024534853174518 +1.540668131479955 2.443150344066961 3.0128951564634585 2.8714588209810614 0.9134978823350532 +1.9165938972228087 2.763852600847311 4.281206316366267 1.4794352713944354 2.927075041626029 +1.8113785392055064 2.9000880343150115 2.033626495316566 2.69235786163191 1.2724839400594703 +3.7090657647201115 4.465593597004817 4.158382382485559 3.5982058467505085 0.941345904654351 +4.400766512212074 4.604529926936296 2.446540227434303 4.121381088238259 1.6871903977318656 +4.962236840234112 3.447388392619338 4.333318734483934 4.914971566301222 1.622678599107649 +4.024948422946535 4.848489864658592 1.07960215536011 3.2706943377894064 2.340748909669713 +4.394363455101831 3.257267462008095 2.237364462386255 4.4679821578851 2.503725743962866 +2.9464467164297448 3.1115823637339965 1.813174988202717 2.286694463267544 0.5014882603573723 +4.39680573796055 2.9929884046274515 1.0278427686887954 2.0840608439090387 1.7567867621849862 +1.7500173850859215 2.9899880224704947 2.817303771646143 4.2884096916387975 1.9239750022839017 +1.1559333448255416 1.4703157836644025 2.916342482653561 1.4703898632256829 1.479734873374488 +2.007439835201283 4.813106667963753 4.235565199200739 4.677349226886622 2.840235818304838 +2.2404740238116516 1.5461657719334436 4.612453705503782 3.1715342070989805 1.5994727098357502 +3.626082735932789 1.874876618109767 4.51471911085746 4.467196188780987 1.7518508199111782 +1.398657294130107 1.6910039273487927 1.3019649230159365 4.480645570619231 3.192096053285678 +1.2821905609932136 2.336023120416689 2.4905985137379787 3.915604222772361 1.7723443046094671 +4.010328893992623 3.4931642188315686 3.149174758769404 4.330361372683519 1.2894421732378427 +3.2770130786642997 1.6339245897164436 3.9748676959371902 4.943288044171501 1.9072434960925184 +4.141195901295171 3.5135536521878734 2.177942626255472 2.60255020839695 0.7577772704934467 +1.874619624559935 1.5353565083562248 1.2072084745380964 4.481680179269073 3.292000061831719 +2.5816324863609084 1.4032732431747443 4.874392713193879 3.1170515633223497 2.115839885963505 +1.9737356567218276 2.420197486154667 1.3922487622560622 3.6641282414466163 2.3153324886736377 +4.716631716061051 4.946635250584538 4.451479750663203 3.7616367052607975 0.7271760812783665 +3.251446461936907 1.803087646354883 4.506550581913413 4.616014726186549 1.4524894689999006 +1.7291667564442217 1.8277478774815088 2.8305345591255096 1.1090452337181747 1.7243096400926283 +4.5931828328028015 1.2309631597124162 1.4263767816841013 3.887446241623658 4.166699415216221 +4.4011135807344655 3.133967767317324 2.850855325371815 1.3959815059836087 1.929330542649915 +2.1924150520798764 1.966668955459188 2.995064011452291 1.6734671213939842 1.340738468140325 +4.4862853284606965 2.128202207067215 1.4539861967989225 1.729864216255835 2.374166103923711 +2.6669781462659374 4.432120234252965 3.5417528393245963 4.108458994270061 1.8538830752871862 +1.144769480393002 4.454661980003159 1.7733920833180545 3.874107496082179 3.9202542780284446 +1.8754731258823365 4.294175043645788 1.0625833554009398 2.093993961693024 2.629434693192513 +3.9142841779126303 4.071608621479651 2.0334828877124664 1.9115634322485349 0.19903601222968256 +1.8799029095812854 4.192156884298842 2.8818913989501618 2.434112941615141 2.3552120903329428 +2.5970261002530464 3.807800716016817 4.706334231806538 1.7237536238784492 3.2189691289241336 +2.1707706458852893 2.367188193934159 2.77147142806162 4.209164083253346 1.4510479054716854 +3.576927909528224 2.152885009887257 2.397829541167488 3.5509622899382927 1.8323791409818995 +3.5822027126272347 4.419916405993175 1.9066129298090075 3.9578564423811953 2.21570850517894 +4.889776668929116 4.324986011205234 1.153543658448163 3.1734590441107944 2.097390438685366 +1.190270949792363 3.117580252001783 1.21953508947527 1.529998001043209 1.9521548006862066 +4.759623397905692 1.4783548015399361 2.8779447967417693 2.6665435973272715 3.2880714816758445 +4.618467190751259 2.95598837963745 1.1560463231689142 3.453560862023629 2.8359141125307685 +4.336523606584212 3.841099031650822 4.696469773384415 4.101215134301014 0.7744505115230026 +3.2856282511241233 3.6024383216477434 3.033528819222214 4.216402397226488 1.2245646256224345 +3.7488501452814593 1.121728218279678 1.0167042277297287 4.764877246097225 4.577179327375284 +3.0548170840382225 3.7608713149762694 4.260782356772851 2.7327458351540908 1.6832730581893947 +2.4586379321436356 1.8974739631877107 2.8425261120854706 2.202899314263378 0.8508980200626338 +3.376842471486577 2.6124242748757904 4.814338490523644 2.8816341853264946 2.0783842548088365 +1.0894221320458373 4.297359406879824 2.692170023014358 1.7486045967440371 3.3438267408647233 +1.9219680547480888 4.3753298761060755 2.3269038965618223 4.480490014506765 3.2644934360329394 +3.3960094767497493 3.252810826983828 4.551163735717619 2.900314620529202 1.6570481750429473 +4.280672095342492 4.6723275008824725 4.980875029140989 4.438137860642767 0.6692963400155078 +4.18602962955063 2.8727787433372556 1.5113794174006832 2.7975065653085163 1.8381378976360152 +1.795792348669866 2.241363997202676 1.5283154403283552 2.076967919947591 0.7067910846697077 +2.2889078558913774 4.031237447946845 2.6482348815124355 1.717889170945405 1.9751596260866222 +1.7800444855338409 4.772978420057948 3.2917652144176 1.179127563671229 3.6634534772229737 +1.5387743107706844 2.67555516732578 1.4781775341904821 3.085166561032677 1.9684218166392489 +3.6365552008509296 1.2716455268831264 1.2414577008343612 4.741780887243718 4.22434138953535 +2.419517758413423 4.037099696651474 2.7615619834662413 4.817974242108803 2.6163720500741805 +3.74162608547065 3.6485674819906784 4.720829234482068 4.229354152396045 0.500207616888333 +1.3270123444270174 2.5083785454536063 3.4320284411169664 3.7482012801882894 1.2229437293246224 +3.1606221784022086 3.1345919782293925 2.0369107249846765 2.2797669829532494 0.24424727911592978 +4.243025274194235 2.642926891547863 2.9249582706645083 1.6798281676423263 2.0274772027323915 +3.167645438524262 2.042358050585213 1.0163282166922625 2.338338873201485 1.7360829131636062 +2.524162506132788 3.5287745457214617 3.6519762169403074 2.973064058525689 1.2125044614061056 +3.4240248411212897 1.6639654226250955 4.705966517065686 1.0948689710708783 4.017192383161016 +2.8964256298254725 2.8211878113237825 4.73302225938444 4.106805902454408 0.6307199497555275 +1.827978366755985 3.222992821414665 3.4812787507561573 2.746685311706129 1.5766080202136488 +4.254626380512978 2.608480727413371 3.8626749941871266 1.9679009299294248 2.509972961169578 +3.5756016970668165 4.055967333830745 4.593806179496207 1.6908843471278758 2.9423980542789114 +2.646004710216028 3.554072745164661 1.4291480577812097 4.275624126824709 2.987810831985988 +2.8835057495880343 4.022710178673439 2.226680108776956 3.2477205356703633 1.5298072704097319 +3.8103636012872215 2.0338728088558584 3.120236601570707 2.2432292385194827 1.9811767842470478 +4.607297757478726 3.501093840926597 3.8017905379632917 4.768107397821683 1.468827892791341 +2.2081308311193126 2.3832578361801025 3.051658076909378 2.5925336531246947 0.49139058234481814 +3.2209496501751227 1.2507456935089616 3.8964232410707833 4.711996891007033 2.132337686515279 +1.502315969484369 2.1001718173024795 3.4520343381486462 3.572217258274535 0.60981599606791 +2.828277464657514 4.541336507129412 1.4920322644423307 4.57297769236018 3.5251660971935252 +4.093536675561852 3.909057301024781 3.703813030841099 2.1620847079978045 1.5527262672753321 +3.617435999870481 3.0761648254602907 2.13732316959 1.7556539885296925 0.6623034410439316 +2.2265508756810566 3.7037380524276324 4.037703071488814 1.7068034038441189 2.7595606925325393 +4.670806200907614 4.903289841686018 2.8429362467436796 3.764222373840174 0.9501667070625239 +2.653354892320295 4.6955892792737615 3.1819508061942723 4.544709201321779 2.455164298931071 +1.9571116333248124 4.735565673000552 1.5867225967837073 1.1238944056011522 2.8167386788880067 +4.36208557086201 2.0662789005427338 3.7242289167689298 4.276540157334405 2.3613081065243167 +2.4948853623865914 4.725489969794699 2.760821220123029 1.24206149718002 2.6985603588995755 +2.9609795660225933 3.7693279009704415 2.383738921392363 4.247809277505681 2.0317936221854302 +2.6156602869121413 3.4802438692913946 2.2693763537504834 2.4828689596445206 0.8905525608806983 +2.5002113902439485 2.4476597205307735 2.2422632614821216 3.5667611687595433 1.3255400349940065 +3.4749429179208335 2.06733255993245 2.31009364512801 3.738628574259993 2.0055121449810036 +1.5212152608610148 2.050194391881864 3.739278097696849 4.917901776581211 1.2918872619089026 +3.2203823622317125 4.477357816874983 4.1840461432949265 2.282439858457942 2.27949418865396 +4.764410566658814 3.4433683954127488 2.5840622516562846 4.834631935907064 2.6096391171729416 +1.5428956559075586 1.87909843476573 2.4491766183210966 2.16376558912821 0.44101220402263164 +1.084269954332238 4.605329618187413 2.445946645845276 2.563438091545207 3.5230193579145395 +1.3814019996650195 1.536479522881145 3.9738880348165315 3.1089965559772943 0.8786844191036794 +3.3470788356141714 1.541902338692272 2.275649567078985 3.41400443725685 2.1341307353339167 +1.171057545489112 1.7940295854125106 2.847013182671607 4.590862246694948 1.8517839292480645 +3.167968213743837 2.222816489549432 3.811662112180309 1.4633793668075064 2.531352135512419 +1.8070623793305236 3.8137012634144662 1.6059918428379159 2.144775938350284 2.0777121823521973 +2.904889052256047 1.695548302464076 4.694068103498125 4.946041765218118 1.2353120153661534 +1.5731262857328239 1.8646359262064154 2.5729038228890646 3.5011629943871263 0.9729557852026527 +3.3353979506349645 3.422851840559538 2.505918323448178 1.4500510033532699 1.059482883536748 +2.071655618349371 4.360408965641678 3.2758648128007906 4.952209390760633 2.8369918979082582 +4.802303924167636 3.516457945865734 2.219323068387694 1.4596353090979206 1.4934943493464887 +3.7124746696880493 2.646996346050407 1.8323926634139296 3.5624768408090377 2.031855142231992 +2.19822327593812 1.1777201103300667 2.286193969769467 4.215038995770065 2.1821709019559643 +4.151922638221806 1.4170840482956484 2.5828299139449955 2.2294949223781595 2.757569170340942 +3.812149620174609 1.0344701202177293 1.2348832711807374 3.327603078772825 3.47778371920523 +1.2490632713180845 3.8536144475932983 3.1520786964903773 2.4960772574195897 2.6858936534977595 +2.393871303042217 1.2467696662390768 4.136658626874132 1.1939374950649935 3.1583935512776904 +4.651534848183957 4.828230436581743 1.8410307868883864 4.757110461520604 2.9214280754046262 +4.283044749195599 2.019559251851474 4.9750210213250465 1.533674807790987 4.119008419279134 +2.653498966580082 3.317852196918145 4.72491693359385 1.6245338947967016 3.1707633468806304 +1.0688309119593726 3.434432624136437 1.5287888355412282 1.375993912255006 2.3705311112147633 +2.1692747908091707 1.1373636002240173 3.1679259371835027 3.378388616490444 1.0531549005896168 +1.5975818047005141 1.067829210012861 2.4165844220732837 2.924281220645885 0.7337532629291464 +3.569598544211262 4.5088485844281045 4.522898001566135 3.171149825562563 1.64602969881358 +4.06719191038019 4.296621745669858 2.186159263398311 3.957373468722686 1.7860117050187272 +3.484721386016824 4.211914237048943 3.7371903762217524 4.252985076812271 0.8915456330157673 +2.832867142217754 1.375567905648861 1.8780253431132947 2.464080034169078 1.5707263179219884 +1.6563473195149085 2.749070125693222 1.0712062369011819 2.0464286798195133 1.464616654389061 +3.771885534397324 2.0165450725897087 3.240053812461092 4.105313672863997 1.9570116920661018 +1.2790453089155362 2.529002496412826 3.8023422207161963 1.0384784635456792 3.0333703761289788 +4.854975093982739 2.9509795416104585 3.290738272803917 2.030051310925331 2.2835346897527278 +4.84704139234264 2.3216067201089263 1.9649640492425773 2.593723041365978 2.60252918406235 +1.9209167452902967 2.231183290403424 1.1625757820021052 1.6263063061333836 0.5579528008958343 +3.060989373704773 4.5865504841249045 4.742232726179013 2.269456419533551 2.9055050102062254 +3.4617057647281886 3.617804296560272 3.262655925156853 1.4242554452555591 1.8450157387245887 +3.8598592088228485 4.772855645857769 4.044623813474941 1.190570061865845 2.9965288770696694 +4.152022287499433 4.208050490694264 2.6917130145633386 1.7545801876218685 0.9388062073104079 +4.418250194366289 1.054119530141445 1.3743983603745717 2.3770644596319332 3.5103724065372126 +1.8749942747222028 2.784689130241469 4.444660739896786 3.4321245701136474 1.361166494326586 +2.9364834113930165 3.9842415581602872 3.6115739835232827 2.206651453677833 1.7525993406892872 +4.703754648530937 4.857918834711963 4.998021857055678 2.6522258889981276 2.350856295066952 +1.2756875560946987 1.5481639199399666 3.0676843433681737 3.88914317094527 0.8654697997380826 +4.000931558008922 2.923264491689201 1.9748347627355534 1.7061097977915698 1.1106662021572007 +1.754363189742696 1.5880179773999181 1.8289717444603881 2.604991753238995 0.7936484005490797 +1.7100656473091358 2.8772408917428107 2.524960985967072 1.5945880221498152 1.4926124423375666 +1.9969593405834924 2.652631993629916 1.7122838088362227 2.9105306280695604 1.3659070494567875 +2.878631338598569 2.762612311276999 4.954878195768529 4.193658562891501 0.7700102234243916 +3.2847595057502526 3.6135168364542998 3.1801492400859868 3.5414745965680945 0.48850526683810946 +2.826780534125527 3.8377650020132843 2.362537871045147 3.3538431164774165 1.4159010148777436 +3.648362516439337 1.456897681045631 2.71612993008495 2.5916919017945257 2.1949949766803503 +4.505680896046435 2.0863374177570684 3.176387274855674 1.9848540477128238 2.6968452490505914 +4.56481820552412 3.0741005410480984 4.319096098373727 3.8247761151612765 1.5705385703585897 +4.815626692301572 3.6654931764211134 3.1554643636300144 3.9836738768042066 1.4172995809156852 +1.2354777528727556 3.046764395155822 3.417312162545955 4.6360263473635985 2.1831224346767173 +4.111686497249338 1.573154898836707 1.1539535254331827 1.4513218879241232 2.555889398849241 +4.420663342409173 4.286042678403058 3.7493844620303465 4.310914789515483 0.5774417995460769 +4.089993208654201 4.135957264545471 1.0383697822330937 4.935074976782189 3.8969762724014467 +1.1422728551451589 2.7292741255910924 1.8919207968367835 4.5500023076066896 3.095798822645592 +1.156931043826828 3.811671323502182 4.518046371520583 1.17311734126345 4.2703859509402315 +1.9125515744637438 4.902825430089719 3.487088837091384 4.853754342096028 3.287782282057289 +2.87591128538117 1.0433307258011335 2.3874296484524025 2.8549384622067384 1.8912736444757714 +3.8791805702820583 2.845022661039201 4.025742596326202 3.874724916140066 1.045126270351272 +2.8274778007397963 1.052462322876663 1.237127550012647 3.348819140656673 2.7586085841689076 +3.7294561951959135 3.582990971094796 3.8203666498230753 2.229080333589022 1.5980125788318233 +1.9717489969039588 4.181644343968129 1.6430006984091179 3.120631510857352 2.658388659107674 +1.5569141479408821 3.492113770842658 2.342640357002129 4.0510780626184015 2.5814253765024024 +1.913176387398945 2.6315866260856464 3.1879902394580224 1.9936740552345964 1.393737571764458 +2.9255854894481885 4.388451767080333 4.887159551762686 4.717941503581886 1.472620960757875 +1.6330707651105492 1.399204377086484 3.410951337131398 2.486657041293839 0.9534219594519898 +3.9704518350506395 1.6730460890721996 1.9564419623222702 4.767665368617848 3.630571608129891 +3.8034928877019776 4.930947445907295 2.811670355686419 3.9733791229914672 1.6188641205645895 +4.961168608266592 4.833192527772937 1.9178939463556537 2.369424155472869 0.4693158924689796 +3.263334853948768 4.340390522754777 4.576367710218557 3.628245441249213 1.4349162869738212 +3.074506670758385 1.5096645086878442 4.595390969669165 3.2898843635605255 2.0379103245204147 +2.2429205502311067 4.953369704520454 3.6245860630246107 4.5351850211216505 2.8593224862675513 +4.598896091570336 3.993950203186958 2.119077832268734 3.512598684098051 1.519164208489346 +3.117096755400848 2.4522578276460716 2.440381693102336 1.2392062360275231 1.3728923040562966 +3.644432817462657 4.6815882936211555 4.484347632711655 3.624031898214803 1.3475290886464826 +3.4009788875656484 3.024561955049589 4.109915220342321 4.501817255589415 0.5433938832151262 +4.580402619935574 3.6370288981459553 4.037952666022023 4.847895717944844 1.2433670923429054 +4.821603154977801 4.2976725856834435 2.7054255256696162 2.965490324047949 0.584924730881395 +3.785388368239072 1.7391685089385218 1.341344965387202 4.203567246418352 3.5184275036764823 +4.520095444533647 4.68509247300333 1.0763806646423615 4.17362858300212 3.101639677201026 +1.2423558723809913 3.0925168484045367 3.3749500596115527 2.2496062962095853 2.165524006569334 +4.303433997035671 2.996110422319608 1.3330930735611206 3.509887662930592 2.5391986163584352 +3.6118473131000846 3.7822915075768155 2.352609629754167 1.1026334718227275 1.2615433479781284 +1.7958031271534547 2.780754483568515 2.957515626851781 2.1365865315063917 1.282206595712433 +1.9879446831302316 4.266411095306706 2.9532020765905806 2.4377855054024393 2.336035837326062 +4.600722406866956 3.730938087213716 2.3494815764009234 4.0958757070385605 1.9510041574123411 +4.951998228012622 3.4341776393467804 3.4464288545086026 3.175293599335198 1.5418474846676207 +4.176506560643791 3.941641839780848 4.748702807080118 3.7764854334924323 1.0001840123756056 +1.7995650598686055 4.409444164446384 4.234911425852387 3.865602035265841 2.63587905004898 +3.6124152110043983 4.2735131298310325 4.689491684300858 1.7387706650403336 3.0238725157953956 +3.006014356466149 2.9570986204111946 2.9341027898036898 3.4949951012641503 0.5630212556282899 +1.2268396355779672 2.58542192300613 3.3940690945543692 4.365585623880531 1.670206633464102 +4.613191088032486 2.339231574864729 3.1841176844625316 1.3594906102676236 2.9155026714807195 +3.7129309162058806 1.7754202135149422 3.2812693277435288 1.0424193378804412 2.960810193199132 +1.3634556799920587 1.0823699108994633 4.493662400367482 3.03733806921682 1.4832025374465212 +4.054176745817008 3.663859218157083 1.6401483705264361 4.102103956424358 2.492703969454162 +1.8489931899676204 3.2424108848656936 1.5793399934625603 1.7887664875159115 1.4090678936327157 +2.0704275823383917 1.7165568774641793 4.233468754409138 1.34051905096559 2.9145123884489297 +2.794242786517961 3.346438959587935 4.100921337419651 3.888293523830855 0.5917188527203406 +1.2293379646389124 1.406944462437699 1.3920079312072278 1.5997299701794967 0.273299311259921 +2.9577336934780467 3.008191112759137 3.9928423137181657 1.3329973824788022 2.6603234783387233 +4.914535630995699 1.8892544738540655 2.7151857916246307 1.810055253322429 3.157782033504443 +1.676039916304342 4.878755745915494 2.656710869358778 1.0462497846825611 3.584825461650587 +2.2717164611361422 1.837111594834739 4.595259712489771 2.978281406444581 1.6743656207751136 +4.900673397408696 3.147026705476953 3.5245618164861616 2.8547072174860206 1.8772271849525255 +1.0057583218815593 2.9487970236368612 3.2181339278808894 2.2064921600576746 2.1906205657126954 +3.6509850247143634 1.9492805203407508 3.797716060036029 2.62383530175708 2.067315712430736 +4.982951551327 2.1442204373347726 2.8023004465579247 1.2815081228671987 3.2204353167458883 +3.8861861073092014 2.4200653254628155 4.820426298683991 3.3130632068999084 2.1027728449442002 +4.923230896074584 4.505287626975897 2.235910294464917 4.451754666151135 2.2549152657513294 +2.18743355479516 3.640070215937369 1.4449443625379872 3.7747886508299677 2.745601514601336 +1.4616353021739559 3.754139544586747 1.6707800834687703 2.661591864746294 2.497455442525249 +1.1431125478764028 3.2316848095283035 3.753548705455532 2.346177857627595 2.5184969317943713 +2.506505603152544 2.2893532729383956 3.442598031150367 4.484389536760989 1.0641826326716108 +4.22704767359045 4.654476354255067 2.2824434485019633 3.1559378089120695 0.9724647421490178 +2.739578572281654 3.3683944793748233 1.7616253578257361 1.2556614632487126 0.8070990692777156 +4.705210028219854 1.5342142274587744 2.611012922271104 2.063228606782603 3.2179624026299014 +4.901908291697404 2.4277391242346593 2.1006995161801085 4.869539136507346 3.7132177302599927 +3.29521082584523 1.5832248804101297 1.4737368250033502 2.9883700938909588 2.285828037405368 +3.093788521694855 4.329909599939006 2.1596551111937554 2.1009996929037174 1.2375119305179494 +3.5754915808027974 4.3766319917612115 1.9304197400168168 4.905923089396053 3.081468179332324 +2.568108959465671 2.149187499195836 2.9832577394912096 2.5237532514981416 0.6218034772823182 +1.6375410841962736 2.5592912756972894 2.703807635001205 3.8916878384253533 1.5035567143341004 +1.20875528722878 2.79466545269814 4.4727983310236485 1.2078904182977142 3.629701741399625 +3.702515972576471 4.682173806642587 2.053803141474855 1.6519531848162918 1.05887339163547 +2.175003418377709 4.923136805117535 1.098827606369635 2.1882650523795197 2.9561987517896435 +1.3540368545813002 1.156008860342808 1.885765802182048 4.340186328410884 2.462396232549822 +3.3630274753403597 1.0559862272788978 3.0831908153252376 1.1040177651988912 3.039665324111096 +4.271718924859758 1.4912300505248255 4.2698345589774975 1.900911195569503 3.6527956802975696 +4.559138637388099 4.354648594465857 3.932832464661672 2.854073415769376 1.0979696094252116 +1.512722807831706 3.0912384342128862 3.691253713548492 3.059430738552024 1.7002681713373797 +4.743655174975796 2.0734289528742744 1.0105205745887678 2.1754679902476477 2.9132817506119912 +4.139934296531642 2.8645892455861666 4.563334553824241 1.5610125036438918 3.2619691433197606 +2.821840422308467 1.6483506475449534 4.690377189106407 2.308152069018589 2.655574283324031 +1.317099797395982 4.5878773113439095 2.971453046840251 1.287554263609993 3.6787906515472897 +3.068788934227718 2.548721786695985 2.352169729987871 1.369518685814619 1.1117881599282193 +4.7536684618292995 1.861050085784647 1.6807824320272853 1.1771208281524186 2.9361396561895696 +1.88414253741337 4.075590078061282 2.8971806442195964 1.752641560727143 2.472329273590702 +1.8118100478124601 3.9213600314612216 2.036061372948244 3.435226171297438 2.531375765557542 +2.326754950634277 2.388501119928096 1.9575324197439135 2.1360629570943965 0.1889067023403702 +4.805255864331851 1.6348367487850388 4.734073861590242 2.870528831684801 3.67754774907273 +3.1435839033261592 4.351878036221726 4.286412779566764 2.658258378813788 2.0275259466357354 +3.0730429510173813 3.9671631086293377 4.216160727698814 3.518179816631675 1.1342963494881497 +2.8423207497474334 2.7463676861346302 4.745561614695834 4.927202860029789 0.2054276817353315 +2.4622860574313385 2.3792277385577454 4.435371359378736 1.7468315576582558 2.689822475511963 +3.64024817162144 4.223478328084649 1.6518554568241166 2.2839770417314105 0.8600785507811533 +4.119894944053483 4.703384634483868 1.029693708784606 4.9879013488767185 4.000983371737768 +3.236944747634122 2.4541887780373908 3.4968686912854046 4.93326051283901 1.6358265106561283 +3.068183892814889 3.643171676791488 4.989056341046757 4.070566659672547 1.0836208961224478 +4.994976932880408 4.671648490090293 3.00520985972193 2.03440134521322 1.0232352875852593 +4.5569457524932435 1.0865693056664218 1.7363179785359004 3.555117453481566 3.9181046709797056 +4.251257382692042 1.1672745039621581 1.3327441481050655 4.89757804229597 4.713702482069838 +4.946751361340572 4.618613470932339 3.069909028838804 2.3446614546962565 0.7960267074170406 +2.0561333410307876 2.7571834578055268 1.7893427595529214 4.434426621666997 2.736410039421393 +1.322269519538839 1.4295405531060847 4.569883702770323 4.941685239604768 0.3869669978629189 +3.1919397693217246 3.6651056364688777 1.3156821290418081 4.735442236548195 3.4523390810760772 +1.1487880343455115 2.269245070015537 2.581264647823416 4.20652006098115 1.9740514498819373 +3.777942993417642 1.3638448058647805 1.003489076706288 4.899048319726633 4.582930489875147 +2.752090846180615 1.4535303754650646 3.3147666793749444 1.7476818034383577 2.0351939230683103 +4.276317784932385 4.277255622516074 3.468456242006299 3.8434724378482708 0.375017368508603 +3.220208371431835 3.9501664521631583 1.8214107742622363 1.1072787384337253 1.021187232696106 +2.8029858004920922 4.813943064678684 2.8196878462542836 4.41268407341741 2.5654602117633356 +1.3639378760764949 3.5113345713316475 1.3604036248874336 3.194724990946607 2.8241896963153774 +3.8919596014205826 3.9932242010028056 1.6579323610483185 1.7994417993695269 0.17400988553105776 +3.819099040989497 2.751401783671573 4.916064511587697 2.5683836073663264 2.579066315806922 +1.8609113836273745 3.9535374598713617 3.0823463548588106 1.011846503820347 2.943816150530907 +3.685562337027881 4.8100504628194365 1.3552872502839328 3.7558562409964393 2.6508875917731154 +3.4606568242828066 1.2417498175991488 3.0563453452099525 3.3200914595098237 2.2345268665017457 +2.9105410278538084 4.240547521993159 1.7748508146881075 1.4672729219493608 1.3651085797673586 +3.574760631466071 4.669171319334195 2.9351400279779374 4.128856576899658 1.6194733566470187 +1.699870061247187 1.1579263477557085 3.407514117636332 3.4769688358321442 0.5463761950090739 +1.2677543636444173 1.2457373379044472 2.946702995188744 4.54539924091166 1.5988478462664861 +2.226299091503572 3.7344616482606727 3.660036136266801 3.4052186356227025 1.5295379224584857 +4.606940797129937 2.0920377901415006 3.6062491508328867 4.7347436926883 2.7564899901064286 +2.8724695608117266 4.302747096472961 1.3435539928496878 3.7598464740011552 2.8078752079617586 +4.144289621855907 2.063872335395945 3.4936132851726254 4.551480904438387 2.3339280163904887 +4.4280243142591935 3.2936736499931745 1.0933409590405332 2.076626112885749 1.5011998945154401 +2.7417518947268613 1.5959431480600745 3.1626174361987323 3.312819807290902 1.1556117151620706 +3.4490693149782596 1.0302765659842104 1.050962230983067 4.513817937528785 4.223970644659174 +3.2577823401589923 1.589689648166357 4.122443945636733 2.1122488355714126 2.6121672246641796 +1.9962652505452514 2.388733564002916 1.7672115072883336 2.3722252207715453 0.7211608493055135 +1.2767382244783767 1.9212103382958983 4.838779039366224 2.8300948628950757 2.1095393872345687 +4.926656526281819 1.0271470875388609 1.6044833572907788 4.535919432778657 4.8784722329349375 +2.7390386154338673 2.403425663635075 4.934438830426472 3.541954430032122 1.4323577970453858 +3.7883862318311277 3.096624649341296 3.2342185704764095 1.0287071180685472 2.3114529745835357 +4.583077895361671 4.651549216253366 2.7540822939694283 3.327376093293221 0.5773682552130506 +2.7028418037196227 4.399882959535111 2.309228670633789 3.6049538767577594 2.135146949115347 +2.1222566763940405 4.995937156582336 4.585113564132211 2.936142304710511 3.313177586036405 +4.47947744251819 2.779472504679745 1.5792483278329303 2.2554874663510174 1.8295672059639627 +4.779653850324475 2.4306664362025305 2.526913767568121 4.271485952558253 2.9259654783241285 +2.3493870603241036 4.845323776301575 3.7569012825129358 3.4895935556047704 2.5102098539821753 +4.839988557094609 1.5208381597290823 4.224037736930157 1.7338817699576388 4.149413946593009 +2.008697190266342 1.0738542175984134 4.143405000648036 4.529003149315086 1.011245428074741 +2.7706611464800894 4.86504479862648 1.8271311451767063 4.952867788562953 3.7625353747420864 +3.1749763457540157 2.5568741717973915 3.185520220322798 1.668399526349262 1.6382019098794411 +2.299227792918953 3.4268159544602463 1.1400453729526898 1.9190146480927233 1.370491953154145 +1.16881303079197 3.425856186500981 3.1573515949321944 1.073066620388043 3.0722121772174855 +1.9143495963550188 3.7810920626568953 3.2919230179061847 1.713098433563852 2.4448751509266384 +4.602861777046099 2.1737750042099346 3.941708698637702 4.7984479361888495 2.5757454593044193 +1.1913344606501264 3.890147593911121 3.220841118201517 4.353104176358723 2.926706674938494 +1.7127580283092394 1.4096075707234879 2.203131224703112 3.672857865326051 1.5006653851179614 +2.3895840953396834 3.4972221530535794 1.4364937828518243 3.028985090979894 1.93981716493067 +2.782364521039249 4.103629623466945 1.0864345400625166 2.4786056284735136 1.9193441094031918 +2.1223687913188263 2.98885023950938 3.340388439386126 2.7797444674429532 1.0320425201195038 +4.105069361789585 1.235547070817017 3.133347745201115 4.905130032527126 3.3724428315496535 +4.4299033239839245 3.1601774856044433 3.4502523597263575 1.1309668679984783 2.6441045548139557 +1.9545742327844833 2.855051371269601 3.8956537492005245 1.5270706568840473 2.533978086357858 +4.23579965178097 1.3492542764584439 1.198573370929937 3.625268638405549 3.771073338584705 +4.579444367808082 1.8453216895548108 2.7340731893018853 1.5582150561921693 2.9762508578644895 +3.5429749943545454 3.6240255827332537 1.4515529295483534 4.393377287183554 2.942940663528964 +1.1876818778669436 4.70480238691586 1.6634248940485574 4.736709901466268 4.6706763334651 +2.7402990753629366 3.0944580025707498 2.9096301073884416 1.0717311812064025 1.871710717120058 +1.9560954973830098 3.2110991982307917 4.555412478395061 4.05948744904268 1.3494354093026417 +1.3317125669366159 1.187859313251331 1.9983196391413496 4.8166791341395925 2.8220283488375153 +3.356653354151518 2.3185400132392786 1.7088867172145936 2.2938840048057756 1.1915960452556946 +2.54194513047064 4.708544706674635 1.394959053369654 3.2982037020828225 2.883833198446582 +2.9923380921247356 2.6257192153057676 1.8938444853271998 1.710080745757916 0.41009573616472683 +2.264824142946714 1.325569676030193 1.924970678898108 3.8489570435808793 2.141009688233069 +3.692682059064789 2.605997442449509 4.007067432612002 3.7819870960764286 1.1097497978748478 +4.067702503592189 4.590662198890836 1.892234061248422 1.4825588749715148 0.6643196528463332 +1.143615208292402 4.7240741359128045 3.2816140466529453 1.9265002462690317 3.828318109087537 +3.015099771320866 3.0467411751747004 1.792308720619332 1.8574783362499856 0.07244485654129336 +1.9847816329339558 4.455057748125962 3.0320623588897617 4.221583456521521 2.741755738026124 +1.1584448023385612 3.41634608984338 1.7334477801915233 3.385918758774894 2.797995453744734 +2.180292064458404 4.213181858796448 1.8230178114219182 2.783010280848624 2.248160683154066 +2.174513579182504 3.1783078190148575 1.2743290171458277 1.4461358404556277 1.018391113696706 +3.216793810458772 1.860074953995729 1.0411152572975237 2.9801028635328906 2.366507763058627 +4.763776971136064 2.647937060370777 4.332733101354818 4.881823757522746 2.1859275094746815 +2.3953510921323375 2.0937924360292337 1.0402795230402981 2.989623889193168 1.9725316425656252 +3.7480859371893023 3.1762176717383928 4.326055186087715 2.616519872671925 1.8026492450960767 +1.500644797325764 3.3949899366004934 1.5345452219475182 3.2798734617641996 2.5757938914818843 +2.6431938036788356 2.4838276493677394 1.235945069594306 1.2321688401819362 0.15941088748414578 +3.7665687914609856 3.0584822708601607 4.4341117861853325 3.086390401755011 1.5224123786633388 +3.436029734942299 2.884999145395497 3.6460011097425498 3.8275843273483603 0.5801785721072222 +2.6079291832877693 4.845156050641498 4.026246294381536 1.816113104150101 3.1448168109719776 +2.382123058742129 3.3340354999296955 1.995282837169127 1.8026102480673405 0.9712157444558126 +3.7283088033721685 2.2266986569977663 4.218649882701897 4.695192905261514 1.5754130518834766 +3.7386064975803053 4.59207705739893 1.6058068306408173 4.918987011715278 3.4213410979821512 +1.1168430825810458 2.728224948874003 2.3856938556259006 2.149623556715402 1.6285824219380074 +2.851571106147328 1.3081482827647646 1.8953505706985432 4.3167671593581645 2.8714825974701994 +1.2805182754842503 1.3797718256334766 2.1469113897973497 3.8047989862692733 1.6608559689969136 +4.968225043003887 2.0375425729905596 1.673159151548575 4.9104024488128175 4.366765840496337 +1.1738888657632565 3.7532799328568007 1.6066177596688966 4.409377034941674 3.809031088364803 +3.777722359814127 3.5274801890052503 3.303166906450539 3.9851210211691157 0.726417619990551 +1.5780061868557271 2.119721519184522 3.65778815352061 4.610082559149811 1.09559122681444 +3.703491867907474 4.814595332786121 4.39932880139073 4.796456276311224 1.1799411599745395 +3.8931252738037725 3.6434400196210284 2.8099843323562066 2.9200563862312223 0.27287100102533046 +1.7166298181347233 2.6143742841593864 2.2584505855466754 2.3797695405617323 0.9059047494763746 +1.8515433916007202 4.488152871618112 3.180385315107703 3.9114270041044286 2.7360795860443767 +4.087405389854288 3.3134568263017 3.4588435787842453 4.066954851724974 0.9842741992466875 +3.901980286428573 2.92656797444341 4.528155556045791 1.507150637346173 3.1745708209424977 +1.2823804276405082 3.2143314293993988 1.3806069444759252 1.9192866336481567 2.00564465464944 +4.204340012675374 2.312277981637643 1.0333119941242752 3.8389554772889536 3.384011537202415 +4.070087878386516 2.9925085258796265 3.061772225083564 1.55925048982908 1.8489858912012591 +2.393567074274462 2.26996510672721 1.7559954240286477 2.4941269886805824 0.7484087473547227 +1.8462802480076679 4.03088362653465 4.37272328378746 1.7974667176800296 3.3770457951811874 +1.2845782771870136 1.131033222285521 2.3997623596764845 1.2774224872789648 1.132794276582462 +4.230114723887387 1.3367557806730934 3.1786543028998864 1.3501562451151865 3.422708156065976 +3.9621187465899066 3.1945378823214488 4.886513523866515 2.3658674793564165 2.6349263490457413 +3.7864333506400194 1.700074383256481 1.1433515666003067 2.764670516690744 2.6422658607157725 +3.4343579356133342 1.1700103204969436 2.9370934833637286 3.256980004670614 2.2868313249116357 +1.4700863865043337 3.714165487860675 3.331011301492896 1.008629766001747 3.2294499546415816 +3.759414207459954 3.327872186767239 2.7527614658848454 3.902418951582253 1.2279824306738418 +1.3688242262279458 1.4899578630818375 3.984965752499003 1.7425403646297717 2.245694765131255 +2.3448205884185147 2.79132029003406 2.999952540714852 1.7794422812108803 1.2996181274117498 +4.0646996194591924 1.3337217676796165 3.320213716713869 3.5212725879810343 2.7383689847472734 +1.1449887486072394 3.358779533247647 1.672679695062683 2.5268639042434673 2.3728675271436024 +1.0229741117976126 3.1686646142871195 3.2874843478599747 4.048929540917139 2.276793032865204 +3.210518057003078 1.2933631568550914 1.778852062209165 2.9881572412389454 2.266694052400916 +2.2528851347220256 1.1676730982733265 1.9181713800696722 1.9479235329493005 1.0856198020735 +2.371970223646349 4.9109887737465545 4.9170347412187745 2.516476402394284 3.4941802380319116 +4.700951226284896 1.8258124446621413 1.4517814778313882 3.1221708505713477 3.3251501725717247 +3.6250057213915627 3.624409519117271 2.8147092151910376 1.3758511820164725 1.4388581566951377 +2.1208083259560366 4.763247586682226 3.6573020697820997 2.8557308377754764 2.761340559693387 +2.9361227454775016 3.441218932811715 3.44126626574366 1.0839640978370828 2.410808094659674 +3.5147414829976613 4.254651258535565 3.1106210455284304 1.1030102436044356 2.1396185659921856 +4.506004426008567 2.8434774673479266 2.3459959865276 2.9713022388837103 1.7762330358117548 +1.7645295084324868 1.9443230016195177 1.768923573416632 4.583594462041473 2.8204074016823437 +1.2096172261045486 1.183293498931529 2.3057731918096662 3.8913730278995597 1.5858183309637257 +2.3253986048291733 2.1963240392691588 2.1114794608501124 1.9878754461692525 0.17871260705314754 +1.4121678007865475 1.6055818373857274 2.2545631689416115 3.3136705147113434 1.0766231278479 +2.2721218477717753 4.853961179436734 3.824696136476953 2.377470488023303 2.9597899270174985 +2.1380841523765532 4.863721349485381 3.2319353834262183 2.9133944884700353 2.7441877545136655 +3.66194939941877 2.2983564316609755 1.101640806292894 2.116770757181861 1.6999631169264662 +1.326019248081495 1.5808244063383836 2.19815183116996 3.039154203292895 0.8787551755698064 +3.682921109608999 2.831673563939051 1.9736376640143258 1.0048648469786303 1.289629076531848 +3.126162985047908 3.2262872067592783 4.80810396598844 3.489444684635743 1.3224549746856866 +4.931131060571415 4.161431712472064 4.056504685579894 3.0452997021778785 1.2708157242187539 +3.1837445597502545 2.3280594717295156 4.460229315611727 2.0324873002224395 2.57412669912487 +4.001006979438586 1.442758356177801 3.7062833945762326 3.44860416126725 2.57119322605175 +3.8869043552474785 2.8632952363019575 4.97073364665845 4.729682483316371 1.0516089062655352 +3.1644739208194 1.8719043659134331 1.4004926499861763 1.4646846616464742 1.294162535630979 +1.3105720079321164 2.001446982099762 4.118294637905962 3.2682736281634717 1.0953738845411591 +2.7949535674367105 2.131101750959841 3.5813044536187717 2.3980684278321864 1.3567412159136583 +3.851923841117753 4.717697236044822 3.09140538230696 3.794373189853961 1.11522522828843 +4.7999791884029985 3.8512077429895393 3.251738690802603 2.324981659866261 1.3262902585866674 +4.248816710839696 3.1354635546579095 2.699021039661263 2.0545745159808986 1.2864161738192086 +3.619261357994433 4.494325206171512 3.7006039842300646 2.7209022734965322 1.3136027483225998 +2.8503965206347557 4.7814135087146 2.2964519519852953 4.584836811277759 2.994249801284446 +2.419587083676256 2.740670756764012 3.776727335732482 4.051595833029568 0.4226670272565427 +1.4914683002152476 3.5621474963266135 4.797059944195292 1.1282364451802973 4.212834936255281 +4.528647640931918 2.5840199131500694 2.9636100328774746 3.5468411947996783 2.030205799394514 +3.5487352471401934 1.2386261201453128 3.2885128395431558 3.791886121569154 2.3643157233505585 +3.296184406925151 1.1498359499071746 4.426951124191017 2.436833151188607 2.9270089247234403 +1.1329131071133123 4.660448546448372 2.608052073196842 4.486890128133293 3.9966909703456155 +1.6233214467023127 1.3618831138862326 4.855352501787486 2.9895251594527004 1.8840545834104014 +3.635258402613785 4.252602866741997 3.2859228634837008 2.348910606200141 1.1220989963855157 +4.277829906203328 1.7553728624260372 1.1406764988536628 3.5899857008092537 3.515950099828779 +2.981907825405808 2.5745483466347046 2.1761804786813603 4.81974183999456 2.6747632448448146 +3.9975214068221328 1.7797131982770384 4.2021146116319 2.1068450484756682 3.051037166633489 +3.536430181499106 1.7141621987955928 2.632102041672131 3.2514390389528347 1.9246399447655165 +2.111465735701829 1.799375403504206 3.621684880677508 4.865587204477544 1.2824559901245547 +1.2932755217541705 2.317229547948438 3.8752158450424017 4.772278920794783 1.3613243587175587 +1.4254727790774737 3.749447214075326 4.974013619348988 4.391198929152862 2.395940345173893 +2.499191039834972 4.7577821205656585 1.2274353801667401 4.1447026003268 3.6894012663000773 +3.6588317384501092 1.8099300852096407 2.6056205653855686 1.3955159268235877 2.209703726662142 +4.048136455531283 1.2894693381585824 3.4614324109880377 3.069110865572744 2.786424314326598 +2.023353685913873 2.1484152625390056 2.6170653020111807 4.280465354249383 1.6680947610174963 +2.1993575868960304 1.5299356909627937 3.48657388691409 1.8326138394708504 1.7842952427480416 +4.545404461310238 2.456527563724075 3.546379753180396 1.1061959435731645 3.2121493922198656 +1.0282679669079764 2.4650591993963213 1.750105520798083 2.1761453024621344 1.4986256841905954 +1.7391912056449188 1.8151354718776873 1.6082255868471123 2.011392649742082 0.4102574949674781 +1.6734982537208931 3.3645832431208853 3.2196313502162925 4.574577899823025 2.1669445294388963 +1.925556221819769 1.8747676094080106 3.8702839811277276 1.6111079204473775 2.2597468788122925 +2.3559332195741556 1.4124537470594811 2.8403396332011166 3.2682910571271084 1.035999969255237 +2.203746054817088 2.094765755861817 3.825600206947084 4.892226563998024 1.0721793185452422 +3.8646736127170334 3.9316134533003972 2.3906202402348335 4.150743475747578 1.761395681398469 +4.801716766127591 1.4780151626471953 3.1597440229643428 2.2114665845383645 3.4563307783263286 +4.291834760816881 4.33940046562565 4.593018620284784 1.1539936010316416 3.439353947956365 +1.9176662572892096 2.806816081191469 1.9356452445249919 1.9849536653368647 0.8905159907089708 +3.0395816456009452 4.582584151031418 3.0681957263721302 2.044741682322653 1.85157093087085 +4.963405967213565 4.382288747737823 2.272705471359114 3.733358992418822 1.572006975606451 +2.112039741102606 1.9908755024734162 2.949877322230013 4.44872042210138 1.5037324930833278 +3.300538952494479 4.289543344984093 1.648509962281305 3.9143020820868353 2.4722345395485013 +2.4967017088032284 1.1534566021695216 4.154114389166221 3.866051002970483 1.3737859844102185 +2.3213870523060662 3.992647101620978 3.3425647759065353 4.643912489578899 2.118163361102342 +3.656225333699086 4.867134268153524 1.4513721213279305 3.98153748907331 2.805002181047226 +3.6919738322212208 4.647623188569458 3.198606028079761 4.4043660044350155 1.5385456811122067 +1.549669779212246 3.755533680976805 1.34637241209297 1.790032647245189 2.25003776798597 +4.250133423205636 4.90247988034864 2.867151463580694 2.7838912480939957 0.6576383228111943 +3.378561462986161 2.843405365819449 2.0377695655482686 3.0968166762240807 1.1865803095304983 +2.078583197778428 4.793351666510467 4.154021330258394 2.078775367697873 3.4171060334653713 +2.1530520254758274 4.457447840356467 4.706470116012683 3.2647324730407195 2.7182434590745848 +2.746665419716553 4.031895089779912 3.5524943037093695 1.2899366909524579 2.6021111152015446 +3.1438818257779544 4.197928797591642 3.5880332772327885 3.781329805271197 1.0716242655620054 +4.554485607358508 1.260750613521449 4.615809540863098 3.4889232470015714 3.4811726370462837 +2.090919783735854 1.7492700112525834 4.320918928326186 2.333437829196686 2.0166322635609295 +3.8686300220082477 2.1205919562197297 1.2147262771936966 1.8501635402340524 1.8599509656724504 +4.3888796642240795 4.887356958549143 1.5566027535067208 3.0578759528546593 1.5818662497310039 +2.986222920087331 4.623384126365931 2.960097670802324 2.6855167082208093 1.660027566143343 +1.148361490936324 4.093324246499545 2.404181285904697 3.6430345993939937 3.1949277243778034 +4.341048783761943 2.7731722688278215 2.0311741022714074 1.7233529367832814 1.597808072330477 +4.401074095172539 1.6790754647786534 4.219669226738222 3.175060641618651 2.9155588898137004 +3.684154421708448 2.2802473633158504 1.3876530250742345 1.6281042904370935 1.4243496198683654 +2.865399561455517 4.70194747619427 1.0242407269540688 3.1394571780102707 2.8012584454045037 +2.3440840695952785 2.830518128854291 4.211007718110116 3.632461204163822 0.7558664980051765 +1.7841168716770328 4.296198959541025 1.3821244964967412 3.616515988556456 3.3620026406824777 +2.145249235788513 4.529340909499508 4.08171792894149 2.46179603879802 2.8823670895331994 +2.5617085273407576 3.9748676768017366 3.2984335193255068 2.0504833361646306 1.8853112319605327 +3.8971675013312446 3.9423722256871585 1.4803511918224768 3.5018104817284468 2.0219646702777085 +2.236257299460932 3.979198443828713 4.058800560775186 3.1284357151837745 1.9757081208119789 +3.5165060271466624 3.287657518110866 2.3758071387055284 1.4971301648611948 0.9079894627429014 +4.089693214719882 2.3907517537009206 1.7794931632839028 4.681564384109552 3.3627993485656735 +3.51257248721297 3.2752361860906944 4.394699515016275 1.494843470393596 2.909552130374208 +2.8259201119491233 2.3537305038241367 4.390236408226736 1.9641942828786125 2.4715669968635017 +3.711297151758543 1.3205768060430763 3.1751165386547506 3.695461831802751 2.446692255989535 +4.2774905498262745 3.3631999356528057 3.6839909618871767 1.9926370095641723 1.9226558504330271 +3.1112792164914698 2.1653545449754272 4.517637685392577 1.578516026763304 3.0875896113969588 +2.0167036526664384 3.8932723283947417 4.1012835850332365 1.4239771615863148 3.2694769734247746 +3.6623851475244025 2.173517714119158 4.062654930831526 2.542603841699815 2.127740949416827 +4.649746665420613 3.6658759861039902 4.0437494645618175 2.7071528283729824 1.6596662560557958 +4.226301727636793 1.8566786780313156 3.495059325197323 4.363651715585824 2.523799940142319 +4.35707595273473 4.66948606543031 3.638993174543353 2.717214785722531 0.9732807799456308 +4.603001768455695 1.6402697984200802 2.2541093374058674 3.5282649998725666 3.225097421546684 +4.519778289926668 1.4787480794633598 2.1133839641642047 3.721416558079172 3.4400048784912225 +4.954755027166656 2.811219539318317 1.2592063704467935 3.087242127527522 2.817172184448606 +4.532859338167594 2.769435325473854 2.0093839649002594 2.401345504073799 1.8064601010640065 +3.882994251684433 2.206248531107202 4.345869320414481 2.3122373242806464 2.635741889330847 +2.2564740079630417 1.20798725173527 2.4160464109926254 1.509420738354319 1.3861077116414495 +1.7874962437756516 1.8845973915530356 4.335170247282173 3.448427927668319 0.8920429217777829 +3.9497157186881218 3.9659383416046983 1.7785784159892857 1.1499622950490642 0.6288254137677839 +4.183211839240158 1.3986337510768156 1.8859463172810296 4.081702666505922 3.5461558164075146 +2.0553470296322116 2.816538226281726 1.3891213530682327 3.990153395866831 2.7101254077111947 +4.904488918846665 2.4908690122874395 4.6295889820456235 3.4892154220780074 2.6694592916192184 +3.876003128353759 1.8760027693584789 1.7707333622465073 1.2197292419359185 2.0745136723050286 +1.8600008412735103 3.2420548539581393 3.552449757300912 4.6017031834762 1.7352250707957932 +1.261746843698297 4.0675926169319485 1.2649518077331128 3.7160532807054296 3.72567697660173 +2.7050267262902206 3.8369248422093603 2.739017486608204 1.0077799340589002 2.068423749664996 +2.7205838163389657 2.236056581801207 4.285878711635817 1.7694530331872946 2.562648012537796 +1.4783728699171799 3.049459342676055 2.329169885986681 2.460966410564122 1.5766049057314946 +3.443193992345387 1.5175462052395288 2.4975344221700357 4.932287595528006 3.104213654883052 +4.075451377953586 4.550290393390608 3.1462413176700013 1.995621840826558 1.2447478745001652 +3.988814504939107 4.492413452380108 3.259644936151278 1.513441034036512 1.8173717197162826 +2.076207598907913 4.005567742011152 4.398362874665682 4.690352578171835 1.95132994358949 +3.7440383230451992 2.8096898714479535 3.515370276543754 1.886469304567004 1.8778512735328567 +2.2594022968524334 1.8795096240041658 4.850286234300952 2.365195008000884 2.513960390681877 +1.726552882855156 4.271681180871823 1.1663506830298669 1.3552571545963845 2.552129249933265 +3.389786558832044 1.4592468011622706 4.101355680344216 1.512679994114329 3.229276322091599 +1.510353771658536 1.2645209350382376 3.9535615143775584 4.543708876243167 0.6393025045138807 +3.3238962049494813 2.077925771457987 1.3870881786398788 4.06875449829721 2.9569877529539212 +4.981160142191859 2.5679931952068387 4.845780167275915 4.076160472731003 2.532921078172869 +3.9986878680756237 4.27189884360228 4.3182038928379765 2.9208530146427996 1.4238095778372397 +4.148483180040671 2.6368444606459165 3.3702936600903555 4.761768173430976 2.0545687964266204 +3.0282059838843596 2.066696036282527 2.026733524073002 2.9816502601062593 1.3551263232974586 +3.7348891517419456 3.3506481346013577 3.2635598553833205 4.917772483056792 1.6982522123664685 +3.99130492886759 4.532585247253428 1.5389433853195378 2.8516022946396973 1.419879500270873 +1.9992204552313129 1.7893264158115159 2.075931036134075 3.1856766996769217 1.1294206238315787 +1.3684521874360787 3.3309233097932105 4.781470929232507 3.4212381639241705 2.3877868585583646 +3.4814627686766646 2.966997375896534 2.3494834091096406 1.4309822192291537 1.0527673419043184 +4.068712289082949 3.6594868162996956 3.413598132183422 2.8484213743323825 0.697775218239864 +3.345320897801959 3.6739055889750154 4.535701048783709 1.2716982362597644 3.2805003062699924 +4.906355075611243 2.3229075535561 2.910144143528118 2.877562524213438 2.5836529684015277 +2.440154317721253 1.155068049590458 2.6882613403488995 1.4901319729787765 1.7569748710476951 +1.2733636625348126 4.347034559542363 1.356920732738525 3.271512406751451 3.6212033996050015 +3.9175621697881393 2.7772067497736748 1.9548645620676144 2.291631353228991 1.1890426214335197 +4.713885294966084 2.969670193732256 2.245413439641421 1.6584389208325594 1.8403329603914147 +1.9545634666603209 2.918465444741131 4.850683765264623 4.09535101857813 1.2245956808535055 +2.4261565265697937 4.320319372768465 1.2418352681051008 3.702716671016863 3.105445244585132 +2.0296716327630424 2.2841562081736213 4.442361253504153 4.073771849569129 0.4479068517170495 +2.2422017255275506 2.60006449727275 4.240221270125245 4.370323329119113 0.3807785565858463 +4.724888848953281 2.711937534095254 3.792560116900679 4.4543948100264075 2.118961575162109 +2.586103927167803 2.190003829789168 3.897509893250349 2.1669324260315985 1.775329168686368 +4.036535012762075 4.636843124360784 1.0738502717618164 4.399462636501648 3.3793590264074727 +1.741675234181113 4.736568817071376 2.5629896674298074 4.653818785545996 3.652527066840134 +3.2996568780472066 2.754231346579565 3.476788050841948 4.375780030502726 1.0515110983109806 +1.8802240175380103 1.2012908222873437 1.3644374374694248 3.8900156889964697 2.6152429692477304 +4.8693184706064745 3.738201313731837 2.8595505294360466 2.752970026997273 1.136127381096092 +1.9454534397112662 4.5225341374888535 2.4854018708478893 4.177370237915927 3.0828723421537743 +3.8195309425216957 1.3025555333294783 1.0390843310356308 3.5658123483992306 3.566443562459459 +3.1445131839456173 2.522909367262754 2.113597789574873 2.306927572105716 0.6509744309326796 +2.4719233817995416 1.0348933088748753 4.382788926175579 2.2217637946888704 2.5952042404032514 +4.235527034403067 4.928813020538085 1.1082045762989212 1.0953604814708089 0.6934049533592599 +3.28304500724507 4.597973721197748 4.613513148177386 2.749144644332108 2.28142662404635 +4.890165544919901 3.2127864274809843 1.388910598912303 3.036619120766659 2.351285622082444 +2.6504689084159185 4.883534347525725 4.025158823735714 1.8222612651749612 3.1367720524226166 +1.1553810969396952 2.212462106260709 2.7188543140394725 2.442726225255851 1.0925506769401725 +4.634170826174515 3.091772039068304 1.533962584700085 3.8429042479886864 2.7767257017819826 +2.135348165787226 2.9079363177562936 4.851890323141827 1.2189256944120852 3.7142057624967966 +4.212357896050419 1.6527173548677894 1.6162444972897068 1.8647668734149665 2.5716770931632627 +2.29749688193729 3.7988297328744163 1.3832612714761026 4.116406478979213 3.118346205058095 +3.1343405406395055 2.5325969071709697 1.2064433591222925 4.054476841912248 2.910908813328339 +4.349895882548438 4.594989582954788 2.4844719806094364 1.019742312290849 1.4850939105765524 +3.484727366942456 3.428655746671877 4.802886020970877 3.112310359496041 1.6915052745323753 +4.3108446646915395 3.5390883561086124 2.273053157897629 3.228367431701431 1.2281014459607282 +1.185301938562787 2.6616775580984684 4.351508804174183 1.955401082306457 2.814430170523602 +1.8839229877860557 4.036657675324125 3.4261545698271996 2.770386523575365 2.2503996012740886 +2.802614885693673 1.2915669848165194 3.5685726715543935 2.528088918518677 1.834631352363886 +2.588194027916489 1.2659123557226142 4.910712750754069 2.014201753818397 3.184054769627732 +1.6058008911547117 4.144979641307413 2.428177405800403 1.2490167788651085 2.7996157788777856 +3.9473343727610195 1.6820112793976563 4.169334787879162 1.2005924393111225 3.7343165170492223 +4.214003339146213 2.430554981539784 1.5971806984282755 4.472453006504564 3.3834714258937395 +3.8095008030909736 1.8274187554515882 1.9905171145618636 4.0493427388715695 2.8578684705368422 +1.9622170818578764 4.4845436801499305 4.921660858441644 4.037308863140646 2.6728654885804524 +4.762809248619645 2.1667587045531853 3.7322027210448834 3.346187061162581 2.624592638300681 +1.1208958276648033 1.2905305272065224 4.214298811332984 4.2533685570682636 0.17407577752355058 +2.6591850437822524 1.8150344260982343 2.838443316555998 2.4053697438938615 0.9487586545980259 +1.8774199813542096 2.453867139683213 4.930511233144576 2.1221327958687533 2.866928805063246 +1.4749861495717944 3.0469497641026373 2.607268123611056 1.5158563627282526 1.9137004042436145 +4.457681323678016 2.4823614450416995 2.4585064664545118 4.618022158842054 2.9266698906101176 +4.719309731660752 3.1822774853382962 2.462187733593553 2.8918438162093625 1.5959550355708079 +3.1349682065426125 4.60444309318485 2.839156447203934 2.8988707504306945 1.4706876760488863 +3.9570410816012176 1.5146543455345198 2.5399422783937995 4.071280526010498 2.882750387586188 +2.7060286509284173 2.830243936972141 2.8877387645700927 1.9136726252050726 0.9819543172390449 +4.873582198840784 1.3063438591108198 3.446666234383747 3.04597107164198 3.5896721279086257 +1.5324480857614855 2.3636585889918056 2.4718134658633812 2.4669091673540553 0.8312249712468163 +3.295650600886079 1.2916141790886875 1.5241984789456282 3.748144098728565 2.993676017815255 +1.7846599720516783 4.200479588771642 4.498222973632982 4.697189703937461 2.4239992121073484 +3.7018727374187113 2.4297902333598063 2.5938220639617975 4.584837289430183 2.3626966638101687 +1.6367860091982331 4.110726682442222 2.1558906291336597 3.99045688153211 3.079937627480501 +2.5103390641278014 2.697362483752499 2.965363999348898 1.5583061122585837 1.419432864601625 +2.352705994614887 3.0551620865331226 1.0945772515436332 1.6634949243769777 0.9039424094128723 +1.7620150860817856 4.795308985602562 4.035095707034921 2.577115733366611 3.365498103474106 +3.2932825418598317 2.4709225652706275 3.9499272851082137 3.5324050086591843 0.9222802081943298 +4.356857620756761 3.800557114463598 2.827081834088097 4.208169524260822 1.4889168751977604 +3.7534936995479686 2.556943472037865 3.5987660461778255 2.2349716464240004 1.8142953485456486 +4.944246555571727 4.614157573994454 1.950169581589701 3.9782036912357395 2.054721656489394 +3.061837800942623 4.192918695606328 3.0253587235394246 2.259062795143021 1.366218664837424 +4.322380969500104 3.4779570851138173 4.378956212392625 4.657082893017239 0.8890478879100333 +3.3508889579824506 3.981662901467051 3.0115896805854407 4.033324930767783 1.200757548068838 +4.631756714652447 2.0335172573686537 4.963705158614935 3.8791500166303456 2.8155120552737105 +1.5755567279333587 4.946840047816927 3.159338043667018 2.313524478164368 3.475766363050526 +1.6688969339511739 4.899841124520993 2.4386747224434346 2.516128067970511 3.2318724268309538 +2.9836128031071416 3.009026621089639 2.593160466837476 1.1584940389261726 1.434891501654472 +3.982641942786536 1.4396672912613337 4.518333727430134 3.691724934698205 2.6739487980366157 +4.755594576263226 2.9676847897368677 4.105695808630257 1.5943929147523064 3.082736386646853 +4.00200767344234 1.9161018696712424 2.7925145493113015 1.6853246923984218 2.361540260392931 +3.838643592984422 4.40222948883555 3.5573217340490837 4.080758552991285 0.7691652393514996 +4.279175405092934 3.008872790365326 2.5740731925340805 3.28461393706664 1.4555194545675718 +2.0794149164046853 4.896955627399857 2.1219112522571315 1.7932537946079945 2.8366443877552876 +2.6979098728286135 1.5556919965334775 4.983941466923779 2.467739641769372 2.7633192544182332 +4.614810574147328 1.7842872634493268 4.362587942672494 1.0550941669940368 4.353317963181246 +3.012536685251404 1.778379541246112 4.300519955296535 2.6939597301921756 2.025877492097355 +3.51106730725783 4.4996243003230525 3.951094054153815 2.2379233062540913 1.9779279410528214 +2.6229810951425083 2.6885234566229137 4.709050054946928 1.8084968946577158 2.9012935799074464 +1.8635325618761769 1.8522388219305626 3.8382849175802844 1.0654808101128053 2.772827107295095 +2.2553761818644253 4.615355571140155 2.3670468383957415 2.513537981197445 2.364521594895169 +3.782839318933051 3.2035090447756045 4.007952069057653 1.061874046773434 3.0024988392906065 +3.7363684305076252 1.046726109347499 1.8043803667642915 1.806996168724858 2.6896435931542175 +1.9648359430906628 1.7511792035186762 4.099444892403545 2.7456485428480115 1.370552355232889 +1.3165169709246616 2.6465689559698853 4.941869609828606 2.7339431731711885 2.5775914014081946 +3.10571377809147 2.4450671371334143 1.5623202580711508 2.470248391381783 1.1228479324762066 +1.790296577631593 3.2077592754384665 4.056730923675195 3.1348193692720123 1.6908936731255555 +2.726762155676324 2.1383575006799815 1.4329399875033104 3.9491775459288547 2.5841190933184 +1.8810236438840882 2.405823100044321 4.095509671366775 3.2924457218929297 0.9593363206564253 +3.8388855746406323 1.0752906273864622 3.828978888867309 3.4243102951033353 2.7930652880424565 +2.6181025886033225 3.6216807937593516 1.4066966872091426 1.2163009738871513 1.0214791928941023 +3.707933529966773 3.4949386440352863 1.2556863403143597 4.962073672708424 3.712502374297444 +4.130710545227859 1.6613755160781865 1.9432792128376906 1.500657802053997 2.508690734122036 +1.5412093226339292 3.730846162055515 3.6056839015633106 1.1234999977918116 3.309946588797842 +4.2717972914559645 3.3742409414604557 3.118410345727367 1.2074531237271042 2.1112472393663944 +3.3763765599853603 2.512840357542299 4.452998323946676 2.548793961404271 2.090858442663039 +1.7341993879697135 3.0316348343261175 2.7707830312828 1.9093510751425975 1.55737078196606 +1.310145652287611 1.305902565367448 4.464354318741547 4.751123622108541 0.28680069236353534 +2.8278482086927923 1.7883353061354534 4.029680616227677 4.380458750881468 1.0971018067318896 +4.440558510265795 1.025693646786221 1.4973161258887866 2.154006522033032 3.4774335812802315 +2.270245094788453 2.7808706714913156 4.26013817145191 3.1139894797196797 1.2547490996779531 +4.580207240578273 1.139156259926129 4.521832509915161 1.8882729896171102 4.333182156152633 +1.4036767706343105 3.6577782267174515 3.766138053546351 2.235067294032829 2.7249130343835652 +1.95107110788339 3.799060006769798 1.9962879639800524 4.057130495946369 2.7680561612743224 +2.520304286907879 2.325236728997447 1.5148698213243197 1.465285736573322 0.20127079671361625 +3.528563595174767 4.801028237359036 1.3987523408081688 1.3789749282643813 1.2726183291372426 +1.495310439742512 1.6285788448258103 2.3051953108068552 1.022122185462099 1.2899756248764573 +1.8849924710400496 1.0610926043659425 4.640588103450849 4.49123906868895 0.8373267728252348 +4.3536775245353265 3.530774995688425 1.842475175903957 1.8002422690143152 0.8239855523047565 +2.1585173644043896 1.6278516333985222 2.4995894633931535 4.198911981646893 1.7802536726849418 +1.1980255602182015 4.4370189527225286 3.631132016799272 2.9560498732094547 3.308596998318247 +4.5602566846822 1.0302457728656034 3.3683723818541775 3.596269786892059 3.537359787294365 +1.7036048052497623 2.539205527942519 3.6161452138391557 1.7771394987401838 2.01994321403631 +4.045321392739934 4.3132444826476934 2.1863506590751443 1.6749581379178395 0.5773258116534766 +1.6257793550381416 4.364146934702352 1.8744996867164172 3.53791761261632 3.2040000308303926 +1.6926774659078232 4.619430685679094 2.827076586548224 3.0077687693469346 2.9323257108251233 +2.736334460787009 3.345712985406833 2.3739032090472025 3.814126832746398 1.5638370351571405 +4.366136270544393 3.0048000048152606 1.0402135991049408 3.6990237813017326 2.9870567475933023 +3.7540868085071675 4.811302839957073 1.4141519195792678 1.0595874762395319 1.1150881945548097 +1.7143614114779595 1.8444990881959713 3.0096555055524528 2.574888058141111 0.45382656183847975 +1.406515794767147 2.185980671468037 2.5627838280640844 2.5272700792251923 0.7802734907498303 +1.330181457198059 2.7089040525020875 3.1219127465733285 2.3372008142879737 1.5863949103148596 +4.9766831068162105 4.381247119483762 3.266561105230286 2.3266907849933554 1.112609650269509 +2.4131292047920008 1.603418315755048 1.7213331808217625 2.675119886326675 1.251135805347656 +1.0056730715717426 3.7250817510206398 1.5001981686778372 3.1908952863999063 3.202130589113396 +3.500456101301557 4.07776813533995 4.735942798959341 3.9672462889531346 0.961344635987151 +3.519549888617103 1.660393977149115 4.311818867923701 3.9449963663064453 1.8949985358408874 +4.1131189917188635 4.1451124650345434 4.818898428623072 3.785972839713861 1.0334209474160285 +4.763292616679581 1.7728102824565153 4.646306401181182 4.463866114742778 2.9960422309133032 +4.505723083244685 4.519137181373426 1.9187606097273218 2.1832610848529943 0.2648404035835809 +2.433483326916585 2.7329635974512954 1.484378908522138 4.469840886827125 3.0004452430171544 +2.046544105041517 1.3290977382922962 3.172861410019672 4.553634178786275 1.5560407218736434 +4.050257375029381 2.286782078936483 3.30674642367759 2.0008012298450364 2.1943878347330217 +4.3289404635039475 1.4414522993964196 2.352369192926746 2.712405711298716 2.909847795404851 +4.2523043519542245 3.2165659391750916 2.3206047064711384 2.201625493514842 1.0425498131129933 +3.8872587142196067 2.0160427493882125 3.9249349565543765 1.0442579089950108 3.4350763367609796 +2.9767748632996494 3.5128665777607253 2.5906523134875 4.87762712267612 2.348967454899523 +2.9884862304237974 4.9847249444657304 1.8844326087482721 4.373097094917636 3.190363604381233 +4.936379233656396 3.566085669377812 4.88562142136475 3.317067498309548 2.0828024058549506 +3.5653430169043676 3.5255232199762587 2.6175590107773425 2.8700065397304106 0.255568720898912 +3.7365447665542164 1.6902442286931163 4.814488592687075 2.2892901808986417 3.250226593662272 +4.68712237481637 4.9179372468616736 4.516045013274468 2.041756510406098 2.485031005960265 +4.042493467779083 1.7380679810596318 4.6446695895270995 1.2350457220097897 4.115326444133671 +4.383959877032458 3.165222143448258 1.805979754873161 4.54948854767291 3.00202634222811 +4.943895012381757 4.833430837437879 4.232318671264775 4.146193224307882 0.14007114820531863 +4.652310922405167 3.967038009838976 4.263884130671251 4.074865425989682 0.7108635842525971 +3.201699613533489 2.94439572417029 4.2112356860456295 3.228443957049491 1.0159157809900623 +1.433292383026206 3.0833670772280106 4.196815092064819 4.0800250591251395 1.6542026502938598 +2.3752912456242203 3.134828345253876 1.6659518091832277 3.7054858048987898 2.176372101777018 +3.7586982926104118 2.4721662897307044 1.7937160777388148 3.9617968688226024 2.5210590852060912 +4.7479206940203404 1.3572303020091052 3.2297462101540213 2.6861394970155015 3.4339903309483226 +3.5759496413535126 2.509753005276577 4.00795606655427 2.494807701856386 1.851051928058652 +4.1667874128356335 2.303630186404102 4.1536769054046605 1.7727860462366665 3.0232426521325984 +1.0727222681798194 2.7383429795628795 2.945494502913944 2.628677266870887 1.695483858738317 +3.4711625643361415 3.716661615201421 3.5882320514845274 2.356945268416475 1.255522570937626 +4.737972938008337 2.1268092617749637 2.8984577166551846 2.3989552202524322 2.658510576994789 +2.706400865510407 1.818953197469661 4.130156833263888 2.469340863506787 1.8830488705583763 +1.9418191336558794 3.594622722892735 3.2383307778220902 2.654493768338781 1.7528905722367973 +2.0543345610105406 2.5289691699158805 1.8351793157230811 4.758546744553346 2.9616473685968083 +4.794640280445138 4.205415549763957 1.1779766003813146 2.804647989760135 1.7300998792757403 +3.158085130614813 3.8691371088859627 3.1644536181936194 3.9825527779152945 1.0839193470644513 +4.846174410692609 1.6985897340271725 1.5283766976243855 4.962958956093129 4.658717053757108 +4.287354275237712 3.758652044878307 2.6277768913851607 3.087810076386296 0.7008256414325168 +4.781039562374248 3.258633571564319 1.139832081233962 3.365268595066992 2.6963470989387237 +1.1729489226063903 1.5979175145438371 3.291969616392799 1.9080875126973975 1.4476629376556223 +4.806591994029413 1.9991107507741241 2.541195062740385 1.3081656576056404 3.066319038384167 +4.563679546853822 2.923315905514185 3.0337995168809617 3.715477928756562 1.776366609978434 +1.148574608552193 3.394843065567683 4.120906784714327 2.799520402347548 2.6061051307434075 +1.734800859344352 1.3704030747243823 1.4505697991458613 2.941179200778318 1.5345038721590156 +3.1230089032924333 3.2936113593264893 1.767892839644766 2.1133246577375515 0.3852639860611673 +1.4248156150397393 3.676846328146636 4.555057921747103 2.042597270191273 3.37403332206324 +1.3333858941351475 1.2599773089079922 1.1344931819492685 1.445265501772504 0.31932468610078973 +3.4449465289772654 3.6954799889956544 2.8739417539045786 1.7956852081668928 1.106979761791042 +2.3712430766049533 2.156399367141408 1.0588911756781516 4.366976829673423 3.315054828153733 +1.259430716988184 3.2255571112347603 2.897507947983363 1.0140528318984 2.72269281639697 +4.343644255703632 4.305658145384346 4.766281081667449 1.4719472929495492 3.2945527854423005 +3.6761670296323756 2.694001926017224 4.097019679345583 2.365346512930802 1.990813965703565 +2.0925756317155626 1.1224401902758667 3.976606734499827 4.3417565463689005 1.0365795482477036 +3.2294819613752686 3.7826001220367216 3.461567914084977 1.5218609593128107 2.01702820259039 +4.327457307618294 4.01717233189878 4.544490760827537 3.355365325649359 1.2289410346900091 +3.062509845410147 2.6162116169613348 3.2359963056563914 1.6789935753077474 1.6197035565280704 +3.58875265141889 4.812086298947474 4.249286519384956 2.0617788253548457 2.5063389883685967 +4.564144060441484 4.419200588150944 2.443348056687117 3.349422113611026 0.9175940315794286 +3.2291285337232405 2.2156604383056706 4.809735377791657 1.002176300120786 3.9401299103434613 +2.141632422847405 4.361081338661906 4.880823781013439 2.460276121879956 3.284053053780762 +3.846946341621607 3.299044964331885 2.308915114437821 3.2744953087597954 1.1101986447941812 +1.0782131712975103 2.1222129775379037 3.721611716058473 1.9546816579530533 2.0523102654487704 +1.381128361869476 3.4033739937212153 2.1721558138375667 1.5788937301310422 2.107471778104572 +2.43538902421491 1.7893651722240014 1.056253038782999 2.391892173828053 1.4836706900134786 +2.603483710537642 2.290671580494382 1.343294767239252 2.468937314299339 1.1682990081542146 +1.8259806429289065 4.187661394181414 3.761634611632721 2.495511763798079 2.6796647246708893 +4.151737880741539 1.7171627831192566 3.228642952284752 3.4086970899232307 2.441224159810664 +1.057403711233396 3.272874647326691 4.572917867013771 4.686387154384668 2.218374798777375 +1.328017587810987 1.9296745287532704 2.1631033587593507 3.5534161450198805 1.5149127757806862 +3.420485459307846 2.5761570601215387 1.7029207750054027 3.1218875217016495 1.6511683965914088 +3.950005129124466 3.77671683258617 2.4159046886934195 4.599563223874869 2.190523552027674 +2.9992274118689832 3.042544662118406 3.742034998578823 4.871221452925109 1.1300170055571326 +2.8888168861492547 1.0934467545007953 1.5383259928678559 2.5963530960112933 2.083932643009726 +4.785134276199579 1.5150339142188893 1.040764917760157 3.813282528909513 4.287238071481402 +3.0383525516231793 2.834978881117519 2.1356991601109225 4.851957814667051 2.7238615839109763 +2.6679576142409167 1.7124071528496017 1.8325378903758094 4.21631660935426 2.5681662067163216 +4.094966302083019 2.1788740926866677 1.968506096442268 4.884591444090995 3.489263978216752 +3.4430828081215124 3.4675499556958425 1.799256120797112 2.6935722841342096 0.8946507929446048 +1.4371095042190296 4.494533032252974 2.413050196967931 4.219227226555567 3.5510722453908974 +4.154285518720357 2.9388302773395596 1.6859399661740677 3.0341813854240853 1.8152372760554898 +1.76454969263269 1.4502487776479547 4.285681039694559 3.7821935055549356 0.5935358137418839 +1.8030610001928555 2.79715380590564 1.8918584785999188 3.5594151845067015 1.9413824645815145 +4.503470785685369 4.849883626551337 1.789820777620175 4.792845494904721 3.022938852993682 +1.5747220149702237 3.4318183147910677 4.570436235034597 1.1515167252219882 3.890734799672879 +4.2988533498707575 3.6778009235739764 3.982396460055182 3.5059073438378148 0.7827822136985015 +3.302254065640495 3.001885238642333 4.91716680223124 2.3768338783338154 2.558029084367394 +1.566903368419176 4.665190111079508 2.405943217374085 3.8836828023924466 3.432651310703581 +2.665689751886751 4.956414687735423 2.6010127797098246 4.6913222705270545 3.10109891798367 +2.312053328298981 1.2144120456732055 1.0827883563029301 2.2864965105287585 1.6290272268670367 +4.158384914427053 4.022460973649053 4.91043794855848 3.7867053170514247 1.1319232945700837 +4.042120434041008 1.916461736951919 3.125044512363905 4.263967818229938 2.411549541924299 +4.30903283042748 1.7605848285410683 2.852395415338853 4.548335204585344 3.0611760790696563 +1.2548087115058513 1.3746754333151965 1.3910838523260063 4.997927030683248 3.6088344024434655 +1.9606620175843377 3.1787489252334287 1.6000521679049498 4.616418429341838 3.253029532254645 +1.7899714054410865 4.233672268209695 4.722092441805119 1.9686711055451407 3.6814403379204346 +4.065101841290412 1.1302169250560974 1.1920508916243113 1.0651280230497773 2.9376281054801483 +3.633836196719937 4.989672736669859 1.9526856514465947 4.006340438611315 2.460851622489245 +1.4155425384139422 3.6951715162356775 1.2051718389804855 4.309929296398574 3.851782333662924 +3.901178199660366 1.5469722029372055 3.2091694732281013 3.700463686614692 2.404923258466772 +4.946468367766478 1.7750106876407323 1.9782244078155764 4.517525196569073 4.062781351807246 +4.469651164106407 2.2270426201463924 4.073171604498885 2.1042491244207024 2.984283634978364 +2.556711145836902 2.8082114519732593 2.935355668820815 2.2499929899618976 0.7300509609331072 +3.2152821535079226 2.5741795404951207 4.116006127495721 2.3943496838983767 1.8371481895024415 +2.9946141336920826 4.440773582300449 3.324775304170597 3.2961962348456937 1.4464418114817932 +2.6504592069530726 1.5259279271195836 4.482245929342666 4.424035853203552 1.1260368609810543 +2.9547428128325373 2.1751153736899775 4.611612472307819 4.459139732578649 0.7943971803981336 +4.378379847137547 2.0940026295554532 4.895032682063922 2.325244656545019 3.4383411361161436 +4.950238235540418 2.0426203966128806 1.7216194846843322 2.126239814302786 2.9356360653851814 +3.095076138125614 2.6942322488233437 1.9271185571752696 3.370221679473253 1.4977391111863108 +4.503356604042667 1.9157966639815025 4.754419580103841 3.4843357100999546 2.8824606641294146 +3.046284038543251 1.0145242851259648 1.351565704499778 3.580637830148028 3.0160918813836357 +4.317821697946886 2.6178910583716837 1.090328447358138 4.801143949903076 4.081656020942284 +2.3447610498798044 4.383467025064134 2.4238659224304393 1.511640840555676 2.2334897925116444 +3.0645135103143226 4.534681011304848 1.286442856623248 4.149352400777783 3.2183293086599845 +3.2309145755584785 1.659454774565773 3.775710027805281 1.497631434050699 2.767512960305495 +1.6231960253963726 4.378857601004816 2.4427410774789333 4.965728870022243 3.7361929983082205 +1.0653207352633682 3.347019542932301 1.1294849462643364 2.992246914593214 2.945510414099788 +3.872053275295922 1.8059557570941815 3.844700863469328 1.9366612759413124 2.812360933858503 +3.346923759898197 2.5090942470879143 4.269665460696169 2.664933817667079 1.8102822814894806 +4.896431129848078 1.0153741032496373 2.6065310022923702 3.6671070802554477 4.023359946718249 +1.5273346601428575 3.8435574745844847 1.9740918851082396 1.2008523249148335 2.4418819675791017 +2.6224327602391706 3.5844781400688612 3.8871661356721536 3.57622564741009 1.0110466359631014 +4.785594755015744 3.7673442786533395 3.2523132577747558 1.0056339167256652 2.4666580821242814 +2.9071629505712098 4.715959589563254 1.3650686049515675 3.189114337444289 2.5688301063818573 +1.9544201219976323 2.600814893171891 3.266952381221173 1.5471664500143283 1.8372506223644112 +3.831687040726451 2.6419017505641427 1.8877274722220871 4.787820812375674 3.134665918130638 +1.11098590147221 1.9163227137859344 2.2624616137236697 2.730834602384257 0.9316333172308091 +1.0809753202524885 2.2735721002139027 4.26843666245915 3.3518334608912936 1.504143779264063 +1.0308498496170424 2.706940437294963 2.0814502949306584 2.66708280756357 1.7754563069687899 +1.4140542566581793 3.902371724338702 2.2596292388316415 3.281620345050985 2.6900166618732024 +2.2469638024104612 1.7929965427968666 2.085544699552006 4.967039627023226 2.917036045345249 +2.9492407826099947 1.3012339143940617 4.524616141669763 4.080701233114754 1.7067475161031551 +1.1296031667085469 2.00618835704008 2.2363399796320835 1.0988600457984412 1.4360578664464596 +2.0935240827325137 3.5771470044904783 2.9680816838928927 3.093533233858221 1.4889174138797432 +2.1326030724191654 4.263274152845187 4.924687128237949 4.4112299456218365 2.191665469761265 +4.047125534668157 1.2249647065492288 3.454823621939173 3.587604265717946 2.825282718442744 +4.286172277605763 1.4792597037568602 3.1854741877555433 1.6295966574867506 3.2092854479504296 +2.0787752466016483 2.898292853156755 3.960071850642789 1.419927160309479 2.6690717778438104 +2.315150557093517 3.675308666095128 4.816755395464396 3.5556015207535663 1.8548690458307233 +3.5635574228237674 2.361380201439658 1.2817091846110729 4.127831549387513 3.0896023347504533 +1.0163294674083705 2.229070468591958 4.69705520623272 2.939789026230811 2.1351171310563437 +2.3522525190989434 2.886015910810227 3.11413226059514 1.5124240673162026 1.688304621431811 +1.7941324223762547 3.6750091655124666 4.092325703507808 4.206112686651121 1.8843154726328444 +4.6793831401101755 4.289696599672508 4.714286448961835 3.76478148577665 1.02636020719413 +2.560880721664918 1.1735233510610703 3.5359742457924046 4.500466722464912 1.6896763628951816 +4.123272281750825 3.283891913975471 4.373059878773068 2.8231805715685123 1.7625791524659433 +1.2919350055945276 3.2139919477120276 3.728352594894311 4.2998544713014635 2.005222502237338 +4.911801704919743 2.378404038146964 1.4960875652753556 1.3230374981130875 2.539301097498015 +1.3087195771396463 3.770648581219391 4.8563412861027215 4.200992021424075 2.5476610998804228 +2.2004509060812327 1.8509201371163453 3.9324510163336965 2.9070742556317306 1.0833140171902338 +3.278982630616063 4.828442054253951 2.7031257575022956 1.7299449812375363 1.8297282117275053 +3.4390376182674025 4.059589877872753 1.022894499787037 3.490388343495091 2.544329179889751 +4.138119100430382 1.7505420132671614 4.515006367892886 3.8785317247190503 2.4709561547202874 +2.697334984499483 3.3163998188568415 1.9784530344510114 3.4959790165920923 1.638940626017659 +2.981312187584235 2.7197800609767944 1.7421989242689606 1.686343831750631 0.26743007424005555 +1.4587098756003996 3.452427927455732 2.264371359018305 1.3860975542431402 2.1785950854732197 +3.1557394495801225 4.374909008173912 4.36639362175524 3.358757372283402 1.5816779772922953 +1.2704737640550832 4.658630514701059 2.6338612651895237 4.7272392684096385 3.98269225917767 +2.0412996407472717 2.5767652546181106 2.6150688309865524 1.172642122086864 1.538609188255829 +2.17384562991895 2.0750755314340026 4.707700208057538 2.481454164370909 2.2284359940068046 +3.445300823852978 2.4748618421167943 3.065639656859439 2.2920462344075965 1.2410473804548783 +3.247636258572467 3.884773566252146 1.6825347867289882 4.503385520168783 2.8919098895341016 +3.128344648476675 1.0286871289673307 2.6410586601905157 3.533448924105083 2.2814298328814853 +2.554289026436139 4.716336311121706 3.657206504157343 3.048287076816103 2.246159239726743 +4.972653463502481 1.5624060324788664 3.479468130710842 2.576577740721356 3.5277469576400358 +2.820887552939144 3.6010775274052063 2.463625962401279 2.0906001230864146 0.8647801298907796 +3.723947639778581 4.710995251072309 3.148435582872204 4.550098234859002 1.7143281998891922 +1.3384386008223665 2.1965652517008922 4.813664101724566 3.6488829694950944 1.446753757536425 +2.9080314314894484 3.8154522796377934 4.869150516873759 1.4762777790616015 3.51212158255423 +1.9185905788777649 1.6899392554462453 3.4696345960562307 1.8430227190206976 1.6426039164144366 +2.4436679727097514 3.4274460465821996 4.589008013041826 3.0673408436679113 1.8119851746034255 +3.108382886547367 3.3315103213690596 2.0923764696539444 2.0150331644841506 0.23615215227623185 +3.5815145039285317 2.726623238597881 4.747284552730937 2.5381531448755403 2.3687761930397326 +1.1932849982316185 2.79239163892625 1.5407305445999118 3.9524903133708884 2.89373931627849 +3.6743558917299275 4.1600140864124135 1.3929009978969171 3.3528221257388395 2.0191965504683798 +4.177394384459992 4.432285670973298 2.9521859165855284 3.717878485031066 0.8070035175345474 +1.0789623376030262 4.002030992476695 3.3885012073858705 2.263595685615139 3.1320508926285413 +3.9186359694110386 4.40852938867077 3.7518897435181655 1.9607878329016994 1.856890308135606 +2.98816845636292 4.621605182105562 1.1600711411813647 1.2232290286268017 1.6346572900003888 +4.287349309730475 4.795653584558195 1.8724601367940212 2.589308576490821 0.8787746703813616 +3.3202651573969253 3.4051357163413223 4.759006856705922 2.0231930268763154 2.7371299427068623 +3.2268883596732176 1.2777164072502871 1.4801821276021045 1.2223133118836023 1.9661555447706272 +4.768764290144705 3.9703762195858996 1.3776464997721654 2.242030616780117 1.1766832254036035 +1.0849212048444472 2.941751545571135 1.3469549037459712 3.66268194002454 2.9682335859555784 +3.6024387645820637 2.946606038282566 3.107968879053676 4.091480388987117 1.182121590639892 +2.9805815213734816 2.1789829570954833 4.165541816451833 4.222252661357977 0.803602126790688 +1.2083822248206921 4.673296946149933 4.223930451250899 3.0972291754364067 3.643499662550567 +4.053780254274602 3.3269609240473508 2.4938688969177356 2.4981630818767737 0.7268320155417292 +4.955629147491933 3.5216673599403787 1.4835908182130773 3.4984279990196425 2.4730174429871288 +4.183189304003774 4.503478735258263 1.2132806304744168 2.9008711789923143 1.7177156863754437 +3.3167209627624814 3.5493059473854345 1.2621934863417565 4.794105819447734 3.539562190980428 +1.7774026311591768 4.0247635935816515 3.646551521267055 3.339551294810665 2.268232888057297 +2.9482225970392464 2.9460042495194867 3.5483803939667715 3.1218699326054264 0.4265162303082801 +4.1390657492133816 4.842295914604317 2.016837020332407 4.8629772368929665 2.931731024128774 +3.619235817495218 2.133534018762315 1.5681300067393997 2.5364773540785146 1.773416595122783 +3.369704842412416 3.3662918293549726 4.127519420324112 3.8208698047292287 0.3066686084401531 +3.1722624095312573 4.374997278398227 2.944172599864732 3.658478566362839 1.398858169566608 +2.486256823239682 1.5806019103679834 2.2793728887479214 2.881580369297413 1.0875958214513377 +1.3707502965735396 1.4645274148407266 4.320966881196677 1.045211094429214 3.27709782009189 +1.6419916210978482 1.6500096301180895 3.1370281827650697 4.036213970476124 0.8992215351570483 +4.270064454831974 3.9481465628097276 4.34409497897798 1.7138358092958468 2.6498857388387504 +3.5703268967532202 4.599362886294989 2.5216512205179753 1.2190067994366571 1.6600595036162074 +1.907264122133463 1.8990055481058663 2.90206054395288 3.00869342006631 0.10695220574252468 +2.973502750125835 4.04604775767204 2.2846065649713534 4.57755455789062 2.53139552252207 +3.1922154268100074 2.6576832273621176 1.459299561542983 1.4016884712140012 0.5376278545383346 +4.570230201820662 2.096707917744323 3.582679739386588 2.191755799347895 2.8377776334298974 +3.7996898434671524 4.245797543257348 1.523143184007194 2.093635671030934 0.7242056044816494 +4.09588511195337 3.9179819822924054 1.1467199959444163 2.6558141024048463 1.5195441901099058 +2.934585480199043 2.8023905917235856 2.2377044264400965 2.569122553927095 0.35681012284691 +1.520525729651442 2.1484330344112528 4.411132443925108 2.5119106985485966 2.0003276785271282 +1.4120022972633106 4.736781143960097 2.5390869422603353 1.9694362162340653 3.373226397546519 +2.9284250115110706 3.951207051894951 4.193244798603425 4.860980772113262 1.2214558659447925 +2.5196549066019407 1.6813367693557297 4.512319175582677 1.6673673998392489 2.965894115699622 +2.569159307835491 4.884712209248669 1.991513203272954 4.1710487245842245 3.1799623154843486 +2.4077456577333876 1.4112608781768339 1.6263767254410788 2.95170693846909 1.6581562319192806 +2.2859825134336518 4.931746559880675 4.84604654159314 4.321463080596037 2.6972680988406443 +2.9232665556908515 1.41695996046304 1.0923835979380927 4.791475382554957 3.9940254868799694 +3.1036762446883843 2.628959218551498 3.050139158760803 2.9552401359005533 0.4841095737992377 +4.751030708557419 1.8759512101632811 3.1558550428247876 2.015370672478177 3.093022263271183 +4.996584403117037 1.276690406879657 4.051746560912518 3.8146471938114654 3.7274424815310865 +2.7632268382724057 4.736229765779286 2.636350197455766 3.8717784966148456 2.327879643433873 +3.6244538331373186 4.998200361098382 1.9968556246008768 1.3521731647284292 1.5174962923026425 +3.185699577626721 3.932065925040323 4.300370691438825 2.2465667733697767 2.1852169820013976 +2.6529356334056327 2.1973652660351934 3.1877705228333384 3.4133263294454133 0.5083500580529726 +4.7094358390257405 1.76356412307964 1.6497050592300426 4.235190373696707 3.9195528416050225 +1.8251359992367933 2.0203525972880017 1.014703390505749 1.7292949382462157 0.7407770246550596 +2.824361679523847 1.5476864460354212 1.259091399697796 1.451583869776409 1.2911053414960736 +1.3185453827793445 2.9923017910627046 3.8010659920381062 2.0002387264147785 2.458544153535178 +4.662961238119378 4.71568446701087 1.4602406633314957 1.339892632413176 0.13139021048259872 +4.060001134738631 4.812948674985051 3.884317155116928 2.7274270752243512 1.380334979386159 +4.6706091691167515 2.705622483909452 2.0282012500249085 1.3031713315042914 2.094478707409551 +4.383456110555523 4.535397749160478 2.626134263958462 2.074738510800412 0.5719471462842455 +3.007592447350251 3.066592204704165 3.707817596227248 4.371698370214498 0.6664973018983126 +1.3284605776959908 3.6435749003837588 4.069433311043131 1.959140270053886 3.1325853613208494 +3.9047107029744783 4.003355617171483 1.0224082375058945 2.333454759474348 1.3147523728301511 +1.3487138482276677 2.5431737952677835 2.6633451765369633 2.1193802766123775 1.31249090565727 +4.231611085789238 4.2040618079637575 4.416809176907955 2.767369107198035 1.6496701204402566 +4.611320299978092 1.7146755820666661 3.9671518754101904 1.163749974574988 4.03108085250229 +2.637381249971546 2.4723918129624285 1.9216540537884845 4.954498931584896 3.0373293478153665 +1.8810880109236252 1.1564193355483305 2.434175856130941 4.017788579916238 1.7415435532896877 +2.252286927476376 1.2827477918075334 1.9223776211910306 3.097383453574691 1.523366286133806 +3.988758934391019 3.6199719156176857 2.0475016302427753 3.8611773880258586 1.850789998780457 +1.5947390016601397 2.566194300703567 4.926824698532382 2.6329426487804417 2.491108238558437 +4.269539074024954 3.925923500913455 1.4771562330454544 4.286095018726648 2.8298778708256798 +4.218544647613791 4.905231891621044 1.5067476441525103 1.3751805401397523 0.6991775696778189 +4.031293083587352 1.284191721491402 3.558069381551219 3.883977751323564 2.7663662373440525 +3.123105008648982 3.029669860931686 1.015430292113836 1.3196141408483757 0.31821052883258 +1.4637671612844763 2.7436058547445654 2.1370039029787833 2.9047817865309797 1.4924710917634278 +2.0261867607814077 2.244372510105974 3.6318189707782222 3.743705001865206 0.24520094853144445 +2.855285794998258 2.0571849498544315 4.682775081934343 2.489496627963281 2.3339741506008553 +1.6308942390294505 1.2963168560439269 4.202563941326941 3.9069655673402655 0.44645315981523576 +2.8495635662177223 2.151512254000558 4.675967345363945 4.841246407659526 0.7173512409701482 +3.3629971481699 3.200337452679416 4.003625282450171 4.379764727740384 0.4098036832927274 +2.7735774669829936 4.118540001170047 1.886480557844037 2.931705556161823 1.7033553696969037 +3.174138636024355 3.2335837589698264 4.001899985750825 4.867390925135776 0.8675299930258595 +4.5144022942446895 1.2911133299859707 3.5355110178979965 2.1965001073935437 3.4903498342661883 +2.565365664951269 4.065226370008707 1.3486691750623625 1.1614466010597342 1.5115007200764297 +2.205336728972374 3.7061993391458485 2.5015366610450664 1.2455838448322267 1.95704012507912 +3.250671697401106 3.679414694245554 1.9217551519800518 3.2303490628859217 1.3770397891866009 +3.4281037860651535 3.780222922196978 2.0190232873417227 3.520586253799218 1.542296738071781 +1.3011210810368548 4.6345966030031835 4.593715581401964 2.2299023440129333 4.0865232260204145 +2.213083764633271 3.621055541741109 3.3398056431408563 4.564721850287301 1.8662272743860095 +2.137987573294817 3.4797922641378487 1.292194998261222 3.8139612431742536 2.856526706045497 +3.0408792394364617 3.7338304763149774 2.4936882841567605 2.6189947374086375 0.7041896931353296 +2.4775813477441044 3.862933052131004 4.521633538219006 2.633993693125021 2.3414490234968026 +2.5688929400660716 4.900027767970711 3.779013105207021 4.251565761818368 2.378549053339122 +3.2824512498171674 1.119165296145848 3.031104839114215 3.2842489286804275 2.1780468423415362 +1.741967819418715 1.8091049422735601 4.907889939935803 4.7091404567735395 0.20978262635998574 +1.9697707195305383 1.7098054418916653 1.5406213065633074 1.435862463248355 0.280279076690614 +2.1041663802551502 3.4852238107498636 4.633527389600626 1.5851418369971615 3.3466362371261975 +4.910285292340575 1.189190029650165 4.839455358811748 4.189823382222094 3.77737629301408 +3.7072783752926077 1.1801466424371423 3.6942598141716876 1.2871728016404091 3.490051959656449 +2.4904242520609414 1.9775437973389054 3.7649679875250097 3.6353482036497295 0.5290062846580906 +1.2193387782147131 1.76755127849037 3.8408751713747376 2.534048979947143 1.4171561805459691 +3.9400812141747665 2.806963446731093 4.539438546790921 1.017088156722732 3.700122720304025 +2.4956464611683153 3.5953844650289195 1.4934373763375635 4.771806707045422 3.4579082037644087 +1.5395016362228917 3.9003745731784205 1.459392701636979 1.771184150986532 2.3813724892037613 +3.1687163258567224 4.977479054860362 3.2697015788649915 2.149241792712842 2.1276871814758898 +2.4414745999878944 3.420090260211802 3.0343614593559396 1.5386665128636703 1.7873981043399332 +1.6963488258690615 1.5758577509188383 3.7152485025400668 2.13340524646312 1.5864256005053554 +3.13190552359556 4.389790536862545 1.6875009863648978 4.859177652055638 3.4120093168525805 +2.512325497055398 3.6386920218989585 3.846167424726154 1.9814812687049064 2.1784756158253082 +4.651506301918617 1.1598270878657333 1.0417631360801094 2.16556944125966 3.6680736559412592 +1.077896569156536 1.6981965483963068 3.2833764280397335 2.5360528246354237 0.9712181178551306 +4.471044546347987 1.62826807896128 3.9484933864933858 1.0466117445201268 4.062301700704794 +3.240193104135322 2.436372827448154 1.4247965758905834 4.895981172721155 3.563039368641224 +4.291937621256627 2.756459881178899 3.7007786729602508 1.6897879112193976 2.5301730640573314 +1.9785543692217016 2.7219388271131644 3.4643425804348467 4.8379760649153845 1.561886488167667 +1.7659529764638333 3.672820585216739 2.620161615352115 4.326956761818455 2.5591587972050656 +3.378259281037903 2.0854541303436376 3.338802433215261 4.447787062327301 1.7032886030465861 +3.0490886662235694 2.629971229415765 3.2118702404181136 3.9280053379133677 0.829764366372093 +2.029913661589847 2.187035877311258 4.295239133442856 4.023658123647286 0.31375728765207533 +3.3600440551435704 3.252194659540449 1.990918090337407 4.665732479802315 2.6769877680371437 +3.4666404447481307 3.228458931401338 4.657560113842598 4.204316230523578 0.5120160652423644 +3.8872018889947673 2.9931499706696267 2.985006611168467 1.6544115191279363 1.603063358580444 +2.3050861870301924 4.287446691602695 3.355180746550314 4.64777010510903 2.3665460950398116 +4.215303254393628 2.3527942932663164 4.965485179761427 4.325838442212676 1.9692860582293015 +3.1465549838563383 2.178156692491279 4.174045701293155 3.986866410160365 0.9863221267657641 +2.287006306576252 4.686716854798853 4.419039574674661 1.5106413965525456 3.770595533566927 +1.7932690556381705 1.6237291757102956 1.9452229806115562 1.1738896961461172 0.7897460393127655 +1.0051962030987012 4.239149591688752 1.3601719299937902 1.1974608616737714 3.2380440718629684 +4.215939076363935 4.8093606349806555 3.333684256139286 2.8319557375367936 0.7770975824245943 +2.6266347074283214 2.7727251959227086 1.1800239986403875 2.8936189283405946 1.7198110401793525 +3.8258672634332807 2.139473217695134 1.7122157786281198 1.5289283274585372 1.6963251950193146 +2.6536763683356295 3.788354100076622 2.4533122569927466 3.4568310292759143 1.5147750596156515 +4.4774814723454455 3.624532342543095 3.4378692837333302 4.969010548411991 1.752688161206196 +3.1636902429607496 1.1037520976906188 1.4954566381797636 1.8137698834853033 2.0843868365723024 +3.6966511649450187 1.1231297125466342 4.849046177411542 4.408739305400881 2.6109160858776184 +3.403740166170729 4.926969490461712 2.3030103182221913 4.333995009777464 2.5387253478294634 +2.652867101851099 2.494465658819022 1.9410905347568157 1.6339791882287624 0.34555520010689816 +1.3793530017672988 4.749115400721001 4.779621419863258 2.044669940538228 4.339960624206673 +3.4914954319402796 4.764769968588898 4.031349678222984 4.705748204368507 1.4408474651207905 +3.826891548580277 2.09891013872691 3.639954110253215 4.668180712977902 2.010763461809862 +4.610558926317953 2.31151989214051 2.480766070037282 3.482960685560783 2.507982162627129 +4.823811620216329 2.652213290428485 1.971228643280242 4.269678083288831 3.162073549779187 +2.206509365096082 2.1300299932454734 1.18317953268149 3.313919072496559 2.132111648307845 +4.624270740352524 1.6710403998234087 3.225650620860825 1.1576544244451572 3.6052985608145387 +3.096070917955759 1.8652374174950177 1.0837133358956335 1.7685993939366065 1.4085524549534336 +1.9313132876618 2.458499311938615 1.2269952287237373 3.363531591095016 2.2006164436192623 +2.3627304168663006 4.540209911669315 1.5680885466852543 1.5249779633265654 2.177906213014031 +1.542687570535469 2.0911751336798026 4.587540966010472 2.8086794106037964 1.8615012866575913 +1.269651963252489 1.7823964270872978 2.882032312084589 4.26239269231402 1.4725154208022353 +3.7230821955337547 4.993235449533427 4.724317119860027 1.5239529224024428 3.4431991352540563 +4.486206825847835 3.243991655420584 2.4386890055482433 1.5367402049678818 1.5351254569278554 +4.765061671621915 2.256520625187101 3.71611815458916 2.4717256881216985 2.8002304891292864 +2.7367662886313955 4.806217812964793 2.3879928387989326 3.809003438962007 2.510358686989101 +4.146833534272773 1.5298784472866616 2.0295254503416524 4.450240295239959 3.5648722680642453 +3.9170104487540574 4.5502519348311115 1.7532760368891456 3.8339556726708253 2.174907475375828 +1.3236030921219348 4.90745677818185 1.6541882462769215 4.546585227315793 4.605428051659045 +1.5258022331329562 4.5301952622887 4.767142600238418 4.627543970063524 3.007634494280569 +1.2434749151595357 3.3253945545306203 4.687107040652553 4.482493135978178 2.0919503423325136 +3.9139924370703443 4.072286744402549 3.8652555589637148 2.982296938710064 0.8970356809035038 +2.93942903363923 3.025423307002515 4.014162161833518 2.731085041241184 1.2859556417072846 +2.5439785607234464 4.681648728145803 2.2696228302975174 3.1581543956778515 2.3149777725422664 +4.346442935248532 4.385029802296435 4.953662624150227 3.4672091207569653 1.4869542575542376 +2.787045425632871 3.947320636486629 3.671431842145127 3.050869896638546 1.3158023001699934 +3.2014719917547745 4.205979116215758 1.1950889580960062 3.5233254089132084 2.5356891635227603 +2.2805260100164593 3.4116741955437355 3.523034030817107 3.427232517884098 1.1351978450921685 +2.693070341229089 4.350543505948057 4.77243891915605 4.996848368366057 1.6725958545501207 +2.158348607927617 4.807954613021348 2.0952860348217293 1.0585756624193818 2.8452030469678915 +3.132027774641335 2.445882123420989 2.246231243595573 2.7589068904855045 0.8565233059307857 +3.754032509816225 1.4059359185675318 1.1183921741133354 1.6651113856417763 2.410904290528351 +1.670567902100684 4.364725634966347 2.2415261555751296 3.144262364669288 2.841376172344933 +2.3521620129003713 3.3491520552276333 1.3620377770420142 3.732657654662597 2.5717363295387696 +2.6611897289616957 4.067338028212436 3.6213862133905943 2.3617460945912176 1.887841695793018 +4.153453790731977 1.1204985651096622 4.355113215786921 2.297440297735353 3.6650832512117044 +1.8400536829932093 1.2693309870079945 4.885765894210332 3.5620956382764697 1.441467079803298 +3.9337926916912163 4.938806912012715 2.725531462104505 3.4104404557654546 1.2162047165860213 +1.4902789396379323 3.448708004012677 4.479036104656087 1.2329237732137486 3.7911330322912375 +3.341852872611748 1.6367263397226899 2.5447260518906765 4.417506883532573 2.532738544841842 +3.6701868905807142 2.7819054111333794 3.573267927506877 2.6694318240185986 1.267266226448894 +2.8519438418427967 2.783148041423981 1.2854411356155566 2.656934469795422 1.373217691356716 +3.8355426967501027 1.1951427491295905 1.4301918075666151 3.0381026938832574 3.091454237366287 +4.308263824902427 3.70625512206847 4.025312064853889 4.644434928187701 0.8635552085364795 +2.6069300635849673 4.6369807566960635 1.6040218146063587 3.400013833297356 2.7104783983279788 +2.867714712074293 2.8534153493590684 4.369360578219012 1.8802386920419738 2.489162958912011 +2.344133832637686 4.510521095865669 3.890395498528108 3.0148520478041276 2.336623655701124 +3.2478870468815675 4.308969368547567 2.346840909460244 4.575552752309748 2.468410859603753 +2.4120176631710875 3.6078560631504333 2.994932646001444 2.4253784763026274 1.3245457451845406 +2.531750639572393 4.719692032182571 3.3526729779555238 2.6081612801069882 2.3111437007962685 +3.976006902204649 3.587195473951408 3.112513375326852 4.47792546747567 1.419691694744509 +1.3544034217313254 3.968990742141462 2.885245959609374 4.524816683666485 3.086139824316879 +4.822328166474064 3.891087126359553 1.3957342371740808 1.7128228397247645 0.9837454226887672 +1.6641032299647627 3.9407127224525746 2.6308166110628664 1.317675920644772 2.628172226875043 +2.510449475796964 3.001053410491465 4.6295003018250895 3.831481195416639 0.9367639590263217 +3.2656892512476547 2.4929649825182327 1.7899054031244064 2.0681028147776384 0.8212774167928751 +2.0492531367720273 2.8231423119648498 1.4763850259454818 1.2443759142878874 0.8079187356243035 +2.1990994677317137 4.310922007991577 1.9316265439947506 1.620432006034179 2.1346279493171907 +2.5166149911467772 2.331691151081308 1.9711515836391889 4.771946934027936 2.8068935536253923 +1.2511765499545926 1.7473709855140624 3.6702943617383514 4.568400323827439 1.026062004471536 +3.1995513748280118 2.22410024839567 1.2743248028098115 4.866818512519766 3.7225684620116404 +1.3975166578750016 1.8345761632322488 3.3613526506933153 4.5568051721545775 1.2728423870578836 +3.656166265349163 3.415731485400792 3.340947454654573 4.989606937585783 1.6660993289920705 +1.011420625189905 2.3709246304756637 3.439465869484761 3.600424766870829 1.3689992355862581 +3.6443701771003423 4.150952200492348 1.915196037145682 1.1157354994765942 0.9464473031891876 +4.139796456309774 1.457616912892739 3.3325686543006126 3.464802372689272 2.6854371821742 +1.6246861510723836 4.164255469012497 3.047014264289685 2.313714875328026 2.6433199417539974 +2.941240978181054 3.6274008406079905 2.7448702931716165 4.459098420112168 1.8464542853804597 +3.9598903556883776 4.541627953387959 3.674554554458584 2.4709755999161933 1.3367950225799894 +3.450292824233342 1.14411406867469 2.4113948447301388 1.325101426812056 2.5492143578762074 +3.5610755572021775 1.7529637473861253 4.225172460983385 4.209199805160616 1.8081823587598438 +4.931156137178553 2.7072626183483903 3.343109398909037 2.2460632245856846 2.4797606117712863 +4.841889889828947 3.1329995425970947 1.3565557572277709 3.010388924255996 2.37812328595992 +3.350386874037778 4.454505273944756 2.927368905674203 2.4261207870599066 1.2125704587476627 +2.027202770076434 1.725589894492491 4.307978706693056 1.7401977094455958 2.5854341176180022 +2.484618036853555 1.6038671064162155 4.894674689804628 2.245773917423666 2.791486611715466 +3.451834765271976 2.95243183387266 4.740899826742907 3.229877783159783 1.5914116073738906 +2.8998281869637372 4.852012734579659 4.37342723078993 2.6349769661637388 2.614045491289173 +1.4218995360989748 4.0445508990149515 4.609700090450383 2.4492047485378268 3.3979464818962177 +1.9853471695670142 3.8260536873474593 4.1331185149802 2.4073220476489765 2.523207072606674 +3.759516711963454 1.0031801769063406 3.963089548798937 1.7028661977345192 3.5645477540899235 +3.337478681409491 1.7833229831199868 2.396594747647751 3.1921038430683715 1.7459194298199072 +4.112854388970839 3.047130872648187 3.550688065728513 4.667339379880342 1.5435921646082962 +2.4070520530184907 4.076694448176538 3.6030204733247966 2.148609300841822 2.2142758604908295 +2.795128566339543 3.144627146651268 2.458257788018328 3.3698983772625186 0.9763389890798206 +1.0982631282154993 2.6489989081953746 3.449387009285043 4.943935097460008 2.1537073726895293 +4.611234734028953 3.4333267459097874 3.10002950379685 3.372982145687793 1.209119668680559 +1.2229762176646806 2.2510835250587187 4.020889877917941 3.6155175928380965 1.1051385999176184 +1.1880560226088268 2.6972343804057037 4.82341260129176 3.7889054749110667 1.829706072071391 +3.0327446783138035 1.9673974243179968 2.754467628238922 4.885525604857248 2.382513981345125 +4.1020869265133895 3.3041243513113003 2.688531306474977 2.588836153093075 0.804166273248879 +2.1605542142106877 3.3315863405449115 4.335571279945694 2.173045483113603 2.4592344465038556 +2.369125121862226 1.4300712650697611 2.5015042085805828 1.0939323667640997 1.6920640164696634 +2.3784326632115746 2.701097262386845 2.1335268951373676 2.0056116293960353 0.3470947403384464 +3.441276040970474 2.000099357045505 3.214090396987758 4.680730536264798 2.05621582826987 +1.1603560157248074 1.1075615014445903 4.602379493995315 2.1869060654470918 2.4160503191698206 +2.1472493184022157 4.29078229774728 1.9504310150500008 4.367725297427233 3.2307963849728427 +3.839327469648628 4.83496099747126 2.9602631823359773 1.6641429891572765 1.634384800740062 +4.0267665099905 4.161764484604731 3.64923715953255 1.1126081444328224 2.5402187333762734 +2.4060468558134 3.4240797284740303 3.980852030153397 4.074825601830401 1.0223609744074682 +3.522516868223127 3.625394224191019 4.8079623730344085 4.385195218778085 0.43510437493655985 +3.2182200531993 3.3499420832504154 3.7609230419747166 3.424748193410295 0.3610598593143507 +2.413684974017517 1.9511908478269988 2.8059771240937104 4.8489321260979485 2.0946517507630875 +1.2718100357842759 1.9283122340732657 4.630366816419054 3.9282454811548395 0.9612333253645959 +1.491457369796811 1.061281530529881 4.561062427671466 2.604353374629756 2.0034374387398257 +3.7905557486383086 1.0232476356302667 1.887146426633401 2.120831033374007 2.7771573033855397 +1.893597128192293 2.226771804078404 2.7739338483819482 1.7840423453488201 1.0444570610747963 +3.7793780137232122 1.4605945839691925 1.322316128629823 3.4249821443269375 3.1301694790648944 +2.485493774498994 1.775932940702833 2.4533889544998764 4.8248344893901844 2.4753243225502155 +2.66981732826587 2.5282287980217983 2.7694600608201325 1.374815894321578 1.4018129914668092 +1.6457426589446893 1.6225854560551691 4.182089599047803 2.0799516645995997 2.1022654807354435 +3.874626902198415 4.610153701044041 4.59540715814712 1.2102250862615702 3.464167624644546 +2.0729074077782244 3.5318473567149944 4.27993977030362 4.072216983872045 1.4736534635410468 +3.125475009657988 4.9314808597917175 3.8098009058221343 3.385609582725923 1.8551537427683369 +4.194763288485753 3.3704937320968353 2.4685474332167856 4.176367945510152 1.8963309847702112 +2.064144922661562 1.1363356408185519 1.6921770657954291 2.448988846210243 1.1973279143362034 +2.1739482794893394 2.4607821777554686 1.7066575812283733 2.140818987439201 0.5203554668085149 +4.770397670352162 3.6013663177068507 4.514967496399251 3.504121194368885 1.5454593329480375 +2.4281091267339567 1.9125379161939158 4.297930868680148 4.086957651081979 0.5570667569344339 +4.070376657039194 2.175544220330199 3.5670025762106454 3.2969792877965514 1.9139755848731481 +3.648210839474534 4.534658825764568 1.1068526029181327 1.892536055710393 1.184520375674992 +1.013365315106587 3.9141734297804938 2.496062028354535 4.282222218014578 3.406619430063239 +4.710291433120078 3.0339323104275997 2.391398020456943 4.478238579230672 2.676767346255058 +4.574641234489041 2.313281900055959 1.6127765375207295 3.3779634464533657 2.868733320281756 +2.809227399738039 4.530018869553031 4.83155903596033 4.359370485422549 1.7844005463591996 +3.231572521420719 4.405600621073832 3.956902936553676 2.1693024944755734 2.1386578312794517 +1.8941557702321221 1.892137812119314 3.362407854728588 1.1150432035831495 2.2473655571297257 +4.183836229219898 3.615681189818781 1.9370348935605564 3.6999903440722486 1.8522451428700704 +2.5385945115796202 4.357470674814433 1.6423909388455007 4.521744290916985 3.4057284423848424 +2.052041641780947 2.3924233797883123 4.543528928504941 1.2368958773381116 3.324106174994681 +2.936579616284159 2.4707038740520897 3.258727022548996 4.2202740255405935 1.0684628426681035 +4.757200088788438 4.770883510085326 3.5220986016613183 4.5444567343147115 1.0224496992130818 +3.4084743944713507 1.987563344541666 4.291682746980427 1.8052679204403668 2.8637819228164907 +1.6674446200091046 1.4114512052939379 1.7276662829574696 1.2082450491160817 0.5790777551787335 +4.494582631401726 1.8123419945901773 3.998194528008532 1.3817656273052323 3.7470141481182986 +1.4869667820978032 4.689694805005603 3.2173045713757897 4.663668829042075 3.514176483128508 +1.8600196700192568 4.562324543753379 1.3149325550274544 4.149863743443413 3.9165401151604087 +2.295746012241093 2.3561194155745477 4.236096477950544 1.385668581629135 2.851067193167737 +2.5983953291694712 3.292193606930375 4.16057075734609 4.4677725195103974 0.7587680626521204 +2.5265184187152405 4.879075246888289 1.8956347693347873 2.0419376626117867 2.3571016453188554 +1.4128693159965637 4.276402024348606 2.462886892033588 2.542590360315084 2.8646417253573055 +1.3389721069899805 3.057027656068924 4.823007725528848 2.246699228739435 3.0966240230855075 +3.1033022934318693 3.2088605788278564 1.8726215639895556 3.545331386957298 1.676037202292514 +3.625574810442452 4.552420936267277 4.7151601413608395 1.6502763487481822 3.2019613369271394 +1.0846660684124605 3.1456334445572898 3.858073252086661 1.466474305834677 3.1571081776282077 +2.811708271004501 3.7509277384226274 4.207897009828926 4.525090857080608 0.9913350315163448 +4.208343027702135 3.0154297186881083 1.9570037581452158 3.5156256750539465 1.9627390154299784 +3.974350548077592 2.4751160982166294 4.05933108514366 2.225436281937909 2.368728368740275 +1.1474983591524057 3.067605891552604 1.247078612966733 4.388411718443514 3.681682579411807 +2.214254782841216 4.893104239553534 3.8376778300273346 1.224362329662105 3.7424126330720204 +4.089045498195857 2.3900451159170855 2.7131388736397515 2.23292413162876 1.7655618078753554 +3.608768110410681 4.648899039258157 1.3191273544150346 3.495524545727819 2.4121726894025 +3.714669231285512 4.031171624055741 4.456870391020992 4.844334283347164 0.500301941317269 +2.646516014755556 1.2004451797853801 4.022404184901414 4.43254352980227 1.5031084930859266 +4.906950057734427 1.1594624194207666 4.566698520224714 2.976166075857985 4.071051099642069 +4.319397500092057 2.036345292809484 1.6807950889931202 4.721112215639961 3.802085692322035 +3.2720103250827224 3.3372949086443806 4.254557851266913 3.7003169101939086 0.5580726633802348 +1.307797941170009 1.1233569513894328 2.1522555633865785 1.7576749907338725 0.43555976286403686 +3.944432612557971 4.482421339616838 2.1271271943464485 4.882249194785329 2.807156765794308 +3.448214145069991 1.8747779662108823 2.7641616985618818 3.344266784536312 1.676968490972968 +3.4670958236579295 2.5008687170675126 2.185325926639904 3.6904742349292663 1.7885933723058514 +1.2269656621053024 1.178117088948734 2.483911316758204 4.49753973154292 2.0142208359382647 +1.170911532084895 4.939901511656553 4.1470613289672915 1.5224456720544017 4.592808815161354 +2.421791034436552 4.7686043578190205 4.640798207846264 2.590146296729696 3.1165214639677195 +4.624992382373922 2.3909768557911404 3.3651592814422906 1.267744799474293 3.0643062644229975 +2.6150752190435353 1.8984629802457698 1.8789274905687354 2.005457861123411 0.727697076720423 +4.036914748396107 1.256616406822281 1.239535215000548 3.2887076100717625 3.4538625295283634 +1.5862176233468914 2.8958416594807477 1.199910197491588 3.7417621272862593 2.8593926538725714 +4.160574789679666 2.7016214708730693 4.222158392949086 1.9358524592260937 2.712146679114857 +4.597698737828507 3.5007546635798663 1.6804968351547647 2.766665650628363 1.5437127316105568 +4.62195674047279 4.273406203132852 1.119591872494547 1.4663354025610285 0.49164881035442765 +1.7780377581848636 2.8442719383273927 3.846535975318143 2.4208210527136123 1.7803141204409556 +3.553625853965578 3.456821531647014 1.3660545561151234 2.7299576190026182 1.367334136841996 +3.4593971764043947 1.622929708615045 4.558709050237769 2.9211328186315293 2.4605423537444584 +3.996088452157326 3.981928670717209 2.310037770750461 3.751823299134979 1.4418550583430552 +2.975601298685133 2.1092640341898794 3.411262199751737 4.340952957584302 1.2707734499321302 +2.3891723607104516 3.6135741962420855 4.1609367517392295 2.927168343219018 1.7382014672401267 +4.644555291167768 1.859940674831035 3.5757852151782408 4.137630726929574 2.8407303533759216 +1.9137904224022422 4.008068872990883 4.41755339094771 2.689462890987657 2.7151977837078727 +1.0715058806507316 1.4653040588697026 2.272513775829562 2.7293107320805783 0.6031089987794689 +2.0993070363894404 2.966251891903048 2.69576941794007 3.16488885506519 0.9857314181814941 +3.6754054302954198 2.136091553602542 2.2798415588161896 4.743477070791535 2.9049934848197645 +1.4430252139583337 4.538152269681321 3.1643106800979264 2.4628069532053267 3.1736286754931893 +4.225315454579462 2.216931961885398 1.4464297346369008 4.603202689008791 3.7414996644634138 +3.4946381305627714 1.1281295233749855 4.228637282464993 1.3823254103616374 3.70160158055542 +4.791627880690903 3.2235529931016296 4.450694812102382 3.6763040920544756 1.7488681598063442 +1.1213391420527685 3.4872512584432744 1.9735974851378657 4.677893825767922 3.5931544414940633 +4.5594042390019975 4.047939087764247 4.380785799011025 3.1956787930155413 1.2907653607802754 +2.3088001495241506 2.3261909782938073 4.851193215066361 3.631594151059386 1.2197230496518394 +4.9445263250562315 3.971294699257878 3.7637183415939846 3.8082005837104367 0.9742476416793693 +2.963405256310633 1.6914220516654686 3.349238675473257 3.7987021058696833 1.349058430225728 +1.6901632807741387 3.0550567458290807 1.9076512587780665 3.4963003986731898 2.094454645161647 +2.3901960396585857 2.3882422119659337 3.5301504428525434 3.1141691604030206 0.41598587090308997 +1.0446845405453726 2.0800397358240375 3.675004182633532 4.605274916848103 1.3918922441506165 +2.5332927018326967 2.4356224144931113 4.6760791708267835 3.3119886402294543 1.3675827070763582 +4.647191254472608 2.0863272252295704 4.825994758681786 1.6802913787632074 4.056288245514864 +2.8316061309507123 3.6619302385606134 1.9681304242527196 1.4978733802524915 0.9542430566213259 +3.2400725607214818 3.1602706773073987 4.137227970188553 1.7055864721053462 2.4329506192680475 +4.972924317638861 4.9182277630634665 1.508382849694831 1.2330666399941137 0.28069686212422906 +2.827960478216298 4.622590752152966 2.2177046353690684 1.7627016308748344 1.8514117732770257 +2.0827533813152903 3.8189509477917483 1.0079681396316853 4.480089398494331 3.8820108225099914 +2.316802880322255 1.2166921608968528 3.6099705929080437 2.179102490946962 1.8048897806249513 +1.9218657160345631 4.074859053662987 4.611095058456518 3.4060156975527325 2.4673055299149023 +1.28021355717534 2.002251543018089 2.6788547949492125 3.1432057967242413 0.8584641552501342 +2.017428367152551 3.0347732400325222 2.0237924532736473 2.4659585548539775 1.1092796995176248 +4.799697190304373 1.4914900082483777 1.3718113866362356 1.054358858281745 3.323403506522422 +2.7666663227168913 2.2903918228947138 3.221853147138411 2.7864562317961608 0.645296732573792 +2.149290609785915 4.7351655093497484 1.3080269619487237 4.60745492687995 4.192013107322601 +4.167772260244039 2.6022371474596535 1.5541174300954532 1.5377056291952331 1.5656211344286353 +3.67266268205414 2.13186477978697 2.2498417289684878 2.4164118160081487 1.5497753932513294 +3.4737138136502823 3.5598096929836176 4.216946227741559 3.2626891769934927 0.9581330906197624 +3.244642172339936 2.9449376288973754 2.3924510557891145 4.951038260896896 2.576080608114071 +4.272120477784924 3.005223369409839 3.0675514429324053 2.267999775590354 1.4981025171725082 +2.129270088711667 4.754447112222666 2.705196864570808 4.798015022991232 3.3572968663769256 +4.079681595539093 3.537130776271888 3.881526236214839 4.451844092162862 0.7871618945939042 +1.4872248695705612 1.5222052688063616 3.393387799179631 1.3779327219636803 2.015758615659685 +4.692626261312817 1.7073922701808906 1.179225610899135 1.3547479781709577 2.9903896206384477 +1.3534269476419594 2.328946206832582 3.1043657363765154 3.470084608790503 1.0418196190759605 +4.864816231816816 3.563428142922609 2.7694682383842792 2.245698621376911 1.402834833334189 +4.009396484252015 3.926431964834246 2.1455577451885746 4.199489965680276 2.055607131203867 +3.725918343126794 4.784282558486874 2.7983987696802832 3.9438318647761044 1.559535760313161 +3.821563052836338 2.5094633035518505 2.2348385070484924 3.3227267564361003 1.7044373251099754 +2.6597881089642206 4.0471720388573065 3.021292763194243 2.978898844865047 1.3880314885610072 +2.7438728553509772 2.690434606006185 4.118848915465909 4.815888325735839 0.69908482029185 +1.5017185278488672 2.0950485194449335 1.9312919147476668 3.89128329232487 2.047829748564165 +1.2016835231487906 2.773752805276638 4.040247491315873 2.846517555105813 1.9739283138994788 +3.9451316078968808 2.9011415548537873 3.896874288010302 3.603690028553514 1.0843764294958398 +1.4165276136191625 4.0633590118131035 1.4834097012649194 2.875688593058509 2.9906783449577587 +3.740884654269362 1.0611705272052423 1.9868987958457653 4.302505543667153 3.5415960262772717 +4.8397062851750094 3.8078109983044643 1.948097771466355 4.058144555876602 2.3488519143329722 +1.6587241729637228 4.443167488179074 1.1755140527878138 3.051110993533737 3.357229283171306 +4.112343814021328 3.8325301445454096 3.8177028216142617 2.398894164729408 1.4461375088410438 +2.6369119277191455 3.9053520623906364 4.057221472873222 3.9445313437456337 1.2734360763101626 +1.2152354777248844 3.4786163004167086 4.753075368354357 3.156505296570047 2.769824677239784 +2.480590759626351 4.852611485867364 4.500682883972712 1.1838133617609143 4.0777574416699265 +2.866278849056326 2.7732980474355124 4.00993995639471 4.942118400573539 0.9368041851217949 +4.816542197241876 1.858727710212185 2.959443322206873 2.9790163105842207 2.9578792472913316 +3.4875926862850397 4.213317868231438 1.8778158118367334 2.314948985269397 0.8472086230831481 +4.161632277425825 2.151087671695373 1.1167835713511507 4.711776650296478 4.119012606110429 +1.9639532303688458 1.1261379924486645 1.5866359852653225 3.726860315658079 2.2983678028758523 +1.9082421715033036 3.468734096059485 4.534719427954696 2.035278431184873 2.9465811278393095 +3.88433041186818 2.316947913199974 4.350031632865557 1.583053026794782 3.180072090941455 +1.204879384377049 2.378134277956093 2.4207389347975266 2.9476067617467314 1.2861247032777776 +1.39896623510886 1.47181117293088 1.2416538372033137 1.7536720650603592 0.5171741008830231 +3.654507267742145 2.1517161930828794 2.2409298754326343 2.7028148752973324 1.572170082139831 +3.5032054605296787 2.485800377000936 2.542762351140894 1.3324794021570292 1.5811065494112684 +2.3010935771857843 2.481386937945507 3.457023855366322 1.7612551838428394 1.7053260929378151 +1.9416876777494032 4.027875798292228 4.546264884312081 1.3002759360346454 3.8585781223960276 +3.3812248810376593 2.7729142445362682 3.589454742053396 1.8644283990271155 1.8291412505914764 +1.1192699373971404 4.430796892269646 1.3111973094068712 4.3663320495878 4.5055586838379496 +3.0715678275920624 3.5364256225665116 4.9623180214060465 2.4534994944684 2.55152173626918 +4.5576121612505816 1.6554334935750443 4.786697323159373 4.387138590319186 2.929554266454167 +3.643578840975889 4.536495632812713 2.2627773392517327 2.2635597750957186 0.8929171346491316 +3.946384899506213 2.4566618652111982 2.3405278737122424 2.505736037350298 1.498855715618353 +2.9237456643790183 2.127630218946798 1.7653248767718943 4.622089552798799 2.96562037635481 +4.244141046880847 4.6737822908377495 2.8494457985294344 3.0795865400354527 0.4873975373447991 +1.9881303585929486 3.819852575423158 3.669578332274907 3.9600440093206366 1.8546095516768513 +4.42659353757001 1.5085736760795716 3.7648030458843738 3.464520501035236 2.933429651243362 +1.6101129249815886 2.851105526687364 3.4003083908233136 1.131387248871364 2.5861294990554917 +3.878858726685197 3.486373337815875 4.786292923872255 4.834951858537767 0.3954901672591689 +4.725899774990658 2.225432497161845 1.809663476149844 4.660846285353019 3.7923053699548435 +3.6287558492632215 4.827468136565755 4.086304139407563 2.4028317345217274 2.06663748290361 +2.963510519154772 4.908039093471407 4.952521875951547 2.647847878110573 3.015412677007607 +3.9989483839084627 1.3440439508997417 4.608160598363938 4.874809644434473 2.668261468106093 +1.6625474443455777 2.490569686351863 3.4360528611021004 3.2045360825127607 0.8597795368729713 +3.88827869767499 1.9683786789803568 4.2975236948655935 4.245063249265021 1.9206166145632144 +3.4319208144446915 2.5977146716445416 3.750789363569706 4.821816649784825 1.3575711165544244 +2.6417216754450026 4.573686957168027 1.8146675099384777 4.154051868163256 3.034008738499262 +2.0477134990900216 2.7703085105751533 2.5627817015698944 4.894316769555475 2.440942302445866 +2.1987098854888223 4.653461050134728 1.2371980452214948 4.30039472393583 3.925427005157142 +3.575179499018082 3.2854403661219322 3.942571701425367 3.8797176580549175 0.29647832281539066 +4.1831492505931305 1.429579660528188 1.4072771974485492 1.3276223861972904 2.754721469819751 +2.5159313104519363 3.7010140741326123 1.7314211249498892 2.5465813695433206 1.4383696955715701 +1.2626570261464245 3.1698644099377984 1.1171763454609032 3.2690842899174535 2.8754387154317085 +1.1144263892677575 3.088578103698622 1.7963675728158752 2.8668722608113737 2.2457193232037396 +4.939856451523738 4.769879496309912 4.912510096215952 3.5599893131191074 1.3631597976806182 +2.05039108510799 2.6374988368758148 2.968856169422599 2.0533792569773155 1.0875630967471352 +2.5778393400169226 1.1103869411213232 2.016370914349824 4.0724265957742904 2.526020884344046 +1.2135395874720953 3.454137811406053 4.778436579460415 2.5422260222287485 3.1655833676228404 +3.6355223965798302 3.902468009745813 2.3581959612819716 2.8316111594387943 0.5434904877129185 +4.5761037500127015 2.112378679403398 2.683834369251698 2.5609255288858854 2.466788966772165 +2.660244580302273 3.0566621036071018 3.7220360634840786 1.118705099974313 2.633339886598731 +2.647489159684776 3.145446752431916 4.26190152319955 4.97505286892965 0.8697968763402055 +3.744012457389714 3.787045401632616 1.4881422056110387 2.1659409766985616 0.67916346219299 +2.6625560471250194 1.5062762278759165 4.038578880782529 1.5003562109104194 2.789185784822416 +3.3854547128040555 3.920131507770671 4.327790783873867 2.0991037006805815 2.291926130979873 +3.8479594600534095 1.4610288201257164 1.031156662501119 3.5256462077283084 3.452523131142408 +3.6271791410244725 4.105800618446649 1.5238111958524785 2.9903634223569555 1.542677526806891 +4.771614977667224 1.751543486944343 2.5901652681654803 2.7520705058150297 3.024408225596453 +2.5579865250128635 2.3049236992012805 4.273696563482754 3.896879748187209 0.4539071558118693 +2.4559260165316124 3.6619622334856095 2.1340684188109904 3.2717800190024415 1.6579840294209414 +4.122514042939318 3.6580213948144245 4.467629161864346 4.398377254203339 0.4696267101398349 +3.7092805015906474 3.231188371759887 4.998941046339695 1.2400137445735626 3.7892092241744755 +2.017941970091657 2.7723760611204993 1.1195788570552332 4.47696408573629 3.441105399645914 +4.615839930039632 2.0321371273150888 4.470888927905029 2.408412199784644 3.3059537847412246 +4.464518843812867 2.759848700904725 2.4860563350052978 3.5485539381013393 2.008681520975214 +1.4291557898619023 4.901078352256793 1.1720188855168354 4.116550641633832 4.552418427830218 +1.467930595881664 1.390548022015635 1.9279041600711229 4.883268673899871 2.956377423864613 +4.86801896015171 4.631172691666659 2.2564796800606426 3.7034743693615253 1.466250246636041 +3.6922374951803603 4.542449130404378 2.4865884692884674 2.9496945961336896 0.9681565521091523 +3.1124937214252366 2.469389239235601 2.299956176976064 2.576320616147067 0.6999719124727094 +4.19731096198384 4.614220383681228 3.5071957532108318 3.8810555384675745 0.5599862542351088 +2.64826122766878 4.159264573929593 1.0242619465982692 2.9692269155121753 2.4629291184915667 +1.9313082789704215 1.7372041814566046 2.380520950667082 2.7873060503056344 0.45072221817833674 +1.133154012559526 2.0847173225365645 4.0849277468206635 1.8477691725209642 2.431121391345385 +3.09478129338078 4.705675208559519 1.8639746020405084 1.0070286213479132 1.8246467109512134 +3.9100781871139394 1.7396351533176162 3.4399182070697565 1.2316286367378142 3.096347168744458 +3.7198943599011174 4.192604369813591 1.1862150692218343 4.401023282640641 3.2493763405515943 +3.350695667638708 1.9703909625591116 3.4781812813604898 2.951137604275426 1.4775033388863175 +1.629120612703252 2.0623910293106915 4.808150665091098 1.0023880781692838 3.8303462143677045 +1.931265265518232 1.479744520491037 1.4005446840393057 3.9984454931906908 2.636846525184834 +3.047604663650605 1.79970647090164 1.1209475170365844 3.437695170443983 2.6314576928073197 +4.766506701040342 3.800840956959813 4.0906124637880374 2.841153306142697 1.579132203431494 +3.5185508989904473 1.1816005682967767 1.7268483848846627 2.4023203735978695 2.432611612170227 +2.1848577999393854 2.0273841268690336 4.116616215378913 2.0381918318638776 2.0843814132015583 +2.8590147579288776 3.5689048152769836 1.8578833398418881 2.754425569577357 1.143561044816036 +4.029896650887924 4.9916558638917845 1.9421335059068463 3.562276460194238 1.8841029632493236 +1.9181275595985547 4.85581943182609 4.2059475488000615 4.258648913130755 2.938164558011351 +3.323818054015839 2.993876046249159 1.726899334637006 2.2245976645651298 0.5971309371505981 +4.91026191018099 1.4032430702590615 3.550094712607466 3.2411283961069017 3.5206024098581876 +2.163404287215289 4.40724910830459 3.4031975479088383 3.036865706368782 2.273551978569086 +1.0474810519830138 3.999173680965841 3.346218591786628 4.368766452708758 3.123794728190055 +1.0149971341437953 3.5059918576366673 4.076983276188749 2.385911591687127 3.010777001804099 +1.0396204568234055 4.197759018890525 1.04218212898349 1.7416310365518313 3.2346665904717167 +3.745410823845674 3.634718378269116 3.4027314164683653 2.9541062482229403 0.4620793861350614 +1.1892540310119646 4.434170149680359 3.1637108810265517 1.7538818561607203 3.5379511721543158 +1.874103532389507 2.9347716332802976 4.506043924961778 3.405503270852895 1.5284654237481738 +2.3440352395439468 3.770044802945082 2.1020549864424662 2.186625746895505 1.4285151341288274 +3.6166954667003437 3.387469450588915 3.0666548719448996 4.278573871514162 1.2334067569051494 +2.9560061787223915 1.9365733915376278 2.5946523696490855 1.2308095717823808 1.702736146582957 +2.3052837419822736 2.669286885159632 3.500989876090512 1.5815593251804718 1.953640685492042 +4.161926375129637 3.8617904395535487 4.3334765729629865 2.544424687081898 1.814052984396766 +4.638047270088144 4.626539549146839 1.3932854237966361 2.3648503336410323 0.9716330591752282 +2.248743491969467 3.692589131546557 2.882624365990953 3.9134649401384736 1.7740694801034615 +2.4233885501937653 2.936023688213232 2.98768529992707 1.7069223613559674 1.3795464796626187 +4.511838528527036 3.6302778036656367 4.548431793403255 2.462140402638509 2.264897586823134 +1.171627500851752 2.4608810190580823 2.277352073168399 3.086282039828013 1.5220191605782514 +2.246352684450794 1.3723765077826098 3.4705812659435966 4.232223646018902 1.1592814466342127 +4.650106105752942 3.7622150714003135 4.57201650981112 2.8296326307759387 1.955569500377183 +1.072210598781274 3.7072843739777945 3.321121600471038 1.6467825163432281 3.122022608721211 +1.942113353172902 1.1576938710088736 3.2869369813039366 2.8975933169825265 0.875729646035639 +3.531679829312907 3.77398640600886 4.9513212729076255 4.252106928689633 0.7400089028317897 +1.508990757165527 1.2402984166766413 3.1832394471394907 1.0984343692342668 2.102048473917003 +4.1910345246093375 2.6867580973752014 3.770523393488195 2.933913089936459 1.721268244504971 +2.779107313021621 3.1754263738219057 3.798609345981858 2.497731226012643 1.3599090708456427 +3.512647385657292 2.3228778998438444 2.2842472582039255 1.0748448113030058 1.6965275441155465 +2.171640029212972 1.0875837761748528 4.5152370346744926 3.4512154773101167 1.5189864496720036 +3.2469059660352677 4.524503074931426 3.3572770324628505 1.385009789226621 2.34991328593258 +2.9636332229036566 2.4562545658569506 1.0100186660717552 4.353050695137888 3.3813157570668473 +1.6660420303019525 4.056187744791461 1.9725515154391768 2.208990170587247 2.401811769090324 +1.4138970483401683 1.872429491744827 3.8660168710501233 4.233991827434176 0.5879265006618531 +4.753309233398554 3.867355426896716 2.647378031057689 3.2305324767090946 1.0606522779582823 +1.2066511086101226 1.0428572524233348 3.9254936197258288 2.414856839151204 1.5194906745845482 +2.9260605547364116 2.740559470435235 4.179642983658385 3.631715955692048 0.5784761708600759 +1.2226275274685605 1.5268875847564511 1.2818931997792644 4.87372603890068 3.6046965651288647 +4.476973000987196 3.999668099795439 4.4306788834275235 3.3642735087487177 1.1683494305410165 +4.006606087973092 3.3738512965797685 4.8879824212130405 1.9154088196855708 3.0391729866082318 +3.6774810961662068 2.2802883308361426 3.3812679997977293 1.0747177421615084 2.696724256295476 +2.0037711834115766 2.8073646303096296 2.106822082759864 4.9753294267287576 2.9789422301046677 +3.5465635121029586 1.346569471439854 3.561098917716974 2.93849458676276 2.286396713581464 +2.5439400176497142 2.988380224903187 1.209084530387424 4.034224773023318 2.8598853977710905 +3.1767222655959353 2.6524961079523806 1.3238451522243038 3.2465864748588817 1.9929242981418767 +4.296353170329181 4.474810314595384 4.9489364976945005 4.326788293078316 0.6472366961527988 +2.8445948403194388 1.269463987169234 2.01077075534437 4.274115459678489 2.7574927842485812 +4.461709895639376 3.727288798552837 2.8191324893966496 2.811841044733831 0.7344572914819939 +3.723975914990553 2.980629684231918 1.4803801480310885 2.6778001092394317 1.4093892940856545 +3.7691587699580955 2.630506772814919 2.934683580721739 1.5819866254663753 1.768139537297686 +3.678498731861489 4.076004664549966 3.9910366033811044 3.70384124411979 0.4903999805299464 +4.759329468919495 4.408648121939562 4.553011931943923 3.4464252269445845 1.160823648450079 +4.783466956721106 1.2409671962694766 1.2904221052416274 3.2356259054133027 4.041425785165698 +4.254354280122307 3.839041393964249 2.948174346208972 3.1119679847997257 0.44644501279747123 +2.055109787607421 2.399593634032998 2.847622799111121 4.36526364144038 1.5562463965433049 +4.391150488907369 1.5568691176282043 3.224465659134288 4.1687999930774655 2.9874601630555695 +3.4793066674617084 2.3624890387904 4.90733333984393 4.000507561603589 1.438615517708677 +3.195161018383834 4.711435676053078 2.3546960134550265 2.7085388842219524 1.5570143270640007 +3.389844021692925 4.953722491222246 2.1082318193991045 3.8213406220731967 2.319581349566519 +2.23215150162556 3.2140345548734373 1.089586825398793 3.615262820905983 2.709821685007449 +2.7990582796334684 3.472016714175549 2.4847957084465135 3.6073966898875343 1.3088567599831813 +3.1399790997053594 4.8667256096691975 1.2687795022612325 2.8380644412429987 2.3333042513541398 +3.027490381531261 2.5119605651662535 1.7139879450197548 2.9703484494657633 1.358017933862866 +2.7822545023206025 3.398319917957925 1.6745151113082026 4.999826612064863 3.3818978656087326 +2.4147074162516726 4.33123412909573 3.413838808391086 4.765012335331573 2.344940199866436 +2.07374114883485 3.032069064631279 3.227324965281549 3.0269747470642447 0.979046783424801 +3.8778497557000953 1.8516812902393474 1.3246183058809398 4.1125633211720825 3.4464468744947006 +4.196449138895717 1.69859693208703 1.9772924394189033 4.756416187917641 3.736682279312586 +3.009616990962981 1.274327649315583 4.578330918775805 3.654397748606681 1.9659302129459801 +2.898422883038782 4.867809050047264 4.474261538270968 2.0038403730239254 3.1593452816216394 +3.564391041186879 1.8025195023339982 2.7431763746222444 3.4438714993153194 1.8960920276158701 +1.3361435760971183 2.0588708407465295 4.001456791590756 3.9313789756276227 0.7261167945708065 +3.6396759772509157 3.1013023593062727 3.5765939466128693 4.881215220610323 1.411340788422677 +4.082487417012407 1.2924932884861233 2.958843607650638 1.7078366040819972 3.0576274724349477 +3.87981400586392 2.9910201859836283 1.592954327967559 3.2144420514321643 1.849101644475995 +1.4787198179917782 2.5334998139537532 4.318445640354893 4.5680255097560565 1.0839054161188817 +2.828410983057263 4.642134032895848 2.477733483437655 3.533688568356851 2.0987216211023525 +3.8158865315636157 1.201264460057737 3.053477867734342 3.9050962205835518 2.749818611420632 +4.951032477150822 2.064734619731932 3.5760958731860755 1.9508787881431795 3.3124078697008614 +1.277194670981841 4.42727360596632 4.991814269228602 4.6588882863638705 3.1676232425431214 +3.045100837027833 3.7260702087360733 4.666637534160105 2.941958106536375 1.8542487463318489 +3.118052205961979 4.779563670074532 3.4459999497706177 1.1897976927938778 2.801975904565272 +1.4670660175461085 4.567933118749528 2.5848548665464515 3.2330051740549632 3.167881879181904 +1.3819460732947797 3.95845272920805 3.052264650731719 3.9355808018387117 2.7237169402806622 +3.5921538141322116 4.427433339619519 2.302685294246659 3.398833082763034 1.3781262133664105 +1.7562334206036465 4.959827273103781 4.6409264477146515 4.264217581640237 3.2256663097034273 +1.3316336836285445 3.5074992509712177 1.275274848465986 3.635862555240345 3.210415127132577 +2.2448483231959933 3.2945516067268263 1.893767058296548 2.453061180808236 1.1894061118606762 +3.3660605068367415 3.0023971138625623 3.579074305980512 3.070670461841847 0.6250804205256024 +2.9392120070738823 4.879518343895018 4.948638252143262 4.024162806218405 2.1492890756774012 +2.6239919016359785 2.5235914938353234 2.6422736959085746 3.7547701185448625 1.1170176955917377 +2.795295083449592 1.6808588146895391 3.0476155145411914 1.8050742516732372 1.6690946609037245 +1.1879409663630072 2.091815633026742 1.272053700319797 4.310667865214095 3.170199592475645 +2.7518303349237314 3.0730519568746733 4.230322418020828 2.1953182870094654 2.060200267848275 +1.527367242025354 3.522783405285594 2.779099113081146 1.469253712702403 2.3869186491151235 +1.5831483576325946 4.014406441349783 3.2549082414161687 3.276236050611337 2.431351629255883 +4.086092872213555 1.1980764073498218 3.3816331819440695 3.5837413155909763 2.8950797569342113 +3.001274092146248 4.55907330305639 1.0264776173543888 1.471255972174594 1.6200512851230453 +4.231630377942034 4.851206565671816 1.1822931350331816 4.115188681546536 2.9976242158015136 +4.416594401317036 1.8275073810212445 2.0338587779939656 2.929992925635221 2.739786124724494 +3.7376412621742077 2.099984182850001 1.0323545262890659 1.1073608564272241 1.6393738618818725 +3.302764574412957 4.34060982454228 2.4520947774027393 3.1182169706050855 1.2332240426997447 +3.30116484958075 2.791686377229922 2.4417625386829425 3.487896781714744 1.1636000894777614 +4.396033752372713 1.8849185600501577 4.137672052436686 1.6277097345310918 3.5504380499340034 +1.7957351557490626 1.1345606903653964 3.596348274665492 4.374444122784366 1.0210704297624171 +1.3165334665283557 4.847631459443543 3.3402900443649908 2.0658830799789967 3.7540333171730356 +4.701440036006853 1.8074818002849082 4.407895749197374 2.5777059197449663 3.424118730700486 +4.208147679941673 2.3882301227878373 3.114514549467944 4.1653025209988 2.101488823655914 +3.806403140817241 1.3796472868339311 4.545719685392093 2.7656538915568203 3.0096142950924234 +4.003758641059331 4.960302886431627 4.316403064179225 1.2825395487144755 3.1810854631435133 +1.5079046433662184 2.403071100954234 1.0934777948350405 4.10020479746813 3.1371532087473257 +3.515250849491259 1.9698682151012767 1.7087108024005824 3.8684053807115197 2.6556521154435457 +2.529546273319489 4.084580554529225 4.1070821517811655 3.2327761113685827 1.7839682362753573 +1.4208640923680038 3.697921311486839 3.2596450922400626 1.8164195764425313 2.6959023477474573 +1.1923605627680534 3.3580893886933065 1.7544436740728457 4.372157737925125 3.3974708633825825 +1.2449868684484318 3.132359598008502 3.4030759170896703 3.9724185284326037 1.9713768866905739 +4.4491596017978186 2.993829238207454 4.687590330049991 4.853303743619353 1.464734584361574 +3.5609574191657005 4.777857984062453 3.423539770760024 3.727136771232944 1.2542001927691564 +4.389317247727316 4.463173073586435 1.091080802718683 4.215879070643899 3.125670951690495 +3.3943978878074077 1.3757428776891039 4.18069958237307 3.479010265848902 2.1371326460470077 +4.050297005286992 2.621657392203341 2.777141540714559 1.4318985191834215 1.9623174898700846 +4.161601988007892 4.50975080574086 2.6609216435461454 2.362719568914387 0.4584016542329975 +1.0982517167526398 4.852434247710933 2.729490913625178 4.4863836047975685 4.144943715425745 +3.1065670028323313 3.9038763469366455 4.657033271795679 2.0284123728102905 2.7468800521280143 +1.609063930214163 4.256848630373641 4.253310185571635 4.387955481837336 2.6512059848689797 +2.589236500546319 2.957322093710171 2.8669938097878216 4.969767840069361 2.1347472043127853 +4.221916708630197 3.0982247323276235 2.727759168926909 4.2319874641714215 1.8776012414304044 +2.080539908912666 3.4469924828101313 3.243020162865656 1.4019130794722323 2.292786062682789 +2.147356555315346 4.929226001730521 2.3851702336621403 4.884492032473329 3.7397068161703624 +1.9754947483225287 4.628525789449075 3.2404752434835666 3.2234475201052386 2.65308568435783 +4.972327954599411 3.5194672651406362 2.6894209048380273 2.137310330487394 1.5542297993811638 +1.5206339246119693 4.616746819487156 4.616551650887657 1.689740973485379 4.260532337533467 +3.759993780318428 3.0704045143695065 4.248106271679601 3.9171570384709673 0.7648926399654759 +1.752253074519659 2.056243420220931 4.641800587645715 2.4004601067803817 2.2618614638048067 +2.662792896387515 3.9311962533376263 2.769085922327375 3.4132220932185886 1.4225886554351215 +2.4606257250649968 1.2856933851905628 4.038624663777673 3.9151605974161887 1.1814014469964582 +3.5141573218925037 3.3532370855249507 1.5084785477116336 4.331413638476468 2.827517966192974 +4.875601641657207 4.647431186593585 4.767695779341825 4.556793680163668 0.3107112035342356 +1.4542284372336107 2.9247105577265797 4.312074520812914 3.6376637330216828 1.6177600493826911 +2.4389649813975356 3.062069939818237 4.468437992640856 4.2223621942096115 0.6699351369961415 +4.895899549388764 4.153708603009067 1.7513631235701421 3.631577765060706 2.021399143900947 +3.7881833028771763 2.3284052579984365 2.8608768777694658 4.297099912184381 2.0478497368933057 +1.7786394072497567 1.8596170179581129 1.8834496096591646 3.9956685225544724 2.1137705905392545 +3.5940696551987217 2.4557621842009163 1.1432489834450674 2.1627170554574366 1.5280900000922841 +3.6875051376685235 3.27224452115077 4.416196205529078 3.1571330790652343 1.3257757487794135 +4.735163182488625 3.644138990243836 4.887045402715123 4.279360277496909 1.24884546661101 +1.4507088780795523 2.0432112556713036 4.536025255626843 4.180685405532486 0.6908874557530756 +1.0241247474962805 3.1817126426206173 1.7943972085680286 4.233525217023345 3.2564598825746747 +4.8878650657754 1.0068264933142261 1.4853541737070524 3.9250551141680887 4.58416852655069 +4.81625949819988 2.4842690537026457 2.488410256585302 2.2369420405663965 2.345509688083624 +2.1268210540936523 1.6317575228346821 3.454895033420338 3.813506544527446 0.6113019841953115 +2.617346977614989 3.2119303941574797 3.4385351481013107 4.207394296050592 0.9719433258233917 +4.795299341982211 4.072770728059333 4.3687529922323 2.4069036359552176 2.090669867449693 +1.4356216791490297 3.9733477860870625 2.6565890688941334 4.734348025763568 3.2798073231039084 +3.4904037380221475 2.0819412090407767 3.4509749218529957 2.7284275089000296 1.5829849839810934 +1.7707599044441729 1.5748477084501067 3.6284400055246038 2.3383658271391115 1.3048651172731305 +2.2434525700441403 1.6622803631064005 1.6114406918593018 4.455486000348534 2.902818432292398 +2.0718140415389183 3.6766929094118463 4.911772176749507 2.7203053761610123 2.716277400897534 +3.625447127222259 2.5326183195534924 2.1460757289423373 1.5277293174004232 1.2556381196576902 +3.7275074276053273 4.7733752287217595 4.400908433380623 1.3334529173235703 3.2408521719450523 +2.2721136754392273 4.525442206645334 1.866094591466703 1.535402049880608 2.2774650439925836 +4.114525927847102 4.771129571965547 2.479056581749026 4.492990513197 2.118267741742558 +3.222664099393101 4.871571430680759 4.674060114715397 3.031935073092153 2.3271162496747615 +3.1283860205801877 2.601643922856027 2.349334583784299 3.4092265078371033 1.1835658529153352 +3.713703696440467 4.0085903086219306 4.234154043008227 2.3143552474146025 1.94231447752587 +4.814902171717311 2.6393262332615373 3.78443187822434 2.915913358148686 2.3425317679173796 +4.3132100731234875 2.0990769964414353 4.385377294583487 4.958684430653991 2.287152455243614 +2.059651569208891 2.3800498609174263 2.583520831555763 2.6736769791805535 0.33284109764914976 +1.986417497090971 3.8784967702837894 3.6241649623987295 1.2359307888190663 3.0469044034724164 +4.2280732497964415 3.6219396126733416 3.9236177753702184 1.11111623443405 2.877075408087247 +2.920665529275583 4.924618799447105 3.2570948857970756 4.973000576608556 2.638211714171242 +2.9150843629230607 2.1531040489216124 3.75585288850884 3.91904816215949 0.7792603520439471 +3.1152320743268604 1.6155836131907466 1.931603587480784 3.147557798292803 1.9306709066486172 +3.4387512200760653 3.191157527948158 1.4590494986815652 2.6365477897186693 1.203247631112079 +1.5978172104891564 4.343951040625722 2.1254917585918403 4.928757125933014 3.9242257494638317 +2.9386178287673883 1.1607058908423276 2.1955579246967147 2.0274765762200966 1.785839354119559 +1.670467824617087 2.644335512203565 4.005101238395712 2.794168253471317 1.5539552654124056 +1.7336719961047065 4.288854194799686 2.972600047476232 2.7911697852421686 2.5616153123726506 +3.697649266851076 1.5622167785523966 2.450716382951769 1.4209496010670817 2.3707575871764357 +2.092766810751461 1.0094789701045235 1.0914234616131653 1.5727863102175914 1.1854209116217214 +3.3389540830986566 4.406645787878205 3.355816211566101 3.5892774650872243 1.092917990221916 +1.7850469740862303 2.623153004902041 1.9764632637194564 2.7058754699138095 1.1110643030154221 +2.4680939999952702 2.046209663904229 3.9810525710574236 4.7408177909949565 0.8690394596712546 +4.228406080316631 1.2396405408338174 3.335807275370525 3.0460714190960605 3.0027764346369663 +2.442932656489966 3.998898886868649 2.0935188564676555 2.12248614457221 1.5562358477618297 +1.21508756285399 1.8509328960105709 1.58577887418694 1.9874342263270246 0.7520813184754548 +3.9298544453499287 1.5567162719799699 1.903172198864215 3.8683794078388134 3.081204985733899 +1.2977232684115676 1.7409785535751618 4.091781642483191 2.1321609630740035 2.0091262914494914 +1.5040613683169308 2.3117913878943788 1.0509938167780377 1.8432102559512678 1.1313861723668432 +4.887296645429458 3.3877326343977323 3.850033111743201 4.909908940495899 1.836308524065544 +4.909928306303998 2.271093845780376 1.4704561645031138 1.036181573131246 2.6743301461783284 +1.4417208553064356 3.472171146678659 1.1288839442811236 1.1949959046038905 2.031526317090494 +3.233555565201135 1.8811622956730294 4.075591683699949 1.6240138270395956 2.7998574147145945 +1.4372541195746278 2.8108000115276353 1.5906487544000365 2.145152878258236 1.4812505327177885 +3.8434395615951806 4.408083238579025 2.841114409251483 1.2558855016945691 1.682787322067742 +2.6855399261347004 4.254841412332732 3.6407782787205774 3.1824824823303977 1.6348523454955377 +3.566636337030703 3.9178693952616177 3.274712211709729 1.2391573340109021 2.065635089099168 +4.987760339937413 1.3972439788158568 4.110672643032423 2.71912194389064 3.850742926730317 +4.5325519102886025 4.104293030429157 3.2113757297420396 2.37114745636163 0.9430743446655153 +4.102346593631909 1.2280482746418167 3.471941974256453 3.185505489805502 2.8885353877309328 +3.436239132544539 1.2673165964526052 2.6639145715534647 4.549627374639181 2.874045536049987 +3.5438208998586807 3.936602639185785 1.4288734374523386 3.3804905029565364 1.9907502769348147 +3.147468236885771 3.316224807239679 4.491436599283144 1.818953018987851 2.6778064282142506 +1.6905438676528561 4.784452823719893 2.4549289263758816 4.128901739237092 3.5177347265861725 +4.129800526603358 2.877261641461288 1.272984482196866 4.417505698023584 3.384799452785538 +4.835173479440066 3.6535220644240085 1.380627872166249 1.7952522769073815 1.2522833000628846 +4.3640394461358145 2.4860008087353562 3.3819711891051134 3.1709813282776107 1.8898533924463503 +3.682294348203724 1.6472212754088673 4.388759268496077 1.8321234891670262 3.2677069819309326 +1.1625970160935286 1.519992953348479 1.0208353272203579 3.5263615378941275 2.530887877472964 +3.6001153183561336 3.8089987085644976 3.3380336992714126 2.1065733289255295 1.249050405082741 +1.4966800744132236 1.8376416015392256 3.2801665360858188 3.9654318929790566 0.7654040582189986 +3.264713147370438 3.814107003788694 3.3404443224222966 2.050226923509608 1.4023175624398163 +4.413029609437363 4.5391683685629935 4.233520801553634 4.728445409708337 0.5107458803660004 +2.0725795159142266 4.708542361430787 1.0726702811198576 1.2729830949775285 2.643563002150571 +1.8614433914688515 3.965444182290795 1.8975666758978122 3.5574252558263613 2.6799160123298233 +1.4979257242941668 2.3816817989877603 1.0769345010187883 3.917497649505205 2.974865341506552 +1.1168012291495448 4.93031686146122 3.5103711264818114 1.4591725365165247 4.330163638173631 +1.1757991271161257 3.56760282654119 3.615816840506671 4.920736492726444 2.72461744752044 +1.2233180684869631 1.5796702204140392 3.0550408342056543 4.421260414559308 1.4119287510086234 +1.3032522431586564 4.0498764665569515 3.862987816740643 3.1870862397688704 2.828566344689694 +2.5013427743073735 1.2112676490730303 4.8781335878828695 3.707770205768121 1.7418508187969137 +1.286457698523583 4.051208788285004 1.8083123073710614 4.100268642748148 3.591227148428811 +4.280558513975752 3.4574557402020045 1.602479745918413 2.2726905244171807 1.0614521486199746 +4.942656699358523 4.463777720616097 3.846523590393532 2.630078612864144 1.3073115388605205 +2.3119709732567797 2.0446965885989714 2.0188714598030644 4.168544554772435 2.166224829497022 +2.441453456582697 1.223085970993655 4.651174040992963 3.5462420025304584 1.6447778389683727 +4.614295439747378 3.2216639828922315 4.6087986624921005 1.2330276941495613 3.6517464322330504 +4.892844998451777 2.209866861956784 3.2599069854574765 2.115781817591853 2.91674374614118 +1.816275258979212 3.9116996455358737 2.3110040703437753 3.793519834064997 2.5668378112880994 +2.6916388367661743 4.041342475891998 4.4595622329450055 2.7354857877288814 2.1895523520616167 +1.337280323073998 3.610268869676492 3.3818032223711914 1.4265980890636167 2.998216811089286 +4.151598202305539 3.306515872534029 3.9734307349260867 3.1566292789029515 1.1752994353157655 +2.1746541962329555 2.1282206803129617 4.747258842122481 2.465359321375116 2.2823719009372123 +4.976878224007091 4.639834144432891 1.3827207347285229 2.2734873502207087 0.9523990103162768 +4.267555504046651 3.9507943771626963 1.237818253253205 1.6894933214790302 0.5516774227404969 +4.199946510152849 2.4714008504180303 2.090571170500632 2.717682981378648 1.8387874594772455 +4.061611178177877 2.0184766421758975 2.040114380477207 1.1808047147715386 2.2164863712144074 +1.523166593474353 1.6316307569505186 4.0764104606686065 2.761158377912923 1.3197168317301053 +3.1639082144367014 2.8485764820764063 2.7407967902697346 4.032039298942948 1.3291882175365677 +3.299995042262404 3.1084573480690794 2.389856836904984 3.6684362858198067 1.2928465088649261 +1.2912848475131882 3.236949285739233 3.7911699605765623 3.1051660674618464 2.063058760080773 +2.245459513936894 2.893733053064944 2.228308431261476 3.7479696962367215 1.6521588730505825 +1.5782380644737204 2.7319859039590373 3.615193187668999 1.320176870495572 2.5687027802393403 +1.6962428405376078 4.804654030484745 2.1237679305118027 3.739035945625489 3.503043089434939 +4.254663454916035 4.117117101421343 1.5936791208931087 2.731130591043814 1.1457376865180302 +4.423919664785156 2.9971403969432995 2.8712516944051343 1.7300880609046687 1.8270067097762204 +4.614464292386268 3.692432310670062 3.7435580421446972 4.455527159079997 1.1649218852683407 +4.87693847316684 2.302646918582533 3.3040526663013337 4.0561218130888355 2.6818995151857887 +1.6519296852263587 3.9015292583753456 2.662980331085785 1.1092674484715292 2.7339937748856715 +2.0391257191349066 1.0053324170141704 3.5682108308526597 3.184772645970238 1.1026120954966991 +4.294340782101622 1.478204166619523 2.7410031450432935 1.5947671734687452 3.040474032053295 +1.7326419798990744 2.074355770610722 2.572857442456244 1.724284307447041 0.9147921513774977 +2.3576138717672794 4.160339997155619 2.5078233324301533 3.948947163938745 2.3079556713463236 +2.051239231156701 4.029280097625859 4.979829111952112 4.363045236777417 2.071972011900154 +1.9733374287242138 3.7667405085251056 4.50201081569892 1.7322755157970167 3.2996557757078255 +1.371981421361724 3.496320102338348 3.0228888458980623 2.2946043153125166 2.24570995210506 +3.2602922461325314 4.607640785199542 4.749523789243808 3.1701237802240274 2.076018418564173 +3.375312303120309 3.0646048070178518 4.257164837750965 4.493708610015398 0.3905023742966826 +3.0425238341337018 1.2044820705143295 1.3699622202304087 4.258443135108795 3.4236996831535462 +3.621031702483627 2.169761935913142 1.4796530738102027 1.3406661640151345 1.4579099068378447 +1.9646854323024758 4.5395572372487205 3.08742373853063 4.547865262769301 2.960211860260631 +2.440931263591937 3.9883934825067113 2.9510295464647767 3.9047530994479525 1.8177535406329124 +3.6361088417240386 4.9707529856708605 3.9306915184477744 1.7489033087186834 2.557630697165722 +3.2323104155201725 4.78586884055883 1.268561984629109 1.1893679902385235 1.5555756068915876 +3.0308756145478863 3.25048101813112 4.757753631642608 1.098587504139764 3.6657500299320893 +4.45207218133959 4.235973283777135 3.428238311876133 4.390422081601878 0.9861522905978339 +3.2250652978057595 3.8091478114830712 1.5929987118679434 2.239400859005413 0.871199241624749 +3.314134202387414 4.056059414622327 1.374019630443462 3.493181028223553 2.245283512252092 +2.4518038652565948 1.233359344652889 3.260483792543301 4.645851982397581 1.8449531352447186 +2.7806167729485987 4.550016987229918 2.3338543918741266 3.9225229632299747 2.3779497362039863 +4.463584729642738 1.5217174618719742 3.554841635029016 2.616708267144144 3.087827268018733 +4.971640013364748 2.4176523063914575 2.094827011190047 4.5981343089014715 3.5762271508037577 +1.5633136639794283 3.0723833322726044 3.5709413548587587 4.414984940978995 1.7290751397880848 +4.880261023992956 4.061402418745532 3.556349543064325 2.5551531825412677 1.293415466009423 +1.4107716125507141 2.282664725573855 1.8232174921574775 1.6216772767771324 0.8948832655451431 +4.067592506803813 2.781464481461706 1.680463768666613 3.613120526950467 2.3214838881436677 +2.4925582322558757 3.5002771522248195 2.478547555500477 4.249237592532667 2.0373611925499207 +2.785252187623894 1.9921342887221152 2.7220396425832925 2.045222299800967 1.042649373974444 +4.848408035109374 1.211475306530735 1.6791955999359178 3.865375318272246 4.243425671915507 +2.4920130749929212 4.808699411283022 4.60273888610244 2.1762630324097127 3.3548205092533783 +2.1618865378846084 3.5360683496546206 3.708395609031288 4.619477683667321 1.6487711176881439 +2.092557968911835 4.342008883716485 4.662778628696673 4.963858345128182 2.2695106110705794 +4.414938094739556 4.753858265519191 4.292852515123549 1.7546229640071553 2.5607569459677006 +3.064810304532945 1.911733181827958 2.6536993568365417 3.5439949143862886 1.45678173749482 +2.381615971587095 2.8324945432275674 4.2437946615195035 2.409349775099094 1.889041960274716 +1.9606380251783544 3.426607410129356 3.6306927889810057 3.9477012560361646 1.4998535281147556 +1.8223330852381454 3.3414998049321927 3.9026741530483124 4.9791795922603495 1.8619160783663353 +1.7027203242384297 1.1699000615385442 4.806628710638044 2.9614268496176033 1.920590362429447 +4.40965391556046 1.8510991826175878 1.851831437778079 3.3163287482864914 2.9480425190201625 +3.1635426271283498 3.852264760291142 2.3591691357201174 3.317303047943433 1.1799825297268869 +2.8222726425531097 4.359309700817045 2.5959679811859604 2.8276945552970605 1.5544066789697986 +4.449423514352858 1.6008716422259535 4.7659047659736515 3.6340281560410177 3.065190439158762 +2.528535160808507 4.669260490879823 3.8714473851790516 3.001178360225044 2.3108598214957445 +4.29030836468748 3.0123885207877454 1.8652443090160529 4.453080563873089 2.8861697125056955 +2.384712252673925 2.7726762598975863 4.593001194505147 2.060541464504641 2.5620047531133263 +1.7604746029039169 4.985027639186928 4.135586784308633 1.600669652362214 4.10165175869886 +4.3719407635336704 2.660056958317023 3.721864979503434 3.8277331122633482 1.7151542857997057 +2.844906073132117 1.6000727623506465 1.434977771595534 2.8087121424003847 1.8538489941636984 +2.532264351057527 3.8339473259475607 3.083198958850252 4.354565332962096 1.8195469283150862 +3.7351667236344803 2.1240880318280646 3.642688584049505 2.4955906815521156 1.977728027082233 +1.973341910539785 3.7225867899970844 4.6676533164998215 4.705895425403597 1.7496628552955538 +2.957606517522942 4.378336166397512 2.9265081811586504 1.439551390829155 2.056578039243406 +1.1131260306720665 2.876229242270917 1.764278611815663 3.7524385930741775 2.65731312528803 +1.0910856162645253 1.097671819326774 1.8836851034016995 4.064793407804933 2.18111824842385 +4.232536249471357 3.21650232061051 2.651595390344042 1.379636666694004 1.6279446978524308 +2.505838269010554 4.279616501426414 2.324800508299239 1.1726198226743114 2.1151381870032653 +3.0953150759136805 4.744448445161348 1.238358928274987 1.6453690087473607 1.6986165179852373 +2.3739913110648154 3.9695775758637257 4.9007336267762245 3.683490297511109 2.006882371006174 +3.486653813951827 2.352144366833518 4.311116460509204 1.3012812242781506 3.21655403108027 +4.532058741842747 2.0075581885771885 3.7895824657283934 4.435679074380529 2.605867201365009 +3.5544969012594785 1.3025065310646409 4.934736408155913 3.91290285095378 2.472974817112913 +4.728395365140898 3.295356497399129 2.044538813022127 3.2596255467678747 1.878839047652438 +4.569478613716277 2.68290159217611 1.1508487430696328 2.7361930540427903 2.464242163939722 +3.0089303932412785 2.747862310508916 1.2366173994836491 2.666945525669073 1.4539584218190895 +4.9840003058838445 2.172340163926218 4.493790686411073 1.6497592459689474 3.9992433769522564 +2.27402312888796 2.5012718379678565 2.5995090438932342 4.66633884821473 2.0792853137100047 +1.6128148098732171 1.868292815337481 2.8708250664881914 1.4495586037216568 1.44404548732403 +2.080307016781756 4.690206531900428 4.407040593820949 2.6669967103952095 3.136770344680019 +1.664819827753043 3.746480904255548 3.8354725120364477 2.7037531680104774 2.369409527934785 +3.7329606224769196 2.857741359910775 2.5900475823642792 2.325423869614057 0.9143492040334144 +3.196314042676971 4.617209665524861 1.662508792020069 1.9612524584154252 1.451961483387088 +3.9106178824403894 2.1771167308046415 3.1844544519639078 3.214375640594662 1.7337593605375405 +4.23118969099868 3.7647511919587813 2.0247932093006433 2.165893673525577 0.48731326104579337 +4.546740936803118 1.9543041354714599 1.8206166954588028 2.0184634451099743 2.5999753662768144 +3.7529390479372644 1.4063935232178015 1.1573386631205662 1.4433308922504224 2.363909358394184 +1.9556765852270215 1.893796784283241 4.734145719439101 1.8600666046399033 2.874745183123155 +2.6686573772443936 4.9638438683300565 4.398735967987591 2.0798383352268277 3.2626932525270576 +4.133692022937607 2.429273877932362 2.200964425897851 3.863851407439436 2.3812253833695802 +3.048812905160807 2.9176643112428886 2.6842525971960027 2.680858936474302 0.1311924945251865 +1.5466651911135103 2.8546561964328676 3.272537731986014 4.766304054128881 1.9854919529337232 +3.0399504699867648 2.9769154586215625 4.499353408168791 2.1229415517602876 2.3772477203557734 +4.5927753161589004 2.9730398044928226 4.083595829843691 4.186353335588076 1.622991753749531 +4.5529946725600645 4.772881940092949 3.2841372839229983 3.012682362839541 0.3493396407559618 +2.1548515150569045 3.6579922565500134 3.518882989975806 1.430270047163388 2.573273423797013 +1.1683888056378775 4.117656570521447 1.4817939726708578 2.5719435130892014 3.144297436543759 +1.1531773737184192 2.064684038685891 3.9936083455419498 4.008632195329996 0.9116304713767398 +1.4341404141035539 3.568681891641368 1.273315968861911 4.361794115261336 3.7543261153123266 +4.386866326517029 3.9434451660693615 3.7076781603752726 2.6046890799296065 1.1887839320562557 +2.1344947740978726 1.6399182259932163 2.189015270542426 1.463784286210041 0.8778188552149229 +2.524163439995361 4.50840219041954 2.236464968138712 3.44050199051616 2.320971471160397 +4.088039952584227 3.58302161521554 3.4758269021534605 4.882563848747838 1.4946412138009264 +4.885223401048221 1.5236694000328947 1.6075339332888565 4.567467168801592 4.478978684972171 +1.047302748216389 2.0048076777472055 3.5009243194626736 1.4400461355457623 2.2724512269838666 +3.538208785422359 3.244617085908074 4.5068012832926865 3.494960808776375 1.053573553148085 +1.3484915698889055 3.5528925610159283 4.478025053672942 2.9045302744878705 2.708370275609389 +2.845231062621279 4.8519870645778695 2.7127930376219966 1.8483469973162787 2.1850255394363325 +2.0935012269520477 2.7284264865524683 4.0498697917197655 1.183121767743506 2.936217689179474 +3.947255083561026 3.3756468747125905 1.647343252974816 4.423207969103014 2.8341067140579588 +1.3552549093709643 3.6074087071933536 1.9885008513202225 1.729392451683605 2.2670099011270466 +4.450562898448069 3.540452852833005 1.5448065904380281 3.0629721748989507 1.770064133575682 +4.376408064961707 2.1453668241834505 1.014444646883765 3.9458990058329055 3.683879704422404 +1.132434070455556 4.626357548048046 2.7195074203824214 2.52701425093135 3.499222040333725 +3.2648712306733896 2.901433457569985 4.78757959141423 1.934926671115591 2.87571133784438 +4.1282892929051025 3.1498110679335944 3.224090760765035 2.937635160343716 1.01954717779813 +1.5766165808596422 2.01278672489894 1.1752268221885989 3.6459049212382717 2.508883150661857 +1.4717015064936954 1.808050386367833 3.1647843335770887 1.7787589462579332 1.4262527627618473 +4.732352488538792 1.6976201539338631 1.0719304149911135 4.979212266764355 4.947368170238922 +1.5705786356622355 3.413456450914599 4.501510512645682 4.570465044871045 1.8441673919315846 +2.8846780481608407 3.5493440697688916 3.035149264663423 2.805530505502888 0.7032109888495043 +3.978565134794859 1.5576797911764673 3.2957687496511987 1.5278469052671921 2.9977047044024343 +3.9044190066071685 4.520559046699435 3.345535134561425 1.0862022498787947 2.3418397965730353 +4.922487021238864 2.1161123258904637 4.578773714493487 4.378404334922603 2.8135185833687766 +1.3898350357559988 3.9808914938361695 4.1669345545215615 3.2930486569565285 2.734456094166078 +3.8544903236339705 2.4012047194115453 1.8005867885652087 2.689427103597047 1.7035481070595093 +3.95639365443573 1.2862839773596955 3.166299408833816 3.0349830008656316 2.673336807552829 +2.130500433199797 1.1460436159059997 2.1285987942093314 3.586539374412985 1.7591890064802018 +3.46027600235457 3.0115698414214043 1.9191261455751225 1.1747724802204171 0.8691372722340036 +3.962179479439067 2.36476223231142 1.907183067496383 2.397537471252561 1.6709845309589033 +3.9158157859268985 3.6925176587154374 2.8062497998707046 1.2552135297566767 1.567027620951648 +1.42866295512749 4.993500059131774 3.934254739599728 4.879518848590733 3.6880330548725038 +3.2571394322849807 2.258812273752943 4.355574447169149 4.60299897497496 1.0285309973076073 +4.693958785400272 2.4173813777951723 3.149387152704708 3.2711109929259665 2.2798292449427366 +1.3029301242756959 3.6360081774977835 3.8196131824176667 2.004670231127078 2.9558875348811835 +1.5602962498482387 3.270908635557243 4.979100790948441 3.1731044477653256 2.4875324170213013 +1.471474571452549 3.337946191608395 2.698319142702767 3.2880600008964453 1.95742447840784 +1.7107458951733365 2.4094260489432617 3.0184286561152787 3.2080852276321195 0.7239637921826539 +1.293032680577455 4.144614238397737 3.4846422957622862 1.7098618784791713 3.3587740189647137 +1.759339428242758 3.491603526933738 2.8441514957932332 3.8155508630447583 1.9860401905073162 +4.459002436006985 4.1982782458213155 2.0302576459720076 1.0523245801270331 1.0120919842686853 +1.5607443950063198 2.4897323319786824 3.423609633959944 1.4538648542719694 2.177823014881649 +2.091728092984751 3.3404896669494133 1.2363700386180563 1.1545851250436692 1.2514368704409629 +3.67790198221333 2.77979332561211 3.6897595927290014 2.2658008567695678 1.6835253608951772 +2.268754981649848 2.361276970662503 3.0517867632370534 4.874005237797353 1.8245658353371967 +2.0734622769128674 2.006183218239881 4.466748069746984 4.695049270821141 0.23800821445451334 +2.8833989383510388 2.6089563678749346 4.546182445945917 2.5242828134544344 2.040440356481591 +1.3699197811136532 3.4118681399229938 4.297164216216808 1.151961251728757 3.749913970729007 +1.4525084680503566 1.4220044990541654 2.1906760504482685 3.86370080344529 1.6733028166668653 +1.7859380047514781 3.5952838355719674 1.2257804332579192 1.9932934258960726 1.9654028923800486 +4.81748880694769 1.1973321353443565 1.8029242430718728 4.336844780186414 4.418855917017998 +1.1800085523318309 1.5337697253588383 2.7839538161865156 4.05495241263649 1.3193120933726221 +1.2172100733479683 1.0400040491910696 2.498351999264573 2.6540620221034974 0.23589740611120283 +1.6229314123930503 1.6051836545208076 3.861757844872413 4.909439394945538 1.0478318630739947 +2.356575392495692 4.0889857507700915 2.3124810600728805 4.0692944602597985 2.4673141211715937 +1.1020421237166729 4.152605804601524 2.9515315240980615 2.8534855498815337 3.05213888677986 +2.839402543299468 2.6334504164463812 2.96664700745245 2.3294584702872956 0.6696458097009038 +2.5175454930093437 1.6145084185299092 2.437087259590343 4.87936827511528 2.6038841212077575 +1.9854003750070692 4.626765137686555 2.496583977158701 1.8805708567885668 2.712246296705557 +3.1256080469718355 4.906531704341784 4.133594014655658 4.297966844744593 1.788493080962686 +4.036038724031441 1.3412717015122984 4.328284608081097 2.019677041617452 3.5484416581916456 +4.218762695365937 4.688104956244591 3.1534351623589165 2.187058935558952 1.0743207945352369 +4.491349649364134 1.417002171306164 2.7020243228881755 3.4128764265020237 3.155459258024675 +1.1140856498393403 1.8418096436832117 2.7739447974965503 3.130180260820854 0.8102381850702645 +3.293276947833785 3.658715178442533 1.254149539887246 4.673581720263671 3.438904118550607 +4.561151479733189 3.327176981657238 1.3620050876568452 4.387925078198982 3.267856308203333 +4.312952612010364 2.364909829580274 1.0831368842651226 2.2754614092994894 2.283967700116706 +1.2020450271983179 2.4536928561012266 3.757705430057066 2.046945586368621 2.119745628695641 +2.434267714934989 2.0632800861627385 1.3242525953656372 1.929402634808969 0.7098157443592832 +3.2884455717047465 2.0813358221563654 3.2811594319675885 3.0113934520456893 1.236886264527979 +1.4109990718318346 3.941809399102578 3.639079296217492 4.445213272782114 2.6560973063485718 +4.373909515305912 1.8207403253129542 4.027966942030931 1.5412100605587664 3.564075293856523 +2.1043586259821603 2.741929973772881 3.1121233374678385 2.530048376588216 0.8633125063421068 +3.9729874747807092 2.4479328165290206 2.822888978613804 4.366854326672282 2.1701660550889907 +1.3289696329606668 1.1705422257048324 3.2561355855408465 4.6274912437737 1.380476578844085 +4.273799158104796 4.953111505479146 4.3393016660922346 3.7705310519319806 0.8859826616968767 +4.006596743819642 2.1812941674249613 3.370154945911949 3.818007782881525 1.8794418477236157 +1.6124766197405895 3.102429038990275 1.5467583652400747 2.02494000909522 1.564805386029841 +1.388426600202246 3.5875455879232683 1.3736907862021424 1.7777553697615613 2.235932134444644 +3.815834259665044 4.519672918141566 2.3413317685553667 2.610458823905536 0.7535371451278855 +1.9069378543126883 1.9904552367674064 4.258253645670235 2.4485216063897326 1.8116581375001342 +3.111794776151702 4.5260345491232545 3.425358214136479 1.9658614281047626 2.032290580574426 +1.1340935260751932 4.147740223940641 4.716182285674585 4.60323833284119 3.015762383881885 +3.6981667127513136 1.7416898134335614 3.9521495730369316 3.5965587314267053 1.9885287788214367 +2.404073250624487 4.340426168588538 4.369562425962691 2.0663728886790156 3.0090105795029842 +4.734680668771915 3.4849785634356496 1.635819411232371 2.031837589855427 1.3109484161788432 +4.183500990646275 2.0437312008093085 2.8197754162380386 4.997041912379508 3.05272077804687 +4.461899070453956 2.5397394578280656 3.4450417508383997 2.9228854573324456 1.9918194625161163 +1.7998347583123824 1.8355700293999089 1.3558528249671884 1.0073963054420876 0.3502841069749611 +1.6724434859955108 1.5572825096197107 1.4269003050774578 4.204263984696366 2.7797501793049877 +3.3990766466061624 4.383924289032681 3.4605959048544097 1.9429050151354321 1.809229260079842 +3.3045490146722853 3.550028283649296 4.2843821586838775 1.0488627814353757 3.2448182864450237 +2.546281403532152 3.5509674719147033 2.376990632202365 4.578757470848613 2.4201593558615686 +4.725064665088894 2.6602548593493003 4.490143908616688 4.2475291114560125 2.0790145438836385 +3.0947184505524206 2.488788333068714 4.02384626433969 2.323020288902028 1.8055360162559189 +4.828754095747746 4.945724808140209 3.8174436807790513 4.385005707616502 0.5794901223191258 +2.0215467876928317 1.515086867110452 4.18854009782488 3.9082909170439515 0.5788274824891195 +4.792021399439561 3.943142915304254 3.1854076255342405 3.270271679791479 0.8531099510220422 +1.0620489377355682 3.2011512169442713 2.6911207444557097 1.5738768029713692 2.4132949645037867 +1.7878523080987763 4.082908136220576 2.317678963045237 3.039152218386695 2.4057857162201377 +1.9512932622700165 3.136586579450277 2.2996076762198827 1.1093903897893234 1.6797432651064002 +3.8597152756621362 4.856274696581989 3.152634169351565 1.216328628349808 2.1777074706071566 +2.1114289246174995 2.961621002383784 3.530476958394486 4.428517009255001 1.236649708707404 +4.969762835858882 4.072795814968215 3.6103368615954894 4.89075987759982 1.5633403137126298 +2.9047518531084893 3.6480761762882703 3.1322730750296617 2.985960145030891 0.7575873038241234 +1.0073910808816118 3.676738584651884 4.642118479918691 4.818348775920886 2.675158539809109 +2.9997131039056817 4.8632237872706945 2.7816502741185123 4.757366752451678 2.7159027356981587 +3.991269417555896 2.6830532391029926 4.604632844537798 2.8820214094997585 2.1630579570806083 +2.009883479764643 3.7311116879585735 4.803955639582733 1.337704382133364 3.8700806612332794 +1.8566970858969505 2.0250033095945486 1.8486438952142201 2.287024431520156 0.4695790450469719 +3.1245449855300547 4.444426924130013 2.5614453320444084 1.7946049079634774 1.5264771756718172 +3.3718819982026034 2.448267742448123 3.9224510614535864 1.5029029531767342 2.5898409877247284 +3.2300409526666027 1.1092002793588835 4.3294995877785505 2.5179050818233093 2.7892364215970566 +1.8715285166385156 2.997804086617793 1.924296197553137 3.2088599835896816 1.7083912841994622 +3.784560143704823 3.213062906455859 2.8659834307502003 4.539589516107524 1.7684926975049302 +4.250167378115707 4.940061374721499 3.6683553636507478 4.947644401172118 1.4534559395024904 +2.87073090799663 4.996779309421267 2.948707713540069 3.373088718042992 2.1679900927317832 +3.46708550399537 4.0545160039318855 2.5328862935757583 2.237900775477042 0.6573363280267057 +3.8057608673183063 3.8692092760616865 1.2917705005452937 3.3382181559243493 2.047431001713733 +3.2975565108044864 2.422240011343612 4.479084982231566 2.738563289328189 1.9482286153569541 +1.4220526137131886 3.9539259771043245 1.3140906847596558 3.194477595811982 3.15376563230473 +1.973662757466129 2.409931328885862 1.7455118874656605 3.6998992206424264 2.0024884804888154 +4.718550305716948 1.6910883799697602 1.7482060206116605 1.608581077840618 3.030679929734034 +2.019471977435189 1.9718139182113958 3.3891340073666654 1.4061783698646013 1.9835282581577192 +4.362858676581722 1.635661881070766 4.396237058280544 4.466606113466708 2.728104500449538 +3.355153865222613 4.647494555029343 2.368271412692233 1.1511975014178786 1.7752220604856144 +4.834522239812123 1.3278114230929483 3.46232684818438 1.0861168467950426 4.235964438330187 +3.903709051175005 1.1705530735515897 2.8144667547358844 1.8864772782908705 2.886400191659379 +1.276478921160351 2.039371221702749 2.7874851465543076 4.167684233716981 1.5770079842637292 +3.569145434878768 4.889372494117354 4.353872464879059 1.684524959227729 2.9779885147315026 +3.6456134584928264 1.53031652414884 2.2002434900967383 4.105197947940026 2.846635313295695 +3.3048862452970202 4.523092606552531 4.198694268552509 3.6079577421887543 1.353881967596772 +4.5377945386558185 3.782751334980465 2.727733312045515 3.744290274464343 1.266285235347288 +3.5850471244129225 2.3131655218366376 4.702895776479371 1.8000833688606521 3.169227458671467 +4.477285162840602 4.4681705989854485 3.733587957810042 3.5572157566424636 0.17660755538471842 +4.2143864106695474 4.5578657434707495 4.584102668375921 1.376823469819891 3.225618996340357 +4.337975961300348 1.8919124647968402 2.7862303368832952 2.5829497148746308 2.45449580162835 +1.317785969632923 3.0814775032898334 3.2778744776113933 2.161590231505358 2.0872705488262855 +4.403237800627458 4.143290463951956 1.0169659026406928 2.560649058748336 1.565416974577426 +2.3310245271804937 4.494486134076439 1.4150484164806145 1.936190112051253 2.2253437467894766 +3.9016791827094774 3.917586000805573 3.6690259537927474 1.221376747862466 2.4477008931144097 +1.128374286511281 1.1969886443771887 4.087564518670182 2.736573650881388 1.3527321445704135 +4.234974262028798 1.3015390574704213 3.411208756054606 1.5552176219011238 3.471274288989387 +2.299294600274157 2.68177138475743 1.6301319951806015 3.733929628418014 2.138282715705293 +2.846547305396291 3.9153970700683427 2.9265297804635604 3.8898187119013596 1.4388764314110079 +1.262777988141976 4.906652606830803 4.467545759633095 4.51672316312 3.644206450482513 +1.140127393392521 1.1845897447415568 4.498164702107816 3.394724913957601 1.1043352148512144 +1.511702610444694 4.574321342818192 3.5060547293699247 1.8217558828534872 3.495210452070326 +1.0448306428676988 4.425834358615571 3.018708276519914 2.4607901321672756 3.426727123903917 +2.274878332499342 4.545834045424218 1.3432168237784592 3.5763535878546517 3.1849866023477746 +2.2587488941098095 1.5722794218846845 1.2520086622681026 2.3122637437431113 1.2630839932841438 +1.406191262683575 2.137569226947068 3.919914508079166 3.9042413637170283 0.73154587967154 +2.197212046422718 2.204215423098209 3.085572821865883 4.8673829886467725 1.7818239300583547 +4.893557894793245 3.0983285041139976 3.538609527731941 1.1722401336903867 2.9702782149514504 +1.3081355789210343 3.362129402546617 2.9002461867824985 2.9766817329863398 2.055415534682834 +1.8719205608976615 2.4404535696205336 4.8953231965009945 2.198777921268796 2.7558276802776644 +1.356839666630198 3.0195287273240203 4.9675073033495885 1.9086270331862853 3.48156335857115 +3.2436628132448604 2.958520726284363 2.536962106718806 1.4460068171363245 1.1276034114990006 +1.9035572694561305 1.6793264623281736 1.4595588673619955 2.5591620029078967 1.122232823690179 +4.576564603253751 1.2380441714495358 3.0479072111023577 1.6878145435297354 3.604936995005463 +2.26497012005269 2.417886822515343 1.954275349161935 4.12399056618024 2.175097156646765 +2.57649794337773 3.683438678095432 2.642816376903243 4.344721551333866 2.030221419680892 +1.7289623228275977 2.297586274012362 4.675005847105411 1.724201937283853 3.00509183088956 +4.2505545311496356 4.268698752699581 4.851387711557729 1.7982420153127308 3.053199609471187 +1.4470700484047607 4.1312691861564215 4.256237076259508 1.5344809852614798 3.822679849266954 +2.9122326452414424 2.3328168769271644 4.364620318952053 3.680426263608299 0.8965735541153089 +3.463088823229959 2.2255673984796798 3.199876296423037 3.2763207522362383 1.23988024887105 +3.1009269987314187 2.2492013326583686 2.7303538903724522 2.290963323047841 0.9583844118627058 +3.7583395016345693 2.4574873559068293 1.7589486002359713 3.7590733144342576 2.385941151284172 +4.479979549932587 1.5556493378129566 2.804205291064668 1.3555138627278294 3.2634972106702147 +2.8792116168970545 2.2262879038962224 4.3661463393255655 3.753191308023018 0.8955575053551279 +2.164778868558757 3.199437203347327 1.5685406090769485 2.0669360068226297 1.1484406132846106 +4.977568278251889 1.045788754600253 2.2580131539668473 4.548449902398954 4.5502736973916775 +4.610282349249851 3.906144001432519 4.456554164714338 2.244124660555383 2.3217784398473427 +4.471140376027591 4.612531590283887 3.1236415488874503 3.8184949571836553 0.7090928955290149 +3.45644328396088 4.084428879463331 4.520759332025848 1.9346403113183355 2.6612736607541416 +1.8614776797242345 1.5604655298436962 1.5860182432197711 4.800848308912663 3.228891553716022 +4.263058856211741 3.4375813327750406 4.607620685816025 2.4519363489291757 2.3083301544619834 +4.392343480850537 4.388729811044339 3.1993631464508323 4.056799587637682 0.8574440560670059 +4.8784458043079 4.020343681020604 4.283982419664268 4.151817769399807 0.8682204494076915 +2.9889649081777176 1.902757548798216 4.777693437087048 3.4802145957526287 1.692128178147476 +4.260911489213163 4.595631573690731 3.2979391385827808 1.5101982053713678 1.8188059762471323 +4.627659246748522 3.248608082528837 3.1780232910136763 3.3033662545916744 1.3847357047661415 +3.6157483130395374 3.390140470358983 4.4610885592683385 4.327881266345596 0.26199824725898285 +2.7575928989762364 1.0489334417854668 4.921885573645508 1.5247064417432425 3.8026757940797005 +2.6404394554874013 1.2659503387068023 2.326252678776645 4.49420086046932 2.566947535625317 +1.885955403757844 4.362635785270818 2.6474176336911817 1.3114201434518384 2.8140424670031323 +2.2176147259152335 1.0258627163381506 3.962913138895623 3.3332337397465963 1.3478757353864987 +3.6533644361169615 2.661235540154932 2.5841699119703208 1.5635820969734953 1.4233478964479593 +3.928885188327166 2.622542687174801 3.6729078258759493 1.1073077582071216 2.879033594374909 +1.5770478431414352 2.791318104686265 3.501091769704918 2.0885815462852837 1.862696271359648 +4.222335742794954 3.5443172701153163 4.729591364801692 1.6504024128237091 3.1529531635084744 +3.222467633803859 1.7006445236235743 1.4667550072172775 4.2308753209839125 3.155361577958405 +1.983226186372859 1.5798974446694398 2.884605722655556 4.0223890296767015 1.2071557180496797 +1.5768883021101296 4.879710358327565 4.457197124009884 4.384197682632855 3.303628679721395 +2.857030214093305 4.622971478119016 2.4259643758584217 3.644399660831674 2.1454913403825655 +3.1433219857492483 3.2862875248466104 3.140509577733269 4.394382384926666 1.2619968946033302 +3.530119462203154 3.358532928611534 4.213600676110081 4.6636440922032465 0.48164407489223193 +2.085863617239578 4.152989597443557 3.411234306131315 2.1582712988547117 2.4172145365353668 +2.379347328378215 1.7701423554108984 2.784474068029717 4.870637561869961 2.173294462819027 +3.3037935012027604 4.064134569018318 1.5779117026942635 4.541410835978825 3.0594845403082607 +2.5831433301760303 3.2754928946033526 2.10028830460926 2.6319774008824224 0.8729497204641715 +2.469550958272203 4.065692497092597 1.3439777364606553 4.559795285139364 3.5901462809108313 +4.042740903801943 2.037183774524956 4.930875717477677 3.1469049569669125 2.684177913840866 +3.8199696170256696 4.010142266786518 4.105896617963342 1.0351841242384574 3.076595660114465 +3.1898346025680593 1.7155882119580008 3.613932279352233 1.087285418985224 2.9252943060877223 +2.3808199281364164 4.286455612140905 1.7576642783188179 4.604692135894512 3.4259327170806055 +4.27626685794327 4.776885465014953 1.474310118588201 1.77433031127639 0.5836361073194924 +3.4743119932678 2.4739252243003076 3.49023907890752 4.498677938257973 1.420465635125772 +3.2881637211820425 4.892394664227728 4.183646553926753 1.954350299158655 2.746510278544087 +1.0797798767880815 3.0125308522849807 1.564311710068952 1.2313743222129192 1.9612173866036917 +3.6746339259406477 2.4672156989336647 1.1512889674702094 2.8986430716009064 2.12393623730353 +1.8364690883370685 4.2322718151217975 1.6117178733060102 4.678136936139909 3.891374638168403 +4.89224664556391 4.138729509241383 2.051874972867138 1.3764970022518086 1.011891040539535 +1.685630259965635 1.5730674974185836 4.1238722213005605 3.755549884597023 0.38513857146094566 +4.782181741946244 4.042962620696203 4.488200294947117 1.7114512151700905 2.8734613902511805 +3.60672132651625 4.108586641354771 3.8007062436606405 2.7861487360551083 1.1318991697482235 +1.829222926888113 4.533257430214733 1.160469952984943 1.0218568890475117 2.7075849343418508 +3.932237680959538 1.6890777887202515 2.611740479213334 4.413965148504384 2.8774606966476886 +2.9066788793058578 1.7283613833791178 1.8832254488255775 4.271243788316499 2.6629051261642878 +4.559524977549343 2.694787656515946 3.680613495766009 3.8853547598378744 1.8759435656939571 +4.4535628485817975 1.2051166590582651 2.933394768648077 2.263200890318622 3.3168603348317567 +3.1542245710656855 2.5139848437740153 3.551065392325813 2.1535355252249664 1.5372041627062498 +4.784806547021031 1.8395915343140756 2.2988117989486985 3.611220786997292 3.2243927836082817 +1.0589919843646496 4.998117560545371 2.189798688213602 4.2724719732921805 4.455809501908839 +2.023100916028185 4.766877144779937 4.700409733119066 2.038063765822595 3.8231392916087916 +2.0555340719975224 4.7089597270813615 3.965224298902455 4.542474206901387 2.715489856976431 +4.203350511253397 4.924879509321171 3.488972994495592 4.330090907896179 1.1081892614964477 +3.2060251036235883 4.93904969964559 4.29380596720656 2.3892399673734053 2.575023475259534 +2.135344464525767 1.0276408746955572 4.19080487749399 1.1854517783572862 3.202991491311416 +4.8899754543484715 3.6667562886598644 2.6472989993108005 4.595809890055317 2.300643348860905 +1.8037652487575024 3.9275064070066845 2.0558168072608862 4.748030819631852 3.4290367154126757 +1.0338420590166755 3.308137036689366 3.138213107312613 4.390754779798989 2.59639717431332 +2.4181417287875377 1.4749967139361302 3.409369359136722 4.589258441564272 1.5105167214800332 +4.364904240403728 3.9928504263666866 1.3876822981845223 2.3194704186294994 1.0033210562635935 +3.82836605478361 2.988679673977152 3.9764986449745954 4.210865769797008 0.8717804582057184 +2.9600550170419493 3.052808824564535 2.781580017098206 2.9414353251819265 0.18481609327241535 +3.259445112969647 4.119235911196061 3.6448494385053367 3.196202163695744 0.9698064723999772 +1.2713667351850755 3.719115636415321 1.367224887552894 3.302620609505674 3.1204536984270406 +4.096342934926218 4.25100789839967 4.061354216002069 2.0234131180494668 2.0438016463567354 +1.9571086755789189 3.152400295603752 2.4389712601072024 1.342444344342414 1.6220645282781536 +4.53614648407595 3.4842644646737706 2.430816213864161 1.941037697701217 1.160318394940105 +2.086164960022915 3.9684179810046745 4.9384413821760145 2.086631494799551 3.4169717687936956 +3.385259981998038 4.2873641341657756 3.2983044606232594 1.288957832061684 2.202558915232472 +2.2065846110682243 1.0319016758376742 2.8008749484668747 3.8914446395775704 1.6028793621140485 +2.5753131983869793 3.035116703453471 4.5995726123701814 2.2570896886700536 2.3871835939236283 +3.22007863946717 2.9346019104733214 2.2262961492915005 1.47324808057187 0.8053436264101136 +2.8834262031703406 1.5308447604350897 3.158603052991439 2.8837313066261756 1.3802286173607845 +3.035627567201048 4.360442630394884 1.060160104224476 2.7923409734590905 2.1807305004075292 +4.403722542761537 2.87904091423141 4.028274936005899 3.6678799509693936 1.5666967203695628 +1.8366839776815191 3.91758079489547 2.1750139388276453 1.6465265990340687 2.146958414178822 +1.3744016953131228 4.4429082128485415 4.719586212400757 4.3844843483173115 3.0867499910860197 +3.053814360973974 4.289889515534089 3.8891681722530937 4.168624948699436 1.2672718246779549 +3.2303222376388123 1.5494044777748313 4.985052889720821 3.9945530894042705 1.9510444305174783 +4.12247450706403 2.029588167754265 4.077089272322329 4.021333127651168 2.0936289014383664 +4.927983901906291 3.807876944151744 4.689592969223737 3.665107186374186 1.5179626859942914 +2.343224735996894 4.0804862118507845 1.5940861762907321 2.321593631269823 1.8834395484156619 +3.3682175955734293 1.5475281885102161 1.5291298585779751 1.8465839247368714 1.848157731664971 +2.20581767830836 1.662298473139873 2.148551197992847 4.406916304823198 2.3228486997942515 +1.8105060924198528 2.844282000472153 2.732101379794661 3.27144213433703 1.1660107536295237 +2.2525823043757964 2.653966902914966 2.6194019729387445 4.209788682495493 1.6402559196293702 +2.2003813244337436 1.1406577053993079 1.5559197751350546 1.6596786551232938 1.0647910846339086 +4.388344345419351 4.84136536950057 2.494704641223306 4.906106644542609 2.45358669499815 +1.823288250289127 1.9573392573237842 1.8426025924229052 3.604515125084079 1.7670046534278048 +3.2582386065195488 2.389302805431753 1.9701742800169941 1.1262113556477464 1.2113310216955486 +1.0281449185684561 4.229262739671963 3.022159554599931 2.2109157710859733 3.3023130955250903 +2.932949695497661 4.711667317704198 1.8579133804676573 2.1776674907442897 1.8072296673602053 +4.91909589757967 1.399062628770317 4.293889242642974 1.0493286877457026 4.787254683837069 +4.827012721256794 1.411200018556376 3.177305459016524 1.247148672078887 3.9234272826307044 +4.398669657715414 2.8082994007202844 2.710572266786021 2.4563538376520637 1.6105603261120305 +3.15138135142983 2.6397350504470247 4.221447029900709 4.039012525826147 0.5431982010153557 +4.675066490930673 4.915411918411859 3.155147542446706 3.1048727228283615 0.24554731112103662 +2.402463315151029 3.303006154286877 2.6199043220769362 1.6093387549549103 1.3535952757643313 +3.815984274408395 4.9016874422457875 3.5825765546680817 3.257957524618806 1.1331941066394062 +2.1836200541193898 3.831335973314597 4.878463845052112 3.9920409696272183 1.8710193116175586 +1.5017757322213794 1.7842068270497298 3.966468657930053 3.2070050424855685 0.8102791534464826 +3.830935891789284 3.2361470845291556 3.250013239014874 3.2709427809080434 0.5951569296965163 +4.297505623616516 1.0367500745257554 4.048617511853672 3.769673469227426 3.2726650500536807 +3.805221944311888 2.6634254962980233 3.6868639868755695 1.5752782889663668 2.400519378866118 +2.275262359111565 1.8798784964984265 4.654506316952727 1.1963002037807113 3.4807352556601003 +3.566970757000095 2.502266979014082 3.5298430468693276 4.468995176049598 1.4197185835937782 +1.8164834041832876 1.428123047425327 3.1775193010461122 3.6479302601714423 0.6100083910622733 +3.2800963034759163 1.9753470617958793 2.855331731177774 1.1844317917786045 2.119971035450433 +3.970502535931944 4.247329627686855 1.9676287411695994 1.7434970401091991 0.35618570739111727 +3.426268769902664 3.754773838178984 4.381478396044373 2.890501536595572 1.5267375594040513 +2.8394000851516803 2.7968739424662736 4.257425719783944 1.1279716620947502 3.1297429881699648 +1.5068667859546605 1.5685615547100604 1.6912845146669468 1.8371112818926818 0.15834042608030002 +3.4383398796854965 2.432455129505888 3.3988419101300917 1.929368619514361 1.7807739560306126 +2.8280714516061445 1.5331472727748858 4.7896467297472345 1.7621354325751795 3.29281844070186 +3.4370077999958877 4.869071059623256 4.814164786753415 1.0578003410319288 4.020084455413226 +1.0293791652050013 2.69029089558253 2.4541839121194675 1.7318760632099162 1.8111754207425685 +1.6736855048133523 4.193643673564618 4.401399305530328 3.461906168766813 2.689393337963412 +4.837832499059865 1.7421004897630206 4.685469405899859 2.7032425315788347 3.6759733479264476 +1.0938564664555113 3.2036021930814558 4.339473410000833 3.125958755756238 2.433853908327863 +4.972190938141001 2.1615476538662497 3.074492764728184 4.869201027238562 3.334770369749884 +1.4439623494921041 3.385322738179526 1.2662404225423214 3.065421042329655 2.6468719389843764 +2.045406415385413 2.346961656422843 2.9942466767465774 1.3057442624718627 1.7152189266704945 +1.1056264869672443 4.198709667911823 1.6850693292644707 3.854347893088443 3.777953553408039 +4.03998034623392 1.0291701719343527 2.296590087953952 1.3391516045567733 3.159377526532035 +4.716552483790917 2.505050397423539 2.9445417779787517 3.2077384036851684 2.227108875154178 +3.7204339091598495 1.265847941974553 2.238008188985997 4.829950618066508 3.569755989696041 +3.022408401218146 2.657753068544716 2.0558323516515244 1.539196292129728 0.6323656613426909 +2.0571256404160327 3.065574799275084 2.1753231615487976 2.621157816093159 1.1026052082210651 +1.327152980981817 4.122292849492008 1.205036005720379 1.9788803945006124 2.900283093524117 +4.912902915056899 2.484071648964107 4.062193140814928 3.430167240501957 2.5097167286003286 +1.8203230445058192 3.8871201168177896 4.905895236549806 2.3882355336049415 3.2573394846023884 +2.1756330189011543 3.7131868630522433 4.667031218970097 4.364032768550951 1.5671247189104622 +3.1995042790829444 3.661603240481413 2.2839234779798305 3.251088697912725 1.0718880598147307 +1.9597450691892213 2.941199015683909 3.756028107242561 1.4023708896359843 2.5500890468925843 +1.4200831218247236 1.9754995561409632 3.699735997137313 2.7117743387125204 1.1333823953220874 +1.3125708944236725 1.7355551222252377 2.0419871431591665 1.0236089855486994 1.1027283114471016 +2.969878259422968 2.369022284005936 2.5831832356056537 1.9268268698738642 0.8898491906109686 +4.274210798966659 4.829953883906714 2.2189069058173234 4.452222904622502 2.3014236304900195 +2.6998508425300307 1.3696112734668344 4.014818617886746 2.8194693254754615 1.7884063414027578 +1.097056510712647 4.950701864054949 3.608518797266914 2.2856875286860374 4.074366831112781 +2.554183952381791 4.159472904729701 2.5748552722438895 1.6427102140943748 1.8562992835108278 +3.905464953292823 1.1212622723799464 1.9920073036650723 3.31257032399849 3.0815047069694 +2.8939546905427758 1.939356469441365 2.407002083470775 1.6556922518509047 1.2147939030216837 +1.2094886875183377 4.225953522129125 1.5176006945149165 2.7695751918410556 3.2659608448967243 +2.9993163257600823 4.855238636064625 4.50259603156097 3.3693432104007512 2.1745596286498436 +3.3668068956079273 1.7344077656182946 2.5467781753264247 3.8838668020000293 2.1101025840396517 +1.9552048267714692 1.702194253572856 2.97603225129978 4.421885673263984 1.4678237182835983 +2.494005851582874 3.4702230819326307 1.3374747138403804 1.2935210414746603 0.9772062249833363 +4.633855891238545 2.5065796704422856 2.5216751292511703 2.666582934763112 2.1322059918458867 +1.6388099847899413 3.9740681075825557 4.912279611478491 1.7078910692173097 3.965039272169145 +3.0942750602856646 1.0532844588685326 1.7284790988893723 1.075438804921912 2.1429195646636328 +3.4353023910310765 3.5367058343853603 3.032677641347375 4.119064504500715 1.0911091030489386 +3.7320523707166107 4.655716416062186 2.990699430033683 3.63340263789728 1.125265605118325 +4.697414380509333 2.609277506027645 3.036447550316519 4.153490770646961 2.368142977663375 +3.1984324169868006 1.7392878613417713 2.058217572235104 1.230630407759664 1.6774991353419617 +1.630517129178989 1.3251214146912327 3.0912980082526165 4.751778878512492 1.6883315026754908 +4.24181479439426 3.4522819055599996 4.870036205802579 4.966255026701134 0.7953742792208467 +4.091009206532539 2.1219579221870144 4.77443149324664 3.907870057961195 2.151299998026015 +1.058327738015386 4.8615683241550265 2.8147666894072607 2.636292049570311 3.807425922211058 +2.8893103132721083 3.1669501337110972 1.1592174548606637 4.222880564701626 3.076217729695639 +2.4648641501864117 3.94759054994909 2.9197043127697255 4.4135733096356855 2.1047855369016824 +2.987998163381773 4.991048807316641 3.576868632437237 3.5362385087666737 2.0034626747502373 +4.573112404189814 3.87187152824257 1.1776977946841516 1.616339807790105 0.827130933867729 +3.510494358205264 1.3371603884227907 1.0907426885331688 3.4372796585202487 3.1983771346929353 +3.879898886218289 1.0620025981555878 1.7505748331552455 1.8035627830706966 2.818394438880724 +4.234132021731812 1.427789870369491 1.7612318907130078 2.0178763471044574 2.8180529887689056 +3.2345326475112697 3.3682296518348234 4.329788582475702 3.922954335645374 0.4282394112632473 +2.2296292455907976 3.5048491912457087 3.951966232568601 1.6059359831127975 2.6702141938724266 +1.821462122357917 1.9158714323954324 4.903765729108393 2.296049064535357 2.6094250938690844 +3.5016051581434646 1.7790062379765281 3.3258577629090937 1.447788966696816 2.548428818520645 +1.8940923981046156 3.5354581003592918 1.5863452271135219 3.731383752116224 2.7009760536301974 +3.107965424583574 3.1097925933716146 4.922065859072715 3.21478273172152 1.7072841050873335 +3.3628091463055174 2.714174504013239 1.6474907027660186 4.345357918569476 2.774745828592005 +3.540347397748443 1.5241884715101088 4.961580721664003 2.595750585805027 3.1083836712331725 +1.4896639052558833 2.6287167331977233 1.3727284460899867 2.182663325398143 1.397653695863972 +3.41463616569544 2.958709639125058 1.7053060568798064 4.919068698059672 3.245941975986927 +1.0710663988229516 3.123960390652171 2.8939960488582313 2.527694007207999 2.0853179439609764 +3.892836351371523 4.861187936298957 1.3768728012963125 2.214424536317263 1.280311563982798 +4.0043414003388555 2.153271679804379 3.1367660360982157 1.7843240545437702 2.292500474100387 +1.3296572003271478 1.3681059257991715 3.5764049457588456 4.943180500312307 1.3673162476235499 +1.6059847262635412 1.480686484723659 2.566080367352603 1.7506246538662915 0.8250258601949734 +2.9314639726417346 4.865053572056359 3.1852803327669865 3.456468524886673 1.9525142187726963 +3.4259313562319584 3.262951669121206 3.461856539587807 2.6987214058898523 0.7803445461428649 +2.2419680663582815 2.461072802572466 2.9813064277408015 4.804050665433594 1.8358658560673122 +4.0233208490307 3.340187267707189 2.2810228871791947 3.429914318172347 1.3366461798626361 +4.246102860055725 1.8272303472963332 3.539759714018167 1.1103052738542107 3.4282930314976428 +3.295224021708319 2.015281093584022 2.462609429301602 1.8569786996653654 1.4159952259577426 +1.3610215186817367 2.0345210020515285 2.0293795118371083 1.9051159566470495 0.6848671296301563 +3.9360986201624955 3.568594971911943 3.756458649905148 1.3705465519622657 2.414049599860714 +2.9264148584102774 1.0052410013907567 1.0657792033741225 3.5772314662362197 3.1620090856179415 +1.2246984899741928 4.817219894371516 1.4608099093524447 3.1450523278889637 3.967730152801556 +4.332823124549916 2.1575504430621706 2.6893998570455415 1.6412601156138504 2.4146238126042276 +2.090818362387933 1.9538299703859838 1.4226326595481216 1.2670528752315073 0.20729420838818416 +1.2938957665624993 1.383096749622191 3.916896741992795 1.0807913853765352 2.8375077813472616 +2.820775734115897 3.2895512378880327 2.698748241182874 2.513958694271849 0.5038825751942622 +4.0838335890324835 3.6947139445303083 1.899274039120233 3.9799878790035734 2.116786286146897 +1.5647192691568779 1.152652474796687 4.705589686747645 2.941869561664794 1.8112171936674388 +3.018968596262187 2.743002202151447 3.608156512170418 4.797856370267649 1.2212875185782646 +4.551245993157549 2.8362641485663493 1.7701367835860102 4.5618141570608195 3.2763738011479466 +2.4235351482000453 4.967540753086897 2.8549406003586846 1.027177807938107 3.1325199669040877 +4.547722241081768 2.0666218230328184 4.37122235190927 1.8493260694465232 3.537770504702375 +1.1283318061603707 2.435810584584098 2.4811569354340306 1.164982384811473 1.855213250204648 +3.010619022336914 4.815222060938887 3.50232339929366 4.152717843528297 1.9182296682156592 +3.476597418358078 1.1224576200251009 3.6357785934675326 2.6578140780062327 2.5491937516784957 +2.6780766091947132 1.8989153049584848 4.578780590505369 1.9296434616680442 2.761343851352737 +1.5113219001403513 4.884544031335089 1.9749271365309777 2.2906514717492095 3.387965377956357 +4.773370472840992 2.031605523735444 4.429575288899097 2.5196915701187423 3.341396542675836 +3.6181405975982415 2.2706367068026507 2.746854586455546 2.566879462989261 1.3594696689429888 +1.8952481138717072 2.5238817751476144 2.975293261037903 4.538211069984324 1.6846045107416259 +3.5497836795075557 4.694135088839184 2.266824356226345 4.834933277586458 2.8115340261161146 +1.5129445715658547 2.32887650707291 3.475527863369303 3.024165468675467 0.9324553258596596 +2.806811142479013 4.369850017880248 4.746322285995635 4.319576541656167 1.6202476527763907 +3.1202995145879315 2.0034186766868882 2.102094517433173 1.572427622221598 1.2361107660535953 +3.8165150428023176 4.341114086267145 4.6960686830485745 2.298774684857854 2.4540217338413006 +4.941284058440633 1.850468994194069 3.716805087848932 2.1321802488266837 3.473351931754077 +3.241518898145967 1.9472513062537042 2.461112511890259 4.858726175722376 2.7246430739487812 +4.88514207471374 3.8074377532606594 1.2641868606901934 1.7354255666727965 1.1762280911858904 +4.522533438989256 1.8943120296572893 1.1354224604953287 1.3707403147460417 2.6387349751348785 +4.714690160348221 2.0761492169268356 4.43356805203595 4.601362014367092 2.643870859914644 +2.7843358801857065 4.9929172061047336 1.2618359913204453 4.251836026756713 3.717247864362441 +2.3973466140465 4.168556444206219 1.7187734896321984 3.178516087559502 2.2952195351769675 +4.181828163291981 1.3118501558659759 2.502298869876276 4.418637954157743 3.450960626992675 +1.0529355460456897 1.0126113953881282 2.659821824296734 1.0310237181726425 1.629297182112484 +4.498082378620591 4.346221298073909 3.857455442252036 3.8450798296766098 0.15236450889699685 +4.557607703739643 3.2237015649848537 4.573565958768855 4.883195023771961 1.3693705652241872 +2.626650048902565 4.413200710220668 4.519751190316997 2.7964778114117506 2.4822236812784735 +3.207305104363948 4.018054490399363 2.5737969261488365 2.4047167277154253 0.8281924175329574 +4.713738829223379 4.808524481270865 2.9321870894038518 4.230500361670753 1.3017686709928367 +2.4992248466466567 2.7980986726409403 4.543850447219619 1.5804181414862417 2.9784654764708454 +2.3649688178501864 2.9516876253723683 3.8619022361678286 1.0129434071948618 2.9087463568147824 +3.3208110289402626 3.417306047603198 2.724413105634914 1.415141467339288 1.3128227265979489 +2.423093277639484 2.8856374729809167 1.6206692678967327 3.360214759661809 1.7999904584647817 +4.548034331987585 4.85004536482465 1.4713423396866903 2.2841107125971445 0.8670657944809135 +4.94370779554048 4.363819372556675 1.0782723158291914 3.01242623844311 2.0192132080276846 +1.4685580272741272 4.475016443547978 1.575779159829064 1.6695679508131023 3.007920967395606 +3.2865733010156433 2.7846071810259954 3.9975017560967854 2.2221884275563855 1.8449139275615694 +3.308257599369083 2.3578607310016717 4.316837974747791 4.380874770421563 0.9525517931339729 +4.250160549568211 3.5022775170913083 4.163623645551104 2.5324222715147937 1.7944767908570998 +1.4489262222369819 2.3228782589364942 3.7535570983838604 3.6626007826131954 0.8786724155393743 +1.932898343323409 4.808239633811802 2.492784567654613 2.007165667248724 2.91606125676723 +4.86487218854093 1.1877347098222604 4.581951373642126 4.7808037823368394 3.6825103282735245 +4.754949056957999 3.529993423658568 4.014929305969137 3.6175657479178898 1.2877942773669857 +2.0699098434848064 4.512021945080916 4.125352187671776 4.751113950957288 2.521009579742282 +4.19606258786032 1.293959356383299 3.5834513867671047 1.4286595071103783 3.6145997303690396 +1.032841839189428 1.7095937351364694 4.2987844752376905 2.986755466768215 1.476283593261576 +3.386790908702939 2.618834686203217 3.9429562363618778 2.9422480821786037 1.2614172860417514 +3.431866271415484 2.172337494848352 2.369484373752379 4.710334025794536 2.65819296373807 +2.807472912141597 3.2277911959333725 4.404068394960566 1.9832930040814865 2.4569942923774617 +3.4500234805125034 1.7761671355538229 1.9996109202950394 1.8686297832500225 1.678973234396558 +1.1498927849676024 3.662613763269802 1.6724228844739186 4.728071357192482 3.9561034242834516 +1.911229831297431 1.209564047209736 4.081125744895549 1.6931701685996656 2.488908738166589 +2.449051469531664 2.2738324693165177 1.1865522870273173 2.2188315019145994 1.0470444477311835 +4.487583317684486 2.241595946432825 3.5163976585006655 2.5448807249872654 2.447101228785852 +2.88450486169509 1.447010850747716 1.1322427002157616 2.892424557553844 2.2725820562548917 +4.539285824824324 4.8706211721112425 4.396025469759994 2.1704730488093027 2.250081485360303 +1.7084548441057539 3.2826161917453414 4.058268796351362 4.460983137355514 1.6248577749615167 +4.062054190581921 3.066879421893523 3.688128790104797 3.3519924241053367 1.0504096709290758 +1.6663314081783756 4.709536782373557 4.78901344628928 1.693639723618856 4.3407876511675845 +1.2753881608308983 2.8394931233540266 2.430442715087686 1.619856102265914 1.7616682408090776 +4.25962821472751 4.897197986582427 2.646470692089478 2.797084006477675 0.6551179927723927 +1.9170974553623368 3.116959865833367 4.260794837836266 2.8984013684051506 1.8154299131637943 +4.064507875604837 2.097800460049154 2.6998492350668535 3.765828717776815 2.2370181751519835 +4.941375122914554 4.117742172151285 1.3319442393642777 1.949808771981692 1.0296250862569079 +1.5642006074360433 1.263688192523901 3.739699210803907 1.107634016202777 2.6491649439298817 +2.698962885985553 1.8924432752892337 3.5376974508543158 4.3204191482912275 1.1238892908450826 +1.240396366071658 1.1513710316067978 3.3282220938827596 4.690679322892491 1.3653626664946774 +1.961608125939633 2.2461422521488013 1.048804148629987 4.732871813208716 3.6950391372991143 +2.7023626657211106 3.9250962222771664 3.5874308175279466 4.1767741614921725 1.3573514384282197 +3.3957269526424225 4.99556193629369 4.659004185565579 1.1907058960959862 3.819498003619344 +1.0533138105308861 4.194326851640371 1.1762787584935612 1.7125120419884996 3.1864571327334086 +2.3682951812516007 1.3221719963692848 3.4747854302106367 2.581854982155657 1.3753903093347672 +4.184490740401546 1.9774905217805174 3.5892403477262342 3.6741381955248134 2.2086325202609185 +4.380452637618976 2.0363979672992887 2.110075312579785 4.015349970343022 3.0207058478048405 +4.514705478812373 1.480293753336701 3.7065147187713343 1.3063487020314524 3.868908299199819 +1.3890835729869355 3.231669614195263 1.8957737628139752 3.9152923601015535 2.733784681361384 +3.22839368717805 3.766358137108291 2.844375408512056 1.3557436037204158 1.5828551417062657 +4.71257359279677 3.1551042883569673 1.151268863333914 1.7860890099054871 1.6818761110038265 +3.6841159155504797 2.7532851564037224 1.7131578930082791 3.5446310335748845 2.0544439069467515 +4.046702478941717 2.709099197642849 4.245147156452874 2.7483829278963032 2.007357888874838 +3.2946659882671723 1.5304502391655097 1.6538309065190866 4.750248381117329 3.5637421885394147 +1.8594956099115811 3.9297949455731183 1.3962862364530841 1.0528256612106186 2.09859584150605 +1.1180780723826778 3.3958085089653567 2.8080679450230144 3.373012207768768 2.3467462499691916 +3.428769737359586 3.259908493198663 1.8206364736222191 4.419852464577103 2.604695354051055 +4.071992060001394 1.8696617762404193 3.1979043097215554 3.6664724544798983 2.2516249210410177 +2.5677515217763576 4.780551385929632 2.693271779453683 2.2045217260702707 2.2661332382450596 +4.997541170485809 1.3495995911312373 3.1212950120861627 2.5525234892323416 3.692015548666254 +2.5649641996301638 4.456841747797921 4.639589310897483 3.9275136091056817 2.021448110227797 +3.1936722990368644 4.598640132307349 1.5892649732024773 4.82381444838991 3.5265060498969873 +4.379176883412935 3.4434151033726663 2.895767445126683 1.7593248479599164 1.4721249558509895 +3.4013215579142297 4.787589821276207 3.337438303460048 1.7851908490720114 2.0811563751094657 +2.790893763166989 2.339571495308325 1.8642091406984513 3.491396454103499 1.6886178793236275 +2.036316314667098 1.8094498857743386 2.106756119367316 2.3418295832062044 0.3266923781782591 +4.794383567708037 1.0228483860134885 2.829510684803625 3.406667103106859 3.8154406243510524 +3.807721409085237 2.5242048554926586 1.6501787635872427 2.4058543292745465 1.4894496647832707 +3.63012816348401 2.0655717289948266 4.662383024764425 2.458434787255503 2.7028179129050094 +3.3411829938702486 1.1992916058347602 4.84577286295999 4.128047279973222 2.258944162792495 +3.2484672737247204 2.602684241144002 3.0578840524675086 1.4955265542578493 1.690561054023514 +1.0251189276679673 3.650117762050442 3.2959794586963285 4.538543916269638 2.9042357534700596 +2.6486842022092545 2.499915343676943 1.1478258405174238 3.0450161392361017 1.9030142413606035 +3.960112213047463 2.009698996108795 4.210448969754218 1.8323188693167083 3.0756486293814453 +3.7648618855279348 4.6184765723719465 1.7191845112000124 3.794676157038044 2.2441754845687227 +4.072375353391482 4.771262466236873 4.750610118009028 4.610331803527412 0.7128262074413154 +2.264011041790141 2.0815826000995594 3.9392763351021145 4.785384386486511 0.8655512526448993 +4.011638528479921 3.6492029692064865 3.3346690054810337 2.299181600657491 1.0970841809879688 +4.363511011730047 2.5750050888641285 3.4542118710192673 4.571387296937768 2.1087518508356204 +4.4089017641784025 4.088477593620297 3.7161495169584957 1.4122387218479977 2.3260861121000094 +1.1363229425385666 4.433606055875707 1.7374931489006533 3.5739209628854796 3.7741943571410514 +2.671064618331675 1.4455519512256014 2.73528631254221 2.310268313338351 1.2971205020678278 +2.6849482666061117 2.935359214355486 1.010271975034184 2.414157227124765 1.4260432825795206 +2.84563507920896 1.2917887576816365 3.1184383640383215 3.6172976031164312 1.6319616819452547 +1.440146279051659 3.148683490306092 4.452392874354905 2.25041499891826 2.7870783925382425 +1.9214010052631498 3.8161516033477056 3.885769994796132 1.496388735174238 3.049462679354199 +4.239862831095351 2.295396858152203 3.6338553520715986 2.274209146929618 2.37267480348461 +1.3603808559627346 4.606397712729677 1.2099503993979797 4.0801216921075465 4.332956113776049 +4.580964799023569 1.7525968647047914 4.560158499294856 3.3699950147618623 3.0685752869692453 +3.4566627578564457 1.126410868681638 3.2008256363636667 1.4465795920590878 2.9167538550520544 +4.756406629694954 4.827381912814609 4.0359934528894215 3.935113421023506 0.12334614563569962 +1.4752568188709239 2.41711685500032 1.968605904041191 3.5733481529683435 1.8607251310038897 +4.387740952688468 4.247518065355593 2.500310809931857 2.606941000397005 0.17616031235951454 +4.391504777189226 3.055386658008645 3.3443206771140392 4.464066609769658 1.7432849973832318 +1.1301768853174825 4.394870930869017 1.8232038840263813 4.264945064315606 4.0768035521201975 +2.3509005386879283 3.8087361575444416 1.5418490373103055 1.4913200424639923 1.458711030645526 +4.101713905829815 3.8926992715836066 4.681788500880435 2.2914221444572402 2.399487119208806 +3.62888193636161 4.158747357858048 3.7983165014509614 2.9011009556056306 1.0419947699504701 +2.1947049453446357 3.0776711913874477 3.8969146489878947 4.2566173967495295 0.9534230217475378 +2.707115282930484 3.788022295164966 4.00196468506361 4.023006352826748 1.0811117985111112 +2.2708648883528006 1.6756060281983913 2.2984648216438295 4.743171392413657 2.516132613309064 +1.6630477280238671 2.031650228391846 2.0738240807067 2.2763921898672144 0.4205967690394111 +3.678816823992771 2.504897249978475 2.4193694209553454 3.076130177283638 1.3451475225070364 +3.357971601159767 3.2020191910742253 1.0125662131664788 3.3503468852180727 2.3429766590449614 +1.127804653788421 3.4150623461640968 3.3813070228886346 2.9561640687460784 2.326433812251868 +2.935621310760446 3.446214840431402 3.111478798488798 2.3599593755623087 0.9085632589850908 +2.38821079588651 3.322838593135812 1.6781171798494938 1.4013374135084935 0.9747492797878134 +4.965422101966734 4.66803006453077 4.726848240790422 2.347218069276608 2.3981413171681893 +2.968353011371641 1.8744254029302323 4.190139579869585 3.439700064514428 1.3265885114521467 +3.3866923807394564 2.9444753719621266 1.4311243670594038 2.267048049029792 0.9456872024781239 +3.55095212340813 2.5919593284137874 4.015763163414148 4.950879967291046 1.33944414506317 +3.5888583531019713 3.709416585723272 2.347021261493381 3.4016856966978084 1.0615325517090117 +2.5946805361179717 1.0423173991009849 3.7508538348581277 2.386667647331338 2.066599928241579 +1.8680738679725724 2.0129419885286564 3.6567011434167918 2.199433634982462 1.4644505329617148 +3.2869866769064364 4.799734610083874 4.828360888387545 2.6908745531014975 2.6186359317146755 +4.392276074151098 4.773311693974194 2.5079069127212783 1.0185712720279176 1.5373056931571787 +1.966454936166901 4.93381672245852 3.798776423613897 1.762684411311155 3.5987368135648397 +1.596770076675742 1.4920823195260273 2.917022634062582 3.881514551298454 0.9701567836748686 +2.4043311882332685 2.1394180600007675 1.2166038595738558 4.317132922641462 3.1118257400498535 +2.2158974127126725 1.395140961358849 2.6473226625022788 3.619873447395118 1.2725942721993522 +2.967777849637869 3.3924721065511485 4.299293588882368 3.359462572980476 1.0313328998467495 +1.343863425567204 2.4175652653283244 1.658180315401009 4.403255739925328 2.9475879506867617 +4.823152486969098 4.1140881756417444 1.1061642873698379 4.129701486360353 3.1055674829695046 +1.30345344955574 3.681077405703851 4.960116199153295 1.2706566465099787 4.389214903310205 +3.7303659968271186 4.744968050615666 1.9021882028019435 1.0701703877357716 1.3121246023680166 +4.0450962956372125 2.216265231304448 3.890582586140934 2.258088241401005 2.4514609618503744 +3.4515457738862008 3.6938766069621485 2.47134804241024 1.2789111715148649 1.2168113755755394 +3.740752868344733 3.687683821012242 2.3889851996803038 3.627675528993809 1.2398266232500328 +2.4489858126716797 1.0206258159857788 3.7481477353785873 4.325381214610207 1.5405878000550268 +4.190285452919015 1.4666467017307512 2.0697724885732223 1.9804403288105683 2.7251033524881634 +2.750804628126261 1.8751472796857436 4.886181978257074 2.7015368598232588 2.353603638120611 +4.32744863047618 2.268745004281545 3.4134840269465236 4.250131018430132 2.2222148430936 +3.054609051460655 3.896172787126173 1.0073297282931408 2.5516293320087584 1.7587185071021216 +3.827325099537557 1.1172252614786888 3.3907337756094735 2.711027033305595 2.794036933861121 +4.372337253453749 1.384077419626109 2.1766578114121686 4.971977463992333 4.091883282129206 +4.276211654959851 4.320034673461434 2.43356182024322 1.8462750161343333 0.5889195592192706 +4.183570645946409 1.231879719513545 3.9832211797986297 2.244652358136681 3.425653349777399 +4.790032049853162 4.658757644234637 2.1579551570396984 3.8133009407797513 1.6605428730738834 +3.06617068422399 4.8483234898186405 1.0239403302753813 3.4871829219973605 3.0403343053292837 +4.866838949851756 2.33273931684475 4.053961580292022 1.4570666300564818 3.62843276533617 +4.337886378641846 2.176484837087657 3.3009295884895504 1.2041310302904664 3.011348670861377 +1.965514751529843 4.999271177108422 2.4486836550295763 2.8797627611186156 3.064230285968377 +4.265949647274819 3.250823087788797 3.295815050999914 1.4190846245398165 2.133682034740656 +1.2077911960030505 2.785410260273466 2.842803316132962 3.675747938395982 1.7840063496821827 +3.4543702243324295 3.9164162055954095 1.4817081419385998 1.3632584884202896 0.47698722123331333 +4.04889875859779 4.758232072211346 2.2409577725217744 4.116797670804248 2.0054747751568422 +1.196693689266426 4.8656335473606145 2.102306212578862 2.6425931649035346 3.7085077420931034 +4.73897807348237 4.648625937007962 2.682974667432263 3.2944183609756217 0.6180832459624146 +1.2185443569268761 1.2085650708424072 3.1396661172564477 1.4117597811525906 1.727935152862691 +4.9686540080753065 3.2360375583393055 2.5768563901241754 3.98058152093654 2.229888787534027 +2.091766908417311 1.970889806944581 2.487381100996392 3.661099433564191 1.1799262679787168 +2.4312194568245102 2.14798637166513 2.5297615836932605 2.6248113746068436 0.29875649496139245 +2.6560541483414033 4.972819617743758 2.4556817357222207 4.917370418648723 3.38043095061318 +3.6108570145804166 4.9301807866417775 2.6350499752876435 1.5611968434826586 1.7011101564018691 +3.2729949873417192 1.6676793833235717 1.8800892222854872 3.5173973006168375 2.292992789319942 +2.351495989636149 3.4216539695953445 4.8685458726624535 4.6080103203770335 1.1014158506554257 +3.118960707608036 2.398129130529241 4.2678443521461045 4.29292272783657 0.7212676947161677 +2.469183032645672 3.8866088843709954 2.6567901798607383 3.4539453502310624 1.6262079850952027 +1.3748877518844314 3.5296191353430237 3.6518231296192343 2.7850957982031983 2.3225166526604157 +3.2410656213512654 3.81575369836024 4.321497427881925 3.052392400979314 1.3931597019601705 +3.277151950095964 4.716091474875165 1.4054202505396614 2.8198684169655204 2.0177241068781595 +2.745143849058437 2.3458990778577236 2.633246148705695 4.674825109166411 2.0802502347378713 +1.466997458758934 3.8335390955885527 1.1824154173767467 2.7357525049491715 2.8307906009587134 +4.526310697791723 1.4826332386727552 4.60280217466477 4.211874848880004 3.068679952226058 +3.992060215173286 2.1653991084944004 2.55204419697708 3.9461387729603694 2.2978665073148523 +1.9197651769263357 4.248549390827267 2.313815538869577 4.719011502531608 3.3478655197797758 +3.6377582169697735 1.1339982785527347 2.505389856029441 3.280586847734184 2.6210196880546657 +4.839674927871719 4.169061793851656 4.688691618635329 1.2577802614837235 3.4958367690943586 +4.565189434817351 4.4984194689732835 3.2074927639285074 1.9137323918039746 1.2954821993445635 +2.108221299979238 1.4620519063314381 4.716860573430111 1.3110773322703775 3.466539249893424 +4.923023719475874 1.4632399939904337 3.5923961227011945 3.6425180733185765 3.4601467652496485 +1.2746322166018125 1.324913565623064 1.3508008862316743 2.3226238444075338 0.9731228473821152 +3.4913099778973975 2.2324773825034367 2.999665061335315 1.4021943684080882 2.033856464450648 +1.6048879571975547 3.8570159681742044 4.6214126964175035 1.2729037838166262 4.035417266602445 +4.724518931443983 1.9057129697944983 4.836395952818697 4.360541596131318 2.8586892832571076 +2.8028224191784563 4.896904989510379 4.268251156378707 1.660488896588824 3.3444888720030725 +2.967802690189827 4.142919364620523 1.002765636505743 4.549091113164906 3.7359501582498256 +2.640082103448291 1.0822863548295838 4.597290186731412 4.086184189555162 1.6394989889487723 +3.556334645745533 3.989628934293217 3.821652382234639 3.6832729954992525 0.45485469675634366 +2.8280127711571215 4.337997018912715 1.8159609886234391 4.462307882733166 3.0468351304975823 +2.399102946041778 3.936139934867031 4.908554345502669 3.3160676303008474 2.2132547623604673 +2.4560436425349117 2.6710759817210112 3.331755805588623 4.496684389211337 1.184608590141515 +2.96721739532601 4.202304314437056 3.856193762638 3.3403822149974567 1.3384697420706035 +3.3171754554077153 4.23483151837747 3.809050668376574 2.96395331005749 1.247510398731427 +2.798428245648834 2.8262179020138882 2.0432026531558147 3.109929455540769 1.0670887198013652 +3.6696492276965045 4.1160963460142685 1.7125207319256237 3.381288889459406 1.7274554098595225 +1.8818281424506824 2.2800966387770862 3.225433519122668 4.4260037488951784 1.2649057956156706 +2.721988052745373 4.023097462047302 1.4789120570019278 2.709249042359822 1.7907023182297959 +1.1251535983827972 2.6034618401230274 4.631257044673363 1.5149858045541222 3.449136370106494 +1.7105868584873818 1.4840483344846787 2.4487970182861867 2.40085409738132 0.2315560980026516 +1.2691346580300409 3.051113966706917 4.6708851283504425 3.6730446678155695 2.0423358786529127 +4.658589552197226 1.4454519987657712 1.822083509864346 3.896256524523642 3.824453769103806 +1.8250449122659225 4.754350908096027 2.8847589673013014 2.451444103909812 2.9611814176173312 +2.6836049317501756 3.110691833995028 4.8112625517709855 4.152990400845264 0.7846817487067482 +4.530678805041346 1.5030507280667176 1.3262884808268915 4.17436585901592 4.156690573597844 +2.3851818542659586 4.330494193248942 1.2355485539956228 1.38196477569989 1.9508146519281628 +2.543452593998559 3.2772849308697207 2.1564527417789057 1.5852968610762548 0.929908027010742 +4.5143732867695645 2.9021857410822864 4.687576976379959 1.9253744777262902 3.1982669253890834 +1.694657180150228 4.251195811278727 4.976364550195489 2.4511628654130675 3.593401358223203 +4.844053556829886 1.9808333947412677 3.6629346538962295 3.897937892149878 2.872848102246353 +1.83570265076981 2.002109393776608 1.9154139300664053 1.67590003852017 0.29164723273460397 +2.7142774939771033 3.2228225895044216 4.072810630459919 1.5750009352830245 2.5490530374051814 +4.9247226941475475 1.194366732658784 2.8349474099087644 2.289131074883126 3.7700757380980527 +3.8887648464980606 2.355191817251212 1.9540800145304411 4.676031512870733 3.1242384984745186 +1.205835552080659 3.5824279363032616 1.8929031434596935 2.227277715194816 2.399999523951603 +4.687460270017068 1.6355873299393515 3.2164545344142157 3.8692767003439745 3.1209141645850864 +2.9731931781218273 3.3062989648525694 1.04876048906261 2.4825930914388934 1.4720174580454717 +2.149757812822206 4.459867260655209 1.001187861809393 4.741818401041948 4.396467046618971 +2.8811749265743023 2.1222741866057127 2.1274484465387875 1.52370915348772 0.9697584581217509 +4.371228776805352 2.370863222819273 4.031830023432045 3.5021279795305964 2.0693106593470696 +4.3629291175197755 2.053417158113576 4.5854615562325876 1.652065892339846 3.7334508985099832 +4.259426672767313 1.3382459100879496 4.263224152072426 4.143197059499976 2.923645592611968 +4.863832056674495 4.624575796395086 4.987870043725256 4.99133289457307 0.23928131857477386 +2.231743222678272 1.5143112705613406 3.285344935821459 1.5522744548483844 1.8756977096372844 +3.061247067583727 1.69246436706494 3.011029798361582 3.9085380764380333 1.6367917370439222 +2.855287697074327 4.656623893832194 4.140720649961574 1.609841358980542 3.106471000873298 +1.7386923774028795 3.4396078058266215 1.8437117684080437 4.061840624628284 2.795211784006148 +4.711799888147402 3.4104574420485547 2.7555825231243234 4.247123893326252 1.9794412901226393 +2.570312241225733 3.4192300704686245 1.0577470923950987 4.735957477767829 3.774903060989814 +1.049479467672381 2.5580336705535016 4.7709377395528545 4.375542341178193 1.5595105976190577 +1.0565780459000536 1.4638738354316354 3.4135323647867453 3.5232061341043353 0.42180350383381426 +2.0252924077558916 2.932787629182551 4.599667462495622 4.030080334663667 1.0714369197969977 +2.4415910887480026 4.580408763922042 1.7878172387833118 3.3527286864879313 2.650186575845907 +2.306226740434769 3.1552057448662145 4.392348026556499 1.5831305852894046 2.934700663148569 +3.181675718680544 4.900738639219748 2.0848581891818827 4.611569130681664 3.056050638760341 +2.108614097065343 1.7268201018789657 1.5996105840354025 3.0606567052505653 1.5101067588347017 +2.004828106488882 3.9170716971349004 2.4689924749026018 2.5798852289914667 1.915456277986055 +1.13211069785764 2.9073549889547015 1.1059760655894126 1.8060867012555097 1.9083100364577803 +2.678444159730499 4.975687526821203 1.3668987000331665 3.6713798164424527 3.253914612206231 +2.604559062561916 2.0219259436794697 4.855252187821292 1.2924817301434732 3.6100962155212013 +1.3300061578237146 1.6095762364829609 2.8916332470558497 1.3774583786003234 1.5397678270258304 +1.3377813254349427 4.441361159452297 1.1413929683796682 3.529978767192991 3.9163184120308543 +4.915225629314229 2.6789506811190344 4.605990225340424 2.8650897101240376 2.834018392284372 +2.040192252750091 3.148901803915605 3.919739096345951 3.71466526483787 1.1275159179430865 +1.234897589299941 4.731977786299838 4.9058771896974775 2.4653991386500373 4.264446391021131 +3.7005479337806606 3.4858076098380164 4.2579192111745785 1.1919926120716866 3.0734377035843132 +3.600942531624321 1.8964098624188175 3.3451924690901693 1.3434380073037109 2.6291543404050723 +2.8630472262185536 2.600575747946433 2.0516077793090055 2.086195191612219 0.2647405635640009 +3.0638213756902246 2.9158623025112034 2.027395264063757 4.724084084007194 2.7007448007806882 +3.1077318024828275 1.223465910548272 3.3817895139093648 1.0918552433059943 2.965511240105442 +1.4185910708300487 2.9018180677517322 3.133170431509393 4.249820829800642 1.8565749207617024 +3.5647804694460867 4.864608012058017 2.188487331643692 1.1750378076560817 1.6482207310318857 +4.584057139932804 2.0897995623221814 1.20782845297687 4.158439580548213 3.8636028379759533 +1.8132525559732247 4.498314149713938 2.13698295616799 1.4370041366975972 2.774801994717566 +3.9274918168610875 4.541134091927754 4.7408645815390535 4.4864689249440755 0.6642845714325933 +1.5281395850999164 3.1351679783428335 4.535673865988104 3.201251517593859 2.088832990112643 +3.699959190037027 3.1905495207921026 2.2084048136294823 2.0581535148949865 0.5311060759317536 +1.671338008875538 3.079967583398803 4.007793686224924 2.45717081969968 2.0949149272494476 +3.124812275164596 3.196426299764756 2.354278664621957 2.912522021718313 0.5628181005099624 +3.5248186648285786 1.0508614589999796 3.4135102002737994 4.232405556566972 2.605965053647069 +3.9332234155906916 2.105049098275054 4.119368759853712 3.797530834336022 1.8562868810596134 +2.463197650992357 4.804250357660946 1.4724917657687557 4.021504170686386 3.4609235784432295 +2.922279821384477 1.8890372634768116 4.164407458845483 3.730980736210162 1.1204681643696848 +4.233831279222496 1.980889501729434 4.230702978958046 1.566656104541348 3.4889672400099974 +4.169640016098064 2.7321211669972016 2.1024069163254935 3.658278444195139 2.1183004160778736 +4.242557026698089 3.501441938333242 1.3418860998652793 4.845143578466271 3.580791048857195 +3.449167534222747 1.6540698602582178 4.307575090953925 2.3370190272583304 2.6656081593588246 +4.578726121557973 1.7539551920569862 3.720000619656459 1.7183787545172655 3.462054432725917 +4.963207635770296 1.6546373741260139 1.5315289819447666 1.13302108059231 3.332483416864554 +4.819074684159604 3.6186464958379516 1.9086872936699946 4.281739385689382 2.659399192816828 +3.9883384811333036 3.116831966184101 3.0334446470145373 1.7948557335159583 1.514472219038862 +4.983207434438597 3.0173191419765995 1.1002723150466074 2.308400515411412 2.307442421157211 +2.373954610015601 2.1381819110295286 4.80632578652429 3.9621628012048067 0.8764701428860425 +4.520640795924715 2.2860125168633902 1.9359145951456216 4.934287391024973 3.739492341033731 +2.3455448423500482 4.389801391029147 3.9603000227992617 2.1122322428835028 2.7557828934769413 +2.4226832022757674 2.9655637904600938 2.301834400198641 1.1406223870973768 1.281847367044162 +4.553941455636281 3.303001965337325 2.395705912682968 1.5421336633921041 1.5144091894692386 +1.3394231780339374 2.1993607853437096 2.1777848152711985 2.5336160398832543 0.9306495306368404 +3.233246462304657 2.4981687485530193 2.3426132779742788 2.6586376647426726 0.8001316505967465 +1.0041046631350516 2.565426660905963 1.7132119864523472 1.6615727488171115 1.5621757236581606 +1.921100763064144 1.344949723624857 2.0775145128956827 4.386828640749169 2.3801012082158772 +3.0945671160352464 1.287595471646528 3.129286701824392 1.8505004382225607 2.2136939335873875 +4.657825250384673 1.244852347562742 2.1944867943029105 4.525294148995878 4.1329223268877895 +2.726055943665613 2.3878486399816694 4.97533269931816 3.375024874345227 1.6356556223529333 +2.7307889749968814 2.145949068647881 3.29920358982245 1.9249848477221754 1.4934908326461092 +1.8168733379093127 1.7079340277729935 1.2825196232939193 2.476995548402247 1.1994334116391672 +3.0140107115428885 1.9485543008250383 4.700634164199793 4.917814476959915 1.087365923408651 +1.6950724792922647 3.154857773866908 2.2222338815186644 2.288877949084965 1.4613057647180347 +2.6652235917009075 2.5356497334548136 3.4547545317727932 3.8793055633212643 0.4438839523227323 +4.129939543148469 1.113595348302265 2.465995581236143 1.1771545370471168 3.2801590722049827 +3.562575412625397 1.7198957202103915 4.002665910786452 4.855273755271998 2.03037153873791 +4.931042550932766 4.586541455579328 1.2182137204766348 4.3422695663164195 3.142993148676187 +4.541197883645704 3.5569232510056774 3.8511487909923234 3.575878412414305 1.0220422367892357 +1.9276775157685098 4.505579177607033 3.084369965047471 1.7547986029817402 2.9005752851693303 +3.4534488335481783 3.6554529416574852 4.0066551319612325 1.1336194186310498 2.8801284467474204 +2.2928835202873734 2.8067123489334485 1.603455473346604 2.2975060942540275 0.8635544739793649 +2.3936521541823566 3.8639760844013646 3.4817008210837934 4.18332349408003 1.629149113812807 +3.0657216582535165 2.2323809702659423 2.571437007604001 4.577125513275594 2.1719215188488628 +1.6545638953842778 3.0993897822579206 2.8219973325573338 3.939696355937662 1.8266835933586167 +2.8101252743889935 3.5402192240301416 1.786458144274976 1.8584208175231454 0.7336319251802187 +4.809876875366081 1.4900379497252687 4.678023396731639 4.827254277691764 3.3231912897141624 +3.077426047291623 2.6251628996753347 3.890364437806813 3.0826701452847165 0.9256954276999333 +2.4317154928107776 1.4474869609554686 2.7917593445930007 3.0138488958067673 1.008974514879533 +2.9629832646428342 4.140346601766635 2.5017218174420477 2.3068038834142293 1.193389051654558 +2.4400284858758488 1.075982097566012 1.523931077142893 4.05635946717045 2.8764241863950937 +1.4421821141170197 3.0342479088168175 1.9893259286610148 2.4542464050958004 1.658560985933724 +3.957583606243817 1.5448727228506747 4.946518435238859 3.374579174406939 2.8796122736556953 +1.2846491475218547 4.801008833960683 1.3217126043176366 2.6940232236717465 3.7746552002009714 +3.727201665472458 4.798940046156879 1.7090346250560984 2.08446813851567 1.1355938885273482 +2.4775811097388765 1.5862293795331457 2.5267130490187415 3.8657040715086044 1.6085412227385405 +2.072319395813147 2.041393173327557 1.2623410289009374 1.2714257835571696 0.032232964561022676 +3.6924315373983743 2.3542909170383792 4.428095413151226 2.9407193646241945 2.0007268253285653 +4.874592088922288 2.4138057906355153 2.2275558386403387 2.482374834560526 2.4739446086195405 +1.3029143548728168 3.2679691085923 2.6558516296185974 1.552192796680901 2.25377527820254 +4.329685161961835 2.815450322513809 3.1689034109762098 1.3682934048117343 2.3526800766992992 +2.9395340087279234 1.0272730056446835 2.2590155773348393 4.033510345518682 2.6087494755581164 +4.85714156338585 4.481468368945472 3.165319131666123 4.394862847723349 1.2856547354234926 +4.72126534512595 2.2129755177449484 1.8293816565625232 1.0094210846760352 2.6389113659976213 +3.8364895944128152 3.496383807286208 1.9580179715263406 4.776194062642006 2.8386243899066637 +3.5436656122952295 2.7551961841987462 3.14205088500383 4.574849018793241 1.6354187632631634 +4.83433628978983 2.450004440793234 3.2251565381718 2.8086392462891543 2.420439014017246 +3.592097299250382 4.208079357212343 3.0041968526297422 1.1812080714888271 1.9242458241858529 +2.5690086276263315 3.9085246049836315 4.67968110996242 2.430694561413551 2.617679038604473 +1.1318601292236479 4.949362566525766 4.561311561905709 4.381874236149678 3.8217172334805314 +1.4413710870735676 3.52291473693075 3.493123174787953 3.0030764236434226 2.138450323147131 +3.6426565631787406 3.532947945647808 1.434275420578249 1.3115181163842333 0.16463698397848084 +3.6443249009425553 4.119321870719219 1.8898692997004396 4.110071860436946 2.2704452277026976 +3.279125902814516 3.763882254829973 2.732568360031695 1.982125474430612 0.893394227297565 +4.570004521567839 4.5284400682490675 3.9623008152672305 1.386171415413775 2.5764646880112707 +1.14540603723901 2.986873620268332 1.9429466864368878 2.6329079773334456 1.966481487907653 +1.5755610330550267 1.725991571992663 4.8646592283875645 1.684379758833975 3.1838352425194882 +2.930165276119605 1.3076456884417103 2.314985789062617 4.289024089966743 2.555268484100036 +3.2617455147419974 1.8401957768659112 2.7049919345742257 3.245584043527434 1.52086931901398 +3.862703526730304 2.5262345149586 4.481296325865705 1.9173671926778488 2.8913460566724742 +3.3864426610873566 1.0982066651486786 3.0418459064177235 3.8729212877195422 2.4344835720364673 +3.5952948868424084 3.949583809603929 4.458188436604129 1.6914832419031 2.7892970933870016 +1.1595137070194261 3.2963990331010398 2.966172960950331 3.104252769948285 2.1413418527819967 +1.5264641843509241 3.563581807204345 2.761811043431902 3.017403673134749 2.0530893311540024 +2.50211128059278 3.357246666146317 2.1288259311388154 4.787285025883189 2.792608330227293 +3.8534288874386204 3.865419482474653 2.833556622353969 2.281750692068289 0.5519361911197369 +4.884668353248083 4.908038946386098 2.4261155002614565 1.8459221811146276 0.5806638203007285 +3.4528683862205125 3.623570788383943 2.44244268903549 2.1002495448121716 0.3824074503168139 +1.7309157161286937 1.2094877540885443 1.4265274651510214 2.776957051671066 1.4476004931423732 +2.6380498085880686 3.171032924745587 2.2082850146117026 3.5979928341898164 1.488408151652474 +2.94337034566487 2.3929893303214067 3.8533788036534014 3.078962715872391 0.950073438774365 +2.8650187148610327 4.154051718367019 4.758198932643939 2.185706715948049 2.8773811511665603 +4.450046763595308 2.557568182211926 3.277034925892504 2.523827540808091 2.036859481147524 +2.1037782882770553 2.3142553339134393 2.8890527116478584 4.823454092162988 1.9458184107667038 +1.8628674970903316 1.878594868229833 1.2991790180634206 4.237430406715243 2.9382934797459086 +1.767796905174778 2.9650289746270784 2.381036687142893 2.4294301872972865 1.1982097307993418 +4.8394783190889985 3.4640754997253334 2.2921783284415547 3.7385842310216444 1.9959516403290043 +2.9751751357453027 2.220556556604496 3.3184072124025135 3.5306907735131867 0.7839091212011242 +1.8407501613589639 4.863433796323074 2.7773803098743937 2.6066335011021176 3.027502407890993 +4.560171529188837 1.2652136994712486 1.899724302795664 2.642689261186735 3.3776832339658918 +2.448444986311933 2.9864934132979686 4.396998095905815 3.391953757318555 1.1400044878457496 +4.488430811950961 4.712816022091294 4.388006285834701 1.995431632288355 2.4030734893719203 +1.4248879746114032 1.393606544383513 3.133222189194555 4.690759124723783 1.557851030559367 +4.356141520028435 1.7089852631009248 2.902169458922915 2.4154219303407105 2.6915347675947543 +1.4220820273924581 4.68856110743194 4.819105281857347 4.310095234470661 3.305900302289253 +4.593476392848814 3.9960476739652777 3.0836548556725276 3.9724326447225886 1.070909441762252 +3.454209872506307 1.3187643087245413 3.028656223167355 4.280273586662549 2.4752118657759143 +1.4537112551082227 2.4896850421413945 1.4587258902103102 3.618153535587214 2.395071907696696 +4.614939761766593 4.451680900523611 4.172922190267915 1.907283235197227 2.2715134449322885 +2.9436398939668553 3.6749561074907175 2.2444826930431963 1.6672244665597296 0.931692258315865 +3.673578038774764 2.173358276394778 4.932879258691074 1.1481416269409137 4.071228104223745 +3.912665761501521 1.4691014019960869 3.7893202227697773 3.8309162776381123 2.44391837237372 +4.129689353108043 4.692444606489806 1.4842344182045504 2.3162744434645752 1.0044819952808883 +1.130678075738889 2.15385076932722 2.803936332959425 2.5324606211860954 1.05857518532584 +4.055921392058673 4.950634919497446 3.5116067931055075 2.242191854966963 1.5530378557366902 +4.020539206387788 3.182846150360722 1.6544118086449133 2.976255960651122 1.564928630420243 +4.8456135759764045 2.603633849929739 3.325697880162577 1.8769411543410137 2.6693387088598364 +4.140805126957726 4.053158269179521 2.6183242510324094 1.808037817469749 0.8150129300165051 +3.0031529203333682 2.897720313292899 2.4473844804311486 1.0965343976612933 1.354958294836662 +4.531296921245808 4.332441624850103 3.610836989850477 1.2283614164441108 2.390759981006587 +4.1075440226412745 3.753314393030401 1.8769058970751704 1.435780228361188 0.5657477230114273 +1.503829509656812 1.1861438917407603 2.1779473374367337 3.9718303115701166 1.8217958932647573 +1.7400714710771936 2.851042416625714 4.972506943864838 4.462480001324747 1.2224499678799812 +2.532827221793114 2.480034920544979 2.9388009394978583 1.457932361400446 1.4818092902486897 +1.4651186187141674 2.2148213908536607 3.523645392741483 1.1917177322878159 2.4494776708805808 +3.922021438460263 4.765289916827164 1.4532799505406895 4.941976746708081 3.5891652319440306 +2.971593151656407 2.5397803987437126 4.450100328105016 4.237599887623283 0.4812677952896601 +1.0146458359717796 4.08057685502663 3.3481547143464767 4.899422018043238 3.4360388910955786 +1.0020007547912004 2.0718166928728885 4.20765975010411 2.7196782276223597 1.8326470343797001 +1.640437124348209 2.5532449747677983 3.081831494717829 4.704883653054708 1.862126870132546 +2.1797188828080567 1.0760668439809944 1.6619929386234813 4.417589997823029 2.9683940061043663 +1.4357084523034316 4.092001387114719 1.306082048741506 4.275654529576514 3.9842506038728214 +2.8959366541135534 2.9841369870274277 4.602902687077571 2.3885195985875805 2.2161389309600126 +4.990027191350302 4.9242695108531915 4.566071618658501 3.0074220175420976 1.5600361058657215 +4.60639941776771 3.336186693995179 1.4829344484198916 4.210244251822143 3.0085975349600447 +4.468047970335922 3.273467450726592 1.6344630944282916 3.0454240202445324 1.8487383135561184 +3.5920958872576323 1.6592954030055682 1.2325404788866599 3.026433913164689 2.6370004485154785 +3.245293493918713 2.2401898762198336 2.204452536572738 1.230249470354602 1.3997517267502093 +1.6942124892073442 2.1064132007838356 2.295066356550821 2.131992785640801 0.4432859304709672 +1.7374530332829696 3.2550707179210217 2.240922039240093 2.552123225724915 1.549196441770934 +4.413948387367762 2.4330712331755757 4.115704644371171 4.766076805960687 2.0849120481620216 +1.067744026999304 3.289934779213697 1.1605107151979244 4.648079895004674 4.135368245170567 +4.400571437381026 3.29405196674225 1.6895328101934441 2.6479587424274875 1.4638871563346036 +4.483418524697244 4.417633915192305 1.671683179987248 2.7755879346142063 1.1058631570568405 +1.3767654342257187 3.9879118377918363 3.1571199942384487 4.342029784980628 2.8674198773554154 +4.850608418274787 3.8413715777774975 3.5163168534469884 3.3719310347305758 1.0195127585584005 +3.8644676967058054 1.9181638600567261 4.532104415573922 2.4530202285700615 2.847927260518504 +1.362192173957896 2.2196859705369643 4.8457799695012955 1.560168485940483 3.395664652476488 +2.4362581392001195 3.0129242009587123 2.1778239527517025 4.729645960895427 2.6161688225400965 +3.5748124717795076 3.7957718111699315 3.988163297305077 1.65827707592796 2.3403403244457404 +3.2874238715416255 4.968103202226427 4.317262345337726 3.220610325090344 2.0068205365960794 +3.8078253057277487 3.5902143984335937 3.9733144116607186 4.392168165687677 0.4720095065100499 +1.6737865303254669 1.2093477097576115 4.947841760188889 2.7550793046711304 2.241408174424893 +3.626025235347498 2.8432462345598988 2.0225650416366285 1.6395370347082743 0.871466246142408 +1.1615214616130802 1.2157598041484938 2.79739621414374 4.449275440428047 1.652769426154365 +3.801294761417746 3.853079812976771 1.4988112900463055 2.3714679142059434 0.8741917840237726 +1.3294916221444772 2.3832748833412367 1.2524325045053852 1.978694839688338 1.2798109786542202 +3.4298115902500403 2.960143201675886 1.1752960166704112 1.6703771718562317 0.682417574103986 +2.642770317502481 2.964561961949954 4.635126633326104 3.7630613502184143 0.9295416722438561 +2.258322517662596 4.55952371040898 3.4073417903984824 3.071876481368935 2.325524436134712 +3.427814475230481 2.526290865700927 1.187857938577546 1.9933011406403902 1.2089183472379115 +1.888389469958296 4.495887322360582 2.924259810611942 1.7977454629610996 2.8404365202809476 +1.2435881509218905 4.2702962506633595 1.3959629867970684 3.639024814117676 3.7672653586153815 +2.75641165659473 1.8613131784363657 3.679978769293841 2.3078576895157656 1.6382666276198057 +4.434852726987842 2.8438850354348384 4.962732308990376 4.949278264185613 1.5910245777130851 +2.957560007385322 4.848503315001945 3.4629935589407186 4.3877508736428945 2.104956694023721 +1.9341893480225494 1.3383762866595417 3.2850590194025022 2.4239691184525136 1.0471241672355864 +1.9602396348151263 1.1837423342835072 2.1660705393982402 2.677072564449038 0.9295542627189162 +3.3157877125634134 3.4865521638359027 1.4531924856996858 2.6856804362708644 1.2442616469704184 +3.402514886172369 4.267235323958107 4.128475069103514 1.723922926959073 2.5553106347009513 +3.8164287353216904 2.0645448351999134 2.2149609769152967 2.430587584029259 1.7651039723487587 +4.92763931662137 3.1116586519813474 2.2454823253245726 1.1449697240702092 2.1234202975073173 +3.7345187540784113 3.0211499939217235 4.469775550241373 3.825444852506288 0.9612788544492546 +2.816877194767248 1.2274103111077124 4.120119182612704 4.213201889322317 1.592190115701873 +2.771023618625758 1.9634181969103803 1.3198763323427452 1.502340256079993 0.8279611105901445 +1.0635721077304514 4.350120100021797 4.570535848712542 1.737394482994838 4.339134441772351 +2.327199921462421 4.343669688761487 3.58835477957311 2.2576413782531235 2.4159777480108873 +1.9143285635253697 3.8245764437058765 2.0856534285996347 2.5215168163866575 1.9593427103361218 +2.5283258740736825 4.016137608914935 1.7058760519963112 2.569721739971697 1.7204107448411863 +2.4773649166941625 4.389433655530606 3.8124350801892186 3.931617935088278 1.915779584121691 +1.4189458627464147 4.4779738138421745 4.221310300683182 4.959249848477553 3.146777205615943 +3.3819579905329706 4.587435528012469 3.948199985958998 2.551584120487461 1.844915165815069 +3.0365985559109183 1.1013587489453545 3.1510345690936323 1.1728928742927152 2.7673448782495393 +4.058019953825558 2.032721148524638 1.5792424086801016 2.272852825540926 2.140778050413256 +2.951075970113784 1.9301066008203551 3.861073870187955 2.973496016338814 1.3528388298976592 +3.6566306168404683 2.5643327180235564 1.6288659235277354 4.347569586407412 2.929925648598478 +3.5908573957833467 3.388808292799716 4.310154206110109 3.7349566318830125 0.6096524332873824 +2.7686700235801163 4.98459174702954 2.936048596782018 4.448843938368732 2.683068920095332 +4.628602592146923 4.319981535335106 1.7269070437805225 2.98415583605329 1.2945738613068687 +2.9859231578105723 2.81394500794317 1.951468516673252 4.267699926386837 2.3226072477660953 +3.648570092876893 3.3176904004782486 1.0996538242497267 3.0895237726014675 2.0171920538697306 +1.6911803989203764 4.4905122068118 1.993142468291638 3.035243233670181 2.9870106420759894 +1.2248543648386248 4.750707340962041 2.0903378296038726 1.7785411468010497 3.5396124619292997 +2.464144232986561 1.0572734280072038 3.896825932358105 2.744856206012243 1.8183288240361326 +1.7023585031783681 3.693098294644051 3.852390581970996 4.506372798103215 2.0954087086633097 +1.7927623738759886 4.0235230642497015 2.5086953759178443 4.852455529695522 3.2356614341047134 +1.2905946668509443 2.327517407202384 4.081724172534836 3.7511160057800446 1.0883522083328094 +3.3929370651076245 2.1163246075345548 4.249270650949668 4.284987480917897 1.2771119993069253 +4.601742695883695 1.541341682624651 2.5943070504085743 3.122658440801613 3.10567376807147 +4.310291992539939 1.4401145046052717 4.732013521498288 3.9714023033561188 2.9692504504353745 +4.302039742798186 4.188514841135415 2.7680717183038106 3.9097600520245326 1.1473186805118882 +3.1175752810046578 3.484577987385418 3.226632824541014 4.024803599779512 0.8785030295540402 +2.4686928810798325 2.4606025910628877 2.8728253795578977 4.884819151403144 2.0120100374343606 +2.036401202482786 4.278721638653465 3.182356608355333 3.173967034662344 2.24233613078312 +4.831230942328297 1.5949816070587461 2.5170629737467385 2.6683217761661413 3.239782243506801 +1.2155912516397822 3.2923204224075806 1.2320473580213336 1.168532931418515 2.0777002024124154 +1.368915224442902 1.4606201199926727 3.33279844215684 4.942242847105842 1.6120549247744138 +1.814385812214503 1.7227875155847538 4.621761976823693 2.446689447893237 2.177000402860184 +4.084075831272774 1.7778108861306756 2.8909302824525143 4.7589656491827785 2.9678972570738287 +4.6015343143412135 4.333472134393936 1.147372210644035 1.5633696471432792 0.49488503664187417 +2.035727129903815 4.777972119281368 1.8941709953443016 4.479285696436631 3.7686503684435864 +4.510952259816584 3.907637498080507 2.554525323656834 4.513208298144616 2.049494497742544 +2.085157428978034 4.408212439294532 2.1414290700869643 1.8907029090602778 2.3365462094253058 +4.636496533711938 2.6919083173303306 1.8355336687619976 4.745000762901009 3.4994888345539703 +1.2938550569996128 2.9679239567510205 1.9444595189799299 4.076164583423219 2.710474711722664 +1.0821429638298334 1.933033958372695 4.870246462224939 1.055884986313162 3.9081157804642905 +3.587004890163866 2.2041054371313002 1.6789919335303591 3.395542728842449 2.2043043188462743 +4.922646345467799 4.105854760784155 3.5939632986151238 3.7309431858758497 0.8281980332770537 +3.1508982258141014 4.987815528177258 2.6023022994746317 3.29846731936075 1.9644110849397525 +1.6926851929941793 2.6198488899771513 2.9283295293078986 1.4505478355987025 1.7445547441296168 +2.629246493798665 4.388968539867054 1.294502100123602 3.4039935825534005 2.747103200439144 +1.0462228711907882 2.455056495829933 4.35941654702996 1.5104746190144942 3.178251451839258 +3.931286780896336 2.5484411813720906 4.057602174610768 3.2822635622299416 1.585374377228355 +4.397536798224983 2.188836732258997 1.590251346993068 2.834117943592591 2.5348688509534827 +2.013709557688731 3.388461629979379 2.332383633648894 3.2185895549607353 1.6356357159329824 +3.7309810749815497 3.640014312007237 3.9550850646329017 3.3764990625884295 0.5856933615193456 +1.139815646623107 2.2001244861280584 2.286964664306715 2.0272286030519897 1.0916582142083002 +4.706906998824595 4.398845544309546 4.480743495534882 2.555378000288123 1.9498549048697762 +1.009295577226228 4.500486080321654 1.1134564208342694 2.745377510513927 3.8537744578328574 +2.951680862311995 4.789385950849932 1.2725303980038145 2.3875018053138057 2.1494932499445194 +2.980138662419979 1.272576253668809 2.2319053868712153 3.18167125985095 1.95392543185687 +3.735249464227355 4.465238267721322 4.0268069225462195 2.1269493096813257 2.035274576657225 +3.292558491686813 2.8880264107407876 1.407655018066635 2.386637387830823 1.0592698829021936 +1.7869437501263636 3.986172986110585 3.530968387362878 1.5311593750568981 2.9725149819820857 +3.281167784537109 3.42617418832102 4.019443137026535 3.142115945979279 0.8892299237481895 +3.8020911063454728 1.3379831050705406 1.34790413780881 3.9155817952330714 3.558763379937318 +1.2414822429139623 1.4736624412369292 2.2195474402370703 4.884354530488713 2.6749027034172133 +4.618327084610526 1.6779901324859763 4.650650509259477 1.3544928701100898 4.4170393448725305 +1.8527314856914967 2.692920621785443 3.4847906302918927 2.915023622243915 1.0151611831971492 +3.9371439814387474 4.762168157933882 3.352922262798487 4.598620277810079 1.4941313317126097 +2.054815612254528 1.8103924488303234 1.3652851864151692 1.2246445091646403 0.28199731012153806 +4.783773810794093 4.055232427639731 3.7968681591556446 3.6756614496673388 0.7385550848741439 +1.576216453801781 2.6316088789239105 3.2955955325455872 3.687297679112305 1.1257369775529913 +1.114827676772273 3.4222104905562274 3.297127075540558 1.104603214749877 3.182950883925486 +1.141858983772075 4.997417138819543 2.1918395745826404 4.1069676048173065 4.305002213604953 +3.035124414818995 1.3882423293055117 2.908792248066771 3.704392053842577 1.8289886972137743 +1.6945877842352433 4.250745155385774 4.953601102849261 4.856678975314726 2.5579942151797397 +2.5425449829431424 3.8161686565142965 1.4559922534904044 1.487633161144656 1.2740166438936606 +4.427872277211798 1.8055301855637285 1.555927818658874 1.0649404997862173 2.6679105294074112 +1.281722143849771 2.3175402564272165 1.1637943906782398 1.8492652519422013 1.2420907631833749 +4.969656692376299 3.7193421010268617 4.925522803540645 3.1648058325168673 2.1594931880866066 +3.7664249779965435 2.3920544391798986 1.988542012026807 1.0246892485874164 1.67866212429926 +4.39208409906839 3.14663359456386 1.5810087627192626 4.796565211499358 3.448325714671084 +2.306458150581194 4.373081523407201 1.0106109602111641 2.3968105527159334 2.4884697055361413 +1.5410006140198673 4.891863458295662 1.7409975321909026 4.948299920984207 4.638434047640141 +4.051561314530623 1.530343231480181 1.2378702989456092 4.6327166349099755 4.228654900451351 +1.792884609001979 2.162258498516132 1.8525156226745487 3.024152708704478 1.2284830204831965 +3.391188970218942 3.5482618160996062 4.233029317225672 2.2029381800847694 2.0361586146494317 +4.621002940276721 4.225733558049702 2.007866765852524 1.2771774008571648 0.8307495607241994 +1.7148871418614906 3.5041431514464843 4.314539044444178 2.1859993680429275 2.7806686645212433 +4.524257286780108 3.193108532811711 4.3848430958354605 3.068077850573331 1.8723855682849757 +4.881168717104254 3.8290823854465614 3.501007625179469 2.8186886716754582 1.2539716119481128 +2.346175658609571 2.3350665476521013 4.94139038890804 4.932167567821034 0.014438586325132102 +3.019121361436366 2.8506316803661464 2.859542117276458 2.4010236709945243 0.4884955866821551 +1.6210905016548192 4.229031603905618 2.5286533406101537 2.2727521519429392 2.6204660293868347 +4.702958271922483 1.64184802425856 2.27311594151441 4.338563360972513 3.6927589944239827 +3.9574248066995423 3.0904313617903973 1.731071376448611 1.3490268655513655 0.947436352385817 +2.5194401964553217 4.668213039916825 1.457942366623362 4.201325889618168 3.484734980889799 +1.408219867366172 3.1646076031409436 2.63477081194158 4.142740181292177 2.3149232162816253 +1.8232673272450088 1.717781336488731 3.382634942785089 4.264401213527371 0.8880535177930354 +2.52771973268708 3.856738916577418 4.2080775574327145 3.188367535864582 1.6751419400262835 +1.3671669739848964 4.815858102864006 2.521310246514984 1.4846751518484607 3.601122439171395 +3.6319968443501303 2.987102653378443 1.7714726389920408 3.107535137186001 1.4835604189345688 +2.7031557685420715 2.9160021615678278 1.9983724437278112 2.2113750092926256 0.3011207066298626 +4.2389624535671215 2.412538081879256 3.865070374940998 3.582962028246807 1.8480830892494917 +1.36879328281427 4.174346869348107 1.4278867160882265 3.877216429262602 3.7242914723141296 +3.8046848469190344 2.186640159546538 4.280412198584656 1.6363738533213144 3.0998398961167775 +3.2451258179755578 4.757867070725297 1.1780462189060943 3.3447442031167487 2.6425302746711083 +1.2224624887000552 3.5972747645762633 3.3127917016294974 2.7942184742572214 2.4307717987914113 +3.6374231250989264 4.558924715534469 4.500100430539956 1.3614932697334612 3.271088517763016 +4.831170807068637 3.628493336625564 2.0019069642293768 3.0997202556031134 1.6283817490466372 +3.7228669648583104 2.4719730220187093 3.1314967599711547 4.232967963171497 1.6667256726025468 +4.9284975456339915 2.3542090149624446 2.9364945750660114 3.906070479923292 2.750825126107962 +3.635425752606227 2.1666618654174816 2.2332273360308785 3.3436889804156027 1.8413018275012434 +1.5650976591008163 3.5185822238110016 1.7895768910974437 3.4466165754434153 2.5616171571994006 +4.224895586371446 4.360722809993696 2.3071397863117857 4.7900010877405865 2.4865738028077202 +3.790348429133569 4.9827923376240175 3.508831643706764 1.9728652507403415 1.9445089959211452 +2.810247190292821 1.5376984073421562 3.111820885170486 4.090454983726046 1.6053364456851003 +4.595514452349901 2.144228249706536 2.0051909853358896 3.8738491698910016 3.0823185198766425 +3.698635403800136 2.107747874671377 1.530568125765376 2.651493297721861 1.9461234214363392 +3.230716957792569 4.006508052855385 4.680334798472952 4.548030225431408 0.7869919461001293 +3.6394826197124663 1.6207583686382598 3.5887600043052656 3.9398735356521155 2.0490310670582748 +3.318431378468951 4.204929777192264 1.996436742003867 4.41767708879363 2.5784266962358284 +1.4539250055175534 3.1485021369572017 1.1176320810205835 2.445983665927878 2.1531626941603714 +3.973327376669972 3.680897493684087 2.875427021477781 4.797230785533579 1.9439251384768328 +4.240715655284035 2.236213776759544 4.317238142666322 1.808322982914813 3.211336646918095 +2.3877677782199362 1.583091953408902 2.6015130639756165 3.3808807243484598 1.120230839189119 +1.272772358605109 3.9975860043714326 1.9763513022364525 2.3175710964717458 2.7460954739652332 +2.715673016027155 4.667109613622394 1.2895132003284506 2.7687831939951826 2.4487434550391054 +4.546434944364075 2.6953844222823635 2.802508538433278 2.822668860624842 1.8511603047520877 +1.8375373659499101 4.004847775005201 1.2390270683307714 2.2757081018323295 2.4024866231513697 +4.293425937362137 3.226460995709285 4.193742583190838 1.1726901373572702 3.2039307213473354 +2.324510444456595 2.49721678958881 4.868511405158314 2.97822794415975 1.8981567492105695 +1.6391341771255092 1.4956464414189092 4.088047556218546 3.576048865990549 0.5317249186312333 +4.640797870350868 4.295670112658806 4.594642333428794 1.240295585010705 3.372055052598127 +3.2944660293621557 1.715028170305708 1.591274840330887 1.7791237633962527 1.5905694478763361 +1.8230986356910779 2.3237490195657218 3.1184439228169527 4.277692427575594 1.2627382557992661 +3.586204727779849 3.407006304570009 1.8801184968220626 1.4950553986434731 0.42471833544101545 +2.1792575486549803 3.434270238831705 2.026008749244474 2.0334183718245447 1.2550345632736168 +2.643936283558804 3.0425983402664762 1.1050532002067155 1.3856912140482591 0.487533722188853 +3.9883862062587103 1.4461124177469689 2.166124602384603 4.578250118649004 3.5044978986964233 +1.2436672351777402 2.6324149206468066 3.8218756975552215 1.0033908530900661 3.1420498010654545 +4.7003994989858615 4.2264718527121 1.855073371945681 4.694635053255515 2.878839689157025 +2.99006690123886 3.379368607926245 2.0947040929743204 2.2937768502476357 0.4372479634236286 +1.6726825366762221 2.6642554931768103 3.1202107473830893 2.2984052021249815 1.2878591857343307 +1.5652558934485246 4.312512682605558 4.191794309416165 4.948517016096268 2.8495699886780588 +3.201574370079619 3.906166597922849 1.3149976437955475 3.675768696019724 2.4636741197968393 +2.2160783176760277 2.604865731243351 2.234343578013104 1.76317801954321 0.6108622074057422 +4.675910593585421 1.2139429290924189 2.3100424892508284 2.059660234658358 3.4710101387650742 +1.5370637996164254 4.398259003009924 3.1630677058326104 1.42607338095757 3.347176015176086 +4.289823797656716 3.3840329672525535 3.047840231320397 1.3210719970908849 1.9499193735096765 +4.3125282290890885 1.1355503557881104 2.627863870405626 2.7435727356383945 3.1790842940912185 +1.3122570573670833 4.939145079180898 4.780893158936291 2.049172478206982 4.540552235169278 +2.464630307486428 3.985083122838551 3.8151272755707826 3.7812825848914207 1.520829453554664 +4.874103294454298 3.4315380694309687 3.17412235605877 2.9729452145264905 1.4565255475691827 +3.6536674612245923 2.553931253606568 2.954087941539722 4.858992933635353 2.1995642193982263 +1.586622637020274 3.2602815028539545 2.6797923824417147 1.8678125502050338 1.860227203097189 +3.810902641503812 1.4056166474487504 4.2429980294235 4.886669708165927 2.4899224773499555 +1.0780216409329517 2.760877702749233 3.3747557528549357 4.230930003161408 1.8881310525701474 +1.0085758749592548 2.659468755380292 2.9076287527556732 1.8063459458382942 1.984507778628416 +3.1544698079896305 3.592183530312398 1.904029503124217 1.8603256142277225 0.4398901369823264 +1.292310839549522 3.6217791584332564 1.5846391783632274 3.196365569350267 2.8326815225307485 +4.518758272607101 3.8537994241261218 3.2143705087565375 2.124632617725864 1.2765966243575655 +1.246394139777112 2.8563548691732144 1.1750689754632986 3.0672061623384574 2.4843825559187676 +4.717828641686951 2.847560358539186 4.098068822536935 2.503986221746619 2.4574382574320977 +1.9051396997626924 3.3721532568436765 1.9897195831726218 2.7707280413606363 1.661957577202445 +3.5292461113255498 3.9853592757622 1.1808577906568738 4.216966202966956 3.0701780909374725 +4.462353232555945 2.9171679718192447 2.9335431141121475 1.295020675960859 2.252188551237038 +2.145430771050019 1.0921195415003813 1.8835368572525208 4.25863197561914 2.5981803955045764 +3.9552094692376056 3.9862381633210124 3.4560706381586006 1.5683997876351023 1.887925851237974 +1.009946126001608 4.970428191078725 4.642719555159891 2.5625049082761806 4.473556880705445 +1.958389706301653 1.883666427141344 2.345748366332305 2.7032781248573676 0.3652548379959657 +2.4603686703342516 2.7695332650215545 4.847420468517246 4.546695374940581 0.4312984216466111 +3.389056302162267 1.843732120137875 4.2235722203142405 2.570555838336939 2.2628499699791598 +1.928006078897238 3.4094949420291605 1.9042246002681722 2.9111620032768877 1.7912934391555875 +4.2711554603776865 3.0934732567392627 4.68238029242865 3.2896554397925315 1.823901830668787 +2.3739927688653952 2.1436085120076713 2.8032145048704633 3.3544289087045143 0.5974229865028746 +4.889336263378173 2.323760487030069 3.1349094559531703 2.4211221369180014 2.663019226554624 +1.1011814552688848 1.1690423709840014 1.2935818347681551 4.840972296943878 3.5480394861129976 +3.298398294625669 2.4773405128046853 1.2133270701655592 1.0207591128105276 0.843337595087924 +1.3370636917173164 4.056312367515387 4.019376512164239 4.326275914855476 2.736512489319535 +2.437436245745082 4.744679672322789 4.348912405558674 4.947238162755113 2.383561608436151 +2.707370693689142 3.450841390336231 1.5475344431780473 1.792693060735301 0.7828482768298666 +3.388204417310029 1.413902689242744 4.402764214642612 2.7987966106404985 2.5437333563362627 +4.878017242789273 3.6062698410305383 3.413447042229826 3.9561600421806387 1.382707074616928 +4.830236352742311 4.802913054329523 4.828648958548605 4.8182428328854305 0.029237819471910603 +2.797747030092263 2.066626265807152 1.0000586498915158 4.864789238119157 3.933278542329696 +3.774298743892705 2.1793043528339084 1.2482850685398388 4.890845859219345 3.9764627775580563 +2.261758966538423 3.9125863849430105 1.0919973052659948 2.3093844189228947 2.0511612686120593 +3.3492302794608664 3.0433537134597395 4.904549239840218 1.3988640459158121 3.519004000072953 +2.133136686690078 4.2074082164374005 4.661842320793495 2.960179142460782 2.6829573145344088 +1.3986491363898597 4.3689040731756075 2.72805731787623 4.484830192342274 3.4508934092434376 +4.186465340965866 2.0306638494913423 3.27164428865177 3.3177655805417907 2.1562947952933955 +3.122478536104966 1.8426207214518016 2.955896213804741 4.248213455190127 1.8188237622460037 +1.315972811930045 1.7008140831074248 1.7442159214944022 3.069206478928506 1.3797473614002524 +2.43034588365233 1.0375138342142916 1.3132447079756453 4.083715731621415 3.100885488179563 +2.732652237647365 4.471215500999979 1.8014896248905141 2.07360372416854 1.7597296109644749 +4.298558042573223 1.9086413522714354 4.436502062374743 2.4569324575216522 3.103288192714507 +4.154987922555777 1.1975597725543978 2.2998140099655013 2.5056638525437562 2.964583515455429 +1.5165004769491 1.716542917977673 1.2268407344467263 1.099014232538289 0.2373954355138654 +2.802256207454944 3.9318237917550483 4.525391210548982 3.605728937254562 1.456606200873329 +3.5621411182958354 1.123641570307326 3.197472987322152 3.0288183601674628 2.444324943374111 +1.484179786326857 2.9274184060545267 3.2417263401486984 1.1262882167861186 2.560862387409605 +4.192299183201276 3.436199225018044 1.558227988255648 1.045388467205563 0.9136145363968139 +2.267696514784392 3.967599179015746 3.9766535599844413 4.445929013576746 1.7634876010919724 +4.44943876215655 3.1414300344130104 1.9992725248631205 4.541662438349823 2.8591315646629827 +4.842684272690818 3.259880330716863 3.8394121813371713 1.8347054039137891 2.5542352245193727 +3.4475576659577634 2.848619626858129 4.655202934144393 4.5032043251445835 0.6179242282176609 +2.0511973628224753 1.6846813469833042 3.508250020603475 2.141517971322728 1.4150231391739745 +2.4602722627555975 1.191730040558546 4.322934639278848 2.5506599617764802 2.1794854672634902 +4.583632617666863 1.2084095286410186 2.7007339377537063 1.8989890991110814 3.469139041171924 +2.6285875134170436 4.9699842336672155 3.992489400197854 4.2275452403592 2.3531659205402873 +3.5746309210157245 3.7802140411879255 4.704436891911059 3.5881256913279262 1.1350837483847143 +2.5390299888784003 1.430623157975293 4.507143141451202 4.33361291600298 1.121908392845325 +4.8197566905469 2.428572114742895 1.2571438743718666 4.963237040954892 4.4105430771001854 +2.5607350392954404 4.558507100907438 4.542965914949828 4.321782574570712 2.0099789253170575 +1.7830342806896153 2.0555531203227804 2.2125000428177026 4.1034811003456095 1.9105171755010129 +4.775080806331589 2.6176461439601817 3.199175928587826 4.984939708708882 2.8006207527606928 +2.882722560571077 2.884869472492937 4.178738143619986 2.059008901243112 2.1197303295981866 +4.816864335889491 4.639743735435523 2.5497087838058854 3.0797615254319237 0.5588627881783272 +4.481603577968032 2.3464062708792137 3.969460551632782 1.1926380379716282 3.5028289727839685 +4.7617308075154465 2.584679072580255 1.68251240914603 4.0613853099205635 3.2246845635850603 +3.697249170605188 3.0367247915456983 2.37266012803912 1.8225011668675242 0.8596320944970202 +1.5392464667549515 4.873075822724979 3.019656779043163 2.8574775758024504 3.3377717520362773 +3.6348210699532615 4.43919472481556 4.329690992469796 4.32747190555503 0.8043767158385848 +3.8183513401029745 4.8731697384486194 3.317631429764638 3.2257388155801894 1.058813536950734 +3.658769489989375 4.65906533659133 4.416088955800049 3.2860052258265813 1.5091987998537064 +4.861667954797934 4.971147983805852 3.0108682199159613 2.0332458341423263 0.9837334018509836 +3.3461550729713334 4.126999342659605 1.2811703543650612 2.3092841515628715 1.2910212056715067 +2.9812387970647403 4.286648285467971 3.7642336506932006 4.0590398604078555 1.3382842126019063 +1.3569078558640313 3.5638442898219598 4.625248135621016 4.567082701400584 2.20770279731421 +2.6739912366862755 2.8979950535841885 2.7102336378099645 4.624530168478511 1.9273580148261162 +2.953132725190063 3.0835160353531332 1.7254578424990017 1.455613062808621 0.29969319761254076 +1.5692110277256184 3.021420073725597 2.5943117161551394 2.819296785159815 1.46953373372618 +2.769335041985178 1.0371550407796102 3.5209750110273865 3.150189874318609 1.7714201009869646 +3.7372807068159752 4.706663445837634 4.448840577351781 1.937396239294158 2.692035578864965 +3.394330002165423 2.6065021129698147 1.8258161296824413 4.5857779248944235 2.870202413423861 +1.60545003577358 3.236450309679041 3.5989370221215844 3.0384123477405867 1.72463033838258 +2.478519264405412 4.83556058211386 2.362720829338158 1.275580158424329 2.5956730556331142 +4.831474093659249 2.6222423806319535 4.621709155550814 4.63060271360343 2.2092496140591167 +4.336596875711308 1.7855753429197807 2.4776784119755164 1.2337251377347638 2.8381561988834094 +3.541467283779828 1.1676985980527088 2.481394719042652 2.442667113475255 2.3740845816380762 +4.990973856298641 1.3581622452982969 2.982969521194751 3.8380660782484264 3.732091949952997 +3.0475431485564948 2.5927770315113636 3.709943190146771 1.0255062002826447 2.722685103673041 +2.5576184217588653 3.1939601431838636 3.2832042325188735 4.166919063933516 1.0889824101831675 +2.727272073731659 2.284497500483091 3.6130329125552985 1.528447743137161 2.1310900148218743 +2.0467633793255877 3.855245830742896 4.2525465354032495 4.30161638067947 1.8091480389398178 +1.6425408241910646 1.283847528237652 3.21723687872856 4.821634020210663 1.644004582766686 +4.582373460179555 1.6819868665269255 3.8432305450257935 2.4794182920290564 3.2050313967360666 +1.5527420829714238 1.0474254722082739 2.7204871996287627 4.5282832072064245 1.877091175762885 +3.2481592521260994 4.924231093657069 3.9504306553215613 1.8061778977193876 2.7215871667939537 +3.5065153402618536 1.137332517757216 1.5503202865145465 4.859823642565654 4.07011544187196 +2.703949047465931 4.4038901206527346 4.276313064205568 4.269381709784728 1.6999552041102757 +4.731378510085589 4.622145594724088 3.8873601737435233 3.861790064388456 0.11218582927804609 +2.746626866140909 2.090061336320498 2.775233375973578 1.5511991017975526 1.3890061912410565 +4.080655165916497 1.6580682253961552 3.9758947543048526 4.860960044562695 2.5791991106541015 +1.8271343785052627 2.7770914903405397 2.488865626633795 2.0601695665386455 1.042208628954647 +4.823683377152044 4.730414791629864 2.093282408485401 3.2577376395080373 1.168184494889951 +3.616073911106052 4.088394870700468 4.43337343713437 4.605393883527431 0.5026709886689883 +1.2294725700642548 2.83069494092742 4.042580699306054 1.8400883387486386 2.72302876945258 +4.148417798450895 4.306907771091835 4.330470272391306 2.2433469811200406 2.093132271117792 +2.1531236047456184 3.354135596177249 3.011605389356363 1.8808118165795005 1.6495829496560739 +2.5439675750889976 4.70689561196014 3.5615978955350287 1.6795802972769236 2.867097475293866 +4.278292792264633 2.1997022763730003 2.0045831585265943 4.230890832924658 3.045814241518737 +2.881031067228754 3.9494162731174387 1.7093521143259833 1.8503888034552367 1.0776540705821833 +3.8981069845658736 1.2703062663937597 3.5470375192063024 2.127132445373878 2.9868824940263283 +2.6373606042013984 4.047253018970471 2.6013653999204216 1.3625631334482815 1.876813170414114 +4.918090400252764 2.5252436985716633 2.9181670161105275 2.7443437942486195 2.3991519022780894 +4.991812043711535 2.760476591393699 4.619045175778188 1.4350985164838748 3.8879781673772116 +1.2199227646928805 2.4083065010514315 3.342596908913003 2.230165394779112 1.6278082744843545 +4.708257417175858 3.1738169644090326 2.2657222335581406 3.7377239225107037 2.1263340460441436 +3.9451736420835655 2.821001783696785 2.4766707180654435 4.4855552835014905 2.302038132706746 +4.9093573316643155 2.0523173864880278 1.7866094226285436 4.660065102069527 4.052088941526898 +4.1632009073683935 2.722152574018626 1.8428109202434557 4.132573526480067 2.705482044288896 +4.343030298189033 3.1898554317835393 4.144362470806629 2.204061155211224 2.257117956113634 +2.1062461725682855 4.422856710756002 1.970912434249863 3.87576162547205 2.99918902821116 +1.9882841528600772 1.3612149263131372 3.4036004549700083 1.9307398192872696 1.6007917625431294 +3.94050165765799 4.538803450051624 1.2797272007693135 4.7141958956716 3.486192801760289 +3.6374866076722876 2.8404971477406944 2.908850606871111 3.675743098305246 1.1060362980752971 +1.4570103324424823 3.376207524420162 4.306674876534217 4.416955843952964 1.9223630649463241 +4.525987250607814 1.6162112456261957 1.1572342641501985 3.2173265258822354 3.5652175986908583 +4.443661125091629 2.832418341865752 4.524341084574008 1.551546616135247 3.38136218972141 +4.562846550483801 2.645898701636395 1.300419706402253 2.1166998832885264 2.0835072311797203 +2.7429319479330165 2.202684495685006 3.9073202626525583 4.086051023899621 0.5690448090233502 +3.632202428448692 4.5784274792232305 1.4678992849451826 4.887077185877219 3.5476921181149983 +4.664216088856776 4.694659774824895 2.978764835577034 2.1563969983843614 0.8229311500145562 +1.3704018419651933 2.2593283607872876 4.253238299151711 2.4396292864518028 2.0197445399880407 +2.1364539140430217 1.3344494036808756 2.4487592794327395 1.9291714546111987 0.9556059555821144 +3.2404402670145456 1.0231133491770854 1.805240026660055 2.037671008063748 2.229475907401301 +4.781093676838745 2.887724048599381 1.314397489869875 2.0799077222504865 2.042266991609737 +1.4892830666165588 4.64356043977374 2.3581377429138213 2.48460449806536 3.1568116172761918 +1.811496781648183 4.161163850942655 1.6389250661739632 3.4485837607726535 2.9657713882670573 +4.355949137255018 1.187172738081173 3.7720893030826907 2.855054052920139 3.2988024369461493 +4.350333459538717 2.2561033403533157 4.4381690029293095 1.8248153938747165 3.348942650757395 +3.0315394051770728 1.8805722666629543 3.049347543908677 2.266702536850761 1.3918543605607818 +3.4983660719415783 2.4488786041504613 2.604058451141285 4.455912977025399 2.1285650401357454 +2.2931123643884535 4.6466281290520435 3.4809567785901927 4.519769413343843 2.572580056022332 +4.858893379323877 1.2258486490680176 1.379406718090999 4.186421521395017 4.591115999188843 +4.284051890667957 1.4136368739096632 4.889229415044027 4.149944039032487 2.9640892759186657 +2.658483280978127 4.978058637509227 1.5360330604522132 3.493074520679307 3.0348708558477697 +3.4460963628964754 2.5114023048376235 3.564106891685561 4.945072302923862 1.6675486347351591 +3.5298249931540386 4.260340063278287 2.348375398643706 2.1950034238987897 0.7464417126044005 +4.339415482807912 1.0027305365417436 1.005245214960878 2.8898722777975103 3.8321385148002536 +4.506667712639937 3.1439887996431266 1.0044191185699636 3.1465423057845876 2.538815780857033 +3.3792110837730736 2.881864352191323 1.9234039992714935 1.611558656515752 0.5870275029447051 +4.868872150014948 3.3651350231707786 2.0745250854534034 2.6418959793477756 1.607213451252837 +1.8233214999345506 1.631725770302106 4.955295795618577 3.594473451051905 1.3742439292517623 +4.272757226808224 1.1068502429101272 4.770784806416416 2.885166844917119 3.6849046293525034 +1.2844668806919985 1.2531768171748565 4.771278968463543 2.850641967499538 1.9208918651363263 +2.2598248326658625 2.113709505304823 2.5849447484797277 1.6749772044894735 0.9216239037728345 +4.417952310572458 3.7939428030782123 2.2204397400608253 4.215787720215008 2.090646174594972 +3.427219630801508 3.0347915557447855 4.687919210207946 4.614162496875389 0.3992991946577723 +4.493914571952269 2.1162754734545857 1.8407742416983046 3.3712128940952546 2.8276156300769504 +1.538143689744376 1.744444814285433 3.020458133650423 4.765474086312582 1.7571684122565852 +1.3618506257139606 4.1049248303290256 3.3257289726238595 1.4723078694638723 3.310532567074874 +4.7447972015105275 4.927257102458541 1.217358672713884 3.3847682176426095 2.1750760333611567 +4.618077463851984 3.516701160276687 3.3647320518436397 1.186433475482029 2.440904432757703 +3.108763601382847 4.2370958907375185 4.753037305999333 3.341718952887465 1.8069181633462958 +4.353233897048579 4.052362544583296 1.4811007048646574 2.3183712150402216 0.889688416213192 +4.4029180343255785 2.082340431540566 1.1062188778729238 4.198332246950731 3.866037441331517 +2.6694249360509255 3.802785179948659 3.9801255433372917 1.229324617166316 2.97513212780055 +4.229950166634811 1.7537304187574034 1.6384317513349846 2.309776157516974 2.565612510004171 +3.4772294288357632 2.812673553987597 3.2996370096516543 4.736096486328661 1.5827350817273216 +3.47128842199558 3.9125274332054722 2.9002379836291365 4.618073701025877 1.7735984373520004 +2.5812411023912665 2.843862540892937 2.11961618915151 2.845686699100711 0.7721064728252051 +2.5392154681325136 4.086685422295448 4.97388726848272 3.6947048806575773 2.007727780442126 +4.293796418214825 1.8420976673887393 4.982651457138538 1.110380301704875 4.583155099492679 +3.45050993856116 4.0911015199483565 4.220383982382237 2.137445909561591 2.179217425900852 +1.4262326044780278 4.516994708999546 2.880265663200993 4.884068644816084 3.6834816106335877 +3.7348131985162283 3.337205456673723 2.040311977593007 2.2563904776348793 0.4525282693417527 +1.537043085860947 3.6712912942511515 2.816649338916839 1.04214928573978 2.7755838761857268 +1.987791422747919 3.5077165676923294 1.544520472910468 4.832684240217278 3.6224568191855093 +1.9032581228974674 4.628500870257171 3.491268362231621 3.311585581153726 2.7311598147769662 +2.948948881381213 4.368497028680131 2.8343297337588114 1.4952487734866646 1.9514750217881767 +4.603761607771947 4.795418848878534 2.5927613170130352 4.778822561109557 2.1944466867548686 +2.078955107483075 4.502561756340018 4.4412317148564355 1.1107542639181744 4.118974294601971 +1.0240616605254704 3.801879087709038 3.17922426161312 3.6742668434541526 2.821584097027868 +3.2986754022510603 3.5900773167977484 1.8244986671108534 4.020192744007256 2.214946400055635 +3.625277897238729 3.392366542414267 4.713526046503638 2.793136520468619 1.9344621037671357 +1.3329705364657425 2.9844113977450473 3.5199276026237545 1.8083987728260977 2.3783582264939542 +1.1881926556705484 1.5384680189379094 1.378958547860944 3.87953476869404 2.524989953704373 +3.489433037366699 4.57231379584206 1.7919302382444826 2.5187698128881015 1.3041957308411534 +1.2662001199700699 1.3160435502799168 1.4248220285708109 2.8200228145256774 1.3960908282322213 +3.896807169826641 2.674779955365338 3.5792670638968715 3.111508424546792 1.3084909849023376 +4.662835057800809 1.9838960221258897 2.8365766654273585 4.052536136114816 2.9419843288531276 +3.158270319340174 3.3622263338859932 2.609836690012935 4.691112454038731 2.0912452897234637 +1.6647748890405585 1.3730331544485774 4.815741544643882 4.980906942234984 0.33525042619535145 +2.4284001522104175 4.238358184116134 2.2486508527863287 4.189725834176061 2.654000783842605 +4.888204143199447 1.4617754225412596 1.3805269081948852 2.8651555730352825 3.7342383494117084 +4.190536837701419 4.41742958938328 4.486995191695097 3.138472933289082 1.3674767282049909 +1.2584498447484087 2.4309981286091755 1.8383637670657755 3.6638412018499094 2.1696168654605565 +2.290320765454325 2.8271266666095998 2.538623187581728 4.454910472272644 1.9900546557778787 +4.091516239996599 3.966859329689715 4.203930577400981 3.846282305724983 0.3787500911156153 +2.9366538976010217 2.9061003272601584 1.9004595973406526 3.5682490741146866 1.668069320951255 +4.713026748744584 1.5016161281552374 1.6305025103097277 4.664570641978809 4.418000407610207 +4.36119807899785 2.1903474965084038 2.525567169924906 3.529788871049715 2.391872378808028 +2.0922372044463984 1.8767792969463821 2.864053082579529 1.1264154473984456 1.7509445054318522 +2.94214350506765 1.202794460832353 4.372576910760242 1.365936119923087 3.473503122613842 +4.855003890153359 2.0570972584231635 2.630706325602208 1.122019694943977 3.1787445429613705 +3.525469435987488 2.887403310014124 1.2926036360895106 4.195828129247394 2.9725142285254926 +2.843207698870484 1.3325420455775867 3.0797353870617217 1.0489922326483758 2.531013329723003 +4.314646836372557 2.3771072244735847 3.646036560523814 4.231899722827718 2.0241777077673664 +1.072858532555343 4.600021321311967 2.1359910681211263 3.3983708089877664 3.746262130249288 +3.6985265473182403 4.0863116902687695 3.971716553451018 3.1244169252196428 0.9318229322645957 +3.5371417949919435 3.402800321034391 3.509592556571462 4.218559645783414 0.7215829579547706 +4.679290976470426 4.507582700383322 4.8803286798254275 3.4236137220651317 1.4667999864464771 +4.397901592016938 3.2698296278172103 2.8937392192403433 3.1171324326380487 1.1499786451085012 +1.8703020481427415 4.181242596289167 2.346030146859093 3.3546346549427213 2.5214538010429455 +2.6517225255353156 4.061589915262742 4.918722687523419 1.9184459609907516 3.31502435773712 +4.811018844792644 1.1741165609810218 4.136806437700821 4.77511700543028 3.6924921940160274 +4.149047530018129 1.3038589416989455 2.5049076689025536 4.507102587341862 3.479063465147754 +3.261710796479531 4.871865742237434 1.737234799099332 3.0767538394332914 2.094495215741933 +1.1029319911196351 3.9074344825246468 3.4021623320153385 3.6343231285897777 2.8140953892437612 +4.522167738886443 1.9177800730309382 4.751338454552034 4.353237449345517 2.6346384048682516 +1.0617058553685732 2.142673247966603 3.074411994946487 2.9199209422699526 1.0919514591854744 +3.617240483042793 3.4331546720586013 4.639868943529413 3.7405431599697683 0.9179730120111789 +1.0126674048008462 1.9902078533860892 1.650144707199658 4.03226842443806 2.5748978101761515 +1.0111431320664277 1.881901733149165 4.245178011844919 4.438200991077767 0.891895964713088 +3.2336686264165975 4.713650559451389 4.258165232644548 3.462032137234714 1.680528020509102 +1.1418430976041 2.481565450015436 2.184766832733422 1.6786909427863326 1.43212038178929 +1.6831286690307583 3.294086544723894 4.2567434846077035 1.3544655874749805 3.31939787754389 +1.3911621664599059 2.250922656200205 1.8070680931150824 1.678484368105722 0.8693226524460074 +1.8647959072682787 1.6677110492348586 4.883813755209907 4.372492746266064 0.5479887001147037 +1.1661855906081717 1.386985516974811 1.7242779025939217 1.1494528692379236 0.6157730316084309 +1.9964114791340433 2.906428148841481 1.2134513292318796 2.937851110182064 1.9497910000014 +1.0508485899616526 1.0953875261814439 1.6665652256572092 1.1695238667013301 0.4990328940583954 +1.850753984449788 1.3232268356345527 2.8299874231280793 4.229111778589379 1.4952704955231777 +4.052866747924968 1.2196440306334764 1.4142689586622494 2.4362747754189145 3.0119174715222594 +3.840003108935047 3.5983582879147455 4.226589180683021 1.9370671255201004 2.302238793132324 +2.553774149982963 2.8059630455987827 3.089834144917135 4.20363400951351 1.1419935978134161 +3.408350538683385 1.3992875306194885 1.8173267757946245 3.357460724551959 2.5314712620303657 +1.8649552345724616 4.893183722697932 2.705249465661889 2.5398496383430786 3.0327421385887336 +4.158374959890218 2.2595503980673377 1.8852564389650457 2.9603955690114105 2.182076732275634 +3.59247706277198 3.730746259550689 2.277971248062223 2.194225928681561 0.16165286664949183 +4.8413433216218085 1.1713843022453139 4.335063994468992 4.9307633343438315 3.717990977319633 +4.25022713631186 1.789537562324608 2.6923193127358767 4.876653587772092 3.290335758646456 +2.6435729817612628 2.6199308665706518 3.9347264656369565 2.8915085432920695 1.0434857848156192 +4.2949295198691555 3.782814645220814 4.655850372607403 4.155215130367773 0.7161684792061292 +3.604673683044242 1.7484601828736057 4.134236564067592 2.04667161513924 2.7934666588685033 +4.049602864652551 1.1380464847989007 2.1518216838776882 1.98542091330471 2.916307557428361 +3.950550640592073 3.0544323613703637 1.4919213519508827 3.5811797465269604 2.273329850607229 +1.933399575117623 4.521386738500658 4.56980987180239 3.960148602294064 2.6588276404035422 +2.854414619218702 3.085820302321135 2.2578750915925108 1.628018336131516 0.6710202102559617 +2.5889465973297456 3.664291197904038 3.5102251573223695 1.346169539292216 2.416506306201611 +2.640669241353441 3.7352577482316285 4.823274910308125 2.87164218539511 2.237631402251323 +3.722125632435301 4.138257322989851 3.3681308598546367 4.911490879508172 1.5984760661795185 +4.336027498839998 4.115510850739398 4.236271524229728 1.0614790600314077 3.182441638556781 +3.777745085957231 4.45119761916194 2.077142742681954 2.603997252765028 0.8550520389278747 +4.491204907132342 1.4914405704273195 4.5966796658569695 4.127578594404927 3.0362216472129933 +3.3559806974260007 2.361974622549944 4.8023327763533 3.1495305297571417 1.9286791706356483 +3.9477036671282306 2.4250035597371165 1.5252345622478751 3.6698443735913364 2.6302028172670537 +4.501892131807354 2.91189301509655 3.5793017355575976 2.8538833567837014 1.7476638736908439 +2.3371734689209758 4.80886169624255 2.9593532690821007 4.2915855624462695 2.807861388416889 +1.7871607533526936 2.1376531785494444 3.9911400251687295 3.9241791918871516 0.35683146345867983 +1.6258528421877507 2.1643469748974935 1.9399526784166365 3.2432595392653845 1.4101718705527477 +2.82601065173836 2.3726761440257063 1.424817579366736 3.83621039050978 2.453635560859727 +4.494381968782873 2.1075058015887844 1.9785666384161904 1.5429719385843317 2.4262977105130257 +2.607822545718648 4.168746315694096 2.00419218328037 1.772529312751269 1.5780211346037636 +1.8650919634238146 2.0579315975623445 4.27575138397249 3.1322660282143566 1.1596317878223183 +1.7593636368955785 4.711813336976265 2.8142950272441354 4.47818678435833 3.389025672800237 +4.414976450251293 2.0808745269423463 4.942029681887645 3.5014586503482255 2.742859217186524 +3.6232338908313944 1.4238519287511577 2.435026857017961 4.507206658112323 3.021789228782739 +1.601282751957871 4.7214372237295335 1.9370257916548552 4.6155602918310885 4.112166217013978 +2.8531224571810316 2.2645279704296466 2.7600816161463086 1.8364991888141167 1.0951931199158211 +3.2833908781500365 1.6416298701954863 4.190340148350451 1.624908965624078 3.045786657096123 +2.560901611337566 2.1147560438151274 4.651526937444199 1.6129456365177086 3.0711597467015683 +4.333552402600553 3.3306805910565807 4.7587705041230235 2.6649365531612386 2.321614198050513 +3.852201391009505 2.5267699414753855 3.138398992102727 3.596951710216802 1.402511719275074 +4.875241510706422 4.555931249228317 3.6756521873169423 4.735338055469933 1.10674892466556 +1.6927581310152928 3.541558017502833 1.3408123460932355 2.3584010120239136 2.1103430321412016 +3.7573221757384796 3.4470872220940665 4.890278098752196 1.0785546509671708 3.824327570809921 +4.8365504330159945 3.1100888007425436 3.7471175899417775 4.902849763801006 2.0775915444104234 +2.8704609695251633 1.0520311525357782 3.0411517188553363 4.60509221396034 2.398457185681106 +4.326521230530458 1.3590074095613818 2.371067818939635 4.1509170267823166 3.460347017323654 +1.145255937931322 2.2578027795151696 3.0923317094392617 2.300552230501605 1.3655311120531022 +1.1284540567157335 4.680443212657528 2.8303645871193637 2.063025545482658 3.6339284760088555 +4.525609811762932 1.2560007016876096 3.371376051571326 2.204266024026426 3.4716695621967535 +1.0781705433300086 1.68360481089156 2.8716441558640926 4.086813940854977 1.3576406957264449 +2.973465403712067 4.617412441172227 1.2661632589265253 3.506628937335993 2.7788933621326373 +2.948552455322044 4.433731926402709 1.7925648002553767 3.7166671542137366 2.4306229509793464 +3.4398422172701073 3.214873055281176 1.6129167807197975 1.4327602235701913 0.2882143454618478 +3.55874317367253 1.834520948111607 4.138630639886272 4.789917271080652 1.8431268429196042 +2.6621030759646493 2.7514259848709806 4.825008164382553 3.8557484156486463 0.9733668591909246 +4.981261611838237 3.4843833373733255 2.552578387426569 4.197446329991276 2.224013290662199 +4.329078119996485 2.6986451267535596 1.4823223022869398 1.4824856898395007 1.6304330014295518 +4.75340790265454 2.9443722341246357 2.526244037647743 3.6323888472807297 2.1204165604643426 +1.8728269642884432 4.4181154873295 2.1870175961647376 4.965074377708348 3.7677703150543778 +1.9406786881641827 3.503873211809098 4.4051115266345455 2.631666763282303 2.3640396459059105 +2.7838938400591764 3.3302773215504313 4.77723522715222 4.844044802959019 0.5504529301093681 +3.9135252202810586 4.562818909415052 4.015606373726647 3.196364908983496 1.045341509892214 +1.2959463690525053 1.9769687259818163 2.1614779775822224 1.1343418066163937 1.2323961069168865 +2.0982834072159964 4.878085790150989 2.6996025566408224 1.4499381189730451 3.047779928889647 +2.694579159486735 1.7645873892416533 4.089614928352502 4.741951897520796 1.1359701642504774 +4.675697055430794 4.856188935955197 2.508170574047183 2.2356599500533543 0.3268629057032037 +4.51859121271108 4.9832272417204395 2.69092621465411 1.6949100820332572 1.0990608608692183 +2.141178795738715 2.431718168554667 1.9009774373844093 4.175709262294356 2.293211286038516 +4.936626862581399 2.0094166321070195 4.167162593574364 1.056817777411235 4.271159632796077 +2.1253478499661664 1.955529965102615 1.018575445408259 1.6013208559968488 0.6069846189003429 +2.256027821160602 2.9019045594865034 1.2832231289682827 1.4931515806337075 0.6791367431741175 +2.2702241973299433 2.544764027171041 1.1684605870531763 4.976137322765646 3.817561295101252 +1.2505003285285556 1.1730144883223632 2.9251847127077575 1.1098503331153071 1.8169873321415222 +3.775793858861912 2.1490504934218113 4.625963111847625 2.696049256967637 2.5240565493390044 +1.8334947481206383 1.4986107754870708 2.9253856028289684 4.782936544829087 1.8874964310568558 +1.4328790072181712 4.79150639714221 1.4148116492558103 2.5022013010663016 3.5302682899763442 +1.4948112757427205 2.1321788764231355 4.25355073405195 3.529368364772882 0.9647163118615508 +3.186445633229422 3.1212502435893694 4.840847836315467 3.285236451177104 1.5569769492199985 +3.458907844147744 2.06096859967271 2.542417806181106 2.1699554796158735 1.4467074050939999 +2.360911736298209 2.255623533242188 2.7287278335003444 4.760177598341988 2.034176431084073 +2.308073821910975 3.3551523929153957 3.470485324877441 1.6328052706842078 2.115051185062977 +4.233958171888627 2.783444554284947 4.627013294729496 1.304647018243696 3.6252044673347505 +2.47675542493061 1.8370778092270297 1.511381256819659 4.456480021944921 3.013767440990523 +1.3610173584214147 4.555723227113386 4.26688869287752 3.703023046327801 3.2440853957338818 +3.088813189874076 1.874066199259686 1.0514107203607148 2.485964054995928 1.8797748591572678 +3.633412594588262 1.2059052720785521 3.27679490197428 4.665315897936884 2.7965661724813953 +1.3366360777824884 2.329844447307366 4.162213092742464 4.291993851393235 1.001651591427995 +2.383194978178389 4.234885559956435 2.0271043671313516 3.442700632655957 2.3308090435753694 +3.537785512006827 2.57228376666283 2.7583523596089776 1.0503841239284144 1.9619758190039143 +3.8135036840518826 2.7112651675075052 3.570853169222314 1.1513914254759632 2.6587073695324355 +4.702263975832757 2.5784891463036606 2.741509889169144 1.2808461977317038 2.577587621405913 +3.593823017385907 2.845751936185647 1.2679901140841232 1.881019194603676 0.9671685458547409 +2.8856672088530204 4.908234140128243 1.8220621438298785 1.3278064788692006 2.08208204781507 +3.076749113808187 2.7413585789244452 3.251653201715787 4.446224369830073 1.2407606886823634 +4.356891364609206 3.0609207084588776 3.624144811493381 3.2192620079606953 1.3577444627761146 +4.975020552964445 1.9689224443908029 4.0754783587448005 2.752469227923468 3.2843536652752006 +4.08614270803128 4.568324178815454 1.156781521057705 3.671953725886961 2.5609744611599017 +3.9803597189865263 3.1202089089455827 2.598987420472718 3.6614605196018046 1.3670071332612193 +2.165626975407724 3.954979002215792 4.261258718023347 3.7242602285399355 1.8681937944307614 +3.26937209971425 1.8472293617294917 3.4017029954815103 2.8135137488707036 1.5389790632206057 +2.561977370249425 4.791680014402978 3.8772436200715874 3.5274568638196944 2.2569724535746034 +1.0898946877972113 3.606486271184251 1.0283647043818425 3.7886165669736447 3.735267532923981 +2.428566177162126 2.735917688711393 3.4249860871685884 4.656973705353465 1.2697473933867574 +2.655822410631356 2.7837906327328965 1.080771988977776 1.916555232145826 0.845523208095634 +3.8451765133720412 1.220848882970477 4.1711862575047185 1.3246067205532945 3.871706416023776 +2.075852172916137 1.2250495672806148 1.4593666927373752 4.505284482251527 3.16251170025266 +4.201710014504769 3.1341636124989596 1.5767937852414735 4.536340142569972 3.1461992882860956 +1.8522825092768045 4.790869679590197 1.0285097715467124 2.557360093488597 3.312503262554209 +3.9171731351450303 1.177943443702886 1.120582654292818 4.3000050730731685 4.196677998074348 +4.88154824064412 1.1572981120733195 4.71181289379771 1.5830125570695919 4.864096068877506 +3.2248036888536453 2.1700388720504646 3.4035780131958764 4.141120195790496 1.287049839700189 +4.286710756492862 2.961050243045651 4.594440200637326 3.825511329780254 1.5325232152729877 +1.7793556514366333 1.6843769619246949 3.570334927376158 4.2836191166739415 0.7195799372992562 +1.0830707116300227 2.009344768440021 3.5546567449755173 1.0677448918500754 2.653811258084318 +2.0702118855598237 3.861574148707962 1.6153066922129562 4.85887614442564 3.705363888899241 +4.695968306068528 2.205158488222676 1.9227572820915446 3.9624500824169155 3.2193912884855176 +1.3036316961699272 2.6916457019812654 3.329172959924826 3.752069212248852 1.451007967089824 +1.7995534917287 3.790714686118282 2.718562539719941 4.069035342913107 2.40593011000057 +4.363353560465335 2.3972535756948763 3.565120242320787 1.1266744064519858 3.132342134023723 +2.327692673973085 3.368106547959014 4.498838003435573 4.910742332418635 1.1189844527147796 +4.164234714149255 4.7939652065958915 3.6387626300474674 4.164968391848939 0.8206418200836165 +3.405780776701323 3.601703119188925 2.744223069913887 4.627819375680531 1.893758328663818 +1.7560599268425778 2.878858352828553 1.047767356215152 3.2387486357797575 2.461925115189156 +2.618358637138418 1.2545313144552743 1.933045460156916 1.924434781730076 1.363854504659512 +3.7828635421825565 2.7480109289647645 4.271585659400388 3.06285329222236 1.5912114462092997 +3.951291154660566 1.2976568322782045 1.0486595287837228 2.4121643603301672 2.9834410573323202 +1.6429097443063512 4.967988218990696 4.169108393540956 2.836411061415006 3.5822100778520505 +2.225766713895822 1.556435280309688 3.155829357082239 1.8328691519337816 1.4826423278703864 +3.6924233042354624 2.1768764022726836 4.78197148356241 3.9811725128747746 1.7141065904731108 +1.7568450311680621 3.350494173430541 1.7251107894339621 2.1794745545232903 1.6571553999731239 +3.560225560636141 4.886831721038731 2.5094242971177656 2.6842450308292785 1.3380755560705582 +3.377456092118552 4.187022879134961 2.0666628410250074 3.596676343295439 1.7309938474096043 +2.953753280696729 4.0418118083110315 4.864841994189234 3.5163943876980137 1.7326806708006255 +4.941870338864351 3.9714779778213605 3.0310138961919932 1.4325492061652425 1.8699600796896454 +1.4044073169877582 1.906322196405179 4.6701452744729695 3.0524640579873297 1.693756494998931 +4.820815901978786 3.086707272934224 1.3814853544183991 3.8711381719116362 3.034057331195115 +4.657825737605884 4.99656687504096 2.5797523379852665 4.284313777035058 1.7378939143935985 +4.898532536928377 1.6442673554819778 3.448356473959804 4.854170645758062 3.5449337591559007 +1.1189439947747948 4.833175993978884 3.5482310861666133 2.9229508183843884 3.766496350348612 +4.2414821291808495 1.8496683857312655 4.851871079236023 1.791593035621677 3.884079644855698 +3.500024288228347 2.977105168469846 1.8119422292088943 2.7981779864124405 1.1162909005254222 +2.9315163696117947 3.5541788705360005 1.615862503414577 1.024542176890408 0.8587015305784871 +3.1582220402381695 3.7433968509631943 3.6619667696982257 2.3588114596836376 1.4285108753965738 +4.969406066583826 2.433904833902931 4.467559949926336 2.0725524060620217 3.4878112959409533 +3.3960382353791045 3.3695937397196083 2.1339413082248995 2.239234317126071 0.10856301890674966 +3.8935172319240205 3.735297631935291 4.671888193964162 3.15305489203913 1.5270520753586267 +4.582586643634432 4.009978538604818 4.83934845477038 3.096617745747759 1.8343910068783298 +2.7073752219697713 2.9986916861195865 2.0730976682401248 1.9577865660451699 0.313308047413669 +2.65435980107302 3.613238926449305 2.081423307881515 2.1416802559904555 0.9607705641191312 +1.953580468802945 4.578758634736625 3.0067081447854114 3.710831095222299 2.717967904929502 +1.6290785439377364 3.512239461718581 3.603847043095988 2.9307019939443837 1.9998548195942893 +3.870316574332908 2.8861263642529082 3.419360580145482 4.569825205282255 1.5140010645004216 +3.463681121747862 4.458816100551016 3.6483319785766755 2.9164986253792833 1.2352625967338657 +2.2689100700948557 1.2014258333396515 2.81975504861153 4.021120861714855 1.6071099566035465 +2.2932739991813484 1.2527480301412721 3.8789668983700256 1.148353077547151 2.922147520354797 +3.4813717561966904 3.8296876639725053 3.566691138546851 3.217319146123972 0.493340410567817 +2.055060574407716 1.7730151269706624 4.739473525130011 4.4598303551975 0.39717746274161997 +2.668711467570849 2.0940247988397873 4.329667977239139 3.528413983201926 0.9860389090587609 +4.604760427082745 1.7892990698001703 3.3349753767754864 2.08351894236216 3.0810657022507577 +3.1780936851377004 2.3587980912530586 3.4738844380127563 1.7033871155518452 1.9508731478494554 +3.7483360296007775 2.738271092699044 3.50462391698 1.5830366161014444 2.170882063046271 +4.686961149103526 1.6362327661059974 1.3225339501841233 1.1388079653242582 3.0562557000911172 +3.5571506295163458 2.2070968920390683 3.111796476735917 1.4749341807074479 2.121783040330928 +3.865525195754826 1.4433814638229947 1.4574246230042167 2.9489062756039273 2.844520658771566 +3.910294141219471 4.297078152535262 4.366754041764935 2.04805004748915 2.3507424538813293 +3.7298133956216564 1.3533075219318254 2.357098221596608 4.461693688003265 3.174445186942393 +1.6576750682510664 4.3764486133600755 4.5964730213606035 2.9893731776101955 3.1582431029556917 +3.3874676859938724 3.852805253252752 2.570338108968899 2.2149790661758892 0.5855075582750204 +3.9462855774420564 1.4095762017186204 2.5941005255581855 3.993275440211713 2.896995840293681 +1.2170697606301397 2.8196318813810297 4.538332270584972 4.2829437442314555 1.6227842278807774 +1.5597550271604117 1.287234298866161 1.837526242065319 4.975310133962581 3.1495960534011274 +2.5541904837051934 3.514036822171278 2.5517526757927538 4.2368512461926215 1.9392942493160825 +1.3073827513317853 1.5071866334996136 3.4935579983886083 1.7129675341527002 1.791765607622041 +2.2999410609039077 2.6037804632470407 1.958869387070072 3.9023173691169735 1.9670557799255224 +3.9337990824961215 2.1845283881275455 1.9294511371873693 4.049301590190888 2.7484020639775295 +1.4790200658347281 1.5015261196297325 1.4731931308616222 2.288270287136062 0.8153878176290414 +3.975965090920342 1.2871589103055516 2.283067505202778 4.061822146717135 3.2239179194919285 +4.674667164716128 3.2118285603431778 3.967196118601267 1.7297092509062915 2.6732460166530267 +2.078672111174773 3.251618471416862 4.565966360010545 1.2181519905895328 3.5473460806787624 +1.2920242628586758 1.7581204669429598 4.107844697052274 1.5503660283979892 2.5996043568365303 +1.305488024381785 3.136682633309288 2.755420284807336 1.4059740962890372 2.274704093167222 +1.442218466005854 3.3052137555718426 2.3066758087901285 3.732149612168854 2.3457892090006873 +2.961112461563304 4.689790605331708 4.504213906606548 3.9227038026146857 1.8238646127898859 +1.4673859323346288 2.306470451360473 1.4817205922523393 3.8834795359596224 2.5441125866884815 +1.4054003392115861 3.012168203710623 2.9909781477718695 3.7457250678460174 1.7752030542301935 +3.4286694855274624 2.4706885386425266 4.428851211820193 3.2372768483222765 1.528913653003342 +2.5009348349132177 2.288641423467047 4.207643486442571 4.026070261340919 0.2793516218268082 +3.3707176906599363 3.5141298166840778 2.7306640564703333 1.4986059672614838 1.240376625495549 +1.0936791049090377 3.369523063630141 3.519694831005201 1.436977793000382 3.084992055880033 +2.5430331903805055 3.9880178786975247 2.2811783926561082 2.2607355594228835 1.4451292879535846 +1.2440680604806071 4.343516564184473 3.542848983274931 1.1512991253677471 3.9148552655197872 +2.596310964160919 4.948362736617668 4.72490972154405 4.832367328125011 2.3545051874075456 +4.046932564128911 1.487366793198551 1.992779810154294 3.6161637179548842 3.0309655636157005 +4.030691594839578 4.374613626703787 2.8864125084743124 4.119493240545539 1.2801447011205096 +3.75457226267652 4.289216470346508 3.4685177906759064 4.442362564040904 1.1109536765344417 +1.0551977011265041 1.0553821186289198 2.542001104865918 4.562937826367012 2.020936729915463 +2.61829954806632 1.805362180607593 2.6510803570985724 1.977611477865039 1.0556644801767257 +3.832619555094478 1.4513782571052873 2.5897988732630943 2.275760556500632 2.4018597343817243 +1.3607181476269257 4.019656688430038 2.3051566886113615 4.70740386369528 3.5833986177882653 +3.7779061975733668 1.9795259972715287 1.5661487121518536 3.021818796488382 2.3136868282613348 +4.880445334590499 4.664119749144907 2.075426177922793 4.90763176141181 2.84045510896841 +1.2749847390579334 1.891051649414023 3.6830498177432176 2.3054099549428173 1.5091156448769603 +2.5808379925688882 1.7459929267677703 1.175736243478751 2.73285384735147 1.7667997951615204 +4.073982528966038 1.8992032792121125 2.4495559474825725 1.0354704530390975 2.5940899311233787 +2.020684327518385 2.1707311814506354 2.931593677959494 2.538752700797969 0.4205212143426155 +3.8878268338921353 1.9659008386016192 2.63046076387481 2.2617312810404253 1.9569775069950992 +3.2097496228342615 4.981870349901072 3.7972885685541504 4.948569477699619 2.113258054063114 +3.064748645280279 2.3275945227236883 2.0042206746439835 1.7874216980139654 0.7683736048759092 +1.0415110908188514 4.16848734515275 1.2400350822678816 3.4079956724215057 3.8050011321453385 +3.1836854970784976 3.08640707671951 3.5228632944398828 2.001605275094209 1.5243651309614317 +2.58039633828672 4.32390695815176 2.5673429717347 2.3465763688565078 1.757431982902483 +4.3841905206430765 4.49234966474881 1.0852551228711178 1.5588916033668503 0.48582910175294064 +4.893929851340523 2.2872268012428805 2.1729148815026242 3.7434103517585195 3.0432477410626038 +1.0114468292806853 2.1028404083013914 3.6655562918684095 3.713846841739126 1.0924614050548616 +2.856710267654715 1.4364241154275512 4.299883334639503 2.283276028954885 2.466559907958616 +4.756771059934222 4.469604150303564 4.79312495461306 2.1277494945153315 2.6808004732314568 +4.4804358898645535 2.7411567560512315 2.1977383898171974 1.9926199716112012 1.7513324843689018 +3.1543686728258282 1.0173423712747862 1.1583178577775253 1.2424076357910683 2.1386800846052902 +4.751934245567905 1.2099045498453207 1.6932874511219884 2.2700641352078303 3.588683004764517 +4.822988226367562 3.8908696440931365 3.1571969233561594 4.529923192915875 1.6592837197298773 +2.6479343142328493 4.035057045254039 3.408098077824621 1.77670615184658 2.141389522497489 +1.4266233796735839 4.133964243493596 4.519747870981485 1.380308608573587 4.145572751171777 +2.7249355172832574 3.708485532379482 2.173753801520955 4.843129949650136 2.84480924710195 +4.527989819668293 3.8860367836556637 3.2879484156393137 1.2781757459245093 2.1098080207398975 +4.803599425272166 4.119720173251179 3.1032723551292065 4.506177284781824 1.5607155644089672 +3.2138496464982658 2.276505724879143 2.963218999739043 1.44840525347073 1.7813686629330148 +3.2788082936583627 3.398849029268334 2.477554158783353 4.648057525411477 2.1738202875927444 +2.4214228346295794 2.539100561528974 4.625133499160302 4.095375356995495 0.5426709284622833 +2.652100364870082 2.524004805943894 4.931528830734492 4.526743239470022 0.4245701910308105 +1.056269535887941 4.906073745467662 2.313802910458147 3.3682115816298164 3.991587415795844 +2.041782722868283 3.13583546377784 1.0564074288466934 3.3342823564801423 2.5269874526464915 +1.0645945494714724 3.222939893953276 4.782726952299788 4.202647079878311 2.2349378703746536 +4.713686695269008 2.354881818623621 3.3229591667370837 4.2761999616862125 2.54413609290881 +2.6587546937000384 2.0319868426798977 3.862835916862754 2.343353385356606 1.6436742690158344 +4.462255089172221 3.0745812742904963 3.8814677792958245 4.967263248103023 1.7619847946536438 +3.389142267712669 1.9894471722701548 4.306969993816738 1.8565679329971023 2.821988061610989 +4.505137254595613 2.769213724725173 3.3322479893395 2.368865593591838 1.98533023499728 +1.3956629125708915 4.139041651628091 3.977775719735157 2.844705468692473 2.9681602213676066 +2.467632952127819 2.321027931506596 3.8601590095467784 2.260660976638914 1.6062026613561182 +3.9364190761813624 4.821044447151511 4.87807951639966 3.727771488224141 1.4511273571431025 +4.171058134898955 3.922509355735531 3.995650760744135 3.0697480546669165 0.9586825943683054 +1.5059369556718045 2.9947105940296836 2.5109034366567724 3.635854449821796 1.8660015349110435 +3.336298168507513 3.076346996237466 1.9567659076348605 3.127667340308513 1.199410178796972 +4.0646740289644026 4.021052564191896 1.1200074059162106 2.7538562989667135 1.6344311051589946 +4.283297237165858 2.8632837678312617 4.408941422099261 1.7018905422269888 3.0568877505248566 +3.5710599052612375 3.822907710435922 3.4602614664840803 4.778487016212667 1.3420677765778226 +1.8169420683385056 2.1080766045050034 2.098874072196816 2.178215682283312 0.3017522315410433 +2.9595907546560634 1.808802972882121 1.2974241385372687 1.4709581178160134 1.1637983333226192 +4.037617114164781 2.867511889238225 3.0722901201212416 4.2680027175386 1.6729838173225082 +4.68072139783118 3.0153966116192312 4.084754995869485 1.238659050427244 3.297509480537491 +3.0361242651206863 2.559690837917991 3.0730199438283803 2.9778278955564135 0.48585011743367795 +2.078210368151803 3.206709854362439 1.4305714555986437 4.640805166099136 3.4028093638068273 +2.0734224645983863 3.27966326586959 1.770232601356744 2.947837815858115 1.68575529418484 +1.7380451285890803 1.6973120799755472 3.483699386545582 2.9219328681543706 0.5632413358718761 +2.0746377721888885 3.029582753244155 1.3545276777190383 1.9563391391112512 1.12875903181577 +1.97232131560235 4.894074717360526 3.001297653625685 2.8713487401926012 2.924641800424099 +2.3727905784543752 4.3586183430596845 4.9011473803006815 3.455688014535263 2.4561890580238903 +4.955506038192519 3.1178276579564073 2.851718700468032 4.66677640306747 2.58292398125705 +1.2769696791304472 4.769502905610823 3.8208756330658344 1.125000843991042 4.411975659094062 +1.6675873289011731 2.1293912354055773 3.9468106637057976 2.0645626769117635 1.9380712917364322 +3.089104823440564 1.7962339304042465 4.465428544080025 4.8865299734384084 1.3597211331255388 +1.4555437197756182 1.2117446657076676 2.6398783896816416 4.569766328848932 1.9452263201251925 +4.120413999632579 1.2645537051310596 1.7128250697932406 2.8225533509357876 3.063892112930528 +1.7535113918182108 4.435686527655768 3.2122535108577277 1.9026733093708512 2.9848054816740786 +1.447079514433259 4.022857287007588 4.071506658372757 1.3918771690350238 3.716859606417273 +4.523423948024757 1.7937332422264136 4.351529517025286 2.016341277037505 3.592257711453771 +3.9351451685247993 2.7632649817673314 3.687183366190226 1.4594145770365725 2.517192275143449 +2.016602187509078 4.241170019518043 4.394650479690201 4.9608431929054895 2.2954904111555674 +4.88435457644305 1.6905616845183693 4.65983703297203 2.233230719642419 4.0110760696351475 +3.5627618444475404 1.1271171853410635 2.392626307819811 1.713545106389835 2.5285403266646718 +4.169819791614648 1.2736066049472723 1.7239879791926542 3.6856863929940538 3.4980439518875293 +2.2572009360608223 2.5346262221704414 2.3503498443596653 2.533203131221448 0.3322651258997269 +2.442165344493843 4.516375690610857 4.3737494680883895 1.941956936020941 3.1962420870387582 +2.6186125839590795 1.4116046916306586 3.4728396039424267 2.086566423260936 1.8381026586183575 +2.6824937581037114 2.147407890007535 2.126635280363066 3.573666385243141 1.542794835591139 +1.7620512453893666 2.870209593045145 1.3567065645523657 4.085965820708676 2.9456529005967558 +2.4986864971250116 3.0553574272382047 3.7750339080859465 3.5036993459066235 0.6192777802134778 +4.758875645143758 3.868054321874988 1.7743898853512428 4.601150904863465 2.9638050697412774 +1.7109533709673292 2.9762990114887193 1.5040979463552113 3.057654457375936 2.0036560141205313 +2.6882542027849037 4.307609854254194 1.20046106953528 3.4237550473436813 2.7505179217203137 +4.463903386772897 3.7482049482582056 2.017192344267587 1.2584607641981078 1.0430234251861732 +1.629591840691901 4.17637599757713 2.0133150036767096 2.725652424587797 2.6445290966430806 +2.866023722921833 1.4811715932273017 3.090685742257814 1.6847647329474542 1.9734308464042358 +3.8716337172944466 4.578123710304341 1.6070600978033944 3.3796232454469615 1.9081688139698727 +1.3340479388675437 1.827663689456699 1.7568566912364778 4.559187118638066 2.8454722514145985 +2.5198410181580404 1.9064582156419876 3.3594505864516897 1.3854952856358063 2.0670602294179945 +2.3940769077616664 2.9164661983257245 2.5303675695518684 2.881912940842435 0.629662384911027 +2.5678480821467504 4.88544513812904 3.5381851071713153 4.964339136939827 2.7212444635722712 +2.047015228653198 1.4646688692691567 2.1991348463250198 1.7831469767778825 0.7156627626879949 +4.343693928334526 3.144893341132055 1.7898899138335174 4.2439853852740015 2.731246497631014 +1.428256604446621 4.3427858261916565 4.440774895157036 3.1804526975545104 3.175357086403887 +4.777934614242817 3.199079463865011 1.7979300686843622 2.5531215581739817 1.75017078357287 +3.590908182255969 1.1787631919342743 1.5943993508958716 3.7266171523437976 3.2194403562025307 +4.133443631410129 4.423006101089218 4.483502961722846 4.423999616999293 0.29561304416406103 +2.6533889590152677 2.1266217974484443 1.103210626263977 4.187068463841632 3.1285240617413024 +4.965150164933481 3.0420438331626136 2.2101196218135852 2.2860292780841767 1.9246039174885619 +4.533835551189477 3.229483293450564 2.5564476112827252 1.4844132713868032 1.6883697575426673 +1.5238534161016757 2.341263661017132 1.7199871422125654 4.542822307624192 2.9388021164374494 +2.664232226811087 1.9601738195680984 2.171814431619956 3.067607219407905 1.1393607679143771 +2.313054839513584 4.785177223088193 4.055386771282452 3.6514674794556323 2.5049031665276975 +2.4381546781969967 4.43005950498062 3.5680134368119765 1.8089737304453153 2.657424604299886 +1.1069789786960742 1.7536710514657838 3.1119031977673988 2.605912083423649 0.8211197505711412 +3.926548188023964 1.8295247134767019 3.324471064315607 3.6004418661505793 2.115104568636669 +1.3594503162192253 3.4828056555962736 4.321905219735639 3.4378725739623768 2.3000329597755536 +4.497386102683327 4.816092056809852 4.325740621850239 2.087422540784353 2.2608939199401132 +4.425438024349671 4.042740577850193 1.147339734995073 4.4050018876434445 3.2800640293071783 +2.9951875701714834 1.1778750278633785 3.2225180639914783 3.8042698547552956 1.9081561839868497 +1.734239812984813 2.5489172182958155 4.857528462373135 1.7461277550660812 3.216288798624138 +3.458966113221841 1.801161768796042 4.335367328995357 4.335575255099388 1.6578043574651136 +3.057667048800828 1.322754848110041 2.4111269352684324 1.1540457232115982 2.142469023769545 +4.6152226245153365 4.835316877146948 3.4719721564235346 2.994802319856058 0.5254831424235222 +4.72666020543244 2.2093585082691045 2.8136714000177294 2.6706036456159485 2.521363959624032 +4.617721949972244 3.593914949013628 4.798501294391935 4.338411861546809 1.1224362170865774 +1.4588607028604184 4.330239233289196 1.5456280944457803 1.784363439637883 2.8812860375275684 +1.0819395515831447 1.2711528210683176 4.408921481167448 4.261437431066456 0.2399024934915447 +1.5383158219096047 2.6446068521421933 4.286932907973814 2.0791294366804443 2.469468771097973 +3.718147448227682 1.9359038254883698 4.4007480072072696 4.324334202340021 1.783880993892036 +1.1695949501544147 2.6499433720268692 1.3867571014658324 1.8760400575907794 1.5591116898075754 +1.4953818835525636 4.033527924611763 2.785444483468943 4.441444536202202 3.030597548404777 +2.775603086921563 1.892448507702741 3.649880296444547 2.3760038712125326 1.550071984637188 +4.54512736464819 1.7576879274300747 1.6312530045997193 3.234368706339433 3.2155557170298352 +1.430743726334844 1.4096944233183017 4.2241579717588245 3.3077245253725156 0.9166751522829502 +4.806165593833857 3.0919042717594567 3.9356432072222853 4.3826838347020205 1.7715917145261617 +3.201825405642799 4.767577707143323 3.903194963704018 3.9501562919568665 1.5664563945432568 +2.7391796341018866 4.741419260707842 2.0526469676218726 3.1697554491630795 2.292791940382392 +1.0347439326288606 2.865628445608898 2.577412521985741 4.08688856203297 2.3729003382668243 +1.6366325816466434 2.450907933627439 3.4615722482821294 3.5749156569914087 0.8221259496824602 +2.904345938804299 3.4316174325566666 1.245240096236186 2.133623498466982 1.0330732294871536 +3.6678252892803176 4.529390903130286 3.4014872234945783 1.0213215327718528 2.531300855738461 +1.1346308847087148 1.3418927684173028 2.336977174876531 2.1740000352682562 0.26366462878688784 +3.2194704762246555 2.453795774266389 2.086635813219095 2.2826756555710044 0.7903729303362063 +4.642060869461997 1.5089797420501765 4.629185080120765 4.756219949399969 3.135655467196119 +4.227952767967439 2.6338885906704284 4.751392323254254 3.1453968967268158 2.262799573839593 +2.9552600763434613 4.954315942053549 3.7928214208912534 2.966851272607578 2.162972732164154 +3.7111620800407423 3.881901904467113 1.0365909177822612 2.338453356783012 1.3130110044192818 +2.8449880853232594 4.017928124916775 4.596945945576395 3.870215076818761 1.3798282835508422 +3.461040362789265 3.650898544467607 3.901748770950894 4.900804974263078 1.0169362942322213 +1.3639031763683542 3.736170861254068 4.898795549210197 1.217256885885706 4.379655340127361 +4.0336049000215715 3.7279254996977236 1.2532346798815084 3.7152827433373274 2.4809515437728518 +4.117953900202084 2.6190525657842483 2.486489874007748 3.0754603317626032 1.610463104335996 +3.9239029851352223 4.597587590764574 1.7986778087279447 1.667244535533345 0.6863859360189583 +2.642315864432697 1.4137136191270612 3.197149771109869 4.576482712513137 1.8471661648076605 +4.431747011104177 4.893681510119176 2.503280350843272 2.0243061285212947 0.6654320303601122 +2.8402751686974517 4.350274159189047 3.5308695117499598 2.1210175549513615 2.065860472387831 +1.6783352130979812 3.0653087504974876 3.3160685841160276 4.522395825965361 1.8381841604894547 +3.955078472451629 4.7794144602165005 2.3596562127564202 3.880776426232532 1.7301261585704952 +4.791278838681004 4.279800029972128 3.507669431204374 3.449810492143595 0.5147409334679826 +1.1501040565647158 2.1567356530790147 2.409509189054438 3.7684684537059088 1.691176352153433 +3.070005567100491 4.173749959614231 2.1169634048232173 1.1246555022462674 1.4842259455764104 +3.195487347145044 4.605460790033046 2.7783542772514895 4.138804320883726 1.9592981985569224 +2.280738452895814 3.3347226193423647 4.249219471246018 2.1946366161664312 2.3091542459322674 +4.535245975384135 1.6975525322487797 3.8647975764452895 1.7135750748132152 3.5609355973875108 +3.9600204208154346 3.060262985934725 2.188121618617501 2.0895618052906615 0.9051394800947179 +3.2181539831481785 3.901783761702027 3.885755421738709 3.650889774598111 0.7228496014610202 +4.292075503649 3.034653358018501 3.333389000300324 1.2372059858580067 2.4444004750364634 +4.417189302959182 1.6581609504610122 1.2118602385406327 1.7067767309605189 2.803066139847215 +2.320460119720152 1.821363330899466 2.391823427460263 2.7691796845720646 0.6256958921013855 +2.5149545247662988 4.329567647989537 3.2121877546525512 2.748333424098539 1.8729606581419975 +2.4121136498264977 2.6971012282452604 1.983897859052119 2.6733657789503664 0.7460455297244308 +1.437188366854374 4.3651243244765485 1.706549863814522 1.5133425132552207 2.9343036741699087 +2.381578795015098 4.864421474118228 2.354811867277448 1.5568157892449923 2.607931270131786 +4.715743160001615 1.0686113489231044 1.295794014146142 2.6727739452045385 3.898415598408975 +2.0298318671818265 4.092941561081357 2.686886218055624 3.4933471611770277 2.2151299875723947 +3.7924011141289706 4.444790494834427 1.383052222493654 4.06090165684733 2.7561729802618613 +3.1062295924282695 1.2351042946158923 4.843080142764252 1.7632897023284744 3.603639693020524 +3.7839756653268752 4.607118029728603 1.1644360736596355 1.95875299521509 1.1438980391373181 +2.34433137392477 2.541695609680758 1.2952971399413737 4.181032886267655 2.8924770421181987 +3.619676075162279 2.181712602709683 1.388272325702486 3.6342731077174375 2.6668817860789593 +2.298482467381805 1.4654980736343322 2.3904669266435614 3.6364484322412434 1.4987771390431306 +1.165176822065443 2.758618474381341 1.3512983549278417 1.8644145380230501 1.6740204648359036 +1.5327261079389802 3.0216043313105265 1.9951622631405348 2.82797101253886 1.705968574477389 +1.440331095137564 3.9679517490108194 4.733427290740057 1.312450920646346 4.25346276516278 +1.0946700271944807 3.5834691057887 3.307578289381509 4.0714336216906 2.603381612885147 +4.2011510514830865 4.938791895490734 3.893319473088562 2.3858727376672118 1.678246011430029 +3.123337327755619 4.7409256125791295 2.0161974798789775 1.7386740786777306 1.6412224399552229 +4.439179171800645 2.176116421040377 2.7431159825144857 1.3610456784456297 2.651711021070662 +2.83358196288818 4.768950714104019 4.798543808662018 4.993650353367773 1.9451783380887662 +1.9000909263749208 3.783305901894 2.2113910151502774 3.387015606616663 2.220043203201197 +2.952205089541934 3.6324632848480016 1.0750905891219218 1.2207776197764733 0.6956837810255521 +2.7658561331687044 4.270812369922774 1.3091897347200971 2.0853110321837383 1.6932978305429955 +4.456642610995349 1.6026869118772704 2.5599276452882327 2.413989999038747 2.8576845398191524 +4.857881567776944 1.251931457283352 2.5695745974333293 4.20703421195659 3.9603219804156597 +4.40239064561316 3.7562156581037454 2.326465376217526 2.882712741473103 0.8526155322515322 +4.733150516542315 1.8632078272199024 4.454509577749689 3.8377858343635514 2.935458944637341 +4.852375675494766 2.268525036943083 4.4864028749795235 4.3985847592686875 2.585342558306528 +3.513621198770215 4.599800701148179 1.3005784793100608 1.1045092218775738 1.103734146022568 +1.7306279433116636 1.5796651900071672 1.8552466207457359 3.138063525767584 1.291669061600187 +3.8589281181721193 2.665039046345081 2.2847064800684715 2.309892149694496 1.1941546942429773 +2.3905312256368036 1.686105053377418 3.721163930710454 4.334848095347347 0.934250761888954 +3.2707694189931384 2.6374983617018652 3.463887883242999 1.483929875908831 2.078765485284354 +4.132901232229372 4.210267860456909 3.180992412019681 1.053977643013412 2.128421345207309 +3.263857466720098 3.0688084441304153 1.052915350200843 4.978254827301471 3.93018245526818 +3.959224585123505 1.437728727219477 3.755803298403953 3.7375451683503864 2.5215619605197537 +1.0258848245470267 3.63122430614551 4.31135238661931 4.82125654132833 2.654768551374182 +1.015204156328768 1.805181414863474 4.874474292561205 3.431582230680428 1.644992878781112 +1.3816168709380308 4.597321717764372 3.8177172648183517 4.3429244352157355 3.2583124825190186 +3.003418591078584 3.7665820091597637 4.037152779541037 2.0794335804559387 2.101209857478245 +2.909760767677272 2.5976388674237474 2.087373575236071 3.2870531519144497 1.2396173471346248 +4.705358531479275 2.994796385544139 4.598594128991667 3.5950028746300133 1.983234293001565 +1.25772567143237 1.4953720795610255 4.328603155975077 2.2911145522393133 2.0513009593059626 +1.99536805759606 3.888436318110975 1.034666345299733 4.1108684208703234 3.612025283509762 +3.444936559435913 3.0024999096758695 1.8126769974988752 3.3035581027996526 1.555145221255481 +2.174732014395786 3.9079468701005684 1.390004012431751 2.6259388317830448 2.1287481329928784 +3.3762392095774256 3.2676032473911034 2.6116604728425252 2.717656259340646 0.15177904676042495 +2.4523640859097995 3.4099661456282333 3.920585519003824 2.3023762647602215 1.8803198917462483 +4.760008854259317 3.462682595510008 1.2663562548358271 1.7999538409199811 1.402776463131355 +4.004222683987543 1.1152115550203061 3.964160164194144 4.554898140761393 2.948789015893697 +1.6712335919710175 3.3832970614874642 3.881909714788364 1.4902626991418404 2.9412814845069852 +2.902634561298937 3.816108819042588 3.6520222170621968 1.7443435432405567 2.1151059411089093 +4.758403617481802 2.5253842201115453 1.199378515314399 1.9664136460602815 2.3610841833425122 +2.2169678130909953 2.310285048308662 1.3757219184664327 4.598925269495801 3.224553914648601 +1.8768385443212883 2.40155545852448 4.24963087495991 4.088076766622908 0.5490241979835525 +2.014482742891517 3.826362908420789 3.609695585799287 2.0683499419103186 2.3787929981765714 +3.5201635556902575 4.394563930724341 1.6490471585894353 4.441444519629581 2.92609962882396 +2.6150537915968233 4.508342226934937 4.590851186714067 2.2326308616150725 3.024193148774571 +2.0192462228555974 4.886152079559412 1.0023959999824865 3.1443166547240438 3.578683177149262 +3.4697456565665292 4.166678815745737 1.7324668980763351 2.2516812793203473 0.8690796292941823 +1.0781040994631588 4.666763799738937 2.665743818526038 2.0371223559120804 3.6433011662011077 +2.2644619903033227 2.519919593361984 2.298415668151567 3.077792102535667 0.8201745018188205 +1.3275066172690027 2.8085343469055117 4.397455854390099 1.2979248518533546 3.4351907620449125 +2.4897829162381875 4.226273209069943 1.4574318220849398 1.7235552148778774 1.7567641268225336 +4.877116951602185 1.5449983508159728 4.66701436478999 4.241656442427301 3.359158187972422 +4.974619753705024 2.1616216360086398 1.0051496435003178 1.7629846946717138 2.9132923600193914 +3.808418827187443 1.416911904031691 3.200098016722437 2.8212455803893097 2.4213290837920893 +2.3207200737743854 3.9127116443848022 2.560858865211305 2.035487962344812 1.6764402006851826 +2.365115043448008 3.0882315646178164 1.442108908943644 4.866037625458649 3.4994550088499228 +2.935516382783041 1.3785603072473473 1.8068290256941157 3.079100717709459 2.01066841608732 +3.497170239127348 1.4025620589190524 2.8219554079334586 4.757994181643181 2.852302501822511 +3.93823308383304 2.7083718454614636 2.7538391409486427 1.883998797070968 1.5063800614340654 +1.460592829095594 3.916957750535629 3.2487774572524297 1.2035785370888537 3.196336535835888 +4.234836573827435 3.8551212562948813 2.7489191306793574 2.200654669626189 0.6669165177312446 +4.177653140991065 1.7450015410118502 2.2014688684254056 4.5016139603679015 3.347904008610251 +4.938509710613754 1.4813871017313525 3.568917193958988 4.858112126399586 3.6896775342401376 +3.399236711686015 1.6717151133925623 2.967817728561437 2.054297703213057 1.954187736447773 +1.7824639339994923 3.7081010934157406 4.785288386072899 3.123896431385568 2.5432856105487778 +2.624976541065422 1.0517007604859203 3.9593378251094036 1.546153861355009 2.880738364496056 +2.105770289070323 4.750738854035687 2.570076728079423 2.1961671593135184 2.6712669419714756 +1.4724632487232752 2.279828317668104 2.704227213482587 1.608144275403105 1.3613361677782745 +1.8525121024291358 1.449579146291493 4.776213378462904 3.1366552525510367 1.6883441045549494 +3.2242791786042937 3.0266637573626505 3.251841264284968 3.5066376355896316 0.32244851611154324 +1.8988328421086464 1.1897108114002117 4.839440564350317 2.6794277574236625 2.273435589701899 +2.130760744158106 2.8317549401030706 2.2393514063591815 3.2942763276243903 1.2665936413289522 +2.6693059117199254 1.2455230398753026 4.066084654411668 4.682933770541307 1.5516637838874887 +1.8282573053583175 2.470406821772881 1.9173846729837347 4.642932299087856 2.8001724703298665 +4.606880471737375 2.4690188524216063 1.68360930722513 2.3674791426490494 2.2445779681593105 +4.912088612627316 3.211736126317252 2.5524592587860204 3.717258603684482 2.06105703258709 +4.153102153031693 2.3341512217073124 2.594152583238185 3.571218513078715 2.0647615653680136 +4.269246862654995 3.5765289141620804 3.6958038243306994 1.3404472882471898 2.4551094819244907 +4.5430602687218355 4.805436985284737 3.0792589632345564 2.0691870997169852 1.0435931730632335 +4.830299053757745 4.364145259832229 4.954522638134581 3.7050292226999955 1.333616569635192 +1.4637853017902 4.402921580577176 1.5128158171061141 1.586909089785086 2.940070046501959 +4.68778910566798 3.468684070519733 2.0309823233563957 2.6632240631669255 1.3732977478618589 +1.5888457111880228 3.194829175754214 3.061724345851422 1.3586858689399248 2.3408380854516744 +3.4588991524436663 2.4198909745313073 4.183078999899874 3.8012035042979324 1.1069629117138426 +3.5777608109600965 3.761478927173798 4.407726929314434 4.071611167186718 0.3830484979422404 +4.183093334444875 4.794944508219537 2.904721191280887 4.897201288918859 2.0843077503892884 +3.1709156754343866 4.0214728176268615 3.26238748774653 3.3330346654161676 0.8534860724389798 +2.8569016822528113 1.3505320451782623 4.124938362094307 3.7372161443855103 1.5554671329234622 +2.8669589954099672 1.9015076699966125 3.631569456351973 4.115036225892288 1.079739032818649 +1.8425907822894763 3.441979135301248 1.0377877231181398 1.0432071788877284 1.5993975347769378 +2.626598069481341 1.267228430534486 1.969058942024299 3.996222683420202 2.4407537052559687 +2.3753800618599294 2.711355977114527 2.6861481007151315 1.0246679852669889 1.6951094329454774 +4.956519938417914 3.077661838352616 1.1280682714431003 3.2552983088369656 2.8381711351100174 +3.5306043081154757 4.718907645906361 4.9002185153741555 1.1650174251251766 3.919667333741745 +4.829750000732242 1.9845565546809527 2.6842236017872425 1.1135708748776825 3.2499347276524873 +2.736694765001424 4.172534107119279 1.5677767359346237 1.4885651498627888 1.4380226325553613 +4.37647364088367 1.7748095532372385 2.008902453299961 3.4338574768994197 2.966336603325805 +4.475012199038055 4.595106856170455 4.396857510671312 3.4326151470777186 0.9716923702593885 +2.4127166127620114 2.585534465875907 4.012351501380371 4.753283402361387 0.7608193558567223 +2.2767927086936464 1.8444542034248537 4.689691274980232 1.273251107944291 3.4436869773651937 +2.2137979090659448 4.349902595265445 3.9274122274734826 4.510651397253843 2.2142969899201757 +3.470366701737449 3.9595411164988943 3.064475375801072 4.399864270593184 1.4221656402793952 +2.7577157727014767 3.1632599104071084 3.343340962129807 4.032359014357299 0.7995073007313762 +1.520403047646854 1.077334150774767 2.3649644822274887 3.2074492004394584 0.9518878861484424 +2.1475097229753333 2.0739143639104247 3.975501544848749 3.7507762769222577 0.23646928536392672 +3.9855463365364994 1.2034129595907381 4.955030196277951 2.6730564340580396 3.5982871450977507 +3.530517069104101 1.5718898405594794 4.159388994212902 1.207691278349961 3.54242008042904 +3.2384954972947266 2.360742155470106 3.554621656240543 1.5135574272164614 2.2217997470712696 +3.8904548182345313 1.65883214339613 1.0118567966077334 2.974861364233679 2.972124946124107 +4.864228365846207 1.96597305709586 1.7717393522223546 2.8512961100637364 3.0927862241190494 +4.213084268078399 2.4515695206926726 1.379037365648014 4.801596337144954 3.8492653998693815 +2.5786622726587214 1.80234449563028 1.5267004250210574 2.317113594053386 1.1078909101125927 +2.8179946630160955 3.144209505197564 2.808205447314932 4.676369372933376 1.8964315374517469 +4.863363107063005 1.3301089386863976 1.8368565166073672 4.786501505792184 4.6026395232055455 +3.8421695204087087 2.1121092302693354 1.2963443539208188 2.677557785831449 2.2137884162691503 +2.8705121704036887 2.706287945658922 2.3259274470739957 4.73207948726156 2.4117498287533463 +4.271288987408036 4.137519246378383 2.8080130748806917 4.451457860821314 1.6488799556215603 +1.0671650480882278 1.8934888032241863 2.755643510272376 4.360065215949868 1.8047104914503782 +1.7219552670193852 3.234268620748569 1.6816493143165423 3.3916159562954644 2.282778481707825 +3.3052937019399495 4.814892113162499 4.119097601338879 1.9124157668971948 2.6736364901797263 +3.2629786565568324 4.744077128098832 3.486333230123765 1.2452545931080001 2.686277375792099 +3.444304365446523 1.8767485939065698 1.9010533179393616 3.4802285173084146 2.2250899773246267 +1.9951886097051643 1.498206260765098 3.525291787511821 3.530269683110824 0.4970072782189214 +1.59711992297308 2.6898394697012176 3.5886260045397695 4.942908841871953 1.7401488474536468 +3.109054829986166 2.7890706933927154 1.9421689538730154 1.0156137348494503 0.9802522234462224 +3.9253221379953556 4.002723548805074 4.055257797561815 2.7926898960143114 1.2649382136742495 +1.7818458666958765 2.9223869403684692 2.8988243171901313 4.00986198700795 1.5922432742795427 +1.3409095990860953 2.386898502077947 3.2208368937403584 1.0532184140715337 2.406795101080249 +2.908999013888449 2.286572790773231 4.092137234686072 3.0786798756343687 1.189331838402356 +1.5742547986704576 1.4669876186191209 3.0853461841925554 2.9994914128768877 0.13739464936390894 +1.6635378661375375 1.7420807070275028 3.7048881281237183 2.968030664337381 0.7410316456081346 +3.898037373096473 2.8001641892425844 4.601153520428049 3.430004982153473 1.60527705600253 +1.3183516964551245 2.74958322663582 3.5667864929609814 1.203207153195156 2.763137888045262 +4.8438971134971744 1.091286315327069 4.408184404112131 1.765293218902995 4.589875991723417 +4.031063773873953 2.5762759425986315 3.4351448546099848 4.4598768091212975 1.7794614951224228 +1.580904236892826 4.643623498898454 3.0606924888209126 1.3999521387714324 3.4840074322743297 +4.3403797837280305 2.005789943081804 3.028173503937814 3.138062855027192 2.3371746604675097 +1.7862891468792461 2.868416615849934 3.7342827771584934 4.635349014171728 1.408162001541761 +1.2134716148186913 3.163789464703858 4.456783585097142 1.1835852864420482 3.8101924909247433 +3.39557444318326 1.8704016733866848 3.2642248645534733 2.0633022308820603 1.941228258034907 +3.0295068218058927 2.528583542502533 3.202355284658375 2.8700588924517905 0.6011198083756216 +2.744937685670381 3.933868909245964 2.1387110602022696 3.822154842071852 2.0609561909726017 +4.47484787374397 2.4912721586343043 1.439028643800814 2.64356392443973 2.3206632370675186 +1.7153266999430716 2.862291786492643 3.5861091220654853 1.5758555733982385 2.314443397383683 +2.5305436112599455 1.4772158586857365 3.114342343220542 4.765775758637316 1.9587576878976496 +1.9870579871210157 2.8683853676813253 2.0842382739164993 1.1844456445642497 1.2595097171367642 +3.8000335365768816 3.161615531915243 3.37466469721675 3.654999098561311 0.6972552798318287 +3.472126956948565 4.401502237612373 2.2197436448817345 3.492524644941575 1.575979024740577 +1.0346529637656285 4.068546333670367 3.1943363710140713 4.109681981188565 3.1689693223535076 +1.2203441011846716 2.5733335520845224 3.7120704471412878 4.128694028907567 1.415682048741893 +3.591824671852754 1.0678689040383458 2.455523946441195 4.146977530755119 3.0383166302694717 +2.767937809685363 4.396274570443987 4.8256634055845105 1.2414047582996344 3.9367995449443827 +2.113239338187993 2.329576284660649 1.8383863832218954 1.6941070082459153 0.26003502158857844 +4.152210385834509 4.172418950191687 2.9523484087694225 3.627260971638485 0.6752150424804414 +1.1149625232766867 4.384499226792866 2.227954691949748 4.766789709676522 4.139511263769571 +2.612855623646517 2.5290974436982645 1.0568772869120293 3.8593175542218447 2.8036916529011804 +3.4674896261961465 4.371486834825144 3.7979102872144863 4.235978514366594 1.0045470247077586 +1.7480954031289322 2.2467852139244555 1.9253264005055128 4.29213684578513 2.4187772140641592 +4.118540964881378 3.217449936923803 2.3359479630198763 4.0155368938182505 1.9060388288610661 +1.564201094447704 3.192997914424102 3.9980066662236577 4.123443676287225 1.6336197612231904 +1.4466494503631244 1.5014915252917134 1.045432135485123 2.699924166189644 1.655400716698903 +3.0261988051535202 1.7421090142825464 4.742633677861843 1.8518944794091747 3.1631091831439893 +4.10878828182838 3.26556843044154 3.1959974663705433 4.137178348515478 1.263661810251446 +2.1599189146649307 1.5479600113509813 1.1486512123405537 4.315954495720491 3.2258803121403226 +3.4434582994774345 1.6391615695587172 4.056344091579001 4.317770871719034 1.823137584212931 +2.648217245194629 1.5290571114510048 1.3660594681361644 1.3983277674853203 1.1196252266289526 +4.200999902737125 4.435268646941106 2.6565625719171564 1.8563399441773871 0.8338093897634227 +2.6221818183218577 2.637483209585497 2.935217079278071 2.903363801511004 0.03533785334607782 +2.9957728883004795 3.479115715022736 2.366666389412887 2.8987580992872872 0.7188476026675779 +1.2544577763564662 1.0539099616199845 3.956297627504856 4.599210893021521 0.6734663265322774 +2.1071183035022774 4.2166873333049635 4.349712519754626 1.3524554761371945 3.6652191308320097 +3.533592041069813 3.2581752310409304 1.3557785195500602 4.243443381027997 2.900769341306005 +1.908656590705184 2.0089139442710837 4.210263126092821 2.8479310960972666 1.3660161407889169 +4.911575942938576 1.1589813662089914 2.4916147668102595 4.422079663692244 4.220030897445405 +4.984230734399127 2.630716583387222 4.30744716800702 4.166035860147468 2.3577586850659324 +4.35963617940161 3.906767608644927 3.0731039426767133 3.3507826243002503 0.5312206628204391 +3.3268538966239958 1.7878689273082076 3.197999923180063 1.682504756463365 2.1599074832319993 +1.3804574475681628 2.9103684515215695 1.5770659472978599 4.395967572232994 3.2073094722960023 +2.906798977064228 3.7389323445172167 4.493888383267663 4.728463622049209 0.8645643318331321 +4.60101546288101 4.281760763035193 4.030818527148312 3.867719792112456 0.3585035017178205 +2.7044314341515343 1.8095166637873392 4.135084109326803 3.534763767572083 1.0776163319755798 +3.0942325933563177 4.311954919193792 1.2271250839189718 2.937198580800755 2.0993329958776235 +1.7925916750047355 1.3679092893038844 2.931148593310532 4.3211507488099805 1.4534308105368068 +1.6464136786575145 3.502819435209337 4.688474947741938 4.246045443338126 1.9083988575048318 +1.0779922804059017 2.015868932910987 3.745207390255599 3.9785712116894394 0.9664736356819826 +3.2609301043530325 3.1372941673343613 1.4637314269196464 4.981108548728882 3.5195493549529187 +4.208377513705932 4.634820567209512 4.860163228134963 2.949313220826742 1.9578563349519003 +4.984950928545615 2.533648850856198 4.000523404455013 1.202627593222509 3.7198256473384403 +3.8209936630202272 3.8188522591835357 1.0378360606979875 3.6072914702151224 2.569456301848167 +4.10101874842068 2.6050026910860065 2.2633540179436054 4.25209146851811 2.4886021560548324 +3.226484026086334 4.061357456181768 1.2565111722861868 3.952612955321296 2.822406503104117 +4.372852600203601 2.7370960160956166 2.417037561265429 4.462834221447229 2.6193479297839817 +1.5521158239810307 1.9371764583969067 2.2693848013985214 4.3222042532111935 2.088621409905883 +4.242500796074394 4.5770734295117625 4.179847338772175 2.1498144368685095 2.0574188756441005 +3.562334649119984 4.37988505939474 1.922710077408457 1.9442573186369594 0.8178343089801141 +2.5715191160701747 1.6682676385857436 3.9604616196654803 2.757687778945164 1.5041702508356254 +3.9341256298494565 1.04689274669711 1.0041166038463802 2.6116089790826518 3.304564337094825 +3.3112554423869183 4.598518729881677 2.9787099583482965 3.245686618860344 1.3146571068495312 +2.5136288712760804 2.1416046918900533 3.3197125221411756 1.2414037827637237 2.111342986400017 +3.2160004072369572 2.8299693796295515 1.2680873104148507 3.8156320640338164 2.5766265204656937 +4.037127275346192 1.1467390133338036 2.96120930602345 3.538958410653042 2.9475648140591058 +1.6111327899553607 4.358779338116767 1.9966949868913821 4.45147149733007 3.684493081799019 +1.3798637992852512 3.040283893597922 2.532528154684378 3.964829939058999 2.192825412822467 +1.2593457011894515 2.710432983732804 1.832245468569142 4.035849326907213 2.6384700616155348 +1.868062906729096 4.65728465129207 1.0776179729132842 1.8645492326388622 2.898106062219981 +3.0343752757808264 3.7868432220786845 3.7843669855724555 1.5769218082255922 2.332171138917048 +3.4810888784100316 1.8205016514426218 2.1868995976559193 4.59768832757014 2.927362676309297 +4.3336878885594885 3.230012094076302 2.7393084642951493 4.946203417777939 2.467485682843144 +1.4457623977823584 2.7704512647251325 2.549626186033613 4.969322972278846 2.7585744745371 +4.175936326555524 2.0184606767605797 4.547624948441728 1.8416628358192355 3.460770453873891 +3.4217653654864852 4.427696364862889 1.1880271489010248 3.90139563245815 2.893832355729596 +3.718074840266249 1.2329175206001874 3.0822536474262883 3.700292492916793 2.5608551146101646 +2.61013166048446 1.4253129103566948 1.4851010390601802 1.6892263129265204 1.2022739280568833 +2.1624993845131044 4.2424316285601 3.9582597145759784 1.5257771171649903 3.2004827333597157 +3.434316109124688 4.738814842311645 2.2492768917840897 4.068325609836237 2.2384492809830507 +1.017095060637779 3.3152875070190633 4.727305382284184 1.9226220706052395 3.626008411382186 +1.6156077352747187 2.090802678352302 4.217551286125703 4.862807782364411 0.8013527187604476 +4.738735510365723 2.801731990224561 1.953368818019562 4.599516825865564 3.2793416894960212 +2.1769902343840917 4.235212612701467 3.900829531906876 4.134755512229816 2.071473080413183 +1.3041582291906093 2.551005547788231 3.4844529338378325 1.8585513355511973 2.0489471060047193 +1.5798468478395713 1.574931894995741 3.9312107660970232 2.6757915314632412 1.2554288555907611 +3.8050180091978563 2.758432790211424 2.1196793810077783 4.455629808024671 2.55968846113766 +1.3317018878136246 2.6145230749241475 4.776651071396628 4.106390089123858 1.4473700226469077 +2.4245220093229314 2.925530283099615 4.455810955083997 3.3516593484506765 1.212501571472646 +1.3119469487588034 2.1234381785480436 2.7198296197885794 3.6520661678551445 1.2359542861999058 +1.6769786526034376 2.0309590657823775 4.231666504210853 3.3400067623953325 0.9593535469725716 +3.1870112726639244 3.1518481425957483 3.99589450368905 4.505134937784028 0.5104530002198375 +1.9106824949014607 2.4084446712476337 1.3981098500201332 1.3102493076997375 0.5054568815415542 +4.871609877262713 2.6083881159100675 1.0956221809421733 3.3201158617372726 3.1734121820144168 +4.120745517630457 2.8706640424588405 3.1915134044609865 3.1784010786892036 1.2501502420326887 +4.348925836969334 2.815583270348274 4.30085553067131 3.0587037733756355 1.9733424474137256 +4.935447369327351 2.5429294214066682 2.0849912347038595 3.2845219851369483 2.6763811672400406 +1.3194267235898263 1.263439005065183 2.091087803029279 4.009731155826329 1.919460064668682 +4.862043142843278 3.469724093673911 1.8961115101254098 2.1939350635765473 1.42381571970187 +1.4417814381294352 1.2503758436670016 1.4827231607121094 1.6061469800383903 0.2277488545933964 +2.3801791869800186 1.5313966333973257 4.37245993986714 4.0587835802614105 0.9048893202164892 +1.5883899909751928 1.425124807552952 1.0348147989253786 3.7749729443921614 2.7450177016343367 +4.6516205946913605 1.3784728655835474 3.104898886235369 4.699237267090757 3.640798117066121 +2.0518276539301175 3.9448982638886863 4.706461268246078 1.877528357588369 3.403906248311079 +2.2811788164416633 1.5257023607940399 4.6731394409336655 1.5832769071146218 3.1808796193720594 +2.997326225200166 2.9943537185297187 2.0830156571754483 1.5223355677008192 0.5606879689534848 +2.1907086663985367 1.3239262220627213 2.9269537509074914 4.731359783291145 2.001797426192593 +1.487059145602562 3.4885331913831514 4.335335170332526 4.978637171080163 2.102316774441767 +1.4317027081229914 1.165938619455333 4.8650254949080995 2.8719067130487947 2.010759316632816 +4.144989274312946 2.356463374114914 2.7823781466731714 1.3734836677320015 2.2767978716763797 +4.561650722310228 4.106968900080187 1.7849106425511692 2.2065885440334667 0.6201191918211733 +3.3683097020413086 1.5642751767711478 3.0288720715406106 2.7171869034264433 1.8307616481642528 +4.67351205394627 1.0967579861789258 4.52678686663878 2.4492642288855935 4.136335331143645 +3.361611108904083 4.208345795763793 3.363172426098888 2.867381020220352 0.9812078006591806 +3.50602212435926 3.1775200399906245 1.8316009567009073 3.0504822951468604 1.2623728992046432 +4.917262574434268 4.943608383897204 2.2365939180449605 1.8700923548348052 0.3674472717435045 +3.11329853160815 2.506660809984973 1.8150914483471907 3.280088274031043 1.585630797052051 +3.941926953672363 1.323704704533354 3.133018885417012 3.649341068046442 2.668646912231318 +1.6868632616855366 4.827640302818426 2.969885223856306 4.135858602910432 3.35022004393299 +4.178236553555532 4.8406942500555346 3.1569233349397985 2.4599606344210887 0.9615649772981658 +4.46554817255908 2.851015190788017 4.978929307326091 3.0032577641770537 2.5514691445587694 +1.5673565141509447 2.1820223468358497 4.4492297619468655 2.654340771162694 1.8972191689703246 +2.446374577400449 4.241666882441265 1.7220150636582958 2.272208615471682 1.8777080191008924 +2.231443306166849 1.0382325799727674 4.008243234168422 4.246059212315406 1.2166792003509446 +1.250805611235077 2.6075610984929556 4.054801247301327 3.462812763009248 1.4802823439259138 +3.277890706927178 2.550091165972818 2.1272739508717136 2.7897545548904685 0.9841609230783508 +2.7115198345858533 3.6331089702469583 2.4777564272947217 1.312954456530393 1.4852912731397323 +2.687168432775885 3.0427665864616453 1.3042291562394142 2.854682953061144 1.5907095973129852 +2.9558337317098946 4.41523197537826 2.187239780250111 1.9449405793838541 1.479375590025311 +3.3636895452084095 4.112509183281164 4.5998646587897065 4.099779815541797 0.9004530530847776 +1.7186688359403286 2.9241287155483957 4.758256203008931 1.0352030928551135 3.913343580925486 +3.1470711460512675 3.348071176636706 3.059118871021163 4.550252767168745 1.5046199880819127 +1.0137308754570848 4.711337300068452 1.73456119097018 2.8442041462101137 3.860518198304584 +3.1453062093405513 3.6780752041830347 3.141516892762042 4.2065517594600665 1.190857703148428 +4.847188165226441 3.7572766689170978 4.534769220450299 1.2818686551881178 3.4306368442710875 +3.7517395210039512 4.014743216224337 3.790985839476285 3.302979741738752 0.5543653083739931 +4.944226016866212 4.8069172426498366 1.581902217726634 2.961160283616488 1.3860759401270282 +4.256675016068675 3.0745643267818172 3.130104012044503 2.282449507296249 1.4546146710198742 +2.9329263064726026 1.9363728077368636 4.604394343300435 4.151319874278912 1.0947124509758612 +2.341242963802286 2.776691687706128 2.207616309434059 2.942582806342433 0.8542782583720901 +4.826116532430469 1.1230631238024031 4.378387618081634 2.4877679067473233 4.157769527046655 +1.243718305531011 4.901774315308984 1.4073795838925274 1.5372698582378064 3.660361355664525 +4.871624534407898 3.411047156952531 1.7314512356246543 4.102560095500566 2.784859691423689 +1.3170251568099425 2.539631801120699 1.8078216540152585 1.3753819181779199 1.2968311886455677 +2.21993798489392 2.0906022411450897 1.7377179228582755 1.8455884966169331 0.16841554350500157 +3.962794218347827 1.288392363661726 3.0890625695240748 1.664206754194932 3.030287011955424 +2.5058610065469726 1.7326652045871032 4.308290649271314 1.317424535389942 3.089192752052262 +2.8496841595168165 2.0341659028051735 4.093191509180704 2.9599358848380555 1.396187070966582 +2.9437374529793097 1.0257131396744152 4.190677678703337 1.7601627154891255 3.09616218128781 +3.61695125901811 2.0750012328485212 1.692670568649231 3.7355392660913846 2.5594769774689117 +1.2984070641766308 2.8614026811467084 1.5844717180083334 1.8777335635373347 1.5902697282884906 +2.3395457099929198 4.784983035787978 3.6052804183745124 1.3478775072202676 3.3280672495728427 +1.5607690131232 3.4895034557127302 1.9018266747145236 1.8549836781272688 1.9293031945136099 +1.4204367907683308 1.7535760865696886 4.273892577800368 3.247844807755311 1.0787751465534687 +2.92930067654143 1.5747104078168785 3.71192037089744 2.7034346773506854 1.6887741679134398 +4.5415736054355715 3.6698613150132986 2.085404918820084 3.47003875381874 1.636182500302558 +1.7090344575512106 4.475885529477207 1.2269114655928388 4.571922942916675 4.341032899857616 +2.0708977564883884 2.8023969380792124 1.9847316276137774 1.5352130645335618 0.8585790535656849 +1.003071473014602 3.9147052001326488 4.462065999652225 3.7472762122621184 2.998088624615444 +4.257255837231931 4.896710462031088 2.964828249291908 1.5591506707136018 1.5442900220149065 +4.822252423273728 1.9300973502014243 3.9540680226448437 2.6158051403375633 3.1867708591706516 +2.5251131968818217 2.7305339452363437 1.7819934784024327 1.556396143861245 0.3051095560722745 +3.9410691025508426 4.681800299113281 4.06362442465227 4.9890879940314115 1.1853967790612572 +3.2567397492384935 3.1243213764742896 2.834075299063445 1.8871263544832915 0.9561626059865479 +2.8733272437468247 1.7684841419937238 2.8025040829013386 1.4742159972171418 1.727723218013233 +4.273646891302606 1.4864609441083596 3.0796600537410708 1.4460340919079568 3.2306561697915575 +4.723743470214346 2.48070996010993 2.93238422404194 3.5743425214270594 2.333090178932855 +2.320387766280022 2.805220573701224 4.204444257990519 4.604556396183495 0.6286116243606062 +3.9722076700133555 1.4833280921702268 2.678752071241432 1.2905933662655547 2.849825633824795 +2.3824290716853196 2.4994185278472965 2.5494018240561354 4.937844550141518 2.3913061679013943 +3.150267408414971 1.241874784290772 3.6060560666416284 4.91779328268676 2.3157324827728867 +2.092833942395713 1.9773685052357055 1.5807972925683882 3.89469755218144 2.316779376336016 +4.688762894597337 3.803048542201688 2.27243439872286 2.3509401176395763 0.8891867418839953 +3.570637124202369 1.6835702543347786 3.1001712984432044 1.749629789880509 2.320556773212555 +2.867404232933358 3.914197846233628 3.5563083135106246 3.1879453580838075 1.109715339975534 +1.7666396477120494 2.748112409952426 4.109310303184594 3.9669907960442123 0.9917376795969971 +1.2872705518375094 4.401095267682052 1.2912297512109596 1.2955377735788818 3.113827695949323 +4.8552163601965255 1.8492403550982432 4.988361673425311 1.7197268241994021 4.4407055206127675 +1.2537483599882404 3.4709066365752252 2.1488676618729334 1.4310395429178495 2.330465196436274 +1.525787290646555 3.9651876347624966 2.085000366002418 1.8312613730788416 2.4525614192926635 +2.5800129198988895 1.808074774349917 1.3433156772534196 3.354983667536556 2.154691765353778 +4.8386685383550025 4.037572096602929 2.6936211278890805 2.6307073021480187 0.8035631017270578 +4.90490235605116 4.705033948218711 1.8687144917914735 4.1593242712551515 2.2993130587686657 +4.724039995816175 1.1502467645396965 1.6677330697943007 3.8870449655749986 4.20682105046926 +3.383100755277754 1.8805414296718133 1.6389679372579424 1.5179681207729838 1.507423458274009 +2.0737068767945717 1.259286762003084 3.953878270324584 3.965646658222882 0.8145051370806108 +4.661633771272376 2.5498914880146772 2.4304645486609644 4.493572510171992 2.952265220427973 +2.5014286225978863 1.425351168408815 4.14114885391089 2.5295399670364267 1.9378405227641358 +2.5371366188716546 4.313107601785932 4.186324070998187 4.885444885839698 1.9086232854856828 +3.3952516444380274 1.7278959450641613 2.8873215039421285 4.413401363766765 2.2603085556615707 +3.699832509478387 3.131816485452798 3.6309542879765004 1.0268163951669238 2.665366085234173 +3.373607839582872 1.5927472091129142 4.59024555009038 1.6716307720656016 3.419031559910274 +3.6847998757578617 4.019797865453581 3.8545911540697975 1.0831190746913948 2.791644880688484 +2.0566775110631457 2.550945398787874 1.066434884848971 3.7112730603458477 2.6906262689941745 +3.5440663817839475 4.547753094359153 2.8351991406598955 4.838451831187872 2.2406267781823015 +2.02229185241859 2.6786749809083084 2.7477723989757163 4.653245177990831 2.0153573685412556 +4.338107742253872 2.4023726272726127 3.053603726015714 2.2800288801330746 2.084583526163885 +3.365944756899911 2.482815816363239 1.219500226489091 4.271255799187617 3.1769684923067674 +4.468977878875222 4.774662758190308 2.6891177403266244 3.5651919988419167 0.9278735645954129 +1.8993528891189801 4.512527017152834 4.799353124170264 1.610782954644613 4.122579138041419 +3.645809288737482 1.6122096870745635 2.91811186304638 4.707594320696933 2.7088327386759494 +1.7260656436559767 1.8143456704955443 3.3461395878839713 4.655780755614773 1.312613176588629 +1.275363885973928 1.2180606182559943 4.602697885476668 2.3028388667502044 2.300572791830027 +1.879025425775143 2.436199774901502 2.7687464482139323 3.269489651036007 0.7491241622701079 +4.742428299452088 2.193010806006034 1.486514151368762 2.136817308625357 2.6310499334346846 +4.313038062323029 2.1572469614948804 2.671753520103956 4.980855739177463 3.1590169876941205 +4.981248969966665 2.492402459150981 3.6581154939835536 2.072634939789071 2.950949938939705 +1.2277823386704756 4.693980878345953 4.169138503220415 1.5530747257337199 4.342616953442517 +1.6155434732812854 2.91163732846734 2.8640348997257576 1.5342732857552153 1.8569128227896403 +4.755147534738206 2.0668339089521397 2.531164461791473 4.510894277734199 3.3386165240589767 +1.3491799091733694 1.193683208751406 4.381877979764015 1.4544506690736672 2.931554175385105 +2.2544322044716067 3.201381977809096 3.93223865355833 2.763518507794717 1.5042010013085496 +4.7330260714084265 4.109874799408096 1.6813971946144495 4.8561483857243175 3.2353303746679654 +2.6730746581023754 2.7310196477334956 2.594767062564975 4.166816543664743 1.5731170308814921 +1.8806086284566308 4.117794136218498 2.3411553409001855 1.439516234142626 2.41204313290088 +4.330847166488769 1.9090393666794099 1.7194278771891267 2.6132170954318794 2.581474808295529 +2.4006091403957246 4.723101687985829 4.908622271052467 1.5001278479929576 4.12453704864429 +2.5943020170049116 4.184272444789618 2.5452885837637953 1.181616814654931 2.0946614655104487 +2.528858646134183 4.940956606684676 2.4686378878095354 4.083309942910331 2.9026509292051075 +3.271299530352883 4.512279951268761 2.4226981667076215 1.0110059410146648 1.8796029754122234 +2.7191905478921687 2.0164612780850555 2.6748265625754915 4.296608263220135 1.7674853072061079 +4.113113796547957 1.057313005261022 2.74043011403069 4.20337909651837 3.3879401118366297 +1.2967974524308215 3.9374340539383135 4.350132519655498 4.912099324660471 2.6997719072448576 +4.892044867057205 4.4942674120458435 2.076152751493526 2.6751041804374847 0.7190060625261275 +2.8430429311008996 2.2102012269147813 2.4733648901935688 3.6694727276748638 1.3532045600874136 +1.079342135848178 4.754042067533209 1.850479471011131 3.1058113473851874 3.883204566819366 +3.8107959733495598 1.2778258314804773 4.932834339228153 2.896539095218053 3.2499901631202563 +2.391069300513383 2.5646559546584466 4.085186709919835 3.296748481640427 0.8073209809670809 +2.2837626062816963 3.0874953069123943 1.313026430298065 1.2619109060989966 0.8053564744119592 +3.5093617080333175 1.173661048948429 3.380919231058878 2.972406496566405 2.371155883338778 +2.9209232606781623 2.755636064138119 2.267445604861726 4.770314857375006 2.508321022619802 +1.4761941438762713 2.1070538286350584 4.779116715452195 2.9685282556158628 1.9173456946378917 +3.138041809525949 2.1519342646713295 3.077206349807709 3.0249080011606875 0.9874933960743284 +3.283722977415131 2.1374644170865635 3.112215767931154 1.8657214541199303 1.6934157084101453 +1.6918898586536781 1.2985309800810865 4.525703909442969 3.600793901145297 1.00508195228105 +2.893953135467752 2.8965677888993935 4.951638270735679 4.898572797876959 0.053129848694374975 +4.683982471989092 1.3239775179485092 4.754746217278945 2.9620419876605943 3.8083358236989526 +1.9474819879905922 2.1270717334665057 2.6152847100332557 4.57464531618063 1.9675737499779549 +1.3100575611963072 1.6767150150376628 2.1986314684035553 3.748777521377727 1.5929188535543262 +4.529876972968843 2.42010574191463 1.0284587987340057 3.185412507909422 3.0172146014013643 +2.636360062500424 2.7154795899680857 4.5336858352451 3.4956810443399777 1.0410157758500553 +1.3895921688096267 1.3176222518876535 2.399242699716866 4.213254125695839 1.8154385482643092 +4.501488554554112 1.371382435098114 3.547973921618375 1.168673490528498 3.93174704939679 +4.4531362518540405 1.7334464458899226 2.641314639477762 4.4718141001670855 3.278328982309287 +3.074904158192661 3.9390894091534028 4.915579869663823 1.9918216172305945 3.0487995123735976 +4.594327552690801 1.4295278942820726 4.392403267321743 1.8032732649057834 4.08895476219467 +4.411368422486493 4.635989803006822 2.226618813692921 3.690530044287668 1.4810438398806045 +2.9959486005638016 4.009354663047523 1.354812540254858 1.4127655256391485 1.0150617695459283 +2.8483744440014815 1.9457340991800574 1.3825842243917696 3.1336045709290543 1.969982701976566 +2.7597257454542063 4.09682925127391 2.2162207675065364 3.7432534119320224 2.0296981259331237 +1.5981190009547435 1.662970482005449 2.2766303171528555 3.7997095049071405 1.5244592243693245 +4.576631824886103 3.8020922142364517 4.965852655690383 2.4701560507358176 2.6131232562676905 +1.6175539149590192 4.771790715026375 3.8527222976438584 4.003363964865754 3.157831962407523 +3.7947630409157 1.7819078324921183 1.4457534769730152 1.7272225879111813 2.0324396548213337 +1.6269035060803532 4.0119891702166015 2.733716898215913 4.69936238934711 3.090695038672152 +1.0345742189183071 1.2683062818185382 1.7073489082084925 1.4935527038636067 0.31676409869156213 +2.3665326786926024 3.2758485983083103 3.098250678795016 4.772384251845133 1.9051453125890718 +4.605795601192058 4.667484902835058 1.449363417272847 1.8141264020052077 0.36994270498019216 +1.0949258788748653 2.947616337009703 1.2067685125068621 3.1721149536637996 2.7009347580850807 +1.0257712816595808 4.5742514934034055 1.1761511943782588 4.425079448637299 4.811158552205508 +2.491569740617561 2.7492558038707937 3.2880489577018635 2.565597095083004 0.7670324641085332 +1.9887932612558141 1.6551237031924462 2.0803678929641163 2.221474087566373 0.3622793564824433 +4.691916695006072 1.6889818432080221 3.4996116166267184 2.7375966949737514 3.098109821320922 +4.572241941537802 1.4149791480883325 2.223528755773027 1.3677103311141936 3.27119756708241 +3.725912828126688 4.341287186340079 3.160664859219606 1.4272280298225613 1.8394262263696854 +3.40673125444398 4.809040071774703 2.905284684813359 2.285869216349943 1.5330184414204693 +1.9317845040380406 1.0265138659911592 3.7258691491487435 3.5194298124561167 0.9285107042161115 +2.1934905232236126 2.3406227988868213 3.00470452927738 1.481482164888929 1.5303118237519362 +4.781163578631206 3.1996848835205216 4.202429958181151 2.820392960643149 2.100262156411158 +4.065647153208306 2.541485240991529 2.0961037063415255 4.422247972673179 2.7810100112081453 +4.171976630755015 4.61234317333081 3.2535861681669576 3.0756746275647027 0.47494758458131703 +2.6937568802084257 2.3109822252600627 3.7373215588344437 2.1001199225155402 1.6813523231125989 +1.6475628509737934 2.793843729080271 4.012164205947487 3.455564097361633 1.2742698036092444 +2.982292792851455 2.5396494372024256 3.1040323483725767 2.70419214818858 0.5964941961020338 +2.8510650935106985 1.6784245979554906 1.7705898922682914 3.2197467399922646 1.8641730877580134 +3.790115344736105 4.770309580497015 3.8609263192698204 3.5113231006340695 1.0406743728464687 +2.3976666003141855 2.4301812376899536 2.5315766699191125 1.7072006727319766 0.8250169612692592 +4.806512430704512 4.234732352692711 2.1165638976104715 4.163827944582875 2.125611096987642 +3.09296965336599 2.1406190409833967 4.965385127898044 4.39210264056706 1.1115864785008405 +1.2220203022420564 1.618303044039366 4.741429537359664 4.569160711552901 0.4321071161080712 +2.2386239566697923 3.243735436008231 2.178716600665848 1.1762979844551675 1.4195394210882766 +2.190588243560104 2.1725363291537367 1.652701732384862 3.695337250760587 2.0427152842586263 +3.4166251943115107 1.9796281748506166 3.487410366301707 4.260139416472384 1.631585308501266 +4.110003769019503 1.5289997921830576 3.6017547005436814 1.1282439829553255 3.5748897603240875 +3.8677016331651126 4.454583336177223 2.8206101590488846 1.7219032030838703 1.2456271947963817 +3.5038594683842343 1.55382748687442 1.376433043450001 2.6832306141885556 2.347412324198559 +4.653775361926243 1.0184102893498865 3.277998859231832 1.5595406090230868 4.021066769977664 +1.1222846304530725 3.694988235525199 4.1917084358763965 2.918810667465945 2.87037847127786 +3.1945427644477453 1.4111836421273658 1.6466328879402679 2.5324317997041916 1.9912331534115904 +3.217723264353959 2.7481950554192167 3.8560411095119678 1.219926883750805 2.677602463071365 +1.6785440818337323 3.849335819310371 4.062087769275463 2.1407721490851266 2.89892919538995 +4.8400063915447 3.152221906823719 1.9006715166284711 1.7164369478900237 1.697810013865835 +4.848941720202207 3.225379557588731 2.3920266015169207 2.2846856526172066 1.6271066883215861 +2.8298082174448496 4.126518369883513 3.9357465149546726 4.986703440657879 1.669121828723427 +2.4111576204618035 4.253887378449051 1.5560918121806773 2.4628826126607852 2.053758144672127 +3.8980012116666543 2.7245687421613844 4.672294274533513 3.8002107129612193 1.462010088492502 +2.8406184765691203 2.376386437649657 4.284081197462554 3.05657900522235 1.312353998703791 +2.5760301272111676 1.2083745471470184 3.0505490416467422 4.3952290894635695 1.9179797226971065 +2.0819434701034556 4.218623753055427 3.8021201380501597 2.7875455219535805 2.365325407461569 +2.118442902105917 4.308633772500374 4.7472127937175 4.090280112816075 2.28659060524519 +1.7783149032194232 4.998069135710424 2.8706822655397137 4.365268848498134 3.549733281755552 +3.611112259795626 2.1715998180329823 2.4782275235389726 4.549335576221566 2.522238021257338 +3.1019419462875666 2.871829076582593 4.487305449409574 2.8196686745841513 1.6834382511853514 +1.2283188834467564 2.907206860842174 4.265971727620878 2.21252666181743 2.652414273622316 +2.6956777349243852 3.7205017157501548 4.307912282259441 1.9822916429486157 2.5414121172419217 +4.449506921177882 4.443284585508362 3.303862529043871 2.7916591980978165 0.5122411245628543 +2.860537603559196 1.1221386178858959 1.5267814191321247 2.205508916792146 1.8661998953675332 +1.8579297512596025 1.0228858471892148 3.715395199662879 1.261262181032575 2.592309239820088 +3.5454612794998055 4.348287045754206 1.5548532428870439 4.389043598862786 2.9457026640290547 +3.6736759371499557 1.4404269164043448 4.068708492255351 1.266518739977745 3.583248330276714 +1.7061887570443712 1.8495194282414387 1.8379792011657252 2.362724790646036 0.5439683952077 +3.1782903813946732 4.243314314981166 2.9997938393114842 4.646959061175757 1.9614864891788637 +4.512447177707594 2.413898769969616 2.199066204010453 1.081471829245713 2.3775875601385104 +1.6983237109716791 3.0532749366378495 3.329815327576156 1.8267802687304875 2.0236124164605878 +1.5592357262706296 3.7564378489460934 1.143789361528028 4.0755938649552625 3.663765114497077 +1.8807795836357064 3.6911352051738686 3.435370554115585 4.173722430338115 1.9551345144404146 +4.276886646294496 3.4131209364406825 1.263737994495561 4.889198780120768 3.7269366924627803 +4.833916314814035 2.2101449615998408 2.0987092655707547 3.7199242754729376 3.084236408299399 +2.162692814618176 2.969401369539237 1.338866064097311 1.5372094689416502 0.8307338917054439 +1.839647457371433 3.7396323144082495 2.408411277954133 2.179716203152754 1.9136990082579917 +1.8370839695736692 3.800578249056783 1.0681404808400452 4.845771475310501 4.257441216969033 +3.0114153338309717 3.474266058217369 4.601241484327945 1.3730382342905751 3.2612155734659507 +2.116629584069441 3.217283293788498 1.1034127391157211 4.968855240606803 4.019089986682552 +3.1376854088564645 4.074640888219903 3.3169140766760368 2.2885270970973295 1.391210030899787 +2.8969176469559677 3.6658565527196822 4.462126820450971 1.1696802777132596 3.3810458851637324 +1.1614027283028694 1.7483377058841203 3.8714157446664728 1.4608911615582945 2.4809517193361827 +3.501149616916821 1.6161299316033149 2.912476183049972 4.963886940823992 2.7859621876706093 +3.7897207808026994 4.247953766007595 3.104038236902693 3.4990558654322537 0.6049928888663966 +4.93056429571003 3.545437297534848 4.727788513831508 4.164347818876607 1.4953401679233569 +3.921588204151839 1.871800313623488 4.3375894859077855 2.842638839574229 2.537027361131485 +2.456173383835022 3.8168515173360023 2.356021599281764 2.206764628677166 1.3688398833544313 +3.966980247656057 3.844192926982827 2.656723251575392 1.3108230283653488 1.3514895992773879 +2.8222641887110966 4.379721101453196 4.546252652568358 3.427618363538647 1.9175543558504826 +1.8159106093646762 1.1223667830375863 3.1333741118882172 4.949265409251139 1.9438272152829883 +1.117154717607304 4.055274996780778 1.5265792429067786 1.4740630992885735 2.938589580092964 +1.2633074423257091 3.901434674962816 4.096918558463097 4.053471871966046 2.638484964927618 +3.7542238226186475 1.4421862388629703 2.7099681147176993 1.1640544835571176 2.781252729204393 +2.9626080771111094 2.8691551494034777 3.839413282370529 1.5188683099657658 2.322425977001237 +2.5432232233915024 4.605056511036043 4.900973671302159 1.0195345418460056 4.395079774214848 +3.1116901838862536 4.079518752800145 2.7893676683158115 1.395250957869132 1.6971309734821831 +4.018661172679973 2.7588348722184053 3.9754048368872517 1.5819471667222706 2.7047739140649556 +4.1412048968845445 2.431880616288973 2.1843585552727722 4.850965000050701 3.1674247311601196 +4.964883204475998 1.699947755238806 2.0327616517926055 2.292713115331272 3.2752676609830775 +2.3269407154491595 2.343819004230677 1.4746328308898553 1.462615351023342 0.02071947042118487 +3.0681713122044973 2.6432276302309763 3.0013547867133967 1.2988608390833205 1.754725840285671 +1.2322317738115656 2.4667430529956875 2.552159539651873 4.6161669889338235 2.4050249165287667 +1.8620613001518755 4.868375421108501 2.486311723087427 2.9036863466241205 3.035148459340269 +3.660901630752342 3.025995847120447 1.236663188580419 4.733236522132324 3.553748785577775 +2.6985001690316595 3.475191090937753 3.9868408399915523 3.9419032482615197 0.7779898298318768 +3.1055341704037067 3.812599165185727 3.7591713577086923 2.0612376957090435 1.8392714936619976 +2.399591408808588 2.377849407782972 3.69073700782452 2.047716466017003 1.6431643908660096 +3.307696604509617 4.355740459690047 1.9926478735942674 2.7911471838428623 1.3175724157893334 +4.222434269060313 2.7845211966793904 1.9602196116932555 2.3274679115142156 1.4840705230700229 +1.8214223059533223 4.77818520990024 1.115405918679154 2.571577926250452 3.295888921943644 +2.689715988103868 4.362290910097686 4.678707676535643 4.308051840745824 1.7131528298104854 +1.6916078833679644 2.3959264900675596 1.847429708329142 4.314361512449361 2.5655052574343125 +1.1852227056723317 2.7288209164736767 3.884859992335161 4.968215149867643 1.8858297467537575 +2.217568929716587 1.7164075199388011 2.2945812733503863 3.4729921755570845 1.2805526201956958 +2.935569322128965 2.894540345172319 1.8160418619066858 2.43623724608239 0.6215510369253341 +2.835005370322936 1.8481258539638041 4.730195278999338 4.872431877422994 0.9970769427383058 +2.7688591539496716 1.989186418526999 3.7540210306291444 1.8936104245550989 2.017180506933941 +3.2427048517362715 1.8746293655932305 1.6543033799953721 2.3042851177611694 1.5146309105569462 +1.672365186835683 3.474596398278573 1.5012159525711093 3.013440016977706 2.352628096505972 +2.049517795249272 2.480531995610798 4.414961512033839 2.570531737386619 1.8941210189738353 +3.5305907720621774 2.0243806689283064 4.061154735134491 4.965632217498261 1.756914451783481 +4.103231341114526 1.023455523193288 4.316513910763974 2.7595715369089273 3.4509547438582584 +3.375876537392136 3.3462805896633707 1.0735050645253397 1.1690211602310656 0.09999622323282618 +1.4975016291647374 1.882707988221012 1.9901297859593687 1.9740808219681552 0.38554054041382324 +1.0845483019879363 4.5759896989854 3.396404786212088 1.1376545329792584 4.158378979259463 +4.21868479846329 3.8935231597721387 4.87178962623319 3.178889862041411 1.723844454374262 +2.1366584355819174 3.8486001583626366 3.6711048189816182 1.985845608293101 2.402257910676516 +3.5487533027891027 3.6882591319151334 4.570940041948316 1.5338396094657152 3.04030276672343 +4.85004403312934 3.274583961193219 4.711823390090853 3.844043905150661 1.798642730713365 +4.230575988639217 3.3698062609322994 1.6065814849970894 2.324655814604159 1.120961759819345 +2.4837693723700154 2.592544037874118 1.3130599347303962 2.916496390111499 1.6071217733266652 +3.0024928923862486 3.119594709642724 4.622324496051894 4.0877362961774635 0.5472635371096385 +4.82177739585539 3.414660246401592 4.444249196909823 4.768250585834348 1.443937523687228 +4.352300703064212 4.383859736628214 1.4967071841307953 4.536735318628262 3.0401919398511077 +2.8201084737453037 1.9413678214490258 2.476618458065162 4.674570291793332 2.367103165767625 +3.2100302765146953 1.8576312205771055 4.8690373146368575 3.9257010664197147 1.648898566832199 +1.3815056071202418 4.928464854213833 4.967057275300228 2.780420901126174 4.16680915490544 +3.9534995978497873 3.5631040363527857 1.5197337719075752 2.5845812309704974 1.1341555473167342 +1.0535721719432303 3.665757706555763 1.1664364988178928 4.142236324295112 3.9596588070879553 +2.9855271782688 1.4160239562955543 4.685763252669467 3.906620667325496 1.7522566969713331 +4.296033648880958 2.491574677187727 2.1579859201262033 3.939241661836975 2.5355362742232233 +3.507746323897717 3.5995519620059624 1.3639620771937828 1.7405200997036618 0.387587692664528 +1.9158062179461863 4.531980401880854 2.14078048468945 2.1213141821853267 2.6162466048940045 +1.2853945133969278 2.784974915655739 1.4260516040239164 2.709590007777241 1.9738825235429616 +2.9047667633408887 3.977498323284426 1.8988398829280948 2.20454355061934 1.1154406000046684 +3.929617021061871 2.8421136904985684 2.59488650618238 2.68156926259392 1.0909525169526757 +4.031798797408751 2.293171447846455 3.9665452351587622 2.1457671974635106 2.517549944529281 +3.16444116703607 2.6616018092289835 4.765156573737868 2.6503468237882317 2.17376808750195 +1.11126040051139 2.055922111820474 4.125137592445775 3.2147875308722056 1.3119157684167106 +3.794485455302557 1.9956819577627183 1.0089343922885408 3.44643280796368 3.029371642631582 +1.280028638681583 3.6233292685469354 2.323362196811891 3.404091913004379 2.5805105234020753 +1.0697031232051 1.6136515559811153 3.258940095132242 3.586379990107311 0.6348990331861968 +2.4087312582690696 1.823569024767996 4.618731854224649 1.692089694654637 2.9845685064492296 +1.3064460134186588 4.104354050878222 1.3845026405371388 4.2954273627638075 4.037545309287715 +4.036980008469902 2.2494856424292577 3.9272979059445863 2.304147819603349 2.414488001920202 +1.1548947020392393 3.615543169434125 1.1769910033286957 1.7856323970259624 2.5348047708284267 +4.814369814574523 2.5827150688257148 1.121137341905397 2.5969047318785448 2.675476087265841 +3.620246586365004 2.7563912681116647 4.020222252021213 2.9030322026761697 1.4122179779446793 +1.9169201874806023 2.8997064414170337 3.267710041148965 3.7875577813497796 1.1118050611138166 +1.2153281441557304 4.175527104797764 3.5081787011422687 4.319052575205454 3.069249798602977 +3.7011855941628338 3.789537298636169 1.9817091983539257 1.366674972670956 0.6213478272632759 +2.809559252215379 2.7203910682965398 4.762335006215298 2.120943829775167 2.6428958193616263 +2.876076973698241 2.042724753723977 2.99309005105911 4.130389414505061 1.4099382130542453 +3.1544214533002792 1.4926192766076505 3.7459089823527485 3.449632972879745 1.68800650124625 +4.096394114948533 3.933366675972529 4.977057990857343 1.2024985421983376 3.7780784768609625 +4.786042059279866 2.985889770896998 4.930813716137246 3.3260837459619843 2.411577603675397 +4.918378401930855 4.355540171068129 2.7073568635902667 2.5005078683601525 0.5996443787349228 +1.7444206166130507 1.1673214347209293 2.3526424050584382 2.90812883737711 0.8010047704169321 +1.4041617432671902 4.837187956703993 3.9183843179916744 3.695636314897184 3.440244999273571 +2.193392259638205 4.910729210130685 1.9891670944192996 3.648128152229358 3.183719820248327 +1.047668103643022 3.6304415851406033 1.5179314043070589 2.402226163309841 2.729962651306227 +2.2235601979882627 3.2993263637430483 2.63185435890641 4.353949094303095 2.030488394712891 +1.6534582599206127 4.6372918830624945 4.005177292462088 1.497432175715852 3.897697866838399 +3.3794768177272445 4.283427881578448 2.6391256330057633 1.4801287962103475 1.4698303281465865 +4.551363193699563 4.680704323095007 2.1032187033257874 2.668653982432402 0.5800398112299398 +1.5569919441388462 2.695995770925452 4.221439443027183 1.6440481981097403 2.8178494187609844 +1.2327387740606714 1.4867711032593296 2.3730854065058726 4.876285865655664 2.5160574244173803 +3.0577385748116885 4.53960908666782 4.1143100726691095 1.2528560826323218 3.222399595178445 +3.5493493251332877 2.685212996072376 1.8340997451491439 3.1368926838642843 1.5633301111310112 +3.2025486103322156 4.422217589792011 4.836815486291553 1.4861760550239027 3.5657225099300844 +4.650399294635939 2.9924756390616594 2.1007017186978603 4.506293165078807 2.9215716754195773 +4.272437488914303 4.123339038651977 2.1648249842114815 3.70922409531824 1.5515795056193455 +3.4305260978079093 1.809772884805759 2.9072750363024813 2.4923116392201368 1.6730318581470327 +1.854290027239664 4.014359818258186 4.362732126744606 3.2051545030601356 2.4506912202327302 +3.9520433658276195 2.6870746915426755 1.8542132965675937 2.969060911366039 1.6861289841361458 +3.2778663822687597 4.204835549208983 4.464210471273145 2.9902490815555445 1.7412162458569278 +4.997967148726238 1.5477946119149917 4.055217403325422 3.3220004604615534 3.5272223659799486 +2.1250407850944835 3.063010332819193 4.21791320739047 1.5586926508589611 2.819794467818292 +1.3661285444190523 4.0243856420250275 4.6695447332202935 2.561823820493395 3.3924649213984295 +2.5006878433788158 3.5321436702177844 1.066738421401793 2.2782452747990587 1.5911159538351076 +3.1168528022466893 2.348202865253354 2.1673576575743767 2.828850790821595 1.0140985607785273 +1.8206280275596192 3.5343092742845914 4.675538047434289 3.762144202363825 1.9419041509789976 +3.1142755833292135 1.3924304638271319 4.436663570631747 3.1328631185391296 2.1597792096485353 +3.7793926842570236 3.1689608380118814 3.8447489605652905 3.436938383446031 0.734122950002652 +1.587036576021244 3.944631122048412 2.7833363964956357 2.938403185179118 2.3626886702250167 +2.200183889159752 4.464821160432042 3.6463183223650875 4.396351559485122 2.385609319905579 +2.679745011912444 1.6877823984877627 3.690928712814144 1.1224886664064448 2.7533387184331515 +1.2043154816657116 2.3119167465839405 2.848312812607292 2.5102400754267555 1.158047381445682 +2.262772620820176 1.3360577736445456 2.112760133671876 3.161015336587763 1.3991566668589974 +4.993145860193583 2.1771639881482194 3.830247539218366 4.684865594142796 2.942809189106716 +2.110427843839535 2.8394950949418147 1.082264767216405 4.978982940062975 3.9643349474057494 +2.24542029801959 3.939271182261912 2.8618728988531443 2.482528718400873 1.7358089829504575 +4.319080363702811 3.8333003727496275 1.2423413125299572 4.047909876161295 2.8473140263846703 +4.0368458976067085 3.104046548668115 3.779812042441835 4.642930211194512 1.2708609674591629 +3.221657956921155 2.068553540645594 3.3549981297831053 3.6702251559337706 1.1954153557864289 +3.0282380812011827 4.555705288265983 1.9141746822438028 2.5090205322858665 1.6392064098125678 +3.4229527297578572 4.348326766364255 1.3523021541204412 4.369480456593047 3.1558963887518066 +3.4898498547879266 3.585228261410336 4.9603731394407085 2.644663588748997 2.317672919895005 +4.55137136367611 4.937724568537716 3.173584180113636 3.2062378257079134 0.38773065326000533 +1.9652178542308856 3.1654776376747247 3.3180113975378793 4.899673042744768 1.985516836410916 +4.003192521965289 2.992403360305681 3.4686374016199077 4.187427642697208 1.2403040514311385 +4.76181631341402 4.313003599899632 4.855369907746711 1.5082772331215564 3.377049336971777 +2.465190188012733 2.3835211771967 4.432559926178868 1.8624059902954615 2.571451162566506 +2.979554631141677 4.5669099810169245 1.3352351686137705 2.5393198123273266 1.9923646342987449 +2.4189258717203566 2.7681436161605033 1.9980238872454912 2.310274370434894 0.46845853315302005 +3.6189181194889772 1.5161194953402894 4.922481524441916 1.704541231399153 3.8440735923379195 +3.807005046496323 1.1322435961653134 1.9069432173581267 4.594581503491532 3.791800149436538 +1.0082338525281647 4.46749500254941 1.4535624179056041 3.2135064417874877 3.8812228319492124 +3.116688914325374 2.576115361352686 3.717739269436336 4.230301026878799 0.7449424953417689 +1.970639698063846 1.7217546697906734 4.395655621288503 1.3121595464439677 3.093524171698064 +4.0927226478656245 1.5151331478734495 3.344757799082701 2.963909943920406 2.605573395483541 +1.4515773878651714 2.312438858528391 3.7470749102051193 3.204853539562109 1.0173920023542673 +2.1121378278751637 4.709173726780175 2.102545901041574 1.1215647233043686 2.776133918109146 +4.338227013902029 1.8787274388754995 4.1642197101331835 2.848208971277297 2.7894484086176776 +4.056220158386562 1.6526157216526407 3.8003608804213576 3.5873897053519426 2.413021137432791 +2.5985942575437115 3.1030877193075472 4.74938274231805 2.1344489553122807 2.663154588713692 +1.2100957265640901 2.7954436616906855 4.063780943019536 4.405956089027972 1.6218544650973017 +4.289550502925893 1.5755200733946753 3.996523253728926 2.4414528956780805 3.1279713858841154 +1.4424768118456996 3.1265863837356083 2.752508718097674 4.200406065898787 2.2209528990729877 +3.9114852068968484 4.377140993716744 4.141193959952727 4.579733024768494 0.6396497660191423 +3.5667503448852163 2.371379650217363 4.436369475306167 4.323235329329005 1.2007124687687254 +4.125943385859723 1.5460094925926984 4.913460644952361 4.493354233267566 2.613914361788967 +3.018917896771757 1.997244224726784 3.870237290946859 1.6394357962807953 2.453628415378784 +2.750867200962475 2.356877136102588 2.087926088389802 4.4031715035566865 2.3485292213765567 +2.91970840709194 2.2024921453465245 4.760611482253752 3.8531262902162284 1.1566886097301428 +4.492983218417706 3.065217985640838 3.1223462854626822 2.607566079954028 1.5177325917004998 +2.131737498239312 4.308780663237181 1.4545652787705943 3.2786879316189137 2.8402359752137376 +4.585477307297758 2.5178718298726053 2.4659584998363613 1.6031965211345085 2.240390734263117 +1.7171261397389892 1.306827774729963 4.925112967512193 2.364955141705155 2.5928271908035256 +1.8996701903151108 3.788835292620877 4.338694804533829 1.1190957897437577 3.732929493013115 +3.000942647539679 2.3160339012228297 2.184254686658989 3.331238021011614 1.3359157009572065 +1.2198410052987887 2.323850529359021 2.73962219269387 2.440820014910735 1.1437306372846905 +4.921452006093107 2.0118164520645703 3.7188099356789133 3.8512857154893405 2.9126498055041443 +1.487434673395149 1.6606939015947781 2.7659870768975265 4.911538224452038 2.1525353625268995 +4.34824336281058 2.9786066081800797 3.5737577670663225 4.537345126814345 1.6746359125197732 +1.514946426718688 3.5224659756083034 2.1546804177040992 1.535894563581686 2.1007214647439505 +3.253211643857629 4.269736929137039 4.971016268333923 2.088242614919204 3.056747878454229 +2.321049723298259 3.1581959286838877 3.8380802493906163 3.889793163288343 0.8387419118270834 +1.1582728992366107 2.8685239851339723 1.958494792900399 4.1861945721881355 2.808488042248308 +1.9495988826192763 1.7465323632709797 2.536959855086598 2.6681639605115035 0.24176544120403526 +2.235359760679985 1.4715886504863542 4.902360656228747 2.3971530955521194 2.619047771774648 +3.4334329345827634 2.6501754813755425 4.0821277087193835 2.1793657627321803 2.057667432094329 +3.4666890687013696 1.2823466684560718 1.0339854827477475 1.0247283230184672 2.1843620159020443 +1.1399005509085387 4.438255304828333 4.360715398772443 3.9224090044831574 3.327349782932384 +4.075397470140807 4.753879609442141 2.9535432430429434 4.427066680988485 1.6222235775397187 +3.5212190337327294 3.1595495028265277 2.116718452582737 2.7091088331364577 0.6940685935543358 +2.647482122172064 2.149362098980536 2.488124718085022 3.935626026164903 1.530811416993385 +2.4663471239727888 4.304738809048347 3.7575397480442554 2.4716468848394726 2.2434804308029843 +4.820479161727204 2.3088743046474303 1.0720739948574503 2.53115593165214 2.904665050636175 +2.0814411603578153 3.148264662012317 3.5820377615486994 4.637461641044116 1.500677163513701 +3.6789250554209976 2.1637714524062748 4.028115835535962 1.860038739631313 2.645042293521 +2.1074521171216096 3.889369692229098 1.6841808990909675 1.050907027568209 1.8911018060459819 +1.2223256349696143 3.6906542405066105 4.4337462707600235 1.563238142277986 3.7858239553092883 +2.742798468814067 3.926647948751086 1.1195744671467702 2.166430369056198 1.5803185977864564 +3.3270063380465333 2.8084921243569756 2.530341791932078 4.10314461276014 1.65606935331912 +2.0364441430508977 1.9236690275065138 4.515658390577707 1.6663548038705338 2.8515345265152257 +3.6223096115723497 2.648457114418845 3.1298054096460928 1.579453276540328 1.8308414521300613 +2.3367384102369626 4.405122032788009 3.96017658388616 4.278841172770419 2.092787120145325 +3.374752918675603 2.3266996292978583 3.2980229517033295 1.4530994298822404 2.121829045598217 +4.189111882124971 4.009165077637483 3.3349690150105933 1.8086309426114608 1.536908833893656 +2.2982659548612228 3.6354102097443626 4.2017085980682065 4.2553393069130605 1.338219343492758 +3.381424311292503 1.3772881034887594 2.9868843500185718 4.001045392899959 2.2461265681898324 +2.7065400844549887 2.1456660584279663 2.542697791315374 3.4982347250567463 1.1079848847414953 +3.627859774162932 2.7461780364545882 3.6706861038145964 4.552517963887398 1.2469924282239495 +4.825206676995261 4.601018668162141 4.641486641925208 2.9744031972858367 1.6820902100348927 +3.676223052668587 4.228951414917031 3.6863345310561373 4.583718832894853 1.0539483989363074 +4.725021673578824 4.307865433173275 1.4592030315774784 4.876106925824637 3.4422741830700656 +2.0452398699051066 2.0756548844616516 1.9819354278158436 4.599056792592869 2.6172980936612538 +3.2244501869467257 3.997578368338321 3.094325771214973 1.6183383253063974 1.6662131092215053 +3.1407163960248172 1.1135867693394608 2.655694165046288 2.37640757325081 2.046278457039082 +1.8626062504617855 2.2547703625853592 3.212038021851621 2.6422902966100015 0.691668389660588 +4.069223560894553 3.2582252534347407 2.88824767397716 1.3698534469475003 1.7214061936044258 +2.191360226121476 2.6350754849581812 3.8569883336771373 3.359114649796613 0.6669043679758654 +3.449935203807482 1.7433172295090338 3.199982252953067 2.3218557523749883 1.9192839970197326 +4.487003523265498 3.9938201114443603 2.2681989401650426 2.2366049302485504 0.49419435362834874 +3.9970641931783017 1.730123678155715 1.9466567962417747 3.639515162628082 2.829273537022355 +3.3614325283815365 4.669634216834973 2.8058955243776977 4.148396626544798 1.8744868276390483 +3.695117530422006 3.826834507731275 4.365807979699464 4.348513732857741 0.13284748053807013 +3.98934286630976 4.398872719985056 3.0064565831072296 1.6522585336975135 1.4147674925854035 +2.308227832803985 3.1853864328083294 4.445662911021712 2.238757233255188 2.374834705852115 +4.169018730750459 2.5597869456786704 4.930828940818261 4.269044344299633 1.7399959167408 +1.6139545502205621 1.7228987391555446 1.2391361210954193 4.715517330905918 3.4780878586122874 +3.8340422703243418 3.991354904993435 4.080763867824453 4.134167884487862 0.16613023211419797 +1.8478246500725954 1.1230783326205174 4.641626113387203 2.6510087005772234 2.118446343158742 +3.4262676887240926 2.1077768299815705 2.2506523813248456 4.181175265229955 2.337805969251703 +2.406874895212634 1.7537261491640077 2.60844568543833 2.8495545599561503 0.6962304028381285 +4.030303665728956 1.6319053122816913 1.255586795186996 3.7751897445040856 3.4786080095385756 +2.7751203882159685 4.834279581734101 4.927152619037192 2.071254889097637 3.5208363250972274 +4.70829486180326 1.7057108318415977 1.48327036915689 4.3223159517501575 4.132274274176771 +2.116738065155459 1.7303945916165917 1.334638960688327 2.934742617853818 1.6460841391680001 +3.8542543449575053 2.537571741834161 3.7147644655132157 2.1795298408970694 2.022522788496571 +1.7332279727439217 3.6412447419736576 3.345504450305036 2.492206154843604 2.090130611397112 +3.90616972135356 4.288505332819385 1.388603179491021 4.159622976393001 2.79727210593064 +1.303848532898225 2.9659002873556033 2.6330288834439948 2.02737069026971 1.7689652007470322 +2.40506423610445 4.677850977934341 3.3184944322381336 1.8649702675232165 2.697830993825953 +2.3470390267911503 4.548867647404175 4.319691721684593 2.1849081503011583 3.066814335951765 +4.576643875477686 2.5860492131702837 1.4435700066240602 4.063235752144817 3.29015436231517 +1.2273144242860123 1.562293833526236 4.576004596751698 2.1038185262600098 2.4947775796146767 +3.0226096978603536 3.909352650910071 2.3274511005286493 2.886663032354463 1.0483468173651749 +1.8614678122715809 2.1810119480109025 3.035219767859631 4.642931543741061 1.639160031538474 +4.566891336932924 4.017098914080263 1.2667074892048982 1.0164913529279178 0.6040528313645919 +4.854761973321873 4.780051042330158 1.2888924335920162 1.330757585424616 0.08564119422109524 +1.0992433986901076 2.1795334882784965 2.6619858373638943 2.865916091103521 1.0993699222978577 +1.1890145376013574 2.336477841660078 4.550962278043633 3.963662748823408 1.2890278395688952 +2.958952295323295 4.854051665639721 2.1233693747688838 4.365134791365878 2.935458023277459 +4.633454034756726 3.094546531254397 1.5717364524399686 1.7164551717531196 1.5456971928729795 +3.6951433564104965 2.5739837782791866 1.2311369523299591 3.590456584456736 2.6121615428940084 +4.855988080630523 1.421515439493458 4.756625840906578 1.709390190050215 4.59143195904818 +3.9292264706516065 3.7418672353370095 3.2873218959610173 3.9745329816236024 0.7122938714570127 +1.2409474379701284 3.556451056044202 2.707112062677514 1.6680106622413184 2.5379694099225447 +2.582062689403902 1.2060619849923784 1.3091232651211606 2.121767050024481 1.598051269416286 +2.982322879593668 1.7206521362803566 1.5766543566904403 4.351674261835067 3.0483681763333075 +2.8063817747461623 2.549068021085037 1.7703768246817377 2.965495783830852 1.222505498695544 +2.820458374411746 1.711064060634015 2.053457397947975 2.7637665977815127 1.3173059260515467 +2.1392839805196853 3.631399345934524 3.9625472873904237 1.9133139729502613 2.534909355523087 +2.6756673081089724 3.9323394719212468 3.7928959059917586 1.5862624707458073 2.539381035773476 +1.7571663539352014 3.956757083891818 4.925800131964907 4.305494314010742 2.285383706754484 +1.9926238164886048 3.1877359498984217 4.662890671889365 4.934174293086338 1.2255153261192235 +1.6544787432282235 2.606629590495983 2.1487148055933054 1.4328275615042192 1.1912538697532862 +3.419087821316846 4.204447999101523 2.666413202756169 4.345378483693047 1.8535681868875038 +1.916963787169812 4.859867302663612 2.331516853646083 4.893314513440509 3.9017288925851785 +1.6408478635628088 4.709232738421914 1.7168221511132797 1.6519766749714062 3.0690700018149135 +4.660463352097025 3.381461606261259 4.551692788982924 4.111618817297925 1.352594013887962 +3.4924628953228276 2.234901944634904 4.891922045270739 3.105957065918875 2.1842917506977906 +1.9547517666947614 3.0041309702898396 1.2676246774064963 3.7230576558933053 2.670271114471046 +2.5958808841062346 4.712710991380309 3.530786201261401 2.359371449456332 2.419335078861235 +4.462746943593204 1.2322228661588701 4.213966469784616 1.648575805968489 4.1252290933811055 +3.1196895328526577 4.761284941140801 4.938735021554733 4.862972855426741 1.6433427488899326 +4.7502146679722035 4.776993786271236 4.019911780216891 3.941608601724123 0.08275571846672469 +1.8436974619382864 2.0286519050214213 2.67533699838008 2.8539692866699338 0.2571335070267234 +2.6780543995630572 3.0890191049811917 3.465038670331545 3.6530790221864913 0.451941548239533 +1.3331427236610196 4.720505352341119 3.018947529260624 2.977273443514068 3.3876189732024713 +2.4144312274692608 1.7012431756135467 2.999403463801762 3.572776397581808 0.9150921912579552 +3.6803859492421123 1.4410343386719267 4.877108474447052 4.623207762554548 2.253699449186338 +4.613237178509526 2.918615550451586 3.464176887805246 1.5727720409391637 2.5395186073408187 +3.565484908314839 3.3953317788562507 3.9185645211069198 3.079735866748692 0.8559121443448425 +2.84348241029617 4.211753330175455 2.2647553475098983 3.597913771484425 1.9103603570011465 +1.1949183303156081 3.9640408612288622 2.30334463328985 2.6068237708619244 2.785702636347411 +2.8851476083720313 1.5551770950067048 1.5211863952418736 2.8367265693425923 1.8706863756638041 +4.970097856983834 3.155967234802699 2.025428234031388 1.3197871085969832 1.946535207038302 +2.4302809157927947 1.5209936531182469 1.41563935585482 1.6712917342113305 0.9445429924685868 +3.749511147193173 2.3311097872158735 3.509339152406037 1.3959660851117888 2.545232433305483 +1.4499986194054562 2.030212563802993 4.01650586968823 3.1528709093457206 1.0404391217169586 +2.183754223115214 3.8278262507251295 4.528590524730178 3.847219738273145 1.7796738410749469 +3.221168249031275 4.081290045529633 4.6889529890110015 4.872147385799554 0.8794144027853327 +4.412834906431932 3.468718267584575 3.180930283308937 1.1062849730265611 2.2793660064204446 +2.853820631331327 1.265681486166074 2.483772182074132 4.812112304816907 2.818395584650966 +1.6067400754860488 2.6677730795509516 2.3429864001258967 3.0062302334889006 1.2512727193577922 +3.138724144128937 4.478305987321626 2.7446952055428686 3.1478543808322095 1.3989341783055782 +2.324990780386076 4.442703166625758 2.0697802253104225 3.815863391016586 2.7447244255836374 +4.4682920345603065 2.7433676075349633 4.89449628956482 2.7486608558473407 2.753175255508845 +3.5271831007779757 3.0167309261787327 2.5145355398570066 4.244490871965921 1.8036925662776235 +2.6627760859689933 2.1577557430407883 1.5258144221915697 3.9995673136919976 2.52477700301988 +4.957521272456449 1.9549453813586597 3.089100799148844 4.252828228346129 3.2202055076140415 +1.2980616840233181 1.9675255664202136 4.669673707392786 1.1502435934289985 3.5825368409702474 +3.9171629229764604 2.654759233593104 4.962781442640025 2.9736373981021917 2.3559195879505395 +4.532306629882747 3.583584324435573 2.9077422799187986 3.4273793430696124 1.0817100768010823 +1.4952008511568375 2.326104561557998 4.098714989693704 3.6880489968243917 0.9268481718478778 +2.4617141321197056 2.0964187550820843 4.263125262563701 2.8468995888337414 1.4625785009417225 +4.589477034895342 3.2897244872408087 4.421930265357053 4.498316418977645 1.3019952110508697 +3.642804380294043 4.684747737541567 3.772023510014294 4.602594703112322 1.3324768165024576 +2.7169124481855125 3.0464588057442885 2.860748913803129 4.880505048812889 2.046464181628846 +4.712955734065243 3.8095288054274006 3.209900184144182 2.6748719488169734 1.049969250971357 +1.1202798230039765 3.5964931744041615 3.4840950994317836 2.199312720845776 2.7896770999486042 +3.9368729538263127 1.8604093336858094 3.846658589681001 2.2786441095803447 2.6019935771581637 +1.4213050815283754 3.4522344385460495 4.163423097996848 4.165619776863289 2.030930544995142 +2.505112025213611 1.933980740304504 2.4390965884043254 3.6076110281771085 1.300621751532485 +1.0030165363491368 1.6675658938427929 1.7949074580440363 4.918670729832154 3.1936691792854246 +3.195465996629269 4.457995272023739 4.87983161521645 2.3147060936619406 2.8589944233171174 +3.917372764270906 3.483702526233763 3.4864206176972385 1.9813268582603696 1.5663259877991553 +2.996210554142867 4.086766380182034 4.82099294184841 1.785286244498168 3.225651432198632 +3.4273894469054027 4.355253167634704 4.901232264082395 2.9758053960700552 2.137334720699926 +2.3038575171477977 4.975855488146358 2.6807178086848795 1.200905173244554 3.0544096963291065 +3.1883661487133934 2.6029215095514022 2.1611913962424922 3.7791509101230196 1.7206215197073487 +4.654834095488534 3.213567047542223 3.7680525117061854 2.398228140311645 1.9883836430534025 +2.557530430644129 2.7053795291710405 3.6791276243217967 4.788499779296096 1.1191809211059403 +1.5069652914999945 3.5615109965006515 4.216201392738324 2.093365473958652 2.9542495480236233 +2.094368293447947 2.0233218356462555 1.4162827138325054 3.340076433908758 1.9251051598733495 +3.975200892844362 1.7677919705321554 3.3365336047601897 1.9159771629267146 2.625001858044699 +4.226710768112102 4.028201625037713 1.914203473378643 4.980193282837243 3.0724093789057654 +2.04687623740019 1.596889014144165 3.0008763851505407 1.3188831272171724 1.7411461227671199 +3.968268476804305 3.9178838889721215 2.315715316772409 2.151689977554789 0.17158938952183037 +1.5398911140926854 2.3659841586528723 1.008350754159507 4.573645790866186 3.659748408980595 +2.0618205078298897 2.1030884573034334 3.785844539224463 4.120041206611796 0.336734993944126 +2.051193466725654 3.1963127376361036 3.709035925066186 4.417107932047901 1.3463521499524531 +4.4615401766362375 4.8855929253347075 1.3637896866017636 3.773093061060148 2.44633674784468 +4.595636821831842 1.4656807210224834 1.0332508876634532 3.1163278200018163 3.7597652452026753 +3.023739800340998 1.3051844610981953 2.0986829101757993 4.378918751748759 2.855329744046016 +2.3220178050062623 1.2644795076011954 4.720034768801273 4.3758266085367525 1.1121450031677944 +1.4499734467824115 4.880560494586247 1.0030221891386413 4.5149999803352046 4.909472018294567 +4.160450016357657 4.733456347728211 2.0121686496152495 2.3326980529165264 0.6565632903014098 +3.4188182467934936 1.399741996197418 3.7179542387753957 3.290852103799689 2.0637551064556847 +4.2600391388176355 1.0385926503248064 4.89313499954939 4.627961561640655 3.232341942059212 +3.2101071100428205 4.086957447722882 3.7669700967652555 4.607480296469391 1.214629124669882 +3.753501057738086 1.7670754119869265 3.1973744673819144 2.9207416299923934 2.0055953163138587 +1.2280972260002674 2.2191601733682917 1.85127238732115 4.789663071723908 3.101023311719972 +2.1768596600962633 1.1317439877542959 3.068370175448934 1.3922708189484543 1.975240699620207 +1.4453736349313555 1.5804056029303117 3.5191495066735823 4.962737019864644 1.4498891477015836 +4.808937458978013 4.642715455152381 4.979193350552956 2.470766599282426 2.5139281057829463 +1.6754355824022693 4.471739548613192 1.8106614358844189 4.174110871522354 3.6613124841051476 +1.5608167285578642 3.158070178039187 2.3225334664180504 4.437092167826938 2.6500145440325467 +1.7722938035480507 3.4012170845543848 4.959835755427244 4.775453265250743 1.6393254582565746 +3.7688397563712335 1.0237137990902623 1.9347926316155237 4.899861210576711 4.040711348176294 +1.968707995350484 1.7145696088749465 2.8984763717632633 1.8443520256788477 1.0843267295830563 +2.351267433594865 3.657791203932794 3.3246702745558943 1.184915324929655 2.507101036437907 +3.945527818711015 1.1597347692245057 1.5302376420152872 2.868211260093226 3.090439502277939 +2.4986901048267223 3.531339386286821 2.1498612164019106 3.5816719997604274 1.7653460447860607 +1.7991444879691532 4.307001774146993 3.962322042741129 3.2641640141183372 2.603223540298786 +2.1602239830877212 1.7067735062804448 3.77768523052437 3.7003885454140755 0.4599914264916102 +1.5818290944685236 1.2292189888052514 2.256195748358899 3.811784039087056 1.5950513524229915 +4.1618252214302665 4.093603813755532 2.711195659919245 1.1523517119797773 1.5603360581915129 +2.3077132795407085 4.10450943710185 4.963253869628305 2.6588560164232087 2.9221098366903906 +2.5550615477436462 3.0291751375797826 4.580531582357814 4.170111693849743 0.627079086679093 +1.6055075729321149 2.3175139112550593 2.1892983461749083 4.419008647620214 2.340632618371231 +4.550412121807561 3.378406926826816 3.2142633062242028 3.277298098337952 1.173699093498277 +2.947809209087709 2.314634133811638 3.7786629611781986 1.5864685239506628 2.281803481144292 +2.4667619631931204 1.049658494303567 2.487034535952903 3.2124621819101997 1.5919885398638869 +4.041544629574386 4.419323519189641 2.3142686278097333 3.355175156043313 1.10734063862852 +1.9096707775373614 1.6326913453222693 4.148712471646884 1.967831063794594 2.198399718200942 +4.607716013607221 1.5855199288552706 2.2467906248884773 3.474609010807603 3.2620863206682724 +3.5345448610704953 3.5538792614199757 1.9340936794855703 3.3170116336247326 1.3830531034336029 +1.3225893328354146 1.3123151104705748 1.9499578504741173 4.674766524615817 2.724828044175091 +3.3752063303772823 1.4627100693154316 1.6473321955047306 3.7237716533184613 2.8229847272950908 +2.1280413049164477 2.7251634635440385 4.586261452200718 4.052858696497716 0.80067057652672 +3.2165750045397368 3.0402611204774166 3.947172591595077 3.123698015563868 0.8421383277603037 +1.670941355162856 3.9387551747079805 3.1286004528058937 1.6265091187719776 2.7201576968807593 +1.0630827644370933 4.333914036822883 4.175963113357351 2.647790546791032 3.6102144819418602 +4.573565618508821 4.750265371629332 1.5553212400053122 4.725676919755113 3.175276041366273 +3.2674750614649914 1.88405906864585 2.1338443682636083 3.556246378606941 1.9842044471819242 +4.000362776767304 4.814529673539343 4.675651539767738 3.6117847874333657 1.3396567480223796 +3.9597341674106485 1.3577507413776075 1.1184814955859834 4.236550694440601 4.061117245068963 +3.961148958976153 4.0696357746005845 1.449621759494073 3.009165894989407 1.563312924440343 +1.5595328211914534 2.084061840178735 2.3872083664128563 4.233935270861236 1.919773671913764 +4.976121900107399 4.920248212794718 1.6084006881267707 2.8216341159165994 1.2145193367092073 +2.576683416320408 3.6472291366019687 2.561414042780236 4.1560257850590965 1.920639150862751 +1.6908930582044692 3.22530564154011 2.1694879740447943 2.7919802903439814 1.6558739866760035 +4.502422294845214 4.561282652351446 3.1389642078147038 4.754729217728804 1.6168367601426168 +4.573132115192972 3.7124620642020476 3.8029595077979774 4.93324393762499 1.420667388582597 +1.9253058497796536 3.8172078800689566 2.9897985629243276 4.0565587760592425 2.171927863567397 +1.2081648526132565 3.7739342103101836 2.6195423807055582 4.795935180425952 3.3644996679404313 +1.1100291890634706 4.424559481284547 1.7132518001100574 1.900414992896375 3.319810404041939 +4.858495897906264 3.9654072405744833 3.8387530232843248 3.903744315161537 0.8954502877740064 +2.8128392647061884 4.415660952192974 3.833113388572572 3.4161795167334996 1.6561615909580525 +4.6611920246342535 4.979594952992159 1.2917330499270236 1.7091954740468949 0.5250288566725914 +4.545362328964867 3.5486244904095763 3.198102090599716 4.276042083842571 1.468142005338815 +4.207948881139634 1.4019974328764095 2.686945099374145 3.519019904763247 2.926723767589589 +3.110769132293591 4.798346331597673 1.1504546449885704 4.735566460708922 3.9624416127974285 +3.8230550818660394 3.5686781847329776 2.5944880479074963 2.0401526192035737 0.6099142343898902 +3.2847212915784367 1.4451534225611309 4.980313409019951 3.7741901312888753 2.199714369141054 +1.4693040800408372 4.942948996025931 3.4487080213296504 3.509790018590135 3.4741819199256714 +3.7510078987368183 3.5656474213933276 2.5630825990039456 2.019876180330665 0.573961427143722 +3.5153292839414103 1.4478052427840238 4.646863143832853 2.5690996247993545 2.931169886204182 +4.651193299911189 1.226307613017306 2.222381306833902 2.2223338909234394 3.4248856872221087 +1.2325437755628958 2.360678238438994 3.175689685465262 3.5688323627080414 1.1946750733979354 +4.883907574383052 3.9301220077156875 2.37417493779421 3.3029906255684898 1.3313172007596814 +4.103979357392404 4.036190774777161 1.3191401483124312 2.2882362503806846 0.9714641254193931 +1.863909924493702 2.6633414965129165 2.9553329861890476 1.372243758304521 1.773488748705539 +4.969842128128359 4.082254320423603 2.725028099935463 2.1254945701406247 1.071098767497374 +2.2069890445224574 4.756949279227631 1.5038790507765212 3.5621800724000807 3.2770261357203503 +4.542872009157509 4.869933330277631 2.370954477515023 3.633271331264869 1.303998829383581 +1.4171651062703021 3.99880068163887 2.5683322528647783 2.054586919060251 2.6322569236331246 +1.4671349630961283 4.087795573734162 3.50955833096733 3.2890821509426043 2.6299185884943297 +4.766212024676905 1.919240202329369 1.0951500377461265 1.051497465143803 2.8473064647725668 +4.9870613126896135 2.7667088569208764 4.518754924886286 2.2910883536029187 3.1452286690559808 +4.3028912728649065 1.8314610595682774 4.047686479332876 4.128624378786368 2.472755192647134 +4.672944989611194 2.995323683956575 4.537723305990472 4.794873124151624 1.697215152585736 +1.2311655609408971 4.979194335563216 1.5246488671380019 4.461537176792573 4.761620799557916 +2.186356539191344 2.286190718476739 2.291717744493127 4.407169950760142 2.117806624872434 +3.6161684285307705 2.218178376079408 3.837990977171945 1.6569458705795785 2.59062423823747 +4.082231163892192 3.5960541363652054 4.669643674306615 4.434070312947015 0.5402433809656877 +1.0897474202220683 3.3974007485699 2.091023132157176 3.584510948475895 2.7487760442290097 +4.91186807172658 2.083686554797008 3.4967106326205757 4.317812151220296 2.9449649228044845 +1.4104228421659362 4.648978531128082 3.6581474915367855 1.3283750505969207 3.9894965317784115 +2.0352615521634414 3.218632650183826 2.1644009130163884 3.0048590861611344 1.4514603323672937 +4.686145977213155 2.4474613051110343 3.1531106661865818 3.8401273162324228 2.3417303300220516 +4.99347402937606 4.522087767591904 3.9156904666947865 3.4936907988324846 0.6326837499689193 +3.2632950272844843 4.797208644520378 2.6535935463634632 4.847907741715887 2.677294487550232 +1.754165300429031 1.6967317108745101 4.10060641270271 4.848861136566794 0.7504556942245378 +2.899735985373376 4.369133852405487 4.076339632537001 2.9413944179144025 1.856671950516099 +3.445885534779049 4.161378851573956 3.672869335507965 4.082581650389361 0.8244967357992691 +4.637524499052444 1.3803723021745533 3.9624420297276144 4.092342271441702 3.259741478464795 +2.2212036022740693 3.2945831781717203 4.0236560979233325 1.0030314875220583 3.205669470004054 +2.9554220521883825 2.978440168529378 4.450642497832767 4.967781921247877 0.517651443473308 +2.062920733539948 3.6166311415961223 3.644241620769682 2.341681533909452 2.0274809029885863 +1.3374794799118077 4.564731078228604 3.419148416080524 1.4582593820466183 3.7762731207677156 +4.112466355824613 3.722982875796878 2.471922491091367 4.46993162450905 2.035617321216096 +1.7823179261893891 1.181955219793915 4.911035760633249 2.406276468853049 2.5757046587273447 +3.2754383597523216 2.814543385245512 4.706185068768565 2.9793193922958334 1.7873134146268965 +2.2809085122223127 2.1382463615033496 4.672097703364101 3.8665387467112953 0.8180939566402611 +4.340646207369522 2.883394938335633 2.7658665896928496 2.120130640180079 1.593912223930176 +2.830357156374768 2.3239215304100496 3.326040131623866 3.760317583022333 0.6671386273027701 +3.654931235364343 2.051938140401638 4.171205010061337 2.224449513796984 2.5217937712536247 +2.7350545870186376 2.466828391372794 3.9648513822820677 2.703159360126005 1.2898883869555913 +4.375233900118214 1.8093866500072737 3.7766486638139316 1.6022635257180928 3.3632607451213077 +3.7319170001139104 2.417643419520211 4.243727077718294 4.220484708215202 1.3144790802392792 +1.4264776291622092 4.983150820701907 3.218263551024297 3.1466603374007605 3.5573938791787447 +4.497717960821618 1.2026456621443478 2.8477323305390816 4.335645375804722 3.6154372742148326 +1.649487021239938 1.1298907698563254 4.242061935300559 1.8624213324969063 2.4357072202881107 +4.142108823131368 2.604135415034692 2.381241571371998 2.2642703902862067 1.5424151390650669 +1.4728136135626038 1.4606103995960416 4.270350584299267 1.1152311818606884 3.1551430018424664 +3.8057010386492283 2.7660141219199623 2.0794385374502853 1.2082412490084056 1.3564415211156327 +4.467191890674512 3.953266578850087 3.172837848725618 4.111798156992281 1.0704044500253436 +4.5264005975918025 4.308189262738366 3.0605692560036335 2.936274915182963 0.2511279948921739 +3.9383326409848713 1.4123318586482259 3.8827739314356977 4.706090229034704 2.656789355266518 +4.860864657387442 3.810664682029455 1.4788484235701733 2.035932811537059 1.1888073870725884 +2.179707608343483 2.1383941001592484 2.5328105510946393 2.1225389120541793 0.4123464850819445 +4.49082787153219 1.4410601723876035 1.0624338764437287 2.7253509727247347 3.4736689951475395 +1.0404060605990475 3.3053751779852174 4.806624531496993 1.1719173624829984 4.2826605407380605 +2.9835311710052728 1.172923239751332 4.2077969178580314 2.987881974456886 2.1832300725881124 +4.99226001157149 3.078356420147725 3.2914912316654203 4.1215062520681585 2.0861332391194347 +4.151621853746732 3.4008229891180206 4.6402905671306645 2.42901875929574 2.3352562906998657 +1.196802661618098 3.9058083448829075 4.246629484368421 2.8130697388790873 3.0649315385255314 +2.430615867097088 3.863840326624224 2.69435312661006 4.811889155828805 2.5569691406871415 +1.9122651037624974 1.9193225082880576 2.080625203604679 4.7892227520937745 2.70860674270736 +3.529477491847547 2.093757700056284 1.1559803730986502 1.0326816441168991 1.4410044750484512 +2.835909757366745 4.088048350963457 3.9633641769522083 3.8555534711591677 1.2567713419146485 +2.1495967329113927 2.458600951413041 2.4058604624278717 3.5857766933726314 1.2197073087830137 +2.798319817865298 1.5708227843194815 2.809439279036555 3.030574353350639 1.2472568654674443 +2.4918973828014614 1.3758170221149535 4.563233110219942 2.9878869562391426 1.930634837656314 +3.2439416629446156 4.483541347116642 1.4531790660201778 1.908966802292988 1.320738368313755 +4.6240485532658955 4.934519446177127 2.9896389810373294 4.9120261981016125 1.9472967898287248 +4.696706308240746 4.929864706585924 3.308081481030087 1.0728379829940988 2.247370982777665 +1.598978491017347 2.28684836560815 1.1103818478734304 4.432835296306678 3.392913479795137 +3.67451951710634 1.483262597854052 1.7679110493430463 3.4051409889652513 2.7353480146713247 +3.2201668689817273 2.454154584522627 3.3276529339687997 3.3250644504089073 0.7660166579059422 +2.117579233593643 2.106346025923303 4.3452842396746325 1.2553300920374446 3.0899745661501528 +1.5195608112313832 2.597026583925842 4.3777107704929445 3.274289151490376 1.5422294772861518 +4.224604732743499 4.000403264388959 3.261676690249054 2.3318870891587506 0.9564387072405618 +4.1254921842532495 4.711664888497122 3.1268878463023677 1.3417444339329143 1.8789186895463652 +2.929563211524155 1.8795515202687803 2.469081019423402 3.4657801445670224 1.447733987248704 +1.4615994683843585 2.4199380350383715 2.1127963236101666 3.311512358166763 1.5347093991500667 +2.59518394688629 3.8750257199714118 4.497859858154133 4.984131433689527 1.3691073768362154 +2.3476228431510884 4.3697655098173 1.173357770222594 1.3057560088370521 2.026472367919224 +2.095014060832582 2.880129946060945 1.8288402321286252 2.5921637913972373 1.0950204607094876 +3.853614157413093 1.1678929400433478 3.6175389696817954 3.6396023384036167 2.685811841821646 +2.397378743690289 2.743318134826152 4.895366368864176 1.8141996887953997 3.100526112243774 +1.1093535493753044 4.160037188995801 1.844963578865257 3.208788667260526 3.3416596985307354 +1.2923374405846006 1.7182748662542724 2.79257292230798 1.7418126200168618 1.1338077012690597 +4.259914094490647 3.6599625695774143 2.773221649777116 2.550661625742592 0.6399021773239726 +1.100626547982742 2.9583754729886746 3.965810321817658 2.10953988373754 2.6262084851836978 +2.388053020742707 1.5360427153396556 1.6681161830094662 2.468910716173377 1.169270475492393 +1.615963645530186 3.1178052312694096 2.3858350533402377 1.2236366739836497 1.8990084838238046 +3.575257142349235 3.8362427152626712 4.7576022042914525 2.7822979962673684 1.9924708739418522 +3.4960752513258258 2.7945814844320402 1.5549843430102008 1.4531140099460438 0.7088519378187768 +2.968464445985908 4.029928405547684 4.484679530559608 1.3661327082630517 3.294243467065619 +4.9670197871190975 4.564167972408162 2.571892460991604 4.068441175586028 1.5498218090380964 +1.6531525580620952 1.94225939008947 1.7335223147510508 3.848157877001245 2.1343069885698496 +4.006846466152133 1.175026906507525 1.703828409726952 3.798240524667638 3.5221817280765197 +4.196976038972562 3.0864104120242315 2.379338931410327 3.4713924980108706 1.557541975063307 +4.050930512309639 3.5006929474794215 3.9472351935452785 3.899769977211301 0.5522810195108279 +2.425432243624738 2.4574439652130535 4.622425135045576 4.447289687533203 0.1780370054073225 +1.3687286794399625 4.429836815929308 1.0108510885088307 1.1546284691066009 3.0644828207142605 +3.0582096077458476 2.514549154437506 4.48806170744583 2.0907410833659803 2.458193007705056 +3.235646979769886 1.976806733361435 1.3728322531552442 3.5554318420103526 2.5196070588979103 +3.314932003189906 2.406852451314915 2.6942467009019166 2.146409093717522 1.060535014216413 +3.1202421194858463 4.886067855485269 4.180913410050614 1.9883493069135052 2.8152225269564997 +1.820810719691846 3.963162780432362 4.107754836804151 4.071971651988057 2.1426508788122063 +2.7179377455568656 2.728814124579816 2.8669244551984665 2.199181343523628 0.6678316844908204 +4.35082340606717 4.153057764218552 2.854274453948382 1.0615383733080832 1.8036113505756546 +3.0394677230453007 2.8612589770710883 4.129485643992685 3.143880209128334 1.001586955973293 +3.0485623090660283 4.743087391700476 2.194493854705773 1.3063592054246698 1.9131645017956371 +4.609734982753358 3.4010286821492093 3.4950098926392936 1.0983377922674964 2.6842146109841383 +1.7531874145682642 2.840487599986801 1.457121369997238 3.0084317583578852 1.8944090409008416 +3.390265603843033 2.3426641693098342 4.863729026138181 1.8750941743779932 3.166923908588846 +4.905527002950041 2.2019308904866186 3.7060032517948684 1.0612801922378803 3.782061871662045 +4.3155892245494005 3.9643478618689447 2.4689219503197646 3.6482527117016863 1.230524904095519 +1.3762826796778662 4.008734662682002 3.1561249043579807 1.4189289823237528 3.1539900307950814 +1.1066742203087632 4.495901431190331 3.2016967363280955 2.947707850754376 3.39873085739001 +2.840953478673726 3.6752351330932767 4.917736226071929 1.077489673489287 3.9298243553018866 +2.3481269863916574 2.203187561456943 3.671950647928282 2.3695426565179143 1.3104480199496635 +1.623448662485934 1.5028926139434358 1.2572803912789565 4.180740806430013 2.9259450712197874 +1.2708649507189058 4.771293658517994 2.841176188317605 2.711105797893069 3.5028444791125377 +2.828257630422088 4.326679006009709 1.3235911113350323 3.390196907641007 2.552670393165429 +3.863016571199199 2.4857939990276376 4.06676485283707 2.097527949094561 2.403047231404376 +4.579929707761113 3.821012565124881 4.945147174048806 1.7713433270479735 3.263278426463857 +4.031444466653944 2.787372715714225 3.91971377140514 4.2972540477285275 1.3000966047692604 +4.802926167495188 1.203552971915245 3.9850581170755666 1.3329046557689335 4.470951283941721 +4.521403683909206 1.8612110670369053 4.569914383758448 2.2525012514395697 3.5280346348506693 +1.3734076321964719 3.3355630970348176 1.4477265527294656 2.611698895888273 2.28142185573681 +2.529087638570535 3.7796246941568037 1.1554170215180237 3.413272551923402 2.581037489765797 +4.18388300408577 4.452694768381878 3.378660789083289 3.410981444695191 0.27074783360752824 +1.8786043532738752 1.7549561028571197 2.3567111320505862 4.398543904797326 2.04557325991854 +3.0329257396592064 3.923103985622248 3.62927894579837 4.027964691704744 0.9753807633815418 +1.361818818324676 4.35870621682936 2.7381825044358092 1.9821055471689957 3.0907905856958378 +1.8502499265692092 1.345948141099242 4.982413549978556 3.1381995628111654 1.9119219443512965 +3.1069901316752904 2.851196102756859 1.3497379341262703 1.9738363128869878 0.674484522878086 +2.8307815884467704 1.0339189049489264 3.647943623783718 4.3121221364476625 1.9156848905891497 +2.894204828489758 1.137541312511431 1.6599391955235627 3.7882085733989572 2.7596009228095744 +4.92203874085944 4.481474638596143 3.5232955757743407 2.7223817873100367 0.9140895058774656 +1.3542776517160346 2.318423821714361 1.987835280591601 3.128074042190913 1.4932254587221494 +1.1703171616826387 1.5080939572950842 4.610760249275415 2.6448251350530803 1.9947415965449253 +2.7661983550549287 1.2776715451378058 3.535646552902336 3.0769260727732393 1.5576060293706866 +4.63181283730252 2.9819856064791446 2.4446902780834936 1.8298851297279648 1.7606576220295616 +2.2977638911606153 2.0269548754591744 1.820893796057371 3.230801053235508 1.4356796288966285 +3.2173461119022932 2.116738923397021 4.027372607719032 2.6013055370114397 1.8013893175951758 +3.5399043156178314 1.7098424675707653 3.0729531436198934 2.6797235508874926 1.8718322254619757 +3.6809930407027274 2.0658284329148846 2.8121374643954575 2.374492763050118 1.6734065838480818 +4.267364609387071 1.7412485910440996 1.31705816304958 4.291492555949045 3.9023739051751765 +1.9049154772236143 2.251665988358007 4.802444204806136 2.3432147674783406 2.483554980746661 +3.0004331841463467 2.4026533707578674 2.1440641558288314 1.484499069156278 0.890149879993329 +2.467207132214334 3.9864417211254213 1.3608075490659273 4.59848453962443 3.576398472113503 +4.280927977699809 4.353155719251683 2.403367503794887 4.638290127196358 2.2360894390076167 +1.522016746960805 4.421969661208509 4.208110335922715 2.849874533723495 3.202269726183213 +4.111426997747692 1.732097453858378 4.064039607083904 3.9274766831118417 2.3832453735669628 +4.926037724327294 2.3286444328480465 1.3821785385014222 3.6640930783867427 3.457395823153813 +2.820364615203118 1.7932192511615952 3.079650586781786 1.7314053729042134 1.6949314899475356 +3.4135187345686715 3.13218165478803 4.141667723178241 3.7749505545386475 0.46220345545499647 +2.6194094530585015 2.3029593454503314 1.3904409338050465 1.9026487020784675 0.6020776266270496 +3.875026792444421 4.858140690433174 2.9006182818275272 2.348631398679914 1.1274761441315102 +2.637440899398885 2.201283300283147 2.296807374031383 1.4910376777663075 0.916241373594053 +3.9364874170969157 4.196173335957875 2.4288566569113854 1.3031185154769576 1.1553021853761467 +2.8123968632307017 4.754520832172112 4.078391318015891 4.025732788257942 1.9428377264951915 +3.768649169683312 2.8249581678893487 1.4283500464402095 1.5096836042809327 0.947189450161859 +2.3875003022994465 2.5219049157821543 4.363029318171899 2.3209421042836778 2.0465055067727507 +3.526531901540811 2.0823911247609543 1.4359291503464053 1.9912388808067707 1.5472270292049233 +1.8434642159054149 2.2714321819892427 1.4701900693796 3.5960829203473974 2.168542596720184 +4.346160973986054 2.4075736991610244 1.7078119792515265 3.213317818461375 2.4545200048091855 +1.137756474703409 3.1603003925858943 3.5219222369052567 3.861946684947168 2.0509267478458706 +1.1137109138238115 3.4430834803074126 2.402036573850717 1.9873614863033584 2.365994924280018 +3.329838951488218 4.157725910272177 4.050752593226214 4.585926738537825 0.9858033182813729 +2.8775454536437066 3.10044544451152 2.373094880433056 2.9804111518708276 0.6469292538461595 +3.0372784721983916 4.642525365659581 1.905373129849485 4.616856822478599 3.1510254528264947 +4.131685000429778 3.1634813825239836 3.2906549454538587 4.351480174977735 1.4362341081175638 +2.996440499058233 3.9184456264102683 4.011395794352436 1.1684214164901632 2.988745015561685 +4.087889901272437 4.753910157223599 2.3601740271311606 2.3203598321715426 0.6672092261483904 +1.576721534614736 4.530909104411118 4.71938984029314 2.0790032945042456 3.962179363522361 +3.9122892199423176 3.71174515154276 2.756448563034924 4.597995064460584 1.8524339233244822 +2.9913720797849765 3.7829732078741767 4.14618910863099 1.5785136014952408 2.686929447517542 +1.2119150130082277 2.2897493407569214 4.405148768296209 3.121824780834922 1.6759019347405195 +3.155005083057228 1.9201297859778674 4.7873850342605735 1.3775996077848185 3.6265070872594865 +4.999002304883622 3.364367952655112 2.0409436627096516 3.759814234617328 2.3720340445397796 +2.9640430677103993 2.5467518700888734 4.820320104888528 2.310386446928286 2.5443857630033397 +3.0687082264081638 3.880122405993212 1.4295166459007134 4.955356003254337 3.6180016783710167 +1.7003241217057243 4.369940340420489 3.4974755872917354 3.3179013153498507 2.675649019278944 +2.489933424817717 2.573656881990753 2.697879031875765 2.1752338010106684 0.5293086572379441 +1.1261198213519252 1.3149278660365287 2.9063484437053098 2.6689310920459337 0.3033405291196266 +2.6780064408098965 2.4089041398551587 3.4058626302470416 3.2324476266316426 0.3201387384526638 +2.5683502899159336 3.8315242785273407 1.2881475632606727 4.514469574294685 3.464788917724571 +3.4167092476084484 3.687493261758011 3.930623313627414 2.1624387633708975 1.7887986432476939 +4.630325269214373 3.539195673468656 4.612018090007192 2.8275810915653126 2.0915972834464274 +3.496108720928213 3.207917265428119 4.242553900200512 4.729709010072046 0.5660162684033107 +1.3803202969740034 2.209134495306796 4.4952780320611385 3.2828323637148475 1.4686583925643548 +4.897834784750501 4.8815397371125036 4.143132335440976 1.2450541512491125 2.898123994977843 +4.079114215283507 3.544627266098268 4.8827948087247055 1.4423891515374327 3.4816759448368444 +3.792800566394105 2.6493510615813785 2.7559462596022186 3.7494058005609183 1.5147404495748902 +2.720080558565273 2.766220771789779 4.960898622890582 2.640640399368647 2.320716945923731 +3.236460479680267 1.700141211167208 4.8893226931825495 3.3404188804841204 2.1816003107343542 +3.5638117426776437 4.815530117755045 3.65952307763707 2.5453193382393806 1.6757830597646595 +3.7276478932035246 4.553085571299275 4.68916367160314 1.9936637425654227 2.8190543144576767 +4.408359872867317 2.876866793711679 3.408708379448186 1.5476052601368626 2.4102231996667767 +4.209966607452959 1.6143877085646126 2.8664165756146516 1.7328294820377166 2.832322283759149 +3.7547423631855477 2.454654112057443 2.423426292461046 4.029442836310748 2.0662813457610936 +4.133933338732497 1.1314324224305876 4.788509040761609 3.859945523332713 3.1428079734997696 +4.473296592226495 4.207117112266226 1.392389170496545 1.1026004214478728 0.39348320755416427 +3.799018557749648 2.101382651308172 4.315038583221864 4.9051023463082934 1.7972598352344855 +4.878821774730763 4.189140572269051 4.615746817029139 3.0043601596318545 1.7527769740235144 +3.0841268300763733 3.3744005023115284 2.923234058779056 1.1429131768152336 1.8038296060186298 +2.670280836460732 4.789119652577453 1.6885155840109949 1.675049069654607 2.1188816096450074 +1.6564220212870473 3.609492763419101 2.8938637835319656 3.0485636678371884 1.9591879384010868 +4.362402013737965 1.1027163335165482 2.2904065953125907 2.126523480132553 3.263802752814832 +3.579862902224336 1.3758386855174516 2.854352458408791 4.657643277990135 2.847732523924386 +2.709221558732485 3.1591521603181367 3.8149832613721686 2.1283688662980738 1.7455960769646515 +2.6801235294311465 1.1070800291757026 1.9342603728497854 4.276991009575706 2.8218527052187077 +2.824969441426634 2.36600081127562 4.078496078237091 3.842443886804642 0.516113205162162 +2.6723256246474505 3.6045833718841527 4.549867646732356 4.924221539131635 1.0046120365779723 +4.766737419327784 4.971942154269631 3.818753664074015 4.22122649416441 0.4517669334994827 +4.9319059589572385 3.7060945266108662 3.704802259342125 1.009746688741048 2.9607327127417227 +3.1347318942120745 3.1435451104471737 1.222171992153648 1.768213810450956 0.5461129371383147 +3.4317128951833444 3.317602151314987 2.7333071225025733 4.563047447632989 1.833295098797395 +4.973516593156663 3.835720812296276 4.949000138003896 4.383270696274693 1.2706805421438292 +4.341322314542424 1.601670220264488 2.29918037139697 3.531479374983121 3.0040396854770246 +1.3582356548808932 3.482277620514677 2.6781818272348996 1.2214262031053824 2.575595313749116 +3.94792085227396 4.8144253039791955 1.2470758444675623 4.914648596254603 3.768543465913025 +1.6677266496245413 4.376091625275098 3.6765302838570135 4.158561804089948 2.750926249071159 +4.867234678975359 3.3766194169726034 3.8997603624760737 3.8767746585392473 1.4907924744581376 +4.7637179607083695 3.00484163308577 3.0638128066650285 4.000570896982598 1.992777372324009 +4.640393754250026 1.954383155293237 3.809914331783403 2.8482617077988173 2.852968402721041 +3.903527569011797 2.122908693938879 4.242834299433651 1.4256824426304364 3.3327088325498444 +1.1320742149983958 4.980531898653452 4.315832545030959 3.9508605325677664 3.865725172948159 +4.75870861742923 2.635342185225371 2.932353271841646 2.2241433782749223 2.238357938033132 +2.347559809295082 1.2708009838968013 3.1998010811059143 3.748052817329196 1.2083002666328133 +1.9537924006994984 1.530969023731525 2.199557576621967 4.292975233162052 2.135691244731874 +2.288293977046559 3.6227453870265034 4.2638894235879725 4.935316645108766 1.4938457348055032 +3.794164047526752 3.7271600817125314 2.7174088074517933 4.591773402589047 1.8755618270104764 +3.9168003369670004 1.8776516644517907 4.071805462982415 2.5428010941211627 2.548721575342693 +4.1417899701710255 3.1915706492404334 1.2034761335452409 1.3401967606418754 0.9600048373542148 +3.045580479723406 1.0941785827608723 3.5484202118845336 3.710510376898187 1.9581222089193333 +2.287213443407713 3.1358567193227858 3.0016962386234134 3.3819926820377537 0.9299574154924851 +2.3290500353495607 4.319227079189815 2.2349845227689107 2.043132856225888 1.9994028427968362 +3.061685828036353 2.0838110815393893 3.09346438181649 3.1624026929029676 0.9803017446541432 +1.938261072364917 3.975400306573205 3.4625068585168894 2.902255360664632 2.11277495261479 +4.048916785344067 3.2253822414151383 3.655921616448331 2.313518636197399 1.5748825055955167 +2.5629032112437344 1.483615068859812 4.551531708113823 1.422793854032189 3.3096621359066076 +3.2008542454945066 1.0469612200184524 1.275031558958211 4.520708027508439 3.8953396390680837 +1.6836148873696435 3.3223236373156535 2.15248339054358 1.5017807722343757 1.7631733507015324 +2.5018770800506673 4.590828430753924 2.5623835294213633 4.592270552912587 2.9127579840664795 +4.73143852393098 4.880253407397825 4.751955607774656 1.1685372010886157 3.586507123500185 +2.9940770755487636 3.897528828012738 1.2755637256265482 2.648283167445129 1.6433452878129242 +3.2015750294686827 1.0725214377243315 4.99611035036429 2.4152702109892714 3.345684537060957 +2.1525420829416873 3.4956854052518307 4.634311510300918 1.3979771757154902 3.5039825783646292 +4.842973500029869 4.0796415400918615 1.0868351061250103 4.932629675400575 3.920817714473886 +2.044927560274106 4.494449065019291 4.313214589583493 4.500786833555322 2.4566926850784045 +2.978873046619878 2.0400230158584343 2.171310467871742 1.4864752650952324 1.1620837470779404 +3.772875649557055 3.2741164152429296 3.901155007524423 3.1826693298972653 0.8746327473682702 +4.06496021221329 4.007215481112778 1.5897071201636703 3.1388395236581195 1.5502082626300115 +3.0754234036476236 4.58516067804508 3.4883874415405898 1.7160146562743401 2.32822076437298 +4.700268955340153 3.206028672683083 1.7513341114985663 4.569780740090836 3.1900463038235376 +3.3386218259121754 3.9553968467356415 3.1328602845572804 3.2337459510921964 0.6249714745682249 +4.833962098524392 3.118521542411737 4.290969729799906 1.3508771994064586 3.403950703055413 +2.216858270562702 2.9888139405705254 4.034226934649352 2.0381414655547494 2.1401571802995796 +1.8944552454215575 2.8358254057425514 3.6036771849668447 1.4506590909244612 2.349822268176185 +1.1017284618411654 2.833471919179619 1.687180577525797 4.092379494794427 2.9637674054596004 +4.048637294735567 2.8704763909817173 1.7011255480559937 4.827119497655813 3.34064384334349 +1.7988189983836746 1.907915772916227 1.5325503793657225 2.691699367400993 1.1642716532994344 +2.692830790461289 4.795461642376863 4.774538874118774 1.7584496672510195 3.6766629711208743 +3.1808843784354646 2.786178773930153 1.049832377974314 3.8036342463588917 2.781944867272947 +1.5214719051288972 2.1108171860651823 2.5665519779491133 4.252646600185186 1.7861251174806525 +4.784267320833203 3.753173794133187 1.3941769989230228 3.3214470303334966 2.1857547059941576 +2.3529822411731103 1.2005175742618839 2.934188353299153 4.361470289514912 1.8344777278360758 +1.8973250767132055 2.2673330746397893 4.210231354463774 4.775146793039767 0.6753039103034608 +3.2097962997847986 2.022302362395639 4.81345961962648 4.914994406048544 1.191826818035986 +2.231476634430316 4.905180082493507 4.148451694698043 3.299254091482649 2.805321139814792 +1.0353818018710204 1.5026376560410917 1.7724516582829954 4.435462295157537 2.7036926018619707 +1.889507502431783 3.6613310409835575 3.1005945978240694 1.7385568096055244 2.234839051990411 +3.8932229978624 4.500498284013177 1.9984155144704254 3.8585697837445885 1.9567721325357237 +4.144020603537205 2.1859985984645567 2.2434035922047024 3.127678478889161 2.148439491251622 +1.7695263361494598 4.003093716840015 1.5321990545678505 3.7157563778709677 3.1235790094434206 +4.897741687412154 4.603059985054664 3.093793655731131 3.1950651078067236 0.31159783810194747 +3.673160452874051 3.1403016309827154 1.0612968639163283 4.994294816160107 3.9689307648812893 +2.919895346942724 2.2735925139631687 1.5566175759454448 1.5301397522328601 0.6468449791611227 +3.741086779464826 1.2322749350043098 4.41232367867735 1.4703497518637705 3.866438601213821 +1.2859412842848164 2.6729358841517667 2.0295273919008494 3.0743898090062425 1.7365170574282898 +3.9226013673908393 2.326659425292556 3.6744440476186027 4.282053644183095 1.7076943826064734 +4.9859147799683 3.586113399692026 2.2555297541439625 3.6119185795984756 1.9491625253018887 +2.4084938477612856 3.0040142615099406 1.6448349687019155 4.150372380615963 2.5753373149341643 +3.0356144299868233 1.646005547110129 2.0505602059000894 3.687183250152463 2.146985755972247 +2.2811166156575484 1.9591191446633158 2.926557735279529 4.321753609489263 1.4318707688679675 +3.987316156433166 3.793916937018904 1.2257567728595413 1.3555763411756891 0.23292998602120066 +4.869655162798171 4.65910368792588 4.999168105005209 2.5029133496269407 2.505118705235246 +2.7488395246620563 3.5303758502496643 4.282844572006825 4.036099495602494 0.8195621763739214 +3.7930205382204885 2.480891814077651 1.6112207854097091 3.6818800357792005 2.4513897119514585 +2.6229467264495336 4.781569467228557 2.511561610188121 2.77814360966739 2.175021402068198 +3.3437102792670297 1.9172263829437255 1.5568055657360071 2.921448835504487 1.97410930806633 +3.0161034793535793 2.253219039127173 1.508442847879186 4.295485924973249 2.8895677501518287 +4.5793137024736055 4.919002775049839 1.847534750908423 3.569700646142562 1.7553472695553167 +3.5224642281167418 1.1010663871459023 3.9760738697538693 2.1571224610919537 3.028490008458243 +1.859900032673952 1.5921459992145812 4.297855521954299 3.4354775128146846 0.9029884014102098 +3.6696479665162784 4.7492905133939605 4.598324487935551 2.5935887109302573 2.276970259936117 +4.942966779474766 3.3438103283210916 1.638180169361354 3.6289166967444118 2.553494326745914 +2.0420285422935662 1.568423792400906 2.1717372419192094 1.3353815261888826 0.9611411667157309 +1.9098589034584448 2.277859351527773 4.982514978384431 2.5957833779454647 2.414935208719517 +3.05928656936742 3.060166999528641 3.662319771573984 4.002121924712235 0.3398032937372149 +4.99622349738887 3.3379901226132773 3.340775565437334 4.482370522882481 2.0132006785424643 +1.3642252949067615 2.751923695834365 2.696122573332698 4.361044745979341 2.1674115190492658 +4.542090317728849 1.672771650452185 2.1246791839908834 4.512478606570925 3.7329044585759106 +2.2777452051141696 4.671498836313313 3.2218823015975566 4.965799231403111 2.9616385169263175 +2.4796917794533915 2.012107599391259 3.4279062065389065 3.842113469396075 0.6246620062465812 +3.945149794849246 3.87131754680207 1.752729331349998 3.836137265275097 2.0847157647971457 +1.0723931753884894 1.4112872194589423 4.916737167849322 4.437800675864545 0.5867106070807914 +2.955430238546403 1.7125166329870396 4.345555874182862 2.696280174558254 2.0651742212842037 +2.0462430080947445 4.503577978923484 3.5622142188279047 4.786391516301903 2.7453788835985145 +1.5277006081456488 4.071135096723902 4.9292518133677365 3.13749538666293 3.1111814621341676 +1.7258007352904765 1.606864762548358 1.189667750439786 3.604563778422627 2.417823110068108 +1.9944338455531412 1.367132329470477 4.41456388989821 3.591819940317295 1.0346085243470653 +4.7032374329745315 4.43028311852782 4.780530547610944 2.0753041172626596 2.7189619521482817 +3.6697762985681663 2.2013180318226673 4.308752260257382 4.382075017075445 1.4702876956026654 +1.7327134204750134 4.8919598347767845 4.339796138835382 1.3844730708005315 4.3260573670187865 +3.758638249014581 4.812629103640887 3.623655279906032 1.6310848183068565 2.254159214889987 +2.467836132515479 3.244802083780951 1.3055849426397197 1.612957207412045 0.8355559817134506 +2.642477824800311 3.176381001122799 1.217536802147579 3.1235006288375025 1.9793308743961273 +1.2784898090206998 2.0883342177426876 4.993540638904169 4.46143380567584 0.969012718340965 +1.0017805859419235 4.939954862399239 4.67663071318034 4.130864038144715 3.975811602092024 +3.920367297441799 1.1348614180488665 3.6599850539138963 1.3819809845804367 3.598380961492598 +1.690799924625761 4.352048761074098 3.6857415552878847 1.8407404103145835 3.238251780583224 +4.486194603235587 2.8260823141330067 1.5216704478505338 2.20905221580138 1.7967933958417814 +1.2688603915014616 1.9040432036751755 2.095895732375052 3.8355733135923185 1.8520084480020245 +1.1737994129040303 1.5668738272589913 1.9437768264630368 2.630529328512866 0.7912878706843648 +1.2838754048858756 3.6833747162225348 4.2681460539966025 2.4161923455356407 3.0310607851686857 +4.832220749861839 1.5650299959161633 4.043161327353438 3.3018933361032277 3.350225911415562 +3.4643882613259183 4.850077620384852 1.9283910390619177 1.402585512589131 1.482095290957529 +3.467693111910353 3.1725594087594406 4.688044593976347 4.599233398237414 0.30820663721625147 +1.8691742744540987 2.371160663966153 1.7122607588145282 1.9376100637296867 0.550247802795334 +3.007242777733897 3.1486550360825647 4.385737143337971 2.9677849907369076 1.4249862223464684 +1.5142240161663296 1.5781422224216985 4.881782085860955 3.625483532225354 1.257923524288264 +3.3153638978402076 2.5286989266825493 2.3711501072339183 3.832143437514306 1.6593201282363381 +4.671700000724577 3.7915173203712436 1.155857598627572 1.2486429799218208 0.8850597029443257 +4.609646383534299 4.866842822078034 3.580958928012437 3.089879950062486 0.5543541923571517 +3.3867095896583495 3.1460148772450616 2.9212982368437843 4.621109908462736 1.7167683779577634 +1.4692504516829712 1.5142222780189685 4.244441908455288 2.6504902366548775 1.5945859641923728 +2.3913961660862593 4.86422119399251 1.5068727975481084 1.8569391802463269 2.4974807488617334 +1.0984831654672358 1.7868521782984326 2.7520345533405877 1.554666902917356 1.3811376427084472 +2.860405240439748 4.147822313704367 1.758420380419687 4.737431392071054 3.2452964930917076 +4.3667533118252955 2.4351163242741722 3.8324070791903595 2.9893118628030955 2.107612629391527 +2.8665994444714573 4.33955284268964 2.0458308376028387 2.977549176134842 1.7428972361213182 +3.1552443567042503 4.186628490143241 2.392637426304907 3.27018006101369 1.3541913847168467 +4.341029392993688 1.6993546183578703 4.82140044068109 2.3021309324225583 3.6503649776684504 +4.901122925197161 1.757554620112555 1.2129217128334036 4.420927521474503 4.491472248273113 +1.2608860001897177 4.782964755687511 2.6828163992846887 2.8118364103862286 3.5244410795463046 +3.099097864924387 2.0445893294432973 2.3449943570469483 3.514600401976791 1.5747909549330357 +3.0680797875368184 4.928364943303167 1.0754293861975737 1.7894395923376525 1.9926041842866904 +4.515566006470559 2.832299662256002 2.9003639520890347 4.8785998073954815 2.597460814870066 +4.027004889113315 2.1442231537587046 3.4754632186986103 3.787686945067229 1.908494358988893 +1.244953499723859 1.5404506408028986 4.654255452051332 3.9295049681288154 0.7826760660271965 +2.743392086525792 1.8291281885094448 2.3237152034362407 2.34908810601443 0.9146159081282633 +2.0451661177603975 3.1494404658350272 2.849860262755975 4.684492003627543 2.1413303015716867 +4.8013068631093585 3.7843321491039124 1.990359480370845 2.9233851170287894 1.3801356482561493 +2.899758099046526 2.828593958072945 1.544377380992073 2.5294965010602053 0.9876861929197549 +3.543558309573943 1.5615538316405275 4.030586860474962 4.58662199617396 2.0585229711324367 +3.807313694473302 3.4282345002737196 4.832229147433216 1.884902290231934 2.971605061015846 +3.415534021669093 3.168031841582481 3.562903329739883 2.0827745888733546 1.5006793190707866 +4.904267890019208 4.213826716119035 1.3162148772961362 3.4068202143207995 2.2016674793920754 +1.0945079589885274 2.9566143950087644 1.743493522888249 3.915075962474462 2.860631166541258 +1.8765191187034063 4.833718725896411 4.800247516804323 2.7431109348114537 3.6023381898089135 +2.9644013717233113 2.420316605847787 3.1834779056252813 2.8420318694709152 0.6423500821696473 +4.4998306913592145 1.5450415455568853 1.6393286956258346 1.7385114980786778 2.9564533015851375 +1.5447618615100938 4.355075649072056 2.7631638254077555 3.359543097762804 2.8728960686136205 +3.45687164570105 3.913972455374016 2.3854334416037535 4.257749873227549 1.927306402815117 +1.6547894233188778 4.718351782673153 3.6942376528706364 1.8762814665897585 3.562355825137243 +3.208281085823766 1.274961311315606 3.217479347168769 1.6918662773614002 2.4627668564586753 +1.3183142342311807 4.18740944392401 3.7758454445427 1.6937792348958833 3.5449551511458366 +3.112244462230063 4.545385871743013 3.7070787721586482 4.844035882864892 1.8293621214090598 +4.225638847783429 1.0745744585610528 1.0919552574122848 4.3059671648293065 4.501008700951798 +1.7275194690321682 1.6506701876217758 4.989976407506791 2.615514054555397 2.3757056378341077 +4.45854968568761 3.8503309448169256 4.389108678889407 3.678355739223312 0.9354676787523536 +4.75065484600904 1.3425904697866886 1.2131908733221106 3.7273507544863653 4.235080011113332 +2.461584696864628 3.893103782651784 4.914901117628036 2.506548759438903 2.8016794916920906 +3.6390723429753042 2.659367868590432 4.793283926225694 2.272284636807193 2.704673413626556 +1.280597899572498 1.5711450300973948 2.710070759322609 3.078245000898344 0.4690094958698799 +2.0122407263073216 2.4745783474674674 3.6005910728546615 4.662765286881553 1.1584343472478993 +4.908335795833222 2.971408261089434 1.6255238835864407 3.593126480524009 2.7610049355848876 +1.8541012074424557 3.765961057321503 3.4928524649498396 2.7681816218676736 2.04459187037241 +3.8335490840875672 3.833417887612199 1.7986910057298808 2.5831229555816466 0.7844319608230903 +2.3689712825048734 3.9571917717831115 3.581138991369767 1.612966123352547 2.5290608456425745 +4.237494708298755 3.9809934951548716 1.2952775492888469 4.355801883356731 3.0712541529098423 +4.2455871670747385 3.9621561085928536 2.9827048647406307 1.6976256417692497 1.3159641994465086 +3.719373678265305 1.7190223265565523 2.7595957318988487 3.293603067202933 2.070403188859987 +3.028341944743055 3.482388661322648 1.3945782772883328 4.873235109513621 3.508163590430809 +3.837736276842463 3.355715358477173 2.7333025336691588 4.981208290067495 2.2990051012101937 +2.9952923075680786 3.500151657538672 4.058373731693445 4.3478792038949585 0.5819762724436037 +3.4443079702590533 1.9805696954598733 2.5113303798638418 1.1247249192929405 2.016235214551398 +1.1310389931547982 1.4671260380818572 2.863720053007171 1.3017399363155455 1.5977285084480988 +1.8533615496085822 1.2854044597820034 3.5392262231097984 1.933572572710463 1.7031438286078449 +4.846150433343347 4.428060304486268 4.149684726470316 2.416813150424034 1.782594529026961 +4.947763180029391 4.838012412845196 4.3156226293718225 3.624730720879021 0.6995547584845271 +2.858295098953607 4.622054616254562 3.016762464797886 2.1402290958578654 1.9695579153035945 +3.0789867356479506 2.257736059740864 1.6980460021489985 4.9442230992474485 3.348450151697702 +3.109670561775665 4.21248965178809 4.83733502459674 4.536590399376839 1.1430911052468617 +3.7029721828059943 2.150139210109908 4.372913483273077 4.461445549156897 1.5553546758800134 +3.791630017137995 1.2082314665171658 2.1496125033736013 2.6262004766198688 2.6269914669813423 +4.106802024591698 1.6364482368022353 2.427923786169081 2.2705890554240504 2.4753589748447307 +3.9077972142885393 1.1676354172973076 2.982803410549599 2.4971619631589395 2.7828644036520913 +4.1324712212301815 3.41000448249379 2.6484375897200905 4.475807578934697 1.9650036300380183 +1.0524942703094413 3.9231506275724306 2.7940216601194314 2.297055672023708 2.9133559883437474 +2.8913329483951804 4.069965761425468 2.0341040647744046 1.1056316275121256 1.5004120683023867 +1.2836459614382845 1.3646388394172373 2.160958509209799 2.2676409817905387 0.13394400411833968 +3.9026331735474202 4.149691537102967 2.828713818444651 2.6920660907898 0.2823303676120923 +3.9748254526877775 1.2619826616220209 4.792045666665571 1.3287297627910064 4.399326432428939 +1.0617488708121576 3.953095979677858 1.286043106522464 2.276584702613068 3.056314898293657 +2.6242746015259337 2.1868097834384974 3.3524494751521767 4.6556380169912694 1.3746548085410295 +1.9978441381609464 2.2858127124710776 2.368969352132529 2.1085421423080017 0.38826309560296585 +2.099885995450019 3.7815037639996967 1.5462858192597486 4.23609212960011 3.1722068511761377 +4.448973360952881 2.989679874013954 3.07322923561253 2.2239976622984603 1.6884110122052225 +1.6644358673404271 4.534496432239315 4.541872903166952 1.1557341302629003 4.4388268084654845 +1.4576081335858864 3.33518744767651 1.8063096670376897 2.7173267531134555 2.086925061381696 +3.2149292822977458 3.027571852484171 4.44220521785397 2.147984444132659 2.3018583286294487 +1.7466561830490392 2.3639788135522837 1.1995244278422343 1.5499649286914785 0.7098561648439171 +2.5178715546693975 1.3780061806512318 3.8866374164418804 3.936804747820677 1.1409688129056126 +2.532976980358601 4.439267358946155 1.6834332351028918 4.183107712269852 3.1436150367523363 +2.5889799055697917 4.821583433080051 3.321251176691379 2.167635411493467 2.5130355836645886 +2.5932365953636136 3.48917644092101 1.1803847197596276 2.802992890800365 1.8535278480739312 +3.67619627325361 1.2461387634371088 3.693366592705351 2.7931584104418867 2.591438649173402 +4.276217066150489 4.240488338324953 3.0411769711840404 3.4668475205658664 0.42716736603239813 +2.5100930295357866 4.367232426372521 4.0995681400924635 4.283398134156858 1.8662154768409849 +1.1303080898076123 2.874118572104456 2.5676370104110178 3.2093365752769354 1.858131677173999 +3.62478146327394 4.223702018357644 2.848785153259616 2.4074437382272293 0.7439677922629184 +2.142517149498046 1.3007219616405394 4.311052210451316 2.4238995334996654 2.066389209327671 +4.513907353775112 1.402848562376525 2.3253626018556806 3.983636964063805 3.52541638163426 +2.7871589174515656 3.8842981515567234 2.096162130228699 2.0364417273509967 1.0987634074416235 +4.973686750650835 4.325893061785779 4.207379884246221 2.726727532981934 1.616158423124991 +1.2690635681722804 1.3996359204621376 4.402435575723823 2.129092304626774 2.277089977893877 +1.4362694626897543 3.4988882304782787 3.9044180964125204 2.6703417383479495 2.4036099181787725 +4.395762265282114 2.2098194982765516 3.6178078903386273 4.298296808488201 2.289412795532582 +3.814927006336269 4.919398271050474 2.999226817403154 4.2691814139998865 1.6830452911305045 +2.7544596486647217 2.5182934745104877 4.485587322637958 4.416763532912546 0.24599019461518332 +2.55408796372928 2.4919177842664806 2.1165698711709395 1.750137747093155 0.37166871373656624 +4.828526011734198 4.869284076059783 3.1526713047819577 1.597092185049275 1.5561129835445358 +3.435042274757916 3.414020943153996 4.7126013230612775 4.204090334511017 0.5089453034057443 +3.832913969179316 3.094149462508167 4.729177404551875 3.5408868409681205 1.3992167308245218 +2.3090938013637894 3.8743028036423386 4.0467837775759 4.0290515824175674 1.5653094427489234 +2.4934540065281268 4.39119590818035 4.067699342447266 3.923517569543662 1.9032111572088433 +3.289577687057552 3.0885078181654797 4.166733231925511 4.7575816869064464 0.6241241774916545 +1.5794504282144133 4.56112323631477 4.365206750166983 2.565040589418628 3.4829543409106787 +2.55377673433702 2.99750817893494 3.1412522794672864 1.6030253751033103 1.6009495945326129 +2.3128997072003217 3.671020184074606 4.842050276167577 4.2260749141259755 1.491280280949063 +4.785912745402938 2.3951577711781633 1.8851195940561758 1.2562430412501748 2.472083142907953 +3.6957788822195825 2.9407948860410857 1.8735447299282266 1.3031088541884879 0.9462546817937627 +3.2539058562945837 2.499343327595067 1.4569507403648259 3.6240256865246234 2.2946848219289064 +3.29836366802174 3.8312738841155687 1.9155931441627647 1.198430242734346 0.8934852688222672 +3.8746346589398746 2.206043086959824 1.051351417162496 4.4056571075047675 3.7464068783763196 +3.1545137501270823 1.2061107093670662 3.776677586377605 3.3218130944493 2.000793871257125 +1.2287223641784926 2.8993338391798273 1.138804718061237 3.887551506234507 3.2166056031007284 +4.553804837012853 1.2341864448855016 4.710877009427785 3.881254054992423 3.421716019174625 +3.7401142620851755 3.9780001987960336 2.435550631451089 1.6417241780431437 0.8287039018944214 +4.679014467839373 3.23074884037175 3.477892355052172 3.9521533446642945 1.5239412107991757 +1.0917074993588978 3.6236685648200804 1.4689770399643947 3.377368430673583 3.1706126438189 +3.9945797534153185 4.9272204798589465 4.24634188375433 2.6874399563728724 1.816588545547649 +1.8908669810655265 2.528568673889319 1.7472512483112594 2.068224096642442 0.7139236782711179 +1.929935875307644 1.5363916310114325 3.3506110537749447 2.1086380309297352 1.302833090496992 +3.3534900082982366 2.403499548912063 1.5964650203027935 4.885546349730779 3.423527108774884 +3.221344378304344 2.1671591329030884 4.883830364341943 4.484848101449604 1.1271616466702534 +1.022293306625225 1.431580598093047 1.7043621075352755 4.038290357338003 2.3695436611685987 +4.208581955424846 3.4705710873899984 4.911108469278003 4.693501584697649 0.7694236788365146 +2.797290462540509 4.163581448850369 3.1007081525726403 4.014850138248255 1.6438998233610604 +2.385415672455327 4.914510821554293 4.268386345716886 1.7257196396401118 3.5862900400535414 +4.8065104628726765 3.3530513166971967 3.5537351913306914 2.5997608942966695 1.7385656297657304 +2.476765209494372 3.1116646962872165 2.9068311554585153 4.826541208300343 2.021975283061539 +2.2748903939557215 3.980029940071955 4.5433000343556795 3.316306203732114 2.1007176707301163 +1.1679717099637448 3.5203467713170578 4.4120444722565635 4.296481828549098 2.355211912736869 +4.858035738296426 4.128178561795315 1.2872794194576946 3.6473358799501376 2.470335603678636 +2.879226348930168 4.501287239372591 4.3694641588995395 1.9457317575992517 2.916429372608863 +1.4096357730143922 3.6128792230021296 2.9000603481265403 1.7869795601957708 2.4684469895815973 +1.8914849934023876 4.768771908636468 2.8549648054551446 1.3108170763792453 3.2654513013957978 +2.702318405267103 1.2056542379730368 2.0559589614914806 3.7784881442105167 2.2819093792218723 +4.289145546485871 1.2459222769060645 1.1002807868902789 4.641581169546257 4.6692629256352 +4.18054280693056 3.1412393761129187 1.9738205093611754 1.5631949608078823 1.1174815266634217 +4.352603674615453 2.6732424011976783 3.332379280465808 1.9653361920244525 2.1654239982762378 +1.3741175716353022 2.4991490020267824 3.674177700029909 2.266894026276755 1.8017055968667224 +1.491907745327492 2.488238716743406 1.0547899303233348 3.1232755650495907 2.2959329749954507 +3.684056740575153 1.7655278038934497 1.989075007509638 1.6465961640822018 1.9488573675568004 +1.952429177091941 2.5461246607507646 3.3304623837647864 1.5222606786951447 1.903173069779426 +4.097669113750091 1.8904972692009596 4.1616651683711705 1.3665218963281838 3.5615212287192093 +3.356918530387878 2.921595591393499 4.324198341148252 2.8901910978299656 1.4986269833097274 +4.815918991939607 2.813264366327636 2.6673199603654094 4.4755481304447375 2.6982058232376303 +2.507685545865471 3.3334087322303425 2.4440869649286054 1.8195727270832966 1.0352955200193148 +2.5858829057025847 3.857797183935526 1.4117126550207169 1.7601720871650124 1.3187834951284267 +2.555477266611964 2.899587153606422 3.6635182128158257 2.613828675908494 1.1046536734289474 +4.20045434152525 1.105649723538611 3.1723722074788836 2.5981763676196254 3.1476207659156 +4.456201805346555 1.1592122652261554 3.707835702279091 2.081856223750605 3.676132382308762 +3.144654162210297 4.783794216187828 3.6523964941796265 3.400606156977358 1.658366211203634 +4.399689034531756 4.000833649058503 4.542363008494996 1.6100766162400433 2.9592886146377446 +3.669401222803002 1.5137903133114547 2.5079429628156644 3.973653785050347 2.606715674471392 +2.9441667800127367 1.9965950801896009 2.8530766584924674 1.8459552101719576 1.382818042250284 +1.8944782615273406 2.305890996298848 3.8562280317330733 2.653422376855908 1.2712206266957191 +3.2503397870353017 4.739737348419862 1.7125715756852373 2.3952471649935014 1.6383989306929068 +1.478235919393839 4.322554392125033 1.4886741806442223 2.394348798176133 2.9850283226732515 +3.2148122150003084 2.2722093040233053 4.9589167032427195 3.491590927923858 1.7440026315053019 +4.854890137223251 4.656274433791902 1.319510486183031 1.7592297563372714 0.4824948022461045 +3.764032633885523 4.186991515118899 1.7754047593534792 1.3637098110791643 0.590243124185941 +1.4575347753584071 4.132118599552234 3.6416160178011454 4.028155536021373 2.7023714459313695 +4.3633050448418675 4.590677688986489 3.7578651202057545 1.4790901170432336 2.290090355061054 +4.477016468766368 3.658698342336256 4.834470227582585 2.454526525813879 2.516699540992651 +2.8223169522960077 4.221297343827075 1.9401623215807589 4.802754721240236 3.1861546388203794 +3.3587034546221664 4.6392564536465 1.959782842466359 2.1775882489553577 1.2989438703831873 +1.8192857604958763 4.629220128926886 2.169556706234914 1.0340906457448797 3.0306788561994713 +2.010326046040634 4.357756035268517 4.611490956446794 4.703477906638808 2.349231609129259 +1.2930396476535124 2.5662746355138975 1.0325471098104222 2.1950613872086824 1.7241133313870738 +1.7275008724629788 1.2437400829999397 2.7374392550140385 2.014721114870318 0.8696815575339639 +2.44699582655977 3.53644197049423 2.627223153306403 4.282964129705912 1.9820118772252757 +1.5719227084152232 4.603638296752373 3.056096445844187 3.7857082612563424 3.118274011333111 +4.411318459736643 3.4882098799257832 4.261443987659952 1.6687343435285853 2.752139667402841 +3.499502883483516 4.120150344218432 4.7019703996136 4.646983931384803 0.623078471947937 +1.7523706077922294 4.794849048920749 3.2506174039014475 1.4010299400079096 3.5605686134835204 +1.7051344643367972 4.291050378673329 2.813782204135661 4.733707912605828 3.220725980592515 +1.886943806147451 2.2045048537722045 2.723500154906468 4.760426394094017 2.0615318389147577 +2.9281291314435585 1.6577160556342085 3.022933591272695 4.830508664293197 2.209361226190151 +1.109906528321257 4.7653863222992 3.5551776284438614 1.4236521794170711 4.231540294506232 +4.133522853880235 2.8423678787413023 1.4919151475688168 4.670520044206262 3.4308322982555652 +4.729961361046385 1.5598006471905022 1.5905817511248697 2.923738492180219 3.439073399608761 +1.8358240019047312 2.289222306736708 3.7549456136299084 2.428804502463436 1.4015064286510983 +3.0922544416986293 2.1139931179898994 2.182842521313308 2.5365259025646893 1.0402341811523819 +2.4105278062020425 3.7379382729436745 1.2362373439873688 1.745519091886969 1.4217547066772485 +4.498402100541265 4.512590669726631 4.921386170132616 2.125293558007707 2.7961286113258494 +1.698029345597246 2.7923647804622544 3.410090837104412 3.5216055037912 1.1000025294913882 +4.57447440188607 1.6372948599461479 4.592210168028416 3.232759509247554 3.236530512022114 +3.2732569004840664 2.090811925130852 4.559671150278778 3.0170780675515165 1.9436485121070781 +4.3037714853563855 4.545230451315071 2.114411234223298 4.092437989634885 1.9927097825237687 +2.1795809883807116 1.9677066021809302 2.521974882356317 1.9302205199196987 0.6285411529806961 +4.074545833024107 2.0402413130082158 3.698786717894497 4.291717576764974 2.118953015892039 +3.903008324845137 3.5747964091743603 4.79782092878242 2.4551331287913345 2.3655674139232117 +4.245330194891377 2.604510148759111 4.762885258988397 4.192900277412981 1.7370012386325513 +4.303212147776429 2.892589250227003 3.904626421859238 1.7337811017927023 2.5889044715372402 +1.6647845283133074 2.1804106528520775 3.6027144685550496 2.6921939129808528 1.046383286578114 +2.60867090449579 2.177521476740307 1.1017656323888088 3.3954924931006003 2.3338964716980595 +2.2925062355019734 4.4421893672176935 1.0081861871561983 2.4384283452290263 2.5820012001375843 +2.653154939640315 4.019696373982626 2.755574965569474 1.040581799071353 2.1928604727409335 +1.3237948420037857 2.9871527372979587 2.8354420185161393 3.2127767970942904 1.7056204217123114 +2.0386888850866702 3.6602699259653018 3.347631022968739 4.87975103731541 2.2309004483613046 +3.6522952322594846 2.538000705998597 3.025662890704352 4.061853760122453 1.5216253839629568 +2.113845585280053 4.017908473277339 3.5787781446786138 3.7079180584850024 1.9084372137396841 +2.9533838621558233 3.371197248105803 1.9181864671499196 1.5020655395241667 0.5896818225849461 +3.8914008922746195 4.6004326082825395 3.8576229751611915 3.4167947616675742 0.8348984897082459 +1.5595757914329313 2.2811197386374427 3.6459296191233554 1.8297789543763523 1.9542335850170132 +4.434318413435898 3.143126189542017 1.5883673075890061 2.056414620374394 1.3734065843913992 +3.6199370476564248 4.224256433774046 2.839877539008742 1.9966566358037912 1.03741188157807 +2.4174631717020385 4.151464185845363 3.5596175944808914 3.659967343777435 1.736902296974115 +1.0410191033311396 1.7421533760981975 4.703605932216574 2.168906166963543 2.6298844401270487 +2.3557607429717544 3.1199818445142573 4.173834501853641 3.5618911480806412 0.9790345041262759 +2.126555004400739 3.7107478195666346 4.592932230743003 3.6939924202262766 1.8214718385292408 +1.314974639901601 3.3844787945582855 1.2491106086860762 3.417640742522117 2.9975607395841433 +4.268222915183225 2.5436494220173738 2.6931029933885418 2.8922646621643664 1.7360354557553936 +1.766053062251867 2.989503896056319 4.767135536657324 2.7258644569080808 2.3798360371583267 +3.5662821920512693 2.5826544229424946 4.671755393862488 3.2754515896299723 1.707977722886367 +4.12971270711378 1.7716113641295803 2.0679282593753485 3.706650824371641 2.8715942590853447 +2.8995256158131815 1.3238321015945678 2.093600432742108 4.7833564545322425 3.1173061298991627 +3.855141988913145 1.3255913950777467 2.5491542016271564 4.538911136791604 3.2183472261097053 +3.4260662194070286 4.626378262934633 4.50456573337953 1.8327318837183282 2.9290689855366687 +3.817025703512852 2.7102398008102973 4.4896623464266625 3.9108236937983087 1.24901129706569 +3.3375553944577474 4.412960721259543 2.661310799326307 1.259617789026922 1.7667031193824922 +2.302992199198859 3.8241459676294722 2.683150430035989 1.7684186236859718 1.7750050886572186 +1.278287791880334 3.410499627352981 3.064366827986034 3.9171262752641596 2.296415900104275 +1.400156636702953 4.545083901091885 4.734537610925589 3.7116991378760225 3.307078172684646 +1.0783780229819748 3.292362532832192 1.0172048429155507 1.9429507018195817 2.399735986548243 +3.2276287624299105 4.102549645756743 3.1178609537132185 2.3860581826238563 1.1406234470040821 +4.497379436120177 3.8613727294094113 4.443047008486383 1.262532495921402 3.243482248389458 +1.2381489027617674 4.848039856356598 1.7705473364996345 3.104005950079123 3.848301517679602 +4.677903766470829 4.64246845095153 1.3617869890811716 2.948887024194836 1.587495569456415 +1.2768086925009934 3.355717550647073 2.8619150620012204 4.321186632070031 2.5399479434998917 +1.5037292875475194 4.968388546426602 3.6653658939854683 1.853814734259407 3.9096779131331765 +3.3369155699259427 3.705005416752758 3.0756136288270937 1.3064764133840772 1.8070242451064287 +1.112348956537275 4.747944933517742 3.95278595787305 1.5846319729788045 4.338860611267323 +2.2423871058051454 3.222607785735714 1.242310755070768 3.0114162898910015 2.022515012229855 +4.373091293578781 3.1588976504944477 2.3781426531237035 2.9371050182889684 1.336676897599997 +1.659945400134526 2.0272544432086943 3.777693389679762 3.030978328892248 0.8321654373566365 +3.882733819308918 2.6367598601961757 3.1546261767271697 1.737550432537227 1.8869432348532802 +2.0938282885089574 1.8258828341525621 4.319953474068363 1.64753293754073 2.6858194821255017 +4.470605104564164 2.6724081134262248 2.525469740118582 2.6031361208236983 1.7998734637827658 +4.440931008889244 1.4484109519804322 4.76777871902101 4.942269706263042 2.9976029416235597 +2.1032686268110727 3.246447641923183 3.218637187880014 2.627940901506431 1.2867712941032823 +1.8308532211564859 1.5634110482557007 1.1288025688365537 3.713508262405318 2.598505116064365 +2.166941448904148 4.6712863395740225 2.0414272805893003 4.833360472822322 3.750551196999819 +4.465031851959414 3.5290825703306163 2.059329616249468 1.3157645092746821 1.1953619226376113 +3.7755522572017917 1.1530456085068561 3.1920782080140557 1.167865685121166 3.3128503528359894 +3.9416639525990456 3.6275030271976716 4.508791371201791 4.160849730273367 0.46878616931497863 +4.309058783376388 4.80914291369686 1.2225098150447589 2.321262233424512 1.2072037998174703 +1.84455149911085 1.058379711571559 1.8069723213812319 2.5403742958351527 1.075148610962984 +2.4104884365221038 1.6705481716222192 3.5166258305963902 4.916398800620513 1.5833117075390637 +1.7790701994055267 2.600765506273713 1.2995230500004005 3.6020101248748917 2.444714688321174 +4.451535058751951 1.5774430801143953 4.969415222988496 3.9363880785795056 3.0541037609672874 +4.767406752418879 4.388344466627272 1.9671662233307816 3.648787776015793 1.7238153215946035 +2.8865489403775744 1.5774815230498391 3.0818325572245997 3.855146595302302 1.520418397875121 +4.190784813163813 3.9942982792022685 1.1159087006258108 2.7857582627862474 1.681369833878205 +3.124661993369196 4.488558721021297 4.341300703906173 1.5964795168169115 3.065005323452834 +2.6479254726627888 2.801293064518753 4.17663679692428 3.848464501061158 0.36224118209249756 +1.7967986313889135 2.0038154762102263 3.173784372188856 2.2099428926514673 0.9858226877672244 +1.7485704528199628 4.897525409265597 2.8347027666147793 1.70901019894941 3.3441143931720667 +3.072473316277955 1.6009170002071929 2.970591091093584 4.32671690450214 2.001138479256438 +2.168390284831888 3.9224749313826104 4.573662500265598 3.708989563428981 1.9556257911376178 +3.580756167388602 3.943110773267089 1.1098460773695784 3.188529386193344 2.1100296582711513 +1.6163832994860563 2.427764592931037 3.9178352146045907 3.363468752435405 0.9826809134863813 +4.835431303941606 1.9930516070575113 1.2258164395408588 1.8103709533101604 2.901866006697584 +1.2594457625162514 2.4696162129238597 4.704116305007044 1.0725312152292408 3.827913633212772 +1.832648915867661 2.3450545496987756 3.9166368457712313 1.648237370640084 2.325552775655098 +3.980698669351772 2.9371790560878948 2.047739108829481 1.530431349424819 1.1647061866439379 +4.346104433759486 2.5846620666552456 4.852291862904672 1.1983575544304537 4.056342582089776 +1.6379615302417205 2.0475189887807503 1.70808134381813 4.991663690897795 3.309025587978756 +2.8240666597613773 4.470034297805912 2.7669066017187096 2.702098643021361 1.6472430109126044 +3.9351567896687754 4.956525780137802 4.714260185517771 4.586531149416184 1.0293246919000631 +1.075598896319916 1.2189454591902713 3.0355632736820604 1.514643717823263 1.5276598222380748 +3.4173526259670246 4.445551645025432 1.4378795881362576 4.737913230133652 3.456503328670068 +4.0537036838874645 2.6631351515593216 2.3320260262732093 4.1870264048695685 2.3183414864281495 +3.191727331272163 4.033441866058963 2.1662430881233594 2.971329153238884 1.1647518749993744 +1.1680809480664052 3.7078980942008033 4.606275330243262 2.9945102256135145 3.0080654727416456 +2.813608787895429 2.549056377611768 2.0277101401937645 1.6311119903609161 0.4767368983388352 +4.827267340184229 3.716768283289262 2.7509257143015615 2.804283633273737 1.1117802043936802 +2.2896997710930234 3.4906620038908054 3.640156017152196 3.4951440197200574 1.2096853987735376 +2.2593679517214302 3.3599850816958265 3.712692386017355 1.7103045835560078 2.2849321605332316 +3.2337138510319487 1.1715442298336947 2.5363480257018 1.582880498816246 2.2719251465262245 +1.1631618939580854 1.1971187191340196 1.078892452436683 1.0533502683753944 0.04249081244986614 +4.753821489404052 1.2851877874834479 1.7826652333149355 3.6583237235119097 3.9432872745905065 +4.65369978052115 3.949179871853748 4.189360293316386 4.9311275407811195 1.0230185487664103 +4.223773382551748 2.7363936571513934 4.360040360321465 1.6163372627700983 3.120930171446487 +2.2583601300088034 2.636156209608431 1.7279105834394586 4.047998656674466 2.3506464101025863 +4.617559443775885 3.554844214083395 2.4263290816957155 4.574490125006228 2.3966559050930263 +4.3059172424139 4.782293112637452 1.2759385494653976 1.0350596904309062 0.5338132580416166 +4.552317664495781 4.81507475632032 3.700260126702204 1.721905967819629 1.9957270522975006 +3.314439449592946 4.927273899665918 1.195118811350235 4.811136547902864 3.9593963219669464 +4.935738773662268 4.954588506825337 2.758884829064069 4.688875175171651 1.9300823942279723 +3.697615236909013 4.555965697047265 1.4005190816475932 2.3634052032788135 1.2899283684180147 +4.752902910782612 3.3719422055545714 1.8664215268853477 1.1535547272809064 1.55410152286207 +4.694423228244757 1.4339205654875804 4.173076167467197 2.2743134621146655 3.7730859286642677 +1.9739787896551215 3.4981342412208516 1.40253588385356 3.2401342794277177 2.3874290992517984 +1.4198033632849074 1.0751343116205692 3.363335777158668 1.4872871540527193 1.9074472971573606 +1.4721228029216373 4.909178475275871 3.380333720730671 1.5574448209758835 3.8905366770808922 +1.554480281119298 1.375092258662336 2.090526996221473 1.4428823255305483 0.6720295247051098 +4.965770566808411 3.9957617033781188 2.221185801609149 1.7966679402333088 1.0588354970251255 +2.277476351626913 4.159087234285358 4.535379130725113 1.3847602361015774 3.6697219149272775 +3.12953555151277 3.9579674672316445 3.167607911685711 2.496770543809275 1.0659841523779936 +2.0589740802031375 2.8932923811479885 3.454034396123794 1.0496893328044918 2.5449876641743083 +2.985165321202093 2.237120209236574 2.294488086539795 3.400836578909249 1.3355068236829304 +2.0016644562894848 4.055047261684946 4.529076748885572 4.022022298018611 2.115061503039032 +1.03709286853063 1.4829061664492005 1.4381359615460307 3.071444143121725 1.6930579176753329 +3.208428496647828 3.6893221682416963 3.351923310396457 2.4672241644394064 1.0069514895148457 +4.9046060758878856 1.641120762864578 1.7499731252843778 4.400535742671168 4.204261953899536 +1.4782130660876405 3.7620809283424737 1.1697284546654996 3.8588340756845283 3.52807900325894 +3.051324037633516 4.0840598969795145 4.942635566722544 3.285239403483077 1.952819857820998 +2.967215906163112 3.9898516190816604 3.5346507702486756 4.152275981317307 1.1946734711560307 +3.8753853997352827 3.2312303007325225 1.9892145661293332 1.221715886259787 1.0019930215189885 +3.3897326219484207 4.726959667932556 1.1740114558620238 4.870428116805472 3.9308615218310314 +2.0656271117516196 2.1043947007272394 2.9440283947613475 2.3159709806404636 0.6292527643063589 +4.49211643162652 4.629545024842784 1.3901009209244704 1.1877197833743782 0.24463185211552235 +1.971190226609783 2.7821115528287734 3.0166700063000915 2.3166518387981303 1.071269728942982 +4.687434745856825 4.047699393972897 2.5577757580306115 3.383506142653109 1.0445534876390348 +1.9744597828008636 4.077541412101766 4.471336109916563 4.972722621173888 2.1620223803591236 +3.0695830220440032 4.436333049559774 3.1477166307280937 3.3222720549960973 1.3778516733871407 +3.155576998445319 2.5087666484320605 3.4742288411868647 1.102628864428763 2.4582209173797422 +2.630871562292121 2.704204103321516 4.141505339819843 2.03788640332838 2.1048967413009363 +4.21575143161494 1.1525942865710088 1.4756862424749655 3.693922176309033 3.781997138204415 +3.994337106428335 3.486175316647614 2.267035283283802 3.53281019855987 1.3639701392388626 +1.5958977417256537 1.6657971305941195 2.931283343533717 3.0214277016862727 0.11406984645786643 +1.396904771365509 2.543657324684873 2.190097400984993 2.9302636176472756 1.3648763485505335 +2.225719927946591 4.474707175839803 2.5097641575347067 1.6038145382922617 2.4246006586223254 +4.761540951251304 4.046949111713538 3.99979924361546 3.0523951021586146 1.1866828154075337 +2.237652980087809 4.916681689502671 4.277386105791326 4.622647692123918 2.7011849971569806 +1.0953769301566099 2.6212728772213794 4.60437896966015 4.504717282676777 1.5291471129754197 +4.843406801834259 1.521576255555941 2.8648219575984233 1.7050802278743409 3.5184597564632054 +4.278372938948904 4.545957154916787 3.575149769819624 1.4934667607263772 2.0988104876292817 +1.3579647817584304 1.1499373504275203 3.108021308152177 3.4948117922502018 0.43918366405744286 +2.8142019603885204 4.366055289814982 1.058422119490932 1.929710069271886 1.779716676183457 +2.7705967746553335 4.532245413143215 1.6050244333508683 4.023481330158449 2.9920460703676275 +4.441488850178651 3.7598425712290866 1.2606453329132719 3.4775121229284296 2.3192973104537282 +1.8644439799715244 1.1358536183600432 1.2239524840373295 4.118693798235525 2.9850244875308887 +1.508713653794005 3.722314091684404 4.7092214011364035 2.793879405273907 2.9272105936784083 +1.23133528557373 4.681450753005359 2.8976519314296425 4.44280750622862 3.7803177761854 +1.053265655420983 2.6205703287899365 1.0163483761113272 4.026530093217852 3.3937645630135496 +4.995065117437674 3.694967937746025 3.084596405211788 1.9335453615206113 1.7364248275766871 +1.8072820017906235 4.292871834025057 3.1773479522823522 2.908830389716457 2.500051698568157 +2.9644479991314894 1.8146579335300737 1.7417838387498508 4.547788378471065 3.032437744108157 +1.3538968540520289 3.772031026132888 1.4688678486524864 4.711792230655245 4.045235644752127 +3.188278328131515 2.316981108718896 3.030803521091194 3.2189367223973107 0.8913769943126473 +4.795847066185919 1.317199434502423 1.8201116252891851 2.8912104483003747 3.6398134614390822 +1.923370685422889 1.1544116916595115 3.7036226350667647 1.917297621538495 1.944802043408624 +3.3420398293984714 3.1078316545116906 4.7249235766129125 3.1558558716888214 1.5864510492982604 +3.3693520317592607 2.639863505027127 4.817547717788921 3.22415742766575 1.7524400495573658 +3.5619055370259014 2.5565805881294903 4.732891730754291 4.503112345269647 1.031250124299276 +1.920872247724441 3.5234950742520303 1.9750482929574753 3.371981274801204 2.1259872247664355 +1.518567010844384 4.3021608253432655 4.883045086836402 1.9274616454388895 4.060033005183529 +1.4156685048580826 4.292025278155986 2.9757771731414673 2.841955551793139 2.879468095610198 +4.96150594954298 4.718025847389821 4.830983917116905 2.5674698334671477 2.2765716696439218 +4.9652898677459865 1.620014267376785 3.972131213065004 4.685290223264118 3.420448013967425 +2.876463167339255 4.832545743647968 3.5780333197987013 3.776153827363028 1.9660902270384433 +4.588679250962642 2.1444657538048664 3.1524819497445615 4.084526619903704 2.6158912222912303 +4.060028750386266 1.8790623976754754 3.8860705433371643 4.207731376501358 2.204558895391205 +4.858405247754926 1.6041055159436026 4.1604688778817955 4.629332788658158 3.287902083593086 +3.5158487346290705 3.4610806154751645 4.9649311863746615 4.867734323942194 0.11156512422066481 +1.0999257413549262 1.0383055178183054 2.0158682339348997 3.572013251626262 1.5573645584879456 +3.5755884728072598 4.092112948799635 1.3905845005409851 4.55449622558026 3.205797083119921 +3.8843242089595744 3.2071038873298345 4.06742893656275 3.151336687900627 1.1392332386684971 +4.338049415043298 2.808468898681258 4.304971290017221 3.0227816911798056 1.9959024834398142 +3.7249739747474813 1.9381520374635546 1.3681923991455198 2.045403162115812 1.9108498248271344 +1.2442634785837177 3.7813212012611954 2.7869725039695568 1.73720570784038 2.7456642574161805 +4.816479787793725 4.927423008409267 3.208342130748261 3.8173897621895594 0.6190697986211284 +2.402629720571505 3.7277654448122712 2.243453746417271 4.279877349675115 2.4296102114464286 +1.188663059774763 2.0596998275296414 2.0633879548208425 3.670391398598027 1.8278854228568586 +2.9866600740666214 4.936639670541102 3.486922804112655 3.7981271194562467 1.9746565657235824 +1.8974136790007976 3.2864670447356157 4.927611923440667 3.9064423516675286 1.7240233603911985 +3.5954901037952336 4.011601733388079 3.1111693261492883 2.4150188688657592 0.8110328892581854 +4.430668261064073 2.4992058837566837 1.511264963740763 1.0406023586092044 1.9879814392551904 +4.117004738053382 2.2738802695761597 2.0815097464571837 1.1517247812796372 2.0643662193926864 +4.866677170540803 1.4688896091602301 1.9897441255823258 4.966948939206423 4.517599895358047 +1.597290990590003 1.0788319196155611 1.354853962945306 2.451808100863513 1.2133046562885834 +1.327471203441534 2.0782435540679587 4.211974730404144 1.0884858902257903 3.212451035764412 +2.2964817987859374 4.516852377043677 3.5839365414857003 1.9024735809618747 2.7852043358443486 +1.0742252764154805 1.955521001610704 2.5948367339627905 1.537924079874863 1.376134627723088 +1.7237475140637901 1.085715293799093 1.3286748001743685 4.958715153779634 3.6856855648438787 +4.09548128639719 4.261794673663875 4.9749623088639865 3.7608036141427585 1.225496421353924 +3.4756672559748094 1.5090808225499308 4.305631184801024 3.2002444503330167 2.255957010421216 +4.067259465997959 2.165012321985205 4.155943761821726 4.390470532510137 1.9166499427579922 +3.0637164833870467 2.4971092438852756 2.159958097765153 2.0413283610478348 0.5788927174265001 +4.37206821845024 2.3502586344563428 2.1671851859755518 3.173345505622453 2.2583340281635773 +3.726718067143051 1.2297555131156255 3.8926477460352005 4.635456576254928 2.605107858509425 +1.7494590300257093 2.1261037702396646 3.8775976503421283 2.3171338618919144 1.605275208615405 +3.9158395124023238 2.0335651452651913 3.6883409550592305 3.370022295258726 1.909000671125781 +2.6194011640562587 3.5526935702460176 1.5303792688806324 4.009009856327589 2.6485173785495757 +3.276404423684907 3.920076845234811 3.4741992633495244 4.81934046977648 1.4912139522857488 +1.5711846705301804 4.480251687961986 1.9077189596965445 4.012369258583565 3.590574298425644 +3.4942711827838333 1.7672781815980136 1.683305644720987 1.233414608759523 1.7846307098061727 +1.7459247529306285 3.600929988566333 4.32661757632641 4.8622797892884595 1.9307973561798957 +4.703527169974575 4.14283302819304 4.4810493785367 2.1752652668471733 2.372976672946448 +4.477793792134455 1.0828557441509483 1.697514412729309 2.9472760771895956 3.6176661769158036 +2.5960275484510826 3.9973794261702484 2.91049215881878 1.3243150209492476 2.1165408094074194 +4.063978446041022 4.1927865145101775 3.5949560346085634 2.4686632511316846 1.1336343998903924 +3.8053281119460047 3.5900799358534563 3.4910991516946077 4.34503643944893 0.8806478687468545 +4.047058099589684 2.6698607228933655 4.902570574124538 3.888022165923923 1.7105499369973456 +3.909123955861709 1.8063376155600985 4.130640158550994 4.441488858972653 2.125638094199686 +3.8394832860104677 4.6744232514001265 3.007682475311687 2.2577021721265624 1.1223168897288038 +1.4567213837981154 2.831502740368847 4.0855161391861134 1.2143658318079265 3.1833202581475084 +3.8249252050385207 4.070960813830812 1.4020285648108595 3.966343930045399 2.5760913829233125 +3.0329897429776054 1.086953769645015 4.845783264664737 3.9864920364092886 2.1273075528614287 +3.807166285522273 1.6676352967997188 3.921309813699758 2.590655107808507 2.519570359806339 +4.24440025635158 2.779585953721782 4.215393359833763 3.66125301650463 1.5661265789500383 +4.761519135197104 3.2355723824421676 4.079593189085989 2.3833712060202172 2.2815964823077093 +1.5884666210329077 3.5167525570794327 2.3440473874682524 4.978115632513454 3.2644451551083424 +1.346588389843777 3.690281835849895 4.746689830813823 1.6358946989205223 3.8948613995189985 +3.9993927230536834 1.7306826769819978 4.340616487348306 1.0017849914719292 4.036686887907294 +3.3498582670286523 3.514482975061199 4.236533313399203 3.635516005647462 0.6231557579866789 +3.561097271507494 4.425591389636619 4.358728554205598 3.310643213109569 1.358614353854777 +2.0305256029978294 3.3739828749133287 3.711941592084245 1.4922712571902799 2.594573922067152 +2.7361441938894884 4.894803989334983 4.122081626498995 1.3989389321217485 3.474955862512926 +3.928500938022603 4.342837710307313 4.945350399502369 3.695629111107051 1.3166162157347774 +4.840740205352214 4.3140221547913615 1.0329960126977942 4.700341520286419 3.7049770548300422 +1.0090259678940585 4.258353951096146 2.4514273629199845 4.427840338053056 3.8032013607873183 +3.7306642260656098 2.86954791923032 4.516603461784388 2.7605842444746203 1.9557926233266296 +2.4836393867342266 3.57181142270659 1.914219098221587 4.636358883756005 2.931580357394558 +2.64423634180518 2.5110073264882713 1.777964440768387 1.3935399567402205 0.4068564297668591 +1.8273618136464327 4.765712856550191 2.7128307808394543 2.9331584140615314 2.946599924878647 +3.00503339506157 3.2093440007373273 2.4689081249774287 2.817606440630281 0.4041451953577217 +4.18934111788236 1.465552167098406 4.147923866266111 3.519323261812512 2.795382794597581 +4.88715021853148 2.054349631201825 2.0927206381971812 1.0048532124785576 3.034504029246774 +3.699423833975869 3.470053026796678 3.9004105229031425 1.2022502507065358 2.707892136265051 +3.7939298067050538 4.2896308981864655 4.992952065281608 4.977097354982466 0.49595457849941527 +3.7892846911635627 3.4440973329022135 1.1205804670758175 1.7164431784446332 0.6886266645311128 +4.438954667953906 1.022374281156035 1.243984944463258 4.004494770647838 4.392429400674929 +3.603069891626328 1.1451927188801125 1.9333676271829026 1.5980436878912978 2.4806455491603328 +3.1470222312175054 2.1749276096873964 2.9197601638653783 4.281963183641366 1.6734888766569638 +1.9535862472848637 3.6946210551958143 3.286145843402781 4.569622637830831 2.162987490530822 +4.684198838319295 2.703378951450542 1.1077655067725258 4.662016262891482 4.068948987341438 +2.7787703314040586 3.3563099144011246 3.942939024132273 3.5163230619452013 0.7180202985440076 +4.91430890262962 1.3881789895004815 4.76792134798777 1.4816800559792882 4.820059542533233 +4.255957851266592 4.200498179113728 3.7257227635770653 4.706375301658237 0.9822195150170588 +4.297475556365778 1.4301594390080745 4.982482542977438 3.5088361393012377 3.223838618778405 +2.42955280954655 3.001439753581899 4.114136995219731 2.463582497212884 1.7468213496659368 +4.079412595886607 4.454912311746729 2.2740408761822843 2.5177228329543966 0.4476392885653781 +3.7297636222597816 3.8502201882793337 4.343377462613675 3.7592307304017716 0.5964370788700746 +1.2579920095812334 1.9733484827678192 3.616686251358871 4.571255171046128 1.1928691068859347 +2.8760989045569576 1.692643009299616 3.0227791775103383 1.3404108687750491 2.0569226971999197 +3.8043424653740723 4.555404610284436 4.865354527736979 2.2099478579063416 2.759579483852276 +1.0782518993265877 2.246955002972288 3.654003976915892 2.6701307376653545 1.527702030955133 +1.1508241445353713 4.123626903273917 1.4734452782977256 3.1352145574599546 3.40573536545793 +1.9821124787072546 1.277201953804568 1.0302655070692741 3.475414630206621 2.54473045380015 +2.5967631240793136 3.3446219453076247 4.4734394024430095 3.9513070853601104 0.912093730398009 +1.6630432528338899 3.1258836779150605 1.6759121094269784 3.0108878211729886 1.9804197181919359 +1.033449823503438 1.2471031590616133 2.16815049110129 2.6982295802805285 0.5715169188923678 +1.5810200922842816 4.799361223831125 4.354339484328698 3.6553498154735586 3.29337307272839 +3.400997973734352 1.7082682413397223 4.530084191895366 1.8299145468835145 3.186887205217063 +2.818550797050771 2.15558335850546 3.0254687901679262 2.771422297300986 0.7099756651529141 +2.2844769308195962 1.726236039013222 2.3660974034545372 4.124882245808655 1.8452525612986894 +2.2623210607666953 1.610102280841235 2.3317140868153325 2.039796569974221 0.7145664234528071 +3.42580898044911 3.681627503976882 4.803737862669598 1.568687374730584 3.245149422830077 +2.709695759404175 3.3792894524443913 3.3545641323002298 3.4063374160434887 0.6715922771062777 +3.854065348422797 3.1352455860886113 3.1253442523274764 2.811098399587925 0.7845076842747835 +4.817065624672331 3.532115785194428 4.7633330994530185 4.583065574412725 1.2975332252233245 +4.528267392186184 3.039337525039918 3.464918061360892 3.1143914801791333 1.5296342809296504 +3.6626949043004955 4.816585680884726 1.413283651997082 1.441497037103515 1.154235642919297 +1.0101687202822212 4.014567474657934 4.118058427674145 2.41690897041201 3.4525818384561995 +1.5813129279796412 2.203687884943481 3.2786200895820246 3.0443225170877684 0.6650157438229887 +1.6426127035292706 4.981970725566988 1.1649906333924882 4.125855683815301 4.462962451798462 +2.6540404477391233 4.083748168527141 4.580875771991241 4.4098803879538 1.4398970755727576 +4.91646179237066 4.025002188535613 4.643137841256577 3.3025035349778706 1.6099691203377557 +3.5618837643860406 1.198901372636966 3.40315646122191 4.382546999483123 2.557907662553863 +2.240902595253805 2.2856791800446064 2.9164376174439592 4.6970968017710195 1.7812220729807497 +3.0505374442343287 1.285869311265691 4.85258189763972 4.242611242521619 1.8671148383589646 +2.590746931936447 4.671964418905483 1.5793315950031133 1.4606811941385285 2.0845968784614053 +1.7734799804238985 4.758102725948476 3.8475051933794466 2.7929375612609775 3.165451914626823 +1.5560737914669827 4.0438569399487925 4.826185041711497 1.1965106531546716 4.400409203791782 +4.8500911105019275 3.8109852988478963 4.802468928100069 1.078686180367828 3.8660443401649522 +2.1944009719832476 4.937801914237702 2.401845491264984 1.7494699029773986 2.8199011752464305 +3.2774251725881727 1.2860520365035892 4.159875457388093 2.437680768599455 2.632778287894965 +1.4107153832065973 3.936724960727902 2.764793095848736 1.3258135175086276 2.9071268655855453 +4.939146754104097 1.1148382281956972 3.8820177641359583 3.748597665372602 3.8266351569087043 +2.3035650106158676 4.860919007497689 3.062295755889521 1.6923346502235885 2.9011812932674252 +3.952069647932719 3.0174327038466275 4.199215202631486 4.71760022450017 1.068769969707412 +1.4561439933413252 4.37397047687464 1.7549560584273984 4.198185118245332 3.805664150545502 +1.6502369766605072 1.139879087279191 3.401410322378644 2.0040226672008403 1.4876684557041169 +4.583094697176248 2.193926220109154 2.071220948028974 4.688353554141693 3.543657586419638 +2.54996328975869 4.286708120846882 1.9753364891865357 4.802397730184493 3.317914686767046 +2.526278080183282 1.6369047561294114 4.120385142883423 4.28094708452226 0.9037505444764412 +4.687077050432605 1.002161331695373 2.44884710524502 2.4380079466404276 3.6849316603644073 +4.3740277276359585 2.0419176462321476 2.3043891769173235 1.124106024368467 2.613772322138246 +1.582146813012547 3.4723925974497614 1.9430840983093076 4.255343083001625 2.986565039953593 +3.8958522973048155 3.408527567367609 1.5881049412666055 1.0848590739784285 0.7005296534415946 +4.683079107298339 1.6815792423906641 3.9908845069315353 1.022369518702773 4.221502419089631 +3.9138680675468684 1.9226561061000136 1.9735329266025494 3.338261052154036 2.414002471432104 +3.4957320260069196 2.8048458232719202 4.0629434618774205 4.715110058484642 0.9500763205447409 +3.931794323708621 4.859482655120688 1.1136978168421274 3.822965529106941 2.863692926442834 +4.439909430982791 2.985860521905303 1.2915152330297097 2.0633629469048187 1.646209926893792 +3.6974479452631757 4.866262819306989 3.453409532031833 4.826126933135947 1.802909113926736 +2.219303211501294 4.280601211462784 2.2336097852777512 1.3610385084056715 2.238376661303323 +1.9545970799739623 3.0930483002580327 1.481774618292106 2.9005174634963518 1.8190388785797094 +3.5175501518545937 1.1328534539417112 1.38083594791738 1.6201166458561 2.396671356995499 +1.7908765054099232 3.002477861019057 4.641540814518601 3.1474435015132673 1.9236175882029276 +3.676003923954639 3.6996476841878803 4.558381456780114 4.5370671593228336 0.031832792432716674 +2.107309611464666 3.0857607937170504 3.8254726873959046 4.19063528830724 1.04437083507508 +2.240655808430676 4.555279197761607 1.3772086988859211 2.765321777324348 2.698951528458711 +4.821570417128202 1.8713501551264025 4.263034336483365 1.9551977428009146 3.7456520577151555 +4.970130725147303 4.937514347905435 3.364795429579083 2.2703846103196113 1.094896739138706 +3.746592449339933 1.9335961851079433 4.145979761344606 2.645666799899436 2.3532731325537894 +2.5270867450701755 1.1288601550809694 2.7275221116583706 3.445591263760653 1.5718336121083982 +3.9309717845831478 3.4338375898218727 4.893997468575695 3.2027698378254814 1.7627799938205342 +3.1323524583678855 3.474544373272425 1.2749806924230214 3.1604210809939555 1.9162413119126074 +3.0703741882925217 1.4807037850758253 4.723093556355099 1.8772658775171767 3.2597219465014455 +4.7168509872549045 3.115915106320231 1.5121997642945826 4.907532215239325 3.753835125215612 +4.878530542577023 2.3472335087997354 1.2427843144139037 2.606734879971091 2.8753827255677575 +3.3459640213566666 3.168486462598802 1.9323211597479086 4.880138278845188 2.953154931849265 +3.865443004265916 1.9400477181381626 2.4280639880500643 2.7329301983253402 1.9493820595282452 +2.980389957692168 1.3245493088242082 4.697810494363575 3.9352875825104316 1.822978180216226 +1.252095909459828 4.056309022578493 3.895417350924501 4.619466282285474 2.8961799044243848 +1.8354034889680153 3.8167063705319975 1.591466086445259 3.730430941987297 2.9156014408244677 +2.6308778505104997 1.0247607981636415 4.589387437402485 2.985401482920917 2.2698861046346592 +1.7267485727909344 4.246058446756594 4.78577397468114 4.0284572727036405 2.6306749757723673 +3.393421625387616 1.509018258216352 3.1057728465846277 4.2823519016064076 2.2215567341218954 +3.861736061223086 3.3292840532826413 3.797081859643593 3.647024006988447 0.5531930042067461 +1.3163697769731888 1.9495865759401267 1.5551469685920511 4.015253957959765 2.5402932731536754 +4.022107460915969 3.3314010693016924 2.7510655166451716 3.1077820214698315 0.7773814920816776 +3.4833353421463276 2.9956153771227143 2.7648271910953115 1.6744008127303296 1.1945293847021117 +3.134247989986633 3.6398913087476026 3.1069648975647763 3.594036910028403 0.7020785647867158 +3.2723251299107754 1.2148615249259604 2.2370310767376083 3.0654886721170054 2.217994245524303 +2.6347763245539624 1.3504614206238954 3.666366018403858 3.2733644460600333 1.3430990314647746 +3.6940865924357493 4.704816325334418 4.141131972387168 2.9260183038102094 1.5805302339809792 +4.773968394834597 1.6500996400959385 4.876575390191817 3.7649160115241522 3.3157717911539444 +4.937430083529992 4.526394012879313 1.7549443340326758 4.911089293026978 3.182797771389363 +3.9050507013031406 4.463064629082007 4.027521022037284 2.7701574456276967 1.375624478873761 +4.484490856929105 1.3764749997551369 2.4461853500709037 2.445678099841222 3.108015898567385 +4.049633752242096 3.822017324287472 4.645592005614747 1.2298925284757156 3.4232750629189397 +4.305213112797636 1.043033510630265 2.927081999701125 2.1520219902871647 3.3529887824133318 +4.453079862902774 2.5577292178973465 1.2775842153503443 3.6829571139431847 3.062380258688887 +1.3580515268812188 4.641503842971118 1.1442548642593016 2.7190958617446763 3.641590762207754 +3.9902393008375046 2.347692959638194 3.3274803322576 4.183965108142358 1.8524374899870724 +4.822621311303024 1.0227093039998878 2.167993798246789 3.481995973513164 4.0206881226789175 +4.152652668460689 1.0192248024654589 3.8489510747900497 1.8144675039069407 3.735972910981651 +3.760262010857579 3.9505429287452642 4.1883975643777545 2.7388154034614574 1.4620175337385464 +3.833471104068859 4.895289204061252 1.2638518789649758 2.743411987953754 1.8211413436585149 +1.7418323441499415 1.6421242461976528 2.5050094438950388 4.869320003784602 2.3664120791617345 +4.733362615521152 3.895871755808503 1.6619342235464698 2.6640075079970424 1.3059639380594665 +2.4078341593141834 2.255671784147873 4.9384010611609614 2.825874213663553 2.1179997804092405 +4.999690622400544 3.37059728760329 4.722891248467995 4.977872496169926 1.6489270845493655 +3.846035627530432 3.809321341823018 1.6530661226822247 1.0284035413674046 0.6257405846434286 +2.1209885369783996 1.0074319382895598 1.349029856813985 2.641549226043225 1.7060523492308817 +3.701770505593989 2.8349532411377663 2.6439823486043323 2.7760102078244757 0.87681441911594 +4.3904790949531805 1.4029509317610849 2.246727884478795 4.287767486086292 3.6181718009508654 +3.375543912478293 1.7270043665442607 4.056807280156143 4.972418814681241 1.885743120539961 +1.9573721592172002 1.651968511030462 2.2279491782699408 2.9013681547489587 0.7394352616746223 +1.3046558642945603 3.328351589333562 1.1402370119700573 2.618989357227541 2.506402379137404 +3.6763073533906803 2.1331643015880903 1.8771751497980125 4.781670943680059 3.2889795218281774 +2.509812762733415 1.3715559019166808 2.2033553403303228 2.4221914526216897 1.1591022065543513 +3.8836582096277525 3.469362952142525 4.5452160910612145 1.2828558652153959 3.2885612056879117 +1.729676265456718 3.4343234668469975 2.4631306756417577 2.865331484454614 1.751452988754602 +1.853752129022149 2.7749069588617923 1.3419051634945482 3.8826708657798923 2.702594415454609 +4.459888976694078 2.0761761761222357 4.479813172563367 4.990605865989567 2.4378260584520066 +4.0348131731358 4.063782480047822 2.8387211436850164 3.97168011691994 1.133329279501988 +1.073674630698974 3.3604476747508367 3.9277484609940805 3.436306120230352 2.338984080599429 +1.6282883486479616 4.43373889317251 4.876168036040028 4.4799156397637905 2.833296440425489 +2.3887068036769494 4.75814743099496 2.162008050440432 1.4886196513776215 2.463270351053157 +4.396232625551747 1.5071039402490474 1.2872574974285302 4.579530068934808 4.380196713086236 +2.9471984014636066 3.9601219478103413 4.632852409665473 1.753910439764768 3.0519372498135335 +1.5698284466680508 2.3434970235069383 1.095427922022643 1.8272639003495192 1.064963363671054 +2.9733020720558754 4.921302332639952 4.539132562850938 1.576781893936591 3.545451522846266 +3.6403132369895714 2.154707552338339 4.53715891944033 3.2087197185536946 1.9929312483676849 +1.0218942701491294 2.8449778370380128 2.4950495475705528 4.745914858415945 2.8965545635163545 +2.000390833845402 3.5120324462331576 3.6524846460883595 4.027506976947825 1.5574665688050964 +3.086024165744768 4.3423490391558905 3.08357193796435 4.196108333698543 1.6781207999976353 +3.975549983110161 4.29978839473265 2.9040154751843383 1.8707554170831209 1.0829390080880852 +2.3974955608593858 2.5452786366821623 1.1308395476007211 3.824079920847949 2.697291891061942 +4.5402562998626745 3.0521453170998636 2.8954722255839376 3.2245659876138766 1.5240659438575213 +3.453849168645367 1.6044265815812508 2.4112867833207856 3.380245673937225 2.087880561058886 +2.256472847484015 1.9401117397889327 4.6680087622811115 1.9200047365542123 2.766154456257514 +4.863568944431002 4.84206963562584 2.149537908374489 1.5832779000888877 0.5666679956224006 +3.8668042997492176 3.2269374880809756 2.7247070070492914 3.7656268754960167 1.2218607568792892 +3.5727276623091107 2.4200044609661115 1.441002317710518 4.4248971822713425 3.1988121766785422 +1.6038763266187868 1.0194135930612451 4.61483503932358 1.221619665364257 3.4431827225680984 +2.417366650111601 3.6765824874386452 2.8014051484945712 2.795736886662949 1.2592285948815811 +2.356260556182473 4.621203672807875 4.540359831468993 2.910501399024148 2.79041320082893 +2.3248643638806654 4.784231535749313 1.3223696793581574 2.733247725124449 2.83532427529736 +4.938854604662843 4.216149416903233 2.9480073522669366 3.2376378171899542 0.7785811419667038 +1.1222937679302558 4.761108162583053 3.7209196925002836 1.6433209019425834 4.190153569173715 +3.5706239094554095 2.0127150814142873 3.1528839131152564 3.20691222246349 1.5588453979466634 +3.465293510411189 1.8757281477228802 4.900775078813929 2.22307740422659 3.113965779957907 +2.4822388506391686 2.7757234351735653 3.4757505415560646 3.2042113432513397 0.3998333872693727 +2.792253414253762 2.910941314787136 2.5861334438436927 2.091575864038081 0.5086000565043267 +2.553266231187126 2.666759454064734 3.104953192504149 2.9669090748808657 0.17870895346774682 +4.299204338012762 4.35129564490429 4.882879947882951 4.382862074539682 0.5027239579693734 +4.048283616444058 3.0101053964476785 1.1967756577704778 3.4473510178651976 2.478488141577508 +4.461496084797016 2.4188773948472297 4.0461857919254545 3.9213320081729743 2.046430936985046 +4.485219498853701 4.259014334282133 1.7082165721180043 1.8548651211548153 0.26958222013599525 +2.2550766160748017 2.2922691692092 4.613830370206863 1.9894219064082237 2.624671993005333 +4.955035777889335 4.616530543302675 3.9379845688182646 1.949848624955158 2.016747461910642 +1.2660851423881407 1.4555888946180313 4.928365368389954 4.476065067985797 0.49039497739566934 +2.612418653453823 3.33730308097993 4.669198790275958 4.337511007046536 0.7971663683406995 +2.0150084087547624 4.926627621966451 2.2201767526780385 3.430989100990329 3.153346315514516 +4.4395115966714 3.8507274298235514 4.327014951205646 2.7275282596463524 1.7044132338156759 +4.486006552735185 1.8776257115341863 2.9159236660892995 4.652127609780185 3.133377530211164 +2.6325165321139594 3.7766176312052906 3.487520551113324 1.1100747381301512 2.6384116279711187 +2.7403564021201166 1.0265605731941112 4.637131611336661 2.951231737956924 2.404028811455052 +3.72973460972746 4.19840268245069 1.1126641613501342 4.886639022724278 3.8029641093065942 +4.0959276605362565 4.023417376073193 4.753993630467135 4.365240556604504 0.39545757520947633 +1.318624452861239 2.567185953461801 4.99926540659775 3.2022423822737323 2.18819504860343 +2.126930963117682 4.741719521823384 3.966718157358638 3.929105493680897 2.6150590661029396 +2.210705142668295 4.5024966230825925 1.3432902045595578 3.2340917785258267 2.9711006010926115 +2.1324108259974284 4.517755931958131 3.7510941291094495 4.247697462283435 2.436490538674466 +4.724154496894925 4.265571469960918 1.618343710743551 1.0986687976609129 0.6930803762042348 +2.809766022646895 4.905841932979534 2.17792187793611 1.0808739894805983 2.3658081687747847 +3.7906770755534267 3.5396400903750274 2.3372134532303908 3.290474174937506 0.9857614171172606 +4.302140587316725 2.22829620415329 3.3666469460302273 4.530027171069508 2.3778738556935632 +2.8586215338434084 3.3261269393657735 3.718592769148867 1.6193380056048445 2.1506817213281235 +3.441103051129389 3.1257259091281635 2.3468677710145385 1.6501363740451471 0.7647858401015155 +2.460944562547694 2.7371811769781953 4.129552212899757 4.065211941005893 0.28363063610865774 +4.874827150528455 2.350344289513027 1.3469983666116967 4.438769701920952 3.9914989296504415 +1.9705782894986048 2.495740349310389 1.8150230867464798 4.722178391331749 2.9542083802677195 +2.3405964113666333 2.3240340535198194 1.1113849162961142 2.8516778209583356 1.740371714811269 +4.946446550489949 4.550381071581679 2.538982027430128 4.926022754980929 2.4196758664269673 +2.458856257706973 4.638420717550203 2.728095629894088 4.401670702920996 2.7479728455115295 +1.9926440616859082 4.011996085055199 2.683313156466485 2.0095404366049836 2.12879127025531 +1.3508000267316906 2.4831440302946324 3.105888927165979 4.035594897979772 1.4651130108533503 +4.631399464654898 2.2739380934041873 3.275116634820202 3.078309970384558 2.3656620595735065 +4.584850612473154 1.4870621578455485 2.159089522137414 4.540190990717834 3.9071648945622863 +2.810685906836135 4.835341383964365 2.5474619110197563 1.6150946761828182 2.229021862087229 +2.078928734516018 2.0437155377724587 2.6367475630271064 3.7938146729896416 1.1576028101995754 +3.2332121630405553 4.056229616741 4.346357229314535 1.1745087335159239 3.2768858096362576 +3.4942342876113033 3.3291206323580114 3.108806553823803 3.7385770762504418 0.6510556274763503 +3.058072366705107 4.679841196913365 1.3105442515930452 2.5189701495226013 2.0224804793673328 +2.5366128906560257 1.968779754172418 3.0645582392855233 3.037120520894576 0.5684956457874699 +2.559729749014069 2.1297520752578962 1.0383710741832362 4.097735631546083 3.0894323580193075 +4.027091809055087 1.3106374796443112 3.7999719435020767 1.6263327557427663 3.4790561137092206 +3.1925913236439936 3.1076605814148395 1.929398445539416 4.802463608249207 2.8743202083540087 +3.840389515879482 2.748115133626655 1.4473589009225005 4.410486138124833 3.1580352040431916 +1.9781206505785502 2.8298983541868568 1.0425595407603576 2.252367929331912 1.4795815602467952 +1.7023673484378072 4.4756366334205016 1.2727419131063527 4.721100546028113 4.425177938600261 +3.6005780648687016 4.995841564824923 3.883299737408488 3.530851859088073 1.4390899003337656 +2.024776513257183 4.35994998598299 3.7266035735156455 4.748275173802364 2.548891525066284 +4.3636031390178545 2.4098079642204646 4.189672873877177 2.088166305398658 2.869432947887077 +1.6185098598997887 1.4073974722638405 1.9495279093802087 1.3134447469818582 0.6702016336148675 +1.9622579498655446 1.539161233384573 2.6373317240966356 3.05273719989252 0.592935528382458 +1.8896688379052229 4.943281149366896 1.723233642409769 2.7198300218782623 3.212125852497068 +3.8542554071448247 3.2986239639518065 2.2750181400353364 4.931947552444716 2.714406049799994 +1.6692763808624265 1.3372737887317196 4.8259288365939845 1.9819269196290947 2.8633149713018784 +1.4346613259328245 2.0659262897918165 1.18196050757361 4.5568109625628965 3.433381867508665 +1.9088398733441267 3.306742025249458 1.555215211270148 2.5807849338221307 1.7337599839992 +2.7253979170915206 2.634739053890112 4.961780320708222 3.8517421130440983 1.113734192682954 +1.583402426541927 4.714050648790675 1.7399843433488753 1.4625070716015767 3.1429209229322916 +4.275423646690711 3.492757762879118 4.7181898171557455 1.7826551550372245 3.0380799262333245 +2.728611405596922 2.254324936685294 1.5020009588223133 1.6166192782757007 0.4879395595224673 +3.7052295578028227 2.3422775171695154 1.3661343046915562 1.1461505579709748 1.380590856802884 +4.747502696579327 4.266140229311645 2.3454817834375867 4.32789495355865 2.040017598444552 +2.382909506287779 1.7033411020821512 4.774186389666317 4.024813295023805 1.0116191234692427 +4.898790909604553 2.727220297841411 2.4976112729419238 2.1981293646796622 2.1921241605460566 +4.7594323422087665 4.70813134782223 4.032689406560525 4.125855459081294 0.10635650129329248 +3.856257523984291 3.168820607771394 3.080587252767187 3.759293586057038 0.9660288818767541 +4.148804555777819 1.1991823227214815 3.8933594470042103 4.954339948781065 3.1346372904836883 +3.9250020663404808 2.80756283903214 3.196946603733503 2.991184542997908 1.1362255288302672 +1.2790323243715598 4.090027943942683 3.1526430024872054 2.1080139289877224 2.998824148637001 +3.505750121599061 2.183281269538976 2.9033801590901427 2.4445926788258836 1.39978920438627 +4.898163192008472 2.6049712314670193 2.831943657240397 1.1203606039587783 2.861511124593574 +2.910462505112493 4.931493791629478 1.9010081314615 1.3457921525414127 2.0959084532318415 +1.5370710376078507 4.389597866744169 2.0446261486876582 1.6034792745781852 2.886437228743951 +4.102887711087417 2.7693383158097875 1.7385719334073584 3.4108316631550735 2.138879751968594 +3.2071216703745313 4.55535567542854 2.2064258541669033 2.269682340178011 1.3497171242176809 +4.09170446404708 3.7516485029628046 4.625403578141393 3.920631998249017 0.782522227475326 +3.0590166890489496 1.783727409222228 2.2651716290645494 3.754048378580501 1.9603868808197389 +4.491198441767655 4.005164242248281 1.9120058405033196 3.334244202847538 1.5029940793050394 +1.1740006705740562 3.256941028646278 2.788087977893001 4.906288943157678 2.9707601492773272 +4.67579768423807 2.6308977089271837 3.423135747870917 1.4226136459013898 2.8607174955760732 +3.4599629012778688 3.4874144217387606 4.0105096771756426 3.3384762102804335 0.6725939091329989 +2.8269494928222185 4.762234967771187 2.3824374308664873 3.7387305938942674 2.363231053795704 +1.4762955539786762 1.141218706049643 4.4418088819624435 4.350101068320002 0.3474000821835442 +4.773166445559427 3.8265396272290304 4.886276959685292 4.149472391697701 1.199576302112421 +2.2684474079325674 2.101475582402696 2.4878753032650214 3.6416704058829654 1.1658141916042752 +1.5615192996820375 1.9602858195883974 2.5385161964856326 2.886620741446583 0.52933119275242 +4.994425271682676 4.473091500221562 3.4570616295049814 2.442322914236737 1.1408258243615088 +3.784502492980023 4.519612796391444 3.6985291583783724 1.0122184739166613 2.7850767048027203 +3.785077759606458 1.096832418395611 3.265830184801613 4.774947994866164 3.0828719693162494 +3.3032389156596103 2.0781301961598246 2.5450248542994913 3.6413616277920346 1.644033362041794 +4.50472571431437 2.690644991824495 3.886732242007208 2.291259921293894 2.4158685382014715 +3.395321189762116 4.47700039331875 2.084882735473163 3.839381269319557 2.0611392492202123 +2.2234338246381986 2.4689097778604268 3.1006905747701805 2.4749236659436393 0.6721924336026747 +2.991510938269925 4.064455587321388 2.9451784353739554 2.0611839306384034 1.3902001670014357 +2.5254850818358756 4.068405189769954 4.5279849782923325 4.8182680158362405 1.5699893952995432 +4.858112108935366 1.5091489063203847 3.400829134294077 3.986431452999511 3.3997771409523847 +4.428408135013745 2.6322362821917245 2.431858340021865 3.929902024747387 2.3388818281854493 +3.4227809721072595 2.680291429313238 2.172698612097613 2.3083302539877093 0.7547759027951797 +2.3368747793201523 2.8881864651904436 3.1422759306124086 4.202477707563077 1.1949779842434323 +2.0677260033741884 2.913548050073037 1.8552739038980612 4.714378077987474 2.9815921271993817 +2.3136292692673783 4.529312888337021 2.6361597458469124 4.926215948416376 3.1864731774707313 +3.0378463997823286 1.509630397457482 3.328012316106861 2.485715422707132 1.7449665344620708 +2.6648549233118572 1.9556186083234564 4.439499476765057 4.973266725880548 0.8876506219941745 +4.036448718244621 4.333375623529859 1.565850107904195 1.0802088631713853 0.5692214030304039 +4.664673830959261 1.346706848817968 2.6097752365045874 1.4148506740794566 3.5265776050537565 +1.6486571212385726 2.4496884939690022 4.369845530232677 3.311005426348734 1.3277023859628168 +3.25453172085969 2.417329281362098 3.5640505238983775 3.155870705871674 0.931406832992453 +3.9943311224335094 4.06473316888476 2.372488205718229 4.60451604773395 2.2331378675930162 +2.496179174269423 4.556433286511784 4.072346590523564 3.3515384435027693 2.18270735368329 +1.0264343894032169 2.4288733848698763 3.507855644953291 2.087541108352821 1.9960281858942126 +2.894704224711116 1.364977533046178 1.9449148564378893 2.068977082558001 1.5347492261415328 +1.3770458534387422 1.6404704077887544 4.814382874267452 1.9160827541330865 2.910246739059316 +1.1917522987354268 1.7117253605003353 2.5146036726258734 3.223688051778921 0.8793023608065864 +2.4154085216622025 2.863048467913798 3.59484771822355 3.8236718910482743 0.5027345458082729 +2.6528039300385404 3.467130503298903 1.896818147141464 2.0172461978841922 0.823183262295619 +1.825302184363156 2.940802936775363 4.410668001761323 2.4422664211822083 2.26250894165273 +4.233928015077696 4.894602150109017 3.389909135071425 1.2319839540434216 2.2567967120709223 +2.9301045460037245 4.998850383977303 2.140432295555783 1.4437674661074582 2.182899728966786 +3.4555088907157936 3.776346388235279 3.9281200298070833 3.5822104184028585 0.47179461535332035 +1.6313068109178102 1.4994727796010214 2.465401874401761 2.7469998746682616 0.3109302905271984 +4.557310357622022 4.236836442947693 1.0363432522097749 1.7386067915529417 0.7719310906275773 +3.99786592187225 4.722249613461376 2.7533563120702524 1.7999845002805963 1.1973510530146874 +3.261388850951469 3.888815912564735 2.448172941199299 3.640006071100816 1.3468967767336528 +1.4655492009914148 2.019873211941469 3.6761533563517754 1.9801558020453767 1.7842877607967391 +4.045957808559412 4.187101070254351 1.8749535713413126 1.5602646157595692 0.3448920977450984 +3.375366566397301 1.1553034699907059 3.2619937553335143 2.1647780348858126 2.47640111638321 +1.614163330331225 1.508285780951696 4.939786167155229 4.470541882431567 0.4810408030598194 +1.6738735409891459 4.336506402171531 2.441230331761609 4.487357537696999 3.358012849337724 +3.7579505609880686 4.079495053123743 1.38105891420008 4.8677288378425905 3.501465124323825 +3.3749356225326905 2.0549814020337522 3.373290051161523 4.228479704016434 1.5727773162666934 +1.8144751139621746 4.920487492390038 3.818363115381225 1.972370856759667 3.6131703964576363 +2.025524145405172 3.368085104407944 2.2003790467021545 1.379274575692576 1.5737479089582176 +1.7425582875372552 3.4323679696735208 3.792803863631295 2.2596665863306464 2.2816587546980625 +2.0207607127086433 3.339537274009814 3.8118543150652395 3.6076117508889434 1.3344986488036055 +1.8285224005811993 4.211697129147253 2.9147033499583332 3.8491297153602884 2.5598192161233166 +4.271800768660574 3.3804329199073657 4.753643028050495 3.5394171182585317 1.50628058534957 +1.1481769940044484 1.7015235684438106 1.9009294921784479 1.229267474290749 0.8702426659942342 +4.023722645101627 4.823496627109149 4.517531180610881 1.6402574759308997 2.9863593879402783 +3.6063671197647738 4.692419182797778 3.1276433007711466 3.239058828777037 1.091752033888225 +4.699645630368218 1.0859987603832626 2.7062809693937204 4.235048246112732 3.9237192926251656 +3.407951335248659 2.6674552626569383 1.184789843447036 1.1094228765815535 0.7443215791700959 +1.2201794040184581 1.070686845934421 3.2725209816860428 3.9116307598292623 0.656360673289301 +1.5427336442756276 1.5701040976881706 2.9702780133710096 4.802109016378752 1.8320354705355355 +3.6587759028570406 2.0125258297258775 1.8684303471581996 2.8114114130924923 1.8971959819678448 +4.918440058843046 1.9608500147760166 3.1572826842014856 4.31811827941015 3.17724379736083 +4.721339270701739 4.166119717154482 3.9516555867342453 3.0684471516041048 1.0432285907346708 +3.181391368492014 3.0666117671923896 2.791507987499653 4.672665167385055 1.8846555898383401 +4.109662017488102 4.929023923549816 4.105129558321083 3.1003146921947176 1.296536481667073 +2.383073011972088 1.192896647229726 4.545817805313442 4.781180490123738 1.2132251945094346 +2.064475455413652 4.0975477975440295 4.0097290709330835 1.6248055153696574 3.1338863275838187 +1.925328572279141 3.3782171693052088 4.695160473238293 1.3809516181396737 3.6186828557615383 +2.691633382434711 3.6885370910620088 1.0969749260166437 3.9003323075409946 2.9753368906431295 +1.6140868475073131 2.224642088685017 1.93101181012291 4.344642832987654 2.4896570882482343 +1.6629865159095236 1.7118205146691854 2.6660822287035764 3.9065423834300734 1.24142102241703 +1.0824863609290953 2.02665897149744 2.5652716512965346 2.6337795328338087 0.9466547672621569 +3.2122423254613595 3.5014982334999623 3.7159303010856677 1.3616193498490174 2.3720137089502784 +3.063195537404088 4.914907854156774 3.966376143716527 4.483450544684229 1.922551544211418 +1.1140268523148298 1.0079499185256582 1.44517499295005 3.0541226448935523 1.6124406539704406 +3.3128848635373833 3.380789911641802 1.9580560804948774 3.3093849194937763 1.3530338970876434 +4.627414366636598 4.836607506961099 1.9346191715644614 2.2202712139408343 0.35406053052072783 +4.8224895536713355 1.2865700313494872 3.8629797155720533 4.4063540189279475 3.5774267989553987 +4.978511787037048 1.3477725397940872 3.6788056898742307 4.3183009975510895 3.686627419473129 +3.5555099262436185 2.1565702761840178 1.9647315164697567 4.470725807669002 2.8700243086134454 +2.8628057764061654 4.271702694091928 4.592250839235918 1.3081797118271878 3.5735295849543616 +2.982536090674859 1.983562654873913 1.5297432464265346 4.107850002936217 2.7648837902155705 +2.5426588976955102 1.5432827607598334 3.8917300871487415 4.397150515109395 1.1199118144195135 +3.1338139695491645 4.539456158000867 2.124027990750575 2.224071619110333 1.4091978887050167 +3.6811669023445086 1.9849040504721942 1.1900067156838787 4.996745863026929 4.167561709027964 +3.5659741161089102 2.3008185188664827 2.113628134276071 1.6074661050324495 1.362651343918122 +2.8578277835395007 3.236043429350415 4.038935128907273 1.5536858355063754 2.5138637841151668 +4.066604883771451 1.7188113729756749 4.885806877408763 4.636378260607532 2.3610059305758067 +3.7943638054508484 4.18557319706388 3.2676019475707614 4.874581515846218 1.653912972601948 +3.7925711397405104 3.9000045438904554 4.968460152114737 2.2493653448316255 2.721216365400081 +3.424185460059713 4.097120924020226 4.471774113391428 2.797186615522252 1.8047397116136992 +3.156267894194306 4.063157011517003 1.304709200960691 1.4217925430941523 0.9144158682587926 +3.0901590131528236 4.368608715043404 4.490786288153001 1.744742712293105 3.029057437683465 +2.3825383109753626 1.3765135405788156 2.39509977935443 1.4256089118904613 1.3971393562374026 +3.2516492360754032 4.870803090630262 4.059697250900206 2.908205162595464 1.9868551115137392 +4.495546956783939 4.788768463034144 3.166189998510925 2.9345251603262215 0.3736943255908278 +1.1864776104294088 1.5196125917524292 3.5407054192830034 1.5254209084766215 2.0426332454156344 +4.380560132439461 1.5116361767697986 4.187758663445317 4.743136304474653 2.9221856524818155 +3.288380941515638 4.909855221878576 2.0100067901622958 3.4341334871126725 2.1580814838289353 +2.994475723998924 4.4359946810695075 1.4223684078072774 4.731711540232774 3.609671573942103 +1.5675093862411043 3.0809386100782343 1.583509523935669 1.4845422959691708 1.5166616391850989 +1.2979794314936286 1.0538510837654247 4.762227396887534 3.9926605075120927 0.8073610390571836 +1.7904307830087487 2.0536071434408405 2.8940093241130436 2.433102134217548 0.5307515750213508 +2.0977254289575162 4.044234561081611 1.9267991577547408 3.851530691481505 2.73742383973777 +4.724271834804041 3.571328034039759 1.0879735997690103 4.616944823745595 3.712535159076016 +3.2798567452365797 1.7627980562227972 2.773313302370605 3.9314003579612202 1.9085682314863037 +3.286900457510617 3.6937878401296453 2.0421995216442417 4.851339646325694 2.8384547877727218 +1.7795272504699655 3.546882144485722 4.067043648155835 1.5148612625543962 3.104380493878883 +4.837268734160849 3.7402271016274358 3.1723163366856424 2.259091715837213 1.4274030795943151 +3.7337822477337395 1.8703292746533675 4.7735756954448085 3.7431429363661035 2.1293775273221587 +4.246288261873635 1.4002359782544542 1.8025698535400214 2.5560780831791354 2.944110774619023 +1.1911457289380136 3.0348625123345014 3.3319788963768495 1.0647713220548827 2.92224601333303 +1.8720277241944823 4.45769574518598 1.3295783631964384 2.23127950163403 2.738383475307601 +1.0791707403833644 1.580173707398985 3.026155619456746 3.393189416992698 0.6210618177702742 +1.8657036969003373 1.677809800727275 4.330269089649329 2.6116947458521964 1.7288151698133722 +1.0288112467302368 4.243957908840727 2.531219096380976 4.198071884618109 3.6215419749789084 +2.315717746789919 4.78347938449523 2.6098065552056293 4.913731636608249 3.3760803132102866 +1.302658560357533 4.613618560975467 1.5185093889429884 1.4641787654548346 3.31140573508299 +2.391208035121852 3.5794227640475174 1.3785062162361954 1.2247697468800718 1.1981190024559243 +2.4519363200553768 2.5402545856692997 4.375769607933457 4.145894015118834 0.24625780030879388 +3.2179070242256596 2.0028521260687184 4.676040557020497 4.3860945195756855 1.2491705688836583 +2.3790177943470345 3.2098751266919834 2.8784048280888443 3.5968328257454143 1.098390957049535 +4.594566941885985 4.331253959984476 3.7781987062923807 1.1872369864018038 2.6043072707298194 +1.8123990086927004 3.6857476746787485 2.4789493368576636 3.0323440309824057 1.953376797199435 +4.806148332658699 3.4237442920538252 2.4826879297545297 3.646008808869708 1.8067529989641617 +3.952985956857757 4.926153364313532 1.4626899193524627 2.5875187601083756 1.4873784736678437 +1.3802734695034085 1.660764465223639 1.0569252216436826 3.3691584653198876 2.329183928297959 +1.5423753415152892 1.4141522660255093 1.3025580173470361 3.5725638540033273 2.2736243435408774 +1.53827295106022 1.9737879267384906 3.3078850540095335 2.1218318868900905 1.2634854210769928 +1.7218200873457743 1.7416529486258403 3.1944855757743635 1.0235180500083776 2.171058115370715 +3.831911557912926 4.825442850145427 4.852354602647617 1.154783667101357 3.8287250165089723 +3.2152975232230885 4.1972356599809055 4.433445179089812 2.5587918085660624 2.1162532372179537 +3.197456458491355 1.9247970805010044 1.182868562220233 2.846316020443355 2.0944496505420584 +1.9785534084198582 2.1185595268946726 4.765162030966801 4.031164903536932 0.7472305509584595 +3.7595067085835128 2.28469121776208 4.59536249767838 3.8153263306574114 1.668393584807742 +1.3011921326124454 2.056835426382131 1.6046081269038228 2.0425153120064534 0.873361030836394 +3.40979296923695 2.3194930055675984 2.012834676889202 2.59527501336642 1.2361192322478787 +4.070413992756208 1.0683836769208765 1.0099294120223536 4.1381486087449355 4.335659276273685 +4.244969047229432 2.5422624377200846 1.4353007918714131 2.3478266851852796 1.9318160637170112 +3.522864343683503 1.8359227860548808 2.3182404386857085 1.5552180611768152 1.851479129624152 +2.8029033123828655 4.660326539700536 2.613675348212733 4.5225190542702585 2.6634010849916354 +4.309988683881507 3.7624758177482134 1.0152357527647817 3.6876913412348604 2.7279642979567105 +3.790997924430492 4.421161362785962 3.949746303284579 1.7838284509519409 2.255727399774453 +1.0383834812841526 1.5744539021543988 2.70075110952542 2.337115041099239 0.6477674632091777 +1.9809985972736888 3.0865104204594367 4.0815817172183255 2.058086776082266 2.305794476532265 +1.4435393164824486 4.126090630793389 1.0818252618893944 4.039515171139856 3.9929952608528545 +2.432137458965043 2.0120471142561533 4.132815431989039 1.8503963963570866 2.3207568920360284 +1.7734050376064947 2.540838532843342 1.4638611939321535 2.545216054607638 1.3260024526063066 +2.257116776428542 2.33474928873065 1.2356937508229988 1.3810700774445155 0.1648061992411174 +2.1161654650406314 2.0845533277771677 1.2605989854319248 3.809559282219995 2.549156315690407 +1.5891502186493254 4.904090150080277 3.9442120277330437 4.196688367299057 3.3245407278353647 +3.4523582972786264 4.731011856828221 1.4207379370252995 1.780875445546548 1.328402781686617 +1.7618928820702284 3.097053949990566 4.925635135594208 4.86307431283462 1.3366259513545788 +2.728090022183675 4.837744665396891 1.021677462898103 1.3537206553926855 2.135625293751944 +3.6765655712007024 4.760904578356717 4.946264641081598 1.7102366679390615 3.4128680205072515 +2.1375708052330786 3.9744401727824186 1.0436014974131504 3.833256224142601 3.3400991853244535 +2.5066639347840285 3.4791147311159967 4.702054406350873 2.1745539108203706 2.7081209917936855 +4.367182781965702 1.5159406439252603 1.102391035183445 1.0160816126938026 2.8525481671915593 +3.607751598649468 1.1421226216735723 4.38908714110558 1.7016523489796067 3.6471402514891547 +4.566196217981787 3.0651794761081317 4.385062240934377 2.5701676644921645 2.355184405303407 +2.217712934193963 2.4247010727889595 1.291456775115933 3.046884943135437 1.7675893591542502 +4.496142206201851 4.531393358902944 3.1616437272031774 1.0054875034809503 2.156444366280487 +1.7008741203240647 4.223249006332095 4.230049947193006 3.6896768475475192 2.5796081393080796 +1.13645699542082 3.024327660437115 1.6417218493192203 4.461252122394614 3.3932000543171155 +2.0231606684681114 3.584873413823711 2.087924340474716 3.523838483983173 2.121507984084375 +1.056254189397102 2.9277605557908077 2.1239110885942285 4.421673142117998 2.9634855380220673 +4.081522052369452 3.283185905464024 4.572731884483174 1.5952850321826033 3.0826174530308466 +4.344517878474538 1.139691421678024 3.182746442583922 1.726656307261739 3.520101007125431 +4.29246912955654 3.3668435426375845 3.2487685028765068 2.3731775896123035 1.274143702472332 +4.310414025966652 2.812213565193364 2.175497536849421 1.5246183708254222 1.6334773672828735 +1.1106862576762238 4.13699359707935 4.106692297374828 4.8448058190125565 3.1150196922892284 +4.449755813129638 1.7182417002195551 1.2484879343668993 2.815054272416789 3.1488568466251365 +4.729847228756615 4.175353411385418 4.990547891007321 1.3502458427089352 3.6822903737142054 +3.1210608941733913 2.5881954228984143 2.636458098033455 2.6277850398099574 0.5329360490866155 +2.956179259196712 2.578350274675828 3.965014908741991 1.489560566218894 2.5041223898724563 +1.2748797584774367 3.576970461625025 4.965215544245126 4.501567097767236 2.348316734906073 +2.047600990373202 3.965356857295879 1.2021182572397273 3.7487633471976958 3.187975655384366 +1.7320355589540246 3.3356203336399015 2.254620534454546 2.0440209881133433 1.61735472254032 +3.21459948050837 3.543231564891387 1.9767743501402215 1.834079123567387 0.35827499853129424 +2.5000546939428174 3.836470337876279 2.7481281316655664 1.0330922077331905 2.174248144469409 +3.645135677655142 4.11405251086741 3.514806200018315 2.1365897876847466 1.455803378102769 +2.489008724671978 2.0096363075782158 1.1646957524142216 2.958279468385905 1.856539916206788 +1.8409025692375343 3.178578478851579 3.2112635666088245 2.6564991211372977 1.4481506928220877 +4.483290016912455 4.741422142194937 1.5845577778911046 1.7735751668196884 0.31993713041819716 +3.440130952285948 4.360347152576067 4.7938634948614745 4.038031878278362 1.1908313431813198 +1.2641151641069706 1.7998310470636967 3.8591071704795956 2.850993648843187 1.1416148123418277 +3.1024472925763305 4.50599354204318 3.802658701632063 4.461522456383475 1.5504978302847088 +2.6049257013863913 3.39428100675388 4.429259441058717 4.45483631565285 0.7897695705873995 +1.4015730630688545 3.2972629616207154 3.162857074936647 3.971769918021351 2.0610628760857694 +4.470023986520352 4.89313218342762 4.2858527663289525 4.157603407209441 0.44211813399213234 +2.849893601114686 4.277702001477456 4.930064111405198 1.898438128048637 3.3510286377632057 +1.5798513343042089 3.144192732806587 4.671929559583164 4.123125344180167 1.6578148503112389 +2.093175581796544 3.5475074157973836 1.1338553378420393 4.939014360253245 4.073612189350583 +3.8328181555626704 2.2904815102699456 1.7864747379436188 1.297986189811167 1.6178452920688575 +4.339907929363073 2.899100151539154 2.5540780504797382 2.422023279681786 1.446846749012624 +1.4580860484738678 4.5838507274322975 2.5002439161152292 1.7072939209463804 3.224775112013607 +2.070614876043757 1.934411605824626 3.45273218959294 2.472350595007263 0.9897976570091185 +1.023973433928277 1.3874704433316118 3.7467821831416326 3.3683683565126286 0.5247162090398713 +1.9902859662888406 2.892154090764646 4.030475926249309 2.9091615951836696 1.4389968530190362 +3.089116324441443 3.368770956344613 2.208547803188875 4.107087114861194 1.9190253336290541 +1.0425544276379353 3.274821756688199 2.614449434851111 1.0731717221132433 2.7126655555242474 +2.2566880675663015 1.2585580942931385 1.32068653545474 4.966193480678043 3.779680453585676 +2.676644039299525 3.683274437641572 1.9985911145858029 4.282343560188064 2.4957624068930473 +4.583577717850339 2.961221105368841 1.7761658733280847 1.7882583768153273 1.6224016785935078 +4.431090342435353 4.840499174717321 1.3026367127166023 2.779011766872142 1.5320897142410612 +1.648095146986177 1.9029132607805477 4.9973697989676396 1.5438843180165263 3.46287369655 +3.5118670251271924 4.553427013408052 1.1813618039342377 4.228226461546278 3.2199738276875727 +4.395241763469792 3.9762923547166156 3.8726878245007 4.613368580041731 0.8509562789729374 +2.0086024132491356 3.4448540945444117 1.8208738635562116 1.718311297893322 1.439909015146048 +2.3890557112030884 1.1000991556150397 4.220024657258408 4.659693720691069 1.3618802765049356 +3.093378563450377 4.823805097128489 2.1940274283163133 1.0150878485118229 2.093865927247214 +3.1041996702979615 2.1198829009789955 2.6769938490410223 4.087943111853024 1.72036546250855 +4.221751090181929 2.831065893063341 2.0932972454493286 2.066200571475068 1.3909491533572433 +2.7912417249309183 2.4448458275985034 2.6710019670221032 4.393655827360256 1.7571358627683484 +2.115193338408226 3.3601327069318607 1.160153596245145 4.824682665023852 3.8702257462871805 +1.82005527479655 2.8554340763581534 1.3786017807523812 3.5906610150460745 2.4423790284775913 +2.8296467617225667 3.663974796353353 4.993357246543805 3.689196034801375 1.5482053273336696 +2.8822026607011417 4.513861378213386 2.5231119128964625 3.8931985045698094 2.1305979064846543 +3.23602863818692 2.5379198587258784 1.3414141349604636 2.4759204611025396 1.3320887628146165 +2.518309003282774 4.289844787114834 2.983324048665401 1.5650943477432993 2.2692982435050415 +3.991883772934584 1.8582482224069934 3.9799953013763845 1.2854549905274397 3.436996966723291 +1.4033759841921687 3.131304640694594 4.237258596183221 2.347277616155544 2.5608134541252032 +1.3247944240280565 3.2343453776517834 4.280302076945455 3.958240238265805 1.9365197319983605 +1.1243318412689414 4.864168752760791 1.754939028436389 1.7115309227310354 3.7400888208968808 +2.579445728843602 4.0610899384196895 4.833521521280193 2.1805392287534677 3.038681393010908 +4.513574882598764 4.328427133300341 1.3789459093683796 3.146017568608184 1.7767447588099952 +1.660156530768031 3.281613187858983 3.9177925745336593 4.095226664097143 1.6311359682637705 +4.95605397304697 2.791481287729486 2.886694169637667 4.213597612879209 2.538906783973922 +4.50677318730714 4.271230768196014 1.305332862682402 4.034562668143639 2.739375031319864 +3.584041400035179 3.7406364193890473 2.7255492459148445 2.4294418314931208 0.33496507424201244 +1.7115246766513996 1.119072797188616 4.6143977083144065 3.3863787215148142 1.3634624532488167 +2.052508839878074 3.8158895500493384 4.50189037523396 4.784976198925801 1.7859588776283175 +2.185031931495572 1.6534532802435367 3.323111265856379 3.318953281502507 0.5315949127868139 +2.6111671119453415 1.2530308888813746 3.1275378044733784 1.3601516345515074 2.2289432191129404 +4.080138758265249 1.946459972071584 1.0846124689203291 3.3620996689899143 3.1208225052273746 +4.422453767441688 3.526933915010462 4.1798935390520615 3.070833916520542 1.4254715193325331 +2.6221114488826878 4.189531866970498 1.018519017984743 3.427167490237673 2.8737421996283765 +3.3053813948128377 1.1442480270428446 1.2579158134579735 3.1907218941831137 2.8993510961897924 +3.8397229906007735 4.7454215789444225 1.4323995278243395 1.0295426582220064 0.9912535449184885 +1.7391741170775363 2.5726725076987282 1.6744917395510175 4.689245354495215 3.1278521266177566 +3.447392405747439 4.450176230886472 3.244265117301845 1.4640785629031559 2.0431934730764847 +1.3927669582331519 4.0742620882092835 1.2793808435627048 1.9732923638594002 2.7698247832825422 +4.021130628959657 3.6488240073235723 1.3672354761791965 3.560036078832172 2.2241822550117893 +3.1314632216947724 4.544812077901113 3.782978380845759 3.2304305307970913 1.5175190660855558 +1.2355521338661357 1.062296252645718 4.771309102918865 1.736076156638664 3.0401737842699474 +1.868044489824499 3.7738945509396196 1.003476445419759 3.717619816762033 3.316449712516943 +2.2025710226860045 3.064637657943151 4.018381540893645 1.9975201638154885 2.197052477522966 +2.0372770076738838 4.787942837122113 2.5187975614772147 4.451068710293612 3.361522615994477 +3.514356574875995 4.666375622722865 2.308214748177627 2.114353439856945 1.168216629510903 +1.8716958849037888 4.050146351176574 4.008405960367644 1.6991693234124594 3.174621281264933 +1.6373986557375768 1.4472057843722688 2.3954848024842677 3.045446572594311 0.6772175654269178 +3.5343631833846803 2.146207261124029 1.9695231957070192 2.7848804346637106 1.6099019509356458 +1.6570230452096149 2.1308046534964054 1.4411291552249934 2.3677292206493585 1.0407000978164918 +1.8093970186503463 1.480321797497402 3.5764708748391367 4.705947154021777 1.1764383394012285 +4.969844932588641 3.1554916681004257 2.8865370012410994 3.364873227496341 1.876348398807415 +1.823934810333884 2.791058476699591 1.259859081661617 2.339109000814976 1.4491751357365954 +3.6393461896969304 2.153822312436607 4.724364954915594 3.667860184860154 1.8229052413826787 +2.731875251358714 2.5260468533653033 1.0206900625623017 1.5406580992040881 0.5592245421560539 +3.6889070713059837 1.8987244242261183 3.1191187920687895 2.869100887707127 1.8075571532892871 +2.203787839961569 3.130374274663715 1.7721285165652687 4.1806557971891 2.580613508932181 +2.8144809792767442 4.969166681110595 2.49958409187131 1.397988550628099 2.419955208299145 +3.7168595883733513 3.9915326320902857 4.425572447377072 3.877032464407383 0.6134667015096351 +3.702567689606946 4.319838149517814 4.80944663402863 3.2490962293998606 1.6780095964873796 +1.7922436971421534 3.719452675148481 3.6764453454128674 3.824931336708007 1.9329207263928583 +1.5688590038546941 4.248173826748958 2.593854599846903 1.6166401866272917 2.8519600154253686 +2.476840125444731 3.25294396273549 4.500195051704952 4.482589253891403 0.7763035040331149 +4.563298784515986 1.4200062459180107 2.3387975548893416 3.0947106354214853 3.232907757503344 +2.172776736180591 4.0857092635001795 3.6935794274376286 4.139461852906777 1.964210271691796 +2.498474466975621 1.956671091568888 4.006416850763605 1.2330813351928103 2.825763751541954 +1.2556211584694337 3.8154486050108996 1.738029975568471 2.746741125085704 2.7514023223126385 +2.160330150820394 1.361084750466004 2.6760266115517726 4.151721940600729 1.6782341654741024 +1.3516250113884465 3.9977993331938966 1.9689326610929352 1.0334004206543392 2.806681156505418 +3.6682401041517827 4.015529612231436 1.0661218370892227 4.93845133764783 3.88787162382179 +3.639079259824616 4.515704605058669 2.0259014381110667 4.5455757210069185 2.6678138030592478 +1.2837045660201887 3.9860058634385243 2.8678174480214857 4.094598245272012 2.967730349363206 +3.5479745675301673 2.1745272577104084 4.580852967097632 1.7157108119150926 3.1773254605493566 +1.7423190232323185 4.784589835727219 2.49501770954478 4.734180499216016 3.7774676299349883 +1.3924545969903246 3.439832449897095 4.682001687197664 1.8525612727309873 3.4924903910519918 +3.0674061612681047 1.5803856110357595 4.820817909463216 3.965267334134692 1.7155748027288915 +4.999375606764824 2.276961999971306 2.6170932116893897 4.414665128007966 3.2623305535754237 +3.675082248993467 2.0077145672542334 4.576268366614526 1.878717532312915 3.171260867502039 +4.253245272741161 4.503705577387368 1.0648588724877635 4.551576493669334 3.495701665483131 +3.1443537918580944 2.0969922658728333 1.6487343583406129 1.3437570289093421 1.0908608241114925 +4.927767716561661 3.396673301212101 3.1254144856360595 4.942886635122633 2.3764374855808765 +1.526931420223915 3.6569435504391494 1.9324995605998794 4.3142178322498985 3.1952360789737577 +4.462280124780236 3.5814017373711544 1.0983924997376344 3.509858367528733 2.567316568895605 +4.937804267473844 3.7866516578608302 3.762285263913047 1.3907373896175517 2.636169882745483 +2.537367285854071 3.760686761509173 3.6896776579130797 3.707567580254858 1.2234502804930278 +2.3857774323108503 2.0013286724578925 1.604760080149359 2.8812789329557345 1.3331546161351961 +1.93254644745394 4.007942239735172 2.1864843907684635 3.2736251075510228 2.342891937906044 +3.1067039708575592 3.7416970387096873 2.6867584242185387 4.10312365563567 1.5521941453914718 +4.846975000635145 2.948142846901182 2.326256169397452 2.53624403122739 1.910407927687139 +1.3082434706941708 4.518874348392335 3.5974698521495663 3.0624480419004954 3.25490383425856 +2.3223086986034907 2.8801290454055963 1.3197718111598915 2.9830300122776956 1.7543065247818168 +1.2693544340335152 1.4847479270930841 2.499065954749958 2.543077223508393 0.21984391879269652 +2.6285159600127446 1.5847030408183116 4.440343825824518 3.120180624096023 1.6829665146624975 +2.8154803682036773 1.4587469677674454 2.6702662197560185 3.9849419989512596 1.88920563313311 +2.739080797083044 1.7639840202495431 1.0284383765544174 4.778049184205262 3.8743250938767515 +4.832076919409811 2.3832927037948757 4.008022135472647 4.544398167203431 2.506839321149267 +4.187528501166614 2.5737154420535258 4.486840519796277 1.0895010657149795 3.7611577946187467 +1.4791384421359126 4.849147532994667 2.8572337025575476 2.574080330828705 3.3818836621610835 +3.3323636277882978 3.5335547272484256 3.276479280796992 1.5518429459821825 1.7363318651298878 +1.2701042780429788 3.2056515788175344 1.2866139866474593 2.8696524252639213 2.5004707660104555 +2.5241470800911 1.187672891781109 3.620719668777156 3.416466777356087 1.3519920486721497 +1.0069363864901169 1.8418790888360212 3.5301225515180183 4.903031168018755 1.6068625907222582 +1.8646921832353631 4.2605982299788145 4.86640445267436 4.644433693962675 2.406166412063986 +2.0184023248920617 4.443707572520824 3.3392370013454884 2.4472069641960013 2.584148434465894 +3.145939772040046 2.8512974918947944 1.627104004971811 3.9645546689799906 2.355947724360936 +1.876558388598721 1.9358613336542252 2.646563384794275 3.5459437522434962 0.9013333926163793 +2.121543562697562 4.518588374860846 1.180204583171577 1.4272917609026998 2.40974602498231 +3.387406157640592 3.7855834994983035 2.9984324380827956 3.8502026973892916 0.9402434632625362 +4.671436184629659 3.084380512524002 1.508058599622026 4.9047488467990785 3.749166619614344 +1.3618046734772817 3.5973684334256695 3.981509591502593 3.7331027839537536 2.2493224017092746 +2.719101237823822 4.851639078534236 1.4528848536654522 2.5694565248062893 2.4071663712456757 +1.9002508170779269 3.7729348519913644 3.0965212107107196 3.034503780717434 1.8737106650287938 +1.4137840719222141 1.2803978065270298 2.8637093904446704 4.523748674614344 1.6653895402525614 +2.78770020449527 3.6619066557016358 4.78774990947657 2.8504590113098707 2.125401831054628 +4.92263483983745 1.2455684249791958 2.1180450788323966 1.712743240225807 3.699336021457961 +1.7401186079471032 2.4453743234791374 2.826982219531537 3.123473836496449 0.7650443799029373 +1.9784003128340304 2.002791216334407 2.8446105454926864 4.334572496074973 1.49016157860701 +1.9383701014945092 4.6765331516093 1.4869138683223238 1.8990753710166834 2.769009569018715 +2.0089135918769294 2.4289976248623746 1.9886845902068604 3.680636297932844 1.7433218796442007 +2.2217513511526144 1.9715450167127226 2.471547107701445 3.0180575789543687 0.6010631455870006 +2.3441006732375396 2.0760883738200566 1.1277613466582075 2.76131014624159 1.655388858624872 +1.1130507019773908 1.0210392544567606 4.927295594859247 4.002472012257584 0.9293894584139721 +1.3842999940706462 3.208426986234707 2.8962690134472764 4.7534256611096275 2.603165399566068 +1.1687287829594584 2.766758030775416 3.5553324292168416 1.4526496743847988 2.641017274525728 +3.356684126520337 2.834436828793637 4.75567629384161 3.614912989422541 1.254624707508964 +1.31893897703906 2.5054989866457578 3.0210530363282344 3.18464226902854 1.1977838258439297 +4.035599278531085 2.355937442669727 1.3517634668327432 1.1401500734517587 1.6929394883182807 +2.7439227391769543 2.5445840330652567 4.411218226287646 2.2767790999211006 2.143727199043448 +3.7520030753325884 4.9505272384216905 3.39260533983498 3.1055914445464747 1.2324111106270965 +4.848367327428095 2.2182594223459358 4.881848777878549 1.5326767294966452 4.258452888319689 +2.6711170678403025 2.3196706361713457 3.8042204815258973 2.779802256833864 1.0830269125991374 +2.1035160320441624 1.2431767794324249 2.024626179819934 4.943227203385298 3.042764460871284 +4.678452212357026 3.8847689007391115 1.9003931614158205 1.715031000428254 0.8150413056200038 +2.9700827501906257 3.685681681703949 1.1593174006264122 2.405137298568817 1.4367146720529562 +3.6470411542639813 2.791158184302336 4.78257995119835 4.194028583482284 1.0387147686977496 +2.460319209626829 1.4593622145618808 2.312139203010408 4.758287162375458 2.643020004668003 +3.0058158341117407 2.841041549695203 1.9116586241940476 3.925361938956098 2.0204335189975073 +2.376891712647616 2.7970774106746044 2.823627957645946 4.8895866481330765 2.1082555185806404 +2.6527403090714197 4.961128731787894 2.3412124335091797 4.801296874751934 3.3735252434472938 +3.4015733210821533 4.210969682707852 2.080983923274592 1.9944078391300715 0.814013444949602 +4.298184815921934 1.4280706247526727 3.7413776340643117 2.631223983408492 3.0773359580025748 +3.5654112279743337 3.041751429179999 2.230836941702096 1.9347155135026033 0.6015874708737128 +1.7270069980665332 1.132500052753211 3.6611081443970406 3.2091743404008595 0.7467815418315026 +1.1320260715986037 2.392574849790613 4.682435406377753 1.0311759269392606 3.8627294764700797 +3.4966196197403816 1.9003878567542523 4.463669977440727 2.8523265661713983 2.268123327821237 +4.91453071620284 4.474958512329497 3.940273352018192 2.5157924891778007 1.4907613662208226 +2.7648532009985467 4.665121007776825 4.155146883044106 2.163483626767254 2.752769562437299 +1.4792035491713333 1.0425748708123046 1.1114892447181304 1.1584752822701532 0.4391495081295119 +4.317351761373023 4.439870844650191 4.8854490408087194 3.470133257525767 1.4206089159852948 +4.807561493843217 3.565321185406981 2.49063249597398 1.4683958837748792 1.6087661965692992 +2.011133878163161 4.143969897676433 2.1484357925351727 1.611994483408504 2.199263232146337 +3.8445668011400627 2.964698058338885 3.590963051492788 4.776073797114842 1.4760272639580154 +4.102970286187768 4.0733579531508965 3.657130058891158 1.8699349881968277 1.7874403796999774 +3.8375571049576362 4.010704310296015 1.692684110549111 2.7532796196530303 1.0746361191807636 +4.5895824721732446 4.775189160754465 3.2078656183535705 2.516177280973657 0.7161582219827369 +4.010151651257586 4.389419379939657 3.050453665602982 1.9532420502762875 1.1609122873100584 +2.0701047871698797 1.6869861581125276 3.499565512606268 4.255432813700952 0.8474168164456888 +3.291220040451466 2.7651874015970748 4.803756214369188 4.354509659009758 0.6917606556045437 +3.5763867655169173 1.202360795310104 3.280535126543705 1.4813923743587383 2.9787436865155246 +1.8322764900891562 4.678603056341136 1.7957349029103131 3.3859972081483862 3.260446153705486 +4.430148371463057 4.473787325480405 2.9531994271778963 4.797872824677602 1.8451895029375258 +3.641662467931116 1.7809112631731563 2.0449768383041826 4.0993327268007915 2.771781586382464 +1.0764914073068375 1.6297374231270774 1.974190809701076 2.852458685065334 1.0379959609352134 +4.349553675213436 3.353422895716224 1.7840473321664168 1.4017608489401425 1.0669674245820417 +3.3433712601363568 4.4858614655521 3.4251010999274483 1.3895165319693565 2.334285415877852 +3.462324591279333 2.140463057570897 2.0473783025109986 2.931600425782077 1.5903353978265191 +3.15001203393352 1.198414285099429 3.1509915268062043 1.3508137499510506 2.6550656868592637 +2.0517658478158083 4.0046140026058765 1.7277599298496007 3.1941242863461174 2.44209752910698 +1.799432442626499 4.9260727586081146 2.905414285696274 1.7145068255589262 3.345764523114621 +4.160715361922995 3.503120953015816 4.737359505342939 4.10323963235731 0.9135307438402347 +3.6912243700694347 2.186306376707304 3.8713865654777995 2.4953768176825633 2.039161835846437 +4.482181987115311 3.0282586465812718 4.3615028882776645 4.712969943347995 1.4958015145564836 +1.1071531084105248 1.5750068047203425 4.485723596844339 4.781594845293682 0.553558377056776 +1.4621598306726429 2.158092337863882 3.4744495268104845 1.3313348075429374 2.2532782239454368 +2.4895762138867736 1.5552794478144705 1.2828544089270602 2.8620782649190923 1.834900115654121 +4.077496602114326 1.87977609424299 4.745524096603418 1.9651450703703088 3.5440771662359754 +3.658315144356373 2.818178362381749 3.7693111381295608 4.0141122477658975 0.8750756514186979 +3.1526532953616138 4.928287159244443 3.7334384189587126 2.2823409649481636 2.2931549096394166 +4.724956609782147 4.0232399235678775 2.0229919419251896 3.9250815639326357 2.0274001178504366 +2.9216168991515996 2.067364214308087 2.843391404398277 1.8845001814163709 1.2842196179291476 +4.043578250180975 3.0778881473763464 3.892315649783097 3.2090850099595216 1.18294610268116 +1.2460434716865487 2.8954391179910712 1.2834089249593448 1.0190314584652733 1.670449473296974 +4.40843217442884 2.1317959313047528 4.467568803915247 1.4997134036761848 3.7404863668023602 +4.521930965873185 4.757904751775686 2.42367471665846 3.681414655905394 1.2796848762136879 +4.010588645901782 4.583760731695927 1.9559970447757271 4.489674508543027 2.597700469710838 +2.957419518892543 1.2702180680354944 3.219457935523216 1.5282134674799415 2.3889237297287473 +3.197164387730401 3.666585005901946 3.0740973023129254 4.190451976211855 1.211034051833614 +1.3999251963113224 1.5221418003924692 4.956244110709556 3.8566546095437273 1.1063606868409794 +3.1797077581694166 3.2046429762610478 1.6200399823290428 3.3313650350879227 1.7115067050121249 +1.3843037586799039 1.9235029450994294 2.44504429307872 1.984787617482362 0.7089231058912452 +3.6993437372430003 2.549516864581299 2.3105295564065207 1.0354002223544527 1.7169905811200767 +2.5246696930222052 3.188422618645738 3.154120234730106 3.329221908190383 0.6864608818588196 +1.683022570547326 1.4289263025371155 3.2243729522440354 2.3979367345744262 0.8646165249940383 +4.398871065529979 2.083121114415337 1.8337763599417962 1.161242896179739 2.411430922910142 +3.766941164402017 3.4750326360299995 4.834969601324036 1.7131496558168258 3.135437826062408 +1.56337186073852 1.4722023810327687 4.261699665759368 2.297352797823286 1.9664614137074012 +1.7590762799851198 2.9588484084344424 3.0055706014868946 1.4343866651138937 1.9768844483480505 +4.482370034999923 1.6212236943133047 3.8373892160046266 3.189515415285558 2.9335812319556793 +2.9055504709010735 2.636478699202945 2.753758161211825 4.984615222205211 2.2470253325026888 +4.021825430248226 3.534910293627748 3.3756629800500986 3.6850251605100044 0.5768806713429099 +1.6615613713743875 4.218682751099314 1.8960095716488934 4.190470239129174 3.435610499643457 +3.8850437117647214 2.924147549115779 1.400078435098198 2.4589599714922197 1.4298781568754824 +1.7478174047684756 2.4375813385318645 3.3990043763365434 3.945049890215574 0.8797385904620529 +1.4601639254755039 1.6602901318045213 3.4262278834812503 3.9655178028714166 0.5752252737975763 +3.660183037141018 3.7786759394449203 3.3089639342223416 3.4107564382208997 0.15621229710460907 +4.173732451187705 2.4087978018101164 3.6188269175895598 1.5687790799251262 2.705123001507734 +3.151712393947139 1.8756879019165629 1.8965660218267728 1.8447185416899914 1.2770773921178091 +2.2910548303987266 2.906956264601161 1.1449547601321792 4.901311868968665 3.806514587619364 +3.878270292626847 3.9627712186252237 4.0884229960439455 1.9062495406737536 2.1838089192548114 +2.3708493167876292 4.241682305622056 1.1144194078941752 2.501659053447178 2.329044848495875 +2.2394984044330495 2.438887278953856 1.5975881219953458 2.8319106120321926 1.2503231313118364 +4.862146367069036 1.1267407793253295 3.974035520925503 4.244039338446461 3.745151127314196 +1.6900316660199053 1.959308331437934 1.9422895512003011 2.0296352026271722 0.28308865283129503 +1.18626533492119 4.89481169505998 4.448057093160385 4.588127615782655 3.7111906252045777 +2.4747435982427843 1.3207466820140001 2.3823923985680504 2.94605101413553 1.2842974412374226 +1.9994196095045083 4.8364263125563465 4.3969526694355 2.321006696252945 3.515417289132817 +2.5246087527713605 3.704342584395579 1.4438706805563126 3.465718947773004 2.3408635861847857 +2.243990834176675 1.168326273147175 1.6443630070444142 3.1544877506019686 1.8540579788559894 +4.170055867577964 3.0750961815883797 2.9155717614687306 4.490808008823109 1.9184123511178488 +1.2632899812199736 1.7066258924558744 3.0545935585493935 1.4979859854949398 1.618509767249442 +1.2310527986042068 3.5775528600813855 1.0466601636055244 4.909713381882602 4.519871978911935 +2.2769621101257083 1.7122874820928549 1.8641534683482264 4.924121127563071 3.1116329332016037 +2.589224192729344 2.5974869347355503 1.7745372094950245 4.988180944803014 3.2136543576417407 +2.487255739942468 1.8609568602155862 4.752632532475914 4.746245483639745 0.6263314467117094 +3.7772870438049693 3.956435711048299 4.156134055352862 3.111919627297992 1.05947063042494 +3.469102686951305 2.790026749973387 4.145363240749562 1.6959797557970826 2.5417756754954577 +3.201810709418268 2.6915857218409647 2.374909419733671 2.9405242591896443 0.7617412188933101 +3.682899569313782 3.8254527923750055 3.082669455827691 4.684611572603817 1.6082723547043638 +2.05345806042681 3.8896607575031528 3.419104747889343 3.1842331280271092 1.851163153956762 +1.7886622075437209 1.4926227941120191 4.143879957416645 4.262622626280631 0.3189657594694584 +3.6149884311360507 4.777421964640888 4.680811008221055 2.7265960543312255 2.273809096169503 +2.7498269019166175 2.5471032680542525 3.5921249917751354 4.875013985372135 1.2988075460277726 +3.4595264906422165 3.7516161163713595 1.3712897457344977 4.1417343140991125 2.7857996079832428 +4.169459331621424 2.781591628052664 3.0085508943935473 4.309289558909761 1.9021298157530278 +1.6629221538251926 4.953145360242161 3.7034986285976177 1.8750604747310198 3.7641406496782035 +2.2385952423718853 4.242182497384233 3.325573401332003 1.4430891435332067 2.749201496672843 +4.137625945130395 3.1433412919329666 1.266289183874434 3.7633538266877173 2.687737673578313 +3.2053029155757082 2.3431239196860516 1.7850517896627038 2.3106231461486275 1.0097414875658772 +1.4198744320685268 2.0252645427137304 2.480635364630948 4.2857408392280405 1.903917792470937 +4.239194393650835 4.897561068226439 1.4627242371482954 1.908768905274214 0.7952374011295624 +2.999131843046731 4.544647142670097 4.2657478096304065 4.054369276607797 1.5599033385414287 +4.892236126205742 2.18948182194081 3.924362975618146 1.1309687550046115 3.8868923449176873 +4.959451040475152 2.907041256256609 4.404763608592469 4.725578034016596 2.0773318988347094 +4.675466744353054 1.2414212827573636 4.771005906413811 3.2373739414598144 3.76094339710592 +1.6008142944819381 1.4101252541580829 1.822316014996677 1.5817833940683035 0.306949917462614 +2.2247524005301447 1.3488845054454028 3.178316464548654 2.512234892983458 1.100367770165474 +4.303858212737113 4.781565192759272 2.006287994671372 3.728375877542418 1.7871179689917434 +2.5260903267088315 4.515494422740986 1.0703195944356407 1.4077576207046572 2.0178188914969155 +4.614889087850437 4.820602207420221 3.648300720966553 2.831630273042163 0.8421808048609013 +2.176635476968337 4.107000872160398 4.398670874566152 4.721122060354942 1.9571114751519905 +4.56892424346397 2.2616944728236 2.03735396864008 3.6847288203989073 2.8349873221474255 +2.8877062126127986 2.10506519737034 1.7008744386166441 1.6766423285791712 0.7830160623490522 +3.1977797331077107 2.2224725832493126 2.6811787146980026 2.2623019820698977 1.0614526620165916 +1.0057977168360783 4.09878568133641 4.978285962425004 3.1137975127383704 3.6114943898002627 +3.7676032078142634 4.798339105710092 3.7759733376255613 1.2471482376559866 2.730819085448036 +1.261413888168407 3.4070129079750218 3.5073982310181693 4.1045400176229805 2.2271446893061735 +4.555246637935458 4.382197335133249 1.0871254189628177 2.107151798833991 1.0346013129865155 +1.3462055075898323 4.7752117509289755 4.675489737139008 1.5461562038830428 4.642285232428 +3.850865507571698 3.475860232762554 1.6847331589057037 2.6702820717848956 1.0544835777820527 +2.1149670077144638 3.3927319517602936 2.9623734039808527 2.3629410647722073 1.4113831448340282 +2.6678465541259135 3.4073146077783116 3.8542786625604215 2.48299250797727 1.5579597941294612 +2.765402161757046 3.510388708748107 4.2570122906719075 3.9065520976795614 0.823302679498796 +1.8753300524162815 1.4081359203988417 4.584196843923416 2.348756238920448 2.2837392704701567 +2.4468799503603043 3.287044897986031 3.280187029046948 1.399350950398492 2.0599566728367473 +1.9878664109000472 2.922527014755784 3.0282739624224453 4.106918188149809 1.4272574435241017 +4.028288284549269 1.4332944624556379 2.4087782204744457 3.2426026834178674 2.725666188605457 +3.331272369857137 1.200500849670997 1.1557425250039017 1.0130381311921623 2.1355448520809697 +4.952276971774193 1.2591237676193088 4.678973719034189 4.349099047155285 3.707856238921178 +2.2010254750795224 1.363731508299089 1.0860080226408249 2.1926524468383226 1.3877042438554135 +1.090380213632578 1.5004993372493818 3.7736849226117104 3.7617086940754016 0.41029395024319953 +3.318916780707343 2.3624382401187707 4.274955058010695 2.4048987606424004 2.1004670323366805 +2.665909866670337 2.5231555405146278 4.463818244013217 2.3743609540605295 2.0943281892226437 +2.8898088198715 3.199750396198881 2.3470293603960313 2.7587987047640623 0.5153811926114301 +2.1743532397486622 4.908917361595663 2.916241500054868 2.6852629645675505 2.7443017363891906 +4.275962857465983 1.1163151434233352 1.277290101243056 4.195721913497219 4.301234464619669 +2.2048529457592267 3.6251894168723076 1.3223460664153395 4.530187278697833 3.508219054505003 +3.022350020864062 3.6621667810389216 2.5659727627869207 1.9579714341903536 0.8826273858066295 +2.902749614201588 1.026012902634176 3.5144088027602227 3.121993371586276 1.9173238002925581 +1.4683828505345216 4.584808910502449 4.112075240925984 4.079893362351274 3.116592219164358 +2.0975535318606484 1.4065585186169596 2.3257355419725196 4.447933086872876 2.2318594328292147 +4.455345340601987 3.07436079918367 1.8397264068373813 3.00208013673894 1.8050441814682612 +1.9960180485563104 4.6699703024532795 1.5032088216305417 4.506160356608344 4.020912654801919 +3.0007516795993308 3.612265391202821 2.753650772018935 3.793278001723661 1.2061400400544706 +4.523923458425868 1.9098082308424273 3.9973736905295407 1.7806212838269304 3.4274756973179894 +1.414785932752864 3.3528140621686253 2.801206583002645 1.5298234065706375 2.3178369683222106 +2.987191246218251 2.9287335199658866 1.8510582347377604 1.4152067883439376 0.43975423713954565 +1.6550288959019435 3.92492947079709 2.2856131710348575 4.267109427597675 3.013100734240689 +4.409730163401917 1.3031271189996185 3.72725091809948 4.114317105757272 3.1306233738853932 +1.8985828380546468 4.155359057693346 1.932095596803547 2.1035393288369573 2.263279005951383 +2.0610702234342972 3.51061085600107 4.561613001630842 4.692840518292454 1.4554685522508732 +1.1419866863182064 4.474907409584821 2.92031456780477 4.152965416904796 3.553559998560186 +2.893795086679563 1.1221217947401345 3.779993233429563 1.1772631873844857 3.1484964579870978 +3.44506505922732 1.3610514041418962 1.506843666211524 3.5796325805775373 2.9393140012766827 +2.945663560147645 4.790479375598329 1.607945699956411 4.242182154472346 3.215983067622971 +3.753953284306507 4.508667701106777 2.840778610314773 1.2842848776021065 1.7298169240991899 +3.7440798079575157 2.6133231915626776 4.658783033191406 4.61141940483217 1.1317481339998114 +1.1492735749728742 2.37172685216414 4.152961098153942 1.5390870160157264 2.885607341997446 +1.7859763108009146 2.809740070193757 4.214802849045616 3.1647898560682868 1.4664990693714655 +3.0117238860905573 3.0869001053463436 1.1464503960750667 4.892949569818857 3.747253330481474 +2.2459927639179322 4.0696239975097255 1.222975622027461 1.1631234804789958 1.8246131521447122 +3.8204270102958136 4.614553910243102 1.198043651831998 1.0904079087223129 0.80138816213784 +1.4500606675554542 4.658705509299997 3.7813426338064877 4.698026736231862 3.337021346064972 +1.5826612827636333 2.8420251470089957 4.500011947182905 4.27809618181051 1.2787665734948765 +1.7154568491942626 1.171320427345277 3.0795084713477987 4.301711564919112 1.3378583062185272 +1.728195541935186 4.446020172744576 4.891605035877668 1.1879712068663948 4.593851789428006 +3.0875084088967464 1.7842916263255493 4.377651535794266 1.6818173502670977 2.9943105948168025 +3.1944598419349806 4.532351691288039 3.799209303504677 1.2952646590842964 2.8389599121662235 +2.54883163252645 3.796729301825444 1.0064370148771387 3.158110183192414 2.487357235358395 +4.635231592108649 3.236207883447749 2.4263677537759802 4.4025137182324325 2.4212435255944045 +4.323198920459173 4.96475025657141 3.2997236466871986 2.476651749195282 1.043568620316048 +3.3419801949016876 4.607569898507637 2.430211925098698 1.0704072846633474 1.8576291228398925 +1.6435501844745732 3.6338167335645823 2.7194522366000298 3.5003655001228577 2.137986543824008 +3.8258431732272253 1.620018802977763 2.989742407139142 3.08649356327351 2.2079451846909097 +4.411140359061459 1.3462978612121375 3.9718950757224567 3.4296659273654218 3.112438270223406 +2.2786510790334322 4.172462782992522 3.080496998222046 1.250715905031912 2.633366973866064 +2.7152697625032993 1.2678900228748153 1.168086800616941 3.310002296898989 2.58509382883875 +1.1687660069438865 2.0056311766862662 2.3793682388451396 1.7094726856441165 1.0719623895111463 +4.5757366044586245 2.78610155283993 3.370091687842481 1.183067517429223 2.825927872390597 +4.347352471272119 4.958389711240773 4.254832623300387 4.924547453325328 0.9065784368623857 +2.831207054700429 2.1377919084791315 3.8805712859964863 4.695588606694868 1.0700830799743883 +4.106477153814516 1.9363945193707988 3.1880906286603476 1.4223839825505253 2.797673783776547 +3.385587079358509 1.0014932264014815 2.942627272784852 4.7097799367443915 2.96761386259176 +3.9867612261843903 4.20086109164963 1.7336187388247297 4.964017342908029 3.237485736440481 +3.8425600800300965 1.0429601036133063 3.3265873771807875 1.7756186937784166 3.2005099413761826 +4.921074261534763 2.8159498476225275 1.9364548681148661 4.277235123013995 3.1481424681508554 +2.8495936617952227 3.6963723314610983 2.8262445800970237 3.9395513209125395 1.3987444421860542 +3.227555766600616 1.7741310088621032 4.4639338116165135 1.0058063093076761 3.7511450716590544 +2.6592592212424933 4.247088591174011 1.732343082894872 3.7028061267239485 2.530598094347119 +4.668115876195964 1.8989543607217256 1.7355269286568697 1.7401780144025891 2.7691654214550265 +4.62159191475615 1.1288521688940065 4.46668532975782 3.092358524584773 3.7533991394124753 +2.9580792121144586 3.208635021298471 3.7187193839735473 1.6015086267163712 2.131984897732946 +1.5015059885457647 3.6844541851294688 3.5680943822943454 2.5101258513626696 2.425811254283765 +3.843822090310109 2.425310698649087 3.8290225709137786 2.8216681395774046 1.7398096213681309 +3.3661149471499128 4.68671240125051 3.1784056532105978 2.991761856048663 1.3337216886577217 +3.37640422122292 3.7753110544002357 4.424953500651794 4.905956152292198 0.6248921606490633 +4.324004694016306 4.024851900287798 3.110232089973183 3.1363840425923324 0.3002937205826415 +2.8654044855631122 1.3753721660482947 3.6071526491745076 4.484698155098837 1.7292433108636545 +4.162671195567187 4.097761512618963 2.4074346715279282 1.9657236846023425 0.4464547714060339 +3.44264701754197 4.141230653763321 4.481940654651228 1.6361533687101826 2.9302771837524086 +3.9819600197325933 3.2325471412766875 2.414201805940148 1.8777405177421445 0.9216346218163832 +2.0299048871399337 2.704191222238738 3.081651615397738 1.50964536623251 1.7105162112986552 +2.630225693832382 3.7927932208199273 1.2939744035450236 4.695938001544729 3.5951244174466392 +4.4490688777643905 3.259058406268282 2.062122834074254 2.6711365688361397 1.3367956655371869 +2.868967668749897 2.919717835645195 1.2768879763188372 1.6807239463808616 0.4070123710108047 +1.4163944097727694 4.0490073797821715 3.8647129166015786 2.759561239212105 2.8551727233038795 +1.8993341513585231 1.2534329242494255 1.1258322217816494 4.529932134669469 3.46483543795429 +1.5314823359215755 1.415835484383786 3.4172904616227333 3.9379342888775595 0.5333330939751975 +4.325919604966984 1.999218112652425 3.2347037391486113 3.030650770991506 2.3356321303134444 +3.5865885121712116 4.442353999194003 4.740492168926944 1.8533648863619936 3.0112851931542837 +2.5151345194620522 2.1037514401095634 2.179233473200629 3.324554985371053 1.2169623676260015 +3.2636101163309474 4.5366707456078466 3.579530848506712 1.972649485037563 2.0500612386168773 +2.358571732258397 2.5038764368052635 2.2643338334381915 1.4930655151384435 0.7848364644793038 +2.591998138828941 3.4001153807083004 4.134247515100571 1.3138147563715852 2.9339213389479792 +2.436993634137879 2.6248065164024927 2.6475850896576367 1.8483729870525782 0.82098335165516 +3.0943625565684187 3.6967002714619297 2.3252078838444374 2.591168647869389 0.6584419874095762 +1.2959507268512214 3.946618892437784 3.575063506741847 1.1923899875946304 3.5641513468004433 +2.6843636754414857 3.872230240063791 4.175377841867383 2.306442181613916 2.214485826894058 +1.4052441657048065 3.3542653602130894 4.79419722563477 3.938795650329765 2.128472567752936 +2.0742407505024842 2.828474375749721 4.930028040967941 4.453305713991057 0.8922625950312187 +2.5942238848609205 4.7654610465983565 3.177055507913464 4.25683480556407 2.424911162113877 +1.1592313768234042 1.6630807174739446 4.193354265228478 4.871615605837061 0.8449275733683549 +3.395402829920212 4.106603429475219 2.286470007700328 4.009483577305586 1.8640230829716822 +1.3606918716726533 3.1051093257072764 3.5109644111558542 2.5396296051621827 1.996618030389238 +2.0259929243975963 2.6783157588023303 4.7363984867941955 2.3951614707431093 2.43041474765391 +2.85769156302266 1.0046345672140733 3.9513094736727488 1.008691713163457 3.4774731507489554 +4.63184666749477 2.1441690498929575 4.4934469639614765 2.1708507632700633 3.4033796497868436 +3.28586259335256 2.1866371394055584 4.160866005854317 2.9305791778582853 1.6498188621013914 +2.405290650646547 3.701787501979886 1.9169833513177417 3.4065580364922727 1.9747751335861168 +2.080453752193779 1.6985510654781373 4.924654979759117 3.7121024362662376 1.271272328359143 +4.045112590999218 1.34200576293434 2.41995278006962 2.9868102774449627 2.761904043637578 +2.103317823347442 2.6737909949340617 2.6163518385871196 1.8016847255286201 0.9945462003341861 +2.9544314405217778 2.938229074023858 1.0141338796427624 1.3933204076404162 0.3795325278484684 +4.748512309139331 3.473427402133419 2.3013804297266534 3.3467068483548483 1.648802244526712 +1.6727832787906212 3.4347385713740195 3.3022052132869706 1.2898138739208433 2.674734632784801 +1.1411541225305624 1.8095895068053607 2.7996263201565337 4.6385011273505725 1.9565956198160903 +4.437418316591867 1.9000149977803802 2.630919980647275 4.554507385009899 3.184117476560512 +2.490728484128684 2.475570789018566 4.864842045474132 1.747982321135753 3.116896581043999 +4.869979119914287 4.99799600342539 3.897835395048198 2.2199075728343844 1.682804236690378 +2.840786028473452 2.6285413562527498 4.169903725458946 3.755404516454566 0.4656794983154507 +2.81048194514987 4.57421029021544 1.5235168480060173 2.9478532721252195 2.2670403446477105 +3.336131542182193 4.5812617999168435 4.673614143594877 2.5073238683857277 2.498632208867902 +1.064873282648513 4.531397537764728 1.2764001169976047 4.446307717116309 4.69735080706129 +4.681881687485982 4.579744526650863 4.463322442128369 1.3997197613085253 3.065304778574227 +3.4818945129492596 3.83396087553161 2.1357104645077567 3.948517280213915 1.8466779022700923 +3.476438299294232 1.9750745367945606 4.479782820416997 1.437122102223643 3.3929157657366127 +2.5667844457429214 1.5704285506360982 4.433911244412514 2.5932826970129774 2.0929974962278974 +2.044290652141765 3.9340373931718715 1.390784793011608 3.4177638577701615 2.77124283926966 +2.9639801163590693 3.0897800784117044 4.3110710756861526 4.733342792830243 0.4406121123531024 +3.970772719365831 3.4433218494771793 3.4695950584810653 4.779450582458168 1.412064415612696 +3.3662415182056598 2.2536138767925586 4.181208571845934 4.569748905232025 1.1785176532849455 +1.8764116895324943 4.802404076914348 4.687848763085261 4.968926516885125 2.9394618818242457 +1.095102076036362 2.1678405417559845 2.455025742704183 1.711968524866681 1.304952813252226 +1.3531341990461314 2.1709879964881442 3.6551292834461595 1.230982148689733 2.5583928871340524 +4.124113430213005 4.94934623037695 3.3013897413240287 3.3680526759318306 0.8279209632066028 +4.495946771178263 3.209250613992342 3.197607672202604 3.7867823506361353 1.4151727112350179 +4.260619975352226 1.862741284836238 3.048554583673659 4.310173010939458 2.7095208562488122 +3.157778965205592 2.641432216233808 2.5212850558791366 3.51584341229069 1.1206071075456288 +3.5583848614610907 1.0266589613017052 4.5820755375381665 1.427441051990228 4.044917152544185 +2.4246909612000604 3.578719614738999 3.977789004936772 1.0947391465012801 3.1054401651639987 +1.397378330214854 4.674049887773945 3.594900693001017 2.6444959645015924 3.4117218005093535 +4.904529399436291 1.1191269249370914 1.8635234864011334 1.166678740363571 3.849008248110781 +1.5311289557241148 1.0994673297303361 2.3506006438471707 3.486324371877244 1.214989771877163 +4.897494151016774 1.7057032860294812 1.3345410273288913 1.5475107673890052 3.198888093697184 +3.233109933049549 2.4769926495093495 2.930843285950648 2.9259783246260924 0.7561329342892689 +3.243454892439678 1.0098205198872834 1.6120082219834226 1.4409439248145524 2.240175328855625 +1.5852153882771578 4.684437713607945 1.5149262995558659 4.226165229733111 4.11776584549649 +1.4751032727050548 1.6458943949818945 2.754134475996788 1.12137889873566 1.6416639066891556 +1.6552064173148229 4.309227846140189 3.8280044253790555 3.9304558914231587 2.6559981264223103 +4.447648423623065 2.7893759992016385 3.7848812783098436 2.2053743500224967 2.2901330900417656 +3.0887757863004577 1.9360411945648086 4.0542426577789605 2.4220755095126503 1.9981908414522707 +3.675047094341402 4.859109884024011 1.9751499555229834 1.4073873690057161 1.3131485234198526 +3.327070111230625 2.5358906038121414 1.1722460274159423 2.470211849463914 1.5200921972576602 +3.3771197876708596 3.507137549797484 4.302789693565816 3.222852046051351 1.0877361541235508 +2.3286629474590526 1.2776516090885646 3.517440086206998 2.3531897796729826 1.5684717433374036 +1.6462944723126367 4.230413101194507 1.2965390600773685 2.1935436320032484 2.7353768095438427 +2.1357315573044136 2.9882519860757237 1.2465819257400779 2.39027742930558 1.426474846027215 +2.3136725791136294 4.223261258186836 3.9407872008622187 4.325988144427543 1.9480525378357154 +2.7668553039758046 2.1615678593764196 1.083324049580448 1.2838492932530414 0.6376388193480746 +3.6121213393919493 2.0963556500154126 2.3105799628440304 1.8825080104771814 1.5750527678443962 +4.18551241027764 1.8521245419229704 3.1134348766567337 2.4389202941836636 2.4289233965182127 +4.229608628091949 1.4140195002490459 4.5724105529457155 2.7041727299119906 3.379031621669284 +2.416438747215807 2.881162024855123 2.35133831145089 2.6538805586742837 0.5545264070671567 +2.914745926971675 1.5953566553144043 1.9387373209793242 3.705879561335927 2.2053525223457715 +1.258459023895477 3.5574011053499413 3.339224615737706 1.4517748978757035 2.97449174336382 +2.9142617018979373 1.2901258483213804 2.758149708242711 4.695987330903852 2.5284445658692682 +3.0975538819728734 4.172872918413155 2.621080286482338 4.279349378876766 1.9764026444329348 +1.520030622520733 4.48247653407582 3.552850916893595 3.56196104679273 2.962459919282661 +2.7330992352482086 1.487104647231317 2.95522892158481 4.65222113170749 2.105299283851216 +1.2985883854593396 4.309768997231581 4.0962334386611605 1.3038944545054 4.106624608988393 +3.140207071565814 2.951547894538123 4.137599314834352 3.0770355505871874 1.0772129701739026 +2.083967951774929 4.183845465918021 4.198693591320811 3.6143246138441762 2.1796726075814368 +1.2818744959143769 1.3723931281578352 2.591756638186218 3.970580237353478 1.3817916414582136 +2.441834103994244 4.572918488877219 3.006947685361547 4.794506153352894 2.7815258280267003 +2.3780999341179934 3.1930286766409637 2.715039919715029 4.138964322396674 1.640630842067267 +1.7256647569075647 1.8821859735680655 2.694314341906274 3.664304556940052 0.9825374845399836 +2.4385619102081755 2.9476618433279316 2.196598776949987 2.275647080653262 0.5152003263012412 +3.467495924619977 3.967715067010425 3.3824868418302416 3.6790486863495544 0.5815222420841116 +2.4491161559987713 3.3667815043233396 3.8365009668491687 1.0220199208737624 2.9603062763285943 +3.5946799034308534 1.7589221405134046 1.9784524660132918 1.6325442911350136 1.8680629083516695 +3.5341416224615916 1.4913274920234252 3.6725448431661496 4.953414351581467 2.4111649195162776 +1.6898979772036067 2.981212041928868 2.0314751793935946 2.2779246186052475 1.3146213674838145 +2.95501483310328 1.6986390423331357 1.4201905884309314 4.219257081201535 3.0681025665033483 +2.083116241712577 4.586036878384299 2.3913348585129253 1.970360133485026 2.538076325209605 +2.5383992112279383 4.301118184827882 2.7874268272728258 4.968809712077154 2.804569391191184 +4.941752263256342 2.853162419527316 4.96432077382398 2.9233743068570477 2.9202174604561284 +3.463814613313932 1.1428216726831377 2.6400703792848685 1.1875609633156792 2.738026996568357 +3.501669153344256 2.440792700564325 2.5341761852682545 4.143950038122455 1.9279083757782647 +4.2359079264473785 2.6624227106414255 2.6521245511609317 2.008439143635394 1.7000548897671581 +3.2611770729799376 2.9947818987235575 1.965710399918707 1.8190536850897572 0.3040963348537879 +4.593253357254783 2.2224343701810296 3.840267784752933 2.93870692455103 2.5364531641876247 +4.180376225531538 3.7890976487030907 3.3624449256748563 2.4836305869529873 0.9619841821090673 +3.043602234920587 1.9034895004743877 1.6550549784694795 1.5573698812095023 1.1442899219485771 +2.3094358333465648 2.8871364870869174 4.923958058153515 3.075779644536525 1.9363629551021275 +4.963292211389186 4.66551723077221 3.4766515479590554 1.5315228189055041 1.9677895496396265 +2.629820266846891 4.73567145361765 3.490209445311142 4.956380942343115 2.5659828681292463 +1.3975233281640254 1.062326965443551 1.217004217056933 4.493308798532331 3.2934067942144223 +2.9664436550222533 3.190141595770979 4.572395147335394 4.69237677145867 0.2538431776165737 +4.96837306735672 3.082230432064479 1.417472831302251 2.5025850735514985 2.1760061164772377 +2.288387105291276 3.901023662687074 2.9696000821990944 1.7678513118766968 2.0111680121811717 +4.074147718093775 3.9526025590208365 4.348188476863313 2.7040539909164707 1.6486210703414392 +3.468482135410519 4.08041429010717 1.9593327853426774 3.195818242703968 1.379622139651885 +1.8625152849060256 4.230766039030494 1.3720244448369265 1.3859639273380844 2.3682917775442105 +2.3777415498295746 3.2302035629329477 2.7110531310476205 2.6284141854299743 0.8564582179634052 +3.871324781659015 1.7476535744881683 3.644823881177801 1.0135440784763534 3.3813625650425374 +2.0004267754654643 2.087013677980687 2.864655296842785 4.289992754012485 1.4279650410630393 +3.711431831480347 4.961829996352758 1.1167705948126603 1.0128044744577855 1.2547129252932474 +4.57587053666836 1.212444030715841 2.7258684622513467 3.856547183395808 3.548390090082098 +1.377107529754059 4.137781789270994 2.899132395545741 1.9293754533914216 2.92604697399339 +3.388637341239757 2.5370237955925368 3.2230249596496243 1.732468116783724 1.716684401089551 +4.754330982928152 4.964959637618641 2.8231052370647713 2.4806811129282473 0.40201829680673856 +1.441233212435724 4.6711067150198495 1.8476914839499634 3.622186459129145 3.685229336097173 +1.0493046525920384 2.783592684501688 3.176528725136264 4.419558971794862 2.1337476823029426 +2.03271768154446 3.8358730093546027 3.4522045523684297 3.332012751756628 1.8071566631436276 +4.063708709152172 1.2734358410502402 4.229188920216931 2.7342391287854935 3.1655169494676025 +3.6440970923979634 2.7336963479162306 1.7309168675184843 4.982753434140184 3.3768728983441023 +2.0084872415606045 1.3124376281300756 4.101868041952274 4.899377130605156 1.0585394706106803 +2.3466046707169745 4.219605115898473 3.254147491515748 1.9657527878505299 2.273343700385552 +4.502425995078058 4.917863556361923 4.741855423733508 1.7265195525048802 3.0438197685874226 +3.836279890678881 3.8888097896533425 2.6772376357535053 2.314516871553707 0.3665047654096096 +3.960356961323408 2.2811957243736347 2.0956039759150333 2.7670400522069403 1.8084271796843145 +1.4466490553147664 4.9121562015996485 1.8196567561073458 4.223079788225208 4.2173667201544385 +1.5546219381974633 1.4465918194935283 3.952463129973528 3.1267666055483967 0.8327336050592219 +2.190768279380282 1.7925400569467116 4.013904607243537 1.0929394716541054 2.9479862687047222 +4.4389654756611545 2.0103342981978596 2.2546774056168046 3.425726408292584 2.696220533045227 +3.2814255730150435 2.591930920281932 1.995350823941496 4.960947428474418 3.0446947461058795 +4.032823884796047 3.3086089634146454 3.226693211581121 4.458339714777157 1.4287898240071883 +2.988434231520546 2.46363077421975 1.208853335955343 1.802830991528872 0.7926084305099805 +2.2511299828998332 3.302785339884084 4.96108662078774 1.142866000211129 3.960402466577117 +4.818590104725974 3.238832364608439 3.9902852751836737 3.7873516888769414 1.5927386973111985 +3.373886340221652 3.886105532494637 2.695399675587644 1.1070058402556548 1.6689408249106545 +1.0009899153982538 3.521874051647538 4.607347518840093 4.33089850956694 2.535997019541113 +4.239276559874996 3.6572249978642666 4.939559935786756 3.8980433627856987 1.1931222873934575 +2.2914185337125414 1.9707602505910202 2.0823897881781015 4.308498536958203 2.249084679581841 +3.7371218384856357 3.1243346999818002 1.5564821427059403 1.8608853993462504 0.684229069660845 +1.6017414649295718 3.0029332475798185 4.6913100312763465 2.644678315921068 2.480330580802621 +4.885828975801852 3.5399590449553884 2.4168141390772853 2.3654822843233534 1.3468484807390708 +4.94348483903427 1.6429758255367188 2.2633743105390787 1.870302058541773 3.3238329596218903 +2.856869286204989 2.145485911154531 3.364067059832309 2.7091971095518614 0.9669131078222576 +3.856965168076624 1.6013652141265275 4.745484000318873 2.627830283551703 3.0938953467105974 +1.316022415500981 3.8869111113364543 1.7361100754171903 3.2423125578215926 2.9796165196843374 +2.3287384525598216 1.2389976516644654 4.743241412473477 3.5297027619736254 1.6310153492205564 +3.1591202859819054 4.211969360256239 3.5214933781241013 2.4063135154537703 1.533661403082747 +3.4694434586191725 4.415512094104317 3.792081877495107 1.8733551514962792 2.139289160471511 +1.6846016661227852 1.5805565456343937 4.442099624001822 1.55212385712478 2.8918480804208904 +2.450876676317557 4.238535624713705 2.750684035966298 4.387410758531375 2.423757182586457 +4.461788900333045 3.5278417421619226 1.5159543723693658 3.503987463170123 2.1964819289888835 +4.397540427308831 3.5011109326864855 1.1843098113078558 2.7180172419020114 1.7764696230131831 +4.416988749771464 3.035130227722354 3.803051631974012 4.257725934706612 1.4547376727524204 +2.9806292885996744 1.3474995456895642 3.9420709849559143 2.3609935992933924 2.273085668564007 +2.1348103010909654 3.6046583128633234 3.025706060471417 4.212699905328179 1.8892875814547114 +2.212825533931003 1.9430899587146055 2.388441574004803 1.6848128315327942 0.7535586823665834 +4.41464155898202 1.475404026743425 3.082552146637684 3.9372792915956114 3.0609926107797056 +1.8708300732351066 1.3230195946756473 1.6204918649220548 3.4049041036998138 1.8666074462294953 +3.4494584050684347 2.2737312311684574 3.925140817113029 2.3702518809416357 1.9493624576448154 +4.796968782902835 3.690008173023699 2.2900690472142773 3.0334403393109426 1.3334026660155789 +2.3651720939863097 1.9853434703625172 4.906781637614596 2.5205169435234938 2.4163048180206173 +4.31066628413435 1.2712385322437352 1.1260833384639795 1.99478732163431 3.1611339214495224 +2.9550323552732185 4.846471588229548 4.3393933624385514 3.216065694652111 2.199865318873169 +3.914025824829657 4.9058950107224675 1.0568507856792602 2.2702437174295205 1.5672035249913008 +4.64276951125697 1.1564634981180486 2.290555972811795 2.3302336815774147 3.4865317921713386 +4.464735671512889 4.693417020778899 2.6604988748879514 1.6212584027548802 1.064103340104471 +3.413700145992452 1.508326697379664 2.4245024912982447 4.06082083647633 2.5115703664131996 +3.762787928045809 1.9821883711578292 1.508589868816229 3.029818094596271 2.3419372529808657 +3.146912994220733 4.819095385253024 3.0298859201882906 4.260884627385554 2.076427645259956 +3.9283666953647725 4.117662482413982 1.1540641825451958 3.484159303237729 2.337771624104829 +3.405748858821021 4.277188624160192 3.983336592727113 1.6498218657083301 2.4909231714021076 +3.5768178935954875 2.9037498523947196 2.951246855611115 3.8371091997765125 1.1125523272619817 +4.7411524366044695 3.070328674596358 2.320021216717183 2.069747343561797 1.6894641325802502 +2.7323096658924535 4.153477911246582 4.65167612831122 3.8352206226790115 1.6389993210126954 +2.7689581273143693 2.229167851432265 3.8413227921074924 4.132912597985243 0.6135129638636029 +3.937621283678358 1.7497041640096773 1.21396385434707 1.6372640692958695 2.2284892628224613 +4.029892167366185 3.3198558068777526 1.8226588096648433 4.735250744314881 2.997889826361887 +3.3826261220956892 2.5442033100415213 4.9590776361033075 1.3277218110980233 3.726888506458521 +3.491747769361971 1.9430874390137256 4.980323138917662 4.630625556595563 1.5876514787182539 +2.1844749505975414 4.384432505066936 3.7063810493657128 2.3649316675849557 2.5766838543653225 +4.955441142432962 2.3348815866679073 2.8806172834664703 1.6485527023690594 2.895740927173265 +3.115291084812385 3.2615359399612336 1.2060466379359882 4.148084324253788 2.9456702641965378 +2.9621295470798805 4.717244269371478 1.1364001496028728 3.1462825044383598 2.6683430755215407 +2.589343451630673 1.5565695120150251 1.7326691994365442 4.826406142542514 3.261568684465789 +4.9066413876881825 2.856691274468366 3.0204919964787673 2.999675488601281 2.0500558025795668 +1.6298946377213697 2.5724100735851265 4.613029196408764 1.3031546007172876 3.441453934900954 +3.095149247379899 4.567740815076892 3.0929073186827103 2.1406885456080817 1.7536380804054292 +2.9072870059588665 4.826962539038639 1.4001137970697752 3.9774454208978556 3.213688294077289 +3.272140059751139 2.42167794824677 1.845354575976045 3.0269216322499695 1.4558112898230653 +3.036082025408384 2.272406372760715 1.6232234370317293 3.410217374572937 1.9433342057546026 +1.2380561018090304 4.814368589971979 3.5784979808345367 3.162078225028858 3.6004744723460433 +1.1661948113518292 4.949894471586196 4.865856291823972 3.8607099755748515 3.9149332351812642 +1.088698487197051 2.282266866845005 4.738687834084576 3.750784560375722 1.549373536336578 +3.194472263083384 1.5198686077188355 3.4117832387684524 4.970810219158511 2.2879821957664905 +1.6099959232850192 1.3703780872189282 1.8184875924733146 1.7223730002775217 0.25817575833908113 +4.2173920423781315 4.838175421582951 2.2308367414940182 4.406094975696329 2.2621053002373492 +1.5729236439245629 4.223362248996176 4.773067264651465 1.1716042221617613 4.47161725169688 +4.833467433204969 3.017296322905047 3.2819733961219932 2.7378021076048555 1.8959430089363063 +1.057727218285236 2.9543007294590655 4.5779426392286275 4.7248330040132664 1.9022533644477522 +4.49811078086875 1.293573421563325 3.5503425345341095 3.7750914173040275 3.2124090255586246 +1.1680846287780602 3.908342656049436 1.6093717399334149 3.34212439779631 3.2421359979735795 +4.759912623589022 1.9795178557277047 2.407272589056615 1.8549039170752581 2.8347321240175476 +1.564865775510048 2.701013323525061 2.567223868123858 4.5214648958228185 2.2605064134397885 +2.8812269078477897 2.722380473565945 4.114304237999938 4.388503110618769 0.3168867485861387 +4.069459494894344 2.9668701180883192 2.1776159175074437 1.4837984075650623 1.3027225610037407 +3.849276053720591 1.5151570844064017 1.7460227373701218 2.410181850374496 2.426771248037006 +1.6100194774472842 4.267799484340844 1.070580269458587 4.330041967416884 4.205696746735351 +1.7296900956297145 1.2865774729139154 3.5501667755501125 3.9748881582501223 0.6137890918977644 +4.385989794432934 3.1951015130012084 1.5471321578827597 2.5286507355872434 1.5432412699349514 +4.235981408986134 1.8652984072025918 1.0105499488295036 3.9966418131274555 3.8127263889468708 +4.528303778646967 1.8665000747387777 3.9409290507137844 2.3439006851351487 3.104142161467822 +3.3521568215466924 4.1431919141467155 1.5401354829918157 2.5807978728818424 1.3071781544442782 +2.069381441473972 4.564427517935869 4.970976111398361 2.421472507703869 3.567243130054231 +1.9135537085903773 1.768696999236541 1.7252695846970796 1.4148024199911458 0.3425979080574826 +3.6460271368618624 4.883583389034467 2.3454124129903473 4.923928771052589 2.8601209915117347 +1.4584961577449782 3.9540100042930435 4.781791094938655 4.5320830776889505 2.507975967227736 +4.800110801203443 4.251380343144927 1.8471861135917047 2.4589441337907827 0.8217986315874496 +2.541886789288737 3.851231613016902 1.880235375602084 3.7939810556450633 2.3187941683786653 +2.0811323097005885 2.8572332185231555 4.243860200202112 1.300288549303053 3.0441660080639212 +3.7858966291547325 1.3393324279781402 4.115987502754647 4.472402123590966 2.4723890819255683 +4.954592174826354 2.429042601534106 1.1106445275710124 2.103873088647488 2.7138355922374338 +4.950858233014143 3.3425476006046635 3.510818010625613 4.513730892775873 1.895388440268728 +2.5331392493958322 4.190513260867664 2.127643482093012 2.3247173799516587 1.6690496502858836 +1.3464543728240779 1.9063040735366266 2.706542622374038 4.100352623007792 1.5020446082771963 +1.680460431956325 2.177257474103351 1.929567256020063 2.7199689564881644 0.9335642180315717 +1.0726924774023683 3.1980978502944746 1.1593800967530163 1.5512170489408392 2.1612228474219117 +2.3153537925505168 1.2927928484440971 4.940404971873701 2.412217110789319 2.7271532309986237 +1.035370020705206 4.2598007946693865 1.1421795744798984 3.5994927461466757 4.054052520593965 +3.28027422950511 3.7488661669840746 4.093067242080106 4.598999875667182 0.689598603245863 +3.218809707634467 4.922362501299663 2.959484347116661 2.8663276333050764 1.7060979731928254 +3.413543963003767 2.1431273952563 3.963288575302918 4.393481677613574 1.3412771379856294 +1.1694434906208127 1.1472694058554254 2.0189807680891603 1.8895332480366758 0.13133297561131005 +2.921110031939842 4.562068716795844 3.237389122033587 2.318146864315191 1.8808912073215596 +4.877573120440779 3.5107752036891755 3.6504833198633415 3.1646825667608653 1.450565033685652 +3.701591447017394 1.5061267609818918 4.607388257376369 4.763639949773079 2.201017896112115 +1.962083995750473 4.877339634695174 1.9364669735978928 3.9159526527969346 3.5237875921447035 +4.268492945426827 1.7653370174113308 3.542910393967698 4.21501070113653 2.591815661434192 +2.890970997005097 2.595712278391554 4.0973315673022075 4.447590054827925 0.45810339335254296 +3.621370244734365 1.1089149434740944 1.5060577188608142 3.5260530184328327 3.2237885555854757 +4.744426578792249 2.4059908555577203 3.2800029093737746 3.937952424476519 2.4292342818516555 +1.8015794146597348 3.3413064724543173 4.537555170620733 1.3376351760734035 3.5510910131970066 +3.4896044752351005 1.2920675368035273 4.281235650793297 2.683445107412372 2.7170026161725946 +4.055635982785654 1.055363468280886 2.798750832287906 4.429224371744551 3.4146858016750303 +4.598061117317921 1.5725551651860479 2.84106543219819 2.1462629935761606 3.104261054599067 +3.8739510850435894 3.3408088957158593 4.0012051805018505 2.6607079107522758 1.442627299148061 +4.65004813335708 1.8941258567527512 2.630006555717821 3.844132143933594 3.0115126661935663 +4.738584294321 1.4669893581549052 4.191314301653392 4.377471481101377 3.276886925392401 +3.70978616286488 3.27574787270742 4.310307743152443 4.604208009398757 0.5241818423242701 +2.1048774742590974 1.3173575876995214 1.196623575830873 1.4499342069753367 0.8272568208105715 +4.77216544877632 1.4934383228358907 1.8491638208633558 1.7295373803607155 3.280908723455275 +3.8764363431771596 2.5443130537827843 1.5484562944859173 3.8129232636961574 2.6272348796388765 +1.3416402467988484 4.398380865392655 2.3000455205158294 4.267147003071571 3.6349898833468908 +4.058073892845714 4.660614288545737 2.105782872802593 4.883105719527402 2.841931935038194 +2.2816138174750233 1.4307137803024794 1.2051395917551964 1.1878770007514348 0.8510751261248326 +2.44384398066432 2.9527843658968136 2.6146486403245874 3.8733145278903502 1.3576671654872958 +2.902939832034296 3.410750020948573 2.3583510233021987 2.7409011791312605 0.6357796864401952 +1.8022976611674277 3.412438291209909 1.2353399669024796 2.4834749008361103 2.03725149694855 +4.558773825809272 2.691996068050551 1.7151809859662186 3.9717579711615985 2.9286513768245186 +3.7315204136927416 1.6371117061950522 3.117417786272497 1.6180137007222304 2.5758028740194723 +2.7341478367988037 4.324836360624945 1.3240956032800453 4.302372299576427 3.3764511042712106 +3.895308612879895 3.509147291058855 3.39193492701335 1.9338065067506314 1.508396186831704 +1.301865520917623 3.2758354010087123 2.371977561942307 2.576020551467591 1.984487497839491 +3.437192608701422 4.408805631602638 3.215843657916945 2.0579681441685795 1.511524915973693 +3.808651451265566 1.4532913885778247 2.5605589364812698 3.245096053158126 2.4528171739884455 +3.963775250985435 1.482198987778752 1.964978839068869 1.7431033215842362 2.4914753651942694 +2.5442398160925452 2.401295214431003 3.4266343532551438 2.892072270887344 0.5533441777497757 +2.242146332282836 1.1412145255616237 2.9988392441204192 1.7185436047149634 1.688551973535626 +4.967067094875343 3.995157097231916 1.7541847284009875 3.8160523572444593 2.279453259532173 +3.3488021870155316 2.5196443840898413 2.326859400555653 3.2557299291116246 1.2451116901597254 +2.397097176776667 1.3324970672850642 1.8761142327042193 3.881015943008546 2.270022964886203 +2.9331627722738505 1.4922649404776283 2.6916235104032458 1.495386951774928 1.8727435665018248 +1.7203804648764884 4.452354895217153 2.691659607492535 4.086487044410198 3.0674464733412217 +3.372280219035227 2.460491401947714 1.963115107807048 3.9057123986269238 2.145936411282163 +3.0033472773903522 2.2596417361835788 2.7840348523014917 1.2927329759252988 1.666457085707524 +2.760721617255764 3.8794926910231498 2.285762328269034 4.68966731122555 2.6514916335115597 +1.8373017257937545 4.2476494727270975 2.4798762216985963 1.3221414859768577 2.6739719481406916 +2.1343465676104842 4.361606705243753 1.7312674135134118 1.5435082005957903 2.23516022752858 +2.61037703163027 1.3537264150014585 4.4188425106925155 4.647726154585415 1.277324741291448 +4.169880222981124 1.8715093313295 3.345091800891713 3.5338520519401873 2.3061091014883415 +3.3720919660606103 1.6574916343933954 3.4344881196783965 3.599983276065152 1.7225687052018563 +3.3230536493355185 1.711376460337433 1.0875561352190077 1.814702662305756 1.7681191796344187 +2.3022334158380042 3.6057916419197378 4.630595434715634 3.226060185428041 1.916241977224358 +1.987280519924322 2.0145934642590433 2.5615214878650696 1.2483769757424699 1.3134285312288339 +3.6674336015061817 1.6661730163636226 3.9539522323327243 3.3168231105940973 2.1002327126803286 +3.290027004014917 2.866587350080096 4.43045294105486 1.864164672091039 2.600987623950903 +2.716892239545284 1.746319446570146 3.4723038745076034 1.3059603412952905 2.3738272579011235 +3.048904335898201 4.960739887884713 3.7590980203415727 3.240317210490233 1.9809716571696783 +3.7960645487710702 2.6500337786690107 4.992820046715871 2.2235864169039496 2.9970054091546166 +4.746664951721444 2.308989241459034 1.8104406796249068 3.553286872948755 2.9966273912494983 +1.3694983166802217 2.943240428206897 3.165405441211808 1.1515758877464881 2.5558117505017397 +4.666530306260842 4.941038548088036 3.7105475110613475 4.165873720948859 0.5316735203502084 +2.755758420258893 3.5239224624537884 3.542435635831689 2.3368881010271676 1.429482722663852 +4.927801381615044 3.0057733343752604 2.3176600097486 3.473724177654115 2.242916889831508 +2.373496954519648 4.797969502330251 2.85106824348065 2.297790281156931 2.4868018897130355 +1.2760668885906417 1.6911611817577779 1.6508069257315223 2.7791872914438476 1.2023084138210982 +3.53707995899688 1.025817749262087 1.8543986778068815 1.7424738223795342 2.5137551709155184 +1.856495454516784 1.2338900083296451 1.6972915779197857 3.6360793610294215 2.0363044000239903 +4.863093692037002 3.5389447151132694 3.093601097887333 3.8458668859168337 1.5229163893424398 +2.228591427378406 4.8486521335794714 4.679403987166082 3.998703074252312 2.7070411590924257 +2.9127171158706457 4.279521169889733 3.984820456979139 2.4761041549009706 2.0357745951454045 +3.748162181031631 3.885803665536522 3.691116172633567 1.3199917851989222 2.375116005365639 +3.2808898634356627 3.4224143982119672 2.710954065385222 2.2644478444418397 0.4683983339901949 +3.11655274418992 1.7551403269606256 1.376845405979974 4.472747046231058 3.3820187367747483 +3.3026649194719946 3.994083690588134 3.1570712680796444 2.7715055200998933 0.7916570362644025 +4.082291271964907 3.530719706448875 3.378184192339677 1.8905478163074 1.586597989151711 +3.0356720866143503 3.9700003725018322 1.9616546543077957 4.503877220772466 2.7084801869778663 +4.206325103296294 4.149559132780208 4.779068463012003 1.7579698421886647 3.0216318856123605 +3.1094856297503592 2.8523544069837667 3.569219599436776 4.462981802951553 0.930014699966099 +3.2462923994244433 1.1218566051710424 3.814066679072384 1.909451245885411 2.853206510619075 +1.6698479074426174 1.0031942633656228 2.7748415081274502 2.763561092521695 0.6667490749430214 +1.0620301314840064 1.4602170256914362 2.4033375656678118 4.369119645673872 2.005704860838581 +2.8346858160366026 3.811313682072083 2.9589862532644498 4.949060853862687 2.2167992477135243 +4.613273231613612 3.268340876508745 4.42270689326559 4.060983783585062 1.3927263363219913 +3.767203219937844 3.618871374951512 3.470803694198762 4.707854975210714 1.2459126005022827 +3.5808601909520497 4.5136884286263586 3.536175363118187 1.99114604706347 1.8047947552204 +4.363941342542155 3.895754197841949 3.1425447856312387 3.8526381368134195 0.8505479233151249 +1.5551960135437617 4.845187741484279 4.823948013119885 4.600685243238223 3.297558465642765 +2.663632541456652 2.242445798980658 2.078582572477077 3.50965399401797 1.4917652917227333 +2.144525719639868 1.5590069021664998 3.8612017640351843 2.244430684090783 1.7195292991281064 +2.49057403631362 4.210994929916863 1.8757002554120672 4.101801615667665 2.8134276811886254 +4.8402943104653 2.8618107953113583 4.519036294205318 4.126461443964683 2.017055287486526 +2.1910801856794566 1.9913963748011385 3.9907414573744595 3.5780154705288942 0.45849358179208316 +3.611331079100464 2.766638571706984 2.856599278653972 2.652559343834524 0.8689866092453948 +2.3875468972172444 3.032701302670919 4.146682099131871 1.9903685606338177 2.2507581574185793 +4.5744810325389365 1.5231033949042403 1.654152265723284 4.778364883789017 4.367105445296488 +4.897466154828374 3.4184965880360103 4.205101508257362 2.3476595817964463 2.374329692707571 +4.0727594031925705 2.459037044359691 2.373188987473116 2.477198375610459 1.6170707480558348 +2.1543846036615757 1.8515567921043528 3.9253361144477448 4.749820094953526 0.8783384982813822 +1.8758039768628487 2.514044080393239 2.274785894368814 4.822266565113512 2.6262155657090185 +1.1725410348298428 2.3517757647617006 4.042953736186872 2.969407961118928 1.5947084622098469 +1.8952512162888673 4.95961128478409 4.390355076737283 2.650116493760063 3.524022269377793 +2.8579652617105897 3.781473848477598 3.2798803462983375 3.682249239482387 1.0073573526979163 +1.8522704758936048 3.6059429565824868 1.7956914507122463 1.5948530254597202 1.7651354742861558 +4.759315204565921 3.561178681149745 2.6772758569341044 3.702755471598996 1.5770667610589777 +2.9359832063081566 3.9848937560178155 4.352410555805061 3.6335273946154123 1.2716156419037326 +4.5879626935484055 2.0802341978360857 2.6120448452511678 1.7110462454494666 2.6646764691144402 +3.7892031504088917 2.9218342495414946 3.3226336493103052 2.53568246737811 1.1711622316896988 +3.287155751564795 1.6645964127733501 4.563813709462329 1.07236794327841 3.850050953702164 +2.6811851749911186 1.1528898771390805 4.4619161979562225 4.245931054705351 1.5434818105639436 +2.4694250868629566 3.635640258891214 3.6968701293072574 1.9353990607952558 2.112543053448547 +1.5381191932535798 2.12073510763435 2.667315418084758 3.9080442364006833 1.3707112403016815 +2.778431813124129 1.084607285025935 3.608071429164732 2.1537363456833005 2.232516980233748 +2.235797548770195 3.3460173437430885 3.0072218396632886 4.819330178409233 2.1251646111542137 +3.9973600454652947 3.783192622000603 4.159893468857225 4.066369864141565 0.23369713287183377 +4.0224364281874365 2.3258471181498606 1.5168636242126627 4.199388534041807 3.174012473004421 +1.3187124611970247 2.9863372280983977 3.037226375321802 1.6882256578927248 2.1449417938039774 +2.878175495598572 3.566372295982182 2.872446250834864 4.71041579250732 1.962586780800761 +2.0568876473756936 4.374223300158794 3.437844250043052 3.2327390725239358 2.3263947776559384 +2.085187474586955 3.5213043895921974 1.8997013083951622 1.200788261753595 1.5971572371967553 +2.1257222561295372 3.164783980695048 4.22507066885409 3.888500373906478 1.0922128139232647 +3.01207815366768 4.67728949118629 4.929077126025358 4.164294080140312 1.832436057785844 +3.059692726610098 4.745352236795084 1.8560724825669013 2.1940831509934844 1.7192147033594363 +3.3755239227275595 4.5196748038398145 3.8767750992676144 1.6697785159578906 2.4859435145414595 +3.2667649403047827 1.3673004747662372 1.9381892999909103 1.6468352798415986 1.921679583307477 +4.410798795295053 1.6939675455477263 3.4566198665808465 2.3931817468488688 2.917545659300417 +1.2178030113475393 3.0010866049910754 2.6587546695440083 4.202752239357769 2.358819380738806 +2.154811008174461 2.3378583004042044 4.91527706730839 1.141947653440813 3.7777666916778845 +2.2672364279083665 4.910166309146792 3.714438213896549 2.264182395486058 3.0146841121378603 +2.7153001035454896 3.004442325434766 4.63186043591705 2.775161216015775 1.8790782893911233 +2.625657876569849 2.865822956708104 3.0951125025520305 1.0340779736412054 2.0749801432978776 +4.215512068169806 2.181230185932813 3.274424571872683 3.5437547623109134 2.052033510418185 +4.907225772980967 4.985882179558324 1.637834187782321 4.332611718004021 2.6959252155212736 +4.136664581984923 3.016719358325096 3.6050547898065686 1.3043197477657857 2.5588393927077298 +4.558074935279273 1.1181772757812127 3.782604171677699 1.0524868337377216 4.39163256508792 +3.8519435988239588 1.11749335703521 4.084649521038671 1.6128697542222836 3.6860430464742837 +4.982974507979941 2.933486205793186 4.52831487551458 1.3074989772350505 3.8175983748176705 +1.0804899143022455 3.4471558115002954 1.2560261850702066 1.8735194080287556 2.4458956129319964 +4.514004683609256 1.0730158003455048 1.1878951186360278 4.823466423140259 5.005774985442246 +3.578944588243654 4.912492106180397 3.223727766455956 2.3018806704468746 1.6211573184042394 +2.621021504067456 4.987978603138931 2.8896390260089704 1.9234901782361504 2.5565464018667057 +4.754580068410557 4.143405217860284 3.107271227156315 1.541812853592226 1.6805340274171991 +3.398998827875551 2.3875065970654084 2.045023426715103 3.1090585499661927 1.468089669094242 +3.0901003651921735 4.25640839231618 2.8571417115117947 3.251642697816613 1.2312211183736927 +1.3010108486935494 3.515455286181947 2.902529496901775 1.7642644529250426 2.489861738543459 +3.951649115471901 2.5265506674869673 3.4810773749572235 3.572847617794705 1.428050196568565 +2.0158139600415885 3.870694297054082 4.718099485404121 2.3962602465341742 2.97178709126205 +3.34156179400428 4.168197036741111 1.1957671437726591 2.609509726712331 1.6376794299714195 +3.5329309341137773 3.475000083777771 2.2286366617736966 4.874152065902329 2.6461496059184815 +2.0813031841264724 1.0827953751060564 1.1568145681403075 3.122420830258808 2.2046827033281264 +4.338719160440515 1.809100139341424 2.574753423146835 3.331758748412419 2.640460083846521 +2.09115521463334 2.8338887459622604 2.6964598823657795 1.8267829462105722 1.143674373167746 +4.090299499872594 1.536085130419652 3.3397368571119754 1.2844996453915498 3.2784159348014765 +2.211542265225078 1.4686289547766638 4.150228547778337 3.7332396566519717 0.8519389192684048 +1.9452417477380357 4.891471885367851 2.034956818220452 1.5570947226042628 2.9847318483081353 +2.2954985143385196 4.572772162034941 4.869893440258149 3.362793909054341 2.730810184441112 +4.856317046850236 2.7174871932782367 2.9034913199266836 2.9001450204190045 2.1388324712915727 +4.741614491997902 2.7862268031133297 1.078479080359911 4.597266952703251 4.025594254814054 +1.1996592415795098 2.86928830924264 3.0558679452170865 4.610776170839008 2.281534749613156 +2.464167356176632 1.4494083027195308 4.716224201318082 4.237389940980515 1.1220597958425282 +4.360147395946394 2.6177695706857946 1.5712503956224606 2.694537047665255 2.0730782398687624 +4.43476556499289 1.2659553045430054 2.4889772526619733 4.325888934397861 3.6627316299764896 +3.9516749351350793 2.580115379229441 3.9385513347894774 4.545637280224694 1.499909650792688 +2.6420696070001988 1.2317359485277617 2.103930576916427 4.207303654592103 2.5324334802934296 +2.297362551763055 3.7987698231939717 1.133785690223791 4.326550862948548 3.528168539464885 +4.494984708608255 2.110160103423082 2.483697802214564 1.1083629110032414 2.7529864620952784 +3.4564892161074114 2.1961171363524503 2.7562001142481543 4.486434812268703 2.1406190435619568 +3.57034015516802 1.6894655957982003 1.745389291759004 2.789664847730385 2.1513252996429784 +1.9813865510236592 2.9011835850497216 3.3697013280289325 4.343482512691446 1.339506020668018 +3.1510257280332583 1.2736376692313494 4.050890665076886 3.8698829871391203 1.8860937682958452 +4.325917266031868 4.541809202408634 2.268718470878302 3.1985587894153844 0.9545744319693736 +2.625446138690514 1.738763212342965 2.906427675742762 4.09787050718648 1.4851742768021792 +1.6141157778134052 4.000797772007961 3.4242068992078187 2.093031796263643 2.7328150497446657 +1.3229273489379385 1.705345563248804 4.833893436854633 2.075564092250482 2.78471263579226 +2.262637866890647 1.8966024589807051 1.5119404462536101 2.5122726278820458 1.0651978189262796 +2.440600722188245 2.438924332427402 2.836609339249569 1.0082537650779977 1.8283563426987877 +3.5244108870791355 3.414198982404034 4.488573639322823 3.370530861400759 1.1234617560005318 +3.443290595853253 4.957277383109526 1.910149422213855 3.1098281815665763 1.931679351659756 +2.9714101821206858 1.4855249238925228 1.4568771290913571 1.6038903610492858 1.493140278403369 +1.9155954023350033 1.0327464706941747 2.8283841104604543 3.9765952764942814 1.448382241642072 +1.04281317893303 1.2329505389900848 2.4874774341686847 2.0151985281330473 0.5091164707369862 +2.38988460583816 3.5600787657261117 3.9410315974403236 2.6153251289981454 1.7682907035624265 +4.941969772733945 3.7098462721046146 4.508859083480373 3.4843107787641676 1.602444242243681 +4.117751411309012 4.8569666036059935 2.34948821512185 3.972883093933395 1.783774098106095 +1.2028301231812417 3.8646801994880393 3.4934528360646775 4.804815511375852 2.9673418904692777 +4.66092597624712 1.8076668959441253 1.3619698445520525 2.998472240643823 3.289259410831806 +1.2316018610819381 3.14166679542582 4.899186412945815 3.6901122778689115 2.2605769877449564 +2.3466682248115327 3.4659892849494365 1.703154994563374 4.280745657932414 2.810134029464696 +2.3240980377298857 3.9839393680911535 2.7582459230127894 2.254825816437333 1.7345042651085951 +2.070036483504762 1.5819150738435916 4.1287103483941845 3.9876801056096447 0.5080866461042588 +1.6413208173019718 1.354025840076607 3.4701839970442383 1.209347859830923 2.279016990561621 +1.9290939577783033 4.489734285517001 3.647031692035245 4.117512975582623 2.6035037019774205 +3.125425177280417 3.5461360428794317 2.1504513107947623 4.107117787238121 2.0013848536626684 +3.0339763499464087 1.941599852598018 2.595329715114531 2.4319834369730673 1.104521805371812 +4.271858535052793 4.244315524956481 1.32367722340667 1.3572772748531228 0.04344629860379142 +4.107235353480707 4.989551377380167 3.4179333777453103 3.1232522249589367 0.9302249985015764 +1.6804108411507603 4.450139924678755 1.1324057164431562 4.908934914083996 4.683329155288425 +4.437020319172079 1.218514912865758 2.526803258705903 2.2572110331949573 3.2297766205233085 +4.708652787093746 4.05672280766472 1.0629656230239943 4.531268153427698 3.5290416745177526 +2.5046973337996468 3.7275627785109444 4.686121030343097 2.186841587642963 2.7824086020159675 +1.299970099123862 4.814425076862873 2.0456402326088545 4.484400425728472 4.2777266240491985 +4.224909029232153 3.9520077917843333 3.5215071241781715 1.7675119704675897 1.7750983309779655 +3.904389853518113 2.447532729411886 1.8467801392918948 3.9702530290124214 2.5751834485017007 +3.595298826567056 1.998902640598895 3.5474878493568527 4.050382268143483 1.6737334253161207 +4.334732594637551 2.724598575145065 1.1400248804250932 2.4859667368747917 2.0985926335690515 +2.2340158686383464 3.0070531997329573 2.079738699532083 1.4090941629823197 1.023401587681945 +3.3440440537929113 2.2970887479527673 4.631665318551695 4.6664967476438335 1.0475345535491563 +4.374476747799362 1.235271456505627 4.347653559982268 4.493697400793689 3.142600621193462 +4.4393704761433925 1.5399733085840883 3.251878744984973 2.2952417235972913 3.0531390937755214 +1.9754863526998596 3.286871561569248 1.9115391340695784 2.3310127359113157 1.3768403206920874 +2.7923405861676547 2.382815831359544 4.627689373881923 4.645177833771093 0.40989800076352956 +4.023586577119194 2.818596908451245 3.54408165707828 2.4330545756189372 1.6390183883448528 +1.563453965797371 3.2309415745864136 1.4283445513268416 4.333666668710631 3.349837538034408 +1.287620288814947 4.8184876045652025 3.7029632003302244 1.3811707930288506 4.225842399337169 +1.5518953500613506 4.2128520339894635 1.5845322178731491 1.3727968640653478 2.6693674032987316 +3.1934513196797223 3.4543004888336792 4.075500147680478 1.2725934260342222 2.8150183621600187 +2.4792357214737026 2.522118446803114 2.2726109609170067 1.4200925207832111 0.8535962856642697 +3.1447173211492125 1.8142081590220789 4.097909982369275 2.9983397605632907 1.7260675836092598 +1.718797042073334 4.417602442974307 1.6907974793953109 2.380974672170058 2.785658835779911 +1.7860890655733068 3.7043008067716103 1.2991415955868062 4.33299805544395 3.5894040317423097 +1.9204679413414736 2.811850500325285 1.2768585956704448 1.5769064700911888 0.9405272954066429 +3.3305228797934454 2.4184505707396893 3.525873067711126 3.9783463529209904 1.0181394652852123 +4.1619589023885 1.0932996571198368 2.7774724877859387 2.013559119053178 3.1623145318740002 +1.887947957373164 4.21847475887902 4.280731016981795 2.720537343783164 2.80456047722743 +4.013069907582706 1.6356992887350454 3.038906981723377 1.2818922512139936 2.9561785843529598 +2.7859254564058777 2.6190784365084885 1.5514354716761338 3.2033281084838316 1.6602973262606093 +4.375754731581802 2.7258123688969405 3.1341904581642828 3.2334303910585227 1.6529241859392572 +1.9614298011021578 4.3081691059144145 2.307220863832067 4.562366195300919 3.2546683134839522 +1.3902108812702725 4.904213579344806 4.72750247796918 1.6966914235037902 4.640477411855887 +3.1487275703867073 3.2659873337511334 4.044048573129349 1.8988632039412057 2.1483877956000295 +3.7771654972685655 1.211691196212536 1.4466628490648672 3.9768549052670275 3.603266605546617 +1.8984015758197952 4.520927839227628 3.9498902351617304 4.91107244329872 2.7931192669671216 +2.54856819540161 1.7662057736068921 3.4483225844827454 3.557927020568091 0.7900025895185929 +2.5970120663587326 4.839168566275157 1.6177225444188603 1.6821030295599164 2.2430806086684605 +4.496626291880866 2.9051759937031627 1.1376665463083437 3.9363109884291347 3.219491382964628 +1.470323346375289 1.3273627190679806 2.924077956775365 1.0546331174610777 1.874903130350718 +4.010288062670755 1.5004815056680259 3.7171271569469164 2.5571729034006596 2.7648911052506113 +2.053398306874273 1.9982486139788076 3.648660822178818 3.854224496876241 0.21283306364747961 +3.512165185413794 3.9659589789415004 1.5495809299024148 3.2395892094268386 1.7498733645339508 +2.74225281529931 2.1220772100212635 2.533597423942468 1.4936928501719589 1.2107928410470619 +4.298655174058363 3.20574190049695 3.496559434859302 2.514612318162561 1.4692445553806786 +1.8118350478312797 4.646089755854051 4.476894111895397 2.5931496263131173 3.403159272927274 +3.925147133101068 3.1029817700116795 1.867157959005306 4.121841150824419 2.399906702298139 +3.618417598752339 1.1201751266856732 2.749106770412626 2.3185955039781807 2.5350651667688457 +3.524438804254207 1.6993156496447215 1.4165622518730978 1.121774381168008 1.8487764651808292 +1.2195275144193198 3.31414970787002 2.754574105952352 3.596938836709214 2.2576581833659635 +4.507696192137914 4.358430321380096 1.3541776913471346 1.7622042187540528 0.43447203274875823 +3.9070440548320056 3.96579367434165 3.028604979964439 2.7294506168536965 0.30486857949077334 +4.909736873324539 4.398545909845739 3.6240958945757384 1.624589249486772 2.063817585179785 +3.6584425212500764 1.084416817268576 2.663729218158878 4.4099225034557925 3.110433943097569 +2.5009349612135954 3.7231846158683073 2.4325923214549134 4.842931402632434 2.702522655696943 +4.505327025830267 4.581673994094299 3.1533914314315115 1.9963097542826023 1.159597717812881 +1.7231666986819696 3.416212913540524 2.8891796337031783 3.081090538760026 1.7038882830533864 +3.6493510608322306 4.177853057584407 3.865783831431614 2.706372745162029 1.2741853976309168 +4.604244613284244 2.1098792342347696 2.4808471617186707 2.698366372331109 2.503831713831041 +4.063656689812774 4.3437746303803735 4.971323603074483 2.382335591837533 2.604097729148522 +2.023846210852637 4.125760019089862 1.823895085460011 4.8363793999690285 3.6732959862256105 +2.8048761017978405 2.9017325702491727 3.9372995416015115 2.3040281843462593 1.6361407341397247 +4.627306260327819 1.4347633981601509 2.0318334956050177 4.858631106398911 4.264166349847035 +3.4616105255661824 2.8888563571243187 4.706713385170736 2.9854559856208986 1.814049164982195 +2.0377589946557624 3.716372302338941 1.3181037202964796 1.6519410778653398 1.7114876622516506 +1.3669981305795802 3.1055485724865544 1.7407338675434847 2.9296115339089277 2.1061784693224546 +3.988596993373308 2.766997099016 3.545263698571593 2.7295103336796895 1.4689315349008776 +2.894272026946528 3.006529080400783 4.224700543411613 2.446600787800126 1.781639802809721 +3.7695979675948545 2.123093263690086 1.625400708794969 2.526787341134036 1.8770923261630188 +1.61906737747347 3.501013601014217 2.1285641175049594 2.5039505191750373 1.9190196817276493 +1.810565882023477 3.5226732059804204 2.5787419570537256 2.456477520829272 1.716467325966996 +1.360528848684849 2.966912367111015 1.2502587229337485 2.2032598652257858 1.8678006278725672 +4.0780190920684545 3.7844494966278535 3.0364305527684956 1.131913909953019 1.9270097950265566 +3.5838396686240013 3.4494450382964383 3.281708053769423 1.6818858350706347 1.605457270718594 +3.142009057038183 2.282414653053122 2.9469717963350006 4.315932300876141 1.6164638574233468 +2.868714307891578 1.9229097927248318 4.21263689429739 3.1708380560495915 1.4070859960515087 +2.1285824249399026 4.76212723176636 2.366072403600731 4.312198484250721 3.2745938635728087 +3.256479682772573 1.3200401409314027 4.778409432557908 1.1986908464335553 4.06991194684236 +1.5527602452607665 1.3012438939269488 2.5402861711026175 4.8901545847784025 2.3632905104069257 +1.3124391380355442 4.217783061993236 2.633211263976005 3.2390423615577393 2.967836692824416 +1.9372567833906418 4.105626125295432 3.358199777827342 4.026366337587259 2.2689804217961016 +1.7176472574499169 2.6539998193662435 4.171985243024099 1.4760224091864673 2.853939684303279 +1.5473303050050906 2.2340548358878403 3.005778545445244 1.4438541175366817 1.7062234612774558 +4.8462879305685105 3.7487064995628314 1.206518741107026 1.598481225288122 1.1654696850171138 +4.933541688282176 2.9433355115359703 4.990396038575362 2.8868420971889535 2.895834907290304 +1.3725373614120504 4.58690049229664 3.5716327956815603 4.376995230261246 3.3137198113634017 +4.9768180752872775 2.9501022735126785 3.9390287808126794 3.737748565930524 2.036686197249312 +4.029420678794757 4.494890343588885 2.3455499825815807 1.8842273000085505 0.6553477140418927 +4.962229484993465 4.295444088968823 3.8002162486884594 3.896398958646559 0.6736867803709836 +1.8890585302801015 1.9578662426978024 3.496185410523689 2.614017873981342 0.8848469154703259 +3.2303628709686105 3.072140746123688 4.7461646502911705 3.254088285642561 1.5004419744640085 +2.5682685180906377 3.0191389984121892 4.015547853354914 2.451886802661796 1.6273659918654104 +3.0304769744632853 1.2715770587254744 2.363953126462196 1.6432467660068868 1.9008278647955517 +2.907305600029778 4.634602953022673 4.8395912302522515 2.771236265052093 2.694744590443482 +1.6001817460583414 1.760919611766215 1.7395828163903992 2.864948177305291 1.1367866365415398 +4.840362407557526 3.7171509789117763 4.41708590755314 3.766553102049326 1.2979972436323162 +2.9309963437184527 4.22959388281072 4.266355321051994 4.833298266618389 1.4169614927950558 +2.9914170546466234 1.3179388902391875 1.0914680043824552 2.1125625839888946 1.960398762305805 +1.7811777102182735 1.4042428487758798 4.665487968006931 1.314468669457455 3.3721521657572957 +4.623837704017032 4.344780550410582 3.106876958422774 1.5220438790317647 1.609213716232534 +4.389358662685234 1.9820186615291346 2.7751276914527887 4.765702787729161 3.1237277562364394 +4.545864807413459 2.5079555166785825 1.9040417481340834 1.8006016039979742 2.04053280803873 +4.819722778486434 3.5218892066540475 2.20144554490077 4.223040749089539 2.4023361858354133 +4.679196148472789 2.542275934935839 1.6055549462905385 4.63395825064841 3.706434212672401 +1.2703219800926 3.9041972250642787 2.2679934083816744 4.545505715992039 3.482005329891284 +2.5491899146815737 4.944348872681027 2.026123917922342 3.7455389896106825 2.9484190039466993 +2.0898642809876433 3.230785965189524 4.297064378343693 3.225596601980158 1.5651662803892352 +1.2152888267617352 1.261391182101324 3.8925992535114675 1.8447596890655307 2.048358442479729 +1.5434305287752754 1.5591297426321473 4.183717968215608 4.437474146965874 0.2542413490556972 +2.2621193381298164 1.0470518195172551 2.0938033117774872 4.726629247166352 2.8996829966124813 +1.157513060379868 3.7165572694127316 1.8093418252730649 3.322595407904339 2.9729856489951345 +3.977664064158007 4.032726944334887 1.3709333681773797 2.7765467840320373 1.4066915069068882 +1.0680204651800258 3.315955121035378 3.552515983058584 4.5281377207993865 2.450519943225907 +3.319297492194454 2.5593247771165717 3.024570031026608 1.1238040808564924 2.047063683667157 +2.620098115946627 3.1329444917391007 3.5136657382462606 1.3919909742686292 2.1827769490406053 +1.297382607775186 2.5780648850571475 1.8702049308852438 3.119791104745356 1.7893050889232016 +4.3228741147229215 2.9301057115106226 1.9723308747089487 2.615795603621735 1.5342264116946176 +3.7140559207865236 1.678803401326188 4.139811632232577 3.4792714922226455 2.1397584196665713 +4.584593952596263 2.0572796900926607 3.918554634994759 1.0651393230518673 3.811731407626235 +1.2564081714338609 3.393745789022499 4.45984877572586 1.439167141193857 3.700368850365921 +2.9942673934720623 1.7875402104457585 2.679036981507516 1.2630245917662477 1.8604519832974395 +1.616709644527691 4.045307261812714 1.8104049189313929 4.016363181144271 3.2809050948340084 +4.316707129999103 4.541931320478846 4.19032711784681 1.7914872617860338 2.409389671888493 +1.952419063475494 3.1770769230082907 2.7046203389646206 4.215345401001689 1.9447563050373058 +4.708000910554326 3.068471082004231 2.983790632769388 2.18879499757813 1.8221076034852213 +1.2347143060241446 4.535635333720817 4.392341185491862 3.133927857570808 3.5326595837951045 +3.607191917259702 1.5840812124206414 3.718757910032059 1.5043769764578405 2.999409915802011 +2.149735326802805 4.656364286277766 1.3981449758382145 4.851062747523574 4.266829019131083 +2.442072288403087 1.630450078438205 2.33356547474794 2.945486225821373 1.01645345063242 +1.7420984416892233 1.8822589747389165 2.1793847490051705 4.8879267965305715 2.7121661081574384 +1.2909945646436474 3.314843918939724 1.031805099935604 3.737533214278709 3.3788949136709387 +3.3600924499701965 2.2476479042017536 1.7501971393987894 1.3532015836792448 1.1811597430792447 +2.6046875164142245 4.5885409873990195 4.333409596033439 1.3214620374978154 3.6065915612538 +2.112053619929047 4.50047725536448 2.158578823544812 2.7254242308314085 2.4547670313226297 +3.5168175042965495 1.6405224262287734 1.7707377937050541 1.4302119487030964 1.9069454819411222 +2.897159818856153 2.8028866794563827 4.1255865179513185 4.627766340950261 0.5109520519966017 +2.224291277312925 2.6632858906625203 1.916868692519592 2.996122760255497 1.1651204286572518 +3.5753646779455317 4.407131612192279 4.620379954197164 1.8973960468316458 2.8471876637618774 +4.513037941387858 3.4242555793215055 4.28710760509119 3.168363306763341 1.5611008413897731 +4.878643991794466 3.748690997573283 4.521017756602189 2.562477544562263 2.26112218407737 +1.5073118682341509 3.7953744991139513 1.289378978592397 1.3732464060011962 2.28959916758562 +4.498334953539157 2.3545696116655925 2.3340905723020406 2.0623523505188492 2.160919133654976 +3.982695729283586 1.4437074302318602 1.524053211964978 2.986292316922261 2.9299496212030425 +1.8106932680806258 4.120559270964119 3.078934346454037 4.078286833084942 2.5167809487145156 +4.074882139829343 1.7363599250420538 3.8898580912047294 2.7327620204556005 2.60912963763718 +4.944254941998716 2.4583178197150026 4.207930846337857 3.3159738951713957 2.641111617990122 +1.0817507585013981 4.862484095802282 1.1684102768525886 1.4619074323312344 3.7921082721953407 +3.2537387788132097 2.5975203543764116 4.870908919479193 4.264830815200673 0.8932823120694591 +3.884660467930151 1.2479683939052952 2.7353159162771887 4.414802101676301 3.126150818526188 +4.094435838011538 4.653586406648091 3.8226443819067994 2.85659295203177 1.1162010229211266 +1.9529532848073337 1.3904268319521176 2.386151116051507 2.4875322245784752 0.5715891350682136 +3.7951862915636974 1.1641521734722153 1.2572696238346195 3.660097719940206 3.563133928158724 +3.9542339314691923 1.2609289961553687 4.46418766375459 1.3238924848241682 4.13706964957075 +1.883097470367499 1.421991912155912 3.2743488894361783 4.498491579959709 1.308106900285985 +1.2918908295463392 1.6088207039885547 4.978782733853597 4.61631639661212 0.4814835313354036 +2.854124453645787 2.3771831624196 2.712639957448475 3.368837420032784 0.8112139700341632 +3.2075247795288884 2.3630265592659536 1.8630248848015287 1.2446600988839198 1.0466863200071903 +1.3459014645678216 1.0655834225446026 1.4538268380324069 3.328940950427035 1.8959512491583812 +4.405953957054951 4.7287003452609095 1.7181043301676975 4.902026682277274 3.2002385497589034 +3.91307743820227 3.808357819971423 2.519608802490227 2.966879217502732 0.4593658918420833 +4.764505665720412 3.2556487529656843 3.58046544742516 4.075457334610019 1.5879754883330397 +2.9732256077597774 1.681926493601083 2.779143878984859 4.268913139384549 1.9715135940334947 +2.1377483923619316 1.603728956782453 4.3114879795077465 1.782836155375049 2.584425817326983 +3.018725955905034 3.9124176112352074 2.497627691314405 3.369499163144045 1.2485369991302495 +2.2431745027447576 1.698017113397397 2.8676218290631907 2.3925009314267727 0.7231434481006279 +4.61994276592146 2.2688356846053956 3.2679194723373035 2.3783038974101864 2.51378606467763 +4.355029917103618 1.264080760766067 2.824442778057244 3.8857647495549625 3.2680836914387035 +3.873850697314342 2.120713120881511 2.181944173336169 3.8185501419682173 2.3983265954541775 +4.982736883211661 2.571293584394382 3.3631354970387517 4.926526191778253 2.8738909596240463 +2.8069065139801492 2.2672008991860917 2.354944495646009 2.8252433267740615 0.7158653093988031 +4.851204417240984 4.902791953385647 4.17200667433657 2.747586297795753 1.4253542307055325 +1.5338142416153344 1.0543822535578085 4.59181493898007 3.9866682437833907 0.7720476370537341 +4.599259625112532 3.610678908622978 3.9167390341176427 3.3086850641049113 1.1606125380432717 +3.204277200946375 2.1904123300151177 1.4129280803033142 3.5472301562870423 2.3628726855370155 +2.359158099650159 4.897260394530377 1.3898336417649833 4.016525296489323 3.6525980217202556 +3.122430062876243 2.399126893042669 3.108354314143247 1.6961627242767916 1.5866482162032145 +3.0324105175977234 3.578728168872308 2.7312009489339437 3.9691482505738196 1.3531358016591049 +3.5612271973397793 1.0508220910200738 2.2245563129299 3.001478678323244 2.6278778814253223 +3.395485734710283 4.635127059225167 4.55640013080108 1.8897161964444757 2.9407335512080377 +2.764115413060815 1.218996284080442 2.944824956168416 2.294279250766089 1.676485263149807 +2.8115557516747267 4.699042452447644 2.522670209768011 3.346279062709053 2.059353682162802 +4.696823485345721 2.669015310190345 3.7876844293297394 1.241260435524992 3.2551929514932745 +2.013684599912824 3.6245927359430934 1.0947019386352843 1.5408109194146822 1.6715376889141778 +3.537115400992581 4.672062516421228 1.1700726006347413 2.2775096350250776 1.5857243581275624 +1.2184051634177564 3.8565753361558475 3.9856118656404314 2.795509243491255 2.8941814234030447 +1.3504879105102927 1.3493067575667235 4.719233667988281 1.1896100464648138 3.5296238191539206 +4.366703904304568 4.560071869160939 1.2239149972856964 3.5958216044051152 2.379775645461027 +1.4938731856095124 4.097220885539771 1.1825936692025838 4.1668533624145985 3.960205192065436 +2.6531571708397217 4.053857632871377 1.5668265232829266 1.6175671797673639 1.4016192059743493 +3.031686820251627 1.2223180979141222 3.021389619388246 2.5802981617649374 1.862357873063475 +3.175592005355279 3.09610848150965 1.9178856261532964 1.1095734380323 0.8122107017442407 +3.119098737459253 1.3499556597639581 2.969042260006573 2.9048900675054368 1.7703058304032901 +2.9906570330705624 4.63256758464912 2.612384664344171 2.648483788079111 1.6423073421620673 +1.530571732574408 3.823685758178739 2.733360201530146 2.9199827508963683 2.3006955275210252 +4.037363500000796 1.1349115843917286 2.0670572719149765 4.236356148545026 3.6235458791867314 +4.448173341142898 3.9142926309525845 2.276767799936712 3.2991806438200753 1.1534108704407895 +4.666714364158866 1.647075387185648 1.3836972969909187 3.7313515602514653 3.8248790949599027 +3.739446322439208 2.5515798451269083 4.035395159673254 3.151367849719143 1.480719775199559 +4.204942716412903 3.747255811829174 2.3214630097332773 1.1852032347319241 1.224974929912266 +4.252077608785591 4.663876994419365 3.1513923102069388 1.1355030483638973 2.057519927004946 +2.1309036722604193 2.6788973350817153 3.58105980016767 2.76497112459203 0.9830044663657956 +2.6271635874696284 1.6822972433087031 3.5986259822838726 1.4543742115719 2.3432003893242808 +3.0141452926776497 4.859717426912123 3.3933677220365692 1.5905835295992508 2.579954911847233 +4.309503501394422 3.414941147538324 4.236821624976811 3.508512094985384 1.1535495552480162 +3.450529405184314 2.469319763031686 4.1527797043546375 2.3508976033543365 2.051719149337586 +4.678757784158288 1.69356924100176 4.682261450663163 4.13155850657693 3.0355599764818084 +2.1340568193164002 3.4849612944659003 3.9479603423451652 3.3251808224061263 1.4875473879626309 +1.6427343383613322 4.7668961581800815 2.8636141457131803 1.5831754060651253 3.3763753408655113 +3.6245889178521984 2.0209293058181967 3.0162134912370484 4.0782603822722825 1.923452039960095 +1.4493381472276035 1.4000209092838514 4.872064494087777 1.3468844685920462 3.5255249824831023 +1.1951642225162704 3.5646805027678954 1.5817001556064993 1.6396177634071099 2.370224008753359 +3.143022862076452 4.514100464528772 1.0544670954541386 3.13392552285794 2.4907832389124294 +2.56705343164407 2.265344211335065 3.1267225716786156 4.323939830357263 1.2346487832972919 +4.641197026489652 1.384303990857469 1.0477031226313378 1.2077447008342275 3.2608228336269804 +4.365005002607655 4.817301671795031 4.377262217224416 3.860439610647869 0.6867880922282878 +1.6201248099484276 1.3141162222656666 2.7496143871285734 1.6757021587000955 1.1166596303725758 +3.523494645673803 4.73339029137666 1.3997411973428195 3.8729095811886447 2.753254315958717 +4.714813283229269 1.4886159503942085 3.720353465636599 4.165604126874904 3.256777146463234 +1.194590557033266 3.100935308745832 1.7755010977188648 1.458303184161514 1.9325539652871744 +1.1996172049317488 3.1970366176949687 2.6857557720114222 2.4618808783054615 2.0099264360954163 +3.212411990718416 4.752849642871956 3.513293178780519 2.6327817643388354 1.7743304402321471 +4.876819772890602 2.8567819596815043 1.1892068223193593 2.521672242878529 2.4199208383293285 +4.889009624495369 1.3835063114847301 3.950269979917823 4.571909874063389 3.5601951681785473 +4.662193881233979 1.9328617768611385 1.9016233855482545 3.6436552438589014 3.237889548970058 +4.03417020002556 4.4939627973041105 2.528677298891491 3.315514810028043 0.9113300727199332 +1.2138465886537775 3.460815345767656 4.131823018850525 1.5347722705547113 3.4341725618654833 +3.1128232653138967 4.796201056225598 3.6866101176225983 4.455104542418546 1.8504984376856994 +1.5639733419903168 2.1098968290967877 2.6677398427755765 3.6882224854434598 1.1573319652376821 +3.4771117035463552 2.6247279755090744 2.416622256527004 1.4120880027497589 1.3174395951369229 +2.081030294015979 3.3201345903100106 2.7971251099396963 4.110015685860917 1.805286991432964 +4.257473074147793 4.77937893591066 3.8099879208776675 1.0951676462370448 2.7645315791544554 +2.950999500841814 2.406518673587899 3.3642125209161047 4.45232082480559 1.2167329420379647 +3.8487417417955974 1.1271062401362193 3.582699026688876 2.1075003513051276 3.0957246220790795 +4.907993413248166 2.9078280075004184 3.9802368425546466 1.1415338064373417 3.472592198576109 +2.361053632453311 1.8971971686790394 3.4412243308970982 3.9347709453817745 0.6773116562221988 +3.747325824541477 4.632598643478459 4.97695666167186 1.3600354743402865 3.723684578386933 +3.3505515481769876 4.930863195616236 3.277218459846533 1.9829597529899026 2.0426674970014935 +4.543435671262948 1.5634373034427607 2.1407104027776325 4.671117483870578 3.9093925702410988 +4.154530931395421 1.3483544563228724 1.4223007377321877 4.760028592552963 4.360625372821779 +4.901955985541465 1.422790006647363 3.680676664381917 1.8179393588657833 3.94643968382334 +1.5767188358457336 1.3741466118241537 1.873003600263441 4.357539022250667 2.4927799279226983 +1.4240084804936042 4.631914093224722 1.6462987171439574 3.528810287269387 3.719476876100713 +1.3919761249977713 3.707268568653389 1.5918674090289127 1.3953673602703356 2.3236160114810116 +3.385049619758088 4.034548642427385 1.6358095409567506 3.734627497624819 2.1970174773270914 +3.085610367608858 1.2081147122684208 1.8575112482400296 1.8369286827790505 1.8776084729844966 +3.8652669690023247 1.8728919353684068 3.752310347831011 2.9796599144418043 2.1369480496409556 +2.19422895233023 1.0570757543588951 4.140569953768031 3.4602844951095846 1.3251059206412772 +1.4983970613599702 4.010355066393572 1.7917296860695249 4.392756739686382 3.615974938062926 +1.2545449227066916 4.8576484794386445 3.1686284952779364 4.443815850525402 3.8221012586687806 +2.469545892394258 4.7572284923655825 3.379675396733864 4.355422314202238 2.4870813668154472 +2.0346669701076943 2.2495049085157834 3.1797181839943263 2.412481776912919 0.7967477920462817 +4.6587268050008035 1.4901787062352732 1.0865196751044377 1.632291521404328 3.2152082300224736 +2.1424899024799555 4.271917385065832 1.9472007520237367 2.2024727196252196 2.1446736770509296 +4.859204148227604 2.832424202671073 3.6622471750324856 4.437784475009341 2.1700910237511986 +3.723917991196794 3.18419759306612 3.03085229657053 1.4445482405600152 1.6756069545910055 +3.5538558213558136 3.3339909829658794 3.4402824575649444 3.682631088462761 0.32722072987247913 +4.946473656171335 4.814304947896582 4.802123325257593 2.7849736283666333 2.0214750720981716 +1.0534990588272533 1.5082228409868632 3.8480900477634523 4.696792767291166 0.9628447560200333 +1.0284047215086 3.1303517705476844 2.960920112514204 4.276541186579742 2.479725833129436 +2.4313942995299156 4.199008041622909 1.9990806074032945 2.204296463294064 1.779486411508943 +3.6386155282223447 2.307023975018579 1.4650452384877388 4.5188414957414285 3.3314873022991187 +2.893602482206012 1.4675270217723257 2.0823492792873353 2.7876118050514114 1.5909388577498114 +3.87384418501107 4.24326764781962 2.5518234872571015 2.7329980084802616 0.4114582627848189 +3.7730505458848045 3.870070606273047 4.044145930210395 3.723878009724839 0.3346407521654837 +3.7229107332758797 3.0390980440713413 3.0554456172021407 1.7995606580649937 1.4299814070483772 +4.3193310899263615 1.468438657796351 2.8013988399223315 4.743180524948756 3.449362806647081 +3.5572868315319806 3.8958218361678782 2.046017479262489 4.298788512278529 2.2780656874989327 +2.529092585630569 2.9703176609929782 4.25235451968124 1.3908482777260396 2.895323391242701 +1.7701959371840648 3.577361229315693 3.7954409310553516 3.760065840332153 1.8075114910088033 +3.360886444340641 4.183467781819703 3.78853508808052 3.064420005335188 1.0958935668339882 +2.588503145678442 2.4345232432619155 4.353108988880946 3.488701063041513 0.878015303170869 +3.10462713043693 1.5678101588999342 2.60328101485841 2.086482574542696 1.6213842949519703 +4.085871383126122 3.261569583526967 3.577636347081058 3.579621029575468 0.8243041888690177 +2.7382536602068184 4.890843968979219 1.207660823458507 3.389281668693629 3.064818844529847 +3.984708645276764 2.3927282404100954 3.35895633852339 1.9499920137151499 2.1259308733027473 +2.382906134236855 1.015716299172853 1.6374676238146626 3.711154529889159 2.4838247582160764 +4.162560187083001 2.821428389624078 1.172225352446524 1.7534477039441696 1.461661356140968 +3.7258025599984874 2.6080238364017365 1.8180839486497007 4.05793679556413 2.503271869125736 +1.89281716055654 2.0140618761178466 4.48865724788187 4.3720965316389595 0.16818644898624366 +3.2704732894617057 2.8368498964161146 3.020616958305713 4.188751513861648 1.2460207008233184 +4.124846980979974 3.396086352421194 2.205219747755689 4.382724511152812 2.2962184234855685 +4.317488401898665 4.163722493936358 4.5176564931376 3.171782352093463 1.3546295279458385 +1.0005468748625757 4.364905435106934 1.6245699020816966 3.6233217642621045 3.9133000815755414 +4.155774243328473 2.897756320802847 1.7786505146702565 2.5505904541113757 1.4759743776570278 +2.386257619162002 3.4838121719393866 4.262472824917327 2.2261794754583355 2.313248063086465 +2.8325634867155016 3.4379500781750534 3.298079216227823 3.851269626248209 0.820068628138851 +1.561042769380403 3.3974968193327024 2.361757508271015 2.1660465072624335 1.8468530730683435 +1.9422923500883464 2.290000347289979 2.8653703518126523 1.4439848397564798 1.4632968342756565 +1.4137880597521217 2.2083136457073764 3.6252903156316765 4.849283519293414 1.4592567523735038 +3.824758368660585 1.5593482379475598 2.3101471244737266 3.057831436208445 2.3856057701035653 +3.203282023671542 3.882444012280489 3.350892786302467 2.977583477350741 0.7749973205897394 +1.1787952485384996 4.195783689918351 3.0726419298935728 3.951940776016517 3.1425126437633892 +1.0474280373677565 4.014557452142739 3.807326531984645 4.1170563883290345 2.9832515059803533 +3.965618693310846 1.970020403610984 1.5414689380612927 1.2859951111751244 2.0118845419349687 +3.0963421556772137 2.558236496578793 1.5146247681758793 3.681951173401377 2.233128175260306 +4.3940570541630635 4.814215849620204 2.654255198563776 2.294434169126659 0.553176813166624 +2.7121712446437307 1.3462582823072773 1.2024209500978942 3.4692724867153175 2.6465702540729046 +4.211031140661843 2.101964564556887 2.765787185155416 4.22479349024991 2.5645391829232342 +4.375290620032963 1.2208213964941153 2.1042432529148223 3.412265542518651 3.414908255334867 +2.1638330015737806 4.608713404894186 3.2528675907824693 3.3041588086802203 2.445418364119641 +2.7398068482480697 2.2366972082678767 1.8805430697479704 1.5002194936756914 0.6306863977900634 +1.5751168989643913 1.6142281648770105 3.7923058514722414 1.9192389660501634 1.8734751795489715 +3.772922835046736 1.713344833245798 3.09656957139961 3.495398394888254 2.0978384055850636 +4.3290539517510425 2.5960806908207994 2.420218355730612 1.022658231680015 2.226290776928189 +1.1412671576228672 4.488455034568672 3.8683465780879436 1.3441760257868887 4.192267126588759 +1.148336702915314 1.2955276663860253 1.0142309701407686 4.842798416036059 3.8313958119067553 +1.0021918249066242 2.743146632421402 2.3404045629182697 2.9669485349820466 1.8502651136359547 +3.0900026037789585 1.9036883743686128 2.9455549749686862 1.2677965067643595 2.054802892866562 +4.351905005800784 2.1942954399823456 1.802456953837313 2.7121303268134342 2.341534685630983 +1.3372289175180767 3.7957208869997943 3.6674115114372587 1.3675922373788825 3.3665043379351958 +4.097895810277548 4.2370761640697 2.2289635249548656 3.7551017802886744 1.5324715805766287 +3.2914710991760083 1.561946504870162 3.798456209511994 3.491656836800824 1.7565253136248193 +1.9623765213645408 3.5329114007145574 4.772116479141637 1.4611394126306996 3.664580322795005 +4.1683758626963865 1.360014039980208 3.372830639098375 2.9770545307293643 2.836112630916737 +4.75257190790663 1.6282132877127737 3.0205130439564774 4.911744163875967 3.6521735906897397 +4.479577983886079 4.653102462637955 4.503605948713998 3.493589104215388 1.0248145056043265 +1.2829978809477747 2.1997438306375483 4.473164422974344 2.2687673799659867 2.387423183999141 +1.0583365167712566 4.315161839740086 4.613886378591895 3.959133601879869 3.3219892207746744 +3.5071824824381994 1.6054152112854498 3.470943811495537 4.031785687886372 1.9827411237832762 +3.3666349137707763 4.191387927517968 4.145722434709397 1.7067169922719048 2.574677665635988 +1.9479807430318123 3.4710546500339614 3.878014234369471 1.767771830586454 2.6024751927568333 +4.983131426058126 1.468503934126697 4.166876288567394 3.4516390800416388 3.586665676014412 +1.728626388974365 3.3907657954915154 3.1807299304498313 1.5815470032123007 2.3065327748517217 +1.3087504257654299 4.469138561857949 1.5914820666767096 4.114541284692461 4.04399319835835 +3.3294149615049027 3.5583096603267856 1.5594485672508291 1.2385023570209035 0.39420711943052494 +1.0303328537002021 2.0502737317875392 3.3050228671490225 1.6777022868142657 1.9205342136954027 +1.6616086445951277 3.6248429560347097 3.75893547898061 3.73926026016266 1.963332899904951 +1.9108592776074884 3.1816469562396676 4.106170316286214 1.638725491975122 2.7754612743079226 +3.395769510486918 4.289072217660605 1.2958074066904808 2.5636155992441987 1.5509117769074303 +1.7139633009719835 3.141809866347538 1.0192336987384865 4.4687122297400865 3.733315945656853 +2.4504986291401876 4.770654881822024 2.3024396531552633 2.6829247952323048 2.3511473752617054 +1.8793853605946804 1.7120200727744823 2.2210973730681447 4.593393980039677 2.3781930811050187 +4.437309717082771 1.308056906306983 2.1031661458119557 4.545464666616878 3.9695144814541337 +2.553102793389992 4.24985777061366 1.0342938898785525 4.395944051503298 3.7655901611679634 +3.9089765887449146 2.6475751296339856 4.084375397744341 1.1674303841605949 3.1780028088908705 +3.8785153910048047 3.5369883111219007 2.8351446281384196 4.3962407675262565 1.5980181171391494 +1.8748327048661264 3.8761759903209603 1.0699362464536684 3.5432584587371285 3.181618725116179 +1.287066801006966 2.399990529090918 3.5292967334745566 3.162261301394218 1.1718849060102632 +2.1309456744838093 2.107465234029574 4.638792647720442 1.8685247421300422 2.770367412425317 +4.537843090746651 4.263884545851662 2.6611072932429782 2.8043823235845897 0.3091618000988631 +1.091296342857091 3.1264628600710656 3.402585431293722 1.422468106691972 2.839501254089677 +4.389004838205164 4.743246978576139 2.402026820447703 1.1919848336790015 1.260828736886083 +4.771903636209626 1.9913988544078944 2.35035369381721 4.922970548780676 3.7880818792714095 +3.066646794883736 1.8369382179571891 4.7228097081329885 1.3828646767376118 3.5591313542646015 +2.6873607260979373 1.8660378679956793 1.6624057497756746 1.929983969473597 0.8638109404829112 +2.6521356810511487 4.082849946935913 4.1541031983438454 4.398487225431693 1.4514361382099643 +3.027220239939938 3.612995082242477 3.155193624996657 2.292779919101725 1.04253995894162 +4.579648026521255 1.4510347565756265 2.9477117945181424 1.9716144294177789 3.277344513327177 +1.2408006051732663 2.5114110382916706 2.667097657925001 3.2095690127514294 1.3815665179630547 +4.536127787883752 3.8312552970860025 1.4902385721109854 2.9927559128219823 1.6596395956413756 +2.525407562422334 3.5977676294200918 3.8567354777478693 4.157139491265971 1.1136420810247876 +4.865831634268996 3.373888621456454 3.0504259746793414 2.0862493962127275 1.7763812732473145 +2.6452934181606285 2.6209606598272974 2.9471243368251527 4.849892579980883 1.90292382146266 +1.8339513976899577 1.0543495757077905 1.3945485062900018 4.54243046270151 3.2429831655960015 +3.8172895884765294 2.695840239910826 2.875978233761226 4.223759625501467 1.7533292107643965 +2.235831580568489 2.285512087852665 4.326484109547941 4.522645095142149 0.20235435521209844 +2.5086946164396413 4.3422471958916224 2.5501811051494054 4.7314615721180004 2.849543741933741 +2.5575133496465337 4.728604905168598 3.2761528713268464 4.000488904099838 2.288733542995456 +1.133866498024596 4.717281469942003 2.7387593331301803 2.989767170794981 3.5921954005219416 +3.4087973393064637 4.29132434480449 2.5524300377681732 3.8957556374433517 1.6072888919469304 +1.7228981329186364 3.4339413184966303 2.927953038654111 3.711911630169911 1.8820892263982403 +1.7126391604754954 4.465252675196054 1.4556166745591606 4.349048628379187 3.99359858183181 +1.2567298203183417 3.3008320906342563 2.944076404835154 3.962995795785307 2.283976973781677 +1.3697366950874383 3.9755152350593512 4.470363447372208 3.179195771765387 2.908125816726311 +4.073809423065384 4.228101100347674 4.889180594580082 2.854505817870604 2.04051644655375 +4.544963429768487 4.530166830384022 4.783210165062646 4.443488267978185 0.34004397761467464 +1.2356176324566324 3.9312362266530547 2.924366108555115 4.772879632432465 3.268541242409977 +4.321250962468611 1.5061796225068487 2.7637136113452607 3.609542607069378 2.9393967644878733 +1.191892919795341 2.910631800971514 4.446099863512084 2.330533169906272 2.7257449948153534 +3.3693543046111785 4.065222260515359 2.6897948182317517 2.719629264613674 0.6965072190904975 +2.2306045709105966 1.5212574746935386 2.667933059972022 2.9015761337131387 0.7468349140330606 +4.152864771713634 2.8835429999061772 4.625440403132602 4.1557236781221665 1.3534443328556043 +3.7854781411211595 2.719844685716689 4.626128284670898 1.5891828899009472 3.2184797641264864 +3.033901837506031 1.6596711249484062 3.7510317722120896 2.6619881948761033 1.7534326233629278 +3.0271594138593354 3.851415148119017 3.2393481169479483 2.9643617640672923 0.8689159969355905 +2.510687844028063 1.4259926811713726 1.3678791224860398 2.942014002293752 1.9116652991964735 +1.5273995846983328 1.6031502281334435 4.0187381308489005 4.149844903032707 0.1514171248349732 +4.019538475120525 4.074438312859805 4.858479070244876 4.447159927079397 0.41496678146350774 +1.0816065331158775 4.535152748473459 3.350138517772417 2.6687978719196805 3.5201145630933235 +2.51388323518285 4.345059977529125 1.995944463080702 1.430094480213942 1.9166101494096888 +1.1421051103000157 4.42767670633587 1.14970253274742 1.1484861521682777 3.2855718211993636 +4.974765711430584 2.4525918754808327 1.5177802485738097 2.2498589745202255 2.6262711436050945 +1.3952764654680232 2.987355056736481 1.8516700985969345 2.2047893537943652 1.630768974798866 +1.3126157130735945 3.1339340266482822 3.30324057910087 1.8721269672646206 2.316308824260172 +4.768199341283839 2.828198902689181 2.1688515522789356 1.7508846887677159 1.9845145503978725 +3.567704195479167 2.8189710244746027 3.6633456726641893 3.1566478661369595 0.9040708094513705 +4.624461827617306 2.0913180220245713 2.308447410279089 1.304357394054712 2.724887942740823 +4.4642625402300835 4.555970427251256 1.2368235878745124 3.5623379716250834 2.3273219557192095 +4.58196578984694 2.477987236250693 4.787782368028095 2.0245335811296963 3.473077829863366 +3.080557164076528 4.3175988574964 1.6507320509850967 2.4096558351795023 1.451288207584924 +3.4903586352375253 1.5876937520904275 1.1668464345698917 3.602841803796548 3.090988045343248 +2.8381301956362637 2.2773707294938283 2.608131567666039 3.5873535012844617 1.1284178189605798 +4.129253998918111 1.9125255440178428 3.8812925496399737 3.2212864310957245 2.3128971268260887 +2.537050698502079 2.6669387790498913 4.365281678830371 4.301545142752497 0.1446833076052697 +3.8062047644893404 4.085147924535396 3.4566176981088317 1.7493715815162765 1.7298839814151814 +4.330449489035692 4.451948199005823 4.674050516190576 4.580622475950754 0.15326687583251586 +2.0706116103877585 3.7144305377236284 4.342134313342438 4.210103962764821 1.64911269455465 +4.971351708105768 1.032960011184044 2.9738737012415 2.504997327066949 3.9662040054239585 +3.5708013498147695 2.3171350137064026 4.014995772113629 1.1567058744255214 3.1211376806410303 +4.552983122237508 1.4210001323099672 2.893375532962369 3.8707937313125846 3.280954706127721 +2.3587612979534973 2.6593891152105793 1.7265244003900553 2.0185729278354563 0.4191293677276559 +3.5478131157849173 1.18892350006334 1.0594911391466133 4.145752095719915 3.8845034317436054 +4.7845995926094345 3.982313454335997 1.5607114335585357 3.4750953843282177 2.075699631119648 +1.7578897772269864 2.1241052076656572 2.080631035310023 4.609228922390646 2.554979650807414 +4.154421136178222 3.604470295499459 3.975725156883237 4.051772525524941 0.5551838699391445 +2.604096778071875 4.4785738363929415 1.607839777421642 1.5621615368434134 1.8750335313893245 +1.1001499442679523 1.2018691992006896 1.836915278357119 1.636610584619202 0.22465256988851004 +2.8811363337033096 4.560231146122817 4.4555484412208575 4.001637846055129 1.7393660389629912 +2.657018125886635 3.6529316673918437 4.742476894572382 2.941331079737245 2.0581472319665512 +1.8128385811234988 1.1647167706455464 2.4903353053864303 2.7816788039638483 0.710593354444403 +2.8287065743418043 1.5314864882167538 1.0923125500956452 3.7080415144644903 2.9197290913515235 +2.7884507124943663 1.2528090610112619 4.47305115633273 1.9467817994477072 2.9563883617187408 +4.1201462012642445 2.9584630794230407 3.693690433294449 2.824782938077034 1.450692217810424 +3.7365778780506123 4.471977300720983 4.796545243567405 3.0448680947247286 1.899785552277289 +3.1722185035678163 2.8949190021989173 4.886530173341068 3.1975687781941002 1.7115740146883023 +3.2679222057144766 3.650135440932622 3.4383638042445215 2.774902983647923 0.765680884992327 +1.9639024196705002 3.7889672778680312 1.067476236157582 3.178747665685776 2.790757744013191 +1.3098152209890515 4.423132023669146 2.137951247322564 3.411170553789205 3.363603561094797 +2.1385484338844774 4.799120063819613 3.613272127173236 3.909038067659499 2.6769607560753346 +4.575164398193864 2.2186315017612293 2.535950714902053 4.9307406366428195 3.3598014913444407 +4.462763681467894 4.551835627368811 2.9967506068275185 1.2998167235595939 1.6992699655232344 +2.283433407387985 4.8086535943181286 3.226712756660266 1.9319032746260554 2.8378281461789068 +2.0594966404011554 3.858507257209465 4.410079833969252 2.2669678609174544 2.7981008074097304 +2.0641423233094165 4.151227968328032 2.552458948923243 1.975738992007758 2.165301918520226 +3.3901297711307072 2.548973017002068 4.463202686355232 2.2005025046308404 2.4139918801420652 +4.729810363714126 2.5608542169428063 3.333781609364674 2.0386102993002475 2.52623029216085 +1.4738869049464767 1.0052560766743035 3.442678655341452 4.991876492132709 1.6185267346342396 +4.889475832090499 1.99673369907039 2.1985134768814296 4.475800564445066 3.6815748705321476 +2.3671273856126605 1.7690675419416797 2.7090595249193545 2.10252506957918 0.8517978763336757 +1.8562723351206225 3.987652826495965 1.2532179314812533 1.5136462819867176 2.1472321077988736 +1.2487057740312837 4.165958862035776 2.3507926309917613 1.8105904848483756 2.96684747470605 +2.556488292435266 4.759771335196008 3.33246167079915 3.9770641136718865 2.2956411905771623 +3.4692192952303174 3.5450910031653313 3.11778006047887 3.3204036418028537 0.21636273194229422 +1.9630637824380708 4.659624803277692 2.142535607984646 4.6336925912131655 3.671144842443545 +4.946230692272643 2.5606381567184706 1.6644526632822991 2.2588093348904907 2.4585181713334867 +1.559463995359704 2.517601776486636 3.5922004859497534 3.9977212881583695 1.0404206498559896 +4.403577520259438 3.487539012350336 3.7750052529204186 4.4758943648215 1.153417571893987 +2.583600999445127 3.696292752304007 3.032257472160005 2.746011459797673 1.1489211097692922 +2.094494765464749 2.256304378291214 3.94522247666024 4.811284964701509 0.8810485707356225 +1.5706124500608825 4.185855325179389 4.173205853719486 4.873692297733109 2.707429879813135 +1.2288378685095647 2.752743037706516 1.1034522826512583 3.6506840058736394 2.9682783589979644 +1.1631578066668151 1.1429064064337493 3.271717103147794 2.0226773661435007 1.249203900020791 +3.864021132745424 3.7847576902402813 1.5040201555050636 2.296064520470972 0.7960006089143495 +3.946013578090812 3.504568030924895 2.612415714106329 2.8204745312572035 0.48801910055533354 +3.9398009810395562 3.5874248155850093 3.7639786984929056 4.463992630049004 0.7837017713091355 +1.3018168734263873 3.5520678687264553 4.048842333073247 2.143499524105559 2.9485523162280547 +4.86115493265649 2.0725827890307333 2.9964248635264012 2.7450002704443603 2.799883734409702 +2.6649386982839673 4.906169023517881 2.9837516345004333 4.431973428682735 2.6684189580897373 +4.5694880922553445 3.1197911726787986 3.9691302138484135 4.399267106685379 1.5121636502737277 +4.109092622404118 1.4107578017309712 3.1559053983290943 3.0188186367934726 2.70181486868466 +1.5383486869949214 2.414183129104851 3.8382796582427336 4.670351713924351 1.208068655264362 +3.214623879024045 3.0670153724763756 1.662600098075436 2.855366949155207 1.2018656465012991 +3.4847216849534313 2.962890728280984 3.848286416361767 2.3955356787137485 1.5436295711985255 +2.2587219916625183 2.5174228258225537 1.2221398261745562 4.315375804565614 3.10403526713341 +2.4836621041638796 1.0516876262489245 3.2524818775732736 1.3180216517720265 2.406800214103119 +4.795322069839193 3.297152936483826 2.793048721023704 3.2271329682846055 1.5597884106053723 +4.986358112776577 1.1019856832170514 1.8598599683336206 3.059634225019196 4.065440620465092 +1.597873094300204 1.281808520398458 3.668226760033558 1.9221312114943685 1.7744707603970447 +4.83370891051195 2.0452923421243683 4.653397843007556 4.110401773898202 2.840794200558461 +1.3752945853152618 4.027294631951639 1.9470704697686054 3.823597114447313 3.2487623021003667 +2.708820123872108 2.4916932605830078 4.661343993884289 1.8631593017939734 2.8065960959515244 +2.4954960395885233 4.440212027869338 1.1183163622101016 4.812651489850836 4.1749290186056225 +4.479486972590001 1.0379401598612006 2.2476662128879914 4.528728279381612 4.128860449978894 +4.054374470012293 1.1534632400940352 1.9496139232768535 3.1385965301682544 3.135118116332482 +3.352047337277814 3.937093021627441 1.6932246170996694 1.934333391490902 0.6327810789400754 +3.3185946721394957 4.213176946103182 2.1736323068243957 3.149038922332756 1.32351634310556 +2.931442010010255 4.789882150009226 3.1632046163764214 3.492524807487858 1.8873927895997344 +3.5820846485398943 1.3890008370429934 3.761777836418565 3.152498441650991 2.276145422669236 +4.239424669046173 2.235748256134269 1.7568365292134431 4.552506225649163 3.4395476765453483 +1.7652297214813513 4.191508918873064 2.2752160678080218 4.488372952525015 3.284036257422564 +4.522468956603648 3.372525703980711 2.341667361715116 2.7317539374041973 1.2143051596636871 +2.8912175753629463 4.0652939582376835 1.9831703052511194 3.5638138447140593 1.9689818058250708 +1.8668127555832266 3.105949701239651 3.8266897522505707 4.519330960804673 1.4195817038402618 +2.431178745111239 4.6062819962146495 4.600560079989709 4.477781701505991 2.178565739927009 +4.591141642441605 2.0958822197493676 3.4082815847147163 3.9410918213703003 2.551510598610043 +4.5832128081777395 1.4860420909457468 2.501920214262976 4.194390828209086 3.529436673288027 +2.266715886572076 4.053107866398302 1.7391263655168805 1.9077387861623727 1.794331756945576 +1.1250715945397318 4.215454519664222 1.550264225818729 2.4491018316584223 3.2184430499191117 +1.672765523099788 1.0771956699098744 2.456110409312275 3.3850418941683866 1.103456910615741 +3.4405423344074775 2.1245524869187804 3.670821095647795 1.3863311610608293 2.636422488889534 +1.4392374388594709 3.65535075432237 1.2781988483694446 1.6351682219888097 2.244679344733712 +3.7331333957947277 2.7819030139203003 2.6458430459539044 4.745938887493531 2.305480813854889 +2.9086783538274386 2.717248913182044 2.961278788829373 4.8759303342885225 1.9241974356273626 +2.393190120035847 4.54545483139132 2.7329476037959264 2.730813698698989 2.1522657692062612 +3.692681785017273 4.914102268841292 4.757568895193415 3.7475792741547185 1.5849123107953926 +3.4583543660238445 3.7792465518447775 1.4909777249567675 2.060391860493122 0.6536086387660053 +1.6028225375535325 3.580571676586291 3.6920229768296746 3.1643904826094977 2.0469215192336567 +3.3125727745051297 4.097070511773958 3.704036813809855 3.012982348695559 1.0454630426439362 +2.13478817243453 1.05360767127666 3.4261002110538974 4.397697799704481 1.4536000654773005 +2.865111742035557 4.8910437011065095 4.7163820032868085 4.48838169209126 2.038721276852315 +1.500735229771443 3.4424954931996203 1.2193801665292354 4.832201056318818 4.101573807982572 +3.1166943159628033 3.349252981283385 3.2385254907677608 4.807421422313407 1.5860384537696972 +4.500227789846195 3.170679670171235 3.5544605564270446 1.137355106568973 2.7586404184425364 +2.7325288540960444 1.8517413744673599 4.506060306961938 4.694847149758493 0.9007924601614633 +3.4880038556767174 4.045776734522434 3.1257524120645623 4.3329582949242855 1.329833308346186 +1.3120891087470437 4.708860145905877 4.8765799836300046 2.09868624108995 4.388023145304078 +2.226999975999327 1.162281168647307 2.10827040923495 1.9177843727433999 1.0816242734089172 +3.9905866321360226 4.219069212957748 1.0041639994915168 3.383769969507721 2.3905499079240564 +2.914043071710597 2.5139836665019226 3.7490731878432833 1.4607395094568085 2.3230407984651698 +1.6825331131039376 3.280663790823606 3.2279437466061505 4.656705424377886 2.14368411734048 +2.7794032406849887 3.913211882417726 3.133040512029403 3.8057549930408903 1.3183576180347991 +1.4063852904939234 1.635919210852279 3.76690540165006 2.970062163417071 0.829243611318599 +2.393498716303026 2.755780406226777 3.534267784400043 4.789564764444659 1.3065291925414992 +3.151087125963357 3.921766378933644 4.299432963425619 1.580969302878787 2.8255957220863213 +4.24018947828288 4.406229048422404 4.17511166843002 2.6991517301571997 1.4852699681332096 +1.6664749215975605 3.3355232366460568 2.243216403879525 4.406414134966557 2.7322420649983243 +2.6236309734973724 4.868149604197985 3.9313040083035444 3.5170608225019735 2.2824244347941045 +1.8010354538608575 4.952492210766586 2.1690096984040426 3.6745216272583088 3.4925987256725133 +1.6493074092500235 4.634322995321968 1.656094978775124 2.4235067809721995 3.082083536058651 +2.502940891066694 4.565149505201646 4.55917659394744 4.056341110789883 2.122627591296856 +2.0800709537746553 3.3714406447620817 4.180630377409429 1.83345047308054 2.67897166503984 +3.501418727739741 1.0187889508825556 2.39369498536079 3.0761261986884625 2.574716095001901 +2.6223020822910623 3.806748859022803 3.789673431376696 4.9233294577314926 1.6395396161730147 +2.57126667581028 1.648617435182663 4.3072444497868885 3.0040293644878138 1.5967627186848372 +4.915965941998495 2.5249778235615956 4.95168569146764 4.179225437763117 2.512671690862075 +1.50341049477101 1.5588094278943645 3.4512682272693582 4.842343269177666 1.3921777235724637 +3.0496490854029776 2.5468742547520993 3.67350290962597 4.49085789337006 0.9596101811607255 +3.288630602584135 1.7087360462685344 3.628514607501467 4.479791575093229 1.7946418262784063 +3.8870904035710026 4.960621029968375 4.836919660996912 3.0090024657322045 2.1198465224061698 +4.8579018228945445 2.00537918266974 1.0895127863845517 4.873673964272749 4.7388565322481835 +3.8656425401901013 4.924474415675645 1.3373431238807356 1.0035113254593377 1.1102110656003654 +3.0765843064063665 1.1940626481197993 3.8184774218456456 3.0944993214803174 2.0169363112717753 +3.6427746772331733 1.6696800907463412 1.8830081083693315 1.1360142895555962 2.1097634968331334 +4.026830547415732 3.8717726337137908 1.2781029522418041 4.440191125820732 3.1658876439459 +4.86675087410684 2.3382035201115046 1.072783598915605 4.481233939940254 4.243946918686408 +2.3196666158171038 2.50009349811267 3.9084745414698827 4.356020519699673 0.48254664280726034 +2.0230362408256273 2.371955631600792 1.74968521471457 2.136193113239364 0.5207044237194116 +1.7875223743724455 3.790735630329108 2.638150373590021 2.6802359258124473 2.0036552953405833 +4.824111915371219 4.842968767293447 3.135225759460883 3.1170873976833073 0.02616449946761969 +1.8087218178719038 2.2435830531538814 2.012022996841068 2.7803700949668184 0.882871200770095 +2.8276169072549253 4.627668830338994 1.8286080565073974 4.3718287529674775 3.1157917832713964 +4.529648450933883 4.999394766089317 4.539517016509491 3.1032071817106526 1.5111742262697487 +3.5420226654151885 3.0367172831732754 1.4684666096124777 4.592506343850551 3.1646418107616756 +3.9375615025282995 4.640990764406544 1.5149451256381679 4.956657998656693 3.5128621132586466 +2.6373277521221605 3.516779652768714 3.508948632298773 3.29058949220414 0.9061547106392499 +3.2244384386367004 4.080707175554946 2.8113263041837295 2.6424489308399055 0.8727632651819605 +1.3924292304845296 3.7695867010387025 3.352235301248508 4.71862983999935 2.7418810468982127 +2.261998301116431 1.3150756774754822 1.043149423477157 3.906198822679648 3.0155786040885757 +3.4671973103550773 3.011512247389919 2.1631624851483657 3.4475885452207327 1.362864329418957 +3.362994157499251 1.8081399137100371 3.632917353166695 4.353394298640071 1.7136682142083322 +2.269170656237293 3.8720425946839447 3.684185729376202 1.7120896414056475 2.541330641858413 +2.967620327081983 3.5499257386585916 2.277273361890812 2.2879442936328536 0.5824031774772928 +3.958548521412661 2.986627318097674 4.929571551677498 3.747425645217405 1.5303920313480486 +4.798761403729392 3.239577532767003 4.098769954318616 1.8838827901239918 2.7086490163148422 +4.289650118329082 1.7925362103083704 2.31405893217475 2.91562065253169 2.5685510259734516 +2.213121901865673 4.329330314684108 1.5837703354703354 3.0061228773455384 2.5497891677278672 +1.7904811636640026 4.428649322074715 3.3101007109209344 3.9329390840864087 2.7106934299436345 +1.6623540153524345 1.6823132855963707 2.8866986420068237 1.368938163327448 1.5178917099416935 +4.941727888059397 1.242636901993528 2.592320685822834 3.288498769311116 3.764032152774891 +4.217446134530125 1.4234012993350786 2.868716182040095 4.614490601565592 3.2946039010706123 +1.7375429981452868 2.1713392689985365 2.093984333483734 2.89803621341992 0.9136074814903284 +1.296349257642711 2.937520320850086 1.7830411739980074 3.0085341779055 2.04823718385724 +2.866749097538898 2.369324318064189 4.32506618483503 1.334690680090366 3.031464509212068 +1.4464909836137365 1.3612953468919171 4.145899530797864 4.1767877064198204 0.09062216014689248 +2.8175243022565013 4.550740555118512 4.629186461024071 4.481138827020305 1.7395277178358337 +3.378714309502606 2.311600486626398 1.8239750666717272 1.8798528835165595 1.068575800488117 +3.4774416811708657 4.241947113433467 1.9016742232571318 1.7486928150251577 0.7796613798461897 +1.904617382222325 3.0880890988507317 1.9362171765929603 4.371319147423314 2.7074576473882765 +1.377775173524931 2.9269505425713764 2.104871992256953 3.437350209000288 2.0433899584160846 +1.7708539390145788 1.5847501958039287 3.2833330846554443 2.3499239397502234 0.9517810856650343 +3.830101774827862 2.5960226440863923 3.60624693098024 2.6264424217246405 1.5757436902266901 +3.4718457368198563 4.801542022073906 3.5018555745926125 1.5921691199464822 2.3270140880702304 +2.398864257671367 2.104690502394427 2.6706785893973444 2.253707430934366 0.510297114712297 +4.237878465313148 4.825196769783974 3.9698551575985093 1.0646380949907082 2.963988692899146 +4.9653502481993215 1.135994117032919 4.0917092442697545 3.3328920185476987 3.9038150521450468 +1.2478479197555594 1.5965108929834746 4.276610903010025 4.2282408040738755 0.35200218091827606 +2.0485525697001927 3.068337367877453 3.265521663537067 2.1784497777811795 1.4905322268888712 +3.812944123455354 2.9164757207179175 2.55900443610792 4.281927288477235 1.942194313739752 +4.64748753118943 2.0430624984340247 1.7497033428609 1.5025446584836617 2.616126366692955 +3.6156192117800603 3.4898433545777476 4.5725857282072715 3.4235992737263645 1.1558500935828926 +2.8047554992052177 3.319741602189046 3.052814684908095 4.2847046873378645 1.3352017317068188 +1.2417676659666785 4.410208460426761 4.466255319877224 3.33293582156947 3.365030483256188 +3.1053969993562003 2.3684739507045522 1.8105988450416963 2.2453657664580677 0.8556154834923855 +1.8970673435885055 4.716432905463329 4.568676076813361 2.1411683913856367 3.7204321972448855 +2.706039533726157 2.1402214644173685 1.3628580916572042 3.7453158048201214 2.4487251463906277 +4.950504429864823 4.0876677399690005 2.6018862342869933 2.7660193118765686 0.8783090689440739 +2.481676943640618 4.755522082561901 2.193865104964846 3.786974250481245 2.7763948684082997 +2.7722419901714255 4.939703169753864 4.437497443537842 2.946170476357104 2.63095877733525 +1.9213213152457258 1.5466744055358337 3.6579770033180976 4.2332861886525865 0.6865427631877022 +2.857192959798486 3.313001474117429 4.035330950870031 2.876422875810138 1.2453229814649163 +1.9087087107876082 3.7269301347099875 2.101198816263672 4.283446963682406 2.8404464654914414 +1.0227342558561823 1.893650061159367 4.330540164753054 2.150551713021516 2.347518687808419 +1.607987731511761 1.036247048344511 4.6125199393719365 4.877235150707409 0.6300488488212145 +1.35651159354523 2.1976032079184447 4.3840022704974295 1.740710883578195 2.7738825605872988 +3.860813795629884 4.423677659281569 3.4210513750039393 2.4458321892569943 1.1259965316349059 +2.4159162961962597 4.62995445083998 2.0168980765032236 3.5935591882312092 2.7180554099306917 +1.8610347984396212 4.800982748643921 2.890327597864117 1.350411516583017 3.318830439672778 +1.7537296106621332 2.756813704209121 3.3342547309266317 1.2378001336618878 2.324069615377186 +3.9190719063153217 3.13348366978065 4.271189375559191 3.887501415327426 0.8742798912296152 +2.7445987370574385 1.8354977720244112 3.539099240561425 4.700689235923774 1.475044366095435 +2.828012193173931 1.525380362671946 4.147907596350626 4.859507015539512 1.4843259140858895 +3.470774232356842 1.5951125454055695 1.3794412769173898 3.196018664204923 2.6111415449763142 +3.648017343234026 3.7548007431451826 2.74924446235088 1.7751915939129752 0.9798886084697056 +1.85833817066242 3.919883106933159 1.6756988032648064 2.9850231483849603 2.442191181088787 +2.9848367949178636 2.912124049316926 2.0643919726262596 4.345676716687787 2.2824432581908134 +2.932753717560774 1.035322210642839 3.6351554464901485 1.9937610594779498 2.5088686408738137 +2.596129010514782 1.2989929642699183 2.9924748195706736 2.6306710210001514 1.3466491418063637 +2.4755751429750386 2.638188863728902 3.0693050249524108 3.413330790892941 0.38052194392489913 +2.905715349882706 4.031690853482413 2.5664304478157565 4.733936320193356 2.442519711588423 +2.9826983269396674 1.5625288368010022 4.739775205384873 4.050706350128058 1.5785110921389354 +3.0594805319090472 2.2961194478096094 3.770402333791109 2.0375063124721957 1.8935809371189782 +3.46183657705965 4.8324829589316955 4.151204217665714 2.687995870798218 2.0049065241256607 +3.0181321671575705 2.4844182786434086 3.8684525333604176 3.5017882990996196 0.6475285132555667 +3.980754143134642 1.9492558491553327 3.1918316464380374 2.5937818775343997 2.117698950400302 +1.2598755082805022 2.0467659344258156 2.2159903266778587 2.636100783454895 0.8920142031675072 +4.236166393902364 4.519321646533221 4.408120588669292 4.64365661569181 0.3683125264201546 +2.0830977390445247 4.031236947184123 4.023037962044172 3.3938526599838252 2.0472226353329406 +4.057216260205313 4.465957374666325 4.553491056226625 4.360696687086375 0.4519280555829847 +4.7650402398577 4.75187005741461 2.9773503378653086 4.246602012236926 1.2693200016547204 +3.5550386644129848 4.544080141224912 4.524958191686441 3.6636517008331957 1.311507496753354 +1.9022342563504546 4.060050546343785 1.126033919406329 1.369191388016172 2.171473392860554 +3.350290786264519 2.889315284152629 1.540470431842016 4.893419009219945 3.3844885250341727 +3.7380185908296326 4.359223161176668 3.4366866482448315 4.068783861793978 0.8862516604196802 +3.9340990834711027 2.9575129522016548 3.650231257749536 4.314576801042255 1.1811331308030968 +2.958184888302656 2.7110008697968255 3.2950252663986013 2.8431129348175292 0.5150967816243192 +3.1758692031771836 3.666156047927559 1.4375095773447395 1.3175954235689584 0.5047381443986974 +2.2619614870705047 3.556995996998966 3.8526035448736207 3.5952423568523244 1.3203594824915612 +1.1831502157642464 2.744404852163772 3.9281860908439925 1.073332661448815 3.2538752500685115 +1.6819296126071452 4.523887751530035 4.68772610555014 2.133274178319373 3.8212498887043536 +2.7809598337412864 2.4443955560551203 4.467129722504614 4.323596623461389 0.3658924207131967 +4.242789200331609 4.6219009907129 4.096859126315712 1.3324604886020013 2.790273387644932 +2.0796469560128066 4.792510930342664 1.6533837995600487 3.5920401911555455 3.334369437823419 +4.313411865274916 3.3426721969577713 2.1622326912854564 1.6679581407303097 1.0893313705989434 +2.070207163315391 2.276053351342838 2.0670728933702067 1.9963537039533024 0.21765536261993434 +3.4085324393664376 4.144650150336305 1.0133348348283522 1.835841946928066 1.1038057953544762 +3.4262052345873015 3.2200492053443033 4.627766046744284 2.997419929260564 1.6433285645869729 +4.942070151045867 2.666457752976351 4.19044450358135 2.298033832976775 2.959667199613117 +4.178708375759032 1.7208721636079756 4.762189559073931 2.9595247495903574 3.048041873254287 +2.9468551415059663 4.50495941063911 2.135141996293393 4.491189308975688 2.8246500408171613 +1.871715018147865 4.654262860775056 1.8233807222856964 2.590118217120446 2.8862534335180445 +1.040228357079708 4.402231505272976 4.410442080802824 2.8137012481726305 3.7219143535350203 +4.996783991275601 2.633433203033444 1.7718891476613758 2.323901375437845 2.426961979079929 +1.7675853865645346 4.759631561247165 4.504360712217501 4.847544059482179 3.0116631819100803 +4.512653442459863 4.687832342320004 1.9621908753431438 1.1148999451652237 0.865210706890509 +2.587041210309162 1.3722259769777194 3.2289161972141955 1.5796087133193133 2.0484118793752866 +3.679718076996358 1.3578568533965392 4.105118551385383 3.4074330686254597 2.424418399226997 +1.8276858441197095 4.065833521867978 1.1173098312323715 2.3561472876916936 2.5581288612844677 +2.354608500143177 3.380643745533407 2.4141054760141127 2.37065736604237 1.026954752188774 +2.4492756314537303 4.976596224357035 2.942586220925171 2.3882459497428012 2.5874007257415026 +4.510427431019598 3.071012654466747 3.6702164374089468 3.0164742003527985 1.5809154978903428 +3.6163640192607462 2.895434674480982 4.89177184109106 3.798224349399187 1.3098035107412742 +4.718548470807013 2.1533107203676862 1.494810279727846 1.6823367974146954 2.572082990712931 +4.048936086725337 3.8982291425774895 1.0230860780333533 4.6033762564412095 3.5834606659789277 +2.7858407191709023 4.701075732487952 3.2714666067860407 2.221973244393369 2.183932570832222 +2.1147501680437615 2.8772480521888064 2.706603594501978 2.2464474728362394 0.8905878281405628 +2.5718740573675314 2.7872315828438725 2.710565512314985 3.6484711997215786 0.9623128089394466 +1.9162172442693106 2.3573623383718867 3.405770557034321 4.785363004520546 1.448407510064693 +1.3007142982114135 1.3189490637234442 2.8851078665935725 3.883960242427658 0.99901880632082 +2.199010796968213 4.288024990972772 1.9095406312131935 2.590456064799738 2.1971859571845234 +3.2564713419240348 2.8829723381558003 3.595350353627433 1.2231351122910636 2.4014384558102737 +1.1495331083214775 3.127028211083828 4.395483342733801 4.370448889229882 1.9776535604881151 +1.1100681013603069 1.6031841743847397 1.1070337368972796 1.791771644438163 0.8438183830057895 +2.965285638659236 3.7391407450341267 3.8720010205984337 1.3745009111076913 2.614643096594402 +4.820545479747839 2.4355424634517195 2.409898887144049 3.3246063214107044 2.5543940725824346 +3.574597232076837 2.6148342970396286 1.3638201355045791 4.133599756013211 2.9313519129671515 +2.916923052229958 1.8053641101205637 3.1968384950341275 4.939841156565382 2.067273944083946 +1.4604251580002807 2.8048203511596506 1.2092021231346197 1.34980681003519 1.3517278251809521 +4.73998665982386 3.8846283119908533 2.7370422654277995 1.4847285792887859 1.5165511767489726 +2.870011366413658 1.6820556484139413 4.6883595874646975 2.2106185175523465 2.7478063245903313 +4.489524377146643 3.389037225871209 4.218747587297298 2.5855471136969643 1.9693693805608627 +1.0671728375751623 3.994535838446033 3.5481765471771007 3.9094604545961134 2.949572884440671 +4.112344330860253 3.7554051135637363 2.255051467988321 4.637793803365355 2.409329085376726 +1.0668159608724355 2.1303779641559606 4.778419253895088 1.4783372261745837 3.4672331223199193 +2.0572018930329175 4.086926941995858 4.048902847645838 3.88715560305593 2.0361596070838948 +4.6486757055022006 3.4638076045327604 1.4780166828025467 4.7344324981033985 3.4652786870375145 +3.352728126012304 4.135203383597988 2.2979425477176147 3.5120253233015 1.4443907070814508 +3.722887068127741 1.2551655216905782 1.399363579871165 4.80122270844544 4.202653347757146 +2.3985955609201284 4.2952698534816705 4.931939157320223 1.5787757282216752 3.8524120177244487 +4.375199442045345 1.0184229850723119 1.8995194733635614 3.665282272052821 3.7928704754213993 +3.062255601045276 4.251067056420387 2.7693117360822197 2.7408571571159603 1.189151941299024 +2.228063915933818 2.824879067296972 4.616020946476086 2.804870800782367 1.9069486556126791 +1.9740356690272671 1.6904788319668942 3.147826100323303 4.68552329975621 1.5636230866124639 +4.295907468528431 3.0720705413495857 4.707237027543226 3.2853800433000253 1.8760208175731223 +3.4956033420692045 4.478041623403828 2.1687679280069974 4.270219951886526 2.319759811984658 +2.409349509073207 4.820040792826537 4.712132505282868 3.7645860922919137 2.590227146475055 +2.5646116320675185 4.593842141921622 2.8516920603746776 1.9502660096917186 2.22043810698984 +4.7684155090651545 2.573674876515195 2.9809297967323873 2.416804552511768 2.2660811405006593 +2.960120672538193 2.7474882283044857 3.189050644525574 1.9114595848479192 1.2951646505788652 +3.3337060608061018 2.6271995215852733 3.8003798477802797 2.8383763887966813 1.1935669839008618 +4.636712574839605 2.648488819636776 4.7174255558681235 3.417185022822937 2.375638681392116 +1.3851810229061834 4.469400533578624 1.4966199449784559 4.610662424472103 4.382883817089325 +2.883553700821445 1.1234317917425223 4.638056028529566 3.4900220028279314 2.1014307647382373 +1.6230695248139066 1.6640281371210142 1.721133066602286 4.817933283096302 3.097071066152585 +1.1820642111837243 1.8544404390143905 1.1391169708187916 3.245503622386308 2.2110980343832813 +3.8080387298221434 2.10121602535295 2.2834767372811187 4.585330371877852 2.8656192872741704 +4.6692668569309195 4.740216125271727 4.813150336251468 1.2394741726022689 3.574380382851348 +1.1954079661200554 1.9914437065284294 3.638829749542773 2.4483248673609057 1.432122471894904 +4.935170114643106 4.730963595214384 1.5965657341466053 3.919218917833246 2.331612771080756 +2.5157225806265955 3.1681802643857178 3.6966314872590282 1.7072220386743648 2.0936692630915354 +3.0666903812611603 4.345604909181388 4.071518725201246 3.233973904432997 1.5287588745518819 +4.545790206600879 1.6100004992750874 1.569680101418251 3.7919163401181155 3.682009655912241 +2.24231220381635 1.8639891237240338 4.563952004220323 2.409542034151095 2.187375292917114 +3.3393858691403406 1.0606971861986287 3.282036652835429 2.77390031362164 2.3346572881252237 +3.9186928968111703 1.7592506951297517 3.9966060837308603 1.9911371521692924 2.9470487369335086 +1.3518551856465457 4.004363158735641 4.515836479303401 2.1407104004642035 3.5604806470030534 +3.804746334396036 2.6821259141619094 3.279149456336323 2.015484812444534 1.690303209530411 +2.6097986599535923 3.9010381224014083 2.4593850156915096 2.8516480721625106 1.349507189626827 +1.9363690458941862 4.914803446184771 4.158012008114096 4.862136640751181 3.06053311942881 +2.1444054384528326 3.7627556124701735 1.8930469752759813 4.9786839386685 3.484280808946971 +3.1622010196116985 3.4048486419866157 1.7122291134786516 4.703426232948578 3.0010228383285233 +2.219753804705364 1.7734899772821855 2.0993036239307257 3.106291546506096 1.101442726554152 +1.4957830766538298 2.3465785436723596 1.0497982181792516 2.2595210386677307 1.4789463239448142 +2.472883044937626 2.905731595653169 3.3613545128692692 4.979913598223719 1.6754376683839898 +3.8152158875658966 3.3900578873102734 2.7093583292976233 4.342033904618486 1.6871244350760466 +2.18872348708877 2.634469152198331 2.153008206687103 1.4979404540884045 0.7923401784957482 +4.352078684780315 2.7269285670933883 1.249107126313985 1.7941400044842517 1.7141101899540752 +4.480647371337987 2.2256330664692645 2.721538509251995 3.1643331226258993 2.298076714297309 +4.575704174099618 1.5696484486498354 2.240459798233648 3.913969983846331 3.440495221019616 +2.774655930487466 1.685883511079488 2.831380043541641 3.9195130308243287 1.539304641478173 +3.167266605156003 3.0360881683886443 1.907614481912212 4.840041879360615 2.9353599819406715 +3.0716339789143983 1.6792456436965382 2.392597917678309 3.3033321952078323 1.6637855030976758 +3.8986198997162975 1.3140560149507348 3.033949672018163 1.5361792888470993 2.987187070663445 +3.2037150868549413 4.712556331910189 2.3643191809007975 4.210638980519084 2.384428381235717 +3.78305101797257 4.29733200355956 3.6041430055012 3.662819230242703 0.5176174567054717 +1.831660250409643 3.1171160651412815 4.7848221475068256 2.96767820768891 2.225850118414166 +4.259548599636806 2.791711874015189 2.4306216411884747 1.4434189206480394 1.7689301468757963 +2.469993992520146 4.188877417182839 1.2465612728687314 2.19647176296473 1.9638966792513723 +3.7656208041900245 1.2015573844483267 3.4448220178956515 4.891544596248499 2.9440494967261337 +4.552931079809854 1.8424455242532058 1.5323863191643623 4.790286686344471 4.238000324369208 +4.953871968568524 3.7792262121880644 4.143247178040446 3.092416242303845 1.576083217499534 +2.6631079464599536 1.7108283638716548 2.8716775628024607 2.510413999117644 1.0185027078318438 +3.7553125229671345 1.732344712351782 3.49338351875097 2.169606200515681 2.4175990467941717 +4.785634613928057 4.145753083406914 4.911206328374822 3.7453503303426303 1.3299129976241748 +3.71751888080678 2.250903020413109 1.29877050416184 1.896631832651578 1.583792994700312 +1.5667876594715993 3.008174874020511 2.8777658584723658 3.2107229904661794 1.4793436226957606 +2.7571976384608434 4.641378538806926 2.7023095468882286 3.78576386748169 2.173478992316607 +3.2041495173993804 4.461978124256493 1.9297993737116217 2.769804304880389 1.5125280455634371 +1.4139136613895786 1.6798350822281516 3.7591166235312796 3.9387671486523566 0.320918234503875 +4.245965140796195 4.872178945773122 3.369057259253882 1.9774639338084823 1.5259999059527714 +3.998575730665427 2.205988566325054 2.9751791936228 1.745990572266074 2.173539373609484 +4.320244061685234 4.605763120080665 3.7461030121685255 1.2462274251544594 2.5161277954936896 +3.2732540684962186 1.744638724551817 3.405768848021581 2.089891154401031 2.0169776831463455 +2.798458632035072 3.1564101311164174 2.3383865810283044 1.3262527350432327 1.0735661124882414 +2.4626405215334426 2.0624929160970007 1.009359111682504 1.228832639526459 0.456384416430699 +1.6372643285121078 1.6775854334835731 2.1853059854754915 1.5042950244089623 0.6822035770932878 +2.975313343307807 1.308665771785316 3.4728266776982104 3.0231956677249006 1.726233522091213 +3.315692698081092 1.4512439381966118 4.493295119101981 4.091415659779004 1.907269324993328 +3.925469220645189 2.5452954451032883 1.2143195576962307 4.423871672915944 3.493723576788084 +4.904861361943187 4.256328602243256 1.0856043114646363 3.5441429244491855 2.542637774426393 +4.394599511860918 2.0152480381318396 2.6054088379735463 1.7426873668469898 2.530929033434068 +1.7689896989268012 3.696316419451567 3.161443325260325 3.180898608874478 1.927424913118344 +3.9653080543058508 3.6453889268852806 2.967889838775495 3.4952974726574424 0.6168525434546683 +3.575393393213535 4.018340449108473 4.8218398582630275 3.0763383220317686 1.8008269509621624 +2.3098645446381183 1.01400422370123 2.3410690558720253 1.2445125288056214 1.6975541783491295 +1.7625788799716968 3.3536717607646875 4.835524887254696 1.2479558110818547 3.9245672922784482 +2.0538069386855553 2.2422332031916454 1.6689434407627486 4.020187591366023 2.358782209722176 +2.0559178388346964 2.421993168809875 4.667275741607845 1.7011518258278913 2.9886288212118686 +1.184059524210666 2.5129093497226003 3.9139702519633146 3.060301589710871 1.5794277582956984 +2.9098373676915705 4.172958999423786 2.5185438147593193 4.691089927794437 2.513052500409383 +1.6423062356716542 3.825508092043532 3.0902893150137687 3.9376962055919007 2.3418942725633265 +1.3357960730226432 3.9694485876453944 4.13229753083021 2.0058599362406655 3.3849464414466754 +4.841475791216302 3.416234395931275 4.934589122336359 1.5413074955719686 3.6804447059249235 +4.9411302286867755 1.1682128740531144 4.753183949560444 2.761555537547188 4.266320322764608 +4.862530110595655 3.7814307416771396 3.055083175854493 3.0755729162781273 1.0812935193270325 +4.322649727024995 3.732922781403374 2.205746480567428 4.948163674817002 2.805107829960894 +2.356126558797747 4.4372751689966226 1.4051556098759987 3.1974911858929773 2.7465699253412112 +3.8903226137076836 1.9715351075969565 4.608068902524899 4.397834891320433 1.93027040413351 +3.6967313870389433 3.519967713155388 1.235248394173699 3.486017437571294 2.2576994226693987 +3.050024254381684 4.32937883235338 2.9348259177972875 4.729882755375751 2.2043087774434715 +4.244892840283695 4.6344497878411826 4.0895397780947675 4.105382455105785 0.38987896301952785 +1.1670716407382602 3.172710356576426 3.138482371505823 1.3102800188429322 2.713836859641916 +2.249792328821682 2.6084939475447393 3.2188101295433236 2.713221855624251 0.6199083432242292 +3.5463475259365507 4.947640463790366 3.308132617632064 4.240655144791152 1.6832172056327575 +3.248739935635343 4.860518912047787 2.5822440353328426 4.483480510120669 2.492495055535475 +2.854348194531325 3.0336361402233782 4.2718959763244015 2.1197182845848017 2.159632604007466 +1.9719971674476362 1.6337310591015308 3.139357214825463 2.9938493702938245 0.36823429073873964 +2.6872691462343283 3.294871932842747 4.836942758755773 3.6683583534075304 1.3171069275944995 +1.3910764737274555 2.931966206000056 3.2416178384513588 3.6701285823713 1.5993631934860664 +3.1750484333560434 1.2767182901754848 4.082018192569297 4.123868930297513 1.8987914094908678 +1.2005545159911417 4.2063073640662605 3.7455023197797757 4.878646470940136 3.212252457547604 +1.7134318359048382 3.9657603102855346 4.3581098961084725 1.8207067271953918 3.3928451774456523 +2.3907677967541394 1.342794472999341 2.3615147827321534 3.661618419773858 1.6698854913887802 +3.792428013191668 4.735513177317407 2.566904166156042 1.160243288250784 1.6935478889666105 +2.323173636318286 1.4129580687674697 2.2924467050423574 4.539910280480985 2.424785537389902 +4.968322751765516 2.223040824405911 1.9511530163522965 2.9269495496925977 2.913546247301768 +2.840509276131468 3.4160721330340933 3.342113282588788 1.3954338659873522 2.02998358448181 +1.3008358618292761 4.518403401453208 1.0109374372410795 4.565969437450902 4.794892427840009 +4.429525081171706 1.5894478004716621 2.179769052257285 1.112934248136051 3.033838403678242 +4.675530795205116 2.2174822224450494 2.34452188610672 1.7357434427106284 2.5323139574688542 +2.715277191896544 1.2339423095774333 2.501535739715569 2.1132956463050494 1.5313665151448173 +4.53386919006272 2.8834431123424284 2.5567849825355555 3.470487311868884 1.8864671172984535 +3.381406679321473 1.3863670839514062 1.3189343564691502 4.397556363110682 3.668527831006859 +4.038095487139133 2.004258741140861 3.749246179412421 1.5042427860259986 3.029279146214391 +2.495678116582077 4.115292529217159 3.3584589551748216 1.9179751515048138 2.1675203422922924 +4.212593324287532 1.6958651320789735 1.89421903672828 1.5670443524953122 2.5379054488810846 +1.2998527808979636 3.368764268296407 3.7018949523291447 4.519130895721861 2.2244705729369003 +3.889281412819138 3.1241430878172403 4.510507178131843 2.1404438493020073 2.4905093533353115 +4.22601303070473 1.6805370070221262 4.331737185286357 2.809225792330427 2.9660561573954745 +1.8333131188088596 3.0549230964809784 3.698170168098051 3.193252079555404 1.3218446253949951 +3.4538111433750043 2.6190243074534023 2.8695562012572946 4.584721714076965 1.907527666324649 +2.1391951137642518 1.607285758748259 1.7280468513602982 2.3138607384909706 0.7912682682306157 +4.369680763804572 1.4083495006491287 4.94623685786865 4.38891700552705 3.013318481003274 +1.0092908944465053 1.9467056189272252 2.0107460209997825 3.5440137220758205 1.7971244277557028 +3.715872666205399 3.9190784778387644 3.8415565383026293 4.785237733024889 0.9653117626725609 +1.4846116221996803 3.7549144373394974 3.7487848223474063 3.890666100557225 2.2747318895945146 +1.1391517426636746 4.4457971794522235 1.7981767935970563 1.0979696583420608 3.3799695378651777 +1.3387367634049845 2.3840999107630605 3.5242144123583032 2.195563770433792 1.6905906181393526 +4.982388213483663 3.4237593355914755 4.7139352905778935 1.7054327843620847 3.38827556566851 +4.752016406171201 2.985071985658307 1.832403304073344 2.261020529652526 1.8181873696747652 +1.733010438387117 4.599810749068076 1.79247803430889 3.2073083764271284 3.1969186599441115 +4.261746898534511 1.3544030704308945 4.179320270501923 1.1627909191218064 4.189522343006412 +4.596924258736743 1.34317395823832 4.51635592211673 4.9285015104987515 3.2797492288308168 +4.611089514936474 1.3667558237872472 2.366569159090747 3.0879284122888997 3.3235613837720166 +1.0383891832387149 2.9995437041533886 1.948584836050364 2.7138042851677273 2.1051574430934004 +1.0205710037287878 3.2958529501162848 2.7324702731610575 1.9929332820591092 2.3924512318467435 +1.4445324350900846 1.8303026676312224 1.7474700419964004 2.890208924794791 1.2060973536883983 +1.8245658055755305 2.766863523911098 4.223773406791103 4.05333096991661 0.9575884367869799 +2.679964890308377 4.254135735519897 3.6752423973742325 4.853261804983942 1.9661494283545908 +1.9551219357976302 3.561414596273225 4.670786825558855 1.8300207987345178 3.2634533442746037 +2.386356458944735 2.7217434594834087 4.910903537696154 1.7645932839899654 3.1641353720577485 +3.276963453273949 3.2551737898004167 2.103820604745286 1.290890999052166 0.8132215769682095 +3.3504101964044564 1.1078787418441052 3.132974965594392 1.9521820916074506 2.5344070580612943 +1.3457218349277111 3.369469533947028 3.032668557007814 4.731987037704332 2.6425817013145885 +1.2325642121789917 4.97204163768064 1.790532577056621 2.6593113248539613 3.8390712325327785 +2.5639050278846796 4.263909064162204 1.0312449934571482 4.121036713598805 3.526588521108724 +4.137369215678895 4.0219344656140645 3.4545065560339774 4.109657692476055 0.6652429579513601 +4.619739033007896 3.008295524611025 3.9968627074570837 1.3791977575349024 3.0739095580067923 +3.053868052612824 1.8548456906422923 4.402214375031692 3.0634550970719006 1.7972008871655984 +4.148820152575681 3.2382099659863504 2.75129378042637 1.6148710623498959 1.4562511823447823 +3.4379454395007687 1.8238054608654317 2.807117990699958 2.3520476134576875 1.6770619901698054 +2.560516812826097 2.992320150876878 3.681514886785625 3.049829855353688 0.7651667149628011 +2.7371334540116723 3.8654552422667865 1.5071725754156091 1.2554615095490065 1.1560573162827696 +2.2520100461393233 1.1902992933211305 2.805986560478535 1.928929818314907 1.3771195487772476 +3.745738119901979 1.7058058621525714 4.836142224852916 3.0897561638429445 2.685365504041585 +4.647872578523446 4.759692818666379 2.9615446834967587 2.68894504187038 0.2946427170667103 +1.706758509247884 1.8745245872100962 1.6772992739443224 3.9570802460476813 2.2859454800321375 +4.874775448820669 3.681108917585575 1.3899287377606804 1.0217110456145697 1.249169346646094 +1.4898502256101191 3.58912168619778 2.6458212061358735 2.3328570690248935 2.122471958909109 +3.8290440217507067 3.898634964587402 1.37354439295168 1.717485729581946 0.3509110177351433 +1.3288849228544053 3.073557936492641 4.0046517100515775 4.153316133289498 1.7509954412431195 +1.2454963348614494 3.32312732314449 2.409613007493886 1.3584831271184314 2.3283952733357114 +2.4613975859412403 2.670611606622009 2.440654622125223 3.249453544913516 0.8354197770898867 +4.561064059289739 4.229242423516984 4.671943215533613 4.48606376527038 0.38033770257110794 +2.642733939418645 1.7317511439638498 4.525973794204267 4.083129855441202 1.0129167822253804 +1.6692813122223544 2.08141102569522 4.1044759189761315 4.896652209724888 0.8929693031407542 +3.017810588683884 2.488897071776504 3.2074903053504777 2.9478707090741603 0.5891959293291253 +1.8077354790762312 2.2573585105343303 4.288516298072056 4.9757793677730415 0.8212742522400127 +1.3784282020977057 4.2657414628923735 2.0790647910194906 3.670417811220681 3.29681396212528 +2.125632055054926 2.9616394712499865 1.1138411988696353 3.6482535246312024 2.668736449502891 +1.5114114750668617 2.477880007114317 4.239698351949061 2.030693971004992 2.4111743567125234 +3.6535879350725655 2.6467688442266244 2.6407647253108273 3.381929575093786 1.250203989853513 +4.050786373626446 3.0696568261193575 1.2810016059278282 1.7646606213717635 1.0938652715081782 +1.0721232637895786 3.5094373307333786 2.6260676017036166 2.1587044149498995 2.4817188014065406 +1.6694755927588987 4.24677738628648 4.303358253429712 2.448293745129792 3.1754919091180995 +3.7328001512538593 4.931503334009812 1.7001310881922418 1.8635091324912185 1.209785809847433 +3.326628789342073 2.655645791891019 3.3958388972731943 4.2400011693130395 1.0783450859552683 +3.8244359376574257 4.259323846389041 1.649491831188473 4.167663274104038 2.555448083815521 +1.0518368254100436 3.417201964180059 4.5005668327004305 2.134034078699269 3.345957189724461 +4.338985328893161 1.0624037552702679 4.028052053855733 2.4596237044989424 3.6326236105150143 +1.4795566688458077 2.931983841428556 3.836714973937437 2.978318848099588 1.6871243583417748 +2.9646052514307155 3.5242928909630793 4.536993403443347 1.2356200913243116 3.3484796549803195 +2.0481987127388077 4.1515564142003125 4.01930145965543 2.476885734647931 2.6082867727778387 +2.637062080357432 3.8035961263629536 4.282183462367993 3.9587743711697994 1.2105350555682615 +3.399032489870332 1.2338557886415695 1.5876744008553567 4.809603925839142 3.881857804132721 +2.6618977646130046 3.463254477044981 4.008049096992268 3.515612814497522 0.9405668891030722 +3.0096949280377574 3.6328216096172983 4.571149302391644 2.0683195599977715 2.5792331381066953 +3.866836441817553 1.9924605690024313 1.089938996295313 4.2663972033276565 3.6882477755181498 +3.164064875820581 3.7148936437935824 1.0428492838602264 2.2264509927108223 1.3054981182754364 +2.245689662684765 3.6456643736622256 3.783161843759289 2.5952691853448555 1.8360332674794686 +2.599675587253688 2.9879702055549267 4.060902982443186 1.7856524448455127 2.308145948470375 +3.4434473748843177 3.4094807371850435 2.7475951318610075 3.8602455538269553 1.1131687625771736 +2.4636514028825363 3.8850075681910172 4.369121306472479 2.0667458038816964 2.7057690780239527 +4.756494391643544 3.2546384752608115 3.4287891741943035 4.133571953056164 1.6590027001045127 +4.015996081852701 1.7465053990580346 3.304543404111855 3.0332347381492824 2.285650093850367 +1.146716768176875 4.745024617872506 1.5215459180514417 4.828133127009789 4.886853624943983 +1.7074054198808377 4.358361052930403 1.5813029203213613 3.2201551863888342 3.1166332024143792 +4.285790429179589 2.119767557726794 2.9257431111648065 2.0487118814053042 2.336843781177954 +2.1724906426650037 4.333012785218755 2.4671172769172722 4.305374430966413 2.8367314453218686 +4.63171469290711 4.605864074510768 1.9037992886868706 2.5144237680454213 0.6111714237948093 +1.5320572902411387 1.7566010589344638 3.601246495475269 4.1667110806339585 0.6084160592289541 +4.848050969818587 4.46010498601019 3.464736973947778 2.0947227414997895 1.4238823980452582 +2.034337797071981 2.3306208284536303 4.497264972367468 1.651083608639436 2.8615611106382923 +1.2803046861556653 2.9165046981524463 1.3698786307737438 4.9653046720569805 3.9502201074871652 +4.350652730381468 2.901107127086062 3.913261111556778 1.5938781490489933 2.7350904523990485 +4.250543246302359 4.28551153446699 1.2686238659240026 1.7709604117943787 0.503552168592436 +1.7638528256607109 2.6652919025910786 4.06387142230936 4.098189517276559 0.9020920912297431 +3.90720106322844 2.037909698514209 3.7519622096408614 4.215732148426406 1.925962814364893 +2.9205081958793593 1.0460915492812441 1.0714851386297988 1.7594462175305727 1.9966792960128674 +1.839815676866226 1.6006175647733505 3.5270062141014473 2.893324742476385 0.6773241058088073 +1.0141707247433454 3.39989893414197 2.1878399494021434 4.476282353122212 3.3058535545702035 +4.767971917212542 3.5442346165912713 3.7888884310990516 3.4263195500072925 1.276318602257275 +4.486035855239171 3.6548280790090186 4.207673824282036 4.395404262776609 0.8521438169715485 +3.841513461754177 3.8441377697942634 3.1255881143021442 1.7154022401904268 1.4101883159836908 +2.3436812492588324 4.623551403584486 4.139642690711508 2.740560226445673 2.6749279733108775 +4.099200434698542 4.047148308891931 3.4884501435522983 1.3462227951840542 2.142859639803276 +3.4208624153418112 4.53430351363496 4.047294459302768 3.298227388874344 1.341958477512801 +4.424250238304969 2.8188688409473484 2.580721869905488 1.878562652760273 1.75222059033784 +2.160438528244861 1.5420800933392602 1.544136908393885 3.9754397170611226 2.508704945076663 +4.900593035257074 1.3084303534808877 3.8583202301336814 1.2841897728369043 4.419251106638816 +2.031084697588582 2.402822824305117 1.1896703597032143 3.0395647577693863 1.8868753320904177 +2.08374132774879 3.5180819588123673 1.0632913518720035 1.8430459370781618 1.6325900462363134 +4.511750529865877 3.1321016808770867 2.391250543732341 3.3110368523259237 1.658142876833086 +4.294351387523822 2.8612906601760413 2.508556010697672 1.9562461201361692 1.535808993162434 +1.9042295092543684 1.4223430440138785 4.404301584351767 4.058977572744945 0.592843350619877 +2.3357406940444143 1.4147826016625 3.7245279953499826 3.429166492125222 0.9671619437875566 +3.1804805984759255 3.4584712207985016 3.3414715223031615 3.2903345707190432 0.2826548671376624 +4.148353535375161 2.987836929572269 4.112473961163255 4.062051118113999 1.1616114907512904 +3.6490131069450813 1.5021384174182777 1.074988252066536 4.753114708934629 4.258836128010075 +2.57696160952671 2.489325288091927 2.7695012379444504 1.2532071288537159 1.518824529067754 +4.847501157353641 3.9175292988164934 3.9534115128497986 2.2517867622433734 1.9391684943674736 +1.4246668418013746 1.0838742128941767 4.186746184247436 1.7045216169547226 2.5055096125117897 +4.79598042590793 2.579845207138572 3.915300247008474 2.9820623692731774 2.4046181077896325 +3.032027747966732 3.456049622747435 1.7335201875723452 2.5395674317754913 0.9107725897171195 +2.9463874994709656 4.581663961433563 3.62438955367432 3.581507603344426 1.6358386132846374 +2.836117407743 3.896451765370523 3.6126192280528326 2.4915960488446554 1.5430495514685783 +4.941470240147474 2.5289128116558346 2.2044655065366943 1.4243056348185754 2.5355636003085045 +3.7166568987313644 4.475785786256713 1.872053762491618 1.4104417268451308 0.8884606571644957 +3.577177168397961 2.479000694760211 1.9219564191242178 1.402606344827078 1.2147905444659541 +2.8698793051256057 4.354135893131065 4.419623162479903 2.058220822292319 2.7891286509017483 +3.4473808944067197 3.8047025962013135 2.748236720501286 3.35264412324575 0.7021304060256135 +4.592190322963127 1.623331563621969 1.9997564365619698 3.495226048922739 3.324237009361876 +4.251848008261363 3.8758331928187073 1.6565425953718993 3.3325181405512274 1.7176382533791918 +1.7516637097974646 3.0250359515459886 1.8824062435252769 3.8051205980511216 2.306145562438633 +4.957293716865308 1.321883172237555 4.253162195133593 2.9533162438713454 3.8608042329291337 +4.6173584989490255 3.7060338392643732 4.958640023491189 2.451487942200923 2.6676439406464016 +4.671766224614227 4.801826288208753 1.765192017183122 3.575877388428246 1.8153504162511727 +4.7132010620838045 1.8014951770574106 3.4880434644085274 3.0822505025695497 2.9398467798127483 +3.9841388866049154 3.044528904679658 2.6968413150245545 2.629814507675778 0.9419976173202099 +3.666744985066238 2.7787995787394677 1.2644435843376631 3.4424044968726744 2.3520120707911243 +1.0066720360477621 3.5084432060595003 2.183153437832725 3.3304466553136924 2.7522973520278895 +1.184361096112537 2.6103783526229853 1.3697801230053823 2.9578736314658327 2.134377241136114 +2.444365710108501 4.7605598172031645 2.83643688689256 4.768796720653983 3.01641669350813 +3.793405437217656 2.9761138957239544 3.457334911362549 1.7196624359639063 1.920278910876021 +4.129848195676149 2.7070615951939057 1.9587249107073648 4.6184838970729585 3.0163951292999314 +3.984081129120437 1.7471420193031912 3.577516114968311 3.438330428881734 2.2412650972701478 +2.31369585239399 4.232330264499157 4.0153841905782635 2.6914129582524824 2.3311065679930607 +1.7188687011076156 2.4213796551038302 2.880071895872915 4.978774928885455 2.2131597459877828 +4.1365783588012 3.836336215703698 4.150326667100254 1.8865042223291804 2.2836456393103246 +3.458682005808777 1.0081610417502103 1.3288877690766552 2.2656856752986734 2.6234792380334335 +1.4148782303929313 4.705627555963257 1.3405647756234549 4.1484631213712575 4.325889994416733 +2.299284963807727 2.65839359297753 1.1302979395305175 2.392516136907065 1.3123085709286195 +4.714250959768078 1.9464699375131786 3.036092226271661 4.901051436054898 3.337466800031079 +3.5516165711215133 1.9602019877869026 4.050569758963643 2.8687172164453423 1.9822653223791828 +1.88894211774798 1.6198327833540636 2.105238733244509 4.619494561286395 2.5286166579180254 +3.8771696407769007 2.3287307013745773 3.603604686555022 3.2663516927308724 1.5847405878883598 +2.1593368356725033 2.357549233420795 2.6735455084591577 2.249417868239412 0.46815853064907065 +4.51402358569491 3.4914468722487517 3.35801369143715 4.9927147204289835 1.9281884215681067 +2.344671595059241 2.168926770466108 4.232857063647926 2.341581782858703 1.8994231837838629 +3.9462684023341126 4.69831852208072 3.6112020069535515 2.7158014814617104 1.1693252257870572 +3.3974500987066443 1.1061623768393622 3.420388865499012 4.985720944829278 2.774934943914933 +1.8452067344802634 1.7436167237238607 3.5094748773586804 2.407594035863645 1.1065540742048232 +3.5629962344614454 3.2607012024694426 2.410510633598027 2.0517919646840608 0.46910699184136406 +3.638827568972361 4.194773068416736 2.2903886141661993 3.809427789162818 1.6175770193492687 +1.1805762628673593 4.535530217423725 1.7295039917850414 2.488371907503409 3.4397087886476867 +1.5747976058897577 2.6939525507678286 1.7357354479158382 3.9165938110116176 2.4512549827649184 +2.402840460413867 4.923008435685052 2.918855128120859 1.991756150820819 2.685285671449733 +1.8078704680069055 2.0484742217923344 2.9472030488603305 4.068442659442223 1.1467643309213418 +2.3884763439134646 4.523013232711314 3.583492758863744 4.647771721712574 2.3851493538982798 +3.765348597927679 2.769898954607354 3.754719613384996 1.8492012338336528 2.149865178841347 +3.141353514488837 2.709484606772508 3.4360298758871606 2.2074716967944306 1.3022541813592843 +4.567044018322547 1.4037685999832772 2.7551903382016483 2.8445895298656407 3.1645384478213656 +3.2285009322733673 2.024384098161303 1.1248858025284196 3.1354064544376676 2.3435209924269182 +1.3961202286336887 2.6778353363269325 1.644051178052944 3.7146707454999706 2.435212313204665 +1.9368786416864294 4.8817669050430705 3.2651316967663897 2.325315052019333 3.091216946349659 +3.7327275823815302 4.006082885053784 4.032370293674168 4.605425428091825 0.6349136229295125 +3.056717747998561 2.6292835075740157 1.8043711587627955 4.733522165243826 2.960173246392201 +4.347974338979524 1.0459163443591946 4.284608312448688 4.231775362552514 3.302480631348315 +2.3904702739250427 2.168339095461366 2.055667955008017 1.7648705986636268 0.36593081709873515 +3.519828610749161 4.426884309638843 1.4923783523136467 1.621690547156148 0.9162268739909534 +2.466045761084757 1.8786157967832322 4.379967481798257 3.1996631687822137 1.3184051859286523 +1.2297808436372692 4.577979517790492 4.791801361994146 1.881145963082992 4.43647937139485 +4.772481555648341 1.1515942853102956 4.778462181076598 3.009368962475448 4.02995228763278 +3.1266286946326396 3.5743883959440024 1.5412946303495554 1.2989075314875485 0.5091564158617479 +2.9400658488173605 1.7236087827680633 1.3577092408888407 4.046155540192454 2.9508492502634827 +1.3885654836433337 4.8395820305783745 4.31844805216137 1.3650866607337262 4.542230588113607 +3.7696261291741577 2.810093791524438 3.5344694002921573 2.7010139087802982 1.2709643438455738 +2.6104173398093793 2.510150746929538 3.0802198055447323 3.501861215130025 0.4333992015737964 +1.673604979880714 1.7228731313414465 2.501678546458556 4.113204032459745 1.6122784321511363 +1.77754857876117 4.112950926050356 3.535867982954326 3.9901925994042275 2.3791836795077823 +3.9105739177364782 1.7442942993557669 2.2763834164795664 3.386281188993622 2.4340584320108962 +3.80167194931142 2.722600279321449 4.98747042730027 1.1379812903013455 3.9978697183434666 +4.237922904805568 1.3911468213325957 4.52740707230642 4.412082639712556 2.8491110533264257 +2.1200253796947086 4.925757614666386 4.996741675324648 1.8728917765940065 4.198877417138848 +4.519684414087162 1.3938653229519522 3.071870509990979 4.18355582718605 3.3176180061864344 +2.4625415029140623 4.964967222521153 2.6399886675315143 2.131141654942391 2.553636576408621 +4.526518545381761 1.2674725570346865 2.8914116952667457 4.127181223276784 3.485470854923236 +3.9559113484661657 3.980637042525293 4.663306826341094 4.976317213024106 0.31398544889557267 +1.2950112487321306 2.698435320911153 3.0309979356512815 2.4681580126634315 1.5120806543569425 +1.9676055657385252 3.9106553960454455 1.0097941631576717 2.226793406033603 2.2927123239116463 +2.6938182504659545 1.4948081472989814 2.2417016519028103 1.1281777714043422 1.6363253527146862 +3.1889605430820662 1.998875211514561 4.043121267191362 4.898482807748309 1.4655874117486452 +1.1365007209763975 3.9132722754687945 1.5352540212613608 1.3343822775878058 2.7840276082044473 +4.199098145456162 3.4152729082871445 4.072919610492706 3.952205586580863 0.7930661246025174 +2.07161079013994 2.473589222584548 3.104627219096008 2.47344584315449 0.7483158353837316 +1.5304105509113746 2.0927376587910054 2.5267111575736503 4.2915856139967055 1.8522941513676614 +4.609211741409988 3.727106081165144 1.9572342109592178 2.9771824273862317 1.3484823914418158 +3.201644678154433 1.8473360840230115 1.3953246665265482 4.253414878896362 3.1627253169035017 +1.2859562231165578 4.038582962839402 2.217224417330695 4.241411393862332 3.4167655588578953 +4.215761324742424 1.3228377256404653 4.056817302294313 1.2519334881085347 4.029439186949269 +4.036487186212232 1.2704012425962699 4.7567807680513345 2.6988961720169726 3.4476253360922664 +2.9227107798325282 1.111806348706982 3.0897637439195553 4.854869165906431 2.528828188983507 +4.848201249294943 1.0231683304021666 1.1987705485170306 3.6774328578893063 4.557920981600723 +2.9406902436293336 2.525098050375826 4.100544791922977 1.9949330815888286 2.1462333390825794 +3.4699144442828214 2.2566887908771838 2.665196597698654 1.4682838539305885 1.704264240743182 +1.3084452688310004 1.1114493038223738 3.585244027348727 4.62024856047402 1.0535852095675915 +4.536391620506047 3.722602785268838 4.397651585757927 2.8665380661310023 1.733943735633046 +3.873065856839864 3.9498740159363885 2.187989782827877 1.6130527089474542 0.580044939833096 +4.455923098020865 1.8328723709132722 3.750520159968528 3.301973451956895 2.6611255637883273 +2.824500934479975 4.922515786227901 4.802881585596556 4.8486535203403704 2.0985140905328854 +4.139757244300455 1.6012269176023133 2.3923943529984277 4.474706519057566 3.2833154244580394 +3.365862934379114 2.9949522638402852 3.787482758623841 3.529701776719826 0.4516921076916904 +3.621181576386587 3.8959507188390936 1.3111162504763993 4.463618837999038 3.164454241410518 +2.4536418475098545 1.8293189795218208 4.595618941572484 2.507304173802586 2.179641624849977 +3.2989989140104887 2.728133886845306 1.3836526311480353 3.059859905280173 1.770750604996027 +1.884872927206204 3.4965189674764434 4.563246590082287 1.9531483011364625 3.0675749440032702 +2.0587973878973957 3.7067994138796845 4.282757816577422 2.04586739976715 2.7784149104227325 +3.945544360698739 4.936805545451509 3.2513328332113747 2.487172388273058 1.2516149256084288 +3.8791769108615832 3.7972642776584964 4.6403036919734895 1.5153830996675448 3.1259939839507047 +2.3619554278386468 2.3078454893602123 3.6467449603478705 1.2777114155095082 2.3696514136074014 +3.270185524027793 4.117611639297705 2.7643092512316834 3.90428508315255 1.4204491959254038 +2.243895551179106 4.358562229851321 2.2849893613933827 2.997085796960369 2.231344100633917 +4.04880254262496 4.705472070365598 2.1448025597975144 1.3997528098860914 0.9931334243223244 +4.561741203307234 1.2137927873118057 1.962545286850193 4.059891488312246 3.950648008232776 +1.9144013664410289 2.894209517008343 3.1021272396820287 2.4557781210352894 1.1737935061558131 +4.778921542801722 4.298343020325388 1.3364379273457039 3.6530096010890185 2.365895186996972 +3.709629764804317 2.0935124102191924 2.943038267561525 2.252696771949287 1.7573863218869556 +1.472611324964212 3.384673213572048 2.041207901372812 2.895912040093203 2.0943972475660697 +1.8111082404473424 1.348928000111834 4.15946490871109 4.35402354607727 0.5014615019424453 +2.75236063196938 2.682361390598826 2.1283254136756034 1.7724332266450569 0.36271082501331353 +3.846978707266613 3.4576358277595696 1.5580559186298841 4.35727520240534 2.8261663922145863 +4.932261199275549 2.6678674463238665 1.282167702153401 4.7468037910557666 4.138983244340485 +3.373722665582458 4.482492683880846 4.04442688681255 2.20785601618837 2.1453119857733203 +2.092292762922161 1.8200817166676502 4.0139408736460584 1.5526849490774017 2.476263229127164 +4.775469681144642 3.7017190020701274 3.9397427987321962 4.359342007306299 1.152824365048291 +1.7115223606526198 3.4530349447795565 2.269548334465141 1.9539868628197237 1.7698714990245767 +2.3895935238827763 1.5938187761822333 2.5972265068361913 2.187573372829492 0.8950268930481214 +2.79962987341883 4.553226632792315 1.0369866505287058 1.6300275139140874 1.851161543499126 +3.2505335158916595 4.87501637772124 2.2196712943349755 1.4908070649608591 1.7805020733599686 +4.02814544745072 4.909058770167411 2.157070704416759 3.91534630902242 1.966606565607662 +1.2018487095111228 2.232798644949382 4.6517127052914775 4.061618445705163 1.1878842555471776 +2.9037208347831607 3.4533609206448648 2.9607679418628776 4.199752686202799 1.3554288696545906 +4.4918433361399295 4.6875909065868555 1.1806887115991311 4.322563290413941 3.1479664833569325 +1.2208430011633498 3.4763916676731337 1.303282216905112 3.9945123747379765 3.5114412353652127 +3.882992211698164 1.9626570561670533 4.733735021979021 4.137382881249245 2.010801577809626 +1.535398046919565 2.7316419788329624 2.644306761677194 1.1553121473457 1.910001179619484 +2.065610686766308 1.5858771331803618 2.6617785867654744 4.983528329107448 2.370794412955543 +4.864283908052078 3.369512815314743 3.7997633216646833 3.031487054835402 1.6806513742761477 +1.1103519920799672 4.623173335407573 4.333671699189223 4.455929449191997 3.5149481856172087 +1.7914483824330065 2.309621223063347 1.228733807948232 4.079354201885497 2.8973332088487793 +1.3122675181254042 1.267169232674795 4.8239752655322405 4.497803073147232 0.3292751955975851 +2.696187168575425 3.2046412838814566 1.6621560972077254 3.5300985838837216 1.935906692199018 +1.9614511672298418 4.733262326811783 3.927382408602648 3.2540681929661996 2.8524181210616915 +4.5451139150155075 3.272082935009102 2.5194005357719575 4.348930548774798 2.228853504502762 +3.5019985233845 1.5248758039778525 4.020350054664341 4.131344718848396 1.9802358604649266 +1.8726087456070877 4.97629009989401 1.6967787203599136 2.246629184657865 3.152011021877458 +1.174581194160576 4.817837627314178 4.8103789126989245 2.7713386128402684 4.175045243127646 +3.319589233861181 1.3770766977853781 1.93396288411394 3.3887739620396684 2.426897242420261 +4.942215079991673 3.146151917399443 2.6753456667853763 2.4851289630195197 1.8061077704313078 +1.2995737773770681 1.2636045738241029 3.131324230027036 3.961150677935521 0.8306056328081627 +1.38216882843754 4.481349919106416 4.215291828628528 4.091220891944039 3.1016635907347023 +1.3646417746352695 2.956479044187977 4.444444980406754 4.66439319099619 1.6069608296652766 +1.365989319009731 1.8418853997849776 2.780239072402475 4.277860296016092 1.5714154158322322 +4.416637781595014 4.2122581209955605 4.741595417750004 3.6358417020660228 1.1244831370081447 +1.0995502630898955 2.481668114957241 4.799328000314798 3.52520371025279 1.879798516590654 +4.616270525308995 4.231518950892461 3.5139682475933696 3.7747171372537616 0.4647835598158874 +4.913932914308525 1.971735242297565 1.9193001096955267 3.6528617548427422 3.414932373958851 +3.315637818422313 2.8806646919967402 4.350351657702116 2.1476494188432973 2.2452391351003325 +3.5077404346936985 2.319837482448233 3.1997049859294604 4.916831063527472 2.087973991773036 +1.9193144763509853 3.9609015979184563 1.5172282705411284 2.3532724087141785 2.206138657456432 +1.9580297287946244 3.756904082156376 3.390144628289263 4.448818472775683 2.087280347289821 +1.5789016420128728 2.365008689887177 3.884423430113236 3.8619390785516523 0.7864285325335029 +4.021758710354445 4.032560014736141 3.950186087200746 4.283640073172261 0.33362887905071625 +2.877718333312561 1.5874248357842555 4.0286523574959645 2.025960441244684 2.382358541693935 +3.017140950573545 4.844148979350452 2.6993571892408412 3.4534932588090363 1.976532202783209 +1.787124384495268 1.9781078726577337 2.5471870892189634 4.036625004826748 1.5016324441089983 +2.586173239081256 4.9838997341668065 4.815867108506929 2.2891492206817428 3.4833024028773334 +3.8807112045571515 1.8628961261252264 3.0757328937405126 2.8133547590279493 2.0348021958712548 +2.794092732613075 1.098050805159089 2.774125988839728 1.13462644478868 2.3589228420246022 +3.1988812632784476 2.3205524697593147 3.74840160332494 3.8280099013732 0.8819291074927259 +2.0020085753816685 3.329392073053303 4.486911287499909 1.5768101850857934 3.1985364428380105 +2.883313626729769 3.527969783944605 1.7266644583458155 3.159737830882361 1.5713945564715017 +4.196959012214447 4.338006818450753 2.2840219512291613 3.5372849923569514 1.261175140058252 +1.411643875822986 2.660014242827989 4.297526762337615 4.394009713788281 1.2520932605588284 +2.581460161399925 2.808277890021064 1.611028565872135 1.8745638285406079 0.347702626804276 +1.9886813572513806 4.913178012834183 1.255516069849088 2.331207911437679 3.1160541758087663 +4.485051282811659 2.3863061448395126 4.811708290415047 2.6981921802115436 2.978536805589528 +1.6098173909570677 4.700676781927563 2.9918810599715786 4.941237323086572 3.6542306461546943 +2.8169871453642994 4.6503904737902495 4.333723243583737 4.93088164669982 1.9282027702229614 +3.1556840790669716 2.1893197680491054 1.8857606463872791 2.9673835204144225 1.4504371834821985 +3.6946750099668173 4.617960807447439 4.788964761577367 2.338711649113119 2.6184340700063777 +2.130688434084827 1.7601446624846173 2.068816908371109 1.6117085132020694 0.588430770444343 +1.9730594864133617 4.070091736308042 2.340973155217466 2.691868154184401 2.126187093695743 +3.7448682732878638 1.3044461250596093 3.3475987123072803 2.7899592137722893 2.5033222069660477 +3.8981415552573577 2.0309175596956255 2.9850364403687544 2.341448573457184 1.9750267826126573 +4.558279549280434 3.434252016665068 4.484462729526646 1.209654179947802 3.462341538680446 +1.5199928108005194 3.8302730684392547 4.598888620254354 1.58064582816642 3.8009452009764715 +2.752896124508407 4.692632979647018 4.316365508004285 4.5605602053754275 1.955047344032163 +1.381310957944383 3.8625721821352403 2.6014832478286594 1.8041198691934595 2.6062320733698394 +1.1014429473753977 3.152593582078864 4.34934107693819 2.3422634359940266 2.8697699529792318 +4.15106841038288 4.794814675911811 4.799722635922439 3.416797325932857 1.5254152442506357 +3.046262179146587 2.6391573414546623 3.834108474629016 3.0261354868939248 0.9047401272087684 +3.576056963769635 1.9964175838881904 4.397257802198453 3.08349140039329 2.0545663116541943 +3.7640786293020434 1.5809310680080793 4.089380341606784 3.674830904925699 2.222157624885415 +2.1064481982621195 3.510418047212426 4.594615570730161 4.009989193190835 1.5208285038347686 +2.238124922049589 2.3632369072490396 1.3997904315806982 4.254923621437518 2.857873079872955 +3.885785434860581 3.6191870373111006 1.6163496082721607 1.7054251894912889 0.28108568932885286 +3.0940909104746073 2.4481748081300982 1.4640415802490425 2.410440596692094 1.1458091942344926 +3.0951317002213665 1.7477914543645152 3.0359973788425507 1.922717380609913 1.747775183646473 +1.5586554144229505 4.138477121229061 1.5429295948004729 2.1606679632535837 2.6527496547482774 +2.84373395164249 3.8790717062910374 4.331898005541332 1.448575268730465 3.063572142256683 +3.2512669843801847 4.5018621994342 1.0481637866667874 2.6796747773929597 2.0556790860385514 +2.2114813425726956 3.2817167322311858 2.5404696298219993 3.5718483147932996 1.4863195420536557 +2.332430042202181 1.5118625485346748 4.310761084918959 4.878087673172818 0.9975923362794722 +1.4805534455457248 3.6410336774139638 2.0221710611519863 3.6636162608095115 2.713303738207754 +3.4255099882050946 4.234325492115908 4.258225324812244 3.469784504549261 1.1295226630853714 +4.058920587459324 4.1885363964776605 3.432668429825085 1.9583279752430447 1.4800270382545906 +1.0199677135041432 2.257520886833931 2.3008078265651584 2.9378004639614073 1.3918683403668815 +4.792714492410052 4.610215579486002 4.567330869550084 2.4997187809236054 2.0756506455212564 +4.813069337297854 1.1888475035034274 3.0485756912432955 3.441790369921152 3.645490595801883 +2.7315845293316077 1.7551106228453 4.283323839405394 4.164846908805167 0.9836351321161122 +4.265556858003787 1.8881985518074393 4.958666142219907 2.047879407193416 3.7582591625441357 +4.716878432157351 1.7501989158091713 2.5053251980161075 3.171253298950869 3.040501206764182 +2.3885429732572776 2.8093617383923744 1.1640887640006796 2.221629853237386 1.1381922458503164 +4.268502628850597 3.279441696712732 2.2722020921088615 1.6552426902383726 1.1657102689081085 +4.95141667841591 4.491094721094406 3.7729834604944403 4.376414287842239 0.7589631531147939 +2.4992098763038713 2.9285333380978007 2.88106450447244 2.8932593748132707 0.42949662362974783 +3.0550269966588184 1.8500651996020183 4.330550694612713 1.3933486784613458 3.174758040552068 +4.776498468950097 1.5353019511666592 2.479796589902979 3.3832409609683514 3.3647535717346653 +2.5882250525780455 4.236750665681372 2.889801953838408 1.008048690060893 2.501725812872991 +3.4182867553320215 4.695522925513711 3.3165235699501148 4.261016685836033 1.5885211614505743 +1.8837478644679595 1.5483513442727959 4.481371413321825 1.8980303028940857 2.605022479477874 +1.6771317666751164 3.0392273403658163 1.5194385503928562 1.161421447277732 1.4083609615403085 +2.6058633679578347 1.6341090200066963 4.402512100272164 1.4972938431722445 3.063429391082588 +1.4461576586070106 1.627103187544522 1.9985678713912907 4.479948244975436 2.4879690196726862 +4.6292414640781345 2.6408925816227677 4.494599126960051 1.6890497342885853 3.4386972348668237 +4.041357328959231 2.223610669266317 2.7665617196612167 2.600439830103487 1.8253217253445972 +1.8373919498995548 4.451819520496109 4.0995080008630795 4.014121240445203 2.615821557513062 +3.5576219810396554 3.8832688627101515 2.764515524959571 1.1937292085978464 1.604186879141877 +2.814793937941905 1.4752456941752294 4.724196363931775 3.659562402857237 1.7110917475260188 +4.372789716350076 1.7919718801950104 1.9083077495530851 4.122102893021292 3.400221998731779 +3.765609434797686 1.382271686094049 1.6069188271279002 1.7562632417625332 2.3880122651649596 +4.048665368422453 2.6723305482372046 2.7494093031412348 1.8577722446599396 1.6399128578407869 +2.1852071419646437 3.9835880077645505 3.8986450166574538 2.1876406354032976 2.482279140456637 +4.111667957882007 3.888636365682178 1.221934170852935 1.51229562694357 0.36613230709985795 +2.440936973883873 4.43224569538435 3.3275086175858286 4.368529618465537 2.2470058185497552 +4.048344648502937 2.73062060035698 2.770551162817343 1.960757080565919 1.5466619290302563 +1.3407859487193354 3.335100600681531 1.420575624222447 3.019194338249696 2.555948497890603 +2.9026070798576105 3.974964656886527 3.4382321018095388 1.1266281521415586 2.5482275395128933 +2.5435660503536677 4.031527823284307 4.670395054921951 4.647114922723173 1.4881438782114063 +2.283041733702173 1.2066440565252146 1.3272501670237626 2.0060571722151077 1.2725607685799507 +1.3338970029284156 4.232262214239823 4.941096271226295 4.215248525487588 2.9878714577662437 +3.9591876483734363 2.3126480769336033 2.189813863536739 4.5700590441159274 2.894245960520239 +4.2960212075554125 2.7695283503706154 2.4773471058663064 2.114020977829789 1.569135532180128 +3.40197198713527 1.3986098713741404 3.5859866929633837 4.762236700317173 2.323149553228698 +2.483961658806635 2.2462960862528965 4.3985157912838915 4.457934800286604 0.2449806992564123 +3.513911457214426 1.1579938878355054 4.261096522187065 3.9463381946847047 2.376850941569615 +3.456577664264225 3.0599223260535826 4.630015290189162 2.106120490615466 2.554873855329485 +3.460589566162449 3.847399068167364 4.564852935484641 3.8158277801357405 0.843006686916975 +2.0686462860117936 4.949318896495637 1.294426784283163 1.4689384425777865 2.8859537431623083 +2.5769379318338808 4.468542114932342 3.4409522938956485 2.994932214333674 1.94347634327976 +4.758412110552305 4.93853875323993 2.2465929492243877 3.834552847123578 1.5981433742758884 +4.959802586536586 3.141191003097076 3.0209777085371448 2.7614691781855014 1.8370336874280864 +2.9392150979123 3.289490133905823 2.1009282623945444 4.1677453144981484 2.0962884648126305 +2.931473795481029 3.143094392317873 1.3159255983300095 1.1105251302050574 0.2949112227629384 +2.2595945476955115 1.556391193211181 4.133644646924932 3.466380408120752 0.9694000836315915 +2.7055775223509833 4.891811649127145 1.6891875283081195 2.3643951442851034 2.288126959273468 +3.1158077488669655 2.539402393928322 1.2909238436063553 2.1754422562699736 1.0557537381145807 +3.07745046027709 2.6174553683993307 1.2848051008893435 2.2677752011156067 1.0852767861197705 +4.1886610754007565 2.4019279709940076 3.17828250804724 3.2354520295890463 1.7876474877828394 +1.596418253105632 1.0190308533950958 2.6253143899840006 3.1063310237847737 0.7515006396121838 +2.1550929189155528 2.4014633401439585 4.010967858569918 4.039054589859184 0.2479662253831708 +3.4205752228741266 2.2399305257009847 3.0586516711414045 2.3522237935377244 1.3758496455713103 +1.1366739246257254 3.2428474562672505 3.9473302630078178 4.424869880469933 2.1596321519261554 +3.8321995207909727 2.0758550817198915 2.682448473422435 2.045772355643808 1.868181540323524 +1.439485694307749 3.0886802451484763 4.17227275036957 1.2035373838002053 3.396061298510745 +2.429573323905649 2.857321679788962 4.536113117854928 2.8185446580799733 1.7700310929400611 +3.0722939088476933 4.047192191942676 2.3066320382928245 3.1032352751542422 1.2589691733158652 +2.1034938879701337 3.3220515292981805 3.4929248602325558 1.408962772851143 2.414079681137735 +4.903720092130853 3.1500331497974803 4.714218006887329 1.4774243706573489 3.681338198977305 +4.076419779374657 1.6913259455989382 4.885525848737583 1.6170227400523647 4.046206268518684 +3.067164494981448 1.4695322333643324 1.3310920384375553 3.282406053061047 2.5219149920300383 +1.3002113266140243 4.8234428726474174 2.4927329691604063 2.6607896156160575 3.5272373840419036 +2.5992318021826035 1.2279318079126882 2.7695471892118833 4.9259441185482284 2.5554865272851446 +1.8246331155737656 4.823904857773031 4.1478416724817295 4.461442122905158 3.015622029708099 +1.5570121502572452 3.578491273396399 4.1651704769235 2.0242218936116436 2.9444929413521246 +1.5653516915637438 1.2916601087051536 1.8840252025038344 3.916277932175544 2.0505994830258185 +1.5663353586796678 4.007709695621006 4.678124175727916 1.8511612607410095 3.735241354422366 +1.8568168490352432 2.5834523075993117 3.5517152660429017 2.8921930181537436 0.9813096784926673 +3.6398757438151437 3.189326107814645 1.1773658496870705 3.426855851691607 2.294166568411838 +4.314727477488223 4.355195784150601 1.141275412192428 3.9438791628956267 2.802895907325093 +3.7040250826640593 2.437556545844198 2.6853150260588143 1.4206872273190223 1.789755856003855 +4.3219512014490284 4.441902842739344 4.62936419008852 1.4204270324389192 3.2111783005607983 +1.21365572296332 4.126921869171896 3.8180787292641725 1.4960133510231475 3.7254673880562423 +4.422509857690335 3.0333176740569807 3.7932573019327833 4.021290320953888 1.4077833572080205 +4.226378151423446 1.9974130676253505 4.907957740328234 1.010295910008956 4.489994775979018 +1.2684489030235353 4.952944059108953 2.867717962551072 1.0086303567013748 4.126949391674299 +2.6173241260188704 4.218999231792545 4.4636055466656055 2.4361515313739335 2.5837826782795483 +4.889578301967447 3.614567496382837 3.4569351838824356 3.4146275976048512 1.275712540588259 +1.6089023646988179 4.122530172086071 3.123045968415144 4.869101507009628 3.060561173694609 +2.8443649606485364 2.647476448096426 3.234309732593818 1.8760944092999243 1.3724117278737162 +1.2993537381388376 2.4756602556493146 1.0481935761429946 4.153009630820971 3.3201776694212835 +3.7747891291566016 1.7227136205042641 3.9183458946710483 1.004404430235534 3.5639961772380366 +3.213781646838618 3.1705934457835636 2.3615633172038937 4.021881184451044 1.6608794781712786 +3.8504879429754153 4.478232180799132 1.6557914066221926 1.341136456908273 0.7021898357996565 +1.6613940057487047 2.9852117603837645 4.164772419598548 2.6642102535282515 2.001044792534288 +3.516360318009967 2.9927956374377285 2.8725231109507066 1.8384393978036035 1.1590725173770664 +3.9393898766264033 4.180691510943216 2.7583217262004425 3.8164805236940538 1.0853232326994067 +3.717497914000163 1.188569437954507 3.7743004783963445 2.3930493560642594 2.881550606860523 +3.79035694903373 4.469375260957977 4.644919565235364 4.914948769774078 0.7307404732408527 +2.415654771274513 2.955670826177243 3.0733213479551424 4.111480154941902 1.1702098307897095 +2.6492247388401884 2.579625702712698 2.0189221617571826 4.4383224487439055 2.420401159828947 +4.80377803110304 1.5156290209080359 3.3217442918858353 1.2610323115272681 3.8805228744641758 +1.043139373928998 4.224638926225876 2.7365764955869967 2.8028908951863456 3.1821905978208562 +3.848415202319765 1.995483273920835 3.5664997591865877 4.413198533586236 2.0372175990428816 +3.0436558295687695 4.185832009052675 4.628977950273944 3.212560853209832 1.8195614355761598 +1.0745378618149957 2.0500742306634523 1.0678460328929344 4.689073992777959 3.750328404873244 +3.3273434488613645 4.025140429302491 1.8406091103117097 2.3279954371038873 0.8511557186888455 +2.052654474806217 3.4930774992306626 2.155516172898211 4.455888135296546 2.714135157776863 +3.323187322082391 4.741044679942753 1.8764475910979779 3.4828041531092024 2.142592096399893 +2.3852773923447637 4.782414100851971 4.645410833133653 2.369539346488783 3.3054281754404977 +4.483459466474346 1.3014789045258417 4.444207586796219 3.465794994796639 3.3290075843712725 +1.1697191143968424 1.2872944853206088 1.3607925392099882 3.6111229780121024 2.2533998872031518 +2.178774515671934 1.2638478563182365 1.8880246781138976 2.634134575741538 1.1805806924281137 +1.700261675436523 1.7602059008207793 4.164445042933705 1.1404729369088886 3.0245661851202863 +4.6462039785740465 1.5313179729481283 3.215319641721698 1.592658504869818 3.5121993099899136 +4.765871831915102 4.39505319031754 3.9246883665645655 1.1716231260468821 2.7779263279473327 +3.0219768536902425 4.949309659830783 3.08524653674472 3.874128645764126 2.082533727831671 +3.4374632510435323 3.079756904962796 1.7766381718467894 3.3758005039384296 1.638680565091075 +3.9145926275032887 2.2188501988982594 2.556196790813445 2.877671520069849 1.7259456497009866 +1.8100270332003947 1.798416175699427 3.820236111383368 1.605545868009549 2.214720679026385 +1.4762754409576426 2.73489674007687 2.6339163349208086 2.222371897140392 1.3241965106677223 +1.2280341412001308 4.167713008351747 4.840756096795466 3.2796838467739637 3.3284618687563485 +1.735558584772642 2.9867816186772203 2.6588553222814326 2.990932406871554 1.2945401773151932 +1.4021360235571612 1.9453686926699105 2.7523543874715157 4.7464329418253595 2.066748899534067 +1.5698883358173528 1.1072102986916232 2.7128133788279465 4.491277215204205 1.837662804579958 +2.7892013886337206 4.955172654602308 3.3931913703343355 2.73738093895211 2.2630772958322267 +4.8852487698993965 1.7143095721227692 4.855802743963431 1.867192247940066 4.357367105596831 +3.578460571633478 2.7307946517608186 3.3418230890515073 1.4519466503611773 2.0712726680064133 +1.650194158666991 3.9716304672972136 4.4544885269026295 2.636437720338575 2.948622605603322 +2.537077849976041 2.9088974895588136 2.4669118494271887 2.294785443749764 0.40972837821036034 +3.4195256862037207 4.9796303067705745 2.966466667383407 2.9242826111926834 1.560674828947641 +3.670910705124313 4.850043701072391 2.5953610265573035 4.306082220373348 2.07772029520455 +2.228787839327966 3.5639028619642477 4.130653363237059 1.8946950414993404 2.6042353465493924 +4.6537810093634455 1.6421227156415679 1.18796104763008 4.815726953582195 4.714951871072741 +1.1269898882377265 2.3743386117487724 1.3198262747917737 2.9623237499317803 2.062444373525243 +3.2965889041387646 3.0155882540137933 3.4691612487052614 2.1943590908966204 1.3054048823733668 +4.197950986246809 4.325594179023756 3.667969219676721 2.2735222613587833 1.4002767955745183 +3.1374659715076416 3.3164749315145032 4.74446626276333 2.973171574733238 1.7803171289425823 +2.802009709744299 3.867338999658701 3.093192673678224 2.5705722674780875 1.1866164438968136 +3.4083994690864863 4.423614854711511 3.0812166305625794 1.5257396636952545 1.857463559175399 +2.1604459287595534 4.815788139475238 3.022541361008488 1.329159918314081 3.1493464348131424 +3.216546949793951 1.4837309826616965 1.6781474213094283 1.4923948700151572 1.7427435801806364 +2.034111882701422 4.057941004477166 3.537557680774937 2.490040342648478 2.278854292802223 +4.848483372378279 3.5521180482164323 2.8400027510907697 2.4288852723390297 1.3599928805050554 +4.968672924521295 4.298948554349756 1.5017460309443198 3.6785356344811717 2.2774862700064276 +2.1907674633736964 1.625966576085201 1.3210900723433685 1.810266818482519 0.7471906926917377 +1.039036123017651 4.2627573896998445 1.4263616317368877 4.452397309515115 4.421455725035114 +3.973229595278533 2.800900941180674 1.3113404902499441 1.36398790710277 1.173510214578541 +3.5685219005542925 3.8493143094235207 1.5732024863346714 4.987614148491524 3.425938028562587 +1.5188292345758971 1.2871230879005835 4.421135477572359 1.627628925691798 2.803099461989664 +3.5477731410866555 1.9508186549335047 2.5632752699670545 1.9932658475551484 1.6956339146416683 +1.324605199968948 3.5643679458378705 1.586141640762762 4.90835822367818 4.006701908250786 +4.144480744261912 3.3644421505409876 4.055197622953257 4.1970102500350635 0.7928247151129696 +4.324268191455559 4.809176372354646 1.3063834699783956 4.782273936834953 3.5095513219622756 +1.4848183072833816 3.03395455509995 3.9033660989256798 1.2552677172243007 3.0679387466943764 +4.6549047855313574 1.896090098456713 4.931417089503002 3.8103854051304666 2.9778802049420814 +4.1945948317050945 2.0335357946686545 2.929869283953736 2.7744505636043835 2.1666405193736904 +2.216909300223062 1.9630642967590273 2.1178287098151136 3.5314918244179077 1.436273193850017 +3.603271217358746 3.856456067638693 4.910069430294019 1.5937560890791982 3.32596403250707 +4.956422467763287 4.834549551479033 3.765824796911578 4.845298414682627 1.086331578841076 +4.32196069633488 1.1421160382167712 3.728328330545058 3.9091672981194523 3.1849826972772783 +1.5708643956695552 3.389551864061528 4.104776286144066 2.8964680695221054 2.183490978694931 +4.415063836203972 4.862697540999913 4.241030950883828 3.649461964858176 0.7418421657581603 +1.948575338757495 3.97884565226722 2.026368757332357 1.536822087651812 2.088457202749003 +1.7496002843426162 1.4327129364637248 2.544628767089609 4.36005648097048 1.8428769290358056 +4.148306704569759 4.105597696252257 4.503869562260524 2.369415153035038 2.13488165584268 +2.3861175052832366 1.8637864192257179 4.492536483956048 2.8635326333936035 1.7106967319222006 +2.5853794775962475 3.8079632723671804 3.6561028577637025 3.5004790955867113 1.2324487375102524 +4.3164154043274205 3.5900340917591884 4.790896896907883 3.8377115252231992 1.1984123514225045 +4.207610218544912 2.102447409205736 1.7054005532952794 2.0200361305939367 2.1285455128624498 +3.3151109714295086 4.453589989219095 4.180515621621911 1.401625633627714 3.0030591135243294 +4.736451718109486 4.752306762073305 1.0636725965049756 2.9133959104720195 1.8497912640761167 +3.333020260212993 3.7682544310178745 4.586114070199755 4.7058419953305926 0.4514017716982826 +3.0031754868191984 3.635063352914123 3.4068357053856446 3.804042917503984 0.7463617384866541 +1.6805836261266704 4.883040021597878 1.3918256477530537 3.5497588954753594 3.86165804629563 +4.277011029128154 2.0392847556133904 4.485542542209832 4.384950599025007 2.239986074557601 +2.430363520773302 1.9219025513821815 2.637287920861973 4.327563143313227 1.7650957155425857 +4.09404789388374 2.6760672168949515 3.947137622658814 3.5069324344177155 1.484738969673782 +2.4748961099266773 3.3851939975054104 1.6851596423074193 1.9415745036867595 0.9457223827669989 +1.1184620423079288 1.379507095260132 4.722085442788452 4.440715813824426 0.38381426207759983 +4.242037266179819 4.872418758542322 1.8294010210379597 2.513381932241354 0.9301670348941645 +1.801452699187693 4.589785697514046 1.0915804934034363 2.29046418282733 3.035147938786885 +2.084631301923044 2.81486823347493 1.3345887538428003 3.85611620486905 2.6251374559213563 +4.305821914672734 4.546462615625465 3.029096975270445 4.987005797568441 1.972641605408177 +1.4067139474486345 2.752823417191848 2.8000637197985094 1.0261088793945223 2.226864719807894 +4.285904272655498 3.2030729282813315 1.0217842253160567 4.058119631078863 3.2236402430556597 +4.762245677980829 1.0560398405567057 2.2200840468835628 1.314303877503527 3.8152849729212592 +1.7537605976292072 2.221410557758005 1.7777526164377848 2.3159508456519844 0.712989354154581 +4.964062092251906 2.4239256175016184 1.9336781320145056 2.9207041523770374 2.725163054796816 +3.3069332851130566 2.3915339878066395 2.63535303706986 4.003354645768446 1.6460207395142386 +3.989067104342503 2.9256917922370738 1.4876816099063803 1.921861161644543 1.148598684285713 +3.861697349696326 2.8618117958697766 4.771087927906356 4.059228802361369 1.2274015379543477 +3.730042300314941 1.726243025544731 1.4726465003597968 1.9482252401101379 2.059462714222363 +4.497826640212569 4.237710580459055 4.283211322289116 1.4516157705034356 2.8435178447539493 +4.450848397977747 4.780986550856719 4.735718493639103 1.482849383289675 3.269579277070954 +1.2989716407947633 4.502819014840004 4.395631877596964 1.2865913712531447 4.46438919296506 +4.695004602928655 3.2767187117735466 4.5897588599700185 4.683461687812452 1.4213778839546187 +2.168219473173502 1.3472806332882867 1.9545612722444878 4.03505598326146 2.236604305951698 +1.5556755054747802 3.5127745252247506 3.874865138542708 1.8373932480970603 2.8251598675937717 +3.6310439814406035 3.9557808789188647 1.5169044756251884 2.365534064762174 0.9086397702844708 +3.805053503557722 1.7008344016755887 3.3391565033813206 4.149453510458541 2.2548435130633684 +1.848788574750519 3.2311435958510297 2.371138144969332 1.704604464952482 1.5346571444327874 +1.4506845552602097 1.3662793390390586 4.301657681221506 1.6030244537710465 2.6999528767785974 +3.010400607549931 2.9133842524358213 4.11601167748594 1.5486312150226729 2.569212839022436 +4.305937261256454 4.1320641348347795 3.301409200554347 1.2496108787639324 2.0591523055358505 +1.7408775757290553 2.883225653054208 1.4243841862424325 2.2080880305769193 1.3853341998929811 +2.1620660332664623 1.6746103080873715 1.075748790597387 3.6831833253982356 2.652607761671897 +4.7571700423597605 2.0649851819710543 3.9778475919206024 2.451441206240638 3.0947981802939477 +3.0784753186988087 2.189171077066907 4.828753602925474 3.11691971001265 1.9290508834941513 +4.042929156905017 1.0275400638705676 2.6639450047368265 2.72801176702961 3.0160696166404715 +2.1109445558002187 3.39832977795528 1.2703575440558592 2.186818474178616 1.5802725545502287 +3.0903431176087155 3.9457584774253514 2.892266318789343 1.9759214668137823 1.2535642486734921 +2.3267621852893146 4.014172802472019 1.6744505487631427 4.944559518141347 3.679805329441857 +1.554392291812352 2.932295960645364 1.1711928745588769 3.524601115630515 2.727113651780464 +1.643409943720815 2.8401265501909703 1.444691611751272 2.949970515352377 1.9230172162068622 +2.03888004849195 4.058215538071667 3.0837061906812786 4.04291841114752 2.235576861431504 +2.299383477544776 1.4410233656899991 3.8397919431491605 1.6157906393195716 2.383896784900524 +4.388801125256576 4.270922245579061 3.9555266935180446 1.6927235176664301 2.265871497441587 +3.2835505833394185 3.03160592194459 4.325978202613874 4.932556629815064 0.6568207523755808 +2.782483710281299 4.146819009150736 3.0174750912149055 3.6356197364226386 1.4978363095278968 +1.3837907638071396 3.971233545362052 4.768043050668244 2.7608108319430658 3.274727672297198 +2.6790828903228467 2.1239153297141025 4.732741678650719 4.727600328580061 0.5551913668572421 +4.732378310845301 2.5533709217590115 2.5786023675767877 4.60360177713631 2.9746757487849096 +1.2586153886535234 3.266426334303148 3.855961421391301 2.737009926529756 2.298555468402563 +2.7032907474881016 1.4780915820130436 1.7860894776021952 3.866750962533744 2.414594212276327 +3.9954897986707087 3.0753255409173423 3.634850786442744 2.7009626160133364 1.3110489602279505 +2.5454239200254216 4.492591782803098 1.3739446599893772 4.159331290341562 3.398505754942734 +3.1409155066754635 1.5691771197053601 1.7235044168454028 4.792983392656811 3.448487021872582 +2.5273401878910913 2.085171106839094 3.864406473895406 1.3523586318854282 2.5506661594150954 +3.533219093643347 4.708137015842144 1.4637008301279044 3.696418152522742 2.522986081139948 +3.3673131214342344 4.698862564659835 3.4449661532826346 1.5678758616029342 2.3014108461707985 +2.025107131323544 4.447391095652155 3.804066133530186 4.850780698768491 2.638763154382285 +4.843863335590992 4.991514276760226 2.748422250528093 4.120288444516201 1.3797889891702926 +1.9132103249055001 1.5118749303668642 1.8325802010339869 1.6049529924160946 0.4613938068642188 +4.136180846014311 4.163855913807872 2.533589368258222 1.8548040159589414 0.6793492944527405 +4.944512748995911 2.600704349683511 1.2767025606499374 1.1277709174901531 2.348535383387193 +2.941662119863608 4.930119697143683 1.5500196176990069 2.4257248018911493 2.1727455226656294 +1.4041132306967747 1.4797538113064905 1.7138438711616932 4.618000382870385 2.905141397924543 +2.6470764037324037 2.813739621815133 2.7443507893863375 4.384285141964137 1.6483814209783052 +3.7006532602238646 4.848426295062811 1.2693333795735953 2.2405142450623727 1.5035209386619586 +4.860596983114385 4.863405460709512 4.31865488572841 3.0493238627779626 1.2693341299164818 +1.82480822406386 2.561439508209826 2.605515531071112 4.866802128373893 2.3782436216510123 +3.436060471587556 3.9212682120814533 4.026784030844614 1.215604380093192 2.852745621367962 +3.517029454816458 4.5523561902454155 3.3414801094134847 1.340524143223905 2.252937244515181 +3.7871640209628716 2.4265331336812275 4.901670070048409 3.8414757621581312 1.7249140215986938 +4.796290248908264 3.591077770476635 4.575357290341033 4.304205279975016 1.2353382253022216 +3.2935809167920658 4.266605574819376 4.014507258430075 3.62800147239186 1.0469783702494444 +2.6676496372581355 2.918918474386349 4.197037934652748 3.0767031814968764 1.1481663588699123 +3.5599773993537016 3.1664820876243738 1.5528169256473587 4.0224707365209715 2.50080557139405 +3.3010830842007777 3.7699770132688655 2.8307522539480816 2.9729734237647385 0.4899881405308983 +2.3378095221291817 2.7696356583504085 1.0417226960725796 3.49827819604224 2.4942210680601153 +3.2052804051151718 4.522396176278141 3.5857387780806635 4.211531370306146 1.458221630319106 +3.610469020317135 3.660746568662268 4.904449011986888 2.6291425192841196 2.27586191751674 +3.9675648827789978 4.396163468577491 3.0749223559354553 4.815279791989713 1.7923562014783274 +1.2532685717940586 3.2243282618507623 3.2559445882900295 1.3709510358121348 2.7273204789040952 +4.366446676212101 1.905109793712846 4.0868476276021015 4.192384368836677 2.463598435805147 +1.025104333972024 3.9995809774894324 4.087571738893649 1.7232308629954574 3.7996867081739274 +2.155788885266185 1.2767492927345248 2.5759582747143583 4.048582820361828 1.7150316783318154 +3.2742400440382484 4.571306599874422 1.4211866791910026 4.030216656566178 2.913660768365291 +2.131923100855561 1.7521915928514464 3.616802959670706 1.209391638657531 2.4371756782623364 +1.8984856012649143 4.0503163584189235 2.002224937083737 3.3819084611983925 2.5561498849143085 +4.879696492331773 2.852959089215079 2.2090908499882893 2.5278370206141645 2.051649000799322 +4.439917537497006 1.8811648417935172 1.2494313907990837 3.366557169871542 3.32105960834536 +1.2888579611990663 2.243661781654373 1.9813812361370826 2.7728966394719503 1.2402205325152493 +1.5627897697874609 1.3053684173272613 2.0451745265219383 3.2418950664578983 1.2240938703412634 +1.367081784545268 3.384018899306669 2.8227810941287332 2.2649147714782134 2.0926658019974567 +4.406815567535851 2.344130304004452 4.573385383314448 4.200702160634174 2.096082842078755 +1.8885267226380722 1.0059176733400377 4.186034861460015 1.5557969805517016 2.7743738111631306 +1.695649646252516 4.4058649571478465 1.4389069666065373 4.0270191794485175 3.7474780663365177 +4.097565759250705 3.5327843765935896 4.565314804073751 4.2569348493549715 0.643487534198169 +4.940847091394037 4.29317419322757 2.0972414169410296 3.897525440555629 1.9132440379369597 +4.85339323378345 2.6644590286360716 2.6690429565049745 2.677676375025509 2.1889512306991987 +2.434188357844437 2.6703358742233703 4.767462755470847 4.7733515538667355 0.2362209292981593 +3.431465205394019 3.2743579172892936 1.485790570596036 3.477546490557435 1.997942527871335 +2.176565907017601 1.9711940350394013 3.065494537749587 3.813397578153445 0.7755878826059397 +3.149111161119607 2.5953455480616516 4.851839945553993 2.987902538446137 1.9444585394966414 +3.9609558927644923 1.799896566263766 2.0610639392757046 1.3005023209937963 2.290989172357514 +4.747285619007351 4.427845497274628 3.1903834246513134 3.1374935675834856 0.3237890182715775 +3.1509908558477795 3.087556536647151 3.1108833713912327 3.5442647744914737 0.43799926187789495 +2.765614267484725 3.358901092433478 3.2919533322113446 1.196971760732553 2.177369293779427 +3.8867430296574095 4.909570127965587 3.511613913966065 3.9030313882281886 1.095163418030052 +2.377321760197172 2.1227456713806303 2.936649868664976 2.363221987779107 0.6273982145132276 +1.5578458190474467 4.831440337106157 1.2361688308401693 1.6070332356365968 3.2945350924537213 +2.762122326250077 1.576704904357236 4.17669572497484 3.9330109280852605 1.2102052488574757 +2.864311550788473 3.99648889529629 3.4010743973779722 1.0076234431385531 2.6477222304778043 +2.232832345957312 2.5545032837941135 1.6374734606870187 2.8364386485170305 1.241366067635596 +1.8013594461903608 1.73181128820663 3.1982794197226543 1.1436187745873778 2.055837375121544 +2.293744839996546 3.267697945715257 3.3682733468633277 1.1252524304124858 2.4453481314068752 +2.864059475308249 4.383278594083654 2.6807772252020894 2.443361286987438 1.5376583035808256 +2.9555415673614287 2.1758251118667737 1.0945229846716975 4.916733890024513 3.900929883497926 +1.235578445488188 4.48201844963838 2.4052038219915155 2.25516517571768 3.249905274915314 +1.583782903567018 2.8420082840945873 4.292948082815766 3.093729475481831 1.7381761637934428 +4.834349965283941 3.776604558480649 1.306187104653882 1.9571059657317291 1.2419825720678788 +4.5736269114821155 4.486414424799934 4.496957724026242 3.69848126557875 0.8032251692571263 +2.3951988778818945 1.910171973058366 3.977331888289707 2.2451350974938227 1.7988209528594703 +1.145293833646567 4.569656767994388 1.146488400803988 2.6298734023920374 3.731848411855926 +1.0197818772454155 4.899867449257608 3.7109810945102986 4.330080525762365 3.9291663431208685 +4.4399586651262615 1.8045350787130512 1.8618441602150257 2.7397984940751448 2.777815921217033 +3.0508844947598655 3.265088819483583 3.951192876206083 3.6486343070931913 0.3707090239985863 +4.953140362397884 3.703689473629565 2.665392812616395 2.047846054278937 1.3937329450712728 +2.6263349517367067 1.4776212054413755 1.1024183759798452 1.7725214287375324 1.3298802097343303 +3.936418230980824 4.873298090726337 2.3245992367738144 3.6903770778385345 1.6562285418202947 +3.7489537228327037 3.7147423984448373 4.70768358244899 1.0780578584693061 3.629786951171021 +4.965963022231085 2.5473424588829414 1.4274652908408876 4.116523209869974 3.6167330453523285 +2.23124352224275 2.593574134373146 2.6004884910939285 2.263706324130092 0.4946773700824053 +4.931347225137786 4.523902723865756 3.6511335294367773 2.3668106153124704 1.3474035658857242 +2.923662659940569 1.936084264896333 2.3752457633135093 2.8328485595341615 1.0884444889231186 +3.298637967055273 1.1735213862656768 4.797878152012564 3.7664134230170214 2.3622108223248643 +1.1918530404365093 1.35709725674749 3.803095481627962 4.369607958163579 0.5901203581429371 +3.402117949659561 4.094530422285064 3.9601519119970883 4.649663995568502 0.9771703769754558 +4.981131730383542 1.343194503782287 3.954894625578781 4.563083683600391 3.688425300177359 +1.168321168741096 2.294991293807474 4.112861503461206 3.9328797323110645 1.1409553052873849 +4.5879176294549415 1.2693267958579617 4.059750474997035 3.7014932656077173 3.3378725782919454 +3.739586734959634 4.936654721032381 4.48733116853268 1.8469814082914615 2.89903753333518 +3.2946127023747915 3.251258192055329 1.7829803817098786 3.6667992757203764 1.8843177117980863 +2.375644936586932 4.770049299573574 3.0018556240332614 2.4075726217435354 2.4670517911669303 +3.9748610085911866 4.964974411872403 4.751143013360908 2.1029357733245178 2.8272470952391595 +1.1040621720616874 1.0889759694036756 4.093927472169453 3.2084684463369415 0.8855875337531002 +3.306417996570812 4.416788843184728 2.054796989280445 3.5977095771852587 1.9009215320273567 +2.7688776760469396 2.303904576524871 3.697864201370376 2.2439659263235088 1.5264403615809612 +4.108409946906489 1.7121789667126945 4.859029416815272 2.0410334748012793 3.699057182532847 +3.0467205543332003 2.2841011702028657 2.3716188431466416 1.2906968891237232 1.3228683213910803 +4.140667768907184 4.574514471375362 2.1495823990016962 4.0021758299468555 1.9027152655149608 +1.318377518691292 4.867758938559796 1.7819293618862133 3.006219351570085 3.7545964420358007 +2.2971091367070553 4.326921079591053 2.0674547453822605 1.3247734447669957 2.1614143604959444 +2.5704670939525904 3.3608406824495125 3.975212926601296 3.263009657562318 1.0639191256027447 +2.278134238035932 3.7490504556302087 3.7082505607407605 3.6992204848847545 1.4709439355229752 +1.3081743424541457 3.0693636561808963 1.6173370508592528 2.417026087584655 1.9342415449586705 +4.242661316774506 1.8393552052327906 1.9091912537275486 4.405791435037008 3.4653849325995787 +1.2810922340158806 4.952691044966965 4.874750633262112 1.7006026240033685 4.8534372781832325 +2.672526123130491 1.9697574965243758 4.0562915477144585 3.792888284638683 0.7505098410685976 +1.7387280094129007 3.446851588345991 2.06306994792511 4.157001828658641 2.7022651391118995 +4.417303135194795 4.702776180246714 2.4819642123898458 4.680487216850214 2.21697953544742 +4.069475313654547 2.9072235407145253 2.210872087933746 4.341029120139785 2.4266021852703967 +2.021082362938743 2.9712342879496028 4.986293211119317 1.8959881877844103 3.2330749786930086 +3.283738422452405 2.0774177551081077 2.7624337034450255 1.3499196829659437 1.857526691736076 +2.761593749984654 3.6082096479918224 4.468135812639288 1.0545849535869238 3.5169714167299704 +3.4869165794671946 2.535706937314463 4.04007574347396 1.6798045269358317 2.5447357424578887 +4.732253931678697 1.7953249421568618 4.569744178036538 2.437907232920043 3.6290881292767443 +4.37105239456686 4.716609290001503 2.6875349193424833 3.9099096042055717 1.270279275662074 +1.1952818191733932 4.761457919942865 2.83499383305469 1.7781175186123308 3.7194891484891603 +4.898096614007393 2.0122638910496105 1.5904160094959714 2.9319500508594984 3.1824116781194554 +1.061033208923026 4.970340946267129 2.777638558925376 1.2695591356395766 4.190106267410947 +2.4480321782017955 1.1655462020646095 2.128763930897927 3.522718274499401 1.894169736595421 +3.0734978622960765 2.2121659488228977 4.471766155719614 1.942153702857885 2.672233490329859 +3.635458026022613 3.5565271555681583 3.2957986942593736 4.432648728338254 1.139586803317698 +4.212437315653404 4.604263314240661 2.569109330903304 3.0332967315740067 0.6074516903510304 +2.201731484865514 1.401652451424373 2.3393224967594874 4.0933259119948 1.9278626611896528 +2.904353164665646 4.046832508742066 4.537021070832025 4.273142042799942 1.172557543609883 +4.337876116874085 3.3503013427097432 4.976865302390435 2.267447859135641 2.883790355830169 +2.165278461936373 4.8825868063005835 4.583311631121857 2.2485504354220143 3.5825793053744293 +2.2256033224785887 1.5315590847856368 3.994008835711549 3.217686392122908 1.0413327711611833 +4.14629381095602 1.0694419887192192 2.7035620903511686 4.766461974600563 3.704399150798694 +3.1629900395000363 4.797517951621378 3.9757959389604016 1.0278179163631433 3.37079455280505 +1.9862051693037612 1.3596829082501993 4.829015941965679 4.536793611201283 0.6913205003419497 +3.661018642360216 1.1836238739857508 3.7751638229218476 4.48351322189585 2.5766729923286738 +4.2412955884246415 3.977726242862698 1.8883867741573703 1.7426992865194748 0.3011538543239869 +3.954095581716684 3.012036993887013 1.3600448020599343 3.0060708979239714 1.8965432479036797 +3.72809227715699 1.4490501281474102 2.4047857263415455 1.0298030851083508 2.6616931417154035 +2.3712469012827793 2.3704007152839544 3.774084449222259 3.908189679823809 0.13410790023499528 +2.472649595521206 3.636115450541052 1.2568716683112275 3.683094133348475 2.690763506079358 +3.7692512386796233 1.9036006032691337 4.70547402217165 4.356887681625721 1.8979369668729165 +3.2005733625281194 3.3085512855547607 4.102855740502861 4.175750301122789 0.13027988651023475 +4.03396028218801 3.8959164444848193 4.31537306992245 3.0299520512790927 1.2928121658995755 +2.798493885673546 4.3575085574882655 2.0757060793267397 4.384328384241235 2.7857249852923878 +2.357028858511683 3.300526388626702 1.969949679653241 4.284072138998312 2.4990698962170743 +2.7841329204235126 2.898312341316458 3.618995919935857 2.4895985461975636 1.1351543366266996 +3.7835411662556524 3.0782714531438105 1.4760152782855358 1.010642053018484 0.8449719563561372 +2.9159854997474057 1.04630784272753 3.2785599249083925 4.947774423807713 2.5063861602903574 +1.4786240026283406 2.0267990804196887 2.9204092846444105 2.7504206374320823 0.5739268734713753 +2.511869975539681 1.3854246539145785 3.5427696465211906 1.5983648061144997 2.2471291120022565 +4.878684578506064 1.9371999997410208 2.77268944932786 3.0487515136938526 2.9544105656618846 +1.504826268339384 4.053439988355292 3.005782898625018 3.5745047715414153 2.611297850224455 +3.551359946773578 1.2498452406600693 3.549679140466163 3.9119275747225397 2.3298484651534626 +1.2612398705035188 1.8167044413923312 3.4994632706629223 3.780255951384943 0.62240293946908 +3.639240589124125 4.074840120618958 2.29745981207362 2.760928985419576 0.6360429438964811 +3.0188895344581024 1.7005003025942322 4.523218904294606 3.9372104525229834 1.4427598803135537 +2.2549419781888913 1.7322915678248552 4.687128742145165 1.6661436581467277 3.065862738152956 +2.3944217758358337 4.974309642782618 1.2656058177995844 2.5835264494959813 2.89702195322546 +4.752941978308678 2.490181968712077 1.7735182915946135 4.504867141951779 3.546878825584125 +2.8109718889211694 3.2670725022452083 4.071938709485535 2.845684704912467 1.3083297188423297 +1.6311565928877787 1.4989179055862873 3.1375192230175997 4.5061345822782854 1.374989117056378 +1.9016781123730988 3.9423265882357437 2.151372628494453 3.754203444091952 2.594862775845667 +3.615626180489748 4.6483452266708465 4.3961329358440375 3.741346980421381 1.2228054938394572 +3.7152539033247813 2.527692028108091 3.025944961705309 3.010318767970336 1.1876646771706334 +2.558975857032872 4.924122443332395 4.48816582211036 2.318591141311305 3.2095128400192774 +2.7935111452597052 1.036959399822193 4.5124906930049296 1.6129210230425293 3.390129541089165 +1.4045922825579287 4.385566218229054 4.663024151213369 4.146134243878741 3.0254554667776885 +3.4617448602515113 4.953353868649698 3.8676110361585954 2.121243050251849 2.2966711946063607 +4.811140862470928 2.6256733368342156 4.472048792877425 3.1966297035246947 2.5304075085049056 +1.4588441217673798 2.105045763044493 3.4007827725801736 4.5048929056586715 1.2793106531080922 +2.8566887731473596 3.391490525328653 4.314691096247347 1.2588421600982893 3.1022936087191213 +4.3664162152960335 4.825351384515514 1.1074816530787879 4.26414683587891 3.1898521228810974 +2.3039631855116363 1.519719603103462 2.416143171655065 4.854156900916022 2.561044501880693 +2.975320499243863 1.1045616428436262 3.9036903805992442 4.858428968577434 2.1003010427494697 +1.1620292719446907 1.1289606255228621 2.261136365547624 3.614104213354495 1.3533719121421606 +4.258797680233641 3.152984461898482 1.8898894826684334 1.9736201859095992 1.1089786763098841 +1.5410946109863737 4.903089286745546 2.2968389778100673 1.5654383448264109 3.4406329484212517 +3.384579241784032 4.763627232380347 3.5526018890484865 3.384283474645468 1.389281990452219 +2.639704283464826 1.2087845143813194 2.691667386599823 1.4518445751078999 1.8933282835920802 +2.16736147380953 1.4050617878093936 1.3889290948841535 1.6060753914325212 0.7926243280272048 +4.176908918908002 3.4119936103693225 1.9635552287964546 2.4825151732500905 0.9243456351301413 +4.353229754976741 1.5867022708259975 4.16115028072994 4.755295271245634 2.82960820438384 +2.4971524163484293 4.065197935438003 1.5140723268794045 4.486385261446583 3.3605670549673965 +1.1806684190502148 1.714040843625388 3.3538273402852883 1.6092650960591959 1.8242761762618014 +4.2143428171777035 4.845858900404399 3.2703060381137266 4.436794764311463 1.3264646665932733 +3.683988524655607 4.074596965748659 1.7997532948221777 3.985070062940707 2.219951425431007 +2.5725241720842833 1.1569735393786749 1.3743196298765836 1.2291287131355957 1.4229771593589746 +4.285445398706403 4.039247902109892 1.1229866939958235 2.4671586065878173 1.3665325967321846 +2.2661990639107663 3.6210565803080232 1.6551566854216082 1.6895536592910716 1.355294079360461 +2.6998902061034467 1.3807389982640648 2.938691066484587 1.4019958031148771 2.025238811006495 +3.4041675666883124 1.035771279891811 3.2832928750694594 1.8323248854024512 2.7775185108923712 +1.7373598190628097 1.8838918454975944 4.633843823570476 4.650694795104107 0.1474977627379875 +2.2108529295978534 4.91308954479635 3.4290796452864787 1.4155312686641026 3.3699346862391906 +1.7198620447209279 3.3371699630411267 3.4249771170258656 4.7537329401580735 2.0931500042206643 +3.0625315744841055 3.157882637714691 3.000445392749448 4.766140953106072 1.7682682593776025 +4.109185696690318 2.7039698679976576 4.5890893330384195 1.4454361812250762 3.4434265875889336 +1.1486138312042176 2.7620475906773962 1.4944513885364525 4.7819146880728685 3.662046346239574 +1.968155129961616 3.545878693565375 4.589199261493739 1.0570315764014109 3.8685165372221224 +4.499584089550861 1.566109133567911 2.0321625471544094 2.4765696204077607 2.96694674103476 +4.089380757300722 2.1316265396360685 4.13670655878115 4.10240133357101 1.9580547554295966 +3.033052814893488 1.5679992422586988 3.998635723205061 2.84296512074859 1.8660001372111583 +4.990447592916741 3.1368745407187517 1.1805020179797578 2.9257817548247735 2.5459250616772637 +2.169825092102348 3.6272939390248906 4.156675980122639 3.0133962473110696 1.8523779277478503 +2.4385750845694085 4.289423616607365 3.0599159527782196 4.472251800086598 2.3281608265193654 +3.9221454679185164 4.674207075186333 2.6083287403455615 2.7023473091147525 0.75791566311804 +3.865946955463687 2.803335969271332 3.0533870331775965 4.316147191035584 1.6503652093552559 +2.641595168311935 3.0499142893186364 3.20997416107284 4.055658021448824 0.9390983421772784 +1.2583797183126024 2.6908789740788595 4.121651988119236 2.932853212511152 1.8615307267563865 +2.4984224512640045 3.7901425757779434 4.534682426351914 2.4084058616641393 2.487889247859468 +4.178199962482685 3.554807743039662 4.261698994629887 2.636933610425441 1.7402529738434924 +2.4424933466034626 4.3576932515344895 1.1117340540210923 4.859697668132201 4.208945465143094 +1.1979487262648 2.394291760504408 2.4837496927729563 3.5027525461507727 1.5714972067317723 +2.4752059350247966 3.718463824530949 2.811295385094442 2.499579115607893 1.2817399160835647 +2.1895768843819376 2.8567562171598038 4.391387081344563 3.8296806418291984 0.8721481446858363 +2.6778615696845347 2.422957186937351 4.158844162156133 2.0241808649748863 2.1498287458949923 +3.1422021241635845 4.747810687753009 2.3803235373652076 4.9319365025961055 3.014748345020876 +1.8559302179086758 3.0753228797329952 1.8590445394487505 3.2891007007701956 1.8793560301987555 +4.670286286341652 1.6281239630647648 2.465241078712504 2.3214510852405272 3.0455585962821496 +4.731265094282602 3.0616466416663632 2.0676239404780263 4.143894421266508 2.6643057044397658 +4.353870146107433 4.07402859698232 4.284514394833781 2.43353673408239 1.8720121776359886 +4.485941424406046 4.965081660634604 3.615255992187686 3.197979072255849 0.63537028092362 +2.1053351038617105 2.7302693172317096 3.6532471016790518 4.257367149488972 0.8691972176705581 +4.169238415635522 4.524569358290404 1.4592326582326178 3.003805530002814 1.5849181161865862 +3.62474599420575 2.7952408791583783 2.196575421356825 4.846834356202839 2.7770399992835686 +2.350729536104318 4.994561660808724 3.963757494119462 3.797844313459729 2.6490329343244574 +1.9945005647490723 2.98750621023644 2.041215503708391 1.7432266472530888 1.036753379807041 +2.5836697540942457 4.574858107842035 2.6975345346404898 3.939502104175594 2.3467668192382822 +1.4938628450386053 2.7681989068863198 3.599284332666615 4.713333576272825 1.6926423472503307 +3.2518891348849244 3.3071090802669394 4.496133862727607 3.3118420928752648 1.185578440470299 +4.756087994778355 2.798242227523974 1.970352432388231 4.6910916336067325 3.3519519461655447 +3.370641189800041 1.6056499444256112 4.369290628884874 1.703432247638069 3.197185481812436 +4.320867037761346 1.2500530929401918 4.1604384652615405 4.08614925055163 3.0717124167360255 +3.487932013446597 1.9234719525862811 1.4306805788815224 2.744137484218942 2.042719834976303 +3.8714827953964956 4.184428396207323 4.808247730016016 3.7350173542567773 1.117925931589015 +3.0919134370375194 1.7502641379580957 2.678175488007944 4.503828037789478 2.2656191370669796 +4.071310849702169 1.4576848316340287 3.191725880175841 3.4696738727460583 2.6283637588614965 +4.3644549303110765 2.5998920485879644 2.531203051943237 4.13951129987524 2.3875379753882626 +3.379369516632485 1.1473988902748355 1.6809022343377742 2.949952275363701 2.567524271268193 +1.6977554523555227 3.8862978690561474 2.5818058680647247 4.220214693327383 2.733880280552968 +4.593871719907095 4.698904199383349 3.2085122121263496 1.0752938543845119 2.135802515110354 +3.9520428456849115 4.642930549605884 2.83160223206638 4.015675616433594 1.370895911072763 +4.322532203556688 3.146791726601155 1.418443334443451 4.539436261889685 3.335110571228642 +4.938502249287676 2.1418723326273894 1.2317365619617853 3.142575776285432 3.387099849983217 +2.3254348904770312 3.222560977194796 2.2268648099376627 3.17962498416 1.3086585364615588 +2.499425523349717 3.790876143602032 4.757430849930361 2.3258140245977192 2.753289866648785 +4.017667600394337 4.951436265791154 1.7855570822833093 2.3688370545171313 1.1009720461873862 +3.185044733756128 2.439913089292465 2.013511665552761 4.989074887149412 3.0674415484732163 +1.7361223601297118 2.4961228404934643 1.9150316111444683 1.3633071785088902 0.9391488591912281 +2.8093909810421684 4.608359743321784 3.321287278460413 1.660806708012526 2.4481593764485168 +1.4716543424771995 2.7381266814531293 4.283321526779986 4.120229601885352 1.2769303666829288 +2.3527540546867303 1.3322946964261435 2.3006034525100536 1.7773504656687162 1.1467916070934552 +1.1030217639788775 2.1113296076611547 4.488663089515786 1.1488127513929034 3.48873687581777 +4.518561573283721 2.800179080772583 1.6625864642737849 1.637556085090376 1.7185647821513326 +1.8484594599158957 3.7346109303159087 2.493694497079892 3.7677596046231976 2.2761391142791485 +2.4420471862052766 1.7337168324180143 3.668207334469252 3.302807417787066 0.7970250869375046 +2.557920941952932 4.217385818478297 4.848496207322256 3.3156705307303294 2.25906578727598 +2.56644451088764 2.8031079043361906 3.7298243903199544 3.869740106870545 0.2749290263621663 +4.996673654418006 1.2130477613899293 3.2241213063164036 3.0937621905883916 3.785870890224058 +2.9472864153324374 2.2175662615336753 3.407223098357771 2.620475650433264 1.0730624630820955 +3.067794865417138 1.6755434862036007 2.3323967152904665 4.76305889767937 2.8011573586318894 +4.2361338341683155 2.210347085497139 2.4349284973989165 3.415230126461999 2.250511771805575 +4.381325458297078 1.653396784020233 1.6483840545269834 3.6062689260404923 3.357812981993383 +1.2291827481175663 2.407180463316119 1.7082072570895126 3.9021592575941417 2.490201597768999 +2.4891791593425685 3.6165058355178603 4.69662037363761 4.412832939136049 1.1624976313083004 +2.738017922664464 1.6318669755453308 3.4189451428604856 3.394185441268927 1.1064280187321083 +2.5678664596248573 2.2714693559916426 2.3793615650235838 2.2790028929208432 0.3129266784861655 +2.0479783480214397 4.858063008987941 1.7519613207027378 3.429662119817799 3.2728054896602896 +2.8187332677999746 4.679514530286345 1.7564264643503322 4.488582787401349 3.3056293017227474 +4.621374053848072 4.974527582747083 1.5234637276679717 3.8247021641928574 2.328178635052157 +4.79353795077323 3.950188200980009 1.840670613086055 2.841512548749403 1.3087869882676268 +2.0169925727713904 3.026300839170379 1.3195042913478074 4.929759106311702 3.748685503692103 +3.239488986929572 4.614316967306523 3.642411757165581 3.943680402426485 1.407449740575026 +3.069009817257369 1.4493497836498328 3.0821216348143987 3.3164943623415004 1.6365296208361335 +4.103909304241042 2.584814359193766 2.8457505895517095 4.9849977680788715 2.6237431167903256 +1.8892064573303808 2.2749010369106357 3.1823578827348125 1.4314796633020577 1.7928566166879054 +3.6000792687609375 1.6589674332634878 4.9158447410708614 3.2213765530143217 2.5766524015171104 +4.687075569446391 4.62244127102459 2.09588994608601 4.23945244210778 2.1445367254685936 +3.2382142807414795 3.6052875908486346 3.438156968779615 1.9815647565035728 1.5021330459903472 +1.944724722215002 4.655550947377511 1.1062181720033104 1.8885852790685278 2.821467191594901 +3.03169081780323 4.799978060878114 1.6178793199039951 2.850048208172576 2.1552447525138314 +4.260065317939219 1.2100748859475732 2.7051671911665385 3.530018670608019 3.1595603489057438 +4.196390955617975 3.4929918978224377 4.710044707024987 3.357511133297927 1.5245055928288822 +2.52492195734254 2.6910650771274875 4.919807406744729 2.295704120631702 2.6293576387477344 +4.109502749588247 4.687352837569529 2.6657687829120453 4.351246185981989 1.7817813559579572 +2.8935337017959717 1.4924950365198408 4.374465990586943 3.76649563467233 1.5272646448044502 +2.7057852272912077 3.089109371351988 2.395993223122881 3.464155601957911 1.1348604614570197 +4.025938488811558 4.002831312518 1.193344441738485 4.4655925409358135 3.2723296845362007 +1.1944014993133343 1.3441454116244422 4.053979370320599 3.415875513914312 0.6554386095087869 +2.311741766791096 2.5416887570954327 3.6281562556111826 3.7787456408955404 0.27486866192846265 +1.9941177322603036 4.927540467266789 1.5207080089825666 1.7023232397295995 2.9390394747761093 +4.422488021406816 2.5986539242552453 2.7610320989312256 3.220958460553414 1.8809314373596158 +4.696132577059661 1.9066005887551243 4.265926596202636 4.717512793126337 2.8258483340452427 +1.3593187689032211 3.413094800440076 1.9919942732344906 1.255698163079205 2.181771745519012 +4.149273043919601 3.485658939836066 3.11470974066241 4.762578390902922 1.7764725631385587 +2.1375173570209265 1.929553030070665 4.572476533610004 4.712024014973025 0.25044492575941313 +1.431706655374477 2.335038320910167 3.4947314184683007 2.0679444034813668 1.688706393691576 +2.7684965947740348 4.850375513721426 1.7303856026339965 3.198808330883996 2.5476430562382024 +4.390219370924225 2.8814775961504324 3.6431681306188146 3.8164502282985784 1.5186600766214513 +4.976895210736772 4.115484669029513 2.273149298718907 4.476107441129854 2.3653863740579646 +2.1355159340009373 4.052919311706425 1.4269037914525184 4.027652209338329 3.2311496477216837 +3.4702102587058614 2.7583224204073193 4.642369289702268 1.1512667102628567 3.5629456232850205 +1.239232485052626 2.1809558995056944 1.384961306735736 3.333374846866289 2.1640606074445374 +2.7624370611383444 2.1739863963960997 3.4138164617608524 4.751275015772844 1.4611877252890666 +2.2337467801686133 4.187142453877855 1.5452974402545818 2.849731376918177 2.3488938999421975 +4.44115616051751 1.094143205389365 4.394234948341261 2.3582118920593427 3.91763775858708 +2.56800057061945 4.564713840461851 2.330548773213958 3.3658712449957444 2.249167957832647 +1.0424762725273764 1.0458977010822683 1.0155666760521096 2.3619226387524885 1.3463603100478787 +4.9786999831254946 1.6916127079790457 4.088100716333061 1.328098268336571 4.292150541089667 +3.3328664144407116 2.0074024127902197 2.9319096033373864 3.656738111562058 1.5107055259071962 +1.251721151535636 3.3140146757430067 4.761633744905989 4.002006157550673 2.1977462663963094 +2.8057659665310455 2.1048217297982403 3.3527556401697636 3.6441012552911656 0.7590817416190452 +3.9385568769621684 4.565076620643865 4.061492554151057 2.421091897426347 1.7559730361841657 +1.7852460410740156 4.837174052615369 3.542323202808984 1.073392481099202 3.9255424461127846 +2.265135170390074 2.4247381233577365 3.6606251596718073 1.055538578910415 2.609971110157942 +3.391834376481213 2.9437272063187425 1.4025576864437226 4.921825653522482 3.5476819276899216 +1.7450011897908237 1.6103730393929294 2.613317613500842 3.7978239569445598 1.1921325499028892 +2.8227861795727236 1.4867980630653692 2.662006881708359 4.740943968517614 2.471202876811174 +3.4292967960878764 2.3784317498988004 2.612250756777117 2.5137010962216544 1.0554759025660254 +1.972281261035313 4.972937903682858 3.2652064433821706 1.0337837575077162 3.739410045729139 +1.918002003870786 4.108082204872032 4.293003097434934 2.827556301901502 2.63514432192183 +3.1634836807301343 1.3671918807877943 3.064370112197248 2.956944827686065 1.7995011592917634 +1.925413645076663 3.4583951159255832 3.2185606482904947 2.18159717730095 1.8507634722278272 +3.25856443680537 3.638023664267154 2.2053100601043227 4.296947795998058 2.1257793214537966 +1.9018542336354485 1.5167276579825746 4.300954693512466 1.4626013328366452 2.8643624559985135 +2.1934192276161553 1.6891233619134458 3.185147975692358 1.0700207191397166 2.1744143192079903 +3.4996872678764848 2.630633467720198 2.66328469752362 3.570863873197016 1.2565645497474787 +1.7971587231472843 3.7198969805361584 2.6428020229250833 4.759391803663517 2.859523510369022 +4.278880397653763 3.4574288158245006 3.040558187886328 1.2114756337407044 2.0050749839269546 +4.812937094164484 4.15643635515113 3.819262902908279 4.850702978555126 1.222645431012382 +4.945253760338828 1.9070983698254675 3.960134637346513 1.3636478747134144 3.9965149424760438 +2.84632879351475 4.164663215401782 4.471653497727328 3.6408048668773323 1.5583051996696686 +4.035598381809669 1.569929183110173 2.651824198156687 3.6032117505912926 2.6428512770004526 +4.45377869976069 1.737953507703319 1.9285034665459393 4.197947053717792 3.5392203476428112 +3.1876243387979226 2.5039392821556024 4.180881525499341 3.026205526635311 1.3419023507799137 +3.600745928546035 2.7790169213677056 4.347913228149341 3.6839554411626185 1.056446167174925 +1.5414169789934693 2.662634363408695 2.6122670711631875 2.7217447677608066 1.1265495058661381 +4.706306522656398 1.7390951594898651 4.564640670712377 1.4962577670706199 4.268409178729894 +3.855347330540768 4.612484814816788 2.9286623744776117 1.0239067215939563 2.049719802140785 +1.0794454081441969 3.6595825964930606 3.5757860625448368 3.362393832699738 2.58894653371966 +2.5624164258329554 4.557511852999898 3.006158353363334 2.172683279806624 2.162194825112392 +4.432807410487738 4.781044569653011 4.730209469460885 1.1157260186218583 3.6312201441681684 +4.865257220646959 2.8256311371411216 1.9591309136923365 2.371370383002908 2.0808690349406476 +3.889878276691082 1.9992798305228319 4.525255189673516 3.5687515511020957 2.1187877891035165 +4.256084131211889 4.6248528338398405 2.6929003164675938 3.3869422576358703 0.7859291139400117 +4.201775791051855 4.887910552367837 2.7873165702874596 1.4397197121908238 1.512216321376695 +4.745313893474657 2.7370422966887555 2.8429874280095215 1.3072033335085695 2.5281984873381886 +4.344933697226548 3.0534375179384123 1.9801378572650048 1.67558966647601 1.3269182271823317 +3.580367420217217 2.5019520089175535 1.6506172669618886 3.7299831308168887 2.342379600981462 +1.6136115198459948 4.097674068931031 2.2348333280349872 1.5665010190037787 2.572398651659932 +4.085951617437859 2.8282598661042475 4.96149962314204 2.825684792943298 2.4786071754655854 +2.9026033700936353 2.4933692396498692 1.9407496358449046 3.805378075035368 1.9090080643512035 +2.515071690268737 2.1504696713948164 2.8917328463648335 4.324567369635078 1.4784956554694397 +1.0000609200268693 2.058521859115875 4.218140752802885 3.2510894124770138 1.4337112172272504 +3.394746914133066 4.217011669027174 3.3036853012233 2.990859911597494 0.8797607922245712 +3.763508104085804 2.2078415726031158 1.9452325323815733 1.8074641481508773 1.5617549375202608 +2.8970732357892226 2.0879524453633134 4.939201800973166 3.075092426698294 2.032136858766875 +1.627891362897905 4.493915811999926 4.83789691127064 1.745665230660082 4.216158548895208 +2.1204163668898737 1.6252890181940534 2.636887130996746 3.698379651551337 1.1712888041042187 +3.84394361673401 3.245354859062869 2.607008196130767 1.59231653551675 1.1780949312045748 +4.426807772927547 2.000178540676513 2.238185386179895 2.616248173633751 2.4559032762046273 +4.386751793792177 2.298511516011577 3.6953608872649606 1.4844298050770734 3.041210895010358 +1.4388923118761983 1.2361541534883385 4.8777623125198515 2.5294826996646105 2.3570150404734505 +4.201498673750907 3.8094980792148565 3.150552948840376 3.1517542940919623 0.39200243538405505 +1.8077913222363358 1.64800153828762 3.272658982124784 2.8384911371617427 0.46263861993377586 +2.0448005451343843 3.641359454236829 3.4925065203080914 2.5939838328750007 1.8320325788769074 +1.5868461753724579 1.710556209559734 1.7513721999454943 4.974568122232311 3.225569116606398 +1.0268194893797888 1.2290622956710053 1.3073338644996437 2.6238398627441297 1.3319497723676583 +3.812841777822708 3.625088130769202 4.675612172947851 3.9636948188803127 0.7362592960393892 +2.745021850622503 1.1194498097930952 3.3318500035830083 2.1372274156074496 2.01732684204313 +4.372827798465234 2.5200654965852927 4.428148313374276 4.413777134173168 1.852818036953195 +3.6454887805812928 3.021945021550007 1.0607105205540628 2.3331884927113538 1.4170416398442203 +3.5270242642310996 2.817417879626481 2.905309815555457 1.0426056493044285 1.9932907545164045 +1.5309846057107452 4.686254655189224 3.6520119325552325 1.440844214271694 3.8529199009991304 +1.1673468443793262 4.82636032018889 4.456323908733724 2.660734448511325 4.07584606257618 +3.4505545941433278 4.946697828111816 2.5832633056566388 2.9767576023705344 1.5470237031461571 +4.208289160100161 1.890497584850841 1.6696607368939134 3.879483443196047 3.202416927819551 +3.15695079995356 2.3306835938834083 3.3514398702216455 2.543632878139596 1.1555386762387587 +4.921635714625941 3.338285754224934 2.1815791424639834 2.533653235834001 1.6220213513774069 +1.8605857011479316 3.7018106385780483 4.161840981071974 2.9570617810161877 2.2003641042113 +3.1933963720361915 3.103174196871049 2.7559144214579114 3.5991003149277447 0.8479991107531014 +4.882857187221324 1.7835456000564935 3.6391447905806733 2.432248834271537 3.326008142456889 +3.1445277586046974 2.2646896008015944 4.195779682691023 1.8855454905366273 2.472103801729537 +3.8017857287566024 3.2157351986503864 4.114803191060085 3.9108173240837303 0.6205364274270061 +4.733515127991879 3.909529678196303 1.2601263473689581 3.365301236776552 2.2606886863226197 +3.707380126878554 2.408138414221128 4.540299231982317 1.4274823643867047 3.373078398006302 +3.4410217499492783 2.0527367502817166 1.8907730876306634 3.659590093873547 2.248565952307381 +4.522488438262746 4.473618948696062 1.1254611782200574 2.8527591959320806 1.7279891981729496 +4.529315490504195 3.5241536227182193 4.183276869803802 4.709124048370178 1.1344010030219516 +3.3276163654605364 3.204502289183696 3.99348099668008 4.587374246844286 0.6065198004748927 +3.289697954515536 2.948158020501725 1.4344572640927287 3.5662415680998727 2.1589705522163527 +3.857293253942121 4.619431008523512 3.9973095857176886 3.4295477915943695 0.9503722490816401 +2.3094064708691016 2.686995357865535 3.875927848047182 4.850373860194811 1.0450446871658752 +2.287920939656256 1.7583152884979096 3.8968038241748424 4.644652316923496 0.9163839336464217 +4.477749560749225 1.7041255610024533 4.610843323443076 1.1037051858562772 4.471354158203875 +3.9509602501407706 3.692538838939544 2.427248583725226 1.0113462026534865 1.4392919017669261 +3.930778635163148 4.592380156749982 1.4962142898742607 4.4237770473841564 3.0013897235322435 +4.821201586701574 4.196288416910528 1.5227854362446553 1.918709753552672 0.7397787066509222 +1.2239696691336235 2.0725083437596328 3.711358758176647 2.9405965459699326 1.146338636748257 +3.383557884712058 1.8969927301905174 4.954614201506561 2.91136666206466 2.526803606549792 +3.694106175663918 2.162685233478343 1.3083644794112916 4.243099603919929 3.3102749664022295 +4.22238378537856 4.668075286619439 2.3742977105200898 2.436119117183912 0.44995866543521773 +1.9962677060514333 1.5337544118688538 3.864636572872838 1.3076059089733514 2.598523496799263 +1.9029201835575482 3.7740658894089085 4.728079113016377 1.5731310302025303 3.66808991953261 +2.228162937186305 4.058247886852045 3.8736482831647923 3.353838897060846 1.9024754192563997 +1.2818587401110313 2.186886164736966 1.1509472870182993 4.05457590710334 3.041403262098272 +4.972554374668924 1.3471990955245565 1.2327495905227264 4.014363550586855 4.5695270130335786 +3.1517545087043426 2.7077540194670617 2.7383175856371103 4.025676772266735 1.3617746178581216 +3.8840737166488903 1.8879733548394304 4.538110708396452 4.447167429355179 1.9981709972919324 +3.2173370742280496 4.797661266025299 4.732026917702557 3.726419609603731 1.873144577783946 +3.668568111404213 1.307873900075276 4.078060937606084 2.2749344647837533 2.9705457808952636 +4.588982639189842 1.4725508680176427 2.03393685084676 3.207953019744504 3.3302343685099447 +2.29638450118464 1.5500497026753557 2.6102874318692817 3.0279158933415955 0.8552363201464412 +4.331946575900195 3.3876001139778493 3.3102052776845015 4.872908633370535 1.825878423668357 +3.364401535359997 3.619728422646266 4.160076990393321 2.221506105191161 1.9553129919081451 +4.506658909065365 4.318357966422491 1.0972935241796264 1.416638039811009 0.3707265362285754 +4.054768177057301 1.1802234807908687 3.9716664736702176 4.183417309558662 2.882333365059103 +1.7127101520703674 3.3718697737423073 2.2922444229077863 1.7561956662394178 1.743605150173708 +2.7499895580302196 3.3631577668370474 4.43229393746158 3.9772729252739345 0.7635570534175183 +1.520453000094108 1.1228453542734158 3.888096183175702 2.4590749773376674 1.4833049068717679 +3.1606083370658955 2.1146377725592225 1.0138249922086624 2.388416760623514 1.7272975862914521 +4.5933091945688655 3.775345144960839 1.2882891258627853 3.559754578459914 2.4142536090463738 +3.750854753332566 4.953241750217396 2.28335697277519 1.901708672166635 1.261503038298013 +1.291170570300192 4.279326255026058 3.467580234928195 1.104065547353719 3.8098918717648385 +3.589951297047663 4.706908036573694 3.970654625385623 4.3226494471208285 1.171107472651857 +3.337505918206536 3.55605381296498 2.0701091474030093 3.186656316665069 1.1377349267252308 +4.913123505454408 4.980426860985806 2.7922688325440075 3.316080775853184 0.5281180678779335 +3.7322986048409943 3.858120262283032 1.6522094709428017 1.4710562869380372 0.22056193134021465 +2.1806359986374244 4.4577959862973024 3.673687193683844 4.539868300813387 2.4363348127355766 +3.9779389068506155 4.9497940488044865 1.9185184116155378 2.422291061140507 1.0946640120838842 +4.961185989164418 2.8476672574625055 2.704480806241278 2.179796744279355 2.177671874762524 +2.2772821153461624 2.2099665665493555 3.6560183204175667 3.821383148430691 0.1785410581732544 +4.209844155327193 4.445207220220312 4.616766552620908 4.384632099172581 0.33057854859871966 +2.375024894697168 3.1082716622329216 1.6032101076207446 1.5378926058462614 0.736150255137965 +3.395222958305998 2.594665190630373 1.6763310814836485 3.3796711311794017 1.882089281698217 +3.500181312459333 4.742308656169014 4.056084176313041 3.987620396906798 1.2440127117846722 +3.3120666785158437 1.81117273575201 4.816399643550659 3.3634485861196346 2.0889589279627057 +1.6974855310637427 1.4892838084932274 3.900393025437661 4.8468960354213655 0.9691315210999704 +2.5411112074609608 2.410936233789409 1.1167605559744382 1.69414779686588 0.5918796750308469 +3.8752966626659124 1.432776262482367 3.5359663994038795 4.276307253523738 2.55225596004627 +2.6061131423001465 3.1143421028710865 1.5435745326556432 2.6194455711896145 1.1898719124003156 +2.020489491065179 2.160362601888632 1.8328353519997882 1.7304600375493226 0.17333549013477187 +2.009435587089059 1.3883243641709577 3.9046743537095896 1.4979947553766002 2.4855353226753905 +4.47242732288693 3.088285674223583 4.94416793435753 2.3603977619036365 2.931162978687284 +2.2924975792415543 4.729315816179955 2.8358086145084345 4.142934433667154 2.765259667189852 +2.4870355565606963 1.5661169069389764 3.923954850059302 2.0323902074942097 2.103831731917621 +2.1092864025298543 1.1954536719629902 1.0357392537813785 3.6512909310823285 2.770595754722638 +2.55105037880579 2.50346856162194 2.734742338203991 2.9465175461237374 0.21705475810488287 +2.711815554323999 2.414428553983236 3.3326533715901703 4.249240094468497 0.963623499365031 +3.434435934511147 4.630720812129477 3.919312443817762 3.310371309591343 1.342351225786776 +3.580694470148862 2.79160107443066 1.1464527233787951 2.361817949089976 1.4490621170378009 +2.7329436303337404 4.231011749685695 2.5276215638190807 4.2099159318692605 2.252625674849698 +4.615786308156927 4.201436695451971 1.4929043654633576 4.725037462077037 3.2585840415392506 +3.7435693264872185 3.914866072880735 3.6538815748677718 2.9262273353805286 0.7475448264611047 +2.066698966804097 2.4101007219677153 3.5874727443751016 3.846476423959065 0.4301251811827415 +3.2510847471958657 2.6595865905362372 1.627772978077814 4.201281156968365 2.6406087207589652 +3.1676440464744338 1.4781370339559072 4.35645644325041 3.508810303684027 1.8902216598248656 +4.861966295660154 1.640154420423738 4.149786937318957 3.7401904388336153 3.247743994065087 +1.745420715373017 3.2594828218316385 3.4183246569681383 4.158608703347714 1.6853499730139248 +2.12890443846419 4.610538377548205 2.5225795008778773 2.6196451733987174 2.48353150823491 +3.648070407736623 4.705525972203967 1.4307115578315157 3.803439923313153 2.59770132370604 +3.2704824033441815 2.7407275809280947 4.332028032290999 1.2073368320025057 3.1692799291058917 +3.2557683289120902 4.291732977839395 2.886530685209766 2.307803901228464 1.1866538856483864 +4.465014811056172 4.538634668754755 4.1975099132172335 2.1765220871173434 2.0223282811382326 +2.168317457167329 3.4178773820320205 2.872947552576372 3.096919284727205 1.2694736478676893 +2.761321177957788 4.78454418292516 1.179775393767677 1.1644148074804912 2.0232813139650867 +2.2562487856639626 1.8783882911809298 1.9424362143714649 4.26576468325762 2.3538550778728604 +4.358247293633108 1.0281105685476595 1.0494435514378648 4.916551954321314 5.103365360956887 +3.402863194700724 1.8190718518047713 3.143731108299397 2.2549087801090244 1.8161498145587878 +4.061041421208456 3.1821605206986874 3.40295779316668 4.126425899382599 1.1383486891073884 +4.0667739851979725 1.6814658587717148 2.2080902405784313 1.098574638352503 2.6307260841026205 +3.718031935449444 1.1927807704970141 4.144225971282193 2.7879230312246657 2.866435262011388 +4.4854266062264845 4.731814143265192 1.1477881273600383 3.9682628361598096 2.8312160640592507 +3.9643635509148902 4.513363215303284 2.401774584756962 2.0775713206517414 0.6375801031674749 +3.636269924005981 2.4706915408037995 1.6467476159498644 3.8719997867803158 2.512035069654452 +1.2805955044219322 2.546336984691583 3.450579386168858 2.860450079165575 1.3965507845615146 +3.428178729065454 4.3990278015377715 4.480202679978764 3.664124377443751 1.2682790376682835 +4.7639856799421985 4.713643050571144 1.338337512147998 2.2229379112677288 0.8860317412230662 +2.2895934918524565 1.3598880309299854 4.97223162940314 4.877037170072715 0.9345663321328649 +4.092357562401132 4.258308701824806 4.631927626016189 4.3881237634155745 0.2949238954289651 +1.8173456003532094 2.72769111483763 4.925781048225333 4.344429137759734 1.0801384168447608 +4.8947716430346695 3.5738811567506854 3.74914190592427 4.825064857615823 1.703631965752053 +3.820246374529808 2.721885098200731 3.879701548353169 3.168429307846622 1.308550990009347 +2.5516399469882542 1.839168751402743 1.5624637321644528 2.711622484434654 1.3521024526485605 +4.70083425919364 4.159452467054049 2.0895688194707356 2.137832286794232 0.5435288466478685 +4.90304389973083 3.821589689862376 3.1680002967288456 1.299187863538993 2.1591672280041623 +2.7352667029222237 1.1839103209991082 3.861914755741569 2.796780637273787 1.8818122419778542 +4.955638241109166 4.81361515553164 2.380908397373713 3.7785385805329423 1.4048276355890295 +4.161469053586702 4.349118567706625 3.6392530111130634 2.760044096303096 0.8990109320974712 +1.0314965584166793 2.859549661622896 4.0978861628830705 4.773999557971376 1.9490786210822058 +1.021978145737208 4.281861601311202 3.8657987586367195 2.3974951081333993 3.575297995133611 +4.702364178662303 4.713787996815487 3.485465995539511 4.266470261420629 0.7810878100096694 +1.5896245996297744 1.3591670649969347 4.827398556055767 3.567680555646933 1.2806248927078836 +4.72519795049325 2.8530152677899547 2.842853124682877 3.052716260388325 1.8839083133587555 +2.789507518939689 3.164487735409541 4.709839466412506 4.778278405498641 0.3811745677862217 +1.7878734729724237 4.7587888302316825 2.8563478616607574 4.6407025642647834 3.465582168222824 +4.1883856287231565 2.1284677647198733 3.465714785634244 4.99146717214755 2.563431674804479 +2.1105934562845388 1.293241929788083 4.1327519217281345 3.2660613793124513 1.1913085302216542 +2.2162101646614394 3.3299256992994763 3.9780232803543663 1.0257093011710516 3.155395398959583 +4.748940663847892 2.5800241391092533 3.596716050461429 3.828767478286269 2.1812947431376353 +3.3947102461312473 1.9888611990836198 4.9925963971157215 4.126556560262727 1.6511924606480868 +2.988650677295754 4.456770862595363 4.794705170892395 3.8994167693720927 1.7195691903441792 +2.6862240918108875 1.799624346040193 2.1255900712173394 1.220629375046883 1.2668910650935925 +1.0012048181228153 4.268387147782985 1.876212699487839 2.176223309501777 3.280927725714876 +1.5662506518430082 1.0574619933228724 3.8230677027332804 1.526244162095863 2.3525017058155178 +2.8660990733679057 4.615007359297785 1.9686366942779583 3.85096265654722 2.5694028918850176 +3.684304805186292 1.6451025118813556 1.4479003502521084 2.4588579843706717 2.2760451074182853 +3.820900121340089 1.9590921272577209 1.8868284459599596 4.23215736609408 2.9944777091249972 +4.896433997030124 1.9992255998560573 3.182322204218311 2.9788564890708757 2.9043441245651973 +2.502078016908148 1.0246429269377573 1.879307308724104 1.6676281736074148 1.492522194581898 +3.1859341045420297 2.010702310442702 3.0477429780884107 4.023920226706748 1.5277734748914813 +2.514251125545906 1.8002419404806287 3.3240606205154264 4.025348093991466 1.00080629335151 +3.2882757123113104 3.9347628961943877 1.657332645380511 3.4680452775859245 1.922661154585833 +1.1609905553277606 3.5853873792950894 4.907254772623047 2.4216243625592955 3.4721835342470833 +1.0998968123623403 3.068659233967993 3.7457214697022914 4.888502602143275 2.2763949985425747 +1.6850765590447923 1.9803030445514058 1.613786255951918 1.3040451750822655 0.42789977205285745 +2.148154448598094 1.3553058818424675 4.65990534017854 2.4573168473735882 2.340941032671101 +4.6372325761310655 1.8260770675600786 4.907063337454854 4.674325344769705 2.82077334548668 +4.132176513685995 3.6168862063789415 2.6400378087486223 2.635600477139112 0.5153094126021868 +3.8848702468901672 1.454324495657406 1.958633100287436 3.5586144093018603 2.9098956747675917 +3.906642894085362 2.169822964771733 2.806094351264867 3.3144150785864515 1.809677714037984 +2.369930157419043 3.983726749605697 3.6599624353515807 1.7446173314610856 2.504573078979839 +2.332885870281623 1.5464365805807647 3.014793263158752 3.2469368982720743 0.8199958247421821 +4.284449663488591 1.3938438304828198 3.312935443251219 1.4030410895673215 3.464577683360646 +4.174908265182813 2.012530309108643 2.600799953728032 3.474598494150602 2.332252626573742 +3.2018946047906804 1.470366969140286 1.690942797438261 2.4512043438665145 1.8910805302785296 +3.798743591078519 2.9240876130780835 4.128774948642309 4.101482073390397 0.8750816995523416 +1.8028463387478344 1.9432532733975316 4.13506840404524 4.53356021894756 0.42250424121169367 +2.6875787728930667 1.8194526868360654 3.818421959548967 1.7762163431540667 2.219064370613778 +2.2523300299928675 2.2093682751567174 1.153907909913782 3.718721606040434 2.565173485013725 +2.040180771234559 2.8997064214374366 3.261962866551118 2.858546463798401 0.9494888821711508 +3.518702222097252 2.43182597901071 2.8521237281659304 3.159059186475063 1.1293844975708462 +2.0033754642456274 2.251000369797836 1.856224709470462 1.37689776125766 0.5395112761868266 +1.0741557596568567 1.0781081533534098 4.926401564330155 4.990791934788121 0.06451155883751886 +2.836516244776136 2.717003722989524 1.6422165792397738 2.6734937365560096 1.0381790876655392 +4.959397777625506 1.6078541438688698 4.750264190780875 1.663095818891784 4.556693240209064 +2.4872122626598627 4.992143511723601 2.9147261659432346 3.5333451881371394 2.580187988724109 +3.607237222457049 4.910737645328297 3.9517680881215473 2.3024972368824153 2.1021911647546645 +1.5873191056704488 3.51886473678788 1.6646754980931586 3.7379453329310905 2.833604830095005 +1.6120882989706127 1.4583844451126424 3.9127799473514617 3.3963663702647877 0.5388022432119659 +4.8574590605622365 1.3529624037667212 1.8481363008705176 1.0138081673502009 3.602443650062335 +3.4058121449368484 3.2720492644654935 4.746251413507932 4.438132520523091 0.3359014147130046 +3.328247651565632 4.927735392947495 3.8354962801841954 2.6628804369992314 1.9832773256706282 +2.4475985028459646 4.20884794049403 3.5508350521344396 2.0394746192041118 2.3208209624706027 +2.2473271379786164 2.1490586998497885 2.82769773828232 3.884883202635988 1.0617428087691294 +1.2471009974893041 3.788032052450284 3.1761464982596395 4.671152100002023 2.9481133586255166 +3.355027896804472 4.369778386262954 2.623484621128824 3.636022361627999 1.4335101087161555 +2.7832573406651453 2.4171459540454188 4.046456464570321 4.706178150736809 0.7545000004048863 +2.7183413797066165 1.705149366794767 4.416827441186447 2.7900574372687954 1.9164912472209732 +2.4568955414485503 4.843798765622707 3.917836182148581 3.1692450952267883 2.501538649909638 +1.0459588195576042 4.9711061302990975 4.2713590010582045 1.8149701165668586 4.630402548685569 +3.90638507551248 1.470176651148924 1.3259372358116672 3.0696676539832395 2.9959484738888227 +1.0042499322913714 4.667446710699436 3.525392003830194 4.887806991765344 3.9083481468120977 +2.990869114066373 2.710983821788629 2.740427571180583 1.5507403236313708 1.2221667332302164 +1.6967851520714494 3.8724777610213654 2.580758950239339 3.4801517215122506 2.354261176177626 +4.916730429062713 3.013107604256761 3.7825373649363154 4.485051147622986 2.029114455615288 +3.3583584303701417 4.280269841062683 1.2737431316556038 1.880492936515573 1.1036602624280365 +2.641962223360916 4.8414158419370485 2.391211053981418 4.1075234027443415 2.7898609819816733 +2.9418605435525023 2.4996075544119956 1.987925181633602 3.5781844920987265 1.6506096997548287 +3.3730583789044055 2.3507941384233275 1.0018944597852548 1.1559648827354057 1.0338093985809926 +1.3394604604648892 1.7344272389052127 2.896828598696359 2.379926826645307 0.6505276304823994 +3.191386010636282 4.518905551125304 3.8626642842614336 1.1356503139679126 3.0329710391885074 +4.041233674846332 2.9433413571756217 1.5758131440576952 2.0751226226474486 1.2061001188168148 +4.004347828135623 2.8553843326052464 3.649226981529239 3.0987108181049536 1.2740428408231714 +2.6471315181482504 3.886991949800683 3.357967473530052 4.89393322110956 1.9739414043265906 +2.3809950361132235 2.4560572067988122 1.6489976383070961 1.414520694847806 0.24619863216931895 +4.123093306938032 1.2870296113393884 4.180399008627875 3.190437497224155 3.00387767386646 +4.487659992301484 4.3656137067549405 3.8985551512319807 3.0459028390541665 0.861342708379122 +3.456322545225628 4.194085693084826 1.1818316074596056 2.1674876222044017 1.2311832689497153 +1.1964250551063231 2.973647142047724 2.7446937818529946 4.92394293253828 2.812053556935729 +2.0720377453483634 4.073270472481499 3.8677771413674327 3.8685366577094213 2.001232871260564 +2.878744980519141 3.0516360940002216 1.7449734118670688 1.5743118698704603 0.24293352802235427 +2.4551410548371484 1.5453178167868016 2.8514639259132895 4.889475511389575 2.2318757911299594 +1.9996317907157048 2.5485738773709827 2.975475413095043 1.5966113199190493 1.484117111939454 +1.839983590539437 3.910579079640459 2.1888197744155207 2.8507889449407666 2.1738373587302666 +2.4091870897256897 3.97377383478123 4.218565689348205 1.8100928735793556 2.872050310684167 +2.644449850074174 2.593571636697326 2.538433536114376 4.244621899812673 1.7069467844710016 +1.7486824238352772 3.813778575567966 4.240333315460537 3.649930145734028 2.147835659151852 +4.159057909180724 1.4482993640175192 2.0905394682216416 2.8439263910746666 2.8135038200971554 +4.566300069228351 4.36199438776393 4.8275300871772036 4.739921463424041 0.2222972839118032 +3.8637054052260704 4.547715052480399 2.007039308137311 1.2458235604312975 1.0233858568949525 +1.9617174395032988 1.2112240555566025 4.122934820175729 3.9326272782241394 0.7742462656489983 +2.8651583557535494 3.14259826853984 3.840876714656567 1.103533592389259 2.7513669828343508 +4.675825246184456 2.4696041232327475 2.633770739815293 2.9984219812536064 2.2361534319542566 +1.082722674610992 2.636911472542763 1.976330943584517 3.9215661040947443 2.4898679983689602 +1.1602057069762788 3.4721322434879136 2.8001367289589534 2.7169050501277607 2.3134242634215934 +2.6382701357641425 4.974849523258857 2.2426611658567874 2.5348270280199077 2.3547747503909364 +4.876922063256532 2.4637238579120293 4.0344279902172095 4.837342512304037 2.5432650880425043 +2.102843512644276 1.3952382522230198 4.6336957061839 2.0051698550576935 2.7221045818657634 +2.868178399643553 2.6729874554114503 1.2790397973313508 4.96861858425174 3.6947383032635948 +1.3839279222821896 4.0573719423602626 1.4138901550219591 3.9484657154993257 3.6839348800243963 +4.58617493947892 1.6616351665987037 3.3737022964889087 4.017274327092547 2.9945146253998427 +4.6490186423028845 1.1107100538125563 3.403427858258916 2.9292405951247975 3.5699413479640034 +2.680609185680743 1.083585646737892 3.073646224803113 1.1582556329158438 2.4938334554311785 +2.386333417875987 4.851954578185827 4.416263793484047 2.4367155825705757 3.1619454178556543 +4.926259334804353 1.0185187388772925 1.6419622994303222 2.2237389666515 3.9508101264904343 +3.0835919275484978 4.493866093563495 2.786633745086173 3.9187763583519724 1.8084855874741192 +4.22672070424518 4.554581819565728 4.313173602057255 3.630818579994261 0.7570345349281116 +4.557625219409413 4.916250626304335 1.018460302792271 1.8493995534875283 0.9050260884728927 +4.389738022879884 1.2151269055482752 4.823554723477994 3.7993527157793174 3.3357376244032513 +3.418628824342134 3.3531332311652977 1.5088677489889974 3.8558490233170444 2.3478949667248936 +4.5311735918210285 3.885576267821081 2.114896125561101 4.851668436719111 2.811888793654018 +4.496254678027686 1.8295230001283307 1.13269161256502 3.905084970960362 3.8467678348954872 +4.45002542998672 1.680525828680028 2.781495604081773 3.108906297200508 2.7887857220672974 +4.817186333089761 2.069070816234168 3.3040366604779723 3.733155432924777 2.7814172313496464 +1.7953120958979505 3.745403779879249 1.016030065319963 2.6895832475973287 2.569754429871406 +3.7111940927264606 2.254545061011675 4.510461319474274 4.254383001814617 1.4789869865455283 +2.5733886360048435 2.930616733456539 1.2048725901116857 2.230970360042305 1.086502897863392 +2.7619282289751017 1.9712610896837632 4.875517212877108 4.146855375806975 1.0752221156382387 +3.0391359108920835 3.2775661636007194 1.215440680487689 2.970444183992568 1.7711257105923068 +1.8325819759327673 2.0679783720098674 4.59856978198827 3.4634561159734325 1.1592646367675206 +4.019809957074818 2.817001982824267 2.2688131359269135 3.3944834932252896 1.6473860434703724 +2.50332861720346 3.3619566289008826 2.7394241964262163 2.7941103196001578 0.8603677321583282 +2.133894382844544 4.764355866039782 1.965030307032436 2.183178622959673 2.6394916749850874 +4.2098373369332105 4.883990999515518 1.9954804203813774 3.0184437657439016 1.2251274083655246 +2.7802294633616276 3.05744930594304 4.930099575031284 4.485852875141946 0.5236468003181445 +1.0497753996449797 2.63942513982662 3.1462567604070637 4.868057397581783 2.343412838284118 +3.9751962430911414 4.121235482144243 4.726925962266842 1.9433094355482257 2.787444784594705 +4.301908208138643 4.562956910883046 4.341989316282201 4.040033522158822 0.3991537633659691 +1.5082912958364276 3.8249774597484425 4.513958011367715 2.56637031886622 3.0265710964794246 +4.456831444509518 4.409889501104777 3.283948250278623 4.043478539334071 0.7609795043516394 +2.871337649397229 4.380172310109177 3.2744255713914487 2.0052099836297024 1.9716719406592813 +4.963233013129697 3.8223473115933997 1.0021985315396873 3.760400814706928 2.984845057760779 +3.586865203229264 1.8252584026401446 3.6542322915095204 1.359011926844687 2.8933190356844514 +1.187953846442804 3.768764780045636 2.752277785862945 1.3769174059066502 2.9244146849852615 +2.375723504091497 2.985092131931023 2.2439410335267027 1.54842865935777 0.9246986467044992 +2.6681708212666746 2.7077392871925854 2.244478903539502 3.583524645240341 1.3396302332594916 +1.6057698946171453 1.2961716271045667 3.0047219431612833 4.232244877478913 1.2659635229826152 +3.10255756551806 1.5781150802120028 2.6058176977179275 4.4116351229064 2.3632396120834707 +1.6718479340552581 1.7457992072281812 2.5911340012587654 3.2891620454723443 0.7019344280718323 +2.23123704531854 1.9475221394313333 1.3237226506634907 2.4378915628127817 1.1497245377143699 +4.58941125898963 2.7771592719276104 3.7485875102001263 4.322666055790034 1.9010059024413526 +3.9941909688660058 4.288947980178374 4.780456316028218 3.4881998812828963 1.3254464866068676 +2.508741017841486 3.764158296330075 2.455444838374933 3.8279325587902227 1.8600524416850328 +3.552978902659858 2.5915099595801903 1.8730918446596214 2.9453164921443404 1.4401695119604716 +3.540838339166816 1.9865213599458782 3.9432158416417855 4.696426520147689 1.727202245861736 +3.6192393602095145 3.948203398726376 1.8177804080653703 1.7485437437688667 0.336171168187026 +3.7051239445902757 3.170037247751986 4.74996899715612 2.6695740209211682 2.1481063824394124 +3.6986544054199424 4.129062884040012 1.1134350302791525 4.753679783464424 3.6656013587897065 +2.56509103934271 3.8459155623982992 1.9123710696581337 1.688871290250456 1.300178299409684 +3.5307612800872095 1.0697036148943475 4.139866991069296 4.136010481214013 2.461060686791938 +2.0144423724322023 2.389284642640095 1.6956356274118662 3.1047383587373294 1.4581074154408127 +4.122356182705754 4.1757568096059785 3.839756232308823 3.6705723953578637 0.17741137967668713 +1.158760959817799 4.752117123206201 3.8547174980200993 3.147630968776044 3.6622643100682697 +2.883006807323087 3.1448681225198443 2.4744601963074793 2.3570245740597557 0.2869886300348595 +4.376154135744169 4.098107683581384 3.29400853088269 4.223233626593402 0.9699325275806009 +2.4434417889363518 3.2480451989373957 4.696361868525827 4.347382219713159 0.877025337530633 +2.604042369558317 4.291001018068306 3.94596076080651 3.5931164906780206 1.7234641164657747 +2.9940444250120817 2.1753528330439647 1.4138789625286714 1.4142873964381524 0.8186916938491243 +3.886616239721195 1.1029122676459089 4.151430829092407 4.985238251192874 2.905897902765607 +1.0935470157658491 3.420781923951525 1.9125034482695629 4.915726481363155 3.7993908596486707 +4.02485268590883 4.440994667706525 2.862598771385141 2.590192224804379 0.49737257225803 +4.3837314955750974 1.0204179744490558 2.731564377985858 4.001399337141425 3.595046406499209 +2.925544723992784 3.9396514838811716 3.620346676856267 2.4024330912266376 1.5848425860357693 +4.956598760350536 3.1960144572646207 3.6858411820780126 2.321501390202633 2.2273482341041944 +3.9307137135761363 3.5861162171033687 3.6355064215564594 2.633757043035999 1.0593626630863615 +1.451830156025911 4.7251755612891255 2.8533768316619725 3.1970381596262323 3.2913360889608274 +3.9364605127386416 4.233767073895185 2.749949209188761 4.987046162658109 2.2567662640443222 +3.240841511437559 1.4480959572859042 2.9641219935457306 1.3178837450326144 2.433934467646583 +1.2673126602041038 1.8318118353901012 2.9067109644733087 1.4648865639771782 1.54839172067397 +3.1903448919685036 2.4487654244358783 4.999184397307698 4.102116408950768 1.1639033819010587 +4.715547919877006 4.585327700143425 3.5518854848450943 2.7826670001366196 0.7801630488844391 +4.999068924270477 3.19253999382187 2.398063703412113 2.3166039467025548 1.808364583957275 +2.9333784827498706 3.1338733672576886 1.5641213659692252 3.0042844360855647 1.454052223010138 +3.115860143709176 4.588924056886851 3.6582423922165663 4.023533546114786 1.517680769932405 +4.652084537828366 2.283236305702789 1.9571808764903569 4.3369282011950245 3.357772963778745 +3.6805234237764486 2.9857361331587406 2.641392487546479 4.347200787930416 1.84187712317153 +3.922490394837369 1.0624867473120885 3.592716078030634 4.452459565636919 2.986432609040312 +4.43520310746929 2.1839662540177276 1.71723453418848 2.243247746714679 2.3118731085616755 +3.910655102523193 2.97649095356497 3.25867862598968 1.427315010733429 2.0558587861240096 +4.327763922972796 4.661441981704964 4.961884427605269 2.229538317225872 2.7526453301841647 +3.138477383242531 4.461007922562186 1.84086298871715 1.356919557341417 1.408292679880449 +4.593402652478968 2.5085974051516917 3.6461812344522486 4.981012183739502 2.475517437316581 +2.1280353612314067 3.6856967977542605 2.369727369352285 4.510010135122989 2.647096422173838 +2.784441245223476 3.8737474816763475 1.834909324209855 1.6294381788824301 1.1085154344154542 +1.0460397858332495 4.576608047914555 3.219695467154147 1.7404067095037221 3.827950820181308 +4.116837285234713 2.839924512819252 4.8698950076882275 2.325785832095709 2.8465764921554073 +1.3638322096443645 2.3138286800130774 4.921650714731522 2.133160266216267 2.9458737710862324 +2.591249058834378 4.130489473387669 4.879371407514553 4.989390837982077 1.543167304239753 +1.114348470399765 3.2698624537982086 1.868970394672906 2.0894870799263057 2.166764440612171 +1.145230108639487 1.9024756834487482 2.886556075972077 4.2134777439453295 1.5277898983515785 +2.9990986682440153 2.923796420313335 3.540335549135927 1.6766737739008724 1.865182468557886 +3.1613428070395777 1.2185948090940615 3.5188007985824092 3.4007616582156177 1.9463306559215068 +1.0127734026194233 3.298073375771198 3.144447877731665 2.8716555316319887 2.3015237629401244 +2.0022040193149677 4.869576763974166 1.4286937728762306 2.6872645226373426 3.1314256799369633 +3.912500294690935 4.90193585063059 2.4903864123490638 2.7061099549672827 1.012679300764743 +3.3199592992438225 4.6659070390318895 4.017119965424559 3.5401441507056153 1.4279640212790399 +3.116640995321013 3.804967518458131 4.269876494919398 2.9619760673550246 1.4779705446581484 +2.814976668172614 4.767948875409608 4.867917798774713 2.2082825330477474 3.2996606172360647 +2.2931508221825703 3.069747463265169 4.344612590152901 1.0777947381303554 3.3578566409592256 +1.8873672144149083 2.066188099850483 3.629391690460697 3.4707836034150925 0.23902601185692948 +4.714751568940601 3.0277845340464444 4.277897765705454 1.859239954250555 2.9488579799189014 +3.2860350550461903 1.1551333940532302 3.904549009234927 4.678881865210457 2.267230306048721 +2.49405573993984 2.6595510020817366 4.093782932671473 3.98810737168555 0.1963568332936357 +2.8834079016613257 2.3966139894100906 2.2910561252102783 4.896723379864558 2.6507489800021493 +1.946503189350914 1.398987679989144 1.433357745034856 1.2143333890974546 0.589698992271033 +1.9931292630802355 2.8952440150258103 2.2822953444755503 3.6130150418585134 1.6076771873360742 +4.330975562212759 3.937991886571255 3.684087482850184 2.8173407938032953 0.9516753607688133 +3.174876097316278 1.205859937728476 1.2320442417174977 2.3797718376595594 2.279101417489981 +4.450741398892803 3.5136108718790195 4.081092463510842 4.5394003076823175 1.0431968676574124 +1.5632660857694987 3.3072237180755537 1.3512679724706538 4.072753552141085 3.232316813623418 +2.3660985721797343 3.328911443045567 2.1835838078344874 2.6241904802586853 1.0588403392814383 +4.072670438420399 4.076772749355173 1.2311150213768212 1.2171272936529571 0.014576881761286154 +1.904026673635197 4.1182377378042965 1.260458020790772 4.5900554399175055 3.9986184626873644 +2.949968445741431 2.871622573234543 3.67690303420191 2.431508661218092 1.247856249733367 +4.67394760918809 1.68763022028295 3.3603610531273542 2.8817403664102565 3.0244287574731796 +2.0524355988418317 4.88309478309184 2.1987032416753443 1.0570358636957895 3.0522181801636714 +2.7393353833278224 3.894901543746443 3.0582267322734156 2.2603123832273644 1.4042793381369023 +3.299285033131814 2.2081395981965812 4.806177655464607 4.134547445306045 1.2812827554359858 +4.604202158664523 1.6169987909888195 1.6228731427491034 1.1752122173291926 3.020560256641287 +2.1113828810055715 1.1048918904700975 2.3056016886277684 1.5336356117389829 1.2684461903826043 +4.760448953523216 3.059146213041388 1.2316615482598565 1.5235203341440506 1.7261554291745502 +3.5129202650258406 4.896749605259831 1.7284977617630402 3.914872461433357 2.5875119265910467 +3.6418205286371257 1.7254225729738555 2.0264806520676433 3.3227046772253184 2.31360710749823 +3.489127195403202 4.48448488769645 4.059883318611458 4.7622740035237765 1.2182321658283923 +2.12226385880647 1.4729451470435984 3.957641458114534 2.7881503730585346 1.337656229182541 +2.542389393551457 4.29685637537697 3.5885179074454348 2.8351681183035065 1.9093690829999614 +4.852143266628568 1.7224579056904 2.141591309146708 1.1395367497265885 3.286189860389281 +3.0684966013148944 2.8381514481513257 2.8581473921620364 4.208034560616074 1.3693992321973922 +3.3231577709088436 4.514369618594598 3.976511760911396 2.1170508207986254 2.2082981351873614 +2.1392455102027164 1.9785602998044265 4.35728591726393 4.672227819862492 0.353564900482422 +2.811447672438143 1.9361386662049744 3.4089753952098842 3.9361995680839432 1.0218273752721803 +3.023385612874459 2.464343310103561 4.492460685777904 3.471517586410372 1.1639815756418017 +1.0699459113633498 1.738894089922133 2.831003667938848 2.0843978177273628 1.0024529720476312 +3.7484033649382713 4.36543176073376 1.782093580340526 4.731798993019999 3.013550408207657 +1.9915539917743126 2.222168830243053 3.1831869428453516 1.9073802731054244 1.2964821102795236 +1.201233825350129 2.0337126923530584 3.137929382736447 3.230131081263116 0.837569231298335 +2.7537629647219757 3.0428111985171244 2.8082908063499907 1.7896853471933922 1.0588229138452379 +3.811218460576551 3.0725060485700975 2.694772159777914 3.609378182000885 1.17567010829523 +4.73269720265392 1.2555848491311856 2.2121808308633444 4.402857901728304 4.109668642096816 +1.1467572465266982 2.7603113279745197 1.3001630984971797 4.359023427700684 3.45834979250681 +1.5146847218874475 2.266959758638813 4.12275548353834 1.5182613405488636 2.7109606178964967 +3.1441685730013056 3.9229726968940914 2.145285212400177 2.621729212768619 0.9129812423481075 +1.1172136641861372 1.6655376232148948 2.828107036329568 3.2152378002630635 0.6712148630868527 +4.854989467033246 3.302559833623903 3.23661724334562 4.01267458187276 1.7355986746276613 +3.3348628933537157 3.0623469621083537 4.733068340046053 4.880166482624495 0.309681766225515 +2.0511239260847667 1.8660318709552333 3.396735240707288 1.6420069175803094 1.764463248938921 +1.8039696274557295 4.1662182982860365 4.493034588812513 1.9379561265353393 3.47974779707269 +3.700956288586274 4.748187614896365 2.1496846183578415 1.298138278599474 1.349749835918147 +3.2721850913186703 4.46544492189339 1.9310339805227015 3.051263780279595 1.636699064436275 +4.011467683451159 4.419138809607594 4.3982425043997715 3.159148393668973 1.3044347290491018 +4.612552146893046 2.916244065463003 1.3813595732785982 3.3190213530398065 2.5752658658616685 +3.4686880183306212 4.831253818349885 3.106491264320093 4.7119439234666665 2.105721681548381 +2.5181775209971526 4.838689484699271 1.5657480347390056 4.655895334730351 3.864425715333194 +3.444563839722911 1.8097847939777383 3.078146792904242 2.1731633555925267 1.8685549363655394 +1.1658967483161988 3.6596374849377193 4.7216792202938205 2.195625648979311 3.5496041337924478 +1.2351522620249602 1.7782286053632812 1.3675115572671968 2.271222377462944 1.0543363605759748 +1.9573694362467724 3.0742817449609556 2.1976225135532004 4.283212203334446 2.3658354675418742 +2.37225306448925 1.8018243423679832 3.458362105684256 3.807745985718862 0.6689230319318787 +1.398353587200897 2.1969972531698407 2.098324871490672 4.406628833601191 2.442559904421473 +1.8928891529346288 2.9002111709129106 1.5084839055397654 4.874298957692698 3.5133187463142432 +2.105263519557432 2.9101319535884262 3.8349310930386373 1.716393322561589 2.2662778913975594 +3.917983190821843 3.336720555965578 4.8393994276078365 3.5597148772022886 1.4055101562161325 +3.278930237921929 4.082956186730338 1.416688863255676 2.829196521620795 1.6253109275758204 +1.0654149318181734 1.1147166490921472 2.138180038586222 4.65801815621915 2.520320376143085 +4.635469238137826 2.8644294731528572 2.7214450024140993 1.341532928380996 2.2451590547710323 +1.7452686422592514 1.4250430877435285 1.0344677551726051 1.2879336931720649 0.40839856450635104 +2.5352412996239413 2.247759462227902 3.498321815071482 1.4993140348088279 2.0195736957049193 +4.486051212205959 4.790232535970131 2.414821238930175 1.5049646294941574 0.9593567258644355 +4.755750305230275 1.9136029262568908 1.3869581163648514 1.1411811631041395 2.85275446447103 +1.405522978759687 2.2728067732127353 1.1201901563786438 4.535137686193353 3.523357462919205 +3.78085508387344 3.9845157883061146 2.5516581380561676 4.396190494354837 1.8557417104658542 +3.894618000033242 4.944981691147126 4.573952839410662 4.599333006130438 1.0506702796182563 +1.0426692677526064 3.4989823183225086 3.464987259133453 1.959342452510053 2.8810484352249333 +3.767927142401943 1.8788523258552963 2.9256430346707636 1.6843623410419992 2.2603940857483797 +1.8154685768474277 4.951879258584286 4.780928731054114 4.130104713755237 3.203223979993612 +1.1036038453086583 1.248114944065151 3.137220248094904 4.822902310264409 1.6918650869333063 +1.7289042499875404 3.0188790294686743 4.130413806158113 1.2432914083192053 3.162200289640187 +2.604372941307429 3.092235087149215 1.6479092998318565 1.1390805623364764 0.7049228024730755 +3.0464481998507766 1.1872258563283498 3.3523536626110304 1.723163773165974 2.472037098937437 +3.7519622679238513 1.4429625422273622 3.981972949311205 1.3518589628936502 3.4998541847933757 +2.120945412078181 1.0190351706625376 4.759107801759919 4.553535628946674 1.1209219858544308 +4.623725350454528 2.5040687692591037 2.7420174561897306 3.609270764382419 2.290212287709643 +3.365555983059574 3.828634727002149 3.646874308306728 2.5449119408313 1.1953087393738422 +3.7365603833263092 4.592919202362189 1.9372095904734317 4.9973447390950065 3.17770004166059 +3.5131363505417106 1.1840060271943584 4.233223522046135 4.082171874260158 2.3340232782547394 +4.091533144613601 3.483614389985964 1.9791425700591216 1.3612076704383633 0.8668383657853025 +3.4771039623441373 3.2008005168137905 1.4572217707473576 3.610623754786462 2.171055894921983 +2.049423304457578 2.9528232141715964 2.176032959220712 1.0061967499149551 1.478055531255223 +3.531831736873864 4.832016987067663 1.9536369526762036 4.547853196843954 2.9017993738929198 +2.6648003285621593 2.5204598599558716 1.9228562540404779 3.4757329281827536 1.5595704972756628 +2.2646137682767598 3.70882947988257 3.781828527542258 4.70132670743113 1.7120852561914153 +3.950326079727931 3.4805062841504593 3.5497207012175704 3.9076044001196926 0.5906025586266301 +4.058116230199527 4.854164099045783 1.4329371371014692 3.038994012767791 1.792515243274024 +1.8627061390671993 4.599383436415829 1.6492932750628908 4.044654744090358 3.6369161658092737 +1.4960867200098882 2.348652325950818 3.8480252862745354 3.538317536166305 0.9070760733866409 +1.9180039115754344 2.6846879192625006 4.5305901345269595 2.112399198131672 2.5368192234582696 +2.9622061676934277 3.69674866911293 3.0484019195426204 2.789667954155723 0.7787784994698093 +3.717525045156545 2.9393876378104262 2.4633492397580987 4.819745250282086 2.4815519303703284 +4.3494968958231395 1.4562134556565085 3.3481297219195754 1.5566148366647732 3.4030302157389056 +4.086417757219054 1.8573349306622102 4.178916834941676 1.1564563633809213 3.755539581710983 +3.251600062012016 3.437168391567918 2.881022212706801 4.350461429086786 1.4811101294534421 +1.273683673705165 1.8852448255360237 2.926603488633025 4.459810429553504 1.650675790734031 +1.7919795549526287 4.230838780116976 3.7450999606473356 4.930489375160109 2.7116751988776557 +2.4336864365170827 4.265635824415114 4.79061106208111 3.798004145999212 2.0835803439449094 +2.287493679847744 4.400177824196195 4.306103485465959 1.867700004559047 3.2263362858636255 +1.909295019529019 3.068178300082187 3.698133947102138 3.4566101391015325 1.1837838517976103 +3.805562668734256 1.530354058924889 4.044059810097245 3.0592154991699774 2.47921207945518 +2.68903613034674 3.945079045660922 3.051855802565242 1.9849914002682767 1.6479816315722122 +1.086959974585251 4.867527279559383 1.6097134531615298 3.6041009092603833 4.274373693593463 +2.918759611528366 4.173456558864212 1.7193278977502247 2.104644034092394 1.3125292204669379 +4.317023569692882 1.2299544483590918 1.1414030457737043 4.010811897408807 4.214677083447136 +3.739066220809364 4.671123047178687 2.009552776365606 1.4241666473211838 1.1006392904395463 +2.3555118064319736 2.8333971626934296 2.839302776955337 3.1382809445292725 0.5637041408531669 +2.534253066162725 4.166271096836632 4.653758875179449 3.5712753972689586 1.9583802828853052 +3.0599437652403423 1.0326911294657464 3.582052526291811 3.1431048537225847 2.074229569866602 +1.1584559637753653 1.2335427964051648 3.639981781465659 1.3535982010035097 2.287616206762247 +2.7256475280805414 3.5910761962479936 2.0971864663303914 1.276535362833099 1.1926588000586813 +1.1767258769446962 1.6302539275778636 2.3750395882465574 2.5123812855441097 0.473867528458844 +2.2354310038409992 4.280548497715619 3.2454982460069672 2.409118832709667 2.20953300195755 +3.648265568270425 1.8487317162386745 3.9204508614425606 2.4750906417169243 2.308113569427113 +4.291445823392872 3.0382558911530544 2.0923868469606712 1.431544121853146 1.4167561941261375 +3.6092148688348344 4.90473781213002 2.9859087179855863 4.969912524020796 2.369525437501446 +3.085800664764976 3.45729867715118 4.732319842898134 2.9903461948875734 1.7811465306285503 +2.651591101437341 1.5683284467380711 4.838975010618464 4.369518912539584 1.180612979383827 +1.1952731385217201 1.9209066816852807 4.850480230088817 3.389707820448176 1.6310732882772088 +2.908661864696471 4.598727226831576 1.8202553053237174 4.522080335422822 3.186876122719377 +1.647004792952631 1.16365068681576 2.309051524975912 2.1370001609534004 0.5130622416251077 +4.590778692973585 1.6874613806893626 4.1439201892168045 2.3761567277138425 3.3991526990757883 +2.739018233234349 3.092197206421183 4.837793564827184 1.8286374963392 3.029811154448304 +2.722944174500781 3.7416740728760907 1.5662776837696657 2.208918891745589 1.2044908999376138 +2.1801732325300778 1.3253309777568139 1.3563632370508558 2.413268629272105 1.359339651688345 +1.1257006507361886 3.4634882558478925 1.1176967478431 4.303531067104948 3.951555541353369 +4.3003256988732685 4.132638593857528 3.66891422834756 2.1347778955671886 1.5432735508474726 +2.2177295488980344 3.974279945566737 4.847273252521387 2.889488658270835 2.6302832192601953 +4.651851735264165 3.4809968420953785 3.91377624940885 2.287406300251518 2.003991115843409 +2.541277809894889 2.376071544151119 3.1922147917992914 3.657539033973594 0.49378108570103235 +3.916456257111049 2.387004235853012 3.021091394873418 3.894254537692383 1.761146603581822 +3.6138400910414648 2.526257309882191 1.861487147065942 4.103332004116214 2.491727246099961 +1.9352704386680646 4.200617367768518 2.7048022371046603 3.587083295094655 2.4310936992376084 +4.399879364705821 1.6353218228401656 4.565210586806499 4.6509349608803845 2.7658863083280623 +4.314765002810123 4.78226370630995 2.355293864113848 1.901969745583599 0.6511972007120775 +2.8305284130997133 1.298414016623263 3.0011799112176276 2.874309060975517 1.5373583630798493 +1.124907268848303 4.335310163967556 1.5555079664325082 4.7132378392444805 4.503103896052055 +4.5857335498835265 1.8198373262612293 3.3032514821581174 4.413424933619764 2.9803803468984205 +4.122013048638161 4.306022033289093 3.2016472886418867 2.7658652324504143 0.4730383778624463 +4.673433720297885 2.3509980575398415 2.3231727973182337 3.9424583136238605 2.8312175810007205 +3.9686842726872755 4.937419767384995 4.774025890130213 2.183586149628262 2.7656511905623695 +1.7446080533237494 3.7841236273381194 2.203467152571019 2.004231773251387 2.049223880648428 +4.034580506730835 1.9143604704711032 3.0631425637275194 3.820372888773412 2.2513841891881374 +3.297865799316381 1.6712236715940096 3.9117470618513073 1.4426918988058142 2.9567208204094566 +2.634075109802285 4.463458221012518 1.905431126047679 2.0061339217347753 1.8321527285246793 +1.2273914149565641 2.5528419631852604 3.2538841054519345 2.1966830093663665 1.6954330754601545 +2.8960385531365307 4.219394876809751 1.233775261267216 3.8581723008042625 2.9391719549112323 +4.537076745702497 2.467382840145924 2.5810313761045713 1.7316942779111089 2.2371871555740954 +3.633460891978082 3.6206399826453155 2.583444570128549 3.194596181633956 0.6112860770226778 +4.489963126214217 4.0874349018853176 2.8304457044507423 1.0870952612352962 1.7892176332802192 +4.229452871986524 4.307779541743276 4.107960268432347 4.446268599345419 0.347257244647786 +2.320769600559223 3.601399441243604 3.38465708380992 3.6947509961147147 1.317638426617787 +1.2930158802872334 1.5230404681530838 2.1985025185052076 2.2391207012044387 0.23358327805868825 +1.8573757202304662 2.4062051557318647 4.2553398161669245 2.711971924317022 1.6380470685746473 +4.711171023733208 2.1732993571832644 2.7093799252749053 4.492356397942812 3.1015798712856446 +2.809661718826491 4.579265169590178 2.3465325612034165 3.9668764856071883 2.399377170497995 +2.098174299251836 3.210385223183123 1.7544429461661974 2.943123011770805 1.6278739010371357 +2.0671540434650657 2.359838298728688 1.7952403169997568 2.046781023013723 0.3859233085228538 +4.258958406412578 2.964900334254794 4.903374137489353 1.7354307612672675 3.422053700494208 +2.6180796582438157 2.2811697240145508 2.292903936954823 1.5756971794528862 0.7923975244716566 +1.5844432007409361 4.046824192233492 4.988167802486504 2.4111543611792374 3.5643117742338677 +1.7632858877800053 2.4195979326977435 1.731621895163979 3.4594689650321087 1.8482967827586523 +1.1221737467561508 4.215067918584994 1.034608172802895 1.7603668058776845 3.1769041458022325 +3.176898800770193 2.1767209330556434 3.7659544309529016 4.124876657718586 1.0626292542239084 +4.144040939164343 1.4396352701900748 4.477472104084528 1.3884490092729616 4.105590542499263 +3.2164804562227487 2.6595115990012763 3.5739215025809274 3.5686425066281333 0.5569938740353098 +1.4707950631383975 3.0396665488831993 1.2226875632348615 1.4730691623278114 1.5887254904316996 +4.584016592007089 4.991504483404357 4.620714467968037 1.2603089517429398 3.3850216565203026 +2.399718885216094 1.8592065191605713 1.295486400699812 4.3034888449225495 3.056179366841695 +2.2311483924066864 1.5222049240600413 3.2109989350132704 4.617690791475453 1.575240559517305 +2.3991032105845687 1.8751752226837017 3.563148944317214 4.012531419032952 0.6902500598243306 +3.5920428225888448 4.365725864675813 3.0847204540751028 1.6314516866702142 1.6463825679128985 +3.3835752877403427 4.268907365271948 1.4600992866512383 2.100744268212168 1.092812371775518 +3.29992075113476 3.144308970381704 3.951915656107906 3.7592938075884863 0.24762512561566802 +2.6729158014287044 2.5638088532435477 3.219044840863316 3.1583449550044174 0.12485512518740197 +2.366705113610885 3.891080578983181 4.734541413035609 3.342227987299273 2.0645234885839048 +3.2462181587824626 1.8057151109910485 1.1382373780397148 2.470981211275978 1.962461504265916 +1.7543971903886915 1.8796014697818042 2.040296740422301 1.2601271800375415 0.790152298312988 +3.146175507631982 3.450340125499208 1.4745283401577054 4.227327290949329 2.769551981502023 +1.82779985936953 1.2522312417900374 4.114739958552786 4.115923766516838 0.5755698349841345 +2.7219188976424755 1.586503049041736 3.5116534146553047 3.294888904141349 1.155922143689657 +4.522832186451033 1.9925374649966807 3.266220237274907 1.4936604814264354 3.0893946762227302 +2.2737490566370835 2.2802660911103825 2.941972695142772 1.6168348644607025 1.3251538559892235 +2.242812997277159 3.352201556399448 4.348347083199481 3.6304275775767545 1.321420217669235 +4.792198168055021 1.2767236596307994 4.854802390559908 3.534640342511052 3.755181600467423 +1.7267710530814115 3.984056796432573 2.4652188243805906 3.7833798712103777 2.6139792410261804 +1.3703104168063591 3.607822633481919 2.466996377012945 3.1429271723616248 2.3373795925936114 +3.210938345434645 4.480063466540062 3.527475337328125 1.1290686064451187 2.7134910023373484 +1.3469692402151425 1.5747604213462445 3.0897120948257677 4.098190895717385 1.0338850584319794 +2.740316553480584 2.891337357322001 2.4060885457508743 3.7759813130251607 1.378192104542509 +1.5932206796366688 2.5211465232291617 3.92087741925915 4.854122426679078 1.3160519044023533 +1.4720030220223466 2.7504651006928666 3.3272816588816823 3.76074564048456 1.349946780412312 +4.468797515862141 2.8027959342460984 4.088717140723666 4.212616585073823 1.6706023890373893 +1.9599727839779617 4.331182952699187 2.2181614736102504 1.7894073034198144 2.4096613460614402 +3.37721387295247 2.6738045841595817 3.406247964573024 3.5866519709021327 0.7261750705303165 +2.885137515536918 2.59698322155855 1.4313772082101397 2.966408474358635 1.5618431051778614 +4.293528856702537 3.629200526195287 3.462544564302777 3.250812875225824 0.6972534968531382 +3.125398113886187 3.5036787282847257 2.7680829070694855 1.4357258491492257 1.385016806042319 +2.1121219642227036 2.2735267498575036 1.5846506149222979 2.536627665159128 0.9655629492702337 +3.6975319232457147 2.783727590531984 4.55683489017504 3.5260195312257196 1.3775408025652822 +1.6208775918866474 3.7571068622816943 4.61358022573247 4.213774576731014 2.173320052975638 +2.821873113518522 3.3871831817400753 3.4227833407620336 2.3894378136490575 1.1778703034023108 +2.0240235352404996 2.2489907836449055 4.612567232359245 2.1544706083725775 2.4683697607346637 +2.4442545415342094 2.7161590623855543 2.8956772554230477 2.9276681113959664 0.27377999073211956 +2.3315516866210357 3.3395768631629514 3.2586811548946 2.9660504979471742 1.0496415854604095 +1.5084901931250112 1.3629080545373604 4.9320185979278985 2.5985651097983578 2.3379904491549306 +1.4476462275481983 3.115161238147031 1.7353455615188031 2.7664449142519025 1.960554050716032 +3.8466496538158665 3.064109014166707 4.1470252954093745 4.032204238663915 0.7909195457027595 +1.3159114924553452 1.0239916118251036 3.7899384776377185 4.070952056386224 0.40519852930164607 +4.200654670609643 3.3740841233052628 1.094264990020179 2.098697568279007 1.3008088537286093 +2.0485075590205604 1.809407602428807 1.4827353471042377 2.8397290482550295 1.3778972001586702 +3.1941475945081463 3.647466393216467 1.8293139491609005 4.065332887963887 2.2815079723612604 +3.1411310327238144 3.559551425389391 2.76078948331133 4.220896463306108 1.5188772228287202 +2.363032957058096 3.6919533645003813 3.7760329528690963 3.4893354849569964 1.3594943499050591 +3.7700800128302427 2.338782474414767 2.234706208054817 2.392410751312743 1.439959501666068 +1.2708701005849035 4.632877735598495 1.9620569836998958 3.3749958685856427 3.646846806531892 +4.6022648177272565 1.833672096786949 1.5848143145878133 1.0497217438890822 2.8198279581670636 +1.309720468035049 1.8178859190028165 2.2889852115716574 2.264410369614107 0.5087593226806888 +4.197280793537331 2.4513616400236447 1.0669664631754165 2.060011231179499 2.0085745198688123 +4.3404862574454315 3.271238495488691 3.1091367181209986 1.6447155197021806 1.8132347401337494 +1.4596540224026957 2.193923570219931 2.9398975212160745 3.89001634833251 1.2007820595315533 +1.9997448833618008 3.515005879830132 2.9284661191367305 1.775703788689194 1.9039109427483825 +3.4859441391233243 2.2591236039385634 2.416151737403709 3.3379671976729712 1.5345463070049254 +2.453419647875818 4.898654977605057 3.6184467409991825 3.2177881661701133 2.4778424306925007 +3.9481779509846153 1.475668547062472 3.0696803903983416 1.0374442007624802 3.200513503009965 +3.011379393764316 4.918145197741611 3.260533850696057 1.1989472455889092 2.8081836053887916 +1.1531805761396936 3.24075731962823 1.7016398636610388 4.8722517619356545 3.7961502169217125 +3.7645338904341736 3.460118501054375 2.944520486150064 3.1834805221328044 0.38700210346731584 +3.7639219868090916 3.7484199330336203 3.32640929379244 3.6466881984611588 0.3206538483272137 +2.589199536415049 1.6335945054345564 3.685775722592572 1.267126351468352 2.6005856562849097 +4.729681429847413 4.6499337693958775 1.0644661741201227 2.4364427283501056 1.3742923105017617 +4.2872553407503755 4.946633566980527 3.727977772755717 3.5870748212524317 0.6742649975853394 +3.8585507475696756 1.3277552221323639 4.908728026240425 3.8492489040072777 2.743614769245391 +2.1378255137377193 2.2383976424257552 3.024408533106818 4.580696093445098 1.5595338160913728 +1.5887670553361213 3.114883935329939 2.235369220179359 4.446752037801204 2.686865589767228 +3.1607414401718024 3.770997732518867 3.733864426421599 2.0138855233639816 1.825031552963529 +2.727482550832921 2.1799655437122536 4.095573054413579 4.452218025991826 0.6534298040634671 +4.154999067785202 1.0558914299798952 1.1012406519536309 2.7058292681099787 3.489867157615276 +2.044055744236182 3.6764995684138633 3.36487593059098 3.561427629947205 1.6442339887058872 +3.6091867676838194 3.6097469557525996 1.32443082754043 3.8694631961031725 2.545032430214349 +1.5828872731997379 2.5286828946144393 1.4102493957421842 2.7861015117339227 1.6695803073126387 +4.48028792733352 4.129761068720139 3.747164915462969 4.392892492619151 0.7347334091419535 +4.204848743583296 2.724603767515824 3.067821580079492 3.338711176180758 1.5048276853011773 +4.725034084288319 4.664220964401684 4.884093633342236 3.246767362327341 1.6384552338425014 +3.530437896694303 3.307835875021841 2.4236059613314267 2.966881062935183 0.5871111445673971 +2.147555166824768 3.268335360533196 3.0442322934442148 3.5246176470343036 1.2193926072241772 +4.058823973441078 1.7365378072243147 2.225592462953701 4.584272937445706 3.310043295570556 +2.4602544791352328 2.6136358584987014 1.2114987646226152 3.1964387765365094 1.9908572772632827 +2.7748102939031805 2.217899296499179 4.691115049013403 3.9662254379418718 0.9141196897939325 +1.5960982510710213 2.0155672115822267 4.491840547375283 1.1708570883825056 3.3473699143859172 +4.218671879894267 3.5333745859645638 1.116762959578931 1.5369713333693733 0.803870299532818 +3.9464917518192895 4.574918143803515 3.6204985301961954 4.031227892661748 0.7507451893510017 +2.248730268598356 4.786254374371994 2.99389792677008 4.969790066835272 3.2160812080160084 +1.6620378050779205 4.6055969178928144 3.833235705034844 4.579579507186315 3.036703693422445 +2.331907034880051 3.491841933807581 4.143714535331882 3.79147307167574 1.2122388454709083 +3.937785923482193 4.7836127579502765 2.645346553452828 4.715714630095764 2.2364809426168764 +2.753986895346197 2.24892795230975 2.565601367395693 3.54554713563287 1.102441946148206 +2.230129323990862 2.5936702224700547 4.3066116588536545 3.304131660452505 1.0663621017559781 +4.04942480103868 4.381018752504076 4.635336896039357 3.276691457246188 1.3985249289883674 +4.011027302426905 2.415065483777147 2.668848047290391 1.2254863029233318 2.1518334628149463 +1.1084253220296363 3.559749408968964 1.768595221480262 4.085398075187958 3.3729164297617946 +3.4842283741476514 4.1789487620131975 1.0268113478599563 2.4302289177284977 1.5659557122510768 +4.104792964708038 1.7824821994052096 2.287433359277933 1.7706089847209032 2.3791247812541636 +1.251793438364206 1.3471770006361465 1.3172446854056545 1.5370895579234989 0.23964513749306993 +4.1180225817330705 1.623074511062006 3.183149949585219 3.907794707232365 2.5980523282125705 +1.282055878427872 2.756157331789816 3.5810026244357362 1.915442154438908 2.224200254927567 +2.1903481487459024 4.1954288367868315 3.0133174004651813 2.3037072637220106 2.126945018500325 +1.600885497154398 1.897847102916307 3.57246912364917 4.631045568332695 1.0994408963357256 +3.5597672451373805 4.990084515849106 1.3569017692089016 4.68821699862367 3.6253922067311573 +1.831598428344451 4.495972084368788 4.402973457566215 2.0011472366027356 3.5871515405157055 +3.592775100000853 1.032820216570462 2.760949359338529 3.2190423456502955 2.600618808919742 +1.624458131779837 2.1215831505353293 1.23549769230556 1.9484658905628258 0.8691702571987036 +1.9614139333816443 1.134048970560749 4.612210099178953 1.8384162848724448 2.8945578083687793 +2.545350716178564 3.659743887110834 4.168969623800562 3.9539206299682026 1.134952954605956 +4.5010285800919485 2.7951899848193262 1.9618108762821866 3.973554206578799 2.6376119009654504 +2.3818110684417344 1.103801273129633 4.766923263371284 4.9544803874536285 1.2916991568115694 +4.773015848601792 2.4336685357929806 1.7783370132507956 1.3442523692935913 2.3792804223263095 +4.138591317003099 4.22183945796718 4.285760074541376 2.554082491569001 1.7336774510683999 +4.169140430793183 4.353391305832502 3.6317192773711633 1.4282560899047798 2.211153184081164 +4.6776864861593115 4.136207249137979 2.289489664873939 1.55451830617411 0.9128979473272338 +4.680024775353891 1.0275848491296555 4.183166899577429 2.0630337158278413 4.223183885590712 +4.987509870247006 3.047042060306471 4.395367633412489 3.8875488385048533 2.005815357872419 +1.90740374299462 3.7505551942050426 3.2701468284942243 3.8417859015517153 1.9297612551673624 +3.7702155249504146 2.1475598678823813 2.968232056232272 4.852510126727093 2.4866674945321052 +2.4505706809182026 4.958669565536892 3.4967596782312373 1.7763883243197753 3.041420327804868 +4.9054112753979116 1.5560877017784547 3.5946985611905156 2.0490142142940804 3.68878143850292 +4.867429200303013 2.807465543624497 3.2900448763390684 2.3121333026127915 2.280298513981037 +1.1598067169181778 3.9722615470466107 4.692992537768804 3.7062122744704875 2.9805431484123575 +4.442935979909006 1.8299731034160454 2.041563524293046 2.244050666648577 2.620796832406067 +4.548763692523719 2.560335758390129 3.201841372073116 2.523071813355446 2.1010887089993506 +2.5015208862986995 1.6693475984341175 3.581162687709616 2.040003772825296 1.751480283064232 +4.390675752181329 2.039561782035529 4.859600329811635 2.513317687966031 3.32156275509597 +1.7301411269402918 4.162459719869554 3.922953978071078 1.9408024745182244 3.137689965650881 +2.4203848946676794 1.804676815165001 2.4630277438309016 2.7641886377332114 0.6854154383882193 +1.0854749983809184 2.7191332322791877 3.959060975376002 2.2343606662887163 2.3755905331831477 +2.893905617752921 4.379644760114843 1.5734283502039483 1.3501961318743705 1.5024158620191292 +1.080931707713432 2.952644611269502 3.275259486061113 1.1576397986222977 2.8262381948389907 +1.9524168518188527 2.379352384939984 2.3446168216775134 4.6540731352864375 2.348587323032624 +1.8336484589978967 4.047959571630026 2.77639576303217 4.384815244407985 2.7368205881269208 +3.352471059111075 1.9631896264617117 4.567400210542354 4.957312239883253 1.4429602523039244 +4.980028886933903 4.131714424055774 4.7282039248384695 2.9537876749694285 1.9667715819910352 +1.3528415874194142 3.7951978699795417 1.2795869122182326 1.739002121187661 2.4851894384922346 +1.5216086717145485 3.550275516146396 2.8218429182290685 3.190478850674256 2.0618878767738082 +2.6906546019473963 4.0453297993284405 4.70319060517274 4.3943351322718955 1.389437509764356 +3.396277522641621 4.166302210398676 3.0372284579952202 2.305833044950957 1.0620156637157188 +1.1175174629351923 2.114138508205701 2.7189255867826967 2.6354265685410403 1.0001127906008414 +3.5851491435121816 2.6383454478432236 4.7105771824018206 4.250127418675712 1.052830101701042 +2.1635455951122107 4.882876310201508 2.9039115375358597 2.6310570709239385 2.732985381954712 +3.958375573281692 1.3308994427668401 1.1744015541269341 3.5401832157584545 3.5356122082232515 +4.112525860626795 3.4984689475271855 2.5132961266129845 3.2699522495624014 0.9744713340690248 +4.652194588149296 3.79410962035906 1.8714396293807605 2.776231880960132 1.2469798837453792 +1.1125652037871614 2.301614069354525 2.0166081663988424 2.1591251787455494 1.197559311063659 +2.2161953374960355 3.68989655152333 1.9473405500810212 1.0188554752577592 1.7418036061494075 +4.511929806780398 2.464512176825871 4.867672337182271 4.687396793947164 2.0553389557290367 +1.785937581296273 3.1947112842330125 2.5954070442785757 2.0371660252822745 1.5153469508254938 +3.8479457900092973 4.4065565564645555 2.379585436630928 2.3501484978629135 0.5593858433708908 +4.368299569408535 1.70587312075897 2.672135306522298 1.1541151442644542 3.064783810889451 +4.827365025711069 4.246959155206273 1.9424323795676064 1.9036300213522193 0.5817014676958494 +4.918206298076049 4.763168288634533 2.1672065683172055 2.855479461282774 0.7055185040541323 +2.523291745159763 3.362929105269671 4.788257610465255 4.031420831335336 1.130394978198366 +3.7795450918220572 4.0532352616822696 4.412130980156302 4.637087285701092 0.3542762318904174 +2.972284996583106 3.5772996224574833 2.6473643134788274 4.588385265486768 2.0331269103663265 +3.3758457534322672 2.938973953183573 2.6584358079378947 3.0954797538257695 0.6179517622677184 +2.8222293695190435 4.122601900045203 1.6003467582246813 2.5411684200453166 1.6050277622203144 +4.360856079295634 3.265936923939026 3.482048285754812 3.807452231024665 1.142250272210085 +4.524085999703033 1.0151014634522446 4.5099024492352795 1.8663232748799312 4.393345345716914 +2.131477606196443 3.561891074727075 1.7021389373673363 4.814544660558418 3.425368896441146 +2.4334719349508074 3.36229673962479 3.1782162253607678 4.985655091024928 2.0321296146877565 +2.73662532652103 3.4435567922408623 1.2704093594725534 3.0717213059425728 1.9350650701514924 +1.2316604296683247 3.7888649371559597 4.18970408204791 3.790456974864744 2.588183367868128 +3.6837641506073058 3.2300982953844777 3.3731318614038623 1.3491765761742198 2.0741763919213967 +2.541931742262081 1.2296874422750714 3.689674075732907 4.21923090782758 1.415067327467687 +4.388082241269456 2.7898556244822745 3.339062799364403 3.103437144650561 1.6155023267597994 +3.6854283056893427 2.521805135066453 4.758206855288826 3.444914927750499 1.7546380168421636 +4.859507697461336 2.83872604098247 2.3241731503094 4.243903375964571 2.7872787163209067 +3.0720960564726307 2.0199102520625045 1.0466047120226216 4.8692188924135245 3.964779204335066 +2.4023031061376985 1.051590995828223 4.149553921285721 2.871456334867221 1.8595581855229675 +2.507136690887523 1.5131839533454485 4.255155581414513 1.753162862322995 2.6921942000632777 +1.719184070867299 4.7886738550731405 4.9502390784474954 1.0749068234115322 4.9436795630649595 +1.1716850809211738 3.0951087306569414 3.809306430791561 4.181293611927976 1.9590643172935074 +4.295819789217365 3.1327891219742807 3.7576460482776715 2.189892258721053 1.9520482262528842 +4.286368604519474 2.881502038024362 4.355685393887185 2.2935473655086973 2.4952080710314486 +4.720789652645143 4.625891183955223 4.185683148355626 1.834511761489221 2.353085763370937 +3.3975999599101168 2.9863708882082394 3.094442180591925 4.593937592778893 1.5548620004947555 +1.077185496617672 2.229311174977367 1.8357756288054201 3.0525692022125694 1.6757028910343046 +1.312459760949864 3.504513529254848 1.3816234236332217 2.198791632484147 2.339415227080629 +2.9497735999151904 2.898918609349532 3.4650940330430364 1.9874134748452623 1.4785553970484564 +1.4935893849616564 2.021334419807713 4.257823500307855 3.97578123413544 0.5983833735259836 +4.042786969135478 3.310505823457282 2.2451909631634495 4.740445228804255 2.600486401909152 +3.019410932504104 3.056947951619274 4.790743916026061 4.842199177928724 0.0636920072028217 +1.7548553660754873 3.0973332056780207 2.446771566325089 2.0668282425395166 1.3952073964515503 +4.466916829010885 4.173356905158344 3.0380484964873395 3.0731884211389944 0.2956556158723081 +1.6055499110835094 1.1985430324104076 3.7406798741333014 1.9487031391250023 1.8376167223058852 +2.099624811749093 1.170217379322346 1.3402379878401747 1.7093706477676571 1.000028547630125 +2.1294668111923527 1.5613321091431942 1.3304999847991104 4.022161127179318 2.7509665110778814 +3.697849593069892 3.9703342083689086 2.2443996199997 4.869707647309767 2.639410938795497 +4.554425715308852 2.3199469082560715 1.2969890636872043 1.1716797463113733 2.2379897149426795 +1.3813733895984228 3.2131807250664943 2.245128355408339 3.8180717794569823 2.4144707762846305 +2.2936476230391687 4.635808193666927 2.9573884866089006 1.7596558736174672 2.630642421696007 +4.366062284294669 4.034091118304982 3.6309954789982855 2.692892827231438 0.9951087580262488 +3.5490887289529045 4.241474504367359 1.272985646172264 4.193946520281267 3.0019011459526626 +4.629760469897967 2.169680529317275 2.3741207533960447 3.143322386188895 2.5775306915609537 +3.9080125864068354 1.5078427706893884 3.986049002494742 2.267535633793447 2.9519660131319596 +3.4021537472425663 2.1836267655410744 4.965764550065975 1.2664310115918482 3.894852581807693 +2.4600157072591777 2.3828768651008683 1.8328748478532586 2.758994115304998 0.9293262605322583 +4.884942843198766 2.741137739217807 3.9118062245171465 4.119843166424568 2.153875505467528 +4.276805256278721 3.6248095829154443 1.7574760670157081 2.13920451218297 0.7555229737964613 +2.4346887199094995 1.8153081955719248 1.3648084382199581 4.77511313016344 3.4660943907834385 +1.9281370996204026 1.663389445772387 1.2504182794126946 4.273817431541365 3.034968492968319 +4.705279724692967 3.1545464855630216 3.872578385571155 1.867868810460223 2.534488914847312 +4.406962010641694 3.6010096771492592 2.09697118297665 3.9312196510242683 2.0035035828260788 +1.5451427244235556 1.6055129295649255 1.5426344908523566 4.239633842854516 2.697674937120646 +4.874664587368223 3.9079390287799067 4.3157845147231875 3.5505194729274505 1.2329594031526434 +2.6978722952992187 3.4899677956733233 3.4336613284895745 2.079180355364138 1.5690869919388575 +2.8308919117191533 1.1295854863160528 1.3050861936407028 2.9392015477684468 2.358977859945684 +3.2345235121098805 1.7565068051642942 4.002860821906788 4.391940912052766 1.528370603799444 +3.304155974947943 4.365706097846109 3.7028309310598173 3.213096111425008 1.169071792914298 +2.97043546767849 3.6448979180223025 3.9670409588937416 2.8894217673981357 1.271283886000064 +4.321690283341354 3.6786256932327874 3.737417973170136 4.988393585089682 1.4065816892982013 +1.5269465556256567 3.365910331192141 4.465178118342349 4.01659919223998 1.892884259744608 +3.6915724369541865 3.280117203429601 2.7418693185982854 3.4613447536113453 0.8288186235733382 +3.0583442175086306 1.3914785265596215 1.247206606732687 4.740883184555147 3.8709452672555544 +4.4770311950609365 4.3909170894646525 3.6905474041496786 3.654043484201566 0.09353168101892616 +4.325272927128401 2.8793251376179874 3.206723677888199 2.5403260436390114 1.592121483091967 +4.016862264250474 1.608246442900683 2.539753804736951 4.388927057381753 3.036588858102704 +2.8396357704423774 1.1099180354384557 1.319392771111263 3.575603004086685 2.8429576251098263 +1.2136627658075616 1.0845771568730194 3.2294441389588857 4.628554096816835 1.405052229851714 +4.871814757775714 3.4780067019261613 4.977911239654 1.4467815635699752 3.7962583797566234 +4.232475994086636 3.2681239036666656 3.8991647936319596 1.9519542566958998 2.172925178061174 +1.0616817758605488 2.5166006058730197 4.96775605504744 3.781262705170719 1.8773798952866572 +2.6614249850051506 4.763606468323563 4.926345187802772 3.5636160283986884 2.5052340710394634 +1.8947675167421063 2.7860299269392947 4.1552516737722485 2.1835172748139153 2.1638126591426716 +2.004570977596259 4.22128160298934 4.454487747352822 2.797309751098349 2.7676786135677984 +4.590852681604215 1.2354412360804181 1.7942087514666238 3.68340224770992 3.850693188894704 +2.397509722956579 1.5135107403975865 3.160682921835811 1.0398954624706405 2.297649592293374 +4.466601805368326 3.3276912039378317 3.121711556283756 2.324459416539181 1.3902260004682954 +4.953937324102434 1.620563954856503 2.036479069270829 3.226357940942095 3.5393770282420682 +3.8996180972573575 2.934508084951357 1.5314785762780496 4.181646125376934 2.820429998094276 +1.5846955443986097 1.967753868356485 4.364019413660625 4.437368188773455 0.390017592377535 +3.2002797555644777 1.862216217241159 3.9936273292027007 2.7808652233555096 1.8058809368198208 +3.7602144562218816 3.4855802740343402 2.9234051910678183 1.8697712724678826 1.0888380818331418 +4.055245093289365 4.491566091023982 4.159104625960215 3.8717598488797753 0.5224395026981971 +2.12955423881321 1.8066205466615917 1.9556424464954372 1.4277420400767435 0.6188416668451616 +3.263963600021092 1.3190776872334822 3.654237215637375 4.597233942215084 2.161440269842303 +1.3960828110464947 4.0521280561990665 3.303253574899122 2.8758060147846582 2.690220764351021 +2.861772320550332 4.7027664006458245 4.851423398555541 1.6492608750568465 3.6936572702196093 +3.8762874395282196 4.459426068668706 4.36346889607842 1.5419749537617342 2.8811245594950585 +3.8066236972754224 3.1630028232289793 2.8248856620117944 3.9955307385579752 1.335910822154728 +4.1594066167502515 1.6023380185503404 4.670535774468593 3.40948470675805 2.8511137492695657 +4.829950451298942 3.03652629935604 3.429010099782708 3.3661065619753927 1.794526969382404 +4.45633685254381 2.675555823752213 2.3635501233645098 3.149670919921797 1.9465782746357576 +4.600516826358918 1.5611672214828802 3.1687295284788375 3.1466942823032182 3.0394294814543974 +2.6040835732283036 2.7644751902751845 3.7658959184463416 1.9436655182115383 1.8292755676384038 +1.8031409406602492 3.9516473668846093 4.18408766219418 1.4131261842151415 3.5063239120154246 +4.629023795414112 4.539532760453229 4.361116712816848 1.192981064274465 3.1693993331392365 +4.9731059351505955 4.937668411533542 2.7810107961576827 1.9866781868206465 0.7951227026920398 +2.6878537613164095 1.1781574099215124 4.668237668977888 2.808620238250388 2.395278702381126 +4.850496137428174 3.698361137226267 2.7725006345723053 3.9042411224018085 1.6150082323266377 +2.048221287318167 4.027991190699753 1.3067398043604799 3.0262903993324097 2.6222782306620043 +3.71675024376273 4.069403397460297 4.296372003136257 1.4131203350821875 2.904738271884305 +2.740395996054582 3.032967481618913 2.056401339591107 1.7944176511746046 0.3927257658489376 +3.1991201903773723 4.038331461260716 1.1603453907558716 3.2209004124976586 2.2248960773040465 +2.0605290707199644 4.734920517794259 3.993946327998624 3.8945949821116117 2.6762362194159355 +4.493317275985604 3.081748135736382 4.962463497465271 3.733874099703115 1.8713522773645552 +4.089114082566563 1.8217943545440938 1.8724028083796358 1.5362062985917166 2.2921096924609565 +4.075645318863599 1.8755573503598768 2.664311841314147 1.5438679483315232 2.4689636664959034 +4.931883142623779 3.120581920093325 3.2791944552295025 1.63784816604504 2.4443464893013673 +4.386508735807307 2.900770623407779 4.453947459409071 2.433243531652287 2.5081192360588056 +4.067209590748554 1.5139877745387995 3.2268076069282503 2.5383605563480542 2.6444093828721016 +1.1004176979005118 1.1725701446553534 3.006603092468069 3.5268185688318674 0.5251953135940229 +3.1522097258078094 4.01061863256717 2.841788579758403 4.660974801365814 2.0115427810737834 +1.8204310062853999 4.376076205271189 4.3848095856681475 1.6164898142161763 3.767614197355006 +2.248258699520615 2.1796525757106076 4.622810723613183 3.9426659496475174 0.6835961627869487 +1.807608002728137 4.053572033846053 3.3504466265581643 1.9040988148632243 2.6713809951914724 +2.827849042830745 4.250342018224344 2.067425522312969 3.0424269003549376 1.7245619595212784 +4.157898845863322 1.4899379038533285 1.9926013961914175 4.140633411962403 3.425209063527074 +1.9933467214864793 1.5850270563395599 2.8980501655879602 1.07015341442931 1.8729472715060724 +1.0845269707595575 1.8003428960844023 3.676180260458665 3.833977932023066 0.7330024175265798 +2.146500555259921 4.141238606687376 3.347790020706671 3.1494576334048476 2.0045736777842422 +3.2430499840224654 3.1506836989910165 3.432875149708336 3.2822326676153923 0.17670508770726925 +1.2215473611960475 4.061848572143004 2.7076264198433253 4.577244888970083 3.400409414909715 +1.534501921074778 3.938337095912186 4.373419477126818 1.615744097133263 3.658305215425333 +4.987080516203174 4.735114562988365 4.591710591524557 1.7572271285140881 2.8456604406814368 +4.763141707999553 2.3543390766617693 4.904976153261265 4.524725743960348 2.4386308639302805 +2.4947241250416767 3.734347596564605 2.115395156770015 4.3664740615518705 2.5698292913546674 +4.167562518104919 2.629699190369959 1.440270842957418 1.2007588201028012 1.5564027833064151 +2.728651830388126 1.5107621958943618 2.362182310111053 3.575798892323703 1.7193371892763993 +1.3456615322512162 2.177528537586217 4.554903062479049 1.0758265807747591 3.5771463319401575 +2.0297099383870543 3.487678662595358 1.1840482514037793 1.0477799795912834 1.464322998068511 +3.431241553611374 4.347196735620296 2.2210991648403184 1.6136130858642739 1.0990965524460012 +1.2347363962132603 1.154753429383208 3.5727859634255372 2.793377867043501 0.7835012799535217 +2.203338456674802 3.557171496312217 2.894369839228196 1.141998413631125 2.2144230653745893 +1.1173701879498914 1.8074377508104513 1.5629790389183382 1.6970495292556245 0.7029709365909754 +3.7855823279231395 1.1536380842297138 2.6109206752570833 4.685212938791939 3.3510921945645595 +4.585543624100726 4.939619101281204 3.3102864561685794 4.2058932367296125 0.9630581233380889 +1.8603039552274407 3.434467722538229 3.747530516786463 3.823082382078657 1.5759757773085292 +2.3241509639328606 1.3404346488013728 3.5856490609267637 3.9021226930320045 1.0333698991521652 +1.3026563725702327 4.873215356728922 3.2884710598483133 2.5994502482241475 3.636432474033796 +4.903878065657281 4.803480566447906 2.174624294082202 1.4519699820337615 0.7295950332682516 +3.4534017164297 3.9773822574271116 2.113366220032901 4.753940064212658 2.6920597753226434 +4.01666853204253 4.066411239099277 2.319433415009784 4.240645886551694 1.9218563155744781 +4.178549321893737 3.5749877834387065 2.138740380996716 3.4926918712239345 1.4823869834124657 +3.4885724198817365 2.6553299298298105 2.59159712265114 4.600722027079559 2.175057684021837 +3.847679000906468 4.37346324355625 4.954266472020131 4.9096340689049445 0.5276752042939304 +1.5104536527338523 1.363555720023848 1.9974660191200506 3.293131331696798 1.303966105713286 +2.854056923437497 3.759177301402072 3.0294361979302584 1.931352093832818 1.4230360495357148 +3.2007670692575134 3.5647667516627233 1.2037854369249459 4.343812132305657 3.1610541622209833 +4.768087333385501 2.9571799264891916 1.4958782391835288 2.9643336859514804 2.3314688579293485 +1.330108214466133 4.208029223819686 4.548672365269397 2.310663743534925 3.645697728424067 +4.063212144481347 1.2695784602823137 4.56871676889933 4.075184567749677 2.836893229408376 +1.2557726258247075 2.1645305414844045 4.606695545743749 3.3368928063751966 1.5614864540501263 +1.3928825993328222 3.5476562332189627 4.838171019848544 2.3481376766320916 3.2929189883172936 +1.43341954671869 4.029811834926219 3.9132964410788187 4.123241093198917 2.6048665361621426 +3.3644386977208782 2.4846398775934184 4.91554233004061 4.225443719464336 1.1181601210099446 +1.8006625943033105 1.1836269851010996 3.2136749369498574 1.0752756449971979 2.2256424858559787 +4.642865483702932 1.829524899114832 1.3428879548501094 2.7875017004120504 3.162561322529101 +3.7418487252825927 4.854359516812059 4.758570085806451 2.2895268951762406 2.708109033710963 +3.6221151823470183 2.9507429499338302 3.326013110805169 1.131082066984149 2.295313260011518 +4.897808547625424 4.481001995308498 3.3956735444788975 2.814786828053987 0.7149525014805086 +4.411399185569923 1.397730037216411 4.168819995248532 3.5370194908631087 3.079183919982608 +1.6660165199028172 3.1610995630877334 2.564865149989411 2.402604084067628 1.5038623472689057 +4.531715907859409 1.9189779766777302 2.851286973962208 1.9718692472735126 2.7567689484339875 +3.902353442504803 2.0570317230580324 3.518564457968604 4.202662305132999 1.9680452517045808 +3.15666909251687 3.7660193152658112 3.959292163407427 2.084332749353451 1.9714919473114296 +2.097024791589181 3.5468569476474285 3.318789101431613 2.5430574613075843 1.6443153159385282 +1.9034087523599097 2.3162190695575378 3.1310012439208603 2.1411541239011225 1.072478288356541 +1.2849375834705112 2.3625536271674994 3.1792873688294496 4.244920491879184 1.5155297062657267 +4.1550857177109535 1.6729873606544445 1.3737077290594573 3.0780583972058384 3.0109173774970373 +2.7525554865420045 1.9144391754523462 1.6367045901952202 1.4400133945024876 0.860886971313641 +1.0111280841606818 4.7010489223841 3.8024922595144957 1.3743730387073234 4.417157314700105 +1.3699095594153352 1.5333045139585626 1.9138214014595496 3.4491017940176176 1.5439507100109895 +3.717803914139678 2.3368984090199643 1.591711233020686 4.649436975470084 3.3550837143218426 +1.4175913590333846 4.206233277455814 1.5902668779402203 4.543729707997642 4.061953524809648 +3.2556606807292834 3.0344685211548557 1.064572697697518 1.0200599963032912 0.22562657654321375 +2.9046010636838537 1.0940515400604163 1.8131821723889425 2.0213104589784687 1.8224727600630273 +1.9598309273143748 3.301910953640158 2.5925077512335863 1.2005855695515177 1.933552729283891 +4.05582300652685 2.5859463525960007 1.9667840538087238 4.163131306300633 2.6428164202796434 +2.5165401116180237 3.3729589360575996 1.2284287286254392 2.8075465160082933 1.7964036821614973 +1.0342328214454621 3.199395618632891 3.2888968402092837 4.294574071124259 2.3873241571067187 +3.3838710921852884 1.8709040523144074 2.7881510998918437 4.434178323467201 2.2357269252945122 +4.17852692110827 1.9286738296023724 3.5392167796816176 2.438838563512776 2.5045301259872215 +1.125044481465165 2.9712518611564738 2.953349653436522 1.1947867862717683 2.54971077704852 +2.4622574101997836 3.2019376894494895 1.376877334777919 1.9880950804040687 0.9595384557584107 +2.956947870381224 4.37870398236976 1.257654356337063 3.049899087615001 2.2876913294346086 +1.0456889527099826 2.9463119276240533 1.2319385046636904 3.159229895960616 2.7068098935349063 +1.1391062919171295 1.4433683289590364 4.628559028734289 4.907445336729115 0.4127383674579766 +3.6276008968407325 3.111205122327707 1.9881064208785308 2.3454595360516297 0.6279855451034088 +1.426759290997405 3.322902353020168 2.1122555838624137 2.8318750487312756 2.0281051959588305 +4.163021927364277 4.9875916738300035 3.894230820859537 1.5738027287931544 2.4625803128501995 +2.040805334908712 2.1775276859553934 3.990979201161129 3.98568869251635 0.13682467159636244 +1.1928587317815604 2.2405900602907804 2.3486985915359564 2.983112847490856 1.2248356562814882 +2.917777455975607 3.9253911951708025 4.42495519264764 3.7201423884013125 1.2296530146527087 +3.2429385375883335 4.855941098566239 3.4914183178542535 4.26942825603051 1.7908312945730833 +1.2942119350575916 4.948872971090066 4.457616829745392 1.1177619233798168 4.950876496527475 +1.2125336457066709 1.7568242787103592 3.881358293596678 2.512502718704426 1.4730980544719872 +3.753451818831291 2.3924437918208685 3.3387087016254937 3.0522972673335156 1.3908178742308392 +3.6413723918874115 4.259298833673532 1.8775711018213364 1.4725590151551597 0.73882872020797 +1.742005346996026 1.2096110712653316 1.5656190952618827 4.283694772803002 2.769725447345174 +2.289932971631556 3.7684873046075382 1.7221212918606197 3.245342748595959 2.1228109953128143 +3.2246867744100243 1.8494590541702554 2.082855224289168 1.1024921614021177 1.6888940220123791 +3.8084931305943064 2.3825247038242843 4.427966829556803 4.195224137961027 1.4448374007604519 +4.516213273123071 3.9091152649149765 4.777706722356836 1.7395592006816245 3.098210508508333 +4.258113132946997 4.1092771779584 3.7197351954278384 3.955408208927443 0.27873627462056805 +3.128187887307119 1.7711264843226768 2.529201751952392 1.4555838480678012 1.730396213302504 +4.393527179267636 1.636062273239547 4.860200164272532 4.973461343354386 2.759789992492818 +2.585585474126917 2.996905450089365 1.9409716003196982 4.861869966825399 2.949717171201575 +2.549328876699704 2.0365828516768745 1.5806979453504697 2.1016630760836374 0.7309672726029112 +3.236870246671078 2.7064907141404926 4.956062470368908 3.438834119762903 1.6072598783053036 +1.6125985338740119 2.087820808775915 2.76831629606622 1.2756293020292135 1.5665090720229404 +3.7679126744787323 3.4898130323834016 3.9706848522205314 2.76989007081254 1.232577591062817 +3.5019362107066585 3.580111518359988 2.3252369154407257 4.028368724139755 1.7049250237265916 +3.2869439571446266 1.0907695640628945 1.4196407915283427 4.4137355133842755 3.7131906991526127 +3.2016208306381 1.338322290092183 2.488157589720072 2.5992369341949018 1.8666065659290667 +3.5788738939346953 4.0933120275225665 1.2626246487921406 1.0672237328354184 0.5502982021105451 +4.603418524831747 2.827113352050212 4.35899919550431 3.8492800800880906 1.8479917866351936 +1.1219867395145222 3.828362744946313 1.8629792436196455 4.252067985305299 3.6100160800786023 +1.6576020533363787 1.3935024861134533 2.078196785637957 2.8130077843202845 0.780830189728763 +1.1457382564324794 4.227744088360365 3.419776328428183 4.281717837581436 3.200266100379605 +3.5517038645756953 2.8188409553731226 3.027954381715453 1.6768489598134768 1.5370666559319328 +2.0711420954324105 2.5879785238725126 3.5123165699349275 3.9746926100724553 0.6934778267947589 +4.944845151276781 1.8774164241325741 3.021195723677441 3.1043906131545884 3.068556726825275 +4.760833284887047 1.689272093001259 3.7796131281635783 4.1017339198498455 3.0884057311071405 +3.928834616525365 3.146347126905312 2.912988084731858 3.2616228363802877 0.8566404505210193 +3.0254522343799883 3.061638712820612 2.291910667077443 4.274961885073879 1.9833813537540081 +4.767277276341335 3.3979892077486515 2.161285537604444 4.134085291420298 2.4014347135506675 +3.6521327765572686 3.762511536068888 2.4071436026118254 4.845481476755869 2.440834910238015 +3.292119675561907 1.1661668670893408 2.3410138983545825 4.439093836708814 2.9869072251372133 +1.6568973863194247 4.318772627021094 4.30177582056068 3.6934582554907687 2.7304999646645585 +2.1664737790245465 2.935396067876039 4.036840302840214 2.6065972277922365 1.6238339631918384 +3.9956571113032706 4.358737691325559 4.493793153906603 2.7706718730790945 1.7609583913397715 +2.4805864223835346 2.9604541635891874 3.3895104530215012 2.5334327276062845 0.9813980441196665 +1.3974315249106062 2.4219122126227974 4.579040968479515 1.9004920563266179 2.867783979711637 +3.690090241378708 3.3418818298208066 4.535665796332271 3.111845713912645 1.4657805855519805 +1.021488696725124 2.8512557825742824 2.334997681371954 1.0536112679775358 2.233830505855073 +4.367488494970022 3.987010240135543 2.919535433800726 3.0528864508833222 0.40317018262621246 +4.612235224406307 4.828273432924808 3.9852457201575695 2.330023304774338 1.6692614390582987 +4.846486699889686 3.4198649221797055 1.3163171723414022 4.755313354625683 3.7231632301582267 +4.921075757089113 1.7536089110158817 2.7790915497397424 3.665005659246903 3.2890256962202304 +4.587516216121524 1.4797784601296171 4.749434873506493 4.1705020139561295 3.161201862565055 +4.261506692084149 1.3721353785237045 2.8586464399541183 4.392371487438822 3.2712045348629557 +4.498525849830747 2.9910756289610965 1.4221470020116365 4.341530195514704 3.2856056365468036 +1.9363475422401608 3.046545620447885 4.281407540761415 4.018588834294706 1.140882748280891 +1.6853452614844655 2.0305727772115274 3.3861897869045046 4.618974930259262 1.2802114072649442 +4.127397447102282 2.899761986032902 2.1294697033673518 4.6999695817863945 2.8486064049333564 +3.169518383114634 3.0404514385266475 3.486787433830344 2.7560147673480317 0.7420828567370004 +2.0630366500850608 3.2957591084211866 1.8436287577686006 2.5035765506132184 1.3982616881566712 +4.629041354746451 1.0366929887460516 4.045746570292795 2.498039329543229 3.911568034148757 +2.6325183086183377 4.955006119766235 2.159967729836607 4.82576609263865 3.53559479353172 +4.980956977776404 2.926003263718002 3.9807089644843736 4.4401688438650915 2.105691845375995 +3.1054641709037996 3.968226278528225 2.6933242099129653 3.394038204743491 1.1114668492149888 +3.030981177123862 4.138972705976823 3.8575226286181143 3.142292516726321 1.3187870718833532 +4.202125254538877 4.589339177359307 2.6549398879431316 2.451503130414217 0.4374027164294527 +1.9968628770677048 3.468096413808881 4.749782249200609 3.48367948232723 1.9410163152112803 +4.6554635302365845 1.7636474143600598 2.189273150040576 1.9696621086888686 2.900143006392404 +1.9675553246014519 2.881682438377835 4.068759156018819 1.5764403904105446 2.654671582238431 +4.497657758560192 4.299992227530326 1.8938874503924077 2.915741858905479 1.0407968554693647 +4.146905963097602 3.9093392515218577 3.2542291645942183 2.577451359547975 0.7172629502854054 +2.2375390133012645 4.422409021131104 1.9983265164359607 1.9482283881936553 2.1854442966060117 +2.8508798675993985 3.466735670791464 2.087182190803651 4.2971496525405435 2.294174045764869 +2.6688156002702574 4.668827598810834 3.732307982863051 4.519923356815001 2.149508309263247 +1.4770128222737036 3.0993222615600167 2.520880500419098 3.3722006072333026 1.8321118527709 +1.7930917042240293 3.5990783972248064 3.9930175428343673 2.8079819978911886 2.160068790125597 +1.3835662780661684 2.0624296752160554 1.8186973808905096 2.7338057391974293 1.139420387492286 +4.71391921521171 1.068054686865044 1.4648662160493942 3.432150579449869 4.142769113230481 +1.1914873421034349 1.3666448245870466 1.5211770908513738 1.08335817040664 0.4715565191675213 +1.6464204426222753 3.680284372387752 2.814816072050437 1.1448737325266705 2.6315983550183297 +3.2520273737270258 4.687219295800081 1.7797781075431702 2.411226614708588 1.567961437786397 +1.5558641044527755 1.861249911061995 4.657633509384568 3.2204809384605557 1.4692406212026203 +1.210113319994346 2.2025703360664157 4.494865000620322 4.71960216757075 1.0175842584079124 +4.819711230623042 4.212405840554146 4.542589453435301 2.055761468712372 2.5599088386909092 +3.4995852642853356 3.86989193358512 2.099731571970403 2.7936295544986143 0.7865249134545083 +2.149095280942926 1.0169772424906847 1.5054083648753909 4.192245019424382 2.9156101353262174 +3.489914720246114 2.4896427963985106 1.9968428380462888 4.4113100671601355 2.6134643525601193 +4.906228321619982 1.0873801773037663 2.59185054984967 3.459830384322104 3.916246946043903 +3.9288526819036886 1.12847993228102 3.3578724048887287 4.43405997514655 3.000044536870521 +1.1575687566343729 4.315773686343716 2.8660623865777786 2.487449254615663 3.1808184924221248 +3.2311316419081355 3.031618312424075 2.069204338071198 4.7474941662672245 2.6857107015574324 +1.7091668496803902 2.5659503634483523 4.04117564209086 3.3959276334831436 1.072577727755336 +4.503107429142361 4.486600198278468 3.7761626113067246 3.75888659406899 0.023894548382264343 +4.453288420748997 3.8702809739703032 1.2534851990832063 3.1969139796275132 2.028993126663406 +1.8304739381150288 2.9281039535137725 2.7956341933899758 2.3787050823197653 1.174147151920083 +2.8209131369199243 3.85980901926912 3.842358844841082 4.0839358211550625 1.0666133741178756 +3.45543959389175 1.794837874404073 4.668655952296852 3.411279686792727 2.0829289819431027 +4.740270249283725 2.3676530098400717 4.8389207141688395 4.788202578464293 2.3731592643972648 +2.207981012396614 4.306359148429266 4.328705093133701 1.3734902008986452 3.6244290393202236 +4.902836702190861 2.2905074371161516 1.7920988041902537 2.7923104034669852 2.797264276483988 +2.5655756871041313 4.246231175228875 4.354216587944485 4.275851735086438 1.6824814768452232 +2.284012110096854 4.8154570053133305 4.1858694010881 4.529297609527107 2.5546342579455836 +2.6627875328276582 2.586989025690542 2.565701388101202 2.618796044525076 0.09254434734215093 +1.8834143845835656 3.9635405501591383 4.881994401474717 4.27887527579011 2.1657972076070973 +3.0049025067064172 2.6039016019948 1.0237228956096986 4.7478956381815145 3.7456994463109843 +4.640505581103555 3.43604591412296 4.061519088293789 2.1113824318063483 2.2921073422418545 +4.555829253121571 1.1777437207823955 2.400785896845558 4.679230167564407 4.074649697651418 +3.445548308320987 1.0898134882465058 3.062441323776052 1.8320051611959611 2.657717007639483 +2.1391643888180227 2.870688140472674 1.1583131119660943 1.4912493110802245 0.8037247737350514 +3.9404186887650976 1.018462524107786 4.872416410435859 1.7305095576801026 4.290618428568596 +1.944820535327422 3.2184184521713477 1.7360966583630613 4.777992699620828 3.2977542630718957 +1.396961314617292 1.4199592335199425 3.7785898712571524 4.101876113790215 0.324103222577313 +4.492735544962553 2.1790304299807164 4.119256250824048 3.278638982705423 2.461680066652109 +3.773491507151017 4.729684892249143 1.5867521203553014 4.156414586643688 2.741800682098669 +3.1572382603413867 2.150372313455905 1.129128804877518 1.1935793890850248 1.008926614180777 +2.5695632686643735 4.767373948861996 1.1334851289153778 3.394037208151106 3.152850692457179 +3.0853171193007145 4.232179455039379 4.1115928249603915 3.549968290198442 1.2769946496295594 +3.8722961835517173 4.865996014189177 1.8165984275114497 2.8083699017249835 1.403940885675961 +1.3677471855508525 1.6962194720409531 2.1985644696190456 4.5350046505108 2.359416614732872 +1.1326668141872291 3.2198528854524646 4.409768323126919 2.3774751694539074 2.913170293434595 +4.727069352162016 4.119461877584739 3.9778614784431805 1.1143825354751393 2.9272339332522685 +1.5512632008964893 1.3442661978924444 4.545066527982897 3.2190169396449986 1.342108516470917 +4.489859402907307 1.2899994085845545 4.751828206035023 1.5002345397951498 4.562013300462688 +3.092533932762199 3.618948125179897 1.1331478230933039 4.287445527824241 3.1979221241377402 +3.122424711632071 4.390915569751593 1.7596081569061521 3.6409439798223593 2.2690292055680117 +4.836957752261772 1.390162824771382 4.834662369202691 4.932696138465888 3.448188784287982 +1.3445459670393562 1.7790258981589777 2.1823848073385026 2.6395515498864794 0.6306934604367157 +1.9847061943578357 4.313348612361989 2.8386281305644907 1.1061475796752132 2.902423878439854 +2.066132885337992 1.2370503391381495 3.7948651203766075 1.351606706619172 2.580094871280844 +4.0349710841244395 1.8470227352112705 3.1736184415884896 4.206394183595066 2.41945111766886 +3.724750334371802 3.1208719980148043 2.5965406695531184 1.3280477417012668 1.4048997662222946 +1.3214541448161157 2.750615284376301 4.260219655622646 2.0107922246313503 2.6650375851242827 +1.4380038663572585 2.2806198153057116 4.320745848586421 1.7704205205920407 2.6859190077200665 +3.908801769463973 4.10319718048334 3.9275574673441174 1.426179231948732 2.5089206149926544 +2.2559390783505395 2.253057905134052 2.0695752014719555 1.8709205587116484 0.19867553510517755 +4.096920675154962 2.105630193315052 4.472224087773511 1.6451602668363208 3.457965822664852 +4.349893550682269 2.192048006608372 3.8067436391166525 3.250247975359256 2.2284489708899238 +2.7382450664151037 4.2314867453091205 2.916741892935376 1.7377622072509342 1.9025676888990855 +2.371151079735489 4.193399006780487 1.373723739276401 1.8343903729217312 1.879574753760518 +3.24225078199278 4.144885314652964 3.9793656495849157 4.510651615745104 1.047384302626993 +1.3882814236832246 1.5509069421003279 3.2001922466615134 4.908264736372768 1.7157968088759332 +2.3479841162039947 3.311387848242673 3.300282591152213 4.066919165900286 1.2312101318002182 +3.041853295943167 4.86282306139008 1.845263349830483 3.1686654572650803 2.2510717502190194 +2.149065504995164 3.219964187498423 2.688155517666303 3.0931364423021264 1.144916388871302 +4.821363046868584 3.4635321876884957 2.1510076055588265 2.7091263795821585 1.468060355727599 +3.0242243278355327 4.906533869777599 1.866557946402704 4.512020688262005 3.2467772221468914 +1.8630818028610765 4.686161369504391 1.932281115616941 2.2161545428521645 2.8373160490663136 +3.5625369261244626 3.7056800433417227 1.3821036847554047 4.45011398722522 3.0713477771277544 +2.654703956684407 1.213030650202925 1.43725988202893 3.4105309719567454 2.4438127417963424 +4.463092040782346 3.805536992975717 2.3045331958646686 3.0697958510603063 1.0089626218711254 +1.082884742872869 4.070550425432181 3.171805184684784 2.4516193636427333 3.0732415862689044 +3.2690666582181627 1.6101192398315267 2.089316776762807 2.435518347757603 1.6946864207666705 +1.0529311528976422 1.8550859864056295 3.5401718925961303 2.2282008954243766 1.5377647005768056 +1.9930105983425053 4.739140531019766 2.702280302809652 3.565261836287822 2.8785355190218427 +1.619082703469382 1.9013991770107252 2.766412883975825 4.226504734334967 1.4871350990135375 +3.4184587345933215 2.8975929865564867 4.9136325586894465 2.9736651606985633 2.008674844952634 +3.408124330817899 3.6643864357512226 4.670790744908137 2.8242885152997306 1.8641997613919155 +1.4904285012875151 1.6764121130889391 2.480270999146129 2.220392616130973 0.3195726487315129 +4.054583270029934 1.8660493750036666 1.5545932647114604 2.5479578905259936 2.4034254491243305 +4.837426179383012 4.705654306161836 1.9734254612377007 2.4990535495330177 0.5418936369595119 +2.2407936400612805 3.1762615478753116 4.651614962392713 1.7409339494241092 3.057313226642946 +2.842576761999478 1.181031509260464 3.9284496840108254 2.982681958155031 1.9118601460802502 +3.083363774281923 2.9412114433423397 3.857784205152198 1.7450753721738477 2.1174857492168155 +4.651376785177847 1.98539561708348 4.278204730154728 4.272203887100877 2.6659879217189197 +1.0875749095228433 1.4989935933656184 3.0507636840426766 1.9749682739082113 1.1517817058285411 +2.629871117233737 3.5656529934088175 2.2667265647636796 4.323883750228212 2.259996328644388 +4.582839071357446 1.1460713082876324 3.5658327276820936 4.200269636308248 3.494836598226447 +1.71046730562077 1.1317465998955032 2.5508935741082013 4.106470775259687 1.6597403664361008 +1.4517941933604717 3.6802544771467782 2.328539016823659 2.3715566804890673 2.228875446452802 +3.537155772025372 4.417620482799094 3.001061517037696 3.661922046831391 1.1008881626927676 +3.8833543573363034 2.685062545150003 1.8498309160469781 4.224986856680043 2.660313705087666 +3.319664121209223 1.3479333665383741 4.629494736168776 2.8868401509507398 2.631457233605806 +2.592111015723215 1.6535119750923943 3.812029369630763 1.1332289804091316 2.8384748870418184 +4.193174664500372 4.2470988755986445 4.3976405808975105 4.194086024147783 0.21057606254308478 +2.284128215728442 4.38837925235423 2.1589438100212632 1.8202704543786687 2.1313310552241576 +3.742000536915414 2.512337735119175 2.300862071996478 3.427993502211023 1.6680814929429741 +4.049963538518924 4.433698887738899 4.68267669326279 3.2493346423985816 1.4838201552130876 +3.512344509744264 4.3053605916097535 3.046554478471926 3.5104119777185008 0.9187155630033591 +1.2131425717652666 3.4824875966208086 3.43820664407772 3.8368846687555576 2.304098741199609 +1.879808152480634 1.9298590599946182 2.8756253641222598 4.714980638670022 1.840036119033985 +1.3534471734249403 4.405111802851171 3.2140712912556157 3.6426960009196825 3.081619079676419 +2.073060049419313 3.5681825154125053 4.2439100803669 3.9051935056480764 1.5330101455329046 +2.229796744194328 2.2791652183480515 1.741300822790115 3.5937827054789677 1.8531395986084542 +2.3813291437299444 1.1968012112915938 4.205221362211635 2.950251525361634 1.7257044109956932 +2.8026454088627872 1.8985520999727883 4.44993795295222 1.2021129438181712 3.371313097464584 +4.031006446210789 2.455659375877711 1.9142201650410353 1.1324153405106143 1.7586748351147956 +4.47449747348616 4.27443478146064 3.7300121705034917 2.6142895790652987 1.1335175260162744 +1.1802929871452479 3.905393246297255 4.182439470385439 4.509949666316784 2.744710248982454 +3.610508352085762 3.702133237669826 4.304338290911714 3.630243944705864 0.6802928099318595 +4.07884766919147 2.7125439119733246 1.9063227558693456 1.988430407162658 1.3687686522525728 +3.1292866009714406 2.7580625140887642 4.188442358427252 1.1947988205498543 3.016572385101504 +4.879812591024171 3.282409576200556 4.019672978805818 3.5698200858238445 1.6595372900576308 +4.939168367494258 3.507367678433635 3.827377801301308 2.2446709004473484 2.1342479582291323 +1.5451322526482896 2.490921523955262 1.1512657626968283 4.624542298667159 3.5997454411446146 +3.340213139645678 3.8878253372409928 4.5636119904819195 4.876182941066524 0.6305392280457526 +4.612164184722262 2.461467511959603 4.508809045563865 1.8279171548736373 3.4369575947050897 +4.581269980014062 2.465781266400327 2.75830051449659 4.088201853309183 2.4987857187847506 +2.063031888269168 3.1808315658248185 4.483972098949434 1.3772596263611883 3.3016872211763015 +3.677981154517655 3.7018305255281865 1.0873297735095506 3.9123838463752363 2.8251547403837187 +3.321661626567937 3.476309864197047 3.691876660449211 2.66255153086587 1.04087765841791 +4.278566175636964 2.9221763386902455 2.2949872111367036 4.912628210137521 2.948192291798882 +1.2325792956558592 3.502420151041283 3.3046662720769997 3.220444299301709 2.2714028373397337 +3.9654317565088033 1.5959451013763322 1.0724336454889563 4.146985561646036 3.881666715986322 +3.3908662136471683 3.0148460070403336 1.563828537112201 1.145608307085567 0.5624049756004807 +1.3248824757492899 4.430490951410094 4.363497330598257 3.3341919097352553 3.271738628545102 +1.3706101193177176 3.949766189583297 3.7313544724115415 2.2924986888398475 2.9533628291670326 +1.10870378284707 4.956261527251479 1.2735428540850884 2.2053536722170946 3.958784156444272 +1.2741725151752576 2.2992086644579732 1.9780129214429532 4.25445046555148 2.496571048370785 +2.491783782952081 4.445369168439498 1.8073219125086535 1.4269819437894729 1.9902648944789558 +2.285420101828656 1.601337826508523 4.770266500595241 4.396159439396246 0.7796952306165009 +1.0036438956290148 1.6007031092902912 2.0681289964344294 1.4710671123383574 0.8443711257842568 +1.5684232381455567 4.628334877927635 2.7529724547470775 2.8308732381029404 3.0609030979959666 +4.685087498498827 2.3852611996925064 2.289353952301458 1.090737003954919 2.593430853819849 +3.176408467063008 1.5301381640285552 1.3156910967384117 2.2269037429940317 1.8816254668103638 +4.248906630309573 3.0328056865484223 1.6466466485239635 3.581253331000546 2.2850830447272177 +1.2286222661857318 2.1175572702131524 2.181329929369151 3.4463086284595783 1.5460842637248917 +1.1732112974272684 1.4221792940825568 4.2764193133476995 2.5926325667398245 1.7020936729248717 +1.907478739737726 4.133731541549691 2.8225638484029765 4.465940452458426 2.7671082740529775 +4.014954258463547 2.2607370132130247 3.3446996786612866 4.253065805792465 1.9754511293508699 +4.5427098036298315 4.378707888564407 4.777734065745712 4.739331344250189 0.16843811078075313 +4.295938621281142 4.5596159531971345 4.944410123939118 2.6412444661751584 2.318210038471413 +2.1884675935653073 1.2294208206130093 1.9976808256284917 2.586086842079514 1.1251632561126306 +2.381959013419156 3.533809363084342 2.0284311560002606 3.758156585556204 2.0781504492399736 +4.278101076592098 2.024196089313473 2.2488768243317603 2.714606352562737 2.301519429669389 +1.8533862969289445 2.8418326196536903 3.508499377428376 4.873075477451364 1.68496114663277 +2.326970009900213 3.840516100283152 3.2306467655611524 2.642351273698149 1.6238575533155035 +4.904891153319336 2.8549440279978606 1.1204805384670817 4.206137406250977 3.704532564618065 +3.577093980846462 3.2395914813172078 4.2162215538869745 4.476761924696687 0.4263674729739086 +3.9058190609345376 1.8969424418031307 3.0002107725108256 3.3636123510145013 2.0414813195696393 +4.7849542957405955 2.605847881505752 1.328667967878904 1.2149332830709323 2.1820724880461246 +3.1573729908773913 2.71758547178681 1.9487719631095857 2.5905951887159486 0.7780424891197167 +4.019711091801339 3.6563639714778216 4.372529400549247 2.6877137133536526 1.723550123920902 +2.238683431361286 3.3569961030327735 2.703375733789029 4.64070137884203 2.2369295667501574 +4.4729442025572475 4.834561514309344 1.5382271479105731 4.584892523810885 3.0680510088439865 +4.917131453267263 4.246314358094203 2.6970993546246786 1.3464940082146812 1.508022008104554 +2.0491747323892437 1.411078396582424 1.6036441250279316 1.0453631780424888 0.8478470083317228 +4.373072013904562 1.1090812099967309 3.3992873601827607 2.0176595329488802 3.5443661522170506 +3.154098678418795 4.034826848875986 4.637166787255267 4.916009849303622 0.9238157627413454 +2.7787019623043077 3.6613900478164587 2.1685024818758403 3.669900990545849 1.7416474207317718 +1.7978699604067319 3.6081103316443075 2.550563431197743 2.220785450254193 1.8400336188161237 +1.7939336452452528 3.8579781453571926 3.89130732384637 4.173764861717092 2.083281536216922 +4.45373429293188 2.448930816096198 3.29238459613878 4.856289935627261 2.542643681606415 +3.2584952683257025 3.4710569737223573 4.025797115843153 1.4388060153595594 2.5957090423586475 +1.2582242557214856 3.7887204709699924 2.2822728807793755 1.1804250043600288 2.7599782314643067 +1.8365660190577477 4.468045868672162 2.2255926066890948 1.0937696065100342 2.8645609615892327 +4.4136449653475225 4.871258231583159 1.6569005928579683 2.813502440923869 1.2438399158992708 +2.4681018620268076 2.014706429341844 4.356162635159007 3.515134773155463 0.9554555369277196 +1.180047603231165 1.282909652096913 3.1035708196281826 4.976706899137826 1.8759582547214677 +4.676939092553892 3.2469849739358887 1.8274189948301167 2.7395202005638932 1.6960829551804353 +2.8014984179328413 3.701907867784646 4.23254274661776 4.188213348786542 0.9015000126980078 +2.1075978801863298 3.635286906727988 1.94793926758959 4.00338519043995 2.5609942802704513 +3.5839352918242735 4.48060446117365 4.777259753096466 3.9606555614233976 1.212789349029635 +2.3543850582039196 1.4112477518895994 1.7754938265862727 3.7886267141651326 2.2231086346855453 +3.4146888524628354 2.8860776043273026 3.4244420249948564 3.1285397324030777 0.6057953601807101 +2.573868816426533 2.0022545216417313 2.9504457930760504 1.4678401315341199 1.5889815762426296 +4.263061019945466 1.9978502933782818 1.3721336343970725 3.3903582691571077 3.0338771089329426 +1.5760236324613501 1.66752425822127 1.009460044111576 3.199609961414033 2.192060451897807 +2.4124340440439513 1.7243504885538696 2.9866981869063616 4.861710318888842 1.9972805197110792 +4.150896129943685 1.3777895437478835 2.110001647098672 2.0007352539547254 2.7752584173502144 +2.9561470466216035 3.1626373815902813 2.1640374079474487 4.11083473997787 1.9577175767807373 +1.6949534492030072 4.10465065386974 3.286505708646085 3.551759346876204 2.4242524849472633 +1.891590127154744 4.457787715123738 3.7438806122917883 4.096391402850369 2.590296106231509 +3.8951639892097063 2.237268490343452 1.2816156275439816 2.7182427528348203 2.1937445116244523 +2.065537506355681 1.0024947138642508 1.3469062628133734 2.477710930095412 1.5520242183080841 +1.7695106988123652 1.2367678977570078 3.658460351782019 2.548957184531258 1.2307770595098766 +2.035618230219198 4.6221346123398055 4.337383303984373 3.7185828379738775 2.659507663405594 +4.056924955687457 4.026199957639824 1.6638579276390217 3.430064696596659 1.7664739953412285 +3.4537560063120685 3.0484107336387916 3.327162644081896 3.4136300003540643 0.4144651900694089 +4.280636551646298 4.184250874212124 2.225000721271664 4.592280849063322 2.3692415246765646 +2.2870593478886208 4.323345915977632 2.1780169446197153 4.937709211810622 3.429630358649896 +1.242214022976373 3.381089370912571 4.6284986484516 3.224220734074976 2.5586684456598037 +3.5140657374355664 2.0868557738621774 3.8210682683605586 3.363666083061495 1.498714462210702 +2.448914204192537 4.006141432024535 4.273692642512367 1.9548946524969883 2.7931667973110184 +3.916374491347897 1.5276276457106883 2.9591582493670656 1.8217650698804424 2.6457087400703054 +4.863520989978752 2.5031781429513016 2.7335256713214777 4.448604914185196 2.9176557653046795 +4.495728668204432 1.7107656189092717 3.851163651749993 4.355253560051652 2.8302165679663056 +2.4967998317205877 2.574566715301042 3.073681348031227 1.9776643778355232 1.0987724455676826 +3.2137447510795636 3.836707914063413 4.181316179351965 4.408407401041528 0.663063741583945 +2.8027026641398387 4.176176427940316 4.408182058988601 3.7090680970042773 1.5411653096568412 +1.7531607998502095 2.2282612745121466 4.673580248479459 3.079036882329973 1.6638176004464345 +4.988586515930173 1.1826034981000721 3.0966490212123654 2.369647545236569 3.8747952046633523 +3.2769886004007125 1.5290513398932783 1.9201118928606165 1.5577103299125086 1.785110517446319 +2.275129278085858 4.3616977681069855 2.851558784457852 2.468202955069604 2.121492341601779 +3.5491122493355873 1.2668616610858887 3.2587265961321172 2.3775821026732626 2.4464430027938433 +4.136103450745834 4.685616827227641 4.571150337568584 3.0794498985695276 1.5896965592975325 +1.6282130439810545 3.884674082508017 4.349569783843757 3.572427014273472 2.3865387704132424 +4.076717583433977 4.045977578752501 2.332017081165375 4.954187252427024 2.6223503493892966 +3.9125894533586827 2.7561714110084226 1.7985395479608721 2.9139356284698548 1.6066770382027649 +3.7671708505782657 4.718231204185257 1.6176227292787564 2.89635288446325 1.5936331466122355 +1.375004077058596 4.709359079999722 1.6087101501507712 4.772803414515392 4.596673739916297 +2.3433042209730366 3.9151388747053675 1.2015160970930987 3.784240414632529 3.0234300188830816 +3.9074165424335647 4.500467912538766 3.221716640601862 1.2354847315457604 2.0728789458471284 +4.60919518750114 2.4387561664954176 2.597668258860429 3.180450808364997 2.2473186342642473 +1.5850429001393795 2.0890823713165463 4.071064729669345 1.086020329094279 3.027300094458611 +1.4532853579789462 1.3230454028331962 1.279481451727019 3.5797412503866806 2.303943920160852 +2.650653008598242 3.4162187856588826 4.0026392468800465 3.7852431591143847 0.7958341648749933 +4.19340031194748 1.2390057803286862 3.8363292145743597 4.960458894791933 3.161030620921774 +1.6892805353377405 1.2034892292811334 3.0367583484795233 1.6798215468435234 1.4412739769642415 +2.131578346961147 3.2605805359933684 4.106693684066322 4.668484767849064 1.2610531966008949 +4.591291670150432 3.2544163653707927 1.0629078068814626 1.564427995096605 1.4278508604602251 +1.6507275349816766 4.108891717831977 2.698310053974591 4.3811208361164695 2.9789970255676734 +4.999151021087105 2.3375895349589713 2.53596898493886 2.997725963000157 2.7013198720678933 +3.4574226833608184 1.83995729282687 1.7462306843816484 2.1461531294623564 1.6661729356985937 +1.695332040160154 4.128082742585528 1.0554699074722067 1.0571361063820421 2.4327512730178475 +1.6265845398659553 1.957477192656436 1.278175098308274 4.800338535325545 3.5376722890527943 +1.385568983556786 2.527505050963913 1.3393728993114111 1.6845258126873532 1.1929578851146236 +1.7596552446471159 1.4385997870736178 3.268515136911904 4.968505876503663 1.730041942131885 +3.6785543441553874 3.3257430123099523 1.9493456401002214 3.2291461637073477 1.327541041212521 +4.003898741626136 3.1419347371022317 3.283766156279329 3.6624779295620735 0.9414906012902339 +3.876412129129432 1.7710694020173499 2.6313671697565515 4.879352684191138 3.079919945666035 +3.055235127302328 2.799617989842441 2.06200662183934 3.11217375662337 1.080828909653922 +1.4096077356631866 2.96095678215146 4.9741122432573395 2.8928306947385916 2.595846056345536 +3.40990703739372 2.0549958032504625 3.383774250540406 3.5751537385331233 1.368360537589403 +3.663973646245301 1.8506406410513918 3.788567209298524 3.3187952529629148 1.8731957395544545 +4.364228821634397 1.8653845318542732 3.3099285557013745 3.370177510810071 2.4995705073388947 +3.247183252047764 3.2044453480034925 3.1409025129495327 1.9588327260747809 1.1828421321056408 +3.689984502402674 4.628637307385945 1.0088670430684443 4.420724251344993 3.538621016437279 +1.393609659503118 1.5718515854659687 3.9886849710823746 1.0002290781916159 2.993766658897191 +1.4879953856756898 3.3745762619346884 1.9345874621359127 3.8186252897225605 2.6662306611476034 +2.3396085116098315 4.0444276190400945 3.0507484164306966 3.0447384935287016 1.7048297006541757 +4.177735716958955 4.086639845295031 3.9529585426893004 4.418487777270583 0.47435843629479674 +1.4310133128136364 3.9225332866803173 1.3465853652867081 3.7948280800083887 3.4930737424744427 +2.310153076626136 4.271508905733314 4.9377239038431835 3.55487755953176 2.3998293065024803 +3.427925454078361 2.5700938166715277 4.919703113659662 3.223505090337545 1.9007795380995522 +2.8244836050279765 3.8461347186713577 2.2134783921555536 4.02132180785552 2.0765521456728413 +1.0948727418567428 1.6068785763538953 2.0798264426167052 2.5434620661048246 0.6907300239068392 +1.4617682058292125 1.6525739653543576 3.3159802680500934 1.644708593896906 1.6821283680785974 +3.003431839859061 4.818606976611759 2.8807899643284243 4.457093110682013 2.4040782820635025 +4.892050201364663 2.446338517043803 2.9605092212889406 1.106010788938577 3.0693110103757055 +3.8063809035889 3.9781641909186636 2.0002347074399514 3.4221014265252325 1.432206152985024 +1.8213936733895602 2.2160475076739203 3.721506619010495 3.603431311074529 0.4119386207428486 +2.3483960454005337 3.733764777670802 3.98374091585645 2.4433393090816375 2.071734450769826 +2.6811701717213356 3.210844641414482 1.4240625042167272 1.9603169662728845 0.7537399365297386 +4.435079563424411 4.132184494425956 2.87007757862959 4.793790208810867 1.947412567059827 +4.360676193729884 2.7161716735032106 1.9462163377071233 2.3625099808687393 1.6963771733853097 +1.4494518542004218 4.246107166439848 1.264758702869595 4.288076258156542 4.118462088642221 +3.5505329960861496 3.708478267061675 2.053895778270255 2.9251810588114693 0.8854856005104286 +3.434640795574367 3.535555146092755 4.120227456071669 4.81403586189318 0.7011089859138404 +3.3897875717580646 4.845754598831545 1.3424968506365826 2.601455983305799 1.9247903994088327 +2.0621324028161045 3.0980079101457223 2.935521511001311 4.410302687777138 1.8022257311606906 +2.9719526002688155 1.8156557693412472 2.237282343517202 4.572185736970433 2.605531849349102 +1.0971019166958613 2.890346738419472 2.3259898157662215 2.2924575621924657 1.7935583075741581 +3.994888628348964 4.245948480675242 2.1901534989066755 3.033590048736866 0.8800092403148662 +3.1336164898447074 2.0419783739816784 1.6031845567350596 2.380485718142499 1.3401010676550997 +3.9995661881153532 4.861331381276992 1.675961445793666 2.5132366689045824 1.2015277971733953 +1.6447288951328138 3.7206543339358467 3.632617048909218 4.708166808270393 2.338006354211093 +3.6707871870384485 3.955533890001467 2.8451385177749113 3.9182480108637696 1.110245319290172 +1.3806263300387447 2.6190711933015405 4.553517341203187 4.009038471163631 1.3528499248850763 +2.15414421410971 1.3723019036349955 4.955097714720277 1.3419197730423083 3.6968002700547244 +3.9598727202645874 1.9531070773485983 4.83438392199899 4.493163346111135 2.03556867410492 +2.3662050822368874 2.7515305581870617 2.988313418407352 1.5346504180230522 1.5038656326622115 +1.3203381811101331 1.7285250851282519 1.051818033392062 3.166859866267575 2.1540702178492945 +2.4415740937832053 3.150624730882648 2.2822278465650507 2.3939559297036306 0.7177993943525911 +2.1269599107860837 2.178312058072367 2.2366251417782386 2.635677013353937 0.4023424402657266 +4.761654177030339 2.0438664776015925 3.148272329439919 4.017540772331285 2.853418582152464 +1.4593454362611578 3.0429905820635974 3.63132194277705 1.1721926910400504 2.924935661612441 +4.944842157552346 2.616187595751875 1.0176474082562343 1.5662508531771304 2.3924041899255273 +4.0844792615206496 4.952162542474714 2.0984357745876214 2.0118846509859547 0.8719893193405076 +3.6628942269090854 2.0723114541410332 1.4199766359314094 4.421901742516652 3.3972794854961994 +3.9168333430118274 1.810737594104097 4.75618607509758 3.308775708525702 2.555510922071544 +4.66953439872356 4.442779480583579 2.3628415837613614 2.6278409651511923 0.34877279859195204 +4.7463143445947535 1.6568551334860069 1.8810060344809911 3.342169894201402 3.417566099149763 +4.90834701547691 4.049548555516445 3.933548129982948 3.1633138393561597 1.1536011690735317 +3.427080815683021 1.230134965837232 2.037616369683177 3.4853054650107493 2.6310406275626 +1.6002989756847046 4.387135382503472 1.62060181571541 3.714387141113243 3.4857415491143127 +2.4121641569237906 1.7154599109365685 4.862483393895036 1.766893142267314 3.1730231345436497 +1.2520139229040406 2.9364566735175357 1.2175495461280925 2.4308405507273165 2.0759148445771447 +3.834475323484681 2.8794972204033087 1.7627907171373045 3.224563265660181 1.7460704914120624 +4.916605095547823 1.3045633834133645 2.526029237193075 2.229866053131615 3.6241630705298915 +2.272330343513922 1.5201194461272554 1.0376955998078654 4.173703920432945 3.2249603751328455 +1.2931757072707621 4.339076576152205 3.2167616280284705 4.302985976720066 3.233789640459505 +3.3472798997434925 4.015598538978153 2.8513584898504463 3.6730027325285777 1.0591265576287798 +1.5077287655550289 3.090243741075377 4.394089818978753 1.4903131927080118 3.3070035293332327 +3.1056078778009915 3.027286093842014 3.0751885984014637 4.53314783169165 1.4600614465763506 +1.4660902914167964 1.5064145323108673 1.2763585193412244 2.1089106926030143 0.8335281432600897 +2.1979840882252235 2.1148022761975493 3.819771207934794 1.782562472758356 2.038906237307491 +2.7960061955406745 1.6496198576282568 2.8840743482105755 2.1876819295801955 1.3413292051089152 +4.324403657769757 4.907172137220682 3.16456585544279 1.4009891036526572 1.85736966167109 +4.8318688514897525 2.987780243540129 3.0869411540979086 1.143962572313681 2.678773705119906 +2.7740365979941357 4.817206562887856 3.529263953103178 2.467573191172833 2.302548757227964 +1.596783866730021 3.1453262771545396 2.366187313981854 2.2134178208408817 1.556059804415604 +2.945461436169679 3.858427035721052 4.279534943355059 4.540259984499613 0.9494649719942426 +1.2889044291185177 2.0134954275005352 1.0873482635358163 3.1277338219769786 2.1652263950985597 +4.865773413043081 2.7363601421814434 2.0213031823273035 2.94129171488248 2.3196507879753554 +1.7721726970226759 1.8535779030367983 2.723284558890198 3.228592262348515 0.5118229017350824 +3.913154232975177 1.5231620064122433 3.1450812775848664 2.3499464742828535 2.5187898281622028 +1.8035526295727924 4.857341657321038 1.5131390101064013 2.516511456238734 3.2144025403880514 +1.4952166273343717 1.8748822815049517 1.339720329835837 1.486819936262708 0.4071661861791998 +3.1591637777009662 2.200303267834522 2.156287359977347 2.386363401302208 0.9860773104442961 +2.927017472730557 4.359688371910959 2.101380160998861 1.495833107036178 1.555388420916546 +2.717258413157561 2.5174195329045737 2.190853714872816 3.013168664379773 0.8462490497739991 +2.6795139889893513 4.470058126739746 1.8759785906128745 4.752330390656361 3.388133407474639 +4.501272389003605 1.0423117919600848 1.9231282868411266 2.2460277951498444 3.473999496886215 +4.612331308236696 4.647895312753336 1.1308116167779914 2.909185945106903 1.7787298980105346 +1.8326518195728765 1.6821077626278984 4.750292155207861 3.115369477455888 1.6418391137103336 +4.602615371647335 4.125014281052648 1.520663944029247 2.9762389218849705 1.5319273213494577 +4.313678949952722 1.8762102986794176 4.081670102205606 2.525118769424739 2.892076326365194 +4.096315834679649 1.6288861726732455 3.4431500875497187 1.290203241566949 3.2746586476419473 +4.031777222661313 1.56124778824974 4.03847085403193 4.462201624603471 2.506603967966045 +3.0211426727200745 3.6371511070486755 3.5487678907285924 4.031317808974594 0.7825093065026106 +2.8592844382180247 4.254783090232941 4.022465347490184 4.574798838325198 1.5008293616775497 +3.771867982594597 1.7711004860358903 3.196282040393072 4.035257147072819 2.1695505997588738 +1.7550967630024892 2.2789976292604743 3.918579168442724 4.21900551962433 0.603927239119218 +3.9355424873582443 3.291415755022764 3.1696152062071348 4.009836673749426 1.0587121241527864 +3.163608449415491 1.1895495840218748 2.878295474437236 4.912239359522644 2.8344022529830615 +1.4106064352042873 1.968500566794158 1.5857553748399722 2.763887519626328 1.3035494668946457 +4.95686784437363 3.6381123555572317 4.883605800975948 3.423104313692169 1.9677857184260452 +2.2122080679665603 3.9841889810576934 2.224918975080413 2.3992644925618056 1.7805371986636898 +1.7460718813046112 2.625609962785859 4.27835540941613 3.4919994553448075 1.1798063075264233 +3.9557739914509367 1.5322978199961663 3.616987903357457 4.0446830064950845 2.460926625248501 +2.1800568717720226 4.449337619293061 4.769367802893469 4.374211396382967 2.3034286827848476 +3.643410937475767 2.1634031997400727 2.937147812706732 4.22945994862463 1.9648138742380172 +2.765754406769889 2.987281670909342 2.5609488543027874 1.5315565807895037 1.0529590597577656 +1.4267970571709179 1.8145830891138655 1.6831410575286654 4.253085705388029 2.5990370331395907 +2.2064494869269797 2.69883819260043 4.0699483505662934 2.9516294393400324 1.221918092459992 +3.5764057778004537 1.6923715553268184 1.487547635070233 3.5294356592192075 2.7782893396143673 +1.16148383626123 2.6409601697145977 4.6750367574931 2.0666427529960405 2.9987613282728627 +1.6120130683850014 1.2508911817290769 3.489335755781604 4.939883746803607 1.4948238997553873 +1.680485197959535 2.1098565059588927 2.0118927827635633 3.139746466130827 1.206819643201992 +2.635433658360111 1.568465350005288 4.4744572270115786 1.7449819133302298 2.930606909674078 +4.331187746020365 1.402565109314025 2.352404456365981 3.3063284653880416 3.0800651881441596 +4.858166816917951 2.039834750653777 4.530309287143583 3.822819457802323 2.9057765733714307 +3.3574655934066717 1.4282359306245835 2.7880581868123886 2.269921697722523 1.9975966842895645 +1.0340671561606518 3.0920422550686046 1.9540094684773037 4.772147618423491 3.489579364322771 +1.546897201009227 2.4023663041563683 2.697611673663647 3.004465103052396 0.9088379468128575 +2.1560801215911245 2.738825476743562 3.934568589216387 2.0786053924207173 1.9452998578141472 +4.141062723442893 2.367374642626957 4.4036305268214315 1.1824370100369674 3.6772349776160325 +3.701032505832824 4.088378634507327 3.4631053555897005 3.3839342709868268 0.3953543777882319 +1.6183076027304377 4.739706027663464 3.5423219154366676 4.984104571386492 3.438293959825441 +4.1899364141096225 3.009324646443684 1.2710947429823696 1.0350581051494077 1.2039756809631916 +1.6518435161046838 1.2647483080594402 3.403554920019077 1.26270976377879 2.175559855092268 +4.891193180507917 1.5364871554594726 3.2745413862770425 2.8737134940077373 3.378567079949337 +4.527610220136204 4.41064007535579 2.8887316658575815 2.794673587639854 0.1500964251671673 +3.45176085801494 1.5440864106960253 3.089149440270204 4.282330470946313 2.250089502424032 +1.7149901467198903 3.6211435757568067 3.4433950193251714 3.3417450133793953 1.9088618647607718 +4.4872516367359285 3.354225099372691 1.43288398417261 1.2293235874600126 1.1511672204676078 +4.391314158340989 1.8257791832806909 3.4831049290196776 3.9390889134811595 2.6057419485327036 +1.937402117486981 1.5792474933811174 1.9943636926569202 3.566912910814572 1.6128192019865881 +1.548476170592883 2.22463132661359 1.2361705905464788 1.0169546563180436 0.7108033629865804 +4.285514706250777 3.6787339706229343 1.2035462485069655 1.7561950668885986 0.8207335606563688 +3.346455284797789 3.0926852591348193 3.4720390147356204 1.8501089409405345 1.6416626907516407 +2.520562155236976 3.880976177729383 2.347264205136247 1.6811807395682075 1.5147255512788782 +2.2878166477823396 1.3962257528188493 1.4356775938979331 1.536808224541656 0.8973080454538424 +1.0043604933624413 4.617591006470036 3.6036325361776402 3.724861088408364 3.6152636283855886 +2.102293808088802 2.6448574608366178 2.1366294359351095 1.1049337821771137 1.1656634330998767 +1.99347236889249 4.2700043878945095 4.254519175305088 2.928559455486561 2.634533585309293 +4.364329807221594 3.2110883927716967 4.590249171419956 2.9812552004188757 1.9796028285290521 +3.332154098155064 1.59339398264171 4.114165492793665 2.048358249154929 2.700156719001748 +2.3600037828013556 4.280983864161678 2.033029500264499 1.7579725301098938 1.9405722892522563 +1.4527640105038082 3.0014219133116224 3.6150187917896592 4.463932318909777 1.7660678006397759 +2.5720421673193887 3.0168329893631802 1.041565714342497 2.7315234747342076 1.7475114040493578 +1.9274901088472247 4.486588620837505 2.4759314307159666 4.608152703539349 3.330968740524509 +3.436721772555165 3.342072823809575 1.6427145381833808 3.467417449798052 1.827156024852203 +2.919953122118025 2.2078205909201514 4.725329066913662 2.201620115811325 2.622258494478442 +2.8570600600156393 3.085216173118095 3.3484850194333315 1.029954445579734 2.3297294336123913 +2.1086758396401817 2.7721637118859217 2.6227501528059554 1.055212895347558 1.7021719096899037 +3.556505014530855 1.23173391109842 1.131698945187745 2.304408285159045 2.6038064212629908 +1.022000096956782 4.362655562839107 4.3770199261361356 3.476087745719139 3.4600083432616717 +4.772098803693562 2.181216884007244 2.4805796758786083 3.416148128621131 2.754624738784668 +4.592328060642144 2.997839721148297 3.309777823592295 2.8698336995130527 1.6540688912780197 +3.0991440905059453 1.2907866816729912 2.1688284643494846 2.355320777546133 1.817948266855378 +1.66138026615018 3.388950207014576 1.181688889196597 2.4917704908522063 2.168135536255688 +1.4116955185176336 4.916005169755688 2.3126369082428586 2.917708368084728 3.5561633262935697 +2.2705269090074274 1.5118164271283332 3.778390545910508 2.488337923454341 1.496621984343154 +1.348500911139776 4.044017814496179 1.294350283973067 3.874462738293715 3.7313257232812855 +2.6170063594690753 2.0215193748619806 4.552268350526324 1.5247708288993147 3.0855057919722233 +1.422425137917653 3.657291140340556 1.7564443778718344 3.421027236139936 2.786657880118356 +2.660622078848021 3.6502015974656405 2.4793483449585927 3.2524461496879993 1.2557658377838232 +2.4456020830811673 3.041026613366109 3.4166506737300115 4.1542801800395095 0.9479597353492589 +2.8876858184315335 3.7175884153960252 1.6529706914165452 2.8235639774784316 1.434930995491272 +3.549092254928401 1.968887213768462 3.609291157044835 4.945144278786396 2.0691910339487647 +3.9991283899704846 3.8662903684854335 4.988177427725409 3.1318922794346022 1.861032103892108 +3.8154829805583903 3.5019241885517087 2.3156220802655842 2.0258017103626407 0.42698356274611843 +1.1718784889479363 3.5443602366232736 3.7356064932460415 4.843052446898248 2.618225770118625 +4.097479131837385 2.1955331370290474 4.2164589657941285 3.250550717759565 2.1331613419497075 +3.5041596435726667 4.332417085232146 4.609890828277574 1.2112795938861889 3.498080718364806 +4.8420885264603015 4.634869041609363 1.4933941458260005 3.385799377382164 1.90371675291337 +3.8603990395887613 1.1167710763899055 2.3431936446599138 1.299936541661793 2.9352818916422208 +2.230452295127978 3.544624666027664 4.292628503930896 2.8841408638325587 1.926366126349268 +1.7187526030808793 2.2424431394122464 1.7409306605566721 2.1143018130101585 0.6431623397925904 +3.8181564160502477 3.7524508098650258 3.3444871057927816 3.562651090697491 0.22784369860426196 +3.073532816475073 4.563052072287499 1.8888338964695244 4.292356121665753 2.827646848608969 +2.4919401980274447 1.3099801608929096 2.5630539330174913 4.900319251242919 2.6191293777059736 +4.131392042683729 4.998244394863663 3.7321953479323633 1.362588678278204 2.523186233584307 +1.0440615487061944 1.1472845854702767 4.947931565796969 4.940037240667758 0.10352446903048947 +3.1194397265011986 2.2479733055347837 3.1300254854013505 2.531758393125964 1.0570606588893838 +3.7325865675028833 1.103293853302091 1.242800829482558 2.008168734891016 2.7384244023851925 +1.5516495436977142 4.449213798377458 1.936010334061793 3.126683944036277 3.1326637635545005 +4.271612032983755 1.6651746148654052 3.6316139998234642 1.1307976854805326 3.6121459345728564 +3.5985522189640835 1.064976922786971 2.988163496668994 4.479103523407323 2.9397118812443908 +3.6116103653005927 3.041797887353395 1.8175011917979242 4.041484514933778 2.295819697104004 +3.626532947999609 1.1408380695013802 2.5604490428583837 4.7826612428842425 3.3342024669980814 +1.1854622794590228 3.2736492936328276 2.4319753685184016 2.3759944680590595 2.0889372578850587 +3.716181173964676 4.531701135408889 2.4493061250228445 1.4805614343104705 1.2663092368364783 +1.0334331235514536 2.962556117292967 1.915924061104012 4.189905552219063 2.982030742114516 +3.0192779666281484 4.17919294106599 2.517918145008622 1.7327418171370081 1.4006800540362851 +2.7120512361593234 1.2424843661113467 2.6758375735385322 3.439500080053394 1.6561422672582111 +4.614221314813188 3.654624676286294 1.017014566882855 3.0492586511885564 2.2474077793910996 +1.4757060794944121 2.326293763219264 4.298897353770181 3.0543296390976655 1.5074641634578174 +1.7197960501788971 3.1884860306567946 4.414097042405457 3.7129763701379273 1.6274582808284332 +2.0602910168306607 1.2325301402984925 1.9245708226284441 2.9804029835581085 1.3416294647818034 +4.683418913134508 3.543340240455495 3.8546699418459447 2.203101858751739 2.0068523894380004 +3.1270702289556076 1.8941688586378715 2.061629352516415 2.880306482202755 1.479958793886781 +2.5109211914859277 2.2812663147116146 2.233252756034034 1.7446332025324875 0.5398985372181291 +4.429588084892458 4.898098959561328 3.7266176182889286 3.9653362978242725 0.525822258602741 +3.9576716631931195 3.341008928294904 3.168600034971344 4.039730625821937 1.0673056895415904 +2.715480445952303 3.4301974098250922 4.377885665945863 3.725397894649736 0.9677606264663409 +1.8899276704909926 4.433125187860451 2.2924420673343735 2.414352747395845 2.5461177950494016 +1.6750288519053211 2.4056968609750773 4.871008933120589 2.6622308873340854 2.3264944003857835 +4.094862062787869 4.1037321557136615 4.229340621438681 3.0464729752606 1.182900903255799 +2.8814485385467803 1.357027461066465 3.881771217633479 2.3265021745732914 2.177779010314774 +3.845800231676509 3.9588158690992254 3.967947905328334 4.778707681068649 0.8185987712307836 +2.466783183066867 1.743321810066734 2.0484113543142755 2.4022604347672294 0.8053604968960413 +1.9832176089657798 3.604161149091806 1.3685138565420139 4.551456217524674 3.5719154572321785 +4.485891508578765 3.5518536949588535 1.1690515846596257 3.010489512782486 2.064780927943998 +1.9021913898926948 3.459343861237331 4.397812791566738 3.454819153873904 1.8204287461320403 +4.255060367961543 2.5665666185251745 4.884066643991978 4.607509870385078 1.7109923409862315 +2.4898915068300433 4.39772227451112 3.049700884163752 4.38258281259664 2.3273144336882243 +1.562510155692253 2.1885459130365974 2.736223260449676 4.8431833449367385 2.1979994465639514 +2.6822669048327565 2.392634256984525 2.7191568090492817 2.1407605505368434 0.6468611153568941 +1.659071598138436 1.5132576177235117 3.207477677872537 2.337513766024299 0.8820991581464823 +1.364817882119508 2.1581423009860594 1.394253909333429 3.1987105732670824 1.9711487730723223 +1.4625101653144936 2.2968860272321323 4.344910621188095 2.532396501046254 1.9953422049022957 +4.886545650778541 1.8004829034484353 2.5629002804261845 1.0111627000492245 3.4542253543758235 +2.9423695261414387 4.181680292678708 4.651690541112071 4.210754023649887 1.31541483513258 +4.5967312146992 3.1980253719405085 2.0881193340205235 2.9517638498635335 1.6438551895811893 +1.4938318340071413 4.847921302685533 2.0332496786540157 4.736857142139824 4.308063309715337 +1.3041054703937927 2.3674620366008408 4.734235716241707 2.377269122427441 2.585733689159049 +3.875071363870872 4.679442268851089 1.031681395823406 2.184854950174939 1.4059949499320548 +1.371509846161973 3.569928695593033 4.611893535172374 2.9245622694939883 2.7713051505869233 +4.427340257807109 2.501298132892346 2.382237895262265 2.988123560953332 2.019092793022669 +4.984738397012957 1.1943502079206527 3.983399102487342 4.166800066326459 3.794822596320881 +4.699088008465203 2.587254864864669 1.4957771965359536 1.2897764555425302 2.121856623737701 +2.3593760109024617 1.2562218502173748 1.533095191922253 3.585482308774092 2.330073385036665 +4.039413955828393 3.9329569031170464 2.2080348744386606 3.42320371794422 1.2198231110692341 +1.1331540443649675 1.3048964256715534 1.5571691585392853 3.650617840052124 2.1004815704177693 +4.877240431655808 1.866234769554814 3.577624085663644 4.693872475858795 3.2112560729125152 +4.028977615425111 1.413384648270553 3.802536935590561 4.056164687872357 2.627861032580662 +2.859501252703702 3.310241419633594 1.2123038231734111 3.2947920726960547 2.130709742664137 +4.897552920668899 1.7530906345485162 2.614199647364158 1.1897426749773552 3.4520603608591203 +1.257951554750973 4.703465710908196 3.2477500455110353 2.8992153984532014 3.4630974864244797 +4.876440721786677 4.36473302716743 1.1833610585084262 4.895594057156991 3.747334866406772 +4.497146722911401 4.585631738712003 3.636615740547164 1.711085136983046 1.9275626327783046 +1.7723037606533882 4.94509375228273 1.0639092978603544 1.1831631438818722 3.175030363756266 +3.4427763138450533 4.647675346392975 4.581579785453918 3.3996243312032637 1.6878389657985118 +2.121750789509162 4.752519899151485 3.175013920146762 1.7967211891472052 2.9699557169382977 +4.496171598383967 3.833076777454426 2.507523245429603 2.7955794250750983 0.7229599602851723 +3.305979112283394 3.7990864081041895 2.7265688512586217 4.16932805701383 1.524699619919641 +4.153130827737014 1.1208255782425995 3.525657877065562 2.5275662677060033 3.1923442776093776 +4.505394847462265 2.403351507695627 4.0671495310246595 3.976759310362051 2.1039858826163056 +1.2623368739178327 4.778974093899797 1.395628855363951 3.417527778972776 4.056453203754852 +1.3312383135159234 4.007870051326769 1.9478154137843533 4.83389863318668 3.936220752088481 +4.439564542175926 2.0187849320844706 4.199142098178781 1.562704122212622 3.579242814025206 +1.7976068530491207 4.315393622203356 3.4151087154426256 1.0173117899814317 3.4768779545274917 +3.8333792764046204 3.190226417402908 3.5912811326480405 2.6363870688901003 1.1512898301653802 +3.5097839673362308 4.793194500877853 3.944553320043814 4.167417400334351 1.3026169797332359 +4.491116359736184 4.62643879500782 3.5059202406316183 1.717305988755343 1.793726039143875 +2.3746955612829255 1.795745086634863 3.901479768032152 1.3634390654454265 2.60323534473588 +2.7981612889629406 2.8198878274037265 4.886371955671367 3.5499297783229578 1.336618769832437 +1.3433276770216773 4.79662630164815 4.604299293083824 1.8076970169074889 4.443675919997063 +1.8755929560571682 1.6925382668213147 4.436201243377223 4.368590213908092 0.1951416679161848 +4.629713387546536 2.984907858137326 1.7036437291023878 3.3101647293866003 2.2991944141218896 +4.817440310296721 2.163984204424041 2.001454723214588 1.890469699528821 2.655776154210957 +4.984374131728595 2.271364358803999 3.1902377978471477 4.820067370361258 3.1649275605337155 +1.902334507718606 4.247267912700972 4.854258823581243 3.3855552855233384 2.7669121338607767 +1.8049197666570853 1.8937171422026853 3.549699409223317 3.624869908367378 0.11634250231688166 +3.4813241235769907 2.430826998577406 2.4899485707640467 1.000169655908281 1.8229057640978636 +2.6380627477585814 1.0367426953534138 3.1967444045204396 1.9099199780886504 2.0542986673549666 +2.843671292154933 4.180659721589343 4.575004738724312 3.3251961312146516 1.8301802140354173 +3.4402699721121466 1.7470491889564843 3.6834699947918446 2.701872923791191 1.9571738375288323 +4.409963905288654 3.852199434651599 3.23367227275174 4.765029064477561 1.629771403685141 +4.726808754411438 4.849378689976567 1.229449082341949 3.7326766702372933 2.5062265950836893 +3.458610463659864 4.080669093246396 1.66263064478574 3.9515088617498293 2.371902281025882 +1.3300166312686876 1.916454365376076 2.5705651347695575 4.241889607794283 1.771224071120417 +3.4530136951005637 2.391722432448449 1.2579478780674371 4.938999229665656 3.830989193052467 +1.9006435578395964 1.1259923614574578 3.3552734171743257 3.903435424319566 0.9489815920942709 +4.80615013180198 1.9690032528233319 2.6832369106957685 3.115968643080691 2.869958042395592 +4.281271517408786 2.83003289566489 2.294081597448704 3.8312016013428343 2.1139610790202865 +2.953124760365754 3.0548784154660007 2.9512107764023883 1.6703134846289074 1.2849325579184683 +1.2327442583739248 4.771541271182472 4.173179536639265 3.420546329669824 3.6179470756349934 +2.5021538271415813 4.15829046869713 2.6616169174702216 3.5181000695148734 1.8644977782875567 +3.8232218073591575 2.11538396564503 1.4496430091376395 4.388953613554959 3.3994495029093867 +2.458179572602451 4.608751962060291 1.221094638712049 2.617241977381108 2.5640181344076134 +3.6593815007752735 4.833827602979428 2.95256166196603 3.579971548871066 1.3315279993934488 +4.528963440087468 4.546669629238805 2.7217890399234177 2.08308424174024 0.6389501767403124 +4.420289024446341 3.7494783755175645 2.571161649015312 1.7484844534794548 1.0615011515636665 +3.3832102350499755 3.1636052692181162 2.6648757571032093 4.1302551429897285 1.4817432590024373 +1.1636634479410222 1.7024368399921745 2.3165287990604377 4.3434211373459295 2.0972766434075245 +1.2077798079091822 1.7832827124421193 2.6866645282223054 3.724470978733314 1.1866953365746853 +2.310393147346219 4.302894228044422 3.5072094825410485 2.8695437004551105 2.0920511958904773 +3.328256467786697 3.20419137586073 1.2273324319085641 4.893204263693951 3.6679706152192857 +2.9188285589596377 1.7634807602963027 2.215184811565086 3.8205572809304633 1.9778901135484002 +4.084120329849201 4.58412847231781 3.3451292490135063 1.2584097952574615 2.145788018705211 +3.603380966971687 3.384622585641584 2.606190909214206 1.5022161909559046 1.125440095231933 +2.656692832048467 3.84196397877255 2.587820064500817 1.7638075452597004 1.4435596015138112 +3.464814236713523 4.448022439234853 1.1987653757302774 2.969434170805941 2.0253311707866266 +4.8302133566766114 3.4993046916595634 4.2401941346965835 4.9539070284792 1.5101999766153549 +1.5596765097448388 3.916838316540291 2.1761869044433904 2.93678027634731 2.476835493285611 +2.8717827143816974 4.466716148205949 1.4485112627869703 3.281030633004843 2.4293908496893057 +4.4307776877847616 4.846441544389625 3.91438453737217 1.627448283809735 2.3244039815715802 +2.431457930716663 2.6851631433438543 1.4944357239769999 3.324065153785467 1.8471356705276052 +2.19310573568784 4.174119627438289 2.8458473109100995 4.769996158923587 2.761659795959649 +2.725786118978794 2.0561435180032293 3.726606962250522 4.531225547802537 1.046820080652375 +4.227354959125567 1.8866764118337946 4.986240345616087 3.751155402139527 2.646546972822213 +4.551080515476639 1.8886514360274718 1.3852065473399917 4.168400142407625 3.851583465371358 +3.593850323154353 4.763441986812024 3.506077206118403 1.6230595166337558 2.2166867795450083 +1.2702371872127887 4.31826757958523 2.7695533631691687 3.7463017113768786 3.2007072044397606 +2.843691501022232 2.80117918091317 2.1973144791140893 4.0517948311962115 1.8549675667298573 +3.9215398498859604 3.198035246479684 4.672353404202532 4.228415238009708 0.8488462796953996 +4.242533124330132 1.9922427648803267 2.5575224962031373 3.9680382891360266 2.655816541846562 +3.482247965336464 1.9227983839474114 1.0381893035828247 3.5548146781218843 2.960622615712505 +1.5017675653604714 4.801195152515724 4.10012323151531 1.0448445242063311 4.496771106273562 +3.7785606878487585 4.8626941116625275 3.7282679705235258 1.8718177441277346 2.149826207793353 +3.429635096345522 2.9255682831497585 3.7778801766356653 2.9179182970576885 0.9968037853522727 +4.365231142742159 3.815933695422278 4.26861303142829 4.806688098218041 0.7689294266270036 +1.0561769016799518 2.3425997350268273 4.44922694399186 3.322789550089991 1.709896168934429 +1.8344575715683367 4.5934637591335346 1.305182125854738 1.2316896304542873 2.7599848350857354 +4.771093125268575 1.2322684291402317 2.8770040334003655 2.7589876814725725 3.540792014401609 +1.1718619343412975 4.742541801335251 2.8778370137011398 1.4255277217040603 3.854731766566516 +4.470820634016188 2.1084785484528856 1.161695478994094 3.984524620817085 3.6808999569600767 +4.084260881592781 3.756070628456051 1.6712887394229154 3.387897898030275 1.747700158971389 +3.976357207411289 2.2414676475806954 1.0358675290751265 4.128238251328933 3.545786015633448 +1.965558016459045 4.732658441648164 4.578886831458945 1.3875303466279205 4.2239319332057 +3.888088974905951 3.3442563328347354 2.442573738691227 1.6566479544832071 0.9557370354156786 +1.901374913086956 2.9094533833223624 2.2617902419246168 1.3304106829713107 1.3724758959589098 +1.897716280472959 2.7324549261808535 4.789556013048228 3.552696992489575 1.4921825770915438 +4.959583812362856 1.6242833643229329 3.0410980530770133 3.9672785704483586 3.461508259336321 +4.4163892061461425 1.5648669788580363 4.93240514433211 3.991120502774778 3.002864597205448 +2.5386266054075226 2.596085502177416 4.488718433831934 2.8988024419290794 1.5909539233197334 +2.5778657223117043 3.8095605700498174 1.8024242526366105 2.3849362962721505 1.362494946385148 +1.347846984023529 1.3005934571513253 4.743842937640611 4.108255135263038 0.6373419414513809 +2.5413818121470664 1.2992072092987934 2.213280844835561 2.743833402160801 1.3507345261174073 +3.4040647168387177 4.764249797209736 2.770666659304797 2.320949616696017 1.432602132930389 +1.9105371757533187 2.234235527954853 4.2374091014955475 3.1214988473197125 1.1619106327909927 +2.6272187980185095 4.856378191534725 2.3403340572514604 1.5660721377070277 2.35979514402378 +2.287745703018308 1.0282470268002464 1.07278141384089 3.3975524904641907 2.644030535772859 +4.120812414218159 3.2456486110347282 1.7173951568496948 4.50972161164934 2.9262601922208558 +2.530151921671087 3.2093320815005706 2.5054701379440667 4.00725826976124 1.6482273151397895 +1.7721342779986133 4.432460468249349 1.8195223768171829 2.880248532760208 2.863996406498385 +3.858218744499135 1.2312475372082305 4.7129347225203295 2.104935542188742 3.7017073693831697 +4.297626660126545 3.5090492141660206 1.6008975856078305 3.21294401504779 1.794588554222874 +4.958061459018893 4.4005512108354665 1.3994160775323556 1.5240571845909923 0.571273211693274 +4.86075247904895 3.4156919177672753 4.017479147299527 3.940257983604608 1.4471223631379986 +1.0057288774412827 3.4454205446671957 2.172147080210898 4.777809050747521 3.5695335459738087 +2.7799911424710233 1.8273634752974468 2.9709609205826704 3.408441333709477 1.0482788675415393 +4.635793311479873 1.7782340703595554 4.038983528784649 1.5550758483841003 3.7862173975176017 +2.316571182008898 4.967790069134361 2.71912006685528 3.566779076212278 2.783430865603611 +1.9914514631290472 4.681349320539745 2.561089872245824 2.5948920954888566 2.690110234469739 +3.6873604730929146 1.0782416260293397 1.430657738931584 4.093973039098621 3.728370897081753 +2.708362458651263 1.846748564277343 2.909357280952712 3.63682016158839 1.12764389134201 +2.2652551664778233 2.4371837980223163 1.7093402389235481 3.5120105973764 1.8108505944967672 +2.6185183915998005 1.0164065604288761 3.8001490183854902 3.3966581865416607 1.6521401789678374 +3.1416276410171524 2.86530220866055 2.556646720703722 2.541270456074386 0.2767529116034999 +2.562639356382699 4.082854648808798 2.204415787730677 4.002805898055339 2.3548378976565925 +3.8877626802164267 4.933302930071119 2.4298283162239818 2.6810123689899164 1.0752896551302502 +3.7123033193591652 1.9453315776082647 3.833901857510979 2.298577784375486 2.3408137785171146 +2.170165170969072 3.2506110611153263 1.9159472773042507 1.3055822429896269 1.2409306171772148 +1.7311161940828876 3.4820553731415957 1.9645628750222563 1.4228017226230278 1.8328374600634185 +2.303462214949304 2.3657556530499013 3.500296058449504 2.691391307917779 0.8112998014687203 +1.065518638451207 3.1165773075681535 4.004279723002241 4.37744486839072 2.084728732927281 +3.3743730331137245 3.7771818505828776 4.032865476114955 4.964937272128258 1.0153879930127014 +4.365650676186842 4.043850442750983 4.81391620120009 1.4791967304798437 3.3502103424471863 +1.098168532680877 4.879027493072664 4.735581189841218 4.784108313091856 3.7811703690875724 +4.67409027279082 4.749022257292767 3.9481482341644862 3.13035912473002 0.8212148499698586 +3.06186763252429 2.1997536022083497 2.1702526819541585 2.1719273910126007 0.8621156569266242 +3.518829012824801 4.952536441915952 1.9506712752710405 1.67761267859643 1.4594786704330645 +3.765134225458659 4.568787887030884 1.0405080594128329 3.3570340980919133 2.4519690242000687 +2.6359448350130883 3.2984690791699154 1.574350917350741 3.122142344149592 1.6836260496225397 +2.8098218885359136 1.2886583401270646 3.0416380139063848 2.3435214249197878 1.6737100444300625 +2.7138117129195796 4.232355676154696 3.201160110412384 4.705543658068439 2.137555993824731 +4.792975528474398 1.0248946725104107 4.392415859359695 1.3611692978527237 4.835999281816544 +2.3365850934715127 3.716140656167659 3.9357658103168536 1.981286162995724 2.392313575256891 +3.3871958737737007 2.278956974671418 2.0581180654172786 4.396800484119099 2.58797776517273 +4.174839749642086 3.705153741280299 1.0341490261734845 3.6776153618427747 2.684868565547977 +2.7749968070664286 2.4547220753794434 3.534720493311696 2.7816070600876257 0.8183860623567074 +3.0018772070216997 2.986630336141621 3.6422996928034452 1.8681585247071548 1.7742066822683606 +1.901687548632299 3.8257780657601197 2.547444069935985 3.6542603542899808 2.219722191043823 +4.246177443478638 1.0104109458706576 1.4879337841073554 1.2543178289717378 3.2441888418426177 +1.484948887738458 1.6129666774966336 2.5770940756345335 2.7416978600207704 0.2085256826600484 +1.1524735018702952 3.29764604351844 3.7846550217271187 2.0789678946260426 2.740644779791698 +1.2803665679899403 2.004157382076607 3.983353058546353 4.722272814382647 1.0343478854434847 +1.5134189248197631 2.8745981273327446 4.113875707873359 3.1248969856581414 1.682524215085275 +4.996205146090036 3.632532411316252 3.2618114663146383 1.4656004025694798 2.2552111903513437 +3.116073986780269 3.271823188602491 2.8099453939631114 2.284990670171267 0.5475721650153802 +2.7192658601712583 2.8574632315819786 3.583906774938177 1.6273553668931346 1.9614259929418367 +1.1208416453024554 4.729325829837709 1.3940070408552683 1.170845976429434 3.6153781227855992 +2.651484740515627 1.6622332898839831 1.4740662122029247 4.104347187594591 2.8101595047406382 +3.6250777184834577 1.8199370045949963 2.0003342833958 2.1543595794300843 1.8116999720583409 +2.1474758280616135 1.2660067117333695 2.760645826088269 4.750703434305699 2.1765378671331614 +3.5967802450077633 2.5047701149499084 3.5068542034183525 1.552933405200866 2.238368291826846 +2.0728224536889366 1.8506909506434481 1.434540784050017 2.9250234539365936 1.5069442570571299 +3.9103343430708537 3.1729403144116244 3.5559368757802794 1.34416817694453 2.3314524937583165 +1.5774170276422126 1.7125292164286754 4.636325440966898 3.698722664268556 0.9472878498276593 +3.2424329689704376 1.3260040648340068 3.620049777644781 4.736537901839636 2.2179372119331306 +1.079856421639529 1.9902174775344514 4.859719653167874 3.329770220716318 1.7803096691162903 +1.8309488249651475 4.735565754161887 1.5858354895797353 2.640014718537599 3.0899989242947146 +3.023550400243557 1.551551426634441 2.4232209162339573 1.696449102961469 1.6416388905218076 +3.475847689118403 3.333791515079219 1.4853729261708537 1.0708957242204344 0.4381453041164536 +2.4162143992974996 2.5925528755619247 1.8945337135754645 3.47485762870941 1.5901317350947817 +3.5676731802573545 3.0973142931875506 4.28153612604095 3.69984110135852 0.7480685693075452 +4.95631525067485 2.4595898403624754 3.504102886861469 2.889213712778614 2.571327764191837 +2.1029439573091273 2.402729795637235 1.686138383122552 4.946426228832577 3.2740415980476794 +4.151077728087411 4.034313178377749 4.022464374411735 2.288980871843071 1.7374115844400895 +1.5164447769445495 3.628446311615749 3.0756411745592747 1.8698855660014315 2.4319533445405974 +4.67873158780546 1.3957897699283746 2.9447970644767736 2.180443476884285 3.370748193863139 +3.107961171971388 4.796450124956651 1.4441678260193882 4.248536566293922 3.2734506221695545 +2.214055508339719 4.311966806319663 2.7837099939040453 3.341258538304087 2.170735403856144 +2.242560203244236 4.57007983476057 2.0176828584844175 2.41091171531786 2.3605034566677645 +1.003408991265252 1.5770204516538868 3.7206573116602177 1.1387561860181155 2.644852269991868 +4.2548153005951574 3.0720997119539484 3.702126905303139 2.793933055674127 1.4911848417010165 +2.309077584693776 3.9560106577449567 1.5193179357964461 4.394833007304704 3.313755493934479 +3.942902443519135 1.8316390599374945 4.5856472140401365 2.0660300470166124 3.287233448237628 +3.3305854982240017 3.231875106143589 2.4577487438304044 2.7395242996133007 0.2985652446977526 +4.957626373370859 3.959745049897781 3.2114584295341957 4.1627846451186095 1.378690938606091 +2.658362275933706 1.5916136081713081 3.217118451918163 1.0337391698903304 2.430040701173794 +4.118509183452877 1.3423001927174374 1.8906007992521348 3.654506489856075 3.2891791750504034 +2.562849488986387 4.414190352196064 3.4274372803504747 3.1798522871514137 1.8678226148773687 +1.98319940195509 3.550020962546714 4.330956977686545 2.055221010655682 2.7629520434442334 +4.664911496683931 1.5592453732800617 4.204887212432225 3.9676106889022575 3.114717036694808 +4.281573504854292 1.3945567245743553 2.7642621416724005 3.6002301110921593 3.005612805321691 +1.6350838839143846 3.724304374165888 4.483574477391267 3.9956414975762 2.145441877487699 +2.4893266506551552 1.4451978451984435 3.570952171207988 1.6168116908599348 2.2155969803462408 +2.9158608452604264 2.8878013273803176 4.215423941793385 3.569158050683802 0.6468747471924744 +1.4479771199656892 3.1029030853031863 1.7053815197731992 3.133130956071406 2.185691744871196 +4.743709922422306 2.746011573391608 2.8137094410056114 2.811736618894806 1.9976993231582814 +2.9770341409831635 2.656431996895093 3.016797933760477 1.0491801726695744 1.993565998043266 +4.530441008739565 2.776378427900849 1.639696195191216 4.412851425396598 3.281329832295748 +2.5030518266708075 4.6963278975183265 3.231290778373766 1.6727483434784292 2.6906345802285783 +1.018890663840303 4.907811764394395 2.495086259607332 4.635912052936296 4.439238944201746 +1.1985408449191808 4.66981113496121 4.451614865823204 2.868595673179938 3.815189011150747 +2.877578991465946 2.8129692023353976 3.5741550707562935 4.299399738079096 0.7281169221571877 +2.7958914800204084 1.1085672151316652 3.58175991072797 3.3293557006987933 1.7060981976787828 +2.8388149417980304 4.934028249605829 2.3764202189373798 3.7155364583751918 2.48659427891664 +1.0221749093044195 2.352835776142103 3.5514284713994044 2.5434665674256323 1.6693248762286048 +4.466173534027208 3.840266871450757 4.694425615650071 1.210938782465821 3.5392710643896192 +4.84641964052563 4.645876001911366 3.34473834663976 3.9591859367348383 0.6463463405654108 +3.1062019128582627 3.307771056952523 3.737995319053048 2.372601045182413 1.3801926108227114 +3.9318610454221217 4.344957591728568 4.811739115124544 2.7912914012326784 2.062245795520306 +2.337312369169367 2.736415696441782 2.9353436365596517 3.0987783189965743 0.431270635753433 +3.1787903455076334 1.3165197331117153 1.2344961028710637 1.759633962384613 1.9348957608325932 +2.7779476692812444 4.10735163690498 1.4568781503830999 4.3134812563137395 3.150792950028025 +4.384385754818467 3.4056366776937224 1.4413842057519597 3.1125433974703833 1.9366782902788773 +2.3692134421588946 1.938133208621844 2.1056573313107054 4.380552763418983 2.315378887951919 +4.92575046958638 3.1558300328068376 3.9637770061014708 1.4310150757572524 3.089903129279437 +3.190056075506854 4.66209899901954 2.614726362011791 4.984262471290295 2.7895540399566534 +4.4134963280095665 2.8497424959470075 1.0655600517039145 4.774374121941605 4.025000354643885 +3.1447071056715776 3.103950701025323 1.3949076333115955 4.166502606330811 2.7718946190259603 +1.0561598165095711 4.839397833319435 3.2472576765730343 1.5373269883493927 4.151716855755509 +4.630426803590088 2.5410787725744366 4.070271390787974 3.8985747103969093 2.0963909331912047 +3.7083229795652777 2.0912522861254543 4.288438495631195 1.3780258855392518 3.3294773146192407 +3.524487115044275 1.1451532668494613 2.7865006419609246 2.778694356749319 2.379346653864112 +1.005217990129998 4.315814460563434 1.3312954537933286 1.9857775084787388 3.3746697245732893 +2.3792894623884653 1.0470687123835782 4.829003841480373 3.770763328309942 1.7013774156426318 +3.73093055718422 4.93107758632404 3.4752423882565444 4.20328135113526 1.4037071001539645 +2.001012707477569 4.09953931985436 1.1596295640444305 2.201907473661696 2.3431084447224686 +2.024692987715119 2.0341438011922994 2.280167153391042 2.5969102166750044 0.3168840261261028 +3.3566303180684716 2.7514466650380967 4.792269009313136 4.556584754998495 0.6494569436283192 +1.8822295607542197 4.1857867932202755 1.0064360954197444 4.567710286086393 4.241349995503208 +1.70173115298086 1.10364432528152 1.8675879085790479 2.85404593222485 1.1536062091903987 +3.4854847187146265 1.3986339650956077 1.9102720791484282 2.196929056710771 2.106446840218249 +2.705694422966224 3.293480189194636 4.771769380351939 3.8860819321457156 1.0629837077259339 +3.539192290874418 2.9784738200556617 4.091969812926392 3.636745371822493 0.7222426844874795 +1.2155318619910491 2.808814955752664 1.4261383750439722 2.3192414199222604 1.826522396697465 +3.248708884148437 1.7200563686139296 3.1665169305589087 2.9237522867764216 1.5478091566859316 +4.180517777525798 2.221958589883349 4.286661429058331 3.471018265530357 2.1216097336005433 +1.8323468908319667 2.6594400959681446 4.426079959588488 2.473398899276334 2.1206240810865644 +1.929107358401231 1.7764174113933278 2.6373385178265267 4.933637241524167 2.3013696027306625 +1.778503424439946 3.189554576306342 2.8184674521748376 4.96420338889498 2.5681215047804393 +4.438978927143646 2.561115194041351 3.236783531825488 1.348735672788131 2.662911361295459 +2.862703397065286 1.08832434635928 3.579225250749976 4.650565015128004 2.0727252365718707 +4.7189415945258135 2.077357803516244 2.400702018989164 1.8674369399736777 2.694872273303854 +4.969056735266465 2.0768867791002474 4.946112566096538 1.6172656685388511 4.409747013461195 +1.1141823659759575 4.503289281409764 2.252844475018577 3.8651516226363922 3.753076074702023 +1.8138920042191597 2.21317689862303 2.33327747936897 1.9368312022088272 0.5626704875619892 +3.990518280916182 2.470813551387005 4.408777754416606 1.4837377351329741 3.2962647920584502 +4.9633022888228675 2.09861440494818 2.044403969867626 4.836573499175811 4.000330905364646 +4.443008168092371 4.629205936485764 4.476892737949221 1.070594282200553 3.411383704391876 +1.9598025007987419 4.043447342504633 2.6048182982285097 2.3938113537877865 2.0943017349393043 +3.8529952644871788 2.154837811958378 3.968723341869716 1.2320148820446892 3.22076263137428 +2.622119706025855 1.40976178483342 3.949994684175278 1.0443919424992236 3.148386733156117 +3.5217002909627166 4.996608396781786 3.4780930216204236 3.566279857523897 1.477542161373902 +4.316382963857237 3.8367407917374736 3.5998098700447736 4.693484517579538 1.1942281389818512 +3.8909932328708705 2.325213365117433 3.8530526383958015 4.063331860922629 1.579836683232941 +4.075789246768785 2.349640658535451 4.944039598913833 4.867684460181429 1.7278365246373215 +3.0450346733975913 1.0257355245063904 1.0994606916275678 3.007812425941502 2.7783763954100476 +2.214918915960564 4.004154577753785 3.6015243863155133 4.626802820195282 2.0621736397334676 +1.9641732898565802 3.970188168227877 3.9213128662273964 2.967450704925929 2.2212493590341706 +1.362749188275385 4.13198929802061 3.0304153601609944 3.783938844901063 2.869928296574073 +3.115239526473317 1.5414431829696782 1.5305610171956534 3.439944214089108 2.474384594885058 +1.3418008988493932 3.7100730671761966 4.78013620718515 2.4599718508069484 3.315399780400429 +3.7020222484493144 2.023130918187646 3.183227376155748 4.174035019972166 1.9494552792697852 +1.3637707640835681 3.4400129119388754 1.7601404976904789 3.0188651758986196 2.42799696706174 +2.9435369398283746 2.004543900948152 2.919385521792361 3.5687393800480667 1.1416515932179512 +3.6120856297651844 2.0659161406210966 1.4461763279636246 3.873303587223741 2.8777746301271776 +2.9822587643294867 3.615046566201545 3.8397546461371643 2.5517639999911825 1.4350401760081894 +3.8800853142498726 2.9445260022785584 4.022744692646379 3.9070368027035447 0.9426874041861711 +1.6627911023733217 2.891429063173287 4.691075912002856 3.3241712696419836 1.8379280562705391 +1.6197935856292305 3.193066646685817 4.442824813438147 1.9702521530665384 2.9306660822180843 +4.510403846710974 4.859858739115484 2.372455554074437 2.492895226998392 0.3696274295009461 +4.795071884271957 2.987633383123048 2.5373023927293645 2.8707533810518044 1.8379400145403622 +3.281313504100507 3.963261543265188 3.48223780111595 1.6818582516949183 1.9252063915575468 +4.793084544159052 4.4429025054921585 2.320344036370086 1.860398548382118 0.5780807141960299 +2.6055209580010397 4.15276055112593 3.0136874036143015 2.183799061814342 1.755751980887039 +3.030702990656683 1.2766065795672574 3.3388084605622175 2.4434117407045943 1.9694134927253328 +4.623219349816278 2.3840066265496973 4.9143700506459 2.973907334655172 2.963016903797386 +1.4234335259646347 2.4213219249800466 4.258397959537846 3.9971463918988293 1.0315200620847786 +2.9708980641286518 4.667458717628126 2.4895591555168033 1.464624958760024 1.9821221351581808 +2.459698773815628 2.86947197599013 1.141605528994147 1.5197126192610209 0.5575652866978245 +4.582467344367424 2.144168768748007 1.1771131466120104 2.8436093918813348 2.9533895238123318 +3.3405148450200466 1.7845563741026393 2.697118509026615 4.1432769450870035 2.124236565311939 +2.3805564758987137 2.951170220353593 1.4951534136143012 4.727573980458034 3.2823989346688465 +2.5726495989598637 4.334445347121422 4.127954246557362 2.100518757206025 2.6859670366036585 +4.089778941075691 1.2784651035261505 1.3510978487475462 1.6885027781225452 2.831488580157807 +1.459347813015595 1.7674397538825155 4.5272504844169585 2.7801712654319584 1.7740367643981858 +2.042179366816977 1.7622292113626292 2.7165431660760433 3.913877402631695 1.2296265138517544 +3.613631266044738 2.5231314985557214 2.387281614060316 4.088596433485526 2.020807229225349 +2.1658861587257254 3.3325806546530456 4.505084897737978 2.53829333517445 2.286798001004503 +4.156217874245508 3.3062538058528457 3.9954922459431725 4.464362621125899 0.9707102277624339 +2.613949733027395 4.110753415616214 1.9092586834438081 1.1145501717932214 1.6946925628860656 +1.2268310621298615 2.4901662398895015 2.615312559700821 2.8224491494250152 1.280203631524122 +4.42825236718031 4.458161712533755 2.7045783948206363 3.4722519432119285 0.7682559767676066 +2.1757407490119043 2.682140589010424 4.733202320372307 3.1567239417068063 1.655815471708829 +4.797045383373299 2.611067742854566 3.9930937688719594 1.8438497140932117 3.06557470172391 +2.2600264465903375 3.477077718081916 2.7284996461970525 3.297768834696611 1.3436075343693983 +2.233280023582749 3.6574773844162762 1.1743165471888282 3.3036015503057783 2.5616777211632096 +3.0288421455544667 4.3374070032086784 1.4293853010787818 1.656681747687542 1.3281587485419641 +2.6732675423318795 2.926968325842472 4.777459886506218 1.142761090097229 3.643542154026881 +1.0764285745240318 2.449142381984165 4.821826035044923 2.6407805713431918 2.5770724692809077 +4.500501680798761 4.117751815185317 3.0874222862656158 1.0649189354090915 2.0584016284129243 +3.0216915523224896 2.649934960811619 3.20790562751224 3.7274759896785974 0.6388711329943307 +2.631180908179204 2.4177268909163114 4.784784192909424 2.748955009708738 2.0469887837155434 +3.185082057207694 4.938576537316735 2.1752575602431605 1.979204148093042 1.764420537227047 +3.0102809326212054 3.7913607570530234 1.62735930082461 1.076497206572974 0.9557901124293647 +4.57097387719816 1.6732104539623749 3.403426138941739 3.20777099379444 2.904361167772663 +2.9582546166379773 3.2384351999391288 1.1926656686131123 3.6238475509985846 2.4472732794884884 +2.9403208066765494 1.114898638365414 3.806453223198726 2.565068770278344 2.2075328882066887 +4.969111130094348 3.7160280156514705 2.222405992075811 4.043850151150927 2.210854159896287 +2.8095250092638726 3.9755306870827205 4.041899741463576 3.717471803859398 1.2102986108410978 +2.240240462647473 2.105965265876822 1.138027670418626 1.61250102344043 0.4931072816290085 +3.9794381167146375 4.216801003932426 2.663173323336163 4.945514716664595 2.2946510357631142 +1.552505677807991 2.277656437684572 3.2289400945410835 1.7720098470954593 1.6274180072960822 +3.753325646972086 3.985272191197012 4.292607168789472 2.35201321122804 1.954406331217187 +1.3600964143109362 4.273979699099562 2.7029270810148898 3.957993958174773 3.1726816202566583 +3.2200342265015265 1.7341841006694874 4.875056958434022 1.65677354950745 3.5447282965845384 +1.6084465126053327 4.9060775353450765 3.111876673570385 2.850575645801689 3.3079674407781807 +1.3731557909331666 1.8563430360713258 1.7385419510039766 2.0422801965133184 0.5707248335663139 +2.189671243449321 1.587148721063559 3.5320377652788566 2.558839413683319 1.1446171506361296 +2.7689072346247388 3.211630452179711 4.573934769448254 3.060137148241431 1.5772086372238974 +4.4251389567239805 2.726819899284809 3.6179752840580583 3.124366312945351 1.7685975905287277 +3.5335040922640655 2.641908320904249 3.4997011795658595 3.7576691122395673 0.9281651112785123 +2.5131253031576577 1.4311304422386613 2.4431482906985624 2.324143474579281 1.0885196485662088 +4.264966582764366 3.6125624584512934 2.179378366185577 3.7957680771500124 1.7430854365556492 +3.6992586063212416 1.2835913395974101 1.0320937067731362 4.843304022022522 4.512291259502683 +4.172653730354287 3.3847241079981827 2.918690731352041 2.234054709350045 1.0438197030181746 +1.6937119326682213 4.137364799463587 2.0132361915256687 2.5634339517655387 2.5048267223043945 +3.4398726309339414 3.5685962228536416 4.2934111401782005 4.451065720510469 0.20353066062992378 +2.7347706670397756 4.518745244565155 2.0979288445033943 1.9502561173737059 1.7900761234078217 +1.874574669029733 3.0835553659702266 4.581092355815944 1.429606805087499 3.375425232770664 +1.3599295949450703 2.628734465842941 1.017727198573716 2.8657317423554183 2.2416481869936637 +3.940623334843173 1.661762495075048 2.0284236905513904 1.312618300133039 2.3886364486837786 +4.430307321923143 4.479716528852446 2.1009377070691495 3.7348648493684005 1.634674027465898 +4.615628560860285 1.6875466335233997 2.8209470809739314 2.371198049456938 2.962420963426259 +1.4072103265839946 3.225416530640783 1.7055174735520495 1.0454667927262062 1.9343062585147304 +4.4992403644068 4.374217472595941 2.927612490249498 1.0173826417326493 1.9143167965729846 +3.318481569460736 4.048027109504048 2.5989259540313236 2.876545961665185 0.7805828358577407 +3.4588499205628978 4.230475797044046 3.310078962355898 3.8251677862824303 0.9277515776269629 +3.615854218594688 1.2700071596295537 4.949678353063192 3.8532387619787 2.5894358846962975 +4.067676894251999 3.7609740697727094 3.5038566425366153 2.671899032494302 0.8866905251838951 +1.499575239209737 1.303192067117322 1.604825493588777 3.957600295883955 2.360956505443544 +1.1529781241437513 1.8284841223022998 2.1663695877250624 1.5517420183227078 0.9132772868179867 +2.7232358872681415 1.0624059433167652 4.768798223914322 4.479388681771957 1.6858570478568415 +1.5973923022799896 2.9613317056727606 3.175630726482626 3.9706709193619534 1.5787398786440487 +3.9714186961504394 1.424442140693332 2.370219813683025 1.1812058215118317 2.8108439742588045 +2.335956421794732 2.137120923236882 4.667113797301635 3.9326512366497273 0.7609013132372069 +2.149105403424249 2.8437851255109545 2.4981591672769765 4.109578201482009 1.754779536032017 +4.982357432586386 1.243842896181576 2.5086981792113914 4.597053476640699 4.282256272949008 +4.87823436033525 1.630627368306957 3.9447370421349883 2.759670661837584 3.457070074554788 +1.7759198430538716 2.9314861343738143 1.2453484781830664 2.673670671729273 1.8372364415642244 +1.4264487786457392 2.203946554657433 2.7032037772853257 3.575909756024602 1.1688107276331818 +4.47145805636056 2.3377968852981006 4.014500903252051 1.5630773123942685 3.249921170538401 +2.2660225388054083 2.132853658875476 3.8279905782591874 4.162975954096813 0.3604846080027111 +1.9724971094182888 3.1991173607645447 1.6995569936161172 3.9405557376413904 2.5547353310540024 +2.983026284370686 2.557936722989467 1.0499716062501747 1.4238776129826092 0.5661332326103744 +4.573233843832916 1.2955217320986758 1.0333359096591095 4.8793858819531595 5.053265981203878 +1.240214050531082 2.88080055226141 4.379356590854439 4.430252327203363 1.641375778314721 +2.151164602544744 2.3761938880716005 4.5138049964175675 4.31201385297908 0.3022546028019092 +4.851562215680552 2.243073555402855 4.763973492535443 4.8887303833630025 2.611470346874782 +2.73937266599452 1.3910180625233002 4.21056602371856 1.4665779531739442 3.0573731646616498 +1.2718560003297008 3.083797162691817 2.796215082193601 3.844275410148436 2.0932179119468124 +2.8635111028146074 2.186493498855392 3.1783716452278186 2.628244589721177 0.8723489056971898 +4.236713724140683 4.778390448069475 4.237210826827483 4.4194429384577845 0.5715087188796569 +4.374315927032641 4.982731674780711 3.0444816539091533 4.145940840672972 1.2583251019566664 +2.6317932099406356 4.838526960599516 2.8228397085932246 2.1845559401138437 2.2971895906522932 +1.2364865815245953 4.136366444449323 1.9781884913542815 2.331520459818401 2.921326188451928 +4.424117229945843 4.41488927854525 1.3296923083748626 2.3062961154799173 0.9766474036924168 +4.276864207012784 1.7326881725480359 1.614219361359177 1.5494952689930779 2.5449991949856066 +3.078478526871574 2.4519465260861315 3.1565546311609087 1.488218190295954 1.7821023617980405 +2.8686107994320422 3.4834674535986365 1.3889552551552304 2.095474271477228 0.9365990740960307 +4.582076738916699 2.6548170177481434 2.754070803643555 1.7289056958276854 2.182955228840441 +3.9045992527089335 1.0121041570179377 2.1008388826775177 3.9369951406208368 3.4260761349072317 +2.045122770987468 1.5820583424984305 3.7374230273350912 4.96846074224859 1.3152499840225538 +4.553524308854341 2.0240752485450635 4.874584049240293 3.8299056650658407 2.7366887793574244 +2.7578796550987748 2.0465272440900115 1.7959561711610523 3.9172668158173316 2.237404993241058 +1.3019640659711924 4.717645164494801 2.3321701258308978 1.7700700891463352 3.4616230034554936 +4.601516852053413 1.4511864984643763 1.2850261204581814 4.41297714941283 4.4394435435404365 +1.3357575725249324 1.2461467680275105 2.4884928628320107 2.2520385677988433 0.2528650429029433 +1.9249637437877762 1.623310526686637 4.825982085079461 1.302739426668055 3.536132561632459 +4.658599989118709 1.5639989673530654 2.3107919620470483 2.375991170726162 3.0952877767221176 +1.5395289658777265 4.999830729148778 4.62313655124292 4.130169847990351 3.49524025832452 +3.5229784129253927 1.8576682872114887 3.8222785429971387 3.999575915036383 1.6747215210109654 +4.071302016004976 4.154633475165644 2.65386601855911 4.0393240589644765 1.387961856035577 +1.111647028466117 2.1350259011682993 3.1810563361759816 3.8501617196867444 1.222704515136946 +4.743130931628464 4.681109646320259 4.963654170791712 1.355611945653009 3.6085752504575996 +2.037875916620249 4.382113760342698 4.033449506947727 2.542852175035112 2.7780085445954774 +3.475834289208064 1.1599730283283058 3.9155820271862742 3.3774494684073417 2.37756178268022 +2.240749788993035 2.373788632605336 2.448024941046514 3.611900745408724 1.1714547459844447 +1.6338698855550522 4.239925518098275 4.471268671082457 1.710220752777336 3.796697455300764 +1.2380820382813282 4.253351078984844 1.4637013786444983 4.660715307384006 4.394626883863922 +2.9561492559571607 2.7722507803500434 4.8318410112189625 1.2012088611945484 3.635286571664127 +3.4650810389228237 1.9428680692629006 1.3625309769662675 2.483347355007434 1.8903337478567643 +1.8047564637766578 4.719198526553033 3.8880706607082374 3.445032104069665 2.9479239644109887 +1.1289363978961955 3.783998276825317 3.6172003877966095 1.5648412890732528 3.355820533201259 +3.443824248623557 4.006271402855638 2.430021090324022 2.1699479016705077 0.6196651230787258 +3.920774145347446 2.9038399751498924 4.75126162176605 2.9920232175923456 2.0320125169976264 +1.847195398750932 4.786991077159206 3.3296903472358435 1.7230919917454037 3.3501577435476895 +2.965027381210615 3.8311444241432318 4.791514420439789 1.5894491315160066 3.317134432999194 +4.801749058080291 1.4145162775466553 1.3864735154224093 3.771356884965866 4.142585496504155 +2.4145978512036206 2.2493429790455592 3.5300609867022574 4.163708934214205 0.6548426483958428 +2.7056656755910478 2.9191578455069664 3.120607219207594 3.195876127421625 0.2263720723922006 +3.0436724503191277 4.530604191804093 4.024982681365256 2.106169121315584 2.4275113763000182 +2.9733380784517776 1.0966305130871397 4.9002847168339905 2.169890065032138 3.3131686103313585 +4.572691829051831 1.3074964251658314 3.3504120580565107 1.0391213801432233 4.0004456780922695 +2.8930453531355242 3.064886717878527 4.801290006213993 4.966694590423414 0.23851232906126485 +1.1480968062261927 3.9197369098770753 3.7142807383857463 1.2768810297744468 3.690922134603265 +2.8082460704071863 1.1479064971072996 2.159017960738756 3.169744369672097 1.9437837771678559 +4.268892276364153 2.4683925709800336 2.673765384948613 3.332275407963361 1.9171423107060115 +3.059881172249195 4.989665259055823 2.5841931981021835 4.82472114231059 2.95703095865952 +2.0568769923007952 3.039450451187196 2.3201574818502912 3.125877206730251 1.2706828389368543 +2.2380403849936994 2.1371874527869528 2.7325850088789796 1.9600798189484854 0.7790607052112484 +3.1981651928871764 4.524790828382059 3.4694508765394065 2.940589575646361 1.4281561022291949 +2.5310229803164828 3.5437102599290573 3.702400347009743 2.8701529455530603 1.310790320196376 +1.087316566398541 4.827931530899738 3.2997144216160086 4.895379695852676 4.06673677289975 +1.5893748104350256 2.6789143098939205 1.216054422976851 1.4030079597193632 1.1054627744893417 +4.771730000048477 4.898569296344698 1.4630328079404347 4.66301361587532 3.202493618765933 +4.017098164117775 3.971739543249228 1.356147480839208 1.3356014504528382 0.04979501834254328 +2.9595300650896674 2.305352600156425 2.106887920474939 2.898433874667085 1.0268851704180162 +3.4719435186866896 3.6521027891911757 1.1185122564303804 1.9974791206808766 0.8972402750651906 +2.824701508810166 2.5796148308980786 1.6305794016546984 1.0705190714660962 0.6113387384592518 +2.7696802954382425 4.387551678526851 2.8574318655066406 2.027969563544499 1.8181076762924087 +1.2146944719364865 3.945584278355346 4.27487206860392 4.33184754701597 2.73148409110189 +2.9746835615699876 4.318830929962171 3.981850221168157 2.2015146649398543 2.2307682176161583 +2.333271914213539 2.9156237042382194 3.3802378144305747 2.785026485465843 0.8327125155015456 +2.1616839928558105 1.2085977985097585 1.583783458816792 3.4252059520603964 2.073453662968269 +1.1501303728013057 3.323602050548908 4.068068658446445 3.647832961586091 2.213724728796849 +2.1953305557314975 1.7054904975804392 4.353610555414599 3.682205951452095 0.8311001292211905 +2.3477992153616887 3.816489398764593 1.6822667722330369 4.890700230556547 3.528611073965763 +1.7585094074754832 4.4960691888388 1.6693801948592228 3.184869711528649 3.129048103125438 +4.831571521156385 2.717088643135024 1.3074744643912286 4.865831429398085 4.139195831542439 +4.765636275659547 4.748698751633059 1.6821054856566073 4.08377173506838 2.4017259738121166 +1.7725701167062975 4.167447498328422 4.072962664776817 2.342144657218827 2.9548550976811456 +3.803249389830896 4.082145592640585 3.154248268586351 3.242558528995684 0.2925436617587663 +3.0532252372660498 4.938066099022837 2.5359670057544332 2.3719193889991477 1.8919663566541445 +2.921779788646503 1.588110035512845 3.6889080298115515 4.664403770903556 1.6523519453531175 +3.7464619304611664 3.5547582018472283 2.225681774988034 3.338652429015353 1.1293599941074968 +1.438327684479419 4.919027496762045 4.635640120349031 2.2452029258128765 4.222494661245433 +2.4445827239396642 2.161013701765652 3.4130926338293146 2.1085868386447384 1.3349706963101735 +1.04582109452822 2.6536071534878674 4.373595531960868 3.751743939036114 1.7238548126243256 +2.1896213029427485 4.088705336433277 4.0778032387701675 2.8367778990586245 2.268626029134111 +1.2881299735453147 3.5971507726584204 4.344994828044237 1.5707237540082724 3.6094538427537195 +4.461626721611289 3.4878314115945197 1.1473666041944863 3.9577085103829464 2.9742728414672452 +2.0255468140201147 2.404376170390421 1.1456800052645137 1.9620880060334724 0.9000187247871616 +4.393384248045274 4.640029080483336 2.8460937254353373 2.450322971965928 0.46633481820484235 +2.9813819716515186 3.271403562027105 3.6419520267960332 2.710074395553389 0.9759653900084708 +2.1549947470968562 1.4070760099387933 2.224030008684727 1.8936734361292675 0.8176294407754053 +4.9766317420491015 1.2222818513923914 1.7393843277179313 3.0474592413744372 3.9757015835210177 +4.76985589062679 4.952822518436879 2.2366294301756393 2.755031567389374 0.5497431789117199 +3.4173578017936466 1.98677546286721 1.8313326523727063 3.177875859250673 1.964623230148069 +2.3165538839877033 2.644668710288113 1.1645058877226262 1.2881446442986064 0.3506363948106393 +3.8338164234486745 4.900702106183942 1.1074219704774202 3.779530685807266 2.877222627216604 +4.370068809334644 1.5818506507745411 1.1212078525507114 2.6787179747678453 3.193743615341269 +4.412680992810545 2.918365182763021 4.810007225670978 3.1962712659183157 2.19934615009935 +1.1063927663671786 4.614312706795206 2.8362660873282657 3.6291600192586073 3.5964125313629602 +1.842013204434532 4.949941257171638 2.926301117360362 1.627927766312252 3.3682324949002784 +2.9410457222607644 1.4829533054778614 4.768752645834047 1.22795229204003 3.829268943454826 +1.0524628822034452 3.1042965907655473 2.7012784726719805 4.926452717557048 3.0267840999469287 +4.387853825410043 2.355737776159639 2.7368381542901528 3.5903883649920085 2.204097003266928 +3.2105495105872137 4.97123303724219 2.3198941464917433 1.0236502250819095 2.1863793780645997 +1.175279463757719 3.5508278358987586 2.2651941706287753 2.711446643030198 2.417099778144528 +4.388296791591279 2.5563524476089077 2.730778542853849 4.933369160535958 2.8648604692986805 +2.131785065871813 2.2612732792021837 4.56188885911077 2.3616793827873606 2.2040165464657524 +1.279457282579009 4.067606014314839 2.8732587593914776 3.0380478385712184 2.793014284048154 +2.604254301626103 1.6398745871120486 3.797848000530389 3.3850676905693557 1.049007062920806 +1.4658687136175539 1.3217920758828146 2.0544980585138983 2.105164614522639 0.15272582440024396 +2.2685187749672386 2.9631254233807502 4.481206580359915 1.079730657323486 3.4716734942987912 +2.6587932101608973 4.5621950047393645 2.761270174295607 4.540443281750909 2.605454919567154 +1.1209252450376797 2.5588318661145855 1.6088952877086342 4.1375755097611036 2.9089171724777816 +3.771344940829472 1.3537345765618025 3.565868361558334 4.414017743214561 2.562068938771612 +3.562023854371067 1.913740452745773 4.01121912013523 1.2972917996724074 3.1752542690039753 +2.2869449550663834 2.75026193264527 1.140332195896693 4.620163374854197 3.5105395106390143 +1.9128523487060427 2.689152353014893 1.0133140629102093 1.7195999172480572 1.0495148425475767 +4.319343818609504 2.449000117273026 2.5760322287832627 2.958736778349606 1.909096208520622 +4.4528440942301 4.037833809554439 1.4299533572975354 2.111751872193881 0.7981746370948127 +4.153539958439731 2.7751393559529114 1.303625059122444 2.925642297031438 2.128597693555536 +2.211265977080017 2.7286685541391917 3.5351447461142644 4.1498296674054105 0.8034568931872933 +2.7441375133925328 2.3436062435575864 2.3122053690897637 2.554661410583017 0.4681989215837355 +2.5759791455793897 2.9942804256973203 2.2479973657570396 4.950764266524321 2.734945133056873 +4.130833397075328 1.652504668095213 1.0459058356287319 2.3447130623141352 2.7980374373797114 +3.6843007729807096 2.756561941347247 3.0305691444540486 1.0752913862219278 2.164211277014758 +4.120077375275828 3.2033974411778234 2.4778393944494996 3.575529328730503 1.4301137344280548 +4.826614412771971 1.8846575073758425 4.259910784104766 4.2019568105683245 2.9425276712813804 +2.711348035771952 3.903207482126238 3.2767670340113892 4.0651805299526895 1.4290293140612365 +4.63649880295183 4.419903268544962 1.0166743002624687 3.9025664165692384 2.8940087996560346 +2.42539917161278 4.714189283481957 3.6742656994187177 3.539732902164019 2.292740554386234 +3.3759315521749507 2.1943176217037417 3.750772373812164 1.942034023219887 2.1604966793741873 +1.229910219812934 4.715974312999428 3.9820906042364217 1.2441494900665697 4.432715240850221 +3.478774235162751 4.741419619946553 4.121864966287596 4.972883745668039 1.5226642212168822 +2.825626770186878 3.019444618783484 3.935322313956782 3.151052950435391 0.807863721795245 +4.749128830706975 2.7127719126079377 2.3529642326160354 2.812321608311248 2.087524537938513 +3.9949586785837004 2.1432235996461237 3.757442603116435 4.3359628159412225 1.940002175054139 +4.707540596836023 1.9618228969541547 3.7010213856207748 4.556598650407554 2.8759308307858524 +1.363804306693432 1.9860995668356778 1.2190247767803717 1.2497547226176606 0.6230535453447545 +3.1042957317826745 1.4678064210646644 4.061968149648408 3.0486458949738124 1.9248166811187795 +3.510424202010688 1.5174150204425296 2.8017178936912184 2.557715242218157 2.007890159281843 +1.0922410420406141 1.061675509587214 4.852371372207845 4.087906502000944 0.7650756757044451 +2.228711080295603 2.609128956732156 3.111502515095099 4.834092569588128 1.7640958751016886 +3.949282935876178 1.2736261646309441 1.646179727859689 4.7966901096047145 4.133382975601663 +3.449709663639015 3.864180333249019 2.495655566675294 3.78271518321762 1.3521495451691148 +4.518305435369214 3.8532975631824877 2.7870407185879276 4.025632227996477 1.4058251659609973 +4.769830514619014 4.78084799469095 1.381552377440137 4.609791796230881 3.2282582192107143 +3.3913219428684442 1.8825410149747541 1.341422016762817 4.538615248614335 3.5353167397240237 +1.1570774479764223 4.65987597398728 2.5236802925073163 2.5578579706415634 3.5029652621038774 +4.800592064754282 3.215672332505359 1.6590635143843144 3.685224787144238 2.572411331980971 +2.855456701591716 1.7812329945918122 1.8746213141784311 3.5455109330800534 1.9864110076300483 +2.067527788866533 1.3482050404666177 4.006962205537483 3.7755755622207228 0.7556222568658267 +1.1437584932573852 4.7472998809656115 1.7959292483583393 3.1299468332160276 3.842539973719944 +3.3317490277722466 2.3260489977450276 4.705817519285679 3.3112863496611857 1.7193457283080116 +3.8032728056602503 3.5828267582430664 1.6208298887596997 3.831090663281285 2.2212269472547415 +1.999696254331346 1.2939612737685215 3.458265797270541 3.2001535509320567 0.7514544527114791 +2.085128039471386 3.9266195152766787 3.6421415731312092 1.6395670432551706 2.720550606618409 +1.7670892817543642 2.1281047813757095 4.617704737880118 4.717952502337665 0.37467560001364575 +1.4917564037041995 3.3867445903957982 3.4593652598643474 4.52142085161667 2.172312663424188 +4.697081897985749 3.313069211677665 4.363364800709011 4.903464880866558 1.4856645692914354 +1.9124866127110534 3.0048180650215244 3.842845717393019 1.9789444690374602 2.160397154536201 +4.299184120627528 3.0628499696879152 4.449551825169339 4.994750159180885 1.3512081098737303 +4.8757282896338765 2.0114436435145606 4.849154385649573 4.613071963385487 2.8739974676566664 +1.1141256613580048 2.6244138371316756 2.6742691954943463 3.9380624297285145 1.9693003104599922 +1.532846326754441 1.4405020604758656 4.581083752339102 4.148900255096166 0.4419389537070287 +4.657800338656788 2.9745570717111116 4.694018898091459 1.6849876639770716 3.44783654827109 +2.2838446707185835 1.0514376389306461 2.356010034169655 4.3056886916075765 2.3065285515833724 +4.405738512708105 4.137030781213598 4.453156942904835 1.6417477860535326 2.8242211832985524 +3.816106991456305 2.8547961813094913 4.258384807188289 1.1906806301594242 3.2147981882951018 +2.851782562665324 2.4785748041995035 3.760147037172313 4.555898992649956 0.8789227529342809 +2.3852902923219337 2.717304294218814 4.541962401805302 4.988367551900685 0.556336998129069 +1.5681908482830345 4.104384115837146 2.8762039853641186 3.07755198629841 2.5441732071278156 +3.2345621083349374 3.040327200044226 2.8931857400608134 1.997570781338736 0.9164351334848798 +2.3770500583294782 3.7724486154941173 4.0021774030914905 2.1253821693309956 2.338695679818832 +1.4094075251887639 1.264879684402608 4.453286970717192 4.1109682533076555 0.37157825696778696 +2.3151108092211206 3.3388713129265333 1.072077911816899 1.0073326040316402 1.0258057924516553 +4.840126684789233 1.3940230328332563 2.0981532380865766 4.536707252401744 4.221631919146544 +3.437207091670041 3.645082277989034 4.949630976044244 2.8817197563766026 2.078333203678964 +2.1513360256018443 1.843246124512468 2.2116364824776147 2.200635659885455 0.30828623915278125 +3.5956678285537804 3.692292791921453 1.5023156054394784 4.057493432168192 2.5570041278323887 +3.8662815162553823 1.1195956934518376 4.947831970913114 4.611062414511219 2.7672543691010976 +3.3252492627659933 2.671093164430203 4.70220576227987 4.829475843111231 0.6664216941732353 +4.789003377881173 4.233574108316116 2.5201847942789057 3.37396488445423 1.0185490247746336 +2.1108231947655463 1.7539737427356639 3.5846728304791213 2.5164265446395544 1.1262733498685198 +4.955796953506464 2.2026732584968176 1.5109261236661187 3.5294816167791456 3.4138330888900157 +3.57736733299235 3.9377276567640056 1.7427142058398752 2.485430724911802 0.8255224955451744 +3.4841083767579515 4.637334190474416 1.4540180120607644 1.835166464361241 1.2145797298296437 +3.7951915155312705 3.9816854243966553 4.368409599337461 2.49580999496851 1.8818632406013573 +2.0380504142131697 1.016938331681355 1.1802245993389864 1.5077226414780331 1.0723454912934396 +1.4319195288977777 1.0020126575759365 4.504787926256867 3.333818278260662 1.2473932156854513 +3.4644550076353915 1.6963385189557956 2.289480636413779 2.552364052525296 1.7875524070659088 +3.915811124257994 4.498816498564935 3.250574339448401 2.9631405847461587 0.650010330543296 +1.3762498755157822 3.2611743782662277 3.4163147022007814 3.4940636869757657 1.8865273084963692 +4.644118369487668 1.4032935889921738 4.808516788640151 1.0191650216620562 4.986194147019717 +1.3625610024697852 2.915688959561422 3.1390462179247165 2.2672024534259574 1.781100221996227 +1.4718351893223995 1.6561225597692952 4.53179121981101 4.548328229413911 0.18502785626180124 +3.81993252432653 2.388459932152762 2.9867238277457044 4.094054978528341 1.809777903400935 +4.004686923751898 3.4470744597090928 4.343872890024114 4.763105735645537 0.6976301591127809 +1.1390059963381582 2.913774928938007 2.1880671876450934 3.216210088998542 2.0510686457856777 +3.287654872329241 1.1548137936735525 2.3494211720343734 2.615941099204097 2.1494287469883053 +1.5079539356041614 2.387099598664816 3.024076680630522 3.912604548652937 1.2499515467132378 +1.61494241496764 4.117101945346111 4.100149677146136 4.5571559869095 2.5435520601370314 +1.4582879695016966 3.9809492156686073 4.261348064824409 3.210254689325418 2.732877063998718 +1.3603061385342077 3.5363873988988397 2.485701189279638 4.593545530606214 3.0295771023317086 +4.458475774645006 1.7115159268246756 1.4756617876124545 2.519731199689985 2.938684968276289 +1.3571093234393543 1.5488905791227654 3.1298733501155125 4.218405696837085 1.1052975707431365 +3.2850935947690116 1.1919353400145942 1.482751693341756 4.895457221210844 4.0034822966256245 +1.9805392755372564 1.4565492259935087 2.496070247252595 4.142320547754766 1.7276300599157064 +1.2905652078543155 1.7257623330269034 1.621319936255793 3.8929862427426873 2.3129773768427335 +1.4078718947118944 2.93246790548815 4.565499667315846 3.89993959891034 1.663539359537614 +1.186264227494895 3.575114196482262 3.0551507190970715 2.6992938369743147 2.4152097827901153 +3.9318942492416373 4.475397847284776 2.4503237589004656 2.7044575338515062 0.5999834469855844 +2.616075777567915 3.9876133485206267 2.799395422824044 4.358803484494546 2.076744763166099 +1.6509841587412355 1.0771663683790624 2.1425866731961407 4.3121469203358505 2.2441609840884955 +1.3433943910491988 4.971293131814871 3.1652317021781258 2.978656277974322 3.632693169284461 +4.170641520409044 4.166088285937647 4.0819938279296775 1.548179685877173 2.533818233103831 +4.659659503945628 1.2290887991009276 2.351069510024935 4.019735466725439 3.8148737116698728 +1.260170687233514 2.3898104678980245 3.4830889079238165 2.3656229479985544 1.5889670247212342 +1.6104687033482565 2.2293012996121457 3.0008095762399765 1.0300721984073995 2.0656136121223465 +1.1995435955657756 4.103099994140793 2.5952512933106537 3.1207394770441756 2.9507249263442845 +4.9067838921004885 2.316543839533897 3.0224875879343496 4.4559716016512 2.960442525620443 +4.362644079765076 4.78114447682607 4.440797058938706 1.314782697869144 3.1539036713180306 +4.15775807923913 3.3408814814534367 3.7423109652350193 1.6595320174312782 2.2372428391715524 +3.966961036250082 2.0832248792275587 4.686736619130845 1.815226330945995 3.434244202794179 +1.7465854905451121 4.237843160609183 3.28048730941768 2.985582876382147 2.5086517102374075 +4.745396894218511 4.945971427450512 1.6849285111928172 2.301386619857746 0.6482674934932156 +1.3193227335428483 4.955016320569893 2.4809034757743067 4.207429187522392 4.024817870671518 +3.6462968449262325 2.8261069847594253 2.6508424943085043 2.8373053437890956 0.8411181848925087 +2.8373694771664546 4.595831609084819 2.7649116159091975 3.0715602257607544 1.78499928272108 +1.949003601146067 2.026476293882084 4.316571152467855 3.782363518003879 0.5397960863505461 +3.4620744466903233 3.2282757750807205 1.0835314612149487 4.583281300212372 3.5075505348332334 +2.18096303336879 3.1392076990404685 2.9694955704503685 2.811731186229793 0.9711449120583003 +2.4773032746909176 1.4423810060683566 2.591785692450137 3.9162945827462927 1.6808890214896468 +3.025517779658018 4.235305601626818 1.5539037126212452 2.7860803800801666 1.726802222031865 +2.4207398963560007 1.5082151408542481 4.723381930611924 4.293694618653856 1.008629077243604 +3.4067054052213255 1.247568396280474 4.0371652479086855 2.437043550267312 2.687426663304649 +2.607152798454344 1.5479760503394129 2.2544906417592614 3.4279393335104027 1.5807710827060903 +3.4817006998342315 2.9763413610845006 1.5033634203518917 3.5858468607846348 2.1429244832560386 +1.7679347048659406 2.8506035449649523 3.2916079548760293 1.0174653857035882 2.51870924130666 +3.0967748554438495 3.051843210881345 1.3449034740803247 1.0933416896457002 0.2555429202130705 +4.237786937333926 3.9421367137178778 2.83689743358002 4.818104038169581 2.0031446939234114 +3.069287196898245 1.8318232472467062 1.3982437038719948 1.5150034225479785 1.2429601194698408 +3.4114490761602463 3.9395398513679387 2.787144875793766 2.888884465345227 0.5378018324081475 +3.5449542019122102 4.522239980909919 3.3922243554693647 1.9626972343872824 1.731656803105161 +4.184621173974833 1.5315152132916752 1.3451548781948923 4.4375601321789855 4.074548010943167 +1.5357534733544345 3.725284214295007 1.2111153017724892 3.099354419074536 2.8912785804265533 +2.270892109988493 3.981811887152657 2.895204662506964 3.1391490186363877 1.728223172156557 +3.4045379220108343 1.1604814906582037 3.242770849638992 1.517284585175208 2.830740559632459 +4.464247086756106 1.2843810332992125 3.3712244970066876 3.4763681422411254 3.181603888616668 +1.854081388362061 1.9636405224550617 1.7452805927809791 2.1365306237013995 0.40630012374898183 +2.0230609772170696 1.6104356792211507 2.331519083925188 1.0712255144817604 1.3261219844820746 +2.370985753743741 4.716330171383366 3.81683755879884 1.9196225456750122 3.0166314397645264 +3.9780104241579033 3.4726379836365733 4.510917564222441 1.2170806583141007 3.3323809605689316 +1.0319220782189626 1.2924495094027004 4.523631951838745 4.266205660937503 0.3662551537471764 +3.3732577346091004 3.5721485460359994 1.9758437209639825 4.788792100470827 2.819970946772366 +3.6857002346711263 4.343912278336412 2.1833960435693776 1.6161397831242588 0.8689204563366042 +4.900402264992625 3.9849125102067005 2.4100796105827524 1.3359700695953851 1.4113230661893417 +2.3512809071725114 4.1292359465872845 2.573216336781931 1.924169581588993 1.8927191584085763 +4.00019758072378 2.5824218592128423 2.615812308793875 3.8666772727609544 1.8907012335602427 +2.674132814345133 3.3804228007780015 2.0683139924650322 1.8170771893655608 0.7496435660812306 +4.086366013950479 2.4367272397278543 1.7773481872208232 1.4484574529492185 1.6821049909290557 +4.885598772875822 1.1090249960920073 3.990895501165618 3.518098215097883 3.806053962466137 +4.34380088005134 3.0876284998971406 1.7675090356525724 1.3514075784010169 1.3232949298584706 +1.865425462055026 4.289270241005836 1.3991858739045675 3.8920015872205824 3.4769460296361134 +3.206246316383581 3.633262630115469 4.041747415556415 1.996125864870276 2.0897154018728803 +1.0732423434433414 2.1822060058346944 2.8201027307635544 1.419090819539254 1.7867945544736838 +4.436794952609276 4.043655854776769 3.140006050043594 1.662334224171865 1.5290756603973679 +1.1876752063531675 3.174536973587074 1.402610754316461 3.722473100708548 3.054403540513866 +4.660931513357019 1.1790055909028783 4.9839183281168 2.5393090084904935 4.254400410758478 +4.654273855361076 4.682640567251074 2.8586937633068215 1.8757700301668128 0.9833329728598249 +1.120467846277168 2.8069717947711554 4.77676366201972 1.0354932209916075 4.103827491646852 +3.065276823448515 2.1377995511798495 3.188842690089309 3.452890086673908 0.9643314358756686 +4.365499850092016 1.7597794046679214 3.5072974741450644 2.252544738454277 2.892089809709349 +3.093776481923081 3.9282466603369603 1.9775095127701685 2.350901278279843 0.9142001363008667 +3.170914359405591 1.5324215384446993 1.2971308929975196 4.627333105114397 3.7114559808690344 +2.537052477839785 1.2686797549286024 1.2127009510882334 1.4057064259479746 1.2829732957279205 +4.771716876636262 4.334959681808682 3.527194209519234 3.0382936828095177 0.6555765189897322 +2.6178445525741694 1.6148188157426926 2.751941110347281 4.518743154765216 2.031661904182318 +2.5180973251491197 4.531453783005292 2.1609207888354263 2.392711049374188 2.0266551140417994 +4.724330939669199 2.0319470277795926 4.53447959894304 4.318801432351698 2.7010087375916023 +4.2934051283900825 1.1546382012562595 3.891044236711187 4.282022343528675 3.1630241388392357 +1.4419535708964335 3.7724816411540925 2.663359993253207 1.0326209770781714 2.84441045299978 +3.1207653749833115 4.973813177183725 3.786687280325055 3.515656222475984 1.8727637308423533 +2.526021122092115 2.966538865947001 3.8344776089193977 2.9612078615295387 0.9780878970508463 +1.9742500294267105 1.3496135507166191 2.032746967477278 2.1558182806471433 0.6366453319240607 +4.877238293540469 1.198100638375144 4.846863789678995 1.5850429733787967 4.916861694547112 +2.3951951019596245 3.898046908943379 2.6159006454059406 1.3323415155266827 1.9763824512605688 +2.4182786321759235 1.8592104903854176 3.7825446827978526 3.1237937555463784 0.8640080852166641 +2.9370723197598716 1.3675599231402211 4.460598587396609 3.0075689611610854 2.1388464783291257 +3.1666791944907966 4.328620840023999 3.9047359072683316 3.1826770281213563 1.3680195220022966 +2.3048354900361616 2.8999346784582154 2.872515491050874 4.751883399360441 1.9713362926818103 +2.3404078668173125 2.571718886890242 1.4676666736378556 2.3544511539589945 0.9164559468657572 +2.5419901189492125 3.482492660835687 2.9262997790711993 2.844943377453824 0.9440147749792097 +1.1360481028606326 3.605092648091574 4.636626078534779 3.042002147599719 2.939218679759206 +3.0108838072357513 4.736937740889127 4.7883164838975185 2.2287086920030963 3.087208161139597 +4.3599719938101575 2.6217612635733207 3.0166540242418596 3.454790121338176 1.7925790867599873 +4.529870640993064 4.721590827222393 1.4262289043783891 2.475426911149459 1.0665707136520273 +2.88046869888614 3.15518965110583 1.0105616486859907 2.3000473014821523 1.3184251402167801 +2.1617377256572854 3.4719504449672085 2.3619180655752636 2.3401395393071063 1.3103937095575193 +4.828395934568523 1.1233553339350433 2.7274708921518975 2.0785923691775023 3.761431800514257 +2.7743689718617053 1.5950044286842293 2.605572273952488 3.594543419327505 1.5391441297320372 +3.5190238054130685 1.5772577082667354 3.3384512329670306 4.268478582400843 2.1529994070416705 +1.6285148218618506 3.1952274795164763 3.3335454714318007 1.9114710014704888 2.115864917656835 +3.1270483878935673 4.3038066937054715 3.7463836713712717 3.1099010284391713 1.3378603309206587 +1.1233051263857337 3.397958114285747 2.6343958757747004 3.988585145590164 2.6472390889086306 +4.6649209273010825 2.8980370229677686 3.8001806157400257 2.1317489880530616 2.4301322654658755 +4.901287256759499 3.7282847429433428 4.946022230743094 4.366366729476431 1.3084094915460254 +3.474477520693736 1.3562902162521935 4.1215723742444315 1.8815019830893447 3.082958451557048 +3.0924397980306986 4.2243814343838935 1.6320828716632048 4.567439730958858 3.1460470052947382 +1.9682752198537372 2.4510874942383354 4.497811780455697 1.17315110443809 3.3595351319720232 +1.6815718228845977 2.019646814498485 1.6485318957682265 2.7460346269627065 1.14839320136183 +3.9723182936725054 2.1168514446512225 1.9352901543647913 4.201080590388953 2.928577048294193 +4.642099470719027 4.833756027736797 4.0248960280872925 2.1883771981579985 1.8464922552051954 +2.03840861131957 4.428012724202247 3.626181506847845 2.9515876609210867 2.4829991287288165 +4.4317454483527206 2.282429543021316 4.303254102882802 4.242239238941384 2.1501817770905665 +2.111633955299469 1.220927434625621 2.425569518057782 3.4183250035821593 1.333762182703369 +4.184843581937793 1.8497196312409816 2.0634180286135524 1.7709188743472684 2.3533719681266656 +2.4977788878703024 4.960535820161285 1.0409427116891137 1.0863541749613073 2.4631755740392953 +4.279009456619144 3.259912267596414 3.2284961428376495 1.3913414500434924 2.1008799218255247 +4.862249725250502 4.936882687458894 4.562307777905064 2.819409490658273 1.7444954911766886 +4.640110335312871 2.2226638464697563 2.8293434740793346 2.307967087775659 2.473030703936969 +1.9809174457651264 1.984609170275962 2.4566007070533686 3.553156836584103 1.0965623438917134 +2.4871283527707564 4.610453841962396 2.484842166020096 4.656673311491294 3.0373280457483767 +2.311653283926504 4.428876372338808 1.0589327935152486 1.8233517463829414 2.250993101191 +1.1876098377507334 3.5941561272617863 2.7986106689717256 4.5615947845614375 2.9832160557661687 +3.445182917773552 1.2835746395797227 3.683399222737788 4.670143938400555 2.376176652154567 +3.402089097408481 2.7641907416622913 1.0661226719101173 1.1984574745644618 0.6514804772648654 +1.6264467018495936 1.2156221897264388 1.3482217443918696 1.1902880591614298 0.44013614790391375 +4.047833080072302 2.7972417293262577 4.397196394603666 4.7878491366215705 1.3101863575106114 +4.088986901574819 2.5889559473668293 4.389894123556449 3.826699219499583 1.602273810413736 +1.2781982078789378 2.8543744474920465 2.4915349080853555 3.201804904908237 1.7288189629650919 +2.714149241594063 4.6090539198351745 2.9751020968151796 3.012990240229461 1.8952834223491304 +3.5309577526105973 1.4082984586412564 4.806623758858317 4.843990291256137 2.1229881620060573 +3.322801854540226 2.123235022966891 1.6315573620584738 1.274036318826334 1.251711580103295 +2.2682498007833987 2.27093756891901 3.548844361310991 1.8177867033151331 1.731059744608387 +4.87462201907301 1.4040666070904608 4.536216995237534 3.437585675967761 3.640294719294278 +4.649491653461055 4.978152881315873 3.9659885525853267 3.5982336772371046 0.49321582602084346 +1.9970606388947028 2.90521444694342 3.6411174722801016 3.9624942476703744 0.9633412535719812 +3.280989080318507 2.049591636597071 1.1317021571556962 3.616188115443367 2.7729064429461543 +2.674834857943334 2.5812095393122454 1.4538418737882206 3.494483790782953 2.0427885680326074 +4.145063793152255 2.2037931292714883 4.456940932345723 4.728181263139197 1.9601283395464255 +1.572192275774241 2.3755272566889585 2.6065926021226353 4.076314759456707 1.6749418829678742 +2.5247342951772533 1.0964580729982591 1.210642457027864 2.1739167262559276 1.722750790044445 +1.9658697184334009 4.390541000399574 3.420787849762489 1.4897467364085926 3.0996694351260334 +2.372730578491492 1.2709272309330943 2.7062410329701456 3.3421879788720745 1.2721631714103665 +2.367958173492094 3.042945881436575 1.0546196144651825 2.6777277454868162 1.7578647305366488 +1.1630185543809715 1.9536274854222593 4.128711513740711 1.9245900018679882 2.3416263837218665 +4.051205229939594 1.2172836241287706 4.333434094790812 4.755785465806455 2.8652211692084415 +4.844090086586883 1.797009060194719 1.2153957890677862 3.9117362146242995 4.068778007201844 +2.4383608256941054 2.5975358539905575 3.393767463703956 1.7864085270776062 1.6152211739528943 +2.2959838615089305 1.2378625393173017 1.1190414818145054 1.2535509773264346 1.0666365533111242 +2.00202617876673 2.890375692560085 1.1349909277163164 4.87025347781066 3.839446727953676 +2.859791208956542 1.9473220874781236 2.251534325053868 3.515386979247796 1.558821166511615 +3.9220728165264123 3.565027059113735 2.005343657717919 1.7416673013056045 0.44385458634249386 +4.324694060373526 4.257476393511527 1.856624046196528 4.804981603367072 2.949123683344431 +4.53090800006815 2.508613561403521 1.525076993928026 3.0133583541806614 2.5109074463088685 +2.6062793611141704 2.144353183509996 1.478541202743477 1.2573629909100075 0.5121480205427476 +4.627057714121151 4.831545388035289 3.474806650120612 2.743563040866419 0.7592973230941313 +2.716787900610278 3.6934085336529248 3.036697436502187 3.5593346011749225 1.1076720935284847 +4.999697930631999 2.3431858853458154 3.6662508377514116 1.5741021153932446 3.381440894532314 +3.643495482669405 2.034079768779044 3.41560258858068 2.1597477331685293 2.04141871206754 +1.6602470698113634 3.9799965273525415 3.625388026002709 2.8690452162580344 2.4399368827113253 +4.83189783792921 1.4156548220844702 4.798016976406755 4.4517804820077975 3.433743737287575 +3.2314934580291905 4.942801842217779 4.8522489586201125 2.6826207383783607 2.763306533822035 +4.7875078616995985 3.4539756971445206 4.639743801986022 4.9252773374470635 1.3637585687268232 +4.746123455479992 3.804365662819 1.9107121061686363 3.214359338902003 1.6082300356140191 +2.829754434539014 4.977481403341134 2.4289791839626766 4.942767533622398 3.3063367946119593 +3.8452259009502865 2.341893087716159 1.861684549904179 2.6660155163631694 1.704980308083143 +1.5551005277102106 2.2029137495916515 2.2074650946254795 2.624701047951521 0.7705503300838328 +1.613727345760911 2.9314234653188826 4.105489919764295 1.05056794929813 3.3269913298857596 +1.848465681396978 2.87430698327561 3.0564748544108116 1.5520146146665557 1.8209203688276405 +1.2350551844969657 1.7042023260757961 2.5659641083350992 2.5814676580304514 0.4694032387028698 +3.6277837162601383 4.963631780347915 3.143408484069025 3.7216091168281906 1.4556119063988722 +2.712317934628618 2.215962410902271 2.976296081897609 1.195128004910221 1.8490344843762667 +3.7676831703877296 1.7894690737355035 1.2370097149899966 2.9518977409499567 2.6180473551436063 +2.6871205383247467 3.540105655677431 3.962160124020851 3.5145557222659862 0.9632929517522191 +1.763414173911571 4.642881484524958 4.585463157191819 1.1288716853640528 4.498817244121341 +4.739086640627422 2.0150146812930583 4.673233916959269 2.3870715514697367 3.556277042218794 +1.4081412801992084 3.9619565875052674 2.155991860033245 3.8345024032960873 3.056038328894987 +1.5795267945717382 4.789200972031382 2.061039178993206 3.1786334894543034 3.3986799449530776 +4.450606056263101 2.8990371122711 2.265632025824859 2.7338035373392158 1.6206636764468108 +2.043910248232994 3.186279560218085 3.3543112862652666 4.474848467488862 1.6001909946846378 +3.0700249113876112 2.608777924540717 1.2165997833354472 4.487900107096542 3.3036577593804695 +4.2356986065953866 3.193482505559112 2.797453518196207 1.725750430222599 1.4949120074544255 +3.4492758159788415 1.8382064820714037 4.690788347463254 3.932075474948836 1.7807834291614562 +1.8837512792054452 3.1422346514653974 2.163223474982262 1.6767554971308072 1.3492336683205266 +4.680254004045484 4.25195246600555 1.1116504207629223 1.081738573300449 0.42934476368763497 +2.4161292808980535 2.2887907483058543 1.2089742901432037 2.293001846201139 1.0914810324397186 +2.802358677773269 4.469526328461594 4.65738383403114 2.8505078803380144 2.458505376755575 +2.0379742745884815 4.157055343538978 1.3663855715159134 4.677943816678239 3.9315292937846666 +3.045974962994504 4.123340931878721 4.59990791196226 4.1828634810706475 1.1552677128040654 +4.170480941778048 2.842225553874837 1.6615076516432143 1.299030107060596 1.376826912077387 +1.6352925132722902 4.777855771682775 4.4998920513576675 3.5242659966737873 3.290524279152117 +3.376218767468772 2.941988944630893 3.1724194114738933 1.9765365536773847 1.272278015456276 +4.463581141692329 4.941946084836841 1.5110144714915883 2.9704926459928616 1.5358742007974553 +2.3714684404992554 2.2126454779498994 2.194382958228048 4.325704756986921 2.1372312329969616 +3.146742474608267 3.169789628941757 3.6645966818301225 2.2570538933254745 1.4077314633104967 +2.816359622171316 1.0285708922642298 2.1270308696414832 4.079986776190802 2.6476830089171672 +4.596476204374217 3.5061709468940605 2.86295630105222 1.440200094212873 1.7924845267362164 +3.040326697389521 1.217050985869328 3.1059495033908826 4.131327889144687 2.0918257944175336 +4.979292143467328 2.3403728828413266 4.052837771675194 4.2019122630407795 2.643126570574854 +3.710871054591659 2.395738604482624 4.968987605648141 2.0825376842436114 3.1719341906959557 +2.090086700109214 1.6602307221860326 2.206872999052678 4.109314620120971 1.9504000316163985 +3.2184845900613204 2.3663994242004005 3.9638633912805408 2.7281457010968357 1.5010154362008348 +4.672052207759752 3.3720080121654856 1.2257023124398674 4.944229703327014 3.939233538047258 +2.3531249541531016 1.259252476519606 1.1373563195924183 4.519554228785074 3.554689816885745 +1.5260937862668587 3.3502825634969597 2.3274553526629074 4.344802225449451 2.719807548359607 +4.70229017509429 2.8449952043571662 2.4657028955395908 3.68985358614335 2.224430156608895 +2.98564263889527 3.421453313722404 3.7929061256319954 4.306377527710458 0.6734863213501104 +4.632297386009 2.0826781074335794 4.111667022772146 2.619425965038459 2.954207480876995 +3.2954103841780458 2.3191028981961406 1.177093765454217 2.71301523191952 1.819953586862378 +2.315230935069784 3.1344022680618155 3.9768183583559917 2.440608080984232 1.7409720529343833 +1.0702589349969611 3.502465047338206 1.0821241165769924 2.8310774263636937 2.9957410189674225 +1.4915434697332222 2.606792815953322 1.9928116556614701 2.1883413889515144 1.132260120663461 +4.816789476791202 2.258883185530817 4.658939016872484 4.514749738898923 2.5619670456022643 +1.035021632598692 1.1980613599045484 4.468100687048913 2.8802930316992965 1.5961563529513056 +2.2596419732068145 2.6823788662447776 3.1552118788814716 2.1439995995485246 1.0960185922734724 +2.939533137141588 4.501410162962758 3.333096767059607 4.908193954143732 2.2181954360579472 +3.391797453554194 2.2077201580547325 3.4978458667945946 1.575484130116188 2.257767412370579 +4.208350070319313 3.088388717860466 3.628325734605065 2.901058717679397 1.3353766303591696 +1.2930929928136203 4.375046982189954 4.9605273739191 2.9733285522547024 3.6670696133911975 +2.166203401249292 2.3655659874708976 3.514016358392457 4.547796591956794 1.052828101872904 +4.866732845686352 3.298330351807641 2.9410738513903505 3.939941894668502 1.8594686742957742 +1.1710397936326866 2.870152389304365 4.014841833677513 2.240053261596964 2.457001849481978 +4.096337450066089 4.830517961543862 3.713304534307486 1.8473068407433062 2.0052352519893026 +4.301516639049007 4.536514512499338 4.5395430162223676 3.040198715066804 1.5176486200480803 +3.497165486104098 3.523748909680537 2.0605142227998434 1.3734164167519314 0.6876118625248538 +4.3607863357114764 4.220078056143591 3.793914595169427 2.736679797436716 1.0665571890320187 +2.3399165014128793 1.2656315613420053 3.805366251536757 3.5553094664007805 1.103003412621929 +3.5005915775521244 1.775276712268186 3.435466222180052 4.573256988152279 2.066707335715776 +4.807788173146933 1.9587736787890542 1.7353160493632989 1.089847075288366 2.9212178599951466 +1.8308126243497242 4.891964919721678 2.949113415329733 4.380954940930187 3.3794708949619343 +2.076529597757357 3.3205060412534997 3.0003210918636567 4.094262037435405 1.6565579326940916 +4.6063197299168746 2.933242259752585 3.4647972173121477 2.7497401231290755 1.8194765371152435 +2.3704608119997896 4.359709697964912 4.591436269247021 2.629544832490318 2.793945085346661 +1.5891125047589023 4.132896781397081 1.7749236966564803 1.783094732361819 2.5437973999310795 +1.4069984134218863 1.2300720045806317 3.198617561552551 2.445982065547794 0.773151436648597 +2.292050155341128 1.5386739430496164 4.229751669243846 3.5126474411795576 1.0401029714188803 +1.3587393965967274 1.0760640775910404 3.61759341675354 1.3921318631194177 2.2433422526842772 +3.2738879678930393 2.6224509948439265 3.7425656190119545 4.2326808057446295 0.8152196183369211 +3.196603703726034 3.8776939543106272 2.4104176773705555 2.830237379534998 0.8000828155677544 +2.183039317117248 1.3972601094542947 1.6249872594040773 1.9837302909395182 0.8637971555120201 +3.484420365557165 4.833447586657491 2.053187622301744 4.257846894151266 2.5846463874622643 +4.175523619789937 3.6956354363676898 2.209008940405367 1.4892789245139237 0.8650456429364879 +4.6053341470246885 3.040514857150826 1.6699268698561731 4.086973312473378 2.879370229013599 +4.142081875670671 2.0129679082292498 2.317661509211333 4.557056355652962 3.0899863372875096 +4.4911840022280884 4.678795073691923 1.7311906286626995 1.3626756861335068 0.41352288570658596 +1.8589838139438641 2.6615323256600982 2.1970546002587694 2.6884063154943507 0.9410157393598102 +3.10544308791287 1.2817227285139476 2.8698159773079888 4.252311634030601 2.288503919625881 +4.4430159793136035 1.2781429555280086 3.5380715587624874 1.6476607907254848 3.6864717723856266 +3.3968993523862143 4.96331345362395 1.5752848696184785 2.0715243477708642 1.6431392990959033 +4.73880605671176 2.97340026673129 3.5908036602501454 2.1475043995587377 2.2803004975680135 +1.0264482452924146 3.3768757968323158 3.8746316464454953 1.5671250936294228 3.293796618846854 +4.568691740286752 4.749932400996068 1.6687756580272217 1.3843922104557964 0.3372271079657726 +1.498071159833541 3.8148877337237193 2.3567113001163835 2.8986621059570883 2.379359097110735 +1.226427680575485 4.0741551273753736 1.3668725652324771 2.1147093284934826 2.944284537157051 +3.247568153292856 4.113275534008786 1.3331081271851914 1.8362779975538341 1.0013137307921196 +2.3812391380202738 3.9933225026811945 3.599237969375098 3.474951594298795 1.6168673036604093 +1.9851751137782827 3.2377119912643875 1.0928288231698153 1.2157667027429073 1.2585556609449458 +4.469964021627318 4.020287819140994 2.0851118082996942 2.2992943911617716 0.49807917632038384 +2.3309420420112246 2.2019877706164857 3.6773165243834542 2.1550082576444622 1.5277603421652304 +3.156196355618072 1.7271744812810512 3.817525629283024 4.284593723775194 1.50341482040927 +3.788096236957906 1.0587420637796892 1.6169909856935951 1.62911579419805 2.7293811045045757 +4.33222768710075 1.9899228941251148 4.946671434466463 3.8736737640240104 2.5763764755896146 +2.7858241787680513 3.3440229722233843 4.3961520050322225 2.229394600850073 2.237503864039827 +1.1447544406611403 1.1095723226017071 4.516953269981055 3.676960945972958 0.8407287825593176 +3.586223261191778 4.762655559200841 2.786159174075269 2.1644274924172793 1.3306176144092474 +4.843540523808363 2.3936190087292917 2.315597904528904 2.4553800273204653 2.453905962317922 +3.4827542558636146 2.7659900674741578 3.9035114475905717 4.308684944584257 0.8233568269126631 +4.537360508261832 4.724426320263283 1.2121928812345417 3.4799316265322995 2.275441195668306 +1.4745206156331463 2.1622833734584397 4.111891953675774 2.232638117650495 2.00115281557086 +2.9244985066898592 3.451418880157352 1.0630773376261389 1.6203515868155915 0.7669417636201529 +1.3096754757210496 4.521128675450187 1.005925871723051 2.7034862745300727 3.632511937382843 +2.0105745216127624 2.2409349158984764 4.414869912002608 2.4837328062846247 1.9448281241118197 +3.748880195782681 3.7012377253215396 3.511870989062251 4.817232432314162 1.3062305701982149 +4.200339185282997 1.2416065054697527 3.8589107995793004 2.1436150861746723 3.419991002183947 +1.1279232000604318 1.3524782056570097 1.4973093988787975 1.7489591261903765 0.3372721983716879 +4.738365369102555 1.950137231340337 3.8657939215233577 3.9599760678260205 2.789818349801854 +2.3765143525631496 2.539237650397854 2.8777169346648117 4.888846252433 2.017701663885159 +1.8290706009008333 1.2038602096497044 1.0080762261540097 3.474657902198512 2.544585073823804 +1.8074070245046592 3.94621000231992 4.649848280250924 3.9438306185478393 2.2523186090222933 +3.844909969223245 2.862570297043979 4.1523187079007515 1.3572044177360967 2.9627107733661635 +2.366928348895308 4.38771507907583 4.70055159359155 1.4643370788292773 3.815319566488723 +3.3255144027659105 2.6101365519615554 4.468296781621335 2.071042269422387 2.5017183425956797 +1.2566642522706029 2.4400837562586273 3.1126768615755505 3.3666695717302377 1.2103693730555911 +1.7698451267796274 2.362610830199742 2.7014651477289386 1.762087461823136 1.1107662291989633 +2.063782389691102 4.325720979110764 4.563914986819633 4.451920962579858 2.2647094391491436 +1.1114969366179026 2.5294090524715407 1.7177779721776747 4.3401355805882025 2.9811464564279837 +3.2909784016060035 1.3426508462811553 4.552312263404146 2.2727069139261253 2.998763213761118 +3.6647888322491924 2.636265056241546 2.5408198232518804 1.3187224659980572 1.5973049516043598 +1.5720177776040094 3.252177600655656 2.7111167359906836 3.941204550409974 2.082319154735836 +2.190186264728698 2.2443812700588164 2.7443866179843655 3.7800393691124494 1.0370697756283809 +1.2011894354150714 1.2207549630829844 3.7611738487816098 3.2091786225580363 0.5523418684533501 +4.249614273325841 4.320542304202661 2.9162287957743556 1.1789951758858153 1.7386809470501208 +3.4997761223171984 2.4895532318177542 4.472728749053347 2.417158747742683 2.290396978424783 +1.1665036924431678 3.444432270263224 2.0156655470590894 1.6905133353295017 2.301017724060801 +3.3975790846479543 4.956340213497056 4.593607029133258 2.9542346615451542 2.262140140756613 +1.4613443009470264 4.932369402500296 4.70301907634183 3.396998381629637 3.708598833876401 +3.19751808317758 3.477643660874226 2.800999474796003 1.8949288626748415 0.9483850976420369 +3.792197682987266 1.9976906539049644 1.9880991107847428 2.753391522613072 1.9508787643079746 +1.5220227035248008 3.707135990568697 2.9604620707614115 3.547887285462736 2.2626949551547324 +4.645117753119746 1.9384122992283386 2.1051337206141945 1.1385323016919027 2.8741212078108465 +1.202674060561793 2.694692827670205 1.1694376713514658 4.625883952766693 3.7647232166140525 +1.49407362564869 3.719502391538967 3.8274176225133085 1.7869894857770494 3.0192515915764497 +2.10380409567621 1.3901180283586032 2.399371494659173 4.952361389987697 2.6508687648265084 +1.9802395049325243 3.9035769797577 3.5447441028477016 3.4891273345168465 1.92414143632594 +4.544426056681479 1.7054847331720002 1.1533194687602126 4.4895140192979355 4.3806143310462 +3.7118956855711653 4.249895180641044 4.159780079493151 3.368521590585725 0.9568351231865956 +2.6872834173971087 4.828058615377872 4.327311104842403 3.7198891546056543 2.2252819762715443 +1.2075771512472397 1.238847729040517 1.292642447181517 1.2081789938315368 0.09006622001244245 +1.6371436470630663 4.8697010060087305 2.3946042967097183 2.697023320379246 3.2466728114719223 +4.520535930571528 1.1888148190967125 1.5638494578735713 2.368599605924807 3.4275338605819003 +1.2949282711861794 3.8085570212363997 3.2322458072062643 4.4428666090756845 2.789969931558043 +3.5312169094644705 4.292140635596025 1.72451798921937 4.203174484020111 2.5928252806943672 +2.8167386312046183 4.5950697716801345 3.810103627429536 2.293995409985025 2.3368880529857914 +1.8912846653719222 4.896349974977859 2.0586554829672896 1.9316621179339366 3.007747467750496 +3.856155384896289 4.297035594440221 3.1875187536865393 4.744410919447083 1.61811265830722 +1.642013267480705 3.796591335389488 4.904550021500017 4.9012450763810875 2.154580602663958 +1.792571511375074 3.0285531863764223 1.6494789337460762 4.731837426092601 3.3209312814751044 +1.7305755202083537 1.8626707796562472 1.6771618736063014 3.9984996168978295 2.325093132758 +3.1976378451900054 3.335262244439925 1.3571150977383284 2.0209844932270213 0.6779845496288421 +1.8499454116457739 1.378544889770406 3.317511796232881 2.5960608641661262 0.861806184361866 +3.481974174785149 3.4345292602543926 3.279318714240975 4.195365219121725 0.917274342287556 +3.822202168820342 2.635415968686526 2.89821005830774 2.5174626045518087 1.24636676318397 +3.0418166043892403 3.3570133437691556 3.7115905922224983 3.043613988234316 0.7386079663741216 +4.567089183842353 4.799659594437727 4.745496386663294 2.356242570093618 2.400546353619789 +1.0262627030153482 1.3964746681486524 2.178754001919767 1.6844202087578455 0.6175943637936767 +3.579404830147883 1.8823040869253842 4.8330307989428976 2.0055956942552013 3.2976567747215113 +2.507345649516784 2.3991383296447393 2.976442876096852 4.6349862014701895 1.6620694288188864 +1.4821226907716314 2.203577601111385 1.134706843218277 1.8285070840914694 1.0009275507693058 +2.7945696946893066 4.648374136286357 3.97240488067638 2.8516954774533914 2.1662364769704574 +1.1163799732279633 1.6303396491473028 3.741356345692113 4.444178802805715 0.87069739559408 +3.8391904717403076 2.3734975036678994 1.8405356491020877 4.668485499817937 3.1852089782023247 +4.105972887778124 1.9818599660447949 3.65986321568487 3.9349691097147104 2.141854093351006 +2.001046709758085 2.981781810366198 3.2547498631992475 4.8863952544050235 1.9037090166850226 +2.575667147409701 1.4961574980642878 1.8665708745765364 3.9432192497431813 2.34047207996851 +1.2985916902479753 3.3644639925541435 1.1673570952101597 3.9535957472564496 3.4685665909122334 +1.170017674685894 2.906295096057937 1.6640599352129821 1.5042032157271104 1.7436207886840347 +1.8896292704475592 4.4141550596087 4.743844864057818 2.711018877833003 3.2412361762775905 +2.6939449553434978 4.136299313235001 1.168859734700102 2.9458921988529343 2.288718084950984 +4.976147920643188 1.6911145591041192 3.302508939867439 4.81288099763732 3.615614462206486 +1.2941468470435988 2.586214383191319 2.4919312448574713 3.9274575298387235 1.9313658982282245 +4.057742126429856 3.814155796607901 4.020067855998325 3.2122728416815574 0.8437221611592034 +3.18016668427701 2.1399804676771645 1.6911205854067983 4.053837359039097 2.581553392360444 +4.605709169263576 1.9739365872991326 2.4891251318143865 1.468363088779884 2.822796852711821 +2.1305426036969224 3.8464265866497427 2.259143060755168 1.4251201500340422 1.9078396312483323 +4.405562629742375 2.271880216224029 2.662813585697902 2.7837310804982796 2.137105912748892 +1.6329340141753743 4.149921375347022 4.943523943285846 2.7134840853588944 3.362782054228414 +2.5189509963075585 1.1500591926796888 3.743394523719586 1.9345191020326205 2.2684565372126393 +2.3242675865267137 3.279143013561913 3.7630861212541236 2.6460413116743666 1.4695496547462183 +3.550669045621408 3.5252310187146927 4.466983015170403 1.7093531823371872 2.757747158124663 +3.79098167830531 1.711679815738095 3.188062832941687 4.968616957345384 2.737493237545347 +1.3730074930962481 3.435248221831724 1.1808427041209795 1.5795119175504806 2.100422330149802 +4.000730832948815 1.010703759331332 2.4517219818211866 2.697984083435269 3.0001511501350913 +1.1172652206601672 4.175202772313195 2.7612942423142752 1.0517087881732445 3.5033790110149816 +2.539861157354339 4.190228966781447 2.92323265387962 4.150782084602421 2.0568401764019257 +1.1324844533201266 4.821008358475615 3.024251021197798 4.169830887446071 3.8623259609795895 +4.470025762785339 3.8302915091613765 4.270960196628646 4.742026005645707 0.7944576210753508 +1.271822499984721 1.185954076367151 4.233926756530423 4.796117158852097 0.5687103257697833 +1.527814493940371 3.1642182931737066 2.9643724261938806 1.7801315778802436 2.0199613315506553 +2.029720371402029 1.3075655962550288 3.8995581568182227 3.2809112908251885 0.9509108602127844 +3.32278169636422 2.6727292387260855 3.1132745357650546 3.6549647826011844 0.8461657764284526 +4.244478556877633 2.7386277637021124 2.0497514573554705 1.9829670081138668 1.507331010086321 +3.4885065805447604 1.2534560514571926 4.424676784177173 3.949374891039494 2.2850301436074925 +3.453368852964033 3.4261012441373784 4.908012400167365 4.741951426503389 0.16828478679117484 +3.3707518064650204 3.3775745547244926 2.8156900955915196 4.198269213121665 1.382595951868892 +3.7043237709546224 2.7748915067400524 1.9618181398174115 3.686697215608364 1.9593499329789137 +1.9861688108111064 2.4587835218362115 2.618928930311125 3.855553002107877 1.3238594185277084 +2.0052554897296204 4.488564759026021 1.130450525843509 1.6244221029694073 2.531962252084669 +1.0612435709202463 4.632501739778721 4.129963656570784 4.137416392952053 3.571265945280183 +4.452889529293255 4.2998941719320305 1.3239320764384739 4.396684420719216 3.0765588810645066 +2.289094929907365 2.4344707013268976 2.988626284490722 3.193864010805686 0.251508725929659 +1.4639719847119603 1.163543662318085 4.164586188149619 3.773169120134133 0.4934212176530698 +2.7594993495084714 4.429517193453993 2.2367473271335943 3.496995173391638 2.092172132759273 +4.232822914309272 4.786114471844556 2.0248339844294274 1.9416946929351195 0.559503073655539 +2.4032845251811366 3.126584096019357 4.5772765451317845 2.308522538606358 2.381261642764173 +3.942901368686543 4.71337757264787 1.3753134970913825 4.500365401605738 3.218630607382503 +4.215907116358373 3.567785163460619 4.581476768417922 4.61887132228363 0.6491998293952441 +1.7556286419028555 2.3814987597313872 4.91220544648499 3.047071632636853 1.9673427632088913 +1.2067927002514631 4.072129467893989 2.2118823985550495 1.4570286151190746 2.9630995640328597 +3.2910744771533493 3.812697802036387 2.72571161257848 2.265588508561084 0.6955603237050245 +3.7828221782725415 3.4883101115311095 2.3468970658396673 4.973506413050847 2.6430690532624097 +1.0532245948383991 1.803784823049455 1.5753029229656037 4.6071830150888164 3.123401599087971 +3.7861242543537905 2.531828913094377 3.9040604294003236 4.729720466144109 1.5016561854768278 +1.3432015622151852 3.114148325028927 1.903594086800802 3.4085245594910054 2.3240198287346927 +4.318193812903443 1.06842818376108 1.9494684921548715 2.8623504529198436 3.375548861836421 +2.9678383724975443 2.212834226904532 4.5254122650884625 1.9652232739641247 2.669194434681912 +1.2981764659876665 4.120789848507344 4.7806014517111235 2.9045129733351027 3.3892262075397723 +3.706995380802361 1.1181276403595963 2.4152310540011586 1.1817779224649763 2.867689454107895 +3.707554885030624 2.6826068382127732 4.110247495003703 2.664244161341802 1.7724119553978013 +1.5016802600383579 4.355302159354707 3.9355153811971917 3.6569698573738596 2.8671842551708924 +1.3489491939027731 3.6725769927355527 3.4544956381868452 1.3762615072669084 3.11741932540828 +3.5171314506887184 2.7217016310360735 3.762942098851982 2.6723331689840406 1.3498653399137024 +2.196293754421396 1.2112244628740467 3.18100873529052 2.7306406139665236 1.0831403204823011 +4.449648092037588 3.6119228556088103 1.3665602657325318 2.4584853315188546 1.376257214710287 +1.2826800808859375 3.733801007496964 4.996298996873247 2.0240518630551927 3.8525636686964875 +1.1078314384101247 4.83511157335712 1.4998281643314186 3.8645884907428227 4.414148684145094 +1.6993941380544766 2.554833423904706 3.2051156113352666 2.057117960190146 1.4316685995057181 +3.4374749609196646 3.832777366191134 1.598427737172941 1.639077769386621 0.3973869861135141 +2.1782499827301867 4.665764744996572 4.605381938384053 2.3898403517243443 3.331119063424754 +2.775320100539401 1.1623242899458748 1.8901528336619013 3.2839790887022473 2.1317849596598766 +1.8782219466605068 4.804727365604817 2.2148925878415997 3.4645603228864577 3.1821538955749076 +4.635646560334354 2.727584873247143 3.0953875328875333 1.7245176096223584 2.349464566288064 +4.292497693332876 3.8319948878312977 3.2931940893036415 4.159527186822149 0.9811197020398862 +2.6526135078989013 4.719571661650401 3.0663493616950324 2.275337432180336 2.2131461501659517 +4.272007818281011 1.799468093963367 2.7423942545706153 1.1976840148447132 2.9154043309707194 +2.2941298419348968 3.3786067713002397 3.514646386031077 1.712565822701189 2.10323193372891 +1.542726589773729 2.003306746863693 4.267503068418618 4.434207429794103 0.48982080928297056 +4.201077782752435 2.8558678301728855 3.007662859266835 1.0117252114924118 2.4069393241879555 +1.9887201933623042 3.4063757847041876 4.709117354703636 3.9787338327627175 1.59474369877599 +2.96240288950865 4.502694753038437 2.008133681489472 3.6645442195098212 2.2619007262302486 +3.446409457628434 2.2897917378087205 1.8003630093735703 3.1225645703939997 1.7566961939293355 +2.8557492015165997 4.941945345087671 1.068677277706826 3.1499398670261893 2.9468403952625515 +3.606106354276169 1.6842561889293912 4.147522075524805 3.3472992572558864 2.081793605745221 +4.932387245416061 4.977528449445995 4.4029277679545125 2.091791523740347 2.3115770520624297 +4.77290956520641 4.923390339107627 4.516081303293184 3.435181479523297 1.0913243753988462 +1.7055243136710683 3.643028903390547 4.119222196418242 3.264066944636777 2.1178325098632014 +4.138486604951702 1.6565854413123424 3.0617548933173553 4.556447479501493 2.8972295927779412 +1.4346882427051657 2.2652487265079144 4.287775833216621 4.51483007469495 0.8610367854092851 +3.87922187864162 4.830241294229211 4.814162567378963 2.0049899341515443 2.9657863733078336 +3.789656871965582 1.1012016404976395 2.124172253628703 2.2848083563851382 2.693249986376334 +2.81157395620755 2.380938239114089 3.2011230523898413 4.434933242057664 1.306803238810169 +4.333301451358478 3.9119601602186638 1.8606862112187788 2.5744096998244985 0.8288122234902698 +2.126234140453193 3.294162536721481 3.7613644573836456 1.3728303050561794 2.6587877191766367 +2.782137722454664 4.947987229869161 2.8467922091530506 3.9074488746585927 2.4116170199368216 +4.720037477682438 1.5696101725050013 3.530782174624109 1.3758059896146118 3.8169509511081814 +1.6590362138732808 2.2385605787116374 2.397096026593475 4.949751723749602 2.617613339984523 +2.1263271508330153 2.472279950503352 2.1069930268337953 2.176889557369373 0.3529431463857246 +3.2070381045396186 3.810636504132868 1.979194931720666 1.725958162506648 0.6545684756184688 +2.922921498712851 1.6507745958819107 4.44011309863669 2.9823064662718277 1.9348276201639607 +4.31546186043172 2.581985293418876 2.2888100784612373 4.5674788404403905 2.8630879021088824 +4.760948403433702 2.321521497562993 2.408171421684356 3.8572295271109183 2.8373531718819143 +4.399170979320473 4.419688508319844 4.368697329160401 2.612235820095381 1.7565813393700869 +4.993097176721244 3.042256825232693 4.747481045176784 3.5385592906413486 2.2950533513591815 +3.2245898680427105 3.214863903814043 3.3227872657534787 3.0421265960771318 0.28082914001818415 +3.9505969292172107 4.8786605053542 1.3474704673230717 4.348782691206015 3.141524640454274 +2.446560626181382 1.096696110394666 4.709901174024807 4.294670775815714 1.412285557023433 +4.589991163131073 4.275767052317397 3.712480193320362 1.0527273644501705 2.6782497834406023 +3.4827036329499332 2.5471737095413367 3.544743326710261 1.8712850891194024 1.917205964562388 +3.051592627325318 3.660484232925687 4.971366719566822 1.8016242914234595 3.2276951603493744 +4.095330283916926 3.8685479525740685 2.6767230468929544 2.9371600797085655 0.34533704387323033 +4.557578007283562 1.0512288563104177 3.2480146574793034 2.4446416755446703 3.5972062099124416 +1.0045272897884492 3.0308479154654804 4.374182150568412 1.8338622635967536 3.249492330532241 +1.4838714222299068 3.620523801522554 4.884310095247876 1.4903179431820637 4.010544366818706 +3.8295999113528 4.987774655231476 1.033190169241856 2.825262412911391 2.1337506095814476 +1.4103265199097845 3.286768435374967 3.9873423916803077 1.686217270509926 2.9692105155067816 +1.4392929865094328 2.68892898811598 2.791063403615217 3.7136541328226964 1.5533073714274284 +2.8650472100852635 4.638581497138523 3.5347743821022446 4.158579754795451 1.880041757609235 +1.4915309050578278 1.2051916095149493 4.460707726860846 3.941319006282691 0.5930892304163052 +2.7955640044098415 3.3421818507541383 3.979164729078589 4.8509210110305006 1.0289558226982818 +3.6355087433951403 1.4034801337344303 4.373457979485314 3.201873184447242 2.520825786584294 +1.2337036443383527 2.785918094796485 3.2795344212133886 2.2706945737231323 1.851250263496323 +4.706762924221193 4.095415576835867 3.7419138329485033 2.845745842463878 1.0848330038878453 +4.941712471446061 3.7071696740516593 4.075056476782128 2.0262662134233014 2.3919944527177153 +4.45536411604327 1.7181709288558231 3.4837940384709514 4.619336747756762 2.9633905899488737 +1.39565603398633 3.6716376194140365 3.0381459323391793 2.6081749085835617 2.3162398965727777 +2.5060023025206766 4.8415540049215675 1.9273707885296485 4.807504046071739 3.708095108783985 +4.600486154343342 4.407778242045923 4.981283166240598 4.308526387839686 0.6998128480861169 +1.8958376208312457 1.1593623340021484 4.648314525917893 3.77402312797058 1.1431453523654236 +4.75973853971475 4.5480513247692205 4.987177587671391 3.8505439649431454 1.156177957447611 +3.6985800623045173 3.778573622134213 2.5515855445083284 3.0706978887388527 0.5252395601501638 +4.297487978552965 2.488361305767278 2.314924931990137 2.7902332474679925 1.8705232724954286 +1.7773310258192638 1.5609205267704507 1.169114578459053 4.222614531231692 3.0611591702623144 +1.633147232828569 3.46584525394049 1.2841644934528769 3.737045447154927 3.0619286421505367 +2.761784903279631 1.7645008444489525 2.10859918933567 4.497034493475063 2.588281031120312 +1.7334635150834874 3.942479268496691 4.12329312744011 3.587042475611039 2.2731729719523783 +2.4403839398648626 1.3825642752123102 2.269670441972841 3.8783629528577697 1.925324397991906 +2.3392302468669675 3.6505553192867355 3.776632866997813 3.1992403042862625 1.4328138808063389 +4.9191886255285215 3.296192431936083 2.3383446939125223 3.9074438188568634 2.2574739662544596 +2.002517376443769 1.787279961754642 2.595985736059844 4.1364307107705995 1.555409227436201 +3.716164465362322 1.4327815185902653 4.617116357432046 1.206300862901582 4.104570625453841 +1.1735328268298346 3.947578294347605 4.913314517666682 2.7987125820546397 3.488104012490178 +4.443735920870036 2.288909482766258 3.3002274672784417 2.4549736553725365 2.314677296059319 +1.2084379643027034 3.852455544797993 1.270418633694809 1.1833218200562627 2.645451723414009 +2.736908393675131 3.404484921558157 1.8908190553571993 1.726582314378394 0.687482456261755 +4.54782652628932 1.3672158538178771 3.1574522799363267 2.7284186239693717 3.209416477771562 +3.1078484278610117 2.4776505079162487 2.7234690142503877 3.758264582296751 1.2115903952867493 +4.625368708332129 3.6436327441048064 4.39615169557811 4.92347529358666 1.1143947597122092 +1.4441378874879809 1.15078644515649 4.803708244265181 2.4993716028462085 2.3229340123438798 +1.3371914845628994 2.9308906317898966 3.595812519086914 3.711279673932072 1.5978766021567792 +4.384662108243071 2.0149577623479313 2.129176174019423 1.6452687238481416 2.4186080929504854 +2.509777015950173 3.147020561386336 1.9291598380795807 3.05108101182253 1.290266040897306 +4.547674690595034 3.2474528537621556 3.494614764612477 3.811415612254019 1.3382599157276827 +4.325664804246255 2.332585280454971 3.2790649700012047 1.5494500816481893 2.638926609469938 +2.152187631931179 2.0990710084361 1.0167139028276178 3.9562020408828587 2.939968008237332 +4.520960089364806 4.0741195425769 3.1978807565239062 3.072063012730777 0.4642160907453639 +1.4943688163945188 3.512619852794094 3.654653565071527 2.411123385127463 2.370591604296209 +1.5824522664116505 2.01776686815815 2.2579453142205868 4.100341595777288 1.8931251571905312 +3.0133137182868848 2.2833907523835566 3.859503130714314 1.8505980007855132 2.1374020111358005 +4.86964315367685 2.086044961594251 2.0438736936855855 2.8549175692161928 2.899346661405155 +3.3837905343789276 1.637554055466473 4.015758382809451 1.7521571051535538 2.8588865987460883 +1.7173873400279311 3.7973659966534608 3.9265826657029708 1.11689808303551 3.495803007335649 +4.990379293862851 1.3496013469831758 3.726891499613529 3.251322057470364 3.6717067356729003 +4.848200157769643 3.249412838363242 2.0045507010042085 3.38487014808721 2.112203273525119 +4.276975598819201 3.07637785609763 4.3467941925078595 2.6040590632584664 2.11626101191418 +2.331531055676529 4.620511750637867 1.8204166494399443 4.280755425750511 3.3604612058649135 +2.9238098640504377 3.12961282296141 2.4849429670908445 4.6065602274062485 2.1315756278313827 +1.8514920286864842 2.2386137057253754 2.5702080180739615 4.696235553473525 2.160985024036619 +3.1559197354871227 3.890166664884021 3.958277334451352 1.9742407641588766 2.1155424045824995 +2.9237516413641207 3.2721624095898663 2.912717216366948 3.1335267642303393 0.4124886905641043 +2.317914990844568 4.076103003543669 3.3688047844476707 2.4939164781503083 1.9638367132973866 +4.560753388132008 1.3584172129035346 2.4036730488233564 1.9935737735406738 3.2284885619689456 +2.5025260571514 2.98713280459779 2.440873634452844 2.0903226153101246 0.5981051050547623 +3.2838338160469305 2.721006815864706 1.5890952757919563 2.7182506216755398 1.2616521023133107 +3.4718000751810387 2.0080763069820846 4.086853190629096 3.865731670800642 1.480331718271885 +4.037126787451826 2.0992465388832544 3.23383462342329 1.6007479659756068 2.534235957547331 +1.1340616581009635 3.96930789563779 2.9211613257681113 4.631335555210441 3.3110900202977565 +1.7540853444774251 3.9623023148502443 4.8939764681416635 3.8404759946397395 2.4466477956402493 +2.768760153535235 2.2138123189598327 2.460054001656348 2.7147719976833082 0.6106130989422998 +4.367010893486494 3.967405620465379 3.708131409124876 4.711591796230849 1.0801005150990108 +4.182263115074607 3.0084357362759495 1.6383048015454107 4.019459915898846 2.6547637171373366 +4.762064197977766 1.0851754031074603 4.007242835682114 1.644231351878517 4.370736148800393 +1.6559710761608075 1.0164042619594418 2.2165435904263067 1.547180692230683 0.9257928490264596 +1.2316685517161967 4.914958189409948 3.9783346153428325 1.2417787623773733 4.5886120441307385 +2.1217112956362607 3.3094960778701608 2.562850008189187 2.810414121803146 1.213309803494515 +2.9178337967752856 1.5025860905324597 3.8615278741601142 2.3457025823230735 2.073801433454618 +2.3763782645868097 2.6507941242535846 2.5253420656298062 4.418753788696206 1.9131941922036892 +2.0545523575164224 2.6034767859574637 2.921605052262043 1.7202938540906638 1.320782579757652 +2.170412659210358 1.32821122567377 4.861077772201215 1.964073360690929 3.0169417984046594 +1.0414479570107562 3.4760361077732553 3.2592926527046155 4.008016841673118 2.547117463914789 +1.9060985860650117 3.4533548728770853 1.1072592311651697 4.816000112005543 4.018552094759519 +3.760286068251664 1.4453745021704978 4.460918230300655 1.0359210358272124 4.133935333423507 +1.1900864303329821 2.4674449283883058 3.9423111635919645 3.728713934899421 1.2950940153746704 +2.5562892064787675 1.0090632218886073 3.171453005167841 2.501266538226051 1.6861370489562553 +1.791225029322058 4.996510461817671 3.711350720403593 1.8314770842221542 3.7158820745253225 +2.2189733475064464 4.0042467505091075 3.5894978120009657 4.382500468251456 1.9534723791978823 +1.624925842547361 3.3320794995994505 3.8593678973206877 3.067247081988782 1.8819747593600735 +3.5157804073875742 3.630256381317907 1.5592912231092586 4.310216858815456 2.7533064852632814 +2.4145698786123795 3.262327755536831 3.1816423272431025 2.770749871375044 0.942085998291418 +3.0977959007142744 3.577938252751606 3.0213894693239736 3.284022202159993 0.5472774712856877 +2.295466882433679 2.929800067389479 4.623706806969786 1.484630504004024 3.202526912514143 +2.460409319853934 1.9561490941308821 4.345787918885178 2.4604565271691308 1.9516026316430892 +2.8260580744653647 3.166570724106611 4.606014522684367 3.6629759510619246 1.0026318427685201 +1.8337197434916916 2.8644685214349814 1.5068886694671737 1.0806737799116162 1.1153932827977948 +4.205455154851349 3.6960528666445422 2.3261861688688366 1.1276356009844046 1.3023110822712156 +3.969618968091849 3.6560610741696236 1.0590789860827594 3.194217788316225 2.158039911040549 +3.365195041273723 3.4157788871268964 2.5668454875573605 1.5046458607713609 1.0634033912893144 +2.6658173505473535 2.3187980102868186 4.519947629825353 3.9427468523424563 0.6734858276472618 +2.2086384226880527 2.974651094482448 4.302359534769659 2.265371691009037 2.176257082464784 +1.4329377515060138 3.89801969384473 4.180884240389913 1.456006530971858 3.674450641079263 +2.181007346768745 3.985973224177436 4.991711506281316 1.6022826988547694 3.8400689393841185 +1.2256589923399703 3.01729140139128 2.1773165632163787 3.4860082095224447 2.2186979321832614 +4.885372844339905 1.9544139072894344 1.6346464808399617 4.653112465742579 4.2073337391619114 +4.578723747714257 2.8024374187586347 1.4772347160962211 1.0783203446218579 1.82052898856443 +4.095764230214489 1.9374891209014642 1.2065099438133498 2.5348322649752877 2.5342832589071786 +2.0281100740649847 1.9964792843791228 2.723758201124102 4.705691533465506 1.982185723059788 +1.7684351543013124 4.508363470116589 3.929210956462953 3.8191985572433214 2.742136011176032 +3.7746214381977787 2.0299674168146007 2.1759948063087156 1.6875744641407637 1.8117317916766693 +3.3508019888375085 3.7270839783924385 2.968887721721974 4.2801698758523665 1.3642027061270108 +3.7101405653507538 1.0016614717258587 2.407730606481796 1.3839845621206952 2.8954990871951822 +1.4349700854355905 3.9562084922328267 2.240160644201612 1.3338880315476316 2.679173968288759 +1.7514554771250426 3.6926636818986385 1.0032798889920458 4.074532379085994 3.6333016874722373 +4.6246895581406475 2.07843169478365 4.895578228459854 2.3746246005445864 3.58310428271443 +3.045811831546763 2.372853535500497 3.9474818937598557 1.295710144139294 2.7358300898087933 +4.790952751662276 1.7080275155993787 4.815231529929597 2.100579731284901 4.107768542534785 +3.6254649850958014 3.9118577473118874 2.84105930899539 3.712923399710576 0.9176970125964112 +2.5572538379913374 1.687115083953437 3.936633541904745 1.7309963958133494 2.37107078584694 +2.901528063245124 2.1987545546561784 4.905113418504651 2.1386177027226436 2.854363177630804 +3.2380286076744857 2.2648767808294217 4.330497067295908 2.233997902903572 2.311348788995215 +1.5360960682451443 1.5175951018371503 3.677919308937258 1.9062556448266927 1.7717602615725707 +3.479422129143225 2.560101113307162 3.6450229920973647 3.58903979012644 0.9210240219781287 +3.8893678120895987 3.485101844480801 4.502424666821129 1.4407630054610188 3.088236244397282 +4.1189415226222295 3.8908593308342483 2.9872067916729996 2.1696932706968846 0.8487342594649837 +4.50988471342596 2.0106260967743643 1.9728333035944674 4.926811206647752 3.869402936453417 +1.774786631995973 2.7309081790624785 4.8646612171948735 4.599914379075356 0.9920984331502242 +2.5207053219498277 4.229518418418911 2.78553740707124 2.025444568837167 1.8702361672791445 +2.5083534911456193 1.6318371263513511 3.765761253917898 2.1808532084987693 1.8111362318131792 +3.571284191494257 4.238870974822094 1.0209534084782526 3.556486924363265 2.6219462853861484 +3.7105716334211727 1.3532021663382738 2.6569180303869375 4.91911629789428 3.2672208076357387 +2.1516165144431487 2.2528898198602567 1.882275996505974 4.6066927891005065 2.7262984323366335 +1.534404339370473 1.629047546792913 3.220021498133984 1.363864641031462 1.858568162559533 +2.776029012386392 3.1641908671404075 3.5514728756343374 1.2091586365045406 2.3742589623535753 +3.76692604236178 3.1181618455799014 2.500003849837824 3.4049060719072144 1.1134374767054307 +3.8292151119916533 4.018898304350335 2.8521234156275366 2.78264550143236 0.20200716329945587 +3.038591474857361 2.7525039696330054 1.9302388855443104 1.6558063042007105 0.39643322558585725 +3.2982339787441446 2.3452124494822795 4.331215551642828 1.0756003611254026 3.392238243986474 +1.617599807537125 4.7176384143253856 2.1749440530308286 2.497354986842171 3.1167592421967405 +2.974135275003911 1.1057642675311437 3.99513202316007 3.661347823961617 1.8979520840103834 +1.0419630617723517 4.81017102705459 3.7789555392707754 4.019734731202869 3.775892727406855 +3.0010558693590625 1.0624438922970243 1.4886221845819185 3.8190848893934457 3.0313813379589583 +1.4421477992671354 2.0788207812191124 1.4606692551256906 3.6180169264244983 2.2493335592583885 +1.974270243819611 3.81868439484968 2.6428296216093696 1.5991840095974976 2.119212052625127 +4.480518475413299 1.2907284204095966 3.5028302568608325 1.1361451868643906 3.9718961234584906 +2.0403679086525495 4.639926025182566 2.6981893431791857 1.5135422757630579 2.8567623414548713 +2.87650355999332 4.210318934601604 1.064352219304435 3.9282345676455446 3.1592539560284205 +3.6254592535933647 4.345125615249142 4.625265171546321 1.431156286129101 3.2741794764490386 +3.4428992149655606 2.5062815667819014 3.714887443991466 1.4754471679676802 2.427415367992585 +4.215579507632022 3.524083970948497 4.274673509653779 1.7810760883328438 2.587700557806419 +4.209697255451665 3.7540635260176614 4.8288269384895335 1.5107419227700323 3.349222337639026 +4.65915860418181 1.172522731699821 2.6101688554947753 4.935645254862582 4.1909987104859505 +2.3198180862069346 2.143452682653656 2.771238865244217 1.4256848546004335 1.3570631345409403 +3.2780094059527336 2.2022977611187997 3.0668179646503564 3.293912965323158 1.099421521602114 +1.4683345602738043 4.7031718019251265 2.8242702515795806 3.1817479392331465 3.254529501655266 +1.8734817525170535 3.1231017182544893 1.5477622642165616 2.3756679863273678 1.4989923093443294 +3.1151312461319094 3.7138711478716195 1.3482204982711794 4.574651873682619 3.281516248653148 +2.854614673836817 2.0420346277322583 3.6721202294333635 4.074869776514889 0.9069142897769674 +1.2160057220871918 4.048647926068944 3.4250771175470303 1.7176849801466179 3.3074234332234127 +3.5589967849512147 1.4323717715104993 3.8022672520263767 3.4807500989592923 2.150792232529234 +3.340255880275131 3.310191792592632 4.5799238314303174 1.7940146339845664 2.786071410746862 +4.732740598231695 2.4717621143067237 1.891245027452495 2.9179226787299397 2.4831614334159253 +4.180100917852 2.2967099669075433 1.8921504782604321 3.485645300745665 2.4670604417781723 +3.6110240930254656 4.127247678484519 2.3432893393726038 2.142909498343709 0.5537498269751112 +1.6417491115265745 3.2731660406601786 4.946571683865353 4.103460529189395 1.8363980003808398 +4.439554473864001 3.2015170349713404 2.867272905440334 4.676117357068186 2.1919523147835043 +4.369964760420381 2.492091480242724 1.423532633623143 4.330461293752727 3.460728578130329 +1.22222794221253 3.7483302613487846 1.1816269943472046 1.9036756446584198 2.62726991003243 +3.6537387863912056 2.7320556263397675 3.4081635064736213 4.466830167344412 1.4036648269304588 +1.9122442646560098 3.867298919121803 1.9707690353622325 1.6946991366483508 1.9744501236861505 +1.485964588908801 4.532003239001243 1.3248881803909036 2.8509072982411947 3.4069173465027838 +4.661806829638367 3.5763608932498485 1.507302620033348 1.2719669070746815 1.1106645662017458 +3.9577028487107007 1.7487656415016302 1.5767894684488204 1.1579771500129539 2.2482898708721333 +2.3254451554491666 3.1174834963438287 2.9706587361299537 3.549066118708705 0.9807547265594854 +2.38565134684138 4.7914695152147955 2.654057180607628 3.613028734718081 2.5899010600539616 +2.5394123851054413 4.934524631731412 2.5123031651324146 1.4901492802755318 2.6041046903428673 +4.6498879661777615 3.9262693348826696 2.615233437119966 4.035369277006264 1.5938662827498873 +3.28768519396911 2.950361233237542 3.265898801438904 3.6006116485779707 0.4752053708909153 +4.682941726564007 1.1184066606115195 2.520508595768583 1.079963431627807 3.8446170948918015 +2.7537576172963063 1.4075930978223554 2.082846818853807 2.3451411454123225 1.371479940515106 +3.520854305649574 3.409818399360248 4.110828060479056 1.1822075327002186 2.9307246831139033 +2.4059383754175734 3.4623284469369726 4.169467819201304 1.8817544589134574 2.5198397572155797 +4.473960112212922 1.4049118087806352 1.797089584746009 3.807604174767675 3.6689544022092426 +4.2134408970800035 4.945400952894958 1.8913877281034206 1.4502763315753127 0.8546021223093287 +2.9811167918835975 3.1731014695790387 4.475463669232548 3.442322966937545 1.0508272109192998 +4.226640809370471 2.7511033439150805 2.4020322477373544 1.6676823222523751 1.6481749376271657 +4.464018142247175 3.014125370232846 1.8853500662613767 2.4864519299274797 1.5695580590861422 +4.533305562162511 3.5172173982613844 4.983777723805129 2.5837423531799137 2.6062626377769518 +1.0580545567227375 1.5381176860870927 2.9066325341856722 1.9923713699821102 1.032634535809233 +1.4283092911030004 2.5007175753011146 3.8617692980237406 1.6687503040406342 2.4411865631260996 +2.472409172766939 3.2592114985969243 2.7033669823131206 3.9468253786710497 1.4714777210017511 +3.548708299157398 1.3134135222951007 2.84308846236741 4.005829310234435 2.5196247773758684 +2.024077936848613 3.020900493427987 2.157709046724443 4.357821213913956 2.415398260643734 +4.81833773020844 1.5703679856252357 3.671186949060702 3.3693049317984283 3.261968763503756 +4.99128166319188 2.44577050641812 1.4667137347649968 1.084224436549524 2.574087238713764 +1.1132773737318806 2.2275289604034483 1.0728575961951883 3.2906846691171032 2.4819978895610477 +4.368132103602342 1.1227156426511495 2.9107496459438686 2.782183865468531 3.247962001766984 +1.981350775853417 3.664365199274616 2.026225072852646 4.7222668182624625 3.178235145868883 +1.0182538753655965 3.025269306707342 2.9418992040288665 1.1548302229327851 2.68732701486806 +2.8556696949044835 4.030296305404343 1.4118102447022007 2.576782341814922 1.6543601969177084 +3.8345039147842703 4.739611393036787 3.418918228970179 3.4917185944468794 0.9080305283426165 +1.864359481250407 1.7011829692701923 2.130529101326584 1.533980082457394 0.618463665849355 +1.7755985978879818 1.8389272977778162 2.614081024145139 3.2290460141338304 0.6182171650330717 +1.1892697718509555 2.0311313963080715 1.5071978560682258 3.780403554101776 2.424086454791944 +3.625492039790318 4.856009825290289 4.517507342154065 1.8267642626170848 2.9587619607714144 +1.0686139990586896 4.65844416956768 1.771568435224324 2.990157881759974 3.7910210883487143 +4.732012512408857 4.613877707870426 4.753392801695895 3.8550724332650907 0.9060548087069511 +2.608189392004779 3.6881382084401415 3.3568056870181184 3.21591464549731 1.0891004231479107 +4.402075048274316 1.2699883289274636 4.967862546818559 4.882376935727919 3.1332531029606385 +1.8156146892901304 1.6493495929375843 3.4673438090348943 1.940884916385905 1.5354871647826627 +4.3906169011917715 1.7740614361241884 4.4885417572419595 3.663225734815556 2.7436306308701206 +2.8313176890637815 3.280861204237645 1.3200019817733697 4.258603573372783 2.9727880325017253 +3.798414458705033 3.132062448084838 2.743216349994327 1.5356710757840348 1.3791992572957639 +1.8669482599988552 2.1835010628363545 1.2123887904814064 3.1260316907959034 1.9396481193526718 +4.089209129706234 3.1778393525531317 1.001206590907385 3.520021699350435 2.678623605740282 +1.292132101568542 2.9340538720616736 4.8490476148460955 3.1652804097782226 2.3518033721553713 +3.362044067194038 4.991688444279539 3.8232014646848937 2.7486217404785744 1.9520405680829793 +2.0620804813886964 2.385983225882583 2.3520066047472428 4.636842662303771 2.3076803933389756 +3.9958958382029657 2.366702376555772 4.9193615312410355 1.8895152144141831 3.4400930276757355 +2.939726857301735 3.9895310137198585 2.1849502086916663 4.894814186873643 2.90610590775371 +2.528398506177855 4.470867277930662 4.415049943874662 3.496915001665987 2.1485243078306993 +3.0961403372838334 3.5440156439180828 2.8415912647136055 4.1140377504915335 1.348967141727819 +4.1588688092166795 1.6599416306082584 1.2289756926738455 2.599719211422784 2.8501885618639453 +4.175982361898566 2.0927727580006783 1.0419385748511463 2.245073039539528 2.4056796947834496 +3.3976674307769716 1.9175571322101712 3.046426472881449 1.2925320936423224 2.2949666641261053 +2.2995014725209715 3.115424926769399 3.9915903997743665 2.2701191673653827 1.9050444318189514 +1.4296126388052057 4.040455195288284 2.4738620728117673 4.791802982330935 3.491324807972705 +2.1433500485051953 4.926322079462771 4.88975024724359 4.689990539124501 2.790132123409205 +3.2847744113216444 2.1717950973416222 1.0186124712974833 4.048188935016105 3.2275465144386795 +4.612308336203416 1.6300925025936461 4.760792079902162 1.1990720434234596 4.645369834199067 +3.7867426576501373 3.385247022785809 4.570312842714902 3.2099990105024268 1.4183273482957663 +3.9639747725136494 2.2264319528683507 4.069290683103527 2.2613251414395616 2.507547497046708 +3.583999300053913 2.019522822976057 4.334059963957028 3.968620490076278 1.6065903822692889 +1.8376205902771598 2.444401524104846 1.1011243035841005 1.4401084664602104 0.6950491812365622 +4.860121684051675 2.6364760016265 2.4728734350692774 3.2907814146932646 2.3692981205624415 +3.983656112940497 3.7900863551374475 1.5614132943848569 4.853469343337103 3.2977419972731354 +4.052095137928273 2.2424547791056106 1.097738826421391 3.9916802316149296 3.4131649659770864 +2.077551176401441 1.7693889586732743 2.5793700510303004 4.402265397269902 1.8487594207406057 +4.155724883677563 2.245721712231383 2.7721772509232108 4.461598596834858 2.5499522738585503 +4.189741687107254 2.4921881448541017 2.5754589390318263 4.993641107367526 2.954537701244134 +1.2536882787632138 4.539284702420446 4.004762231692461 1.4781341481372952 4.144754918177774 +4.839329628552933 2.5750128840212168 2.679496290882968 2.737996579985861 2.2650723174750578 +3.197451161138226 4.486438075341638 3.780860782860874 1.7133890317230844 2.4363757318485164 +4.492704704093407 2.6289855359054095 4.360620629937548 3.24858129925353 2.1702720131033164 +4.115034857110244 1.0788590208955213 4.325987144615312 3.4453283133667587 3.161316764493909 +3.5745204829906867 4.951999159370967 2.0994739569967464 4.771929507557861 3.0065705003553926 +2.6124299437874092 2.0669336512124192 4.880429107441921 3.935292249127911 1.0912606866174255 +2.6832896177009813 1.7355209247213632 4.629793025139503 3.4001068926384455 1.5525441957824269 +2.403440455967898 1.016640906660328 4.505431694054968 1.705249406817091 3.1247774051475137 +3.4159896254982027 3.651438100765352 2.7281815222397343 3.6531172211278977 0.9544328324106209 +2.533732060183218 1.9805480153851955 3.6183252986335237 4.548036784926849 1.0818391909913616 +2.9398391729001383 2.971714003758979 1.9839302715993434 3.5148705965029365 1.5312721127409716 +3.549999088548167 3.6494672748514616 4.171521523962621 1.690979042214181 2.4825359864149354 +4.095551314243012 3.8842476835651127 4.106162569580507 3.5353052615654805 0.6087095287999232 +1.3429243168290785 2.9596829360089494 4.521371945026866 3.950513736244927 1.7145808605096833 +4.273239167594157 3.372468744399469 3.209073067225008 2.619543523441323 1.0765372442679984 +2.1978691589254944 4.509310589534781 4.852716659052488 3.6877787423463153 2.588405269063719 +4.342689718414205 1.7046959731305042 1.9865118925815461 1.25806274152955 2.7367223399212968 +2.2835537880028753 2.2590237927487293 4.83578484008328 2.9658303086099984 1.8701154163432339 +3.778252749110058 1.0310346237903993 3.9813872947117646 1.1838857959287812 3.920870064638447 +2.587230816436214 2.642669549143656 3.2736399303647117 2.248232609547794 1.0269048771279337 +4.691306032117197 3.122352678604098 4.185065960764554 4.161742919666749 1.5691266965245505 +3.7447977999700743 3.5595947446937948 1.0560589092927906 2.6604652272998757 1.6150603100022987 +3.51954660363353 1.5163958399989954 3.7846338319838275 4.087523693709681 2.0259208400591384 +2.180232072864954 3.871872187252581 2.729029552571928 4.458073210562114 2.4189332871828997 +4.123575906938048 1.8092124128897495 3.223999182126377 2.306755893399406 2.489500679513488 +3.9870897129453233 1.3812799272958718 3.83893165238986 1.7658744142202867 3.329836475221223 +2.719644775142644 3.3960973780869463 2.523170344324706 1.8136774324263523 0.9802899142927703 +1.4608677711568467 3.110793327813995 2.5233442467153417 2.2451317804115067 1.6732174153161519 +4.368516539238028 3.8701317005583484 1.740801508375438 3.9770870844249995 2.2911483201820633 +1.761568790312308 1.9808081377539568 3.8873399694763977 1.7310493238345095 2.1674074928239384 +3.8069150851592335 1.0441000031615815 4.16565992391943 2.010730450652678 3.503836213647466 +4.24300678150011 2.3954829535529254 3.8481692814343624 2.7602670947738974 2.1440325236743125 +2.2627135080380287 1.82371357764338 3.208007471178486 3.0178208284967987 0.47842648122886994 +2.924051712952468 1.0468718081746116 3.1711453300067194 3.4986747549758728 1.905539272521673 +3.409078956773657 3.007108203187059 4.055530067680177 3.2025043992179802 0.9429916636929275 +4.4428273731245955 1.8453556751466218 1.064477755719437 3.8923335018752305 3.839743135010846 +4.088228339005579 1.392029499937292 1.511398195904861 4.3268103586435895 3.898209053641216 +2.147710958365541 2.909115483901813 1.4890498439986803 2.8375626279823014 1.5486198952855965 +2.858335532000502 3.3485994226091003 3.5622275516901003 4.200342538700258 0.8047045539088572 +3.296688869452308 3.5421721205999046 2.3487671114153086 1.6469736675497861 0.7434891152173139 +3.7914028760274645 4.752262382246213 4.158715164582308 4.566110248013603 1.0436578676438604 +1.6223144048593259 3.361620737105739 3.549498310538143 1.3375169735199508 2.8139026196208814 +1.0170070905648942 1.0649223108086132 3.7270684908248204 4.395719396438992 0.6703654987465086 +2.4467845094146807 2.9910931240446925 1.7922711321086475 4.9870660403543985 3.2408311239114913 +4.003632923063028 2.917851914359929 3.1400311679205175 3.9875554553153005 1.3773953014963987 +4.266226708104242 3.0456935687850253 2.6647201412119355 3.0792074143822465 1.2889921814334575 +1.7426634415710534 4.504722466800239 3.9550644501785817 4.548414555906617 2.825072460454327 +2.237874222176493 4.178994425560881 1.5688694058283894 2.912732809090735 2.360914333603594 +1.4108685278732325 2.0426278227488788 3.9740498393611867 2.955546384664163 1.1985278861551556 +2.7091719933409912 3.8882701392018095 3.366953868828882 2.508032349154942 1.4587729825203817 +4.308164264264768 1.1140721243461744 2.9735668689776396 4.110142765936777 3.390284555585004 +3.0688619532073185 4.484669074058235 2.2229200589649176 1.223123755868782 1.7332346786101593 +2.8326506484256897 3.958233168813448 4.887364451950482 3.217469275432747 2.0138237039919 +1.2570891754225024 4.184527883318287 3.54726664307555 4.02897151719902 2.966805853816668 +2.6243036652054927 3.4107089056169184 3.69001853548426 2.105999965499451 1.768487498458293 +3.374100913406992 4.090749543730105 2.914119433369295 3.30277481179766 0.8152534958681806 +1.7895677608911331 4.776193286614036 2.2147969449993323 1.4840309514083914 3.0747277876730097 +2.840895749848518 1.7549977732013344 3.9460366378750438 2.7006610935910236 1.6523119142544385 +3.129409852175606 3.3302567592145453 2.6852302074866623 4.027214481635143 1.3569308280560706 +4.333998821305908 1.554558489412928 1.6745745453553087 3.723865764704094 3.4532423981315574 +1.6345518408305115 3.689912560492032 4.289775103291424 3.727011261075445 2.1310116916697606 +4.86777975844659 1.2697333210389279 3.2560998828911916 3.898321910757706 3.6549127621352255 +3.710625603435364 2.6536985964060933 2.904114201070241 2.2751897107498156 1.2298945941472625 +2.7348646125935336 4.668004731473273 2.3271654483242594 3.598304189240516 2.3136171718502907 +1.0348045485751323 3.3037957565529816 2.8092213106748005 4.034920988097374 2.5788875123034316 +4.233424121435247 4.004654137189052 2.3323183388458006 1.325987034891111 1.032006976241513 +1.98915683787421 2.2705561346714584 4.967333146351775 2.6806032855218214 2.3039789540378544 +1.1480105532214333 3.5999045382643398 2.1641388986087327 3.451244357301661 2.769192043843604 +1.6534568191115957 3.303019188936185 2.6261166312033084 2.723662358738423 1.6524440023497526 +3.46202983450307 2.6858720356694215 4.556582091528663 4.2001828226740905 0.8540733970393691 +4.685785870468978 4.199159318894412 1.892938941665347 2.3592365572164207 0.6739724526759016 +1.100438066102774 3.313745246165311 3.4426165410092477 1.9754786605369534 2.6554137594041944 +3.987836458953068 3.822465946070808 4.45766892330899 2.4175678939717327 2.046792519146452 +3.195935113713117 4.00774217820438 2.851326780934281 2.769482409850421 0.8159223069851892 +1.3534527953759814 1.4201907804207483 3.0112568550528858 2.431104326039752 0.5839785232079777 +2.9437021036288678 4.348707854677998 1.9163506401641404 2.8568929853582214 1.690757541335928 +4.285820227468588 1.307320160332866 3.200570272945368 4.049116162248432 3.097013525346738 +2.5529355598962855 2.4751494887851964 2.503938343112792 4.780261971669294 2.2776522857502934 +4.696795140863025 1.2961015069402189 2.5580417517589087 2.962419806148007 3.4246516323086955 +2.0075796858497723 1.9979441349456533 3.3931362956664564 1.0257012933806755 2.3674546107347236 +4.152042395224007 2.295692685044615 3.2387867002430406 4.24909331007165 2.113469586331086 +2.9370776369814227 4.555161973112834 4.289592381077556 2.2036362259746824 2.639964014876982 +2.9866789408602457 4.469317716750275 4.8999304570263185 4.574915923350151 1.517844585876111 +1.5944678090420084 1.1069454136286012 4.198896247793078 1.3948420492419422 2.8461198208160314 +2.414765411611061 4.198772632225344 1.02547441113559 4.095109590097326 3.550400244356028 +3.772956624085406 1.0614199018637889 2.883111407975858 2.6829108960527233 2.7189173655943715 +1.711473843722151 2.5502563793510737 1.44982700257916 2.1447620831930934 1.0892616344772175 +4.9185354685928875 4.376330929372843 1.8920277702355528 3.418076232846716 1.6195090838240813 +3.4407413065232952 1.2723508361813645 3.7689766888152185 3.7224214328797975 2.168890182495396 +3.596143302204843 1.1817679433065789 4.287303564918965 2.8488686571132535 2.8103920291747815 +2.9768017993793467 2.0893716098141306 4.4601929924132815 2.350305681382462 2.288920445668791 +4.975919642224984 4.229308871711832 1.0521781000359889 1.0445432701335884 0.7466498063174465 +2.7945321280719475 3.473048994965017 3.8734805143953044 1.2083012140733538 2.7501937825402396 +3.2456199645341894 1.8636786548761304 3.823042092421092 2.2821874041611236 2.069781378231082 +4.646083016867102 4.01634964145786 3.313368435119791 1.7737892998905096 1.6633905247228202 +1.4769156135095045 1.25311806960889 1.9364327272787665 1.0515391323798382 0.9127551779908434 +2.572331418030119 1.95627209306106 1.0577310568766398 1.9207441887459127 1.0603399255239536 +1.6916416731350434 1.6416303050085514 1.102538738287306 2.9108203588594797 1.8089730667539001 +2.324490607569342 3.5399653198529224 1.7889082275584949 1.5454146638776867 1.2396240929228637 +2.2602451460748125 3.114936471544502 1.0588860892154406 2.382792951086051 1.5758257012567165 +1.5431880781822214 1.9217278875592485 4.448982545328837 3.9930284883085174 0.5926098964719414 +4.018950867970338 2.3902804862807328 2.9710024546010154 4.552685468208319 2.270305787273345 +2.6457754017755275 4.75909811034213 2.2085957477704206 3.7753346797917606 2.630742053424214 +2.925211593718901 4.151948998587304 4.993298997394371 4.659644719951813 1.2713024177429146 +3.7448807261334074 1.9210753303166888 2.927656777523185 3.9324999870874238 2.0823006501505823 +1.585504011827373 2.445463470915785 3.5375634757652548 3.9559882609064134 0.9563522217760876 +4.219603292342621 1.5213565262048436 3.1643931262835756 3.1262863137468133 2.698515840260103 +4.322644360050196 3.2176875175266977 2.756020721078485 3.311293312829171 1.236631422449318 +4.444986788350033 4.41301856424179 3.576500791152968 3.5649052472581753 0.03400623458795335 +4.219936711737584 1.429222267721609 2.992401248071821 2.886406182760164 2.7927266357289278 +4.386188699769232 2.2204436108177212 3.9262717967425176 1.3740890292554337 3.347250912162937 +1.8510202871370405 3.736041977632322 1.1361280232045057 3.2040232919903393 2.7981239458438085 +4.327107396804374 1.5289182360180953 1.5673949992575422 2.602800792107194 2.9836098497304295 +4.193351344352887 4.58366026638136 1.7277798342999935 1.6737729788889335 0.3940276577176014 +1.6329055671551016 4.860419306049322 4.403728297106131 2.8195257123476978 3.595350158789301 +3.8094879419751915 2.326761356829222 4.391745212275423 4.876129630683296 1.5598417839944414 +2.8176166734917465 3.581005001374824 3.7372266827022416 1.9047089214187336 1.9851657574539312 +4.038733042078837 4.368050639353571 4.149337595270712 1.6645878348623535 2.5064778977130833 +4.303202822041356 4.613578191910046 3.0586567693393807 1.5342352924850333 1.555697177896751 +4.812115889131036 2.6366071868563954 3.6825727918618085 2.787660506722061 2.352383070795812 +4.549329458506977 2.689889434266114 1.8848461397560516 3.635325925318164 2.5537612816021853 +2.570907164746848 2.680408152974589 3.488712186060335 4.257767141040518 0.776811425123513 +1.2946803977130252 2.792554601472188 3.6548799459447876 2.740840997274879 1.7547348318115583 +4.0302243617788704 4.079040903635853 3.618448853137914 4.540139672132041 0.9229826762062973 +2.110090544040213 4.973702583565094 1.838751279485059 3.398787283224735 3.260979338461976 +4.212653841584681 4.522170466666346 3.4466517618637265 3.667540829627516 0.3802532333320782 +3.5627263603947723 1.7304072552847547 2.5540909949725075 2.791355205934775 1.8476167375174763 +1.418915443240778 1.901094446397091 1.8388258406775422 2.009058819776228 0.5113471015441753 +1.1468365923754549 3.4125245871182237 4.065512249216628 3.284332672990032 2.3965774804573026 +4.538866320028038 3.4100671695283955 3.7654414347999627 1.5336257583037662 2.5010375319100855 +3.059313799371892 1.5207955619595888 1.9272911384550189 2.5706032634206206 1.6675997292450064 +4.322110525395116 3.26441784554139 3.8871080738182924 2.3949437972385543 1.8290073901755808 +1.2109684184970995 2.6460114118198645 3.62190766346592 1.7437590672615295 2.363639258031835 +4.009142644754676 4.743000331123805 1.6858593450572599 1.07962697974791 0.9518743533637304 +2.458361346186801 4.336547741367593 3.2522161938952316 4.447453470314647 2.2262471295848356 +3.896948783005328 2.8139333874473436 1.108349064526819 2.717018702081443 1.9392628367000033 +4.52803117062859 1.6898028198188193 2.729732900339291 4.030634423150783 3.1221603007202576 +2.544321354438505 3.935156651861033 3.1322658281270868 1.5530906428156022 2.104332932418246 +1.3777549326172425 3.0039090653529974 2.7756768702284242 2.908208465067003 1.631545858087977 +1.9505829400784642 3.7775838217070996 1.365501914302826 3.0204713061232966 2.46512797017405 +2.9817935382412153 2.3772487357165413 4.435701952109007 4.409071277624463 0.6051310693420879 +4.054428631068566 4.142451206412351 3.2236768530015816 3.544004825517057 0.33220172146758586 +3.5100837032529415 2.927758469275711 1.660418255201348 2.1160979785532303 0.7394232133228468 +3.0579128034134295 2.2405680284952516 1.4062653580539193 1.0651669385703424 0.8856639390086068 +3.5947576798470546 4.507125659057248 3.6118070642926767 2.886782019994224 1.165365455274896 +2.2945152584579147 4.713073067728068 4.138134173005361 4.217623664771299 2.4198637267587717 +3.873168243461801 4.119576043144393 4.53053232038719 2.6310106700197955 1.915437105195283 +2.5152258238526666 1.2401431991400917 1.0556514340948913 1.0673861054643594 1.2751366210551944 +2.3820551757927158 4.685826137276272 1.0946116525134286 4.383287068749467 4.01531401466064 +3.8835678285978115 4.146970848452517 1.7463496888672512 2.05145000079386 0.4030723895360389 +1.8157684614315883 3.10495321583889 1.1476335884287279 2.443648912202409 1.8280188867876652 +4.634743855462633 4.603544490684399 3.819158299351123 2.0475361176792877 1.7718968804516357 +3.2328321625022265 2.567014847682704 3.7053929760274555 4.222634314594307 0.8431199790278414 +3.0853200932233187 4.040741946479939 2.395947159234973 1.2551396958774972 1.4880432070784881 +1.2202578689740666 4.819107264334885 2.4973321558756 1.7245740303794435 3.680879255152125 +1.7787801059841333 2.936657887448284 3.8074944362496677 2.617662929463111 1.6602349145076762 +1.1768813507468185 4.991195910782734 3.0277200700501643 3.3600861401534887 3.8287677870899803 +2.8482481088776517 1.6454992674852722 2.578150974112431 3.198530831393707 1.353320340049261 +3.3711403728648075 4.740784753255685 1.93555250014726 2.2269240551380585 1.400293937640975 +2.40837083088253 4.105644172857526 1.2777577390446622 3.843131890520483 3.076017121935322 +1.4128079370778632 2.2449528267523684 2.9172655170982558 2.3101174512929217 1.0300941176526313 +2.839838577113594 3.311448735022301 2.669272975221519 3.549824970928191 0.998893366774291 +3.82232950975956 3.9088434371281577 2.524554970197476 2.473188800052728 0.10061383137560241 +1.1539436645683843 3.643585613620828 4.2961688193078995 2.3916733645127937 3.134552595158816 +3.760243398185897 3.280845827059577 1.0453073930370356 2.786048157982929 1.8055471309124638 +1.6111159518551532 1.295426943937966 1.6471856623914993 4.369718804641979 2.7407747554974318 +1.1675992746882429 2.483945240274628 4.039972873324705 2.3383824638095714 2.1513197398037867 +3.0176009416458887 2.548404158838773 2.2641562852113064 3.0498864665752063 0.9151598433621827 +2.4978905233361144 2.057056808200886 3.625265620198254 4.914130335395537 1.3621698199859305 +2.542859694694378 4.27398322219528 1.0516521393907836 3.254443115763425 2.801620379897302 +4.9121892409310375 2.852838695263123 1.8534108995652234 4.478973402432554 3.3368402908149046 +4.050237166785784 3.1354394882746117 1.1666364237929505 1.3702686630309548 0.9371877514492571 +1.7459780748306577 2.0411732074095177 3.4193410365670402 2.1057903972839562 1.346311794592638 +1.2653737503712694 1.43732907363058 4.942770279704078 4.590560525318134 0.3919443127305473 +3.0065586122902745 2.623194810296209 4.606076421056871 2.736684571359211 1.9082960180211517 +3.245305522345392 1.3545522581641327 4.16088357078219 3.146716196566503 2.1455729698464294 +1.3654202147667887 1.8631622820865852 1.5147242681691897 1.155710337311454 0.6137085367906397 +3.9314268314617555 4.8115408965574105 1.553845543849881 3.7585426432840037 2.3738765906913595 +2.0221930830186072 1.6779330782247759 2.0912911935733884 1.9748684387258755 0.3634132754137263 +2.3693138286933713 3.519627452313827 4.209317595593308 3.418390389648321 1.3959897126378717 +1.4101138657480812 3.2054871597090675 1.8866850256523708 2.6192051767301074 1.9390593174019386 +1.2963574823031236 4.741256958702143 4.403397015605892 4.859716338161547 3.474990608135782 +2.9815206006849633 3.837290621103932 3.4646719427864476 3.378133398259336 0.8601344357347597 +3.930242715543518 3.5984748631485575 2.514902490034666 3.5333465385206626 1.0711200622616082 +2.035159612044987 4.090476217659004 3.457987566973259 3.20446191672919 2.0708939143868292 +2.5554455410159753 1.95559708774458 3.3662947800451306 4.233315826577861 1.0542977103374536 +4.435393534293446 1.9944124167570254 1.4361676446455363 1.2420667532583258 2.4486861726662044 +1.724612169251491 3.396396369234265 3.716775817122756 1.9330717769506096 2.444680452377873 +3.887526040730979 3.4436576604258704 4.7753223386531385 1.4243590479285655 3.3802328492011227 +2.915501824146097 4.488779093043292 4.802671502557249 1.0456638064255857 4.073120203679382 +2.8194431202423975 4.610570024712031 3.1036150867558865 3.3165775590602564 1.8037429424740545 +1.6610327174901371 3.41327374418558 2.892078198556283 2.276740730572424 1.8571453403380918 +4.6854199437535105 4.358254768242238 3.811403392286103 1.1782434541667 2.653406925404451 +4.856183761056693 2.179999706311313 2.3657204958812383 1.654690190887302 2.7690296476370913 +2.8382332766510423 2.2468120622233774 3.9512134384957123 2.8537651561841564 1.2466642632335614 +3.570496791812259 3.2598422435457235 4.357898147199416 4.826320493188424 0.5620727200109713 +2.3071107371516577 2.541541361232895 2.7260787463780707 4.517532190945721 1.8067271962198435 +3.7756004196407944 1.1211542096298732 1.2718627858651055 2.3503406639202793 2.865170015076895 +2.8489297762571395 3.4552153531678678 1.0807229124781408 2.9375202205879543 1.9532737760421155 +1.017037809694037 2.9451062686115383 1.0885465351600616 2.8538226257024712 2.6141246447163153 +2.5014897052544183 4.7449496640559135 1.902860529225085 1.6107638809344191 2.2623954204975414 +4.086925329472913 2.121606873041156 2.9659943124488524 3.384446396085789 2.009372733340282 +4.959457333485765 2.285284875308203 2.673202600790164 1.8434888486893715 2.799932721781114 +2.540335703112955 2.1636618767258513 2.7378558813140943 3.3876169808501997 0.7510477068438933 +4.117632078744483 1.8453565555489608 1.5598391605900446 2.4069151614751267 2.425030681164457 +3.1277194073935615 2.1682023135899096 4.204026523682023 4.492314378127023 1.0018896847068084 +1.9960214080051983 2.6702804557043955 4.794403883935931 4.741982660230077 0.6762937587314017 +1.6982453719552288 4.30119325950917 2.183404802678415 4.926676568688038 3.7816501275907424 +2.210875512422945 2.4995670532575636 3.9165086148397465 3.6730914552947627 0.3776171597139281 +4.781123798335656 3.562655422586965 4.404362928593672 4.45669185776761 1.2195915297869795 +2.347100340028409 1.6568216844516654 4.82469161164946 3.910813576121271 1.145276248843788 +2.920815911542476 1.2677555089356596 4.675064514176691 3.390365502845651 2.0935759466476402 +3.960014390220065 4.070556041029725 2.2824002632366156 1.638568614319877 0.6532523621928752 +1.907251184834276 2.806666220318189 4.098134859933472 2.1647599282904095 2.132342850566096 +1.831184834618091 4.3209468346438795 1.589201470694643 1.3452817329354634 2.5016817653812247 +1.6174512827917287 2.1211089464034187 4.453218032032301 4.7268860967888795 0.5732061163162839 +3.091187596702112 3.743724852724148 4.512000086656982 2.6131293695958613 2.0078632599380324 +3.836840843824106 1.8538852447529535 3.875996236754147 3.9187611411812915 1.9834166846475545 +3.329581999332388 4.462715872297286 2.3079999878446933 4.620412084705981 2.5751198185270616 +2.036474239754993 3.5962306965860895 1.0959812462185323 2.3509121713894348 2.001922034340147 +3.361423021239898 3.6260506221453124 4.039020950277914 1.6442186314538474 2.4093787401332487 +3.4375909510499807 4.266282681271029 4.850755337739896 2.3107474502345946 2.671772829475945 +1.4128734921714265 1.2818670753297563 4.774954324850434 1.4657424307831346 3.3118040463001694 +4.558815408158676 4.930542343488387 1.7410403069666764 3.6022213167377113 1.897939847724882 +4.494479186248434 3.831481184024015 4.130899052129866 4.128553590539752 0.6630021509344002 +4.7373584231228785 2.882650996573345 1.4612667344459407 1.990109902578045 1.928630274204466 +3.1347773694755348 2.615987956430281 2.583499428728782 3.1136427210353173 0.7417508783044693 +2.9219181436057937 1.9259034107678765 3.301150114279035 4.033881610942017 1.2365034550021126 +1.1183885709651786 1.2942281621321228 2.9905472042252836 3.6939654935537596 0.7250633431525535 +3.9800360251832565 2.0955200939337497 1.2755257054560665 4.069113817182411 3.3697974468967655 +1.6958170087998283 3.596274845986595 2.8502689631957003 4.011344839430972 2.227069190954809 +1.1910803211516128 2.0879254827562894 4.190931996930413 4.033793647439191 0.9105073886435759 +4.998121055064493 3.42507179554374 4.063744139984024 2.0566698805418624 2.5500649120746104 +2.790145780337666 1.955150045256734 2.153767592156655 3.539840360097968 1.6181519074647595 +1.4559211585975675 3.6545537741136784 3.7022417235981937 4.028141302100939 2.222655149428152 +3.8071330182369145 1.3049863931750085 4.983120634023839 1.0353112193903655 4.67396372553076 +1.7295164258796842 4.910941517796802 1.171542925268672 4.16250908084723 4.366617015413216 +3.3870275807508547 2.619260100565867 1.383499141445656 3.772647678018395 2.5094815467417297 +3.1688309092231846 1.2181770378246846 4.373407010729388 1.9386858945102228 3.119762401171835 +3.438046092044208 3.2742703330278236 3.537945098576153 1.1387638115449428 2.404764717655789 +3.3353833344234136 3.454740223914532 4.902137148167098 1.1622469889076084 3.741794284884588 +1.4614922752620059 4.367809730480465 1.012209039373361 1.3265260935945364 2.9232646751674363 +1.8847752710271095 2.3240817004648413 1.747604001500565 3.5527924640659423 1.857873925842246 +4.430511001914425 2.620342363791125 2.239640940606007 4.732947506402021 3.0811179999290315 +4.565973411959015 2.1196580698487137 2.1904362365023733 4.6916154387210565 3.498622036553181 +1.1602404361975314 1.6795252877349807 3.0325434323780844 3.7688465098293977 0.900998878412479 +3.3335972977607806 2.3246975377174257 3.3248805281474527 4.299022897310614 1.4024379063667511 +1.4489664539691343 4.78387035943507 3.8969765736708375 3.772682733407148 3.337219354105967 +2.5135366571306292 1.695886555563595 2.6778491881630426 1.7281831387481232 1.2531629159865534 +3.9772566769116824 4.038576420252328 3.367796345047305 1.7714331870511852 1.5975404355229033 +3.2625235916682804 4.804608876217694 1.0173085300291098 1.162073718583633 1.5488653862234356 +1.3182052271805955 4.047730022069972 4.1058469665156245 1.3172352026947896 3.9021354634655934 +1.6867840679357502 3.9601559781446327 1.5932683818385667 2.197902715681709 2.35240356227173 +2.88150264311501 1.1494947165497282 3.9833684581058835 2.0232080381991766 2.6157370528120376 +4.916688849018113 1.1537828553291183 2.9147462859684845 2.337702461756263 3.806893890352347 +4.546971443231607 2.988767236450348 4.177665880901863 3.3663968368370227 1.7567463709621525 +1.7052345657921317 1.266223223269118 1.5011458867975973 2.540740333186289 1.1284890658868028 +4.2252181783150595 4.505004656841278 4.2229357326371275 4.673172915542043 0.5300886665797114 +1.2398998130207617 1.8088987577747742 3.664476707400832 4.094630071177605 0.7132963728350594 +3.1075782846805144 2.812947439630852 4.069973634529967 3.127723751360954 0.9872396756546495 +1.2660201693498934 3.3453185436157136 1.1573580535788666 4.824510520403953 4.215624383666766 +4.830152778430555 1.0789355162395586 2.951659965491891 1.341344188602426 4.08224789172079 +2.133513560641208 2.2751255965091834 3.9669371856964433 1.7171838103186157 2.2542058953712725 +4.056075583676528 1.5970422397233919 2.742012005395451 3.6296038565313986 2.614319085512762 +3.5804678478140533 4.792218512011684 3.9420530020994864 3.2194315122500234 1.4108584230090757 +2.6701524139891566 2.1522250421086015 3.7215292414447227 4.558250327312512 0.9840482397112815 +3.8757069630616727 1.6980182006716538 4.811820796606709 2.987179228223524 2.8410640962343003 +4.251660750106446 1.3058539159572158 1.4697784181440352 2.2244902017300694 3.0409485001235916 +4.04260503654987 4.180851195643562 2.133569524930387 3.3174724009717593 1.1919471550380039 +4.485551712043662 3.2746719304861265 4.004197318487499 4.977607038479205 1.5536268304709326 +2.2508273799121685 2.8584529923578987 3.975516175488221 2.739311155733183 1.3774656931363491 +2.155274634188269 4.792182582010536 2.180626575205471 2.72757517191231 2.693034773768772 +4.924179386165179 4.312662946744288 3.5396070409733884 2.7451728829768305 1.0025357784506765 +1.0910392997790517 3.539082225086326 4.0977680720412035 2.6518629371477824 2.8431594790405548 +4.129074020000351 2.75124915701481 1.554360824194915 3.7106789519670063 2.558927357550359 +3.318016940640483 4.454393168879498 2.975245816093743 3.005113612131539 1.1367686736301659 +1.5024901371051156 2.212727207680669 4.189069835158331 4.501860915444924 0.7760637579004691 +3.7407511030135634 4.251403177606732 4.291566470278467 4.39323028356171 0.5206736715233419 +3.2859010640942428 4.884425118167536 3.3046480482931395 4.115395107270292 1.7923699241760949 +3.375450691623231 1.1826487431822597 1.754429797738867 2.283203173102126 2.255655485126125 +4.985126073955266 1.65684207184911 3.3808014428089956 3.7323205398480535 3.346795493342688 +1.5543325167757098 1.3521138201683147 4.572948083535185 2.7753761180450525 1.8089105484721053 +4.1477746884863835 1.9268045500267506 4.5645451187233075 1.4518034101649477 3.8238552927808627 +2.9186028431081206 1.6192483470233072 2.5783450278270488 3.7227569276708765 1.731473564048836 +1.652338720170739 2.9797944561119207 3.9833296545820547 2.978924668282203 1.6646225119789622 +2.670130401929327 4.847510440561916 2.3308946300039493 3.4138447581010882 2.431823351434323 +1.91202054916055 2.277566888712309 3.6723627751948964 4.136058613147671 0.5904557193341557 +2.586020571636231 1.1935099725239597 4.366896159640955 2.467053533779286 2.355522823426039 +4.47740670942843 1.4538524536933606 2.8656694695341645 2.7775021255271386 3.0248394697773473 +4.753998244925383 1.1432372581165344 3.4621187873055854 4.2138218663824745 3.688177384963268 +4.427752033056748 1.7116802774005038 1.4463799346873962 4.036921275624942 3.753391828863607 +3.719909252325236 4.730589155461452 3.9696246389922107 1.5431964403562803 2.6285029331806036 +3.683785653144473 2.5332491626354057 3.8624497857283497 3.08606615029498 1.3879862266469565 +2.980621169818142 2.961609681622287 2.0274946973169587 4.283234974476212 2.2558203906077994 +1.0175529144208166 1.1622915114193586 2.903220110642512 4.0315792166164925 1.1376042956562298 +4.5620785820041005 4.807767077087918 1.785375860057167 2.1376568108697724 0.4294935446802251 +3.69659103679474 1.337010923344483 2.0174592717936313 3.8695603782812436 2.99964944959283 +4.426120030441879 1.6729065065655435 3.8706390317283055 1.146088555859421 3.8734170965199337 +4.873855264277809 3.50537847109206 1.9044303163905743 2.4785889057560917 1.484044075905481 +1.4610619483171723 2.5413835516831313 4.655376051916328 4.521504797587245 1.0885845302202481 +2.7784973411387877 4.326953907263096 2.8829921445292603 4.522576286604884 2.255205954257691 +3.8832037837351923 3.2644061597822454 3.769127555735361 4.027040230146309 0.670394993292477 +1.969572744893032 2.6491386907683587 2.602923414832984 1.3974852810798897 1.3837958552834195 +1.308099227785489 2.6436823572679535 2.427860768287926 3.8355164411796214 1.9404321140360323 +3.9821642885824056 2.0641027663171077 3.455606294515907 4.48562845671068 2.1771324391977322 +2.0829900595975706 4.116108014179739 2.3389938133140684 1.670849322444607 2.140090109767248 +2.0816548454839627 2.7556129718417894 4.2960635099121305 1.5190394167838126 2.8576358007798874 +2.9996344889219326 1.110276653016748 2.046463176046396 3.831211269753544 2.599038050911841 +4.23753939570187 4.984027874341619 1.6937665686543464 2.9659520524998904 1.4750257469106114 +2.6471367286919776 3.1125847809474916 2.8605410919267618 2.489906039810941 0.5949892698237076 +3.317770842096262 1.7761278634963622 4.491024943574283 2.960873420740058 2.1721019212500754 +1.2166915798565618 2.3578588295654175 2.951275157636288 4.990164469223819 2.3365214137075547 +2.40715910684685 3.5788181745371057 2.024656810629037 4.719590039367761 2.93861363201441 +4.392774553357635 3.777353764938182 4.333411740437423 1.3756630901481621 3.0210957987304488 +2.898695123985981 3.870078727938091 2.9000356142089823 3.7253797320643995 1.2746681995348934 +4.088528059609019 3.7043214833747737 4.91711787901461 3.61355041454104 1.3590080307546721 +2.163170635517875 2.1434816696744505 3.9938532936693854 1.9739949953442442 2.0199542570783424 +2.2457500135543027 4.188231206920426 4.604486715756801 3.6949267319445913 2.1448852068895308 +4.380450378378177 3.8613588037146016 2.02505856037054 1.4545534469285197 0.7713184474328378 +1.9696267156801812 4.168523583646662 1.2733234434170586 2.8976400757582423 2.733779793262984 +4.370385518211378 3.463660052053015 4.999845666770286 3.6449192845384832 1.6303302034397393 +3.7457117394261026 2.081138213490933 2.2192163350932828 2.7887402894169564 1.759307408553922 +1.6200118013426499 1.63329089522931 3.051701294508101 2.903518629983268 0.14877646453700258 +2.4079188818855735 1.1422218744837953 2.4714826373213024 4.795957046849724 2.6467282057472996 +2.635467251783696 2.7905213700044085 4.932181386719353 1.9656179473636994 2.970612801981916 +2.614446846581486 1.9158125874197722 3.156442404539987 3.5247057863029334 0.7897516992206589 +3.7604447066234914 3.262243087525231 4.4729067244334075 2.8915178801085224 1.658009508485197 +1.0890935360622302 2.6762603818939827 4.703349512822338 1.3289399722567627 3.7290398689163258 +3.205274895983436 3.5880417622997824 3.735797308509938 3.8722350494456736 0.40635665504736446 +1.500633842359845 1.5778786084047964 2.572075143949158 2.417045551484614 0.1732077608569023 +2.833098569152722 2.6983874069611478 1.4983113852224235 4.314033021843718 2.818942254136524 +3.195739368470703 3.24554845736283 1.522549862958626 3.2832747607211834 1.761429280708491 +2.9996904053271893 3.0014547363900532 3.9348888620737603 4.509765367636497 0.5748792129761892 +3.8739848195202424 4.478495019823217 1.91667241512005 1.1126906594998283 1.0058922634360585 +1.7925679461663866 2.8810507178411418 1.1722698851882405 1.725035607184234 1.220796742970143 +3.940531818832941 2.637780065548758 1.9509628573631472 1.5722798963575766 1.35667347421587 +2.5479235455190485 1.5811425371739145 2.0590100853542714 1.9677276771508576 0.9710808391396922 +2.6814976572416316 2.004687265187276 3.33364470147846 4.728352314068105 1.550252118659503 +4.531143002132723 1.722918350439838 2.515637250512329 4.114944940926364 3.2317040060923117 +4.409519924660463 1.8324508712630578 3.6913830522575766 3.8161106609103985 2.5800856346909984 +3.023573346402315 2.502505982961444 4.4192213591962055 1.5351122644796655 2.9308013353808002 +4.882740029829718 4.869660177777364 1.247876903198979 1.199763431852248 0.04985968967757586 +1.5666334702532634 4.343158029506689 3.193709745664779 4.015499691729508 2.8955875644833298 +3.1845209907853476 1.360710194633843 1.6678615971569837 4.122939731364412 3.058381020282171 +4.537822398620035 1.8165739318018255 4.0282855166589275 2.924419486465697 2.936615982857653 +3.137396977771206 3.097227338716991 1.483525578223265 3.346868782240763 1.8637761388804024 +1.8268155795541672 2.2825841586452515 2.0855467202924336 1.9794033949256433 0.46796517307020435 +3.214442228317939 1.097987225342758 3.2034520322664797 2.4559444617881026 2.244582221158574 +4.206041026331154 3.8030940084365112 4.109115687835589 2.5855998490268055 1.5759019037780921 +4.331391436165353 3.1267761671195187 3.7361321134749454 1.7349762250952874 2.3357488811974085 +1.4290373791581779 2.037194158371397 2.718199587117429 1.8819841214868638 1.0339782265902602 +3.7468754323067315 1.7587129212604022 1.6064079470685568 2.607149389203951 2.2258197600743133 +2.01994097305625 4.776414749745117 3.8998481153147972 2.1095491103115886 3.286840155664535 +3.8200782850001693 3.103764293756033 3.1180134107139703 1.2196158923942129 2.0290438318613817 +1.9042113471448427 2.206715472329 1.0728802172720093 4.1161277000529015 3.0582452464126657 +2.7729929581076083 2.3275346465491684 1.0144627925941614 3.9299053166409625 2.949277575671181 +1.671011087921237 2.3952240481711784 4.105095191809645 1.626330457711679 2.582394047933379 +4.817997794819146 1.747823888524438 3.4054903107164414 4.865487979888839 3.399641305914749 +3.683101941483238 1.036650794827759 4.531145336935914 2.8396897136699533 3.1408161036762627 +1.0548923794784915 2.317683882689755 4.601306709169208 4.220278890496292 1.3190241010630557 +2.7776174041123345 3.214087465621857 3.847258080202535 3.7984746244167913 0.4391878187661017 +2.7101421182407077 3.920866570598266 4.970380484390474 1.2023186380182391 3.957795317802911 +3.730631740191979 2.6273115248961783 2.6943702857855167 4.900129914961621 2.4663112210715576 +2.5930592309228797 4.24190798552749 1.7786346247148899 3.9222469348407647 2.7043993698572635 +2.175589688413008 4.695284678147589 2.4311061562142524 3.765944525194524 2.8514305729923466 +2.9214039938269005 3.8718290249219764 1.2958813226758426 1.7209900254235482 1.041165284133078 +2.4079127267316203 1.1902112267958835 1.939830218566022 2.046847598298842 1.2223950517368032 +3.3244058943257 2.1738822886778593 3.119494980600143 4.477261437504977 1.779672531295804 +3.352184419402107 3.662477520802521 4.577488579401301 3.6495874917709865 0.978408011620003 +2.027162453046772 4.30715090123684 3.429639452437667 1.6399182274548871 2.898525381471416 +2.7394150879347543 4.928065545896903 4.756988058864723 2.786823120425986 2.944781946391147 +4.379439266954735 3.020604836712134 1.249421953078067 1.0252138525232732 1.3772074212576417 +2.5875428321524114 2.70416542056336 1.9302689683152825 4.476219129633577 2.548619832780935 +1.2036325539119268 1.9024843690370088 2.154335392332102 1.303141115863979 1.1013289952578718 +4.530987894795892 2.3141801546163046 2.3401598363252343 1.0863156793665296 2.546833666900847 +1.4773582975669268 2.083056711344737 1.1866831445825885 1.6541470514311425 0.765109843525143 +3.0798600725203276 3.038481515947353 2.1468242346458806 4.048150633344221 1.9017766060532095 +3.4545149493400316 3.973561129973919 4.703908814155525 3.141845680073408 1.6460407566306108 +1.8524415972706745 2.5729232981238477 1.3843740219685134 4.015865716829701 2.7283405984934666 +2.2857656381178013 3.0328151439006725 2.253640913132741 2.5161651017032605 0.7918345241747431 +1.0675571312076624 3.25507214702836 3.1644328545888545 4.170787742788788 2.4078978602600496 +3.017247941639565 4.621419188989519 3.5892319403215955 4.256465434463115 1.7374020624278677 +2.5030456119060265 3.6254100185935143 3.6126392535540903 3.9482198494505205 1.171459003867041 +2.4894888251795435 1.8560868329077014 3.3945622647168205 4.642930355798203 1.399864627256548 +1.714799888808611 2.229890302488355 3.988899113507402 1.9089676598499432 2.14276293279924 +4.162677337580664 3.9222023183474053 1.6356070218885526 4.465368628821803 2.8399610889849685 +1.524682045271914 4.027410409958347 3.6581927153921283 2.265933448479956 2.8639195403692552 +4.284221397712852 1.2875185958277604 2.193424067826564 1.6276797480465879 3.0496383913817167 +2.2558704394771745 4.7176333834306075 2.197060740381754 1.078271486694753 2.7040647526247943 +4.404246599014316 4.982510168504012 2.029871057592662 4.8557729124193845 2.8844600966059617 +1.5530193783852422 4.057756686851832 4.884354798727973 3.39744396388066 2.912835871656827 +4.885617158179546 1.3053883316713772 2.267372985355996 1.8190789352735206 3.608185971578988 +3.3723694057957685 1.1416148537180102 1.9203166510983678 4.934562534903513 3.7499258818877874 +2.8988662556646165 3.974078477990663 2.6131091039277217 4.658395976725052 2.310688147517184 +4.870383106825377 2.335369595439336 4.237762012560484 4.235266705714354 2.535014739496803 +1.4273820458284354 3.7193415359661213 4.572248486624058 1.685966872550611 3.6856071223301354 +3.1302287402363516 2.388458258361092 2.15908183763109 4.341533919756118 2.3050641072545734 +1.1074620027081963 3.357489895093085 1.8794704376405549 4.525011937099546 3.4729692399832324 +1.630922583543092 3.6968773390528873 3.513138068431681 2.8284431199124747 2.1764595618437887 +4.978269189142338 3.0773096696541824 4.740211474701228 3.021359303686113 2.5628304431889393 +2.7415391430124556 2.953378607614347 4.475037938755845 1.7211469026828037 2.7620267553603215 +2.613098480272572 2.623070372610431 3.5284876947622106 2.081140725539291 1.4473813208534816 +1.5933650444972391 2.686056258266235 4.274128762111513 1.5847955530761046 2.9028412284981497 +4.147113902799064 3.9058346296738176 4.084008804956581 1.3021622003753301 2.7922904968967828 +2.6271323279769168 3.5668862753114148 3.8152187818880323 2.7582150040873943 1.414353020930627 +1.1401431189454456 2.342930576916106 2.4419468887968185 2.3808105867681704 1.2043401996434648 +3.2518341152242667 4.296311625729448 2.656258348560411 4.618665565401606 2.223055409714636 +3.104719584509972 1.352938226859754 3.5703977352772305 2.853469018512697 1.8928086828658837 +2.0458094486666694 2.455970722778471 4.83844261789738 4.3974956116869635 0.6022180112442218 +3.073430258487985 3.4042846452126616 1.9350905827489129 2.079658598303534 0.36106029459961825 +1.5520925760156792 4.155738632248451 2.4712978178317906 2.081786104363221 2.6326207780585658 +3.632678833516061 4.386929091650846 1.5940255188866006 2.0433988256478206 0.8779691456571261 +3.6259153985286305 3.264984348850507 2.3174062764654764 1.2379454742813647 1.1382033412680346 +3.603678280271177 1.1340085534599988 2.073182841640005 1.3031172882687159 2.5869421168662874 +1.8132859922171272 4.493188566882894 1.156613654099409 1.5458640564093562 2.7080239447609515 +1.9186566295279288 1.1161827687471795 4.671253262584276 1.878303770194019 2.905947550159733 +4.529628034136126 2.2151069454817174 1.5404171436710912 4.000583283265975 3.3777840819441347 +3.3001365242801683 4.832076406069941 3.940582348722687 4.8478224142257815 1.7804281333073013 +4.935120460370914 1.6267801146622474 2.8215684479289425 1.4039339363303012 3.5992781847919533 +4.044315504874833 3.78331818115923 3.5358986880979324 3.8165705712976044 0.3832705428356809 +1.2934957123072475 3.6274321291644243 2.2329840787029083 1.15933204295745 2.5690441591752533 +4.777230378426097 1.632433126595764 2.399284921481519 3.4434189501409733 3.3136031181969026 +1.4178469206999074 4.119983903002707 3.137023320287022 1.834590464114655 2.9996459150982786 +3.904291371233768 1.7928700768391437 1.5479511419597602 4.248007769160225 3.427594735745785 +4.6536862461072115 3.468603955208917 1.1678260034015602 3.98087013127157 3.052480516161355 +1.8783450726446214 1.7445470520631852 4.0013711472092695 1.5383082140221251 2.4666943311144105 +3.180924039995127 2.9658888255506555 2.2067628940807014 4.846733661773813 2.6487139894154934 +2.0655403070783778 3.093739964342151 4.784201218098966 2.8329044810575517 2.205618618706736 +4.823362777894994 2.938777944913839 2.421416773636346 3.519491953956592 2.181153157010747 +1.599610926455302 1.8881379703291494 4.638072104842214 1.1013695446973522 3.54845217721499 +2.869057309163317 4.41642387811815 3.7075391176026464 3.9831419991722488 1.571718882958565 +3.5095973416885657 2.936483880491083 1.8707096869622695 3.9791062758036495 2.1849016488720325 +4.7725082590350265 2.496753129810792 3.1456056286102756 3.210666005372883 2.276684927875376 +3.3020458586911876 4.616840485411073 2.0230753336337273 3.368990953216332 1.8815349493134346 +2.902239767062348 4.149305111186454 4.315218443549137 4.747129914702393 1.3197422064286435 +2.6995718005906797 1.7254730354385144 3.9314800965912924 1.1118686910106041 2.9831320592209254 +1.3806003329145553 1.5332962254543063 1.386620102547079 1.065121427493413 0.3559177343990797 +3.5862045567872283 2.569796017204719 4.855962162999379 1.8934388272192728 3.132033019362653 +3.1582731600560057 3.5708470888360972 3.665811866631499 1.6357095227088476 2.071601499687931 +4.3228363789629025 4.501949763771588 4.878862901456614 1.7696653343730935 3.114352439236078 +1.7577977571112164 4.270139521629819 4.1516635852534876 4.884717163208238 2.6171031102913593 +3.9995074006824103 3.8711026019595747 2.999937685236495 3.3244596120276046 0.34900182421194614 +2.115426639364518 3.7324244572827268 1.2085553527876178 1.9834911244094897 1.7930999395715328 +2.7420201772287673 2.0293449781912813 2.978765860704584 2.404674961958358 0.9151427753888297 +1.1788356398353086 3.3072855490997197 1.9665472009588343 1.4774535520090213 2.183921155557298 +1.4508461837852153 4.151976170989137 4.488530099452125 1.1298858942089618 4.310057320406044 +3.26435823649042 2.6759068406283535 4.439400618990406 3.642934864460681 0.9902690257857294 +4.326510707064448 4.883578369567537 3.6573297202092947 4.55663644489408 1.0578643418085005 +2.447639804760859 1.7381281433776659 4.723209098233122 3.372795249744332 1.5254587375045723 +1.0170009583270163 2.82051694442418 3.4708895213333157 4.2243438093575785 1.954574960509362 +2.46826909227218 3.6658236023691515 1.7438278894732684 2.278643011447851 1.3115502351592505 +3.473657492865908 1.8784797887258788 4.677707009159011 3.1742229881005786 2.1920438201284864 +3.2999864715713123 1.301123410729149 2.0271941084868144 3.9616799207224824 2.7816701626433704 +3.9207412101744383 1.484801435889373 2.175269000050977 4.290408353903242 3.226083859752959 +2.8954879497018555 4.6741299462400105 2.2947401938291576 3.6461271752324254 2.233789185522096 +3.5182756515534983 4.435723540631259 4.533046330620387 4.415352321702724 0.9249662204147513 +3.670224483610739 1.197719448094778 3.929243556187103 2.4848440833011964 2.863489302917835 +2.8814682919839925 2.437700021514793 4.583020868047783 1.6426047209494374 2.973714410630568 +4.553605481052333 2.365745555308754 4.22345651830999 2.3644058964255668 2.8710277374841855 +3.871403202188155 4.926571866775268 2.357760095422301 2.908117943107466 1.1900733890122903 +3.5913535510118813 2.448569003498749 1.600883034559359 3.5984212697811686 2.301329077556675 +3.174460688952671 2.7319520720060577 4.141265726232338 2.081520558180541 2.106742517106618 +1.3425689804346508 2.0742890468058373 3.161151791810003 4.562022086577798 1.580459375717409 +2.121992509711464 2.3433327985994428 4.965982892439628 3.4945129507738324 1.4880239624115448 +3.7453421587498967 3.0626330169952998 4.038743905151492 4.695287098108637 0.9471751350482454 +3.3128666039859405 1.277850457055358 3.005896073652501 4.182793696430318 2.3508251174360613 +2.6840399614030033 4.4934136866744065 4.325228019065913 4.849836634716093 1.8838915779091197 +1.6288614180828156 2.6380166829297225 2.787530173552027 4.98967117403344 2.4223582176403036 +3.630470531977125 2.9243449288122 1.685850401277261 2.617136435061045 1.1687202591577506 +3.3377002063181442 4.95735201249299 1.8433317655033519 2.928888584320947 1.9497962919563718 +1.7087521086869386 3.726942532960973 2.313578421822499 1.1723644540712215 2.318504239552307 +3.9742437898884515 1.8397216083892776 3.9165311275681836 4.560151191570284 2.229446507565961 +3.001742072971405 1.3844686403201822 1.7098563552651154 4.8945149102543635 3.571781553766366 +1.1130124323503279 2.2313182166532197 1.4408237260559185 2.279851913315066 1.3980615602399908 +1.2204844106962667 4.026371468311321 2.2181728336816158 2.6551227646615327 2.8397055168230074 +1.0034699346678346 3.880155848013424 4.525009390639155 4.167080912041454 2.8988678203450764 +4.9179570244367135 2.449675079338014 1.2275212166305227 3.346610133097471 3.253145185261993 +1.1273762274935977 3.42693351477229 4.964129016922758 4.277982955412176 2.399741680932142 +2.957729529997764 2.5401545652479176 2.4523642126941443 3.006618165735468 0.6939497789089418 +2.683747947109692 1.484719353527205 1.7517930255494933 3.855413803072635 2.4213405262076346 +2.9325286697720863 3.5927085614764023 2.0176320449440888 1.582472066420233 0.7906969687052082 +1.2218680132348734 3.1025211392947485 3.411146090498694 2.539445162257661 2.072852789962437 +4.543021620676794 1.2046118778106871 3.3284182316808564 3.7193681947839967 3.361223212598903 +3.5383580213005783 2.3554573081000956 2.3097837317044685 3.2228768768644995 1.494320310050174 +1.6719133211997472 2.9802911675490997 2.015648290581471 3.7111770360508527 2.1416513057756963 +4.417382358605639 1.436745572545358 2.620189126501352 2.8398865346573126 2.988722570190517 +2.6584962302399653 2.35260367687214 3.403589096996434 4.970647107128251 1.5966342916661211 +1.6230334915058955 3.1264272309996537 4.741902176134561 4.840458576154727 1.5066207551782769 +4.541115988885969 1.3704361185108107 4.601305620223554 1.4641667435022372 4.460364466300766 +1.1565112495902286 4.326434117303816 2.7044007323558903 1.7395993508628789 3.3134955399071178 +2.1218029285167925 1.8923624293163885 3.8532973179386607 3.7507830972482568 0.25130083190688296 +2.0481895129445546 1.229028829198063 3.350834296220062 3.7261584213256502 0.9010507336894491 +2.687879399910125 1.239194314139715 1.7606646849565482 2.7939754243087713 1.7794436101754556 +2.6262411276878 3.6243828994157052 4.656881234817913 4.147315169351057 1.1206893287363335 +2.116265703587895 2.723825575014919 1.1058928664713785 1.7995923612517997 0.9221431485550569 +2.6852425112961362 4.16098883860017 1.2909105702059236 1.5992759889165757 1.5076194659157003 +2.8725335369155576 4.238463568272072 2.081174868145875 1.8736459658413782 1.3816052605043594 +3.041138530508268 4.980766707500031 1.749939762196063 2.749917055540879 2.182226398013188 +1.9343513268110382 4.663411199977901 3.985853752645755 1.1173650871005818 3.959292236712347 +2.570421388334078 3.9708307102079665 4.981082588211768 3.98328992244044 1.7195163484707954 +3.07895911834318 4.853207024007552 4.1877679560282886 1.4515469251494673 3.2611134847744827 +2.9677884509474484 2.2346593332145237 4.289123695378113 4.809332662551044 0.8989414178882756 +1.4008424175989447 2.070329109119791 4.484399511870441 2.4831146013375074 2.110297069905169 +4.248106613018159 2.2255761063508763 4.910385032749855 4.030236598013763 2.2057404465548993 +2.831542402695806 3.3230940622689835 4.375401774659278 1.570967620224708 2.8471870259237075 +2.629585135486544 3.578558706919239 1.5528771460100805 2.1441525771553227 1.1181044113828174 +1.529280427663695 3.3887799911984695 4.559721380701738 1.438891354549022 3.63281140150743 +1.871144829642966 1.432046773542723 4.5855553973543195 1.4261990008865353 3.189724117031583 +1.7718333712510828 2.4632741008354513 2.916380729493911 1.8955313516785899 1.2329735336632703 +3.4165279583363595 3.905608257654169 4.779058424535513 2.352837205626581 2.4750250387147084 +2.3091036082503527 1.831135191858594 1.5329440387020097 2.3587709707624773 0.9541718549530005 +1.290289202527327 4.539239178079258 4.400546683176296 4.539464276230555 3.251918517014054 +1.7261777039161679 4.964975511643421 2.730870880939618 4.351028530846554 3.6214254168615465 +3.0393613758872675 2.355787888553875 1.8656649489343309 3.2325232899480265 1.5282586289577584 +1.3604394394063304 4.101733049350349 2.6684687530001443 1.1843446057085085 3.1172608393418146 +1.7217508095711356 1.1010362762040806 2.64329265357166 4.702994607776253 2.1511993566583496 +2.1916342824465493 4.549975701340143 3.9713056019508772 1.7842759177984462 3.21634467795865 +4.750390367042095 2.5799732805310622 4.575291293127059 1.815332381680355 3.511137069710198 +1.1927523292992115 2.6970564697212223 4.409607070354394 1.8018989619922339 3.010493734474224 +1.9004575407698758 3.919668546278462 2.284191515216409 4.655969604097626 3.114890750518232 +1.9993811138271784 2.6024764124722246 3.8146384057097835 4.793394361692777 1.1496465372539255 +4.446512243087653 3.280953691772831 1.9581634678147655 1.100930870279801 1.4468498411444257 +2.7032506102850795 1.7493262138920094 4.91627103201388 3.576033810901807 1.645055489303657 +4.594658809666466 4.815484174832634 3.9848967971048403 1.5487492617620822 2.446135453293085 +2.9847951106869464 1.667793990977859 4.651102627154367 4.260962082760294 1.3735725658643207 +1.7880898145531812 2.5751596946802 1.6756694326306287 4.596470225652288 3.0249886394363723 +3.810278062999807 1.7162180168309993 3.7965362979228217 3.41511398165091 2.1285136739778627 +4.172564794962621 4.970885166769348 4.888462204525989 2.0555519178507007 2.943245845727518 +2.1853896468935217 1.676942822042251 1.8413092495270647 4.718492187728873 2.921763137829781 +3.0104063296169046 3.728911196587319 2.041965493826713 1.8008566666037704 0.7578804064131727 +3.129080549909461 4.571919082276727 3.880115006216082 3.2689480752807434 1.566942260567583 +2.4562191820417496 3.3844365308080313 2.513569444640621 4.57590057680841 2.261591728243446 +4.487361800987569 2.8273234322521517 3.3010566988968604 1.2257853352986459 2.657532430327904 +2.064950294594896 3.53681293756648 3.838342483602689 4.70852046168736 1.709850681585624 +1.0221182486540674 3.7265285523665295 3.0298810121699775 1.9324125115810116 2.918607921700194 +1.9743383227543805 2.596431090603266 2.211018876641673 4.1553521986074315 2.041428783650385 +1.8808846089242968 2.0572868767925665 2.2080810958489456 4.249179694221132 2.0487072139244233 +1.0594617582163237 3.9795730929819206 2.919401370441523 2.0472425151648372 3.047574654748273 +1.8326582099296802 1.203734436935651 2.5831833505735515 2.9478090075956285 0.7269779790308826 +1.7477996038961878 1.0261112665658754 2.2737199689632974 1.7749650486950093 0.8772630886629263 +1.1254179363880108 3.7697850583498425 4.817398426941675 3.596635939545087 2.9125484590556434 +2.7685447013010394 2.730178952782233 1.9983812637981924 1.0989583385717778 0.9002408172718279 +3.828769219270174 4.644263432583346 4.940345229402546 4.235133210384805 1.0781255973746042 +4.947560727426605 3.3934747855848544 3.3926282365969627 4.311677864604565 1.8055014077455256 +4.812610550753368 3.1549019876837296 2.0194653612674536 1.029686590050885 1.9307148147837332 +2.453473061723243 4.986175221085235 4.945599629488072 1.351606669926833 4.396744889280324 +1.4873406211531175 3.071788530160289 1.3714334614186505 4.233677169200111 3.271530867818881 +3.3369942441224194 4.578121189004435 2.742996529688948 4.500469283362978 2.151535863800263 +3.750412787067119 1.1706255638833594 2.768673129252596 2.3756792820354504 2.609549056992933 +4.704576249673581 3.521673843627319 3.6154599524370266 4.9052698733221884 1.750105063772979 +2.1584907593435534 1.1108103236292273 3.3430630699960435 2.5017694128370653 1.343655206127855 +1.0126646346508879 2.308826462329647 2.146205328716104 4.151378209729511 2.3876251310210215 +4.259560173263107 3.420112273518099 2.668134998043811 4.348164590615928 1.8780767312078441 +3.8946355780553357 3.0991860349503657 2.903876104599115 4.046415709668529 1.392169790211696 +4.493428188766517 4.460145062975563 1.8575940570575398 3.9469685435541386 2.0896395649215065 +4.771145036053336 4.701008942108853 3.7904828973532547 4.400289132326617 0.6138262912959798 +2.415665124891553 4.532014772385072 1.6381020234275692 1.2651336391568608 2.1489628303233737 +3.100082381625554 4.959643532051728 2.969767754571735 2.469501300664909 1.9256775942713844 +4.357544626231768 4.591516208264574 4.074964855243165 4.5707204424579055 0.5481936733067673 +3.680805801476681 1.377966783722829 4.975747482014695 1.5965433609260562 4.089264974744479 +2.0382009196309587 3.0567503958100164 1.8823767606193957 3.0995257115150605 1.5871025814644275 +3.1631125132151974 4.52494982336194 3.7427828833627204 4.393030465149161 1.5091132419162019 +4.089463254510038 3.8615300807784445 2.838467228077417 4.903856558274235 2.077928443661672 +1.3006471008072107 3.2674402613075357 2.68313211171698 4.235446282815813 2.5055846866520226 +2.0999222238152533 3.775466052542739 4.588337259705028 2.010823393211088 3.074251917776958 +1.848985216958674 2.541510669726288 4.07954684988398 2.360470093210145 1.853325766849212 +2.1683103528442715 3.399812127839361 1.268085357553852 3.3817438175240024 2.4462519713266344 +2.0079717558011723 2.4379173471599622 1.019872819654049 3.4977956121315765 2.5149462373992186 +2.612146831457428 4.263843355862989 3.2784534000289836 2.861249546324804 1.7035728526479372 +2.4637055124557623 1.8148775274820115 3.9404413339978106 2.3423230061454627 1.724807219344435 +4.681697634637702 4.107841804524227 2.900711053637907 1.2703728879982963 1.728384519745637 +1.2619821081621487 4.410608024399183 1.1644163991501353 3.2623580912401 3.783543908005933 +1.7040760524476672 2.4610382927569594 1.8744621618494781 2.499315786763515 0.9815466804091767 +1.8828177280452048 2.33343192851114 4.101664991278358 1.7170031435972324 2.4268632605582687 +2.291383766765995 1.1179773881373052 1.0585195545145183 3.275052676819785 2.507967625724629 +1.8286764493819354 3.0584762245487944 3.822857969023793 1.3100646027038318 2.7975950366023423 +2.7800089423265657 3.9878025801680734 1.6079415320296788 4.34320506140857 2.9900555256985935 +2.8055379283377646 3.7598220570587775 1.8166353199344014 2.8188185975894635 1.383845916401196 +1.1726662156501595 1.761914035942115 2.9867732144940438 1.423712177781213 1.6704408993462205 +4.48712470003073 1.6767654402144827 1.758151040507025 3.5796730112211703 3.349038885864013 +1.7654926268509916 4.575156074558789 3.949357450853183 3.2344641875196096 2.899186276758531 +4.703880875216667 4.070489081776818 2.330154519773104 3.6369904982564023 1.4522415221495868 +2.4737307189453963 2.3841666741740357 3.4645956217302194 3.01491128855637 0.45851686732094804 +4.530396066611219 3.3673477304394206 2.879570782114428 2.17463458840824 1.360006054938344 +1.7081904949171567 3.3232469492928343 4.316077760660086 4.009921671651237 1.6438183907164834 +3.9390942827716082 2.9690498240641054 2.2660104714124225 4.004492126505114 1.9908050424295582 +4.231029238173344 1.1965549277895935 3.5966437522654275 2.705726247712439 3.1625572469597856 +3.7795625929962124 4.585245111147655 3.5156367939252733 2.0019639040364554 1.7147390290184727 +1.0267608012291531 2.00841821199885 3.158330287426124 3.5556683309044113 1.0590225648749032 +4.19859479239787 2.092014132963329 2.940838806754146 1.619302879354498 2.486792971300931 +2.612308728854482 2.3462719302916666 4.378133406992553 4.264003122251118 0.2894845420479529 +3.7015531317391845 2.5761020249959388 1.4951984233469195 4.046168135140288 2.788204917891929 +4.5432161648713105 1.6128778140348166 4.058946082986194 4.053410342411793 2.9303435796518555 +3.4692569235228965 4.306151922947512 3.263439911842308 3.85512384504707 1.0249307863824682 +2.507781165741233 1.8526521703976422 3.2096832955550556 3.1175782500568565 0.6615718705825756 +1.9770093710707295 1.845530908514295 1.5191392460690682 2.1989053296453833 0.6923644376315738 +2.5583339226464488 2.0216693246491206 2.0243494028665694 1.111312687529601 1.05907739768959 +4.904173951852714 2.9407624977481333 2.1966026022855654 2.477047423489141 1.98333906225057 +3.040228996995341 1.672870754688795 3.1413551526112062 2.7638450795225307 1.4185141585782863 +3.949699512254631 3.7494084821324107 2.181750546663127 1.4222064859106642 0.7855085467210149 +3.0743600943503298 3.2652695256151785 3.628318831714079 3.5679135219426406 0.20023788950758406 +1.7665898919678367 2.822525330847943 1.0276458548857317 3.2290449677406987 2.4415482188893094 +1.907797725559492 4.197928188809582 3.502313503714374 1.617784077524027 2.9658301867914476 +3.4358212125007164 2.2258679692529006 1.310802941711665 1.246680248175863 1.2116511753273689 +3.3090326359175615 4.533575309756914 3.3435603502174196 1.883523692842787 1.9055738770594337 +1.6024418198426655 1.8938701281466765 3.739361024220637 4.861521349934254 1.1593852920779302 +1.4756607534796173 4.825128414075065 1.0791026825258485 3.057607359828151 3.890168938167317 +4.90497623214511 3.6627989863039114 3.6827258991373326 1.589641409002851 2.4339283048042204 +1.253805566006084 3.2028457272409474 1.8744445622326342 3.984899490190372 2.872764792503473 +3.013269090993946 4.041155923691442 2.6036654778570254 3.9582848861852264 1.7004543752339656 +3.415317703780534 1.6865264322139777 2.267339901121773 4.715600063817416 2.9971147934116913 +4.480980289656564 1.1972867229698259 2.3149123129232128 1.549865663446441 3.3716375570003825 +2.2918110255360684 2.366348939298614 4.908150878524584 1.7946531855971495 3.1143897932745235 +2.2101056034855073 1.8244686287680256 4.123110543786945 3.865879597650816 0.4635554291768565 +2.171483979889093 4.440852408268784 2.1818695529381604 3.2497828267540427 2.508081303331027 +1.0248301612406658 2.3397980741066102 1.2578911460527111 1.2205246741064975 1.3154987134515659 +1.48854335599477 3.228496666001606 1.588211130769856 4.25602167400228 3.185066814932746 +2.6208032827849985 1.5653881120231188 2.4300642237545262 3.365949698344668 1.4105966128639125 +3.2882455178152683 2.9391262920083596 3.485248930238032 3.9673651803145407 0.5952481099641141 +4.294805692888984 3.0949706314585215 3.2283218937469385 4.986566261158513 2.128621016097598 +4.211358877580364 1.3326453730494099 4.653963729299136 4.0737820938255975 2.936597039314321 +2.484711718156447 1.9631641294301714 1.0753554830686198 2.1239490128186165 1.171136319110525 +4.510245726357363 4.548936759705853 3.5618238422326622 4.335168436615173 0.7743118607655598 +4.573872794579373 1.975542112505519 2.4467231160615053 1.1674254502808945 2.896191438955322 +3.980088157745841 4.966672945386193 4.594695306983926 4.824772569864621 1.0130572985266089 +1.4538275442393416 3.20546959110746 3.044846573718372 3.4815172764482765 1.8052509972241977 +4.597855726418446 4.542446973520469 2.1632885845171836 2.8831026630419507 0.7219435140924592 +4.624400718227797 4.10403374729094 3.653272604810881 3.749953211506914 0.5292720700670999 +3.220471056821047 4.921154378590558 3.8165786000755806 3.2140437348117032 1.8042649541582125 +3.4347891214838007 4.175497066822215 2.5385026765706438 2.2839679611070203 0.7832216682801898 +2.2153187265483547 3.419178550280175 4.03311487183786 1.960333104706344 2.3970195513070935 +1.6309861278222484 4.2987861216525785 4.392636848880116 4.8474181126616624 2.706285795138394 +2.426081951337465 4.970606113612547 1.6808865280558098 3.5343019530933075 3.1479758496800185 +3.3231087334475644 1.9131377208418394 3.5117897215939324 1.1218948846294263 2.774818118028282 +4.263972429880886 2.724222259865032 1.3131886278537461 3.7474842542104603 2.880386394663619 +3.851962115460334 1.1949604008514534 3.4213275015556452 3.5563707998112384 2.6604313191357303 +4.895132181054136 4.953308246855027 1.1353504722263148 3.117950806839708 1.9834536902688724 +2.3039590662858815 2.6829695136553195 3.587283499800903 1.0606703594136921 2.5548821656570593 +4.919616043453495 3.7145567470339076 4.703843376826706 3.3951612808343365 1.778993180497961 +4.637605936657074 2.8502717685144776 1.830991217445955 3.5494584678807923 2.479454197888531 +1.9544945189711695 1.6475785551362319 2.9199380624609175 1.9753783243063463 0.9931719427165474 +4.87574589166365 4.19090250885394 4.155413953239186 1.3070448807909347 2.9295420856949566 +4.371549978943935 2.368303336663574 4.667088666512484 2.015897241322679 3.3229223708668685 +1.3300521620209986 2.9941544020570183 1.1803384594711601 3.6963347447069235 3.016533370047986 +4.073151068492147 1.6726383503903888 3.5511385688047246 1.1837817855517732 3.371474373175934 +4.41244788269732 2.4363278222370557 4.57482444837549 4.801444703786334 1.9890719528252252 +2.895498802924316 3.5890850861528496 4.794352935556522 3.104460353227573 1.8266906886753365 +1.5262615038825653 3.101611473466893 2.3686508460408646 2.376175655552163 1.5753679409672914 +4.031981890796798 4.182682880064547 1.7812749514385344 3.7501787031483267 1.9746626982001694 +2.576107324980469 1.2915262934017928 2.4877900385802287 1.0624202295140939 1.9188088803445136 +4.216140983404047 2.9063856599853204 3.6231279944237254 2.531639807779405 1.704935620135787 +3.6180141793416225 3.7148965925146396 4.944078102044735 2.138656798860556 2.8070936732396095 +1.8894431924066115 3.0079792984390195 1.1676706354873403 2.1949383709498527 1.5186843058451682 +2.74479471799986 2.6516983621567305 4.937438467125647 1.775095612767792 3.16371289152152 +2.5166483113698246 3.3506590127846034 4.653641622686107 2.28241632450822 2.5136195545056492 +4.914118853748981 3.2073948570632176 3.6120384731430115 1.136786917608919 3.0066222017468327 +4.042512455711673 1.6288122278611512 2.575013209852436 3.4610547651665113 2.571190080034739 +1.9162276952578026 4.798246402649745 2.637605637866931 4.357219700333566 3.356054879406791 +2.513524051894324 3.0062975880880245 3.7923464334902994 1.0137410808491678 2.821962697077832 +1.1744444637956786 1.296576967806343 1.2171693373462134 2.133799803060599 0.924731182134401 +3.5330173921737758 1.65419048266364 2.9281600370258776 2.9549014547348014 1.879017205701026 +4.174425199428674 3.4806051112970966 4.183999152753924 1.669527032189539 2.608439449132463 +4.436388541605614 2.5221161252272863 3.3049646271924478 4.419950714780937 2.215317778473961 +1.1527566363946797 3.2406702777841296 4.972173224275616 4.682406921648536 2.1079250185996465 +2.8756252644883378 1.040978485497957 1.1571116889312179 1.9618809759176807 2.0033927245890855 +1.2490068970417 4.051390869762287 3.8122548997605255 4.494464188674812 2.884227009866275 +1.0704470342746109 3.3613565921328563 4.946037757537456 4.904557675476607 2.291285054176812 +2.1783417863628864 1.2032479635573141 3.5101229080618612 4.778639553802693 1.5999820135848886 +3.5594655987218466 4.006580288084489 1.7946952701522707 2.6815611207442003 0.9931981586722758 +3.2409160628171256 4.834278727647076 2.7850534095054744 1.9030989671689325 1.8211667194496943 +1.3405158114949067 4.7340568266318375 3.9919272115724227 2.7775262241883043 3.6042877770200468 +1.5042992403220015 1.5355046992309886 1.5838514559793295 3.915392606427849 2.3317499687789267 +1.695888988464434 2.7269928786745603 2.7151277021091373 3.736696771987502 1.4514746284171156 +2.9686421228318114 4.513123839862851 3.709414989329223 3.179744709326524 1.6327811793872702 +4.681185242264139 4.310241238644916 2.1396699948157174 3.8647174336985106 1.7644795607252417 +4.568497241419356 3.5070009474464987 2.5397519770562336 4.052670190906397 1.8481601402253218 +2.8300196587123847 2.8445754546453097 3.200841044809127 3.433417095525889 0.23303109355244142 +3.1010022890351157 1.1945479370332879 2.1390008290289715 1.2274404838132047 2.113175444499722 +3.7220393909683436 1.497430395205701 2.755664167667359 4.962954344607963 3.1338498862017237 +2.2184780650194775 3.368819653129031 4.199706314815144 4.66883843220486 1.2423247211985153 +3.6925588428787144 2.306763023894365 1.42858259261121 3.834913021041104 2.776842844437204 +4.798162111797068 1.4355919192288575 4.849838356099068 4.382651223520687 3.3948699705283296 +2.0629021424145333 1.643965511998517 2.348486430025998 3.6163635465581585 1.3352978255543708 +2.094134217270973 4.845954935711109 2.8207940207061046 4.041641257110204 3.010479237774596 +2.09382707502855 1.1271116674787929 4.244940763882863 3.0588905924084298 1.5301155800947281 +1.9339969879886825 2.0757583912539963 1.1377197231866636 3.267300807544105 2.1342942370509195 +1.8037245273142637 3.8538728064192633 4.388671791835154 4.271226910824275 2.0535094999519363 +3.953606083742663 4.947154922791713 2.7302705700251955 1.642102478654146 1.4735158942657614 +4.947745173159223 1.5845217269445482 4.837082610251392 2.688055651182498 3.9911888980569454 +3.252998221520758 4.600212378986733 3.5481390804930975 4.1748605114846145 1.4858552211237845 +4.935079179829971 1.5417491587886274 3.3539575124694765 2.32166638875175 3.5468737778227823 +4.305877013257707 2.557020205147409 4.27185646625005 4.904878662860686 1.8598971037870602 +3.095976404292797 4.546257221770761 2.6222818750887487 1.1080926149098258 2.096683944991649 +3.161458398775367 2.958526037380856 4.022032511933888 4.59274824792109 0.6057210534598956 +3.223837281671985 1.1478190715482368 3.026104384186065 2.972909319563345 2.0766996228789627 +1.1316786988546932 2.2178453891131253 4.3494573432291155 1.4023985535713135 3.1408459988872846 +2.5420285655683617 4.5526975369539056 1.7394540794955686 2.2593962818861377 2.076807551584729 +1.8579143557684668 2.0757355858140656 2.763533868675697 1.3222115833562222 1.4576885875992618 +3.676371310453187 2.4866268252547927 1.6214826084273586 2.9970946683148387 1.8187359564730305 +1.2134111812025115 1.5274902832611352 4.310484312928847 2.6853753156015343 1.6551812394853125 +2.3975864081928027 4.131035585592276 2.2468436377456253 2.5989650867289154 1.7688514820247068 +4.566208816257699 1.8332780308240784 4.717747823862 2.4137339421872226 3.574547614023473 +2.5566133952131325 1.4791606223637017 1.2868041426951682 1.3248639446637092 1.0781247730419756 +2.0688773944940486 3.4481192489928416 3.621082539941551 2.6989100178798604 1.6591293661577113 +3.4179603851787888 2.246485339573415 1.0295742268680663 4.354256645413954 3.525034321345573 +1.9739725047156482 1.0387546273093884 4.648600907177833 1.7574491818932159 3.0386494988459085 +2.8881925988887747 2.9365022204061244 4.0661159606528265 3.587082602403051 0.48146316354131113 +1.0681410036170682 2.713897502200911 4.08052374902033 2.549314425480331 2.2479137984199418 +4.904555853508834 4.679422198943758 1.9615258452881275 2.2706095980404184 0.3823845298037907 +4.5186568865436705 1.30971472260206 3.0865103521169637 4.507279845598216 3.5094010550419057 +1.5790909730269247 1.1994430728883918 4.3739555967653825 1.0095844115137291 3.3857238517385335 +4.236378806117026 2.151489510802352 3.9871803520820035 1.1301896295702392 3.5368289981614898 +1.7786459364731746 3.99954298925281 1.7040209255340977 1.0693539132468257 2.3098021420742776 +1.1850980904845279 1.3965018859333993 4.728365331236793 3.193054581136688 1.5497969751238818 +2.7022901439304734 3.634023361980633 2.8400164917373534 3.630592562184174 1.2219399792057066 +2.6973113530059356 1.8356707356165614 3.9665846312206656 1.9521814992379425 2.190946035774717 +4.157040390036537 1.728628195151928 4.057885805414893 3.7221951211643036 2.4515044409009157 +4.0077356188822435 3.208687222397311 1.6241798131389933 4.986748439108571 3.4562040021214138 +2.301920304385685 4.2060103862822515 2.980384000310522 3.950771939230361 2.1371035987939297 +4.844224256192522 3.489771479569086 3.8881976149867032 4.448641096577013 1.46582373434189 +1.418207152348809 1.554918280027632 2.9122198674123965 4.287719575274103 1.3822768820894227 +1.4186216389029043 2.5442073233020515 4.920792976918021 4.097329249007412 1.3946453470716966 +2.7755971688074457 1.1803016239487913 3.7039999204949163 3.3336193373191105 1.637726977197213 +2.6211962466107015 1.1815441965154467 3.065846454058085 3.8218276354148415 1.6260705925355847 +1.6481401545595347 1.392869364699591 4.65503311052324 3.384979634246915 1.295453205931151 +3.177221949579576 2.0662814590782226 2.431500699931107 3.1411966977077936 1.318278112803074 +1.136825497310574 4.260877478765002 2.781827171422663 4.925024860178377 3.7885349564069184 +2.62019610668949 2.601985568923376 1.1908345224748058 4.726230340199152 3.5354427179164603 +2.885120615770916 3.351536087997816 4.717288548700556 1.207204370064073 3.5409369288151398 +2.660374095785889 2.321559470770344 2.7129062415316256 1.3179654787433028 1.4354981998640375 +4.3606048194669 1.3044970385224492 3.6439539850779985 3.9603052330394384 3.072437612195889 +3.735009004567502 1.4001050720921335 2.5820562714955764 1.8892343691044364 2.435524289002641 +1.8408816661222618 3.3071905465486 1.3472101543620019 4.542560683651792 3.515725634609402 +1.8683441494634816 1.399356609957639 2.23940061685304 1.179417490626447 1.1591003149412245 +3.329429963651941 3.8577759360007384 3.743159935889204 2.4943929934077342 1.355938178211571 +2.72451502012104 4.613729284546463 3.9446581473991085 1.7959872087785098 2.8611042167983354 +3.6112690005192767 3.9652121822679853 3.1172112763512607 4.090701173529765 1.0358370314943437 +2.595345398879979 2.6400057849392886 1.3333426819472347 2.138328236394103 0.806223475812444 +3.347916448439522 4.334507676663898 1.4904902720590343 2.327368263663023 1.2937260237161528 +3.821608583097071 3.375986245063538 2.0199661858744373 1.272329758333472 0.8703674488057841 +1.0885439212500492 1.762416852724531 1.3222898168000885 3.958487080254231 2.7209632007098374 +1.9766710126301485 1.7391223971361245 1.9161510249821476 4.188529785552202 2.2847613827734885 +3.6210013421465055 1.2200125059088616 2.53396392342853 4.644928326125665 3.197017063012374 +1.3270531229802214 3.3578972886923704 3.3842624902701015 1.796958271373661 2.577569147226416 +4.095508237692854 3.47228081564765 2.552681118907957 4.365326026067393 1.9167926280743446 +4.65757527178006 1.0426548403143912 4.503158127319782 2.8576179127220045 3.971832363492503 +2.3409487642122184 1.61205745353727 2.4355389300470507 2.938000619128451 0.8852967252689788 +3.694740147902254 1.9614401863171596 3.587252020022654 4.9269911440449015 2.1907144216594707 +3.0927688895613157 3.383880093736956 2.4450666537827552 1.7023348649444086 0.7977444724644613 +4.738273437293685 2.414675993831574 4.090481500156054 3.6616840761235965 2.362831418049229 +4.356436401172107 3.4736800956245886 2.082178696272644 1.8298907880094117 0.918100149025007 +1.1688294000477906 2.4934587068806624 1.7463443274608612 1.6881772068105416 1.3259058090397233 +3.281986588069998 2.0983803980788216 1.2864550927723815 2.5831618844439426 1.7556685668293381 +3.1450637416067275 2.3630175526603763 4.101889149907639 1.1721306409402867 3.032339222862791 +1.2984002692460965 4.266853597058515 1.963173867339505 3.3459566804113683 3.274721891631037 +2.489763178204145 1.025119448430642 4.020302506116969 2.067571642206565 2.4409709301900975 +1.5433752880772653 2.8559477538352507 1.2307917394490198 1.807240563487241 1.4335758524058104 +1.0971680498873844 4.097299316489035 4.283422889262251 4.071892031050989 3.0075792459744792 +2.7074654299327943 4.79451643279995 4.6493464948712075 4.884531200438255 2.100260396784518 +1.335269516229432 4.13221973730653 4.242991654627196 4.3326339172121155 2.7983863697539286 +3.4710919244779417 4.9296027430039935 1.7024863180498166 2.271234150471523 1.5654800875903607 +4.218188659936313 2.5750648084228183 4.184432962241514 2.202421537832841 2.5745339923759096 +1.0967003604995438 4.83976325065786 1.1186105523441334 4.708851763601935 5.186554902311766 +2.0978726749918715 3.8940889052913237 2.50679022754929 3.42497733711819 2.0172903395817037 +2.999713510243093 4.543665883996804 3.6285545549915823 1.7787431819901713 2.409479414335197 +4.629422992359428 1.5980193536912792 4.534075592068857 4.538773268373781 3.0314072785907804 +4.962507863558375 3.799446307345099 4.9118713441427975 3.6898225410978607 1.6870434080262457 +3.9056115591311555 1.6183443070229098 3.382628664387764 4.221548792793229 2.436263217390651 +2.5126679753836734 2.725524826143922 3.5245552641176516 1.6816856181691606 1.85512171322366 +4.37716525537786 1.2259171369870439 3.0376899756815408 1.8229561345464407 3.3772685721542035 +4.89392115877434 2.4986247072970498 3.912667876790727 2.3396852435834337 2.865609787607421 +4.5163518383248515 3.594089604780109 4.101166015409065 3.206201789665623 1.2851181240584446 +4.100526002743847 4.834415126687516 2.954381745180065 4.5107234577751925 1.7206954328428785 +1.9651118567385706 4.038242278214325 1.3225808568361082 2.8267092909178526 2.5613028112000813 +4.068769768192593 2.432770551117227 2.1892438367899 4.979586455867016 3.234579628036594 +1.3193058968536815 1.850399777131949 4.0457682420172505 2.442115515062025 1.6893083727786227 +2.6141869088646263 3.0846509898062053 3.3696250650460504 4.612511166825138 1.3289478219447977 +3.8909421446620067 1.8206851554381456 3.9750192753310647 2.4701166756438298 2.559432717610612 +1.229249043433577 4.9007104198795215 1.0499186653166164 1.8721128080143101 3.7623970878976536 +3.679926630029269 2.844350312656799 4.699514356324506 3.8616610745671247 1.1832945127504613 +2.9176566948083082 2.3271218457896796 1.875262922311959 1.4986822006327278 0.7003887833524357 +2.2900128355260057 3.6981667846440223 2.2372504079396216 3.7009478981915214 2.0310853963795754 +2.781245870253885 4.237820553408177 4.4708816131818345 4.471493690846389 1.4565748117570527 +1.495453797086491 2.338515561595337 3.845572215743475 2.255710551771492 1.7995591819511052 +1.1290368236394897 3.164382848840836 1.1331301031697851 4.6553649138732425 4.0680181297573075 +2.6091397458252965 1.5825080116589372 2.9260102087381563 4.322892695482599 1.7335666700103474 +3.425404178313822 3.1166594506905145 2.446417736663464 3.6240181052306157 1.217401303960482 +3.1517872218075067 3.8406851345527637 2.997516619445248 2.9665016049154067 0.689595725995353 +2.63702159898234 2.1625163900024975 1.6037561913903033 1.8221800028856934 0.5223640060122612 +2.782904239110429 1.8959969124760998 4.191357002886269 1.590300268171588 2.7481085755919925 +2.831712419832189 3.5117880560261385 2.6751274022889704 2.2282501935687002 0.8137580172374494 +3.3732043395904405 1.686874355991486 4.327169262075362 1.1693626276646398 3.579867533011972 +2.614034532673374 4.026262774736582 4.3060329864371685 3.7987618899935987 1.5005707490711655 +2.3981785921295637 2.355153043538159 2.408328507375372 4.151201663827427 1.7434041520292252 +2.098240631178409 1.184206655089751 3.5986309321870746 1.0803740510134348 2.679006500369648 +1.663040156329258 4.5626457034181245 1.0498085640092176 1.3060284817956118 2.910903807235648 +2.130993467712639 2.8230706690994967 1.3454314240741745 3.732821580652455 2.485679507178335 +1.2347264399356752 2.0915414033056496 2.968740332615966 1.1334960048259775 2.0254020894972973 +2.9759696071677095 3.122956189095711 1.5029871268585393 1.7561186550732382 0.29271253106620826 +3.6309792414953277 2.9216136562934483 1.980173483874041 4.055480573779228 2.1931938014866676 +2.0512564248484813 1.8165208557416492 2.0791015714326653 3.913811973530922 1.8496656581586455 +1.8653814018072743 2.059594995388761 4.104706861881181 4.619774930269436 0.5504671061971309 +3.0594338846146347 2.7439954539816953 4.454691635064812 4.719015679319308 0.41154417003673455 +4.5985897093521935 3.997971270569121 4.30454322258465 3.2087258624801263 1.24962322150025 +1.423116967774218 4.879019691659684 4.47458890504255 4.046008710001639 3.4823762893375387 +2.3227629330577404 3.178702692244659 3.7384889498464404 1.0026143143950637 2.866643140026879 +4.59065817646961 4.841306659408707 1.8136796698175854 2.559416924195736 0.7867329372583387 +4.567809969694279 2.6671552963579885 3.1168006007051856 2.928480148493051 1.9099614603432353 +1.5570833052902597 2.388883115046907 3.4783125215649053 1.1884271737607555 2.4362811474867443 +4.371790017827148 3.550342084182782 2.303502976803763 2.7865745817762764 0.9529611131726823 +1.953117470978361 2.059264906241841 3.328429101519727 3.8501028880649395 0.5323634262244491 +4.996616048050269 1.253224545193666 2.2147122488482966 1.15158238494474 3.8914296924372938 +3.408567753112602 3.6244689186498893 2.577736636808586 4.150150502044453 1.5871668711469373 +2.9273663130440544 4.488846910574873 2.231790716074112 4.288682678219546 2.582445778792595 +2.57561993112223 2.050756037935583 2.381797958684796 1.8127533982654285 0.7741406965881045 +2.0159813501356902 3.7604938618837256 1.6457910516124512 4.746680030747832 3.557925851471431 +4.642758497250506 1.5768342231647416 1.0650687456468764 3.301946621522977 3.7951962117935745 +3.0748759801378474 4.531867529624491 4.257408704842458 2.12509591355062 2.5825534292986623 +1.2128820907262146 4.431929538324361 1.5605866175953094 2.054725599010651 3.2567529539162674 +4.393782803019661 3.111353765729328 4.463735413735003 4.79826817190505 1.3253438806491957 +3.911151466404857 3.4767634035428756 3.366464694862768 3.810478822865687 0.6211614403866172 +4.442866603856217 2.5424057913192057 2.8570701107433027 2.4364674704765843 1.9464475027567971 +4.432261888699035 2.810761504148757 4.515370555338803 3.984766656695482 1.706107849566431 +4.595845234577919 4.105055089205002 4.8240691072036865 3.2758452930162107 1.624152685437051 +1.4933379890395528 1.3635244332108378 1.748160897435028 2.7425402171121047 1.0028169277980608 +3.2837638615798337 1.6774166776394264 2.299004322037026 4.666535923073189 2.861041271505557 +1.6733663952783662 4.385992803154938 3.297515406312255 3.5229943860059256 2.7219814104789646 +3.842621788294248 2.6022196946546603 1.7306069165822144 2.2941230137075688 1.3624051327064444 +1.4567496159733144 3.010238824665508 3.397744689916741 1.8182872636891276 2.215403909626562 +3.540620908553113 4.671766946115483 1.6586270375881975 4.213412326780368 2.793996999312235 +2.944918244757837 4.771658743872333 4.476317931277658 4.320408477497112 1.8333817411775504 +4.268359401892557 1.6135290279325853 4.081049825025193 4.2834303612733535 2.6625330412884147 +1.394794560351024 1.6473249366928977 3.822799183013469 2.8442296811776995 1.010628448490579 +1.0849064783148838 2.7773202443246734 4.721791104161334 4.370816591174616 1.7284234041882511 +4.064519537634604 2.0713807115745637 3.5499885005181695 3.682443407263491 1.997535151697939 +1.24023293195962 3.9589260111001137 3.742492656834509 3.9406167261467795 2.7259026404857662 +4.174833385720639 2.2138150115591415 1.5586465554713187 1.3803982861947977 1.9691027167974449 +2.9436475961598405 2.139683811736583 4.590372012716409 2.564153053164817 2.179890143725252 +4.08824090079925 3.0797084619832953 1.561215701191962 2.0900497973325978 1.1387726644879306 +3.1853624753124716 4.191096878212997 2.7290749113958643 3.6952523138702804 1.3946327338155688 +4.613150197713884 4.333198717024499 1.4026294123220397 1.007723324161724 0.48406988132527107 +3.0434448992292444 4.603558053551371 3.95399094387797 2.47898374141809 2.146997741404834 +1.6072464397997366 3.541493017462203 3.732195670378754 3.782026422011228 1.9348883500107237 +2.191551242592258 3.7811848537832082 4.177549907561801 1.4728956380738372 3.137210502227648 +2.5695617736871346 3.218278047365891 3.6539737098341782 4.602093089205306 1.1488094538585343 +4.1883818389919005 3.7437137891850987 4.519923769836794 3.8473038937220494 0.8063170420272652 +2.1416987279562805 1.6653936411070314 4.818038962146034 1.0725968375136454 3.7756063413350254 +1.9030442321144996 1.7170646152924527 2.1122505645879435 2.4051054625994213 0.3469184474232935 +3.5879220516311365 3.516238250066652 1.6687677722771803 3.6256158317964995 1.9581605898013732 +1.4409453985572402 1.8926810833670462 3.3841995632771957 4.839179787140711 1.5234935447072004 +1.2380234332547544 3.68071776912298 4.804958823992297 1.2643436345403614 4.301477831892253 +4.9659196400621095 1.5879942991583937 2.3727748586235173 2.699803321792048 3.3937187898295074 +4.04576507003142 2.5486023319013262 1.4086874730996963 3.343791602749 2.4466557291599056 +1.3628174074730168 4.238127765841224 3.588932842944283 3.3573819831648204 2.8846187716237504 +2.7649948063023553 2.0399568438708755 4.524825182397034 2.7639097322909243 1.9043380134286023 +3.9126556313020466 2.3445477775920187 3.2918883820182945 1.2139907180519671 2.603194372839606 +1.2728041964448624 4.786837240296701 3.1679765563954274 4.016972045365873 3.615137836040942 +3.286992359462249 4.675941165043836 2.448993679402675 4.919461786053466 2.8341473939273625 +3.2832582249012763 3.114708783133414 3.2243771205677225 1.996920368615978 1.2389749764350306 +3.3905835591972715 3.3007120951981133 2.9797081453502776 3.081857099375116 0.13605619739549 +2.9900140526234122 1.6682886800619543 2.6573213831747693 4.746659877339715 2.4723052610210106 +2.543136999994803 2.063313316330157 4.394016018898936 4.78685141861215 0.6201212935171234 +4.336484977689483 4.619930053293966 1.3023129129818045 3.2227137977410356 1.9412059831631647 +4.168588185005539 4.9285590738210825 2.0903752721445064 3.822364491334901 1.891386371749263 +2.3873040968763863 2.3267840287322765 3.3950558773604826 1.1215928149921384 2.2742684482271254 +3.9984406640423518 3.5243353228620404 2.3379739523195893 2.5377230083303663 0.5144662864687014 +2.879450659104018 1.7343871994409321 4.380041811734256 1.9714222471662342 2.66694929338288 +3.660581707728534 4.733799471390651 3.7685791018413863 2.714431940226703 1.504334605923898 +1.2254347281453137 2.3907680272138627 2.308622185451169 3.82941004086287 1.9159325142305275 +3.3958612609317353 1.528940529920337 2.6654992118054297 1.6638015128597847 2.1186767794907118 +4.544909719589622 2.1282250653276664 3.1398693924379955 1.0818407847594513 3.174247386100919 +4.089180943203704 4.391839056539339 3.661129325641686 4.249635488684593 0.6617714390236029 +2.9272582555065654 1.389438598105572 2.068735283279782 1.0310334552318214 1.8551858081127583 +1.4477545034055148 1.828970614682905 1.7629681551919156 3.3998224671921866 1.6806599186662767 +1.252417412373351 1.0124638406675497 4.536870048882406 1.9504388255771379 2.5975381016383103 +3.672147588163401 1.0074432816954362 4.1433608031680516 2.4003358838361812 3.1841458682542783 +3.442718280040092 3.096064994612733 1.0247681883052873 4.973484544770203 3.9639032990363354 +4.641481914556879 1.7169662079274572 1.0250052931004063 2.7938114388167605 3.41781615939859 +2.27684227978142 3.2046035736270535 4.2441502835451175 4.900095825149077 1.1362242612742592 +1.850226579212623 2.9271317411821816 4.26345859193824 1.5112040390022514 2.955440720439772 +1.0192731644806976 3.9105803519342133 4.716465599408668 2.0359951255510107 3.9426614378415823 +3.1350172982221927 1.7275527668609891 3.0641151260808854 3.177895506052854 1.4120560831306872 +1.753432520449381 4.373443452623071 4.5259382440037745 1.484602815090856 4.014246937580021 +3.640980955249682 2.2585911169162274 3.3264428153316765 3.529989309559695 1.397294829461596 +2.535167061164254 2.910221593414686 2.935042152621768 2.5996071140485073 0.503172502492172 +1.053804964442361 1.791210039484799 2.9443906647716838 2.3141438328455126 0.9700398516820424 +2.8428032077965466 3.3845738832610377 3.0592307642231087 1.1550376986421078 1.979764303092674 +1.712129935395967 1.3276814531746495 3.7758476154721423 3.1082000043072155 0.7704245376261765 +3.439312054726725 3.5872186624227145 3.0631941075386178 4.681648467708326 1.6251987203269869 +3.724317365933252 3.5482572271775354 2.1151780518285475 2.7684441796363384 0.6765750558509138 +1.106735781408399 3.180461597743769 2.039983112294602 1.7726404636208315 2.0908875754415166 +3.6270030646188234 3.5559558734547076 2.449880549671379 3.9089511442490843 1.4607993371211698 +2.199501769794254 1.3654487149406438 1.1278074843066244 2.9196138487005676 1.9764145683012155 +4.993569295789065 1.6686505839601344 2.454979169495961 2.885945680758275 3.352732702453294 +1.203562327569415 2.1141110990028933 1.3838892087770485 2.0652438934515867 1.1372525099936936 +1.3281097861453568 2.582677972567875 4.224000554567763 4.643003683756742 1.3226885335004772 +1.6686064956146782 1.3740980838035655 1.1276687573026964 2.0886287846489022 1.0050768024309011 +1.1005493155580717 1.5148300645300616 3.890737442287574 3.1250386086509625 0.8705878719585174 +3.9587752622200503 1.950659145858189 3.4235921512143874 4.024091202171418 2.0959793527114092 +3.6770301488390023 3.3470230869672823 3.597471828063824 2.407451722709879 1.234930164840028 +2.3681938259922797 3.3606529293309793 3.5268405946926316 2.9381214918007794 1.1539346835543347 +3.8639686028830904 3.3981450515479494 1.8878814462961908 4.049849779398107 2.211582839125399 +2.896217888912435 3.6277807444359147 4.18375340121431 2.490449907143977 1.8445760853411457 +3.8089897488896254 3.1780761683015473 3.167637523490606 2.9298187776428537 0.6742475080021187 +3.9424486517095354 2.0234930902881696 3.2607144437811075 3.4799893254785492 1.9314429632928372 +3.2585382376946725 2.5517759160083386 2.7508069994134163 2.501081340280764 0.7495838073122274 +3.487068305271298 2.4352262238037463 1.902097866804707 4.43682007341668 2.744301082067684 +3.2846279858337533 3.7364727560798126 1.6095890637178027 3.180271510494489 1.6343827718778463 +4.179216434408858 1.1304649380877483 1.4742576824730982 1.2799973461542993 3.054934166980836 +1.8449954464387592 1.6398652240178042 4.560109362840789 4.631369401547108 0.21715524692462884 +4.083539872967451 4.758493044316969 3.3071902752132436 1.2582797351240402 2.1572195495135404 +4.988006727764146 3.9282128283966253 3.3153729404920353 2.3584164107162775 1.4279106796354861 +1.380381496315028 3.0088461299799447 4.521637539872792 3.9750047338935026 1.7177614757789286 +4.9184174813935915 2.199763952704786 4.638362652508302 3.1006259993556733 3.123413360972438 +2.392515020214231 1.449291292172536 4.263134644973293 2.6667858869940293 1.854184553447367 +2.2474324138558033 4.243031803274859 2.3133517477998478 4.755762334603908 3.154011160028173 +2.564633552856311 2.216983295339932 4.589642180913434 1.027397304386756 3.579168794830969 +1.2930465042214188 3.1384624036566247 3.2137853539848904 3.0771824303806934 1.8504648606837861 +2.878388438759891 4.715715573600092 1.561940476002833 2.0307239182704144 1.8961879959973236 +1.7138490662595771 1.731071777798769 2.495112044467775 3.475245015665591 0.9802842766370484 +1.9176949098611349 4.7170399036855954 3.4695807234548948 3.582793919046146 2.8016333846715296 +2.0875792692569317 3.54853080754788 4.8273436464845165 4.222875404165921 1.581063329916427 +4.851244828883615 3.963552292020964 2.9392761392794937 2.1598046388793755 1.181344090406204 +4.3976331287551425 3.767234509954672 4.589090045323077 4.278210191446455 0.7028859808901378 +3.9611647974548245 4.481407218209128 3.2186602630442587 4.973536365115413 1.830366714615611 +1.72068875299072 3.0257001937774275 3.1643194544865585 2.867949503247963 1.3382413865149163 +4.434481515977136 4.1376658672817594 2.081101609044025 1.9362485464632853 0.33027555018420085 +1.6144192880032073 3.8173977209899386 2.400647892960308 3.6568713370935684 2.5359833039266455 +4.479410858806521 4.7293604941317975 1.3155612921847304 2.0342773719976117 0.760938646397221 +1.990370915137595 1.2356092907245642 2.9852166668242237 2.492842796463578 0.9011643234729828 +4.827870809578691 3.648626512601332 2.872618755196932 1.8378668877408755 1.5688621797842608 +4.879894531988943 4.363850953133593 1.4238373884954703 4.835446438530788 3.4504169727093448 +2.110867105888343 3.0153279439748704 1.9470092598360358 4.192051524880576 2.420385130401462 +3.0081830214312397 2.454863976622158 2.160489585180489 4.0293567548392435 1.9490578398746299 +3.1390697003374433 3.2238990951627144 2.301809517595742 2.345535877135317 0.09543595100907185 +4.046041231643869 2.118824850178008 1.7804163945437814 1.28801086111856 1.9891269920088421 +2.739003816871855 1.5513632002694138 2.5706323884805005 3.602883257729387 1.5735412582035808 +2.953293226652 3.9779859134664686 2.203452247844259 3.0888383650353277 1.3542169984628505 +4.385486125672134 3.933997706880241 3.830836761617746 4.946071738527218 1.2031586952790037 +1.1590139558051802 1.4859184607824765 3.590625152748388 1.9002676504712355 1.7216779724672975 +2.19838990948973 2.5400994274207225 4.5129187912690885 2.721378060136846 1.8238375985680528 +1.9060674506326944 3.9692821457315777 4.689331602165902 2.655962368656401 2.8967991504167134 +4.73993358985669 2.09905806844419 4.84067230910462 3.139053841308188 3.1416124728460098 +3.5637451301798184 4.788837126378924 1.6907351470598364 2.2489384262359695 1.346269400987075 +2.3556485576322 3.2795095235597147 1.5053486963125287 3.8781492726700972 2.5463113830651842 +4.257955510651801 4.835995584914862 2.6455697110711895 4.51685888877644 1.9585335110870168 +4.194494108690783 3.055312971298664 1.4818355709216204 3.5741234378263105 2.3823102614450917 +2.0595242741901263 1.0328005338862676 1.3680102458813965 1.7556261893535452 1.0974551282568912 +1.4505273245403574 4.948490315019352 1.4141350889021589 2.2459665891440768 3.595509522662327 +3.1408099016245417 2.8685598843917455 4.94946457403692 3.8205370823355427 1.1612912440048884 +3.4937383442882997 4.443692518693973 3.123529849672642 1.9336058109490901 1.522607024613683 +1.2261329839721111 1.285173207032344 4.414006965150898 4.2539205513749625 0.17062651556731218 +4.728699616691262 2.490130784026758 3.0758755697822426 3.362908518826724 2.2568957291851333 +1.608243852802651 4.109434483539882 4.592164423858504 3.9776052171968277 2.575584902460087 +2.7555316092808506 4.897663381997683 2.3911128235419206 1.122067595937453 2.489820138361129 +4.488008556020147 1.9049998631361698 4.665070734024786 3.525558514082698 2.8231935829679724 +1.1094700869088445 1.5895569383264831 4.121389669578421 3.938307698412871 0.5138116318943792 +4.691004430612586 4.284153439919262 3.401766781235313 1.257272286456427 2.1827469772662815 +1.1140546775393947 2.8508912822723045 1.0247678948363945 2.132705019951192 2.060127681661451 +2.9268569327181737 2.870877178710992 1.548236378649166 3.588229118873845 2.0407606701982717 +3.60414917633986 1.641246120992554 3.495177947164001 4.1758202520192 2.077561636113448 +4.456313855294626 1.0558922034714766 3.109693223031514 1.6088689473990123 3.716899368629113 +1.1911796308633633 3.957730635244369 4.622676928290729 1.1932450296390194 4.406223735505429 +3.7673567885262247 2.7050552782316233 2.8172087500048626 1.015007125039837 2.0919883354839173 +1.9585019479673185 2.4671099149178985 1.5855501650414245 4.023991447043995 2.4909190974056026 +1.1191300952680492 4.929587521365054 3.35063004871608 4.15828228995969 3.895110773634511 +1.692067023643252 1.8701104891340194 1.4045704494596971 4.330580793562332 2.9314221820474065 +1.4950780137027309 3.021267361526014 1.467785534446851 3.9106089169386236 2.8803888632366643 +2.354621701817455 4.1700617862452845 4.835223471926183 1.5335026987323452 3.7679149093745514 +2.1614779589690265 2.111389276024348 1.7334483229404105 3.0586931905401444 1.3261911005803684 +3.3009222692051248 1.0356406451598414 4.793571177527586 4.789272776400635 2.265285702177428 +3.6087888359346385 1.4397447882865833 4.569350244382354 3.8631796176639672 2.2811025918790455 +3.613898722737106 4.98304238992473 2.4506040247824763 4.309951482164099 2.309053344700265 +1.4203682548525607 3.7605658229283443 3.1591539382410794 4.586385720865778 2.7410792069843377 +4.571730534537326 4.4385485544655845 2.8896780940784965 1.924592991366528 0.9742313356140833 +2.029919689771222 3.2887786153385123 2.7967325904028812 2.6807850892085203 1.264187334817767 +4.488685026369485 4.986645068594669 3.0371163485765824 4.801300067526844 1.8331143984656502 +3.3871442381651833 1.7930523052968583 2.547632316857071 1.1256325774945228 2.1361676781524026 +3.599627845884734 3.4564785369627486 4.707810020469539 3.1265301898176556 1.5877460840673776 +3.9221907885080887 2.5922309695016708 2.7842038019143414 2.5569237084789393 1.3492402903277048 +1.4139289594708027 3.7065317064827785 2.2813446861872486 4.006578675320652 2.8692263195621246 +4.460048031032127 2.5659556016547875 1.7796132913362115 1.2248263834717004 1.9736703484022897 +4.132576906690684 1.7987456905345733 1.6611169170104958 4.064206357553577 3.3498667144760206 +3.5675516637208298 2.5924526329734454 4.982341090841017 4.478876094654558 1.0974038099758539 +3.2440648008127804 3.964549835939061 4.162683346938662 1.4755827123130758 2.7820151880329744 +4.181262794556357 3.3072809928362386 1.4627610464262828 1.3606656718750814 0.8799248009021535 +4.927536958509954 4.824681014995994 3.1039723311034066 4.137375689790526 1.0385094351338195 +1.001908804787217 1.012717024518087 1.006792100468385 3.0980739961332424 2.0913098251453204 +4.521397356666364 2.3378757296676356 1.239113276237624 3.4726696573512923 3.1235461903395576 +1.4024248573309772 4.914485559915425 3.07276182319769 1.6774057954402903 3.7790989432451854 +4.450938823906645 2.957001064970312 3.555152666134262 3.610062771795339 1.4949465365956818 +1.584826459426386 3.355053620806056 4.944232139380064 3.6383949744219017 2.1997533735108346 +4.800138077373243 2.33988850063484 3.9644220280983986 3.2217106133154 2.5699121046235134 +3.09502080362145 4.559794807712426 4.627476769643622 2.052833868797605 2.9621527560099774 +1.8349015343610318 4.820186216293008 3.4508893352564733 4.1725813407999635 3.071280511943363 +1.3218562191198853 3.576524621654135 3.657833791021927 3.3083981700435845 2.2815860401472623 +4.543953137996127 4.064153343033238 1.5860969895499926 3.4003188962355306 1.8765950468718975 +1.0484326528240016 1.8934670472879729 3.003032769417024 3.7751944576756906 1.1446907008627112 +1.6926758765736913 1.306749005195782 4.530561802910972 2.315774221805478 2.2481600431176303 +2.435332368635322 4.547293891045859 4.107956883617416 1.7260111257269992 3.1834018071356915 +1.4184116128114455 1.100042083570651 4.79235328048453 2.446879083487622 2.3669829669702516 +1.1701735933317159 1.1902132245981458 1.398094589315836 4.891781881257636 3.493744764675422 +2.8673664829079293 1.4334008177013775 3.231639775042356 3.476046149201123 1.4546449754908253 +2.6074478516696584 3.242187300001479 3.9452008632175897 4.896660748211803 1.1437526306075918 +2.089734450711151 1.5797648341186665 4.121494715428554 2.8268022971683076 1.3915090613244494 +4.062990226375 2.4998727994894985 1.9111980214927793 1.8679730528523826 1.5637149638431913 +3.21771865253281 3.517180964071642 1.7828236241061224 3.3611483733541077 1.6064827076943269 +4.345480880727016 3.936829254012773 3.9803906735459647 4.907851318683211 1.0134985941256134 +1.5243856796305875 2.120025452350804 4.77237576397671 1.4801677563744202 3.3456569316304425 +1.1652777892147492 3.5082681109302896 1.2779976646710893 4.137160448556033 3.696541014570972 +1.0470237427352482 1.0262615722175887 3.7054813496460923 4.371312698411769 0.6661549765060113 +4.230989881345359 2.083995484228749 3.50756291038678 1.4602512353403614 2.9666597438923605 +2.4747289150605427 1.4204452179076097 4.3017855304709265 4.5035021960822075 1.0734075308417539 +3.2908008026133104 4.061768092626875 1.0343394661767173 2.3211481353332872 1.5000890351200364 +1.8369393146767576 1.1618019397440245 3.074495116468168 2.604924021004497 0.8223791636015678 +3.5245594567830434 2.689949629972441 2.4962767364710654 1.4072997052084277 1.3720220616398309 +1.6175609622750322 1.683704585155704 2.153230983720094 4.071672567623386 1.9195814881627589 +4.307322818798331 3.9311724498978244 4.119488675692333 2.322405066891491 1.8360279401590391 +4.7164634236522645 3.0525143286593535 3.9198871924974434 3.9616552100832347 1.6644732373999813 +2.783260860282936 1.4607239658271096 3.274802894523822 2.3469695525204077 1.6155428028158478 +4.708473107851443 3.392912490480235 4.968380680710034 2.7242659343179803 2.601297893927642 +3.2651974088454545 3.0937831126434365 1.0734891630284031 4.296337959444629 3.2274041001250446 +2.812930416226056 2.512280490590873 4.4545959634744925 2.12231773460743 2.3515765168566647 +1.865426597947756 1.903053385374859 2.193791697956565 4.147865290973941 1.9544358219342797 +3.4509260891844247 3.7374409560631987 1.4812717536419782 3.1165217419829085 1.660160622744551 +3.0540190044513693 1.0282846277201365 4.180268426231426 2.5890035449472553 2.575989846152155 +2.1993779804710836 2.7036978305073855 2.3437893987800136 2.7304045108706716 0.6354602710142547 +3.2286721362661708 4.503183963389535 2.595942700494556 2.0953662956265706 1.3692907414380242 +2.946314586403828 2.3888246854852215 3.934503006429003 4.279996119369793 0.6558662064138957 +3.3680173460025213 1.305124570284144 2.5108865939594645 3.293428739280979 2.2063315284234757 +2.9173597578788986 2.9842142552102966 1.4667541492920768 1.1934354185191407 0.2813763536702447 +3.9605263200037863 3.633452082042258 3.1998682887708374 2.9322402232875193 0.42261369898816303 +2.002785500293119 1.1821610380884744 3.9424475223416224 4.119715116363523 0.8395524449723053 +4.1589363109250215 3.8813507248684793 1.6703276571536456 4.6889336412228495 3.031342251321147 +2.934598537337013 2.9347512153141224 1.5028665303616546 3.951950238263848 2.4490837126612313 +3.7828232815839837 3.5265024183795206 2.3267825739309584 1.1388066035772701 1.215313659534718 +4.056186319966461 2.242235959113801 3.71015832616283 1.6415972193545798 2.751247165239297 +3.1007373807516045 3.144185642752782 2.988198500443205 3.2050810596082626 0.22119176282336503 +1.8167546485739976 2.693463193974469 3.7572707131558536 3.7311827897848437 0.8770966043281788 +1.7126348070571087 2.9986045123817915 2.8364657464979905 1.2165278744266157 2.06831254707406 +3.1364474189304246 3.929315206371235 1.379705543728944 2.3943352197412633 1.2876772529660334 +4.4038119679035885 4.186852620958131 2.1809556215450625 3.830665473701205 1.6639152486013347 +3.66571037011808 1.8533422973767277 3.986361114599611 4.972007914439228 2.063050567757921 +2.808484569407808 1.2633758455174382 2.3600641822726587 4.235215990825907 2.4297232916039317 +3.1584167757911854 1.4279067460262787 4.45790566795644 2.9358792278056423 2.3046104763354367 +3.5003024383064294 1.9871448052650211 1.4467938940094416 1.4497310376704151 1.5131604836382566 +2.1818839596328514 2.7529962513122284 3.355832373683007 4.424765027032021 1.2119349269259603 +4.89717872214191 3.635705887211559 3.2189807729169244 1.1690176366178986 2.407002819577109 +3.416366584823994 3.9054474482745127 4.828067271467031 1.0044046976808811 3.8548145959522397 +1.595567868414082 1.3083415221961294 4.223126295343686 3.3503423415304026 0.9188312162718804 +4.369438953180598 3.4984607293592767 1.1076756250640436 2.0974804172028554 1.3184523476075654 +4.203590199946192 4.824016014777447 1.269196991856659 4.176843591914286 2.9731022421934474 +3.3933035010048425 4.131725242827066 1.7882931720002104 3.0878242028667673 1.494673064245443 +1.0791950668899668 1.1235713346148906 4.971156909559273 2.9251350945163908 2.046502997986703 +1.748817678721756 2.294436701677657 3.2937064084741574 3.6794724810771493 0.668218213597092 +3.414895786142628 1.4896740452981105 4.430911483438272 1.1923331824982775 3.7676077506475876 +4.337795657210909 3.207380633211167 3.445497344426633 2.7074032317261763 1.350044830991701 +1.688145366269226 1.3827948727069734 1.2050572189343693 2.4065890499343054 1.239724834317991 +4.472731548047307 3.5363716555945808 2.1242836579277182 2.7773692197291795 1.1416175363174879 +2.177900448509637 4.607565467235763 4.432827152160478 2.4527977249176467 3.134292366064308 +2.8723363515773643 3.0224485277299937 4.272680781841718 2.5613274033264983 1.7179243439641732 +3.7990745561005475 4.600073971389168 2.285630377911395 4.894297984662876 2.7288727976597245 +2.051678626526285 2.2370367210101785 3.852157448265951 3.5341826064712274 0.3680565489229604 +4.562213283931699 4.184065293446266 4.539235430310706 2.4403515996259224 2.1326765430834094 +3.5511901608502683 2.1837472604104557 3.0910658483748197 3.0619078210598865 1.3677537338717616 +3.499767548246306 4.446608487673063 3.043175644618774 2.6605693328942435 1.0212224803371657 +4.061593084774196 2.8562302706817984 4.991455473362885 1.4776301408055788 3.7148173550415917 +4.374316678924827 2.139156659641002 1.5180575632243394 2.2557022837990965 2.3537332146181478 +3.6024447199906473 4.78914620866277 1.0481466605510175 1.5836011422335208 1.3019108745111976 +3.311771440198719 2.8201682094602796 3.31135592694698 2.2961677049911495 1.1279542820834147 +2.8261115799858305 1.2220591156947824 4.696142797200852 3.8089992288778407 1.8330324653467187 +2.3856199075893416 1.9806138171923715 4.279247433130497 4.104102914594003 0.44125450210963146 +2.7594728230897636 4.82382486190957 4.109662921555452 2.4436766422929237 2.652745676251399 +4.12130002402853 4.0582147674232285 3.4113135815323252 2.0243676858329485 1.3883798713602495 +1.7305132716100715 3.264468390908937 1.4149774839385985 4.351549190670431 3.3130758664421047 +3.0807895667847145 2.027714680779072 1.9004629802266697 2.5645413957777725 1.2449766493941405 +1.319485875532771 2.0192112221565193 2.9840809441087366 1.7000999460691442 1.4622663109141483 +4.089416593791372 3.813724414200899 4.808745142892309 3.133309436591735 1.6979667204731217 +4.697993838936332 2.9817246784162643 2.525837429463524 4.119137351007813 2.3418335703771302 +3.0987081417807896 4.727516645122035 4.435041454434085 4.890539630678029 1.691300011564568 +1.3028741378362994 3.528009678626795 4.813434979134685 1.9097136310681155 3.65825448022777 +1.2679253009807554 2.8903435663468646 4.763162262801446 2.600249301895312 2.7037813343999018 +4.163658896057163 3.375889312647211 2.5082704118790033 4.007176968993113 1.6933108939310473 +4.320558348309309 2.3182067757043927 1.0786093251611164 2.5803269423121327 2.5029118286458085 +3.1313965928453107 2.737985849723747 1.9938827307732208 1.3719000719894834 0.7359581785883951 +2.765989955876956 4.374784787150132 4.371301446947805 3.5704904053145876 1.7970862899518665 +1.429402675756955 2.707881861631679 3.4574131503090917 1.7017550065856257 2.1718297691894324 +4.644741095576247 2.540080727834018 1.8192383757865405 1.752811360622467 2.105708387191461 +2.254658530287775 1.364045033230199 2.387772520195472 3.7655008773047034 1.640526691987676 +3.445599066873108 2.6346759916863705 3.3119964916222173 4.607469639202661 1.5283477712786107 +3.4900593863249814 1.9663204428087218 2.9829890958772856 2.7216493624725953 1.5459879767462883 +3.0410649467659256 1.4091395422836612 1.8897408014744421 2.661100361463761 1.8050418545234672 +1.95977612610174 4.701930337203778 3.7450511716157724 4.02519573110982 2.756427160597347 +4.836763290811277 2.3323183010793174 2.9112410778996876 4.610531202318105 3.0265213750342945 +1.5647296781588502 1.640794680482717 1.9407264030994673 2.860393711952852 0.922807587502485 +4.664343547853349 4.290751295897004 1.6604263224872566 3.69846730577629 2.0719995705326637 +2.8013357050681433 4.24279556612764 3.8017102205092166 1.5121265118843255 2.705549868297787 +2.6489699194585574 4.358274476973947 3.8320442946653053 3.3557576393345716 1.7744213277542116 +3.8330757375364812 1.3514758135918346 4.891882310765384 4.8763629820361825 2.4816484505437675 +2.5442532299563343 4.974849447953801 2.8379738443433804 3.7968553555597886 2.612901017546637 +3.108924683007043 1.1887298056913291 3.3580940196960887 4.0883439757181215 2.054364467454519 +3.587379784382982 3.693476848517265 1.4866841287036916 1.6078581241788545 0.16105813918373993 +3.0513054799086587 2.3375404646213878 3.4468564563553 4.95728493341484 1.670585131431631 +3.598742909820351 1.7391944291181916 1.9306438026209278 1.1017845432051012 2.035909679725764 +2.8722018222032437 1.555967267728799 2.8907423913084305 4.396559817037341 1.9999898804797445 +1.341804949509596 1.6074566404143371 1.294585284377031 3.3868097488371407 2.1090220554953762 +2.802234169003362 2.773531056572386 4.616398893802119 3.3467122992340115 1.2700109909324337 +2.0224252647618197 4.413570917106483 1.9881246636805447 1.2788247164143005 2.494129897563213 +3.4264587684610035 2.6480006385111383 1.2566873557929399 3.574514149787604 2.445059939356216 +2.118001753234319 4.388069847861216 4.216780253727029 3.685502959530611 2.331408312066262 +3.730300730178226 4.2528650625876026 4.3037848572312685 3.9418821734515013 0.6356469413388658 +2.004918983488251 3.21308734845264 4.625435602879296 4.211697287607453 1.2770474508117182 +2.1745466478937714 2.2860517093115713 4.850996004910643 1.1635940750758529 3.68908747129573 +4.379513838884222 3.9105991397377524 4.9107488713787095 3.1180694316431086 1.8529923282966858 +3.2105280575558792 4.284367300796761 1.007923405699593 1.253038195101107 1.1014590234355062 +1.4519400053706515 3.013190324252902 4.077370628474629 4.933468050118034 1.7805632124567818 +1.7613730832055832 2.407576790442935 3.634699007982175 3.7956203831777136 0.6659391265289345 +3.625661556774319 3.8304677074378577 3.9980373103372577 2.2522926337573117 1.7577172796433551 +1.2199048808709287 4.4708965807091126 3.207955642564619 4.3465531003349085 3.4446119089467437 +1.8304471755089824 3.2043202598437666 3.975016252140356 3.166915003437187 1.5939118168879964 +1.5789970367333512 3.0977766417751766 1.0891683305897084 4.174515461479283 3.438903663492121 +2.235573332177504 3.0038236725516727 3.125922841079499 4.735895295778301 1.7838777677783617 +3.83451957325944 1.4540328883800075 1.8951088861204672 2.7624261205879734 2.533565874827934 +1.9596618382874027 1.2068384538267032 2.1465248010333835 3.983869483273148 1.9855927401019584 +2.4962693934660973 1.213810191581075 4.454010634705987 3.7453418909475524 1.4652347910419428 +4.452933323232253 2.1709765544739414 1.5997190735402285 4.243219079106089 3.4921940057660854 +3.999698326865402 3.3449172237146305 1.7265580451427565 4.036062907194122 2.400531399686794 +3.685299934211439 4.267411187529953 3.2169608730615344 3.4639423658972426 0.6323395994585557 +2.8375668868778434 2.6746089300153266 2.4475924826932136 3.5777602135140807 1.1418556806766755 +1.1583748864866736 3.193600457646393 3.596090613150895 3.624803073342115 2.035428095235162 +3.2210303749460927 2.879476506502787 3.8525950404312477 4.865045175647268 1.068510328142655 +1.337651138877229 4.80690230596168 3.8510977198635072 2.294148658701765 3.80260358693478 +1.9391531542059228 1.150303064444382 4.272817077974662 1.061541448607083 3.3067469863730024 +1.3606300468208454 2.939628785286705 4.066170680957846 2.584774574561327 2.1651261949649823 +3.54437983933149 3.779615929529211 4.6175277863560735 4.682661574534864 0.24408692815066924 +3.0947680293362994 1.8610543414348384 2.886734983058247 4.192557902723886 1.7964473165777828 +1.3887368764466466 4.158060167843521 2.053298711764402 1.672047073133419 2.7954434897225213 +1.3001416955268583 4.655509831846107 4.8585981547516255 1.655911606467749 4.638501531398367 +2.7770531675842665 1.9225845664102357 2.7170283079025097 4.10942422640062 1.6336716268095313 +3.3846719525084348 1.6923953702559715 4.323907629535789 1.2782701440204072 3.4842083353348055 +3.8538740781831082 3.4603642954410874 1.439754418761153 4.55907894629839 3.14404762324127 +3.404115653695849 1.9443513911367751 4.065718185406004 1.979540347751065 2.5461833540747363 +4.451253020420687 3.796992845465839 2.7954837317682544 1.8695433230659972 1.133764533313532 +3.042340779278162 1.6079034154653318 4.861889284226891 4.804146011543217 1.435599121009247 +3.2026863455998824 4.531971791118484 3.580389201796932 2.1666469414679406 1.9405326522137452 +2.427829836359977 4.290021039459537 4.2540107398369535 1.092199927114358 3.6694418775000246 +4.577054508405505 3.5532915648193484 4.775769223587265 1.0472386900907122 3.866526930447566 +1.2129156621101247 1.3483490012943848 2.5782023819100743 4.851608886936864 2.2774370082311215 +1.2625053051705764 4.526228894272997 3.0066524696915424 3.3270960391611473 3.279416982830638 +1.6811748272140625 1.8730469345554934 2.6489785607681924 2.6327151709898 0.19256012936931027 +4.287981992955263 1.0710961647594255 3.444597611103362 3.590797531038616 3.220206336282862 +4.768626253010058 1.7399055984254508 2.104734065155076 3.370014041195322 3.282389711974466 +1.2278970386399264 4.368488534737768 4.63684663966607 1.4929015497730944 4.443839069276049 +4.672772756424065 4.373825216943619 4.632344578689728 3.9338450435455194 0.7597836744482526 +3.168054262547908 1.7149936104292203 1.9190061690366087 2.7011662800592084 1.6501998963793665 +2.920331679227656 3.721937459037965 2.813634660066415 3.7138156641621354 1.2053620478346219 +4.268683551147422 4.707068360591833 3.6217455006729575 4.5822782248079825 1.055842959575838 +2.33377070473664 4.632789182210969 1.4104634607885163 2.338661696701468 2.4793220696231253 +2.001809560215232 1.63569716089836 4.451845083539554 1.3894849180934639 3.084167322284017 +3.3847214058212236 3.751163404283436 3.919382704365533 4.124506893868461 0.4199472244892366 +3.6220615552899362 3.3593362706870686 4.772190072494231 4.371501595892082 0.4791407209280057 +2.5922350392241897 1.8732914346260143 4.9211792056531385 1.8482769037113624 3.1558847355173927 +3.2089498052903975 2.1825702032335554 2.7889492382125916 1.8968102763537429 1.359914340973337 +1.6705627434126686 1.67010914600997 3.1486086160132642 1.5156436622411311 1.6329650167712193 +1.7398782354771076 2.122902459500105 2.7321970146385626 1.0371346717508598 1.7377985793711441 +1.318515029156103 2.5164370509350205 3.8681714688832525 3.355346232506567 1.303075935365124 +1.8936403741243555 4.423723567255115 2.281970647395814 1.65578276415492 2.6064213453086302 +1.3650714518529545 1.3077308897649944 3.481022351185467 2.005785359549502 1.4763509479631514 +1.2996357014127118 1.3615925610703488 4.558424846170485 3.9918738721590117 0.5699286434387953 +2.7323950679700397 1.3632768395359753 4.208153642421115 4.4617306967548345 1.3924029754043896 +4.963575380064338 4.269558963514831 3.682614908017358 2.394405454483631 1.4632642900767725 +1.9863931440855067 1.1097257657274628 4.887795333791557 1.4842673429810582 3.514619250574337 +2.5677048220462404 3.9496437497955674 4.983035365292528 3.888541319350985 1.7628591596127152 +3.1213358170913676 1.361905231359073 1.7159916937512323 4.019914448646648 2.8989060085720557 +4.834387262407681 3.635326736385612 2.8711083206378887 1.8413509023277301 1.5805525886945753 +2.180701036660067 4.612249936461206 3.738020527467637 4.754869815192306 2.635604774253965 +2.594167845244374 4.996400136420736 4.297592900837239 2.7763062518564636 2.843419253141821 +4.47851400033802 3.8339677215223205 1.4343041605545537 4.737601950442625 3.365592992953037 +2.734936389067235 2.831928559044637 4.263248400190335 2.3346864299632917 1.9309994184470747 +4.067707378790715 1.8988319266626577 1.5530802328678757 3.137412461970566 2.6859131294621545 +1.0829955813683916 2.6222770553520616 1.9052135043765919 3.4331375465545526 2.1688566883993925 +4.69775778996844 4.443497184403494 3.7346987950905413 3.567715993616254 0.3041902554824108 +4.831760425732938 1.333109348869828 3.7538593999747403 1.4968152701314317 4.1635090442672915 +1.5007861758424261 1.646863234583268 3.1274378258473075 4.25389433580823 1.1358885402730838 +1.9021051791321981 3.594771995625335 3.0680685800890277 2.849483850515701 1.706722073349863 +1.9256629896643251 4.698604850917043 2.384664633254702 4.292340076544463 3.365773635112509 +1.3407722499291554 1.6169330444687509 2.419208326738626 3.343794976693292 0.9649483186757373 +3.5332751526111075 1.7527438906341328 4.691983352174051 1.5696150133847273 3.5943672068879273 +2.351192025603126 2.053676083306155 4.458932220993404 4.13348124834209 0.44094678989708147 +2.7181639281509553 2.5089973913913934 1.6452554702643876 4.500503579431689 2.8628993005349384 +3.4418764389503917 4.069026581544178 1.5750005448486601 4.233317389517518 2.7312937864692626 +1.0835457588734942 1.1628333378198357 3.4809131710824777 1.3586457557038814 2.1237479847083836 +2.707937658382252 4.796232317652365 1.5594984404220167 3.263288235781366 2.695157555822429 +4.8191901938404245 2.8917432382603927 2.220101795656702 4.646118356643575 3.0984848104770992 +2.2188324867353617 3.4907463648594868 3.635939377118526 2.986486270248367 1.428129633957665 +3.688813482370632 2.4304710732011783 3.9765492455607463 2.880815450356262 1.6685497201664705 +2.699457642937525 3.838356010254539 2.4855469809161232 2.232819858604176 1.1666021127314308 +2.070461807799112 1.8152488173755992 2.832708080087512 1.6562084300873492 1.203862573939159 +4.688947688169607 3.8042534041491822 4.461949610486844 1.3135302006377492 3.270356059589374 +3.9690218558962265 2.2603641587605203 4.893019111685552 4.851221900130769 1.7091688427053804 +1.6236344655108854 1.2714098025779434 2.37855588660431 1.729220957045635 0.738713790261962 +1.6434617664115945 2.5441286660429725 4.803927362254189 3.7412076379829635 1.393044893909277 +1.4270587786717086 1.378231577720591 2.376683372750183 1.8794372636587253 0.49963765726705855 +4.222450327944175 3.4804345449911858 1.902719558895484 4.150198431052964 2.366801365333727 +3.6499288142447823 2.5259672401714535 4.378074265761344 3.9431424678998166 1.2051785298388185 +3.934780252713121 4.5920030160532255 1.6309415819737336 1.3036912145745374 0.7341897327089992 +4.051433925384921 3.8899258835579937 2.5751263728891356 4.32475388581013 1.7570661005052925 +2.5095509227923674 4.299307111575551 4.582035974017021 1.5590231349156372 3.5130946244955483 +2.3729755608744316 1.2260880005080832 1.300978203801237 3.3471685475016844 2.34568667958362 +3.357736817812 4.544867665546565 3.6693626987872063 1.9136753661489676 2.119367278135001 +4.105761925203483 2.226961840869739 3.057965784078032 1.4267032023974577 2.4881534050945606 +2.7520832075209305 1.9819486970534048 1.2293143434562963 3.276298023177873 2.187064093541738 +3.6133546577953406 3.169023036697579 3.963010890111937 4.723782154468742 0.8810241234940255 +4.2612179332620554 1.0667505329691602 2.7006409907966415 2.7312128912118325 3.1946136875417417 +4.155831345063866 4.19461435489379 4.018323046516515 3.260014179975796 0.759299979537559 +1.2217357568067686 4.588249318039516 4.546517794728887 4.478773403967921 3.367195102818304 +3.8970146483649577 2.517362632689292 1.158088614978611 2.44973872328178 1.8899205503506005 +1.9574282786654416 2.3416540228931186 1.3599187164540734 2.0508688419666217 0.7905956605453375 +1.9046221121526914 3.941050455398849 2.4196079077271904 1.882042416218261 2.1061854274582585 +1.529734484658177 1.8403411555818523 4.474464554817454 1.6796445369829116 2.8120269266333424 +4.62876619281114 4.343773604893411 4.705923340793008 3.6601542990707627 1.083906667473131 +4.621361880533385 4.279690633723661 4.675198804046715 4.485778061153101 0.3906654050909556 +1.4016070480452143 4.984986683394341 1.4295191787118893 1.8795608012661962 3.61152974140684 +1.9458230521665243 2.2311838768955377 2.7153540331531603 1.8773388454425808 0.8852684650000927 +3.2585311273133195 4.758526849160269 1.6167114154695774 1.2332834798996442 1.5482261292636073 +4.664840128080337 1.90530118575847 4.972265776757873 1.5705740080219681 4.380246803968528 +2.9703933396196502 4.51789295136115 3.3055782571854695 3.4368687685366077 1.5530589965326285 +2.1069075202846808 3.463514276856271 4.482423706394457 1.9086766159590813 2.9093909977004215 +3.239700124235352 4.661592802708682 1.8933287843826783 1.5621358556162561 1.4599546380490533 +3.482193878803355 3.255849818971882 2.1732528283560053 1.0021374375007 1.1927878655147226 +3.7733469261733097 1.020905508352703 2.522765442706482 1.6519892160286638 2.8868988543905676 +1.531140920806771 2.408402858007283 1.601005306976055 4.813954761354919 3.330560418736498 +1.8048800046486688 1.8070808764041275 2.1050296077135524 3.8726531233798442 1.7676248858207855 +4.845000999262643 3.7356225464015043 3.3567025937219817 3.47409435830366 1.1155722200127494 +2.377757761018091 1.0529587622501206 1.299007213856151 1.2426880033958407 1.325995565831006 +4.692702923932368 1.7108258521219741 4.627029650132426 1.0272469499097157 4.674401176644046 +1.220039829641364 4.011486142426988 1.2437994232363865 4.09030361087165 3.986823122159992 +3.683114179125769 4.982300252158006 3.207239907851755 4.560977204869079 1.8762966507715926 +3.9004963791060607 2.36570084745526 4.195884821321077 1.968251810433209 2.7051702636197623 +1.1048064464529754 2.875120438737229 2.4252944497615223 3.9086162006012275 2.309600625171283 +3.444590449649571 1.0337974427694623 4.717586670183563 3.725839284398261 2.606815259897413 +3.647046279243424 2.0503739676821735 3.3979378599094154 1.4491938612866635 2.5193184877411863 +2.3216307385365664 3.0912771036390496 3.2904300717857824 3.9728991763511967 1.0286494086916995 +4.2304242841304465 1.6840859403209532 1.233574607992269 1.7648316427671862 2.601167622079037 +4.807195368463917 4.0837431378384075 2.5282287137766652 4.1933196295419295 1.8154643724846355 +1.3082036690878205 2.989297134177327 3.2021205938288677 3.353354554002498 1.6878823860318122 +2.522670166384737 2.3992650802939797 3.6317032458867757 3.5851772904674286 0.13188434251551723 +3.0897458201518355 4.448471581706121 3.2549212265734866 2.6413021382765494 1.4908601814501712 +2.91619283532366 2.204737312330358 3.0559272855677686 4.820125116344023 1.9022520724954712 +4.23257142049093 4.515171934692353 1.2762536375106754 2.6303374197802754 1.3832591731242754 +2.7984457893343664 4.666966154756836 3.0339031863482617 2.4650357177899678 1.9531970081848993 +3.7164101261896696 4.345046225888572 3.1345514759530144 1.8019753951303397 1.4734118083636252 +4.015457091144107 4.8787871672699366 3.61141803946873 1.2710881278694628 2.4944905122027756 +3.622333077556536 2.711753757490016 4.592660149983217 2.139370297831584 2.6168274296947804 +4.825136357142918 1.9668324871202407 2.580146340299929 4.2203691942866035 3.295486614162893 +3.271543732123819 4.715996002841082 2.173212944926838 1.9187848346005572 1.4666887964747184 +4.892055718871781 3.4792777549162337 1.1533674024013312 3.867283042948775 3.059620839163968 +4.762452482413961 3.5331949687663675 2.636526873337354 4.161955130780404 1.9590827964802313 +1.133216757274003 1.9869761451497392 2.9695961520230174 1.390008450393918 1.7955507231832388 +4.044722373472569 4.628795807052233 2.222402128160611 4.6117445205126 2.4596948680077912 +4.82757895466349 3.175398229010151 2.9427629402991946 4.510232625532841 2.2774245024471966 +3.8026401281249056 2.3530878058932796 1.6820112631108035 1.579419489515744 1.4531782433330331 +3.777780968975803 2.0572320955614676 2.4794110108665515 3.8386455576054503 2.1926711971601756 +3.023730864245376 2.7276747194977538 2.5088082243487495 3.8092300348097554 1.3336964144682648 +2.3936651671348614 2.8461168051676062 4.890521412909461 1.5439793496156065 3.376989230979809 +4.4645857736613355 3.345306484750976 3.7915117341800575 4.0971490363318015 1.1602587155674704 +4.068925297472164 4.74601793220468 4.9951281802851675 1.8506110008685512 3.2165886786555804 +2.8265545913005266 4.829137351136529 3.1556860746807778 3.901405360894069 2.13692184317135 +1.0549065817095986 2.437279392706253 3.821655713220543 2.660895936983916 1.8050811191499667 +1.7908718679092996 3.719922614189951 3.541946195494176 3.8069755960567195 1.9471716321086023 +1.5569402928300207 3.443862042521454 4.08447644102714 2.2406873156963 2.6381872617664657 +1.496707390955064 3.6700547005083584 2.167732450978184 3.57898791052618 2.591347236486567 +1.1958721271200514 1.0929217049425342 1.3845767174046877 1.1640654407136886 0.24335984174555877 +2.516967206911346 2.2397793844051437 4.522744127792971 4.551197487390768 0.27864436584673924 +3.05559394891303 1.8922222140388283 3.822856367446156 4.425168348862361 1.310043326177316 +4.310787029918103 2.4233729976304996 2.2694684409825574 3.2619931334803844 2.132472038385042 +2.1659524808190342 4.185239280088878 1.7716031452808658 2.5854923811506505 2.177139147130966 +1.6052242350416681 3.311711907058764 4.471624591788502 4.9831788748478285 1.7815128288234887 +1.5800793164807363 4.319465318899819 4.4156346584057165 1.6262672038384562 3.9095788093922135 +4.606525919439077 4.376767247299266 4.899903717272158 2.8337672309848476 2.078872056522749 +2.3785452706828214 2.1699682918310663 4.743805627674783 2.104405286073224 2.647628848489409 +2.9215147310744003 4.955286785374916 1.8545117188431721 3.8715318284181404 2.864367101347793 +4.016978445559896 2.1829736160692295 4.663195485188682 4.899268711634236 1.849136090946121 +4.235855145566413 1.0649304872950092 3.5412559943733557 2.7838027900220044 3.2601378107705434 +4.89346658674017 1.9000809531233966 3.976540145220867 2.65966040214033 3.270249196816529 +3.640768536366435 1.7676571000150179 3.825867488904744 2.491772390994932 2.2996426207690313 +1.9401758239983602 4.7719646145886045 4.001382933560812 4.666319624257078 2.908808786624975 +2.016349656725667 2.5805661005176286 4.479193884918308 4.547926372259117 0.5683875000924123 +4.145582744987198 1.6734542736260547 3.4906361902842478 2.204181820478743 2.786823285482247 +2.386334639545948 4.04441505514043 3.019385805716012 4.394076869606722 2.1538352271515437 +4.895487426413906 1.0226024782293819 2.6209457725613796 1.7009376244928216 3.980659846606688 +2.6999262033216027 2.069362981550612 1.95429582035531 1.9719435313897913 0.6308101286084177 +3.1199177676449357 3.028384807501045 4.448165827873909 4.514429713100611 0.113000819811365 +1.1245000942792487 2.6684025498994552 2.2173079560860223 1.0856051498480497 1.9142586121308183 +4.640276531362363 3.8679769880124986 4.875707616471493 2.464144882831731 2.532208799238027 +2.243012664174278 3.7649881400866883 1.7004356552957152 4.30861442835275 3.0197691735468966 +3.4835060928328963 4.441393400366116 2.0268856321306608 4.009042329314804 2.201475247674884 +2.46008264775859 2.039612412479473 3.009569714749681 3.00334234437922 0.420516347954996 +3.614123222491161 1.628210568512991 2.1381895357008243 1.811479071711502 2.012607462102517 +2.7006014307004156 1.9881161968150707 1.986001573243107 3.253057010559699 1.4536384315703113 +3.9824101963934417 2.2285724812821583 2.197023207856337 1.3922513342565392 1.9296643489177325 +4.037165093406935 4.421335376862997 3.629912779529728 2.38069090457065 1.3069591040147297 +1.8785632449460508 2.0613227786414585 2.9200338448951975 1.215722727629803 1.7140820959309329 +2.2438976943070683 4.12466075507807 4.828395717636187 2.712554715641067 2.8309102487511715 +4.984275539412376 1.0753022961081862 4.337790349660247 1.7828075783119988 4.669904579191576 +2.6685162430308993 4.142701458871111 1.1652163520125214 3.1359431236613573 2.4610944839837607 +4.690092394717537 2.2319384454442375 3.6739657678975974 4.667453279388102 2.6513276436184783 +3.6772126513103984 1.987941935833852 4.8227109996037365 3.2499198243388445 2.3080961052689646 +1.7405919471197282 3.488148092922717 3.197471796218001 4.715914236922504 2.3150852961535664 +4.635095269071046 1.6359562681526203 1.5900402854144264 4.753793941848755 4.359377472235177 +2.8974329622695763 4.7283544195899125 1.688023282053408 4.426391166790919 3.2940752958968336 +3.714166744751598 2.6409507377670516 1.900780669028984 1.6823246845513689 1.0952240021118682 +3.9470864238960743 3.580771560568515 2.5540450068012546 3.6436321032919334 1.1495158197839976 +4.862498407439742 1.1710899235292156 3.4851875843677953 3.2845724898357216 3.696855827759682 +3.2175557979290663 2.4446557164150424 4.982136723438423 3.9453920687414192 1.2931411427401085 +3.3657152972469113 3.498678719702827 3.1507340701964637 1.7331012453559635 1.4238546617462213 +1.414571963236185 3.3353097452049636 2.2444372530326615 1.1104495345111114 2.230507066305788 +2.1282568245870865 4.909400949364781 3.0346700484127145 4.722059495297016 3.253005654505076 +1.3091371724279495 2.992422516174476 4.734350229014298 2.4652562077451265 2.8252853352947134 +1.443056053803835 3.0471330545853657 4.12333030048981 2.47481017156148 2.300148177817714 +4.068242364486135 4.515745745101555 1.877105450079989 1.7571018561435872 0.46331429744815966 +2.8545176116014694 4.0935874121729965 1.5501012727874266 2.3267316614822264 1.462343574996177 +3.1916486577140675 1.7302436421179026 3.4774720634780985 2.5267512548939495 1.7434376029799645 +3.2236744915371136 2.77924830773752 4.330227955732677 1.6329176104163912 2.7336784250889736 +4.685067440689583 1.7306255595561963 2.0875205655075915 4.157781502251805 3.6075902171954084 +1.0217900136717528 4.390946195032074 3.7140746596798917 4.919152936600399 3.5781876736560587 +2.0993203634355653 4.353318546990174 2.2346000147530307 1.34035746369512 2.424907740840883 +2.5526435720795875 4.931062121425182 4.324904655652059 2.944368193861665 2.7500464938258666 +4.935090658471735 4.142982372843646 2.822519563639561 2.9810787175512665 0.8078220976488982 +4.980515589933129 1.5199579556788199 3.005936036554666 2.7507262072372622 3.4699555036017387 +3.0467550516869677 2.888288090338619 3.1803598349660054 3.515044609770027 0.37030484242661166 +2.8321990434907414 2.9175025195216873 3.510375383130592 3.9715771436574823 0.4690242498379644 +1.7943456330115573 4.343839200764254 2.528701237746404 4.130776295465388 3.0110732210588402 +3.0586008173690677 1.0979858864907492 1.2057852495187045 2.5558097780559432 2.3804573373272597 +2.361346456989208 2.842455471126244 4.967356669002513 1.1836876250659403 3.81413388825403 +3.323016891305136 1.918578166785228 4.377585663833993 3.1808661576233486 1.8451519469886901 +2.919689782263157 4.110240011618237 4.265489884699751 1.7528221032508982 2.780451263472988 +2.4090164231181457 2.6628391857231324 3.425557207020291 3.5183362957108315 0.27024794932556767 +2.797251623219558 4.070439364271474 1.0081123109945151 2.7738339293157783 2.1768738726375356 +4.181661691813156 2.9923615302302573 3.2768326442267237 3.53809664851002 1.2176591289335663 +2.821346407075515 2.4262468031506987 3.0376351539174173 1.5465069833797616 1.542584492983293 +4.2990366721463396 3.6843026468863855 4.148789086201189 2.546896188568114 1.7157968345056462 +3.96837507310192 1.6609750460102801 2.0594066023188446 3.163229887794744 2.5578351648574444 +1.8336471163534722 4.897045277719368 1.3530088533660063 3.8842194178640645 3.9738438843123327 +2.163040756453634 2.8507453655103387 1.7824697724590335 2.2757245724841018 0.8463084113168232 +1.943677266926791 2.9570984996086738 1.2237459095526897 4.008202520687675 2.9631438058494215 +2.0756920344695287 2.3714098356513875 4.899171632072562 4.89637936334283 0.2957309836667312 +3.8027141096943904 1.6284569836162093 2.0688565446383524 4.774666906376953 3.471138684062296 +2.3028893925206564 3.492463073603287 2.496981621114049 2.2798156935278655 1.2092338826004039 +3.1173339411135155 3.3254342260079817 3.9368190836797154 4.473114090481859 0.5752547808528577 +4.57697671969528 2.205381772612239 4.71551036419437 3.668753812797687 2.5923275007069786 +4.793345952190977 2.982771340355782 2.812786575689666 4.41937686318615 2.4206017385972856 +1.1780722584076964 2.5380106442254817 1.5148319801734642 3.594136176861013 2.4845398679802133 +2.2460920803460342 4.178460799977106 3.408609473168752 4.094786409159141 2.0505822724518485 +4.796019726349198 1.0643085344645318 1.4974673921792934 4.406335802590364 4.731509679660891 +4.595965652326216 3.06940840321988 1.9223285338788325 4.966111908367001 3.4051423267772063 +4.216788816696001 2.3157526928382057 2.720213246084422 4.6067755219358215 2.678256067831805 +3.8546937035661486 3.233558136192618 2.302808448050975 2.079514677061334 0.6600526503387529 +3.055031607751896 1.331933057333809 4.655373569383046 4.655853031532189 1.7230986171246452 +4.746347773847738 3.476632364058108 1.9206510135752186 2.9088811029472197 1.6089673493882468 +4.198849086009837 2.0042128977856 3.353146505514128 2.5238269339077344 2.3461029283713914 +2.885696229979354 3.9231277024150466 1.4293475789928345 1.909935252125654 1.1433409690758514 +3.2896962438915494 4.013178513839538 2.088944768193202 3.2142266236453665 1.3377914071853505 +1.6528264081219581 1.470877567621328 4.204411324685051 3.762214520676658 0.47816670109362563 +2.659377276505413 1.0972186565419424 3.102011508333321 3.1420282036544025 1.562671075380419 +1.365994398500817 4.941448100954659 1.6424103721300392 4.337737265688057 4.477572583613582 +4.32308260759602 4.103905585540904 2.1543660869013177 3.007066360518929 0.8804182662942074 +1.5903485516251177 2.4214534886870074 1.778212691008917 2.1437519345640443 0.9079396207829584 +2.267444402851228 2.3981152030023383 2.7701951443335098 1.947268775678542 0.8332362607566854 +4.179812321259665 4.097247298419022 4.2301121953083705 1.9262007575024338 2.305390399964764 +2.194457977703541 2.8650492683539044 3.0480983595419096 2.8049459322496637 0.7133132425479223 +2.123816520986289 1.7343272497287678 1.6694975949790871 1.1906625414480767 0.6172397434666375 +1.4996422675084546 1.8056253452661912 4.973860602150529 4.790754471653484 0.35658589273791785 +2.305249521790708 1.4034351356345267 3.0509583437638454 2.7928172551126718 0.9380330531107435 +1.8812534806796677 3.1078221197324947 2.116276435225347 1.7998799557643732 1.2667191316638438 +4.807053043436989 2.4999947450411892 3.415493476112095 4.534257058245824 2.564010519655802 +1.0782880701299344 1.8289291008993107 2.1862698579777904 4.390446469139427 2.3284880266530266 +4.894173258618439 4.87625885605509 2.9437287352669355 4.790031544655237 1.8463897177395507 +2.207049793967379 2.410121080730227 1.9479124354443424 1.3881814487988273 0.5954298656589883 +4.345490262616279 1.222537622700584 4.953125663456011 1.0299872836061987 5.014364160948726 +1.2366551094381504 4.26833322875919 3.6214529193439806 4.215604204912233 3.0893507358848664 +2.439165214761005 4.131867007475798 2.368552244834856 3.1936998793413722 1.8831112494463982 +4.066015419040944 4.179238668995653 1.595161117316528 2.690045796672869 1.1007233827894927 +2.048425095489091 3.1516084434955918 2.0522897560447584 1.7676138938033992 1.1393216604022298 +1.0209232828639543 2.0810770624657 3.672533301155783 4.893770548149428 1.6172032803109457 +2.207443189321589 4.061301527792766 4.5309639473547705 3.745210755429808 2.013504114160033 +1.2496987742153882 3.0064778013044093 2.7461743530477243 2.5153145291405137 1.7718828427168418 +1.9989114252801463 4.5528144480021275 1.25141380104815 3.70715556698664 3.5430337664836284 +1.3812063745254224 3.1529307407274425 2.0112856375194 1.9766373746436607 1.7720631286481463 +2.645121708771722 4.534092362280837 2.7049860019998575 4.130428004617372 2.3664519924657 +4.230419114852202 3.438482386212776 4.122481561301807 3.690894100322353 0.9019043844237633 +2.1625414136369465 1.407888476791061 2.317785409446678 4.20182370690277 2.0295569372085547 +1.5118633782742887 4.496074560863326 3.6410455773252663 4.080288186261953 3.0163637797512033 +3.727438481313473 3.673773312127533 3.2753237948374956 1.6810988401849727 1.5951279435896653 +2.126585233136774 4.857439711859054 2.114732322816389 3.902617898643243 3.2640620423342535 +4.975939754145104 4.995048751536791 2.776072358709604 4.30254504340242 1.5265922870546047 +1.4887000088122337 1.132860108937121 3.3617192553855353 2.0475756953378554 1.3614680792284188 +1.767102227249481 3.3994148488544846 1.408913272195739 4.2827270459757125 3.3050340544415713 +3.6272279672517462 3.4949792031316074 4.765701647509326 3.7874074714215817 0.9871926005489015 +4.764500230642849 4.707889888227504 4.583264562222345 2.9951104113600313 1.5891627788774751 +3.693876641135696 2.734767208313178 4.199784719338753 3.1279623101455276 1.4382955819225416 +4.066549492129925 1.7977190749510443 3.3500453289885743 1.314535918644188 3.048096130622629 +1.9726791693592234 1.742208554913958 1.1564627778034384 3.575273564091979 2.4297658990093196 +3.375750821339991 2.36844389263139 1.333626411240334 2.48623937981011 1.5307461918749252 +3.4855088810257695 2.7813358427406585 4.162817393736173 1.536509418768282 2.719072129831724 +4.750651320927881 2.519380404942779 3.904538672723782 4.810705675175756 2.4082584032561356 +2.52527456149406 3.439747839622463 3.1543425959538176 1.5910354715742665 1.8111296313480074 +1.714758796275751 4.9162646221613375 2.3156140400805194 2.8775409718686094 3.2504463431732153 +4.467857267611473 4.529824284786247 2.4176069974585306 1.182132436200733 1.2370276079104645 +3.8612615489032107 4.62931919893307 4.465553791402012 4.923513732933689 0.8942258449726701 +4.899422839916591 3.1358884103367077 4.704430889289 2.1178538227044292 3.1305645825784985 +2.835171689772136 2.2789590135470723 2.9990656536618285 3.4095993707252195 0.6913106928431905 +3.289011642183266 2.9538014415056395 1.3694990868481844 4.997124801016826 3.6430803176344986 +2.8873496760845567 2.0801303330218204 1.1883302032003176 2.295311656248523 1.370040512250405 +1.2068168946879911 1.0831660250601511 2.1224589645681093 4.013541834262364 1.8951210931259193 +2.1691363853576595 1.5341303316261334 2.3961255298453623 1.4290567320066736 1.156916050553735 +2.917166410200885 2.7131687088585132 3.1590081791648057 4.525713426562289 1.3818459738396274 +1.5480327485398444 2.5862623011925585 4.854767175104712 4.512870359495787 1.0930754944307268 +1.2952582906503554 3.3517741725218766 3.1862811691173594 1.4396020774701266 2.698174460924905 +3.3495285829165002 3.966794141506017 1.8072954145638462 4.769673160050056 3.0260037469859133 +2.987903393242088 3.2891694117467165 1.916965517351882 2.8659941016828694 0.9956989845243939 +3.689064872028836 3.672031767400552 1.469448151869535 3.2401827991219645 1.770816568036753 +4.357388561341154 3.0863208442151575 4.440097390453447 2.9843219678180803 1.9325877011584942 +3.38359919487531 1.4553102390002386 1.0963873727982394 2.941036085665222 2.6685252802309347 +3.2285801261537164 2.749466042731763 2.0301439595214053 1.8830171410608552 0.5011951771950546 +2.7435873910289748 3.4528574927468076 1.475604547130911 1.8050328735671353 0.7820403438758109 +4.382455414288604 4.925846655894874 3.801944622205349 3.9460198132745083 0.5621669699795776 +3.910128548505637 1.2698006644542121 1.6933524483810447 4.170752936088155 3.620613830801471 +2.579980700294186 3.5247986547428507 3.4470527662773014 2.676618218226919 1.2191186816213406 +1.136834255380021 2.894658428135807 2.0891764336930985 3.593755906360615 2.3138075140117045 +3.0090848360320597 1.174019730194824 2.686316919945547 2.654797741967546 1.8353357734327074 +1.160920040070752 3.186741067019562 1.518250413912499 3.955027338764172 3.1688850743940695 +2.66559106267165 4.3083547439150465 3.16882440032763 3.9121708070008214 1.8031185187686085 +4.713002857512112 4.54718995298683 2.6651908533522928 4.319675802266502 1.6627730950104902 +2.601781271757356 4.8692134519337 1.4099604374501031 2.8309747769904625 2.6759167484954705 +2.1105316802627563 1.4827525729799063 3.5108415343338186 3.5283547046887254 0.6280233424616732 +2.432523929757974 1.687572942510175 1.8939687742512743 1.1638231346412873 1.043103364218018 +1.8007676829537602 1.928535531111177 2.1623285483427774 2.2677814640103326 0.16566514553630526 +4.9645179815506255 3.3098389025823884 3.4411822434407546 2.329516285400234 1.9934302236700743 +2.9807818865139986 4.0264392586779945 3.6468740195825697 1.6730863004711454 2.233660068156297 +4.4851220672571515 1.678598604284311 3.1929274262691956 2.6331046552607824 2.861813320808435 +1.5508113136185435 2.2520367859359007 4.931830612167582 4.773495664988296 0.718879070863082 +3.5437402108399607 3.5888294677726953 3.668640203687596 2.8048855783893094 0.8649306872894091 +2.734026826192084 3.1185916032240137 2.4058857143943864 2.0926300003303293 0.49600323600496804 +3.8377263852802295 2.7757881019123225 4.414689969657122 4.779343399965793 1.1228023164913126 +2.682084866411438 4.070072802704077 2.414425952540664 1.0545438195749668 1.943139193895598 +1.0247638505518548 2.1097343665567365 3.6856090781592443 3.7199853328113073 1.0855149687976682 +2.3554980199474183 1.1696434930141284 2.692892431960567 3.5361357816326286 1.455098039932133 +4.204801702506856 1.5465969225017946 2.714486351181208 4.782491257891984 3.3678920627926305 +4.689655768686511 1.2685987935193448 2.716215263997793 4.472451575350887 3.8455164553873704 +3.760547194856905 1.2626344832694691 1.4881479545838112 4.926056994668845 4.249563093143634 +3.303486610389028 3.394152782559851 4.01551764480133 4.741792678250421 0.7319124121010578 +4.140092318466287 3.5381844445990516 1.3469265199813463 4.557224091648235 3.266236915362035 +1.2633984536423477 1.340831205461404 1.954793859285496 4.6365854474867465 2.6829092332021327 +3.658252581978434 4.754101941189965 3.8570959572101615 1.0460311711294659 3.0171130322921664 +4.479976770718691 2.0095561000058453 3.611862277408168 1.1653257485823674 3.476854796675338 +1.0219248793708449 2.0749240209607143 1.7674849447573115 3.039409255161802 1.6512415461061232 +1.5325252008924077 4.107027387410044 2.722469001449852 3.329118960067765 2.645011470802198 +3.938014877459483 4.9192752224310325 2.192516917940889 2.706719830446521 1.107825121507433 +4.773761767785334 3.8170781563809846 3.987794646299642 2.521145283296545 1.7510864873920586 +3.29167761227903 1.8011894044957764 2.2739212209248 2.9105364067187525 1.6207510580975737 +3.858436871136498 1.968279906819804 1.81763246778231 4.866276280539642 3.5870492674088634 +2.5783958797200537 1.9446414323944845 2.5528983428169147 2.6265546111661378 0.6380203330396849 +1.0976156392599368 2.3990704971361927 4.586845794370622 3.8962691288799345 1.4733230731954015 +1.030119388317873 2.875201681596663 2.1403982528040255 3.88456291720334 2.5389838608211144 +3.29383709389742 3.6485386049010264 3.7623285293353668 1.9206022972802548 1.8755715597513634 +4.652694997306575 3.3442639949630064 3.5157027719934533 2.463594376545932 1.6789650870893518 +2.4984229003288907 3.6657919275917052 1.57675139091356 4.420731153786328 3.0742432137751194 +1.461509438925193 1.4782008478924547 4.129046056059941 3.240917065752044 0.8882858248101441 +2.359341938411821 1.1573731364831357 4.472096255291267 4.320019925293362 1.2115511590335384 +1.9459221569459006 4.409651468488629 3.728123497199523 4.720712017223305 2.6561615332350947 +2.707736147617531 2.2023919843922313 2.7208846799990516 1.2386561935107512 1.56600575013736 +1.8002047219822246 1.9594893210700985 4.223400338888412 1.9600312286624653 2.2689670144432643 +2.988896809084812 1.3719013286187876 2.208769463894938 4.067722405161982 2.4638142019423754 +3.846192098090603 4.801830866200534 1.596966222741115 2.216515645869822 1.138897248575911 +2.905184019135955 4.8667015442813 4.493143136788197 4.61899478232948 1.9655507213342953 +3.4578244851713107 4.850621162805949 4.718782938691153 4.896287274471597 1.4040620977901732 +1.1970092294381192 1.3754916572182028 4.099539771604061 3.6854656830437444 0.4509027920110158 +3.5617437448860403 3.521069888954268 1.4608613386708331 3.7018267363230533 2.2413344855310933 +1.5566087790124037 3.476713315153238 4.450433122865336 3.0308826416039403 2.387870389815592 +1.2753122379470478 3.834567353337632 1.2107739539106723 1.0866516017064076 2.5622632776452914 +2.601566411705826 3.852593957891958 3.7969898462606086 2.912492216803 1.5321246613225126 +3.654095455894016 1.2605873520850528 3.859201553227011 2.756946173738618 2.6351182069520678 +4.80253458936026 1.9021002020940658 4.327853648907498 3.5660426866130215 2.9988123611036848 +4.263578923743039 3.132891031851081 1.5180353357549734 1.4222100453137552 1.1347412018426157 +3.6493693913051346 3.165589572606073 1.4512030410745016 1.7362686633851334 0.5615205445964063 +4.513652408422407 1.8570675798305398 1.7163206676624716 2.871063294789982 2.8967004481668144 +1.9238750719340398 1.27946993774315 1.4682624652239977 4.724393905542733 3.3192845514664366 +1.5703352722845119 3.4486632276582654 4.397013488374803 2.9175838702765784 2.3909888964285897 +2.967282285602141 2.0248500509588627 3.431881845072466 2.1314708098732353 1.606003542138889 +1.4219885943588193 2.8831483124889425 4.2478740734080995 1.5557265149036543 3.0631105430015984 +2.03391665863361 3.8936918599529116 2.2816587334081326 2.4955477288638575 1.872034268334666 +2.90774544387519 3.262376927829962 1.5487965332850249 3.68538590096972 2.1658203100708167 +4.323986409207102 4.119261493239446 4.933410654553441 1.9909226953631318 2.949601274951907 +4.572369560040572 4.337856861734528 3.9554856011615778 4.903808147192926 0.9768888662371787 +1.2449568957613786 2.7102843155836807 1.2517844401290783 1.3747605054770995 1.4704786839432817 +4.056109488307266 2.166114916508012 4.763486550576275 2.4274526332669626 3.004851734154305 +1.4641315552167362 1.2351900270137914 1.9304587183093118 1.6850787450982412 0.3355973101634837 +1.6457859937476487 4.92857810604208 4.016151633448633 3.985973994684502 3.2829308159667194 +1.0674375930531559 3.343589796164947 2.165655506013102 4.679447865570862 3.391168069957847 +4.981541979087613 1.6228612870444192 1.0914698250090988 3.9867197643960925 4.434321616958352 +2.880848686850141 3.6614754420899454 2.8958944698041424 4.682519181686603 1.949719464975746 +4.032314130633341 2.046438495679305 1.5305701539948116 2.6589143564701927 2.2840452440273373 +1.584932168808093 2.622527264500792 4.547860022754861 3.5928324289899707 1.4102061152391512 +4.368363086577692 3.958833471039755 4.197773782981013 1.1664864885580455 3.058826109364958 +1.4260728699169705 4.333117827380413 3.7390569789995274 2.9997543821124246 2.9995797563121473 +1.8385838179327276 2.8231627904344907 2.7626921915123877 1.0868797875076956 1.943641676469357 +1.3359110597752544 1.7381494851718 2.9494633179700593 2.7313034215335072 0.45759096503176233 +2.702920708617258 3.5552902466695357 4.4094293887529386 3.200211652307092 1.479439543724133 +1.9834793899064151 2.373973500383262 2.942608274229795 2.864728098283334 0.3981845955364867 +4.951393308024067 2.901927551013989 1.3593008930122736 2.917476014939336 2.574532889622758 +3.877425173294891 3.4865843281646796 3.0276582687291147 4.992955636403935 2.003783997743189 +4.5118309625752815 4.125610663847036 3.2447081091333434 1.9676790739183936 1.3341548920315665 +2.8332502916255984 4.642100856396981 1.4637213633439203 4.169372943286142 3.254610704480274 +3.2611853224036773 1.0190756332336766 3.7054540686440767 1.7303178345215584 2.988012550444472 +4.643800777541392 3.4975453981425004 3.6129723695996154 3.7411670430046766 1.1534016078930733 +4.016797473768749 1.014315571619262 4.290130998477046 2.631434262458231 3.4301854811095382 +1.2772266118301707 2.0463999057686397 4.904878638251118 2.3249106195275235 2.6921854567887227 +3.1994671163366566 3.1061532324388397 1.9511094388649441 1.8754869681530382 0.12010927942781245 +2.323641670031569 3.292548538665402 4.217270695590802 4.340392213043669 0.9766982277785274 +4.635114754755458 1.8367735871367823 1.332304822040117 4.737079033718885 4.407176048548802 +3.987303817224453 1.3062519824135381 1.3140518375588894 2.7496464578146242 3.0412120699895593 +3.906014180735247 3.569588394089884 2.2427379614602083 1.4741419820930863 0.8390006492364931 +1.8089442778952471 2.6990120239586846 4.708845734910002 3.545208113159172 1.4650164187941295 +2.6876185258170455 4.483839196828651 1.5939612529008746 1.9785976005368862 1.836941430446859 +3.43946766627529 2.959468927695312 1.1002028871425535 2.5666918930551725 1.5430452985900809 +1.1106810881883122 4.332887455014617 2.4349543299127374 4.415255201575878 3.782090085220838 +3.753878818316498 1.7674869253603323 3.659515436477673 2.5764300011691277 2.262482444700838 +3.4196508604647424 2.1084041030009524 2.96559787151045 3.597576320831363 1.4555977532839797 +4.277820276513765 2.534169752860506 3.004324446033083 1.6187501337577221 2.2271356769343047 +2.5625178945151235 1.395803906044879 2.2922022293099977 1.090806314823666 1.6746861420088826 +4.274201652812412 2.927944920691207 2.810070668961903 2.193500624517231 1.4807315112768318 +4.480331754705288 2.0492429038916575 3.875818712470838 2.3176538545118395 2.887571769693132 +2.7772929104457655 4.036647980315937 4.116290056262109 1.714255210768215 2.7121479662759147 +2.870144059796804 2.1976799954957573 1.0395915004965741 1.2125310075531766 0.6943457286375881 +2.4110602882757908 3.2956368254919104 4.289311463006715 4.636799183214897 0.950380642631541 +2.5569682958189217 3.171406796237617 4.015575326595954 4.191532834990269 0.6391366955175634 +2.691785247222063 4.91187227155531 2.78055060235491 4.99344530529319 3.134595565923162 +2.9159983773477927 2.19987166652584 2.352633935874763 3.81514095762216 1.628423855945715 +2.2133997135049293 4.551411079644974 3.4781895126016407 2.8466197986452175 2.4218128440874693 +1.9476224265337465 3.8575670398603563 3.0677156607703933 2.5263809440360645 1.9851780024766468 +4.4097487755416935 2.877502091846949 1.577425702216841 1.8790274819913697 1.5616476981882648 +4.735313072883329 1.2720492155707865 2.556542985683717 2.050667958892883 3.500015155409756 +3.664037604803128 1.6196690919952808 2.0233276906649817 2.0651120135545504 2.044795477743314 +4.167511558914911 2.1784059884922584 1.5452990207691437 3.7126466746703244 2.9417574378519684 +1.8378335110249182 1.25438802072334 3.9807471304179995 1.3177193891952297 2.7261924713187984 +2.249520443669443 2.416587391606687 3.9165844654930395 2.790481969627279 1.1384279495375018 +4.16585923277621 1.7086072159553565 1.9439270691048902 3.681377738604635 3.0094554828266302 +4.229685869225734 1.755248359177262 3.4245847337887776 2.469039568093223 2.652528521018959 +1.594771489439101 4.278291338536899 1.0833543721446075 1.3425157085267978 2.6960050776616264 +2.3220180037623823 4.72633894522448 4.878502175719982 4.7204457424894875 2.4095105365278515 +1.310909965326776 3.8145961652318903 1.3415463168742447 2.450840064777585 2.738426045510952 +4.368605305798886 3.197622473635797 1.4695220687383257 3.8897567703442717 2.6886310278798597 +1.8902122285734566 3.4171656142546096 3.9350273156574924 4.816079105514958 1.7629063782442276 +4.098614320060831 4.051179946039284 2.7147570067253564 3.184391074894668 0.47202349287304934 +2.277431244037429 4.784718497221127 2.4806072901466667 4.4931611540602745 3.2150991314625195 +1.7487789770898035 1.1234055010845032 2.7143812921040733 2.3957899537647602 0.7018492896311761 +2.471579307342125 3.506217391909041 4.426326898602806 4.381324775649729 1.0356163175165702 +4.485783622296211 3.694458631578226 1.2387453062186964 1.0173857212920527 0.8217026875784903 +4.521671627153529 2.1005981186082825 3.08037360264137 1.0487944941018226 3.160523786974863 +2.922287810194904 4.544501068496813 4.118907565848619 4.443399869346054 1.6543491501008993 +1.6154412203542488 4.523303715463668 2.598102945198861 2.722202220015712 2.910509391923353 +1.6988523310649124 3.0073755402614952 4.1057560136819085 4.101393367568788 1.3085304817570098 +2.784098999049075 3.089255363794988 3.203092492426827 4.565787265584127 1.3964445752464243 +2.758199223914677 2.6675275229528688 4.191779071655899 1.0542359630095528 3.1388529936856693 +4.430284935879476 2.726538839217031 1.7552370561057566 3.8186036695124326 2.6758610844387736 +1.1716590884544105 3.291759635046759 2.104437517870361 1.2332864479510914 2.2921017678721562 +1.2616907853879344 3.5174723580854814 4.821848733900172 2.2527228144465945 3.4189118873890285 +3.3361166220686864 1.0882614074663262 4.9719103620208305 3.6428779706219125 2.6113560008552166 +3.72983616700953 3.9420999031536366 1.2600750682810986 4.585088364700619 3.3317817027903343 +2.8895707911279844 2.116701093874189 2.854886678482844 2.618677472784181 0.8081598590563424 +1.7668659969113798 2.9447029917591565 1.193872160761984 1.179298379889139 1.1779271545902028 +4.46097063636381 2.3386707080860787 2.6877038656674834 1.5250538654544603 2.4198991732225137 +4.996601784863669 2.310602712758903 2.242496481564853 3.2445881931396716 2.86684126064814 +3.6330483128108617 2.468656060544264 2.4170681880336806 4.755675790522261 2.612449968048358 +4.8769797754643545 3.3950354306919768 1.589723687846798 3.6418614118337795 2.5312898449630974 +3.8587601669398834 3.937671673339919 1.2864676652562257 4.324728511672715 3.0392854417954505 +1.8019691408199399 4.649662894277242 3.2671667130257886 1.8041400530549918 3.201531933506996 +2.324737342499145 1.2284113823200933 4.142757911815226 1.6432808687697427 2.7293435290695656 +3.1798594544397654 2.056232884258575 4.259278480979126 4.5740978911892505 1.1668967093372902 +4.736726648286793 1.0772805517060609 4.924438804517054 4.344801458459126 3.70506750096743 +2.244184588419028 4.55078841957009 1.5452085771650759 1.2070976382239698 2.3312529337059056 +1.7901920139986869 4.175185979237078 4.057376026309537 1.9394853631574729 3.1896170734572884 +1.5974508878531615 3.7496431253938147 1.4914273377819236 4.059695093353229 3.3508104529557494 +2.944254629063426 2.129950179309458 2.6079707148438076 4.77565219475498 2.3155851820304525 +4.101921239096348 2.141919112844332 1.5972126780048477 1.6793079914629336 1.9617206670176581 +1.3767134064608855 3.4407972699696168 3.617270338530482 3.2538054161767342 2.095840868333936 +4.273005434134561 1.6379011703066286 4.002139777113219 2.6572966073357884 2.958441757503628 +4.581937929950927 2.8417648012670313 4.190474895122747 4.415135101628335 1.7546152644328135 +1.9065497958411806 1.6327631455964324 3.72147459439099 4.291304524546277 0.6321908565876441 +4.5774232216966935 3.8491939429943107 1.2143985473592012 1.2845399101946309 0.7315994075584015 +4.5727707087686085 3.191919572016408 4.764892868556737 3.8161966785078576 1.675343046329051 +2.267706513052216 2.7802928605596104 3.4090460501661326 4.9304417935694405 1.6054251062247267 +4.915857012547518 2.2759959326083155 1.9450086567681106 3.054856220250964 2.8636738877788788 +3.07590926083203 1.1984251963978618 1.689769703671491 1.0347115207397177 1.9884787238565365 +3.743266095218164 4.232595592751591 1.965979041095367 3.703139676759273 1.8047632618314629 +4.546759343503096 1.4314835327044224 4.208717335551645 3.529780396997571 3.18840065610966 +2.240524191628685 4.660739838480142 1.9665033057508068 2.9088801157496755 2.5972134739540103 +2.3264537677360426 4.3903246940287275 3.0951001025826606 4.930512278791844 2.7619379169295524 +4.681624059995977 4.028822059209999 3.681410448680519 4.929492496481828 1.4084953852512565 +3.2412187456774313 4.484974087546915 4.202005085442828 3.977322630140847 1.2638866864356957 +3.819049305092125 1.9991048538280074 1.8231450921350731 2.8510735486926717 2.0901757623434296 +4.885519350546479 4.955768283652116 1.3834895718636067 3.438627597584592 2.056338303238752 +3.202171338275664 2.2484594292222457 3.794058455283627 4.458324268000929 1.1622458756284288 +3.5066822661904355 2.5759089929783436 4.535962591096651 3.8153403446667733 1.1771301152275373 +2.1329846591849257 2.804114305686068 2.198988998575308 2.6158756009942596 0.7900692638554957 +3.8305589431068623 4.261293287716502 1.019684724993446 4.6891053116188885 3.6946149348987514 +3.3370559320859225 2.807823389526707 4.421518039350477 2.268745492165981 2.216870930842596 +3.247836230890315 2.206967943841791 4.73828531798409 4.392899977446779 1.0966758064448228 +4.665632264159517 1.1087429712479913 2.3061116747066017 2.8773863285549277 3.6024736185235526 +1.5814317468011323 1.394124091930233 3.333136852668158 3.7223670753926354 0.4319540760953441 +1.6911757718459182 1.075253523794764 3.238549765030876 1.8267022031897011 1.5403485818220684 +4.707433507675384 3.676385710686268 1.8200830470380205 2.839773075406901 1.4501128623769388 +4.525465751446458 2.6937805925250995 3.470357988742755 3.6136204684353572 1.837279145775196 +4.113336481263926 1.4116594884552476 4.563020591654358 2.3149251875871677 3.514682278565129 +1.1630939427915052 4.552101551188326 4.462469061077215 3.7305120457710954 3.4671506517639785 +4.117185778277525 1.0019105249438858 4.393293079615846 2.6200043304449414 3.584618932602053 +4.205473110500677 3.238397658892673 3.5968312758023617 3.271984618955605 1.0201765923443542 +1.4184428497925343 1.854717785320371 4.3736019406380064 1.5247430249490832 2.88207094653655 +4.449274782146219 3.7799834701757984 3.895906271458015 3.171373583081517 0.986356161234451 +4.089583251980947 2.7807817092081506 2.463280910739681 3.255068591645563 1.5296696408044346 +3.053769613801019 2.1262723054231 3.9914907979458754 2.930525443683885 1.4092191951547337 +1.9994652749002713 1.6357868618671696 4.287426644603233 1.76199108836214 2.551487161800552 +3.21904928940858 3.166026192248814 4.205217963046369 4.72403886373637 0.5215233224173177 +3.591187904116701 2.2509079933683593 4.7593127515847655 3.9291534495833194 1.5765515233747076 +3.979656217056301 2.0114708162702764 2.700967082151769 1.7880807016445792 2.1695887434218406 +1.4203116407915601 2.8892066751817285 3.289336532494088 4.071195614496613 1.6640181027158103 +3.443447842667691 1.0963325155604493 3.1684234029911584 3.0390506404556543 2.3506781299080064 +4.427726018405144 3.7060918274874144 1.3873628179690138 2.366327783106814 1.216194190279143 +3.180164226475424 4.570367042512979 1.4564236860270192 3.589404600006267 2.546030527923515 +1.2482096505589513 4.116005735710208 1.8596250018325668 4.253366002499064 3.735538831852871 +3.0030507058195965 4.497741964005291 2.9506724369111796 2.309841723352591 1.6262736426372852 +2.353953560723872 1.1788249332493987 4.044666794973152 1.8173643863826454 2.518293729973354 +3.2787108609454565 3.058141216117114 2.194761272600984 4.931888173370355 2.7459997522095745 +1.6950513723280665 4.52522495210724 1.6268100351839383 2.6430712814022845 3.007103159561595 +1.0880202616619439 3.1378835780480165 2.7104524269270365 1.0904395305644936 2.612734467994454 +1.5754395147156948 3.1799191328070786 1.1028710012666698 4.355477253103453 3.6268170996561713 +1.1640989408921434 3.2382087278159335 2.590802194485838 1.9754017735525915 2.1634807802007088 +4.788010187941884 2.481514583756578 2.928925917095642 2.587897583447565 2.331570778783463 +4.303588448673969 4.510516016808584 2.4463769737697203 1.9236823595642583 0.5621642804140998 +1.4144754709593554 1.1779850219889374 2.5956857852481865 3.1869516148447756 0.6368068888625285 +2.451239822507151 2.858602550897539 3.126917732302669 1.5139645636867591 1.6635992055269095 +1.7327334998347341 2.7299711527885298 2.1155261414281394 3.594399263271375 1.7836896162110585 +1.8705732926898282 3.664683026367067 3.8918675039463575 1.3374326306466053 3.121532837950825 +3.520826380196511 1.4138305310058654 4.354752603692351 3.6531989610525835 2.2207226350915 +3.6825066877833192 4.1391846658631 4.70390970202201 2.6978846659313334 2.05735053432458 +3.336865249952943 1.5132250926683346 2.29357713678209 1.4975164715131961 1.9898180836572439 +4.202972668058164 3.9848211086488927 2.0954176202126544 4.555636480587595 2.4698718476506567 +4.232157213256352 4.697972398781893 3.6532865142079674 3.7925388925527472 0.4861841337815044 +2.083826660603442 1.611263774710602 3.732462113820515 4.152891808654558 0.6325162522984018 +3.0967147491736995 2.334140618989569 1.0113447462210998 1.9390514781337767 1.2008992815645207 +1.9488336021401658 1.1003992993884606 1.2842876448592233 2.6026176574376563 1.5677483178593505 +2.5846147757201776 2.8345468445294486 2.7870201694962082 4.618098740953782 1.8480570266824534 +4.429714160820298 3.48025567709047 3.6900364780574804 3.174288951105376 1.080493833339069 +1.5636522930673573 1.1031268147602007 4.80295873814106 4.322504072015764 0.6655226535375068 +4.746489641847003 1.6205779580830701 3.4027298850416257 2.325499510254177 3.30631957545797 +3.467230353011828 3.2976473153787556 4.350089117219575 3.9765676694634196 0.41021540510652993 +4.192964665623708 2.082496508578786 1.3799690149564072 2.704284843816132 2.4915634161042357 +1.2565151908059131 3.003637030899905 1.367835046334466 3.2815663302496048 2.591293528562309 +1.8881322541330987 4.713056315379074 3.3766810528826086 4.5983969868803705 3.077789105054223 +1.3177919046883955 4.966104239870432 1.7000611511893586 1.4380032453840452 3.657712022704421 +3.372153772356655 3.7447974633889785 2.9707820492985486 4.889524562609955 1.9545936029913649 +3.2716351569695186 3.35979139779256 3.7560770236606005 3.9246362092320544 0.1902201930305033 +1.9576491783584298 3.8303009736792673 4.8731318109645585 3.130269806490561 2.5582010697279984 +3.418571578057377 2.6547978021497456 4.583350852986177 1.075587309615814 3.5899520131837983 +4.581961353514487 3.9856688733183696 1.4806136065453313 1.4057818552993089 0.60096964393635 +3.115540475218512 2.408341189746217 4.792234207317121 4.504871265136382 0.763353319185353 +2.9228478603845724 3.3157618499186636 1.9882660923374318 2.4933637726540288 0.6399258315092485 +2.1256269661981353 1.7017722094508683 1.674690891538749 4.35804630325487 2.7166245821613773 +1.812987726519427 4.721646018952656 3.1642912330044326 2.1691122433439585 3.074194900067696 +2.952118260202723 2.5670586677218483 1.7703240915339697 1.4821273680070455 0.48096594600157677 +1.4187999883833413 4.347381699250792 2.6813783599638317 3.8224704127431504 3.143037051983868 +3.5731825245884674 3.2351179141429753 3.339715602479718 4.7169400736921085 1.4181096307909027 +2.453751185001268 4.871473493333181 4.28117547330945 3.3461757176147664 2.5922202266310075 +4.342693597883814 4.05381470989062 4.018241218292181 3.739111260397233 0.40170206039130546 +2.47808639942937 4.085591756925217 2.6544291904598105 3.7484069179717974 1.9444435560514841 +2.2461709315081912 1.879506588710628 2.5150591302044596 1.705967848405694 0.8882969337794309 +3.624488860968692 4.8979920043712575 2.2817127790956406 2.6932759797685124 1.3383551563035554 +4.647488838495137 4.487792945572414 3.2271681628257314 3.717820770270846 0.5159871698105251 +4.60944322946218 3.8754728234129034 4.981168733920505 4.910483573818436 0.7373662243517767 +2.641704966914035 3.215667328826648 1.1199029521191886 1.3862319780067693 0.6327431887602846 +2.747049633111089 4.37070241494543 3.168257749174431 4.220658093853389 1.934888844724364 +2.228130925422775 3.6236563984670656 3.0433815329426945 4.785735070409041 2.232327752691567 +2.5349822535097872 4.997302119432752 2.5850724884142293 3.1106170295086386 2.517780011596132 +4.5255001592683595 1.8661360065854296 3.3898721996987975 1.2224876005032268 3.430710377954563 +2.5677589531730542 2.931026773843344 1.143043382867598 2.1586852267816643 1.078652800786104 +1.2811661216231482 1.062912097972529 1.9982672489260094 3.8728764539679252 1.887271705522967 +2.07808097333766 4.941017760819122 1.3820273403393184 1.6940741354147506 2.8798924027524917 +4.120521552880011 1.812962967930229 4.620751732387849 2.157364909431309 3.3753668337665697 +1.1196719189665503 4.507777365154872 2.8064422142381305 3.478062836952978 3.4540313801913904 +2.8795450253669364 1.7907350239622475 4.767214009732492 4.805539317049862 1.0894843038519872 +2.996993934584261 4.216545942040287 2.324855801718219 2.3098743875346255 1.2196440225168008 +1.5747381331516448 2.845758670138327 4.830854316531142 2.366575148829397 2.7727540500034835 +4.675299852087949 1.0821588639328326 4.9597280560905315 4.609977545084398 3.610122931523161 +1.454071748360274 1.5038583423608451 4.0941848709295865 3.0465996161113664 1.048767643977794 +4.758461439998532 1.687619594220998 2.717383234492957 2.187549357805011 3.1162146233314147 +1.2979225606095182 2.227622285683868 2.6574599390837292 2.4319197708725797 0.9566660578697433 +4.2619011768282435 3.777749228537996 2.0476838553123295 3.9599494400979305 1.972603045670532 +3.872897863390007 2.888208781999775 1.9273953930307925 2.034039703085346 0.9904471696542684 +2.0288729928176363 3.881004190477185 4.582991318241758 1.479183650473551 3.6144172437393713 +2.874224889355857 1.3433935434971054 1.7131622118304817 1.2947227240563195 1.5869896705374045 +1.1187626409192641 1.5516661883762688 4.3383657599325804 2.6098799290226804 1.7818722594667518 +4.289061862569453 3.795572826896895 2.2421986351026355 1.1597795708039405 1.189606010024451 +4.396630611295 3.099868739891855 2.006022647554688 2.6786558159207203 1.4608308356244109 +4.948386561195054 3.910029805109037 2.6119912467169444 4.038629649636572 1.76450613078973 +1.455807575363972 2.3487795244453946 1.8585956393261256 4.62277313804994 2.904836681518828 +4.904546319610279 4.135526086884401 4.283709099068792 1.6733469205819609 2.7212833041078763 +2.500998995342621 2.992257426187838 1.5499204219084284 2.05336790499223 0.7034161030996658 +2.6243390306112064 2.73297607632937 1.2105760639725798 3.5983948347723556 2.390288787968124 +3.0512068824848506 3.5116215266568047 3.6844777924508736 4.98761277940387 1.3820790276930524 +2.9745798818437548 1.9375440628962388 3.6462729892048245 1.7656966571053658 2.1475592263387755 +2.5483574245005465 1.7534554358299035 3.3203140807565004 4.1264125206508755 1.1321059430957372 +2.557743481623134 4.697810251041073 2.9160544921124 4.559679938264915 2.698405155792396 +3.3416260358211107 2.8342580247779314 3.9613849686298654 2.2874745281754567 1.7491136216072942 +2.922282755626938 3.6002154988077417 4.625159765703844 1.3593026885647923 3.335478264443629 +4.1760409769831375 4.026926652688383 4.524231725267655 4.517849481160805 0.14925084505529826 +1.8640445308695703 4.0875659184242314 2.8652437211812187 2.7756148620321683 2.2253270980476927 +3.241516374823624 3.9840551663944264 3.1739229792684545 2.385860743626899 1.0827769595959245 +4.612380749674408 1.6377817508261066 4.323460478496378 2.404794032763174 3.539706221416094 +2.9890595209319826 2.9799502783454748 1.8245210965799004 2.2732921864752185 0.44886353096050424 +3.5177811531945333 1.4469247177667062 4.3914397345094605 3.1979527182879925 2.3901584955902124 +3.5642474180696655 2.125655406293094 2.8602223632376926 2.312088876935685 1.5394795533403347 +2.250018746920998 3.9146623897470514 1.3787817337034487 1.5293212678140757 1.6714366900757678 +3.5111832697022267 2.4267226033426743 3.40714738827178 2.484187305488227 1.424047138016445 +3.1943072795424468 2.423319055877112 4.4355758328696435 1.4147688785852917 3.117642939158256 +3.2567958606214242 4.940406630950443 4.386269884494879 2.957221051678476 2.2083309970522524 +4.150322441618254 1.4081565585107731 2.5599794449596986 1.0530556245333038 3.1289444116262453 +2.0538713465947174 1.958148209978575 2.750796127203068 1.0639354947814676 1.6895744174487946 +3.696942803111158 1.226931092309964 2.2646388723600173 4.1903154898346635 3.131962369918201 +2.182630258566723 2.486198785194105 1.7798320173228084 1.7870820078244591 0.30365508841610667 +2.6117717848170288 4.544873754138563 4.061489415143598 4.103204132100698 1.933552001215795 +3.1957914281002746 3.0232227510602296 1.4478367985785412 3.1537867634565795 1.7146560095140748 +2.2882299827884562 4.8316803657004055 1.9029533394376261 1.0286198508135271 2.689535071283609 +1.089054455134168 4.557323568184394 2.109719369769093 2.6169153989055665 3.50515883413434 +3.941470357433001 4.956445551454129 1.6970233844071987 2.728527794087001 1.447126805662553 +2.586631355744441 3.483765503244489 2.448003409381225 1.4667469170330594 1.329554053954206 +1.7277496999542512 2.093410678944491 3.1567039284468565 2.734862519659734 0.5582634913046031 +1.3551078457944938 2.182751562218813 2.0541960784628674 3.878108066407662 2.00291014803595 +3.4184009801574526 3.0031360450085374 2.283870628530989 3.054777254522539 0.8756380487175673 +3.9770694466013126 2.3650671576614077 1.7303503054599005 4.9430735333766 3.594459892493306 +2.9408445096512787 2.1797704414093477 3.5554664984643027 3.2547594697322237 0.8183266184594015 +3.57912736584856 4.980556921617505 2.8869956181781 3.1063289959456903 1.4184893127498996 +1.146801888894045 2.3300935851911655 4.935276121114891 3.0117150526575176 2.2583769443143424 +4.977996603532283 4.281465223581567 2.8260213020793916 3.5248764541184596 0.9866886473389652 +2.870557342907729 3.2174830562139505 2.797997618328192 1.2177101101685683 1.6179202882090276 +2.925583671525241 1.1239731414651075 2.6336203925233015 4.584118945645325 2.6552297655296537 +3.7109062292779833 4.899322477574405 3.5069562036892012 4.265107138218577 1.4096545742637472 +3.4418390054664125 3.5828468175240817 1.771547661259826 4.067120383337519 2.2998994163676985 +1.2135308698277574 1.8408626508378219 1.050906445288728 2.322623225790983 1.4180298774272282 +3.0988886868901946 4.596856622944971 2.134639791401346 1.197051512562902 1.767195438558917 +2.9929112508284033 2.958254782481819 3.332674042807573 2.35615956176243 0.9771292660078926 +3.617380416848467 4.73440917304373 1.460444370650623 3.9762846027865013 2.7526723952916456 +3.546190226902555 4.599358252406185 3.0363537322278846 2.024782401139663 1.4602874538332553 +1.1722825984211016 4.573736083649452 3.0733386069035844 3.9201781976992094 3.505285024746346 +2.3295222425754956 1.7879682750890304 4.1066204375116895 2.7205014225793382 1.4881554432442072 +4.985307756662802 4.278625681166379 4.742494571717799 3.8667109161631084 1.125342866492106 +4.08869784031713 4.232516292803419 3.97986124942568 4.134618446172155 0.21126650756894244 +1.36293047656886 1.18834569403045 1.962771680380758 2.2253346180567646 0.31530801216435717 +3.6116867777734214 2.0784369005009538 4.3344908975022856 1.8180673487941585 2.946734236854223 +4.363679942225211 2.7323085029449534 1.0676931620854457 4.487451548161326 3.78894710863528 +3.203626683949125 1.3169063725817818 3.4952596725293272 4.2534716736672635 2.033371331556457 +4.807133772525491 2.5689177392026834 2.792882187016433 1.2623433737295997 2.7114866901389636 +1.4104947145688382 1.7486915487720966 4.9195797943384285 4.848758746790827 0.3455325157504659 +1.9619130743536823 3.0823641692145842 4.487110967469945 1.9096395748215609 2.8104749484554734 +2.6316978481681685 1.4560174410435383 4.094788693600274 3.8546126732310912 1.199962057923964 +3.0197776508736407 3.4639714435778317 2.8011504512015213 2.3356479263102687 0.6434288819730313 +2.1048858359591636 1.0545220343739965 3.1190465787347676 1.4147369227579616 2.0019828968141122 +3.525015592525415 2.607084015887363 3.180782060283442 1.3545814098265954 2.043919566694891 +4.876875590756321 2.4187993338061786 2.3568350321913756 4.139311866365643 3.036340321727778 +4.565048694706142 4.1525069981524725 4.716343470339128 3.3214807213036655 1.4545902309730214 +3.938646967767885 2.6854514145440698 4.52626400967597 3.8721783329450035 1.4136220029146935 +4.297525204264316 2.6595734764047974 4.567376962253265 3.000141876297654 2.2669608901452785 +1.4817202435394443 4.0426246798433825 4.2760463559231825 2.541432381180664 3.093075681785564 +2.497384620493935 3.094926357900014 3.577460220029385 4.118032310996798 0.8057755974681513 +4.761351250937838 4.1822055648440575 1.515364765880249 1.2950755944186079 0.619626536539787 +1.1136284490827841 2.0615521822756615 1.059287710886752 4.717086587527296 3.7786309724426848 +2.1635326980948832 4.541701157671691 2.9918357397305417 2.1641769232122257 2.5180755228321536 +3.2468465651729588 2.9242993736307357 1.0654533697024893 4.124359121724234 3.075864283502036 +3.51347140792359 1.162730140330801 4.483561665880843 2.7726947184013553 2.907412977053919 +2.9303168701894244 2.049194917296569 3.491937203191818 1.9712820470232941 1.7574891179895362 +4.764114953038465 1.0154774794247943 3.324229802085269 3.278842855921765 3.7489122266949293 +1.3943145780055972 3.193514795512403 1.2395692812850765 2.838921382618159 2.4072907108853894 +4.637839001628132 4.497794816445846 4.277874156054137 1.4790634073338338 2.802312256147711 +4.10955141404267 3.549789754036168 4.827401379704229 2.814936208399642 2.0888631314012023 +4.352351949801827 3.256853196532682 4.520157515658397 4.735651243593558 1.116492304135431 +4.789586198213641 2.2198126179902538 1.0418454484996569 4.719859849984745 4.486816933099214 +3.544008064419781 2.708525685086416 1.434849679893567 2.3190749254353267 1.2165052778471313 +2.3920777089055263 1.5186784450984576 1.8048865064264912 3.6090835779398582 2.004483311698089 +4.532161853982995 1.0704327089917705 2.219641117506048 1.8153050130744326 3.4852627388230872 +4.744782391986205 3.6492158778173733 1.6082142497500334 1.7841212557153336 1.1095986939951403 +1.3597822561574704 1.3969634474196062 2.6480462987452786 4.8123900061559555 2.1646630510986844 +4.368005603678864 3.4647812444536514 1.3069569050265972 4.602088821655904 3.416680931999201 +4.731636213453616 3.8847392280883954 4.564189645509404 4.980294098484679 0.9435981239948237 +2.223461576720017 3.2525151385502507 3.563937415808925 4.841505838049109 1.6404671001336062 +2.822968247834876 2.0389114085080426 2.5336753910780985 3.8134730553167375 1.5008754740770003 +1.4344542057526524 3.488882316087701 4.755129752870391 1.363752151130341 3.9651124697943856 +2.163813671921875 2.199584751792781 2.3064722583066253 2.356700934791402 0.06166433407199927 +3.1772849765515487 1.2855077243907895 3.4935011667831275 3.070916988096336 1.9384010317447995 +2.0990443056131878 3.4474757693160267 1.7140071271876587 4.914856962817557 3.473284768422498 +1.4823319621862212 3.9180704271727405 3.6759520283333043 3.6500622523833606 2.435876053971881 +4.4616238208383665 4.321775398079257 3.735188287346144 4.195125819494286 0.48072873309875425 +3.6077762156162567 3.38928312772651 4.13391604856454 1.0253844039135989 3.1162009266496087 +3.0329083026233126 2.4409779346779525 3.7618423906211413 1.6870726479210343 2.157556730591295 +2.709655229301877 3.3089307504596133 4.1949197413497314 2.3383372448900737 1.9509048455573765 +4.130005423806911 3.6191633464639996 2.0531896349475143 4.2317340273950785 2.2376360959389148 +3.768608482299203 1.391768684317058 4.84666300933042 4.579380672072973 2.391820911582138 +3.095820219885031 4.24004785169099 3.771005311249304 2.8889201007551657 1.444759908068037 +4.879885607972399 3.7338408734272783 3.4947987375733662 1.2476336525819898 2.522532349204445 +1.1515286519592367 4.5288074628498265 1.9686377998814044 2.9579866506615633 3.519207768096476 +4.408215604390342 4.195652067581483 2.293069061283079 1.550425080547841 0.7724657528350186 +4.54954735901464 1.068221440272986 4.744732647563955 4.346648630726221 3.5040121342489794 +4.274532979993456 2.5216420465766403 2.93322090010485 3.2720442229673434 1.7853369061805833 +1.8200733317087399 2.4866433444375584 1.1262426924445892 4.687906339063776 3.623501554231484 +4.144397669014463 4.584821126812512 2.1164440845158707 3.784634891965189 1.7253502230669568 +1.5798465909320143 2.6419961735543915 1.6044443495741962 2.3801693008036007 1.3152607862415544 +1.756815233199715 4.4131070299983675 4.635382652257788 3.106183328963673 3.065018218559719 +2.9409864120005382 1.7270467236213216 1.5778567030975017 3.278391462514807 2.0893702484262335 +3.2059187432709373 4.272499473122975 1.935970543431237 4.187402473632073 2.4912928751191754 +3.879499888501845 3.583747348779702 4.95421657731376 4.405967440547622 0.6229339296561984 +3.730820173483734 1.3303317447874283 2.74063968505377 4.798703124498651 3.1619566437705235 +3.7264980221202646 1.1248135150195395 3.2470186299847352 2.259212060559137 2.782898505710963 +3.105836034929026 1.0447117865772886 3.0404347682313895 3.199550457302601 2.067256870747349 +4.039059210898536 1.9750259303441706 3.99025736192957 1.6280226493842562 3.136938988949268 +1.6416983852838545 2.7540964715059233 4.90531134755447 1.3705124993173876 3.7057026863644533 +2.576548199326463 1.3342106726420666 3.2363987335891355 3.8404111835908115 1.3813882763239778 +4.080231223525379 2.653342939773718 4.838971499390037 3.882659908049323 1.7177141886939076 +2.134367491443224 1.0230330483127386 1.5975358549474223 1.291110410216663 1.1528056200706995 +2.9500283186665626 1.1944849853299067 3.597531179390827 3.265984535307371 1.7865764949830105 +1.5019167764401002 2.614964962347792 1.4264956878073356 2.294267547687561 1.4113483853933406 +1.4911230358545216 3.090080552259972 4.679036684557667 4.878541909080682 1.6113557874912245 +3.7943989103593156 1.7921078907929964 2.6679071974064392 2.7939497878438666 2.006254236541348 +3.678941931868884 1.8566427694504175 4.878031340864416 2.2579459916314932 3.19149204520645 +3.077965095616317 1.836249004481541 1.6450558260435288 4.585755530468979 3.192111151352809 +4.691196732512587 2.7985268193597044 2.235516708288171 4.905554064498338 3.2728120758320234 +1.2296097205406307 3.2299832033570675 4.2278103254765185 4.2863734761103895 2.0012305497786422 +1.7558537866437267 3.5204519073286935 1.8379558069714874 3.3211681514507196 2.3051519226160555 +1.6455339957689286 2.2612799762010547 3.7875748617746594 3.201017628383775 0.8504072556496027 +2.8705543896734267 3.610098686931746 1.5797844309561628 1.2877636635364564 0.7951112476953747 +2.1853845377597967 4.805431865544383 2.5456289325901 2.582409802103712 2.6203054845176603 +4.4314565919891695 3.187483768088845 2.5739114413405986 4.858784608487136 2.601559873719765 +4.308583744192546 3.835873156848978 4.919380643211998 3.0394655336121095 1.938436513969096 +4.819360313940926 4.520876535533628 4.97417618059966 1.753349340163425 3.2346279696507225 +2.6817731331779466 1.110279177847557 3.5647252983216777 2.524307594450892 1.8846915530578767 +1.387953704300931 4.032775640997867 4.305621994847405 1.341629448676295 3.97244696510743 +1.9544547105871346 3.0835531897444333 4.880472892377453 2.082761490439957 3.0169607992425744 +4.494298015271381 1.7180011906174717 4.199027597957151 3.5391362054670736 2.8536434094795156 +3.6160660906325406 3.5982233965683026 4.18365694456349 2.5369988542236914 1.6467547565478537 +1.5913930400145846 3.637763138467798 2.706615475390657 1.3238057548261577 2.4697759621332223 +4.849875886197654 4.611321140437 4.255579898574787 4.91765292375398 0.7037393390985465 +2.5526782871075904 3.6858711605658048 1.470363500527705 4.3171798986100995 3.0640642442428168 +4.48131467736172 4.728896800141823 2.051980532958233 2.5637949501655717 0.5685515853302933 +1.9338025561316705 1.8741366774325283 2.5080538600450897 4.703129931585385 2.195886831539758 +1.538027331320761 2.1244085163179154 1.2580877715759322 3.9463206348385556 2.7514430434308155 +1.6522231172276505 4.540885324122136 2.5205159605734995 2.8141332415502225 2.903546185826684 +1.1577971071882454 4.08063716621169 3.688771579230938 1.504874925807406 3.6486159846531776 +2.9749442039998293 4.814169395835438 2.1914811099354905 4.346202539571766 2.832944359781273 +4.4582692915349105 3.118768327480826 3.7665222448127818 4.875058030084515 1.7387105624369572 +2.321910928100653 2.884470094643215 4.087954190388472 3.742551325923133 0.6601332855127993 +3.700754899595566 2.693430266716282 3.7248521355143294 2.5600700981725173 1.5399415932169396 +3.2872654581816625 4.350366332774574 4.953495824692508 4.18681104010447 1.3107208049310202 +4.785366735422528 1.6215478133052486 2.6114327747822577 4.51837577610673 3.694073873415058 +1.4733317136507909 4.062493191722311 1.075009995991873 4.616122760020742 4.386711384066391 +1.6832445180098534 3.1450794485580307 2.673676580756901 2.0306639110209552 1.5970055283597935 +3.4279556715187747 2.406420471730847 1.694843997748435 1.9032954481692625 1.0425862897565399 +1.0142588104392272 2.8466773176689766 1.4001806968133899 3.6296056768260625 2.8858436075336114 +3.5732097307079176 3.7895263002968136 1.9958215091007987 1.5462628605335822 0.4988946149040795 +3.0276013836051883 3.4070938621033604 3.48826353952819 1.3038845352240158 2.2170985940371666 +2.797429789326696 2.509708396432991 1.415737287967087 3.7105022206200116 2.3127320847997663 +1.3296506982147047 4.595720566568916 3.4645253402175693 1.7377967770425 3.694428767192018 +3.99801199423696 1.8733614101056975 3.092989009113945 4.672520948830712 2.6474631731593035 +4.412940953686482 1.7233686633707168 2.202716875877886 3.247696106874501 2.885442894608844 +4.385991960983225 2.858088637974003 4.713793836983381 3.481636996165129 1.9628293468454765 +1.627325423807655 2.623116910620357 4.567494122417673 1.8129370862512104 2.9290246073911397 +1.625807695344435 3.069221636904363 2.426923833108316 4.239753865437317 2.317282143547378 +4.410944607821437 4.402455990667725 4.339153054830586 3.2651187443179377 1.0740678548302067 +1.5946570691656023 1.8844576237882498 2.8014752961841283 4.788652434907107 2.008197535633095 +2.7415551637420834 4.56306930043673 4.865919329988893 1.6390562740156365 3.705476883234263 +2.0907430201185515 3.6469481717483876 1.3597774440226562 1.326269063098878 1.556565862901848 +2.7899688600219337 2.83507144220779 1.9577789152705805 3.8149683236075247 1.8577369946681799 +4.319622081049044 3.858112632259061 2.54258080212896 1.5152830964138406 1.1262022675745162 +3.2702270705451473 3.761273770854956 3.929118409771389 1.8174436800239846 2.1680168417562915 +2.982606915189139 4.385996075454077 1.2294272133486186 3.5551763637439064 2.7163597415868046 +4.193499930772623 1.1985670765127594 2.017125825805567 1.0861543682448151 3.1362925017156678 +4.646089014776352 1.9347943144512256 2.135008916772599 1.7544719881464204 2.737869117773777 +1.7568774142101646 4.700928369984508 3.9654105598245803 3.4012694210255052 2.997614260488054 +3.0620626751219633 3.3276357445172926 3.4290023600260366 1.494249749466246 1.9528944465218754 +2.958059480702361 1.3150940577168435 2.6883641384054764 4.217311472241951 2.244329594950716 +1.406315423025732 2.1132167447961985 2.169196225196222 2.5165898152121415 0.787649531901709 +3.2557502240320586 4.518965258671816 2.4016605044429955 2.2430069749026487 1.273139099303581 +2.4799409259619494 4.680444759042857 3.022848605477345 3.752206724025021 2.318227854309229 +2.0397402366355273 3.2591439237522857 4.297429114766868 1.0229389223944314 3.4941710565021316 +1.424438061626434 3.410706186095798 1.6319091136224428 3.516071828607811 2.7377600696233553 +1.8559737984954605 2.3339291374949873 4.436899198088895 2.4084336217904023 2.0840138915818502 +2.6705692495817286 2.9205482950578916 2.4513104685089204 1.0907987296754778 1.3832865627485764 +3.5874248930869688 1.5864151096550092 3.0743838140952486 3.812204308662161 2.1327023316893947 +4.492930264555394 4.571314490844264 4.652734483705298 4.716458673260911 0.10101910346773307 +3.879422100866796 4.057899400740954 1.2704252024735476 2.478745080515246 1.221429930139701 +3.804190309332099 2.8792972398248464 1.1662519130027653 3.049095350642197 2.0977432160978187 +4.0936146329191985 4.184120768388034 4.5060236396448055 3.4080091940460226 1.1017382099669166 +4.800790518808156 3.3833041832481427 1.0026489923020212 1.1616713189876147 1.4263784953103622 +4.824239794142627 1.99133582589518 4.64514474072023 1.6070295071807874 4.153972684741265 +1.4221397945589875 2.0291505290868406 2.606248445299362 4.560590999405466 2.0464400432512098 +4.0752146636905655 2.030763025068173 4.951162952619817 1.0963139727127733 4.363443956389971 +2.544621453215922 4.449544556210759 1.8047057840017917 2.1090021588528205 1.9290744703279228 +4.557382650033931 4.402693041095932 2.8685319036851302 4.725268384121293 1.8631691369534489 +4.126874433380914 3.678929069490114 4.706361617388584 3.687996008933022 1.112530251955572 +4.24569959591193 1.3834154189016887 2.925474987207095 2.242132329000408 2.9427245706127803 +2.8967485853656 3.315191780433602 3.233260503102271 1.8970287642806216 1.4002178285299207 +3.919301572208796 3.834246332561402 3.5959897327544215 1.1196064709577884 2.477843508597346 +1.7424358162315348 1.9458286153878612 4.084834664390835 4.742331224412601 0.6882371373219418 +1.1253668724631694 4.159050020902763 3.654794134208548 2.646309772588854 3.1969163506037885 +1.8783659628474805 1.007670035653621 1.1733997037055053 4.94667774449111 3.8724331589721244 +3.6125789826397487 1.7955201254581277 2.5540720424793744 4.660933009308659 2.7821872733536477 +1.3108588034248325 2.287506477202899 4.305300574768923 2.0552280576661466 2.4528895227705085 +2.850184425143314 2.9680517922170937 2.1958249773980345 3.7198842461759067 1.5286102743893382 +1.4551237971677624 4.894096971395294 4.114568755206408 1.93844627737437 4.069649313095962 +1.9073803690358835 2.511755157848424 4.3298415328835524 4.338342149256812 0.604434567038425 +3.4622518127472937 4.714185001937636 1.0614335191024185 2.997418213142475 2.3055093679605108 +2.95566387257938 1.4615280260968242 2.928028002589868 4.9833554261445 2.541025923866158 +3.7912331272986357 3.6061691018663606 2.014179199627402 4.223160289903374 2.2167196824826587 +2.867728103490273 1.4744726089528855 1.9749904969449394 3.40363919507017 1.9955445311276658 +2.525903576374088 4.05941139916543 4.890092757048981 3.6098265234886546 1.9976806229617854 +2.5130884659570483 4.568822283823723 1.2819963792012659 3.2232787740230395 2.8274757057074167 +1.9819856951841093 4.997641417684422 3.1847818865984334 2.9260070663249733 3.0267381525755486 +2.1558185156942162 4.94106568608569 4.930443671861424 1.223107882102501 4.637018488015885 +3.7521673106182467 3.3719761974443823 4.095592771425419 1.921822728770382 2.2067672013334043 +4.627586818224481 4.984809761596387 3.113188093746126 4.633942424027345 1.5621465886210444 +3.9485595332041523 1.3758122078567183 4.26494466766546 4.7936043754838495 2.6265014537884803 +1.5985073448196263 1.9941391591278514 2.5157331039522397 4.066612591956288 1.6005473185146748 +4.3017196868294825 2.376380571981501 2.5532176820159562 4.550649957960109 2.7742866477974206 +1.1556718764166423 2.4319645191988104 3.464997995055363 2.5482470556433263 1.5714182113405528 +3.242734056421168 3.8825297825230973 2.8678815134620352 3.925223010109398 1.2358436841570135 +2.991301572560015 3.9642429600370397 1.192760137811487 4.7638303693952295 3.7012372988460607 +1.6266365560228913 2.493561944750496 2.7538526191968735 2.869593815139518 0.874617432972121 +1.0313186738463886 3.5782985733204886 1.0298289360512518 2.573333024298892 2.9781725065486513 +2.842387993236124 1.854316048971921 2.5444212743281853 3.040425185084974 1.1055795071038854 +2.1430409325879576 3.9692811306953413 2.7734249356718053 4.783238177976419 2.715603529627674 +3.976421619718161 1.5898258993586611 3.1974494112430842 1.4011651679769699 2.987051424907914 +2.7077001498687983 2.7071747167808184 4.028313927046035 2.7053098101270163 1.3230042212572881 +4.273068281039006 2.6958004743950625 4.684049661120827 4.591747215110898 1.5799662893286082 +3.423963101077706 2.3137720129137698 2.478591195113398 2.6184348327961837 1.1189640276787178 +3.835047160363766 1.042320416306103 1.584839994207032 4.477356255491571 4.0206930980578965 +1.3398059747688 2.1391786214779596 2.793691585292256 1.9021923554815547 1.1974003111156604 +3.352475494565317 4.849686918701148 3.8241903432781585 3.4415181352193946 1.545341408033647 +3.1806074137698284 2.0787898335125456 3.9703300017644527 2.100459613948162 2.170349568018078 +4.087103778334117 3.685763859954117 3.1207251612321594 2.9978008689622446 0.41974291145333786 +2.2999370260628265 4.557844701751919 1.824478065478413 4.789184616804054 3.726611330338716 +2.1244491832115298 1.4871397757227651 4.0995105152457665 3.135500115974964 1.1556294089265524 +4.160228386303308 4.7366532605934815 1.0303486744393338 2.69461351552977 1.7612617911571857 +1.2223545467373516 2.4180675821318074 3.990231098226985 3.067294174750051 1.5104774833572632 +2.497688308716494 2.195192794871426 2.233293425775099 4.521265432791667 2.307882024885114 +1.8287059362637286 2.9311845472627236 2.2876012025793195 3.2322085231307307 1.451806487707501 +2.083957891627068 2.7205092832934494 1.708456649659981 1.3088332468248987 0.7515959940858502 +3.863292321242478 3.746442989224191 2.4338376177772254 4.717234767254084 2.286384986967891 +1.6866038564293855 2.0480535833190077 4.406851161277458 1.6612748746352612 2.7692661574577 +1.3722211755905627 1.4593697371326408 2.8155066947288216 1.3907132736830392 1.4274561865199917 +3.45491068011138 2.385891929561255 2.6712756160063598 4.481612377139346 2.1024082091109757 +2.053284043310448 3.968466164197121 1.1337507899838184 1.544460956571445 1.9587254522016126 +4.556462336119931 3.269885881167305 3.434364940784348 4.86600993719909 1.9248081385420812 +2.68855618338263 2.0504999741565237 3.7051210200554996 3.9938734958136393 0.7003525672034364 +4.814145031115649 2.0521350094763444 4.7760374242206325 4.803613360016495 2.762147677418962 +4.726257557951607 3.7879738178523317 2.035595772453672 4.342379280413597 2.490306513168727 +3.6573897973124443 3.5265743867290493 1.5912873139279031 4.505235286383492 2.9168828323784517 +1.8552707512442557 4.219313987102213 3.2293857411466877 1.586399629774315 2.8789066992815644 +1.937827830090173 1.243124535352763 1.875903099348593 1.484595152623652 0.7973296538377975 +3.425670972065051 3.32122250346235 2.880149864553485 3.9960423067595623 1.120770014394609 +4.4625729671335055 2.1341009409432976 2.2756438224572277 1.2422742184874278 2.54747614614132 +1.326387522908441 1.376432120557245 1.156637839504314 1.5978756758075972 0.44406676293034314 +1.5355746103051082 2.8861873003618537 4.4460499291145235 2.5145094216118253 2.356905464940437 +4.3813340327042685 1.9482928980142669 3.063507787139068 3.146037883602032 2.4344404654695904 +1.2589045540996833 2.7941351236217504 3.715435754737513 3.1134500979016337 1.649035970690505 +2.78663900082787 1.1778977902503587 1.2213787122637778 4.684264790399845 3.81832794201323 +2.8014856229399556 1.102434835783885 3.582651496097028 2.305416092320922 2.1255831797402744 +4.015221364232913 3.352714211629657 1.4762706913869468 1.8114996638123309 0.7424918795541485 +2.2579787605582364 3.692238341112238 1.3376888407810572 1.4721528010617941 1.440548888800835 +3.666974411006461 3.105910563110068 4.707118281880319 1.6105547297352376 3.1469824393996344 +4.097006023179672 4.1484438808787605 1.8712194599827146 4.44269877028288 2.5719937201530034 +1.286111529803335 4.954531729369338 3.826378299942886 2.828479733538636 3.8017243863036057 +3.133295709345341 1.7000820431930843 1.0225658793547718 1.8216995276032 1.6409497251922238 +3.676467895011095 1.125186147300635 2.43943001911448 2.3050543891036224 2.5548180690885514 +2.382765200175872 3.7116802535365023 4.387118045069306 2.0796186032965354 2.6628122150895535 +4.282267568958604 4.495421838788107 3.2663659250807164 1.1204453664390264 2.15648088021842 +1.8230586203791561 3.815999204408584 4.411629636542223 3.403587868336045 2.233374213587995 +1.4020529349510027 4.640722046111371 3.4452487953803463 1.7347961525438458 3.6625982382689286 +1.6483074880567918 4.609793833759662 3.4425958345173804 3.9857342877747475 3.0108803953646754 +2.9723275421290665 4.638082158291811 4.359390915475654 3.4378927222219486 1.9036536873699834 +2.6746411354344026 4.45678102134263 2.6688863221285177 1.9985242305200432 1.9040503950291545 +3.8191978840192977 2.785844735378226 1.452224401654734 4.185874666081773 2.9224411881179813 +2.9780851051881356 4.822169156226215 3.590478370085356 2.826562613857543 1.9960494156974482 +2.4375458522813886 4.764900255621118 2.2720702032867863 2.629644355679689 2.354662989305334 +4.153354168186704 2.0687935971364824 3.9386944216317628 3.0103591553678646 2.2819288203111174 +1.0175247028348338 2.771364817575946 4.2415852759663775 3.128840609157737 2.077054607271121 +3.8694504449093503 1.4177119577488768 3.4430477427227135 3.689322480468857 2.46407647119075 +4.04281303199789 4.980337211562572 2.6230191902561883 3.941170053903946 1.617551633365612 +1.4126803300767397 4.868140396439809 2.3041535941333464 2.40663410253495 3.4569793931743535 +2.0730053922512406 2.1481087991560073 3.59202056251732 2.7832460156402967 0.8122541408973163 +4.041736228073377 1.60279109580051 3.7523763901291836 1.3422954198965127 3.4288399847929862 +3.8118469965065866 4.791746807476521 2.7458303790072525 3.287936737985104 1.1198584481902774 +1.5927983495982274 1.7917995712124473 3.4154588031172994 4.517126770500017 1.1194971177100548 +1.0551559510058732 2.303600767824911 1.3942820314792335 1.9933796338243632 1.3847499405228383 +1.5950613053664648 2.1847424096662005 2.799677829634221 2.3510360629175286 0.7409475282439577 +3.4518051750389698 2.633720559780474 1.143586755389697 4.324301977193327 3.2842368611194837 +4.1986367689556054 1.5680518942164614 4.5655158015590676 2.1312483062592342 3.5840807778117507 +1.0302459869454315 4.88041359607549 3.4574664840777736 4.846784164416582 4.093164330355707 +1.7191722651706005 1.3728082908746266 3.0795511994343188 3.79040593355442 0.7907480355404379 +1.07575275126278 1.001684548835342 3.007689669193353 1.7873969474464935 1.2225385169225507 +4.056223357674049 3.4255738153172772 1.3502738771674183 2.5395253884661733 1.346119609247699 +1.9621460814121652 3.983057946302014 1.1933681869874961 3.716563570779453 3.232738732165284 +3.9173550133845403 2.595407174606787 4.6473770541037815 1.0105777061401708 3.8696066448410122 +1.419276300490437 1.3366626949272442 1.3237321119315735 3.2334417626080905 1.9114957383450206 +4.642714469009052 1.60666801823893 1.770969492072056 1.7998779449304374 3.0361840770744646 +3.45251802678519 3.4767141435659843 1.6193595186561147 3.8515411926312777 2.232312809105801 +4.39881329103328 4.199916763074469 3.807765327568527 1.7659896734252318 2.051440384385164 +1.0546535582607937 1.0458367514158629 2.2375741327831187 4.9186653749051015 2.6811057391804107 +4.7336662587700715 2.540264081813569 3.5065164855570257 4.813585639064572 2.5533199724923743 +2.57799192337209 4.76630482311397 2.324931518711148 2.5278896087840184 2.1977045601041882 +4.7973230230704385 1.8477413028014484 4.61025747270432 3.9363074424592215 3.0255976215968214 +2.0626863894085217 4.789425845801281 1.586455938773617 1.384095971836976 2.734238032664252 +4.778764096352283 3.2052527159108277 4.833896560407213 2.3886024128988796 2.907817314106456 +1.1397049400357835 2.3818866539304593 1.2382993321936069 3.3325628028887566 2.43494453633392 +2.545494140017346 2.1594922040744944 4.643333888794524 1.9807173031557963 2.6904506270641853 +4.040503973688205 4.695667396436183 3.2770862741137994 3.284913973538107 0.6552101826018296 +3.2226288881048895 3.281678334663119 1.5202906562538256 2.6427491785060653 1.1240106633459999 +3.0012859682950546 4.566825621443437 2.2286173505007576 2.8396677656371963 1.6805644930850976 +2.1791866461046783 4.12422262497668 3.3782982602115914 3.5258163365178956 1.9506220910119103 +1.9039077766292598 1.5848311452839958 1.0313178781186756 4.956565059614807 3.9381944254333057 +2.861805238778435 4.84917232179264 3.3772452780248488 3.7839782218351985 2.02856097030112 +3.6289860653401766 3.526288158089156 1.2511647284066867 2.5286266425103485 1.28158331845383 +2.351108339311772 2.9465677056560913 2.3431115868418173 4.534050691597243 2.2704153843985653 +1.5451544651791513 3.4097855113554596 1.943120878514002 4.961405717772799 3.547801052661219 +4.714165503645605 2.664474265210571 1.00083586718406 3.5325378446881093 3.2574144771298688 +3.80292012409908 1.6492499390168462 1.3826094001305722 3.6133985962145774 3.1007605040501383 +3.423605304510966 4.5915320196486125 4.963990513429133 1.2801872132043077 3.864512849853074 +4.443494457709628 1.7560005578370812 1.3501006477610682 1.5995769423830004 2.699048329213547 +1.1202656785831886 1.2931586045114911 2.96267988213718 3.301035975258585 0.3799694850753553 +2.3864432532219797 2.4198033594431125 4.830699896905855 3.6042734590792516 1.2268800691539243 +4.456252171982213 1.2709687800831975 2.6697450936047695 2.331094429093605 3.2032350146814936 +3.0295413565775493 2.1276255545289375 2.390935593388406 2.000929459182181 0.9826275483129275 +3.5112689453143644 4.625456377023083 4.252783658925532 2.9214597345820508 1.7360406171823852 +2.289697687281104 2.224031129050656 1.340763176388005 4.38071459683202 3.040660575521282 +1.095398088764279 2.4382041052996977 1.3152129251758575 3.5803878218535523 2.6332765351520764 +4.813994314674366 3.450614662529665 4.128098851545516 4.543569603642399 1.4252789276945597 +2.6043158979809906 2.038853519185589 3.281752723138049 1.1210052207093772 2.2335123619726613 +3.533099120856443 4.556436474545622 1.9465769643036834 2.7382565313081573 1.2938221965432357 +1.0595443264561912 3.9237415381731053 2.4304188988212365 3.109464393574658 2.943591080899632 +1.7515728691261456 1.875700677238553 1.2586202328544034 1.0988567212199887 0.20231681194737716 +3.1864296155403813 1.6713872764664548 1.7482235448731638 4.909396634181805 3.505476941837691 +4.307611467541698 2.431256070425524 2.493068472212934 2.7277194657714126 1.8909708260745266 +4.485059291748659 1.0955892788467239 3.3687869024597736 4.474122681712758 3.565147143282903 +4.503275586069671 1.9367577468390196 1.6463369984771825 3.475226825777182 3.151484066196527 +2.4358478702498183 2.6074255664801345 4.25953455907983 4.55978240589055 0.34581451004574143 +2.0753446400107105 1.9754725996242324 2.335844085148026 3.5110442503200363 1.179436243580499 +3.3148483266315854 1.2685907511901675 3.3018624653753377 1.0698257447009905 3.0280617542398445 +2.9563365275575086 1.6312434267540339 3.0899099877898037 4.95577410564807 2.288519309970526 +4.1510834559789185 4.426965441272591 4.153512235699255 4.486860592701147 0.4327031279358158 +1.7684413379609643 1.2253290474016043 1.4069795567492935 4.080135916636399 2.7277712302466854 +4.441138552050221 1.0734786922945245 4.882895808618367 3.8106014247738664 3.5342535529633716 +1.7645196267523002 1.7160141809101312 1.5770130558589694 1.053445054917002 0.5258100701648035 +4.091989991474906 1.9982247194164056 3.9845281643355803 3.862364544976105 2.097326146400033 +2.098970951096425 2.3472322895348996 4.894394990674153 1.0135583556626133 3.8887693014385603 +4.2429468481764765 3.4587690744649984 1.4528872896509686 3.9177299152962117 2.5865776520299613 +2.4747637560635183 3.2379808777758283 3.56848929886379 2.2809140569248254 1.496780003383599 +2.5688773396353097 3.9582522826399913 3.3057830749581556 3.7157680659731294 1.4486029218204726 +2.1514112475097176 4.855634290716178 2.9309770640873762 2.3974433491422604 2.7563527518066233 +3.5687004944128016 1.0005148973994658 3.7493295309624606 2.867008430971505 2.7155234825344436 +1.9729716082685718 3.466839826728036 1.6105046152436984 2.2881603419652152 1.640383960565855 +1.5655678767926666 3.2374507476146968 3.372381704930613 4.914886303794868 2.2747555409901716 +1.7002354985884365 2.5615208729750547 2.285859055709847 4.8773630951898745 2.7308800198422483 +2.5432483881399732 4.393271005452508 4.502212728948745 2.2962383931000057 2.8790461015744797 +3.0463068312410413 2.2396631639456017 1.6445817443012611 4.5854335023262855 3.0494725886072023 +4.431413071028232 4.296157439728217 3.3791562553787062 3.911705259626456 0.5494565749207441 +3.326410627283914 2.116012731720639 2.845234111743388 1.2961355106396937 1.965901712071442 +3.3522359221198905 3.3445969388900023 1.827513377504593 2.400373970490833 0.5729115228910421 +1.680617057759482 1.7065521926121932 1.31959693869516 4.976270053872689 3.656765087133977 +4.240848816597355 3.818596119152969 2.0215711700783427 1.7539291238750825 0.4999296004388298 +2.5938654432537698 1.7860521776743075 3.9766811775768924 1.030475334715387 3.054945358031372 +3.8793548806996547 2.1204182422311835 3.9944192970403765 3.001114672805159 2.0200277658175474 +4.949107359153674 4.289257956224295 1.3009256155737678 2.9303055504115822 1.7579192833000998 +1.3647639536811744 3.3332240134698377 3.007138269397461 3.514765228211583 2.0328600877330594 +1.6891350438898285 3.2347931441402906 4.725517603220571 4.665490869597468 1.546823251577027 +2.359001624814581 1.6725056781391978 1.5456456613040843 2.8177086695683253 1.4454829579749466 +4.71549651566105 2.819627786791364 3.49124276993384 3.484869683233016 1.8958794406132615 +1.6932064210887967 1.5000088753778393 2.714745156065639 4.09760985698226 1.3962951237864982 +3.879910480599128 1.6063070444578789 2.296913542511398 2.0333738563478723 2.2888262824025034 +4.518427474487783 2.459116269468476 1.4531833479907643 4.072844542921826 3.332174577561282 +2.0871169284521245 2.2872111251951237 4.43536583698007 2.3661587105615234 2.078859259207204 +3.6768953001342473 4.452556302910116 2.2893681551856915 2.4286115880723 0.7880601022950685 +1.3717382363381314 4.488330785414904 4.88266186107432 3.2465301595928993 3.5199539857153455 +1.8374833934700665 3.6908481265112445 3.403136790445621 2.997022300865951 1.897337558877532 +1.8065442402979173 2.6445665123712714 4.034208188748341 2.4280711259338847 1.8116173969790739 +1.109361018417959 1.2109259826102416 4.518853552706676 1.5211241243705027 2.999449477398161 +3.6845782857711558 3.8676572865840395 2.1238630208667963 4.273284319231932 2.157204171701026 +4.943250255723033 1.1537460894881506 4.710743368529046 1.9147761997257984 4.709328427168484 +1.315761088245392 2.0109297458360014 4.030569664373568 1.0883388614939493 3.0232402418448276 +4.70334400570353 4.219331879711476 2.8756911085603942 2.139992535128304 0.8806362069875171 +2.5162846997430046 3.6509269176833237 2.2179532342170405 3.2985805167889897 1.5668976630818496 +1.6355634131826413 1.0377134459038415 4.426548604690108 2.837698364384693 1.6976070421313163 +1.541409010472396 1.2666002799140195 4.147066872131571 3.2838810218101337 0.9058750744922002 +2.4671394507309414 1.4145174371473677 4.438275231023474 4.937990610415043 1.1652161017945113 +2.1465386211670894 1.4266888987464785 3.1284758733480653 2.9792672168237253 0.73515090019045 +2.3236895561590747 3.3977021480160032 1.1904964045414363 4.6376569983477225 3.610598178551325 +4.745622001385582 3.3884638815730956 4.773242262351191 1.7793686260225967 3.2871199419060395 +2.2231634539467797 2.982189505672696 1.6614527507536874 4.6272052545593105 3.0613409579836017 +4.052898467686848 1.6759962297917275 2.3211538655527795 1.6314630319005894 2.474941957811271 +4.268861597913517 2.9373085554162532 4.429754170146417 4.30642407760722 1.3372523384572739 +1.457959027502453 2.3005862544649767 4.518089009056485 2.1875414896881686 2.4781994237051155 +3.5725769892984425 2.2214481561136377 1.3375737231723188 4.222142645687208 3.1853236872572372 +4.562570365757557 2.351321722567456 1.1621928338864853 2.730603936635888 2.7110023882759045 +3.2069350013158084 1.167455961647467 3.884819415285354 1.5661882064416441 3.0879646105275467 +3.578948474421277 2.5779593349841905 1.1989791399153766 2.9675530659816416 2.0321990525616433 +4.144892304282896 1.8282492424855485 2.7465288300682644 4.964996034996526 3.207558544300634 +2.523753432647782 4.071267115330119 1.6148568327186967 4.8364458089963085 3.57399414243539 +4.887720522672687 1.067847817778992 3.212705309888946 2.7018477590790986 3.853881539281055 +4.958161022241132 2.770809443903716 4.800355237548477 1.8865124698419686 3.6434855018471954 +2.9910202409505326 2.9937424865777698 3.049292646590879 1.0124245710666608 2.036869894644964 +3.7495007512690446 3.4864089716252478 3.2628284251174455 2.0650782483464947 1.2263045178384462 +4.468071499223898 4.167971198803555 1.9764058193065246 3.998988992378448 2.0447256251893724 +4.79004432005841 1.608439959363412 2.2924404862653964 3.220598391797131 3.314224404833578 +3.8448979230650395 2.927181049537396 4.182670343191184 2.359966457912111 2.04069931968646 +1.452502068060705 2.678002252211569 3.015508552639423 2.6703829999962627 1.2731701961800115 +4.9403222519535275 2.9987185288686873 2.859765656495815 1.668806014426643 2.277764229795183 +3.0999130712394494 3.8852901816567074 1.287229887697201 2.3244200122411653 1.3009921444877697 +2.1512708676211614 3.1650227333415852 3.1165738304165984 3.9047819932812855 1.2841203032652997 +2.9999936413899015 2.002813704747348 3.772379744050933 4.41115672401509 1.1842313355821048 +2.897525582043579 2.7583942978179468 4.061379515069074 2.6996036849192384 1.3688648311029648 +1.235257306949534 3.217703221864595 3.7649453671861113 1.705233334152573 2.8587594275466 +1.0544880435564563 3.276123091447874 2.05621019108013 3.6505462530696082 2.7345145391055463 +4.889713728879045 4.251376718125753 2.1743773643746347 3.4345262746144676 1.4126037715071011 +3.391532568085957 2.6570868506286707 1.2611023409117914 1.8450117192364583 0.9382753721519324 +3.454167335523422 3.981726845329591 2.4747326767693116 3.8898161437464056 1.5102252331684958 +3.1148231450734274 3.208842303600756 2.6092553454878398 4.411268409917437 1.8044640995445527 +2.302484613622731 1.9627655071906056 3.5830973977336877 2.168939133809417 1.45439082323162 +4.453546204811786 4.345984391602208 2.9773934858457687 1.018519873869581 1.9618245006517703 +3.9128258132375024 2.6737459747034795 4.060846768134494 3.265067143162604 1.4726113057361412 +1.088286187314397 4.031542278515226 1.1190559386723904 4.93917226003227 4.822452190235889 +3.1222459095100787 1.854247158602555 3.368023338952987 3.472661441149871 1.272308910891693 +2.346382998414363 3.43153719679856 1.646234007858626 3.653094103461645 2.2814572267729694 +2.6367392929622153 4.854584210402345 2.564856176074481 4.288750352047137 2.8090295847084734 +3.4886968338450255 3.1149228189392377 4.364636632650578 4.410894205067381 0.3766255132418512 +3.7150357376713594 3.0945649202292156 4.06605263863149 3.6461771135839918 0.7491858860331222 +4.200847049061872 3.4875441690302997 3.51696667891395 1.9679325716835385 1.7053761063250694 +3.4250682603829166 4.818645901777014 3.6059085856965587 2.174028232082575 1.998084079727188 +2.1107513092542685 3.470502419006688 1.9613708688026095 3.6702331565546813 2.18383456309634 +4.089279334880143 1.72115795424012 4.377005265744129 4.7728822820958285 2.4009826083334986 +4.018593972729219 4.075104063984796 4.401926089263485 4.2907588830930194 0.12470580636626513 +2.580994615872038 2.59780315443064 1.3102279081244759 3.7173228777836904 2.407153655238313 +3.4852400532130434 2.887022361032665 4.899129925461437 3.3306516665870762 1.6786865269606364 +4.377856070261709 2.386323559196268 4.334140526234304 2.5521440255649033 2.672398411732167 +3.5235461767452656 2.3198632008624713 1.3035046978303284 4.139588964764275 3.0809457436930505 +1.9828428323631297 2.552897611096938 2.4937069984474363 1.5693803225577905 1.085975255021243 +3.701528097928416 2.233215817015881 2.5872904868699447 2.616006613753559 1.4685930580735316 +1.5471064060956081 1.128271494239724 3.617502721814371 1.4836316978787614 2.1745869102386624 +3.51975330092554 1.7020262406183453 3.566321060058001 4.1895385949328645 1.9215961494415361 +2.774004888550153 3.4301094197264126 1.5814995318743739 2.4137001447300372 1.059731577271981 +1.4425925584036112 1.3106719963393862 3.6384646269407255 4.617321529255404 0.9877063682615547 +1.999058718859139 4.161966688835077 3.625011611724048 2.6077470070241455 2.39018789273159 +4.238418310187329 4.9523263176489545 1.9017774481504968 4.919161377568628 3.10068870101928 +4.188057096553582 2.97535653554922 4.390832099950868 1.590981432358483 3.051197537275785 +3.7595117463978753 2.161409989230854 4.41337575030183 4.874671931664686 1.6633470453276653 +2.588912798275615 2.214298595076209 4.022128187812465 1.1459492487668683 2.9004725633331163 +4.643457026224796 4.5129808003343355 1.7452372375189875 3.2190388943999184 1.479565939506447 +1.2314187379614263 1.3784224136045493 4.638208219596468 1.6597677374091773 2.982066026530038 +2.8457580709198678 1.3607514202488415 4.093706833049259 4.752855029784595 1.6247218524401719 +2.5804530250763724 1.4072749586065934 4.162639850735777 3.484424497539897 1.3551098999551225 +2.6776652961959173 3.9625946608095868 1.30319329198085 1.2473319884278964 1.286143054749791 +3.6016765226402923 3.221237078874472 3.9648840551668543 3.416776945938206 0.6671998003295804 +3.8303232583774087 4.754513698001944 4.968992989949875 4.627655678735653 0.985210195197119 +1.5952888626729078 2.7410655842692067 1.063289320288825 1.9523158337457809 1.4502318564220666 +3.0821200754651152 2.195350469574217 1.1170956506307843 4.284665241753783 3.2893551721483374 +2.3646057514169168 2.400515627566811 4.102884683082216 2.943835394036772 1.159605438777281 +2.4248994185125494 2.630860028632598 1.7084148654785678 3.690658244917006 1.992914596325829 +1.365045903753333 1.6226962335885946 3.0807795706417687 1.2774547720763705 1.8216377306108789 +3.1198819811106695 2.3552780010830667 1.3137495376116726 1.3463616721833112 0.7652991556217539 +3.9767851662704907 2.163151435905418 4.123032280117561 2.902788977420893 2.1859233805634637 +2.3295472000038115 1.0141144402679112 2.1880173473825546 2.5935559387521243 1.3765263871340867 +1.5344543844784746 4.164104791970344 3.313729047330434 3.711569921732354 2.659574895912322 +3.8103465088952535 3.6165481685948926 2.2288058659217347 4.0400679560213195 1.8216004380036503 +2.1731891278393216 3.648169929465909 2.9412688146748622 1.6992950847896138 1.9282290089333491 +1.7578946131773594 4.591324726737348 1.813461536111376 1.5567684119341472 2.8450338431077467 +3.8108716461701313 3.9745341007467205 3.325250666140068 1.2299679539713586 2.101664826500909 +3.686564541654313 2.9664396037366263 1.7771485260309166 2.4538231953021867 0.9881642243293041 +2.5451533413562024 2.9349102779616376 4.389626566328702 4.147743098713863 0.4587135070361806 +3.136099527072398 4.343688134575746 4.023075636118016 4.484834642384512 1.2928617964964768 +3.814236164634074 4.461642012323994 3.338826950868834 1.4428044599297896 2.0035058317284236 +2.1108002593118047 4.629601974145596 3.3862558576464976 3.3362692156841787 2.5192976686021678 +2.2619213172132286 2.9368002833362 4.701664601636133 3.956384594370543 1.0054371726492952 +2.7569522053750153 1.4929435232003452 1.3867233816961217 2.3965677588573118 1.6178700858526984 +2.041448968603243 3.6211778604521716 2.3905593959508704 2.017711082530539 1.623132538199709 +3.299663261878107 1.5618544110074035 1.6977387426757433 3.845248260837112 2.7625670548890264 +1.0883360291421686 3.7365069757671305 3.253237048741283 2.94143593164747 2.6664638192125345 +2.618544083756263 1.5027935335576044 3.066763978412547 3.0161496057464485 1.116897983250481 +4.122184697124233 1.5011658148807463 4.163627205803943 3.5396448000963754 2.694270592147251 +3.9418524714269694 2.2094476969091734 1.720061602560885 2.050373625520226 1.7636134313628786 +4.160903369477981 4.303537027230767 1.2444561818131352 4.78192266295512 3.5403408685502296 +3.3330481420453113 1.4768617852134516 1.4400797541613595 1.8284407971484269 1.896378678164974 +1.7085700231775762 1.0119711014593245 3.444336250868308 4.046343964564796 0.92068634457621 +3.312942522754594 2.153607701901028 3.1009291561489385 1.3517964205057345 2.098457184157506 +1.727893818346673 2.364598564291568 4.35520396256666 4.540688448501021 0.6631722461254599 +2.1808547202023116 4.211661630270559 3.582039540819153 2.520495002329327 2.291517731368998 +4.4418832420639145 1.7947520418161638 4.940885198907063 2.765833817921259 3.4260986706826397 +1.2435944944979864 1.890408243891684 3.559210211531882 3.971384923803516 0.7669785002468696 +1.6193338310755232 4.812220098282937 1.3081269010892198 2.902565283664892 3.5688592674904145 +4.168586069078844 2.7341466176730953 4.450127589217521 1.8563432588574829 2.964006358321537 +1.1365829370258673 1.9668814214609287 4.7229903493029886 3.373681520832668 1.584307384267052 +2.394502246719612 3.0110934584235105 1.162455889845512 3.8154276446063347 2.723682039796349 +4.371299029434525 2.024972445821207 4.215653461565224 3.765773666729098 2.3890668192355644 +3.999971022573122 2.3243415902554134 4.063415710543616 1.9703982311550075 2.681129643168269 +3.1012098187156956 1.896518110197266 1.7539546512368407 1.0430076780030348 1.3988308372792482 +1.8550960120451983 4.309078049082755 3.2367597614222676 1.907691410869203 2.7907795539140747 +4.619696023719032 2.9494602346756853 1.7251950683385848 2.275763283878569 1.7586395170597455 +1.7598910646363461 2.1420869110520284 2.4836443141744335 4.119722938034784 1.6801270572400704 +4.662485107465812 2.9241745645042374 3.165713343704228 2.2755495229400693 1.9529759782364984 +4.939978790055267 4.914936321792016 3.8664070077110817 3.101152139893489 0.7656645074281796 +3.497562394286663 3.9711841327464055 2.286905399420594 4.796468604582054 2.553864724655926 +1.1445669045898672 3.123757569594382 4.755403139876833 4.802913924633942 1.9797608348255733 +1.7264854958899942 3.9022915114263674 1.2236459866138052 1.1728047385253202 2.1763999287243747 +1.2199305632540933 4.282507832351073 3.105080319452322 3.959930558885524 3.1796459647338913 +3.9998143653053755 4.802780671265824 3.583775305951877 1.2860969368386725 2.433943462038197 +3.7142217405402334 1.4846746418312757 2.4436299747151113 1.8376338181335896 2.3104353717758705 +3.3193685959968566 4.797678094059645 1.3923166974668084 2.7112499028169674 1.9811571800939716 +3.1298257477888587 3.8707542897744056 4.778239780528461 2.8096645067937462 2.103393380394769 +2.638852109797208 3.4737580838775006 1.5872537795797128 3.5493806586535426 2.13237188950215 +4.100817246756536 2.9014968590851895 2.3992653462601767 1.4729490411946404 1.515398062990189 +4.004476644497277 1.3353457421455017 1.1361185571958021 1.6310212154423338 2.7146249124011015 +1.485640784500728 1.8238397876022048 3.7231060650234458 3.4402578759488103 0.44088735949404745 +1.5184416472193885 4.835690668431552 2.824235558545316 4.07205324837862 3.5441769221913826 +1.7337300137542453 4.759852751769978 3.9070217820103 1.5964377705695614 3.8073898276196267 +4.636587108133842 1.5616107871041032 3.8140904822647514 3.7546694102516924 3.0755503960580404 +4.831376229608238 4.082971010663534 1.1115781522331667 1.540760479810964 0.8627327755735065 +3.2073395577519204 1.1407924369656897 3.994999328673935 3.744092867723319 2.0817230974787746 +1.1419840388480442 2.6937725520929336 4.174218514812392 2.5011822452448023 2.2819066477679186 +4.0250662279793294 4.036179459300275 1.0880415012203533 4.877843020475362 3.789817813465176 +4.2298880868913376 4.540697590375835 1.5871628902622605 3.980713335758163 2.413645848626081 +2.9745852914485464 3.991263784335479 2.9686562925723643 3.556024516306629 1.174153562423412 +4.271330251874019 4.5268863026776724 2.408964815744071 1.8933558030553104 0.5754663752716035 +1.122877123520034 4.373349680496025 3.3942657341238793 4.345125676411095 3.3866955094162927 +2.597073252643828 2.2275280915977196 4.374291718186461 1.3412451920948927 3.055476207645663 +4.98480353077216 2.3871071057520075 3.1572736126937637 3.5013218877358554 2.6203808753923385 +1.0281607185607395 3.7006282434459883 2.7561108285146894 1.247084394670153 3.0690785994509566 +2.45583840968111 2.0190470610522264 3.540672153111095 1.2158191948882857 2.3655291077461693 +3.78489747529306 1.0902306085955038 1.914851726509105 3.2095029497028156 2.98954031787407 +3.0690329933195 3.3380119605972918 2.838616342552601 3.7082087128708614 0.9102420421808465 +3.4806428780156473 4.883483705971283 3.7325394425935143 1.3523868265448176 2.7628045287827927 +4.487819918752268 3.3745922002417514 1.9543221205170136 4.422144268404019 2.7072905471821387 +4.289405288633915 1.3027429370213772 2.2636138792784766 1.963205715644948 3.0017323443833908 +4.216050624573454 2.1631373227690167 3.792818474749558 1.6276471663152008 2.98369231315713 +3.3543838220572675 3.623410026646444 2.0230570336598825 4.394882785961884 2.3870342473535255 +1.459879977782764 3.8226035059130776 1.9798671932408367 3.2044016050438944 2.6611927769461605 +4.780083757640517 3.0129336828567967 3.564999158839603 4.245922752286072 1.8937994421057789 +2.726539752255798 1.7709257693921119 2.6987876777855666 3.4024186029866246 1.1867158729636569 +4.819782200832922 2.0003755790739577 2.7732208950832833 1.0382004805344267 3.3104908303331064 +4.967884519309762 2.1929934102423885 1.897771160824489 1.8673384338431247 2.7750579846289125 +4.275906595034657 4.410788220297553 3.173079923103408 1.375629817599306 1.8025037960043988 +4.368094638681699 1.1252657498833702 3.0024606941494265 2.0261574475235866 3.3866070382312086 +1.3791810095012296 3.5204245572553288 2.0005761739573322 2.951251371842529 2.3427990231073212 +1.3889230080780393 2.2841778649351694 1.9436795297415408 1.2708731877563602 1.1198882232355871 +3.396191304846682 1.2101379702870019 4.943198347247105 3.493844889550299 2.622871446883584 +3.063830722048289 4.750510503259342 4.482704573883474 4.600511243698712 1.6907888974674283 +1.749248818048439 1.6468971462143758 1.3662715005147286 1.214485437965528 0.1830706790051797 +1.0993900726760368 1.847085375113366 3.2873447419940502 3.5555363175382264 0.7943393396274143 +2.0169907058502785 1.080636802651807 1.7850620966720494 2.2644073334598094 1.051917529118194 +4.741862160366775 1.7643163201453764 1.35067741451644 2.410676711137663 3.160597687061301 +3.535256390340989 2.3849561540662156 1.8634073683498085 3.528600824214595 2.023872495743917 +1.3542723528887572 1.1085998491071734 4.141098043220699 2.1112516202840226 2.0446592576327074 +2.6964828265033534 1.2899784097835356 4.4166666783967905 2.1087054382327697 2.7027652062936953 +4.078335195987815 1.927090327028906 3.0998032066527337 1.3415240581475407 2.7783808324796264 +4.072056707982908 3.2449266004776924 1.7870660779629448 4.739405266751637 3.0660154762164957 +4.521758911332222 4.294001202666933 2.8424917805921135 2.3915505848454206 0.5051945525022218 +4.2580703566134 1.5239665724251417 2.8908453753455774 2.4651470420784167 2.7670458206648827 +1.347724897059237 2.567196671255063 2.4117237754584675 1.8526025399671684 1.3415394008517352 +1.0817726089707032 4.972636360473935 3.419497918575358 1.4983314122907627 4.339320393521497 +1.0886064771701331 3.162591737704383 3.134589069133238 1.7769901535750834 2.478808116098944 +4.523033630109913 1.5084871314278052 4.604994841005578 1.2632456559687282 4.500530880730739 +4.719623089303187 1.6174007265715735 3.8830082903258023 1.855147607723942 3.7062113452789767 +1.89538051097461 3.658123820692505 1.360382235300869 2.9714458168037634 2.388051473398371 +4.975856109546971 1.3073073634830652 4.57252856470702 3.4908895294338396 3.8246820658551153 +3.354759458028859 4.883881516386221 1.3199153699494732 1.8586468245135284 1.6212482380843956 +4.026088901223201 3.2167371399420976 1.1305018952216832 1.961316805748147 1.159872272727441 +3.5234717631959676 4.025963744190885 1.1489713138158888 4.368687782682597 3.258691812807051 +1.5664397744327818 1.3833751382405532 3.9540139400410608 1.089942191321207 2.8699163128633898 +2.473752397537661 4.505056684480891 1.752912932635419 1.4548649846052775 2.0530537463687897 +4.55051625900631 4.409858064590925 2.2645254376955566 3.4847209344552037 1.2282759372261258 +1.8745407496016613 2.7002667425057454 4.610762677364079 2.9359637796789047 1.8672907548223203 +3.840081785695233 4.855547579111441 4.574492818240564 1.6399893092015114 3.1052345518754176 +3.365496950737469 2.629047962277272 4.806055542546221 1.17229340337969 3.7076386550800997 +2.7991652724245397 1.8607073044046878 2.400152271883503 1.0301404979993958 1.6606130248558897 +4.348021553830712 4.852408835052105 4.932059527109966 3.4518646451036394 1.5637721759181011 +3.811833105108815 3.333199844094759 4.037025091890671 2.725673544897937 1.3959701566828662 +4.70808875670515 4.215563866375007 3.0628914109927785 3.3667810876293545 0.5787311147337789 +1.6889889669916003 4.86347162461159 2.3169050033598038 1.8361051451469832 3.210686631732773 +3.3331375141767734 2.677019277041792 4.4967330002721635 1.8989032052985015 2.6794049310908594 +1.2520684015264383 2.3370723889459644 4.417975004518548 1.7842776738168218 2.8484373404485606 +4.745232531231824 4.295148029270551 4.5401059205408005 1.4616752078140371 3.1111592231779355 +4.369329913412621 4.433889606807941 2.6933188701266357 1.7134907360225937 0.9819527108741573 +2.167316397288375 4.462794596552118 2.505854045632312 4.116128927732345 2.8039624389811983 +2.1490786746504646 2.0445096892990238 3.4113417947417135 3.1279746653332716 0.3020456964212708 +1.5213042175236082 1.0057916057528198 2.4635311434617257 3.7014032605633926 1.3409252891911998 +2.540013126523246 4.085134832554001 2.7909445239087693 1.0796648576097265 2.3056190454487386 +4.470326800208952 4.733743350460629 1.5398724914988597 2.6464423855727386 1.1374907513545638 +4.439425488376796 1.5093925449275698 2.324714270111584 2.763245133617106 2.9626681164019426 +3.243316439486984 1.5967580470884584 3.868469624388428 3.760743643783983 1.650078612210705 +4.815171164185731 4.677173684729894 3.933043140883439 3.698004077211889 0.2725558030711569 +4.379765787785937 3.048809904076664 4.895641837063222 3.15624832363343 2.1901902563343594 +2.1422302910885698 4.63368657855202 1.9462724787205001 2.327863556384779 2.5205091118450933 +1.8910666921722026 1.318674265765603 3.7541065493620542 1.9515516395050874 1.8912528368404613 +2.5090605842029245 4.076975787644729 4.265615648112135 1.430944538364174 3.2394009300522977 +4.987301273230797 2.6016861342004525 1.0261651912794894 2.984059008498154 3.086180129395211 +3.5300101025234176 3.4912911904961725 4.5592392167321 1.067643729616552 3.4918101609042598 +1.143953904049396 2.2643058553381348 4.453090919318996 3.665017396649833 1.3697621588760098 +1.594134342970468 2.5275186950276485 1.3079537781317607 1.0313732466909538 0.9735004566189386 +4.789852160632531 3.2111143838542384 3.1970868073314693 3.122468881870291 1.5805001748266263 +4.26257700367295 4.7858239617218015 3.025974970388982 3.105481535506632 0.5292529385881417 +1.4668091315767766 1.2090425401487335 1.675920498544213 4.958064114092489 3.2922500404344652 +3.706045978030163 1.5304120942484851 4.566221811057177 2.440672860628475 3.041601738710626 +2.432381455067517 1.7765690934248553 1.115853527899159 2.6937252570411 1.7087331703073783 +3.4276766458786208 2.327652868046364 2.967788262225739 2.331300380505356 1.2708930463942472 +4.815207542534969 2.018846420887728 2.818930672439106 3.491216234754481 2.87603953379607 +1.2921274565631946 1.7112285898302577 1.7312339581944824 3.5057966634609667 1.823381077786111 +1.2482430440970944 4.589514563022563 3.8272561709746404 1.85860879599772 3.878101062399745 +4.684675898873115 4.59050428760527 4.509224550870254 3.7012760513195335 0.8134181398856573 +4.387066905374143 4.202578158901628 1.3141920717306292 1.9889787705683508 0.6995521327987714 +1.897889533199899 3.208119383011504 2.6635450498924382 1.859787922089473 1.5371167098927174 +1.1676200125768346 1.9743318091688127 3.18000340460864 3.224662535007282 0.8079470036386174 +3.481699181399482 4.571154952550719 1.0084158287007106 2.0890614471545352 1.5345060540702296 +2.18335456509922 3.924551179782741 1.0878001289572832 4.335802294666018 3.6852793271927142 +4.778566623618488 1.3618976867187702 3.7764840175738685 3.0752400542476077 3.487889006329899 +4.536140358627492 2.193542536955676 3.3520562631016744 2.848497082728247 2.3961085956692143 +3.1735034711781314 1.7745629710091926 2.812358230496892 2.771032667478245 1.399550758340593 +4.657679659319864 2.6658603474885987 3.673281881612512 4.967492612605874 2.3753579913777942 +3.2084308457162805 2.4073784105033806 4.151738435733967 1.6832340063805553 2.5952262178272494 +1.5427129144197482 4.351585423669936 3.784306499541529 1.86098839465657 3.40424988885947 +4.644474678990468 1.0166631850904468 2.544518912160609 1.6364016194996576 3.7397450785451887 +2.943885420801944 1.2858639265239766 1.9520214868982824 4.14380534707635 2.748263408995727 +3.9578782590419954 3.805523655081693 4.249833323668955 4.672429689263627 0.44922111878419724 +2.843735052046594 1.039866004662537 2.0576643072057905 2.808576533088275 1.9539223912658485 +3.3565337832944637 3.0697050840402533 1.9972204897394947 1.887848589307413 0.3069738023349671 +4.923503367463324 2.618079607147329 2.168113334851298 3.505505761542693 2.6652574392731823 +2.657573123814157 4.459692047929462 2.419895832629436 3.0506324113818204 1.9093091023799071 +1.9565702709230033 3.813212440083779 2.5297151623283067 2.2824230329261743 1.8730385851792457 +2.0872433106423918 2.098780452825075 4.781188469305079 3.3768527821020338 1.4043830773694872 +1.954155202389901 3.576287926627125 1.8159093903519419 1.5495108336679801 1.6438621493436048 +4.714027117532259 3.120316980553766 2.4640353677580524 4.970634978653345 2.9703457054774685 +4.8296934573745105 3.6833027617775267 3.9136705821090207 3.041120075529632 1.4406790112593728 +2.8571685652936836 1.8175491922843796 3.551581844004191 4.02685035757405 1.143104807411447 +2.347719745606293 4.641001868842043 4.043218969814928 2.249068116284894 2.9117211717427924 +1.2311075119577914 1.3753686741808049 4.055647344763651 3.0324873608793146 1.0332800373316664 +4.945494211895491 4.040817549695566 3.9593472976729176 2.046812475289541 2.115710119548094 +1.2371485938887172 2.426126387841119 4.006363466278277 1.2018289453369078 3.046158576578664 +3.8638884354970897 3.781536460818942 2.3679251920383937 4.717128538876212 2.3506463393133807 +2.8876396002112807 4.678417039490094 3.8998772345339763 3.8671240189002116 1.7910769414417507 +1.745500598384233 3.610604496449202 4.054650894032955 4.727683872820988 1.9828227205459985 +2.9047514171168665 3.462539017599678 2.4585662586975907 4.001615141191346 1.6407702035987852 +3.183839145563844 3.2886768735806844 1.4409553056873543 4.058778982717836 2.6199220891540125 +3.749528225875609 3.5188359628270645 1.8078765431801465 3.069747734443233 1.2827851821603569 +1.0515329286851087 4.226762757906615 2.837340810624213 4.360791387798173 3.521787348700899 +1.1841679076022125 1.9992164022376007 2.9231171743623983 2.8753729576826497 0.8164456863954731 +2.8360735536661217 2.0854452980907876 1.9048704728055106 3.8179071375836457 2.055030914330371 +1.041757143257359 4.314082256516894 4.3049860867316685 4.965660732743684 3.338353281896949 +1.735839227247539 3.0047637767518047 1.3044437572342291 4.608582797929415 3.539421465802103 +2.208625689034389 4.480092683925034 1.709533981759567 2.5292061628658637 2.4148343200636124 +3.181861901069939 4.09070226062636 4.80923655784483 1.1359888635246325 3.784011023105944 +2.9896051518469804 2.466018021696095 2.290706093195217 3.0042223537248103 0.885013523568863 +3.510462237358255 1.462004574326579 4.556257027795382 2.7795793860398925 2.7115977282677908 +1.6896129254025882 3.8446866768331662 2.4598452474654064 1.9579470981677214 2.212745947092324 +2.3719981711802136 2.183435551712977 3.052085278980296 2.7070960427885784 0.3931582818007154 +2.36092499211353 3.672035372255289 3.2257585322703637 4.560362365302824 1.8708762171935382 +2.2821118788483514 4.400249233443365 3.611515194541032 3.347325416753244 2.134549622664772 +3.424496300538803 4.235407223438179 4.582359581093572 3.598043497815074 1.2753253218995695 +3.2235948295594747 2.9232839372827164 3.426507325546344 3.8426335316726896 0.5131740946746713 +2.5025398955346416 4.2014565658325544 2.3246594249865105 3.2129455745558957 1.917125487841876 +3.253072133520014 4.363786997889684 1.301400787559615 4.03869789908166 2.954062116252579 +2.2825545600658725 2.323691373396892 4.706359753346653 2.178361446201511 2.5283329840706767 +4.051129200042801 1.3375155771793827 3.601473105371378 3.683599067624575 2.7148560860321753 +1.4706517028416877 1.0182330317075983 4.263450856080436 2.7720066795213723 1.558553298986813 +1.7914370944777467 4.091064612590105 1.0160224327905212 2.0744383373832798 2.5315076435109796 +1.7109552302858 1.3903236846742937 1.1262332792369976 4.556596857658123 3.445315496177297 +2.946037268943917 3.0799018309865613 1.851570066527675 3.3386552963360345 1.493098188896179 +1.4285353126396227 3.6080471303182664 3.170208482232922 1.230746756250927 2.917496109671772 +3.9126733770798268 4.750894308406343 1.3627335403823464 2.168430049771124 1.1626526544738771 +1.7834034389315643 1.3235817460806163 2.6005052771532275 2.732494972747261 0.4783902893656153 +1.8878489428821035 2.203975905917165 4.557569121665289 4.76818051687554 0.3798597327306219 +1.1182745407670232 2.148028924400623 2.6970172453190404 2.984913839244684 1.0692420396741809 +3.777696711480543 2.6916714928033993 2.8232779463718747 4.193199763994549 1.7481809294238828 +2.887255926021716 4.468074661058736 3.852268874922289 1.8437959711421206 2.5559638648195295 +2.2912658347249657 3.952563519043186 1.894465393127796 3.482974351082533 2.2985366443508193 +4.914224616687841 2.7011795274945865 4.058314606588983 1.4467886668355376 3.423103314363663 +1.397844829807128 2.268524208584616 3.8206266534892954 2.7650314302299766 1.3683434714998437 +2.561093743896887 1.3377086447291373 4.353535126135435 2.369778932297924 2.3306565035316495 +3.1942556426278204 2.4038998059873284 1.1224403312168048 1.7525124703327002 1.010768642668426 +1.8803821646502854 4.195811200536827 3.8080655883982297 4.5371251065251705 2.427496529595453 +4.963206190435392 3.8608510919682733 4.246542315492526 3.780524006046023 1.196812361172723 +2.6564629358593472 1.8730865507409349 4.365692010273059 4.565346706134921 0.8084185539316151 +3.0839837587422236 1.0350319213870391 2.103710201279629 2.51110939382851 2.0890614480887506 +3.1623685678863778 4.420465845679818 3.1214589031570723 4.403471317810283 1.7962083931760868 +2.906897886776566 2.5610119968212643 3.5228539664844276 2.628246113521002 0.9591455882471657 +2.973855843373399 1.3144149355225956 4.309976658465747 1.9565551005343758 2.879641845088521 +2.546398720325219 1.4517406511683664 1.8884488524804106 1.4287094175667034 1.1872811951618638 +3.358679034522683 1.9908183623850313 3.6705315914232672 4.570788557322217 1.6375302815613675 +2.689946973436707 3.866419592935338 4.405410460730689 2.902627256552494 1.9085191073683418 +4.733561718008085 1.031771190160078 3.6734054701762235 3.237430935380552 3.7273753375606713 +2.0837782360242127 3.91811068379191 4.58154493050414 3.6544271699482906 2.055315759408156 +2.8897969933330394 4.512567343846516 1.936099839055137 3.676762268433525 2.3797666489710925 +4.905815270300484 2.7037072886117226 2.7312608828139497 1.495557333405269 2.5251223386280834 +1.690643640582183 2.104711030803899 1.1033807562093552 4.160691408041563 3.0852228810009343 +2.987447623259675 1.0082743874104065 1.3676564083490925 3.3679372164648744 2.8139385225726574 +3.0539693632352303 4.370399992635232 2.52625840509363 4.0863234460449736 2.0412722831658203 +3.2003264239109175 2.505851029115061 3.269606178427828 4.209080674655262 1.1682929440164616 +1.2163782231154525 2.1419768418459806 4.295852000889056 2.9315344306786804 1.6486646825175229 +3.011327007856947 1.4374880284126301 4.379004367951369 2.955884085862933 2.1218483618085906 +1.4024586847673817 4.732345580284603 4.3949378839660245 3.6336206278665473 3.415808938066085 +1.0872753951668486 3.559253527393772 2.6491478239319783 4.280781345838616 2.961908816290192 +4.256118914940904 4.60087912181136 1.4079713155784126 1.1899542890271184 0.4079105589557927 +2.7193860827140743 4.402838469471977 2.937425455179377 3.3350651086501326 1.7297772204804933 +3.9636171993673286 2.7533922378444955 4.130646971420456 1.5746667521113396 2.8280168562072645 +3.264156068096181 4.77187099323249 2.2105791792270684 4.618819183208592 2.8412715836849727 +3.5409480296449205 4.492089309372033 2.481636734250172 4.140417847127846 1.9121256534131392 +3.5668012397228233 1.4146647062834252 3.3516528683733626 1.0122808544841098 3.1787345088781493 +1.993609033724388 4.120026451621713 4.28466552033267 3.1123334581325706 2.4281708134312674 +2.508846955553476 2.2980733528917487 2.9125486235659994 3.309307668196408 0.44926968635223796 +3.902857453847692 2.213194658576143 3.539511092644423 1.8235032184678852 2.4082448766603335 +2.3276477444852004 4.386374083698573 4.324165481154739 4.782178593778303 2.1090590677138517 +2.914442504220292 2.6372330852471375 4.596327970482667 1.690226303448544 2.9192930584485595 +1.7379819139081203 2.755282203901535 3.622966246622099 4.543939986326382 1.3722581787861854 +2.276086404514261 1.1892551866825407 2.919672202820531 1.9270896796371568 1.4718770877293572 +3.717759022218231 3.7628723856856587 2.0111715582930936 2.9419492625573564 0.9318703505954011 +4.758144518304018 2.007407603448805 2.8971632403606695 3.1641301101822026 2.763661499592431 +3.8616738486638735 3.875179501435957 3.1559148045321135 4.724031766622794 1.5681751207863566 +1.142491701547978 2.2168986378189417 4.3782695970849055 1.6876611551408156 2.8971924431366243 +2.519138417368697 1.2570445659605336 4.892062437465178 4.171457072134396 1.4533248027560115 +2.213019142143958 4.545338324018324 3.795601652219468 2.4225530804635684 2.706469129057272 +2.479450989774722 3.3634497150071856 3.1747950094358637 2.0273459977760693 1.448479540957227 +2.2972337304891393 2.8945163061016785 2.5729489183515617 4.853396129149148 2.3573684388242837 +1.1345770989242099 2.963186165748812 2.659137364213868 4.20357831265909 2.3935557153547773 +1.1258091608545975 3.776016523282442 3.690381621549107 1.734242730267101 3.293945722967024 +2.552032460439084 2.301262128977077 2.0871531583504446 2.2606891399517917 0.3049598269475963 +3.143590429107763 3.112013474863302 3.742314631661958 2.087523998417392 1.6550918838279975 +1.068514177610973 1.8189866419722254 1.49300779316397 2.112795081674475 0.9733165994493544 +2.3812002868871227 2.02528053370079 4.82984533744586 2.367723371907421 2.4877145020872247 +4.227943298965222 2.2531230530384443 3.437759588678175 3.7697822288111444 2.002536900354939 +1.4777343744439038 2.512013446712432 2.3460176642171087 1.8833737768304002 1.1330368775414739 +3.5175921425643613 4.193573314085589 2.32483280047954 2.4065037838707215 0.6808969773609621 +3.8938488817184687 1.1276576719042803 3.6359095500168035 2.3576663656329093 3.0472478480880354 +3.687819913340224 1.2695991000148195 4.1451209935356434 3.775619270318555 2.446287682481474 +2.4301424658838258 4.033137587937777 1.8198579127719334 4.313824217320727 2.9647025634207433 +4.2006941683576375 2.619310631274787 2.5972404289744797 3.2044595007585612 1.6939565792826534 +3.8225840130718964 2.5880648273935254 2.0415881313507414 1.663185186203787 1.2912112176959574 +3.6540612559193035 1.4968762978109909 2.385137007376933 4.606941813484253 3.09675048073466 +2.110243754859034 2.7286957633235764 4.724207679165172 2.247642435118479 2.5526179296545504 +2.5951566280749163 2.7177257465182323 2.3575877625874546 3.926683130709905 1.573875300987756 +3.9414069916164376 4.735516853593631 3.9287836425573937 4.2481441609581845 0.855921499673106 +1.1624389046911352 4.393348781747733 4.505138479777035 3.5952837701935456 3.3565777551269584 +3.8724273695397877 2.3301175720208382 4.827386059223713 4.612518247750604 1.5572050885898705 +2.8617900019243816 3.384940849139174 1.8687448016567036 1.4764959021938568 0.6538700238360599 +2.034679749710561 3.546851004780813 2.151439600725796 3.498728557461722 2.025302307707005 +1.1053982727396594 4.716572454737696 3.1214088491272824 1.646341865693051 3.9008206288352905 +4.160431512226667 4.003807339891206 2.3235883683941214 1.63436079708343 0.7067996720532648 +4.909376097680319 4.927664086846647 1.228854401785377 2.1610956597110493 0.932420620496237 +3.8879266779052197 1.2332367661911618 1.8392042640846586 4.8122446445721625 3.98576813567544 +3.088825966721893 2.0215234002329416 4.957175030657919 3.678092161209914 1.6658894787317813 +4.3115525019596275 2.645285856788447 1.5982970853175864 4.440384263286714 3.294526378705525 +2.6856000457046543 3.3178555212224565 4.548463331797306 4.6291838839411845 0.6373874754501024 +4.922343962975152 1.506265939739269 2.4980227686631546 4.435364123652034 3.9271975487089166 +2.0129446821187655 4.186847579303667 4.398642195004653 3.757863037613105 2.266374138339989 +4.398543835965379 3.716646006914707 3.8923448048493356 3.5467000394239485 0.7644965357213793 +3.9058535209153025 2.545762794494685 4.957945785365291 1.092450303470946 4.097792345231875 +1.9283279734784902 2.4743692072877663 1.2488868683322067 1.7890607879637317 0.7680813058980421 +4.879320394734913 3.0148385155757866 4.298493877989019 4.581977560078554 1.885909774014597 +1.2262286713117638 3.029742134481063 3.3088519484193077 2.447705160724624 1.9985581307006788 +2.8270902444936468 2.74860955304215 1.6852723544497272 2.210978541659796 0.5315319503112235 +4.194756311469208 1.355822330367451 2.5446637981478775 3.1435373479699638 2.901412703792891 +3.11718422227729 4.443283168949799 3.2272754367234113 2.0094149450335004 1.8004784346348417 +1.461876733286823 4.854536107577493 4.209225324244947 2.445222992251974 3.823851704399506 +4.020967549965304 4.660746940237897 1.3567734568347602 2.9653733116126566 1.7311589069201707 +2.1657647809413514 3.6222679413468772 3.116943565753196 4.385794869553785 1.9316793438424866 +1.4726522080731024 1.9636731314205185 4.10529371861718 1.727177072796886 2.428279293716543 +2.394626364319788 4.560085356981966 3.692829541724792 1.792260996570203 2.8812104129571177 +2.29456652476109 3.8478306215734643 2.494594488899364 1.6076740796208453 1.7886467417690772 +1.205422508474605 2.352444609773133 2.708881385980234 4.499631993036125 2.1266046735438007 +2.7903714418536394 4.99085731718933 1.7659940535081513 1.8635034634330783 2.202645267076791 +1.7682821951761962 3.5714223673434695 4.404562911195902 1.5590188452477212 3.3687439071167655 +1.497478925080435 1.491233202812987 2.8808217280859485 1.7746556725137688 1.1061836879771627 +2.202854079461304 2.812231509223591 4.775130500647453 2.7080281478361288 2.1550528970078213 +1.0310179201846137 2.4701949717984015 2.958932916089037 4.079570904783194 1.8240230501822723 +2.1466875962572605 3.5934012280141028 2.9089261145457863 2.5191723872189513 1.4982951312329067 +3.6169588719401906 2.640372213892917 1.269224864107993 4.019435430326068 2.918455012367586 +4.335130878789167 1.0342798342623243 4.643641166139081 2.5820872502535925 3.89173767952784 +3.7608728884185414 2.6446547848906112 1.2422587990250058 2.5467015283729313 1.7168324579853895 +4.8198185535912685 3.321479811581279 2.881748614047321 3.6587307075019844 1.6878152029642548 +1.0069626249787507 2.5908636773639353 3.9585193218713295 4.950306745697427 1.8687923474282802 +3.289121381192359 3.2942982286673037 1.8783347600302833 2.2845174566532003 0.4062156850561576 +3.3221632410880257 1.8168346051374131 4.4597168751932355 2.8882448939778222 2.1761292447733953 +1.072999837256484 1.102545623776436 4.263495533212354 1.8244830850541152 2.439191397937425 +3.7513421262840505 1.033109534437331 2.940453527425934 2.4625975777694546 2.759915711031739 +3.9306576621648923 3.5665346053329325 4.7770078534089695 3.456535467881231 1.3697565190419674 +1.894134799379743 4.191337156274928 1.4693063066945609 2.50724734988495 2.5208054819172276 +3.88704939949291 3.991046001139781 1.5574900987741334 1.7800235843300412 0.2456347804114055 +1.5227064453393528 1.7303902639328221 3.929635932418827 4.5229300216868005 0.6285940222956939 +2.6764200655192054 2.2994331706933484 4.6347151235447415 2.534211487876206 2.1340652853947972 +4.790597751912012 2.0392557867853878 4.089645884130318 4.730286800647479 2.8249430778305573 +3.4918434816774915 2.3280506554547116 2.09463853082815 2.054724437325456 1.1644770831698439 +3.0030768705159456 3.9870281463222446 3.3647952321222703 4.847391726190009 1.7793966610575598 +3.6835294680961086 2.3039812819936984 2.464112509568851 1.6614941127587954 1.596041819212891 +1.582243589364718 1.2468524841119626 4.430447810397361 1.179630744612679 3.268072641279504 +3.5288644137183103 3.3352013460934504 3.6213617364984287 4.006428676347113 0.43102428229312245 +4.934385456800465 2.9234743110722974 4.60198971139236 1.8111978791523735 3.4398085247454095 +1.130412844485492 1.6378664654518333 3.4383500501455386 3.9356668682397906 0.7105161468898807 +4.953954462985552 1.6557659746171272 3.2671634225872332 2.790564702700129 3.3324455951454057 +3.234841869658492 3.6120937681087635 3.3945941483417927 3.868070948104578 0.6053918357542842 +1.0539838537709305 2.8825379225516197 4.517756070106154 1.5443349907596082 3.4906794320814956 +1.2316146845272842 1.7024748000001941 4.289928780095217 2.9753932783356385 1.3963211785722753 +1.0278327243969292 1.604341556176042 2.924808426219918 3.6920776579036807 0.9597210568742923 +1.1039111308462517 3.0380748950681107 4.601156643686093 3.0038755574588487 2.508445003433035 +1.8421505240588103 4.243832397372813 4.683146143626464 4.815442830349973 2.4053228959794724 +2.2026418763684235 3.7599431565664116 2.3874155526115626 1.1767297829915941 1.9725484303475511 +3.143080611662595 3.922668235293755 1.279431303166934 4.459065091494333 3.2738093852257384 +4.428314757883514 4.877093996289686 3.522301772023853 1.7442018578059195 1.833859893712234 +2.108674568783864 3.8728364371014545 4.004430255966266 3.4055115721992553 1.8630541289482225 +1.6344928606754272 2.3853603526056593 3.5537933566576037 1.9072553396085357 1.8096655580591332 +1.9159651014267474 1.951096259371515 4.66013057828879 1.2043807388352508 3.455928406541678 +2.748083362638905 4.8212008996830695 4.546291368395079 3.6336371171368973 2.265116797151903 +3.4922721456135366 1.7756643673221952 3.6302406551165762 3.7822679123597656 1.7233265945360507 +2.999248821072612 4.7260913812964045 4.6476407503415835 1.638618800574649 3.469322458633597 +4.555234922092204 2.823301445433988 1.3582818959512388 1.2734959649307038 1.7340075610182422 +1.7222508059952832 1.0202264026045853 2.9273366387181023 3.62796853587791 0.9918282705558542 +2.917834683467188 3.4883090269467396 1.919644133880698 4.310890897283222 2.458353526255219 +3.2780930100982464 1.8171419403245976 1.7745946624142284 4.813045670608276 3.3714333090642907 +1.1800920929588488 4.36833936710679 4.149380625928464 4.642779656667086 3.2261995109796895 +4.815518304967231 3.8685513151093094 4.128021564162019 2.252474871159294 2.101052564195868 +1.1438310052288037 1.9065286803343282 2.9612165497798815 4.850515315751059 2.0374389734938285 +4.945749688796882 1.8570976656261227 4.1510179922934025 1.4079025617226546 4.130914376463419 +3.994490372939904 4.95761117616337 4.51087294679815 1.2975227711666388 3.354582095110042 +4.764033111105473 1.1390334852243327 1.7655670156788181 1.3758092518828247 3.6458926756115106 +3.0762849305632276 4.3755637628402075 3.8546831091020004 4.013425815649361 1.3089403083735385 +3.6802463695742778 4.79553276519399 4.74876607382391 4.850677439036755 1.11993288665614 +2.164768417272774 3.014535723778591 2.245759763406498 4.050902254746655 1.995155104057802 +3.4710928736466196 2.701493428684493 3.9852503203977103 3.4019646823061134 0.9656632131804207 +4.371106237293561 2.376170406028188 4.731195850502244 4.172883825898279 2.0715890730750255 +4.875877526832455 2.7680811669405716 4.313039029063471 3.206414507665723 2.380635067819566 +2.159568208427155 3.3507860887776153 4.964039074902034 3.9187352834179934 1.5848217738779196 +1.5359974329841677 4.838223740724701 1.6727802560181835 4.173165306533075 4.142055526954224 +4.662928786878563 4.85416594925975 3.629442654082295 2.0273035902455554 1.613512079950836 +3.8032188192793637 4.666430276160412 1.7482507598455737 3.7645270309637318 2.1932861237797603 +1.9279370670355402 1.1553501535285964 1.6912075459956597 2.1918358534356135 0.9206080822654007 +3.4299398453691077 4.587265995545601 3.1047799892088728 2.1967740740983657 1.4710127666876356 +1.7586168550299521 4.111077961266182 4.369532485333567 2.2875824177119237 3.1414310975133533 +2.123270693966837 1.8036983937254516 3.261246780451655 2.1683749904460834 1.1386374332822335 +4.0170639282753635 1.2909783837787598 3.075711759955168 1.631876677178692 3.08483421631852 +1.973144146533654 3.4433766282132834 2.3406620853107722 1.3532969648531612 1.7710091561824615 +1.4280345686437501 2.101576028738726 1.3267116829632952 2.4571243932001123 1.3158613125750824 +3.6348378533608168 2.0936673175178355 3.4871331422793452 4.968169011112835 2.137445640319751 +2.443958726597085 4.159947642393684 4.478391476632802 1.2937149820330842 3.6175658023583668 +3.026967710074828 4.784024824445289 2.5611207553433633 3.6980196011600226 2.0927944688332643 +1.906349481215201 4.063083068623831 2.3459914358082283 3.7996573104504745 2.6008929701461967 +3.418495636412963 3.2804849599013775 1.4991954071441578 1.145203346188222 0.37994384591807295 +3.272066074605808 2.8149105971815334 4.745880238345478 4.299331780612018 0.639059195726928 +4.560392114649993 3.9478796675605854 2.9311621825618697 2.4980439775239858 0.7501752311124998 +4.763596671677723 4.425468617005632 4.605185568306234 2.1936996189834903 2.4350759875489194 +3.7654378161495714 3.9163068482361827 3.4593895912320667 2.0276911731420966 1.4396255850755342 +1.951662652537022 4.225782678736669 2.0431856360701413 2.2475781471701453 2.283286708268598 +2.6765980097200948 4.705877329649663 2.756567030312556 1.1132086993316093 2.6112451363857616 +1.0787629696244125 1.3755168503761595 3.0770892396807987 1.4748878589145442 1.62945148141039 +2.509898149821612 4.55006752391933 1.335352398926164 2.2795297029907617 2.2480573516965627 +4.296088788272229 1.544938679394622 4.769489097589899 2.868886117860916 3.3438179687494887 +2.816515222327563 4.984346054885657 2.889181866738585 1.279987683686485 2.699814148669911 +2.5839630919773233 4.271076115086865 2.4649423967421424 2.8099941305462224 1.7220368903560166 +4.964617941496735 4.158135512587098 3.4336098180100687 3.1790272574031846 0.8457104636370218 +1.204000735255112 3.527923898001672 3.108371907781509 4.593880612631048 2.7581433933959505 +4.608124224836839 3.6136813715171914 2.029307261316713 3.8693369822963595 2.091560652385428 +2.604444201701562 2.3661834457189115 1.5531427437035772 4.857346088954537 3.3127825063847847 +4.585536051571104 2.8774218274446666 2.1144351602458284 1.8754892037926512 1.7247461763309944 +1.6900461250364325 3.7308539198142285 3.2284142896669703 2.4279857329261585 2.192163846447612 +3.214155598390924 3.3029429975994593 4.995227494971081 2.509750612220584 2.4870622302116496 +3.414707724916364 4.9675976483705 4.833211262610771 3.734404584071925 1.9023257426547542 +2.649235621070197 1.152885717231844 4.145228692938604 1.1966548488945077 3.3065315284294545 +1.16176120538845 1.5848281172512926 1.0508257280932773 1.710960890084415 0.7840689025909826 +2.010114668749378 4.7811601944848015 1.7370926279546008 3.9319815196388133 3.5350007853658334 +1.9078239491159508 3.9641279640400278 1.5965615588519473 2.210393217251187 2.145967265977289 +4.90287737559987 3.209358531172143 1.4591930131157156 3.091574997137267 2.3521643263577396 +2.2152973811699264 1.9641778196294362 2.4929166065899695 4.379188772830095 1.9029145328470494 +3.8992690556308482 1.7885608162745679 3.3277230882056434 2.2240012315059965 2.381867168555586 +1.7559931089731493 4.892352028481614 3.246464725878452 2.873994482741181 3.1583985426166605 +2.4963437442802188 3.447945638108066 2.5307647039256778 3.5574821618179056 1.3998910324298188 +1.0060219917170925 1.074400323554333 3.7843637318010592 3.673771350242258 0.13002411746938025 +3.2031785105790425 3.3630880272512167 1.3575002025118752 2.5632144789456808 1.216272161121278 +1.3965745859017402 3.0199667347204024 3.626427656498038 1.4571494050209952 2.709459392789892 +1.7889560268456184 3.325337998260893 2.143930255226343 4.521507713969337 2.830785073864259 +3.4415026637734734 2.653517209243819 2.590873201478461 3.5529638602608165 1.2435994179262762 +2.930915424753868 4.177039815456457 2.7668612174880662 1.6360118591379211 1.6827496154760617 +3.0960408073606787 4.9697541000987435 4.615662959350829 1.9205524798950124 3.2824414693724373 +4.876816696383326 1.4040358081865154 1.924016409228535 2.559472205793938 3.5304406476831756 +3.8196413074144093 2.4228601806019614 1.0794120981783153 3.317142128752719 2.637884229065782 +2.0560383325293117 2.228789849051766 2.480693352423023 4.230163956401867 1.7579790899344936 +4.670128145265293 4.0181435043004345 2.5257015443206674 4.222917778881644 1.8181383112710146 +1.256771014119074 4.347654092698228 3.408351353611722 3.6524788587487005 3.1005090621076006 +3.7276907770010745 1.3047924072423753 2.3847216116680285 2.833345200648619 2.4640819050447953 +4.449082848935541 4.990044948139591 2.851600466650952 1.1874792107833785 1.7498398632462122 +4.066510369644483 1.0896425145843542 2.4971695046092344 1.4804043220214034 3.1457198958288 +4.186294487827551 1.7187502466568843 3.1062246549072934 3.6762823110611036 2.5325363400105627 +1.0804554321546145 1.40842412095293 4.085597916285661 1.0528765022298776 3.050403684121922 +1.5218838133070625 4.930569310247192 2.987420835665581 4.3702883362891045 3.6785131971124865 +1.3961829327432356 1.2132697182005021 2.1265007907856956 4.755331614958387 2.63518666249183 +1.6157092516093257 4.2381332112638095 4.527853100188035 2.122233652844616 3.5586672153499768 +3.0847722456163487 3.147947658802899 3.285552870714274 4.107246026342013 0.8241181801396951 +4.554015470716273 3.9901298969684666 3.4803807511092306 1.477874745331341 2.0803839173232928 +1.3082406849590726 1.7988396994526474 2.6487496495437015 3.9969917602409195 1.4347279122117045 +4.899970334989171 4.532714819927781 1.5908878354329166 1.8645692715267774 0.45801543839198805 +1.4569156173839675 1.1847322782618024 4.446693570184868 1.1537211519600659 3.3042020394166265 +1.9319553368873477 4.33791674671827 3.2243486843001548 4.668414903952368 2.806060860412018 +1.9609181364753656 2.085895431335753 4.289601084227696 2.5561118799164806 1.7379885343966317 +2.104775560148069 3.4456376974021388 3.1360004164585242 2.7149162781954472 1.4054263134786933 +1.8125289250733734 4.945811077750227 4.128117673850074 1.6178307470482536 4.014847133223808 +3.647401959337452 1.7881240960572513 1.5310602532316033 2.4469863246167907 2.0726395589023414 +1.125958504636566 1.2473291754746905 4.496235065210316 1.3706161951510016 3.1279744501211257 +3.5705741097061976 2.7088198981135947 2.501779066397436 4.579148862000032 2.2490188058083374 +1.0433896845136328 2.6736983499360787 2.8484648657425655 4.836724261120745 2.5712023972960822 +3.882777812621061 2.9505176419708667 4.94925219718824 4.04260162088962 1.3004323485992455 +4.50873484933891 2.656065502189741 2.9332946063524528 4.164402637772103 2.224412438126548 +2.650868664843549 2.421340008676176 2.7672257794864024 4.928346377845001 2.1732753264719653 +2.284754557340914 1.330078490705143 4.945602469895167 3.6014757325804956 1.6486609955267733 +1.052335276749032 3.836902933958578 2.659138492851838 3.949309023244557 3.06893418552293 +3.0919188113726763 4.876151364012142 1.1997606769966125 3.873633623444097 3.2145112125550437 +4.876733667273691 4.966980182291637 1.0016276148419148 2.3357922343735233 1.3372133956414012 +3.9130948924941635 4.403106222412655 4.248250120944667 2.6917282289192097 1.6318307215526366 +4.741308254733587 4.738712802944981 4.028600705844426 3.0251044630435997 1.0034995992452427 +2.464897641186604 1.2141255487410945 3.1511847626614307 4.854010989527855 2.1128293793263717 +3.1660558984847036 3.7776694913279365 4.938077596843023 2.1883367894059353 2.816939064842435 +1.7497857880743353 1.4029981358907762 2.3692308833298004 2.9552032902069563 0.6809003872288459 +3.2996998347428654 4.135378001696074 1.8278617698652275 3.7875034749953396 2.130388136281163 +4.3574275107944285 2.2375145022999923 1.3626861305610078 1.870163646323999 2.1798083843743945 +3.323132321975067 1.2111445235372553 4.0778445692478105 3.969070219547519 2.1147870625438663 +2.9169280543348526 1.2360236347556612 4.6627616288045886 3.4955180368160614 2.0464352593715582 +3.4479272427339076 3.670619724217997 1.2327275223827034 3.4567768846113065 2.2351705766985654 +1.7864589502243176 3.492192024441755 2.2640646582786292 2.3094092567221782 1.7063356800721472 +3.242934866485942 2.499555778934688 3.9480441608824126 4.488256814205512 0.9189353506198998 +4.062537485218291 2.381864582961707 1.038144397888067 4.96321752524358 4.269761171244589 +3.0579243521042745 3.1180844904278966 2.4368555414597535 3.0592026854445393 0.6252481186450201 +1.4533794114318517 1.5104827210367442 1.1570471899115078 2.002778557867249 0.8476569675948648 +1.3033405301128558 3.782892563721198 2.5945465392819047 4.155679428566154 2.930070679245853 +2.7442542231969456 4.326207073950151 2.754337650285992 1.6560073265358946 1.9258515836053378 +2.275905950482427 1.2910306677352943 2.8278510401788446 1.6734953824809433 1.517404463887397 +1.9285620401080217 4.104310938777605 2.0227287469756687 1.419591262597292 2.2577993921347796 +2.0463480430027565 4.704451373220695 2.387345402594811 3.2967734505496566 2.8093722943965003 +4.622380603589312 1.9228945392918662 2.3383433783139362 2.179293308212823 2.7041675125877984 +4.625790760053628 4.662193955522779 2.316336709574479 1.8755594670691655 0.4422779331494542 +4.0358318711302665 2.009313663055067 1.2752315393904046 4.666726233794674 3.950824257016835 +1.375174648698283 2.693585119558691 2.177727299694152 3.6997727649853127 2.013660489776702 +3.4436419025634915 1.7374470015431176 3.9116512095925398 4.783871766742852 1.9162123422479889 +4.530881436735647 1.0297789510853166 2.803973206892928 3.124573980142104 3.515750769157975 +3.0182118716192488 2.2472602586772292 2.1118186701034145 3.2972893045368945 1.4141099725983193 +4.259460662545402 3.114049184862047 4.029088590307962 2.9807529456893227 1.5527314890175785 +4.9123876931241215 4.710999571946621 4.19498300173602 4.829657420249324 0.665859439271236 +1.755374900760435 1.157454654469693 4.819735659151618 2.7603798036523424 2.14440088614595 +1.5658694106505018 1.8632444911832713 3.3153004699749045 2.112015100758111 1.2394868366759955 +1.7515663453614838 3.5886882011803656 1.0845213982638167 3.776567732697678 3.259160962558646 +3.6608361911358065 4.2637070058396365 4.5764286736459585 3.082151842096703 1.6113089301951198 +3.959388844864532 4.045332100309411 1.2690724675440874 1.8760934581763 0.6130748129099551 +1.8143044188363522 4.885595190865438 3.2240096027125995 1.6154965974622755 3.467007512886357 +1.8909170330420997 1.6102394002678126 2.5511976287962352 1.0824495158654601 1.495326369986663 +3.2065430118832037 4.187127691808406 2.82200115811807 3.515967307261765 1.2013056774448965 +4.711994865124764 3.36496535477966 4.8269190066726795 4.290443112726702 1.449929269490655 +1.9164451465401235 4.964148080056235 3.6312854255185587 4.983517230470671 3.3342201524924477 +1.039204287783063 2.6312857260133944 4.955854359137755 2.4440101885396013 2.9739005436169994 +1.4913720754277544 3.478414909411057 4.393072755291052 2.4082668492212718 2.8085216233552264 +4.2878264477415104 2.847851696094224 4.11644565754788 1.850348090483596 2.684906975825481 +4.665554545783854 4.84295528061809 2.7079271327507324 3.1606623678508905 0.48625118387611416 +1.7922902555626261 3.8869870965846185 3.5584579821710376 3.034129106077998 2.159322955486859 +2.065932580400016 2.77498648358914 2.3623850146314096 1.295644506816986 1.2808952918329841 +3.745426196929756 3.2401699274849665 4.787223166053877 3.825489124270907 1.0863775885655382 +3.1545855784082613 4.245177562031332 2.995485385590897 2.0219249242804618 1.4619202599902263 +4.579175034685214 4.207119288821013 2.5360794196126153 4.647401303657691 2.143852974454689 +2.877503421765647 3.2610179754617064 3.9771089202950765 3.441147091990259 0.6590436209360728 +2.878207859463551 4.539563626012623 1.3671042322779536 4.415361728399751 3.471595705969891 +1.2883078027581285 2.9694609309997086 3.776698115753987 2.5843343756559656 2.0610694139928896 +2.530104391439313 2.689012261651433 3.648910314943625 4.277444134156747 0.6483104758601281 +4.5392987908990285 4.559436627394264 2.4780623360865435 4.64151582532247 2.1635472106117337 +2.260795558029559 3.1681921468817125 4.718576310223074 3.4342654951917155 1.572521172851748 +1.090123627739803 3.0776608855853613 3.8229168579813417 4.180807455708459 2.019502421703355 +3.2553010659223998 1.0129699807487063 1.9709968292502809 4.806168465618678 3.6147263939618015 +4.634480056685885 4.987838419977553 4.790786919093479 1.7942035304412225 3.0173455450204587 +1.6520621309653203 4.138773693192557 3.6300139953405 4.5872311706897815 2.6645823527334036 +4.026345437490461 4.850342945761641 1.595554683655354 3.9649733974973804 2.5086085655482235 +2.9027891642646906 1.2229486001527046 1.0734489262765297 2.024845988053047 1.9305493233774333 +4.4557631678715435 4.844980623916064 2.0553910425627366 4.747720055032808 2.7203172130245834 +1.3557633710269394 4.669254840035553 4.16077430301581 1.9328433055116223 3.9928564017295765 +1.6365215465504055 2.2034629078298975 2.216559314865146 2.2327067200342747 0.5671712667467733 +1.2983838404690466 3.0072079814523947 4.959441077559058 4.985678720465657 1.7090255582386038 +3.319476174110732 4.409919624409529 1.2714488451786 3.652565815617279 2.6189282054326384 +1.954325667906046 3.786644304355387 1.638101894179536 1.724318919611978 1.834345921835353 +2.305182439559062 4.074324135854629 2.9282680473466343 3.6929960880118937 1.927348260629428 +1.599747712165982 3.5884273907352155 3.975299052538549 1.881085821799032 2.8880055262687216 +4.572479348587786 4.968942415094974 3.088630297615953 2.8383746799246916 0.4688398844918356 +1.187945699528358 3.7697248071356415 1.2183535393189633 3.163432587349404 3.232478285087847 +1.2422344456765528 1.320900077797576 4.510045404579058 1.4233472235640994 3.087700429503817 +3.3684903272263798 3.37787344296435 2.1818473684276385 4.5335606598384475 2.351732010212731 +3.6102922777699016 4.406246959049594 2.1049827607100693 3.017452917649807 1.2108450115339642 +4.17335395989768 2.102774563210029 1.660839454205516 3.8974540193459872 3.047908094248561 +4.149254266547371 4.886761780596585 2.174288350487909 1.777838217979638 0.837311197133346 +3.7229452544737263 3.722975204811156 3.3472419720087085 1.9528071309210393 1.394434841409313 +2.295243103254169 3.6929823648172526 1.9022784995257944 1.340608581845372 1.5063691910491424 +2.022245443323756 4.689729986424151 4.807295435975449 4.163061880617864 2.7441775929280157 +4.478674390836574 4.292153217322901 1.480816581237418 1.5854119658007417 0.21384653993195016 +1.4704388423811885 1.9239796325207403 4.105270545489303 3.7644363217872034 0.5673334260970542 +2.301478083992969 1.2533063392503614 1.5577309284615648 2.5590608804841946 1.4495950052667828 +4.631112521767937 1.9101951637990573 3.7506082021168483 4.7176518032252535 2.8876572849528146 +3.8714397808388155 1.520798586503353 1.3321470369831783 4.696898191382651 4.104517554541512 +2.5377010204454806 2.5959172579061622 4.370308576559233 1.8073540381848656 2.5636156295509362 +3.1786435422613892 3.0575330133522027 1.3102610843557527 1.227922798649347 0.14644914989760982 +4.364757452281378 1.573020248333688 3.204936529115634 4.410389055102733 3.0408736258375395 +2.344534586581232 3.56958298747522 1.9414982979602495 3.431622212390236 1.9290445471499778 +2.5097778656066096 1.0885201925307735 1.2265472256748287 1.1165054611919176 1.4255113339456311 +3.143256209315449 4.335051856277584 2.9230326508060775 4.094907628590487 1.6714268837359008 +1.226282282257439 3.3236300064541187 3.511333000979884 2.8032880057678073 2.2136384509304725 +3.983828066333407 2.4664045976369833 2.7657948135747 3.1020311018015274 1.5542293347094054 +4.190177060076369 2.893078599536361 4.036049267828434 3.854342719852174 1.3097639809953197 +4.102305374899567 2.409996513832304 2.457829402271213 4.703398833791656 2.8118483872758544 +4.970243644256136 3.7287727330543636 1.1747269410043857 2.2592685291694647 1.6484782315274267 +1.5546906122501323 2.616713350583025 2.904243293985382 3.3566086245292377 1.154351198298918 +3.5533554074235885 4.966113206728632 4.828799539557299 1.1768796495933307 3.915661308414158 +3.091326123412366 1.9042011718984537 3.383389527154164 4.062776940420074 1.3677839404712473 +2.3131919261837406 4.320157784659775 3.7069344106954087 3.1591775760282834 2.0803724443024607 +4.194940859442405 4.623985827282863 2.261058686381279 2.9081478657810753 0.7764045276307455 +3.925359897309261 3.804917936338509 1.2333657581119644 2.795286104566657 1.5665571916248788 +2.680006430852006 2.0637431621262086 3.97451099563952 1.5582572217225459 2.493604362433749 +4.811919095062564 2.7583526708396313 1.3109174526862897 4.791818657472595 4.041510640364381 +4.2559860389833 1.1114999713748546 3.0015428058845424 4.937250168922615 3.692526997152957 +3.9791063845197696 3.7807790486943786 3.335968779420276 2.8019070803851336 0.5696978414141137 +4.4836996277480585 3.283300943965913 3.2641514236897495 3.3663695085043264 1.204742933944444 +2.4653845989731122 2.2023244677381904 2.516716748288046 3.4161959178259274 0.9371570887945581 +1.530244364584299 4.036831267708331 2.3628717696596726 4.964061974947361 3.612363268969157 +4.753454687512395 3.1527320848236617 4.583635971549777 3.3349498289973583 2.030155150071302 +1.90599286775985 1.3025255401163371 4.011745479457259 3.6856908787270446 0.6859186673291102 +3.2214334449407938 4.892332327639025 1.280954879616789 1.6249620414919712 1.705943728152724 +4.131654743380636 3.1606870553407473 4.633403474172548 4.169426027171699 1.0761288596366851 +4.141212846166512 2.068226674370704 2.898229361607519 4.873436000593756 2.8633394725655474 +2.209964668563345 3.9725288164857933 1.2836331426912402 3.2232924594552492 2.620860667920179 +4.929325885991567 4.28610773646235 4.553652240228423 4.62387208040637 0.6470397312672584 +4.142962823431497 1.9364007929438722 4.168620182486684 4.088047879399852 2.2080325836396497 +1.5910174032744702 3.7846335286692594 3.1103435861497717 3.490457392712739 2.2263059564066743 +3.5951365621460583 2.8617089977759997 4.403158130803213 1.439457290994583 3.0531031197881564 +3.9677806387868753 1.8541307895672263 2.990788878030751 3.541744389529441 2.1842773772479145 +2.759538024014743 1.8155799197463454 1.804395808592541 4.007352591385329 2.396680097440361 +2.9390819899873586 2.46674901549413 3.027522549696801 1.784474696684479 1.329761784558484 +3.6446157343262797 3.012610196391114 2.6036137234595453 2.3406762296537225 0.6845196312959952 +2.604345539556994 4.593813628455635 3.6452049336845245 4.280523063757202 2.0884473666207284 +3.2521829819107437 2.872015514031351 3.4047231685426635 1.9413893564564573 1.5119104302929383 +2.448359062310457 3.7759897038062196 1.6513863395845019 1.8812349362984833 1.3473802349930164 +1.1501122926552556 3.541140919780159 4.111816950155631 1.0367376737795073 3.8952702668401202 +1.0199483895358799 3.363030859209607 2.5962540736844955 3.1419655837675444 2.4057922836208148 +2.718456946613354 4.925472657552492 2.420586026549908 4.2733407188163595 2.881599954547393 +4.907401849845599 3.4845495561786506 3.000505928355046 2.187959040747276 1.6385179566163965 +4.864297128520574 2.46068371803279 4.646361578716672 2.3399247415277538 3.3312172416428707 +1.582458173633201 4.452884022022651 2.183111268508658 3.1726405227400205 3.036200371530504 +3.901856307663135 3.0835142196185985 2.607125532191469 3.012895816366636 0.9134184673985345 +2.6957533972767607 4.570037112156363 4.694348281285817 3.672108354674923 2.1349271442886124 +1.2965194775924198 4.437280567836971 3.399145115895405 2.448571701109879 3.281458523719469 +4.811193190135926 2.469108938569663 3.2702406748690485 4.249573198652584 2.5385922936885574 +4.824829951220934 2.4391041936940776 3.4149883631717324 4.7298901434400875 2.7240877522355964 +2.740648910991532 1.6512019993363571 3.715079487319206 2.959337136082884 1.3259114128655818 +4.2244298923579775 4.9022494334007565 2.2766991974887945 2.654380664724015 0.7759398307294146 +1.67380715623313 3.5095141654188122 1.5628173731457355 2.456376660113815 2.0416337631662405 +2.146338316969004 1.8724862739306358 2.584916218709076 3.1091008343512554 0.5914088710462734 +3.540452848242146 2.6913288717203576 4.911330813603764 4.429634252937998 0.9762392657854954 +1.152146777903531 1.1745204890270844 1.3393096313487889 2.034287733172682 0.695338151523546 +3.5458409096620644 2.165789869158885 3.015977265723109 2.7466777762600763 1.4060807549422467 +2.302282583685765 4.61900086703454 4.68620494390067 1.5410827681997188 3.906274069300358 +2.389916798468215 2.4144635217280648 3.8175076480021772 2.594480841128835 1.2232731142118671 +2.8716860693553303 4.070261700825664 4.564200878366967 2.3926967964430235 2.4803252855556783 +1.486794188737877 1.2640222573301787 3.788544998797351 1.2727322209455183 2.5256566010892434 +2.030442100470424 3.041860469679774 3.1252013260029714 3.6105619953672696 1.1218476264358992 +4.998851393012594 1.7574389208763477 2.5463842661661724 3.013607038881034 3.274912507818152 +4.213274126980956 2.672017805645153 1.135373564253412 3.670461655510532 2.966840521243304 +2.5208341782914614 2.5794452682110154 2.321129625636692 4.231896996658094 1.9116660812028856 +3.5797984499006144 2.635217411976802 4.30806842672585 4.634061897324673 0.9992522604819529 +1.702438882056117 2.0719854617326074 1.7993201684196904 1.0721792436356208 0.8156583837896995 +1.88999057202484 1.266774689738296 2.329968311461843 1.8855904127099947 0.765421291076557 +1.4248985853810217 2.497030165537609 1.705121560725484 1.4199587920780288 1.1094070171905994 +4.096461310741785 1.6962285093310605 4.096342962386112 4.1907169575546686 2.4020874155475793 +2.4419426471656664 3.3013158653392414 2.1484644765464513 4.0523565786710005 2.088857933093163 +1.0239913067133388 1.1872360195855838 1.4143334621739347 1.3698548060568387 0.1691957065966054 +1.2365708588842237 4.432278533275957 1.809970538183979 1.7307749513520654 3.196688830827904 +1.6606059729422267 4.386182909677601 1.9973510546834894 3.4487210037371416 3.0879190998275496 +1.186128460257268 1.9679891316555702 2.8640298920421334 4.030530844983199 1.4042900635879387 +2.896279120647009 3.9672431195916427 4.863305195758453 2.749109346227171 2.369976366382328 +2.8188471939280006 3.89534104387528 4.320762880327953 4.501026323139584 1.09148244043989 +1.3141912047927455 2.8079185865344463 4.810942205376313 2.2530587899686974 2.962092006974504 +3.208334187819857 3.8385786981331864 4.330991628888942 1.7189769210519925 2.6869739441864025 +4.5457033278421966 2.124516910439094 2.421383383898875 2.829861606028346 2.4554018257245236 +2.294784845658465 1.0978998373232818 1.097905036620526 1.9539258728024897 1.4714976707950236 +3.182106093010823 2.2615522608209413 2.132465974696853 3.5801806743144455 1.7156040363231644 +4.241244250113504 1.0679284421249062 1.6944594272677334 3.669464685976912 3.7377237711151476 +3.3776673033051714 1.4753898554612004 3.77057352151609 4.524756138271661 2.0463261978462897 +3.6804254500311875 1.5582015918572667 3.946180045650535 1.3220373521836652 3.3749013289099516 +1.9366488622351952 1.8680770919477303 2.2984621970522934 1.7513993654433246 0.55134365817372 +3.670523048309727 4.416138240612067 4.211694662853207 1.5479869280567642 2.7660948847439144 +1.233800788203121 4.047991673489767 3.169373319595386 1.9643053974337925 3.0613492182129916 +3.429218549242266 1.0669507522714192 2.9450000831387877 3.496746843013387 2.425846992627032 +2.7793574331063384 3.5716464281453986 2.7850502074163135 4.186777441454338 1.6101431893790983 +2.9243881936113922 1.1915670074734024 3.768210287603592 2.4581887282441817 2.172285835039931 +2.4321096182693736 1.4549981382952 2.007972877659687 3.094613645628715 1.4613469823794893 +3.1948644839112115 4.218150657580912 2.335197097173806 2.6582531089787067 1.0730702586442626 +1.875770738046389 3.514418925934699 3.702948842705041 2.724805653468053 1.9083846526107753 +3.207086860026834 4.719039618067414 1.959719164153181 4.42758466628912 2.8941944093614698 +3.5422682007016966 4.045119721377463 1.327177554373936 1.9224767806850829 0.7792565820656129 +1.1955509480429969 4.112799499472443 2.050365410260877 3.659878988606126 3.331797273198795 +3.28202966633045 4.785830030302568 2.37526354295276 1.3770337827150576 1.8049593316490253 +3.9967022829688523 4.907763860155411 4.986609944650339 2.9086092701713278 2.2689468924064498 +3.904146107333829 1.8831732286175953 3.0288492069874735 2.332563825731898 2.13755577907497 +1.114131461197478 2.6649252303554793 3.005160744566644 1.5376129889125898 2.1351013394179987 +4.27319313559638 3.7355963335920443 2.9990852660874174 1.3848859725026008 1.701367003598874 +4.577665506540339 1.6039243955593578 3.887244436745161 3.2891297741180465 3.0332948001781737 +3.060099632892299 3.2022124937538443 1.6064133825134657 4.6553868383951515 3.0522836041058445 +1.6980625068818989 2.527148728112925 4.286961481441218 2.98573435737985 1.542911530395752 +1.8001736676046303 3.801069041458469 2.973814548993343 2.403305167393634 2.08064010621803 +1.7972220041705058 3.4011056402681965 3.692234512399109 2.1514290218864187 2.224078298472426 +2.002911315249934 3.1068951214510863 1.664900454568615 2.1916969983123353 1.2232313120807174 +3.6317139235962177 4.252417370837723 2.105020931780223 2.5285381650914722 0.7514250570277138 +1.712721581037493 4.90759535612707 4.870451676884771 4.389086418087422 3.2309334488862755 +3.3330321552281554 1.8288796894832755 2.1309208207423116 4.922579201139117 3.171093053356542 +2.3478038115932245 2.1411667261828224 3.2132336934023358 1.0708286262904347 2.1523471738206306 +4.9201961745589795 2.1951932647773096 3.5025354387413197 3.9670976641384024 2.7643188889099712 +2.556018789993747 1.7469780383106417 1.5875999298264496 4.376654247493888 2.9040266742547916 +4.91402674706159 2.418946654320564 2.971381010734228 1.6830561998047022 2.8080608055469822 +2.3381524106032114 1.5604441216518325 1.6369964045615895 3.827990666053141 2.3249271035007935 +2.9042416640382354 1.1022020363797593 2.989083371141717 1.2589073843691394 2.4981704835451004 +1.7598736630981322 3.0724429502707045 1.5078348020520607 1.6444995092760921 1.3196648725450506 +4.869940273327083 2.037742051241503 3.2984497749423514 4.703822922406122 3.1617116334031707 +3.0064583097715376 3.775633163813865 3.0035134829986165 2.184553616262962 1.1235324736805414 +2.6061694319837345 3.988320322684576 3.6736771732957703 4.134199188872283 1.4568533253199454 +1.043719636569139 1.7101836280834992 4.478093072812355 1.140546875605125 3.4034378017642237 +2.3989848986305806 4.927075877703812 1.4155623644291584 1.1152605298640847 2.545864330696866 +1.0480089812256197 4.602886622682435 1.5010390036067678 1.7340402009727098 3.562505382971868 +4.346065924055871 3.355860987395629 4.135709230692293 4.791525798909538 1.1876873274286284 +4.679704401928379 4.643587093083857 3.442857260290132 3.1224948341558805 0.3223919106875891 +2.0639686274392344 1.8110983012468904 1.3884313807584547 2.4815002837758766 1.1219371767671897 +3.87860764872963 1.4028927767131774 4.193066817305091 1.0694127372328963 3.9857720631610523 +1.2667148901017087 2.2992288812516186 1.8630296853673136 4.104914297349415 2.4682244134929174 +3.530280063276072 4.777616406333063 1.7324002551921982 3.6888630563775244 2.320257452338581 +1.7167712106898998 3.5308294333688095 4.8256362372636765 2.4732511253087166 2.9706098616641525 +2.6631928899263677 3.104480415466626 3.5266747522690887 4.735446003731271 1.2868032555751847 +4.370682472179233 3.9001396742943073 3.636914594545128 4.1178123229406225 0.6728098912897467 +1.355286611725825 2.0714249093826114 2.692725717481931 2.897179355763971 0.7447518724901087 +4.327264439994872 1.7163043391570585 3.2778475237126394 1.1222509061682446 3.3858100102834836 +3.020179699164501 4.715438006026153 4.097237163699009 2.1177083114673625 2.606230074993567 +2.938963773189915 2.170434127549392 3.2788589512122543 4.990064082703551 1.875862686411373 +1.0391193325633719 2.020186871930842 3.5494792020106427 3.8267998794067 1.0195098209001965 +1.5036035734565951 2.503577851245243 3.2333767138901712 4.996834970985035 2.0272477847453634 +3.430027716910093 2.7893949978829795 2.7889115233662762 4.399665521903115 1.7334759082521127 +3.6020559149244096 2.315800101167402 1.4292984797666266 3.6795860657356267 2.5919583789077114 +1.2112758839058175 2.5418751855317994 1.117441361709146 3.950156339275805 3.1296595095342283 +1.5851344353259726 3.9706719413503935 2.2956922913578053 3.139657168631691 2.530428008602722 +1.6743954466332833 2.8421451619251226 3.6443857406464275 4.896162871322183 1.7118952603611584 +3.4901923800274686 4.617859428984826 4.959671571374428 1.1921285118459877 3.932685301254744 +4.912548505460816 3.3958220528880556 3.9035582227145587 4.33279937528329 1.576295371747466 +3.1611861306410436 4.031441039773335 4.391635161203688 3.675548841476934 1.1269974375164564 +4.250848022139866 4.360866878731192 4.463793712069969 1.5521825672542082 2.9136890032089915 +3.060733818930969 2.4577963612929272 4.078525495858909 3.970489370023942 0.6125401066938021 +3.488852791254989 3.1137647638619192 4.037119744379757 1.5667998128547986 2.4986339452555066 +2.3850347666028586 1.4207552580438483 4.04653420381206 3.0331377359538823 1.3988593109009344 +2.4068858415796983 1.3317197979529034 4.43637452525185 4.942808121811321 1.1884683458520284 +2.109381863142386 1.187944064203608 1.2992674089196816 4.348347835031068 3.1852690721834995 +4.4390252217056325 4.05898119811831 4.815487694732479 1.0090211415541255 3.8253916244392463 +2.719954337520813 2.5849896555182763 4.980120583867157 4.713854732758534 0.2985179539904509 +1.8707394732182618 3.984278219050664 4.0343849813228445 2.651711786956288 2.5256348098160633 +1.8960011408249389 3.0064395630220173 2.204558531533942 4.756373244995839 2.7829537943221694 +2.9273062666283143 4.736406415211997 2.1350837897687014 2.1625697702498154 1.8093089362318726 +4.381610575520247 3.4753380681141937 3.5681616343023186 1.917752895148014 1.8828645368047474 +4.702335041710015 4.871694549091606 2.6502612211699628 3.5080801779718365 0.8743774959302133 +3.022722011695047 4.025513042877736 3.440201833016852 3.358760917730394 1.0060926770944798 +4.188021973749603 2.237699400119745 1.031593893763426 1.6913866744909747 2.058903750715507 +3.4068500795303223 1.304554462698047 2.582444830425825 4.476111726479395 2.8294206427750113 +2.9052236758970205 2.059416174129522 4.052850290875539 2.12480599119842 2.105408547423423 +4.195841067165571 2.7986906969513203 4.3823168620857205 2.9790866597380523 1.980172759576925 +2.651548380779855 2.2661206086021606 4.516829081992409 4.676368546701534 0.4171419522962598 +4.462217475759548 2.1790680737555004 3.124343322896679 3.000584072824388 2.286501157631436 +1.6191507535800476 3.5454782894699868 3.0335971149532885 1.1325202672456949 2.706442490875734 +2.5803725604020658 2.226244034444656 3.6181524852118567 4.372040224224788 0.8329188051249641 +1.77702952770245 4.638159309052818 2.1352662802386226 1.2670968713640929 2.98994678016776 +4.017424574194273 4.1652358382242705 1.3263967233868081 3.6304351949356177 2.308774880353457 +1.9326060039668906 1.5418428757373306 1.2206663323493072 3.3427030608052197 2.157715388854523 +2.570280229558798 3.861205732206807 1.0968037224695388 2.1478628409468095 1.6646963458604793 +2.109133773231978 4.7906366689418 3.0726175801488202 4.433403714474081 3.0070245564464626 +4.458573815077636 3.1291433544561853 2.4486645021678797 2.778096841009068 1.3696390091927646 +1.3138134961353654 2.445400223542603 2.6864658613415964 1.5444509385818512 1.607696055058346 +3.110726009026245 2.5346047523523474 4.881313018363665 4.532149938152669 0.673669473090433 +3.7546118591177877 2.744696155378102 3.8737296138666975 4.1651648414498705 1.0511252163926428 +4.274746909293642 3.10429210096897 2.49572429744326 4.684203623306882 2.481815105535228 +4.962712347381259 4.405186965394712 3.212618170773563 4.624707424309639 1.518166858916146 +2.2601206917921495 4.884191789187234 1.9221482461219295 3.6718267655829107 3.153906156759807 +2.9842757426294524 2.193079748731839 2.0232144775512992 2.9243623887716343 1.1991908349618108 +4.567014115423068 4.801141366611207 4.1887572096876164 1.2971526333772951 2.9010674924047715 +1.8117248567603483 1.4741103321473084 3.9152588268522903 4.510221539043799 0.6840790861647251 +3.8047116369261147 3.153447324907563 4.6215494573931615 2.971344855871351 1.7740688912758589 +2.5757385451027317 3.5469390619202104 1.3182723905573037 2.414782160241702 1.4647744259372737 +3.302274732479519 2.7855264094553456 3.585886508265717 2.8290797657558957 0.916397989334668 +4.373060978840675 3.8070989666816555 3.212439435817743 2.5315520854686246 0.8853928975728962 +1.9100862152981573 3.748320983402215 1.856527270197228 3.0711689081224267 2.2032842238912775 +4.9660722783204285 2.3556690090231354 2.635110201993062 3.7480149911241383 2.8377389411341 +4.262054981955723 1.241244012540763 4.049856598379492 1.314415104948226 4.07528392592752 +1.9963089108026124 2.946419933162434 3.1021890069399043 4.50199774656077 1.6917965191856206 +2.6291308578699693 1.9917051663477832 3.6728016731514432 2.3526286812510224 1.4660041748766768 +4.8656068084025765 1.3419670839514874 1.310031005356453 4.691463777235706 4.883658925280179 +1.3448664905441934 3.020297931605235 1.7498454802796704 1.174503903054232 1.771465055873283 +1.45664717184082 2.490602136606244 2.6032205319913797 4.670454635578988 2.311389129549313 +4.859916303065565 1.3438702963916738 2.3331386010174833 3.2560261532061268 3.6351479963038864 +1.0692019495350054 4.782341481954443 1.1050860509092417 4.732767878342465 5.191096283860018 +3.4086651135072676 4.700178833777742 3.0181877840722624 3.419765258656776 1.3525058808524852 +4.961725012129696 3.61554730533606 1.9264903696379805 4.619247704429128 3.010504356804636 +2.5121341583462935 3.4942846265652956 4.0313664599822685 2.174441714429307 2.100663955245992 +4.103794604222881 3.3733424461625345 3.992376349831127 2.129464724291745 2.0009997700611564 +3.6473744072139422 1.8326692695823583 1.4748628074868844 1.6181561745038695 1.8203537363868403 +2.091494542305552 4.47848913288922 4.6426758452378145 3.0382916654813314 2.876072282076474 +4.264891393848083 4.553886196609195 2.989719927344181 4.354682571680554 1.395220776958499 +1.0726571795510225 1.2995379267294562 3.2032899382319497 2.1330608936010833 1.0940132912408977 +4.183829240812741 3.8182898083661803 3.1877333369937753 3.3738420181781485 0.4101896121131546 +1.7561671047569973 4.819917797714275 2.22435813912803 2.7305616294434323 3.105287471749387 +2.278852966382682 3.8999191259663935 4.44505993349032 2.671669836768139 2.4026585127520286 +2.0472446705749396 4.936889545705844 2.9287983561833077 3.218733397681487 2.904153892730007 +3.8248296026185513 1.9829107640511654 2.0072031471365386 2.0828566892593607 1.8434718512375385 +4.331607921923845 2.905442815900214 4.484217123902928 3.1891189509393687 1.9264543044808884 +2.6562262192574515 1.8575630407210655 4.970112435889934 3.477145056810857 1.693166993460507 +2.1339425506289458 1.1406268519047473 3.9249251366791706 1.0451188276709344 3.0463027516541397 +2.098426644186981 2.4560047514763856 1.9019650714104936 2.289536485394211 0.5273269419914092 +2.577099496320525 3.964774607516037 4.303837965219915 3.4841269429524844 1.6116973581470537 +2.8137513018089586 4.109751643771334 4.3366387089054665 3.22935450705218 1.7046099817965585 +2.6692296141359173 1.6080152166682886 3.5782072347562073 1.4552466138514406 2.373423222964024 +4.9645375351514645 1.3206968313597072 3.6330001026684 3.280046861447999 3.6608948448565957 +1.9863061974279645 4.876465394708337 2.298242654401905 2.186158803514857 2.8923317540099016 +2.615750672766263 4.03294152880465 2.9374810636776045 4.82234559594467 2.3582078422898096 +1.391581345940538 3.583501325160292 2.727438964353189 4.6156452965708015 2.8930669450134427 +4.053843083224398 1.8497435876262163 1.6643184113274287 1.3950264344542997 2.2204893053794237 +3.043291986176786 1.556318445497535 2.110471400645496 1.8453769215582603 1.510418946359824 +3.388417462644392 1.0618501390549047 3.1177692260125958 4.4716543065594685 2.6918247198734475 +1.717681574872973 4.318073820748011 4.971208244443867 3.193210870125615 3.1501292823453486 +4.5045842965066605 2.2178209213827125 1.840973385262719 4.52579378323936 3.526690701379938 +1.546220483880937 2.4948061790281693 2.5751180407104157 1.5323757141737335 1.4096547026095045 +3.8677756968138475 4.6368059306389995 3.6455461143623724 3.2255101802192905 0.8762634800724148 +1.0055389988689543 3.3277554043980357 2.7576015993131997 3.1644310978139663 2.3575833548273097 +1.1454920208276342 2.9607590644169792 2.958202824644691 2.9659657444926943 1.8152836424278624 +1.311029210730339 4.302482601189537 3.81533056613628 3.4582937506363556 3.012684629182443 +1.8747811702538173 2.389827818641498 2.7288253896396366 3.1344556847150935 0.6555981896698506 +1.3750250813990172 3.3249490781252726 4.529270196888344 1.8046758180371452 3.3504653590622966 +1.626130769507773 2.075580151428941 3.8091470206708293 1.0548866286913783 2.790690784328518 +3.2352160574984863 3.7801435548369042 1.3583944817033582 4.318957020270027 3.010295088877472 +4.394427260777912 4.579224549362106 2.735454326488896 4.7661563133191915 2.039093082030484 +2.026825904112009 2.305424765605697 4.987115115261538 4.1350979319020515 0.8964098428539328 +4.629593387151966 4.1014161472924116 3.323865908855239 3.255902419515504 0.5325319075782127 +4.621775943839791 1.582424059964589 3.5007347691468436 1.833410046835012 3.4666455837953736 +1.79114402206412 1.534279146304245 1.6151759801147008 1.6359198348078694 0.2577011290364622 +4.358999713699081 4.88251058375333 4.919630033832229 3.8172387065276037 1.2203811984709576 +4.361910627682963 3.8173943805026163 3.5183956129151586 4.866134072816598 1.4535807166239074 +3.227195061288014 1.5408353407495348 2.402995500007549 2.9883416709231096 1.7850600121172748 +4.520769496951143 1.27504046642082 2.6894332746811647 3.8514179233355637 3.4474577971797995 +4.195668291109815 2.0854146787005763 2.4999518382400194 2.8715189598587028 2.142716134851799 diff --git a/examples/AI-Feynman/gravity_data/gravityTrainData.csv.bz2 b/examples/AI-Feynman/gravity_data/gravityTrainData.csv.bz2 new file mode 100644 index 0000000..0d4cd8d Binary files /dev/null and b/examples/AI-Feynman/gravity_data/gravityTrainData.csv.bz2 differ diff --git a/examples/AI-Feynman/real_estate_data/aif_train.csv b/examples/AI-Feynman/real_estate_data/aif_train.csv new file mode 100644 index 0000000..97d0c89 --- /dev/null +++ b/examples/AI-Feynman/real_estate_data/aif_train.csv @@ -0,0 +1,1001 @@ +2.5 2388 8537 1985 6.0 262 8 38.8043489 -77.2975569 300000 +2.0 1426 6969 2017 9.0 375 337 38.851005 -77.317099 300000 +3.5 3424 217800 2018 19.0 394 280 38.8348749 -77.3360402 300000 +3.5 2094 6969 2017 120.0 344 184 38.8442531 -77.3045432 300000 +4.5 5217 6969 1989 54.5 259 280 38.813299900000004 -77.3694096 300000 +7.0 5190 19297 2005 1.0 346 280 33.8621954 -84.3613931 300000 +2.0 1930 13111 1925 2.0 404 280 33.784313 -84.3620503 300000 +2.5 2906 6969 2017 2.0 179 25 33.820845 -84.37141 300000 +2.0 1587 8276 1940 2.0 195 280 33.742151899999996 -84.44223029999999 300000 +1.0 620 6969 2005 4.0 391 22 33.8455184 -84.3689686 300000 +4.5 5670 33149 2002 5.0 220 280 33.919594399999994 -84.4206021 300000 +2.5 2111 6969 1976 6.0 135 398 33.8621896 -84.465571 300000 +2.0 1909 13068 1969 6.0 102 280 33.7105855 -84.334546 300000 +2.5 2834 6969 2002 6.0 145 280 33.8676889 -84.4645184 300000 +1.0 783 6969 2008 7.0 409 363 33.77808710000001 -84.38389670000001 300000 +2.0 1400 6969 1925 7.0 200 50 33.833192100000005 -84.3837299 300000 +4.5 4490 6969 2018 9.0 209 28 33.8676889 -84.4645184 300000 +4.5 3849 43560 1999 12.0 119 21 33.693695899999994 -84.5681171 300000 +8.0 6689 116740 2000 12.0 253 280 33.9015579 -84.43308470000001 300000 +2.0 1200 6969 1924 16.0 150 280 33.7254839 -84.3950015 300000 +2.0 1426 16988 1956 19.0 337 280 33.8206443 -84.34962469999999 300000 +3.5 3650 6969 2004 21.0 112 280 33.9122781 -84.4640993 300000 +2.0 1670 13068 1951 21.0 239 280 33.809733 -84.340087 300000 +4.5 3604 6446 2018 21.0 146 42 33.7341489 -84.32444009999999 300000 +6.5 7191 152460 1975 22.0 369 280 33.835531200000005 -84.4443836 300000 +5.5 6599 20560 1987 27.0 220 71 33.8372815 -84.3931953 300000 +3.0 2454 9583 2015 27.0 230 280 33.7561995 -84.3384906 300000 +3.5 2797 6229 2018 28.0 181 42 33.7341489 -84.32444009999999 300000 +1.5 2010 13068 1959 30.0 144 280 33.858056899999994 -84.30156090000001 300000 +3.5 3798 10890 1996 33.0 276 13 33.840013299999995 -84.36630109999999 300000 +5.5 5368 30491 1935 34.0 333 280 33.8598018 -84.3437497 300000 +2.0 1449 1306 1970 37.0 28 280 33.601167 -84.475503 300000 +5.5 4700 17511 2018 37.0 255 280 33.8870766 -84.3638574 300000 +1.0 768 6969 2007 37.0 117 280 33.7556717 -84.4165112 300000 +2.5 1617 6969 2018 40.0 141 4 33.7202711 -84.31667209999999 300000 +4.5 2680 6969 2018 41.0 281 360 33.8049485 -84.387635 300000 +3.0 3635 21780 1925 41.0 323 280 33.8593726 -84.34576290000001 300000 +2.0 1356 871 1949 42.0 273 280 33.730382 -84.33249140000001 300000 +2.5 1410 52272 1976 53.0 156 280 33.681900399999996 -84.574013 300000 +3.0 2275 6969 2018 58.0 176 280 33.7129837 -84.3632208 300000 +3.0 2027 6969 2008 58.0 343 1102 33.8453162 -84.37153719999999 300000 +5.0 3523 8712 2017 61.0 284 280 33.75425429999999 -84.3084472 300000 +3.0 1604 13068 2001 63.0 131 50 33.720873299999994 -84.32254609999998 300000 +2.5 1777 6969 2017 63.0 95 49 33.6048013 -84.4442929 300000 +3.5 3665 17424 2017 65.0 271 280 33.8506877 -84.29397490000001 300000 +1.0 796 9234 1960 76.0 157 280 33.801922 -84.480068 300000 +3.0 3720 19558 1959 89.0 169 280 33.9353805 -84.40204109999999 300000 +3.0 2800 19602 1928 91.0 321 280 33.796443100000005 -84.36244040000001 300000 +3.0 3583 10410 1965 92.0 71 280 33.742367 -84.5211749 300000 +2.0 1776 6969 1955 93.0 115 280 33.6684649 -84.4001735 300000 +2.5 3832 40815 1972 96.0 151 280 33.955888 -84.374593 300000 +2.5 2239 6969 2017 103.0 152 42 33.707675 -84.308863 300000 +2.0 1657 7013 1920 104.0 374 280 33.7574442 -84.3757668 300000 +3.5 3080 6969 2017 104.0 252 250 33.914116 -84.383711 300000 +3.0 3444 13068 1962 110.0 127 280 33.8585952 -84.30051329999999 300000 +3.0 2900 49135 1961 112.0 259 280 33.840394 -84.362539 300000 +2.5 2768 16988 2005 112.0 91 46 33.6721076 -84.5823583 300000 +3.5 2010 6969 2018 121.0 303 195 33.7674408 -84.3706059 300000 +4.5 5257 19384 1998 121.0 79 63 33.72269420000001 -84.54633940000001 300000 +7.5 6883 165528 2004 126.0 580 280 33.899325700000006 -84.43178509999998 300000 +3.5 4400 6969 2008 132.0 676 280 33.8215601 -84.3882872 300000 +6.0 7681 39204 2006 138.0 345 280 33.7821851 -84.3397643 300000 +3.0 3955 19471 1920 140.0 151 280 33.8167948 -84.4653179 300000 +5.5 7083 21431 2008 142.0 352 280 33.8037618 -84.3555605 300000 +4.0 3236 48787 1972 146.0 162 280 33.9789184 -84.338655 300000 +2.0 1736 7840 1935 153.0 99 280 33.7298903 -84.4386207 300000 +1.5 1040 31363 1962 163.0 58 280 33.6666049 -84.629326 300000 +5.5 7200 21910 2016 182.0 302 280 33.8851154 -84.3990509 300000 +3.5 2819 6969 2015 216.0 816 150 33.7836468 -84.3829526 300000 +4.5 4837 23827 1997 219.0 258 280 33.8621521 -84.3661573 300000 +1.0 1170 12109 1949 257.0 321 280 33.874569 -84.37685490000001 300000 +1.0 1347 113256 1956 329.0 100 280 33.664611 -84.551194 300000 +7.5 7581 100187 1988 404.0 165 17 33.9815167 -84.3012569 300000 +1.0 1020 20037 1949 130.0 64 280 33.712855499999996 -84.44313259999998 300000 +2.5 2279 21780 1962 249.0 395 280 33.85843679999999 -84.340203 300000 +3.5 2213 6969 2017 75.0 229 280 33.846133 -84.332265 300000 +4.5 3700 6969 2017 186.0 256 280 33.8163677 -84.4653435 300000 +3.5 2285 6969 1989 54.5 245 280 33.9369881 -84.3632304 300000 +3.5 3511 6969 1989 54.5 162 280 33.917488899999995 -84.2956645 300000 +3.5 3050 6969 1989 54.5 191 280 33.9147357 -84.3842672 300000 +4.0 2941 6969 1989 54.5 84 280 33.630342999999996 -84.540346 300000 +2.5 1708 6969 1989 54.5 96 280 33.601890563965 -84.445846557617 300000 +2.0 2237 6969 1989 54.5 98 280 33.6812814 -84.5969232 300000 +1.5 1080 1926 1956 1.0 119 280 39.292477000000005 -76.521718 300000 +1.0 870 6969 1954 1.0 34 280 39.337502799999996 -76.5607801 300000 +1.0 920 6969 1923 1.0 38 280 39.2975415 -76.5708672 300000 +2.5 1295 6969 1900 2.0 224 280 39.2879093 -76.5905416 300000 +2.0 1224 1793 1910 2.0 274 280 39.2859033 -76.5741683 300000 +1.0 885 6969 2005 2.0 225 326 39.2755786 -76.61171209999999 300000 +2.0 1178 6969 1952 4.0 8 280 39.315481 -76.5684026 300000 +2.0 1454 6969 1948 4.0 78 280 39.359592299999996 -76.6010793 300000 +1.0 712 6969 1984 4.0 253 310 39.2803158 -76.6143336 300000 +2.5 1672 3410 1939 5.0 257 280 39.3774844 -76.6122814 300000 +1.5 1056 6969 1941 5.0 38 280 39.3457343 -76.6057421 300000 +5.0 2520 1307 1900 5.0 262 280 39.290867 -76.5906104 300000 +2.0 1980 1120 1920 6.0 174 280 39.2855498 -76.57088279999999 300000 +1.0 1200 6969 1900 9.0 200 280 39.328638 -76.63376600000001 300000 +1.0 1078 6969 1875 10.0 296 280 39.2702609 -76.5900239 300000 +2.5 1682 6969 2017 12.0 196 56 39.2818876 -76.5573555 300000 +2.0 1531 6969 1920 12.0 163 790 39.3357499 -76.6211255 300000 +4.5 3500 6969 1853 13.0 186 280 39.3061909 -76.6247813 300000 +2.5 1440 6969 1920 13.0 208 280 39.2848579 -76.5815197 300000 +2.0 1288 6969 1920 13.0 82 280 39.299059 -76.66193 300000 +2.5 1559 6969 1968 13.0 109 528 39.3519789 -76.6453395 300000 +1.5 1227 6165 1920 14.0 53 280 39.3443832 -76.6648014 300000 +3.0 2822 6969 1920 15.0 148 280 39.306903999999996 -76.6254359 300000 +2.5 1104 6247 1925 15.0 100 280 39.330943700000006 -76.55944670000001 300000 +1.0 728 6969 1900 17.0 295 280 39.2730581 -76.6094035 300000 +2.5 1749 6969 1968 17.0 85 351 39.3700833 -76.7110274 300000 +3.0 2466 1 1925 18.0 159 280 39.28901629999999 -76.7000958 300000 +2.0 2226 6969 2009 19.0 92 200 39.279807 -76.704955 300000 +1.0 1216 6969 1955 20.0 140 280 39.3681589 -76.5885307 300000 +2.0 1298 588 1920 21.0 215 280 39.286128000000005 -76.588151 300000 +1.0 1232 6969 1920 21.0 61 280 39.3246054 -76.60427320000001 300000 +1.0 912 828 1875 22.0 38 280 39.279127 -76.635791 300000 +2.0 1152 6969 1920 24.0 52 280 39.294880299999996 -76.66815770000001 300000 +1.0 1102 6969 1942 30.0 95 280 39.280494700000006 -76.700644 300000 +1.0 745 6969 2005 34.0 248 599 39.277128600000005 -76.60544209999999 300000 +1.5 1180 436 1940 34.0 122 280 39.2974221 -76.6792602 300000 +1.5 1360 1307 1924 39.0 73 280 39.2968727 -76.6761138 300000 +1.0 1584 6969 1930 40.0 25 280 39.351335999999996 -76.607731 300000 +2.0 1688 6969 1930 48.0 59 280 39.2949936 -76.6843308 300000 +3.5 2940 6969 2010 49.0 213 280 39.280547399999996 -76.57083309999999 300000 +3.0 1413 6969 2009 51.0 152 200 39.279619 -76.7049651 300000 +1.5 780 1827 1923 67.0 128 280 39.224145 -76.586985 300000 +2.5 1908 10030 1959 77.0 216 280 39.3767061 -76.67680159999999 300000 +1.5 1396 35898 1958 84.0 85 280 39.3275073 -76.5551988 300000 +2.5 1745 7148 1907 84.0 126 280 39.363287299999996 -76.61074509999999 300000 +1.0 960 6969 1920 84.0 72 280 39.2965014 -76.5731291 300000 +2.0 1372 6969 2007 100.0 208 280 39.273957200000005 -76.6097072 300000 +2.0 1336 6969 1919 103.0 52 280 39.293510999999995 -76.68313 300000 +1.0 1064 6969 1920 107.0 15 280 39.2988421 -76.6618239 300000 +2.0 1140 13068 1950 110.0 99 280 39.357248 -76.578942 300000 +3.5 3595 3683 2017 114.0 178 317 39.389857899999996 -76.66168590000001 300000 +3.5 1759 6969 2018 120.0 342 80 39.2717552 -76.59135440000001 300000 +2.0 1160 6969 1930 125.0 99 280 39.32377329999999 -76.5692097 300000 +2.5 1917 6969 2017 126.0 188 56 39.2818876 -76.5573555 300000 +3.0 1832 6969 1910 128.0 235 280 39.2859604 -76.5738075 300000 +1.0 1432 6969 1920 131.0 7 280 39.311319399999995 -76.6419015 300000 +1.0 1040 6969 1940 140.0 47 280 39.236449 -76.6051704 300000 +3.0 4824 6969 1907 146.0 80 280 39.3135 -76.637437 300000 +1.0 1392 871 1900 151.0 29 280 39.286632 -76.6306821 300000 +2.0 1200 6969 1938 155.0 63 280 39.3279196 -76.56467020000001 300000 +2.5 1989 6969 2007 158.0 372 1843 39.2804736 -76.6059791 300000 +2.5 1761 960 1920 166.0 129 280 39.2973165 -76.5884205 300000 +2.0 1211 6969 1903 170.0 124 733 39.3021734 -76.61572220000001 300000 +2.0 1148 6969 2008 179.0 239 403 39.288888299999996 -76.60945459999999 300000 +1.5 978 2178 1898 207.0 128 280 39.2809945 -76.6315163 300000 +1.5 1346 871 1900 209.0 186 280 39.2923775 -76.5816996 300000 +2.5 1168 6969 1920 210.0 325 280 39.281917799999995 -76.57890259999999 300000 +1.5 1890 14100 1939 226.0 53 280 39.296949 -76.6818982 300000 +2.0 1715 6246 1960 261.0 102 280 39.3641357 -76.5632547 300000 +2.0 1230 1393920 1900 265.0 63 280 39.278127500000004 -76.6289225 300000 +1.0 1220 1307 1938 284.0 160 280 39.3335147 -76.6038615 300000 +2.0 1594 7497 1930 329.0 91 280 39.2803331 -76.71007890000001 300000 +3.0 1188 6969 1942 335.0 105 280 39.279065700000004 -76.5363845 300000 +1.0 1048 5977 1893 349.0 181 280 39.374013 -76.6504735 300000 +3.5 2824 7650 1920 351.0 78 280 39.3185311 -76.67602609999999 300000 +2.0 2460 6969 1940 352.0 71 280 39.224575099999996 -76.59125809999999 300000 +2.0 1297 6969 1967 352.0 35 890 39.3621162 -76.6998558 300000 +1.0 1218 6969 1922 366.0 119 280 39.291211499999996 -76.5684691 300000 +3.0 2752 5270 2008 392.0 100 280 39.347047499999995 -76.6411986 300000 +2.5 2838 8100 1913 401.0 83 280 39.3300342 -76.68209859999999 300000 +2.0 1105 887 1915 630.0 144 280 39.288695000000004 -76.5568998 300000 +1.5 1088 4100 1985 965.0 55 280 39.339476899999994 -76.60747509999999 300000 +1.5 1372 10511 1959 9.0 147 280 37.5247765 -77.5131893 300000 +2.5 2828 19645 2003 14.0 118 280 37.4324069 -77.571278 300000 +2.5 1528 2517 2018 18.0 115 280 37.556717 -77.426827 300000 +2.5 2118 5401 1910 34.0 168 280 37.5704374 -77.4314927 300000 +2.5 1936 12458 1986 37.0 116 7 37.384618100000004 -77.4788758 300000 +3.0 2920 26876 1972 82.0 113 280 37.489699200000004 -77.6144333 300000 +2.0 2509 6969 2017 113.0 132 188 37.5756328 -77.48549399999999 300000 +4.5 5174 28401 1990 117.0 112 21 37.455543299999995 -77.5678078 300000 +3.5 4336 24999 2017 131.0 314 280 37.5678125 -77.53011120000001 300000 +2.0 1942 15594 1979 141.0 110 280 37.490159000000006 -77.582809 300000 +2.0 1688 21692 1979 163.0 107 280 37.4548731 -77.458836 300000 +4.0 3838 6721 2007 176.0 124 280 37.542243299999996 -77.5576688 300000 +2.5 2542 2125 1896 307.0 185 280 37.527233200000005 -77.4133738 300000 +2.5 2400 14374 2016 678.0 204 280 37.511293200000004 -77.5560558 300000 +2.0 1666 6969 1989 54.5 156 280 37.416359 -77.45886999999999 300000 +2.5 1564 6969 1989 54.5 131 280 37.5373258 -77.34534529999999 300000 +2.0 1036 6969 1972 1.0 75 517 25.9232018 -80.2071665 300000 +1.0 580 6969 1966 1.0 217 150 25.728089 -80.30291070000001 300000 +2.0 2035 15857 1979 1.0 280 280 25.649744600000002 -80.3789788 300000 +2.0 1400 6969 1980 1.0 114 375 25.9579859 -80.186031 300000 +3.5 2441 4866 1991 1.0 172 280 25.660740399999998 -80.4266104 300000 +1.5 1125 6969 1972 1.0 126 320 25.7753608 -80.3470565 300000 +2.0 1320 6969 1970 2.0 253 568 25.7498837 -80.2016068 300000 +3.0 1662 6969 2008 2.0 415 940 25.7700913 -80.1946615 300000 +1.5 787 6969 1983 2.0 198 280 25.667112699999997 -80.3756118 300000 +2.5 1876 6969 2014 3.0 175 35 25.676648 -80.46668690000001 300000 +2.5 2139 6969 2003 4.0 888 1957 25.759088000000002 -80.1918167 300000 +1.0 792 3600 1957 5.0 170 280 25.836319600000003 -80.227622 300000 +1.0 825 6969 2005 5.0 345 585 25.7619908 -80.19041870000001 300000 +4.0 4133 17769 1983 5.0 201 280 25.651843799999998 -80.3653865 300000 +2.0 1131 6969 1975 6.0 167 211 25.7729223 -80.3443905 300000 +3.0 2179 7500 1939 7.0 394 280 25.8409061 -80.1812075 300000 +2.0 1315 6969 1969 7.0 81 280 25.950972699999998 -80.16629640000001 300000 +4.0 3767 14324 2005 7.0 235 280 25.697135199999998 -80.3980912 300000 +1.0 1032 7452 1972 7.0 136 280 25.8527579 -80.2390995 300000 +3.0 2450 206474 1991 8.0 244 280 25.625366 -80.53672890000001 300000 +3.5 2293 6969 2001 8.0 783 1383 25.769323999999997 -80.183769 300000 +2.5 1462 6969 1998 8.0 161 129 25.6020687 -80.4178956 300000 +1.5 846 6969 2008 9.0 343 600 25.7700913 -80.1946615 300000 +2.0 1393 3703 1996 9.0 208 149 25.6055152 -80.4235025 300000 +3.0 2313 4926 1975 11.0 194 280 25.6909387 -80.38089240000001 300000 +2.0 1470 6969 1978 12.0 156 515 25.705061999999998 -80.37838 300000 +9.5 7454 38332 2012 13.0 670 280 25.682723 -80.28844000000001 300000 +2.0 1229 6969 1982 13.0 216 280 25.8380103 -80.18044429999999 300000 +3.5 2757 7875 1991 13.0 167 280 25.627932 -80.42802309999999 300000 +2.0 1274 6969 2015 13.0 389 280 25.7644398 -80.1952502 300000 +3.5 2431 9180 1961 14.0 148 280 25.6225169 -80.35501140000001 300000 +1.0 820 6969 2006 14.0 415 443 25.7596392 -80.1902581 300000 +1.5 669 6969 1983 14.0 224 125 25.751496 -80.366863 300000 +1.5 878 6969 2008 16.0 302 628 25.761032999999998 -80.194396 300000 +3.0 1137 6969 2017 19.0 879 898 25.8050525 -80.1855812 300000 +3.5 2597 7928 2002 19.0 168 280 25.6566244 -80.41139559999999 300000 +2.0 1580 10074 1961 20.0 158 280 25.5603514 -80.3653645 300000 +2.0 900 6969 2006 20.0 188 280 25.7897443 -80.2362272 300000 +2.0 1100 6969 1974 21.0 341 280 25.750841 -80.1998881 300000 +2.5 1499 1827 2000 22.0 195 59 25.675347600000002 -80.45900870000001 300000 +3.0 2852 15028 1960 22.0 261 280 25.645531 -80.311428 300000 +2.0 1476 5766 1962 23.0 352 280 25.7502704 -80.2999171 300000 +3.0 1380 6969 2016 23.0 659 280 25.759908300000003 -80.19829440000001 300000 +2.0 1255 6969 2008 25.0 474 820 25.7825067 -80.1901188 300000 +2.5 1594 6969 2006 25.0 423 1005 25.7596392 -80.1902581 300000 +1.0 738 6969 2008 27.0 461 627 25.7684475 -80.1913487 300000 +2.0 1197 6969 1975 27.0 146 461 25.9555638 -80.1888997 300000 +2.5 2300 6969 2005 27.0 326 335 25.734842 -80.242014 300000 +2.0 1252 6969 1953 28.0 315 280 25.8186573 -80.2261842 300000 +3.0 2759 33062 1958 28.0 542 280 25.6525143 -80.3024637 300000 +4.0 1438 6969 1926 28.0 330 280 25.839080300000003 -80.1853052 300000 +2.0 1087 6969 2008 28.0 322 616 25.7700913 -80.1946615 300000 +2.0 1600 6969 1978 30.0 344 280 25.733612899999997 -80.23563399999999 300000 +2.0 1181 6969 2008 30.0 356 864 25.8078394 -80.192227 300000 +2.5 2193 5502 1998 30.0 176 280 25.6342054 -80.43219570000001 300000 +1.0 758 6969 1986 31.0 231 180 25.7752355 -80.38273570000001 300000 +4.0 3177 6000 2005 33.0 157 50 25.7075302 -80.45961700000001 300000 +3.0 1488 6969 2002 33.0 534 880 25.768564 -80.18644499999999 300000 +2.5 1312 6900 1952 35.0 221 280 25.877934 -80.165966 300000 +2.0 1403 6969 2012 35.0 299 280 25.799735100000003 -80.1865257 300000 +2.0 1110 6969 2018 35.0 463 280 25.7907062 -80.1923857 300000 +2.0 900 6969 1997 36.0 211 215 25.624396899999997 -80.41094 300000 +3.0 2130 6969 2004 36.0 878 280 25.7603319 -80.189341 300000 +2.0 1121 6969 1985 36.0 133 340 25.9727341 -80.1849215 300000 +3.5 4257 43560 2005 37.0 329 280 25.6801407 -80.372346 300000 +3.5 2184 5850 1936 37.0 196 280 25.7626152 -80.2343315 300000 +1.0 1308 3600 1955 40.0 157 280 25.8370889 -80.222566 300000 +6.0 7074 36900 2017 40.0 281 280 25.707318899999997 -80.3564426 300000 +2.0 1492 4323 1981 40.0 188 281 25.6787621 -80.4357162 300000 +2.0 1159 6969 2007 41.0 344 884 25.8042161 -80.18648320000001 300000 +3.0 3113 12000 1979 41.0 148 280 25.9649437 -80.1866783 300000 +3.0 1807 8657 1959 41.0 230 280 25.7649936 -80.3250752 300000 +2.5 1140 6969 2017 42.0 412 580 25.7641113 -80.1977438 300000 +2.5 2223 3980 2013 43.0 200 382 25.9523161 -80.18557940000001 300000 +2.0 882 6969 2004 44.0 248 506 25.783757100000003 -80.2086978 300000 +1.0 845 6969 1965 44.0 136 205 25.947110000000002 -80.165852 300000 +1.0 806 6969 2008 44.0 310 573 25.776534100000003 -80.1888665 300000 +3.5 2629 6000 2003 45.0 163 280 25.6296997 -80.45075279999999 300000 +3.0 1494 6969 2017 48.0 736 280 25.7640137 -80.1912975 300000 +1.0 727 6969 2006 48.0 413 443 25.7678202 -80.1960753 300000 +1.0 791 6969 2007 49.0 424 486 25.792482 -80.187149 300000 +2.0 1169 6969 2005 49.0 418 603 25.7716366 -80.1858045 300000 +1.0 472 6969 2015 49.0 422 380 25.8156264 -80.18916290000001 300000 +2.0 1286 6135 1947 49.0 334 280 25.7434482 -80.2337215 300000 +1.0 1097 6450 1948 49.0 278 280 25.7690035 -80.29743570000001 300000 +1.0 630 6969 2006 50.0 413 280 25.7598741 -80.19068859999999 300000 +2.0 948 6969 1980 51.0 195 265 25.687767899999997 -80.445183 300000 +5.0 1973 6969 1925 51.0 342 280 25.7648285 -80.21503879999999 300000 +2.5 1704 6969 2003 51.0 176 170 25.7377285 -80.4412625 300000 +2.0 1405 6969 1982 51.0 100 499 25.959348000000002 -80.192053 300000 +2.0 1012 6969 2014 51.0 445 1022 25.760372 -80.190197 300000 +1.0 611 6969 1973 55.0 180 200 25.799169600000003 -80.2392619 300000 +4.0 1863 6969 2017 55.0 631 1244 25.8050525 -80.1855812 300000 +1.0 750 6969 2001 55.0 440 642 25.762183800000003 -80.18898859999999 300000 +3.0 2215 7500 1949 55.0 361 280 25.7412283 -80.2300062 300000 +1.0 821 6969 2008 56.0 353 503 25.792482 -80.187149 300000 +2.0 1289 6969 2006 58.0 380 700 25.768999899999997 -80.191845 300000 +2.5 1346 6969 1972 58.0 171 340 25.686984 -80.415003 300000 +2.0 1184 1 1954 61.0 162 280 25.8935064 -80.2298876 300000 +2.0 1134 6969 2016 62.0 626 986 25.762775 -80.192463 300000 +3.5 2580 6969 1997 63.0 793 1989 25.7555391 -80.1950766 300000 +1.0 793 6969 1974 63.0 415 431 25.731588000000002 -80.23811490000001 300000 +1.0 850 6969 1952 64.0 241 280 25.851108 -80.2305411 300000 +2.5 1647 6969 2009 64.0 424 1315 25.7851774 -80.1900783 300000 +1.5 865 6969 2008 64.0 289 450 25.776534100000003 -80.1888665 300000 +1.0 1285 6750 1941 68.0 331 280 25.766858600000003 -80.23577709999999 300000 +2.0 990 6969 1973 68.0 303 592 25.8097771 -80.1865475 300000 +1.0 539 6969 2000 68.0 342 238 25.7352724 -80.23836130000001 300000 +2.0 2237 15312 1970 69.0 215 280 25.633758800000003 -80.3439823 300000 +3.0 2713 5000 2004 75.0 158 280 25.6866461 -80.4588349 300000 +1.0 901 6969 2015 77.0 499 280 25.763223999999997 -80.193432 300000 +1.5 891 6969 1980 78.0 222 205 25.776443 -80.339694 300000 +2.0 1262 6969 1980 82.0 214 63 25.7002011 -80.3652342 300000 +2.0 2096 7650 1959 84.0 186 280 25.7305521 -80.35218359999999 300000 +1.0 860 6969 1965 84.0 140 280 25.9471081 -80.16728309999999 300000 +2.0 900 6969 2006 84.0 206 259 25.7899426 -80.2367071 300000 +4.0 2564 14668 1926 85.0 702 280 25.852878 -80.17535500000001 300000 +2.0 1060 6969 1978 85.0 189 351 25.6714415 -80.3749579 300000 +1.0 1149 6969 1972 85.0 126 379 25.7776617 -80.3452006 300000 +1.5 938 6969 2008 85.0 554 670 25.7834355 -80.19018100000001 300000 +1.0 980 6969 2004 89.0 274 408 25.80122 -80.186789 300000 +2.5 2372 5880 2005 89.0 188 280 25.754081 -80.44419090000001 300000 +1.0 696 6969 2008 89.0 352 519 25.794076899999997 -80.18707059999998 300000 +5.0 3344 5500 2014 92.0 148 31 25.679242000000002 -80.4684797 300000 +2.0 1006 6969 2008 93.0 337 815 25.776989999999998 -80.18879799999999 300000 +2.0 1404 6969 2017 93.0 556 950 25.764055 -80.1923013 300000 +2.5 1505 6969 2005 93.0 631 960 25.769050699999998 -80.187027 300000 +3.5 3000 7000 2018 94.0 242 280 25.7686931 -80.2479962 300000 +3.0 2292 4320 1987 96.0 174 280 25.7636777 -80.34381929999999 300000 +2.0 1829 6969 1940 96.0 185 280 25.796792 -80.22525999999999 300000 +2.0 1061 6969 2007 96.0 424 755 25.755381 -80.2075334 300000 +3.0 1440 6969 2002 97.0 198 240 25.6339214 -80.4134844 300000 +2.0 2127 23750 1942 97.0 118 280 25.5623943 -80.3807184 300000 +1.5 740 6969 1967 97.0 135 275 25.915573199999997 -80.1863887 300000 +2.0 1707 7500 1977 98.0 275 280 25.658762 -80.38032700000001 300000 +1.5 896 6969 2017 99.0 948 846 25.7581064 -80.1924028 300000 +3.0 2182 5000 1985 100.0 140 280 25.586994600000004 -80.38567619999999 300000 +1.0 1004 6013 1939 103.0 314 280 25.8505184 -80.1921052 300000 +1.5 868 6969 1998 105.0 200 280 25.778973999999998 -80.325325 300000 +2.0 1679 7100 1952 107.0 223 280 25.7582801 -80.2313074 300000 +2.5 1262 6969 2017 107.0 871 102 25.7581064 -80.1924028 300000 +1.0 688 6969 1964 109.0 94 302 25.9297265 -80.1736926 300000 +2.0 1748 6969 1945 111.0 280 280 25.8779674 -80.1925017 300000 +2.0 1368 15017 1956 113.0 416 280 25.648840399999997 -80.3273817 300000 +2.0 1116 6969 2004 114.0 322 631 25.7620552 -80.1935173 300000 +3.0 1428 7140 1957 114.0 389 280 25.8452625 -80.1800304 300000 +6.0 4600 17969 2017 118.0 261 280 25.744643 -80.37234709999998 300000 +2.0 1460 6969 1974 119.0 394 980 25.750841 -80.1998881 300000 +3.0 1041 6969 2007 120.0 316 700 25.7758982 -80.1900667 300000 +2.0 1139 6969 2014 120.0 716 1007 25.760372 -80.190197 300000 +2.0 1132 6969 1966 121.0 132 334 25.945476 -80.17153990000001 300000 +1.0 540 6969 2008 121.0 444 487 25.771281899999998 -80.1876583 300000 +1.5 782 6969 1969 121.0 326 500 25.7491305 -80.2018126 300000 +2.5 2011 5632 1984 124.0 259 280 25.678918499999998 -80.39660190000001 300000 +2.5 1229 6969 2017 125.0 689 779 25.805065399999997 -80.18623690000001 300000 +3.5 3050 8525 1950 125.0 410 280 25.856857 -80.174875 300000 +2.0 1030 6969 2008 125.0 374 720 25.770455399999996 -80.1942628 300000 +4.0 2312 6969 2015 125.0 172 45 25.677850699999997 -80.4717155 300000 +3.0 2061 6000 1936 126.0 305 280 25.84158 -80.180634 300000 +4.5 2543 6969 2017 126.0 904 1565 25.7655385 -80.19382759999999 300000 +1.0 588 6969 1937 128.0 372 280 25.7882508 -80.22505129999999 300000 +4.5 3340 11342 1952 131.0 509 280 25.7443741 -80.22030190000001 300000 +2.0 1775 7500 1953 132.0 214 280 25.7392409 -80.3019631 300000 +3.5 2650 8418 1976 133.0 179 280 25.7548363 -80.39983050000001 300000 +1.5 651 6969 2007 134.0 295 430 25.7758982 -80.1900667 300000 +3.0 2204 6969 1945 135.0 154 280 25.771427499999998 -80.28597459999999 300000 +2.0 1012 7500 1957 141.0 246 280 25.9716418 -80.1819922 300000 +2.5 2037 3705 1980 142.0 167 75 25.756795999999998 -80.410922 300000 +3.5 1443 6969 2017 142.0 676 280 25.765689899999998 -80.1939008 300000 +3.0 1537 6969 1939 142.0 357 280 25.7519967 -80.2274913 300000 +1.0 1176 6969 2008 142.0 259 744 25.776534100000003 -80.1888665 300000 +2.0 1203 6969 2008 146.0 665 911 25.776989999999998 -80.18879799999999 300000 +8.5 6858 40249 1998 148.0 408 280 25.6849964 -80.3008095 300000 +1.5 930 6969 1975 148.0 296 522 25.750841 -80.1998881 300000 +2.0 1105 6969 2005 148.0 412 636 25.7619908 -80.19041870000001 300000 +4.0 2670 6969 1955 148.0 224 280 25.808429399999998 -80.23799100000001 300000 +2.5 1440 6969 1981 152.0 590 830 25.790529199999998 -80.17898790000001 300000 +2.0 1095 8062 1936 154.0 160 280 25.874685600000003 -80.2139835 300000 +1.0 783 6969 2016 155.0 562 605 25.762775 -80.192463 300000 +2.0 985 6969 2007 156.0 277 357 25.756245 -80.238777 300000 +2.0 2377 6969 1973 157.0 229 280 25.747717 -80.220534 300000 +4.0 4198 6969 2008 159.0 1167 2592 25.7825067 -80.1901188 300000 +8.5 9912 46609 2014 159.0 499 280 25.6770871 -80.3167407 300000 +2.0 1430 6969 1983 160.0 769 1504 25.789950199999996 -80.1743516 300000 +3.0 2627 6037 1984 166.0 169 280 25.7624935 -80.34265429999999 300000 +2.5 1276 6969 2017 170.0 650 280 25.7655385 -80.19382759999999 300000 +2.0 1895 7875 1976 175.0 221 280 25.758636 -80.3409148 300000 +2.0 931 6969 2015 183.0 478 561 25.763223999999997 -80.193432 300000 +4.5 3730 6969 2003 191.0 999 3905 25.759088000000002 -80.1918167 300000 +3.5 2394 6969 2007 205.0 459 1063 25.782179199999998 -80.2123712 300000 +2.0 1140 6969 1968 207.0 122 563 25.9458736 -80.1748132 300000 +2.0 1390 6969 1986 210.0 385 280 25.791316000000002 -80.1861552 300000 +2.0 2381 11700 1977 211.0 174 79 25.668685600000003 -80.4092739 300000 +5.5 8042 6969 2009 212.0 1728 6475 25.784992300000003 -80.1903593 300000 +1.0 1281 6250 1925 218.0 371 280 25.8347385 -80.1867001 300000 +2.0 980 6969 2017 219.0 611 280 25.765689899999998 -80.1939008 300000 +2.0 1404 7800 1954 225.0 260 280 25.718756 -80.3427423 300000 +3.0 2167 6969 2017 230.0 683 280 25.764055 -80.1923013 300000 +2.0 1353 6969 1972 231.0 163 902 25.8796349 -80.16438740000001 300000 +5.0 3956 16860 1966 236.0 253 280 25.6707051 -80.309929 300000 +2.0 1181 6969 2008 238.0 372 829 25.8078394 -80.192227 300000 +1.0 692 6969 2008 240.0 389 458 25.8000517 -80.1886459 300000 +1.0 806 6969 2008 245.0 378 280 25.776989999999998 -80.18879799999999 300000 +3.0 1544 6969 2010 247.0 440 1086 25.769548999999998 -80.195165 300000 +1.0 876 6969 2009 250.0 502 733 25.7686625 -80.188727 300000 +4.5 5078 27225 1993 252.0 217 280 25.7412475 -80.41861209999999 300000 +2.0 800 6969 1974 253.0 138 225 25.582241 -80.37606 300000 +2.5 1655 6969 1997 254.0 526 1215 25.7679508 -80.186447 300000 +2.0 1263 6969 2008 260.0 499 280 25.8078394 -80.192227 300000 +3.0 2713 5000 2004 266.0 155 280 25.686464899999997 -80.458274 300000 +2.5 1203 6969 2017 268.0 648 788 25.8050525 -80.1855812 300000 +1.0 716 6969 1985 271.0 306 149 25.727219 -80.24482840000002 300000 +2.0 1386 6969 2009 273.0 476 1590 25.7686625 -80.188727 300000 +2.5 1255 6969 2008 273.0 518 280 25.7825067 -80.1901188 300000 +2.0 1373 6969 2008 274.0 283 1004 25.8078394 -80.192227 300000 +2.0 1200 6969 2008 286.0 350 280 25.7684475 -80.1913487 300000 +4.0 1898 6969 2017 286.0 738 1244 25.8050525 -80.1855812 300000 +1.0 1290 6148 1938 294.0 87 280 25.8331706 -80.2127832 300000 +2.0 931 6969 2015 295.0 628 592 25.763223999999997 -80.193432 300000 +3.0 3794 39640 1989 301.0 244 280 25.5572273 -80.4898011 300000 +2.5 1878 6969 2004 301.0 932 1541 25.7603319 -80.189341 300000 +1.0 977 7500 1980 306.0 383 280 25.7387666 -80.2981213 300000 +2.0 1169 6969 2005 306.0 385 626 25.7717266 -80.1854236 300000 +3.0 1700 6969 1990 307.0 382 498 25.727731 -80.24122 300000 +1.0 481 6969 2007 307.0 518 280 25.774801999999998 -80.1881439 300000 +2.0 1163 6969 2008 309.0 365 280 25.8129241 -80.1921488 300000 +3.0 2610 4376 1994 311.0 161 350 25.970350699999997 -80.1971068 300000 +1.5 777 6969 2014 316.0 448 750 25.760372 -80.190197 300000 +3.0 1971 5219 1987 316.0 242 280 25.7028929 -80.36199350000001 300000 +2.0 2800 81021 1980 327.0 175 280 25.5787045 -80.4840756 300000 +3.5 1595 6969 2017 341.0 596 1179 25.8087134 -80.19209690000001 300000 +2.5 1457 6969 2020 348.0 540 355 25.8013513 -80.1961915 300000 +1.0 660 6969 1965 349.0 114 189 25.949987 -80.19515799999999 300000 +2.0 1099 6969 2008 357.0 445 700 25.762752 -80.19466899999999 300000 +2.0 1256 6969 2004 368.0 572 916 25.760602 -80.1912562 300000 +1.0 791 6969 2004 371.0 499 520 25.752229999999997 -80.1987521 300000 +2.5 1168 6969 2008 382.0 338 971 25.794076899999997 -80.18707059999998 300000 +3.0 1710 6969 2017 383.0 614 1450 25.762775 -80.192463 300000 +1.5 983 6969 2003 385.0 507 1100 25.7588505 -80.1922125 300000 +2.0 986 6969 2008 406.0 436 589 25.765005 -80.190166 300000 +3.0 2580 12600 1968 435.0 386 280 25.956242800000002 -80.15260529999999 300000 +3.5 2627 6969 2008 455.0 912 280 25.7692643 -80.18584990000001 300000 +2.5 2044 6969 2008 455.0 773 1100 25.769079 -80.188602 300000 +2.0 1303 6969 2002 457.0 406 280 25.768564 -80.18644499999999 300000 +3.5 2510 6969 1999 462.0 717 1336 25.768688600000004 -80.1831816 300000 +1.0 774 6969 2008 481.0 469 463 25.765005 -80.190166 300000 +2.0 1220 6969 1981 492.0 130 500 25.9540338 -80.1825979 300000 +1.0 540 6969 2015 523.0 498 320 25.763223999999997 -80.193432 300000 +4.5 3586 8616 2002 541.0 467 775 25.9543003 -80.1717036 300000 +3.0 1950 6969 1975 568.0 133 1330 25.8809865 -80.1623188 300000 +2.0 1280 6969 2007 631.0 351 850 25.809496 -80.19204350000001 300000 +6.5 6300 6969 1997 634.0 1825 4709 25.7555391 -80.1950766 300000 +2.0 1496 6969 1986 644.0 351 952 25.791316000000002 -80.1861552 300000 +1.0 550 6969 1980 659.0 273 650 25.790106899999998 -80.1857426 300000 +1.0 503 6969 2008 679.0 463 309 25.792482 -80.187149 300000 +2.0 1248 6969 2003 686.0 240 598 25.7800842 -80.2768697 300000 +2.0 1128 6969 2010 817.0 610 982 25.7965383 -80.1882911 300000 +1.5 1087 6969 2001 866.0 497 450 25.769296399999998 -80.1837068 300000 +4.5 4119 6969 1989 54.5 123 280 25.603336499999997 -80.4368988 300000 +2.0 1133 8756 1994 1.0 102 280 28.517233 -81.487336 300000 +2.5 1659 3120 2006 1.0 136 237 28.477709 -81.252317 300000 +2.0 583 583 1985 1.0 232 506 28.456620299999997 -81.4680636 300000 +2.0 1311 6839 1977 1.0 152 15 28.402019 -81.40967540000001 300000 +2.0 1056 7570 1984 1.0 159 17 28.564034999999997 -81.281313 300000 +2.0 1283 10126 1953 4.0 124 280 28.561312 -81.453476 300000 +1.0 1361 10003 1948 4.0 125 280 28.554598499999997 -81.49759449999999 300000 +2.0 1152 44281 2000 5.0 65 280 28.564437400000003 -81.0967853 300000 +2.5 3154 6927 2005 5.0 97 123 28.353945 -81.345807 300000 +1.5 1040 8800 1971 5.0 120 280 28.574195 -81.438098 300000 +3.0 2796 10255 1925 5.0 250 280 28.549735 -81.3691786 300000 +2.5 2345 20395 2005 5.0 126 25 28.5055608 -81.4666478 300000 +8.0 7021 53506 2008 8.0 327 51 28.4649359 -81.51476740000001 300000 +2.5 1515 5000 1986 8.0 175 35 28.514286199999997 -81.3382118 300000 +3.5 2965 5970 2004 12.0 182 59 28.568176899999997 -81.3356226 300000 +2.5 1695 5383 2001 12.0 171 43 28.367507500000002 -81.3430891 300000 +2.0 1460 6969 1987 14.0 168 420 28.508188 -81.3628559 300000 +4.0 2340 1067 2006 16.0 205 57 28.56826 -81.328163 300000 +3.0 2256 6219 1955 20.0 186 280 28.5313061 -81.3627122 300000 +2.0 1509 6828 1957 22.0 99 280 28.5013804 -81.40083059999999 300000 +2.0 2277 6146 1920 22.0 233 280 28.5547448 -81.3696941 300000 +4.0 3639 8446 2004 25.0 110 55 28.463530300000002 -81.2667459 300000 +3.0 1876 10843 1947 27.0 200 280 28.5177729 -81.37390359999999 300000 +4.5 4427 14778 1977 27.0 164 45 28.5589186 -81.411865 300000 +2.0 1746 8804 1943 28.0 229 280 28.539888800000003 -81.3552596 300000 +1.0 1440 7698 1935 28.0 257 280 28.5514957 -81.3669878 300000 +3.0 3013 19741 1925 28.0 259 280 28.590665500000004 -81.3853284 300000 +2.0 1512 87256 2007 29.0 158 280 28.579300899999996 -81.1034667 300000 +3.5 2162 1540 2018 30.0 177 281 28.371291999999997 -81.260694 300000 +2.5 1485 71604 1991 35.0 104 45 28.512377 -81.304716 300000 +2.0 1832 9385 1951 36.0 251 280 28.5803262 -81.36788990000001 300000 +2.0 1448 4110 1995 38.0 131 16 28.613597600000002 -81.45019350000001 300000 +2.0 975 83466 1963 39.0 234 280 28.5441283 -81.3765806 300000 +4.5 6252 26159 1982 39.0 414 50 28.454318100000005 -81.5159777 300000 +4.0 4850 74160 1983 39.0 175 4 28.488299100000003 -81.47145259999999 300000 +2.5 1788 2907 2007 42.0 131 86 28.519458 -81.154938 300000 +1.0 885 4997 2000 47.0 104 280 28.508601000000002 -81.47144399999999 300000 +3.5 1902 2335 2018 47.0 145 204 28.599179 -81.274355 300000 +3.0 2806 7892 2000 48.0 113 20 28.362556400000003 -81.39479759999999 300000 +1.0 621 8897 2002 56.0 185 280 28.347776500000002 -81.51560690000001 300000 +2.0 583 583 1985 57.0 183 534 28.456620299999997 -81.4680636 300000 +1.0 671 671 2008 65.0 259 575 28.456615999999997 -81.462615 300000 +2.5 1936 2712 2003 74.0 201 325 28.558574 -81.332022 300000 +5.0 3998 6526 2003 75.0 180 208 28.4450043 -81.492577 300000 +1.0 550 550 1990 79.0 127 351 28.399739299999997 -81.46587559999999 300000 +3.5 3642 8750 2018 82.0 160 130 28.42809 -81.22496 300000 +3.0 2582 7565 2004 83.0 131 76 28.5239808 -81.2124223 300000 +2.0 868 2117 1984 84.0 101 48 28.581561999999998 -81.44449499999999 300000 +2.0 1800 6499 2017 90.0 194 280 28.521380999999998 -81.351351 300000 +1.0 962 1000 1972 90.0 69 210 28.574498 -81.4557993 300000 +2.5 2571 13169 1925 90.0 282 280 28.585155199999996 -81.3733882 300000 +2.5 1774 12360 1981 91.0 152 280 28.5871404 -81.2717353 300000 +2.0 1076 4091 1966 98.0 129 280 28.556561 -81.3474613 300000 +6.0 4548 11221 1971 106.0 297 280 28.5650755 -81.3635512 300000 +2.5 2575 32883 2005 106.0 306 1046 28.5410606 -81.3704458 300000 +2.5 2926 10627 2017 112.0 147 4 28.517574 -81.073369 300000 +2.5 2648 7200 2011 113.0 155 68 28.437671 -81.5564933 300000 +4.5 5282 45910 2017 121.0 291 166 28.398458 -81.230876 300000 +2.5 2287 5247 2014 121.0 164 101 28.491936499999998 -81.4476189 300000 +2.0 2236 6640 2015 123.0 180 48 28.3886115 -81.3425412 300000 +2.0 1331 8855 1960 130.0 118 280 28.5664918 -81.46868559999999 300000 +4.0 4238 17348 2005 131.0 156 175 28.3989837 -81.20682640000001 300000 +3.0 1997 12936 1991 137.0 128 280 28.370255199999995 -81.35869659999999 300000 +2.5 2419 4265 2013 147.0 145 93 28.4875055 -81.44692909999999 300000 +3.0 2497 12409 1992 159.0 164 33 28.4808338 -81.4935205 300000 +1.0 1230 11469 1954 162.0 102 280 28.523171899999998 -81.4211806 300000 +2.0 1350 6729 2017 163.0 117 280 28.534512 -81.445584 300000 +3.0 1459 1307 2007 167.0 120 574 28.348960499999997 -81.5043055 300000 +3.5 3186 13480 1987 195.0 196 280 28.507881400000002 -81.3827515 300000 +4.5 3030 5500 2004 209.0 112 95 28.531317600000005 -81.156596 300000 +1.0 1116 8620 1960 213.0 157 280 28.5198028 -81.29031359999999 300000 +6.5 5962 21129 2008 421.0 502 498 28.410443 -81.2581212 300000 +3.0 3150 17595 1972 546.0 101 50 28.451803 -81.51185190000001 300000 +2.0 1200 1200 2006 642.0 204 631 28.389813 -81.481758 300000 +3.5 2515 6969 2018 22.0 126 280 28.4277 -81.2186 300000 +2.5 2183 6969 2018 47.0 191 280 28.3706533 -81.2493874 300000 +3.0 2308 6969 2017 85.0 199 280 28.372196000000002 -81.249998 300000 +3.5 2395 6969 2017 186.0 170 280 28.371237 -81.259997 300000 +3.0 2261 6969 2017 221.0 144 280 28.3850494 -81.3461267 300000 +2.0 1360 6969 1989 54.5 179 280 28.364744199999997 -81.2383225 300000 +3.5 3509 6969 1989 54.5 172 280 28.408540000000002 -81.504307 300000 +2.5 2029 6969 1989 54.5 132 280 28.36614 -81.36232 300000 +2.5 1961 6969 1989 54.5 121 280 28.36614 -81.36232 300000 +4.5 3773 6969 1989 54.5 111 280 28.419708 -81.1903207 300000 +2.5 2198 6969 1989 54.5 139 280 28.427715600000003 -81.21858940000001 300000 +2.5 2468 6969 1989 54.5 172 280 28.369961199999995 -81.2324135 300000 +3.0 2489 6969 1989 54.5 150 280 28.433101500000003 -81.55989179999999 300000 +2.0 2188 6969 1989 54.5 156 280 28.370506 -81.259741 300000 +3.5 3666 6969 1989 54.5 133 280 28.607770000000002 -81.22409 300000 +2.5 3811 6969 1989 54.5 108 280 28.594762 -81.116404 300000 +2.0 2333 6969 1989 54.5 124 280 28.354215999999997 -81.323601 300000 +2.5 2199 6969 1989 54.5 225 280 28.4099968 -81.5338032 300000 +3.5 3029 6969 1989 54.5 123 280 28.4042869 -81.2461775 300000 +2.5 2000 6969 1989 54.5 152 280 28.356211 -81.325802 300000 +2.0 1828 6969 1989 54.5 150 280 28.351484999999997 -81.324031 300000 +3.0 2108 6969 1989 54.5 145 280 28.36954 -81.3301939 300000 +4.0 2622 6969 2018 1.0 133 78 35.8400516 -78.5537551 300000 +4.0 3780 3484 2003 1.0 127 426 35.907111900000004 -78.7917358 300000 +3.0 3644 6098 2007 1.0 84 50 35.8652969 -78.51961 300000 +5.0 3437 10890 2005 1.0 147 65 35.9263166 -78.5599411 300000 +2.0 2417 6969 1925 5.0 290 280 35.772153499999995 -78.6509763 300000 +5.0 4145 10454 2005 5.0 145 69 35.9258735 -78.5599189 300000 +3.0 3175 14374 2007 6.0 142 42 35.6752459 -78.6668655 300000 +4.0 2577 6534 2007 12.0 85 13 35.725992 -78.5397982 300000 +2.0 2014 36590 2006 12.0 91 280 35.606537100000004 -78.6483178 300000 +8.0 8698 140698 2005 17.0 213 223 35.9466323 -78.6973725 300000 +3.0 2509 6969 2005 20.0 104 35 35.802601 -78.5461432 300000 +2.0 1389 7840 1997 26.0 180 280 35.869810799999996 -78.72789209999999 300000 +2.0 1510 6969 2005 27.0 281 412 35.7759185 -78.63856159999999 300000 +4.0 4240 58370 2007 27.0 177 95 35.9812376 -78.68131170000001 300000 +3.0 2335 6098 2008 28.0 94 33 35.720191 -78.5403307 300000 +5.0 6044 21780 2005 33.0 296 280 35.8092268 -78.66072779999999 300000 +3.0 4032 64033 2000 41.0 115 280 35.8881968 -78.5087746 300000 +4.0 2281 1742 2014 42.0 208 237 35.831613 -78.640804 300000 +4.0 3000 9147 2018 50.0 105 150 35.865303499999996 -78.5179182 300000 +3.0 2416 10890 2018 52.0 207 21 35.8679446 -78.7292143 300000 +4.0 2364 1742 2014 56.0 201 237 35.8303984 -78.6410041 300000 +2.0 1584 57063 1996 58.0 133 280 35.603475599999996 -78.6258873 300000 +3.0 1740 5662 2018 59.0 252 280 35.776889399999995 -78.61975799999999 300000 +3.0 2638 30056 2018 111.0 182 40 35.7151500790869 -78.68561895688241 300000 +1.0 1024 135036 1956 118.0 254 280 35.708946000000005 -78.712687 300000 +7.0 5115 42688 2017 147.0 320 100 35.9179038243927 -78.625989547331 300000 +4.0 3846 53143 2007 232.0 120 17 35.7340047 -78.46615859999999 300000 +4.0 2972 10759 2017 250.0 113 40 35.779602000000004 -78.53367390000001 300000 +3.0 1478 6969 2017 253.0 250 340 35.76851370000001 -78.6818821 300000 +3.0 1609 9583 1950 267.0 309 280 35.7987746 -78.65434570000001 300000 +6.0 7161 75358 2002 286.0 154 133 35.9237785 -78.6167387 300000 +4.0 3802 39988 2016 349.0 184 280 35.918215000000004 -78.685799 300000 +3.0 2420 14374 1950 353.0 252 280 35.8100662 -78.6757507 300000 +3.5 2806 6969 2017 379.0 160 280 35.860219 -78.53945329999999 300000 +3.5 3694 6969 1989 54.5 154 280 35.7469 -78.7257 300000 +3.5 3725 6969 1989 54.5 199 280 35.883642 -78.679978 300000 +2.5 1836 6969 1989 54.5 148 280 35.915634999999995 -78.812061 300000 +3.5 3667 6969 1989 54.5 121 280 35.64258 -78.69790400000001 300000 +3.5 3208 6969 1989 54.5 190 280 35.9572 -78.6785 300000 +3.5 3112 6969 1989 54.5 180 280 35.883487 -78.6896181 300000 +5.0 4006 11325 2016 3.0 198 50 35.7966086 -78.9053625 300000 +3.0 3000 3920 2013 13.0 147 88 35.832825299999996 -78.9120054 300000 +5.0 5308 9278 2006 19.0 154 83 35.796553499999995 -78.8111641 300000 +5.0 5100 29185 1999 26.0 141 58 35.7147468 -78.79965809999999 300000 +3.0 2642 5575 2018 49.0 151 65 35.8559891743025 -78.8969884695198 300000 +5.0 3930 10890 1999 55.0 184 31 35.803764 -78.8248449 300000 +3.0 2058 5662 2017 121.0 206 148 35.819057 -78.876021 300000 +6.0 4617 16988 2017 125.0 259 154 35.8063735961914 -78.78053283691409 300000 +3.0 2536 9539 2017 144.0 192 78 35.7144243 -78.7857813 300000 +3.0 3244 6969 2006 151.0 143 220 35.7030966 -78.79000970000001 300000 +3.0 1878 13068 1984 160.0 160 280 35.777896500000004 -78.8178016 300000 +4.0 4700 4791 1985 177.0 174 300 35.742436 -78.797375 300000 +5.0 3552 5052 2017 240.0 151 130 35.753880923137295 -78.752769520591 300000 +3.0 2661 6534 2017 242.0 165 102 35.77463902732121 -78.87400872652391 300000 +3.0 2695 2178 2017 270.0 130 145 35.747696999999995 -78.731033 300000 +4.0 3517 9147 2017 417.0 171 77 35.768580798380796 -78.8912846102031 300000 +3.0 1851 6969 2018 43.0 184 280 35.822563 -78.913038 300000 +3.5 2761 6969 2017 117.0 167 280 35.7467 -78.7793 300000 +4.0 3635 6969 2017 159.0 154 280 35.787565 -78.898938 300000 +2.5 3695 6969 1989 54.5 128 280 35.754221 -78.753219 300000 +2.5 2744 6969 1989 54.5 154 280 35.8078266 -78.8783661 300000 +4.0 3590 6969 1989 54.5 166 280 35.661663399999995 -78.761379 300000 +3.0 2884 6969 1989 54.5 180 280 35.686382 -78.756043 300000 +3.0 2711 6969 1989 54.5 198 280 35.8454982 -78.910967 300000 +3.5 3320 6969 1989 54.5 151 280 35.8068 -78.8835 300000 +3.5 4020 6969 1989 54.5 184 280 35.7166 -78.8001 300000 +6.0 4301 6969 1989 54.5 140 280 35.759851 -78.836775 300000 +2.5 3002 6969 1989 54.5 135 280 35.820395399999995 -78.92521070000001 300000 +2.5 2004 6969 1989 54.5 161 280 35.803114 -78.804877 300000 +2.5 3112 6969 1989 54.5 158 280 35.76867120000001 -78.8902647 300000 +3.5 3009 6969 1989 54.5 166 280 35.7851315 -78.90269959999999 300000 +3.0 3113 6969 1989 54.5 158 280 35.785131400000004 -78.90272519999999 300000 +3.0 2651 32016 1965 6.0 198 280 35.978618100000006 -78.943519 300000 +1.0 1318 20908 1983 6.0 153 280 35.9194745 -78.8954268 300000 +3.0 2777 50747 1974 24.0 119 280 36.0904174 -78.8875688 300000 +4.0 2039 2613 2018 26.0 152 160 35.924151 -78.7801 300000 +3.0 2174 4443 2012 27.0 131 30 35.868466 -78.853693 300000 +3.0 1917 6969 1998 34.0 130 52 35.975840500000004 -78.8158104 300000 +3.0 2395 21823 2018 40.0 150 67 36.091935 -78.909712 300000 +3.0 2238 5227 2018 40.0 148 110 35.9135117 -78.93815959999999 300000 +3.0 2977 32234 2018 113.0 172 48 36.0504 -78.9561 300000 +3.0 4769 15638 1962 128.0 88 280 35.9876144 -78.9318517 300000 +3.0 3731 26571 1987 153.0 131 280 35.950921 -78.93956379999999 300000 +4.0 2322 13285 2017 168.0 280 280 35.989682 -78.932105 300000 +4.0 5252 75358 1997 237.0 162 36 36.040578499999995 -78.95147309999999 300000 +3.5 2746 6969 2018 7.0 133 280 35.93951 -78.85718100000001 300000 +3.0 2310 6969 2018 36.0 140 280 35.890683 -78.95839699999999 300000 +2.0 1624 6969 2017 90.0 216 280 35.911945 -78.959395 300000 +3.5 2570 6969 2017 235.0 177 280 35.911945 -78.959395 300000 +2.5 2043 6969 1989 54.5 177 280 35.911945 -78.959395 300000 +2.0 1951 6969 1989 54.5 183 280 35.911945 -78.959395 300000 +3.0 2941 6534 2000 1.0 178 34 35.888743100000006 -79.07101540000001 300000 +5.0 3772 11935 2000 2.0 183 244 35.83585 -79.0338 300000 +7.0 5170 11325 1996 6.0 121 323 35.846494299999996 -79.04186120000001 300000 +5.0 4864 87120 2017 10.0 154 280 35.909048999999996 -79.181184 300000 +2.0 1258 60548 1984 12.0 203 280 36.024503 -79.039738 300000 +4.0 3802 16639 2003 13.0 151 83 35.7804297 -79.05993740000001 300000 +3.0 3132 4356 2007 22.0 191 82 35.9438941 -79.0895936 300000 +4.0 3875 13068 2017 26.0 187 336 35.841089000000004 -79.060908 300000 +3.0 3114 13460 1997 28.0 160 244 35.835982200000004 -79.0349533 300000 +5.0 4973 13503 2007 29.0 131 336 35.841787 -79.0609526 300000 +5.0 5522 22651 2005 56.0 136 54 35.9118828 -79.007699 300000 +3.0 2164 3833 2018 62.0 155 130 35.817433839057706 -79.1092611808674 300000 +3.0 2028 5227 2018 63.0 130 35 35.9460661189121 -78.9989940169816 300000 +4.0 4172 121968 1908 259.0 839 280 35.9198485 -79.04656259999999 300000 +5.0 4914 28314 1996 394.0 114 244 35.845636299999995 -79.0490126 300000 +5.0 2895 8276 1995 1321.0 159 432 35.8470749 -79.040521 300000 +3.0 2860 6969 2018 47.0 145 280 35.821742 -79.11320400000001 300000 +2.0 1904 6969 2018 47.0 200 280 35.827044 -79.12418199999999 300000 +2.5 2038 6969 1989 54.5 149 280 35.8292954 -79.10215240000001 300000 +3.0 2584 6969 1989 54.5 160 280 35.8292954 -79.10215240000001 300000 +2.5 1760 6969 1989 54.5 156 280 35.8292954 -79.10215240000001 300000 +2.5 2735 6969 1989 54.5 137 280 35.8292954 -79.10215240000001 300000 +2.5 2198 6969 1989 54.5 156 280 35.818184 -79.1084652 300000 +3.0 2066 6969 1989 54.5 192 280 35.8292954 -79.10215240000001 300000 +4.0 3192 6969 1993 2.0 136 280 30.3235271 -81.592687 300000 +3.0 2355 6969 2018 2.0 130 50 30.111708 -81.520581 300000 +2.0 2116 6969 1906 4.0 77 280 30.3376317 -81.6507302 300000 +2.0 1178 6969 2001 4.0 125 291 30.257681899999994 -81.5398089 300000 +2.0 2240 6969 2016 5.0 138 65 30.458040899999997 -81.53380240000001 300000 +2.5 2341 6969 2007 6.0 115 258 30.128534100000003 -81.5070023 300000 +3.0 2511 6969 2018 6.0 94 42 30.356977399999998 -81.7695497 300000 +2.0 1731 6969 1958 7.0 95 280 30.3174201 -81.7106683 300000 +1.0 828 6969 1955 7.0 42 280 30.3785538 -81.7016804 300000 +2.0 1938 6969 1977 7.0 143 280 30.1406777 -81.6254069 300000 +2.0 2600 6969 1999 8.0 131 13 30.171001399999998 -81.6353286 300000 +2.5 2667 6969 1969 9.0 104 4 30.367703000000002 -81.5816615 300000 +2.5 2520 6969 2018 9.0 151 67 30.287694976981 -81.449464999666 300000 +2.0 2270 6969 2003 12.0 97 33 30.3300169 -81.8497813 300000 +4.5 4314 6969 2018 12.0 298 275 30.253126 -81.443928 300000 +1.0 810 6969 1966 13.0 99 280 30.231118100000003 -81.72518000000001 300000 +2.0 1863 6969 2018 22.0 113 7 30.45621 -81.76475 300000 +2.0 2528 6969 2015 22.0 232 8 30.293131 -81.47699899999999 300000 +2.0 1429 6969 1973 27.0 28 375 30.326779 -81.577759 300000 +1.0 952 6969 1945 29.0 120 280 30.315445500000003 -81.58378359999999 300000 +2.0 1796 6969 1990 30.0 103 280 30.4772234 -81.5777652 300000 +3.0 2654 6969 2015 31.0 154 30 30.114084000000002 -81.45347199999999 300000 +2.0 1770 6969 2004 32.0 127 36 30.4847396 -81.57003259999999 300000 +3.5 2912 6969 2018 33.0 360 220 30.345683 -81.411112 300000 +2.0 1284 6969 2007 34.0 129 310 30.243109000000004 -81.59193 300000 +1.0 883 6969 1953 35.0 88 280 30.3149874 -81.71085 300000 +3.5 2693 6969 1989 36.0 148 15 30.306777 -81.4469752 300000 +2.0 1338 6969 2003 38.0 213 280 30.326904100000004 -81.6637258 300000 +2.0 2159 6969 1999 39.0 132 117 30.187876 -81.7741307 300000 +2.0 1797 6969 2008 40.0 105 239 30.126433000000002 -81.538208 300000 +1.0 1854 6969 1959 42.0 94 280 30.277086100000002 -81.58751009999999 300000 +2.0 1613 6969 2002 42.0 127 20 30.144745899999997 -81.56707519999999 300000 +2.0 1728 6969 2002 42.0 75 280 30.404760800000002 -81.69234859999999 300000 +1.0 572 6969 1960 45.0 51 280 30.360569 -81.73863399999999 300000 +3.0 2238 6969 1995 47.0 208 115 30.2816153 -81.46692759999999 300000 +3.5 3497 6969 2005 51.0 256 280 30.230425099999998 -81.619434 300000 +2.0 1326 6969 1948 51.0 136 280 30.3084393 -81.7225656 300000 +1.0 1216 6969 1948 55.0 53 280 30.3841392 -81.640389 300000 +1.0 1164 6969 1948 57.0 102 280 30.2777386 -81.7335253 300000 +2.0 986 6969 1980 60.0 115 280 30.205084000000003 -81.7939038 300000 +2.0 1710 6969 1939 61.0 272 280 30.201590000000003 -81.591128 300000 +2.0 1309 6969 1954 62.0 69 280 30.331556699999997 -81.5943754 300000 +2.0 1672 6969 1957 62.0 84 280 30.2507555 -81.72312149999999 300000 +2.5 1637 6969 1958 67.0 107 280 30.2231007 -81.73453590000001 300000 +4.0 2126 6969 1942 71.0 87 280 30.2418995 -81.7470111 300000 +2.0 1501 6969 1980 76.0 93 280 30.1946557 -81.7633848 300000 +1.0 849 6969 1951 79.0 68 280 30.3946563 -81.7457304 300000 +3.0 2378 6969 1957 85.0 97 280 30.272762 -81.84137199999999 300000 +2.0 1215 6969 1941 86.0 123 280 30.314935 -81.723513 300000 +3.0 2512 6969 1994 91.0 150 29 30.183331 -81.639586 300000 +2.5 2520 6969 2017 92.0 115 56 30.218196868897 -81.805252075195 300000 +3.0 2511 6969 2017 92.0 94 7 30.460499 -81.762381 300000 +3.5 2744 6969 2017 98.0 137 42 30.1815 -81.5909 300000 +2.5 1632 6969 1919 99.0 260 280 30.313465700000002 -81.6996825 300000 +1.0 1179 6969 1955 107.0 85 280 30.3306136 -81.5908791 300000 +4.5 3100 6969 2018 112.0 208 375 30.2194 -81.612383 300000 +3.5 2440 6969 2017 112.0 216 375 30.219494 -81.613199 300000 +2.0 1338 6969 2003 116.0 248 599 30.326904100000004 -81.6637258 300000 +2.0 1275 6969 1949 118.0 59 280 30.3824167 -81.6679969 300000 +2.0 1325 6969 1962 120.0 125 280 30.359242 -81.5910651 300000 +2.5 1990 6969 1959 120.0 156 280 30.2527342 -81.6309931 300000 +1.5 1232 6969 1949 121.0 45 280 30.345514299999998 -81.6926677 300000 +2.5 2495 6969 2016 122.0 109 42 30.528948 -81.616375 300000 +1.0 1116 6969 1954 124.0 36 280 30.3227803 -81.7201714 300000 +2.0 1220 6969 2015 129.0 106 280 30.317384999999998 -81.5627536 300000 +1.0 816 6969 1959 131.0 100 280 30.424241 -81.6614947 300000 +1.0 1033 6969 1954 131.0 126 280 30.2893891 -81.7934572 300000 +2.0 1704 6969 1947 132.0 100 280 30.3349148 -81.5999418 300000 +4.0 2566 6969 2017 139.0 115 67 30.440822601318 -81.704200744629 300000 +2.0 2020 6969 2017 151.0 111 14 30.454571 -81.759231 300000 +6.0 6878 6969 1929 195.0 479 280 30.267395299999997 -81.70077909999999 300000 +3.0 1765 6969 1973 196.0 88 280 30.208015200000002 -81.6202296 300000 +2.0 2135 6969 2017 225.0 121 56 30.218196868897 -81.805252075195 300000 +3.5 2995 6969 2017 230.0 130 67 30.296688079834 -81.442176818848 300000 +2.0 1276 6969 1972 232.0 82 280 30.4142064 -81.731426 300000 +2.0 2496 6969 1955 262.0 481 280 30.503878000000004 -81.54857 300000 +3.0 2438 6969 1981 266.0 88 280 30.303671500000004 -81.830353 300000 +2.5 2757 6969 2017 280.0 120 46 30.217420578003 -81.828819274902 300000 +2.0 1753 6969 1978 296.0 47 280 30.523578999999998 -81.7417599 300000 +2.0 2084 6969 2017 296.0 113 35 30.47158 -81.62567299999999 300000 +7.5 6823 6969 1941 310.0 202 280 30.315029 -81.608591 300000 +3.0 2442 6969 2017 359.0 176 164 30.219775 -81.502026 300000 +1.5 1416 6969 1955 365.0 84 280 30.4706397 -81.6537166 300000 +3.5 3811 6969 1989 54.5 125 280 30.144662800000003 -81.64342490000001 300000 +2.0 1698 6969 1989 54.5 108 280 30.3540718 -81.771277 300000 +3.5 3330 6969 1989 54.5 132 280 30.223175 -81.505391 300000 +2.0 1453 6969 1989 54.5 164 280 30.106626799999997 -81.51913409999999 300000 +3.5 2877 6969 1989 54.5 153 280 30.144662800000003 -81.64342490000001 300000 +3.0 2844 6969 1989 54.5 131 280 30.180892 -81.59270670000001 300000 +2.0 2254 6969 1989 54.5 123 280 30.3499 -81.5498 300000 +3.5 3453 6969 1989 54.5 110 280 30.187573382593 -81.842479705811 300000 +3.0 2511 6969 1989 54.5 96 280 30.359433199999998 -81.5609032 300000 +2.0 1646 6969 1989 54.5 176 280 30.2817 -81.4932 300000 +3.0 1871 6969 1989 54.5 114 280 30.536542999999998 -81.620101 300000 +2.0 2606 6969 1989 54.5 97 280 30.536542999999998 -81.620101 300000 +4.0 4099 6969 1989 54.5 75 280 30.536542999999998 -81.620101 300000 +2.0 3917 1707 1910 1.0 146 280 40.82437 -73.8992782 300000 +6.5 3000 2000 1990 1.0 467 280 40.604625 -73.95910490000001 300000 +3.0 1938 2400 1925 1.0 712 280 40.6351404 -74.0288647 300000 +3.5 2508 2600 1925 2.0 269 280 40.695862 -73.78996500000001 300000 +1.0 747 6969 1949 2.0 574 325 40.7318951 -73.8540818 300000 +1.5 1188 2753 1950 3.0 841 280 40.752156 -73.81352690000001 300000 +2.5 2052 2300 1989 5.0 241 280 40.643053 -73.911291 300000 +3.0 1575 2000 1930 6.0 921 280 40.618063 -74.007866 300000 +2.0 1376 2400 1970 6.0 414 280 40.570073799999996 -74.1228155 300000 +6.0 5712 3200 1930 6.0 411 280 40.70772 -73.893726 300000 +3.0 3595 12375 1992 7.0 334 280 40.5175383 -74.2109853 300000 +2.0 1600 10988 1980 7.0 531 280 40.618345 -74.093655 300000 +3.0 1224 720 1989 8.0 261 220 40.6349347 -74.1688954 300000 +1.0 900 6969 1941 8.0 389 280 40.886073700000004 -73.9065373 300000 +2.0 2574 4000 1970 9.0 334 280 40.6000552 -74.13932340000001 300000 +3.0 1008 4000 1955 9.0 624 280 40.682151 -73.80053000000001 300000 +1.5 1080 2000 1910 9.0 972 280 40.6157169 -73.947401 300000 +1.0 666 6969 1966 9.0 353 407 40.6570179 -73.87815400000001 300000 +6.0 3960 2910 1994 12.0 505 280 40.595354 -73.991869 300000 +1.0 516 6969 1962 12.0 1432 280 40.736106400000004 -73.9865382 300000 +3.0 2250 6968 1905 13.0 400 280 40.6261819 -74.1325981 300000 +4.0 2400 2625 2004 15.0 287 280 40.590469 -74.14706600000001 300000 +1.0 750 6969 1968 15.0 212 280 40.9056542 -73.8586761 300000 +1.0 875 6969 1968 15.0 177 280 40.9056542 -73.8586761 300000 +3.0 3360 5000 1930 16.0 268 280 40.845473 -73.8219416 300000 +2.0 1636 1641 1950 16.0 482 280 40.727042 -73.87748 300000 +2.0 1365 6969 1989 16.0 512 314 40.795150299999996 -73.8468506 300000 +3.0 1219 3300 2011 17.0 1312 280 40.758621000000005 -73.801107 300000 +2.0 1450 6969 1953 20.0 482 280 40.8828679 -73.91129620000001 300000 +2.0 2000 2916 2007 20.0 475 280 40.622803999999995 -73.907368 300000 +2.5 2020 5000 1925 21.0 475 280 40.786387 -73.850708 300000 +3.0 2400 4300 1965 21.0 354 280 40.5528222 -74.1711308 300000 +1.0 701 6969 2018 21.0 820 259 40.7203369 -73.8087168 300000 +1.0 755 6969 1953 22.0 661 280 40.6475359 -73.9755189 300000 +4.0 3000 1899 1931 22.0 533 280 40.6921351 -73.9497475 300000 +2.0 1945 5000 1930 22.0 354 280 40.57602 -74.1155196 300000 +2.5 1292 2000 1925 22.0 618 280 40.6288132 -73.9452939 300000 +4.0 2295 3049 1920 23.0 327 280 40.8370531 -73.83627779999999 300000 +1.5 1944 6115 1899 23.0 412 280 40.8545797 -73.790882 300000 +1.0 850 849 1955 23.0 235 280 40.8831467 -73.920854 300000 +2.0 1197 1484 1987 23.0 358 1093 40.6112436 -74.0942048 300000 +1.0 700 6969 1952 27.0 284 280 40.7089277 -73.827086 300000 +1.0 807 6969 1940 28.0 520 558 40.768063299999994 -73.8922401 300000 +4.0 1500 2678 2018 28.0 453 280 40.565619700000006 -74.1041522 300000 +1.0 691 691 1920 28.0 854 667 40.6603044 -73.9789845 300000 +3.0 3000 2000 1989 28.0 300 280 40.643707899999995 -73.991905 300000 +3.0 890 1102 2005 29.0 730 280 40.8226881 -73.9021681 300000 +1.0 900 6969 1924 29.0 511 280 40.6280062 -74.0257695 300000 +1.5 992 1953 1920 30.0 845 280 40.6325999 -74.019672 300000 +1.0 1000 6969 1928 30.0 238 280 40.902534499999994 -73.9061716 300000 +3.0 1792 2376 1980 30.0 324 280 40.604545 -74.160818 300000 +3.0 1500 3123 1901 30.0 453 280 40.869797999999996 -73.887295 300000 +3.0 2577 3817 1925 33.0 873 280 40.6292359 -74.0346153 300000 +2.0 1982 2857 1899 33.0 343 280 40.882046700000004 -73.857424 300000 +2.0 2824 2099 1975 34.0 230 280 40.872824 -73.857781 300000 +2.0 3350 2500 1925 34.0 224 280 40.819198 -73.88690799999999 300000 +2.0 1332 1800 1925 34.0 487 280 40.614643 -74.101641 300000 +1.5 2240 1200 1989 35.0 670 280 40.598972100000005 -73.97824449999999 300000 +3.5 2360 2000 1989 35.0 678 280 40.6189661 -74.00798950000001 300000 +1.0 850 6969 1955 36.0 235 280 40.6142545 -73.92169759999999 300000 +2.5 2850 1910 1990 37.0 414 280 40.693428999999995 -73.914323 300000 +3.0 4360 2000 1899 37.0 367 280 40.6835284 -73.9504514 300000 +3.5 1900 1900 1925 41.0 605 280 40.703744 -73.885731 300000 +4.0 2496 4000 1970 42.0 304 280 40.558455 -74.1336253 300000 +4.0 3600 2000 1892 42.0 639 280 40.680760299999996 -73.9329386 300000 +1.5 1678 3600 1925 42.0 953 280 40.6087967 -73.9461426 300000 +2.0 1838 1581 1901 42.0 380 280 40.819888399999996 -73.927727 300000 +3.0 2244 6072 1910 42.0 289 280 40.642953000000006 -74.08785300000001 300000 +2.0 1178 6969 1960 43.0 552 280 40.575986799999995 -73.95605 300000 +2.75 2024 2063 1989 43.0 686 280 40.603004799999994 -74.0146115 300000 +3.5 2445 4000 2012 43.0 716 280 40.7516679 -73.771297 300000 +4.75 4200 23250 1951 44.0 445 280 40.5265593 -74.223802 300000 +2.5 2465 4000 1959 44.0 649 280 40.607954299999996 -73.90321259999999 300000 +2.5 2160 2834 1999 47.0 338 280 40.547045000000004 -74.215917 300000 +1.0 900 6969 1960 47.0 499 280 40.7305434 -73.8516104 300000 +2.0 1408 2263 1905 47.0 305 280 40.637243 -74.1154197 300000 +1.0 1000 6969 1955 49.0 198 280 40.734848 -73.8232512 300000 +2.0 1478 1260 1992 50.0 297 90 40.5366144 -74.219801 300000 +2.0 690 6969 2007 57.0 543 392 40.7103831 -73.7859917 300000 +3.5 2880 2736 1960 58.0 465 280 40.610202 -73.976001 300000 +3.0 1756 1026 1983 58.0 268 307 40.6029103 -74.17079809999998 300000 +4.0 1350 4000 2018 58.0 1332 280 40.765307 -73.766249 300000 +1.0 696 6969 2017 63.0 1134 415 40.719563 -73.841564 300000 +1.0 1524 2500 1920 64.0 318 280 40.6142958 -74.0695985 300000 +3.0 2200 4650 1950 65.0 617 280 40.7680116 -73.79510429999999 300000 +1.5 1210 3200 1955 69.0 702 280 40.766045 -73.79252199999999 300000 +3.0 2640 2591 1901 76.0 246 280 40.8167422 -73.903109 300000 +2.0 1300 3408 1999 77.0 446 280 40.5523486 -74.21131770000001 300000 +2.25 2322 1800 1910 77.0 452 280 40.6510404 -73.9484157 300000 +2.5 921 1942 1910 80.0 543 280 40.840088 -73.92273 300000 +1.5 2012 2000 1940 82.0 447 280 40.5972355 -73.9464641 300000 +1.5 1150 2000 1993 82.0 474 280 40.5704875 -74.125667 300000 +3.0 2664 4100 1910 82.0 225 280 40.6402334 -74.08919350000001 300000 +1.5 975 6969 1989 83.0 666 280 40.634005 -73.96889200000001 300000 +1.0 1400 6969 1955 86.0 356 280 40.73526 -73.8666067 300000 +1.0 700 6969 1988 89.0 599 375 40.7440677 -73.8354757 300000 +1.0 950 6969 1960 90.0 631 280 40.633993700000005 -74.03634659999999 300000 +1.0 900 6969 1958 90.0 211 280 40.908552 -73.896916 300000 +5.0 1320 2240 2006 91.0 446 280 40.511767 -74.248688 300000 +2.0 816 2500 1930 92.0 1532 280 40.606029 -74.001926 300000 +1.0 1100 6969 1941 92.0 335 280 40.6341076 -73.9517855 300000 +4.5 2760 2000 1960 92.0 362 280 40.611228000000004 -73.9213661 300000 +2.75 2052 2800 1989 93.0 682 280 40.603964000000005 -73.912657 300000 +2.0 1224 2000 1899 96.0 489 280 40.6757135 -73.8742615 300000 +1.0 1840 1924 1989 100.0 646 280 40.6201311 -74.0264646 300000 +1.5 1840 1572 1945 103.0 236 280 40.890018 -73.848774 300000 +2.0 1182 6660 1965 107.0 634 280 40.6139222 -74.16548900000001 300000 +1.0 819 6969 1956 110.0 365 280 40.7327264 -73.9001426 300000 +1.0 900 6969 1963 111.0 433 280 40.9068884 -73.90598229999999 300000 +3.0 2205 840 2007 112.0 306 280 40.6882394 -73.87386409999999 300000 +4.0 3300 9000 2004 118.0 364 280 40.5511677 -74.1878257 300000 +2.0 1400 2000 1935 120.0 557 280 40.763965 -73.884702 300000 +6.0 3246 5000 1931 125.0 277 280 40.6365435 -74.1653514 300000 +2.0 1567 4800 1983 1.0 421 280 33.9048814 -117.7722014 300000 +2.75 2706 6389 2003 1.0 370 250 33.4556206 -117.6225756 300000 +2.5 2339 9775 1989 1.0 556 127 33.4534029 -117.6393514 300000 +3.0 2864 4500 2014 1.0 347 215 33.4897095 -117.64229569999999 300000 +2.5 1800 3600 2017 2.0 411 227 33.526470399999994 -117.6288156 300000 +3.5 3390 8871 2003 2.0 764 478 33.625685 -117.8185369 300000 +3.5 2477 8023 1969 2.0 898 110 33.622301799999995 -117.85316809999999 300000 +2.0 1252 6969 2001 2.0 375 494 33.559983 -117.633972 300000 +2.5 2500 3816 1998 2.0 900 235 33.60692879999999 -117.82408909999998 300000 +2.5 2882 6900 1972 2.0 312 21 33.5669211 -117.65825900000002 300000 +2.0 1540 12600 1968 3.0 451 280 33.8740681 -117.8282534 300000 +3.5 3500 10379 1965 4.0 429 280 33.9009843 -117.91092330000001 300000 +3.0 2775 6000 1997 4.0 1003 345 33.6219429 -117.8870632 300000 +4.5 4302 10400 1983 5.0 759 305 33.6295231 -117.86451640000001 300000 +2.0 1450 7200 1956 5.0 434 280 33.822312700000005 -117.93457990000002 300000 +2.0 1367 2534 1963 5.0 366 260 33.886297 -117.870092 300000 +2.0 1673 5940 1958 5.0 338 280 33.718996600000004 -117.8994611 300000 +2.0 1083 1816 1989 5.0 396 339 33.686924 -117.62686200000002 300000 +2.5 1771 6969 1993 5.0 353 300 33.796215999999994 -117.81839699999999 300000 +2.0 1501 9405 1960 6.0 506 280 33.8279179 -117.83128799999999 300000 +4.5 3258 5893 2011 6.0 457 258 33.596211 -117.72485230000001 300000 +1.5 1213 7425 1959 6.0 482 280 33.7856521 -118.0116295 300000 +2.0 1210 1210 1994 6.0 443 306 33.756071999999996 -117.766309 300000 +4.0 4000 9350 1993 6.0 325 230 33.600294299999995 -117.5803547 300000 +1.75 1247 6533 1955 7.0 481 280 33.84867379999999 -118.02363629999999 300000 +1.5 1102 6969 1974 7.0 327 347 33.7567474 -117.8426735 300000 +1.75 1870 7000 1966 9.0 454 280 33.811490899999995 -117.820679 300000 +4.5 3642 6969 1995 9.0 713 670 33.6046523 -117.8328924 300000 +5.25 3814 5126 2018 9.0 371 212 33.6917217 -117.6610854 300000 +2.5 2889 10500 1990 9.0 460 280 33.5204288 -117.6498164 300000 +2.5 1622 4343 2001 12.0 369 280 33.865756899999994 -117.83102240000002 300000 +1.0 800 6969 1962 12.0 263 452 33.765515 -118.07973100000001 300000 +2.5 2116 6000 1965 12.0 307 280 33.8198901 -118.02019250000001 300000 +1.0 596 6969 1972 13.0 453 300 33.779503999999996 -117.860757 300000 +2.5 2584 6000 1987 13.0 329 275 33.7854973 -117.78421780000001 300000 +6.0 5337 7083 1998 13.0 861 280 33.617248700000005 -117.91193419999999 300000 +1.0 1008 871 1978 13.0 346 320 33.889891999999996 -117.846557 300000 +4.5 3764 23000 2000 13.0 823 280 33.5509639 -117.7598491 300000 +3.5 4000 12845 2001 13.0 1199 650 33.603379 -117.81791470000002 300000 +2.5 1493 1000 2008 14.0 401 286 33.9032221 -117.7845112 300000 +3.0 3258 7134 1970 14.0 269 280 33.8144225 -117.95634009999998 300000 +2.0 1575 3825 1977 14.0 460 200 33.5519776 -117.703736 300000 +2.5 2700 6000 1975 15.0 343 118 33.621638 -117.580804 300000 +4.5 3580 17325 1991 15.0 388 280 33.8834856 -117.81147920000001 300000 +3.0 2372 13090 1959 16.0 407 280 33.880663399999996 -117.8046524 300000 +1.0 1380 5400 1926 17.0 326 280 33.7360329 -117.8620258 300000 +3.0 2507 4417 2000 17.0 369 200 33.458698 -117.5819071 300000 +2.0 1423 6969 2015 19.0 432 219 33.676615999999996 -117.6608821 300000 +1.0 4357 5280 2017 19.0 402 297 33.677282399999996 -117.70841399999999 300000 +3.5 3498 18730 1967 20.0 343 280 33.907694299999996 -117.91710659999998 300000 +6.5 8010 43560 2001 20.0 249 280 33.929626 -117.8008997 300000 +2.0 984 6969 1986 20.0 690 380 33.6416935 -117.8641574 300000 +2.0 2167 6969 1970 23.0 872 740 33.613338 -117.87889799999999 300000 +2.25 1223 6969 2018 25.0 448 248 33.526470399999994 -117.6288156 300000 +3.25 2436 20000 1977 25.0 468 280 33.8578109 -117.7637722 300000 +2.0 1472 6969 2013 26.0 611 275 33.6519526 -117.9814429 300000 +2.0 2216 5460 2017 26.0 447 303 33.911446000000005 -117.847371 300000 +2.5 2846 2500 1984 26.0 527 799 33.466389899999996 -117.694216 300000 +2.5 2002 5219 1988 26.0 409 441 33.6174691 -117.5851031 300000 +4.5 5031 21998 2004 27.0 298 280 33.855835799999994 -117.75694159999999 300000 +2.5 1700 1876 1974 27.0 394 399 33.4265999 -117.6092812 300000 +3.5 2400 3049 1972 28.0 885 280 33.5267806 -117.76108049999999 300000 +2.5 1280 6969 1986 33.0 403 335 33.656212100000005 -117.64472679999999 300000 +2.5 2179 10350 1987 33.0 394 40 33.834677299999996 -117.8255328 300000 +2.5 2730 4000 1990 34.0 329 560 33.605794 -117.58606 300000 +4.5 3693 8134 2004 35.0 718 478 33.62093839999999 -117.8200989 300000 +2.0 1441 8712 1924 37.0 833 280 33.650935499999996 -117.9174108 300000 +2.0 1479 6100 1955 37.0 426 280 33.8435799 -117.9447591 300000 +3.0 3367 16000 1991 37.0 355 22 33.4327609 -117.5989508 300000 +1.0 676 6969 1996 37.0 15 280 33.92579620000001 -117.80495729999998 300000 +1.0 798 6969 1972 40.0 381 250 33.4960581 -117.67046429999999 300000 +2.5 1689 4800 1967 40.0 400 280 33.857077600000004 -118.03970359999998 300000 +3.5 4440 9000 1988 40.0 348 210 33.6405639 -117.62661770000001 300000 +1.0 896 900 1973 41.0 396 365 33.4091846 -117.59919950000001 300000 +4.0 2578 6016 1991 42.0 419 280 33.7437922 -117.86161470000002 300000 +1.0 857 2852 1961 42.0 757 280 33.7930715 -117.85996229999999 300000 +2.0 1520 6969 2006 43.0 451 1000 33.6740315 -117.8431399 300000 +2.0 1308 6180 1949 43.0 420 280 33.718686 -117.8828756 300000 +2.75 2938 9270 1977 48.0 305 280 33.8931776 -117.96842040000001 300000 +1.0 1150 1000 1962 49.0 321 366 33.767055600000006 -118.0831831 300000 +3.0 2077 3200 2011 50.0 599 280 33.6452165 -117.7596457 300000 +4.75 3116 6751 2005 50.0 770 410 33.6277718 -117.82255659999998 300000 +6.5 5047 6532 2013 50.0 458 383 33.701248799999995 -117.7135348 300000 +2.5 2886 8000 1995 54.0 433 280 33.871946 -117.85391640000002 300000 +4.5 2753 3700 2015 54.0 541 197 33.739273 -117.753502 300000 +3.0 2104 3825 1978 55.0 368 200 33.5522626 -117.7061527 300000 +2.5 1742 1500 2018 55.0 360 227 33.526470399999994 -117.6288156 300000 +1.0 1300 6500 1931 57.0 381 280 33.9325729 -117.95360120000001 300000 +2.0 1032 6969 1972 57.0 368 460 33.659119399999994 -117.9756729 300000 +4.75 4048 7000 2005 58.0 1157 615 33.572931 -117.83228799999999 300000 +2.0 1344 1437 1992 61.0 372 325 33.6492376 -117.5846307 300000 +5.0 6895 16048 1992 62.0 391 280 33.518629 -117.657882 300000 +3.0 1621 6969 1995 63.0 709 453 33.6034544 -117.8256129 300000 +4.5 4170 9500 2017 64.0 454 280 33.89204470000001 -117.888865 300000 +2.0 1122 435600000 1975 64.0 267 657 33.6084074 -117.75167739999999 300000 +1.0 700 735 1952 75.0 257 650 33.7477758 -118.1105973 300000 +6.5 4377 8541 2016 76.0 568 198 33.6699659 -117.68054 300000 +3.0 2011 5500 1986 81.0 397 181 33.548303000000004 -117.69419740000002 300000 +5.0 5040 6969 2007 81.0 714 180 33.4259941 -117.5957257 300000 +3.0 1798 6969 1999 84.0 400 274 33.5658973 -117.70599250000001 300000 +2.0 1800 11325 1964 86.0 592 280 33.807499 -117.7963278 300000 +4.5 4330 7397 2013 91.0 924 115 33.625310799999994 -117.85097179999998 300000 +3.5 3418 5525 1997 92.0 417 237 33.453632899999995 -117.6191098 300000 +2.0 1712 11250 1952 93.0 379 280 33.8688065 -117.9897408 300000 +1.0 1062 8645 1957 96.0 513 280 33.8061747 -117.95039409999998 300000 +2.0 1467 5940 1958 101.0 436 280 33.7665091 -118.0302045 300000 +2.0 1257 1 1989 101.0 338 550 33.6239445 -117.64550030000001 300000 +3.5 2897 3000 2018 105.0 483 189 33.6842021 -117.73111409999999 300000 +8.0 7323 15108 1963 113.0 348 280 33.931011600000005 -117.95945359999999 300000 +1.5 1092 6969 1963 116.0 320 310 33.7403998 -117.83147579999999 300000 +2.0 1323 7200 1954 117.0 408 280 33.82353320000001 -117.96597240000001 300000 +3.0 2242 2500 1900 120.0 1650 280 33.6100791 -117.9300881 300000 +5.5 3100 4784 2015 125.0 435 158 33.6707244 -117.68721059999999 300000 +1.75 1678 7395 1978 126.0 378 280 33.746274 -117.611526 300000 +5.5 4734 8106 1998 126.0 496 215 33.721959399999996 -117.7524564 300000 +2.0 1473 6969 1977 130.0 119 280 33.620337400000004 -117.69775220000001 300000 +1.75 1760 6969 1979 131.0 203 208 33.708574 -117.75521129999998 300000 +4.0 3261 6969 2007 141.0 598 280 33.628812700000005 -117.9233669 300000 +4.0 4523 12598 2001 147.0 348 225 33.5690191 -117.5804044 300000 +4.5 5250 8980 2017 154.0 380 115 33.709140999999995 -117.736193 300000 +2.0 1919 3540 1953 159.0 1199 280 33.600829299999994 -117.86924509999999 300000 +2.0 960 6969 1986 168.0 167 280 33.518949 -117.7557873 300000 +2.0 1630 7201 1954 180.0 393 280 33.80887979999999 -117.95723989999999 300000 +2.0 1054 6969 2017 189.0 451 280 33.6113645 -117.92421100000001 300000 +1.75 1700 6969 1977 197.0 352 644 33.6042064 -117.7339909 300000 +3.5 3843 10139 2018 203.0 1340 280 33.4510583 -117.65702009999998 300000 +3.0 2660 5050 1961 215.0 611 280 33.626114799999996 -117.9219301 300000 +2.0 1054 6969 2017 219.0 451 280 33.611213299999996 -117.92424399999999 300000 +1.0 750 8750 1937 231.0 1853 280 33.501298999999996 -117.74263799999999 300000 +9.0 4811 8276 1977 250.0 343 280 33.7057427 -117.9861405 300000 +3.0 1721 1001 2015 295.0 639 387 33.430633 -117.62606299999999 300000 +2.75 2428 6689 2016 324.0 391 306 33.536279 -117.60415800000001 300000 +4.0 2326 2178 1971 383.0 1313 280 33.6292102 -117.9551732 300000 +5.0 2800 7811 1965 411.0 498 280 33.467620000000004 -117.6592544 300000 +3.0 1858 6969 2018 20.0 532 280 33.634137 -117.94047900000001 300000 +2.5 1545 6969 2018 29.0 384 280 33.547940000000004 -117.59602 300000 +4.0 2654 6969 2018 54.0 446 280 33.6682321 -117.65642620000001 300000 +3.0 1710 6969 2018 64.0 1273 280 33.624396999999995 -117.945629 300000 +3.5 1912 6969 2017 74.0 339 280 33.542747 -117.59966599999998 300000 +3.0 2362 6969 1989 54.5 392 280 33.542483000000004 -117.60134199999999 300000 +4.5 3684 6969 1989 54.5 415 280 33.475260999999996 -117.66808300000001 300000 diff --git a/examples/AI-Feynman/real_estate_data/aif_train.csv_test b/examples/AI-Feynman/real_estate_data/aif_train.csv_test new file mode 100644 index 0000000..95aa743 --- /dev/null +++ b/examples/AI-Feynman/real_estate_data/aif_train.csv_test @@ -0,0 +1,801 @@ +2.000000000000000000e+00 1.331000000000000000e+03 8.855000000000000000e+03 1.960000000000000000e+03 1.300000000000000000e+02 1.180000000000000000e+02 2.800000000000000000e+02 2.856649180000000143e+01 -8.146868559999998638e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.140000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 4.200000000000000000e+01 4.120000000000000000e+02 5.800000000000000000e+02 2.576411129999999972e+01 -8.019774379999999780e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 2.000000000000000000e+01 1.880000000000000000e+02 2.800000000000000000e+02 2.578974429999999884e+01 -8.023622720000000186e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.746000000000000000e+03 8.804000000000000000e+03 1.943000000000000000e+03 2.800000000000000000e+01 2.290000000000000000e+02 2.800000000000000000e+02 2.853988880000000350e+01 -8.135525959999999657e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.280000000000000000e+02 6.969000000000000000e+03 1.955000000000000000e+03 7.000000000000000000e+00 4.200000000000000000e+01 2.800000000000000000e+02 3.037855379999999883e+01 -8.170168040000000076e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.100000000000000000e+03 6.969000000000000000e+03 1.974000000000000000e+03 2.100000000000000000e+01 3.410000000000000000e+02 2.800000000000000000e+02 2.575084100000000120e+01 -8.019988809999999546e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.427000000000000000e+03 1.477800000000000000e+04 1.977000000000000000e+03 2.700000000000000000e+01 1.640000000000000000e+02 4.500000000000000000e+01 2.855891859999999838e+01 -8.141186500000000592e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.650000000000000000e+03 8.418000000000000000e+03 1.976000000000000000e+03 1.330000000000000000e+02 1.790000000000000000e+02 2.800000000000000000e+02 2.575483630000000090e+01 -8.039983050000000731e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.800000000000000000e+02 6.969000000000000000e+03 2.004000000000000000e+03 8.900000000000000000e+01 2.740000000000000000e+02 4.080000000000000000e+02 2.580122000000000071e+01 -8.018678900000000453e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.775000000000000000e+03 6.000000000000000000e+03 1.997000000000000000e+03 4.000000000000000000e+00 1.003000000000000000e+03 3.450000000000000000e+02 3.362194290000000052e+01 -1.178870632000000001e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.454000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 4.000000000000000000e+00 7.800000000000000000e+01 2.800000000000000000e+02 3.935959229999999565e+01 -7.660107929999999499e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.750000000000000000e+02 6.969000000000000000e+03 1.989000000000000000e+03 8.300000000000000000e+01 6.660000000000000000e+02 2.800000000000000000e+02 4.063400500000000193e+01 -7.396889200000001097e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.236000000000000000e+03 6.640000000000000000e+03 2.015000000000000000e+03 1.230000000000000000e+02 1.800000000000000000e+02 4.800000000000000000e+01 2.838861149999999967e+01 -8.134254119999999944e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.186000000000000000e+03 1.348000000000000000e+04 1.987000000000000000e+03 1.950000000000000000e+02 1.960000000000000000e+02 2.800000000000000000e+02 2.850788140000000226e+01 -8.138275149999999769e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.373000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.740000000000000000e+02 2.830000000000000000e+02 1.004000000000000000e+03 2.580783939999999888e+01 -8.019222700000000259e+01 3.000000000000000000e+05 +5.000000000000000000e+00 1.320000000000000000e+03 2.240000000000000000e+03 2.006000000000000000e+03 9.100000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 4.051176699999999897e+01 -7.424868800000000135e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.087000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 8.660000000000000000e+02 4.970000000000000000e+02 4.500000000000000000e+02 2.576929639999999821e+01 -8.018370679999999595e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.760000000000000000e+02 6.969000000000000000e+03 1.996000000000000000e+03 3.700000000000000000e+01 1.500000000000000000e+01 2.800000000000000000e+02 3.392579620000000773e+01 -1.178049572999999839e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.290000000000000000e+03 6.148000000000000000e+03 1.938000000000000000e+03 2.940000000000000000e+02 8.700000000000000000e+01 2.800000000000000000e+02 2.583317059999999898e+01 -8.021278320000000406e+01 3.000000000000000000e+05 +6.500000000000000000e+00 3.000000000000000000e+03 2.000000000000000000e+03 1.990000000000000000e+03 1.000000000000000000e+00 4.670000000000000000e+02 2.800000000000000000e+02 4.060462499999999864e+01 -7.395910490000001403e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.301000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 3.575985099999999761e+01 -7.883677500000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.840000000000000000e+02 6.969000000000000000e+03 1.986000000000000000e+03 2.000000000000000000e+01 6.900000000000000000e+02 3.800000000000000000e+02 3.364169350000000236e+01 -1.178641573999999963e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.040000000000000000e+03 8.800000000000000000e+03 1.971000000000000000e+03 5.000000000000000000e+00 1.200000000000000000e+02 2.800000000000000000e+02 2.857419499999999957e+01 -8.143809799999999655e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.215000000000000000e+03 7.500000000000000000e+03 1.949000000000000000e+03 5.500000000000000000e+01 3.610000000000000000e+02 2.800000000000000000e+02 2.574122829999999951e+01 -8.023000620000000538e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 8.400000000000000000e+01 2.060000000000000000e+02 2.590000000000000000e+02 2.578994259999999983e+01 -8.023670710000000383e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.213000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 7.500000000000000000e+01 2.290000000000000000e+02 2.800000000000000000e+02 3.384613300000000180e+01 -8.433226500000000669e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.332000000000000000e+03 1.800000000000000000e+03 1.925000000000000000e+03 3.400000000000000000e+01 4.870000000000000000e+02 2.800000000000000000e+02 4.061464300000000094e+01 -7.410164100000000076e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.323000000000000000e+03 7.200000000000000000e+03 1.954000000000000000e+03 1.170000000000000000e+02 4.080000000000000000e+02 2.800000000000000000e+02 3.382353320000000707e+01 -1.179659724000000125e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.308000000000000000e+03 6.180000000000000000e+03 1.949000000000000000e+03 4.300000000000000000e+01 4.200000000000000000e+02 2.800000000000000000e+02 3.371868599999999816e+01 -1.178828756000000055e+02 3.000000000000000000e+05 +5.000000000000000000e+00 5.308000000000000000e+03 9.278000000000000000e+03 2.006000000000000000e+03 1.900000000000000000e+01 1.540000000000000000e+02 8.300000000000000000e+01 3.579655349999999459e+01 -7.881116409999999917e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.780000000000000000e+02 2.178000000000000000e+03 1.898000000000000000e+03 2.070000000000000000e+02 1.280000000000000000e+02 2.800000000000000000e+02 3.928099449999999848e+01 -7.663151630000000125e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.500000000000000000e+02 6.969000000000000000e+03 1.968000000000000000e+03 1.500000000000000000e+01 2.120000000000000000e+02 2.800000000000000000e+02 4.090565420000000074e+01 -7.385867609999999672e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.819000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 2.160000000000000000e+02 8.160000000000000000e+02 1.500000000000000000e+02 3.378364679999999964e+01 -8.438295259999999587e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 1.924000000000000000e+03 1.600000000000000000e+01 1.500000000000000000e+02 2.800000000000000000e+02 3.372548390000000040e+01 -8.439500150000000644e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.326000000000000000e+03 2.178000000000000000e+03 1.971000000000000000e+03 3.830000000000000000e+02 1.313000000000000000e+03 2.800000000000000000e+02 3.362921020000000283e+01 -1.179551732000000044e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.459000000000000000e+03 1.307000000000000000e+03 2.007000000000000000e+03 1.670000000000000000e+02 1.200000000000000000e+02 5.740000000000000000e+02 2.834896049999999690e+01 -8.150430550000000096e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.255000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.730000000000000000e+02 5.180000000000000000e+02 2.800000000000000000e+02 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.365000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 1.600000000000000000e+01 5.120000000000000000e+02 3.140000000000000000e+02 4.079515029999999598e+01 -7.384685059999999623e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.100000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 1.300000000000000000e+01 9.900000000000000000e+01 2.800000000000000000e+02 3.023111810000000332e+01 -8.172518000000000882e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.811000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.080000000000000000e+02 2.800000000000000000e+02 2.859476199999999935e+01 -8.111640400000000284e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 1.200000000000000000e+03 2.006000000000000000e+03 6.420000000000000000e+02 2.040000000000000000e+02 6.310000000000000000e+02 2.838981300000000019e+01 -8.148175799999999924e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.650000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 2.100000000000000000e+01 1.120000000000000000e+02 2.800000000000000000e+02 3.391227810000000176e+01 -8.446409930000000088e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.536000000000000000e+03 9.539000000000000000e+03 2.017000000000000000e+03 1.440000000000000000e+02 1.920000000000000000e+02 7.800000000000000000e+01 3.571442429999999746e+01 -7.878578129999999646e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.594000000000000000e+03 7.497000000000000000e+03 1.930000000000000000e+03 3.290000000000000000e+02 9.100000000000000000e+01 2.800000000000000000e+02 3.928033310000000000e+01 -7.671007890000001339e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.768000000000000000e+03 1.698800000000000000e+04 2.005000000000000000e+03 1.120000000000000000e+02 9.100000000000000000e+01 4.600000000000000000e+01 3.367210759999999681e+01 -8.458235829999999567e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.000000000000000000e+02 6.969000000000000000e+03 1.962000000000000000e+03 1.200000000000000000e+01 2.630000000000000000e+02 4.520000000000000000e+02 3.376551500000000061e+01 -1.180797310000000095e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.150000000000000000e+03 2.000000000000000000e+03 1.993000000000000000e+03 8.200000000000000000e+01 4.740000000000000000e+02 2.800000000000000000e+02 4.057048749999999870e+01 -7.412566700000000708e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.552000000000000000e+03 5.052000000000000000e+03 2.017000000000000000e+03 2.400000000000000000e+02 1.510000000000000000e+02 1.300000000000000000e+02 3.575388092313729516e+01 -7.875276952059100211e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.288000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.300000000000000000e+01 8.200000000000000000e+01 2.800000000000000000e+02 3.929905899999999974e+01 -7.666192999999999813e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.580000000000000000e+03 1.007400000000000000e+04 1.961000000000000000e+03 2.000000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 2.556035139999999828e+01 -8.036536449999999832e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.000000000000000000e+02 7.350000000000000000e+02 1.952000000000000000e+03 7.500000000000000000e+01 2.570000000000000000e+02 6.500000000000000000e+02 3.374777579999999944e+01 -1.181105972999999949e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.951000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.830000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.390000000000000000e+02 6.969000000000000000e+03 2.000000000000000000e+03 6.800000000000000000e+01 3.420000000000000000e+02 2.380000000000000000e+02 2.573527239999999949e+01 -8.023836130000000821e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.198000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.390000000000000000e+02 2.800000000000000000e+02 2.842771560000000264e+01 -8.121858940000001326e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.909000000000000000e+03 1.306800000000000000e+04 1.969000000000000000e+03 6.000000000000000000e+00 1.020000000000000000e+02 2.800000000000000000e+02 3.371058550000000054e+01 -8.433454600000000312e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.600000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 3.000000000000000000e+01 3.440000000000000000e+02 2.800000000000000000e+02 2.573361289999999713e+01 -8.023563399999999035e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.570000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.350000000000000000e+02 1.770000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.638000000000000000e+03 3.005600000000000000e+04 2.018000000000000000e+03 1.110000000000000000e+02 1.820000000000000000e+02 4.000000000000000000e+01 3.571515007908689654e+01 -7.868561895688240782e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.000000000000000000e+02 6.969000000000000000e+03 1.988000000000000000e+03 8.900000000000000000e+01 5.990000000000000000e+02 3.750000000000000000e+02 4.074406770000000222e+01 -7.383547570000000349e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.971000000000000000e+03 5.219000000000000000e+03 1.987000000000000000e+03 3.160000000000000000e+02 2.420000000000000000e+02 2.800000000000000000e+02 2.570289289999999838e+01 -8.036199350000001118e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.684000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 4.150000000000000000e+02 2.800000000000000000e+02 3.347526099999999616e+01 -1.176680830000000100e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.761000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.170000000000000000e+02 1.670000000000000000e+02 2.800000000000000000e+02 3.574669999999999703e+01 -7.877930000000000632e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.777000000000000000e+03 5.074700000000000000e+04 1.974000000000000000e+03 2.400000000000000000e+01 1.190000000000000000e+02 2.800000000000000000e+02 3.609041739999999976e+01 -7.888756879999999683e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.238000000000000000e+03 1.734800000000000000e+04 2.005000000000000000e+03 1.310000000000000000e+02 1.560000000000000000e+02 1.750000000000000000e+02 2.839898369999999872e+01 -8.120682640000001129e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.493000000000000000e+03 1.000000000000000000e+03 2.008000000000000000e+03 1.400000000000000000e+01 4.010000000000000000e+02 2.860000000000000000e+02 3.390322210000000069e+01 -1.177845111999999972e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.606000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.700000000000000000e+01 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.004000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.610000000000000000e+02 2.800000000000000000e+02 3.580311400000000077e+01 -7.880487700000000473e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.850000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 2.000000000000000000e+00 2.250000000000000000e+02 3.260000000000000000e+02 3.927557860000000289e+01 -7.661171209999999121e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.372000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.000000000000000000e+02 2.080000000000000000e+02 2.800000000000000000e+02 3.927395720000000523e+01 -7.660970720000000256e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.198000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.581818400000000224e+01 -7.910846519999999771e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.961000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.210000000000000000e+02 2.800000000000000000e+02 2.836614000000000146e+01 -8.136231999999999687e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.678000000000000000e+03 7.395000000000000000e+03 1.978000000000000000e+03 1.260000000000000000e+02 3.780000000000000000e+02 2.800000000000000000e+02 3.374627399999999966e+01 -1.176115259999999978e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.424000000000000000e+03 2.178000000000000000e+05 2.018000000000000000e+03 1.900000000000000000e+01 3.940000000000000000e+02 2.800000000000000000e+02 3.883487490000000264e+01 -7.733604019999999934e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.227000000000000000e+03 6.165000000000000000e+03 1.920000000000000000e+03 1.400000000000000000e+01 5.300000000000000000e+01 2.800000000000000000e+02 3.934438320000000289e+01 -7.666480140000000176e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.037000000000000000e+03 3.705000000000000000e+03 1.980000000000000000e+03 1.420000000000000000e+02 1.670000000000000000e+02 7.500000000000000000e+01 2.575679599999999780e+01 -8.041092199999999934e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.413000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 5.100000000000000000e+01 1.520000000000000000e+02 2.000000000000000000e+02 3.927961899999999673e+01 -7.670496509999999546e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.500000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 6.590000000000000000e+02 2.730000000000000000e+02 6.500000000000000000e+02 2.579010689999999784e+01 -8.018574259999999754e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.753000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 2.960000000000000000e+02 4.700000000000000000e+01 2.800000000000000000e+02 3.052357899999999802e+01 -8.174175990000000525e+01 3.000000000000000000e+05 +7.500000000000000000e+00 6.823000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 3.100000000000000000e+02 2.020000000000000000e+02 2.800000000000000000e+02 3.031502899999999912e+01 -8.160859100000000410e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.159000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 4.100000000000000000e+01 3.440000000000000000e+02 8.840000000000000000e+02 2.580421610000000143e+01 -8.018648320000001206e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.236000000000000000e+03 4.878700000000000000e+04 1.972000000000000000e+03 1.460000000000000000e+02 1.620000000000000000e+02 2.800000000000000000e+02 3.397891839999999775e+01 -8.433865500000000281e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.008000000000000000e+03 8.710000000000000000e+02 1.978000000000000000e+03 1.300000000000000000e+01 3.460000000000000000e+02 3.200000000000000000e+02 3.388989199999999613e+01 -1.178465570000000042e+02 3.000000000000000000e+05 +4.500000000000000000e+00 5.250000000000000000e+03 8.980000000000000000e+03 2.017000000000000000e+03 1.540000000000000000e+02 3.800000000000000000e+02 1.150000000000000000e+02 3.370914099999999536e+01 -1.177361930000000001e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.230000000000000000e+03 1.393920000000000000e+06 1.900000000000000000e+03 2.650000000000000000e+02 6.300000000000000000e+01 2.800000000000000000e+02 3.927812750000000364e+01 -7.662892250000000161e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.052000000000000000e+03 2.300000000000000000e+03 1.989000000000000000e+03 5.000000000000000000e+00 2.410000000000000000e+02 2.800000000000000000e+02 4.064305300000000187e+01 -7.391129100000000562e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.850000000000000000e+02 4.997000000000000000e+03 2.000000000000000000e+03 4.700000000000000000e+01 1.040000000000000000e+02 2.800000000000000000e+02 2.850860100000000230e+01 -8.147144399999999109e+01 3.000000000000000000e+05 +5.000000000000000000e+00 4.973000000000000000e+03 1.350300000000000000e+04 2.007000000000000000e+03 2.900000000000000000e+01 1.310000000000000000e+02 3.360000000000000000e+02 3.584178699999999651e+01 -7.906095259999999314e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.203000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.680000000000000000e+02 6.480000000000000000e+02 7.880000000000000000e+02 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.111000000000000000e+03 6.969000000000000000e+03 1.976000000000000000e+03 6.000000000000000000e+00 1.350000000000000000e+02 3.980000000000000000e+02 3.386218960000000067e+01 -8.446557099999999707e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.523000000000000000e+03 1.259800000000000000e+04 2.001000000000000000e+03 1.470000000000000000e+02 3.480000000000000000e+02 2.250000000000000000e+02 3.356901909999999845e+01 -1.175804044000000061e+02 3.000000000000000000e+05 +1.000000000000000000e+00 5.960000000000000000e+02 6.969000000000000000e+03 1.972000000000000000e+03 1.300000000000000000e+01 4.530000000000000000e+02 3.000000000000000000e+02 3.377950399999999576e+01 -1.178607570000000067e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.890000000000000000e+03 1.410000000000000000e+04 1.939000000000000000e+03 2.260000000000000000e+02 5.300000000000000000e+01 2.800000000000000000e+02 3.929694899999999791e+01 -7.668189820000000623e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.418000000000000000e+03 5.525000000000000000e+03 1.997000000000000000e+03 9.200000000000000000e+01 4.170000000000000000e+02 2.370000000000000000e+02 3.345363289999999523e+01 -1.176191098000000039e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.197000000000000000e+03 6.969000000000000000e+03 1.975000000000000000e+03 2.700000000000000000e+01 1.460000000000000000e+02 4.610000000000000000e+02 2.595556380000000019e+01 -8.018889969999999323e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.466000000000000000e+03 1.000000000000000000e+00 1.925000000000000000e+03 1.800000000000000000e+01 1.590000000000000000e+02 2.800000000000000000e+02 3.928901629999999301e+01 -7.670009579999999971e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.688000000000000000e+03 2.169200000000000000e+04 1.979000000000000000e+03 1.630000000000000000e+02 1.070000000000000000e+02 2.800000000000000000e+02 3.745487310000000036e+01 -7.745883600000000513e+01 3.000000000000000000e+05 +6.000000000000000000e+00 3.960000000000000000e+03 2.910000000000000000e+03 1.994000000000000000e+03 1.200000000000000000e+01 5.050000000000000000e+02 2.800000000000000000e+02 4.059535400000000038e+01 -7.399186899999999412e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.476000000000000000e+03 5.766000000000000000e+03 1.962000000000000000e+03 2.300000000000000000e+01 3.520000000000000000e+02 2.800000000000000000e+02 2.575027040000000156e+01 -8.029991710000000182e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.256000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.680000000000000000e+02 5.720000000000000000e+02 9.160000000000000000e+02 2.576060199999999867e+01 -8.019125619999999799e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.116000000000000000e+03 6.000000000000000000e+03 1.965000000000000000e+03 1.200000000000000000e+01 3.070000000000000000e+02 2.800000000000000000e+02 3.381989010000000206e+01 -1.180201925000000074e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.170000000000000000e+03 1.210900000000000000e+04 1.949000000000000000e+03 2.570000000000000000e+02 3.210000000000000000e+02 2.800000000000000000e+02 3.387456900000000104e+01 -8.437685490000001209e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.594000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 2.500000000000000000e+01 4.230000000000000000e+02 1.005000000000000000e+03 2.575963919999999874e+01 -8.019025809999999410e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.479000000000000000e+03 6.100000000000000000e+03 1.955000000000000000e+03 3.700000000000000000e+01 4.260000000000000000e+02 2.800000000000000000e+02 3.384357990000000171e+01 -1.179447590999999989e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.133000000000000000e+03 8.756000000000000000e+03 1.994000000000000000e+03 1.000000000000000000e+00 1.020000000000000000e+02 2.800000000000000000e+02 2.851723300000000094e+01 -8.148733599999999910e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.695000000000000000e+03 5.383000000000000000e+03 2.001000000000000000e+03 1.200000000000000000e+01 1.710000000000000000e+02 4.300000000000000000e+01 2.836750750000000210e+01 -8.134308910000000026e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.509000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.130000000000000000e+02 1.320000000000000000e+02 1.880000000000000000e+02 3.757563280000000105e+01 -7.748549399999998855e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.361000000000000000e+03 1.000300000000000000e+04 1.948000000000000000e+03 4.000000000000000000e+00 1.250000000000000000e+02 2.800000000000000000e+02 2.855459849999999733e+01 -8.149759449999999106e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.850000000000000000e+03 7.416000000000000000e+04 1.983000000000000000e+03 3.900000000000000000e+01 1.750000000000000000e+02 4.000000000000000000e+00 2.848829910000000254e+01 -8.147145259999999212e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.168000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 2.100000000000000000e+02 3.250000000000000000e+02 2.800000000000000000e+02 3.928191779999999511e+01 -7.657890259999999216e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.500000000000000000e+02 6.969000000000000000e+03 1.960000000000000000e+03 9.000000000000000000e+01 6.310000000000000000e+02 2.800000000000000000e+02 4.063399370000000488e+01 -7.403634659999998746e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.213000000000000000e+03 7.425000000000000000e+03 1.959000000000000000e+03 6.000000000000000000e+00 4.820000000000000000e+02 2.800000000000000000e+02 3.378565210000000008e+01 -1.180116294999999980e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.372000000000000000e+03 5.880000000000000000e+03 2.005000000000000000e+03 8.900000000000000000e+01 1.880000000000000000e+02 2.800000000000000000e+02 2.575408099999999934e+01 -8.044419090000000949e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.654000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 5.400000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 3.366823209999999733e+01 -1.176564262000000127e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.832000000000000000e+03 6.969000000000000000e+03 1.910000000000000000e+03 1.280000000000000000e+02 2.350000000000000000e+02 2.800000000000000000e+02 3.928596040000000045e+01 -7.657380750000000091e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.188000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 2.837050599999999889e+01 -8.125974100000000533e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.127000000000000000e+03 2.375000000000000000e+04 1.942000000000000000e+03 9.700000000000000000e+01 1.180000000000000000e+02 2.800000000000000000e+02 2.556239430000000112e+01 -8.038071840000000634e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.910000000000000000e+02 6.910000000000000000e+02 1.920000000000000000e+03 2.800000000000000000e+01 8.540000000000000000e+02 6.670000000000000000e+02 4.066030440000000112e+01 -7.397898449999999571e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.824000000000000000e+03 7.650000000000000000e+03 1.920000000000000000e+03 3.510000000000000000e+02 7.800000000000000000e+01 2.800000000000000000e+02 3.931853110000000129e+01 -7.667602609999998720e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.289000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 5.800000000000000000e+01 3.800000000000000000e+02 7.000000000000000000e+02 2.576899989999999718e+01 -8.019184500000000071e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.938000000000000000e+03 9.270000000000000000e+03 1.977000000000000000e+03 4.800000000000000000e+01 3.050000000000000000e+02 2.800000000000000000e+02 3.389317760000000135e+01 -1.179684204000000136e+02 3.000000000000000000e+05 +1.000000000000000000e+00 8.750000000000000000e+02 6.969000000000000000e+03 1.968000000000000000e+03 1.500000000000000000e+01 1.770000000000000000e+02 2.800000000000000000e+02 4.090565420000000074e+01 -7.385867609999999672e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.600000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 8.400000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 2.594710810000000123e+01 -8.016728309999999169e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.712000000000000000e+03 1.125000000000000000e+04 1.952000000000000000e+03 9.300000000000000000e+01 3.790000000000000000e+02 2.800000000000000000e+02 3.386880649999999804e+01 -1.179897408000000070e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.725000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.990000000000000000e+02 2.800000000000000000e+02 3.588364200000000181e+01 -7.867997800000000552e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.377000000000000000e+03 6.969000000000000000e+03 1.973000000000000000e+03 1.570000000000000000e+02 2.290000000000000000e+02 2.800000000000000000e+02 2.574771700000000152e+01 -8.022053400000000067e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.164000000000000000e+03 3.833000000000000000e+03 2.018000000000000000e+03 6.200000000000000000e+01 1.550000000000000000e+02 1.300000000000000000e+02 3.581743383905770628e+01 -7.910926118086740644e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.030000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.250000000000000000e+02 3.740000000000000000e+02 7.200000000000000000e+02 2.577045539999999590e+01 -8.019426280000000418e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.114000000000000000e+03 1.346000000000000000e+04 1.997000000000000000e+03 2.800000000000000000e+01 1.600000000000000000e+02 2.440000000000000000e+02 3.583598220000000367e+01 -7.903495329999999797e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.131000000000000000e+03 6.969000000000000000e+03 1.975000000000000000e+03 6.000000000000000000e+00 1.670000000000000000e+02 2.110000000000000000e+02 2.577292230000000117e+01 -8.034439050000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.338000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 3.800000000000000000e+01 2.130000000000000000e+02 2.800000000000000000e+02 3.032690410000000369e+01 -8.166372579999999459e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.197000000000000000e+03 1.484000000000000000e+03 1.987000000000000000e+03 2.300000000000000000e+01 3.580000000000000000e+02 1.093000000000000000e+03 4.061124360000000166e+01 -7.409420479999999998e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.837000000000000000e+03 2.382700000000000000e+04 1.997000000000000000e+03 2.190000000000000000e+02 2.580000000000000000e+02 2.800000000000000000e+02 3.386215210000000297e+01 -8.436615729999999758e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.100000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.120000000000000000e+02 2.080000000000000000e+02 3.750000000000000000e+02 3.021940000000000026e+01 -8.161238299999999413e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.160000000000000000e+02 6.969000000000000000e+03 1.959000000000000000e+03 1.310000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.042424099999999854e+01 -8.166149470000000576e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.750000000000000000e+02 8.346600000000000000e+04 1.963000000000000000e+03 3.900000000000000000e+01 2.340000000000000000e+02 2.800000000000000000e+02 2.854412830000000056e+01 -8.137658059999999693e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.510000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 4.620000000000000000e+02 7.170000000000000000e+02 1.336000000000000000e+03 2.576868860000000439e+01 -8.018318159999999750e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.678000000000000000e+03 3.600000000000000000e+03 1.925000000000000000e+03 4.200000000000000000e+01 9.530000000000000000e+02 2.800000000000000000e+02 4.060879669999999919e+01 -7.394614260000000172e+01 3.000000000000000000e+05 +4.500000000000000000e+00 6.252000000000000000e+03 2.615900000000000000e+04 1.982000000000000000e+03 3.900000000000000000e+01 4.140000000000000000e+02 5.000000000000000000e+01 2.845431810000000539e+01 -8.151597769999999343e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.280000000000000000e+03 6.969000000000000000e+03 1.986000000000000000e+03 3.300000000000000000e+01 4.030000000000000000e+02 3.350000000000000000e+02 3.365621210000000474e+01 -1.176447267999999866e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.864000000000000000e+03 8.712000000000000000e+04 2.017000000000000000e+03 1.000000000000000000e+01 1.540000000000000000e+02 2.800000000000000000e+02 3.590904899999999600e+01 -7.918118400000000179e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.798000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 8.400000000000000000e+01 4.000000000000000000e+02 2.740000000000000000e+02 3.356589730000000316e+01 -1.177059925000000078e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.162000000000000000e+03 1.540000000000000000e+03 2.018000000000000000e+03 3.000000000000000000e+01 1.770000000000000000e+02 2.810000000000000000e+02 2.837129199999999685e+01 -8.126069400000000087e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.210000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 5.600000000000000000e+01 3.530000000000000000e+02 5.030000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.300000000000000000e+02 6.969000000000000000e+03 1.975000000000000000e+03 1.480000000000000000e+02 2.960000000000000000e+02 5.220000000000000000e+02 2.575084100000000120e+01 -8.019988809999999546e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.807000000000000000e+03 8.657000000000000000e+03 1.959000000000000000e+03 4.100000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 2.576499360000000038e+01 -8.032507520000000056e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.846000000000000000e+03 5.314300000000000000e+04 2.007000000000000000e+03 2.320000000000000000e+02 1.200000000000000000e+02 1.700000000000000000e+01 3.573400469999999984e+01 -7.846615859999998577e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.624000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.000000000000000000e+01 2.160000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.774000000000000000e+03 1.236000000000000000e+04 1.981000000000000000e+03 9.100000000000000000e+01 1.520000000000000000e+02 2.800000000000000000e+02 2.858714039999999912e+01 -8.127173530000000312e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.945000000000000000e+03 5.000000000000000000e+03 1.930000000000000000e+03 2.200000000000000000e+01 3.540000000000000000e+02 2.800000000000000000e+02 4.057601999999999975e+01 -7.411551959999999895e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.229000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.250000000000000000e+02 6.890000000000000000e+02 7.790000000000000000e+02 2.580506539999999660e+01 -8.018623690000001147e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.200000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 1.400000000000000000e+01 4.150000000000000000e+02 4.430000000000000000e+02 2.575963919999999874e+01 -8.019025809999999410e+01 3.000000000000000000e+05 +3.000000000000000000e+00 4.769000000000000000e+03 1.563800000000000000e+04 1.962000000000000000e+03 1.280000000000000000e+02 8.800000000000000000e+01 2.800000000000000000e+02 3.598761439999999823e+01 -7.893185169999999573e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.130000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.600000000000000000e+01 8.780000000000000000e+02 2.800000000000000000e+02 2.576033190000000062e+01 -8.018934099999999887e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.775000000000000000e+03 7.500000000000000000e+03 1.953000000000000000e+03 1.320000000000000000e+02 2.140000000000000000e+02 2.800000000000000000e+02 2.573924089999999865e+01 -8.030196309999999471e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.858000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.000000000000000000e+01 5.320000000000000000e+02 2.800000000000000000e+02 3.363413700000000262e+01 -1.179404790000000105e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.116000000000000000e+03 6.969000000000000000e+03 1.906000000000000000e+03 4.000000000000000000e+00 7.700000000000000000e+01 2.800000000000000000e+02 3.033763169999999931e+01 -8.165073019999999815e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.149000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 8.500000000000000000e+01 1.260000000000000000e+02 3.790000000000000000e+02 2.577766169999999946e+01 -8.034520059999999830e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.846000000000000000e+03 2.500000000000000000e+03 1.984000000000000000e+03 2.600000000000000000e+01 5.270000000000000000e+02 7.990000000000000000e+02 3.346638989999999581e+01 -1.176942159999999973e+02 3.000000000000000000e+05 +4.000000000000000000e+00 4.000000000000000000e+03 9.350000000000000000e+03 1.993000000000000000e+03 6.000000000000000000e+00 3.250000000000000000e+02 2.300000000000000000e+02 3.360029429999999451e+01 -1.175803547000000009e+02 3.000000000000000000e+05 +1.000000000000000000e+00 6.960000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 8.900000000000000000e+01 3.520000000000000000e+02 5.190000000000000000e+02 2.579407689999999675e+01 -8.018707059999998421e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.287000000000000000e+03 5.247000000000000000e+03 2.014000000000000000e+03 1.210000000000000000e+02 1.640000000000000000e+02 1.010000000000000000e+02 2.849193649999999778e+01 -8.144761889999999482e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.280000000000000000e+02 6.969000000000000000e+03 1.900000000000000000e+03 1.700000000000000000e+01 2.950000000000000000e+02 2.800000000000000000e+02 3.927305810000000008e+01 -7.660940349999999910e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.575000000000000000e+03 3.825000000000000000e+03 1.977000000000000000e+03 1.400000000000000000e+01 4.600000000000000000e+02 2.000000000000000000e+02 3.355197760000000073e+01 -1.177037360000000064e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.600000000000000000e+03 2.000000000000000000e+03 1.892000000000000000e+03 4.200000000000000000e+01 6.390000000000000000e+02 2.800000000000000000e+02 4.068076029999999577e+01 -7.393293859999999995e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.860000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 6.000000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.020508400000000293e+01 -8.179390379999999539e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.355000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.000000000000000000e+00 1.300000000000000000e+02 5.000000000000000000e+01 3.011170800000000014e+01 -8.152058100000000707e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.043000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.770000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.955000000000000000e+03 1.947100000000000000e+04 1.920000000000000000e+03 1.400000000000000000e+02 1.510000000000000000e+02 2.800000000000000000e+02 3.381679479999999671e+01 -8.446531790000000228e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.400000000000000000e+03 3.049000000000000000e+03 1.972000000000000000e+03 2.800000000000000000e+01 8.850000000000000000e+02 2.800000000000000000e+02 3.352678060000000215e+01 -1.177610804999999914e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.116000000000000000e+03 8.620000000000000000e+03 1.960000000000000000e+03 2.130000000000000000e+02 1.570000000000000000e+02 2.800000000000000000e+02 2.851980280000000079e+01 -8.129031359999999040e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.537000000000000000e+03 6.969000000000000000e+03 1.939000000000000000e+03 1.420000000000000000e+02 3.570000000000000000e+02 2.800000000000000000e+02 2.575199669999999941e+01 -8.022749129999999695e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.942000000000000000e+03 1.559400000000000000e+04 1.979000000000000000e+03 1.410000000000000000e+02 1.100000000000000000e+02 2.800000000000000000e+02 3.749015900000000556e+01 -7.758280899999999747e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.062000000000000000e+03 8.645000000000000000e+03 1.957000000000000000e+03 9.600000000000000000e+01 5.130000000000000000e+02 2.800000000000000000e+02 3.380617469999999969e+01 -1.179503940999999827e+02 3.000000000000000000e+05 +6.500000000000000000e+00 8.010000000000000000e+03 4.356000000000000000e+04 2.001000000000000000e+03 2.000000000000000000e+01 2.490000000000000000e+02 2.800000000000000000e+02 3.392962599999999895e+01 -1.178008997000000022e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.736000000000000000e+03 7.840000000000000000e+03 1.935000000000000000e+03 1.530000000000000000e+02 9.900000000000000000e+01 2.800000000000000000e+02 3.372989030000000099e+01 -8.443862070000000131e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.497000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 5.100000000000000000e+01 2.560000000000000000e+02 2.800000000000000000e+02 3.023042509999999794e+01 -8.161943399999999826e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.281000000000000000e+03 1.742000000000000000e+03 2.014000000000000000e+03 4.200000000000000000e+01 2.080000000000000000e+02 2.370000000000000000e+02 3.583161299999999727e+01 -7.864080400000000282e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.261000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.410000000000000000e+02 5.980000000000000000e+02 2.800000000000000000e+02 3.362881270000000455e+01 -1.179233669000000049e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.580000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 6.300000000000000000e+01 7.930000000000000000e+02 1.989000000000000000e+03 2.575553910000000002e+01 -8.019507659999999305e+01 3.000000000000000000e+05 +6.500000000000000000e+00 4.377000000000000000e+03 8.541000000000000000e+03 2.016000000000000000e+03 7.600000000000000000e+01 5.680000000000000000e+02 1.980000000000000000e+02 3.366996590000000111e+01 -1.176805399999999935e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.405000000000000000e+03 6.969000000000000000e+03 1.982000000000000000e+03 5.100000000000000000e+01 1.000000000000000000e+02 4.990000000000000000e+02 2.595934800000000209e+01 -8.019205300000000136e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.330000000000000000e+03 7.397000000000000000e+03 2.013000000000000000e+03 9.100000000000000000e+01 9.240000000000000000e+02 1.150000000000000000e+02 3.362531079999999406e+01 -1.178509717999999822e+02 3.000000000000000000e+05 +1.500000000000000000e+00 2.010000000000000000e+03 1.306800000000000000e+04 1.959000000000000000e+03 3.000000000000000000e+01 1.440000000000000000e+02 2.800000000000000000e+02 3.385805689999999402e+01 -8.430156090000001257e+01 3.000000000000000000e+05 +1.000000000000000000e+00 4.810000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 3.070000000000000000e+02 5.180000000000000000e+02 2.800000000000000000e+02 2.577480199999999755e+01 -8.018814390000000003e+01 3.000000000000000000e+05 +5.000000000000000000e+00 6.044000000000000000e+03 2.178000000000000000e+04 2.005000000000000000e+03 3.300000000000000000e+01 2.960000000000000000e+02 2.800000000000000000e+02 3.580922679999999758e+01 -7.866072779999998943e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.854000000000000000e+03 6.969000000000000000e+03 1.959000000000000000e+03 4.200000000000000000e+01 9.400000000000000000e+01 2.800000000000000000e+02 3.027708610000000178e+01 -8.158751009999998871e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.617000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.000000000000000000e+01 1.410000000000000000e+02 4.000000000000000000e+00 3.372027109999999794e+01 -8.431667209999999102e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.584000000000000000e+03 6.000000000000000000e+03 1.987000000000000000e+03 1.300000000000000000e+01 3.290000000000000000e+02 2.750000000000000000e+02 3.378549730000000295e+01 -1.177842178000000075e+02 3.000000000000000000e+05 +4.000000000000000000e+00 4.099000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 7.500000000000000000e+01 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.030000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 6.790000000000000000e+02 4.630000000000000000e+02 3.090000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.772000000000000000e+03 1.193500000000000000e+04 2.000000000000000000e+03 2.000000000000000000e+00 1.830000000000000000e+02 2.440000000000000000e+02 3.583585000000000065e+01 -7.903379999999999939e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.078000000000000000e+03 6.969000000000000000e+03 1.875000000000000000e+03 1.000000000000000000e+01 2.960000000000000000e+02 2.800000000000000000e+02 3.927026089999999670e+01 -7.659002390000000560e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.429000000000000000e+03 6.969000000000000000e+03 1.973000000000000000e+03 2.700000000000000000e+01 2.800000000000000000e+01 3.750000000000000000e+02 3.032677899999999838e+01 -8.157775900000000036e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.250000000000000000e+03 6.968000000000000000e+03 1.905000000000000000e+03 1.300000000000000000e+01 4.000000000000000000e+02 2.800000000000000000e+02 4.062618189999999885e+01 -7.413259809999999561e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.339000000000000000e+03 9.775000000000000000e+03 1.989000000000000000e+03 1.000000000000000000e+00 5.560000000000000000e+02 1.270000000000000000e+02 3.345340290000000039e+01 -1.176393513999999954e+02 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.997000000000000000e+03 3.600000000000000000e+01 2.110000000000000000e+02 2.150000000000000000e+02 2.562439689999999715e+01 -8.041093999999999653e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.838000000000000000e+03 6.721000000000000000e+03 2.007000000000000000e+03 1.760000000000000000e+02 1.240000000000000000e+02 2.800000000000000000e+02 3.754224329999999554e+01 -7.755766880000000185e+01 3.000000000000000000e+05 +5.000000000000000000e+00 6.895000000000000000e+03 1.604800000000000000e+04 1.992000000000000000e+03 6.200000000000000000e+01 3.910000000000000000e+02 2.800000000000000000e+02 3.351862899999999712e+01 -1.176578820000000007e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.622000000000000000e+03 4.343000000000000000e+03 2.001000000000000000e+03 1.200000000000000000e+01 3.690000000000000000e+02 2.800000000000000000e+02 3.386575689999999383e+01 -1.178310224000000233e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.639000000000000000e+03 8.446000000000000000e+03 2.004000000000000000e+03 2.500000000000000000e+01 1.100000000000000000e+02 5.500000000000000000e+01 2.846353030000000217e+01 -8.126674590000000364e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.450000000000000000e+03 2.064740000000000000e+05 1.991000000000000000e+03 8.000000000000000000e+00 2.440000000000000000e+02 2.800000000000000000e+02 2.562536599999999964e+01 -8.053672890000001416e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.627000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 4.550000000000000000e+02 9.120000000000000000e+02 2.800000000000000000e+02 2.576926429999999968e+01 -8.018584990000000801e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.020000000000000000e+03 2.003700000000000000e+04 1.949000000000000000e+03 1.300000000000000000e+02 6.400000000000000000e+01 2.800000000000000000e+02 3.371285549999999631e+01 -8.444313259999998422e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.242000000000000000e+03 2.500000000000000000e+03 1.900000000000000000e+03 1.200000000000000000e+02 1.650000000000000000e+03 2.800000000000000000e+02 3.361007910000000010e+01 -1.179300881000000061e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.284000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 3.400000000000000000e+01 1.290000000000000000e+02 3.100000000000000000e+02 3.024310900000000402e+01 -8.159193000000000495e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.237000000000000000e+03 1.531200000000000000e+04 1.970000000000000000e+03 6.900000000000000000e+01 2.150000000000000000e+02 2.800000000000000000e+02 2.563375880000000251e+01 -8.034398229999999330e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.900000000000000000e+02 6.969000000000000000e+03 1.973000000000000000e+03 6.800000000000000000e+01 3.030000000000000000e+02 5.920000000000000000e+02 2.580977710000000158e+01 -8.018654750000000320e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.834000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 6.000000000000000000e+00 1.450000000000000000e+02 2.800000000000000000e+02 3.386768889999999743e+01 -8.446451840000000288e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.378000000000000000e+03 6.969000000000000000e+03 1.957000000000000000e+03 8.500000000000000000e+01 9.700000000000000000e+01 2.800000000000000000e+02 3.027276200000000017e+01 -8.184137199999999268e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.850000000000000000e+03 1.910000000000000000e+03 1.990000000000000000e+03 3.700000000000000000e+01 4.140000000000000000e+02 2.800000000000000000e+02 4.069342899999999474e+01 -7.391432299999999600e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.083000000000000000e+03 1.816000000000000000e+03 1.989000000000000000e+03 5.000000000000000000e+00 3.960000000000000000e+02 3.390000000000000000e+02 3.368692399999999765e+01 -1.176268620000000169e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.390000000000000000e+03 6.969000000000000000e+03 1.986000000000000000e+03 2.100000000000000000e+02 3.850000000000000000e+02 2.800000000000000000e+02 2.579131600000000191e+01 -8.018615520000000174e+01 3.000000000000000000e+05 +4.750000000000000000e+00 4.200000000000000000e+03 2.325000000000000000e+04 1.951000000000000000e+03 4.400000000000000000e+01 4.450000000000000000e+02 2.800000000000000000e+02 4.052655930000000239e+01 -7.422380200000000627e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.838000000000000000e+03 8.100000000000000000e+03 1.913000000000000000e+03 4.010000000000000000e+02 8.300000000000000000e+01 2.800000000000000000e+02 3.933003420000000006e+01 -7.668209859999998912e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.300000000000000000e+03 3.408000000000000000e+03 1.999000000000000000e+03 7.700000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 4.055234860000000197e+01 -7.421131770000000927e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.110000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 3.500000000000000000e+01 4.630000000000000000e+02 2.800000000000000000e+02 2.579070619999999892e+01 -8.019238570000000266e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.430000000000000000e+03 6.969000000000000000e+03 1.983000000000000000e+03 1.600000000000000000e+02 7.690000000000000000e+02 1.504000000000000000e+03 2.578995019999999627e+01 -8.017435159999999428e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.941000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 8.400000000000000000e+01 2.800000000000000000e+02 3.363034299999999632e+01 -8.454034599999999955e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.092000000000000000e+03 6.969000000000000000e+03 1.963000000000000000e+03 1.160000000000000000e+02 3.200000000000000000e+02 3.100000000000000000e+02 3.374039979999999872e+01 -1.178314757999999927e+02 3.000000000000000000e+05 +1.000000000000000000e+00 7.910000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 4.900000000000000000e+01 4.240000000000000000e+02 4.860000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.450000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 4.400000000000000000e+01 1.360000000000000000e+02 2.050000000000000000e+02 2.594711000000000212e+01 -8.016585200000000100e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.061000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 9.600000000000000000e+01 4.240000000000000000e+02 7.550000000000000000e+02 2.575538099999999986e+01 -8.020753340000000264e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.478000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.530000000000000000e+02 2.500000000000000000e+02 3.400000000000000000e+02 3.576851370000000685e+01 -7.868188209999999572e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.325000000000000000e+03 6.969000000000000000e+03 1.962000000000000000e+03 1.200000000000000000e+02 1.250000000000000000e+02 2.800000000000000000e+02 3.035924199999999828e+01 -8.159106509999999446e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.800000000000000000e+02 6.969000000000000000e+03 2.017000000000000000e+03 2.190000000000000000e+02 6.110000000000000000e+02 2.800000000000000000e+02 2.576568989999999815e+01 -8.019390079999999443e+01 3.000000000000000000e+05 +9.500000000000000000e+00 7.454000000000000000e+03 3.833200000000000000e+04 2.012000000000000000e+03 1.300000000000000000e+01 6.700000000000000000e+02 2.800000000000000000e+02 2.568272299999999930e+01 -8.028844000000000847e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.244000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 1.510000000000000000e+02 1.430000000000000000e+02 2.200000000000000000e+02 3.570309660000000207e+01 -7.879000970000001303e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.800000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 1.000000000000000000e+00 2.170000000000000000e+02 1.500000000000000000e+02 2.572808900000000065e+01 -8.030291070000001241e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.139000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 4.000000000000000000e+00 8.880000000000000000e+02 1.957000000000000000e+03 2.575908800000000198e+01 -8.019181670000000395e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.350000000000000000e+03 4.000000000000000000e+03 2.018000000000000000e+03 5.800000000000000000e+01 1.332000000000000000e+03 2.800000000000000000e+02 4.076530699999999996e+01 -7.376624900000000196e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.040000000000000000e+03 6.969000000000000000e+03 1.940000000000000000e+03 1.400000000000000000e+02 4.700000000000000000e+01 2.800000000000000000e+02 3.923644900000000035e+01 -7.660517040000000577e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.454000000000000000e+03 9.583000000000000000e+03 2.015000000000000000e+03 2.700000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 3.375619950000000102e+01 -8.433849060000000009e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.870000000000000000e+03 7.000000000000000000e+03 1.966000000000000000e+03 9.000000000000000000e+00 4.540000000000000000e+02 2.800000000000000000e+02 3.381149089999999546e+01 -1.178206789999999984e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.494000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 4.800000000000000000e+01 7.360000000000000000e+02 2.800000000000000000e+02 2.576401369999999957e+01 -8.019129750000000456e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.871000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.140000000000000000e+02 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.851000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.300000000000000000e+01 1.840000000000000000e+02 2.800000000000000000e+02 3.582256300000000238e+01 -7.891303800000000024e+01 3.000000000000000000e+05 +7.000000000000000000e+00 5.190000000000000000e+03 1.929700000000000000e+04 2.005000000000000000e+03 1.000000000000000000e+00 3.460000000000000000e+02 2.800000000000000000e+02 3.386219539999999739e+01 -8.436139310000000080e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.276000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.700000000000000000e+02 6.500000000000000000e+02 2.800000000000000000e+02 2.576553850000000168e+01 -8.019382759999999166e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.756000000000000000e+03 1.026000000000000000e+03 1.983000000000000000e+03 5.800000000000000000e+01 2.680000000000000000e+02 3.070000000000000000e+02 4.060291029999999779e+01 -7.417079809999998474e+01 3.000000000000000000e+05 +5.000000000000000000e+00 1.973000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 5.100000000000000000e+01 3.420000000000000000e+02 2.800000000000000000e+02 2.576482850000000013e+01 -8.021503879999998787e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.800000000000000000e+03 1.960200000000000000e+04 1.928000000000000000e+03 9.100000000000000000e+01 3.210000000000000000e+02 2.800000000000000000e+02 3.379644310000000473e+01 -8.436244040000001121e+01 3.000000000000000000e+05 +5.000000000000000000e+00 2.520000000000000000e+03 1.307000000000000000e+03 1.900000000000000000e+03 5.000000000000000000e+00 2.620000000000000000e+02 2.800000000000000000e+02 3.929086699999999865e+01 -7.659061040000000276e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.620000000000000000e+02 1.000000000000000000e+03 1.972000000000000000e+03 9.000000000000000000e+01 6.900000000000000000e+01 2.100000000000000000e+02 2.857449799999999840e+01 -8.145579929999999536e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.745000000000000000e+03 7.148000000000000000e+03 1.907000000000000000e+03 8.400000000000000000e+01 1.260000000000000000e+02 2.800000000000000000e+02 3.936328729999999609e+01 -7.661074509999998838e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.720000000000000000e+02 6.969000000000000000e+03 1.960000000000000000e+03 4.500000000000000000e+01 5.100000000000000000e+01 2.800000000000000000e+02 3.036056900000000169e+01 -8.173863399999999046e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.125000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 1.000000000000000000e+00 1.260000000000000000e+02 3.200000000000000000e+02 2.577536080000000140e+01 -8.034705649999999366e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.230000000000000000e+03 1.146900000000000000e+04 1.954000000000000000e+03 1.620000000000000000e+02 1.020000000000000000e+02 2.800000000000000000e+02 2.852317189999999769e+01 -8.142118059999999957e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.078000000000000000e+03 2.722500000000000000e+04 1.993000000000000000e+03 2.520000000000000000e+02 2.170000000000000000e+02 2.800000000000000000e+02 2.574124750000000006e+01 -8.041861209999999005e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.740000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 4.810000000000000000e+02 4.690000000000000000e+02 4.630000000000000000e+02 2.576500499999999860e+01 -8.019016600000000494e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.492000000000000000e+03 4.323000000000000000e+03 1.981000000000000000e+03 4.000000000000000000e+01 1.880000000000000000e+02 2.810000000000000000e+02 2.567876210000000015e+01 -8.043571620000000166e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.032000000000000000e+03 7.452000000000000000e+03 1.972000000000000000e+03 7.000000000000000000e+00 1.360000000000000000e+02 2.800000000000000000e+02 2.585275790000000029e+01 -8.023909949999999469e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.010000000000000000e+02 6.969000000000000000e+03 2.018000000000000000e+03 2.100000000000000000e+01 8.200000000000000000e+02 2.590000000000000000e+02 4.072033689999999950e+01 -7.380871679999999913e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.470000000000000000e+02 6.969000000000000000e+03 1.949000000000000000e+03 2.000000000000000000e+00 5.740000000000000000e+02 3.250000000000000000e+02 4.073189510000000269e+01 -7.385408180000000300e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.478000000000000000e+03 1.260000000000000000e+03 1.992000000000000000e+03 5.000000000000000000e+01 2.970000000000000000e+02 9.000000000000000000e+01 4.053661439999999772e+01 -7.421980100000000391e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 7.000000000000000000e+00 2.000000000000000000e+02 5.000000000000000000e+01 3.383319210000000510e+01 -8.438372990000000584e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.041000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.200000000000000000e+02 3.160000000000000000e+02 7.000000000000000000e+02 2.577589820000000032e+01 -8.019006670000000270e+01 3.000000000000000000e+05 +5.500000000000000000e+00 4.734000000000000000e+03 8.106000000000000000e+03 1.998000000000000000e+03 1.260000000000000000e+02 4.960000000000000000e+02 2.150000000000000000e+02 3.372195939999999581e+01 -1.177524563999999998e+02 3.000000000000000000e+05 +1.000000000000000000e+00 6.600000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 3.490000000000000000e+02 1.140000000000000000e+02 1.890000000000000000e+02 2.594998700000000014e+01 -8.019515799999999217e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.860000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 4.060000000000000000e+02 4.360000000000000000e+02 5.890000000000000000e+02 2.576500499999999860e+01 -8.019016600000000494e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.084000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.960000000000000000e+02 1.130000000000000000e+02 3.500000000000000000e+01 3.047157999999999944e+01 -8.162567299999999193e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.767000000000000000e+03 1.432400000000000000e+04 2.005000000000000000e+03 7.000000000000000000e+00 2.350000000000000000e+02 2.800000000000000000e+02 2.569713519999999818e+01 -8.039809119999999609e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.134000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 6.200000000000000000e+01 6.260000000000000000e+02 9.860000000000000000e+02 2.576277500000000131e+01 -8.019246300000000360e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.679000000000000000e+03 7.100000000000000000e+03 1.952000000000000000e+03 1.070000000000000000e+02 2.230000000000000000e+02 2.800000000000000000e+02 2.575828010000000035e+01 -8.023130740000000571e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.771000000000000000e+03 6.969000000000000000e+03 1.993000000000000000e+03 5.000000000000000000e+00 3.530000000000000000e+02 3.000000000000000000e+02 3.379621599999999404e+01 -1.178183969999999903e+02 3.000000000000000000e+05 +3.000000000000000000e+00 3.000000000000000000e+03 2.000000000000000000e+03 1.989000000000000000e+03 2.800000000000000000e+01 3.000000000000000000e+02 2.800000000000000000e+02 4.064370789999999545e+01 -7.399190500000000270e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.419000000000000000e+03 4.265000000000000000e+03 2.013000000000000000e+03 1.470000000000000000e+02 1.450000000000000000e+02 9.300000000000000000e+01 2.848750550000000104e+01 -8.144692909999999131e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.080000000000000000e+03 1.926000000000000000e+03 1.956000000000000000e+03 1.000000000000000000e+00 1.190000000000000000e+02 2.800000000000000000e+02 3.929247700000000521e+01 -7.652171800000000701e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.426000000000000000e+03 1.698800000000000000e+04 1.956000000000000000e+03 1.900000000000000000e+01 3.370000000000000000e+02 2.800000000000000000e+02 3.382064429999999788e+01 -8.434962469999999257e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.635000000000000000e+03 2.178000000000000000e+04 1.925000000000000000e+03 4.100000000000000000e+01 3.230000000000000000e+02 2.800000000000000000e+02 3.385937260000000038e+01 -8.434576290000001109e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.600000000000000000e+03 1.796900000000000000e+04 2.017000000000000000e+03 1.180000000000000000e+02 2.610000000000000000e+02 2.800000000000000000e+02 2.574464299999999994e+01 -8.037234709999998472e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.128000000000000000e+03 6.969000000000000000e+03 2.010000000000000000e+03 8.170000000000000000e+02 6.100000000000000000e+02 9.820000000000000000e+02 2.579653830000000170e+01 -8.018829110000000071e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.863000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 5.500000000000000000e+01 6.310000000000000000e+02 1.244000000000000000e+03 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.574000000000000000e+03 4.000000000000000000e+03 1.970000000000000000e+03 9.000000000000000000e+00 3.340000000000000000e+02 2.800000000000000000e+02 4.060005519999999990e+01 -7.413932340000000920e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.320000000000000000e+03 6.969000000000000000e+03 1.970000000000000000e+03 2.000000000000000000e+00 2.530000000000000000e+02 5.680000000000000000e+02 2.574988370000000160e+01 -8.020160679999999331e+01 3.000000000000000000e+05 +5.000000000000000000e+00 5.040000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 8.100000000000000000e+01 7.140000000000000000e+02 1.800000000000000000e+02 3.342599409999999693e+01 -1.175957257000000027e+02 3.000000000000000000e+05 +4.000000000000000000e+00 2.126000000000000000e+03 6.969000000000000000e+03 1.942000000000000000e+03 7.100000000000000000e+01 8.700000000000000000e+01 2.800000000000000000e+02 3.024189949999999882e+01 -8.174701109999999460e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.340000000000000000e+03 1.067000000000000000e+03 2.006000000000000000e+03 1.600000000000000000e+01 2.050000000000000000e+02 5.700000000000000000e+01 2.856825999999999866e+01 -8.132816300000000354e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.884000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.800000000000000000e+02 2.800000000000000000e+02 3.568638200000000182e+01 -7.875604300000000535e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.262000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 8.200000000000000000e+01 2.140000000000000000e+02 6.300000000000000000e+01 2.570020110000000102e+01 -8.036523420000000328e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.655000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 2.540000000000000000e+02 5.260000000000000000e+02 1.215000000000000000e+03 2.576795080000000127e+01 -8.018644700000000114e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.404000000000000000e+03 7.800000000000000000e+03 1.954000000000000000e+03 2.250000000000000000e+02 2.600000000000000000e+02 2.800000000000000000e+02 2.571875599999999906e+01 -8.034274229999999761e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.600000000000000000e+03 1.098800000000000000e+04 1.980000000000000000e+03 7.000000000000000000e+00 5.310000000000000000e+02 2.800000000000000000e+02 4.061834499999999792e+01 -7.409365499999999827e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.428000000000000000e+03 7.140000000000000000e+03 1.957000000000000000e+03 1.140000000000000000e+02 3.890000000000000000e+02 2.800000000000000000e+02 2.584526250000000047e+01 -8.018003040000000681e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.875000000000000000e+03 1.306800000000000000e+04 2.017000000000000000e+03 2.600000000000000000e+01 1.870000000000000000e+02 3.360000000000000000e+02 3.584108900000000375e+01 -7.906090799999999774e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.364000000000000000e+03 1.742000000000000000e+03 2.014000000000000000e+03 5.600000000000000000e+01 2.010000000000000000e+02 2.370000000000000000e+02 3.583039839999999998e+01 -7.864100410000000352e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.665000000000000000e+03 1.742400000000000000e+04 2.017000000000000000e+03 6.500000000000000000e+01 2.710000000000000000e+02 2.800000000000000000e+02 3.385068770000000171e+01 -8.429397490000000914e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.308000000000000000e+03 3.600000000000000000e+03 1.955000000000000000e+03 4.000000000000000000e+01 1.570000000000000000e+02 2.800000000000000000e+02 2.583708890000000125e+01 -8.022256600000000049e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.880000000000000000e+02 6.969000000000000000e+03 1.937000000000000000e+03 1.280000000000000000e+02 3.720000000000000000e+02 2.800000000000000000e+02 2.578825080000000014e+01 -8.022505129999998985e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.664000000000000000e+03 4.100000000000000000e+03 1.910000000000000000e+03 8.200000000000000000e+01 2.250000000000000000e+02 2.800000000000000000e+02 4.064023339999999962e+01 -7.408919350000000748e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.240000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 5.000000000000000000e+00 1.380000000000000000e+02 6.500000000000000000e+01 3.045804089999999675e+01 -8.153380240000001322e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.438000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 2.660000000000000000e+02 8.800000000000000000e+01 2.800000000000000000e+02 3.030367150000000365e+01 -8.183035300000000234e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.167000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.300000000000000000e+02 6.830000000000000000e+02 2.800000000000000000e+02 2.576405499999999904e+01 -8.019230129999999690e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.169000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 4.900000000000000000e+01 4.180000000000000000e+02 6.030000000000000000e+02 2.577163660000000078e+01 -8.018580450000000326e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.695000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.280000000000000000e+02 2.800000000000000000e+02 3.575422100000000114e+01 -7.875321900000000142e+01 3.000000000000000000e+05 +6.500000000000000000e+00 6.300000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 6.340000000000000000e+02 1.825000000000000000e+03 4.709000000000000000e+03 2.575553910000000002e+01 -8.019507659999999305e+01 3.000000000000000000e+05 +1.500000000000000000e+00 8.780000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 1.600000000000000000e+01 3.020000000000000000e+02 6.280000000000000000e+02 2.576103299999999763e+01 -8.019439599999999757e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.154000000000000000e+03 6.927000000000000000e+03 2.005000000000000000e+03 5.000000000000000000e+00 9.700000000000000000e+01 1.230000000000000000e+02 2.835394499999999951e+01 -8.134580699999999354e+01 3.000000000000000000e+05 +6.000000000000000000e+00 7.681000000000000000e+03 3.920400000000000000e+04 2.006000000000000000e+03 1.380000000000000000e+02 3.450000000000000000e+02 2.800000000000000000e+02 3.378218509999999952e+01 -8.433976429999999880e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.095000000000000000e+03 8.062000000000000000e+03 1.936000000000000000e+03 1.540000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 2.587468560000000295e+01 -8.021398349999999766e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.936000000000000000e+03 2.712000000000000000e+03 2.003000000000000000e+03 7.400000000000000000e+01 2.010000000000000000e+02 3.250000000000000000e+02 2.855857400000000013e+01 -8.133202199999999493e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.742000000000000000e+03 1.500000000000000000e+03 2.018000000000000000e+03 5.500000000000000000e+01 3.600000000000000000e+02 2.270000000000000000e+02 3.352647039999999379e+01 -1.176288155999999958e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.372000000000000000e+03 1.051100000000000000e+04 1.959000000000000000e+03 9.000000000000000000e+00 1.470000000000000000e+02 2.800000000000000000e+02 3.752477650000000153e+01 -7.751318929999999341e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.184000000000000000e+03 5.850000000000000000e+03 1.936000000000000000e+03 3.700000000000000000e+01 1.960000000000000000e+02 2.800000000000000000e+02 2.576261519999999905e+01 -8.023433149999999614e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.713000000000000000e+03 5.000000000000000000e+03 2.004000000000000000e+03 2.660000000000000000e+02 1.550000000000000000e+02 2.800000000000000000e+02 2.568646489999999716e+01 -8.045827400000000296e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.595000000000000000e+03 3.683000000000000000e+03 2.017000000000000000e+03 1.140000000000000000e+02 1.780000000000000000e+02 3.170000000000000000e+02 3.938985789999999554e+01 -7.666168590000000904e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.380000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 8.500000000000000000e+01 5.540000000000000000e+02 6.700000000000000000e+02 2.578343549999999951e+01 -8.019018100000000970e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.796000000000000000e+03 1.025500000000000000e+04 1.925000000000000000e+03 5.000000000000000000e+00 2.500000000000000000e+02 2.800000000000000000e+02 2.854973499999999831e+01 -8.136917859999999791e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.898000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.860000000000000000e+02 7.380000000000000000e+02 1.244000000000000000e+03 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +4.500000000000000000e+00 2.680000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.100000000000000000e+01 2.810000000000000000e+02 3.600000000000000000e+02 3.380494850000000184e+01 -8.438763500000000306e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.830000000000000000e+02 6.969000000000000000e+03 2.003000000000000000e+03 3.850000000000000000e+02 5.070000000000000000e+02 1.100000000000000000e+03 2.575885050000000120e+01 -8.019221249999999657e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.416000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 3.650000000000000000e+02 8.400000000000000000e+01 2.800000000000000000e+02 3.047063969999999955e+01 -8.165371659999999565e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.445000000000000000e+03 4.000000000000000000e+03 2.012000000000000000e+03 4.300000000000000000e+01 7.160000000000000000e+02 2.800000000000000000e+02 4.075166790000000105e+01 -7.377129700000000412e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.583000000000000000e+03 1.041000000000000000e+04 1.965000000000000000e+03 9.200000000000000000e+01 7.100000000000000000e+01 2.800000000000000000e+02 3.374236700000000155e+01 -8.452117490000000544e+01 3.000000000000000000e+05 +1.500000000000000000e+00 6.510000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 1.340000000000000000e+02 2.950000000000000000e+02 4.300000000000000000e+02 2.577589820000000032e+01 -8.019006670000000270e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.004000000000000000e+03 6.013000000000000000e+03 1.939000000000000000e+03 1.030000000000000000e+02 3.140000000000000000e+02 2.800000000000000000e+02 2.585051839999999856e+01 -8.019210520000000031e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 1.000000000000000000e+00 1.140000000000000000e+02 3.750000000000000000e+02 2.595798590000000061e+01 -8.018603099999999984e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.336000000000000000e+03 6.969000000000000000e+03 1.919000000000000000e+03 1.030000000000000000e+02 5.200000000000000000e+01 2.800000000000000000e+02 3.929351099999999519e+01 -7.668313000000000557e+01 3.000000000000000000e+05 +6.000000000000000000e+00 5.337000000000000000e+03 7.083000000000000000e+03 1.998000000000000000e+03 1.300000000000000000e+01 8.610000000000000000e+02 2.800000000000000000e+02 3.361724870000000465e+01 -1.179119341999999904e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.006000000000000000e+03 1.132500000000000000e+04 2.016000000000000000e+03 3.000000000000000000e+00 1.980000000000000000e+02 5.000000000000000000e+01 3.579660859999999900e+01 -7.890536249999999541e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.345000000000000000e+03 2.039500000000000000e+04 2.005000000000000000e+03 5.000000000000000000e+00 1.260000000000000000e+02 2.500000000000000000e+01 2.850556080000000136e+01 -8.146664780000000405e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.099000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.570000000000000000e+02 4.450000000000000000e+02 7.000000000000000000e+02 2.576275199999999899e+01 -8.019466899999999043e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.012000000000000000e+03 6.969000000000000000e+03 2.014000000000000000e+03 5.100000000000000000e+01 4.450000000000000000e+02 1.022000000000000000e+03 2.576037200000000027e+01 -8.019019699999999773e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.440000000000000000e+03 9.000000000000000000e+03 1.988000000000000000e+03 4.000000000000000000e+01 3.480000000000000000e+02 2.100000000000000000e+02 3.364056389999999652e+01 -1.176266177000000113e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.802000000000000000e+03 3.998800000000000000e+04 2.016000000000000000e+03 3.490000000000000000e+02 1.840000000000000000e+02 2.800000000000000000e+02 3.591821500000000356e+01 -7.868579900000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.748000000000000000e+03 6.969000000000000000e+03 1.945000000000000000e+03 1.110000000000000000e+02 2.800000000000000000e+02 2.800000000000000000e+02 2.587796739999999929e+01 -8.019250169999999400e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.480000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 5.100000000000000000e+01 1.950000000000000000e+02 2.650000000000000000e+02 2.568776789999999721e+01 -8.044518300000000011e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.860000000000000000e+02 3.500000000000000000e+02 2.800000000000000000e+02 2.576844750000000062e+01 -8.019134870000000603e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.310000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 1.830000000000000000e+02 4.780000000000000000e+02 5.610000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.132000000000000000e+03 6.969000000000000000e+03 1.966000000000000000e+03 1.210000000000000000e+02 1.320000000000000000e+02 3.340000000000000000e+02 2.594547599999999932e+01 -8.017153990000001329e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.792000000000000000e+03 2.376000000000000000e+03 1.980000000000000000e+03 3.000000000000000000e+01 3.240000000000000000e+02 2.800000000000000000e+02 4.060454500000000166e+01 -7.416081800000000612e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.764000000000000000e+03 2.300000000000000000e+04 2.000000000000000000e+03 1.300000000000000000e+01 8.230000000000000000e+02 2.800000000000000000e+02 3.355096389999999928e+01 -1.177598490999999967e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.505000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 9.300000000000000000e+01 6.310000000000000000e+02 9.600000000000000000e+02 2.576905069999999753e+01 -8.018702700000000050e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.381000000000000000e+03 1.170000000000000000e+04 1.977000000000000000e+03 2.110000000000000000e+02 1.740000000000000000e+02 7.900000000000000000e+01 2.566868560000000343e+01 -8.040927390000000230e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.215000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 8.600000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 3.031493499999999841e+01 -8.172351299999999696e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.621000000000000000e+03 6.969000000000000000e+03 1.995000000000000000e+03 6.300000000000000000e+01 7.090000000000000000e+02 4.530000000000000000e+02 3.360345439999999684e+01 -1.178256128999999959e+02 3.000000000000000000e+05 +2.000000000000000000e+00 8.000000000000000000e+02 6.969000000000000000e+03 1.974000000000000000e+03 2.530000000000000000e+02 1.380000000000000000e+02 2.250000000000000000e+02 2.558224099999999979e+01 -8.037605999999999540e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.360000000000000000e+03 2.000000000000000000e+03 1.989000000000000000e+03 3.500000000000000000e+01 6.780000000000000000e+02 2.800000000000000000e+02 4.061896610000000152e+01 -7.400798950000000787e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.404000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.300000000000000000e+01 5.560000000000000000e+02 9.500000000000000000e+02 2.576405499999999904e+01 -8.019230129999999690e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.788000000000000000e+03 2.907000000000000000e+03 2.007000000000000000e+03 4.200000000000000000e+01 1.310000000000000000e+02 8.600000000000000000e+01 2.851945800000000020e+01 -8.115493800000000135e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.630000000000000000e+03 7.201000000000000000e+03 1.954000000000000000e+03 1.800000000000000000e+02 3.930000000000000000e+02 2.800000000000000000e+02 3.380887979999999260e+01 -1.179572398999999905e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.220000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 4.920000000000000000e+02 1.300000000000000000e+02 5.000000000000000000e+02 2.595403380000000126e+01 -8.018259790000000464e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.168000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.820000000000000000e+02 3.380000000000000000e+02 9.710000000000000000e+02 2.579407689999999675e+01 -8.018707059999998421e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.489000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.500000000000000000e+02 2.800000000000000000e+02 2.843310150000000291e+01 -8.155989179999998839e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.773000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.110000000000000000e+02 2.800000000000000000e+02 2.841970799999999997e+01 -8.119032070000000090e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.906000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.000000000000000000e+00 1.790000000000000000e+02 2.500000000000000000e+01 3.382084499999999849e+01 -8.437140999999999735e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.029000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 2.840428689999999889e+01 -8.124617750000000171e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.008000000000000000e+03 4.000000000000000000e+03 1.955000000000000000e+03 9.000000000000000000e+00 6.240000000000000000e+02 2.800000000000000000e+02 4.068215099999999751e+01 -7.380053000000000907e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.877000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.530000000000000000e+02 2.800000000000000000e+02 3.014466280000000253e+01 -8.164342490000001362e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.400000000000000000e+03 4.300000000000000000e+03 1.965000000000000000e+03 2.100000000000000000e+01 3.540000000000000000e+02 2.800000000000000000e+02 4.055282220000000137e+01 -7.417113080000000025e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.198000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.590000000000000000e+02 1.167000000000000000e+03 2.592000000000000000e+03 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.279000000000000000e+03 2.178000000000000000e+04 1.962000000000000000e+03 2.490000000000000000e+02 3.950000000000000000e+02 2.800000000000000000e+02 3.385843679999999267e+01 -8.434020300000000248e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.523000000000000000e+03 8.712000000000000000e+03 2.017000000000000000e+03 6.100000000000000000e+01 2.840000000000000000e+02 2.800000000000000000e+02 3.375425429999999238e+01 -8.430844720000000336e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.830000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 7.000000000000000000e+00 4.090000000000000000e+02 3.630000000000000000e+02 3.377808710000000758e+01 -8.438389670000000820e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.013000000000000000e+03 1.974100000000000000e+04 1.925000000000000000e+03 2.800000000000000000e+01 2.590000000000000000e+02 2.800000000000000000e+02 2.859066550000000362e+01 -8.138532840000000590e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.220000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.290000000000000000e+02 1.060000000000000000e+02 2.800000000000000000e+02 3.031738499999999803e+01 -8.156275359999999353e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.211000000000000000e+03 6.969000000000000000e+03 1.903000000000000000e+03 1.700000000000000000e+02 1.240000000000000000e+02 7.330000000000000000e+02 3.930217340000000092e+01 -7.661572220000000755e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.670000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 1.480000000000000000e+02 2.240000000000000000e+02 2.800000000000000000e+02 2.580842939999999786e+01 -8.023799100000000806e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.113000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 3.578513140000000448e+01 -7.890272519999999190e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.511000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.620000000000000000e+02 2.800000000000000000e+02 3.391748889999999506e+01 -8.429566450000000088e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.338000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 1.160000000000000000e+02 2.480000000000000000e+02 5.990000000000000000e+02 3.032690410000000369e+01 -8.166372579999999459e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.878000000000000000e+03 1.306800000000000000e+04 1.984000000000000000e+03 1.600000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 3.577789650000000421e+01 -7.881780159999999569e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.350000000000000000e+03 6.729000000000000000e+03 2.017000000000000000e+03 1.630000000000000000e+02 1.170000000000000000e+02 2.800000000000000000e+02 2.853451199999999943e+01 -8.144558399999999665e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.340000000000000000e+03 1.134200000000000000e+04 1.952000000000000000e+03 1.310000000000000000e+02 5.090000000000000000e+02 2.800000000000000000e+02 2.574437410000000170e+01 -8.022030190000000971e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.710000000000000000e+03 6.969000000000000000e+03 1.939000000000000000e+03 6.100000000000000000e+01 2.720000000000000000e+02 2.800000000000000000e+02 3.020159000000000304e+01 -8.159112799999999766e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.312000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.250000000000000000e+02 1.720000000000000000e+02 4.500000000000000000e+01 2.567785069999999692e+01 -8.047171550000000195e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.661000000000000000e+03 6.534000000000000000e+03 2.017000000000000000e+03 2.420000000000000000e+02 1.650000000000000000e+02 1.020000000000000000e+02 3.577463902732120715e+01 -7.887400872652391115e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.644000000000000000e+03 6.098000000000000000e+03 2.007000000000000000e+03 1.000000000000000000e+00 8.400000000000000000e+01 5.000000000000000000e+01 3.586529689999999704e+01 -7.851961000000000013e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.176000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.420000000000000000e+02 2.590000000000000000e+02 7.440000000000000000e+02 2.577653410000000278e+01 -8.018886650000000316e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.500000000000000000e+03 3.123000000000000000e+03 1.901000000000000000e+03 3.000000000000000000e+01 4.530000000000000000e+02 2.800000000000000000e+02 4.086979799999999585e+01 -7.388729499999999462e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.250000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 5.000000000000000000e+00 3.450000000000000000e+02 5.850000000000000000e+02 2.576199079999999952e+01 -8.019041870000000927e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.050000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.910000000000000000e+02 2.800000000000000000e+02 3.391473570000000137e+01 -8.438426719999999648e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.293000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 8.000000000000000000e+00 7.830000000000000000e+02 1.383000000000000000e+03 2.576932399999999745e+01 -8.018376899999999807e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.027000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 5.800000000000000000e+01 3.430000000000000000e+02 1.102000000000000000e+03 3.384531619999999918e+01 -8.437153719999999169e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.252000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 2.000000000000000000e+00 3.750000000000000000e+02 4.940000000000000000e+02 3.355998300000000256e+01 -1.176339720000000000e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.752000000000000000e+03 5.270000000000000000e+03 2.008000000000000000e+03 3.920000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.934704749999999507e+01 -7.664119859999999562e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.828000000000000000e+03 1.964500000000000000e+04 2.003000000000000000e+03 1.400000000000000000e+01 1.180000000000000000e+02 2.800000000000000000e+02 3.743240689999999660e+01 -7.757127800000000661e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.689000000000000000e+03 4.800000000000000000e+03 1.967000000000000000e+03 4.000000000000000000e+01 4.000000000000000000e+02 2.800000000000000000e+02 3.385707760000000377e+01 -1.180397035999999815e+02 3.000000000000000000e+05 +1.500000000000000000e+00 8.650000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 6.400000000000000000e+01 2.890000000000000000e+02 4.500000000000000000e+02 2.577653410000000278e+01 -8.018886650000000316e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.468000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.720000000000000000e+02 2.800000000000000000e+02 2.836996119999999522e+01 -8.123241350000000693e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.322000000000000000e+03 1.328500000000000000e+04 2.017000000000000000e+03 1.680000000000000000e+02 2.800000000000000000e+02 2.800000000000000000e+02 3.598968200000000195e+01 -7.893210500000000707e+01 3.000000000000000000e+05 +5.000000000000000000e+00 5.522000000000000000e+03 2.265100000000000000e+04 2.005000000000000000e+03 5.600000000000000000e+01 1.360000000000000000e+02 5.400000000000000000e+01 3.591188280000000077e+01 -7.900769900000000234e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.060000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 8.500000000000000000e+01 1.890000000000000000e+02 3.510000000000000000e+02 2.567144150000000025e+01 -8.037495789999999829e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.542000000000000000e+03 2.125000000000000000e+03 1.896000000000000000e+03 3.070000000000000000e+02 1.850000000000000000e+02 2.800000000000000000e+02 3.752723320000000484e+01 -7.741337380000000223e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.094000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.200000000000000000e+02 3.440000000000000000e+02 1.840000000000000000e+02 3.884425310000000309e+01 -7.730454319999999768e+01 3.000000000000000000e+05 +2.250000000000000000e+00 1.223000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.500000000000000000e+01 4.480000000000000000e+02 2.480000000000000000e+02 3.352647039999999379e+01 -1.176288155999999958e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.145000000000000000e+03 1.045400000000000000e+04 2.005000000000000000e+03 5.000000000000000000e+00 1.450000000000000000e+02 6.900000000000000000e+01 3.592587350000000157e+01 -7.855991889999999955e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.920000000000000000e+02 1.953000000000000000e+03 1.920000000000000000e+03 3.000000000000000000e+01 8.450000000000000000e+02 2.800000000000000000e+02 4.063259990000000244e+01 -7.401967199999999991e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.880000000000000000e+02 6.969000000000000000e+03 1.964000000000000000e+03 1.090000000000000000e+02 9.400000000000000000e+01 3.020000000000000000e+02 2.592972650000000101e+01 -8.017369259999999542e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.919000000000000000e+03 3.540000000000000000e+03 1.953000000000000000e+03 1.590000000000000000e+02 1.199000000000000000e+03 2.800000000000000000e+02 3.360082929999999379e+01 -1.178692450999999863e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.315000000000000000e+03 6.969000000000000000e+03 1.969000000000000000e+03 7.000000000000000000e+00 8.100000000000000000e+01 2.800000000000000000e+02 2.595097269999999767e+01 -8.016629640000000734e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.509000000000000000e+03 6.828000000000000000e+03 1.957000000000000000e+03 2.200000000000000000e+01 9.900000000000000000e+01 2.800000000000000000e+02 2.850138039999999862e+01 -8.140083059999999193e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.020000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.510000000000000000e+02 1.110000000000000000e+02 1.400000000000000000e+01 3.045457100000000139e+01 -8.175923099999999977e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.257000000000000000e+03 1.938400000000000000e+04 1.998000000000000000e+03 1.210000000000000000e+02 7.900000000000000000e+01 6.300000000000000000e+01 3.372269420000000650e+01 -8.454633940000000791e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.920000000000000000e+02 3.600000000000000000e+03 1.957000000000000000e+03 5.000000000000000000e+00 1.700000000000000000e+02 2.800000000000000000e+02 2.583631960000000305e+01 -8.022762199999999666e+01 3.000000000000000000e+05 +2.250000000000000000e+00 2.322000000000000000e+03 1.800000000000000000e+03 1.910000000000000000e+03 7.700000000000000000e+01 4.520000000000000000e+02 2.800000000000000000e+02 4.065104039999999941e+01 -7.394841569999999820e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.660000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 9.000000000000000000e+00 3.530000000000000000e+02 4.070000000000000000e+02 4.065701789999999960e+01 -7.387815400000000920e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.920000000000000000e+03 2.687600000000000000e+04 1.972000000000000000e+03 8.200000000000000000e+01 1.130000000000000000e+02 2.800000000000000000e+02 3.748969920000000400e+01 -7.761443330000000174e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.886000000000000000e+03 8.000000000000000000e+03 1.995000000000000000e+03 5.400000000000000000e+01 4.330000000000000000e+02 2.800000000000000000e+02 3.387194600000000122e+01 -1.178539164000000170e+02 3.000000000000000000e+05 +2.000000000000000000e+00 5.830000000000000000e+02 5.830000000000000000e+02 1.985000000000000000e+03 1.000000000000000000e+00 2.320000000000000000e+02 5.060000000000000000e+02 2.845662029999999731e+01 -8.146806359999999358e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.000000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 4.900000000000000000e+01 1.980000000000000000e+02 2.800000000000000000e+02 4.073484799999999950e+01 -7.382325120000000140e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.035000000000000000e+03 1.585700000000000000e+04 1.979000000000000000e+03 1.000000000000000000e+00 2.800000000000000000e+02 2.800000000000000000e+02 2.564974460000000178e+01 -8.037897879999999873e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.508000000000000000e+03 2.600000000000000000e+03 1.925000000000000000e+03 2.000000000000000000e+00 2.690000000000000000e+02 2.800000000000000000e+02 4.069586199999999820e+01 -7.378996500000000935e+01 3.000000000000000000e+05 +5.500000000000000000e+00 4.700000000000000000e+03 1.751100000000000000e+04 2.018000000000000000e+03 3.700000000000000000e+01 2.550000000000000000e+02 2.800000000000000000e+02 3.388707660000000033e+01 -8.436385740000000055e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.281000000000000000e+03 6.250000000000000000e+03 1.925000000000000000e+03 2.180000000000000000e+02 3.710000000000000000e+02 2.800000000000000000e+02 2.583473850000000027e+01 -8.018670009999999593e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.080000000000000000e+03 2.000000000000000000e+03 1.910000000000000000e+03 9.000000000000000000e+00 9.720000000000000000e+02 2.800000000000000000e+02 4.061571690000000245e+01 -7.394740099999999927e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.012000000000000000e+03 7.500000000000000000e+03 1.957000000000000000e+03 1.410000000000000000e+02 2.460000000000000000e+02 2.800000000000000000e+02 2.597164180000000044e+01 -8.018199219999999627e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.840000000000000000e+03 1.924000000000000000e+03 1.989000000000000000e+03 1.000000000000000000e+02 6.460000000000000000e+02 2.800000000000000000e+02 4.062013110000000182e+01 -7.402646459999999706e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.802000000000000000e+03 1.663900000000000000e+04 2.003000000000000000e+03 1.300000000000000000e+01 1.510000000000000000e+02 8.300000000000000000e+01 3.578042969999999912e+01 -7.905993740000000969e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.720000000000000000e+03 1.955800000000000000e+04 1.959000000000000000e+03 8.900000000000000000e+01 1.690000000000000000e+02 2.800000000000000000e+02 3.393538050000000084e+01 -8.440204109999999105e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.087000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.800000000000000000e+01 3.220000000000000000e+02 6.160000000000000000e+02 2.577009130000000070e+01 -8.019466149999999516e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.600000000000000000e+02 6.969000000000000000e+03 1.920000000000000000e+03 8.400000000000000000e+01 7.200000000000000000e+01 2.800000000000000000e+02 3.929650139999999681e+01 -7.657312910000000272e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.666000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.741635899999999992e+01 -7.745886999999999034e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.944000000000000000e+03 6.115000000000000000e+03 1.899000000000000000e+03 2.300000000000000000e+01 4.120000000000000000e+02 2.800000000000000000e+02 4.085457970000000216e+01 -7.379088199999999631e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.472000000000000000e+03 6.969000000000000000e+03 2.013000000000000000e+03 2.600000000000000000e+01 6.110000000000000000e+02 2.750000000000000000e+02 3.365195260000000133e+01 -1.179814429000000047e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.642000000000000000e+03 8.750000000000000000e+03 2.018000000000000000e+03 8.200000000000000000e+01 1.600000000000000000e+02 1.300000000000000000e+02 2.842809000000000097e+01 -8.122495999999999583e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.192000000000000000e+03 6.969000000000000000e+03 1.993000000000000000e+03 2.000000000000000000e+00 1.360000000000000000e+02 2.800000000000000000e+02 3.032352709999999973e+01 -8.159268699999999797e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.571000000000000000e+03 1.316900000000000000e+04 1.925000000000000000e+03 9.000000000000000000e+01 2.820000000000000000e+02 2.800000000000000000e+02 2.858515519999999555e+01 -8.137338819999999373e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.275000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 5.800000000000000000e+01 1.760000000000000000e+02 2.800000000000000000e+02 3.371298370000000233e+01 -8.436322079999999346e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.495000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 1.220000000000000000e+02 1.090000000000000000e+02 4.200000000000000000e+01 3.052894799999999975e+01 -8.161637500000000500e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.512000000000000000e+03 6.969000000000000000e+03 1.994000000000000000e+03 9.100000000000000000e+01 1.500000000000000000e+02 2.900000000000000000e+01 3.018333099999999902e+01 -8.163958599999999421e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.509000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.720000000000000000e+02 2.800000000000000000e+02 2.840854000000000212e+01 -8.150430699999999717e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.302000000000000000e+03 1.040000000000000000e+04 1.983000000000000000e+03 5.000000000000000000e+00 7.590000000000000000e+02 3.050000000000000000e+02 3.362952310000000011e+01 -1.178645164000000136e+02 3.000000000000000000e+05 +4.750000000000000000e+00 4.048000000000000000e+03 7.000000000000000000e+03 2.005000000000000000e+03 5.800000000000000000e+01 1.157000000000000000e+03 6.150000000000000000e+02 3.357293099999999697e+01 -1.178322879999999913e+02 3.000000000000000000e+05 +2.000000000000000000e+00 9.600000000000000000e+02 6.969000000000000000e+03 1.986000000000000000e+03 1.680000000000000000e+02 1.670000000000000000e+02 2.800000000000000000e+02 3.351894899999999922e+01 -1.177557872999999944e+02 3.000000000000000000e+05 +4.500000000000000000e+00 4.314000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.200000000000000000e+01 2.980000000000000000e+02 2.750000000000000000e+02 3.025312600000000174e+01 -8.144392799999999966e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.066000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.920000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.567000000000000000e+03 4.800000000000000000e+03 1.983000000000000000e+03 1.000000000000000000e+00 4.210000000000000000e+02 2.800000000000000000e+02 3.390488140000000072e+01 -1.177722014000000001e+02 3.000000000000000000e+05 +1.500000000000000000e+00 7.800000000000000000e+02 1.827000000000000000e+03 1.923000000000000000e+03 6.700000000000000000e+01 1.280000000000000000e+02 2.800000000000000000e+02 3.922414500000000004e+01 -7.658698499999999854e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.473000000000000000e+03 6.969000000000000000e+03 1.977000000000000000e+03 1.300000000000000000e+02 1.190000000000000000e+02 2.800000000000000000e+02 3.362033740000000392e+01 -1.176977522000000107e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.160000000000000000e+03 2.834000000000000000e+03 1.999000000000000000e+03 4.700000000000000000e+01 3.380000000000000000e+02 2.800000000000000000e+02 4.054704500000000422e+01 -7.421591700000000458e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.500000000000000000e+02 8.490000000000000000e+02 1.955000000000000000e+03 2.300000000000000000e+01 2.350000000000000000e+02 2.800000000000000000e+02 4.088314669999999751e+01 -7.392085400000000561e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.794000000000000000e+03 3.964000000000000000e+04 1.989000000000000000e+03 3.010000000000000000e+02 2.440000000000000000e+02 2.800000000000000000e+02 2.555722730000000098e+01 -8.048980109999999399e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.428000000000000000e+03 6.689000000000000000e+03 2.016000000000000000e+03 3.240000000000000000e+02 3.910000000000000000e+02 3.060000000000000000e+02 3.353627900000000039e+01 -1.176041580000000124e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.980000000000000000e+03 1.120000000000000000e+03 1.920000000000000000e+03 6.000000000000000000e+00 1.740000000000000000e+02 2.800000000000000000e+02 3.928554979999999830e+01 -7.657088279999999259e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.116000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 1.140000000000000000e+02 3.220000000000000000e+02 6.310000000000000000e+02 2.576205519999999893e+01 -8.019351729999999634e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.700000000000000000e+03 1.876000000000000000e+03 1.974000000000000000e+03 2.700000000000000000e+01 3.940000000000000000e+02 3.990000000000000000e+02 3.342659989999999937e+01 -1.176092811999999981e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.152000000000000000e+03 4.428100000000000000e+04 2.000000000000000000e+03 5.000000000000000000e+00 6.500000000000000000e+01 2.800000000000000000e+02 2.856443740000000275e+01 -8.109678529999999341e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.274000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.300000000000000000e+01 3.890000000000000000e+02 2.800000000000000000e+02 2.576443980000000167e+01 -8.019525020000000382e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.132000000000000000e+03 4.356000000000000000e+03 2.007000000000000000e+03 2.200000000000000000e+01 1.910000000000000000e+02 8.200000000000000000e+01 3.594389410000000140e+01 -7.908959360000000061e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.347000000000000000e+03 1.132560000000000000e+05 1.956000000000000000e+03 3.290000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.366461100000000073e+01 -8.455119399999999530e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.270000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 4.800000000000000000e+01 4.130000000000000000e+02 4.430000000000000000e+02 2.576782019999999918e+01 -8.019607530000000395e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.449000000000000000e+03 1.306000000000000000e+03 1.970000000000000000e+03 3.700000000000000000e+01 2.800000000000000000e+01 2.800000000000000000e+02 3.360116699999999668e+01 -8.447550300000000334e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.660000000000000000e+03 5.050000000000000000e+03 1.961000000000000000e+03 2.150000000000000000e+02 6.110000000000000000e+02 2.800000000000000000e+02 3.362611479999999631e+01 -1.179219300999999973e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.488000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 3.300000000000000000e+01 5.340000000000000000e+02 8.800000000000000000e+02 2.576856400000000136e+01 -8.018644499999999198e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.000000000000000000e+03 2.916000000000000000e+03 2.007000000000000000e+03 2.000000000000000000e+01 4.750000000000000000e+02 2.800000000000000000e+02 4.062280399999999503e+01 -7.390736800000000528e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.121000000000000000e+03 6.969000000000000000e+03 1.985000000000000000e+03 3.600000000000000000e+01 1.330000000000000000e+02 3.400000000000000000e+02 2.597273410000000027e+01 -8.018492150000000152e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.977000000000000000e+03 3.223400000000000000e+04 2.018000000000000000e+03 1.130000000000000000e+02 1.720000000000000000e+02 4.800000000000000000e+01 3.605040000000000333e+01 -7.895610000000000639e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.137000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.900000000000000000e+01 8.790000000000000000e+02 8.980000000000000000e+02 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.490000000000000000e+02 6.969000000000000000e+03 1.951000000000000000e+03 7.900000000000000000e+01 6.800000000000000000e+01 2.800000000000000000e+02 3.039465630000000118e+01 -8.174573039999999935e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.420000000000000000e+03 1.437400000000000000e+04 1.950000000000000000e+03 3.530000000000000000e+02 2.520000000000000000e+02 2.800000000000000000e+02 3.581006620000000140e+01 -7.867575069999999471e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.744000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.800000000000000000e+01 1.370000000000000000e+02 4.200000000000000000e+01 3.018149999999999977e+01 -8.159090000000000487e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.958000000000000000e+03 9.000000000000000000e+01 2.110000000000000000e+02 2.800000000000000000e+02 4.090855200000000025e+01 -7.389691600000000449e+01 3.000000000000000000e+05 +7.500000000000000000e+00 6.883000000000000000e+03 1.655280000000000000e+05 2.004000000000000000e+03 1.260000000000000000e+02 5.800000000000000000e+02 2.800000000000000000e+02 3.389932570000000567e+01 -8.443178509999998482e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.210000000000000000e+03 3.200000000000000000e+03 1.955000000000000000e+03 6.900000000000000000e+01 7.020000000000000000e+02 2.800000000000000000e+02 4.076604499999999831e+01 -7.379252199999999107e+01 3.000000000000000000e+05 +1.500000000000000000e+00 6.690000000000000000e+02 6.969000000000000000e+03 1.983000000000000000e+03 1.400000000000000000e+01 2.240000000000000000e+02 1.250000000000000000e+02 2.575149599999999950e+01 -8.036686299999999505e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.283000000000000000e+03 1.012600000000000000e+04 1.953000000000000000e+03 4.000000000000000000e+00 1.240000000000000000e+02 2.800000000000000000e+02 2.856131200000000092e+01 -8.145347599999999488e+01 3.000000000000000000e+05 +9.000000000000000000e+00 4.811000000000000000e+03 8.276000000000000000e+03 1.977000000000000000e+03 2.500000000000000000e+02 3.430000000000000000e+02 2.800000000000000000e+02 3.370574270000000183e+01 -1.179861405000000047e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.511000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.600000000000000000e+01 2.800000000000000000e+02 3.035943319999999801e+01 -8.156090319999999849e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.097000000000000000e+03 6.450000000000000000e+03 1.948000000000000000e+03 4.900000000000000000e+01 2.780000000000000000e+02 2.800000000000000000e+02 2.576900350000000017e+01 -8.029743570000000830e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.163000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.090000000000000000e+02 3.650000000000000000e+02 2.800000000000000000e+02 2.581292410000000004e+01 -8.019214879999999823e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.400000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 5.230000000000000000e+02 4.980000000000000000e+02 3.200000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.501000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 7.600000000000000000e+01 9.300000000000000000e+01 2.800000000000000000e+02 3.019465569999999843e+01 -8.176338479999999720e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.061000000000000000e+03 6.000000000000000000e+03 1.936000000000000000e+03 1.260000000000000000e+02 3.050000000000000000e+02 2.800000000000000000e+02 2.584158000000000044e+01 -8.018063399999999774e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.700000000000000000e+03 6.969000000000000000e+03 1.977000000000000000e+03 1.970000000000000000e+02 3.520000000000000000e+02 6.440000000000000000e+02 3.360420640000000247e+01 -1.177339908999999949e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.292000000000000000e+03 2.000000000000000000e+03 1.925000000000000000e+03 2.200000000000000000e+01 6.180000000000000000e+02 2.800000000000000000e+02 4.062881320000000329e+01 -7.394529389999999580e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.500000000000000000e+02 6.969000000000000000e+03 2.001000000000000000e+03 5.500000000000000000e+01 4.400000000000000000e+02 6.420000000000000000e+02 2.576218380000000252e+01 -8.018898859999998763e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.208000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.900000000000000000e+02 2.800000000000000000e+02 3.595720000000000027e+01 -7.867849999999999966e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.031000000000000000e+03 2.199800000000000000e+04 2.004000000000000000e+03 2.700000000000000000e+01 2.980000000000000000e+02 2.800000000000000000e+02 3.385583579999999415e+01 -1.177569415999999904e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.647000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 6.400000000000000000e+01 4.240000000000000000e+02 1.315000000000000000e+03 2.578517739999999847e+01 -8.019007829999999615e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.460000000000000000e+03 6.969000000000000000e+03 1.940000000000000000e+03 3.520000000000000000e+02 7.100000000000000000e+01 2.800000000000000000e+02 3.922457509999999559e+01 -7.659125809999999035e+01 3.000000000000000000e+05 +6.500000000000000000e+00 7.191000000000000000e+03 1.524600000000000000e+05 1.975000000000000000e+03 2.200000000000000000e+01 3.690000000000000000e+02 2.800000000000000000e+02 3.383553120000000547e+01 -8.444438359999999477e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.627000000000000000e+03 6.037000000000000000e+03 1.984000000000000000e+03 1.660000000000000000e+02 1.690000000000000000e+02 2.800000000000000000e+02 2.576249350000000149e+01 -8.034265429999999242e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.416000000000000000e+03 1.089000000000000000e+04 2.018000000000000000e+03 5.200000000000000000e+01 2.070000000000000000e+02 2.100000000000000000e+01 3.586794460000000129e+01 -7.872921429999999532e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.010000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 7.700000000000000000e+01 4.990000000000000000e+02 2.800000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 2.000000000000000000e+03 1.935000000000000000e+03 1.200000000000000000e+02 5.570000000000000000e+02 2.800000000000000000e+02 4.076396499999999889e+01 -7.388470200000000432e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.564000000000000000e+03 1.466800000000000000e+04 1.926000000000000000e+03 8.500000000000000000e+01 7.020000000000000000e+02 2.800000000000000000e+02 2.585287800000000047e+01 -8.017535500000001036e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.662000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.000000000000000000e+00 4.150000000000000000e+02 9.400000000000000000e+02 2.577009130000000070e+01 -8.019466149999999516e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.570000000000000000e+02 2.852000000000000000e+03 1.961000000000000000e+03 4.200000000000000000e+01 7.570000000000000000e+02 2.800000000000000000e+02 3.379307150000000348e+01 -1.178599622999999923e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.938000000000000000e+03 2.400000000000000000e+03 1.925000000000000000e+03 1.000000000000000000e+00 7.120000000000000000e+02 2.800000000000000000e+02 4.063514039999999738e+01 -7.402886469999999974e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.030000000000000000e+03 5.500000000000000000e+03 2.004000000000000000e+03 2.090000000000000000e+02 1.120000000000000000e+02 9.500000000000000000e+01 2.853131760000000483e+01 -8.115659599999999330e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.133000000000000000e+03 1.776900000000000000e+04 1.983000000000000000e+03 5.000000000000000000e+00 2.010000000000000000e+02 2.800000000000000000e+02 2.565184379999999820e+01 -8.036538649999999961e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.256000000000000000e+03 6.219000000000000000e+03 1.955000000000000000e+03 2.000000000000000000e+01 1.860000000000000000e+02 2.800000000000000000e+02 2.853130609999999834e+01 -8.136271220000000426e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.390000000000000000e+03 8.871000000000000000e+03 2.003000000000000000e+03 2.000000000000000000e+00 7.640000000000000000e+02 4.780000000000000000e+02 3.362568499999999716e+01 -1.178185368999999980e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.780000000000000000e+03 3.484000000000000000e+03 2.003000000000000000e+03 1.000000000000000000e+00 1.270000000000000000e+02 4.260000000000000000e+02 3.590711190000000386e+01 -7.879173579999999788e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.904000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 2.000000000000000000e+02 2.800000000000000000e+02 3.582704400000000078e+01 -7.912418199999999047e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.880000000000000000e+03 2.736000000000000000e+03 1.960000000000000000e+03 5.800000000000000000e+01 4.650000000000000000e+02 2.800000000000000000e+02 4.061020200000000102e+01 -7.397600099999999657e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.600000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 8.000000000000000000e+00 1.310000000000000000e+02 1.300000000000000000e+01 3.017100139999999797e+01 -8.163532859999999403e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.550000000000000000e+02 6.969000000000000000e+03 1.953000000000000000e+03 2.200000000000000000e+01 6.610000000000000000e+02 2.800000000000000000e+02 4.064753590000000116e+01 -7.397551889999999730e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.303000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 4.570000000000000000e+02 4.060000000000000000e+02 2.800000000000000000e+02 2.576856400000000136e+01 -8.018644499999999198e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.940000000000000000e+03 6.969000000000000000e+03 2.010000000000000000e+03 4.900000000000000000e+01 2.130000000000000000e+02 2.800000000000000000e+02 3.928054739999999612e+01 -7.657083309999998733e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.160000000000000000e+03 6.969000000000000000e+03 1.930000000000000000e+03 1.250000000000000000e+02 9.900000000000000000e+01 2.800000000000000000e+02 3.932377329999999205e+01 -7.656920970000000182e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.006000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 9.300000000000000000e+01 3.370000000000000000e+02 8.150000000000000000e+02 2.577698999999999785e+01 -8.018879799999999136e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.179000000000000000e+03 1.035000000000000000e+04 1.987000000000000000e+03 3.300000000000000000e+01 3.940000000000000000e+02 4.000000000000000000e+01 3.383467729999999563e+01 -1.178255328000000048e+02 3.000000000000000000e+05 +1.000000000000000000e+00 9.520000000000000000e+02 6.969000000000000000e+03 1.945000000000000000e+03 2.900000000000000000e+01 1.200000000000000000e+02 2.800000000000000000e+02 3.031544550000000271e+01 -8.158378359999998963e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.000000000000000000e+03 3.920000000000000000e+03 2.013000000000000000e+03 1.300000000000000000e+01 1.470000000000000000e+02 8.800000000000000000e+01 3.583282529999999610e+01 -7.891200539999999819e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.800000000000000000e+03 8.102100000000000000e+04 1.980000000000000000e+03 3.270000000000000000e+02 1.750000000000000000e+02 2.800000000000000000e+02 2.557870450000000062e+01 -8.048407559999999705e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.135000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.250000000000000000e+02 1.210000000000000000e+02 5.600000000000000000e+01 3.021819686889699952e+01 -8.180525207519499986e+01 3.000000000000000000e+05 +8.000000000000000000e+00 7.323000000000000000e+03 1.510800000000000000e+04 1.963000000000000000e+03 1.130000000000000000e+02 3.480000000000000000e+02 2.800000000000000000e+02 3.393101160000000505e+01 -1.179594535999999891e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.032000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 5.700000000000000000e+01 3.680000000000000000e+02 4.600000000000000000e+02 3.365911939999999447e+01 -1.179756729000000064e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.836000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.480000000000000000e+02 2.800000000000000000e+02 3.591563499999999465e+01 -7.881206099999999992e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.119000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 2.560333649999999750e+01 -8.043689879999999448e+01 3.000000000000000000e+05 +6.000000000000000000e+00 7.074000000000000000e+03 3.690000000000000000e+04 2.017000000000000000e+03 4.000000000000000000e+01 2.810000000000000000e+02 2.800000000000000000e+02 2.570731889999999709e+01 -8.035644259999999406e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.179000000000000000e+03 7.500000000000000000e+03 1.939000000000000000e+03 7.000000000000000000e+00 3.940000000000000000e+02 2.800000000000000000e+02 2.584090610000000154e+01 -8.018120749999999930e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.000000000000000000e+03 9.147000000000000000e+03 2.018000000000000000e+03 5.000000000000000000e+01 1.050000000000000000e+02 1.500000000000000000e+02 3.586530349999999601e+01 -7.851791819999999689e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.770000000000000000e+02 7.500000000000000000e+03 1.980000000000000000e+03 3.060000000000000000e+02 3.830000000000000000e+02 2.800000000000000000e+02 2.573876660000000172e+01 -8.029812130000000536e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.170000000000000000e+03 9.500000000000000000e+03 2.017000000000000000e+03 6.400000000000000000e+01 4.540000000000000000e+02 2.800000000000000000e+02 3.389204470000000669e+01 -1.178888649999999956e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.403000000000000000e+03 6.969000000000000000e+03 2.012000000000000000e+03 3.500000000000000000e+01 2.990000000000000000e+02 2.800000000000000000e+02 2.579973510000000303e+01 -8.018652570000000424e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.174000000000000000e+03 4.443000000000000000e+03 2.012000000000000000e+03 2.700000000000000000e+01 1.310000000000000000e+02 3.000000000000000000e+01 3.586846599999999796e+01 -7.885369300000000692e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.824000000000000000e+03 2.099000000000000000e+03 1.975000000000000000e+03 3.400000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 4.087282400000000138e+01 -7.385778100000000279e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.140000000000000000e+03 6.969000000000000000e+03 1.968000000000000000e+03 2.070000000000000000e+02 1.220000000000000000e+02 5.630000000000000000e+02 2.594587359999999876e+01 -8.017481320000000267e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.159000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 3.900000000000000000e+01 1.320000000000000000e+02 1.170000000000000000e+02 3.018787599999999927e+01 -8.177413070000000062e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.632000000000000000e+03 6.969000000000000000e+03 1.919000000000000000e+03 9.900000000000000000e+01 2.600000000000000000e+02 2.800000000000000000e+02 3.031346570000000185e+01 -8.169968249999999443e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.960000000000000000e+02 9.000000000000000000e+02 1.973000000000000000e+03 4.100000000000000000e+01 3.960000000000000000e+02 3.650000000000000000e+02 3.340918460000000323e+01 -1.175991995000000117e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.000000000000000000e+03 7.000000000000000000e+03 2.018000000000000000e+03 9.400000000000000000e+01 2.420000000000000000e+02 2.800000000000000000e+02 2.576869310000000013e+01 -8.024799620000000289e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.360000000000000000e+03 1.307000000000000000e+03 1.924000000000000000e+03 3.900000000000000000e+01 7.300000000000000000e+01 2.800000000000000000e+02 3.929687270000000154e+01 -7.667611379999999599e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.776000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 9.300000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.366846489999999648e+01 -8.440017349999999396e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.900000000000000000e+03 4.913500000000000000e+04 1.961000000000000000e+03 1.120000000000000000e+02 2.590000000000000000e+02 2.800000000000000000e+02 3.384039400000000342e+01 -8.436253899999999817e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.203000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.460000000000000000e+02 6.650000000000000000e+02 9.110000000000000000e+02 2.577698999999999785e+01 -8.018879799999999136e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.258000000000000000e+03 7.134000000000000000e+03 1.970000000000000000e+03 1.400000000000000000e+01 2.690000000000000000e+02 2.800000000000000000e+02 3.381442249999999916e+01 -1.179563400999999772e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.417000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 5.000000000000000000e+00 2.900000000000000000e+02 2.800000000000000000e+02 3.577215349999999461e+01 -7.865097629999999640e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.440000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 1.520000000000000000e+02 5.900000000000000000e+02 8.300000000000000000e+02 2.579052919999999816e+01 -8.017898790000000986e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.400000000000000000e+03 1.437400000000000000e+04 2.016000000000000000e+03 6.780000000000000000e+02 2.040000000000000000e+02 2.800000000000000000e+02 3.751129320000000433e+01 -7.755605579999999577e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.033000000000000000e+03 6.969000000000000000e+03 1.954000000000000000e+03 1.310000000000000000e+02 1.260000000000000000e+02 2.800000000000000000e+02 3.028938910000000106e+01 -8.179345720000000597e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.617000000000000000e+03 1.698800000000000000e+04 2.017000000000000000e+03 1.250000000000000000e+02 2.590000000000000000e+02 1.540000000000000000e+02 3.580637359619139914e+01 -7.878053283691409092e+01 3.000000000000000000e+05 +6.000000000000000000e+00 5.712000000000000000e+03 3.200000000000000000e+03 1.930000000000000000e+03 6.000000000000000000e+00 4.110000000000000000e+02 2.800000000000000000e+02 4.070772000000000190e+01 -7.389372600000000091e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.635000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.590000000000000000e+02 1.540000000000000000e+02 2.800000000000000000e+02 3.578756500000000074e+01 -7.889893800000000113e+01 3.000000000000000000e+05 +3.250000000000000000e+00 2.436000000000000000e+03 2.000000000000000000e+04 1.977000000000000000e+03 2.500000000000000000e+01 4.680000000000000000e+02 2.800000000000000000e+02 3.385781089999999693e+01 -1.177637722000000053e+02 3.000000000000000000e+05 +6.000000000000000000e+00 3.246000000000000000e+03 5.000000000000000000e+03 1.931000000000000000e+03 1.250000000000000000e+02 2.770000000000000000e+02 2.800000000000000000e+02 4.063654350000000193e+01 -7.416535140000000581e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.797000000000000000e+03 6.229000000000000000e+03 2.018000000000000000e+03 2.800000000000000000e+01 1.810000000000000000e+02 4.200000000000000000e+01 3.373414890000000099e+01 -8.432444009999998968e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.312000000000000000e+03 6.900000000000000000e+03 1.952000000000000000e+03 3.500000000000000000e+01 2.210000000000000000e+02 2.800000000000000000e+02 2.587793399999999977e+01 -8.016596599999999739e+01 3.000000000000000000e+05 +1.500000000000000000e+00 2.240000000000000000e+03 1.200000000000000000e+03 1.989000000000000000e+03 3.500000000000000000e+01 6.700000000000000000e+02 2.800000000000000000e+02 4.059897210000000456e+01 -7.397824449999998819e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.520000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 9.000000000000000000e+00 1.510000000000000000e+02 6.700000000000000000e+01 3.028769497698100110e+01 -8.144946499966600584e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.367000000000000000e+03 2.534000000000000000e+03 1.963000000000000000e+03 5.000000000000000000e+00 3.660000000000000000e+02 2.600000000000000000e+02 3.388629699999999900e+01 -1.178700919999999996e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.100000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 9.200000000000000000e+01 3.350000000000000000e+02 2.800000000000000000e+02 4.063410760000000010e+01 -7.395178549999999973e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.200000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 4.000000000000000000e+00 3.910000000000000000e+02 2.200000000000000000e+01 3.384551840000000311e+01 -8.436896860000000231e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.465000000000000000e+03 4.000000000000000000e+03 1.959000000000000000e+03 4.400000000000000000e+01 6.490000000000000000e+02 2.800000000000000000e+02 4.060795429999999584e+01 -7.390321259999998915e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.178000000000000000e+03 6.969000000000000000e+03 1.960000000000000000e+03 4.300000000000000000e+01 5.520000000000000000e+02 2.800000000000000000e+02 4.057598679999999547e+01 -7.395605000000000473e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.528000000000000000e+03 2.517000000000000000e+03 2.018000000000000000e+03 1.800000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.755671699999999902e+01 -7.742682700000000295e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.326000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 5.100000000000000000e+01 1.360000000000000000e+02 2.800000000000000000e+02 3.030843929999999986e+01 -8.172256559999999581e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.462000000000000000e+03 6.969000000000000000e+03 1.998000000000000000e+03 8.000000000000000000e+00 1.610000000000000000e+02 1.290000000000000000e+02 2.560206870000000023e+01 -8.041789559999999426e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.531000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.200000000000000000e+01 1.630000000000000000e+02 7.900000000000000000e+02 3.933574990000000327e+01 -7.662112550000000510e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.580000000000000000e+03 1.732500000000000000e+04 1.991000000000000000e+03 1.500000000000000000e+01 3.880000000000000000e+02 2.800000000000000000e+02 3.388348560000000020e+01 -1.178114792000000079e+02 3.000000000000000000e+05 +1.000000000000000000e+00 4.357000000000000000e+03 5.280000000000000000e+03 2.017000000000000000e+03 1.900000000000000000e+01 4.020000000000000000e+02 2.970000000000000000e+02 3.367728239999999573e+01 -1.177084139999999906e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.178000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 4.000000000000000000e+00 1.250000000000000000e+02 2.910000000000000000e+02 3.025768189999999436e+01 -8.153980889999999704e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.590000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.660000000000000000e+02 2.800000000000000000e+02 3.566166339999999479e+01 -7.876137900000000514e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.255000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.500000000000000000e+01 4.740000000000000000e+02 8.200000000000000000e+02 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.182000000000000000e+03 6.660000000000000000e+03 1.965000000000000000e+03 1.070000000000000000e+02 6.340000000000000000e+02 2.800000000000000000e+02 4.061392219999999753e+01 -7.416548900000000799e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.257000000000000000e+03 4.356000000000000000e+04 2.005000000000000000e+03 3.700000000000000000e+01 3.290000000000000000e+02 2.800000000000000000e+02 2.568014069999999904e+01 -8.037234599999999318e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.437000000000000000e+03 1.089000000000000000e+04 2.005000000000000000e+03 1.000000000000000000e+00 1.470000000000000000e+02 6.500000000000000000e+01 3.592631659999999982e+01 -7.855994110000000319e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.545000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.900000000000000000e+01 3.840000000000000000e+02 2.800000000000000000e+02 3.354794000000000409e+01 -1.175960199999999958e+02 3.000000000000000000e+05 +5.000000000000000000e+00 2.800000000000000000e+03 7.811000000000000000e+03 1.965000000000000000e+03 4.110000000000000000e+02 4.980000000000000000e+02 2.800000000000000000e+02 3.346762000000000370e+01 -1.176592543999999947e+02 3.000000000000000000e+05 +4.000000000000000000e+00 2.496000000000000000e+03 4.000000000000000000e+03 1.970000000000000000e+03 4.200000000000000000e+01 3.040000000000000000e+02 2.800000000000000000e+02 4.055845500000000214e+01 -7.413362530000000561e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.672000000000000000e+03 6.969000000000000000e+03 1.957000000000000000e+03 6.200000000000000000e+01 8.400000000000000000e+01 2.800000000000000000e+02 3.025075550000000035e+01 -8.172312149999999065e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.020000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.840000000000000000e+02 2.800000000000000000e+02 3.571659999999999968e+01 -7.880010000000000048e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.024000000000000000e+03 1.350360000000000000e+05 1.956000000000000000e+03 1.180000000000000000e+02 2.540000000000000000e+02 2.800000000000000000e+02 3.570894600000000452e+01 -7.871268700000000251e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.217000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 2.590000000000000000e+02 2.800000000000000000e+02 3.881329990000000407e+01 -7.736940959999999734e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.832000000000000000e+03 4.081500000000000000e+04 1.972000000000000000e+03 9.600000000000000000e+01 1.510000000000000000e+02 2.800000000000000000e+02 3.395588800000000163e+01 -8.437459300000000439e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.710000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 6.400000000000000000e+01 1.273000000000000000e+03 2.800000000000000000e+02 3.362439699999999476e+01 -1.179456289999999967e+02 3.000000000000000000e+05 +2.750000000000000000e+00 2.052000000000000000e+03 2.800000000000000000e+03 1.989000000000000000e+03 9.300000000000000000e+01 6.820000000000000000e+02 2.800000000000000000e+02 4.060396400000000483e+01 -7.391265699999999583e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.876000000000000000e+03 1.084300000000000000e+04 1.947000000000000000e+03 2.700000000000000000e+01 2.000000000000000000e+02 2.800000000000000000e+02 2.851777290000000065e+01 -8.137390359999999134e+01 3.000000000000000000e+05 +5.500000000000000000e+00 6.599000000000000000e+03 2.056000000000000000e+04 1.987000000000000000e+03 2.700000000000000000e+01 2.200000000000000000e+02 7.100000000000000000e+01 3.383728150000000312e+01 -8.439319530000000213e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.902000000000000000e+03 2.335000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 1.450000000000000000e+02 2.040000000000000000e+02 2.859917899999999946e+01 -8.127435499999999990e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.443000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.420000000000000000e+02 6.760000000000000000e+02 2.800000000000000000e+02 2.576568989999999815e+01 -8.019390079999999443e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.150000000000000000e+03 1.000000000000000000e+03 1.962000000000000000e+03 4.900000000000000000e+01 3.210000000000000000e+02 3.660000000000000000e+02 3.376705560000000617e+01 -1.180831830999999994e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.440000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.300000000000000000e+01 2.080000000000000000e+02 2.800000000000000000e+02 3.928485789999999866e+01 -7.658151970000000119e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.020000000000000000e+03 5.000000000000000000e+03 1.925000000000000000e+03 2.100000000000000000e+01 4.750000000000000000e+02 2.800000000000000000e+02 4.078638699999999773e+01 -7.385070799999999736e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.930000000000000000e+02 6.969000000000000000e+03 1.974000000000000000e+03 6.300000000000000000e+01 4.150000000000000000e+02 4.310000000000000000e+02 2.573158800000000213e+01 -8.023811490000001356e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.575000000000000000e+03 2.000000000000000000e+03 1.930000000000000000e+03 6.000000000000000000e+00 9.210000000000000000e+02 2.800000000000000000e+02 4.061806299999999936e+01 -7.400786600000000703e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.700000000000000000e+03 6.000000000000000000e+03 1.975000000000000000e+03 1.500000000000000000e+01 3.430000000000000000e+02 1.180000000000000000e+02 3.362163799999999725e+01 -1.175808040000000005e+02 3.000000000000000000e+05 +1.000000000000000000e+00 7.450000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 3.400000000000000000e+01 2.480000000000000000e+02 5.990000000000000000e+02 3.927712860000000461e+01 -7.660544209999999055e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.261000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.210000000000000000e+02 1.440000000000000000e+02 2.800000000000000000e+02 2.838504939999999976e+01 -8.134612669999999923e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.188000000000000000e+03 6.969000000000000000e+03 1.942000000000000000e+03 3.350000000000000000e+02 1.050000000000000000e+02 2.800000000000000000e+02 3.927906570000000386e+01 -7.653638449999999693e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.707000000000000000e+03 7.500000000000000000e+03 1.977000000000000000e+03 9.800000000000000000e+01 2.750000000000000000e+02 2.800000000000000000e+02 2.565876199999999940e+01 -8.038032700000000830e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.587000000000000000e+03 8.276000000000000000e+03 1.940000000000000000e+03 2.000000000000000000e+00 1.950000000000000000e+02 2.800000000000000000e+02 3.374215189999999609e+01 -8.444223029999999142e+01 3.000000000000000000e+05 +1.500000000000000000e+00 8.680000000000000000e+02 6.969000000000000000e+03 1.998000000000000000e+03 1.050000000000000000e+02 2.000000000000000000e+02 2.800000000000000000e+02 2.577897399999999806e+01 -8.032532500000000653e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.318000000000000000e+03 2.090800000000000000e+04 1.983000000000000000e+03 6.000000000000000000e+00 1.530000000000000000e+02 2.800000000000000000e+02 3.591947449999999975e+01 -7.889542679999999564e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.882000000000000000e+03 6.900000000000000000e+03 1.972000000000000000e+03 2.000000000000000000e+00 3.120000000000000000e+02 2.100000000000000000e+01 3.356692110000000184e+01 -1.176582590000000152e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.232000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 2.100000000000000000e+01 6.100000000000000000e+01 2.800000000000000000e+02 3.932460540000000293e+01 -7.660427320000000861e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.749000000000000000e+03 6.969000000000000000e+03 1.968000000000000000e+03 1.700000000000000000e+01 8.500000000000000000e+01 3.510000000000000000e+02 3.937008329999999745e+01 -7.671102740000000608e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.761000000000000000e+03 9.600000000000000000e+02 1.920000000000000000e+03 1.660000000000000000e+02 1.290000000000000000e+02 2.800000000000000000e+02 3.929731650000000087e+01 -7.658842049999999801e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 8.600000000000000000e+01 3.560000000000000000e+02 2.800000000000000000e+02 4.073525999999999669e+01 -7.386660670000000550e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.432000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.310000000000000000e+02 7.000000000000000000e+00 2.800000000000000000e+02 3.931131939999999503e+01 -7.664190150000000301e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.080000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.040000000000000000e+02 2.520000000000000000e+02 2.500000000000000000e+02 3.391411599999999993e+01 -8.438371100000000524e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.642000000000000000e+03 6.969000000000000000e+03 1.995000000000000000e+03 9.000000000000000000e+00 7.130000000000000000e+02 6.700000000000000000e+02 3.360465229999999792e+01 -1.178328924000000058e+02 3.000000000000000000e+05 +4.500000000000000000e+00 5.670000000000000000e+03 3.314900000000000000e+04 2.002000000000000000e+03 5.000000000000000000e+00 2.200000000000000000e+02 2.800000000000000000e+02 3.391959439999999404e+01 -8.442060209999999643e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.710000000000000000e+02 6.710000000000000000e+02 2.008000000000000000e+03 6.500000000000000000e+01 2.590000000000000000e+02 5.750000000000000000e+02 2.845661599999999680e+01 -8.146261499999999955e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.280000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 6.310000000000000000e+02 3.510000000000000000e+02 8.500000000000000000e+02 2.580949599999999933e+01 -8.019204350000001114e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.224000000000000000e+03 7.200000000000000000e+02 1.989000000000000000e+03 8.000000000000000000e+00 2.610000000000000000e+02 2.200000000000000000e+02 4.063493470000000229e+01 -7.416889539999999670e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.930000000000000000e+03 1.089000000000000000e+04 1.999000000000000000e+03 5.500000000000000000e+01 1.840000000000000000e+02 3.100000000000000000e+01 3.580376400000000103e+01 -7.882484490000000221e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.220000000000000000e+03 1.307000000000000000e+03 1.938000000000000000e+03 2.840000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 3.933351470000000205e+01 -7.660386149999999361e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.295000000000000000e+03 6.969000000000000000e+03 1.900000000000000000e+03 2.000000000000000000e+00 2.240000000000000000e+02 2.800000000000000000e+02 3.928790930000000259e+01 -7.659054159999999456e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.104000000000000000e+03 3.825000000000000000e+03 1.978000000000000000e+03 5.500000000000000000e+01 3.680000000000000000e+02 2.000000000000000000e+02 3.355226259999999883e+01 -1.177061527000000041e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.582000000000000000e+03 7.565000000000000000e+03 2.004000000000000000e+03 8.300000000000000000e+01 1.310000000000000000e+02 7.600000000000000000e+01 2.852398080000000036e+01 -8.121242230000000006e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.000000000000000000e+03 6.969000000000000000e+03 1.928000000000000000e+03 3.000000000000000000e+01 2.380000000000000000e+02 2.800000000000000000e+02 4.090253449999999447e+01 -7.390617159999999330e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.442000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 3.590000000000000000e+02 1.760000000000000000e+02 1.640000000000000000e+02 3.021977499999999850e+01 -8.150202600000000075e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.292000000000000000e+03 4.320000000000000000e+03 1.987000000000000000e+03 9.600000000000000000e+01 1.740000000000000000e+02 2.800000000000000000e+02 2.576367769999999879e+01 -8.034381929999999272e+01 3.000000000000000000e+05 +8.500000000000000000e+00 6.858000000000000000e+03 4.024900000000000000e+04 1.998000000000000000e+03 1.480000000000000000e+02 4.080000000000000000e+02 2.800000000000000000e+02 2.568499639999999928e+01 -8.030080949999999973e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.028000000000000000e+03 5.227000000000000000e+03 2.018000000000000000e+03 6.300000000000000000e+01 1.300000000000000000e+02 3.500000000000000000e+01 3.594606611891209980e+01 -7.899899401698159807e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.223000000000000000e+03 3.980000000000000000e+03 2.013000000000000000e+03 4.300000000000000000e+01 2.000000000000000000e+02 3.820000000000000000e+02 2.595231610000000089e+01 -8.018557940000000883e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.798000000000000000e+03 1.089000000000000000e+04 1.996000000000000000e+03 3.300000000000000000e+01 2.760000000000000000e+02 1.300000000000000000e+01 3.384001329999999541e+01 -8.436630109999998695e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.152000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 2.400000000000000000e+01 5.200000000000000000e+01 2.800000000000000000e+02 3.929488029999999554e+01 -7.666815770000000896e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.584000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.600000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.731000000000000000e+03 2.657100000000000000e+04 1.987000000000000000e+03 1.530000000000000000e+02 1.310000000000000000e+02 2.800000000000000000e+02 3.595092100000000102e+01 -7.893956379999998774e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.760000000000000000e+03 6.969000000000000000e+03 1.979000000000000000e+03 1.310000000000000000e+02 2.030000000000000000e+02 2.080000000000000000e+02 3.370857399999999870e+01 -1.177552112999999849e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.237000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.800000000000000000e+01 2.800000000000000000e+02 3.368128140000000315e+01 -8.459692320000000620e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.199000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 2.250000000000000000e+02 2.800000000000000000e+02 2.840999679999999827e+01 -8.153380319999999415e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.360000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.790000000000000000e+02 2.800000000000000000e+02 2.836474419999999697e+01 -8.123832249999999533e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.704000000000000000e+03 6.969000000000000000e+03 1.947000000000000000e+03 1.320000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.033491479999999996e+01 -8.159994179999999631e+01 3.000000000000000000e+05 +5.000000000000000000e+00 2.895000000000000000e+03 8.276000000000000000e+03 1.995000000000000000e+03 1.321000000000000000e+03 1.590000000000000000e+02 4.320000000000000000e+02 3.584707490000000263e+01 -7.904052099999999825e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.760000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.500000000000000000e+03 3.816000000000000000e+03 1.998000000000000000e+03 2.000000000000000000e+00 9.000000000000000000e+02 2.350000000000000000e+02 3.360692879999999150e+01 -1.178240890999999806e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.917000000000000000e+03 6.969000000000000000e+03 1.998000000000000000e+03 3.400000000000000000e+01 1.300000000000000000e+02 5.200000000000000000e+01 3.597584050000000389e+01 -7.881581040000000371e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.609000000000000000e+03 9.583000000000000000e+03 1.950000000000000000e+03 2.670000000000000000e+02 3.090000000000000000e+02 2.800000000000000000e+02 3.579877460000000156e+01 -7.865434570000000747e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.657000000000000000e+03 7.013000000000000000e+03 1.920000000000000000e+03 1.040000000000000000e+02 3.740000000000000000e+02 2.800000000000000000e+02 3.375744420000000190e+01 -8.437576679999999385e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.300000000000000000e+03 6.500000000000000000e+03 1.931000000000000000e+03 5.700000000000000000e+01 3.810000000000000000e+02 2.800000000000000000e+02 3.393257289999999671e+01 -1.179536012000000085e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.730000000000000000e+03 4.000000000000000000e+03 1.990000000000000000e+03 3.400000000000000000e+01 3.290000000000000000e+02 5.600000000000000000e+02 3.360579400000000305e+01 -1.175860600000000034e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.011000000000000000e+03 5.500000000000000000e+03 1.986000000000000000e+03 8.100000000000000000e+01 3.970000000000000000e+02 1.810000000000000000e+02 3.354830300000000420e+01 -1.176941974000000215e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.058000000000000000e+03 5.662000000000000000e+03 2.017000000000000000e+03 1.210000000000000000e+02 2.060000000000000000e+02 1.480000000000000000e+02 3.581905700000000081e+01 -7.887602099999999439e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.181000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.380000000000000000e+02 3.720000000000000000e+02 8.290000000000000000e+02 2.580783939999999888e+01 -8.019222700000000259e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.688000000000000000e+03 6.969000000000000000e+03 1.930000000000000000e+03 4.800000000000000000e+01 5.900000000000000000e+01 2.800000000000000000e+02 3.929499359999999797e+01 -7.668433079999999791e+01 3.000000000000000000e+05 +3.000000000000000000e+00 8.900000000000000000e+02 1.102000000000000000e+03 2.005000000000000000e+03 2.900000000000000000e+01 7.300000000000000000e+02 2.800000000000000000e+02 4.082268810000000059e+01 -7.390216809999999725e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.344000000000000000e+03 1.437000000000000000e+03 1.992000000000000000e+03 6.100000000000000000e+01 3.720000000000000000e+02 3.250000000000000000e+02 3.364923759999999930e+01 -1.175846307000000053e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.511000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.200000000000000000e+01 9.400000000000000000e+01 7.000000000000000000e+00 3.046049899999999866e+01 -8.176238100000000486e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.708000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.600000000000000000e+01 2.800000000000000000e+02 3.360189056396500007e+01 -8.444584655761700276e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.441000000000000000e+03 4.866000000000000000e+03 1.991000000000000000e+03 1.000000000000000000e+00 1.720000000000000000e+02 2.800000000000000000e+02 2.566074039999999812e+01 -8.042661040000000128e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.300000000000000000e+03 9.000000000000000000e+03 2.004000000000000000e+03 1.180000000000000000e+02 3.640000000000000000e+02 2.800000000000000000e+02 4.055116770000000059e+01 -7.418782570000000476e+01 3.000000000000000000e+05 +5.000000000000000000e+00 4.914000000000000000e+03 2.831400000000000000e+04 1.996000000000000000e+03 3.940000000000000000e+02 1.140000000000000000e+02 2.440000000000000000e+02 3.584563629999999534e+01 -7.904901259999999752e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.548000000000000000e+03 1.122100000000000000e+04 1.971000000000000000e+03 1.060000000000000000e+02 2.970000000000000000e+02 2.800000000000000000e+02 2.856507549999999895e+01 -8.136355120000000340e+01 3.000000000000000000e+05 +5.500000000000000000e+00 3.100000000000000000e+03 4.784000000000000000e+03 2.015000000000000000e+03 1.250000000000000000e+02 4.350000000000000000e+02 1.580000000000000000e+02 3.367072439999999744e+01 -1.176872105999999860e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.800000000000000000e+03 1.132500000000000000e+04 1.964000000000000000e+03 8.600000000000000000e+01 5.920000000000000000e+02 2.800000000000000000e+02 3.380749899999999997e+01 -1.177963278000000003e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.164000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 5.700000000000000000e+01 1.020000000000000000e+02 2.800000000000000000e+02 3.027773859999999928e+01 -8.173352529999999661e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.219000000000000000e+03 3.300000000000000000e+03 2.011000000000000000e+03 1.700000000000000000e+01 1.312000000000000000e+03 2.800000000000000000e+02 4.075862100000000510e+01 -7.380110700000000179e+01 3.000000000000000000e+05 +6.500000000000000000e+00 5.047000000000000000e+03 6.532000000000000000e+03 2.013000000000000000e+03 5.000000000000000000e+01 4.580000000000000000e+02 3.830000000000000000e+02 3.370124879999999479e+01 -1.177135348000000050e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.806000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 3.790000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 3.586021900000000073e+01 -7.853945329999999103e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.309000000000000000e+03 6.969000000000000000e+03 1.954000000000000000e+03 6.200000000000000000e+01 6.900000000000000000e+01 2.800000000000000000e+02 3.033155669999999660e+01 -8.159437540000000411e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.104000000000000000e+03 6.247000000000000000e+03 1.925000000000000000e+03 1.500000000000000000e+01 1.000000000000000000e+02 2.800000000000000000e+02 3.933094370000000595e+01 -7.655944670000000940e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.731000000000000000e+03 6.969000000000000000e+03 1.958000000000000000e+03 7.000000000000000000e+00 9.500000000000000000e+01 2.800000000000000000e+02 3.031742009999999965e+01 -8.171066829999999470e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.577000000000000000e+03 6.534000000000000000e+03 2.007000000000000000e+03 1.200000000000000000e+01 8.500000000000000000e+01 1.300000000000000000e+01 3.572599199999999797e+01 -7.853979820000000700e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.336000000000000000e+03 2.499900000000000000e+04 2.017000000000000000e+03 1.310000000000000000e+02 3.140000000000000000e+02 2.800000000000000000e+02 3.756781250000000227e+01 -7.753011120000000744e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.500000000000000000e+02 8.750000000000000000e+03 1.937000000000000000e+03 2.310000000000000000e+02 1.853000000000000000e+03 2.800000000000000000e+02 3.350129899999999594e+01 -1.177426379999999853e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.711000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.980000000000000000e+02 2.800000000000000000e+02 3.584549820000000153e+01 -7.891096699999999942e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.036000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 1.000000000000000000e+00 7.500000000000000000e+01 5.170000000000000000e+02 2.592320180000000107e+01 -8.020716649999999959e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.011000000000000000e+03 5.632000000000000000e+03 1.984000000000000000e+03 1.240000000000000000e+02 2.590000000000000000e+02 2.800000000000000000e+02 2.567891849999999820e+01 -8.039660190000000739e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.180000000000000000e+03 4.360000000000000000e+02 1.940000000000000000e+03 3.400000000000000000e+01 1.220000000000000000e+02 2.800000000000000000e+02 3.929742209999999858e+01 -7.667926020000000165e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.040000000000000000e+03 3.136300000000000000e+04 1.962000000000000000e+03 1.630000000000000000e+02 5.800000000000000000e+01 2.800000000000000000e+02 3.366660490000000294e+01 -8.462932600000000605e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.320000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.510000000000000000e+02 2.800000000000000000e+02 3.580680000000000263e+01 -7.888349999999999795e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.509000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 2.000000000000000000e+01 1.040000000000000000e+02 3.500000000000000000e+01 3.580260100000000278e+01 -7.854614320000000305e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.160000000000000000e+02 6.969000000000000000e+03 1.962000000000000000e+03 1.200000000000000000e+01 1.432000000000000000e+03 2.800000000000000000e+02 4.073610640000000416e+01 -7.398653819999999826e+01 3.000000000000000000e+05 +5.250000000000000000e+00 3.814000000000000000e+03 5.126000000000000000e+03 2.018000000000000000e+03 9.000000000000000000e+00 3.710000000000000000e+02 2.120000000000000000e+02 3.369172170000000222e+01 -1.176610854000000046e+02 3.000000000000000000e+05 +3.000000000000000000e+00 3.595000000000000000e+03 1.237500000000000000e+04 1.992000000000000000e+03 7.000000000000000000e+00 3.340000000000000000e+02 2.800000000000000000e+02 4.051753829999999823e+01 -7.421098530000000437e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.910000000000000000e+02 6.969000000000000000e+03 2.004000000000000000e+03 3.710000000000000000e+02 4.990000000000000000e+02 5.200000000000000000e+02 2.575222999999999729e+01 -8.019875209999999299e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.310000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 2.950000000000000000e+02 6.280000000000000000e+02 5.920000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.693000000000000000e+03 8.134000000000000000e+03 2.004000000000000000e+03 3.500000000000000000e+01 7.180000000000000000e+02 4.780000000000000000e+02 3.362093839999999290e+01 -1.178200989000000050e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.178000000000000000e+03 6.969000000000000000e+03 1.952000000000000000e+03 4.000000000000000000e+00 8.000000000000000000e+00 2.800000000000000000e+02 3.931548099999999835e+01 -7.656840259999999887e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.828000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.500000000000000000e+02 2.800000000000000000e+02 2.835148499999999672e+01 -8.132403100000000506e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.270000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 1.200000000000000000e+01 9.700000000000000000e+01 3.300000000000000000e+01 3.033001690000000039e+01 -8.184978130000000363e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.982000000000000000e+03 2.857000000000000000e+03 1.899000000000000000e+03 3.300000000000000000e+01 3.430000000000000000e+02 2.800000000000000000e+02 4.088204670000000363e+01 -7.385742399999999463e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.672000000000000000e+03 3.410000000000000000e+03 1.939000000000000000e+03 5.000000000000000000e+00 2.570000000000000000e+02 2.800000000000000000e+02 3.937748440000000016e+01 -7.661228140000000053e+01 3.000000000000000000e+05 +2.000000000000000000e+00 8.160000000000000000e+02 2.500000000000000000e+03 1.930000000000000000e+03 9.200000000000000000e+01 1.532000000000000000e+03 2.800000000000000000e+02 4.060602899999999948e+01 -7.400192599999999743e+01 3.000000000000000000e+05 +6.000000000000000000e+00 7.161000000000000000e+03 7.535800000000000000e+04 2.002000000000000000e+03 2.860000000000000000e+02 1.540000000000000000e+02 1.330000000000000000e+02 3.592377849999999739e+01 -7.861673869999999908e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.640000000000000000e+03 2.591000000000000000e+03 1.901000000000000000e+03 7.600000000000000000e+01 2.460000000000000000e+02 2.800000000000000000e+02 4.081674220000000020e+01 -7.390310900000000061e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.830000000000000000e+02 6.969000000000000000e+03 1.953000000000000000e+03 3.500000000000000000e+01 8.800000000000000000e+01 2.800000000000000000e+02 3.031498739999999970e+01 -8.171084999999999354e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.673000000000000000e+03 5.940000000000000000e+03 1.958000000000000000e+03 5.000000000000000000e+00 3.380000000000000000e+02 2.800000000000000000e+02 3.371899660000000409e+01 -1.178994610999999963e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.238000000000000000e+03 5.227000000000000000e+03 2.018000000000000000e+03 4.000000000000000000e+01 1.480000000000000000e+02 1.100000000000000000e+02 3.591351170000000081e+01 -7.893815959999999166e+01 3.000000000000000000e+05 +5.500000000000000000e+00 5.368000000000000000e+03 3.049100000000000000e+04 1.935000000000000000e+03 3.400000000000000000e+01 3.330000000000000000e+02 2.800000000000000000e+02 3.385980179999999962e+01 -8.434374970000000360e+01 3.000000000000000000e+05 +5.500000000000000000e+00 8.042000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 2.120000000000000000e+02 1.728000000000000000e+03 6.475000000000000000e+03 2.578499230000000253e+01 -8.019035929999999723e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.704000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 5.100000000000000000e+01 1.760000000000000000e+02 1.700000000000000000e+02 2.573772849999999934e+01 -8.044126249999999345e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.088000000000000000e+03 4.100000000000000000e+03 1.985000000000000000e+03 9.650000000000000000e+02 5.500000000000000000e+01 2.800000000000000000e+02 3.933947689999999398e+01 -7.660747509999998783e+01 3.000000000000000000e+05 +1.500000000000000000e+00 8.960000000000000000e+02 6.969000000000000000e+03 2.017000000000000000e+03 9.900000000000000000e+01 9.480000000000000000e+02 8.460000000000000000e+02 2.575810639999999907e+01 -8.019240279999999643e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.642000000000000000e+03 5.575000000000000000e+03 2.018000000000000000e+03 4.900000000000000000e+01 1.510000000000000000e+02 6.500000000000000000e+01 3.585598917430250054e+01 -7.889698846951979760e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.759000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.200000000000000000e+02 3.420000000000000000e+02 8.000000000000000000e+01 3.927175520000000120e+01 -7.659135440000001438e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.210000000000000000e+02 8.897000000000000000e+03 2.002000000000000000e+03 5.600000000000000000e+01 1.850000000000000000e+02 2.800000000000000000e+02 2.834777650000000193e+01 -8.151560690000000875e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.450000000000000000e+03 7.200000000000000000e+03 1.956000000000000000e+03 5.000000000000000000e+00 4.340000000000000000e+02 2.800000000000000000e+02 3.382231270000000478e+01 -1.179345799000000170e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.936000000000000000e+03 1.245800000000000000e+04 1.986000000000000000e+03 3.700000000000000000e+01 1.160000000000000000e+02 7.000000000000000000e+00 3.738461810000000440e+01 -7.747887579999999730e+01 3.000000000000000000e+05 +8.000000000000000000e+00 7.021000000000000000e+03 5.350600000000000000e+04 2.008000000000000000e+03 8.000000000000000000e+00 3.270000000000000000e+02 5.100000000000000000e+01 2.846493590000000040e+01 -8.151476740000001087e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.797000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 4.000000000000000000e+01 1.050000000000000000e+02 2.390000000000000000e+02 3.012643300000000224e+01 -8.153820799999999736e+01 3.000000000000000000e+05 +1.500000000000000000e+00 7.400000000000000000e+02 6.969000000000000000e+03 1.967000000000000000e+03 9.700000000000000000e+01 1.350000000000000000e+02 2.750000000000000000e+02 2.591557319999999720e+01 -8.018638869999999486e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.852000000000000000e+03 1.502800000000000000e+04 1.960000000000000000e+03 2.200000000000000000e+01 2.610000000000000000e+02 2.800000000000000000e+02 2.564553099999999830e+01 -8.031142800000000648e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.811000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.250000000000000000e+02 2.800000000000000000e+02 3.014466280000000253e+01 -8.164342490000001362e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.118000000000000000e+03 5.401000000000000000e+03 1.910000000000000000e+03 3.400000000000000000e+01 1.680000000000000000e+02 2.800000000000000000e+02 3.757043740000000298e+01 -7.743149270000000683e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.167000000000000000e+03 6.969000000000000000e+03 1.970000000000000000e+03 2.300000000000000000e+01 8.720000000000000000e+02 7.400000000000000000e+02 3.361333799999999883e+01 -1.178788979999999924e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.646000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.760000000000000000e+02 2.800000000000000000e+02 3.028170000000000073e+01 -8.149320000000000164e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.860000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 1.450000000000000000e+02 2.800000000000000000e+02 3.582174200000000042e+01 -7.911320400000001030e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.796000000000000000e+03 6.969000000000000000e+03 1.990000000000000000e+03 3.000000000000000000e+01 1.030000000000000000e+02 2.800000000000000000e+02 3.047722339999999974e+01 -8.157776520000000176e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.597000000000000000e+03 7.928000000000000000e+03 2.002000000000000000e+03 1.900000000000000000e+01 1.680000000000000000e+02 2.800000000000000000e+02 2.565662439999999833e+01 -8.041139559999999165e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.056000000000000000e+03 7.570000000000000000e+03 1.984000000000000000e+03 1.000000000000000000e+00 1.590000000000000000e+02 1.700000000000000000e+01 2.856403499999999696e+01 -8.128131299999999726e+01 3.000000000000000000e+05 +3.000000000000000000e+00 4.824000000000000000e+03 6.969000000000000000e+03 1.907000000000000000e+03 1.460000000000000000e+02 8.000000000000000000e+01 2.800000000000000000e+02 3.931349999999999767e+01 -7.663743700000000558e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.895000000000000000e+03 7.875000000000000000e+03 1.976000000000000000e+03 1.750000000000000000e+02 2.210000000000000000e+02 2.800000000000000000e+02 2.575863599999999920e+01 -8.034091479999999308e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.286000000000000000e+03 6.135000000000000000e+03 1.947000000000000000e+03 4.900000000000000000e+01 3.340000000000000000e+02 2.800000000000000000e+02 2.574344819999999956e+01 -8.023372150000000147e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 1.900000000000000000e+03 9.000000000000000000e+00 2.000000000000000000e+02 2.800000000000000000e+02 3.932863799999999799e+01 -7.663376600000000849e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.997000000000000000e+03 1.293600000000000000e+04 1.991000000000000000e+03 1.370000000000000000e+02 1.280000000000000000e+02 2.800000000000000000e+02 2.837025519999999545e+01 -8.135869659999998760e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.490000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 9.000000000000000000e+00 2.090000000000000000e+02 2.800000000000000000e+01 3.386768889999999743e+01 -8.446451840000000288e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.120000000000000000e+02 6.969000000000000000e+03 1.984000000000000000e+03 4.000000000000000000e+00 2.530000000000000000e+02 3.100000000000000000e+02 3.928031579999999678e+01 -7.661433359999999482e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.713000000000000000e+03 5.000000000000000000e+03 2.004000000000000000e+03 7.500000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 2.568664610000000081e+01 -8.045883489999999938e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.963000000000000000e+03 1.110000000000000000e+02 4.330000000000000000e+02 2.800000000000000000e+02 4.090688839999999971e+01 -7.390598229999999091e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.229000000000000000e+03 6.969000000000000000e+03 1.982000000000000000e+03 1.300000000000000000e+01 2.160000000000000000e+02 2.800000000000000000e+02 2.583801030000000054e+01 -8.018044429999999068e+01 3.000000000000000000e+05 +4.500000000000000000e+00 2.760000000000000000e+03 2.000000000000000000e+03 1.960000000000000000e+03 9.200000000000000000e+01 3.620000000000000000e+02 2.800000000000000000e+02 4.061122800000000410e+01 -7.392136610000000019e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.400000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.320000000000000000e+02 6.760000000000000000e+02 2.800000000000000000e+02 3.382156009999999924e+01 -8.438828719999999350e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.584000000000000000e+03 6.969000000000000000e+03 1.930000000000000000e+03 4.000000000000000000e+01 2.500000000000000000e+01 2.800000000000000000e+02 3.935133599999999632e+01 -7.660773100000000113e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.240000000000000000e+03 5.837000000000000000e+04 2.007000000000000000e+03 2.700000000000000000e+01 1.770000000000000000e+02 9.500000000000000000e+01 3.598123760000000004e+01 -7.868131170000000907e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.183000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 1.910000000000000000e+02 2.800000000000000000e+02 2.837065330000000074e+01 -8.124938740000000337e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.258000000000000000e+03 5.893000000000000000e+03 2.011000000000000000e+03 6.000000000000000000e+00 4.570000000000000000e+02 2.580000000000000000e+02 3.359621099999999672e+01 -1.177248523000000091e+02 3.000000000000000000e+05 +4.000000000000000000e+00 2.566000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.390000000000000000e+02 1.150000000000000000e+02 6.700000000000000000e+01 3.044082260131800055e+01 -8.170420074462900573e+01 3.000000000000000000e+05 +5.000000000000000000e+00 5.100000000000000000e+03 2.918500000000000000e+04 1.999000000000000000e+03 2.600000000000000000e+01 1.410000000000000000e+02 5.800000000000000000e+01 3.571474680000000035e+01 -7.879965809999998783e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.182000000000000000e+03 5.000000000000000000e+03 1.985000000000000000e+03 1.000000000000000000e+02 1.400000000000000000e+02 2.800000000000000000e+02 2.558699460000000414e+01 -8.038567619999999181e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.009000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.660000000000000000e+02 2.800000000000000000e+02 3.578513149999999854e+01 -7.890269959999999116e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.224000000000000000e+03 1.793000000000000000e+03 1.910000000000000000e+03 2.000000000000000000e+00 2.740000000000000000e+02 2.800000000000000000e+02 3.928590330000000108e+01 -7.657416829999999663e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.682000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.200000000000000000e+01 1.960000000000000000e+02 5.600000000000000000e+01 3.928188759999999746e+01 -7.655735549999999989e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.438000000000000000e+03 6.969000000000000000e+03 1.926000000000000000e+03 2.800000000000000000e+01 3.300000000000000000e+02 2.800000000000000000e+02 2.583908030000000267e+01 -8.018530520000000195e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.139000000000000000e+03 6.969000000000000000e+03 2.014000000000000000e+03 1.200000000000000000e+02 7.160000000000000000e+02 1.007000000000000000e+03 2.576037200000000027e+01 -8.019019699999999773e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.341000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 6.000000000000000000e+00 1.150000000000000000e+02 2.580000000000000000e+02 3.012853410000000309e+01 -8.150700229999999635e+01 3.000000000000000000e+05 +6.500000000000000000e+00 5.962000000000000000e+03 2.112900000000000000e+04 2.008000000000000000e+03 4.210000000000000000e+02 5.020000000000000000e+02 4.980000000000000000e+02 2.841044300000000078e+01 -8.125812120000000505e+01 3.000000000000000000e+05 +4.000000000000000000e+00 5.252000000000000000e+03 7.535800000000000000e+04 1.997000000000000000e+03 2.370000000000000000e+02 1.620000000000000000e+02 3.600000000000000000e+01 3.604057849999999519e+01 -7.895147309999998697e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.244000000000000000e+03 6.072000000000000000e+03 1.910000000000000000e+03 4.200000000000000000e+01 2.890000000000000000e+02 2.800000000000000000e+02 4.064295300000000566e+01 -7.408785300000000973e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.263000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.600000000000000000e+02 4.990000000000000000e+02 2.800000000000000000e+02 2.580783939999999888e+01 -8.019222700000000259e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.850000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 1.560000000000000000e+02 2.770000000000000000e+02 3.570000000000000000e+02 2.575624499999999983e+01 -8.023877699999999891e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.544000000000000000e+03 6.969000000000000000e+03 2.010000000000000000e+03 2.470000000000000000e+02 4.400000000000000000e+02 1.086000000000000000e+03 2.576954899999999782e+01 -8.019516500000000292e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.577000000000000000e+03 3.817000000000000000e+03 1.925000000000000000e+03 3.300000000000000000e+01 8.730000000000000000e+02 2.800000000000000000e+02 4.062923589999999763e+01 -7.403461529999999868e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.651000000000000000e+03 3.201600000000000000e+04 1.965000000000000000e+03 6.000000000000000000e+00 1.980000000000000000e+02 2.800000000000000000e+02 3.597861810000000560e+01 -7.894351899999999489e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.276000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 2.320000000000000000e+02 8.200000000000000000e+01 2.800000000000000000e+02 3.041420640000000120e+01 -8.173142599999999902e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.500000000000000000e+02 5.500000000000000000e+02 1.990000000000000000e+03 7.900000000000000000e+01 1.270000000000000000e+02 3.510000000000000000e+02 2.839973929999999669e+01 -8.146587559999998973e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.380000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 2.700000000000000000e+01 4.610000000000000000e+02 6.270000000000000000e+02 2.576844750000000062e+01 -8.019134870000000603e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.695000000000000000e+03 2.178000000000000000e+03 2.017000000000000000e+03 2.700000000000000000e+02 1.300000000000000000e+02 1.450000000000000000e+02 3.574769699999999517e+01 -7.873103299999999649e+01 3.000000000000000000e+05 +2.000000000000000000e+00 8.680000000000000000e+02 2.117000000000000000e+03 1.984000000000000000e+03 8.400000000000000000e+01 1.010000000000000000e+02 4.800000000000000000e+01 2.858156199999999814e+01 -8.144449499999998920e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.889000000000000000e+03 1.050000000000000000e+04 1.990000000000000000e+03 9.000000000000000000e+00 4.600000000000000000e+02 2.800000000000000000e+02 3.352042879999999769e+01 -1.176498164000000060e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.285000000000000000e+03 6.750000000000000000e+03 1.941000000000000000e+03 6.800000000000000000e+01 3.310000000000000000e+02 2.800000000000000000e+02 2.576685860000000261e+01 -8.023577709999999286e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.056000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 5.000000000000000000e+00 3.800000000000000000e+01 2.800000000000000000e+02 3.934573429999999661e+01 -7.660574210000000051e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 1.938000000000000000e+03 1.550000000000000000e+02 6.300000000000000000e+01 2.800000000000000000e+02 3.932791960000000131e+01 -7.656467020000000900e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.002000000000000000e+03 5.219000000000000000e+03 1.988000000000000000e+03 2.600000000000000000e+01 4.090000000000000000e+02 4.410000000000000000e+02 3.361746910000000099e+01 -1.175851030999999978e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.054000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.190000000000000000e+02 4.510000000000000000e+02 2.800000000000000000e+02 3.361121329999999574e+01 -1.179242439999999874e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.122000000000000000e+03 4.356000000000000000e+08 1.975000000000000000e+03 6.400000000000000000e+01 2.670000000000000000e+02 6.570000000000000000e+02 3.360840739999999727e+01 -1.177516773999999913e+02 3.000000000000000000e+05 +1.000000000000000000e+00 8.500000000000000000e+02 6.969000000000000000e+03 1.952000000000000000e+03 6.400000000000000000e+01 2.410000000000000000e+02 2.800000000000000000e+02 2.585110799999999998e+01 -8.023054109999999639e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.515000000000000000e+03 5.000000000000000000e+03 1.986000000000000000e+03 8.000000000000000000e+00 1.750000000000000000e+02 3.500000000000000000e+01 2.851428619999999725e+01 -8.133821179999999629e+01 3.000000000000000000e+05 +2.500000000000000000e+00 9.210000000000000000e+02 1.942000000000000000e+03 1.910000000000000000e+03 8.000000000000000000e+01 5.430000000000000000e+02 2.800000000000000000e+02 4.084008800000000150e+01 -7.392273000000000138e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.116000000000000000e+03 6.969000000000000000e+03 1.954000000000000000e+03 1.240000000000000000e+02 3.600000000000000000e+01 2.800000000000000000e+02 3.032278030000000157e+01 -8.172017139999999813e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.938000000000000000e+03 6.969000000000000000e+03 1.977000000000000000e+03 7.000000000000000000e+00 1.430000000000000000e+02 2.800000000000000000e+02 3.014067770000000124e+01 -8.162540690000000154e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.216000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 2.000000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 3.936815889999999740e+01 -7.658853070000000685e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.511000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 6.000000000000000000e+00 9.400000000000000000e+01 4.200000000000000000e+01 3.035697739999999811e+01 -8.176954969999999889e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.380000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 2.300000000000000000e+01 6.590000000000000000e+02 2.800000000000000000e+02 2.575990830000000287e+01 -8.019829440000000886e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.120000000000000000e+02 8.280000000000000000e+02 1.875000000000000000e+03 2.200000000000000000e+01 3.800000000000000000e+01 2.800000000000000000e+02 3.927912700000000257e+01 -7.663579099999999755e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.908000000000000000e+03 1.003000000000000000e+04 1.959000000000000000e+03 7.700000000000000000e+01 2.160000000000000000e+02 2.800000000000000000e+02 3.937670609999999982e+01 -7.667680159999999034e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.394000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 2.050000000000000000e+02 4.590000000000000000e+02 1.063000000000000000e+03 2.578217919999999808e+01 -8.021237120000000687e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.353000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 2.310000000000000000e+02 1.630000000000000000e+02 9.020000000000000000e+02 2.587963489999999922e+01 -8.016438740000000962e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.700000000000000000e+03 6.969000000000000000e+03 1.990000000000000000e+03 3.070000000000000000e+02 3.820000000000000000e+02 4.980000000000000000e+02 2.572773099999999857e+01 -8.024121999999999844e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.520000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 4.300000000000000000e+01 4.510000000000000000e+02 1.000000000000000000e+03 3.367403149999999812e+01 -1.178431398999999971e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.395000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.860000000000000000e+02 1.700000000000000000e+02 2.800000000000000000e+02 2.837123700000000071e+01 -8.125999699999999848e+01 3.000000000000000000e+05 +8.000000000000000000e+00 6.689000000000000000e+03 1.167400000000000000e+05 2.000000000000000000e+03 1.200000000000000000e+01 2.530000000000000000e+02 2.800000000000000000e+02 3.390155790000000025e+01 -8.443308470000000909e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.431000000000000000e+03 9.180000000000000000e+03 1.961000000000000000e+03 1.400000000000000000e+01 1.480000000000000000e+02 2.800000000000000000e+02 2.562251690000000082e+01 -8.035501140000000930e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.500000000000000000e+03 6.969000000000000000e+03 1.853000000000000000e+03 1.300000000000000000e+01 1.860000000000000000e+02 2.800000000000000000e+02 3.930619089999999716e+01 -7.662478129999999510e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.440000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 9.700000000000000000e+01 1.980000000000000000e+02 2.400000000000000000e+02 2.563392139999999841e+01 -8.041348440000000153e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.360000000000000000e+03 5.000000000000000000e+03 1.930000000000000000e+03 1.600000000000000000e+01 2.680000000000000000e+02 2.800000000000000000e+02 4.084547299999999836e+01 -7.382194160000000238e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.770000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.200000000000000000e+01 1.270000000000000000e+02 3.600000000000000000e+01 3.048473960000000105e+01 -8.157003259999999045e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.878000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.010000000000000000e+02 9.320000000000000000e+02 1.541000000000000000e+03 2.576033190000000062e+01 -8.018934099999999887e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.400000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 1.210000000000000000e+02 4.440000000000000000e+02 4.870000000000000000e+02 2.577128189999999819e+01 -8.018765829999999539e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.175000000000000000e+03 1.437400000000000000e+04 2.007000000000000000e+03 6.000000000000000000e+00 1.420000000000000000e+02 4.200000000000000000e+01 3.567524590000000018e+01 -7.866686550000000011e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.960000000000000000e+02 9.234000000000000000e+03 1.960000000000000000e+03 7.600000000000000000e+01 1.570000000000000000e+02 2.800000000000000000e+02 3.380192199999999758e+01 -8.448006800000000283e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.252000000000000000e+03 6.969000000000000000e+03 1.953000000000000000e+03 2.800000000000000000e+01 3.150000000000000000e+02 2.800000000000000000e+02 2.581865730000000170e+01 -8.022618420000000583e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.700000000000000000e+02 6.969000000000000000e+03 1.954000000000000000e+03 1.000000000000000000e+00 3.400000000000000000e+01 2.800000000000000000e+02 3.933750279999999577e+01 -7.656078010000000234e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.666000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.330000000000000000e+02 2.800000000000000000e+02 2.860777000000000214e+01 -8.122409000000000390e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.440000000000000000e+03 7.698000000000000000e+03 1.935000000000000000e+03 2.800000000000000000e+01 2.570000000000000000e+02 2.800000000000000000e+02 2.855149570000000026e+01 -8.136698780000000397e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.258000000000000000e+03 6.054800000000000000e+04 1.984000000000000000e+03 1.200000000000000000e+01 2.030000000000000000e+02 2.800000000000000000e+02 3.602450300000000283e+01 -7.903973799999999983e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.112000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.800000000000000000e+02 2.800000000000000000e+02 3.588348700000000235e+01 -7.868961810000000412e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.990000000000000000e+03 6.969000000000000000e+03 1.959000000000000000e+03 1.200000000000000000e+02 1.560000000000000000e+02 2.800000000000000000e+02 3.025273419999999902e+01 -8.163099309999999775e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.496000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 2.620000000000000000e+02 4.810000000000000000e+02 2.800000000000000000e+02 3.050387800000000382e+01 -8.154856999999999800e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.920000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 2.400000000000000000e+02 3.890000000000000000e+02 4.580000000000000000e+02 2.580005170000000092e+01 -8.018864589999999737e+01 3.000000000000000000e+05 +1.500000000000000000e+00 7.820000000000000000e+02 6.969000000000000000e+03 1.969000000000000000e+03 1.210000000000000000e+02 3.260000000000000000e+02 5.000000000000000000e+02 2.574913049999999970e+01 -8.020181259999999668e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.386000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 2.730000000000000000e+02 4.760000000000000000e+02 1.590000000000000000e+03 2.576866250000000136e+01 -8.018872700000000009e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.300000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 5.000000000000000000e+01 4.130000000000000000e+02 2.800000000000000000e+02 2.575987410000000111e+01 -8.019068859999998722e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.965000000000000000e+03 5.970000000000000000e+03 2.004000000000000000e+03 1.200000000000000000e+01 1.820000000000000000e+02 5.900000000000000000e+01 2.856817689999999743e+01 -8.133562259999999355e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.179000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 1.070000000000000000e+02 8.500000000000000000e+01 2.800000000000000000e+02 3.033061359999999951e+01 -8.159087909999999511e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.172000000000000000e+03 1.219680000000000000e+05 1.908000000000000000e+03 2.590000000000000000e+02 8.390000000000000000e+02 2.800000000000000000e+02 3.591984850000000051e+01 -7.904656259999998724e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.367000000000000000e+03 1.600000000000000000e+04 1.991000000000000000e+03 3.700000000000000000e+01 3.550000000000000000e+02 2.200000000000000000e+01 3.343276089999999812e+01 -1.175989507999999972e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.637000000000000000e+03 6.969000000000000000e+03 1.958000000000000000e+03 6.700000000000000000e+01 1.070000000000000000e+02 2.800000000000000000e+02 3.022310069999999982e+01 -8.173453590000001157e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.295000000000000000e+03 3.049000000000000000e+03 1.920000000000000000e+03 2.300000000000000000e+01 3.270000000000000000e+02 2.800000000000000000e+02 4.083705309999999855e+01 -7.383627779999999063e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.728000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 4.200000000000000000e+01 7.500000000000000000e+01 2.800000000000000000e+02 3.040476080000000181e+01 -8.169234859999998832e+01 3.000000000000000000e+05 +8.000000000000000000e+00 8.698000000000000000e+03 1.406980000000000000e+05 2.005000000000000000e+03 1.700000000000000000e+01 2.130000000000000000e+02 2.230000000000000000e+02 3.594663229999999743e+01 -7.869737250000000017e+01 3.000000000000000000e+05 +1.000000000000000000e+00 4.720000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 4.900000000000000000e+01 4.220000000000000000e+02 3.800000000000000000e+02 2.581562639999999931e+01 -8.018916290000001368e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.765000000000000000e+03 6.969000000000000000e+03 1.973000000000000000e+03 1.960000000000000000e+02 8.800000000000000000e+01 2.800000000000000000e+02 3.020801520000000195e+01 -8.162022960000000182e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.000000000000000000e+03 1.899000000000000000e+03 1.931000000000000000e+03 2.200000000000000000e+01 5.330000000000000000e+02 2.800000000000000000e+02 4.069213510000000156e+01 -7.394974750000000085e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.950000000000000000e+03 6.969000000000000000e+03 1.975000000000000000e+03 5.680000000000000000e+02 1.330000000000000000e+02 1.330000000000000000e+03 2.588098649999999878e+01 -8.016231879999999421e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.512000000000000000e+03 8.725600000000000000e+04 2.007000000000000000e+03 2.900000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 2.857930089999999623e+01 -8.110346669999999847e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.575000000000000000e+03 3.288300000000000000e+04 2.005000000000000000e+03 1.060000000000000000e+02 3.060000000000000000e+02 1.046000000000000000e+03 2.854106060000000156e+01 -8.137044579999999883e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.184000000000000000e+03 1.000000000000000000e+00 1.954000000000000000e+03 6.100000000000000000e+01 1.620000000000000000e+02 2.800000000000000000e+02 2.589350639999999970e+01 -8.022988759999999786e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.924000000000000000e+03 2.900000000000000000e+01 5.110000000000000000e+02 2.800000000000000000e+02 4.062800620000000151e+01 -7.402576949999999556e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.224000000000000000e+03 2.000000000000000000e+03 1.899000000000000000e+03 9.600000000000000000e+01 4.890000000000000000e+02 2.800000000000000000e+02 4.067571350000000052e+01 -7.387426150000000291e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.311000000000000000e+03 6.839000000000000000e+03 1.977000000000000000e+03 1.000000000000000000e+00 1.520000000000000000e+02 1.500000000000000000e+01 2.840201899999999924e+01 -8.140967540000001179e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.070000000000000000e+02 6.969000000000000000e+03 1.940000000000000000e+03 2.800000000000000000e+01 5.200000000000000000e+02 5.580000000000000000e+02 4.076806329999999434e+01 -7.389224009999999510e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.457000000000000000e+03 6.969000000000000000e+03 2.020000000000000000e+03 3.480000000000000000e+02 5.400000000000000000e+02 3.550000000000000000e+02 2.580135130000000032e+01 -8.019619149999999763e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.864000000000000000e+03 4.500000000000000000e+03 2.014000000000000000e+03 1.000000000000000000e+00 3.470000000000000000e+02 2.150000000000000000e+02 3.348970949999999647e+01 -1.176422956999999911e+02 3.000000000000000000e+05 +2.000000000000000000e+00 8.820000000000000000e+02 6.969000000000000000e+03 2.004000000000000000e+03 4.400000000000000000e+01 2.480000000000000000e+02 5.060000000000000000e+02 2.578375710000000254e+01 -8.020869779999999594e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.500000000000000000e+03 1.037900000000000000e+04 1.965000000000000000e+03 4.000000000000000000e+00 4.290000000000000000e+02 2.800000000000000000e+02 3.390098429999999752e+01 -1.179109233000000074e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.392000000000000000e+03 8.710000000000000000e+02 1.900000000000000000e+03 1.510000000000000000e+02 2.900000000000000000e+01 2.800000000000000000e+02 3.928663199999999733e+01 -7.663068210000000136e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.239000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.030000000000000000e+02 1.520000000000000000e+02 4.200000000000000000e+01 3.370767500000000183e+01 -8.430886300000000233e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.840000000000000000e+03 1.572000000000000000e+03 1.945000000000000000e+03 1.030000000000000000e+02 2.360000000000000000e+02 2.800000000000000000e+02 4.089001799999999776e+01 -7.384877400000000591e+01 3.000000000000000000e+05 +2.000000000000000000e+00 5.830000000000000000e+02 5.830000000000000000e+02 1.985000000000000000e+03 5.700000000000000000e+01 1.830000000000000000e+02 5.340000000000000000e+02 2.845662029999999731e+01 -8.146806359999999358e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.730000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 1.910000000000000000e+02 9.990000000000000000e+02 3.905000000000000000e+03 2.575908800000000198e+01 -8.019181670000000395e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.346000000000000000e+03 8.710000000000000000e+02 1.900000000000000000e+03 2.090000000000000000e+02 1.860000000000000000e+02 2.800000000000000000e+02 3.929237750000000062e+01 -7.658169959999999321e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.844000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.310000000000000000e+02 2.800000000000000000e+02 3.018089200000000005e+01 -8.159270670000000791e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.524000000000000000e+03 2.500000000000000000e+03 1.920000000000000000e+03 6.400000000000000000e+01 3.180000000000000000e+02 2.800000000000000000e+02 4.061429580000000072e+01 -7.406959849999999790e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.216000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 5.500000000000000000e+01 5.300000000000000000e+01 2.800000000000000000e+02 3.038413919999999990e+01 -8.164038899999999899e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.832000000000000000e+03 9.385000000000000000e+03 1.951000000000000000e+03 3.600000000000000000e+01 2.510000000000000000e+02 2.800000000000000000e+02 2.858032619999999824e+01 -8.136788990000000865e+01 3.000000000000000000e+05 diff --git a/examples/AI-Feynman/real_estate_data/aif_train.csv_train b/examples/AI-Feynman/real_estate_data/aif_train.csv_train new file mode 100644 index 0000000..a44b68d --- /dev/null +++ b/examples/AI-Feynman/real_estate_data/aif_train.csv_train @@ -0,0 +1,800 @@ +2.000000000000000000e+00 2.226000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 1.900000000000000000e+01 9.200000000000000000e+01 2.000000000000000000e+02 3.927980699999999814e+01 -7.670495499999999822e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.998000000000000000e+03 6.526000000000000000e+03 2.003000000000000000e+03 7.500000000000000000e+01 1.800000000000000000e+02 2.080000000000000000e+02 2.844500430000000080e+01 -8.149257699999999716e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.048000000000000000e+03 5.977000000000000000e+03 1.893000000000000000e+03 3.490000000000000000e+02 1.810000000000000000e+02 2.800000000000000000e+02 3.937401299999999793e+01 -7.665047350000000392e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.917000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.260000000000000000e+02 1.880000000000000000e+02 5.600000000000000000e+01 3.928188759999999746e+01 -7.655735549999999989e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.559000000000000000e+03 6.969000000000000000e+03 1.968000000000000000e+03 1.300000000000000000e+01 1.090000000000000000e+02 5.280000000000000000e+02 3.935197889999999887e+01 -7.664533950000000573e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.102000000000000000e+03 6.969000000000000000e+03 1.974000000000000000e+03 7.000000000000000000e+00 3.270000000000000000e+02 3.470000000000000000e+02 3.375674740000000185e+01 -1.178426735000000036e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.740000000000000000e+03 5.662000000000000000e+03 2.018000000000000000e+03 5.900000000000000000e+01 2.520000000000000000e+02 2.800000000000000000e+02 3.577688939999999462e+01 -7.861975799999999026e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.077000000000000000e+03 3.200000000000000000e+03 2.011000000000000000e+03 5.000000000000000000e+01 5.990000000000000000e+02 2.800000000000000000e+02 3.364521649999999653e+01 -1.177596456999999930e+02 3.000000000000000000e+05 +3.500000000000000000e+00 1.900000000000000000e+03 1.900000000000000000e+03 1.925000000000000000e+03 4.100000000000000000e+01 6.050000000000000000e+02 2.800000000000000000e+02 4.070374400000000037e+01 -7.388573100000000693e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.800000000000000000e+03 3.600000000000000000e+03 2.017000000000000000e+03 2.000000000000000000e+00 4.110000000000000000e+02 2.270000000000000000e+02 3.352647039999999379e+01 -1.176288155999999958e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.333000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.240000000000000000e+02 2.800000000000000000e+02 2.835421599999999742e+01 -8.132360099999999647e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.356000000000000000e+03 8.710000000000000000e+02 1.949000000000000000e+03 4.200000000000000000e+01 2.730000000000000000e+02 2.800000000000000000e+02 3.373038199999999875e+01 -8.433249140000000921e+01 3.000000000000000000e+05 +7.000000000000000000e+00 5.115000000000000000e+03 4.268800000000000000e+04 2.017000000000000000e+03 1.470000000000000000e+02 3.200000000000000000e+02 1.000000000000000000e+02 3.591790382439270246e+01 -7.862598954733100243e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.448000000000000000e+03 4.110000000000000000e+03 1.995000000000000000e+03 3.800000000000000000e+01 1.310000000000000000e+02 1.600000000000000000e+01 2.861359760000000207e+01 -8.145019350000001168e+01 3.000000000000000000e+05 +3.000000000000000000e+00 4.360000000000000000e+03 2.000000000000000000e+03 1.899000000000000000e+03 3.700000000000000000e+01 3.670000000000000000e+02 2.800000000000000000e+02 4.068352840000000015e+01 -7.395045140000000572e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.160000000000000000e+02 6.969000000000000000e+03 1.985000000000000000e+03 2.710000000000000000e+02 3.060000000000000000e+02 1.490000000000000000e+02 2.572721900000000161e+01 -8.024482840000001715e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.039000000000000000e+03 2.613000000000000000e+03 2.018000000000000000e+03 2.600000000000000000e+01 1.520000000000000000e+02 1.600000000000000000e+02 3.592415100000000194e+01 -7.878010000000000446e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.248000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 6.860000000000000000e+02 2.400000000000000000e+02 5.980000000000000000e+02 2.578008420000000100e+01 -8.027686970000000599e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.282000000000000000e+03 4.591000000000000000e+04 2.017000000000000000e+03 1.210000000000000000e+02 2.910000000000000000e+02 1.660000000000000000e+02 2.839845800000000153e+01 -8.123087599999999497e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.105000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 1.480000000000000000e+02 4.120000000000000000e+02 6.360000000000000000e+02 2.576199079999999952e+01 -8.019041870000000927e+01 3.000000000000000000e+05 +7.500000000000000000e+00 7.581000000000000000e+03 1.001870000000000000e+05 1.988000000000000000e+03 4.040000000000000000e+02 1.650000000000000000e+02 1.700000000000000000e+01 3.398151670000000024e+01 -8.430125689999999850e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.393000000000000000e+03 3.703000000000000000e+03 1.996000000000000000e+03 9.000000000000000000e+00 2.080000000000000000e+02 1.490000000000000000e+02 2.560551519999999925e+01 -8.042350249999999789e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.108000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.450000000000000000e+02 2.800000000000000000e+02 2.836954000000000065e+01 -8.133019389999999760e+01 3.000000000000000000e+05 +6.000000000000000000e+00 6.878000000000000000e+03 6.969000000000000000e+03 1.929000000000000000e+03 1.950000000000000000e+02 4.790000000000000000e+02 2.800000000000000000e+02 3.026739529999999689e+01 -8.170077909999999122e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.335000000000000000e+03 6.098000000000000000e+03 2.008000000000000000e+03 2.800000000000000000e+01 9.400000000000000000e+01 3.300000000000000000e+01 3.572019099999999980e+01 -7.854033069999999839e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.470000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 1.200000000000000000e+01 1.560000000000000000e+02 5.150000000000000000e+02 2.570506199999999808e+01 -8.037838000000000704e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.744000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.540000000000000000e+02 2.800000000000000000e+02 3.580782659999999851e+01 -7.887836609999999382e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.330000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.320000000000000000e+02 2.800000000000000000e+02 3.022317500000000123e+01 -8.150539100000000303e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.499000000000000000e+03 1.827000000000000000e+03 2.000000000000000000e+03 2.200000000000000000e+01 1.950000000000000000e+02 5.900000000000000000e+01 2.567534760000000205e+01 -8.045900870000001248e+01 3.000000000000000000e+05 +1.500000000000000000e+00 7.770000000000000000e+02 6.969000000000000000e+03 2.014000000000000000e+03 3.160000000000000000e+02 4.480000000000000000e+02 7.500000000000000000e+02 2.576037200000000027e+01 -8.019019699999999773e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.148000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.790000000000000000e+02 2.390000000000000000e+02 4.030000000000000000e+02 3.928888829999999643e+01 -7.660945459999999230e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.200000000000000000e+02 6.969000000000000000e+03 1.923000000000000000e+03 1.000000000000000000e+00 3.800000000000000000e+01 2.800000000000000000e+02 3.929754150000000124e+01 -7.657086719999999502e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.426000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.000000000000000000e+00 3.750000000000000000e+02 3.370000000000000000e+02 3.885100500000000068e+01 -7.731709899999999891e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.528000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 2.200000000000000000e+01 2.320000000000000000e+02 8.000000000000000000e+00 3.029313099999999892e+01 -8.147699899999999218e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.497000000000000000e+03 1.240900000000000000e+04 1.992000000000000000e+03 1.590000000000000000e+02 1.640000000000000000e+02 3.300000000000000000e+01 2.848083379999999920e+01 -8.149352050000000247e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.308000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 8.500000000000000000e+01 1.990000000000000000e+02 2.800000000000000000e+02 2.837219600000000241e+01 -8.124999800000000505e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.262000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.070000000000000000e+02 8.710000000000000000e+02 1.020000000000000000e+02 2.575810639999999907e+01 -8.019240279999999643e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.453000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.640000000000000000e+02 2.800000000000000000e+02 3.010662679999999725e+01 -8.151913409999998805e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.190000000000000000e+02 6.969000000000000000e+03 1.956000000000000000e+03 1.100000000000000000e+02 3.650000000000000000e+02 2.800000000000000000e+02 4.073272639999999711e+01 -7.390014259999999524e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.500000000000000000e+02 6.969000000000000000e+03 1.955000000000000000e+03 3.600000000000000000e+01 2.350000000000000000e+02 2.800000000000000000e+02 4.061425450000000126e+01 -7.392169759999998746e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.586000000000000000e+03 8.616000000000000000e+03 2.002000000000000000e+03 5.410000000000000000e+02 4.670000000000000000e+02 7.750000000000000000e+02 2.595430029999999988e+01 -8.017170360000000073e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.169000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 3.060000000000000000e+02 3.850000000000000000e+02 6.260000000000000000e+02 2.577172660000000093e+01 -8.018542359999999292e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.654000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 3.100000000000000000e+01 1.540000000000000000e+02 3.000000000000000000e+01 3.011408400000000185e+01 -8.145347199999999077e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.989000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.580000000000000000e+02 3.720000000000000000e+02 1.843000000000000000e+03 3.928047360000000054e+01 -7.660597909999999899e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.540000000000000000e+03 1.260000000000000000e+04 1.968000000000000000e+03 3.000000000000000000e+00 4.510000000000000000e+02 2.800000000000000000e+02 3.387406810000000235e+01 -1.178282533999999941e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.584000000000000000e+03 5.706300000000000000e+04 1.996000000000000000e+03 5.800000000000000000e+01 1.330000000000000000e+02 2.800000000000000000e+02 3.560347559999999589e+01 -7.862588730000000226e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.613000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 4.200000000000000000e+01 1.270000000000000000e+02 2.000000000000000000e+01 3.014474589999999665e+01 -8.156707519999999079e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.050000000000000000e+03 8.525000000000000000e+03 1.950000000000000000e+03 1.250000000000000000e+02 4.100000000000000000e+02 2.800000000000000000e+02 2.585685700000000153e+01 -8.017487500000000011e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.188000000000000000e+03 2.753000000000000000e+03 1.950000000000000000e+03 3.000000000000000000e+00 8.410000000000000000e+02 2.800000000000000000e+02 4.075215599999999938e+01 -7.381352690000001360e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.000000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.520000000000000000e+02 2.800000000000000000e+02 2.835621099999999828e+01 -8.132580199999999593e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.372000000000000000e+03 1.309000000000000000e+04 1.959000000000000000e+03 1.600000000000000000e+01 4.070000000000000000e+02 2.800000000000000000e+02 3.388066339999999599e+01 -1.178046523999999948e+02 3.000000000000000000e+05 +4.000000000000000000e+00 4.700000000000000000e+03 4.791000000000000000e+03 1.985000000000000000e+03 1.770000000000000000e+02 1.740000000000000000e+02 3.000000000000000000e+02 3.574243599999999788e+01 -7.879737500000000239e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.310000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 3.600000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 3.589068300000000278e+01 -7.895839699999999084e+01 3.000000000000000000e+05 +8.500000000000000000e+00 9.912000000000000000e+03 4.660900000000000000e+04 2.014000000000000000e+03 1.590000000000000000e+02 4.990000000000000000e+02 2.800000000000000000e+02 2.567708710000000139e+01 -8.031674069999999688e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.515000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.200000000000000000e+01 1.260000000000000000e+02 2.800000000000000000e+02 2.842770000000000152e+01 -8.121859999999999502e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.105000000000000000e+03 8.870000000000000000e+02 1.915000000000000000e+03 6.300000000000000000e+02 1.440000000000000000e+02 2.800000000000000000e+02 3.928869500000000414e+01 -7.655689979999999650e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.757000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.800000000000000000e+02 1.200000000000000000e+02 4.600000000000000000e+01 3.021742057800300074e+01 -8.182881927490200269e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.806000000000000000e+03 7.892000000000000000e+03 2.000000000000000000e+03 4.800000000000000000e+01 1.130000000000000000e+02 2.000000000000000000e+01 2.836255640000000255e+01 -8.139479759999998976e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.368000000000000000e+03 1.501700000000000000e+04 1.956000000000000000e+03 1.130000000000000000e+02 4.160000000000000000e+02 2.800000000000000000e+02 2.564884039999999743e+01 -8.032738170000000366e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.760000000000000000e+02 6.969000000000000000e+03 2.009000000000000000e+03 2.500000000000000000e+02 5.020000000000000000e+02 7.330000000000000000e+02 2.576866250000000136e+01 -8.018872700000000009e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.838000000000000000e+03 1.581000000000000000e+03 1.901000000000000000e+03 4.200000000000000000e+01 3.800000000000000000e+02 2.800000000000000000e+02 4.081988839999999641e+01 -7.392772700000000441e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.140000000000000000e+03 1.306800000000000000e+04 1.950000000000000000e+03 1.100000000000000000e+02 9.900000000000000000e+01 2.800000000000000000e+02 3.935724799999999846e+01 -7.657894199999999785e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.277000000000000000e+03 6.146000000000000000e+03 1.920000000000000000e+03 2.200000000000000000e+01 2.330000000000000000e+02 2.800000000000000000e+02 2.855474480000000170e+01 -8.136969410000000380e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.485000000000000000e+03 7.160400000000000000e+04 1.991000000000000000e+03 3.500000000000000000e+01 1.040000000000000000e+02 4.500000000000000000e+01 2.851237700000000075e+01 -8.130471599999999910e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.912000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 7.400000000000000000e+01 3.390000000000000000e+02 2.800000000000000000e+02 3.354274699999999854e+01 -1.175996659999999849e+02 3.000000000000000000e+05 +1.000000000000000000e+00 7.980000000000000000e+02 6.969000000000000000e+03 1.972000000000000000e+03 4.000000000000000000e+01 3.810000000000000000e+02 2.500000000000000000e+02 3.349605809999999906e+01 -1.176704642999999919e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.346000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 5.800000000000000000e+01 1.710000000000000000e+02 3.400000000000000000e+02 2.568698399999999893e+01 -8.041500299999999868e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.389000000000000000e+03 7.840000000000000000e+03 1.997000000000000000e+03 2.600000000000000000e+01 1.800000000000000000e+02 2.800000000000000000e+02 3.586981079999999622e+01 -7.872789209999999116e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.102000000000000000e+03 6.969000000000000000e+03 1.942000000000000000e+03 3.000000000000000000e+01 9.500000000000000000e+01 2.800000000000000000e+02 3.928049470000000554e+01 -7.670064399999999694e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.232000000000000000e+03 6.969000000000000000e+03 1.949000000000000000e+03 1.210000000000000000e+02 4.500000000000000000e+01 2.800000000000000000e+02 3.034551429999999783e+01 -8.169266770000000122e+01 3.000000000000000000e+05 +5.500000000000000000e+00 7.083000000000000000e+03 2.143100000000000000e+04 2.008000000000000000e+03 1.420000000000000000e+02 3.520000000000000000e+02 2.800000000000000000e+02 3.380376179999999664e+01 -8.435556049999999573e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.313000000000000000e+03 4.926000000000000000e+03 1.975000000000000000e+03 1.100000000000000000e+01 1.940000000000000000e+02 2.800000000000000000e+02 2.569093870000000024e+01 -8.038089240000000757e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.205000000000000000e+03 8.400000000000000000e+02 2.007000000000000000e+03 1.120000000000000000e+02 3.060000000000000000e+02 2.800000000000000000e+02 4.068823940000000050e+01 -7.387386409999999159e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.010000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.210000000000000000e+02 3.030000000000000000e+02 1.950000000000000000e+02 3.376744080000000281e+01 -8.437060590000000104e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.622000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.000000000000000000e+00 1.330000000000000000e+02 7.800000000000000000e+01 3.584005160000000245e+01 -7.855375510000000361e+01 3.000000000000000000e+05 +1.500000000000000000e+00 2.012000000000000000e+03 2.000000000000000000e+03 1.940000000000000000e+03 8.200000000000000000e+01 4.470000000000000000e+02 2.800000000000000000e+02 4.059723549999999648e+01 -7.394646410000000003e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.064000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.070000000000000000e+02 1.500000000000000000e+01 2.800000000000000000e+02 3.929884210000000166e+01 -7.666182390000000169e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.930000000000000000e+03 1.311100000000000000e+04 1.925000000000000000e+03 2.000000000000000000e+00 4.040000000000000000e+02 2.800000000000000000e+02 3.378431299999999737e+01 -8.436205030000000704e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.400000000000000000e+03 2.625000000000000000e+03 2.004000000000000000e+03 1.500000000000000000e+01 2.870000000000000000e+02 2.800000000000000000e+02 4.059046899999999880e+01 -7.414706600000000947e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.843000000000000000e+03 1.013900000000000000e+04 2.018000000000000000e+03 2.030000000000000000e+02 1.340000000000000000e+03 2.800000000000000000e+02 3.345105829999999969e+01 -1.176570200999999827e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.218000000000000000e+03 6.969000000000000000e+03 1.922000000000000000e+03 3.660000000000000000e+02 1.190000000000000000e+02 2.800000000000000000e+02 3.929121149999999574e+01 -7.656846910000000150e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.501000000000000000e+03 9.405000000000000000e+03 1.960000000000000000e+03 6.000000000000000000e+00 5.060000000000000000e+02 2.800000000000000000e+02 3.382791790000000276e+01 -1.178312879999999865e+02 3.000000000000000000e+05 +1.500000000000000000e+00 8.460000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 9.000000000000000000e+00 3.430000000000000000e+02 6.000000000000000000e+02 2.577009130000000070e+01 -8.019466149999999516e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.822000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.500000000000000000e+01 1.480000000000000000e+02 2.800000000000000000e+02 3.930690399999999585e+01 -7.662543589999999938e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.450000000000000000e+03 6.969000000000000000e+03 1.953000000000000000e+03 2.000000000000000000e+01 4.820000000000000000e+02 2.800000000000000000e+02 4.088286790000000082e+01 -7.391129620000000955e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.423000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.900000000000000000e+01 4.320000000000000000e+02 2.190000000000000000e+02 3.367661599999999567e+01 -1.176608820999999949e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.777000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 6.300000000000000000e+01 9.500000000000000000e+01 4.900000000000000000e+01 3.360480129999999832e+01 -8.444429289999999355e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.610000000000000000e+03 4.376000000000000000e+03 1.994000000000000000e+03 3.110000000000000000e+02 1.610000000000000000e+02 3.500000000000000000e+02 2.597035069999999735e+01 -8.019710680000000025e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.285000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 2.450000000000000000e+02 2.800000000000000000e+02 3.393698810000000066e+01 -8.436323040000000617e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.659000000000000000e+03 3.120000000000000000e+03 2.006000000000000000e+03 1.000000000000000000e+00 1.360000000000000000e+02 2.370000000000000000e+02 2.847770900000000083e+01 -8.125231700000000501e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.926000000000000000e+03 1.062700000000000000e+04 2.017000000000000000e+03 1.120000000000000000e+02 1.470000000000000000e+02 4.000000000000000000e+00 2.851757399999999976e+01 -8.107336899999999957e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.972000000000000000e+03 1.075900000000000000e+04 2.017000000000000000e+03 2.500000000000000000e+02 1.130000000000000000e+02 4.000000000000000000e+01 3.577960200000000413e+01 -7.853367390000001080e+01 3.000000000000000000e+05 +1.500000000000000000e+00 7.870000000000000000e+02 6.969000000000000000e+03 1.983000000000000000e+03 2.000000000000000000e+00 1.980000000000000000e+02 2.800000000000000000e+02 2.566711269999999701e+01 -8.037561180000000149e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.440000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.120000000000000000e+02 2.160000000000000000e+02 3.750000000000000000e+02 3.021949400000000097e+01 -8.161319899999999450e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.210000000000000000e+03 1.210000000000000000e+03 1.994000000000000000e+03 6.000000000000000000e+00 4.430000000000000000e+02 3.060000000000000000e+02 3.375607199999999608e+01 -1.177663090000000068e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.096000000000000000e+03 7.650000000000000000e+03 1.959000000000000000e+03 8.400000000000000000e+01 1.860000000000000000e+02 2.800000000000000000e+02 2.573055210000000059e+01 -8.035218359999998938e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.710000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 3.830000000000000000e+02 6.140000000000000000e+02 1.450000000000000000e+03 2.576277500000000131e+01 -8.019246300000000360e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.112000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 3.576867120000000710e+01 -7.889026470000000302e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.344000000000000000e+03 5.500000000000000000e+03 2.014000000000000000e+03 9.200000000000000000e+01 1.480000000000000000e+02 3.100000000000000000e+01 2.567924200000000212e+01 -8.046847970000000316e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.204000000000000000e+03 6.969000000000000000e+03 1.945000000000000000e+03 1.350000000000000000e+02 1.540000000000000000e+02 2.800000000000000000e+02 2.577142749999999793e+01 -8.028597459999998875e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.757000000000000000e+03 7.875000000000000000e+03 1.991000000000000000e+03 1.300000000000000000e+01 1.670000000000000000e+02 2.800000000000000000e+02 2.562793200000000127e+01 -8.042802309999999011e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.517000000000000000e+03 9.147000000000000000e+03 2.017000000000000000e+03 4.170000000000000000e+02 1.710000000000000000e+02 7.700000000000000000e+01 3.576858079838079618e+01 -7.889128461020310112e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.578000000000000000e+03 6.016000000000000000e+03 1.991000000000000000e+03 4.200000000000000000e+01 4.190000000000000000e+02 2.800000000000000000e+02 3.374379220000000146e+01 -1.178616147000000183e+02 3.000000000000000000e+05 +3.000000000000000000e+00 4.032000000000000000e+03 6.403300000000000000e+04 2.000000000000000000e+03 4.100000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.588819680000000290e+01 -7.850877459999999530e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.604000000000000000e+03 6.446000000000000000e+03 2.018000000000000000e+03 2.100000000000000000e+01 1.460000000000000000e+02 4.200000000000000000e+01 3.373414890000000099e+01 -8.432444009999998968e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.604000000000000000e+03 1.306800000000000000e+04 2.001000000000000000e+03 6.300000000000000000e+01 1.310000000000000000e+02 5.000000000000000000e+01 3.372087329999999383e+01 -8.432254609999998252e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.460000000000000000e+03 6.969000000000000000e+03 1.974000000000000000e+03 1.190000000000000000e+02 3.940000000000000000e+02 9.800000000000000000e+02 2.575084100000000120e+01 -8.019988809999999546e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.408000000000000000e+03 2.263000000000000000e+03 1.905000000000000000e+03 4.700000000000000000e+01 3.050000000000000000e+02 2.800000000000000000e+02 4.063724299999999801e+01 -7.411541970000000390e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.060000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 4.400000000000000000e+01 3.100000000000000000e+02 5.730000000000000000e+02 2.577653410000000278e+01 -8.018886650000000316e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.960000000000000000e+03 4.700000000000000000e+01 4.990000000000000000e+02 2.800000000000000000e+02 4.073054340000000195e+01 -7.385161039999999844e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.275000000000000000e+03 6.969000000000000000e+03 1.949000000000000000e+03 1.180000000000000000e+02 5.900000000000000000e+01 2.800000000000000000e+02 3.038241670000000028e+01 -8.166799690000000567e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.636000000000000000e+03 1.641000000000000000e+03 1.950000000000000000e+03 1.600000000000000000e+01 4.820000000000000000e+02 2.800000000000000000e+02 4.072704199999999730e+01 -7.387748000000000559e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.735000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.370000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +7.000000000000000000e+00 5.170000000000000000e+03 1.132500000000000000e+04 1.996000000000000000e+03 6.000000000000000000e+00 1.210000000000000000e+02 3.230000000000000000e+02 3.584649429999999626e+01 -7.904186120000001381e+01 3.000000000000000000e+05 +2.000000000000000000e+00 6.900000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 5.700000000000000000e+01 5.430000000000000000e+02 3.920000000000000000e+02 4.071038310000000138e+01 -7.378599169999999674e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.444000000000000000e+03 1.306800000000000000e+04 1.962000000000000000e+03 1.100000000000000000e+02 1.270000000000000000e+02 2.800000000000000000e+02 3.385859520000000344e+01 -8.430051329999999155e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.706000000000000000e+03 6.389000000000000000e+03 2.003000000000000000e+03 1.000000000000000000e+00 3.700000000000000000e+02 2.500000000000000000e+02 3.345562060000000315e+01 -1.176225756000000047e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.044000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 4.550000000000000000e+02 7.730000000000000000e+02 1.100000000000000000e+03 2.576907900000000140e+01 -8.018860200000000304e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.300000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 2.700000000000000000e+01 3.260000000000000000e+02 3.350000000000000000e+02 2.573484200000000044e+01 -8.024201399999999751e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.380000000000000000e+03 5.400000000000000000e+03 1.926000000000000000e+03 1.700000000000000000e+01 3.260000000000000000e+02 2.800000000000000000e+02 3.373603289999999788e+01 -1.178620257999999978e+02 3.000000000000000000e+05 +1.000000000000000000e+00 6.110000000000000000e+02 6.969000000000000000e+03 1.973000000000000000e+03 5.500000000000000000e+01 1.800000000000000000e+02 2.000000000000000000e+02 2.579916960000000259e+01 -8.023926190000000247e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.076000000000000000e+03 4.091000000000000000e+03 1.966000000000000000e+03 9.800000000000000000e+01 1.290000000000000000e+02 2.800000000000000000e+02 2.855656099999999853e+01 -8.134746130000000619e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.580000000000000000e+02 6.969000000000000000e+03 1.986000000000000000e+03 3.100000000000000000e+01 2.310000000000000000e+02 1.800000000000000000e+02 2.577523550000000085e+01 -8.038273570000001200e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.912000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 3.300000000000000000e+01 3.600000000000000000e+02 2.200000000000000000e+02 3.034568300000000107e+01 -8.141111200000000281e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.410000000000000000e+03 5.227200000000000000e+04 1.976000000000000000e+03 5.300000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.368190039999999641e+01 -8.457401299999999367e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.580000000000000000e+03 1.260000000000000000e+04 1.968000000000000000e+03 4.350000000000000000e+02 3.860000000000000000e+02 2.800000000000000000e+02 2.595624280000000184e+01 -8.015260529999999051e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.830000000000000000e+02 6.969000000000000000e+03 2.016000000000000000e+03 1.550000000000000000e+02 5.620000000000000000e+02 6.050000000000000000e+02 2.576277500000000131e+01 -8.019246300000000360e+01 3.000000000000000000e+05 +4.750000000000000000e+00 3.116000000000000000e+03 6.751000000000000000e+03 2.005000000000000000e+03 5.000000000000000000e+01 7.700000000000000000e+02 4.100000000000000000e+02 3.362777179999999788e+01 -1.178225565999999844e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.564000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.310000000000000000e+02 2.800000000000000000e+02 3.753732579999999786e+01 -7.734534529999999108e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.453000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.100000000000000000e+02 2.800000000000000000e+02 3.018757338259300127e+01 -8.184247970581100162e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.029000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.320000000000000000e+02 2.800000000000000000e+02 2.836614000000000146e+01 -8.136231999999999687e+01 3.000000000000000000e+05 +2.000000000000000000e+00 3.350000000000000000e+03 2.500000000000000000e+03 1.925000000000000000e+03 3.400000000000000000e+01 2.240000000000000000e+02 2.800000000000000000e+02 4.081919800000000009e+01 -7.388690799999999115e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.721000000000000000e+03 1.001000000000000000e+03 2.015000000000000000e+03 2.950000000000000000e+02 6.390000000000000000e+02 3.870000000000000000e+02 3.343063300000000027e+01 -1.176260629999999878e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.376000000000000000e+03 2.400000000000000000e+03 1.970000000000000000e+03 6.000000000000000000e+00 4.140000000000000000e+02 2.800000000000000000e+02 4.057007379999999586e+01 -7.412281550000000152e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.500000000000000000e+03 2.678000000000000000e+03 2.018000000000000000e+03 2.800000000000000000e+01 4.530000000000000000e+02 2.800000000000000000e+02 4.056561970000000628e+01 -7.410415220000000147e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.700000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.860000000000000000e+02 2.560000000000000000e+02 2.800000000000000000e+02 3.381636770000000070e+01 -8.446534350000000302e+01 3.000000000000000000e+05 +2.000000000000000000e+00 3.917000000000000000e+03 1.707000000000000000e+03 1.910000000000000000e+03 1.000000000000000000e+00 1.460000000000000000e+02 2.800000000000000000e+02 4.082437000000000182e+01 -7.389927819999999770e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.941000000000000000e+03 8.000000000000000000e+00 3.890000000000000000e+02 2.800000000000000000e+02 4.088607370000000429e+01 -7.390653729999999655e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.667000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.210000000000000000e+02 2.800000000000000000e+02 3.564258000000000237e+01 -7.869790400000000830e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.595000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 3.410000000000000000e+02 5.960000000000000000e+02 1.179000000000000000e+03 2.580871339999999847e+01 -8.019209690000000990e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.693000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 3.600000000000000000e+01 1.480000000000000000e+02 1.500000000000000000e+01 3.030677700000000030e+01 -8.144697519999999713e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.629000000000000000e+03 6.000000000000000000e+03 2.003000000000000000e+03 4.500000000000000000e+01 1.630000000000000000e+02 2.800000000000000000e+02 2.562969969999999975e+01 -8.045075279999998941e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.113000000000000000e+03 1.200000000000000000e+04 1.979000000000000000e+03 4.100000000000000000e+01 1.480000000000000000e+02 2.800000000000000000e+02 2.596494369999999918e+01 -8.018667829999999697e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.181000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.000000000000000000e+01 3.560000000000000000e+02 8.640000000000000000e+02 2.580783939999999888e+01 -8.019222700000000259e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.000000000000000000e+02 6.969000000000000000e+03 1.952000000000000000e+03 2.700000000000000000e+01 2.840000000000000000e+02 2.800000000000000000e+02 4.070892769999999672e+01 -7.382708599999999421e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.460000000000000000e+03 6.969000000000000000e+03 1.987000000000000000e+03 1.400000000000000000e+01 1.680000000000000000e+02 4.200000000000000000e+02 2.850818800000000053e+01 -8.136285589999999956e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.238000000000000000e+03 6.969000000000000000e+03 1.995000000000000000e+03 4.700000000000000000e+01 2.080000000000000000e+02 1.150000000000000000e+02 3.028161529999999857e+01 -8.146692759999999112e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.829000000000000000e+03 6.969000000000000000e+03 1.940000000000000000e+03 9.600000000000000000e+01 1.850000000000000000e+02 2.800000000000000000e+02 2.579679199999999994e+01 -8.022525999999999158e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.667000000000000000e+03 6.969000000000000000e+03 1.969000000000000000e+03 9.000000000000000000e+00 1.040000000000000000e+02 4.000000000000000000e+00 3.036770300000000233e+01 -8.158166149999999561e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.694000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.540000000000000000e+02 2.800000000000000000e+02 3.574689999999999657e+01 -7.872570000000000334e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.388000000000000000e+03 8.537000000000000000e+03 1.985000000000000000e+03 6.000000000000000000e+00 2.620000000000000000e+02 8.000000000000000000e+00 3.880434890000000081e+01 -7.729755690000000357e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.698000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.080000000000000000e+02 2.800000000000000000e+02 3.035407179999999983e+01 -8.177127699999999777e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.995000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.300000000000000000e+02 1.300000000000000000e+02 6.700000000000000000e+01 3.029668807983399859e+01 -8.144217681884799731e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.759000000000000000e+03 3.306200000000000000e+04 1.958000000000000000e+03 2.800000000000000000e+01 5.420000000000000000e+02 2.800000000000000000e+02 2.565251429999999999e+01 -8.030246370000000411e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.257000000000000000e+03 1.000000000000000000e+00 1.989000000000000000e+03 1.010000000000000000e+02 3.380000000000000000e+02 5.500000000000000000e+02 3.362394450000000035e+01 -1.176455003000000090e+02 3.000000000000000000e+05 +1.000000000000000000e+00 8.060000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 2.450000000000000000e+02 3.780000000000000000e+02 2.800000000000000000e+02 2.577698999999999785e+01 -8.018879799999999136e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.897000000000000000e+03 3.000000000000000000e+03 2.018000000000000000e+03 1.050000000000000000e+02 4.830000000000000000e+02 1.890000000000000000e+02 3.368420210000000026e+01 -1.177311140999999850e+02 3.000000000000000000e+05 +3.000000000000000000e+00 3.150000000000000000e+03 1.759500000000000000e+04 1.972000000000000000e+03 5.460000000000000000e+02 1.010000000000000000e+02 5.000000000000000000e+01 2.845180300000000173e+01 -8.151185190000001057e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.014000000000000000e+03 3.659000000000000000e+04 2.006000000000000000e+03 1.200000000000000000e+01 9.100000000000000000e+01 2.800000000000000000e+02 3.560653710000000416e+01 -7.864831780000000094e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.960000000000000000e+02 6.969000000000000000e+03 2.017000000000000000e+03 6.300000000000000000e+01 1.134000000000000000e+03 4.150000000000000000e+02 4.071956300000000084e+01 -7.384156400000000531e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.510000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 2.700000000000000000e+01 2.810000000000000000e+02 4.120000000000000000e+02 3.577591850000000306e+01 -7.863856159999998852e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.441000000000000000e+03 8.712000000000000000e+03 1.924000000000000000e+03 3.700000000000000000e+01 8.330000000000000000e+02 2.800000000000000000e+02 3.365093549999999567e+01 -1.179174107999999990e+02 3.000000000000000000e+05 +5.500000000000000000e+00 7.200000000000000000e+03 2.191000000000000000e+04 2.016000000000000000e+03 1.820000000000000000e+02 3.020000000000000000e+02 2.800000000000000000e+02 3.388511539999999655e+01 -8.439905090000000598e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.395000000000000000e+03 2.182300000000000000e+04 2.018000000000000000e+03 4.000000000000000000e+01 1.500000000000000000e+02 6.700000000000000000e+01 3.609193499999999943e+01 -7.890971199999999897e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.498000000000000000e+03 1.873000000000000000e+04 1.967000000000000000e+03 2.000000000000000000e+01 3.430000000000000000e+02 2.800000000000000000e+02 3.390769429999999574e+01 -1.179171065999999826e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.648000000000000000e+03 7.200000000000000000e+03 2.011000000000000000e+03 1.130000000000000000e+02 1.550000000000000000e+02 6.800000000000000000e+01 2.843767100000000170e+01 -8.155649329999999964e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.200000000000000000e+03 4.650000000000000000e+03 1.950000000000000000e+03 6.500000000000000000e+01 6.170000000000000000e+02 2.800000000000000000e+02 4.076801160000000124e+01 -7.379510429999999133e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.507000000000000000e+03 4.417000000000000000e+03 2.000000000000000000e+03 1.700000000000000000e+01 3.690000000000000000e+02 2.000000000000000000e+02 3.345869799999999827e+01 -1.175819070999999951e+02 3.000000000000000000e+05 +1.500000000000000000e+00 8.910000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 7.800000000000000000e+01 2.220000000000000000e+02 2.050000000000000000e+02 2.577644300000000044e+01 -8.033969399999999439e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.254000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 3.034990000000000165e+01 -8.154980000000000473e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.362000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 3.920000000000000000e+02 2.800000000000000000e+02 3.354248300000000427e+01 -1.176013419999999883e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.297000000000000000e+03 6.969000000000000000e+03 1.967000000000000000e+03 3.520000000000000000e+02 3.500000000000000000e+01 8.900000000000000000e+02 3.936211620000000266e+01 -7.669985579999999459e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.038000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.490000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.863000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.200000000000000000e+01 1.130000000000000000e+02 7.000000000000000000e+00 3.045620999999999867e+01 -8.176475000000000648e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.715000000000000000e+03 6.246000000000000000e+03 1.960000000000000000e+03 2.610000000000000000e+02 1.020000000000000000e+02 2.800000000000000000e+02 3.936413569999999851e+01 -7.656325470000000166e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.177000000000000000e+03 6.000000000000000000e+03 2.005000000000000000e+03 3.300000000000000000e+01 1.570000000000000000e+02 5.000000000000000000e+01 2.570753020000000078e+01 -8.045961700000000860e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.680000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 3.700000000000000000e+01 1.170000000000000000e+02 2.800000000000000000e+02 3.375567170000000061e+01 -8.441651120000000219e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.298000000000000000e+03 5.880000000000000000e+02 1.920000000000000000e+03 2.100000000000000000e+01 2.150000000000000000e+02 2.800000000000000000e+02 3.928612800000000504e+01 -7.658815099999999632e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.216000000000000000e+03 5.460000000000000000e+03 2.017000000000000000e+03 2.600000000000000000e+01 4.470000000000000000e+02 3.030000000000000000e+02 3.391144600000000509e+01 -1.178473709999999954e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.496000000000000000e+03 6.969000000000000000e+03 1.986000000000000000e+03 6.440000000000000000e+02 3.510000000000000000e+02 9.520000000000000000e+02 2.579131600000000191e+01 -8.018615520000000174e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.247000000000000000e+03 6.533000000000000000e+03 1.955000000000000000e+03 7.000000000000000000e+00 4.810000000000000000e+02 2.800000000000000000e+02 3.384867379999999315e+01 -1.180236362999999926e+02 3.000000000000000000e+05 +3.500000000000000000e+00 4.000000000000000000e+03 1.284500000000000000e+04 2.001000000000000000e+03 1.300000000000000000e+01 1.199000000000000000e+03 6.500000000000000000e+02 3.360337899999999678e+01 -1.178179147000000171e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.396000000000000000e+03 3.589800000000000000e+04 1.958000000000000000e+03 8.400000000000000000e+01 8.500000000000000000e+01 2.800000000000000000e+02 3.932750730000000061e+01 -7.655519879999999944e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.024000000000000000e+03 2.063000000000000000e+03 1.989000000000000000e+03 4.300000000000000000e+01 6.860000000000000000e+02 2.800000000000000000e+02 4.060300479999999368e+01 -7.401461150000000089e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.002000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.350000000000000000e+02 2.800000000000000000e+02 3.582039539999999533e+01 -7.892521070000000805e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.174000000000000000e+03 2.840100000000000000e+04 1.990000000000000000e+03 1.170000000000000000e+02 1.120000000000000000e+02 2.100000000000000000e+01 3.745554329999999510e+01 -7.756780779999999709e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.800000000000000000e+03 6.499000000000000000e+03 2.017000000000000000e+03 9.000000000000000000e+01 1.940000000000000000e+02 2.800000000000000000e+02 2.852138099999999810e+01 -8.135135099999999397e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.520000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.200000000000000000e+01 1.150000000000000000e+02 5.600000000000000000e+01 3.021819686889699952e+01 -8.180525207519499986e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.054000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.890000000000000000e+02 4.510000000000000000e+02 2.800000000000000000e+02 3.361136450000000053e+01 -1.179242110000000139e+02 3.000000000000000000e+05 +5.000000000000000000e+00 3.956000000000000000e+03 1.686000000000000000e+04 1.966000000000000000e+03 2.360000000000000000e+02 2.530000000000000000e+02 2.800000000000000000e+02 2.567070509999999928e+01 -8.030992899999999679e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.193000000000000000e+03 5.502000000000000000e+03 1.998000000000000000e+03 3.000000000000000000e+01 1.760000000000000000e+02 2.800000000000000000e+02 2.563420539999999903e+01 -8.043219570000000829e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.876000000000000000e+03 6.969000000000000000e+03 2.014000000000000000e+03 3.000000000000000000e+00 1.750000000000000000e+02 3.500000000000000000e+01 2.567664800000000014e+01 -8.046668690000001334e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.941000000000000000e+03 6.534000000000000000e+03 2.000000000000000000e+03 1.000000000000000000e+00 1.780000000000000000e+02 3.400000000000000000e+01 3.588874310000000634e+01 -7.907101540000000739e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.467000000000000000e+03 5.940000000000000000e+03 1.958000000000000000e+03 1.010000000000000000e+02 4.360000000000000000e+02 2.800000000000000000e+02 3.376650910000000039e+01 -1.180302044999999964e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.746000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 7.000000000000000000e+00 1.330000000000000000e+02 2.800000000000000000e+02 3.593950999999999851e+01 -7.885718100000001130e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.849000000000000000e+03 4.356000000000000000e+04 1.999000000000000000e+03 1.200000000000000000e+01 1.190000000000000000e+02 2.100000000000000000e+01 3.369369589999999448e+01 -8.456811709999999493e+01 3.000000000000000000e+05 +4.500000000000000000e+00 2.543000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.260000000000000000e+02 9.040000000000000000e+02 1.565000000000000000e+03 2.576553850000000168e+01 -8.019382759999999166e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.670000000000000000e+03 1.306800000000000000e+04 1.951000000000000000e+03 2.100000000000000000e+01 2.390000000000000000e+02 2.800000000000000000e+02 3.380973300000000137e+01 -8.434008699999999692e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.477000000000000000e+03 8.023000000000000000e+03 1.969000000000000000e+03 2.000000000000000000e+00 8.980000000000000000e+02 1.100000000000000000e+02 3.362230179999999535e+01 -1.178531680999999907e+02 3.000000000000000000e+05 +4.500000000000000000e+00 2.753000000000000000e+03 3.700000000000000000e+03 2.015000000000000000e+03 5.400000000000000000e+01 5.410000000000000000e+02 1.970000000000000000e+02 3.373927299999999718e+01 -1.177535019999999975e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.331000000000000000e+03 8.855000000000000000e+03 1.960000000000000000e+03 1.300000000000000000e+02 1.180000000000000000e+02 2.800000000000000000e+02 2.856649180000000143e+01 -8.146868559999998638e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.140000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 4.200000000000000000e+01 4.120000000000000000e+02 5.800000000000000000e+02 2.576411129999999972e+01 -8.019774379999999780e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 2.000000000000000000e+01 1.880000000000000000e+02 2.800000000000000000e+02 2.578974429999999884e+01 -8.023622720000000186e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.746000000000000000e+03 8.804000000000000000e+03 1.943000000000000000e+03 2.800000000000000000e+01 2.290000000000000000e+02 2.800000000000000000e+02 2.853988880000000350e+01 -8.135525959999999657e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.280000000000000000e+02 6.969000000000000000e+03 1.955000000000000000e+03 7.000000000000000000e+00 4.200000000000000000e+01 2.800000000000000000e+02 3.037855379999999883e+01 -8.170168040000000076e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.100000000000000000e+03 6.969000000000000000e+03 1.974000000000000000e+03 2.100000000000000000e+01 3.410000000000000000e+02 2.800000000000000000e+02 2.575084100000000120e+01 -8.019988809999999546e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.427000000000000000e+03 1.477800000000000000e+04 1.977000000000000000e+03 2.700000000000000000e+01 1.640000000000000000e+02 4.500000000000000000e+01 2.855891859999999838e+01 -8.141186500000000592e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.650000000000000000e+03 8.418000000000000000e+03 1.976000000000000000e+03 1.330000000000000000e+02 1.790000000000000000e+02 2.800000000000000000e+02 2.575483630000000090e+01 -8.039983050000000731e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.800000000000000000e+02 6.969000000000000000e+03 2.004000000000000000e+03 8.900000000000000000e+01 2.740000000000000000e+02 4.080000000000000000e+02 2.580122000000000071e+01 -8.018678900000000453e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.775000000000000000e+03 6.000000000000000000e+03 1.997000000000000000e+03 4.000000000000000000e+00 1.003000000000000000e+03 3.450000000000000000e+02 3.362194290000000052e+01 -1.178870632000000001e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.454000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 4.000000000000000000e+00 7.800000000000000000e+01 2.800000000000000000e+02 3.935959229999999565e+01 -7.660107929999999499e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.750000000000000000e+02 6.969000000000000000e+03 1.989000000000000000e+03 8.300000000000000000e+01 6.660000000000000000e+02 2.800000000000000000e+02 4.063400500000000193e+01 -7.396889200000001097e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.236000000000000000e+03 6.640000000000000000e+03 2.015000000000000000e+03 1.230000000000000000e+02 1.800000000000000000e+02 4.800000000000000000e+01 2.838861149999999967e+01 -8.134254119999999944e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.186000000000000000e+03 1.348000000000000000e+04 1.987000000000000000e+03 1.950000000000000000e+02 1.960000000000000000e+02 2.800000000000000000e+02 2.850788140000000226e+01 -8.138275149999999769e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.373000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.740000000000000000e+02 2.830000000000000000e+02 1.004000000000000000e+03 2.580783939999999888e+01 -8.019222700000000259e+01 3.000000000000000000e+05 +5.000000000000000000e+00 1.320000000000000000e+03 2.240000000000000000e+03 2.006000000000000000e+03 9.100000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 4.051176699999999897e+01 -7.424868800000000135e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.087000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 8.660000000000000000e+02 4.970000000000000000e+02 4.500000000000000000e+02 2.576929639999999821e+01 -8.018370679999999595e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.760000000000000000e+02 6.969000000000000000e+03 1.996000000000000000e+03 3.700000000000000000e+01 1.500000000000000000e+01 2.800000000000000000e+02 3.392579620000000773e+01 -1.178049572999999839e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.290000000000000000e+03 6.148000000000000000e+03 1.938000000000000000e+03 2.940000000000000000e+02 8.700000000000000000e+01 2.800000000000000000e+02 2.583317059999999898e+01 -8.021278320000000406e+01 3.000000000000000000e+05 +6.500000000000000000e+00 3.000000000000000000e+03 2.000000000000000000e+03 1.990000000000000000e+03 1.000000000000000000e+00 4.670000000000000000e+02 2.800000000000000000e+02 4.060462499999999864e+01 -7.395910490000001403e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.301000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 3.575985099999999761e+01 -7.883677500000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.840000000000000000e+02 6.969000000000000000e+03 1.986000000000000000e+03 2.000000000000000000e+01 6.900000000000000000e+02 3.800000000000000000e+02 3.364169350000000236e+01 -1.178641573999999963e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.040000000000000000e+03 8.800000000000000000e+03 1.971000000000000000e+03 5.000000000000000000e+00 1.200000000000000000e+02 2.800000000000000000e+02 2.857419499999999957e+01 -8.143809799999999655e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.215000000000000000e+03 7.500000000000000000e+03 1.949000000000000000e+03 5.500000000000000000e+01 3.610000000000000000e+02 2.800000000000000000e+02 2.574122829999999951e+01 -8.023000620000000538e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 8.400000000000000000e+01 2.060000000000000000e+02 2.590000000000000000e+02 2.578994259999999983e+01 -8.023670710000000383e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.213000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 7.500000000000000000e+01 2.290000000000000000e+02 2.800000000000000000e+02 3.384613300000000180e+01 -8.433226500000000669e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.332000000000000000e+03 1.800000000000000000e+03 1.925000000000000000e+03 3.400000000000000000e+01 4.870000000000000000e+02 2.800000000000000000e+02 4.061464300000000094e+01 -7.410164100000000076e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.323000000000000000e+03 7.200000000000000000e+03 1.954000000000000000e+03 1.170000000000000000e+02 4.080000000000000000e+02 2.800000000000000000e+02 3.382353320000000707e+01 -1.179659724000000125e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.308000000000000000e+03 6.180000000000000000e+03 1.949000000000000000e+03 4.300000000000000000e+01 4.200000000000000000e+02 2.800000000000000000e+02 3.371868599999999816e+01 -1.178828756000000055e+02 3.000000000000000000e+05 +5.000000000000000000e+00 5.308000000000000000e+03 9.278000000000000000e+03 2.006000000000000000e+03 1.900000000000000000e+01 1.540000000000000000e+02 8.300000000000000000e+01 3.579655349999999459e+01 -7.881116409999999917e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.780000000000000000e+02 2.178000000000000000e+03 1.898000000000000000e+03 2.070000000000000000e+02 1.280000000000000000e+02 2.800000000000000000e+02 3.928099449999999848e+01 -7.663151630000000125e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.500000000000000000e+02 6.969000000000000000e+03 1.968000000000000000e+03 1.500000000000000000e+01 2.120000000000000000e+02 2.800000000000000000e+02 4.090565420000000074e+01 -7.385867609999999672e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.819000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 2.160000000000000000e+02 8.160000000000000000e+02 1.500000000000000000e+02 3.378364679999999964e+01 -8.438295259999999587e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 1.924000000000000000e+03 1.600000000000000000e+01 1.500000000000000000e+02 2.800000000000000000e+02 3.372548390000000040e+01 -8.439500150000000644e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.326000000000000000e+03 2.178000000000000000e+03 1.971000000000000000e+03 3.830000000000000000e+02 1.313000000000000000e+03 2.800000000000000000e+02 3.362921020000000283e+01 -1.179551732000000044e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.459000000000000000e+03 1.307000000000000000e+03 2.007000000000000000e+03 1.670000000000000000e+02 1.200000000000000000e+02 5.740000000000000000e+02 2.834896049999999690e+01 -8.150430550000000096e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.255000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.730000000000000000e+02 5.180000000000000000e+02 2.800000000000000000e+02 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.365000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 1.600000000000000000e+01 5.120000000000000000e+02 3.140000000000000000e+02 4.079515029999999598e+01 -7.384685059999999623e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.100000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 1.300000000000000000e+01 9.900000000000000000e+01 2.800000000000000000e+02 3.023111810000000332e+01 -8.172518000000000882e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.811000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.080000000000000000e+02 2.800000000000000000e+02 2.859476199999999935e+01 -8.111640400000000284e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 1.200000000000000000e+03 2.006000000000000000e+03 6.420000000000000000e+02 2.040000000000000000e+02 6.310000000000000000e+02 2.838981300000000019e+01 -8.148175799999999924e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.650000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 2.100000000000000000e+01 1.120000000000000000e+02 2.800000000000000000e+02 3.391227810000000176e+01 -8.446409930000000088e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.536000000000000000e+03 9.539000000000000000e+03 2.017000000000000000e+03 1.440000000000000000e+02 1.920000000000000000e+02 7.800000000000000000e+01 3.571442429999999746e+01 -7.878578129999999646e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.594000000000000000e+03 7.497000000000000000e+03 1.930000000000000000e+03 3.290000000000000000e+02 9.100000000000000000e+01 2.800000000000000000e+02 3.928033310000000000e+01 -7.671007890000001339e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.768000000000000000e+03 1.698800000000000000e+04 2.005000000000000000e+03 1.120000000000000000e+02 9.100000000000000000e+01 4.600000000000000000e+01 3.367210759999999681e+01 -8.458235829999999567e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.000000000000000000e+02 6.969000000000000000e+03 1.962000000000000000e+03 1.200000000000000000e+01 2.630000000000000000e+02 4.520000000000000000e+02 3.376551500000000061e+01 -1.180797310000000095e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.150000000000000000e+03 2.000000000000000000e+03 1.993000000000000000e+03 8.200000000000000000e+01 4.740000000000000000e+02 2.800000000000000000e+02 4.057048749999999870e+01 -7.412566700000000708e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.552000000000000000e+03 5.052000000000000000e+03 2.017000000000000000e+03 2.400000000000000000e+02 1.510000000000000000e+02 1.300000000000000000e+02 3.575388092313729516e+01 -7.875276952059100211e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.288000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.300000000000000000e+01 8.200000000000000000e+01 2.800000000000000000e+02 3.929905899999999974e+01 -7.666192999999999813e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.580000000000000000e+03 1.007400000000000000e+04 1.961000000000000000e+03 2.000000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 2.556035139999999828e+01 -8.036536449999999832e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.000000000000000000e+02 7.350000000000000000e+02 1.952000000000000000e+03 7.500000000000000000e+01 2.570000000000000000e+02 6.500000000000000000e+02 3.374777579999999944e+01 -1.181105972999999949e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.951000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.830000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.390000000000000000e+02 6.969000000000000000e+03 2.000000000000000000e+03 6.800000000000000000e+01 3.420000000000000000e+02 2.380000000000000000e+02 2.573527239999999949e+01 -8.023836130000000821e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.198000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.390000000000000000e+02 2.800000000000000000e+02 2.842771560000000264e+01 -8.121858940000001326e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.909000000000000000e+03 1.306800000000000000e+04 1.969000000000000000e+03 6.000000000000000000e+00 1.020000000000000000e+02 2.800000000000000000e+02 3.371058550000000054e+01 -8.433454600000000312e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.600000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 3.000000000000000000e+01 3.440000000000000000e+02 2.800000000000000000e+02 2.573361289999999713e+01 -8.023563399999999035e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.570000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.350000000000000000e+02 1.770000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.638000000000000000e+03 3.005600000000000000e+04 2.018000000000000000e+03 1.110000000000000000e+02 1.820000000000000000e+02 4.000000000000000000e+01 3.571515007908689654e+01 -7.868561895688240782e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.000000000000000000e+02 6.969000000000000000e+03 1.988000000000000000e+03 8.900000000000000000e+01 5.990000000000000000e+02 3.750000000000000000e+02 4.074406770000000222e+01 -7.383547570000000349e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.971000000000000000e+03 5.219000000000000000e+03 1.987000000000000000e+03 3.160000000000000000e+02 2.420000000000000000e+02 2.800000000000000000e+02 2.570289289999999838e+01 -8.036199350000001118e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.684000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 4.150000000000000000e+02 2.800000000000000000e+02 3.347526099999999616e+01 -1.176680830000000100e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.761000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.170000000000000000e+02 1.670000000000000000e+02 2.800000000000000000e+02 3.574669999999999703e+01 -7.877930000000000632e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.777000000000000000e+03 5.074700000000000000e+04 1.974000000000000000e+03 2.400000000000000000e+01 1.190000000000000000e+02 2.800000000000000000e+02 3.609041739999999976e+01 -7.888756879999999683e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.238000000000000000e+03 1.734800000000000000e+04 2.005000000000000000e+03 1.310000000000000000e+02 1.560000000000000000e+02 1.750000000000000000e+02 2.839898369999999872e+01 -8.120682640000001129e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.493000000000000000e+03 1.000000000000000000e+03 2.008000000000000000e+03 1.400000000000000000e+01 4.010000000000000000e+02 2.860000000000000000e+02 3.390322210000000069e+01 -1.177845111999999972e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.606000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.700000000000000000e+01 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.004000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.610000000000000000e+02 2.800000000000000000e+02 3.580311400000000077e+01 -7.880487700000000473e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.850000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 2.000000000000000000e+00 2.250000000000000000e+02 3.260000000000000000e+02 3.927557860000000289e+01 -7.661171209999999121e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.372000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.000000000000000000e+02 2.080000000000000000e+02 2.800000000000000000e+02 3.927395720000000523e+01 -7.660970720000000256e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.198000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.581818400000000224e+01 -7.910846519999999771e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.961000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.210000000000000000e+02 2.800000000000000000e+02 2.836614000000000146e+01 -8.136231999999999687e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.678000000000000000e+03 7.395000000000000000e+03 1.978000000000000000e+03 1.260000000000000000e+02 3.780000000000000000e+02 2.800000000000000000e+02 3.374627399999999966e+01 -1.176115259999999978e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.424000000000000000e+03 2.178000000000000000e+05 2.018000000000000000e+03 1.900000000000000000e+01 3.940000000000000000e+02 2.800000000000000000e+02 3.883487490000000264e+01 -7.733604019999999934e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.227000000000000000e+03 6.165000000000000000e+03 1.920000000000000000e+03 1.400000000000000000e+01 5.300000000000000000e+01 2.800000000000000000e+02 3.934438320000000289e+01 -7.666480140000000176e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.037000000000000000e+03 3.705000000000000000e+03 1.980000000000000000e+03 1.420000000000000000e+02 1.670000000000000000e+02 7.500000000000000000e+01 2.575679599999999780e+01 -8.041092199999999934e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.413000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 5.100000000000000000e+01 1.520000000000000000e+02 2.000000000000000000e+02 3.927961899999999673e+01 -7.670496509999999546e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.500000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 6.590000000000000000e+02 2.730000000000000000e+02 6.500000000000000000e+02 2.579010689999999784e+01 -8.018574259999999754e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.753000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 2.960000000000000000e+02 4.700000000000000000e+01 2.800000000000000000e+02 3.052357899999999802e+01 -8.174175990000000525e+01 3.000000000000000000e+05 +7.500000000000000000e+00 6.823000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 3.100000000000000000e+02 2.020000000000000000e+02 2.800000000000000000e+02 3.031502899999999912e+01 -8.160859100000000410e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.159000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 4.100000000000000000e+01 3.440000000000000000e+02 8.840000000000000000e+02 2.580421610000000143e+01 -8.018648320000001206e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.236000000000000000e+03 4.878700000000000000e+04 1.972000000000000000e+03 1.460000000000000000e+02 1.620000000000000000e+02 2.800000000000000000e+02 3.397891839999999775e+01 -8.433865500000000281e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.008000000000000000e+03 8.710000000000000000e+02 1.978000000000000000e+03 1.300000000000000000e+01 3.460000000000000000e+02 3.200000000000000000e+02 3.388989199999999613e+01 -1.178465570000000042e+02 3.000000000000000000e+05 +4.500000000000000000e+00 5.250000000000000000e+03 8.980000000000000000e+03 2.017000000000000000e+03 1.540000000000000000e+02 3.800000000000000000e+02 1.150000000000000000e+02 3.370914099999999536e+01 -1.177361930000000001e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.230000000000000000e+03 1.393920000000000000e+06 1.900000000000000000e+03 2.650000000000000000e+02 6.300000000000000000e+01 2.800000000000000000e+02 3.927812750000000364e+01 -7.662892250000000161e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.052000000000000000e+03 2.300000000000000000e+03 1.989000000000000000e+03 5.000000000000000000e+00 2.410000000000000000e+02 2.800000000000000000e+02 4.064305300000000187e+01 -7.391129100000000562e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.850000000000000000e+02 4.997000000000000000e+03 2.000000000000000000e+03 4.700000000000000000e+01 1.040000000000000000e+02 2.800000000000000000e+02 2.850860100000000230e+01 -8.147144399999999109e+01 3.000000000000000000e+05 +5.000000000000000000e+00 4.973000000000000000e+03 1.350300000000000000e+04 2.007000000000000000e+03 2.900000000000000000e+01 1.310000000000000000e+02 3.360000000000000000e+02 3.584178699999999651e+01 -7.906095259999999314e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.203000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.680000000000000000e+02 6.480000000000000000e+02 7.880000000000000000e+02 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.111000000000000000e+03 6.969000000000000000e+03 1.976000000000000000e+03 6.000000000000000000e+00 1.350000000000000000e+02 3.980000000000000000e+02 3.386218960000000067e+01 -8.446557099999999707e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.523000000000000000e+03 1.259800000000000000e+04 2.001000000000000000e+03 1.470000000000000000e+02 3.480000000000000000e+02 2.250000000000000000e+02 3.356901909999999845e+01 -1.175804044000000061e+02 3.000000000000000000e+05 +1.000000000000000000e+00 5.960000000000000000e+02 6.969000000000000000e+03 1.972000000000000000e+03 1.300000000000000000e+01 4.530000000000000000e+02 3.000000000000000000e+02 3.377950399999999576e+01 -1.178607570000000067e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.890000000000000000e+03 1.410000000000000000e+04 1.939000000000000000e+03 2.260000000000000000e+02 5.300000000000000000e+01 2.800000000000000000e+02 3.929694899999999791e+01 -7.668189820000000623e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.418000000000000000e+03 5.525000000000000000e+03 1.997000000000000000e+03 9.200000000000000000e+01 4.170000000000000000e+02 2.370000000000000000e+02 3.345363289999999523e+01 -1.176191098000000039e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.197000000000000000e+03 6.969000000000000000e+03 1.975000000000000000e+03 2.700000000000000000e+01 1.460000000000000000e+02 4.610000000000000000e+02 2.595556380000000019e+01 -8.018889969999999323e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.466000000000000000e+03 1.000000000000000000e+00 1.925000000000000000e+03 1.800000000000000000e+01 1.590000000000000000e+02 2.800000000000000000e+02 3.928901629999999301e+01 -7.670009579999999971e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.688000000000000000e+03 2.169200000000000000e+04 1.979000000000000000e+03 1.630000000000000000e+02 1.070000000000000000e+02 2.800000000000000000e+02 3.745487310000000036e+01 -7.745883600000000513e+01 3.000000000000000000e+05 +6.000000000000000000e+00 3.960000000000000000e+03 2.910000000000000000e+03 1.994000000000000000e+03 1.200000000000000000e+01 5.050000000000000000e+02 2.800000000000000000e+02 4.059535400000000038e+01 -7.399186899999999412e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.476000000000000000e+03 5.766000000000000000e+03 1.962000000000000000e+03 2.300000000000000000e+01 3.520000000000000000e+02 2.800000000000000000e+02 2.575027040000000156e+01 -8.029991710000000182e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.256000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.680000000000000000e+02 5.720000000000000000e+02 9.160000000000000000e+02 2.576060199999999867e+01 -8.019125619999999799e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.116000000000000000e+03 6.000000000000000000e+03 1.965000000000000000e+03 1.200000000000000000e+01 3.070000000000000000e+02 2.800000000000000000e+02 3.381989010000000206e+01 -1.180201925000000074e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.170000000000000000e+03 1.210900000000000000e+04 1.949000000000000000e+03 2.570000000000000000e+02 3.210000000000000000e+02 2.800000000000000000e+02 3.387456900000000104e+01 -8.437685490000001209e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.594000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 2.500000000000000000e+01 4.230000000000000000e+02 1.005000000000000000e+03 2.575963919999999874e+01 -8.019025809999999410e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.479000000000000000e+03 6.100000000000000000e+03 1.955000000000000000e+03 3.700000000000000000e+01 4.260000000000000000e+02 2.800000000000000000e+02 3.384357990000000171e+01 -1.179447590999999989e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.133000000000000000e+03 8.756000000000000000e+03 1.994000000000000000e+03 1.000000000000000000e+00 1.020000000000000000e+02 2.800000000000000000e+02 2.851723300000000094e+01 -8.148733599999999910e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.695000000000000000e+03 5.383000000000000000e+03 2.001000000000000000e+03 1.200000000000000000e+01 1.710000000000000000e+02 4.300000000000000000e+01 2.836750750000000210e+01 -8.134308910000000026e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.509000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.130000000000000000e+02 1.320000000000000000e+02 1.880000000000000000e+02 3.757563280000000105e+01 -7.748549399999998855e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.361000000000000000e+03 1.000300000000000000e+04 1.948000000000000000e+03 4.000000000000000000e+00 1.250000000000000000e+02 2.800000000000000000e+02 2.855459849999999733e+01 -8.149759449999999106e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.850000000000000000e+03 7.416000000000000000e+04 1.983000000000000000e+03 3.900000000000000000e+01 1.750000000000000000e+02 4.000000000000000000e+00 2.848829910000000254e+01 -8.147145259999999212e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.168000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 2.100000000000000000e+02 3.250000000000000000e+02 2.800000000000000000e+02 3.928191779999999511e+01 -7.657890259999999216e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.500000000000000000e+02 6.969000000000000000e+03 1.960000000000000000e+03 9.000000000000000000e+01 6.310000000000000000e+02 2.800000000000000000e+02 4.063399370000000488e+01 -7.403634659999998746e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.213000000000000000e+03 7.425000000000000000e+03 1.959000000000000000e+03 6.000000000000000000e+00 4.820000000000000000e+02 2.800000000000000000e+02 3.378565210000000008e+01 -1.180116294999999980e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.372000000000000000e+03 5.880000000000000000e+03 2.005000000000000000e+03 8.900000000000000000e+01 1.880000000000000000e+02 2.800000000000000000e+02 2.575408099999999934e+01 -8.044419090000000949e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.654000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 5.400000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 3.366823209999999733e+01 -1.176564262000000127e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.832000000000000000e+03 6.969000000000000000e+03 1.910000000000000000e+03 1.280000000000000000e+02 2.350000000000000000e+02 2.800000000000000000e+02 3.928596040000000045e+01 -7.657380750000000091e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.188000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 2.837050599999999889e+01 -8.125974100000000533e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.127000000000000000e+03 2.375000000000000000e+04 1.942000000000000000e+03 9.700000000000000000e+01 1.180000000000000000e+02 2.800000000000000000e+02 2.556239430000000112e+01 -8.038071840000000634e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.910000000000000000e+02 6.910000000000000000e+02 1.920000000000000000e+03 2.800000000000000000e+01 8.540000000000000000e+02 6.670000000000000000e+02 4.066030440000000112e+01 -7.397898449999999571e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.824000000000000000e+03 7.650000000000000000e+03 1.920000000000000000e+03 3.510000000000000000e+02 7.800000000000000000e+01 2.800000000000000000e+02 3.931853110000000129e+01 -7.667602609999998720e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.289000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 5.800000000000000000e+01 3.800000000000000000e+02 7.000000000000000000e+02 2.576899989999999718e+01 -8.019184500000000071e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.938000000000000000e+03 9.270000000000000000e+03 1.977000000000000000e+03 4.800000000000000000e+01 3.050000000000000000e+02 2.800000000000000000e+02 3.389317760000000135e+01 -1.179684204000000136e+02 3.000000000000000000e+05 +1.000000000000000000e+00 8.750000000000000000e+02 6.969000000000000000e+03 1.968000000000000000e+03 1.500000000000000000e+01 1.770000000000000000e+02 2.800000000000000000e+02 4.090565420000000074e+01 -7.385867609999999672e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.600000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 8.400000000000000000e+01 1.400000000000000000e+02 2.800000000000000000e+02 2.594710810000000123e+01 -8.016728309999999169e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.712000000000000000e+03 1.125000000000000000e+04 1.952000000000000000e+03 9.300000000000000000e+01 3.790000000000000000e+02 2.800000000000000000e+02 3.386880649999999804e+01 -1.179897408000000070e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.725000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.990000000000000000e+02 2.800000000000000000e+02 3.588364200000000181e+01 -7.867997800000000552e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.377000000000000000e+03 6.969000000000000000e+03 1.973000000000000000e+03 1.570000000000000000e+02 2.290000000000000000e+02 2.800000000000000000e+02 2.574771700000000152e+01 -8.022053400000000067e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.164000000000000000e+03 3.833000000000000000e+03 2.018000000000000000e+03 6.200000000000000000e+01 1.550000000000000000e+02 1.300000000000000000e+02 3.581743383905770628e+01 -7.910926118086740644e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.030000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.250000000000000000e+02 3.740000000000000000e+02 7.200000000000000000e+02 2.577045539999999590e+01 -8.019426280000000418e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.114000000000000000e+03 1.346000000000000000e+04 1.997000000000000000e+03 2.800000000000000000e+01 1.600000000000000000e+02 2.440000000000000000e+02 3.583598220000000367e+01 -7.903495329999999797e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.131000000000000000e+03 6.969000000000000000e+03 1.975000000000000000e+03 6.000000000000000000e+00 1.670000000000000000e+02 2.110000000000000000e+02 2.577292230000000117e+01 -8.034439050000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.338000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 3.800000000000000000e+01 2.130000000000000000e+02 2.800000000000000000e+02 3.032690410000000369e+01 -8.166372579999999459e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.197000000000000000e+03 1.484000000000000000e+03 1.987000000000000000e+03 2.300000000000000000e+01 3.580000000000000000e+02 1.093000000000000000e+03 4.061124360000000166e+01 -7.409420479999999998e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.837000000000000000e+03 2.382700000000000000e+04 1.997000000000000000e+03 2.190000000000000000e+02 2.580000000000000000e+02 2.800000000000000000e+02 3.386215210000000297e+01 -8.436615729999999758e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.100000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.120000000000000000e+02 2.080000000000000000e+02 3.750000000000000000e+02 3.021940000000000026e+01 -8.161238299999999413e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.160000000000000000e+02 6.969000000000000000e+03 1.959000000000000000e+03 1.310000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.042424099999999854e+01 -8.166149470000000576e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.750000000000000000e+02 8.346600000000000000e+04 1.963000000000000000e+03 3.900000000000000000e+01 2.340000000000000000e+02 2.800000000000000000e+02 2.854412830000000056e+01 -8.137658059999999693e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.510000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 4.620000000000000000e+02 7.170000000000000000e+02 1.336000000000000000e+03 2.576868860000000439e+01 -8.018318159999999750e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.678000000000000000e+03 3.600000000000000000e+03 1.925000000000000000e+03 4.200000000000000000e+01 9.530000000000000000e+02 2.800000000000000000e+02 4.060879669999999919e+01 -7.394614260000000172e+01 3.000000000000000000e+05 +4.500000000000000000e+00 6.252000000000000000e+03 2.615900000000000000e+04 1.982000000000000000e+03 3.900000000000000000e+01 4.140000000000000000e+02 5.000000000000000000e+01 2.845431810000000539e+01 -8.151597769999999343e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.280000000000000000e+03 6.969000000000000000e+03 1.986000000000000000e+03 3.300000000000000000e+01 4.030000000000000000e+02 3.350000000000000000e+02 3.365621210000000474e+01 -1.176447267999999866e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.864000000000000000e+03 8.712000000000000000e+04 2.017000000000000000e+03 1.000000000000000000e+01 1.540000000000000000e+02 2.800000000000000000e+02 3.590904899999999600e+01 -7.918118400000000179e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.798000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 8.400000000000000000e+01 4.000000000000000000e+02 2.740000000000000000e+02 3.356589730000000316e+01 -1.177059925000000078e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.162000000000000000e+03 1.540000000000000000e+03 2.018000000000000000e+03 3.000000000000000000e+01 1.770000000000000000e+02 2.810000000000000000e+02 2.837129199999999685e+01 -8.126069400000000087e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.210000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 5.600000000000000000e+01 3.530000000000000000e+02 5.030000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.300000000000000000e+02 6.969000000000000000e+03 1.975000000000000000e+03 1.480000000000000000e+02 2.960000000000000000e+02 5.220000000000000000e+02 2.575084100000000120e+01 -8.019988809999999546e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.807000000000000000e+03 8.657000000000000000e+03 1.959000000000000000e+03 4.100000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 2.576499360000000038e+01 -8.032507520000000056e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.846000000000000000e+03 5.314300000000000000e+04 2.007000000000000000e+03 2.320000000000000000e+02 1.200000000000000000e+02 1.700000000000000000e+01 3.573400469999999984e+01 -7.846615859999998577e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.624000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.000000000000000000e+01 2.160000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.774000000000000000e+03 1.236000000000000000e+04 1.981000000000000000e+03 9.100000000000000000e+01 1.520000000000000000e+02 2.800000000000000000e+02 2.858714039999999912e+01 -8.127173530000000312e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.945000000000000000e+03 5.000000000000000000e+03 1.930000000000000000e+03 2.200000000000000000e+01 3.540000000000000000e+02 2.800000000000000000e+02 4.057601999999999975e+01 -7.411551959999999895e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.229000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.250000000000000000e+02 6.890000000000000000e+02 7.790000000000000000e+02 2.580506539999999660e+01 -8.018623690000001147e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.200000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 1.400000000000000000e+01 4.150000000000000000e+02 4.430000000000000000e+02 2.575963919999999874e+01 -8.019025809999999410e+01 3.000000000000000000e+05 +3.000000000000000000e+00 4.769000000000000000e+03 1.563800000000000000e+04 1.962000000000000000e+03 1.280000000000000000e+02 8.800000000000000000e+01 2.800000000000000000e+02 3.598761439999999823e+01 -7.893185169999999573e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.130000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 3.600000000000000000e+01 8.780000000000000000e+02 2.800000000000000000e+02 2.576033190000000062e+01 -8.018934099999999887e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.775000000000000000e+03 7.500000000000000000e+03 1.953000000000000000e+03 1.320000000000000000e+02 2.140000000000000000e+02 2.800000000000000000e+02 2.573924089999999865e+01 -8.030196309999999471e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.858000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.000000000000000000e+01 5.320000000000000000e+02 2.800000000000000000e+02 3.363413700000000262e+01 -1.179404790000000105e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.116000000000000000e+03 6.969000000000000000e+03 1.906000000000000000e+03 4.000000000000000000e+00 7.700000000000000000e+01 2.800000000000000000e+02 3.033763169999999931e+01 -8.165073019999999815e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.149000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 8.500000000000000000e+01 1.260000000000000000e+02 3.790000000000000000e+02 2.577766169999999946e+01 -8.034520059999999830e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.846000000000000000e+03 2.500000000000000000e+03 1.984000000000000000e+03 2.600000000000000000e+01 5.270000000000000000e+02 7.990000000000000000e+02 3.346638989999999581e+01 -1.176942159999999973e+02 3.000000000000000000e+05 +4.000000000000000000e+00 4.000000000000000000e+03 9.350000000000000000e+03 1.993000000000000000e+03 6.000000000000000000e+00 3.250000000000000000e+02 2.300000000000000000e+02 3.360029429999999451e+01 -1.175803547000000009e+02 3.000000000000000000e+05 +1.000000000000000000e+00 6.960000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 8.900000000000000000e+01 3.520000000000000000e+02 5.190000000000000000e+02 2.579407689999999675e+01 -8.018707059999998421e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.287000000000000000e+03 5.247000000000000000e+03 2.014000000000000000e+03 1.210000000000000000e+02 1.640000000000000000e+02 1.010000000000000000e+02 2.849193649999999778e+01 -8.144761889999999482e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.280000000000000000e+02 6.969000000000000000e+03 1.900000000000000000e+03 1.700000000000000000e+01 2.950000000000000000e+02 2.800000000000000000e+02 3.927305810000000008e+01 -7.660940349999999910e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.575000000000000000e+03 3.825000000000000000e+03 1.977000000000000000e+03 1.400000000000000000e+01 4.600000000000000000e+02 2.000000000000000000e+02 3.355197760000000073e+01 -1.177037360000000064e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.600000000000000000e+03 2.000000000000000000e+03 1.892000000000000000e+03 4.200000000000000000e+01 6.390000000000000000e+02 2.800000000000000000e+02 4.068076029999999577e+01 -7.393293859999999995e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.860000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 6.000000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.020508400000000293e+01 -8.179390379999999539e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.355000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.000000000000000000e+00 1.300000000000000000e+02 5.000000000000000000e+01 3.011170800000000014e+01 -8.152058100000000707e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.043000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.770000000000000000e+02 2.800000000000000000e+02 3.591194500000000289e+01 -7.895939500000000066e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.955000000000000000e+03 1.947100000000000000e+04 1.920000000000000000e+03 1.400000000000000000e+02 1.510000000000000000e+02 2.800000000000000000e+02 3.381679479999999671e+01 -8.446531790000000228e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.400000000000000000e+03 3.049000000000000000e+03 1.972000000000000000e+03 2.800000000000000000e+01 8.850000000000000000e+02 2.800000000000000000e+02 3.352678060000000215e+01 -1.177610804999999914e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.116000000000000000e+03 8.620000000000000000e+03 1.960000000000000000e+03 2.130000000000000000e+02 1.570000000000000000e+02 2.800000000000000000e+02 2.851980280000000079e+01 -8.129031359999999040e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.537000000000000000e+03 6.969000000000000000e+03 1.939000000000000000e+03 1.420000000000000000e+02 3.570000000000000000e+02 2.800000000000000000e+02 2.575199669999999941e+01 -8.022749129999999695e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.942000000000000000e+03 1.559400000000000000e+04 1.979000000000000000e+03 1.410000000000000000e+02 1.100000000000000000e+02 2.800000000000000000e+02 3.749015900000000556e+01 -7.758280899999999747e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.062000000000000000e+03 8.645000000000000000e+03 1.957000000000000000e+03 9.600000000000000000e+01 5.130000000000000000e+02 2.800000000000000000e+02 3.380617469999999969e+01 -1.179503940999999827e+02 3.000000000000000000e+05 +6.500000000000000000e+00 8.010000000000000000e+03 4.356000000000000000e+04 2.001000000000000000e+03 2.000000000000000000e+01 2.490000000000000000e+02 2.800000000000000000e+02 3.392962599999999895e+01 -1.178008997000000022e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.736000000000000000e+03 7.840000000000000000e+03 1.935000000000000000e+03 1.530000000000000000e+02 9.900000000000000000e+01 2.800000000000000000e+02 3.372989030000000099e+01 -8.443862070000000131e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.497000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 5.100000000000000000e+01 2.560000000000000000e+02 2.800000000000000000e+02 3.023042509999999794e+01 -8.161943399999999826e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.281000000000000000e+03 1.742000000000000000e+03 2.014000000000000000e+03 4.200000000000000000e+01 2.080000000000000000e+02 2.370000000000000000e+02 3.583161299999999727e+01 -7.864080400000000282e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.261000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.410000000000000000e+02 5.980000000000000000e+02 2.800000000000000000e+02 3.362881270000000455e+01 -1.179233669000000049e+02 3.000000000000000000e+05 +3.500000000000000000e+00 2.580000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 6.300000000000000000e+01 7.930000000000000000e+02 1.989000000000000000e+03 2.575553910000000002e+01 -8.019507659999999305e+01 3.000000000000000000e+05 +6.500000000000000000e+00 4.377000000000000000e+03 8.541000000000000000e+03 2.016000000000000000e+03 7.600000000000000000e+01 5.680000000000000000e+02 1.980000000000000000e+02 3.366996590000000111e+01 -1.176805399999999935e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.405000000000000000e+03 6.969000000000000000e+03 1.982000000000000000e+03 5.100000000000000000e+01 1.000000000000000000e+02 4.990000000000000000e+02 2.595934800000000209e+01 -8.019205300000000136e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.330000000000000000e+03 7.397000000000000000e+03 2.013000000000000000e+03 9.100000000000000000e+01 9.240000000000000000e+02 1.150000000000000000e+02 3.362531079999999406e+01 -1.178509717999999822e+02 3.000000000000000000e+05 +1.500000000000000000e+00 2.010000000000000000e+03 1.306800000000000000e+04 1.959000000000000000e+03 3.000000000000000000e+01 1.440000000000000000e+02 2.800000000000000000e+02 3.385805689999999402e+01 -8.430156090000001257e+01 3.000000000000000000e+05 +1.000000000000000000e+00 4.810000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 3.070000000000000000e+02 5.180000000000000000e+02 2.800000000000000000e+02 2.577480199999999755e+01 -8.018814390000000003e+01 3.000000000000000000e+05 +5.000000000000000000e+00 6.044000000000000000e+03 2.178000000000000000e+04 2.005000000000000000e+03 3.300000000000000000e+01 2.960000000000000000e+02 2.800000000000000000e+02 3.580922679999999758e+01 -7.866072779999998943e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.854000000000000000e+03 6.969000000000000000e+03 1.959000000000000000e+03 4.200000000000000000e+01 9.400000000000000000e+01 2.800000000000000000e+02 3.027708610000000178e+01 -8.158751009999998871e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.617000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.000000000000000000e+01 1.410000000000000000e+02 4.000000000000000000e+00 3.372027109999999794e+01 -8.431667209999999102e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.584000000000000000e+03 6.000000000000000000e+03 1.987000000000000000e+03 1.300000000000000000e+01 3.290000000000000000e+02 2.750000000000000000e+02 3.378549730000000295e+01 -1.177842178000000075e+02 3.000000000000000000e+05 +4.000000000000000000e+00 4.099000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 7.500000000000000000e+01 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.030000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 6.790000000000000000e+02 4.630000000000000000e+02 3.090000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.772000000000000000e+03 1.193500000000000000e+04 2.000000000000000000e+03 2.000000000000000000e+00 1.830000000000000000e+02 2.440000000000000000e+02 3.583585000000000065e+01 -7.903379999999999939e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.078000000000000000e+03 6.969000000000000000e+03 1.875000000000000000e+03 1.000000000000000000e+01 2.960000000000000000e+02 2.800000000000000000e+02 3.927026089999999670e+01 -7.659002390000000560e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.429000000000000000e+03 6.969000000000000000e+03 1.973000000000000000e+03 2.700000000000000000e+01 2.800000000000000000e+01 3.750000000000000000e+02 3.032677899999999838e+01 -8.157775900000000036e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.250000000000000000e+03 6.968000000000000000e+03 1.905000000000000000e+03 1.300000000000000000e+01 4.000000000000000000e+02 2.800000000000000000e+02 4.062618189999999885e+01 -7.413259809999999561e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.339000000000000000e+03 9.775000000000000000e+03 1.989000000000000000e+03 1.000000000000000000e+00 5.560000000000000000e+02 1.270000000000000000e+02 3.345340290000000039e+01 -1.176393513999999954e+02 3.000000000000000000e+05 +2.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.997000000000000000e+03 3.600000000000000000e+01 2.110000000000000000e+02 2.150000000000000000e+02 2.562439689999999715e+01 -8.041093999999999653e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.838000000000000000e+03 6.721000000000000000e+03 2.007000000000000000e+03 1.760000000000000000e+02 1.240000000000000000e+02 2.800000000000000000e+02 3.754224329999999554e+01 -7.755766880000000185e+01 3.000000000000000000e+05 +5.000000000000000000e+00 6.895000000000000000e+03 1.604800000000000000e+04 1.992000000000000000e+03 6.200000000000000000e+01 3.910000000000000000e+02 2.800000000000000000e+02 3.351862899999999712e+01 -1.176578820000000007e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.622000000000000000e+03 4.343000000000000000e+03 2.001000000000000000e+03 1.200000000000000000e+01 3.690000000000000000e+02 2.800000000000000000e+02 3.386575689999999383e+01 -1.178310224000000233e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.639000000000000000e+03 8.446000000000000000e+03 2.004000000000000000e+03 2.500000000000000000e+01 1.100000000000000000e+02 5.500000000000000000e+01 2.846353030000000217e+01 -8.126674590000000364e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.450000000000000000e+03 2.064740000000000000e+05 1.991000000000000000e+03 8.000000000000000000e+00 2.440000000000000000e+02 2.800000000000000000e+02 2.562536599999999964e+01 -8.053672890000001416e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.627000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 4.550000000000000000e+02 9.120000000000000000e+02 2.800000000000000000e+02 2.576926429999999968e+01 -8.018584990000000801e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.020000000000000000e+03 2.003700000000000000e+04 1.949000000000000000e+03 1.300000000000000000e+02 6.400000000000000000e+01 2.800000000000000000e+02 3.371285549999999631e+01 -8.444313259999998422e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.242000000000000000e+03 2.500000000000000000e+03 1.900000000000000000e+03 1.200000000000000000e+02 1.650000000000000000e+03 2.800000000000000000e+02 3.361007910000000010e+01 -1.179300881000000061e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.284000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 3.400000000000000000e+01 1.290000000000000000e+02 3.100000000000000000e+02 3.024310900000000402e+01 -8.159193000000000495e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.237000000000000000e+03 1.531200000000000000e+04 1.970000000000000000e+03 6.900000000000000000e+01 2.150000000000000000e+02 2.800000000000000000e+02 2.563375880000000251e+01 -8.034398229999999330e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.900000000000000000e+02 6.969000000000000000e+03 1.973000000000000000e+03 6.800000000000000000e+01 3.030000000000000000e+02 5.920000000000000000e+02 2.580977710000000158e+01 -8.018654750000000320e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.834000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 6.000000000000000000e+00 1.450000000000000000e+02 2.800000000000000000e+02 3.386768889999999743e+01 -8.446451840000000288e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.378000000000000000e+03 6.969000000000000000e+03 1.957000000000000000e+03 8.500000000000000000e+01 9.700000000000000000e+01 2.800000000000000000e+02 3.027276200000000017e+01 -8.184137199999999268e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.850000000000000000e+03 1.910000000000000000e+03 1.990000000000000000e+03 3.700000000000000000e+01 4.140000000000000000e+02 2.800000000000000000e+02 4.069342899999999474e+01 -7.391432299999999600e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.083000000000000000e+03 1.816000000000000000e+03 1.989000000000000000e+03 5.000000000000000000e+00 3.960000000000000000e+02 3.390000000000000000e+02 3.368692399999999765e+01 -1.176268620000000169e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.390000000000000000e+03 6.969000000000000000e+03 1.986000000000000000e+03 2.100000000000000000e+02 3.850000000000000000e+02 2.800000000000000000e+02 2.579131600000000191e+01 -8.018615520000000174e+01 3.000000000000000000e+05 +4.750000000000000000e+00 4.200000000000000000e+03 2.325000000000000000e+04 1.951000000000000000e+03 4.400000000000000000e+01 4.450000000000000000e+02 2.800000000000000000e+02 4.052655930000000239e+01 -7.422380200000000627e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.838000000000000000e+03 8.100000000000000000e+03 1.913000000000000000e+03 4.010000000000000000e+02 8.300000000000000000e+01 2.800000000000000000e+02 3.933003420000000006e+01 -7.668209859999998912e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.300000000000000000e+03 3.408000000000000000e+03 1.999000000000000000e+03 7.700000000000000000e+01 4.460000000000000000e+02 2.800000000000000000e+02 4.055234860000000197e+01 -7.421131770000000927e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.110000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 3.500000000000000000e+01 4.630000000000000000e+02 2.800000000000000000e+02 2.579070619999999892e+01 -8.019238570000000266e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.430000000000000000e+03 6.969000000000000000e+03 1.983000000000000000e+03 1.600000000000000000e+02 7.690000000000000000e+02 1.504000000000000000e+03 2.578995019999999627e+01 -8.017435159999999428e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.941000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 8.400000000000000000e+01 2.800000000000000000e+02 3.363034299999999632e+01 -8.454034599999999955e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.092000000000000000e+03 6.969000000000000000e+03 1.963000000000000000e+03 1.160000000000000000e+02 3.200000000000000000e+02 3.100000000000000000e+02 3.374039979999999872e+01 -1.178314757999999927e+02 3.000000000000000000e+05 +1.000000000000000000e+00 7.910000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 4.900000000000000000e+01 4.240000000000000000e+02 4.860000000000000000e+02 2.579248199999999969e+01 -8.018714900000000512e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.450000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 4.400000000000000000e+01 1.360000000000000000e+02 2.050000000000000000e+02 2.594711000000000212e+01 -8.016585200000000100e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.061000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 9.600000000000000000e+01 4.240000000000000000e+02 7.550000000000000000e+02 2.575538099999999986e+01 -8.020753340000000264e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.478000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.530000000000000000e+02 2.500000000000000000e+02 3.400000000000000000e+02 3.576851370000000685e+01 -7.868188209999999572e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.325000000000000000e+03 6.969000000000000000e+03 1.962000000000000000e+03 1.200000000000000000e+02 1.250000000000000000e+02 2.800000000000000000e+02 3.035924199999999828e+01 -8.159106509999999446e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.800000000000000000e+02 6.969000000000000000e+03 2.017000000000000000e+03 2.190000000000000000e+02 6.110000000000000000e+02 2.800000000000000000e+02 2.576568989999999815e+01 -8.019390079999999443e+01 3.000000000000000000e+05 +9.500000000000000000e+00 7.454000000000000000e+03 3.833200000000000000e+04 2.012000000000000000e+03 1.300000000000000000e+01 6.700000000000000000e+02 2.800000000000000000e+02 2.568272299999999930e+01 -8.028844000000000847e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.244000000000000000e+03 6.969000000000000000e+03 2.006000000000000000e+03 1.510000000000000000e+02 1.430000000000000000e+02 2.200000000000000000e+02 3.570309660000000207e+01 -7.879000970000001303e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.800000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 1.000000000000000000e+00 2.170000000000000000e+02 1.500000000000000000e+02 2.572808900000000065e+01 -8.030291070000001241e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.139000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 4.000000000000000000e+00 8.880000000000000000e+02 1.957000000000000000e+03 2.575908800000000198e+01 -8.019181670000000395e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.350000000000000000e+03 4.000000000000000000e+03 2.018000000000000000e+03 5.800000000000000000e+01 1.332000000000000000e+03 2.800000000000000000e+02 4.076530699999999996e+01 -7.376624900000000196e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.040000000000000000e+03 6.969000000000000000e+03 1.940000000000000000e+03 1.400000000000000000e+02 4.700000000000000000e+01 2.800000000000000000e+02 3.923644900000000035e+01 -7.660517040000000577e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.454000000000000000e+03 9.583000000000000000e+03 2.015000000000000000e+03 2.700000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 3.375619950000000102e+01 -8.433849060000000009e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.870000000000000000e+03 7.000000000000000000e+03 1.966000000000000000e+03 9.000000000000000000e+00 4.540000000000000000e+02 2.800000000000000000e+02 3.381149089999999546e+01 -1.178206789999999984e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.494000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 4.800000000000000000e+01 7.360000000000000000e+02 2.800000000000000000e+02 2.576401369999999957e+01 -8.019129750000000456e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.871000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.140000000000000000e+02 2.800000000000000000e+02 3.053654299999999822e+01 -8.162010100000000534e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.851000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.300000000000000000e+01 1.840000000000000000e+02 2.800000000000000000e+02 3.582256300000000238e+01 -7.891303800000000024e+01 3.000000000000000000e+05 +7.000000000000000000e+00 5.190000000000000000e+03 1.929700000000000000e+04 2.005000000000000000e+03 1.000000000000000000e+00 3.460000000000000000e+02 2.800000000000000000e+02 3.386219539999999739e+01 -8.436139310000000080e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.276000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.700000000000000000e+02 6.500000000000000000e+02 2.800000000000000000e+02 2.576553850000000168e+01 -8.019382759999999166e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.756000000000000000e+03 1.026000000000000000e+03 1.983000000000000000e+03 5.800000000000000000e+01 2.680000000000000000e+02 3.070000000000000000e+02 4.060291029999999779e+01 -7.417079809999998474e+01 3.000000000000000000e+05 +5.000000000000000000e+00 1.973000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 5.100000000000000000e+01 3.420000000000000000e+02 2.800000000000000000e+02 2.576482850000000013e+01 -8.021503879999998787e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.800000000000000000e+03 1.960200000000000000e+04 1.928000000000000000e+03 9.100000000000000000e+01 3.210000000000000000e+02 2.800000000000000000e+02 3.379644310000000473e+01 -8.436244040000001121e+01 3.000000000000000000e+05 +5.000000000000000000e+00 2.520000000000000000e+03 1.307000000000000000e+03 1.900000000000000000e+03 5.000000000000000000e+00 2.620000000000000000e+02 2.800000000000000000e+02 3.929086699999999865e+01 -7.659061040000000276e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.620000000000000000e+02 1.000000000000000000e+03 1.972000000000000000e+03 9.000000000000000000e+01 6.900000000000000000e+01 2.100000000000000000e+02 2.857449799999999840e+01 -8.145579929999999536e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.745000000000000000e+03 7.148000000000000000e+03 1.907000000000000000e+03 8.400000000000000000e+01 1.260000000000000000e+02 2.800000000000000000e+02 3.936328729999999609e+01 -7.661074509999998838e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.720000000000000000e+02 6.969000000000000000e+03 1.960000000000000000e+03 4.500000000000000000e+01 5.100000000000000000e+01 2.800000000000000000e+02 3.036056900000000169e+01 -8.173863399999999046e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.125000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 1.000000000000000000e+00 1.260000000000000000e+02 3.200000000000000000e+02 2.577536080000000140e+01 -8.034705649999999366e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.230000000000000000e+03 1.146900000000000000e+04 1.954000000000000000e+03 1.620000000000000000e+02 1.020000000000000000e+02 2.800000000000000000e+02 2.852317189999999769e+01 -8.142118059999999957e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.078000000000000000e+03 2.722500000000000000e+04 1.993000000000000000e+03 2.520000000000000000e+02 2.170000000000000000e+02 2.800000000000000000e+02 2.574124750000000006e+01 -8.041861209999999005e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.740000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 4.810000000000000000e+02 4.690000000000000000e+02 4.630000000000000000e+02 2.576500499999999860e+01 -8.019016600000000494e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.492000000000000000e+03 4.323000000000000000e+03 1.981000000000000000e+03 4.000000000000000000e+01 1.880000000000000000e+02 2.810000000000000000e+02 2.567876210000000015e+01 -8.043571620000000166e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.032000000000000000e+03 7.452000000000000000e+03 1.972000000000000000e+03 7.000000000000000000e+00 1.360000000000000000e+02 2.800000000000000000e+02 2.585275790000000029e+01 -8.023909949999999469e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.010000000000000000e+02 6.969000000000000000e+03 2.018000000000000000e+03 2.100000000000000000e+01 8.200000000000000000e+02 2.590000000000000000e+02 4.072033689999999950e+01 -7.380871679999999913e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.470000000000000000e+02 6.969000000000000000e+03 1.949000000000000000e+03 2.000000000000000000e+00 5.740000000000000000e+02 3.250000000000000000e+02 4.073189510000000269e+01 -7.385408180000000300e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.478000000000000000e+03 1.260000000000000000e+03 1.992000000000000000e+03 5.000000000000000000e+01 2.970000000000000000e+02 9.000000000000000000e+01 4.053661439999999772e+01 -7.421980100000000391e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 7.000000000000000000e+00 2.000000000000000000e+02 5.000000000000000000e+01 3.383319210000000510e+01 -8.438372990000000584e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.041000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 1.200000000000000000e+02 3.160000000000000000e+02 7.000000000000000000e+02 2.577589820000000032e+01 -8.019006670000000270e+01 3.000000000000000000e+05 +5.500000000000000000e+00 4.734000000000000000e+03 8.106000000000000000e+03 1.998000000000000000e+03 1.260000000000000000e+02 4.960000000000000000e+02 2.150000000000000000e+02 3.372195939999999581e+01 -1.177524563999999998e+02 3.000000000000000000e+05 +1.000000000000000000e+00 6.600000000000000000e+02 6.969000000000000000e+03 1.965000000000000000e+03 3.490000000000000000e+02 1.140000000000000000e+02 1.890000000000000000e+02 2.594998700000000014e+01 -8.019515799999999217e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.860000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 4.060000000000000000e+02 4.360000000000000000e+02 5.890000000000000000e+02 2.576500499999999860e+01 -8.019016600000000494e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.084000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.960000000000000000e+02 1.130000000000000000e+02 3.500000000000000000e+01 3.047157999999999944e+01 -8.162567299999999193e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.767000000000000000e+03 1.432400000000000000e+04 2.005000000000000000e+03 7.000000000000000000e+00 2.350000000000000000e+02 2.800000000000000000e+02 2.569713519999999818e+01 -8.039809119999999609e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.134000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 6.200000000000000000e+01 6.260000000000000000e+02 9.860000000000000000e+02 2.576277500000000131e+01 -8.019246300000000360e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.679000000000000000e+03 7.100000000000000000e+03 1.952000000000000000e+03 1.070000000000000000e+02 2.230000000000000000e+02 2.800000000000000000e+02 2.575828010000000035e+01 -8.023130740000000571e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.771000000000000000e+03 6.969000000000000000e+03 1.993000000000000000e+03 5.000000000000000000e+00 3.530000000000000000e+02 3.000000000000000000e+02 3.379621599999999404e+01 -1.178183969999999903e+02 3.000000000000000000e+05 +3.000000000000000000e+00 3.000000000000000000e+03 2.000000000000000000e+03 1.989000000000000000e+03 2.800000000000000000e+01 3.000000000000000000e+02 2.800000000000000000e+02 4.064370789999999545e+01 -7.399190500000000270e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.419000000000000000e+03 4.265000000000000000e+03 2.013000000000000000e+03 1.470000000000000000e+02 1.450000000000000000e+02 9.300000000000000000e+01 2.848750550000000104e+01 -8.144692909999999131e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.080000000000000000e+03 1.926000000000000000e+03 1.956000000000000000e+03 1.000000000000000000e+00 1.190000000000000000e+02 2.800000000000000000e+02 3.929247700000000521e+01 -7.652171800000000701e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.426000000000000000e+03 1.698800000000000000e+04 1.956000000000000000e+03 1.900000000000000000e+01 3.370000000000000000e+02 2.800000000000000000e+02 3.382064429999999788e+01 -8.434962469999999257e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.635000000000000000e+03 2.178000000000000000e+04 1.925000000000000000e+03 4.100000000000000000e+01 3.230000000000000000e+02 2.800000000000000000e+02 3.385937260000000038e+01 -8.434576290000001109e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.600000000000000000e+03 1.796900000000000000e+04 2.017000000000000000e+03 1.180000000000000000e+02 2.610000000000000000e+02 2.800000000000000000e+02 2.574464299999999994e+01 -8.037234709999998472e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.128000000000000000e+03 6.969000000000000000e+03 2.010000000000000000e+03 8.170000000000000000e+02 6.100000000000000000e+02 9.820000000000000000e+02 2.579653830000000170e+01 -8.018829110000000071e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.863000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 5.500000000000000000e+01 6.310000000000000000e+02 1.244000000000000000e+03 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.574000000000000000e+03 4.000000000000000000e+03 1.970000000000000000e+03 9.000000000000000000e+00 3.340000000000000000e+02 2.800000000000000000e+02 4.060005519999999990e+01 -7.413932340000000920e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.320000000000000000e+03 6.969000000000000000e+03 1.970000000000000000e+03 2.000000000000000000e+00 2.530000000000000000e+02 5.680000000000000000e+02 2.574988370000000160e+01 -8.020160679999999331e+01 3.000000000000000000e+05 +5.000000000000000000e+00 5.040000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 8.100000000000000000e+01 7.140000000000000000e+02 1.800000000000000000e+02 3.342599409999999693e+01 -1.175957257000000027e+02 3.000000000000000000e+05 +4.000000000000000000e+00 2.126000000000000000e+03 6.969000000000000000e+03 1.942000000000000000e+03 7.100000000000000000e+01 8.700000000000000000e+01 2.800000000000000000e+02 3.024189949999999882e+01 -8.174701109999999460e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.340000000000000000e+03 1.067000000000000000e+03 2.006000000000000000e+03 1.600000000000000000e+01 2.050000000000000000e+02 5.700000000000000000e+01 2.856825999999999866e+01 -8.132816300000000354e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.884000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.800000000000000000e+02 2.800000000000000000e+02 3.568638200000000182e+01 -7.875604300000000535e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.262000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 8.200000000000000000e+01 2.140000000000000000e+02 6.300000000000000000e+01 2.570020110000000102e+01 -8.036523420000000328e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.655000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 2.540000000000000000e+02 5.260000000000000000e+02 1.215000000000000000e+03 2.576795080000000127e+01 -8.018644700000000114e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.404000000000000000e+03 7.800000000000000000e+03 1.954000000000000000e+03 2.250000000000000000e+02 2.600000000000000000e+02 2.800000000000000000e+02 2.571875599999999906e+01 -8.034274229999999761e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.600000000000000000e+03 1.098800000000000000e+04 1.980000000000000000e+03 7.000000000000000000e+00 5.310000000000000000e+02 2.800000000000000000e+02 4.061834499999999792e+01 -7.409365499999999827e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.428000000000000000e+03 7.140000000000000000e+03 1.957000000000000000e+03 1.140000000000000000e+02 3.890000000000000000e+02 2.800000000000000000e+02 2.584526250000000047e+01 -8.018003040000000681e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.875000000000000000e+03 1.306800000000000000e+04 2.017000000000000000e+03 2.600000000000000000e+01 1.870000000000000000e+02 3.360000000000000000e+02 3.584108900000000375e+01 -7.906090799999999774e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.364000000000000000e+03 1.742000000000000000e+03 2.014000000000000000e+03 5.600000000000000000e+01 2.010000000000000000e+02 2.370000000000000000e+02 3.583039839999999998e+01 -7.864100410000000352e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.665000000000000000e+03 1.742400000000000000e+04 2.017000000000000000e+03 6.500000000000000000e+01 2.710000000000000000e+02 2.800000000000000000e+02 3.385068770000000171e+01 -8.429397490000000914e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.308000000000000000e+03 3.600000000000000000e+03 1.955000000000000000e+03 4.000000000000000000e+01 1.570000000000000000e+02 2.800000000000000000e+02 2.583708890000000125e+01 -8.022256600000000049e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.880000000000000000e+02 6.969000000000000000e+03 1.937000000000000000e+03 1.280000000000000000e+02 3.720000000000000000e+02 2.800000000000000000e+02 2.578825080000000014e+01 -8.022505129999998985e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.664000000000000000e+03 4.100000000000000000e+03 1.910000000000000000e+03 8.200000000000000000e+01 2.250000000000000000e+02 2.800000000000000000e+02 4.064023339999999962e+01 -7.408919350000000748e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.240000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 5.000000000000000000e+00 1.380000000000000000e+02 6.500000000000000000e+01 3.045804089999999675e+01 -8.153380240000001322e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.438000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 2.660000000000000000e+02 8.800000000000000000e+01 2.800000000000000000e+02 3.030367150000000365e+01 -8.183035300000000234e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.167000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.300000000000000000e+02 6.830000000000000000e+02 2.800000000000000000e+02 2.576405499999999904e+01 -8.019230129999999690e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.169000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 4.900000000000000000e+01 4.180000000000000000e+02 6.030000000000000000e+02 2.577163660000000078e+01 -8.018580450000000326e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.695000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.280000000000000000e+02 2.800000000000000000e+02 3.575422100000000114e+01 -7.875321900000000142e+01 3.000000000000000000e+05 +6.500000000000000000e+00 6.300000000000000000e+03 6.969000000000000000e+03 1.997000000000000000e+03 6.340000000000000000e+02 1.825000000000000000e+03 4.709000000000000000e+03 2.575553910000000002e+01 -8.019507659999999305e+01 3.000000000000000000e+05 +1.500000000000000000e+00 8.780000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 1.600000000000000000e+01 3.020000000000000000e+02 6.280000000000000000e+02 2.576103299999999763e+01 -8.019439599999999757e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.154000000000000000e+03 6.927000000000000000e+03 2.005000000000000000e+03 5.000000000000000000e+00 9.700000000000000000e+01 1.230000000000000000e+02 2.835394499999999951e+01 -8.134580699999999354e+01 3.000000000000000000e+05 +6.000000000000000000e+00 7.681000000000000000e+03 3.920400000000000000e+04 2.006000000000000000e+03 1.380000000000000000e+02 3.450000000000000000e+02 2.800000000000000000e+02 3.378218509999999952e+01 -8.433976429999999880e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.095000000000000000e+03 8.062000000000000000e+03 1.936000000000000000e+03 1.540000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 2.587468560000000295e+01 -8.021398349999999766e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.936000000000000000e+03 2.712000000000000000e+03 2.003000000000000000e+03 7.400000000000000000e+01 2.010000000000000000e+02 3.250000000000000000e+02 2.855857400000000013e+01 -8.133202199999999493e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.742000000000000000e+03 1.500000000000000000e+03 2.018000000000000000e+03 5.500000000000000000e+01 3.600000000000000000e+02 2.270000000000000000e+02 3.352647039999999379e+01 -1.176288155999999958e+02 3.000000000000000000e+05 +1.500000000000000000e+00 1.372000000000000000e+03 1.051100000000000000e+04 1.959000000000000000e+03 9.000000000000000000e+00 1.470000000000000000e+02 2.800000000000000000e+02 3.752477650000000153e+01 -7.751318929999999341e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.184000000000000000e+03 5.850000000000000000e+03 1.936000000000000000e+03 3.700000000000000000e+01 1.960000000000000000e+02 2.800000000000000000e+02 2.576261519999999905e+01 -8.023433149999999614e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.713000000000000000e+03 5.000000000000000000e+03 2.004000000000000000e+03 2.660000000000000000e+02 1.550000000000000000e+02 2.800000000000000000e+02 2.568646489999999716e+01 -8.045827400000000296e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.595000000000000000e+03 3.683000000000000000e+03 2.017000000000000000e+03 1.140000000000000000e+02 1.780000000000000000e+02 3.170000000000000000e+02 3.938985789999999554e+01 -7.666168590000000904e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.380000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 8.500000000000000000e+01 5.540000000000000000e+02 6.700000000000000000e+02 2.578343549999999951e+01 -8.019018100000000970e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.796000000000000000e+03 1.025500000000000000e+04 1.925000000000000000e+03 5.000000000000000000e+00 2.500000000000000000e+02 2.800000000000000000e+02 2.854973499999999831e+01 -8.136917859999999791e+01 3.000000000000000000e+05 +4.000000000000000000e+00 1.898000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.860000000000000000e+02 7.380000000000000000e+02 1.244000000000000000e+03 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +4.500000000000000000e+00 2.680000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.100000000000000000e+01 2.810000000000000000e+02 3.600000000000000000e+02 3.380494850000000184e+01 -8.438763500000000306e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.830000000000000000e+02 6.969000000000000000e+03 2.003000000000000000e+03 3.850000000000000000e+02 5.070000000000000000e+02 1.100000000000000000e+03 2.575885050000000120e+01 -8.019221249999999657e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.416000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 3.650000000000000000e+02 8.400000000000000000e+01 2.800000000000000000e+02 3.047063969999999955e+01 -8.165371659999999565e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.445000000000000000e+03 4.000000000000000000e+03 2.012000000000000000e+03 4.300000000000000000e+01 7.160000000000000000e+02 2.800000000000000000e+02 4.075166790000000105e+01 -7.377129700000000412e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.583000000000000000e+03 1.041000000000000000e+04 1.965000000000000000e+03 9.200000000000000000e+01 7.100000000000000000e+01 2.800000000000000000e+02 3.374236700000000155e+01 -8.452117490000000544e+01 3.000000000000000000e+05 +1.500000000000000000e+00 6.510000000000000000e+02 6.969000000000000000e+03 2.007000000000000000e+03 1.340000000000000000e+02 2.950000000000000000e+02 4.300000000000000000e+02 2.577589820000000032e+01 -8.019006670000000270e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.004000000000000000e+03 6.013000000000000000e+03 1.939000000000000000e+03 1.030000000000000000e+02 3.140000000000000000e+02 2.800000000000000000e+02 2.585051839999999856e+01 -8.019210520000000031e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 1.000000000000000000e+00 1.140000000000000000e+02 3.750000000000000000e+02 2.595798590000000061e+01 -8.018603099999999984e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.336000000000000000e+03 6.969000000000000000e+03 1.919000000000000000e+03 1.030000000000000000e+02 5.200000000000000000e+01 2.800000000000000000e+02 3.929351099999999519e+01 -7.668313000000000557e+01 3.000000000000000000e+05 +6.000000000000000000e+00 5.337000000000000000e+03 7.083000000000000000e+03 1.998000000000000000e+03 1.300000000000000000e+01 8.610000000000000000e+02 2.800000000000000000e+02 3.361724870000000465e+01 -1.179119341999999904e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.006000000000000000e+03 1.132500000000000000e+04 2.016000000000000000e+03 3.000000000000000000e+00 1.980000000000000000e+02 5.000000000000000000e+01 3.579660859999999900e+01 -7.890536249999999541e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.345000000000000000e+03 2.039500000000000000e+04 2.005000000000000000e+03 5.000000000000000000e+00 1.260000000000000000e+02 2.500000000000000000e+01 2.850556080000000136e+01 -8.146664780000000405e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.099000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.570000000000000000e+02 4.450000000000000000e+02 7.000000000000000000e+02 2.576275199999999899e+01 -8.019466899999999043e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.012000000000000000e+03 6.969000000000000000e+03 2.014000000000000000e+03 5.100000000000000000e+01 4.450000000000000000e+02 1.022000000000000000e+03 2.576037200000000027e+01 -8.019019699999999773e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.440000000000000000e+03 9.000000000000000000e+03 1.988000000000000000e+03 4.000000000000000000e+01 3.480000000000000000e+02 2.100000000000000000e+02 3.364056389999999652e+01 -1.176266177000000113e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.802000000000000000e+03 3.998800000000000000e+04 2.016000000000000000e+03 3.490000000000000000e+02 1.840000000000000000e+02 2.800000000000000000e+02 3.591821500000000356e+01 -7.868579900000000293e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.748000000000000000e+03 6.969000000000000000e+03 1.945000000000000000e+03 1.110000000000000000e+02 2.800000000000000000e+02 2.800000000000000000e+02 2.587796739999999929e+01 -8.019250169999999400e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.480000000000000000e+02 6.969000000000000000e+03 1.980000000000000000e+03 5.100000000000000000e+01 1.950000000000000000e+02 2.650000000000000000e+02 2.568776789999999721e+01 -8.044518300000000011e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.200000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.860000000000000000e+02 3.500000000000000000e+02 2.800000000000000000e+02 2.576844750000000062e+01 -8.019134870000000603e+01 3.000000000000000000e+05 +2.000000000000000000e+00 9.310000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 1.830000000000000000e+02 4.780000000000000000e+02 5.610000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.132000000000000000e+03 6.969000000000000000e+03 1.966000000000000000e+03 1.210000000000000000e+02 1.320000000000000000e+02 3.340000000000000000e+02 2.594547599999999932e+01 -8.017153990000001329e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.792000000000000000e+03 2.376000000000000000e+03 1.980000000000000000e+03 3.000000000000000000e+01 3.240000000000000000e+02 2.800000000000000000e+02 4.060454500000000166e+01 -7.416081800000000612e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.764000000000000000e+03 2.300000000000000000e+04 2.000000000000000000e+03 1.300000000000000000e+01 8.230000000000000000e+02 2.800000000000000000e+02 3.355096389999999928e+01 -1.177598490999999967e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.505000000000000000e+03 6.969000000000000000e+03 2.005000000000000000e+03 9.300000000000000000e+01 6.310000000000000000e+02 9.600000000000000000e+02 2.576905069999999753e+01 -8.018702700000000050e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.381000000000000000e+03 1.170000000000000000e+04 1.977000000000000000e+03 2.110000000000000000e+02 1.740000000000000000e+02 7.900000000000000000e+01 2.566868560000000343e+01 -8.040927390000000230e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.215000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 8.600000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 3.031493499999999841e+01 -8.172351299999999696e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.621000000000000000e+03 6.969000000000000000e+03 1.995000000000000000e+03 6.300000000000000000e+01 7.090000000000000000e+02 4.530000000000000000e+02 3.360345439999999684e+01 -1.178256128999999959e+02 3.000000000000000000e+05 +2.000000000000000000e+00 8.000000000000000000e+02 6.969000000000000000e+03 1.974000000000000000e+03 2.530000000000000000e+02 1.380000000000000000e+02 2.250000000000000000e+02 2.558224099999999979e+01 -8.037605999999999540e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.360000000000000000e+03 2.000000000000000000e+03 1.989000000000000000e+03 3.500000000000000000e+01 6.780000000000000000e+02 2.800000000000000000e+02 4.061896610000000152e+01 -7.400798950000000787e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.404000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.300000000000000000e+01 5.560000000000000000e+02 9.500000000000000000e+02 2.576405499999999904e+01 -8.019230129999999690e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.788000000000000000e+03 2.907000000000000000e+03 2.007000000000000000e+03 4.200000000000000000e+01 1.310000000000000000e+02 8.600000000000000000e+01 2.851945800000000020e+01 -8.115493800000000135e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.630000000000000000e+03 7.201000000000000000e+03 1.954000000000000000e+03 1.800000000000000000e+02 3.930000000000000000e+02 2.800000000000000000e+02 3.380887979999999260e+01 -1.179572398999999905e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.220000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 4.920000000000000000e+02 1.300000000000000000e+02 5.000000000000000000e+02 2.595403380000000126e+01 -8.018259790000000464e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.168000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.820000000000000000e+02 3.380000000000000000e+02 9.710000000000000000e+02 2.579407689999999675e+01 -8.018707059999998421e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.489000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.500000000000000000e+02 2.800000000000000000e+02 2.843310150000000291e+01 -8.155989179999998839e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.773000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.110000000000000000e+02 2.800000000000000000e+02 2.841970799999999997e+01 -8.119032070000000090e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.906000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.000000000000000000e+00 1.790000000000000000e+02 2.500000000000000000e+01 3.382084499999999849e+01 -8.437140999999999735e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.029000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 2.840428689999999889e+01 -8.124617750000000171e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.008000000000000000e+03 4.000000000000000000e+03 1.955000000000000000e+03 9.000000000000000000e+00 6.240000000000000000e+02 2.800000000000000000e+02 4.068215099999999751e+01 -7.380053000000000907e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.877000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.530000000000000000e+02 2.800000000000000000e+02 3.014466280000000253e+01 -8.164342490000001362e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.400000000000000000e+03 4.300000000000000000e+03 1.965000000000000000e+03 2.100000000000000000e+01 3.540000000000000000e+02 2.800000000000000000e+02 4.055282220000000137e+01 -7.417113080000000025e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.198000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.590000000000000000e+02 1.167000000000000000e+03 2.592000000000000000e+03 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.279000000000000000e+03 2.178000000000000000e+04 1.962000000000000000e+03 2.490000000000000000e+02 3.950000000000000000e+02 2.800000000000000000e+02 3.385843679999999267e+01 -8.434020300000000248e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.523000000000000000e+03 8.712000000000000000e+03 2.017000000000000000e+03 6.100000000000000000e+01 2.840000000000000000e+02 2.800000000000000000e+02 3.375425429999999238e+01 -8.430844720000000336e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.830000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 7.000000000000000000e+00 4.090000000000000000e+02 3.630000000000000000e+02 3.377808710000000758e+01 -8.438389670000000820e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.013000000000000000e+03 1.974100000000000000e+04 1.925000000000000000e+03 2.800000000000000000e+01 2.590000000000000000e+02 2.800000000000000000e+02 2.859066550000000362e+01 -8.138532840000000590e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.220000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.290000000000000000e+02 1.060000000000000000e+02 2.800000000000000000e+02 3.031738499999999803e+01 -8.156275359999999353e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.211000000000000000e+03 6.969000000000000000e+03 1.903000000000000000e+03 1.700000000000000000e+02 1.240000000000000000e+02 7.330000000000000000e+02 3.930217340000000092e+01 -7.661572220000000755e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.670000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 1.480000000000000000e+02 2.240000000000000000e+02 2.800000000000000000e+02 2.580842939999999786e+01 -8.023799100000000806e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.113000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.580000000000000000e+02 2.800000000000000000e+02 3.578513140000000448e+01 -7.890272519999999190e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.511000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.620000000000000000e+02 2.800000000000000000e+02 3.391748889999999506e+01 -8.429566450000000088e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.338000000000000000e+03 6.969000000000000000e+03 2.003000000000000000e+03 1.160000000000000000e+02 2.480000000000000000e+02 5.990000000000000000e+02 3.032690410000000369e+01 -8.166372579999999459e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.878000000000000000e+03 1.306800000000000000e+04 1.984000000000000000e+03 1.600000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 3.577789650000000421e+01 -7.881780159999999569e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.350000000000000000e+03 6.729000000000000000e+03 2.017000000000000000e+03 1.630000000000000000e+02 1.170000000000000000e+02 2.800000000000000000e+02 2.853451199999999943e+01 -8.144558399999999665e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.340000000000000000e+03 1.134200000000000000e+04 1.952000000000000000e+03 1.310000000000000000e+02 5.090000000000000000e+02 2.800000000000000000e+02 2.574437410000000170e+01 -8.022030190000000971e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.710000000000000000e+03 6.969000000000000000e+03 1.939000000000000000e+03 6.100000000000000000e+01 2.720000000000000000e+02 2.800000000000000000e+02 3.020159000000000304e+01 -8.159112799999999766e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.312000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.250000000000000000e+02 1.720000000000000000e+02 4.500000000000000000e+01 2.567785069999999692e+01 -8.047171550000000195e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.661000000000000000e+03 6.534000000000000000e+03 2.017000000000000000e+03 2.420000000000000000e+02 1.650000000000000000e+02 1.020000000000000000e+02 3.577463902732120715e+01 -7.887400872652391115e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.644000000000000000e+03 6.098000000000000000e+03 2.007000000000000000e+03 1.000000000000000000e+00 8.400000000000000000e+01 5.000000000000000000e+01 3.586529689999999704e+01 -7.851961000000000013e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.176000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.420000000000000000e+02 2.590000000000000000e+02 7.440000000000000000e+02 2.577653410000000278e+01 -8.018886650000000316e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.500000000000000000e+03 3.123000000000000000e+03 1.901000000000000000e+03 3.000000000000000000e+01 4.530000000000000000e+02 2.800000000000000000e+02 4.086979799999999585e+01 -7.388729499999999462e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.250000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 5.000000000000000000e+00 3.450000000000000000e+02 5.850000000000000000e+02 2.576199079999999952e+01 -8.019041870000000927e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.050000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.910000000000000000e+02 2.800000000000000000e+02 3.391473570000000137e+01 -8.438426719999999648e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.293000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 8.000000000000000000e+00 7.830000000000000000e+02 1.383000000000000000e+03 2.576932399999999745e+01 -8.018376899999999807e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.027000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 5.800000000000000000e+01 3.430000000000000000e+02 1.102000000000000000e+03 3.384531619999999918e+01 -8.437153719999999169e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.252000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 2.000000000000000000e+00 3.750000000000000000e+02 4.940000000000000000e+02 3.355998300000000256e+01 -1.176339720000000000e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.752000000000000000e+03 5.270000000000000000e+03 2.008000000000000000e+03 3.920000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.934704749999999507e+01 -7.664119859999999562e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.828000000000000000e+03 1.964500000000000000e+04 2.003000000000000000e+03 1.400000000000000000e+01 1.180000000000000000e+02 2.800000000000000000e+02 3.743240689999999660e+01 -7.757127800000000661e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.689000000000000000e+03 4.800000000000000000e+03 1.967000000000000000e+03 4.000000000000000000e+01 4.000000000000000000e+02 2.800000000000000000e+02 3.385707760000000377e+01 -1.180397035999999815e+02 3.000000000000000000e+05 +1.500000000000000000e+00 8.650000000000000000e+02 6.969000000000000000e+03 2.008000000000000000e+03 6.400000000000000000e+01 2.890000000000000000e+02 4.500000000000000000e+02 2.577653410000000278e+01 -8.018886650000000316e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.468000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.720000000000000000e+02 2.800000000000000000e+02 2.836996119999999522e+01 -8.123241350000000693e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.322000000000000000e+03 1.328500000000000000e+04 2.017000000000000000e+03 1.680000000000000000e+02 2.800000000000000000e+02 2.800000000000000000e+02 3.598968200000000195e+01 -7.893210500000000707e+01 3.000000000000000000e+05 +5.000000000000000000e+00 5.522000000000000000e+03 2.265100000000000000e+04 2.005000000000000000e+03 5.600000000000000000e+01 1.360000000000000000e+02 5.400000000000000000e+01 3.591188280000000077e+01 -7.900769900000000234e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.060000000000000000e+03 6.969000000000000000e+03 1.978000000000000000e+03 8.500000000000000000e+01 1.890000000000000000e+02 3.510000000000000000e+02 2.567144150000000025e+01 -8.037495789999999829e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.542000000000000000e+03 2.125000000000000000e+03 1.896000000000000000e+03 3.070000000000000000e+02 1.850000000000000000e+02 2.800000000000000000e+02 3.752723320000000484e+01 -7.741337380000000223e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.094000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.200000000000000000e+02 3.440000000000000000e+02 1.840000000000000000e+02 3.884425310000000309e+01 -7.730454319999999768e+01 3.000000000000000000e+05 +2.250000000000000000e+00 1.223000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.500000000000000000e+01 4.480000000000000000e+02 2.480000000000000000e+02 3.352647039999999379e+01 -1.176288155999999958e+02 3.000000000000000000e+05 +5.000000000000000000e+00 4.145000000000000000e+03 1.045400000000000000e+04 2.005000000000000000e+03 5.000000000000000000e+00 1.450000000000000000e+02 6.900000000000000000e+01 3.592587350000000157e+01 -7.855991889999999955e+01 3.000000000000000000e+05 +1.500000000000000000e+00 9.920000000000000000e+02 1.953000000000000000e+03 1.920000000000000000e+03 3.000000000000000000e+01 8.450000000000000000e+02 2.800000000000000000e+02 4.063259990000000244e+01 -7.401967199999999991e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.880000000000000000e+02 6.969000000000000000e+03 1.964000000000000000e+03 1.090000000000000000e+02 9.400000000000000000e+01 3.020000000000000000e+02 2.592972650000000101e+01 -8.017369259999999542e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.919000000000000000e+03 3.540000000000000000e+03 1.953000000000000000e+03 1.590000000000000000e+02 1.199000000000000000e+03 2.800000000000000000e+02 3.360082929999999379e+01 -1.178692450999999863e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.315000000000000000e+03 6.969000000000000000e+03 1.969000000000000000e+03 7.000000000000000000e+00 8.100000000000000000e+01 2.800000000000000000e+02 2.595097269999999767e+01 -8.016629640000000734e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.509000000000000000e+03 6.828000000000000000e+03 1.957000000000000000e+03 2.200000000000000000e+01 9.900000000000000000e+01 2.800000000000000000e+02 2.850138039999999862e+01 -8.140083059999999193e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.020000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.510000000000000000e+02 1.110000000000000000e+02 1.400000000000000000e+01 3.045457100000000139e+01 -8.175923099999999977e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.257000000000000000e+03 1.938400000000000000e+04 1.998000000000000000e+03 1.210000000000000000e+02 7.900000000000000000e+01 6.300000000000000000e+01 3.372269420000000650e+01 -8.454633940000000791e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.920000000000000000e+02 3.600000000000000000e+03 1.957000000000000000e+03 5.000000000000000000e+00 1.700000000000000000e+02 2.800000000000000000e+02 2.583631960000000305e+01 -8.022762199999999666e+01 3.000000000000000000e+05 +2.250000000000000000e+00 2.322000000000000000e+03 1.800000000000000000e+03 1.910000000000000000e+03 7.700000000000000000e+01 4.520000000000000000e+02 2.800000000000000000e+02 4.065104039999999941e+01 -7.394841569999999820e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.660000000000000000e+02 6.969000000000000000e+03 1.966000000000000000e+03 9.000000000000000000e+00 3.530000000000000000e+02 4.070000000000000000e+02 4.065701789999999960e+01 -7.387815400000000920e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.920000000000000000e+03 2.687600000000000000e+04 1.972000000000000000e+03 8.200000000000000000e+01 1.130000000000000000e+02 2.800000000000000000e+02 3.748969920000000400e+01 -7.761443330000000174e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.886000000000000000e+03 8.000000000000000000e+03 1.995000000000000000e+03 5.400000000000000000e+01 4.330000000000000000e+02 2.800000000000000000e+02 3.387194600000000122e+01 -1.178539164000000170e+02 3.000000000000000000e+05 +2.000000000000000000e+00 5.830000000000000000e+02 5.830000000000000000e+02 1.985000000000000000e+03 1.000000000000000000e+00 2.320000000000000000e+02 5.060000000000000000e+02 2.845662029999999731e+01 -8.146806359999999358e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.000000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 4.900000000000000000e+01 1.980000000000000000e+02 2.800000000000000000e+02 4.073484799999999950e+01 -7.382325120000000140e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.035000000000000000e+03 1.585700000000000000e+04 1.979000000000000000e+03 1.000000000000000000e+00 2.800000000000000000e+02 2.800000000000000000e+02 2.564974460000000178e+01 -8.037897879999999873e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.508000000000000000e+03 2.600000000000000000e+03 1.925000000000000000e+03 2.000000000000000000e+00 2.690000000000000000e+02 2.800000000000000000e+02 4.069586199999999820e+01 -7.378996500000000935e+01 3.000000000000000000e+05 +5.500000000000000000e+00 4.700000000000000000e+03 1.751100000000000000e+04 2.018000000000000000e+03 3.700000000000000000e+01 2.550000000000000000e+02 2.800000000000000000e+02 3.388707660000000033e+01 -8.436385740000000055e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.281000000000000000e+03 6.250000000000000000e+03 1.925000000000000000e+03 2.180000000000000000e+02 3.710000000000000000e+02 2.800000000000000000e+02 2.583473850000000027e+01 -8.018670009999999593e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.080000000000000000e+03 2.000000000000000000e+03 1.910000000000000000e+03 9.000000000000000000e+00 9.720000000000000000e+02 2.800000000000000000e+02 4.061571690000000245e+01 -7.394740099999999927e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.012000000000000000e+03 7.500000000000000000e+03 1.957000000000000000e+03 1.410000000000000000e+02 2.460000000000000000e+02 2.800000000000000000e+02 2.597164180000000044e+01 -8.018199219999999627e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.840000000000000000e+03 1.924000000000000000e+03 1.989000000000000000e+03 1.000000000000000000e+02 6.460000000000000000e+02 2.800000000000000000e+02 4.062013110000000182e+01 -7.402646459999999706e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.802000000000000000e+03 1.663900000000000000e+04 2.003000000000000000e+03 1.300000000000000000e+01 1.510000000000000000e+02 8.300000000000000000e+01 3.578042969999999912e+01 -7.905993740000000969e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.720000000000000000e+03 1.955800000000000000e+04 1.959000000000000000e+03 8.900000000000000000e+01 1.690000000000000000e+02 2.800000000000000000e+02 3.393538050000000084e+01 -8.440204109999999105e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.087000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.800000000000000000e+01 3.220000000000000000e+02 6.160000000000000000e+02 2.577009130000000070e+01 -8.019466149999999516e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.600000000000000000e+02 6.969000000000000000e+03 1.920000000000000000e+03 8.400000000000000000e+01 7.200000000000000000e+01 2.800000000000000000e+02 3.929650139999999681e+01 -7.657312910000000272e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.666000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.560000000000000000e+02 2.800000000000000000e+02 3.741635899999999992e+01 -7.745886999999999034e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.944000000000000000e+03 6.115000000000000000e+03 1.899000000000000000e+03 2.300000000000000000e+01 4.120000000000000000e+02 2.800000000000000000e+02 4.085457970000000216e+01 -7.379088199999999631e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.472000000000000000e+03 6.969000000000000000e+03 2.013000000000000000e+03 2.600000000000000000e+01 6.110000000000000000e+02 2.750000000000000000e+02 3.365195260000000133e+01 -1.179814429000000047e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.642000000000000000e+03 8.750000000000000000e+03 2.018000000000000000e+03 8.200000000000000000e+01 1.600000000000000000e+02 1.300000000000000000e+02 2.842809000000000097e+01 -8.122495999999999583e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.192000000000000000e+03 6.969000000000000000e+03 1.993000000000000000e+03 2.000000000000000000e+00 1.360000000000000000e+02 2.800000000000000000e+02 3.032352709999999973e+01 -8.159268699999999797e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.571000000000000000e+03 1.316900000000000000e+04 1.925000000000000000e+03 9.000000000000000000e+01 2.820000000000000000e+02 2.800000000000000000e+02 2.858515519999999555e+01 -8.137338819999999373e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.275000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 5.800000000000000000e+01 1.760000000000000000e+02 2.800000000000000000e+02 3.371298370000000233e+01 -8.436322079999999346e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.495000000000000000e+03 6.969000000000000000e+03 2.016000000000000000e+03 1.220000000000000000e+02 1.090000000000000000e+02 4.200000000000000000e+01 3.052894799999999975e+01 -8.161637500000000500e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.512000000000000000e+03 6.969000000000000000e+03 1.994000000000000000e+03 9.100000000000000000e+01 1.500000000000000000e+02 2.900000000000000000e+01 3.018333099999999902e+01 -8.163958599999999421e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.509000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.720000000000000000e+02 2.800000000000000000e+02 2.840854000000000212e+01 -8.150430699999999717e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.302000000000000000e+03 1.040000000000000000e+04 1.983000000000000000e+03 5.000000000000000000e+00 7.590000000000000000e+02 3.050000000000000000e+02 3.362952310000000011e+01 -1.178645164000000136e+02 3.000000000000000000e+05 +4.750000000000000000e+00 4.048000000000000000e+03 7.000000000000000000e+03 2.005000000000000000e+03 5.800000000000000000e+01 1.157000000000000000e+03 6.150000000000000000e+02 3.357293099999999697e+01 -1.178322879999999913e+02 3.000000000000000000e+05 +2.000000000000000000e+00 9.600000000000000000e+02 6.969000000000000000e+03 1.986000000000000000e+03 1.680000000000000000e+02 1.670000000000000000e+02 2.800000000000000000e+02 3.351894899999999922e+01 -1.177557872999999944e+02 3.000000000000000000e+05 +4.500000000000000000e+00 4.314000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 1.200000000000000000e+01 2.980000000000000000e+02 2.750000000000000000e+02 3.025312600000000174e+01 -8.144392799999999966e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.066000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.920000000000000000e+02 2.800000000000000000e+02 3.582929539999999946e+01 -7.910215240000000847e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.567000000000000000e+03 4.800000000000000000e+03 1.983000000000000000e+03 1.000000000000000000e+00 4.210000000000000000e+02 2.800000000000000000e+02 3.390488140000000072e+01 -1.177722014000000001e+02 3.000000000000000000e+05 +1.500000000000000000e+00 7.800000000000000000e+02 1.827000000000000000e+03 1.923000000000000000e+03 6.700000000000000000e+01 1.280000000000000000e+02 2.800000000000000000e+02 3.922414500000000004e+01 -7.658698499999999854e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.473000000000000000e+03 6.969000000000000000e+03 1.977000000000000000e+03 1.300000000000000000e+02 1.190000000000000000e+02 2.800000000000000000e+02 3.362033740000000392e+01 -1.176977522000000107e+02 3.000000000000000000e+05 +2.500000000000000000e+00 2.160000000000000000e+03 2.834000000000000000e+03 1.999000000000000000e+03 4.700000000000000000e+01 3.380000000000000000e+02 2.800000000000000000e+02 4.054704500000000422e+01 -7.421591700000000458e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.500000000000000000e+02 8.490000000000000000e+02 1.955000000000000000e+03 2.300000000000000000e+01 2.350000000000000000e+02 2.800000000000000000e+02 4.088314669999999751e+01 -7.392085400000000561e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.794000000000000000e+03 3.964000000000000000e+04 1.989000000000000000e+03 3.010000000000000000e+02 2.440000000000000000e+02 2.800000000000000000e+02 2.555722730000000098e+01 -8.048980109999999399e+01 3.000000000000000000e+05 +2.750000000000000000e+00 2.428000000000000000e+03 6.689000000000000000e+03 2.016000000000000000e+03 3.240000000000000000e+02 3.910000000000000000e+02 3.060000000000000000e+02 3.353627900000000039e+01 -1.176041580000000124e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.980000000000000000e+03 1.120000000000000000e+03 1.920000000000000000e+03 6.000000000000000000e+00 1.740000000000000000e+02 2.800000000000000000e+02 3.928554979999999830e+01 -7.657088279999999259e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.116000000000000000e+03 6.969000000000000000e+03 2.004000000000000000e+03 1.140000000000000000e+02 3.220000000000000000e+02 6.310000000000000000e+02 2.576205519999999893e+01 -8.019351729999999634e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.700000000000000000e+03 1.876000000000000000e+03 1.974000000000000000e+03 2.700000000000000000e+01 3.940000000000000000e+02 3.990000000000000000e+02 3.342659989999999937e+01 -1.176092811999999981e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.152000000000000000e+03 4.428100000000000000e+04 2.000000000000000000e+03 5.000000000000000000e+00 6.500000000000000000e+01 2.800000000000000000e+02 2.856443740000000275e+01 -8.109678529999999341e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.274000000000000000e+03 6.969000000000000000e+03 2.015000000000000000e+03 1.300000000000000000e+01 3.890000000000000000e+02 2.800000000000000000e+02 2.576443980000000167e+01 -8.019525020000000382e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.132000000000000000e+03 4.356000000000000000e+03 2.007000000000000000e+03 2.200000000000000000e+01 1.910000000000000000e+02 8.200000000000000000e+01 3.594389410000000140e+01 -7.908959360000000061e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.347000000000000000e+03 1.132560000000000000e+05 1.956000000000000000e+03 3.290000000000000000e+02 1.000000000000000000e+02 2.800000000000000000e+02 3.366461100000000073e+01 -8.455119399999999530e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.270000000000000000e+02 6.969000000000000000e+03 2.006000000000000000e+03 4.800000000000000000e+01 4.130000000000000000e+02 4.430000000000000000e+02 2.576782019999999918e+01 -8.019607530000000395e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.449000000000000000e+03 1.306000000000000000e+03 1.970000000000000000e+03 3.700000000000000000e+01 2.800000000000000000e+01 2.800000000000000000e+02 3.360116699999999668e+01 -8.447550300000000334e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.660000000000000000e+03 5.050000000000000000e+03 1.961000000000000000e+03 2.150000000000000000e+02 6.110000000000000000e+02 2.800000000000000000e+02 3.362611479999999631e+01 -1.179219300999999973e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.488000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 3.300000000000000000e+01 5.340000000000000000e+02 8.800000000000000000e+02 2.576856400000000136e+01 -8.018644499999999198e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.000000000000000000e+03 2.916000000000000000e+03 2.007000000000000000e+03 2.000000000000000000e+01 4.750000000000000000e+02 2.800000000000000000e+02 4.062280399999999503e+01 -7.390736800000000528e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.121000000000000000e+03 6.969000000000000000e+03 1.985000000000000000e+03 3.600000000000000000e+01 1.330000000000000000e+02 3.400000000000000000e+02 2.597273410000000027e+01 -8.018492150000000152e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.977000000000000000e+03 3.223400000000000000e+04 2.018000000000000000e+03 1.130000000000000000e+02 1.720000000000000000e+02 4.800000000000000000e+01 3.605040000000000333e+01 -7.895610000000000639e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.137000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.900000000000000000e+01 8.790000000000000000e+02 8.980000000000000000e+02 2.580505249999999862e+01 -8.018558120000000145e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.490000000000000000e+02 6.969000000000000000e+03 1.951000000000000000e+03 7.900000000000000000e+01 6.800000000000000000e+01 2.800000000000000000e+02 3.039465630000000118e+01 -8.174573039999999935e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.420000000000000000e+03 1.437400000000000000e+04 1.950000000000000000e+03 3.530000000000000000e+02 2.520000000000000000e+02 2.800000000000000000e+02 3.581006620000000140e+01 -7.867575069999999471e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.744000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 9.800000000000000000e+01 1.370000000000000000e+02 4.200000000000000000e+01 3.018149999999999977e+01 -8.159090000000000487e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.000000000000000000e+02 6.969000000000000000e+03 1.958000000000000000e+03 9.000000000000000000e+01 2.110000000000000000e+02 2.800000000000000000e+02 4.090855200000000025e+01 -7.389691600000000449e+01 3.000000000000000000e+05 +7.500000000000000000e+00 6.883000000000000000e+03 1.655280000000000000e+05 2.004000000000000000e+03 1.260000000000000000e+02 5.800000000000000000e+02 2.800000000000000000e+02 3.389932570000000567e+01 -8.443178509999998482e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.210000000000000000e+03 3.200000000000000000e+03 1.955000000000000000e+03 6.900000000000000000e+01 7.020000000000000000e+02 2.800000000000000000e+02 4.076604499999999831e+01 -7.379252199999999107e+01 3.000000000000000000e+05 +1.500000000000000000e+00 6.690000000000000000e+02 6.969000000000000000e+03 1.983000000000000000e+03 1.400000000000000000e+01 2.240000000000000000e+02 1.250000000000000000e+02 2.575149599999999950e+01 -8.036686299999999505e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.283000000000000000e+03 1.012600000000000000e+04 1.953000000000000000e+03 4.000000000000000000e+00 1.240000000000000000e+02 2.800000000000000000e+02 2.856131200000000092e+01 -8.145347599999999488e+01 3.000000000000000000e+05 +9.000000000000000000e+00 4.811000000000000000e+03 8.276000000000000000e+03 1.977000000000000000e+03 2.500000000000000000e+02 3.430000000000000000e+02 2.800000000000000000e+02 3.370574270000000183e+01 -1.179861405000000047e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.511000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 9.600000000000000000e+01 2.800000000000000000e+02 3.035943319999999801e+01 -8.156090319999999849e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.097000000000000000e+03 6.450000000000000000e+03 1.948000000000000000e+03 4.900000000000000000e+01 2.780000000000000000e+02 2.800000000000000000e+02 2.576900350000000017e+01 -8.029743570000000830e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.163000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 3.090000000000000000e+02 3.650000000000000000e+02 2.800000000000000000e+02 2.581292410000000004e+01 -8.019214879999999823e+01 3.000000000000000000e+05 +1.000000000000000000e+00 5.400000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 5.230000000000000000e+02 4.980000000000000000e+02 3.200000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.501000000000000000e+03 6.969000000000000000e+03 1.980000000000000000e+03 7.600000000000000000e+01 9.300000000000000000e+01 2.800000000000000000e+02 3.019465569999999843e+01 -8.176338479999999720e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.061000000000000000e+03 6.000000000000000000e+03 1.936000000000000000e+03 1.260000000000000000e+02 3.050000000000000000e+02 2.800000000000000000e+02 2.584158000000000044e+01 -8.018063399999999774e+01 3.000000000000000000e+05 +1.750000000000000000e+00 1.700000000000000000e+03 6.969000000000000000e+03 1.977000000000000000e+03 1.970000000000000000e+02 3.520000000000000000e+02 6.440000000000000000e+02 3.360420640000000247e+01 -1.177339908999999949e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.292000000000000000e+03 2.000000000000000000e+03 1.925000000000000000e+03 2.200000000000000000e+01 6.180000000000000000e+02 2.800000000000000000e+02 4.062881320000000329e+01 -7.394529389999999580e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.500000000000000000e+02 6.969000000000000000e+03 2.001000000000000000e+03 5.500000000000000000e+01 4.400000000000000000e+02 6.420000000000000000e+02 2.576218380000000252e+01 -8.018898859999998763e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.208000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.900000000000000000e+02 2.800000000000000000e+02 3.595720000000000027e+01 -7.867849999999999966e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.031000000000000000e+03 2.199800000000000000e+04 2.004000000000000000e+03 2.700000000000000000e+01 2.980000000000000000e+02 2.800000000000000000e+02 3.385583579999999415e+01 -1.177569415999999904e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.647000000000000000e+03 6.969000000000000000e+03 2.009000000000000000e+03 6.400000000000000000e+01 4.240000000000000000e+02 1.315000000000000000e+03 2.578517739999999847e+01 -8.019007829999999615e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.460000000000000000e+03 6.969000000000000000e+03 1.940000000000000000e+03 3.520000000000000000e+02 7.100000000000000000e+01 2.800000000000000000e+02 3.922457509999999559e+01 -7.659125809999999035e+01 3.000000000000000000e+05 +6.500000000000000000e+00 7.191000000000000000e+03 1.524600000000000000e+05 1.975000000000000000e+03 2.200000000000000000e+01 3.690000000000000000e+02 2.800000000000000000e+02 3.383553120000000547e+01 -8.444438359999999477e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.627000000000000000e+03 6.037000000000000000e+03 1.984000000000000000e+03 1.660000000000000000e+02 1.690000000000000000e+02 2.800000000000000000e+02 2.576249350000000149e+01 -8.034265429999999242e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.416000000000000000e+03 1.089000000000000000e+04 2.018000000000000000e+03 5.200000000000000000e+01 2.070000000000000000e+02 2.100000000000000000e+01 3.586794460000000129e+01 -7.872921429999999532e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.010000000000000000e+02 6.969000000000000000e+03 2.015000000000000000e+03 7.700000000000000000e+01 4.990000000000000000e+02 2.800000000000000000e+02 2.576322399999999746e+01 -8.019343200000000138e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.400000000000000000e+03 2.000000000000000000e+03 1.935000000000000000e+03 1.200000000000000000e+02 5.570000000000000000e+02 2.800000000000000000e+02 4.076396499999999889e+01 -7.388470200000000432e+01 3.000000000000000000e+05 +4.000000000000000000e+00 2.564000000000000000e+03 1.466800000000000000e+04 1.926000000000000000e+03 8.500000000000000000e+01 7.020000000000000000e+02 2.800000000000000000e+02 2.585287800000000047e+01 -8.017535500000001036e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.662000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.000000000000000000e+00 4.150000000000000000e+02 9.400000000000000000e+02 2.577009130000000070e+01 -8.019466149999999516e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.570000000000000000e+02 2.852000000000000000e+03 1.961000000000000000e+03 4.200000000000000000e+01 7.570000000000000000e+02 2.800000000000000000e+02 3.379307150000000348e+01 -1.178599622999999923e+02 3.000000000000000000e+05 +3.000000000000000000e+00 1.938000000000000000e+03 2.400000000000000000e+03 1.925000000000000000e+03 1.000000000000000000e+00 7.120000000000000000e+02 2.800000000000000000e+02 4.063514039999999738e+01 -7.402886469999999974e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.030000000000000000e+03 5.500000000000000000e+03 2.004000000000000000e+03 2.090000000000000000e+02 1.120000000000000000e+02 9.500000000000000000e+01 2.853131760000000483e+01 -8.115659599999999330e+01 3.000000000000000000e+05 +4.000000000000000000e+00 4.133000000000000000e+03 1.776900000000000000e+04 1.983000000000000000e+03 5.000000000000000000e+00 2.010000000000000000e+02 2.800000000000000000e+02 2.565184379999999820e+01 -8.036538649999999961e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.256000000000000000e+03 6.219000000000000000e+03 1.955000000000000000e+03 2.000000000000000000e+01 1.860000000000000000e+02 2.800000000000000000e+02 2.853130609999999834e+01 -8.136271220000000426e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.390000000000000000e+03 8.871000000000000000e+03 2.003000000000000000e+03 2.000000000000000000e+00 7.640000000000000000e+02 4.780000000000000000e+02 3.362568499999999716e+01 -1.178185368999999980e+02 3.000000000000000000e+05 +4.000000000000000000e+00 3.780000000000000000e+03 3.484000000000000000e+03 2.003000000000000000e+03 1.000000000000000000e+00 1.270000000000000000e+02 4.260000000000000000e+02 3.590711190000000386e+01 -7.879173579999999788e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.904000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 2.000000000000000000e+02 2.800000000000000000e+02 3.582704400000000078e+01 -7.912418199999999047e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.880000000000000000e+03 2.736000000000000000e+03 1.960000000000000000e+03 5.800000000000000000e+01 4.650000000000000000e+02 2.800000000000000000e+02 4.061020200000000102e+01 -7.397600099999999657e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.600000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 8.000000000000000000e+00 1.310000000000000000e+02 1.300000000000000000e+01 3.017100139999999797e+01 -8.163532859999999403e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.550000000000000000e+02 6.969000000000000000e+03 1.953000000000000000e+03 2.200000000000000000e+01 6.610000000000000000e+02 2.800000000000000000e+02 4.064753590000000116e+01 -7.397551889999999730e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.303000000000000000e+03 6.969000000000000000e+03 2.002000000000000000e+03 4.570000000000000000e+02 4.060000000000000000e+02 2.800000000000000000e+02 2.576856400000000136e+01 -8.018644499999999198e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.940000000000000000e+03 6.969000000000000000e+03 2.010000000000000000e+03 4.900000000000000000e+01 2.130000000000000000e+02 2.800000000000000000e+02 3.928054739999999612e+01 -7.657083309999998733e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.160000000000000000e+03 6.969000000000000000e+03 1.930000000000000000e+03 1.250000000000000000e+02 9.900000000000000000e+01 2.800000000000000000e+02 3.932377329999999205e+01 -7.656920970000000182e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.006000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 9.300000000000000000e+01 3.370000000000000000e+02 8.150000000000000000e+02 2.577698999999999785e+01 -8.018879799999999136e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.179000000000000000e+03 1.035000000000000000e+04 1.987000000000000000e+03 3.300000000000000000e+01 3.940000000000000000e+02 4.000000000000000000e+01 3.383467729999999563e+01 -1.178255328000000048e+02 3.000000000000000000e+05 +1.000000000000000000e+00 9.520000000000000000e+02 6.969000000000000000e+03 1.945000000000000000e+03 2.900000000000000000e+01 1.200000000000000000e+02 2.800000000000000000e+02 3.031544550000000271e+01 -8.158378359999998963e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.000000000000000000e+03 3.920000000000000000e+03 2.013000000000000000e+03 1.300000000000000000e+01 1.470000000000000000e+02 8.800000000000000000e+01 3.583282529999999610e+01 -7.891200539999999819e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.800000000000000000e+03 8.102100000000000000e+04 1.980000000000000000e+03 3.270000000000000000e+02 1.750000000000000000e+02 2.800000000000000000e+02 2.557870450000000062e+01 -8.048407559999999705e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.135000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.250000000000000000e+02 1.210000000000000000e+02 5.600000000000000000e+01 3.021819686889699952e+01 -8.180525207519499986e+01 3.000000000000000000e+05 +8.000000000000000000e+00 7.323000000000000000e+03 1.510800000000000000e+04 1.963000000000000000e+03 1.130000000000000000e+02 3.480000000000000000e+02 2.800000000000000000e+02 3.393101160000000505e+01 -1.179594535999999891e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.032000000000000000e+03 6.969000000000000000e+03 1.972000000000000000e+03 5.700000000000000000e+01 3.680000000000000000e+02 4.600000000000000000e+02 3.365911939999999447e+01 -1.179756729000000064e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.836000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.480000000000000000e+02 2.800000000000000000e+02 3.591563499999999465e+01 -7.881206099999999992e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.119000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.230000000000000000e+02 2.800000000000000000e+02 2.560333649999999750e+01 -8.043689879999999448e+01 3.000000000000000000e+05 +6.000000000000000000e+00 7.074000000000000000e+03 3.690000000000000000e+04 2.017000000000000000e+03 4.000000000000000000e+01 2.810000000000000000e+02 2.800000000000000000e+02 2.570731889999999709e+01 -8.035644259999999406e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.179000000000000000e+03 7.500000000000000000e+03 1.939000000000000000e+03 7.000000000000000000e+00 3.940000000000000000e+02 2.800000000000000000e+02 2.584090610000000154e+01 -8.018120749999999930e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.000000000000000000e+03 9.147000000000000000e+03 2.018000000000000000e+03 5.000000000000000000e+01 1.050000000000000000e+02 1.500000000000000000e+02 3.586530349999999601e+01 -7.851791819999999689e+01 3.000000000000000000e+05 +1.000000000000000000e+00 9.770000000000000000e+02 7.500000000000000000e+03 1.980000000000000000e+03 3.060000000000000000e+02 3.830000000000000000e+02 2.800000000000000000e+02 2.573876660000000172e+01 -8.029812130000000536e+01 3.000000000000000000e+05 +4.500000000000000000e+00 4.170000000000000000e+03 9.500000000000000000e+03 2.017000000000000000e+03 6.400000000000000000e+01 4.540000000000000000e+02 2.800000000000000000e+02 3.389204470000000669e+01 -1.178888649999999956e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.403000000000000000e+03 6.969000000000000000e+03 2.012000000000000000e+03 3.500000000000000000e+01 2.990000000000000000e+02 2.800000000000000000e+02 2.579973510000000303e+01 -8.018652570000000424e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.174000000000000000e+03 4.443000000000000000e+03 2.012000000000000000e+03 2.700000000000000000e+01 1.310000000000000000e+02 3.000000000000000000e+01 3.586846599999999796e+01 -7.885369300000000692e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.824000000000000000e+03 2.099000000000000000e+03 1.975000000000000000e+03 3.400000000000000000e+01 2.300000000000000000e+02 2.800000000000000000e+02 4.087282400000000138e+01 -7.385778100000000279e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.140000000000000000e+03 6.969000000000000000e+03 1.968000000000000000e+03 2.070000000000000000e+02 1.220000000000000000e+02 5.630000000000000000e+02 2.594587359999999876e+01 -8.017481320000000267e+01 3.000000000000000000e+05 +2.000000000000000000e+00 2.159000000000000000e+03 6.969000000000000000e+03 1.999000000000000000e+03 3.900000000000000000e+01 1.320000000000000000e+02 1.170000000000000000e+02 3.018787599999999927e+01 -8.177413070000000062e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.632000000000000000e+03 6.969000000000000000e+03 1.919000000000000000e+03 9.900000000000000000e+01 2.600000000000000000e+02 2.800000000000000000e+02 3.031346570000000185e+01 -8.169968249999999443e+01 3.000000000000000000e+05 +1.000000000000000000e+00 8.960000000000000000e+02 9.000000000000000000e+02 1.973000000000000000e+03 4.100000000000000000e+01 3.960000000000000000e+02 3.650000000000000000e+02 3.340918460000000323e+01 -1.175991995000000117e+02 3.000000000000000000e+05 +3.500000000000000000e+00 3.000000000000000000e+03 7.000000000000000000e+03 2.018000000000000000e+03 9.400000000000000000e+01 2.420000000000000000e+02 2.800000000000000000e+02 2.576869310000000013e+01 -8.024799620000000289e+01 3.000000000000000000e+05 +1.500000000000000000e+00 1.360000000000000000e+03 1.307000000000000000e+03 1.924000000000000000e+03 3.900000000000000000e+01 7.300000000000000000e+01 2.800000000000000000e+02 3.929687270000000154e+01 -7.667611379999999599e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.776000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 9.300000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.366846489999999648e+01 -8.440017349999999396e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.900000000000000000e+03 4.913500000000000000e+04 1.961000000000000000e+03 1.120000000000000000e+02 2.590000000000000000e+02 2.800000000000000000e+02 3.384039400000000342e+01 -8.436253899999999817e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.203000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 1.460000000000000000e+02 6.650000000000000000e+02 9.110000000000000000e+02 2.577698999999999785e+01 -8.018879799999999136e+01 3.000000000000000000e+05 +3.000000000000000000e+00 3.258000000000000000e+03 7.134000000000000000e+03 1.970000000000000000e+03 1.400000000000000000e+01 2.690000000000000000e+02 2.800000000000000000e+02 3.381442249999999916e+01 -1.179563400999999772e+02 3.000000000000000000e+05 +2.000000000000000000e+00 2.417000000000000000e+03 6.969000000000000000e+03 1.925000000000000000e+03 5.000000000000000000e+00 2.900000000000000000e+02 2.800000000000000000e+02 3.577215349999999461e+01 -7.865097629999999640e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.440000000000000000e+03 6.969000000000000000e+03 1.981000000000000000e+03 1.520000000000000000e+02 5.900000000000000000e+02 8.300000000000000000e+02 2.579052919999999816e+01 -8.017898790000000986e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.400000000000000000e+03 1.437400000000000000e+04 2.016000000000000000e+03 6.780000000000000000e+02 2.040000000000000000e+02 2.800000000000000000e+02 3.751129320000000433e+01 -7.755605579999999577e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.033000000000000000e+03 6.969000000000000000e+03 1.954000000000000000e+03 1.310000000000000000e+02 1.260000000000000000e+02 2.800000000000000000e+02 3.028938910000000106e+01 -8.179345720000000597e+01 3.000000000000000000e+05 +6.000000000000000000e+00 4.617000000000000000e+03 1.698800000000000000e+04 2.017000000000000000e+03 1.250000000000000000e+02 2.590000000000000000e+02 1.540000000000000000e+02 3.580637359619139914e+01 -7.878053283691409092e+01 3.000000000000000000e+05 +6.000000000000000000e+00 5.712000000000000000e+03 3.200000000000000000e+03 1.930000000000000000e+03 6.000000000000000000e+00 4.110000000000000000e+02 2.800000000000000000e+02 4.070772000000000190e+01 -7.389372600000000091e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.635000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.590000000000000000e+02 1.540000000000000000e+02 2.800000000000000000e+02 3.578756500000000074e+01 -7.889893800000000113e+01 3.000000000000000000e+05 +3.250000000000000000e+00 2.436000000000000000e+03 2.000000000000000000e+04 1.977000000000000000e+03 2.500000000000000000e+01 4.680000000000000000e+02 2.800000000000000000e+02 3.385781089999999693e+01 -1.177637722000000053e+02 3.000000000000000000e+05 +6.000000000000000000e+00 3.246000000000000000e+03 5.000000000000000000e+03 1.931000000000000000e+03 1.250000000000000000e+02 2.770000000000000000e+02 2.800000000000000000e+02 4.063654350000000193e+01 -7.416535140000000581e+01 3.000000000000000000e+05 +3.500000000000000000e+00 2.797000000000000000e+03 6.229000000000000000e+03 2.018000000000000000e+03 2.800000000000000000e+01 1.810000000000000000e+02 4.200000000000000000e+01 3.373414890000000099e+01 -8.432444009999998968e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.312000000000000000e+03 6.900000000000000000e+03 1.952000000000000000e+03 3.500000000000000000e+01 2.210000000000000000e+02 2.800000000000000000e+02 2.587793399999999977e+01 -8.016596599999999739e+01 3.000000000000000000e+05 +1.500000000000000000e+00 2.240000000000000000e+03 1.200000000000000000e+03 1.989000000000000000e+03 3.500000000000000000e+01 6.700000000000000000e+02 2.800000000000000000e+02 4.059897210000000456e+01 -7.397824449999998819e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.520000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 9.000000000000000000e+00 1.510000000000000000e+02 6.700000000000000000e+01 3.028769497698100110e+01 -8.144946499966600584e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.367000000000000000e+03 2.534000000000000000e+03 1.963000000000000000e+03 5.000000000000000000e+00 3.660000000000000000e+02 2.600000000000000000e+02 3.388629699999999900e+01 -1.178700919999999996e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.100000000000000000e+03 6.969000000000000000e+03 1.941000000000000000e+03 9.200000000000000000e+01 3.350000000000000000e+02 2.800000000000000000e+02 4.063410760000000010e+01 -7.395178549999999973e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.200000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 4.000000000000000000e+00 3.910000000000000000e+02 2.200000000000000000e+01 3.384551840000000311e+01 -8.436896860000000231e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.465000000000000000e+03 4.000000000000000000e+03 1.959000000000000000e+03 4.400000000000000000e+01 6.490000000000000000e+02 2.800000000000000000e+02 4.060795429999999584e+01 -7.390321259999998915e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.178000000000000000e+03 6.969000000000000000e+03 1.960000000000000000e+03 4.300000000000000000e+01 5.520000000000000000e+02 2.800000000000000000e+02 4.057598679999999547e+01 -7.395605000000000473e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.528000000000000000e+03 2.517000000000000000e+03 2.018000000000000000e+03 1.800000000000000000e+01 1.150000000000000000e+02 2.800000000000000000e+02 3.755671699999999902e+01 -7.742682700000000295e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.326000000000000000e+03 6.969000000000000000e+03 1.948000000000000000e+03 5.100000000000000000e+01 1.360000000000000000e+02 2.800000000000000000e+02 3.030843929999999986e+01 -8.172256559999999581e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.462000000000000000e+03 6.969000000000000000e+03 1.998000000000000000e+03 8.000000000000000000e+00 1.610000000000000000e+02 1.290000000000000000e+02 2.560206870000000023e+01 -8.041789559999999426e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.531000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.200000000000000000e+01 1.630000000000000000e+02 7.900000000000000000e+02 3.933574990000000327e+01 -7.662112550000000510e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.580000000000000000e+03 1.732500000000000000e+04 1.991000000000000000e+03 1.500000000000000000e+01 3.880000000000000000e+02 2.800000000000000000e+02 3.388348560000000020e+01 -1.178114792000000079e+02 3.000000000000000000e+05 +1.000000000000000000e+00 4.357000000000000000e+03 5.280000000000000000e+03 2.017000000000000000e+03 1.900000000000000000e+01 4.020000000000000000e+02 2.970000000000000000e+02 3.367728239999999573e+01 -1.177084139999999906e+02 3.000000000000000000e+05 +2.000000000000000000e+00 1.178000000000000000e+03 6.969000000000000000e+03 2.001000000000000000e+03 4.000000000000000000e+00 1.250000000000000000e+02 2.910000000000000000e+02 3.025768189999999436e+01 -8.153980889999999704e+01 3.000000000000000000e+05 +4.000000000000000000e+00 3.590000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.660000000000000000e+02 2.800000000000000000e+02 3.566166339999999479e+01 -7.876137900000000514e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.255000000000000000e+03 6.969000000000000000e+03 2.008000000000000000e+03 2.500000000000000000e+01 4.740000000000000000e+02 8.200000000000000000e+02 2.578250669999999900e+01 -8.019011879999999337e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.182000000000000000e+03 6.660000000000000000e+03 1.965000000000000000e+03 1.070000000000000000e+02 6.340000000000000000e+02 2.800000000000000000e+02 4.061392219999999753e+01 -7.416548900000000799e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.257000000000000000e+03 4.356000000000000000e+04 2.005000000000000000e+03 3.700000000000000000e+01 3.290000000000000000e+02 2.800000000000000000e+02 2.568014069999999904e+01 -8.037234599999999318e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.437000000000000000e+03 1.089000000000000000e+04 2.005000000000000000e+03 1.000000000000000000e+00 1.470000000000000000e+02 6.500000000000000000e+01 3.592631659999999982e+01 -7.855994110000000319e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.545000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 2.900000000000000000e+01 3.840000000000000000e+02 2.800000000000000000e+02 3.354794000000000409e+01 -1.175960199999999958e+02 3.000000000000000000e+05 +5.000000000000000000e+00 2.800000000000000000e+03 7.811000000000000000e+03 1.965000000000000000e+03 4.110000000000000000e+02 4.980000000000000000e+02 2.800000000000000000e+02 3.346762000000000370e+01 -1.176592543999999947e+02 3.000000000000000000e+05 +4.000000000000000000e+00 2.496000000000000000e+03 4.000000000000000000e+03 1.970000000000000000e+03 4.200000000000000000e+01 3.040000000000000000e+02 2.800000000000000000e+02 4.055845500000000214e+01 -7.413362530000000561e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.672000000000000000e+03 6.969000000000000000e+03 1.957000000000000000e+03 6.200000000000000000e+01 8.400000000000000000e+01 2.800000000000000000e+02 3.025075550000000035e+01 -8.172312149999999065e+01 3.000000000000000000e+05 +3.500000000000000000e+00 4.020000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 1.840000000000000000e+02 2.800000000000000000e+02 3.571659999999999968e+01 -7.880010000000000048e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.024000000000000000e+03 1.350360000000000000e+05 1.956000000000000000e+03 1.180000000000000000e+02 2.540000000000000000e+02 2.800000000000000000e+02 3.570894600000000452e+01 -7.871268700000000251e+01 3.000000000000000000e+05 +4.500000000000000000e+00 5.217000000000000000e+03 6.969000000000000000e+03 1.989000000000000000e+03 5.450000000000000000e+01 2.590000000000000000e+02 2.800000000000000000e+02 3.881329990000000407e+01 -7.736940959999999734e+01 3.000000000000000000e+05 +2.500000000000000000e+00 3.832000000000000000e+03 4.081500000000000000e+04 1.972000000000000000e+03 9.600000000000000000e+01 1.510000000000000000e+02 2.800000000000000000e+02 3.395588800000000163e+01 -8.437459300000000439e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.710000000000000000e+03 6.969000000000000000e+03 2.018000000000000000e+03 6.400000000000000000e+01 1.273000000000000000e+03 2.800000000000000000e+02 3.362439699999999476e+01 -1.179456289999999967e+02 3.000000000000000000e+05 +2.750000000000000000e+00 2.052000000000000000e+03 2.800000000000000000e+03 1.989000000000000000e+03 9.300000000000000000e+01 6.820000000000000000e+02 2.800000000000000000e+02 4.060396400000000483e+01 -7.391265699999999583e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.876000000000000000e+03 1.084300000000000000e+04 1.947000000000000000e+03 2.700000000000000000e+01 2.000000000000000000e+02 2.800000000000000000e+02 2.851777290000000065e+01 -8.137390359999999134e+01 3.000000000000000000e+05 +5.500000000000000000e+00 6.599000000000000000e+03 2.056000000000000000e+04 1.987000000000000000e+03 2.700000000000000000e+01 2.200000000000000000e+02 7.100000000000000000e+01 3.383728150000000312e+01 -8.439319530000000213e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.902000000000000000e+03 2.335000000000000000e+03 2.018000000000000000e+03 4.700000000000000000e+01 1.450000000000000000e+02 2.040000000000000000e+02 2.859917899999999946e+01 -8.127435499999999990e+01 3.000000000000000000e+05 +3.500000000000000000e+00 1.443000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.420000000000000000e+02 6.760000000000000000e+02 2.800000000000000000e+02 2.576568989999999815e+01 -8.019390079999999443e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.150000000000000000e+03 1.000000000000000000e+03 1.962000000000000000e+03 4.900000000000000000e+01 3.210000000000000000e+02 3.660000000000000000e+02 3.376705560000000617e+01 -1.180831830999999994e+02 3.000000000000000000e+05 +2.500000000000000000e+00 1.440000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.300000000000000000e+01 2.080000000000000000e+02 2.800000000000000000e+02 3.928485789999999866e+01 -7.658151970000000119e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.020000000000000000e+03 5.000000000000000000e+03 1.925000000000000000e+03 2.100000000000000000e+01 4.750000000000000000e+02 2.800000000000000000e+02 4.078638699999999773e+01 -7.385070799999999736e+01 3.000000000000000000e+05 +1.000000000000000000e+00 7.930000000000000000e+02 6.969000000000000000e+03 1.974000000000000000e+03 6.300000000000000000e+01 4.150000000000000000e+02 4.310000000000000000e+02 2.573158800000000213e+01 -8.023811490000001356e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.575000000000000000e+03 2.000000000000000000e+03 1.930000000000000000e+03 6.000000000000000000e+00 9.210000000000000000e+02 2.800000000000000000e+02 4.061806299999999936e+01 -7.400786600000000703e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.700000000000000000e+03 6.000000000000000000e+03 1.975000000000000000e+03 1.500000000000000000e+01 3.430000000000000000e+02 1.180000000000000000e+02 3.362163799999999725e+01 -1.175808040000000005e+02 3.000000000000000000e+05 +1.000000000000000000e+00 7.450000000000000000e+02 6.969000000000000000e+03 2.005000000000000000e+03 3.400000000000000000e+01 2.480000000000000000e+02 5.990000000000000000e+02 3.927712860000000461e+01 -7.660544209999999055e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.261000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 2.210000000000000000e+02 1.440000000000000000e+02 2.800000000000000000e+02 2.838504939999999976e+01 -8.134612669999999923e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.188000000000000000e+03 6.969000000000000000e+03 1.942000000000000000e+03 3.350000000000000000e+02 1.050000000000000000e+02 2.800000000000000000e+02 3.927906570000000386e+01 -7.653638449999999693e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.707000000000000000e+03 7.500000000000000000e+03 1.977000000000000000e+03 9.800000000000000000e+01 2.750000000000000000e+02 2.800000000000000000e+02 2.565876199999999940e+01 -8.038032700000000830e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.587000000000000000e+03 8.276000000000000000e+03 1.940000000000000000e+03 2.000000000000000000e+00 1.950000000000000000e+02 2.800000000000000000e+02 3.374215189999999609e+01 -8.444223029999999142e+01 3.000000000000000000e+05 +1.500000000000000000e+00 8.680000000000000000e+02 6.969000000000000000e+03 1.998000000000000000e+03 1.050000000000000000e+02 2.000000000000000000e+02 2.800000000000000000e+02 2.577897399999999806e+01 -8.032532500000000653e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.318000000000000000e+03 2.090800000000000000e+04 1.983000000000000000e+03 6.000000000000000000e+00 1.530000000000000000e+02 2.800000000000000000e+02 3.591947449999999975e+01 -7.889542679999999564e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.882000000000000000e+03 6.900000000000000000e+03 1.972000000000000000e+03 2.000000000000000000e+00 3.120000000000000000e+02 2.100000000000000000e+01 3.356692110000000184e+01 -1.176582590000000152e+02 3.000000000000000000e+05 +1.000000000000000000e+00 1.232000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 2.100000000000000000e+01 6.100000000000000000e+01 2.800000000000000000e+02 3.932460540000000293e+01 -7.660427320000000861e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.749000000000000000e+03 6.969000000000000000e+03 1.968000000000000000e+03 1.700000000000000000e+01 8.500000000000000000e+01 3.510000000000000000e+02 3.937008329999999745e+01 -7.671102740000000608e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.761000000000000000e+03 9.600000000000000000e+02 1.920000000000000000e+03 1.660000000000000000e+02 1.290000000000000000e+02 2.800000000000000000e+02 3.929731650000000087e+01 -7.658842049999999801e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.400000000000000000e+03 6.969000000000000000e+03 1.955000000000000000e+03 8.600000000000000000e+01 3.560000000000000000e+02 2.800000000000000000e+02 4.073525999999999669e+01 -7.386660670000000550e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.432000000000000000e+03 6.969000000000000000e+03 1.920000000000000000e+03 1.310000000000000000e+02 7.000000000000000000e+00 2.800000000000000000e+02 3.931131939999999503e+01 -7.664190150000000301e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.080000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 1.040000000000000000e+02 2.520000000000000000e+02 2.500000000000000000e+02 3.391411599999999993e+01 -8.438371100000000524e+01 3.000000000000000000e+05 +4.500000000000000000e+00 3.642000000000000000e+03 6.969000000000000000e+03 1.995000000000000000e+03 9.000000000000000000e+00 7.130000000000000000e+02 6.700000000000000000e+02 3.360465229999999792e+01 -1.178328924000000058e+02 3.000000000000000000e+05 +4.500000000000000000e+00 5.670000000000000000e+03 3.314900000000000000e+04 2.002000000000000000e+03 5.000000000000000000e+00 2.200000000000000000e+02 2.800000000000000000e+02 3.391959439999999404e+01 -8.442060209999999643e+01 3.000000000000000000e+05 +1.000000000000000000e+00 6.710000000000000000e+02 6.710000000000000000e+02 2.008000000000000000e+03 6.500000000000000000e+01 2.590000000000000000e+02 5.750000000000000000e+02 2.845661599999999680e+01 -8.146261499999999955e+01 3.000000000000000000e+05 +2.000000000000000000e+00 1.280000000000000000e+03 6.969000000000000000e+03 2.007000000000000000e+03 6.310000000000000000e+02 3.510000000000000000e+02 8.500000000000000000e+02 2.580949599999999933e+01 -8.019204350000001114e+01 3.000000000000000000e+05 +3.000000000000000000e+00 1.224000000000000000e+03 7.200000000000000000e+02 1.989000000000000000e+03 8.000000000000000000e+00 2.610000000000000000e+02 2.200000000000000000e+02 4.063493470000000229e+01 -7.416889539999999670e+01 3.000000000000000000e+05 +5.000000000000000000e+00 3.930000000000000000e+03 1.089000000000000000e+04 1.999000000000000000e+03 5.500000000000000000e+01 1.840000000000000000e+02 3.100000000000000000e+01 3.580376400000000103e+01 -7.882484490000000221e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.220000000000000000e+03 1.307000000000000000e+03 1.938000000000000000e+03 2.840000000000000000e+02 1.600000000000000000e+02 2.800000000000000000e+02 3.933351470000000205e+01 -7.660386149999999361e+01 3.000000000000000000e+05 +2.500000000000000000e+00 1.295000000000000000e+03 6.969000000000000000e+03 1.900000000000000000e+03 2.000000000000000000e+00 2.240000000000000000e+02 2.800000000000000000e+02 3.928790930000000259e+01 -7.659054159999999456e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.104000000000000000e+03 3.825000000000000000e+03 1.978000000000000000e+03 5.500000000000000000e+01 3.680000000000000000e+02 2.000000000000000000e+02 3.355226259999999883e+01 -1.177061527000000041e+02 3.000000000000000000e+05 +3.000000000000000000e+00 2.582000000000000000e+03 7.565000000000000000e+03 2.004000000000000000e+03 8.300000000000000000e+01 1.310000000000000000e+02 7.600000000000000000e+01 2.852398080000000036e+01 -8.121242230000000006e+01 3.000000000000000000e+05 +1.000000000000000000e+00 1.000000000000000000e+03 6.969000000000000000e+03 1.928000000000000000e+03 3.000000000000000000e+01 2.380000000000000000e+02 2.800000000000000000e+02 4.090253449999999447e+01 -7.390617159999999330e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.442000000000000000e+03 6.969000000000000000e+03 2.017000000000000000e+03 3.590000000000000000e+02 1.760000000000000000e+02 1.640000000000000000e+02 3.021977499999999850e+01 -8.150202600000000075e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.292000000000000000e+03 4.320000000000000000e+03 1.987000000000000000e+03 9.600000000000000000e+01 1.740000000000000000e+02 2.800000000000000000e+02 2.576367769999999879e+01 -8.034381929999999272e+01 3.000000000000000000e+05 +8.500000000000000000e+00 6.858000000000000000e+03 4.024900000000000000e+04 1.998000000000000000e+03 1.480000000000000000e+02 4.080000000000000000e+02 2.800000000000000000e+02 2.568499639999999928e+01 -8.030080949999999973e+01 3.000000000000000000e+05 +3.000000000000000000e+00 2.028000000000000000e+03 5.227000000000000000e+03 2.018000000000000000e+03 6.300000000000000000e+01 1.300000000000000000e+02 3.500000000000000000e+01 3.594606611891209980e+01 -7.899899401698159807e+01 3.000000000000000000e+05 +2.500000000000000000e+00 2.223000000000000000e+03 3.980000000000000000e+03 2.013000000000000000e+03 4.300000000000000000e+01 2.000000000000000000e+02 3.820000000000000000e+02 2.595231610000000089e+01 -8.018557940000000883e+01 3.000000000000000000e+05 +3.500000000000000000e+00 3.798000000000000000e+03 1.089000000000000000e+04 1.996000000000000000e+03 3.300000000000000000e+01 2.760000000000000000e+02 1.300000000000000000e+01 3.384001329999999541e+01 -8.436630109999998695e+01 3.000000000000000000e+05 diff --git a/examples/AI-Feynman/real_estate_data/trainData.csv b/examples/AI-Feynman/real_estate_data/trainData.csv new file mode 100644 index 0000000..5a11148 --- /dev/null +++ b/examples/AI-Feynman/real_estate_data/trainData.csv @@ -0,0 +1,1001 @@ +1 4 2.5 2388 8537 1985 6 262 8 38.8043489 -77.2975569 0 1 0 0 0 0 +1 2 2 1426 6969 2017 9 375 337 38.851005 -77.317099 0 0 1 0 0 0 +1 4 3.5 3424 217800 2018 19 394 280 38.8348749 -77.3360402 0 1 0 0 0 0 +1 3 3.5 2094 6969 2017 120 344 184 38.8442531 -77.3045432 0 0 1 0 0 0 +1 4 4.5 5217 6969 1989 54.5 259 280 38.8132999 -77.3694096 0 1 0 0 0 0 +1 6 7 5190 19297 2005 1 346 280 33.8621954 -84.3613931 0 1 0 0 0 0 +1 3 2 1930 13111 1925 2 404 280 33.784313 -84.3620503 0 1 0 0 0 0 +1 3 2.5 2906 6969 2017 2 179 25 33.820845 -84.37141 0 0 1 0 0 0 +1 3 2 1587 8276 1940 2 195 280 33.7421519 -84.4422303 0 1 0 0 0 0 +0 1 1 620 6969 2005 4 391 22 33.8455184 -84.3689686 0 0 0 0 0 0 +1 5 4.5 5670 33149 2002 5 220 280 33.9195944 -84.4206021 0 1 0 0 0 0 +0 2 2.5 2111 6969 1976 6 135 398 33.8621896 -84.465571 0 0 1 0 0 0 +0 4 2 1909 13068 1969 6 102 280 33.7105855 -84.334546 0 1 0 0 0 0 +1 4 2.5 2834 6969 2002 6 145 280 33.8676889 -84.4645184 0 1 0 0 0 0 +1 1 1 783 6969 2008 7 409 363 33.7780871 -84.3838967 0 0 0 0 0 0 +0 2 2 1400 6969 1925 7 200 50 33.8331921 -84.3837299 0 0 0 0 0 0 +1 4 4.5 4490 6969 2018 9 209 28 33.8676889 -84.4645184 0 0 1 0 0 0 +1 6 4.5 3849 43560 1999 12 119 21 33.6936959 -84.5681171 0 1 0 0 0 0 +1 7 8 6689 116740 2000 12 253 280 33.9015579 -84.4330847 0 1 0 0 0 0 +0 3 2 1200 6969 1924 16 150 280 33.7254839 -84.3950015 0 1 0 0 0 0 +1 4 2 1426 16988 1956 19 337 280 33.8206443 -84.3496247 0 1 0 0 0 0 +1 3 3.5 3650 6969 2004 21 112 280 33.9122781 -84.4640993 0 0 1 0 0 0 +1 3 2 1670 13068 1951 21 239 280 33.809733 -84.340087 0 1 0 0 0 0 +1 5 4.5 3604 6446 2018 21 146 42 33.7341489 -84.3244401 0 1 0 0 0 0 +1 5 6.5 7191 152460 1975 22 369 280 33.8355312 -84.4443836 0 1 0 0 0 0 +1 5 5.5 6599 20560 1987 27 220 71 33.8372815 -84.3931953 0 1 0 0 0 0 +1 4 3 2454 9583 2015 27 230 280 33.7561995 -84.3384906 0 1 0 0 0 0 +1 4 3.5 2797 6229 2018 28 181 42 33.7341489 -84.3244401 0 1 0 0 0 0 +0 3 1.5 2010 13068 1959 30 144 280 33.8580569 -84.3015609 0 1 0 0 0 0 +1 3 3.5 3798 10890 1996 33 276 13 33.8400133 -84.3663011 0 1 0 0 0 0 +1 5 5.5 5368 30491 1935 34 333 280 33.8598018 -84.3437497 0 1 0 0 0 0 +0 3 2 1449 1306 1970 37 28 280 33.601167 -84.475503 0 0 0 0 0 0 +1 5 5.5 4700 17511 2018 37 255 280 33.8870766 -84.3638574 0 1 0 0 0 0 +0 1 1 768 6969 2007 37 117 280 33.7556717 -84.4165112 0 0 0 0 0 0 +0 3 2.5 1617 6969 2018 40 141 4 33.7202711 -84.3166721 0 0 1 0 0 0 +1 4 4.5 2680 6969 2018 41 281 360 33.8049485 -84.387635 0 0 1 0 0 0 +1 3 3 3635 21780 1925 41 323 280 33.8593726 -84.3457629 0 1 0 0 0 0 +1 3 2 1356 871 1949 42 273 280 33.730382 -84.3324914 0 1 0 0 0 0 +0 3 2.5 1410 52272 1976 53 156 280 33.6819004 -84.574013 0 1 0 0 0 0 +1 5 3 2275 6969 2018 58 176 280 33.7129837 -84.3632208 0 1 0 0 0 0 +1 3 3 2027 6969 2008 58 343 1102 33.8453162 -84.3715372 0 0 0 0 0 0 +1 4 5 3523 8712 2017 61 284 280 33.7542543 -84.3084472 0 1 0 0 0 0 +0 3 3 1604 13068 2001 63 131 50 33.7208733 -84.3225461 0 1 0 0 0 0 +0 3 2.5 1777 6969 2017 63 95 49 33.6048013 -84.4442929 0 1 0 0 0 0 +1 4 3.5 3665 17424 2017 65 271 280 33.8506877 -84.2939749 0 1 0 0 0 0 +0 3 1 796 9234 1960 76 157 280 33.801922 -84.480068 0 1 0 0 0 0 +1 5 3 3720 19558 1959 89 169 280 33.9353805 -84.4020411 0 1 0 0 0 0 +1 4 3 2800 19602 1928 91 321 280 33.7964431 -84.3624404 0 1 0 0 0 0 +0 4 3 3583 10410 1965 92 71 280 33.742367 -84.5211749 0 1 0 0 0 0 +0 3 2 1776 6969 1955 93 115 280 33.6684649 -84.4001735 0 1 0 0 0 0 +1 4 2.5 3832 40815 1972 96 151 280 33.955888 -84.374593 0 1 0 0 0 0 +1 4 2.5 2239 6969 2017 103 152 42 33.707675 -84.308863 0 1 0 0 0 0 +1 3 2 1657 7013 1920 104 374 280 33.7574442 -84.3757668 0 1 0 0 0 0 +1 4 3.5 3080 6969 2017 104 252 250 33.914116 -84.383711 0 1 0 0 0 0 +1 5 3 3444 13068 1962 110 127 280 33.8585952 -84.3005133 0 1 0 0 0 0 +1 4 3 2900 49135 1961 112 259 280 33.840394 -84.362539 0 1 0 0 0 0 +0 5 2.5 2768 16988 2005 112 91 46 33.6721076 -84.5823583 0 1 0 0 0 0 +1 3 3.5 2010 6969 2018 121 303 195 33.7674408 -84.3706059 0 0 1 0 0 0 +1 6 4.5 5257 19384 1998 121 79 63 33.7226942 -84.5463394 0 1 0 0 0 0 +1 7 7.5 6883 165528 2004 126 580 280 33.8993257 -84.4317851 0 1 0 0 0 0 +1 3 3.5 4400 6969 2008 132 676 280 33.8215601 -84.3882872 0 0 0 0 0 0 +1 6 6 7681 39204 2006 138 345 280 33.7821851 -84.3397643 0 1 0 0 0 0 +1 5 3 3955 19471 1920 140 151 280 33.8167948 -84.4653179 0 1 0 0 0 0 +1 6 5.5 7083 21431 2008 142 352 280 33.8037618 -84.3555605 0 1 0 0 0 0 +1 6 4 3236 48787 1972 146 162 280 33.9789184 -84.338655 0 1 0 0 0 0 +0 3 2 1736 7840 1935 153 99 280 33.7298903 -84.4386207 0 1 0 0 0 0 +0 3 1.5 1040 31363 1962 163 58 280 33.6666049 -84.629326 0 1 0 0 0 0 +1 6 5.5 7200 21910 2016 182 302 280 33.8851154 -84.3990509 0 1 0 0 0 0 +1 3 3.5 2819 6969 2015 216 816 150 33.7836468 -84.3829526 0 0 0 0 0 0 +1 5 4.5 4837 23827 1997 219 258 280 33.8621521 -84.3661573 0 1 0 0 0 0 +1 2 1 1170 12109 1949 257 321 280 33.874569 -84.3768549 0 1 0 0 0 0 +0 2 1 1347 113256 1956 329 100 280 33.664611 -84.551194 0 1 0 0 0 0 +1 6 7.5 7581 100187 1988 404 165 17 33.9815167 -84.3012569 0 1 0 0 0 0 +0 3 1 1020 20037 1949 130 64 280 33.7128555 -84.4431326 0 1 0 0 0 0 +1 5 2.5 2279 21780 1962 249 395 280 33.8584368 -84.340203 0 1 0 0 0 0 +1 3 3.5 2213 6969 2017 75 229 280 33.846133 -84.332265 0 1 0 0 0 0 +1 4 4.5 3700 6969 2017 186 256 280 33.8163677 -84.4653435 0 1 0 0 0 0 +1 3 3.5 2285 6969 1989 54.5 245 280 33.9369881 -84.3632304 0 0 0 1 0 0 +1 3 3.5 3511 6969 1989 54.5 162 280 33.9174889 -84.2956645 0 1 0 0 0 0 +1 4 3.5 3050 6969 1989 54.5 191 280 33.9147357 -84.3842672 0 1 0 0 0 0 +0 5 4 2941 6969 1989 54.5 84 280 33.630343 -84.540346 0 1 0 0 0 0 +0 3 2.5 1708 6969 1989 54.5 96 280 33.601890563965 -84.445846557617 0 1 0 0 0 0 +0 3 2 2237 6969 1989 54.5 98 280 33.6812814 -84.5969232 0 1 0 0 0 0 +0 2 1.5 1080 1926 1956 1 119 280 39.292477 -76.521718 0 0 1 0 0 0 +0 2 1 870 6969 1954 1 34 280 39.3375028 -76.5607801 0 0 1 0 0 0 +0 2 1 920 6969 1923 1 38 280 39.2975415 -76.5708672 0 0 1 0 0 0 +0 3 2.5 1295 6969 1900 2 224 280 39.2879093 -76.5905416 0 0 1 0 0 0 +1 2 2 1224 1793 1910 2 274 280 39.2859033 -76.5741683 0 0 1 0 0 0 +0 1 1 885 6969 2005 2 225 326 39.2755786 -76.6117121 0 0 0 0 0 0 +0 2 2 1178 6969 1952 4 8 280 39.315481 -76.5684026 0 0 1 0 0 0 +0 4 2 1454 6969 1948 4 78 280 39.3595923 -76.6010793 0 0 1 0 0 0 +0 1 1 712 6969 1984 4 253 310 39.2803158 -76.6143336 0 0 0 0 0 0 +1 5 2.5 1672 3410 1939 5 257 280 39.3774844 -76.6122814 0 0 1 0 0 0 +0 3 1.5 1056 6969 1941 5 38 280 39.3457343 -76.6057421 0 0 1 0 0 0 +1 4 5 2520 1307 1900 5 262 280 39.290867 -76.5906104 0 0 1 0 0 0 +1 1 2 1980 1120 1920 6 174 280 39.2855498 -76.5708828 0 0 1 0 0 0 +0 2 1 1200 6969 1900 9 200 280 39.328638 -76.633766 0 0 1 0 0 0 +1 2 1 1078 6969 1875 10 296 280 39.2702609 -76.5900239 0 0 1 0 0 0 +1 3 2.5 1682 6969 2017 12 196 56 39.2818876 -76.5573555 0 0 1 0 0 0 +0 3 2 1531 6969 1920 12 163 790 39.3357499 -76.6211255 0 0 0 0 0 0 +1 5 4.5 3500 6969 1853 13 186 280 39.3061909 -76.6247813 0 0 1 0 0 0 +0 2 2.5 1440 6969 1920 13 208 280 39.2848579 -76.5815197 0 0 1 0 0 0 +0 3 2 1288 6969 1920 13 82 280 39.299059 -76.66193 0 0 1 0 0 0 +0 2 2.5 1559 6969 1968 13 109 528 39.3519789 -76.6453395 0 0 0 0 0 0 +0 3 1.5 1227 6165 1920 14 53 280 39.3443832 -76.6648014 0 1 0 0 0 0 +1 4 3 2822 6969 1920 15 148 280 39.306904 -76.6254359 0 0 1 0 0 0 +0 4 2.5 1104 6247 1925 15 100 280 39.3309437 -76.5594467 0 0 1 0 0 0 +0 2 1 728 6969 1900 17 295 280 39.2730581 -76.6094035 0 0 1 0 0 0 +0 3 2.5 1749 6969 1968 17 85 351 39.3700833 -76.7110274 0 0 1 0 0 0 +1 4 3 2466 1 1925 18 159 280 39.2890163 -76.7000958 0 1 0 0 0 0 +0 3 2 2226 6969 2009 19 92 200 39.279807 -76.704955 0 0 1 0 0 0 +0 3 1 1216 6969 1955 20 140 280 39.3681589 -76.5885307 0 0 1 0 0 0 +0 3 2 1298 588 1920 21 215 280 39.286128 -76.588151 0 0 1 0 0 0 +0 3 1 1232 6969 1920 21 61 280 39.3246054 -76.6042732 0 0 1 0 0 0 +0 2 1 912 828 1875 22 38 280 39.279127 -76.635791 0 0 1 0 0 0 +0 4 2 1152 6969 1920 24 52 280 39.2948803 -76.6681577 0 0 1 0 0 0 +0 2 1 1102 6969 1942 30 95 280 39.2804947 -76.700644 0 0 1 0 0 0 +0 1 1 745 6969 2005 34 248 599 39.2771286 -76.6054421 0 0 1 0 0 0 +0 3 1.5 1180 436 1940 34 122 280 39.2974221 -76.6792602 0 0 1 0 0 0 +0 4 1.5 1360 1307 1924 39 73 280 39.2968727 -76.6761138 0 0 1 0 0 0 +0 4 1 1584 6969 1930 40 25 280 39.351336 -76.607731 0 0 1 0 0 0 +0 5 2 1688 6969 1930 48 59 280 39.2949936 -76.6843308 0 0 1 0 0 0 +1 4 3.5 2940 6969 2010 49 213 280 39.2805474 -76.5708331 0 0 1 0 0 0 +0 3 3 1413 6969 2009 51 152 200 39.279619 -76.7049651 0 0 1 0 0 0 +0 2 1.5 780 1827 1923 67 128 280 39.224145 -76.586985 0 0 1 0 0 0 +1 3 2.5 1908 10030 1959 77 216 280 39.3767061 -76.6768016 0 1 0 0 0 0 +0 4 1.5 1396 35898 1958 84 85 280 39.3275073 -76.5551988 0 1 0 0 0 0 +0 4 2.5 1745 7148 1907 84 126 280 39.3632873 -76.6107451 0 1 0 0 0 0 +0 2 1 960 6969 1920 84 72 280 39.2965014 -76.5731291 0 0 1 0 0 0 +0 2 2 1372 6969 2007 100 208 280 39.2739572 -76.6097072 0 1 0 0 0 0 +0 3 2 1336 6969 1919 103 52 280 39.293511 -76.68313 0 0 1 0 0 0 +0 3 1 1064 6969 1920 107 15 280 39.2988421 -76.6618239 0 0 1 0 0 0 +0 3 2 1140 13068 1950 110 99 280 39.357248 -76.578942 0 0 1 0 0 0 +1 3 3.5 3595 3683 2017 114 178 317 39.3898579 -76.6616859 0 0 1 0 0 0 +1 3 3.5 1759 6969 2018 120 342 80 39.2717552 -76.5913544 0 0 1 0 0 0 +0 3 2 1160 6969 1930 125 99 280 39.3237733 -76.5692097 0 0 1 0 0 0 +1 3 2.5 1917 6969 2017 126 188 56 39.2818876 -76.5573555 0 0 1 0 0 0 +1 4 3 1832 6969 1910 128 235 280 39.2859604 -76.5738075 0 0 1 0 0 0 +0 3 1 1432 6969 1920 131 7 280 39.3113194 -76.6419015 0 0 1 0 0 0 +0 3 1 1040 6969 1940 140 47 280 39.236449 -76.6051704 0 0 1 0 0 0 +1 6 3 4824 6969 1907 146 80 280 39.3135 -76.637437 0 0 1 0 0 0 +0 3 1 1392 871 1900 151 29 280 39.286632 -76.6306821 0 1 0 0 0 0 +0 3 2 1200 6969 1938 155 63 280 39.3279196 -76.5646702 0 0 1 0 0 0 +1 2 2.5 1989 6969 2007 158 372 1843 39.2804736 -76.6059791 0 0 0 0 0 0 +0 2 2.5 1761 960 1920 166 129 280 39.2973165 -76.5884205 0 0 1 0 0 0 +0 2 2 1211 6969 1903 170 124 733 39.3021734 -76.6157222 0 0 0 0 0 0 +0 2 2 1148 6969 2008 179 239 403 39.2888883 -76.6094546 0 0 0 0 0 0 +0 2 1.5 978 2178 1898 207 128 280 39.2809945 -76.6315163 0 0 1 0 0 0 +0 3 1.5 1346 871 1900 209 186 280 39.2923775 -76.5816996 0 0 1 0 0 0 +1 3 2.5 1168 6969 1920 210 325 280 39.2819178 -76.5789026 0 0 1 0 0 0 +0 3 1.5 1890 14100 1939 226 53 280 39.296949 -76.6818982 0 0 1 0 0 0 +0 5 2 1715 6246 1960 261 102 280 39.3641357 -76.5632547 0 1 0 0 0 0 +0 2 2 1230 1393920 1900 265 63 280 39.2781275 -76.6289225 0 0 1 0 0 0 +0 3 1 1220 1307 1938 284 160 280 39.3335147 -76.6038615 0 0 1 0 0 0 +0 5 2 1594 7497 1930 329 91 280 39.2803331 -76.7100789 0 1 0 0 0 0 +0 2 3 1188 6969 1942 335 105 280 39.2790657 -76.5363845 0 0 1 0 0 0 +0 2 1 1048 5977 1893 349 181 280 39.374013 -76.6504735 0 0 1 0 0 0 +0 7 3.5 2824 7650 1920 351 78 280 39.3185311 -76.6760261 0 1 0 0 0 0 +0 4 2 2460 6969 1940 352 71 280 39.2245751 -76.5912581 0 0 0 1 0 0 +0 2 2 1297 6969 1967 352 35 890 39.3621162 -76.6998558 0 0 0 0 0 0 +0 2 1 1218 6969 1922 366 119 280 39.2912115 -76.5684691 0 0 1 0 0 0 +0 3 3 2752 5270 2008 392 100 280 39.3470475 -76.6411986 0 0 1 0 0 0 +0 3 2.5 2838 8100 1913 401 83 280 39.3300342 -76.6820986 0 0 0 1 0 0 +0 2 2 1105 887 1915 630 144 280 39.288695 -76.5568998 0 0 1 0 0 0 +0 2 1.5 1088 4100 1985 965 55 280 39.3394769 -76.6074751 0 1 0 0 0 0 +0 3 1.5 1372 10511 1959 9 147 280 37.5247765 -77.5131893 0 1 0 0 0 0 +1 5 2.5 2828 19645 2003 14 118 280 37.4324069 -77.571278 0 1 0 0 0 0 +0 3 2.5 1528 2517 2018 18 115 280 37.556717 -77.426827 0 1 0 0 0 0 +1 3 2.5 2118 5401 1910 34 168 280 37.5704374 -77.4314927 0 1 0 0 0 0 +0 3 2.5 1936 12458 1986 37 116 7 37.3846181 -77.4788758 0 1 0 0 0 0 +1 4 3 2920 26876 1972 82 113 280 37.4896992 -77.6144333 0 1 0 0 0 0 +1 3 2 2509 6969 2017 113 132 188 37.5756328 -77.485494 0 0 0 0 0 0 +1 5 4.5 5174 28401 1990 117 112 21 37.4555433 -77.5678078 0 1 0 0 0 0 +1 4 3.5 4336 24999 2017 131 314 280 37.5678125 -77.5301112 0 1 0 0 0 0 +0 3 2 1942 15594 1979 141 110 280 37.490159 -77.582809 0 1 0 0 0 0 +0 3 2 1688 21692 1979 163 107 280 37.4548731 -77.458836 0 1 0 0 0 0 +1 5 4 3838 6721 2007 176 124 280 37.5422433 -77.5576688 0 1 0 0 0 0 +1 4 2.5 2542 2125 1896 307 185 280 37.5272332 -77.4133738 0 1 0 0 0 0 +1 4 2.5 2400 14374 2016 678 204 280 37.5112932 -77.5560558 0 1 0 0 0 0 +0 3 2 1666 6969 1989 54.5 156 280 37.416359 -77.45887 0 1 0 0 0 0 +0 3 2.5 1564 6969 1989 54.5 131 280 37.5373258 -77.3453453 0 0 1 0 0 0 +0 2 2 1036 6969 1972 1 75 517 25.9232018 -80.2071665 0 0 0 0 0 0 +0 1 1 580 6969 1966 1 217 150 25.728089 -80.3029107 0 0 0 0 0 0 +1 4 2 2035 15857 1979 1 280 280 25.6497446 -80.3789788 0 1 0 0 0 0 +0 3 2 1400 6969 1980 1 114 375 25.9579859 -80.186031 0 0 0 0 0 0 +1 3 3.5 2441 4866 1991 1 172 280 25.6607404 -80.4266104 0 1 0 0 0 0 +0 1 1.5 1125 6969 1972 1 126 320 25.7753608 -80.3470565 0 0 0 0 0 0 +1 2 2 1320 6969 1970 2 253 568 25.7498837 -80.2016068 0 0 0 0 0 0 +1 3 3 1662 6969 2008 2 415 940 25.7700913 -80.1946615 0 0 0 0 0 0 +0 1 1.5 787 6969 1983 2 198 280 25.6671127 -80.3756118 0 0 0 0 0 0 +1 4 2.5 1876 6969 2014 3 175 35 25.676648 -80.4666869 0 0 1 0 0 0 +1 2 2.5 2139 6969 2003 4 888 1957 25.759088 -80.1918167 0 0 0 0 0 0 +0 3 1 792 3600 1957 5 170 280 25.8363196 -80.227622 0 1 0 0 0 0 +0 1 1 825 6969 2005 5 345 585 25.7619908 -80.1904187 0 0 0 0 0 0 +1 6 4 4133 17769 1983 5 201 280 25.6518438 -80.3653865 0 1 0 0 0 0 +0 2 2 1131 6969 1975 6 167 211 25.7729223 -80.3443905 0 0 0 0 0 0 +1 4 3 2179 7500 1939 7 394 280 25.8409061 -80.1812075 0 1 0 0 0 0 +0 2 2 1315 6969 1969 7 81 280 25.9509727 -80.1662964 0 0 0 0 0 0 +1 5 4 3767 14324 2005 7 235 280 25.6971352 -80.3980912 0 1 0 0 0 0 +0 3 1 1032 7452 1972 7 136 280 25.8527579 -80.2390995 0 1 0 0 0 0 +1 4 3 2450 206474 1991 8 244 280 25.625366 -80.5367289 0 1 0 0 0 0 +1 3 3.5 2293 6969 2001 8 783 1383 25.769324 -80.183769 0 0 0 0 0 0 +0 3 2.5 1462 6969 1998 8 161 129 25.6020687 -80.4178956 0 0 1 0 0 0 +0 1 1.5 846 6969 2008 9 343 600 25.7700913 -80.1946615 0 0 0 0 0 0 +0 3 2 1393 3703 1996 9 208 149 25.6055152 -80.4235025 0 1 0 0 0 0 +1 6 3 2313 4926 1975 11 194 280 25.6909387 -80.3808924 0 1 0 0 0 0 +0 3 2 1470 6969 1978 12 156 515 25.705062 -80.37838 0 0 1 0 0 0 +1 8 9.5 7454 38332 2012 13 670 280 25.682723 -80.28844 0 1 0 0 0 0 +0 2 2 1229 6969 1982 13 216 280 25.8380103 -80.1804443 0 0 0 0 0 0 +1 5 3.5 2757 7875 1991 13 167 280 25.627932 -80.4280231 0 1 0 0 0 0 +1 2 2 1274 6969 2015 13 389 280 25.7644398 -80.1952502 0 0 0 0 0 0 +1 4 3.5 2431 9180 1961 14 148 280 25.6225169 -80.3550114 0 1 0 0 0 0 +1 1 1 820 6969 2006 14 415 443 25.7596392 -80.1902581 0 0 0 0 0 0 +0 1 1.5 669 6969 1983 14 224 125 25.751496 -80.366863 0 0 1 0 0 0 +0 1 1.5 878 6969 2008 16 302 628 25.761033 -80.194396 0 0 0 0 0 0 +1 2 3 1137 6969 2017 19 879 898 25.8050525 -80.1855812 0 0 0 0 0 0 +1 3 3.5 2597 7928 2002 19 168 280 25.6566244 -80.4113956 0 1 0 0 0 0 +0 4 2 1580 10074 1961 20 158 280 25.5603514 -80.3653645 0 1 0 0 0 0 +0 2 2 900 6969 2006 20 188 280 25.7897443 -80.2362272 0 0 0 0 0 0 +1 2 2 1100 6969 1974 21 341 280 25.750841 -80.1998881 0 0 0 0 0 0 +0 3 2.5 1499 1827 2000 22 195 59 25.6753476 -80.4590087 0 1 0 0 0 0 +1 4 3 2852 15028 1960 22 261 280 25.645531 -80.311428 0 1 0 0 0 0 +1 4 2 1476 5766 1962 23 352 280 25.7502704 -80.2999171 0 1 0 0 0 0 +1 3 3 1380 6969 2016 23 659 280 25.7599083 -80.1982944 0 0 0 0 0 0 +1 2 2 1255 6969 2008 25 474 820 25.7825067 -80.1901188 0 0 0 0 0 0 +1 2 2.5 1594 6969 2006 25 423 1005 25.7596392 -80.1902581 0 0 0 0 0 0 +1 1 1 738 6969 2008 27 461 627 25.7684475 -80.1913487 0 0 0 0 0 0 +0 2 2 1197 6969 1975 27 146 461 25.9555638 -80.1888997 0 0 0 0 0 0 +1 3 2.5 2300 6969 2005 27 326 335 25.734842 -80.242014 0 0 1 0 0 0 +1 3 2 1252 6969 1953 28 315 280 25.8186573 -80.2261842 0 1 0 0 0 0 +1 4 3 2759 33062 1958 28 542 280 25.6525143 -80.3024637 0 1 0 0 0 0 +1 8 4 1438 6969 1926 28 330 280 25.8390803 -80.1853052 0 0 0 1 0 0 +1 2 2 1087 6969 2008 28 322 616 25.7700913 -80.1946615 0 0 0 0 0 0 +1 2 2 1600 6969 1978 30 344 280 25.7336129 -80.235634 0 0 1 0 0 0 +1 2 2 1181 6969 2008 30 356 864 25.8078394 -80.192227 0 0 0 0 0 0 +1 4 2.5 2193 5502 1998 30 176 280 25.6342054 -80.4321957 0 1 0 0 0 0 +0 2 1 758 6969 1986 31 231 180 25.7752355 -80.3827357 0 0 0 0 0 0 +1 4 4 3177 6000 2005 33 157 50 25.7075302 -80.459617 0 1 0 0 0 0 +1 3 3 1488 6969 2002 33 534 880 25.768564 -80.186445 0 0 0 0 0 0 +0 3 2.5 1312 6900 1952 35 221 280 25.877934 -80.165966 0 1 0 0 0 0 +1 3 2 1403 6969 2012 35 299 280 25.7997351 -80.1865257 0 0 0 0 0 0 +1 2 2 1110 6969 2018 35 463 280 25.7907062 -80.1923857 0 0 0 0 0 0 +0 2 2 900 6969 1997 36 211 215 25.6243969 -80.41094 0 0 0 0 0 0 +1 3 3 2130 6969 2004 36 878 280 25.7603319 -80.189341 0 0 0 0 0 0 +0 2 2 1121 6969 1985 36 133 340 25.9727341 -80.1849215 0 0 0 0 0 0 +1 4 3.5 4257 43560 2005 37 329 280 25.6801407 -80.372346 0 1 0 0 0 0 +1 4 3.5 2184 5850 1936 37 196 280 25.7626152 -80.2343315 0 1 0 0 0 0 +0 3 1 1308 3600 1955 40 157 280 25.8370889 -80.222566 0 1 0 0 0 0 +1 6 6 7074 36900 2017 40 281 280 25.7073189 -80.3564426 0 1 0 0 0 0 +0 3 2 1492 4323 1981 40 188 281 25.6787621 -80.4357162 0 1 0 0 0 0 +1 2 2 1159 6969 2007 41 344 884 25.8042161 -80.1864832 0 0 0 0 0 0 +1 5 3 3113 12000 1979 41 148 280 25.9649437 -80.1866783 0 1 0 0 0 0 +1 4 3 1807 8657 1959 41 230 280 25.7649936 -80.3250752 0 1 0 0 0 0 +1 2 2.5 1140 6969 2017 42 412 580 25.7641113 -80.1977438 0 0 0 0 0 0 +1 4 2.5 2223 3980 2013 43 200 382 25.9523161 -80.1855794 0 1 0 0 0 0 +0 1 2 882 6969 2004 44 248 506 25.7837571 -80.2086978 0 0 0 0 0 0 +0 2 1 845 6969 1965 44 136 205 25.94711 -80.165852 0 0 0 0 0 0 +0 1 1 806 6969 2008 44 310 573 25.7765341 -80.1888665 0 0 0 0 0 0 +1 3 3.5 2629 6000 2003 45 163 280 25.6296997 -80.4507528 0 1 0 0 0 0 +1 2 3 1494 6969 2017 48 736 280 25.7640137 -80.1912975 0 0 0 0 0 0 +0 1 1 727 6969 2006 48 413 443 25.7678202 -80.1960753 0 0 0 0 0 0 +1 1 1 791 6969 2007 49 424 486 25.792482 -80.187149 0 0 0 0 0 0 +1 2 2 1169 6969 2005 49 418 603 25.7716366 -80.1858045 0 0 0 0 0 0 +0 3 1 472 6969 2015 49 422 380 25.8156264 -80.1891629 0 0 0 0 0 0 +1 3 2 1286 6135 1947 49 334 280 25.7434482 -80.2337215 0 1 0 0 0 0 +1 2 1 1097 6450 1948 49 278 280 25.7690035 -80.2974357 0 1 0 0 0 0 +0 1 1 630 6969 2006 50 413 280 25.7598741 -80.1906886 0 0 0 0 0 0 +0 2 2 948 6969 1980 51 195 265 25.6877679 -80.445183 0 0 0 0 0 0 +1 7 5 1973 6969 1925 51 342 280 25.7648285 -80.2150388 0 0 0 1 0 0 +0 3 2.5 1704 6969 2003 51 176 170 25.7377285 -80.4412625 0 0 1 0 0 0 +0 2 2 1405 6969 1982 51 100 499 25.959348 -80.192053 0 0 0 0 0 0 +1 2 2 1012 6969 2014 51 445 1022 25.760372 -80.190197 0 0 0 0 0 0 +0 1 1 611 6969 1973 55 180 200 25.7991696 -80.2392619 0 0 0 0 0 0 +1 3 4 1863 6969 2017 55 631 1244 25.8050525 -80.1855812 0 0 0 0 0 0 +1 1 1 750 6969 2001 55 440 642 25.7621838 -80.1889886 0 0 0 0 0 0 +1 3 3 2215 7500 1949 55 361 280 25.7412283 -80.2300062 0 1 0 0 0 0 +0 1 1 821 6969 2008 56 353 503 25.792482 -80.187149 0 0 0 0 0 0 +1 2 2 1289 6969 2006 58 380 700 25.7689999 -80.191845 0 0 0 0 0 0 +0 2 2.5 1346 6969 1972 58 171 340 25.686984 -80.415003 0 0 1 0 0 0 +0 3 2 1184 1 1954 61 162 280 25.8935064 -80.2298876 0 1 0 0 0 0 +1 2 2 1134 6969 2016 62 626 986 25.762775 -80.192463 0 0 0 0 0 0 +1 2 3.5 2580 6969 1997 63 793 1989 25.7555391 -80.1950766 0 0 0 0 0 0 +1 2 1 793 6969 1974 63 415 431 25.731588 -80.2381149 0 0 0 0 0 0 +0 2 1 850 6969 1952 64 241 280 25.851108 -80.2305411 0 1 0 0 0 0 +1 2 2.5 1647 6969 2009 64 424 1315 25.7851774 -80.1900783 0 0 0 0 0 0 +0 1 1.5 865 6969 2008 64 289 450 25.7765341 -80.1888665 0 0 0 0 0 0 +1 2 1 1285 6750 1941 68 331 280 25.7668586 -80.2357771 0 1 0 0 0 0 +0 2 2 990 6969 1973 68 303 592 25.8097771 -80.1865475 0 0 0 0 0 0 +0 1 1 539 6969 2000 68 342 238 25.7352724 -80.2383613 0 0 0 0 0 0 +1 4 2 2237 15312 1970 69 215 280 25.6337588 -80.3439823 0 1 0 0 0 0 +1 4 3 2713 5000 2004 75 158 280 25.6866461 -80.4588349 0 1 0 0 0 0 +1 1 1 901 6969 2015 77 499 280 25.763224 -80.193432 0 0 0 0 0 0 +0 2 1.5 891 6969 1980 78 222 205 25.776443 -80.339694 0 0 0 0 0 0 +0 2 2 1262 6969 1980 82 214 63 25.7002011 -80.3652342 0 1 0 0 0 0 +1 7 2 2096 7650 1959 84 186 280 25.7305521 -80.3521836 0 1 0 0 0 0 +0 2 1 860 6969 1965 84 140 280 25.9471081 -80.1672831 0 0 0 0 0 0 +0 2 2 900 6969 2006 84 206 259 25.7899426 -80.2367071 0 0 0 0 0 0 +1 5 4 2564 14668 1926 85 702 280 25.852878 -80.175355 0 1 0 0 0 0 +0 2 2 1060 6969 1978 85 189 351 25.6714415 -80.3749579 0 0 0 0 0 0 +0 1 1 1149 6969 1972 85 126 379 25.7776617 -80.3452006 0 1 0 0 0 0 +1 1 1.5 938 6969 2008 85 554 670 25.7834355 -80.190181 0 0 0 0 0 0 +0 2 1 980 6969 2004 89 274 408 25.80122 -80.186789 0 0 0 0 0 0 +1 4 2.5 2372 5880 2005 89 188 280 25.754081 -80.4441909 0 1 0 0 0 0 +0 1 1 696 6969 2008 89 352 519 25.7940769 -80.1870706 0 0 0 0 0 0 +1 5 5 3344 5500 2014 92 148 31 25.679242 -80.4684797 0 1 0 0 0 0 +1 2 2 1006 6969 2008 93 337 815 25.77699 -80.188798 0 0 0 0 0 0 +1 2 2 1404 6969 2017 93 556 950 25.764055 -80.1923013 0 0 0 0 0 0 +1 2 2.5 1505 6969 2005 93 631 960 25.7690507 -80.187027 0 0 0 0 0 0 +1 5 3.5 3000 7000 2018 94 242 280 25.7686931 -80.2479962 0 1 0 0 0 0 +1 3 3 2292 4320 1987 96 174 280 25.7636777 -80.3438193 0 1 0 0 0 0 +1 4 2 1829 6969 1940 96 185 280 25.796792 -80.22526 0 0 0 1 0 0 +1 2 2 1061 6969 2007 96 424 755 25.755381 -80.2075334 0 0 0 0 0 0 +0 3 3 1440 6969 2002 97 198 240 25.6339214 -80.4134844 0 0 1 0 0 0 +0 4 2 2127 23750 1942 97 118 280 25.5623943 -80.3807184 0 1 0 0 0 0 +0 1 1.5 740 6969 1967 97 135 275 25.9155732 -80.1863887 0 0 0 0 0 0 +1 4 2 1707 7500 1977 98 275 280 25.658762 -80.380327 0 1 0 0 0 0 +1 1 1.5 896 6969 2017 99 948 846 25.7581064 -80.1924028 0 0 0 0 0 0 +1 4 3 2182 5000 1985 100 140 280 25.5869946 -80.3856762 0 1 0 0 0 0 +1 2 1 1004 6013 1939 103 314 280 25.8505184 -80.1921052 0 1 0 0 0 0 +0 2 1.5 868 6969 1998 105 200 280 25.778974 -80.325325 0 0 0 0 0 0 +1 3 2 1679 7100 1952 107 223 280 25.7582801 -80.2313074 0 1 0 0 0 0 +1 2 2.5 1262 6969 2017 107 871 102 25.7581064 -80.1924028 0 0 0 0 0 0 +0 1 1 688 6969 1964 109 94 302 25.9297265 -80.1736926 0 0 0 0 0 0 +1 4 2 1748 6969 1945 111 280 280 25.8779674 -80.1925017 0 0 0 1 0 0 +1 3 2 1368 15017 1956 113 416 280 25.6488404 -80.3273817 0 1 0 0 0 0 +1 2 2 1116 6969 2004 114 322 631 25.7620552 -80.1935173 0 0 0 0 0 0 +1 2 3 1428 7140 1957 114 389 280 25.8452625 -80.1800304 0 1 0 0 0 0 +1 5 6 4600 17969 2017 118 261 280 25.744643 -80.3723471 0 1 0 0 0 0 +1 2 2 1460 6969 1974 119 394 980 25.750841 -80.1998881 0 0 0 0 0 0 +1 2 3 1041 6969 2007 120 316 700 25.7758982 -80.1900667 0 0 0 0 0 0 +1 2 2 1139 6969 2014 120 716 1007 25.760372 -80.190197 0 0 0 0 0 0 +0 2 2 1132 6969 1966 121 132 334 25.945476 -80.1715399 0 0 0 0 0 0 +0 1 1 540 6969 2008 121 444 487 25.7712819 -80.1876583 0 0 0 0 0 0 +0 1 1.5 782 6969 1969 121 326 500 25.7491305 -80.2018126 0 0 0 0 0 0 +1 3 2.5 2011 5632 1984 124 259 280 25.6789185 -80.3966019 0 1 0 0 0 0 +1 2 2.5 1229 6969 2017 125 689 779 25.8050654 -80.1862369 0 0 0 0 0 0 +1 3 3.5 3050 8525 1950 125 410 280 25.856857 -80.174875 0 1 0 0 0 0 +1 2 2 1030 6969 2008 125 374 720 25.7704554 -80.1942628 0 0 0 0 0 0 +1 5 4 2312 6969 2015 125 172 45 25.6778507 -80.4717155 0 0 1 0 0 0 +1 3 3 2061 6000 1936 126 305 280 25.84158 -80.180634 0 1 0 0 0 0 +1 4 4.5 2543 6969 2017 126 904 1565 25.7655385 -80.1938276 0 0 0 0 0 0 +0 3 1 588 6969 1937 128 372 280 25.7882508 -80.2250513 0 1 0 0 0 0 +1 5 4.5 3340 11342 1952 131 509 280 25.7443741 -80.2203019 0 1 0 0 0 0 +1 3 2 1775 7500 1953 132 214 280 25.7392409 -80.3019631 0 1 0 0 0 0 +1 4 3.5 2650 8418 1976 133 179 280 25.7548363 -80.3998305 0 1 0 0 0 0 +0 1 1.5 651 6969 2007 134 295 430 25.7758982 -80.1900667 0 0 0 0 0 0 +1 3 3 2204 6969 1945 135 154 280 25.7714275 -80.2859746 0 0 0 1 0 0 +0 3 2 1012 7500 1957 141 246 280 25.9716418 -80.1819922 0 1 0 0 0 0 +1 4 2.5 2037 3705 1980 142 167 75 25.756796 -80.410922 0 1 0 0 0 0 +1 3 3.5 1443 6969 2017 142 676 280 25.7656899 -80.1939008 0 0 0 0 0 0 +1 3 3 1537 6969 1939 142 357 280 25.7519967 -80.2274913 0 1 0 0 0 0 +1 1 1 1176 6969 2008 142 259 744 25.7765341 -80.1888665 0 0 0 0 0 0 +1 2 2 1203 6969 2008 146 665 911 25.77699 -80.188798 0 0 0 0 0 0 +1 7 8.5 6858 40249 1998 148 408 280 25.6849964 -80.3008095 0 1 0 0 0 0 +0 1 1.5 930 6969 1975 148 296 522 25.750841 -80.1998881 0 0 0 0 0 0 +1 2 2 1105 6969 2005 148 412 636 25.7619908 -80.1904187 0 0 0 0 0 0 +1 6 4 2670 6969 1955 148 224 280 25.8084294 -80.237991 0 0 0 1 0 0 +1 2 2.5 1440 6969 1981 152 590 830 25.7905292 -80.1789879 0 0 0 0 0 0 +0 3 2 1095 8062 1936 154 160 280 25.8746856 -80.2139835 0 1 0 0 0 0 +1 1 1 783 6969 2016 155 562 605 25.762775 -80.192463 0 0 0 0 0 0 +0 2 2 985 6969 2007 156 277 357 25.756245 -80.238777 0 0 0 0 0 0 +1 6 2 2377 6969 1973 157 229 280 25.747717 -80.220534 0 0 0 1 0 0 +1 4 4 4198 6969 2008 159 1167 2592 25.7825067 -80.1901188 0 0 0 0 0 0 +1 7 8.5 9912 46609 2014 159 499 280 25.6770871 -80.3167407 0 1 0 0 0 0 +1 2 2 1430 6969 1983 160 769 1504 25.7899502 -80.1743516 0 0 0 0 0 0 +1 5 3 2627 6037 1984 166 169 280 25.7624935 -80.3426543 0 1 0 0 0 0 +1 2 2.5 1276 6969 2017 170 650 280 25.7655385 -80.1938276 0 0 0 0 0 0 +1 3 2 1895 7875 1976 175 221 280 25.758636 -80.3409148 0 1 0 0 0 0 +1 2 2 931 6969 2015 183 478 561 25.763224 -80.193432 0 0 0 0 0 0 +1 3 4.5 3730 6969 2003 191 999 3905 25.759088 -80.1918167 0 0 0 0 0 0 +1 3 3.5 2394 6969 2007 205 459 1063 25.7821792 -80.2123712 0 0 0 0 0 0 +0 2 2 1140 6969 1968 207 122 563 25.9458736 -80.1748132 0 0 0 0 0 0 +1 2 2 1390 6969 1986 210 385 280 25.791316 -80.1861552 0 0 0 0 0 0 +1 4 2 2381 11700 1977 211 174 79 25.6686856 -80.4092739 0 1 0 0 0 0 +1 4 5.5 8042 6969 2009 212 1728 6475 25.7849923 -80.1903593 0 0 0 0 0 0 +1 4 1 1281 6250 1925 218 371 280 25.8347385 -80.1867001 0 1 0 0 0 0 +1 2 2 980 6969 2017 219 611 280 25.7656899 -80.1939008 0 0 0 0 0 0 +1 4 2 1404 7800 1954 225 260 280 25.718756 -80.3427423 0 1 0 0 0 0 +1 4 3 2167 6969 2017 230 683 280 25.764055 -80.1923013 0 0 0 0 0 0 +0 2 2 1353 6969 1972 231 163 902 25.8796349 -80.1643874 0 0 0 0 0 0 +1 6 5 3956 16860 1966 236 253 280 25.6707051 -80.309929 0 1 0 0 0 0 +1 2 2 1181 6969 2008 238 372 829 25.8078394 -80.192227 0 0 0 0 0 0 +0 1 1 692 6969 2008 240 389 458 25.8000517 -80.1886459 0 0 0 0 0 0 +1 1 1 806 6969 2008 245 378 280 25.77699 -80.188798 0 0 0 0 0 0 +1 3 3 1544 6969 2010 247 440 1086 25.769549 -80.195165 0 0 0 0 0 0 +1 1 1 876 6969 2009 250 502 733 25.7686625 -80.188727 0 0 0 0 0 0 +1 5 4.5 5078 27225 1993 252 217 280 25.7412475 -80.4186121 0 1 0 0 0 0 +0 2 2 800 6969 1974 253 138 225 25.582241 -80.37606 0 0 0 0 0 0 +1 3 2.5 1655 6969 1997 254 526 1215 25.7679508 -80.186447 0 0 0 0 0 0 +1 2 2 1263 6969 2008 260 499 280 25.8078394 -80.192227 0 0 0 0 0 0 +1 4 3 2713 5000 2004 266 155 280 25.6864649 -80.458274 0 1 0 0 0 0 +1 2 2.5 1203 6969 2017 268 648 788 25.8050525 -80.1855812 0 0 0 0 0 0 +0 3 1 716 6969 1985 271 306 149 25.727219 -80.2448284 0 0 0 0 0 0 +1 2 2 1386 6969 2009 273 476 1590 25.7686625 -80.188727 0 0 0 0 0 0 +1 2 2.5 1255 6969 2008 273 518 280 25.7825067 -80.1901188 0 0 0 0 0 0 +1 1 2 1373 6969 2008 274 283 1004 25.8078394 -80.192227 0 0 0 0 0 0 +1 2 2 1200 6969 2008 286 350 280 25.7684475 -80.1913487 0 0 0 0 0 0 +1 3 4 1898 6969 2017 286 738 1244 25.8050525 -80.1855812 0 0 0 0 0 0 +0 3 1 1290 6148 1938 294 87 280 25.8331706 -80.2127832 0 1 0 0 0 0 +1 2 2 931 6969 2015 295 628 592 25.763224 -80.193432 0 0 0 0 0 0 +1 4 3 3794 39640 1989 301 244 280 25.5572273 -80.4898011 0 1 0 0 0 0 +1 2 2.5 1878 6969 2004 301 932 1541 25.7603319 -80.189341 0 0 0 0 0 0 +1 1 1 977 7500 1980 306 383 280 25.7387666 -80.2981213 0 1 0 0 0 0 +1 2 2 1169 6969 2005 306 385 626 25.7717266 -80.1854236 0 0 0 0 0 0 +1 2 3 1700 6969 1990 307 382 498 25.727731 -80.24122 0 0 0 0 0 0 +0 3 1 481 6969 2007 307 518 280 25.774802 -80.1881439 0 0 0 0 0 0 +1 2 2 1163 6969 2008 309 365 280 25.8129241 -80.1921488 0 0 0 0 0 0 +1 4 3 2610 4376 1994 311 161 350 25.9703507 -80.1971068 0 1 0 0 0 0 +1 1 1.5 777 6969 2014 316 448 750 25.760372 -80.190197 0 0 0 0 0 0 +1 4 3 1971 5219 1987 316 242 280 25.7028929 -80.3619935 0 1 0 0 0 0 +1 4 2 2800 81021 1980 327 175 280 25.5787045 -80.4840756 0 1 0 0 0 0 +1 3 3.5 1595 6969 2017 341 596 1179 25.8087134 -80.1920969 0 0 0 0 0 0 +1 2 2.5 1457 6969 2020 348 540 355 25.8013513 -80.1961915 0 0 0 0 0 0 +0 1 1 660 6969 1965 349 114 189 25.949987 -80.195158 0 0 0 0 0 0 +1 2 2 1099 6969 2008 357 445 700 25.762752 -80.194669 0 0 0 0 0 0 +1 2 2 1256 6969 2004 368 572 916 25.760602 -80.1912562 0 0 0 0 0 0 +1 1 1 791 6969 2004 371 499 520 25.75223 -80.1987521 0 0 0 0 0 0 +1 2 2.5 1168 6969 2008 382 338 971 25.7940769 -80.1870706 0 0 0 0 0 0 +1 3 3 1710 6969 2017 383 614 1450 25.762775 -80.192463 0 0 0 0 0 0 +1 1 1.5 983 6969 2003 385 507 1100 25.7588505 -80.1922125 0 0 0 0 0 0 +1 2 2 986 6969 2008 406 436 589 25.765005 -80.190166 0 0 0 0 0 0 +1 3 3 2580 12600 1968 435 386 280 25.9562428 -80.1526053 0 1 0 0 0 0 +1 3 3.5 2627 6969 2008 455 912 280 25.7692643 -80.1858499 0 0 0 0 0 0 +1 3 2.5 2044 6969 2008 455 773 1100 25.769079 -80.188602 0 0 0 0 0 0 +1 2 2 1303 6969 2002 457 406 280 25.768564 -80.186445 0 0 0 0 0 0 +1 3 3.5 2510 6969 1999 462 717 1336 25.7686886 -80.1831816 0 0 0 0 0 0 +1 1 1 774 6969 2008 481 469 463 25.765005 -80.190166 0 0 0 0 0 0 +0 2 2 1220 6969 1981 492 130 500 25.9540338 -80.1825979 0 0 0 0 0 0 +0 3 1 540 6969 2015 523 498 320 25.763224 -80.193432 0 0 0 0 0 0 +1 5 4.5 3586 8616 2002 541 467 775 25.9543003 -80.1717036 0 1 0 0 0 0 +0 2 3 1950 6969 1975 568 133 1330 25.8809865 -80.1623188 0 0 0 0 0 0 +1 2 2 1280 6969 2007 631 351 850 25.809496 -80.1920435 0 0 0 0 0 0 +1 5 6.5 6300 6969 1997 634 1825 4709 25.7555391 -80.1950766 0 0 0 0 0 0 +1 2 2 1496 6969 1986 644 351 952 25.791316 -80.1861552 0 0 0 0 0 0 +0 3 1 550 6969 1980 659 273 650 25.7901069 -80.1857426 0 0 0 0 0 0 +0 3 1 503 6969 2008 679 463 309 25.792482 -80.187149 0 0 0 0 0 0 +0 3 2 1248 6969 2003 686 240 598 25.7800842 -80.2768697 0 0 0 0 0 0 +1 2 2 1128 6969 2010 817 610 982 25.7965383 -80.1882911 0 0 0 0 0 0 +1 1 1.5 1087 6969 2001 866 497 450 25.7692964 -80.1837068 0 0 0 0 0 0 +1 5 4.5 4119 6969 1989 54.5 123 280 25.6033365 -80.4368988 0 1 0 0 0 0 +0 2 2 1133 8756 1994 1 102 280 28.517233 -81.487336 0 0 0 0 0 0 +0 3 2.5 1659 3120 2006 1 136 237 28.477709 -81.252317 0 0 1 0 0 0 +0 2 2 583 583 1985 1 232 506 28.4566203 -81.4680636 0 0 0 0 0 1 +0 3 2 1311 6839 1977 1 152 15 28.402019 -81.4096754 0 1 0 0 0 0 +0 2 2 1056 7570 1984 1 159 17 28.564035 -81.281313 0 1 0 0 0 0 +0 4 2 1283 10126 1953 4 124 280 28.561312 -81.453476 0 1 0 0 0 0 +0 3 1 1361 10003 1948 4 125 280 28.5545985 -81.4975945 0 1 0 0 0 0 +0 3 2 1152 44281 2000 5 65 280 28.5644374 -81.0967853 1 0 0 0 0 0 +1 4 2.5 3154 6927 2005 5 97 123 28.353945 -81.345807 0 1 0 0 0 0 +0 3 1.5 1040 8800 1971 5 120 280 28.574195 -81.438098 0 1 0 0 0 0 +1 4 3 2796 10255 1925 5 250 280 28.549735 -81.3691786 0 1 0 0 0 0 +0 3 2.5 2345 20395 2005 5 126 25 28.5055608 -81.4666478 0 0 0 0 0 0 +1 5 8 7021 53506 2008 8 327 51 28.4649359 -81.5147674 0 1 0 0 0 0 +0 3 2.5 1515 5000 1986 8 175 35 28.5142862 -81.3382118 0 1 0 0 0 0 +1 4 3.5 2965 5970 2004 12 182 59 28.5681769 -81.3356226 0 1 0 0 0 0 +0 4 2.5 1695 5383 2001 12 171 43 28.3675075 -81.3430891 0 1 0 0 0 0 +0 3 2 1460 6969 1987 14 168 420 28.508188 -81.3628559 0 0 0 0 0 0 +1 3 4 2340 1067 2006 16 205 57 28.56826 -81.328163 0 0 1 0 0 0 +1 5 3 2256 6219 1955 20 186 280 28.5313061 -81.3627122 0 0 0 1 0 0 +0 5 2 1509 6828 1957 22 99 280 28.5013804 -81.4008306 0 1 0 0 0 0 +1 3 2 2277 6146 1920 22 233 280 28.5547448 -81.3696941 0 1 0 0 0 0 +1 4 4 3639 8446 2004 25 110 55 28.4635303 -81.2667459 0 1 0 0 0 0 +1 3 3 1876 10843 1947 27 200 280 28.5177729 -81.3739036 0 1 0 0 0 0 +1 4 4.5 4427 14778 1977 27 164 45 28.5589186 -81.411865 0 1 0 0 0 0 +1 3 2 1746 8804 1943 28 229 280 28.5398888 -81.3552596 0 1 0 0 0 0 +1 2 1 1440 7698 1935 28 257 280 28.5514957 -81.3669878 0 1 0 0 0 0 +1 4 3 3013 19741 1925 28 259 280 28.5906655 -81.3853284 0 1 0 0 0 0 +0 3 2 1512 87256 2007 29 158 280 28.5793009 -81.1034667 0 1 0 0 0 0 +1 3 3.5 2162 1540 2018 30 177 281 28.371292 -81.260694 0 0 1 0 0 0 +0 3 2.5 1485 71604 1991 35 104 45 28.512377 -81.304716 0 0 0 0 0 0 +1 2 2 1832 9385 1951 36 251 280 28.5803262 -81.3678899 0 1 0 0 0 0 +0 4 2 1448 4110 1995 38 131 16 28.6135976 -81.4501935 0 1 0 0 0 0 +0 2 2 975 83466 1963 39 234 280 28.5441283 -81.3765806 0 0 0 0 0 0 +1 5 4.5 6252 26159 1982 39 414 50 28.4543181 -81.5159777 0 1 0 0 0 0 +1 8 4 4850 74160 1983 39 175 4 28.4882991 -81.4714526 0 1 0 0 0 0 +0 3 2.5 1788 2907 2007 42 131 86 28.519458 -81.154938 0 0 1 0 0 0 +0 1 1 885 4997 2000 47 104 280 28.508601 -81.471444 0 0 0 0 0 0 +0 4 3.5 1902 2335 2018 47 145 204 28.599179 -81.274355 0 0 1 0 0 0 +1 5 3 2806 7892 2000 48 113 20 28.3625564 -81.3947976 0 1 0 0 0 0 +0 1 1 621 8897 2002 56 185 280 28.3477765 -81.5156069 0 0 0 0 0 0 +0 2 2 583 583 1985 57 183 534 28.4566203 -81.4680636 0 0 0 0 0 1 +0 1 1 671 671 2008 65 259 575 28.456616 -81.462615 0 0 0 0 0 1 +1 2 2.5 1936 2712 2003 74 201 325 28.558574 -81.332022 0 0 1 0 0 0 +1 4 5 3998 6526 2003 75 180 208 28.4450043 -81.492577 0 1 0 0 0 0 +0 1 1 550 550 1990 79 127 351 28.3997393 -81.4658756 0 0 0 0 0 1 +1 4 3.5 3642 8750 2018 82 160 130 28.42809 -81.22496 0 1 0 0 0 0 +1 4 3 2582 7565 2004 83 131 76 28.5239808 -81.2124223 0 1 0 0 0 0 +0 2 2 868 2117 1984 84 101 48 28.581562 -81.444495 0 0 1 0 0 0 +1 3 2 1800 6499 2017 90 194 280 28.521381 -81.351351 0 1 0 0 0 0 +0 2 1 962 1000 1972 90 69 210 28.574498 -81.4557993 0 0 0 0 0 0 +1 4 2.5 2571 13169 1925 90 282 280 28.5851552 -81.3733882 0 1 0 0 0 0 +0 4 2.5 1774 12360 1981 91 152 280 28.5871404 -81.2717353 0 1 0 0 0 0 +0 3 2 1076 4091 1966 98 129 280 28.556561 -81.3474613 0 0 0 0 0 0 +1 10 6 4548 11221 1971 106 297 280 28.5650755 -81.3635512 0 0 0 0 1 0 +1 3 2.5 2575 32883 2005 106 306 1046 28.5410606 -81.3704458 0 0 0 0 0 0 +1 3 2.5 2926 10627 2017 112 147 4 28.517574 -81.073369 0 0 0 1 0 0 +1 4 2.5 2648 7200 2011 113 155 68 28.437671 -81.5564933 0 1 0 0 0 0 +1 4 4.5 5282 45910 2017 121 291 166 28.398458 -81.230876 0 1 0 0 0 0 +1 3 2.5 2287 5247 2014 121 164 101 28.4919365 -81.4476189 0 1 0 0 0 0 +1 4 2 2236 6640 2015 123 180 48 28.3886115 -81.3425412 0 1 0 0 0 0 +0 3 2 1331 8855 1960 130 118 280 28.5664918 -81.4686856 0 1 0 0 0 0 +1 4 4 4238 17348 2005 131 156 175 28.3989837 -81.2068264 0 1 0 0 0 0 +0 4 3 1997 12936 1991 137 128 280 28.3702552 -81.3586966 0 1 0 0 0 0 +1 4 2.5 2419 4265 2013 147 145 93 28.4875055 -81.4469291 0 1 0 0 0 0 +1 4 3 2497 12409 1992 159 164 33 28.4808338 -81.4935205 0 1 0 0 0 0 +0 3 1 1230 11469 1954 162 102 280 28.5231719 -81.4211806 0 1 0 0 0 0 +0 3 2 1350 6729 2017 163 117 280 28.534512 -81.445584 0 1 0 0 0 0 +0 3 3 1459 1307 2007 167 120 574 28.3489605 -81.5043055 0 0 0 0 0 0 +1 4 3.5 3186 13480 1987 195 196 280 28.5078814 -81.3827515 0 1 0 0 0 0 +1 5 4.5 3030 5500 2004 209 112 95 28.5313176 -81.156596 0 1 0 0 0 0 +0 3 1 1116 8620 1960 213 157 280 28.5198028 -81.2903136 0 1 0 0 0 0 +1 5 6.5 5962 21129 2008 421 502 498 28.410443 -81.2581212 0 1 0 0 0 0 +1 4 3 3150 17595 1972 546 101 50 28.451803 -81.5118519 0 1 0 0 0 0 +0 3 2 1200 1200 2006 642 204 631 28.389813 -81.481758 0 0 0 0 0 1 +1 4 3.5 2515 6969 2018 22 126 280 28.4277 -81.2186 0 1 0 0 0 0 +1 3 2.5 2183 6969 2018 47 191 280 28.3706533 -81.2493874 0 1 0 0 0 0 +1 3 3 2308 6969 2017 85 199 280 28.372196 -81.249998 0 1 0 0 0 0 +1 4 3.5 2395 6969 2017 186 170 280 28.371237 -81.259997 0 0 0 1 0 0 +1 4 3 2261 6969 2017 221 144 280 28.3850494 -81.3461267 0 1 0 0 0 0 +0 2 2 1360 6969 1989 54.5 179 280 28.3647442 -81.2383225 0 0 1 0 0 0 +1 4 3.5 3509 6969 1989 54.5 172 280 28.40854 -81.504307 0 1 0 0 0 0 +0 4 2.5 2029 6969 1989 54.5 132 280 28.36614 -81.36232 0 1 0 0 0 0 +0 3 2.5 1961 6969 1989 54.5 121 280 28.36614 -81.36232 0 1 0 0 0 0 +1 5 4.5 3773 6969 1989 54.5 111 280 28.419708 -81.1903207 0 1 0 0 0 0 +1 3 2.5 2198 6969 1989 54.5 139 280 28.4277156 -81.2185894 0 1 0 0 0 0 +1 3 2.5 2468 6969 1989 54.5 172 280 28.3699612 -81.2324135 0 1 0 0 0 0 +1 4 3 2489 6969 1989 54.5 150 280 28.4331015 -81.5598918 0 1 0 0 0 0 +1 2 2 2188 6969 1989 54.5 156 280 28.370506 -81.259741 0 0 1 0 0 0 +1 4 3.5 3666 6969 1989 54.5 133 280 28.60777 -81.22409 0 1 0 0 0 0 +1 4 2.5 3811 6969 1989 54.5 108 280 28.594762 -81.116404 0 1 0 0 0 0 +0 4 2 2333 6969 1989 54.5 124 280 28.354216 -81.323601 0 1 0 0 0 0 +1 3 2.5 2199 6969 1989 54.5 225 280 28.4099968 -81.5338032 0 1 0 0 0 0 +1 4 3.5 3029 6969 1989 54.5 123 280 28.4042869 -81.2461775 0 1 0 0 0 0 +1 3 2.5 2000 6969 1989 54.5 152 280 28.356211 -81.325802 0 1 0 0 0 0 +0 4 2 1828 6969 1989 54.5 150 280 28.351485 -81.324031 0 1 0 0 0 0 +1 4 3 2108 6969 1989 54.5 145 280 28.36954 -81.3301939 0 1 0 0 0 0 +1 5 4 2622 6969 2018 1 133 78 35.8400516 -78.5537551 0 1 0 0 0 0 +1 3 4 3780 3484 2003 1 127 426 35.9071119 -78.7917358 0 0 1 0 0 0 +1 4 3 3644 6098 2007 1 84 50 35.8652969 -78.51961 0 1 0 0 0 0 +1 4 5 3437 10890 2005 1 147 65 35.9263166 -78.5599411 0 1 0 0 0 0 +1 3 2 2417 6969 1925 5 290 280 35.7721535 -78.6509763 0 1 0 0 0 0 +1 5 5 4145 10454 2005 5 145 69 35.9258735 -78.5599189 0 1 0 0 0 0 +1 4 3 3175 14374 2007 6 142 42 35.6752459 -78.6668655 0 1 0 0 0 0 +0 5 4 2577 6534 2007 12 85 13 35.725992 -78.5397982 0 1 0 0 0 0 +0 3 2 2014 36590 2006 12 91 280 35.6065371 -78.6483178 0 1 0 0 0 0 +1 5 8 8698 140698 2005 17 213 223 35.9466323 -78.6973725 0 1 0 0 0 0 +0 4 3 2509 6969 2005 20 104 35 35.802601 -78.5461432 0 1 0 0 0 0 +0 3 2 1389 7840 1997 26 180 280 35.8698108 -78.7278921 0 1 0 0 0 0 +1 2 2 1510 6969 2005 27 281 412 35.7759185 -78.6385616 0 0 0 0 0 0 +1 4 4 4240 58370 2007 27 177 95 35.9812376 -78.6813117 0 1 0 0 0 0 +0 3 3 2335 6098 2008 28 94 33 35.720191 -78.5403307 0 1 0 0 0 0 +1 5 5 6044 21780 2005 33 296 280 35.8092268 -78.6607278 0 1 0 0 0 0 +1 3 3 4032 64033 2000 41 115 280 35.8881968 -78.5087746 0 1 0 0 0 0 +1 2 4 2281 1742 2014 42 208 237 35.831613 -78.640804 0 0 1 0 0 0 +1 5 4 3000 9147 2018 50 105 150 35.8653035 -78.5179182 0 1 0 0 0 0 +1 4 3 2416 10890 2018 52 207 21 35.8679446 -78.7292143 0 1 0 0 0 0 +1 2 4 2364 1742 2014 56 201 237 35.8303984 -78.6410041 0 0 1 0 0 0 +0 3 2 1584 57063 1996 58 133 280 35.6034756 -78.6258873 0 1 0 0 0 0 +1 3 3 1740 5662 2018 59 252 280 35.7768894 -78.619758 0 1 0 0 0 0 +1 4 3 2638 30056 2018 111 182 40 35.7151500790869 -78.6856189568824 0 1 0 0 0 0 +0 2 1 1024 135036 1956 118 254 280 35.708946 -78.712687 0 1 0 0 0 0 +1 5 7 5115 42688 2017 147 320 100 35.9179038243927 -78.625989547331 0 1 0 0 0 0 +1 3 4 3846 53143 2007 232 120 17 35.7340047 -78.4661586 0 1 0 0 0 0 +1 4 4 2972 10759 2017 250 113 40 35.779602 -78.5336739 0 1 0 0 0 0 +1 2 3 1478 6969 2017 253 250 340 35.7685137 -78.6818821 0 0 0 0 0 0 +1 3 3 1609 9583 1950 267 309 280 35.7987746 -78.6543457 0 1 0 0 0 0 +1 5 6 7161 75358 2002 286 154 133 35.9237785 -78.6167387 0 1 0 0 0 0 +1 4 4 3802 39988 2016 349 184 280 35.918215 -78.685799 0 1 0 0 0 0 +1 3 3 2420 14374 1950 353 252 280 35.8100662 -78.6757507 0 1 0 0 0 0 +1 4 3.5 2806 6969 2017 379 160 280 35.860219 -78.5394533 0 1 0 0 0 0 +1 4 3.5 3694 6969 1989 54.5 154 280 35.7469 -78.7257 0 1 0 0 0 0 +1 4 3.5 3725 6969 1989 54.5 199 280 35.883642 -78.679978 0 1 0 0 0 0 +0 3 2.5 1836 6969 1989 54.5 148 280 35.915635 -78.812061 0 0 1 0 0 0 +1 4 3.5 3667 6969 1989 54.5 121 280 35.64258 -78.697904 0 1 0 0 0 0 +1 4 3.5 3208 6969 1989 54.5 190 280 35.9572 -78.6785 0 1 0 0 0 0 +1 5 3.5 3112 6969 1989 54.5 180 280 35.883487 -78.6896181 0 1 0 0 0 0 +1 4 5 4006 11325 2016 3 198 50 35.7966086 -78.9053625 0 1 0 0 0 0 +1 4 3 3000 3920 2013 13 147 88 35.8328253 -78.9120054 0 1 0 0 0 0 +1 6 5 5308 9278 2006 19 154 83 35.7965535 -78.8111641 0 1 0 0 0 0 +1 5 5 5100 29185 1999 26 141 58 35.7147468 -78.7996581 0 1 0 0 0 0 +1 4 3 2642 5575 2018 49 151 65 35.8559891743025 -78.8969884695198 0 1 0 0 0 0 +1 4 5 3930 10890 1999 55 184 31 35.803764 -78.8248449 0 1 0 0 0 0 +1 2 3 2058 5662 2017 121 206 148 35.819057 -78.876021 0 0 1 0 0 0 +1 5 6 4617 16988 2017 125 259 154 35.8063735961914 -78.7805328369141 0 1 0 0 0 0 +1 3 3 2536 9539 2017 144 192 78 35.7144243 -78.7857813 0 1 0 0 0 0 +1 4 3 3244 6969 2006 151 143 220 35.7030966 -78.7900097 0 1 0 0 0 0 +0 3 3 1878 13068 1984 160 160 280 35.7778965 -78.8178016 0 1 0 0 0 0 +1 4 4 4700 4791 1985 177 174 300 35.742436 -78.797375 0 0 1 0 0 0 +1 5 5 3552 5052 2017 240 151 130 35.7538809231373 -78.752769520591 0 1 0 0 0 0 +1 4 3 2661 6534 2017 242 165 102 35.7746390273212 -78.8740087265239 0 1 0 0 0 0 +1 5 3 2695 2178 2017 270 130 145 35.747697 -78.731033 0 0 1 0 0 0 +1 5 4 3517 9147 2017 417 171 77 35.7685807983808 -78.8912846102031 0 1 0 0 0 0 +1 3 3 1851 6969 2018 43 184 280 35.822563 -78.913038 0 0 1 0 0 0 +1 4 3.5 2761 6969 2017 117 167 280 35.7467 -78.7793 0 1 0 0 0 0 +1 5 4 3635 6969 2017 159 154 280 35.787565 -78.898938 0 1 0 0 0 0 +1 3 2.5 3695 6969 1989 54.5 128 280 35.754221 -78.753219 0 1 0 0 0 0 +1 4 2.5 2744 6969 1989 54.5 154 280 35.8078266 -78.8783661 0 1 0 0 0 0 +1 5 4 3590 6969 1989 54.5 166 280 35.6616634 -78.761379 0 1 0 0 0 0 +1 4 3 2884 6969 1989 54.5 180 280 35.686382 -78.756043 0 1 0 0 0 0 +1 3 3 2711 6969 1989 54.5 198 280 35.8454982 -78.910967 0 1 0 0 0 0 +1 5 3.5 3320 6969 1989 54.5 151 280 35.8068 -78.8835 0 1 0 0 0 0 +1 4 3.5 4020 6969 1989 54.5 184 280 35.7166 -78.8001 0 1 0 0 0 0 +1 5 6 4301 6969 1989 54.5 140 280 35.759851 -78.836775 0 1 0 0 0 0 +1 4 2.5 3002 6969 1989 54.5 135 280 35.8203954 -78.9252107 0 1 0 0 0 0 +1 3 2.5 2004 6969 1989 54.5 161 280 35.803114 -78.804877 0 1 0 0 0 0 +1 4 2.5 3112 6969 1989 54.5 158 280 35.7686712 -78.8902647 0 1 0 0 0 0 +1 4 3.5 3009 6969 1989 54.5 166 280 35.7851315 -78.9026996 0 1 0 0 0 0 +1 4 3 3113 6969 1989 54.5 158 280 35.7851314 -78.9027252 0 1 0 0 0 0 +1 4 3 2651 32016 1965 6 198 280 35.9786181 -78.943519 0 1 0 0 0 0 +0 2 1 1318 20908 1983 6 153 280 35.9194745 -78.8954268 0 1 0 0 0 0 +1 3 3 2777 50747 1974 24 119 280 36.0904174 -78.8875688 0 1 0 0 0 0 +1 3 4 2039 2613 2018 26 152 160 35.924151 -78.7801 0 0 1 0 0 0 +0 4 3 2174 4443 2012 27 131 30 35.868466 -78.853693 0 1 0 0 0 0 +0 3 3 1917 6969 1998 34 130 52 35.9758405 -78.8158104 0 1 0 0 0 0 +1 4 3 2395 21823 2018 40 150 67 36.091935 -78.909712 0 1 0 0 0 0 +1 3 3 2238 5227 2018 40 148 110 35.9135117 -78.9381596 0 0 1 0 0 0 +1 3 3 2977 32234 2018 113 172 48 36.0504 -78.9561 0 1 0 0 0 0 +1 4 3 4769 15638 1962 128 88 280 35.9876144 -78.9318517 0 1 0 0 0 0 +1 5 3 3731 26571 1987 153 131 280 35.950921 -78.9395638 0 1 0 0 0 0 +1 3 4 2322 13285 2017 168 280 280 35.989682 -78.932105 0 1 0 0 0 0 +1 4 4 5252 75358 1997 237 162 36 36.0405785 -78.9514731 0 1 0 0 0 0 +1 5 3.5 2746 6969 2018 7 133 280 35.93951 -78.857181 0 1 0 0 0 0 +1 4 3 2310 6969 2018 36 140 280 35.890683 -78.958397 0 0 1 0 0 0 +1 3 2 1624 6969 2017 90 216 280 35.911945 -78.959395 0 1 0 0 0 0 +1 3 3.5 2570 6969 2017 235 177 280 35.911945 -78.959395 0 1 0 0 0 0 +1 2 2.5 2043 6969 1989 54.5 177 280 35.911945 -78.959395 0 1 0 0 0 0 +1 2 2 1951 6969 1989 54.5 183 280 35.911945 -78.959395 0 1 0 0 0 0 +1 3 3 2941 6534 2000 1 178 34 35.8887431 -79.0710154 0 1 0 0 0 0 +1 4 5 3772 11935 2000 2 183 244 35.83585 -79.0338 0 1 0 0 0 0 +1 5 7 5170 11325 1996 6 121 323 35.8464943 -79.0418612 0 1 0 0 0 0 +1 4 5 4864 87120 2017 10 154 280 35.909049 -79.181184 0 1 0 0 0 0 +0 3 2 1258 60548 1984 12 203 280 36.024503 -79.039738 0 1 0 0 0 0 +1 4 4 3802 16639 2003 13 151 83 35.7804297 -79.0599374 0 1 0 0 0 0 +1 4 3 3132 4356 2007 22 191 82 35.9438941 -79.0895936 0 1 0 0 0 0 +1 4 4 3875 13068 2017 26 187 336 35.841089 -79.060908 0 1 0 0 0 0 +1 3 3 3114 13460 1997 28 160 244 35.8359822 -79.0349533 0 1 0 0 0 0 +1 4 5 4973 13503 2007 29 131 336 35.841787 -79.0609526 0 1 0 0 0 0 +1 5 5 5522 22651 2005 56 136 54 35.9118828 -79.007699 0 1 0 0 0 0 +1 4 3 2164 3833 2018 62 155 130 35.8174338390577 -79.1092611808674 0 1 0 0 0 0 +0 4 3 2028 5227 2018 63 130 35 35.9460661189121 -78.9989940169816 0 1 0 0 0 0 +1 4 4 4172 121968 1908 259 839 280 35.9198485 -79.0465626 0 1 0 0 0 0 +1 5 5 4914 28314 1996 394 114 244 35.8456363 -79.0490126 0 1 0 0 0 0 +1 4 5 2895 8276 1995 1321 159 432 35.8470749 -79.040521 0 1 0 0 0 0 +1 4 3 2860 6969 2018 47 145 280 35.821742 -79.113204 0 1 0 0 0 0 +1 2 2 1904 6969 2018 47 200 280 35.827044 -79.124182 0 1 0 0 0 0 +1 3 2.5 2038 6969 1989 54.5 149 280 35.8292954 -79.1021524 0 1 0 0 0 0 +1 3 3 2584 6969 1989 54.5 160 280 35.8292954 -79.1021524 0 1 0 0 0 0 +0 3 2.5 1760 6969 1989 54.5 156 280 35.8292954 -79.1021524 0 1 0 0 0 0 +1 3 2.5 2735 6969 1989 54.5 137 280 35.8292954 -79.1021524 0 1 0 0 0 0 +1 3 2.5 2198 6969 1989 54.5 156 280 35.818184 -79.1084652 0 1 0 0 0 0 +1 3 3 2066 6969 1989 54.5 192 280 35.8292954 -79.1021524 0 1 0 0 0 0 +1 4 4 3192 6969 1993 2 136 280 30.3235271 -81.592687 0 1 0 0 0 0 +1 4 3 2355 6969 2018 2 130 50 30.111708 -81.520581 0 1 0 0 0 0 +0 3 2 2116 6969 1906 4 77 280 30.3376317 -81.6507302 0 1 0 0 0 0 +0 2 2 1178 6969 2001 4 125 291 30.2576819 -81.5398089 0 0 0 0 0 0 +1 3 2 2240 6969 2016 5 138 65 30.4580409 -81.5338024 0 1 0 0 0 0 +0 3 2.5 2341 6969 2007 6 115 258 30.1285341 -81.5070023 0 0 1 0 0 0 +0 5 3 2511 6969 2018 6 94 42 30.3569774 -81.7695497 0 1 0 0 0 0 +0 4 2 1731 6969 1958 7 95 280 30.3174201 -81.7106683 0 1 0 0 0 0 +0 3 1 828 6969 1955 7 42 280 30.3785538 -81.7016804 0 1 0 0 0 0 +0 3 2 1938 6969 1977 7 143 280 30.1406777 -81.6254069 0 1 0 0 0 0 +1 4 2 2600 6969 1999 8 131 13 30.1710014 -81.6353286 0 1 0 0 0 0 +0 4 2.5 2667 6969 1969 9 104 4 30.367703 -81.5816615 0 1 0 0 0 0 +1 3 2.5 2520 6969 2018 9 151 67 30.287694976981 -81.449464999666 0 1 0 0 0 0 +0 4 2 2270 6969 2003 12 97 33 30.3300169 -81.8497813 0 1 0 0 0 0 +1 5 4.5 4314 6969 2018 12 298 275 30.253126 -81.443928 0 1 0 0 0 0 +0 2 1 810 6969 1966 13 99 280 30.2311181 -81.72518 0 1 0 0 0 0 +0 4 2 1863 6969 2018 22 113 7 30.45621 -81.76475 0 1 0 0 0 0 +1 3 2 2528 6969 2015 22 232 8 30.293131 -81.476999 0 1 0 0 0 0 +0 2 2 1429 6969 1973 27 28 375 30.326779 -81.577759 0 0 0 0 0 0 +0 3 1 952 6969 1945 29 120 280 30.3154455 -81.5837836 0 1 0 0 0 0 +0 4 2 1796 6969 1990 30 103 280 30.4772234 -81.5777652 0 1 0 0 0 0 +1 4 3 2654 6969 2015 31 154 30 30.114084 -81.453472 0 1 0 0 0 0 +0 3 2 1770 6969 2004 32 127 36 30.4847396 -81.5700326 0 1 0 0 0 0 +1 3 3.5 2912 6969 2018 33 360 220 30.345683 -81.411112 0 1 0 0 0 0 +0 3 2 1284 6969 2007 34 129 310 30.243109 -81.59193 0 0 0 0 0 0 +0 3 1 883 6969 1953 35 88 280 30.3149874 -81.71085 0 1 0 0 0 0 +1 4 3.5 2693 6969 1989 36 148 15 30.306777 -81.4469752 0 1 0 0 0 0 +0 2 2 1338 6969 2003 38 213 280 30.3269041 -81.6637258 0 0 0 0 0 0 +0 4 2 2159 6969 1999 39 132 117 30.187876 -81.7741307 0 1 0 0 0 0 +0 2 2 1797 6969 2008 40 105 239 30.126433 -81.538208 0 0 0 0 0 0 +0 4 1 1854 6969 1959 42 94 280 30.2770861 -81.5875101 0 1 0 0 0 0 +0 3 2 1613 6969 2002 42 127 20 30.1447459 -81.5670752 0 1 0 0 0 0 +0 3 2 1728 6969 2002 42 75 280 30.4047608 -81.6923486 0 1 0 0 0 0 +0 2 1 572 6969 1960 45 51 280 30.360569 -81.738634 0 1 0 0 0 0 +1 4 3 2238 6969 1995 47 208 115 30.2816153 -81.4669276 0 1 0 0 0 0 +1 3 3.5 3497 6969 2005 51 256 280 30.2304251 -81.619434 0 1 0 0 0 0 +0 4 2 1326 6969 1948 51 136 280 30.3084393 -81.7225656 0 1 0 0 0 0 +0 3 1 1216 6969 1948 55 53 280 30.3841392 -81.640389 0 1 0 0 0 0 +0 3 1 1164 6969 1948 57 102 280 30.2777386 -81.7335253 0 1 0 0 0 0 +0 3 2 986 6969 1980 60 115 280 30.205084 -81.7939038 0 1 0 0 0 0 +1 3 2 1710 6969 1939 61 272 280 30.20159 -81.591128 0 1 0 0 0 0 +0 3 2 1309 6969 1954 62 69 280 30.3315567 -81.5943754 0 1 0 0 0 0 +0 3 2 1672 6969 1957 62 84 280 30.2507555 -81.7231215 0 1 0 0 0 0 +0 3 2.5 1637 6969 1958 67 107 280 30.2231007 -81.7345359 0 1 0 0 0 0 +0 5 4 2126 6969 1942 71 87 280 30.2418995 -81.7470111 0 1 0 0 0 0 +0 3 2 1501 6969 1980 76 93 280 30.1946557 -81.7633848 0 1 0 0 0 0 +0 3 1 849 6969 1951 79 68 280 30.3946563 -81.7457304 0 1 0 0 0 0 +0 7 3 2378 6969 1957 85 97 280 30.272762 -81.841372 0 0 0 1 0 0 +0 3 2 1215 6969 1941 86 123 280 30.314935 -81.723513 0 1 0 0 0 0 +1 4 3 2512 6969 1994 91 150 29 30.183331 -81.639586 0 1 0 0 0 0 +0 3 2.5 2520 6969 2017 92 115 56 30.218196868897 -81.805252075195 0 1 0 0 0 0 +0 5 3 2511 6969 2017 92 94 7 30.460499 -81.762381 0 1 0 0 0 0 +1 4 3.5 2744 6969 2017 98 137 42 30.1815 -81.5909 0 1 0 0 0 0 +1 3 2.5 1632 6969 1919 99 260 280 30.3134657 -81.6996825 0 1 0 0 0 0 +0 3 1 1179 6969 1955 107 85 280 30.3306136 -81.5908791 0 1 0 0 0 0 +1 4 4.5 3100 6969 2018 112 208 375 30.2194 -81.612383 0 1 0 0 0 0 +1 4 3.5 2440 6969 2017 112 216 375 30.219494 -81.613199 0 1 0 0 0 0 +1 2 2 1338 6969 2003 116 248 599 30.3269041 -81.6637258 0 0 0 0 0 0 +0 3 2 1275 6969 1949 118 59 280 30.3824167 -81.6679969 0 1 0 0 0 0 +0 4 2 1325 6969 1962 120 125 280 30.359242 -81.5910651 0 1 0 0 0 0 +1 3 2.5 1990 6969 1959 120 156 280 30.2527342 -81.6309931 0 1 0 0 0 0 +0 3 1.5 1232 6969 1949 121 45 280 30.3455143 -81.6926677 0 1 0 0 0 0 +0 4 2.5 2495 6969 2016 122 109 42 30.528948 -81.616375 0 1 0 0 0 0 +0 3 1 1116 6969 1954 124 36 280 30.3227803 -81.7201714 0 1 0 0 0 0 +0 3 2 1220 6969 2015 129 106 280 30.317385 -81.5627536 0 1 0 0 0 0 +0 3 1 816 6969 1959 131 100 280 30.424241 -81.6614947 0 1 0 0 0 0 +0 1 1 1033 6969 1954 131 126 280 30.2893891 -81.7934572 0 1 0 0 0 0 +0 3 2 1704 6969 1947 132 100 280 30.3349148 -81.5999418 0 1 0 0 0 0 +0 4 4 2566 6969 2017 139 115 67 30.440822601318 -81.704200744629 0 1 0 0 0 0 +0 4 2 2020 6969 2017 151 111 14 30.454571 -81.759231 0 1 0 0 0 0 +1 5 6 6878 6969 1929 195 479 280 30.2673953 -81.7007791 0 1 0 0 0 0 +0 3 3 1765 6969 1973 196 88 280 30.2080152 -81.6202296 0 0 0 0 0 0 +0 4 2 2135 6969 2017 225 121 56 30.218196868897 -81.805252075195 0 1 0 0 0 0 +1 4 3.5 2995 6969 2017 230 130 67 30.296688079834 -81.442176818848 0 1 0 0 0 0 +0 4 2 1276 6969 1972 232 82 280 30.4142064 -81.731426 0 1 0 0 0 0 +1 3 2 2496 6969 1955 262 481 280 30.503878 -81.54857 0 1 0 0 0 0 +0 3 3 2438 6969 1981 266 88 280 30.3036715 -81.830353 0 1 0 0 0 0 +1 4 2.5 2757 6969 2017 280 120 46 30.217420578003 -81.828819274902 0 1 0 0 0 0 +0 3 2 1753 6969 1978 296 47 280 30.523579 -81.7417599 0 1 0 0 0 0 +0 4 2 2084 6969 2017 296 113 35 30.47158 -81.625673 0 1 0 0 0 0 +1 7 7.5 6823 6969 1941 310 202 280 30.315029 -81.608591 0 1 0 0 0 0 +1 4 3 2442 6969 2017 359 176 164 30.219775 -81.502026 0 1 0 0 0 0 +0 3 1.5 1416 6969 1955 365 84 280 30.4706397 -81.6537166 0 1 0 0 0 0 +1 5 3.5 3811 6969 1989 54.5 125 280 30.1446628 -81.6434249 0 1 0 0 0 0 +0 4 2 1698 6969 1989 54.5 108 280 30.3540718 -81.771277 0 1 0 0 0 0 +1 4 3.5 3330 6969 1989 54.5 132 280 30.223175 -81.505391 0 1 0 0 0 0 +0 2 2 1453 6969 1989 54.5 164 280 30.1066268 -81.5191341 0 1 0 0 0 0 +1 4 3.5 2877 6969 1989 54.5 153 280 30.1446628 -81.6434249 0 1 0 0 0 0 +1 4 3 2844 6969 1989 54.5 131 280 30.180892 -81.5927067 0 1 0 0 0 0 +0 3 2 2254 6969 1989 54.5 123 280 30.3499 -81.5498 0 1 0 0 0 0 +1 5 3.5 3453 6969 1989 54.5 110 280 30.187573382593 -81.842479705811 0 0 1 0 0 0 +0 5 3 2511 6969 1989 54.5 96 280 30.3594332 -81.5609032 0 1 0 0 0 0 +0 3 2 1646 6969 1989 54.5 176 280 30.2817 -81.4932 0 1 0 0 0 0 +0 4 3 1871 6969 1989 54.5 114 280 30.536543 -81.620101 0 1 0 0 0 0 +0 4 2 2606 6969 1989 54.5 97 280 30.536543 -81.620101 0 1 0 0 0 0 +1 5 4 4099 6969 1989 54.5 75 280 30.536543 -81.620101 0 1 0 0 0 0 +1 4 2 3917 1707 1910 1 146 280 40.82437 -73.8992782 0 0 0 1 0 0 +1 11 6.5 3000 2000 1990 1 467 280 40.604625 -73.9591049 0 0 0 1 0 0 +1 4 3 1938 2400 1925 1 712 280 40.6351404 -74.0288647 0 0 0 1 0 0 +1 8 3.5 2508 2600 1925 2 269 280 40.695862 -73.789965 0 0 0 1 0 0 +1 1 1 747 6969 1949 2 574 325 40.7318951 -73.8540818 0 0 0 0 0 0 +1 3 1.5 1188 2753 1950 3 841 280 40.752156 -73.8135269 0 0 1 0 0 0 +1 5 2.5 2052 2300 1989 5 241 280 40.643053 -73.911291 0 0 0 1 0 0 +1 6 3 1575 2000 1930 6 921 280 40.618063 -74.007866 0 0 0 1 0 0 +1 3 2 1376 2400 1970 6 414 280 40.5700738 -74.1228155 0 1 0 0 0 0 +1 16 6 5712 3200 1930 6 411 280 40.70772 -73.893726 0 0 0 0 1 0 +1 4 3 3595 12375 1992 7 334 280 40.5175383 -74.2109853 0 1 0 0 0 0 +1 3 2 1600 10988 1980 7 531 280 40.618345 -74.093655 0 1 0 0 0 0 +1 3 3 1224 720 1989 8 261 220 40.6349347 -74.1688954 0 1 0 0 0 0 +1 2 1 900 6969 1941 8 389 280 40.8860737 -73.9065373 0 0 0 0 0 0 +1 3 2 2574 4000 1970 9 334 280 40.6000552 -74.1393234 0 0 1 0 0 0 +1 3 3 1008 4000 1955 9 624 280 40.682151 -73.80053 0 1 0 0 0 0 +1 3 1.5 1080 2000 1910 9 972 280 40.6157169 -73.947401 0 1 0 0 0 0 +0 1 1 666 6969 1966 9 353 407 40.6570179 -73.878154 0 0 0 0 0 0 +1 9 6 3960 2910 1994 12 505 280 40.595354 -73.991869 0 0 0 1 0 0 +1 0 1 516 6969 1962 12 1432 280 40.7361064 -73.9865382 0 0 0 0 0 0 +1 3 3 2250 6968 1905 13 400 280 40.6261819 -74.1325981 0 0 0 1 0 0 +1 3 4 2400 2625 2004 15 287 280 40.590469 -74.147066 0 1 0 0 0 0 +0 1 1 750 6969 1968 15 212 280 40.9056542 -73.8586761 0 0 0 0 0 0 +0 1 1 875 6969 1968 15 177 280 40.9056542 -73.8586761 0 0 0 0 0 0 +1 3 3 3360 5000 1930 16 268 280 40.845473 -73.8219416 0 0 0 1 0 0 +1 3 2 1636 1641 1950 16 482 280 40.727042 -73.87748 0 0 1 0 0 0 +1 3 2 1365 6969 1989 16 512 314 40.7951503 -73.8468506 0 0 0 0 0 0 +1 6 3 1219 3300 2011 17 1312 280 40.758621 -73.801107 0 0 0 1 0 0 +1 3 2 1450 6969 1953 20 482 280 40.8828679 -73.9112962 0 0 0 0 0 0 +1 4 2 2000 2916 2007 20 475 280 40.622804 -73.907368 0 1 0 0 0 0 +1 6 2.5 2020 5000 1925 21 475 280 40.786387 -73.850708 0 1 0 0 0 0 +1 3 3 2400 4300 1965 21 354 280 40.5528222 -74.1711308 0 0 1 0 0 0 +1 2 1 701 6969 2018 21 820 259 40.7203369 -73.8087168 0 0 0 0 0 0 +1 1 1 755 6969 1953 22 661 280 40.6475359 -73.9755189 0 0 0 0 0 0 +1 4 4 3000 1899 1931 22 533 280 40.6921351 -73.9497475 0 0 0 1 0 0 +1 3 2 1945 5000 1930 22 354 280 40.57602 -74.1155196 0 1 0 0 0 0 +1 3 2.5 1292 2000 1925 22 618 280 40.6288132 -73.9452939 0 1 0 0 0 0 +1 6 4 2295 3049 1920 23 327 280 40.8370531 -73.8362778 0 0 0 1 0 0 +1 2 1.5 1944 6115 1899 23 412 280 40.8545797 -73.790882 0 1 0 0 0 0 +0 1 1 850 849 1955 23 235 280 40.8831467 -73.920854 0 0 0 0 0 0 +1 3 2 1197 1484 1987 23 358 1093 40.6112436 -74.0942048 0 0 0 0 0 0 +0 1 1 700 6969 1952 27 284 280 40.7089277 -73.827086 0 0 0 0 0 0 +1 2 1 807 6969 1940 28 520 558 40.7680633 -73.8922401 0 0 0 0 0 0 +1 3 4 1500 2678 2018 28 453 280 40.5656197 -74.1041522 0 1 0 0 0 0 +1 2 1 691 691 1920 28 854 667 40.6603044 -73.9789845 0 0 0 0 0 0 +1 8 3 3000 2000 1989 28 300 280 40.6437079 -73.991905 0 0 0 1 0 0 +1 4 3 890 1102 2005 29 730 280 40.8226881 -73.9021681 0 0 0 1 0 0 +1 2 1 900 6969 1924 29 511 280 40.6280062 -74.0257695 0 0 0 0 0 0 +1 2 1.5 992 1953 1920 30 845 280 40.6325999 -74.019672 0 1 0 0 0 0 +0 2 1 1000 6969 1928 30 238 280 40.9025345 -73.9061716 0 0 0 0 0 0 +1 3 3 1792 2376 1980 30 324 280 40.604545 -74.160818 0 1 0 0 0 0 +1 6 3 1500 3123 1901 30 453 280 40.869798 -73.887295 0 0 0 1 0 0 +1 5 3 2577 3817 1925 33 873 280 40.6292359 -74.0346153 0 1 0 0 0 0 +1 4 2 1982 2857 1899 33 343 280 40.8820467 -73.857424 0 0 0 1 0 0 +1 6 2 2824 2099 1975 34 230 280 40.872824 -73.857781 0 0 0 1 0 0 +1 8 2 3350 2500 1925 34 224 280 40.819198 -73.886908 0 0 0 1 0 0 +1 3 2 1332 1800 1925 34 487 280 40.614643 -74.101641 0 1 0 0 0 0 +1 2 1.5 2240 1200 1989 35 670 280 40.5989721 -73.9782445 0 1 0 0 0 0 +1 4 3.5 2360 2000 1989 35 678 280 40.6189661 -74.0079895 0 0 0 1 0 0 +0 2 1 850 6969 1955 36 235 280 40.6142545 -73.9216976 0 0 0 0 0 0 +1 5 2.5 2850 1910 1990 37 414 280 40.693429 -73.914323 0 0 0 1 0 0 +1 3 3 4360 2000 1899 37 367 280 40.6835284 -73.9504514 0 1 0 0 0 0 +1 6 3.5 1900 1900 1925 41 605 280 40.703744 -73.885731 0 0 0 1 0 0 +1 5 4 2496 4000 1970 42 304 280 40.558455 -74.1336253 0 0 1 0 0 0 +1 4 4 3600 2000 1892 42 639 280 40.6807603 -73.9329386 0 0 0 1 0 0 +1 3 1.5 1678 3600 1925 42 953 280 40.6087967 -73.9461426 0 1 0 0 0 0 +1 4 2 1838 1581 1901 42 380 280 40.8198884 -73.927727 0 0 1 0 0 0 +1 6 3 2244 6072 1910 42 289 280 40.642953 -74.087853 0 0 1 0 0 0 +1 2 2 1178 6969 1960 43 552 280 40.5759868 -73.95605 0 0 0 0 0 0 +1 2 2.75 2024 2063 1989 43 686 280 40.6030048 -74.0146115 0 0 0 1 0 0 +1 4 3.5 2445 4000 2012 43 716 280 40.7516679 -73.771297 0 1 0 0 0 0 +1 4 4.75 4200 23250 1951 44 445 280 40.5265593 -74.223802 0 1 0 0 0 0 +1 3 2.5 2465 4000 1959 44 649 280 40.6079543 -73.9032126 0 1 0 0 0 0 +1 5 2.5 2160 2834 1999 47 338 280 40.547045 -74.215917 0 1 0 0 0 0 +1 2 1 900 6969 1960 47 499 280 40.7305434 -73.8516104 0 0 0 0 0 0 +1 4 2 1408 2263 1905 47 305 280 40.637243 -74.1154197 0 0 1 0 0 0 +0 2 1 1000 6969 1955 49 198 280 40.734848 -73.8232512 0 0 0 0 0 0 +1 2 2 1478 1260 1992 50 297 90 40.5366144 -74.219801 0 1 0 0 0 0 +1 2 2 690 6969 2007 57 543 392 40.7103831 -73.7859917 0 0 0 0 0 0 +1 5 3.5 2880 2736 1960 58 465 280 40.610202 -73.976001 0 0 0 1 0 0 +1 3 3 1756 1026 1983 58 268 307 40.6029103 -74.1707981 0 1 0 0 0 0 +1 6 4 1350 4000 2018 58 1332 280 40.765307 -73.766249 0 0 0 1 0 0 +1 1 1 696 6969 2017 63 1134 415 40.719563 -73.841564 0 0 0 0 0 0 +1 3 1 1524 2500 1920 64 318 280 40.6142958 -74.0695985 0 1 0 0 0 0 +1 4 3 2200 4650 1950 65 617 280 40.7680116 -73.7951043 0 0 0 1 0 0 +1 3 1.5 1210 3200 1955 69 702 280 40.766045 -73.792522 0 1 0 0 0 0 +1 6 3 2640 2591 1901 76 246 280 40.8167422 -73.903109 0 0 0 1 0 0 +1 3 2 1300 3408 1999 77 446 280 40.5523486 -74.2113177 0 1 0 0 0 0 +1 3 2.25 2322 1800 1910 77 452 280 40.6510404 -73.9484157 0 0 0 1 0 0 +1 3 2.5 921 1942 1910 80 543 280 40.840088 -73.92273 0 0 0 1 0 0 +1 3 1.5 2012 2000 1940 82 447 280 40.5972355 -73.9464641 0 1 0 0 0 0 +1 3 1.5 1150 2000 1993 82 474 280 40.5704875 -74.125667 0 1 0 0 0 0 +1 5 3 2664 4100 1910 82 225 280 40.6402334 -74.0891935 0 1 0 0 0 0 +1 2 1.5 975 6969 1989 83 666 280 40.634005 -73.968892 0 0 0 0 0 0 +1 3 1 1400 6969 1955 86 356 280 40.73526 -73.8666067 0 0 0 0 0 0 +1 1 1 700 6969 1988 89 599 375 40.7440677 -73.8354757 0 0 0 0 0 0 +1 2 1 950 6969 1960 90 631 280 40.6339937 -74.0363466 0 0 0 0 0 0 +0 1 1 900 6969 1958 90 211 280 40.908552 -73.896916 0 0 0 0 0 0 +1 3 5 1320 2240 2006 91 446 280 40.511767 -74.248688 0 1 0 0 0 0 +1 4 2 816 2500 1930 92 1532 280 40.606029 -74.001926 0 0 0 1 0 0 +1 2 1 1100 6969 1941 92 335 280 40.6341076 -73.9517855 0 0 0 0 0 0 +1 6 4.5 2760 2000 1960 92 362 280 40.611228 -73.9213661 0 0 0 1 0 0 +1 5 2.75 2052 2800 1989 93 682 280 40.603964 -73.912657 0 0 0 1 0 0 +1 3 2 1224 2000 1899 96 489 280 40.6757135 -73.8742615 0 1 0 0 0 0 +1 3 1 1840 1924 1989 100 646 280 40.6201311 -74.0264646 0 0 0 1 0 0 +1 3 1.5 1840 1572 1945 103 236 280 40.890018 -73.848774 0 1 0 0 0 0 +1 3 2 1182 6660 1965 107 634 280 40.6139222 -74.165489 0 1 0 0 0 0 +0 2 1 819 6969 1956 110 365 280 40.7327264 -73.9001426 0 0 0 0 0 0 +1 2 1 900 6969 1963 111 433 280 40.9068884 -73.9059823 0 0 0 0 0 0 +1 5 3 2205 840 2007 112 306 280 40.6882394 -73.8738641 0 0 0 1 0 0 +1 4 4 3300 9000 2004 118 364 280 40.5511677 -74.1878257 0 0 1 0 0 0 +1 4 2 1400 2000 1935 120 557 280 40.763965 -73.884702 0 0 1 0 0 0 +1 11 6 3246 5000 1931 125 277 280 40.6365435 -74.1653514 0 0 0 0 1 0 +1 3 2 1567 4800 1983 1 421 280 33.9048814 -117.7722014 0 1 0 0 0 0 +1 4 2.75 2706 6389 2003 1 370 250 33.4556206 -117.6225756 0 1 0 0 0 0 +1 3 2.5 2339 9775 1989 1 556 127 33.4534029 -117.6393514 0 1 0 0 0 0 +1 5 3 2864 4500 2014 1 347 215 33.4897095 -117.6422957 0 0 0 0 0 0 +1 3 2.5 1800 3600 2017 2 411 227 33.5264704 -117.6288156 0 1 0 0 0 0 +1 4 3.5 3390 8871 2003 2 764 478 33.625685 -117.8185369 0 1 0 0 0 0 +1 4 3.5 2477 8023 1969 2 898 110 33.6223018 -117.8531681 0 1 0 0 0 0 +1 2 2 1252 6969 2001 2 375 494 33.559983 -117.633972 0 0 0 0 0 0 +1 3 2.5 2500 3816 1998 2 900 235 33.6069288 -117.8240891 0 1 0 0 0 0 +1 6 2.5 2882 6900 1972 2 312 21 33.5669211 -117.658259 0 1 0 0 0 0 +1 4 2 1540 12600 1968 3 451 280 33.8740681 -117.8282534 0 1 0 0 0 0 +1 5 3.5 3500 10379 1965 4 429 280 33.9009843 -117.9109233 0 1 0 0 0 0 +1 4 3 2775 6000 1997 4 1003 345 33.6219429 -117.8870632 0 1 0 0 0 0 +1 5 4.5 4302 10400 1983 5 759 305 33.6295231 -117.8645164 0 1 0 0 0 0 +1 3 2 1450 7200 1956 5 434 280 33.8223127 -117.9345799 0 1 0 0 0 0 +1 3 2 1367 2534 1963 5 366 260 33.886297 -117.870092 0 1 0 0 0 0 +1 3 2 1673 5940 1958 5 338 280 33.7189966 -117.8994611 0 1 0 0 0 0 +1 3 2 1083 1816 1989 5 396 339 33.686924 -117.626862 0 0 0 0 0 0 +1 3 2.5 1771 6969 1993 5 353 300 33.796216 -117.818397 0 0 1 0 0 0 +1 3 2 1501 9405 1960 6 506 280 33.8279179 -117.831288 0 1 0 0 0 0 +1 4 4.5 3258 5893 2011 6 457 258 33.596211 -117.7248523 0 1 0 0 0 0 +1 3 1.5 1213 7425 1959 6 482 280 33.7856521 -118.0116295 0 1 0 0 0 0 +1 2 2 1210 1210 1994 6 443 306 33.756072 -117.766309 0 0 0 0 0 0 +1 5 4 4000 9350 1993 6 325 230 33.6002943 -117.5803547 0 1 0 0 0 0 +1 3 1.75 1247 6533 1955 7 481 280 33.8486738 -118.0236363 0 1 0 0 0 0 +1 2 1.5 1102 6969 1974 7 327 347 33.7567474 -117.8426735 0 0 1 0 0 0 +1 4 1.75 1870 7000 1966 9 454 280 33.8114909 -117.820679 0 1 0 0 0 0 +1 4 4.5 3642 6969 1995 9 713 670 33.6046523 -117.8328924 0 0 0 0 0 0 +1 5 5.25 3814 5126 2018 9 371 212 33.6917217 -117.6610854 0 1 0 0 0 0 +1 3 2.5 2889 10500 1990 9 460 280 33.5204288 -117.6498164 0 1 0 0 0 0 +1 3 2.5 1622 4343 2001 12 369 280 33.8657569 -117.8310224 0 1 0 0 0 0 +0 1 1 800 6969 1962 12 263 452 33.765515 -118.079731 0 0 0 0 0 0 +1 4 2.5 2116 6000 1965 12 307 280 33.8198901 -118.0201925 0 1 0 0 0 0 +0 1 1 596 6969 1972 13 453 300 33.779504 -117.860757 0 0 0 0 0 0 +1 4 2.5 2584 6000 1987 13 329 275 33.7854973 -117.7842178 0 1 0 0 0 0 +1 5 6 5337 7083 1998 13 861 280 33.6172487 -117.9119342 0 1 0 0 0 0 +1 2 1 1008 871 1978 13 346 320 33.889892 -117.846557 0 0 0 0 0 0 +1 4 4.5 3764 23000 2000 13 823 280 33.5509639 -117.7598491 0 1 0 0 0 0 +1 3 3.5 4000 12845 2001 13 1199 650 33.603379 -117.8179147 0 1 0 0 0 0 +1 2 2.5 1493 1000 2008 14 401 286 33.9032221 -117.7845112 0 0 1 0 0 0 +1 5 3 3258 7134 1970 14 269 280 33.8144225 -117.9563401 0 1 0 0 0 0 +1 2 2 1575 3825 1977 14 460 200 33.5519776 -117.703736 0 1 0 0 0 0 +1 3 2.5 2700 6000 1975 15 343 118 33.621638 -117.580804 0 1 0 0 0 0 +1 5 4.5 3580 17325 1991 15 388 280 33.8834856 -117.8114792 0 1 0 0 0 0 +1 5 3 2372 13090 1959 16 407 280 33.8806634 -117.8046524 0 1 0 0 0 0 +1 3 1 1380 5400 1926 17 326 280 33.7360329 -117.8620258 0 1 0 0 0 0 +1 5 3 2507 4417 2000 17 369 200 33.458698 -117.5819071 0 1 0 0 0 0 +1 2 2 1423 6969 2015 19 432 219 33.676616 -117.6608821 0 0 0 0 0 0 +1 4 1 4357 5280 2017 19 402 297 33.6772824 -117.708414 0 1 0 0 0 0 +1 5 3.5 3498 18730 1967 20 343 280 33.9076943 -117.9171066 0 1 0 0 0 0 +1 6 6.5 8010 43560 2001 20 249 280 33.929626 -117.8008997 0 1 0 0 0 0 +1 2 2 984 6969 1986 20 690 380 33.6416935 -117.8641574 0 0 0 0 0 0 +1 2 2 2167 6969 1970 23 872 740 33.613338 -117.878898 0 0 0 0 0 0 +1 2 2.25 1223 6969 2018 25 448 248 33.5264704 -117.6288156 0 0 1 0 0 0 +1 4 3.25 2436 20000 1977 25 468 280 33.8578109 -117.7637722 0 1 0 0 0 0 +1 2 2 1472 6969 2013 26 611 275 33.6519526 -117.9814429 0 0 0 0 0 0 +1 2 2 2216 5460 2017 26 447 303 33.911446 -117.847371 0 1 0 0 0 0 +1 3 2.5 2846 2500 1984 26 527 799 33.4663899 -117.694216 0 0 0 0 0 0 +1 3 2.5 2002 5219 1988 26 409 441 33.6174691 -117.5851031 0 1 0 0 0 0 +1 5 4.5 5031 21998 2004 27 298 280 33.8558358 -117.7569416 0 1 0 0 0 0 +1 3 2.5 1700 1876 1974 27 394 399 33.4265999 -117.6092812 0 0 1 0 0 0 +1 4 3.5 2400 3049 1972 28 885 280 33.5267806 -117.7610805 0 1 0 0 0 0 +1 3 2.5 1280 6969 1986 33 403 335 33.6562121 -117.6447268 0 0 0 0 0 0 +1 4 2.5 2179 10350 1987 33 394 40 33.8346773 -117.8255328 0 1 0 0 0 0 +1 3 2.5 2730 4000 1990 34 329 560 33.605794 -117.58606 0 0 1 0 0 0 +1 4 4.5 3693 8134 2004 35 718 478 33.6209384 -117.8200989 0 1 0 0 0 0 +1 5 2 1441 8712 1924 37 833 280 33.6509355 -117.9174108 0 0 0 1 0 0 +1 4 2 1479 6100 1955 37 426 280 33.8435799 -117.9447591 0 1 0 0 0 0 +1 4 3 3367 16000 1991 37 355 22 33.4327609 -117.5989508 0 1 0 0 0 0 +0 2 1 676 6969 1996 37 15 280 33.9257962 -117.8049573 1 0 0 0 0 0 +1 2 1 798 6969 1972 40 381 250 33.4960581 -117.6704643 0 0 0 0 0 0 +1 3 2.5 1689 4800 1967 40 400 280 33.8570776 -118.0397036 0 1 0 0 0 0 +1 5 3.5 4440 9000 1988 40 348 210 33.6405639 -117.6266177 0 1 0 0 0 0 +1 1 1 896 900 1973 41 396 365 33.4091846 -117.5991995 0 0 0 0 0 0 +1 5 4 2578 6016 1991 42 419 280 33.7437922 -117.8616147 0 0 0 1 0 0 +1 2 1 857 2852 1961 42 757 280 33.7930715 -117.8599623 0 1 0 0 0 0 +1 2 2 1520 6969 2006 43 451 1000 33.6740315 -117.8431399 0 0 0 0 0 0 +1 4 2 1308 6180 1949 43 420 280 33.718686 -117.8828756 0 1 0 0 0 0 +1 5 2.75 2938 9270 1977 48 305 280 33.8931776 -117.9684204 0 1 0 0 0 0 +1 2 1 1150 1000 1962 49 321 366 33.7670556 -118.0831831 0 0 0 0 0 0 +1 4 3 2077 3200 2011 50 599 280 33.6452165 -117.7596457 0 0 0 0 0 0 +1 5 4.75 3116 6751 2005 50 770 410 33.6277718 -117.8225566 0 1 0 0 0 0 +1 6 6.5 5047 6532 2013 50 458 383 33.7012488 -117.7135348 0 1 0 0 0 0 +1 5 2.5 2886 8000 1995 54 433 280 33.871946 -117.8539164 0 1 0 0 0 0 +1 5 4.5 2753 3700 2015 54 541 197 33.739273 -117.753502 0 1 0 0 0 0 +1 4 3 2104 3825 1978 55 368 200 33.5522626 -117.7061527 0 1 0 0 0 0 +1 3 2.5 1742 1500 2018 55 360 227 33.5264704 -117.6288156 0 0 1 0 0 0 +1 3 1 1300 6500 1931 57 381 280 33.9325729 -117.9536012 0 1 0 0 0 0 +1 2 2 1032 6969 1972 57 368 460 33.6591194 -117.9756729 0 0 0 0 0 0 +1 5 4.75 4048 7000 2005 58 1157 615 33.572931 -117.832288 0 1 0 0 0 0 +1 3 2 1344 1437 1992 61 372 325 33.6492376 -117.5846307 0 0 0 0 0 0 +1 5 5 6895 16048 1992 62 391 280 33.518629 -117.657882 0 1 0 0 0 0 +1 3 3 1621 6969 1995 63 709 453 33.6034544 -117.8256129 0 0 1 0 0 0 +1 4 4.5 4170 9500 2017 64 454 280 33.8920447 -117.888865 0 1 0 0 0 0 +0 2 2 1122 435600000 1975 64 267 657 33.6084074 -117.7516774 0 0 0 0 0 0 +0 1 1 700 735 1952 75 257 650 33.7477758 -118.1105973 1 0 0 0 0 0 +1 6 6.5 4377 8541 2016 76 568 198 33.6699659 -117.68054 0 1 0 0 0 0 +1 4 3 2011 5500 1986 81 397 181 33.548303 -117.6941974 0 1 0 0 0 0 +1 6 5 5040 6969 2007 81 714 180 33.4259941 -117.5957257 0 1 0 0 0 0 +1 4 3 1798 6969 1999 84 400 274 33.5658973 -117.7059925 0 0 0 0 0 0 +1 4 2 1800 11325 1964 86 592 280 33.807499 -117.7963278 0 1 0 0 0 0 +1 5 4.5 4330 7397 2013 91 924 115 33.6253108 -117.8509718 0 1 0 0 0 0 +1 5 3.5 3418 5525 1997 92 417 237 33.4536329 -117.6191098 0 1 0 0 0 0 +1 4 2 1712 11250 1952 93 379 280 33.8688065 -117.9897408 0 1 0 0 0 0 +1 3 1 1062 8645 1957 96 513 280 33.8061747 -117.9503941 0 1 0 0 0 0 +1 4 2 1467 5940 1958 101 436 280 33.7665091 -118.0302045 0 1 0 0 0 0 +1 2 2 1257 1 1989 101 338 550 33.6239445 -117.6455003 0 0 0 0 0 0 +1 4 3.5 2897 3000 2018 105 483 189 33.6842021 -117.7311141 0 1 0 0 0 0 +1 16 8 7323 15108 1963 113 348 280 33.9310116 -117.9594536 0 0 0 0 1 0 +1 2 1.5 1092 6969 1963 116 320 310 33.7403998 -117.8314758 0 0 0 0 0 0 +1 4 2 1323 7200 1954 117 408 280 33.8235332 -117.9659724 0 1 0 0 0 0 +1 3 3 2242 2500 1900 120 1650 280 33.6100791 -117.9300881 0 1 0 0 0 0 +1 5 5.5 3100 4784 2015 125 435 158 33.6707244 -117.6872106 0 1 0 0 0 0 +1 3 1.75 1678 7395 1978 126 378 280 33.746274 -117.611526 0 1 0 0 0 0 +1 5 5.5 4734 8106 1998 126 496 215 33.7219594 -117.7524564 0 1 0 0 0 0 +0 2 2 1473 6969 1977 130 119 280 33.6203374 -117.6977522 1 0 0 0 0 0 +1 2 1.75 1760 6969 1979 131 203 208 33.708574 -117.7552113 1 0 0 0 0 0 +1 5 4 3261 6969 2007 141 598 280 33.6288127 -117.9233669 0 0 1 0 0 0 +1 4 4 4523 12598 2001 147 348 225 33.5690191 -117.5804044 0 1 0 0 0 0 +1 5 4.5 5250 8980 2017 154 380 115 33.709141 -117.736193 0 1 0 0 0 0 +1 2 2 1919 3540 1953 159 1199 280 33.6008293 -117.8692451 0 1 0 0 0 0 +0 2 2 960 6969 1986 168 167 280 33.518949 -117.7557873 1 0 0 0 0 0 +1 3 2 1630 7201 1954 180 393 280 33.8088798 -117.9572399 0 1 0 0 0 0 +1 2 2 1054 6969 2017 189 451 280 33.6113645 -117.924211 1 0 0 0 0 0 +1 3 1.75 1700 6969 1977 197 352 644 33.6042064 -117.7339909 0 0 0 0 0 0 +1 3 3.5 3843 10139 2018 203 1340 280 33.4510583 -117.6570201 0 1 0 0 0 0 +1 3 3 2660 5050 1961 215 611 280 33.6261148 -117.9219301 0 1 0 0 0 0 +1 2 2 1054 6969 2017 219 451 280 33.6112133 -117.924244 1 0 0 0 0 0 +1 1 1 750 8750 1937 231 1853 280 33.501299 -117.742638 0 1 0 0 0 0 +1 9 9 4811 8276 1977 250 343 280 33.7057427 -117.9861405 0 0 0 1 0 0 +1 2 3 1721 1001 2015 295 639 387 33.430633 -117.626063 0 0 1 0 0 0 +1 3 2.75 2428 6689 2016 324 391 306 33.536279 -117.604158 0 1 0 0 0 0 +1 5 4 2326 2178 1971 383 1313 280 33.6292102 -117.9551732 0 1 0 0 0 0 +1 4 5 2800 7811 1965 411 498 280 33.46762 -117.6592544 0 0 0 1 0 0 +1 4 3 1858 6969 2018 20 532 280 33.634137 -117.940479 0 1 0 0 0 0 +1 2 2.5 1545 6969 2018 29 384 280 33.54794 -117.59602 0 1 0 0 0 0 +1 5 4 2654 6969 2018 54 446 280 33.6682321 -117.6564262 0 1 0 0 0 0 +1 3 3 1710 6969 2018 64 1273 280 33.624397 -117.945629 0 1 0 0 0 0 +1 4 3.5 1912 6969 2017 74 339 280 33.542747 -117.599666 0 0 1 0 0 0 +1 2 3 2362 6969 1989 54.5 392 280 33.542483 -117.601342 0 1 0 0 0 0 +1 4 4.5 3684 6969 1989 54.5 415 280 33.475261 -117.668083 0 1 0 0 0 0 diff --git a/examples/AI-Feynman/run_conjecturing.py b/examples/AI-Feynman/run_conjecturing.py new file mode 100644 index 0000000..baca784 --- /dev/null +++ b/examples/AI-Feynman/run_conjecturing.py @@ -0,0 +1,240 @@ +# In[94]: + +from sage.all_cmdline import * + +import pandas as pd +import numpy as np +import sys +load("/home/jpbrooks/craig/learning/2023_02_ijds/aif_noise/conjecturing.py") + + +def run_conjecturing(my_timelimit=5, num_samples=10, data_fname="/home/jpbrooks/craigdata/learning/2021_04_aif/Feynman_with_units/I.10.7", invariant_names=["m0", "v", "c", "f"], use_pi=False, out_fname="I.10.7", operators=['+','-'], noise = 0): + + print(out_fname) + print(operators) + print(noise) + my_data = pd.read_csv(data_fname+".bz2", + sep="\\s+", + header=None) + + #my_data.loc[:,len(my_data.columns)-1] = my_data.loc[:,len(my_data.columns)-1] + rg.normal(0, noise, len(my_data.index)) + # noise only to training data + + y_rms = ((my_data.iloc[range(num_samples), len(my_data.columns)-1]**2).mean())**(0.5) # get rms of target only using training data + + my_data.iloc[range(num_samples),len(my_data.columns)-1] = my_data.iloc[range(num_samples),len(my_data.columns)-1] + np.random.normal(0, y_rms*noise, num_samples) + my_data.rename(columns={i:invariant_names[i] for i in range(len(invariant_names))}, inplace=True) + #my_data + + + class Example(): + def __init__(self, row): + self.name = row.name + + def build_inv(i): + def inv(self): + return my_data.loc[self.name,i] + inv.__name__ = i + return inv + + for i in invariant_names: + inv = build_inv(i) + setattr(Example, inv.__name__, inv) + + train_examples = ( + my_data + .iloc[range(Integer(num_samples)),] + .apply(func=Example, axis='columns') + ) + + train_examples_list = train_examples.tolist() + + test_df = my_data.iloc[num_samples:(num_samples+100),] + test_df = test_df.set_index(pd.Index(range(100))) + test_examples = ( + my_data + .iloc[num_samples:(num_samples+100),] + .apply(func=Example, axis='columns') + ) + test_examples_list = test_examples.tolist() + + sigma_y = test_df['f'].std() + print(sigma_y) + + invariants = [] + for i in invariant_names: + invariants.append(Example.__dict__[i]) + target_invariant = Example.__dict__[invariant_names[len(invariant_names)-1]] + + if use_pi == True: + _sage_const_pi = pi + + def my_pi(dist): + R = RealField(20) + return R(_sage_const_pi) + invariants.append(my_pi) + + #_sage_const_p0 = RealNumber('.00000001') + #def my_const(example): + # return _sage_const_p0 + #invariants.append(my_const) + + np.random.seed(12345) + set_random_seed(12345) + #use_operators = {'+', '*', '-', '/', '+1', '-1', 'sqrt', 'exp', + # 'ln', '1/', 'cos', 'abs', 'asin', 'atan', 'sin', + # '^2'} + use_operators = operators + + out_file = open(out_fname, "a") + + inv_of_interest = invariants.index(target_invariant) + conjs = conjecture(train_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=True, + debug=False, + time=my_timelimit, + verbose=False) + convert_conjecture_names(conjs) + error_df = pd.DataFrame() + min_error = np.inf + for i,c in enumerate(conjs): + try: + error = mean([abs(example.f() - c.evaluate(example, returnBoundValue=True)) for example in train_examples_list]) + out_file.write("%s,%s,%d,%d,%d,%f,%f\n" % (out_fname, c, my_timelimit, len(train_examples), len(operators), noise, error)) + if error < min_error: + min_conj = c + min_error = error + #error_df['c'+str(i)] = [c.evaluate(example, returnBoundValue=True) for example in test_examples_list] + except: + print(c) + #out_file.write("%s,%s,%d,%d,%d,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise)) + + #if len(conjs) > 1: + # error_df['min'] = error_df.apply(np.nanmin, axis=1) + #elif len(conjs)==1: + # error_df['min'] = error_df['c0'] + #error_df['abs'] = abs(test_df['f'] - error_df['min']) + + try: + if len(conjs) >= 1: + #print(mean([abs(example.f() - min_conj.evaluate(example, returnBoundValue=True)) for example in train_examples_list])) + #print(min_error) + error_df['abs'] = [abs(example.f() - min_conj.evaluate(example, returnBoundValue=True)) for example in test_examples_list] + nrmse = sqrt(mean(error_df['abs']**2))/sigma_y + out_file.write("%f\n" % (nrmse)) + except: + out_file.write("Error evaluating best conjecture on test data or no conjectures.\n") + + conjs = conjecture(train_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=False, + debug=False, + time=my_timelimit, + verbose=False) + convert_conjecture_names(conjs) + error_df = pd.DataFrame() + min_error = np.inf + for i, c in enumerate(conjs): + try: + error = mean([abs(example.f() - c.evaluate(example, returnBoundValue=True)) for example in train_examples_list]) + out_file.write("%s,%s,%d,%d,%d,%f,%f\n" % (out_fname, c, my_timelimit, len(train_examples), len(operators), noise, error)) + if error < min_error: + min_conj = c + min_error = error + except: + print(c) + #out_file.write("%s,%s,%d,%d,%d,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise)) + #if len(conjs) > 1: + # error_df['max'] = error_df.apply(np.nanmax, axis=1) + #elif len(conjs) == 1: + # error_df['max'] = error_df['c0'] + #error_df['abs'] = abs(error_df['max'] - test_df['f']) + out_file.flush() + + try: + if len(conjs) >= 1: + error_df['abs'] = [abs(example.f() - min_conj.evaluate(example, returnBoundValue=True)) for example in test_examples_list] + nrmse = sqrt(mean(error_df['abs']**2))/sigma_y + out_file.write("%f\n" % (nrmse)) + except: + out_file.write("Error evaluating best conjecture on test data or no conjectures.\n") + + out_file.flush() + out_file.close() + +instances = ["I.6.2a", "I.6.2", "I.6.2b", "I.8.14", "I.9.18", "I.10.7", "I.11.19", "I.12.1", "I.12.2", "I.12.4"] +# name the equation f for each one +invariant_dict = {"I.6.2a": ["theta", "f"], +"I.6.2": ["sigma", "theta", "f"], +"I.6.2b": ["sigma", "theta", "theta1", "f"], +"I.8.14": ["x1", "x2", "y1", "y2", "f"], +"I.9.18": ["m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", "f"], +"I.10.7": ["m0", "v", "c", "f"], +"I.11.19": ["x1", "x2", "x3", "y1", "y2", "y3", "f"], +"I.12.1": ["mu", "Nn", "f"], +"I.12.2": ["q1", "q2", "epsilon", "r", "f"], +"I.12.4": ["q1", "epsilon", "r", "f"]} +pi_dict = {"I.6.2a": True, +"I.6.2": True, +"I.6.2b": True, +"I.8.14": False, +"I.9.18": False, +"I.10.7": False, +"I.11.19": False, +"I.12.1": False, +"I.12.2": True, +"I.12.4": True} +aif_time = {"I.6.2a": 16, +"I.6.2": 2992, +"I.6.2b": 4792, +"I.8.14": 544, +"I.9.18": 5975, +"I.10.7": 14, +"I.11.19": 184, +"I.12.1": 12, +"I.12.2": 17, +"I.12.4": 12} +aif_points = {"I.6.2a": 10, +"I.6.2": 100, +"I.6.2b": 1000, +"I.8.14": 100, +"I.9.18": 1000, +"I.10.7": 10, +"I.11.19": 100, +"I.12.1": 10, +"I.12.2": 10, +"I.12.4": 10} +aif_noise = {"I.6.2a": 0.01, +"I.6.2": 0.0001, +"I.6.2b": 0.0001, +"I.8.14": 0.0001, +"I.9.18": 0.00001, +"I.10.7": 0.0001, +"I.11.19": 0.001, +"I.12.1": 0.001, +"I.12.2": 0.01, +"I.12.4": 0.01} +loc = "/home/jpbrooks/craigdata/learning/2021_04_aif" +outloc = "/home/jpbrooks/craig/learning/2023_02_ijds/aif_noise/" + +operator_lists = [ +['+', '-', '*', '/', '+1', '-1', '^2', 'sqrt'], +['+', '-', '*', '/', '+1', '-1', 'sin', 'ln', '1/', 'cos', 'exp', 'sqrt', '^2'], +['+', '-', '*', '/', '+1', '-1', 'sqrt', 'exp', 'ln', '1/', 'cos', 'abs', 'asin', 'atan', 'sin', '^2']] + +#for instance in instances: +# for operator_list in operator_lists: +# run_conjecturing(my_timelimit=5, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=outloc+instance, operators=operator_list, noise=0.0) +# run_conjecturing(my_timelimit=100, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=outloc+instance, operators=operator_list, noise=0.0) +# run_conjecturing(my_timelimit=1000, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=outloc+instance, operators=operator_list, noise=0.0) +# +# AI Feynman set up +for instance in instances: + for operator_list in operator_lists: + run_conjecturing(my_timelimit=aif_time[instance], num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=outloc+instance, operators=operator_list, noise=aif_noise[instance]) + diff --git a/examples/AI-Feynman/run_conjecturing_array.sh b/examples/AI-Feynman/run_conjecturing_array.sh new file mode 100644 index 0000000..ac55485 --- /dev/null +++ b/examples/AI-Feynman/run_conjecturing_array.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# shell for qsub to use +#$ -S /bin/bash +# name on qstat +#$ -N aif +# limit to 17G; limit to 10 hours hard CPU; not using +# -l h_vmem=17G,h_stack=256M,h_cpu=10:00:00 +# require 16GB mem to start, limit to 17G; limit to 10 hours hard CPU; not using +# -l mem_free=16G,h_vmem=40G,h_stack=256M +#$ -t 10-10:1 +# tell SGE to run at most 4 jobs at once +#$ -tc 4 + +DATA_LOC=/home/jpbrooks/craigdata/learning/2021_04_aif + +LOC=/home/jpbrooks/craig/learning/2021_04_aif + +SEEDFILE=$LOC/aif_array.in + +ID=$SGE_TASK_ID +SEED=$(sed -n -e "$ID p" $SEEDFILE) + +#sage $LOC/run_conjecturing.py +TIME_LIMIT=10000 +NUM_SAMPLES=10 + +echo "from sage.all_cmdline import *" > $LOC/$ID.py +echo "load(\"$LOC/run_conjecturing.py\")" >> $LOC/$ID.py +echo "for operator_list in operator_lists:" >> $LOC/$ID.py +echo " for noise in [0,0.1]:" >> $LOC/$ID.py +echo " run_conjecturing(my_timelimit=$TIME_LIMIT, num_samples=$NUM_SAMPLES, data_fname=\"$DATA_LOC\" +\"/Feynman_with_units/\" + \"$SEED.bz2\", invariant_names=invariant_dict[\"$SEED\"], use_pi=pi_dict[\"$SEED\"], out_fname=\"$LOC\"+\"/\"+\"$SEED\", operators=operator_list, noise=noise)" >> $LOC/$ID.py +/home/jpbrooks/anaconda3/envs/sage/bin/sage $LOC/$ID.py + diff --git a/examples/AI-Feynman/run_conjecturing_serial.py b/examples/AI-Feynman/run_conjecturing_serial.py new file mode 100644 index 0000000..68b3fc7 --- /dev/null +++ b/examples/AI-Feynman/run_conjecturing_serial.py @@ -0,0 +1,203 @@ +# In[94]: + +from sage.all_cmdline import * + +import pandas as pd +import numpy as np +load("conjecturing.py") + + +def run_conjecturing(my_timelimit=5, num_samples=10, data_fname="/home/jpbrooks/craig/learning/2021_04_aif/Feynman_with_units/I.10.7", invariant_names=["m0", "v", "c", "m"], use_pi=False, out_fname="I.10.7", operators=['+','-'], noise = 0): + + print(out_fname) + print(operators) + print(noise) + my_data = pd.read_csv(data_fname, + sep="\\s+", + header=None) + + #my_data.loc[:,len(my_data.columns)-1] = my_data.loc[:,len(my_data.columns)-1] + rg.normal(0, noise, len(my_data.index)) + my_data.loc[:,len(my_data.columns)-1] = my_data.loc[:,len(my_data.columns)-1] + np.random.normal(0, noise, len(my_data.index)) + + my_data.rename(columns={i:invariant_names[i] for i in range(len(invariant_names))}, inplace=True) + my_data + + class Example(): + def __init__(self, row): + self.name = row.name + + def build_inv(i): + def inv(self): + return my_data.loc[self.name,i] + inv.__name__ = i + return inv + + for i in invariant_names: + inv = build_inv(i) + setattr(Example, inv.__name__, inv) + + my_examples = ( + my_data + .iloc[range(Integer(num_samples)),] + .apply(func=Example, axis='columns') + ) + + my_examples_list = my_examples.tolist() + + test_examples = ( + my_data + .iloc[num_samples:(num_samples+100),] + .apply(func=Example, axis='columns') + ) + test_examples_list = test_examples.tolist() + + + invariants = [] + for i in invariant_names: + invariants.append(Example.__dict__[i]) + target_invariant = Example.__dict__[invariant_names[len(invariant_names)-1]] + + if use_pi == True: + _sage_const_pi = pi + + def my_pi(dist): + R = RealField(20) + return R(_sage_const_pi) + invariants.append(my_pi) + + _sage_const_p0 = RealNumber('.00000001') + def my_const(example): + return _sage_const_p0 + invariants.append(my_const) + + set_random_seed(12345) + #use_operators = {'+', '*', '-', '/', '+1', '-1', 'sqrt', 'exp', + # 'ln', '1/', 'cos', 'abs', 'asin', 'atan', 'sin', + # '^2'} + use_operators = operators + + out_file = open(out_fname, "a") + + inv_of_interest = invariants.index(target_invariant) + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=True, + debug=True, + time=my_timelimit, + verbose=True) + convert_conjecture_names(conjs) + for c in conjs: + try: + error = sum([abs(example.m() - c.evaluate(example, returnBoundValue=True)) for example in test_examples_list])/len(test_examples_list) + out_file.write("%s,%s,%d,%d,%d,%f,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise, error)) + except: + print(c) + out_file.write("%s,%s,%d,%d,%d,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise)) + + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=False, + debug=True, + time=my_timelimit, + verbose=True) + convert_conjecture_names(conjs) + for c in conjs: + try: + error = sum([abs(example.m() - c.evaluate(example, returnBoundValue=True)) for example in test_examples_list])/len(test_examples_list) + out_file.write("%s,%s,%d,%d,%d,%f,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise, error)) + except: + print(c) + out_file.write("%s,%s,%d,%d,%d,%f\n" % (out_fname, c, my_timelimit, len(my_examples), len(operators), noise)) + out_file.flush() + out_file.close() + +instances = ["I.6.2a", "I.6.2", "I.6.2b", "I.8.14", "I.9.18", "I.10.7", "I.11.19", "I.12.1", "I.12.2", "I.12.4"] +invariant_dict = {"I.6.2a": ["theta", "f"], +"I.6.2": ["sigma", "theta", "f"], +"I.6.2b": ["sigma", "theta", "theta1", "f"], +"I.8.14": ["x1", "x2", "y1", "y2", "d"], +"I.9.18": ["m1", "m2", "G", "x1", "x2", "y1", "y2", "z1", "z2", "F"], +"I.10.7": ["m0", "v", "c", "m"], +"I.11.19": ["x1", "x2", "x3", "y1", "y2", "y3", "dot"], +"I.12.1": ["mu", "Nn", "F"], +"I.12.2": ["q1", "q2", "epsilon", "r", "F"], +"I.12.4": ["q1", "epsilon", "r", "F"]} +pi_dict = {"I.6.2a": True, +"I.6.2": True, +"I.6.2b": True, +"I.8.14": False, +"I.9.18": False, +"I.10.7": False, +"I.11.19": False, +"I.12.1": False, +"I.12.2": True, +"I.12.4": True} +aif_time = {"I.6.2a": 16, +"I.6.2": 2992, +"I.6.2b": 4792, +"I.8.14": 544, +"I.9.18": 5975, +"I.10.7": 14, +"I.11.19": 184, +"I.12.1": 12, +"I.12.2": 17, +"I.12.4": 12} +aif_points = {"I.6.2a": 10, +"I.6.2": 100, +"I.6.2b": 1000, +"I.8.14": 100, +"I.9.18": 1000, +"I.10.7": 10, +"I.11.19": 100, +"I.12.1": 10, +"I.12.2": 10, +"I.12.4": 10} +aif_noise = {"I.6.2a": 0.01, +"I.6.2": 0.0001, +"I.6.2b": 0.0001, +"I.8.14": 0.0001, +"I.9.18": 0.00001, +"I.10.7": 0.0001, +"I.11.19": 0.001, +"I.12.1": 0.001, +"I.12.2": 0.01, +"I.12.4": 0.01} +loc = "/home/jpbrooks/craig/learning/2021_04_aif" + +operator_lists = [ +['+', '-', '*', '/', '+1', '-1', '^2', 'sqrt'], +['+', '-', '*', '/', '+1', '-1', 'sin', 'ln', '1/', 'cos', 'exp', 'sqrt', '^2'], +['+', '-', '*', '/', '+1', '-1', 'sqrt', 'exp', 'ln', '1/', 'cos', 'abs', 'asin', 'atan', 'sin', '^2']] + + +np.random.seed(12345) + +for instance in instances: + for operator_list in operator_lists: + for noise in [0,0.1]: + run_conjecturing(my_timelimit=5, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=noise) + run_conjecturing(my_timelimit=aif_time[instance], num_samples=aif_points[instance], data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list) + run_conjecturing(my_timelimit=100, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=noise) + run_conjecturing(my_timelimit=1000, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=noise) + +for instance in instances: + for operator_list in operator_lists: + run_conjecturing(my_timelimit=5, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=aif_noise[instance]) + run_conjecturing(my_timelimit=aif_time[instance], num_samples=aif_points[instance], data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=aif_noise[instance]) + run_conjecturing(my_timelimit=100, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+instance, operators=operator_list, noise=aif_noise[instance]) + + +for instance in instances: + for operator_list in operator_lists: + for noise in [0,0.1]: + print(instance) + print(operator_list) + print(noise) + run_conjecturing(my_timelimit=10000, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+"/"+instance, operators=operator_list, noise=noise) + run_conjecturing(my_timelimit=100000, num_samples=10, data_fname=loc +"/Feynman_with_units/" + instance, invariant_names=invariant_dict[instance], use_pi=pi_dict[instance], out_fname=loc+"/"+instance, operators=operator_list, noise=noise) + + diff --git a/examples/Covid-Conjecturing/covid_conjecturing.ipynb b/examples/Covid-Conjecturing/covid_conjecturing.ipynb index 464f06a..f2f8260 100644 --- a/examples/Covid-Conjecturing/covid_conjecturing.ipynb +++ b/examples/Covid-Conjecturing/covid_conjecturing.ipynb @@ -2,14 +2,22 @@ "cells": [ { "cell_type": "code", - "execution_count": 55, + "execution_count": 54, "metadata": { "collapsed": false, "jupyter": { "outputs_hidden": false } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pickle directory already exists\n" + ] + } + ], "source": [ "import pandas as pd\n", "import numpy as np\n", @@ -17,8 +25,12 @@ "import sys\n", "import os\n", "\n", - "my_dump = False # if True, dump to pickle files in directory pickle/\n", - "my_pickle = True # if True, read from pickle files in directory pickle/\n", + "load(\"conjecturing.py\")\n", + "dataloc = \"/home/jpbrooks/craigdata/learning/2020_06_fda_vha/\"\n", + "myskips = \"0.9\" # percentage of missing data to allow in a column\n", + "\n", + "my_dump = True # if True, dump to pickle files in directory pickle/\n", + "my_pickle = False # if True, read from pickle files in directory pickle/\n", "\n", "if my_dump == True and my_pickle == True:\n", " print(\"You can't dump while pickling. You should dump before you pickle.\")\n", @@ -40,7 +52,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 7, "metadata": { "collapsed": false, "jupyter": { @@ -50,29 +62,29 @@ "outputs": [], "source": [ "if my_pickle == False:\n", - " allergies = pd.read_csv(\"train/allergies.csv\",\n", + " allergies = pd.read_csv(dataloc+\"train/allergies.csv.bz2\",\n", " parse_dates=[\"START\", \"STOP\"])\n", - " care_plans = pd.read_csv(\"train/careplans.csv\",\n", + " care_plans = pd.read_csv(dataloc+\"train/careplans.csv.bz2\",\n", " parse_dates=[\"START\", \"STOP\"])\n", - " conditions = pd.read_csv(\"train/conditions.csv\",\n", + " conditions = pd.read_csv(dataloc+\"train/conditions.csv.bz2\",\n", " parse_dates=[\"START\", \"STOP\"])\n", - " devices = pd.read_csv(\"train/devices.csv\",\n", + " devices = pd.read_csv(dataloc+\"train/devices.csv.bz2\",\n", " parse_dates=[\"START\",\"STOP\"]) \n", - " encounters = pd.read_csv(\"train/encounters.csv\",\n", + " encounters = pd.read_csv(dataloc+\"train/encounters.csv.bz2\",\n", " parse_dates=[\"START\", \"STOP\"])\n", - " imaging_studies = pd.read_csv(\"train/imaging_studies.csv\",\n", + " imaging_studies = pd.read_csv(dataloc+\"train/imaging_studies.csv.bz2\",\n", " parse_dates=[\"DATE\"])\n", - " immunizations = pd.read_csv(\"train/immunizations.csv\",\n", + " immunizations = pd.read_csv(dataloc+\"train/immunizations.csv.bz2\",\n", " parse_dates=[\"DATE\"])\n", - " medications = pd.read_csv(\"train/medications.csv\",\n", + " medications = pd.read_csv(dataloc+\"train/medications.csv.bz2\",\n", " parse_dates=[\"START\",\"STOP\"])\n", - " observations = pd.read_csv(\"train/observations.csv\",\n", + " observations = pd.read_csv(dataloc+\"train/observations.csv.bz2\",\n", " parse_dates=[\"DATE\"])\n", " #organizations = pd.read_csv(\"train/organizations.csv\")\n", "\n", " #payers = pd.read_csv(\"train/payers.csv\")\n", " #payer_transitions = pd.read_csv(\"train/payer_transitions.csv\")\n", - " procedures = pd.read_csv(\"train/procedures.csv\",\n", + " procedures = pd.read_csv(dataloc+\"train/procedures.csv.bz2\",\n", " parse_dates=[\"DATE\"])\n", " #providers = pd.read_csv(\"train/providers.csv\")\n", " #supplies = pd.read_csv(\"train/supplies.csv\",\n", @@ -81,7 +93,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 9, "metadata": { "collapsed": false, "jupyter": { @@ -91,13 +103,13 @@ "outputs": [], "source": [ "if my_pickle == False:\n", - " patients = pd.read_csv(\"train/patients.csv\", \n", + " patients = pd.read_csv(dataloc+\"train/patients.csv.bz2\", \n", " parse_dates=[\"BIRTHDATE\",\"DEATHDATE\"])" ] }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -118,7 +130,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -149,7 +161,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 12, "metadata": { "collapsed": false, "jupyter": { @@ -188,7 +200,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 13, "metadata": { "collapsed": false, "jupyter": { @@ -240,7 +252,7 @@ }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 14, "metadata": { "collapsed": false, "jupyter": { @@ -263,7 +275,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 15, "metadata": { "collapsed": false, "jupyter": { @@ -303,7 +315,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 16, "metadata": { "collapsed": false, "jupyter": { @@ -332,7 +344,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 17, "metadata": { "collapsed": false, "jupyter": { @@ -363,7 +375,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 18, "metadata": { "collapsed": false, "jupyter": { @@ -388,7 +400,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 19, "metadata": { "collapsed": false, "jupyter": { @@ -417,7 +429,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 20, "metadata": { "collapsed": false, "jupyter": { @@ -475,7 +487,7 @@ }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 21, "metadata": { "collapsed": false, "jupyter": { @@ -500,7 +512,7 @@ }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 22, "metadata": { "collapsed": false, "jupyter": { @@ -529,7 +541,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 23, "metadata": { "collapsed": false, "jupyter": { @@ -588,7 +600,7 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 24, "metadata": { "collapsed": false, "jupyter": { @@ -634,7 +646,7 @@ }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 25, "metadata": { "collapsed": false, "jupyter": { @@ -691,7 +703,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -705,7 +717,7 @@ }, { "cell_type": "code", - "execution_count": 75, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ @@ -733,7 +745,7 @@ }, { "cell_type": "code", - "execution_count": 76, + "execution_count": 28, "metadata": { "collapsed": false, "jupyter": { @@ -777,7 +789,7 @@ }, { "cell_type": "code", - "execution_count": 77, + "execution_count": 29, "metadata": { "collapsed": false, "jupyter": { @@ -826,7 +838,7 @@ }, { "cell_type": "code", - "execution_count": 78, + "execution_count": 30, "metadata": { "collapsed": false, "jupyter": { @@ -895,7 +907,7 @@ }, { "cell_type": "code", - "execution_count": 79, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ @@ -910,7 +922,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ @@ -939,7 +951,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 33, "metadata": { "collapsed": false, "jupyter": { @@ -963,7 +975,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 34, "metadata": {}, "outputs": [ { @@ -1034,7 +1046,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 35, "metadata": { "collapsed": false, "jupyter": { @@ -1056,7 +1068,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -1075,7 +1087,7 @@ }, { "cell_type": "code", - "execution_count": 85, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -1115,7 +1127,7 @@ }, { "cell_type": "code", - "execution_count": 86, + "execution_count": 38, "metadata": {}, "outputs": [], "source": [ @@ -1128,7 +1140,7 @@ }, { "cell_type": "code", - "execution_count": 87, + "execution_count": 39, "metadata": {}, "outputs": [ { @@ -1152,11 +1164,11 @@ }, { "cell_type": "code", - "execution_count": 88, + "execution_count": 42, "metadata": {}, "outputs": [], "source": [ - " if my_pickle == True:\n", + " if my_pickle == False:\n", " obs_dict = (\n", " obs_data[[\"PATIENT\", \"DESC\", \"VALUE\"]]\n", " .pivot(index=\"PATIENT\", columns=\"DESC\", values=\"VALUE\")\n", @@ -1174,7 +1186,18 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 43, + "metadata": {}, + "outputs": [], + "source": [ + "if my_pickle == True:\n", + " obs_dict = pickle.load(open(\"pickle/obs_dict.p\",\"rb\"))\n", + " obs_mean_dict = pickle.load(open(\"pickle/obs_mean_dict.p\",\"rb\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 44, "metadata": {}, "outputs": [], "source": [ @@ -1185,7 +1208,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 45, "metadata": {}, "outputs": [], "source": [ @@ -1209,7 +1232,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 46, "metadata": { "collapsed": false, "jupyter": { @@ -1258,7 +1281,7 @@ }, { "cell_type": "code", - "execution_count": 92, + "execution_count": 47, "metadata": { "collapsed": false, "jupyter": { @@ -1308,7 +1331,7 @@ }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 48, "metadata": { "collapsed": false, "jupyter": { @@ -1358,7 +1381,7 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 49, "metadata": { "collapsed": false, "jupyter": { @@ -1434,7 +1457,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 50, "metadata": { "collapsed": false, "jupyter": { @@ -1480,7 +1503,7 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 51, "metadata": { "collapsed": false, "jupyter": { @@ -1509,7 +1532,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 52, "metadata": { "collapsed": false, "jupyter": { @@ -1529,89 +1552,6 @@ "print(len(procedure_names))" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Utilities" - ] - }, - { - "cell_type": "code", - "execution_count": 98, - "metadata": {}, - "outputs": [], - "source": [ - "def convert_name(name):\n", - " for i in range(26):\n", - " name = name.replace('({})'.format(chr(ord('a') + i)), '')\n", - " name = name.replace(' ', '_')\n", - " textform_first = {\n", - " '^2': '_squared',\n", - " '^3': '_cubed',\n", - " '1/': 'inverse_of_',\n", - " '<=': '_leq_',\n", - " '>=': '_geq_'\n", - " }\n", - " textform = {\n", - " '<': '_lt_',\n", - " '>': '_gt_',\n", - " '+': '_plus_',\n", - " '-': '_minus_',\n", - " '*': '_times_',\n", - " '/': '_divided_by_',\n", - " '^': '_to_the_power_',\n", - " '(': 'open_bracket_',\n", - " ')': '_close_bracket',\n", - " ',': '_or_', # added by Paul\n", - " '\\'': '', # added by Paul\n", - " '=': '_equal_' # added by Paul\n", - " }\n", - " for op in textform_first:\n", - " name = name.replace(op, textform_first[op])\n", - " for op in textform:\n", - " name = name.replace(op, textform[op])\n", - " return name\n", - "\n", - "def convert_name_back(name):\n", - " for i in range(26):\n", - " name = name.replace('({})'.format(chr(ord('a') + i)), '')\n", - " # name = name.replace('_', ' ')\n", - " textform_first = {\n", - " '_squared': '^2',\n", - " '_cubed': '^3',\n", - " 'inverse_of_': '1/',\n", - " '_leq_': '<=',\n", - " '_geq_': '>='\n", - " }\n", - " textform = {\n", - " '_lt_': '<',\n", - " '_gt_': '>',\n", - " '_plus_': '+',\n", - " '_minus_': '-',\n", - " '_times_': '*',\n", - " '_divided_by_': '/',\n", - " '_to_the_power_': '^',\n", - " 'open_bracket_': '(',\n", - " '_close_bracket': ')',\n", - " '_or_': ',', # added by Paul\n", - " '_equal_': '=' # added by Paul\n", - " }\n", - " for op in textform_first:\n", - " name = name.replace(op, textform_first[op])\n", - " for op in textform:\n", - " name = name.replace(op, textform[op])\n", - " return name\n", - "\n", - "def convert_conjecture_names(conjectures):\n", - " for conj in conjectures:\n", - " conj.__name__ = convert_name(conj.__name__)\n", - "\n", - "def convert_names_back(conjectures): #note the plural name(s)\n", - " for conj in conjectures:\n", - " conj.__name__ = convert_name_back(conj.__name__)\n" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -1621,7 +1561,7 @@ }, { "cell_type": "code", - "execution_count": 99, + "execution_count": 58, "metadata": { "collapsed": false, "jupyter": { @@ -1820,7 +1760,7 @@ " \"encounters_lifetime_total_cost\",\n", " \"encounters_lifetime_base_cost\",\n", " \"encounters_lifetime_payer_coverage\",\n", - " \"encounters_lifetime_perc_covered \",\n", + " \"encounters_lifetime_perc_covered\",\n", " \"imaging_studies_lifetime\",\n", " \"immunizations_lifetime\",\n", " \"immunizations_lifetime_cost\",\n", @@ -1971,7 +1911,7 @@ }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 59, "metadata": { "collapsed": false, "jupyter": { @@ -2000,7 +1940,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 60, "metadata": { "collapsed": false, "jupyter": { @@ -2038,7 +1978,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 61, "metadata": { "collapsed": false, "jupyter": { @@ -2090,7 +2030,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 62, "metadata": {}, "outputs": [], "source": [ @@ -2155,16 +2095,21 @@ }, { "cell_type": "code", - "execution_count": 104, - "metadata": { - "collapsed": false, - "jupyter": { - "outputs_hidden": false - } - }, + "execution_count": 63, + "metadata": {}, "outputs": [], "source": [ - "load(\"conjecturing.py\")" + "from sklearn.model_selection import train_test_split\n", + "set_random_seed(12345)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "p_examples_list = list(p_examples)" ] }, { @@ -2176,7 +2121,27 @@ }, { "cell_type": "code", - "execution_count": 105, + "execution_count": 65, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "covid_dead = [patient for patient in p_examples_list if (patient.covid_death_status())]\n", + "covid_alive= [patient for patient in p_examples_list if (not patient.covid_death_status())]\n", + "\n", + "np.random.shuffle(covid_dead)\n", + "np.random.shuffle(covid_alive)\n", + "\n", + "train_dead = covid_dead[0:100]\n", + "train_alive = covid_alive[0:100]\n", + "\n", + "test_dead = covid_dead[100:]\n", + "test_alive = covid_alive[100:]" + ] + }, + { + "cell_type": "code", + "execution_count": 66, "metadata": { "collapsed": false, "jupyter": { @@ -2812,16 +2777,10 @@ } ], "source": [ - "p_examples_list = list(p_examples)\n", - "\n", - "# only pick people with covid\n", - "covid_dead = [patient for patient in p_examples_list if (patient.covid_death_status())]\n", - "covid_alive= [patient for patient in p_examples_list if (not patient.covid_death_status())]\n", "\n", "covid_invariants = invariants\n", "\n", "\n", - "set_random_seed(12345)\n", "covid_dead_properties = []\n", "covid_alive_properties = []\n", "use_operators = { '-1', '+1', '*2', '/2', '^2', '-()', '1/', 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil', 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^'}\n", @@ -2833,29 +2792,30 @@ "for inv in covid_invariants:\n", " print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_alive, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_alive_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_alive, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_alive_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_alive,\n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_alive_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_alive, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_alive_properties += conjs\n", "count = 0\n", "for conj in covid_alive_properties:\n", " count +=1\n", @@ -2866,29 +2826,30 @@ "for inv in covid_invariants:\n", " print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_dead, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False) \n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_dead_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_dead, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_dead_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_dead, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips) \n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_dead_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_dead, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_dead_properties += conjs\n", "count = 0\n", "for conj in covid_dead_properties:\n", " count +=1\n", @@ -2897,14 +2858,14 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 67, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1421 1244\n", + "7174 4860\n", "80376 5568\n" ] } @@ -2916,7 +2877,7 @@ }, { "cell_type": "code", - "execution_count": 107, + "execution_count": 68, "metadata": { "collapsed": false, "jupyter": { @@ -2928,31 +2889,110 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/misc/functional.py:1558: ComplexWarning: Casting complex values to real discards the imaginary part\n", - " x = float(x)\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:85: RuntimeWarning: overflow encountered in double_scalars\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:187: RuntimeWarning: overflow encountered in double_scalars\n" + "./conjecturing.py:255: RuntimeWarning: overflow encountered in double_scalars\n", + " return (lambda x: 10**x), 1\n", + "./conjecturing.py:153: RuntimeWarning: invalid value encountered in double_scalars\n", + " stack.append(op(left, right))\n", + "./conjecturing.py:108: RuntimeWarning: overflow encountered in exp\n", + " stack.append(op(stack.pop()))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(covid_death_status)->(healthcare_expenses_leq_age_squared_times_encounters_lifetime_total_cost)\n", + "(covid_death_status)->(healthcare_coverage_leq_open_bracket_logopen_bracket_encounters_lifetime_total_cost_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket_to_the_power_active_condition_length)\n", + "(covid_death_status)->(procedures_lifetime_cost_leq_e_to_the_power_open_bracket_10_to_the_power_procedures_lifetime_close_bracket)\n", + "(covid_death_status)->(healthcare_expenses_leq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket_to_the_power_Carbon_Dioxide)\n", + "(covid_death_status)->(longitude_leq__minus_active_condition_length_plus_immunizations_lifetime_cost_minus_1)\n", + "(covid_death_status)->(age_leq_ceilopen_bracket_QALY_close_bracket_divided_by_encounters_lifetime_perc_covered)\n", + "(covid_death_status)->(healthcare_coverage_leq_10_to_the_power_DALY_divided_by_num_allergies)\n", + "(covid_death_status)->(age_leq_Body_Mass_Index_times_ceilopen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket)\n", + "(covid_death_status)->(healthcare_coverage_geq_open_bracket_inverse_of_2_times_Body_Height_close_bracket_to_the_power_immunizations_lifetime)\n", + "(covid_death_status)->(healthcare_expenses_geq_minimumopen_bracket_medications_lifetime_cost_or_inverse_of_procedures_lifetime_close_bracket)\n", + "(covid_death_status)->(mean_Potassium_geq_ceilopen_bracket_Carbon_Dioxide_close_bracket_minus_mean_Carbon_Dioxide)\n", + "(covid_death_status)->(latitude_leq__minus_Carbon_Dioxide_plus_ceilopen_bracket_Glucose_close_bracket)\n", + "(covid_death_status)->(healthcare_coverage_geq_10_to_the_power_active_care_plans_divided_by_QALY)\n", + "(covid_death_status)->(healthcare_coverage_geq_minimumopen_bracket_encounters_lifetime_total_cost_or_e_to_the_power_active_conditions_close_bracket)\n", + "(covid_death_status)->(lifetime_care_plans_leq_maximumopen_bracket_Respiratory_rate_or_active_conditions_minus_1_close_bracket)\n", + "(covid_death_status)->(healthcare_coverage_geq_active_care_plans_times_sqrtopen_bracket_healthcare_expenses_close_bracket)\n", + "(covid_death_status)->(latitude_leq_flooropen_bracket_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count_close_bracket_plus_medications_active)\n", + "(covid_death_status)->(latitude_leq_age_plus_immunizations_lifetime_cost_minus_1)\n", + "(covid_death_status)->(latitude_geq_encounters_lifetime_perc_covered_times_flooropen_bracket_active_condition_length_close_bracket)\n", + "(covid_death_status)->(latitude_geq_sqrtopen_bracket_age_close_bracket_divided_by_QOLS)\n", + "(covid_death_status)->(longitude_leq__minus_QALY_times_medications_lifetime_perc_covered)\n", + "(covid_death_status)->((Polyp_of_colon)->(Anemia__disorder_))\n", + "(covid_death_status)->(age_geq_logopen_bracket_active_conditions_close_bracket_divided_by_logopen_bracket_10_close_bracket_plus_active_condition_length)\n", + "(covid_death_status)->(lifetime_care_plans_leq_flooropen_bracket_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma_close_bracket_plus_immunizations_lifetime_cost)\n", + "(covid_death_status)->((Major_depression_disorder)->(lifetime_care_plan_length_geq_minimumopen_bracket_Microalbumin_Creatinine_Ratio_or_absopen_bracket_age_close_bracket_close_bracket))\n", + "(covid_death_status)->(lifetime_condition_length_leq_sqrtopen_bracket_healthcare_coverage_close_bracket_divided_by_medications_lifetime_perc_covered)\n", + "(covid_death_status)->(lifetime_condition_length_leq_e_to_the_power_encounters_count_divided_by_medications_active)\n", + "(covid_death_status)->(active_care_plan_length_geq_ceilopen_bracket_Carbon_Dioxide_close_bracket_divided_by_Creatinine)\n", + "(covid_death_status)->(lifetime_care_plans_leq_medications_lifetime_plus_procedures_lifetime_cost)\n", + "(covid_death_status)->(lifetime_condition_length_geq_active_conditions_squared_plus_lifetime_conditions)\n", + "(covid_death_status)->(lifetime_condition_length_geq_ceilopen_bracket_e_to_the_power_Creatinine_close_bracket)\n", + "(covid_death_status)->(medications_lifetime_dispenses_geq_lifetime_condition_length_times_sqrtopen_bracket_medications_active_close_bracket)\n", + "(covid_death_status)->(Potassium_geq_ceilopen_bracket_Chloride_close_bracket_minus_mean_Chloride)\n", + "(covid_death_status)->(~(Intramuscular_injection))\n", + "(covid_death_status)->(~(Insertion_of_subcutaneous))\n", + "(covid_death_status)->((Smokes_tobacco_daily)->(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_leq_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_times_e_to_the_power_medications_lifetime_dispenses))\n", + "(covid_death_status)->((Chronic_sinusitis__disord)->(lifetime_care_plan_length_geq_minimumopen_bracket_Microalbumin_Creatinine_Ratio_or_absopen_bracket_latitude_close_bracket_close_bracket))\n", + "(~(healthcare_expenses_geq_e_to_the_power_QOLS_times_healthcare_coverage))->(covid_death_status)\n", + "((Coronary_Heart_Disease)&(Hypertension))->(covid_death_status)\n", + "((Malignant_neoplasm_of_bre)&(Alcoholism))->(covid_death_status)\n", + "(~(immunizations_lifetime_cost_geq_inverse_of_2_times_encounters_count_times_immunizations_lifetime))->(covid_death_status)\n", + "((Hyperglycemia__disorder_)&(Alcoholism))->(covid_death_status)\n", + "(Triglycerides_leq_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma_squared_plus_mean_Sodium)->(covid_death_status)\n", + "(~(healthcare_coverage_geq_inverse_of_2_times_active_care_plans_times_encounters_lifetime_payer_coverage))->(covid_death_status)\n", + "((Osteoarthritis_of_hip)&(Anemia__disorder_))->(covid_death_status)\n", + "(~(healthcare_coverage_geq_2_times_encounters_lifetime_payer_coverage_plus_medications_lifetime))->(covid_death_status)\n", + "(Episiotomy)->(covid_death_status)\n", + "((Tubal_pregnancy)&(Smokes_tobacco_daily))->(covid_death_status)\n", + "((Physical_findings_of_ProstateProstate_enlarged_on_PR)&(Chronic_sinusitis__disord))->(covid_death_status)\n", + "((Neuropathy_due_to_type_2_)&(Smokes_tobacco_daily))->(covid_death_status)\n", + "(~(procedures_lifetime_leq__minus_Triglycerides_plus_ceilopen_bracket_Total_Cholesterol_close_bracket))->(covid_death_status)\n", + "(imaging_studies_lifetime_leq_immunizations_lifetime_cost_to_the_power_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)->(covid_death_status)\n", + "(medications_lifetime_cost_leq_e_to_the_power_medications_lifetime_length_divided_by_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma)->(covid_death_status)\n", + "(medications_active_geq_minimumopen_bracket_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_or_logopen_bracket_device_lifetime_length_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket)->(covid_death_status)\n", + "(~(healthcare_expenses_geq_num_allergies_to_the_power_DALY))->(covid_death_status)\n", + "(~(active_care_plans_geq_ceilopen_bracket_logopen_bracket_medications_active_close_bracket_close_bracket))->(covid_death_status)\n", + "(~(healthcare_expenses_geq_flooropen_bracket_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket_to_the_power_medications_active))->(covid_death_status)\n", + "(~(latitude_leq__minus_active_care_plan_length_plus_flooropen_bracket_Triglycerides_close_bracket))->(covid_death_status)\n", + "(~(Respiratory_rate_leq_ceilopen_bracket_mean_Respiratory_rate_close_bracket))->(covid_death_status)\n", + "(~(num_allergies_geq_imaging_studies_lifetime_minus_procedures_lifetime))->(covid_death_status)\n", + "(~(latitude_geq__minus_active_care_plan_length_plus_active_condition_length_plus_1))->(covid_death_status)\n", + "(~(longitude_leq__minus_age_plus_logopen_bracket_healthcare_expenses_close_bracket))->(covid_death_status)\n", + "(~(longitude_leq_maximumopen_bracket_Respiratory_rate_or__minus_active_care_plan_length_close_bracket))->(covid_death_status)\n", + "(~(longitude_leq_10_to_the_power_QOLS_minus_QALY))->(covid_death_status)\n", + "((Drug_overdose)&(Hypertension))->(covid_death_status)\n", + "(~(age_leq__minus_immunizations_lifetime_plus_2_times_latitude))->(covid_death_status)\n", + "((Colonoscopy)&(Localized__primary_osteoa))->(covid_death_status)\n", + "(~(active_care_plans_geq_ceilopen_bracket_inverse_of_2_times_Creatinine_close_bracket))->(covid_death_status)\n", + "((healthcare_coverage_geq_inverse_of_2_times_Potassium_times_encounters_lifetime_payer_coverage)^(healthcare_expenses_leq_open_bracket_latitude_minus_1_close_bracket_to_the_power_mean_Potassium))->(covid_death_status)\n", + "(~(lifetime_care_plans_leq_ceilopen_bracket_inverse_of_2_times_encounters_count_close_bracket))->(covid_death_status)\n", + "(~(medications_lifetime_cost_leq_medications_lifetime_length_squared))->(covid_death_status)\n", + "(~(imaging_studies_lifetime_geq_flooropen_bracket_logopen_bracket_mean_Calcium_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket))->(covid_death_status)\n" ] } ], "source": [ "\n", - "load(\"conjecturing.py\")\n", - "set_random_seed(12345)\n", "all_covid_properties = properties + covid_alive_properties + covid_dead_properties\n", "all_covid_properties.append(Patient.covid_death_status)\n", "\n", "target_prop = len(all_covid_properties)-1\n", - "for i in range(100):\n", - " alive_conjs = propertyBasedConjecture(objects=sample(covid_alive,10)+sample(covid_dead,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=False)\n", - "\n", - " dead_conjs = propertyBasedConjecture(objects=sample(covid_alive,10)+sample(covid_dead,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=True)\n", + "alive_conjs = propertyBasedConjecture(objects=train_alive+train_dead, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=False,\n", + " skips=myskips)\n", + "\n", + "dead_conjs = propertyBasedConjecture(objects=train_alive+train_dead, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=True,\n", + " skips=myskips)\n", "count = 0\n", "for p in alive_conjs:\n", " #print(count, \".\", convert_name_back(p.__name__))\n", @@ -2964,59 +3004,241 @@ }, { "cell_type": "code", - "execution_count": 108, + "execution_count": 69, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "5\n", - "healthcare_expenses_leq_10_to_the_power_medications_active_divided_by_num_allergies\n", - "(covid_death_status)->(healthcare_expenses<=10^medications_active/num_allergies)\n", - "0.9559652418976045\n", - "healthcare_expenses_leq_e_to_the_power_active_care_plan_length_divided_by_encounters_lifetime_perc_covered\n", - "(covid_death_status)->(healthcare_expenses<=e^active_care_plan_length/encounters_lifetime_perc_covered)\n", - "0.9854176573149469\n", - "healthcare_expenses_leq_e_to_the_power_active_condition_length_divided_by_medications_lifetime_length\n", - "(covid_death_status)->(healthcare_expenses<=e^active_condition_length/medications_lifetime_length)\n", - "0.9882517972996668\n", - "latitude_geq_flooropen_bracket_maximumopen_bracket_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count_or_mean_DALY_close_bracket_close_bracket\n", - "(covid_death_status)->(latitude>=floor(maximum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,mean_DALY)))\n", - "0.8996275935449548\n", - "encounters_count_leq_encounters_lifetime_payer_coverage_divided_by_latitude_minus_1\n", - "(covid_death_status)->(encounters_count<=encounters_lifetime_payer_coverage/latitude-1)\n", - "0.9593801935673086\n", - "6\n", - "Major_depression_disorder\n", - "(Major_depression_disorder)->(covid_death_status)\n", - "0.04621188305564288\n", - "Allergy_to_peanuts\n", - "(Allergy_to_peanuts)->(covid_death_status)\n", - "0.042948345908299476\n", - "Malignant_neoplasm_of_bre\n", - "(Malignant_neoplasm_of_bre)->(covid_death_status)\n", - "0.13758389261744966\n", - "Smokes_tobacco_daily\n", - "(Smokes_tobacco_daily)->(covid_death_status)\n", - "0.09072327044025157\n", - "Hyperlipidemia\n", - "(Hyperlipidemia)->(covid_death_status)\n", - "0.1208931873133267\n", - "Cardiac_Arrest\n", - "(Cardiac_Arrest)->(covid_death_status)\n", - "0.08988128886376484\n" + "37\n", + "healthcare_expenses_leq_age_squared_times_encounters_lifetime_total_cost\n", + "(covid_death_status)->(healthcare_expenses<=age^2*encounters_lifetime_total_cost)\n", + "0.9927148725102689\n", + "healthcare_coverage_leq_open_bracket_logopen_bracket_encounters_lifetime_total_cost_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket_to_the_power_active_condition_length\n", + "(covid_death_status)->(healthcare_coverage<=(log(encounters_lifetime_total_cost)/log(10))^active_condition_length)\n", + "0.9934646539027983\n", + "procedures_lifetime_cost_leq_e_to_the_power_open_bracket_10_to_the_power_procedures_lifetime_close_bracket\n", + "(covid_death_status)->(procedures_lifetime_cost<=e^(10^procedures_lifetime))\n", + "0.8490566037735849\n", + "healthcare_expenses_leq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket_to_the_power_Carbon_Dioxide\n", + "(covid_death_status)->(healthcare_expenses<=floor(Globulin__Mass_volume__in_Serum_by_calculation)^Carbon_Dioxide)\n", + "0.8258064516129032\n", + "longitude_leq__minus_active_condition_length_plus_immunizations_lifetime_cost_minus_1\n", + "(covid_death_status)->(longitude<=-active_condition_length+immunizations_lifetime_cost-1)\n", + "0.8710562414266118\n", + "age_leq_ceilopen_bracket_QALY_close_bracket_divided_by_encounters_lifetime_perc_covered\n", + "(covid_death_status)->(age<=ceil(QALY)/encounters_lifetime_perc_covered)\n", + "0.9541456110799177\n", + "healthcare_coverage_leq_10_to_the_power_DALY_divided_by_num_allergies\n", + "(covid_death_status)->(healthcare_coverage<=10^DALY/num_allergies)\n", + "0.9653302343598683\n", + "age_leq_Body_Mass_Index_times_ceilopen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket\n", + "(covid_death_status)->(age<=Body_Mass_Index*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "0.6928571428571428\n", + "healthcare_coverage_geq_open_bracket_inverse_of_2_times_Body_Height_close_bracket_to_the_power_immunizations_lifetime\n", + "(covid_death_status)->(healthcare_coverage>=(1/2*Body_Height)^immunizations_lifetime)\n", + "0.9674019952227062\n", + "healthcare_expenses_geq_minimumopen_bracket_medications_lifetime_cost_or_inverse_of_procedures_lifetime_close_bracket\n", + "(covid_death_status)->(healthcare_expenses>=minimum(medications_lifetime_cost,1/procedures_lifetime))\n", + "0.9423592493297587\n", + "mean_Potassium_geq_ceilopen_bracket_Carbon_Dioxide_close_bracket_minus_mean_Carbon_Dioxide\n", + "(covid_death_status)->(mean_Potassium>=ceil(Carbon_Dioxide)-mean_Carbon_Dioxide)\n", + "0.8635235732009926\n", + "latitude_leq__minus_Carbon_Dioxide_plus_ceilopen_bracket_Glucose_close_bracket\n", + "(covid_death_status)->(latitude<=-Carbon_Dioxide+ceil(Glucose))\n", + "0.8976293103448276\n", + "healthcare_coverage_geq_10_to_the_power_active_care_plans_divided_by_QALY\n", + "(covid_death_status)->(healthcare_coverage>=10^active_care_plans/QALY)\n", + "0.9349514563106797\n", + "healthcare_coverage_geq_minimumopen_bracket_encounters_lifetime_total_cost_or_e_to_the_power_active_conditions_close_bracket\n", + "(covid_death_status)->(healthcare_coverage>=minimum(encounters_lifetime_total_cost,e^active_conditions))\n", + "0.9458874458874459\n", + "lifetime_care_plans_leq_maximumopen_bracket_Respiratory_rate_or_active_conditions_minus_1_close_bracket\n", + "(covid_death_status)->(lifetime_care_plans<=maximum(Respiratory_rate,active_conditions-1))\n", + "0.9903508771929824\n", + "healthcare_coverage_geq_active_care_plans_times_sqrtopen_bracket_healthcare_expenses_close_bracket\n", + "(covid_death_status)->(healthcare_coverage>=active_care_plans*sqrt(healthcare_expenses))\n", + "0.966113660430639\n", + "latitude_leq_flooropen_bracket_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count_close_bracket_plus_medications_active\n", + "(covid_death_status)->(latitude<=floor(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)+medications_active)\n", + "0.9509499136442142\n", + "latitude_leq_age_plus_immunizations_lifetime_cost_minus_1\n", + "(covid_death_status)->(latitude<=age+immunizations_lifetime_cost-1)\n", + "0.9953993904192305\n", + "latitude_geq_encounters_lifetime_perc_covered_times_flooropen_bracket_active_condition_length_close_bracket\n", + "(covid_death_status)->(latitude>=encounters_lifetime_perc_covered*floor(active_condition_length))\n", + "0.8236590742101396\n", + "latitude_geq_sqrtopen_bracket_age_close_bracket_divided_by_QOLS\n", + "(covid_death_status)->(latitude>=sqrt(age)/QOLS)\n", + "0.9524001613553852\n", + "longitude_leq__minus_QALY_times_medications_lifetime_perc_covered\n", + "(covid_death_status)->(longitude<=-QALY*medications_lifetime_perc_covered)\n", + "0.8513931888544891\n", + "Polyp_of_colon->Anemia__disorder_\n", + "(covid_death_status)->((Polyp_of_colon)->(Anemia__disorder_))\n", + "0.8575129533678757\n", + "age_geq_logopen_bracket_active_conditions_close_bracket_divided_by_logopen_bracket_10_close_bracket_plus_active_condition_length\n", + "(covid_death_status)->(age>=log(active_conditions)/log(10)+active_condition_length)\n", + "0.9823126981478392\n", + "lifetime_care_plans_leq_flooropen_bracket_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma_close_bracket_plus_immunizations_lifetime_cost\n", + "(covid_death_status)->(lifetime_care_plans<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+immunizations_lifetime_cost)\n", + "0.8540925266903915\n", + "Major_depression_disorder->lifetime_care_plan_length_geq_minimumopen_bracket_Microalbumin_Creatinine_Ratio_or_absopen_bracket_age_close_bracket_close_bracket\n", + "(covid_death_status)->((Major_depression_disorder)->(lifetime_care_plan_length>=minimum(Microalbumin_Creatinine_Ratio,abs(age))))\n", + "0.9914255091103966\n", + "lifetime_condition_length_leq_sqrtopen_bracket_healthcare_coverage_close_bracket_divided_by_medications_lifetime_perc_covered\n", + "(covid_death_status)->(lifetime_condition_length<=sqrt(healthcare_coverage)/medications_lifetime_perc_covered)\n", + "0.8892575694732476\n", + "lifetime_condition_length_leq_e_to_the_power_encounters_count_divided_by_medications_active\n", + "(covid_death_status)->(lifetime_condition_length<=e^encounters_count/medications_active)\n", + "0.9643879173290938\n", + "active_care_plan_length_geq_ceilopen_bracket_Carbon_Dioxide_close_bracket_divided_by_Creatinine\n", + "(covid_death_status)->(active_care_plan_length>=ceil(Carbon_Dioxide)/Creatinine)\n", + "0.9489939992940346\n", + "lifetime_care_plans_leq_medications_lifetime_plus_procedures_lifetime_cost\n", + "(covid_death_status)->(lifetime_care_plans<=medications_lifetime+procedures_lifetime_cost)\n", + "0.9840906614361992\n", + "lifetime_condition_length_geq_active_conditions_squared_plus_lifetime_conditions\n", + "(covid_death_status)->(lifetime_condition_length>=active_conditions^2+lifetime_conditions)\n", + "0.986183355006502\n", + "lifetime_condition_length_geq_ceilopen_bracket_e_to_the_power_Creatinine_close_bracket\n", + "(covid_death_status)->(lifetime_condition_length>=ceil(e^Creatinine))\n", + "0.9138655462184874\n", + "medications_lifetime_dispenses_geq_lifetime_condition_length_times_sqrtopen_bracket_medications_active_close_bracket\n", + "(covid_death_status)->(medications_lifetime_dispenses>=lifetime_condition_length*sqrt(medications_active))\n", + "0.9302657902257788\n", + "Potassium_geq_ceilopen_bracket_Chloride_close_bracket_minus_mean_Chloride\n", + "(covid_death_status)->(Potassium>=ceil(Chloride)-mean_Chloride)\n", + "0.8391123439667129\n", + "~Intramuscular_injection\n", + "(covid_death_status)->(~(Intramuscular_injection))\n", + "0.9927821522309711\n", + "~Insertion_of_subcutaneous\n", + "(covid_death_status)->(~(Insertion_of_subcutaneous))\n", + "0.9901129943502824\n", + "Smokes_tobacco_daily->mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_leq_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_times_e_to_the_power_medications_lifetime_dispenses\n", + "(covid_death_status)->((Smokes_tobacco_daily)->(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*e^medications_lifetime_dispenses))\n", + "0.9791473586654309\n", + "Chronic_sinusitis__disord->lifetime_care_plan_length_geq_minimumopen_bracket_Microalbumin_Creatinine_Ratio_or_absopen_bracket_latitude_close_bracket_close_bracket\n", + "(covid_death_status)->((Chronic_sinusitis__disord)->(lifetime_care_plan_length>=minimum(Microalbumin_Creatinine_Ratio,abs(latitude))))\n", + "0.972632382892057\n", + "35\n", + "~healthcare_expenses_geq_e_to_the_power_QOLS_times_healthcare_coverage\n", + "(~(healthcare_expenses>=e^QOLS*healthcare_coverage))->(covid_death_status)\n", + "0.16390728476821192\n", + "Coronary_Heart_Disease&Hypertension\n", + "((Coronary_Heart_Disease)&(Hypertension))->(covid_death_status)\n", + "0.17848036715961244\n", + "Malignant_neoplasm_of_bre&Alcoholism\n", + "((Malignant_neoplasm_of_bre)&(Alcoholism))->(covid_death_status)\n", + "0.14802631578947367\n", + "~immunizations_lifetime_cost_geq_inverse_of_2_times_encounters_count_times_immunizations_lifetime\n", + "(~(immunizations_lifetime_cost>=1/2*encounters_count*immunizations_lifetime))->(covid_death_status)\n", + "0.2465642683912692\n", + "Hyperglycemia__disorder_&Alcoholism\n", + "((Hyperglycemia__disorder_)&(Alcoholism))->(covid_death_status)\n", + "0.12167689161554192\n", + "Triglycerides_leq_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma_squared_plus_mean_Sodium\n", + "(Triglycerides<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+mean_Sodium)->(covid_death_status)\n", + "0.17276814386640976\n", + "~healthcare_coverage_geq_inverse_of_2_times_active_care_plans_times_encounters_lifetime_payer_coverage\n", + "(~(healthcare_coverage>=1/2*active_care_plans*encounters_lifetime_payer_coverage))->(covid_death_status)\n", + "0.098568281938326\n", + "Osteoarthritis_of_hip&Anemia__disorder_\n", + "((Osteoarthritis_of_hip)&(Anemia__disorder_))->(covid_death_status)\n", + "0.11278195488721804\n", + "~healthcare_coverage_geq_2_times_encounters_lifetime_payer_coverage_plus_medications_lifetime\n", + "(~(healthcare_coverage>=2*encounters_lifetime_payer_coverage+medications_lifetime))->(covid_death_status)\n", + "0.05862679519968522\n", + "Episiotomy\n", + "(Episiotomy)->(covid_death_status)\n", + "0.009433962264150943\n", + "Tubal_pregnancy&Smokes_tobacco_daily\n", + "((Tubal_pregnancy)&(Smokes_tobacco_daily))->(covid_death_status)\n", + "0.10913705583756345\n", + "Physical_findings_of_ProstateProstate_enlarged_on_PR&Chronic_sinusitis__disord\n", + "((Physical_findings_of_ProstateProstate_enlarged_on_PR)&(Chronic_sinusitis__disord))->(covid_death_status)\n", + "0.17488789237668162\n", + "Neuropathy_due_to_type_2_&Smokes_tobacco_daily\n", + "((Neuropathy_due_to_type_2_)&(Smokes_tobacco_daily))->(covid_death_status)\n", + "0.13582089552238805\n", + "~procedures_lifetime_leq__minus_Triglycerides_plus_ceilopen_bracket_Total_Cholesterol_close_bracket\n", + "(~(procedures_lifetime<=-Triglycerides+ceil(Total_Cholesterol)))->(covid_death_status)\n", + "0.13774205334307635\n", + "imaging_studies_lifetime_leq_immunizations_lifetime_cost_to_the_power_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "(imaging_studies_lifetime<=immunizations_lifetime_cost^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)->(covid_death_status)\n", + "0.09213759213759214\n", + "medications_lifetime_cost_leq_e_to_the_power_medications_lifetime_length_divided_by_Prostate_specific_Ag__Mass_volume__in_Serum_or_Plasma\n", + "(medications_lifetime_cost<=e^medications_lifetime_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)->(covid_death_status)\n", + "0.06684856753069578\n", + "medications_active_geq_minimumopen_bracket_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_or_logopen_bracket_device_lifetime_length_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket\n", + "(medications_active>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,log(device_lifetime_length)/log(10)))->(covid_death_status)\n", + "0.14307931570762053\n", + "~healthcare_expenses_geq_num_allergies_to_the_power_DALY\n", + "(~(healthcare_expenses>=num_allergies^DALY))->(covid_death_status)\n", + "0.0798004987531172\n", + "~active_care_plans_geq_ceilopen_bracket_logopen_bracket_medications_active_close_bracket_close_bracket\n", + "(~(active_care_plans>=ceil(log(medications_active))))->(covid_death_status)\n", + "0.08629441624365482\n", + "~healthcare_expenses_geq_flooropen_bracket_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket_to_the_power_medications_active\n", + "(~(healthcare_expenses>=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^medications_active))->(covid_death_status)\n", + "0.2153991497401984\n", + "~latitude_leq__minus_active_care_plan_length_plus_flooropen_bracket_Triglycerides_close_bracket\n", + "(~(latitude<=-active_care_plan_length+floor(Triglycerides)))->(covid_death_status)\n", + "0.21818181818181817\n", + "~Respiratory_rate_leq_ceilopen_bracket_mean_Respiratory_rate_close_bracket\n", + "(~(Respiratory_rate<=ceil(mean_Respiratory_rate)))->(covid_death_status)\n", + "0.12800620636152055\n", + "~num_allergies_geq_imaging_studies_lifetime_minus_procedures_lifetime\n", + "(~(num_allergies>=imaging_studies_lifetime-procedures_lifetime))->(covid_death_status)\n", + "0.12\n", + "~latitude_geq__minus_active_care_plan_length_plus_active_condition_length_plus_1\n", + "(~(latitude>=-active_care_plan_length+active_condition_length+1))->(covid_death_status)\n", + "0.0725925925925926\n", + "~longitude_leq__minus_age_plus_logopen_bracket_healthcare_expenses_close_bracket\n", + "(~(longitude<=-age+log(healthcare_expenses)))->(covid_death_status)\n", + "0.24567474048442905\n", + "~longitude_leq_maximumopen_bracket_Respiratory_rate_or__minus_active_care_plan_length_close_bracket\n", + "(~(longitude<=maximum(Respiratory_rate,-active_care_plan_length)))->(covid_death_status)\n", + "0.11363636363636363\n", + "~longitude_leq_10_to_the_power_QOLS_minus_QALY\n", + "(~(longitude<=10^QOLS-QALY))->(covid_death_status)\n", + "0.1714614499424626\n", + "Drug_overdose&Hypertension\n", + "((Drug_overdose)&(Hypertension))->(covid_death_status)\n", + "0.09946236559139784\n", + "~age_leq__minus_immunizations_lifetime_plus_2_times_latitude\n", + "(~(age<=-immunizations_lifetime+2*latitude))->(covid_death_status)\n", + "0.25617792421746294\n", + "Colonoscopy&Localized__primary_osteoa\n", + "((Colonoscopy)&(Localized__primary_osteoa))->(covid_death_status)\n", + "0.15346534653465346\n", + "~active_care_plans_geq_ceilopen_bracket_inverse_of_2_times_Creatinine_close_bracket\n", + "(~(active_care_plans>=ceil(1/2*Creatinine)))->(covid_death_status)\n", + "0.07538940809968847\n", + "healthcare_coverage_geq_inverse_of_2_times_Potassium_times_encounters_lifetime_payer_coverage^healthcare_expenses_leq_open_bracket_latitude_minus_1_close_bracket_to_the_power_mean_Potassium\n", + "((healthcare_coverage>=1/2*Potassium*encounters_lifetime_payer_coverage)^(healthcare_expenses<=(latitude-1)^mean_Potassium))->(covid_death_status)\n", + "0.09913793103448276\n", + "~lifetime_care_plans_leq_ceilopen_bracket_inverse_of_2_times_encounters_count_close_bracket\n", + "(~(lifetime_care_plans<=ceil(1/2*encounters_count)))->(covid_death_status)\n", + "0.01815766164747564\n", + "~medications_lifetime_cost_leq_medications_lifetime_length_squared\n", + "(~(medications_lifetime_cost<=medications_lifetime_length^2))->(covid_death_status)\n", + "0.02247557003257329\n", + "~imaging_studies_lifetime_geq_flooropen_bracket_logopen_bracket_mean_Calcium_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket\n", + "(~(imaging_studies_lifetime>=floor(log(mean_Calcium)/log(10))))->(covid_death_status)\n", + "0.08741594620557157\n" ] } ], "source": [ - "load(\"prop_conjecturing.py\")\n", "print(len(alive_conjs))\n", "for p in alive_conjs:\n", " my_conclusion = get_conclusion(p)\n", " num_false = 0\n", " num_alive = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_dead+test_alive:\n", " try:# deal with missing values\n", " if my_conclusion(patient) == False:\n", " num_false += 1\n", @@ -3025,14 +3247,14 @@ " except:\n", " continue\n", " print(convert_name_back(p.__name__))\n", - " print(num_alive/float(num_false))\n", + " print(num_false, num_alive/float(num_false))\n", " \n", "print(len(dead_conjs))\n", "for p in dead_conjs:\n", " my_premise = get_premise(p)\n", " num_true = 0\n", " num_dead = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_dead+test_alive:\n", " try:# deal with missing values\n", " if my_premise(patient) == True:\n", " num_true += 1\n", @@ -3041,7 +3263,7 @@ " except:\n", " continue\n", " print(convert_name_back(p.__name__))\n", - " print(num_dead/float(num_true))\n", + " print(num_true, num_dead/float(num_true))\n", " \n" ] }, @@ -3054,7 +3276,7 @@ }, { "cell_type": "code", - "execution_count": 109, + "execution_count": 70, "metadata": {}, "outputs": [ { @@ -3066,18 +3288,25 @@ } ], "source": [ - "p_examples_list = list(p_examples)\n", - "\n", "# only pick people with covid\n", "covid_dead = [patient for patient in p_examples_list if (patient.covid_death_status() and patient.covid_status())]\n", "covid_alive= [patient for patient in p_examples_list if (not patient.covid_death_status() and patient.covid_status())]\n", "\n", - "print(len(covid_dead), len(covid_alive))" + "print(len(covid_dead), len(covid_alive))\n", + "\n", + "np.random.shuffle(covid_dead)\n", + "np.random.shuffle(covid_alive)\n", + "\n", + "train_dead = covid_dead[0:100]\n", + "train_alive = covid_alive[0:100]\n", + "\n", + "test_dead = covid_dead[100:]\n", + "test_alive = covid_alive[100:]" ] }, { "cell_type": "code", - "execution_count": 110, + "execution_count": 71, "metadata": {}, "outputs": [ { @@ -3085,2711 +3314,14669 @@ "output_type": "stream", "text": [ "Alive\n", - "1 healthcare_expenses<=healthcare_coverage^active_conditions*medications_lifetime_dispenses\n", - "2 healthcare_expenses<=(medications_lifetime_cost-1)*QALY\n", - "3 healthcare_expenses<=(e^QOLS)^QALY\n", - "4 healthcare_expenses<=(QOLS+1)^latitude\n", - "5 healthcare_expenses<=10^floor(sqrt(age))\n", - "6 healthcare_expenses<=1/2*10^sqrt(latitude)\n", - "7 healthcare_expenses<=1/16*longitude^4\n", - "8 healthcare_expenses>=healthcare_coverage*log(lifetime_condition_length)/log(10)\n", - "9 healthcare_expenses>=medications_lifetime_length^2/medications_lifetime^2\n", - "10 healthcare_expenses>=(procedures_lifetime_cost+1)/QOLS\n", - "11 healthcare_expenses>=encounters_lifetime_payer_coverage^2/active_conditions^2\n", - "12 healthcare_expenses>=age^2*medications_lifetime\n", - "13 healthcare_expenses>=sqrt(QOLS)*medications_lifetime_cost\n", - "14 healthcare_expenses>=10^(active_conditions/medications_lifetime)\n", - "15 healthcare_expenses>=(QALY-1)*encounters_lifetime_total_cost\n", - "16 healthcare_expenses>=DALY^2*procedures_lifetime_cost\n", - "17 healthcare_expenses<=e^QALY/mean_QALY\n", - "18 healthcare_expenses<=1/16*longitude^4\n", - "19 healthcare_expenses<=healthcare_coverage^(log(latitude)/log(10))\n", - "20 healthcare_expenses<=encounters_lifetime_payer_coverage^2/num_allergies\n", - "21 healthcare_expenses<=(encounters_lifetime_perc_covered+1)^lifetime_care_plan_length\n", - "22 healthcare_expenses<=QALY^2*age^2\n", - "23 healthcare_expenses>=(lifetime_care_plan_length+1)*healthcare_coverage\n", - "24 healthcare_expenses>=1/2*healthcare_coverage*latitude\n", - "25 healthcare_expenses>=(latitude-longitude)^2\n", - "26 healthcare_expenses>=(1/2*medications_lifetime_cost)^immunizations_lifetime\n", - "27 healthcare_expenses>=2*active_care_plan_length*healthcare_coverage\n", - "28 healthcare_expenses>=4*medications_lifetime^4\n", - "29 healthcare_expenses>=(procedures_lifetime_cost-1)/active_care_plan_length\n", - "30 healthcare_expenses>=10^maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_QOLS)\n", - "31 healthcare_expenses>=healthcare_coverage*sqrt(medications_lifetime_length)\n", - "32 healthcare_expenses>=active_care_plan_length^sqrt(procedures_lifetime)\n", - "33 healthcare_expenses<=1/2*encounters_lifetime_total_cost*healthcare_coverage\n", - "34 healthcare_expenses<=age^(encounters_count+1)\n", - "35 healthcare_expenses<=10^(encounters_lifetime_total_cost^active_care_plan_length)\n", - "36 healthcare_expenses<=4*QALY^4\n", - "37 healthcare_expenses<=10^sqrt(latitude-1)\n", - "38 healthcare_expenses<=e^QALY/procedures_lifetime_cost\n", - "39 healthcare_expenses<=healthcare_coverage^2/active_care_plans^2\n", - "40 healthcare_expenses<=e^(latitude/medications_active)\n", - "41 healthcare_expenses<=minimum(healthcare_coverage,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^2\n", - "42 healthcare_expenses<=encounters_lifetime_total_cost*healthcare_coverage/device_lifetime_length\n", - "43 healthcare_expenses>=(Respiratory_rate+1)^immunizations_lifetime\n", - "44 healthcare_expenses>=e^(QALY^encounters_lifetime_perc_covered)\n", - "45 healthcare_expenses>=immunizations_lifetime_cost^(log(medications_lifetime)/log(10))\n", - "46 healthcare_expenses>=log(healthcare_coverage)*procedures_lifetime_cost\n", - "47 healthcare_expenses>=2*lifetime_care_plan_length^num_allergies\n", - "48 healthcare_expenses>=e^(active_condition_length^encounters_lifetime_perc_covered)\n", - "49 healthcare_expenses>=log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^immunizations_lifetime_cost\n", - "50 healthcare_expenses>=(-encounters_lifetime_total_cost)^active_care_plans\n", - "51 healthcare_expenses>=device_lifetime_length^2*encounters_lifetime_total_cost\n", - "52 healthcare_expenses>=QALY^2*lifetime_condition_length\n", - "53 healthcare_coverage<=10^active_conditions/active_care_plans\n", - "54 healthcare_coverage<=minimum(healthcare_expenses,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", - "55 healthcare_coverage<=longitude^2/medications_lifetime_perc_covered\n", - "56 healthcare_coverage<=encounters_count^(1/2*age)\n", - "57 healthcare_coverage<=10^(sqrt(age)-1)\n", - "58 healthcare_coverage<=healthcare_expenses/sqrt(medications_lifetime_dispenses)\n", - "59 healthcare_coverage<=2*healthcare_expenses/active_conditions\n", - "60 healthcare_coverage<=1/16*QALY^4\n", - "61 healthcare_coverage<=(encounters_lifetime_payer_coverage+medications_lifetime_dispenses)^2\n", - "62 healthcare_coverage<=e^(10^e^procedures_lifetime)\n", - "63 healthcare_coverage>=num_allergies\n", - "64 healthcare_coverage>=2*encounters_lifetime_payer_coverage-medications_lifetime_dispenses\n", - "65 healthcare_coverage>=(-Body_Weight)^immunizations_lifetime\n", - "66 healthcare_coverage>=healthcare_expenses^encounters_lifetime_perc_covered-encounters_lifetime_total_cost\n", - "67 healthcare_coverage>=healthcare_expenses^encounters_lifetime_perc_covered-procedures_lifetime_cost\n", - "68 healthcare_coverage>=medications_lifetime_cost*medications_lifetime_perc_covered^2\n", - "69 healthcare_coverage>=e^active_conditions-medications_lifetime_cost\n", - "70 healthcare_coverage>=(-lifetime_care_plan_length)^active_care_plans\n", - "71 healthcare_coverage>=healthcare_expenses/(encounters_lifetime_payer_coverage-1)\n", - "72 healthcare_coverage<=e^(healthcare_expenses-medications_lifetime_cost)\n", - "73 healthcare_coverage<=healthcare_expenses/(immunizations_lifetime*medications_lifetime)\n", - "74 healthcare_coverage<=healthcare_expenses^lifetime_care_plans/immunizations_lifetime_cost\n", - "75 healthcare_coverage<=healthcare_expenses/QALY+medications_lifetime_dispenses\n", - "76 healthcare_coverage<=1/4*(encounters_lifetime_total_cost+2)^2\n", - "77 healthcare_coverage<=(longitude-medications_lifetime_dispenses)^2\n", - "78 healthcare_coverage<=encounters_count*healthcare_expenses/immunizations_lifetime_cost\n", - "79 healthcare_coverage<=healthcare_expenses/lifetime_conditions^2\n", - "80 healthcare_coverage<=healthcare_expenses^QOLS+medications_lifetime_length\n", - "81 healthcare_coverage>=num_allergies\n", - "82 healthcare_coverage>=encounters_lifetime_perc_covered^2*longitude^2\n", - "83 healthcare_coverage>=encounters_lifetime_perc_covered*medications_lifetime^2\n", - "84 healthcare_coverage>=1/2*active_conditions*encounters_lifetime_payer_coverage\n", - "85 healthcare_coverage>=-2*encounters_lifetime_total_cost+2*medications_lifetime_length\n", - "86 healthcare_coverage>=healthcare_expenses*medications_lifetime_perc_covered/active_condition_length\n", - "87 healthcare_coverage>=-medications_lifetime_cost+2*procedures_lifetime_cost\n", - "88 healthcare_coverage>=minimum(latitude,encounters_lifetime_payer_coverage)^2\n", - "89 healthcare_coverage>=encounters_lifetime_payer_coverage*sqrt(lifetime_conditions)\n", - "90 healthcare_coverage<=healthcare_expenses*log(10)/log(QALY)\n", - "91 healthcare_coverage<=log(encounters_count)^lifetime_condition_length\n", - "92 healthcare_coverage<=e^(1/2*QALY+1)\n", - "93 healthcare_coverage<=e^(10^e^procedures_lifetime)\n", - "94 healthcare_coverage<=1/2*e^(10^lifetime_care_plans)\n", - "95 healthcare_coverage<=healthcare_expenses/(latitude*num_allergies)\n", - "96 healthcare_coverage<=healthcare_expenses^lifetime_care_plan_length+encounters_lifetime_total_cost\n", - "97 healthcare_coverage<=10^(encounters_count/immunizations_lifetime)\n", - "98 healthcare_coverage<=10^(4*active_conditions)\n", - "99 healthcare_coverage<=encounters_lifetime_total_cost^2/device_lifetime_length\n", - "100 healthcare_coverage>=num_allergies\n", - "101 healthcare_coverage>=encounters_lifetime_payer_coverage*sqrt(medications_active)\n", - "102 healthcare_coverage>=age^2-encounters_lifetime_total_cost\n", - "103 healthcare_coverage>=-encounters_lifetime_total_cost+2*medications_lifetime_length\n", - "104 healthcare_coverage>=(procedures_lifetime+1)*encounters_lifetime_payer_coverage\n", - "105 healthcare_coverage>=10^(log(DALY)+1)\n", - "106 healthcare_coverage>=(-medications_lifetime)^active_care_plans\n", - "107 healthcare_coverage>=2*encounters_lifetime_payer_coverage*immunizations_lifetime\n", - "108 healthcare_coverage>=healthcare_expenses^medications_lifetime_perc_covered-1\n", - "109 healthcare_coverage>=(procedures_lifetime-1)^active_conditions\n", - "110 latitude<=1/medications_active+age\n", - "111 latitude<=age+log(healthcare_expenses)\n", - "112 latitude<=-DALY-longitude\n", - "113 latitude<=minimum(healthcare_expenses,floor(High_Density_Lipoprotein_Cholesterol))\n", - "114 latitude<=1/2*healthcare_coverage/QALY\n", - "115 latitude<=encounters_count*healthcare_expenses/medications_lifetime_cost\n", - "116 latitude<=-log(medications_lifetime)/log(10)+lifetime_condition_length\n", - "117 latitude<=2*active_care_plan_length+age\n", - "118 latitude<=2*QALY/medications_active\n", - "119 latitude<=minimum(healthcare_expenses,2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", - "120 latitude>=maximum(Left_ventricular_Ejection_fraction,mean_DALY)+1\n", - "121 latitude>=(longitude^2)^(1/log(10))\n", - "122 latitude>=log(procedures_lifetime_cost^4)\n", - "123 latitude>=sqrt(medications_lifetime_dispenses+1)+1\n", - "124 latitude>=e^(e^QOLS+1)\n", - "125 latitude>=age*encounters_lifetime_perc_covered-1\n", - "126 latitude>=log(encounters_lifetime_total_cost)/encounters_lifetime_perc_covered\n", - "127 latitude>=medications_active^sqrt(medications_lifetime)\n", - "128 latitude>=minimum(encounters_count,active_care_plan_length-1)\n", - "129 latitude<=active_care_plan_length*sqrt(active_conditions)\n", - "130 latitude<=QALY+immunizations_lifetime_cost-1\n", - "131 latitude<=minimum(healthcare_expenses,1/2*Low_Density_Lipoprotein_Cholesterol)\n", - "132 latitude<=medications_lifetime/medications_lifetime_perc_covered\n", - "133 latitude<=1/2*healthcare_coverage/medications_lifetime\n", - "134 latitude<=active_care_plan_length/encounters_lifetime_perc_covered+1\n", - "135 latitude<=log(active_condition_length^2)^2\n", - "136 latitude<=sqrt(2)*healthcare_expenses^(1/4)\n", - "137 latitude<=10^sqrt(log(encounters_lifetime_payer_coverage)/log(10))\n", - "138 latitude<=minimum(healthcare_expenses,1/2*MCV__Entitic_volume__by_Automated_count)\n", - "139 latitude>=1/2*active_care_plans-1/2*longitude\n", - "140 latitude>=encounters_count*encounters_lifetime_perc_covered-1\n", - "141 latitude>=1/2*QALY*immunizations_lifetime\n", - "142 latitude>=-active_care_plan_length^2+age\n", - "143 latitude>=(age+1)*medications_lifetime_perc_covered\n", - "144 latitude>=1/2*lifetime_care_plans-1/2*longitude\n", - "145 latitude>=10^encounters_lifetime_perc_covered*active_conditions\n", - "146 latitude>=log(active_condition_length^active_conditions)\n", - "147 latitude>=log(healthcare_expenses)*procedures_lifetime\n", - "148 latitude>=age*log(10)/log(device_lifetime_length)\n", - "149 latitude<=healthcare_expenses/(immunizations_lifetime*medications_lifetime_length)\n", - "150 latitude<=e^active_conditions+lifetime_care_plan_length\n", - "151 latitude<=encounters_count^(log(encounters_lifetime_total_cost)/log(10))\n", - "152 latitude<=sqrt(healthcare_expenses/active_care_plan_length)\n", - "153 latitude<=1/num_allergies+QALY\n", - "154 latitude<=e^(age^QOLS)\n", - "155 latitude<=(lifetime_condition_length-1)*active_care_plan_length\n", - "156 latitude<=minimum(healthcare_expenses,2*Carbon_Dioxide)\n", - "157 latitude<=ceil(encounters_lifetime_total_cost/DALY)\n", - "158 latitude<=active_conditions^e^active_care_plans\n", - "159 latitude>=log(2*healthcare_expenses)^2/log(10)^2\n", - "160 latitude>=log(healthcare_expenses)*medications_active\n", - "161 latitude>=-DALY^2+active_care_plan_length\n", - "162 latitude>=active_care_plans*active_conditions\n", - "163 latitude>=procedures_lifetime/sqrt(encounters_lifetime_perc_covered)\n", - "164 latitude>=(longitude^2)^(1/log(10))\n", - "165 latitude>=2*QALY^encounters_lifetime_perc_covered\n", - "166 latitude>=2*e^medications_active+1\n", - "167 latitude>=10^e^(medications_lifetime_perc_covered^2)\n", - "168 longitude<=-procedures_lifetime_cost^medications_lifetime_perc_covered\n", - "169 longitude<=-immunizations_lifetime_cost/lifetime_care_plans\n", - "170 longitude<=-QALY+encounters_lifetime_perc_covered-1\n", - "171 longitude<=1/immunizations_lifetime-age\n", - "172 longitude<=10^DALY-lifetime_condition_length\n", - "173 longitude<=-2*QALY+lifetime_care_plan_length\n", - "174 longitude<=-sqrt(medications_lifetime_cost)+encounters_lifetime_total_cost\n", - "175 longitude<=-2*latitude+2*lifetime_care_plan_length\n", - "176 longitude<=-1/4*immunizations_lifetime_cost\n", - "177 longitude>=2*active_care_plans-2*latitude\n", - "178 longitude>=-e^active_condition_length+medications_lifetime_dispenses\n", - "179 longitude>=-encounters_lifetime_payer_coverage+log(encounters_lifetime_perc_covered)\n", - "180 longitude>=log(num_allergies)/log(10)-QALY\n", - "181 longitude>=-2*latitude+2*lifetime_care_plans\n", - "182 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "183 longitude>=-DALY^lifetime_care_plan_length\n", - "184 longitude>=-minimum(healthcare_expenses,Body_Weight)\n", - "185 longitude<=log(lifetime_condition_length)^medications_lifetime_length\n", - "186 longitude<=e^encounters_count-medications_lifetime_length\n", - "187 longitude<=floor(-1/2*immunizations_lifetime_cost)\n", - "188 longitude<=-10^(encounters_lifetime_perc_covered+1)\n", - "189 longitude<=-2*encounters_count+procedures_lifetime_cost\n", - "190 longitude<=-floor(lifetime_condition_length)+medications_lifetime_cost\n", - "191 longitude<=log(10)*procedures_lifetime/log(DALY)\n", - "192 longitude<=-age-2\n", - "193 longitude>=-2*latitude+2*lifetime_care_plans\n", - "194 longitude>=-healthcare_coverage/latitude\n", - "195 longitude>=active_conditions-2*latitude\n", - "196 longitude>=-2*latitude+procedures_lifetime\n", - "197 longitude>=2*immunizations_lifetime-2*latitude\n", - "198 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "199 longitude<=-sqrt(medications_lifetime_cost)+encounters_lifetime_total_cost\n", - "200 longitude<=-ceil(age)\n", - "201 longitude<=age-medications_lifetime-1\n", - "202 longitude<=(-active_conditions)^procedures_lifetime\n", - "203 longitude<=age/(medications_lifetime_perc_covered-1)\n", - "204 longitude<=QALY-2*latitude\n", - "205 longitude<=-encounters_lifetime_payer_coverage/lifetime_condition_length\n", - "206 longitude<=-QALY-active_conditions\n", - "207 longitude<=-sqrt(medications_lifetime_length)+healthcare_coverage\n", - "208 longitude<=-immunizations_lifetime_cost/lifetime_conditions\n", - "209 longitude>=2*active_conditions-2*latitude\n", - "210 longitude>=-healthcare_coverage/age\n", - "211 longitude>=-encounters_lifetime_payer_coverage/procedures_lifetime\n", - "212 longitude>=(encounters_lifetime_perc_covered-1)*encounters_lifetime_payer_coverage\n", - "213 longitude>=-1/2*e^encounters_count\n", - "214 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "215 longitude>=-2*latitude+procedures_lifetime\n", - "216 age<=floor(active_condition_length)+latitude\n", - "217 age<=2*latitude\n", - "218 age<=encounters_count^log(encounters_lifetime_payer_coverage)\n", - "219 age<=2*latitude-2*num_allergies\n", - "220 age<=sqrt(healthcare_coverage)-encounters_count\n", - "221 age<=e^(QALY/procedures_lifetime)\n", - "222 age<=-device_lifetime_length+2*latitude\n", - "223 age<=lifetime_condition_length-1/2*longitude\n", - "224 age<=10^encounters_count/active_care_plan_length\n", - "225 age<=2*log(immunizations_lifetime_cost)^2\n", - "226 age>=2*QOLS+active_condition_length\n", - "227 age>=DALY+QALY+1\n", - "228 age>=QALY+1\n", - "229 age>=1/2*device_lifetime_length+1/2*medications_lifetime\n", - "230 age>=ceil(lifetime_care_plan_length)-lifetime_condition_length\n", - "231 age>=ceil(QALY)+1\n", - "232 age>=1/2*active_conditions+encounters_count\n", - "233 age>=medications_lifetime_length/(lifetime_condition_length+1)\n", - "234 age>=sqrt(medications_lifetime_cost)-medications_lifetime_dispenses\n", - "235 age<=QALY^2/medications_active^2\n", - "236 age<=ceil(DALY)-longitude\n", - "237 age<=10^DALY+lifetime_care_plan_length\n", - "238 age<=(sqrt(QALY)+1)^2\n", - "239 age<=healthcare_expenses/medications_lifetime_length+active_care_plan_length\n", - "240 age<=encounters_lifetime_total_cost/(active_condition_length+1)\n", - "241 age<=latitude+lifetime_care_plan_length\n", - "242 age<=2*encounters_count+lifetime_care_plan_length\n", - "243 age<=1/4*lifetime_condition_length^2\n", - "244 age<=e^(lifetime_condition_length^encounters_lifetime_perc_covered)\n", - "245 age>=DALY+QALY+1\n", - "246 age>=active_condition_length+log(immunizations_lifetime)\n", - "247 age>=medications_lifetime_dispenses/floor(lifetime_care_plan_length)\n", - "248 age>=e^QOLS*procedures_lifetime\n", - "249 age>=sqrt(active_conditions)+QALY\n", - "250 age>=active_care_plan_length+encounters_lifetime_perc_covered\n", - "251 age>=(2*active_care_plan_length)^medications_lifetime_perc_covered\n", - "252 age>=2*QALY-lifetime_condition_length\n", - "253 age>=log(e^encounters_count)/log(10)-1\n", - "254 age>=-10^active_care_plans+latitude\n", - "255 age<=10^medications_lifetime+latitude\n", - "256 age<=minimum(healthcare_expenses,Low_Density_Lipoprotein_Cholesterol+1)\n", - "257 age<=QALY*log(encounters_lifetime_payer_coverage)/log(10)\n", - "258 age<=encounters_count-longitude\n", - "259 age<=sqrt(encounters_lifetime_payer_coverage)/imaging_studies_lifetime\n", - "260 age<=minimum(healthcare_expenses,e^Potassium)\n", - "261 age<=ceil(latitude)+lifetime_care_plan_length\n", - "262 age<=healthcare_expenses/encounters_lifetime_total_cost+latitude\n", - "263 age<=1/2*encounters_lifetime_payer_coverage-lifetime_care_plan_length\n", - "264 age<=encounters_lifetime_payer_coverage/log(latitude)\n", - "265 age>=active_condition_length\n", - "266 age>=active_care_plan_length+2*encounters_lifetime_perc_covered\n", - "267 age>=sqrt(1/2)*sqrt(encounters_lifetime_payer_coverage)+1\n", - "268 age>=DALY+QALY+1\n", - "269 age>=active_care_plans+active_condition_length-1\n", - "270 age>=QALY+1/2*lifetime_conditions\n", - "271 age>=QALY+medications_active\n", - "272 age>=medications_lifetime^2/QALY^2\n", - "273 num_allergies<=active_care_plans\n", - "274 num_allergies<=device_lifetime_length\n", - "275 num_allergies>=device_lifetime_length\n", - "276 num_allergies<=active_care_plans\n", - "277 num_allergies<=procedures_lifetime\n", - "278 num_allergies<=e^device_lifetime_length\n", - "279 num_allergies<=-active_care_plan_length+lifetime_care_plan_length\n", - "280 num_allergies>=imaging_studies_lifetime\n", - "281 num_allergies>=minimum(active_care_plans,immunizations_lifetime-1)\n", - "282 num_allergies<=active_care_plans\n", - "283 num_allergies<=immunizations_lifetime\n", - "284 num_allergies<=e^device_lifetime_length\n", - "285 num_allergies<=device_lifetime_length^procedures_lifetime\n", - "286 num_allergies>=device_lifetime_length\n", - "287 num_allergies>=-active_conditions+2*procedures_lifetime\n", - "288 active_care_plans<=lifetime_care_plans\n", - "289 active_care_plans<=active_conditions+1\n", - "290 active_care_plans>=imaging_studies_lifetime\n", - "291 active_care_plans>=1/2*immunizations_lifetime\n", - "292 active_care_plans>=medications_active-1\n", - "293 active_care_plans>=lifetime_care_plans-medications_lifetime\n", - "294 active_care_plans>=minimum(lifetime_care_plans,immunizations_lifetime)\n", - "295 active_care_plans>=log(maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_QOLS))\n", - "296 active_care_plans>=lifetime_care_plans-procedures_lifetime_cost\n", - "297 active_care_plans>=minimum(device_lifetime_length,Creatinine)\n", - "298 active_care_plans<=lifetime_care_plans\n", - "299 active_care_plans>=ceil(device_lifetime_length)\n", - "300 active_care_plans>=encounters_lifetime_perc_covered\n", - "301 active_care_plans>=immunizations_lifetime\n", - "302 active_care_plans>=medications_active-1\n", - "303 active_care_plans>=num_allergies-1\n", - "304 active_care_plans>=minimum(lifetime_care_plans,Creatinine)\n", - "305 active_care_plans>=minimum(lifetime_care_plans,procedures_lifetime)\n", - "306 active_care_plans<=lifetime_care_plans\n", - "307 active_care_plans<=10^medications_active\n", - "308 active_care_plans<=2*ceil(DALY)\n", - "309 active_care_plans>=num_allergies\n", - "310 active_care_plans>=immunizations_lifetime\n", - "311 active_care_plans>=sqrt(lifetime_care_plans)\n", - "312 active_care_plans>=ceil(1/2*lifetime_care_plans)\n", - "313 active_care_plans>=medications_active-1\n", - "314 active_care_plans>=minimum(lifetime_care_plans,active_conditions)\n", - "315 active_care_plans>=lifetime_care_plan_length/active_condition_length\n", - "316 lifetime_care_plans<=active_conditions\n", - "317 lifetime_care_plans<=active_care_plans+procedures_lifetime\n", - "318 lifetime_care_plans<=2*active_care_plans\n", - "319 lifetime_care_plans<=floor(sqrt(active_care_plan_length))\n", - "320 lifetime_care_plans<=active_care_plans+immunizations_lifetime\n", - "321 lifetime_care_plans<=active_care_plans+medications_lifetime\n", - "322 lifetime_care_plans<=active_care_plans+medications_active\n", - "323 lifetime_care_plans>=num_allergies\n", - "324 lifetime_care_plans>=active_care_plans\n", - "325 lifetime_care_plans<=active_care_plans\n", - "326 lifetime_care_plans>=num_allergies\n", - "327 lifetime_care_plans>=active_care_plans\n", - "328 lifetime_care_plans>=imaging_studies_lifetime\n", - "329 lifetime_care_plans>=minimum(lifetime_conditions,procedures_lifetime)\n", - "330 lifetime_care_plans>=immunizations_lifetime^2-1\n", - "331 lifetime_care_plans<=active_care_plans+1\n", - "332 lifetime_care_plans<=active_care_plan_length\n", - "333 lifetime_care_plans<=encounters_count\n", - "334 lifetime_care_plans<=e^healthcare_coverage\n", - "335 lifetime_care_plans<=ceil(log(latitude))\n", - "336 lifetime_care_plans<=active_care_plans^2\n", - "337 lifetime_care_plans<=minimum(healthcare_expenses,floor(Globulin__Mass_volume__in_Serum_by_calculation))\n", - "338 lifetime_care_plans<=active_care_plans+medications_lifetime\n", - "339 lifetime_care_plans>=active_care_plans\n", - "340 lifetime_care_plans>=minimum(active_conditions,medications_active)\n", - "341 active_care_plan_length<=maximum(latitude,active_condition_length)\n", - "342 active_care_plan_length<=lifetime_care_plan_length\n", - "343 active_care_plan_length<=maximum(active_condition_length,immunizations_lifetime_cost)\n", - "344 active_care_plan_length<=lifetime_care_plan_length^sqrt(encounters_count)\n", - "345 active_care_plan_length<=-log(procedures_lifetime_cost)/log(10)+QALY\n", - "346 active_care_plan_length<=encounters_count-1/2*longitude\n", - "347 active_care_plan_length<=-log(healthcare_coverage)/log(10)+age\n", - "348 active_care_plan_length>=num_allergies\n", - "349 active_care_plan_length>=lifetime_care_plan_length^QOLS\n", - "350 active_care_plan_length>=minimum(lifetime_care_plan_length,DALY+1)\n", - "351 active_care_plan_length>=QALY*log(active_care_plans)/log(10)\n", - "352 active_care_plan_length>=log(medications_active^medications_lifetime)/log(10)\n", - "353 active_care_plan_length>=lifetime_care_plan_length-lifetime_condition_length\n", - "354 active_care_plan_length>=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,-healthcare_expenses)\n", - "355 active_care_plan_length<=ceil(age)-medications_lifetime_perc_covered\n", - "356 active_care_plan_length<=lifetime_care_plan_length\n", - "357 active_care_plan_length<=active_condition_length/procedures_lifetime\n", - "358 active_care_plan_length<=latitude^2/device_lifetime_length^2\n", - "359 active_care_plan_length<=active_condition_length*e^medications_lifetime_perc_covered\n", - "360 active_care_plan_length<=active_condition_length^medications_lifetime\n", - "361 active_care_plan_length<=ceil(latitude)+medications_lifetime\n", - "362 active_care_plan_length<=(medications_lifetime_perc_covered+1)*active_condition_length\n", - "363 active_care_plan_length<=(DALY+1)*active_condition_length\n", - "364 active_care_plan_length>=num_allergies\n", - "365 active_care_plan_length>=minimum(active_condition_length,lifetime_care_plan_length-1)\n", - "366 active_care_plan_length>=minimum(active_condition_length,floor(lifetime_care_plan_length))\n", - "367 active_care_plan_length>=DALY^2*medications_lifetime_perc_covered\n", - "368 active_care_plan_length>=active_condition_length*floor(QOLS)\n", - "369 active_care_plan_length>=10^num_allergies-active_condition_length\n", - "370 active_care_plan_length<=sqrt(medications_lifetime_length-1)+1\n", - "371 active_care_plan_length<=10^(2*log(active_care_plans))\n", - "372 active_care_plan_length<=active_condition_length\n", - "373 active_care_plan_length<=10^(encounters_lifetime_total_cost/medications_lifetime_dispenses)\n", - "374 active_care_plan_length<=1/2*lifetime_care_plan_length/encounters_lifetime_perc_covered\n", - "375 active_care_plan_length<=(QALY-age)^2\n", - "376 active_care_plan_length<=DALY*e^active_care_plans\n", - "377 active_care_plan_length>=num_allergies\n", - "378 active_care_plan_length>=lifetime_care_plan_length/(medications_lifetime+1)\n", - "379 active_care_plan_length>=log(lifetime_condition_length^medications_active)\n", - "380 active_care_plan_length>=lifetime_care_plan_length^QOLS\n", - "381 active_care_plan_length>=encounters_count-log(healthcare_expenses)\n", - "382 active_care_plan_length>=lifetime_care_plan_length/sqrt(encounters_count)\n", - "383 active_care_plan_length>=minimum(active_condition_length,active_care_plans^2)\n", - "384 active_care_plan_length>=minimum(active_care_plans,lifetime_care_plan_length)\n", - "385 lifetime_care_plan_length<=(active_care_plan_length-1)*lifetime_care_plans\n", - "386 lifetime_care_plan_length<=medications_lifetime_cost\n", - "387 lifetime_care_plan_length<=e^(sqrt(10^active_care_plans))\n", - "388 lifetime_care_plan_length<=minimum(healthcare_expenses,Diastolic_Blood_Pressure+1)\n", - "389 lifetime_care_plan_length<=10^(log(encounters_lifetime_total_cost)/log(10)-1)\n", - "390 lifetime_care_plan_length<=lifetime_condition_length/sqrt(encounters_lifetime_perc_covered)\n", - "391 lifetime_care_plan_length<=healthcare_expenses^DALY/mean_DALY\n", - "392 lifetime_care_plan_length<=10^(2*medications_lifetime_perc_covered+2)\n", - "393 lifetime_care_plan_length<=healthcare_expenses/(encounters_lifetime_payer_coverage*immunizations_lifetime)\n", - "394 lifetime_care_plan_length>=active_care_plan_length\n", - "395 lifetime_care_plan_length>=2*latitude/encounters_count\n", - "396 lifetime_care_plan_length>=immunizations_lifetime_cost*log(10)/log(healthcare_expenses)\n", - "397 lifetime_care_plan_length>=active_condition_length-log(encounters_lifetime_payer_coverage)\n", - "398 lifetime_care_plan_length>=ceil(age)^encounters_lifetime_perc_covered\n", - "399 lifetime_care_plan_length>=2*active_care_plan_length-2*active_condition_length\n", - "400 lifetime_care_plan_length>=10^floor(log(encounters_count)/log(10))\n", - "401 lifetime_care_plan_length>=e^(lifetime_care_plans-1)+1\n", - "402 lifetime_care_plan_length>=minimum(lifetime_condition_length,sqrt(medications_lifetime_length))\n", - "403 lifetime_care_plan_length>=log(e^encounters_count)/log(10)+1\n", - "404 lifetime_care_plan_length<=(age-lifetime_condition_length)^2\n", - "405 lifetime_care_plan_length<=active_care_plans*healthcare_expenses\n", - "406 lifetime_care_plan_length<=healthcare_coverage/active_condition_length+1\n", - "407 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "408 lifetime_care_plan_length<=healthcare_expenses/healthcare_coverage+age\n", - "409 lifetime_care_plan_length<=active_care_plan_length+2*encounters_count\n", - "410 lifetime_care_plan_length<=1/medications_lifetime_perc_covered-longitude\n", - "411 lifetime_care_plan_length>=num_allergies\n", - "412 lifetime_care_plan_length>=active_care_plan_length\n", - "413 lifetime_care_plan_length>=minimum(lifetime_care_plans,lifetime_condition_length)\n", - "414 lifetime_care_plan_length>=sqrt(medications_lifetime_length)*procedures_lifetime\n", - "415 lifetime_care_plan_length>=log(active_care_plans^encounters_count)\n", - "416 lifetime_care_plan_length>=sqrt(medications_lifetime_dispenses)/QOLS\n", - "417 lifetime_care_plan_length>=-10^encounters_lifetime_perc_covered+medications_lifetime\n", - "418 lifetime_care_plan_length>=active_care_plan_length^2/latitude\n", - "419 lifetime_care_plan_length<=sqrt(medications_lifetime_dispenses)-longitude\n", - "420 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "421 lifetime_care_plan_length<=10^log(encounters_count+1)\n", - "422 lifetime_care_plan_length<=floor(QALY/medications_lifetime_perc_covered)\n", - "423 lifetime_care_plan_length<=healthcare_expenses*latitude/procedures_lifetime_cost\n", - "424 lifetime_care_plan_length<=e^DALY+latitude\n", - "425 lifetime_care_plan_length<=QOLS*medications_lifetime_dispenses+1\n", - "426 lifetime_care_plan_length<=e^(-medications_active)*medications_lifetime_dispenses\n", - "427 lifetime_care_plan_length<=minimum(healthcare_expenses,ceil(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", - "428 lifetime_care_plan_length>=num_allergies\n", - "429 lifetime_care_plan_length>=active_care_plan_length\n", - "430 lifetime_care_plan_length>=10^log(procedures_lifetime)-1\n", - "431 lifetime_care_plan_length>=active_care_plan_length*log(10)/log(num_allergies)\n", - "432 lifetime_care_plan_length>=2*lifetime_conditions*medications_active\n", - "433 lifetime_care_plan_length>=lifetime_condition_length*log(10)/log(medications_lifetime_length)\n", - "434 lifetime_care_plan_length>=log(10)^2/log(medications_lifetime_perc_covered)^2\n", - "435 lifetime_care_plan_length>=active_care_plans^2*lifetime_care_plans\n", - "436 active_conditions<=lifetime_conditions\n", - "437 active_conditions<=floor(active_care_plan_length)^2\n", - "438 active_conditions>=active_care_plans\n", - "439 active_conditions>=medications_active\n", - "440 active_conditions>=2*lifetime_conditions/encounters_count\n", - "441 active_conditions>=2*QOLS\n", - "442 active_conditions>=floor(device_lifetime_length)^2\n", - "443 active_conditions>=2*active_care_plans-1\n", - "444 active_conditions>=(active_care_plans-1)^2\n", - "445 active_conditions<=lifetime_conditions\n", - "446 active_conditions<=active_care_plan_length\n", - "447 active_conditions<=10^e^immunizations_lifetime\n", - "448 active_conditions<=maximum(lifetime_care_plans,DALY)\n", - "449 active_conditions<=sqrt(encounters_count)+active_care_plans\n", - "450 active_conditions>=num_allergies\n", - "451 active_conditions>=active_care_plans-1\n", - "452 active_conditions>=minimum(lifetime_conditions,1/2*medications_lifetime)\n", - "453 active_conditions>=2*num_allergies\n", - "454 active_conditions>=-encounters_lifetime_payer_coverage+lifetime_conditions\n", - "455 active_conditions>=lifetime_conditions-medications_lifetime_cost\n", - "456 active_conditions>=minimum(lifetime_conditions,medications_active)\n", - "457 active_conditions>=(lifetime_conditions-1)*immunizations_lifetime\n", - "458 active_conditions<=lifetime_conditions\n", - "459 active_conditions<=10^e^device_lifetime_length\n", - "460 active_conditions>=num_allergies\n", - "461 active_conditions>=1/2*lifetime_conditions\n", - "462 active_conditions>=active_care_plans-1\n", - "463 active_conditions>=lifetime_care_plans-1\n", - "464 active_conditions>=minimum(device_lifetime_length,lifetime_conditions-1)\n", - "465 active_conditions>=minimum(active_care_plans,lifetime_conditions)\n", - "466 active_conditions>=lifetime_conditions-procedures_lifetime\n", - "467 active_conditions>=1/QOLS-1\n", - "468 active_conditions>=minimum(lifetime_conditions,2*medications_active)\n", - "469 lifetime_conditions<=active_conditions+procedures_lifetime\n", - "470 lifetime_conditions<=active_condition_length\n", - "471 lifetime_conditions<=(1/num_allergies)\n", - "472 lifetime_conditions<=2*active_care_plans+lifetime_care_plans\n", - "473 lifetime_conditions<=2*active_conditions\n", - "474 lifetime_conditions<=minimum(healthcare_expenses,Respiratory_rate)\n", - "475 lifetime_conditions<=maximum(active_conditions,1/medications_lifetime_perc_covered)\n", - "476 lifetime_conditions<=maximum(active_conditions,e^procedures_lifetime)\n", - "477 lifetime_conditions>=active_conditions\n", - "478 lifetime_conditions>=lifetime_care_plans+1\n", - "479 lifetime_conditions>=minimum(encounters_count,e^medications_active)\n", - "480 lifetime_conditions<=active_conditions+2\n", - "481 lifetime_conditions<=e^lifetime_care_plans\n", - "482 lifetime_conditions<=2*active_conditions\n", - "483 lifetime_conditions<=e^healthcare_coverage\n", - "484 lifetime_conditions<=maximum(active_conditions,2*lifetime_care_plans)\n", - "485 lifetime_conditions<=encounters_count+1\n", - "486 lifetime_conditions<=active_conditions/ceil(medications_lifetime_perc_covered)\n", - "487 lifetime_conditions<=ceil(log(healthcare_expenses))\n", - "488 lifetime_conditions<=maximum(active_conditions,lifetime_care_plans+1)\n", - "489 lifetime_conditions>=active_conditions\n", - "490 lifetime_conditions>=encounters_count-encounters_lifetime_payer_coverage\n", - "491 lifetime_conditions<=active_conditions+procedures_lifetime\n", - "492 lifetime_conditions<=10^medications_lifetime_perc_covered*active_conditions\n", - "493 lifetime_conditions<=maximum(active_care_plan_length,active_conditions)\n", - "494 lifetime_conditions<=maximum(active_conditions,immunizations_lifetime_cost)\n", - "495 lifetime_conditions<=ceil(1/2*QALY)\n", - "496 lifetime_conditions<=2*active_conditions+1\n", - "497 lifetime_conditions<=maximum(Triglycerides,ceil(active_conditions))\n", - "498 lifetime_conditions>=active_conditions\n", - "499 lifetime_conditions>=ceil(sqrt(procedures_lifetime))\n", - "500 lifetime_conditions>=lifetime_care_plans-num_allergies\n", - "501 active_condition_length<=1/2*maximum(age,lifetime_condition_length)\n", - "502 active_condition_length<=lifetime_condition_length\n", - "503 active_condition_length<=e^(age/active_conditions)\n", - "504 active_condition_length<=age-log(immunizations_lifetime_cost)\n", - "505 active_condition_length<=maximum(active_care_plan_length,sqrt(encounters_lifetime_total_cost))\n", - "506 active_condition_length<=2*age-encounters_count\n", - "507 active_condition_length<=minimum(healthcare_expenses,MCHC__Mass_volume__by_Automated_count)\n", - "508 active_condition_length<=sqrt(QALY)*encounters_count\n", - "509 active_condition_length>=num_allergies\n", - "510 active_condition_length>=device_lifetime_length\n", - "511 active_condition_length>=-Body_Weight+ceil(lifetime_care_plan_length)\n", - "512 active_condition_length>=1/2*QALY-procedures_lifetime_cost\n", - "513 active_condition_length>=minimum(active_care_plans,active_care_plan_length)\n", - "514 active_condition_length>=1/2*encounters_lifetime_perc_covered*lifetime_care_plan_length\n", - "515 active_condition_length>=active_care_plan_length-immunizations_lifetime_cost\n", - "516 active_condition_length>=QALY/(medications_lifetime-1)\n", - "517 active_condition_length>=minimum(active_care_plan_length,encounters_count)\n", - "518 active_condition_length>=minimum(active_care_plan_length,e^active_conditions)\n", - "519 active_condition_length<=maximum(active_care_plan_length,1/immunizations_lifetime)\n", - "520 active_condition_length<=lifetime_condition_length\n", - "521 active_condition_length<=healthcare_expenses/encounters_lifetime_payer_coverage+QOLS\n", - "522 active_condition_length<=maximum(active_care_plan_length,e^lifetime_care_plans)\n", - "523 active_condition_length<=-floor(longitude)+medications_lifetime_perc_covered\n", - "524 active_condition_length<=maximum(active_care_plan_length,10^DALY)\n", - "525 active_condition_length<=maximum(active_care_plan_length,healthcare_expenses^encounters_lifetime_perc_covered)\n", - "526 active_condition_length<=log(10^(lifetime_care_plan_length+1))\n", - "527 active_condition_length>=device_lifetime_length\n", - "528 active_condition_length>=log(DALY*encounters_lifetime_total_cost)\n", - "529 active_condition_length>=sqrt(medications_lifetime_length*medications_lifetime_perc_covered)\n", - "530 active_condition_length>=active_care_plan_length-medications_lifetime_dispenses+1\n", - "531 active_condition_length>=minimum(lifetime_care_plans,lifetime_condition_length)\n", - "532 active_condition_length>=2*DALY-encounters_count\n", - "533 active_condition_length>=sqrt(DALY*medications_lifetime)\n", - "534 active_condition_length>=2*QALY-2*latitude\n", - "535 active_condition_length>=1/2*QALY*imaging_studies_lifetime\n", - "536 active_condition_length<=healthcare_coverage\n", - "537 active_condition_length<=maximum(latitude,active_care_plan_length)\n", - "538 active_condition_length<=maximum(active_care_plan_length,encounters_count)\n", - "539 active_condition_length<=1/encounters_count+lifetime_care_plan_length\n", - "540 active_condition_length<=active_care_plan_length^active_care_plans\n", - "541 active_condition_length<=maximum(active_care_plan_length,immunizations_lifetime_cost)\n", - "542 active_condition_length<=medications_lifetime_dispenses^DALY-1\n", - "543 active_condition_length>=num_allergies\n", - "544 active_condition_length>=lifetime_condition_length^encounters_lifetime_perc_covered-1\n", - "545 active_condition_length>=active_care_plan_length\n", - "546 active_condition_length>=log(procedures_lifetime_cost^active_conditions)/log(10)\n", - "547 active_condition_length>=ceil(active_care_plan_length)-medications_lifetime\n", - "548 lifetime_condition_length<=healthcare_coverage^2/medications_lifetime_dispenses^2\n", - "549 lifetime_condition_length<=healthcare_expenses/QALY^2\n", - "550 lifetime_condition_length<=active_condition_length*active_conditions\n", - "551 lifetime_condition_length<=latitude^2/medications_active^2\n", - "552 lifetime_condition_length<=-ceil(active_condition_length)+encounters_lifetime_payer_coverage\n", - "553 lifetime_condition_length<=maximum(Systolic_Blood_Pressure,e^active_conditions)\n", - "554 lifetime_condition_length<=healthcare_expenses/medications_lifetime_length+age\n", - "555 lifetime_condition_length<=(DALY+1)*age\n", - "556 lifetime_condition_length<=(10^encounters_count)^QOLS\n", - "557 lifetime_condition_length<=log(encounters_lifetime_total_cost)^active_conditions\n", - "558 lifetime_condition_length>=active_conditions/DALY\n", - "559 lifetime_condition_length>=DALY*log(lifetime_care_plan_length)\n", - "560 lifetime_condition_length>=active_condition_length/QOLS+1\n", - "561 lifetime_condition_length>=encounters_lifetime_total_cost^(log(medications_active)/log(10))\n", - "562 lifetime_condition_length>=sqrt(QALY+medications_lifetime_length)\n", - "563 lifetime_condition_length>=sqrt(medications_lifetime_cost/QALY)\n", - "564 lifetime_condition_length>=2*log(medications_lifetime_cost)^2/log(10)^2\n", - "565 lifetime_condition_length>=(2*medications_lifetime_length)^medications_lifetime_perc_covered\n", - "566 lifetime_condition_length>=-e^medications_lifetime+medications_lifetime_dispenses\n", - "567 lifetime_condition_length<=encounters_lifetime_total_cost\n", - "568 lifetime_condition_length<=maximum(active_condition_length,10^active_conditions)\n", - "569 lifetime_condition_length<=minimum(healthcare_expenses,Platelets____volume__in_Blood_by_Automated_count-1)\n", - "570 lifetime_condition_length<=QALY*log(age)\n", - "571 lifetime_condition_length<=maximum(Body_Mass_Index,ceil(procedures_lifetime_cost))\n", - "572 lifetime_condition_length<=1/2*healthcare_coverage/latitude\n", - "573 lifetime_condition_length<=DALY*sqrt(healthcare_coverage)\n", - "574 lifetime_condition_length<=active_condition_length^lifetime_conditions\n", - "575 lifetime_condition_length<=1/2*active_condition_length*encounters_count\n", - "576 lifetime_condition_length>=log(device_lifetime_length)/log(10)+immunizations_lifetime_cost\n", - "577 lifetime_condition_length>=1/2*active_care_plan_length*active_conditions\n", - "578 lifetime_condition_length>=ceil(active_care_plan_length*active_care_plans)\n", - "579 lifetime_condition_length>=10^(-lifetime_care_plan_length-1)\n", - "580 lifetime_condition_length>=-active_care_plan_length+2*lifetime_care_plan_length\n", - "581 lifetime_condition_length>=immunizations_lifetime^sqrt(QALY)\n", - "582 lifetime_condition_length>=minimum(immunizations_lifetime_cost,Diastolic_Blood_Pressure+1)\n", - "583 lifetime_condition_length>=floor(1/2*device_lifetime_length)^2\n", - "584 lifetime_condition_length>=sqrt(DALY)*active_care_plan_length\n", - "585 lifetime_condition_length>=2*maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_DALY)\n", - "586 lifetime_condition_length<=active_condition_length^lifetime_conditions\n", - "587 lifetime_condition_length<=encounters_lifetime_total_cost\n", - "588 lifetime_condition_length<=healthcare_expenses/(age*lifetime_conditions)\n", - "589 lifetime_condition_length<=ceil(active_condition_length)^active_conditions\n", - "590 lifetime_condition_length<=10^DALY*latitude\n", - "591 lifetime_condition_length<=QALY^2+active_condition_length\n", - "592 lifetime_condition_length<=floor(1/2*active_condition_length)^2\n", - "593 lifetime_condition_length<=minimum(healthcare_expenses,Platelets____volume__in_Blood_by_Automated_count-1)\n", - "594 lifetime_condition_length<=10^(latitude^(1/4))\n", - "595 lifetime_condition_length<=healthcare_expenses/(QOLS*medications_lifetime_dispenses)\n", - "596 lifetime_condition_length>=sqrt(medications_lifetime)+latitude\n", - "597 lifetime_condition_length>=sqrt(encounters_lifetime_payer_coverage+medications_lifetime_dispenses)\n", - "598 lifetime_condition_length>=sqrt(active_conditions)+lifetime_care_plan_length\n", - "599 lifetime_condition_length>=ceil(lifetime_care_plan_length)*medications_active\n", - "600 lifetime_condition_length>=-active_care_plan_length+medications_lifetime\n", - "601 lifetime_condition_length>=e^(sqrt(1/2)*sqrt(active_care_plan_length))\n", - "602 lifetime_condition_length>=e^(active_conditions/lifetime_care_plans)\n", - "603 lifetime_condition_length>=log(active_conditions^encounters_count)/log(10)\n", - "604 lifetime_condition_length>=(2*active_conditions)^immunizations_lifetime\n", - "605 lifetime_condition_length>=2*age-encounters_lifetime_payer_coverage\n", - "606 device_lifetime_length<=floor(1/immunizations_lifetime)\n", - "607 device_lifetime_length<=active_condition_length\n", - "608 device_lifetime_length<=abs(log(medications_active))/log(10)\n", - "609 device_lifetime_length<=healthcare_expenses*medications_lifetime_perc_covered\n", - "610 device_lifetime_length<=procedures_lifetime_cost^longitude\n", - "611 device_lifetime_length<=-active_condition_length+lifetime_condition_length\n", - "612 device_lifetime_length<=abs(log(num_allergies))/log(10)\n", - "613 device_lifetime_length>=floor(encounters_lifetime_perc_covered)\n", - "614 device_lifetime_length>=-healthcare_coverage\n", - "615 device_lifetime_length>=-num_allergies\n", - "616 device_lifetime_length<=num_allergies\n", - "617 device_lifetime_length>=imaging_studies_lifetime\n", - "618 device_lifetime_length>=QALY*imaging_studies_lifetime\n", - "619 device_lifetime_length<=maximum(Triglycerides,ceil(num_allergies))\n", - "620 device_lifetime_length<=lifetime_care_plan_length\n", - "621 device_lifetime_length<=active_condition_length\n", - "622 device_lifetime_length<=immunizations_lifetime_cost\n", - "623 device_lifetime_length<=-active_care_plan_length+lifetime_condition_length\n", - "624 device_lifetime_length<=healthcare_expenses*medications_active\n", - "625 device_lifetime_length>=num_allergies\n", - "626 encounters_count<=-active_conditions+ceil(lifetime_condition_length)\n", - "627 encounters_count<=lifetime_conditions^active_conditions\n", - "628 encounters_count<=active_conditions/imaging_studies_lifetime\n", - "629 encounters_count<=4*age-2\n", - "630 encounters_count<=ceil(age)/num_allergies\n", - "631 encounters_count<=10^(active_conditions^QOLS)\n", - "632 encounters_count<=2*age/QOLS\n", - "633 encounters_count<=maximum(mean_Carbon_Dioxide,1/device_lifetime_length)\n", - "634 encounters_count<=healthcare_expenses/procedures_lifetime_cost+active_care_plans\n", - "635 encounters_count<=maximum(immunizations_lifetime,procedures_lifetime_cost)\n", - "636 encounters_count>=-immunizations_lifetime_cost+1/2*lifetime_care_plan_length\n", - "637 encounters_count>=sqrt(procedures_lifetime)\n", - "638 encounters_count>=ceil(log(immunizations_lifetime_cost))\n", - "639 encounters_count>=active_conditions\n", - "640 encounters_count>=lifetime_conditions\n", - "641 encounters_count>=ceil(log(medications_lifetime_cost)/log(10))\n", - "642 encounters_count>=immunizations_lifetime^2\n", - "643 encounters_count>=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_QOLS)^2\n", - "644 encounters_count>=minimum(age,medications_lifetime-1)\n", - "645 encounters_count>=ceil(DALY)-num_allergies\n", - "646 encounters_count<=floor(sqrt(encounters_lifetime_payer_coverage))\n", - "647 encounters_count<=ceil(age)+1\n", - "648 encounters_count<=ceil(lifetime_condition_length)\n", - "649 encounters_count<=healthcare_expenses^medications_lifetime_perc_covered+latitude\n", - "650 encounters_count<=floor(1/2*sqrt(healthcare_coverage))\n", - "651 encounters_count<=lifetime_care_plan_length^2/DALY^2\n", - "652 encounters_count<=10^medications_lifetime/procedures_lifetime\n", - "653 encounters_count<=maximum(medications_lifetime_cost,active_conditions+1)\n", - "654 encounters_count<=ceil(encounters_lifetime_payer_coverage/active_condition_length)\n", - "655 encounters_count<=10^active_care_plans+active_conditions\n", - "656 encounters_count>=medications_lifetime-procedures_lifetime_cost+1\n", - "657 encounters_count>=minimum(medications_lifetime,2*Respiratory_rate)\n", - "658 encounters_count>=floor(lifetime_conditions/QOLS)\n", - "659 encounters_count>=log(active_conditions)*procedures_lifetime\n", - "660 encounters_count>=immunizations_lifetime+lifetime_conditions\n", - "661 encounters_count>=10^num_allergies+lifetime_care_plans\n", - "662 encounters_count>=floor(Heart_rate^medications_lifetime_perc_covered)\n", - "663 encounters_count>=active_care_plans+medications_active\n", - "664 encounters_count>=medications_lifetime_dispenses/10^active_care_plans\n", - "665 encounters_count>=-QALY+1/2*medications_lifetime\n", - "666 encounters_count<=1/2*10^active_conditions\n", - "667 encounters_count<=log(healthcare_expenses)/log(10)+medications_lifetime\n", - "668 encounters_count<=floor(1/4*QALY^2)\n", - "669 encounters_count<=10^ceil(1/encounters_lifetime_perc_covered)\n", - "670 encounters_count<=DALY*sqrt(healthcare_coverage)\n", - "671 encounters_count<=maximum(medications_lifetime_cost,2*active_conditions)\n", - "672 encounters_count<=maximum(age,e^active_conditions)\n", - "673 encounters_count<=1/2*lifetime_condition_length/encounters_lifetime_perc_covered\n", - "674 encounters_count<=2*active_care_plan_length+2*age\n", - "675 encounters_count<=maximum(immunizations_lifetime_cost,2*medications_lifetime)\n", - "676 encounters_count>=active_conditions-1\n", - "677 encounters_count>=2*active_care_plans\n", - "678 encounters_count>=minimum(latitude,medications_lifetime)\n", - "679 encounters_count>=medications_active+procedures_lifetime\n", - "680 encounters_count>=-active_conditions+ceil(DALY)\n", - "681 encounters_count>=(log(lifetime_care_plan_length)/log(10))^procedures_lifetime\n", - "682 encounters_count>=floor(log(medications_lifetime_cost)/log(10))\n", - "683 encounters_count>=2*medications_active+1\n", - "684 encounters_count>=active_conditions^2+longitude\n", - "685 encounters_count>=minimum(medications_lifetime,Glucose+1)\n", - "686 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "687 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "688 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "689 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "690 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "691 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "692 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "693 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "694 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "695 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "696 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "697 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "698 encounters_lifetime_payer_coverage<=healthcare_coverage\n", - "699 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", - "700 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "701 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "702 encounters_lifetime_payer_coverage>=encounters_lifetime_total_cost/encounters_count\n", - "703 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "704 encounters_lifetime_payer_coverage>=(active_care_plan_length-lifetime_care_plan_length)^2\n", - "705 encounters_lifetime_payer_coverage>=sqrt(1/2*procedures_lifetime_cost+1)\n", - "706 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", - "707 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "708 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", - "709 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "710 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "711 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "712 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "713 encounters_lifetime_payer_coverage<=-2*QALY+encounters_lifetime_total_cost\n", - "714 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "715 encounters_lifetime_payer_coverage>=num_allergies\n", - "716 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "717 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "718 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/encounters_lifetime_total_cost\n", - "719 encounters_lifetime_perc_covered>=num_allergies\n", - "720 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/(encounters_lifetime_total_cost+1)\n", - "721 encounters_lifetime_perc_covered>=medications_lifetime_perc_covered^(2/log(10))\n", - "722 encounters_lifetime_perc_covered>=active_care_plans-medications_lifetime\n", - "723 encounters_lifetime_perc_covered<=healthcare_coverage\n", - "724 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "725 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "726 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", - "727 encounters_lifetime_perc_covered>=device_lifetime_length\n", - "728 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "729 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "730 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "731 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "732 encounters_lifetime_perc_covered>=num_allergies\n", - "733 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/(encounters_lifetime_total_cost+1)\n", - "734 imaging_studies_lifetime<=num_allergies\n", - "735 imaging_studies_lifetime>=num_allergies\n", - "736 imaging_studies_lifetime>=lifetime_care_plans^2-encounters_count\n", - "737 imaging_studies_lifetime<=num_allergies\n", - "738 imaging_studies_lifetime<=device_lifetime_length\n", - "739 imaging_studies_lifetime>=-device_lifetime_length\n", - "740 imaging_studies_lifetime>=-num_allergies\n", - "741 imaging_studies_lifetime>=-immunizations_lifetime_cost+num_allergies\n", - "742 imaging_studies_lifetime>=minimum(device_lifetime_length,immunizations_lifetime)\n", - "743 imaging_studies_lifetime<=active_care_plans\n", - "744 imaging_studies_lifetime<=active_conditions-1\n", - "745 imaging_studies_lifetime<=immunizations_lifetime_cost\n", - "746 imaging_studies_lifetime<=medications_lifetime\n", - "747 imaging_studies_lifetime<=medications_active+1\n", - "748 imaging_studies_lifetime>=device_lifetime_length\n", - "749 immunizations_lifetime<=active_care_plans\n", - "750 immunizations_lifetime<=immunizations_lifetime_cost\n", - "751 immunizations_lifetime<=medications_active\n", - "752 immunizations_lifetime<=e^num_allergies\n", - "753 immunizations_lifetime>=device_lifetime_length\n", - "754 immunizations_lifetime>=imaging_studies_lifetime\n", - "755 immunizations_lifetime>=device_lifetime_length^medications_lifetime\n", - "756 immunizations_lifetime>=device_lifetime_length^QOLS\n", - "757 immunizations_lifetime>=floor(log(lifetime_conditions)/log(10))\n", - "758 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", - "759 immunizations_lifetime<=10^floor(QOLS)\n", - "760 immunizations_lifetime<=ceil(log(healthcare_coverage)/log(10))\n", - "761 immunizations_lifetime<=immunizations_lifetime_cost\n", - "762 immunizations_lifetime<=maximum(medications_lifetime,procedures_lifetime_cost)\n", - "763 immunizations_lifetime<=1/medications_active+1\n", - "764 immunizations_lifetime>=imaging_studies_lifetime\n", - "765 immunizations_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "766 immunizations_lifetime>=minimum(num_allergies,procedures_lifetime)\n", - "767 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", - "768 immunizations_lifetime<=lifetime_care_plans\n", - "769 immunizations_lifetime<=immunizations_lifetime_cost\n", - "770 immunizations_lifetime<=medications_lifetime\n", - "771 immunizations_lifetime<=10^medications_lifetime_perc_covered\n", - "772 immunizations_lifetime<=(1/num_allergies)\n", - "773 immunizations_lifetime<=1/2*active_conditions\n", - "774 immunizations_lifetime<=(1/ceil(QOLS))\n", - "775 immunizations_lifetime>=num_allergies\n", - "776 immunizations_lifetime>=num_allergies^medications_lifetime_perc_covered\n", - "777 immunizations_lifetime>=num_allergies^lifetime_care_plans\n", - "778 immunizations_lifetime>=2*immunizations_lifetime_cost/encounters_lifetime_payer_coverage\n", - "779 immunizations_lifetime>=floor(log(1/2*immunizations_lifetime_cost)/log(10))\n", - "780 immunizations_lifetime_cost<=encounters_lifetime_total_cost\n", - "781 immunizations_lifetime_cost<=medications_lifetime_cost\n", - "782 immunizations_lifetime_cost<=log(encounters_count^lifetime_care_plan_length)\n", - "783 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "784 immunizations_lifetime_cost<=latitude*log(10)/log(active_care_plans)\n", - "785 immunizations_lifetime_cost<=active_care_plan_length^2\n", - "786 immunizations_lifetime_cost>=device_lifetime_length\n", - "787 immunizations_lifetime_cost>=16*immunizations_lifetime^4\n", - "788 immunizations_lifetime_cost>=-healthcare_coverage+2*lifetime_condition_length\n", - "789 immunizations_lifetime_cost>=-10^procedures_lifetime+medications_lifetime\n", - "790 immunizations_lifetime_cost>=active_conditions^2*immunizations_lifetime\n", - "791 immunizations_lifetime_cost>=2*active_condition_length*immunizations_lifetime\n", - "792 immunizations_lifetime_cost>=medications_lifetime-procedures_lifetime_cost-1\n", - "793 immunizations_lifetime_cost<=1/2*medications_lifetime_length/active_conditions\n", - "794 immunizations_lifetime_cost<=e^(1/2*10^immunizations_lifetime)\n", - "795 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "796 immunizations_lifetime_cost<=maximum(Sodium,e^medications_lifetime)\n", - "797 immunizations_lifetime_cost<=lifetime_condition_length^sqrt(encounters_count)\n", - "798 immunizations_lifetime_cost<=active_conditions*healthcare_expenses\n", - "799 immunizations_lifetime_cost<=10^medications_active+latitude\n", - "800 immunizations_lifetime_cost<=maximum(Low_Density_Lipoprotein_Cholesterol,healthcare_expenses^encounters_lifetime_perc_covered)\n", - "801 immunizations_lifetime_cost>=imaging_studies_lifetime\n", - "802 immunizations_lifetime_cost>=2*immunizations_lifetime*latitude\n", - "803 immunizations_lifetime_cost>=lifetime_condition_length*log(num_allergies)/log(10)\n", - "804 immunizations_lifetime_cost>=2*encounters_count-lifetime_condition_length\n", - "805 immunizations_lifetime_cost>=e^(2*immunizations_lifetime)-1\n", - "806 immunizations_lifetime_cost<=(medications_lifetime_length-1)/DALY\n", - "807 immunizations_lifetime_cost<=-ceil(2*longitude)\n", - "808 immunizations_lifetime_cost<=sqrt(2)*sqrt(medications_lifetime_cost)+1\n", - "809 immunizations_lifetime_cost<=active_care_plan_length^2\n", - "810 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "811 immunizations_lifetime_cost<=e^(-active_care_plans)*healthcare_coverage\n", - "812 immunizations_lifetime_cost<=log(healthcare_expenses)^2-1\n", - "813 immunizations_lifetime_cost>=device_lifetime_length\n", - "814 immunizations_lifetime_cost>=maximum(Low_Density_Lipoprotein_Cholesterol,-healthcare_expenses)\n", - "815 immunizations_lifetime_cost>=2*QALY*immunizations_lifetime\n", - "816 immunizations_lifetime_cost>=log(immunizations_lifetime^medications_lifetime_dispenses)\n", - "817 immunizations_lifetime_cost>=sqrt(procedures_lifetime_cost)+procedures_lifetime\n", - "818 immunizations_lifetime_cost>=-2*QALY+lifetime_condition_length\n", - "819 immunizations_lifetime_cost>=-2*medications_active+medications_lifetime\n", - "820 medications_lifetime<=medications_lifetime_dispenses\n", - "821 medications_lifetime<=4*lifetime_conditions^2\n", - "822 medications_lifetime<=e^(sqrt(encounters_count)-1)\n", - "823 medications_lifetime<=(2*active_care_plans)^active_conditions\n", - "824 medications_lifetime<=2*e^healthcare_coverage\n", - "825 medications_lifetime<=10^(e^QOLS+1)\n", - "826 medications_lifetime<=encounters_count+immunizations_lifetime_cost\n", - "827 medications_lifetime<=minimum(healthcare_expenses,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", - "828 medications_lifetime<=minimum(healthcare_expenses,1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", - "829 medications_lifetime<=2*maximum(active_condition_length,encounters_count)\n", - "830 medications_lifetime>=num_allergies\n", - "831 medications_lifetime>=medications_active\n", - "832 medications_lifetime>=ceil(10^medications_lifetime_perc_covered)-1\n", - "833 medications_lifetime>=-medications_active+procedures_lifetime\n", - "834 medications_lifetime>=lifetime_care_plan_length+longitude+1\n", - "835 medications_lifetime>=lifetime_condition_length+2*longitude\n", - "836 medications_lifetime>=2*encounters_count+longitude\n", - "837 medications_lifetime>=active_care_plan_length*floor(QOLS)\n", - "838 medications_lifetime<=e^active_care_plans+lifetime_care_plan_length\n", - "839 medications_lifetime<=active_care_plans^healthcare_expenses\n", - "840 medications_lifetime<=medications_lifetime_cost\n", - "841 medications_lifetime<=active_care_plans+ceil(lifetime_condition_length)\n", - "842 medications_lifetime<=minimum(healthcare_expenses,floor(Sodium))\n", - "843 medications_lifetime<=minimum(healthcare_expenses,Protein__Mass_volume__in_Serum,Plasma-1)\n", - "844 medications_lifetime<=1/2*e^sqrt(active_care_plan_length)\n", - "845 medications_lifetime<=QALY*e^num_allergies\n", - "846 medications_lifetime<=maximum(immunizations_lifetime_cost,ceil(QALY))\n", - "847 medications_lifetime>=device_lifetime_length\n", - "848 medications_lifetime>=device_lifetime_length^2-active_care_plan_length\n", - "849 medications_lifetime>=medications_active\n", - "850 medications_lifetime>=procedures_lifetime\n", - "851 medications_lifetime>=2*encounters_count+2*longitude\n", - "852 medications_lifetime>=-active_condition_length+1/2*lifetime_condition_length\n", - "853 medications_lifetime>=-active_care_plan_length+encounters_count-1\n", - "854 medications_lifetime>=floor(medications_lifetime_cost/healthcare_coverage)\n", - "855 medications_lifetime>=floor(1/2*encounters_count-1)\n", - "856 medications_lifetime>=log(DALY^active_care_plan_length)\n", - "857 medications_lifetime<=ceil(e^active_care_plan_length)\n", - "858 medications_lifetime<=medications_lifetime_cost\n", - "859 medications_lifetime<=2*lifetime_condition_length-num_allergies\n", - "860 medications_lifetime<=healthcare_expenses^medications_active*active_care_plan_length\n", - "861 medications_lifetime<=log(immunizations_lifetime_cost)^4\n", - "862 medications_lifetime<=ceil(DALY)*encounters_count\n", - "863 medications_lifetime<=maximum(encounters_count,e^DALY)\n", - "864 medications_lifetime<=log(log(e^encounters_lifetime_payer_coverage)/log(10))/log(10)\n", - "865 medications_lifetime<=ceil(medications_lifetime_cost/procedures_lifetime_cost)\n", - "866 medications_lifetime>=num_allergies\n", - "867 medications_lifetime>=2*encounters_count-lifetime_care_plan_length\n", - "868 medications_lifetime>=medications_active\n", - "869 medications_lifetime>=-1/medications_lifetime_perc_covered+lifetime_care_plan_length\n", - "870 medications_lifetime>=e^(immunizations_lifetime^2)-1\n", - "871 medications_lifetime>=active_care_plans*procedures_lifetime\n", - "872 medications_lifetime_cost<=2*healthcare_expenses/DALY\n", - "873 medications_lifetime_cost<=active_care_plans*healthcare_expenses\n", - "874 medications_lifetime_cost<=-encounters_lifetime_total_cost*longitude\n", - "875 medications_lifetime_cost<=healthcare_expenses*lifetime_condition_length/age\n", - "876 medications_lifetime_cost<=healthcare_coverage*log(healthcare_expenses)\n", - "877 medications_lifetime_cost<=age^(log(encounters_lifetime_total_cost)/log(10))\n", - "878 medications_lifetime_cost<=10^(age^encounters_lifetime_perc_covered)\n", - "879 medications_lifetime_cost<=healthcare_expenses/active_conditions+procedures_lifetime_cost\n", - "880 medications_lifetime_cost<=2*e^(10^medications_lifetime)\n", - "881 medications_lifetime_cost>=2*latitude^medications_active\n", - "882 medications_lifetime_cost>=encounters_lifetime_payer_coverage*log(healthcare_expenses)\n", - "883 medications_lifetime_cost>=16*active_condition_length^2\n", - "884 medications_lifetime_cost>=2*ceil(latitude)^2\n", - "885 medications_lifetime_cost>=e^(QALY^medications_lifetime_perc_covered)\n", - "886 medications_lifetime_cost>=lifetime_conditions^(active_care_plans-1)\n", - "887 medications_lifetime_cost>=lifetime_condition_length^sqrt(num_allergies)\n", - "888 medications_lifetime_cost>=QOLS^2*medications_lifetime^2\n", - "889 medications_lifetime_cost>=lifetime_condition_length^2/encounters_lifetime_perc_covered\n", - "890 medications_lifetime_cost>=age*sqrt(procedures_lifetime_cost)\n", - "891 medications_lifetime_cost<=(QALY-1)*encounters_lifetime_total_cost\n", - "892 medications_lifetime_cost<=healthcare_expenses^active_conditions/medications_lifetime\n", - "893 medications_lifetime_cost<=(log(QALY)/log(10))^mean_QALY\n", - "894 medications_lifetime_cost<=(encounters_lifetime_payer_coverage+immunizations_lifetime_cost)^2\n", - "895 medications_lifetime_cost<=1/4*latitude^4\n", - "896 medications_lifetime_cost<=encounters_lifetime_total_cost^2/age\n", - "897 medications_lifetime_cost<=medications_lifetime_dispenses^2/procedures_lifetime\n", - "898 medications_lifetime_cost<=age^(10^QOLS)\n", - "899 medications_lifetime_cost<=e^(active_care_plan_length/medications_active)\n", - "900 medications_lifetime_cost<=(active_condition_length+1)^4\n", - "901 medications_lifetime_cost>=num_allergies\n", - "902 medications_lifetime_cost>=(latitude+1)*medications_lifetime_dispenses\n", - "903 medications_lifetime_cost>=e^active_care_plans*medications_lifetime_length\n", - "904 medications_lifetime_cost>=sqrt(active_care_plans)*healthcare_coverage\n", - "905 medications_lifetime_cost>=medications_lifetime_length*procedures_lifetime^2\n", - "906 medications_lifetime_cost>=1/2*QALY*medications_lifetime_length\n", - "907 medications_lifetime_cost>=longitude^(medications_active+1)\n", - "908 medications_lifetime_cost>=medications_lifetime_dispenses^2/lifetime_conditions^2\n", - "909 medications_lifetime_cost<=healthcare_expenses^2/longitude^2\n", - "910 medications_lifetime_cost<=medications_lifetime_length^2\n", - "911 medications_lifetime_cost<=10^(lifetime_condition_length/medications_active)\n", - "912 medications_lifetime_cost<=(QOLS+1)^latitude\n", - "913 medications_lifetime_cost<=medications_lifetime_length^2/active_conditions^2\n", - "914 medications_lifetime_cost<=floor(active_condition_length)^encounters_count\n", - "915 medications_lifetime_cost<=lifetime_condition_length^2*medications_lifetime_dispenses\n", - "916 medications_lifetime_cost<=encounters_lifetime_total_cost^2/active_conditions\n", - "917 medications_lifetime_cost<=e^(10^medications_lifetime+1)\n", - "918 medications_lifetime_cost>=num_allergies\n", - "919 medications_lifetime_cost>=10^medications_active-encounters_lifetime_perc_covered\n", - "920 medications_lifetime_cost>=active_care_plan_length*latitude^2\n", - "921 medications_lifetime_cost>=minimum(procedures_lifetime_cost,10^active_conditions)\n", - "922 medications_lifetime_cost>=1/8*medications_lifetime_dispenses^2\n", - "923 medications_lifetime_cost>=active_care_plan_length*procedures_lifetime^2\n", - "924 medications_lifetime_cost>=(lifetime_care_plan_length+1)*medications_lifetime_dispenses\n", - "925 medications_lifetime_cost>=(procedures_lifetime_cost+1)*active_care_plans\n", - "926 medications_lifetime_cost>=medications_lifetime_length^2/encounters_count^2\n", - "927 medications_lifetime_perc_covered<=immunizations_lifetime\n", - "928 medications_lifetime_perc_covered<=floor(DALY)\n", - "929 medications_lifetime_perc_covered<=2*active_care_plan_length/lifetime_care_plan_length\n", - "930 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered/QOLS\n", - "931 medications_lifetime_perc_covered<=active_care_plans-2\n", - "932 medications_lifetime_perc_covered<=log(sqrt(age)+1)/log(10)\n", - "933 medications_lifetime_perc_covered>=device_lifetime_length\n", - "934 medications_lifetime_perc_covered>=encounters_lifetime_perc_covered*floor(QOLS)\n", - "935 medications_lifetime_perc_covered>=encounters_count/lifetime_care_plan_length-1\n", - "936 medications_lifetime_perc_covered>=log(minimum(immunizations_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", - "937 medications_lifetime_perc_covered>=-DALY+log(active_care_plans)\n", - "938 medications_lifetime_perc_covered>=medications_lifetime/active_condition_length-1\n", - "939 medications_lifetime_perc_covered<=active_care_plans\n", - "940 medications_lifetime_perc_covered<=medications_lifetime\n", - "941 medications_lifetime_perc_covered<=QOLS\n", - "942 medications_lifetime_perc_covered<=1/2*log(ceil(age))/log(10)\n", - "943 medications_lifetime_perc_covered<=encounters_count/(medications_lifetime+1)\n", - "944 medications_lifetime_perc_covered<=log(healthcare_expenses)/(active_conditions*log(10))\n", - "945 medications_lifetime_perc_covered<=encounters_count-lifetime_conditions\n", - "946 medications_lifetime_perc_covered<=DALY^procedures_lifetime_cost\n", - "947 medications_lifetime_perc_covered<=sqrt(log(10)/log(medications_lifetime))\n", - "948 medications_lifetime_perc_covered<=(2*encounters_lifetime_perc_covered)^QALY\n", - "949 medications_lifetime_perc_covered>=imaging_studies_lifetime\n", - "950 medications_lifetime_perc_covered>=log(abs(medications_active-1))/log(10)\n", - "951 medications_lifetime_perc_covered>=-1/(active_condition_length-medications_lifetime)\n", - "952 medications_lifetime_perc_covered>=minimum(procedures_lifetime,mean_Creatinine)-1\n", - "953 medications_lifetime_perc_covered<=active_care_plans\n", - "954 medications_lifetime_perc_covered<=medications_lifetime\n", - "955 medications_lifetime_perc_covered<=10^(-encounters_lifetime_perc_covered+procedures_lifetime)\n", - "956 medications_lifetime_perc_covered<=num_allergies^immunizations_lifetime\n", - "957 medications_lifetime_perc_covered<=floor(DALY)\n", - "958 medications_lifetime_perc_covered<=sqrt(10^(encounters_lifetime_perc_covered-1))\n", - "959 medications_lifetime_perc_covered>=num_allergies\n", - "960 medications_lifetime_perc_covered>=1/2*log(lifetime_care_plan_length)/log(10)-1\n", - "961 medications_lifetime_perc_covered>=log(minimum(procedures_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported))/log(10)\n", - "962 medications_lifetime_perc_covered>=(1/(DALY-latitude))\n", - "963 medications_lifetime_perc_covered>=(1/(longitude+medications_lifetime))\n", - "964 medications_lifetime_length<=e^floor(log(healthcare_coverage))\n", - "965 medications_lifetime_length<=medications_lifetime_cost\n", - "966 medications_lifetime_length<=(longitude+num_allergies)^2\n", - "967 medications_lifetime_length<=2*10^(lifetime_care_plan_length^2)\n", - "968 medications_lifetime_length<=medications_lifetime_dispenses^2+1\n", - "969 medications_lifetime_length<=(healthcare_expenses-medications_lifetime_dispenses)/latitude\n", - "970 medications_lifetime_length<=2*log(10^medications_lifetime_dispenses)\n", - "971 medications_lifetime_length<=healthcare_expenses/(encounters_lifetime_perc_covered*immunizations_lifetime_cost)\n", - "972 medications_lifetime_length>=num_allergies\n", - "973 medications_lifetime_length>=1/16*medications_lifetime^2\n", - "974 medications_lifetime_length>=log(procedures_lifetime_cost^2)+1\n", - "975 medications_lifetime_length>=-2*QALY+2*lifetime_condition_length\n", - "976 medications_lifetime_length>=(active_conditions+1)*medications_lifetime\n", - "977 medications_lifetime_length>=minimum(encounters_lifetime_total_cost,10^medications_active)\n", - "978 medications_lifetime_length>=longitude^2*medications_lifetime_perc_covered\n", - "979 medications_lifetime_length>=(active_care_plans-1)*medications_lifetime_dispenses\n", - "980 medications_lifetime_length>=-latitude^2+encounters_lifetime_payer_coverage\n", - "981 medications_lifetime_length>=minimum(active_care_plan_length,medications_lifetime)^2\n", - "982 medications_lifetime_length<=DALY*healthcare_coverage-1\n", - "983 medications_lifetime_length<=healthcare_expenses/(QOLS*immunizations_lifetime_cost)\n", - "984 medications_lifetime_length<=sqrt(latitude)^lifetime_care_plan_length\n", - "985 medications_lifetime_length<=1/2*healthcare_expenses/QALY\n", - "986 medications_lifetime_length<=log(medications_lifetime_cost)*medications_lifetime_dispenses/log(10)\n", - "987 medications_lifetime_length<=healthcare_coverage/sqrt(procedures_lifetime)\n", - "988 medications_lifetime_length<=1/4*10^(2*medications_lifetime)\n", - "989 medications_lifetime_length<=(log(QALY)/log(10))^mean_QALY\n", - "990 medications_lifetime_length<=4*10^(2*active_care_plans)\n", - "991 medications_lifetime_length<=4*ceil(age)^2\n", - "992 medications_lifetime_length>=num_allergies\n", - "993 medications_lifetime_length>=10^log(sqrt(medications_lifetime_dispenses))\n", - "994 medications_lifetime_length>=immunizations_lifetime_cost^(1/8)\n", - "995 medications_lifetime_length>=2*encounters_lifetime_total_cost-2*healthcare_coverage\n", - "996 medications_lifetime_length>=lifetime_condition_length*log(medications_lifetime)\n", - "997 medications_lifetime_length>=QOLS*procedures_lifetime^2\n", - "998 medications_lifetime_length>=procedures_lifetime_cost^medications_lifetime_perc_covered-1\n", - "999 medications_lifetime_length>=(procedures_lifetime-1)*latitude\n", - "1000 medications_lifetime_length>=log(medications_lifetime_cost^DALY)/log(10)\n", - "1001 medications_lifetime_length<=encounters_lifetime_total_cost+2*medications_lifetime_dispenses\n", - "1002 medications_lifetime_length<=medications_lifetime_cost\n", - "1003 medications_lifetime_length<=-(healthcare_coverage-healthcare_expenses)/device_lifetime_length\n", - "1004 medications_lifetime_length<=active_conditions^lifetime_conditions-1\n", - "1005 medications_lifetime_length<=2*medications_lifetime_cost/QALY\n", - "1006 medications_lifetime_length<=10^(DALY/encounters_lifetime_perc_covered)\n", - "1007 medications_lifetime_length<=maximum(healthcare_coverage,latitude^2)\n", - "1008 medications_lifetime_length<=healthcare_coverage-log(encounters_lifetime_payer_coverage)\n", - "1009 medications_lifetime_length>=num_allergies\n", - "1010 medications_lifetime_length>=4*medications_lifetime_dispenses\n", - "1011 medications_lifetime_length>=medications_active^4\n", - "1012 medications_lifetime_length>=1/4*ceil(lifetime_care_plan_length)^2\n", - "1013 medications_lifetime_length>=-sqrt(healthcare_expenses)+encounters_lifetime_payer_coverage\n", - "1014 medications_lifetime_length>=active_care_plan_length*sqrt(encounters_lifetime_total_cost)\n", - "1015 medications_lifetime_length>=10^encounters_lifetime_perc_covered*medications_lifetime_dispenses\n", - "1016 medications_lifetime_length>=medications_lifetime_cost/sqrt(healthcare_coverage)\n", - "1017 medications_lifetime_dispenses<=healthcare_coverage\n", - "1018 medications_lifetime_dispenses<=floor(age)^2+1\n", - "1019 medications_lifetime_dispenses<=medications_lifetime_length/log(active_care_plan_length)\n", - "1020 medications_lifetime_dispenses<=1/2*medications_lifetime_cost/age\n", - "1021 medications_lifetime_dispenses<=healthcare_expenses/encounters_count+DALY\n", - "1022 medications_lifetime_dispenses<=active_care_plan_length*healthcare_expenses/procedures_lifetime_cost\n", - "1023 medications_lifetime_dispenses<=10^e^active_care_plans-1\n", - "1024 medications_lifetime_dispenses<=log(medications_lifetime^medications_lifetime_length)/log(10)\n", - "1025 medications_lifetime_dispenses<=(active_care_plan_length+medications_active)^2\n", - "1026 medications_lifetime_dispenses<=lifetime_care_plan_length^2/immunizations_lifetime^2\n", - "1027 medications_lifetime_dispenses>=num_allergies\n", - "1028 medications_lifetime_dispenses>=DALY*sqrt(medications_lifetime_length)\n", - "1029 medications_lifetime_dispenses>=medications_lifetime_length/sqrt(active_care_plan_length)\n", - "1030 medications_lifetime_dispenses>=-encounters_lifetime_total_cost+1/2*medications_lifetime_length\n", - "1031 medications_lifetime_dispenses>=encounters_lifetime_payer_coverage*log(num_allergies)/log(10)\n", - "1032 medications_lifetime_dispenses>=10^ceil(log(medications_lifetime)/log(10))\n", - "1033 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost*num_allergies)\n", - "1034 medications_lifetime_dispenses<=ceil(active_care_plan_length)^2\n", - "1035 medications_lifetime_dispenses<=medications_lifetime_length/log(QALY)\n", - "1036 medications_lifetime_dispenses<=medications_lifetime_cost\n", - "1037 medications_lifetime_dispenses<=sqrt(healthcare_expenses)/num_allergies\n", - "1038 medications_lifetime_dispenses<=sqrt(healthcare_expenses)+procedures_lifetime_cost\n", - "1039 medications_lifetime_dispenses<=medications_lifetime_cost/(immunizations_lifetime_cost+1)\n", - "1040 medications_lifetime_dispenses<=1/2*(age+1)^2\n", - "1041 medications_lifetime_dispenses<=active_care_plan_length*floor(QALY)\n", - "1042 medications_lifetime_dispenses<=-1/2*QALY+1/2*encounters_lifetime_total_cost\n", - "1043 medications_lifetime_dispenses<=10^medications_lifetime+active_conditions\n", - "1044 medications_lifetime_dispenses>=num_allergies\n", - "1045 medications_lifetime_dispenses>=log(age)*medications_lifetime/log(10)\n", - "1046 medications_lifetime_dispenses>=log(10)*medications_lifetime_length/log(medications_lifetime_cost)\n", - "1047 medications_lifetime_dispenses>=QALY*sqrt(immunizations_lifetime_cost)\n", - "1048 medications_lifetime_dispenses>=sqrt(procedures_lifetime_cost)-medications_lifetime\n", - "1049 medications_lifetime_dispenses>=e^(-procedures_lifetime)*procedures_lifetime_cost\n", - "1050 medications_lifetime_dispenses>=sqrt(lifetime_care_plan_length*medications_lifetime_length)\n", - "1051 medications_lifetime_dispenses>=-longitude*medications_active\n", - "1052 medications_lifetime_dispenses>=sqrt(healthcare_coverage*medications_active)\n", - "1053 medications_lifetime_dispenses<=(latitude-1)*active_care_plan_length\n", - "1054 medications_lifetime_dispenses<=1/4*medications_lifetime_length-1\n", - "1055 medications_lifetime_dispenses<=lifetime_condition_length^2-active_care_plan_length\n", - "1056 medications_lifetime_dispenses<=10^medications_lifetime+encounters_count\n", - "1057 medications_lifetime_dispenses<=e^(medications_lifetime/encounters_lifetime_perc_covered)\n", - "1058 medications_lifetime_dispenses<=log(10)*medications_lifetime_length/log(healthcare_coverage)\n", - "1059 medications_lifetime_dispenses<=medications_lifetime_length/log(QALY)\n", - "1060 medications_lifetime_dispenses<=2*(active_care_plan_length-1)^2\n", - "1061 medications_lifetime_dispenses>=num_allergies\n", - "1062 medications_lifetime_dispenses>=sqrt(10^log(immunizations_lifetime_cost))\n", - "1063 medications_lifetime_dispenses>=sqrt(latitude)*medications_lifetime\n", - "1064 medications_lifetime_dispenses>=log(medications_lifetime_cost)-longitude\n", - "1065 medications_lifetime_dispenses>=encounters_lifetime_payer_coverage/(num_allergies-1)\n", - "1066 medications_lifetime_dispenses>=active_condition_length^2*medications_lifetime_perc_covered\n", - "1067 medications_lifetime_dispenses>=log(10)*medications_lifetime_length/log(medications_lifetime_cost)\n", - "1068 medications_lifetime_dispenses>=2*immunizations_lifetime_cost+2*medications_lifetime\n", - "1069 medications_active<=maximum(num_allergies,procedures_lifetime_cost)\n", - "1070 medications_active<=active_care_plan_length\n", - "1071 medications_active<=medications_lifetime\n", - "1072 medications_active<=log(active_care_plans)^healthcare_expenses\n", - "1073 medications_active<=2/imaging_studies_lifetime\n", - "1074 medications_active<=1/(imaging_studies_lifetime*immunizations_lifetime)\n", - "1075 medications_active<=maximum(healthcare_coverage,num_allergies)\n", - "1076 medications_active>=num_allergies\n", - "1077 medications_active>=2*active_care_plans-active_conditions\n", - "1078 medications_active>=active_care_plans-immunizations_lifetime_cost\n", - "1079 medications_active>=sqrt(procedures_lifetime)-medications_lifetime\n", - "1080 medications_active>=2*num_allergies-1\n", - "1081 medications_active>=1/2*medications_lifetime_dispenses-1/2*medications_lifetime_length\n", - "1082 medications_active>=-active_care_plans+log(DALY)\n", - "1083 medications_active<=active_conditions-1\n", - "1084 medications_active<=2*e^procedures_lifetime\n", - "1085 medications_active<=medications_lifetime\n", - "1086 medications_active<=active_care_plans+1\n", - "1087 medications_active<=-active_care_plan_length+lifetime_care_plan_length\n", - "1088 medications_active<=floor(active_care_plan_length)\n", - "1089 medications_active<=floor(DALY)\n", - "1090 medications_active<=maximum(immunizations_lifetime_cost,1/2*active_care_plans)\n", - "1091 medications_active>=num_allergies\n", - "1092 medications_active>=floor(1/2*active_care_plans)\n", - "1093 medications_active>=minimum(medications_lifetime,lifetime_care_plans-1)\n", - "1094 medications_active>=floor(QOLS)\n", - "1095 medications_active>=active_care_plans-immunizations_lifetime_cost\n", - "1096 medications_active>=immunizations_lifetime-2\n", - "1097 medications_active>=ceil(log(active_care_plans))\n", - "1098 medications_active>=(-procedures_lifetime)^active_care_plans\n", - "1099 medications_active>=active_conditions-immunizations_lifetime_cost-1\n", - "1100 medications_active<=active_care_plans\n", - "1101 medications_active<=medications_lifetime\n", - "1102 medications_active<=sqrt(active_conditions)\n", - "1103 medications_active<=e^immunizations_lifetime\n", - "1104 medications_active<=immunizations_lifetime+1\n", - "1105 medications_active<=active_care_plans-procedures_lifetime+1\n", - "1106 medications_active<=minimum(healthcare_expenses,Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", - "1107 medications_active>=device_lifetime_length\n", - "1108 medications_active>=ceil(medications_lifetime_perc_covered)\n", - "1109 medications_active>=minimum(medications_lifetime,QOLS)\n", - "1110 medications_active>=minimum(immunizations_lifetime,medications_lifetime)\n", - "1111 medications_active>=sqrt(active_condition_length)-encounters_count\n", - "1112 medications_active>=2*active_care_plans-active_condition_length\n", - "1113 procedures_lifetime<=lifetime_care_plans^2\n", - "1114 procedures_lifetime<=lifetime_care_plan_length\n", - "1115 procedures_lifetime<=procedures_lifetime_cost\n", - "1116 procedures_lifetime<=2/immunizations_lifetime\n", - "1117 procedures_lifetime<=active_care_plans/QOLS\n", - "1118 procedures_lifetime>=device_lifetime_length\n", - "1119 procedures_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "1120 procedures_lifetime>=1/2*num_allergies\n", - "1121 procedures_lifetime>=floor(log(lifetime_care_plans)/log(10))\n", - "1122 procedures_lifetime>=floor(medications_lifetime/lifetime_care_plan_length)\n", - "1123 procedures_lifetime>=-lifetime_care_plan_length+log(procedures_lifetime_cost)\n", - "1124 procedures_lifetime>=2*active_condition_length-2*lifetime_care_plan_length\n", - "1125 procedures_lifetime>=-lifetime_conditions+medications_active\n", - "1126 procedures_lifetime<=procedures_lifetime_cost\n", - "1127 procedures_lifetime<=active_care_plan_length\n", - "1128 procedures_lifetime<=medications_lifetime\n", - "1129 procedures_lifetime<=2/num_allergies\n", - "1130 procedures_lifetime<=e^immunizations_lifetime\n", - "1131 procedures_lifetime<=immunizations_lifetime^immunizations_lifetime_cost\n", - "1132 procedures_lifetime>=device_lifetime_length\n", - "1133 procedures_lifetime>=device_lifetime_length^DALY\n", - "1134 procedures_lifetime>=procedures_lifetime_cost^2/encounters_lifetime_total_cost^2\n", - "1135 procedures_lifetime>=minimum(procedures_lifetime_cost,e^num_allergies)\n", - "1136 procedures_lifetime>=-ceil(DALY)+medications_active\n", - "1137 procedures_lifetime<=ceil(DALY^longitude)\n", - "1138 procedures_lifetime<=ceil(log(healthcare_expenses)/log(10))\n", - "1139 procedures_lifetime<=encounters_lifetime_total_cost\n", - "1140 procedures_lifetime<=procedures_lifetime_cost\n", - "1141 procedures_lifetime<=2*encounters_count\n", - "1142 procedures_lifetime<=maximum(healthcare_coverage,lifetime_care_plans)\n", - "1143 procedures_lifetime<=maximum(medications_lifetime,1/active_care_plans)\n", - "1144 procedures_lifetime>=num_allergies\n", - "1145 procedures_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "1146 procedures_lifetime>=2*num_allergies\n", - "1147 procedures_lifetime>=floor(log(procedures_lifetime_cost)/log(10)-1)\n", - "1148 procedures_lifetime>=imaging_studies_lifetime-1\n", - "1149 procedures_lifetime>=immunizations_lifetime-1\n", - "1150 procedures_lifetime>=floor(procedures_lifetime_cost/healthcare_coverage)\n", - "1151 procedures_lifetime_cost<=medications_lifetime_cost\n", - "1152 procedures_lifetime_cost<=e^(2*encounters_count+2)\n", - "1153 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1154 procedures_lifetime_cost<=e^DALY/immunizations_lifetime\n", - "1155 procedures_lifetime_cost<=healthcare_expenses/lifetime_care_plan_length+latitude\n", - "1156 procedures_lifetime_cost>=num_allergies\n", - "1157 procedures_lifetime_cost>=e^medications_active*procedures_lifetime\n", - "1158 procedures_lifetime_cost>=healthcare_expenses*num_allergies/encounters_lifetime_payer_coverage\n", - "1159 procedures_lifetime_cost>=2*immunizations_lifetime_cost*procedures_lifetime\n", - "1160 procedures_lifetime_cost>=healthcare_expenses*procedures_lifetime/encounters_lifetime_total_cost\n", - "1161 procedures_lifetime_cost>=device_lifetime_length*procedures_lifetime^2\n", - "1162 procedures_lifetime_cost<=age^(active_condition_length-1)\n", - "1163 procedures_lifetime_cost<=healthcare_coverage^2\n", - "1164 procedures_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "1165 procedures_lifetime_cost<=procedures_lifetime^healthcare_expenses\n", - "1166 procedures_lifetime_cost<=medications_lifetime_cost^2\n", - "1167 procedures_lifetime_cost<=healthcare_expenses/(lifetime_care_plan_length*medications_active)\n", - "1168 procedures_lifetime_cost<=(encounters_lifetime_total_cost-1)*QALY\n", - "1169 procedures_lifetime_cost<=e^(-immunizations_lifetime+medications_lifetime_dispenses)\n", - "1170 procedures_lifetime_cost>=device_lifetime_length\n", - "1171 procedures_lifetime_cost>=e^active_conditions*immunizations_lifetime\n", - "1172 procedures_lifetime_cost>=immunizations_lifetime_cost^2*medications_lifetime_perc_covered\n", - "1173 procedures_lifetime_cost>=(encounters_lifetime_total_cost-1)*immunizations_lifetime\n", - "1174 procedures_lifetime_cost<=medications_lifetime^2/medications_lifetime_perc_covered\n", - "1175 procedures_lifetime_cost<=active_care_plans*healthcare_expenses\n", - "1176 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1177 procedures_lifetime_cost<=10^(encounters_lifetime_payer_coverage/age)\n", - "1178 procedures_lifetime_cost<=10^procedures_lifetime*active_care_plan_length\n", - "1179 procedures_lifetime_cost<=healthcare_expenses^log(lifetime_condition_length)\n", - "1180 procedures_lifetime_cost<=QOLS*healthcare_expenses/active_care_plan_length\n", - "1181 procedures_lifetime_cost>=device_lifetime_length\n", - "1182 procedures_lifetime_cost>=sqrt(imaging_studies_lifetime)*medications_lifetime_dispenses\n", - "1183 procedures_lifetime_cost>=sqrt(10^procedures_lifetime-1)\n", - "1184 procedures_lifetime_cost>=2*immunizations_lifetime_cost*procedures_lifetime\n", - "1185 procedures_lifetime_cost>=immunizations_lifetime_cost*procedures_lifetime^2\n", - "1186 QOLS>=mean_QOLS\n", - "1187 QOLS<=healthcare_coverage\n", - "1188 QOLS<=active_care_plans\n", - "1189 QOLS<=mean_QOLS\n", - "1190 QOLS>=num_allergies\n", - "1191 QOLS>=mean_QOLS\n", - "1192 QOLS<=mean_QOLS\n", - "1193 QOLS>=imaging_studies_lifetime\n", - "1194 QOLS>=mean_QOLS\n", - "1195 QALY<=mean_QALY\n", - "1196 QALY>=mean_QALY\n", - "1197 QALY<=mean_QALY\n", - "1198 QALY>=mean_QALY\n", - "1199 QALY<=mean_QALY\n", - "1200 QALY>=mean_QALY\n", - "1201 DALY<=mean_DALY\n", - "1202 DALY>=device_lifetime_length\n", - "1203 DALY>=mean_DALY\n", - "1204 DALY<=mean_DALY\n", - "1205 DALY<=active_condition_length\n", - "1206 DALY>=device_lifetime_length\n", - "1207 DALY>=mean_DALY\n", - "1208 DALY<=mean_DALY\n", - "1209 DALY>=num_allergies\n", - "1210 DALY>=mean_DALY\n", - "1211 mean_DALY<=DALY\n", - "1212 mean_DALY<=active_care_plan_length\n", - "1213 mean_DALY>=device_lifetime_length\n", - "1214 mean_DALY>=DALY\n", - "1215 mean_DALY<=DALY\n", - "1216 mean_DALY<=lifetime_care_plan_length\n", - "1217 mean_DALY>=DALY\n", - "1218 mean_DALY<=DALY\n", - "1219 mean_DALY<=active_care_plan_length\n", - "1220 mean_DALY>=num_allergies\n", - "1221 mean_DALY>=DALY\n", - "1222 mean_QALY<=QALY\n", - "1223 mean_QALY>=QALY\n", - "1224 mean_QALY<=QALY\n", - "1225 mean_QALY>=QALY\n", - "1226 mean_QALY<=QALY\n", - "1227 mean_QALY>=QALY\n", - "1228 mean_QOLS<=active_conditions\n", - "1229 mean_QOLS<=QOLS\n", - "1230 mean_QOLS>=QOLS\n", - "1231 mean_QOLS<=active_care_plans\n", - "1232 mean_QOLS<=active_conditions\n", - "1233 mean_QOLS<=QOLS\n", - "1234 mean_QOLS>=imaging_studies_lifetime\n", - "1235 mean_QOLS>=QOLS\n", - "1236 mean_QOLS<=QOLS\n", - "1237 mean_QOLS<=medications_lifetime\n", - "1238 mean_QOLS>=device_lifetime_length\n", - "1239 mean_QOLS>=QOLS\n", + "1 healthcare_expenses<=latitude^4\n", + "2 healthcare_expenses<=10^sqrt(latitude)\n", + "3 healthcare_expenses<=Body_Height*Systolic_Blood_Pressure^2\n", + "4 healthcare_expenses<=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^Systolic_Blood_Pressure\n", + "5 healthcare_expenses<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^4\n", + "6 healthcare_expenses<=Systolic_Blood_Pressure^2*encounters_lifetime_total_cost\n", + "7 healthcare_expenses<=(Potassium+1)^Calcium\n", + "8 healthcare_expenses<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Estimated_Glomerular_Filtration_Rate\n", + "9 healthcare_expenses<=2*healthcare_coverage*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "10 healthcare_expenses<=log(Heart_rate)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "11 healthcare_expenses<=10^active_care_plan_length/Calcium\n", + "12 healthcare_expenses<=10^Urea_Nitrogen/Respiratory_rate\n", + "13 healthcare_expenses<=healthcare_coverage^2/medications_active\n", + "14 healthcare_expenses<=10^Erythrocytes____volume__in_Blood_by_Automated_count*mean_MCV__Entitic_volume__by_Automated_count\n", + "15 healthcare_expenses<=age^Leukocytes____volume__in_Blood_by_Automated_count\n", + "16 healthcare_expenses<=(2*encounters_lifetime_total_cost)^Microalbumin_Creatinine_Ratio\n", + "17 healthcare_expenses<=medications_lifetime_length^2-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "18 healthcare_expenses<=Sodium*Systolic_Blood_Pressure^2\n", + "19 healthcare_expenses<=Total_Cholesterol^2*age\n", + "20 healthcare_expenses<=e^age/medications_lifetime_length\n", + "21 healthcare_expenses<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^Respiratory_rate\n", + "22 healthcare_expenses<=e^QALY/procedures_lifetime_cost\n", + "23 healthcare_expenses<=(log(Glucose)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "24 healthcare_expenses<=(log(age)/log(10))^High_Density_Lipoprotein_Cholesterol\n", + "25 healthcare_expenses<=log(lifetime_conditions)^Chloride\n", + "26 healthcare_expenses<=Body_Height*Chloride^2\n", + "27 healthcare_expenses<=e^active_condition_length/medications_lifetime_perc_covered\n", + "28 healthcare_expenses<=10^encounters_count*Carbon_Dioxide\n", + "29 healthcare_expenses<=Chloride*Sodium^2\n", + "30 healthcare_expenses<=sqrt(encounters_lifetime_payer_coverage)^Albumin__Mass_volume__in_Serum,Plasma\n", + "31 healthcare_expenses<=e^Carbon_Dioxide/lifetime_condition_length\n", + "32 healthcare_expenses<=Body_Height*Triglycerides^2\n", + "33 healthcare_expenses<=(log(QALY)/log(10))^Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "34 healthcare_expenses<=medications_lifetime_length^2/num_allergies\n", + "35 healthcare_expenses<=medications_lifetime_length^2/medications_lifetime_perc_covered\n", + "36 healthcare_expenses<=(log(medications_lifetime_length)/log(10))^Hemoglobin__Mass_volume__in_Blood\n", + "37 healthcare_expenses<=10^medications_lifetime_dispenses/medications_active\n", + "38 healthcare_expenses<=Body_Height^2*Diastolic_Blood_Pressure\n", + "39 healthcare_expenses<=e^QALY/device_lifetime_length\n", + "40 healthcare_expenses<=e^Respiratory_rate*mean_Respiratory_rate\n", + "41 healthcare_expenses<=(Heart_rate+1)^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "42 healthcare_expenses<=Body_Height^2*Low_Density_Lipoprotein_Cholesterol\n", + "43 healthcare_expenses<=10^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/procedures_lifetime_cost\n", + "44 healthcare_expenses<=Body_Height^2*mean_Diastolic_Blood_Pressure\n", + "45 healthcare_expenses<=log(Body_Height)^mean_Calcium\n", + "46 healthcare_expenses<=log(MCH__Entitic_mass__by_Automated_count)^Respiratory_rate\n", + "47 healthcare_expenses<=sqrt(Potassium)^mean_Estimated_Glomerular_Filtration_Rate\n", + "48 healthcare_expenses<=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)^mean_Potassium\n", + "49 healthcare_expenses<=Protein__Mass_volume__in_Serum,Plasma^2*medications_lifetime_dispenses\n", + "50 healthcare_expenses<=Low_Density_Lipoprotein_Cholesterol*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "51 healthcare_expenses<=Platelets____volume__in_Blood_by_Automated_count^2*QALY\n", + "52 healthcare_expenses<=e^Estimated_Glomerular_Filtration_Rate/mean_Potassium\n", + "53 healthcare_expenses>=e^encounters_lifetime_perc_covered*healthcare_coverage\n", + "54 healthcare_expenses>=log(medications_lifetime_cost)*medications_lifetime_length\n", + "55 healthcare_expenses>=4*latitude^2\n", + "56 healthcare_expenses>=2*e^lifetime_care_plans\n", + "57 healthcare_expenses>=(lifetime_condition_length+1)^2\n", + "58 healthcare_expenses>=1/2*encounters_lifetime_payer_coverage*latitude\n", + "59 healthcare_expenses>=(MCH__Entitic_mass__by_Automated_count^2)^immunizations_lifetime\n", + "60 healthcare_expenses>=Heart_rate^2*procedures_lifetime\n", + "61 healthcare_expenses>=2*medications_lifetime_cost/encounters_count\n", + "62 healthcare_expenses>=Glucose*Urea_Nitrogen^2\n", + "63 healthcare_expenses>=ceil(medications_lifetime_cost)/medications_lifetime\n", + "64 healthcare_expenses>=Heart_rate*High_Density_Lipoprotein_Cholesterol^2\n", + "65 healthcare_expenses>=sqrt(Systolic_Blood_Pressure)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "66 healthcare_expenses>=medications_lifetime_cost*medications_lifetime_perc_covered^2\n", + "67 healthcare_expenses>=active_conditions*age^2\n", + "68 healthcare_expenses>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*medications_lifetime_cost/log(10)\n", + "69 healthcare_expenses>=(active_care_plans^2)^mean_Creatinine\n", + "70 healthcare_expenses>=(log(Glucose)/log(10))^lifetime_conditions\n", + "71 healthcare_expenses>=(healthcare_coverage+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "72 healthcare_expenses>=(active_condition_length+1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "73 healthcare_expenses>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*medications_lifetime_length\n", + "74 healthcare_expenses>=Estimated_Glomerular_Filtration_Rate^2*Systolic_Blood_Pressure\n", + "75 healthcare_expenses>=(Body_Mass_Index+1)^num_allergies\n", + "76 healthcare_expenses>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*encounters_lifetime_total_cost\n", + "77 healthcare_expenses>=active_conditions^mean_Potassium\n", + "78 healthcare_expenses>=encounters_lifetime_payer_coverage^2/mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "79 healthcare_expenses>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*encounters_count\n", + "80 healthcare_expenses>=10^imaging_studies_lifetime*healthcare_coverage\n", + "81 healthcare_expenses>=sqrt(device_lifetime_length)*medications_lifetime_cost\n", + "82 healthcare_expenses>=10^device_lifetime_length*Platelets____volume__in_Blood_by_Automated_count\n", + "83 healthcare_expenses>=10^medications_active+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "84 healthcare_expenses>=encounters_count*medications_lifetime\n", + "85 healthcare_expenses>=High_Density_Lipoprotein_Cholesterol*QALY^2\n", + "86 healthcare_expenses>=(e^immunizations_lifetime)^Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method\n", + "87 healthcare_expenses>=sqrt(Estimated_Glomerular_Filtration_Rate)*procedures_lifetime_cost\n", + "88 healthcare_expenses>=log(MCH__Entitic_mass__by_Automated_count)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "89 healthcare_expenses>=(procedures_lifetime^2)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "90 healthcare_expenses>=(Body_Mass_Index^2)^immunizations_lifetime\n", + "91 healthcare_expenses>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage\n", + "92 healthcare_expenses>=Body_Height*DALY^2\n", + "93 healthcare_expenses>=longitude^2+healthcare_coverage\n", + "94 healthcare_expenses>=(log(Chloride)/log(10))^mean_Urea_Nitrogen\n", + "95 healthcare_expenses>=DALY*latitude^2\n", + "96 healthcare_expenses>=minimum(medications_lifetime_cost,1/active_conditions)\n", + "97 healthcare_expenses>=e^QOLS*healthcare_coverage\n", + "98 healthcare_expenses>=(log(Urea_Nitrogen)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "99 healthcare_expenses>=Albumin__Mass_volume__in_Serum,Plasma^procedures_lifetime\n", + "100 healthcare_expenses>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime\n", + "101 healthcare_expenses>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime_length\n", + "102 healthcare_expenses>=sqrt(High_Density_Lipoprotein_Cholesterol)^active_care_plans\n", + "103 healthcare_expenses>=age^2*lifetime_conditions\n", + "104 healthcare_expenses>=sqrt(lifetime_conditions)*procedures_lifetime_cost\n", + "105 healthcare_expenses>=1/4*medications_lifetime_cost\n", + "106 healthcare_expenses>=10^Albumin__Mass_volume__in_Serum,Plasma*active_care_plans\n", + "107 healthcare_expenses>=MCH__Entitic_mass__by_Automated_count*MCV__Entitic_volume__by_Automated_count^2\n", + "108 healthcare_expenses>=(1/2*Estimated_Glomerular_Filtration_Rate)^medications_active\n", + "109 healthcare_expenses>=10^num_allergies*Chloride\n", + "110 healthcare_expenses>=(1/2*num_allergies)^DALY\n", + "111 healthcare_expenses>=Body_Height^2*device_lifetime_length\n", + "112 healthcare_expenses>=(1/2*Calcium)^medications_active\n", + "113 healthcare_expenses>=sqrt(active_conditions)^Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method\n", + "114 healthcare_expenses>=log(active_condition_length)*procedures_lifetime_cost\n", + "115 healthcare_expenses>=lifetime_condition_length^2+medications_lifetime_length\n", + "116 healthcare_expenses>=Glomerular_filtration_rate_1_73_sq_M_predicted^2*encounters_count\n", + "117 healthcare_expenses>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^device_lifetime_length\n", + "118 healthcare_expenses>=medications_active^2*medications_lifetime_length\n", + "119 healthcare_expenses>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "120 healthcare_expenses>=(1/Creatinine)^Carbon_Dioxide\n", + "121 healthcare_expenses>=minimum(medications_lifetime_cost,1/medications_active)\n", + "122 healthcare_expenses>=10^Erythrocytes____volume__in_Blood_by_Automated_count*active_care_plans\n", + "123 healthcare_coverage<=encounters_lifetime_total_cost+1/2*healthcare_expenses\n", + "124 healthcare_coverage<=Heart_rate^2*encounters_count\n", + "125 healthcare_coverage<=(Low_Density_Lipoprotein_Cholesterol-1)*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "126 healthcare_coverage<=e^Hemoglobin__Mass_volume__in_Blood/Diastolic_Blood_Pressure\n", + "127 healthcare_coverage<=1/2*Platelets____volume__in_Blood_by_Automated_count^2\n", + "128 healthcare_coverage<=(2*Glomerular_filtration_rate_1_73_sq_M_predicted)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "129 healthcare_coverage<=e^(mean_Respiratory_rate-1)\n", + "130 healthcare_coverage<=encounters_lifetime_payer_coverage+1/2*healthcare_expenses\n", + "131 healthcare_coverage<=(healthcare_expenses-1)/num_allergies\n", + "132 healthcare_coverage<=encounters_lifetime_total_cost^2/DALY\n", + "133 healthcare_coverage<=1/2*healthcare_expenses/imaging_studies_lifetime\n", + "134 healthcare_coverage<=(healthcare_expenses-1)/device_lifetime_length\n", + "135 healthcare_coverage<=encounters_lifetime_payer_coverage*floor(High_Density_Lipoprotein_Cholesterol)\n", + "136 healthcare_coverage<=(healthcare_expenses-1)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "137 healthcare_coverage<=active_care_plan_length^Potassium\n", + "138 healthcare_coverage<=mean_Glucose^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "139 healthcare_coverage<=medications_lifetime_length^2/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "140 healthcare_coverage<=encounters_lifetime_payer_coverage*e^Potassium\n", + "141 healthcare_coverage<=encounters_lifetime_payer_coverage^Sodium\n", + "142 healthcare_coverage<=10^Microalbumin_Creatinine_Ratio*Total_Cholesterol\n", + "143 healthcare_coverage<=floor(medications_lifetime_cost)/medications_lifetime_perc_covered\n", + "144 healthcare_coverage<=Carbon_Dioxide*e^Calcium\n", + "145 healthcare_coverage<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*lifetime_care_plan_length\n", + "146 healthcare_coverage<=Calcium*e^active_care_plan_length\n", + "147 healthcare_coverage<=(encounters_lifetime_payer_coverage-1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "148 healthcare_coverage<=MCHC__Mass_volume__by_Automated_count^2*mean_High_Density_Lipoprotein_Cholesterol\n", + "149 healthcare_coverage<=(10^Calcium)^Creatinine\n", + "150 healthcare_coverage<=(2*latitude)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "151 healthcare_coverage<=(log(medications_lifetime_cost)/log(10))^Body_Weight\n", + "152 healthcare_coverage<=encounters_lifetime_total_cost^2/active_care_plans\n", + "153 healthcare_coverage<=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^QALY\n", + "154 healthcare_coverage<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "155 healthcare_coverage<=10^Potassium*mean_Estimated_Glomerular_Filtration_Rate\n", + "156 healthcare_coverage<=encounters_lifetime_total_cost^2/active_conditions\n", + "157 healthcare_coverage<=Body_Weight^2*mean_Microalbumin_Creatinine_Ratio\n", + "158 healthcare_coverage<=10^sqrt(age)\n", + "159 healthcare_coverage<=e^QALY/Respiratory_rate\n", + "160 healthcare_coverage<=maximum(medications_lifetime_cost,Body_Height^2)\n", + "161 healthcare_coverage<=e^Hemoglobin__Mass_volume__in_Blood/encounters_count\n", + "162 healthcare_coverage<=(1/2*Leukocytes____volume__in_Blood_by_Automated_count)^Respiratory_rate\n", + "163 healthcare_coverage<=maximum(medications_lifetime_cost,1/2*healthcare_expenses)\n", + "164 healthcare_coverage<=2*healthcare_expenses/procedures_lifetime\n", + "165 healthcare_coverage<=10^active_conditions*Potassium\n", + "166 healthcare_coverage<=10^active_conditions-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "167 healthcare_coverage<=(log(latitude)/log(10))^age\n", + "168 healthcare_coverage<=age*longitude^2\n", + "169 healthcare_coverage<=Diastolic_Blood_Pressure^2*High_Density_Lipoprotein_Cholesterol\n", + "170 healthcare_coverage<=encounters_lifetime_payer_coverage^2/num_allergies\n", + "171 healthcare_coverage<=Heart_rate*age^2\n", + "172 healthcare_coverage<=log(active_condition_length)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "173 healthcare_coverage<=e^Calcium+medications_lifetime_cost\n", + "174 healthcare_coverage<=encounters_lifetime_total_cost^2/Carbon_Dioxide\n", + "175 healthcare_coverage<=e^active_care_plan_length/medications_lifetime_perc_covered\n", + "176 healthcare_coverage<=e^lifetime_care_plan_length/device_lifetime_length\n", + "177 healthcare_coverage<=(log(procedures_lifetime_cost)/log(10))^mean_Urea_Nitrogen\n", + "178 healthcare_coverage<=medications_lifetime_length^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "179 healthcare_coverage<=log(device_lifetime_length)^MCHC__Mass_volume__by_Automated_count\n", + "180 healthcare_coverage<=Sodium*e^encounters_count\n", + "181 healthcare_coverage<=e^encounters_count/device_lifetime_length\n", + "182 healthcare_coverage<=e^Carbon_Dioxide/procedures_lifetime_cost\n", + "183 healthcare_coverage<=encounters_lifetime_total_cost^2/lifetime_conditions\n", + "184 healthcare_coverage<=encounters_lifetime_total_cost^2/medications_lifetime\n", + "185 healthcare_coverage<=encounters_lifetime_total_cost^2/procedures_lifetime\n", + "186 healthcare_coverage<=Diastolic_Blood_Pressure^2*encounters_count\n", + "187 healthcare_coverage<=1/2*Triglycerides*encounters_lifetime_payer_coverage\n", + "188 healthcare_coverage<=10^medications_lifetime/medications_lifetime_perc_covered\n", + "189 healthcare_coverage<=2*medications_lifetime_cost/num_allergies\n", + "190 healthcare_coverage<=log(Leukocytes____volume__in_Blood_by_Automated_count)^QALY\n", + "191 healthcare_coverage<=medications_lifetime_dispenses^2/imaging_studies_lifetime\n", + "192 healthcare_coverage<=Body_Weight^2*encounters_count\n", + "193 healthcare_coverage<=e^Hemoglobin__Mass_volume__in_Blood/mean_Diastolic_Blood_Pressure\n", + "194 healthcare_coverage<=minimum(healthcare_expenses,10^Polyp_size_greatest_dimension_by_CAP_cancer_protocols)\n", + "195 healthcare_coverage>=num_allergies\n", + "196 healthcare_coverage>=1/2*encounters_lifetime_total_cost*num_allergies\n", + "197 healthcare_coverage>=minimum(medications_lifetime_dispenses,procedures_lifetime_cost+1)\n", + "198 healthcare_coverage>=log(MCHC__Mass_volume__by_Automated_count)*medications_lifetime_length/log(10)\n", + "199 healthcare_coverage>=(age+1)*MCV__Entitic_volume__by_Automated_count\n", + "200 healthcare_coverage>=sqrt(healthcare_expenses)-immunizations_lifetime_cost\n", + "201 healthcare_coverage>=minimum(medications_lifetime_length,10^medications_active)\n", + "202 healthcare_coverage>=1/2*QALY*Total_Cholesterol\n", + "203 healthcare_coverage>=Glomerular_filtration_rate_1_73_sq_M_predicted^2+Total_Cholesterol\n", + "204 healthcare_coverage>=e^(Leukocytes____volume__in_Blood_by_Automated_count-1)\n", + "205 healthcare_coverage>=(encounters_count+1)*MCV__Entitic_volume__by_Automated_count\n", + "206 healthcare_coverage>=sqrt(healthcare_expenses)-encounters_lifetime_total_cost\n", + "207 healthcare_coverage>=imaging_studies_lifetime*latitude^2\n", + "208 healthcare_coverage>=minimum(medications_lifetime_length,Respiratory_rate)\n", + "209 healthcare_coverage>=lifetime_conditions^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "210 healthcare_coverage>=(immunizations_lifetime_cost+1)*mean_Microalbumin_Creatinine_Ratio\n", + "211 healthcare_coverage>=DALY^2*device_lifetime_length\n", + "212 healthcare_coverage>=(medications_lifetime^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "213 healthcare_coverage>=Systolic_Blood_Pressure^2*medications_lifetime_perc_covered\n", + "214 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Total_Cholesterol\n", + "215 healthcare_coverage>=encounters_lifetime_payer_coverage*log(latitude)/log(10)\n", + "216 healthcare_coverage>=ceil(encounters_lifetime_payer_coverage)/Creatinine\n", + "217 healthcare_coverage>=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "218 healthcare_coverage>=encounters_lifetime_perc_covered*latitude^2\n", + "219 healthcare_coverage>=Diastolic_Blood_Pressure^2*imaging_studies_lifetime\n", + "220 healthcare_coverage>=e^Calcium*medications_lifetime_perc_covered\n", + "221 healthcare_coverage>=(-Glucose)^immunizations_lifetime\n", + "222 healthcare_coverage>=longitude^2*medications_lifetime_perc_covered\n", + "223 healthcare_coverage>=age^2*encounters_lifetime_perc_covered\n", + "224 healthcare_coverage>=(Triglycerides+1)*Carbon_Dioxide\n", + "225 healthcare_coverage>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(medications_lifetime_cost)\n", + "226 healthcare_coverage>=2*QALY*mean_Protein__Mass_volume__in_Serum,Plasma\n", + "227 healthcare_coverage>=(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)^active_care_plans\n", + "228 healthcare_coverage>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*sqrt(procedures_lifetime_cost)\n", + "229 healthcare_coverage>=lifetime_care_plan_length^2/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "230 healthcare_coverage>=Total_Cholesterol*floor(DALY)\n", + "231 healthcare_coverage>=encounters_count^2-procedures_lifetime_cost\n", + "232 healthcare_coverage>=1/2*Diastolic_Blood_Pressure*High_Density_Lipoprotein_Cholesterol\n", + "233 healthcare_coverage>=(medications_lifetime+1)*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "234 healthcare_coverage>=sqrt(healthcare_expenses)*num_allergies\n", + "235 healthcare_coverage>=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1)*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "236 healthcare_coverage>=Diastolic_Blood_Pressure*sqrt(encounters_lifetime_payer_coverage)\n", + "237 healthcare_coverage>=(procedures_lifetime+1)*Platelets____volume__in_Blood_by_Automated_count\n", + "238 healthcare_coverage>=1/2*MCHC__Mass_volume__by_Automated_count*Platelets____volume__in_Blood_by_Automated_count\n", + "239 healthcare_coverage>=Estimated_Glomerular_Filtration_Rate*Heart_rate\n", + "240 healthcare_coverage>=log(Estimated_Glomerular_Filtration_Rate)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "241 healthcare_coverage>=Heart_rate*sqrt(encounters_lifetime_payer_coverage)\n", + "242 healthcare_coverage>=encounters_lifetime_total_cost*sqrt(num_allergies)\n", + "243 healthcare_coverage>=e^active_care_plans*mean_Microalbumin_Creatinine_Ratio\n", + "244 healthcare_coverage>=Total_Cholesterol*active_care_plans^2\n", + "245 healthcare_coverage>=sqrt(medications_active)^lifetime_conditions\n", + "246 healthcare_coverage>=encounters_lifetime_payer_coverage*log(lifetime_care_plans)\n", + "247 healthcare_coverage>=minimum(medications_lifetime_cost,active_care_plan_length^2)\n", + "248 healthcare_coverage>=active_condition_length^2/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "249 healthcare_coverage>=minimum(encounters_lifetime_total_cost,2*encounters_lifetime_payer_coverage)\n", + "250 healthcare_coverage>=DALY^2*medications_active\n", + "251 healthcare_coverage>=sqrt(Albumin__Mass_volume__in_Serum,Plasma)^active_conditions\n", + "252 healthcare_coverage>=sqrt(device_lifetime_length)^Hemoglobin__Mass_volume__in_Blood\n", + "253 healthcare_coverage>=minimum(medications_lifetime_cost,active_condition_length^2)\n", + "254 healthcare_coverage>=lifetime_condition_length*medications_active^2\n", + "255 healthcare_coverage>=active_conditions*device_lifetime_length^2\n", + "256 healthcare_coverage>=encounters_count^2*imaging_studies_lifetime\n", + "257 healthcare_coverage>=2*encounters_lifetime_total_cost*medications_lifetime_perc_covered\n", + "258 healthcare_coverage>=minimum(encounters_lifetime_total_cost,-Respiratory_rate)\n", + "259 healthcare_coverage>=Body_Weight*sqrt(encounters_lifetime_payer_coverage)\n", + "260 healthcare_coverage>=encounters_lifetime_payer_coverage*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "261 healthcare_coverage>=(encounters_lifetime_perc_covered+1)*encounters_lifetime_payer_coverage\n", + "262 healthcare_coverage>=2*medications_lifetime_cost/medications_lifetime_dispenses\n", + "263 healthcare_coverage>=minimum(medications_lifetime_length,2*encounters_lifetime_payer_coverage)\n", + "264 healthcare_coverage>=(medications_lifetime^2)^QOLS\n", + "265 healthcare_coverage>=e^Creatinine*medications_lifetime\n", + "266 healthcare_coverage>=1/2*Body_Weight*High_Density_Lipoprotein_Cholesterol\n", + "267 healthcare_coverage>=Glucose^2*encounters_lifetime_perc_covered\n", + "268 healthcare_coverage>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2-healthcare_expenses\n", + "269 healthcare_coverage>=age*ceil(Microalbumin_Creatinine_Ratio)\n", + "270 latitude<=-lifetime_conditions-longitude\n", + "271 latitude<=1/2*Heart_rate+Respiratory_rate\n", + "272 latitude<=log(e^Systolic_Blood_Pressure)/log(10)\n", + "273 latitude<=Globulin__Mass_volume__in_Serum_by_calculation^2+QALY\n", + "274 latitude<=1/2*Body_Height-Body_Mass_Index\n", + "275 latitude<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "276 latitude<=2*floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "277 latitude<=Heart_rate-Urea_Nitrogen\n", + "278 latitude<=QALY+age+1\n", + "279 latitude<=2*Sodium/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "280 latitude<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "281 latitude<=10^lifetime_care_plan_length/active_care_plans\n", + "282 latitude<=MCHC__Mass_volume__by_Automated_count+floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "283 latitude<=Chloride^2/immunizations_lifetime_cost\n", + "284 latitude<=(active_care_plan_length+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "285 latitude<=sqrt(healthcare_expenses)/num_allergies\n", + "286 latitude<=floor(encounters_lifetime_total_cost)/procedures_lifetime\n", + "287 latitude<=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "288 latitude<=maximum(age,ceil(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count))\n", + "289 latitude<=(Microalbumin_Creatinine_Ratio^2)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "290 latitude<=Calcium*log(Body_Height)\n", + "291 latitude<=-QALY+floor(Triglycerides)\n", + "292 latitude<=1/2*Diastolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "293 latitude<=2*encounters_lifetime_total_cost/DALY\n", + "294 latitude<=Diastolic_Blood_Pressure^2/mean_Glucose\n", + "295 latitude<=Body_Mass_Index+QALY\n", + "296 latitude<=(Body_Height-1)/num_allergies\n", + "297 latitude<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*Urea_Nitrogen\n", + "298 latitude<=sqrt(Calcium)+lifetime_condition_length\n", + "299 latitude<=minimum(Protein__Mass_volume__in_Serum,Plasma,sqrt(medications_lifetime_length))\n", + "300 latitude<=Respiratory_rate*log(age)\n", + "301 latitude<=e^Potassium+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "302 latitude<=Calcium^2-Body_Mass_Index\n", + "303 latitude<=sqrt(healthcare_coverage)+encounters_lifetime_total_cost\n", + "304 latitude<=encounters_count^2/imaging_studies_lifetime\n", + "305 latitude<=sqrt(Low_Density_Lipoprotein_Cholesterol)+mean_MCHC__Mass_volume__by_Automated_count\n", + "306 latitude<=2*Carbon_Dioxide+active_care_plans\n", + "307 latitude<=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-procedures_lifetime\n", + "308 latitude<=-active_conditions-longitude\n", + "309 latitude<=1/2*encounters_lifetime_total_cost/encounters_count\n", + "310 latitude<=Protein__Mass_volume__in_Serum,Plasma*log(medications_active)\n", + "311 latitude<=2*age-num_allergies\n", + "312 latitude<=longitude^2/Body_Weight\n", + "313 latitude<=Potassium*sqrt(Sodium)\n", + "314 latitude<=-active_care_plans+2*age\n", + "315 latitude<=log(Heart_rate)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "316 latitude<=-active_conditions+2*age\n", + "317 latitude<=2*age-lifetime_conditions\n", + "318 latitude<=Glucose^2/mean_Chloride\n", + "319 latitude<=1/2*Microalbumin_Creatinine_Ratio*lifetime_care_plan_length\n", + "320 latitude<=sqrt(Total_Cholesterol)+age\n", + "321 latitude<=QALY^2/mean_Urea_Nitrogen\n", + "322 latitude<=2*encounters_count/medications_lifetime_perc_covered\n", + "323 latitude<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "324 latitude<=1/2*encounters_lifetime_total_cost/lifetime_conditions\n", + "325 latitude<=1/2*encounters_lifetime_payer_coverage/num_allergies\n", + "326 latitude<=maximum(lifetime_care_plan_length,2*Body_Mass_Index)\n", + "327 latitude<=-QALY+Systolic_Blood_Pressure+1\n", + "328 latitude<=immunizations_lifetime_cost+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "329 latitude<=Carbon_Dioxide+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "330 latitude<=medications_lifetime_length^2/medications_active\n", + "331 latitude<=10^medications_active*Estimated_Glomerular_Filtration_Rate\n", + "332 latitude<=log(Estimated_Glomerular_Filtration_Rate)/log(10)+High_Density_Lipoprotein_Cholesterol\n", + "333 latitude<=2*QALY/medications_lifetime_perc_covered\n", + "334 latitude<=MCH__Entitic_mass__by_Automated_count+ceil(Hemoglobin__Mass_volume__in_Blood)\n", + "335 latitude<=log(Systolic_Blood_Pressure)*mean_Carbon_Dioxide/log(10)\n", + "336 latitude<=2*Systolic_Blood_Pressure/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "337 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(MCHC__Mass_volume__by_Automated_count)\n", + "338 latitude<=2*Triglycerides/Potassium\n", + "339 latitude<=1/2*MCH__Entitic_mass__by_Automated_count+age\n", + "340 latitude<=QALY*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "341 latitude<=maximum(QALY,2*Estimated_Glomerular_Filtration_Rate)\n", + "342 latitude<=minimum(healthcare_expenses,e^Polyp_size_greatest_dimension_by_CAP_cancer_protocols)\n", + "343 latitude>=-1/2*longitude\n", + "344 latitude>=1/2*ceil(age)\n", + "345 latitude>=(Body_temperature+1)^QOLS\n", + "346 latitude>=log(healthcare_expenses)^2/log(10)^2\n", + "347 latitude>=sqrt(age)*num_allergies\n", + "348 latitude>=log(DALY)+procedures_lifetime\n", + "349 latitude>=1/4*lifetime_care_plans^2\n", + "350 latitude>=1/2*High_Density_Lipoprotein_Cholesterol+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "351 latitude>=sqrt(Systolic_Blood_Pressure)+Body_Mass_Index\n", + "352 latitude>=ceil(Potassium)*lifetime_care_plans\n", + "353 latitude>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "354 latitude>=medications_active^2+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "355 latitude>=Urea_Nitrogen*log(Systolic_Blood_Pressure)/log(10)\n", + "356 latitude>=sqrt(Body_Weight)+MCH__Entitic_mass__by_Automated_count\n", + "357 latitude>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "358 latitude>=sqrt(High_Density_Lipoprotein_Cholesterol)*mean_Potassium\n", + "359 latitude>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted-1/2\n", + "360 latitude>=(Albumin__Mass_volume__in_Serum,Plasma+1)^2\n", + "361 latitude>=-MCHC__Mass_volume__by_Automated_count+age-1\n", + "362 latitude>=sqrt(Heart_rate)+MCH__Entitic_mass__by_Automated_count\n", + "363 latitude>=1/2*Diastolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "364 latitude>=log(healthcare_expenses)/log(10)+MCHC__Mass_volume__by_Automated_count\n", + "365 latitude>=e^imaging_studies_lifetime*mean_Urea_Nitrogen\n", + "366 latitude>=1/2*Body_Weight-active_care_plan_length\n", + "367 latitude>=Microalbumin_Creatinine_Ratio^medications_lifetime_perc_covered\n", + "368 latitude>=(log(lifetime_conditions)/log(10))^mean_Urea_Nitrogen\n", + "369 latitude>=1/2*Low_Density_Lipoprotein_Cholesterol-MCHC__Mass_volume__by_Automated_count\n", + "370 latitude>=-Respiratory_rate+device_lifetime_length+1\n", + "371 latitude>=(Estimated_Glomerular_Filtration_Rate-1)*num_allergies\n", + "372 latitude>=floor(Globulin__Mass_volume__in_Serum_by_calculation)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "373 latitude>=Creatinine*log(procedures_lifetime_cost)\n", + "374 latitude>=log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)+procedures_lifetime\n", + "375 latitude>=sqrt(MCV__Entitic_volume__by_Automated_count)+MCH__Entitic_mass__by_Automated_count\n", + "376 latitude>=-Glucose+floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "377 latitude>=1/2*age+medications_lifetime_perc_covered\n", + "378 latitude>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,1/DALY)\n", + "379 latitude>=2*age/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "380 latitude>=log(encounters_lifetime_payer_coverage)*mean_Creatinine\n", + "381 latitude>=age^2/Body_Height\n", + "382 latitude>=MCH__Entitic_mass__by_Automated_count+2*active_care_plans\n", + "383 latitude>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Carbon_Dioxide\n", + "384 latitude>=e^num_allergies/QALY\n", + "385 latitude>=Respiratory_rate*e^QOLS\n", + "386 latitude>=High_Density_Lipoprotein_Cholesterol-age\n", + "387 latitude>=e^num_allergies/Creatinine\n", + "388 latitude>=Erythrocytes____volume__in_Blood_by_Automated_count+MCHC__Mass_volume__by_Automated_count+1\n", + "389 latitude>=active_care_plans^2-active_conditions\n", + "390 latitude>=Estimated_Glomerular_Filtration_Rate*log(active_care_plans)/log(10)\n", + "391 latitude>=-Glucose+floor(Chloride)\n", + "392 latitude>=active_care_plan_length-medications_lifetime_cost-1\n", + "393 latitude>=minimum(Estimated_Glomerular_Filtration_Rate,active_care_plan_length-1)\n", + "394 latitude>=sqrt(lifetime_conditions)*mean_Calcium\n", + "395 latitude>=(MCV__Entitic_volume__by_Automated_count-1)^medications_lifetime_perc_covered\n", + "396 latitude>=(Hemoglobin__Mass_volume__in_Blood-1)/encounters_lifetime_perc_covered\n", + "397 latitude>=1/2*QALY+active_care_plans\n", + "398 latitude>=1/2*Glucose*encounters_lifetime_perc_covered\n", + "399 latitude>=1/2*Estimated_Glomerular_Filtration_Rate-Potassium\n", + "400 latitude>=log(procedures_lifetime_cost)/log(10)+DALY\n", + "401 latitude>=sqrt(medications_lifetime_dispenses)^QOLS\n", + "402 latitude>=sqrt(medications_lifetime_dispenses)-DALY\n", + "403 latitude>=-medications_lifetime_dispenses+2*procedures_lifetime\n", + "404 latitude>=Calcium*log(QALY)\n", + "405 longitude<=-latitude-1\n", + "406 longitude<=Respiratory_rate-age-1\n", + "407 longitude<=-active_condition_length+log(Protein__Mass_volume__in_Serum,Plasma)\n", + "408 longitude<=-Chloride+latitude-1\n", + "409 longitude<=-2*Body_Mass_Index\n", + "410 longitude<=-MCHC__Mass_volume__by_Automated_count-MCH__Entitic_mass__by_Automated_count\n", + "411 longitude<=-Heart_rate+age-1\n", + "412 longitude<=10^DALY-encounters_count\n", + "413 longitude<=-Body_Weight+1/2*Heart_rate\n", + "414 longitude<=-Respiratory_rate-latitude\n", + "415 longitude<=sqrt(encounters_lifetime_total_cost)-MCV__Entitic_volume__by_Automated_count\n", + "416 longitude<=age-mean_Glucose-1\n", + "417 longitude<=-age+encounters_count-1\n", + "418 longitude<=-latitude-lifetime_conditions\n", + "419 longitude<=sqrt(QALY)-active_care_plan_length\n", + "420 longitude<=-Respiratory_rate*num_allergies\n", + "421 longitude<=-High_Density_Lipoprotein_Cholesterol+active_condition_length-1\n", + "422 longitude<=2*Respiratory_rate-mean_Heart_rate\n", + "423 longitude<=encounters_lifetime_payer_coverage-lifetime_condition_length-1\n", + "424 longitude<=-latitude-num_allergies\n", + "425 longitude<=-QALY+immunizations_lifetime_cost-1\n", + "426 longitude<=-latitude-medications_active\n", + "427 longitude<=Diastolic_Blood_Pressure-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "428 longitude<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood-QALY\n", + "429 longitude<=10^encounters_count-MCV__Entitic_volume__by_Automated_count\n", + "430 longitude<=-Low_Density_Lipoprotein_Cholesterol+floor(medications_lifetime_length)\n", + "431 longitude<=(-age)^QOLS\n", + "432 longitude<=-active_condition_length+2*medications_lifetime\n", + "433 longitude<=2*active_care_plan_length-mean_Glucose\n", + "434 longitude<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-High_Density_Lipoprotein_Cholesterol\n", + "435 longitude<=-Bilirubin_total__Mass_volume__in_Serum,Plasma*QALY\n", + "436 longitude<=sqrt(healthcare_coverage)-Low_Density_Lipoprotein_Cholesterol\n", + "437 longitude<=1/2*Chloride-Glucose\n", + "438 longitude<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported-High_Density_Lipoprotein_Cholesterol\n", + "439 longitude<=-encounters_count+floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "440 longitude<=-Heart_rate+MCH__Entitic_mass__by_Automated_count\n", + "441 longitude<=-Diastolic_Blood_Pressure+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1\n", + "442 longitude<=-Diastolic_Blood_Pressure+Microalbumin_Creatinine_Ratio\n", + "443 longitude<=-age+log(healthcare_expenses)\n", + "444 longitude<=-Glomerular_filtration_rate_1_73_sq_M_predicted+log(healthcare_expenses)\n", + "445 longitude<=1/imaging_studies_lifetime-High_Density_Lipoprotein_Cholesterol\n", + "446 longitude<=1/num_allergies-age\n", + "447 longitude<=-active_care_plans-latitude\n", + "448 longitude<=-active_conditions-latitude\n", + "449 longitude<=Calcium-High_Density_Lipoprotein_Cholesterol-1\n", + "450 longitude<=10^active_care_plans-age\n", + "451 longitude<=-active_care_plans*lifetime_care_plans\n", + "452 longitude<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-active_conditions\n", + "453 longitude<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Creatinine\n", + "454 longitude<=2*Calcium-Diastolic_Blood_Pressure\n", + "455 longitude<=e^active_conditions-medications_lifetime\n", + "456 longitude<=2*encounters_lifetime_total_cost-medications_lifetime_dispenses\n", + "457 longitude<=(encounters_lifetime_perc_covered-1)*age\n", + "458 longitude<=-immunizations_lifetime_cost/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "459 longitude<=-immunizations_lifetime_cost/Leukocytes____volume__in_Blood_by_Automated_count\n", + "460 longitude<=10^medications_lifetime-age\n", + "461 longitude<=-MCV__Entitic_volume__by_Automated_count+ceil(Body_Mass_Index)\n", + "462 longitude<=-Protein__Mass_volume__in_Serum,Plasma+log(medications_lifetime_length)\n", + "463 longitude<=e^Albumin__Mass_volume__in_Serum,Plasma-mean_Glucose\n", + "464 longitude<=-Body_Weight+1/2*Diastolic_Blood_Pressure\n", + "465 longitude<=-active_care_plan_length+log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "466 longitude<=sqrt(High_Density_Lipoprotein_Cholesterol)-mean_High_Density_Lipoprotein_Cholesterol\n", + "467 longitude<=sqrt(Sodium)-age\n", + "468 longitude<=-Sodium/active_conditions\n", + "469 longitude<=-Chloride+e^Potassium\n", + "470 longitude<=-Total_Cholesterol/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "471 longitude<=Calcium^2-Sodium\n", + "472 longitude>=-2*latitude\n", + "473 longitude>=1/2*QALY-Systolic_Blood_Pressure\n", + "474 longitude>=2*Erythrocytes____volume__in_Blood_by_Automated_count-MCV__Entitic_volume__by_Automated_count\n", + "475 longitude>=2*Respiratory_rate-Triglycerides\n", + "476 longitude>=Body_Mass_Index-Chloride\n", + "477 longitude>=Body_Mass_Index-mean_Chloride\n", + "478 longitude>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-MCHC__Mass_volume__by_Automated_count\n", + "479 longitude>=-Body_Height+Body_Weight+1\n", + "480 longitude>=-Sodium+1/2*Systolic_Blood_Pressure\n", + "481 longitude>=-Diastolic_Blood_Pressure-active_care_plans\n", + "482 longitude>=MCV__Entitic_volume__by_Automated_count-Platelets____volume__in_Blood_by_Automated_count+1\n", + "483 longitude>=-Calcium^2\n", + "484 longitude>=-Body_Weight-active_care_plan_length\n", + "485 longitude>=MCV__Entitic_volume__by_Automated_count-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1\n", + "486 longitude>=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-lifetime_condition_length\n", + "487 longitude>=active_care_plans^2-Triglycerides\n", + "488 longitude>=sqrt(lifetime_care_plan_length)-MCV__Entitic_volume__by_Automated_count\n", + "489 longitude>=-Chloride+mean_Body_Mass_Index\n", + "490 longitude>=-Glucose-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "491 longitude>=MCH__Entitic_mass__by_Automated_count-Triglycerides-1\n", + "492 longitude>=sqrt(Low_Density_Lipoprotein_Cholesterol)-MCV__Entitic_volume__by_Automated_count\n", + "493 longitude>=-1/2*Body_Height\n", + "494 longitude>=-Protein__Mass_volume__in_Serum,Plasma-encounters_count\n", + "495 longitude>=log(num_allergies)/log(10)-Protein__Mass_volume__in_Serum,Plasma\n", + "496 longitude>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-age\n", + "497 longitude>=log(num_allergies)-mean_Heart_rate\n", + "498 longitude>=-Heart_rate/encounters_lifetime_perc_covered\n", + "499 longitude>=1/2*Systolic_Blood_Pressure-mean_Sodium\n", + "500 longitude>=-Diastolic_Blood_Pressure-active_conditions\n", + "501 longitude>=-Glucose-active_conditions\n", + "502 longitude>=-Carbon_Dioxide*lifetime_conditions\n", + "503 longitude>=2*lifetime_conditions-mean_Systolic_Blood_Pressure\n", + "504 longitude>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "505 longitude>=-encounters_lifetime_payer_coverage/device_lifetime_length\n", + "506 longitude>=-Heart_rate-QALY\n", + "507 longitude>=log(imaging_studies_lifetime)-medications_lifetime_dispenses\n", + "508 longitude>=-Diastolic_Blood_Pressure+log(imaging_studies_lifetime)\n", + "509 longitude>=-Body_Weight+log(imaging_studies_lifetime)\n", + "510 longitude>=-Body_Weight/encounters_lifetime_perc_covered\n", + "511 longitude>=log(medications_lifetime_perc_covered)*medications_lifetime_length/log(10)\n", + "512 longitude>=1/2*High_Density_Lipoprotein_Cholesterol-mean_Systolic_Blood_Pressure\n", + "513 longitude>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "514 longitude>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-Systolic_Blood_Pressure\n", + "515 longitude>=-Glucose/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "516 longitude>=-Protein__Mass_volume__in_Serum,Plasma/medications_lifetime_perc_covered\n", + "517 longitude>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-mean_Heart_rate\n", + "518 longitude>=log(Estimated_Glomerular_Filtration_Rate)-mean_Heart_rate\n", + "519 longitude>=Microalbumin_Creatinine_Ratio-medications_lifetime_dispenses+1\n", + "520 age<=1/medications_lifetime_perc_covered+lifetime_condition_length\n", + "521 age<=e^DALY+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "522 age<=maximum(lifetime_condition_length,2*QALY)\n", + "523 age<=Sodium^2/immunizations_lifetime_cost\n", + "524 age<=encounters_count-longitude-1\n", + "525 age<=Body_Weight+1/2*Hemoglobin__Mass_volume__in_Blood\n", + "526 age<=Low_Density_Lipoprotein_Cholesterol+mean_Urea_Nitrogen-1\n", + "527 age<=(healthcare_expenses-1)/Body_Height\n", + "528 age<=(healthcare_coverage-1)/High_Density_Lipoprotein_Cholesterol\n", + "529 age<=Potassium^2*active_conditions\n", + "530 age<=-Estimated_Glomerular_Filtration_Rate+Sodium-1\n", + "531 age<=(healthcare_coverage-1)/Microalbumin_Creatinine_Ratio\n", + "532 age<=maximum(encounters_lifetime_payer_coverage,2*QALY)\n", + "533 age<=floor(lifetime_condition_length)/imaging_studies_lifetime\n", + "534 age<=2*active_care_plan_length/medications_lifetime_perc_covered\n", + "535 age<=DALY*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "536 age<=Glomerular_filtration_rate_1_73_sq_M_predicted+immunizations_lifetime_cost-1\n", + "537 age<=encounters_lifetime_total_cost+latitude-1\n", + "538 age<=floor(encounters_lifetime_total_cost)/procedures_lifetime\n", + "539 age<=Body_Weight+encounters_lifetime_payer_coverage-1\n", + "540 age<=2*QALY+active_condition_length\n", + "541 age<=maximum(lifetime_care_plan_length,Diastolic_Blood_Pressure-1)\n", + "542 age<=Chloride*log(lifetime_conditions)/log(10)\n", + "543 age<=(2*Total_Cholesterol)^Creatinine\n", + "544 age<=10^QOLS*High_Density_Lipoprotein_Cholesterol\n", + "545 age<=Heart_rate+QALY-1\n", + "546 age<=Heart_rate+2*active_conditions\n", + "547 age<=2*Body_Weight/immunizations_lifetime\n", + "548 age<=floor(active_condition_length)+mean_Estimated_Glomerular_Filtration_Rate\n", + "549 age<=-Heart_rate+ceil(Platelets____volume__in_Blood_by_Automated_count)\n", + "550 age<=log(healthcare_expenses)-longitude\n", + "551 age<=Diastolic_Blood_Pressure+active_conditions+1\n", + "552 age<=High_Density_Lipoprotein_Cholesterol+active_care_plan_length-1\n", + "553 age<=maximum(lifetime_condition_length,High_Density_Lipoprotein_Cholesterol-1)\n", + "554 age<=Body_Weight+medications_lifetime_cost-1\n", + "555 age<=sqrt(Potassium)*active_condition_length\n", + "556 age<=-longitude/QOLS\n", + "557 age<=Chloride*log(encounters_count)/log(10)\n", + "558 age<=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "559 age<=-MCHC__Mass_volume__by_Automated_count+ceil(Triglycerides)\n", + "560 age<=log(Estimated_Glomerular_Filtration_Rate)+mean_Diastolic_Blood_Pressure\n", + "561 age<=sqrt(Body_Mass_Index)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "562 age<=encounters_lifetime_total_cost^2/medications_lifetime_length\n", + "563 age<=maximum(Triglycerides,Calcium^2)\n", + "564 age<=medications_lifetime_length^2/medications_active\n", + "565 age<=Leukocytes____volume__in_Blood_by_Automated_count^2+QALY\n", + "566 age<=2*Platelets____volume__in_Blood_by_Automated_count/active_conditions\n", + "567 age<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Heart_rate+1\n", + "568 age<=sqrt(Protein__Mass_volume__in_Serum,Plasma)-longitude\n", + "569 age<=e^DALY+mean_Estimated_Glomerular_Filtration_Rate\n", + "570 age<=Diastolic_Blood_Pressure+2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "571 age<=QALY*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "572 age<=2*QALY+medications_lifetime_cost\n", + "573 age<=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-active_conditions\n", + "574 age<=sqrt(healthcare_coverage)/encounters_lifetime_perc_covered\n", + "575 age<=1/2*medications_lifetime_dispenses/imaging_studies_lifetime\n", + "576 age<=sqrt(healthcare_coverage)-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "577 age<=MCHC__Mass_volume__by_Automated_count+ceil(QALY)\n", + "578 age<=Body_Weight+2*DALY\n", + "579 age<=MCHC__Mass_volume__by_Automated_count+latitude+1\n", + "580 age<=1/num_allergies-longitude\n", + "581 age<=-QOLS+2*latitude\n", + "582 age<=10^active_care_plans-longitude\n", + "583 age<=2*QALY/QOLS\n", + "584 age<=10^lifetime_care_plan_length/active_care_plans\n", + "585 age<=active_conditions^2+Microalbumin_Creatinine_Ratio\n", + "586 age<=2*encounters_lifetime_total_cost/Leukocytes____volume__in_Blood_by_Automated_count\n", + "587 age<=Protein__Mass_volume__in_Serum,Plasma+encounters_count+1\n", + "588 age<=2*encounters_count/medications_lifetime_perc_covered\n", + "589 age<=1/2*encounters_lifetime_payer_coverage/num_allergies\n", + "590 age<=DALY+2*QALY\n", + "591 age<=e^medications_lifetime-longitude\n", + "592 age<=maximum(lifetime_condition_length,Heart_rate-1)\n", + "593 age<=Calcium+floor(Glucose)\n", + "594 age<=sqrt(Body_Height)+Heart_rate\n", + "595 age<=2*Estimated_Glomerular_Filtration_Rate+QALY\n", + "596 age<=ceil(Low_Density_Lipoprotein_Cholesterol)+encounters_count\n", + "597 age>=QALY+1\n", + "598 age>=ceil(active_care_plan_length)-encounters_lifetime_perc_covered\n", + "599 age>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)/log(10)+QALY\n", + "600 age>=ceil(active_condition_length)\n", + "601 age>=DALY+QALY\n", + "602 age>=-QALY+latitude-1\n", + "603 age>=Leukocytes____volume__in_Blood_by_Automated_count+1/2*medications_lifetime\n", + "604 age>=(Total_Cholesterol+1)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "605 age>=High_Density_Lipoprotein_Cholesterol-latitude\n", + "606 age>=DALY+ceil(QALY)\n", + "607 age>=Diastolic_Blood_Pressure*log(Creatinine)/log(10)\n", + "608 age>=longitude+mean_Glucose+1\n", + "609 age>=sqrt(Albumin__Mass_volume__in_Serum,Plasma)*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "610 age>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*DALY\n", + "611 age>=active_care_plan_length+log(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "612 age>=-Hemoglobin__Mass_volume__in_Blood+floor(latitude)\n", + "613 age>=active_condition_length+imaging_studies_lifetime\n", + "614 age>=1/2*Microalbumin_Creatinine_Ratio-mean_Body_Mass_Index\n", + "615 age>=active_care_plan_length+medications_lifetime_perc_covered\n", + "616 age>=medications_active^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "617 age>=4*num_allergies\n", + "618 age>=(procedures_lifetime+1)*encounters_lifetime_perc_covered\n", + "619 age>=DALY+log(healthcare_expenses)\n", + "620 age>=ceil(QALY+1)\n", + "621 age>=floor(1/2*Estimated_Glomerular_Filtration_Rate)\n", + "622 age>=encounters_lifetime_perc_covered+1/2*latitude\n", + "623 age>=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*num_allergies\n", + "624 age>=sqrt(num_allergies)+active_condition_length\n", + "625 age>=QALY+1/2*active_care_plans\n", + "626 age>=minimum(Triglycerides,active_care_plan_length+1)\n", + "627 age>=1/2*Potassium+active_condition_length\n", + "628 age>=DALY^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "629 age>=minimum(Estimated_Glomerular_Filtration_Rate,encounters_count+1)\n", + "630 age>=(1/2*lifetime_care_plan_length)^QOLS\n", + "631 age>=sqrt(device_lifetime_length)+QALY\n", + "632 age>=QALY+ceil(DALY)\n", + "633 age>=Body_Mass_Index-procedures_lifetime_cost+1\n", + "634 age>=sqrt(encounters_lifetime_total_cost)-medications_lifetime_length\n", + "635 age>=active_care_plans*log(encounters_lifetime_payer_coverage)\n", + "636 age>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+QALY\n", + "637 age>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)+active_care_plan_length\n", + "638 age>=e^medications_active/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "639 age>=2*immunizations_lifetime_cost/Calcium\n", + "640 age>=sqrt(Chloride)*mean_Creatinine\n", + "641 age>=sqrt(medications_lifetime_dispenses)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "642 age>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/log(10)+QALY\n", + "643 age>=High_Density_Lipoprotein_Cholesterol^2/Total_Cholesterol\n", + "644 age>=2*Carbon_Dioxide-healthcare_coverage\n", + "645 age>=2*Urea_Nitrogen/Creatinine\n", + "646 age>=(Leukocytes____volume__in_Blood_by_Automated_count^2)^QOLS\n", + "647 num_allergies<=healthcare_coverage\n", + "648 num_allergies<=floor(e^medications_active)\n", + "649 num_allergies<=active_care_plan_length\n", + "650 num_allergies<=medications_lifetime+2\n", + "651 num_allergies<=encounters_lifetime_payer_coverage\n", + "652 num_allergies<=medications_lifetime_cost\n", + "653 num_allergies<=-medications_lifetime+medications_lifetime_dispenses\n", + "654 num_allergies<=ceil(sqrt(latitude))\n", + "655 num_allergies<=active_conditions/immunizations_lifetime\n", + "656 num_allergies<=(1/procedures_lifetime_cost)^Microalbumin_Creatinine_Ratio\n", + "657 num_allergies<=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "658 num_allergies<=procedures_lifetime_cost^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "659 num_allergies<=floor(1/device_lifetime_length)\n", + "660 num_allergies<=Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered\n", + "661 num_allergies<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "662 num_allergies<=floor(1/2*active_care_plan_length)\n", + "663 num_allergies<=floor(active_care_plan_length)\n", + "664 num_allergies<=10^active_conditions\n", + "665 num_allergies<=active_conditions^active_condition_length\n", + "666 num_allergies<=device_lifetime_length/imaging_studies_lifetime\n", + "667 num_allergies<=medications_lifetime^2\n", + "668 num_allergies<=(e^medications_active)^QOLS\n", + "669 num_allergies<=healthcare_expenses*medications_active\n", + "670 num_allergies<=ceil(log(Estimated_Glomerular_Filtration_Rate)/log(10))\n", + "671 num_allergies<=Creatinine^healthcare_expenses\n", + "672 num_allergies<=ceil(Potassium)\n", + "673 num_allergies<=MCV__Entitic_volume__by_Automated_count-mean_MCV__Entitic_volume__by_Automated_count\n", + "674 num_allergies<=encounters_count-immunizations_lifetime\n", + "675 num_allergies<=maximum(medications_active,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "676 num_allergies<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^healthcare_expenses\n", + "677 num_allergies<=procedures_lifetime/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "678 num_allergies<=QOLS*healthcare_expenses\n", + "679 num_allergies<=10^DALY*medications_active\n", + "680 num_allergies<=log(Globulin__Mass_volume__in_Serum_by_calculation)^healthcare_expenses\n", + "681 num_allergies<=(procedures_lifetime-1)^Low_Density_Lipoprotein_Cholesterol\n", + "682 num_allergies<=encounters_count-lifetime_conditions+1\n", + "683 num_allergies<=10^medications_active/active_conditions\n", + "684 num_allergies<=(1/longitude)^medications_lifetime_cost\n", + "685 num_allergies<=2*medications_lifetime_cost/procedures_lifetime_cost\n", + "686 num_allergies<=-active_conditions+encounters_count+1\n", + "687 num_allergies<=imaging_studies_lifetime/device_lifetime_length\n", + "688 num_allergies<=DALY^Triglycerides\n", + "689 num_allergies<=10^medications_lifetime_dispenses*device_lifetime_length\n", + "690 num_allergies<=DALY^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "691 num_allergies<=-active_care_plan_length+lifetime_care_plan_length+1\n", + "692 num_allergies<=log(active_conditions)^Body_Height\n", + "693 num_allergies<=(1/2*immunizations_lifetime)^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "694 num_allergies<=log(encounters_count)^active_condition_length\n", + "695 num_allergies<=log(medications_active)^Body_Mass_Index\n", + "696 num_allergies<=QOLS*e^medications_active\n", + "697 num_allergies>=imaging_studies_lifetime-1\n", + "698 num_allergies>=-healthcare_coverage\n", + "699 num_allergies>=-active_care_plans\n", + "700 num_allergies>=-active_conditions\n", + "701 num_allergies>=-device_lifetime_length\n", + "702 num_allergies>=-imaging_studies_lifetime\n", + "703 num_allergies>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*active_conditions\n", + "704 num_allergies>=sqrt(Total_Cholesterol)-mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "705 num_allergies>=floor(log(lifetime_care_plans)/log(10))\n", + "706 num_allergies>=log(Microalbumin_Creatinine_Ratio)/log(10)-procedures_lifetime_cost\n", + "707 num_allergies>=-active_conditions+log(active_care_plans)\n", + "708 num_allergies>=-age+ceil(active_care_plan_length)\n", + "709 active_care_plans<=lifetime_care_plans\n", + "710 active_care_plans<=ceil(active_care_plan_length)\n", + "711 active_care_plans<=active_conditions+medications_lifetime\n", + "712 active_care_plans<=10^active_conditions\n", + "713 active_care_plans<=ceil(sqrt(active_care_plan_length))\n", + "714 active_care_plans<=floor(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "715 active_care_plans<=maximum(active_conditions,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "716 active_care_plans<=ceil(Potassium)+immunizations_lifetime_cost\n", + "717 active_care_plans<=2/imaging_studies_lifetime\n", + "718 active_care_plans<=-active_conditions+floor(Carbon_Dioxide)\n", + "719 active_care_plans<=ceil(Urea_Nitrogen)-medications_active\n", + "720 active_care_plans<=-DALY+MCHC__Mass_volume__by_Automated_count+1\n", + "721 active_care_plans<=maximum(active_conditions,10^DALY)\n", + "722 active_care_plans>=imaging_studies_lifetime\n", + "723 active_care_plans>=ceil(medications_lifetime_perc_covered)\n", + "724 active_care_plans>=minimum(lifetime_care_plans,device_lifetime_length)\n", + "725 active_care_plans>=active_care_plan_length/lifetime_care_plan_length\n", + "726 active_care_plans>=minimum(num_allergies,lifetime_care_plans)\n", + "727 active_care_plans>=floor(log(lifetime_care_plans))\n", + "728 active_care_plans>=longitude^QOLS\n", + "729 active_care_plans>=2*imaging_studies_lifetime\n", + "730 active_care_plans>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,lifetime_care_plans-1)\n", + "731 active_care_plans>=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "732 active_care_plans>=ceil(log(Estimated_Glomerular_Filtration_Rate)/log(10))\n", + "733 active_care_plans>=-encounters_lifetime_payer_coverage+lifetime_care_plans\n", + "734 active_care_plans>=(Microalbumin_Creatinine_Ratio+1)/active_condition_length\n", + "735 active_care_plans>=minimum(Albumin__Mass_volume__in_Serum,Plasma,floor(lifetime_care_plans))\n", + "736 active_care_plans>=sqrt(lifetime_care_plans)-procedures_lifetime\n", + "737 active_care_plans>=floor(1/2*medications_active)\n", + "738 active_care_plans>=minimum(lifetime_care_plans,immunizations_lifetime)\n", + "739 active_care_plans>=medications_active-2\n", + "740 active_care_plans>=-active_condition_length+num_allergies\n", + "741 active_care_plans>=lifetime_care_plans-medications_lifetime_cost\n", + "742 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-Respiratory_rate\n", + "743 active_care_plans>=minimum(lifetime_care_plans,2*num_allergies)\n", + "744 active_care_plans>=-healthcare_coverage+lifetime_care_plans\n", + "745 active_care_plans>=1/2*lifetime_care_plans/Creatinine\n", + "746 active_care_plans>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+lifetime_care_plans-1\n", + "747 active_care_plans>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,lifetime_care_plans-1)\n", + "748 active_care_plans>=lifetime_care_plans-procedures_lifetime-1\n", + "749 active_care_plans>=ceil(lifetime_care_plan_length)/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "750 active_care_plans>=log(Body_Weight)/Microalbumin_Creatinine_Ratio\n", + "751 active_care_plans>=(lifetime_care_plans-1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "752 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(medications_active)/log(10)\n", + "753 active_care_plans>=-Respiratory_rate+lifetime_conditions\n", + "754 active_care_plans>=minimum(lifetime_care_plans,device_lifetime_length^2)\n", + "755 active_care_plans>=1/2*DALY-Urea_Nitrogen\n", + "756 active_care_plans>=minimum(medications_active,lifetime_care_plans-1)\n", + "757 active_care_plans>=-Diastolic_Blood_Pressure+QALY+1\n", + "758 active_care_plans>=floor(log(medications_lifetime)/log(10))\n", + "759 active_care_plans>=-encounters_count+2*lifetime_care_plans\n", + "760 active_care_plans>=log(High_Density_Lipoprotein_Cholesterol)/(Creatinine*log(10))\n", + "761 active_care_plans>=floor(Creatinine)-1\n", + "762 active_care_plans>=Estimated_Glomerular_Filtration_Rate*log(num_allergies)/log(10)\n", + "763 active_care_plans>=minimum(lifetime_care_plans,num_allergies^2)\n", + "764 active_care_plans>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,medications_active-1)\n", + "765 active_care_plans>=-immunizations_lifetime+medications_active-1\n", + "766 active_care_plans>=minimum(lifetime_care_plans,log(DALY)/log(10))\n", + "767 active_care_plans>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime_cost-1\n", + "768 active_care_plans>=log(MCV__Entitic_volume__by_Automated_count)/log(10)-procedures_lifetime_cost\n", + "769 lifetime_care_plans<=floor(log(healthcare_expenses))\n", + "770 lifetime_care_plans<=encounters_count\n", + "771 lifetime_care_plans<=active_care_plans+procedures_lifetime+1\n", + "772 lifetime_care_plans<=-Potassium+Respiratory_rate\n", + "773 lifetime_care_plans<=floor(Urea_Nitrogen)-1\n", + "774 lifetime_care_plans<=floor(2*Potassium)\n", + "775 lifetime_care_plans<=maximum(lifetime_conditions,active_care_plans+1)\n", + "776 lifetime_care_plans<=sqrt(floor(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", + "777 lifetime_care_plans<=10^healthcare_coverage\n", + "778 lifetime_care_plans<=lifetime_conditions+medications_active\n", + "779 lifetime_care_plans<=10^active_care_plans\n", + "780 lifetime_care_plans<=2*lifetime_care_plan_length\n", + "781 lifetime_care_plans<=floor(Calcium)-1\n", + "782 lifetime_care_plans<=(active_care_plans+1)/encounters_lifetime_perc_covered\n", + "783 lifetime_care_plans<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans+1\n", + "784 lifetime_care_plans<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1)^active_care_plans\n", + "785 lifetime_care_plans<=maximum(active_care_plans,1/device_lifetime_length)\n", + "786 lifetime_care_plans<=-Body_Weight+Chloride+1\n", + "787 lifetime_care_plans<=2*Microalbumin_Creatinine_Ratio\n", + "788 lifetime_care_plans<=maximum(Sodium,1/2*Leukocytes____volume__in_Blood_by_Automated_count)\n", + "789 lifetime_care_plans<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)\n", + "790 lifetime_care_plans<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_condition_length\n", + "791 lifetime_care_plans<=(encounters_count+1)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "792 lifetime_care_plans<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions+1\n", + "793 lifetime_care_plans<=log(Polyp_size_greatest_dimension_by_CAP_cancer_protocols)^active_care_plans\n", + "794 lifetime_care_plans<=maximum(lifetime_conditions,medications_lifetime)\n", + "795 lifetime_care_plans<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Sodium\n", + "796 lifetime_care_plans<=encounters_count/immunizations_lifetime\n", + "797 lifetime_care_plans<=(active_care_plans+1)/imaging_studies_lifetime\n", + "798 lifetime_care_plans<=ceil(Hemoglobin__Mass_volume__in_Blood)*encounters_lifetime_perc_covered\n", + "799 lifetime_care_plans<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_care_plan_length\n", + "800 lifetime_care_plans<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,active_care_plans+1)\n", + "801 lifetime_care_plans<=maximum(procedures_lifetime,active_care_plans^2)\n", + "802 lifetime_care_plans<=10^DALY/medications_lifetime_perc_covered\n", + "803 lifetime_care_plans<=2*Creatinine*active_care_plans\n", + "804 lifetime_care_plans<=active_care_plans^2+procedures_lifetime\n", + "805 lifetime_care_plans<=-active_care_plan_length+2*latitude\n", + "806 lifetime_care_plans<=sqrt(medications_lifetime_cost)/Microalbumin_Creatinine_Ratio\n", + "807 lifetime_care_plans<=sqrt(active_care_plan_length)+procedures_lifetime\n", + "808 lifetime_care_plans<=ceil(sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count))\n", + "809 lifetime_care_plans<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(active_care_plan_length)\n", + "810 lifetime_care_plans<=active_care_plans+encounters_lifetime_payer_coverage\n", + "811 lifetime_care_plans<=medications_lifetime/imaging_studies_lifetime\n", + "812 lifetime_care_plans<=active_care_plans+medications_lifetime_cost\n", + "813 lifetime_care_plans<=maximum(active_care_plans,medications_lifetime_dispenses)\n", + "814 lifetime_care_plans<=maximum(active_conditions,1/medications_lifetime_perc_covered)\n", + "815 lifetime_care_plans<=maximum(DALY,Potassium)\n", + "816 lifetime_care_plans<=2*lifetime_care_plan_length/DALY\n", + "817 lifetime_care_plans<=QALY^2/age\n", + "818 lifetime_care_plans<=1/2*DALY+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "819 lifetime_care_plans<=maximum(DALY,Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)\n", + "820 lifetime_care_plans<=-Systolic_Blood_Pressure+mean_Sodium\n", + "821 lifetime_care_plans<=1/2*Respiratory_rate+1\n", + "822 lifetime_care_plans<=maximum(DALY,log(Diastolic_Blood_Pressure))\n", + "823 lifetime_care_plans<=1/2*Body_Height+longitude\n", + "824 lifetime_care_plans<=floor(2*lifetime_care_plan_length)\n", + "825 lifetime_care_plans<=log(Triglycerides)^mean_Creatinine\n", + "826 lifetime_care_plans<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+procedures_lifetime_cost\n", + "827 lifetime_care_plans<=1/num_allergies+active_condition_length\n", + "828 lifetime_care_plans<=log(Estimated_Glomerular_Filtration_Rate)^Creatinine\n", + "829 lifetime_care_plans>=active_care_plans\n", + "830 lifetime_care_plans>=ceil(log(medications_active))\n", + "831 lifetime_care_plans>=ceil(log(mean_Microalbumin_Creatinine_Ratio)/log(10))\n", + "832 lifetime_care_plans>=floor(log(encounters_count)/log(10))\n", + "833 lifetime_care_plans>=1/2*active_care_plans/active_care_plan_length\n", + "834 lifetime_care_plans>=log(MCHC__Mass_volume__by_Automated_count)*medications_lifetime_perc_covered\n", + "835 lifetime_care_plans>=-immunizations_lifetime_cost+log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "836 lifetime_care_plans>=1/2*imaging_studies_lifetime*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "837 lifetime_care_plans>=-Respiratory_rate+lifetime_conditions+1\n", + "838 lifetime_care_plans>=-active_conditions+lifetime_conditions-1\n", + "839 lifetime_care_plans>=minimum(active_care_plan_length,log(procedures_lifetime)/log(10))\n", + "840 lifetime_care_plans>=medications_active-procedures_lifetime-1\n", + "841 lifetime_care_plans>=(1/Creatinine)^Albumin__Mass_volume__in_Serum,Plasma\n", + "842 active_care_plan_length<=encounters_lifetime_perc_covered+floor(age)\n", + "843 active_care_plan_length<=lifetime_care_plan_length\n", + "844 active_care_plan_length<=High_Density_Lipoprotein_Cholesterol*mean_Creatinine\n", + "845 active_care_plan_length<=active_care_plans*healthcare_expenses\n", + "846 active_care_plan_length<=1/2*Platelets____volume__in_Blood_by_Automated_count/device_lifetime_length\n", + "847 active_care_plan_length<=active_condition_length*ceil(Creatinine)\n", + "848 active_care_plan_length<=lifetime_conditions^2+latitude\n", + "849 active_care_plan_length<=-MCHC__Mass_volume__by_Automated_count+1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "850 active_care_plan_length<=maximum(active_condition_length,Microalbumin_Creatinine_Ratio)\n", + "851 active_care_plan_length<=maximum(active_condition_length,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "852 active_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_High_Density_Lipoprotein_Cholesterol\n", + "853 active_care_plan_length<=2*Glucose/device_lifetime_length\n", + "854 active_care_plan_length<=sqrt(QALY)-longitude\n", + "855 active_care_plan_length<=age-medications_lifetime_perc_covered\n", + "856 active_care_plan_length<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+age\n", + "857 active_care_plan_length<=2*encounters_count/imaging_studies_lifetime\n", + "858 active_care_plan_length<=maximum(active_condition_length,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "859 active_care_plan_length<=active_condition_length/imaging_studies_lifetime\n", + "860 active_care_plan_length<=floor(age)+num_allergies\n", + "861 active_care_plan_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "862 active_care_plan_length<=active_condition_length+encounters_lifetime_payer_coverage\n", + "863 active_care_plan_length<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_MCHC__Mass_volume__by_Automated_count\n", + "864 active_care_plan_length<=latitude+medications_lifetime_cost+1\n", + "865 active_care_plan_length<=maximum(active_condition_length,1/2*Triglycerides)\n", + "866 active_care_plan_length<=floor(MCH__Entitic_mass__by_Automated_count)/medications_lifetime_perc_covered\n", + "867 active_care_plan_length<=(medications_lifetime_length-1)/Microalbumin_Creatinine_Ratio\n", + "868 active_care_plan_length<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*log(Heart_rate)/log(10)\n", + "869 active_care_plan_length<=Heart_rate+Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "870 active_care_plan_length<=maximum(Microalbumin_Creatinine_Ratio,Estimated_Glomerular_Filtration_Rate+1)\n", + "871 active_care_plan_length<=e^active_condition_length/lifetime_conditions\n", + "872 active_care_plan_length<=(Chloride-1)/immunizations_lifetime\n", + "873 active_care_plan_length<=QALY*log(Heart_rate)\n", + "874 active_care_plan_length<=Glucose^2/age\n", + "875 active_care_plan_length<=maximum(lifetime_condition_length,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "876 active_care_plan_length<=maximum(lifetime_condition_length,age-1)\n", + "877 active_care_plan_length<=lifetime_care_plan_length\n", + "878 active_care_plan_length<=2*sqrt(encounters_lifetime_total_cost)\n", + "879 active_care_plan_length<=minimum(Systolic_Blood_Pressure,floor(age))\n", + "880 active_care_plan_length<=age+medications_active-1\n", + "881 active_care_plan_length<=Heart_rate+ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "882 active_care_plan_length<=minimum(Triglycerides,2*lifetime_condition_length)\n", + "883 active_care_plan_length<=maximum(active_condition_length,1/device_lifetime_length)\n", + "884 active_care_plan_length<=2*medications_lifetime_length/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "885 active_care_plan_length>=num_allergies\n", + "886 active_care_plan_length>=10^imaging_studies_lifetime-1\n", + "887 active_care_plan_length>=longitude+2*procedures_lifetime\n", + "888 active_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)/Potassium\n", + "889 active_care_plan_length>=(QALY-1)/Microalbumin_Creatinine_Ratio\n", + "890 active_care_plan_length>=sqrt(High_Density_Lipoprotein_Cholesterol)-Creatinine\n", + "891 active_care_plan_length>=active_condition_length+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma-1\n", + "892 active_care_plan_length>=-Urea_Nitrogen+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "893 active_care_plan_length>=1/2*age*medications_lifetime_perc_covered\n", + "894 active_care_plan_length>=(log(Respiratory_rate)/log(10))^Urea_Nitrogen\n", + "895 active_care_plan_length>=-Body_Weight+2*DALY\n", + "896 active_care_plan_length>=2*num_allergies/encounters_lifetime_perc_covered\n", + "897 active_care_plan_length>=-Body_Mass_Index+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "898 active_care_plan_length>=(device_lifetime_length+1)*imaging_studies_lifetime\n", + "899 active_care_plan_length>=imaging_studies_lifetime*sqrt(medications_lifetime_dispenses)\n", + "900 active_care_plan_length>=age-mean_High_Density_Lipoprotein_Cholesterol+1\n", + "901 active_care_plan_length>=active_care_plans*medications_active\n", + "902 active_care_plan_length>=(lifetime_care_plans-1)/QALY\n", + "903 active_care_plan_length>=1/2*mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*num_allergies\n", + "904 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-procedures_lifetime_cost\n", + "905 active_care_plan_length>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,abs(active_condition_length))\n", + "906 active_care_plan_length>=minimum(MCH__Entitic_mass__by_Automated_count,1/2*medications_lifetime)\n", + "907 active_care_plan_length>=Microalbumin_Creatinine_Ratio*log(num_allergies)\n", + "908 active_care_plan_length>=minimum(Sodium,e^num_allergies)\n", + "909 active_care_plan_length>=sqrt(lifetime_care_plan_length)-procedures_lifetime\n", + "910 active_care_plan_length>=1/2*medications_lifetime_length/mean_Sodium\n", + "911 active_care_plan_length>=1/2*DALY*num_allergies\n", + "912 active_care_plan_length>=sqrt(lifetime_care_plan_length)-active_conditions\n", + "913 active_care_plan_length>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,medications_lifetime-1)\n", + "914 active_care_plan_length>=log(num_allergies)/log(10)+Body_Mass_Index\n", + "915 active_care_plan_length>=2*num_allergies*procedures_lifetime\n", + "916 active_care_plan_length>=-healthcare_coverage+lifetime_care_plan_length\n", + "917 active_care_plan_length>=sqrt(encounters_count)*num_allergies\n", + "918 active_care_plan_length>=(1/2*active_care_plans)^mean_Creatinine\n", + "919 active_care_plan_length>=DALY*log(device_lifetime_length)/log(10)\n", + "920 active_care_plan_length>=2*device_lifetime_length/active_care_plans\n", + "921 active_care_plan_length>=-encounters_lifetime_payer_coverage+1/2*lifetime_care_plan_length\n", + "922 active_care_plan_length>=1/2*lifetime_care_plan_length-medications_lifetime_cost\n", + "923 active_care_plan_length>=Globulin__Mass_volume__in_Serum_by_calculation^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "924 active_care_plan_length>=log(immunizations_lifetime_cost)-procedures_lifetime_cost\n", + "925 active_care_plan_length>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Urea_Nitrogen\n", + "926 active_care_plan_length>=floor(encounters_lifetime_perc_covered)*lifetime_care_plan_length\n", + "927 active_care_plan_length>=active_care_plans^2-procedures_lifetime\n", + "928 active_care_plan_length>=(immunizations_lifetime-1)*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "929 active_care_plan_length>=2*medications_lifetime_dispenses/MCV__Entitic_volume__by_Automated_count\n", + "930 active_care_plan_length>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,abs(active_condition_length))\n", + "931 active_care_plan_length>=sqrt(medications_lifetime_dispenses)*medications_lifetime_perc_covered\n", + "932 active_care_plan_length>=ceil(DALY)-mean_Creatinine\n", + "933 active_care_plan_length>=minimum(Carbon_Dioxide,-Estimated_Glomerular_Filtration_Rate)\n", + "934 active_care_plan_length>=Body_Weight-Glucose+1\n", + "935 active_care_plan_length>=-Chloride+1/2*lifetime_care_plan_length\n", + "936 active_care_plan_length>=(MCH__Entitic_mass__by_Automated_count+1)*medications_lifetime_perc_covered\n", + "937 active_care_plan_length>=log(active_care_plans)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "938 active_care_plan_length>=(Hemoglobin__Mass_volume__in_Blood-1)*device_lifetime_length\n", + "939 active_care_plan_length>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*active_care_plans\n", + "940 active_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)+longitude\n", + "941 active_care_plan_length>=Respiratory_rate*sqrt(medications_lifetime_perc_covered)\n", + "942 active_care_plan_length>=sqrt(medications_lifetime_length)+longitude\n", + "943 active_care_plan_length>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,1/2*lifetime_care_plan_length)\n", + "944 active_care_plan_length>=MCH__Entitic_mass__by_Automated_count*log(medications_active)/log(10)\n", + "945 active_care_plan_length>=e^medications_active/Chloride\n", + "946 active_care_plan_length>=active_condition_length*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "947 active_care_plan_length>=maximum(Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method,-healthcare_expenses)\n", + "948 active_care_plan_length>=medications_active^2-procedures_lifetime_cost\n", + "949 active_care_plan_length>=log(lifetime_care_plans)^Potassium\n", + "950 active_care_plan_length>=Carbon_Dioxide*log(medications_active)\n", + "951 active_care_plan_length>=sqrt(DALY)*active_care_plans\n", + "952 active_care_plan_length>=1/2*Body_Weight-latitude\n", + "953 lifetime_care_plan_length<=encounters_lifetime_total_cost\n", + "954 lifetime_care_plan_length<=(age-1)*Potassium\n", + "955 lifetime_care_plan_length<=active_condition_length^2/Potassium\n", + "956 lifetime_care_plan_length<=Body_Weight*Potassium\n", + "957 lifetime_care_plan_length<=floor(age)*lifetime_care_plans\n", + "958 lifetime_care_plan_length<=active_care_plan_length+healthcare_coverage\n", + "959 lifetime_care_plan_length<=Systolic_Blood_Pressure+e^active_conditions\n", + "960 lifetime_care_plan_length<=(active_care_plan_length+1)*lifetime_care_plans\n", + "961 lifetime_care_plan_length<=2*active_care_plan_length+encounters_lifetime_payer_coverage\n", + "962 lifetime_care_plan_length<=floor(lifetime_condition_length)/imaging_studies_lifetime\n", + "963 lifetime_care_plan_length<=mean_Microalbumin_Creatinine_Ratio+mean_Systolic_Blood_Pressure\n", + "964 lifetime_care_plan_length<=floor(encounters_lifetime_payer_coverage)/num_allergies\n", + "965 lifetime_care_plan_length<=healthcare_expenses^active_care_plans\n", + "966 lifetime_care_plan_length<=(latitude^2)^active_care_plan_length\n", + "967 lifetime_care_plan_length<=maximum(active_care_plan_length,10^lifetime_care_plans)\n", + "968 lifetime_care_plan_length<=e^active_care_plan_length/Sodium\n", + "969 lifetime_care_plan_length<=QALY^2/device_lifetime_length\n", + "970 lifetime_care_plan_length<=10^Albumin__Mass_volume__in_Serum,Plasma/DALY\n", + "971 lifetime_care_plan_length<=10^medications_active*High_Density_Lipoprotein_Cholesterol\n", + "972 lifetime_care_plan_length<=healthcare_expenses*lifetime_care_plans\n", + "973 lifetime_care_plan_length<=2*active_care_plan_length/imaging_studies_lifetime\n", + "974 lifetime_care_plan_length<=2*active_care_plan_length+medications_lifetime_cost\n", + "975 lifetime_care_plan_length<=(log(Diastolic_Blood_Pressure)/log(10))^active_care_plan_length\n", + "976 lifetime_care_plan_length<=maximum(latitude,active_condition_length^2)\n", + "977 lifetime_care_plan_length<=2*medications_lifetime_length/MCHC__Mass_volume__by_Automated_count\n", + "978 lifetime_care_plan_length<=medications_lifetime_dispenses/medications_active\n", + "979 lifetime_care_plan_length<=Body_Mass_Index*ceil(Microalbumin_Creatinine_Ratio)\n", + "980 lifetime_care_plan_length<=-Globulin__Mass_volume__in_Serum_by_calculation+e^active_conditions\n", + "981 lifetime_care_plan_length<=10^DALY*mean_MCHC__Mass_volume__by_Automated_count\n", + "982 lifetime_care_plan_length<=10^DALY+Heart_rate\n", + "983 lifetime_care_plan_length<=maximum(age,10^lifetime_care_plans)\n", + "984 lifetime_care_plan_length<=DALY*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "985 lifetime_care_plan_length<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/num_allergies\n", + "986 lifetime_care_plan_length<=Glucose*ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "987 lifetime_care_plan_length<=10^immunizations_lifetime*Total_Cholesterol\n", + "988 lifetime_care_plan_length<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Urea_Nitrogen\n", + "989 lifetime_care_plan_length<=sqrt(healthcare_expenses)/num_allergies\n", + "990 lifetime_care_plan_length<=(log(medications_lifetime_dispenses)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "991 lifetime_care_plan_length<=10^active_care_plans+active_care_plan_length\n", + "992 lifetime_care_plan_length<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "993 lifetime_care_plan_length<=(2*Glucose__Mass_volume__in_Urine_by_Test_strip)^active_care_plan_length\n", + "994 lifetime_care_plan_length<=sqrt(MCHC__Mass_volume__by_Automated_count)*QALY\n", + "995 lifetime_care_plan_length<=Body_Height^2/Diastolic_Blood_Pressure\n", + "996 lifetime_care_plan_length<=Respiratory_rate+2*lifetime_condition_length\n", + "997 lifetime_care_plan_length<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,2*lifetime_condition_length)\n", + "998 lifetime_care_plan_length<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^active_care_plans)\n", + "999 lifetime_care_plan_length<=-lifetime_care_plans*longitude\n", + "1000 lifetime_care_plan_length<=QALY^2-age\n", + "1001 lifetime_care_plan_length<=age^2/Respiratory_rate\n", + "1002 lifetime_care_plan_length<=2*age+lifetime_condition_length\n", + "1003 lifetime_care_plan_length<=10^encounters_count/Body_Mass_Index\n", + "1004 lifetime_care_plan_length<=2*encounters_lifetime_total_cost/mean_Microalbumin_Creatinine_Ratio\n", + "1005 lifetime_care_plan_length<=1/imaging_studies_lifetime+mean_Chloride\n", + "1006 lifetime_care_plan_length<=2*QALY+medications_lifetime_cost\n", + "1007 lifetime_care_plan_length<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*e^active_care_plans\n", + "1008 lifetime_care_plan_length<=1/2*medications_lifetime_dispenses/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1009 lifetime_care_plan_length<=DALY^2+Systolic_Blood_Pressure\n", + "1010 lifetime_care_plan_length<=e^Calcium/mean_Estimated_Glomerular_Filtration_Rate\n", + "1011 lifetime_care_plan_length<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "1012 lifetime_care_plan_length<=10^Leukocytes____volume__in_Blood_by_Automated_count/Body_Height\n", + "1013 lifetime_care_plan_length>=num_allergies\n", + "1014 lifetime_care_plan_length>=1/2*lifetime_care_plans\n", + "1015 lifetime_care_plan_length>=active_care_plan_length\n", + "1016 lifetime_care_plan_length>=1/2*device_lifetime_length*mean_Creatinine\n", + "1017 lifetime_care_plan_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plans\n", + "1018 lifetime_care_plan_length>=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)-procedures_lifetime_cost\n", + "1019 lifetime_care_plan_length>=10^medications_lifetime_perc_covered*mean_Potassium\n", + "1020 lifetime_care_plan_length>=e^active_care_plans/Albumin__Mass_volume__in_Serum,Plasma\n", + "1021 lifetime_care_plan_length>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*num_allergies\n", + "1022 lifetime_care_plan_length>=2*latitude/Microalbumin_Creatinine_Ratio\n", + "1023 lifetime_care_plan_length>=1/2*medications_lifetime_dispenses/mean_Urea_Nitrogen\n", + "1024 lifetime_care_plan_length>=2*medications_lifetime_dispenses/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1025 lifetime_care_plan_length>=Low_Density_Lipoprotein_Cholesterol*sqrt(num_allergies)\n", + "1026 lifetime_care_plan_length>=Chloride-procedures_lifetime_cost-1\n", + "1027 lifetime_care_plan_length>=(medications_lifetime_dispenses+1)/Carbon_Dioxide\n", + "1028 lifetime_care_plan_length>=active_care_plans*sqrt(medications_lifetime)\n", + "1029 lifetime_care_plan_length>=minimum(Glucose,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1030 lifetime_care_plan_length>=(1/2*lifetime_care_plans)^QOLS\n", + "1031 lifetime_care_plan_length>=active_care_plan_length+imaging_studies_lifetime\n", + "1032 lifetime_care_plan_length>=-Triglycerides+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1033 lifetime_care_plan_length>=encounters_count*log(medications_active)/log(10)\n", + "1034 lifetime_care_plan_length>=(active_condition_length+1)*medications_lifetime_perc_covered\n", + "1035 lifetime_care_plan_length>=active_care_plans^2*num_allergies\n", + "1036 lifetime_care_plan_length>=(DALY+1)*imaging_studies_lifetime\n", + "1037 lifetime_care_plan_length>=minimum(Glucose,procedures_lifetime^2)\n", + "1038 lifetime_care_plan_length>=2*Protein__Mass_volume__in_Serum,Plasma/Creatinine\n", + "1039 lifetime_care_plan_length>=1/2*immunizations_lifetime*mean_Microalbumin_Creatinine_Ratio\n", + "1040 lifetime_care_plan_length>=(active_care_plans-1)^mean_pH_of_Urine_by_Test_strip\n", + "1041 lifetime_care_plan_length>=1/2*DALY*active_care_plans\n", + "1042 lifetime_care_plan_length>=(DALY+1)*Creatinine\n", + "1043 lifetime_care_plan_length>=Leukocytes____volume__in_Blood_by_Automated_count*device_lifetime_length^2\n", + "1044 lifetime_care_plan_length>=sqrt(age)*num_allergies\n", + "1045 lifetime_care_plan_length>=10^log(active_care_plans)\n", + "1046 lifetime_care_plan_length>=Sodium*log(num_allergies)/log(10)\n", + "1047 lifetime_care_plan_length>=sqrt(Systolic_Blood_Pressure)*num_allergies\n", + "1048 lifetime_care_plan_length>=active_care_plan_length+num_allergies-1\n", + "1049 lifetime_care_plan_length>=log(num_allergies)*medications_lifetime/log(10)\n", + "1050 lifetime_care_plan_length>=e^active_care_plans/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1051 lifetime_care_plan_length>=lifetime_care_plans^2-age\n", + "1052 lifetime_care_plan_length>=minimum(QALY,2*device_lifetime_length)\n", + "1053 lifetime_care_plan_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_care_plans^2\n", + "1054 lifetime_care_plan_length>=floor(active_care_plan_length)+medications_lifetime_perc_covered\n", + "1055 lifetime_care_plan_length>=2*medications_lifetime_perc_covered*procedures_lifetime\n", + "1056 lifetime_care_plan_length>=2*active_care_plan_length+longitude\n", + "1057 lifetime_care_plan_length>=active_conditions^2-Protein__Mass_volume__in_Serum,Plasma\n", + "1058 lifetime_care_plan_length>=-Body_Height+1/2*lifetime_condition_length\n", + "1059 lifetime_care_plan_length>=floor(Body_Weight)/Microalbumin_Creatinine_Ratio\n", + "1060 lifetime_care_plan_length>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Creatinine\n", + "1061 lifetime_care_plan_length>=minimum(mean_Chloride,1/2*encounters_count)\n", + "1062 lifetime_care_plan_length>=sqrt(encounters_lifetime_total_cost)-encounters_lifetime_payer_coverage\n", + "1063 lifetime_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-MCH__Entitic_mass__by_Automated_count\n", + "1064 lifetime_care_plan_length>=10^immunizations_lifetime-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1065 lifetime_care_plan_length>=-encounters_lifetime_total_cost+1/2*medications_lifetime_dispenses\n", + "1066 lifetime_care_plan_length>=e^medications_active/Carbon_Dioxide\n", + "1067 active_conditions<=lifetime_conditions\n", + "1068 active_conditions<=floor(lifetime_condition_length)\n", + "1069 active_conditions<=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "1070 active_conditions<=ceil(Estimated_Glomerular_Filtration_Rate)\n", + "1071 active_conditions<=2*floor(mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1072 active_conditions<=10^(1/imaging_studies_lifetime)\n", + "1073 active_conditions<=2*age/lifetime_care_plans\n", + "1074 active_conditions<=medications_active^2+Respiratory_rate\n", + "1075 active_conditions<=maximum(procedures_lifetime,floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "1076 active_conditions<=2*Calcium+2\n", + "1077 active_conditions<=Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*encounters_count\n", + "1078 active_conditions<=10^floor(Microalbumin_Creatinine_Ratio)\n", + "1079 active_conditions<=maximum(encounters_count,log(healthcare_expenses)/log(10))\n", + "1080 active_conditions<=minimum(healthcare_expenses,Polyp_size_greatest_dimension_by_CAP_cancer_protocols)\n", + "1081 active_conditions<=10^healthcare_coverage+1\n", + "1082 active_conditions<=10^active_care_plans+DALY\n", + "1083 active_conditions<=active_care_plans+mean_Urea_Nitrogen+1\n", + "1084 active_conditions<=ceil(lifetime_care_plan_length)^Sodium\n", + "1085 active_conditions<=1/medications_lifetime+medications_lifetime_dispenses\n", + "1086 active_conditions<=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^lifetime_conditions\n", + "1087 active_conditions>=imaging_studies_lifetime\n", + "1088 active_conditions>=minimum(DALY,sqrt(lifetime_conditions))\n", + "1089 active_conditions>=(active_care_plans-1)/mean_Creatinine\n", + "1090 active_conditions>=-lifetime_care_plans+lifetime_conditions-1\n", + "1091 active_conditions>=-encounters_count+1/2*procedures_lifetime\n", + "1092 active_conditions>=minimum(num_allergies,lifetime_conditions)\n", + "1093 active_conditions>=active_condition_length/lifetime_condition_length\n", + "1094 active_conditions>=minimum(lifetime_conditions,device_lifetime_length)\n", + "1095 active_conditions>=(active_care_plans+1)*imaging_studies_lifetime\n", + "1096 active_conditions>=immunizations_lifetime-1\n", + "1097 active_conditions>=2*ceil(medications_lifetime_perc_covered)\n", + "1098 active_conditions>=ceil(log(lifetime_conditions))\n", + "1099 active_conditions>=ceil(Creatinine)\n", + "1100 active_conditions>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(medications_lifetime_perc_covered)\n", + "1101 active_conditions>=2*floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1102 active_conditions>=lifetime_conditions-medications_lifetime_cost-1\n", + "1103 active_conditions>=Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1104 active_conditions>=sqrt(Estimated_Glomerular_Filtration_Rate)/Creatinine\n", + "1105 active_conditions>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+lifetime_conditions+1\n", + "1106 active_conditions>=-Heart_rate+ceil(active_care_plan_length)\n", + "1107 active_conditions>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,lifetime_conditions-1)\n", + "1108 active_conditions>=lifetime_conditions*medications_lifetime_perc_covered\n", + "1109 active_conditions>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,lifetime_conditions-1)\n", + "1110 active_conditions>=(Respiratory_rate-1)/Microalbumin_Creatinine_Ratio\n", + "1111 active_conditions>=lifetime_conditions-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "1112 active_conditions>=-Heart_rate+active_condition_length+1\n", + "1113 active_conditions>=active_care_plans-medications_lifetime\n", + "1114 active_conditions>=active_care_plans-medications_active\n", + "1115 active_conditions>=minimum(Triglycerides,medications_active-1)\n", + "1116 active_conditions>=Hemoglobin__Mass_volume__in_Blood*log(immunizations_lifetime)/log(10)\n", + "1117 active_conditions>=active_care_plan_length+longitude+1\n", + "1118 active_conditions>=floor(log(DALY))\n", + "1119 active_conditions>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-QALY\n", + "1120 active_conditions>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,floor(lifetime_conditions))\n", + "1121 active_conditions>=log(medications_lifetime)-medications_active\n", + "1122 active_conditions>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)+medications_active\n", + "1123 active_conditions>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+1\n", + "1124 active_conditions>=minimum(lifetime_conditions,immunizations_lifetime)\n", + "1125 active_conditions>=lifetime_conditions-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "1126 active_conditions>=minimum(Estimated_Glomerular_Filtration_Rate,2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1127 active_conditions>=sqrt(encounters_lifetime_total_cost)/mean_Estimated_Glomerular_Filtration_Rate\n", + "1128 active_conditions>=medications_lifetime^Total_score__MMSE_\n", + "1129 active_conditions>=minimum(lifetime_conditions,sqrt(DALY))\n", + "1130 active_conditions>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1131 active_conditions>=maximum(active_care_plans,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1132 active_conditions>=-Chloride+Glucose-1\n", + "1133 active_conditions>=minimum(active_care_plan_length,sqrt(lifetime_conditions))\n", + "1134 active_conditions>=ceil(Calcium)-immunizations_lifetime_cost\n", + "1135 active_conditions>=sqrt(lifetime_condition_length)-Urea_Nitrogen\n", + "1136 active_conditions>=maximum(Polyp_size_greatest_dimension_by_CAP_cancer_protocols,mean_Creatinine)\n", + "1137 active_conditions>=floor(sqrt(mean_Estimated_Glomerular_Filtration_Rate))\n", + "1138 active_conditions>=minimum(lifetime_conditions,active_care_plans-1)\n", + "1139 active_conditions>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(Calcium)\n", + "1140 active_conditions>=minimum(lifetime_conditions,device_lifetime_length^2)\n", + "1141 active_conditions>=(2*encounters_lifetime_perc_covered)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1142 active_conditions>=-Diastolic_Blood_Pressure+floor(age)\n", + "1143 active_conditions>=minimum(lifetime_conditions,2*num_allergies)\n", + "1144 active_conditions>=minimum(medications_active,lifetime_conditions-1)\n", + "1145 active_conditions>=minimum(medications_lifetime,1/2*lifetime_conditions)\n", + "1146 active_conditions>=2*imaging_studies_lifetime/QOLS\n", + "1147 active_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*ceil(medications_lifetime_perc_covered)\n", + "1148 active_conditions>=Creatinine^2-mean_Calcium\n", + "1149 active_conditions>=sqrt(Glucose)-immunizations_lifetime_cost\n", + "1150 lifetime_conditions<=log(healthcare_expenses)+procedures_lifetime_cost\n", + "1151 lifetime_conditions<=floor(QALY)\n", + "1152 lifetime_conditions<=encounters_lifetime_total_cost\n", + "1153 lifetime_conditions<=active_conditions^2+1\n", + "1154 lifetime_conditions<=Respiratory_rate+active_care_plans\n", + "1155 lifetime_conditions<=ceil(2*mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1156 lifetime_conditions<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(Urea_Nitrogen))\n", + "1157 lifetime_conditions<=active_conditions+ceil(Creatinine)\n", + "1158 lifetime_conditions<=10^active_conditions\n", + "1159 lifetime_conditions<=active_conditions+lifetime_care_plans+1\n", + "1160 lifetime_conditions<=floor(e^active_conditions)\n", + "1161 lifetime_conditions<=encounters_count^2\n", + "1162 lifetime_conditions<=encounters_count+1\n", + "1163 lifetime_conditions<=active_conditions/medications_lifetime_perc_covered\n", + "1164 lifetime_conditions<=floor(Potassium^2)\n", + "1165 lifetime_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,active_conditions+1)\n", + "1166 lifetime_conditions<=floor(e^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1167 lifetime_conditions<=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)\n", + "1168 lifetime_conditions<=floor(1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1169 lifetime_conditions<=ceil(Estimated_Glomerular_Filtration_Rate+1)\n", + "1170 lifetime_conditions<=maximum(active_conditions,1/device_lifetime_length)\n", + "1171 lifetime_conditions<=10^Creatinine/num_allergies\n", + "1172 lifetime_conditions<=maximum(active_conditions,2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "1173 lifetime_conditions<=floor(Urea_Nitrogen)+procedures_lifetime_cost\n", + "1174 lifetime_conditions<=active_condition_length/num_allergies\n", + "1175 lifetime_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(encounters_count))\n", + "1176 lifetime_conditions<=active_condition_length/immunizations_lifetime\n", + "1177 lifetime_conditions<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_conditions+1)\n", + "1178 lifetime_conditions<=floor(active_condition_length)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1179 lifetime_conditions<=active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "1180 lifetime_conditions<=lifetime_condition_length^2/active_care_plan_length\n", + "1181 lifetime_conditions<=minimum(Heart_rate,active_conditions^2)\n", + "1182 lifetime_conditions<=encounters_count+healthcare_coverage\n", + "1183 lifetime_conditions<=active_care_plans+encounters_count\n", + "1184 lifetime_conditions<=maximum(active_care_plan_length,encounters_count)\n", + "1185 lifetime_conditions<=encounters_count^active_conditions\n", + "1186 lifetime_conditions<=encounters_count/imaging_studies_lifetime\n", + "1187 lifetime_conditions<=Body_Mass_Index-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1188 lifetime_conditions<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+encounters_count-1\n", + "1189 lifetime_conditions<=1/2*lifetime_condition_length/num_allergies\n", + "1190 lifetime_conditions<=active_conditions+medications_lifetime_cost+1\n", + "1191 lifetime_conditions<=encounters_lifetime_perc_covered^longitude\n", + "1192 lifetime_conditions<=(active_care_plan_length-1)^High_Density_Lipoprotein_Cholesterol\n", + "1193 lifetime_conditions<=Respiratory_rate+procedures_lifetime_cost-1\n", + "1194 lifetime_conditions<=Respiratory_rate/imaging_studies_lifetime\n", + "1195 lifetime_conditions<=1/2*lifetime_care_plan_length/num_allergies\n", + "1196 lifetime_conditions<=10^(2*Creatinine)\n", + "1197 lifetime_conditions<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "1198 lifetime_conditions<=active_conditions^2+encounters_lifetime_payer_coverage\n", + "1199 lifetime_conditions<=Bilirubin_total__Mass_volume__in_Serum,Plasma*sqrt(encounters_lifetime_payer_coverage)\n", + "1200 lifetime_conditions<=(log(MCH__Entitic_mass__by_Automated_count)/log(10))^active_conditions\n", + "1201 lifetime_conditions<=10^active_care_plans-Potassium\n", + "1202 lifetime_conditions<=active_care_plans^2+Urea_Nitrogen\n", + "1203 lifetime_conditions<=minimum(Protein__Mass_volume__in_Serum,Plasma,active_care_plans^2)\n", + "1204 lifetime_conditions<=Calcium+Microalbumin_Creatinine_Ratio\n", + "1205 lifetime_conditions<=maximum(active_conditions,1/2*QALY)\n", + "1206 lifetime_conditions<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/MCH__Entitic_mass__by_Automated_count\n", + "1207 lifetime_conditions<=ceil(2*lifetime_condition_length)\n", + "1208 lifetime_conditions<=maximum(medications_lifetime_length,active_conditions+1)\n", + "1209 lifetime_conditions<=lifetime_care_plan_length+log(Body_Height)\n", + "1210 lifetime_conditions<=encounters_count-num_allergies+1\n", + "1211 lifetime_conditions<=maximum(encounters_count,log(healthcare_coverage))\n", + "1212 lifetime_conditions<=1/2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*encounters_lifetime_perc_covered\n", + "1213 lifetime_conditions<=maximum(encounters_count,sqrt(age))\n", + "1214 lifetime_conditions<=2*age-latitude\n", + "1215 lifetime_conditions<=1/medications_lifetime_perc_covered+medications_lifetime\n", + "1216 lifetime_conditions<=2*QALY/Creatinine\n", + "1217 lifetime_conditions<=(log(Heart_rate)/log(10))^active_conditions\n", + "1218 lifetime_conditions<=(log(Body_Mass_Index)/log(10))^Calcium\n", + "1219 lifetime_conditions<=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^active_conditions\n", + "1220 lifetime_conditions>=active_conditions\n", + "1221 lifetime_conditions>=encounters_count-healthcare_coverage\n", + "1222 lifetime_conditions>=(lifetime_condition_length-1)/active_condition_length\n", + "1223 lifetime_conditions>=lifetime_care_plans-medications_lifetime\n", + "1224 lifetime_conditions>=maximum(lifetime_care_plans,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1225 lifetime_conditions>=(num_allergies-1)*Creatinine\n", + "1226 lifetime_conditions>=minimum(QOLS,ceil(lifetime_condition_length))\n", + "1227 lifetime_conditions>=-Estimated_Glomerular_Filtration_Rate+mean_Body_Mass_Index\n", + "1228 lifetime_conditions>=active_conditions^2/Estimated_Glomerular_Filtration_Rate\n", + "1229 lifetime_conditions>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-immunizations_lifetime_cost+1\n", + "1230 lifetime_conditions>=ceil(DALY)-mean_Microalbumin_Creatinine_Ratio\n", + "1231 lifetime_conditions>=(Estimated_Glomerular_Filtration_Rate+1)/Urea_Nitrogen\n", + "1232 lifetime_conditions>=e^active_care_plans/Sodium\n", + "1233 lifetime_conditions>=(active_care_plans-1)*immunizations_lifetime\n", + "1234 lifetime_conditions>=log(medications_lifetime_cost)-medications_lifetime_length\n", + "1235 lifetime_conditions>=encounters_count-medications_lifetime_cost-1\n", + "1236 lifetime_conditions>=-lifetime_care_plan_length+log(encounters_count)\n", + "1237 lifetime_conditions>=log(encounters_count)-medications_active\n", + "1238 lifetime_conditions>=(2*encounters_lifetime_perc_covered)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1239 lifetime_conditions>=Diastolic_Blood_Pressure-mean_Diastolic_Blood_Pressure-1\n", + "1240 lifetime_conditions>=1/2*Body_Mass_Index-Respiratory_rate\n", + "1241 lifetime_conditions>=Glucose-mean_Chloride-1\n", + "1242 lifetime_conditions>=-Heart_rate+floor(Estimated_Glomerular_Filtration_Rate)\n", + "1243 active_condition_length<=floor(age)\n", + "1244 active_condition_length<=lifetime_condition_length\n", + "1245 active_condition_length<=2*Microalbumin_Creatinine_Ratio+immunizations_lifetime_cost\n", + "1246 active_condition_length<=active_conditions*healthcare_expenses\n", + "1247 active_condition_length<=floor(High_Density_Lipoprotein_Cholesterol)+mean_Estimated_Glomerular_Filtration_Rate\n", + "1248 active_condition_length<=active_care_plan_length-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+1\n", + "1249 active_condition_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*mean_Calcium\n", + "1250 active_condition_length<=-MCHC__Mass_volume__by_Automated_count+1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1251 active_condition_length<=maximum(active_care_plan_length,2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1252 active_condition_length<=maximum(active_care_plan_length,e^Microalbumin_Creatinine_Ratio)\n", + "1253 active_condition_length<=sqrt(healthcare_coverage-1)\n", + "1254 active_condition_length<=(healthcare_coverage-1)/Low_Density_Lipoprotein_Cholesterol\n", + "1255 active_condition_length<=active_care_plan_length+mean_Estimated_Glomerular_Filtration_Rate+1\n", + "1256 active_condition_length<=active_care_plan_length+healthcare_coverage\n", + "1257 active_condition_length<=age-imaging_studies_lifetime\n", + "1258 active_condition_length<=Platelets____volume__in_Blood_by_Automated_count-Systolic_Blood_Pressure\n", + "1259 active_condition_length<=active_care_plan_length/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1260 active_condition_length<=floor(lifetime_care_plan_length)/medications_lifetime_perc_covered\n", + "1261 active_condition_length<=Glucose-active_care_plans\n", + "1262 active_condition_length<=-device_lifetime_length+lifetime_condition_length\n", + "1263 active_condition_length<=-Urea_Nitrogen+lifetime_condition_length-1\n", + "1264 active_condition_length<=(encounters_lifetime_total_cost-1)/Calcium\n", + "1265 active_condition_length<=(Hemoglobin__Mass_volume__in_Blood-1)*active_conditions\n", + "1266 active_condition_length<=immunizations_lifetime_cost-longitude-1\n", + "1267 active_condition_length<=-active_conditions+lifetime_condition_length+1\n", + "1268 active_condition_length<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma+active_care_plan_length\n", + "1269 active_condition_length<=2*Carbon_Dioxide/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1270 active_condition_length<=lifetime_conditions^2+latitude\n", + "1271 active_condition_length<=(encounters_count-1)*Hemoglobin__Mass_volume__in_Blood\n", + "1272 active_condition_length<=1/2*Triglycerides+active_conditions\n", + "1273 active_condition_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^mean_Potassium\n", + "1274 active_condition_length<=(Systolic_Blood_Pressure-1)/immunizations_lifetime\n", + "1275 active_condition_length<=DALY^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "1276 active_condition_length<=1/num_allergies+mean_High_Density_Lipoprotein_Cholesterol\n", + "1277 active_condition_length<=Hemoglobin__Mass_volume__in_Blood+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "1278 active_condition_length<=2*encounters_lifetime_total_cost/Estimated_Glomerular_Filtration_Rate\n", + "1279 active_condition_length<=Total_Cholesterol-mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "1280 active_condition_length<=2*DALY+Heart_rate\n", + "1281 active_condition_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/procedures_lifetime\n", + "1282 active_condition_length<=minimum(Triglycerides,age-1)\n", + "1283 active_condition_length<=ceil(active_care_plan_length)^Sodium\n", + "1284 active_condition_length<=maximum(latitude,e^encounters_count)\n", + "1285 active_condition_length<=encounters_count+e^Potassium\n", + "1286 active_condition_length<=2*Total_Cholesterol-immunizations_lifetime_cost\n", + "1287 active_condition_length<=1/2*Chloride*active_care_plans\n", + "1288 active_condition_length<=Body_Mass_Index+e^active_conditions\n", + "1289 active_condition_length<=QALY+1/2*encounters_lifetime_payer_coverage\n", + "1290 active_condition_length<=age+medications_lifetime-1\n", + "1291 active_condition_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+age-1\n", + "1292 active_condition_length<=2*Body_Weight/num_allergies\n", + "1293 active_condition_length<=2*age-procedures_lifetime\n", + "1294 active_condition_length<=2*Body_Mass_Index+active_care_plan_length\n", + "1295 active_condition_length<=1/num_allergies+active_care_plan_length\n", + "1296 active_condition_length<=(active_conditions+1)*Respiratory_rate\n", + "1297 active_condition_length<=1/2*lifetime_condition_length/medications_lifetime_perc_covered\n", + "1298 active_condition_length<=QOLS+floor(lifetime_condition_length)\n", + "1299 active_condition_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(QALY)\n", + "1300 active_condition_length<=lifetime_condition_length-num_allergies+1\n", + "1301 active_condition_length<=medications_lifetime^2/medications_lifetime_perc_covered\n", + "1302 active_condition_length<=Body_Mass_Index*log(QALY)\n", + "1303 active_condition_length<=2*medications_lifetime_length/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1304 active_condition_length<=2*MCV__Entitic_volume__by_Automated_count-encounters_count\n", + "1305 active_condition_length<=QALY^2/device_lifetime_length\n", + "1306 active_condition_length<=10^DALY*QALY\n", + "1307 active_condition_length<=(2*Low_Density_Lipoprotein_Cholesterol)^Creatinine\n", + "1308 active_condition_length<=sqrt(Urea_Nitrogen)^Potassium\n", + "1309 active_condition_length<=log(Globulin__Mass_volume__in_Serum_by_calculation)/log(10)+active_care_plan_length\n", + "1310 active_condition_length>=device_lifetime_length\n", + "1311 active_condition_length>=(lifetime_condition_length-1)/lifetime_conditions\n", + "1312 active_condition_length>=log(lifetime_condition_length)*num_allergies\n", + "1313 active_condition_length>=e^Calcium/encounters_lifetime_total_cost\n", + "1314 active_condition_length>=1/2*mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*num_allergies\n", + "1315 active_condition_length>=log(lifetime_condition_length)*medications_active\n", + "1316 active_condition_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1317 active_condition_length>=QALY*log(num_allergies)/log(10)\n", + "1318 active_condition_length>=minimum(active_care_plan_length,2*active_conditions)\n", + "1319 active_condition_length>=active_care_plan_length*imaging_studies_lifetime\n", + "1320 active_condition_length>=active_care_plan_length^2/Triglycerides\n", + "1321 active_condition_length>=log(procedures_lifetime)/log(10)-1\n", + "1322 active_condition_length>=ceil(age)-mean_Estimated_Glomerular_Filtration_Rate\n", + "1323 active_condition_length>=-Albumin__Mass_volume__in_Serum,Plasma+1/2*Glucose\n", + "1324 active_condition_length>=active_care_plan_length*floor(encounters_lifetime_perc_covered)\n", + "1325 active_condition_length>=e^lifetime_care_plans/Microalbumin_Creatinine_Ratio\n", + "1326 active_condition_length>=2*Glucose-Total_Cholesterol\n", + "1327 active_condition_length>=active_care_plan_length-encounters_lifetime_payer_coverage\n", + "1328 active_condition_length>=2*QALY-mean_Glucose\n", + "1329 active_condition_length>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*encounters_count\n", + "1330 active_condition_length>=active_care_plan_length-medications_lifetime_cost\n", + "1331 active_condition_length>=age*medications_lifetime_perc_covered^2\n", + "1332 active_condition_length>=minimum(active_care_plan_length,device_lifetime_length^2)\n", + "1333 active_condition_length>=2*medications_lifetime_dispenses-medications_lifetime_length\n", + "1334 active_condition_length>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,abs(active_care_plan_length))\n", + "1335 active_condition_length>=active_care_plan_length-healthcare_coverage\n", + "1336 active_condition_length>=1/2*active_care_plan_length/Creatinine\n", + "1337 active_condition_length>=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*medications_active\n", + "1338 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-procedures_lifetime_cost\n", + "1339 active_condition_length>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,abs(active_care_plan_length))\n", + "1340 active_condition_length>=1/2*Estimated_Glomerular_Filtration_Rate-medications_lifetime\n", + "1341 active_condition_length>=(log(Sodium)/log(10))^mean_Creatinine\n", + "1342 active_condition_length>=(active_care_plan_length+1)*medications_lifetime_perc_covered\n", + "1343 active_condition_length>=lifetime_care_plans*log(DALY)\n", + "1344 active_condition_length>=longitude+2*procedures_lifetime\n", + "1345 active_condition_length>=log(DALY)+mean_DALY\n", + "1346 active_condition_length>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*log(encounters_count)/log(10)\n", + "1347 active_condition_length>=1/2*Respiratory_rate*mean_Creatinine\n", + "1348 active_condition_length>=sqrt(Body_Weight)-procedures_lifetime_cost\n", + "1349 active_condition_length>=log(lifetime_care_plan_length)*mean_Urea_Nitrogen/log(10)\n", + "1350 active_condition_length>=minimum(Carbon_Dioxide,abs(active_care_plan_length))\n", + "1351 active_condition_length>=MCV__Entitic_volume__by_Automated_count*log(device_lifetime_length)/log(10)\n", + "1352 active_condition_length>=Protein__Mass_volume__in_Serum,Plasma-mean_Carbon_Dioxide+1\n", + "1353 active_condition_length>=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime_cost+1\n", + "1354 active_condition_length>=-Creatinine+e^num_allergies\n", + "1355 active_condition_length>=-Urea_Nitrogen+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1356 active_condition_length>=(Protein__Mass_volume__in_Serum,Plasma+1)*medications_lifetime_perc_covered\n", + "1357 active_condition_length>=-Leukocytes____volume__in_Blood_by_Automated_count+1/2*encounters_count\n", + "1358 active_condition_length>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1359 active_condition_length>=medications_active^2/Creatinine\n", + "1360 active_condition_length>=2*DALY*imaging_studies_lifetime\n", + "1361 active_condition_length>=minimum(Hemoglobin__Mass_volume__in_Blood,1/2*lifetime_condition_length)\n", + "1362 active_condition_length>=maximum(Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method,-healthcare_expenses)\n", + "1363 active_condition_length>=sqrt(Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1364 active_condition_length>=minimum(lifetime_condition_length,2*medications_active)\n", + "1365 active_condition_length>=log(Body_Height)*num_allergies\n", + "1366 active_condition_length>=-Body_Height+1/2*Platelets____volume__in_Blood_by_Automated_count\n", + "1367 active_condition_length>=Triglycerides*log(num_allergies)/log(10)\n", + "1368 active_condition_length>=age^2/mean_Sodium\n", + "1369 active_condition_length>=log(active_care_plans)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1370 active_condition_length>=Leukocytes____volume__in_Blood_by_Automated_count^2+longitude\n", + "1371 active_condition_length>=DALY*log(active_conditions)/log(10)\n", + "1372 lifetime_condition_length<=encounters_lifetime_total_cost\n", + "1373 lifetime_condition_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_Hemoglobin__Mass_volume__in_Blood+1\n", + "1374 lifetime_condition_length<=1/2*Leukocytes____volume__in_Blood_by_Automated_count*Systolic_Blood_Pressure\n", + "1375 lifetime_condition_length<=Urea_Nitrogen*ceil(active_condition_length)\n", + "1376 lifetime_condition_length<=floor(age)*lifetime_conditions\n", + "1377 lifetime_condition_length<=maximum(encounters_lifetime_payer_coverage,2*latitude)\n", + "1378 lifetime_condition_length<=Carbon_Dioxide^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "1379 lifetime_condition_length<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*medications_lifetime_dispenses\n", + "1380 lifetime_condition_length<=-Estimated_Glomerular_Filtration_Rate+1/2*medications_lifetime_length\n", + "1381 lifetime_condition_length<=healthcare_expenses^active_conditions\n", + "1382 lifetime_condition_length<=10^active_condition_length+1\n", + "1383 lifetime_condition_length<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)^active_conditions\n", + "1384 lifetime_condition_length<=(active_conditions+1)*latitude\n", + "1385 lifetime_condition_length<=2*medications_lifetime_dispenses/medications_active\n", + "1386 lifetime_condition_length<=sqrt(MCV__Entitic_volume__by_Automated_count)^active_conditions\n", + "1387 lifetime_condition_length<=e^Urea_Nitrogen/active_conditions\n", + "1388 lifetime_condition_length<=maximum(active_condition_length,10^lifetime_conditions)\n", + "1389 lifetime_condition_length<=healthcare_expenses*lifetime_conditions\n", + "1390 lifetime_condition_length<=(active_condition_length+1)*lifetime_conditions\n", + "1391 lifetime_condition_length<=1/2*medications_lifetime_dispenses/num_allergies\n", + "1392 lifetime_condition_length<=Diastolic_Blood_Pressure+1/2*encounters_lifetime_payer_coverage\n", + "1393 lifetime_condition_length<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*active_conditions^2\n", + "1394 lifetime_condition_length<=maximum(medications_lifetime_dispenses,1/device_lifetime_length)\n", + "1395 lifetime_condition_length<=10^encounters_count/Hemoglobin__Mass_volume__in_Blood\n", + "1396 lifetime_condition_length<=10^lifetime_care_plans+mean_Microalbumin_Creatinine_Ratio\n", + "1397 lifetime_condition_length<=2*DALY*mean_Estimated_Glomerular_Filtration_Rate\n", + "1398 lifetime_condition_length<=1/2*Low_Density_Lipoprotein_Cholesterol*lifetime_conditions\n", + "1399 lifetime_condition_length<=(log(Respiratory_rate)/log(10))^mean_Diastolic_Blood_Pressure\n", + "1400 lifetime_condition_length<=Respiratory_rate*e^active_conditions\n", + "1401 lifetime_condition_length<=Systolic_Blood_Pressure+e^active_conditions\n", + "1402 lifetime_condition_length<=(active_condition_length+1)^lifetime_conditions\n", + "1403 lifetime_condition_length<=(DALY+1)*mean_MCV__Entitic_volume__by_Automated_count\n", + "1404 lifetime_condition_length<=Chloride+e^active_conditions\n", + "1405 lifetime_condition_length<=10^active_care_plans-Globulin__Mass_volume__in_Serum_by_calculation\n", + "1406 lifetime_condition_length<=(encounters_count-1)*Diastolic_Blood_Pressure\n", + "1407 lifetime_condition_length<=(Carbon_Dioxide+1)^2\n", + "1408 lifetime_condition_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/QOLS\n", + "1409 lifetime_condition_length<=sqrt(healthcare_expenses)-active_conditions\n", + "1410 lifetime_condition_length<=10^Leukocytes____volume__in_Blood_by_Automated_count/medications_lifetime\n", + "1411 lifetime_condition_length<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/encounters_count\n", + "1412 lifetime_condition_length<=maximum(medications_lifetime,10^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1413 lifetime_condition_length<=(Body_Mass_Index+1)^Microalbumin_Creatinine_Ratio\n", + "1414 lifetime_condition_length<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*Sodium\n", + "1415 lifetime_condition_length<=10^DALY+Triglycerides\n", + "1416 lifetime_condition_length<=Body_Mass_Index^2-age\n", + "1417 lifetime_condition_length<=2*medications_lifetime_dispenses/imaging_studies_lifetime\n", + "1418 lifetime_condition_length<=sqrt(active_care_plan_length)^mean_Potassium\n", + "1419 lifetime_condition_length<=High_Density_Lipoprotein_Cholesterol^2*encounters_lifetime_perc_covered\n", + "1420 lifetime_condition_length<=2*Sodium/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1421 lifetime_condition_length<=Respiratory_rate^2+medications_lifetime_cost\n", + "1422 lifetime_condition_length<=active_care_plan_length^2/medications_lifetime_perc_covered\n", + "1423 lifetime_condition_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/medications_active\n", + "1424 lifetime_condition_length<=Body_Weight+1/2*encounters_lifetime_payer_coverage\n", + "1425 lifetime_condition_length<=2*Creatinine*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1426 lifetime_condition_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/active_care_plans\n", + "1427 lifetime_condition_length<=sqrt(healthcare_expenses)/num_allergies\n", + "1428 lifetime_condition_length<=10^medications_lifetime+Triglycerides\n", + "1429 lifetime_condition_length<=active_condition_length^2/medications_active\n", + "1430 lifetime_condition_length<=(log(Body_Mass_Index)/log(10))^active_condition_length\n", + "1431 lifetime_condition_length<=e^medications_lifetime/medications_lifetime_perc_covered\n", + "1432 lifetime_condition_length<=1/medications_lifetime_length+medications_lifetime_cost\n", + "1433 lifetime_condition_length<=age*log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "1434 lifetime_condition_length<=10^medications_lifetime_length/medications_lifetime\n", + "1435 lifetime_condition_length<=2*QALY+encounters_lifetime_payer_coverage\n", + "1436 lifetime_condition_length<=10^DALY*Systolic_Blood_Pressure\n", + "1437 lifetime_condition_length<=Body_Height+e^DALY\n", + "1438 lifetime_condition_length<=(High_Density_Lipoprotein_Cholesterol+1)*active_conditions\n", + "1439 lifetime_condition_length>=active_conditions\n", + "1440 lifetime_condition_length>=active_condition_length\n", + "1441 lifetime_condition_length>=Carbon_Dioxide+1/2*lifetime_care_plan_length\n", + "1442 lifetime_condition_length>=Calcium+encounters_count-1\n", + "1443 lifetime_condition_length>=active_condition_length^2/latitude\n", + "1444 lifetime_condition_length>=1/2*DALY*active_conditions\n", + "1445 lifetime_condition_length>=(active_care_plans-1)*Carbon_Dioxide\n", + "1446 lifetime_condition_length>=Chloride*log(num_allergies)\n", + "1447 lifetime_condition_length>=(High_Density_Lipoprotein_Cholesterol+1)/Creatinine\n", + "1448 lifetime_condition_length>=log(device_lifetime_length)+mean_Triglycerides\n", + "1449 lifetime_condition_length>=active_care_plans*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1450 lifetime_condition_length>=2*mean_Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "1451 lifetime_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_active^2\n", + "1452 lifetime_condition_length>=1/2*age/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1453 lifetime_condition_length>=Body_Mass_Index*log(lifetime_conditions)/log(10)\n", + "1454 lifetime_condition_length>=minimum(Chloride,DALY^2)\n", + "1455 lifetime_condition_length>=-Chloride+lifetime_care_plan_length+1\n", + "1456 lifetime_condition_length>=Respiratory_rate^2/Microalbumin_Creatinine_Ratio\n", + "1457 lifetime_condition_length>=10^medications_active/Microalbumin_Creatinine_Ratio\n", + "1458 lifetime_condition_length>=sqrt(encounters_lifetime_payer_coverage)-Hemoglobin__Mass_volume__in_Blood\n", + "1459 lifetime_condition_length>=Microalbumin_Creatinine_Ratio^2/mean_Glucose\n", + "1460 lifetime_condition_length>=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-longitude\n", + "1461 lifetime_condition_length>=active_conditions*log(medications_lifetime_dispenses)/log(10)\n", + "1462 lifetime_condition_length>=2*active_care_plan_length-healthcare_coverage\n", + "1463 lifetime_condition_length>=1/2*medications_lifetime_dispenses/Leukocytes____volume__in_Blood_by_Automated_count\n", + "1464 lifetime_condition_length>=age^2/mean_Estimated_Glomerular_Filtration_Rate\n", + "1465 lifetime_condition_length>=log(encounters_lifetime_total_cost)*mean_Potassium\n", + "1466 lifetime_condition_length>=log(Erythrocytes____volume__in_Blood_by_Automated_count)*medications_lifetime\n", + "1467 lifetime_condition_length>=(age+1)*imaging_studies_lifetime\n", + "1468 lifetime_condition_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(Urea_Nitrogen)\n", + "1469 lifetime_condition_length>=10^num_allergies/Albumin__Mass_volume__in_Serum,Plasma\n", + "1470 lifetime_condition_length>=1/2*Microalbumin_Creatinine_Ratio*active_care_plans\n", + "1471 lifetime_condition_length>=2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*device_lifetime_length\n", + "1472 lifetime_condition_length>=lifetime_conditions^2-Triglycerides\n", + "1473 lifetime_condition_length>=sqrt(encounters_lifetime_total_cost)*medications_lifetime_perc_covered\n", + "1474 lifetime_condition_length>=active_condition_length+active_conditions-1\n", + "1475 lifetime_condition_length>=age+log(medications_lifetime_perc_covered)\n", + "1476 lifetime_condition_length>=minimum(Triglycerides,1/2*active_care_plan_length)\n", + "1477 lifetime_condition_length>=sqrt(Body_Height)*num_allergies\n", + "1478 lifetime_condition_length>=Estimated_Glomerular_Filtration_Rate-active_care_plan_length+1\n", + "1479 lifetime_condition_length>=minimum(lifetime_care_plan_length,active_conditions^2)\n", + "1480 lifetime_condition_length>=1/2*Microalbumin_Creatinine_Ratio+lifetime_care_plan_length\n", + "1481 lifetime_condition_length>=device_lifetime_length*log(Triglycerides)\n", + "1482 lifetime_condition_length>=(1/2*Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1483 lifetime_condition_length>=active_care_plan_length*ceil(medications_lifetime_perc_covered)\n", + "1484 lifetime_condition_length>=2*lifetime_conditions/latitude\n", + "1485 lifetime_condition_length>=(active_care_plans-1)*lifetime_conditions\n", + "1486 lifetime_condition_length>=2*active_conditions-procedures_lifetime\n", + "1487 lifetime_condition_length>=-Body_Mass_Index+2*active_condition_length\n", + "1488 lifetime_condition_length>=active_condition_length+num_allergies-1\n", + "1489 lifetime_condition_length>=sqrt(active_condition_length)*num_allergies\n", + "1490 lifetime_condition_length>=2*active_conditions*num_allergies\n", + "1491 lifetime_condition_length>=e^active_care_plans/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1492 lifetime_condition_length>=2*active_care_plan_length-medications_lifetime_cost\n", + "1493 lifetime_condition_length>=1/2*lifetime_care_plan_length/Creatinine\n", + "1494 lifetime_condition_length>=minimum(Triglycerides,floor(medications_lifetime))\n", + "1495 lifetime_condition_length>=minimum(Glucose,10^DALY)\n", + "1496 lifetime_condition_length>=(immunizations_lifetime-1)*mean_Glucose\n", + "1497 lifetime_condition_length>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*log(immunizations_lifetime)\n", + "1498 lifetime_condition_length>=1/2*Systolic_Blood_Pressure*medications_lifetime_perc_covered\n", + "1499 lifetime_condition_length>=lifetime_care_plan_length*medications_lifetime_perc_covered^2\n", + "1500 lifetime_condition_length>=QALY*ceil(medications_lifetime_perc_covered)\n", + "1501 lifetime_condition_length>=(2*medications_lifetime_perc_covered)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "1502 lifetime_condition_length>=log(DALY)*mean_DALY\n", + "1503 lifetime_condition_length>=active_condition_length*log(DALY)/log(10)\n", + "1504 lifetime_condition_length>=-Total_Cholesterol+floor(Triglycerides)\n", + "1505 lifetime_condition_length>=log(Carbon_Dioxide)^mean_Creatinine\n", + "1506 device_lifetime_length<=healthcare_coverage\n", + "1507 device_lifetime_length<=active_condition_length\n", + "1508 device_lifetime_length<=lifetime_care_plan_length\n", + "1509 device_lifetime_length<=immunizations_lifetime_cost/QOLS\n", + "1510 device_lifetime_length<=encounters_lifetime_payer_coverage\n", + "1511 device_lifetime_length<=medications_lifetime_cost\n", + "1512 device_lifetime_length<=num_allergies^Body_temperature\n", + "1513 device_lifetime_length<=sqrt(age)+medications_lifetime\n", + "1514 device_lifetime_length<=immunizations_lifetime_cost/medications_lifetime_perc_covered\n", + "1515 device_lifetime_length<=Bilirubin_total__Mass_volume__in_Serum,Plasma*log(active_care_plan_length)\n", + "1516 device_lifetime_length<=(log(medications_lifetime)/log(10))^Body_Height\n", + "1517 device_lifetime_length<=2*Total_Cholesterol/MCV__Entitic_volume__by_Automated_count\n", + "1518 device_lifetime_length<=1/2*DALY*medications_lifetime\n", + "1519 device_lifetime_length<=num_allergies^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1520 device_lifetime_length<=imaging_studies_lifetime/num_allergies\n", + "1521 device_lifetime_length<=sqrt(QOLS-1)\n", + "1522 device_lifetime_length<=active_care_plan_length^2\n", + "1523 device_lifetime_length<=Creatinine^healthcare_expenses\n", + "1524 device_lifetime_length<=log(Creatinine)^healthcare_expenses\n", + "1525 device_lifetime_length<=floor(active_condition_length)\n", + "1526 device_lifetime_length<=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1527 device_lifetime_length<=Glucose__Mass_volume__in_Urine_by_Test_strip^medications_lifetime_cost\n", + "1528 device_lifetime_length<=log(medications_active)^longitude\n", + "1529 device_lifetime_length<=minimum(healthcare_expenses,Lymph_nodes_with_isolated_tumor_cells_____in_Cancer_specimen_by_Light_microscopy)\n", + "1530 device_lifetime_length<=2*lifetime_care_plan_length/mean_Creatinine\n", + "1531 device_lifetime_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*medications_lifetime_perc_covered\n", + "1532 device_lifetime_length<=(1/longitude)^medications_lifetime_length\n", + "1533 device_lifetime_length<=healthcare_expenses*medications_active\n", + "1534 device_lifetime_length<=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^longitude\n", + "1535 device_lifetime_length<=-active_condition_length+lifetime_condition_length\n", + "1536 device_lifetime_length<=(DALY-1)^healthcare_expenses\n", + "1537 device_lifetime_length<=procedures_lifetime/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1538 device_lifetime_length<=procedures_lifetime_cost/imaging_studies_lifetime\n", + "1539 device_lifetime_length<=procedures_lifetime_cost^Triglycerides\n", + "1540 device_lifetime_length<=immunizations_lifetime_cost/imaging_studies_lifetime\n", + "1541 device_lifetime_length<=DALY*healthcare_expenses\n", + "1542 device_lifetime_length<=procedures_lifetime_cost^Creatinine\n", + "1543 device_lifetime_length<=Respiratory_rate*log(latitude)\n", + "1544 device_lifetime_length<=log(DALY)^healthcare_expenses\n", + "1545 device_lifetime_length>=-imaging_studies_lifetime\n", + "1546 device_lifetime_length>=-healthcare_coverage\n", + "1547 device_lifetime_length>=-num_allergies\n", + "1548 device_lifetime_length>=-active_conditions\n", + "1549 device_lifetime_length>=maximum(Globulin__Mass_volume__in_Serum_by_calculation,-Estimated_Glomerular_Filtration_Rate)\n", + "1550 device_lifetime_length>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime-1\n", + "1551 device_lifetime_length>=-Body_Weight+High_Density_Lipoprotein_Cholesterol+1\n", + "1552 device_lifetime_length>=Creatinine^2-active_care_plan_length\n", + "1553 encounters_count<=encounters_lifetime_total_cost\n", + "1554 encounters_count<=maximum(latitude,lifetime_condition_length-1)\n", + "1555 encounters_count<=1/2*encounters_lifetime_total_cost/latitude\n", + "1556 encounters_count<=1/2*encounters_lifetime_total_cost/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1557 encounters_count<=(encounters_lifetime_total_cost-1)/Heart_rate\n", + "1558 encounters_count<=Leukocytes____volume__in_Blood_by_Automated_count+e^active_conditions\n", + "1559 encounters_count<=maximum(age,2*medications_lifetime)\n", + "1560 encounters_count<=(encounters_lifetime_total_cost-1)/Body_Weight\n", + "1561 encounters_count<=active_condition_length*e^Creatinine\n", + "1562 encounters_count<=(encounters_lifetime_total_cost-1)/Glucose\n", + "1563 encounters_count<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+device_lifetime_length\n", + "1564 encounters_count<=(encounters_lifetime_total_cost-1)/Chloride\n", + "1565 encounters_count<=e^Leukocytes____volume__in_Blood_by_Automated_count/device_lifetime_length\n", + "1566 encounters_count<=2*Body_Height+Heart_rate\n", + "1567 encounters_count<=e^Calcium/mean_Estimated_Glomerular_Filtration_Rate\n", + "1568 encounters_count<=healthcare_coverage+lifetime_conditions\n", + "1569 encounters_count<=Estimated_Glomerular_Filtration_Rate^2+Triglycerides\n", + "1570 encounters_count<=10^lifetime_care_plans-mean_Microalbumin_Creatinine_Ratio\n", + "1571 encounters_count<=lifetime_care_plan_length^2/device_lifetime_length\n", + "1572 encounters_count<=1/2*encounters_lifetime_total_cost/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1573 encounters_count<=sqrt(healthcare_coverage)-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1574 encounters_count<=maximum(medications_lifetime,sqrt(encounters_lifetime_total_cost))\n", + "1575 encounters_count<=QALY+medications_lifetime-1\n", + "1576 encounters_count<=10^lifetime_conditions/active_conditions\n", + "1577 encounters_count<=Respiratory_rate+lifetime_condition_length\n", + "1578 encounters_count<=mean_Calcium+medications_lifetime+1\n", + "1579 encounters_count<=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*active_care_plans\n", + "1580 encounters_count<=-Leukocytes____volume__in_Blood_by_Automated_count+Systolic_Blood_Pressure-1\n", + "1581 encounters_count<=2*age+lifetime_care_plan_length\n", + "1582 encounters_count<=10^Creatinine+Protein__Mass_volume__in_Serum,Plasma\n", + "1583 encounters_count<=Urea_Nitrogen+medications_lifetime-1\n", + "1584 encounters_count<=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)+medications_lifetime\n", + "1585 encounters_count<=sqrt(MCV__Entitic_volume__by_Automated_count)+Low_Density_Lipoprotein_Cholesterol\n", + "1586 encounters_count<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*e^procedures_lifetime\n", + "1587 encounters_count<=lifetime_conditions+medications_lifetime_cost+1\n", + "1588 encounters_count<=floor(MCH__Entitic_mass__by_Automated_count)+immunizations_lifetime_cost\n", + "1589 encounters_count<=10^Microalbumin_Creatinine_Ratio*Creatinine\n", + "1590 encounters_count<=minimum(healthcare_expenses,Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method)\n", + "1591 encounters_count<=10^(10^lifetime_care_plans)\n", + "1592 encounters_count<=10^(10^medications_lifetime)\n", + "1593 encounters_count<=10^medications_lifetime+lifetime_conditions\n", + "1594 encounters_count<=10^medications_lifetime+active_condition_length\n", + "1595 encounters_count<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2+encounters_lifetime_payer_coverage\n", + "1596 encounters_count<=2*encounters_lifetime_total_cost/Body_Height\n", + "1597 encounters_count<=10^lifetime_care_plans+active_condition_length\n", + "1598 encounters_count<=10^immunizations_lifetime*Protein__Mass_volume__in_Serum,Plasma\n", + "1599 encounters_count<=Respiratory_rate^2+lifetime_care_plan_length\n", + "1600 encounters_count<=10^lifetime_care_plans+Respiratory_rate\n", + "1601 encounters_count<=e^lifetime_care_plan_length/active_care_plan_length\n", + "1602 encounters_count<=10^DALY-longitude\n", + "1603 encounters_count<=-Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*medications_lifetime_dispenses\n", + "1604 encounters_count<=2*encounters_lifetime_total_cost/Total_Cholesterol\n", + "1605 encounters_count<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^lifetime_conditions\n", + "1606 encounters_count<=2*Albumin__Mass_volume__in_Serum,Plasma+medications_lifetime\n", + "1607 encounters_count<=e^Calcium/Estimated_Glomerular_Filtration_Rate\n", + "1608 encounters_count<=10^medications_lifetime/device_lifetime_length\n", + "1609 encounters_count<=e^medications_lifetime/imaging_studies_lifetime\n", + "1610 encounters_count<=2*medications_lifetime/medications_lifetime_perc_covered\n", + "1611 encounters_count<=maximum(medications_lifetime_length,log(Total_Cholesterol))\n", + "1612 encounters_count<=10^DALY*QALY\n", + "1613 encounters_count<=10^DALY+medications_lifetime_dispenses\n", + "1614 encounters_count<=e^DALY+medications_lifetime_cost\n", + "1615 encounters_count<=2*Diastolic_Blood_Pressure-MCHC__Mass_volume__by_Automated_count\n", + "1616 encounters_count<=Creatinine^2*lifetime_condition_length\n", + "1617 encounters_count<=lifetime_care_plan_length*log(Urea_Nitrogen)\n", + "1618 encounters_count<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)*medications_lifetime\n", + "1619 encounters_count>=num_allergies\n", + "1620 encounters_count>=active_care_plans\n", + "1621 encounters_count>=(encounters_lifetime_total_cost+1)/Sodium\n", + "1622 encounters_count>=(medications_lifetime_perc_covered+1)*device_lifetime_length\n", + "1623 encounters_count>=encounters_lifetime_perc_covered\n", + "1624 encounters_count>=immunizations_lifetime\n", + "1625 encounters_count>=medications_active\n", + "1626 encounters_count>=sqrt(active_conditions)\n", + "1627 encounters_count>=minimum(medications_lifetime,log(healthcare_expenses))\n", + "1628 encounters_count>=active_conditions-1\n", + "1629 encounters_count>=sqrt(lifetime_conditions)\n", + "1630 encounters_count>=lifetime_conditions-1\n", + "1631 encounters_count>=-lifetime_care_plans+1/2*procedures_lifetime\n", + "1632 encounters_count>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(active_conditions))\n", + "1633 encounters_count>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost\n", + "1634 encounters_count>=1/2*encounters_lifetime_total_cost/Diastolic_Blood_Pressure\n", + "1635 encounters_count>=ceil(2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "1636 encounters_count>=(encounters_lifetime_total_cost+1)/mean_Sodium\n", + "1637 encounters_count>=sqrt(encounters_lifetime_total_cost)-latitude\n", + "1638 encounters_count>=active_conditions+num_allergies-1\n", + "1639 encounters_count>=(active_conditions+1)*imaging_studies_lifetime\n", + "1640 encounters_count>=1/2*latitude*medications_lifetime_perc_covered\n", + "1641 encounters_count>=-Heart_rate+age+1\n", + "1642 encounters_count>=-MCV__Entitic_volume__by_Automated_count+1/2*Systolic_Blood_Pressure\n", + "1643 encounters_count>=1/2*lifetime_care_plan_length-mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1644 encounters_count>=1/2*medications_active^2\n", + "1645 encounters_count>=-active_care_plans+2*lifetime_care_plans\n", + "1646 encounters_count>=-active_care_plan_length+log(medications_lifetime_dispenses)\n", + "1647 encounters_count>=ceil(Creatinine^2)\n", + "1648 encounters_count>=minimum(active_conditions,10^device_lifetime_length)\n", + "1649 encounters_count>=minimum(active_conditions,procedures_lifetime)\n", + "1650 encounters_count>=minimum(procedures_lifetime,medications_lifetime-1)\n", + "1651 encounters_count>=-active_care_plans+active_conditions\n", + "1652 encounters_count>=minimum(medications_lifetime,1/2*active_care_plan_length)\n", + "1653 encounters_count>=1/2*High_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered\n", + "1654 encounters_count>=-healthcare_coverage+lifetime_conditions\n", + "1655 encounters_count>=-active_care_plans+lifetime_conditions\n", + "1656 encounters_count>=(Carbon_Dioxide+1)*imaging_studies_lifetime\n", + "1657 encounters_count>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-lifetime_care_plan_length+1\n", + "1658 encounters_count>=(Hemoglobin__Mass_volume__in_Blood+1)*device_lifetime_length\n", + "1659 encounters_count>=minimum(active_care_plan_length,sqrt(DALY))\n", + "1660 encounters_count>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,active_care_plans^2)\n", + "1661 encounters_count>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Respiratory_rate)\n", + "1662 encounters_count>=Microalbumin_Creatinine_Ratio/mean_Creatinine\n", + "1663 encounters_count>=maximum(Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method,mean_Creatinine)\n", + "1664 encounters_count>=sqrt(encounters_lifetime_payer_coverage)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1665 encounters_count>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1666 encounters_count>=10^device_lifetime_length/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1667 encounters_count>=1/2*age*medications_lifetime_perc_covered\n", + "1668 encounters_count>=1/4*medications_lifetime\n", + "1669 encounters_count>=(1/2*age)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1670 encounters_count>=-Respiratory_rate+floor(Urea_Nitrogen)\n", + "1671 encounters_count>=-Carbon_Dioxide+e^num_allergies\n", + "1672 encounters_count>=num_allergies^2-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1673 encounters_count>=Microalbumin_Creatinine_Ratio*num_allergies^2\n", + "1674 encounters_count>=2*encounters_lifetime_payer_coverage/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1675 encounters_count>=active_care_plans^2-encounters_lifetime_payer_coverage\n", + "1676 encounters_count>=minimum(medications_lifetime,active_care_plans^2)\n", + "1677 encounters_count>=active_care_plan_length^2/Estimated_Glomerular_Filtration_Rate\n", + "1678 encounters_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions+1\n", + "1679 encounters_count>=minimum(active_conditions,1/encounters_lifetime_perc_covered)\n", + "1680 encounters_count>=log(device_lifetime_length)/log(10)+Respiratory_rate\n", + "1681 encounters_count>=10^immunizations_lifetime-Microalbumin_Creatinine_Ratio\n", + "1682 encounters_count>=minimum(active_care_plan_length,1/2*medications_lifetime)\n", + "1683 encounters_count>=minimum(MCV__Entitic_volume__by_Automated_count,medications_lifetime-1)\n", + "1684 encounters_count>=active_care_plans*log(medications_lifetime)\n", + "1685 encounters_count>=2*DALY*medications_lifetime_perc_covered\n", + "1686 encounters_count>=(medications_active-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1687 encounters_count>=medications_active^2/mean_Creatinine\n", + "1688 encounters_count>=Microalbumin_Creatinine_Ratio*log(medications_active)\n", + "1689 encounters_count>=minimum(Microalbumin_Creatinine_Ratio,e^procedures_lifetime)\n", + "1690 encounters_count>=minimum(lifetime_condition_length,1/2*procedures_lifetime)\n", + "1691 encounters_count>=minimum(medications_lifetime,1/DALY)\n", + "1692 encounters_count>=Urea_Nitrogen^2/Microalbumin_Creatinine_Ratio\n", + "1693 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", + "1694 encounters_lifetime_total_cost>=num_allergies\n", + "1695 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", + "1696 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", + "1697 encounters_lifetime_base_cost>=num_allergies\n", + "1698 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", + "1699 encounters_lifetime_payer_coverage<=healthcare_coverage\n", + "1700 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", + "1701 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", + "1702 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", + "1703 encounters_lifetime_payer_coverage>=num_allergies\n", + "1704 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", + "1705 encounters_lifetime_payer_coverage>=minimum(Total_Cholesterol,abs(encounters_lifetime_total_cost))\n", + "1706 encounters_lifetime_payer_coverage>=encounters_lifetime_total_cost*floor(encounters_lifetime_perc_covered)\n", + "1707 encounters_lifetime_perc_covered<=healthcare_coverage\n", + "1708 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", + "1709 encounters_lifetime_perc_covered<=encounters_count\n", + "1710 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "1711 encounters_lifetime_perc_covered<=(High_Density_Lipoprotein_Cholesterol+1)/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1712 encounters_lifetime_perc_covered<=10^num_allergies\n", + "1713 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_total_cost)/medications_lifetime_dispenses\n", + "1714 encounters_lifetime_perc_covered>=(encounters_lifetime_payer_coverage-1)/encounters_lifetime_total_cost\n", + "1715 encounters_lifetime_perc_covered>=-healthcare_coverage\n", + "1716 encounters_lifetime_perc_covered>=-num_allergies\n", + "1717 encounters_lifetime_perc_covered>=(immunizations_lifetime-1)/active_conditions\n", + "1718 encounters_lifetime_perc_covered>=(1/Urea_Nitrogen)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1719 encounters_lifetime_perc_covered>=mean_MCH__Entitic_mass__by_Automated_count/Low_Density_Lipoprotein_Cholesterol\n", + "1720 encounters_lifetime_perc_covered>=minimum(Triglycerides,1/encounters_count)\n", + "1721 imaging_studies_lifetime<=healthcare_coverage\n", + "1722 imaging_studies_lifetime<=active_care_plans\n", + "1723 imaging_studies_lifetime<=medications_active\n", + "1724 imaging_studies_lifetime<=active_conditions\n", + "1725 imaging_studies_lifetime<=encounters_lifetime_payer_coverage\n", + "1726 imaging_studies_lifetime<=medications_lifetime\n", + "1727 imaging_studies_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1728 imaging_studies_lifetime<=floor(Creatinine)\n", + "1729 imaging_studies_lifetime<=num_allergies^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1730 imaging_studies_lifetime<=10^num_allergies\n", + "1731 imaging_studies_lifetime<=device_lifetime_length^num_allergies\n", + "1732 imaging_studies_lifetime<=-active_care_plan_length+lifetime_care_plan_length\n", + "1733 imaging_studies_lifetime<=-medications_active+medications_lifetime\n", + "1734 imaging_studies_lifetime<=Respiratory_rate*medications_lifetime_perc_covered\n", + "1735 imaging_studies_lifetime<=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^longitude\n", + "1736 imaging_studies_lifetime<=ceil(QOLS)\n", + "1737 imaging_studies_lifetime<=floor(2*QOLS)\n", + "1738 imaging_studies_lifetime<=num_allergies^Body_temperature\n", + "1739 imaging_studies_lifetime<=num_allergies^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1740 imaging_studies_lifetime<=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1741 imaging_studies_lifetime<=num_allergies^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1742 imaging_studies_lifetime<=floor(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1743 imaging_studies_lifetime<=(DALY-1)^healthcare_coverage\n", + "1744 imaging_studies_lifetime<=immunizations_lifetime^medications_lifetime_perc_covered\n", + "1745 imaging_studies_lifetime<=floor(DALY)+immunizations_lifetime\n", + "1746 imaging_studies_lifetime<=-active_condition_length+lifetime_condition_length\n", + "1747 imaging_studies_lifetime>=-device_lifetime_length\n", + "1748 imaging_studies_lifetime>=-healthcare_coverage\n", + "1749 imaging_studies_lifetime>=-num_allergies\n", + "1750 imaging_studies_lifetime>=-active_conditions\n", + "1751 imaging_studies_lifetime>=-Body_Weight+High_Density_Lipoprotein_Cholesterol+1\n", + "1752 imaging_studies_lifetime>=(-immunizations_lifetime)^Triglycerides\n", + "1753 imaging_studies_lifetime>=maximum(Specific_gravity_of_Urine_by_Test_strip,-Estimated_Glomerular_Filtration_Rate)\n", + "1754 immunizations_lifetime<=active_conditions+procedures_lifetime\n", + "1755 immunizations_lifetime<=encounters_count\n", + "1756 immunizations_lifetime<=immunizations_lifetime_cost\n", + "1757 immunizations_lifetime<=10^healthcare_coverage\n", + "1758 immunizations_lifetime<=floor(10^encounters_lifetime_perc_covered)\n", + "1759 immunizations_lifetime<=(1/imaging_studies_lifetime)\n", + "1760 immunizations_lifetime<=ceil(log(latitude)/log(10))\n", + "1761 immunizations_lifetime<=1/2*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1762 immunizations_lifetime<=10^active_conditions\n", + "1763 immunizations_lifetime<=floor(Microalbumin_Creatinine_Ratio)\n", + "1764 immunizations_lifetime<=floor(1/medications_lifetime_perc_covered)\n", + "1765 immunizations_lifetime<=sqrt(num_allergies-1)\n", + "1766 immunizations_lifetime<=(num_allergies-1)^Body_Mass_Index\n", + "1767 immunizations_lifetime<=10^QOLS\n", + "1768 immunizations_lifetime<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1769 immunizations_lifetime<=floor(e^Creatinine)\n", + "1770 immunizations_lifetime<=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1771 immunizations_lifetime<=active_conditions/num_allergies\n", + "1772 immunizations_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Total_score__MMSE_\n", + "1773 immunizations_lifetime<=(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1774 immunizations_lifetime<=10^device_lifetime_length+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1775 immunizations_lifetime<=medications_lifetime/medications_active\n", + "1776 immunizations_lifetime<=maximum(active_care_plans,Creatinine)\n", + "1777 immunizations_lifetime<=(1/2*lifetime_conditions)^Creatinine\n", + "1778 immunizations_lifetime<=maximum(DALY,10^procedures_lifetime)\n", + "1779 immunizations_lifetime<=active_care_plan_length+procedures_lifetime\n", + "1780 immunizations_lifetime>=-device_lifetime_length\n", + "1781 immunizations_lifetime>=active_care_plans-healthcare_coverage\n", + "1782 immunizations_lifetime>=-num_allergies\n", + "1783 immunizations_lifetime>=-active_conditions\n", + "1784 immunizations_lifetime>=floor(encounters_lifetime_perc_covered)\n", + "1785 immunizations_lifetime>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Lymph_nodes_with_isolated_tumor_cells_____in_Cancer_specimen_by_Light_microscopy\n", + "1786 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Body_Height\n", + "1787 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Total_Cholesterol\n", + "1788 immunizations_lifetime>=minimum(immunizations_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "1789 immunizations_lifetime>=floor(log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "1790 immunizations_lifetime>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "1791 immunizations_lifetime>=minimum(imaging_studies_lifetime,immunizations_lifetime_cost)\n", + "1792 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", + "1793 immunizations_lifetime>=minimum(device_lifetime_length,imaging_studies_lifetime)\n", + "1794 immunizations_lifetime>=-DALY+imaging_studies_lifetime\n", + "1795 immunizations_lifetime>=imaging_studies_lifetime/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1796 immunizations_lifetime>=floor(log(Calcium)/log(10))\n", + "1797 immunizations_lifetime>=floor(log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10))\n", + "1798 immunizations_lifetime>=maximum(Specific_gravity_of_Urine_by_Test_strip,-healthcare_expenses)\n", + "1799 immunizations_lifetime>=minimum(Estimated_Glomerular_Filtration_Rate,1/2*num_allergies)\n", + "1800 immunizations_lifetime>=-Calcium+1/2*active_conditions\n", + "1801 immunizations_lifetime>=-medications_lifetime_cost+1/2*procedures_lifetime\n", + "1802 immunizations_lifetime>=-Leukocytes____volume__in_Blood_by_Automated_count+2*device_lifetime_length\n", + "1803 immunizations_lifetime>=encounters_count*floor(encounters_lifetime_perc_covered)\n", + "1804 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", + "1805 immunizations_lifetime_cost<=(Body_Height-1)^immunizations_lifetime\n", + "1806 immunizations_lifetime_cost<=Globulin__Mass_volume__in_Serum_by_calculation+Sodium+1\n", + "1807 immunizations_lifetime_cost<=(QALY-1)^2\n", + "1808 immunizations_lifetime_cost<=encounters_lifetime_total_cost^2\n", + "1809 immunizations_lifetime_cost<=Low_Density_Lipoprotein_Cholesterol^2/device_lifetime_length\n", + "1810 immunizations_lifetime_cost<=Body_Mass_Index*sqrt(Triglycerides)\n", + "1811 immunizations_lifetime_cost<=2*Diastolic_Blood_Pressure/imaging_studies_lifetime\n", + "1812 immunizations_lifetime_cost<=(Triglycerides-1)/medications_lifetime_perc_covered\n", + "1813 immunizations_lifetime_cost<=Sodium+healthcare_coverage\n", + "1814 immunizations_lifetime_cost<=Sodium+e^Microalbumin_Creatinine_Ratio\n", + "1815 immunizations_lifetime_cost<=2*Body_Height-MCH__Entitic_mass__by_Automated_count\n", + "1816 immunizations_lifetime_cost<=maximum(encounters_lifetime_total_cost,2*Triglycerides)\n", + "1817 immunizations_lifetime_cost<=2*Sodium+active_conditions\n", + "1818 immunizations_lifetime_cost<=2*Glucose+High_Density_Lipoprotein_Cholesterol\n", + "1819 immunizations_lifetime_cost<=maximum(mean_Sodium,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "1820 immunizations_lifetime_cost<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(encounters_lifetime_total_cost)\n", + "1821 immunizations_lifetime_cost<=Heart_rate*Potassium\n", + "1822 immunizations_lifetime_cost<=-Hemoglobin__Mass_volume__in_Blood+Platelets____volume__in_Blood_by_Automated_count-1\n", + "1823 immunizations_lifetime_cost<=2*Microalbumin_Creatinine_Ratio/device_lifetime_length\n", + "1824 immunizations_lifetime_cost<=Estimated_Glomerular_Filtration_Rate*active_conditions\n", + "1825 immunizations_lifetime_cost<=sqrt(Diastolic_Blood_Pressure)*Estimated_Glomerular_Filtration_Rate\n", + "1826 immunizations_lifetime_cost<=2*Creatinine*Low_Density_Lipoprotein_Cholesterol\n", + "1827 immunizations_lifetime_cost<=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Potassium\n", + "1828 immunizations_lifetime_cost<=2*Diastolic_Blood_Pressure+Sodium\n", + "1829 immunizations_lifetime_cost<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(medications_lifetime_cost)/log(10)\n", + "1830 immunizations_lifetime_cost<=age*log(Platelets____volume__in_Blood_by_Automated_count)\n", + "1831 immunizations_lifetime_cost<=2*Protein__Mass_volume__in_Serum,Plasma/medications_lifetime_perc_covered\n", + "1832 immunizations_lifetime_cost<=age^2/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1833 immunizations_lifetime_cost<=Glucose*e^active_care_plans\n", + "1834 immunizations_lifetime_cost<=active_care_plan_length^2+Estimated_Glomerular_Filtration_Rate\n", + "1835 immunizations_lifetime_cost<=Body_Mass_Index^2/num_allergies\n", + "1836 immunizations_lifetime_cost<=1/medications_lifetime_perc_covered+medications_lifetime_dispenses\n", + "1837 immunizations_lifetime_cost<=encounters_lifetime_total_cost^2/medications_lifetime_length\n", + "1838 immunizations_lifetime_cost<=Carbon_Dioxide^2/num_allergies\n", + "1839 immunizations_lifetime_cost<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Sodium\n", + "1840 immunizations_lifetime_cost<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Sodium\n", + "1841 immunizations_lifetime_cost<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Sodium\n", + "1842 immunizations_lifetime_cost<=1/2*medications_lifetime_dispenses/medications_lifetime_perc_covered\n", + "1843 immunizations_lifetime_cost<=Diastolic_Blood_Pressure*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1844 immunizations_lifetime_cost<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Sodium\n", + "1845 immunizations_lifetime_cost<=(Respiratory_rate^2)^immunizations_lifetime\n", + "1846 immunizations_lifetime_cost<=2*Systolic_Blood_Pressure+age\n", + "1847 immunizations_lifetime_cost<=log(Glomerular_filtration_rate_1_73_sq_M_predicted)+mean_Sodium\n", + "1848 immunizations_lifetime_cost<=Calcium^2+Protein__Mass_volume__in_Serum,Plasma\n", + "1849 immunizations_lifetime_cost<=active_care_plan_length*log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1850 immunizations_lifetime_cost<=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^latitude\n", + "1851 immunizations_lifetime_cost>=immunizations_lifetime\n", + "1852 immunizations_lifetime_cost>=(Heart_rate+1)*immunizations_lifetime\n", + "1853 immunizations_lifetime_cost>=(Chloride+1)*immunizations_lifetime\n", + "1854 immunizations_lifetime_cost>=floor(Sodium)-healthcare_coverage\n", + "1855 immunizations_lifetime_cost>=(Glucose+1)*immunizations_lifetime\n", + "1856 immunizations_lifetime_cost>=(Systolic_Blood_Pressure+1)*imaging_studies_lifetime\n", + "1857 immunizations_lifetime_cost>=(Diastolic_Blood_Pressure+1)*immunizations_lifetime\n", + "1858 immunizations_lifetime_cost>=Systolic_Blood_Pressure+log(num_allergies)\n", + "1859 immunizations_lifetime_cost>=(Body_Weight+1)*immunizations_lifetime\n", + "1860 immunizations_lifetime_cost>=imaging_studies_lifetime*mean_Sodium\n", + "1861 immunizations_lifetime_cost>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*immunizations_lifetime\n", + "1862 immunizations_lifetime_cost>=1/2*Platelets____volume__in_Blood_by_Automated_count*QOLS\n", + "1863 immunizations_lifetime_cost>=age*immunizations_lifetime^2\n", + "1864 immunizations_lifetime_cost>=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)*num_allergies\n", + "1865 immunizations_lifetime_cost>=e^Erythrocytes____volume__in_Blood_by_Automated_count-medications_lifetime_dispenses\n", + "1866 immunizations_lifetime_cost>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*ceil(MCHC__Mass_volume__by_Automated_count)\n", + "1867 immunizations_lifetime_cost>=Microalbumin_Creatinine_Ratio-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "1868 immunizations_lifetime_cost>=immunizations_lifetime*mean_Chloride\n", + "1869 immunizations_lifetime_cost>=1/2*Total_Cholesterol*immunizations_lifetime\n", + "1870 immunizations_lifetime_cost>=2*immunizations_lifetime*latitude\n", + "1871 immunizations_lifetime_cost>=log(num_allergies)*mean_Microalbumin_Creatinine_Ratio\n", + "1872 immunizations_lifetime_cost>=2*Respiratory_rate*num_allergies\n", + "1873 immunizations_lifetime_cost>=(device_lifetime_length-1)*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1874 immunizations_lifetime_cost>=MCV__Entitic_volume__by_Automated_count*floor(device_lifetime_length)\n", + "1875 immunizations_lifetime_cost>=device_lifetime_length^2-medications_lifetime_length\n", + "1876 immunizations_lifetime_cost>=-MCV__Entitic_volume__by_Automated_count+2*encounters_count\n", + "1877 immunizations_lifetime_cost>=encounters_lifetime_total_cost*floor(encounters_lifetime_perc_covered)\n", + "1878 immunizations_lifetime_cost>=Glucose*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1879 immunizations_lifetime_cost>=sqrt(immunizations_lifetime)^Respiratory_rate\n", + "1880 immunizations_lifetime_cost>=Platelets____volume__in_Blood_by_Automated_count*log(immunizations_lifetime)\n", + "1881 immunizations_lifetime_cost>=2*DALY*immunizations_lifetime\n", + "1882 immunizations_lifetime_cost>=immunizations_lifetime*sqrt(medications_lifetime_length)\n", + "1883 immunizations_lifetime_cost>=Triglycerides*floor(QOLS)\n", + "1884 immunizations_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol*floor(QOLS)\n", + "1885 immunizations_lifetime_cost>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*mean_Glucose\n", + "1886 immunizations_lifetime_cost>=floor(Sodium)-medications_lifetime_cost\n", + "1887 immunizations_lifetime_cost>=(Sodium-1)*imaging_studies_lifetime\n", + "1888 immunizations_lifetime_cost>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*Total_Cholesterol\n", + "1889 immunizations_lifetime_cost>=e^Erythrocytes____volume__in_Blood_by_Automated_count-medications_lifetime_cost\n", + "1890 medications_lifetime<=healthcare_coverage\n", + "1891 medications_lifetime<=encounters_lifetime_total_cost\n", + "1892 medications_lifetime<=medications_lifetime_cost\n", + "1893 medications_lifetime<=medications_lifetime_dispenses\n", + "1894 medications_lifetime<=-Low_Density_Lipoprotein_Cholesterol+Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1\n", + "1895 medications_lifetime<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^active_care_plans)\n", + "1896 medications_lifetime<=1/2*encounters_count^2\n", + "1897 medications_lifetime<=(log(QALY)/log(10))^mean_QALY\n", + "1898 medications_lifetime<=2*encounters_lifetime_total_cost/active_care_plan_length\n", + "1899 medications_lifetime<=log(latitude)^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "1900 medications_lifetime<=DALY^2+Protein__Mass_volume__in_Serum,Plasma\n", + "1901 medications_lifetime<=age^2/procedures_lifetime\n", + "1902 medications_lifetime<=floor(encounters_lifetime_payer_coverage)/Potassium\n", + "1903 medications_lifetime<=(healthcare_expenses-1)/encounters_count\n", + "1904 medications_lifetime<=e^active_conditions/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1905 medications_lifetime<=(e^Calcium)^Creatinine\n", + "1906 medications_lifetime<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "1907 medications_lifetime<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^active_conditions\n", + "1908 medications_lifetime<=1/2*healthcare_coverage/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1909 medications_lifetime<=e^Microalbumin_Creatinine_Ratio-longitude\n", + "1910 medications_lifetime<=Creatinine^2*lifetime_condition_length\n", + "1911 medications_lifetime<=2*10^lifetime_care_plans\n", + "1912 medications_lifetime<=(log(Protein__Mass_volume__in_Serum,Plasma)/log(10))^mean_Urea_Nitrogen\n", + "1913 medications_lifetime<=10^DALY*encounters_count\n", + "1914 medications_lifetime<=lifetime_care_plan_length^2/device_lifetime_length\n", + "1915 medications_lifetime<=2*MCH__Entitic_mass__by_Automated_count+procedures_lifetime_cost\n", + "1916 medications_lifetime<=lifetime_care_plan_length^2/Potassium\n", + "1917 medications_lifetime<=active_care_plans+encounters_lifetime_payer_coverage\n", + "1918 medications_lifetime<=e^sqrt(encounters_count)\n", + "1919 medications_lifetime<=maximum(active_conditions,10^active_care_plan_length)\n", + "1920 medications_lifetime<=(medications_lifetime_length-1)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1921 medications_lifetime<=sqrt(Body_Mass_Index)^Potassium\n", + "1922 medications_lifetime<=(log(latitude)/log(10))^encounters_count\n", + "1923 medications_lifetime<=maximum(lifetime_condition_length,10^lifetime_care_plans)\n", + "1924 medications_lifetime<=10^Creatinine+Body_Height\n", + "1925 medications_lifetime<=2*MCV__Entitic_volume__by_Automated_count/device_lifetime_length\n", + "1926 medications_lifetime<=1/2*encounters_lifetime_payer_coverage/mean_Creatinine\n", + "1927 medications_lifetime<=e^active_conditions-longitude\n", + "1928 medications_lifetime<=Body_Weight+ceil(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "1929 medications_lifetime<=10^DALY+Heart_rate\n", + "1930 medications_lifetime<=10^lifetime_care_plans+immunizations_lifetime_cost\n", + "1931 medications_lifetime<=1/num_allergies+mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1932 medications_lifetime<=ceil(MCH__Entitic_mass__by_Automated_count)+immunizations_lifetime_cost\n", + "1933 medications_lifetime<=minimum(healthcare_expenses,log(Polyp_size_greatest_dimension_by_CAP_cancer_protocols))\n", + "1934 medications_lifetime<=10^lifetime_care_plans/medications_lifetime_perc_covered\n", + "1935 medications_lifetime<=ceil(active_care_plan_length)^Sodium\n", + "1936 medications_lifetime<=10^active_conditions+lifetime_care_plans\n", + "1937 medications_lifetime<=10^lifetime_care_plans+Respiratory_rate\n", + "1938 medications_lifetime<=e^encounters_count/Sodium\n", + "1939 medications_lifetime<=10^lifetime_care_plans+mean_Calcium\n", + "1940 medications_lifetime<=floor(active_care_plan_length)^Sodium\n", + "1941 medications_lifetime<=active_care_plan_length^2-Carbon_Dioxide\n", + "1942 medications_lifetime<=Microalbumin_Creatinine_Ratio*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1943 medications_lifetime<=10^immunizations_lifetime_cost+Chloride\n", + "1944 medications_lifetime<=10^active_conditions/lifetime_conditions\n", + "1945 medications_lifetime<=encounters_count^2/Leukocytes____volume__in_Blood_by_Automated_count\n", + "1946 medications_lifetime<=encounters_count*e^DALY\n", + "1947 medications_lifetime<=Systolic_Blood_Pressure+e^DALY\n", + "1948 medications_lifetime<=(medications_lifetime_dispenses+1)^Glucose__Mass_volume__in_Urine_by_Test_strip\n", + "1949 medications_lifetime<=(device_lifetime_length-1)^medications_lifetime_cost\n", + "1950 medications_lifetime<=e^encounters_count/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1951 medications_lifetime<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+procedures_lifetime_cost\n", + "1952 medications_lifetime<=encounters_count^2/num_allergies\n", + "1953 medications_lifetime<=encounters_count^2/lifetime_care_plans\n", + "1954 medications_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Glucose\n", + "1955 medications_lifetime<=(log(encounters_count)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1956 medications_lifetime<=(procedures_lifetime_cost-1)^Creatinine\n", + "1957 medications_lifetime<=ceil(medications_lifetime_cost)/lifetime_condition_length\n", + "1958 medications_lifetime<=encounters_count*log(encounters_lifetime_total_cost)/log(10)\n", + "1959 medications_lifetime>=imaging_studies_lifetime\n", + "1960 medications_lifetime>=encounters_count+1/2*longitude\n", + "1961 medications_lifetime>=medications_active\n", + "1962 medications_lifetime>=sqrt(encounters_lifetime_payer_coverage)-latitude\n", + "1963 medications_lifetime>=num_allergies^2-lifetime_care_plan_length\n", + "1964 medications_lifetime>=(Respiratory_rate+1)*imaging_studies_lifetime\n", + "1965 medications_lifetime>=(Chloride+1)/Microalbumin_Creatinine_Ratio\n", + "1966 medications_lifetime>=2*imaging_studies_lifetime\n", + "1967 medications_lifetime>=-Urea_Nitrogen+encounters_count+1\n", + "1968 medications_lifetime>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+1\n", + "1969 medications_lifetime>=DALY+1/2*Microalbumin_Creatinine_Ratio\n", + "1970 medications_lifetime>=1/2*immunizations_lifetime_cost-mean_Estimated_Glomerular_Filtration_Rate\n", + "1971 medications_lifetime>=mean_Microalbumin_Creatinine_Ratio*num_allergies^2\n", + "1972 medications_lifetime>=Hemoglobin__Mass_volume__in_Blood*device_lifetime_length\n", + "1973 medications_lifetime>=encounters_count-mean_Calcium-1\n", + "1974 medications_lifetime>=minimum(Heart_rate,2*device_lifetime_length)\n", + "1975 medications_lifetime>=minimum(medications_lifetime_cost,QOLS)\n", + "1976 medications_lifetime>=10^QOLS*medications_lifetime_perc_covered\n", + "1977 medications_lifetime>=minimum(num_allergies,active_care_plans)\n", + "1978 medications_lifetime>=DALY*sqrt(medications_lifetime_perc_covered)\n", + "1979 medications_lifetime>=minimum(immunizations_lifetime,medications_lifetime_dispenses)\n", + "1980 medications_lifetime>=-QALY+procedures_lifetime-1\n", + "1981 medications_lifetime>=floor(log(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", + "1982 medications_lifetime>=ceil(MCH__Entitic_mass__by_Automated_count)-immunizations_lifetime_cost\n", + "1983 medications_lifetime>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime_cost\n", + "1984 medications_lifetime>=sqrt(Platelets____volume__in_Blood_by_Automated_count)-Hemoglobin__Mass_volume__in_Blood\n", + "1985 medications_lifetime>=Body_Mass_Index*medications_lifetime_perc_covered^2\n", + "1986 medications_lifetime>=2*device_lifetime_length/DALY\n", + "1987 medications_lifetime>=-Body_Height+Systolic_Blood_Pressure+1\n", + "1988 medications_lifetime>=ceil(Carbon_Dioxide)*imaging_studies_lifetime\n", + "1989 medications_lifetime>=-Sodium+2*encounters_count\n", + "1990 medications_lifetime>=medications_active^2*medications_lifetime_perc_covered\n", + "1991 medications_lifetime>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*device_lifetime_length^2\n", + "1992 medications_lifetime>=encounters_count*medications_lifetime_perc_covered^2\n", + "1993 medications_lifetime>=-Protein__Mass_volume__in_Serum,Plasma+2*encounters_count\n", + "1994 medications_lifetime>=floor(sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "1995 medications_lifetime>=minimum(mean_Microalbumin_Creatinine_Ratio,lifetime_care_plan_length+1)\n", + "1996 medications_lifetime>=Estimated_Glomerular_Filtration_Rate*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1997 medications_lifetime>=-MCHC__Mass_volume__by_Automated_count+encounters_count-1\n", + "1998 medications_lifetime>=2*encounters_count-mean_Sodium\n", + "1999 medications_lifetime>=(Bilirubin_total__Mass_volume__in_Serum,Plasma^2)^Urea_Nitrogen\n", + "2000 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-Heart_rate\n", + "2001 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2002 medications_lifetime>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime_perc_covered^2\n", + "2003 medications_lifetime>=active_care_plans*ceil(medications_lifetime_perc_covered)\n", + "2004 medications_lifetime>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-procedures_lifetime_cost\n", + "2005 medications_lifetime>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-lifetime_care_plan_length\n", + "2006 medications_lifetime_cost<=healthcare_coverage^2\n", + "2007 medications_lifetime_cost<=encounters_count^healthcare_expenses\n", + "2008 medications_lifetime_cost<=(encounters_lifetime_total_cost-1)*medications_lifetime_dispenses\n", + "2009 medications_lifetime_cost<=sqrt(medications_lifetime_length)^latitude\n", + "2010 medications_lifetime_cost<=(active_condition_length-1)^Potassium\n", + "2011 medications_lifetime_cost<=(Systolic_Blood_Pressure-1)*medications_lifetime_length\n", + "2012 medications_lifetime_cost<=(immunizations_lifetime_cost-1)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2013 medications_lifetime_cost<=(Chloride-1)*medications_lifetime_length\n", + "2014 medications_lifetime_cost<=(Low_Density_Lipoprotein_Cholesterol-1)*medications_lifetime_length\n", + "2015 medications_lifetime_cost<=encounters_lifetime_total_cost^2/procedures_lifetime\n", + "2016 medications_lifetime_cost<=(Glucose-1)*medications_lifetime_length\n", + "2017 medications_lifetime_cost<=10^medications_lifetime*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2018 medications_lifetime_cost<=(Chloride-1)*healthcare_coverage\n", + "2019 medications_lifetime_cost<=Low_Density_Lipoprotein_Cholesterol^2*lifetime_condition_length\n", + "2020 medications_lifetime_cost<=10^encounters_count-Sodium\n", + "2021 medications_lifetime_cost<=(2*active_care_plans)^Hemoglobin__Mass_volume__in_Blood\n", + "2022 medications_lifetime_cost<=(log(procedures_lifetime_cost)/log(10))^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2023 medications_lifetime_cost<=Chloride*e^Calcium\n", + "2024 medications_lifetime_cost<=sqrt(Total_Cholesterol)^medications_lifetime_dispenses\n", + "2025 medications_lifetime_cost<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1)^encounters_count\n", + "2026 medications_lifetime_cost<=lifetime_care_plan_length^Potassium\n", + "2027 medications_lifetime_cost<=active_care_plan_length^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2028 medications_lifetime_cost<=MCV__Entitic_volume__by_Automated_count^2*age\n", + "2029 medications_lifetime_cost<=e^Calcium*lifetime_care_plan_length\n", + "2030 medications_lifetime_cost<=(Estimated_Glomerular_Filtration_Rate+1)*healthcare_coverage\n", + "2031 medications_lifetime_cost<=log(Total_Cholesterol)^Urea_Nitrogen\n", + "2032 medications_lifetime_cost<=Body_Height*Body_Weight^2\n", + "2033 medications_lifetime_cost<=2*healthcare_expenses/encounters_lifetime_perc_covered\n", + "2034 medications_lifetime_cost<=latitude^2*medications_lifetime_dispenses\n", + "2035 medications_lifetime_cost<=healthcare_expenses*medications_lifetime\n", + "2036 medications_lifetime_cost<=(medications_active+1)*healthcare_expenses\n", + "2037 medications_lifetime_cost<=age^4\n", + "2038 medications_lifetime_cost<=2*encounters_lifetime_total_cost^2\n", + "2039 medications_lifetime_cost<=encounters_lifetime_total_cost^2/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2040 medications_lifetime_cost<=Systolic_Blood_Pressure^2*age\n", + "2041 medications_lifetime_cost<=10^Potassium*mean_Systolic_Blood_Pressure\n", + "2042 medications_lifetime_cost<=e^Hemoglobin__Mass_volume__in_Blood/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2043 medications_lifetime_cost<=(Leukocytes____volume__in_Blood_by_Automated_count^2)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2044 medications_lifetime_cost<=2*Systolic_Blood_Pressure*healthcare_coverage\n", + "2045 medications_lifetime_cost<=healthcare_expenses^2/procedures_lifetime_cost\n", + "2046 medications_lifetime_cost<=2*healthcare_expenses/imaging_studies_lifetime\n", + "2047 medications_lifetime_cost<=10^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/healthcare_coverage\n", + "2048 medications_lifetime_cost<=Bilirubin_total__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage^2\n", + "2049 medications_lifetime_cost<=Total_Cholesterol*age^2\n", + "2050 medications_lifetime_cost<=healthcare_coverage^2/Low_Density_Lipoprotein_Cholesterol\n", + "2051 medications_lifetime_cost<=Protein__Mass_volume__in_Serum,Plasma^2*lifetime_care_plan_length\n", + "2052 medications_lifetime_cost<=(log(active_care_plan_length)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2053 medications_lifetime_cost<=(Hemoglobin__Mass_volume__in_Blood^2)^medications_lifetime\n", + "2054 medications_lifetime_cost<=maximum(healthcare_expenses,medications_lifetime_dispenses^2)\n", + "2055 medications_lifetime_cost<=e^encounters_count/imaging_studies_lifetime\n", + "2056 medications_lifetime_cost<=10^Erythrocytes____volume__in_Blood_by_Automated_count*Respiratory_rate\n", + "2057 medications_lifetime_cost<=log(lifetime_care_plan_length)^Body_Mass_Index\n", + "2058 medications_lifetime_cost<=10^lifetime_condition_length/active_conditions\n", + "2059 medications_lifetime_cost<=(log(lifetime_condition_length)/log(10))^Carbon_Dioxide\n", + "2060 medications_lifetime_cost<=10^medications_lifetime/medications_lifetime_perc_covered\n", + "2061 medications_lifetime_cost<=Triglycerides*e^encounters_count\n", + "2062 medications_lifetime_cost<=encounters_lifetime_total_cost^2/device_lifetime_length\n", + "2063 medications_lifetime_cost<=2*Body_Height*encounters_lifetime_total_cost\n", + "2064 medications_lifetime_cost<=(10^medications_lifetime)^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "2065 medications_lifetime_cost<=maximum(healthcare_coverage,e^medications_lifetime_length)\n", + "2066 medications_lifetime_cost<=1/2*Total_Cholesterol*medications_lifetime_length\n", + "2067 medications_lifetime_cost<=maximum(healthcare_coverage,medications_lifetime_length^2)\n", + "2068 medications_lifetime_cost<=10^medications_active*healthcare_expenses\n", + "2069 medications_lifetime_cost<=Chloride^2*mean_Glucose\n", + "2070 medications_lifetime_cost<=Carbon_Dioxide^2*medications_lifetime_dispenses\n", + "2071 medications_lifetime_cost<=e^Calcium*mean_Low_Density_Lipoprotein_Cholesterol\n", + "2072 medications_lifetime_cost>=num_allergies\n", + "2073 medications_lifetime_cost>=sqrt(Diastolic_Blood_Pressure)*medications_lifetime_length\n", + "2074 medications_lifetime_cost>=(device_lifetime_length+1)*medications_lifetime_length\n", + "2075 medications_lifetime_cost>=(active_condition_length+1)*medications_lifetime\n", + "2076 medications_lifetime_cost>=ceil(medications_lifetime_length)+medications_lifetime_dispenses\n", + "2077 medications_lifetime_cost>=(encounters_lifetime_payer_coverage+1)*medications_active\n", + "2078 medications_lifetime_cost>=Microalbumin_Creatinine_Ratio^2*Urea_Nitrogen\n", + "2079 medications_lifetime_cost>=(2*Albumin__Mass_volume__in_Serum,Plasma)^mean_Potassium\n", + "2080 medications_lifetime_cost>=Erythrocytes____volume__in_Blood_by_Automated_count^2*medications_lifetime_length\n", + "2081 medications_lifetime_cost>=Calcium^2*medications_lifetime_dispenses\n", + "2082 medications_lifetime_cost>=(medications_lifetime_dispenses+1)*mean_Microalbumin_Creatinine_Ratio\n", + "2083 medications_lifetime_cost>=e^Bilirubin_total__Mass_volume__in_Serum,Plasma*healthcare_coverage\n", + "2084 medications_lifetime_cost>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted*medications_lifetime_length\n", + "2085 medications_lifetime_cost>=medications_lifetime_dispenses^2/QALY\n", + "2086 medications_lifetime_cost>=MCH__Entitic_mass__by_Automated_count^2*lifetime_care_plan_length\n", + "2087 medications_lifetime_cost>=ceil(active_care_plan_length)*medications_lifetime\n", + "2088 medications_lifetime_cost>=active_care_plan_length^2*medications_active\n", + "2089 medications_lifetime_cost>=sqrt(Body_Weight)*medications_lifetime_length\n", + "2090 medications_lifetime_cost>=(active_conditions+1)*medications_lifetime_dispenses\n", + "2091 medications_lifetime_cost>=medications_lifetime_dispenses^2/Body_Mass_Index\n", + "2092 medications_lifetime_cost>=healthcare_coverage*sqrt(medications_lifetime_perc_covered)\n", + "2093 medications_lifetime_cost>=medications_lifetime_dispenses^2/Carbon_Dioxide\n", + "2094 medications_lifetime_cost>=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^mean_Urea_Nitrogen\n", + "2095 medications_lifetime_cost>=lifetime_care_plans^2*medications_lifetime_dispenses\n", + "2096 medications_lifetime_cost>=(procedures_lifetime_cost+1)*medications_lifetime_perc_covered\n", + "2097 medications_lifetime_cost>=Microalbumin_Creatinine_Ratio^2+procedures_lifetime_cost\n", + "2098 medications_lifetime_cost>=(Estimated_Glomerular_Filtration_Rate+1)*Total_Cholesterol\n", + "2099 medications_lifetime_cost>=1/2*Estimated_Glomerular_Filtration_Rate*medications_lifetime_length\n", + "2100 medications_lifetime_cost>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2101 medications_lifetime_cost>=(log(Microalbumin_Creatinine_Ratio)/log(10))^Respiratory_rate\n", + "2102 medications_lifetime_cost>=healthcare_expenses*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2103 medications_lifetime_cost>=2*Body_Height*medications_active\n", + "2104 medications_lifetime_cost>=1/2*Protein__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage\n", + "2105 medications_lifetime_cost>=2*encounters_count*medications_lifetime\n", + "2106 medications_lifetime_cost>=sqrt(device_lifetime_length)*healthcare_coverage\n", + "2107 medications_lifetime_cost>=2*latitude*medications_active\n", + "2108 medications_lifetime_cost>=1/2*mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*medications_lifetime_length\n", + "2109 medications_lifetime_cost>=medications_lifetime_length*num_allergies^2\n", + "2110 medications_lifetime_cost>=(2*num_allergies)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2111 medications_lifetime_cost>=Erythrocytes____volume__in_Blood_by_Automated_count*lifetime_care_plan_length^2\n", + "2112 medications_lifetime_cost>=10^medications_active*Microalbumin_Creatinine_Ratio\n", + "2113 medications_lifetime_cost>=10^lifetime_care_plans/Estimated_Glomerular_Filtration_Rate\n", + "2114 medications_lifetime_cost>=Estimated_Glomerular_Filtration_Rate*active_care_plan_length^2\n", + "2115 medications_lifetime_cost>=lifetime_condition_length^2*medications_lifetime_perc_covered\n", + "2116 medications_lifetime_cost>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2*medications_lifetime_length\n", + "2117 medications_lifetime_cost>=immunizations_lifetime_cost^2*num_allergies\n", + "2118 medications_lifetime_cost>=Body_Height^2*imaging_studies_lifetime\n", + "2119 medications_lifetime_cost>=Total_Cholesterol^2*medications_lifetime_perc_covered\n", + "2120 medications_lifetime_cost>=sqrt(medications_lifetime)*medications_lifetime_length\n", + "2121 medications_lifetime_cost>=medications_lifetime_length^2/mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2122 medications_lifetime_cost>=Urea_Nitrogen^2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "2123 medications_lifetime_cost>=encounters_lifetime_payer_coverage*medications_active^2\n", + "2124 medications_lifetime_cost>=sqrt(medications_active)^FEV1_FVC\n", + "2125 medications_lifetime_cost>=healthcare_coverage*log(medications_active)\n", + "2126 medications_lifetime_cost>=sqrt(Low_Density_Lipoprotein_Cholesterol)*medications_lifetime_length\n", + "2127 medications_lifetime_cost>=sqrt(Microalbumin_Creatinine_Ratio)*encounters_lifetime_total_cost\n", + "2128 medications_lifetime_cost>=MCV__Entitic_volume__by_Automated_count^2*active_care_plans\n", + "2129 medications_lifetime_perc_covered<=healthcare_coverage\n", + "2130 medications_lifetime_perc_covered<=active_care_plans\n", + "2131 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "2132 medications_lifetime_perc_covered<=active_conditions\n", + "2133 medications_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "2134 medications_lifetime_perc_covered<=medications_lifetime\n", + "2135 medications_lifetime_perc_covered<=sqrt(Creatinine)*mean_Creatinine\n", + "2136 medications_lifetime_perc_covered<=sqrt(encounters_lifetime_perc_covered)+immunizations_lifetime\n", + "2137 medications_lifetime_perc_covered<=(1/immunizations_lifetime)^active_care_plans\n", + "2138 medications_lifetime_perc_covered<=active_care_plan_length^2/medications_lifetime_dispenses\n", + "2139 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", + "2140 medications_lifetime_perc_covered<=floor(active_care_plan_length)\n", + "2141 medications_lifetime_perc_covered<=floor(active_condition_length)/Protein__Mass_volume__in_Serum,Plasma\n", + "2142 medications_lifetime_perc_covered<=(lifetime_conditions+1)/mean_Urea_Nitrogen\n", + "2143 medications_lifetime_perc_covered<=log(2*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "2144 medications_lifetime_perc_covered<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*procedures_lifetime\n", + "2145 medications_lifetime_perc_covered<=DALY*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2146 medications_lifetime_perc_covered<=maximum(Sodium,sqrt(encounters_lifetime_perc_covered))\n", + "2147 medications_lifetime_perc_covered<=floor(1/2*Microalbumin_Creatinine_Ratio)\n", + "2148 medications_lifetime_perc_covered<=(latitude-1)/Estimated_Glomerular_Filtration_Rate\n", + "2149 medications_lifetime_perc_covered<=(DALY^2)^device_lifetime_length\n", + "2150 medications_lifetime_perc_covered<=e^Potassium/Body_Weight\n", + "2151 medications_lifetime_perc_covered<=(log(encounters_count)/log(10))^healthcare_expenses\n", + "2152 medications_lifetime_perc_covered<=2*encounters_count/age\n", + "2153 medications_lifetime_perc_covered<=(log(DALY)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2154 medications_lifetime_perc_covered<=immunizations_lifetime^device_lifetime_length\n", + "2155 medications_lifetime_perc_covered<=log(encounters_count)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2156 medications_lifetime_perc_covered<=(age-1)/Estimated_Glomerular_Filtration_Rate\n", + "2157 medications_lifetime_perc_covered<=(log(Creatinine)/log(10))^device_lifetime_length\n", + "2158 medications_lifetime_perc_covered<=log(QALY)/mean_Creatinine\n", + "2159 medications_lifetime_perc_covered<=-active_condition_length+lifetime_condition_length\n", + "2160 medications_lifetime_perc_covered<=2*DALY+immunizations_lifetime\n", + "2161 medications_lifetime_perc_covered<=1/2*encounters_count/DALY\n", + "2162 medications_lifetime_perc_covered<=(encounters_count-1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2163 medications_lifetime_perc_covered<=2*High_Density_Lipoprotein_Cholesterol/Microalbumin_Creatinine_Ratio\n", + "2164 medications_lifetime_perc_covered<=-medications_lifetime+medications_lifetime_dispenses\n", + "2165 medications_lifetime_perc_covered<=(procedures_lifetime-1)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2166 medications_lifetime_perc_covered<=(Diastolic_Blood_Pressure-1)/MCV__Entitic_volume__by_Automated_count\n", + "2167 medications_lifetime_perc_covered<=immunizations_lifetime^imaging_studies_lifetime\n", + "2168 medications_lifetime_perc_covered<=immunizations_lifetime^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "2169 medications_lifetime_perc_covered<=active_condition_length^2/medications_lifetime_dispenses\n", + "2170 medications_lifetime_perc_covered<=2*DALY/mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "2171 medications_lifetime_perc_covered<=DALY^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2172 medications_lifetime_perc_covered<=1/Urea_Nitrogen+medications_active\n", + "2173 medications_lifetime_perc_covered<=maximum(immunizations_lifetime,lifetime_care_plans-1)\n", + "2174 medications_lifetime_perc_covered<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime\n", + "2175 medications_lifetime_perc_covered<=(2*encounters_lifetime_perc_covered)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2176 medications_lifetime_perc_covered<=-Protein__Mass_volume__in_Serum,Plasma/longitude\n", + "2177 medications_lifetime_perc_covered<=log(DALY)^Microalbumin_Creatinine_Ratio\n", + "2178 medications_lifetime_perc_covered<=floor(Calcium)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2179 medications_lifetime_perc_covered<=sqrt(Total_Cholesterol)/device_lifetime_length\n", + "2180 medications_lifetime_perc_covered<=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/medications_active\n", + "2181 medications_lifetime_perc_covered<=abs(log(active_conditions))\n", + "2182 medications_lifetime_perc_covered<=1/2*healthcare_coverage/encounters_lifetime_total_cost\n", + "2183 medications_lifetime_perc_covered<=sqrt(DALY)+immunizations_lifetime\n", + "2184 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*sqrt(lifetime_care_plans)\n", + "2185 medications_lifetime_perc_covered<=maximum(encounters_lifetime_perc_covered,log(lifetime_care_plans))\n", + "2186 medications_lifetime_perc_covered<=ceil(Potassium)-num_allergies\n", + "2187 medications_lifetime_perc_covered<=(log(device_lifetime_length)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2188 medications_lifetime_perc_covered<=(encounters_count-1)/Body_Mass_Index\n", + "2189 medications_lifetime_perc_covered<=2*QALY/latitude\n", + "2190 medications_lifetime_perc_covered<=1/2*lifetime_care_plan_length/procedures_lifetime\n", + "2191 medications_lifetime_perc_covered<=maximum(QOLS,log(active_conditions)/log(10))\n", + "2192 medications_lifetime_perc_covered<=2*encounters_count/High_Density_Lipoprotein_Cholesterol\n", + "2193 medications_lifetime_perc_covered<=Carbon_Dioxide*encounters_lifetime_perc_covered^2\n", + "2194 medications_lifetime_perc_covered<=(procedures_lifetime-1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2195 medications_lifetime_perc_covered<=Respiratory_rate^2/Total_Cholesterol\n", + "2196 medications_lifetime_perc_covered>=-device_lifetime_length\n", + "2197 medications_lifetime_perc_covered>=-healthcare_coverage\n", + "2198 medications_lifetime_perc_covered>=-num_allergies\n", + "2199 medications_lifetime_perc_covered>=-active_conditions\n", + "2200 medications_lifetime_perc_covered>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2-QOLS\n", + "2201 medications_lifetime_perc_covered>=-Respiratory_rate+log(healthcare_coverage)\n", + "2202 medications_lifetime_perc_covered>=-Urea_Nitrogen+log(encounters_lifetime_payer_coverage)\n", + "2203 medications_lifetime_perc_covered>=-Calcium+log(encounters_lifetime_payer_coverage)\n", + "2204 medications_lifetime_perc_covered>=log(device_lifetime_length)/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2205 medications_lifetime_perc_covered>=-Creatinine+QOLS\n", + "2206 medications_lifetime_perc_covered>=2*imaging_studies_lifetime/Respiratory_rate\n", + "2207 medications_lifetime_perc_covered>=maximum(Glucose__Mass_volume__in_Urine_by_Test_strip,-Estimated_Glomerular_Filtration_Rate)\n", + "2208 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "2209 medications_lifetime_perc_covered>=log(encounters_lifetime_payer_coverage)-mean_Calcium\n", + "2210 medications_lifetime_perc_covered>=floor(Body_Weight)-mean_Body_Weight\n", + "2211 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2212 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2213 medications_lifetime_perc_covered>=-Carbon_Dioxide+Urea_Nitrogen+1\n", + "2214 medications_lifetime_perc_covered>=log(encounters_lifetime_total_cost)/log(10)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "2215 medications_lifetime_perc_covered>=-Erythrocytes____volume__in_Blood_by_Automated_count+log(age)\n", + "2216 medications_lifetime_perc_covered>=log(immunizations_lifetime)/(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*log(10))\n", + "2217 medications_lifetime_perc_covered>=sqrt(num_allergies)-active_care_plans\n", + "2218 medications_lifetime_perc_covered>=sqrt(num_allergies)-medications_active\n", + "2219 medications_lifetime_perc_covered>=sqrt(immunizations_lifetime_cost)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2220 medications_lifetime_perc_covered>=(immunizations_lifetime-1)/mean_Microalbumin_Creatinine_Ratio\n", + "2221 medications_lifetime_perc_covered>=1/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime\n", + "2222 medications_lifetime_perc_covered>=minimum(imaging_studies_lifetime,log(medications_active)/log(10))\n", + "2223 medications_lifetime_perc_covered>=-Diastolic_Blood_Pressure+QALY-1\n", + "2224 medications_lifetime_perc_covered>=sqrt(DALY)-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2225 medications_lifetime_perc_covered>=imaging_studies_lifetime*log(Creatinine)/log(10)\n", + "2226 medications_lifetime_length<=log(healthcare_expenses)*medications_lifetime_dispenses/log(10)\n", + "2227 medications_lifetime_length<=medications_lifetime_cost\n", + "2228 medications_lifetime_length<=(Creatinine+1)*healthcare_coverage\n", + "2229 medications_lifetime_length<=floor(medications_lifetime_cost)-medications_lifetime_dispenses\n", + "2230 medications_lifetime_length<=sqrt(encounters_count)^medications_lifetime_dispenses\n", + "2231 medications_lifetime_length<=1/2*healthcare_coverage+mean_Estimated_Glomerular_Filtration_Rate\n", + "2232 medications_lifetime_length<=2*Glucose*mean_Triglycerides\n", + "2233 medications_lifetime_length<=sqrt(Body_Mass_Index)*medications_lifetime_dispenses\n", + "2234 medications_lifetime_length<=log(Systolic_Blood_Pressure)*medications_lifetime_dispenses\n", + "2235 medications_lifetime_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/medications_active\n", + "2236 medications_lifetime_length<=mean_Erythrocytes____volume__in_Blood_by_Automated_count*medications_lifetime_dispenses\n", + "2237 medications_lifetime_length<=Sodium*e^active_conditions\n", + "2238 medications_lifetime_length<=healthcare_coverage^2/QALY\n", + "2239 medications_lifetime_length<=Body_Weight^2+encounters_lifetime_total_cost\n", + "2240 medications_lifetime_length<=(latitude^2)^medications_lifetime\n", + "2241 medications_lifetime_length<=10^Potassium/encounters_lifetime_perc_covered\n", + "2242 medications_lifetime_length<=Total_Cholesterol*floor(lifetime_condition_length)\n", + "2243 medications_lifetime_length<=(1/2*Potassium)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2244 medications_lifetime_length<=(lifetime_care_plan_length-1)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2245 medications_lifetime_length<=e^Microalbumin_Creatinine_Ratio*medications_lifetime_dispenses\n", + "2246 medications_lifetime_length<=sqrt(age)*medications_lifetime_dispenses\n", + "2247 medications_lifetime_length<=(log(QALY)/log(10))^medications_lifetime_dispenses\n", + "2248 medications_lifetime_length<=(lifetime_care_plan_length-1)*Protein__Mass_volume__in_Serum,Plasma\n", + "2249 medications_lifetime_length<=Urea_Nitrogen*lifetime_care_plan_length^2\n", + "2250 medications_lifetime_length<=10^encounters_count/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2251 medications_lifetime_length<=sqrt(Low_Density_Lipoprotein_Cholesterol)*encounters_lifetime_payer_coverage\n", + "2252 medications_lifetime_length<=log(Triglycerides)*medications_lifetime_dispenses\n", + "2253 medications_lifetime_length<=maximum(encounters_lifetime_total_cost,1/device_lifetime_length)\n", + "2254 medications_lifetime_length<=sqrt(encounters_count)^age\n", + "2255 medications_lifetime_length<=1/2*encounters_lifetime_total_cost/imaging_studies_lifetime\n", + "2256 medications_lifetime_length<=sqrt(Sodium)^Potassium\n", + "2257 medications_lifetime_length<=encounters_lifetime_total_cost*log(Systolic_Blood_Pressure)\n", + "2258 medications_lifetime_length<=MCH__Entitic_mass__by_Automated_count^medications_lifetime\n", + "2259 medications_lifetime_length<=log(Chloride)*medications_lifetime_dispenses\n", + "2260 medications_lifetime_length<=10^procedures_lifetime*healthcare_coverage\n", + "2261 medications_lifetime_length<=encounters_lifetime_total_cost^2/age\n", + "2262 medications_lifetime_length<=encounters_lifetime_total_cost^2/immunizations_lifetime_cost\n", + "2263 medications_lifetime_length<=(encounters_lifetime_payer_coverage+1)*mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2264 medications_lifetime_length<=sqrt(Carbon_Dioxide)*medications_lifetime_dispenses\n", + "2265 medications_lifetime_length<=2*encounters_lifetime_payer_coverage/medications_lifetime_perc_covered\n", + "2266 medications_lifetime_length<=sqrt(Urea_Nitrogen)^encounters_count\n", + "2267 medications_lifetime_length<=10^Globulin__Mass_volume__in_Serum_by_calculation*latitude\n", + "2268 medications_lifetime_length<=1/2*healthcare_expenses/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "2269 medications_lifetime_length<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "2270 medications_lifetime_length<=encounters_lifetime_payer_coverage*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "2271 medications_lifetime_length>=num_allergies\n", + "2272 medications_lifetime_length>=sqrt(lifetime_care_plans)*medications_lifetime_dispenses\n", + "2273 medications_lifetime_length>=log(lifetime_condition_length)*medications_lifetime/log(10)\n", + "2274 medications_lifetime_length>=ceil(medications_lifetime_cost)/Glucose\n", + "2275 medications_lifetime_length>=(medications_lifetime_cost+1)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2276 medications_lifetime_length>=encounters_lifetime_payer_coverage*log(medications_active)/log(10)\n", + "2277 medications_lifetime_length>=device_lifetime_length^2-immunizations_lifetime_cost\n", + "2278 medications_lifetime_length>=1/2*active_care_plans*medications_lifetime_dispenses\n", + "2279 medications_lifetime_length>=log(Carbon_Dioxide)*medications_lifetime_dispenses\n", + "2280 medications_lifetime_length>=ceil(medications_lifetime_cost)/Systolic_Blood_Pressure\n", + "2281 medications_lifetime_length>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)*medications_lifetime_dispenses\n", + "2282 medications_lifetime_length>=e^imaging_studies_lifetime*medications_lifetime_dispenses\n", + "2283 medications_lifetime_length>=2*medications_lifetime_cost/Total_Cholesterol\n", + "2284 medications_lifetime_length>=floor(DALY)*mean_Microalbumin_Creatinine_Ratio\n", + "2285 medications_lifetime_length>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*medications_lifetime_dispenses\n", + "2286 medications_lifetime_length>=lifetime_care_plan_length^2/Microalbumin_Creatinine_Ratio\n", + "2287 medications_lifetime_length>=(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "2288 medications_lifetime_length>=log(DALY)*medications_lifetime_dispenses\n", + "2289 medications_lifetime_length>=medications_lifetime_dispenses^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2290 medications_lifetime_length>=medications_active+medications_lifetime_dispenses\n", + "2291 medications_lifetime_length>=latitude*log(medications_lifetime)\n", + "2292 medications_lifetime_length>=Total_Cholesterol^2/Chloride\n", + "2293 medications_lifetime_length>=Chloride*ceil(device_lifetime_length)\n", + "2294 medications_lifetime_length>=Glomerular_filtration_rate_1_73_sq_M_predicted*lifetime_conditions\n", + "2295 medications_lifetime_length>=ceil(Calcium)*medications_lifetime\n", + "2296 medications_lifetime_length>=log(lifetime_condition_length)*medications_lifetime_dispenses/log(10)\n", + "2297 medications_lifetime_length>=latitude^2+Globulin__Mass_volume__in_Serum_by_calculation\n", + "2298 medications_lifetime_length>=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*medications_lifetime\n", + "2299 medications_lifetime_length>=Microalbumin_Creatinine_Ratio^2*imaging_studies_lifetime\n", + "2300 medications_lifetime_length>=medications_lifetime_dispenses^2/encounters_lifetime_total_cost\n", + "2301 medications_lifetime_length>=Microalbumin_Creatinine_Ratio^2/mean_Potassium\n", + "2302 medications_lifetime_length>=sqrt(medications_lifetime_cost)*num_allergies\n", + "2303 medications_lifetime_length>=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*encounters_count\n", + "2304 medications_lifetime_length>=sqrt(healthcare_expenses)*medications_lifetime_perc_covered\n", + "2305 medications_lifetime_length>=lifetime_care_plan_length*num_allergies^2\n", + "2306 medications_lifetime_length>=Body_Height*num_allergies^2\n", + "2307 medications_lifetime_length>=-active_condition_length+2*medications_lifetime_dispenses\n", + "2308 medications_lifetime_length>=10^Albumin__Mass_volume__in_Serum,Plasma/mean_Protein__Mass_volume__in_Serum,Plasma\n", + "2309 medications_lifetime_length>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*sqrt(active_care_plans)\n", + "2310 medications_lifetime_length>=10^immunizations_lifetime*Microalbumin_Creatinine_Ratio\n", + "2311 medications_lifetime_length>=log(Body_Mass_Index)*medications_lifetime/log(10)\n", + "2312 medications_lifetime_length>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime_perc_covered\n", + "2313 medications_lifetime_length>=-encounters_lifetime_payer_coverage+2*medications_lifetime_dispenses\n", + "2314 medications_lifetime_length>=2*imaging_studies_lifetime*lifetime_condition_length\n", + "2315 medications_lifetime_length>=lifetime_condition_length^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2316 medications_lifetime_length>=Body_Height*sqrt(device_lifetime_length)\n", + "2317 medications_lifetime_length>=(medications_lifetime-1)*procedures_lifetime\n", + "2318 medications_lifetime_length>=medications_lifetime^2/Low_Density_Lipoprotein_Cholesterol\n", + "2319 medications_lifetime_length>=log(medications_lifetime)*medications_lifetime_dispenses/log(10)\n", + "2320 medications_lifetime_length>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*medications_lifetime_dispenses\n", + "2321 medications_lifetime_length>=sqrt(medications_active)*medications_lifetime_dispenses\n", + "2322 medications_lifetime_length>=2*medications_lifetime_dispenses/Creatinine\n", + "2323 medications_lifetime_length>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)*medications_lifetime_dispenses\n", + "2324 medications_lifetime_length>=DALY*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "2325 medications_lifetime_dispenses<=maximum(latitude,1/2*medications_lifetime_length)\n", + "2326 medications_lifetime_dispenses<=medications_lifetime_cost\n", + "2327 medications_lifetime_dispenses<=1/2*encounters_lifetime_payer_coverage/imaging_studies_lifetime\n", + "2328 medications_lifetime_dispenses<=2*medications_lifetime_length/active_care_plans\n", + "2329 medications_lifetime_dispenses<=2*medications_lifetime_cost/DALY\n", + "2330 medications_lifetime_dispenses<=floor(medications_lifetime_length)\n", + "2331 medications_lifetime_dispenses<=encounters_lifetime_total_cost*log(Respiratory_rate)/log(10)\n", + "2332 medications_lifetime_dispenses<=1/2*Glucose*Triglycerides\n", + "2333 medications_lifetime_dispenses<=active_care_plan_length^2-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2334 medications_lifetime_dispenses<=e^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/healthcare_expenses\n", + "2335 medications_lifetime_dispenses<=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*mean_Chloride\n", + "2336 medications_lifetime_dispenses<=Body_Weight*Leukocytes____volume__in_Blood_by_Automated_count^2\n", + "2337 medications_lifetime_dispenses<=1/2*10^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "2338 medications_lifetime_dispenses<=1/2*encounters_lifetime_payer_coverage-mean_Microalbumin_Creatinine_Ratio\n", + "2339 medications_lifetime_dispenses<=age^2/encounters_lifetime_perc_covered\n", + "2340 medications_lifetime_dispenses<=Carbon_Dioxide*sqrt(healthcare_coverage)\n", + "2341 medications_lifetime_dispenses<=2*healthcare_coverage/device_lifetime_length\n", + "2342 medications_lifetime_dispenses<=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)*encounters_lifetime_total_cost\n", + "2343 medications_lifetime_dispenses<=Microalbumin_Creatinine_Ratio^2+procedures_lifetime_cost\n", + "2344 medications_lifetime_dispenses<=(medications_lifetime_cost-1)/mean_Microalbumin_Creatinine_Ratio\n", + "2345 medications_lifetime_dispenses<=2*QALY*age\n", + "2346 medications_lifetime_dispenses<=(medications_active+1)*Platelets____volume__in_Blood_by_Automated_count\n", + "2347 medications_lifetime_dispenses<=ceil(age)^encounters_count\n", + "2348 medications_lifetime_dispenses<=10^medications_lifetime*latitude\n", + "2349 medications_lifetime_dispenses<=2*age+healthcare_coverage\n", + "2350 medications_lifetime_dispenses<=sqrt(Low_Density_Lipoprotein_Cholesterol)*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2351 medications_lifetime_dispenses<=(encounters_count-1)*Triglycerides\n", + "2352 medications_lifetime_dispenses<=Sodium*e^medications_lifetime\n", + "2353 medications_lifetime_dispenses<=encounters_lifetime_payer_coverage^2/Platelets____volume__in_Blood_by_Automated_count\n", + "2354 medications_lifetime_dispenses<=maximum(lifetime_condition_length,1/2*medications_lifetime_length)\n", + "2355 medications_lifetime_dispenses<=1/2*encounters_lifetime_payer_coverage/medications_lifetime_perc_covered\n", + "2356 medications_lifetime_dispenses<=floor(medications_lifetime_length)-medications_active\n", + "2357 medications_lifetime_dispenses<=(1/2*Sodium)^Microalbumin_Creatinine_Ratio\n", + "2358 medications_lifetime_dispenses<=floor(medications_lifetime_cost)-medications_lifetime_length\n", + "2359 medications_lifetime_dispenses<=floor(medications_lifetime_cost)/procedures_lifetime\n", + "2360 medications_lifetime_dispenses<=e^Calcium/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2361 medications_lifetime_dispenses<=2*medications_lifetime_length/num_allergies\n", + "2362 medications_lifetime_dispenses<=ceil(encounters_lifetime_total_cost)/encounters_lifetime_perc_covered\n", + "2363 medications_lifetime_dispenses<=active_care_plan_length^2/medications_lifetime_perc_covered\n", + "2364 medications_lifetime_dispenses<=Globulin__Mass_volume__in_Serum_by_calculation^mean_Calcium\n", + "2365 medications_lifetime_dispenses<=1/2*Body_Weight*Diastolic_Blood_Pressure\n", + "2366 medications_lifetime_dispenses<=Calcium^2*QALY\n", + "2367 medications_lifetime_dispenses<=active_care_plan_length^2*mean_Potassium\n", + "2368 medications_lifetime_dispenses<=(QALY+1)*Systolic_Blood_Pressure\n", + "2369 medications_lifetime_dispenses<=e^active_care_plans*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2370 medications_lifetime_dispenses<=Bilirubin_total__Mass_volume__in_Serum,Plasma*Chloride^2\n", + "2371 medications_lifetime_dispenses<=(1/2*Leukocytes____volume__in_Blood_by_Automated_count)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2372 medications_lifetime_dispenses<=lifetime_condition_length^2+MCHC__Mass_volume__by_Automated_count\n", + "2373 medications_lifetime_dispenses<=e^medications_lifetime/Estimated_Glomerular_Filtration_Rate\n", + "2374 medications_lifetime_dispenses<=e^active_care_plan_length/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2375 medications_lifetime_dispenses<=age^2+encounters_lifetime_payer_coverage\n", + "2376 medications_lifetime_dispenses<=(Estimated_Glomerular_Filtration_Rate^2)^Creatinine\n", + "2377 medications_lifetime_dispenses<=sqrt(medications_lifetime_cost)+encounters_lifetime_total_cost\n", + "2378 medications_lifetime_dispenses<=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^High_Density_Lipoprotein_Cholesterol\n", + "2379 medications_lifetime_dispenses<=e^Calcium/device_lifetime_length\n", + "2380 medications_lifetime_dispenses<=age^2+Systolic_Blood_Pressure\n", + "2381 medications_lifetime_dispenses<=Total_Cholesterol+2*encounters_lifetime_payer_coverage\n", + "2382 medications_lifetime_dispenses<=10^active_conditions*Body_Height\n", + "2383 medications_lifetime_dispenses<=10^active_conditions/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2384 medications_lifetime_dispenses<=Low_Density_Lipoprotein_Cholesterol*e^active_conditions\n", + "2385 medications_lifetime_dispenses<=(1/medications_lifetime_perc_covered)^MCHC__Mass_volume__by_Automated_count\n", + "2386 medications_lifetime_dispenses<=(Low_Density_Lipoprotein_Cholesterol^2)^mean_Creatinine\n", + "2387 medications_lifetime_dispenses<=2*Carbon_Dioxide*Glucose\n", + "2388 medications_lifetime_dispenses<=active_condition_length^2/medications_lifetime_perc_covered\n", + "2389 medications_lifetime_dispenses<=lifetime_condition_length^2/device_lifetime_length\n", + "2390 medications_lifetime_dispenses<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/Respiratory_rate\n", + "2391 medications_lifetime_dispenses>=num_allergies\n", + "2392 medications_lifetime_dispenses>=2*active_care_plan_length*medications_active\n", + "2393 medications_lifetime_dispenses>=medications_lifetime\n", + "2394 medications_lifetime_dispenses>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*mean_High_Density_Lipoprotein_Cholesterol\n", + "2395 medications_lifetime_dispenses>=ceil(medications_lifetime_length)/mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2396 medications_lifetime_dispenses>=(lifetime_care_plan_length+1)*medications_active\n", + "2397 medications_lifetime_dispenses>=maximum(Glucose,Microalbumin_Creatinine_Ratio)\n", + "2398 medications_lifetime_dispenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Creatinine\n", + "2399 medications_lifetime_dispenses>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*medications_lifetime\n", + "2400 medications_lifetime_dispenses>=sqrt(healthcare_coverage)*num_allergies\n", + "2401 medications_lifetime_dispenses>=lifetime_conditions*log(medications_lifetime_length)/log(10)\n", + "2402 medications_lifetime_dispenses>=MCV__Entitic_volume__by_Automated_count*log(lifetime_care_plan_length)/log(10)\n", + "2403 medications_lifetime_dispenses>=ceil(medications_lifetime_cost)/encounters_lifetime_total_cost\n", + "2404 medications_lifetime_dispenses>=2*medications_lifetime_length/QALY\n", + "2405 medications_lifetime_dispenses>=2*age*imaging_studies_lifetime\n", + "2406 medications_lifetime_dispenses>=2*medications_lifetime_cost/healthcare_coverage\n", + "2407 medications_lifetime_dispenses>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Calcium\n", + "2408 medications_lifetime_dispenses>=2*medications_lifetime_length/Respiratory_rate\n", + "2409 medications_lifetime_dispenses>=Carbon_Dioxide^2/Microalbumin_Creatinine_Ratio\n", + "2410 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Potassium\n", + "2411 medications_lifetime_dispenses>=(log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^Calcium\n", + "2412 medications_lifetime_dispenses>=2*medications_lifetime_length/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2413 medications_lifetime_dispenses>=(Body_Height+1)*num_allergies\n", + "2414 medications_lifetime_dispenses>=(medications_lifetime-1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2415 medications_lifetime_dispenses>=2*immunizations_lifetime_cost*medications_lifetime_perc_covered\n", + "2416 medications_lifetime_dispenses>=sqrt(Triglycerides)*medications_active\n", + "2417 medications_lifetime_dispenses>=ceil(Microalbumin_Creatinine_Ratio)*mean_Creatinine\n", + "2418 medications_lifetime_dispenses>=sqrt(healthcare_coverage)*medications_lifetime_perc_covered\n", + "2419 medications_lifetime_dispenses>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2420 medications_lifetime_dispenses>=ceil(Albumin__Mass_volume__in_Serum,Plasma)*immunizations_lifetime_cost\n", + "2421 medications_lifetime_dispenses>=2*Glomerular_filtration_rate_1_73_sq_M_predicted/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2422 medications_lifetime_dispenses>=log(DALY)*mean_Microalbumin_Creatinine_Ratio\n", + "2423 medications_lifetime_dispenses>=log(Calcium)*medications_lifetime\n", + "2424 medications_lifetime_dispenses>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*log(medications_lifetime)\n", + "2425 medications_lifetime_dispenses>=Microalbumin_Creatinine_Ratio^2/mean_Estimated_Glomerular_Filtration_Rate\n", + "2426 medications_lifetime_dispenses>=2*medications_lifetime_length/latitude\n", + "2427 medications_lifetime_dispenses>=log(healthcare_expenses)*medications_active/log(10)\n", + "2428 medications_lifetime_dispenses>=device_lifetime_length*log(medications_lifetime_cost)\n", + "2429 medications_lifetime_dispenses>=2*latitude*num_allergies\n", + "2430 medications_lifetime_dispenses>=log(medications_lifetime)*procedures_lifetime\n", + "2431 medications_lifetime_dispenses>=encounters_count*num_allergies^2\n", + "2432 medications_lifetime_dispenses>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*num_allergies\n", + "2433 medications_lifetime_dispenses>=2*lifetime_condition_length*num_allergies\n", + "2434 medications_lifetime_dispenses>=-Calcium+e^active_care_plans\n", + "2435 medications_lifetime_dispenses>=e^lifetime_care_plans+mean_Microalbumin_Creatinine_Ratio\n", + "2436 medications_lifetime_dispenses>=sqrt(device_lifetime_length)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2437 medications_lifetime_dispenses>=2*active_conditions*medications_active\n", + "2438 medications_lifetime_dispenses>=num_allergies*sqrt(procedures_lifetime_cost)\n", + "2439 medications_lifetime_dispenses>=Hemoglobin__Mass_volume__in_Blood*lifetime_care_plans^2\n", + "2440 medications_lifetime_dispenses>=active_condition_length*log(medications_lifetime)\n", + "2441 medications_lifetime_dispenses>=Systolic_Blood_Pressure+log(device_lifetime_length)\n", + "2442 medications_lifetime_dispenses>=lifetime_condition_length+log(device_lifetime_length)\n", + "2443 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2444 medications_lifetime_dispenses>=active_care_plan_length*log(medications_lifetime)\n", + "2445 medications_lifetime_dispenses>=Systolic_Blood_Pressure*log(medications_active)\n", + "2446 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost)-mean_Heart_rate\n", + "2447 medications_lifetime_dispenses>=log(medications_lifetime_perc_covered)/log(10)-longitude\n", + "2448 medications_lifetime_dispenses>=(medications_active-1)*lifetime_condition_length\n", + "2449 medications_lifetime_dispenses>=Chloride^2/mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2450 medications_active<=healthcare_coverage\n", + "2451 medications_active<=QOLS*e^medications_lifetime_length\n", + "2452 medications_active<=encounters_count\n", + "2453 medications_active<=medications_lifetime\n", + "2454 medications_active<=active_care_plans+2\n", + "2455 medications_active<=maximum(immunizations_lifetime_cost,log(healthcare_coverage)/log(10))\n", + "2456 medications_active<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2457 medications_active<=floor(Calcium)\n", + "2458 medications_active<=-medications_lifetime+medications_lifetime_dispenses\n", + "2459 medications_active<=floor(Microalbumin_Creatinine_Ratio)\n", + "2460 medications_active<=log(lifetime_care_plans)^Estimated_Glomerular_Filtration_Rate\n", + "2461 medications_active<=10^active_care_plans\n", + "2462 medications_active<=floor(Carbon_Dioxide)-lifetime_conditions\n", + "2463 medications_active<=sqrt(medications_lifetime)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2464 medications_active<=ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "2465 medications_active<=active_care_plans/imaging_studies_lifetime\n", + "2466 medications_active<=ceil(10^Creatinine)\n", + "2467 medications_active<=(Estimated_Glomerular_Filtration_Rate-1)/active_care_plans\n", + "2468 medications_active<=active_care_plans/medications_lifetime_perc_covered\n", + "2469 medications_active<=Respiratory_rate^Creatinine\n", + "2470 medications_active<=lifetime_care_plans+procedures_lifetime+1\n", + "2471 medications_active<=1/device_lifetime_length+DALY\n", + "2472 medications_active<=log(Total_Cholesterol)/log(10)+DALY\n", + "2473 medications_active<=floor(active_care_plan_length)^active_care_plans\n", + "2474 medications_active<=sqrt(lifetime_care_plan_length)-mean_Creatinine\n", + "2475 medications_active<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_care_plan_length\n", + "2476 medications_active<=ceil(log(mean_Estimated_Glomerular_Filtration_Rate))\n", + "2477 medications_active<=1/2*medications_lifetime_dispenses/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2478 medications_active<=floor(active_condition_length)/device_lifetime_length\n", + "2479 medications_active<=ceil(latitude)-procedures_lifetime\n", + "2480 medications_active<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,active_conditions^2)\n", + "2481 medications_active<=encounters_count/immunizations_lifetime\n", + "2482 medications_active<=2*age/procedures_lifetime\n", + "2483 medications_active<=-active_care_plans+ceil(Urea_Nitrogen)\n", + "2484 medications_active<=minimum(healthcare_expenses,log(FEV1_FVC))\n", + "2485 medications_active<=-imaging_studies_lifetime+medications_lifetime\n", + "2486 medications_active<=active_care_plans+immunizations_lifetime+1\n", + "2487 medications_active<=encounters_count-num_allergies+1\n", + "2488 medications_active<=maximum(Sodium,lifetime_care_plans+1)\n", + "2489 medications_active<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,lifetime_care_plans+1)\n", + "2490 medications_active<=immunizations_lifetime_cost+log(age)\n", + "2491 medications_active<=ceil(Potassium)+procedures_lifetime_cost\n", + "2492 medications_active<=-active_conditions+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2493 medications_active<=minimum(Triglycerides,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2494 medications_active<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/device_lifetime_length\n", + "2495 medications_active<=-DALY+MCHC__Mass_volume__by_Automated_count\n", + "2496 medications_active<=(log(medications_lifetime)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "2497 medications_active<=minimum(Estimated_Glomerular_Filtration_Rate,floor(Globulin__Mass_volume__in_Serum_by_calculation))\n", + "2498 medications_active<=1/2*lifetime_care_plan_length/num_allergies\n", + "2499 medications_active<=-Urea_Nitrogen+ceil(lifetime_care_plan_length)\n", + "2500 medications_active<=(encounters_lifetime_payer_coverage+1)/Total_Cholesterol\n", + "2501 medications_active<=sqrt(encounters_lifetime_total_cost)/active_conditions\n", + "2502 medications_active<=sqrt(medications_lifetime_cost)/active_care_plan_length\n", + "2503 medications_active<=maximum(Respiratory_rate,ceil(Creatinine))\n", + "2504 medications_active<=1/2*medications_lifetime_dispenses/active_care_plan_length\n", + "2505 medications_active<=log(Low_Density_Lipoprotein_Cholesterol)^Creatinine\n", + "2506 medications_active<=-Heart_rate+ceil(Triglycerides)\n", + "2507 medications_active>=imaging_studies_lifetime\n", + "2508 medications_active>=ceil(log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10))\n", + "2509 medications_active>=Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Glomerular_filtration_rate_1_73_sq_M_predicted-1\n", + "2510 medications_active>=floor(sqrt(num_allergies))\n", + "2511 medications_active>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2512 medications_active>=-Heart_rate+floor(QALY)\n", + "2513 medications_active>=num_allergies/medications_lifetime\n", + "2514 medications_active>=minimum(active_care_plans,1/2*num_allergies)\n", + "2515 medications_active>=-active_condition_length+2*num_allergies\n", + "2516 medications_active>=2*num_allergies/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2517 medications_active>=log(active_care_plans)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2518 medications_active>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,floor(num_allergies))\n", + "2519 medications_active>=active_care_plans-active_conditions\n", + "2520 medications_active>=(1/2*medications_lifetime)^Total_score__MMSE_\n", + "2521 medications_active>=1/2*lifetime_care_plan_length/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2522 medications_active>=-lifetime_conditions+log(encounters_count)\n", + "2523 medications_active>=-High_Density_Lipoprotein_Cholesterol+2*Respiratory_rate\n", + "2524 medications_active>=-Estimated_Glomerular_Filtration_Rate+lifetime_conditions+1\n", + "2525 medications_active>=log(MCV__Entitic_volume__by_Automated_count)/log(10)-immunizations_lifetime_cost\n", + "2526 medications_active>=-Diastolic_Blood_Pressure+ceil(active_care_plan_length)\n", + "2527 medications_active>=minimum(device_lifetime_length,10^num_allergies)\n", + "2528 medications_active>=active_care_plan_length-mean_Heart_rate+1\n", + "2529 medications_active>=-Potassium+active_care_plans-1\n", + "2530 medications_active>=-Respiratory_rate+active_conditions-1\n", + "2531 medications_active>=minimum(num_allergies,QOLS)\n", + "2532 medications_active>=(log(Urea_Nitrogen)/log(10))^Albumin__Mass_volume__in_Serum,Plasma\n", + "2533 medications_active>=-encounters_lifetime_payer_coverage+medications_lifetime\n", + "2534 medications_active>=log(active_care_plans)/log(10)-encounters_lifetime_perc_covered\n", + "2535 medications_active>=minimum(num_allergies,procedures_lifetime)\n", + "2536 medications_active>=-Diastolic_Blood_Pressure+QALY+1\n", + "2537 medications_active>=-Body_Weight+QALY+1\n", + "2538 medications_active>=-Leukocytes____volume__in_Blood_by_Automated_count+floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "2539 medications_active>=floor(log(Creatinine))\n", + "2540 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*imaging_studies_lifetime\n", + "2541 medications_active>=Creatinine-Microalbumin_Creatinine_Ratio+1\n", + "2542 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2543 medications_active>=1/2*medications_lifetime_dispenses/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2544 medications_active>=Bilirubin_total__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "2545 medications_active>=ceil(Creatinine)-procedures_lifetime_cost\n", + "2546 medications_active>=floor(log(Calcium)/log(10))\n", + "2547 medications_active>=-QALY+Respiratory_rate-1\n", + "2548 medications_active>=sqrt(medications_lifetime_dispenses)-age\n", + "2549 medications_active>=-Creatinine+log(active_care_plans)\n", + "2550 medications_active>=floor(log(device_lifetime_length)/log(10))\n", + "2551 medications_active>=1/2*latitude-mean_Estimated_Glomerular_Filtration_Rate\n", + "2552 medications_active>=1/Creatinine-procedures_lifetime\n", + "2553 medications_active>=2*active_care_plans-lifetime_care_plan_length\n", + "2554 medications_active>=2*active_care_plans-encounters_count\n", + "2555 medications_active>=sqrt(lifetime_care_plans)-lifetime_care_plan_length\n", + "2556 medications_active>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(QOLS)\n", + "2557 medications_active>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*lifetime_conditions\n", + "2558 medications_active>=sqrt(device_lifetime_length)/medications_lifetime\n", + "2559 medications_active>=minimum(active_care_plans,floor(encounters_lifetime_perc_covered))\n", + "2560 medications_active>=2*QOLS*imaging_studies_lifetime\n", + "2561 medications_active>=-active_care_plans+immunizations_lifetime-1\n", + "2562 medications_active>=log(medications_lifetime_length)/log(10)-encounters_count\n", + "2563 medications_active>=(2*QOLS)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2564 medications_active>=-MCHC__Mass_volume__by_Automated_count+1/2*QALY\n", + "2565 medications_active>=-Calcium+1/2*Urea_Nitrogen\n", + "2566 procedures_lifetime<=floor(latitude)-1\n", + "2567 procedures_lifetime<=encounters_lifetime_total_cost\n", + "2568 procedures_lifetime<=procedures_lifetime_cost\n", + "2569 procedures_lifetime<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_conditions-1)\n", + "2570 procedures_lifetime<=encounters_count^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2571 procedures_lifetime<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/QOLS\n", + "2572 procedures_lifetime<=floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)-1\n", + "2573 procedures_lifetime<=procedures_lifetime_cost/lifetime_condition_length\n", + "2574 procedures_lifetime<=floor(procedures_lifetime_cost)/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2575 procedures_lifetime<=10^healthcare_coverage\n", + "2576 procedures_lifetime<=floor(e^encounters_count)\n", + "2577 procedures_lifetime<=sqrt(encounters_lifetime_payer_coverage)+active_conditions\n", + "2578 procedures_lifetime<=10^encounters_lifetime_payer_coverage\n", + "2579 procedures_lifetime<=floor(Estimated_Glomerular_Filtration_Rate)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2580 procedures_lifetime<=1/2*procedures_lifetime_cost/Sodium\n", + "2581 procedures_lifetime<=2*floor(Microalbumin_Creatinine_Ratio)\n", + "2582 procedures_lifetime<=encounters_count^2/active_conditions\n", + "2583 procedures_lifetime<=lifetime_conditions^Sodium\n", + "2584 procedures_lifetime<=1/2*procedures_lifetime_cost/Systolic_Blood_Pressure\n", + "2585 procedures_lifetime<=maximum(Sodium,1/imaging_studies_lifetime)\n", + "2586 procedures_lifetime<=(1/2*active_conditions)^Sodium\n", + "2587 procedures_lifetime<=log(High_Density_Lipoprotein_Cholesterol)^mean_Creatinine\n", + "2588 procedures_lifetime<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,sqrt(Low_Density_Lipoprotein_Cholesterol))\n", + "2589 procedures_lifetime<=ceil(sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", + "2590 procedures_lifetime<=ceil(Estimated_Glomerular_Filtration_Rate+1)\n", + "2591 procedures_lifetime<=maximum(medications_lifetime_length,2*encounters_count)\n", + "2592 procedures_lifetime<=2*DALY*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2593 procedures_lifetime<=e^active_care_plans/num_allergies\n", + "2594 procedures_lifetime<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(lifetime_care_plan_length)\n", + "2595 procedures_lifetime<=2*active_care_plan_length/device_lifetime_length\n", + "2596 procedures_lifetime<=10^DALY/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2597 procedures_lifetime<=1/2*active_care_plan_length/num_allergies\n", + "2598 procedures_lifetime<=1/2*procedures_lifetime_cost/encounters_count\n", + "2599 procedures_lifetime<=10^(10^active_conditions)\n", + "2600 procedures_lifetime<=medications_lifetime/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2601 procedures_lifetime<=(encounters_count+1)/immunizations_lifetime\n", + "2602 procedures_lifetime<=minimum(healthcare_expenses,2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2603 procedures_lifetime<=medications_lifetime_dispenses^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2604 procedures_lifetime<=10^active_care_plans/Potassium\n", + "2605 procedures_lifetime<=(e^Body_Mass_Index)^encounters_lifetime_perc_covered\n", + "2606 procedures_lifetime<=10^active_care_plans+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2607 procedures_lifetime<=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)/medications_active\n", + "2608 procedures_lifetime<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2609 procedures_lifetime<=maximum(Sodium,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2610 procedures_lifetime<=encounters_lifetime_total_cost^2/medications_lifetime_cost\n", + "2611 procedures_lifetime<=2*immunizations_lifetime+medications_lifetime_cost\n", + "2612 procedures_lifetime<=1/2*procedures_lifetime_cost/lifetime_care_plan_length\n", + "2613 procedures_lifetime>=-device_lifetime_length\n", + "2614 procedures_lifetime>=active_care_plans-healthcare_coverage\n", + "2615 procedures_lifetime>=-num_allergies\n", + "2616 procedures_lifetime>=-active_conditions\n", + "2617 procedures_lifetime>=floor(encounters_lifetime_perc_covered)\n", + "2618 procedures_lifetime>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2619 procedures_lifetime>=log(log(procedures_lifetime_cost))/log(10)\n", + "2620 procedures_lifetime>=-Heart_rate+floor(QALY)\n", + "2621 procedures_lifetime>=-active_condition_length+lifetime_conditions-1\n", + "2622 procedures_lifetime>=minimum(procedures_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "2623 procedures_lifetime>=-Microalbumin_Creatinine_Ratio+log(Body_Mass_Index)\n", + "2624 procedures_lifetime>=MCHC__Mass_volume__by_Automated_count-immunizations_lifetime_cost+1\n", + "2625 procedures_lifetime>=-Estimated_Glomerular_Filtration_Rate+lifetime_conditions\n", + "2626 procedures_lifetime>=minimum(device_lifetime_length,imaging_studies_lifetime)\n", + "2627 procedures_lifetime>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-QALY-1\n", + "2628 procedures_lifetime>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)*device_lifetime_length\n", + "2629 procedures_lifetime>=sqrt(lifetime_conditions)-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2630 procedures_lifetime>=2*procedures_lifetime_cost/healthcare_expenses\n", + "2631 procedures_lifetime>=ceil(Creatinine)*imaging_studies_lifetime\n", + "2632 procedures_lifetime>=-active_care_plan_length+immunizations_lifetime\n", + "2633 procedures_lifetime>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*lifetime_conditions\n", + "2634 procedures_lifetime>=log(Urea_Nitrogen)/log(10)-medications_lifetime\n", + "2635 procedures_lifetime>=1/2*imaging_studies_lifetime*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2636 procedures_lifetime>=minimum(procedures_lifetime_cost,QOLS)\n", + "2637 procedures_lifetime>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,-Estimated_Glomerular_Filtration_Rate)\n", + "2638 procedures_lifetime>=minimum(mean_Globulin__Mass_volume__in_Serum_by_calculation,-Triglycerides)\n", + "2639 procedures_lifetime>=-Total_Cholesterol+1/2*lifetime_care_plan_length\n", + "2640 procedures_lifetime>=-active_care_plans+lifetime_care_plans-1\n", + "2641 procedures_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-encounters_count\n", + "2642 procedures_lifetime>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-immunizations_lifetime_cost\n", + "2643 procedures_lifetime>=immunizations_lifetime^2-medications_lifetime_cost\n", + "2644 procedures_lifetime>=Respiratory_rate^2-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2645 procedures_lifetime>=log(medications_lifetime_dispenses)/log(10)-active_care_plan_length\n", + "2646 procedures_lifetime>=-Body_Weight+ceil(QALY)\n", + "2647 procedures_lifetime>=-active_care_plan_length+floor(Calcium)\n", + "2648 procedures_lifetime>=sqrt(Heart_rate)-Calcium\n", + "2649 procedures_lifetime>=floor(log(device_lifetime_length)/log(10))\n", + "2650 procedures_lifetime>=-Diastolic_Blood_Pressure+1/2*Sodium\n", + "2651 procedures_lifetime>=latitude*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2652 procedures_lifetime_cost<=1/4*encounters_lifetime_total_cost^2\n", + "2653 procedures_lifetime_cost<=encounters_lifetime_total_cost^2\n", + "2654 procedures_lifetime_cost<=(Systolic_Blood_Pressure^2)^procedures_lifetime\n", + "2655 procedures_lifetime_cost<=e^Respiratory_rate/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2656 procedures_lifetime_cost<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*Glomerular_filtration_rate_1_73_sq_M_predicted^2\n", + "2657 procedures_lifetime_cost<=e^ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "2658 procedures_lifetime_cost<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Estimated_Glomerular_Filtration_Rate\n", + "2659 procedures_lifetime_cost<=(10^Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Creatinine\n", + "2660 procedures_lifetime_cost<=encounters_lifetime_total_cost^2/encounters_count\n", + "2661 procedures_lifetime_cost<=(10^procedures_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2662 procedures_lifetime_cost<=Diastolic_Blood_Pressure^2*age\n", + "2663 procedures_lifetime_cost<=-Estimated_Glomerular_Filtration_Rate+medications_lifetime_cost-1\n", + "2664 procedures_lifetime_cost<=(1/2*healthcare_expenses)^mean_Creatinine\n", + "2665 procedures_lifetime_cost<=sqrt(healthcare_expenses)^encounters_count\n", + "2666 procedures_lifetime_cost<=1/2*encounters_lifetime_total_cost/imaging_studies_lifetime\n", + "2667 procedures_lifetime_cost<=10^Microalbumin_Creatinine_Ratio*Glucose\n", + "2668 procedures_lifetime_cost<=Diastolic_Blood_Pressure^2*mean_High_Density_Lipoprotein_Cholesterol\n", + "2669 procedures_lifetime_cost<=(MCH__Entitic_mass__by_Automated_count^2)^procedures_lifetime\n", + "2670 procedures_lifetime_cost<=(procedures_lifetime+1)^Respiratory_rate\n", + "2671 procedures_lifetime_cost<=(2*Body_Mass_Index)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2672 procedures_lifetime_cost<=floor(medications_lifetime_cost)/medications_lifetime_perc_covered\n", + "2673 procedures_lifetime_cost<=encounters_lifetime_total_cost*floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2674 procedures_lifetime_cost<=log(medications_lifetime_cost)^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "2675 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", + "2676 procedures_lifetime_cost<=10^Potassium/imaging_studies_lifetime\n", + "2677 procedures_lifetime_cost<=1/2*Low_Density_Lipoprotein_Cholesterol*encounters_lifetime_total_cost\n", + "2678 procedures_lifetime_cost<=Glucose*age^2\n", + "2679 procedures_lifetime_cost<=1/2*Glucose*encounters_lifetime_total_cost\n", + "2680 procedures_lifetime_cost<=Glucose*e^encounters_count\n", + "2681 procedures_lifetime_cost<=e^Carbon_Dioxide/healthcare_coverage\n", + "2682 procedures_lifetime_cost<=(log(Protein__Mass_volume__in_Serum,Plasma)/log(10))^encounters_count\n", + "2683 procedures_lifetime_cost<=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^QALY\n", + "2684 procedures_lifetime_cost<=10^active_conditions-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2685 procedures_lifetime_cost<=10^active_conditions*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2686 procedures_lifetime_cost<=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^Diastolic_Blood_Pressure\n", + "2687 procedures_lifetime_cost<=e^active_conditions/imaging_studies_lifetime\n", + "2688 procedures_lifetime_cost<=encounters_lifetime_total_cost^2/DALY\n", + "2689 procedures_lifetime_cost<=(Triglycerides^2)^procedures_lifetime\n", + "2690 procedures_lifetime_cost<=10^medications_lifetime/medications_lifetime_perc_covered\n", + "2691 procedures_lifetime_cost<=(log(medications_lifetime_cost)/log(10))^age\n", + "2692 procedures_lifetime_cost<=medications_lifetime_dispenses^2/num_allergies\n", + "2693 procedures_lifetime_cost<=(2*Creatinine)^Carbon_Dioxide\n", + "2694 procedures_lifetime_cost<=10^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/healthcare_expenses\n", + "2695 procedures_lifetime_cost>=procedures_lifetime\n", + "2696 procedures_lifetime_cost>=4*procedures_lifetime^2\n", + "2697 procedures_lifetime_cost>=sqrt(healthcare_coverage)*procedures_lifetime\n", + "2698 procedures_lifetime_cost>=2*Sodium*procedures_lifetime\n", + "2699 procedures_lifetime_cost>=e^active_care_plans*procedures_lifetime\n", + "2700 procedures_lifetime_cost>=(lifetime_condition_length+1)*procedures_lifetime\n", + "2701 procedures_lifetime_cost>=(immunizations_lifetime_cost+1)*procedures_lifetime\n", + "2702 procedures_lifetime_cost>=lifetime_conditions*procedures_lifetime^2\n", + "2703 procedures_lifetime_cost>=procedures_lifetime^mean_Creatinine\n", + "2704 procedures_lifetime_cost>=procedures_lifetime^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2705 procedures_lifetime_cost>=(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1)*procedures_lifetime\n", + "2706 procedures_lifetime_cost>=2*Systolic_Blood_Pressure*procedures_lifetime\n", + "2707 procedures_lifetime_cost>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-healthcare_coverage\n", + "2708 procedures_lifetime_cost>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*procedures_lifetime\n", + "2709 procedures_lifetime_cost>=device_lifetime_length^2*mean_Potassium\n", + "2710 procedures_lifetime_cost>=Urea_Nitrogen^2*procedures_lifetime\n", + "2711 procedures_lifetime_cost>=Platelets____volume__in_Blood_by_Automated_count*sqrt(device_lifetime_length)\n", + "2712 procedures_lifetime_cost>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-medications_lifetime_cost+1\n", + "2713 procedures_lifetime_cost>=(Platelets____volume__in_Blood_by_Automated_count+1)*procedures_lifetime\n", + "2714 procedures_lifetime_cost>=encounters_lifetime_total_cost*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2715 procedures_lifetime_cost>=2*age*procedures_lifetime\n", + "2716 procedures_lifetime_cost>=10^num_allergies-Glucose\n", + "2717 procedures_lifetime_cost>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*num_allergies^2\n", + "2718 procedures_lifetime_cost>=lifetime_conditions^2*procedures_lifetime\n", + "2719 procedures_lifetime_cost>=floor(device_lifetime_length)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2720 procedures_lifetime_cost>=Triglycerides*log(device_lifetime_length)\n", + "2721 procedures_lifetime_cost>=encounters_count^2-healthcare_coverage\n", + "2722 procedures_lifetime_cost>=2*encounters_count*procedures_lifetime\n", + "2723 procedures_lifetime_cost>=floor(encounters_lifetime_perc_covered)*medications_lifetime_cost\n", + "2724 procedures_lifetime_cost>=e^medications_active*procedures_lifetime\n", + "2725 procedures_lifetime_cost>=(1/2*procedures_lifetime)^FEV1_FVC\n", + "2726 procedures_lifetime_cost>=(1/2*procedures_lifetime)^Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method\n", + "2727 procedures_lifetime_cost>=Estimated_Glomerular_Filtration_Rate*procedures_lifetime^2\n", + "2728 procedures_lifetime_cost>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*procedures_lifetime^2\n", + "2729 procedures_lifetime_cost>=Microalbumin_Creatinine_Ratio*procedures_lifetime^2\n", + "2730 procedures_lifetime_cost>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*medications_lifetime_cost\n", + "2731 procedures_lifetime_cost>=Estimated_Glomerular_Filtration_Rate^2-encounters_lifetime_total_cost\n", + "2732 QOLS<=mean_QOLS\n", + "2733 QOLS>=mean_QOLS\n", + "2734 QALY<=mean_QALY\n", + "2735 QALY>=mean_QALY\n", + "2736 DALY<=mean_DALY\n", + "2737 DALY<=encounters_lifetime_total_cost\n", + "2738 DALY>=mean_DALY\n", + "2739 Respiratory_rate<=healthcare_expenses\n", + "2740 Respiratory_rate<=maximum(encounters_count,mean_Respiratory_rate)\n", + "2741 Respiratory_rate<=active_care_plans+mean_Respiratory_rate\n", + "2742 Respiratory_rate<=(Heart_rate+1)/mean_Creatinine\n", + "2743 Respiratory_rate<=maximum(mean_Respiratory_rate,10^Creatinine)\n", + "2744 Respiratory_rate<=maximum(Sodium,mean_Respiratory_rate)\n", + "2745 Respiratory_rate<=DALY+mean_Respiratory_rate\n", + "2746 Respiratory_rate<=maximum(mean_Respiratory_rate,mean_Hemoglobin__Mass_volume__in_Blood)\n", + "2747 Respiratory_rate<=mean_Respiratory_rate+procedures_lifetime_cost\n", + "2748 Respiratory_rate<=ceil(Estimated_Glomerular_Filtration_Rate)\n", + "2749 Respiratory_rate<=minimum(mean_Estimated_Glomerular_Filtration_Rate,floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "2750 Respiratory_rate<=maximum(lifetime_care_plan_length,mean_Respiratory_rate)\n", + "2751 Respiratory_rate<=mean_Respiratory_rate/imaging_studies_lifetime\n", + "2752 Respiratory_rate<=maximum(Triglycerides,mean_Respiratory_rate)\n", + "2753 Respiratory_rate<=2*floor(mean_Calcium)\n", + "2754 Respiratory_rate<=ceil(Potassium^2)\n", + "2755 Respiratory_rate<=10^immunizations_lifetime+mean_Respiratory_rate\n", + "2756 Respiratory_rate<=maximum(active_condition_length,mean_Respiratory_rate)\n", + "2757 Respiratory_rate<=ceil(2*Urea_Nitrogen)\n", + "2758 Respiratory_rate<=2*floor(Calcium)\n", + "2759 Respiratory_rate<=(Chloride-1)/medications_active\n", + "2760 Respiratory_rate<=-Carbon_Dioxide+e^Potassium\n", + "2761 Respiratory_rate<=maximum(mean_Respiratory_rate,2*lifetime_conditions)\n", + "2762 Respiratory_rate<=2*Triglycerides/mean_Urea_Nitrogen\n", + "2763 Respiratory_rate<=Heart_rate^2/lifetime_care_plan_length\n", + "2764 Respiratory_rate<=maximum(encounters_count,Microalbumin_Creatinine_Ratio)\n", + "2765 Respiratory_rate<=Carbon_Dioxide-Creatinine\n", + "2766 Respiratory_rate<=healthcare_coverage+mean_Respiratory_rate\n", + "2767 Respiratory_rate>=longitude\n", + "2768 Respiratory_rate>=-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Respiratory_rate\n", + "2769 Respiratory_rate>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Respiratory_rate)\n", + "2770 Respiratory_rate>=ceil(sqrt(Systolic_Blood_Pressure))\n", + "2771 Respiratory_rate>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "2772 Respiratory_rate>=-active_care_plans+mean_Respiratory_rate\n", + "2773 Respiratory_rate>=sqrt(device_lifetime_length)*procedures_lifetime\n", + "2774 Respiratory_rate>=active_conditions-immunizations_lifetime_cost-1\n", + "2775 Respiratory_rate>=floor(log(healthcare_coverage))\n", + "2776 Respiratory_rate>=minimum(device_lifetime_length,mean_Respiratory_rate)\n", + "2777 Respiratory_rate>=-healthcare_expenses\n", + "2778 Respiratory_rate>=healthcare_expenses^longitude\n", + "2779 Respiratory_rate>=Chloride/Urea_Nitrogen\n", + "2780 Respiratory_rate>=Hemoglobin__Mass_volume__in_Blood-Leukocytes____volume__in_Blood_by_Automated_count\n", + "2781 Respiratory_rate>=minimum(mean_Respiratory_rate,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "2782 Respiratory_rate>=-encounters_lifetime_payer_coverage+mean_Respiratory_rate\n", + "2783 Respiratory_rate>=minimum(mean_Respiratory_rate,e^num_allergies)\n", + "2784 Respiratory_rate>=mean_Respiratory_rate-medications_active\n", + "2785 Respiratory_rate>=ceil(active_care_plan_length)/Microalbumin_Creatinine_Ratio\n", + "2786 Respiratory_rate>=mean_Respiratory_rate^encounters_lifetime_perc_covered\n", + "2787 Respiratory_rate>=-active_care_plans+lifetime_conditions\n", + "2788 Respiratory_rate>=lifetime_conditions^imaging_studies_lifetime\n", + "2789 Respiratory_rate>=minimum(mean_Respiratory_rate,1/QOLS)\n", + "2790 Respiratory_rate>=(MCH__Entitic_mass__by_Automated_count-1)^medications_lifetime_perc_covered\n", + "2791 Respiratory_rate>=encounters_count-lifetime_condition_length\n", + "2792 Respiratory_rate>=-encounters_count+floor(Urea_Nitrogen)\n", + "2793 Respiratory_rate>=minimum(procedures_lifetime,mean_Respiratory_rate)\n", + "2794 Respiratory_rate>=mean_Respiratory_rate-medications_lifetime\n", + "2795 Respiratory_rate>=(Creatinine-1)^2\n", + "2796 Respiratory_rate>=-healthcare_coverage+mean_Respiratory_rate\n", + "2797 Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "2798 Respiratory_rate>=10^QOLS+lifetime_care_plans\n", + "2799 Respiratory_rate>=10^QOLS+num_allergies\n", + "2800 Respiratory_rate>=sqrt(Body_Weight)+mean_Creatinine\n", + "2801 Respiratory_rate>=minimum(mean_Respiratory_rate,10^device_lifetime_length)\n", + "2802 Respiratory_rate>=floor(Ketones__Mass_volume__in_Urine_by_Test_strip)^imaging_studies_lifetime\n", + "2803 Respiratory_rate>=minimum(mean_Respiratory_rate,1/encounters_lifetime_perc_covered)\n", + "2804 Respiratory_rate>=minimum(mean_Respiratory_rate,10^immunizations_lifetime)\n", + "2805 Respiratory_rate>=(-immunizations_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2806 Respiratory_rate>=minimum(mean_Respiratory_rate,1/DALY)\n", + "2807 Respiratory_rate>=(1/2*QALY)^medications_lifetime_perc_covered\n", + "2808 Respiratory_rate>=(1/Creatinine)^medications_active\n", + "2809 Respiratory_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-active_care_plans\n", + "2810 Heart_rate<=healthcare_expenses\n", + "2811 Heart_rate<=mean_Heart_rate+procedures_lifetime_cost\n", + "2812 Heart_rate<=maximum(Glucose,mean_Heart_rate)\n", + "2813 Heart_rate<=maximum(Triglycerides,mean_Heart_rate)\n", + "2814 Heart_rate<=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2)\n", + "2815 Heart_rate<=10^procedures_lifetime+mean_Heart_rate\n", + "2816 Heart_rate<=healthcare_coverage+mean_Heart_rate\n", + "2817 Heart_rate<=maximum(Sodium,mean_Heart_rate)\n", + "2818 Heart_rate<=mean_Heart_rate+medications_lifetime\n", + "2819 Heart_rate<=mean_Heart_rate/QOLS\n", + "2820 Heart_rate<=maximum(mean_Heart_rate,Urea_Nitrogen^2)\n", + "2821 Heart_rate<=active_care_plan_length+mean_Heart_rate\n", + "2822 Heart_rate<=active_condition_length+mean_Heart_rate\n", + "2823 Heart_rate<=e^sqrt(mean_Estimated_Glomerular_Filtration_Rate)\n", + "2824 Heart_rate<=maximum(mean_Glucose,mean_Heart_rate)\n", + "2825 Heart_rate<=-mean_Glucose+mean_Total_Cholesterol\n", + "2826 Heart_rate<=Carbon_Dioxide^2/Potassium\n", + "2827 Heart_rate<=encounters_lifetime_payer_coverage+mean_Heart_rate\n", + "2828 Heart_rate<=mean_Heart_rate/encounters_lifetime_perc_covered\n", + "2829 Heart_rate<=1/2*active_care_plan_length+mean_Heart_rate\n", + "2830 Heart_rate<=(Diastolic_Blood_Pressure-1)/medications_lifetime_perc_covered\n", + "2831 Heart_rate<=2*Calcium+mean_Heart_rate\n", + "2832 Heart_rate<=1/device_lifetime_length+Glucose\n", + "2833 Heart_rate<=immunizations_lifetime_cost+mean_Heart_rate\n", + "2834 Heart_rate<=maximum(medications_lifetime_cost,mean_Heart_rate)\n", + "2835 Heart_rate<=Body_Height^2/encounters_count\n", + "2836 Heart_rate<=maximum(mean_Heart_rate,active_care_plan_length^2)\n", + "2837 Heart_rate<=maximum(mean_Heart_rate,1/device_lifetime_length)\n", + "2838 Heart_rate<=floor(Low_Density_Lipoprotein_Cholesterol)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2839 Heart_rate<=2*encounters_lifetime_total_cost/medications_lifetime\n", + "2840 Heart_rate<=log(Total_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2841 Heart_rate<=(2*Estimated_Glomerular_Filtration_Rate)^mean_Creatinine\n", + "2842 Heart_rate>=latitude\n", + "2843 Heart_rate>=ceil(2*Body_Mass_Index)\n", + "2844 Heart_rate>=age-encounters_count+1\n", + "2845 Heart_rate>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*active_care_plans\n", + "2846 Heart_rate>=sqrt(encounters_lifetime_perc_covered)*mean_Heart_rate\n", + "2847 Heart_rate>=-healthcare_expenses\n", + "2848 Heart_rate>=(High_Density_Lipoprotein_Cholesterol+1)/Creatinine\n", + "2849 Heart_rate>=4*Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "2850 Heart_rate>=sqrt(Platelets____volume__in_Blood_by_Automated_count)+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2851 Heart_rate>=-Creatinine+floor(active_condition_length)\n", + "2852 Heart_rate>=-Respiratory_rate+ceil(age)\n", + "2853 Heart_rate>=active_conditions^2-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "2854 Heart_rate>=-active_condition_length+mean_Heart_rate\n", + "2855 Heart_rate>=healthcare_expenses^longitude\n", + "2856 Heart_rate>=-lifetime_care_plan_length+mean_Heart_rate\n", + "2857 Heart_rate>=Sodium-mean_Glucose+1\n", + "2858 Heart_rate>=floor(DALY)+medications_active\n", + "2859 Heart_rate>=active_conditions^2-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2860 Heart_rate>=Diastolic_Blood_Pressure-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "2861 Heart_rate>=mean_Heart_rate^imaging_studies_lifetime\n", + "2862 Heart_rate>=Carbon_Dioxide+e^num_allergies\n", + "2863 Heart_rate>=mean_Heart_rate-medications_lifetime_cost\n", + "2864 Heart_rate>=minimum(mean_Heart_rate,10^immunizations_lifetime)\n", + "2865 Heart_rate>=sqrt(medications_lifetime_length)^imaging_studies_lifetime\n", + "2866 Heart_rate>=minimum(mean_Heart_rate,e^medications_active)\n", + "2867 Heart_rate>=minimum(mean_Heart_rate,1/DALY)\n", + "2868 Heart_rate>=10^encounters_lifetime_perc_covered*active_conditions\n", + "2869 Heart_rate>=minimum(encounters_count,ceil(QALY))\n", + "2870 Heart_rate>=1/2*Diastolic_Blood_Pressure/Creatinine\n", + "2871 Heart_rate>=-encounters_lifetime_payer_coverage+mean_Heart_rate\n", + "2872 Heart_rate>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Triglycerides\n", + "2873 Heart_rate>=2*Hemoglobin__Mass_volume__in_Blood/encounters_lifetime_perc_covered\n", + "2874 Heart_rate>=1/2*e^mean_Creatinine\n", + "2875 Heart_rate>=mean_Heart_rate^encounters_lifetime_perc_covered\n", + "2876 Heart_rate>=(num_allergies+1)*Respiratory_rate\n", + "2877 Heart_rate>=log(Urea_Nitrogen)^Creatinine\n", + "2878 Heart_rate>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Heart_rate)\n", + "2879 Heart_rate>=(Triglycerides+1)/Potassium\n", + "2880 Heart_rate>=-Carbon_Dioxide+2*latitude\n", + "2881 Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "2882 Heart_rate>=1/2*Sodium/active_care_plans\n", + "2883 Heart_rate>=log(Total_Cholesterol)/encounters_lifetime_perc_covered\n", + "2884 Heart_rate>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*longitude\n", + "2885 Heart_rate>=-encounters_lifetime_perc_covered*longitude\n", + "2886 Heart_rate>=-healthcare_coverage+mean_Heart_rate\n", + "2887 Heart_rate>=1/2*imaging_studies_lifetime*mean_Triglycerides\n", + "2888 Heart_rate>=Low_Density_Lipoprotein_Cholesterol*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "2889 Heart_rate>=ceil(Glucose)*encounters_lifetime_perc_covered\n", + "2890 Systolic_Blood_Pressure<=healthcare_expenses\n", + "2891 Systolic_Blood_Pressure<=active_care_plan_length+mean_Systolic_Blood_Pressure\n", + "2892 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure+medications_lifetime_cost\n", + "2893 Systolic_Blood_Pressure<=maximum(lifetime_condition_length,mean_Systolic_Blood_Pressure)\n", + "2894 Systolic_Blood_Pressure<=maximum(Sodium,mean_Systolic_Blood_Pressure)\n", + "2895 Systolic_Blood_Pressure<=active_condition_length+mean_Systolic_Blood_Pressure\n", + "2896 Systolic_Blood_Pressure<=Diastolic_Blood_Pressure+ceil(Low_Density_Lipoprotein_Cholesterol)\n", + "2897 Systolic_Blood_Pressure<=10^medications_active+mean_Systolic_Blood_Pressure\n", + "2898 Systolic_Blood_Pressure<=maximum(Total_Cholesterol,mean_Systolic_Blood_Pressure)\n", + "2899 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,2*lifetime_care_plan_length)\n", + "2900 Systolic_Blood_Pressure<=2*Estimated_Glomerular_Filtration_Rate+mean_Glucose\n", + "2901 Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate*sqrt(lifetime_care_plan_length)\n", + "2902 Systolic_Blood_Pressure<=1/2*medications_lifetime_dispenses/imaging_studies_lifetime\n", + "2903 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,1/device_lifetime_length)\n", + "2904 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,encounters_count^2)\n", + "2905 Systolic_Blood_Pressure<=MCV__Entitic_volume__by_Automated_count*e^encounters_lifetime_perc_covered\n", + "2906 Systolic_Blood_Pressure<=(Chloride-1)/medications_lifetime_perc_covered\n", + "2907 Systolic_Blood_Pressure<=Potassium^2*mean_Calcium\n", + "2908 Systolic_Blood_Pressure<=log(Diastolic_Blood_Pressure)*mean_Diastolic_Blood_Pressure/log(10)\n", + "2909 Systolic_Blood_Pressure<=2*Diastolic_Blood_Pressure-mean_Creatinine\n", + "2910 Systolic_Blood_Pressure<=-active_care_plans+floor(Sodium)\n", + "2911 Systolic_Blood_Pressure<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Heart_rate\n", + "2912 Systolic_Blood_Pressure<=High_Density_Lipoprotein_Cholesterol+1/2*Total_Cholesterol\n", + "2913 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,Urea_Nitrogen^2)\n", + "2914 Systolic_Blood_Pressure<=mean_Sodium-medications_active\n", + "2915 Systolic_Blood_Pressure<=healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "2916 Systolic_Blood_Pressure>=latitude\n", + "2917 Systolic_Blood_Pressure>=floor(mean_Glucose)-1\n", + "2918 Systolic_Blood_Pressure>=Body_Mass_Index+High_Density_Lipoprotein_Cholesterol-1\n", + "2919 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,2*device_lifetime_length)\n", + "2920 Systolic_Blood_Pressure>=-lifetime_care_plan_length+mean_Systolic_Blood_Pressure\n", + "2921 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,10^num_allergies)\n", + "2922 Systolic_Blood_Pressure>=Carbon_Dioxide+Estimated_Glomerular_Filtration_Rate+1\n", + "2923 Systolic_Blood_Pressure>=Creatinine^2+Diastolic_Blood_Pressure\n", + "2924 Systolic_Blood_Pressure>=active_condition_length+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2925 Systolic_Blood_Pressure>=-healthcare_expenses\n", + "2926 Systolic_Blood_Pressure>=minimum(lifetime_care_plan_length,ceil(Chloride))\n", + "2927 Systolic_Blood_Pressure>=-active_condition_length+mean_Systolic_Blood_Pressure\n", + "2928 Systolic_Blood_Pressure>=2*ceil(DALY)\n", + "2929 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*lifetime_care_plan_length)\n", + "2930 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure-medications_lifetime\n", + "2931 Systolic_Blood_Pressure>=1/2*lifetime_care_plans*procedures_lifetime\n", + "2932 Systolic_Blood_Pressure>=sqrt(procedures_lifetime_cost)/mean_Potassium\n", + "2933 Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "2934 Systolic_Blood_Pressure>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*sqrt(encounters_count)\n", + "2935 Systolic_Blood_Pressure>=(DALY+1)*mean_Creatinine\n", + "2936 Systolic_Blood_Pressure>=floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)*num_allergies\n", + "2937 Systolic_Blood_Pressure>=-encounters_lifetime_payer_coverage+mean_Systolic_Blood_Pressure\n", + "2938 Systolic_Blood_Pressure>=(Urea_Nitrogen+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2939 Systolic_Blood_Pressure>=-Microalbumin_Creatinine_Ratio+mean_Systolic_Blood_Pressure\n", + "2940 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "2941 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,e^medications_active)\n", + "2942 Systolic_Blood_Pressure>=device_lifetime_length*floor(MCH__Entitic_mass__by_Automated_count)\n", + "2943 Systolic_Blood_Pressure>=Leukocytes____volume__in_Blood_by_Automated_count+encounters_count+1\n", + "2944 Systolic_Blood_Pressure>=sqrt(encounters_lifetime_perc_covered)*mean_Systolic_Blood_Pressure\n", + "2945 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/DALY)\n", + "2946 Systolic_Blood_Pressure>=Low_Density_Lipoprotein_Cholesterol-MCHC__Mass_volume__by_Automated_count+1\n", + "2947 Systolic_Blood_Pressure>=(active_care_plans+1)*active_conditions\n", + "2948 Systolic_Blood_Pressure>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*mean_Diastolic_Blood_Pressure\n", + "2949 Systolic_Blood_Pressure>=minimum(encounters_count,Glucose+1)\n", + "2950 Systolic_Blood_Pressure>=-Respiratory_rate+mean_Systolic_Blood_Pressure\n", + "2951 Systolic_Blood_Pressure>=minimum(Glucose,medications_lifetime-1)\n", + "2952 Systolic_Blood_Pressure>=-High_Density_Lipoprotein_Cholesterol+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "2953 Systolic_Blood_Pressure>=mean_Microalbumin_Creatinine_Ratio^imaging_studies_lifetime\n", + "2954 Systolic_Blood_Pressure>=minimum(Low_Density_Lipoprotein_Cholesterol,2*QALY)\n", + "2955 Systolic_Blood_Pressure>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(Body_Mass_Index)\n", + "2956 Systolic_Blood_Pressure>=Body_Weight+Hemoglobin__Mass_volume__in_Blood-1\n", + "2957 Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "2958 Systolic_Blood_Pressure>=(medications_lifetime_perc_covered+1)*QALY\n", + "2959 Systolic_Blood_Pressure>=-healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "2960 Systolic_Blood_Pressure>=Sodium*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "2961 Diastolic_Blood_Pressure<=healthcare_expenses\n", + "2962 Diastolic_Blood_Pressure<=2*lifetime_care_plans+mean_Diastolic_Blood_Pressure\n", + "2963 Diastolic_Blood_Pressure<=active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "2964 Diastolic_Blood_Pressure<=active_condition_length+mean_Diastolic_Blood_Pressure\n", + "2965 Diastolic_Blood_Pressure<=Triglycerides-lifetime_conditions-1\n", + "2966 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,10^Creatinine)\n", + "2967 Diastolic_Blood_Pressure<=healthcare_coverage+mean_Diastolic_Blood_Pressure\n", + "2968 Diastolic_Blood_Pressure<=2*DALY+mean_Glucose\n", + "2969 Diastolic_Blood_Pressure<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Diastolic_Blood_Pressure)\n", + "2970 Diastolic_Blood_Pressure<=Low_Density_Lipoprotein_Cholesterol*log(Carbon_Dioxide)/log(10)\n", + "2971 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,mean_Microalbumin_Creatinine_Ratio)\n", + "2972 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure+medications_lifetime\n", + "2973 Diastolic_Blood_Pressure<=maximum(medications_lifetime_cost,mean_Diastolic_Blood_Pressure)\n", + "2974 Diastolic_Blood_Pressure<=10^DALY*Microalbumin_Creatinine_Ratio\n", + "2975 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,2*age)\n", + "2976 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,10^active_care_plans)\n", + "2977 Diastolic_Blood_Pressure<=10^DALY*mean_Diastolic_Blood_Pressure\n", + "2978 Diastolic_Blood_Pressure<=encounters_lifetime_payer_coverage+mean_Diastolic_Blood_Pressure\n", + "2979 Diastolic_Blood_Pressure<=log(Total_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2980 Diastolic_Blood_Pressure<=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Diastolic_Blood_Pressure\n", + "2981 Diastolic_Blood_Pressure<=10^immunizations_lifetime+mean_Diastolic_Blood_Pressure\n", + "2982 Diastolic_Blood_Pressure<=MCH__Entitic_mass__by_Automated_count^2/Leukocytes____volume__in_Blood_by_Automated_count\n", + "2983 Diastolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,mean_Diastolic_Blood_Pressure)\n", + "2984 Diastolic_Blood_Pressure<=active_conditions^2+mean_Diastolic_Blood_Pressure\n", + "2985 Diastolic_Blood_Pressure<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Diastolic_Blood_Pressure\n", + "2986 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,e^medications_lifetime)\n", + "2987 Diastolic_Blood_Pressure<=(Low_Density_Lipoprotein_Cholesterol-1)/imaging_studies_lifetime\n", + "2988 Diastolic_Blood_Pressure<=(Heart_rate^2)^Creatinine\n", + "2989 Diastolic_Blood_Pressure<=e^medications_active+mean_Diastolic_Blood_Pressure\n", + "2990 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "2991 Diastolic_Blood_Pressure<=Body_Height^2/lifetime_care_plan_length\n", + "2992 Diastolic_Blood_Pressure<=2*High_Density_Lipoprotein_Cholesterol/imaging_studies_lifetime\n", + "2993 Diastolic_Blood_Pressure>=latitude\n", + "2994 Diastolic_Blood_Pressure>=-active_conditions+mean_Diastolic_Blood_Pressure\n", + "2995 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure-medications_lifetime\n", + "2996 Diastolic_Blood_Pressure>=-encounters_lifetime_payer_coverage+mean_Diastolic_Blood_Pressure\n", + "2997 Diastolic_Blood_Pressure>=active_conditions*log(Microalbumin_Creatinine_Ratio)\n", + "2998 Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "2999 Diastolic_Blood_Pressure>=(Erythrocytes____volume__in_Blood_by_Automated_count+1)*lifetime_conditions\n", + "3000 Diastolic_Blood_Pressure>=mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3001 Diastolic_Blood_Pressure>=Calcium^2-mean_Body_Mass_Index\n", + "3002 Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "3003 Diastolic_Blood_Pressure>=-active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "3004 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3005 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "3006 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,-Triglycerides)\n", + "3007 Diastolic_Blood_Pressure>=ceil(mean_High_Density_Lipoprotein_Cholesterol-1)\n", + "3008 Diastolic_Blood_Pressure>=-Glucose+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "3009 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "3010 Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "3011 Diastolic_Blood_Pressure>=sqrt(active_conditions)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3012 Diastolic_Blood_Pressure>=minimum(active_care_plan_length,mean_Diastolic_Blood_Pressure)\n", + "3013 Diastolic_Blood_Pressure>=minimum(QALY,mean_Diastolic_Blood_Pressure)\n", + "3014 Diastolic_Blood_Pressure>=active_conditions*log(latitude)\n", + "3015 Diastolic_Blood_Pressure>=sqrt(Low_Density_Lipoprotein_Cholesterol)*active_care_plans\n", + "3016 Diastolic_Blood_Pressure>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Diastolic_Blood_Pressure)\n", + "3017 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,e^medications_active)\n", + "3018 Diastolic_Blood_Pressure>=-Heart_rate+floor(Sodium)\n", + "3019 Diastolic_Blood_Pressure>=minimum(mean_Glucose,e^device_lifetime_length)\n", + "3020 Diastolic_Blood_Pressure>=1/2*Heart_rate+mean_Carbon_Dioxide\n", + "3021 Diastolic_Blood_Pressure>=(Creatinine-1)*DALY\n", + "3022 Diastolic_Blood_Pressure>=sqrt(Estimated_Glomerular_Filtration_Rate)+QALY\n", + "3023 Diastolic_Blood_Pressure>=floor(High_Density_Lipoprotein_Cholesterol)/Creatinine\n", + "3024 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,procedures_lifetime^2)\n", + "3025 Diastolic_Blood_Pressure>=-healthcare_coverage+mean_Diastolic_Blood_Pressure\n", + "3026 Diastolic_Blood_Pressure>=Low_Density_Lipoprotein_Cholesterol*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "3027 Diastolic_Blood_Pressure>=ceil(Microalbumin_Creatinine_Ratio)^imaging_studies_lifetime\n", + "3028 Diastolic_Blood_Pressure>=ceil(Glucose)-lifetime_condition_length\n", + "3029 Body_Mass_Index<=healthcare_expenses\n", + "3030 Body_Mass_Index<=ceil(mean_Body_Mass_Index)\n", + "3031 Body_Mass_Index<=maximum(active_care_plan_length,mean_Body_Mass_Index)\n", + "3032 Body_Mass_Index<=mean_Body_Mass_Index/imaging_studies_lifetime\n", + "3033 Body_Mass_Index<=maximum(encounters_count,mean_Body_Mass_Index)\n", + "3034 Body_Mass_Index<=maximum(Sodium,mean_Body_Mass_Index)\n", + "3035 Body_Mass_Index<=maximum(age,mean_Body_Mass_Index)\n", + "3036 Body_Mass_Index<=immunizations_lifetime+mean_Body_Mass_Index\n", + "3037 Body_Mass_Index<=1/Creatinine+mean_Body_Mass_Index\n", + "3038 Body_Mass_Index<=ceil(Sodium)/Creatinine\n", + "3039 Body_Mass_Index<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Mass_Index)\n", + "3040 Body_Mass_Index<=mean_Body_Mass_Index+medications_active\n", + "3041 Body_Mass_Index<=maximum(active_condition_length,mean_Body_Mass_Index)\n", + "3042 Body_Mass_Index<=healthcare_coverage+mean_Body_Mass_Index\n", + "3043 Body_Mass_Index<=active_care_plans+mean_Body_Mass_Index\n", + "3044 Body_Mass_Index<=mean_Body_Mass_Index+procedures_lifetime\n", + "3045 Body_Mass_Index<=mean_Body_Mass_Index/QOLS\n", + "3046 Body_Mass_Index<=maximum(QALY,mean_Body_Mass_Index)\n", + "3047 Body_Mass_Index<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3048 Body_Mass_Index<=maximum(Triglycerides,mean_Body_Mass_Index)\n", + "3049 Body_Mass_Index<=maximum(mean_Body_Mass_Index,e^active_care_plans)\n", + "3050 Body_Mass_Index<=maximum(mean_Body_Mass_Index,10^Creatinine)\n", + "3051 Body_Mass_Index<=1/2*Diastolic_Blood_Pressure-lifetime_care_plans\n", + "3052 Body_Mass_Index<=QALY+ceil(Potassium)\n", + "3053 Body_Mass_Index>=longitude\n", + "3054 Body_Mass_Index>=-encounters_lifetime_perc_covered+mean_Body_Mass_Index\n", + "3055 Body_Mass_Index>=-immunizations_lifetime+mean_Body_Mass_Index\n", + "3056 Body_Mass_Index>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+lifetime_care_plans\n", + "3057 Body_Mass_Index>=healthcare_expenses^longitude\n", + "3058 Body_Mass_Index>=-QOLS+mean_Body_Mass_Index\n", + "3059 Body_Mass_Index>=mean_Body_Mass_Index-medications_lifetime\n", + "3060 Body_Mass_Index>=mean_Body_Mass_Index-medications_active\n", + "3061 Body_Mass_Index>=minimum(procedures_lifetime,mean_Body_Mass_Index)\n", + "3062 Body_Mass_Index>=-healthcare_expenses\n", + "3063 Body_Mass_Index>=mean_Body_Mass_Index^QOLS\n", + "3064 Body_Mass_Index>=log(encounters_lifetime_perc_covered)/log(10)+mean_Body_Mass_Index\n", + "3065 Body_Mass_Index>=10^imaging_studies_lifetime+Urea_Nitrogen\n", + "3066 Body_Mass_Index>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3067 Body_Mass_Index>=Carbon_Dioxide^imaging_studies_lifetime\n", + "3068 Body_Mass_Index>=minimum(mean_Body_Mass_Index,10^immunizations_lifetime)\n", + "3069 Body_Mass_Index>=minimum(Carbon_Dioxide,mean_Body_Mass_Index)\n", + "3070 Body_Mass_Index>=floor(High_Density_Lipoprotein_Cholesterol)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3071 Body_Mass_Index>=-healthcare_coverage+mean_Body_Mass_Index\n", + "3072 Body_Mass_Index>=-active_care_plans+mean_Body_Mass_Index\n", + "3073 Body_Mass_Index>=-active_conditions+mean_Body_Mass_Index\n", + "3074 Body_Mass_Index>=minimum(device_lifetime_length,mean_Body_Mass_Index)\n", + "3075 Body_Mass_Index>=-encounters_lifetime_payer_coverage+mean_Body_Mass_Index\n", + "3076 Body_Mass_Index>=mean_Body_Mass_Index^encounters_lifetime_perc_covered\n", + "3077 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Calcium)\n", + "3078 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3079 Body_Mass_Index>=log(medications_lifetime_cost)*mean_Creatinine/log(10)\n", + "3080 Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "3081 Body_Mass_Index>=minimum(mean_Body_Mass_Index,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "3082 Body_Mass_Index>=minimum(mean_Body_Mass_Index,10^device_lifetime_length)\n", + "3083 Body_Mass_Index>=active_care_plans*log(encounters_lifetime_payer_coverage)/log(10)\n", + "3084 Body_Mass_Index>=minimum(mean_Body_Mass_Index,e^medications_active)\n", + "3085 Body_Mass_Index>=minimum(mean_Body_Mass_Index,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3086 Body_Mass_Index>=minimum(mean_Body_Mass_Index,-Triglycerides)\n", + "3087 Body_Weight<=healthcare_expenses\n", + "3088 Body_Weight<=2*QOLS+mean_Body_Weight\n", + "3089 Body_Weight<=Low_Density_Lipoprotein_Cholesterol+log(Estimated_Glomerular_Filtration_Rate)\n", + "3090 Body_Weight<=maximum(lifetime_care_plan_length,mean_Body_Weight)\n", + "3091 Body_Weight<=Chloride-1\n", + "3092 Body_Weight<=active_care_plans+mean_Body_Weight\n", + "3093 Body_Weight<=maximum(encounters_count,mean_Body_Weight)\n", + "3094 Body_Weight<=healthcare_coverage+mean_Body_Weight\n", + "3095 Body_Weight<=mean_Body_Weight/imaging_studies_lifetime\n", + "3096 Body_Weight<=immunizations_lifetime+mean_Body_Weight\n", + "3097 Body_Weight<=mean_Body_Weight+procedures_lifetime\n", + "3098 Body_Weight<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3099 Body_Weight<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Body_Weight)\n", + "3100 Body_Weight<=maximum(Sodium,mean_Body_Weight)\n", + "3101 Body_Weight<=maximum(mean_Body_Weight,1/device_lifetime_length)\n", + "3102 Body_Weight<=Chloride^2/mean_Glucose\n", + "3103 Body_Weight>=latitude\n", + "3104 Body_Weight>=-active_care_plans+mean_Body_Weight\n", + "3105 Body_Weight>=-active_conditions+mean_Body_Weight\n", + "3106 Body_Weight>=-encounters_lifetime_payer_coverage+mean_Body_Weight\n", + "3107 Body_Weight>=mean_Body_Weight^encounters_lifetime_perc_covered\n", + "3108 Body_Weight>=mean_Body_Weight^imaging_studies_lifetime\n", + "3109 Body_Weight>=-healthcare_expenses\n", + "3110 Body_Weight>=ceil(High_Density_Lipoprotein_Cholesterol)\n", + "3111 Body_Weight>=mean_Body_Weight-procedures_lifetime\n", + "3112 Body_Weight>=-immunizations_lifetime_cost+mean_Body_Weight\n", + "3113 Body_Weight>=minimum(age,mean_Body_Weight)\n", + "3114 Body_Weight>=mean_Body_Weight-medications_lifetime\n", + "3115 Body_Weight>=mean_Body_Weight^QOLS\n", + "3116 Body_Weight>=mean_Body_Weight-medications_active\n", + "3117 Body_Weight>=minimum(Heart_rate,mean_Body_Weight)\n", + "3118 Body_Weight>=healthcare_expenses^longitude\n", + "3119 Body_Weight>=minimum(Diastolic_Blood_Pressure,mean_Body_Weight)\n", + "3120 Body_Weight>=minimum(mean_Body_Weight,1/2*Body_Height)\n", + "3121 Body_Weight>=floor(mean_Body_Weight)-1\n", + "3122 Body_Weight>=minimum(MCV__Entitic_volume__by_Automated_count,mean_Body_Weight)\n", + "3123 Body_Weight>=minimum(mean_Body_Weight,mean_Calcium)\n", + "3124 Body_Weight>=minimum(mean_Body_Weight,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3125 Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "3126 Body_Weight>=Urea_Nitrogen*sqrt(active_conditions)\n", + "3127 Body_Weight>=minimum(mean_Body_Weight,10^device_lifetime_length)\n", + "3128 Body_Weight>=(medications_lifetime+1)/mean_Respiratory_rate\n", + "3129 Body_Weight>=minimum(mean_Body_Weight,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3130 Body_Weight>=-healthcare_coverage+mean_Body_Weight\n", + "3131 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "3132 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_coverage+lifetime_conditions\n", + "3133 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(lifetime_care_plans,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3134 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3135 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "3136 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported/imaging_studies_lifetime\n", + "3137 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3138 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3139 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported/medications_lifetime_perc_covered\n", + "3140 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(log(latitude))\n", + "3141 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_active/imaging_studies_lifetime\n", + "3142 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_active\n", + "3143 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "3144 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans/imaging_studies_lifetime\n", + "3145 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(1/device_lifetime_length)\n", + "3146 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "3147 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count+procedures_lifetime\n", + "3148 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,e^Creatinine)\n", + "3149 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Microalbumin_Creatinine_Ratio)\n", + "3150 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Creatinine)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3151 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)+1\n", + "3152 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(QALY)-Creatinine\n", + "3153 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count+immunizations_lifetime_cost\n", + "3154 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost/medications_lifetime_perc_covered\n", + "3155 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(DALY+1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3156 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Estimated_Glomerular_Filtration_Rate,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "3157 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-active_care_plans\n", + "3158 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3159 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Carbon_Dioxide-lifetime_conditions-1\n", + "3160 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Erythrocytes____volume__in_Blood_by_Automated_count*QOLS\n", + "3161 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,medications_active^2)\n", + "3162 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "3163 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime\n", + "3164 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "3165 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*num_allergies\n", + "3166 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(num_allergies,DALY)\n", + "3167 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3168 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "3169 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(num_allergies,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3170 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+num_allergies\n", + "3171 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_coverage+lifetime_conditions\n", + "3172 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_condition_length+lifetime_care_plans\n", + "3173 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-encounters_lifetime_payer_coverage\n", + "3174 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime\n", + "3175 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Microalbumin_Creatinine_Ratio+log(Body_Mass_Index)\n", + "3176 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Triglycerides)\n", + "3177 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Diastolic_Blood_Pressure+ceil(active_care_plan_length)\n", + "3178 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+lifetime_conditions\n", + "3179 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(1/2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3180 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(QOLS)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3181 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Lymph_nodes_with_isolated_tumor_cells_____in_Cancer_specimen_by_Light_microscopy\n", + "3182 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(device_lifetime_length)/log(10))\n", + "3183 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Low_Density_Lipoprotein_Cholesterol)-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3184 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "3185 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Estimated_Glomerular_Filtration_Rate)\n", + "3186 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=e^medications_active-mean_Estimated_Glomerular_Filtration_Rate\n", + "3187 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-procedures_lifetime)^mean_High_Density_Lipoprotein_Cholesterol\n", + "3188 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "3189 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(immunizations_lifetime-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3190 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3191 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+Urea_Nitrogen\n", + "3192 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(encounters_lifetime_perc_covered)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3193 Body_Height<=healthcare_expenses\n", + "3194 Body_Height<=ceil(mean_Body_Height)\n", + "3195 Body_Height<=healthcare_coverage+mean_Body_Height\n", + "3196 Body_Height<=active_care_plans+mean_Body_Height\n", + "3197 Body_Height<=active_conditions+mean_Body_Height\n", + "3198 Body_Height<=encounters_lifetime_payer_coverage+mean_Body_Height\n", + "3199 Body_Height<=mean_Body_Height/encounters_lifetime_perc_covered\n", + "3200 Body_Height<=1/healthcare_expenses+mean_Body_Height\n", + "3201 Body_Height<=mean_Body_Height/imaging_studies_lifetime\n", + "3202 Body_Height<=immunizations_lifetime+mean_Body_Height\n", + "3203 Body_Height<=mean_Body_Height+medications_lifetime\n", + "3204 Body_Height<=maximum(medications_lifetime_cost,mean_Body_Height)\n", + "3205 Body_Height<=maximum(medications_lifetime_dispenses,mean_Body_Height)\n", + "3206 Body_Height<=mean_Body_Height+procedures_lifetime\n", + "3207 Body_Height<=mean_Body_Height/QOLS\n", + "3208 Body_Height<=maximum(mean_Body_Height,10^active_care_plans)\n", + "3209 Body_Height<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Height\n", + "3210 Body_Height<=maximum(Total_Cholesterol,mean_Body_Height)\n", + "3211 Body_Height<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Height)\n", + "3212 Body_Height>=latitude\n", + "3213 Body_Height>=floor(mean_Body_Height)\n", + "3214 Body_Height>=healthcare_expenses^longitude\n", + "3215 Body_Height>=1/longitude+mean_Body_Height\n", + "3216 Body_Height>=-immunizations_lifetime+mean_Body_Height\n", + "3217 Body_Height>=-healthcare_coverage+mean_Body_Height\n", + "3218 Body_Height>=-active_care_plans+mean_Body_Height\n", + "3219 Body_Height>=minimum(lifetime_care_plan_length,mean_Body_Height)\n", + "3220 Body_Height>=-active_conditions+mean_Body_Height\n", + "3221 Body_Height>=-healthcare_expenses\n", + "3222 Body_Height>=-encounters_lifetime_payer_coverage+mean_Body_Height\n", + "3223 Body_Height>=mean_Body_Height^encounters_lifetime_perc_covered\n", + "3224 Body_Height>=minimum(mean_Body_Height,mean_Calcium)\n", + "3225 Body_Height>=minimum(immunizations_lifetime_cost,mean_Body_Height)\n", + "3226 Body_Height>=mean_Body_Height-medications_lifetime\n", + "3227 Body_Height>=mean_Body_Height-medications_lifetime_perc_covered\n", + "3228 Body_Height>=mean_Body_Height-procedures_lifetime\n", + "3229 Body_Height>=minimum(mean_Body_Height,10^medications_active)\n", + "3230 Body_Height>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Height)\n", + "3231 Body_Height>=minimum(Microalbumin_Creatinine_Ratio,mean_Body_Height)\n", + "3232 Body_Height>=minimum(mean_Body_Height,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3233 Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "3234 Body_Height>=minimum(mean_Body_Height,2*Body_Weight)\n", + "3235 Triglycerides<=healthcare_expenses\n", + "3236 Triglycerides<=1/2*latitude+mean_Triglycerides\n", + "3237 Triglycerides<=lifetime_care_plan_length+mean_Triglycerides\n", + "3238 Triglycerides<=maximum(mean_Triglycerides,10^active_conditions)\n", + "3239 Triglycerides<=Sodium+e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3240 Triglycerides<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Triglycerides\n", + "3241 Triglycerides<=mean_Triglycerides/encounters_lifetime_perc_covered\n", + "3242 Triglycerides<=mean_Triglycerides/imaging_studies_lifetime\n", + "3243 Triglycerides<=maximum(medications_lifetime_cost,mean_Triglycerides)\n", + "3244 Triglycerides<=maximum(medications_lifetime_dispenses,mean_Triglycerides)\n", + "3245 Triglycerides<=Body_Height+Estimated_Glomerular_Filtration_Rate-1\n", + "3246 Triglycerides<=maximum(mean_Triglycerides,e^active_conditions)\n", + "3247 Triglycerides<=maximum(mean_Triglycerides,1/num_allergies)\n", + "3248 Triglycerides<=mean_Estimated_Glomerular_Filtration_Rate+mean_Triglycerides\n", + "3249 Triglycerides<=(log(healthcare_expenses)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3250 Triglycerides<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/Heart_rate\n", + "3251 Triglycerides<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Triglycerides\n", + "3252 Triglycerides<=maximum(mean_Total_Cholesterol,mean_Triglycerides)\n", + "3253 Triglycerides<=mean_Respiratory_rate^2/imaging_studies_lifetime\n", + "3254 Triglycerides<=Body_Height^2/Microalbumin_Creatinine_Ratio\n", + "3255 Triglycerides<=(2*active_care_plans)^Potassium\n", + "3256 Triglycerides<=maximum(mean_Triglycerides,10^Microalbumin_Creatinine_Ratio)\n", + "3257 Triglycerides<=ceil(mean_Triglycerides)/QOLS\n", + "3258 Triglycerides<=10^immunizations_lifetime_cost+Body_Height\n", + "3259 Triglycerides<=DALY^2+mean_Triglycerides\n", + "3260 Triglycerides<=maximum(mean_Triglycerides,Respiratory_rate^2)\n", + "3261 Triglycerides<=maximum(mean_Triglycerides,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "3262 Triglycerides<=Calcium*e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3263 Triglycerides>=latitude\n", + "3264 Triglycerides>=(10^encounters_lifetime_perc_covered)^mean_Creatinine\n", + "3265 Triglycerides>=mean_Triglycerides^QOLS\n", + "3266 Triglycerides>=-active_care_plan_length+mean_Triglycerides\n", + "3267 Triglycerides>=-Respiratory_rate+mean_Triglycerides+1\n", + "3268 Triglycerides>=ceil(mean_Chloride)-procedures_lifetime\n", + "3269 Triglycerides>=-immunizations_lifetime_cost+mean_Triglycerides\n", + "3270 Triglycerides>=minimum(mean_Triglycerides,mean_Urea_Nitrogen)\n", + "3271 Triglycerides>=minimum(mean_Triglycerides,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3272 Triglycerides>=mean_Triglycerides^encounters_lifetime_perc_covered\n", + "3273 Triglycerides>=-healthcare_expenses\n", + "3274 Triglycerides>=Glucose^2/mean_Heart_rate\n", + "3275 Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "3276 Triglycerides>=-mean_Heart_rate+mean_Microalbumin_Creatinine_Ratio-1\n", + "3277 Triglycerides>=minimum(mean_Triglycerides,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3278 Triglycerides>=active_condition_length^2/MCHC__Mass_volume__by_Automated_count\n", + "3279 Triglycerides>=Estimated_Glomerular_Filtration_Rate*e^num_allergies\n", + "3280 Triglycerides>=healthcare_expenses^longitude\n", + "3281 Triglycerides>=Diastolic_Blood_Pressure+lifetime_conditions+1\n", + "3282 Triglycerides>=minimum(mean_Triglycerides,1/2*lifetime_care_plan_length)\n", + "3283 Triglycerides>=(2*Total_Cholesterol)^medications_lifetime_perc_covered\n", + "3284 Triglycerides>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Triglycerides-1\n", + "3285 Triglycerides>=minimum(mean_Sodium,10^device_lifetime_length)\n", + "3286 Triglycerides>=10^immunizations_lifetime*Creatinine\n", + "3287 Triglycerides>=minimum(mean_Triglycerides,2*Estimated_Glomerular_Filtration_Rate)\n", + "3288 Triglycerides>=10^medications_active/mean_Estimated_Glomerular_Filtration_Rate\n", + "3289 Triglycerides>=minimum(mean_Triglycerides,1/medications_active)\n", + "3290 Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "3291 Low_Density_Lipoprotein_Cholesterol<=maximum(Body_Height,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3292 Low_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide+mean_Systolic_Blood_Pressure-1\n", + "3293 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,Urea_Nitrogen^2)\n", + "3294 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol/QOLS\n", + "3295 Low_Density_Lipoprotein_Cholesterol<=Sodium+procedures_lifetime_cost\n", + "3296 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "3297 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3298 Low_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3299 Low_Density_Lipoprotein_Cholesterol<=(Potassium+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3300 Low_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate*sqrt(encounters_count)\n", + "3301 Low_Density_Lipoprotein_Cholesterol<=maximum(Triglycerides,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3302 Low_Density_Lipoprotein_Cholesterol<=(procedures_lifetime_cost-1)^mean_Creatinine\n", + "3303 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol/imaging_studies_lifetime\n", + "3304 Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_cost,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3305 Low_Density_Lipoprotein_Cholesterol<=(mean_Potassium+1)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3306 Low_Density_Lipoprotein_Cholesterol<=Chloride+lifetime_care_plan_length-1\n", + "3307 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "3308 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "3309 Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_dispenses,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3310 Low_Density_Lipoprotein_Cholesterol<=QALY+Systolic_Blood_Pressure\n", + "3311 Low_Density_Lipoprotein_Cholesterol<=2*mean_Creatinine*mean_Diastolic_Blood_Pressure\n", + "3312 Low_Density_Lipoprotein_Cholesterol<=log(latitude)^Potassium\n", + "3313 Low_Density_Lipoprotein_Cholesterol<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*log(latitude)\n", + "3314 Low_Density_Lipoprotein_Cholesterol<=log(Hemoglobin__Mass_volume__in_Blood)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3315 Low_Density_Lipoprotein_Cholesterol<=mean_Estimated_Glomerular_Filtration_Rate*sqrt(mean_High_Density_Lipoprotein_Cholesterol)\n", + "3316 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,1/device_lifetime_length)\n", + "3317 Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "3318 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "3319 Low_Density_Lipoprotein_Cholesterol>=-lifetime_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3320 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3321 Low_Density_Lipoprotein_Cholesterol>=minimum(Heart_rate,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3322 Low_Density_Lipoprotein_Cholesterol>=(Microalbumin_Creatinine_Ratio-1)*encounters_lifetime_perc_covered\n", + "3323 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/medications_active)\n", + "3324 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*mean_Triglycerides)\n", + "3325 Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "3326 Low_Density_Lipoprotein_Cholesterol>=minimum(age,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3327 Low_Density_Lipoprotein_Cholesterol>=-Chloride+Total_Cholesterol-1\n", + "3328 Low_Density_Lipoprotein_Cholesterol>=-Chloride+mean_Microalbumin_Creatinine_Ratio-1\n", + "3329 Low_Density_Lipoprotein_Cholesterol>=DALY*log(MCV__Entitic_volume__by_Automated_count)\n", + "3330 Low_Density_Lipoprotein_Cholesterol>=(mean_Microalbumin_Creatinine_Ratio+1)^imaging_studies_lifetime\n", + "3331 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^encounters_lifetime_perc_covered\n", + "3332 Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "3333 Low_Density_Lipoprotein_Cholesterol>=minimum(Body_Weight,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3334 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "3335 Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "3336 Low_Density_Lipoprotein_Cholesterol>=1/2*longitude+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3337 Low_Density_Lipoprotein_Cholesterol>=sqrt(immunizations_lifetime_cost)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3338 Low_Density_Lipoprotein_Cholesterol>=(encounters_count+1)/Creatinine\n", + "3339 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*lifetime_care_plan_length)\n", + "3340 Low_Density_Lipoprotein_Cholesterol>=sqrt(mean_Sodium)^immunizations_lifetime\n", + "3341 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,Calcium^2)\n", + "3342 Low_Density_Lipoprotein_Cholesterol>=-Microalbumin_Creatinine_Ratio+mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "3343 Low_Density_Lipoprotein_Cholesterol>=active_care_plans*sqrt(encounters_count)\n", + "3344 Low_Density_Lipoprotein_Cholesterol>=1/2*Calcium*lifetime_conditions\n", + "3345 Low_Density_Lipoprotein_Cholesterol>=-Systolic_Blood_Pressure+Total_Cholesterol+1\n", + "3346 Low_Density_Lipoprotein_Cholesterol>=(Body_Weight-1)/mean_Creatinine\n", + "3347 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,procedures_lifetime^2)\n", + "3348 Low_Density_Lipoprotein_Cholesterol>=log(mean_Respiratory_rate)^mean_Creatinine\n", + "3349 Low_Density_Lipoprotein_Cholesterol>=ceil(Estimated_Glomerular_Filtration_Rate)/DALY\n", + "3350 High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "3351 High_Density_Lipoprotein_Cholesterol<=e^Creatinine+mean_High_Density_Lipoprotein_Cholesterol\n", + "3352 High_Density_Lipoprotein_Cholesterol<=maximum(Sodium,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3353 High_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3354 High_Density_Lipoprotein_Cholesterol<=mean_Diastolic_Blood_Pressure+1\n", + "3355 High_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "3356 High_Density_Lipoprotein_Cholesterol<=-DALY+MCV__Entitic_volume__by_Automated_count-1\n", + "3357 High_Density_Lipoprotein_Cholesterol<=log(encounters_lifetime_payer_coverage)/log(10)+Diastolic_Blood_Pressure\n", + "3358 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,Urea_Nitrogen^2)\n", + "3359 High_Density_Lipoprotein_Cholesterol<=10^DALY*mean_High_Density_Lipoprotein_Cholesterol\n", + "3360 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,10^Microalbumin_Creatinine_Ratio)\n", + "3361 High_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_cost,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3362 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "3363 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,medications_lifetime^2)\n", + "3364 High_Density_Lipoprotein_Cholesterol<=sqrt(Heart_rate)+mean_High_Density_Lipoprotein_Cholesterol\n", + "3365 High_Density_Lipoprotein_Cholesterol<=mean_Chloride^2/mean_Microalbumin_Creatinine_Ratio\n", + "3366 High_Density_Lipoprotein_Cholesterol<=maximum(Systolic_Blood_Pressure,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3367 High_Density_Lipoprotein_Cholesterol<=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/log(10)+mean_High_Density_Lipoprotein_Cholesterol\n", + "3368 High_Density_Lipoprotein_Cholesterol<=Body_Weight*sqrt(Creatinine)\n", + "3369 High_Density_Lipoprotein_Cholesterol<=Calcium*floor(active_care_plan_length)\n", + "3370 High_Density_Lipoprotein_Cholesterol<=-Diastolic_Blood_Pressure+2*mean_Glucose\n", + "3371 High_Density_Lipoprotein_Cholesterol<=Chloride^2/mean_Microalbumin_Creatinine_Ratio\n", + "3372 High_Density_Lipoprotein_Cholesterol<=10^Potassium/mean_Systolic_Blood_Pressure\n", + "3373 High_Density_Lipoprotein_Cholesterol<=10^medications_active*mean_High_Density_Lipoprotein_Cholesterol\n", + "3374 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "3375 High_Density_Lipoprotein_Cholesterol<=1/2*Urea_Nitrogen+mean_High_Density_Lipoprotein_Cholesterol\n", + "3376 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,active_care_plan_length^2)\n", + "3377 High_Density_Lipoprotein_Cholesterol<=Calcium+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3378 High_Density_Lipoprotein_Cholesterol<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+procedures_lifetime_cost-1\n", + "3379 High_Density_Lipoprotein_Cholesterol<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_High_Density_Lipoprotein_Cholesterol+1)\n", + "3380 High_Density_Lipoprotein_Cholesterol<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_High_Density_Lipoprotein_Cholesterol\n", + "3381 High_Density_Lipoprotein_Cholesterol>=longitude\n", + "3382 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "3383 High_Density_Lipoprotein_Cholesterol>=2*encounters_count/mean_Respiratory_rate\n", + "3384 High_Density_Lipoprotein_Cholesterol>=1/2*Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "3385 High_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^immunizations_lifetime\n", + "3386 High_Density_Lipoprotein_Cholesterol>=mean_Creatinine*sqrt(mean_Heart_rate)\n", + "3387 High_Density_Lipoprotein_Cholesterol>=-immunizations_lifetime_cost+mean_High_Density_Lipoprotein_Cholesterol\n", + "3388 High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "3389 High_Density_Lipoprotein_Cholesterol>=ceil(Body_Mass_Index)*immunizations_lifetime\n", + "3390 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,active_care_plans^2)\n", + "3391 High_Density_Lipoprotein_Cholesterol>=-active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "3392 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^QOLS\n", + "3393 High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "3394 High_Density_Lipoprotein_Cholesterol>=Leukocytes____volume__in_Blood_by_Automated_count^2-mean_High_Density_Lipoprotein_Cholesterol\n", + "3395 High_Density_Lipoprotein_Cholesterol>=minimum(Estimated_Glomerular_Filtration_Rate,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3396 High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "3397 High_Density_Lipoprotein_Cholesterol>=(2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^medications_lifetime_perc_covered\n", + "3398 High_Density_Lipoprotein_Cholesterol>=minimum(Estimated_Glomerular_Filtration_Rate,e^active_care_plans)\n", + "3399 High_Density_Lipoprotein_Cholesterol>=(log(mean_High_Density_Lipoprotein_Cholesterol)/log(10))^lifetime_care_plans\n", + "3400 High_Density_Lipoprotein_Cholesterol>=Urea_Nitrogen+1/2*mean_High_Density_Lipoprotein_Cholesterol\n", + "3401 High_Density_Lipoprotein_Cholesterol>=1/2*Diastolic_Blood_Pressure*imaging_studies_lifetime\n", + "3402 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,1/medications_lifetime_perc_covered)\n", + "3403 High_Density_Lipoprotein_Cholesterol>=1/2*mean_Estimated_Glomerular_Filtration_Rate+mean_Urea_Nitrogen\n", + "3404 High_Density_Lipoprotein_Cholesterol>=Body_Mass_Index*log(DALY)/log(10)\n", + "3405 High_Density_Lipoprotein_Cholesterol>=Urea_Nitrogen+2*active_conditions\n", + "3406 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^encounters_lifetime_perc_covered\n", + "3407 High_Density_Lipoprotein_Cholesterol>=Carbon_Dioxide*log(device_lifetime_length)\n", + "3408 High_Density_Lipoprotein_Cholesterol>=1/2*Body_Height-age\n", + "3409 High_Density_Lipoprotein_Cholesterol>=2*Urea_Nitrogen/mean_Creatinine\n", + "3410 Creatinine<=healthcare_expenses\n", + "3411 Creatinine<=maximum(Triglycerides,mean_Creatinine)\n", + "3412 Creatinine<=ceil(Potassium)\n", + "3413 Creatinine<=active_care_plans+log(Potassium)\n", + "3414 Creatinine<=Potassium+immunizations_lifetime\n", + "3415 Creatinine<=-Potassium+Urea_Nitrogen\n", + "3416 Creatinine<=maximum(Respiratory_rate,mean_Creatinine)\n", + "3417 Creatinine<=maximum(mean_Creatinine,1/2*Microalbumin_Creatinine_Ratio)\n", + "3418 Creatinine<=floor(Urea_Nitrogen)/mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3419 Creatinine<=Globulin__Mass_volume__in_Serum_by_calculation+1\n", + "3420 Creatinine<=sqrt(Potassium)/encounters_lifetime_perc_covered\n", + "3421 Creatinine<=healthcare_coverage+mean_Creatinine\n", + "3422 Creatinine<=maximum(mean_Creatinine,1/2*lifetime_conditions)\n", + "3423 Creatinine<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(age)\n", + "3424 Creatinine<=DALY+mean_Creatinine\n", + "3425 Creatinine<=Globulin__Mass_volume__in_Serum_by_calculation+procedures_lifetime\n", + "3426 Creatinine<=mean_Creatinine+procedures_lifetime\n", + "3427 Creatinine<=mean_Creatinine+medications_active\n", + "3428 Creatinine<=QALY^2/Triglycerides\n", + "3429 Creatinine<=e^medications_lifetime/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3430 Creatinine<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Creatinine\n", + "3431 Creatinine<=active_care_plans*mean_Creatinine\n", + "3432 Creatinine<=sqrt(High_Density_Lipoprotein_Cholesterol)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3433 Creatinine<=minimum(Estimated_Glomerular_Filtration_Rate,sqrt(Leukocytes____volume__in_Blood_by_Automated_count))\n", + "3434 Creatinine<=10^mean_Creatinine/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3435 Creatinine<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^mean_Creatinine\n", + "3436 Creatinine<=-Calcium+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3437 Creatinine<=mean_Creatinine+medications_lifetime\n", + "3438 Creatinine<=mean_Creatinine/medications_lifetime_perc_covered\n", + "3439 Creatinine>=longitude\n", + "3440 Creatinine>=-DALY+log(mean_Microalbumin_Creatinine_Ratio)\n", + "3441 Creatinine>=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)/Chloride\n", + "3442 Creatinine>=minimum(mean_Creatinine,-Respiratory_rate)\n", + "3443 Creatinine>=-healthcare_expenses\n", + "3444 Creatinine>=-healthcare_coverage+mean_Creatinine\n", + "3445 Creatinine>=active_conditions-encounters_count\n", + "3446 Creatinine>=healthcare_expenses^longitude\n", + "3447 Creatinine>=minimum(device_lifetime_length,Potassium)\n", + "3448 Creatinine>=log(Urea_Nitrogen)/log(10)-QOLS\n", + "3449 Creatinine>=minimum(mean_Creatinine,1/2*immunizations_lifetime)\n", + "3450 Creatinine>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "3451 Creatinine>=minimum(encounters_lifetime_perc_covered,mean_Creatinine)\n", + "3452 Creatinine>=(1/Urea_Nitrogen)^encounters_lifetime_perc_covered\n", + "3453 Creatinine>=-Estimated_Glomerular_Filtration_Rate+2*mean_Calcium\n", + "3454 Creatinine>=-Microalbumin_Creatinine_Ratio+Potassium-1\n", + "3455 Creatinine>=-lifetime_conditions+log(lifetime_care_plan_length)\n", + "3456 Creatinine>=2*Diastolic_Blood_Pressure-Total_Cholesterol\n", + "3457 Creatinine>=-encounters_lifetime_perc_covered+floor(mean_Creatinine)\n", + "3458 Creatinine>=ceil(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3459 Creatinine>=log(High_Density_Lipoprotein_Cholesterol)/(active_care_plans*log(10))\n", + "3460 Creatinine>=minimum(num_allergies,mean_Creatinine)\n", + "3461 Creatinine>=Globulin__Mass_volume__in_Serum_by_calculation-procedures_lifetime_cost\n", + "3462 Creatinine>=-DALY+mean_Creatinine\n", + "3463 Creatinine>=2*mean_Microalbumin_Creatinine_Ratio/Sodium\n", + "3464 Creatinine>=(10^healthcare_expenses)^longitude\n", + "3465 Creatinine>=QOLS^active_care_plans\n", + "3466 Creatinine>=floor(Potassium)-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3467 Creatinine>=log(Carbon_Dioxide)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3468 Creatinine>=(procedures_lifetime+1)/Respiratory_rate\n", + "3469 Creatinine>=QOLS-medications_lifetime\n", + "3470 Creatinine>=Carbon_Dioxide-QALY-1\n", + "3471 Creatinine>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(mean_Creatinine)\n", + "3472 Creatinine>=num_allergies^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "3473 Creatinine>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Creatinine-1)\n", + "3474 Creatinine>=10^immunizations_lifetime/High_Density_Lipoprotein_Cholesterol\n", + "3475 Creatinine>=(mean_High_Density_Lipoprotein_Cholesterol-1)/Estimated_Glomerular_Filtration_Rate\n", + "3476 Creatinine>=sqrt(device_lifetime_length)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "3477 Sodium<=healthcare_expenses\n", + "3478 Sodium<=maximum(mean_Sodium,2*Protein__Mass_volume__in_Serum,Plasma)\n", + "3479 Sodium<=sqrt(active_conditions)+mean_Sodium\n", + "3480 Sodium<=mean_Creatinine+mean_Sodium+1\n", + "3481 Sodium<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_care_plan_length\n", + "3482 Sodium<=mean_Sodium+medications_lifetime\n", + "3483 Sodium<=healthcare_coverage+mean_Sodium\n", + "3484 Sodium<=maximum(medications_lifetime_dispenses,mean_Sodium)\n", + "3485 Sodium<=mean_Sodium+procedures_lifetime_cost\n", + "3486 Sodium<=Systolic_Blood_Pressure+age\n", + "3487 Sodium<=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)+mean_Sodium\n", + "3488 Sodium<=mean_Sodium^active_care_plans\n", + "3489 Sodium<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Sodium\n", + "3490 Sodium<=mean_Sodium/QOLS\n", + "3491 Sodium<=-Urea_Nitrogen+floor(Body_Height)\n", + "3492 Sodium<=maximum(Body_Height,mean_Sodium)\n", + "3493 Sodium<=maximum(mean_Sodium,10^Microalbumin_Creatinine_Ratio)\n", + "3494 Sodium<=Diastolic_Blood_Pressure*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3495 Sodium<=mean_Chloride+2*mean_Estimated_Glomerular_Filtration_Rate\n", + "3496 Sodium<=log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)+mean_Sodium\n", + "3497 Sodium<=maximum(mean_Sodium,encounters_count^2)\n", + "3498 Sodium<=sqrt(Body_Weight)*Estimated_Glomerular_Filtration_Rate\n", + "3499 Sodium<=log(mean_Body_Mass_Index)+mean_Sodium\n", + "3500 Sodium<=maximum(Total_Cholesterol,ceil(mean_Sodium))\n", + "3501 Sodium<=1/2*Carbon_Dioxide*mean_Respiratory_rate\n", + "3502 Sodium>=latitude\n", + "3503 Sodium>=2*Carbon_Dioxide+age\n", + "3504 Sodium>=-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Sodium\n", + "3505 Sodium>=active_conditions+mean_Systolic_Blood_Pressure\n", + "3506 Sodium>=minimum(mean_Sodium,2*active_care_plan_length)\n", + "3507 Sodium>=Estimated_Glomerular_Filtration_Rate*mean_Creatinine\n", + "3508 Sodium>=-healthcare_expenses\n", + "3509 Sodium>=-DALY+mean_Sodium\n", + "3510 Sodium>=Creatinine^2+mean_Systolic_Blood_Pressure\n", + "3511 Sodium>=-healthcare_coverage+mean_Sodium\n", + "3512 Sodium>=healthcare_expenses^longitude\n", + "3513 Sodium>=minimum(mean_Sodium,1/2*Triglycerides)\n", + "3514 Sodium>=lifetime_care_plans*lifetime_conditions\n", + "3515 Sodium>=minimum(Low_Density_Lipoprotein_Cholesterol,mean_Sodium)\n", + "3516 Sodium>=Systolic_Blood_Pressure+1/2*active_conditions\n", + "3517 Sodium>=-immunizations_lifetime_cost+mean_Sodium\n", + "3518 Sodium>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plans\n", + "3519 Sodium>=sqrt(encounters_lifetime_perc_covered)*mean_Microalbumin_Creatinine_Ratio\n", + "3520 Sodium>=log(device_lifetime_length)/log(10)+mean_Sodium\n", + "3521 Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "3522 Sodium>=1/2*Glucose+mean_Diastolic_Blood_Pressure\n", + "3523 Sodium>=minimum(encounters_count,Low_Density_Lipoprotein_Cholesterol)\n", + "3524 Sodium>=minimum(mean_Sodium,1/medications_active)\n", + "3525 Sodium>=Body_Weight*log(mean_Creatinine)\n", + "3526 Sodium>=device_lifetime_length^2-active_conditions\n", + "3527 Sodium>=Urea_Nitrogen*sqrt(mean_Estimated_Glomerular_Filtration_Rate)\n", + "3528 Sodium>=mean_Sodium/active_care_plans\n", + "3529 Sodium>=mean_Sodium-medications_lifetime\n", + "3530 Sodium>=Carbon_Dioxide+ceil(Chloride)\n", + "3531 Sodium>=1/2*immunizations_lifetime*mean_Sodium\n", + "3532 Sodium>=sqrt(Body_Mass_Index)+mean_Systolic_Blood_Pressure\n", + "3533 Sodium>=-DALY+ceil(mean_Sodium)\n", + "3534 Sodium>=minimum(mean_Sodium,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3535 Potassium<=healthcare_expenses\n", + "3536 Potassium<=mean_Potassium+medications_lifetime\n", + "3537 Potassium<=log(active_care_plans)/log(10)+mean_Potassium\n", + "3538 Potassium<=maximum(Body_temperature,sqrt(mean_Microalbumin_Creatinine_Ratio))\n", + "3539 Potassium<=floor(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3540 Potassium<=immunizations_lifetime+mean_Potassium\n", + "3541 Potassium<=Creatinine+Microalbumin_Creatinine_Ratio+1\n", + "3542 Potassium<=1/2*High_Density_Lipoprotein_Cholesterol/mean_Creatinine\n", + "3543 Potassium<=10^medications_lifetime_perc_covered+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3544 Potassium<=maximum(mean_Potassium,1/2*active_care_plan_length)\n", + "3545 Potassium<=DALY+mean_Potassium\n", + "3546 Potassium<=healthcare_coverage+mean_Potassium\n", + "3547 Potassium<=maximum(Triglycerides,mean_Potassium)\n", + "3548 Potassium<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^mean_Urea_Nitrogen\n", + "3549 Potassium<=Respiratory_rate-active_care_plans\n", + "3550 Potassium<=ceil(Albumin__Mass_volume__in_Serum,Plasma+1)\n", + "3551 Potassium<=(mean_Estimated_Glomerular_Filtration_Rate-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3552 Potassium<=sqrt(High_Density_Lipoprotein_Cholesterol)-1\n", + "3553 Potassium<=maximum(active_conditions,mean_Potassium)\n", + "3554 Potassium<=10^encounters_lifetime_perc_covered+Globulin__Mass_volume__in_Serum_by_calculation\n", + "3555 Potassium<=1/2*DALY+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3556 Potassium<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1)\n", + "3557 Potassium<=Carbon_Dioxide^2/Heart_rate\n", + "3558 Potassium<=(1/medications_lifetime_perc_covered)^mean_Calcium\n", + "3559 Potassium<=-Creatinine+Urea_Nitrogen\n", + "3560 Potassium<=e^Estimated_Glomerular_Filtration_Rate/medications_lifetime_cost\n", + "3561 Potassium<=maximum(mean_Potassium,e^Creatinine)\n", + "3562 Potassium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Creatinine)\n", + "3563 Potassium<=(Estimated_Glomerular_Filtration_Rate-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3564 Potassium<=2*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+medications_lifetime\n", + "3565 Potassium<=mean_Potassium^active_care_plans\n", + "3566 Potassium>=longitude\n", + "3567 Potassium>=minimum(device_lifetime_length,Creatinine)\n", + "3568 Potassium>=minimum(mean_Creatinine,sqrt(mean_Estimated_Glomerular_Filtration_Rate))\n", + "3569 Potassium>=1/2*mean_Total_Cholesterol/QALY\n", + "3570 Potassium>=minimum(mean_Potassium,sqrt(Respiratory_rate))\n", + "3571 Potassium>=minimum(mean_Potassium,10^num_allergies)\n", + "3572 Potassium>=ceil(1/2*medications_active)\n", + "3573 Potassium>=-healthcare_expenses\n", + "3574 Potassium>=mean_Potassium-procedures_lifetime\n", + "3575 Potassium>=-Respiratory_rate+1/2*procedures_lifetime\n", + "3576 Potassium>=mean_Potassium^QOLS\n", + "3577 Potassium>=minimum(mean_Potassium,e^immunizations_lifetime)\n", + "3578 Potassium>=minimum(num_allergies,mean_Potassium)\n", + "3579 Potassium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(active_care_plan_length)\n", + "3580 Potassium>=sqrt(mean_Potassium)^immunizations_lifetime\n", + "3581 Potassium>=healthcare_expenses^longitude\n", + "3582 Potassium>=-Creatinine+ceil(mean_Potassium)\n", + "3583 Potassium>=minimum(mean_Albumin__Mass_volume__in_Serum,Plasma,10^num_allergies)\n", + "3584 Potassium>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted/Urea_Nitrogen\n", + "3585 Potassium>=(1/2*mean_Creatinine)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3586 Potassium>=-healthcare_coverage+mean_Potassium\n", + "3587 Potassium>=minimum(Albumin__Mass_volume__in_Serum,Plasma,mean_Potassium)\n", + "3588 Potassium>=-Respiratory_rate+lifetime_conditions\n", + "3589 Potassium>=mean_Potassium-medications_active\n", + "3590 Potassium>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime_cost+1\n", + "3591 Potassium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+log(DALY)\n", + "3592 Potassium>=(10^healthcare_expenses)^longitude\n", + "3593 Potassium>=-QOLS+log(age)\n", + "3594 Potassium>=10^num_allergies/mean_Estimated_Glomerular_Filtration_Rate\n", + "3595 Potassium>=(DALY+1)/active_conditions\n", + "3596 Potassium>=Glomerular_filtration_rate_1_73_sq_M_predicted/active_care_plan_length\n", + "3597 Potassium>=minimum(mean_Potassium,-Respiratory_rate)\n", + "3598 Potassium>=mean_Potassium/active_care_plans\n", + "3599 Potassium>=mean_Potassium-medications_lifetime\n", + "3600 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "3601 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_conditions,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3602 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered\n", + "3603 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3604 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "3605 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Potassium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3606 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=immunizations_lifetime+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3607 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(latitude)^DALY\n", + "3608 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-High_Density_Lipoprotein_Cholesterol+ceil(mean_Glucose)\n", + "3609 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "3610 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Triglycerides,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3611 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Respiratory_rate+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3612 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=QOLS^2+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3613 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3614 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "3615 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Triglycerides^2/medications_lifetime_dispenses\n", + "3616 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=minimum(Estimated_Glomerular_Filtration_Rate,log(MCV__Entitic_volume__by_Automated_count))\n", + "3617 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "3618 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*num_allergies-2\n", + "3619 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3620 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/QOLS)\n", + "3621 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(active_care_plans,floor(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "3622 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(procedures_lifetime,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3623 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "3624 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "3625 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Microalbumin_Creatinine_Ratio/mean_Glucose\n", + "3626 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*immunizations_lifetime*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3627 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "3628 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-immunizations_lifetime_cost+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3629 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_active\n", + "3630 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "3631 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3632 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(DALY)/active_conditions\n", + "3633 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime\n", + "3634 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(High_Density_Lipoprotein_Cholesterol)/Body_Mass_Index\n", + "3635 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(DALY,floor(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "3636 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "3637 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Estimated_Glomerular_Filtration_Rate/Calcium\n", + "3638 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Potassium*log(num_allergies)\n", + "3639 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/encounters_lifetime_perc_covered)\n", + "3640 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(device_lifetime_length,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3641 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Creatinine,1/encounters_lifetime_perc_covered)\n", + "3642 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3643 Glucose<=healthcare_expenses\n", + "3644 Glucose<=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^Carbon_Dioxide\n", + "3645 Glucose<=mean_Diastolic_Blood_Pressure+mean_High_Density_Lipoprotein_Cholesterol\n", + "3646 Glucose<=10^QOLS*mean_Glucose\n", + "3647 Glucose<=Body_Mass_Index^2/device_lifetime_length\n", + "3648 Glucose<=healthcare_coverage+mean_Glucose\n", + "3649 Glucose<=Chloride+1/2*Globulin__Mass_volume__in_Serum_by_calculation\n", + "3650 Glucose<=maximum(mean_Glucose,e^medications_lifetime)\n", + "3651 Glucose<=Protein__Mass_volume__in_Serum,Plasma*log(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)\n", + "3652 Glucose<=1/2*Body_Weight*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3653 Glucose<=mean_Glucose^active_care_plans\n", + "3654 Glucose<=mean_Glucose/QOLS\n", + "3655 Glucose<=1/2*active_care_plans*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3656 Glucose<=e^procedures_lifetime+mean_Glucose\n", + "3657 Glucose<=maximum(Body_Height,mean_Glucose)\n", + "3658 Glucose<=maximum(medications_lifetime_dispenses,High_Density_Lipoprotein_Cholesterol)\n", + "3659 Glucose<=mean_Glucose+medications_lifetime\n", + "3660 Glucose<=mean_Glucose+procedures_lifetime_cost\n", + "3661 Glucose<=Chloride+active_conditions+1\n", + "3662 Glucose<=e^active_care_plans+mean_Chloride\n", + "3663 Glucose<=maximum(Triglycerides,mean_Glucose)\n", + "3664 Glucose<=10^medications_lifetime_perc_covered*mean_Glucose\n", + "3665 Glucose<=mean_Creatinine^2+Systolic_Blood_Pressure\n", + "3666 Glucose<=Urea_Nitrogen+mean_Glucose\n", + "3667 Glucose<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Microalbumin_Creatinine_Ratio)\n", + "3668 Glucose<=maximum(mean_Glucose,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3669 Glucose<=lifetime_conditions+mean_Chloride+1\n", + "3670 Glucose<=ceil(QALY)*mean_Potassium\n", + "3671 Glucose<=Heart_rate+2*mean_Carbon_Dioxide\n", + "3672 Glucose>=latitude\n", + "3673 Glucose>=1/2*Estimated_Glomerular_Filtration_Rate/encounters_lifetime_perc_covered\n", + "3674 Glucose>=(Chloride+1)*medications_lifetime_perc_covered\n", + "3675 Glucose>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(active_condition_length)\n", + "3676 Glucose>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Glucose)\n", + "3677 Glucose>=-healthcare_expenses\n", + "3678 Glucose>=log(active_care_plan_length)*mean_Urea_Nitrogen\n", + "3679 Glucose>=(medications_active+1)*Calcium\n", + "3680 Glucose>=minimum(mean_Glucose,procedures_lifetime^2)\n", + "3681 Glucose>=lifetime_conditions*log(mean_High_Density_Lipoprotein_Cholesterol)\n", + "3682 Glucose>=2*QALY-lifetime_care_plan_length\n", + "3683 Glucose>=Albumin__Mass_volume__in_Serum,Plasma+ceil(QALY)\n", + "3684 Glucose>=1/2*imaging_studies_lifetime*mean_Total_Cholesterol\n", + "3685 Glucose>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Glucose)\n", + "3686 Glucose>=healthcare_expenses^longitude\n", + "3687 Glucose>=mean_Glucose/active_care_plans\n", + "3688 Glucose>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Glucose)\n", + "3689 Glucose>=minimum(mean_Glucose,10^immunizations_lifetime)\n", + "3690 Glucose>=e^mean_Creatinine-mean_Body_Mass_Index\n", + "3691 Glucose>=-healthcare_coverage+mean_Glucose\n", + "3692 Glucose>=sqrt(encounters_lifetime_total_cost)-Protein__Mass_volume__in_Serum,Plasma\n", + "3693 Glucose>=active_condition_length^2/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3694 Glucose>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood-longitude\n", + "3695 Glucose>=minimum(mean_Glucose,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3696 Glucose>=10^log(active_care_plans)\n", + "3697 Glucose>=(1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^medications_lifetime_perc_covered\n", + "3698 Glucose>=immunizations_lifetime_cost-mean_Triglycerides+1\n", + "3699 Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "3700 Glucose>=Triglycerides/Microalbumin_Creatinine_Ratio\n", + "3701 Glucose>=e^num_allergies+latitude\n", + "3702 Glucose>=mean_Glucose-procedures_lifetime_cost-1\n", + "3703 Glucose>=1/2*Estimated_Glomerular_Filtration_Rate*medications_active\n", + "3704 Glucose>=mean_Body_Weight-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "3705 Glucose>=mean_Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered^2\n", + "3706 Glucose>=mean_Glucose-medications_lifetime_cost\n", + "3707 Glucose>=floor(mean_Glucose)^imaging_studies_lifetime\n", + "3708 Chloride<=healthcare_expenses\n", + "3709 Chloride<=2*Protein__Mass_volume__in_Serum,Plasma-medications_active\n", + "3710 Chloride<=1/2*Sodium+latitude\n", + "3711 Chloride<=(mean_Chloride-1)/imaging_studies_lifetime\n", + "3712 Chloride<=healthcare_coverage+mean_Chloride\n", + "3713 Chloride<=mean_Chloride/QOLS\n", + "3714 Chloride<=maximum(mean_Chloride,mean_Triglycerides)\n", + "3715 Chloride<=maximum(mean_Chloride,e^active_conditions)\n", + "3716 Chloride<=mean_Chloride^active_care_plans\n", + "3717 Chloride<=Respiratory_rate*Urea_Nitrogen\n", + "3718 Chloride<=e^Creatinine+mean_Chloride\n", + "3719 Chloride<=maximum(mean_Chloride,medications_lifetime^2)\n", + "3720 Chloride<=Body_Weight+floor(age)\n", + "3721 Chloride<=e^Glomerular_filtration_rate_1_73_sq_M_predicted/Sodium\n", + "3722 Chloride<=1/num_allergies+mean_Chloride\n", + "3723 Chloride<=floor(Glucose)/medications_lifetime_perc_covered\n", + "3724 Chloride<=maximum(lifetime_condition_length,mean_Chloride)\n", + "3725 Chloride<=1/2*Estimated_Glomerular_Filtration_Rate*mean_Respiratory_rate\n", + "3726 Chloride<=2*High_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate\n", + "3727 Chloride<=maximum(Body_Height,mean_Chloride)\n", + "3728 Chloride<=1/2*mean_Heart_rate*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3729 Chloride<=mean_Calcium^2+QALY\n", + "3730 Chloride<=mean_Chloride+medications_lifetime\n", + "3731 Chloride<=log(mean_Creatinine)+mean_Systolic_Blood_Pressure\n", + "3732 Chloride<=log(Heart_rate)+mean_Chloride\n", + "3733 Chloride<=(Albumin__Mass_volume__in_Serum,Plasma-1)*QALY\n", + "3734 Chloride<=2*Creatinine*mean_Chloride\n", + "3735 Chloride<=log(Globulin__Mass_volume__in_Serum_by_calculation)+mean_Chloride\n", + "3736 Chloride<=maximum(Triglycerides,mean_Chloride+1)\n", + "3737 Chloride<=Diastolic_Blood_Pressure+1/2*Heart_rate\n", + "3738 Chloride<=maximum(mean_Chloride,10^Microalbumin_Creatinine_Ratio)\n", + "3739 Chloride<=Carbon_Dioxide*log(mean_Total_Cholesterol)\n", + "3740 Chloride>=latitude\n", + "3741 Chloride>=-Potassium+mean_Chloride\n", + "3742 Chloride>=-Microalbumin_Creatinine_Ratio+mean_Chloride+1\n", + "3743 Chloride>=mean_Chloride-procedures_lifetime_cost\n", + "3744 Chloride>=Body_Weight+1\n", + "3745 Chloride>=-Calcium+mean_Glucose\n", + "3746 Chloride>=-mean_Calcium+mean_Glucose\n", + "3747 Chloride>=minimum(mean_Chloride,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3748 Chloride>=-DALY+floor(mean_Chloride)\n", + "3749 Chloride>=-healthcare_expenses\n", + "3750 Chloride>=minimum(mean_Chloride,1/2*Triglycerides)\n", + "3751 Chloride>=1/2*Urea_Nitrogen+mean_Heart_rate\n", + "3752 Chloride>=healthcare_expenses^longitude\n", + "3753 Chloride>=-immunizations_lifetime_cost+mean_Chloride\n", + "3754 Chloride>=mean_Chloride-medications_lifetime\n", + "3755 Chloride>=minimum(mean_Chloride,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3756 Chloride>=sqrt(Carbon_Dioxide)+Heart_rate\n", + "3757 Chloride>=(1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^medications_lifetime_perc_covered\n", + "3758 Chloride>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-DALY+1\n", + "3759 Chloride>=-Albumin__Mass_volume__in_Serum,Plasma+mean_Chloride+1\n", + "3760 Chloride>=(High_Density_Lipoprotein_Cholesterol-1)*immunizations_lifetime\n", + "3761 Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "3762 Chloride>=minimum(mean_Chloride,1/medications_active)\n", + "3763 Chloride>=(device_lifetime_length-1)*mean_Calcium\n", + "3764 Chloride>=floor(mean_Chloride)-mean_Potassium\n", + "3765 Chloride>=1/2*Low_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide\n", + "3766 Chloride>=Glucose-Respiratory_rate-1\n", + "3767 Chloride>=minimum(mean_Chloride,e^mean_Creatinine)\n", + "3768 Chloride>=-healthcare_coverage+mean_Chloride\n", + "3769 Chloride>=mean_Chloride/active_care_plans\n", + "3770 Carbon_Dioxide<=healthcare_expenses\n", + "3771 Carbon_Dioxide<=ceil(mean_Carbon_Dioxide)+procedures_lifetime\n", + "3772 Carbon_Dioxide<=e^mean_Calcium/Total_Cholesterol\n", + "3773 Carbon_Dioxide<=maximum(Triglycerides,mean_Carbon_Dioxide+1)\n", + "3774 Carbon_Dioxide<=maximum(active_condition_length,mean_Carbon_Dioxide)\n", + "3775 Carbon_Dioxide<=medications_active^2+mean_Carbon_Dioxide\n", + "3776 Carbon_Dioxide<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*Urea_Nitrogen\n", + "3777 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,2*lifetime_care_plan_length)\n", + "3778 Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "3779 Carbon_Dioxide<=10^medications_active*mean_Carbon_Dioxide\n", + "3780 Carbon_Dioxide<=healthcare_coverage+mean_Carbon_Dioxide\n", + "3781 Carbon_Dioxide<=e^Albumin__Mass_volume__in_Serum,Plasma-mean_Urea_Nitrogen\n", + "3782 Carbon_Dioxide<=floor(QALY)+procedures_lifetime_cost\n", + "3783 Carbon_Dioxide<=maximum(Heart_rate,mean_Carbon_Dioxide)\n", + "3784 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,active_conditions^2)\n", + "3785 Carbon_Dioxide<=age-mean_Urea_Nitrogen+1\n", + "3786 Carbon_Dioxide<=2*mean_Carbon_Dioxide/immunizations_lifetime\n", + "3787 Carbon_Dioxide<=Calcium*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3788 Carbon_Dioxide<=Creatinine+ceil(QALY)\n", + "3789 Carbon_Dioxide<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "3790 Carbon_Dioxide<=2*Diastolic_Blood_Pressure-mean_Glucose\n", + "3791 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3792 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,sqrt(encounters_lifetime_payer_coverage))\n", + "3793 Carbon_Dioxide<=Potassium+ceil(mean_Carbon_Dioxide)\n", + "3794 Carbon_Dioxide<=mean_Carbon_Dioxide+medications_lifetime\n", + "3795 Carbon_Dioxide<=1/2*Low_Density_Lipoprotein_Cholesterol-1\n", + "3796 Carbon_Dioxide<=1/2*Creatinine*Heart_rate\n", + "3797 Carbon_Dioxide<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Estimated_Glomerular_Filtration_Rate\n", + "3798 Carbon_Dioxide<=2*Creatinine+mean_Carbon_Dioxide\n", + "3799 Carbon_Dioxide<=mean_Carbon_Dioxide^active_care_plans\n", + "3800 Carbon_Dioxide>=longitude\n", + "3801 Carbon_Dioxide>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Carbon_Dioxide\n", + "3802 Carbon_Dioxide>=-DALY+floor(mean_Carbon_Dioxide)\n", + "3803 Carbon_Dioxide>=-Creatinine+mean_Carbon_Dioxide-1\n", + "3804 Carbon_Dioxide>=device_lifetime_length*log(active_care_plan_length)\n", + "3805 Carbon_Dioxide>=log(procedures_lifetime)/log(10)+Urea_Nitrogen\n", + "3806 Carbon_Dioxide>=-healthcare_expenses\n", + "3807 Carbon_Dioxide>=2*mean_Total_Cholesterol/Estimated_Glomerular_Filtration_Rate\n", + "3808 Carbon_Dioxide>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,-Triglycerides)\n", + "3809 Carbon_Dioxide>=healthcare_expenses^longitude\n", + "3810 Carbon_Dioxide>=1/2*medications_lifetime_dispenses/Glucose\n", + "3811 Carbon_Dioxide>=-healthcare_coverage+mean_Carbon_Dioxide\n", + "3812 Carbon_Dioxide>=minimum(DALY,floor(mean_Carbon_Dioxide))\n", + "3813 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,1/medications_lifetime_perc_covered)\n", + "3814 Carbon_Dioxide>=mean_Carbon_Dioxide/active_care_plans\n", + "3815 Carbon_Dioxide>=-immunizations_lifetime_cost+mean_Carbon_Dioxide\n", + "3816 Carbon_Dioxide>=sqrt(High_Density_Lipoprotein_Cholesterol)*num_allergies\n", + "3817 Carbon_Dioxide>=mean_Carbon_Dioxide-procedures_lifetime_cost\n", + "3818 Carbon_Dioxide>=QALY-mean_High_Density_Lipoprotein_Cholesterol+1\n", + "3819 Carbon_Dioxide>=ceil(QALY)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3820 Carbon_Dioxide>=sqrt(Estimated_Glomerular_Filtration_Rate)/encounters_lifetime_perc_covered\n", + "3821 Carbon_Dioxide>=mean_Carbon_Dioxide-medications_lifetime\n", + "3822 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3823 Carbon_Dioxide>=mean_Carbon_Dioxide^QOLS\n", + "3824 Carbon_Dioxide>=DALY-Urea_Nitrogen-1\n", + "3825 Carbon_Dioxide>=log(device_lifetime_length)/log(10)+mean_Estimated_Glomerular_Filtration_Rate\n", + "3826 Carbon_Dioxide>=Low_Density_Lipoprotein_Cholesterol-mean_Systolic_Blood_Pressure+1\n", + "3827 Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "3828 Total_Cholesterol<=healthcare_expenses\n", + "3829 Total_Cholesterol<=10^QOLS*mean_Total_Cholesterol\n", + "3830 Total_Cholesterol<=active_care_plan_length+mean_Total_Cholesterol\n", + "3831 Total_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+Systolic_Blood_Pressure-1\n", + "3832 Total_Cholesterol<=mean_Total_Cholesterol/QOLS\n", + "3833 Total_Cholesterol<=log(Glomerular_filtration_rate_1_73_sq_M_predicted)+mean_Total_Cholesterol\n", + "3834 Total_Cholesterol<=2*mean_Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "3835 Total_Cholesterol<=maximum(mean_Total_Cholesterol,encounters_count^2)\n", + "3836 Total_Cholesterol<=(Diastolic_Blood_Pressure-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3837 Total_Cholesterol<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Total_Cholesterol\n", + "3838 Total_Cholesterol<=10^Erythrocytes____volume__in_Blood_by_Automated_count/Triglycerides\n", + "3839 Total_Cholesterol<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Total_Cholesterol\n", + "3840 Total_Cholesterol<=maximum(medications_lifetime_dispenses,mean_Total_Cholesterol)\n", + "3841 Total_Cholesterol<=2*Glomerular_filtration_rate_1_73_sq_M_predicted/medications_lifetime_perc_covered\n", + "3842 Total_Cholesterol<=mean_Total_Cholesterol/imaging_studies_lifetime\n", + "3843 Total_Cholesterol<=(Estimated_Glomerular_Filtration_Rate+1)*mean_Urea_Nitrogen\n", + "3844 Total_Cholesterol<=maximum(medications_lifetime_cost,mean_Total_Cholesterol)\n", + "3845 Total_Cholesterol<=maximum(mean_Total_Cholesterol,10^Microalbumin_Creatinine_Ratio)\n", + "3846 Total_Cholesterol<=maximum(mean_Total_Cholesterol,2*lifetime_condition_length)\n", + "3847 Total_Cholesterol<=maximum(mean_Total_Cholesterol,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "3848 Total_Cholesterol<=mean_Total_Cholesterol/encounters_lifetime_perc_covered\n", + "3849 Total_Cholesterol<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*log(healthcare_expenses)/log(10)\n", + "3850 Total_Cholesterol<=Diastolic_Blood_Pressure*log(Estimated_Glomerular_Filtration_Rate)\n", + "3851 Total_Cholesterol<=maximum(mean_Total_Cholesterol,e^active_conditions)\n", + "3852 Total_Cholesterol<=log(Chloride)*mean_Systolic_Blood_Pressure/log(10)\n", + "3853 Total_Cholesterol<=mean_Carbon_Dioxide+2*mean_Chloride\n", + "3854 Total_Cholesterol<=(mean_Estimated_Glomerular_Filtration_Rate+1)*active_conditions\n", + "3855 Total_Cholesterol<=1/2*Carbon_Dioxide*mean_Estimated_Glomerular_Filtration_Rate\n", + "3856 Total_Cholesterol>=latitude\n", + "3857 Total_Cholesterol>=minimum(immunizations_lifetime_cost,mean_Total_Cholesterol)\n", + "3858 Total_Cholesterol>=minimum(mean_Total_Cholesterol,e^active_care_plans)\n", + "3859 Total_Cholesterol>=-active_care_plan_length+mean_Total_Cholesterol\n", + "3860 Total_Cholesterol>=minimum(encounters_count,2*mean_Body_Weight)\n", + "3861 Total_Cholesterol>=floor(mean_Estimated_Glomerular_Filtration_Rate)*medications_active\n", + "3862 Total_Cholesterol>=-healthcare_expenses\n", + "3863 Total_Cholesterol>=Heart_rate*log(mean_Glucose)/log(10)\n", + "3864 Total_Cholesterol>=minimum(lifetime_care_plan_length,mean_Total_Cholesterol)\n", + "3865 Total_Cholesterol>=mean_Total_Cholesterol^QOLS\n", + "3866 Total_Cholesterol>=Systolic_Blood_Pressure/Creatinine\n", + "3867 Total_Cholesterol>=minimum(mean_Total_Cholesterol,mean_Urea_Nitrogen)\n", + "3868 Total_Cholesterol>=mean_Total_Cholesterol^encounters_lifetime_perc_covered\n", + "3869 Total_Cholesterol>=active_conditions^2-mean_Total_Cholesterol\n", + "3870 Total_Cholesterol>=healthcare_expenses^longitude\n", + "3871 Total_Cholesterol>=-encounters_count+mean_Total_Cholesterol-1\n", + "3872 Total_Cholesterol>=-Microalbumin_Creatinine_Ratio+mean_Total_Cholesterol+1\n", + "3873 Total_Cholesterol>=sqrt(Microalbumin_Creatinine_Ratio)+Triglycerides\n", + "3874 Total_Cholesterol>=DALY*log(mean_Microalbumin_Creatinine_Ratio)\n", + "3875 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3876 Total_Cholesterol>=minimum(mean_Total_Cholesterol,mean_Triglycerides)\n", + "3877 Total_Cholesterol>=minimum(mean_Total_Cholesterol,e^lifetime_care_plans)\n", + "3878 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/medications_active)\n", + "3879 Total_Cholesterol>=mean_Glucose^2/Heart_rate\n", + "3880 Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "3881 Total_Cholesterol>=sqrt(healthcare_coverage)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "3882 Total_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+floor(mean_Total_Cholesterol)\n", + "3883 Total_Cholesterol>=(QOLS+1)*Glucose\n", + "3884 Total_Cholesterol>=mean_Urea_Nitrogen^2-mean_Microalbumin_Creatinine_Ratio\n", + "3885 Total_Cholesterol>=(mean_Glucose+1)*immunizations_lifetime\n", + "3886 Total_Cholesterol>=(mean_Urea_Nitrogen-1)*device_lifetime_length\n", + "3887 Urea_Nitrogen<=healthcare_expenses\n", + "3888 Urea_Nitrogen<=maximum(Triglycerides,mean_Urea_Nitrogen)\n", + "3889 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,10^Creatinine)\n", + "3890 Urea_Nitrogen<=immunizations_lifetime_cost+mean_Urea_Nitrogen\n", + "3891 Urea_Nitrogen<=Body_Mass_Index-medications_active-1\n", + "3892 Urea_Nitrogen<=sqrt(mean_Respiratory_rate)+active_care_plan_length\n", + "3893 Urea_Nitrogen<=ceil(lifetime_care_plan_length)\n", + "3894 Urea_Nitrogen<=mean_Estimated_Glomerular_Filtration_Rate^2/Carbon_Dioxide\n", + "3895 Urea_Nitrogen<=10^DALY*mean_Urea_Nitrogen\n", + "3896 Urea_Nitrogen<=Potassium*log(Chloride)\n", + "3897 Urea_Nitrogen<=sqrt(10^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3898 Urea_Nitrogen<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+2*mean_Calcium\n", + "3899 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "3900 Urea_Nitrogen<=active_condition_length+1/2*mean_Potassium\n", + "3901 Urea_Nitrogen<=mean_Urea_Nitrogen^active_care_plans\n", + "3902 Urea_Nitrogen<=healthcare_coverage+mean_Urea_Nitrogen\n", + "3903 Urea_Nitrogen<=1/2*Microalbumin_Creatinine_Ratio+active_conditions\n", + "3904 Urea_Nitrogen<=-encounters_lifetime_perc_covered+floor(Carbon_Dioxide)\n", + "3905 Urea_Nitrogen<=maximum(Triglycerides,1/2*mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3906 Urea_Nitrogen<=1/2*QALY+lifetime_care_plans\n", + "3907 Urea_Nitrogen<=mean_Urea_Nitrogen+medications_lifetime_cost\n", + "3908 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,e^Microalbumin_Creatinine_Ratio)\n", + "3909 Urea_Nitrogen<=Systolic_Blood_Pressure^2/medications_lifetime\n", + "3910 Urea_Nitrogen<=10^immunizations_lifetime+Respiratory_rate\n", + "3911 Urea_Nitrogen<=10^medications_active+mean_Urea_Nitrogen\n", + "3912 Urea_Nitrogen<=1/device_lifetime_length+mean_Respiratory_rate\n", + "3913 Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*QALY\n", + "3914 Urea_Nitrogen<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Sodium+1\n", + "3915 Urea_Nitrogen<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Urea_Nitrogen\n", + "3916 Urea_Nitrogen>=longitude\n", + "3917 Urea_Nitrogen>=sqrt(Body_Weight)-mean_Creatinine\n", + "3918 Urea_Nitrogen>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+2*active_care_plans\n", + "3919 Urea_Nitrogen>=2*Triglycerides/Glucose\n", + "3920 Urea_Nitrogen>=mean_Urea_Nitrogen-procedures_lifetime_cost\n", + "3921 Urea_Nitrogen>=mean_Urea_Nitrogen^QOLS\n", + "3922 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,10^num_allergies)\n", + "3923 Urea_Nitrogen>=device_lifetime_length-encounters_lifetime_perc_covered\n", + "3924 Urea_Nitrogen>=-Creatinine+mean_Urea_Nitrogen\n", + "3925 Urea_Nitrogen>=mean_Urea_Nitrogen/active_care_plans\n", + "3926 Urea_Nitrogen>=(mean_Urea_Nitrogen+1)^imaging_studies_lifetime\n", + "3927 Urea_Nitrogen>=-healthcare_expenses\n", + "3928 Urea_Nitrogen>=mean_Urea_Nitrogen-medications_lifetime\n", + "3929 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,1/2*Respiratory_rate)\n", + "3930 Urea_Nitrogen>=-healthcare_coverage+mean_Urea_Nitrogen\n", + "3931 Urea_Nitrogen>=Chloride/Respiratory_rate\n", + "3932 Urea_Nitrogen>=Creatinine*log(Diastolic_Blood_Pressure)/log(10)\n", + "3933 Urea_Nitrogen>=1/2*DALY-active_care_plans\n", + "3934 Urea_Nitrogen>=healthcare_expenses^longitude\n", + "3935 Urea_Nitrogen>=-Low_Density_Lipoprotein_Cholesterol+mean_Heart_rate+1\n", + "3936 Urea_Nitrogen>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+2\n", + "3937 Urea_Nitrogen>=2*mean_Microalbumin_Creatinine_Ratio/QALY\n", + "3938 Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "3939 Urea_Nitrogen>=log(medications_active)*mean_Urea_Nitrogen/log(10)\n", + "3940 Urea_Nitrogen>=-Carbon_Dioxide+DALY-1\n", + "3941 Urea_Nitrogen>=High_Density_Lipoprotein_Cholesterol-lifetime_condition_length+1\n", + "3942 Urea_Nitrogen>=-Carbon_Dioxide+2*lifetime_conditions\n", + "3943 Urea_Nitrogen>=2*lifetime_conditions-mean_Carbon_Dioxide\n", + "3944 Urea_Nitrogen>=-Albumin__Mass_volume__in_Serum,Plasma+ceil(mean_Urea_Nitrogen)\n", + "3945 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,1/encounters_lifetime_perc_covered)\n", + "3946 Urea_Nitrogen>=1/2*immunizations_lifetime*mean_Urea_Nitrogen\n", + "3947 Urea_Nitrogen>=mean_Potassium+medications_active-1\n", + "3948 Urea_Nitrogen>=Creatinine+Potassium\n", + "3949 Urea_Nitrogen>=-active_care_plan_length+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3950 Urea_Nitrogen>=-Chloride+1/2*Total_Cholesterol\n", + "3951 Calcium<=healthcare_expenses\n", + "3952 Calcium<=healthcare_coverage+mean_Calcium\n", + "3953 Calcium<=Urea_Nitrogen+floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3954 Calcium<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+medications_lifetime\n", + "3955 Calcium<=immunizations_lifetime+mean_Calcium\n", + "3956 Calcium<=(mean_Chloride+1)/device_lifetime_length\n", + "3957 Calcium<=maximum(medications_lifetime,mean_Calcium)\n", + "3958 Calcium<=10^(10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3959 Calcium<=1/active_care_plans+mean_Calcium\n", + "3960 Calcium<=maximum(mean_Calcium,sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "3961 Calcium<=maximum(mean_Calcium,10^mean_Creatinine)\n", + "3962 Calcium<=mean_Calcium^active_care_plans\n", + "3963 Calcium<=mean_Calcium+procedures_lifetime\n", + "3964 Calcium<=mean_Calcium/QOLS\n", + "3965 Calcium<=e^active_care_plans/medications_lifetime_perc_covered\n", + "3966 Calcium<=maximum(Triglycerides,mean_Calcium)\n", + "3967 Calcium<=1/2*active_condition_length/QOLS\n", + "3968 Calcium<=Urea_Nitrogen+ceil(DALY)\n", + "3969 Calcium<=2*Low_Density_Lipoprotein_Cholesterol/lifetime_conditions\n", + "3970 Calcium<=maximum(mean_Calcium,mean_Microalbumin_Creatinine_Ratio)\n", + "3971 Calcium<=maximum(active_care_plan_length,mean_Calcium)\n", + "3972 Calcium<=Albumin__Mass_volume__in_Serum,Plasma*Globulin__Mass_volume__in_Serum_by_calculation\n", + "3973 Calcium<=Glucose^2/lifetime_condition_length\n", + "3974 Calcium<=maximum(encounters_count,mean_Calcium)\n", + "3975 Calcium<=10^(1/imaging_studies_lifetime)\n", + "3976 Calcium<=minimum(healthcare_expenses,floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "3977 Calcium>=longitude\n", + "3978 Calcium>=mean_Calcium-medications_active\n", + "3979 Calcium>=minimum(mean_Calcium,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3980 Calcium>=log(procedures_lifetime)^device_lifetime_length\n", + "3981 Calcium>=minimum(mean_Calcium,medications_active+1)\n", + "3982 Calcium>=mean_Creatinine+2*num_allergies\n", + "3983 Calcium>=healthcare_expenses^longitude\n", + "3984 Calcium>=mean_Calcium-procedures_lifetime\n", + "3985 Calcium>=2*Globulin__Mass_volume__in_Serum_by_calculation+2\n", + "3986 Calcium>=1/2*QALY/Potassium\n", + "3987 Calcium>=1/2*immunizations_lifetime*mean_Calcium\n", + "3988 Calcium>=-healthcare_expenses\n", + "3989 Calcium>=-DALY+mean_Calcium\n", + "3990 Calcium>=10^encounters_lifetime_perc_covered+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3991 Calcium>=minimum(mean_Calcium,1/2*mean_Urea_Nitrogen)\n", + "3992 Calcium>=minimum(mean_Calcium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3993 Calcium>=1/2*active_conditions-1\n", + "3994 Calcium>=-Systolic_Blood_Pressure+ceil(Glucose)\n", + "3995 Calcium>=-Microalbumin_Creatinine_Ratio+lifetime_conditions\n", + "3996 Calcium>=Creatinine*log(Heart_rate)/log(10)\n", + "3997 Calcium>=floor(Creatinine)+mean_Potassium\n", + "3998 Calcium>=minimum(mean_Calcium,1/2*procedures_lifetime)\n", + "3999 Calcium>=DALY-encounters_count\n", + "4000 Calcium>=(10^healthcare_expenses)^longitude\n", + "4001 Calcium>=log(mean_Creatinine)*mean_Respiratory_rate/log(10)\n", + "4002 Calcium>=10^imaging_studies_lifetime-DALY\n", + "4003 Calcium>=-healthcare_coverage+mean_Calcium\n", + "4004 Calcium>=minimum(DALY,10^imaging_studies_lifetime)\n", + "4005 Calcium>=mean_Calcium/active_care_plans\n", + "4006 Calcium>=mean_Calcium-medications_lifetime\n", + "4007 Calcium>=1/2*Respiratory_rate+1/2\n", + "4008 Calcium>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/QOLS\n", + "4009 Calcium>=-mean_Chloride+mean_Glucose-1\n", + "4010 Calcium>=(mean_Calcium+1)*medications_lifetime_perc_covered\n", + "4011 Calcium>=Creatinine+e^immunizations_lifetime\n", + "4012 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "4013 Glomerular_filtration_rate_1_73_sq_M_predicted<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+active_conditions\n", + "4014 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Triglycerides,floor(Carbon_Dioxide))\n", + "4015 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4016 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(medications_lifetime,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4017 Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "4018 Glomerular_filtration_rate_1_73_sq_M_predicted>=num_allergies^2+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4019 Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(medications_lifetime,floor(Carbon_Dioxide))\n", + "4020 Glomerular_filtration_rate_1_73_sq_M_predicted>=floor(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4021 Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "4022 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted-num_allergies\n", + "4023 Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "4024 Glomerular_filtration_rate_1_73_sq_M_predicted>=-immunizations_lifetime+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4025 Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "4026 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "4027 Globulin__Mass_volume__in_Serum_by_calculation<=mean_Globulin__Mass_volume__in_Serum_by_calculation+num_allergies\n", + "4028 Globulin__Mass_volume__in_Serum_by_calculation<=immunizations_lifetime+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4029 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(Triglycerides,1/2*medications_active)\n", + "4030 Globulin__Mass_volume__in_Serum_by_calculation<=-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+medications_lifetime\n", + "4031 Globulin__Mass_volume__in_Serum_by_calculation<=Creatinine+procedures_lifetime_cost\n", + "4032 Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "4033 Globulin__Mass_volume__in_Serum_by_calculation>=-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+num_allergies+1\n", + "4034 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(DALY,mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4035 Globulin__Mass_volume__in_Serum_by_calculation>=-immunizations_lifetime+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4036 Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "4037 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(mean_Globulin__Mass_volume__in_Serum_by_calculation,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4038 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4039 Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-1\n", + "4040 Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "4041 Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "4042 Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-procedures_lifetime\n", + "4043 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4044 Albumin__Mass_volume__in_Serum,Plasma<=mean_Urea_Nitrogen^2-mean_Protein__Mass_volume__in_Serum,Plasma\n", + "4045 Albumin__Mass_volume__in_Serum,Plasma<=maximum(active_conditions,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4046 Albumin__Mass_volume__in_Serum,Plasma<=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4047 Albumin__Mass_volume__in_Serum,Plasma<=mean_Albumin__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "4048 Albumin__Mass_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "4049 Albumin__Mass_volume__in_Serum,Plasma<=immunizations_lifetime+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4050 Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "4051 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4052 Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4053 Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4054 Albumin__Mass_volume__in_Serum,Plasma>=Creatinine+num_allergies-1\n", + "4055 Albumin__Mass_volume__in_Serum,Plasma>=log(medications_lifetime^QOLS)\n", + "4056 Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4057 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4058 Protein__Mass_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "4059 Protein__Mass_volume__in_Serum,Plasma<=mean_Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "4060 Protein__Mass_volume__in_Serum,Plasma<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4061 Protein__Mass_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*mean_Chloride\n", + "4062 Protein__Mass_volume__in_Serum,Plasma<=DALY+Glucose-1\n", + "4063 Protein__Mass_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4064 Protein__Mass_volume__in_Serum,Plasma<=maximum(Body_Weight,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4065 Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "4066 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma\n", + "4067 Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4068 Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4069 Protein__Mass_volume__in_Serum,Plasma>=Glucose*log(10)/log(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4070 Protein__Mass_volume__in_Serum,Plasma>=minimum(age,High_Density_Lipoprotein_Cholesterol)\n", + "4071 Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "4072 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4073 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=ceil(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4074 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "4075 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+num_allergies\n", + "4076 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=immunizations_lifetime+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4077 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4078 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "4079 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Carbon_Dioxide,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4080 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(DALY,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4081 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4082 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4083 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4084 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4085 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(medications_active-1)^num_allergies\n", + "4086 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4087 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "4088 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4089 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4090 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4091 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=QALY+active_conditions\n", + "4092 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=sqrt(encounters_lifetime_total_cost)+mean_Urea_Nitrogen\n", + "4093 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4094 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4095 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "4096 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=1/medications_lifetime_perc_covered+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4097 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4098 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4099 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4100 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "4101 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4102 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=e^(num_allergies+1)\n", + "4103 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4104 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4105 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Sodium-active_care_plans\n", + "4106 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(age,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4107 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4108 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_coverage^(1/num_allergies)\n", + "4109 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(QALY,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4110 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=sqrt(active_care_plan_length)+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4111 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4112 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma*medications_active\n", + "4113 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(encounters_count,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4114 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Glomerular_filtration_rate_1_73_sq_M_predicted-active_conditions\n", + "4115 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4116 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4117 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Glucose*e^(-DALY)\n", + "4118 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4119 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4120 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "4121 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4122 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4123 Bilirubin_total__Mass_volume__in_Serum,Plasma<=-QOLS+medications_active\n", + "4124 Bilirubin_total__Mass_volume__in_Serum,Plasma<=10^num_allergies\n", + "4125 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+num_allergies\n", + "4126 Bilirubin_total__Mass_volume__in_Serum,Plasma<=(1/immunizations_lifetime)\n", + "4127 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,mean_DALY)\n", + "4128 Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "4129 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(medications_lifetime_perc_covered,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4130 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4131 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(num_allergies,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4132 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(device_lifetime_length,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4133 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(DALY,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4134 Bilirubin_total__Mass_volume__in_Serum,Plasma>=floor(QOLS)\n", + "4135 Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4136 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-immunizations_lifetime+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4137 Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4138 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4139 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^procedures_lifetime)\n", + "4140 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(encounters_lifetime_payer_coverage,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4141 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,encounters_count^2)\n", + "4142 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4143 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=immunizations_lifetime_cost+mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4144 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=log(10^mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)\n", + "4145 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=10^medications_lifetime_perc_covered*mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4146 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^encounters_count\n", + "4147 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "4148 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Leukocytes____volume__in_Blood_by_Automated_count^(Erythrocytes____volume__in_Blood_by_Automated_count+1)\n", + "4149 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Respiratory_rate^(1/2*mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4150 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^active_care_plans)\n", + "4151 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "4152 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-lifetime_care_plan_length+mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4153 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_temperature)\n", + "4154 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "4155 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "4156 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4157 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-immunizations_lifetime_cost+mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4158 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(immunizations_lifetime_cost,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4159 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(Triglycerides,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4160 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=1/2*MCH__Entitic_mass__by_Automated_count+lifetime_condition_length\n", + "4161 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=medications_lifetime_dispenses/10^DALY\n", + "4162 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses/healthcare_coverage\n", + "4163 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4164 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=ceil(mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4165 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=immunizations_lifetime+mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4166 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(active_care_plan_length,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4167 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(Respiratory_rate,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4168 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=minimum(Triglycerides,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4169 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Body_Mass_Index-lifetime_care_plans\n", + "4170 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=-Body_Mass_Index+mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1\n", + "4171 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=active_care_plans+mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4172 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(encounters_count,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4173 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(medications_lifetime,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4174 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "4175 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-num_allergies\n", + "4176 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4177 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=floor(mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4178 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4179 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4180 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count+2*num_allergies\n", + "4181 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count+active_care_plans\n", + "4182 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=1/2*QALY/mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4183 Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4184 Platelets____volume__in_Blood_by_Automated_count<=sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)+mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4185 Platelets____volume__in_Blood_by_Automated_count<=active_care_plan_length+mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4186 Platelets____volume__in_Blood_by_Automated_count<=maximum(encounters_lifetime_payer_coverage,mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "4187 Platelets____volume__in_Blood_by_Automated_count<=immunizations_lifetime_cost+mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4188 Platelets____volume__in_Blood_by_Automated_count<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "4189 Platelets____volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "4190 Platelets____volume__in_Blood_by_Automated_count<=mean_Platelets____volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "4191 Platelets____volume__in_Blood_by_Automated_count<=(mean_MCV__Entitic_volume__by_Automated_count+1)*mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4192 Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "4193 Platelets____volume__in_Blood_by_Automated_count>=minimum(mean_Platelets____volume__in_Blood_by_Automated_count,2*Sodium)\n", + "4194 Platelets____volume__in_Blood_by_Automated_count>=minimum(mean_Platelets____volume__in_Blood_by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4195 Platelets____volume__in_Blood_by_Automated_count>=minimum(mean_Platelets____volume__in_Blood_by_Automated_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4196 Platelets____volume__in_Blood_by_Automated_count>=mean_Platelets____volume__in_Blood_by_Automated_count^QOLS\n", + "4197 Platelets____volume__in_Blood_by_Automated_count>=-active_care_plan_length+mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4198 Platelets____volume__in_Blood_by_Automated_count>=mean_Platelets____volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "4199 Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4200 Platelets____volume__in_Blood_by_Automated_count>=-immunizations_lifetime_cost+mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4201 Platelets____volume__in_Blood_by_Automated_count>=minimum(Triglycerides,mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "4202 Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4203 Platelets____volume__in_Blood_by_Automated_count>=active_condition_length*log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4204 Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "4205 Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4206 Leukocytes____volume__in_Blood_by_Automated_count<=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4207 Leukocytes____volume__in_Blood_by_Automated_count<=maximum(active_conditions,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4208 Leukocytes____volume__in_Blood_by_Automated_count<=active_care_plans+mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4209 Leukocytes____volume__in_Blood_by_Automated_count<=immunizations_lifetime_cost+mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4210 Leukocytes____volume__in_Blood_by_Automated_count<=maximum(mean_Potassium,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4211 Leukocytes____volume__in_Blood_by_Automated_count<=mean_Leukocytes____volume__in_Blood_by_Automated_count+procedures_lifetime\n", + "4212 Leukocytes____volume__in_Blood_by_Automated_count<=maximum(Sodium,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4213 Leukocytes____volume__in_Blood_by_Automated_count<=maximum(Calcium,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4214 Leukocytes____volume__in_Blood_by_Automated_count<=MCV__Entitic_volume__by_Automated_count*e^(-num_allergies)\n", + "4215 Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "4216 Leukocytes____volume__in_Blood_by_Automated_count>=mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4217 Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4218 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(medications_active,mean_Potassium)\n", + "4219 Leukocytes____volume__in_Blood_by_Automated_count>=num_allergies^2-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4220 Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4221 Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4222 Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4223 Erythrocytes____volume__in_Blood_by_Automated_count<=ceil(mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4224 Erythrocytes____volume__in_Blood_by_Automated_count<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-2*num_allergies\n", + "4225 Erythrocytes____volume__in_Blood_by_Automated_count<=mean_Erythrocytes____volume__in_Blood_by_Automated_count+num_allergies\n", + "4226 Erythrocytes____volume__in_Blood_by_Automated_count<=mean_Leukocytes____volume__in_Blood_by_Automated_count+1\n", + "4227 Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "4228 Erythrocytes____volume__in_Blood_by_Automated_count>=mean_Erythrocytes____volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "4229 Erythrocytes____volume__in_Blood_by_Automated_count>=floor(mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4230 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(mean_Erythrocytes____volume__in_Blood_by_Automated_count,1/2*Urea_Nitrogen)\n", + "4231 Erythrocytes____volume__in_Blood_by_Automated_count>=num_allergies^2-Leukocytes____volume__in_Blood_by_Automated_count\n", + "4232 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(DALY,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4233 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(mean_Erythrocytes____volume__in_Blood_by_Automated_count,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4234 Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4235 Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4236 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(active_care_plans,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4237 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(lifetime_care_plans,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4238 Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4239 Erythrocytes____volume__in_Blood_by_Automated_count>=-active_care_plans+mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4240 Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(procedures_lifetime,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4241 Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "4242 Hemoglobin__Mass_volume__in_Blood<=mean_Hemoglobin__Mass_volume__in_Blood+num_allergies\n", + "4243 Hemoglobin__Mass_volume__in_Blood<=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-medications_active\n", + "4244 Hemoglobin__Mass_volume__in_Blood<=Leukocytes____volume__in_Blood_by_Automated_count+Respiratory_rate\n", + "4245 Hemoglobin__Mass_volume__in_Blood<=e^mean_Leukocytes____volume__in_Blood_by_Automated_count-mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4246 Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "4247 Hemoglobin__Mass_volume__in_Blood>=minimum(DALY,mean_Hemoglobin__Mass_volume__in_Blood)\n", + "4248 Hemoglobin__Mass_volume__in_Blood>=-2*DALY+Respiratory_rate\n", + "4249 Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "4250 Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "4251 Hemoglobin__Mass_volume__in_Blood>=minimum(mean_Hemoglobin__Mass_volume__in_Blood,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4252 Hemoglobin__Mass_volume__in_Blood>=(Leukocytes____volume__in_Blood_by_Automated_count+1)*num_allergies\n", + "4253 Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "4254 Hemoglobin__Mass_volume__in_Blood>=mean_Hemoglobin__Mass_volume__in_Blood-procedures_lifetime\n", + "4255 Hemoglobin__Mass_volume__in_Blood>=-active_care_plans+mean_Hemoglobin__Mass_volume__in_Blood\n", + "4256 Hemoglobin__Mass_volume__in_Blood>=-immunizations_lifetime+mean_Hemoglobin__Mass_volume__in_Blood\n", + "4257 Hemoglobin__Mass_volume__in_Blood>=mean_Hemoglobin__Mass_volume__in_Blood^QOLS\n", + "4258 Hemoglobin__Mass_volume__in_Blood>=minimum(procedures_lifetime,mean_Hemoglobin__Mass_volume__in_Blood)\n", + "4259 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "4260 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=Hemoglobin__Mass_volume__in_Blood+MCHC__Mass_volume__by_Automated_count\n", + "4261 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(active_care_plan_length,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4262 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(age,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4263 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=active_care_plans+mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4264 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(Sodium,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4265 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+procedures_lifetime\n", + "4266 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4267 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=e^immunizations_lifetime+mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4268 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=10^num_allergies+mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4269 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "4270 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4271 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "4272 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4273 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=floor(Body_Height)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4274 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Body_Weight*log(10)/log(Triglycerides)\n", + "4275 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4276 MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "4277 MCV__Entitic_volume__by_Automated_count<=maximum(Body_Weight,mean_MCV__Entitic_volume__by_Automated_count)\n", + "4278 MCV__Entitic_volume__by_Automated_count<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_MCV__Entitic_volume__by_Automated_count)\n", + "4279 MCV__Entitic_volume__by_Automated_count<=immunizations_lifetime_cost+mean_MCV__Entitic_volume__by_Automated_count\n", + "4280 MCV__Entitic_volume__by_Automated_count<=maximum(lifetime_care_plan_length,ceil(mean_MCV__Entitic_volume__by_Automated_count))\n", + "4281 MCV__Entitic_volume__by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count+mean_MCV__Entitic_volume__by_Automated_count-1\n", + "4282 MCV__Entitic_volume__by_Automated_count<=active_care_plan_length+mean_MCV__Entitic_volume__by_Automated_count\n", + "4283 MCV__Entitic_volume__by_Automated_count<=maximum(lifetime_condition_length,mean_MCV__Entitic_volume__by_Automated_count)\n", + "4284 MCV__Entitic_volume__by_Automated_count<=mean_MCV__Entitic_volume__by_Automated_count+procedures_lifetime\n", + "4285 MCV__Entitic_volume__by_Automated_count>=latitude\n", + "4286 MCV__Entitic_volume__by_Automated_count>=mean_MCV__Entitic_volume__by_Automated_count\n", + "4287 MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "4288 MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "4289 MCV__Entitic_volume__by_Automated_count>=age+mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1\n", + "4290 MCV__Entitic_volume__by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count*e^num_allergies\n", + "4291 MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "4292 MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "4293 MCH__Entitic_mass__by_Automated_count<=mean_MCH__Entitic_mass__by_Automated_count\n", + "4294 MCH__Entitic_mass__by_Automated_count<=floor(1/2*Heart_rate)\n", + "4295 MCH__Entitic_mass__by_Automated_count<=sqrt(Diastolic_Blood_Pressure)*mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4296 MCH__Entitic_mass__by_Automated_count>=longitude\n", + "4297 MCH__Entitic_mass__by_Automated_count>=-active_care_plans+mean_MCH__Entitic_mass__by_Automated_count\n", + "4298 MCH__Entitic_mass__by_Automated_count>=-immunizations_lifetime_cost+mean_MCH__Entitic_mass__by_Automated_count\n", + "4299 MCH__Entitic_mass__by_Automated_count>=mean_MCH__Entitic_mass__by_Automated_count-procedures_lifetime\n", + "4300 MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "4301 MCH__Entitic_mass__by_Automated_count>=minimum(mean_MCH__Entitic_mass__by_Automated_count,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4302 MCH__Entitic_mass__by_Automated_count>=minimum(procedures_lifetime,mean_MCH__Entitic_mass__by_Automated_count)\n", + "4303 MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "4304 MCH__Entitic_mass__by_Automated_count>=minimum(mean_MCH__Entitic_mass__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4305 MCH__Entitic_mass__by_Automated_count>=mean_MCH__Entitic_mass__by_Automated_count-2\n", + "4306 MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4307 MCH__Entitic_mass__by_Automated_count>=10^immunizations_lifetime*num_allergies\n", + "4308 MCH__Entitic_mass__by_Automated_count>=minimum(DALY,Body_Mass_Index)\n", + "4309 MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "4310 MCHC__Mass_volume__by_Automated_count<=ceil(mean_MCHC__Mass_volume__by_Automated_count)\n", + "4311 MCHC__Mass_volume__by_Automated_count<=maximum(age,mean_MCHC__Mass_volume__by_Automated_count)\n", + "4312 MCHC__Mass_volume__by_Automated_count<=active_care_plans+mean_MCHC__Mass_volume__by_Automated_count\n", + "4313 MCHC__Mass_volume__by_Automated_count<=maximum(QALY,mean_MCHC__Mass_volume__by_Automated_count)\n", + "4314 MCHC__Mass_volume__by_Automated_count<=mean_MCHC__Mass_volume__by_Automated_count+procedures_lifetime\n", + "4315 MCHC__Mass_volume__by_Automated_count<=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-medications_active\n", + "4316 MCHC__Mass_volume__by_Automated_count<=maximum(active_care_plan_length,mean_MCHC__Mass_volume__by_Automated_count)\n", + "4317 MCHC__Mass_volume__by_Automated_count<=maximum(encounters_count,mean_MCHC__Mass_volume__by_Automated_count)\n", + "4318 MCHC__Mass_volume__by_Automated_count<=minimum(Triglycerides,mean_MCHC__Mass_volume__by_Automated_count)\n", + "4319 MCHC__Mass_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-log(medications_lifetime)\n", + "4320 MCHC__Mass_volume__by_Automated_count<=1/2*Low_Density_Lipoprotein_Cholesterol+lifetime_conditions\n", + "4321 MCHC__Mass_volume__by_Automated_count>=longitude\n", + "4322 MCHC__Mass_volume__by_Automated_count>=floor(mean_MCHC__Mass_volume__by_Automated_count)\n", + "4323 MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "4324 MCHC__Mass_volume__by_Automated_count>=MCH__Entitic_mass__by_Automated_count+1\n", + "4325 MCHC__Mass_volume__by_Automated_count>=mean_MCHC__Mass_volume__by_Automated_count-num_allergies\n", + "4326 MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "4327 MCHC__Mass_volume__by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-Hemoglobin__Mass_volume__in_Blood\n", + "4328 MCHC__Mass_volume__by_Automated_count>=-1/2*Heart_rate+QALY\n", + "4329 MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4330 MCHC__Mass_volume__by_Automated_count>=QALY*log(10)/log(immunizations_lifetime_cost)\n", + "4331 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "4332 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "4333 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Hemoglobin__Mass_volume__in_Blood+e^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4334 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "4335 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=minimum(mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4336 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-active_care_plans+mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "4337 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Body_Mass_Index+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1\n", + "4338 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "4339 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-procedures_lifetime\n", + "4340 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=minimum(mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4341 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "4342 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-immunizations_lifetime_cost+mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "4343 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count+log(medications_lifetime)\n", + "4344 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4345 Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "4346 Estimated_Glomerular_Filtration_Rate<=(encounters_lifetime_perc_covered+1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "4347 Estimated_Glomerular_Filtration_Rate<=maximum(medications_lifetime_dispenses,mean_Estimated_Glomerular_Filtration_Rate)\n", + "4348 Estimated_Glomerular_Filtration_Rate<=sqrt(healthcare_expenses)/active_conditions\n", + "4349 Estimated_Glomerular_Filtration_Rate<=-Microalbumin_Creatinine_Ratio+2*mean_Triglycerides\n", + "4350 Estimated_Glomerular_Filtration_Rate<=maximum(Heart_rate,mean_Estimated_Glomerular_Filtration_Rate)\n", + "4351 Estimated_Glomerular_Filtration_Rate<=2*mean_Triglycerides/device_lifetime_length\n", + "4352 Estimated_Glomerular_Filtration_Rate<=1/num_allergies+mean_Estimated_Glomerular_Filtration_Rate\n", + "4353 Estimated_Glomerular_Filtration_Rate<=Body_Height/immunizations_lifetime^2\n", + "4354 Estimated_Glomerular_Filtration_Rate<=mean_Diastolic_Blood_Pressure^2/mean_Microalbumin_Creatinine_Ratio\n", + "4355 Estimated_Glomerular_Filtration_Rate<=(Low_Density_Lipoprotein_Cholesterol-1)*DALY\n", + "4356 Estimated_Glomerular_Filtration_Rate<=10^immunizations_lifetime_cost+mean_Estimated_Glomerular_Filtration_Rate\n", + "4357 Estimated_Glomerular_Filtration_Rate<=10^QOLS*mean_Estimated_Glomerular_Filtration_Rate\n", + "4358 Estimated_Glomerular_Filtration_Rate<=Calcium^sqrt(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4359 Estimated_Glomerular_Filtration_Rate<=10^Potassium/encounters_count\n", + "4360 Estimated_Glomerular_Filtration_Rate<=-active_conditions+2*mean_Estimated_Glomerular_Filtration_Rate\n", + "4361 Estimated_Glomerular_Filtration_Rate>=longitude\n", + "4362 Estimated_Glomerular_Filtration_Rate>=-Microalbumin_Creatinine_Ratio^2+Body_Weight\n", + "4363 Estimated_Glomerular_Filtration_Rate>=device_lifetime_length*procedures_lifetime\n", + "4364 Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "4365 Estimated_Glomerular_Filtration_Rate>=-Body_Height+Triglycerides+1\n", + "4366 Estimated_Glomerular_Filtration_Rate>=DALY-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "4367 Estimated_Glomerular_Filtration_Rate>=(medications_lifetime+1)/mean_Glucose\n", + "4368 Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "4369 Estimated_Glomerular_Filtration_Rate>=minimum(mean_Estimated_Glomerular_Filtration_Rate,1/medications_active)\n", + "4370 Estimated_Glomerular_Filtration_Rate>=minimum(procedures_lifetime,mean_Estimated_Glomerular_Filtration_Rate)\n", + "4371 Estimated_Glomerular_Filtration_Rate>=-10^mean_Creatinine+Body_Weight\n", + "4372 Estimated_Glomerular_Filtration_Rate>=device_lifetime_length+1/2*mean_Respiratory_rate\n", + "4373 Estimated_Glomerular_Filtration_Rate>=-Total_Cholesterol+floor(mean_Total_Cholesterol)\n", + "4374 Estimated_Glomerular_Filtration_Rate>=Low_Density_Lipoprotein_Cholesterol^(QOLS^2)\n", + "4375 Estimated_Glomerular_Filtration_Rate>=-lifetime_conditions^2+Heart_rate\n", + "4376 Estimated_Glomerular_Filtration_Rate>=1/mean_Creatinine+mean_Urea_Nitrogen\n", + "4377 Estimated_Glomerular_Filtration_Rate>=Sodium*e^(-Creatinine)\n", + "4378 Estimated_Glomerular_Filtration_Rate>=sqrt(latitude)^immunizations_lifetime\n", + "4379 Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "4380 Estimated_Glomerular_Filtration_Rate>=floor(mean_Estimated_Glomerular_Filtration_Rate)-mean_Calcium\n", + "4381 Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "4382 Microalbumin_Creatinine_Ratio<=-encounters_count+1/2*medications_lifetime_dispenses\n", + "4383 Microalbumin_Creatinine_Ratio<=10^medications_lifetime_perc_covered*mean_Microalbumin_Creatinine_Ratio\n", + "4384 Microalbumin_Creatinine_Ratio<=10^active_care_plans-Urea_Nitrogen\n", + "4385 Microalbumin_Creatinine_Ratio<=maximum(mean_Heart_rate,1/2*medications_lifetime)\n", + "4386 Microalbumin_Creatinine_Ratio<=2*Systolic_Blood_Pressure-medications_active\n", + "4387 Microalbumin_Creatinine_Ratio<=10^QOLS*mean_Microalbumin_Creatinine_Ratio\n", + "4388 Microalbumin_Creatinine_Ratio<=e^QOLS*mean_Microalbumin_Creatinine_Ratio\n", + "4389 Microalbumin_Creatinine_Ratio<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(lifetime_care_plan_length)\n", + "4390 Microalbumin_Creatinine_Ratio<=2*High_Density_Lipoprotein_Cholesterol+mean_Glucose\n", + "4391 Microalbumin_Creatinine_Ratio<=log(Body_Height)^lifetime_care_plans\n", + "4392 Microalbumin_Creatinine_Ratio<=(1/2*QALY)^mean_Creatinine\n", + "4393 Microalbumin_Creatinine_Ratio<=sqrt(encounters_lifetime_perc_covered)*lifetime_condition_length\n", + "4394 Microalbumin_Creatinine_Ratio<=1/2*encounters_count/num_allergies\n", + "4395 Microalbumin_Creatinine_Ratio<=2*lifetime_condition_length-mean_High_Density_Lipoprotein_Cholesterol\n", + "4396 Microalbumin_Creatinine_Ratio<=e^active_conditions/mean_Urea_Nitrogen\n", + "4397 Microalbumin_Creatinine_Ratio>=longitude\n", + "4398 Microalbumin_Creatinine_Ratio>=DALY^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "4399 Microalbumin_Creatinine_Ratio>=1/2*device_lifetime_length*immunizations_lifetime_cost\n", + "4400 Microalbumin_Creatinine_Ratio>=10^medications_active/lifetime_condition_length\n", + "4401 Microalbumin_Creatinine_Ratio>=minimum(procedures_lifetime,mean_Microalbumin_Creatinine_Ratio)\n", + "4402 Microalbumin_Creatinine_Ratio>=-active_conditions^2+age\n", + "4403 Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "4404 Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "4405 Microalbumin_Creatinine_Ratio>=1/2*active_care_plans\n", + "4406 Microalbumin_Creatinine_Ratio>=minimum(Respiratory_rate,mean_Microalbumin_Creatinine_Ratio)\n", + "4407 Microalbumin_Creatinine_Ratio>=10^num_allergies-active_care_plans\n", + "4408 Microalbumin_Creatinine_Ratio>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^Creatinine\n", + "4409 Microalbumin_Creatinine_Ratio>=-2*Estimated_Glomerular_Filtration_Rate+Heart_rate\n", + "4410 Microalbumin_Creatinine_Ratio>=log(device_lifetime_length)+mean_Diastolic_Blood_Pressure\n", + "4411 Microalbumin_Creatinine_Ratio>=encounters_lifetime_payer_coverage/10^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4412 Microalbumin_Creatinine_Ratio>=mean_Creatinine^medications_active\n", + "4413 Microalbumin_Creatinine_Ratio>=sqrt(mean_Sodium)/DALY\n", + "4414 Microalbumin_Creatinine_Ratio>=immunizations_lifetime^log(Chloride)\n", + "4415 Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "4416 Microalbumin_Creatinine_Ratio>=-QALY+e^mean_Creatinine\n", + "4417 mean_Body_Height<=healthcare_expenses\n", + "4418 mean_Body_Height<=ceil(Body_Height)\n", + "4419 mean_Body_Height<=Body_Height+healthcare_coverage\n", + "4420 mean_Body_Height<=Body_Height+active_care_plans\n", + "4421 mean_Body_Height<=Body_Height+active_conditions\n", + "4422 mean_Body_Height<=maximum(lifetime_condition_length,Body_Height)\n", + "4423 mean_Body_Height<=1/healthcare_expenses+Body_Height\n", + "4424 mean_Body_Height<=Body_Height+immunizations_lifetime\n", + "4425 mean_Body_Height<=Body_Height+medications_lifetime\n", + "4426 mean_Body_Height<=Body_Height+medications_lifetime_perc_covered\n", + "4427 mean_Body_Height<=Body_Height+procedures_lifetime\n", + "4428 mean_Body_Height<=maximum(Body_Height,sqrt(healthcare_coverage))\n", + "4429 mean_Body_Height<=maximum(Body_Height,Triglycerides)\n", + "4430 mean_Body_Height<=maximum(Body_Height,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4431 mean_Body_Height<=maximum(Body_Height,10^procedures_lifetime)\n", + "4432 mean_Body_Height>=latitude\n", + "4433 mean_Body_Height>=floor(Body_Height)\n", + "4434 mean_Body_Height>=healthcare_expenses^longitude\n", + "4435 mean_Body_Height>=Body_Height-healthcare_coverage\n", + "4436 mean_Body_Height>=Body_Height-active_care_plans\n", + "4437 mean_Body_Height>=minimum(lifetime_care_plan_length,Body_Height)\n", + "4438 mean_Body_Height>=Body_Height-active_conditions\n", + "4439 mean_Body_Height>=minimum(lifetime_condition_length,Body_Height)\n", + "4440 mean_Body_Height>=Body_Height-encounters_lifetime_payer_coverage\n", + "4441 mean_Body_Height>=-healthcare_expenses\n", + "4442 mean_Body_Height>=Body_Height^encounters_lifetime_perc_covered\n", + "4443 mean_Body_Height>=1/longitude+Body_Height\n", + "4444 mean_Body_Height>=Body_Height^imaging_studies_lifetime\n", + "4445 mean_Body_Height>=Body_Height-immunizations_lifetime\n", + "4446 mean_Body_Height>=minimum(immunizations_lifetime_cost,Body_Height)\n", + "4447 mean_Body_Height>=Body_Height-procedures_lifetime\n", + "4448 mean_Body_Height>=Body_Height^QOLS\n", + "4449 mean_Body_Height>=minimum(Body_Height,Triglycerides)\n", + "4450 mean_Body_Height>=Body_Height-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4451 mean_Body_Height>=minimum(Body_Height,Creatinine)\n", + "4452 mean_Body_Height>=minimum(Body_Height,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4453 mean_Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "4454 mean_Body_Mass_Index<=healthcare_expenses\n", + "4455 mean_Body_Mass_Index<=Hemoglobin__Mass_volume__in_Blood*log(Body_Height)/log(10)\n", + "4456 mean_Body_Mass_Index<=Body_Mass_Index+immunizations_lifetime\n", + "4457 mean_Body_Mass_Index<=maximum(active_care_plan_length,Body_Mass_Index)\n", + "4458 mean_Body_Mass_Index<=maximum(encounters_count,Body_Mass_Index)\n", + "4459 mean_Body_Mass_Index<=maximum(active_condition_length,Body_Mass_Index)\n", + "4460 mean_Body_Mass_Index<=maximum(age,Body_Mass_Index)\n", + "4461 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/device_lifetime_length)\n", + "4462 mean_Body_Mass_Index<=Body_Mass_Index+healthcare_coverage\n", + "4463 mean_Body_Mass_Index<=Body_Mass_Index+active_care_plans\n", + "4464 mean_Body_Mass_Index<=maximum(medications_lifetime,Body_Mass_Index)\n", + "4465 mean_Body_Mass_Index<=Body_Mass_Index+medications_active\n", + "4466 mean_Body_Mass_Index<=Body_Mass_Index/QOLS\n", + "4467 mean_Body_Mass_Index<=QALY+log(Triglycerides)\n", + "4468 mean_Body_Mass_Index<=Body_Mass_Index+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4469 mean_Body_Mass_Index<=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+mean_Diastolic_Blood_Pressure\n", + "4470 mean_Body_Mass_Index<=(Body_Mass_Index^2)^Creatinine\n", + "4471 mean_Body_Mass_Index<=(Sodium-1)/mean_Creatinine\n", + "4472 mean_Body_Mass_Index<=maximum(Body_Mass_Index,MCH__Entitic_mass__by_Automated_count)\n", + "4473 mean_Body_Mass_Index<=Estimated_Glomerular_Filtration_Rate+lifetime_conditions\n", + "4474 mean_Body_Mass_Index<=maximum(Body_Mass_Index,active_conditions^2)\n", + "4475 mean_Body_Mass_Index<=2*Estimated_Glomerular_Filtration_Rate-1\n", + "4476 mean_Body_Mass_Index<=Respiratory_rate+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4477 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*encounters_count)\n", + "4478 mean_Body_Mass_Index<=maximum(Body_Mass_Index,sqrt(encounters_lifetime_payer_coverage))\n", + "4479 mean_Body_Mass_Index<=Creatinine+floor(Body_Mass_Index)\n", + "4480 mean_Body_Mass_Index>=longitude\n", + "4481 mean_Body_Mass_Index>=floor(Body_Mass_Index)\n", + "4482 mean_Body_Mass_Index>=Body_Mass_Index-immunizations_lifetime\n", + "4483 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Carbon_Dioxide)\n", + "4484 mean_Body_Mass_Index>=healthcare_expenses^longitude\n", + "4485 mean_Body_Mass_Index>=Creatinine^2+mean_Potassium\n", + "4486 mean_Body_Mass_Index>=Body_Mass_Index-medications_lifetime\n", + "4487 mean_Body_Mass_Index>=minimum(DALY,Body_Mass_Index)\n", + "4488 mean_Body_Mass_Index>=Body_Mass_Index-healthcare_coverage\n", + "4489 mean_Body_Mass_Index>=-healthcare_expenses\n", + "4490 mean_Body_Mass_Index>=Body_Mass_Index-active_care_plans\n", + "4491 mean_Body_Mass_Index>=Body_Mass_Index-active_conditions\n", + "4492 mean_Body_Mass_Index>=minimum(device_lifetime_length,Body_Mass_Index)\n", + "4493 mean_Body_Mass_Index>=Body_Mass_Index^encounters_lifetime_perc_covered\n", + "4494 mean_Body_Mass_Index>=Body_Mass_Index^imaging_studies_lifetime\n", + "4495 mean_Body_Mass_Index>=Body_Mass_Index-medications_active\n", + "4496 mean_Body_Mass_Index>=Body_Mass_Index-procedures_lifetime\n", + "4497 mean_Body_Mass_Index>=minimum(procedures_lifetime,Body_Mass_Index)\n", + "4498 mean_Body_Mass_Index>=Body_Mass_Index^QOLS\n", + "4499 mean_Body_Mass_Index>=Body_Mass_Index-QOLS\n", + "4500 mean_Body_Mass_Index>=Body_Mass_Index-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4501 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine)\n", + "4502 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4503 mean_Body_Mass_Index>=maximum(Body_Mass_Index,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4504 mean_Body_Mass_Index>=lifetime_conditions^2/mean_Respiratory_rate\n", + "4505 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^immunizations_lifetime)\n", + "4506 mean_Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "4507 mean_Body_Mass_Index>=minimum(Body_Mass_Index,active_care_plans^2)\n", + "4508 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/medications_lifetime_perc_covered)\n", + "4509 mean_Body_Weight<=healthcare_expenses\n", + "4510 mean_Body_Weight<=Body_Weight+active_care_plans\n", + "4511 mean_Body_Weight<=maximum(lifetime_care_plan_length,Body_Weight)\n", + "4512 mean_Body_Weight<=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)+Body_Weight\n", + "4513 mean_Body_Weight<=Chloride-1\n", + "4514 mean_Body_Weight<=Body_Weight/imaging_studies_lifetime\n", + "4515 mean_Body_Weight<=Body_Weight+healthcare_coverage\n", + "4516 mean_Body_Weight<=Body_Weight+immunizations_lifetime_cost\n", + "4517 mean_Body_Weight<=Body_Weight+medications_lifetime\n", + "4518 mean_Body_Weight<=Body_Weight+procedures_lifetime\n", + "4519 mean_Body_Weight<=Body_Weight+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4520 mean_Body_Weight<=maximum(Body_Weight,1/2*Total_Cholesterol)\n", + "4521 mean_Body_Weight<=maximum(Body_Weight,DALY^2)\n", + "4522 mean_Body_Weight<=Diastolic_Blood_Pressure+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "4523 mean_Body_Weight<=Glucose+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "4524 mean_Body_Weight<=maximum(Body_Weight,floor(lifetime_care_plan_length))\n", + "4525 mean_Body_Weight<=maximum(Body_Weight,e^active_conditions)\n", + "4526 mean_Body_Weight<=maximum(Body_Weight,1/device_lifetime_length)\n", + "4527 mean_Body_Weight<=maximum(Body_Weight,2*encounters_count)\n", + "4528 mean_Body_Weight<=Body_Weight+floor(Creatinine)\n", + "4529 mean_Body_Weight<=maximum(Body_Weight,10^medications_active)\n", + "4530 mean_Body_Weight<=maximum(Body_Weight,10^procedures_lifetime)\n", + "4531 mean_Body_Weight<=maximum(Triglycerides,abs(Body_Weight))\n", + "4532 mean_Body_Weight>=latitude\n", + "4533 mean_Body_Weight>=ceil(High_Density_Lipoprotein_Cholesterol)\n", + "4534 mean_Body_Weight>=floor(Body_Weight)-medications_lifetime_perc_covered\n", + "4535 mean_Body_Weight>=healthcare_expenses^longitude\n", + "4536 mean_Body_Weight>=minimum(age,Body_Weight)\n", + "4537 mean_Body_Weight>=Body_Weight-active_care_plans\n", + "4538 mean_Body_Weight>=-healthcare_expenses\n", + "4539 mean_Body_Weight>=Body_Weight-active_conditions\n", + "4540 mean_Body_Weight>=minimum(Body_Weight,2*active_care_plan_length)\n", + "4541 mean_Body_Weight>=Body_Weight-encounters_lifetime_payer_coverage\n", + "4542 mean_Body_Weight>=Body_Weight^encounters_lifetime_perc_covered\n", + "4543 mean_Body_Weight>=Body_Weight^QOLS\n", + "4544 mean_Body_Weight>=minimum(Diastolic_Blood_Pressure,Body_Weight)\n", + "4545 mean_Body_Weight>=Body_Weight-healthcare_coverage\n", + "4546 mean_Body_Weight>=Body_Weight^imaging_studies_lifetime\n", + "4547 mean_Body_Weight>=Body_Weight-immunizations_lifetime\n", + "4548 mean_Body_Weight>=Body_Weight-medications_lifetime\n", + "4549 mean_Body_Weight>=Body_Weight-medications_active\n", + "4550 mean_Body_Weight>=Body_Weight-procedures_lifetime\n", + "4551 mean_Body_Weight>=minimum(Heart_rate,Body_Weight)\n", + "4552 mean_Body_Weight>=minimum(Body_Weight,Estimated_Glomerular_Filtration_Rate)\n", + "4553 mean_Body_Weight>=minimum(Body_Weight,High_Density_Lipoprotein_Cholesterol)\n", + "4554 mean_Body_Weight>=minimum(Body_Weight,Creatinine)\n", + "4555 mean_Body_Weight>=minimum(Body_Weight,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4556 mean_Body_Weight>=maximum(Body_Weight,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4557 mean_Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "4558 mean_Body_Weight>=Body_Weight+log(encounters_lifetime_perc_covered)\n", + "4559 mean_Body_Weight>=1/2*Microalbumin_Creatinine_Ratio-lifetime_conditions\n", + "4560 mean_Body_Weight>=minimum(Body_Weight,1/medications_lifetime_perc_covered)\n", + "4561 mean_Calcium<=healthcare_expenses\n", + "4562 mean_Calcium<=Calcium+healthcare_coverage\n", + "4563 mean_Calcium<=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-1\n", + "4564 mean_Calcium<=mean_Globulin__Mass_volume__in_Serum_by_calculation*sqrt(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4565 mean_Calcium<=minimum(Estimated_Glomerular_Filtration_Rate,2*Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4566 mean_Calcium<=sqrt(Systolic_Blood_Pressure)-imaging_studies_lifetime\n", + "4567 mean_Calcium<=maximum(Calcium,e^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4568 mean_Calcium<=2*mean_Carbon_Dioxide/mean_Creatinine\n", + "4569 mean_Calcium<=active_care_plan_length+immunizations_lifetime_cost+1\n", + "4570 mean_Calcium<=Calcium+DALY\n", + "4571 mean_Calcium<=1/2*mean_Estimated_Glomerular_Filtration_Rate\n", + "4572 mean_Calcium<=Calcium^active_care_plans\n", + "4573 mean_Calcium<=maximum(Respiratory_rate,Calcium)\n", + "4574 mean_Calcium<=Calcium+log(active_care_plans)\n", + "4575 mean_Calcium<=2*Calcium/immunizations_lifetime\n", + "4576 mean_Calcium<=Calcium+procedures_lifetime\n", + "4577 mean_Calcium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Creatinine\n", + "4578 mean_Calcium<=maximum(Calcium,Microalbumin_Creatinine_Ratio)\n", + "4579 mean_Calcium<=maximum(lifetime_care_plan_length,Calcium)\n", + "4580 mean_Calcium<=maximum(encounters_count,Calcium)\n", + "4581 mean_Calcium<=log(mean_Estimated_Glomerular_Filtration_Rate)^active_care_plans\n", + "4582 mean_Calcium<=Calcium+medications_active\n", + "4583 mean_Calcium<=minimum(healthcare_expenses,floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "4584 mean_Calcium<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4585 mean_Calcium<=(lifetime_conditions^2)^Creatinine\n", + "4586 mean_Calcium<=sqrt(mean_Chloride)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4587 mean_Calcium<=DALY^2+Calcium\n", + "4588 mean_Calcium<=maximum(Calcium,e^lifetime_care_plans)\n", + "4589 mean_Calcium<=(encounters_lifetime_perc_covered+1)*Calcium\n", + "4590 mean_Calcium<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^mean_Potassium\n", + "4591 mean_Calcium>=longitude\n", + "4592 mean_Calcium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*mean_Creatinine\n", + "4593 mean_Calcium>=2*DALY/active_conditions\n", + "4594 mean_Calcium>=Calcium-immunizations_lifetime\n", + "4595 mean_Calcium>=minimum(Calcium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4596 mean_Calcium>=-QOLS+1/2*active_conditions\n", + "4597 mean_Calcium>=(log(Protein__Mass_volume__in_Serum,Plasma)/log(10))^mean_Creatinine\n", + "4598 mean_Calcium>=Calcium-procedures_lifetime\n", + "4599 mean_Calcium>=10^imaging_studies_lifetime-encounters_lifetime_perc_covered\n", + "4600 mean_Calcium>=healthcare_expenses^longitude\n", + "4601 mean_Calcium>=immunizations_lifetime^2+Potassium\n", + "4602 mean_Calcium>=-healthcare_expenses\n", + "4603 mean_Calcium>=1/2*Respiratory_rate+1/2\n", + "4604 mean_Calcium>=Calcium^QOLS\n", + "4605 mean_Calcium>=Protein__Mass_volume__in_Serum,Plasma/Urea_Nitrogen\n", + "4606 mean_Calcium>=sqrt(QALY)+encounters_lifetime_perc_covered\n", + "4607 mean_Calcium>=Calcium-medications_lifetime\n", + "4608 mean_Calcium>=minimum(Calcium,1/2*mean_Urea_Nitrogen)\n", + "4609 mean_Calcium>=-Microalbumin_Creatinine_Ratio+lifetime_conditions\n", + "4610 mean_Calcium>=Creatinine+mean_Potassium\n", + "4611 mean_Calcium>=log(Chloride)+mean_Creatinine\n", + "4612 mean_Calcium>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,floor(Calcium))\n", + "4613 mean_Calcium>=DALY-encounters_count\n", + "4614 mean_Calcium>=sqrt(Triglycerides)^medications_lifetime_perc_covered\n", + "4615 mean_Calcium>=(1/2*MCV__Entitic_volume__by_Automated_count)^encounters_lifetime_perc_covered\n", + "4616 mean_Calcium>=log(Estimated_Glomerular_Filtration_Rate^2)\n", + "4617 mean_Calcium>=Calcium-healthcare_coverage\n", + "4618 mean_Calcium>=floor(Creatinine)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4619 mean_Calcium>=Calcium/active_care_plans\n", + "4620 mean_Calcium>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*device_lifetime_length\n", + "4621 mean_Calcium>=(10^healthcare_expenses)^longitude\n", + "4622 mean_Carbon_Dioxide<=healthcare_expenses\n", + "4623 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,Microalbumin_Creatinine_Ratio)\n", + "4624 mean_Carbon_Dioxide<=2*mean_Estimated_Glomerular_Filtration_Rate-mean_Urea_Nitrogen\n", + "4625 mean_Carbon_Dioxide<=maximum(Triglycerides,Carbon_Dioxide)\n", + "4626 mean_Carbon_Dioxide<=Carbon_Dioxide+immunizations_lifetime_cost\n", + "4627 mean_Carbon_Dioxide<=maximum(Body_Mass_Index,Carbon_Dioxide)\n", + "4628 mean_Carbon_Dioxide<=sqrt(lifetime_condition_length)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4629 mean_Carbon_Dioxide<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Estimated_Glomerular_Filtration_Rate\n", + "4630 mean_Carbon_Dioxide<=Carbon_Dioxide+Potassium-1\n", + "4631 mean_Carbon_Dioxide<=1/medications_lifetime_perc_covered+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4632 mean_Carbon_Dioxide<=Carbon_Dioxide+healthcare_coverage\n", + "4633 mean_Carbon_Dioxide<=maximum(encounters_count,Carbon_Dioxide)\n", + "4634 mean_Carbon_Dioxide<=Carbon_Dioxide^active_care_plans\n", + "4635 mean_Carbon_Dioxide<=sqrt(lifetime_care_plan_length)+mean_Estimated_Glomerular_Filtration_Rate\n", + "4636 mean_Carbon_Dioxide<=Carbon_Dioxide/QOLS\n", + "4637 mean_Carbon_Dioxide<=(active_condition_length+1)/encounters_lifetime_perc_covered\n", + "4638 mean_Carbon_Dioxide<=Carbon_Dioxide+procedures_lifetime_cost\n", + "4639 mean_Carbon_Dioxide<=QALY+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "4640 mean_Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "4641 mean_Carbon_Dioxide<=minimum(Protein__Mass_volume__in_Serum,Plasma,ceil(mean_Estimated_Glomerular_Filtration_Rate))\n", + "4642 mean_Carbon_Dioxide<=Bilirubin_total__Mass_volume__in_Serum,Plasma+Carbon_Dioxide\n", + "4643 mean_Carbon_Dioxide<=Estimated_Glomerular_Filtration_Rate+active_conditions-1\n", + "4644 mean_Carbon_Dioxide<=Carbon_Dioxide+Creatinine+1\n", + "4645 mean_Carbon_Dioxide<=Body_Mass_Index+log(mean_Microalbumin_Creatinine_Ratio)\n", + "4646 mean_Carbon_Dioxide<=1/2*Heart_rate-active_care_plans\n", + "4647 mean_Carbon_Dioxide<=minimum(healthcare_expenses,2*Hemoglobin__Mass_volume__in_Blood)\n", + "4648 mean_Carbon_Dioxide>=longitude\n", + "4649 mean_Carbon_Dioxide>=minimum(healthcare_coverage,1/encounters_lifetime_perc_covered)\n", + "4650 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,mean_Potassium^2)\n", + "4651 mean_Carbon_Dioxide>=floor(QALY)-mean_High_Density_Lipoprotein_Cholesterol\n", + "4652 mean_Carbon_Dioxide>=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^device_lifetime_length\n", + "4653 mean_Carbon_Dioxide>=sqrt(Carbon_Dioxide)+lifetime_conditions\n", + "4654 mean_Carbon_Dioxide>=-healthcare_expenses\n", + "4655 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4656 mean_Carbon_Dioxide>=mean_Creatinine^2+encounters_lifetime_perc_covered\n", + "4657 mean_Carbon_Dioxide>=healthcare_expenses^longitude\n", + "4658 mean_Carbon_Dioxide>=sqrt(Carbon_Dioxide)*Creatinine\n", + "4659 mean_Carbon_Dioxide>=Carbon_Dioxide-healthcare_coverage\n", + "4660 mean_Carbon_Dioxide>=minimum(DALY,Carbon_Dioxide-1)\n", + "4661 mean_Carbon_Dioxide>=minimum(DALY,1/medications_lifetime_perc_covered)\n", + "4662 mean_Carbon_Dioxide>=Calcium+1/2*Carbon_Dioxide\n", + "4663 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4664 mean_Carbon_Dioxide>=Carbon_Dioxide-medications_lifetime\n", + "4665 mean_Carbon_Dioxide>=Carbon_Dioxide-Microalbumin_Creatinine_Ratio+1\n", + "4666 mean_Carbon_Dioxide>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Carbon_Dioxide-1)\n", + "4667 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,10^immunizations_lifetime)\n", + "4668 mean_Carbon_Dioxide>=maximum(mean_Estimated_Glomerular_Filtration_Rate,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4669 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,e^num_allergies)\n", + "4670 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,1/2*latitude)\n", + "4671 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,1/medications_active)\n", + "4672 mean_Carbon_Dioxide>=minimum(procedures_lifetime,Carbon_Dioxide)\n", + "4673 mean_Carbon_Dioxide>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/mean_Potassium\n", + "4674 mean_Carbon_Dioxide>=(Diastolic_Blood_Pressure-1)^encounters_lifetime_perc_covered\n", + "4675 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,1/DALY)\n", + "4676 mean_Carbon_Dioxide>=mean_Albumin__Mass_volume__in_Serum,Plasma^2-procedures_lifetime\n", + "4677 mean_Carbon_Dioxide>=Carbon_Dioxide-Creatinine-1\n", + "4678 mean_Carbon_Dioxide>=floor(Urea_Nitrogen)+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4679 mean_Carbon_Dioxide>=minimum(mean_Microalbumin_Creatinine_Ratio,10^immunizations_lifetime)\n", + "4680 mean_Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "4681 mean_Carbon_Dioxide>=Carbon_Dioxide/active_care_plans\n", + "4682 mean_Carbon_Dioxide>=Creatinine+1/2*DALY\n", + "4683 mean_Carbon_Dioxide>=(log(Respiratory_rate)/log(10))^active_conditions\n", + "4684 mean_Chloride<=healthcare_expenses\n", + "4685 mean_Chloride<=2*Protein__Mass_volume__in_Serum,Plasma-medications_active\n", + "4686 mean_Chloride<=maximum(Total_Cholesterol,abs(Chloride))\n", + "4687 mean_Chloride<=maximum(lifetime_condition_length,Chloride+1)\n", + "4688 mean_Chloride<=Chloride+healthcare_coverage\n", + "4689 mean_Chloride<=Chloride+medications_lifetime\n", + "4690 mean_Chloride<=Chloride+immunizations_lifetime_cost\n", + "4691 mean_Chloride<=Chloride+Potassium\n", + "4692 mean_Chloride<=Systolic_Blood_Pressure+1/2*encounters_count\n", + "4693 mean_Chloride<=Chloride+procedures_lifetime_cost\n", + "4694 mean_Chloride<=Chloride^active_care_plans\n", + "4695 mean_Chloride<=Albumin__Mass_volume__in_Serum,Plasma+Chloride-1\n", + "4696 mean_Chloride<=Body_Weight+floor(age)\n", + "4697 mean_Chloride<=Body_Height^2/Total_Cholesterol\n", + "4698 mean_Chloride<=maximum(Chloride,10^lifetime_care_plans)\n", + "4699 mean_Chloride<=maximum(medications_lifetime_dispenses,Chloride)\n", + "4700 mean_Chloride<=medications_active^2+Chloride\n", + "4701 mean_Chloride<=floor(latitude)+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4702 mean_Chloride<=Chloride+log(encounters_count)\n", + "4703 mean_Chloride<=maximum(Chloride,10^Microalbumin_Creatinine_Ratio)\n", + "4704 mean_Chloride<=active_care_plans+ceil(Chloride)\n", + "4705 mean_Chloride<=Chloride+log(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4706 mean_Chloride<=sqrt(Body_Mass_Index)*Carbon_Dioxide\n", + "4707 mean_Chloride<=sqrt(Body_Mass_Index)*mean_Carbon_Dioxide\n", + "4708 mean_Chloride<=Chloride*ceil(mean_Creatinine)\n", + "4709 mean_Chloride<=Chloride+ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4710 mean_Chloride<=Diastolic_Blood_Pressure+2*mean_Estimated_Glomerular_Filtration_Rate\n", + "4711 mean_Chloride<=(mean_Total_Cholesterol-1)/immunizations_lifetime\n", + "4712 mean_Chloride>=latitude\n", + "4713 mean_Chloride>=10^immunizations_lifetime+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4714 mean_Chloride>=minimum(Chloride,procedures_lifetime^2)\n", + "4715 mean_Chloride>=2*High_Density_Lipoprotein_Cholesterol-QALY\n", + "4716 mean_Chloride>=Body_Weight+1\n", + "4717 mean_Chloride>=minimum(Chloride,mean_Body_Mass_Index)\n", + "4718 mean_Chloride>=-High_Density_Lipoprotein_Cholesterol+2*active_care_plan_length\n", + "4719 mean_Chloride>=Chloride-Microalbumin_Creatinine_Ratio+1\n", + "4720 mean_Chloride>=(Chloride+1)^imaging_studies_lifetime\n", + "4721 mean_Chloride>=-healthcare_expenses\n", + "4722 mean_Chloride>=Calcium+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "4723 mean_Chloride>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+QALY\n", + "4724 mean_Chloride>=healthcare_expenses^longitude\n", + "4725 mean_Chloride>=-Carbon_Dioxide+Glucose+1\n", + "4726 mean_Chloride>=minimum(Chloride,sqrt(medications_lifetime_length))\n", + "4727 mean_Chloride>=sqrt(medications_lifetime_dispenses)+latitude\n", + "4728 mean_Chloride>=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)/Creatinine\n", + "4729 mean_Chloride>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*active_condition_length\n", + "4730 mean_Chloride>=Calcium^2+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4731 mean_Chloride>=Globulin__Mass_volume__in_Serum_by_calculation+Glucose-1\n", + "4732 mean_Chloride>=Chloride-medications_lifetime\n", + "4733 mean_Chloride>=Glucose-lifetime_conditions-1\n", + "4734 mean_Chloride>=Chloride-healthcare_coverage\n", + "4735 mean_Chloride>=Chloride/active_care_plans\n", + "4736 mean_Chloride>=Chloride-mean_Potassium\n", + "4737 mean_Chloride>=Chloride^QOLS\n", + "4738 mean_Chloride>=Urea_Nitrogen*log(Body_Height)\n", + "4739 mean_Chloride>=log(active_care_plans)^lifetime_care_plans\n", + "4740 mean_Chloride>=1/2*Low_Density_Lipoprotein_Cholesterol+mean_Body_Mass_Index\n", + "4741 mean_Chloride>=(1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^medications_lifetime_perc_covered\n", + "4742 mean_Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "4743 mean_Chloride>=DALY*log(Respiratory_rate)\n", + "4744 mean_Chloride>=2*mean_Sodium/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4745 mean_Chloride>=floor(lifetime_care_plan_length)^imaging_studies_lifetime\n", + "4746 mean_Chloride>=-Calcium+mean_Glucose-1\n", + "4747 mean_Chloride>=QALY*log(device_lifetime_length)\n", + "4748 mean_Chloride>=Chloride-procedures_lifetime_cost-1\n", + "4749 mean_Creatinine<=healthcare_expenses\n", + "4750 mean_Creatinine<=(medications_lifetime_dispenses+1)/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4751 mean_Creatinine<=Creatinine^2*Potassium\n", + "4752 mean_Creatinine<=Creatinine*active_care_plans\n", + "4753 mean_Creatinine<=2*lifetime_care_plan_length/device_lifetime_length\n", + "4754 mean_Creatinine<=sqrt(encounters_lifetime_perc_covered)+mean_Potassium\n", + "4755 mean_Creatinine<=Albumin__Mass_volume__in_Serum,Plasma*log(mean_Calcium)/log(10)\n", + "4756 mean_Creatinine<=(mean_Low_Density_Lipoprotein_Cholesterol-1)/mean_Estimated_Glomerular_Filtration_Rate\n", + "4757 mean_Creatinine<=-Potassium+Urea_Nitrogen\n", + "4758 mean_Creatinine<=-mean_Globulin__Mass_volume__in_Serum_by_calculation+medications_lifetime+1\n", + "4759 mean_Creatinine<=(Potassium-1)/imaging_studies_lifetime\n", + "4760 mean_Creatinine<=Creatinine+healthcare_coverage\n", + "4761 mean_Creatinine<=Globulin__Mass_volume__in_Serum_by_calculation+procedures_lifetime\n", + "4762 mean_Creatinine<=maximum(Respiratory_rate,Creatinine)\n", + "4763 mean_Creatinine<=(mean_Sodium+1)/Estimated_Glomerular_Filtration_Rate\n", + "4764 mean_Creatinine<=Potassium+2*QOLS\n", + "4765 mean_Creatinine<=1/medications_lifetime_perc_covered+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4766 mean_Creatinine<=10^medications_active+1\n", + "4767 mean_Creatinine<=Creatinine*sqrt(active_care_plans)\n", + "4768 mean_Creatinine<=medications_lifetime_dispenses/Estimated_Glomerular_Filtration_Rate\n", + "4769 mean_Creatinine<=sqrt(Body_Mass_Index)-num_allergies\n", + "4770 mean_Creatinine<=10^encounters_lifetime_perc_covered*Creatinine\n", + "4771 mean_Creatinine<=Creatinine+medications_lifetime\n", + "4772 mean_Creatinine<=2*Heart_rate/DALY\n", + "4773 mean_Creatinine<=Creatinine+DALY\n", + "4774 mean_Creatinine<=sqrt(High_Density_Lipoprotein_Cholesterol)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4775 mean_Creatinine<=High_Density_Lipoprotein_Cholesterol^2/Triglycerides\n", + "4776 mean_Creatinine<=maximum(Creatinine,10^immunizations_lifetime)\n", + "4777 mean_Creatinine<=log(Glomerular_filtration_rate_1_73_sq_M_predicted)-medications_lifetime_perc_covered\n", + "4778 mean_Creatinine<=maximum(Creatinine,1/2*Microalbumin_Creatinine_Ratio)\n", + "4779 mean_Creatinine<=-Calcium+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4780 mean_Creatinine<=maximum(Triglycerides,10^procedures_lifetime)\n", + "4781 mean_Creatinine<=maximum(active_care_plans,ceil(Creatinine))\n", + "4782 mean_Creatinine<=maximum(Triglycerides,ceil(Creatinine))\n", + "4783 mean_Creatinine>=longitude\n", + "4784 mean_Creatinine>=2*Carbon_Dioxide/mean_Estimated_Glomerular_Filtration_Rate\n", + "4785 mean_Creatinine>=(High_Density_Lipoprotein_Cholesterol+1)/mean_Estimated_Glomerular_Filtration_Rate\n", + "4786 mean_Creatinine>=mean_Globulin__Mass_volume__in_Serum_by_calculation-1\n", + "4787 mean_Creatinine>=Creatinine-healthcare_coverage\n", + "4788 mean_Creatinine>=-healthcare_expenses\n", + "4789 mean_Creatinine>=minimum(encounters_lifetime_perc_covered,Creatinine)\n", + "4790 mean_Creatinine>=minimum(immunizations_lifetime,Creatinine)\n", + "4791 mean_Creatinine>=Creatinine-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4792 mean_Creatinine>=Microalbumin_Creatinine_Ratio/encounters_count\n", + "4793 mean_Creatinine>=1/2*Low_Density_Lipoprotein_Cholesterol/mean_Diastolic_Blood_Pressure\n", + "4794 mean_Creatinine>=minimum(Creatinine,log(mean_Potassium))\n", + "4795 mean_Creatinine>=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*active_conditions\n", + "4796 mean_Creatinine>=log(2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "4797 mean_Creatinine>=Creatinine-procedures_lifetime\n", + "4798 mean_Creatinine>=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*num_allergies\n", + "4799 mean_Creatinine>=minimum(Creatinine,-Respiratory_rate)\n", + "4800 mean_Creatinine>=healthcare_expenses^longitude\n", + "4801 mean_Creatinine>=Creatinine-DALY\n", + "4802 mean_Creatinine>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,Creatinine)\n", + "4803 mean_Creatinine>=(encounters_count-1)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4804 mean_Creatinine>=(mean_Microalbumin_Creatinine_Ratio+1)/age\n", + "4805 mean_Creatinine>=(10^healthcare_expenses)^longitude\n", + "4806 mean_Creatinine>=-DALY+lifetime_care_plans\n", + "4807 mean_Creatinine>=minimum(Creatinine,log(lifetime_care_plans))\n", + "4808 mean_Creatinine>=active_conditions-encounters_count\n", + "4809 mean_Creatinine>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1\n", + "4810 mean_Creatinine>=2*mean_Microalbumin_Creatinine_Ratio/mean_Low_Density_Lipoprotein_Cholesterol\n", + "4811 mean_Creatinine>=QOLS^active_care_plans\n", + "4812 mean_Creatinine>=QOLS-medications_lifetime\n", + "4813 mean_DALY<=DALY\n", + "4814 mean_DALY<=encounters_lifetime_total_cost\n", + "4815 mean_DALY>=DALY\n", + "4816 mean_Diastolic_Blood_Pressure<=healthcare_expenses\n", + "4817 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+active_conditions\n", + "4818 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+medications_lifetime\n", + "4819 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+active_care_plan_length\n", + "4820 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+encounters_lifetime_payer_coverage\n", + "4821 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "4822 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+healthcare_coverage\n", + "4823 mean_Diastolic_Blood_Pressure<=maximum(medications_lifetime_cost,Diastolic_Blood_Pressure)\n", + "4824 mean_Diastolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,Diastolic_Blood_Pressure)\n", + "4825 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "4826 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^Potassium)\n", + "4827 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,1/2*Total_Cholesterol)\n", + "4828 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+mean_Calcium-1\n", + "4829 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,mean_Glucose)\n", + "4830 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,1/device_lifetime_length)\n", + "4831 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,active_care_plan_length^2)\n", + "4832 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+log(MCV__Entitic_volume__by_Automated_count)\n", + "4833 mean_Diastolic_Blood_Pressure<=maximum(Triglycerides,floor(Diastolic_Blood_Pressure))\n", + "4834 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+2*lifetime_care_plans\n", + "4835 mean_Diastolic_Blood_Pressure<=log(Estimated_Glomerular_Filtration_Rate)+mean_Heart_rate\n", + "4836 mean_Diastolic_Blood_Pressure<=1/2*Body_Height+immunizations_lifetime_cost\n", + "4837 mean_Diastolic_Blood_Pressure<=maximum(Sodium,floor(Diastolic_Blood_Pressure))\n", + "4838 mean_Diastolic_Blood_Pressure<=Carbon_Dioxide*log(High_Density_Lipoprotein_Cholesterol)\n", + "4839 mean_Diastolic_Blood_Pressure<=maximum(encounters_count,1/2*Total_Cholesterol)\n", + "4840 mean_Diastolic_Blood_Pressure<=10^QOLS*Diastolic_Blood_Pressure\n", + "4841 mean_Diastolic_Blood_Pressure<=2*Estimated_Glomerular_Filtration_Rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "4842 mean_Diastolic_Blood_Pressure<=Potassium^2+Heart_rate\n", + "4843 mean_Diastolic_Blood_Pressure<=2*lifetime_condition_length/imaging_studies_lifetime\n", + "4844 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,sqrt(healthcare_coverage))\n", + "4845 mean_Diastolic_Blood_Pressure<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Body_Weight\n", + "4846 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,10^active_care_plans)\n", + "4847 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^active_conditions)\n", + "4848 mean_Diastolic_Blood_Pressure<=1/2*Chloride+QALY\n", + "4849 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,Urea_Nitrogen^2)\n", + "4850 mean_Diastolic_Blood_Pressure>=latitude\n", + "4851 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,-longitude)\n", + "4852 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-medications_lifetime\n", + "4853 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,1/DALY)\n", + "4854 mean_Diastolic_Blood_Pressure>=1/2*Low_Density_Lipoprotein_Cholesterol+QOLS\n", + "4855 mean_Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "4856 mean_Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol-1\n", + "4857 mean_Diastolic_Blood_Pressure>=-Estimated_Glomerular_Filtration_Rate+1/2*Triglycerides\n", + "4858 mean_Diastolic_Blood_Pressure>=maximum(Diastolic_Blood_Pressure,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4859 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_condition_length\n", + "4860 mean_Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "4861 mean_Diastolic_Blood_Pressure>=-Heart_rate+mean_Sodium\n", + "4862 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_care_plan_length\n", + "4863 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "4864 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "4865 mean_Diastolic_Blood_Pressure>=sqrt(active_conditions)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4866 mean_Diastolic_Blood_Pressure>=minimum(QALY,Diastolic_Blood_Pressure)\n", + "4867 mean_Diastolic_Blood_Pressure>=QALY*log(DALY)/log(10)\n", + "4868 mean_Diastolic_Blood_Pressure>=minimum(active_care_plan_length,Diastolic_Blood_Pressure)\n", + "4869 mean_Diastolic_Blood_Pressure>=floor(High_Density_Lipoprotein_Cholesterol)/Creatinine\n", + "4870 mean_Diastolic_Blood_Pressure>=ceil(Body_Weight)-mean_Carbon_Dioxide\n", + "4871 mean_Diastolic_Blood_Pressure>=2*mean_Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered\n", + "4872 mean_Diastolic_Blood_Pressure>=sqrt(medications_lifetime_cost)/Respiratory_rate\n", + "4873 mean_Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol+log(medications_active)\n", + "4874 mean_Diastolic_Blood_Pressure>=active_conditions*log(QALY)\n", + "4875 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-lifetime_conditions-1\n", + "4876 mean_Diastolic_Blood_Pressure>=num_allergies^2/DALY\n", + "4877 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-healthcare_coverage\n", + "4878 mean_Diastolic_Blood_Pressure>=active_care_plans^2+Carbon_Dioxide\n", + "4879 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,10^immunizations_lifetime)\n", + "4880 mean_Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "4881 mean_Diastolic_Blood_Pressure>=sqrt(Respiratory_rate)*Urea_Nitrogen\n", + "4882 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,2*device_lifetime_length)\n", + "4883 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-immunizations_lifetime_cost-1\n", + "4884 mean_Diastolic_Blood_Pressure>=sqrt(lifetime_condition_length)+DALY\n", + "4885 mean_Diastolic_Blood_Pressure>=1/2*Heart_rate/Creatinine\n", + "4886 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4887 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,e^medications_active)\n", + "4888 mean_Diastolic_Blood_Pressure>=minimum(Estimated_Glomerular_Filtration_Rate,floor(Diastolic_Blood_Pressure))\n", + "4889 mean_Diastolic_Blood_Pressure>=(Creatinine+1)*mean_Respiratory_rate\n", + "4890 mean_Diastolic_Blood_Pressure>=Urea_Nitrogen*log(Estimated_Glomerular_Filtration_Rate)\n", + "4891 mean_Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "4892 mean_Estimated_Glomerular_Filtration_Rate<=2*Estimated_Glomerular_Filtration_Rate-mean_Calcium\n", + "4893 mean_Estimated_Glomerular_Filtration_Rate<=maximum(age,Estimated_Glomerular_Filtration_Rate)\n", + "4894 mean_Estimated_Glomerular_Filtration_Rate<=1/2*mean_Diastolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "4895 mean_Estimated_Glomerular_Filtration_Rate<=maximum(active_condition_length,Estimated_Glomerular_Filtration_Rate)\n", + "4896 mean_Estimated_Glomerular_Filtration_Rate<=(DALY+1)/num_allergies\n", + "4897 mean_Estimated_Glomerular_Filtration_Rate<=DALY^2+immunizations_lifetime_cost\n", + "4898 mean_Estimated_Glomerular_Filtration_Rate<=active_conditions^(log(mean_Low_Density_Lipoprotein_Cholesterol)/log(10))\n", + "4899 mean_Estimated_Glomerular_Filtration_Rate<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Estimated_Glomerular_Filtration_Rate\n", + "4900 mean_Estimated_Glomerular_Filtration_Rate<=mean_Glucose^2/encounters_count\n", + "4901 mean_Estimated_Glomerular_Filtration_Rate<=(log(encounters_lifetime_total_cost)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4902 mean_Estimated_Glomerular_Filtration_Rate<=-log(device_lifetime_length)/log(10)+Carbon_Dioxide\n", + "4903 mean_Estimated_Glomerular_Filtration_Rate<=1/2*Estimated_Glomerular_Filtration_Rate*lifetime_care_plans\n", + "4904 mean_Estimated_Glomerular_Filtration_Rate<=lifetime_condition_length+mean_Urea_Nitrogen-1\n", + "4905 mean_Estimated_Glomerular_Filtration_Rate<=(encounters_lifetime_payer_coverage^2)^encounters_lifetime_perc_covered\n", + "4906 mean_Estimated_Glomerular_Filtration_Rate>=longitude\n", + "4907 mean_Estimated_Glomerular_Filtration_Rate>=sqrt(Body_Weight)+Calcium\n", + "4908 mean_Estimated_Glomerular_Filtration_Rate>=2*DALY-mean_Microalbumin_Creatinine_Ratio\n", + "4909 mean_Estimated_Glomerular_Filtration_Rate>=(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*device_lifetime_length\n", + "4910 mean_Estimated_Glomerular_Filtration_Rate>=sqrt(lifetime_conditions)*mean_Creatinine\n", + "4911 mean_Estimated_Glomerular_Filtration_Rate>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/DALY\n", + "4912 mean_Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "4913 mean_Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "4914 mean_Estimated_Glomerular_Filtration_Rate>=-10^medications_active+Estimated_Glomerular_Filtration_Rate\n", + "4915 mean_Estimated_Glomerular_Filtration_Rate>=1/2*QOLS*active_care_plan_length\n", + "4916 mean_Estimated_Glomerular_Filtration_Rate>=minimum(procedures_lifetime,Estimated_Glomerular_Filtration_Rate)\n", + "4917 mean_Estimated_Glomerular_Filtration_Rate>=active_care_plans+mean_Urea_Nitrogen\n", + "4918 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-immunizations_lifetime_cost-1\n", + "4919 mean_Estimated_Glomerular_Filtration_Rate>=active_care_plan_length*log(device_lifetime_length)/log(10)\n", + "4920 mean_Estimated_Glomerular_Filtration_Rate>=-10^lifetime_care_plans+Low_Density_Lipoprotein_Cholesterol\n", + "4921 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate/floor(Microalbumin_Creatinine_Ratio)\n", + "4922 mean_Estimated_Glomerular_Filtration_Rate>=active_conditions+log(DALY)\n", + "4923 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate/(encounters_lifetime_perc_covered+1)\n", + "4924 mean_Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "4925 mean_Estimated_Glomerular_Filtration_Rate>=floor(QALY)-mean_Microalbumin_Creatinine_Ratio\n", + "4926 mean_Glucose<=healthcare_expenses\n", + "4927 mean_Glucose<=-DALY+Triglycerides-1\n", + "4928 mean_Glucose<=maximum(Glucose,2*age)\n", + "4929 mean_Glucose<=mean_Systolic_Blood_Pressure-medications_lifetime_perc_covered\n", + "4930 mean_Glucose<=Glucose+healthcare_coverage\n", + "4931 mean_Glucose<=2*Glomerular_filtration_rate_1_73_sq_M_predicted+QALY\n", + "4932 mean_Glucose<=Glucose+medications_lifetime_cost\n", + "4933 mean_Glucose<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plan_length\n", + "4934 mean_Glucose<=Glucose*ceil(Creatinine)\n", + "4935 mean_Glucose<=maximum(Glucose,e^active_conditions)\n", + "4936 mean_Glucose<=10^procedures_lifetime_cost+Glucose\n", + "4937 mean_Glucose<=Glucose^active_care_plans\n", + "4938 mean_Glucose<=maximum(Systolic_Blood_Pressure,Glucose)\n", + "4939 mean_Glucose<=10^active_care_plans/device_lifetime_length\n", + "4940 mean_Glucose<=Calcium+mean_Chloride+1\n", + "4941 mean_Glucose<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4942 mean_Glucose<=Total_Cholesterol-mean_Heart_rate-1\n", + "4943 mean_Glucose<=log(encounters_count)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/log(10)\n", + "4944 mean_Glucose<=sqrt(medications_lifetime)+Chloride\n", + "4945 mean_Glucose<=4*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4946 mean_Glucose<=Estimated_Glomerular_Filtration_Rate^2-mean_Sodium\n", + "4947 mean_Glucose<=Diastolic_Blood_Pressure+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "4948 mean_Glucose<=maximum(medications_lifetime_dispenses,High_Density_Lipoprotein_Cholesterol)\n", + "4949 mean_Glucose<=mean_Chloride+1/2*mean_Estimated_Glomerular_Filtration_Rate\n", + "4950 mean_Glucose<=log(mean_Urea_Nitrogen)/log(10)+Systolic_Blood_Pressure\n", + "4951 mean_Glucose<=ceil(QALY)*mean_Potassium\n", + "4952 mean_Glucose<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(lifetime_care_plan_length)\n", + "4953 mean_Glucose>=latitude\n", + "4954 mean_Glucose>=minimum(Diastolic_Blood_Pressure,Glucose)\n", + "4955 mean_Glucose>=minimum(Glucose,1/medications_lifetime_perc_covered)\n", + "4956 mean_Glucose>=Glucose-medications_lifetime\n", + "4957 mean_Glucose>=Glucose-procedures_lifetime_cost\n", + "4958 mean_Glucose>=Glucose^QOLS\n", + "4959 mean_Glucose>=-healthcare_expenses\n", + "4960 mean_Glucose>=minimum(Glucose,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4961 mean_Glucose>=minimum(Glucose,procedures_lifetime^2)\n", + "4962 mean_Glucose>=(1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^medications_lifetime_perc_covered\n", + "4963 mean_Glucose>=Glucose-mean_Calcium\n", + "4964 mean_Glucose>=Glucose-Urea_Nitrogen\n", + "4965 mean_Glucose>=minimum(Glucose,1/2*encounters_count)\n", + "4966 mean_Glucose>=(mean_High_Density_Lipoprotein_Cholesterol+1)*immunizations_lifetime\n", + "4967 mean_Glucose>=healthcare_expenses^longitude\n", + "4968 mean_Glucose>=Glucose/active_care_plans\n", + "4969 mean_Glucose>=minimum(Glucose,mean_Body_Mass_Index)\n", + "4970 mean_Glucose>=1/2*Estimated_Glomerular_Filtration_Rate*medications_active\n", + "4971 mean_Glucose>=High_Density_Lipoprotein_Cholesterol+Potassium\n", + "4972 mean_Glucose>=minimum(age,Glucose)\n", + "4973 mean_Glucose>=-Systolic_Blood_Pressure+mean_Microalbumin_Creatinine_Ratio-1\n", + "4974 mean_Glucose>=log(Microalbumin_Creatinine_Ratio)+mean_High_Density_Lipoprotein_Cholesterol\n", + "4975 mean_Glucose>=-active_care_plan_length+mean_Heart_rate+1\n", + "4976 mean_Glucose>=minimum(Glucose,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4977 mean_Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "4978 mean_Glucose>=QALY+active_conditions-1\n", + "4979 mean_Glucose>=2*QALY-active_condition_length\n", + "4980 mean_Glucose>=mean_Creatinine^2*mean_Potassium\n", + "4981 mean_Glucose>=Glucose-healthcare_coverage\n", + "4982 mean_Heart_rate<=healthcare_expenses\n", + "4983 mean_Heart_rate<=Heart_rate+2*lifetime_conditions\n", + "4984 mean_Heart_rate<=sqrt(latitude)*mean_Hemoglobin__Mass_volume__in_Blood\n", + "4985 mean_Heart_rate<=(encounters_lifetime_perc_covered+1)*Glucose\n", + "4986 mean_Heart_rate<=Total_Cholesterol-mean_Glucose-1\n", + "4987 mean_Heart_rate<=maximum(Heart_rate,10^active_care_plans)\n", + "4988 mean_Heart_rate<=Heart_rate+healthcare_coverage\n", + "4989 mean_Heart_rate<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+floor(Body_Weight)\n", + "4990 mean_Heart_rate<=2*Heart_rate/immunizations_lifetime\n", + "4991 mean_Heart_rate<=Heart_rate/encounters_lifetime_perc_covered\n", + "4992 mean_Heart_rate<=Heart_rate+lifetime_care_plan_length\n", + "4993 mean_Heart_rate<=maximum(Heart_rate,Urea_Nitrogen^2)\n", + "4994 mean_Heart_rate<=Body_Weight+mean_Microalbumin_Creatinine_Ratio-1\n", + "4995 mean_Heart_rate<=Heart_rate+active_condition_length\n", + "4996 mean_Heart_rate<=Heart_rate+medications_lifetime_cost\n", + "4997 mean_Heart_rate<=Heart_rate/imaging_studies_lifetime\n", + "4998 mean_Heart_rate<=(encounters_lifetime_perc_covered+1)*Heart_rate\n", + "4999 mean_Heart_rate<=Heart_rate+encounters_lifetime_payer_coverage\n", + "5000 mean_Heart_rate<=maximum(medications_lifetime_cost,Heart_rate)\n", + "5001 mean_Heart_rate<=maximum(Heart_rate,lifetime_care_plan_length^2)\n", + "5002 mean_Heart_rate<=QALY*log(Body_Height)\n", + "5003 mean_Heart_rate<=2*Total_Cholesterol/mean_Creatinine\n", + "5004 mean_Heart_rate<=Low_Density_Lipoprotein_Cholesterol*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5005 mean_Heart_rate<=Creatinine+2*lifetime_condition_length\n", + "5006 mean_Heart_rate<=2*Calcium+Low_Density_Lipoprotein_Cholesterol\n", + "5007 mean_Heart_rate<=(Heart_rate^2)^Creatinine\n", + "5008 mean_Heart_rate<=Respiratory_rate^2-QALY\n", + "5009 mean_Heart_rate<=Estimated_Glomerular_Filtration_Rate*log(Body_Height)\n", + "5010 mean_Heart_rate<=ceil(Chloride)-medications_active\n", + "5011 mean_Heart_rate<=Creatinine^2*Total_Cholesterol\n", + "5012 mean_Heart_rate<=-Body_Height+2*Sodium\n", + "5013 mean_Heart_rate<=10^medications_active*Heart_rate\n", + "5014 mean_Heart_rate<=floor(Triglycerides)-1\n", + "5015 mean_Heart_rate<=Potassium*mean_Estimated_Glomerular_Filtration_Rate\n", + "5016 mean_Heart_rate<=e^sqrt(mean_Estimated_Glomerular_Filtration_Rate)\n", + "5017 mean_Heart_rate<=2*Estimated_Glomerular_Filtration_Rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "5018 mean_Heart_rate<=maximum(Heart_rate,2*age)\n", + "5019 mean_Heart_rate<=1/num_allergies+mean_Diastolic_Blood_Pressure\n", + "5020 mean_Heart_rate<=10^DALY*Heart_rate\n", + "5021 mean_Heart_rate<=Calcium^2+procedures_lifetime_cost\n", + "5022 mean_Heart_rate<=maximum(Heart_rate,1/2*Total_Cholesterol)\n", + "5023 mean_Heart_rate>=latitude\n", + "5024 mean_Heart_rate>=minimum(active_care_plan_length,Heart_rate)\n", + "5025 mean_Heart_rate>=minimum(active_condition_length,Heart_rate)\n", + "5026 mean_Heart_rate>=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)^imaging_studies_lifetime\n", + "5027 mean_Heart_rate>=Glucose-latitude+1\n", + "5028 mean_Heart_rate>=-healthcare_expenses\n", + "5029 mean_Heart_rate>=2*Chloride/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5030 mean_Heart_rate>=minimum(Heart_rate,High_Density_Lipoprotein_Cholesterol)\n", + "5031 mean_Heart_rate>=minimum(Heart_rate,Estimated_Glomerular_Filtration_Rate)\n", + "5032 mean_Heart_rate>=(2*Globulin__Mass_volume__in_Serum_by_calculation)^device_lifetime_length\n", + "5033 mean_Heart_rate>=Heart_rate-active_condition_length\n", + "5034 mean_Heart_rate>=ceil(QALY)\n", + "5035 mean_Heart_rate>=Heart_rate-medications_lifetime\n", + "5036 mean_Heart_rate>=healthcare_expenses^longitude\n", + "5037 mean_Heart_rate>=Heart_rate-active_care_plan_length\n", + "5038 mean_Heart_rate>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+age-1\n", + "5039 mean_Heart_rate>=-immunizations_lifetime_cost+2*latitude\n", + "5040 mean_Heart_rate>=Heart_rate-encounters_lifetime_payer_coverage\n", + "5041 mean_Heart_rate>=minimum(Heart_rate,Creatinine)\n", + "5042 mean_Heart_rate>=-MCH__Entitic_mass__by_Automated_count+1/2*Total_Cholesterol\n", + "5043 mean_Heart_rate>=Heart_rate^QOLS\n", + "5044 mean_Heart_rate>=Heart_rate-procedures_lifetime_cost\n", + "5045 mean_Heart_rate>=2*encounters_count/Calcium\n", + "5046 mean_Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "5047 mean_Heart_rate>=sqrt(healthcare_expenses)/Estimated_Glomerular_Filtration_Rate\n", + "5048 mean_Heart_rate>=ceil(Protein__Mass_volume__in_Serum,Plasma)^immunizations_lifetime\n", + "5049 mean_Heart_rate>=(immunizations_lifetime+1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5050 mean_Heart_rate>=Heart_rate^encounters_lifetime_perc_covered\n", + "5051 mean_Heart_rate>=-Body_Mass_Index+ceil(Body_Weight)\n", + "5052 mean_Heart_rate>=Heart_rate-immunizations_lifetime_cost\n", + "5053 mean_Heart_rate>=Heart_rate-healthcare_coverage\n", + "5054 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "5055 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "5056 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "5057 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5058 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+immunizations_lifetime_cost\n", + "5059 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/device_lifetime_length)\n", + "5060 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,e^Creatinine)\n", + "5061 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,e^medications_active)\n", + "5062 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Triglycerides,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5063 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "5064 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*encounters_count)\n", + "5065 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "5066 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=(mean_Estimated_Glomerular_Filtration_Rate+1)/mean_Creatinine\n", + "5067 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(Total_Cholesterol)/Carbon_Dioxide\n", + "5068 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=(Estimated_Glomerular_Filtration_Rate-1)/Creatinine\n", + "5069 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(lifetime_conditions,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5070 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+healthcare_coverage\n", + "5071 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=minimum(Estimated_Glomerular_Filtration_Rate,1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5072 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "5073 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Microalbumin_Creatinine_Ratio)\n", + "5074 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "5075 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5076 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5077 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "5078 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime\n", + "5079 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(Urea_Nitrogen^2)/log(10)\n", + "5080 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "5081 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(pH_of_Urine_by_Test_strip)^imaging_studies_lifetime\n", + "5082 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)^medications_lifetime_perc_covered\n", + "5083 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=active_care_plans*log(Creatinine)/log(10)\n", + "5084 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(device_lifetime_length,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5085 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime\n", + "5086 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime_perc_covered\n", + "5087 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "5088 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-healthcare_coverage\n", + "5089 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "5090 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(procedures_lifetime,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5091 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "5092 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(e^num_allergies)^Bilirubin_total__Mass_volume__in_Urine_by_Test_strip\n", + "5093 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(DALY+1)/active_conditions\n", + "5094 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Triglycerides)\n", + "5095 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Estimated_Glomerular_Filtration_Rate)\n", + "5096 mean_High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "5097 mean_High_Density_Lipoprotein_Cholesterol<=maximum(age,High_Density_Lipoprotein_Cholesterol)\n", + "5098 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Heart_rate,High_Density_Lipoprotein_Cholesterol)\n", + "5099 mean_High_Density_Lipoprotein_Cholesterol<=Diastolic_Blood_Pressure+1\n", + "5100 mean_High_Density_Lipoprotein_Cholesterol<=2*mean_Carbon_Dioxide/imaging_studies_lifetime\n", + "5101 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+immunizations_lifetime_cost\n", + "5102 mean_High_Density_Lipoprotein_Cholesterol<=-DALY+floor(MCV__Entitic_volume__by_Automated_count)\n", + "5103 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "5104 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol*ceil(Creatinine)\n", + "5105 mean_High_Density_Lipoprotein_Cholesterol<=Hemoglobin__Mass_volume__in_Blood+ceil(High_Density_Lipoprotein_Cholesterol)\n", + "5106 mean_High_Density_Lipoprotein_Cholesterol<=10^medications_lifetime_perc_covered*High_Density_Lipoprotein_Cholesterol\n", + "5107 mean_High_Density_Lipoprotein_Cholesterol<=Calcium+floor(lifetime_condition_length)\n", + "5108 mean_High_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+medications_lifetime\n", + "5109 mean_High_Density_Lipoprotein_Cholesterol<=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5110 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,lifetime_care_plan_length+1)\n", + "5111 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,1/device_lifetime_length)\n", + "5112 mean_High_Density_Lipoprotein_Cholesterol<=mean_Respiratory_rate^2-Glucose\n", + "5113 mean_High_Density_Lipoprotein_Cholesterol<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*High_Density_Lipoprotein_Cholesterol\n", + "5114 mean_High_Density_Lipoprotein_Cholesterol<=2*Sodium-mean_Total_Cholesterol\n", + "5115 mean_High_Density_Lipoprotein_Cholesterol<=maximum(active_condition_length,High_Density_Lipoprotein_Cholesterol+1)\n", + "5116 mean_High_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate*sqrt(mean_Carbon_Dioxide)\n", + "5117 mean_High_Density_Lipoprotein_Cholesterol>=longitude\n", + "5118 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "5119 mean_High_Density_Lipoprotein_Cholesterol>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*encounters_count\n", + "5120 mean_High_Density_Lipoprotein_Cholesterol>=Body_Mass_Index+lifetime_conditions-1\n", + "5121 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,10^immunizations_lifetime)\n", + "5122 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5123 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "5124 mean_High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "5125 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol^encounters_lifetime_perc_covered\n", + "5126 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,1/medications_active)\n", + "5127 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "5128 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol^QOLS\n", + "5129 mean_High_Density_Lipoprotein_Cholesterol>=device_lifetime_length*sqrt(mean_Carbon_Dioxide)\n", + "5130 mean_High_Density_Lipoprotein_Cholesterol>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,High_Density_Lipoprotein_Cholesterol-1)\n", + "5131 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Carbon_Dioxide)\n", + "5132 mean_High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "5133 mean_High_Density_Lipoprotein_Cholesterol>=Estimated_Glomerular_Filtration_Rate+1/2*longitude\n", + "5134 mean_High_Density_Lipoprotein_Cholesterol>=-Diastolic_Blood_Pressure+mean_Glucose+1\n", + "5135 mean_High_Density_Lipoprotein_Cholesterol>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2+DALY\n", + "5136 mean_High_Density_Lipoprotein_Cholesterol>=active_condition_length^2/MCV__Entitic_volume__by_Automated_count\n", + "5137 mean_High_Density_Lipoprotein_Cholesterol>=-Calcium+High_Density_Lipoprotein_Cholesterol+1\n", + "5138 mean_High_Density_Lipoprotein_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+active_care_plan_length\n", + "5139 mean_High_Density_Lipoprotein_Cholesterol>=Creatinine*sqrt(Systolic_Blood_Pressure)\n", + "5140 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol^2/mean_Glucose\n", + "5141 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,1/2*Diastolic_Blood_Pressure)\n", + "5142 mean_High_Density_Lipoprotein_Cholesterol>=2*medications_lifetime_dispenses/Triglycerides\n", + "5143 mean_High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "5144 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,2*procedures_lifetime)\n", + "5145 mean_Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "5146 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Body_Height,Low_Density_Lipoprotein_Cholesterol)\n", + "5147 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Triglycerides,Low_Density_Lipoprotein_Cholesterol)\n", + "5148 mean_Low_Density_Lipoprotein_Cholesterol<=1/2*active_care_plans*mean_Sodium\n", + "5149 mean_Low_Density_Lipoprotein_Cholesterol<=Total_Cholesterol-active_condition_length-1\n", + "5150 mean_Low_Density_Lipoprotein_Cholesterol<=Calcium+2*Heart_rate\n", + "5151 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+lifetime_care_plan_length\n", + "5152 mean_Low_Density_Lipoprotein_Cholesterol<=DALY*e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5153 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,10^Creatinine)\n", + "5154 mean_Low_Density_Lipoprotein_Cholesterol<=(mean_Potassium+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5155 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "5156 mean_Low_Density_Lipoprotein_Cholesterol<=(mean_Potassium+1)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5157 mean_Low_Density_Lipoprotein_Cholesterol<=Leukocytes____volume__in_Blood_by_Automated_count+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "5158 mean_Low_Density_Lipoprotein_Cholesterol<=Hemoglobin__Mass_volume__in_Blood^2-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5159 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "5160 mean_Low_Density_Lipoprotein_Cholesterol<=(Estimated_Glomerular_Filtration_Rate-1)*active_conditions\n", + "5161 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_cost,Low_Density_Lipoprotein_Cholesterol)\n", + "5162 mean_Low_Density_Lipoprotein_Cholesterol<=Chloride+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5163 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_dispenses,Low_Density_Lipoprotein_Cholesterol)\n", + "5164 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(active_condition_length)*mean_Estimated_Glomerular_Filtration_Rate\n", + "5165 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(medications_lifetime_length)+Chloride\n", + "5166 mean_Low_Density_Lipoprotein_Cholesterol<=2*Platelets____volume__in_Blood_by_Automated_count/medications_active\n", + "5167 mean_Low_Density_Lipoprotein_Cholesterol<=longitude^2/device_lifetime_length\n", + "5168 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol/QOLS\n", + "5169 mean_Low_Density_Lipoprotein_Cholesterol<=1/2*Heart_rate*mean_Potassium\n", + "5170 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,MCV__Entitic_volume__by_Automated_count)\n", + "5171 mean_Low_Density_Lipoprotein_Cholesterol<=2*Low_Density_Lipoprotein_Cholesterol/immunizations_lifetime\n", + "5172 mean_Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "5173 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^imaging_studies_lifetime\n", + "5174 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "5175 mean_Low_Density_Lipoprotein_Cholesterol>=-Urea_Nitrogen+1/2*immunizations_lifetime_cost\n", + "5176 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Heart_rate,Low_Density_Lipoprotein_Cholesterol)\n", + "5177 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "5178 mean_Low_Density_Lipoprotein_Cholesterol>=maximum(Low_Density_Lipoprotein_Cholesterol,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5179 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^encounters_lifetime_perc_covered\n", + "5180 mean_Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "5181 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(age,Low_Density_Lipoprotein_Cholesterol)\n", + "5182 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,e^mean_Creatinine)\n", + "5183 mean_Low_Density_Lipoprotein_Cholesterol>=Glucose^2/Systolic_Blood_Pressure\n", + "5184 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5185 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,2*Estimated_Glomerular_Filtration_Rate)\n", + "5186 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "5187 mean_Low_Density_Lipoprotein_Cholesterol>=-Glucose+mean_Microalbumin_Creatinine_Ratio+1\n", + "5188 mean_Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "5189 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Estimated_Glomerular_Filtration_Rate)\n", + "5190 mean_Low_Density_Lipoprotein_Cholesterol>=e^Leukocytes____volume__in_Blood_by_Automated_count/Low_Density_Lipoprotein_Cholesterol\n", + "5191 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,e^procedures_lifetime)\n", + "5192 mean_Low_Density_Lipoprotein_Cholesterol>=age+log(mean_Estimated_Glomerular_Filtration_Rate)\n", + "5193 mean_Low_Density_Lipoprotein_Cholesterol>=floor(Low_Density_Lipoprotein_Cholesterol)-immunizations_lifetime_cost\n", + "5194 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,sqrt(procedures_lifetime_cost))\n", + "5195 mean_Low_Density_Lipoprotein_Cholesterol>=e^imaging_studies_lifetime*mean_Estimated_Glomerular_Filtration_Rate\n", + "5196 mean_Low_Density_Lipoprotein_Cholesterol>=Urea_Nitrogen+1/2*mean_Microalbumin_Creatinine_Ratio\n", + "5197 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "5198 mean_Low_Density_Lipoprotein_Cholesterol>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*MCH__Entitic_mass__by_Automated_count\n", + "5199 mean_Low_Density_Lipoprotein_Cholesterol>=log(mean_Estimated_Glomerular_Filtration_Rate)/log(10)+Glucose\n", + "5200 mean_Low_Density_Lipoprotein_Cholesterol>=2*mean_Microalbumin_Creatinine_Ratio/mean_Creatinine\n", + "5201 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^2/mean_Body_Height\n", + "5202 mean_Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "5203 mean_Microalbumin_Creatinine_Ratio<=(age-1)*Creatinine\n", + "5204 mean_Microalbumin_Creatinine_Ratio<=log(10)*medications_lifetime_dispenses/log(mean_Heart_rate)\n", + "5205 mean_Microalbumin_Creatinine_Ratio<=10^medications_active*mean_Carbon_Dioxide\n", + "5206 mean_Microalbumin_Creatinine_Ratio<=active_condition_length^(Creatinine^2)\n", + "5207 mean_Microalbumin_Creatinine_Ratio<=(High_Density_Lipoprotein_Cholesterol^2)^DALY\n", + "5208 mean_Microalbumin_Creatinine_Ratio<=Chloride*log(Microalbumin_Creatinine_Ratio)/log(10)\n", + "5209 mean_Microalbumin_Creatinine_Ratio<=Urea_Nitrogen^(log(mean_Sodium)/log(10))\n", + "5210 mean_Microalbumin_Creatinine_Ratio<=(Microalbumin_Creatinine_Ratio-1)*active_care_plans\n", + "5211 mean_Microalbumin_Creatinine_Ratio<=Creatinine*e^mean_Potassium\n", + "5212 mean_Microalbumin_Creatinine_Ratio<=medications_lifetime_length^2/healthcare_coverage\n", + "5213 mean_Microalbumin_Creatinine_Ratio<=(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Microalbumin_Creatinine_Ratio\n", + "5214 mean_Microalbumin_Creatinine_Ratio<=mean_Urea_Nitrogen^2+medications_active\n", + "5215 mean_Microalbumin_Creatinine_Ratio<=(Systolic_Blood_Pressure-1)/imaging_studies_lifetime\n", + "5216 mean_Microalbumin_Creatinine_Ratio<=10^medications_active*Microalbumin_Creatinine_Ratio\n", + "5217 mean_Microalbumin_Creatinine_Ratio<=e^active_conditions/Respiratory_rate\n", + "5218 mean_Microalbumin_Creatinine_Ratio<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Microalbumin_Creatinine_Ratio\n", + "5219 mean_Microalbumin_Creatinine_Ratio>=longitude\n", + "5220 mean_Microalbumin_Creatinine_Ratio>=minimum(immunizations_lifetime_cost,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5221 mean_Microalbumin_Creatinine_Ratio>=(1/2*active_care_plans)^device_lifetime_length\n", + "5222 mean_Microalbumin_Creatinine_Ratio>=2*active_conditions-immunizations_lifetime_cost\n", + "5223 mean_Microalbumin_Creatinine_Ratio>=minimum(procedures_lifetime,Microalbumin_Creatinine_Ratio)\n", + "5224 mean_Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "5225 mean_Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "5226 mean_Microalbumin_Creatinine_Ratio>=-Systolic_Blood_Pressure+2*mean_High_Density_Lipoprotein_Cholesterol\n", + "5227 mean_Microalbumin_Creatinine_Ratio>=1/2*active_care_plans\n", + "5228 mean_Microalbumin_Creatinine_Ratio>=-sqrt(mean_Low_Density_Lipoprotein_Cholesterol)+DALY\n", + "5229 mean_Microalbumin_Creatinine_Ratio>=minimum(Respiratory_rate,Microalbumin_Creatinine_Ratio)\n", + "5230 mean_Microalbumin_Creatinine_Ratio>=(imaging_studies_lifetime+1)^procedures_lifetime\n", + "5231 mean_Microalbumin_Creatinine_Ratio>=-mean_Estimated_Glomerular_Filtration_Rate+1/2*mean_Systolic_Blood_Pressure\n", + "5232 mean_Microalbumin_Creatinine_Ratio>=lifetime_care_plan_length-mean_Systolic_Blood_Pressure\n", + "5233 mean_Microalbumin_Creatinine_Ratio>=sqrt(Body_Weight)/DALY\n", + "5234 mean_Microalbumin_Creatinine_Ratio>=10^device_lifetime_length*QOLS\n", + "5235 mean_Microalbumin_Creatinine_Ratio>=-active_conditions+e^Creatinine\n", + "5236 mean_Microalbumin_Creatinine_Ratio>=minimum(Microalbumin_Creatinine_Ratio,e^mean_Creatinine)\n", + "5237 mean_Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "5238 mean_Microalbumin_Creatinine_Ratio>=mean_Sodium*sqrt(num_allergies)\n", + "5239 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "5240 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_coverage+lifetime_conditions\n", + "5241 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(lifetime_care_plans,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5242 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5243 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,Creatinine)\n", + "5244 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*lifetime_condition_length/Estimated_Glomerular_Filtration_Rate\n", + "5245 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Carbon_Dioxide-lifetime_conditions\n", + "5246 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*encounters_lifetime_perc_covered*mean_Estimated_Glomerular_Filtration_Rate\n", + "5247 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^lifetime_condition_length*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5248 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "5249 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "5250 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^Hemoglobin__Mass_volume__in_Blood/medications_lifetime_cost\n", + "5251 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "5252 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Specific_gravity_of_Urine_by_Test_strip)\n", + "5253 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Total_Cholesterol/Microalbumin_Creatinine_Ratio\n", + "5254 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5255 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Estimated_Glomerular_Filtration_Rate)/procedures_lifetime\n", + "5256 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/imaging_studies_lifetime+procedures_lifetime\n", + "5257 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Microalbumin_Creatinine_Ratio)\n", + "5258 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(procedures_lifetime,1/imaging_studies_lifetime)\n", + "5259 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*Creatinine+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5260 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(active_care_plan_length)/active_care_plans\n", + "5261 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(latitude+1)/lifetime_conditions\n", + "5262 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/2*active_conditions)\n", + "5263 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(procedures_lifetime_cost,log(active_condition_length))\n", + "5264 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "5265 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*MCH__Entitic_mass__by_Automated_count*QOLS\n", + "5266 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(Estimated_Glomerular_Filtration_Rate)-num_allergies\n", + "5267 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Estimated_Glomerular_Filtration_Rate,floor(Globulin__Mass_volume__in_Serum_by_calculation))\n", + "5268 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count+procedures_lifetime\n", + "5269 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count+immunizations_lifetime_cost\n", + "5270 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "5271 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime\n", + "5272 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "5273 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5274 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/4*Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "5275 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "5276 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+num_allergies\n", + "5277 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Creatinine+num_allergies\n", + "5278 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-encounters_lifetime_payer_coverage\n", + "5279 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Microalbumin_Creatinine_Ratio+log(Body_Mass_Index)\n", + "5280 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_condition_length+lifetime_care_plans\n", + "5281 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Calcium+log(encounters_lifetime_payer_coverage)\n", + "5282 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_coverage+lifetime_conditions\n", + "5283 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(device_lifetime_length)/mean_Potassium\n", + "5284 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Creatinine-active_care_plans\n", + "5285 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "5286 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "5287 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(immunizations_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5288 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_care_plans\n", + "5289 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(device_lifetime_length,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5290 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime\n", + "5291 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+ceil(Urea_Nitrogen)\n", + "5292 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Body_Mass_Index-age+1\n", + "5293 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_active\n", + "5294 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Creatinine\n", + "5295 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5296 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Respiratory_rate-mean_Respiratory_rate-1\n", + "5297 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Estimated_Glomerular_Filtration_Rate,floor(num_allergies))\n", + "5298 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported*immunizations_lifetime\n", + "5299 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(MCV__Entitic_volume__by_Automated_count)/log(10)-procedures_lifetime_cost\n", + "5300 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Urea_Nitrogen)-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5301 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=device_lifetime_length*log(medications_active)\n", + "5302 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(encounters_lifetime_perc_covered)\n", + "5303 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(High_Density_Lipoprotein_Cholesterol)/log(10)-DALY\n", + "5304 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(DALY)-Potassium\n", + "5305 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=ceil(Creatinine)-lifetime_care_plans\n", + "5306 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-lifetime_care_plans+log(Microalbumin_Creatinine_Ratio)\n", + "5307 mean_Potassium<=healthcare_expenses\n", + "5308 mean_Potassium<=log(active_conditions)/log(10)+Potassium\n", + "5309 mean_Potassium<=minimum(Estimated_Glomerular_Filtration_Rate,1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5310 mean_Potassium<=sqrt(Body_Mass_Index)\n", + "5311 mean_Potassium<=log(mean_Calcium)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5312 mean_Potassium<=2*encounters_count/Albumin__Mass_volume__in_Serum,Plasma\n", + "5313 mean_Potassium<=-Albumin__Mass_volume__in_Serum,Plasma+Urea_Nitrogen+1\n", + "5314 mean_Potassium<=maximum(Potassium,Microalbumin_Creatinine_Ratio)\n", + "5315 mean_Potassium<=sqrt(mean_Estimated_Glomerular_Filtration_Rate)+medications_lifetime_perc_covered\n", + "5316 mean_Potassium<=Potassium+medications_active\n", + "5317 mean_Potassium<=Potassium/QOLS\n", + "5318 mean_Potassium<=Potassium+healthcare_coverage\n", + "5319 mean_Potassium<=Potassium+2*encounters_lifetime_perc_covered\n", + "5320 mean_Potassium<=immunizations_lifetime+log(Systolic_Blood_Pressure)\n", + "5321 mean_Potassium<=Respiratory_rate-active_care_plans\n", + "5322 mean_Potassium<=Potassium+procedures_lifetime\n", + "5323 mean_Potassium<=maximum(Respiratory_rate,Potassium)\n", + "5324 mean_Potassium<=maximum(medications_lifetime,Potassium)\n", + "5325 mean_Potassium<=maximum(active_conditions,Potassium)\n", + "5326 mean_Potassium<=Potassium^active_care_plans\n", + "5327 mean_Potassium<=Potassium+medications_lifetime\n", + "5328 mean_Potassium<=(log(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "5329 mean_Potassium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime_cost\n", + "5330 mean_Potassium<=-Creatinine+mean_Calcium\n", + "5331 mean_Potassium<=sqrt(Respiratory_rate)/encounters_lifetime_perc_covered\n", + "5332 mean_Potassium<=QALY^2/Low_Density_Lipoprotein_Cholesterol\n", + "5333 mean_Potassium<=-Creatinine+Urea_Nitrogen\n", + "5334 mean_Potassium<=maximum(Potassium,active_conditions-1)\n", + "5335 mean_Potassium<=Urea_Nitrogen-medications_active+1\n", + "5336 mean_Potassium<=2*Potassium/immunizations_lifetime\n", + "5337 mean_Potassium<=Carbon_Dioxide^2/Body_Weight\n", + "5338 mean_Potassium>=longitude\n", + "5339 mean_Potassium>=sqrt(device_lifetime_length)+1\n", + "5340 mean_Potassium>=lifetime_conditions^2/mean_Body_Weight\n", + "5341 mean_Potassium>=minimum(Potassium,log(active_care_plan_length))\n", + "5342 mean_Potassium>=minimum(medications_active,Potassium)\n", + "5343 mean_Potassium>=immunizations_lifetime*log(Total_Cholesterol)/log(10)\n", + "5344 mean_Potassium>=mean_Creatinine-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "5345 mean_Potassium>=-healthcare_expenses\n", + "5346 mean_Potassium>=-Creatinine+ceil(Potassium)\n", + "5347 mean_Potassium>=minimum(Potassium,sqrt(Respiratory_rate))\n", + "5348 mean_Potassium>=-DALY+Potassium\n", + "5349 mean_Potassium>=Potassium-immunizations_lifetime\n", + "5350 mean_Potassium>=minimum(num_allergies,Potassium)\n", + "5351 mean_Potassium>=minimum(mean_Creatinine,log(healthcare_coverage)/log(10))\n", + "5352 mean_Potassium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(Diastolic_Blood_Pressure)\n", + "5353 mean_Potassium>=healthcare_expenses^longitude\n", + "5354 mean_Potassium>=minimum(Triglycerides,sqrt(Urea_Nitrogen))\n", + "5355 mean_Potassium>=sqrt(healthcare_coverage)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5356 mean_Potassium>=Potassium-medications_lifetime\n", + "5357 mean_Potassium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Potassium\n", + "5358 mean_Potassium>=floor(Albumin__Mass_volume__in_Serum,Plasma)-1\n", + "5359 mean_Potassium>=-Diastolic_Blood_Pressure+ceil(active_condition_length)\n", + "5360 mean_Potassium>=(Potassium+1)^medications_lifetime_perc_covered\n", + "5361 mean_Potassium>=1/2*High_Density_Lipoprotein_Cholesterol/mean_Calcium\n", + "5362 mean_Potassium>=(device_lifetime_length-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5363 mean_Potassium>=(mean_Calcium-1)^encounters_lifetime_perc_covered\n", + "5364 mean_Potassium>=(10^healthcare_expenses)^longitude\n", + "5365 mean_Potassium>=sqrt(Microalbumin_Creatinine_Ratio)/active_care_plans\n", + "5366 mean_Potassium>=ceil(DALY)/active_conditions\n", + "5367 mean_Potassium>=Potassium/active_care_plans\n", + "5368 mean_Potassium>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Creatinine^2)\n", + "5369 mean_Potassium>=Potassium-healthcare_coverage\n", + "5370 mean_Potassium>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5371 mean_QALY<=QALY\n", + "5372 mean_QALY>=QALY\n", + "5373 mean_QOLS<=QOLS\n", + "5374 mean_QOLS>=QOLS\n", + "5375 mean_Respiratory_rate<=healthcare_expenses\n", + "5376 mean_Respiratory_rate<=Respiratory_rate+medications_active\n", + "5377 mean_Respiratory_rate<=Respiratory_rate+active_care_plans\n", + "5378 mean_Respiratory_rate<=maximum(active_care_plan_length,Respiratory_rate)\n", + "5379 mean_Respiratory_rate<=Estimated_Glomerular_Filtration_Rate-medications_lifetime_perc_covered-1\n", + "5380 mean_Respiratory_rate<=maximum(Respiratory_rate,10^medications_active)\n", + "5381 mean_Respiratory_rate<=maximum(QALY,Respiratory_rate)\n", + "5382 mean_Respiratory_rate<=maximum(Respiratory_rate,Urea_Nitrogen)\n", + "5383 mean_Respiratory_rate<=maximum(Respiratory_rate,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5384 mean_Respiratory_rate<=maximum(Respiratory_rate,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5385 mean_Respiratory_rate<=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(MCH__Entitic_mass__by_Automated_count)\n", + "5386 mean_Respiratory_rate<=Low_Density_Lipoprotein_Cholesterol/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5387 mean_Respiratory_rate<=Respiratory_rate+encounters_lifetime_payer_coverage\n", + "5388 mean_Respiratory_rate<=maximum(Respiratory_rate,mean_Urea_Nitrogen)\n", + "5389 mean_Respiratory_rate<=Respiratory_rate+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5390 mean_Respiratory_rate<=Respiratory_rate+medications_lifetime\n", + "5391 mean_Respiratory_rate<=Carbon_Dioxide-mean_Creatinine-1\n", + "5392 mean_Respiratory_rate<=ceil(Potassium^2)\n", + "5393 mean_Respiratory_rate<=Respiratory_rate+e^QOLS\n", + "5394 mean_Respiratory_rate<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered\n", + "5395 mean_Respiratory_rate<=Respiratory_rate+healthcare_coverage\n", + "5396 mean_Respiratory_rate<=maximum(Respiratory_rate,log(healthcare_expenses))\n", + "5397 mean_Respiratory_rate<=maximum(Respiratory_rate,10^active_care_plans)\n", + "5398 mean_Respiratory_rate<=maximum(Respiratory_rate,e^lifetime_care_plans)\n", + "5399 mean_Respiratory_rate<=Body_Height-Sodium+1\n", + "5400 mean_Respiratory_rate<=sqrt(lifetime_care_plans)+Respiratory_rate\n", + "5401 mean_Respiratory_rate<=maximum(Respiratory_rate,1/2*active_care_plan_length)\n", + "5402 mean_Respiratory_rate<=log(device_lifetime_length)^Body_Height\n", + "5403 mean_Respiratory_rate<=(Diastolic_Blood_Pressure+1)/mean_Creatinine\n", + "5404 mean_Respiratory_rate<=maximum(Respiratory_rate,sqrt(Total_Cholesterol))\n", + "5405 mean_Respiratory_rate>=longitude\n", + "5406 mean_Respiratory_rate>=minimum(Respiratory_rate,-Triglycerides)\n", + "5407 mean_Respiratory_rate>=minimum(Respiratory_rate,Creatinine)\n", + "5408 mean_Respiratory_rate>=2*Total_Cholesterol/MCHC__Mass_volume__by_Automated_count\n", + "5409 mean_Respiratory_rate>=ceil(sqrt(Systolic_Blood_Pressure))\n", + "5410 mean_Respiratory_rate>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5411 mean_Respiratory_rate>=Respiratory_rate-active_care_plans\n", + "5412 mean_Respiratory_rate>=log(lifetime_conditions)*mean_Creatinine\n", + "5413 mean_Respiratory_rate>=-Triglycerides+mean_Triglycerides\n", + "5414 mean_Respiratory_rate>=mean_Total_Cholesterol/Estimated_Glomerular_Filtration_Rate\n", + "5415 mean_Respiratory_rate>=-healthcare_expenses\n", + "5416 mean_Respiratory_rate>=Respiratory_rate-procedures_lifetime_cost\n", + "5417 mean_Respiratory_rate>=healthcare_expenses^longitude\n", + "5418 mean_Respiratory_rate>=minimum(procedures_lifetime,Respiratory_rate)\n", + "5419 mean_Respiratory_rate>=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "5420 mean_Respiratory_rate>=Respiratory_rate-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "5421 mean_Respiratory_rate>=(Erythrocytes____volume__in_Blood_by_Automated_count^2)^medications_lifetime_perc_covered\n", + "5422 mean_Respiratory_rate>=-DALY+Respiratory_rate\n", + "5423 mean_Respiratory_rate>=ceil(active_care_plan_length)/Microalbumin_Creatinine_Ratio\n", + "5424 mean_Respiratory_rate>=minimum(Respiratory_rate,2*lifetime_care_plans)\n", + "5425 mean_Respiratory_rate>=minimum(device_lifetime_length,Respiratory_rate)\n", + "5426 mean_Respiratory_rate>=Respiratory_rate-encounters_lifetime_payer_coverage\n", + "5427 mean_Respiratory_rate>=Respiratory_rate^encounters_lifetime_perc_covered\n", + "5428 mean_Respiratory_rate>=encounters_count-lifetime_condition_length\n", + "5429 mean_Respiratory_rate>=minimum(Respiratory_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5430 mean_Respiratory_rate>=minimum(Respiratory_rate,sqrt(Triglycerides))\n", + "5431 mean_Respiratory_rate>=num_allergies^2-active_care_plans\n", + "5432 mean_Respiratory_rate>=Respiratory_rate-medications_lifetime\n", + "5433 mean_Respiratory_rate>=Potassium^2-Microalbumin_Creatinine_Ratio\n", + "5434 mean_Respiratory_rate>=ceil(DALY)-immunizations_lifetime_cost\n", + "5435 mean_Respiratory_rate>=2*num_allergies/QOLS\n", + "5436 mean_Respiratory_rate>=Respiratory_rate-healthcare_coverage\n", + "5437 mean_Respiratory_rate>=Respiratory_rate^imaging_studies_lifetime\n", + "5438 mean_Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "5439 mean_Respiratory_rate>=minimum(Respiratory_rate,sqrt(lifetime_care_plan_length))\n", + "5440 mean_Respiratory_rate>=lifetime_conditions^2/mean_Body_Mass_Index\n", + "5441 mean_Respiratory_rate>=active_conditions-lifetime_care_plans+1\n", + "5442 mean_Respiratory_rate>=Respiratory_rate-medications_active-1\n", + "5443 mean_Sodium<=healthcare_expenses\n", + "5444 mean_Sodium<=maximum(Sodium,immunizations_lifetime_cost+1)\n", + "5445 mean_Sodium<=DALY+2*Glucose\n", + "5446 mean_Sodium<=maximum(lifetime_condition_length,Sodium)\n", + "5447 mean_Sodium<=Bilirubin_total__Mass_volume__in_Serum,Plasma+Sodium\n", + "5448 mean_Sodium<=Sodium+immunizations_lifetime_cost\n", + "5449 mean_Sodium<=Sodium+healthcare_coverage\n", + "5450 mean_Sodium<=Sodium+medications_lifetime\n", + "5451 mean_Sodium<=maximum(Total_Cholesterol,abs(Sodium))\n", + "5452 mean_Sodium<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Chloride\n", + "5453 mean_Sodium<=lifetime_condition_length*log(age)\n", + "5454 mean_Sodium<=Sodium^active_care_plans\n", + "5455 mean_Sodium<=Heart_rate+mean_Diastolic_Blood_Pressure\n", + "5456 mean_Sodium<=10^QOLS+Sodium\n", + "5457 mean_Sodium<=Sodium+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5458 mean_Sodium<=Body_Weight+Heart_rate+1\n", + "5459 mean_Sodium<=DALY+floor(Sodium)\n", + "5460 mean_Sodium<=maximum(Sodium,10^lifetime_care_plans)\n", + "5461 mean_Sodium<=10^lifetime_care_plans+mean_Estimated_Glomerular_Filtration_Rate\n", + "5462 mean_Sodium<=maximum(Sodium,2*lifetime_care_plan_length)\n", + "5463 mean_Sodium<=floor(Sodium)+lifetime_care_plans\n", + "5464 mean_Sodium<=maximum(Sodium,encounters_count^2)\n", + "5465 mean_Sodium<=2*Creatinine*Sodium\n", + "5466 mean_Sodium<=Creatinine+floor(Sodium)\n", + "5467 mean_Sodium>=latitude\n", + "5468 mean_Sodium>=Sodium-mean_Potassium+1\n", + "5469 mean_Sodium>=Sodium/active_care_plans\n", + "5470 mean_Sodium>=Sodium-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5471 mean_Sodium>=Glucose+active_conditions\n", + "5472 mean_Sodium>=Carbon_Dioxide+ceil(Chloride)\n", + "5473 mean_Sodium>=-healthcare_expenses\n", + "5474 mean_Sodium>=Systolic_Blood_Pressure+active_care_plans\n", + "5475 mean_Sodium>=2*mean_Diastolic_Blood_Pressure-mean_Estimated_Glomerular_Filtration_Rate\n", + "5476 mean_Sodium>=Sodium-healthcare_coverage\n", + "5477 mean_Sodium>=healthcare_expenses^longitude\n", + "5478 mean_Sodium>=Sodium-procedures_lifetime_cost\n", + "5479 mean_Sodium>=minimum(Sodium,e^active_care_plans)\n", + "5480 mean_Sodium>=-active_care_plans+floor(Sodium)\n", + "5481 mean_Sodium>=Sodium-mean_Creatinine-1\n", + "5482 mean_Sodium>=Sodium-medications_lifetime\n", + "5483 mean_Sodium>=Sodium^QOLS\n", + "5484 mean_Sodium>=(10^imaging_studies_lifetime)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5485 mean_Sodium>=(1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^num_allergies\n", + "5486 mean_Sodium>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Urea_Nitrogen-1\n", + "5487 mean_Sodium>=High_Density_Lipoprotein_Cholesterol+ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5488 mean_Sodium>=sqrt(encounters_lifetime_payer_coverage)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5489 mean_Sodium>=minimum(Sodium,mean_Body_Mass_Index)\n", + "5490 mean_Sodium>=sqrt(Body_Mass_Index)+mean_Systolic_Blood_Pressure\n", + "5491 mean_Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "5492 mean_Sodium>=(active_care_plan_length-1)*device_lifetime_length\n", + "5493 mean_Sodium>=floor(Estimated_Glomerular_Filtration_Rate)*mean_Creatinine\n", + "5494 mean_Sodium>=minimum(Sodium,e^mean_Potassium)\n", + "5495 mean_Sodium>=2*mean_Low_Density_Lipoprotein_Cholesterol/active_care_plans\n", + "5496 mean_Systolic_Blood_Pressure<=healthcare_expenses\n", + "5497 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+lifetime_care_plan_length\n", + "5498 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure*ceil(Creatinine)\n", + "5499 mean_Systolic_Blood_Pressure<=Heart_rate+1/2*Triglycerides\n", + "5500 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^lifetime_conditions)\n", + "5501 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+active_condition_length\n", + "5502 mean_Systolic_Blood_Pressure<=Sodium-active_conditions\n", + "5503 mean_Systolic_Blood_Pressure<=sqrt(Estimated_Glomerular_Filtration_Rate)*QALY\n", + "5504 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+encounters_lifetime_payer_coverage\n", + "5505 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "5506 mean_Systolic_Blood_Pressure<=1/2*Low_Density_Lipoprotein_Cholesterol+MCV__Entitic_volume__by_Automated_count\n", + "5507 mean_Systolic_Blood_Pressure<=(Systolic_Blood_Pressure^2)^Creatinine\n", + "5508 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+healthcare_coverage\n", + "5509 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+medications_lifetime\n", + "5510 mean_Systolic_Blood_Pressure<=maximum(medications_lifetime_cost,Systolic_Blood_Pressure)\n", + "5511 mean_Systolic_Blood_Pressure<=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+ceil(Total_Cholesterol)\n", + "5512 mean_Systolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,Systolic_Blood_Pressure)\n", + "5513 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,1/num_allergies)\n", + "5514 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,e^medications_lifetime)\n", + "5515 mean_Systolic_Blood_Pressure<=2*Systolic_Blood_Pressure-mean_Heart_rate\n", + "5516 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5517 mean_Systolic_Blood_Pressure<=Leukocytes____volume__in_Blood_by_Automated_count+Systolic_Blood_Pressure+1\n", + "5518 mean_Systolic_Blood_Pressure<=10^DALY+Systolic_Blood_Pressure\n", + "5519 mean_Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate+Triglycerides-1\n", + "5520 mean_Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate^2-mean_Low_Density_Lipoprotein_Cholesterol\n", + "5521 mean_Systolic_Blood_Pressure<=Sodium-lifetime_conditions+1\n", + "5522 mean_Systolic_Blood_Pressure<=Chloride+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "5523 mean_Systolic_Blood_Pressure<=latitude*log(Carbon_Dioxide)\n", + "5524 mean_Systolic_Blood_Pressure<=(encounters_lifetime_perc_covered+1)*Triglycerides\n", + "5525 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^medications_lifetime)\n", + "5526 mean_Systolic_Blood_Pressure<=log(Diastolic_Blood_Pressure)*mean_Diastolic_Blood_Pressure/log(10)\n", + "5527 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure*log(Respiratory_rate)/log(10)\n", + "5528 mean_Systolic_Blood_Pressure<=Hemoglobin__Mass_volume__in_Blood+Triglycerides+1\n", + "5529 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,lifetime_care_plan_length^2)\n", + "5530 mean_Systolic_Blood_Pressure<=10^DALY*Systolic_Blood_Pressure\n", + "5531 mean_Systolic_Blood_Pressure<=Triglycerides+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5532 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,2*Heart_rate)\n", + "5533 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5534 mean_Systolic_Blood_Pressure<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_High_Density_Lipoprotein_Cholesterol\n", + "5535 mean_Systolic_Blood_Pressure<=Hemoglobin__Mass_volume__in_Blood+Triglycerides+1\n", + "5536 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^Microalbumin_Creatinine_Ratio)\n", + "5537 mean_Systolic_Blood_Pressure>=latitude\n", + "5538 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-active_care_plan_length\n", + "5539 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-active_condition_length\n", + "5540 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "5541 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "5542 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "5543 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Creatinine)\n", + "5544 mean_Systolic_Blood_Pressure>=minimum(mean_Triglycerides,sqrt(medications_lifetime_length))\n", + "5545 mean_Systolic_Blood_Pressure>=mean_Glucose+medications_lifetime_perc_covered\n", + "5546 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5547 mean_Systolic_Blood_Pressure>=-healthcare_expenses\n", + "5548 mean_Systolic_Blood_Pressure>=Sodium*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "5549 mean_Systolic_Blood_Pressure>=Chloride-encounters_lifetime_perc_covered-1\n", + "5550 mean_Systolic_Blood_Pressure>=1/2*lifetime_care_plans*procedures_lifetime\n", + "5551 mean_Systolic_Blood_Pressure>=e^Erythrocytes____volume__in_Blood_by_Automated_count*medications_lifetime_perc_covered\n", + "5552 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,10^device_lifetime_length)\n", + "5553 mean_Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "5554 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,1/2*Triglycerides)\n", + "5555 mean_Systolic_Blood_Pressure>=ceil(Low_Density_Lipoprotein_Cholesterol)-mean_Carbon_Dioxide\n", + "5556 mean_Systolic_Blood_Pressure>=lifetime_care_plan_length-mean_Microalbumin_Creatinine_Ratio\n", + "5557 mean_Systolic_Blood_Pressure>=Body_Weight+1/2*Respiratory_rate\n", + "5558 mean_Systolic_Blood_Pressure>=-Microalbumin_Creatinine_Ratio+Systolic_Blood_Pressure+1\n", + "5559 mean_Systolic_Blood_Pressure>=(Urea_Nitrogen+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5560 mean_Systolic_Blood_Pressure>=(num_allergies+1)*MCH__Entitic_mass__by_Automated_count\n", + "5561 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,1/medications_active)\n", + "5562 mean_Systolic_Blood_Pressure>=-Estimated_Glomerular_Filtration_Rate+e^Potassium\n", + "5563 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,sqrt(procedures_lifetime_cost))\n", + "5564 mean_Systolic_Blood_Pressure>=2*Heart_rate-mean_Heart_rate\n", + "5565 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-medications_lifetime_cost\n", + "5566 mean_Systolic_Blood_Pressure>=sqrt(encounters_lifetime_payer_coverage)-mean_Estimated_Glomerular_Filtration_Rate\n", + "5567 mean_Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "5568 mean_Systolic_Blood_Pressure>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*Estimated_Glomerular_Filtration_Rate\n", + "5569 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-healthcare_coverage\n", + "5570 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-mean_Estimated_Glomerular_Filtration_Rate\n", + "5571 mean_Total_Cholesterol<=healthcare_expenses\n", + "5572 mean_Total_Cholesterol<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Total_Cholesterol\n", + "5573 mean_Total_Cholesterol<=Total_Cholesterol+active_care_plan_length\n", + "5574 mean_Total_Cholesterol<=Body_Height*log(mean_Carbon_Dioxide)/log(10)\n", + "5575 mean_Total_Cholesterol<=maximum(Total_Cholesterol,10^lifetime_care_plans)\n", + "5576 mean_Total_Cholesterol<=Respiratory_rate^2+MCH__Entitic_mass__by_Automated_count\n", + "5577 mean_Total_Cholesterol<=Total_Cholesterol/QOLS\n", + "5578 mean_Total_Cholesterol<=Total_Cholesterol/encounters_lifetime_perc_covered\n", + "5579 mean_Total_Cholesterol<=maximum(medications_lifetime_cost,Total_Cholesterol)\n", + "5580 mean_Total_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+ceil(mean_Systolic_Blood_Pressure)\n", + "5581 mean_Total_Cholesterol<=maximum(Total_Cholesterol,e^medications_lifetime)\n", + "5582 mean_Total_Cholesterol<=Urea_Nitrogen*mean_Estimated_Glomerular_Filtration_Rate\n", + "5583 mean_Total_Cholesterol<=maximum(Total_Cholesterol,e^active_conditions)\n", + "5584 mean_Total_Cholesterol<=(Potassium+1)*lifetime_condition_length\n", + "5585 mean_Total_Cholesterol<=(Diastolic_Blood_Pressure-1)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5586 mean_Total_Cholesterol<=ceil(Chloride)*lifetime_care_plans\n", + "5587 mean_Total_Cholesterol<=Total_Cholesterol+encounters_count+1\n", + "5588 mean_Total_Cholesterol<=maximum(Total_Cholesterol,10^Creatinine)\n", + "5589 mean_Total_Cholesterol<=-MCH__Entitic_mass__by_Automated_count+2*mean_Systolic_Blood_Pressure\n", + "5590 mean_Total_Cholesterol<=maximum(Total_Cholesterol,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5591 mean_Total_Cholesterol<=log(Estimated_Glomerular_Filtration_Rate)*mean_Diastolic_Blood_Pressure\n", + "5592 mean_Total_Cholesterol<=(mean_Potassium-1)*Heart_rate\n", + "5593 mean_Total_Cholesterol<=2*encounters_lifetime_payer_coverage/device_lifetime_length\n", + "5594 mean_Total_Cholesterol<=maximum(Total_Cholesterol,1/num_allergies)\n", + "5595 mean_Total_Cholesterol<=sqrt(medications_lifetime_dispenses)+Total_Cholesterol\n", + "5596 mean_Total_Cholesterol<=2*Potassium*QALY\n", + "5597 mean_Total_Cholesterol<=2*Diastolic_Blood_Pressure+mean_Heart_rate\n", + "5598 mean_Total_Cholesterol>=latitude\n", + "5599 mean_Total_Cholesterol>=minimum(Body_Height,Total_Cholesterol)\n", + "5600 mean_Total_Cholesterol>=Total_Cholesterol^QOLS\n", + "5601 mean_Total_Cholesterol>=Total_Cholesterol-active_care_plan_length\n", + "5602 mean_Total_Cholesterol>=2*medications_lifetime/mean_Respiratory_rate\n", + "5603 mean_Total_Cholesterol>=Estimated_Glomerular_Filtration_Rate+2*age\n", + "5604 mean_Total_Cholesterol>=-healthcare_expenses\n", + "5605 mean_Total_Cholesterol>=1/2*longitude+mean_Microalbumin_Creatinine_Ratio\n", + "5606 mean_Total_Cholesterol>=minimum(Triglycerides,Total_Cholesterol)\n", + "5607 mean_Total_Cholesterol>=minimum(Total_Cholesterol,Urea_Nitrogen)\n", + "5608 mean_Total_Cholesterol>=minimum(Total_Cholesterol,Estimated_Glomerular_Filtration_Rate)\n", + "5609 mean_Total_Cholesterol>=Total_Cholesterol^encounters_lifetime_perc_covered\n", + "5610 mean_Total_Cholesterol>=Total_Cholesterol^imaging_studies_lifetime\n", + "5611 mean_Total_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+2*Glucose\n", + "5612 mean_Total_Cholesterol>=healthcare_expenses^longitude\n", + "5613 mean_Total_Cholesterol>=-Microalbumin_Creatinine_Ratio+Total_Cholesterol+1\n", + "5614 mean_Total_Cholesterol>=Hemoglobin__Mass_volume__in_Blood^2*medications_lifetime_perc_covered\n", + "5615 mean_Total_Cholesterol>=active_care_plans*sqrt(medications_lifetime)\n", + "5616 mean_Total_Cholesterol>=(2*lifetime_care_plan_length)^imaging_studies_lifetime\n", + "5617 mean_Total_Cholesterol>=active_conditions^2-Total_Cholesterol\n", + "5618 mean_Total_Cholesterol>=minimum(Total_Cholesterol,procedures_lifetime^2)\n", + "5619 mean_Total_Cholesterol>=2*MCV__Entitic_volume__by_Automated_count-procedures_lifetime_cost\n", + "5620 mean_Total_Cholesterol>=minimum(Total_Cholesterol,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5621 mean_Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "5622 mean_Total_Cholesterol>=Low_Density_Lipoprotein_Cholesterol+2*MCH__Entitic_mass__by_Automated_count\n", + "5623 mean_Total_Cholesterol>=2*Sodium-Systolic_Blood_Pressure\n", + "5624 mean_Total_Cholesterol>=(e^pH_of_Urine_by_Test_strip)^imaging_studies_lifetime\n", + "5625 mean_Total_Cholesterol>=Chloride*immunizations_lifetime\n", + "5626 mean_Triglycerides<=healthcare_expenses\n", + "5627 mean_Triglycerides<=mean_Estimated_Glomerular_Filtration_Rate^2-lifetime_care_plan_length\n", + "5628 mean_Triglycerides<=Triglycerides+active_care_plan_length\n", + "5629 mean_Triglycerides<=maximum(Triglycerides,Total_Cholesterol)\n", + "5630 mean_Triglycerides<=e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Sodium\n", + "5631 mean_Triglycerides<=Triglycerides/encounters_lifetime_perc_covered\n", + "5632 mean_Triglycerides<=Triglycerides+immunizations_lifetime_cost\n", + "5633 mean_Triglycerides<=maximum(medications_lifetime_cost,Triglycerides)\n", + "5634 mean_Triglycerides<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_condition_length\n", + "5635 mean_Triglycerides<=maximum(medications_lifetime_dispenses,Triglycerides)\n", + "5636 mean_Triglycerides<=Triglycerides/QOLS\n", + "5637 mean_Triglycerides<=2*mean_Heart_rate/QOLS\n", + "5638 mean_Triglycerides<=maximum(Triglycerides,10^lifetime_care_plans)\n", + "5639 mean_Triglycerides<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+Triglycerides+1\n", + "5640 mean_Triglycerides<=Triglycerides+e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5641 mean_Triglycerides<=Triglycerides+mean_Respiratory_rate\n", + "5642 mean_Triglycerides<=maximum(Triglycerides,10^Microalbumin_Creatinine_Ratio)\n", + "5643 mean_Triglycerides<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Body_Height\n", + "5644 mean_Triglycerides<=Sodium*log(mean_Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "5645 mean_Triglycerides<=maximum(Triglycerides,e^active_conditions)\n", + "5646 mean_Triglycerides<=1/2*healthcare_coverage/mean_Urea_Nitrogen\n", + "5647 mean_Triglycerides<=e^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+lifetime_condition_length\n", + "5648 mean_Triglycerides<=10^immunizations_lifetime*Body_Height\n", + "5649 mean_Triglycerides<=Body_Height+Estimated_Glomerular_Filtration_Rate-1\n", + "5650 mean_Triglycerides<=maximum(Triglycerides,Total_Cholesterol-1)\n", + "5651 mean_Triglycerides<=Triglycerides*log(mean_Respiratory_rate)/log(10)\n", + "5652 mean_Triglycerides>=latitude\n", + "5653 mean_Triglycerides>=minimum(Triglycerides,e^active_care_plans)\n", + "5654 mean_Triglycerides>=minimum(Systolic_Blood_Pressure,Triglycerides)\n", + "5655 mean_Triglycerides>=sqrt(medications_lifetime_length)-Estimated_Glomerular_Filtration_Rate\n", + "5656 mean_Triglycerides>=Triglycerides^QOLS\n", + "5657 mean_Triglycerides>=mean_Glucose^2/mean_Heart_rate\n", + "5658 mean_Triglycerides>=Chloride^2/Systolic_Blood_Pressure\n", + "5659 mean_Triglycerides>=Triglycerides^imaging_studies_lifetime\n", + "5660 mean_Triglycerides>=Triglycerides-lifetime_care_plan_length\n", + "5661 mean_Triglycerides>=minimum(lifetime_care_plan_length,Triglycerides)\n", + "5662 mean_Triglycerides>=-healthcare_expenses\n", + "5663 mean_Triglycerides>=QOLS*floor(Triglycerides)\n", + "5664 mean_Triglycerides>=Triglycerides-mean_Estimated_Glomerular_Filtration_Rate\n", + "5665 mean_Triglycerides>=minimum(Triglycerides,mean_Body_Mass_Index)\n", + "5666 mean_Triglycerides>=Triglycerides^encounters_lifetime_perc_covered\n", + "5667 mean_Triglycerides>=-Glomerular_filtration_rate_1_73_sq_M_predicted+encounters_count+1\n", + "5668 mean_Triglycerides>=minimum(Triglycerides,Creatinine)\n", + "5669 mean_Triglycerides>=healthcare_expenses^longitude\n", + "5670 mean_Triglycerides>=(2*Total_Cholesterol)^medications_lifetime_perc_covered\n", + "5671 mean_Triglycerides>=-Body_Weight+2*mean_Glucose\n", + "5672 mean_Triglycerides>=(Chloride+1)/Creatinine\n", + "5673 mean_Triglycerides>=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)/encounters_lifetime_perc_covered\n", + "5674 mean_Triglycerides>=Estimated_Glomerular_Filtration_Rate+1/2*High_Density_Lipoprotein_Cholesterol\n", + "5675 mean_Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "5676 mean_Triglycerides>=-Chloride+immunizations_lifetime_cost\n", + "5677 mean_Triglycerides>=(log(lifetime_condition_length)/log(10))^Potassium\n", + "5678 mean_Triglycerides>=log(active_care_plans)*mean_Microalbumin_Creatinine_Ratio/log(10)\n", + "5679 mean_Triglycerides>=minimum(Triglycerides,encounters_count-1)\n", + "5680 mean_Triglycerides>=-lifetime_condition_length+2*mean_Glucose\n", + "5681 mean_Urea_Nitrogen<=healthcare_expenses\n", + "5682 mean_Urea_Nitrogen<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_lifetime_length\n", + "5683 mean_Urea_Nitrogen<=Urea_Nitrogen+procedures_lifetime_cost\n", + "5684 mean_Urea_Nitrogen<=(log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^mean_Calcium\n", + "5685 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,2*active_conditions)\n", + "5686 mean_Urea_Nitrogen<=maximum(medications_lifetime,Urea_Nitrogen)\n", + "5687 mean_Urea_Nitrogen<=active_care_plan_length*log(Glucose)/log(10)\n", + "5688 mean_Urea_Nitrogen<=ceil(Estimated_Glomerular_Filtration_Rate)-encounters_lifetime_perc_covered\n", + "5689 mean_Urea_Nitrogen<=ceil(lifetime_care_plan_length)\n", + "5690 mean_Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/QOLS\n", + "5691 mean_Urea_Nitrogen<=Urea_Nitrogen/QOLS\n", + "5692 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Microalbumin_Creatinine_Ratio)\n", + "5693 mean_Urea_Nitrogen<=-active_care_plans+mean_Estimated_Glomerular_Filtration_Rate\n", + "5694 mean_Urea_Nitrogen<=log(QALY)/log(10)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5695 mean_Urea_Nitrogen<=e^active_conditions/Microalbumin_Creatinine_Ratio\n", + "5696 mean_Urea_Nitrogen<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+active_condition_length\n", + "5697 mean_Urea_Nitrogen<=e^Urea_Nitrogen/Body_Height\n", + "5698 mean_Urea_Nitrogen<=Urea_Nitrogen^active_care_plans\n", + "5699 mean_Urea_Nitrogen<=Urea_Nitrogen+healthcare_coverage\n", + "5700 mean_Urea_Nitrogen<=1/2*QALY+active_care_plans\n", + "5701 mean_Urea_Nitrogen<=maximum(encounters_count,Urea_Nitrogen)\n", + "5702 mean_Urea_Nitrogen<=2*Triglycerides/Respiratory_rate\n", + "5703 mean_Urea_Nitrogen<=maximum(Heart_rate,Urea_Nitrogen)\n", + "5704 mean_Urea_Nitrogen<=1/2*mean_Sodium/mean_Creatinine\n", + "5705 mean_Urea_Nitrogen<=-mean_Carbon_Dioxide+2*mean_Estimated_Glomerular_Filtration_Rate\n", + "5706 mean_Urea_Nitrogen<=2*DALY+Urea_Nitrogen\n", + "5707 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,e^active_care_plans)\n", + "5708 mean_Urea_Nitrogen<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Respiratory_rate\n", + "5709 mean_Urea_Nitrogen>=longitude\n", + "5710 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,Calcium)\n", + "5711 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5712 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,2*active_care_plans)\n", + "5713 mean_Urea_Nitrogen>=log(procedures_lifetime_cost)/log(10)+device_lifetime_length\n", + "5714 mean_Urea_Nitrogen>=sqrt(mean_Microalbumin_Creatinine_Ratio)-medications_lifetime_perc_covered\n", + "5715 mean_Urea_Nitrogen>=(mean_Sodium-1)/mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5716 mean_Urea_Nitrogen>=2*medications_active-1\n", + "5717 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/2*Carbon_Dioxide)\n", + "5718 mean_Urea_Nitrogen>=Urea_Nitrogen/active_care_plans\n", + "5719 mean_Urea_Nitrogen>=2*mean_Glucose/Estimated_Glomerular_Filtration_Rate\n", + "5720 mean_Urea_Nitrogen>=Urea_Nitrogen-immunizations_lifetime_cost\n", + "5721 mean_Urea_Nitrogen>=-healthcare_expenses\n", + "5722 mean_Urea_Nitrogen>=Urea_Nitrogen-medications_lifetime_cost\n", + "5723 mean_Urea_Nitrogen>=1/2*active_care_plans+mean_Potassium\n", + "5724 mean_Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "5725 mean_Urea_Nitrogen>=Urea_Nitrogen-healthcare_coverage\n", + "5726 mean_Urea_Nitrogen>=Urea_Nitrogen-active_conditions+1\n", + "5727 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,num_allergies^2)\n", + "5728 mean_Urea_Nitrogen>=healthcare_expenses^longitude\n", + "5729 mean_Urea_Nitrogen>=-lifetime_condition_length+mean_Estimated_Glomerular_Filtration_Rate+1\n", + "5730 mean_Urea_Nitrogen>=lifetime_conditions^2/mean_Body_Mass_Index\n", + "5731 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,-Triglycerides)\n", + "5732 mean_Urea_Nitrogen>=(Microalbumin_Creatinine_Ratio+1)/mean_Estimated_Glomerular_Filtration_Rate\n", + "5733 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,sqrt(mean_Low_Density_Lipoprotein_Cholesterol))\n", + "5734 mean_Urea_Nitrogen>=Chloride/Respiratory_rate\n", + "5735 mean_Urea_Nitrogen>=2*DALY+longitude\n", + "5736 mean_Urea_Nitrogen>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+log(device_lifetime_length)\n", + "5737 mean_Urea_Nitrogen>=sqrt(mean_Microalbumin_Creatinine_Ratio)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5738 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/encounters_lifetime_perc_covered)\n", + "5739 mean_Urea_Nitrogen>=Estimated_Glomerular_Filtration_Rate-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "5740 mean_Urea_Nitrogen>=Creatinine+Potassium\n", + "5741 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5742 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,High_Density_Lipoprotein_Cholesterol-1)\n", + "5743 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(active_care_plan_length,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5744 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+active_care_plans\n", + "5745 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=2*medications_lifetime_cost/medications_lifetime_length\n", + "5746 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(age,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5747 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(Sodium,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5748 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+procedures_lifetime\n", + "5749 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,ceil(latitude))\n", + "5750 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "5751 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5752 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5753 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5754 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count+1/2*QALY\n", + "5755 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5756 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=latitude-mean_Leukocytes____volume__in_Blood_by_Automated_count+1\n", + "5757 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5758 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5759 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Low_Density_Lipoprotein_Cholesterol/Respiratory_rate\n", + "5760 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(active_conditions,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5761 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(medications_active,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5762 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(Erythrocytes____volume__in_Blood_by_Automated_count,log(Body_Weight))\n", + "5763 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=minimum(Triglycerides,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5764 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Erythrocytes____volume__in_Blood_by_Automated_count+active_care_plans\n", + "5765 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(medications_lifetime,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5766 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Erythrocytes____volume__in_Blood_by_Automated_count+immunizations_lifetime\n", + "5767 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "5768 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count-num_allergies\n", + "5769 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5770 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Body_Height/floor(latitude)\n", + "5771 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(medications_active,log(mean_Glucose))\n", + "5772 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5773 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5774 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5775 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "5776 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5777 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=-Respiratory_rate+ceil(Low_Density_Lipoprotein_Cholesterol)\n", + "5778 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=2*DALY+latitude\n", + "5779 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "5780 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=minimum(latitude,Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "5781 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-active_care_plans\n", + "5782 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-procedures_lifetime\n", + "5783 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "5784 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5785 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-immunizations_lifetime_cost\n", + "5786 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5787 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-num_allergies-1\n", + "5788 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=1/2*High_Density_Lipoprotein_Cholesterol+mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "5789 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5790 mean_Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "5791 mean_Hemoglobin__Mass_volume__in_Blood<=QOLS^2+Hemoglobin__Mass_volume__in_Blood\n", + "5792 mean_Hemoglobin__Mass_volume__in_Blood<=maximum(active_care_plan_length,Hemoglobin__Mass_volume__in_Blood)\n", + "5793 mean_Hemoglobin__Mass_volume__in_Blood<=minimum(Triglycerides,Hemoglobin__Mass_volume__in_Blood)\n", + "5794 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood-log(num_allergies)\n", + "5795 mean_Hemoglobin__Mass_volume__in_Blood<=maximum(encounters_count,Hemoglobin__Mass_volume__in_Blood)\n", + "5796 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood+immunizations_lifetime\n", + "5797 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood+active_care_plans\n", + "5798 mean_Hemoglobin__Mass_volume__in_Blood<=Leukocytes____volume__in_Blood_by_Automated_count+Respiratory_rate\n", + "5799 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood+procedures_lifetime\n", + "5800 mean_Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "5801 mean_Hemoglobin__Mass_volume__in_Blood>=Hemoglobin__Mass_volume__in_Blood-num_allergies\n", + "5802 mean_Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "5803 mean_Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "5804 mean_Hemoglobin__Mass_volume__in_Blood>=Hemoglobin__Mass_volume__in_Blood-2*encounters_lifetime_perc_covered\n", + "5805 mean_Hemoglobin__Mass_volume__in_Blood>=age/(Erythrocytes____volume__in_Blood_by_Automated_count+1)\n", + "5806 mean_Hemoglobin__Mass_volume__in_Blood>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "5807 mean_Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "5808 mean_Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5809 mean_Leukocytes____volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count\n", + "5810 mean_Leukocytes____volume__in_Blood_by_Automated_count<=active_conditions/sqrt(num_allergies)\n", + "5811 mean_Leukocytes____volume__in_Blood_by_Automated_count<=2*DALY/medications_lifetime_perc_covered\n", + "5812 mean_Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "5813 mean_Leukocytes____volume__in_Blood_by_Automated_count>=immunizations_lifetime_cost^(1/Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5814 mean_Leukocytes____volume__in_Blood_by_Automated_count>=minimum(DALY,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5815 mean_Leukocytes____volume__in_Blood_by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "5816 mean_Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5817 mean_Leukocytes____volume__in_Blood_by_Automated_count>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,Specific_gravity_of_Urine_by_Test_strip)\n", + "5818 mean_Leukocytes____volume__in_Blood_by_Automated_count>=minimum(lifetime_care_plans,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5819 mean_Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5820 mean_Leukocytes____volume__in_Blood_by_Automated_count>=-encounters_lifetime_perc_covered+num_allergies+1\n", + "5821 mean_Leukocytes____volume__in_Blood_by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count-active_care_plans\n", + "5822 mean_Leukocytes____volume__in_Blood_by_Automated_count>=immunizations_lifetime^2\n", + "5823 mean_Leukocytes____volume__in_Blood_by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count-immunizations_lifetime_cost\n", + "5824 mean_Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5825 mean_Leukocytes____volume__in_Blood_by_Automated_count>=minimum(active_care_plans,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5826 mean_MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "5827 mean_MCH__Entitic_mass__by_Automated_count<=MCHC__Mass_volume__by_Automated_count-1\n", + "5828 mean_MCH__Entitic_mass__by_Automated_count<=maximum(age,MCH__Entitic_mass__by_Automated_count)\n", + "5829 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count+active_care_plans\n", + "5830 mean_MCH__Entitic_mass__by_Automated_count<=maximum(Sodium,MCH__Entitic_mass__by_Automated_count)\n", + "5831 mean_MCH__Entitic_mass__by_Automated_count<=floor(MCV__Entitic_volume__by_Automated_count)/num_allergies\n", + "5832 mean_MCH__Entitic_mass__by_Automated_count<=maximum(active_care_plan_length,MCH__Entitic_mass__by_Automated_count)\n", + "5833 mean_MCH__Entitic_mass__by_Automated_count<=maximum(QALY,MCH__Entitic_mass__by_Automated_count)\n", + "5834 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count+procedures_lifetime\n", + "5835 mean_MCH__Entitic_mass__by_Automated_count<=maximum(MCH__Entitic_mass__by_Automated_count,mean_High_Density_Lipoprotein_Cholesterol)\n", + "5836 mean_MCH__Entitic_mass__by_Automated_count<=log(Body_Weight)/log(10)+MCH__Entitic_mass__by_Automated_count\n", + "5837 mean_MCH__Entitic_mass__by_Automated_count<=maximum(MCH__Entitic_mass__by_Automated_count,1/2*High_Density_Lipoprotein_Cholesterol)\n", + "5838 mean_MCH__Entitic_mass__by_Automated_count>=longitude\n", + "5839 mean_MCH__Entitic_mass__by_Automated_count>=MCH__Entitic_mass__by_Automated_count\n", + "5840 mean_MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "5841 mean_MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "5842 mean_MCH__Entitic_mass__by_Automated_count>=QALY*log(10)/log(mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "5843 mean_MCH__Entitic_mass__by_Automated_count>=-Low_Density_Lipoprotein_Cholesterol+2*mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5844 mean_MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5845 mean_MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "5846 mean_MCHC__Mass_volume__by_Automated_count<=ceil(MCHC__Mass_volume__by_Automated_count)\n", + "5847 mean_MCHC__Mass_volume__by_Automated_count<=maximum(age,MCHC__Mass_volume__by_Automated_count)\n", + "5848 mean_MCHC__Mass_volume__by_Automated_count<=MCHC__Mass_volume__by_Automated_count+num_allergies\n", + "5849 mean_MCHC__Mass_volume__by_Automated_count<=2*Erythrocytes____volume__in_Blood_by_Automated_count^2\n", + "5850 mean_MCHC__Mass_volume__by_Automated_count<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-active_care_plan_length\n", + "5851 mean_MCHC__Mass_volume__by_Automated_count>=longitude\n", + "5852 mean_MCHC__Mass_volume__by_Automated_count>=floor(MCHC__Mass_volume__by_Automated_count)\n", + "5853 mean_MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5854 mean_MCHC__Mass_volume__by_Automated_count>=MCH__Entitic_mass__by_Automated_count+1\n", + "5855 mean_MCHC__Mass_volume__by_Automated_count>=minimum(Triglycerides,MCHC__Mass_volume__by_Automated_count)\n", + "5856 mean_MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "5857 mean_MCHC__Mass_volume__by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-Hemoglobin__Mass_volume__in_Blood\n", + "5858 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count-active_care_plans\n", + "5859 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count-immunizations_lifetime\n", + "5860 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count-procedures_lifetime\n", + "5861 mean_MCHC__Mass_volume__by_Automated_count>=minimum(procedures_lifetime,MCHC__Mass_volume__by_Automated_count)\n", + "5862 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count^QOLS\n", + "5863 mean_MCHC__Mass_volume__by_Automated_count>=minimum(MCHC__Mass_volume__by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5864 mean_MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5865 mean_MCHC__Mass_volume__by_Automated_count>=-2*DALY+MCHC__Mass_volume__by_Automated_count\n", + "5866 mean_MCHC__Mass_volume__by_Automated_count>=log(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^num_allergies\n", + "5867 mean_MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5868 mean_MCV__Entitic_volume__by_Automated_count<=MCV__Entitic_volume__by_Automated_count\n", + "5869 mean_MCV__Entitic_volume__by_Automated_count<=Total_Cholesterol*log(10)/log(QALY)\n", + "5870 mean_MCV__Entitic_volume__by_Automated_count>=latitude\n", + "5871 mean_MCV__Entitic_volume__by_Automated_count>=MCV__Entitic_volume__by_Automated_count-immunizations_lifetime_cost\n", + "5872 mean_MCV__Entitic_volume__by_Automated_count>=-Leukocytes____volume__in_Blood_by_Automated_count+MCV__Entitic_volume__by_Automated_count+1\n", + "5873 mean_MCV__Entitic_volume__by_Automated_count>=MCV__Entitic_volume__by_Automated_count-active_care_plan_length\n", + "5874 mean_MCV__Entitic_volume__by_Automated_count>=MCV__Entitic_volume__by_Automated_count-procedures_lifetime\n", + "5875 mean_MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5876 mean_MCV__Entitic_volume__by_Automated_count>=minimum(encounters_count,MCV__Entitic_volume__by_Automated_count)\n", + "5877 mean_MCV__Entitic_volume__by_Automated_count>=minimum(Low_Density_Lipoprotein_Cholesterol,MCV__Entitic_volume__by_Automated_count)\n", + "5878 mean_MCV__Entitic_volume__by_Automated_count>=minimum(Diastolic_Blood_Pressure,MCV__Entitic_volume__by_Automated_count)\n", + "5879 mean_MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5880 mean_MCV__Entitic_volume__by_Automated_count>=minimum(MCV__Entitic_volume__by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5881 mean_MCV__Entitic_volume__by_Automated_count>=QALY+mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5882 mean_MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5883 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5884 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=10^num_allergies*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "5885 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+lifetime_care_plan_length\n", + "5886 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(encounters_lifetime_payer_coverage,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5887 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5888 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+immunizations_lifetime_cost\n", + "5889 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "5890 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=10^mean_Leukocytes____volume__in_Blood_by_Automated_count/medications_active\n", + "5891 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=MCV__Entitic_volume__by_Automated_count+floor(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5892 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "5893 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^QOLS\n", + "5894 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Platelets____volume__in_Blood_by_Automated_count)\n", + "5895 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5896 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "5897 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5898 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-immunizations_lifetime_cost\n", + "5899 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5900 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(immunizations_lifetime_cost,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5901 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-medications_lifetime_cost\n", + "5902 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-sqrt(healthcare_coverage)+Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "5903 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses/healthcare_coverage\n", + "5904 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=10^num_allergies/mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "5905 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(Triglycerides,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5906 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/encounters_count\n", + "5907 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5908 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5909 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+num_allergies\n", + "5910 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=minimum(Triglycerides,mean_Ketones__Mass_volume__in_Urine_by_Test_strip)\n", + "5911 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=-QALY+mean_MCV__Entitic_volume__by_Automated_count\n", + "5912 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Body_Mass_Index-lifetime_care_plans\n", + "5913 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "5914 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5915 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-sqrt(encounters_lifetime_perc_covered)+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5916 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-active_care_plans\n", + "5917 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5918 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5919 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^QOLS\n", + "5920 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(DALY,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5921 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(active_conditions,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5922 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(lifetime_conditions,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5923 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5924 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "5925 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(procedures_lifetime,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5926 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=maximum(mean_Ketones__Mass_volume__in_Urine_by_Test_strip,-healthcare_expenses)\n", + "5927 mean_Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5928 mean_Platelets____volume__in_Blood_by_Automated_count<=Body_Mass_Index+Platelets____volume__in_Blood_by_Automated_count-1\n", + "5929 mean_Platelets____volume__in_Blood_by_Automated_count<=Platelets____volume__in_Blood_by_Automated_count+active_care_plan_length\n", + "5930 mean_Platelets____volume__in_Blood_by_Automated_count<=Erythrocytes____volume__in_Blood_by_Automated_count*floor(Low_Density_Lipoprotein_Cholesterol)\n", + "5931 mean_Platelets____volume__in_Blood_by_Automated_count<=maximum(encounters_lifetime_payer_coverage,Platelets____volume__in_Blood_by_Automated_count)\n", + "5932 mean_Platelets____volume__in_Blood_by_Automated_count<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Platelets____volume__in_Blood_by_Automated_count)\n", + "5933 mean_Platelets____volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,Platelets____volume__in_Blood_by_Automated_count)\n", + "5934 mean_Platelets____volume__in_Blood_by_Automated_count<=maximum(Platelets____volume__in_Blood_by_Automated_count,mean_High_Density_Lipoprotein_Cholesterol)\n", + "5935 mean_Platelets____volume__in_Blood_by_Automated_count<=Platelets____volume__in_Blood_by_Automated_count+immunizations_lifetime_cost\n", + "5936 mean_Platelets____volume__in_Blood_by_Automated_count<=Platelets____volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "5937 mean_Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "5938 mean_Platelets____volume__in_Blood_by_Automated_count>=MCH__Entitic_mass__by_Automated_count*sqrt(active_care_plan_length)\n", + "5939 mean_Platelets____volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count-immunizations_lifetime_cost\n", + "5940 mean_Platelets____volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "5941 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Platelets____volume__in_Blood_by_Automated_count)\n", + "5942 mean_Platelets____volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count-active_care_plan_length\n", + "5943 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Triglycerides,Platelets____volume__in_Blood_by_Automated_count)\n", + "5944 mean_Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5945 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Platelets____volume__in_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "5946 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5947 mean_Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5948 mean_Platelets____volume__in_Blood_by_Automated_count>=log(mean_Creatinine)^medications_lifetime\n", + "5949 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5950 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5951 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Glucose)/log(10)\n", + "5952 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Triglycerides,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)\n", + "5953 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "5954 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-2\n", + "5955 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5956 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=ceil(DALY)\n", + "5957 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "5958 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Urea_Nitrogen\n", + "5959 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5960 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5961 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5962 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "5963 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Carbon_Dioxide^immunizations_lifetime\n", + "5964 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5965 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma\n", + "5966 mean_Albumin__Mass_volume__in_Serum,Plasma<=-active_care_plan_length+floor(lifetime_care_plan_length)\n", + "5967 mean_Albumin__Mass_volume__in_Serum,Plasma<=-floor(Urea_Nitrogen)+mean_Carbon_Dioxide\n", + "5968 mean_Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "5969 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "5970 mean_Albumin__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma-mean_Protein__Mass_volume__in_Serum,Plasma-1\n", + "5971 mean_Albumin__Mass_volume__in_Serum,Plasma>=minimum(active_care_plans,Albumin__Mass_volume__in_Serum,Plasma)\n", + "5972 mean_Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5973 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-DALY\n", + "5974 mean_Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5975 mean_Albumin__Mass_volume__in_Serum,Plasma>=-DALY+active_care_plans+1\n", + "5976 mean_Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5977 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5978 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Sodium-active_care_plans\n", + "5979 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Diastolic_Blood_Pressure,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5980 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "5981 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5982 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(High_Density_Lipoprotein_Cholesterol,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5983 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Triglycerides,abs(active_care_plan_length))\n", + "5984 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "5985 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=sqrt(medications_lifetime_length)+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5986 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=latitude\n", + "5987 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "5988 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5989 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-floor(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "5990 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5991 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Carbon_Dioxide)/log(10)\n", + "5992 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Glomerular_filtration_rate_1_73_sq_M_predicted-active_conditions\n", + "5993 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "5994 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5995 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "5996 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "5997 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5998 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=minimum(healthcare_expenses,High_Density_Lipoprotein_Cholesterol)\n", + "5999 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "6000 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6001 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^medications_active)\n", + "6002 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2\n", + "6003 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=(mean_Glomerular_filtration_rate_1_73_sq_M_predicted-1)*active_care_plans\n", + "6004 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "6005 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,1/device_lifetime_length)\n", + "6006 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,abs(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "6007 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "6008 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma^2-medications_lifetime\n", + "6009 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-num_allergies\n", + "6010 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(encounters_count,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6011 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "6012 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "6013 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "6014 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=2*age-2*lifetime_care_plan_length\n", + "6015 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "6016 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=-QOLS+medications_active\n", + "6017 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=10^num_allergies\n", + "6018 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma*medications_active\n", + "6019 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "6020 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(QOLS,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6021 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma*Globulin__Mass_volume__in_Serum_by_calculation\n", + "6022 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=minimum(healthcare_expenses,Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "6023 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "6024 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "6025 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-num_allergies\n", + "6026 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "6027 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-immunizations_lifetime\n", + "6028 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "6029 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-1/2*DALY+QOLS\n", + "6030 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "6031 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "6032 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=imaging_studies_lifetime^DALY\n", + "6033 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "6034 mean_Globulin__Mass_volume__in_Serum_by_calculation<=mean_Creatinine+1\n", + "6035 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(active_care_plans,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6036 mean_Globulin__Mass_volume__in_Serum_by_calculation<=1/Creatinine+Globulin__Mass_volume__in_Serum_by_calculation\n", + "6037 mean_Globulin__Mass_volume__in_Serum_by_calculation<=-mean_Creatinine+medications_lifetime+1\n", + "6038 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(medications_active,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6039 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(procedures_lifetime,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6040 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Creatinine+procedures_lifetime_cost\n", + "6041 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation+immunizations_lifetime\n", + "6042 mean_Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "6043 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-num_allergies\n", + "6044 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-1\n", + "6045 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-1/2*immunizations_lifetime\n", + "6046 mean_Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "6047 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-immunizations_lifetime\n", + "6048 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "6049 mean_Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "6050 mean_Globulin__Mass_volume__in_Serum_by_calculation>=-1/2*DALY+active_care_plans\n", + "6051 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-procedures_lifetime\n", + "6052 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "6053 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "6054 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "6055 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Triglycerides,e^mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6056 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=1/active_conditions+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "6057 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "6058 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=1/2*Albumin__Mass_volume__in_Serum,Plasma+lifetime_conditions\n", + "6059 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=2*QALY/mean_Urea_Nitrogen\n", + "6060 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(Triglycerides,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "6061 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "6062 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted^imaging_studies_lifetime\n", + "6063 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "6064 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime_cost\n", + "6065 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "6066 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime_cost\n", + "6067 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted^QOLS\n", + "6068 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "6069 mean_Protein__Mass_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(mean_Calcium)\n", + "6070 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma\n", + "6071 mean_Protein__Mass_volume__in_Serum,Plasma<=mean_Urea_Nitrogen^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "6072 mean_Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "6073 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "6074 mean_Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "6075 mean_Protein__Mass_volume__in_Serum,Plasma>=age-e^DALY\n", + "6076 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(active_care_plan_length,Protein__Mass_volume__in_Serum,Plasma)\n", + "6077 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Protein__Mass_volume__in_Serum,Plasma)\n", + "6078 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(encounters_count,Protein__Mass_volume__in_Serum,Plasma)\n", + "6079 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma-mean_Albumin__Mass_volume__in_Serum,Plasma-1\n", + "6080 mean_Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "6081 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", "Dead\n", - "1 healthcare_expenses<=DALY*encounters_lifetime_total_cost^2\n", - "2 healthcare_expenses<=10^sqrt(latitude-1)\n", - "3 healthcare_expenses<=(active_condition_length-1)^4\n", - "4 healthcare_expenses<=healthcare_coverage^2/lifetime_care_plan_length\n", - "5 healthcare_expenses<=QALY*healthcare_coverage/medications_lifetime_perc_covered\n", - "6 healthcare_expenses<=(encounters_lifetime_perc_covered+1)^age\n", - "7 healthcare_expenses<=medications_lifetime_length^(log(medications_lifetime_dispenses)/log(10))\n", - "8 healthcare_expenses<=active_conditions*healthcare_coverage/imaging_studies_lifetime\n", - "9 healthcare_expenses<=latitude^active_conditions/medications_active\n", - "10 healthcare_expenses>=imaging_studies_lifetime*medications_lifetime^2\n", - "11 healthcare_expenses>=minimum(medications_lifetime_dispenses,Triglycerides)^2\n", - "12 healthcare_expenses>=(procedures_lifetime_cost^2)^medications_lifetime_perc_covered\n", - "13 healthcare_expenses>=procedures_lifetime^log(Diastolic_Blood_Pressure)\n", - "14 healthcare_expenses>=e^(latitude/active_conditions)\n", - "15 healthcare_expenses>=minimum(procedures_lifetime_cost,Respiratory_rate)^2\n", - "16 healthcare_expenses>=e^(-QALY+latitude)\n", - "17 healthcare_expenses>=sqrt(encounters_lifetime_total_cost*medications_lifetime_cost)\n", - "18 healthcare_expenses>=encounters_lifetime_payer_coverage^sqrt(immunizations_lifetime)\n", - "19 healthcare_expenses>=1/2*device_lifetime_length^4\n", - "20 healthcare_expenses<=1/2*10^sqrt(latitude)\n", - "21 healthcare_expenses<=1/2*latitude^4\n", - "22 healthcare_expenses<=10^sqrt(floor(QALY))\n", - "23 healthcare_expenses<=e^(age-latitude)\n", - "24 healthcare_expenses<=(1/2*medications_lifetime_length)^lifetime_care_plans\n", - "25 healthcare_expenses<=medications_lifetime_cost^2/lifetime_condition_length\n", - "26 healthcare_expenses>=e^(10^QOLS)+1\n", - "27 healthcare_expenses>=e^(latitude/encounters_count)\n", - "28 healthcare_expenses>=sqrt(2)*sqrt(10^active_conditions)\n", - "29 healthcare_expenses>=1/2*active_care_plan_length*encounters_lifetime_payer_coverage\n", - "30 healthcare_expenses>=active_care_plan_length^sqrt(active_conditions)\n", - "31 healthcare_expenses>=DALY*lifetime_care_plan_length^2\n", - "32 healthcare_expenses>=medications_lifetime_cost^2/medications_lifetime_length^2\n", - "33 healthcare_expenses>=medications_lifetime_dispenses^e^encounters_lifetime_perc_covered\n", - "34 healthcare_expenses>=immunizations_lifetime_cost^2/DALY^2\n", - "35 healthcare_expenses>=(DALY+1)*encounters_lifetime_payer_coverage\n", - "36 healthcare_expenses<=(Body_Height-encounters_lifetime_total_cost)^2\n", - "37 healthcare_expenses<=(-active_care_plans+healthcare_coverage)^medications_lifetime\n", - "38 healthcare_expenses<=ceil(latitude)^Potassium\n", - "39 healthcare_expenses<=(Urea_Nitrogen+1)*medications_lifetime_cost\n", - "40 healthcare_expenses<=e^(sqrt(2)*sqrt(Chloride))\n", - "41 healthcare_expenses<=2*medications_lifetime_cost/imaging_studies_lifetime\n", - "42 healthcare_expenses<=10^(mean_Chloride/procedures_lifetime)\n", - "43 healthcare_expenses<=medications_lifetime_dispenses^2/medications_lifetime_perc_covered\n", - "44 healthcare_expenses<=(log(mean_Chloride)/log(10))^Carbon_Dioxide\n", - "45 healthcare_expenses<=10^Urea_Nitrogen/immunizations_lifetime_cost\n", - "46 healthcare_expenses>=(log(encounters_lifetime_total_cost)/log(10))^device_lifetime_length\n", - "47 healthcare_expenses>=DALY^2*lifetime_condition_length\n", - "48 healthcare_expenses>=(e^Respiratory_rate)^imaging_studies_lifetime\n", - "49 healthcare_expenses>=immunizations_lifetime_cost^e^num_allergies\n", - "50 healthcare_expenses>=10^active_care_plans*active_conditions\n", - "51 healthcare_expenses>=lifetime_conditions^active_care_plans+1\n", - "52 healthcare_expenses>=medications_lifetime_length^2/medications_lifetime^2\n", - "53 healthcare_expenses>=sqrt(active_condition_length)^medications_active\n", - "54 healthcare_expenses>=encounters_lifetime_total_cost*log(medications_lifetime_cost)/log(10)\n", - "55 healthcare_expenses>=lifetime_care_plan_length^log(active_conditions)\n", - "56 healthcare_coverage<=Body_Height*latitude^2\n", - "57 healthcare_coverage<=QALY^2*encounters_count\n", - "58 healthcare_coverage<=10^DALY/medications_lifetime_perc_covered\n", - "59 healthcare_coverage<=(2*encounters_lifetime_total_cost)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "60 healthcare_coverage<=(2*latitude)^active_conditions\n", - "61 healthcare_coverage<=maximum(immunizations_lifetime_cost,medications_lifetime)^2\n", - "62 healthcare_coverage<=4*encounters_count^4\n", - "63 healthcare_coverage<=encounters_lifetime_payer_coverage^2/medications_lifetime\n", - "64 healthcare_coverage<=latitude^(active_care_plans+1)\n", - "65 healthcare_coverage<=10^sqrt(ceil(Body_Mass_Index))\n", - "66 healthcare_coverage>=encounters_lifetime_total_cost/DALY^2\n", - "67 healthcare_coverage>=10^minimum(procedures_lifetime,Potassium)\n", - "68 healthcare_coverage>=sqrt(2)*sqrt(encounters_lifetime_total_cost^2)\n", - "69 healthcare_coverage>=2*active_condition_length*medications_lifetime\n", - "70 healthcare_coverage>=-immunizations_lifetime_cost^2+procedures_lifetime_cost\n", - "71 healthcare_coverage>=encounters_lifetime_total_cost*log(10)/log(active_conditions)\n", - "72 healthcare_coverage>=Microalbumin_Creatinine_Ratio^sqrt(device_lifetime_length)\n", - "73 healthcare_coverage>=-age*longitude\n", - "74 healthcare_coverage>=2*e^(medications_active-1)\n", - "75 healthcare_coverage>=e^(sqrt(age+1))\n", - "76 healthcare_coverage<=healthcare_expenses/(active_conditions+1)\n", - "77 healthcare_coverage<=-(encounters_lifetime_total_cost-healthcare_expenses)/lifetime_conditions\n", - "78 healthcare_coverage<=encounters_count*healthcare_expenses/latitude\n", - "79 healthcare_coverage<=e^(active_conditions/medications_lifetime_perc_covered)\n", - "80 healthcare_coverage<=healthcare_expenses/sqrt(encounters_count)\n", - "81 healthcare_coverage<=10^active_conditions/DALY\n", - "82 healthcare_coverage<=e^(10^e^immunizations_lifetime)\n", - "83 healthcare_coverage<=encounters_lifetime_payer_coverage^(1/medications_lifetime_perc_covered)\n", - "84 healthcare_coverage<=e^(10^e^medications_lifetime_perc_covered)\n", - "85 healthcare_coverage>=minimum(lifetime_care_plan_length,Creatinine)^2\n", - "86 healthcare_coverage>=10^(medications_lifetime/latitude)\n", - "87 healthcare_coverage>=(encounters_lifetime_payer_coverage+1)/lifetime_care_plan_length\n", - "88 healthcare_coverage>=(QALY-1)*lifetime_condition_length\n", - "89 healthcare_coverage>=(mean_Potassium-1)^num_allergies\n", - "90 healthcare_coverage>=e^lifetime_care_plans*procedures_lifetime\n", - "91 healthcare_coverage>=(active_care_plan_length-1)*lifetime_condition_length\n", - "92 healthcare_coverage>=-sqrt(medications_lifetime_dispenses)+encounters_lifetime_total_cost\n", - "93 healthcare_coverage>=log(QALY)*medications_lifetime_length/log(10)\n", - "94 healthcare_coverage>=device_lifetime_length^sqrt(active_conditions)\n", - "95 healthcare_coverage<=log(10)*medications_lifetime_cost/log(active_condition_length)\n", - "96 healthcare_coverage<=healthcare_expenses/(age*immunizations_lifetime)\n", - "97 healthcare_coverage<=(healthcare_expenses-medications_lifetime_cost)/DALY\n", - "98 healthcare_coverage<=medications_lifetime_cost/10^immunizations_lifetime\n", - "99 healthcare_coverage<=minimum(medications_lifetime_cost,healthcare_expenses/Body_temperature)\n", - "100 healthcare_coverage<=(lifetime_condition_length-medications_lifetime_dispenses)^2\n", - "101 healthcare_coverage<=lifetime_condition_length^(10^encounters_lifetime_perc_covered)\n", - "102 healthcare_coverage<=QALY^2*active_care_plan_length\n", - "103 healthcare_coverage<=maximum(lifetime_condition_length,procedures_lifetime_cost)^2\n", - "104 healthcare_coverage>=encounters_lifetime_payer_coverage*log(10)/log(active_care_plans)\n", - "105 healthcare_coverage>=active_condition_length*sqrt(procedures_lifetime_cost)\n", - "106 healthcare_coverage>=healthcare_expenses/(lifetime_condition_length-1)\n", - "107 healthcare_coverage>=10^medications_lifetime_perc_covered*encounters_lifetime_payer_coverage\n", - "108 healthcare_coverage>=1/2*active_conditions*medications_lifetime_dispenses\n", - "109 healthcare_coverage>=procedures_lifetime_cost/(immunizations_lifetime+1)\n", - "110 healthcare_coverage>=1/2*active_conditions^4\n", - "111 healthcare_coverage>=healthcare_expenses/10^medications_lifetime\n", - "112 healthcare_coverage>=2*encounters_lifetime_payer_coverage*immunizations_lifetime\n", - "113 latitude<=QALY+2\n", - "114 latitude<=-DALY+lifetime_care_plan_length\n", - "115 latitude<=medications_lifetime_cost^2/encounters_lifetime_total_cost^2\n", - "116 latitude<=DALY*active_care_plan_length\n", - "117 latitude<=healthcare_coverage^(1/log(10))+1\n", - "118 latitude<=healthcare_expenses/(lifetime_condition_length*procedures_lifetime)\n", - "119 latitude<=minimum(healthcare_expenses,1/2*Glucose)\n", - "120 latitude<=healthcare_expenses^medications_lifetime_perc_covered*active_conditions\n", - "121 latitude<=lifetime_care_plan_length^2-encounters_lifetime_payer_coverage\n", - "122 latitude<=medications_lifetime_dispenses/DALY-1\n", - "123 latitude>=floor(1/2*age)\n", - "124 latitude>=-active_care_plan_length+active_condition_length+1\n", - "125 latitude>=sqrt(active_care_plan_length)^device_lifetime_length\n", - "126 latitude>=1/2*active_care_plan_length+medications_active\n", - "127 latitude>=DALY*e^medications_lifetime_perc_covered\n", - "128 latitude>=10^log(medications_active)+1\n", - "129 latitude>=minimum(age,1/QOLS)\n", - "130 latitude>=(longitude^2)^(1/log(10))\n", - "131 latitude>=healthcare_expenses^medications_lifetime_perc_covered/encounters_lifetime_payer_coverage\n", - "132 latitude>=1/2*QALY+active_care_plans\n", - "133 latitude<=age-2*lifetime_conditions\n", - "134 latitude<=lifetime_care_plan_length+log(QOLS)\n", - "135 latitude<=-active_care_plans+lifetime_condition_length\n", - "136 latitude<=sqrt(healthcare_coverage)-active_condition_length\n", - "137 latitude<=(active_care_plan_length+1)/medications_lifetime_perc_covered\n", - "138 latitude<=(healthcare_expenses/active_care_plans)^encounters_lifetime_perc_covered\n", - "139 latitude<=e^(-active_care_plans)*medications_lifetime_length\n", - "140 latitude<=1/2*sqrt(healthcare_coverage)+1\n", - "141 latitude<=10^e^(1/immunizations_lifetime)\n", - "142 latitude<=medications_lifetime*sqrt(medications_lifetime_dispenses)\n", - "143 latitude>=sqrt(lifetime_condition_length)+active_conditions\n", - "144 latitude>=1/2*medications_lifetime_dispenses^encounters_lifetime_perc_covered\n", - "145 latitude>=-medications_lifetime^2+active_condition_length\n", - "146 latitude>=ceil(encounters_lifetime_total_cost/medications_lifetime_dispenses)\n", - "147 latitude>=log(immunizations_lifetime^QALY)\n", - "148 latitude>=minimum(immunizations_lifetime_cost,1/2*mean_Diastolic_Blood_Pressure)\n", - "149 latitude>=-1/2*longitude+1/2*procedures_lifetime\n", - "150 latitude>=2*minimum(encounters_count,Creatinine)\n", - "151 latitude>=active_care_plans^2*medications_lifetime_perc_covered^2\n", - "152 latitude>=medications_lifetime_dispenses/(lifetime_care_plan_length+1)\n", - "153 latitude<=(DALY^2)^active_care_plans\n", - "154 latitude<=encounters_count*log(medications_lifetime_length)\n", - "155 latitude<=age*log(10)/log(active_care_plan_length)\n", - "156 latitude<=floor(-DALY+QALY)\n", - "157 latitude<=-2*active_conditions+age\n", - "158 latitude<=encounters_count^2+DALY\n", - "159 latitude<=1/2*lifetime_condition_length/immunizations_lifetime\n", - "160 latitude<=-log(active_care_plans)/log(10)+lifetime_care_plan_length\n", - "161 latitude<=1/2*log(healthcare_coverage)^2\n", - "162 latitude<=minimum(healthcare_expenses,2*mean_Estimated_Glomerular_Filtration_Rate)\n", - "163 latitude>=ceil(1/2*age+1/2)\n", - "164 latitude>=active_care_plans*log(medications_lifetime)\n", - "165 latitude>=e^(e^num_allergies+1)\n", - "166 latitude>=1/4*mean_Systolic_Blood_Pressure\n", - "167 latitude>=e^(active_care_plan_length+longitude)\n", - "168 latitude>=Heart_rate*log(10)/log(lifetime_condition_length)\n", - "169 latitude>=(mean_Diastolic_Blood_Pressure+1)/active_care_plans\n", - "170 latitude>=age^2/Body_Height\n", - "171 latitude>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*mean_Heart_rate\n", - "172 latitude>=Systolic_Blood_Pressure-2*active_condition_length\n", - "173 longitude<=-1/2*immunizations_lifetime_cost\n", - "174 longitude<=-age+log(healthcare_expenses)\n", - "175 longitude<=1/active_care_plans-active_care_plan_length\n", - "176 longitude<=sqrt(healthcare_coverage)-immunizations_lifetime_cost\n", - "177 longitude<=active_conditions*log(10)/log(QOLS)\n", - "178 longitude<=sqrt(QALY)-mean_QALY\n", - "179 longitude<=-lifetime_condition_length^QOLS\n", - "180 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "181 longitude>=-active_care_plan_length-latitude\n", - "182 longitude>=-DALY*latitude\n", - "183 longitude>=-age*medications_active\n", - "184 longitude>=-QOLS*lifetime_condition_length\n", - "185 longitude>=-age-immunizations_lifetime_cost\n", - "186 longitude>=-age-medications_lifetime\n", - "187 longitude>=2*active_care_plans-2*latitude\n", - "188 longitude<=-1/2*immunizations_lifetime_cost+1/2*lifetime_care_plan_length\n", - "189 longitude<=immunizations_lifetime_cost-1/2*lifetime_care_plan_length\n", - "190 longitude<=-ceil(active_condition_length)-1\n", - "191 longitude<=-1/2*immunizations_lifetime_cost+procedures_lifetime_cost\n", - "192 longitude<=medications_active^2-age\n", - "193 longitude<=sqrt(latitude)-QALY\n", - "194 longitude<=-medications_lifetime_dispenses/latitude\n", - "195 longitude<=(-mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^num_allergies\n", - "196 longitude<=10^QOLS-QALY\n", - "197 longitude<=active_care_plan_length-2*latitude\n", - "198 longitude>=-sqrt(healthcare_coverage)+medications_active\n", - "199 longitude>=active_conditions-2*latitude\n", - "200 longitude>=-2*latitude+lifetime_conditions\n", - "201 longitude>=active_care_plan_length*log(10)/log(QOLS)\n", - "202 longitude>=-DALY*lifetime_condition_length\n", - "203 longitude>=-2*latitude+2*medications_active\n", - "204 longitude>=-active_care_plan_length-medications_lifetime\n", - "205 longitude>=-immunizations_lifetime_cost-medications_lifetime\n", - "206 longitude>=2*active_care_plans-2*latitude\n", - "207 longitude>=-2*QALY+2*procedures_lifetime\n", - "208 longitude<=active_condition_length-ceil(lifetime_care_plan_length)\n", - "209 longitude<=-1/2*immunizations_lifetime_cost\n", - "210 longitude<=-QALY+log(lifetime_condition_length)\n", - "211 longitude<=-QALY+e^active_care_plans\n", - "212 longitude<=-encounters_lifetime_perc_covered*lifetime_care_plan_length\n", - "213 longitude<=-encounters_count+procedures_lifetime_cost-1\n", - "214 longitude<=-sqrt(encounters_lifetime_payer_coverage)+active_care_plans\n", - "215 longitude>=-age+log(medications_lifetime_perc_covered)\n", - "216 longitude>=-2*age+latitude\n", - "217 longitude>=-minimum(healthcare_expenses,mean_Glucose)\n", - "218 longitude>=-healthcare_coverage/immunizations_lifetime_cost\n", - "219 longitude>=2*active_care_plans-2*latitude\n", - "220 longitude>=-age/imaging_studies_lifetime\n", - "221 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "222 age<=e^(e^(1/encounters_lifetime_perc_covered))\n", - "223 age<=1/medications_lifetime_perc_covered+medications_lifetime\n", - "224 age<=longitude^2/medications_active^2\n", - "225 age<=(healthcare_expenses/encounters_count)^DALY\n", - "226 age<=QALY+2*encounters_count\n", - "227 age<=2*latitude+medications_lifetime_perc_covered\n", - "228 age<=2*lifetime_condition_length+medications_lifetime\n", - "229 age<=lifetime_care_plan_length-1/2*longitude\n", - "230 age<=1/2*encounters_lifetime_total_cost+longitude\n", - "231 age<=ceil(log(healthcare_coverage))^2\n", - "232 age>=DALY+QALY+1\n", - "233 age>=QOLS+ceil(active_care_plan_length)\n", - "234 age>=log(QALY)+mean_QALY\n", - "235 age>=encounters_count*log(10)/log(medications_lifetime_length)\n", - "236 age>=medications_lifetime_length^(1/active_care_plans)\n", - "237 age>=1/2*QALY-1/2*longitude\n", - "238 age>=e^(active_care_plan_length/encounters_count)\n", - "239 age>=-1/2*encounters_count+1/2*lifetime_care_plan_length\n", - "240 age>=e^(log(lifetime_care_plan_length)-1)\n", - "241 age<=1/2*lifetime_care_plan_length+1/2*lifetime_condition_length\n", - "242 age<=2*latitude-medications_lifetime_perc_covered\n", - "243 age<=ceil(Creatinine*lifetime_care_plan_length)\n", - "244 age<=latitude*log(Body_Weight)/log(10)\n", - "245 age<=QALY+floor(Carbon_Dioxide)\n", - "246 age<=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,healthcare_expenses-medications_lifetime_cost)\n", - "247 age<=Body_Weight+log(QALY)\n", - "248 age<=(encounters_count+1)^procedures_lifetime\n", - "249 age<=healthcare_coverage/device_lifetime_length^2\n", - "250 age<=healthcare_expenses^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plan_length\n", - "251 age>=DALY+QALY+1\n", - "252 age>=minimum(procedures_lifetime,mean_Body_Weight+1)\n", - "253 age>=log(QALY)/log(10)+mean_QALY\n", - "254 age>=2*DALY-2*medications_lifetime_perc_covered\n", - "255 age>=lifetime_care_plans^e^immunizations_lifetime\n", - "256 age>=1/encounters_lifetime_perc_covered+QALY\n", - "257 age>=log(imaging_studies_lifetime)-longitude\n", - "258 age>=lifetime_care_plan_length^sqrt(encounters_lifetime_perc_covered)\n", - "259 age>=log(active_conditions^Carbon_Dioxide)\n", - "260 age<=1/2*medications_lifetime_cost/medications_lifetime_dispenses\n", - "261 age<=maximum(Triglycerides,healthcare_expenses/healthcare_coverage)\n", - "262 age<=10^active_care_plans*QOLS\n", - "263 age<=QALY+1/2*active_condition_length\n", - "264 age<=(immunizations_lifetime_cost+1)/imaging_studies_lifetime\n", - "265 age<=lifetime_condition_length/immunizations_lifetime-1\n", - "266 age<=sqrt(encounters_lifetime_total_cost+lifetime_condition_length)\n", - "267 age<=maximum(mean_Heart_rate,e^medications_active)\n", - "268 age<=sqrt(1/2)*sqrt(lifetime_condition_length^2)\n", - "269 age<=2*active_condition_length+2*lifetime_care_plans\n", - "270 age>=QALY+medications_lifetime_perc_covered+1\n", - "271 age>=-active_care_plan_length+lifetime_care_plan_length+1\n", - "272 age>=sqrt(lifetime_care_plans)+QALY\n", - "273 age>=2*log(medications_lifetime)^2\n", - "274 age>=DALY+QALY+1\n", - "275 age>=encounters_lifetime_perc_covered^2*lifetime_condition_length\n", - "276 age>=QALY+log(medications_active)\n", - "277 age>=latitude+log(medications_lifetime_cost)\n", - "278 num_allergies<=active_care_plans-1\n", - "279 num_allergies<=immunizations_lifetime_cost\n", - "280 num_allergies<=procedures_lifetime\n", - "281 num_allergies<=e^(longitude^encounters_count)\n", - "282 num_allergies<=-active_care_plans+medications_lifetime\n", - "283 num_allergies<=active_care_plans-immunizations_lifetime\n", - "284 num_allergies<=minimum(healthcare_expenses,floor(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", - "285 num_allergies<=abs(procedures_lifetime-1)\n", - "286 num_allergies>=device_lifetime_length\n", - "287 num_allergies>=-sqrt(medications_lifetime_dispenses)+DALY\n", - "288 num_allergies<=active_care_plans\n", - "289 num_allergies<=device_lifetime_length\n", - "290 num_allergies>=device_lifetime_length\n", - "291 num_allergies>=2*active_care_plan_length+2*longitude\n", - "292 num_allergies>=(immunizations_lifetime-1)*procedures_lifetime\n", - "293 num_allergies<=device_lifetime_length\n", - "294 num_allergies>=floor(encounters_lifetime_perc_covered)\n", - "295 num_allergies>=-device_lifetime_length\n", - "296 active_care_plans<=lifetime_care_plans\n", - "297 active_care_plans<=minimum(healthcare_expenses,ceil(Leukocytes____volume__in_Blood_by_Automated_count))\n", - "298 active_care_plans>=num_allergies\n", - "299 active_care_plans>=lifetime_care_plans\n", - "300 active_care_plans<=lifetime_care_plans\n", - "301 active_care_plans<=active_conditions-medications_active+1\n", - "302 active_care_plans>=2*immunizations_lifetime\n", - "303 active_care_plans>=minimum(lifetime_care_plans,log(encounters_count))\n", - "304 active_care_plans>=lifetime_care_plans-procedures_lifetime\n", - "305 active_care_plans>=2*imaging_studies_lifetime/QOLS\n", - "306 active_care_plans>=minimum(lifetime_care_plans,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "307 active_care_plans>=minimum(medications_active,Creatinine)\n", - "308 active_care_plans>=(lifetime_care_plans-1)^imaging_studies_lifetime\n", - "309 active_care_plans<=lifetime_care_plans\n", - "310 active_care_plans<=floor(sqrt(age))\n", - "311 active_care_plans<=medications_lifetime-1\n", - "312 active_care_plans<=active_conditions-immunizations_lifetime\n", - "313 active_care_plans>=lifetime_care_plans-medications_lifetime\n", - "314 active_care_plans>=QOLS\n", - "315 active_care_plans>=1/2*lifetime_care_plans\n", - "316 active_care_plans>=ceil(sqrt(lifetime_care_plans))\n", - "317 active_care_plans>=2*imaging_studies_lifetime+1\n", - "318 active_care_plans>=floor(sqrt(active_conditions))\n", - "319 active_care_plans>=minimum(lifetime_care_plans,procedures_lifetime)\n", - "320 active_care_plans>=-immunizations_lifetime_cost+lifetime_care_plans\n", - "321 lifetime_care_plans<=active_care_plans\n", - "322 lifetime_care_plans>=active_care_plans\n", - "323 lifetime_care_plans>=num_allergies^medications_active\n", - "324 lifetime_care_plans>=floor(sqrt(active_conditions))\n", - "325 lifetime_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_care_plans\n", - "326 lifetime_care_plans>=(active_care_plans-1)*imaging_studies_lifetime\n", - "327 lifetime_care_plans>=ceil(DALY)/medications_lifetime\n", - "328 lifetime_care_plans<=active_care_plans+1\n", - "329 lifetime_care_plans<=active_care_plan_length\n", - "330 lifetime_care_plans<=active_conditions+1\n", - "331 lifetime_care_plans<=ceil(log(age))\n", - "332 lifetime_care_plans<=active_care_plans+procedures_lifetime\n", - "333 lifetime_care_plans<=ceil(log(QALY))\n", - "334 lifetime_care_plans<=maximum(active_care_plans,active_conditions)\n", - "335 lifetime_care_plans<=maximum(Sodium,ceil(active_care_plans))\n", - "336 lifetime_care_plans>=-active_conditions+lifetime_conditions\n", - "337 lifetime_care_plans>=active_care_plans\n", - "338 lifetime_care_plans>=ceil(log(latitude)/log(10))\n", - "339 lifetime_care_plans>=active_conditions-medications_lifetime+1\n", - "340 lifetime_care_plans>=procedures_lifetime-1\n", - "341 lifetime_care_plans>=2*floor(1/encounters_lifetime_perc_covered)\n", - "342 lifetime_care_plans<=active_conditions\n", - "343 lifetime_care_plans<=active_care_plans+1\n", - "344 lifetime_care_plans<=2*medications_lifetime\n", - "345 lifetime_care_plans<=active_care_plans+immunizations_lifetime\n", - "346 lifetime_care_plans<=floor(lifetime_care_plan_length/DALY)\n", - "347 lifetime_care_plans<=maximum(active_care_plans,procedures_lifetime)\n", - "348 lifetime_care_plans<=2*10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "349 lifetime_care_plans>=active_care_plans\n", - "350 lifetime_care_plans>=ceil(log(DALY))\n", - "351 lifetime_care_plans>=-Heart_rate+1/2*Systolic_Blood_Pressure\n", - "352 lifetime_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/medications_lifetime\n", - "353 lifetime_care_plans>=floor(1/encounters_lifetime_perc_covered)\n", - "354 active_care_plan_length<=maximum(active_condition_length,healthcare_expenses/encounters_lifetime_total_cost)\n", - "355 active_care_plan_length<=latitude*log(QALY)/log(10)\n", - "356 active_care_plan_length<=maximum(active_condition_length,medications_lifetime_dispenses)\n", - "357 active_care_plan_length<=2*active_condition_length/immunizations_lifetime\n", - "358 active_care_plan_length<=floor(latitude)/medications_lifetime_perc_covered\n", - "359 active_care_plan_length<=2*active_condition_length+encounters_lifetime_perc_covered\n", - "360 active_care_plan_length<=sqrt(encounters_lifetime_payer_coverage)/encounters_lifetime_perc_covered\n", - "361 active_care_plan_length<=active_condition_length/imaging_studies_lifetime\n", - "362 active_care_plan_length<=-medications_active^2+lifetime_care_plan_length\n", - "363 active_care_plan_length>=lifetime_care_plan_length/active_care_plans\n", - "364 active_care_plan_length>=minimum(active_condition_length,2*active_conditions)\n", - "365 active_care_plan_length>=active_condition_length/(procedures_lifetime-1)\n", - "366 active_care_plan_length>=QALY-e^DALY\n", - "367 active_care_plan_length>=minimum(active_condition_length,1/2*encounters_count)\n", - "368 active_care_plan_length>=minimum(latitude,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)-1\n", - "369 active_care_plan_length>=2*active_condition_length+longitude\n", - "370 active_care_plan_length>=DALY*e^immunizations_lifetime\n", - "371 active_care_plan_length<=active_condition_length\n", - "372 active_care_plan_length<=lifetime_care_plan_length\n", - "373 active_care_plan_length<=encounters_count+floor(QALY)\n", - "374 active_care_plan_length<=healthcare_expenses^encounters_lifetime_perc_covered+DALY\n", - "375 active_care_plan_length<=active_condition_length^(2*QOLS)\n", - "376 active_care_plan_length>=lifetime_care_plan_length/lifetime_care_plans\n", - "377 active_care_plan_length>=minimum(lifetime_care_plan_length,active_condition_length)\n", - "378 active_care_plan_length>=Body_Weight^num_allergies\n", - "379 active_care_plan_length>=e^(minimum(active_care_plans,Creatinine))\n", - "380 active_care_plan_length<=age-2*medications_active\n", - "381 active_care_plan_length<=lifetime_care_plan_length\n", - "382 active_care_plan_length<=active_condition_length\n", - "383 active_care_plan_length<=10^e^sqrt(encounters_lifetime_perc_covered)\n", - "384 active_care_plan_length<=-sqrt(device_lifetime_length)+active_condition_length\n", - "385 active_care_plan_length<=maximum(immunizations_lifetime_cost,sqrt(encounters_lifetime_payer_coverage))\n", - "386 active_care_plan_length>=minimum(active_condition_length,Creatinine)\n", - "387 active_care_plan_length>=minimum(healthcare_coverage,lifetime_care_plans^2)\n", - "388 active_care_plan_length>=e^(latitude/QALY)\n", - "389 active_care_plan_length>=lifetime_care_plan_length/lifetime_care_plans\n", - "390 active_care_plan_length>=1/2*medications_lifetime/lifetime_care_plans\n", - "391 active_care_plan_length>=minimum(active_condition_length,e^device_lifetime_length)\n", - "392 active_care_plan_length>=medications_lifetime_length^(medications_lifetime_perc_covered^2)\n", - "393 active_care_plan_length>=minimum(active_condition_length,log(Triglycerides)/log(10))\n", - "394 active_care_plan_length>=active_care_plans+1/2*procedures_lifetime\n", - "395 lifetime_care_plan_length<=2*QOLS*lifetime_condition_length\n", - "396 lifetime_care_plan_length<=medications_lifetime_cost/sqrt(healthcare_coverage)\n", - "397 lifetime_care_plan_length<=maximum(mean_Heart_rate,healthcare_expenses^encounters_lifetime_perc_covered)\n", - "398 lifetime_care_plan_length<=active_care_plan_length^2\n", - "399 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "400 lifetime_care_plan_length<=ceil(active_condition_length)/imaging_studies_lifetime\n", - "401 lifetime_care_plan_length<=e^active_care_plans-longitude\n", - "402 lifetime_care_plan_length<=active_care_plans*sqrt(procedures_lifetime_cost)\n", - "403 lifetime_care_plan_length<=2*Systolic_Blood_Pressure-2*procedures_lifetime\n", - "404 lifetime_care_plan_length<=e^(mean_Body_Weight/Respiratory_rate)\n", - "405 lifetime_care_plan_length>=active_care_plan_length\n", - "406 lifetime_care_plan_length>=active_condition_length^2/latitude\n", - "407 lifetime_care_plan_length>=(1/2*mean_Systolic_Blood_Pressure)^immunizations_lifetime\n", - "408 lifetime_care_plan_length>=sqrt(active_care_plan_length*encounters_count)\n", - "409 lifetime_care_plan_length>=age*medications_lifetime_perc_covered+1\n", - "410 lifetime_care_plan_length>=1/2*latitude*medications_active\n", - "411 lifetime_care_plan_length>=10^(medications_active-procedures_lifetime_cost)\n", - "412 lifetime_care_plan_length>=1/2*active_care_plans+1/2*encounters_count\n", - "413 lifetime_care_plan_length>=age-2*encounters_count\n", - "414 lifetime_care_plan_length>=2*immunizations_lifetime_cost^medications_lifetime_perc_covered\n", - "415 lifetime_care_plan_length<=1/2*age+lifetime_condition_length\n", - "416 lifetime_care_plan_length<=Calcium^active_care_plans\n", - "417 lifetime_care_plan_length<=Body_Mass_Index*sqrt(medications_lifetime)\n", - "418 lifetime_care_plan_length<=Carbon_Dioxide^e^Creatinine\n", - "419 lifetime_care_plan_length<=Calcium^(active_conditions-1)\n", - "420 lifetime_care_plan_length<=10^medications_active+Body_Weight\n", - "421 lifetime_care_plan_length<=maximum(procedures_lifetime_cost,2*QALY)\n", - "422 lifetime_care_plan_length<=QALY*healthcare_expenses/healthcare_coverage\n", - "423 lifetime_care_plan_length<=e^Calcium/QALY\n", - "424 lifetime_care_plan_length<=1/2*mean_Sodium/medications_lifetime_perc_covered\n", - "425 lifetime_care_plan_length>=active_care_plan_length\n", - "426 lifetime_care_plan_length>=(-DALY)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "427 lifetime_care_plan_length>=active_care_plans^log(Body_Mass_Index)\n", - "428 lifetime_care_plan_length>=-2*mean_Systolic_Blood_Pressure+medications_lifetime\n", - "429 lifetime_care_plan_length>=Body_Mass_Index*log(Respiratory_rate)/log(10)\n", - "430 lifetime_care_plan_length>=Body_Weight*sqrt(medications_lifetime_perc_covered)\n", - "431 lifetime_care_plan_length>=2*floor(device_lifetime_length)\n", - "432 lifetime_care_plan_length>=age*log(10)/log(medications_lifetime)\n", - "433 lifetime_care_plan_length>=e^(Pain_severity___0_10_verbal_numeric_rating__Score____Reported+encounters_lifetime_perc_covered)\n", - "434 lifetime_care_plan_length>=healthcare_expenses/(encounters_lifetime_payer_coverage*latitude)\n", - "435 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "436 lifetime_care_plan_length<=DALY^2+age\n", - "437 lifetime_care_plan_length<=maximum(QALY,medications_lifetime^2)\n", - "438 lifetime_care_plan_length<=active_condition_length*log(active_care_plan_length)\n", - "439 lifetime_care_plan_length<=2*QALY+2*age\n", - "440 lifetime_care_plan_length<=2*age/medications_lifetime_perc_covered\n", - "441 lifetime_care_plan_length<=lifetime_conditions^log(latitude)\n", - "442 lifetime_care_plan_length<=healthcare_expenses^QOLS-longitude\n", - "443 lifetime_care_plan_length<=log(medications_lifetime_length^2)^2\n", - "444 lifetime_care_plan_length<=-(healthcare_coverage-healthcare_expenses)/medications_lifetime\n", - "445 lifetime_care_plan_length>=-log(encounters_count)/log(10)+latitude\n", - "446 lifetime_care_plan_length>=2*active_condition_length-latitude\n", - "447 lifetime_care_plan_length>=encounters_lifetime_payer_coverage/floor(mean_Systolic_Blood_Pressure)\n", - "448 lifetime_care_plan_length>=-Systolic_Blood_Pressure^2+medications_lifetime_length\n", - "449 lifetime_care_plan_length>=10^immunizations_lifetime+imaging_studies_lifetime\n", - "450 lifetime_care_plan_length>=(DALY-1)*active_care_plans\n", - "451 lifetime_care_plan_length>=2*active_care_plan_length-procedures_lifetime_cost\n", - "452 lifetime_care_plan_length>=sqrt(latitude)*medications_active\n", - "453 lifetime_care_plan_length>=2*medications_lifetime_cost/healthcare_coverage\n", - "454 lifetime_care_plan_length>=1/2*QALY*procedures_lifetime\n", - "455 active_conditions<=lifetime_conditions\n", - "456 active_conditions<=maximum(Triglycerides,2*lifetime_care_plans)\n", - "457 active_conditions<=10^floor(sqrt(active_care_plans))\n", - "458 active_conditions>=minimum(lifetime_conditions,2*active_care_plans)\n", - "459 active_conditions>=medications_active\n", - "460 active_conditions>=lifetime_conditions-2\n", - "461 active_conditions>=minimum(lifetime_conditions,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "462 active_conditions>=(immunizations_lifetime+1)^2\n", - "463 active_conditions>=ceil(log(healthcare_coverage)/log(10))\n", - "464 active_conditions>=floor(10^medications_lifetime_perc_covered)\n", - "465 active_conditions>=-immunizations_lifetime+lifetime_conditions-1\n", - "466 active_conditions>=floor(encounters_count^(1/log(10)))\n", - "467 active_conditions<=lifetime_conditions\n", - "468 active_conditions<=encounters_count\n", - "469 active_conditions<=floor(active_care_plan_length/procedures_lifetime)\n", - "470 active_conditions<=ceil(e^active_care_plans)\n", - "471 active_conditions>=active_care_plans+1\n", - "472 active_conditions>=-active_care_plans+lifetime_conditions\n", - "473 active_conditions>=ceil(sqrt(DALY))\n", - "474 active_conditions>=-active_care_plans+num_allergies\n", - "475 active_conditions>=active_care_plans+immunizations_lifetime\n", - "476 active_conditions>=minimum(lifetime_conditions,sqrt(active_care_plan_length))\n", - "477 active_conditions>=-immunizations_lifetime_cost+lifetime_conditions-1\n", - "478 active_conditions>=minimum(lifetime_conditions,DALY-1)\n", - "479 active_conditions<=lifetime_conditions\n", - "480 active_conditions<=minimum(healthcare_expenses,Respiratory_rate)\n", - "481 active_conditions<=maximum(encounters_lifetime_payer_coverage,lifetime_conditions-1)\n", - "482 active_conditions>=2*QOLS\n", - "483 active_conditions>=lifetime_conditions^imaging_studies_lifetime\n", - "484 active_conditions>=medications_active+1\n", - "485 active_conditions>=medications_active*procedures_lifetime\n", - "486 active_conditions>=minimum(lifetime_conditions,Urea_Nitrogen)\n", - "487 active_conditions>=2*procedures_lifetime+2\n", - "488 lifetime_conditions<=ceil(age/active_care_plans)\n", - "489 lifetime_conditions<=active_conditions+2\n", - "490 lifetime_conditions<=encounters_count\n", - "491 lifetime_conditions<=2*active_conditions\n", - "492 lifetime_conditions<=medications_lifetime+1\n", - "493 lifetime_conditions<=sqrt(10^medications_active)\n", - "494 lifetime_conditions<=maximum(healthcare_coverage,active_care_plans)\n", - "495 lifetime_conditions<=2*ceil(DALY)\n", - "496 lifetime_conditions<=active_conditions+procedures_lifetime+1\n", - "497 lifetime_conditions<=maximum(Estimated_Glomerular_Filtration_Rate,active_conditions+1)\n", - "498 lifetime_conditions>=num_allergies\n", - "499 lifetime_conditions>=active_care_plans\n", - "500 lifetime_conditions>=active_conditions\n", - "501 lifetime_conditions>=procedures_lifetime-1\n", - "502 lifetime_conditions>=1/2*immunizations_lifetime_cost^medications_lifetime_perc_covered\n", - "503 lifetime_conditions>=floor(immunizations_lifetime_cost/medications_lifetime_dispenses)\n", - "504 lifetime_conditions>=2*DALY-procedures_lifetime_cost\n", - "505 lifetime_conditions<=active_conditions+1\n", - "506 lifetime_conditions<=active_conditions+num_allergies\n", - "507 lifetime_conditions<=maximum(active_conditions,medications_lifetime)\n", - "508 lifetime_conditions>=active_conditions\n", - "509 lifetime_conditions>=active_care_plans+procedures_lifetime\n", - "510 lifetime_conditions>=ceil(sqrt(device_lifetime_length))\n", - "511 lifetime_conditions>=10^lifetime_care_plans/encounters_lifetime_total_cost\n", - "512 lifetime_conditions>=DALY*log(procedures_lifetime)/log(10)\n", - "513 lifetime_conditions<=active_care_plans+active_conditions\n", - "514 lifetime_conditions<=active_conditions+procedures_lifetime\n", - "515 lifetime_conditions<=encounters_count-1\n", - "516 lifetime_conditions<=maximum(active_conditions,immunizations_lifetime_cost)\n", - "517 lifetime_conditions<=active_conditions/floor(QOLS)\n", - "518 lifetime_conditions<=minimum(healthcare_expenses,floor(Urea_Nitrogen))\n", - "519 lifetime_conditions<=1/2*active_care_plans+active_conditions\n", - "520 lifetime_conditions>=active_conditions\n", - "521 lifetime_conditions>=ceil(log(healthcare_expenses)/log(10))\n", - "522 lifetime_conditions>=medications_active+1\n", - "523 lifetime_conditions>=active_care_plans+procedures_lifetime-1\n", - "524 lifetime_conditions>=immunizations_lifetime+lifetime_care_plans\n", - "525 lifetime_conditions>=floor(log(encounters_lifetime_payer_coverage))\n", - "526 active_condition_length<=age\n", - "527 active_condition_length<=-1/DALY+Heart_rate\n", - "528 active_condition_length<=maximum(active_care_plan_length,healthcare_expenses/healthcare_coverage)\n", - "529 active_condition_length<=maximum(active_care_plan_length,sqrt(healthcare_coverage))\n", - "530 active_condition_length<=maximum(active_care_plan_length,procedures_lifetime_cost)\n", - "531 active_condition_length<=maximum(active_care_plan_length,10^medications_active)\n", - "532 active_condition_length<=QALY*active_care_plan_length\n", - "533 active_condition_length<=maximum(Sodium,abs(active_care_plan_length))\n", - "534 active_condition_length<=maximum(active_care_plan_length,e^active_conditions)\n", - "535 active_condition_length<=maximum(active_care_plan_length,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "536 active_condition_length>=active_care_plan_length/active_conditions\n", - "537 active_condition_length>=active_care_plan_length^imaging_studies_lifetime\n", - "538 active_condition_length>=10^log(sqrt(DALY))\n", - "539 active_condition_length>=minimum(latitude,1/2*encounters_count)\n", - "540 active_condition_length>=minimum(immunizations_lifetime_cost,floor(latitude))\n", - "541 active_condition_length>=medications_lifetime_dispenses/age+1\n", - "542 active_condition_length>=log(mean_Calcium^device_lifetime_length)\n", - "543 active_condition_length>=e^(10^encounters_lifetime_perc_covered)\n", - "544 active_condition_length>=2*medications_active/QOLS\n", - "545 active_condition_length<=-sqrt(immunizations_lifetime_cost)+age\n", - "546 active_condition_length<=active_care_plan_length/encounters_lifetime_perc_covered-1\n", - "547 active_condition_length<=maximum(active_care_plan_length,procedures_lifetime_cost)\n", - "548 active_condition_length<=maximum(active_care_plan_length,10^procedures_lifetime)\n", - "549 active_condition_length<=maximum(Systolic_Blood_Pressure,abs(active_care_plan_length))\n", - "550 active_condition_length<=medications_active^(10^QOLS)\n", - "551 active_condition_length<=maximum(Body_Mass_Index,10^DALY)\n", - "552 active_condition_length<=sqrt(medications_lifetime_cost)/procedures_lifetime\n", - "553 active_condition_length<=maximum(active_care_plan_length,healthcare_expenses/encounters_lifetime_total_cost)\n", - "554 active_condition_length>=active_care_plan_length\n", - "555 active_condition_length>=QALY/(QOLS+1)\n", - "556 active_condition_length>=-DALY+ceil(latitude)\n", - "557 active_condition_length>=-sqrt(encounters_lifetime_total_cost)+age\n", - "558 active_condition_length>=2*maximum(Body_temperature,mean_DALY)\n", - "559 active_condition_length>=active_care_plans^2/encounters_lifetime_perc_covered^2\n", - "560 active_condition_length>=QALY^encounters_lifetime_perc_covered+1\n", - "561 active_condition_length>=encounters_count/(DALY-1)\n", - "562 active_condition_length>=1/2*lifetime_care_plan_length/DALY\n", - "563 active_condition_length<=sqrt(lifetime_condition_length)+latitude\n", - "564 active_condition_length<=encounters_lifetime_payer_coverage/ceil(DALY)\n", - "565 active_condition_length<=floor(lifetime_condition_length)-lifetime_care_plan_length\n", - "566 active_condition_length<=(healthcare_expenses/medications_lifetime_cost)^active_conditions\n", - "567 active_condition_length<=maximum(Triglycerides,floor(latitude))\n", - "568 active_condition_length<=encounters_count^(log(medications_lifetime_dispenses)/log(10))\n", - "569 active_condition_length<=sqrt(encounters_lifetime_total_cost/medications_lifetime_perc_covered)\n", - "570 active_condition_length<=maximum(procedures_lifetime_cost,sqrt(medications_lifetime_length))\n", - "571 active_condition_length<=sqrt(healthcare_coverage-medications_lifetime_length)\n", - "572 active_condition_length<=10^(sqrt(QOLS)+1)\n", - "573 active_condition_length>=1/2*QALY+1/2*encounters_lifetime_perc_covered\n", - "574 active_condition_length>=-2*QALY+lifetime_care_plan_length\n", - "575 active_condition_length>=log(10)*procedures_lifetime/log(DALY)\n", - "576 active_condition_length>=active_care_plan_length^imaging_studies_lifetime\n", - "577 active_condition_length>=active_care_plan_length-immunizations_lifetime_cost\n", - "578 active_condition_length>=age/sqrt(DALY)\n", - "579 active_condition_length>=-10^lifetime_care_plans+lifetime_condition_length\n", - "580 active_condition_length>=minimum(active_care_plan_length,procedures_lifetime_cost)\n", - "581 active_condition_length>=active_care_plan_length/medications_active\n", - "582 active_condition_length>=minimum(QALY,e^active_care_plans)\n", - "583 lifetime_condition_length<=10^lifetime_care_plans+DALY\n", - "584 lifetime_condition_length<=active_care_plan_length*active_conditions+1\n", - "585 lifetime_condition_length<=healthcare_expenses/medications_lifetime_dispenses+active_condition_length\n", - "586 lifetime_condition_length<=log(e^active_condition_length)^2/log(10)^2\n", - "587 lifetime_condition_length<=-active_care_plan_length+1/2*encounters_lifetime_payer_coverage\n", - "588 lifetime_condition_length<=medications_lifetime_cost/sqrt(procedures_lifetime_cost)\n", - "589 lifetime_condition_length<=age*healthcare_expenses/healthcare_coverage\n", - "590 lifetime_condition_length<=medications_lifetime_length/active_care_plans\n", - "591 lifetime_condition_length<=active_care_plan_length^(log(QALY)/log(10))\n", - "592 lifetime_condition_length<=healthcare_expenses*lifetime_conditions/encounters_lifetime_total_cost\n", - "593 lifetime_condition_length>=2*minimum(latitude,lifetime_care_plan_length)\n", - "594 lifetime_condition_length>=immunizations_lifetime^sqrt(active_care_plan_length)\n", - "595 lifetime_condition_length>=-2*QALY+2*lifetime_care_plan_length\n", - "596 lifetime_condition_length>=2*active_care_plan_length-1\n", - "597 lifetime_condition_length>=QALY+active_care_plan_length-1\n", - "598 lifetime_condition_length>=1/2*active_condition_length*lifetime_conditions\n", - "599 lifetime_condition_length>=1/2*active_conditions+1/2*medications_lifetime\n", - "600 lifetime_condition_length>=sqrt(encounters_count*medications_lifetime)\n", - "601 lifetime_condition_length>=QALY/(DALY-1)\n", - "602 lifetime_condition_length>=active_condition_length*e^QOLS\n", - "603 lifetime_condition_length<=healthcare_expenses^QOLS*lifetime_care_plan_length\n", - "604 lifetime_condition_length<=maximum(lifetime_care_plan_length,10^active_conditions)\n", - "605 lifetime_condition_length<=longitude+1/2*medications_lifetime_length\n", - "606 lifetime_condition_length<=encounters_count^2+DALY\n", - "607 lifetime_condition_length<=healthcare_expenses/(device_lifetime_length*medications_lifetime_dispenses)\n", - "608 lifetime_condition_length<=sqrt(active_care_plan_length)*age\n", - "609 lifetime_condition_length<=e^(medications_lifetime_perc_covered^longitude)\n", - "610 lifetime_condition_length<=e^active_care_plans*lifetime_care_plan_length\n", - "611 lifetime_condition_length<=10^active_care_plans/medications_lifetime_perc_covered\n", - "612 lifetime_condition_length<=QALY*ceil(DALY)\n", - "613 lifetime_condition_length>=(log(healthcare_coverage)+1)^2\n", - "614 lifetime_condition_length>=1/2*active_care_plans*age\n", - "615 lifetime_condition_length>=1/2*active_conditions*procedures_lifetime\n", - "616 lifetime_condition_length>=sqrt(active_conditions)+medications_lifetime\n", - "617 lifetime_condition_length>=ceil(10^log(lifetime_conditions))\n", - "618 lifetime_condition_length>=2*lifetime_conditions^2+2\n", - "619 lifetime_condition_length>=active_condition_length+latitude+1\n", - "620 lifetime_condition_length>=10^immunizations_lifetime+lifetime_care_plan_length\n", - "621 lifetime_condition_length>=device_lifetime_length*log(encounters_lifetime_total_cost)\n", - "622 lifetime_condition_length<=healthcare_expenses/medications_lifetime_dispenses+lifetime_care_plan_length\n", - "623 lifetime_condition_length<=(active_conditions-1)*latitude\n", - "624 lifetime_condition_length<=2*active_care_plans*active_condition_length\n", - "625 lifetime_condition_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*encounters_count^2\n", - "626 lifetime_condition_length<=active_care_plan_length*e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "627 lifetime_condition_length<=2*latitude*medications_lifetime\n", - "628 lifetime_condition_length<=e^medications_active*latitude\n", - "629 lifetime_condition_length<=Systolic_Blood_Pressure/medications_lifetime_perc_covered^2\n", - "630 lifetime_condition_length<=QALY^(log(Heart_rate)/log(10))\n", - "631 lifetime_condition_length<=sqrt(1/2)*e^(1/2*mean_Respiratory_rate)\n", - "632 lifetime_condition_length>=1/encounters_lifetime_perc_covered+QALY\n", - "633 lifetime_condition_length>=1/2*encounters_count+1/2*medications_lifetime\n", - "634 lifetime_condition_length>=active_conditions*procedures_lifetime-1\n", - "635 lifetime_condition_length>=minimum(DALY,Respiratory_rate)^2\n", - "636 lifetime_condition_length>=immunizations_lifetime_cost*log(DALY)/log(10)\n", - "637 lifetime_condition_length>=log(mean_Chloride^device_lifetime_length)\n", - "638 lifetime_condition_length>=immunizations_lifetime^sqrt(active_care_plan_length)\n", - "639 lifetime_condition_length>=active_care_plan_length/(DALY-1)\n", - "640 lifetime_condition_length>=DALY^2/lifetime_conditions\n", - "641 lifetime_condition_length>=maximum(Glucose,mean_DALY)+1\n", - "642 device_lifetime_length<=num_allergies\n", - "643 device_lifetime_length>=num_allergies\n", - "644 device_lifetime_length>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,-healthcare_expenses)\n", - "645 device_lifetime_length>=log(1/2*sqrt(active_care_plans))/log(10)\n", - "646 device_lifetime_length<=num_allergies\n", - "647 device_lifetime_length<=imaging_studies_lifetime\n", - "648 device_lifetime_length>=num_allergies\n", - "649 device_lifetime_length<=(QALY-1)^(1/log(10))\n", - "650 device_lifetime_length<=active_care_plan_length\n", - "651 device_lifetime_length<=immunizations_lifetime_cost\n", - "652 device_lifetime_length<=healthcare_expenses*medications_lifetime_perc_covered\n", - "653 device_lifetime_length<=DALY\n", - "654 device_lifetime_length<=-log(imaging_studies_lifetime)/log(10)\n", - "655 device_lifetime_length<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^immunizations_lifetime_cost\n", - "656 device_lifetime_length<=2*medications_active\n", - "657 device_lifetime_length>=-num_allergies\n", - "658 device_lifetime_length>=log(num_allergies)/log(10)\n", - "659 device_lifetime_length>=2*imaging_studies_lifetime*immunizations_lifetime\n", - "660 encounters_count<=floor(1/2*lifetime_condition_length)\n", - "661 encounters_count<=QALY/ceil(device_lifetime_length)\n", - "662 encounters_count<=2*log(procedures_lifetime_cost)^2\n", - "663 encounters_count<=maximum(medications_lifetime,2*QALY)\n", - "664 encounters_count<=maximum(lifetime_care_plan_length,medications_lifetime)\n", - "665 encounters_count<=10^active_care_plans+1\n", - "666 encounters_count<=DALY^2+medications_lifetime\n", - "667 encounters_count<=4*active_conditions^2\n", - "668 encounters_count<=maximum(immunizations_lifetime_cost,medications_lifetime^2)\n", - "669 encounters_count<=latitude^(10^medications_lifetime_perc_covered)\n", - "670 encounters_count>=minimum(medications_lifetime,Respiratory_rate)\n", - "671 encounters_count>=longitude+1/2*medications_lifetime\n", - "672 encounters_count>=lifetime_conditions\n", - "673 encounters_count>=device_lifetime_length*procedures_lifetime+1\n", - "674 encounters_count>=encounters_lifetime_total_cost/(immunizations_lifetime_cost-1)\n", - "675 encounters_count>=ceil(device_lifetime_length)+1\n", - "676 encounters_count>=minimum(medications_lifetime,1/2*Heart_rate)\n", - "677 encounters_count>=minimum(immunizations_lifetime_cost,10^Creatinine)\n", - "678 encounters_count>=active_conditions+procedures_lifetime\n", - "679 encounters_count>=1/2*maximum(Protein__Mass_volume__in_Serum,Plasma,mean_DALY)\n", - "680 encounters_count<=2*ceil(Glucose)+1\n", - "681 encounters_count<=minimum(healthcare_expenses,ceil(Hemoglobin__Mass_volume__in_Blood))\n", - "682 encounters_count<=maximum(latitude,medications_lifetime)\n", - "683 encounters_count<=healthcare_expenses/(encounters_lifetime_perc_covered*medications_lifetime_dispenses)\n", - "684 encounters_count<=active_conditions+medications_lifetime+1\n", - "685 encounters_count<=sqrt(encounters_lifetime_total_cost+healthcare_coverage)\n", - "686 encounters_count<=2*lifetime_care_plan_length^Creatinine\n", - "687 encounters_count<=floor(Urea_Nitrogen)+medications_lifetime\n", - "688 encounters_count<=floor(log(device_lifetime_length)^2)\n", - "689 encounters_count>=1/2*encounters_lifetime_total_cost/Body_Weight\n", - "690 encounters_count>=medications_lifetime^QOLS\n", - "691 encounters_count>=1/2*Respiratory_rate\n", - "692 encounters_count>=1/2*maximum(Estimated_Glomerular_Filtration_Rate,mean_DALY)\n", - "693 encounters_count>=ceil(Body_Mass_Index)*immunizations_lifetime\n", - "694 encounters_count>=-2*lifetime_care_plan_length+mean_Systolic_Blood_Pressure\n", - "695 encounters_count>=minimum(medications_lifetime,1/procedures_lifetime)\n", - "696 encounters_count>=active_conditions+procedures_lifetime\n", - "697 encounters_count>=-lifetime_care_plan_length+1/2*medications_lifetime\n", - "698 encounters_count>=minimum(medications_lifetime,1/immunizations_lifetime)\n", - "699 encounters_count<=2*medications_lifetime/imaging_studies_lifetime\n", - "700 encounters_count<=healthcare_expenses/(active_care_plans*lifetime_condition_length)\n", - "701 encounters_count<=maximum(active_condition_length,medications_lifetime+1)\n", - "702 encounters_count<=maximum(age,medications_lifetime-1)\n", - "703 encounters_count<=abs(encounters_lifetime_total_cost-medications_lifetime_length)\n", - "704 encounters_count<=maximum(Triglycerides,10^active_care_plans)\n", - "705 encounters_count<=10^(log(latitude)^2/log(10)^2)\n", - "706 encounters_count<=4*medications_lifetime\n", - "707 encounters_count<=age^(medications_lifetime_perc_covered+1)\n", - "708 encounters_count<=1/medications_lifetime_perc_covered+medications_lifetime\n", - "709 encounters_count>=active_conditions\n", - "710 encounters_count>=Heart_rate+floor(longitude)\n", - "711 encounters_count>=encounters_lifetime_total_cost/(mean_Sodium-1)\n", - "712 encounters_count>=-2*active_condition_length+lifetime_care_plan_length\n", - "713 encounters_count>=10^QOLS+1\n", - "714 encounters_count>=floor(device_lifetime_length)-medications_active\n", - "715 encounters_count>=(medications_lifetime+1)/medications_active\n", - "716 encounters_count>=maximum(mean_Microalbumin_Creatinine_Ratio,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)+1\n", - "717 encounters_count>=minimum(QALY,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "718 encounters_count>=sqrt(active_conditions)*procedures_lifetime\n", - "719 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "720 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "721 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "722 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "723 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "724 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "725 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "726 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "727 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "728 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "729 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "730 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "731 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "732 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "733 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "734 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "735 encounters_lifetime_payer_coverage>=encounters_lifetime_total_cost^(2/log(10))\n", - "736 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "737 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "738 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "739 encounters_lifetime_payer_coverage>=immunizations_lifetime_cost-log(age)\n", - "740 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "741 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "742 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", - "743 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "744 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "745 encounters_lifetime_payer_coverage>=1/4*floor(QALY)^2\n", - "746 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "747 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "748 encounters_lifetime_perc_covered>=(1/active_conditions)\n", - "749 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "750 encounters_lifetime_perc_covered<=active_care_plans\n", - "751 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "752 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "753 encounters_lifetime_perc_covered<=log(sqrt(lifetime_condition_length))^2/log(10)^2\n", - "754 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "755 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "756 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "757 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "758 encounters_lifetime_perc_covered>=(1/active_conditions)\n", - "759 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "760 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "761 imaging_studies_lifetime<=num_allergies\n", - "762 imaging_studies_lifetime>=num_allergies\n", - "763 imaging_studies_lifetime>=(immunizations_lifetime-1)^lifetime_conditions\n", - "764 imaging_studies_lifetime<=num_allergies^procedures_lifetime\n", - "765 imaging_studies_lifetime<=e^num_allergies\n", - "766 imaging_studies_lifetime<=num_allergies^immunizations_lifetime\n", - "767 imaging_studies_lifetime<=ceil(medications_lifetime_perc_covered)\n", - "768 imaging_studies_lifetime<=-active_care_plans+lifetime_care_plans\n", - "769 imaging_studies_lifetime<=num_allergies^device_lifetime_length\n", - "770 imaging_studies_lifetime>=device_lifetime_length\n", - "771 imaging_studies_lifetime<=e^num_allergies\n", - "772 imaging_studies_lifetime<=immunizations_lifetime\n", - "773 imaging_studies_lifetime<=ceil(medications_lifetime_perc_covered)\n", - "774 imaging_studies_lifetime<=procedures_lifetime\n", - "775 imaging_studies_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "776 imaging_studies_lifetime<=num_allergies^device_lifetime_length\n", - "777 imaging_studies_lifetime<=-active_conditions+lifetime_conditions\n", - "778 imaging_studies_lifetime>=-device_lifetime_length\n", - "779 imaging_studies_lifetime>=-num_allergies\n", - "780 immunizations_lifetime<=active_conditions\n", - "781 immunizations_lifetime<=immunizations_lifetime_cost\n", - "782 immunizations_lifetime<=e^num_allergies\n", - "783 immunizations_lifetime<=medications_lifetime^num_allergies\n", - "784 immunizations_lifetime>=device_lifetime_length\n", - "785 immunizations_lifetime>=imaging_studies_lifetime\n", - "786 immunizations_lifetime>=num_allergies-1\n", - "787 immunizations_lifetime>=1/QOLS-2\n", - "788 immunizations_lifetime>=floor(immunizations_lifetime_cost/lifetime_condition_length)\n", - "789 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", - "790 immunizations_lifetime>=floor(log(procedures_lifetime)/log(10))\n", - "791 immunizations_lifetime>=-active_care_plans+medications_active\n", - "792 immunizations_lifetime>=(num_allergies-1)^encounters_count\n", - "793 immunizations_lifetime<=active_care_plans\n", - "794 immunizations_lifetime<=immunizations_lifetime_cost\n", - "795 immunizations_lifetime<=floor(1/medications_lifetime_perc_covered)\n", - "796 immunizations_lifetime<=sqrt(medications_lifetime)\n", - "797 immunizations_lifetime<=minimum(healthcare_expenses,Specific_gravity_of_Urine_by_Test_strip)\n", - "798 immunizations_lifetime<=floor(sqrt(medications_active))\n", - "799 immunizations_lifetime>=num_allergies\n", - "800 immunizations_lifetime>=num_allergies^active_care_plans\n", - "801 immunizations_lifetime>=minimum(immunizations_lifetime_cost,e^num_allergies)\n", - "802 immunizations_lifetime>=floor(log(1/2*immunizations_lifetime_cost)/log(10))\n", - "803 immunizations_lifetime>=-active_care_plans+procedures_lifetime\n", - "804 immunizations_lifetime<=lifetime_care_plans\n", - "805 immunizations_lifetime<=immunizations_lifetime_cost\n", - "806 immunizations_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "807 immunizations_lifetime<=e^imaging_studies_lifetime\n", - "808 immunizations_lifetime<=e^device_lifetime_length\n", - "809 immunizations_lifetime>=num_allergies\n", - "810 immunizations_lifetime>=num_allergies^medications_lifetime\n", - "811 immunizations_lifetime>=-active_conditions+lifetime_conditions\n", - "812 immunizations_lifetime>=floor(log(device_lifetime_length)/log(10))\n", - "813 immunizations_lifetime>=floor(log(1/2*immunizations_lifetime_cost)/log(10))\n", - "814 immunizations_lifetime>=floor(log(active_care_plans))\n", - "815 immunizations_lifetime_cost<=10^sqrt(encounters_count-1)\n", - "816 immunizations_lifetime_cost<=(2*age)^immunizations_lifetime\n", - "817 immunizations_lifetime_cost<=-2*longitude+procedures_lifetime_cost\n", - "818 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "819 immunizations_lifetime_cost<=floor(log(medications_lifetime_cost))^2\n", - "820 immunizations_lifetime_cost<=maximum(mean_Sodium,1/imaging_studies_lifetime)\n", - "821 immunizations_lifetime_cost<=maximum(mean_Sodium,healthcare_expenses/encounters_lifetime_total_cost)\n", - "822 immunizations_lifetime_cost>=num_allergies\n", - "823 immunizations_lifetime_cost>=sqrt(device_lifetime_length)^lifetime_care_plans\n", - "824 immunizations_lifetime_cost>=medications_lifetime_cost^(1/DALY)\n", - "825 immunizations_lifetime_cost>=sqrt(healthcare_coverage)-procedures_lifetime_cost\n", - "826 immunizations_lifetime_cost>=-QALY+2*encounters_count\n", - "827 immunizations_lifetime_cost>=-QALY+1/2*lifetime_condition_length\n", - "828 immunizations_lifetime_cost>=(immunizations_lifetime^2)^active_conditions\n", - "829 immunizations_lifetime_cost>=medications_lifetime^2/lifetime_condition_length\n", - "830 immunizations_lifetime_cost>=log(Body_Mass_Index^device_lifetime_length)\n", - "831 immunizations_lifetime_cost>=2*encounters_count-procedures_lifetime_cost\n", - "832 immunizations_lifetime_cost<=-1/2*QALY+1/2*encounters_lifetime_payer_coverage\n", - "833 immunizations_lifetime_cost<=e^(age^QOLS)\n", - "834 immunizations_lifetime_cost<=sqrt(encounters_lifetime_total_cost*lifetime_care_plan_length)\n", - "835 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "836 immunizations_lifetime_cost<=2*age/medications_lifetime_perc_covered\n", - "837 immunizations_lifetime_cost<=minimum(healthcare_expenses,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1)\n", - "838 immunizations_lifetime_cost<=encounters_lifetime_total_cost/10^imaging_studies_lifetime\n", - "839 immunizations_lifetime_cost<=maximum(procedures_lifetime_cost,2*medications_lifetime)\n", - "840 immunizations_lifetime_cost<=e^(1/2*10^immunizations_lifetime)\n", - "841 immunizations_lifetime_cost>=num_allergies\n", - "842 immunizations_lifetime_cost>=2*active_care_plan_length*immunizations_lifetime\n", - "843 immunizations_lifetime_cost>=imaging_studies_lifetime*sqrt(lifetime_condition_length)\n", - "844 immunizations_lifetime_cost>=age*immunizations_lifetime^2\n", - "845 immunizations_lifetime_cost>=1/2*encounters_lifetime_total_cost-medications_lifetime_cost\n", - "846 immunizations_lifetime_cost>=log(age^device_lifetime_length)/log(10)\n", - "847 immunizations_lifetime_cost>=sqrt(encounters_lifetime_payer_coverage)*immunizations_lifetime\n", - "848 immunizations_lifetime_cost>=immunizations_lifetime*sqrt(medications_lifetime_length)\n", - "849 immunizations_lifetime_cost>=encounters_count/(device_lifetime_length-1)\n", - "850 immunizations_lifetime_cost<=healthcare_coverage\n", - "851 immunizations_lifetime_cost<=-2*longitude-1\n", - "852 immunizations_lifetime_cost<=medications_lifetime_cost\n", - "853 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "854 immunizations_lifetime_cost<=10^log(sqrt(age))\n", - "855 immunizations_lifetime_cost<=1/2*medications_lifetime_length/active_conditions\n", - "856 immunizations_lifetime_cost<=1/2*10^sqrt(encounters_count)\n", - "857 immunizations_lifetime_cost<=log(e^QALY)^2/log(10)^2\n", - "858 immunizations_lifetime_cost>=device_lifetime_length\n", - "859 immunizations_lifetime_cost>=1/2*encounters_lifetime_payer_coverage-medications_lifetime_cost\n", - "860 immunizations_lifetime_cost>=ceil(active_care_plans*device_lifetime_length)\n", - "861 immunizations_lifetime_cost>=imaging_studies_lifetime*sqrt(procedures_lifetime_cost)\n", - "862 immunizations_lifetime_cost>=2*encounters_count-2*lifetime_care_plan_length\n", - "863 immunizations_lifetime_cost>=16*immunizations_lifetime^4\n", - "864 immunizations_lifetime_cost>=2*active_care_plan_length*immunizations_lifetime\n", - "865 medications_lifetime<=(active_conditions-1)*QALY\n", - "866 medications_lifetime<=(DALY+1)*encounters_count\n", - "867 medications_lifetime<=maximum(age,e^DALY)\n", - "868 medications_lifetime<=healthcare_coverage/immunizations_lifetime_cost-1\n", - "869 medications_lifetime<=floor(QALY+lifetime_condition_length)\n", - "870 medications_lifetime<=maximum(encounters_count,e^active_conditions)\n", - "871 medications_lifetime<=2*encounters_count/num_allergies\n", - "872 medications_lifetime<=latitude^(1/medications_lifetime_perc_covered)\n", - "873 medications_lifetime<=floor(1/4*encounters_count^2)\n", - "874 medications_lifetime<=e^encounters_count/latitude\n", - "875 medications_lifetime>=e^medications_active*procedures_lifetime\n", - "876 medications_lifetime>=active_care_plan_length*log(procedures_lifetime)\n", - "877 medications_lifetime>=device_lifetime_length*sqrt(latitude)\n", - "878 medications_lifetime>=medications_active\n", - "879 medications_lifetime>=medications_active^2-2\n", - "880 medications_lifetime>=minimum(encounters_lifetime_payer_coverage,Respiratory_rate-1)\n", - "881 medications_lifetime>=e^(lifetime_care_plan_length/QALY)\n", - "882 medications_lifetime>=sqrt(QALY)*procedures_lifetime\n", - "883 medications_lifetime>=1/8*device_lifetime_length^2\n", - "884 medications_lifetime>=(Carbon_Dioxide^2)^imaging_studies_lifetime\n", - "885 medications_lifetime<=encounters_lifetime_total_cost\n", - "886 medications_lifetime<=ceil(lifetime_condition_length)\n", - "887 medications_lifetime<=10^(1/QOLS+1)\n", - "888 medications_lifetime<=healthcare_expenses/(active_care_plans*lifetime_care_plan_length)\n", - "889 medications_lifetime<=(DALY+1)*latitude\n", - "890 medications_lifetime<=e^(encounters_count^(1/log(10)))\n", - "891 medications_lifetime<=medications_lifetime_length/(active_conditions+1)\n", - "892 medications_lifetime<=(healthcare_expenses-medications_lifetime_length)/lifetime_condition_length\n", - "893 medications_lifetime<=sqrt(QALY)*active_care_plan_length\n", - "894 medications_lifetime<=2*age+2*immunizations_lifetime_cost\n", - "895 medications_lifetime>=-active_care_plans+encounters_count\n", - "896 medications_lifetime>=active_conditions^2\n", - "897 medications_lifetime>=sqrt(healthcare_coverage)-immunizations_lifetime_cost\n", - "898 medications_lifetime>=active_conditions+floor(active_condition_length)\n", - "899 medications_lifetime>=encounters_count-procedures_lifetime\n", - "900 medications_lifetime>=encounters_count/active_care_plans\n", - "901 medications_lifetime>=lifetime_condition_length*log(10)/log(procedures_lifetime_cost)\n", - "902 medications_lifetime>=encounters_lifetime_perc_covered*e^lifetime_care_plans\n", - "903 medications_lifetime>=device_lifetime_length*log(age)\n", - "904 medications_lifetime>=-age+2*encounters_count\n", - "905 medications_lifetime<=(latitude-1)/medications_lifetime_perc_covered\n", - "906 medications_lifetime<=minimum(healthcare_expenses,Total_score__MMSE_-1)\n", - "907 medications_lifetime<=10^active_care_plans+encounters_count\n", - "908 medications_lifetime<=e^active_care_plan_length\n", - "909 medications_lifetime<=(encounters_count-1)^active_care_plans\n", - "910 medications_lifetime<=minimum(healthcare_expenses,Systolic_Blood_Pressure-1)\n", - "911 medications_lifetime<=sqrt(medications_lifetime_cost)/lifetime_care_plans\n", - "912 medications_lifetime<=1/immunizations_lifetime+encounters_count\n", - "913 medications_lifetime<=minimum(healthcare_expenses,2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", - "914 medications_lifetime<=medications_lifetime_dispenses^sqrt(QOLS)\n", - "915 medications_lifetime>=lifetime_care_plans+1\n", - "916 medications_lifetime>=(1/2*medications_lifetime_dispenses)^medications_lifetime_perc_covered\n", - "917 medications_lifetime>=active_condition_length*log(device_lifetime_length)\n", - "918 medications_lifetime>=medications_active\n", - "919 medications_lifetime>=encounters_count^num_allergies\n", - "920 medications_lifetime>=(2*lifetime_care_plan_length)^imaging_studies_lifetime\n", - "921 medications_lifetime>=device_lifetime_length*log(medications_lifetime_cost)/log(10)\n", - "922 medications_lifetime>=encounters_count-lifetime_conditions-1\n", - "923 medications_lifetime>=ceil(maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_QOLS))\n", - "924 medications_lifetime>=maximum(mean_Microalbumin_Creatinine_Ratio,mean_QOLS)+1\n", - "925 medications_lifetime_cost<=-(encounters_lifetime_payer_coverage-healthcare_expenses)*encounters_lifetime_perc_covered\n", - "926 medications_lifetime_cost<=1/2*medications_lifetime_dispenses^2-1\n", - "927 medications_lifetime_cost<=encounters_count^2*lifetime_condition_length\n", - "928 medications_lifetime_cost<=1/2*healthcare_expenses-procedures_lifetime_cost\n", - "929 medications_lifetime_cost<=e^(10^(QOLS+1))\n", - "930 medications_lifetime_cost<=2*10^(active_conditions+1)\n", - "931 medications_lifetime_cost<=encounters_lifetime_total_cost^2/lifetime_care_plan_length\n", - "932 medications_lifetime_cost<=2*latitude*medications_lifetime_length\n", - "933 medications_lifetime_cost<=e^(2*sqrt(lifetime_care_plan_length))\n", - "934 medications_lifetime_cost<=2*lifetime_condition_length*medications_lifetime_dispenses\n", - "935 medications_lifetime_cost>=10^(lifetime_conditions^encounters_lifetime_perc_covered)\n", - "936 medications_lifetime_cost>=mean_Systolic_Blood_Pressure^(log(medications_lifetime)/log(10))\n", - "937 medications_lifetime_cost>=medications_active^2*medications_lifetime_length\n", - "938 medications_lifetime_cost>=Heart_rate^2/QOLS\n", - "939 medications_lifetime_cost>=(immunizations_lifetime_cost+1)*QALY\n", - "940 medications_lifetime_cost>=(2*lifetime_care_plans)^active_care_plans\n", - "941 medications_lifetime_cost>=(active_care_plans^2)^medications_active\n", - "942 medications_lifetime_cost>=(device_lifetime_length+1)*encounters_lifetime_payer_coverage\n", - "943 medications_lifetime_cost>=(2*immunizations_lifetime_cost)^immunizations_lifetime\n", - "944 medications_lifetime_cost>=active_conditions^2*device_lifetime_length^2\n", - "945 medications_lifetime_cost<=10^log(2*lifetime_condition_length)\n", - "946 medications_lifetime_cost<=10^e^sqrt(active_care_plans)\n", - "947 medications_lifetime_cost<=healthcare_expenses*log(active_conditions)\n", - "948 medications_lifetime_cost<=e^(log(lifetime_care_plan_length)^2)\n", - "949 medications_lifetime_cost<=(healthcare_coverage-medications_lifetime)*age\n", - "950 medications_lifetime_cost<=QOLS^(-lifetime_condition_length)\n", - "951 medications_lifetime_cost<=encounters_lifetime_total_cost^2/medications_lifetime\n", - "952 medications_lifetime_cost<=(healthcare_expenses/latitude)^DALY\n", - "953 medications_lifetime_cost<=medications_lifetime_dispenses^2/encounters_lifetime_perc_covered^2\n", - "954 medications_lifetime_cost<=QALY*healthcare_expenses/active_conditions\n", - "955 medications_lifetime_cost>=e^active_conditions+lifetime_condition_length\n", - "956 medications_lifetime_cost>=active_care_plans^e^imaging_studies_lifetime\n", - "957 medications_lifetime_cost>=procedures_lifetime_cost/sqrt(QOLS)\n", - "958 medications_lifetime_cost>=(longitude+2)^2\n", - "959 medications_lifetime_cost>=e^lifetime_care_plans*lifetime_conditions\n", - "960 medications_lifetime_cost>=2*active_condition_length*medications_lifetime_dispenses\n", - "961 medications_lifetime_cost>=10^medications_active/latitude\n", - "962 medications_lifetime_cost>=encounters_lifetime_total_cost/encounters_lifetime_perc_covered^2\n", - "963 medications_lifetime_cost>=lifetime_conditions^(active_care_plans-1)\n", - "964 medications_lifetime_cost>=medications_lifetime_length^2/lifetime_condition_length\n", - "965 medications_lifetime_cost<=(Body_Mass_Index^2-1)^2\n", - "966 medications_lifetime_cost<=(Heart_rate-1)*medications_lifetime_length\n", - "967 medications_lifetime_cost<=log(age)^Calcium\n", - "968 medications_lifetime_cost<=(Chloride-1)*encounters_lifetime_payer_coverage\n", - "969 medications_lifetime_cost<=latitude^(log(encounters_lifetime_payer_coverage)/log(10))\n", - "970 medications_lifetime_cost<=e^mean_Urea_Nitrogen*mean_Calcium\n", - "971 medications_lifetime_cost<=10^(mean_Glucose/Respiratory_rate)\n", - "972 medications_lifetime_cost<=Body_Weight*Chloride^2\n", - "973 medications_lifetime_cost<=10^(sqrt(1/2)*sqrt(lifetime_condition_length))\n", - "974 medications_lifetime_cost>=1/2*QALY*medications_lifetime_length\n", - "975 medications_lifetime_cost>=healthcare_coverage/log(lifetime_care_plan_length)\n", - "976 medications_lifetime_cost>=1/2*encounters_lifetime_total_cost*latitude\n", - "977 medications_lifetime_cost>=(DALY+1)*encounters_lifetime_total_cost\n", - "978 medications_lifetime_cost>=QALY^2*medications_active^2\n", - "979 medications_lifetime_cost>=QALY^e^imaging_studies_lifetime\n", - "980 medications_lifetime_cost>=e^(device_lifetime_length+longitude)\n", - "981 medications_lifetime_cost>=(log(encounters_lifetime_total_cost)/log(10))^lifetime_care_plans\n", - "982 medications_lifetime_cost>=medications_lifetime_length^2/lifetime_condition_length\n", - "983 medications_lifetime_perc_covered<=active_care_plans\n", - "984 medications_lifetime_perc_covered<=log(log(lifetime_condition_length)/log(10))\n", - "985 medications_lifetime_perc_covered<=encounters_lifetime_payer_coverage/active_care_plan_length^2\n", - "986 medications_lifetime_perc_covered<=maximum(encounters_lifetime_perc_covered,immunizations_lifetime)\n", - "987 medications_lifetime_perc_covered<=-active_care_plan_length+lifetime_care_plan_length\n", - "988 medications_lifetime_perc_covered<=10^medications_active/lifetime_condition_length\n", - "989 medications_lifetime_perc_covered<=(active_care_plans+1)/active_conditions\n", - "990 medications_lifetime_perc_covered<=minimum(healthcare_expenses,log(Glucose__Mass_volume__in_Urine_by_Test_strip)/log(10))\n", - "991 medications_lifetime_perc_covered<=sqrt(encounters_count/medications_lifetime)\n", - "992 medications_lifetime_perc_covered<=1/(lifetime_condition_length*num_allergies)\n", - "993 medications_lifetime_perc_covered>=-num_allergies\n", - "994 medications_lifetime_perc_covered>=log(10)*num_allergies/log(encounters_count)\n", - "995 medications_lifetime_perc_covered>=device_lifetime_length/lifetime_care_plan_length\n", - "996 medications_lifetime_perc_covered>=imaging_studies_lifetime/log(encounters_count)\n", - "997 medications_lifetime_perc_covered>=encounters_lifetime_total_cost/healthcare_coverage-1\n", - "998 medications_lifetime_perc_covered>=imaging_studies_lifetime/log(mean_Systolic_Blood_Pressure)\n", - "999 medications_lifetime_perc_covered>=-active_care_plan_length+floor(latitude)\n", - "1000 medications_lifetime_perc_covered>=device_lifetime_length-e^medications_active\n", - "1001 medications_lifetime_perc_covered<=medications_lifetime^2/immunizations_lifetime_cost^2\n", - "1002 medications_lifetime_perc_covered<=log(medications_lifetime)/log(10)\n", - "1003 medications_lifetime_perc_covered<=active_condition_length/ceil(QALY)\n", - "1004 medications_lifetime_perc_covered<=latitude/medications_active^2\n", - "1005 medications_lifetime_perc_covered<=healthcare_expenses^2/medications_lifetime_cost^2\n", - "1006 medications_lifetime_perc_covered<=(1/2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^procedures_lifetime\n", - "1007 medications_lifetime_perc_covered<=QALY^2/procedures_lifetime^2\n", - "1008 medications_lifetime_perc_covered<=ceil(DALY)-immunizations_lifetime\n", - "1009 medications_lifetime_perc_covered<=log(log(sqrt(medications_lifetime_cost)))/log(10)\n", - "1010 medications_lifetime_perc_covered<=1/4*procedures_lifetime+1/2\n", - "1011 medications_lifetime_perc_covered>=num_allergies\n", - "1012 medications_lifetime_perc_covered>=log(1/QOLS-1)\n", - "1013 medications_lifetime_perc_covered>=minimum(imaging_studies_lifetime,log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10))\n", - "1014 medications_lifetime_perc_covered>=sqrt(medications_active)-DALY\n", - "1015 medications_lifetime_perc_covered>=log(1/2*sqrt(active_care_plans))/log(10)\n", - "1016 medications_lifetime_perc_covered<=sqrt(log(1/2*active_conditions)/log(10))\n", - "1017 medications_lifetime_perc_covered<=immunizations_lifetime\n", - "1018 medications_lifetime_perc_covered<=longitude^2/medications_lifetime_length\n", - "1019 medications_lifetime_perc_covered<=4*encounters_lifetime_perc_covered^2\n", - "1020 medications_lifetime_perc_covered<=floor(DALY)\n", - "1021 medications_lifetime_perc_covered<=1/2*10^(1/medications_active)\n", - "1022 medications_lifetime_perc_covered<=log(sqrt(DALY))^2\n", - "1023 medications_lifetime_perc_covered<=(encounters_lifetime_payer_coverage-1)/medications_lifetime_length\n", - "1024 medications_lifetime_perc_covered<=1/2*log(floor(QALY))/log(10)\n", - "1025 medications_lifetime_perc_covered>=device_lifetime_length\n", - "1026 medications_lifetime_perc_covered>=medications_lifetime_cost/healthcare_expenses-1\n", - "1027 medications_lifetime_perc_covered>=-active_care_plan_length+latitude-1\n", - "1028 medications_lifetime_perc_covered>=num_allergies/10^immunizations_lifetime\n", - "1029 medications_lifetime_perc_covered>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "1030 medications_lifetime_perc_covered>=sqrt(lifetime_care_plans)-2\n", - "1031 medications_lifetime_perc_covered>=-sqrt(encounters_lifetime_perc_covered)+QOLS\n", - "1032 medications_lifetime_perc_covered>=1/2*Diastolic_Blood_Pressure-active_care_plan_length\n", - "1033 medications_lifetime_perc_covered>=log(age/Heart_rate)\n", - "1034 medications_lifetime_perc_covered>=1/4*active_care_plans-1\n", - "1035 medications_lifetime_length<=-encounters_count+1/2*healthcare_coverage\n", - "1036 medications_lifetime_length<=log(10^(encounters_lifetime_payer_coverage-1))\n", - "1037 medications_lifetime_length<=longitude^2/medications_lifetime_perc_covered\n", - "1038 medications_lifetime_length<=e^(-immunizations_lifetime)*healthcare_coverage\n", - "1039 medications_lifetime_length<=lifetime_condition_length^2+immunizations_lifetime_cost\n", - "1040 medications_lifetime_length<=sqrt(active_condition_length)*medications_lifetime_dispenses\n", - "1041 medications_lifetime_length<=healthcare_expenses/(immunizations_lifetime*immunizations_lifetime_cost)\n", - "1042 medications_lifetime_length<=active_care_plans*longitude^2\n", - "1043 medications_lifetime_length<=healthcare_expenses/immunizations_lifetime_cost-lifetime_condition_length\n", - "1044 medications_lifetime_length<=healthcare_expenses^QOLS*encounters_count\n", - "1045 medications_lifetime_length>=num_allergies\n", - "1046 medications_lifetime_length>=procedures_lifetime_cost/sqrt(encounters_lifetime_payer_coverage)\n", - "1047 medications_lifetime_length>=medications_lifetime^(encounters_lifetime_perc_covered+1)\n", - "1048 medications_lifetime_length>=encounters_lifetime_payer_coverage*floor(QOLS)\n", - "1049 medications_lifetime_length>=ceil(immunizations_lifetime_cost)/encounters_lifetime_perc_covered\n", - "1050 medications_lifetime_length>=encounters_lifetime_total_cost^medications_lifetime_perc_covered-1\n", - "1051 medications_lifetime_length>=log(active_condition_length)*medications_lifetime_dispenses\n", - "1052 medications_lifetime_length>=encounters_lifetime_payer_coverage+log(device_lifetime_length)\n", - "1053 medications_lifetime_length>=encounters_lifetime_payer_coverage*log(10)/log(procedures_lifetime_cost)\n", - "1054 medications_lifetime_length<=(QALY+medications_lifetime)^2\n", - "1055 medications_lifetime_length<=medications_lifetime_cost\n", - "1056 medications_lifetime_length<=maximum(immunizations_lifetime_cost,medications_lifetime)^2\n", - "1057 medications_lifetime_length<=(encounters_lifetime_total_cost-1)/encounters_lifetime_perc_covered\n", - "1058 medications_lifetime_length<=age^2/medications_lifetime_perc_covered^2\n", - "1059 medications_lifetime_length<=1/2*(lifetime_condition_length+1)^2\n", - "1060 medications_lifetime_length<=active_care_plan_length*lifetime_care_plan_length^2\n", - "1061 medications_lifetime_length<=age^2/encounters_lifetime_perc_covered\n", - "1062 medications_lifetime_length<=1/2*lifetime_care_plan_length^medications_active\n", - "1063 medications_lifetime_length<=2*encounters_lifetime_total_cost/procedures_lifetime\n", - "1064 medications_lifetime_length>=encounters_count^e^encounters_lifetime_perc_covered\n", - "1065 medications_lifetime_length>=log(active_care_plan_length)*medications_lifetime_dispenses\n", - "1066 medications_lifetime_length>=4*medications_lifetime_dispenses+4\n", - "1067 medications_lifetime_length>=healthcare_coverage/(active_condition_length-1)\n", - "1068 medications_lifetime_length>=e^(sqrt(active_care_plan_length+1))\n", - "1069 medications_lifetime_length>=e^DALY/encounters_lifetime_total_cost\n", - "1070 medications_lifetime_length>=encounters_count^2-procedures_lifetime_cost\n", - "1071 medications_lifetime_length>=healthcare_coverage^(log(medications_active)/log(10))\n", - "1072 medications_lifetime_length<=sqrt(encounters_lifetime_perc_covered^longitude)\n", - "1073 medications_lifetime_length<=medications_lifetime_cost\n", - "1074 medications_lifetime_length<=ceil(QALY^active_conditions)\n", - "1075 medications_lifetime_length<=10^ceil(log(latitude))\n", - "1076 medications_lifetime_length<=(2*lifetime_condition_length+1)^2\n", - "1077 medications_lifetime_length<=latitude^2*medications_lifetime\n", - "1078 medications_lifetime_length<=ceil(QALY)^active_care_plans\n", - "1079 medications_lifetime_length<=healthcare_expenses/(lifetime_condition_length*num_allergies)\n", - "1080 medications_lifetime_length<=2*(longitude+1)^2\n", - "1081 medications_lifetime_length<=healthcare_expenses/QALY+encounters_lifetime_total_cost\n", - "1082 medications_lifetime_length>=(1/2*QALY)^QOLS\n", - "1083 medications_lifetime_length>=medications_lifetime_cost/(age-1)\n", - "1084 medications_lifetime_length>=log(QALY)*medications_lifetime_dispenses\n", - "1085 medications_lifetime_length>=mean_Calcium^(active_care_plans-1)\n", - "1086 medications_lifetime_length>=minimum(encounters_lifetime_payer_coverage,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)+1\n", - "1087 medications_lifetime_length>=e^(lifetime_care_plans-2)\n", - "1088 medications_lifetime_length>=sqrt(active_conditions)*medications_lifetime_dispenses\n", - "1089 medications_lifetime_length>=Low_Density_Lipoprotein_Cholesterol^log(medications_active)\n", - "1090 medications_lifetime_length>=log(encounters_lifetime_payer_coverage)*medications_lifetime_dispenses/log(10)\n", - "1091 medications_lifetime_dispenses<=maximum(procedures_lifetime_cost,sqrt(healthcare_expenses))\n", - "1092 medications_lifetime_dispenses<=active_conditions*sqrt(medications_lifetime_cost)\n", - "1093 medications_lifetime_dispenses<=-(encounters_lifetime_total_cost-healthcare_expenses)/encounters_count\n", - "1094 medications_lifetime_dispenses<=encounters_lifetime_total_cost^(2/log(10))\n", - "1095 medications_lifetime_dispenses<=ceil(e^medications_lifetime)\n", - "1096 medications_lifetime_dispenses<=1/2*ceil(1/2*medications_lifetime_length)\n", - "1097 medications_lifetime_dispenses<=1/2*age*latitude\n", - "1098 medications_lifetime_dispenses<=10^e^active_care_plans-1\n", - "1099 medications_lifetime_dispenses<=encounters_lifetime_payer_coverage/log(active_conditions)\n", - "1100 medications_lifetime_dispenses>=medications_lifetime_cost/(procedures_lifetime_cost-1)\n", - "1101 medications_lifetime_dispenses>=medications_lifetime\n", - "1102 medications_lifetime_dispenses>=-2*age+2*lifetime_condition_length\n", - "1103 medications_lifetime_dispenses>=medications_lifetime_length/log(lifetime_condition_length)\n", - "1104 medications_lifetime_dispenses>=DALY*lifetime_care_plans^2\n", - "1105 medications_lifetime_dispenses>=e^(encounters_count/active_care_plan_length)\n", - "1106 medications_lifetime_dispenses>=-lifetime_care_plan_length^2+medications_lifetime_length\n", - "1107 medications_lifetime_dispenses>=-2*healthcare_coverage+medications_lifetime_length\n", - "1108 medications_lifetime_dispenses>=medications_lifetime_length/log(immunizations_lifetime_cost)\n", - "1109 medications_lifetime_dispenses<=medications_lifetime_length/log(active_care_plan_length)\n", - "1110 medications_lifetime_dispenses<=10^(healthcare_coverage/encounters_lifetime_payer_coverage)\n", - "1111 medications_lifetime_dispenses<=active_conditions^2*medications_lifetime^2\n", - "1112 medications_lifetime_dispenses<=minimum(healthcare_coverage,healthcare_expenses/mean_Sodium)\n", - "1113 medications_lifetime_dispenses<=1/2*latitude*lifetime_care_plan_length\n", - "1114 medications_lifetime_dispenses<=(QALY+1)*encounters_count\n", - "1115 medications_lifetime_dispenses<=10^(active_conditions^QOLS)\n", - "1116 medications_lifetime_dispenses<=DALY*sqrt(medications_lifetime_cost)\n", - "1117 medications_lifetime_dispenses<=healthcare_expenses/active_conditions^2\n", - "1118 medications_lifetime_dispenses>=Body_Height*e^encounters_lifetime_perc_covered\n", - "1119 medications_lifetime_dispenses>=2*log(10^lifetime_care_plan_length)\n", - "1120 medications_lifetime_dispenses>=medications_lifetime_length/log(mean_Systolic_Blood_Pressure)\n", - "1121 medications_lifetime_dispenses>=Systolic_Blood_Pressure+encounters_count+1\n", - "1122 medications_lifetime_dispenses>=(1/2*medications_lifetime_length)^medications_lifetime_perc_covered\n", - "1123 medications_lifetime_dispenses>=Heart_rate*log(QALY)\n", - "1124 medications_lifetime_dispenses>=active_care_plans^sqrt(Respiratory_rate)\n", - "1125 medications_lifetime_dispenses>=device_lifetime_length^(log(Body_Weight)/log(10))\n", - "1126 medications_lifetime_dispenses>=medications_active^log(Heart_rate)\n", - "1127 medications_lifetime_dispenses>=-2*Diastolic_Blood_Pressure+2*medications_lifetime\n", - "1128 medications_lifetime_dispenses<=healthcare_coverage\n", - "1129 medications_lifetime_dispenses<=healthcare_coverage/(DALY+1)\n", - "1130 medications_lifetime_dispenses<=medications_lifetime_length/log(QALY)\n", - "1131 medications_lifetime_dispenses<=-(encounters_lifetime_payer_coverage-healthcare_expenses)/latitude\n", - "1132 medications_lifetime_dispenses<=(active_care_plans+encounters_count)^2\n", - "1133 medications_lifetime_dispenses<=e^sqrt(floor(lifetime_care_plan_length))\n", - "1134 medications_lifetime_dispenses<=1/2*QALY^2-1\n", - "1135 medications_lifetime_dispenses<=active_care_plan_length*e^active_conditions\n", - "1136 medications_lifetime_dispenses<=healthcare_expenses/immunizations_lifetime_cost-medications_lifetime\n", - "1137 medications_lifetime_dispenses>=num_allergies\n", - "1138 medications_lifetime_dispenses>=ceil(sqrt(2)*sqrt(procedures_lifetime_cost))\n", - "1139 medications_lifetime_dispenses>=1/2*minimum(procedures_lifetime_cost,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", - "1140 medications_lifetime_dispenses>=floor(medications_lifetime_length/active_condition_length)\n", - "1141 medications_lifetime_dispenses>=10^active_care_plans-QALY\n", - "1142 medications_lifetime_dispenses>=medications_lifetime_length/log(immunizations_lifetime_cost)\n", - "1143 medications_lifetime_dispenses>=DALY^2-immunizations_lifetime_cost\n", - "1144 medications_lifetime_dispenses>=healthcare_expenses^medications_lifetime_perc_covered-active_condition_length\n", - "1145 medications_active<=active_conditions-1\n", - "1146 medications_active<=maximum(immunizations_lifetime_cost,procedures_lifetime)\n", - "1147 medications_active<=2*lifetime_care_plans\n", - "1148 medications_active<=QOLS*healthcare_expenses\n", - "1149 medications_active<=minimum(healthcare_expenses,ceil(Ketones__Mass_volume__in_Urine_by_Test_strip))\n", - "1150 medications_active<=maximum(active_care_plans,DALY)\n", - "1151 medications_active<=Respiratory_rate-imaging_studies_lifetime\n", - "1152 medications_active<=2*Respiratory_rate/active_care_plans\n", - "1153 medications_active<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,2*immunizations_lifetime)\n", - "1154 medications_active<=lifetime_care_plans^2-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1155 medications_active>=immunizations_lifetime\n", - "1156 medications_active>=active_conditions^num_allergies\n", - "1157 medications_active>=ceil(e^medications_lifetime_perc_covered)\n", - "1158 medications_active>=active_care_plans-procedures_lifetime\n", - "1159 medications_active>=minimum(active_care_plans,device_lifetime_length)\n", - "1160 medications_active>=active_conditions-medications_lifetime-1\n", - "1161 medications_active>=floor(sqrt(active_care_plans))\n", - "1162 medications_active>=-2*lifetime_care_plans+lifetime_conditions\n", - "1163 medications_active>=-sqrt(medications_lifetime_dispenses)+DALY\n", - "1164 medications_active<=maximum(Respiratory_rate,e^device_lifetime_length)\n", - "1165 medications_active<=2*lifetime_care_plans\n", - "1166 medications_active<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,ceil(active_care_plans))\n", - "1167 medications_active<=medications_lifetime\n", - "1168 medications_active<=ceil(DALY)\n", - "1169 medications_active<=maximum(active_care_plans,procedures_lifetime_cost)\n", - "1170 medications_active<=2/imaging_studies_lifetime\n", - "1171 medications_active<=active_conditions+procedures_lifetime\n", - "1172 medications_active>=num_allergies\n", - "1173 medications_active>=ceil(DALY)*medications_lifetime_perc_covered\n", - "1174 medications_active>=ceil(medications_lifetime_perc_covered)\n", - "1175 medications_active>=floor(log(DALY))\n", - "1176 medications_active>=1/2*DALY*imaging_studies_lifetime\n", - "1177 medications_active>=imaging_studies_lifetime*lifetime_care_plans\n", - "1178 medications_active>=-active_care_plans+procedures_lifetime\n", - "1179 medications_active>=active_care_plans-procedures_lifetime-1\n", - "1180 medications_active>=10^medications_lifetime_perc_covered-procedures_lifetime\n", - "1181 medications_active<=active_care_plans+1\n", - "1182 medications_active<=medications_lifetime\n", - "1183 medications_active<=ceil(10^QOLS)\n", - "1184 medications_active<=minimum(healthcare_expenses,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", - "1185 medications_active<=ceil(age-latitude)\n", - "1186 medications_active<=QOLS^longitude\n", - "1187 medications_active<=2/num_allergies\n", - "1188 medications_active>=num_allergies\n", - "1189 medications_active>=ceil(device_lifetime_length)\n", - "1190 medications_active>=ceil(4*medications_lifetime_perc_covered)\n", - "1191 medications_active>=procedures_lifetime\n", - "1192 medications_active>=minimum(active_care_plans,e^num_allergies)\n", - "1193 medications_active>=ceil(medications_lifetime_perc_covered)\n", - "1194 medications_active>=floor(medications_lifetime_length/encounters_lifetime_total_cost)\n", - "1195 medications_active>=-active_care_plans+lifetime_care_plans\n", - "1196 procedures_lifetime<=maximum(Triglycerides,active_care_plans-1)\n", - "1197 procedures_lifetime<=maximum(immunizations_lifetime,medications_lifetime)\n", - "1198 procedures_lifetime<=procedures_lifetime_cost\n", - "1199 procedures_lifetime<=minimum(healthcare_expenses,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", - "1200 procedures_lifetime<=active_conditions+medications_active\n", - "1201 procedures_lifetime<=(1/imaging_studies_lifetime)\n", - "1202 procedures_lifetime<=encounters_count-immunizations_lifetime\n", - "1203 procedures_lifetime<=minimum(healthcare_expenses,Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)\n", - "1204 procedures_lifetime>=num_allergies\n", - "1205 procedures_lifetime>=imaging_studies_lifetime\n", - "1206 procedures_lifetime>=floor(1/2*device_lifetime_length)\n", - "1207 procedures_lifetime>=immunizations_lifetime^2-1\n", - "1208 procedures_lifetime>=floor(QOLS)\n", - "1209 procedures_lifetime>=num_allergies^immunizations_lifetime\n", - "1210 procedures_lifetime>=num_allergies^medications_lifetime_perc_covered\n", - "1211 procedures_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*imaging_studies_lifetime\n", - "1212 procedures_lifetime>=-active_care_plan_length+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1213 procedures_lifetime<=active_conditions-1\n", - "1214 procedures_lifetime<=medications_lifetime\n", - "1215 procedures_lifetime<=procedures_lifetime_cost\n", - "1216 procedures_lifetime<=maximum(active_care_plans,1/device_lifetime_length)\n", - "1217 procedures_lifetime<=2*10^immunizations_lifetime\n", - "1218 procedures_lifetime<=10^medications_lifetime_perc_covered*active_care_plans\n", - "1219 procedures_lifetime<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^medications_lifetime\n", - "1220 procedures_lifetime<=(active_care_plans-1)*lifetime_care_plans\n", - "1221 procedures_lifetime>=e^num_allergies\n", - "1222 procedures_lifetime>=1/2*Heart_rate-immunizations_lifetime_cost\n", - "1223 procedures_lifetime>=QOLS\n", - "1224 procedures_lifetime>=imaging_studies_lifetime\n", - "1225 procedures_lifetime>=Body_Mass_Index-encounters_count\n", - "1226 procedures_lifetime>=1/2*10^num_allergies\n", - "1227 procedures_lifetime>=medications_lifetime_cost^2/healthcare_expenses^2\n", - "1228 procedures_lifetime>=(-medications_active)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1229 procedures_lifetime<=(e^healthcare_expenses)^medications_lifetime_perc_covered\n", - "1230 procedures_lifetime<=Diastolic_Blood_Pressure+lifetime_care_plans\n", - "1231 procedures_lifetime<=procedures_lifetime_cost\n", - "1232 procedures_lifetime<=ceil(lifetime_care_plan_length/device_lifetime_length)\n", - "1233 procedures_lifetime<=active_care_plans^(10^QOLS)\n", - "1234 procedures_lifetime<=e^immunizations_lifetime_cost\n", - "1235 procedures_lifetime<=e^DALY\n", - "1236 procedures_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1237 procedures_lifetime<=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,active_care_plans+1)\n", - "1238 procedures_lifetime>=num_allergies\n", - "1239 procedures_lifetime>=num_allergies^healthcare_coverage\n", - "1240 procedures_lifetime>=active_conditions-medications_lifetime_cost\n", - "1241 procedures_lifetime>=floor(log(DALY)/log(10))\n", - "1242 procedures_lifetime>=minimum(procedures_lifetime_cost,2*immunizations_lifetime)\n", - "1243 procedures_lifetime>=floor(encounters_count/lifetime_care_plan_length)\n", - "1244 procedures_lifetime>=log(procedures_lifetime_cost^imaging_studies_lifetime)/log(10)\n", - "1245 procedures_lifetime>=floor(procedures_lifetime_cost/encounters_lifetime_total_cost)\n", - "1246 procedures_lifetime_cost<=immunizations_lifetime_cost^2\n", - "1247 procedures_lifetime_cost<=healthcare_coverage^(DALY^2)\n", - "1248 procedures_lifetime_cost<=e^(e^(1/2*active_conditions))\n", - "1249 procedures_lifetime_cost<=1/2*medications_lifetime*medications_lifetime_dispenses\n", - "1250 procedures_lifetime_cost<=10^procedures_lifetime*lifetime_care_plan_length\n", - "1251 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1252 procedures_lifetime_cost<=e^(sqrt(lifetime_condition_length)+1)\n", - "1253 procedures_lifetime_cost<=2*medications_lifetime_dispenses+medications_lifetime_length\n", - "1254 procedures_lifetime_cost<=healthcare_expenses/latitude-encounters_lifetime_payer_coverage\n", - "1255 procedures_lifetime_cost>=num_allergies\n", - "1256 procedures_lifetime_cost>=lifetime_condition_length*procedures_lifetime^2\n", - "1257 procedures_lifetime_cost>=(immunizations_lifetime-1)*healthcare_coverage\n", - "1258 procedures_lifetime_cost>=e^lifetime_care_plans+longitude\n", - "1259 procedures_lifetime_cost>=healthcare_coverage*procedures_lifetime/QALY\n", - "1260 procedures_lifetime_cost>=healthcare_coverage/encounters_count-encounters_lifetime_total_cost\n", - "1261 procedures_lifetime_cost>=(-DALY)^medications_active\n", - "1262 procedures_lifetime_cost>=sqrt(medications_lifetime_cost)*procedures_lifetime\n", - "1263 procedures_lifetime_cost>=(encounters_count-medications_lifetime)^2\n", - "1264 procedures_lifetime_cost>=2*longitude^immunizations_lifetime\n", - "1265 procedures_lifetime_cost<=medications_lifetime_cost/(medications_active-1)\n", - "1266 procedures_lifetime_cost<=log(10^(1/2*medications_lifetime_dispenses))\n", - "1267 procedures_lifetime_cost<=maximum(medications_lifetime_dispenses,e^medications_lifetime)\n", - "1268 procedures_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "1269 procedures_lifetime_cost<=healthcare_expenses/(active_conditions+1)\n", - "1270 procedures_lifetime_cost<=e^(active_condition_length/active_care_plans)\n", - "1271 procedures_lifetime_cost<=(2*healthcare_coverage)^procedures_lifetime\n", - "1272 procedures_lifetime_cost<=1/2*healthcare_coverage/num_allergies\n", - "1273 procedures_lifetime_cost<=10^(active_care_plan_length^QOLS)\n", - "1274 procedures_lifetime_cost<=healthcare_expenses^encounters_lifetime_perc_covered*medications_lifetime\n", - "1275 procedures_lifetime_cost>=imaging_studies_lifetime\n", - "1276 procedures_lifetime_cost>=healthcare_expenses/QALY-medications_lifetime_cost\n", - "1277 procedures_lifetime_cost>=healthcare_coverage-1/2*medications_lifetime_cost\n", - "1278 procedures_lifetime_cost>=healthcare_expenses*log(immunizations_lifetime)\n", - "1279 procedures_lifetime_cost>=sqrt(medications_lifetime_cost)*procedures_lifetime\n", - "1280 procedures_lifetime_cost<=1/2*healthcare_expenses/DALY\n", - "1281 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1282 procedures_lifetime_cost<=10^(active_conditions-1)-1\n", - "1283 procedures_lifetime_cost<=healthcare_expenses^active_care_plans/encounters_count\n", - "1284 procedures_lifetime_cost<=2*healthcare_coverage+2*medications_lifetime_length\n", - "1285 procedures_lifetime_cost<=encounters_lifetime_payer_coverage*healthcare_coverage/medications_lifetime_dispenses\n", - "1286 procedures_lifetime_cost<=Body_Weight*e^active_conditions\n", - "1287 procedures_lifetime_cost<=2*10^(10^QOLS)\n", - "1288 procedures_lifetime_cost<=lifetime_condition_length^log(encounters_count)\n", - "1289 procedures_lifetime_cost>=num_allergies\n", - "1290 procedures_lifetime_cost>=log(10^procedures_lifetime)^2\n", - "1291 procedures_lifetime_cost>=healthcare_expenses*procedures_lifetime/medications_lifetime_length\n", - "1292 procedures_lifetime_cost>=healthcare_expenses/encounters_count-healthcare_coverage\n", - "1293 procedures_lifetime_cost>=healthcare_coverage*log(device_lifetime_length)\n", - "1294 procedures_lifetime_cost>=healthcare_expenses^medications_lifetime_perc_covered*imaging_studies_lifetime\n", - "1295 procedures_lifetime_cost>=healthcare_coverage/active_condition_length-medications_lifetime_dispenses\n", - "1296 procedures_lifetime_cost>=log(procedures_lifetime)*medications_lifetime_dispenses\n", - "1297 QOLS<=mean_QOLS\n", - "1298 QOLS>=mean_QOLS\n", - "1299 QOLS<=mean_QOLS\n", - "1300 QOLS<=medications_active\n", - "1301 QOLS>=device_lifetime_length\n", - "1302 QOLS>=mean_QOLS\n", - "1303 QOLS<=mean_QOLS\n", - "1304 QOLS>=num_allergies\n", - "1305 QOLS>=mean_QOLS\n", - "1306 QALY<=mean_QALY\n", - "1307 QALY>=mean_QALY\n", - "1308 QALY<=mean_QALY\n", - "1309 QALY>=mean_QALY\n", - "1310 QALY<=mean_QALY\n", - "1311 QALY>=mean_QALY\n", - "1312 DALY<=mean_DALY\n", - "1313 DALY<=active_care_plan_length\n", - "1314 DALY>=device_lifetime_length\n", - "1315 DALY>=mean_DALY\n", - "1316 DALY<=mean_DALY\n", - "1317 DALY>=mean_DALY\n", - "1318 DALY>=num_allergies\n", - "1319 DALY>=mean_DALY\n", - "1320 Heart_rate<=mean_Heart_rate^immunizations_lifetime\n", - "1321 Heart_rate<=floor(age)+medications_lifetime\n", - "1322 Heart_rate<=1/imaging_studies_lifetime+Diastolic_Blood_Pressure\n", - "1323 Heart_rate<=maximum(lifetime_condition_length,Diastolic_Blood_Pressure)\n", - "1324 Heart_rate<=mean_Heart_rate/imaging_studies_lifetime\n", - "1325 Heart_rate<=medications_lifetime^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1326 Heart_rate<=-Respiratory_rate+Systolic_Blood_Pressure\n", - "1327 Diastolic_Blood_Pressure<=ceil(mean_Diastolic_Blood_Pressure)\n", - "1328 Diastolic_Blood_Pressure<=-Body_Mass_Index+mean_Systolic_Blood_Pressure-1\n", - "1329 Diastolic_Blood_Pressure<=maximum(age,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "1330 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure\n", - "1331 Diastolic_Blood_Pressure>=DALY+QALY\n", - "1332 Diastolic_Blood_Pressure>=-active_conditions+procedures_lifetime\n", - "1333 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=e^num_allergies\n", - "1334 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(sqrt(lifetime_care_plans))\n", - "1335 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/4*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", - "1336 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=QOLS\n", - "1337 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_active\n", - "1338 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime\n", - "1339 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-immunizations_lifetime_cost+medications_active\n", - "1340 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=ceil(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/active_care_plans\n", - "1341 mean_Body_Mass_Index<=Body_Mass_Index\n", - "1342 mean_Body_Mass_Index<=Body_Mass_Index\n", - "1343 mean_Body_Weight<=Body_Weight\n", - "1344 mean_DALY<=DALY\n", - "1345 mean_DALY>=DALY\n", - "1346 mean_DALY<=DALY\n", - "1347 mean_DALY>=DALY\n", - "1348 mean_DALY<=DALY\n", - "1349 mean_DALY>=medications_active\n", - "1350 mean_DALY>=DALY\n", - "1351 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+2*active_care_plans\n", - "1352 mean_Diastolic_Blood_Pressure<=age/imaging_studies_lifetime\n", - "1353 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,1/num_allergies)\n", - "1354 mean_Diastolic_Blood_Pressure<=maximum(medications_lifetime,Diastolic_Blood_Pressure)\n", - "1355 mean_Diastolic_Blood_Pressure<=-2*lifetime_conditions+mean_Systolic_Blood_Pressure\n", - "1356 mean_Diastolic_Blood_Pressure<=sqrt(healthcare_coverage/procedures_lifetime)\n", - "1357 mean_Diastolic_Blood_Pressure<=-1/2*latitude+lifetime_condition_length\n", - "1358 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/imaging_studies_lifetime\n", - "1359 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,mean_Body_Weight+1)\n", - "1360 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_conditions\n", - "1361 mean_Diastolic_Blood_Pressure>=-e^active_care_plans+lifetime_care_plan_length\n", - "1362 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", - "1363 mean_Diastolic_Blood_Pressure>=2*DALY-2*medications_lifetime_perc_covered\n", - "1364 mean_Diastolic_Blood_Pressure>=Body_Weight-Respiratory_rate-1\n", - "1365 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-medications_lifetime\n", - "1366 mean_Diastolic_Blood_Pressure>=Heart_rate^2/Systolic_Blood_Pressure\n", - "1367 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_care_plan_length\n", - "1368 mean_Diastolic_Blood_Pressure>=1/2*age-1/2*longitude\n", - "1369 mean_Heart_rate<=minimum(healthcare_expenses,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)\n", - "1370 mean_Heart_rate<=maximum(encounters_count,Heart_rate)\n", - "1371 mean_Heart_rate<=maximum(immunizations_lifetime_cost,1/2*medications_lifetime)\n", - "1372 mean_Heart_rate<=maximum(healthcare_coverage,Heart_rate)\n", - "1373 mean_Heart_rate<=Heart_rate/num_allergies\n", - "1374 mean_Heart_rate<=sqrt(mean_Systolic_Blood_Pressure)+Body_Weight\n", - "1375 mean_Heart_rate<=e^(lifetime_care_plan_length^(1/log(10)))\n", - "1376 mean_Heart_rate<=maximum(lifetime_condition_length,Heart_rate)\n", - "1377 mean_Heart_rate<=-sqrt(medications_lifetime)+mean_Systolic_Blood_Pressure\n", - "1378 mean_Heart_rate<=maximum(Heart_rate,1/2*encounters_count)\n", - "1379 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Respiratory_rate-mean_Respiratory_rate\n", - "1380 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(QALY)-mean_Heart_rate\n", - "1381 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1382 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-QOLS+immunizations_lifetime\n", - "1383 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_active\n", - "1384 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=procedures_lifetime/sqrt(medications_lifetime)\n", - "1385 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime\n", - "1386 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/active_care_plans\n", - "1387 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10))\n", - "1388 mean_QALY<=QALY\n", - "1389 mean_QALY>=QALY\n", - "1390 mean_QALY<=QALY\n", - "1391 mean_QALY>=QALY\n", - "1392 mean_QALY<=QALY\n", - "1393 mean_QALY>=QALY\n", - "1394 mean_QOLS<=QOLS\n", - "1395 mean_QOLS<=medications_lifetime\n", - "1396 mean_QOLS>=QOLS\n", - "1397 mean_QOLS<=QOLS\n", - "1398 mean_QOLS>=QOLS\n", - "1399 mean_QOLS>=QOLS\n", - "1400 mean_Respiratory_rate>=Respiratory_rate^num_allergies\n", - "1401 mean_Respiratory_rate>=Respiratory_rate-active_care_plans\n", - "1402 mean_Respiratory_rate>=Respiratory_rate-1/2*encounters_lifetime_perc_covered\n", - "1403 mean_Respiratory_rate>=Respiratory_rate-medications_lifetime_perc_covered\n", - "1404 mean_Respiratory_rate>=Respiratory_rate-procedures_lifetime\n", - "1405 mean_Respiratory_rate>=Respiratory_rate^QOLS\n", - "1406 mean_Respiratory_rate>=Heart_rate-mean_Diastolic_Blood_Pressure\n", - "1407 mean_Respiratory_rate>=minimum(Respiratory_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", - "1408 mean_Respiratory_rate>=1/2*active_conditions*imaging_studies_lifetime\n", + "1 healthcare_expenses<=latitude^4\n", + "2 healthcare_expenses<=10^sqrt(latitude)\n", + "3 healthcare_expenses<=10^sqrt(age)\n", + "4 healthcare_expenses<=10^healthcare_coverage*medications_lifetime_cost\n", + "5 healthcare_expenses<=(Protein__Mass_volume__in_Serum,Plasma-1)^Albumin__Mass_volume__in_Serum,Plasma\n", + "6 healthcare_expenses<=(e^Potassium)^mean_Potassium\n", + "7 healthcare_expenses<=10^(Urea_Nitrogen-1)\n", + "8 healthcare_expenses<=Calcium^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "9 healthcare_expenses<=(medications_lifetime_cost-1)*mean_Triglycerides\n", + "10 healthcare_expenses<=(1/2*MCV__Entitic_volume__by_Automated_count)^Potassium\n", + "11 healthcare_expenses<=Body_Height^2*Heart_rate\n", + "12 healthcare_expenses<=sqrt(10^Hemoglobin__Mass_volume__in_Blood)\n", + "13 healthcare_expenses<=(QALY-1)^mean_Potassium\n", + "14 healthcare_expenses<=(Diastolic_Blood_Pressure^2)^active_care_plan_length\n", + "15 healthcare_expenses<=Body_Height^2*age\n", + "16 healthcare_expenses<=Chloride^2*mean_Total_Cholesterol\n", + "17 healthcare_expenses<=Calcium*encounters_lifetime_total_cost^2\n", + "18 healthcare_expenses<=log(device_lifetime_length)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "19 healthcare_expenses<=floor(Potassium)^Respiratory_rate\n", + "20 healthcare_expenses<=(e^active_conditions)^Respiratory_rate\n", + "21 healthcare_expenses<=e^Respiratory_rate*mean_Respiratory_rate\n", + "22 healthcare_expenses<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*medications_lifetime_length^2\n", + "23 healthcare_expenses<=maximum(healthcare_coverage,e^active_care_plan_length)\n", + "24 healthcare_expenses<=log(Body_Mass_Index)^Respiratory_rate\n", + "25 healthcare_expenses<=encounters_lifetime_total_cost*longitude^2\n", + "26 healthcare_expenses<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)^latitude\n", + "27 healthcare_expenses<=log(Diastolic_Blood_Pressure)^mean_Estimated_Glomerular_Filtration_Rate\n", + "28 healthcare_expenses<=Chloride*Sodium^2\n", + "29 healthcare_expenses<=(log(age)/log(10))^QALY\n", + "30 healthcare_expenses<=Body_Height*Systolic_Blood_Pressure^2\n", + "31 healthcare_expenses<=(Globulin__Mass_volume__in_Serum_by_calculation+1)^mean_Respiratory_rate\n", + "32 healthcare_expenses<=Sodium^2*mean_Chloride\n", + "33 healthcare_expenses<=Systolic_Blood_Pressure^2*mean_Body_Height\n", + "34 healthcare_expenses<=Body_Height*Chloride^2\n", + "35 healthcare_expenses<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "36 healthcare_expenses<=Body_Height^2*Glucose\n", + "37 healthcare_expenses<=(e^Sodium)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "38 healthcare_expenses<=sqrt(active_condition_length)^mean_Calcium\n", + "39 healthcare_expenses<=(2*lifetime_condition_length)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "40 healthcare_expenses<=(log(Systolic_Blood_Pressure)/log(10))^Carbon_Dioxide\n", + "41 healthcare_expenses<=10^Erythrocytes____volume__in_Blood_by_Automated_count*lifetime_care_plan_length\n", + "42 healthcare_expenses<=Total_Cholesterol^2*age\n", + "43 healthcare_expenses<=(log(MCV__Entitic_volume__by_Automated_count)/log(10))^Body_Mass_Index\n", + "44 healthcare_expenses<=Low_Density_Lipoprotein_Cholesterol*medications_lifetime_dispenses^2\n", + "45 healthcare_expenses<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood*encounters_lifetime_total_cost\n", + "46 healthcare_expenses<=(e^QOLS)^mean_Triglycerides\n", + "47 healthcare_expenses<=10^Urea_Nitrogen/Protein__Mass_volume__in_Serum,Plasma\n", + "48 healthcare_expenses<=(QALY+1)^Potassium\n", + "49 healthcare_expenses<=10^Respiratory_rate/medications_lifetime_cost\n", + "50 healthcare_expenses<=Chloride^2*Total_Cholesterol\n", + "51 healthcare_expenses<=Low_Density_Lipoprotein_Cholesterol*Total_Cholesterol^2\n", + "52 healthcare_expenses<=log(MCV__Entitic_volume__by_Automated_count)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "53 healthcare_expenses<=(2*Carbon_Dioxide)^Potassium\n", + "54 healthcare_expenses<=Glucose*Total_Cholesterol^2\n", + "55 healthcare_expenses<=10^Calcium/lifetime_care_plan_length\n", + "56 healthcare_expenses<=(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)^mean_Systolic_Blood_Pressure\n", + "57 healthcare_expenses<=10^Calcium/mean_Total_Cholesterol\n", + "58 healthcare_expenses<=Platelets____volume__in_Blood_by_Automated_count*e^Calcium\n", + "59 healthcare_expenses<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*Platelets____volume__in_Blood_by_Automated_count^2\n", + "60 healthcare_expenses<=(Hemoglobin__Mass_volume__in_Blood^2)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "61 healthcare_expenses<=MCV__Entitic_volume__by_Automated_count^2*Platelets____volume__in_Blood_by_Automated_count\n", + "62 healthcare_expenses>=(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^mean_Creatinine\n", + "63 healthcare_expenses>=active_conditions*longitude^2\n", + "64 healthcare_expenses>=1/2*encounters_lifetime_perc_covered*medications_lifetime_cost\n", + "65 healthcare_expenses>=(active_care_plan_length+1)*medications_lifetime_dispenses\n", + "66 healthcare_expenses>=Glomerular_filtration_rate_1_73_sq_M_predicted*e^medications_active\n", + "67 healthcare_expenses>=Potassium*e^lifetime_care_plans\n", + "68 healthcare_expenses>=(Urea_Nitrogen+1)*encounters_lifetime_payer_coverage\n", + "69 healthcare_expenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*lifetime_care_plan_length\n", + "70 healthcare_expenses>=sqrt(imaging_studies_lifetime)*medications_lifetime_cost\n", + "71 healthcare_expenses>=encounters_lifetime_total_cost+1/2*procedures_lifetime_cost\n", + "72 healthcare_expenses>=(immunizations_lifetime^2)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "73 healthcare_expenses>=1/2*Carbon_Dioxide*medications_lifetime_length\n", + "74 healthcare_expenses>=medications_lifetime^2-medications_lifetime_cost\n", + "75 healthcare_expenses>=e^Hemoglobin__Mass_volume__in_Blood/Respiratory_rate\n", + "76 healthcare_expenses>=1/2*healthcare_coverage/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "77 healthcare_expenses>=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Estimated_Glomerular_Filtration_Rate\n", + "78 healthcare_expenses>=Respiratory_rate^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "79 healthcare_expenses>=(Heart_rate-1)*immunizations_lifetime_cost\n", + "80 healthcare_expenses>=floor(Urea_Nitrogen)^Albumin__Mass_volume__in_Serum,Plasma\n", + "81 healthcare_expenses>=sqrt(DALY)^active_care_plans\n", + "82 healthcare_expenses>=(-Body_Mass_Index)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "83 healthcare_expenses>=Urea_Nitrogen^2*medications_lifetime\n", + "84 healthcare_expenses>=2*procedures_lifetime_cost/active_conditions\n", + "85 healthcare_expenses>=Body_Mass_Index^immunizations_lifetime\n", + "86 healthcare_expenses>=(1/2*medications_lifetime_cost)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "87 healthcare_expenses>=(e^Creatinine)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "88 healthcare_expenses>=(2*Calcium)^num_allergies\n", + "89 healthcare_expenses>=(procedures_lifetime_cost+1)*device_lifetime_length\n", + "90 healthcare_expenses>=Glucose^2*Potassium\n", + "91 healthcare_expenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Triglycerides\n", + "92 healthcare_expenses>=healthcare_coverage*log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)\n", + "93 healthcare_expenses>=e^lifetime_conditions/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "94 healthcare_expenses>=device_lifetime_length^2*medications_lifetime\n", + "95 healthcare_expenses>=(1/2*longitude)^Creatinine\n", + "96 healthcare_expenses>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*encounters_lifetime_total_cost\n", + "97 healthcare_expenses>=1/2*Carbon_Dioxide*encounters_lifetime_payer_coverage\n", + "98 healthcare_expenses>=minimum(healthcare_coverage,Respiratory_rate)\n", + "99 healthcare_expenses>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2*Systolic_Blood_Pressure\n", + "100 healthcare_expenses>=(e^Urea_Nitrogen)^encounters_lifetime_perc_covered\n", + "101 healthcare_expenses>=(1/2*active_care_plan_length)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "102 healthcare_expenses>=(log(Respiratory_rate)/log(10))^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "103 healthcare_expenses>=2*medications_lifetime_cost/medications_lifetime\n", + "104 healthcare_expenses>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Calcium\n", + "105 healthcare_expenses>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "106 healthcare_expenses>=Calcium*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "107 healthcare_expenses>=(procedures_lifetime-1)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "108 healthcare_expenses>=(10^encounters_lifetime_perc_covered)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "109 healthcare_expenses>=Erythrocytes____volume__in_Blood_by_Automated_count^medications_active\n", + "110 healthcare_expenses>=Estimated_Glomerular_Filtration_Rate*age^2\n", + "111 healthcare_expenses>=Triglycerides^2*device_lifetime_length\n", + "112 healthcare_expenses>=(-medications_active)^mean_Calcium\n", + "113 healthcare_expenses>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)^active_care_plans\n", + "114 healthcare_expenses>=1/4*healthcare_coverage\n", + "115 healthcare_expenses>=e^sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "116 healthcare_expenses>=e^sqrt(mean_Low_Density_Lipoprotein_Cholesterol)\n", + "117 healthcare_expenses>=DALY^2*Sodium\n", + "118 healthcare_expenses>=(e^Globulin__Mass_volume__in_Serum_by_calculation)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "119 healthcare_expenses>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)^mean_Creatinine\n", + "120 healthcare_expenses>=lifetime_condition_length^2-medications_lifetime_cost\n", + "121 healthcare_expenses>=medications_lifetime_cost*sqrt(num_allergies)\n", + "122 healthcare_expenses>=encounters_lifetime_total_cost*e^immunizations_lifetime\n", + "123 healthcare_expenses>=(1/2*lifetime_care_plans)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "124 healthcare_expenses>=log(medications_lifetime_cost)*medications_lifetime_length\n", + "125 healthcare_expenses>=(lifetime_care_plans^2)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "126 healthcare_expenses>=(-Carbon_Dioxide)^Potassium\n", + "127 healthcare_expenses>=(encounters_lifetime_total_cost^2)^encounters_lifetime_perc_covered\n", + "128 healthcare_expenses>=e^active_conditions*num_allergies\n", + "129 healthcare_expenses>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^procedures_lifetime\n", + "130 healthcare_expenses>=(log(lifetime_conditions)/log(10))^mean_Estimated_Glomerular_Filtration_Rate\n", + "131 healthcare_expenses>=(-encounters_lifetime_total_cost)^imaging_studies_lifetime\n", + "132 healthcare_expenses>=(Albumin__Mass_volume__in_Serum,Plasma-1)^medications_active\n", + "133 healthcare_expenses>=encounters_lifetime_payer_coverage*sqrt(immunizations_lifetime_cost)\n", + "134 healthcare_expenses>=e^Respiratory_rate/QALY\n", + "135 healthcare_expenses>=(1/QOLS)^Body_temperature\n", + "136 healthcare_expenses>=(-medications_lifetime_dispenses)^num_allergies\n", + "137 healthcare_expenses>=medications_lifetime_dispenses^2/medications_lifetime\n", + "138 healthcare_expenses>=(log(Respiratory_rate)/log(10))^active_condition_length\n", + "139 healthcare_expenses>=(-medications_active)^Urea_Nitrogen\n", + "140 healthcare_expenses>=(log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^Body_Mass_Index\n", + "141 healthcare_expenses>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*procedures_lifetime_cost\n", + "142 healthcare_expenses>=Diastolic_Blood_Pressure^2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "143 healthcare_expenses>=floor(Body_Mass_Index)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "144 healthcare_expenses>=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*encounters_lifetime_perc_covered\n", + "145 healthcare_expenses>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)^Calcium\n", + "146 healthcare_expenses>=(10^Bilirubin_total__Mass_volume__in_Serum,Plasma)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "147 healthcare_expenses>=(-Globulin__Mass_volume__in_Serum_by_calculation)^active_conditions\n", + "148 healthcare_expenses>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*encounters_lifetime_total_cost\n", + "149 healthcare_coverage<=encounters_lifetime_total_cost^2/active_conditions\n", + "150 healthcare_coverage<=1/2*e^mean_Respiratory_rate\n", + "151 healthcare_coverage<=mean_Calcium^Microalbumin_Creatinine_Ratio\n", + "152 healthcare_coverage<=1/2*healthcare_expenses/num_allergies\n", + "153 healthcare_coverage<=Low_Density_Lipoprotein_Cholesterol^2*medications_lifetime\n", + "154 healthcare_coverage<=QALY^2*lifetime_condition_length\n", + "155 healthcare_coverage<=Glucose*High_Density_Lipoprotein_Cholesterol^2\n", + "156 healthcare_coverage<=1/2*Protein__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage\n", + "157 healthcare_coverage<=(healthcare_expenses-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "158 healthcare_coverage<=10^Potassium*mean_Carbon_Dioxide\n", + "159 healthcare_coverage<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*healthcare_expenses\n", + "160 healthcare_coverage<=10^encounters_lifetime_payer_coverage*encounters_lifetime_total_cost\n", + "161 healthcare_coverage<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*lifetime_condition_length^2\n", + "162 healthcare_coverage<=medications_lifetime_dispenses^2/device_lifetime_length\n", + "163 healthcare_coverage<=sqrt(encounters_lifetime_perc_covered)^longitude\n", + "164 healthcare_coverage<=log(Albumin__Mass_volume__in_Serum,Plasma)^latitude\n", + "165 healthcare_coverage<=(Erythrocytes____volume__in_Blood_by_Automated_count-1)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "166 healthcare_coverage<=10^DALY/imaging_studies_lifetime\n", + "167 healthcare_coverage<=log(latitude)^mean_Urea_Nitrogen\n", + "168 healthcare_coverage<=(e^Carbon_Dioxide)^Creatinine\n", + "169 healthcare_coverage<=sqrt(encounters_lifetime_total_cost)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "170 healthcare_coverage<=(2*Protein__Mass_volume__in_Serum,Plasma)^active_care_plans\n", + "171 healthcare_coverage<=Heart_rate^2*High_Density_Lipoprotein_Cholesterol\n", + "172 healthcare_coverage<=Diastolic_Blood_Pressure^2*Heart_rate\n", + "173 healthcare_coverage<=encounters_lifetime_payer_coverage^Triglycerides\n", + "174 healthcare_coverage<=(encounters_lifetime_total_cost-1)*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "175 healthcare_coverage<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)^Carbon_Dioxide\n", + "176 healthcare_coverage<=(1/2*procedures_lifetime_cost)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "177 healthcare_coverage<=1/2*Creatinine*healthcare_expenses\n", + "178 healthcare_coverage<=encounters_lifetime_total_cost^2/Carbon_Dioxide\n", + "179 healthcare_coverage<=log(Heart_rate)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "180 healthcare_coverage<=10^Potassium*DALY\n", + "181 healthcare_coverage<=(Potassium^2)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "182 healthcare_coverage<=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Body_Weight\n", + "183 healthcare_coverage<=(2*Urea_Nitrogen)^mean_Potassium\n", + "184 healthcare_coverage<=maximum(medications_lifetime_cost,1/device_lifetime_length)\n", + "185 healthcare_coverage<=(10^active_conditions)^encounters_count\n", + "186 healthcare_coverage<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^mean_Urea_Nitrogen\n", + "187 healthcare_coverage<=(2*Glucose)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "188 healthcare_coverage<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Chloride\n", + "189 healthcare_coverage<=medications_lifetime_length^2/Estimated_Glomerular_Filtration_Rate\n", + "190 healthcare_coverage<=2*Estimated_Glomerular_Filtration_Rate*encounters_lifetime_payer_coverage\n", + "191 healthcare_coverage<=(2*Body_Height)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "192 healthcare_coverage<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2*Platelets____volume__in_Blood_by_Automated_count\n", + "193 healthcare_coverage<=(1/2*Platelets____volume__in_Blood_by_Automated_count)^active_care_plans\n", + "194 healthcare_coverage<=(Estimated_Glomerular_Filtration_Rate^2)^active_care_plans\n", + "195 healthcare_coverage<=10^sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "196 healthcare_coverage<=encounters_count*e^Urea_Nitrogen\n", + "197 healthcare_coverage<=10^encounters_count*active_care_plan_length\n", + "198 healthcare_coverage<=(lifetime_condition_length^2)^active_care_plan_length\n", + "199 healthcare_coverage<=(log(encounters_lifetime_payer_coverage)/log(10))^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "200 healthcare_coverage<=(log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10))^Hemoglobin__Mass_volume__in_Blood\n", + "201 healthcare_coverage<=log(lifetime_care_plan_length)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "202 healthcare_coverage<=log(Low_Density_Lipoprotein_Cholesterol)^Calcium\n", + "203 healthcare_coverage<=10^Globulin__Mass_volume__in_Serum_by_calculation+medications_lifetime_cost\n", + "204 healthcare_coverage<=(e^active_care_plans)^Calcium\n", + "205 healthcare_coverage<=(1/2*active_care_plan_length)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "206 healthcare_coverage<=lifetime_care_plan_length^2*mean_Triglycerides\n", + "207 healthcare_coverage<=(1/2*Body_Mass_Index)^encounters_count\n", + "208 healthcare_coverage<=10^active_conditions/device_lifetime_length\n", + "209 healthcare_coverage<=(Body_Weight^2)^active_conditions\n", + "210 healthcare_coverage<=2*encounters_lifetime_payer_coverage*mean_Estimated_Glomerular_Filtration_Rate\n", + "211 healthcare_coverage<=log(active_condition_length)^mean_Urea_Nitrogen\n", + "212 healthcare_coverage<=10^lifetime_condition_length*encounters_count\n", + "213 healthcare_coverage<=encounters_lifetime_total_cost^2/DALY\n", + "214 healthcare_coverage<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*e^Urea_Nitrogen\n", + "215 healthcare_coverage<=e^Calcium*mean_High_Density_Lipoprotein_Cholesterol\n", + "216 healthcare_coverage<=DALY*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "217 healthcare_coverage<=log(medications_lifetime_dispenses)*medications_lifetime_cost\n", + "218 healthcare_coverage<=encounters_lifetime_total_cost^2/MCH__Entitic_mass__by_Automated_count\n", + "219 healthcare_coverage<=2*medications_lifetime_cost/medications_lifetime_perc_covered\n", + "220 healthcare_coverage<=medications_lifetime_length^2/medications_active\n", + "221 healthcare_coverage<=10^procedures_lifetime*healthcare_expenses\n", + "222 healthcare_coverage<=procedures_lifetime_cost^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "223 healthcare_coverage<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "224 healthcare_coverage<=10^Albumin__Mass_volume__in_Serum,Plasma*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "225 healthcare_coverage<=(Albumin__Mass_volume__in_Serum,Plasma^2)^mean_Potassium\n", + "226 healthcare_coverage<=encounters_lifetime_perc_covered*e^Hemoglobin__Mass_volume__in_Blood\n", + "227 healthcare_coverage>=num_allergies\n", + "228 healthcare_coverage>=2*encounters_lifetime_total_cost*medications_lifetime_perc_covered\n", + "229 healthcare_coverage>=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1\n", + "230 healthcare_coverage>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2*active_condition_length\n", + "231 healthcare_coverage>=(QALY+1)*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "232 healthcare_coverage>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2+medications_lifetime_length\n", + "233 healthcare_coverage>=minimum(medications_lifetime_dispenses,-Respiratory_rate)\n", + "234 healthcare_coverage>=encounters_lifetime_payer_coverage*log(active_care_plans)\n", + "235 healthcare_coverage>=sqrt(MCHC__Mass_volume__by_Automated_count)^lifetime_care_plans\n", + "236 healthcare_coverage>=device_lifetime_length*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "237 healthcare_coverage>=-medications_lifetime_cost+1/2*procedures_lifetime_cost\n", + "238 healthcare_coverage>=e^Albumin__Mass_volume__in_Serum,Plasma*medications_lifetime\n", + "239 healthcare_coverage>=Low_Density_Lipoprotein_Cholesterol^2*num_allergies\n", + "240 healthcare_coverage>=encounters_lifetime_total_cost+log(num_allergies)\n", + "241 healthcare_coverage>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "242 healthcare_coverage>=minimum(procedures_lifetime_cost,2*encounters_lifetime_payer_coverage)\n", + "243 healthcare_coverage>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+2*encounters_lifetime_payer_coverage\n", + "244 healthcare_coverage>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*device_lifetime_length^2\n", + "245 healthcare_coverage>=encounters_count*sqrt(encounters_lifetime_payer_coverage)\n", + "246 healthcare_coverage>=ceil(encounters_lifetime_payer_coverage)*immunizations_lifetime\n", + "247 healthcare_coverage>=encounters_lifetime_payer_coverage*log(procedures_lifetime)\n", + "248 healthcare_coverage>=(-device_lifetime_length)^Potassium\n", + "249 healthcare_coverage>=encounters_count^2*medications_lifetime_perc_covered\n", + "250 healthcare_coverage>=-encounters_lifetime_total_cost+medications_lifetime_length+1\n", + "251 healthcare_coverage>=(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "252 healthcare_coverage>=Heart_rate*sqrt(encounters_lifetime_payer_coverage)\n", + "253 healthcare_coverage>=log(Hemoglobin__Mass_volume__in_Blood)*medications_lifetime_length/log(10)\n", + "254 healthcare_coverage>=(active_care_plan_length-1)*MCV__Entitic_volume__by_Automated_count\n", + "255 healthcare_coverage>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "256 healthcare_coverage>=-healthcare_expenses+procedures_lifetime_cost+1\n", + "257 healthcare_coverage>=(procedures_lifetime_cost+1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "258 healthcare_coverage>=MCV__Entitic_volume__by_Automated_count*sqrt(procedures_lifetime_cost)\n", + "259 healthcare_coverage>=mean_Urea_Nitrogen^Globulin__Mass_volume__in_Serum_by_calculation\n", + "260 healthcare_coverage>=Albumin__Mass_volume__in_Serum,Plasma^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "261 healthcare_coverage>=10^Globulin__Mass_volume__in_Serum_by_calculation*Potassium\n", + "262 healthcare_coverage>=e^sqrt(Protein__Mass_volume__in_Serum,Plasma)\n", + "263 healthcare_coverage>=lifetime_care_plan_length^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "264 healthcare_coverage>=encounters_lifetime_payer_coverage*log(Body_Mass_Index)/log(10)\n", + "265 healthcare_coverage>=Bilirubin_total__Mass_volume__in_Serum,Plasma*encounters_count^2\n", + "266 healthcare_coverage>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^procedures_lifetime\n", + "267 healthcare_coverage>=(Leukocytes____volume__in_Blood_by_Automated_count-1)^active_care_plans\n", + "268 healthcare_coverage>=encounters_lifetime_perc_covered*e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "269 healthcare_coverage>=log(Platelets____volume__in_Blood_by_Automated_count)^mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "270 healthcare_coverage>=(MCV__Entitic_volume__by_Automated_count+1)^immunizations_lifetime\n", + "271 healthcare_coverage>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Albumin__Mass_volume__in_Serum,Plasma\n", + "272 healthcare_coverage>=minimum(medications_lifetime_length,2*encounters_lifetime_payer_coverage)\n", + "273 healthcare_coverage>=Glomerular_filtration_rate_1_73_sq_M_predicted*procedures_lifetime^2\n", + "274 healthcare_coverage>=age^2*encounters_lifetime_perc_covered\n", + "275 healthcare_coverage>=age^2-medications_lifetime_cost\n", + "276 healthcare_coverage>=2*device_lifetime_length*immunizations_lifetime_cost\n", + "277 healthcare_coverage>=log(imaging_studies_lifetime)+medications_lifetime_length\n", + "278 healthcare_coverage>=10^Globulin__Mass_volume__in_Serum_by_calculation/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "279 healthcare_coverage>=sqrt(device_lifetime_length)*medications_lifetime_dispenses\n", + "280 healthcare_coverage>=2*medications_lifetime_length*medications_lifetime_perc_covered\n", + "281 healthcare_coverage>=encounters_lifetime_total_cost*log(device_lifetime_length)/log(10)\n", + "282 healthcare_coverage>=(immunizations_lifetime-1)*medications_lifetime_length\n", + "283 healthcare_coverage>=(immunizations_lifetime-1)*procedures_lifetime_cost\n", + "284 healthcare_coverage>=(medications_lifetime^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "285 healthcare_coverage>=encounters_lifetime_payer_coverage*e^medications_lifetime_perc_covered\n", + "286 healthcare_coverage>=2*medications_lifetime_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "287 healthcare_coverage>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*procedures_lifetime\n", + "288 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*encounters_lifetime_perc_covered\n", + "289 healthcare_coverage>=(10^QOLS)^Albumin__Mass_volume__in_Serum,Plasma\n", + "290 healthcare_coverage>=Heart_rate^2*encounters_lifetime_perc_covered\n", + "291 healthcare_coverage>=Diastolic_Blood_Pressure^2*encounters_lifetime_perc_covered\n", + "292 healthcare_coverage>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*Body_Mass_Index\n", + "293 healthcare_coverage>=Body_Weight^2*medications_lifetime_perc_covered\n", + "294 healthcare_coverage>=Low_Density_Lipoprotein_Cholesterol^2*medications_lifetime_perc_covered\n", + "295 healthcare_coverage>=High_Density_Lipoprotein_Cholesterol^2*imaging_studies_lifetime\n", + "296 healthcare_coverage>=Estimated_Glomerular_Filtration_Rate^2-medications_lifetime_dispenses\n", + "297 healthcare_coverage>=(-Urea_Nitrogen)^Creatinine\n", + "298 healthcare_coverage>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Urea_Nitrogen^2\n", + "299 healthcare_coverage>=e^Calcium*medications_lifetime_perc_covered\n", + "300 healthcare_coverage>=10^Albumin__Mass_volume__in_Serum,Plasma/DALY\n", + "301 healthcare_coverage>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*lifetime_condition_length\n", + "302 healthcare_coverage>=(2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^mean_Creatinine\n", + "303 healthcare_coverage>=(-Microalbumin_Creatinine_Ratio)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "304 healthcare_coverage>=(-Total_score__MMSE_)^procedures_lifetime\n", + "305 healthcare_coverage>=(2*Total_score__MMSE_)^immunizations_lifetime\n", + "306 healthcare_coverage>=(1/DXA__T_score__Bone_density)^medications_active\n", + "307 latitude<=-active_conditions-longitude\n", + "308 latitude<=maximum(QALY,High_Density_Lipoprotein_Cholesterol+1)\n", + "309 latitude<=4*Respiratory_rate\n", + "310 latitude<=1/2*Heart_rate+Respiratory_rate\n", + "311 latitude<=log(e^Chloride)/log(10)\n", + "312 latitude<=(Systolic_Blood_Pressure+1)/imaging_studies_lifetime\n", + "313 latitude<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Carbon_Dioxide\n", + "314 latitude<=Heart_rate-Urea_Nitrogen\n", + "315 latitude<=e^Potassium-1\n", + "316 latitude<=Body_Mass_Index*log(Chloride)/log(10)\n", + "317 latitude<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+lifetime_care_plan_length\n", + "318 latitude<=-Carbon_Dioxide+Diastolic_Blood_Pressure-1\n", + "319 latitude<=log(e^Systolic_Blood_Pressure)/log(10)\n", + "320 latitude<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2\n", + "321 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "322 latitude<=(active_care_plan_length-1)*Systolic_Blood_Pressure\n", + "323 latitude<=floor(active_care_plan_length)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "324 latitude<=10^active_care_plans+QALY\n", + "325 latitude<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)+mean_MCH__Entitic_mass__by_Automated_count\n", + "326 latitude<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "327 latitude<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+active_conditions+1\n", + "328 latitude<=1/2*Estimated_Glomerular_Filtration_Rate+Microalbumin_Creatinine_Ratio\n", + "329 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*log(MCV__Entitic_volume__by_Automated_count)\n", + "330 latitude<=medications_lifetime_length/medications_active\n", + "331 latitude<=Low_Density_Lipoprotein_Cholesterol^2/Heart_rate\n", + "332 latitude<=age+procedures_lifetime_cost-1\n", + "333 latitude<=age+log(Potassium)\n", + "334 latitude<=longitude^2/Chloride\n", + "335 latitude<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(QALY)\n", + "336 latitude<=Carbon_Dioxide*log(Sodium)/log(10)\n", + "337 latitude<=Albumin__Mass_volume__in_Serum,Plasma*log(healthcare_expenses)\n", + "338 latitude<=Systolic_Blood_Pressure^2/Microalbumin_Creatinine_Ratio\n", + "339 latitude<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+QALY-1\n", + "340 latitude<=QALY+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "341 latitude<=2*Estimated_Glomerular_Filtration_Rate*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "342 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Potassium-1\n", + "343 latitude<=2*Chloride/Albumin__Mass_volume__in_Serum,Plasma\n", + "344 latitude<=2*Body_Height/active_care_plans\n", + "345 latitude<=log(Sodium)*mean_Calcium\n", + "346 latitude<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*active_condition_length\n", + "347 latitude<=1/2*Microalbumin_Creatinine_Ratio+immunizations_lifetime_cost\n", + "348 latitude<=Respiratory_rate+age+1\n", + "349 latitude<=Protein__Mass_volume__in_Serum,Plasma-Urea_Nitrogen-1\n", + "350 latitude<=(1/2*Respiratory_rate)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "351 latitude<=Bilirubin_total__Mass_volume__in_Serum,Plasma*medications_lifetime_dispenses\n", + "352 latitude<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+log(encounters_lifetime_total_cost)\n", + "353 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(MCHC__Mass_volume__by_Automated_count)\n", + "354 latitude<=1/2*encounters_lifetime_total_cost/encounters_count\n", + "355 latitude<=(Leukocytes____volume__in_Blood_by_Automated_count+1)*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "356 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+procedures_lifetime_cost-1\n", + "357 latitude<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+Urea_Nitrogen-1\n", + "358 latitude<=Protein__Mass_volume__in_Serum,Plasma^2/Diastolic_Blood_Pressure\n", + "359 latitude<=Body_Weight^2/Diastolic_Blood_Pressure\n", + "360 latitude<=Estimated_Glomerular_Filtration_Rate+active_care_plan_length-1\n", + "361 latitude<=minimum(Heart_rate,Left_ventricular_Ejection_fraction-1)\n", + "362 latitude<=sqrt(Glucose)+MCHC__Mass_volume__by_Automated_count\n", + "363 latitude<=10^active_care_plans/num_allergies\n", + "364 latitude<=Low_Density_Lipoprotein_Cholesterol*mean_Creatinine\n", + "365 latitude<=10^DALY*active_care_plan_length\n", + "366 latitude<=-MCH__Entitic_mass__by_Automated_count+mean_Diastolic_Blood_Pressure\n", + "367 latitude<=(Potassium+1)*mean_Calcium\n", + "368 latitude<=active_care_plan_length+ceil(Carbon_Dioxide)\n", + "369 latitude<=-Albumin__Mass_volume__in_Serum,Plasma+2*active_care_plan_length\n", + "370 latitude<=(lifetime_care_plan_length^2)^Creatinine\n", + "371 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+active_condition_length+1\n", + "372 latitude<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+lifetime_condition_length-1\n", + "373 latitude<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+lifetime_condition_length\n", + "374 latitude<=maximum(active_condition_length,1/device_lifetime_length)\n", + "375 latitude<=1/2*Body_Weight+medications_lifetime_cost\n", + "376 latitude<=Calcium+1/2*Diastolic_Blood_Pressure\n", + "377 latitude<=Heart_rate^2/age\n", + "378 latitude<=(QALY+1)/medications_lifetime_perc_covered\n", + "379 latitude<=Systolic_Blood_Pressure-active_care_plan_length+1\n", + "380 latitude<=1/2*Body_Weight+Respiratory_rate\n", + "381 latitude<=High_Density_Lipoprotein_Cholesterol+2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "382 latitude<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^mean_Urea_Nitrogen\n", + "383 latitude<=1/2*Triglycerides-active_conditions\n", + "384 latitude<=Carbon_Dioxide*log(Triglycerides)/log(10)\n", + "385 latitude<=minimum(healthcare_expenses,Left_ventricular_Ejection_fraction+1)\n", + "386 latitude<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Calcium\n", + "387 latitude<=Calcium+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "388 latitude<=maximum(QALY,2*Carbon_Dioxide)\n", + "389 latitude<=Protein__Mass_volume__in_Serum,Plasma*log(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "390 latitude<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "391 latitude<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "392 latitude>=floor(1/2*age)\n", + "393 latitude>=-1/2*longitude\n", + "394 latitude>=log(healthcare_expenses)^2/log(10)^2\n", + "395 latitude>=1/2*floor(age)\n", + "396 latitude>=(num_allergies+1)*lifetime_care_plans\n", + "397 latitude>=Chloride+longitude+1\n", + "398 latitude>=(Glomerular_filtration_rate_1_73_sq_M_predicted-1)/active_care_plans\n", + "399 latitude>=1/2*High_Density_Lipoprotein_Cholesterol+1\n", + "400 latitude>=(Platelets____volume__in_Blood_by_Automated_count+1)/mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "401 latitude>=Carbon_Dioxide+log(medications_lifetime_cost)\n", + "402 latitude>=sqrt(age)+MCH__Entitic_mass__by_Automated_count\n", + "403 latitude>=floor(Creatinine)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "404 latitude>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Creatinine\n", + "405 latitude>=sqrt(healthcare_expenses)/High_Density_Lipoprotein_Cholesterol\n", + "406 latitude>=e^Creatinine/active_care_plan_length\n", + "407 latitude>=-MCHC__Mass_volume__by_Automated_count+floor(QALY)\n", + "408 latitude>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*device_lifetime_length\n", + "409 latitude>=4*Calcium\n", + "410 latitude>=-mean_Potassium+1/2*procedures_lifetime\n", + "411 latitude>=DALY+floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "412 latitude>=Glomerular_filtration_rate_1_73_sq_M_predicted-lifetime_care_plan_length+1\n", + "413 latitude>=log(healthcare_coverage)/(Bilirubin_total__Mass_volume__in_Serum,Plasma*log(10))\n", + "414 latitude>=1/2*Estimated_Glomerular_Filtration_Rate-Potassium\n", + "415 latitude>=encounters_lifetime_perc_covered*floor(active_condition_length)\n", + "416 latitude>=(active_care_plans-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "417 latitude>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "418 latitude>=(immunizations_lifetime+1)*lifetime_conditions\n", + "419 latitude>=Body_Mass_Index*log(immunizations_lifetime)\n", + "420 latitude>=Systolic_Blood_Pressure-mean_Sodium+1\n", + "421 latitude>=Respiratory_rate*e^medications_lifetime_perc_covered\n", + "422 latitude>=1/2*age/active_care_plans\n", + "423 latitude>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+MCHC__Mass_volume__by_Automated_count\n", + "424 latitude>=DALY-device_lifetime_length+1\n", + "425 latitude>=ceil(Hemoglobin__Mass_volume__in_Blood)/DALY\n", + "426 latitude>=1/2*age-immunizations_lifetime\n", + "427 latitude>=1/2*Heart_rate-Urea_Nitrogen\n", + "428 latitude>=Estimated_Glomerular_Filtration_Rate^2/Total_Cholesterol\n", + "429 latitude>=1/2*age-medications_active\n", + "430 latitude>=Globulin__Mass_volume__in_Serum_by_calculation+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "431 latitude>=Body_Mass_Index*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "432 latitude>=log(lifetime_condition_length)*mean_Respiratory_rate/log(10)\n", + "433 latitude>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*age\n", + "434 latitude>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^lifetime_care_plans\n", + "435 latitude>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+age-1\n", + "436 latitude>=1/2*Chloride*encounters_lifetime_perc_covered\n", + "437 latitude>=log(Albumin__Mass_volume__in_Serum,Plasma)*mean_Carbon_Dioxide\n", + "438 latitude>=1/2*MCV__Entitic_volume__by_Automated_count-Potassium\n", + "439 latitude>=log(lifetime_conditions)*mean_Respiratory_rate\n", + "440 latitude>=device_lifetime_length*log(Potassium)/log(10)\n", + "441 latitude>=e^Potassium/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "442 latitude>=device_lifetime_length*sqrt(medications_lifetime_perc_covered)\n", + "443 latitude>=Leukocytes____volume__in_Blood_by_Automated_count^2-Glucose\n", + "444 latitude>=Hemoglobin__Mass_volume__in_Blood+floor(Carbon_Dioxide)\n", + "445 latitude>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-Potassium+1\n", + "446 latitude>=log(active_conditions)*mean_Respiratory_rate\n", + "447 latitude>=sqrt(lifetime_conditions)+mean_Body_Mass_Index\n", + "448 latitude>=e^medications_active/mean_Microalbumin_Creatinine_Ratio\n", + "449 latitude>=minimum(active_care_plan_length,10^imaging_studies_lifetime)\n", + "450 latitude>=sqrt(Body_Height)+Carbon_Dioxide\n", + "451 latitude>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "452 latitude>=sqrt(medications_lifetime)+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "453 latitude>=2*Body_Mass_Index/active_care_plan_length\n", + "454 latitude>=Carbon_Dioxide*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "455 latitude>=medications_active^2/active_care_plans\n", + "456 latitude>=Respiratory_rate*e^QOLS\n", + "457 latitude>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*QALY\n", + "458 latitude>=1/2*Heart_rate-healthcare_coverage\n", + "459 latitude>=sqrt(NT_proBNP)^imaging_studies_lifetime\n", + "460 latitude>=1/2*Heart_rate-mean_Calcium\n", + "461 latitude>=lifetime_care_plans*log(Heart_rate)\n", + "462 latitude>=2*Urea_Nitrogen+immunizations_lifetime\n", + "463 latitude>=(Systolic_Blood_Pressure+1)/Albumin__Mass_volume__in_Serum,Plasma\n", + "464 latitude>=Urea_Nitrogen*log(Systolic_Blood_Pressure)/log(10)\n", + "465 latitude>=Carbon_Dioxide*log(Body_Mass_Index)/log(10)\n", + "466 latitude>=sqrt(Triglycerides)+Carbon_Dioxide\n", + "467 latitude>=2*Triglycerides/mean_Urea_Nitrogen\n", + "468 latitude>=2*High_Density_Lipoprotein_Cholesterol/Albumin__Mass_volume__in_Serum,Plasma\n", + "469 latitude>=sqrt(High_Density_Lipoprotein_Cholesterol)*mean_Potassium\n", + "470 latitude>=Respiratory_rate+floor(Carbon_Dioxide)\n", + "471 longitude<=-latitude-lifetime_care_plans\n", + "472 longitude<=-Chloride+latitude-1\n", + "473 longitude<=Respiratory_rate-age\n", + "474 longitude<=-mean_High_Density_Lipoprotein_Cholesterol+2*medications_active\n", + "475 longitude<=-Respiratory_rate-latitude\n", + "476 longitude<=-Chloride+age-1\n", + "477 longitude<=-active_care_plan_length+log(Diastolic_Blood_Pressure)\n", + "478 longitude<=-active_condition_length+immunizations_lifetime_cost-1\n", + "479 longitude<=lifetime_care_plans^2-mean_Estimated_Glomerular_Filtration_Rate\n", + "480 longitude<=sqrt(encounters_lifetime_total_cost)-Glucose\n", + "481 longitude<=active_condition_length-age-1\n", + "482 longitude<=-Heart_rate+active_condition_length-1\n", + "483 longitude<=encounters_count^2-Diastolic_Blood_Pressure\n", + "484 longitude<=Erythrocytes____volume__in_Blood_by_Automated_count-QALY+1\n", + "485 longitude<=Diastolic_Blood_Pressure-Sodium\n", + "486 longitude<=-age+encounters_lifetime_payer_coverage-1\n", + "487 longitude<=-active_care_plan_length+immunizations_lifetime_cost-1\n", + "488 longitude<=-age+medications_lifetime_cost\n", + "489 longitude<=-Low_Density_Lipoprotein_Cholesterol+2*latitude\n", + "490 longitude<=Diastolic_Blood_Pressure-Systolic_Blood_Pressure-1\n", + "491 longitude<=Diastolic_Blood_Pressure-mean_Sodium-1\n", + "492 longitude<=Hemoglobin_A1c_Hemoglobin_total_in_Blood-active_condition_length+1\n", + "493 longitude<=DALY-procedures_lifetime-1\n", + "494 longitude<=-Protein__Mass_volume__in_Serum,Plasma+log(medications_lifetime_length)\n", + "495 longitude<=Total_Cholesterol*log(DALY)/log(10)\n", + "496 longitude<=-High_Density_Lipoprotein_Cholesterol+e^medications_active\n", + "497 longitude<=Body_Mass_Index-Heart_rate-1\n", + "498 longitude<=-QALY+log(healthcare_expenses)\n", + "499 longitude<=-MCHC__Mass_volume__by_Automated_count-procedures_lifetime\n", + "500 longitude<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "501 longitude<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-High_Density_Lipoprotein_Cholesterol\n", + "502 longitude<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_active\n", + "503 longitude<=-active_condition_length+log(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "504 longitude<=(medications_active-1)*mean_High_Density_Lipoprotein_Cholesterol\n", + "505 longitude<=10^QOLS-active_condition_length\n", + "506 longitude<=1/imaging_studies_lifetime-High_Density_Lipoprotein_Cholesterol\n", + "507 longitude<=-Body_Weight+latitude+1\n", + "508 longitude<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*log(QOLS)\n", + "509 longitude<=Hemoglobin__Mass_volume__in_Blood-age-1\n", + "510 longitude<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-mean_Chloride\n", + "511 longitude<=1/2*Triglycerides-mean_Low_Density_Lipoprotein_Cholesterol\n", + "512 longitude<=-lifetime_care_plans*medications_active\n", + "513 longitude<=-encounters_count/Microalbumin_Creatinine_Ratio\n", + "514 longitude<=1/2*Body_Mass_Index-age\n", + "515 longitude<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Heart_rate\n", + "516 longitude<=2*lifetime_care_plans-mean_High_Density_Lipoprotein_Cholesterol\n", + "517 longitude<=-active_conditions-latitude\n", + "518 longitude<=-latitude-lifetime_conditions\n", + "519 longitude<=-age/active_conditions\n", + "520 longitude<=1/num_allergies-mean_High_Density_Lipoprotein_Cholesterol\n", + "521 longitude<=-Glucose+2*QALY\n", + "522 longitude<=-QALY+active_care_plan_length+1\n", + "523 longitude<=-lifetime_care_plan_length/mean_Potassium\n", + "524 longitude<=-Albumin__Mass_volume__in_Serum,Plasma*active_conditions\n", + "525 longitude<=-QALY+2*active_conditions\n", + "526 longitude<=-High_Density_Lipoprotein_Cholesterol+lifetime_conditions+1\n", + "527 longitude<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*active_condition_length\n", + "528 longitude<=-device_lifetime_length/Creatinine\n", + "529 longitude<=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-mean_Heart_rate\n", + "530 longitude<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Sodium\n", + "531 longitude<=-Sodium/Globulin__Mass_volume__in_Serum_by_calculation\n", + "532 longitude<=10^immunizations_lifetime-mean_High_Density_Lipoprotein_Cholesterol\n", + "533 longitude<=2*Respiratory_rate-mean_Heart_rate\n", + "534 longitude<=Hemoglobin_A1c_Hemoglobin_total_in_Blood-QALY+1\n", + "535 longitude<=sqrt(Glucose)-High_Density_Lipoprotein_Cholesterol\n", + "536 longitude<=Carbon_Dioxide-MCV__Entitic_volume__by_Automated_count-1\n", + "537 longitude<=-Low_Density_Lipoprotein_Cholesterol+1/2*Total_Cholesterol\n", + "538 longitude<=-Protein__Mass_volume__in_Serum,Plasma+Urea_Nitrogen-1\n", + "539 longitude<=Calcium^2-mean_Sodium\n", + "540 longitude<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Protein__Mass_volume__in_Serum,Plasma-1\n", + "541 longitude<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)-mean_High_Density_Lipoprotein_Cholesterol\n", + "542 longitude<=-QALY+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "543 longitude<=log(Hemoglobin__Mass_volume__in_Blood)/log(10)-active_condition_length\n", + "544 longitude<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_Glucose\n", + "545 longitude>=-2*latitude\n", + "546 longitude>=DALY-Systolic_Blood_Pressure+1\n", + "547 longitude>=-Body_Height+ceil(age)\n", + "548 longitude>=Carbon_Dioxide-Chloride+1\n", + "549 longitude>=Carbon_Dioxide-mean_Chloride+1\n", + "550 longitude>=Erythrocytes____volume__in_Blood_by_Automated_count-mean_Diastolic_Blood_Pressure\n", + "551 longitude>=-Body_Height+Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "552 longitude>=-Diastolic_Blood_Pressure+encounters_lifetime_perc_covered-1\n", + "553 longitude>=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "554 longitude>=Heart_rate-Total_Cholesterol\n", + "555 longitude>=-immunizations_lifetime_cost-mean_Heart_rate\n", + "556 longitude>=-MCV__Entitic_volume__by_Automated_count+active_conditions\n", + "557 longitude>=log(Estimated_Glomerular_Filtration_Rate)/log(10)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "558 longitude>=-MCV__Entitic_volume__by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "559 longitude>=Diastolic_Blood_Pressure-Total_Cholesterol\n", + "560 longitude>=-Globulin__Mass_volume__in_Serum_by_calculation-Heart_rate\n", + "561 longitude>=ceil(MCH__Entitic_mass__by_Automated_count)-mean_Chloride\n", + "562 longitude>=-Systolic_Blood_Pressure+1/2*active_care_plan_length\n", + "563 longitude>=-1/2*Body_Height\n", + "564 longitude>=-Chloride+e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "565 longitude>=-Calcium^2\n", + "566 longitude>=log(medications_lifetime_perc_covered)/log(10)-Diastolic_Blood_Pressure\n", + "567 longitude>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*Urea_Nitrogen\n", + "568 longitude>=1/Estimated_Glomerular_Filtration_Rate-mean_Diastolic_Blood_Pressure\n", + "569 longitude>=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-mean_Diastolic_Blood_Pressure\n", + "570 longitude>=-Protein__Mass_volume__in_Serum,Plasma*medications_active\n", + "571 longitude>=-healthcare_expenses/immunizations_lifetime_cost\n", + "572 longitude>=-age-mean_Estimated_Glomerular_Filtration_Rate\n", + "573 longitude>=sqrt(medications_lifetime_dispenses)-Sodium\n", + "574 longitude>=-High_Density_Lipoprotein_Cholesterol-latitude\n", + "575 longitude>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "576 longitude>=2*Urea_Nitrogen-mean_Systolic_Blood_Pressure\n", + "577 longitude>=-Diastolic_Blood_Pressure+num_allergies-1\n", + "578 longitude>=-Body_Weight+log(num_allergies)\n", + "579 longitude>=-Diastolic_Blood_Pressure*active_care_plans\n", + "580 longitude>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "581 longitude>=active_care_plans^2-Sodium\n", + "582 longitude>=-active_care_plan_length*mean_Microalbumin_Creatinine_Ratio\n", + "583 longitude>=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)-lifetime_care_plan_length\n", + "584 longitude>=-Low_Density_Lipoprotein_Cholesterol-active_conditions\n", + "585 longitude>=-Glucose-lifetime_conditions\n", + "586 longitude>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "587 longitude>=sqrt(encounters_count)-MCV__Entitic_volume__by_Automated_count\n", + "588 longitude>=-Diastolic_Blood_Pressure-procedures_lifetime\n", + "589 longitude>=1/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-Diastolic_Blood_Pressure\n", + "590 longitude>=-Systolic_Blood_Pressure+e^immunizations_lifetime\n", + "591 longitude>=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)-mean_Diastolic_Blood_Pressure\n", + "592 longitude>=-Body_Weight-DALY\n", + "593 longitude>=-Body_Height+2*DALY\n", + "594 longitude>=-Heart_rate-Respiratory_rate\n", + "595 longitude>=-Heart_rate-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "596 longitude>=-Body_Height+1/2*Systolic_Blood_Pressure\n", + "597 longitude>=log(Hemoglobin__Mass_volume__in_Blood)/log(10)-Diastolic_Blood_Pressure\n", + "598 longitude>=-Erythrocytes____volume__in_Blood_by_Automated_count-mean_Glucose\n", + "599 longitude>=Body_Mass_Index-mean_Triglycerides+1\n", + "600 longitude>=-Body_Weight-Microalbumin_Creatinine_Ratio\n", + "601 longitude>=log(MCV__Entitic_volume__by_Automated_count)-mean_Diastolic_Blood_Pressure\n", + "602 longitude>=-Low_Density_Lipoprotein_Cholesterol-mean_Calcium\n", + "603 longitude>=-Glucose-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "604 longitude>=-Glucose/QOLS\n", + "605 longitude>=Calcium-MCV__Entitic_volume__by_Automated_count+1\n", + "606 longitude>=Globulin__Mass_volume__in_Serum_by_calculation^2-mean_Low_Density_Lipoprotein_Cholesterol\n", + "607 longitude>=-Bilirubin_total__Mass_volume__in_Serum,Plasma-mean_Diastolic_Blood_Pressure\n", + "608 longitude>=-Diastolic_Blood_Pressure+log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "609 longitude>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)-mean_Heart_rate\n", + "610 age<=sqrt(Potassium)*latitude\n", + "611 age<=Respiratory_rate-longitude\n", + "612 age<=e^lifetime_care_plans+healthcare_coverage\n", + "613 age<=10^active_conditions+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "614 age<=Calcium^2+mean_Urea_Nitrogen\n", + "615 age<=maximum(Diastolic_Blood_Pressure,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "616 age<=10^medications_lifetime_perc_covered*mean_Protein__Mass_volume__in_Serum,Plasma\n", + "617 age<=Diastolic_Blood_Pressure+1/2*active_care_plan_length\n", + "618 age<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+e^Potassium\n", + "619 age<=Hemoglobin__Mass_volume__in_Blood-longitude-1\n", + "620 age<=10^encounters_count/Urea_Nitrogen\n", + "621 age<=MCV__Entitic_volume__by_Automated_count^2/mean_Heart_rate\n", + "622 age<=log(healthcare_expenses)*mean_Microalbumin_Creatinine_Ratio\n", + "623 age<=1/2*healthcare_expenses/Body_Height\n", + "624 age<=lifetime_care_plans^2+Diastolic_Blood_Pressure\n", + "625 age<=Diastolic_Blood_Pressure*e^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "626 age<=2*latitude+procedures_lifetime\n", + "627 age<=Body_Mass_Index*sqrt(Respiratory_rate)\n", + "628 age<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Heart_rate\n", + "629 age<=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*medications_lifetime_dispenses\n", + "630 age<=10^active_care_plans+QALY\n", + "631 age<=maximum(medications_lifetime,Estimated_Glomerular_Filtration_Rate-1)\n", + "632 age<=Total_Cholesterol-mean_Heart_rate-1\n", + "633 age<=QALY+active_condition_length+1\n", + "634 age<=1/2*Total_Cholesterol+imaging_studies_lifetime\n", + "635 age<=log(medications_lifetime_length)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "636 age<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(lifetime_care_plan_length))\n", + "637 age<=High_Density_Lipoprotein_Cholesterol+QALY-1\n", + "638 age<=Potassium^2+Low_Density_Lipoprotein_Cholesterol\n", + "639 age<=(DALY-1)*mean_Microalbumin_Creatinine_Ratio\n", + "640 age<=Chloride-active_conditions-1\n", + "641 age<=4*Carbon_Dioxide\n", + "642 age<=-Chloride+ceil(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "643 age<=maximum(mean_Diastolic_Blood_Pressure,Estimated_Glomerular_Filtration_Rate^2)\n", + "644 age<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime\n", + "645 age<=10^medications_active+Diastolic_Blood_Pressure\n", + "646 age<=2*Total_Cholesterol/num_allergies\n", + "647 age<=10^QOLS*MCHC__Mass_volume__by_Automated_count\n", + "648 age<=(Total_Cholesterol-1)*Creatinine\n", + "649 age<=1/2*immunizations_lifetime_cost+mean_Microalbumin_Creatinine_Ratio\n", + "650 age<=Calcium+mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "651 age<=QALY*log(MCV__Entitic_volume__by_Automated_count)/log(10)\n", + "652 age<=maximum(Glucose,Estimated_Glomerular_Filtration_Rate)\n", + "653 age<=1/2*Body_Height-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "654 age<=sqrt(encounters_count)+mean_Low_Density_Lipoprotein_Cholesterol\n", + "655 age<=log(QALY)^encounters_count\n", + "656 age<=maximum(lifetime_care_plan_length,2*latitude)\n", + "657 age<=Urea_Nitrogen^2+immunizations_lifetime_cost\n", + "658 age<=MCV__Entitic_volume__by_Automated_count+encounters_lifetime_perc_covered-1\n", + "659 age<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_Chloride+1\n", + "660 age<=10^Creatinine+Estimated_Glomerular_Filtration_Rate\n", + "661 age<=ceil(active_condition_length)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "662 age<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_condition_length+1\n", + "663 age<=Calcium^2+active_conditions\n", + "664 age<=immunizations_lifetime+2*latitude\n", + "665 age<=maximum(Diastolic_Blood_Pressure,2*latitude)\n", + "666 age<=Calcium^2+immunizations_lifetime_cost\n", + "667 age<=(-longitude)^active_conditions\n", + "668 age<=maximum(lifetime_care_plan_length,1/num_allergies)\n", + "669 age<=Diastolic_Blood_Pressure+ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "670 age<=Heart_rate+1/2*active_care_plan_length\n", + "671 age<=1/2*encounters_count+mean_Estimated_Glomerular_Filtration_Rate\n", + "672 age<=e^active_care_plans+mean_Low_Density_Lipoprotein_Cholesterol\n", + "673 age<=2*active_condition_length+lifetime_care_plan_length\n", + "674 age<=2*active_condition_length/medications_lifetime_perc_covered\n", + "675 age<=DALY^2+Diastolic_Blood_Pressure\n", + "676 age<=2*active_conditions+mean_Low_Density_Lipoprotein_Cholesterol\n", + "677 age<=Heart_rate*e^encounters_lifetime_perc_covered\n", + "678 age<=Carbon_Dioxide*log(active_condition_length)\n", + "679 age<=sqrt(lifetime_condition_length)+Glucose\n", + "680 age<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*encounters_count\n", + "681 age<=(QALY+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "682 age<=immunizations_lifetime_cost+mean_Microalbumin_Creatinine_Ratio-1\n", + "683 age<=Low_Density_Lipoprotein_Cholesterol+1/2*medications_lifetime\n", + "684 age<=sqrt(Triglycerides)+Diastolic_Blood_Pressure\n", + "685 age<=-Carbon_Dioxide+Systolic_Blood_Pressure+1\n", + "686 age<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*e^Creatinine\n", + "687 age<=2*Estimated_Glomerular_Filtration_Rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "688 age<=Body_Height^2/lifetime_care_plan_length\n", + "689 age<=Sodium-device_lifetime_length-1\n", + "690 age<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Sodium-1\n", + "691 age<=Urea_Nitrogen^2+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "692 age<=Glucose+e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "693 age<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-longitude\n", + "694 age<=Body_Weight+log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "695 age>=ceil(QALY)+num_allergies\n", + "696 age>=DALY+QALY\n", + "697 age>=log(Body_Mass_Index)/log(10)+QALY\n", + "698 age>=-Diastolic_Blood_Pressure+mean_Systolic_Blood_Pressure\n", + "699 age>=Hemoglobin__Mass_volume__in_Blood*log(MCHC__Mass_volume__by_Automated_count)\n", + "700 age>=device_lifetime_length*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "701 age>=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Potassium\n", + "702 age>=1/2*Chloride-healthcare_coverage\n", + "703 age>=1/2*Chloride*medications_lifetime_perc_covered\n", + "704 age>=-mean_Urea_Nitrogen+procedures_lifetime\n", + "705 age>=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Glucose\n", + "706 age>=log(Urea_Nitrogen)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "707 age>=DALY+ceil(QALY)\n", + "708 age>=Globulin__Mass_volume__in_Serum_by_calculation^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "709 age>=sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)+QALY\n", + "710 age>=active_condition_length+ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "711 age>=QALY+ceil(DALY)\n", + "712 age>=(active_care_plans+1)^2\n", + "713 age>=lifetime_care_plans^2-DALY\n", + "714 age>=(Diastolic_Blood_Pressure-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "715 age>=1/2*Heart_rate+Leukocytes____volume__in_Blood_by_Automated_count\n", + "716 age>=sqrt(active_care_plans)+Body_Mass_Index\n", + "717 age>=2*DALY-active_conditions\n", + "718 age>=1/2*lifetime_condition_length/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "719 age>=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*Systolic_Blood_Pressure\n", + "720 age>=ceil(active_condition_length)+medications_lifetime_perc_covered\n", + "721 age>=(latitude+1)/mean_Creatinine\n", + "722 age>=active_condition_length+num_allergies-1\n", + "723 age>=encounters_lifetime_perc_covered*floor(High_Density_Lipoprotein_Cholesterol)\n", + "724 age>=sqrt(active_care_plans)+QALY\n", + "725 age>=minimum(Protein__Mass_volume__in_Serum,Plasma,e^lifetime_care_plans)\n", + "726 age>=(1/2*Globulin__Mass_volume__in_Serum_by_calculation)^medications_active\n", + "727 age>=encounters_lifetime_perc_covered+floor(active_care_plan_length)\n", + "728 age>=Creatinine^2+device_lifetime_length\n", + "729 age>=1/active_condition_length+active_care_plan_length\n", + "730 age>=ceil(active_care_plan_length)-encounters_lifetime_perc_covered\n", + "731 age>=minimum(Protein__Mass_volume__in_Serum,Plasma,floor(lifetime_care_plan_length))\n", + "732 age>=log(encounters_lifetime_total_cost)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "733 age>=sqrt(device_lifetime_length)+active_condition_length\n", + "734 age>=device_lifetime_length*log(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "735 age>=2*encounters_count/Estimated_Glomerular_Filtration_Rate\n", + "736 age>=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+QALY\n", + "737 age>=Albumin__Mass_volume__in_Serum,Plasma^2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "738 age>=QALY+1/2*medications_active\n", + "739 age>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Carbon_Dioxide\n", + "740 age>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*active_care_plan_length\n", + "741 age>=QOLS+ceil(QALY)\n", + "742 age>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*lifetime_care_plans\n", + "743 age>=sqrt(MCV__Entitic_volume__by_Automated_count)*medications_active\n", + "744 age>=ceil(MCHC__Mass_volume__by_Automated_count)*immunizations_lifetime\n", + "745 num_allergies<=lifetime_care_plans\n", + "746 num_allergies<=healthcare_coverage\n", + "747 num_allergies<=active_conditions\n", + "748 num_allergies<=floor(active_condition_length)\n", + "749 num_allergies<=encounters_lifetime_payer_coverage\n", + "750 num_allergies<=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "751 num_allergies<=Creatinine^healthcare_expenses\n", + "752 num_allergies<=imaging_studies_lifetime^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "753 num_allergies<=log(Creatinine)^medications_lifetime_cost\n", + "754 num_allergies<=medications_active/medications_lifetime_perc_covered\n", + "755 num_allergies<=active_care_plans+1\n", + "756 num_allergies<=-active_care_plan_length+lifetime_care_plan_length\n", + "757 num_allergies<=-active_care_plans+encounters_count-1\n", + "758 num_allergies<=device_lifetime_length/imaging_studies_lifetime\n", + "759 num_allergies<=active_care_plan_length^2/procedures_lifetime_cost\n", + "760 num_allergies<=ceil(DALY)\n", + "761 num_allergies<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "762 num_allergies<=device_lifetime_length^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "763 num_allergies<=device_lifetime_length^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "764 num_allergies<=log(medications_active)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "765 num_allergies<=Diastolic_Blood_Pressure+ceil(longitude)\n", + "766 num_allergies<=2*QOLS+immunizations_lifetime_cost\n", + "767 num_allergies<=procedures_lifetime_cost/immunizations_lifetime\n", + "768 num_allergies<=active_condition_length/device_lifetime_length\n", + "769 num_allergies<=Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "770 num_allergies<=(lifetime_care_plans-1)/procedures_lifetime\n", + "771 num_allergies<=e^encounters_lifetime_payer_coverage*immunizations_lifetime\n", + "772 num_allergies<=(1/2*Creatinine)^medications_lifetime_cost\n", + "773 num_allergies<=imaging_studies_lifetime^Total_score__MMSE_\n", + "774 num_allergies<=imaging_studies_lifetime^FEV1_FVC\n", + "775 num_allergies<=immunizations_lifetime_cost/device_lifetime_length\n", + "776 num_allergies<=immunizations_lifetime_cost/procedures_lifetime\n", + "777 num_allergies<=(log(DALY)/log(10))^Microalbumin_Creatinine_Ratio\n", + "778 num_allergies<=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "779 num_allergies<=(procedures_lifetime_cost-1)^QALY\n", + "780 num_allergies<=High_Density_Lipoprotein_Cholesterol^2/procedures_lifetime_cost\n", + "781 num_allergies<=maximum(Triglycerides,1/device_lifetime_length)\n", + "782 num_allergies>=floor(encounters_lifetime_perc_covered)\n", + "783 num_allergies>=-healthcare_coverage\n", + "784 num_allergies>=-device_lifetime_length\n", + "785 num_allergies>=active_care_plans-lifetime_conditions\n", + "786 num_allergies>=(-procedures_lifetime)^mean_Low_Density_Lipoprotein_Cholesterol\n", + "787 num_allergies>=sqrt(lifetime_care_plan_length)-Hemoglobin__Mass_volume__in_Blood\n", + "788 num_allergies>=active_care_plan_length-age+1\n", + "789 num_allergies>=-active_condition_length+device_lifetime_length+1\n", + "790 num_allergies>=floor(QOLS)-procedures_lifetime\n", + "791 active_care_plans<=lifetime_care_plans\n", + "792 active_care_plans<=active_conditions+1\n", + "793 active_care_plans<=lifetime_conditions+num_allergies\n", + "794 active_care_plans<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^2\n", + "795 active_care_plans<=floor(log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", + "796 active_care_plans<=floor(latitude)-mean_Body_Mass_Index\n", + "797 active_care_plans<=ceil(10^DALY)\n", + "798 active_care_plans<=(lifetime_care_plan_length-1)/mean_Urea_Nitrogen\n", + "799 active_care_plans<=encounters_lifetime_payer_coverage+medications_lifetime\n", + "800 active_care_plans<=immunizations_lifetime+medications_lifetime+1\n", + "801 active_care_plans<=-Respiratory_rate+floor(Carbon_Dioxide)\n", + "802 active_care_plans<=Globulin__Mass_volume__in_Serum_by_calculation+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "803 active_care_plans<=-Creatinine+Urea_Nitrogen\n", + "804 active_care_plans<=ceil(sqrt(High_Density_Lipoprotein_Cholesterol))\n", + "805 active_care_plans<=ceil(1/2*Microalbumin_Creatinine_Ratio)\n", + "806 active_care_plans<=maximum(Triglycerides,ceil(Globulin__Mass_volume__in_Serum_by_calculation))\n", + "807 active_care_plans<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+medications_active\n", + "808 active_care_plans<=-DALY+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "809 active_care_plans<=DALY+log(active_care_plan_length)\n", + "810 active_care_plans<=Body_Mass_Index^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "811 active_care_plans<=(log(active_care_plan_length)/log(10))^Potassium\n", + "812 active_care_plans<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*medications_lifetime\n", + "813 active_care_plans<=Carbon_Dioxide^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "814 active_care_plans>=1/2*lifetime_care_plans\n", + "815 active_care_plans>=imaging_studies_lifetime+1\n", + "816 active_care_plans>=(1/lifetime_care_plans)\n", + "817 active_care_plans>=QOLS\n", + "818 active_care_plans>=minimum(lifetime_care_plans,log(medications_lifetime)/log(10))\n", + "819 active_care_plans>=2*lifetime_care_plan_length/Chloride\n", + "820 active_care_plans>=-immunizations_lifetime+num_allergies\n", + "821 active_care_plans>=num_allergies-1\n", + "822 active_care_plans>=1/2*lifetime_care_plan_length/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "823 active_care_plans>=(1/Creatinine)\n", + "824 active_care_plans>=floor(sqrt(Leukocytes____volume__in_Blood_by_Automated_count))\n", + "825 active_care_plans>=floor(log(active_conditions))\n", + "826 active_care_plans>=floor(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "827 active_care_plans>=floor(e^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "828 active_care_plans>=Calcium/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "829 active_care_plans>=ceil(log(device_lifetime_length)/log(10))\n", + "830 active_care_plans>=-immunizations_lifetime_cost+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "831 active_care_plans>=Creatinine-DALY\n", + "832 active_care_plans>=medications_active^2/Hemoglobin__Mass_volume__in_Blood\n", + "833 active_care_plans>=floor(lifetime_care_plan_length)/active_care_plan_length\n", + "834 active_care_plans>=-immunizations_lifetime_cost+lifetime_care_plans-1\n", + "835 active_care_plans>=minimum(procedures_lifetime,log(lifetime_care_plan_length)/log(10))\n", + "836 active_care_plans>=minimum(Creatinine,10^num_allergies)\n", + "837 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^imaging_studies_lifetime\n", + "838 active_care_plans>=minimum(medications_active,lifetime_care_plans-1)\n", + "839 active_care_plans>=minimum(procedures_lifetime,lifetime_care_plans-1)\n", + "840 active_care_plans>=2*lifetime_care_plan_length/Systolic_Blood_Pressure\n", + "841 active_care_plans>=minimum(device_lifetime_length,lifetime_care_plans-1)\n", + "842 active_care_plans>=-Respiratory_rate+lifetime_conditions\n", + "843 active_care_plans>=active_conditions-encounters_count\n", + "844 active_care_plans>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_conditions+1\n", + "845 active_care_plans>=sqrt(medications_lifetime_length)-mean_Systolic_Blood_Pressure\n", + "846 active_care_plans>=-immunizations_lifetime_cost+medications_active-1\n", + "847 active_care_plans>=-Estimated_Glomerular_Filtration_Rate+1/2*device_lifetime_length\n", + "848 active_care_plans>=ceil(log(Leukocytes____volume__in_Blood_by_Automated_count))\n", + "849 active_care_plans>=minimum(device_lifetime_length,immunizations_lifetime^2)\n", + "850 active_care_plans>=floor(Creatinine)-procedures_lifetime_cost\n", + "851 active_care_plans>=-healthcare_coverage+lifetime_care_plans-1\n", + "852 active_care_plans>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*procedures_lifetime\n", + "853 active_care_plans>=ceil(1/2*lifetime_care_plans)\n", + "854 active_care_plans>=imaging_studies_lifetime/Creatinine\n", + "855 active_care_plans>=immunizations_lifetime^num_allergies\n", + "856 active_care_plans>=minimum(lifetime_care_plans,immunizations_lifetime)\n", + "857 active_care_plans>=(medications_active-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "858 active_care_plans>=minimum(procedures_lifetime,1/2*medications_active)\n", + "859 active_care_plans>=minimum(Creatinine,10^device_lifetime_length)\n", + "860 active_care_plans>=Globulin__Mass_volume__in_Serum_by_calculation+log(device_lifetime_length)\n", + "861 active_care_plans>=Respiratory_rate/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "862 active_care_plans>=encounters_count^2/encounters_lifetime_total_cost\n", + "863 active_care_plans>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-healthcare_coverage\n", + "864 active_care_plans>=(Creatinine+1)^imaging_studies_lifetime\n", + "865 active_care_plans>=minimum(lifetime_care_plans,log(encounters_count)/log(10))\n", + "866 active_care_plans>=mean_Creatinine*medications_lifetime_perc_covered\n", + "867 active_care_plans>=sqrt(encounters_lifetime_perc_covered)/QOLS\n", + "868 active_care_plans>=floor(log(Triglycerides)/log(10))\n", + "869 active_care_plans>=ceil(1/2*Creatinine)\n", + "870 active_care_plans>=-immunizations_lifetime_cost+1/2*procedures_lifetime\n", + "871 active_care_plans>=log(healthcare_coverage)/log(10)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "872 active_care_plans>=sqrt(Body_Weight)-Urea_Nitrogen\n", + "873 active_care_plans>=(log(FEV1_FVC)/log(10))^immunizations_lifetime\n", + "874 active_care_plans>=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", + "875 active_care_plans>=-Heart_rate+Protein__Mass_volume__in_Serum,Plasma+1\n", + "876 active_care_plans>=Albumin__Mass_volume__in_Serum,Plasma^2/Urea_Nitrogen\n", + "877 lifetime_care_plans<=Potassium/encounters_lifetime_perc_covered\n", + "878 lifetime_care_plans<=floor(active_care_plan_length)\n", + "879 lifetime_care_plans<=ceil(active_condition_length)\n", + "880 lifetime_care_plans<=encounters_count-1\n", + "881 lifetime_care_plans<=2*active_care_plans\n", + "882 lifetime_care_plans<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,active_care_plans+1)\n", + "883 lifetime_care_plans<=Respiratory_rate/imaging_studies_lifetime\n", + "884 lifetime_care_plans<=floor(Albumin__Mass_volume__in_Serum,Plasma)+medications_active\n", + "885 lifetime_care_plans<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "886 lifetime_care_plans<=floor(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "887 lifetime_care_plans<=2*active_conditions\n", + "888 lifetime_care_plans<=Urea_Nitrogen-immunizations_lifetime-1\n", + "889 lifetime_care_plans<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_care_plans+1)\n", + "890 lifetime_care_plans<=active_care_plans^2+procedures_lifetime\n", + "891 lifetime_care_plans<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "892 lifetime_care_plans<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*medications_active\n", + "893 lifetime_care_plans<=(latitude-1)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "894 lifetime_care_plans<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+healthcare_coverage\n", + "895 lifetime_care_plans<=active_care_plans+immunizations_lifetime_cost+1\n", + "896 lifetime_care_plans<=active_care_plans+procedures_lifetime_cost+1\n", + "897 lifetime_care_plans<=healthcare_expenses^DALY\n", + "898 lifetime_care_plans<=Calcium*DALY\n", + "899 lifetime_care_plans<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "900 lifetime_care_plans<=Respiratory_rate-num_allergies-1\n", + "901 lifetime_care_plans<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "902 lifetime_care_plans<=floor(active_care_plan_length)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "903 lifetime_care_plans<=active_care_plan_length^2/mean_Microalbumin_Creatinine_Ratio\n", + "904 lifetime_care_plans<=floor(active_condition_length)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "905 lifetime_care_plans<=active_conditions+procedures_lifetime_cost\n", + "906 lifetime_care_plans<=(QALY-1)/Potassium\n", + "907 lifetime_care_plans<=maximum(Sodium,active_care_plans+1)\n", + "908 lifetime_care_plans<=encounters_count-procedures_lifetime\n", + "909 lifetime_care_plans<=encounters_count/Albumin__Mass_volume__in_Serum,Plasma\n", + "910 lifetime_care_plans<=minimum(Respiratory_rate,active_care_plans^2)\n", + "911 lifetime_care_plans<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "912 lifetime_care_plans<=Urea_Nitrogen-2\n", + "913 lifetime_care_plans<=maximum(medications_lifetime,log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10))\n", + "914 lifetime_care_plans<=e^active_care_plans/Globulin__Mass_volume__in_Serum_by_calculation\n", + "915 lifetime_care_plans<=mean_Microalbumin_Creatinine_Ratio/immunizations_lifetime\n", + "916 lifetime_care_plans<=-active_conditions+floor(Body_Mass_Index)\n", + "917 lifetime_care_plans<=1/imaging_studies_lifetime+active_care_plans\n", + "918 lifetime_care_plans<=Body_Mass_Index-Respiratory_rate\n", + "919 lifetime_care_plans<=(active_care_plans+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "920 lifetime_care_plans<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-DALY\n", + "921 lifetime_care_plans<=1/2*Body_Height+longitude\n", + "922 lifetime_care_plans<=maximum(active_conditions,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "923 lifetime_care_plans<=Globulin__Mass_volume__in_Serum_by_calculation*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "924 lifetime_care_plans<=2*floor(Albumin__Mass_volume__in_Serum,Plasma)\n", + "925 lifetime_care_plans<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_conditions-1)\n", + "926 lifetime_care_plans<=(e^Respiratory_rate)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "927 lifetime_care_plans<=active_care_plans*log(Low_Density_Lipoprotein_Cholesterol)/log(10)\n", + "928 lifetime_care_plans<=maximum(Sodium,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "929 lifetime_care_plans<=2*Leukocytes____volume__in_Blood_by_Automated_count-2\n", + "930 lifetime_care_plans<=ceil(Leukocytes____volume__in_Blood_by_Automated_count+1)\n", + "931 lifetime_care_plans<=minimum(healthcare_expenses,floor(Total_score__MMSE_))\n", + "932 lifetime_care_plans<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+DALY\n", + "933 lifetime_care_plans<=(active_care_plans+1)/medications_lifetime_perc_covered\n", + "934 lifetime_care_plans<=minimum(Triglycerides,floor(active_conditions))\n", + "935 lifetime_care_plans<=sqrt(active_condition_length)+immunizations_lifetime_cost\n", + "936 lifetime_care_plans<=minimum(Estimated_Glomerular_Filtration_Rate,ceil(DALY))\n", + "937 lifetime_care_plans<=Calcium-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1\n", + "938 lifetime_care_plans<=active_care_plans^2*mean_Creatinine\n", + "939 lifetime_care_plans<=active_care_plans+encounters_lifetime_payer_coverage+1\n", + "940 lifetime_care_plans<=minimum(Triglycerides,-DXA__T_score__Bone_density)\n", + "941 lifetime_care_plans<=minimum(Triglycerides,floor(medications_lifetime))\n", + "942 lifetime_care_plans<=medications_lifetime+procedures_lifetime_cost+1\n", + "943 lifetime_care_plans<=1/2*medications_lifetime_cost/medications_lifetime_length\n", + "944 lifetime_care_plans<=1/medications_lifetime_perc_covered+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "945 lifetime_care_plans<=10^medications_active+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "946 lifetime_care_plans<=10^medications_active*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "947 lifetime_care_plans<=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)+procedures_lifetime_cost\n", + "948 lifetime_care_plans<=Microalbumin_Creatinine_Ratio^2-Respiratory_rate\n", + "949 lifetime_care_plans<=Platelets____volume__in_Blood_by_Automated_count^2/encounters_lifetime_payer_coverage\n", + "950 lifetime_care_plans<=sqrt(Low_Density_Lipoprotein_Cholesterol)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "951 lifetime_care_plans<=minimum(healthcare_expenses,log(Body_temperature))\n", + "952 lifetime_care_plans>=num_allergies\n", + "953 lifetime_care_plans>=active_care_plans\n", + "954 lifetime_care_plans>=2/lifetime_conditions\n", + "955 lifetime_care_plans>=(lifetime_care_plan_length+1)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "956 lifetime_care_plans>=2*procedures_lifetime/Hemoglobin__Mass_volume__in_Blood\n", + "957 lifetime_care_plans>=ceil(Ketones__Mass_volume__in_Urine_by_Test_strip)^imaging_studies_lifetime\n", + "958 lifetime_care_plans>=mean_Creatinine*sqrt(num_allergies)\n", + "959 lifetime_care_plans>=medications_active^Specific_gravity_of_Urine_by_Test_strip\n", + "960 lifetime_care_plans>=-encounters_lifetime_payer_coverage+procedures_lifetime\n", + "961 lifetime_care_plans>=Systolic_Blood_Pressure-mean_Total_Cholesterol+1\n", + "962 lifetime_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-healthcare_coverage\n", + "963 lifetime_care_plans>=Bilirubin_total__Mass_volume__in_Serum,Plasma*log(Heart_rate)\n", + "964 lifetime_care_plans>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,immunizations_lifetime+1)\n", + "965 lifetime_care_plans>=-DALY+Globulin__Mass_volume__in_Serum_by_calculation+1\n", + "966 lifetime_care_plans>=sqrt(lifetime_conditions)-encounters_lifetime_payer_coverage\n", + "967 lifetime_care_plans>=lifetime_conditions^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "968 lifetime_care_plans>=(1/2*Total_score__MMSE_)^medications_lifetime_perc_covered\n", + "969 lifetime_care_plans>=sqrt(medications_lifetime_dispenses)/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "970 lifetime_care_plans>=(10^DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "971 lifetime_care_plans>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*medications_active\n", + "972 lifetime_care_plans>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "973 active_care_plan_length<=1/longitude+age\n", + "974 active_care_plan_length<=lifetime_care_plan_length\n", + "975 active_care_plan_length<=floor(mean_Calcium)^2\n", + "976 active_care_plan_length<=e^Calcium/mean_Diastolic_Blood_Pressure\n", + "977 active_care_plan_length<=floor(Potassium)^mean_Potassium\n", + "978 active_care_plan_length<=maximum(active_condition_length,1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "979 active_care_plan_length<=active_condition_length*ceil(Creatinine)\n", + "980 active_care_plan_length<=Estimated_Glomerular_Filtration_Rate*log(Triglycerides)\n", + "981 active_care_plan_length<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "982 active_care_plan_length<=(e^QOLS)^mean_Estimated_Glomerular_Filtration_Rate\n", + "983 active_care_plan_length<=(Triglycerides+1)/imaging_studies_lifetime\n", + "984 active_care_plan_length<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Chloride-1\n", + "985 active_care_plan_length<=Systolic_Blood_Pressure*log(Potassium)/log(10)\n", + "986 active_care_plan_length<=(active_condition_length-1)/medications_lifetime_perc_covered\n", + "987 active_care_plan_length<=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^mean_Microalbumin_Creatinine_Ratio\n", + "988 active_care_plan_length<=2*Protein__Mass_volume__in_Serum,Plasma*QOLS\n", + "989 active_care_plan_length<=active_condition_length+healthcare_coverage\n", + "990 active_care_plan_length<=(latitude-1)/encounters_lifetime_perc_covered\n", + "991 active_care_plan_length<=immunizations_lifetime_cost-longitude-1\n", + "992 active_care_plan_length<=active_condition_length+log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "993 active_care_plan_length<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*Systolic_Blood_Pressure\n", + "994 active_care_plan_length<=1/2*Glucose+Microalbumin_Creatinine_Ratio\n", + "995 active_care_plan_length<=encounters_lifetime_perc_covered+floor(age)\n", + "996 active_care_plan_length<=minimum(Systolic_Blood_Pressure,Left_ventricular_Ejection_fraction-1)\n", + "997 active_care_plan_length<=-active_care_plans+lifetime_care_plan_length+1\n", + "998 active_care_plan_length<=active_condition_length*ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "999 active_care_plan_length<=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+QALY\n", + "1000 active_care_plan_length<=(1/encounters_lifetime_perc_covered)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1001 active_care_plan_length<=Potassium^2+active_condition_length\n", + "1002 active_care_plan_length<=active_condition_length+encounters_lifetime_payer_coverage\n", + "1003 active_care_plan_length<=QOLS+age-1\n", + "1004 active_care_plan_length<=-Glucose+ceil(Platelets____volume__in_Blood_by_Automated_count)\n", + "1005 active_care_plan_length<=10^encounters_lifetime_perc_covered*High_Density_Lipoprotein_Cholesterol\n", + "1006 active_care_plan_length<=2*active_condition_length+immunizations_lifetime_cost\n", + "1007 active_care_plan_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+active_condition_length\n", + "1008 active_care_plan_length<=Body_Weight-active_conditions+1\n", + "1009 active_care_plan_length<=Body_Weight-medications_active\n", + "1010 active_care_plan_length<=Body_Height-Heart_rate-1\n", + "1011 active_care_plan_length<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*active_condition_length\n", + "1012 active_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Microalbumin_Creatinine_Ratio\n", + "1013 active_care_plan_length<=sqrt(Estimated_Glomerular_Filtration_Rate)+medications_lifetime\n", + "1014 active_care_plan_length<=Carbon_Dioxide*sqrt(Urea_Nitrogen)\n", + "1015 active_care_plan_length<=maximum(active_condition_length,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1016 active_care_plan_length<=-Microalbumin_Creatinine_Ratio+1/2*medications_lifetime_dispenses\n", + "1017 active_care_plan_length<=(log(active_condition_length)/log(10))^mean_Urea_Nitrogen\n", + "1018 active_care_plan_length<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+encounters_count\n", + "1019 active_care_plan_length<=maximum(active_condition_length,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1020 active_care_plan_length<=10^Globulin__Mass_volume__in_Serum_by_calculation-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1021 active_care_plan_length<=Hemoglobin__Mass_volume__in_Blood^2*QOLS\n", + "1022 active_care_plan_length<=Urea_Nitrogen^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "1023 active_care_plan_length<=log(Diastolic_Blood_Pressure)-longitude\n", + "1024 active_care_plan_length<=Systolic_Blood_Pressure-latitude+1\n", + "1025 active_care_plan_length<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*active_condition_length\n", + "1026 active_care_plan_length<=(e^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1027 active_care_plan_length<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*QALY\n", + "1028 active_care_plan_length<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+QALY\n", + "1029 active_care_plan_length<=(2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^Creatinine\n", + "1030 active_care_plan_length<=age+num_allergies-1\n", + "1031 active_care_plan_length<=active_condition_length*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "1032 active_care_plan_length<=High_Density_Lipoprotein_Cholesterol+lifetime_condition_length-1\n", + "1033 active_care_plan_length<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "1034 active_care_plan_length<=Calcium+1/2*Triglycerides\n", + "1035 active_care_plan_length<=(active_care_plans+1)*Estimated_Glomerular_Filtration_Rate\n", + "1036 active_care_plan_length<=-Globulin__Mass_volume__in_Serum_by_calculation+lifetime_care_plan_length+1\n", + "1037 active_care_plan_length<=10^immunizations_lifetime+Heart_rate\n", + "1038 active_care_plan_length<=encounters_lifetime_payer_coverage+lifetime_care_plan_length-1\n", + "1039 active_care_plan_length<=1/2*DALY*mean_Microalbumin_Creatinine_Ratio\n", + "1040 active_care_plan_length<=1/2*Heart_rate+Microalbumin_Creatinine_Ratio\n", + "1041 active_care_plan_length>=Low_Density_Lipoprotein_Cholesterol*log(num_allergies)/log(10)\n", + "1042 active_care_plan_length>=lifetime_care_plan_length/lifetime_care_plans\n", + "1043 active_care_plan_length>=sqrt(Microalbumin_Creatinine_Ratio)+device_lifetime_length\n", + "1044 active_care_plan_length>=lifetime_care_plan_length-lifetime_condition_length\n", + "1045 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plans\n", + "1046 active_care_plan_length>=(lifetime_care_plan_length+1)/Albumin__Mass_volume__in_Serum,Plasma\n", + "1047 active_care_plan_length>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(latitude)\n", + "1048 active_care_plan_length>=-MCH__Entitic_mass__by_Automated_count+1/2*lifetime_care_plan_length\n", + "1049 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Leukocytes____volume__in_Blood_by_Automated_count\n", + "1050 active_care_plan_length>=2*Protein__Mass_volume__in_Serum,Plasma-mean_Triglycerides\n", + "1051 active_care_plan_length>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1052 active_care_plan_length>=minimum(lifetime_care_plan_length,log(medications_lifetime_cost))\n", + "1053 active_care_plan_length>=active_condition_length-healthcare_coverage\n", + "1054 active_care_plan_length>=Urea_Nitrogen+mean_Creatinine\n", + "1055 active_care_plan_length>=DALY-procedures_lifetime_cost+1\n", + "1056 active_care_plan_length>=Diastolic_Blood_Pressure-Heart_rate+1\n", + "1057 active_care_plan_length>=device_lifetime_length+log(lifetime_care_plan_length)\n", + "1058 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*encounters_lifetime_perc_covered\n", + "1059 active_care_plan_length>=(imaging_studies_lifetime+1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1060 active_care_plan_length>=active_conditions*imaging_studies_lifetime\n", + "1061 active_care_plan_length>=(2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^QOLS\n", + "1062 active_care_plan_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/age\n", + "1063 active_care_plan_length>=2*Erythrocytes____volume__in_Blood_by_Automated_count+mean_Carbon_Dioxide\n", + "1064 active_care_plan_length>=sqrt(encounters_lifetime_total_cost)-Total_Cholesterol\n", + "1065 active_care_plan_length>=2*DALY-Hemoglobin__Mass_volume__in_Blood\n", + "1066 active_care_plan_length>=(active_care_plans+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1067 active_care_plan_length>=active_condition_length^2/Triglycerides\n", + "1068 active_care_plan_length>=(Triglycerides+1)/medications_lifetime\n", + "1069 active_care_plan_length>=-Albumin__Mass_volume__in_Serum,Plasma+1/2*procedures_lifetime\n", + "1070 active_care_plan_length>=Heart_rate^2/Platelets____volume__in_Blood_by_Automated_count\n", + "1071 active_care_plan_length>=immunizations_lifetime_cost/mean_Carbon_Dioxide\n", + "1072 active_care_plan_length>=(medications_lifetime+1)/mean_Carbon_Dioxide\n", + "1073 active_care_plan_length>=DALY*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "1074 active_care_plan_length>=2*Systolic_Blood_Pressure/mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "1075 active_care_plan_length>=(medications_lifetime_dispenses+1)/age\n", + "1076 active_care_plan_length>=(medications_lifetime_dispenses+1)/Heart_rate\n", + "1077 active_care_plan_length>=e^medications_active/Microalbumin_Creatinine_Ratio\n", + "1078 active_care_plan_length>=DALY^2/latitude\n", + "1079 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(medications_lifetime_length)/log(10)\n", + "1080 active_care_plan_length>=active_condition_length^2/Sodium\n", + "1081 active_care_plan_length>=minimum(active_condition_length,active_care_plans^2)\n", + "1082 active_care_plan_length>=MCH__Entitic_mass__by_Automated_count+2*medications_active\n", + "1083 active_care_plan_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Respiratory_rate\n", + "1084 active_care_plan_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma*latitude\n", + "1085 active_care_plan_length>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1086 active_care_plan_length>=medications_active^2-medications_lifetime\n", + "1087 active_care_plan_length>=minimum(Microalbumin_Creatinine_Ratio,Estimated_Glomerular_Filtration_Rate+1)\n", + "1088 active_care_plan_length>=floor(lifetime_care_plan_length)/active_care_plans\n", + "1089 active_care_plan_length>=(1/2*Low_Density_Lipoprotein_Cholesterol)^medications_lifetime_perc_covered\n", + "1090 active_care_plan_length>=2*Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Triglycerides\n", + "1091 active_care_plan_length>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1092 active_care_plan_length>=minimum(latitude,active_care_plans^2)\n", + "1093 active_care_plan_length>=Respiratory_rate*log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "1094 active_care_plan_length>=QALY+log(num_allergies)\n", + "1095 active_care_plan_length>=1/2*Diastolic_Blood_Pressure-Estimated_Glomerular_Filtration_Rate\n", + "1096 active_care_plan_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*active_conditions\n", + "1097 active_care_plan_length>=1/2*medications_lifetime_dispenses/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1098 active_care_plan_length>=2*Globulin__Mass_volume__in_Serum_by_calculation*lifetime_care_plans\n", + "1099 active_care_plan_length>=lifetime_care_plan_length/lifetime_care_plans\n", + "1100 active_care_plan_length>=1/2*lifetime_care_plan_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1101 active_care_plan_length>=sqrt(Estimated_Glomerular_Filtration_Rate)*medications_active\n", + "1102 active_care_plan_length>=sqrt(medications_lifetime_length)-age\n", + "1103 active_care_plan_length>=sqrt(medications_lifetime_length)-lifetime_condition_length\n", + "1104 active_care_plan_length>=sqrt(medications_lifetime_length)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1105 active_care_plan_length>=sqrt(medications_lifetime_dispenses)-Respiratory_rate\n", + "1106 active_care_plan_length>=sqrt(NT_proBNP)^imaging_studies_lifetime\n", + "1107 active_care_plan_length>=2*DALY-medications_lifetime\n", + "1108 active_care_plan_length>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,2*DALY)\n", + "1109 active_care_plan_length>=10^Albumin__Mass_volume__in_Serum,Plasma/encounters_lifetime_payer_coverage\n", + "1110 active_care_plan_length>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1111 active_care_plan_length>=Body_Mass_Index^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "1112 active_care_plan_length>=MCH__Entitic_mass__by_Automated_count^2/mean_Carbon_Dioxide\n", + "1113 lifetime_care_plan_length<=Sodium+e^active_care_plans\n", + "1114 lifetime_care_plan_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*log(Heart_rate)\n", + "1115 lifetime_care_plan_length<=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Platelets____volume__in_Blood_by_Automated_count\n", + "1116 lifetime_care_plan_length<=active_care_plan_length+lifetime_condition_length\n", + "1117 lifetime_care_plan_length<=active_care_plan_length*lifetime_care_plans\n", + "1118 lifetime_care_plan_length<=active_care_plan_length^lifetime_care_plans\n", + "1119 lifetime_care_plan_length<=(Carbon_Dioxide-1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1120 lifetime_care_plan_length<=Estimated_Glomerular_Filtration_Rate+1/2*lifetime_condition_length\n", + "1121 lifetime_care_plan_length<=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+medications_lifetime\n", + "1122 lifetime_care_plan_length<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)*Triglycerides\n", + "1123 lifetime_care_plan_length<=sqrt(Protein__Mass_volume__in_Serum,Plasma)*medications_lifetime\n", + "1124 lifetime_care_plan_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Low_Density_Lipoprotein_Cholesterol\n", + "1125 lifetime_care_plan_length<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1126 lifetime_care_plan_length<=log(healthcare_coverage)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1127 lifetime_care_plan_length<=active_care_plans*floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "1128 lifetime_care_plan_length<=e^Hemoglobin__Mass_volume__in_Blood/medications_lifetime_dispenses\n", + "1129 lifetime_care_plan_length<=1/2*lifetime_condition_length+mean_Estimated_Glomerular_Filtration_Rate\n", + "1130 lifetime_care_plan_length<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*encounters_count\n", + "1131 lifetime_care_plan_length<=(1/encounters_lifetime_perc_covered)^Hemoglobin__Mass_volume__in_Blood\n", + "1132 lifetime_care_plan_length<=2*Body_Weight/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1133 lifetime_care_plan_length<=sqrt(1/2)*sqrt(healthcare_expenses)\n", + "1134 lifetime_care_plan_length<=Triglycerides+e^active_care_plans\n", + "1135 lifetime_care_plan_length<=floor(Body_Height)/encounters_lifetime_perc_covered\n", + "1136 lifetime_care_plan_length<=2*DALY*Protein__Mass_volume__in_Serum,Plasma\n", + "1137 lifetime_care_plan_length<=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*active_conditions\n", + "1138 lifetime_care_plan_length<=sqrt(healthcare_expenses)-encounters_count\n", + "1139 lifetime_care_plan_length<=Triglycerides*log(Urea_Nitrogen)\n", + "1140 lifetime_care_plan_length<=Body_Height*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "1141 lifetime_care_plan_length<=log(encounters_lifetime_payer_coverage)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1142 lifetime_care_plan_length<=Glomerular_filtration_rate_1_73_sq_M_predicted+mean_Systolic_Blood_Pressure-1\n", + "1143 lifetime_care_plan_length<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*active_care_plans\n", + "1144 lifetime_care_plan_length<=Albumin__Mass_volume__in_Serum,Plasma*QALY\n", + "1145 lifetime_care_plan_length<=-DALY+e^Microalbumin_Creatinine_Ratio\n", + "1146 lifetime_care_plan_length<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Heart_rate\n", + "1147 lifetime_care_plan_length<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1148 lifetime_care_plan_length<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*Systolic_Blood_Pressure\n", + "1149 lifetime_care_plan_length<=floor(DALY)*mean_Estimated_Glomerular_Filtration_Rate\n", + "1150 lifetime_care_plan_length<=active_care_plan_length^2/Hemoglobin__Mass_volume__in_Blood\n", + "1151 lifetime_care_plan_length<=active_care_plan_length+e^encounters_count\n", + "1152 lifetime_care_plan_length<=active_care_plan_length^2/lifetime_care_plans\n", + "1153 lifetime_care_plan_length<=ceil(active_care_plan_length)^active_care_plans\n", + "1154 lifetime_care_plan_length<=Heart_rate+e^active_condition_length\n", + "1155 lifetime_care_plan_length<=age+lifetime_condition_length-1\n", + "1156 lifetime_care_plan_length<=maximum(lifetime_condition_length,10^lifetime_care_plans)\n", + "1157 lifetime_care_plan_length<=Body_Height+2*Microalbumin_Creatinine_Ratio\n", + "1158 lifetime_care_plan_length<=active_care_plans*ceil(active_care_plan_length)\n", + "1159 lifetime_care_plan_length<=1/2*Systolic_Blood_Pressure*active_care_plans\n", + "1160 lifetime_care_plan_length<=10^active_care_plans-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1161 lifetime_care_plan_length<=2*Body_Mass_Index*active_care_plans\n", + "1162 lifetime_care_plan_length<=(log(active_care_plan_length)/log(10))^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1163 lifetime_care_plan_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "1164 lifetime_care_plan_length<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Systolic_Blood_Pressure\n", + "1165 lifetime_care_plan_length<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2+medications_lifetime\n", + "1166 lifetime_care_plan_length<=2*lifetime_condition_length/imaging_studies_lifetime\n", + "1167 lifetime_care_plan_length<=(log(encounters_lifetime_total_cost)/log(10))^Albumin__Mass_volume__in_Serum,Plasma\n", + "1168 lifetime_care_plan_length<=encounters_count^2+High_Density_Lipoprotein_Cholesterol\n", + "1169 lifetime_care_plan_length<=2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+procedures_lifetime_cost\n", + "1170 lifetime_care_plan_length<=maximum(lifetime_condition_length,1/imaging_studies_lifetime)\n", + "1171 lifetime_care_plan_length<=2*Chloride+immunizations_lifetime_cost\n", + "1172 lifetime_care_plan_length<=encounters_lifetime_payer_coverage+2*medications_lifetime_dispenses\n", + "1173 lifetime_care_plan_length<=10^medications_active+Sodium\n", + "1174 lifetime_care_plan_length<=10^medications_active*Sodium\n", + "1175 lifetime_care_plan_length<=QALY*log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "1176 lifetime_care_plan_length<=10^DALY*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1177 lifetime_care_plan_length<=(log(Respiratory_rate)/log(10))^Heart_rate\n", + "1178 lifetime_care_plan_length<=(DALY+1)*Microalbumin_Creatinine_Ratio\n", + "1179 lifetime_care_plan_length<=ceil(DALY)*mean_Microalbumin_Creatinine_Ratio\n", + "1180 lifetime_care_plan_length<=Respiratory_rate^2-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1181 lifetime_care_plan_length<=Chloride^2/Estimated_Glomerular_Filtration_Rate\n", + "1182 lifetime_care_plan_length<=-Protein__Mass_volume__in_Serum,Plasma+2*Sodium\n", + "1183 lifetime_care_plan_length<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*e^Potassium\n", + "1184 lifetime_care_plan_length<=(Potassium+1)*active_care_plan_length\n", + "1185 lifetime_care_plan_length<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*active_care_plan_length\n", + "1186 lifetime_care_plan_length>=active_care_plan_length\n", + "1187 lifetime_care_plan_length>=Carbon_Dioxide+log(medications_lifetime_dispenses)\n", + "1188 lifetime_care_plan_length>=age*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)\n", + "1189 lifetime_care_plan_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1190 lifetime_care_plan_length>=(MCV__Entitic_volume__by_Automated_count+1)/active_conditions\n", + "1191 lifetime_care_plan_length>=1/2*Total_Cholesterol/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1192 lifetime_care_plan_length>=2*Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost\n", + "1193 lifetime_care_plan_length>=e^lifetime_care_plans/Chloride\n", + "1194 lifetime_care_plan_length>=MCH__Entitic_mass__by_Automated_count*log(device_lifetime_length)\n", + "1195 lifetime_care_plan_length>=2*Body_Mass_Index-QALY\n", + "1196 lifetime_care_plan_length>=(medications_lifetime_length+1)/Sodium\n", + "1197 lifetime_care_plan_length>=mean_Platelets____volume__in_Blood_by_Automated_count/mean_Potassium\n", + "1198 lifetime_care_plan_length>=log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10)+age\n", + "1199 lifetime_care_plan_length>=minimum(Microalbumin_Creatinine_Ratio,e^active_care_plans)\n", + "1200 lifetime_care_plan_length>=1/2*medications_lifetime_length/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "1201 lifetime_care_plan_length>=active_care_plan_length+active_care_plans-1\n", + "1202 lifetime_care_plan_length>=2*Microalbumin_Creatinine_Ratio*imaging_studies_lifetime\n", + "1203 lifetime_care_plan_length>=lifetime_care_plans*log(medications_lifetime_length)\n", + "1204 lifetime_care_plan_length>=2*Glomerular_filtration_rate_1_73_sq_M_predicted/Potassium\n", + "1205 lifetime_care_plan_length>=minimum(Glucose,e^active_care_plans)\n", + "1206 lifetime_care_plan_length>=1/2*encounters_lifetime_payer_coverage/mean_Chloride\n", + "1207 lifetime_care_plan_length>=(Creatinine+1)*device_lifetime_length\n", + "1208 lifetime_care_plan_length>=-healthcare_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "1209 lifetime_care_plan_length>=active_care_plan_length*log(active_care_plans)\n", + "1210 lifetime_care_plan_length>=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^mean_Creatinine\n", + "1211 lifetime_care_plan_length>=Globulin__Mass_volume__in_Serum_by_calculation*active_care_plans^2\n", + "1212 lifetime_care_plan_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Systolic_Blood_Pressure\n", + "1213 lifetime_care_plan_length>=(active_care_plans+1)*mean_Calcium\n", + "1214 lifetime_care_plan_length>=encounters_lifetime_perc_covered*medications_active^2\n", + "1215 lifetime_care_plan_length>=10^medications_lifetime_perc_covered*medications_active\n", + "1216 lifetime_care_plan_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*active_care_plans^2\n", + "1217 lifetime_care_plan_length>=(medications_lifetime_dispenses+1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1218 lifetime_care_plan_length>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*DALY\n", + "1219 lifetime_care_plan_length>=2*mean_Respiratory_rate*num_allergies\n", + "1220 lifetime_care_plan_length>=Chloride-Protein__Mass_volume__in_Serum,Plasma+1\n", + "1221 lifetime_care_plan_length>=Albumin__Mass_volume__in_Serum,Plasma^2*active_care_plans\n", + "1222 lifetime_care_plan_length>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^medications_active\n", + "1223 lifetime_care_plan_length>=(log(FEV1_FVC)/log(10))^procedures_lifetime\n", + "1224 lifetime_care_plan_length>=e^lifetime_care_plans/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1225 lifetime_care_plan_length>=device_lifetime_length*log(Body_Height)/log(10)\n", + "1226 lifetime_care_plan_length>=-Systolic_Blood_Pressure+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1227 lifetime_care_plan_length>=2*medications_lifetime_dispenses/Body_Weight\n", + "1228 lifetime_care_plan_length>=-Triglycerides+mean_Triglycerides\n", + "1229 lifetime_care_plan_length>=-Body_Weight+Low_Density_Lipoprotein_Cholesterol+1\n", + "1230 lifetime_care_plan_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*active_condition_length\n", + "1231 lifetime_care_plan_length>=Low_Density_Lipoprotein_Cholesterol-lifetime_condition_length\n", + "1232 lifetime_care_plan_length>=-Potassium+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "1233 lifetime_care_plan_length>=Heart_rate*log(imaging_studies_lifetime)\n", + "1234 lifetime_care_plan_length>=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "1235 lifetime_care_plan_length>=log(lifetime_care_plans)^active_care_plans\n", + "1236 lifetime_care_plan_length>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1237 lifetime_care_plan_length>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*Respiratory_rate\n", + "1238 lifetime_care_plan_length>=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)-longitude\n", + "1239 lifetime_care_plan_length>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1/2*encounters_count\n", + "1240 lifetime_care_plan_length>=(Hemoglobin__Mass_volume__in_Blood+1)*medications_active\n", + "1241 lifetime_care_plan_length>=10^QOLS*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1242 lifetime_care_plan_length>=(log(encounters_count)/log(10))^Potassium\n", + "1243 lifetime_care_plan_length>=floor(Estimated_Glomerular_Filtration_Rate)*medications_lifetime_perc_covered\n", + "1244 lifetime_care_plan_length>=-immunizations_lifetime_cost+mean_Heart_rate\n", + "1245 lifetime_care_plan_length>=2*active_care_plan_length-mean_Microalbumin_Creatinine_Ratio\n", + "1246 lifetime_care_plan_length>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*active_conditions\n", + "1247 lifetime_care_plan_length>=latitude*sqrt(num_allergies)\n", + "1248 lifetime_care_plan_length>=(log(medications_lifetime)/log(10))^Albumin__Mass_volume__in_Serum,Plasma\n", + "1249 lifetime_care_plan_length>=minimum(Triglycerides,1/medications_active)\n", + "1250 lifetime_care_plan_length>=Glomerular_filtration_rate_1_73_sq_M_predicted*log(device_lifetime_length)\n", + "1251 lifetime_care_plan_length>=1/2*encounters_lifetime_payer_coverage/Chloride\n", + "1252 lifetime_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-procedures_lifetime_cost\n", + "1253 lifetime_care_plan_length>=log(Globulin__Mass_volume__in_Serum_by_calculation)^DALY\n", + "1254 lifetime_care_plan_length>=sqrt(immunizations_lifetime_cost)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1255 lifetime_care_plan_length>=1/2*medications_lifetime_length/Glucose\n", + "1256 lifetime_care_plan_length>=sqrt(medications_lifetime_dispenses)/Creatinine\n", + "1257 lifetime_care_plan_length>=sqrt(Microalbumin_Creatinine_Ratio)/QOLS\n", + "1258 lifetime_care_plan_length>=1/2*Body_Weight-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1259 lifetime_care_plan_length>=(1/DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1260 active_conditions<=lifetime_conditions\n", + "1261 active_conditions<=healthcare_expenses^DALY\n", + "1262 active_conditions<=2*ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1263 active_conditions<=-Glucose+Triglycerides\n", + "1264 active_conditions<=(DALY+1)*Potassium\n", + "1265 active_conditions<=maximum(Respiratory_rate,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1266 active_conditions<=Respiratory_rate+immunizations_lifetime_cost\n", + "1267 active_conditions<=Respiratory_rate+procedures_lifetime\n", + "1268 active_conditions<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plans-1\n", + "1269 active_conditions<=maximum(Microalbumin_Creatinine_Ratio,Respiratory_rate+1)\n", + "1270 active_conditions<=DALY*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1271 active_conditions<=(Glucose-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1272 active_conditions<=maximum(medications_lifetime,Calcium)\n", + "1273 active_conditions<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Carbon_Dioxide\n", + "1274 active_conditions<=log(Globulin__Mass_volume__in_Serum_by_calculation)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1275 active_conditions<=-Body_Mass_Index+ceil(age)\n", + "1276 active_conditions<=DALY+1/2*encounters_count\n", + "1277 active_conditions<=medications_active^2+Respiratory_rate\n", + "1278 active_conditions<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/mean_Glucose\n", + "1279 active_conditions<=Body_Weight-active_care_plan_length+1\n", + "1280 active_conditions<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glucose-1\n", + "1281 active_conditions<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Potassium\n", + "1282 active_conditions<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/Low_Density_Lipoprotein_Cholesterol\n", + "1283 active_conditions<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*procedures_lifetime\n", + "1284 active_conditions<=minimum(healthcare_expenses,ceil(Total_score__MMSE_))\n", + "1285 active_conditions>=num_allergies\n", + "1286 active_conditions>=-immunizations_lifetime_cost+medications_active+1\n", + "1287 active_conditions>=imaging_studies_lifetime^2\n", + "1288 active_conditions>=active_care_plans-1\n", + "1289 active_conditions>=QOLS\n", + "1290 active_conditions>=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "1291 active_conditions>=-active_care_plans+lifetime_conditions\n", + "1292 active_conditions>=(1/active_care_plans)\n", + "1293 active_conditions>=immunizations_lifetime*log(DALY)\n", + "1294 active_conditions>=minimum(lifetime_conditions,1/2*device_lifetime_length)\n", + "1295 active_conditions>=minimum(lifetime_care_plans,procedures_lifetime)\n", + "1296 active_conditions>=immunizations_lifetime-1\n", + "1297 active_conditions>=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,lifetime_conditions-1)\n", + "1298 active_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "1299 active_conditions>=sqrt(procedures_lifetime)^mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip\n", + "1300 active_conditions>=ceil(Creatinine)-healthcare_coverage\n", + "1301 active_conditions>=ceil(sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "1302 active_conditions>=(medications_lifetime+1)/Chloride\n", + "1303 active_conditions>=lifetime_conditions-medications_lifetime\n", + "1304 active_conditions>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)*lifetime_conditions\n", + "1305 active_conditions>=2*floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1306 active_conditions>=2*Carbon_Dioxide/Microalbumin_Creatinine_Ratio\n", + "1307 active_conditions>=minimum(device_lifetime_length,lifetime_conditions-1)\n", + "1308 active_conditions>=num_allergies^2-lifetime_conditions\n", + "1309 active_conditions>=log(medications_lifetime_length)/log(10)-immunizations_lifetime_cost\n", + "1310 active_conditions>=(medications_lifetime+1)/mean_Glucose\n", + "1311 active_conditions>=active_care_plans-procedures_lifetime\n", + "1312 active_conditions>=lifetime_conditions*log(active_care_plans)/log(10)\n", + "1313 active_conditions>=lifetime_conditions-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "1314 active_conditions>=active_care_plans^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "1315 active_conditions>=log(Microalbumin_Creatinine_Ratio)*medications_active/log(10)\n", + "1316 active_conditions>=lifetime_conditions-medications_lifetime_length\n", + "1317 active_conditions>=-Potassium+lifetime_conditions+1\n", + "1318 active_conditions>=2*Glomerular_filtration_rate_1_73_sq_M_predicted/active_care_plan_length\n", + "1319 active_conditions>=minimum(procedures_lifetime,log(medications_lifetime_length))\n", + "1320 active_conditions>=minimum(Hemoglobin__Mass_volume__in_Blood,floor(lifetime_conditions))\n", + "1321 active_conditions>=1/2*encounters_count/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1322 active_conditions>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,lifetime_conditions-1)\n", + "1323 active_conditions>=-Heart_rate+floor(active_condition_length)\n", + "1324 active_conditions>=minimum(lifetime_care_plans,lifetime_conditions-1)\n", + "1325 active_conditions>=sqrt(encounters_count)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1326 active_conditions>=(encounters_count+1)/QALY\n", + "1327 active_conditions>=floor(Albumin__Mass_volume__in_Serum,Plasma)*immunizations_lifetime\n", + "1328 active_conditions>=-Diastolic_Blood_Pressure+floor(age)\n", + "1329 active_conditions>=minimum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,procedures_lifetime+1)\n", + "1330 active_conditions>=minimum(device_lifetime_length,2*active_care_plans)\n", + "1331 active_conditions>=-immunizations_lifetime_cost+procedures_lifetime\n", + "1332 active_conditions>=-encounters_lifetime_payer_coverage+lifetime_conditions-1\n", + "1333 active_conditions>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+2*active_care_plans\n", + "1334 active_conditions>=lifetime_conditions-medications_active-1\n", + "1335 active_conditions>=DALY^2/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1336 active_conditions>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,floor(lifetime_conditions))\n", + "1337 active_conditions>=lifetime_care_plans^2/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1338 active_conditions>=ceil(log(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", + "1339 active_conditions>=-Albumin__Mass_volume__in_Serum,Plasma+1/2*DALY\n", + "1340 active_conditions>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1341 active_conditions>=2*DALY-age\n", + "1342 active_conditions>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)-immunizations_lifetime_cost\n", + "1343 active_conditions>=(medications_active-1)^QOLS\n", + "1344 active_conditions>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,lifetime_conditions-1)\n", + "1345 active_conditions>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Body_Height\n", + "1346 active_conditions>=2*lifetime_condition_length/Systolic_Blood_Pressure\n", + "1347 active_conditions>=(-num_allergies)^lifetime_care_plans\n", + "1348 active_conditions>=e^active_care_plans/Protein__Mass_volume__in_Serum,Plasma\n", + "1349 active_conditions>=2*active_care_plan_length-mean_Sodium\n", + "1350 active_conditions>=lifetime_conditions*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "1351 active_conditions>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/mean_Estimated_Glomerular_Filtration_Rate\n", + "1352 active_conditions>=minimum(lifetime_conditions,immunizations_lifetime^2)\n", + "1353 active_conditions>=2*lifetime_condition_length/Chloride\n", + "1354 active_conditions>=-immunizations_lifetime_cost+log(medications_lifetime)\n", + "1355 active_conditions>=log(medications_lifetime_cost)/encounters_count\n", + "1356 active_conditions>=-Body_Mass_Index+2*Respiratory_rate\n", + "1357 active_conditions>=2*DALY/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1358 active_conditions>=-Body_Height+Systolic_Blood_Pressure-1\n", + "1359 active_conditions>=active_care_plans*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "1360 active_conditions>=floor(Creatinine)^immunizations_lifetime\n", + "1361 active_conditions>=(1/2*Microalbumin_Creatinine_Ratio)^encounters_lifetime_perc_covered\n", + "1362 active_conditions>=log(NT_proBNP)^imaging_studies_lifetime\n", + "1363 lifetime_conditions<=active_care_plans+active_conditions\n", + "1364 lifetime_conditions<=2*active_conditions\n", + "1365 lifetime_conditions<=ceil(active_condition_length)\n", + "1366 lifetime_conditions<=active_care_plans+encounters_count\n", + "1367 lifetime_conditions<=active_conditions+medications_active+1\n", + "1368 lifetime_conditions<=(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-1)/Hemoglobin__Mass_volume__in_Blood\n", + "1369 lifetime_conditions<=floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1370 lifetime_conditions<=maximum(active_care_plan_length,active_conditions)\n", + "1371 lifetime_conditions<=Carbon_Dioxide-2\n", + "1372 lifetime_conditions<=floor(Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "1373 lifetime_conditions<=active_conditions+floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1374 lifetime_conditions<=active_conditions/medications_lifetime_perc_covered\n", + "1375 lifetime_conditions<=Respiratory_rate+active_care_plans\n", + "1376 lifetime_conditions<=(1/encounters_lifetime_perc_covered)^active_conditions\n", + "1377 lifetime_conditions<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_care_plans\n", + "1378 lifetime_conditions<=1/2*lifetime_care_plan_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1379 lifetime_conditions<=maximum(active_conditions,e^lifetime_care_plans)\n", + "1380 lifetime_conditions<=Globulin__Mass_volume__in_Serum_by_calculation^4\n", + "1381 lifetime_conditions<=maximum(active_conditions,encounters_count)\n", + "1382 lifetime_conditions<=(encounters_count-1)/imaging_studies_lifetime\n", + "1383 lifetime_conditions<=maximum(active_conditions,medications_lifetime+1)\n", + "1384 lifetime_conditions<=maximum(active_conditions,encounters_count-1)\n", + "1385 lifetime_conditions<=active_conditions+medications_lifetime\n", + "1386 lifetime_conditions<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)^active_care_plans\n", + "1387 lifetime_conditions<=Potassium+active_conditions-1\n", + "1388 lifetime_conditions<=-Estimated_Glomerular_Filtration_Rate+ceil(lifetime_condition_length)\n", + "1389 lifetime_conditions<=-Glomerular_filtration_rate_1_73_sq_M_predicted+2*QALY\n", + "1390 lifetime_conditions<=Globulin__Mass_volume__in_Serum_by_calculation+log(healthcare_expenses)\n", + "1391 lifetime_conditions<=10^healthcare_coverage+active_conditions\n", + "1392 lifetime_conditions<=maximum(medications_lifetime,active_conditions+1)\n", + "1393 lifetime_conditions<=Respiratory_rate+procedures_lifetime_cost-1\n", + "1394 lifetime_conditions<=Erythrocytes____volume__in_Blood_by_Automated_count+mean_Urea_Nitrogen\n", + "1395 lifetime_conditions<=-Heart_rate+Triglycerides-1\n", + "1396 lifetime_conditions<=active_conditions+log(latitude)\n", + "1397 lifetime_conditions<=active_conditions+floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1398 lifetime_conditions<=Respiratory_rate+floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1399 lifetime_conditions<=-Low_Density_Lipoprotein_Cholesterol+Total_Cholesterol\n", + "1400 lifetime_conditions<=Protein__Mass_volume__in_Serum,Plasma*encounters_lifetime_perc_covered\n", + "1401 lifetime_conditions<=2*active_care_plans+healthcare_coverage\n", + "1402 lifetime_conditions<=maximum(Respiratory_rate,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1403 lifetime_conditions<=1/imaging_studies_lifetime+mean_Respiratory_rate\n", + "1404 lifetime_conditions<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)+active_conditions\n", + "1405 lifetime_conditions<=10^(10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1406 lifetime_conditions<=maximum(Sodium,2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1407 lifetime_conditions<=DALY+log(Platelets____volume__in_Blood_by_Automated_count)\n", + "1408 lifetime_conditions<=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/QOLS\n", + "1409 lifetime_conditions<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1410 lifetime_conditions<=procedures_lifetime^2+Respiratory_rate\n", + "1411 lifetime_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(pH_of_Urine_by_Test_strip))\n", + "1412 lifetime_conditions<=floor(Microalbumin_Creatinine_Ratio)+procedures_lifetime_cost\n", + "1413 lifetime_conditions<=maximum(active_conditions,Potassium^2)\n", + "1414 lifetime_conditions<=-Calcium+2*Respiratory_rate\n", + "1415 lifetime_conditions<=active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "1416 lifetime_conditions<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+immunizations_lifetime_cost\n", + "1417 lifetime_conditions<=2*active_conditions*mean_Creatinine\n", + "1418 lifetime_conditions<=maximum(active_conditions,1/2*active_condition_length)\n", + "1419 lifetime_conditions<=log(lifetime_condition_length)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1420 lifetime_conditions<=(QOLS+1)*active_conditions\n", + "1421 lifetime_conditions<=1/2*Respiratory_rate*active_care_plans\n", + "1422 lifetime_conditions<=lifetime_care_plans^2+encounters_lifetime_payer_coverage\n", + "1423 lifetime_conditions<=1/2*encounters_lifetime_total_cost/medications_lifetime\n", + "1424 lifetime_conditions<=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*active_care_plan_length\n", + "1425 lifetime_conditions<=active_conditions^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "1426 lifetime_conditions<=10^encounters_lifetime_payer_coverage+medications_lifetime\n", + "1427 lifetime_conditions<=active_conditions/medications_lifetime_perc_covered\n", + "1428 lifetime_conditions<=maximum(active_conditions,medications_lifetime^2)\n", + "1429 lifetime_conditions<=2*medications_lifetime_dispenses/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1430 lifetime_conditions<=10^medications_active/num_allergies\n", + "1431 lifetime_conditions<=10^medications_active*mean_Urea_Nitrogen\n", + "1432 lifetime_conditions<=Respiratory_rate+2*medications_active\n", + "1433 lifetime_conditions<=Carbon_Dioxide^2/device_lifetime_length\n", + "1434 lifetime_conditions<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "1435 lifetime_conditions<=maximum(Sodium,log(High_Density_Lipoprotein_Cholesterol))\n", + "1436 lifetime_conditions<=e^Globulin__Mass_volume__in_Serum_by_calculation+procedures_lifetime_cost\n", + "1437 lifetime_conditions<=sqrt(Sodium)+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1438 lifetime_conditions<=sqrt(Potassium)^mean_Potassium\n", + "1439 lifetime_conditions<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/medications_lifetime_perc_covered\n", + "1440 lifetime_conditions<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+active_conditions\n", + "1441 lifetime_conditions>=num_allergies\n", + "1442 lifetime_conditions>=active_conditions\n", + "1443 lifetime_conditions>=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1444 lifetime_conditions>=active_care_plans-healthcare_coverage\n", + "1445 lifetime_conditions>=(1/2*Globulin__Mass_volume__in_Serum_by_calculation)^mean_Creatinine\n", + "1446 lifetime_conditions>=imaging_studies_lifetime^2/Creatinine\n", + "1447 lifetime_conditions>=-Diastolic_Blood_Pressure+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "1448 lifetime_conditions>=QOLS/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1449 lifetime_conditions>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-immunizations_lifetime\n", + "1450 lifetime_conditions>=-Body_Height+Systolic_Blood_Pressure+1\n", + "1451 lifetime_conditions>=Creatinine/DALY\n", + "1452 lifetime_conditions>=(DALY-1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1453 lifetime_conditions>=num_allergies^2-active_conditions\n", + "1454 lifetime_conditions>=High_Density_Lipoprotein_Cholesterol+floor(longitude)\n", + "1455 lifetime_conditions>=minimum(Urea_Nitrogen,floor(medications_active))\n", + "1456 lifetime_conditions>=log(active_care_plans)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1457 lifetime_conditions>=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1458 lifetime_conditions>=log(Estimated_Glomerular_Filtration_Rate)+medications_active\n", + "1459 lifetime_conditions>=minimum(Urea_Nitrogen,floor(procedures_lifetime))\n", + "1460 lifetime_conditions>=(procedures_lifetime_cost+1)^DXA__T_score__Bone_density\n", + "1461 lifetime_conditions>=2*Body_Mass_Index-Protein__Mass_volume__in_Serum,Plasma\n", + "1462 lifetime_conditions>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1\n", + "1463 active_condition_length<=maximum(QALY,e^DALY)\n", + "1464 active_condition_length<=lifetime_condition_length\n", + "1465 active_condition_length<=ceil(latitude)/encounters_lifetime_perc_covered\n", + "1466 active_condition_length<=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma+Body_Weight\n", + "1467 active_condition_length<=Body_Height-Heart_rate-1\n", + "1468 active_condition_length<=1/2*Triglycerides+encounters_count\n", + "1469 active_condition_length<=2*High_Density_Lipoprotein_Cholesterol-mean_Urea_Nitrogen\n", + "1470 active_condition_length<=maximum(Protein__Mass_volume__in_Serum,Plasma,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1471 active_condition_length<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-medications_active\n", + "1472 active_condition_length<=MCHC__Mass_volume__by_Automated_count^2/Hemoglobin__Mass_volume__in_Blood\n", + "1473 active_condition_length<=Microalbumin_Creatinine_Ratio*sqrt(medications_lifetime)\n", + "1474 active_condition_length<=Carbon_Dioxide*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1475 active_condition_length<=High_Density_Lipoprotein_Cholesterol*e^QOLS\n", + "1476 active_condition_length<=ceil(Carbon_Dioxide)+mean_High_Density_Lipoprotein_Cholesterol\n", + "1477 active_condition_length<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*active_conditions\n", + "1478 active_condition_length<=Carbon_Dioxide*floor(Potassium)\n", + "1479 active_condition_length<=active_care_plan_length+healthcare_coverage\n", + "1480 active_condition_length<=DALY^2+Microalbumin_Creatinine_Ratio\n", + "1481 active_condition_length<=lifetime_care_plan_length*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1482 active_condition_length<=age-num_allergies+1\n", + "1483 active_condition_length<=ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)+latitude\n", + "1484 active_condition_length<=MCV__Entitic_volume__by_Automated_count^2/Diastolic_Blood_Pressure\n", + "1485 active_condition_length<=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+Systolic_Blood_Pressure\n", + "1486 active_condition_length<=active_care_plan_length^Respiratory_rate\n", + "1487 active_condition_length<=active_care_plan_length*floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1488 active_condition_length<=maximum(lifetime_care_plan_length,10^DALY)\n", + "1489 active_condition_length<=-active_conditions+lifetime_condition_length+1\n", + "1490 active_condition_length<=maximum(lifetime_care_plan_length,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1491 active_condition_length<=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*lifetime_condition_length\n", + "1492 active_condition_length<=immunizations_lifetime_cost-longitude-1\n", + "1493 active_condition_length<=sqrt(medications_lifetime_cost)-mean_High_Density_Lipoprotein_Cholesterol\n", + "1494 active_condition_length<=sqrt(Estimated_Glomerular_Filtration_Rate)+medications_lifetime\n", + "1495 active_condition_length<=encounters_lifetime_payer_coverage+floor(lifetime_care_plan_length)\n", + "1496 active_condition_length<=maximum(encounters_count,Heart_rate)\n", + "1497 active_condition_length<=maximum(active_care_plan_length,2*QALY)\n", + "1498 active_condition_length<=1/2*QALY*mean_Potassium\n", + "1499 active_condition_length<=QALY+encounters_count\n", + "1500 active_condition_length<=QALY+mean_Microalbumin_Creatinine_Ratio+1\n", + "1501 active_condition_length<=10^active_care_plans/num_allergies\n", + "1502 active_condition_length<=sqrt(healthcare_expenses)/medications_active\n", + "1503 active_condition_length<=maximum(Sodium,mean_Heart_rate)\n", + "1504 active_condition_length<=e^Albumin__Mass_volume__in_Serum,Plasma+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1505 active_condition_length<=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+QALY\n", + "1506 active_condition_length<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Respiratory_rate\n", + "1507 active_condition_length<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/Body_Height\n", + "1508 active_condition_length<=e^Calcium/mean_Diastolic_Blood_Pressure\n", + "1509 active_condition_length<=-Microalbumin_Creatinine_Ratio+1/2*medications_lifetime_dispenses\n", + "1510 active_condition_length<=2*Body_Height/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1511 active_condition_length<=maximum(Sodium,-longitude)\n", + "1512 active_condition_length<=-Hemoglobin__Mass_volume__in_Blood+floor(Glucose)\n", + "1513 active_condition_length<=(Albumin__Mass_volume__in_Serum,Plasma-1)*mean_Carbon_Dioxide\n", + "1514 active_condition_length<=Protein__Mass_volume__in_Serum,Plasma+log(lifetime_care_plan_length)\n", + "1515 active_condition_length<=maximum(Protein__Mass_volume__in_Serum,Plasma,e^Albumin__Mass_volume__in_Serum,Plasma)\n", + "1516 active_condition_length<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*QALY\n", + "1517 active_condition_length<=DALY+Heart_rate+1\n", + "1518 active_condition_length<=Glucose+log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1519 active_condition_length<=Triglycerides^2/lifetime_care_plan_length\n", + "1520 active_condition_length<=active_care_plan_length*log(Urea_Nitrogen)\n", + "1521 active_condition_length<=DALY^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "1522 active_condition_length<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(age)\n", + "1523 active_condition_length<=latitude+mean_Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "1524 active_condition_length<=maximum(active_care_plan_length,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1525 active_condition_length<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*medications_lifetime\n", + "1526 active_condition_length<=(Platelets____volume__in_Blood_by_Automated_count-1)*encounters_lifetime_perc_covered\n", + "1527 active_condition_length<=Systolic_Blood_Pressure^2/Triglycerides\n", + "1528 active_condition_length<=sqrt(Diastolic_Blood_Pressure)*encounters_count\n", + "1529 active_condition_length<=1/2*DALY*mean_Microalbumin_Creatinine_Ratio\n", + "1530 active_condition_length<=maximum(encounters_count,age-1)\n", + "1531 active_condition_length<=maximum(Sodium,log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)/log(10))\n", + "1532 active_condition_length<=-Albumin__Mass_volume__in_Serum,Plasma+2*active_care_plan_length\n", + "1533 active_condition_length<=maximum(active_care_plan_length,sqrt(healthcare_coverage))\n", + "1534 active_condition_length<=log(lifetime_care_plan_length)/log(10)+Glucose\n", + "1535 active_condition_length<=maximum(Triglycerides,age-1)\n", + "1536 active_condition_length<=1/2*Chloride*active_care_plans\n", + "1537 active_condition_length<=10^Albumin__Mass_volume__in_Serum,Plasma/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1538 active_condition_length<=maximum(Sodium,floor(Heart_rate))\n", + "1539 active_condition_length<=2*active_care_plan_length+mean_Calcium\n", + "1540 active_condition_length<=maximum(QALY,e^active_conditions)\n", + "1541 active_condition_length<=maximum(QALY,1/2*lifetime_condition_length)\n", + "1542 active_condition_length<=e^Creatinine*latitude\n", + "1543 active_condition_length<=maximum(encounters_count,1/2*Sodium)\n", + "1544 active_condition_length<=sqrt(QALY)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1545 active_condition_length<=10^immunizations_lifetime+Heart_rate\n", + "1546 active_condition_length<=1/2*Systolic_Blood_Pressure+immunizations_lifetime_cost\n", + "1547 active_condition_length<=medications_lifetime^2+QALY\n", + "1548 active_condition_length<=2*medications_lifetime_dispenses/device_lifetime_length\n", + "1549 active_condition_length<=2*Calcium*Potassium\n", + "1550 active_condition_length>=lifetime_condition_length/lifetime_conditions\n", + "1551 active_condition_length>=device_lifetime_length\n", + "1552 active_condition_length>=log(DALY)*mean_Calcium\n", + "1553 active_condition_length>=1/2*active_care_plan_length/Creatinine\n", + "1554 active_condition_length>=-Protein__Mass_volume__in_Serum,Plasma+1/2*Triglycerides\n", + "1555 active_condition_length>=(lifetime_condition_length+1)/encounters_count\n", + "1556 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+active_care_plans\n", + "1557 active_condition_length>=latitude+log(device_lifetime_length)\n", + "1558 active_condition_length>=minimum(active_care_plan_length,procedures_lifetime^2)\n", + "1559 active_condition_length>=active_care_plan_length-encounters_lifetime_payer_coverage\n", + "1560 active_condition_length>=2*active_conditions/Creatinine\n", + "1561 active_condition_length>=2*Creatinine+MCH__Entitic_mass__by_Automated_count\n", + "1562 active_condition_length>=(1/2*Heart_rate)^medications_lifetime_perc_covered\n", + "1563 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-procedures_lifetime_cost\n", + "1564 active_condition_length>=-Albumin__Mass_volume__in_Serum,Plasma+active_care_plan_length\n", + "1565 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*active_care_plan_length\n", + "1566 active_condition_length>=Potassium+Urea_Nitrogen\n", + "1567 active_condition_length>=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)-immunizations_lifetime_cost\n", + "1568 active_condition_length>=Body_Mass_Index-procedures_lifetime_cost+1\n", + "1569 active_condition_length>=(High_Density_Lipoprotein_Cholesterol-1)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1570 active_condition_length>=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Chloride\n", + "1571 active_condition_length>=mean_Urea_Nitrogen*sqrt(medications_active)\n", + "1572 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1573 active_condition_length>=(Respiratory_rate+1)*imaging_studies_lifetime\n", + "1574 active_condition_length>=-Systolic_Blood_Pressure+mean_Glucose\n", + "1575 active_condition_length>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*procedures_lifetime\n", + "1576 active_condition_length>=immunizations_lifetime_cost/mean_Carbon_Dioxide\n", + "1577 active_condition_length>=active_care_plan_length-healthcare_coverage\n", + "1578 active_condition_length>=(active_care_plan_length+1)*medications_lifetime_perc_covered\n", + "1579 active_condition_length>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1580 active_condition_length>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+age-1\n", + "1581 active_condition_length>=(medications_lifetime+1)/mean_Carbon_Dioxide\n", + "1582 active_condition_length>=-Systolic_Blood_Pressure+1/2*lifetime_care_plan_length\n", + "1583 active_condition_length>=2*DALY-immunizations_lifetime_cost\n", + "1584 active_condition_length>=(High_Density_Lipoprotein_Cholesterol-1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1585 active_condition_length>=2*Body_Mass_Index-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1586 active_condition_length>=-Sodium+mean_Systolic_Blood_Pressure\n", + "1587 active_condition_length>=active_care_plan_length^2/Protein__Mass_volume__in_Serum,Plasma\n", + "1588 active_condition_length>=minimum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,abs(active_care_plan_length))\n", + "1589 active_condition_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^mean_Weight_difference__Mass_difference____pre_dialysis___post_dialysis\n", + "1590 active_condition_length>=(QOLS+1)*DALY\n", + "1591 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plans\n", + "1592 active_condition_length>=medications_active^2-Hemoglobin__Mass_volume__in_Blood\n", + "1593 active_condition_length>=Low_Density_Lipoprotein_Cholesterol*log(num_allergies)/log(10)\n", + "1594 active_condition_length>=device_lifetime_length^2/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "1595 active_condition_length>=1/2*medications_lifetime_dispenses/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1596 active_condition_length>=(Urea_Nitrogen-1)/DALY\n", + "1597 active_condition_length>=MCH__Entitic_mass__by_Automated_count^2/mean_Carbon_Dioxide\n", + "1598 active_condition_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost+1\n", + "1599 active_condition_length>=maximum(Left_ventricular_Ejection_fraction,mean_Calcium)\n", + "1600 active_condition_length>=log(Microalbumin_Creatinine_Ratio)*mean_Potassium\n", + "1601 active_condition_length>=floor(lifetime_condition_length)/active_conditions\n", + "1602 active_condition_length>=sqrt(Sodium)+active_conditions\n", + "1603 active_condition_length>=-active_care_plan_length+1/2*age\n", + "1604 active_condition_length>=sqrt(encounters_lifetime_payer_coverage)^medications_lifetime_perc_covered\n", + "1605 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*sqrt(active_care_plan_length)\n", + "1606 active_condition_length>=1/2*active_care_plan_length-immunizations_lifetime_cost\n", + "1607 active_condition_length>=lifetime_care_plans^2+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1608 active_condition_length>=2*active_care_plan_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1609 active_condition_length>=-Glucose+2*active_care_plan_length\n", + "1610 active_condition_length>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-medications_lifetime\n", + "1611 active_condition_length>=DALY^2/latitude\n", + "1612 active_condition_length>=-Body_Weight+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "1613 active_condition_length>=(1/Creatinine)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "1614 active_condition_length>=sqrt(encounters_lifetime_total_cost)-Total_Cholesterol\n", + "1615 active_condition_length>=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1616 active_condition_length>=-immunizations_lifetime_cost+log(medications_lifetime_cost)\n", + "1617 active_condition_length>=(2*medications_lifetime_perc_covered)^medications_active\n", + "1618 active_condition_length>=sqrt(medications_lifetime_length)-Body_Weight\n", + "1619 active_condition_length>=e^medications_active/Estimated_Glomerular_Filtration_Rate\n", + "1620 active_condition_length>=minimum(procedures_lifetime,1/2*Glucose)\n", + "1621 active_condition_length>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1622 active_condition_length>=(2*Body_temperature)^immunizations_lifetime\n", + "1623 lifetime_condition_length<=1/2*encounters_lifetime_total_cost-latitude\n", + "1624 lifetime_condition_length<=latitude^2/num_allergies\n", + "1625 lifetime_condition_length<=Body_Height*sqrt(Carbon_Dioxide)\n", + "1626 lifetime_condition_length<=active_condition_length*lifetime_conditions\n", + "1627 lifetime_condition_length<=1/2*encounters_lifetime_total_cost-lifetime_care_plan_length\n", + "1628 lifetime_condition_length<=ceil(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*mean_Respiratory_rate\n", + "1629 lifetime_condition_length<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)*Sodium\n", + "1630 lifetime_condition_length<=High_Density_Lipoprotein_Cholesterol*e^DALY\n", + "1631 lifetime_condition_length<=sqrt(medications_lifetime_cost)+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1632 lifetime_condition_length<=(MCV__Entitic_volume__by_Automated_count^2)^Creatinine\n", + "1633 lifetime_condition_length<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1/2*medications_lifetime_dispenses\n", + "1634 lifetime_condition_length<=(healthcare_expenses-1)/immunizations_lifetime_cost\n", + "1635 lifetime_condition_length<=Diastolic_Blood_Pressure*sqrt(lifetime_care_plan_length)\n", + "1636 lifetime_condition_length<=encounters_count^2+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1637 lifetime_condition_length<=(1/2*Albumin__Mass_volume__in_Serum,Plasma)^mean_Urea_Nitrogen\n", + "1638 lifetime_condition_length<=1/2*healthcare_expenses/Low_Density_Lipoprotein_Cholesterol\n", + "1639 lifetime_condition_length<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+medications_lifetime_dispenses-1\n", + "1640 lifetime_condition_length<=(Microalbumin_Creatinine_Ratio-1)*Low_Density_Lipoprotein_Cholesterol\n", + "1641 lifetime_condition_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "1642 lifetime_condition_length<=Sodium*ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "1643 lifetime_condition_length<=(Respiratory_rate-1)*active_condition_length\n", + "1644 lifetime_condition_length<=(Systolic_Blood_Pressure+1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1645 lifetime_condition_length<=ceil(active_condition_length)^active_conditions\n", + "1646 lifetime_condition_length<=1/2*Systolic_Blood_Pressure*active_conditions\n", + "1647 lifetime_condition_length<=2*Body_Mass_Index*active_conditions\n", + "1648 lifetime_condition_length<=1/2*Chloride*active_conditions\n", + "1649 lifetime_condition_length<=-Total_Cholesterol+2*medications_lifetime_dispenses\n", + "1650 lifetime_condition_length<=e^Globulin__Mass_volume__in_Serum_by_calculation*mean_High_Density_Lipoprotein_Cholesterol\n", + "1651 lifetime_condition_length<=(High_Density_Lipoprotein_Cholesterol-1)*medications_lifetime\n", + "1652 lifetime_condition_length<=Protein__Mass_volume__in_Serum,Plasma^2-medications_lifetime_dispenses\n", + "1653 lifetime_condition_length<=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_High_Density_Lipoprotein_Cholesterol\n", + "1654 lifetime_condition_length<=log(Triglycerides)*mean_Triglycerides\n", + "1655 lifetime_condition_length<=(log(latitude)/log(10))^mean_Respiratory_rate\n", + "1656 lifetime_condition_length<=2*Diastolic_Blood_Pressure*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1657 lifetime_condition_length<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*Systolic_Blood_Pressure\n", + "1658 lifetime_condition_length<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/device_lifetime_length\n", + "1659 lifetime_condition_length<=maximum(medications_lifetime_dispenses,2*Chloride)\n", + "1660 lifetime_condition_length<=sqrt(healthcare_expenses)-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "1661 lifetime_condition_length<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+medications_lifetime_length\n", + "1662 lifetime_condition_length<=active_conditions*ceil(active_condition_length)\n", + "1663 lifetime_condition_length<=Platelets____volume__in_Blood_by_Automated_count+procedures_lifetime_cost-1\n", + "1664 lifetime_condition_length<=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+mean_Chloride\n", + "1665 lifetime_condition_length<=active_conditions*floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "1666 lifetime_condition_length<=10^DALY+Chloride\n", + "1667 lifetime_condition_length<=(e^MCH__Entitic_mass__by_Automated_count)^QOLS\n", + "1668 lifetime_condition_length<=(1/2*Body_Mass_Index)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1669 lifetime_condition_length<=sqrt(Estimated_Glomerular_Filtration_Rate)*encounters_count\n", + "1670 lifetime_condition_length<=(2*Chloride)^active_care_plans\n", + "1671 lifetime_condition_length<=2*active_care_plans*mean_Systolic_Blood_Pressure\n", + "1672 lifetime_condition_length<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*lifetime_care_plan_length\n", + "1673 lifetime_condition_length<=Estimated_Glomerular_Filtration_Rate^2/imaging_studies_lifetime\n", + "1674 lifetime_condition_length<=(encounters_count-1)*MCH__Entitic_mass__by_Automated_count\n", + "1675 lifetime_condition_length<=1/2*encounters_lifetime_total_cost/immunizations_lifetime\n", + "1676 lifetime_condition_length<=(log(medications_lifetime_cost)/log(10))^Potassium\n", + "1677 lifetime_condition_length<=minimum(healthcare_expenses,FEV1_FVC^2)\n", + "1678 lifetime_condition_length<=(DALY+1)*age\n", + "1679 lifetime_condition_length<=Body_Height^2/device_lifetime_length\n", + "1680 lifetime_condition_length<=active_care_plan_length^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1681 lifetime_condition_length<=1/2*QOLS*encounters_lifetime_total_cost\n", + "1682 lifetime_condition_length<=2*Glucose+healthcare_coverage\n", + "1683 lifetime_condition_length<=Systolic_Blood_Pressure+e^active_conditions\n", + "1684 lifetime_condition_length<=Protein__Mass_volume__in_Serum,Plasma+e^active_conditions\n", + "1685 lifetime_condition_length<=(e^QOLS)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1686 lifetime_condition_length<=(2*DALY)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1687 lifetime_condition_length<=sqrt(DALY)*mean_Total_Cholesterol\n", + "1688 lifetime_condition_length<=(log(Respiratory_rate)/log(10))^Heart_rate\n", + "1689 lifetime_condition_length<=log(Body_Height)^Potassium\n", + "1690 lifetime_condition_length<=active_care_plan_length*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1691 lifetime_condition_length<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Calcium\n", + "1692 lifetime_condition_length<=Glucose^2/Calcium\n", + "1693 lifetime_condition_length<=Carbon_Dioxide^2+procedures_lifetime_cost\n", + "1694 lifetime_condition_length<=Carbon_Dioxide^2-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1695 lifetime_condition_length<=log(Total_Cholesterol)^active_conditions\n", + "1696 lifetime_condition_length>=active_condition_length\n", + "1697 lifetime_condition_length>=minimum(Respiratory_rate,2*active_condition_length)\n", + "1698 lifetime_condition_length>=(encounters_lifetime_payer_coverage+1)/age\n", + "1699 lifetime_condition_length>=(Body_Height+1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1700 lifetime_condition_length>=e^Potassium*imaging_studies_lifetime\n", + "1701 lifetime_condition_length>=1/2*medications_lifetime_length/Microalbumin_Creatinine_Ratio\n", + "1702 lifetime_condition_length>=mean_Glucose*medications_lifetime_perc_covered\n", + "1703 lifetime_condition_length>=active_care_plan_length*log(Microalbumin_Creatinine_Ratio)\n", + "1704 lifetime_condition_length>=1/4*DALY^2\n", + "1705 lifetime_condition_length>=active_conditions^2/Creatinine\n", + "1706 lifetime_condition_length>=lifetime_care_plan_length*log(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1707 lifetime_condition_length>=-active_care_plan_length+lifetime_care_plan_length\n", + "1708 lifetime_condition_length>=-Carbon_Dioxide+Heart_rate\n", + "1709 lifetime_condition_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma*floor(Sodium)\n", + "1710 lifetime_condition_length>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1711 lifetime_condition_length>=(2*active_condition_length)^medications_lifetime_perc_covered\n", + "1712 lifetime_condition_length>=(medications_lifetime_length+1)/Glucose\n", + "1713 lifetime_condition_length>=sqrt(active_condition_length)^imaging_studies_lifetime\n", + "1714 lifetime_condition_length>=active_condition_length*sqrt(num_allergies)\n", + "1715 lifetime_condition_length>=DALY*sqrt(active_condition_length)\n", + "1716 lifetime_condition_length>=Sodium-procedures_lifetime_cost+1\n", + "1717 lifetime_condition_length>=(DALY+1)/QOLS\n", + "1718 lifetime_condition_length>=(Microalbumin_Creatinine_Ratio^2)^encounters_lifetime_perc_covered\n", + "1719 lifetime_condition_length>=sqrt(medications_lifetime_length)/Creatinine\n", + "1720 lifetime_condition_length>=active_conditions^2-num_allergies\n", + "1721 lifetime_condition_length>=floor(DALY)*mean_Calcium\n", + "1722 lifetime_condition_length>=active_condition_length+active_conditions-1\n", + "1723 lifetime_condition_length>=Body_Height+log(device_lifetime_length)\n", + "1724 lifetime_condition_length>=minimum(Microalbumin_Creatinine_Ratio,Respiratory_rate^2)\n", + "1725 lifetime_condition_length>=medications_lifetime-procedures_lifetime_cost+1\n", + "1726 lifetime_condition_length>=device_lifetime_length*floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "1727 lifetime_condition_length>=-encounters_lifetime_payer_coverage/longitude\n", + "1728 lifetime_condition_length>=2*encounters_count*medications_lifetime_perc_covered\n", + "1729 lifetime_condition_length>=1/2*encounters_lifetime_total_cost/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1730 lifetime_condition_length>=-Body_Weight+floor(Triglycerides)\n", + "1731 lifetime_condition_length>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost+1\n", + "1732 lifetime_condition_length>=sqrt(healthcare_expenses)/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1733 lifetime_condition_length>=10^Globulin__Mass_volume__in_Serum_by_calculation/encounters_count\n", + "1734 lifetime_condition_length>=minimum(lifetime_care_plan_length,medications_lifetime)\n", + "1735 lifetime_condition_length>=(2*medications_lifetime)^medications_lifetime_perc_covered\n", + "1736 lifetime_condition_length>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Estimated_Glomerular_Filtration_Rate\n", + "1737 lifetime_condition_length>=-Low_Density_Lipoprotein_Cholesterol+1/2*medications_lifetime\n", + "1738 lifetime_condition_length>=active_condition_length+medications_lifetime_perc_covered\n", + "1739 lifetime_condition_length>=1/2*medications_lifetime_dispenses/Calcium\n", + "1740 lifetime_condition_length>=1/2*active_care_plan_length/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1741 lifetime_condition_length>=mean_Potassium*procedures_lifetime\n", + "1742 lifetime_condition_length>=lifetime_conditions^2-Microalbumin_Creatinine_Ratio\n", + "1743 lifetime_condition_length>=Protein__Mass_volume__in_Serum,Plasma-encounters_lifetime_perc_covered-1\n", + "1744 lifetime_condition_length>=(num_allergies-1)*Low_Density_Lipoprotein_Cholesterol\n", + "1745 lifetime_condition_length>=Heart_rate-procedures_lifetime_cost+1\n", + "1746 lifetime_condition_length>=DALY^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1747 lifetime_condition_length>=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*encounters_count\n", + "1748 lifetime_condition_length>=minimum(Sodium,e^DALY)\n", + "1749 lifetime_condition_length>=DALY*log(procedures_lifetime_cost)\n", + "1750 lifetime_condition_length>=sqrt(Albumin__Mass_volume__in_Serum,Plasma)^lifetime_care_plans\n", + "1751 lifetime_condition_length>=Glucose+1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1752 lifetime_condition_length>=2*medications_lifetime_dispenses/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1753 lifetime_condition_length>=2*Protein__Mass_volume__in_Serum,Plasma/medications_active\n", + "1754 lifetime_condition_length>=(active_care_plans-1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1755 lifetime_condition_length>=active_condition_length*log(active_care_plans)\n", + "1756 lifetime_condition_length>=Chloride*log(device_lifetime_length)\n", + "1757 lifetime_condition_length>=e^lifetime_care_plans/Systolic_Blood_Pressure\n", + "1758 lifetime_condition_length>=2*encounters_count/mean_Creatinine\n", + "1759 lifetime_condition_length>=-age+lifetime_care_plan_length+1\n", + "1760 lifetime_condition_length>=log(device_lifetime_length)*mean_Chloride\n", + "1761 lifetime_condition_length>=lifetime_conditions^2-encounters_lifetime_payer_coverage\n", + "1762 lifetime_condition_length>=lifetime_care_plan_length*log(device_lifetime_length)/log(10)\n", + "1763 lifetime_condition_length>=minimum(encounters_count,10^DALY)\n", + "1764 lifetime_condition_length>=10^Creatinine/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1765 lifetime_condition_length>=DALY*log(encounters_lifetime_payer_coverage)\n", + "1766 lifetime_condition_length>=(-Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Creatinine\n", + "1767 lifetime_condition_length>=minimum(Body_Height,1/immunizations_lifetime)\n", + "1768 lifetime_condition_length>=Hemoglobin__Mass_volume__in_Blood^2-procedures_lifetime_cost\n", + "1769 lifetime_condition_length>=-MCH__Entitic_mass__by_Automated_count+1/2*medications_lifetime\n", + "1770 lifetime_condition_length>=-mean_Low_Density_Lipoprotein_Cholesterol+1/2*medications_lifetime\n", + "1771 lifetime_condition_length>=(2*medications_lifetime)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1772 lifetime_condition_length>=sqrt(medications_lifetime_length)-active_care_plan_length\n", + "1773 lifetime_condition_length>=(1/medications_active)^DXA__T_score__Bone_density\n", + "1774 lifetime_condition_length>=e^medications_active/MCH__Entitic_mass__by_Automated_count\n", + "1775 lifetime_condition_length>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*procedures_lifetime\n", + "1776 lifetime_condition_length>=sqrt(procedures_lifetime_cost)-Platelets____volume__in_Blood_by_Automated_count\n", + "1777 lifetime_condition_length>=(DALY^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1778 lifetime_condition_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(DALY)\n", + "1779 lifetime_condition_length>=log(DALY)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1780 lifetime_condition_length>=2*DALY*Potassium\n", + "1781 lifetime_condition_length>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*High_Density_Lipoprotein_Cholesterol\n", + "1782 lifetime_condition_length>=Glomerular_filtration_rate_1_73_sq_M_predicted*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1783 lifetime_condition_length>=DALY*floor(Calcium)\n", + "1784 lifetime_condition_length>=(2*MCV__Entitic_volume__by_Automated_count)^medications_lifetime_perc_covered\n", + "1785 device_lifetime_length<=imaging_studies_lifetime^FEV1_FVC\n", + "1786 device_lifetime_length<=healthcare_coverage\n", + "1787 device_lifetime_length<=active_condition_length\n", + "1788 device_lifetime_length<=(healthcare_expenses-1)/procedures_lifetime_cost\n", + "1789 device_lifetime_length<=encounters_lifetime_payer_coverage\n", + "1790 device_lifetime_length<=medications_lifetime\n", + "1791 device_lifetime_length<=medications_lifetime_length\n", + "1792 device_lifetime_length<=10^lifetime_condition_length*immunizations_lifetime\n", + "1793 device_lifetime_length<=e^medications_lifetime_dispenses*num_allergies\n", + "1794 device_lifetime_length<=1/2*Protein__Mass_volume__in_Serum,Plasma/Creatinine\n", + "1795 device_lifetime_length<=log(medications_active)^healthcare_expenses\n", + "1796 device_lifetime_length<=log(medications_active)^mean_Urea_Nitrogen\n", + "1797 device_lifetime_length<=DALY^2\n", + "1798 device_lifetime_length<=(Potassium-1)*Hemoglobin__Mass_volume__in_Blood\n", + "1799 device_lifetime_length<=10^lifetime_condition_length*medications_lifetime_perc_covered\n", + "1800 device_lifetime_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1801 device_lifetime_length<=sqrt(lifetime_condition_length)/QOLS\n", + "1802 device_lifetime_length<=log(procedures_lifetime)^Protein__Mass_volume__in_Serum,Plasma\n", + "1803 device_lifetime_length<=floor(QOLS)^Body_temperature\n", + "1804 device_lifetime_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Protein__Mass_volume__in_Serum,Plasma\n", + "1805 device_lifetime_length<=(log(medications_lifetime)/log(10))^healthcare_expenses\n", + "1806 device_lifetime_length<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime_perc_covered\n", + "1807 device_lifetime_length<=log(Globulin__Mass_volume__in_Serum_by_calculation)^longitude\n", + "1808 device_lifetime_length<=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Body_temperature\n", + "1809 device_lifetime_length<=immunizations_lifetime_cost^Respiratory_rate\n", + "1810 device_lifetime_length<=imaging_studies_lifetime^Total_score__MMSE_\n", + "1811 device_lifetime_length<=-medications_active+medications_lifetime\n", + "1812 device_lifetime_length<=(medications_active-1)^healthcare_expenses\n", + "1813 device_lifetime_length<=procedures_lifetime_cost/immunizations_lifetime\n", + "1814 device_lifetime_length<=(Creatinine-1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "1815 device_lifetime_length<=(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^healthcare_expenses\n", + "1816 device_lifetime_length<=-Carbon_Dioxide+lifetime_care_plan_length+1\n", + "1817 device_lifetime_length<=-Albumin__Mass_volume__in_Serum,Plasma+1/2*encounters_count\n", + "1818 device_lifetime_length<=minimum(Microalbumin_Creatinine_Ratio,floor(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "1819 device_lifetime_length<=(1/medications_lifetime_perc_covered)^DALY\n", + "1820 device_lifetime_length<=Calcium*log(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1821 device_lifetime_length<=procedures_lifetime_cost/imaging_studies_lifetime\n", + "1822 device_lifetime_length<=immunizations_lifetime_cost/num_allergies\n", + "1823 device_lifetime_length<=Microalbumin_Creatinine_Ratio-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1824 device_lifetime_length<=immunizations_lifetime_cost/imaging_studies_lifetime\n", + "1825 device_lifetime_length<=(1/medications_lifetime_perc_covered)^Urea_Nitrogen\n", + "1826 device_lifetime_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*medications_lifetime_perc_covered\n", + "1827 device_lifetime_length<=(imaging_studies_lifetime-1)^healthcare_coverage\n", + "1828 device_lifetime_length<=DALY^healthcare_expenses\n", + "1829 device_lifetime_length<=(immunizations_lifetime-1)*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1830 device_lifetime_length<=(log(medications_lifetime_perc_covered)/log(10))^mean_Total_Cholesterol\n", + "1831 device_lifetime_length<=Estimated_Glomerular_Filtration_Rate*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1832 device_lifetime_length<=e^active_conditions/Total_Cholesterol\n", + "1833 device_lifetime_length<=10^medications_lifetime_dispenses*num_allergies\n", + "1834 device_lifetime_length>=floor(encounters_lifetime_perc_covered)\n", + "1835 device_lifetime_length>=-healthcare_coverage\n", + "1836 device_lifetime_length>=-num_allergies\n", + "1837 device_lifetime_length>=(imaging_studies_lifetime-1)*Urea_Nitrogen\n", + "1838 device_lifetime_length>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+immunizations_lifetime_cost+1\n", + "1839 device_lifetime_length>=2*DALY-mean_Body_Weight\n", + "1840 device_lifetime_length>=-QALY+1/2*active_care_plan_length\n", + "1841 device_lifetime_length>=sqrt(lifetime_condition_length)-mean_Carbon_Dioxide\n", + "1842 device_lifetime_length>=-Low_Density_Lipoprotein_Cholesterol+1/2*Systolic_Blood_Pressure\n", + "1843 device_lifetime_length>=-lifetime_conditions+medications_active-1\n", + "1844 encounters_count<=ceil(e^active_condition_length)\n", + "1845 encounters_count<=minimum(healthcare_expenses,e^Total_score__MMSE_)\n", + "1846 encounters_count<=10^active_care_plan_length-DALY\n", + "1847 encounters_count<=e^DALY+medications_lifetime_cost\n", + "1848 encounters_count<=1/2*encounters_lifetime_total_cost/latitude\n", + "1849 encounters_count<=(Potassium-1)*mean_Sodium\n", + "1850 encounters_count<=(encounters_lifetime_total_cost-1)/Chloride\n", + "1851 encounters_count<=(encounters_lifetime_total_cost-1)/Diastolic_Blood_Pressure\n", + "1852 encounters_count<=(encounters_lifetime_total_cost-1)/Body_Weight\n", + "1853 encounters_count<=sqrt(DALY)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "1854 encounters_count<=(encounters_lifetime_total_cost-1)/mean_Chloride\n", + "1855 encounters_count<=encounters_lifetime_payer_coverage+lifetime_care_plan_length-1\n", + "1856 encounters_count<=sqrt(Calcium)*Triglycerides\n", + "1857 encounters_count<=Glucose^2/device_lifetime_length\n", + "1858 encounters_count<=(healthcare_coverage-1)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1859 encounters_count<=log(Protein__Mass_volume__in_Serum,Plasma)*mean_Chloride\n", + "1860 encounters_count<=Respiratory_rate*lifetime_conditions^2\n", + "1861 encounters_count<=(QALY-1)*active_conditions\n", + "1862 encounters_count<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^Carbon_Dioxide\n", + "1863 encounters_count<=2*Heart_rate+healthcare_coverage\n", + "1864 encounters_count<=floor(Potassium)^active_conditions\n", + "1865 encounters_count<=sqrt(healthcare_expenses)-Diastolic_Blood_Pressure\n", + "1866 encounters_count<=e^Urea_Nitrogen/mean_Respiratory_rate\n", + "1867 encounters_count<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+medications_lifetime_cost\n", + "1868 encounters_count<=e^Glomerular_filtration_rate_1_73_sq_M_predicted/active_conditions\n", + "1869 encounters_count<=1/2*Albumin__Mass_volume__in_Serum,Plasma*medications_lifetime\n", + "1870 encounters_count<=mean_Respiratory_rate^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1871 encounters_count<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*Systolic_Blood_Pressure\n", + "1872 encounters_count<=Body_Weight*floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1873 encounters_count<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1874 encounters_count<=Diastolic_Blood_Pressure*ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "1875 encounters_count<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/active_care_plan_length\n", + "1876 encounters_count<=10^active_care_plans+Heart_rate\n", + "1877 encounters_count<=2*Chloride+Total_Cholesterol\n", + "1878 encounters_count<=sqrt(Triglycerides)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1879 encounters_count<=Globulin__Mass_volume__in_Serum_by_calculation^2*mean_High_Density_Lipoprotein_Cholesterol\n", + "1880 encounters_count<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+encounters_lifetime_payer_coverage\n", + "1881 encounters_count<=lifetime_care_plan_length^2/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1882 encounters_count<=active_conditions+e^Microalbumin_Creatinine_Ratio\n", + "1883 encounters_count<=(latitude^2)^mean_Creatinine\n", + "1884 encounters_count<=1/2*encounters_lifetime_total_cost/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1885 encounters_count<=e^medications_lifetime/imaging_studies_lifetime\n", + "1886 encounters_count<=active_condition_length^2/Creatinine\n", + "1887 encounters_count<=maximum(age,e^active_conditions)\n", + "1888 encounters_count<=Bilirubin_total__Mass_volume__in_Serum,Plasma*e^active_conditions\n", + "1889 encounters_count<=active_condition_length^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1890 encounters_count<=e^DALY+mean_Estimated_Glomerular_Filtration_Rate\n", + "1891 encounters_count<=1/2*lifetime_condition_length*mean_Creatinine\n", + "1892 encounters_count<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*e^Creatinine\n", + "1893 encounters_count<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^medications_lifetime\n", + "1894 encounters_count<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*medications_lifetime\n", + "1895 encounters_count<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*medications_lifetime\n", + "1896 encounters_count<=Erythrocytes____volume__in_Blood_by_Automated_count+2*medications_lifetime\n", + "1897 encounters_count<=10^medications_active*mean_Sodium\n", + "1898 encounters_count<=10^DALY+medications_lifetime\n", + "1899 encounters_count<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^DALY\n", + "1900 encounters_count<=e^DALY+mean_Low_Density_Lipoprotein_Cholesterol\n", + "1901 encounters_count<=(DALY+1)*MCH__Entitic_mass__by_Automated_count\n", + "1902 encounters_count<=2*Body_Height+immunizations_lifetime_cost\n", + "1903 encounters_count<=(1/2*Carbon_Dioxide)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1904 encounters_count<=2*Glucose*mean_Creatinine\n", + "1905 encounters_count<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/device_lifetime_length\n", + "1906 encounters_count<=10^Globulin__Mass_volume__in_Serum_by_calculation/immunizations_lifetime\n", + "1907 encounters_count<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+medications_lifetime\n", + "1908 encounters_count<=2*MCHC__Mass_volume__by_Automated_count+procedures_lifetime_cost\n", + "1909 encounters_count>=lifetime_care_plan_length*log(num_allergies)/log(10)\n", + "1910 encounters_count>=active_care_plans+1\n", + "1911 encounters_count>=(encounters_lifetime_total_cost+1)/Sodium\n", + "1912 encounters_count>=1/2*encounters_lifetime_total_cost/Body_Weight\n", + "1913 encounters_count>=immunizations_lifetime\n", + "1914 encounters_count>=medications_active+1\n", + "1915 encounters_count>=(encounters_lifetime_total_cost+1)/mean_Sodium\n", + "1916 encounters_count>=ceil(log(procedures_lifetime_cost)/log(10))\n", + "1917 encounters_count>=sqrt(encounters_lifetime_total_cost)-latitude\n", + "1918 encounters_count>=1/2*encounters_lifetime_total_cost/Diastolic_Blood_Pressure\n", + "1919 encounters_count>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1920 encounters_count>=minimum(active_conditions,immunizations_lifetime_cost)\n", + "1921 encounters_count>=2*Respiratory_rate/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1922 encounters_count>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,medications_lifetime-1)\n", + "1923 encounters_count>=(imaging_studies_lifetime+1)^2\n", + "1924 encounters_count>=(Potassium-1)^imaging_studies_lifetime\n", + "1925 encounters_count>=immunizations_lifetime+medications_active\n", + "1926 encounters_count>=2*Albumin__Mass_volume__in_Serum,Plasma\n", + "1927 encounters_count>=log(active_condition_length)*procedures_lifetime/log(10)\n", + "1928 encounters_count>=(medications_lifetime+1)/active_conditions\n", + "1929 encounters_count>=active_conditions-medications_lifetime_cost+1\n", + "1930 encounters_count>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1931 encounters_count>=floor(Leukocytes____volume__in_Blood_by_Automated_count)-1\n", + "1932 encounters_count>=(Systolic_Blood_Pressure+1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1933 encounters_count>=sqrt(encounters_lifetime_total_cost)-mean_Estimated_Glomerular_Filtration_Rate\n", + "1934 encounters_count>=active_conditions-medications_lifetime\n", + "1935 encounters_count>=Glucose-healthcare_coverage+1\n", + "1936 encounters_count>=active_conditions^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1937 encounters_count>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*imaging_studies_lifetime\n", + "1938 encounters_count>=(QOLS+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1939 encounters_count>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Carbon_Dioxide\n", + "1940 encounters_count>=(Microalbumin_Creatinine_Ratio+1)*medications_lifetime_perc_covered\n", + "1941 encounters_count>=-QALY+active_care_plan_length\n", + "1942 encounters_count>=minimum(Triglycerides,floor(DALY))\n", + "1943 encounters_count>=minimum(Estimated_Glomerular_Filtration_Rate,ceil(Carbon_Dioxide))\n", + "1944 encounters_count>=(device_lifetime_length+1)*mean_Creatinine\n", + "1945 encounters_count>=-age+mean_Estimated_Glomerular_Filtration_Rate\n", + "1946 encounters_count>=log(device_lifetime_length)*mean_Calcium\n", + "1947 encounters_count>=log(DALY)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1948 encounters_count>=procedures_lifetime^2/Carbon_Dioxide\n", + "1949 encounters_count>=-Body_Height+mean_Triglycerides\n", + "1950 encounters_count>=minimum(medications_lifetime,log(healthcare_expenses))\n", + "1951 encounters_count>=1/2*Body_Weight-age\n", + "1952 encounters_count>=2*Estimated_Glomerular_Filtration_Rate*num_allergies\n", + "1953 encounters_count>=(1/2*lifetime_care_plans)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1954 encounters_count>=floor(device_lifetime_length)/Creatinine\n", + "1955 encounters_count>=Respiratory_rate^2-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1956 encounters_count>=lifetime_care_plans^2+Globulin__Mass_volume__in_Serum_by_calculation\n", + "1957 encounters_count>=minimum(Microalbumin_Creatinine_Ratio,2*active_care_plan_length)\n", + "1958 encounters_count>=1/2*encounters_lifetime_total_cost/Glucose\n", + "1959 encounters_count>=2*Systolic_Blood_Pressure/Microalbumin_Creatinine_Ratio\n", + "1960 encounters_count>=-encounters_lifetime_payer_coverage+1/2*medications_lifetime\n", + "1961 encounters_count>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1962 encounters_count>=lifetime_conditions^2/Calcium\n", + "1963 encounters_count>=1/2*encounters_lifetime_payer_coverage/High_Density_Lipoprotein_Cholesterol\n", + "1964 encounters_count>=minimum(active_care_plan_length,device_lifetime_length^2)\n", + "1965 encounters_count>=1/2*immunizations_lifetime*mean_Microalbumin_Creatinine_Ratio\n", + "1966 encounters_count>=(1/2*medications_lifetime)^medications_lifetime_perc_covered\n", + "1967 encounters_count>=2*medications_lifetime/Calcium\n", + "1968 encounters_count>=2*medications_lifetime/mean_Calcium\n", + "1969 encounters_count>=medications_active^2-Hemoglobin__Mass_volume__in_Blood\n", + "1970 encounters_count>=minimum(Urea_Nitrogen,2*medications_active)\n", + "1971 encounters_count>=2*Diastolic_Blood_Pressure-mean_Total_Cholesterol\n", + "1972 encounters_count>=lifetime_care_plans*log(Urea_Nitrogen)/log(10)\n", + "1973 encounters_count>=minimum(Microalbumin_Creatinine_Ratio,floor(Body_Weight))\n", + "1974 encounters_count>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*device_lifetime_length\n", + "1975 encounters_count>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-latitude\n", + "1976 encounters_count>=(log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10))^Platelets____volume__in_Blood_by_Automated_count\n", + "1977 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", + "1978 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", + "1979 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", + "1980 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", + "1981 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", + "1982 encounters_lifetime_payer_coverage<=healthcare_coverage\n", + "1983 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", + "1984 encounters_lifetime_payer_coverage>=num_allergies\n", + "1985 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", + "1986 encounters_lifetime_payer_coverage>=DALY^2*Globulin__Mass_volume__in_Serum_by_calculation\n", + "1987 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", + "1988 encounters_lifetime_perc_covered<=healthcare_coverage\n", + "1989 encounters_lifetime_perc_covered<=floor(Body_Height)/lifetime_care_plan_length\n", + "1990 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "1991 encounters_lifetime_perc_covered<=ceil(age)/High_Density_Lipoprotein_Cholesterol\n", + "1992 encounters_lifetime_perc_covered>=(encounters_lifetime_payer_coverage-1)/encounters_lifetime_total_cost\n", + "1993 encounters_lifetime_perc_covered>=-healthcare_coverage\n", + "1994 encounters_lifetime_perc_covered>=-num_allergies\n", + "1995 encounters_lifetime_perc_covered>=1/2*Leukocytes____volume__in_Blood_by_Automated_count/Body_Mass_Index\n", + "1996 imaging_studies_lifetime<=active_care_plans-1\n", + "1997 imaging_studies_lifetime<=healthcare_coverage\n", + "1998 imaging_studies_lifetime<=medications_lifetime\n", + "1999 imaging_studies_lifetime<=DALY\n", + "2000 imaging_studies_lifetime<=medications_lifetime_length\n", + "2001 imaging_studies_lifetime<=medications_active\n", + "2002 imaging_studies_lifetime<=2*active_care_plans-lifetime_care_plans\n", + "2003 imaging_studies_lifetime<=10^procedures_lifetime\n", + "2004 imaging_studies_lifetime<=device_lifetime_length/num_allergies\n", + "2005 imaging_studies_lifetime<=floor(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2006 imaging_studies_lifetime<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2007 imaging_studies_lifetime<=log(procedures_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2008 imaging_studies_lifetime<=log(procedures_lifetime)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2009 imaging_studies_lifetime<=10^immunizations_lifetime\n", + "2010 imaging_studies_lifetime<=(immunizations_lifetime-1)^Total_score__MMSE_\n", + "2011 imaging_studies_lifetime<=floor(DALY)\n", + "2012 imaging_studies_lifetime<=e^active_care_plans/Microalbumin_Creatinine_Ratio\n", + "2013 imaging_studies_lifetime<=active_care_plans/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2014 imaging_studies_lifetime<=10^Potassium/medications_lifetime_length\n", + "2015 imaging_studies_lifetime<=num_allergies^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2016 imaging_studies_lifetime<=log(medications_active)^encounters_lifetime_payer_coverage\n", + "2017 imaging_studies_lifetime<=1/2*healthcare_expenses/healthcare_coverage\n", + "2018 imaging_studies_lifetime<=(immunizations_lifetime-1)^Body_temperature\n", + "2019 imaging_studies_lifetime<=log(procedures_lifetime)^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2020 imaging_studies_lifetime<=log(active_care_plans)^encounters_lifetime_payer_coverage\n", + "2021 imaging_studies_lifetime<=maximum(Triglycerides,floor(procedures_lifetime))\n", + "2022 imaging_studies_lifetime<=lifetime_care_plans-num_allergies\n", + "2023 imaging_studies_lifetime<=immunizations_lifetime_cost/device_lifetime_length\n", + "2024 imaging_studies_lifetime<=immunizations_lifetime_cost^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2025 imaging_studies_lifetime<=(2*QOLS)^healthcare_expenses\n", + "2026 imaging_studies_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/medications_lifetime_perc_covered\n", + "2027 imaging_studies_lifetime<=log(lifetime_care_plans)^healthcare_expenses\n", + "2028 imaging_studies_lifetime<=immunizations_lifetime_cost^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2029 imaging_studies_lifetime<=active_condition_length-device_lifetime_length\n", + "2030 imaging_studies_lifetime<=(10^immunizations_lifetime_cost)^DXA__T_score__Bone_density\n", + "2031 imaging_studies_lifetime<=Bilirubin_total__Mass_volume__in_Urine_by_Test_strip^procedures_lifetime_cost\n", + "2032 imaging_studies_lifetime<=immunizations_lifetime+procedures_lifetime\n", + "2033 imaging_studies_lifetime<=procedures_lifetime^Estimated_Glomerular_Filtration_Rate\n", + "2034 imaging_studies_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Sodium\n", + "2035 imaging_studies_lifetime<=(medications_active-1)^2\n", + "2036 imaging_studies_lifetime<=floor(log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2037 imaging_studies_lifetime<=Heart_rate-procedures_lifetime\n", + "2038 imaging_studies_lifetime<=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,floor(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "2039 imaging_studies_lifetime<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^healthcare_expenses\n", + "2040 imaging_studies_lifetime<=Protein__Mass_volume__in_Serum,Plasma*medications_lifetime_perc_covered\n", + "2041 imaging_studies_lifetime<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2042 imaging_studies_lifetime<=Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered\n", + "2043 imaging_studies_lifetime>=floor(encounters_lifetime_perc_covered)\n", + "2044 imaging_studies_lifetime>=-healthcare_coverage\n", + "2045 imaging_studies_lifetime>=-num_allergies\n", + "2046 imaging_studies_lifetime>=-device_lifetime_length\n", + "2047 imaging_studies_lifetime>=(-immunizations_lifetime)^mean_High_Density_Lipoprotein_Cholesterol\n", + "2048 imaging_studies_lifetime>=-Glomerular_filtration_rate_1_73_sq_M_predicted+Urea_Nitrogen+1\n", + "2049 imaging_studies_lifetime>=maximum(DXA__T_score__Bone_density,-healthcare_expenses)\n", + "2050 imaging_studies_lifetime>=(-immunizations_lifetime)^Creatinine\n", + "2051 imaging_studies_lifetime>=-encounters_lifetime_payer_coverage+floor(QOLS)\n", + "2052 imaging_studies_lifetime>=(1/Body_Weight)^mean_Total_Cholesterol\n", + "2053 immunizations_lifetime<=floor(immunizations_lifetime_cost)/Chloride\n", + "2054 immunizations_lifetime<=floor(active_care_plan_length)\n", + "2055 immunizations_lifetime<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Calcium\n", + "2056 immunizations_lifetime<=encounters_count\n", + "2057 immunizations_lifetime<=immunizations_lifetime_cost\n", + "2058 immunizations_lifetime<=maximum(Sodium,1/encounters_lifetime_perc_covered)\n", + "2059 immunizations_lifetime<=minimum(Triglycerides,10^procedures_lifetime)\n", + "2060 immunizations_lifetime<=floor(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2061 immunizations_lifetime<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2062 immunizations_lifetime<=2*ceil(Creatinine)\n", + "2063 immunizations_lifetime<=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,10^device_lifetime_length)\n", + "2064 immunizations_lifetime<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/Creatinine\n", + "2065 immunizations_lifetime<=maximum(medications_active,log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/log(10))\n", + "2066 immunizations_lifetime<=floor(Potassium)\n", + "2067 immunizations_lifetime<=floor(1/2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "2068 immunizations_lifetime<=10^healthcare_coverage\n", + "2069 immunizations_lifetime<=Microalbumin_Creatinine_Ratio/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2070 immunizations_lifetime<=active_conditions^2\n", + "2071 immunizations_lifetime<=ceil(active_condition_length)\n", + "2072 immunizations_lifetime<=10^encounters_lifetime_payer_coverage\n", + "2073 immunizations_lifetime<=active_care_plans+procedures_lifetime_cost\n", + "2074 immunizations_lifetime<=maximum(procedures_lifetime,ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "2075 immunizations_lifetime<=Respiratory_rate/active_care_plans\n", + "2076 immunizations_lifetime<=ceil(log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2077 immunizations_lifetime<=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2078 immunizations_lifetime<=10^procedures_lifetime+1\n", + "2079 immunizations_lifetime<=Heart_rate-procedures_lifetime\n", + "2080 immunizations_lifetime<=ceil(log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))\n", + "2081 immunizations_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime_cost\n", + "2082 immunizations_lifetime<=ceil(10^encounters_lifetime_perc_covered)\n", + "2083 immunizations_lifetime<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2084 immunizations_lifetime<=minimum(healthcare_expenses,Specific_gravity_of_Urine_by_Test_strip)\n", + "2085 immunizations_lifetime<=ceil(1/imaging_studies_lifetime)\n", + "2086 immunizations_lifetime<=floor(1/2*Leukocytes____volume__in_Blood_by_Automated_count)\n", + "2087 immunizations_lifetime<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+Urea_Nitrogen\n", + "2088 immunizations_lifetime<=10^floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2089 immunizations_lifetime<=Carbon_Dioxide-active_conditions-1\n", + "2090 immunizations_lifetime<=age^2/medications_lifetime_dispenses\n", + "2091 immunizations_lifetime<=maximum(medications_active,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2092 immunizations_lifetime<=minimum(Estimated_Glomerular_Filtration_Rate,ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "2093 immunizations_lifetime<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/num_allergies)\n", + "2094 immunizations_lifetime<=(device_lifetime_length-1)^healthcare_coverage\n", + "2095 immunizations_lifetime<=floor(MCHC__Mass_volume__by_Automated_count)-procedures_lifetime\n", + "2096 immunizations_lifetime<=(log(encounters_count)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "2097 immunizations_lifetime<=active_condition_length-device_lifetime_length+1\n", + "2098 immunizations_lifetime<=minimum(Triglycerides,10^medications_active)\n", + "2099 immunizations_lifetime<=QOLS*ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "2100 immunizations_lifetime<=(1/medications_lifetime_perc_covered)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2101 immunizations_lifetime<=maximum(Sodium,10^procedures_lifetime)\n", + "2102 immunizations_lifetime<=maximum(Sodium,log(Systolic_Blood_Pressure)/log(10))\n", + "2103 immunizations_lifetime<=maximum(Estimated_Glomerular_Filtration_Rate,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2104 immunizations_lifetime<=Triglycerides^2/medications_lifetime_length\n", + "2105 immunizations_lifetime<=1/2*Low_Density_Lipoprotein_Cholesterol/DALY\n", + "2106 immunizations_lifetime>=minimum(num_allergies,device_lifetime_length)\n", + "2107 immunizations_lifetime>=encounters_lifetime_perc_covered^healthcare_coverage\n", + "2108 immunizations_lifetime>=-num_allergies\n", + "2109 immunizations_lifetime>=-device_lifetime_length\n", + "2110 immunizations_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^NT_proBNP\n", + "2111 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Body_Height\n", + "2112 immunizations_lifetime>=-encounters_lifetime_payer_coverage+imaging_studies_lifetime\n", + "2113 immunizations_lifetime>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2114 immunizations_lifetime>=-active_care_plans+num_allergies\n", + "2115 immunizations_lifetime>=-medications_lifetime+num_allergies\n", + "2116 immunizations_lifetime>=active_care_plans-active_conditions\n", + "2117 immunizations_lifetime>=1/2*immunizations_lifetime_cost/Diastolic_Blood_Pressure\n", + "2118 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", + "2119 immunizations_lifetime>=floor(log(procedures_lifetime)/log(10))\n", + "2120 immunizations_lifetime>=Specific_gravity_of_Urine_by_Test_strip^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2121 immunizations_lifetime>=mean_Estimated_Glomerular_Filtration_Rate-mean_Heart_rate\n", + "2122 immunizations_lifetime>=minimum(num_allergies,procedures_lifetime)\n", + "2123 immunizations_lifetime>=minimum(immunizations_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "2124 immunizations_lifetime>=floor(log(medications_active)/log(10))\n", + "2125 immunizations_lifetime>=imaging_studies_lifetime-procedures_lifetime\n", + "2126 immunizations_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_conditions\n", + "2127 immunizations_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime\n", + "2128 immunizations_lifetime>=floor(log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "2129 immunizations_lifetime>=active_care_plans-medications_lifetime-1\n", + "2130 immunizations_lifetime>=log(MCV__Entitic_volume__by_Automated_count)/log(10)-procedures_lifetime\n", + "2131 immunizations_lifetime>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-active_conditions\n", + "2132 immunizations_lifetime>=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/lifetime_condition_length\n", + "2133 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", + "2134 immunizations_lifetime_cost<=(Body_Height-1)^immunizations_lifetime\n", + "2135 immunizations_lifetime_cost<=2*Diastolic_Blood_Pressure*immunizations_lifetime\n", + "2136 immunizations_lifetime_cost<=10^healthcare_coverage+mean_Sodium\n", + "2137 immunizations_lifetime_cost<=(encounters_lifetime_total_cost-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2138 immunizations_lifetime_cost<=(Respiratory_rate^2)^immunizations_lifetime\n", + "2139 immunizations_lifetime_cost<=log(Protein__Mass_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2140 immunizations_lifetime_cost<=2*immunizations_lifetime*mean_Diastolic_Blood_Pressure\n", + "2141 immunizations_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2142 immunizations_lifetime_cost<=active_care_plan_length*mean_Carbon_Dioxide\n", + "2143 immunizations_lifetime_cost<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Systolic_Blood_Pressure\n", + "2144 immunizations_lifetime_cost<=(immunizations_lifetime+1)^Urea_Nitrogen\n", + "2145 immunizations_lifetime_cost<=Body_Mass_Index*Hemoglobin_A1c_Hemoglobin_total_in_Blood^2\n", + "2146 immunizations_lifetime_cost<=Respiratory_rate^2+healthcare_coverage\n", + "2147 immunizations_lifetime_cost<=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*Urea_Nitrogen\n", + "2148 immunizations_lifetime_cost<=(log(healthcare_coverage)/log(10))^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2149 immunizations_lifetime_cost<=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*procedures_lifetime_cost/log(10)\n", + "2150 immunizations_lifetime_cost<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*active_condition_length\n", + "2151 immunizations_lifetime_cost<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Urea_Nitrogen\n", + "2152 immunizations_lifetime_cost<=ceil(latitude)^active_care_plan_length\n", + "2153 immunizations_lifetime_cost<=2*mean_Estimated_Glomerular_Filtration_Rate^2\n", + "2154 immunizations_lifetime_cost<=(1/2*Respiratory_rate)^encounters_count\n", + "2155 immunizations_lifetime_cost<=Platelets____volume__in_Blood_by_Automated_count+ceil(MCH__Entitic_mass__by_Automated_count)\n", + "2156 immunizations_lifetime_cost<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*active_conditions\n", + "2157 immunizations_lifetime_cost<=10^medications_active*Triglycerides\n", + "2158 immunizations_lifetime_cost<=e^Microalbumin_Creatinine_Ratio+mean_Heart_rate\n", + "2159 immunizations_lifetime_cost<=10^DALY*Systolic_Blood_Pressure\n", + "2160 immunizations_lifetime_cost<=Body_Height^2/age\n", + "2161 immunizations_lifetime_cost<=(Low_Density_Lipoprotein_Cholesterol^2)^mean_Creatinine\n", + "2162 immunizations_lifetime_cost<=latitude^2/medications_active\n", + "2163 immunizations_lifetime_cost<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*lifetime_condition_length\n", + "2164 immunizations_lifetime_cost<=sqrt(healthcare_expenses)-Calcium\n", + "2165 immunizations_lifetime_cost<=Sodium^2/active_care_plan_length\n", + "2166 immunizations_lifetime_cost<=log(Urea_Nitrogen)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2167 immunizations_lifetime_cost<=active_care_plan_length^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "2168 immunizations_lifetime_cost<=Heart_rate*ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2169 immunizations_lifetime_cost<=active_condition_length^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2170 immunizations_lifetime_cost<=2*lifetime_condition_length+procedures_lifetime_cost\n", + "2171 immunizations_lifetime_cost<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/medications_active\n", + "2172 immunizations_lifetime_cost<=Heart_rate*e^immunizations_lifetime\n", + "2173 immunizations_lifetime_cost<=Glucose*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2174 immunizations_lifetime_cost<=Protein__Mass_volume__in_Serum,Plasma^2/DALY\n", + "2175 immunizations_lifetime_cost<=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2176 immunizations_lifetime_cost<=Chloride+e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2177 immunizations_lifetime_cost<=MCH__Entitic_mass__by_Automated_count^2*encounters_lifetime_perc_covered\n", + "2178 immunizations_lifetime_cost<=MCHC__Mass_volume__by_Automated_count^2/lifetime_care_plans\n", + "2179 immunizations_lifetime_cost>=immunizations_lifetime\n", + "2180 immunizations_lifetime_cost>=-Erythrocytes____volume__in_Blood_by_Automated_count+2*active_condition_length\n", + "2181 immunizations_lifetime_cost>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+latitude\n", + "2182 immunizations_lifetime_cost>=2*immunizations_lifetime*latitude\n", + "2183 immunizations_lifetime_cost>=(immunizations_lifetime-1)*Body_Height\n", + "2184 immunizations_lifetime_cost>=immunizations_lifetime^active_care_plans\n", + "2185 immunizations_lifetime_cost>=(Diastolic_Blood_Pressure+1)*immunizations_lifetime\n", + "2186 immunizations_lifetime_cost>=num_allergies*sqrt(procedures_lifetime_cost)\n", + "2187 immunizations_lifetime_cost>=Body_Height-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1\n", + "2188 immunizations_lifetime_cost>=2*Heart_rate-lifetime_condition_length\n", + "2189 immunizations_lifetime_cost>=(Chloride+1)*immunizations_lifetime\n", + "2190 immunizations_lifetime_cost>=Systolic_Blood_Pressure-lifetime_condition_length+1\n", + "2191 immunizations_lifetime_cost>=-encounters_lifetime_payer_coverage+mean_Sodium\n", + "2192 immunizations_lifetime_cost>=2*Heart_rate-medications_lifetime_cost\n", + "2193 immunizations_lifetime_cost>=-healthcare_coverage+mean_Sodium\n", + "2194 immunizations_lifetime_cost>=Systolic_Blood_Pressure-medications_lifetime_length+1\n", + "2195 immunizations_lifetime_cost>=(Body_Weight+1)*immunizations_lifetime\n", + "2196 immunizations_lifetime_cost>=log(Platelets____volume__in_Blood_by_Automated_count)/log(10)+Systolic_Blood_Pressure\n", + "2197 immunizations_lifetime_cost>=immunizations_lifetime*mean_Chloride\n", + "2198 immunizations_lifetime_cost>=Glucose-Hemoglobin__Mass_volume__in_Blood\n", + "2199 immunizations_lifetime_cost>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*immunizations_lifetime\n", + "2200 immunizations_lifetime_cost>=MCHC__Mass_volume__by_Automated_count*e^immunizations_lifetime\n", + "2201 immunizations_lifetime_cost>=ceil(device_lifetime_length)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2202 immunizations_lifetime_cost>=1/2*Total_Cholesterol*immunizations_lifetime\n", + "2203 immunizations_lifetime_cost>=log(device_lifetime_length)/log(10)+Platelets____volume__in_Blood_by_Automated_count\n", + "2204 immunizations_lifetime_cost>=MCHC__Mass_volume__by_Automated_count*sqrt(Respiratory_rate)\n", + "2205 immunizations_lifetime_cost>=maximum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "2206 immunizations_lifetime_cost>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_MCHC__Mass_volume__by_Automated_count\n", + "2207 immunizations_lifetime_cost>=latitude^2/Hemoglobin__Mass_volume__in_Blood\n", + "2208 immunizations_lifetime_cost>=Systolic_Blood_Pressure+log(device_lifetime_length)\n", + "2209 immunizations_lifetime_cost>=log(device_lifetime_length)+mean_Systolic_Blood_Pressure\n", + "2210 immunizations_lifetime_cost>=2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "2211 immunizations_lifetime_cost>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+log(imaging_studies_lifetime)\n", + "2212 immunizations_lifetime_cost>=(immunizations_lifetime-1)*medications_lifetime\n", + "2213 immunizations_lifetime_cost>=(immunizations_lifetime-1)*Microalbumin_Creatinine_Ratio\n", + "2214 immunizations_lifetime_cost>=Protein__Mass_volume__in_Serum,Plasma*immunizations_lifetime^2\n", + "2215 immunizations_lifetime_cost>=immunizations_lifetime*sqrt(medications_lifetime_length)\n", + "2216 immunizations_lifetime_cost>=2*Estimated_Glomerular_Filtration_Rate-mean_High_Density_Lipoprotein_Cholesterol\n", + "2217 immunizations_lifetime_cost>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)^mean_Weight_difference__Mass_difference____pre_dialysis___post_dialysis\n", + "2218 immunizations_lifetime_cost>=minimum(Triglycerides,-Creatinine)\n", + "2219 immunizations_lifetime_cost>=(-Globulin__Mass_volume__in_Serum_by_calculation)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2220 immunizations_lifetime_cost>=e^Albumin__Mass_volume__in_Serum,Plasma*immunizations_lifetime\n", + "2221 immunizations_lifetime_cost>=maximum(Low_Density_Lipoprotein_Cholesterol,-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2222 immunizations_lifetime_cost>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*sqrt(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "2223 immunizations_lifetime_cost>=2*Estimated_Glomerular_Filtration_Rate-medications_lifetime\n", + "2224 immunizations_lifetime_cost>=2*Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost\n", + "2225 immunizations_lifetime_cost>=(1/DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2226 medications_lifetime<=1/4*encounters_count^2\n", + "2227 medications_lifetime<=medications_lifetime_cost\n", + "2228 medications_lifetime<=medications_lifetime_dispenses\n", + "2229 medications_lifetime<=Diastolic_Blood_Pressure^2/active_care_plans\n", + "2230 medications_lifetime<=(encounters_count-1)^active_conditions\n", + "2231 medications_lifetime<=ceil(active_condition_length^2)\n", + "2232 medications_lifetime<=10^encounters_lifetime_perc_covered*lifetime_condition_length\n", + "2233 medications_lifetime<=(e^MCH__Entitic_mass__by_Automated_count)^QOLS\n", + "2234 medications_lifetime<=(healthcare_coverage-1)/Protein__Mass_volume__in_Serum,Plasma\n", + "2235 medications_lifetime<=(Microalbumin_Creatinine_Ratio+1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "2236 medications_lifetime<=Triglycerides+e^DALY\n", + "2237 medications_lifetime<=(log(medications_lifetime_dispenses)/log(10))^mean_Microalbumin_Creatinine_Ratio\n", + "2238 medications_lifetime<=encounters_count^2/procedures_lifetime\n", + "2239 medications_lifetime<=maximum(age,e^active_conditions)\n", + "2240 medications_lifetime<=healthcare_coverage+lifetime_condition_length-1\n", + "2241 medications_lifetime<=encounters_count^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2242 medications_lifetime<=(DALY+1)*Heart_rate\n", + "2243 medications_lifetime<=lifetime_condition_length+procedures_lifetime_cost-1\n", + "2244 medications_lifetime<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/device_lifetime_length\n", + "2245 medications_lifetime<=e^DALY+mean_Sodium\n", + "2246 medications_lifetime<=(latitude-1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2247 medications_lifetime<=Body_Weight*active_care_plans^2\n", + "2248 medications_lifetime<=sqrt(Microalbumin_Creatinine_Ratio)*encounters_count\n", + "2249 medications_lifetime<=1/2*medications_lifetime_cost/immunizations_lifetime_cost\n", + "2250 medications_lifetime<=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*encounters_lifetime_payer_coverage\n", + "2251 medications_lifetime<=2*Microalbumin_Creatinine_Ratio*mean_Carbon_Dioxide\n", + "2252 medications_lifetime<=(Glucose^2)^mean_Creatinine\n", + "2253 medications_lifetime<=-Triglycerides+medications_lifetime_dispenses-1\n", + "2254 medications_lifetime<=2*medications_lifetime_dispenses/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2255 medications_lifetime<=minimum(healthcare_expenses,e^Total_score__MMSE_)\n", + "2256 medications_lifetime<=medications_lifetime_dispenses/immunizations_lifetime\n", + "2257 medications_lifetime<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+encounters_lifetime_payer_coverage\n", + "2258 medications_lifetime<=Glucose*active_care_plans^2\n", + "2259 medications_lifetime<=(1/medications_lifetime_perc_covered)^Microalbumin_Creatinine_Ratio\n", + "2260 medications_lifetime<=10^sqrt(Urea_Nitrogen)\n", + "2261 medications_lifetime<=1/2*Body_Mass_Index*mean_Chloride\n", + "2262 medications_lifetime<=active_care_plans^2*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2263 medications_lifetime<=2*medications_lifetime_dispenses/Albumin__Mass_volume__in_Serum,Plasma\n", + "2264 medications_lifetime<=2*encounters_count+encounters_lifetime_payer_coverage\n", + "2265 medications_lifetime<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*procedures_lifetime\n", + "2266 medications_lifetime<=Erythrocytes____volume__in_Blood_by_Automated_count*e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2267 medications_lifetime<=(1/2*Potassium)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2268 medications_lifetime<=(QOLS+1)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2269 medications_lifetime<=2*MCH__Entitic_mass__by_Automated_count+procedures_lifetime_cost\n", + "2270 medications_lifetime<=encounters_count^2/active_care_plans\n", + "2271 medications_lifetime<=encounters_count^2/lifetime_care_plans\n", + "2272 medications_lifetime<=1/2*Carbon_Dioxide*Protein__Mass_volume__in_Serum,Plasma\n", + "2273 medications_lifetime<=2*active_care_plans*encounters_count\n", + "2274 medications_lifetime<=e^Glomerular_filtration_rate_1_73_sq_M_predicted/Albumin__Mass_volume__in_Serum,Plasma\n", + "2275 medications_lifetime<=Potassium*e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2276 medications_lifetime<=(DALY+1)*QALY\n", + "2277 medications_lifetime<=10^active_care_plans+lifetime_condition_length\n", + "2278 medications_lifetime<=e^active_conditions/num_allergies\n", + "2279 medications_lifetime<=(log(healthcare_coverage)/log(10))^mean_Potassium\n", + "2280 medications_lifetime<=maximum(encounters_count,e^active_conditions)\n", + "2281 medications_lifetime<=2*lifetime_care_plans*mean_Sodium\n", + "2282 medications_lifetime<=Body_Mass_Index^2+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2283 medications_lifetime<=log(Urea_Nitrogen)^active_conditions\n", + "2284 medications_lifetime<=active_care_plan_length^2-Microalbumin_Creatinine_Ratio\n", + "2285 medications_lifetime<=(log(active_care_plan_length)/log(10))^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2286 medications_lifetime<=(Albumin__Mass_volume__in_Serum,Plasma-1)*encounters_count\n", + "2287 medications_lifetime<=2*encounters_count/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2288 medications_lifetime<=e^active_conditions/mean_Creatinine\n", + "2289 medications_lifetime<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "2290 medications_lifetime<=(encounters_lifetime_total_cost-1)/device_lifetime_length\n", + "2291 medications_lifetime<=10^encounters_count/medications_lifetime_dispenses\n", + "2292 medications_lifetime<=log(Albumin__Mass_volume__in_Serum,Plasma)^encounters_count\n", + "2293 medications_lifetime<=encounters_count^2/medications_active\n", + "2294 medications_lifetime<=encounters_count^2/Leukocytes____volume__in_Blood_by_Automated_count\n", + "2295 medications_lifetime<=encounters_count*log(Body_Weight)\n", + "2296 medications_lifetime<=log(encounters_count)^Potassium\n", + "2297 medications_lifetime<=2*Body_Height+procedures_lifetime_cost\n", + "2298 medications_lifetime<=minimum(healthcare_expenses,log(NT_proBNP))\n", + "2299 medications_lifetime<=10^QOLS*lifetime_condition_length\n", + "2300 medications_lifetime<=e^DALY+mean_Triglycerides\n", + "2301 medications_lifetime<=e^DALY*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2302 medications_lifetime<=2*Triglycerides+procedures_lifetime_cost\n", + "2303 medications_lifetime>=device_lifetime_length\n", + "2304 medications_lifetime>=medications_active\n", + "2305 medications_lifetime>=-Low_Density_Lipoprotein_Cholesterol+1/2*lifetime_care_plan_length\n", + "2306 medications_lifetime>=Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*DALY\n", + "2307 medications_lifetime>=(encounters_count+1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2308 medications_lifetime>=ceil(1/2*Estimated_Glomerular_Filtration_Rate)\n", + "2309 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-MCHC__Mass_volume__by_Automated_count\n", + "2310 medications_lifetime>=QALY+log(device_lifetime_length)\n", + "2311 medications_lifetime>=encounters_count*medications_lifetime_perc_covered^2\n", + "2312 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,2*latitude)\n", + "2313 medications_lifetime>=(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2314 medications_lifetime>=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "2315 medications_lifetime>=-MCH__Entitic_mass__by_Automated_count+encounters_count+1\n", + "2316 medications_lifetime>=-Low_Density_Lipoprotein_Cholesterol+encounters_count+1\n", + "2317 medications_lifetime>=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*imaging_studies_lifetime\n", + "2318 medications_lifetime>=mean_Glucose/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2319 medications_lifetime>=encounters_count-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "2320 medications_lifetime>=Respiratory_rate-healthcare_coverage+1\n", + "2321 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-Estimated_Glomerular_Filtration_Rate\n", + "2322 medications_lifetime>=encounters_count*log(num_allergies)\n", + "2323 medications_lifetime>=2*Body_Mass_Index-immunizations_lifetime_cost\n", + "2324 medications_lifetime>=-encounters_lifetime_payer_coverage+lifetime_conditions-1\n", + "2325 medications_lifetime>=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-High_Density_Lipoprotein_Cholesterol\n", + "2326 medications_lifetime>=-Respiratory_rate+2*lifetime_conditions\n", + "2327 medications_lifetime>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,lifetime_care_plans^2)\n", + "2328 medications_lifetime>=2*QALY-mean_Estimated_Glomerular_Filtration_Rate\n", + "2329 medications_lifetime>=log(immunizations_lifetime)*mean_Estimated_Glomerular_Filtration_Rate/log(10)\n", + "2330 medications_lifetime>=sqrt(encounters_lifetime_payer_coverage)-latitude\n", + "2331 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,1/2*immunizations_lifetime_cost)\n", + "2332 medications_lifetime>=sqrt(medications_lifetime_length)-Body_Weight\n", + "2333 medications_lifetime>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*encounters_count\n", + "2334 medications_lifetime>=-Estimated_Glomerular_Filtration_Rate+2*active_condition_length\n", + "2335 medications_lifetime>=Glomerular_filtration_rate_1_73_sq_M_predicted*log(device_lifetime_length)\n", + "2336 medications_lifetime>=sqrt(encounters_lifetime_payer_coverage)-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2337 medications_lifetime>=ceil(Estimated_Glomerular_Filtration_Rate)-lifetime_care_plan_length\n", + "2338 medications_lifetime>=medications_lifetime_dispenses-medications_lifetime_length\n", + "2339 medications_lifetime>=(-Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Creatinine\n", + "2340 medications_lifetime>=Microalbumin_Creatinine_Ratio*log(device_lifetime_length)\n", + "2341 medications_lifetime>=active_care_plans^2-Hemoglobin__Mass_volume__in_Blood\n", + "2342 medications_lifetime>=maximum(FEV1_FVC,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "2343 medications_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*ceil(device_lifetime_length)\n", + "2344 medications_lifetime>=2*Chloride-healthcare_coverage\n", + "2345 medications_lifetime>=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Glucose\n", + "2346 medications_lifetime>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*imaging_studies_lifetime\n", + "2347 medications_lifetime>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Hemoglobin_A1c_Hemoglobin_total_in_Blood-1\n", + "2348 medications_lifetime>=-Body_Height+1/2*lifetime_care_plan_length\n", + "2349 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,1/immunizations_lifetime)\n", + "2350 medications_lifetime>=log(medications_lifetime_dispenses)/log(10)-QOLS\n", + "2351 medications_lifetime>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+e^Creatinine\n", + "2352 medications_lifetime>=Microalbumin_Creatinine_Ratio-procedures_lifetime_cost+1\n", + "2353 medications_lifetime>=active_conditions^2-Sodium\n", + "2354 medications_lifetime>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*encounters_count\n", + "2355 medications_lifetime>=(1/2*medications_active)^mean_pH_of_Urine_by_Test_strip\n", + "2356 medications_lifetime>=High_Density_Lipoprotein_Cholesterol*log(device_lifetime_length)/log(10)\n", + "2357 medications_lifetime>=(procedures_lifetime-1)*mean_Creatinine\n", + "2358 medications_lifetime>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*lifetime_care_plan_length\n", + "2359 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2360 medications_lifetime>=procedures_lifetime^2-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2361 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,procedures_lifetime^2)\n", + "2362 medications_lifetime>=mean_Estimated_Glomerular_Filtration_Rate*num_allergies^2\n", + "2363 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-Heart_rate\n", + "2364 medications_lifetime>=-Systolic_Blood_Pressure+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "2365 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-High_Density_Lipoprotein_Cholesterol\n", + "2366 medications_lifetime>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-QALY\n", + "2367 medications_lifetime>=log(device_lifetime_length)*mean_Microalbumin_Creatinine_Ratio/log(10)\n", + "2368 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,sqrt(procedures_lifetime_cost))\n", + "2369 medications_lifetime>=2*DALY-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2370 medications_lifetime>=(Estimated_Glomerular_Filtration_Rate^2)^QOLS\n", + "2371 medications_lifetime_cost<=QOLS*encounters_lifetime_total_cost^2\n", + "2372 medications_lifetime_cost<=medications_lifetime^healthcare_expenses\n", + "2373 medications_lifetime_cost<=sqrt(Urea_Nitrogen)*healthcare_expenses\n", + "2374 medications_lifetime_cost<=10^Potassium*mean_Heart_rate\n", + "2375 medications_lifetime_cost<=log(lifetime_condition_length)^Heart_rate\n", + "2376 medications_lifetime_cost<=10^floor(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "2377 medications_lifetime_cost<=10^Albumin__Mass_volume__in_Serum,Plasma*Sodium\n", + "2378 medications_lifetime_cost<=10^Leukocytes____volume__in_Blood_by_Automated_count*mean_Chloride\n", + "2379 medications_lifetime_cost<=(Body_Weight^2)^active_care_plan_length\n", + "2380 medications_lifetime_cost<=e^Respiratory_rate+healthcare_expenses\n", + "2381 medications_lifetime_cost<=(active_care_plan_length-1)^Potassium\n", + "2382 medications_lifetime_cost<=latitude^4\n", + "2383 medications_lifetime_cost<=active_care_plans*e^Respiratory_rate\n", + "2384 medications_lifetime_cost<=sqrt(lifetime_condition_length)^Microalbumin_Creatinine_Ratio\n", + "2385 medications_lifetime_cost<=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Calcium\n", + "2386 medications_lifetime_cost<=(Systolic_Blood_Pressure-1)^medications_lifetime\n", + "2387 medications_lifetime_cost<=maximum(healthcare_coverage,medications_lifetime_length^2)\n", + "2388 medications_lifetime_cost<=e^Body_Mass_Index/encounters_lifetime_payer_coverage\n", + "2389 medications_lifetime_cost<=(active_condition_length-1)^mean_Potassium\n", + "2390 medications_lifetime_cost<=(lifetime_condition_length-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2391 medications_lifetime_cost<=10^medications_lifetime*Triglycerides\n", + "2392 medications_lifetime_cost<=Glucose^2*lifetime_condition_length\n", + "2393 medications_lifetime_cost<=10^Erythrocytes____volume__in_Blood_by_Automated_count*encounters_count\n", + "2394 medications_lifetime_cost<=Glucose^2*mean_Systolic_Blood_Pressure\n", + "2395 medications_lifetime_cost<=maximum(healthcare_expenses,1/num_allergies)\n", + "2396 medications_lifetime_cost<=(Platelets____volume__in_Blood_by_Automated_count-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2397 medications_lifetime_cost<=(Creatinine+1)*healthcare_expenses\n", + "2398 medications_lifetime_cost<=2*Estimated_Glomerular_Filtration_Rate*encounters_lifetime_total_cost\n", + "2399 medications_lifetime_cost<=floor(Albumin__Mass_volume__in_Serum,Plasma)*healthcare_expenses\n", + "2400 medications_lifetime_cost<=Albumin__Mass_volume__in_Serum,Plasma^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2401 medications_lifetime_cost<=(DALY-1)^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2402 medications_lifetime_cost<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2*medications_lifetime_length\n", + "2403 medications_lifetime_cost<=Carbon_Dioxide^2*encounters_lifetime_total_cost\n", + "2404 medications_lifetime_cost<=log(active_care_plan_length)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2405 medications_lifetime_cost<=Body_Height^2*MCH__Entitic_mass__by_Automated_count\n", + "2406 medications_lifetime_cost<=10^sqrt(latitude)\n", + "2407 medications_lifetime_cost<=sqrt(Respiratory_rate)*healthcare_expenses\n", + "2408 medications_lifetime_cost<=10^Respiratory_rate/healthcare_expenses\n", + "2409 medications_lifetime_cost<=Body_Height^2*latitude\n", + "2410 medications_lifetime_cost<=Low_Density_Lipoprotein_Cholesterol^2*Total_Cholesterol\n", + "2411 medications_lifetime_cost<=e^Hemoglobin__Mass_volume__in_Blood/encounters_lifetime_perc_covered\n", + "2412 medications_lifetime_cost<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*active_care_plan_length^2\n", + "2413 medications_lifetime_cost<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Body_Height^2\n", + "2414 medications_lifetime_cost<=10^Albumin__Mass_volume__in_Serum,Plasma*mean_Low_Density_Lipoprotein_Cholesterol\n", + "2415 medications_lifetime_cost<=Glucose*Sodium^2\n", + "2416 medications_lifetime_cost<=2*healthcare_expenses/medications_lifetime_perc_covered\n", + "2417 medications_lifetime_cost<=Total_Cholesterol^2*mean_Microalbumin_Creatinine_Ratio\n", + "2418 medications_lifetime_cost<=(2*Urea_Nitrogen)^active_conditions\n", + "2419 medications_lifetime_cost<=QALY^2*medications_lifetime_dispenses\n", + "2420 medications_lifetime_cost<=healthcare_expenses*log(encounters_lifetime_total_cost)/log(10)\n", + "2421 medications_lifetime_cost<=active_condition_length*e^Estimated_Glomerular_Filtration_Rate\n", + "2422 medications_lifetime_cost<=medications_lifetime_dispenses^2/num_allergies\n", + "2423 medications_lifetime_cost<=e^active_care_plans*healthcare_expenses\n", + "2424 medications_lifetime_cost<=maximum(healthcare_expenses,e^active_care_plan_length)\n", + "2425 medications_lifetime_cost<=sqrt(active_care_plan_length)^mean_Urea_Nitrogen\n", + "2426 medications_lifetime_cost<=Platelets____volume__in_Blood_by_Automated_count^2*active_conditions\n", + "2427 medications_lifetime_cost<=(log(Heart_rate)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2428 medications_lifetime_cost<=maximum(healthcare_expenses,e^active_condition_length)\n", + "2429 medications_lifetime_cost<=encounters_lifetime_payer_coverage^2/device_lifetime_length\n", + "2430 medications_lifetime_cost<=Bilirubin_total__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage^2\n", + "2431 medications_lifetime_cost<=log(encounters_lifetime_payer_coverage)^mean_Urea_Nitrogen\n", + "2432 medications_lifetime_cost<=Heart_rate*Sodium^2\n", + "2433 medications_lifetime_cost<=(Body_Height^2)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2434 medications_lifetime_cost<=2*Sodium*medications_lifetime_length\n", + "2435 medications_lifetime_cost<=Globulin__Mass_volume__in_Serum_by_calculation*e^Respiratory_rate\n", + "2436 medications_lifetime_cost<=medications_lifetime_dispenses^2-Estimated_Glomerular_Filtration_Rate\n", + "2437 medications_lifetime_cost<=medications_lifetime_dispenses^2-Microalbumin_Creatinine_Ratio\n", + "2438 medications_lifetime_cost<=(1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^mean_Potassium\n", + "2439 medications_lifetime_cost<=encounters_count*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2440 medications_lifetime_cost<=(log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/log(10))^MCH__Entitic_mass__by_Automated_count\n", + "2441 medications_lifetime_cost<=(log(Diastolic_Blood_Pressure)/log(10))^mean_Carbon_Dioxide\n", + "2442 medications_lifetime_cost<=Body_Height*Body_Weight^2\n", + "2443 medications_lifetime_cost>=device_lifetime_length\n", + "2444 medications_lifetime_cost>=1/2*Estimated_Glomerular_Filtration_Rate*medications_lifetime_length\n", + "2445 medications_lifetime_cost>=1/2*encounters_count*medications_lifetime_dispenses\n", + "2446 medications_lifetime_cost>=lifetime_condition_length^2*medications_lifetime_perc_covered\n", + "2447 medications_lifetime_cost>=Platelets____volume__in_Blood_by_Automated_count*sqrt(medications_lifetime_length)\n", + "2448 medications_lifetime_cost>=10^Albumin__Mass_volume__in_Serum,Plasma*Creatinine\n", + "2449 medications_lifetime_cost>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*encounters_lifetime_payer_coverage\n", + "2450 medications_lifetime_cost>=2*lifetime_care_plans*medications_lifetime_length\n", + "2451 medications_lifetime_cost>=2*encounters_lifetime_total_cost*medications_active\n", + "2452 medications_lifetime_cost>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*medications_lifetime_length\n", + "2453 medications_lifetime_cost>=medications_lifetime_dispenses^2/Carbon_Dioxide\n", + "2454 medications_lifetime_cost>=active_condition_length^2*medications_active\n", + "2455 medications_lifetime_cost>=sqrt(healthcare_expenses)*mean_Microalbumin_Creatinine_Ratio\n", + "2456 medications_lifetime_cost>=(active_conditions+1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2457 medications_lifetime_cost>=(Triglycerides^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2458 medications_lifetime_cost>=medications_active^active_care_plans\n", + "2459 medications_lifetime_cost>=device_lifetime_length^2*mean_Triglycerides\n", + "2460 medications_lifetime_cost>=healthcare_coverage*imaging_studies_lifetime^2\n", + "2461 medications_lifetime_cost>=medications_active^2*medications_lifetime_dispenses\n", + "2462 medications_lifetime_cost>=2*Triglycerides*medications_lifetime\n", + "2463 medications_lifetime_cost>=(-Globulin__Mass_volume__in_Serum_by_calculation)^active_conditions\n", + "2464 medications_lifetime_cost>=2*healthcare_expenses/Estimated_Glomerular_Filtration_Rate\n", + "2465 medications_lifetime_cost>=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^Respiratory_rate\n", + "2466 medications_lifetime_cost>=1/2*healthcare_coverage*medications_lifetime_perc_covered\n", + "2467 medications_lifetime_cost>=(1/2*Estimated_Glomerular_Filtration_Rate)^mean_Creatinine\n", + "2468 medications_lifetime_cost>=Total_Cholesterol+1/2*healthcare_coverage\n", + "2469 medications_lifetime_cost>=sqrt(active_condition_length)*medications_lifetime_length\n", + "2470 medications_lifetime_cost>=medications_lifetime_dispenses^2/active_care_plan_length\n", + "2471 medications_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol*e^lifetime_care_plans\n", + "2472 medications_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol^2+encounters_lifetime_total_cost\n", + "2473 medications_lifetime_cost>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*encounters_lifetime_total_cost\n", + "2474 medications_lifetime_cost>=active_care_plan_length^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "2475 medications_lifetime_cost>=2*healthcare_coverage*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2476 medications_lifetime_cost>=Microalbumin_Creatinine_Ratio^2+procedures_lifetime_cost\n", + "2477 medications_lifetime_cost>=(Globulin__Mass_volume__in_Serum_by_calculation^2)^mean_Potassium\n", + "2478 medications_lifetime_cost>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*encounters_lifetime_payer_coverage\n", + "2479 medications_lifetime_cost>=e^Respiratory_rate/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2480 medications_lifetime_cost>=High_Density_Lipoprotein_Cholesterol^2*device_lifetime_length\n", + "2481 medications_lifetime_cost>=(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Calcium\n", + "2482 medications_lifetime_cost>=(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^DALY\n", + "2483 medications_lifetime_cost>=encounters_lifetime_payer_coverage*log(medications_lifetime_length)\n", + "2484 medications_lifetime_cost>=e^num_allergies*medications_lifetime_dispenses\n", + "2485 medications_lifetime_cost>=10^active_care_plans*imaging_studies_lifetime\n", + "2486 medications_lifetime_cost>=10^active_care_plans+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2487 medications_lifetime_cost>=(2*medications_active)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2488 medications_lifetime_cost>=Body_Height^2-healthcare_expenses\n", + "2489 medications_lifetime_cost>=medications_lifetime_dispenses^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2490 medications_lifetime_cost>=medications_lifetime_dispenses^2/Microalbumin_Creatinine_Ratio\n", + "2491 medications_lifetime_cost>=sqrt(medications_lifetime)*medications_lifetime_length\n", + "2492 medications_lifetime_cost>=sqrt(device_lifetime_length)*procedures_lifetime_cost\n", + "2493 medications_lifetime_cost>=2*Estimated_Glomerular_Filtration_Rate*immunizations_lifetime_cost\n", + "2494 medications_lifetime_cost>=medications_lifetime^2/Creatinine\n", + "2495 medications_lifetime_cost>=e^Creatinine*medications_lifetime\n", + "2496 medications_lifetime_cost>=(medications_active^2)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2497 medications_lifetime_cost>=(e^Bilirubin_total__Mass_volume__in_Serum,Plasma)^Respiratory_rate\n", + "2498 medications_lifetime_cost>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2499 medications_lifetime_cost>=healthcare_coverage*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "2500 medications_lifetime_cost>=Body_Height^2*medications_lifetime_perc_covered\n", + "2501 medications_lifetime_cost>=Estimated_Glomerular_Filtration_Rate^2*Urea_Nitrogen\n", + "2502 medications_lifetime_cost>=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^Urea_Nitrogen\n", + "2503 medications_lifetime_cost>=(-Creatinine)^Calcium\n", + "2504 medications_lifetime_cost>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*medications_lifetime_length\n", + "2505 medications_lifetime_cost>=(log(Carbon_Dioxide)/log(10))^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2506 medications_lifetime_cost>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Potassium\n", + "2507 medications_lifetime_cost>=(Albumin__Mass_volume__in_Serum,Plasma^2)^Creatinine\n", + "2508 medications_lifetime_cost>=healthcare_coverage*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2509 medications_lifetime_perc_covered<=floor(Body_Mass_Index)/mean_Body_Mass_Index\n", + "2510 medications_lifetime_perc_covered<=healthcare_coverage\n", + "2511 medications_lifetime_perc_covered<=medications_lifetime\n", + "2512 medications_lifetime_perc_covered<=log(Body_Height)-num_allergies\n", + "2513 medications_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "2514 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*log(Low_Density_Lipoprotein_Cholesterol)/log(10)\n", + "2515 medications_lifetime_perc_covered<=sqrt(QOLS)+immunizations_lifetime\n", + "2516 medications_lifetime_perc_covered<=1/2*healthcare_coverage/encounters_lifetime_total_cost\n", + "2517 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", + "2518 medications_lifetime_perc_covered<=Albumin__Mass_volume__in_Serum,Plasma/device_lifetime_length\n", + "2519 medications_lifetime_perc_covered<=10^immunizations_lifetime/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2520 medications_lifetime_perc_covered<=2*Low_Density_Lipoprotein_Cholesterol/mean_Triglycerides\n", + "2521 medications_lifetime_perc_covered<=2*Calcium/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2522 medications_lifetime_perc_covered<=(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Body_Mass_Index\n", + "2523 medications_lifetime_perc_covered<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1)^Urea_Nitrogen\n", + "2524 medications_lifetime_perc_covered<=2*Chloride/Microalbumin_Creatinine_Ratio\n", + "2525 medications_lifetime_perc_covered<=lifetime_condition_length/mean_Glucose\n", + "2526 medications_lifetime_perc_covered<=maximum(Respiratory_rate,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2527 medications_lifetime_perc_covered<=1/2*healthcare_coverage/medications_lifetime_length\n", + "2528 medications_lifetime_perc_covered<=medications_lifetime^2/lifetime_care_plan_length\n", + "2529 medications_lifetime_perc_covered<=10^QOLS/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2530 medications_lifetime_perc_covered<=DALY^2/MCHC__Mass_volume__by_Automated_count\n", + "2531 medications_lifetime_perc_covered<=(1/immunizations_lifetime)^FEV1_FVC\n", + "2532 medications_lifetime_perc_covered<=lifetime_care_plans-num_allergies\n", + "2533 medications_lifetime_perc_covered<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^device_lifetime_length\n", + "2534 medications_lifetime_perc_covered<=active_care_plans/Creatinine\n", + "2535 medications_lifetime_perc_covered<=(log(Creatinine)/log(10))^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2536 medications_lifetime_perc_covered<=QOLS*log(latitude)\n", + "2537 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*log(lifetime_conditions)\n", + "2538 medications_lifetime_perc_covered<=1/2*active_conditions*encounters_lifetime_perc_covered\n", + "2539 medications_lifetime_perc_covered<=log(device_lifetime_length)^2/log(10)^2\n", + "2540 medications_lifetime_perc_covered<=1/lifetime_conditions+DALY\n", + "2541 medications_lifetime_perc_covered<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)/mean_Urea_Nitrogen\n", + "2542 medications_lifetime_perc_covered<=immunizations_lifetime^NT_proBNP\n", + "2543 medications_lifetime_perc_covered<=encounters_count/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2544 medications_lifetime_perc_covered<=log(Microalbumin_Creatinine_Ratio)/active_care_plans\n", + "2545 medications_lifetime_perc_covered<=(encounters_count-1)/Microalbumin_Creatinine_Ratio\n", + "2546 medications_lifetime_perc_covered<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Low_Density_Lipoprotein_Cholesterol\n", + "2547 medications_lifetime_perc_covered<=mean_Estimated_Glomerular_Filtration_Rate/device_lifetime_length\n", + "2548 medications_lifetime_perc_covered<=(Potassium-1)/mean_Creatinine\n", + "2549 medications_lifetime_perc_covered<=floor(DALY)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2550 medications_lifetime_perc_covered<=sqrt(encounters_lifetime_perc_covered)+procedures_lifetime\n", + "2551 medications_lifetime_perc_covered<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,2*Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2552 medications_lifetime_perc_covered<=log(active_care_plans)*mean_Creatinine\n", + "2553 medications_lifetime_perc_covered<=2*Heart_rate/mean_Systolic_Blood_Pressure\n", + "2554 medications_lifetime_perc_covered<=1/2*Body_Mass_Index/Urea_Nitrogen\n", + "2555 medications_lifetime_perc_covered<=10^Globulin__Mass_volume__in_Serum_by_calculation/Total_Cholesterol\n", + "2556 medications_lifetime_perc_covered<=1/2*Urea_Nitrogen/medications_active\n", + "2557 medications_lifetime_perc_covered<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/(log(10)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2558 medications_lifetime_perc_covered<=log(log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10))\n", + "2559 medications_lifetime_perc_covered<=1/2*Body_Weight/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2560 medications_lifetime_perc_covered<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Albumin__Mass_volume__in_Serum,Plasma\n", + "2561 medications_lifetime_perc_covered<=Diastolic_Blood_Pressure+longitude+1\n", + "2562 medications_lifetime_perc_covered<=2*healthcare_expenses/medications_lifetime_cost\n", + "2563 medications_lifetime_perc_covered<=Creatinine*sqrt(active_care_plans)\n", + "2564 medications_lifetime_perc_covered<=log(1/2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "2565 medications_lifetime_perc_covered<=Erythrocytes____volume__in_Blood_by_Automated_count*encounters_lifetime_perc_covered^2\n", + "2566 medications_lifetime_perc_covered<=(log(Microalbumin_Creatinine_Ratio)/log(10))^Potassium\n", + "2567 medications_lifetime_perc_covered<=Microalbumin_Creatinine_Ratio-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2568 medications_lifetime_perc_covered<=2*QOLS+device_lifetime_length\n", + "2569 medications_lifetime_perc_covered<=mean_Creatinine/QOLS\n", + "2570 medications_lifetime_perc_covered<=maximum(QOLS,log(active_care_plans))\n", + "2571 medications_lifetime_perc_covered<=maximum(Triglycerides,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2572 medications_lifetime_perc_covered<=e^active_care_plans/device_lifetime_length\n", + "2573 medications_lifetime_perc_covered<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2574 medications_lifetime_perc_covered<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions+1\n", + "2575 medications_lifetime_perc_covered<=lifetime_condition_length^2/medications_lifetime_length\n", + "2576 medications_lifetime_perc_covered<=Albumin__Mass_volume__in_Serum,Plasma/device_lifetime_length\n", + "2577 medications_lifetime_perc_covered<=2*encounters_lifetime_payer_coverage/encounters_lifetime_total_cost\n", + "2578 medications_lifetime_perc_covered<=10^encounters_lifetime_perc_covered/Albumin__Mass_volume__in_Serum,Plasma\n", + "2579 medications_lifetime_perc_covered<=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*encounters_lifetime_perc_covered\n", + "2580 medications_lifetime_perc_covered<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)+medications_active\n", + "2581 medications_lifetime_perc_covered<=maximum(Respiratory_rate,sqrt(encounters_lifetime_perc_covered))\n", + "2582 medications_lifetime_perc_covered<=-imaging_studies_lifetime+log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2583 medications_lifetime_perc_covered<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-active_care_plans\n", + "2584 medications_lifetime_perc_covered<=medications_active^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2585 medications_lifetime_perc_covered<=(log(Urea_Nitrogen)/log(10))^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2586 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*log(Glucose)/log(10)\n", + "2587 medications_lifetime_perc_covered<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/medications_lifetime_dispenses\n", + "2588 medications_lifetime_perc_covered<=e^Albumin__Mass_volume__in_Serum,Plasma/Glucose\n", + "2589 medications_lifetime_perc_covered<=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,Bilirubin_total__Mass_volume__in_Serum,Plasma^2)\n", + "2590 medications_lifetime_perc_covered<=ceil(Erythrocytes____volume__in_Blood_by_Automated_count)-mean_Creatinine\n", + "2591 medications_lifetime_perc_covered>=log(encounters_lifetime_total_cost)/log(10)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "2592 medications_lifetime_perc_covered>=-healthcare_coverage\n", + "2593 medications_lifetime_perc_covered>=-num_allergies\n", + "2594 medications_lifetime_perc_covered>=-device_lifetime_length\n", + "2595 medications_lifetime_perc_covered>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)*medications_active/log(10)\n", + "2596 medications_lifetime_perc_covered>=sqrt(num_allergies)/mean_Estimated_Glomerular_Filtration_Rate\n", + "2597 medications_lifetime_perc_covered>=(device_lifetime_length-1)/Protein__Mass_volume__in_Serum,Plasma\n", + "2598 medications_lifetime_perc_covered>=minimum(device_lifetime_length,log(immunizations_lifetime))\n", + "2599 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(device_lifetime_length)\n", + "2600 medications_lifetime_perc_covered>=sqrt(High_Density_Lipoprotein_Cholesterol)-Calcium\n", + "2601 medications_lifetime_perc_covered>=log(log(procedures_lifetime)/log(10))/log(10)\n", + "2602 medications_lifetime_perc_covered>=2*imaging_studies_lifetime/mean_Estimated_Glomerular_Filtration_Rate\n", + "2603 medications_lifetime_perc_covered>=DALY-mean_High_Density_Lipoprotein_Cholesterol\n", + "2604 medications_lifetime_perc_covered>=Body_Weight-Systolic_Blood_Pressure\n", + "2605 medications_lifetime_perc_covered>=log(encounters_lifetime_payer_coverage)/log(10)-Potassium\n", + "2606 medications_lifetime_perc_covered>=sqrt(procedures_lifetime)-mean_Calcium\n", + "2607 medications_lifetime_perc_covered>=Bilirubin_total__Mass_volume__in_Serum,Plasma-Creatinine\n", + "2608 medications_lifetime_perc_covered>=active_condition_length-age+1\n", + "2609 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2610 medications_lifetime_perc_covered>=sqrt(device_lifetime_length)/mean_Estimated_Glomerular_Filtration_Rate\n", + "2611 medications_lifetime_perc_covered>=maximum(DXA__T_score__Bone_density,-healthcare_expenses)\n", + "2612 medications_lifetime_perc_covered>=1/latitude-DALY\n", + "2613 medications_lifetime_perc_covered>=log(Potassium)/log(10)-DALY\n", + "2614 medications_lifetime_perc_covered>=-Body_Mass_Index+1/2*latitude\n", + "2615 medications_lifetime_perc_covered>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)-medications_lifetime\n", + "2616 medications_lifetime_perc_covered>=-active_care_plan_length+log(procedures_lifetime)\n", + "2617 medications_lifetime_perc_covered>=-Leukocytes____volume__in_Blood_by_Automated_count+active_care_plans-1\n", + "2618 medications_lifetime_perc_covered>=1/2*age-latitude\n", + "2619 medications_lifetime_perc_covered>=sqrt(lifetime_care_plans)-Globulin__Mass_volume__in_Serum_by_calculation\n", + "2620 medications_lifetime_perc_covered>=-Hemoglobin__Mass_volume__in_Blood+2*lifetime_care_plans\n", + "2621 medications_lifetime_perc_covered>=1/2*imaging_studies_lifetime-procedures_lifetime\n", + "2622 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(active_conditions)\n", + "2623 medications_lifetime_perc_covered>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-Calcium\n", + "2624 medications_lifetime_perc_covered>=ceil(active_condition_length)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "2625 medications_lifetime_perc_covered>=ceil(device_lifetime_length)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2626 medications_lifetime_perc_covered>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+log(encounters_lifetime_total_cost)\n", + "2627 medications_lifetime_perc_covered>=sqrt(High_Density_Lipoprotein_Cholesterol)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2628 medications_lifetime_perc_covered>=1/Protein__Mass_volume__in_Serum,Plasma-immunizations_lifetime\n", + "2629 medications_lifetime_perc_covered>=1/Estimated_Glomerular_Filtration_Rate-procedures_lifetime\n", + "2630 medications_lifetime_perc_covered>=2*imaging_studies_lifetime/Microalbumin_Creatinine_Ratio\n", + "2631 medications_lifetime_perc_covered>=Estimated_Glomerular_Filtration_Rate-Heart_rate-1\n", + "2632 medications_lifetime_perc_covered>=-Globulin__Mass_volume__in_Serum_by_calculation+immunizations_lifetime+1\n", + "2633 medications_lifetime_perc_covered>=log(immunizations_lifetime)/(Estimated_Glomerular_Filtration_Rate*log(10))\n", + "2634 medications_lifetime_perc_covered>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)^mean_Respiratory_rate\n", + "2635 medications_lifetime_perc_covered>=log(QOLS)^mean_Calcium\n", + "2636 medications_lifetime_perc_covered>=1/Respiratory_rate-immunizations_lifetime\n", + "2637 medications_lifetime_perc_covered>=(1/Systolic_Blood_Pressure)^Body_Height\n", + "2638 medications_lifetime_perc_covered>=1/Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime\n", + "2639 medications_lifetime_perc_covered>=-Potassium+ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2640 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2641 medications_lifetime_perc_covered>=log(Globulin__Mass_volume__in_Serum_by_calculation)/log(10)-QOLS\n", + "2642 medications_lifetime_perc_covered>=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma-encounters_lifetime_perc_covered\n", + "2643 medications_lifetime_perc_covered>=(1/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Total_Cholesterol\n", + "2644 medications_lifetime_perc_covered>=1/Erythrocytes____volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "2645 medications_lifetime_length<=sqrt(latitude)*medications_lifetime_dispenses\n", + "2646 medications_lifetime_length<=medications_lifetime_cost\n", + "2647 medications_lifetime_length<=(1/2*active_care_plan_length)^healthcare_expenses\n", + "2648 medications_lifetime_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*longitude^2\n", + "2649 medications_lifetime_length<=Heart_rate^2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2650 medications_lifetime_length<=2*Diastolic_Blood_Pressure*lifetime_care_plan_length\n", + "2651 medications_lifetime_length<=Triglycerides^2-medications_lifetime\n", + "2652 medications_lifetime_length<=sqrt(Total_Cholesterol)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2653 medications_lifetime_length<=log(Chloride)*medications_lifetime_dispenses\n", + "2654 medications_lifetime_length<=10^Erythrocytes____volume__in_Blood_by_Automated_count-encounters_count\n", + "2655 medications_lifetime_length<=e^Estimated_Glomerular_Filtration_Rate-mean_Low_Density_Lipoprotein_Cholesterol\n", + "2656 medications_lifetime_length<=active_care_plan_length*sqrt(healthcare_expenses)\n", + "2657 medications_lifetime_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*age^2\n", + "2658 medications_lifetime_length<=Protein__Mass_volume__in_Serum,Plasma*e^active_conditions\n", + "2659 medications_lifetime_length<=1/2*e^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2660 medications_lifetime_length<=1/2*encounters_lifetime_total_cost+healthcare_coverage\n", + "2661 medications_lifetime_length<=log(Systolic_Blood_Pressure)*medications_lifetime_dispenses\n", + "2662 medications_lifetime_length<=2*healthcare_expenses/Carbon_Dioxide\n", + "2663 medications_lifetime_length<=Hemoglobin__Mass_volume__in_Blood*sqrt(healthcare_expenses)\n", + "2664 medications_lifetime_length<=Body_Mass_Index^2*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2665 medications_lifetime_length<=(Carbon_Dioxide-1)^medications_lifetime\n", + "2666 medications_lifetime_length<=(Albumin__Mass_volume__in_Serum,Plasma+1)*medications_lifetime_dispenses\n", + "2667 medications_lifetime_length<=(MCV__Entitic_volume__by_Automated_count-1)*lifetime_care_plan_length\n", + "2668 medications_lifetime_length<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^Albumin__Mass_volume__in_Serum,Plasma\n", + "2669 medications_lifetime_length<=2*10^encounters_count\n", + "2670 medications_lifetime_length<=ceil(active_care_plan_length)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2671 medications_lifetime_length<=(Hemoglobin__Mass_volume__in_Blood+1)*encounters_lifetime_payer_coverage\n", + "2672 medications_lifetime_length<=(Protein__Mass_volume__in_Serum,Plasma-1)^active_care_plans\n", + "2673 medications_lifetime_length<=2*medications_lifetime_cost/lifetime_conditions\n", + "2674 medications_lifetime_length<=Body_Height^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2675 medications_lifetime_length<=mean_Chloride^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2676 medications_lifetime_length<=sqrt(lifetime_care_plan_length)*medications_lifetime_dispenses\n", + "2677 medications_lifetime_length<=MCV__Entitic_volume__by_Automated_count^2+encounters_lifetime_payer_coverage\n", + "2678 medications_lifetime_length<=e^active_care_plan_length/immunizations_lifetime_cost\n", + "2679 medications_lifetime_length<=(Glucose-1)*lifetime_condition_length\n", + "2680 medications_lifetime_length<=Chloride^active_care_plans\n", + "2681 medications_lifetime_length<=mean_Heart_rate*mean_Total_Cholesterol\n", + "2682 medications_lifetime_length<=sqrt(Body_Mass_Index)*medications_lifetime_dispenses\n", + "2683 medications_lifetime_length<=Body_Weight^2+encounters_lifetime_total_cost\n", + "2684 medications_lifetime_length<=(log(medications_lifetime_cost)/log(10))^mean_Microalbumin_Creatinine_Ratio\n", + "2685 medications_lifetime_length<=(active_care_plan_length+1)^lifetime_conditions\n", + "2686 medications_lifetime_length<=log(Body_Height)*medications_lifetime_dispenses\n", + "2687 medications_lifetime_length<=log(Carbon_Dioxide)^Calcium\n", + "2688 medications_lifetime_length<=(Calcium-1)*encounters_lifetime_total_cost\n", + "2689 medications_lifetime_length<=log(Triglycerides)*medications_lifetime_dispenses\n", + "2690 medications_lifetime_length<=lifetime_care_plan_length^2-MCV__Entitic_volume__by_Automated_count\n", + "2691 medications_lifetime_length<=Body_Height*Microalbumin_Creatinine_Ratio^2\n", + "2692 medications_lifetime_length<=(lifetime_care_plan_length+1)*Triglycerides\n", + "2693 medications_lifetime_length<=Low_Density_Lipoprotein_Cholesterol*Respiratory_rate^2\n", + "2694 medications_lifetime_length<=10^medications_lifetime-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2695 medications_lifetime_length<=2*High_Density_Lipoprotein_Cholesterol*Total_Cholesterol\n", + "2696 medications_lifetime_length<=10^Albumin__Mass_volume__in_Serum,Plasma*mean_Creatinine\n", + "2697 medications_lifetime_length<=e^Potassium*lifetime_condition_length\n", + "2698 medications_lifetime_length<=log(encounters_lifetime_total_cost)*medications_lifetime_dispenses\n", + "2699 medications_lifetime_length<=2*Globulin__Mass_volume__in_Serum_by_calculation*encounters_lifetime_payer_coverage\n", + "2700 medications_lifetime_length<=medications_lifetime_dispenses^2/DALY\n", + "2701 medications_lifetime_length<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "2702 medications_lifetime_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood+encounters_lifetime_total_cost\n", + "2703 medications_lifetime_length<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2*medications_lifetime\n", + "2704 medications_lifetime_length<=2*medications_lifetime_cost/Estimated_Glomerular_Filtration_Rate\n", + "2705 medications_lifetime_length<=(Leukocytes____volume__in_Blood_by_Automated_count^2)^mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "2706 medications_lifetime_length<=sqrt(healthcare_expenses)*mean_Carbon_Dioxide\n", + "2707 medications_lifetime_length<=2*healthcare_coverage/num_allergies\n", + "2708 medications_lifetime_length>=device_lifetime_length\n", + "2709 medications_lifetime_length>=High_Density_Lipoprotein_Cholesterol*e^num_allergies\n", + "2710 medications_lifetime_length>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)*medications_lifetime_dispenses\n", + "2711 medications_lifetime_length>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)*medications_lifetime_dispenses\n", + "2712 medications_lifetime_length>=log(lifetime_care_plan_length)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2713 medications_lifetime_length>=1/2*Total_Cholesterol*active_conditions\n", + "2714 medications_lifetime_length>=Microalbumin_Creatinine_Ratio*active_care_plans^2\n", + "2715 medications_lifetime_length>=log(Carbon_Dioxide)*medications_lifetime_dispenses\n", + "2716 medications_lifetime_length>=log(device_lifetime_length)*medications_lifetime_dispenses\n", + "2717 medications_lifetime_length>=(encounters_lifetime_payer_coverage+1)/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2718 medications_lifetime_length>=(device_lifetime_length+1)*Low_Density_Lipoprotein_Cholesterol\n", + "2719 medications_lifetime_length>=sqrt(medications_active)*medications_lifetime_dispenses\n", + "2720 medications_lifetime_length>=1/2*Microalbumin_Creatinine_Ratio*Urea_Nitrogen\n", + "2721 medications_lifetime_length>=imaging_studies_lifetime^Urea_Nitrogen\n", + "2722 medications_lifetime_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_conditions^2\n", + "2723 medications_lifetime_length>=sqrt(Hemoglobin__Mass_volume__in_Blood)*medications_lifetime_dispenses\n", + "2724 medications_lifetime_length>=latitude*medications_active\n", + "2725 medications_lifetime_length>=lifetime_condition_length*log(medications_active)\n", + "2726 medications_lifetime_length>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*medications_lifetime_dispenses\n", + "2727 medications_lifetime_length>=-active_condition_length+2*medications_lifetime_dispenses\n", + "2728 medications_lifetime_length>=2*medications_lifetime_dispenses/Creatinine\n", + "2729 medications_lifetime_length>=-encounters_lifetime_payer_coverage+2*medications_lifetime_dispenses\n", + "2730 medications_lifetime_length>=floor(Albumin__Mass_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "2731 medications_lifetime_length>=sqrt(Protein__Mass_volume__in_Serum,Plasma)*medications_lifetime\n", + "2732 medications_lifetime_length>=-immunizations_lifetime_cost+2*medications_lifetime_dispenses\n", + "2733 medications_lifetime_length>=Chloride*sqrt(Protein__Mass_volume__in_Serum,Plasma)\n", + "2734 medications_lifetime_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Calcium^2\n", + "2735 medications_lifetime_length>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_condition_length\n", + "2736 medications_lifetime_length>=medications_lifetime_dispenses^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2737 medications_lifetime_length>=active_care_plan_length^2+mean_Microalbumin_Creatinine_Ratio\n", + "2738 medications_lifetime_length>=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^lifetime_care_plans\n", + "2739 medications_lifetime_length>=sqrt(Calcium)*medications_lifetime_dispenses\n", + "2740 medications_lifetime_length>=immunizations_lifetime_cost^2/mean_Total_Cholesterol\n", + "2741 medications_lifetime_length>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2742 medications_lifetime_length>=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*device_lifetime_length\n", + "2743 medications_lifetime_length>=(1/2*DALY)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2744 medications_lifetime_length>=2*medications_lifetime_dispenses-procedures_lifetime_cost\n", + "2745 medications_lifetime_length>=2*Creatinine*medications_lifetime\n", + "2746 medications_lifetime_length>=sqrt(Low_Density_Lipoprotein_Cholesterol)*encounters_count\n", + "2747 medications_lifetime_length>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "2748 medications_lifetime_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*medications_lifetime_dispenses\n", + "2749 medications_lifetime_length>=(2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Creatinine\n", + "2750 medications_lifetime_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2*mean_Microalbumin_Creatinine_Ratio\n", + "2751 medications_lifetime_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*lifetime_conditions^2\n", + "2752 medications_lifetime_length>=QALY^2-Microalbumin_Creatinine_Ratio\n", + "2753 medications_lifetime_length>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1/2*encounters_lifetime_payer_coverage\n", + "2754 medications_lifetime_length>=High_Density_Lipoprotein_Cholesterol*medications_active^2\n", + "2755 medications_lifetime_length>=encounters_lifetime_payer_coverage*log(imaging_studies_lifetime)\n", + "2756 medications_lifetime_length>=-healthcare_coverage+2*immunizations_lifetime_cost\n", + "2757 medications_lifetime_length>=medications_lifetime^2/mean_Sodium\n", + "2758 medications_lifetime_length>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_lifetime\n", + "2759 medications_lifetime_length>=1/2*procedures_lifetime_cost/Microalbumin_Creatinine_Ratio\n", + "2760 medications_lifetime_length>=e^Creatinine*medications_active\n", + "2761 medications_lifetime_length>=2*Heart_rate/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2762 medications_lifetime_length>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Urea_Nitrogen\n", + "2763 medications_lifetime_length>=Low_Density_Lipoprotein_Cholesterol^2/active_condition_length\n", + "2764 medications_lifetime_dispenses<=Chloride^2/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2765 medications_lifetime_dispenses<=medications_lifetime_cost\n", + "2766 medications_lifetime_dispenses<=(active_care_plan_length-1)*age\n", + "2767 medications_lifetime_dispenses<=medications_lifetime+medications_lifetime_length\n", + "2768 medications_lifetime_dispenses<=encounters_lifetime_total_cost*sqrt(medications_lifetime)\n", + "2769 medications_lifetime_dispenses<=e^sqrt(mean_Heart_rate)\n", + "2770 medications_lifetime_dispenses<=(latitude-1)*lifetime_care_plan_length\n", + "2771 medications_lifetime_dispenses<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "2772 medications_lifetime_dispenses<=(2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^active_care_plans\n", + "2773 medications_lifetime_dispenses<=maximum(encounters_lifetime_total_cost,1/imaging_studies_lifetime)\n", + "2774 medications_lifetime_dispenses<=maximum(latitude,1/2*medications_lifetime_length)\n", + "2775 medications_lifetime_dispenses<=1/2*medications_lifetime_cost/lifetime_conditions\n", + "2776 medications_lifetime_dispenses<=Protein__Mass_volume__in_Serum,Plasma*QALY\n", + "2777 medications_lifetime_dispenses<=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^medications_lifetime\n", + "2778 medications_lifetime_dispenses<=1/2*10^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2779 medications_lifetime_dispenses<=medications_lifetime^2+healthcare_coverage\n", + "2780 medications_lifetime_dispenses<=(healthcare_expenses-1)/active_care_plan_length\n", + "2781 medications_lifetime_dispenses<=-Triglycerides+1/2*medications_lifetime_length\n", + "2782 medications_lifetime_dispenses<=-Microalbumin_Creatinine_Ratio+1/2*medications_lifetime_length\n", + "2783 medications_lifetime_dispenses<=Low_Density_Lipoprotein_Cholesterol^2*QOLS\n", + "2784 medications_lifetime_dispenses<=(healthcare_expenses-1)^mean_Creatinine\n", + "2785 medications_lifetime_dispenses<=1/2*Creatinine*medications_lifetime_length\n", + "2786 medications_lifetime_dispenses<=1/2*healthcare_coverage/num_allergies\n", + "2787 medications_lifetime_dispenses<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*medications_lifetime_length\n", + "2788 medications_lifetime_dispenses<=(Microalbumin_Creatinine_Ratio+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2789 medications_lifetime_dispenses<=2*healthcare_coverage/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2790 medications_lifetime_dispenses<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*encounters_count\n", + "2791 medications_lifetime_dispenses<=Heart_rate*active_care_plan_length\n", + "2792 medications_lifetime_dispenses<=Triglycerides^2/num_allergies\n", + "2793 medications_lifetime_dispenses<=Glucose^2/imaging_studies_lifetime\n", + "2794 medications_lifetime_dispenses<=log(age)^Microalbumin_Creatinine_Ratio\n", + "2795 medications_lifetime_dispenses<=Low_Density_Lipoprotein_Cholesterol^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2796 medications_lifetime_dispenses<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^mean_Respiratory_rate\n", + "2797 medications_lifetime_dispenses<=Body_Weight^2/mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "2798 medications_lifetime_dispenses<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^lifetime_conditions\n", + "2799 medications_lifetime_dispenses<=-mean_Triglycerides+1/2*medications_lifetime_length\n", + "2800 medications_lifetime_dispenses<=e^(mean_Estimated_Glomerular_Filtration_Rate-1)\n", + "2801 medications_lifetime_dispenses<=(active_care_plan_length-1)*Glucose\n", + "2802 medications_lifetime_dispenses<=2*Calcium*lifetime_condition_length\n", + "2803 medications_lifetime_dispenses<=Body_Weight^2*Creatinine\n", + "2804 medications_lifetime_dispenses<=sqrt(High_Density_Lipoprotein_Cholesterol)^mean_Potassium\n", + "2805 medications_lifetime_dispenses<=(log(Systolic_Blood_Pressure)/log(10))^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2806 medications_lifetime_dispenses<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Albumin__Mass_volume__in_Serum,Plasma\n", + "2807 medications_lifetime_dispenses<=maximum(encounters_lifetime_payer_coverage,1/device_lifetime_length)\n", + "2808 medications_lifetime_dispenses<=(1/Bilirubin_total__Mass_volume__in_Serum,Plasma)^Heart_rate\n", + "2809 medications_lifetime_dispenses<=Bilirubin_total__Mass_volume__in_Serum,Plasma*e^Calcium\n", + "2810 medications_lifetime_dispenses<=2*Total_Cholesterol*medications_lifetime\n", + "2811 medications_lifetime_dispenses<=e^Hemoglobin__Mass_volume__in_Blood/lifetime_care_plan_length\n", + "2812 medications_lifetime_dispenses<=Respiratory_rate*ceil(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "2813 medications_lifetime_dispenses<=QALY*sqrt(encounters_lifetime_total_cost)\n", + "2814 medications_lifetime_dispenses<=(Heart_rate-1)*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2815 medications_lifetime_dispenses<=medications_lifetime^2+Estimated_Glomerular_Filtration_Rate\n", + "2816 medications_lifetime_dispenses<=2*Chloride*Microalbumin_Creatinine_Ratio\n", + "2817 medications_lifetime_dispenses<=2*Respiratory_rate*Systolic_Blood_Pressure\n", + "2818 medications_lifetime_dispenses<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2/medications_lifetime_perc_covered\n", + "2819 medications_lifetime_dispenses<=(Carbon_Dioxide-1)*Body_Height\n", + "2820 medications_lifetime_dispenses<=2*medications_lifetime_length/Creatinine\n", + "2821 medications_lifetime_dispenses<=lifetime_condition_length^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2822 medications_lifetime_dispenses<=10^medications_lifetime+encounters_lifetime_total_cost\n", + "2823 medications_lifetime_dispenses<=QALY^2/QOLS\n", + "2824 medications_lifetime_dispenses<=(log(Diastolic_Blood_Pressure)/log(10))^Respiratory_rate\n", + "2825 medications_lifetime_dispenses<=2*medications_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2826 medications_lifetime_dispenses<=(10^Estimated_Glomerular_Filtration_Rate)^QOLS\n", + "2827 medications_lifetime_dispenses<=lifetime_care_plan_length^2+encounters_lifetime_payer_coverage\n", + "2828 medications_lifetime_dispenses<=age^2/immunizations_lifetime\n", + "2829 medications_lifetime_dispenses<=1/2*Body_Weight*lifetime_care_plan_length\n", + "2830 medications_lifetime_dispenses<=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*lifetime_care_plan_length\n", + "2831 medications_lifetime_dispenses<=e^active_care_plans*mean_Total_Cholesterol\n", + "2832 medications_lifetime_dispenses<=active_condition_length*e^Potassium\n", + "2833 medications_lifetime_dispenses<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*medications_lifetime_length/log(10)\n", + "2834 medications_lifetime_dispenses<=1/2*Heart_rate*lifetime_care_plan_length\n", + "2835 medications_lifetime_dispenses<=2*medications_lifetime_length/mean_Creatinine\n", + "2836 medications_lifetime_dispenses<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*procedures_lifetime_cost\n", + "2837 medications_lifetime_dispenses<=e^Respiratory_rate/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2838 medications_lifetime_dispenses<=10^medications_lifetime/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2839 medications_lifetime_dispenses<=log(Calcium)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2840 medications_lifetime_dispenses<=Body_Height*medications_lifetime^2\n", + "2841 medications_lifetime_dispenses<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*mean_Body_Mass_Index\n", + "2842 medications_lifetime_dispenses<=(1/2*Protein__Mass_volume__in_Serum,Plasma)^active_care_plans\n", + "2843 medications_lifetime_dispenses<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^active_condition_length\n", + "2844 medications_lifetime_dispenses>=device_lifetime_length\n", + "2845 medications_lifetime_dispenses>=medications_lifetime\n", + "2846 medications_lifetime_dispenses>=High_Density_Lipoprotein_Cholesterol+Low_Density_Lipoprotein_Cholesterol\n", + "2847 medications_lifetime_dispenses>=immunizations_lifetime_cost-mean_Total_Cholesterol+1\n", + "2848 medications_lifetime_dispenses>=ceil(medications_lifetime_length)/Urea_Nitrogen\n", + "2849 medications_lifetime_dispenses>=2*Total_Cholesterol/DALY\n", + "2850 medications_lifetime_dispenses>=Microalbumin_Creatinine_Ratio^2/mean_Systolic_Blood_Pressure\n", + "2851 medications_lifetime_dispenses>=Estimated_Glomerular_Filtration_Rate+2*Heart_rate\n", + "2852 medications_lifetime_dispenses>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_active^2\n", + "2853 medications_lifetime_dispenses>=2*medications_lifetime_length/Respiratory_rate\n", + "2854 medications_lifetime_dispenses>=ceil(medications_lifetime_length)/Calcium\n", + "2855 medications_lifetime_dispenses>=e^medications_active/Protein__Mass_volume__in_Serum,Plasma\n", + "2856 medications_lifetime_dispenses>=2*medications_lifetime_length/active_care_plan_length\n", + "2857 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Potassium\n", + "2858 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2859 medications_lifetime_dispenses>=(2*medications_lifetime_length)^encounters_lifetime_perc_covered\n", + "2860 medications_lifetime_dispenses>=Systolic_Blood_Pressure+floor(Protein__Mass_volume__in_Serum,Plasma)\n", + "2861 medications_lifetime_dispenses>=-Body_Weight+lifetime_care_plan_length+1\n", + "2862 medications_lifetime_dispenses>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*latitude\n", + "2863 medications_lifetime_dispenses>=(Albumin__Mass_volume__in_Serum,Plasma-1)^mean_Potassium\n", + "2864 medications_lifetime_dispenses>=(Globulin__Mass_volume__in_Serum_by_calculation-1)^lifetime_care_plans\n", + "2865 medications_lifetime_dispenses>=(num_allergies-1)*medications_lifetime\n", + "2866 medications_lifetime_dispenses>=2*medications_lifetime_length/mean_Estimated_Glomerular_Filtration_Rate\n", + "2867 medications_lifetime_dispenses>=Systolic_Blood_Pressure-healthcare_coverage+1\n", + "2868 medications_lifetime_dispenses>=1/2*active_care_plan_length*device_lifetime_length\n", + "2869 medications_lifetime_dispenses>=(medications_lifetime+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2870 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Albumin__Mass_volume__in_Serum,Plasma\n", + "2871 medications_lifetime_dispenses>=(Creatinine+1)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "2872 medications_lifetime_dispenses>=2*medications_lifetime_length/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2873 medications_lifetime_dispenses>=log(DALY)*mean_Microalbumin_Creatinine_Ratio\n", + "2874 medications_lifetime_dispenses>=-encounters_lifetime_total_cost+e^active_care_plans\n", + "2875 medications_lifetime_dispenses>=2*medications_lifetime_length/mean_Respiratory_rate\n", + "2876 medications_lifetime_dispenses>=sqrt(Microalbumin_Creatinine_Ratio)*active_condition_length\n", + "2877 medications_lifetime_dispenses>=(Microalbumin_Creatinine_Ratio+1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2878 medications_lifetime_dispenses>=10^medications_lifetime_perc_covered*mean_Microalbumin_Creatinine_Ratio\n", + "2879 medications_lifetime_dispenses>=lifetime_care_plan_length*log(medications_lifetime)/log(10)\n", + "2880 medications_lifetime_dispenses>=DALY*log(medications_lifetime_cost)/log(10)\n", + "2881 medications_lifetime_dispenses>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2882 medications_lifetime_dispenses>=sqrt(procedures_lifetime_cost)-Chloride\n", + "2883 medications_lifetime_dispenses>=1/2*procedures_lifetime_cost/mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2884 medications_lifetime_dispenses>=(-medications_active)^Potassium\n", + "2885 medications_lifetime_dispenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2-procedures_lifetime_cost\n", + "2886 medications_lifetime_dispenses>=2*active_conditions*device_lifetime_length\n", + "2887 medications_lifetime_dispenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/DALY\n", + "2888 medications_lifetime_dispenses>=DALY*medications_active^2\n", + "2889 medications_lifetime_dispenses>=sqrt(medications_active)^lifetime_care_plans\n", + "2890 medications_lifetime_dispenses>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2891 medications_lifetime_dispenses>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*age\n", + "2892 medications_lifetime_dispenses>=Leukocytes____volume__in_Blood_by_Automated_count*sqrt(medications_lifetime_length)\n", + "2893 medications_lifetime_dispenses>=log(device_lifetime_length)*medications_lifetime\n", + "2894 medications_lifetime_dispenses>=(2*device_lifetime_length)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2895 medications_lifetime_dispenses>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^mean_Calcium\n", + "2896 medications_lifetime_dispenses>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*lifetime_care_plan_length\n", + "2897 medications_lifetime_dispenses>=log(Leukocytes____volume__in_Blood_by_Automated_count)*medications_lifetime\n", + "2898 medications_lifetime_dispenses>=sqrt(medications_lifetime_length)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2899 medications_lifetime_dispenses>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_lifetime\n", + "2900 medications_lifetime_dispenses>=-Glucose+2*medications_lifetime\n", + "2901 medications_lifetime_dispenses>=medications_lifetime^2/lifetime_condition_length\n", + "2902 medications_lifetime_dispenses>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*Creatinine\n", + "2903 medications_lifetime_dispenses>=2*medications_lifetime_length/latitude\n", + "2904 medications_lifetime_dispenses>=1/2*medications_lifetime_length/encounters_count\n", + "2905 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost)-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2906 medications_lifetime_dispenses>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "2907 medications_lifetime_dispenses>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^mean_Creatinine\n", + "2908 medications_active<=active_conditions+immunizations_lifetime_cost-1\n", + "2909 medications_active<=active_conditions^2\n", + "2910 medications_active<=medications_lifetime\n", + "2911 medications_active<=ceil(10^DALY)\n", + "2912 medications_active<=medications_lifetime_length\n", + "2913 medications_active<=active_care_plans+immunizations_lifetime_cost+1\n", + "2914 medications_active<=encounters_lifetime_payer_coverage+immunizations_lifetime_cost\n", + "2915 medications_active<=floor(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2916 medications_active<=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "2917 medications_active<=floor(1/2*Microalbumin_Creatinine_Ratio)\n", + "2918 medications_active<=maximum(Triglycerides,floor(Erythrocytes____volume__in_Blood_by_Automated_count))\n", + "2919 medications_active<=Respiratory_rate-imaging_studies_lifetime\n", + "2920 medications_active<=maximum(Triglycerides,ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "2921 medications_active<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/age\n", + "2922 medications_active<=10^(10^device_lifetime_length)\n", + "2923 medications_active<=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-Urea_Nitrogen\n", + "2924 medications_active<=active_conditions+procedures_lifetime_cost-1\n", + "2925 medications_active<=2*Systolic_Blood_Pressure/device_lifetime_length\n", + "2926 medications_active<=Estimated_Glomerular_Filtration_Rate*QOLS\n", + "2927 medications_active<=minimum(Protein__Mass_volume__in_Serum,Plasma,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2928 medications_active<=sqrt(Body_Height)/immunizations_lifetime\n", + "2929 medications_active<=(QALY-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2930 medications_active<=ceil(Albumin__Mass_volume__in_Serum,Plasma)+immunizations_lifetime_cost\n", + "2931 medications_active<=(1/2*medications_lifetime_cost)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2932 medications_active<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "2933 medications_active<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/imaging_studies_lifetime\n", + "2934 medications_active<=-Creatinine+Respiratory_rate\n", + "2935 medications_active<=10^healthcare_coverage+procedures_lifetime\n", + "2936 medications_active<=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)+procedures_lifetime_cost\n", + "2937 medications_active<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions-1\n", + "2938 medications_active<=(medications_lifetime_dispenses-1)/Microalbumin_Creatinine_Ratio\n", + "2939 medications_active<=maximum(Triglycerides,10^healthcare_coverage)\n", + "2940 medications_active<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Globulin__Mass_volume__in_Serum_by_calculation\n", + "2941 medications_active<=e^Estimated_Glomerular_Filtration_Rate/medications_lifetime_length\n", + "2942 medications_active<=minimum(Estimated_Glomerular_Filtration_Rate,DALY-1)\n", + "2943 medications_active<=ceil(DALY)+procedures_lifetime_cost\n", + "2944 medications_active<=1/2*medications_lifetime_cost/encounters_lifetime_total_cost\n", + "2945 medications_active<=minimum(Protein__Mass_volume__in_Serum,Plasma,medications_lifetime-1)\n", + "2946 medications_active<=(encounters_count+1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2947 medications_active<=1/2*medications_lifetime_dispenses/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2948 medications_active<=Microalbumin_Creatinine_Ratio/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2949 medications_active<=(log(QALY)/log(10))^Potassium\n", + "2950 medications_active<=floor(Urea_Nitrogen)/num_allergies\n", + "2951 medications_active<=10^encounters_lifetime_perc_covered*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2952 medications_active<=Potassium+log(Microalbumin_Creatinine_Ratio)\n", + "2953 medications_active<=QALY^2/immunizations_lifetime_cost\n", + "2954 medications_active<=1/2*High_Density_Lipoprotein_Cholesterol-mean_Respiratory_rate\n", + "2955 medications_active<=QOLS*floor(Estimated_Glomerular_Filtration_Rate)\n", + "2956 medications_active<=Glucose-active_care_plan_length\n", + "2957 medications_active<=log(Body_Height)+procedures_lifetime_cost\n", + "2958 medications_active<=-Respiratory_rate+floor(Carbon_Dioxide)\n", + "2959 medications_active<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2960 medications_active<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_care_plan_length+1\n", + "2961 medications_active<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2962 medications_active<=(log(device_lifetime_length)/log(10))^encounters_lifetime_total_cost\n", + "2963 medications_active<=(Creatinine+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2964 medications_active<=10^immunizations_lifetime+DALY\n", + "2965 medications_active<=1/num_allergies+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2966 medications_active<=DALY^2+immunizations_lifetime_cost\n", + "2967 medications_active<=active_care_plan_length^2/Microalbumin_Creatinine_Ratio\n", + "2968 medications_active<=Calcium-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1\n", + "2969 medications_active<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^active_care_plans\n", + "2970 medications_active<=e^active_conditions/DALY\n", + "2971 medications_active<=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2972 medications_active<=Creatinine^2*encounters_count\n", + "2973 medications_active<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Diastolic_Blood_Pressure\n", + "2974 medications_active<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/mean_Heart_rate\n", + "2975 medications_active>=imaging_studies_lifetime\n", + "2976 medications_active>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2977 medications_active>=(lifetime_care_plans-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2978 medications_active>=floor(1/2*num_allergies)\n", + "2979 medications_active>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2980 medications_active>=encounters_lifetime_perc_covered^healthcare_coverage\n", + "2981 medications_active>=imaging_studies_lifetime^2-1\n", + "2982 medications_active>=active_care_plan_length+longitude\n", + "2983 medications_active>=-Potassium+active_care_plans\n", + "2984 medications_active>=-Urea_Nitrogen+2*active_care_plans\n", + "2985 medications_active>=floor(e^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2986 medications_active>=log(num_allergies)/log(10)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2987 medications_active>=-Creatinine+1/2*active_care_plans\n", + "2988 medications_active>=Albumin__Mass_volume__in_Serum,Plasma-Potassium+1\n", + "2989 medications_active>=-active_conditions+lifetime_conditions-1\n", + "2990 medications_active>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)*imaging_studies_lifetime\n", + "2991 medications_active>=active_conditions-encounters_count\n", + "2992 medications_active>=Albumin__Mass_volume__in_Serum,Plasma^2-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2993 medications_active>=-Low_Density_Lipoprotein_Cholesterol+active_condition_length\n", + "2994 medications_active>=-Glucose+active_condition_length+1\n", + "2995 medications_active>=-DALY+Globulin__Mass_volume__in_Serum_by_calculation\n", + "2996 medications_active>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)^2\n", + "2997 medications_active>=Albumin__Mass_volume__in_Serum,Plasma*log(device_lifetime_length)/log(10)\n", + "2998 medications_active>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1)*medications_lifetime_perc_covered\n", + "2999 medications_active>=1/2*active_care_plans*imaging_studies_lifetime\n", + "3000 medications_active>=maximum(immunizations_lifetime,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3001 medications_active>=minimum(num_allergies,ceil(medications_lifetime_perc_covered))\n", + "3002 medications_active>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "3003 medications_active>=-DALY+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3004 medications_active>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,ceil(medications_lifetime_perc_covered))\n", + "3005 medications_active>=-active_care_plans+floor(Creatinine)\n", + "3006 medications_active>=DALY-MCH__Entitic_mass__by_Automated_count-1\n", + "3007 medications_active>=floor(1/Creatinine)\n", + "3008 medications_active>=-Diastolic_Blood_Pressure+QALY+1\n", + "3009 medications_active>=sqrt(DALY)-Albumin__Mass_volume__in_Serum,Plasma\n", + "3010 medications_active>=-Heart_rate+Protein__Mass_volume__in_Serum,Plasma\n", + "3011 medications_active>=floor(log(mean_Creatinine))\n", + "3012 medications_active>=-MCHC__Mass_volume__by_Automated_count+1/2*QALY\n", + "3013 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_conditions\n", + "3014 medications_active>=-Creatinine+log(device_lifetime_length)\n", + "3015 medications_active>=-Erythrocytes____volume__in_Blood_by_Automated_count+e^immunizations_lifetime\n", + "3016 medications_active>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-Sodium+1\n", + "3017 medications_active>=2*Albumin__Mass_volume__in_Serum,Plasma-medications_lifetime\n", + "3018 medications_active>=lifetime_care_plans^2/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3019 medications_active>=(medications_lifetime_perc_covered-1)^DALY\n", + "3020 medications_active>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-Urea_Nitrogen\n", + "3021 medications_active>=2*sqrt(imaging_studies_lifetime)\n", + "3022 medications_active>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1/2*age\n", + "3023 medications_active>=active_care_plans^2-High_Density_Lipoprotein_Cholesterol\n", + "3024 medications_active>=-Respiratory_rate+active_conditions-1\n", + "3025 medications_active>=immunizations_lifetime^2-Microalbumin_Creatinine_Ratio\n", + "3026 medications_active>=(Creatinine-1)*imaging_studies_lifetime\n", + "3027 medications_active>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+floor(Body_Height)\n", + "3028 medications_active>=log(Total_Cholesterol)/log(10)-procedures_lifetime_cost\n", + "3029 medications_active>=(1/2*immunizations_lifetime)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3030 medications_active>=(1/2*procedures_lifetime)^Body_temperature\n", + "3031 medications_active>=sqrt(Heart_rate)-mean_Urea_Nitrogen\n", + "3032 medications_active>=2*active_care_plans-encounters_count\n", + "3033 medications_active>=-Heart_rate+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "3034 medications_active>=sqrt(Body_Weight)-Calcium\n", + "3035 medications_active>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+2*lifetime_care_plans\n", + "3036 medications_active>=1/2*lifetime_care_plan_length/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3037 medications_active>=active_conditions-mean_Respiratory_rate-1\n", + "3038 medications_active>=floor(Globulin__Mass_volume__in_Serum_by_calculation)-immunizations_lifetime_cost\n", + "3039 medications_active>=-active_condition_length+2*active_conditions\n", + "3040 medications_active>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,log(device_lifetime_length))\n", + "3041 medications_active>=-active_care_plans+log(device_lifetime_length)\n", + "3042 medications_active>=sqrt(device_lifetime_length)-mean_Potassium\n", + "3043 medications_active>=log(medications_lifetime)/log(10)-Creatinine\n", + "3044 medications_active>=10^encounters_lifetime_perc_covered-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3045 medications_active>=1/encounters_lifetime_perc_covered-Globulin__Mass_volume__in_Serum_by_calculation\n", + "3046 medications_active>=(-immunizations_lifetime)^healthcare_coverage\n", + "3047 medications_active>=Globulin__Mass_volume__in_Serum_by_calculation^2-Urea_Nitrogen\n", + "3048 medications_active>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-latitude-1\n", + "3049 medications_active>=log(medications_lifetime_length)/log(10)-medications_lifetime\n", + "3050 medications_active>=log(Microalbumin_Creatinine_Ratio)/log(10)-procedures_lifetime\n", + "3051 procedures_lifetime<=floor(active_condition_length)^2\n", + "3052 procedures_lifetime<=Calcium*DALY\n", + "3053 procedures_lifetime<=procedures_lifetime_cost\n", + "3054 procedures_lifetime<=Heart_rate-1\n", + "3055 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3056 procedures_lifetime<=Body_Mass_Index+Leukocytes____volume__in_Blood_by_Automated_count\n", + "3057 procedures_lifetime<=10^active_care_plans\n", + "3058 procedures_lifetime<=active_conditions^2\n", + "3059 procedures_lifetime<=(lifetime_care_plan_length-1)/device_lifetime_length\n", + "3060 procedures_lifetime<=10^medications_lifetime\n", + "3061 procedures_lifetime<=medications_lifetime+1\n", + "3062 procedures_lifetime<=1/2*procedures_lifetime_cost/Total_Cholesterol\n", + "3063 procedures_lifetime<=(healthcare_expenses-1)^QOLS\n", + "3064 procedures_lifetime<=DALY+Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3065 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "3066 procedures_lifetime<=1/2*procedures_lifetime_cost/Body_Height\n", + "3067 procedures_lifetime<=maximum(Sodium,log(Triglycerides)/log(10))\n", + "3068 procedures_lifetime<=-MCV__Entitic_volume__by_Automated_count+1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "3069 procedures_lifetime<=1/2*procedures_lifetime_cost/mean_Total_Cholesterol\n", + "3070 procedures_lifetime<=(active_care_plans+1)/num_allergies\n", + "3071 procedures_lifetime<=maximum(Heart_rate,1/immunizations_lifetime)\n", + "3072 procedures_lifetime<=healthcare_coverage+medications_active\n", + "3073 procedures_lifetime<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/imaging_studies_lifetime\n", + "3074 procedures_lifetime<=sqrt(procedures_lifetime_cost)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "3075 procedures_lifetime<=(10^Microalbumin_Creatinine_Ratio)^QOLS\n", + "3076 procedures_lifetime<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*ceil(Potassium)\n", + "3077 procedures_lifetime<=maximum(Triglycerides,ceil(Potassium))\n", + "3078 procedures_lifetime<=floor(DALY)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3079 procedures_lifetime<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+encounters_count-1\n", + "3080 procedures_lifetime<=maximum(lifetime_care_plans,DALY^2)\n", + "3081 procedures_lifetime<=(lifetime_condition_length^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3082 procedures_lifetime<=maximum(Triglycerides,sqrt(Systolic_Blood_Pressure))\n", + "3083 procedures_lifetime<=encounters_count-medications_active-1\n", + "3084 procedures_lifetime<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+immunizations_lifetime_cost\n", + "3085 procedures_lifetime<=sqrt(active_care_plan_length)+immunizations_lifetime_cost\n", + "3086 procedures_lifetime<=2*10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3087 procedures_lifetime<=medications_lifetime/device_lifetime_length\n", + "3088 procedures_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "3089 procedures_lifetime<=(log(lifetime_care_plans)/log(10))^longitude\n", + "3090 procedures_lifetime<=10^immunizations_lifetime_cost+Globulin__Mass_volume__in_Serum_by_calculation\n", + "3091 procedures_lifetime<=maximum(Triglycerides,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3092 procedures_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3093 procedures_lifetime<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/num_allergies)\n", + "3094 procedures_lifetime<=Urea_Nitrogen^2/device_lifetime_length\n", + "3095 procedures_lifetime<=10^healthcare_coverage+1\n", + "3096 procedures_lifetime<=10^immunizations_lifetime_cost+Creatinine\n", + "3097 procedures_lifetime<=maximum(Triglycerides,ceil(Globulin__Mass_volume__in_Serum_by_calculation))\n", + "3098 procedures_lifetime<=log(device_lifetime_length)^2\n", + "3099 procedures_lifetime<=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/device_lifetime_length\n", + "3100 procedures_lifetime<=maximum(medications_active,1/num_allergies)\n", + "3101 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "3102 procedures_lifetime<=minimum(healthcare_expenses,log(Body_temperature))\n", + "3103 procedures_lifetime<=maximum(Heart_rate,1/imaging_studies_lifetime)\n", + "3104 procedures_lifetime<=(log(encounters_count)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "3105 procedures_lifetime<=1/2*encounters_lifetime_total_cost/lifetime_care_plan_length\n", + "3106 procedures_lifetime<=maximum(Triglycerides,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "3107 procedures_lifetime<=maximum(Estimated_Glomerular_Filtration_Rate,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "3108 procedures_lifetime>=log(log(procedures_lifetime_cost))/log(10)\n", + "3109 procedures_lifetime>=-healthcare_coverage+medications_active-1\n", + "3110 procedures_lifetime>=-num_allergies\n", + "3111 procedures_lifetime>=-device_lifetime_length\n", + "3112 procedures_lifetime>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+imaging_studies_lifetime\n", + "3113 procedures_lifetime>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-active_care_plan_length-1\n", + "3114 procedures_lifetime>=minimum(procedures_lifetime_cost,QOLS)\n", + "3115 procedures_lifetime>=active_care_plans-active_conditions\n", + "3116 procedures_lifetime>=-active_care_plans+num_allergies\n", + "3117 procedures_lifetime>=-medications_lifetime+num_allergies\n", + "3118 procedures_lifetime>=-Diastolic_Blood_Pressure+ceil(active_care_plan_length)\n", + "3119 procedures_lifetime>=minimum(num_allergies,immunizations_lifetime)\n", + "3120 procedures_lifetime>=sqrt(procedures_lifetime_cost)/MCH__Entitic_mass__by_Automated_count\n", + "3121 procedures_lifetime>=1/2*medications_lifetime-medications_lifetime_length\n", + "3122 procedures_lifetime>=-Respiratory_rate+active_conditions\n", + "3123 procedures_lifetime>=mean_Weight_difference__Mass_difference____pre_dialysis___post_dialysis^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3124 procedures_lifetime>=sqrt(procedures_lifetime_cost)/Glucose\n", + "3125 procedures_lifetime>=1/2*Diastolic_Blood_Pressure-High_Density_Lipoprotein_Cholesterol\n", + "3126 procedures_lifetime>=-Glucose+ceil(active_condition_length)\n", + "3127 procedures_lifetime>=Globulin__Mass_volume__in_Serum_by_calculation*floor(QOLS)\n", + "3128 procedures_lifetime>=-Carbon_Dioxide+1/2*device_lifetime_length\n", + "3129 procedures_lifetime>=floor(Creatinine)*imaging_studies_lifetime\n", + "3130 procedures_lifetime>=2*procedures_lifetime_cost/healthcare_expenses\n", + "3131 procedures_lifetime>=-Body_Height+2*Estimated_Glomerular_Filtration_Rate\n", + "3132 procedures_lifetime>=-Microalbumin_Creatinine_Ratio+ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3133 procedures_lifetime>=2*imaging_studies_lifetime-2\n", + "3134 procedures_lifetime>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-encounters_lifetime_payer_coverage\n", + "3135 procedures_lifetime>=imaging_studies_lifetime-immunizations_lifetime\n", + "3136 procedures_lifetime>=log(Microalbumin_Creatinine_Ratio)/log(10)-medications_active\n", + "3137 procedures_lifetime>=-active_conditions+immunizations_lifetime\n", + "3138 procedures_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_conditions\n", + "3139 procedures_lifetime>=floor(log(medications_active)/log(10))\n", + "3140 procedures_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost\n", + "3141 procedures_lifetime>=10^medications_lifetime_perc_covered-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3142 procedures_lifetime>=sqrt(procedures_lifetime_cost)/Protein__Mass_volume__in_Serum,Plasma\n", + "3143 procedures_lifetime>=floor(Body_Mass_Index)-mean_High_Density_Lipoprotein_Cholesterol\n", + "3144 procedures_lifetime>=-Heart_rate+Protein__Mass_volume__in_Serum,Plasma\n", + "3145 procedures_lifetime>=-Low_Density_Lipoprotein_Cholesterol+Protein__Mass_volume__in_Serum,Plasma\n", + "3146 procedures_lifetime>=Specific_gravity_of_Urine_by_Test_strip^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3147 procedures_lifetime>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3148 procedures_lifetime>=Erythrocytes____volume__in_Blood_by_Automated_count-Leukocytes____volume__in_Blood_by_Automated_count\n", + "3149 procedures_lifetime>=immunizations_lifetime-2\n", + "3150 procedures_lifetime>=1/2*Microalbumin_Creatinine_Ratio-mean_Triglycerides\n", + "3151 procedures_lifetime>=minimum(procedures_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "3152 procedures_lifetime>=floor(log(lifetime_care_plans)/log(10))\n", + "3153 procedures_lifetime>=floor(1/active_conditions)\n", + "3154 procedures_lifetime>=sqrt(procedures_lifetime_cost)/mean_Low_Density_Lipoprotein_Cholesterol\n", + "3155 procedures_lifetime>=-Low_Density_Lipoprotein_Cholesterol+1/2*Systolic_Blood_Pressure\n", + "3156 procedures_lifetime>=Albumin__Mass_volume__in_Serum,Plasma*log(immunizations_lifetime)\n", + "3157 procedures_lifetime>=Albumin__Mass_volume__in_Serum,Plasma-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "3158 procedures_lifetime>=-Heart_rate+floor(High_Density_Lipoprotein_Cholesterol)\n", + "3159 procedures_lifetime>=Glomerular_filtration_rate_1_73_sq_M_predicted-lifetime_condition_length-1\n", + "3160 procedures_lifetime>=(10^DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3161 procedures_lifetime>=sqrt(Protein__Mass_volume__in_Serum,Plasma)-encounters_count\n", + "3162 procedures_lifetime>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "3163 procedures_lifetime>=imaging_studies_lifetime*log(Estimated_Glomerular_Filtration_Rate)\n", + "3164 procedures_lifetime_cost<=healthcare_expenses*log(Diastolic_Blood_Pressure)/log(10)\n", + "3165 procedures_lifetime_cost<=e^(2*lifetime_condition_length)\n", + "3166 procedures_lifetime_cost<=floor(Calcium)^encounters_count\n", + "3167 procedures_lifetime_cost<=encounters_count^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3168 procedures_lifetime_cost<=log(Respiratory_rate)^mean_Respiratory_rate\n", + "3169 procedures_lifetime_cost<=(healthcare_expenses-1)/device_lifetime_length\n", + "3170 procedures_lifetime_cost<=(1/2*Leukocytes____volume__in_Blood_by_Automated_count)^mean_Respiratory_rate\n", + "3171 procedures_lifetime_cost<=log(Systolic_Blood_Pressure)^mean_Microalbumin_Creatinine_Ratio\n", + "3172 procedures_lifetime_cost<=Body_Height^2*procedures_lifetime\n", + "3173 procedures_lifetime_cost<=(log(medications_lifetime_dispenses)/log(10))^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3174 procedures_lifetime_cost<=High_Density_Lipoprotein_Cholesterol^2/num_allergies\n", + "3175 procedures_lifetime_cost<=10^Potassium*Globulin__Mass_volume__in_Serum_by_calculation\n", + "3176 procedures_lifetime_cost<=maximum(medications_lifetime_cost,2*healthcare_coverage)\n", + "3177 procedures_lifetime_cost<=healthcare_coverage+1/2*healthcare_expenses\n", + "3178 procedures_lifetime_cost<=e^(10^procedures_lifetime)\n", + "3179 procedures_lifetime_cost<=(2*age)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3180 procedures_lifetime_cost<=10^Potassium*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3181 procedures_lifetime_cost<=(Low_Density_Lipoprotein_Cholesterol^2)^procedures_lifetime\n", + "3182 procedures_lifetime_cost<=Triglycerides*e^active_conditions\n", + "3183 procedures_lifetime_cost<=(healthcare_coverage-1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3184 procedures_lifetime_cost<=floor(Globulin__Mass_volume__in_Serum_by_calculation)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3185 procedures_lifetime_cost<=10^active_care_plans*mean_Sodium\n", + "3186 procedures_lifetime_cost<=Globulin__Mass_volume__in_Serum_by_calculation^2*medications_lifetime_length\n", + "3187 procedures_lifetime_cost<=(MCH__Entitic_mass__by_Automated_count^2)^procedures_lifetime\n", + "3188 procedures_lifetime_cost<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)^mean_Carbon_Dioxide\n", + "3189 procedures_lifetime_cost<=(active_care_plans+1)^Calcium\n", + "3190 procedures_lifetime_cost<=(Protein__Mass_volume__in_Serum,Plasma^2)^procedures_lifetime\n", + "3191 procedures_lifetime_cost<=(Leukocytes____volume__in_Blood_by_Automated_count-1)^encounters_count\n", + "3192 procedures_lifetime_cost<=(NT_proBNP-1)^procedures_lifetime\n", + "3193 procedures_lifetime_cost<=floor(Potassium)^Urea_Nitrogen\n", + "3194 procedures_lifetime_cost<=(e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3195 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", + "3196 procedures_lifetime_cost<=(log(active_care_plans)/log(10))^longitude\n", + "3197 procedures_lifetime_cost<=lifetime_condition_length^2-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3198 procedures_lifetime_cost<=(e^procedures_lifetime)^Urea_Nitrogen\n", + "3199 procedures_lifetime_cost<=log(lifetime_care_plan_length)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3200 procedures_lifetime_cost<=MCV__Entitic_volume__by_Automated_count^2+medications_lifetime_cost\n", + "3201 procedures_lifetime_cost<=active_care_plan_length^2/num_allergies\n", + "3202 procedures_lifetime_cost<=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "3203 procedures_lifetime_cost<=e^Calcium*mean_Low_Density_Lipoprotein_Cholesterol\n", + "3204 procedures_lifetime_cost<=2*mean_Glomerular_filtration_rate_1_73_sq_M_predicted*medications_lifetime_dispenses\n", + "3205 procedures_lifetime_cost<=(Glucose^2)^procedures_lifetime\n", + "3206 procedures_lifetime_cost<=(log(medications_lifetime_length)/log(10))^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3207 procedures_lifetime_cost<=10^active_conditions*Heart_rate\n", + "3208 procedures_lifetime_cost<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3209 procedures_lifetime_cost<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*e^procedures_lifetime\n", + "3210 procedures_lifetime_cost<=10^healthcare_coverage*medications_lifetime_length\n", + "3211 procedures_lifetime_cost<=(log(Carbon_Dioxide)/log(10))^QALY\n", + "3212 procedures_lifetime_cost<=e^Carbon_Dioxide/encounters_lifetime_payer_coverage\n", + "3213 procedures_lifetime_cost<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Heart_rate\n", + "3214 procedures_lifetime_cost<=(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^lifetime_conditions\n", + "3215 procedures_lifetime_cost<=(log(healthcare_coverage)/log(10))^Urea_Nitrogen\n", + "3216 procedures_lifetime_cost<=(log(healthcare_coverage)/log(10))^Calcium\n", + "3217 procedures_lifetime_cost<=(e^Diastolic_Blood_Pressure)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3218 procedures_lifetime_cost<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^mean_Urea_Nitrogen\n", + "3219 procedures_lifetime_cost<=sqrt(Microalbumin_Creatinine_Ratio)^active_conditions\n", + "3220 procedures_lifetime_cost<=(log(device_lifetime_length)/log(10))^Hemoglobin__Mass_volume__in_Blood\n", + "3221 procedures_lifetime_cost<=(log(device_lifetime_length)/log(10))^lifetime_care_plan_length\n", + "3222 procedures_lifetime_cost<=10^encounters_count*QOLS\n", + "3223 procedures_lifetime_cost<=encounters_lifetime_total_cost^2/medications_lifetime\n", + "3224 procedures_lifetime_cost<=(QOLS+1)*healthcare_expenses\n", + "3225 procedures_lifetime_cost<=(e^Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)^QOLS\n", + "3226 procedures_lifetime_cost<=(2*Body_temperature)^procedures_lifetime\n", + "3227 procedures_lifetime_cost<=maximum(healthcare_coverage,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3228 procedures_lifetime_cost<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Urea_Nitrogen\n", + "3229 procedures_lifetime_cost<=(2*pH_of_Urine_by_Test_strip)^procedures_lifetime\n", + "3230 procedures_lifetime_cost>=procedures_lifetime\n", + "3231 procedures_lifetime_cost>=2*Total_Cholesterol*procedures_lifetime\n", + "3232 procedures_lifetime_cost>=(lifetime_care_plan_length+1)*procedures_lifetime\n", + "3233 procedures_lifetime_cost>=2*latitude*procedures_lifetime\n", + "3234 procedures_lifetime_cost>=2*Body_Height*procedures_lifetime\n", + "3235 procedures_lifetime_cost>=2*Triglycerides*procedures_lifetime\n", + "3236 procedures_lifetime_cost>=Urea_Nitrogen^2*procedures_lifetime\n", + "3237 procedures_lifetime_cost>=(Platelets____volume__in_Blood_by_Automated_count+1)*procedures_lifetime\n", + "3238 procedures_lifetime_cost>=2*Sodium*procedures_lifetime\n", + "3239 procedures_lifetime_cost>=2*mean_Heart_rate*num_allergies\n", + "3240 procedures_lifetime_cost>=log(procedures_lifetime)*medications_lifetime_dispenses/log(10)\n", + "3241 procedures_lifetime_cost>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+e^medications_active\n", + "3242 procedures_lifetime_cost>=2*mean_Total_Cholesterol*procedures_lifetime\n", + "3243 procedures_lifetime_cost>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*lifetime_care_plan_length\n", + "3244 procedures_lifetime_cost>=-encounters_lifetime_payer_coverage+2*immunizations_lifetime_cost\n", + "3245 procedures_lifetime_cost>=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*lifetime_care_plan_length\n", + "3246 procedures_lifetime_cost>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*Body_Weight\n", + "3247 procedures_lifetime_cost>=(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1)*procedures_lifetime\n", + "3248 procedures_lifetime_cost>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3249 procedures_lifetime_cost>=(1/2*device_lifetime_length)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3250 procedures_lifetime_cost>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Urea_Nitrogen\n", + "3251 procedures_lifetime_cost>=(FEV1_FVC+1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3252 procedures_lifetime_cost>=Potassium*procedures_lifetime^2\n", + "3253 procedures_lifetime_cost>=1/2*healthcare_coverage-healthcare_expenses\n", + "3254 procedures_lifetime_cost>=(-active_care_plans)^Potassium\n", + "3255 procedures_lifetime_cost>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*Chloride\n", + "3256 procedures_lifetime_cost>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-encounters_lifetime_payer_coverage\n", + "3257 procedures_lifetime_cost>=10^Potassium-healthcare_expenses\n", + "3258 procedures_lifetime_cost>=log(Protein__Mass_volume__in_Urine_by_Test_strip)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3259 procedures_lifetime_cost>=10^Globulin__Mass_volume__in_Serum_by_calculation-encounters_lifetime_total_cost\n", + "3260 procedures_lifetime_cost>=(-device_lifetime_length)^Potassium\n", + "3261 procedures_lifetime_cost>=Body_Weight*sqrt(device_lifetime_length)\n", + "3262 procedures_lifetime_cost>=(imaging_studies_lifetime-1)*encounters_lifetime_total_cost\n", + "3263 procedures_lifetime_cost>=log(imaging_studies_lifetime)*medications_lifetime_length\n", + "3264 procedures_lifetime_cost>=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/healthcare_coverage\n", + "3265 procedures_lifetime_cost>=(-medications_active)^Potassium\n", + "3266 procedures_lifetime_cost>=(1/2*procedures_lifetime)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3267 procedures_lifetime_cost>=e^Leukocytes____volume__in_Blood_by_Automated_count-medications_lifetime_cost\n", + "3268 procedures_lifetime_cost>=MCV__Entitic_volume__by_Automated_count*procedures_lifetime^2\n", + "3269 procedures_lifetime_cost>=(-Erythrocytes____volume__in_Blood_by_Automated_count)^active_care_plans\n", + "3270 procedures_lifetime_cost>=(2*DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3271 QOLS<=active_care_plans\n", + "3272 QOLS<=active_conditions\n", + "3273 QOLS<=mean_QOLS\n", + "3274 QOLS>=mean_QOLS\n", + "3275 QALY<=mean_QALY\n", + "3276 QALY>=mean_QALY\n", + "3277 DALY<=mean_DALY\n", + "3278 DALY>=imaging_studies_lifetime\n", + "3279 DALY>=mean_DALY\n", + "3280 Respiratory_rate<=healthcare_expenses\n", + "3281 Respiratory_rate<=ceil(mean_Respiratory_rate+1)\n", + "3282 Respiratory_rate<=mean_Respiratory_rate^active_conditions\n", + "3283 Respiratory_rate<=Potassium^2\n", + "3284 Respiratory_rate<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3285 Respiratory_rate<=Creatinine+mean_Respiratory_rate\n", + "3286 Respiratory_rate<=healthcare_coverage+mean_Respiratory_rate\n", + "3287 Respiratory_rate<=mean_Respiratory_rate^active_care_plans\n", + "3288 Respiratory_rate<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3289 Respiratory_rate<=maximum(mean_Respiratory_rate,1/2*QALY)\n", + "3290 Respiratory_rate<=floor(age)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3291 Respiratory_rate<=maximum(active_condition_length,mean_Respiratory_rate)\n", + "3292 Respiratory_rate<=High_Density_Lipoprotein_Cholesterol^2/mean_Chloride\n", + "3293 Respiratory_rate<=ceil(mean_Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "3294 Respiratory_rate<=maximum(mean_Respiratory_rate,2*active_conditions)\n", + "3295 Respiratory_rate<=floor(High_Density_Lipoprotein_Cholesterol)/num_allergies\n", + "3296 Respiratory_rate<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*Albumin__Mass_volume__in_Serum,Plasma\n", + "3297 Respiratory_rate<=maximum(Triglycerides,mean_Respiratory_rate)\n", + "3298 Respiratory_rate<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1\n", + "3299 Respiratory_rate<=Carbon_Dioxide-medications_active\n", + "3300 Respiratory_rate<=maximum(encounters_count,mean_Respiratory_rate)\n", + "3301 Respiratory_rate<=mean_Respiratory_rate+procedures_lifetime\n", + "3302 Respiratory_rate<=mean_Respiratory_rate/QOLS\n", + "3303 Respiratory_rate<=maximum(mean_Respiratory_rate,sqrt(lifetime_condition_length))\n", + "3304 Respiratory_rate<=maximum(Sodium,mean_Respiratory_rate)\n", + "3305 Respiratory_rate<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(active_condition_length)\n", + "3306 Respiratory_rate<=maximum(mean_Respiratory_rate,10^procedures_lifetime)\n", + "3307 Respiratory_rate<=ceil(High_Density_Lipoprotein_Cholesterol)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3308 Respiratory_rate<=1/2*Low_Density_Lipoprotein_Cholesterol-Urea_Nitrogen\n", + "3309 Respiratory_rate<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Calcium\n", + "3310 Respiratory_rate<=-Heart_rate+Systolic_Blood_Pressure\n", + "3311 Respiratory_rate<=ceil(1/2*QALY)\n", + "3312 Respiratory_rate<=maximum(mean_Respiratory_rate,e^lifetime_care_plans)\n", + "3313 Respiratory_rate<=Body_Mass_Index-lifetime_care_plans\n", + "3314 Respiratory_rate<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(lifetime_care_plan_length)\n", + "3315 Respiratory_rate<=floor(Potassium^2)\n", + "3316 Respiratory_rate<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*Potassium\n", + "3317 Respiratory_rate<=maximum(mean_Respiratory_rate,DALY^2)\n", + "3318 Respiratory_rate<=-active_care_plans+floor(Carbon_Dioxide)\n", + "3319 Respiratory_rate<=-Heart_rate+Triglycerides\n", + "3320 Respiratory_rate<=2*Low_Density_Lipoprotein_Cholesterol/Calcium\n", + "3321 Respiratory_rate<=active_care_plans+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3322 Respiratory_rate<=1/2*Carbon_Dioxide/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3323 Respiratory_rate<=maximum(mean_Respiratory_rate,1/2*Microalbumin_Creatinine_Ratio)\n", + "3324 Respiratory_rate<=Carbon_Dioxide-active_care_plans\n", + "3325 Respiratory_rate<=1/2*Estimated_Glomerular_Filtration_Rate+procedures_lifetime_cost\n", + "3326 Respiratory_rate<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*Leukocytes____volume__in_Blood_by_Automated_count\n", + "3327 Respiratory_rate>=longitude\n", + "3328 Respiratory_rate>=ceil(sqrt(Sodium))\n", + "3329 Respiratory_rate>=minimum(mean_Respiratory_rate,-Triglycerides)\n", + "3330 Respiratory_rate>=Platelets____volume__in_Blood_by_Automated_count/MCH__Entitic_mass__by_Automated_count\n", + "3331 Respiratory_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_active\n", + "3332 Respiratory_rate>=-mean_Creatinine+mean_Respiratory_rate\n", + "3333 Respiratory_rate>=minimum(procedures_lifetime,1/2*Carbon_Dioxide)\n", + "3334 Respiratory_rate>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3335 Respiratory_rate>=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "3336 Respiratory_rate>=floor(1/2*Carbon_Dioxide)\n", + "3337 Respiratory_rate>=-healthcare_expenses\n", + "3338 Respiratory_rate>=2*active_care_plans\n", + "3339 Respiratory_rate>=minimum(mean_Respiratory_rate,-Estimated_Glomerular_Filtration_Rate)\n", + "3340 Respiratory_rate>=healthcare_expenses^longitude\n", + "3341 Respiratory_rate>=floor(log(healthcare_coverage))\n", + "3342 Respiratory_rate>=2*medications_lifetime/Body_Height\n", + "3343 Respiratory_rate>=mean_Respiratory_rate/active_care_plans\n", + "3344 Respiratory_rate>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Creatinine\n", + "3345 Respiratory_rate>=active_conditions+log(num_allergies)\n", + "3346 Respiratory_rate>=floor(age)/Microalbumin_Creatinine_Ratio\n", + "3347 Respiratory_rate>=lifetime_care_plans+num_allergies+1\n", + "3348 Respiratory_rate>=active_conditions-procedures_lifetime\n", + "3349 Respiratory_rate>=(lifetime_condition_length+1)/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "3350 Respiratory_rate>=active_conditions-immunizations_lifetime_cost\n", + "3351 Respiratory_rate>=minimum(device_lifetime_length,mean_Respiratory_rate)\n", + "3352 Respiratory_rate>=1/2*active_conditions/Creatinine\n", + "3353 Respiratory_rate>=floor(sqrt(Low_Density_Lipoprotein_Cholesterol))\n", + "3354 Respiratory_rate>=minimum(mean_Respiratory_rate,10^immunizations_lifetime)\n", + "3355 Respiratory_rate>=active_care_plans*imaging_studies_lifetime\n", + "3356 Respiratory_rate>=mean_Respiratory_rate^QOLS\n", + "3357 Respiratory_rate>=immunizations_lifetime^2-1\n", + "3358 Respiratory_rate>=minimum(mean_Respiratory_rate,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3359 Respiratory_rate>=1/2*medications_lifetime_dispenses/Systolic_Blood_Pressure\n", + "3360 Respiratory_rate>=ceil(2*mean_Creatinine)\n", + "3361 Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "3362 Respiratory_rate>=Body_Mass_Index-mean_Carbon_Dioxide-1\n", + "3363 Respiratory_rate>=minimum(lifetime_conditions,sqrt(Systolic_Blood_Pressure))\n", + "3364 Respiratory_rate>=floor(sqrt(Systolic_Blood_Pressure))\n", + "3365 Respiratory_rate>=log(imaging_studies_lifetime)/log(10)+active_conditions\n", + "3366 Respiratory_rate>=Body_Height-Platelets____volume__in_Blood_by_Automated_count\n", + "3367 Respiratory_rate>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3368 Respiratory_rate>=active_conditions-procedures_lifetime_cost+1\n", + "3369 Respiratory_rate>=(active_care_plans-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3370 Respiratory_rate>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,2*lifetime_care_plans)\n", + "3371 Respiratory_rate>=(active_conditions-1)/DALY\n", + "3372 Respiratory_rate>=2*lifetime_conditions-medications_lifetime\n", + "3373 Respiratory_rate>=minimum(mean_Respiratory_rate,10^imaging_studies_lifetime)\n", + "3374 Respiratory_rate>=10^immunizations_lifetime-Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3375 Heart_rate<=healthcare_expenses\n", + "3376 Heart_rate<=e^sqrt(Carbon_Dioxide)\n", + "3377 Heart_rate<=10^Potassium/active_condition_length\n", + "3378 Heart_rate<=healthcare_coverage+mean_Heart_rate\n", + "3379 Heart_rate<=QALY*log(Carbon_Dioxide)\n", + "3380 Heart_rate<=immunizations_lifetime_cost+mean_Heart_rate\n", + "3381 Heart_rate<=mean_Heart_rate^active_conditions\n", + "3382 Heart_rate<=maximum(mean_Heart_rate,e^DALY)\n", + "3383 Heart_rate<=Systolic_Blood_Pressure-Urea_Nitrogen\n", + "3384 Heart_rate<=10^medications_active+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3385 Heart_rate<=-Respiratory_rate+Systolic_Blood_Pressure\n", + "3386 Heart_rate<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Globulin__Mass_volume__in_Serum_by_calculation^2\n", + "3387 Heart_rate<=maximum(Triglycerides,mean_Heart_rate)\n", + "3388 Heart_rate<=mean_Heart_rate^active_care_plans\n", + "3389 Heart_rate<=-Respiratory_rate+Triglycerides\n", + "3390 Heart_rate<=maximum(Sodium,mean_Heart_rate)\n", + "3391 Heart_rate<=Leukocytes____volume__in_Blood_by_Automated_count+mean_Heart_rate\n", + "3392 Heart_rate<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3393 Heart_rate<=1/2*active_condition_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3394 Heart_rate<=encounters_lifetime_payer_coverage+mean_Heart_rate\n", + "3395 Heart_rate<=maximum(lifetime_condition_length,mean_Heart_rate)\n", + "3396 Heart_rate<=(DALY-1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "3397 Heart_rate<=2*Triglycerides/immunizations_lifetime\n", + "3398 Heart_rate<=Body_Mass_Index*Potassium\n", + "3399 Heart_rate<=Systolic_Blood_Pressure-lifetime_conditions-1\n", + "3400 Heart_rate<=ceil(Chloride)-medications_active\n", + "3401 Heart_rate<=1/2*Low_Density_Lipoprotein_Cholesterol+healthcare_coverage\n", + "3402 Heart_rate<=Urea_Nitrogen^2/medications_lifetime_perc_covered\n", + "3403 Heart_rate<=Diastolic_Blood_Pressure+mean_Carbon_Dioxide-1\n", + "3404 Heart_rate<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Diastolic_Blood_Pressure\n", + "3405 Heart_rate<=Low_Density_Lipoprotein_Cholesterol*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "3406 Heart_rate<=maximum(Diastolic_Blood_Pressure,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "3407 Heart_rate<=maximum(mean_Heart_rate,encounters_count^2)\n", + "3408 Heart_rate<=10^immunizations_lifetime*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3409 Heart_rate<=1/2*MCHC__Mass_volume__by_Automated_count+lifetime_care_plan_length\n", + "3410 Heart_rate<=1/2*Globulin__Mass_volume__in_Serum_by_calculation*mean_Heart_rate\n", + "3411 Heart_rate<=2*DALY+mean_Heart_rate\n", + "3412 Heart_rate<=Sodium*mean_Creatinine\n", + "3413 Heart_rate<=2*Total_Cholesterol/num_allergies\n", + "3414 Heart_rate<=immunizations_lifetime_cost+lifetime_care_plan_length-1\n", + "3415 Heart_rate<=Glucose+2*Respiratory_rate\n", + "3416 Heart_rate<=Chloride-Potassium-1\n", + "3417 Heart_rate<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Systolic_Blood_Pressure\n", + "3418 Heart_rate<=Triglycerides^2/mean_Systolic_Blood_Pressure\n", + "3419 Heart_rate<=10^Globulin__Mass_volume__in_Serum_by_calculation-Body_Mass_Index\n", + "3420 Heart_rate<=maximum(mean_Heart_rate,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "3421 Heart_rate<=10^medications_active*mean_High_Density_Lipoprotein_Cholesterol\n", + "3422 Heart_rate<=QALY*log(Estimated_Glomerular_Filtration_Rate)\n", + "3423 Heart_rate<=2*Low_Density_Lipoprotein_Cholesterol*mean_Creatinine\n", + "3424 Heart_rate<=maximum(lifetime_care_plan_length,2*High_Density_Lipoprotein_Cholesterol)\n", + "3425 Heart_rate<=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+Urea_Nitrogen\n", + "3426 Heart_rate<=-Potassium+mean_Chloride\n", + "3427 Heart_rate>=latitude\n", + "3428 Heart_rate>=floor(High_Density_Lipoprotein_Cholesterol)-procedures_lifetime\n", + "3429 Heart_rate>=procedures_lifetime+1\n", + "3430 Heart_rate>=floor(active_care_plan_length)-immunizations_lifetime_cost\n", + "3431 Heart_rate>=minimum(mean_Heart_rate,floor(active_care_plan_length))\n", + "3432 Heart_rate>=-Respiratory_rate-longitude\n", + "3433 Heart_rate>=-active_care_plans+mean_High_Density_Lipoprotein_Cholesterol\n", + "3434 Heart_rate>=-Creatinine+Estimated_Glomerular_Filtration_Rate\n", + "3435 Heart_rate>=mean_Heart_rate^QOLS\n", + "3436 Heart_rate>=-healthcare_expenses\n", + "3437 Heart_rate>=Diastolic_Blood_Pressure-active_care_plan_length+1\n", + "3438 Heart_rate>=mean_Heart_rate-medications_lifetime\n", + "3439 Heart_rate>=-Diastolic_Blood_Pressure+Systolic_Blood_Pressure\n", + "3440 Heart_rate>=1/2*Glucose+1\n", + "3441 Heart_rate>=mean_Heart_rate/active_care_plans\n", + "3442 Heart_rate>=e^active_care_plans/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3443 Heart_rate>=mean_Heart_rate-procedures_lifetime_cost\n", + "3444 Heart_rate>=10^sqrt(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3445 Heart_rate>=QOLS*mean_Heart_rate\n", + "3446 Heart_rate>=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Heart_rate)\n", + "3447 Heart_rate>=healthcare_expenses^longitude\n", + "3448 Heart_rate>=mean_Heart_rate/active_conditions\n", + "3449 Heart_rate>=minimum(mean_Heart_rate,medications_active^2)\n", + "3450 Heart_rate>=2*Microalbumin_Creatinine_Ratio/DALY\n", + "3451 Heart_rate>=sqrt(Sodium)*active_care_plans\n", + "3452 Heart_rate>=minimum(mean_Heart_rate,10^imaging_studies_lifetime)\n", + "3453 Heart_rate>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Body_Height\n", + "3454 Heart_rate>=Body_Mass_Index+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3455 Heart_rate>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Potassium\n", + "3456 Heart_rate>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Diastolic_Blood_Pressure\n", + "3457 Heart_rate>=1/2*Low_Density_Lipoprotein_Cholesterol-medications_active\n", + "3458 Heart_rate>=-active_care_plans+floor(High_Density_Lipoprotein_Cholesterol)\n", + "3459 Heart_rate>=minimum(active_condition_length,Creatinine)\n", + "3460 Heart_rate>=-Microalbumin_Creatinine_Ratio+1/2*lifetime_care_plan_length\n", + "3461 Heart_rate>=minimum(mean_Heart_rate,lifetime_care_plans^2)\n", + "3462 Heart_rate>=1/2*active_condition_length+device_lifetime_length\n", + "3463 Heart_rate>=minimum(mean_Heart_rate,floor(active_condition_length))\n", + "3464 Heart_rate>=Albumin__Mass_volume__in_Serum,Plasma+active_condition_length-1\n", + "3465 Heart_rate>=floor(QALY)-medications_lifetime\n", + "3466 Heart_rate>=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^Potassium\n", + "3467 Heart_rate>=2*DALY-Urea_Nitrogen\n", + "3468 Heart_rate>=sqrt(encounters_lifetime_total_cost)-Triglycerides\n", + "3469 Heart_rate>=-Low_Density_Lipoprotein_Cholesterol+Sodium+1\n", + "3470 Heart_rate>=minimum(Diastolic_Blood_Pressure,2*Body_Mass_Index)\n", + "3471 Heart_rate>=(medications_lifetime_dispenses+1)/active_care_plan_length\n", + "3472 Heart_rate>=floor(DALY)*mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3473 Heart_rate>=(e^imaging_studies_lifetime)^mean_Creatinine\n", + "3474 Heart_rate>=-Estimated_Glomerular_Filtration_Rate+floor(age)\n", + "3475 Heart_rate>=lifetime_conditions^2-Platelets____volume__in_Blood_by_Automated_count\n", + "3476 Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "3477 Heart_rate>=1/2*encounters_lifetime_payer_coverage/mean_Triglycerides\n", + "3478 Heart_rate>=Glucose*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "3479 Heart_rate>=Calcium/QOLS\n", + "3480 Heart_rate>=Protein__Mass_volume__in_Serum,Plasma-medications_active\n", + "3481 Heart_rate>=latitude*log(num_allergies)\n", + "3482 Heart_rate>=(Urea_Nitrogen-1)*Albumin__Mass_volume__in_Serum,Plasma\n", + "3483 Heart_rate>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*immunizations_lifetime_cost\n", + "3484 Heart_rate>=minimum(mean_Heart_rate,2*device_lifetime_length)\n", + "3485 Heart_rate>=(Chloride-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3486 Heart_rate>=minimum(Microalbumin_Creatinine_Ratio,ceil(High_Density_Lipoprotein_Cholesterol))\n", + "3487 Heart_rate>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(High_Density_Lipoprotein_Cholesterol)\n", + "3488 Heart_rate>=Low_Density_Lipoprotein_Cholesterol-mean_Diastolic_Blood_Pressure+1\n", + "3489 Heart_rate>=1/2*Microalbumin_Creatinine_Ratio/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3490 Heart_rate>=ceil(DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3491 Systolic_Blood_Pressure<=healthcare_expenses\n", + "3492 Systolic_Blood_Pressure<=maximum(Sodium,mean_Systolic_Blood_Pressure)\n", + "3493 Systolic_Blood_Pressure<=maximum(Body_Height,mean_Systolic_Blood_Pressure)\n", + "3494 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure^active_conditions\n", + "3495 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure/QOLS\n", + "3496 Systolic_Blood_Pressure<=Triglycerides*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "3497 Systolic_Blood_Pressure<=maximum(Total_Cholesterol,mean_Systolic_Blood_Pressure)\n", + "3498 Systolic_Blood_Pressure<=10^medications_active*mean_Systolic_Blood_Pressure\n", + "3499 Systolic_Blood_Pressure<=Globulin__Mass_volume__in_Serum_by_calculation*ceil(Protein__Mass_volume__in_Serum,Plasma)\n", + "3500 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure^active_care_plans\n", + "3501 Systolic_Blood_Pressure<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*active_care_plan_length\n", + "3502 Systolic_Blood_Pressure<=sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)+mean_Systolic_Blood_Pressure\n", + "3503 Systolic_Blood_Pressure<=(DALY+1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "3504 Systolic_Blood_Pressure<=log(Sodium)+mean_Total_Cholesterol\n", + "3505 Systolic_Blood_Pressure<=Diastolic_Blood_Pressure+Heart_rate\n", + "3506 Systolic_Blood_Pressure<=active_care_plan_length*log(MCH__Entitic_mass__by_Automated_count)\n", + "3507 Systolic_Blood_Pressure<=Microalbumin_Creatinine_Ratio*floor(QALY)\n", + "3508 Systolic_Blood_Pressure<=2*Low_Density_Lipoprotein_Cholesterol+active_care_plans\n", + "3509 Systolic_Blood_Pressure<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-active_condition_length\n", + "3510 Systolic_Blood_Pressure<=maximum(medications_lifetime_length,mean_Systolic_Blood_Pressure)\n", + "3511 Systolic_Blood_Pressure<=10^active_care_plans+Estimated_Glomerular_Filtration_Rate\n", + "3512 Systolic_Blood_Pressure<=2*Sodium-mean_Low_Density_Lipoprotein_Cholesterol\n", + "3513 Systolic_Blood_Pressure<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Systolic_Blood_Pressure\n", + "3514 Systolic_Blood_Pressure<=Triglycerides^2/Heart_rate\n", + "3515 Systolic_Blood_Pressure<=10^procedures_lifetime_cost+mean_Triglycerides\n", + "3516 Systolic_Blood_Pressure<=QALY*log(Sodium)\n", + "3517 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,encounters_count^2)\n", + "3518 Systolic_Blood_Pressure<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3519 Systolic_Blood_Pressure<=2*active_conditions+mean_Systolic_Blood_Pressure\n", + "3520 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,medications_lifetime^2)\n", + "3521 Systolic_Blood_Pressure<=active_care_plan_length^2/Creatinine\n", + "3522 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,2*lifetime_condition_length)\n", + "3523 Systolic_Blood_Pressure<=log(High_Density_Lipoprotein_Cholesterol)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3524 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,1/imaging_studies_lifetime)\n", + "3525 Systolic_Blood_Pressure<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Systolic_Blood_Pressure\n", + "3526 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,1/2*medications_lifetime_dispenses)\n", + "3527 Systolic_Blood_Pressure<=1/2*QALY+mean_Systolic_Blood_Pressure\n", + "3528 Systolic_Blood_Pressure<=sqrt(QALY)*mean_Carbon_Dioxide\n", + "3529 Systolic_Blood_Pressure<=1/2*Low_Density_Lipoprotein_Cholesterol*Potassium\n", + "3530 Systolic_Blood_Pressure<=2*QALY+mean_Diastolic_Blood_Pressure\n", + "3531 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "3532 Systolic_Blood_Pressure<=2*Heart_rate+mean_Estimated_Glomerular_Filtration_Rate\n", + "3533 Systolic_Blood_Pressure<=Diastolic_Blood_Pressure*log(Body_Weight)/log(10)\n", + "3534 Systolic_Blood_Pressure<=Heart_rate+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3535 Systolic_Blood_Pressure<=2*Creatinine*mean_Systolic_Blood_Pressure\n", + "3536 Systolic_Blood_Pressure<=e^Potassium+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3537 Systolic_Blood_Pressure<=2*Calcium+mean_Systolic_Blood_Pressure\n", + "3538 Systolic_Blood_Pressure<=Total_Cholesterol^2/lifetime_care_plan_length\n", + "3539 Systolic_Blood_Pressure<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/imaging_studies_lifetime\n", + "3540 Systolic_Blood_Pressure>=latitude\n", + "3541 Systolic_Blood_Pressure>=Heart_rate+Respiratory_rate\n", + "3542 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure/active_conditions\n", + "3543 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure-procedures_lifetime_cost\n", + "3544 Systolic_Blood_Pressure>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3545 Systolic_Blood_Pressure>=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/encounters_lifetime_perc_covered\n", + "3546 Systolic_Blood_Pressure>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+active_care_plan_length-1\n", + "3547 Systolic_Blood_Pressure>=Heart_rate+lifetime_conditions+1\n", + "3548 Systolic_Blood_Pressure>=1/2*medications_lifetime_dispenses/Respiratory_rate\n", + "3549 Systolic_Blood_Pressure>=-healthcare_expenses\n", + "3550 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure-medications_lifetime\n", + "3551 Systolic_Blood_Pressure>=2*device_lifetime_length+1\n", + "3552 Systolic_Blood_Pressure>=sqrt(QOLS)*mean_Systolic_Blood_Pressure\n", + "3553 Systolic_Blood_Pressure>=floor(Body_Weight)\n", + "3554 Systolic_Blood_Pressure>=Body_Height-mean_Protein__Mass_volume__in_Serum,Plasma+1\n", + "3555 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*immunizations_lifetime_cost)\n", + "3556 Systolic_Blood_Pressure>=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*lifetime_conditions\n", + "3557 Systolic_Blood_Pressure>=minimum(Low_Density_Lipoprotein_Cholesterol,mean_Chloride)\n", + "3558 Systolic_Blood_Pressure>=Chloride+log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3559 Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "3560 Systolic_Blood_Pressure>=sqrt(Body_Height)/QOLS\n", + "3561 Systolic_Blood_Pressure>=floor(latitude)*imaging_studies_lifetime\n", + "3562 Systolic_Blood_Pressure>=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)*mean_Systolic_Blood_Pressure\n", + "3563 Systolic_Blood_Pressure>=log(MCH__Entitic_mass__by_Automated_count)*mean_MCH__Entitic_mass__by_Automated_count\n", + "3564 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure^QOLS\n", + "3565 Systolic_Blood_Pressure>=Chloride-procedures_lifetime_cost\n", + "3566 Systolic_Blood_Pressure>=Heart_rate+ceil(Urea_Nitrogen)\n", + "3567 Systolic_Blood_Pressure>=e^Albumin__Mass_volume__in_Serum,Plasma-medications_lifetime\n", + "3568 Systolic_Blood_Pressure>=Globulin__Mass_volume__in_Serum_by_calculation^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3569 Systolic_Blood_Pressure>=-High_Density_Lipoprotein_Cholesterol+2*QALY\n", + "3570 Systolic_Blood_Pressure>=Low_Density_Lipoprotein_Cholesterol-healthcare_coverage+1\n", + "3571 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure/active_care_plans\n", + "3572 Systolic_Blood_Pressure>=-Carbon_Dioxide+mean_Systolic_Blood_Pressure\n", + "3573 Systolic_Blood_Pressure>=Bilirubin_total__Mass_volume__in_Serum,Plasma*Glucose\n", + "3574 Systolic_Blood_Pressure>=(immunizations_lifetime^2)^Creatinine\n", + "3575 Systolic_Blood_Pressure>=minimum(Low_Density_Lipoprotein_Cholesterol,floor(Chloride))\n", + "3576 Systolic_Blood_Pressure>=(Urea_Nitrogen+1)*medications_active\n", + "3577 Systolic_Blood_Pressure>=(1/2*immunizations_lifetime)^active_conditions\n", + "3578 Systolic_Blood_Pressure>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Protein__Mass_volume__in_Serum,Plasma+1\n", + "3579 Systolic_Blood_Pressure>=-Microalbumin_Creatinine_Ratio+mean_Systolic_Blood_Pressure\n", + "3580 Systolic_Blood_Pressure>=minimum(Triglycerides,Creatinine)\n", + "3581 Systolic_Blood_Pressure>=-mean_Estimated_Glomerular_Filtration_Rate+mean_Systolic_Blood_Pressure\n", + "3582 Systolic_Blood_Pressure>=-encounters_lifetime_payer_coverage+mean_Systolic_Blood_Pressure\n", + "3583 Systolic_Blood_Pressure>=log(MCHC__Mass_volume__by_Automated_count)*procedures_lifetime\n", + "3584 Systolic_Blood_Pressure>=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*active_care_plans\n", + "3585 Systolic_Blood_Pressure>=Body_Mass_Index+2*DALY\n", + "3586 Systolic_Blood_Pressure>=1/2*Microalbumin_Creatinine_Ratio+longitude\n", + "3587 Systolic_Blood_Pressure>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+active_condition_length+1\n", + "3588 Systolic_Blood_Pressure>=MCH__Entitic_mass__by_Automated_count*sqrt(Respiratory_rate)\n", + "3589 Systolic_Blood_Pressure>=Chloride-immunizations_lifetime_cost+1\n", + "3590 Systolic_Blood_Pressure>=log(num_allergies)*mean_Glucose\n", + "3591 Systolic_Blood_Pressure>=2*Diastolic_Blood_Pressure-Glucose\n", + "3592 Systolic_Blood_Pressure>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+active_condition_length\n", + "3593 Systolic_Blood_Pressure>=Body_Height-Low_Density_Lipoprotein_Cholesterol-1\n", + "3594 Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "3595 Systolic_Blood_Pressure>=minimum(Microalbumin_Creatinine_Ratio,mean_Chloride)\n", + "3596 Systolic_Blood_Pressure>=-MCV__Entitic_volume__by_Automated_count+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3597 Systolic_Blood_Pressure>=mean_Low_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "3598 Systolic_Blood_Pressure>=Albumin__Mass_volume__in_Serum,Plasma*active_care_plans^2\n", + "3599 Systolic_Blood_Pressure>=log(lifetime_care_plans)*mean_Systolic_Blood_Pressure/log(10)\n", + "3600 Systolic_Blood_Pressure>=-healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "3601 Systolic_Blood_Pressure>=QALY+1/2*active_care_plan_length\n", + "3602 Systolic_Blood_Pressure>=active_condition_length*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "3603 Systolic_Blood_Pressure>=(1/DXA__T_score__Bone_density)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3604 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*lifetime_care_plan_length)\n", + "3605 Systolic_Blood_Pressure>=sqrt(lifetime_condition_length)+mean_Diastolic_Blood_Pressure\n", + "3606 Diastolic_Blood_Pressure<=healthcare_expenses\n", + "3607 Diastolic_Blood_Pressure<=Carbon_Dioxide*Potassium\n", + "3608 Diastolic_Blood_Pressure<=maximum(Triglycerides,mean_Diastolic_Blood_Pressure)\n", + "3609 Diastolic_Blood_Pressure<=-DALY+Triglycerides\n", + "3610 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "3611 Diastolic_Blood_Pressure<=log(Respiratory_rate)*mean_Diastolic_Blood_Pressure/log(10)\n", + "3612 Diastolic_Blood_Pressure<=2*Potassium+mean_Diastolic_Blood_Pressure\n", + "3613 Diastolic_Blood_Pressure<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Diastolic_Blood_Pressure\n", + "3614 Diastolic_Blood_Pressure<=healthcare_coverage+mean_Diastolic_Blood_Pressure\n", + "3615 Diastolic_Blood_Pressure<=floor(Estimated_Glomerular_Filtration_Rate^2)\n", + "3616 Diastolic_Blood_Pressure<=(active_care_plan_length+1)*mean_Microalbumin_Creatinine_Ratio\n", + "3617 Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,mean_Diastolic_Blood_Pressure)\n", + "3618 Diastolic_Blood_Pressure<=encounters_lifetime_payer_coverage+mean_Diastolic_Blood_Pressure\n", + "3619 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,encounters_count^2)\n", + "3620 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure^active_conditions\n", + "3621 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure/QOLS\n", + "3622 Diastolic_Blood_Pressure<=2*QALY+mean_Carbon_Dioxide\n", + "3623 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure^active_care_plans\n", + "3624 Diastolic_Blood_Pressure<=2*High_Density_Lipoprotein_Cholesterol+active_conditions\n", + "3625 Diastolic_Blood_Pressure<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/medications_active\n", + "3626 Diastolic_Blood_Pressure<=Sodium-device_lifetime_length-1\n", + "3627 Diastolic_Blood_Pressure<=Body_Mass_Index*log(High_Density_Lipoprotein_Cholesterol)\n", + "3628 Diastolic_Blood_Pressure<=log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)+mean_Diastolic_Blood_Pressure\n", + "3629 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,mean_MCV__Entitic_volume__by_Automated_count)\n", + "3630 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,Urea_Nitrogen^2)\n", + "3631 Diastolic_Blood_Pressure<=maximum(Sodium,mean_Diastolic_Blood_Pressure)\n", + "3632 Diastolic_Blood_Pressure<=sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)*QALY\n", + "3633 Diastolic_Blood_Pressure<=floor(Calcium)+mean_Diastolic_Blood_Pressure\n", + "3634 Diastolic_Blood_Pressure<=e^active_care_plans+mean_Diastolic_Blood_Pressure\n", + "3635 Diastolic_Blood_Pressure<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3636 Diastolic_Blood_Pressure<=e^procedures_lifetime+mean_Diastolic_Blood_Pressure\n", + "3637 Diastolic_Blood_Pressure<=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)+immunizations_lifetime_cost\n", + "3638 Diastolic_Blood_Pressure<=ceil(Erythrocytes____volume__in_Blood_by_Automated_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3639 Diastolic_Blood_Pressure<=10^Leukocytes____volume__in_Blood_by_Automated_count/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "3640 Diastolic_Blood_Pressure<=Body_Weight+MCHC__Mass_volume__by_Automated_count\n", + "3641 Diastolic_Blood_Pressure<=(Creatinine+1)*High_Density_Lipoprotein_Cholesterol\n", + "3642 Diastolic_Blood_Pressure<=2*Glomerular_filtration_rate_1_73_sq_M_predicted+QALY\n", + "3643 Diastolic_Blood_Pressure<=Chloride+immunizations_lifetime_cost-1\n", + "3644 Diastolic_Blood_Pressure<=active_condition_length*ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3645 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)\n", + "3646 Diastolic_Blood_Pressure<=sqrt(lifetime_care_plan_length)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3647 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,floor(lifetime_condition_length))\n", + "3648 Diastolic_Blood_Pressure<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glucose\n", + "3649 Diastolic_Blood_Pressure<=Protein__Mass_volume__in_Serum,Plasma+medications_lifetime-1\n", + "3650 Diastolic_Blood_Pressure<=1/2*Triglycerides+healthcare_coverage\n", + "3651 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,Leukocytes____volume__in_Blood_by_Automated_count^2)\n", + "3652 Diastolic_Blood_Pressure>=latitude\n", + "3653 Diastolic_Blood_Pressure>=ceil(active_condition_length)\n", + "3654 Diastolic_Blood_Pressure>=-active_conditions+mean_Diastolic_Blood_Pressure\n", + "3655 Diastolic_Blood_Pressure>=floor(-longitude)\n", + "3656 Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "3657 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure/active_conditions\n", + "3658 Diastolic_Blood_Pressure>=MCH__Entitic_mass__by_Automated_count+ceil(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "3659 Diastolic_Blood_Pressure>=(num_allergies+1)*lifetime_conditions\n", + "3660 Diastolic_Blood_Pressure>=-active_conditions+floor(age)\n", + "3661 Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "3662 Diastolic_Blood_Pressure>=(Hemoglobin__Mass_volume__in_Blood-1)*lifetime_care_plans\n", + "3663 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^QOLS\n", + "3664 Diastolic_Blood_Pressure>=sqrt(Estimated_Glomerular_Filtration_Rate)+active_condition_length\n", + "3665 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure/active_care_plans\n", + "3666 Diastolic_Blood_Pressure>=medications_lifetime_dispenses/MCHC__Mass_volume__by_Automated_count\n", + "3667 Diastolic_Blood_Pressure>=sqrt(Microalbumin_Creatinine_Ratio)+QALY\n", + "3668 Diastolic_Blood_Pressure>=minimum(High_Density_Lipoprotein_Cholesterol,mean_Diastolic_Blood_Pressure)\n", + "3669 Diastolic_Blood_Pressure>=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+age\n", + "3670 Diastolic_Blood_Pressure>=-Respiratory_rate+procedures_lifetime-1\n", + "3671 Diastolic_Blood_Pressure>=sqrt(medications_lifetime_length)-latitude\n", + "3672 Diastolic_Blood_Pressure>=e^immunizations_lifetime*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3673 Diastolic_Blood_Pressure>=ceil(active_care_plan_length)-procedures_lifetime\n", + "3674 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,lifetime_care_plans^2)\n", + "3675 Diastolic_Blood_Pressure>=2*Protein__Mass_volume__in_Serum,Plasma/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3676 Diastolic_Blood_Pressure>=minimum(Heart_rate,2*Body_Mass_Index)\n", + "3677 Diastolic_Blood_Pressure>=-DALY+Glomerular_filtration_rate_1_73_sq_M_predicted-1\n", + "3678 Diastolic_Blood_Pressure>=(medications_lifetime+1)/mean_Respiratory_rate\n", + "3679 Diastolic_Blood_Pressure>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Diastolic_Blood_Pressure)\n", + "3680 Diastolic_Blood_Pressure>=-Urea_Nitrogen+mean_Diastolic_Blood_Pressure\n", + "3681 Diastolic_Blood_Pressure>=-DALY+mean_Diastolic_Blood_Pressure\n", + "3682 Diastolic_Blood_Pressure>=Heart_rate-mean_Carbon_Dioxide+1\n", + "3683 Diastolic_Blood_Pressure>=(active_care_plans+1)^2\n", + "3684 Diastolic_Blood_Pressure>=-Heart_rate+Systolic_Blood_Pressure\n", + "3685 Diastolic_Blood_Pressure>=-age+mean_Systolic_Blood_Pressure\n", + "3686 Diastolic_Blood_Pressure>=minimum(Heart_rate,floor(active_care_plan_length))\n", + "3687 Diastolic_Blood_Pressure>=Body_Weight-QALY+1\n", + "3688 Diastolic_Blood_Pressure>=2*active_conditions*mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3689 Diastolic_Blood_Pressure>=Estimated_Glomerular_Filtration_Rate-Urea_Nitrogen-1\n", + "3690 Diastolic_Blood_Pressure>=sqrt(Triglycerides)*mean_Creatinine\n", + "3691 Diastolic_Blood_Pressure>=1/2*Creatinine*MCH__Entitic_mass__by_Automated_count\n", + "3692 Diastolic_Blood_Pressure>=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)-immunizations_lifetime_cost\n", + "3693 Diastolic_Blood_Pressure>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_High_Density_Lipoprotein_Cholesterol\n", + "3694 Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "3695 Diastolic_Blood_Pressure>=Sodium-mean_Heart_rate-1\n", + "3696 Diastolic_Blood_Pressure>=1/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-longitude\n", + "3697 Diastolic_Blood_Pressure>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+floor(device_lifetime_length)\n", + "3698 Diastolic_Blood_Pressure>=2*Body_Weight/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3699 Diastolic_Blood_Pressure>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Heart_rate/log(10)\n", + "3700 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,10^imaging_studies_lifetime)\n", + "3701 Diastolic_Blood_Pressure>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*medications_active\n", + "3702 Diastolic_Blood_Pressure>=-Low_Density_Lipoprotein_Cholesterol+e^Potassium\n", + "3703 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,medications_active^2)\n", + "3704 Diastolic_Blood_Pressure>=sqrt(Carbon_Dioxide)*Hemoglobin__Mass_volume__in_Blood\n", + "3705 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,1/medications_active)\n", + "3706 Diastolic_Blood_Pressure>=2*Sodium/Albumin__Mass_volume__in_Serum,Plasma\n", + "3707 Diastolic_Blood_Pressure>=log(Systolic_Blood_Pressure)*mean_Respiratory_rate\n", + "3708 Diastolic_Blood_Pressure>=Body_Weight-active_care_plan_length+1\n", + "3709 Body_Mass_Index<=healthcare_expenses\n", + "3710 Body_Mass_Index<=ceil(mean_Body_Mass_Index)\n", + "3711 Body_Mass_Index<=maximum(encounters_count,mean_Body_Mass_Index)\n", + "3712 Body_Mass_Index<=maximum(active_care_plan_length,mean_Body_Mass_Index)\n", + "3713 Body_Mass_Index<=mean_Body_Mass_Index^active_conditions\n", + "3714 Body_Mass_Index<=maximum(medications_lifetime,mean_Body_Mass_Index)\n", + "3715 Body_Mass_Index<=maximum(Triglycerides,mean_Body_Mass_Index)\n", + "3716 Body_Mass_Index<=maximum(mean_Body_Mass_Index,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3717 Body_Mass_Index<=maximum(active_condition_length,mean_Body_Mass_Index)\n", + "3718 Body_Mass_Index<=Diastolic_Blood_Pressure*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "3719 Body_Mass_Index<=2*encounters_lifetime_perc_covered+mean_Body_Mass_Index\n", + "3720 Body_Mass_Index<=maximum(mean_Body_Mass_Index,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3721 Body_Mass_Index<=mean_Body_Mass_Index+medications_active\n", + "3722 Body_Mass_Index<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3723 Body_Mass_Index<=healthcare_coverage+mean_Body_Mass_Index\n", + "3724 Body_Mass_Index<=mean_Body_Mass_Index^active_care_plans\n", + "3725 Body_Mass_Index<=mean_Body_Mass_Index/QOLS\n", + "3726 Body_Mass_Index<=maximum(mean_Body_Mass_Index,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3727 Body_Mass_Index<=maximum(Sodium,mean_Body_Mass_Index)\n", + "3728 Body_Mass_Index<=1/medications_active+mean_Body_Mass_Index\n", + "3729 Body_Mass_Index<=1/Potassium+mean_Body_Mass_Index\n", + "3730 Body_Mass_Index<=maximum(mean_Body_Mass_Index,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3731 Body_Mass_Index<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(Sodium)\n", + "3732 Body_Mass_Index<=Calcium*log(MCH__Entitic_mass__by_Automated_count)\n", + "3733 Body_Mass_Index<=DALY+Estimated_Glomerular_Filtration_Rate+1\n", + "3734 Body_Mass_Index<=maximum(mean_Body_Mass_Index,1/imaging_studies_lifetime)\n", + "3735 Body_Mass_Index<=maximum(mean_Body_Mass_Index,e^DALY)\n", + "3736 Body_Mass_Index<=maximum(mean_Body_Mass_Index,10^Creatinine)\n", + "3737 Body_Mass_Index>=longitude\n", + "3738 Body_Mass_Index>=encounters_lifetime_perc_covered+mean_Body_Mass_Index-1\n", + "3739 Body_Mass_Index>=healthcare_expenses^longitude\n", + "3740 Body_Mass_Index>=Respiratory_rate+lifetime_care_plans\n", + "3741 Body_Mass_Index>=minimum(mean_Body_Mass_Index,active_care_plans^2)\n", + "3742 Body_Mass_Index>=minimum(procedures_lifetime,mean_Body_Mass_Index)\n", + "3743 Body_Mass_Index>=mean_Body_Mass_Index-procedures_lifetime\n", + "3744 Body_Mass_Index>=2*medications_lifetime/mean_Chloride\n", + "3745 Body_Mass_Index>=-healthcare_expenses\n", + "3746 Body_Mass_Index>=1/2*Glucose/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3747 Body_Mass_Index>=-Leukocytes____volume__in_Blood_by_Automated_count+procedures_lifetime\n", + "3748 Body_Mass_Index>=minimum(Carbon_Dioxide,mean_Body_Mass_Index)\n", + "3749 Body_Mass_Index>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3750 Body_Mass_Index>=mean_Body_Mass_Index^QOLS\n", + "3751 Body_Mass_Index>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Mass_Index)\n", + "3752 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3753 Body_Mass_Index>=mean_Body_Mass_Index/active_care_plans\n", + "3754 Body_Mass_Index>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Body_Mass_Index)\n", + "3755 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Calcium)\n", + "3756 Body_Mass_Index>=minimum(device_lifetime_length,mean_Body_Mass_Index)\n", + "3757 Body_Mass_Index>=2*Urea_Nitrogen*medications_lifetime_perc_covered\n", + "3758 Body_Mass_Index>=minimum(mean_Body_Mass_Index,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3759 Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "3760 Body_Mass_Index>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,2*active_conditions)\n", + "3761 Body_Mass_Index>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)/log(10)+mean_Body_Mass_Index\n", + "3762 Body_Mass_Index>=minimum(mean_Body_Mass_Index,10^num_allergies)\n", + "3763 Body_Mass_Index>=-High_Density_Lipoprotein_Cholesterol+1/2*Systolic_Blood_Pressure\n", + "3764 Body_Mass_Index>=-healthcare_coverage+mean_Body_Mass_Index\n", + "3765 Body_Mass_Index>=mean_Body_Mass_Index/active_conditions\n", + "3766 Body_Mass_Index>=-encounters_lifetime_payer_coverage+mean_Body_Mass_Index\n", + "3767 Body_Mass_Index>=(Erythrocytes____volume__in_Blood_by_Automated_count+1)/QOLS\n", + "3768 Body_Mass_Index>=log(QOLS)+mean_Body_Mass_Index\n", + "3769 Body_Mass_Index>=2*DALY/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3770 Body_Mass_Index>=minimum(mean_Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)\n", + "3771 Body_Weight<=healthcare_expenses\n", + "3772 Body_Weight<=maximum(encounters_count,mean_Body_Weight)\n", + "3773 Body_Weight<=log(Potassium)/log(10)+mean_Body_Weight\n", + "3774 Body_Weight<=maximum(lifetime_condition_length,mean_Body_Weight)\n", + "3775 Body_Weight<=maximum(mean_Body_Weight,1/imaging_studies_lifetime)\n", + "3776 Body_Weight<=maximum(Chloride,mean_Body_Weight)\n", + "3777 Body_Weight<=mean_Body_Weight+medications_active\n", + "3778 Body_Weight<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3779 Body_Weight<=log(medications_lifetime_length)*mean_Estimated_Glomerular_Filtration_Rate\n", + "3780 Body_Weight<=healthcare_coverage+mean_Body_Weight\n", + "3781 Body_Weight<=mean_Body_Weight^active_care_plans\n", + "3782 Body_Weight<=mean_Body_Weight^active_conditions\n", + "3783 Body_Weight<=maximum(Triglycerides,mean_Body_Weight)\n", + "3784 Body_Weight<=maximum(mean_Body_Weight,1/2*Total_Cholesterol)\n", + "3785 Body_Weight<=maximum(mean_Body_Weight,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3786 Body_Weight<=1/num_allergies+mean_Body_Weight\n", + "3787 Body_Weight<=mean_Body_Weight+1/2*medications_active\n", + "3788 Body_Weight<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*active_condition_length\n", + "3789 Body_Weight<=maximum(mean_Body_Weight,active_conditions^2)\n", + "3790 Body_Weight<=maximum(mean_Body_Weight,1/2*medications_lifetime)\n", + "3791 Body_Weight<=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)+mean_Body_Weight\n", + "3792 Body_Weight<=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3793 Body_Weight<=sqrt(High_Density_Lipoprotein_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3794 Body_Weight<=Low_Density_Lipoprotein_Cholesterol*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "3795 Body_Weight<=maximum(mean_Body_Weight,Leukocytes____volume__in_Blood_by_Automated_count^2)\n", + "3796 Body_Weight>=latitude\n", + "3797 Body_Weight>=-active_care_plans+mean_Body_Weight\n", + "3798 Body_Weight>=mean_Body_Weight/active_care_plans\n", + "3799 Body_Weight>=mean_Body_Weight/active_conditions\n", + "3800 Body_Weight>=-healthcare_expenses\n", + "3801 Body_Weight>=minimum(active_condition_length,mean_Body_Weight)\n", + "3802 Body_Weight>=-encounters_lifetime_payer_coverage+mean_Body_Weight\n", + "3803 Body_Weight>=mean_Body_Weight-procedures_lifetime\n", + "3804 Body_Weight>=minimum(QALY,mean_Body_Weight)\n", + "3805 Body_Weight>=minimum(procedures_lifetime,mean_Body_Weight)\n", + "3806 Body_Weight>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Body_Weight)\n", + "3807 Body_Weight>=minimum(mean_Body_Weight,mean_Heart_rate)\n", + "3808 Body_Weight>=mean_Body_Weight^QOLS\n", + "3809 Body_Weight>=healthcare_expenses^longitude\n", + "3810 Body_Weight>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3811 Body_Weight>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Body_Weight\n", + "3812 Body_Weight>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Body_Weight)\n", + "3813 Body_Weight>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(lifetime_care_plan_length)/log(10)\n", + "3814 Body_Weight>=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Body_Weight)\n", + "3815 Body_Weight>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Weight)\n", + "3816 Body_Weight>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Body_Weight)\n", + "3817 Body_Weight>=minimum(mean_Body_Weight,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3818 Body_Weight>=minimum(mean_Body_Weight,mean_Calcium)\n", + "3819 Body_Weight>=minimum(mean_Body_Weight,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3820 Body_Weight>=maximum(mean_Body_Weight,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3821 Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "3822 Body_Weight>=minimum(mean_Body_Weight,10^device_lifetime_length)\n", + "3823 Body_Weight>=minimum(mean_Body_Weight,10^immunizations_lifetime)\n", + "3824 Body_Weight>=minimum(mean_Body_Weight,1/2*Systolic_Blood_Pressure)\n", + "3825 Body_Weight>=1/2*Triglycerides-immunizations_lifetime_cost\n", + "3826 Body_Weight>=device_lifetime_length*log(Carbon_Dioxide)/log(10)\n", + "3827 Body_Weight>=-healthcare_coverage+mean_Body_Weight\n", + "3828 Body_Weight>=Diastolic_Blood_Pressure-MCHC__Mass_volume__by_Automated_count\n", + "3829 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "3830 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(DALY,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3831 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^medications_lifetime\n", + "3832 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+1\n", + "3833 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Estimated_Glomerular_Filtration_Rate,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3834 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^active_care_plans\n", + "3835 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions^2\n", + "3836 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "3837 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "3838 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "3839 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Microalbumin_Creatinine_Ratio\n", + "3840 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Triglycerides,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3841 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(mean_Potassium)\n", + "3842 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(active_care_plans+1)/num_allergies\n", + "3843 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(Respiratory_rate+1)/Creatinine\n", + "3844 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "3845 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*encounters_lifetime_perc_covered^2\n", + "3846 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-active_condition_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3847 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+procedures_lifetime\n", + "3848 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(1/encounters_lifetime_perc_covered)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3849 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "3850 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Total_Cholesterol/Body_Weight\n", + "3851 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Estimated_Glomerular_Filtration_Rate,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "3852 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans/imaging_studies_lifetime\n", + "3853 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3854 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+healthcare_coverage\n", + "3855 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "3856 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(medications_lifetime_dispenses-1)/Microalbumin_Creatinine_Ratio\n", + "3857 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Triglycerides,10^healthcare_coverage)\n", + "3858 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost+procedures_lifetime\n", + "3859 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=MCH__Entitic_mass__by_Automated_count-mean_Carbon_Dioxide\n", + "3860 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(Carbon_Dioxide-1)/active_care_plans\n", + "3861 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Respiratory_rate-medications_active\n", + "3862 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^DALY/Estimated_Glomerular_Filtration_Rate\n", + "3863 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Heart_rate/device_lifetime_length\n", + "3864 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Estimated_Glomerular_Filtration_Rate,sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "3865 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/imaging_studies_lifetime\n", + "3866 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Triglycerides,10^medications_active)\n", + "3867 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(MCHC__Mass_volume__by_Automated_count)-procedures_lifetime\n", + "3868 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Microalbumin_Creatinine_Ratio)/medications_active\n", + "3869 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Creatinine*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3870 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^healthcare_expenses\n", + "3871 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "3872 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "3873 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=encounters_lifetime_perc_covered^healthcare_coverage\n", + "3874 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(num_allergies)/log(10)\n", + "3875 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-num_allergies\n", + "3876 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "3877 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+num_allergies\n", + "3878 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_conditions+medications_active+1\n", + "3879 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Carbon_Dioxide-mean_Estimated_Glomerular_Filtration_Rate\n", + "3880 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-immunizations_lifetime)^Body_Weight\n", + "3881 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3882 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "3883 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*device_lifetime_length-mean_Body_Mass_Index\n", + "3884 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-immunizations_lifetime_cost+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3885 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=immunizations_lifetime-procedures_lifetime_cost\n", + "3886 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-DALY+QOLS\n", + "3887 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-mean_Creatinine+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3888 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,immunizations_lifetime-1)\n", + "3889 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_lifetime_payer_coverage+imaging_studies_lifetime\n", + "3890 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime_length\n", + "3891 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime_cost\n", + "3892 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_conditions+immunizations_lifetime\n", + "3893 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(imaging_studies_lifetime,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3894 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "3895 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(QOLS)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3896 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3897 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Calcium-Urea_Nitrogen\n", + "3898 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+2*medications_active\n", + "3899 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*QOLS-healthcare_coverage\n", + "3900 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+active_conditions-1\n", + "3901 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Calcium+2*Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3902 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Body_Weight-mean_Body_Weight\n", + "3903 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Calcium+log(medications_lifetime_length)\n", + "3904 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Protein__Mass_volume__in_Serum,Plasma-mean_Glucose+1\n", + "3905 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Heart_rate+Protein__Mass_volume__in_Serum,Plasma+1\n", + "3906 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "3907 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-immunizations_lifetime)^Carbon_Dioxide\n", + "3908 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(High_Density_Lipoprotein_Cholesterol)-mean_Heart_rate\n", + "3909 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(lifetime_care_plans)/log(10))\n", + "3910 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*immunizations_lifetime-1\n", + "3911 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3912 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-QALY+floor(MCHC__Mass_volume__by_Automated_count)\n", + "3913 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Body_Weight+mean_Body_Weight\n", + "3914 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(1/mean_Creatinine)\n", + "3915 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "3916 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-mean_Heart_rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "3917 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Calcium)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3918 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(Microalbumin_Creatinine_Ratio)/log(10)-immunizations_lifetime_cost\n", + "3919 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime-immunizations_lifetime_cost+1\n", + "3920 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(e^procedures_lifetime)^DXA__T_score__Bone_density\n", + "3921 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-immunizations_lifetime)^QALY\n", + "3922 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Calcium-Microalbumin_Creatinine_Ratio-1\n", + "3923 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-QALY+1/2*active_condition_length\n", + "3924 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Glucose+floor(active_condition_length)\n", + "3925 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(DALY)/log(10)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3926 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-medications_lifetime_perc_covered)^encounters_count\n", + "3927 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,log(procedures_lifetime)/log(10))\n", + "3928 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Creatinine-procedures_lifetime_cost\n", + "3929 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Globulin__Mass_volume__in_Serum_by_calculation^2-Urea_Nitrogen\n", + "3930 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Globulin__Mass_volume__in_Serum_by_calculation-immunizations_lifetime_cost+1\n", + "3931 Body_Height<=healthcare_expenses\n", + "3932 Body_Height<=ceil(mean_Body_Height)\n", + "3933 Body_Height<=maximum(lifetime_condition_length,mean_Body_Height)\n", + "3934 Body_Height<=immunizations_lifetime+mean_Body_Height\n", + "3935 Body_Height<=Platelets____volume__in_Blood_by_Automated_count+Respiratory_rate\n", + "3936 Body_Height<=maximum(encounters_lifetime_payer_coverage,mean_Body_Height)\n", + "3937 Body_Height<=healthcare_coverage+mean_Body_Height\n", + "3938 Body_Height<=mean_Body_Height^active_care_plans\n", + "3939 Body_Height<=1/healthcare_expenses+mean_Body_Height\n", + "3940 Body_Height<=maximum(medications_lifetime,mean_Body_Height)\n", + "3941 Body_Height<=mean_Body_Height+medications_active\n", + "3942 Body_Height<=mean_Body_Height+procedures_lifetime\n", + "3943 Body_Height<=1/medications_lifetime_cost+mean_Body_Height\n", + "3944 Body_Height<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Height\n", + "3945 Body_Height<=maximum(Total_Cholesterol,mean_Body_Height)\n", + "3946 Body_Height<=maximum(mean_Body_Height,1/num_allergies)\n", + "3947 Body_Height<=maximum(mean_Body_Height,1/device_lifetime_length)\n", + "3948 Body_Height<=maximum(mean_Body_Height,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3949 Body_Height<=maximum(mean_Body_Height,1/imaging_studies_lifetime)\n", + "3950 Body_Height<=maximum(mean_Body_Height,10^procedures_lifetime)\n", + "3951 Body_Height<=maximum(mean_Body_Height,10^Creatinine)\n", + "3952 Body_Height>=latitude\n", + "3953 Body_Height>=floor(mean_Body_Height)\n", + "3954 Body_Height>=1/longitude+mean_Body_Height\n", + "3955 Body_Height>=minimum(Low_Density_Lipoprotein_Cholesterol,mean_Body_Height)\n", + "3956 Body_Height>=minimum(mean_Body_Height,2*age)\n", + "3957 Body_Height>=healthcare_expenses^longitude\n", + "3958 Body_Height>=-healthcare_coverage+mean_Body_Height\n", + "3959 Body_Height>=mean_Body_Height/active_care_plans\n", + "3960 Body_Height>=mean_Body_Height/active_conditions\n", + "3961 Body_Height>=-encounters_lifetime_payer_coverage+mean_Body_Height\n", + "3962 Body_Height>=-healthcare_expenses\n", + "3963 Body_Height>=minimum(mean_Body_Height,mean_Microalbumin_Creatinine_Ratio)\n", + "3964 Body_Height>=minimum(immunizations_lifetime_cost,mean_Body_Height)\n", + "3965 Body_Height>=mean_Body_Height-medications_lifetime_perc_covered\n", + "3966 Body_Height>=mean_Body_Height-medications_active\n", + "3967 Body_Height>=mean_Body_Height-procedures_lifetime\n", + "3968 Body_Height>=mean_Body_Height^QOLS\n", + "3969 Body_Height>=minimum(mean_Body_Height,10^num_allergies)\n", + "3970 Body_Height>=minimum(mean_Body_Height,mean_Calcium)\n", + "3971 Body_Height>=minimum(Systolic_Blood_Pressure,mean_Body_Height)\n", + "3972 Body_Height>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Height\n", + "3973 Body_Height>=minimum(mean_Body_Height,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3974 Body_Height>=maximum(mean_Body_Height,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3975 Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "3976 Body_Height>=minimum(mean_Body_Height,e^procedures_lifetime)\n", + "3977 Body_Height>=minimum(mean_Body_Height,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3978 Body_Height>=Erythrocytes____volume__in_Blood_by_Automated_count+Glucose+1\n", + "3979 Triglycerides<=healthcare_expenses\n", + "3980 Triglycerides<=(Globulin__Mass_volume__in_Serum_by_calculation+1)*age\n", + "3981 Triglycerides<=maximum(lifetime_condition_length,mean_Triglycerides)\n", + "3982 Triglycerides<=Carbon_Dioxide+mean_Triglycerides-1\n", + "3983 Triglycerides<=maximum(mean_Triglycerides,encounters_count^2)\n", + "3984 Triglycerides<=maximum(Total_Cholesterol,mean_Triglycerides)\n", + "3985 Triglycerides<=(Urea_Nitrogen-1)*Carbon_Dioxide\n", + "3986 Triglycerides<=10^Creatinine+mean_Triglycerides\n", + "3987 Triglycerides<=Potassium*lifetime_conditions^2\n", + "3988 Triglycerides<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Triglycerides\n", + "3989 Triglycerides<=Potassium*sqrt(medications_lifetime_length)\n", + "3990 Triglycerides<=(10^Creatinine)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3991 Triglycerides<=Microalbumin_Creatinine_Ratio+healthcare_coverage-1\n", + "3992 Triglycerides<=(encounters_lifetime_total_cost-1)^mean_Creatinine\n", + "3993 Triglycerides<=(medications_lifetime_cost-1)/mean_Triglycerides\n", + "3994 Triglycerides<=(encounters_lifetime_total_cost-1)/DALY\n", + "3995 Triglycerides<=(medications_lifetime_length-1)/device_lifetime_length\n", + "3996 Triglycerides<=Estimated_Glomerular_Filtration_Rate+2*medications_lifetime\n", + "3997 Triglycerides<=10^Potassium/mean_Estimated_Glomerular_Filtration_Rate\n", + "3998 Triglycerides<=(Heart_rate-1)*lifetime_care_plans\n", + "3999 Triglycerides<=Low_Density_Lipoprotein_Cholesterol^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4000 Triglycerides<=2*Urea_Nitrogen*mean_Calcium\n", + "4001 Triglycerides<=10^QOLS*Protein__Mass_volume__in_Serum,Plasma\n", + "4002 Triglycerides<=maximum(lifetime_condition_length,2*Heart_rate)\n", + "4003 Triglycerides<=Body_Mass_Index+Total_Cholesterol\n", + "4004 Triglycerides<=2*QALY*active_care_plans\n", + "4005 Triglycerides<=(Microalbumin_Creatinine_Ratio-1)*latitude\n", + "4006 Triglycerides<=10^medications_lifetime_perc_covered*Body_Height\n", + "4007 Triglycerides<=maximum(mean_Triglycerides,1/num_allergies)\n", + "4008 Triglycerides<=Protein__Mass_volume__in_Serum,Plasma+2*lifetime_care_plan_length\n", + "4009 Triglycerides<=1/2*lifetime_care_plan_length+mean_Triglycerides\n", + "4010 Triglycerides<=Low_Density_Lipoprotein_Cholesterol+2*lifetime_care_plan_length\n", + "4011 Triglycerides<=(e^Creatinine)^mean_Urea_Nitrogen\n", + "4012 Triglycerides<=DALY^2+mean_Triglycerides\n", + "4013 Triglycerides<=maximum(mean_Triglycerides,2*Glucose)\n", + "4014 Triglycerides<=1/device_lifetime_length+mean_Microalbumin_Creatinine_Ratio\n", + "4015 Triglycerides<=sqrt(encounters_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4016 Triglycerides<=mean_Triglycerides+1/2*medications_lifetime\n", + "4017 Triglycerides<=10^medications_active*lifetime_care_plan_length\n", + "4018 Triglycerides<=Body_Height+ceil(Microalbumin_Creatinine_Ratio)\n", + "4019 Triglycerides<=Glucose*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4020 Triglycerides<=2*Heart_rate+mean_Microalbumin_Creatinine_Ratio\n", + "4021 Triglycerides<=2*Diastolic_Blood_Pressure+Microalbumin_Creatinine_Ratio\n", + "4022 Triglycerides<=2*Body_Weight+immunizations_lifetime_cost\n", + "4023 Triglycerides<=Carbon_Dioxide^2/num_allergies\n", + "4024 Triglycerides<=1/2*High_Density_Lipoprotein_Cholesterol+mean_Triglycerides\n", + "4025 Triglycerides<=-Body_Height+2*Total_Cholesterol\n", + "4026 Triglycerides<=(1/2*Urea_Nitrogen)^Potassium\n", + "4027 Triglycerides<=maximum(mean_Triglycerides,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4028 Triglycerides<=Carbon_Dioxide*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4029 Triglycerides<=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Triglycerides\n", + "4030 Triglycerides>=latitude\n", + "4031 Triglycerides>=(Microalbumin_Creatinine_Ratio+1)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4032 Triglycerides>=1/2*Respiratory_rate*lifetime_conditions\n", + "4033 Triglycerides>=10^encounters_lifetime_perc_covered*DALY\n", + "4034 Triglycerides>=-immunizations_lifetime_cost+mean_Triglycerides\n", + "4035 Triglycerides>=minimum(mean_Triglycerides,e^medications_active)\n", + "4036 Triglycerides>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4037 Triglycerides>=healthcare_expenses^longitude\n", + "4038 Triglycerides>=Heart_rate+Respiratory_rate\n", + "4039 Triglycerides>=mean_Triglycerides^QOLS\n", + "4040 Triglycerides>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Triglycerides)\n", + "4041 Triglycerides>=minimum(mean_Triglycerides,1/2*lifetime_care_plan_length)\n", + "4042 Triglycerides>=-Microalbumin_Creatinine_Ratio+mean_Triglycerides\n", + "4043 Triglycerides>=minimum(immunizations_lifetime_cost,1/medications_active)\n", + "4044 Triglycerides>=1/2*Heart_rate*immunizations_lifetime\n", + "4045 Triglycerides>=minimum(mean_Triglycerides,mean_Urea_Nitrogen)\n", + "4046 Triglycerides>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)/encounters_lifetime_perc_covered\n", + "4047 Triglycerides>=2*Diastolic_Blood_Pressure-healthcare_coverage\n", + "4048 Triglycerides>=log(lifetime_care_plan_length)+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4049 Triglycerides>=(immunizations_lifetime-1)*encounters_count\n", + "4050 Triglycerides>=sqrt(procedures_lifetime_cost)/lifetime_care_plans\n", + "4051 Triglycerides>=DALY*log(medications_lifetime)/log(10)\n", + "4052 Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "4053 Triglycerides>=Estimated_Glomerular_Filtration_Rate*log(Potassium)\n", + "4054 Triglycerides>=Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*immunizations_lifetime_cost\n", + "4055 Triglycerides>=(e^medications_lifetime_perc_covered)^medications_active\n", + "4056 Triglycerides>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*procedures_lifetime/log(10)\n", + "4057 Triglycerides>=(num_allergies-1)*Body_Mass_Index\n", + "4058 Triglycerides>=DALY*ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4059 Triglycerides>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "4060 Triglycerides>=minimum(lifetime_care_plan_length,Low_Density_Lipoprotein_Cholesterol-1)\n", + "4061 Triglycerides>=-Chloride+2*Diastolic_Blood_Pressure\n", + "4062 Triglycerides>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "4063 Triglycerides>=sqrt(Microalbumin_Creatinine_Ratio)+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4064 Triglycerides>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Systolic_Blood_Pressure\n", + "4065 Triglycerides>=-Calcium+Chloride-1\n", + "4066 Triglycerides>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4067 Triglycerides>=1/2*encounters_count-procedures_lifetime_cost\n", + "4068 Triglycerides>=Creatinine*Hemoglobin_A1c_Hemoglobin_total_in_Blood^2\n", + "4069 Triglycerides>=2*Glucose-Protein__Mass_volume__in_Serum,Plasma\n", + "4070 Triglycerides>=ceil(Chloride)-procedures_lifetime_cost\n", + "4071 Triglycerides>=sqrt(encounters_lifetime_payer_coverage)-procedures_lifetime\n", + "4072 Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "4073 Low_Density_Lipoprotein_Cholesterol<=Total_Cholesterol-device_lifetime_length+1\n", + "4074 Low_Density_Lipoprotein_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*encounters_count\n", + "4075 Low_Density_Lipoprotein_Cholesterol<=ceil(Body_Height)\n", + "4076 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,10^DALY)\n", + "4077 Low_Density_Lipoprotein_Cholesterol<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4078 Low_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4079 Low_Density_Lipoprotein_Cholesterol<=(Globulin__Mass_volume__in_Serum_by_calculation+1)*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4080 Low_Density_Lipoprotein_Cholesterol<=10^encounters_lifetime_perc_covered*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4081 Low_Density_Lipoprotein_Cholesterol<=maximum(Sodium,Urea_Nitrogen^2)\n", + "4082 Low_Density_Lipoprotein_Cholesterol<=QALY*log(lifetime_care_plan_length)\n", + "4083 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4084 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "4085 Low_Density_Lipoprotein_Cholesterol<=(Calcium+1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4086 Low_Density_Lipoprotein_Cholesterol<=1/2*active_condition_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4087 Low_Density_Lipoprotein_Cholesterol<=Calcium^2/encounters_lifetime_perc_covered\n", + "4088 Low_Density_Lipoprotein_Cholesterol<=2*Heart_rate+Urea_Nitrogen\n", + "4089 Low_Density_Lipoprotein_Cholesterol<=-mean_Chloride+medications_lifetime_dispenses\n", + "4090 Low_Density_Lipoprotein_Cholesterol<=Heart_rate+mean_Diastolic_Blood_Pressure-1\n", + "4091 Low_Density_Lipoprotein_Cholesterol<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Heart_rate-1\n", + "4092 Low_Density_Lipoprotein_Cholesterol<=(Globulin__Mass_volume__in_Serum_by_calculation-1)*mean_Systolic_Blood_Pressure\n", + "4093 Low_Density_Lipoprotein_Cholesterol<=(DALY-1)*Estimated_Glomerular_Filtration_Rate\n", + "4094 Low_Density_Lipoprotein_Cholesterol<=Body_Height*log(active_care_plans)\n", + "4095 Low_Density_Lipoprotein_Cholesterol<=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_lifetime_perc_covered\n", + "4096 Low_Density_Lipoprotein_Cholesterol<=1/2*healthcare_expenses/lifetime_condition_length\n", + "4097 Low_Density_Lipoprotein_Cholesterol<=-Body_Mass_Index+Total_Cholesterol-1\n", + "4098 Low_Density_Lipoprotein_Cholesterol<=2*Diastolic_Blood_Pressure+active_conditions\n", + "4099 Low_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(lifetime_care_plan_length)\n", + "4100 Low_Density_Lipoprotein_Cholesterol<=Potassium^2*Urea_Nitrogen\n", + "4101 Low_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure+1/2*lifetime_care_plan_length\n", + "4102 Low_Density_Lipoprotein_Cholesterol<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*Diastolic_Blood_Pressure\n", + "4103 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "4104 Low_Density_Lipoprotein_Cholesterol<=-mean_Microalbumin_Creatinine_Ratio+1/2*medications_lifetime_dispenses\n", + "4105 Low_Density_Lipoprotein_Cholesterol<=latitude*log(medications_lifetime_length)/log(10)\n", + "4106 Low_Density_Lipoprotein_Cholesterol<=10^medications_active*mean_Glucose\n", + "4107 Low_Density_Lipoprotein_Cholesterol<=(QOLS+1)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4108 Low_Density_Lipoprotein_Cholesterol<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Diastolic_Blood_Pressure\n", + "4109 Low_Density_Lipoprotein_Cholesterol<=Heart_rate*log(Calcium)\n", + "4110 Low_Density_Lipoprotein_Cholesterol<=2*Body_Height-mean_Systolic_Blood_Pressure\n", + "4111 Low_Density_Lipoprotein_Cholesterol<=10^active_care_plans+immunizations_lifetime_cost\n", + "4112 Low_Density_Lipoprotein_Cholesterol<=sqrt(active_care_plans)*mean_Glucose\n", + "4113 Low_Density_Lipoprotein_Cholesterol<=maximum(lifetime_care_plan_length,2*Heart_rate)\n", + "4114 Low_Density_Lipoprotein_Cholesterol<=1/2*lifetime_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4115 Low_Density_Lipoprotein_Cholesterol<=(DALY+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4116 Low_Density_Lipoprotein_Cholesterol<=ceil(High_Density_Lipoprotein_Cholesterol)+mean_Systolic_Blood_Pressure\n", + "4117 Low_Density_Lipoprotein_Cholesterol<=Triglycerides*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4118 Low_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "4119 Low_Density_Lipoprotein_Cholesterol<=10^Globulin__Mass_volume__in_Serum_by_calculation+Creatinine\n", + "4120 Low_Density_Lipoprotein_Cholesterol<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/active_care_plans\n", + "4121 Low_Density_Lipoprotein_Cholesterol<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4122 Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "4123 Low_Density_Lipoprotein_Cholesterol>=-Glomerular_filtration_rate_1_73_sq_M_predicted+floor(age)\n", + "4124 Low_Density_Lipoprotein_Cholesterol>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "4125 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "4126 Low_Density_Lipoprotein_Cholesterol>=mean_Estimated_Glomerular_Filtration_Rate+mean_Potassium\n", + "4127 Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "4128 Low_Density_Lipoprotein_Cholesterol>=2*active_care_plans+mean_Estimated_Glomerular_Filtration_Rate\n", + "4129 Low_Density_Lipoprotein_Cholesterol>=minimum(Microalbumin_Creatinine_Ratio,Calcium^2)\n", + "4130 Low_Density_Lipoprotein_Cholesterol>=device_lifetime_length*log(active_conditions)\n", + "4131 Low_Density_Lipoprotein_Cholesterol>=Body_Height-Systolic_Blood_Pressure-1\n", + "4132 Low_Density_Lipoprotein_Cholesterol>=1/2*longitude+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4133 Low_Density_Lipoprotein_Cholesterol>=-Carbon_Dioxide+Diastolic_Blood_Pressure-1\n", + "4134 Low_Density_Lipoprotein_Cholesterol>=-Sodium+Total_Cholesterol\n", + "4135 Low_Density_Lipoprotein_Cholesterol>=-encounters_count+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4136 Low_Density_Lipoprotein_Cholesterol>=-immunizations_lifetime_cost+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4137 Low_Density_Lipoprotein_Cholesterol>=log(num_allergies)+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4138 Low_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/medications_lifetime\n", + "4139 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4140 Low_Density_Lipoprotein_Cholesterol>=-Urea_Nitrogen+mean_High_Density_Lipoprotein_Cholesterol\n", + "4141 Low_Density_Lipoprotein_Cholesterol>=2*Urea_Nitrogen+mean_Carbon_Dioxide\n", + "4142 Low_Density_Lipoprotein_Cholesterol>=active_condition_length-medications_active\n", + "4143 Low_Density_Lipoprotein_Cholesterol>=(DALY-1)^immunizations_lifetime\n", + "4144 Low_Density_Lipoprotein_Cholesterol>=sqrt(Urea_Nitrogen)*lifetime_conditions\n", + "4145 Low_Density_Lipoprotein_Cholesterol>=1/2*mean_Triglycerides*medications_lifetime_perc_covered\n", + "4146 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,10^immunizations_lifetime)\n", + "4147 Low_Density_Lipoprotein_Cholesterol>=DALY*log(lifetime_care_plan_length)/log(10)\n", + "4148 Low_Density_Lipoprotein_Cholesterol>=1/2*Microalbumin_Creatinine_Ratio-lifetime_care_plan_length\n", + "4149 Low_Density_Lipoprotein_Cholesterol>=encounters_count-healthcare_coverage+1\n", + "4150 Low_Density_Lipoprotein_Cholesterol>=sqrt(encounters_lifetime_payer_coverage)-mean_Microalbumin_Creatinine_Ratio\n", + "4151 Low_Density_Lipoprotein_Cholesterol>=(encounters_count+1)^medications_lifetime_perc_covered\n", + "4152 Low_Density_Lipoprotein_Cholesterol>=(1/2*medications_active)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4153 Low_Density_Lipoprotein_Cholesterol>=2*Calcium*num_allergies\n", + "4154 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4155 Low_Density_Lipoprotein_Cholesterol>=Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered^2\n", + "4156 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "4157 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered\n", + "4158 Low_Density_Lipoprotein_Cholesterol>=active_conditions*sqrt(procedures_lifetime)\n", + "4159 Low_Density_Lipoprotein_Cholesterol>=Heart_rate-medications_lifetime\n", + "4160 Low_Density_Lipoprotein_Cholesterol>=(log(DALY)/log(10))^Calcium\n", + "4161 Low_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(lifetime_care_plans)\n", + "4162 Low_Density_Lipoprotein_Cholesterol>=Microalbumin_Creatinine_Ratio-lifetime_condition_length+1\n", + "4163 Low_Density_Lipoprotein_Cholesterol>=floor(QALY)-mean_Creatinine\n", + "4164 Low_Density_Lipoprotein_Cholesterol>=-Microalbumin_Creatinine_Ratio+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4165 Low_Density_Lipoprotein_Cholesterol>=2*Body_Mass_Index+2\n", + "4166 Low_Density_Lipoprotein_Cholesterol>=Body_Mass_Index^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4167 Low_Density_Lipoprotein_Cholesterol>=1/2*ceil(mean_Systolic_Blood_Pressure)\n", + "4168 Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "4169 Low_Density_Lipoprotein_Cholesterol>=(2*High_Density_Lipoprotein_Cholesterol)^medications_lifetime_perc_covered\n", + "4170 High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "4171 High_Density_Lipoprotein_Cholesterol<=1/num_allergies+mean_High_Density_Lipoprotein_Cholesterol\n", + "4172 High_Density_Lipoprotein_Cholesterol<=(Total_Cholesterol-1)/immunizations_lifetime\n", + "4173 High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4174 High_Density_Lipoprotein_Cholesterol<=sqrt(Chloride)+Body_Weight\n", + "4175 High_Density_Lipoprotein_Cholesterol<=maximum(Systolic_Blood_Pressure,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4176 High_Density_Lipoprotein_Cholesterol<=2*active_conditions+mean_High_Density_Lipoprotein_Cholesterol\n", + "4177 High_Density_Lipoprotein_Cholesterol<=Body_Mass_Index*log(Estimated_Glomerular_Filtration_Rate)\n", + "4178 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "4179 High_Density_Lipoprotein_Cholesterol<=2*Body_Height/num_allergies\n", + "4180 High_Density_Lipoprotein_Cholesterol<=maximum(Sodium,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4181 High_Density_Lipoprotein_Cholesterol<=healthcare_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "4182 High_Density_Lipoprotein_Cholesterol<=10^medications_active*Heart_rate\n", + "4183 High_Density_Lipoprotein_Cholesterol<=1/2*active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "4184 High_Density_Lipoprotein_Cholesterol<=Potassium+2*QALY\n", + "4185 High_Density_Lipoprotein_Cholesterol<=(QOLS+1)*mean_High_Density_Lipoprotein_Cholesterol\n", + "4186 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,10^DALY)\n", + "4187 High_Density_Lipoprotein_Cholesterol<=maximum(mean_Glucose,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4188 High_Density_Lipoprotein_Cholesterol<=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+age\n", + "4189 High_Density_Lipoprotein_Cholesterol<=maximum(Heart_rate,2*Estimated_Glomerular_Filtration_Rate)\n", + "4190 High_Density_Lipoprotein_Cholesterol<=Calcium+Protein__Mass_volume__in_Serum,Plasma+1\n", + "4191 High_Density_Lipoprotein_Cholesterol<=ceil(active_condition_length)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4192 High_Density_Lipoprotein_Cholesterol<=1/2*Microalbumin_Creatinine_Ratio+mean_High_Density_Lipoprotein_Cholesterol\n", + "4193 High_Density_Lipoprotein_Cholesterol<=minimum(healthcare_expenses,2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "4194 High_Density_Lipoprotein_Cholesterol<=Urea_Nitrogen+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4195 High_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure^2/Triglycerides\n", + "4196 High_Density_Lipoprotein_Cholesterol<=Heart_rate+log(Low_Density_Lipoprotein_Cholesterol)\n", + "4197 High_Density_Lipoprotein_Cholesterol<=Heart_rate+immunizations_lifetime_cost-1\n", + "4198 High_Density_Lipoprotein_Cholesterol<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^lifetime_care_plan_length\n", + "4199 High_Density_Lipoprotein_Cholesterol<=2*Body_Mass_Index+mean_Body_Mass_Index\n", + "4200 High_Density_Lipoprotein_Cholesterol<=2*Body_Mass_Index+Carbon_Dioxide\n", + "4201 High_Density_Lipoprotein_Cholesterol<=(active_care_plans+1)*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4202 High_Density_Lipoprotein_Cholesterol<=log(Body_Mass_Index)*mean_High_Density_Lipoprotein_Cholesterol/log(10)\n", + "4203 High_Density_Lipoprotein_Cholesterol<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(active_care_plan_length)\n", + "4204 High_Density_Lipoprotein_Cholesterol<=1/2*Estimated_Glomerular_Filtration_Rate-longitude\n", + "4205 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4206 High_Density_Lipoprotein_Cholesterol<=10^Potassium/Heart_rate\n", + "4207 High_Density_Lipoprotein_Cholesterol<=2*Estimated_Glomerular_Filtration_Rate+active_condition_length\n", + "4208 High_Density_Lipoprotein_Cholesterol<=2*active_condition_length/medications_lifetime_perc_covered\n", + "4209 High_Density_Lipoprotein_Cholesterol<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_High_Density_Lipoprotein_Cholesterol\n", + "4210 High_Density_Lipoprotein_Cholesterol<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^active_conditions\n", + "4211 High_Density_Lipoprotein_Cholesterol<=Protein__Mass_volume__in_Serum,Plasma^2/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4212 High_Density_Lipoprotein_Cholesterol<=Calcium^2+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4213 High_Density_Lipoprotein_Cholesterol<=2*Estimated_Glomerular_Filtration_Rate+procedures_lifetime_cost\n", + "4214 High_Density_Lipoprotein_Cholesterol>=longitude\n", + "4215 High_Density_Lipoprotein_Cholesterol>=-Chloride+Systolic_Blood_Pressure\n", + "4216 High_Density_Lipoprotein_Cholesterol>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(DALY)\n", + "4217 High_Density_Lipoprotein_Cholesterol>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4218 High_Density_Lipoprotein_Cholesterol>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4219 High_Density_Lipoprotein_Cholesterol>=-active_conditions+mean_High_Density_Lipoprotein_Cholesterol\n", + "4220 High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "4221 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4222 High_Density_Lipoprotein_Cholesterol>=log(lifetime_condition_length)*mean_Respiratory_rate/log(10)\n", + "4223 High_Density_Lipoprotein_Cholesterol>=-mean_Calcium+mean_High_Density_Lipoprotein_Cholesterol\n", + "4224 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol*sqrt(medications_lifetime_perc_covered)\n", + "4225 High_Density_Lipoprotein_Cholesterol>=(1/2*lifetime_care_plan_length)^medications_lifetime_perc_covered\n", + "4226 High_Density_Lipoprotein_Cholesterol>=Creatinine*log(medications_lifetime_dispenses)\n", + "4227 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^QOLS\n", + "4228 High_Density_Lipoprotein_Cholesterol>=2*Body_Mass_Index-Carbon_Dioxide\n", + "4229 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,latitude-1)\n", + "4230 High_Density_Lipoprotein_Cholesterol>=(Diastolic_Blood_Pressure+1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4231 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,medications_active^2)\n", + "4232 High_Density_Lipoprotein_Cholesterol>=-Calcium+mean_High_Density_Lipoprotein_Cholesterol\n", + "4233 High_Density_Lipoprotein_Cholesterol>=device_lifetime_length*log(active_care_plans)/log(10)\n", + "4234 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4235 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "4236 High_Density_Lipoprotein_Cholesterol>=(Body_Mass_Index-1)/Creatinine\n", + "4237 High_Density_Lipoprotein_Cholesterol>=floor(e^immunizations_lifetime)\n", + "4238 High_Density_Lipoprotein_Cholesterol>=log(medications_lifetime_cost)*num_allergies\n", + "4239 High_Density_Lipoprotein_Cholesterol>=1/2*medications_lifetime/Urea_Nitrogen\n", + "4240 High_Density_Lipoprotein_Cholesterol>=log(e^mean_Body_Weight)/log(10)\n", + "4241 High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "4242 High_Density_Lipoprotein_Cholesterol>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4243 High_Density_Lipoprotein_Cholesterol>=sqrt(healthcare_expenses)/active_care_plan_length\n", + "4244 High_Density_Lipoprotein_Cholesterol>=sqrt(age)*mean_Creatinine\n", + "4245 High_Density_Lipoprotein_Cholesterol>=(lifetime_condition_length+1)/medications_lifetime\n", + "4246 High_Density_Lipoprotein_Cholesterol>=(e^Creatinine)^imaging_studies_lifetime\n", + "4247 High_Density_Lipoprotein_Cholesterol>=sqrt(active_care_plan_length)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4248 High_Density_Lipoprotein_Cholesterol>=(log(active_conditions)/log(10))^Urea_Nitrogen\n", + "4249 High_Density_Lipoprotein_Cholesterol>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_condition_length-1\n", + "4250 High_Density_Lipoprotein_Cholesterol>=active_condition_length^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "4251 High_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(procedures_lifetime)\n", + "4252 High_Density_Lipoprotein_Cholesterol>=-Body_Mass_Index+1/2*Systolic_Blood_Pressure\n", + "4253 High_Density_Lipoprotein_Cholesterol>=(2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^medications_lifetime_perc_covered\n", + "4254 High_Density_Lipoprotein_Cholesterol>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4255 High_Density_Lipoprotein_Cholesterol>=mean_Estimated_Glomerular_Filtration_Rate/mean_Creatinine\n", + "4256 Creatinine<=healthcare_expenses\n", + "4257 Creatinine<=-DALY+High_Density_Lipoprotein_Cholesterol\n", + "4258 Creatinine<=e^(mean_Creatinine-1)\n", + "4259 Creatinine<=mean_Creatinine+procedures_lifetime\n", + "4260 Creatinine<=active_conditions*mean_Creatinine\n", + "4261 Creatinine<=Sodium/mean_Estimated_Glomerular_Filtration_Rate\n", + "4262 Creatinine<=Potassium+immunizations_lifetime_cost\n", + "4263 Creatinine<=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*Respiratory_rate\n", + "4264 Creatinine<=active_care_plans*mean_Creatinine\n", + "4265 Creatinine<=maximum(mean_Creatinine,1/2*medications_lifetime)\n", + "4266 Creatinine<=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/mean_Glucose\n", + "4267 Creatinine<=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Body_Weight\n", + "4268 Creatinine<=log(Hemoglobin__Mass_volume__in_Blood)/log(10)+mean_Creatinine\n", + "4269 Creatinine<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "4270 Creatinine<=maximum(active_care_plans,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4271 Creatinine<=(Triglycerides-1)/Estimated_Glomerular_Filtration_Rate\n", + "4272 Creatinine<=1/2*Microalbumin_Creatinine_Ratio/immunizations_lifetime\n", + "4273 Creatinine<=Calcium-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4274 Creatinine<=maximum(DALY,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4275 Creatinine<=(10^QOLS)^mean_Creatinine\n", + "4276 Creatinine<=Urea_Nitrogen-active_care_plans\n", + "4277 Creatinine<=maximum(Respiratory_rate,mean_Creatinine)\n", + "4278 Creatinine<=10^immunizations_lifetime-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4279 Creatinine<=(2*Body_Weight)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4280 Creatinine<=maximum(mean_Creatinine,1/imaging_studies_lifetime)\n", + "4281 Creatinine<=active_care_plans+immunizations_lifetime_cost+1\n", + "4282 Creatinine<=DALY+active_care_plans\n", + "4283 Creatinine<=maximum(Estimated_Glomerular_Filtration_Rate,1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4284 Creatinine<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+ceil(Potassium)\n", + "4285 Creatinine<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-QOLS\n", + "4286 Creatinine<=mean_Creatinine^Estimated_Glomerular_Filtration_Rate\n", + "4287 Creatinine<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4288 Creatinine<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1)/device_lifetime_length\n", + "4289 Creatinine<=active_care_plans^2/num_allergies\n", + "4290 Creatinine<=(active_care_plans-1)/imaging_studies_lifetime\n", + "4291 Creatinine<=Respiratory_rate-medications_active\n", + "4292 Creatinine<=Hemoglobin_A1c_Hemoglobin_total_in_Blood/QOLS\n", + "4293 Creatinine<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+High_Density_Lipoprotein_Cholesterol\n", + "4294 Creatinine<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Potassium\n", + "4295 Creatinine<=mean_Potassium+procedures_lifetime_cost-1\n", + "4296 Creatinine<=-active_condition_length+ceil(age)\n", + "4297 Creatinine<=maximum(active_care_plans,1/device_lifetime_length)\n", + "4298 Creatinine<=1/imaging_studies_lifetime+procedures_lifetime\n", + "4299 Creatinine<=2*Chloride/device_lifetime_length\n", + "4300 Creatinine<=Body_Height-Low_Density_Lipoprotein_Cholesterol+1\n", + "4301 Creatinine<=2*QOLS*mean_Microalbumin_Creatinine_Ratio\n", + "4302 Creatinine<=mean_Triglycerides/Estimated_Glomerular_Filtration_Rate\n", + "4303 Creatinine<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*mean_Creatinine\n", + "4304 Creatinine<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4305 Creatinine<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/imaging_studies_lifetime\n", + "4306 Creatinine>=longitude\n", + "4307 Creatinine>=healthcare_expenses^longitude\n", + "4308 Creatinine>=(1/active_care_plans)\n", + "4309 Creatinine>=minimum(mean_Creatinine,-Triglycerides)\n", + "4310 Creatinine>=minimum(num_allergies,sqrt(Urea_Nitrogen))\n", + "4311 Creatinine>=log(Microalbumin_Creatinine_Ratio)/log(10)-imaging_studies_lifetime\n", + "4312 Creatinine>=log(Triglycerides)/mean_Urea_Nitrogen\n", + "4313 Creatinine>=log(Microalbumin_Creatinine_Ratio)/active_care_plans\n", + "4314 Creatinine>=2*Heart_rate/Platelets____volume__in_Blood_by_Automated_count\n", + "4315 Creatinine>=floor(QOLS)\n", + "4316 Creatinine>=(1/DALY)^mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4317 Creatinine>=sqrt(High_Density_Lipoprotein_Cholesterol)-healthcare_coverage\n", + "4318 Creatinine>=(1/Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4319 Creatinine>=QOLS-immunizations_lifetime\n", + "4320 Creatinine>=minimum(mean_Creatinine,-Respiratory_rate)\n", + "4321 Creatinine>=minimum(mean_Creatinine,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4322 Creatinine>=ceil(DALY)/mean_Estimated_Glomerular_Filtration_Rate\n", + "4323 Creatinine>=1/2*Albumin__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "4324 Creatinine>=1/2*DALY-Hemoglobin__Mass_volume__in_Blood\n", + "4325 Creatinine>=immunizations_lifetime^2/Calcium\n", + "4326 Creatinine>=mean_Creatinine/active_conditions\n", + "4327 Creatinine>=mean_Creatinine/Potassium\n", + "4328 Creatinine>=-DALY+log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4329 Creatinine>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)/lifetime_care_plans\n", + "4330 Creatinine>=(lifetime_care_plans-1)/Urea_Nitrogen\n", + "4331 Creatinine>=active_care_plan_length+longitude\n", + "4332 Creatinine>=mean_Creatinine/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4333 Creatinine>=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*mean_Creatinine/log(10)\n", + "4334 Creatinine>=MCHC__Mass_volume__by_Automated_count-QALY+1\n", + "4335 Creatinine>=-immunizations_lifetime_cost+procedures_lifetime-1\n", + "4336 Creatinine>=1/2*Estimated_Glomerular_Filtration_Rate/encounters_count\n", + "4337 Creatinine>=imaging_studies_lifetime/active_care_plans\n", + "4338 Creatinine>=floor(log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10))\n", + "4339 Creatinine>=floor(device_lifetime_length)/encounters_count\n", + "4340 Creatinine>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*sqrt(num_allergies)\n", + "4341 Creatinine>=floor(log(mean_Microalbumin_Creatinine_Ratio)/log(10))\n", + "4342 Creatinine>=1/2*Microalbumin_Creatinine_Ratio/lifetime_care_plan_length\n", + "4343 Creatinine>=mean_Creatinine-medications_lifetime\n", + "4344 Creatinine>=-QOLS+1\n", + "4345 Creatinine>=-active_conditions+medications_active+1\n", + "4346 Creatinine>=1/2*medications_lifetime_dispenses/encounters_lifetime_total_cost\n", + "4347 Creatinine>=1/2*num_allergies+1/2\n", + "4348 Creatinine>=(10^healthcare_expenses)^longitude\n", + "4349 Creatinine>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*procedures_lifetime\n", + "4350 Creatinine>=log(active_care_plans)/log(10)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4351 Creatinine>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(active_care_plan_length)\n", + "4352 Creatinine>=minimum(mean_Creatinine,log(device_lifetime_length)/log(10))\n", + "4353 Creatinine>=log(medications_lifetime)/log(10)-medications_active\n", + "4354 Creatinine>=1/encounters_lifetime_perc_covered-Globulin__Mass_volume__in_Serum_by_calculation\n", + "4355 Sodium<=healthcare_expenses\n", + "4356 Sodium<=Chloride+floor(latitude)\n", + "4357 Sodium<=log(latitude)+mean_Sodium\n", + "4358 Sodium<=-Calcium+Total_Cholesterol\n", + "4359 Sodium<=mean_Sodium+2*procedures_lifetime\n", + "4360 Sodium<=mean_Sodium^active_care_plans\n", + "4361 Sodium<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Diastolic_Blood_Pressure\n", + "4362 Sodium<=mean_Sodium+procedures_lifetime_cost\n", + "4363 Sodium<=Respiratory_rate^2\n", + "4364 Sodium<=maximum(mean_Sodium,encounters_count^2)\n", + "4365 Sodium<=e^Leukocytes____volume__in_Blood_by_Automated_count+mean_Chloride\n", + "4366 Sodium<=age^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4367 Sodium<=maximum(medications_lifetime_length,mean_Sodium)\n", + "4368 Sodium<=1/2*active_conditions+mean_Sodium\n", + "4369 Sodium<=Calcium^2+Glucose\n", + "4370 Sodium<=mean_Sodium^active_conditions\n", + "4371 Sodium<=(Potassium-1)*age\n", + "4372 Sodium<=-Protein__Mass_volume__in_Serum,Plasma+2*Systolic_Blood_Pressure\n", + "4373 Sodium<=log(active_condition_length)+mean_Sodium\n", + "4374 Sodium<=Protein__Mass_volume__in_Serum,Plasma+ceil(Glucose)\n", + "4375 Sodium<=maximum(mean_Sodium,2*lifetime_condition_length)\n", + "4376 Sodium<=maximum(Body_Height,mean_Sodium)\n", + "4377 Sodium<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Heart_rate\n", + "4378 Sodium<=1/2*Leukocytes____volume__in_Blood_by_Automated_count+mean_Sodium\n", + "4379 Sodium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4380 Sodium<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)*Potassium\n", + "4381 Sodium<=maximum(mean_Sodium,10^medications_lifetime)\n", + "4382 Sodium<=(High_Density_Lipoprotein_Cholesterol^2)^mean_Creatinine\n", + "4383 Sodium<=floor(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)+mean_Chloride\n", + "4384 Sodium<=QALY+mean_Systolic_Blood_Pressure-1\n", + "4385 Sodium<=maximum(mean_Sodium,sqrt(medications_lifetime_cost))\n", + "4386 Sodium<=Body_Weight+2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4387 Sodium<=log(QALY)+mean_Sodium\n", + "4388 Sodium<=Low_Density_Lipoprotein_Cholesterol+mean_Heart_rate-1\n", + "4389 Sodium<=maximum(mean_Sodium,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4390 Sodium<=Estimated_Glomerular_Filtration_Rate^2+High_Density_Lipoprotein_Cholesterol\n", + "4391 Sodium<=Diastolic_Blood_Pressure+mean_Heart_rate+1\n", + "4392 Sodium<=floor(mean_Respiratory_rate)^2\n", + "4393 Sodium<=Respiratory_rate^2-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4394 Sodium<=Heart_rate^2/Carbon_Dioxide\n", + "4395 Sodium<=log(Heart_rate)*mean_High_Density_Lipoprotein_Cholesterol\n", + "4396 Sodium<=2*Diastolic_Blood_Pressure-num_allergies\n", + "4397 Sodium<=2*Diastolic_Blood_Pressure-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4398 Sodium<=e^Erythrocytes____volume__in_Blood_by_Automated_count+mean_Diastolic_Blood_Pressure\n", + "4399 Sodium<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Systolic_Blood_Pressure\n", + "4400 Sodium<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Triglycerides\n", + "4401 Sodium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*active_care_plan_length\n", + "4402 Sodium<=(log(Glucose)/log(10))^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4403 Sodium<=Body_Weight*log(Urea_Nitrogen)\n", + "4404 Sodium<=log(Calcium)*mean_Glucose\n", + "4405 Sodium<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+mean_Sodium\n", + "4406 Sodium<=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Sodium\n", + "4407 Sodium<=Erythrocytes____volume__in_Blood_by_Automated_count+mean_Sodium-1\n", + "4408 Sodium<=10^Microalbumin_Creatinine_Ratio/mean_High_Density_Lipoprotein_Cholesterol\n", + "4409 Sodium>=latitude\n", + "4410 Sodium>=-Potassium+mean_Sodium\n", + "4411 Sodium>=Creatinine*mean_Estimated_Glomerular_Filtration_Rate\n", + "4412 Sodium>=-DALY+mean_Sodium\n", + "4413 Sodium>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Sodium\n", + "4414 Sodium>=healthcare_expenses^longitude\n", + "4415 Sodium>=minimum(mean_Sodium,1/2*Respiratory_rate)\n", + "4416 Sodium>=minimum(mean_Sodium,1/2*Triglycerides)\n", + "4417 Sodium>=Urea_Nitrogen*sqrt(procedures_lifetime)\n", + "4418 Sodium>=active_care_plan_length*log(medications_active)\n", + "4419 Sodium>=Diastolic_Blood_Pressure+ceil(DALY)\n", + "4420 Sodium>=mean_Sodium/active_conditions\n", + "4421 Sodium>=(MCHC__Mass_volume__by_Automated_count^2)^encounters_lifetime_perc_covered\n", + "4422 Sodium>=2*Estimated_Glomerular_Filtration_Rate-active_condition_length\n", + "4423 Sodium>=ceil(active_condition_length)/Creatinine\n", + "4424 Sodium>=sqrt(medications_lifetime)+Chloride\n", + "4425 Sodium>=ceil(device_lifetime_length)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4426 Sodium>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Systolic_Blood_Pressure+1\n", + "4427 Sodium>=-High_Density_Lipoprotein_Cholesterol+1/2*Microalbumin_Creatinine_Ratio\n", + "4428 Sodium>=Calcium*sqrt(Triglycerides)\n", + "4429 Sodium>=-active_condition_length+mean_Systolic_Blood_Pressure\n", + "4430 Sodium>=mean_Sodium/active_care_plans\n", + "4431 Sodium>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Sodium)\n", + "4432 Sodium>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Sodium\n", + "4433 Sodium>=Body_Height-mean_High_Density_Lipoprotein_Cholesterol-1\n", + "4434 Sodium>=-mean_Potassium+mean_Sodium\n", + "4435 Sodium>=Carbon_Dioxide+floor(Chloride)\n", + "4436 Sodium>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Body_Height+1\n", + "4437 Sodium>=sqrt(procedures_lifetime_cost)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4438 Sodium>=mean_Sodium^QOLS\n", + "4439 Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "4440 Sodium>=log(healthcare_expenses)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4441 Sodium>=2*Low_Density_Lipoprotein_Cholesterol-mean_Triglycerides\n", + "4442 Sodium>=mean_Glucose*sqrt(medications_lifetime_perc_covered)\n", + "4443 Sodium>=Body_Weight+ceil(Carbon_Dioxide)\n", + "4444 Sodium>=sqrt(High_Density_Lipoprotein_Cholesterol)*Respiratory_rate\n", + "4445 Sodium>=sqrt(medications_lifetime_cost)/medications_lifetime\n", + "4446 Sodium>=-encounters_lifetime_payer_coverage+mean_Sodium\n", + "4447 Sodium>=Low_Density_Lipoprotein_Cholesterol*log(num_allergies)\n", + "4448 Sodium>=log(lifetime_care_plans)*mean_Sodium/log(10)\n", + "4449 Sodium>=maximum(Low_Density_Lipoprotein_Cholesterol,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4450 Sodium>=Low_Density_Lipoprotein_Cholesterol*sqrt(medications_lifetime_perc_covered)\n", + "4451 Sodium>=minimum(mean_Sodium,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4452 Sodium>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*mean_High_Density_Lipoprotein_Cholesterol/log(10)\n", + "4453 Sodium>=1/2*lifetime_conditions*mean_Urea_Nitrogen\n", + "4454 Sodium>=(Carbon_Dioxide+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4455 Sodium>=Erythrocytes____volume__in_Blood_by_Automated_count*procedures_lifetime\n", + "4456 Sodium>=log(active_condition_length)*mean_High_Density_Lipoprotein_Cholesterol/log(10)\n", + "4457 Sodium>=Diastolic_Blood_Pressure+e^immunizations_lifetime\n", + "4458 Sodium>=minimum(Low_Density_Lipoprotein_Cholesterol,1/2*immunizations_lifetime_cost)\n", + "4459 Sodium>=1/2*medications_lifetime/lifetime_care_plans\n", + "4460 Sodium>=sqrt(medications_lifetime_dispenses)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4461 Sodium>=minimum(lifetime_care_plan_length,1/medications_active)\n", + "4462 Potassium<=healthcare_expenses\n", + "4463 Potassium<=1/2*Creatinine+mean_Potassium\n", + "4464 Potassium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/log(10)\n", + "4465 Potassium<=High_Density_Lipoprotein_Cholesterol^(1/log(10))\n", + "4466 Potassium<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/imaging_studies_lifetime\n", + "4467 Potassium<=1/imaging_studies_lifetime+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4468 Potassium<=maximum(mean_Potassium,sqrt(encounters_count))\n", + "4469 Potassium<=Microalbumin_Creatinine_Ratio*mean_Creatinine\n", + "4470 Potassium<=DALY+Erythrocytes____volume__in_Blood_by_Automated_count-1\n", + "4471 Potassium<=Erythrocytes____volume__in_Blood_by_Automated_count/QOLS\n", + "4472 Potassium<=maximum(medications_lifetime,mean_Potassium)\n", + "4473 Potassium<=1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1/2\n", + "4474 Potassium<=Carbon_Dioxide^2/Body_Weight\n", + "4475 Potassium<=sqrt(QOLS)+mean_Potassium\n", + "4476 Potassium<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions\n", + "4477 Potassium<=(active_condition_length-1)/mean_Creatinine\n", + "4478 Potassium<=mean_Potassium^active_conditions\n", + "4479 Potassium<=mean_Potassium+medications_active\n", + "4480 Potassium<=sqrt(Low_Density_Lipoprotein_Cholesterol)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4481 Potassium<=maximum(active_conditions,mean_Potassium)\n", + "4482 Potassium<=Erythrocytes____volume__in_Blood_by_Automated_count+2*QOLS\n", + "4483 Potassium<=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*QOLS\n", + "4484 Potassium<=maximum(mean_Potassium,1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4485 Potassium<=Calcium-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4486 Potassium<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/encounters_count\n", + "4487 Potassium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-medications_active-1\n", + "4488 Potassium<=2*QOLS+mean_Potassium\n", + "4489 Potassium<=ceil(latitude)-mean_Body_Mass_Index\n", + "4490 Potassium<=Creatinine+encounters_count\n", + "4491 Potassium<=immunizations_lifetime+log(Systolic_Blood_Pressure)\n", + "4492 Potassium<=Calcium-immunizations_lifetime-1\n", + "4493 Potassium<=maximum(Respiratory_rate,mean_Potassium)\n", + "4494 Potassium<=maximum(mean_Potassium,sqrt(medications_lifetime))\n", + "4495 Potassium<=ceil(Calcium)-num_allergies\n", + "4496 Potassium<=Globulin__Mass_volume__in_Serum_by_calculation^2+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4497 Potassium<=mean_Total_Cholesterol/DALY\n", + "4498 Potassium<=Creatinine*sqrt(age)\n", + "4499 Potassium<=(Diastolic_Blood_Pressure+1)/Respiratory_rate\n", + "4500 Potassium<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*lifetime_conditions\n", + "4501 Potassium<=maximum(Estimated_Glomerular_Filtration_Rate,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4502 Potassium<=ceil(log(healthcare_expenses)/log(10))\n", + "4503 Potassium<=Creatinine+Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "4504 Potassium<=mean_Low_Density_Lipoprotein_Cholesterol/lifetime_conditions\n", + "4505 Potassium<=mean_Potassium^active_care_plans\n", + "4506 Potassium<=ceil(log(Triglycerides))\n", + "4507 Potassium<=Bilirubin_total__Mass_volume__in_Serum,Plasma*sqrt(medications_lifetime_length)\n", + "4508 Potassium<=Carbon_Dioxide^2/mean_Body_Weight\n", + "4509 Potassium<=1/2*Urea_Nitrogen+mean_Creatinine\n", + "4510 Potassium<=-active_care_plan_length+floor(Body_Weight)\n", + "4511 Potassium<=Chloride-Heart_rate-1\n", + "4512 Potassium<=sqrt(Respiratory_rate)/encounters_lifetime_perc_covered\n", + "4513 Potassium<=1/2*lifetime_care_plan_length/Creatinine\n", + "4514 Potassium<=maximum(mean_Potassium,1/2*encounters_count)\n", + "4515 Potassium<=(QALY-1)/active_care_plans\n", + "4516 Potassium<=healthcare_coverage+log(Body_Weight)\n", + "4517 Potassium<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Albumin__Mass_volume__in_Serum,Plasma\n", + "4518 Potassium<=log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)+mean_Potassium\n", + "4519 Potassium<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Urea_Nitrogen+1\n", + "4520 Potassium<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Globulin__Mass_volume__in_Serum_by_calculation\n", + "4521 Potassium>=longitude\n", + "4522 Potassium>=minimum(mean_Potassium,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4523 Potassium>=minimum(mean_Potassium,-Respiratory_rate)\n", + "4524 Potassium>=(immunizations_lifetime-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4525 Potassium>=healthcare_expenses^longitude\n", + "4526 Potassium>=num_allergies-1\n", + "4527 Potassium>=-QOLS+log(High_Density_Lipoprotein_Cholesterol)\n", + "4528 Potassium>=(device_lifetime_length+1)/Respiratory_rate\n", + "4529 Potassium>=minimum(mean_Potassium,e^imaging_studies_lifetime)\n", + "4530 Potassium>=2*Systolic_Blood_Pressure/Low_Density_Lipoprotein_Cholesterol\n", + "4531 Potassium>=sqrt(Respiratory_rate)\n", + "4532 Potassium>=mean_Potassium^QOLS\n", + "4533 Potassium>=sqrt(Total_Cholesterol)/mean_Potassium\n", + "4534 Potassium>=-Carbon_Dioxide+mean_Carbon_Dioxide\n", + "4535 Potassium>=sqrt(Systolic_Blood_Pressure)-Urea_Nitrogen\n", + "4536 Potassium>=(Creatinine+1)*medications_lifetime_perc_covered\n", + "4537 Potassium>=Creatinine*log(active_care_plans)/log(10)\n", + "4538 Potassium>=log(Heart_rate)-procedures_lifetime\n", + "4539 Potassium>=2*Albumin__Mass_volume__in_Serum,Plasma-active_conditions\n", + "4540 Potassium>=log(Hemoglobin__Mass_volume__in_Blood)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported/log(10)\n", + "4541 Potassium>=mean_Creatinine/Creatinine\n", + "4542 Potassium>=minimum(mean_Potassium,-Triglycerides)\n", + "4543 Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,10^encounters_lifetime_perc_covered)\n", + "4544 Potassium>=1/2*Leukocytes____volume__in_Blood_by_Automated_count-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4545 Potassium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(High_Density_Lipoprotein_Cholesterol)\n", + "4546 Potassium>=1/2*Body_Mass_Index-Estimated_Glomerular_Filtration_Rate\n", + "4547 Potassium>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/age\n", + "4548 Potassium>=Calcium^2/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4549 Potassium>=Diastolic_Blood_Pressure/Carbon_Dioxide\n", + "4550 Potassium>=sqrt(Microalbumin_Creatinine_Ratio)^encounters_lifetime_perc_covered\n", + "4551 Potassium>=Diastolic_Blood_Pressure/mean_Carbon_Dioxide\n", + "4552 Potassium>=mean_Potassium/active_care_plans\n", + "4553 Potassium>=minimum(Creatinine,10^QOLS)\n", + "4554 Potassium>=mean_High_Density_Lipoprotein_Cholesterol/active_care_plan_length\n", + "4555 Potassium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(Creatinine)\n", + "4556 Potassium>=Creatinine-immunizations_lifetime_cost\n", + "4557 Potassium>=mean_Potassium/active_conditions\n", + "4558 Potassium>=2*High_Density_Lipoprotein_Cholesterol/QALY\n", + "4559 Potassium>=minimum(device_lifetime_length,procedures_lifetime-1)\n", + "4560 Potassium>=2/DALY\n", + "4561 Potassium>=minimum(medications_active,sqrt(Urea_Nitrogen))\n", + "4562 Potassium>=Carbon_Dioxide-mean_Carbon_Dioxide+1\n", + "4563 Potassium>=1/medications_active+Globulin__Mass_volume__in_Serum_by_calculation\n", + "4564 Potassium>=(Microalbumin_Creatinine_Ratio+1)/age\n", + "4565 Potassium>=mean_Diastolic_Blood_Pressure/mean_Carbon_Dioxide\n", + "4566 Potassium>=mean_Microalbumin_Creatinine_Ratio/lifetime_care_plan_length\n", + "4567 Potassium>=-encounters_lifetime_payer_coverage+mean_Potassium\n", + "4568 Potassium>=immunizations_lifetime^2-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4569 Potassium>=sqrt(active_condition_length)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "4570 Potassium>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,1/2*medications_active)\n", + "4571 Potassium>=(10^healthcare_expenses)^longitude\n", + "4572 Potassium>=minimum(mean_Potassium,1/2*lifetime_care_plans)\n", + "4573 Potassium>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+active_care_plans+1\n", + "4574 Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,sqrt(active_conditions))\n", + "4575 Potassium>=minimum(mean_Creatinine,log(active_care_plan_length))\n", + "4576 Potassium>=minimum(Creatinine,log(active_condition_length))\n", + "4577 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "4578 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Triglycerides,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4579 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/2*QOLS+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4580 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Creatinine+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4581 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4582 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(DALY,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4583 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=immunizations_lifetime+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4584 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_conditions,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4585 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Microalbumin_Creatinine_Ratio)\n", + "4586 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(medications_lifetime,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4587 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,sqrt(Microalbumin_Creatinine_Ratio))\n", + "4588 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "4589 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_conditions\n", + "4590 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "4591 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/procedures_lifetime+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4592 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "4593 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4594 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4595 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/lifetime_care_plans+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4596 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Bilirubin_total__Mass_volume__in_Serum,Plasma*active_conditions^2\n", + "4597 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=sqrt(Systolic_Blood_Pressure)/num_allergies\n", + "4598 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-DALY+floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4599 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/imaging_studies_lifetime)\n", + "4600 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "4601 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/medications_active+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4602 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Leukocytes____volume__in_Blood_by_Automated_count+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4603 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "4604 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*QOLS+1\n", + "4605 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4606 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^encounters_lifetime_perc_covered)\n", + "4607 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Total_Cholesterol/lifetime_care_plan_length\n", + "4608 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4609 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "4610 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime_perc_covered\n", + "4611 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(num_allergies,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4612 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "4613 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*QOLS\n", + "4614 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4615 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*lifetime_care_plans)\n", + "4616 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(encounters_lifetime_perc_covered)/log(10)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4617 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4618 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(device_lifetime_length,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4619 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(immunizations_lifetime_cost)/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4620 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "4621 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/Diastolic_Blood_Pressure\n", + "4622 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "4623 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^QOLS\n", + "4624 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Globulin__Mass_volume__in_Serum_by_calculation-QOLS\n", + "4625 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/medications_lifetime_perc_covered)\n", + "4626 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-encounters_count\n", + "4627 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4628 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(medications_lifetime_perc_covered)/log(10)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4629 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "4630 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(QOLS)/log(10)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4631 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/QOLS)\n", + "4632 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Triglycerides)\n", + "4633 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Estimated_Glomerular_Filtration_Rate)\n", + "4634 Glucose<=healthcare_expenses\n", + "4635 Glucose<=2*Calcium+mean_Glucose\n", + "4636 Glucose<=(log(active_care_plan_length)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "4637 Glucose<=Triglycerides-active_conditions\n", + "4638 Glucose<=maximum(Microalbumin_Creatinine_Ratio,Systolic_Blood_Pressure-1)\n", + "4639 Glucose<=1/imaging_studies_lifetime+Chloride\n", + "4640 Glucose<=maximum(mean_Glucose,medications_lifetime^2)\n", + "4641 Glucose<=1/device_lifetime_length+mean_Systolic_Blood_Pressure\n", + "4642 Glucose<=10^Globulin__Mass_volume__in_Serum_by_calculation-QOLS\n", + "4643 Glucose<=e^Erythrocytes____volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "4644 Glucose<=Estimated_Glomerular_Filtration_Rate+mean_Glucose-1\n", + "4645 Glucose<=Carbon_Dioxide*sqrt(QALY)\n", + "4646 Glucose<=(log(QALY)/log(10))^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4647 Glucose<=maximum(lifetime_condition_length,Low_Density_Lipoprotein_Cholesterol+1)\n", + "4648 Glucose<=mean_Glucose^active_conditions\n", + "4649 Glucose<=active_conditions^2+Body_Weight\n", + "4650 Glucose<=QALY+ceil(lifetime_condition_length)\n", + "4651 Glucose<=maximum(medications_lifetime_length,mean_Glucose)\n", + "4652 Glucose<=2*Heart_rate-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4653 Glucose<=2*active_conditions+mean_Glucose\n", + "4654 Glucose<=mean_Glucose^active_care_plans\n", + "4655 Glucose<=floor(QALY)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4656 Glucose<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Systolic_Blood_Pressure\n", + "4657 Glucose<=2*Diastolic_Blood_Pressure+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4658 Glucose<=DALY*mean_Estimated_Glomerular_Filtration_Rate\n", + "4659 Glucose<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(Sodium)\n", + "4660 Glucose<=mean_Glucose/medications_lifetime_perc_covered\n", + "4661 Glucose<=10^Albumin__Mass_volume__in_Serum,Plasma/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4662 Glucose<=Low_Density_Lipoprotein_Cholesterol*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "4663 Glucose<=maximum(mean_Glucose,1/imaging_studies_lifetime)\n", + "4664 Glucose<=Total_Cholesterol*log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)\n", + "4665 Glucose<=active_care_plan_length^2/medications_active\n", + "4666 Glucose<=sqrt(Estimated_Glomerular_Filtration_Rate)*active_care_plan_length\n", + "4667 Glucose<=maximum(Body_Height,mean_Glucose)\n", + "4668 Glucose<=(Leukocytes____volume__in_Blood_by_Automated_count+1)*mean_Carbon_Dioxide\n", + "4669 Glucose<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(lifetime_care_plan_length)\n", + "4670 Glucose<=(Potassium-1)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4671 Glucose<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Glucose\n", + "4672 Glucose<=Body_Weight*log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "4673 Glucose<=1/2*Total_Cholesterol/QOLS\n", + "4674 Glucose<=maximum(mean_Glucose,encounters_count^2)\n", + "4675 Glucose<=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^mean_Urea_Nitrogen\n", + "4676 Glucose<=maximum(mean_Glucose,e^medications_lifetime)\n", + "4677 Glucose<=2*Sodium-mean_Systolic_Blood_Pressure\n", + "4678 Glucose<=mean_Glucose+medications_lifetime+1\n", + "4679 Glucose<=10^active_care_plans+immunizations_lifetime_cost\n", + "4680 Glucose<=log(active_care_plan_length)^mean_Potassium\n", + "4681 Glucose<=(e^lifetime_care_plan_length)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4682 Glucose<=10^QOLS*mean_Diastolic_Blood_Pressure\n", + "4683 Glucose<=(QOLS+1)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4684 Glucose<=log(Erythrocytes____volume__in_Blood_by_Automated_count)^Hemoglobin__Mass_volume__in_Blood\n", + "4685 Glucose<=(DALY+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4686 Glucose<=e^Calcium/DALY\n", + "4687 Glucose<=(Low_Density_Lipoprotein_Cholesterol-1)/QOLS\n", + "4688 Glucose<=2*Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "4689 Glucose<=2*Urea_Nitrogen+mean_Glucose\n", + "4690 Glucose<=maximum(Triglycerides,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4691 Glucose<=1/2*MCH__Entitic_mass__by_Automated_count+mean_Glucose\n", + "4692 Glucose>=latitude\n", + "4693 Glucose>=minimum(mean_Glucose,-Triglycerides)\n", + "4694 Glucose>=Triglycerides^2/medications_lifetime_dispenses\n", + "4695 Glucose>=mean_Glucose/active_conditions\n", + "4696 Glucose>=Estimated_Glomerular_Filtration_Rate*log(active_conditions)/log(10)\n", + "4697 Glucose>=healthcare_expenses^longitude\n", + "4698 Glucose>=-Protein__Mass_volume__in_Serum,Plasma+floor(Sodium)\n", + "4699 Glucose>=minimum(mean_Glucose,10^imaging_studies_lifetime)\n", + "4700 Glucose>=mean_Glucose^QOLS\n", + "4701 Glucose>=minimum(mean_Glucose,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4702 Glucose>=High_Density_Lipoprotein_Cholesterol+log(device_lifetime_length)\n", + "4703 Glucose>=-encounters_lifetime_payer_coverage+mean_Glucose\n", + "4704 Glucose>=Triglycerides-mean_Systolic_Blood_Pressure+1\n", + "4705 Glucose>=-active_care_plan_length+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "4706 Glucose>=1/Microalbumin_Creatinine_Ratio+age\n", + "4707 Glucose>=mean_Microalbumin_Creatinine_Ratio/mean_Creatinine\n", + "4708 Glucose>=mean_Glucose/active_care_plans\n", + "4709 Glucose>=1/Hemoglobin_A1c_Hemoglobin_total_in_Blood+Protein__Mass_volume__in_Serum,Plasma\n", + "4710 Glucose>=-Carbon_Dioxide+mean_Glucose\n", + "4711 Glucose>=1/2*Chloride+Hemoglobin__Mass_volume__in_Blood\n", + "4712 Glucose>=DALY+ceil(latitude)\n", + "4713 Glucose>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "4714 Glucose>=(Estimated_Glomerular_Filtration_Rate-1)*num_allergies\n", + "4715 Glucose>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4716 Glucose>=1/2*Platelets____volume__in_Blood_by_Automated_count*num_allergies\n", + "4717 Glucose>=device_lifetime_length*log(Microalbumin_Creatinine_Ratio)/log(10)\n", + "4718 Glucose>=Calcium^2-Microalbumin_Creatinine_Ratio\n", + "4719 Glucose>=2*active_condition_length-mean_High_Density_Lipoprotein_Cholesterol\n", + "4720 Glucose>=Microalbumin_Creatinine_Ratio-lifetime_condition_length+1\n", + "4721 Glucose>=sqrt(encounters_lifetime_payer_coverage)-MCH__Entitic_mass__by_Automated_count\n", + "4722 Glucose>=minimum(mean_Heart_rate,1/2*encounters_count)\n", + "4723 Glucose>=1/2*medications_lifetime_dispenses/Hemoglobin__Mass_volume__in_Blood\n", + "4724 Glucose>=2*immunizations_lifetime_cost/Calcium\n", + "4725 Glucose>=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Glucose)\n", + "4726 Glucose>=(medications_lifetime+1)/mean_Urea_Nitrogen\n", + "4727 Glucose>=-healthcare_coverage+1/2*lifetime_condition_length\n", + "4728 Glucose>=2*DALY-encounters_lifetime_perc_covered\n", + "4729 Glucose>=medications_active^2+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4730 Glucose>=active_care_plan_length+log(Low_Density_Lipoprotein_Cholesterol)\n", + "4731 Glucose>=Chloride-active_condition_length-1\n", + "4732 Glucose>=minimum(active_condition_length,mean_Glucose)\n", + "4733 Glucose>=-mean_Carbon_Dioxide+mean_Glucose\n", + "4734 Glucose>=minimum(High_Density_Lipoprotein_Cholesterol,sqrt(procedures_lifetime_cost))\n", + "4735 Glucose>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Diastolic_Blood_Pressure\n", + "4736 Glucose>=(log(Chloride)/log(10))^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4737 Glucose>=Urea_Nitrogen*log(Protein__Mass_volume__in_Serum,Plasma)\n", + "4738 Glucose>=active_care_plans+floor(Estimated_Glomerular_Filtration_Rate)\n", + "4739 Glucose>=Estimated_Glomerular_Filtration_Rate^2/mean_Estimated_Glomerular_Filtration_Rate\n", + "4740 Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "4741 Glucose>=1/2*Microalbumin_Creatinine_Ratio-lifetime_care_plan_length\n", + "4742 Glucose>=minimum(mean_Glucose,2*device_lifetime_length)\n", + "4743 Glucose>=1/2*Body_Weight+DALY\n", + "4744 Glucose>=minimum(Microalbumin_Creatinine_Ratio,ceil(age))\n", + "4745 Glucose>=minimum(mean_Glucose,lifetime_care_plans^2)\n", + "4746 Glucose>=minimum(mean_Microalbumin_Creatinine_Ratio,ceil(age))\n", + "4747 Glucose>=Body_Mass_Index+2*lifetime_conditions\n", + "4748 Glucose>=minimum(encounters_count,10^immunizations_lifetime)\n", + "4749 Glucose>=-mean_Respiratory_rate+procedures_lifetime+1\n", + "4750 Glucose>=minimum(mean_Diastolic_Blood_Pressure,1/2*encounters_count)\n", + "4751 Chloride<=healthcare_expenses\n", + "4752 Chloride<=Systolic_Blood_Pressure+log(High_Density_Lipoprotein_Cholesterol)\n", + "4753 Chloride<=2*age/medications_lifetime_perc_covered\n", + "4754 Chloride<=mean_Chloride^active_conditions\n", + "4755 Chloride<=Body_Height-device_lifetime_length-1\n", + "4756 Chloride<=10^log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4757 Chloride<=log(Sodium)+mean_Chloride\n", + "4758 Chloride<=-Carbon_Dioxide+ceil(Sodium)\n", + "4759 Chloride<=Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "4760 Chloride<=Protein__Mass_volume__in_Serum,Plasma+lifetime_care_plan_length-1\n", + "4761 Chloride<=maximum(mean_Chloride,10^medications_lifetime)\n", + "4762 Chloride<=sqrt(medications_lifetime)+mean_Chloride\n", + "4763 Chloride<=(Systolic_Blood_Pressure^2)^Creatinine\n", + "4764 Chloride<=Heart_rate+e^Potassium\n", + "4765 Chloride<=2*Heart_rate-active_conditions\n", + "4766 Chloride<=Triglycerides+procedures_lifetime_cost\n", + "4767 Chloride<=maximum(mean_Chloride,encounters_count^2)\n", + "4768 Chloride<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*mean_Glucose\n", + "4769 Chloride<=Leukocytes____volume__in_Blood_by_Automated_count*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4770 Chloride<=log(Triglycerides)+mean_Chloride\n", + "4771 Chloride<=mean_Chloride^active_care_plans\n", + "4772 Chloride<=Estimated_Glomerular_Filtration_Rate^2+DALY\n", + "4773 Chloride<=maximum(Body_Height,mean_Chloride)\n", + "4774 Chloride<=(Heart_rate+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4775 Chloride<=Body_Mass_Index+2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "4776 Chloride<=MCV__Entitic_volume__by_Automated_count+2*Respiratory_rate\n", + "4777 Chloride<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Glucose-1\n", + "4778 Chloride<=log(active_care_plan_length)^mean_Microalbumin_Creatinine_Ratio\n", + "4779 Chloride<=2*Estimated_Glomerular_Filtration_Rate+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4780 Chloride<=Respiratory_rate*mean_Calcium\n", + "4781 Chloride<=maximum(medications_lifetime_length,mean_Chloride)\n", + "4782 Chloride<=QALY*log(encounters_lifetime_total_cost)/log(10)\n", + "4783 Chloride<=2*Low_Density_Lipoprotein_Cholesterol-device_lifetime_length\n", + "4784 Chloride<=1/medications_lifetime_perc_covered+mean_Systolic_Blood_Pressure\n", + "4785 Chloride<=floor(QALY)+mean_Glucose\n", + "4786 Chloride<=Heart_rate+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "4787 Chloride<=MCV__Entitic_volume__by_Automated_count^2/active_care_plan_length\n", + "4788 Chloride<=Diastolic_Blood_Pressure+MCHC__Mass_volume__by_Automated_count+1\n", + "4789 Chloride<=2*Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "4790 Chloride<=active_condition_length+ceil(Glucose)\n", + "4791 Chloride<=Body_Weight*log(active_condition_length)/log(10)\n", + "4792 Chloride<=sqrt(Carbon_Dioxide)+mean_Chloride\n", + "4793 Chloride<=maximum(mean_Chloride,medications_lifetime^2)\n", + "4794 Chloride<=log(medications_lifetime_dispenses)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4795 Chloride<=1/2*Urea_Nitrogen+mean_Chloride\n", + "4796 Chloride<=MCH__Entitic_mass__by_Automated_count+MCV__Entitic_volume__by_Automated_count-1\n", + "4797 Chloride<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Chloride\n", + "4798 Chloride<=-Calcium+2*Heart_rate\n", + "4799 Chloride<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Diastolic_Blood_Pressure\n", + "4800 Chloride<=maximum(mean_Chloride,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)\n", + "4801 Chloride<=maximum(mean_Chloride,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4802 Chloride<=2*Protein__Mass_volume__in_Serum,Plasma-lifetime_conditions\n", + "4803 Chloride<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Glucose\n", + "4804 Chloride<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Chloride+1\n", + "4805 Chloride>=latitude\n", + "4806 Chloride>=active_conditions+age+1\n", + "4807 Chloride>=minimum(mean_Chloride,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4808 Chloride>=Heart_rate+Potassium+1\n", + "4809 Chloride>=log(Carbon_Dioxide)^immunizations_lifetime\n", + "4810 Chloride>=minimum(mean_Chloride,10^imaging_studies_lifetime)\n", + "4811 Chloride>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+High_Density_Lipoprotein_Cholesterol-1\n", + "4812 Chloride>=Potassium^2+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4813 Chloride>=Estimated_Glomerular_Filtration_Rate*log(Urea_Nitrogen)/log(10)\n", + "4814 Chloride>=healthcare_expenses^longitude\n", + "4815 Chloride>=2*Diastolic_Blood_Pressure-Triglycerides\n", + "4816 Chloride>=minimum(Diastolic_Blood_Pressure,mean_Chloride)\n", + "4817 Chloride>=2*lifetime_care_plan_length/active_care_plans\n", + "4818 Chloride>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*device_lifetime_length\n", + "4819 Chloride>=mean_Chloride/active_conditions\n", + "4820 Chloride>=minimum(mean_Chloride,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4821 Chloride>=-encounters_lifetime_payer_coverage+mean_Chloride\n", + "4822 Chloride>=(Total_Cholesterol+1)/active_care_plans\n", + "4823 Chloride>=MCV__Entitic_volume__by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4824 Chloride>=-Diastolic_Blood_Pressure+e^Potassium\n", + "4825 Chloride>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*mean_Estimated_Glomerular_Filtration_Rate\n", + "4826 Chloride>=-QALY+floor(Glucose)\n", + "4827 Chloride>=(Total_Cholesterol+1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "4828 Chloride>=Glucose-immunizations_lifetime_cost-1\n", + "4829 Chloride>=1/2*Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "4830 Chloride>=(Erythrocytes____volume__in_Blood_by_Automated_count-1)*procedures_lifetime\n", + "4831 Chloride>=Diastolic_Blood_Pressure+Globulin__Mass_volume__in_Serum_by_calculation-1\n", + "4832 Chloride>=Urea_Nitrogen*active_care_plans\n", + "4833 Chloride>=e^Globulin__Mass_volume__in_Serum_by_calculation-longitude\n", + "4834 Chloride>=2*Creatinine^2\n", + "4835 Chloride>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(lifetime_condition_length)/log(10)\n", + "4836 Chloride>=mean_Chloride/active_care_plans\n", + "4837 Chloride>=2*lifetime_conditions+mean_High_Density_Lipoprotein_Cholesterol\n", + "4838 Chloride>=minimum(lifetime_care_plan_length,Calcium^2)\n", + "4839 Chloride>=Body_Weight-procedures_lifetime_cost+1\n", + "4840 Chloride>=mean_Chloride^QOLS\n", + "4841 Chloride>=Urea_Nitrogen*log(Triglycerides)\n", + "4842 Chloride>=minimum(mean_Chloride,mean_Diastolic_Blood_Pressure)\n", + "4843 Chloride>=Leukocytes____volume__in_Blood_by_Automated_count^2-active_care_plans\n", + "4844 Chloride>=ceil(DALY)+mean_High_Density_Lipoprotein_Cholesterol\n", + "4845 Chloride>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Chloride\n", + "4846 Chloride>=MCH__Entitic_mass__by_Automated_count+QALY\n", + "4847 Chloride>=ceil(Microalbumin_Creatinine_Ratio)-mean_Microalbumin_Creatinine_Ratio\n", + "4848 Chloride>=High_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide\n", + "4849 Chloride>=floor(immunizations_lifetime_cost)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4850 Chloride>=minimum(mean_Chloride,1/medications_active)\n", + "4851 Chloride>=mean_Chloride-mean_Potassium\n", + "4852 Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "4853 Chloride>=1/2*Microalbumin_Creatinine_Ratio-immunizations_lifetime_cost\n", + "4854 Chloride>=sqrt(Body_Weight)+mean_Heart_rate\n", + "4855 Chloride>=Urea_Nitrogen*log(healthcare_coverage)/log(10)\n", + "4856 Chloride>=1/2*Albumin__Mass_volume__in_Serum,Plasma*latitude\n", + "4857 Chloride>=minimum(Glucose,procedures_lifetime^2)\n", + "4858 Chloride>=active_condition_length*log(num_allergies)\n", + "4859 Chloride>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*encounters_count\n", + "4860 Chloride>=Glomerular_filtration_rate_1_73_sq_M_predicted^2/Low_Density_Lipoprotein_Cholesterol\n", + "4861 Carbon_Dioxide<=healthcare_expenses\n", + "4862 Carbon_Dioxide<=mean_Carbon_Dioxide+procedures_lifetime_cost\n", + "4863 Carbon_Dioxide<=e^Calcium/Body_Height\n", + "4864 Carbon_Dioxide<=mean_Carbon_Dioxide^active_care_plans\n", + "4865 Carbon_Dioxide<=(log(MCH__Entitic_mass__by_Automated_count)/log(10))^Calcium\n", + "4866 Carbon_Dioxide<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Calcium\n", + "4867 Carbon_Dioxide<=maximum(Heart_rate,mean_Carbon_Dioxide)\n", + "4868 Carbon_Dioxide<=maximum(Triglycerides,Body_Mass_Index-1)\n", + "4869 Carbon_Dioxide<=1/2*latitude+mean_Microalbumin_Creatinine_Ratio\n", + "4870 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,2*Hemoglobin__Mass_volume__in_Blood)\n", + "4871 Carbon_Dioxide<=1/imaging_studies_lifetime+mean_Carbon_Dioxide\n", + "4872 Carbon_Dioxide<=mean_Carbon_Dioxide^active_conditions\n", + "4873 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,2*encounters_count)\n", + "4874 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,active_conditions^2)\n", + "4875 Carbon_Dioxide<=(2*Systolic_Blood_Pressure)^mean_Creatinine\n", + "4876 Carbon_Dioxide<=(Heart_rate-1)/imaging_studies_lifetime\n", + "4877 Carbon_Dioxide<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(Triglycerides)\n", + "4878 Carbon_Dioxide<=Creatinine^2+active_condition_length\n", + "4879 Carbon_Dioxide<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(Protein__Mass_volume__in_Serum,Plasma)\n", + "4880 Carbon_Dioxide<=-Leukocytes____volume__in_Blood_by_Automated_count+ceil(active_care_plan_length)\n", + "4881 Carbon_Dioxide<=2*Sodium/Calcium\n", + "4882 Carbon_Dioxide<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)\n", + "4883 Carbon_Dioxide<=maximum(medications_lifetime_dispenses,mean_Carbon_Dioxide)\n", + "4884 Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+log(Diastolic_Blood_Pressure)\n", + "4885 Carbon_Dioxide<=log(Microalbumin_Creatinine_Ratio)/log(10)+mean_Carbon_Dioxide\n", + "4886 Carbon_Dioxide<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/lifetime_care_plan_length\n", + "4887 Carbon_Dioxide<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-Hemoglobin__Mass_volume__in_Blood\n", + "4888 Carbon_Dioxide<=mean_Estimated_Glomerular_Filtration_Rate/imaging_studies_lifetime\n", + "4889 Carbon_Dioxide<=10^healthcare_coverage+mean_Carbon_Dioxide\n", + "4890 Carbon_Dioxide<=10^medications_active*mean_Estimated_Glomerular_Filtration_Rate\n", + "4891 Carbon_Dioxide<=Erythrocytes____volume__in_Blood_by_Automated_count^2+mean_Calcium\n", + "4892 Carbon_Dioxide<=maximum(Triglycerides,floor(active_care_plan_length))\n", + "4893 Carbon_Dioxide<=-age+mean_Triglycerides\n", + "4894 Carbon_Dioxide<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Carbon_Dioxide\n", + "4895 Carbon_Dioxide<=Albumin__Mass_volume__in_Serum,Plasma*Hemoglobin_A1c_Hemoglobin_total_in_Blood^2\n", + "4896 Carbon_Dioxide<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4897 Carbon_Dioxide<=Body_Height^2/medications_lifetime\n", + "4898 Carbon_Dioxide<=log(Globulin__Mass_volume__in_Serum_by_calculation)/log(10)+active_care_plan_length\n", + "4899 Carbon_Dioxide<=-device_lifetime_length+lifetime_care_plan_length+1\n", + "4900 Carbon_Dioxide<=active_condition_length*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4901 Carbon_Dioxide<=(Sodium-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4902 Carbon_Dioxide<=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+procedures_lifetime\n", + "4903 Carbon_Dioxide<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*Potassium\n", + "4904 Carbon_Dioxide<=active_condition_length+log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4905 Carbon_Dioxide<=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/immunizations_lifetime\n", + "4906 Carbon_Dioxide<=maximum(Body_Mass_Index,e^DALY)\n", + "4907 Carbon_Dioxide<=minimum(Protein__Mass_volume__in_Serum,Plasma,2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4908 Carbon_Dioxide<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_Glucose\n", + "4909 Carbon_Dioxide<=Sodium^2/lifetime_condition_length\n", + "4910 Carbon_Dioxide<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*mean_Carbon_Dioxide\n", + "4911 Carbon_Dioxide<=Systolic_Blood_Pressure-age+1\n", + "4912 Carbon_Dioxide<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Urea_Nitrogen\n", + "4913 Carbon_Dioxide>=longitude\n", + "4914 Carbon_Dioxide>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(lifetime_conditions)\n", + "4915 Carbon_Dioxide>=Urea_Nitrogen+active_care_plans-1\n", + "4916 Carbon_Dioxide>=Respiratory_rate+active_care_plans\n", + "4917 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4918 Carbon_Dioxide>=(Body_Weight-1)^encounters_lifetime_perc_covered\n", + "4919 Carbon_Dioxide>=ceil(sqrt(Platelets____volume__in_Blood_by_Automated_count))\n", + "4920 Carbon_Dioxide>=Leukocytes____volume__in_Blood_by_Automated_count+Respiratory_rate\n", + "4921 Carbon_Dioxide>=Low_Density_Lipoprotein_Cholesterol-mean_Low_Density_Lipoprotein_Cholesterol\n", + "4922 Carbon_Dioxide>=healthcare_expenses^longitude\n", + "4923 Carbon_Dioxide>=-Potassium+mean_Carbon_Dioxide\n", + "4924 Carbon_Dioxide>=(encounters_count+1)/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4925 Carbon_Dioxide>=(2*Microalbumin_Creatinine_Ratio)^encounters_lifetime_perc_covered\n", + "4926 Carbon_Dioxide>=ceil(age)/Potassium\n", + "4927 Carbon_Dioxide>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4928 Carbon_Dioxide>=Body_Height-Total_Cholesterol+1\n", + "4929 Carbon_Dioxide>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Carbon_Dioxide\n", + "4930 Carbon_Dioxide>=mean_Carbon_Dioxide/active_conditions\n", + "4931 Carbon_Dioxide>=Diastolic_Blood_Pressure/Potassium\n", + "4932 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,-Triglycerides)\n", + "4933 Carbon_Dioxide>=Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Calcium\n", + "4934 Carbon_Dioxide>=1/2*Body_Height/Leukocytes____volume__in_Blood_by_Automated_count\n", + "4935 Carbon_Dioxide>=log(mean_Diastolic_Blood_Pressure)^2\n", + "4936 Carbon_Dioxide>=log(num_allergies)+mean_Estimated_Glomerular_Filtration_Rate\n", + "4937 Carbon_Dioxide>=minimum(device_lifetime_length,mean_Carbon_Dioxide)\n", + "4938 Carbon_Dioxide>=Respiratory_rate+medications_active\n", + "4939 Carbon_Dioxide>=-encounters_lifetime_payer_coverage+mean_Carbon_Dioxide\n", + "4940 Carbon_Dioxide>=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^QOLS\n", + "4941 Carbon_Dioxide>=mean_Carbon_Dioxide/active_care_plans\n", + "4942 Carbon_Dioxide>=log(Estimated_Glomerular_Filtration_Rate)*medications_active\n", + "4943 Carbon_Dioxide>=-Leukocytes____volume__in_Blood_by_Automated_count+procedures_lifetime-1\n", + "4944 Carbon_Dioxide>=Triglycerides-mean_Triglycerides+1\n", + "4945 Carbon_Dioxide>=immunizations_lifetime*log(immunizations_lifetime_cost)\n", + "4946 Carbon_Dioxide>=(Body_Weight-1)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "4947 Carbon_Dioxide>=2*age/mean_Microalbumin_Creatinine_Ratio\n", + "4948 Carbon_Dioxide>=Creatinine*log(active_care_plan_length)\n", + "4949 Carbon_Dioxide>=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*Respiratory_rate\n", + "4950 Carbon_Dioxide>=log(lifetime_care_plans)*mean_Carbon_Dioxide/log(10)\n", + "4951 Carbon_Dioxide>=Diastolic_Blood_Pressure-Low_Density_Lipoprotein_Cholesterol-1\n", + "4952 Carbon_Dioxide>=2*medications_lifetime_dispenses/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4953 Carbon_Dioxide>=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^Potassium\n", + "4954 Carbon_Dioxide>=lifetime_care_plans*log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "4955 Carbon_Dioxide>=sqrt(Microalbumin_Creatinine_Ratio)+mean_Potassium\n", + "4956 Carbon_Dioxide>=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^2\n", + "4957 Carbon_Dioxide>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)^active_care_plans\n", + "4958 Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2/Creatinine\n", + "4959 Carbon_Dioxide>=-DALY+2*active_conditions\n", + "4960 Carbon_Dioxide>=device_lifetime_length^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "4961 Carbon_Dioxide>=sqrt(Total_Cholesterol)/mean_Creatinine\n", + "4962 Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "4963 Carbon_Dioxide>=mean_Carbon_Dioxide^QOLS\n", + "4964 Carbon_Dioxide>=ceil(MCV__Entitic_volume__by_Automated_count)/mean_Potassium\n", + "4965 Carbon_Dioxide>=-DALY+2*lifetime_conditions\n", + "4966 Carbon_Dioxide>=log(healthcare_coverage)/Creatinine\n", + "4967 Carbon_Dioxide>=Respiratory_rate+mean_Creatinine+1\n", + "4968 Carbon_Dioxide>=log(procedures_lifetime_cost)+mean_Calcium\n", + "4969 Carbon_Dioxide>=-Urea_Nitrogen+floor(Body_Mass_Index)\n", + "4970 Total_Cholesterol<=healthcare_expenses\n", + "4971 Total_Cholesterol<=2*Triglycerides-medications_active\n", + "4972 Total_Cholesterol<=Glucose+2*Heart_rate\n", + "4973 Total_Cholesterol<=(1/2*Calcium)^Potassium\n", + "4974 Total_Cholesterol<=(Chloride-1)*active_care_plans\n", + "4975 Total_Cholesterol<=10^Calcium/healthcare_expenses\n", + "4976 Total_Cholesterol<=Carbon_Dioxide+mean_Total_Cholesterol-1\n", + "4977 Total_Cholesterol<=Potassium*Urea_Nitrogen^2\n", + "4978 Total_Cholesterol<=mean_Carbon_Dioxide+mean_Total_Cholesterol\n", + "4979 Total_Cholesterol<=healthcare_coverage+mean_Total_Cholesterol-1\n", + "4980 Total_Cholesterol<=maximum(mean_Total_Cholesterol,10^active_conditions)\n", + "4981 Total_Cholesterol<=Calcium*ceil(active_condition_length)\n", + "4982 Total_Cholesterol<=1/2*QALY+mean_Total_Cholesterol\n", + "4983 Total_Cholesterol<=active_care_plan_length*log(medications_lifetime_cost)\n", + "4984 Total_Cholesterol<=maximum(medications_lifetime_dispenses,mean_Total_Cholesterol)\n", + "4985 Total_Cholesterol<=Sodium+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "4986 Total_Cholesterol<=maximum(mean_Total_Cholesterol,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "4987 Total_Cholesterol<=e^Respiratory_rate/medications_lifetime\n", + "4988 Total_Cholesterol<=Body_Height+2*QALY\n", + "4989 Total_Cholesterol<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Body_Mass_Index\n", + "4990 Total_Cholesterol<=(Chloride-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "4991 Total_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Glucose\n", + "4992 Total_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol+mean_Systolic_Blood_Pressure\n", + "4993 Total_Cholesterol<=maximum(mean_Total_Cholesterol,e^active_conditions)\n", + "4994 Total_Cholesterol<=log(Body_Mass_Index)*mean_Heart_rate\n", + "4995 Total_Cholesterol<=(active_care_plan_length-1)*mean_Urea_Nitrogen\n", + "4996 Total_Cholesterol<=10^Globulin__Mass_volume__in_Serum_by_calculation+Glucose\n", + "4997 Total_Cholesterol<=2*DALY*mean_Estimated_Glomerular_Filtration_Rate\n", + "4998 Total_Cholesterol<=(log(Glucose)/log(10))^Calcium\n", + "4999 Total_Cholesterol<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/active_care_plans\n", + "5000 Total_Cholesterol<=1/2*High_Density_Lipoprotein_Cholesterol+mean_Total_Cholesterol\n", + "5001 Total_Cholesterol<=age^2/active_conditions\n", + "5002 Total_Cholesterol<=10^active_care_plans+Low_Density_Lipoprotein_Cholesterol\n", + "5003 Total_Cholesterol<=maximum(lifetime_condition_length,2*Chloride)\n", + "5004 Total_Cholesterol<=Bilirubin_total__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length^2\n", + "5005 Total_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plan_length\n", + "5006 Total_Cholesterol<=Estimated_Glomerular_Filtration_Rate^2+lifetime_care_plan_length\n", + "5007 Total_Cholesterol<=maximum(mean_Total_Cholesterol,encounters_count^2)\n", + "5008 Total_Cholesterol<=2*Diastolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "5009 Total_Cholesterol<=maximum(mean_Total_Cholesterol,10^DALY)\n", + "5010 Total_Cholesterol<=e^DALY+mean_Total_Cholesterol\n", + "5011 Total_Cholesterol<=log(Respiratory_rate)*mean_Total_Cholesterol/log(10)\n", + "5012 Total_Cholesterol<=DALY+2*Systolic_Blood_Pressure\n", + "5013 Total_Cholesterol<=Body_Weight*sqrt(Urea_Nitrogen)\n", + "5014 Total_Cholesterol<=2*Body_Height-Protein__Mass_volume__in_Serum,Plasma\n", + "5015 Total_Cholesterol<=Body_Height^2/mean_Diastolic_Blood_Pressure\n", + "5016 Total_Cholesterol<=Low_Density_Lipoprotein_Cholesterol^2/Carbon_Dioxide\n", + "5017 Total_Cholesterol<=Carbon_Dioxide*sqrt(Low_Density_Lipoprotein_Cholesterol)\n", + "5018 Total_Cholesterol<=-DALY+2*Sodium\n", + "5019 Total_Cholesterol<=10^Potassium/DALY\n", + "5020 Total_Cholesterol<=10^Globulin__Mass_volume__in_Serum_by_calculation/medications_lifetime_perc_covered\n", + "5021 Total_Cholesterol<=(Albumin__Mass_volume__in_Serum,Plasma-1)*Low_Density_Lipoprotein_Cholesterol\n", + "5022 Total_Cholesterol>=latitude\n", + "5023 Total_Cholesterol>=-immunizations_lifetime_cost+mean_Total_Cholesterol\n", + "5024 Total_Cholesterol>=(QOLS+1)*Heart_rate\n", + "5025 Total_Cholesterol>=Calcium+Sodium\n", + "5026 Total_Cholesterol>=-Body_Mass_Index+Triglycerides\n", + "5027 Total_Cholesterol>=minimum(mean_Total_Cholesterol,mean_Urea_Nitrogen)\n", + "5028 Total_Cholesterol>=Heart_rate-longitude\n", + "5029 Total_Cholesterol>=Diastolic_Blood_Pressure-longitude\n", + "5030 Total_Cholesterol>=healthcare_expenses^longitude\n", + "5031 Total_Cholesterol>=mean_Heart_rate*sqrt(num_allergies)\n", + "5032 Total_Cholesterol>=minimum(immunizations_lifetime_cost,mean_Total_Cholesterol)\n", + "5033 Total_Cholesterol>=(age+1)/Creatinine\n", + "5034 Total_Cholesterol>=minimum(mean_Total_Cholesterol,2*age)\n", + "5035 Total_Cholesterol>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Glucose\n", + "5036 Total_Cholesterol>=floor(1/2*Microalbumin_Creatinine_Ratio)\n", + "5037 Total_Cholesterol>=2*Carbon_Dioxide*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5038 Total_Cholesterol>=minimum(mean_Total_Cholesterol,e^active_care_plans)\n", + "5039 Total_Cholesterol>=2*Estimated_Glomerular_Filtration_Rate+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5040 Total_Cholesterol>=mean_Total_Cholesterol-mean_Urea_Nitrogen\n", + "5041 Total_Cholesterol>=QOLS^2*lifetime_care_plan_length\n", + "5042 Total_Cholesterol>=log(encounters_count)*mean_Estimated_Glomerular_Filtration_Rate/log(10)\n", + "5043 Total_Cholesterol>=(DALY-1)*mean_Potassium\n", + "5044 Total_Cholesterol>=Body_Mass_Index*Creatinine\n", + "5045 Total_Cholesterol>=minimum(mean_Microalbumin_Creatinine_Ratio,mean_Total_Cholesterol)\n", + "5046 Total_Cholesterol>=device_lifetime_length*log(DALY)\n", + "5047 Total_Cholesterol>=(encounters_lifetime_payer_coverage+1)/Systolic_Blood_Pressure\n", + "5048 Total_Cholesterol>=minimum(mean_Total_Cholesterol,10^device_lifetime_length)\n", + "5049 Total_Cholesterol>=Body_Mass_Index+Low_Density_Lipoprotein_Cholesterol+1\n", + "5050 Total_Cholesterol>=High_Density_Lipoprotein_Cholesterol*immunizations_lifetime\n", + "5051 Total_Cholesterol>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Glucose\n", + "5052 Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "5053 Total_Cholesterol>=Carbon_Dioxide*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5054 Total_Cholesterol>=Potassium+mean_Systolic_Blood_Pressure+1\n", + "5055 Total_Cholesterol>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Body_Weight\n", + "5056 Total_Cholesterol>=(Calcium+1)*lifetime_conditions\n", + "5057 Total_Cholesterol>=lifetime_conditions^2-Protein__Mass_volume__in_Serum,Plasma\n", + "5058 Total_Cholesterol>=floor(Body_Height)-mean_Estimated_Glomerular_Filtration_Rate\n", + "5059 Total_Cholesterol>=Body_Weight+floor(active_condition_length)\n", + "5060 Total_Cholesterol>=sqrt(encounters_lifetime_total_cost)-procedures_lifetime_cost\n", + "5061 Total_Cholesterol>=10^immunizations_lifetime+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5062 Total_Cholesterol>=-encounters_count+mean_Total_Cholesterol\n", + "5063 Total_Cholesterol>=(log(medications_lifetime)/log(10))^mean_Potassium\n", + "5064 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5065 Total_Cholesterol>=active_care_plan_length*log(procedures_lifetime)\n", + "5066 Total_Cholesterol>=(DALY-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5067 Total_Cholesterol>=sqrt(Low_Density_Lipoprotein_Cholesterol)*Respiratory_rate\n", + "5068 Total_Cholesterol>=Urea_Nitrogen^2-lifetime_condition_length\n", + "5069 Total_Cholesterol>=Diastolic_Blood_Pressure^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "5070 Total_Cholesterol>=(Erythrocytes____volume__in_Blood_by_Automated_count+1)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5071 Total_Cholesterol>=-Albumin__Mass_volume__in_Serum,Plasma+Body_Height-1\n", + "5072 Total_Cholesterol>=(Estimated_Glomerular_Filtration_Rate^2)^QOLS\n", + "5073 Urea_Nitrogen<=healthcare_expenses\n", + "5074 Urea_Nitrogen<=1/2*Body_Mass_Index/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5075 Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5076 Urea_Nitrogen<=mean_Urea_Nitrogen+procedures_lifetime_cost\n", + "5077 Urea_Nitrogen<=sqrt(Microalbumin_Creatinine_Ratio)+mean_Urea_Nitrogen\n", + "5078 Urea_Nitrogen<=Body_Mass_Index^2/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5079 Urea_Nitrogen<=maximum(Heart_rate,mean_Urea_Nitrogen)\n", + "5080 Urea_Nitrogen<=-Body_Mass_Index+age-1\n", + "5081 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5082 Urea_Nitrogen<=floor(1/2*High_Density_Lipoprotein_Cholesterol)\n", + "5083 Urea_Nitrogen<=maximum(Triglycerides,mean_Urea_Nitrogen)\n", + "5084 Urea_Nitrogen<=maximum(encounters_count,mean_Urea_Nitrogen)\n", + "5085 Urea_Nitrogen<=(Creatinine+1)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "5086 Urea_Nitrogen<=4*Globulin__Mass_volume__in_Serum_by_calculation^2\n", + "5087 Urea_Nitrogen<=sqrt(latitude)+Hemoglobin__Mass_volume__in_Blood\n", + "5088 Urea_Nitrogen<=e^procedures_lifetime+mean_Urea_Nitrogen\n", + "5089 Urea_Nitrogen<=1/Respiratory_rate+mean_Estimated_Glomerular_Filtration_Rate\n", + "5090 Urea_Nitrogen<=DALY*log(Microalbumin_Creatinine_Ratio)\n", + "5091 Urea_Nitrogen<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/mean_Potassium\n", + "5092 Urea_Nitrogen<=minimum(Protein__Mass_volume__in_Serum,Plasma,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5093 Urea_Nitrogen<=e^Potassium/num_allergies\n", + "5094 Urea_Nitrogen<=(log(Systolic_Blood_Pressure)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "5095 Urea_Nitrogen<=log(Triglycerides)*mean_Calcium/log(10)\n", + "5096 Urea_Nitrogen<=mean_Urea_Nitrogen^active_care_plans\n", + "5097 Urea_Nitrogen<=-Creatinine+floor(active_care_plan_length)\n", + "5098 Urea_Nitrogen<=mean_Urea_Nitrogen^active_conditions\n", + "5099 Urea_Nitrogen<=e^(1/2*Microalbumin_Creatinine_Ratio)\n", + "5100 Urea_Nitrogen<=(log(active_condition_length)/log(10))^Calcium\n", + "5101 Urea_Nitrogen<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5102 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,10^DALY)\n", + "5103 Urea_Nitrogen<=1/2*High_Density_Lipoprotein_Cholesterol-encounters_lifetime_perc_covered\n", + "5104 Urea_Nitrogen<=Chloride^2/lifetime_condition_length\n", + "5105 Urea_Nitrogen<=log(Systolic_Blood_Pressure)/log(10)+Estimated_Glomerular_Filtration_Rate\n", + "5106 Urea_Nitrogen<=sqrt(Triglycerides)+active_conditions\n", + "5107 Urea_Nitrogen<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Heart_rate+1\n", + "5108 Urea_Nitrogen<=1/healthcare_coverage+Estimated_Glomerular_Filtration_Rate\n", + "5109 Urea_Nitrogen<=1/2*Body_Mass_Index/medications_lifetime_perc_covered\n", + "5110 Urea_Nitrogen<=longitude^2/Platelets____volume__in_Blood_by_Automated_count\n", + "5111 Urea_Nitrogen<=-Body_Height+2*Chloride\n", + "5112 Urea_Nitrogen<=floor(age)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5113 Urea_Nitrogen<=1/num_allergies+mean_Urea_Nitrogen\n", + "5114 Urea_Nitrogen<=2*Microalbumin_Creatinine_Ratio/Creatinine\n", + "5115 Urea_Nitrogen<=(1/2*Low_Density_Lipoprotein_Cholesterol)^mean_Creatinine\n", + "5116 Urea_Nitrogen<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5117 Urea_Nitrogen<=1/2*Body_Mass_Index+immunizations_lifetime_cost\n", + "5118 Urea_Nitrogen<=active_care_plan_length-medications_active-1\n", + "5119 Urea_Nitrogen<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/device_lifetime_length\n", + "5120 Urea_Nitrogen<=Carbon_Dioxide-active_care_plans+1\n", + "5121 Urea_Nitrogen<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Heart_rate\n", + "5122 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,encounters_count-1)\n", + "5123 Urea_Nitrogen<=(MCV__Entitic_volume__by_Automated_count-1)/medications_active\n", + "5124 Urea_Nitrogen>=longitude\n", + "5125 Urea_Nitrogen>=Creatinine+active_care_plans\n", + "5126 Urea_Nitrogen>=active_care_plans+immunizations_lifetime+1\n", + "5127 Urea_Nitrogen>=encounters_lifetime_perc_covered*mean_Urea_Nitrogen\n", + "5128 Urea_Nitrogen>=log(Triglycerides)*num_allergies/log(10)\n", + "5129 Urea_Nitrogen>=Creatinine^2-active_care_plan_length\n", + "5130 Urea_Nitrogen>=QOLS+1/2*active_conditions\n", + "5131 Urea_Nitrogen>=1/2*Systolic_Blood_Pressure-mean_Low_Density_Lipoprotein_Cholesterol\n", + "5132 Urea_Nitrogen>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+active_conditions\n", + "5133 Urea_Nitrogen>=Leukocytes____volume__in_Blood_by_Automated_count+e^QOLS\n", + "5134 Urea_Nitrogen>=1/2*medications_lifetime/High_Density_Lipoprotein_Cholesterol\n", + "5135 Urea_Nitrogen>=Creatinine^immunizations_lifetime\n", + "5136 Urea_Nitrogen>=healthcare_expenses^longitude\n", + "5137 Urea_Nitrogen>=ceil(10^medications_lifetime_perc_covered)\n", + "5138 Urea_Nitrogen>=2*Triglycerides/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5139 Urea_Nitrogen>=minimum(mean_Estimated_Glomerular_Filtration_Rate,log(encounters_lifetime_payer_coverage))\n", + "5140 Urea_Nitrogen>=2*medications_lifetime/Total_Cholesterol\n", + "5141 Urea_Nitrogen>=lifetime_care_plans^2-age\n", + "5142 Urea_Nitrogen>=mean_Urea_Nitrogen/active_care_plans\n", + "5143 Urea_Nitrogen>=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma*Body_Mass_Index\n", + "5144 Urea_Nitrogen>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(immunizations_lifetime)\n", + "5145 Urea_Nitrogen>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Heart_rate\n", + "5146 Urea_Nitrogen>=(Estimated_Glomerular_Filtration_Rate+1)^QOLS\n", + "5147 Urea_Nitrogen>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2*medications_lifetime_perc_covered\n", + "5148 Urea_Nitrogen>=log(procedures_lifetime_cost)/(DALY*log(10))\n", + "5149 Urea_Nitrogen>=sqrt(Low_Density_Lipoprotein_Cholesterol)-procedures_lifetime_cost\n", + "5150 Urea_Nitrogen>=ceil(active_condition_length)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5151 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,1/2*Respiratory_rate)\n", + "5152 Urea_Nitrogen>=-Glomerular_filtration_rate_1_73_sq_M_predicted+lifetime_conditions\n", + "5153 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,1/2*device_lifetime_length)\n", + "5154 Urea_Nitrogen>=-Heart_rate+ceil(active_condition_length)\n", + "5155 Urea_Nitrogen>=-active_conditions+mean_Urea_Nitrogen\n", + "5156 Urea_Nitrogen>=1/2*Globulin__Mass_volume__in_Serum_by_calculation+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5157 Urea_Nitrogen>=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5158 Urea_Nitrogen>=Low_Density_Lipoprotein_Cholesterol-Sodium+1\n", + "5159 Urea_Nitrogen>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/medications_lifetime\n", + "5160 Urea_Nitrogen>=Glucose-mean_Sodium+1\n", + "5161 Urea_Nitrogen>=sqrt(encounters_count)-Microalbumin_Creatinine_Ratio\n", + "5162 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,10^QOLS)\n", + "5163 Urea_Nitrogen>=minimum(Hemoglobin__Mass_volume__in_Blood,1/2*procedures_lifetime)\n", + "5164 Urea_Nitrogen>=mean_Urea_Nitrogen/active_conditions\n", + "5165 Urea_Nitrogen>=immunizations_lifetime^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5166 Urea_Nitrogen>=Albumin__Mass_volume__in_Serum,Plasma*immunizations_lifetime^2\n", + "5167 Urea_Nitrogen>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Potassium-1\n", + "5168 Urea_Nitrogen>=minimum(medications_active,mean_Urea_Nitrogen)\n", + "5169 Urea_Nitrogen>=1/2*Body_Height/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5170 Urea_Nitrogen>=MCV__Entitic_volume__by_Automated_count-lifetime_care_plan_length-1\n", + "5171 Urea_Nitrogen>=-encounters_lifetime_payer_coverage+mean_Urea_Nitrogen\n", + "5172 Urea_Nitrogen>=sqrt(healthcare_coverage)/active_condition_length\n", + "5173 Urea_Nitrogen>=sqrt(Low_Density_Lipoprotein_Cholesterol)-immunizations_lifetime_cost\n", + "5174 Urea_Nitrogen>=maximum(Total_score__MMSE_,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "5175 Urea_Nitrogen>=ceil(High_Density_Lipoprotein_Cholesterol)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "5176 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,sqrt(active_care_plan_length))\n", + "5177 Urea_Nitrogen>=sqrt(Microalbumin_Creatinine_Ratio)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5178 Urea_Nitrogen>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*QALY\n", + "5179 Urea_Nitrogen>=log(Triglycerides)/mean_Creatinine\n", + "5180 Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "5181 Urea_Nitrogen>=Bilirubin_total__Mass_volume__in_Serum,Plasma*Respiratory_rate\n", + "5182 Urea_Nitrogen>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*immunizations_lifetime\n", + "5183 Urea_Nitrogen>=-Carbon_Dioxide+ceil(MCH__Entitic_mass__by_Automated_count)\n", + "5184 Urea_Nitrogen>=minimum(device_lifetime_length,1/medications_active)\n", + "5185 Urea_Nitrogen>=1/2*Creatinine*active_care_plans\n", + "5186 Urea_Nitrogen>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*High_Density_Lipoprotein_Cholesterol\n", + "5187 Urea_Nitrogen>=(MCHC__Mass_volume__by_Automated_count+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5188 Urea_Nitrogen>=minimum(Microalbumin_Creatinine_Ratio,2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5189 Urea_Nitrogen>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Creatinine\n", + "5190 Urea_Nitrogen>=Calcium-Globulin__Mass_volume__in_Serum_by_calculation+1\n", + "5191 Urea_Nitrogen>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Body_Mass_Index+1\n", + "5192 Calcium<=healthcare_expenses\n", + "5193 Calcium<=mean_Calcium+1\n", + "5194 Calcium<=log(Respiratory_rate)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5195 Calcium<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+Respiratory_rate-1\n", + "5196 Calcium<=Heart_rate*QOLS\n", + "5197 Calcium<=mean_Calcium^active_care_plans\n", + "5198 Calcium<=1/2*active_condition_length-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5199 Calcium<=maximum(Respiratory_rate,mean_Calcium)\n", + "5200 Calcium<=Creatinine+mean_Calcium\n", + "5201 Calcium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(High_Density_Lipoprotein_Cholesterol)\n", + "5202 Calcium<=1/2*floor(Carbon_Dioxide)\n", + "5203 Calcium<=10^medications_active-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5204 Calcium<=maximum(encounters_count,mean_Calcium)\n", + "5205 Calcium<=ceil(Estimated_Glomerular_Filtration_Rate)\n", + "5206 Calcium<=Albumin__Mass_volume__in_Serum,Plasma^2-mean_Creatinine\n", + "5207 Calcium<=(lifetime_care_plan_length-1)/Creatinine\n", + "5208 Calcium<=log(Triglycerides)/log(10)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5209 Calcium<=maximum(medications_lifetime,mean_Calcium)\n", + "5210 Calcium<=1/immunizations_lifetime+mean_Calcium\n", + "5211 Calcium<=-Sodium+Total_Cholesterol\n", + "5212 Calcium<=1/medications_lifetime_perc_covered+Microalbumin_Creatinine_Ratio\n", + "5213 Calcium<=sqrt(QALY)+Potassium\n", + "5214 Calcium<=-DALY+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1\n", + "5215 Calcium<=maximum(mean_Calcium,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5216 Calcium<=(1/medications_lifetime_perc_covered)^Chloride\n", + "5217 Calcium<=2*QALY/active_care_plans\n", + "5218 Calcium<=QOLS*ceil(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "5219 Calcium<=maximum(mean_Calcium,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5220 Calcium<=2*Body_Height/mean_Body_Mass_Index\n", + "5221 Calcium<=sqrt(Heart_rate)+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5222 Calcium<=maximum(mean_Calcium,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1)\n", + "5223 Calcium<=10^ceil(DALY)\n", + "5224 Calcium<=2*Low_Density_Lipoprotein_Cholesterol/Respiratory_rate\n", + "5225 Calcium<=10^(10^immunizations_lifetime)\n", + "5226 Calcium<=maximum(mean_Calcium,1/2*encounters_count)\n", + "5227 Calcium<=maximum(mean_Calcium,floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "5228 Calcium<=ceil(lifetime_care_plan_length)/lifetime_care_plans\n", + "5229 Calcium<=Albumin__Mass_volume__in_Serum,Plasma*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5230 Calcium<=2*Body_Weight/active_conditions\n", + "5231 Calcium<=Leukocytes____volume__in_Blood_by_Automated_count*log(Hemoglobin__Mass_volume__in_Blood)\n", + "5232 Calcium<=minimum(Triglycerides,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5233 Calcium<=Erythrocytes____volume__in_Blood_by_Automated_count*active_care_plans\n", + "5234 Calcium<=latitude^2/Systolic_Blood_Pressure\n", + "5235 Calcium<=10^QOLS+active_conditions\n", + "5236 Calcium<=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1/2*latitude\n", + "5237 Calcium<=Potassium*log(Respiratory_rate)\n", + "5238 Calcium<=DALY^2+immunizations_lifetime_cost\n", + "5239 Calcium<=sqrt(Low_Density_Lipoprotein_Cholesterol)+medications_active\n", + "5240 Calcium<=Globulin__Mass_volume__in_Serum_by_calculation+Urea_Nitrogen-1\n", + "5241 Calcium<=maximum(mean_Calcium,1/imaging_studies_lifetime)\n", + "5242 Calcium<=sqrt(Chloride)+num_allergies\n", + "5243 Calcium<=Globulin__Mass_volume__in_Serum_by_calculation+2*Potassium\n", + "5244 Calcium<=(2*Carbon_Dioxide)^mean_Creatinine\n", + "5245 Calcium<=sqrt(Estimated_Glomerular_Filtration_Rate)*mean_Creatinine\n", + "5246 Calcium>=longitude\n", + "5247 Calcium>=minimum(mean_Calcium,-Triglycerides)\n", + "5248 Calcium>=1/2*active_condition_length/Potassium\n", + "5249 Calcium>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^num_allergies\n", + "5250 Calcium>=minimum(mean_Calcium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5251 Calcium>=log(Low_Density_Lipoprotein_Cholesterol)/log(10)+Creatinine\n", + "5252 Calcium>=minimum(medications_active,mean_Calcium)\n", + "5253 Calcium>=healthcare_expenses^longitude\n", + "5254 Calcium>=log(mean_High_Density_Lipoprotein_Cholesterol^2)\n", + "5255 Calcium>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Potassium\n", + "5256 Calcium>=mean_Calcium-procedures_lifetime\n", + "5257 Calcium>=sqrt(encounters_lifetime_total_cost)/Body_Mass_Index\n", + "5258 Calcium>=mean_Calcium/active_care_plans\n", + "5259 Calcium>=lifetime_care_plans/DALY\n", + "5260 Calcium>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,medications_active+1)\n", + "5261 Calcium>=(Sodium+1)/active_care_plan_length\n", + "5262 Calcium>=mean_Potassium/Creatinine\n", + "5263 Calcium>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-QOLS\n", + "5264 Calcium>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Calcium\n", + "5265 Calcium>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,10^device_lifetime_length)\n", + "5266 Calcium>=floor(Creatinine)^immunizations_lifetime\n", + "5267 Calcium>=Creatinine+log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5268 Calcium>=sqrt(QOLS)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5269 Calcium>=Globulin__Mass_volume__in_Serum_by_calculation+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5270 Calcium>=log(device_lifetime_length)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5271 Calcium>=mean_Calcium^QOLS\n", + "5272 Calcium>=sqrt(Diastolic_Blood_Pressure)-medications_active\n", + "5273 Calcium>=(Body_Height+1)/Carbon_Dioxide\n", + "5274 Calcium>=Potassium+immunizations_lifetime+1\n", + "5275 Calcium>=1/2*latitude-mean_Respiratory_rate\n", + "5276 Calcium>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+ceil(Creatinine)\n", + "5277 Calcium>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Body_Mass_Index\n", + "5278 Calcium>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime_perc_covered\n", + "5279 Calcium>=Creatinine+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5280 Calcium>=mean_Calcium/active_conditions\n", + "5281 Calcium>=age-mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "5282 Calcium>=mean_Systolic_Blood_Pressure^(1/log(10))\n", + "5283 Calcium>=ceil(medications_lifetime_perc_covered)/encounters_lifetime_perc_covered\n", + "5284 Calcium>=(10^healthcare_expenses)^longitude\n", + "5285 Calcium>=minimum(lifetime_care_plans,mean_Calcium)\n", + "5286 Calcium>=-encounters_lifetime_payer_coverage+mean_Calcium\n", + "5287 Calcium>=log(medications_lifetime_length)-medications_active\n", + "5288 Calcium>=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5289 Calcium>=(age+1)/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5290 Calcium>=sqrt(Glucose)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5291 Calcium>=log(encounters_count)+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "5292 Calcium>=sqrt(age)-immunizations_lifetime\n", + "5293 Calcium>=mean_Potassium+num_allergies-1\n", + "5294 Calcium>=minimum(mean_Calcium,10^medications_lifetime_perc_covered)\n", + "5295 Calcium>=minimum(mean_Calcium,sqrt(QALY))\n", + "5296 Calcium>=-lifetime_care_plans+log(procedures_lifetime_cost)\n", + "5297 Calcium>=QOLS+1/2*Respiratory_rate\n", + "5298 Calcium>=1/2*Triglycerides/Urea_Nitrogen\n", + "5299 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "5300 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5301 Glomerular_filtration_rate_1_73_sq_M_predicted<=log(mean_Systolic_Blood_Pressure)+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5302 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5303 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Triglycerides,1/2*encounters_count)\n", + "5304 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(mean_Glomerular_filtration_rate_1_73_sq_M_predicted,1/imaging_studies_lifetime)\n", + "5305 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses^healthcare_coverage\n", + "5306 Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "5307 Glomerular_filtration_rate_1_73_sq_M_predicted>=floor(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5308 Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "5309 Glomerular_filtration_rate_1_73_sq_M_predicted>=-Urea_Nitrogen+lifetime_conditions\n", + "5310 Glomerular_filtration_rate_1_73_sq_M_predicted>=sqrt(medications_lifetime)/medications_active\n", + "5311 Glomerular_filtration_rate_1_73_sq_M_predicted>=Potassium*floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5312 Glomerular_filtration_rate_1_73_sq_M_predicted>=Creatinine*mean_Calcium\n", + "5313 Glomerular_filtration_rate_1_73_sq_M_predicted>=-imaging_studies_lifetime+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5314 Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "5315 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime\n", + "5316 Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "5317 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "5318 Globulin__Mass_volume__in_Serum_by_calculation<=immunizations_lifetime+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "5319 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(procedures_lifetime,mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5320 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(active_care_plans,mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5321 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(pH_of_Urine_by_Test_strip,mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5322 Globulin__Mass_volume__in_Serum_by_calculation<=DALY+active_care_plans\n", + "5323 Globulin__Mass_volume__in_Serum_by_calculation<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+QOLS\n", + "5324 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(mean_Globulin__Mass_volume__in_Serum_by_calculation,mean_Creatinine+1)\n", + "5325 Globulin__Mass_volume__in_Serum_by_calculation<=DALY+floor(mean_Creatinine)\n", + "5326 Globulin__Mass_volume__in_Serum_by_calculation<=minimum(healthcare_expenses,sqrt(mean_Estimated_Glomerular_Filtration_Rate))\n", + "5327 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses^healthcare_coverage\n", + "5328 Globulin__Mass_volume__in_Serum_by_calculation<=QALY-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5329 Globulin__Mass_volume__in_Serum_by_calculation<=mean_Globulin__Mass_volume__in_Serum_by_calculation+procedures_lifetime\n", + "5330 Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "5331 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "5332 Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "5333 Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "5334 Globulin__Mass_volume__in_Serum_by_calculation>=(encounters_count+1)/mean_Sodium\n", + "5335 Globulin__Mass_volume__in_Serum_by_calculation>=-encounters_lifetime_perc_covered+1/2*mean_Creatinine\n", + "5336 Globulin__Mass_volume__in_Serum_by_calculation>=-DALY+log(active_care_plan_length)\n", + "5337 Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "5338 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5339 Albumin__Mass_volume__in_Serum,Plasma<=mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "5340 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5341 Albumin__Mass_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-active_care_plans\n", + "5342 Albumin__Mass_volume__in_Serum,Plasma<=mean_Glomerular_filtration_rate_1_73_sq_M_predicted^QOLS\n", + "5343 Albumin__Mass_volume__in_Serum,Plasma<=e^DALY/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5344 Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "5345 Albumin__Mass_volume__in_Serum,Plasma>=minimum(active_care_plans,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "5346 Albumin__Mass_volume__in_Serum,Plasma>=minimum(mean_Albumin__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "5347 Albumin__Mass_volume__in_Serum,Plasma>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5348 Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5349 Albumin__Mass_volume__in_Serum,Plasma>=-immunizations_lifetime+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "5350 Albumin__Mass_volume__in_Serum,Plasma>=sqrt(imaging_studies_lifetime)+Globulin__Mass_volume__in_Serum_by_calculation\n", + "5351 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "5352 Albumin__Mass_volume__in_Serum,Plasma>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "5353 Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5354 Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5355 Albumin__Mass_volume__in_Serum,Plasma>=minimum(lifetime_care_plans,mean_Creatinine)\n", + "5356 Albumin__Mass_volume__in_Serum,Plasma>=active_care_plans/medications_active\n", + "5357 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5358 Protein__Mass_volume__in_Serum,Plasma<=Glomerular_filtration_rate_1_73_sq_M_predicted+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "5359 Protein__Mass_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "5360 Protein__Mass_volume__in_Serum,Plasma<=maximum(age,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5361 Protein__Mass_volume__in_Serum,Plasma<=floor(age)/QOLS\n", + "5362 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5363 Protein__Mass_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5364 Protein__Mass_volume__in_Serum,Plasma<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5365 Protein__Mass_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5366 Protein__Mass_volume__in_Serum,Plasma<=mean_Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "5367 Protein__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5368 Protein__Mass_volume__in_Serum,Plasma<=Heart_rate+medications_active\n", + "5369 Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "5370 Protein__Mass_volume__in_Serum,Plasma>=minimum(encounters_count,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5371 Protein__Mass_volume__in_Serum,Plasma>=minimum(medications_lifetime,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5372 Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5373 Protein__Mass_volume__in_Serum,Plasma>=minimum(Triglycerides,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5374 Protein__Mass_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "5375 Protein__Mass_volume__in_Serum,Plasma>=minimum(QALY,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5376 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma/medications_active\n", + "5377 Protein__Mass_volume__in_Serum,Plasma>=minimum(active_condition_length,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "5378 Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "5379 Protein__Mass_volume__in_Serum,Plasma>=(mean_Creatinine+1)*mean_Calcium\n", + "5380 Protein__Mass_volume__in_Serum,Plasma>=-mean_Globulin__Mass_volume__in_Serum_by_calculation+mean_Protein__Mass_volume__in_Serum,Plasma-1\n", + "5381 Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5382 Protein__Mass_volume__in_Serum,Plasma>=-Carbon_Dioxide+procedures_lifetime+1\n", + "5383 Protein__Mass_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Creatinine\n", + "5384 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5385 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5386 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Respiratory_rate,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5387 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=minimum(Triglycerides,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5388 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "5389 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5390 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5391 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Chloride-procedures_lifetime-1\n", + "5392 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(medications_lifetime,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5393 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=ceil(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)\n", + "5394 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=2*lifetime_condition_length/procedures_lifetime\n", + "5395 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^medications_active\n", + "5396 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5397 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "5398 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "5399 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=2*active_care_plans\n", + "5400 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5401 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5402 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=2*Heart_rate/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5403 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "5404 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=1/2*Respiratory_rate\n", + "5405 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=floor(mean_Ketones__Mass_volume__in_Urine_by_Test_strip)^immunizations_lifetime\n", + "5406 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5407 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5408 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5409 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=-Creatinine+Protein__Mass_volume__in_Serum,Plasma\n", + "5410 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(latitude,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5411 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=2*encounters_lifetime_perc_covered+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5412 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5413 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5414 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5415 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=imaging_studies_lifetime+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5416 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "5417 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=sqrt(healthcare_coverage)-active_care_plan_length\n", + "5418 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=10^medications_active+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5419 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "5420 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5421 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5422 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "5423 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "5424 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5425 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-Urea_Nitrogen+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5426 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5427 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=sqrt(medications_lifetime)+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "5428 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-Glomerular_filtration_rate_1_73_sq_M_predicted+e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5429 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5430 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Body_Mass_Index,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5431 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5432 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5433 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Sodium,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5434 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,Chloride+1)\n", + "5435 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5436 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=2*Respiratory_rate+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5437 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Body_Height,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5438 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^medications_active\n", + "5439 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5440 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "5441 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=(1/2*Urea_Nitrogen)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5442 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_condition_length,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5443 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "5444 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Urea_Nitrogen\n", + "5445 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "5446 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5447 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "5448 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5449 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5450 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5451 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5452 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5453 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=log(medications_active)*procedures_lifetime\n", + "5454 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=floor(QOLS)*lifetime_care_plan_length\n", + "5455 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5456 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5457 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "5458 Bilirubin_total__Mass_volume__in_Serum,Plasma<=Urea_Nitrogen/Respiratory_rate\n", + "5459 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Creatinine,1/procedures_lifetime)\n", + "5460 Bilirubin_total__Mass_volume__in_Serum,Plasma<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/Potassium\n", + "5461 Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "5462 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(encounters_lifetime_perc_covered,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5463 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5464 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-immunizations_lifetime+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5465 Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5466 Bilirubin_total__Mass_volume__in_Serum,Plasma>=(1/medications_lifetime)\n", + "5467 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(medications_lifetime_perc_covered,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5468 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5469 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma,1/2*Glucose__Mass_volume__in_Urine_by_Test_strip)\n", + "5470 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(device_lifetime_length,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5471 Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5472 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-device_lifetime_length+1/2*imaging_studies_lifetime\n", + "5473 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma,-pH_of_Urine_by_Test_strip)\n", + "5474 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma,log(medications_active)/log(10))\n", + "5475 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5476 Bilirubin_total__Mass_volume__in_Serum,Plasma>=sqrt(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)^Respiratory_rate\n", + "5477 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "5478 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5479 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=longitude\n", + "5480 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5481 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "5482 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "5483 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "5484 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5485 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "5486 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=DALY*mean_Urea_Nitrogen^2\n", + "5487 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "5488 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5489 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "5490 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(lifetime_condition_length,mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5491 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5492 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count+2*mean_MCV__Entitic_volume__by_Automated_count\n", + "5493 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5494 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5495 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^num_allergies\n", + "5496 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5497 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Respiratory_rate\n", + "5498 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(encounters_count,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5499 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(Urea_Nitrogen,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5500 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "5501 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5502 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+encounters_count\n", + "5503 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/num_allergies\n", + "5504 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(Triglycerides,Urea_Nitrogen)\n", + "5505 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=maximum(medications_lifetime,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5506 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "5507 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5508 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5509 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5510 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(Urea_Nitrogen,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5511 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5512 Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5513 Platelets____volume__in_Blood_by_Automated_count<=maximum(mean_Platelets____volume__in_Blood_by_Automated_count,1/medications_lifetime_perc_covered)\n", + "5514 Platelets____volume__in_Blood_by_Automated_count<=MCH__Entitic_mass__by_Automated_count*Respiratory_rate\n", + "5515 Platelets____volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,mean_Platelets____volume__in_Blood_by_Automated_count)\n", + "5516 Platelets____volume__in_Blood_by_Automated_count<=log(10^mean_Platelets____volume__in_Blood_by_Automated_count)/log(10)\n", + "5517 Platelets____volume__in_Blood_by_Automated_count<=mean_Platelets____volume__in_Blood_by_Automated_count/num_allergies\n", + "5518 Platelets____volume__in_Blood_by_Automated_count<=maximum(mean_Platelets____volume__in_Blood_by_Automated_count,encounters_count^2)\n", + "5519 Platelets____volume__in_Blood_by_Automated_count<=mean_Platelets____volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "5520 Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "5521 Platelets____volume__in_Blood_by_Automated_count>=mean_Platelets____volume__in_Blood_by_Automated_count\n", + "5522 Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5523 Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5524 Platelets____volume__in_Blood_by_Automated_count>=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,mean_Body_Mass_Index)\n", + "5525 Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5526 Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5527 Leukocytes____volume__in_Blood_by_Automated_count<=mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "5528 Leukocytes____volume__in_Blood_by_Automated_count<=Potassium^sqrt(DALY)\n", + "5529 Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "5530 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(mean_Leukocytes____volume__in_Blood_by_Automated_count,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "5531 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(DALY,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5532 Leukocytes____volume__in_Blood_by_Automated_count>=sqrt(mean_Platelets____volume__in_Blood_by_Automated_count)-Hemoglobin__Mass_volume__in_Blood\n", + "5533 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(device_lifetime_length,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5534 Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5535 Leukocytes____volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count-1\n", + "5536 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(active_care_plans,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5537 Leukocytes____volume__in_Blood_by_Automated_count>=mean_Leukocytes____volume__in_Blood_by_Automated_count^num_allergies\n", + "5538 Leukocytes____volume__in_Blood_by_Automated_count>=active_conditions/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5539 Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5540 Leukocytes____volume__in_Blood_by_Automated_count>=minimum(procedures_lifetime,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5541 Leukocytes____volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime_cost\n", + "5542 Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5543 Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5544 Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5545 Erythrocytes____volume__in_Blood_by_Automated_count<=mean_Erythrocytes____volume__in_Blood_by_Automated_count/num_allergies\n", + "5546 Erythrocytes____volume__in_Blood_by_Automated_count<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5547 Erythrocytes____volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count+1\n", + "5548 Erythrocytes____volume__in_Blood_by_Automated_count<=DALY+floor(Potassium)\n", + "5549 Erythrocytes____volume__in_Blood_by_Automated_count<=mean_Erythrocytes____volume__in_Blood_by_Automated_count+procedures_lifetime\n", + "5550 Erythrocytes____volume__in_Blood_by_Automated_count<=maximum(medications_lifetime,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5551 Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "5552 Erythrocytes____volume__in_Blood_by_Automated_count>=mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5553 Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5554 Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5555 Erythrocytes____volume__in_Blood_by_Automated_count>=-DALY+Potassium+1\n", + "5556 Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5557 Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "5558 Hemoglobin__Mass_volume__in_Blood<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Hemoglobin__Mass_volume__in_Blood)\n", + "5559 Hemoglobin__Mass_volume__in_Blood<=ceil(mean_Hemoglobin__Mass_volume__in_Blood)\n", + "5560 Hemoglobin__Mass_volume__in_Blood<=mean_Hemoglobin__Mass_volume__in_Blood/num_allergies\n", + "5561 Hemoglobin__Mass_volume__in_Blood<=1/lifetime_care_plans+mean_Hemoglobin__Mass_volume__in_Blood\n", + "5562 Hemoglobin__Mass_volume__in_Blood<=maximum(encounters_count,mean_Hemoglobin__Mass_volume__in_Blood)\n", + "5563 Hemoglobin__Mass_volume__in_Blood<=mean_Hemoglobin__Mass_volume__in_Blood+procedures_lifetime\n", + "5564 Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "5565 Hemoglobin__Mass_volume__in_Blood>=mean_Hemoglobin__Mass_volume__in_Blood\n", + "5566 Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "5567 Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "5568 Hemoglobin__Mass_volume__in_Blood>=sqrt(mean_Platelets____volume__in_Blood_by_Automated_count)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "5569 Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "5570 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "5571 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5572 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=(1/2*Chloride)^DALY\n", + "5573 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "5574 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=1/2*active_care_plans+mean_MCHC__Mass_volume__by_Automated_count\n", + "5575 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5576 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=minimum(mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5577 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "5578 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^num_allergies\n", + "5579 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-procedures_lifetime\n", + "5580 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^immunizations_lifetime\n", + "5581 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=DALY+active_care_plans\n", + "5582 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5583 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5584 MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5585 MCV__Entitic_volume__by_Automated_count<=mean_MCV__Entitic_volume__by_Automated_count\n", + "5586 MCV__Entitic_volume__by_Automated_count<=mean_Carbon_Dioxide^(log(MCH__Entitic_mass__by_Automated_count)/log(10))\n", + "5587 MCV__Entitic_volume__by_Automated_count>=latitude\n", + "5588 MCV__Entitic_volume__by_Automated_count>=minimum(medications_lifetime,mean_MCV__Entitic_volume__by_Automated_count)\n", + "5589 MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5590 MCV__Entitic_volume__by_Automated_count>=mean_MCV__Entitic_volume__by_Automated_count^num_allergies\n", + "5591 MCV__Entitic_volume__by_Automated_count>=mean_MCV__Entitic_volume__by_Automated_count-procedures_lifetime\n", + "5592 MCV__Entitic_volume__by_Automated_count>=minimum(mean_MCV__Entitic_volume__by_Automated_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5593 MCV__Entitic_volume__by_Automated_count>=minimum(encounters_count,mean_MCV__Entitic_volume__by_Automated_count)\n", + "5594 MCV__Entitic_volume__by_Automated_count>=minimum(mean_MCV__Entitic_volume__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5595 MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5596 MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5597 MCV__Entitic_volume__by_Automated_count>=mean_Chloride^2/immunizations_lifetime_cost\n", + "5598 MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "5599 MCH__Entitic_mass__by_Automated_count<=mean_MCH__Entitic_mass__by_Automated_count\n", + "5600 MCH__Entitic_mass__by_Automated_count<=-Sodium+floor(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "5601 MCH__Entitic_mass__by_Automated_count>=longitude\n", + "5602 MCH__Entitic_mass__by_Automated_count>=minimum(mean_MCH__Entitic_mass__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5603 MCH__Entitic_mass__by_Automated_count>=mean_MCH__Entitic_mass__by_Automated_count^num_allergies\n", + "5604 MCH__Entitic_mass__by_Automated_count>=minimum(device_lifetime_length,mean_MCH__Entitic_mass__by_Automated_count)\n", + "5605 MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "5606 MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "5607 MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5608 MCH__Entitic_mass__by_Automated_count>=DALY-Leukocytes____volume__in_Blood_by_Automated_count\n", + "5609 MCH__Entitic_mass__by_Automated_count>=mean_MCH__Entitic_mass__by_Automated_count-procedures_lifetime\n", + "5610 MCH__Entitic_mass__by_Automated_count>=minimum(Body_Mass_Index,mean_MCH__Entitic_mass__by_Automated_count)\n", + "5611 MCH__Entitic_mass__by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count/Respiratory_rate\n", + "5612 MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "5613 MCHC__Mass_volume__by_Automated_count<=mean_MCHC__Mass_volume__by_Automated_count\n", + "5614 MCHC__Mass_volume__by_Automated_count<=-log(age)/log(10)+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5615 MCHC__Mass_volume__by_Automated_count>=longitude\n", + "5616 MCHC__Mass_volume__by_Automated_count>=encounters_lifetime_perc_covered+mean_MCHC__Mass_volume__by_Automated_count-1\n", + "5617 MCHC__Mass_volume__by_Automated_count>=minimum(mean_MCHC__Mass_volume__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5618 MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5619 MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "5620 MCHC__Mass_volume__by_Automated_count>=minimum(DALY,mean_MCHC__Mass_volume__by_Automated_count)\n", + "5621 MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5622 MCHC__Mass_volume__by_Automated_count>=mean_MCHC__Mass_volume__by_Automated_count^num_allergies\n", + "5623 MCHC__Mass_volume__by_Automated_count>=-Body_Weight+Diastolic_Blood_Pressure\n", + "5624 MCHC__Mass_volume__by_Automated_count>=minimum(device_lifetime_length,mean_MCHC__Mass_volume__by_Automated_count)\n", + "5625 MCHC__Mass_volume__by_Automated_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_MCHC__Mass_volume__by_Automated_count\n", + "5626 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5627 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5628 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=mean_Calcium*sqrt(mean_Carbon_Dioxide)\n", + "5629 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "5630 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5631 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Calcium+2*Hemoglobin__Mass_volume__in_Blood\n", + "5632 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5633 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5634 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=minimum(mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5635 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^num_allergies\n", + "5636 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5637 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5638 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=minimum(device_lifetime_length,mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5639 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-procedures_lifetime\n", + "5640 Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "5641 Estimated_Glomerular_Filtration_Rate<=Creatinine+Heart_rate\n", + "5642 Estimated_Glomerular_Filtration_Rate<=(mean_Estimated_Glomerular_Filtration_Rate-1)/medications_lifetime_perc_covered\n", + "5643 Estimated_Glomerular_Filtration_Rate<=Heart_rate^2/Microalbumin_Creatinine_Ratio\n", + "5644 Estimated_Glomerular_Filtration_Rate<=Diastolic_Blood_Pressure*e^QOLS\n", + "5645 Estimated_Glomerular_Filtration_Rate<=Systolic_Blood_Pressure-mean_Urea_Nitrogen-1\n", + "5646 Estimated_Glomerular_Filtration_Rate<=minimum(healthcare_expenses,Erythrocytes____volume__in_Blood_by_Automated_count^2)\n", + "5647 Estimated_Glomerular_Filtration_Rate<=mean_Estimated_Glomerular_Filtration_Rate^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5648 Estimated_Glomerular_Filtration_Rate<=(mean_Chloride-1)/num_allergies\n", + "5649 Estimated_Glomerular_Filtration_Rate<=DALY+immunizations_lifetime_cost-1\n", + "5650 Estimated_Glomerular_Filtration_Rate<=-QALY+floor(mean_Triglycerides)\n", + "5651 Estimated_Glomerular_Filtration_Rate<=maximum(mean_Carbon_Dioxide,1/num_allergies)\n", + "5652 Estimated_Glomerular_Filtration_Rate<=(1/QOLS)^Urea_Nitrogen\n", + "5653 Estimated_Glomerular_Filtration_Rate<=10^immunizations_lifetime_cost+mean_Carbon_Dioxide\n", + "5654 Estimated_Glomerular_Filtration_Rate<=(Triglycerides-1)/Creatinine\n", + "5655 Estimated_Glomerular_Filtration_Rate<=(log(Respiratory_rate)/log(10))^latitude\n", + "5656 Estimated_Glomerular_Filtration_Rate<=(log(Respiratory_rate)/log(10))^QALY\n", + "5657 Estimated_Glomerular_Filtration_Rate<=mean_Urea_Nitrogen^2/mean_Creatinine\n", + "5658 Estimated_Glomerular_Filtration_Rate<=mean_Body_Weight^2/Microalbumin_Creatinine_Ratio\n", + "5659 Estimated_Glomerular_Filtration_Rate<=-mean_Creatinine+2*mean_Estimated_Glomerular_Filtration_Rate\n", + "5660 Estimated_Glomerular_Filtration_Rate<=e^ceil(Potassium)\n", + "5661 Estimated_Glomerular_Filtration_Rate<=1/2*active_care_plan_length+immunizations_lifetime_cost\n", + "5662 Estimated_Glomerular_Filtration_Rate<=10^Potassium/mean_Sodium\n", + "5663 Estimated_Glomerular_Filtration_Rate<=10^medications_active*Carbon_Dioxide\n", + "5664 Estimated_Glomerular_Filtration_Rate<=e^Calcium/mean_Microalbumin_Creatinine_Ratio\n", + "5665 Estimated_Glomerular_Filtration_Rate>=longitude\n", + "5666 Estimated_Glomerular_Filtration_Rate>=-immunizations_lifetime_cost+lifetime_conditions+1\n", + "5667 Estimated_Glomerular_Filtration_Rate>=(num_allergies+1)^procedures_lifetime\n", + "5668 Estimated_Glomerular_Filtration_Rate>=minimum(healthcare_coverage,Urea_Nitrogen)\n", + "5669 Estimated_Glomerular_Filtration_Rate>=1/2*Body_Mass_Index-Potassium\n", + "5670 Estimated_Glomerular_Filtration_Rate>=Creatinine*log(immunizations_lifetime_cost)/log(10)\n", + "5671 Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "5672 Estimated_Glomerular_Filtration_Rate>=2*Diastolic_Blood_Pressure-mean_Total_Cholesterol\n", + "5673 Estimated_Glomerular_Filtration_Rate>=2*mean_Estimated_Glomerular_Filtration_Rate-mean_Heart_rate\n", + "5674 Estimated_Glomerular_Filtration_Rate>=-Glucose+mean_Body_Weight\n", + "5675 Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "5676 Estimated_Glomerular_Filtration_Rate>=-DALY+2*Respiratory_rate\n", + "5677 Estimated_Glomerular_Filtration_Rate>=(latitude+1)/mean_Creatinine\n", + "5678 Estimated_Glomerular_Filtration_Rate>=(medications_active^2)^imaging_studies_lifetime\n", + "5679 Estimated_Glomerular_Filtration_Rate>=(log(age)/log(10))^num_allergies\n", + "5680 Estimated_Glomerular_Filtration_Rate>=sqrt(medications_lifetime)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5681 Estimated_Glomerular_Filtration_Rate>=1/2*mean_High_Density_Lipoprotein_Cholesterol/active_care_plans\n", + "5682 Estimated_Glomerular_Filtration_Rate>=-active_care_plans+1/2*device_lifetime_length\n", + "5683 Estimated_Glomerular_Filtration_Rate>=medications_active/QOLS\n", + "5684 Estimated_Glomerular_Filtration_Rate>=procedures_lifetime^imaging_studies_lifetime\n", + "5685 Estimated_Glomerular_Filtration_Rate>=2*Respiratory_rate-procedures_lifetime_cost\n", + "5686 Estimated_Glomerular_Filtration_Rate>=ceil(active_condition_length)-mean_High_Density_Lipoprotein_Cholesterol\n", + "5687 Estimated_Glomerular_Filtration_Rate>=(mean_Estimated_Glomerular_Filtration_Rate+1)^imaging_studies_lifetime\n", + "5688 Estimated_Glomerular_Filtration_Rate>=mean_Glucose-mean_Sodium+1\n", + "5689 Estimated_Glomerular_Filtration_Rate>=mean_Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost\n", + "5690 Estimated_Glomerular_Filtration_Rate>=2*Body_Height/Microalbumin_Creatinine_Ratio\n", + "5691 Estimated_Glomerular_Filtration_Rate>=-Potassium+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "5692 Estimated_Glomerular_Filtration_Rate>=sqrt(medications_lifetime)-DALY\n", + "5693 Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "5694 Estimated_Glomerular_Filtration_Rate>=mean_Estimated_Glomerular_Filtration_Rate-mean_Potassium-1\n", + "5695 Estimated_Glomerular_Filtration_Rate>=e^Calcium/medications_lifetime_dispenses\n", + "5696 Estimated_Glomerular_Filtration_Rate>=Body_Mass_Index-DALY-1\n", + "5697 Estimated_Glomerular_Filtration_Rate>=(log(mean_Respiratory_rate)/log(10))^Urea_Nitrogen\n", + "5698 Estimated_Glomerular_Filtration_Rate>=Glucose^2/medications_lifetime_dispenses\n", + "5699 Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "5700 Microalbumin_Creatinine_Ratio<=2*QALY+lifetime_condition_length\n", + "5701 Microalbumin_Creatinine_Ratio<=healthcare_coverage+2*mean_Diastolic_Blood_Pressure\n", + "5702 Microalbumin_Creatinine_Ratio<=log(Diastolic_Blood_Pressure)*mean_Microalbumin_Creatinine_Ratio/log(10)\n", + "5703 Microalbumin_Creatinine_Ratio<=e^Calcium/mean_Estimated_Glomerular_Filtration_Rate\n", + "5704 Microalbumin_Creatinine_Ratio<=Chloride+floor(mean_Microalbumin_Creatinine_Ratio)\n", + "5705 Microalbumin_Creatinine_Ratio<=-Urea_Nitrogen+e^DALY\n", + "5706 Microalbumin_Creatinine_Ratio<=maximum(pH_of_Urine_by_Test_strip,10^Creatinine)\n", + "5707 Microalbumin_Creatinine_Ratio<=maximum(latitude,10^Creatinine)\n", + "5708 Microalbumin_Creatinine_Ratio<=Low_Density_Lipoprotein_Cholesterol^2/DALY\n", + "5709 Microalbumin_Creatinine_Ratio<=(log(mean_Urea_Nitrogen)/log(10))^Chloride\n", + "5710 Microalbumin_Creatinine_Ratio<=Low_Density_Lipoprotein_Cholesterol*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "5711 Microalbumin_Creatinine_Ratio<=Total_Cholesterol+2*lifetime_care_plan_length\n", + "5712 Microalbumin_Creatinine_Ratio<=(log(mean_Urea_Nitrogen)/log(10))^medications_lifetime\n", + "5713 Microalbumin_Creatinine_Ratio<=longitude^2/device_lifetime_length\n", + "5714 Microalbumin_Creatinine_Ratio<=(medications_lifetime-1)/medications_lifetime_perc_covered\n", + "5715 Microalbumin_Creatinine_Ratio<=DALY^mean_Creatinine\n", + "5716 Microalbumin_Creatinine_Ratio<=mean_Calcium^2/imaging_studies_lifetime\n", + "5717 Microalbumin_Creatinine_Ratio<=floor(mean_Calcium)^mean_Creatinine\n", + "5718 Microalbumin_Creatinine_Ratio<=maximum(active_conditions,10^Creatinine)\n", + "5719 Microalbumin_Creatinine_Ratio<=10^QOLS*Body_Height\n", + "5720 Microalbumin_Creatinine_Ratio<=maximum(mean_Total_Cholesterol,1/num_allergies)\n", + "5721 Microalbumin_Creatinine_Ratio<=e^mean_Microalbumin_Creatinine_Ratio/DALY\n", + "5722 Microalbumin_Creatinine_Ratio<=2*Chloride/medications_lifetime_perc_covered\n", + "5723 Microalbumin_Creatinine_Ratio<=(e^Body_Mass_Index)^QOLS\n", + "5724 Microalbumin_Creatinine_Ratio<=mean_Microalbumin_Creatinine_Ratio^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5725 Microalbumin_Creatinine_Ratio<=minimum(healthcare_expenses,Hemoglobin__Mass_volume__in_Blood^2)\n", + "5726 Microalbumin_Creatinine_Ratio<=Low_Density_Lipoprotein_Cholesterol^2/Body_Mass_Index\n", + "5727 Microalbumin_Creatinine_Ratio<=(log(Heart_rate)/log(10))^Calcium\n", + "5728 Microalbumin_Creatinine_Ratio<=mean_Low_Density_Lipoprotein_Cholesterol*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "5729 Microalbumin_Creatinine_Ratio<=DALY*e^Creatinine\n", + "5730 Microalbumin_Creatinine_Ratio<=Carbon_Dioxide*sqrt(mean_Microalbumin_Creatinine_Ratio)\n", + "5731 Microalbumin_Creatinine_Ratio>=longitude\n", + "5732 Microalbumin_Creatinine_Ratio>=pH_of_Urine_by_Test_strip^imaging_studies_lifetime\n", + "5733 Microalbumin_Creatinine_Ratio>=medications_active^2-Carbon_Dioxide\n", + "5734 Microalbumin_Creatinine_Ratio>=2*device_lifetime_length-mean_High_Density_Lipoprotein_Cholesterol\n", + "5735 Microalbumin_Creatinine_Ratio>=-Estimated_Glomerular_Filtration_Rate+1/2*mean_Chloride\n", + "5736 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio-procedures_lifetime_cost\n", + "5737 Microalbumin_Creatinine_Ratio>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5738 Microalbumin_Creatinine_Ratio>=floor(QALY)-mean_Estimated_Glomerular_Filtration_Rate\n", + "5739 Microalbumin_Creatinine_Ratio>=-Sodium+mean_Microalbumin_Creatinine_Ratio+1\n", + "5740 Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "5741 Microalbumin_Creatinine_Ratio>=1/2*mean_High_Density_Lipoprotein_Cholesterol*num_allergies\n", + "5742 Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "5743 Microalbumin_Creatinine_Ratio>=1/2*mean_Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "5744 Microalbumin_Creatinine_Ratio>=-immunizations_lifetime_cost+2*latitude\n", + "5745 Microalbumin_Creatinine_Ratio>=e^mean_Creatinine/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5746 Microalbumin_Creatinine_Ratio>=Triglycerides-healthcare_coverage+1\n", + "5747 Microalbumin_Creatinine_Ratio>=(log(mean_Microalbumin_Creatinine_Ratio)/log(10))^Potassium\n", + "5748 Microalbumin_Creatinine_Ratio>=(e^active_care_plans)^medications_lifetime_perc_covered\n", + "5749 Microalbumin_Creatinine_Ratio>=immunizations_lifetime^2-medications_active\n", + "5750 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio-medications_lifetime+1\n", + "5751 Microalbumin_Creatinine_Ratio>=-Heart_rate+1/2*mean_Triglycerides\n", + "5752 Microalbumin_Creatinine_Ratio>=log(immunizations_lifetime)*mean_Microalbumin_Creatinine_Ratio/log(10)\n", + "5753 Microalbumin_Creatinine_Ratio>=sqrt(active_care_plans)^mean_Creatinine\n", + "5754 Microalbumin_Creatinine_Ratio>=(e^QOLS)^mean_Creatinine\n", + "5755 Microalbumin_Creatinine_Ratio>=e^medications_active*num_allergies\n", + "5756 Microalbumin_Creatinine_Ratio>=-Total_Cholesterol+mean_Triglycerides+1\n", + "5757 Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "5758 Microalbumin_Creatinine_Ratio>=Calcium^2-Glucose\n", + "5759 Microalbumin_Creatinine_Ratio>=-Heart_rate+1/2*lifetime_care_plan_length\n", + "5760 Microalbumin_Creatinine_Ratio>=(log(active_conditions)/log(10))^Urea_Nitrogen\n", + "5761 Microalbumin_Creatinine_Ratio>=minimum(Total_Cholesterol,1/medications_active)\n", + "5762 Microalbumin_Creatinine_Ratio>=QALY^2-medications_lifetime_length\n", + "5763 Microalbumin_Creatinine_Ratio>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported-mean_Estimated_Glomerular_Filtration_Rate\n", + "5764 mean_Body_Height<=healthcare_expenses\n", + "5765 mean_Body_Height<=ceil(Body_Height)\n", + "5766 mean_Body_Height<=maximum(lifetime_condition_length,Body_Height)\n", + "5767 mean_Body_Height<=Body_Height+healthcare_coverage\n", + "5768 mean_Body_Height<=Body_Height^active_care_plans\n", + "5769 mean_Body_Height<=Body_Height^active_conditions\n", + "5770 mean_Body_Height<=maximum(encounters_lifetime_payer_coverage,Body_Height)\n", + "5771 mean_Body_Height<=1/healthcare_expenses+Body_Height\n", + "5772 mean_Body_Height<=maximum(medications_lifetime,Body_Height)\n", + "5773 mean_Body_Height<=Body_Height+medications_lifetime_perc_covered\n", + "5774 mean_Body_Height<=Body_Height+medications_active\n", + "5775 mean_Body_Height<=Body_Height+procedures_lifetime\n", + "5776 mean_Body_Height<=maximum(Body_Height,2*Glucose)\n", + "5777 mean_Body_Height<=Body_Height+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5778 mean_Body_Height<=maximum(Body_Height,Total_Cholesterol)\n", + "5779 mean_Body_Height<=maximum(Body_Height,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5780 mean_Body_Height<=maximum(Body_Height,sqrt(healthcare_coverage))\n", + "5781 mean_Body_Height<=maximum(Body_Height,1/num_allergies)\n", + "5782 mean_Body_Height<=maximum(Body_Height,10^active_care_plans)\n", + "5783 mean_Body_Height<=maximum(Body_Height,2*lifetime_care_plan_length)\n", + "5784 mean_Body_Height<=1/2*Body_Height*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5785 mean_Body_Height<=(Body_Height^2)^Creatinine\n", + "5786 mean_Body_Height>=latitude\n", + "5787 mean_Body_Height>=floor(Body_Height)\n", + "5788 mean_Body_Height>=minimum(Body_Height,Estimated_Glomerular_Filtration_Rate)\n", + "5789 mean_Body_Height>=minimum(Body_Height,Triglycerides)\n", + "5790 mean_Body_Height>=healthcare_expenses^longitude\n", + "5791 mean_Body_Height>=Body_Height-healthcare_coverage\n", + "5792 mean_Body_Height>=Body_Height/active_care_plans\n", + "5793 mean_Body_Height>=minimum(lifetime_care_plan_length,Body_Height)\n", + "5794 mean_Body_Height>=Body_Height/active_conditions\n", + "5795 mean_Body_Height>=Body_Height-encounters_lifetime_payer_coverage\n", + "5796 mean_Body_Height>=-healthcare_expenses\n", + "5797 mean_Body_Height>=minimum(Body_Height,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5798 mean_Body_Height>=Body_Height-immunizations_lifetime\n", + "5799 mean_Body_Height>=minimum(immunizations_lifetime_cost,Body_Height)\n", + "5800 mean_Body_Height>=Body_Height-medications_active\n", + "5801 mean_Body_Height>=Body_Height-procedures_lifetime\n", + "5802 mean_Body_Height>=Body_Height^QOLS\n", + "5803 mean_Body_Height>=minimum(Body_Height,Creatinine)\n", + "5804 mean_Body_Height>=minimum(Body_Height,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5805 mean_Body_Height>=minimum(Systolic_Blood_Pressure,Body_Height)\n", + "5806 mean_Body_Height>=Body_Height-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5807 mean_Body_Height>=maximum(Body_Height,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5808 mean_Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "5809 mean_Body_Height>=1/longitude+Body_Height\n", + "5810 mean_Body_Height>=minimum(Body_Height,10^num_allergies)\n", + "5811 mean_Body_Mass_Index<=healthcare_expenses\n", + "5812 mean_Body_Mass_Index<=log(Potassium)/log(10)+Body_Mass_Index\n", + "5813 mean_Body_Mass_Index<=Body_Mass_Index+healthcare_coverage\n", + "5814 mean_Body_Mass_Index<=1/Glomerular_filtration_rate_1_73_sq_M_predicted+Body_Mass_Index\n", + "5815 mean_Body_Mass_Index<=Body_Mass_Index+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5816 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5817 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Microalbumin_Creatinine_Ratio)\n", + "5818 mean_Body_Mass_Index<=Body_Mass_Index^active_conditions\n", + "5819 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/num_allergies)\n", + "5820 mean_Body_Mass_Index<=Body_Mass_Index+procedures_lifetime\n", + "5821 mean_Body_Mass_Index<=1/2*Body_Mass_Index*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5822 mean_Body_Mass_Index<=maximum(encounters_count,Body_Mass_Index)\n", + "5823 mean_Body_Mass_Index<=Body_Mass_Index-encounters_lifetime_perc_covered+1\n", + "5824 mean_Body_Mass_Index<=Body_Mass_Index^active_care_plans\n", + "5825 mean_Body_Mass_Index<=maximum(lifetime_condition_length,Body_Mass_Index)\n", + "5826 mean_Body_Mass_Index<=maximum(medications_lifetime,Body_Mass_Index)\n", + "5827 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5828 mean_Body_Mass_Index<=Body_Mass_Index/QOLS\n", + "5829 mean_Body_Mass_Index<=1/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Body_Mass_Index\n", + "5830 mean_Body_Mass_Index<=1/device_lifetime_length+Body_Mass_Index\n", + "5831 mean_Body_Mass_Index<=maximum(Triglycerides,abs(Body_Mass_Index))\n", + "5832 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*encounters_count)\n", + "5833 mean_Body_Mass_Index<=maximum(Body_Mass_Index,10^procedures_lifetime)\n", + "5834 mean_Body_Mass_Index<=maximum(Body_Mass_Index,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5835 mean_Body_Mass_Index<=maximum(Body_Mass_Index,e^active_conditions)\n", + "5836 mean_Body_Mass_Index<=maximum(Body_Mass_Index,active_conditions^2)\n", + "5837 mean_Body_Mass_Index<=Glucose*sqrt(QOLS)\n", + "5838 mean_Body_Mass_Index<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)+active_condition_length\n", + "5839 mean_Body_Mass_Index<=Body_Mass_Index+2*QOLS\n", + "5840 mean_Body_Mass_Index<=maximum(Body_Mass_Index,e^DALY)\n", + "5841 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Microalbumin_Creatinine_Ratio-1)\n", + "5842 mean_Body_Mass_Index>=longitude\n", + "5843 mean_Body_Mass_Index>=ceil(Body_Mass_Index-1)\n", + "5844 mean_Body_Mass_Index>=healthcare_expenses^longitude\n", + "5845 mean_Body_Mass_Index>=Respiratory_rate+lifetime_care_plans\n", + "5846 mean_Body_Mass_Index>=minimum(Body_Mass_Index,sqrt(lifetime_condition_length))\n", + "5847 mean_Body_Mass_Index>=minimum(procedures_lifetime,Body_Mass_Index)\n", + "5848 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "5849 mean_Body_Mass_Index>=minimum(Body_Mass_Index,sqrt(medications_lifetime))\n", + "5850 mean_Body_Mass_Index>=-healthcare_expenses\n", + "5851 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^imaging_studies_lifetime)\n", + "5852 mean_Body_Mass_Index>=-Leukocytes____volume__in_Blood_by_Automated_count+procedures_lifetime\n", + "5853 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5854 mean_Body_Mass_Index>=Body_Mass_Index-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5855 mean_Body_Mass_Index>=Body_Mass_Index-healthcare_coverage\n", + "5856 mean_Body_Mass_Index>=Body_Mass_Index/active_care_plans\n", + "5857 mean_Body_Mass_Index>=Body_Mass_Index/active_conditions\n", + "5858 mean_Body_Mass_Index>=Body_Mass_Index-encounters_lifetime_payer_coverage\n", + "5859 mean_Body_Mass_Index>=Body_Mass_Index-medications_active\n", + "5860 mean_Body_Mass_Index>=Body_Mass_Index^QOLS\n", + "5861 mean_Body_Mass_Index>=log(medications_lifetime_perc_covered)/log(10)+Body_Mass_Index\n", + "5862 mean_Body_Mass_Index>=-Total_Cholesterol+Triglycerides\n", + "5863 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine)\n", + "5864 mean_Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "5865 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^num_allergies)\n", + "5866 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Carbon_Dioxide)\n", + "5867 mean_Body_Mass_Index>=maximum(Body_Mass_Index,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5868 mean_Body_Mass_Index>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Calcium\n", + "5869 mean_Body_Mass_Index>=Body_Mass_Index*log(lifetime_care_plans)/log(10)\n", + "5870 mean_Body_Mass_Index>=mean_Protein__Mass_volume__in_Serum,Plasma/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5871 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^immunizations_lifetime)\n", + "5872 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/encounters_lifetime_perc_covered)\n", + "5873 mean_Body_Mass_Index>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*device_lifetime_length\n", + "5874 mean_Body_Mass_Index>=log(QOLS)/log(10)+Body_Mass_Index\n", + "5875 mean_Body_Mass_Index>=1/2*Body_Mass_Index/Creatinine\n", + "5876 mean_Body_Mass_Index>=minimum(immunizations_lifetime_cost,floor(Body_Mass_Index))\n", + "5877 mean_Body_Mass_Index>=minimum(Body_Mass_Index,-Triglycerides)\n", + "5878 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)\n", + "5879 mean_Body_Mass_Index>=(Erythrocytes____volume__in_Blood_by_Automated_count+1)*mean_Creatinine\n", + "5880 mean_Body_Mass_Index>=-Respiratory_rate+2*Urea_Nitrogen\n", + "5881 mean_Body_Weight<=healthcare_expenses\n", + "5882 mean_Body_Weight<=ceil(Body_Weight)+immunizations_lifetime_cost\n", + "5883 mean_Body_Weight<=Body_Weight^active_conditions\n", + "5884 mean_Body_Weight<=maximum(lifetime_condition_length,Body_Weight)\n", + "5885 mean_Body_Weight<=maximum(encounters_count,Body_Weight)\n", + "5886 mean_Body_Weight<=Body_Weight+healthcare_coverage\n", + "5887 mean_Body_Weight<=Body_Weight+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5888 mean_Body_Weight<=Body_Weight+procedures_lifetime\n", + "5889 mean_Body_Weight<=maximum(Body_Weight,1/device_lifetime_length)\n", + "5890 mean_Body_Weight<=maximum(Body_Weight,Low_Density_Lipoprotein_Cholesterol)\n", + "5891 mean_Body_Weight<=Body_Weight+1/2*Creatinine\n", + "5892 mean_Body_Weight<=maximum(Body_Weight,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5893 mean_Body_Weight<=maximum(Body_Weight,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5894 mean_Body_Weight<=maximum(Body_Weight,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5895 mean_Body_Weight<=Estimated_Glomerular_Filtration_Rate+Glucose\n", + "5896 mean_Body_Weight<=2*High_Density_Lipoprotein_Cholesterol+Urea_Nitrogen\n", + "5897 mean_Body_Weight<=maximum(Body_Weight,1/num_allergies)\n", + "5898 mean_Body_Weight<=maximum(Heart_rate,ceil(Body_Weight))\n", + "5899 mean_Body_Weight<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5900 mean_Body_Weight<=Body_Weight^active_care_plans\n", + "5901 mean_Body_Weight>=latitude\n", + "5902 mean_Body_Weight>=Body_Weight-1\n", + "5903 mean_Body_Weight>=healthcare_expenses^longitude\n", + "5904 mean_Body_Weight>=minimum(active_condition_length,Body_Weight)\n", + "5905 mean_Body_Weight>=-healthcare_expenses\n", + "5906 mean_Body_Weight>=minimum(Body_Weight,Estimated_Glomerular_Filtration_Rate)\n", + "5907 mean_Body_Weight>=Body_Weight-encounters_lifetime_payer_coverage\n", + "5908 mean_Body_Weight>=minimum(QALY,Body_Weight)\n", + "5909 mean_Body_Weight>=minimum(Body_Weight,High_Density_Lipoprotein_Cholesterol)\n", + "5910 mean_Body_Weight>=minimum(Body_Weight,1/2*Systolic_Blood_Pressure)\n", + "5911 mean_Body_Weight>=Diastolic_Blood_Pressure-MCHC__Mass_volume__by_Automated_count\n", + "5912 mean_Body_Weight>=Body_Weight-healthcare_coverage\n", + "5913 mean_Body_Weight>=Body_Weight/active_care_plans\n", + "5914 mean_Body_Weight>=Body_Weight/active_conditions\n", + "5915 mean_Body_Weight>=Body_Weight-medications_active\n", + "5916 mean_Body_Weight>=Body_Weight^QOLS\n", + "5917 mean_Body_Weight>=minimum(Body_Weight,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5918 mean_Body_Weight>=Body_Weight-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5919 mean_Body_Weight>=minimum(Body_Weight,Creatinine)\n", + "5920 mean_Body_Weight>=Body_Weight+log(medications_lifetime_perc_covered)\n", + "5921 mean_Body_Weight>=maximum(Body_Weight,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5922 mean_Body_Weight>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "5923 mean_Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "5924 mean_Body_Weight>=minimum(Body_Weight,10^num_allergies)\n", + "5925 mean_Body_Weight>=floor(Body_Weight)-immunizations_lifetime\n", + "5926 mean_Body_Weight>=minimum(age,floor(Body_Weight))\n", + "5927 mean_Body_Weight>=Body_Weight+log(encounters_lifetime_perc_covered)\n", + "5928 mean_Body_Weight>=minimum(Body_Weight,10^immunizations_lifetime)\n", + "5929 mean_Body_Weight>=minimum(Diastolic_Blood_Pressure,floor(Body_Weight))\n", + "5930 mean_Body_Weight>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,floor(Body_Weight))\n", + "5931 mean_Body_Weight>=minimum(Body_Weight,1/2*Low_Density_Lipoprotein_Cholesterol)\n", + "5932 mean_Body_Weight>=DALY+1/2*MCV__Entitic_volume__by_Automated_count\n", + "5933 mean_Calcium<=healthcare_expenses\n", + "5934 mean_Calcium<=Calcium+1\n", + "5935 mean_Calcium<=floor(1/2*Carbon_Dioxide)\n", + "5936 mean_Calcium<=Body_Weight^2/encounters_count\n", + "5937 mean_Calcium<=10^(10^immunizations_lifetime)\n", + "5938 mean_Calcium<=Calcium^active_care_plans\n", + "5939 mean_Calcium<=maximum(encounters_count,Calcium)\n", + "5940 mean_Calcium<=Calcium+procedures_lifetime\n", + "5941 mean_Calcium<=Estimated_Glomerular_Filtration_Rate*log(active_conditions)/log(10)\n", + "5942 mean_Calcium<=Glomerular_filtration_rate_1_73_sq_M_predicted/Creatinine\n", + "5943 mean_Calcium<=sqrt(Chloride)+num_allergies\n", + "5944 mean_Calcium<=Bilirubin_total__Mass_volume__in_Serum,Plasma+Calcium\n", + "5945 mean_Calcium<=maximum(Triglycerides,Calcium)\n", + "5946 mean_Calcium<=sqrt(Estimated_Glomerular_Filtration_Rate)+DALY\n", + "5947 mean_Calcium<=lifetime_care_plan_length/lifetime_care_plans\n", + "5948 mean_Calcium<=active_care_plan_length*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "5949 mean_Calcium<=maximum(medications_lifetime,Calcium)\n", + "5950 mean_Calcium<=(1/medications_lifetime_perc_covered)^Chloride\n", + "5951 mean_Calcium<=1/immunizations_lifetime+Calcium\n", + "5952 mean_Calcium<=-Sodium+Total_Cholesterol\n", + "5953 mean_Calcium<=maximum(Calcium,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5954 mean_Calcium<=Calcium+healthcare_coverage\n", + "5955 mean_Calcium<=sqrt(Body_Mass_Index)+Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5956 mean_Calcium<=Potassium*log(Respiratory_rate)\n", + "5957 mean_Calcium<=Calcium+medications_active\n", + "5958 mean_Calcium<=Calcium/QOLS\n", + "5959 mean_Calcium<=maximum(Urea_Nitrogen,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5960 mean_Calcium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Potassium\n", + "5961 mean_Calcium<=maximum(Respiratory_rate,Calcium)\n", + "5962 mean_Calcium<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "5963 mean_Calcium<=maximum(Calcium,mean_Urea_Nitrogen)\n", + "5964 mean_Calcium<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5965 mean_Calcium<=10^ceil(DALY)\n", + "5966 mean_Calcium<=10^(10^procedures_lifetime)\n", + "5967 mean_Calcium<=maximum(Calcium,e^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5968 mean_Calcium<=Calcium^active_conditions\n", + "5969 mean_Calcium<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*Carbon_Dioxide\n", + "5970 mean_Calcium<=log(Systolic_Blood_Pressure)+mean_Microalbumin_Creatinine_Ratio\n", + "5971 mean_Calcium<=-Diastolic_Blood_Pressure+Triglycerides+1\n", + "5972 mean_Calcium<=(age+1)/mean_Potassium\n", + "5973 mean_Calcium<=maximum(Calcium,10^medications_active)\n", + "5974 mean_Calcium<=1/2*Hemoglobin__Mass_volume__in_Blood+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5975 mean_Calcium<=age-device_lifetime_length-1\n", + "5976 mean_Calcium<=-QOLS+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5977 mean_Calcium<=Calcium+log(active_care_plans)\n", + "5978 mean_Calcium<=sqrt(Systolic_Blood_Pressure)-medications_lifetime_perc_covered\n", + "5979 mean_Calcium<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)+Urea_Nitrogen\n", + "5980 mean_Calcium<=1/medications_lifetime_perc_covered+Urea_Nitrogen\n", + "5981 mean_Calcium<=-QOLS+Respiratory_rate-1\n", + "5982 mean_Calcium<=maximum(active_conditions,ceil(Calcium))\n", + "5983 mean_Calcium<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5984 mean_Calcium<=Carbon_Dioxide^2/DALY\n", + "5985 mean_Calcium<=log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10)+Calcium\n", + "5986 mean_Calcium<=-Body_Mass_Index+ceil(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "5987 mean_Calcium>=longitude\n", + "5988 mean_Calcium>=Calcium-Creatinine\n", + "5989 mean_Calcium>=Calcium-1\n", + "5990 mean_Calcium>=minimum(Calcium,10^imaging_studies_lifetime)\n", + "5991 mean_Calcium>=minimum(Calcium,1/2*Urea_Nitrogen)\n", + "5992 mean_Calcium>=sqrt(mean_Estimated_Glomerular_Filtration_Rate)\n", + "5993 mean_Calcium>=minimum(medications_active,Calcium)\n", + "5994 mean_Calcium>=healthcare_expenses^longitude\n", + "5995 mean_Calcium>=minimum(Calcium,sqrt(QALY))\n", + "5996 mean_Calcium>=log(active_care_plan_length)*mean_Potassium/log(10)\n", + "5997 mean_Calcium>=Calcium-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5998 mean_Calcium>=minimum(Calcium,medications_active+1)\n", + "5999 mean_Calcium>=Carbon_Dioxide-active_care_plan_length\n", + "6000 mean_Calcium>=(Glucose+1)/Estimated_Glomerular_Filtration_Rate\n", + "6001 mean_Calcium>=log(encounters_lifetime_total_cost)/log(10)+num_allergies\n", + "6002 mean_Calcium>=floor(Total_Cholesterol)/active_condition_length\n", + "6003 mean_Calcium>=lifetime_care_plans/DALY\n", + "6004 mean_Calcium>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*Creatinine\n", + "6005 mean_Calcium>=ceil(Chloride)/Respiratory_rate\n", + "6006 mean_Calcium>=1/2*MCH__Entitic_mass__by_Automated_count-encounters_count\n", + "6007 mean_Calcium>=log(encounters_lifetime_payer_coverage)-medications_active\n", + "6008 mean_Calcium>=Calcium/active_care_plans\n", + "6009 mean_Calcium>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,10^device_lifetime_length)\n", + "6010 mean_Calcium>=(encounters_count+1)/High_Density_Lipoprotein_Cholesterol\n", + "6011 mean_Calcium>=active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6012 mean_Calcium>=active_care_plans+log(lifetime_care_plans)\n", + "6013 mean_Calcium>=QOLS/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6014 mean_Calcium>=-longitude/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6015 mean_Calcium>=minimum(lifetime_care_plans,Calcium)\n", + "6016 mean_Calcium>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,abs(Calcium))\n", + "6017 mean_Calcium>=2*Diastolic_Blood_Pressure/mean_Carbon_Dioxide\n", + "6018 mean_Calcium>=1/2*Total_Cholesterol/mean_Respiratory_rate\n", + "6019 mean_Calcium>=Calcium/active_conditions\n", + "6020 mean_Calcium>=log(encounters_lifetime_total_cost)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6021 mean_Calcium>=(Body_Height+1)/Body_Mass_Index\n", + "6022 mean_Calcium>=2*Erythrocytes____volume__in_Blood_by_Automated_count-1\n", + "6023 mean_Calcium>=minimum(Calcium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6024 mean_Calcium>=Albumin__Mass_volume__in_Serum,Plasma+ceil(Creatinine)\n", + "6025 mean_Calcium>=floor(age)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "6026 mean_Calcium>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-active_care_plan_length\n", + "6027 mean_Calcium>=10^medications_lifetime_perc_covered+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6028 mean_Calcium>=floor(Creatinine)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6029 mean_Calcium>=-Respiratory_rate+1/2*latitude\n", + "6030 mean_Calcium>=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma*DALY\n", + "6031 mean_Calcium>=QOLS+1/2*Respiratory_rate\n", + "6032 mean_Calcium>=floor(Calcium)-immunizations_lifetime\n", + "6033 mean_Calcium>=sqrt(Glucose)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6034 mean_Calcium>=sqrt(Respiratory_rate)+Potassium\n", + "6035 mean_Calcium>=1/2*active_condition_length/Potassium\n", + "6036 mean_Calcium>=(10^healthcare_expenses)^longitude\n", + "6037 mean_Calcium>=sqrt(Low_Density_Lipoprotein_Cholesterol)-DALY\n", + "6038 mean_Calcium>=sqrt(age)-immunizations_lifetime\n", + "6039 mean_Calcium>=Respiratory_rate-mean_Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "6040 mean_Calcium>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(Calcium)\n", + "6041 mean_Calcium>=lifetime_conditions^2/encounters_count\n", + "6042 mean_Calcium>=2*Glucose/MCHC__Mass_volume__by_Automated_count\n", + "6043 mean_Calcium>=-Heart_rate+active_condition_length+1\n", + "6044 mean_Calcium>=log(device_lifetime_length)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6045 mean_Calcium>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(Calcium))\n", + "6046 mean_Calcium>=sqrt(Low_Density_Lipoprotein_Cholesterol)-Globulin__Mass_volume__in_Serum_by_calculation\n", + "6047 mean_Calcium>=sqrt(Microalbumin_Creatinine_Ratio)^imaging_studies_lifetime\n", + "6048 mean_Carbon_Dioxide<=healthcare_expenses\n", + "6049 mean_Carbon_Dioxide<=maximum(Heart_rate,Carbon_Dioxide)\n", + "6050 mean_Carbon_Dioxide<=Carbon_Dioxide+healthcare_coverage-1\n", + "6051 mean_Carbon_Dioxide<=Carbon_Dioxide^active_care_plans\n", + "6052 mean_Carbon_Dioxide<=10^Leukocytes____volume__in_Blood_by_Automated_count/mean_Systolic_Blood_Pressure\n", + "6053 mean_Carbon_Dioxide<=maximum(Body_Mass_Index,Carbon_Dioxide)\n", + "6054 mean_Carbon_Dioxide<=Carbon_Dioxide+log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "6055 mean_Carbon_Dioxide<=(1/encounters_lifetime_perc_covered)^Microalbumin_Creatinine_Ratio\n", + "6056 mean_Carbon_Dioxide<=maximum(Triglycerides,Carbon_Dioxide)\n", + "6057 mean_Carbon_Dioxide<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*sqrt(Urea_Nitrogen)\n", + "6058 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "6059 mean_Carbon_Dioxide<=Albumin__Mass_volume__in_Serum,Plasma+Carbon_Dioxide-1\n", + "6060 mean_Carbon_Dioxide<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Heart_rate\n", + "6061 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,active_conditions^2)\n", + "6062 mean_Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/QOLS\n", + "6063 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,e^DALY)\n", + "6064 mean_Carbon_Dioxide<=2*Glucose/mean_Creatinine\n", + "6065 mean_Carbon_Dioxide<=-Respiratory_rate+floor(age)\n", + "6066 mean_Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Potassium+1\n", + "6067 mean_Carbon_Dioxide<=-Leukocytes____volume__in_Blood_by_Automated_count+ceil(active_care_plan_length)\n", + "6068 mean_Carbon_Dioxide<=maximum(encounters_count,floor(active_care_plan_length))\n", + "6069 mean_Carbon_Dioxide<=ceil(Potassium)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6070 mean_Carbon_Dioxide<=Carbon_Dioxide^active_conditions\n", + "6071 mean_Carbon_Dioxide<=Chloride-High_Density_Lipoprotein_Cholesterol\n", + "6072 mean_Carbon_Dioxide<=active_condition_length+immunizations_lifetime+1\n", + "6073 mean_Carbon_Dioxide<=Carbon_Dioxide+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6074 mean_Carbon_Dioxide<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+QALY+1\n", + "6075 mean_Carbon_Dioxide<=1/imaging_studies_lifetime+mean_Estimated_Glomerular_Filtration_Rate\n", + "6076 mean_Carbon_Dioxide<=Calcium+ceil(active_care_plan_length)\n", + "6077 mean_Carbon_Dioxide<=Erythrocytes____volume__in_Blood_by_Automated_count^2+Calcium\n", + "6078 mean_Carbon_Dioxide<=e^Calcium/Body_Height\n", + "6079 mean_Carbon_Dioxide<=Estimated_Glomerular_Filtration_Rate+procedures_lifetime_cost-1\n", + "6080 mean_Carbon_Dioxide<=Estimated_Glomerular_Filtration_Rate+e^active_care_plans\n", + "6081 mean_Carbon_Dioxide<=Carbon_Dioxide+encounters_lifetime_payer_coverage\n", + "6082 mean_Carbon_Dioxide<=sqrt(DALY)+Carbon_Dioxide\n", + "6083 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,10^DALY)\n", + "6084 mean_Carbon_Dioxide<=1/2*QALY+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "6085 mean_Carbon_Dioxide<=(2*Systolic_Blood_Pressure)^mean_Creatinine\n", + "6086 mean_Carbon_Dioxide<=2*Protein__Mass_volume__in_Serum,Plasma*encounters_lifetime_perc_covered\n", + "6087 mean_Carbon_Dioxide<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,sqrt(Protein__Mass_volume__in_Urine_by_Test_strip))\n", + "6088 mean_Carbon_Dioxide<=maximum(active_care_plan_length,1/device_lifetime_length)\n", + "6089 mean_Carbon_Dioxide<=Carbon_Dioxide+log(Glucose)\n", + "6090 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,2*encounters_count)\n", + "6091 mean_Carbon_Dioxide<=(log(encounters_lifetime_total_cost)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6092 mean_Carbon_Dioxide<=10^medications_active+Carbon_Dioxide\n", + "6093 mean_Carbon_Dioxide<=(Estimated_Glomerular_Filtration_Rate+1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6094 mean_Carbon_Dioxide<=log(Systolic_Blood_Pressure)*mean_Respiratory_rate/log(10)\n", + "6095 mean_Carbon_Dioxide<=Carbon_Dioxide^2/Urea_Nitrogen\n", + "6096 mean_Carbon_Dioxide<=Calcium*floor(Potassium)\n", + "6097 mean_Carbon_Dioxide<=Chloride^2/encounters_count\n", + "6098 mean_Carbon_Dioxide<=Carbon_Dioxide+log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6099 mean_Carbon_Dioxide<=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)*Glucose\n", + "6100 mean_Carbon_Dioxide>=longitude\n", + "6101 mean_Carbon_Dioxide>=2*Carbon_Dioxide/Globulin__Mass_volume__in_Serum_by_calculation\n", + "6102 mean_Carbon_Dioxide>=Albumin__Mass_volume__in_Serum,Plasma+Urea_Nitrogen+1\n", + "6103 mean_Carbon_Dioxide>=sqrt(Carbon_Dioxide)+active_conditions\n", + "6104 mean_Carbon_Dioxide>=Carbon_Dioxide-procedures_lifetime_cost\n", + "6105 mean_Carbon_Dioxide>=Carbon_Dioxide-DALY\n", + "6106 mean_Carbon_Dioxide>=Carbon_Dioxide-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1\n", + "6107 mean_Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(lifetime_condition_length)\n", + "6108 mean_Carbon_Dioxide>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Carbon_Dioxide)\n", + "6109 mean_Carbon_Dioxide>=healthcare_expenses^longitude\n", + "6110 mean_Carbon_Dioxide>=2*ceil(Calcium)\n", + "6111 mean_Carbon_Dioxide>=1/2*medications_lifetime/Microalbumin_Creatinine_Ratio\n", + "6112 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6113 mean_Carbon_Dioxide>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/mean_Sodium\n", + "6114 mean_Carbon_Dioxide>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(procedures_lifetime)/log(10)\n", + "6115 mean_Carbon_Dioxide>=sqrt(lifetime_condition_length)-device_lifetime_length\n", + "6116 mean_Carbon_Dioxide>=-DALY+floor(device_lifetime_length)\n", + "6117 mean_Carbon_Dioxide>=Creatinine*sqrt(device_lifetime_length)\n", + "6118 mean_Carbon_Dioxide>=Carbon_Dioxide/active_conditions\n", + "6119 mean_Carbon_Dioxide>=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1/2\n", + "6120 mean_Carbon_Dioxide>=-Heart_rate+age+1\n", + "6121 mean_Carbon_Dioxide>=1/2*Total_Cholesterol/medications_lifetime\n", + "6122 mean_Carbon_Dioxide>=Hemoglobin__Mass_volume__in_Blood+log(immunizations_lifetime_cost)\n", + "6123 mean_Carbon_Dioxide>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(lifetime_conditions)\n", + "6124 mean_Carbon_Dioxide>=num_allergies^2-1\n", + "6125 mean_Carbon_Dioxide>=log(Microalbumin_Creatinine_Ratio)*mean_Calcium/log(10)\n", + "6126 mean_Carbon_Dioxide>=sqrt(Total_Cholesterol)/mean_Creatinine\n", + "6127 mean_Carbon_Dioxide>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/Leukocytes____volume__in_Blood_by_Automated_count\n", + "6128 mean_Carbon_Dioxide>=2*medications_lifetime_dispenses/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "6129 mean_Carbon_Dioxide>=Carbon_Dioxide/active_care_plans\n", + "6130 mean_Carbon_Dioxide>=QOLS^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "6131 mean_Carbon_Dioxide>=DALY-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6132 mean_Carbon_Dioxide>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2-encounters_count\n", + "6133 mean_Carbon_Dioxide>=Calcium+ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "6134 mean_Carbon_Dioxide>=immunizations_lifetime_cost/active_care_plan_length\n", + "6135 mean_Carbon_Dioxide>=(Body_Weight+1)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6136 mean_Carbon_Dioxide>=sqrt(lifetime_condition_length)+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6137 mean_Carbon_Dioxide>=lifetime_care_plans*log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "6138 mean_Carbon_Dioxide>=Respiratory_rate+medications_active\n", + "6139 mean_Carbon_Dioxide>=log(active_conditions)/QOLS\n", + "6140 mean_Carbon_Dioxide>=2*Diastolic_Blood_Pressure/mean_Calcium\n", + "6141 mean_Carbon_Dioxide>=Diastolic_Blood_Pressure/Potassium\n", + "6142 mean_Carbon_Dioxide>=Carbon_Dioxide*log(lifetime_care_plans)/log(10)\n", + "6143 mean_Carbon_Dioxide>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Creatinine\n", + "6144 mean_Carbon_Dioxide>=(Body_Height+1)/Calcium\n", + "6145 mean_Carbon_Dioxide>=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)+lifetime_conditions\n", + "6146 mean_Carbon_Dioxide>=sqrt(Calcium)*active_care_plans\n", + "6147 mean_Carbon_Dioxide>=floor(Urea_Nitrogen)+mean_Creatinine\n", + "6148 mean_Carbon_Dioxide>=2*sqrt(Glucose)\n", + "6149 mean_Carbon_Dioxide>=minimum(Estimated_Glomerular_Filtration_Rate,Potassium^2)\n", + "6150 mean_Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "6151 mean_Carbon_Dioxide>=minimum(DALY,1/2*latitude)\n", + "6152 mean_Carbon_Dioxide>=sqrt(medications_lifetime_dispenses)^medications_lifetime_perc_covered\n", + "6153 mean_Carbon_Dioxide>=Carbon_Dioxide-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "6154 mean_Carbon_Dioxide>=Glomerular_filtration_rate_1_73_sq_M_predicted-Protein__Mass_volume__in_Serum,Plasma-1\n", + "6155 mean_Carbon_Dioxide>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)^QOLS\n", + "6156 mean_Carbon_Dioxide>=(Creatinine-1)*active_care_plans\n", + "6157 mean_Carbon_Dioxide>=2*QALY-Sodium\n", + "6158 mean_Carbon_Dioxide>=2*Diastolic_Blood_Pressure/Urea_Nitrogen\n", + "6159 mean_Carbon_Dioxide>=-Urea_Nitrogen+floor(Body_Mass_Index)\n", + "6160 mean_Carbon_Dioxide>=minimum(mean_Estimated_Glomerular_Filtration_Rate,Potassium^2)\n", + "6161 mean_Carbon_Dioxide>=floor(Glucose)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "6162 mean_Carbon_Dioxide>=Carbon_Dioxide-Potassium+1\n", + "6163 mean_Chloride<=healthcare_expenses\n", + "6164 mean_Chloride<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Diastolic_Blood_Pressure\n", + "6165 mean_Chloride<=maximum(lifetime_condition_length,Chloride)\n", + "6166 mean_Chloride<=Chloride^active_care_plans\n", + "6167 mean_Chloride<=maximum(Triglycerides,Chloride)\n", + "6168 mean_Chloride<=Albumin__Mass_volume__in_Serum,Plasma+floor(Chloride)\n", + "6169 mean_Chloride<=Heart_rate+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "6170 mean_Chloride<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^QALY\n", + "6171 mean_Chloride<=Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "6172 mean_Chloride<=1/2*Body_Height+active_condition_length\n", + "6173 mean_Chloride<=maximum(Chloride,mean_Systolic_Blood_Pressure)\n", + "6174 mean_Chloride<=Systolic_Blood_Pressure-mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6175 mean_Chloride<=10^medications_active*Systolic_Blood_Pressure\n", + "6176 mean_Chloride<=Body_Weight*log(latitude)/log(10)\n", + "6177 mean_Chloride<=1/2*Low_Density_Lipoprotein_Cholesterol+mean_Heart_rate\n", + "6178 mean_Chloride<=maximum(Systolic_Blood_Pressure,Chloride+1)\n", + "6179 mean_Chloride<=Chloride+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1\n", + "6180 mean_Chloride<=Body_Mass_Index+2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6181 mean_Chloride<=Globulin__Mass_volume__in_Serum_by_calculation+ceil(Chloride)\n", + "6182 mean_Chloride<=Chloride/QOLS\n", + "6183 mean_Chloride<=Diastolic_Blood_Pressure+e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "6184 mean_Chloride<=maximum(Chloride,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6185 mean_Chloride<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+2*QALY\n", + "6186 mean_Chloride<=Chloride+healthcare_coverage-1\n", + "6187 mean_Chloride<=Chloride^active_conditions\n", + "6188 mean_Chloride<=maximum(Body_Height,Chloride)\n", + "6189 mean_Chloride<=2*Heart_rate-active_conditions\n", + "6190 mean_Chloride<=ceil(Total_Cholesterol)-procedures_lifetime\n", + "6191 mean_Chloride<=10^QOLS+Chloride\n", + "6192 mean_Chloride<=Respiratory_rate*mean_Calcium\n", + "6193 mean_Chloride<=active_condition_length+mean_Glucose\n", + "6194 mean_Chloride<=2*DALY*mean_Microalbumin_Creatinine_Ratio\n", + "6195 mean_Chloride<=Body_Mass_Index^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "6196 mean_Chloride<=Chloride+log(QALY)\n", + "6197 mean_Chloride<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/active_care_plans\n", + "6198 mean_Chloride<=sqrt(lifetime_care_plans)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "6199 mean_Chloride<=Protein__Mass_volume__in_Serum,Plasma+ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6200 mean_Chloride<=maximum(Chloride,encounters_count^2)\n", + "6201 mean_Chloride<=log(medications_lifetime_dispenses)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6202 mean_Chloride<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Glucose\n", + "6203 mean_Chloride<=maximum(Chloride,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "6204 mean_Chloride<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-age+1\n", + "6205 mean_Chloride<=Low_Density_Lipoprotein_Cholesterol+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "6206 mean_Chloride<=maximum(Systolic_Blood_Pressure,e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6207 mean_Chloride<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+Chloride\n", + "6208 mean_Chloride>=latitude\n", + "6209 mean_Chloride>=active_conditions+mean_Heart_rate\n", + "6210 mean_Chloride>=sqrt(Chloride)+mean_Heart_rate\n", + "6211 mean_Chloride>=Heart_rate+log(encounters_count)\n", + "6212 mean_Chloride>=Glucose-mean_Microalbumin_Creatinine_Ratio+1\n", + "6213 mean_Chloride>=Urea_Nitrogen*active_care_plans\n", + "6214 mean_Chloride>=Heart_rate+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6215 mean_Chloride>=ceil(active_care_plan_length)/mean_Creatinine\n", + "6216 mean_Chloride>=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*latitude\n", + "6217 mean_Chloride>=healthcare_expenses^longitude\n", + "6218 mean_Chloride>=minimum(Diastolic_Blood_Pressure,Chloride-1)\n", + "6219 mean_Chloride>=sqrt(MCH__Entitic_mass__by_Automated_count)*Urea_Nitrogen\n", + "6220 mean_Chloride>=(Systolic_Blood_Pressure-1)*encounters_lifetime_perc_covered\n", + "6221 mean_Chloride>=device_lifetime_length*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "6222 mean_Chloride>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(medications_lifetime_perc_covered)\n", + "6223 mean_Chloride>=QALY^2/lifetime_condition_length\n", + "6224 mean_Chloride>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+active_care_plan_length\n", + "6225 mean_Chloride>=2*medications_lifetime/Body_Mass_Index\n", + "6226 mean_Chloride>=MCV__Entitic_volume__by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6227 mean_Chloride>=High_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide+1\n", + "6228 mean_Chloride>=Chloride/active_care_plans\n", + "6229 mean_Chloride>=Chloride/active_conditions\n", + "6230 mean_Chloride>=Chloride-medications_lifetime\n", + "6231 mean_Chloride>=procedures_lifetime^2/mean_Glucose\n", + "6232 mean_Chloride>=minimum(Body_Weight,Chloride)\n", + "6233 mean_Chloride>=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+age\n", + "6234 mean_Chloride>=1/Globulin__Mass_volume__in_Serum_by_calculation+Diastolic_Blood_Pressure\n", + "6235 mean_Chloride>=Chloride-Potassium-1\n", + "6236 mean_Chloride>=(immunizations_lifetime+1)*MCHC__Mass_volume__by_Automated_count\n", + "6237 mean_Chloride>=minimum(Chloride,10^imaging_studies_lifetime)\n", + "6238 mean_Chloride>=Body_Mass_Index+active_condition_length+1\n", + "6239 mean_Chloride>=ceil(MCH__Entitic_mass__by_Automated_count)-longitude\n", + "6240 mean_Chloride>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/QOLS\n", + "6241 mean_Chloride>=DALY+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "6242 mean_Chloride>=Chloride-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1\n", + "6243 mean_Chloride>=Body_Weight-procedures_lifetime_cost+1\n", + "6244 mean_Chloride>=(log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^Calcium\n", + "6245 mean_Chloride>=Chloride-mean_Potassium-1\n", + "6246 mean_Chloride>=Glucose+log(imaging_studies_lifetime)\n", + "6247 mean_Chloride>=-active_condition_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "6248 mean_Chloride>=-Microalbumin_Creatinine_Ratio+mean_Glucose\n", + "6249 mean_Chloride>=minimum(Chloride,mean_Body_Mass_Index)\n", + "6250 mean_Chloride>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1\n", + "6251 mean_Chloride>=MCH__Entitic_mass__by_Automated_count+QALY\n", + "6252 mean_Chloride>=(-Creatinine)^Potassium\n", + "6253 mean_Chloride>=mean_Total_Cholesterol/active_care_plans\n", + "6254 mean_Chloride>=Protein__Mass_volume__in_Serum,Plasma*log(DALY)/log(10)\n", + "6255 mean_Chloride>=(Erythrocytes____volume__in_Blood_by_Automated_count-1)*procedures_lifetime\n", + "6256 mean_Chloride>=ceil(Creatinine)*mean_Urea_Nitrogen\n", + "6257 mean_Chloride>=sqrt(Triglycerides)+mean_Heart_rate\n", + "6258 mean_Chloride>=-High_Density_Lipoprotein_Cholesterol+mean_Sodium\n", + "6259 mean_Chloride>=sqrt(encounters_count)+age\n", + "6260 mean_Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "6261 mean_Chloride>=(Total_Cholesterol+1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "6262 mean_Chloride>=Body_Mass_Index+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "6263 mean_Chloride>=Urea_Nitrogen*log(healthcare_coverage)/log(10)\n", + "6264 mean_Chloride>=Chloride*log(lifetime_care_plans)/log(10)\n", + "6265 mean_Chloride>=1/2*active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "6266 mean_Chloride>=sqrt(Creatinine)*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "6267 mean_Chloride>=Body_Weight-Calcium-1\n", + "6268 mean_Chloride>=Sodium-latitude+1\n", + "6269 mean_Chloride>=Calcium^2+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6270 mean_Chloride>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "6271 mean_Chloride>=-active_condition_length+ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6272 mean_Chloride>=1/2*Microalbumin_Creatinine_Ratio-immunizations_lifetime_cost\n", + "6273 mean_Creatinine<=healthcare_expenses\n", + "6274 mean_Creatinine<=sqrt(Respiratory_rate)+immunizations_lifetime_cost\n", + "6275 mean_Creatinine<=maximum(Respiratory_rate,Creatinine)\n", + "6276 mean_Creatinine<=Creatinine*active_conditions\n", + "6277 mean_Creatinine<=Creatinine+medications_lifetime\n", + "6278 mean_Creatinine<=log(Glomerular_filtration_rate_1_73_sq_M_predicted)/imaging_studies_lifetime\n", + "6279 mean_Creatinine<=1/2*sqrt(mean_Total_Cholesterol)\n", + "6280 mean_Creatinine<=-Creatinine+1/2*Microalbumin_Creatinine_Ratio\n", + "6281 mean_Creatinine<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/Calcium\n", + "6282 mean_Creatinine<=(encounters_count-1)/device_lifetime_length\n", + "6283 mean_Creatinine<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,2*Creatinine)\n", + "6284 mean_Creatinine<=Creatinine+encounters_lifetime_payer_coverage\n", + "6285 mean_Creatinine<=maximum(DALY,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6286 mean_Creatinine<=Leukocytes____volume__in_Blood_by_Automated_count/medications_lifetime_perc_covered\n", + "6287 mean_Creatinine<=ceil(latitude)-mean_Body_Mass_Index\n", + "6288 mean_Creatinine<=sqrt(High_Density_Lipoprotein_Cholesterol)/immunizations_lifetime\n", + "6289 mean_Creatinine<=active_care_plan_length*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6290 mean_Creatinine<=(Body_Mass_Index-1)/active_care_plans\n", + "6291 mean_Creatinine<=2*Creatinine/encounters_lifetime_perc_covered\n", + "6292 mean_Creatinine<=Hemoglobin_A1c_Hemoglobin_total_in_Blood/imaging_studies_lifetime\n", + "6293 mean_Creatinine<=1/2*High_Density_Lipoprotein_Cholesterol/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6294 mean_Creatinine<=maximum(Triglycerides,Creatinine)\n", + "6295 mean_Creatinine<=Creatinine*Potassium\n", + "6296 mean_Creatinine<=DALY+active_care_plans\n", + "6297 mean_Creatinine<=2*Glucose/mean_Estimated_Glomerular_Filtration_Rate\n", + "6298 mean_Creatinine<=active_care_plans/medications_lifetime_perc_covered\n", + "6299 mean_Creatinine<=Creatinine*log(Hemoglobin__Mass_volume__in_Blood)/log(10)\n", + "6300 mean_Creatinine<=-Urea_Nitrogen+active_care_plan_length\n", + "6301 mean_Creatinine<=-active_conditions+encounters_count+1\n", + "6302 mean_Creatinine<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,log(Total_score__MMSE_))\n", + "6303 mean_Creatinine<=maximum(Estimated_Glomerular_Filtration_Rate,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "6304 mean_Creatinine<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/QALY\n", + "6305 mean_Creatinine<=log(Erythrocytes____volume__in_Blood_by_Automated_count)^active_care_plans\n", + "6306 mean_Creatinine<=Body_Mass_Index^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "6307 mean_Creatinine<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plan_length\n", + "6308 mean_Creatinine<=-Estimated_Glomerular_Filtration_Rate+2*medications_lifetime\n", + "6309 mean_Creatinine<=2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2\n", + "6310 mean_Creatinine<=Bilirubin_total__Mass_volume__in_Serum,Plasma*Potassium^2\n", + "6311 mean_Creatinine<=(Low_Density_Lipoprotein_Cholesterol-1)/Respiratory_rate\n", + "6312 mean_Creatinine<=(Potassium-1)/medications_lifetime_perc_covered\n", + "6313 mean_Creatinine<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/mean_Diastolic_Blood_Pressure\n", + "6314 mean_Creatinine<=mean_Potassium/imaging_studies_lifetime\n", + "6315 mean_Creatinine<=Creatinine+1/2*DALY\n", + "6316 mean_Creatinine<=10^medications_active/encounters_lifetime_perc_covered\n", + "6317 mean_Creatinine<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6318 mean_Creatinine<=(2*Chloride)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6319 mean_Creatinine<=e^Creatinine+procedures_lifetime\n", + "6320 mean_Creatinine<=-active_condition_length+age+1\n", + "6321 mean_Creatinine<=e^medications_active+immunizations_lifetime_cost\n", + "6322 mean_Creatinine<=2*Glucose/Estimated_Glomerular_Filtration_Rate\n", + "6323 mean_Creatinine<=log(medications_lifetime_perc_covered)*longitude/log(10)\n", + "6324 mean_Creatinine>=longitude\n", + "6325 mean_Creatinine>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6326 mean_Creatinine>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Estimated_Glomerular_Filtration_Rate\n", + "6327 mean_Creatinine>=healthcare_expenses^longitude\n", + "6328 mean_Creatinine>=Creatinine/active_care_plans\n", + "6329 mean_Creatinine>=minimum(immunizations_lifetime,Creatinine)\n", + "6330 mean_Creatinine>=e^num_allergies/QALY\n", + "6331 mean_Creatinine>=Creatinine/active_conditions\n", + "6332 mean_Creatinine>=imaging_studies_lifetime/active_care_plans\n", + "6333 mean_Creatinine>=floor(Creatinine)-1\n", + "6334 mean_Creatinine>=minimum(Creatinine,log(procedures_lifetime))\n", + "6335 mean_Creatinine>=floor(QOLS)\n", + "6336 mean_Creatinine>=Albumin__Mass_volume__in_Serum,Plasma-DALY\n", + "6337 mean_Creatinine>=Creatinine-procedures_lifetime\n", + "6338 mean_Creatinine>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted/active_care_plan_length\n", + "6339 mean_Creatinine>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Carbon_Dioxide\n", + "6340 mean_Creatinine>=(latitude+1)/Estimated_Glomerular_Filtration_Rate\n", + "6341 mean_Creatinine>=minimum(Creatinine,1/2*medications_active)\n", + "6342 mean_Creatinine>=Potassium/Microalbumin_Creatinine_Ratio\n", + "6343 mean_Creatinine>=Respiratory_rate-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "6344 mean_Creatinine>=log(Protein__Mass_volume__in_Serum,Plasma)/(log(10)*medications_active)\n", + "6345 mean_Creatinine>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)/mean_High_Density_Lipoprotein_Cholesterol\n", + "6346 mean_Creatinine>=sqrt(Estimated_Glomerular_Filtration_Rate)-active_conditions\n", + "6347 mean_Creatinine>=(Microalbumin_Creatinine_Ratio+1)/mean_Glucose\n", + "6348 mean_Creatinine>=Potassium*log(Creatinine)/log(10)\n", + "6349 mean_Creatinine>=Bilirubin_total__Mass_volume__in_Serum,Plasma*log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)\n", + "6350 mean_Creatinine>=(10^healthcare_expenses)^longitude\n", + "6351 mean_Creatinine>=minimum(Creatinine,log(latitude)/log(10))\n", + "6352 mean_Creatinine>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,-Estimated_Glomerular_Filtration_Rate)\n", + "6353 mean_Creatinine>=active_care_plan_length+floor(longitude)\n", + "6354 mean_Creatinine>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6355 mean_Creatinine>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(High_Density_Lipoprotein_Cholesterol)\n", + "6356 mean_Creatinine>=Bilirubin_total__Mass_volume__in_Serum,Plasma-procedures_lifetime+1\n", + "6357 mean_Creatinine>=-Carbon_Dioxide+1/2*device_lifetime_length\n", + "6358 mean_Creatinine>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(Creatinine)\n", + "6359 mean_Creatinine>=procedures_lifetime/latitude\n", + "6360 mean_Creatinine>=2*Creatinine/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6361 mean_Creatinine>=minimum(encounters_lifetime_perc_covered,Creatinine)\n", + "6362 mean_Creatinine>=minimum(imaging_studies_lifetime,Creatinine)\n", + "6363 mean_Creatinine>=QOLS-immunizations_lifetime\n", + "6364 mean_Creatinine>=sqrt(medications_lifetime_dispenses)/mean_Estimated_Glomerular_Filtration_Rate\n", + "6365 mean_Creatinine>=minimum(Creatinine,10^imaging_studies_lifetime)\n", + "6366 mean_Creatinine>=Albumin__Mass_volume__in_Serum,Plasma-active_care_plans-1\n", + "6367 mean_Creatinine>=1/2*Microalbumin_Creatinine_Ratio/High_Density_Lipoprotein_Cholesterol\n", + "6368 mean_Creatinine>=1/2*medications_lifetime/mean_Total_Cholesterol\n", + "6369 mean_Creatinine>=minimum(Creatinine,e^medications_lifetime_perc_covered)\n", + "6370 mean_Creatinine>=e^Creatinine/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6371 mean_Creatinine>=minimum(mean_Globulin__Mass_volume__in_Serum_by_calculation,abs(Creatinine))\n", + "6372 mean_Creatinine>=log(Creatinine)/(QOLS*log(10))\n", + "6373 mean_DALY<=DALY\n", + "6374 mean_DALY>=imaging_studies_lifetime\n", + "6375 mean_DALY>=DALY\n", + "6376 mean_Diastolic_Blood_Pressure<=healthcare_expenses\n", + "6377 mean_Diastolic_Blood_Pressure<=maximum(encounters_count,Diastolic_Blood_Pressure+1)\n", + "6378 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,Chloride)\n", + "6379 mean_Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,Diastolic_Blood_Pressure)\n", + "6380 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,2*encounters_count)\n", + "6381 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,sqrt(encounters_lifetime_total_cost))\n", + "6382 mean_Diastolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,Diastolic_Blood_Pressure)\n", + "6383 mean_Diastolic_Blood_Pressure<=minimum(Triglycerides,floor(Chloride))\n", + "6384 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/QOLS\n", + "6385 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+floor(DALY)\n", + "6386 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+1/2*Respiratory_rate\n", + "6387 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,Low_Density_Lipoprotein_Cholesterol)\n", + "6388 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "6389 mean_Diastolic_Blood_Pressure<=Glucose*e^encounters_lifetime_perc_covered\n", + "6390 mean_Diastolic_Blood_Pressure<=10^medications_active*Diastolic_Blood_Pressure\n", + "6391 mean_Diastolic_Blood_Pressure<=e^Calcium/active_care_plan_length\n", + "6392 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure^active_care_plans\n", + "6393 mean_Diastolic_Blood_Pressure<=Systolic_Blood_Pressure^2/Low_Density_Lipoprotein_Cholesterol\n", + "6394 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,mean_Glucose)\n", + "6395 mean_Diastolic_Blood_Pressure<=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Sodium\n", + "6396 mean_Diastolic_Blood_Pressure<=2*active_care_plan_length+immunizations_lifetime_cost\n", + "6397 mean_Diastolic_Blood_Pressure<=Chloride+immunizations_lifetime_cost-1\n", + "6398 mean_Diastolic_Blood_Pressure<=sqrt(MCH__Entitic_mass__by_Automated_count)+Diastolic_Blood_Pressure\n", + "6399 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+Erythrocytes____volume__in_Blood_by_Automated_count+1\n", + "6400 mean_Diastolic_Blood_Pressure<=Potassium^2+Low_Density_Lipoprotein_Cholesterol\n", + "6401 mean_Diastolic_Blood_Pressure<=Carbon_Dioxide+2*QALY\n", + "6402 mean_Diastolic_Blood_Pressure<=ceil(Estimated_Glomerular_Filtration_Rate)^2\n", + "6403 mean_Diastolic_Blood_Pressure<=2*Diastolic_Blood_Pressure-active_condition_length\n", + "6404 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure^active_conditions\n", + "6405 mean_Diastolic_Blood_Pressure<=-DALY+Triglycerides-1\n", + "6406 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,MCV__Entitic_volume__by_Automated_count)\n", + "6407 mean_Diastolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate+ceil(Low_Density_Lipoprotein_Cholesterol)\n", + "6408 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+e^Creatinine\n", + "6409 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,mean_Chloride)\n", + "6410 mean_Diastolic_Blood_Pressure<=-device_lifetime_length+mean_Sodium\n", + "6411 mean_Diastolic_Blood_Pressure<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/medications_active\n", + "6412 mean_Diastolic_Blood_Pressure<=Creatinine+2*age\n", + "6413 mean_Diastolic_Blood_Pressure<=1/num_allergies+mean_Glucose\n", + "6414 mean_Diastolic_Blood_Pressure<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*lifetime_care_plan_length\n", + "6415 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "6416 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^active_conditions)\n", + "6417 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,encounters_count^2)\n", + "6418 mean_Diastolic_Blood_Pressure<=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_High_Density_Lipoprotein_Cholesterol\n", + "6419 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,floor(MCV__Entitic_volume__by_Automated_count))\n", + "6420 mean_Diastolic_Blood_Pressure>=latitude\n", + "6421 mean_Diastolic_Blood_Pressure>=ceil(Low_Density_Lipoprotein_Cholesterol)-mean_Heart_rate\n", + "6422 mean_Diastolic_Blood_Pressure>=ceil(active_condition_length)\n", + "6423 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_conditions+1\n", + "6424 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,-Triglycerides)\n", + "6425 mean_Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "6426 mean_Diastolic_Blood_Pressure>=MCH__Entitic_mass__by_Automated_count*log(encounters_count)/log(10)\n", + "6427 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure/active_conditions\n", + "6428 mean_Diastolic_Blood_Pressure>=Respiratory_rate*log(Low_Density_Lipoprotein_Cholesterol)\n", + "6429 mean_Diastolic_Blood_Pressure>=(active_care_plans+1)^2\n", + "6430 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^QOLS\n", + "6431 mean_Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "6432 mean_Diastolic_Blood_Pressure>=(Hemoglobin__Mass_volume__in_Blood-1)*lifetime_care_plans\n", + "6433 mean_Diastolic_Blood_Pressure>=minimum(QALY,Diastolic_Blood_Pressure)\n", + "6434 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure/active_care_plans\n", + "6435 mean_Diastolic_Blood_Pressure>=sqrt(procedures_lifetime_cost)/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6436 mean_Diastolic_Blood_Pressure>=-Calcium+Diastolic_Blood_Pressure\n", + "6437 mean_Diastolic_Blood_Pressure>=minimum(Protein__Mass_volume__in_Serum,Plasma,floor(Diastolic_Blood_Pressure))\n", + "6438 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6439 mean_Diastolic_Blood_Pressure>=Body_Mass_Index+DALY\n", + "6440 mean_Diastolic_Blood_Pressure>=e^immunizations_lifetime*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6441 mean_Diastolic_Blood_Pressure>=-Albumin__Mass_volume__in_Serum,Plasma+Diastolic_Blood_Pressure\n", + "6442 mean_Diastolic_Blood_Pressure>=1/2*QALY+device_lifetime_length\n", + "6443 mean_Diastolic_Blood_Pressure>=(Calcium-1)/QOLS\n", + "6444 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "6445 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,lifetime_care_plans^2)\n", + "6446 mean_Diastolic_Blood_Pressure>=minimum(age,procedures_lifetime)\n", + "6447 mean_Diastolic_Blood_Pressure>=(medications_lifetime+1)/mean_Respiratory_rate\n", + "6448 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "6449 mean_Diastolic_Blood_Pressure>=1/2*Microalbumin_Creatinine_Ratio-healthcare_coverage\n", + "6450 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-mean_Calcium\n", + "6451 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-healthcare_coverage\n", + "6452 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,ceil(QALY))\n", + "6453 mean_Diastolic_Blood_Pressure>=Systolic_Blood_Pressure-mean_Heart_rate\n", + "6454 mean_Diastolic_Blood_Pressure>=1/2*Diastolic_Blood_Pressure+mean_Body_Mass_Index\n", + "6455 mean_Diastolic_Blood_Pressure>=-active_care_plan_length+ceil(Body_Weight)\n", + "6456 mean_Diastolic_Blood_Pressure>=(Body_Height+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6457 mean_Diastolic_Blood_Pressure>=maximum(Protein__Mass_volume__in_Serum,Plasma,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6458 mean_Diastolic_Blood_Pressure>=minimum(QALY,Creatinine)\n", + "6459 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Creatinine)\n", + "6460 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6461 mean_Diastolic_Blood_Pressure>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,floor(Glomerular_filtration_rate_1_73_sq_M_predicted))\n", + "6462 mean_Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "6463 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-Globulin__Mass_volume__in_Serum_by_calculation-1\n", + "6464 mean_Diastolic_Blood_Pressure>=sqrt(Carbon_Dioxide)*Hemoglobin__Mass_volume__in_Blood\n", + "6465 mean_Diastolic_Blood_Pressure>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+floor(device_lifetime_length)\n", + "6466 mean_Diastolic_Blood_Pressure>=-Body_Weight+floor(Sodium)\n", + "6467 mean_Diastolic_Blood_Pressure>=sqrt(encounters_lifetime_total_cost)/active_care_plans\n", + "6468 mean_Diastolic_Blood_Pressure>=MCV__Entitic_volume__by_Automated_count-Respiratory_rate-1\n", + "6469 mean_Diastolic_Blood_Pressure>=-mean_Body_Weight+mean_Systolic_Blood_Pressure\n", + "6470 mean_Diastolic_Blood_Pressure>=sqrt(Respiratory_rate)*Urea_Nitrogen\n", + "6471 mean_Diastolic_Blood_Pressure>=-age+e^num_allergies\n", + "6472 mean_Diastolic_Blood_Pressure>=log(device_lifetime_length)/log(10)-longitude\n", + "6473 mean_Diastolic_Blood_Pressure>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*sqrt(encounters_count)\n", + "6474 mean_Diastolic_Blood_Pressure>=2*Body_Weight/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6475 mean_Diastolic_Blood_Pressure>=Carbon_Dioxide*log(medications_lifetime)/log(10)\n", + "6476 mean_Diastolic_Blood_Pressure>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(Microalbumin_Creatinine_Ratio)\n", + "6477 mean_Diastolic_Blood_Pressure>=-Carbon_Dioxide+Heart_rate+1\n", + "6478 mean_Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "6479 mean_Estimated_Glomerular_Filtration_Rate<=maximum(Estimated_Glomerular_Filtration_Rate,active_care_plan_length-1)\n", + "6480 mean_Estimated_Glomerular_Filtration_Rate<=Diastolic_Blood_Pressure^2/mean_Microalbumin_Creatinine_Ratio\n", + "6481 mean_Estimated_Glomerular_Filtration_Rate<=2*Estimated_Glomerular_Filtration_Rate-mean_Calcium\n", + "6482 mean_Estimated_Glomerular_Filtration_Rate<=immunizations_lifetime+mean_Heart_rate\n", + "6483 mean_Estimated_Glomerular_Filtration_Rate<=Low_Density_Lipoprotein_Cholesterol-mean_Potassium\n", + "6484 mean_Estimated_Glomerular_Filtration_Rate<=maximum(age,Estimated_Glomerular_Filtration_Rate)\n", + "6485 mean_Estimated_Glomerular_Filtration_Rate<=(mean_Triglycerides-1)/num_allergies\n", + "6486 mean_Estimated_Glomerular_Filtration_Rate<=mean_High_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "6487 mean_Estimated_Glomerular_Filtration_Rate<=(Triglycerides-1)/Creatinine\n", + "6488 mean_Estimated_Glomerular_Filtration_Rate<=1/2*encounters_lifetime_total_cost/Microalbumin_Creatinine_Ratio\n", + "6489 mean_Estimated_Glomerular_Filtration_Rate<=ceil(DALY)+immunizations_lifetime_cost\n", + "6490 mean_Estimated_Glomerular_Filtration_Rate<=(log(Respiratory_rate)/log(10))^latitude\n", + "6491 mean_Estimated_Glomerular_Filtration_Rate<=(1/QOLS)^Respiratory_rate\n", + "6492 mean_Estimated_Glomerular_Filtration_Rate<=Sodium/Creatinine\n", + "6493 mean_Estimated_Glomerular_Filtration_Rate<=(Estimated_Glomerular_Filtration_Rate-1)/imaging_studies_lifetime\n", + "6494 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+mean_Potassium+1\n", + "6495 mean_Estimated_Glomerular_Filtration_Rate<=10^Potassium/Triglycerides\n", + "6496 mean_Estimated_Glomerular_Filtration_Rate<=sqrt(Microalbumin_Creatinine_Ratio)+Estimated_Glomerular_Filtration_Rate\n", + "6497 mean_Estimated_Glomerular_Filtration_Rate<=(mean_Triglycerides-1)/Creatinine\n", + "6498 mean_Estimated_Glomerular_Filtration_Rate<=sqrt(mean_Carbon_Dioxide)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6499 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+1/2*active_conditions\n", + "6500 mean_Estimated_Glomerular_Filtration_Rate<=floor(mean_Carbon_Dioxide)+immunizations_lifetime_cost\n", + "6501 mean_Estimated_Glomerular_Filtration_Rate<=maximum(mean_Carbon_Dioxide,1/device_lifetime_length)\n", + "6502 mean_Estimated_Glomerular_Filtration_Rate<=e^Calcium/Microalbumin_Creatinine_Ratio\n", + "6503 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+log(medications_lifetime)\n", + "6504 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+Potassium+1\n", + "6505 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6506 mean_Estimated_Glomerular_Filtration_Rate>=longitude\n", + "6507 mean_Estimated_Glomerular_Filtration_Rate>=log(mean_Low_Density_Lipoprotein_Cholesterol)*num_allergies\n", + "6508 mean_Estimated_Glomerular_Filtration_Rate>=(medications_active-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6509 mean_Estimated_Glomerular_Filtration_Rate>=2*High_Density_Lipoprotein_Cholesterol-Sodium\n", + "6510 mean_Estimated_Glomerular_Filtration_Rate>=10^immunizations_lifetime/Sodium\n", + "6511 mean_Estimated_Glomerular_Filtration_Rate>=sqrt(lifetime_care_plan_length)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6512 mean_Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "6513 mean_Estimated_Glomerular_Filtration_Rate>=ceil(Body_Weight)-mean_Glucose\n", + "6514 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate*sqrt(QOLS)\n", + "6515 mean_Estimated_Glomerular_Filtration_Rate>=(2*Estimated_Glomerular_Filtration_Rate)^medications_lifetime_perc_covered\n", + "6516 mean_Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "6517 mean_Estimated_Glomerular_Filtration_Rate>=minimum(Carbon_Dioxide,1/medications_active)\n", + "6518 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6519 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-mean_Calcium-1\n", + "6520 mean_Estimated_Glomerular_Filtration_Rate>=active_condition_length-mean_Microalbumin_Creatinine_Ratio+1\n", + "6521 mean_Estimated_Glomerular_Filtration_Rate>=(mean_Carbon_Dioxide-1)^imaging_studies_lifetime\n", + "6522 mean_Estimated_Glomerular_Filtration_Rate>=2*Carbon_Dioxide/mean_Creatinine\n", + "6523 mean_Estimated_Glomerular_Filtration_Rate>=-High_Density_Lipoprotein_Cholesterol+2*mean_Body_Mass_Index\n", + "6524 mean_Estimated_Glomerular_Filtration_Rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*sqrt(device_lifetime_length)\n", + "6525 mean_Estimated_Glomerular_Filtration_Rate>=ceil(mean_Glucose)-mean_Sodium\n", + "6526 mean_Estimated_Glomerular_Filtration_Rate>=-Microalbumin_Creatinine_Ratio+procedures_lifetime+1\n", + "6527 mean_Estimated_Glomerular_Filtration_Rate>=QALY-lifetime_care_plan_length\n", + "6528 mean_Estimated_Glomerular_Filtration_Rate>=-lifetime_care_plan_length+1/2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "6529 mean_Estimated_Glomerular_Filtration_Rate>=Body_Mass_Index*medications_lifetime_perc_covered^2\n", + "6530 mean_Estimated_Glomerular_Filtration_Rate>=Creatinine*log(mean_Respiratory_rate)\n", + "6531 mean_Estimated_Glomerular_Filtration_Rate>=(log(mean_Urea_Nitrogen)/log(10))^active_conditions\n", + "6532 mean_Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "6533 mean_Estimated_Glomerular_Filtration_Rate>=-Microalbumin_Creatinine_Ratio+1/2*mean_Chloride\n", + "6534 mean_Estimated_Glomerular_Filtration_Rate>=log(active_care_plan_length)/QOLS\n", + "6535 mean_Estimated_Glomerular_Filtration_Rate>=log(immunizations_lifetime)*mean_Diastolic_Blood_Pressure/log(10)\n", + "6536 mean_Estimated_Glomerular_Filtration_Rate>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-procedures_lifetime_cost\n", + "6537 mean_Estimated_Glomerular_Filtration_Rate>=(Body_Mass_Index-1)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6538 mean_Estimated_Glomerular_Filtration_Rate>=(Body_Weight-1)/DALY\n", + "6539 mean_Estimated_Glomerular_Filtration_Rate>=Creatinine^2-immunizations_lifetime_cost\n", + "6540 mean_Estimated_Glomerular_Filtration_Rate>=-mean_Microalbumin_Creatinine_Ratio+1/2*mean_Sodium\n", + "6541 mean_Glucose<=healthcare_expenses\n", + "6542 mean_Glucose<=maximum(mean_Systolic_Blood_Pressure,2*Microalbumin_Creatinine_Ratio)\n", + "6543 mean_Glucose<=2*Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "6544 mean_Glucose<=Estimated_Glomerular_Filtration_Rate^2/num_allergies\n", + "6545 mean_Glucose<=Glucose^active_care_plans\n", + "6546 mean_Glucose<=(Glucose-1)/medications_lifetime_perc_covered\n", + "6547 mean_Glucose<=(Low_Density_Lipoprotein_Cholesterol-1)/medications_lifetime_perc_covered\n", + "6548 mean_Glucose<=Body_Height+1\n", + "6549 mean_Glucose<=maximum(Triglycerides,Glucose)\n", + "6550 mean_Glucose<=10^Globulin__Mass_volume__in_Serum_by_calculation-mean_Respiratory_rate\n", + "6551 mean_Glucose<=maximum(Glucose,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "6552 mean_Glucose<=e^QOLS*mean_Low_Density_Lipoprotein_Cholesterol\n", + "6553 mean_Glucose<=maximum(lifetime_condition_length,Glucose)\n", + "6554 mean_Glucose<=10^procedures_lifetime+Glucose\n", + "6555 mean_Glucose<=10^healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "6556 mean_Glucose<=2*Heart_rate-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6557 mean_Glucose<=Glucose+encounters_lifetime_payer_coverage\n", + "6558 mean_Glucose<=lifetime_condition_length/medications_lifetime_perc_covered\n", + "6559 mean_Glucose<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime\n", + "6560 mean_Glucose<=active_care_plan_length*log(Protein__Mass_volume__in_Serum,Plasma)\n", + "6561 mean_Glucose<=Heart_rate*e^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6562 mean_Glucose<=maximum(Glucose,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6563 mean_Glucose<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "6564 mean_Glucose<=Sodium^2/mean_Systolic_Blood_Pressure\n", + "6565 mean_Glucose<=10^Leukocytes____volume__in_Blood_by_Automated_count/Body_Mass_Index\n", + "6566 mean_Glucose<=Glucose^active_conditions\n", + "6567 mean_Glucose<=Glucose+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6568 mean_Glucose<=Glucose+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6569 mean_Glucose<=-DALY+mean_Triglycerides\n", + "6570 mean_Glucose<=Low_Density_Lipoprotein_Cholesterol+active_care_plan_length+1\n", + "6571 mean_Glucose<=(QOLS+1)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6572 mean_Glucose<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*active_condition_length\n", + "6573 mean_Glucose<=Low_Density_Lipoprotein_Cholesterol*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "6574 mean_Glucose<=Microalbumin_Creatinine_Ratio+mean_Chloride\n", + "6575 mean_Glucose<=Glucose+1/2*encounters_count\n", + "6576 mean_Glucose<=Glucose+e^lifetime_care_plans\n", + "6577 mean_Glucose<=floor(DALY)*mean_Estimated_Glomerular_Filtration_Rate\n", + "6578 mean_Glucose<=DALY^2+Glucose\n", + "6579 mean_Glucose<=(Estimated_Glomerular_Filtration_Rate+1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "6580 mean_Glucose<=Triglycerides^2/mean_Systolic_Blood_Pressure\n", + "6581 mean_Glucose<=-device_lifetime_length+mean_Triglycerides\n", + "6582 mean_Glucose<=2*Glucose-active_care_plan_length\n", + "6583 mean_Glucose<=maximum(Glucose,encounters_count^2)\n", + "6584 mean_Glucose<=sqrt(active_care_plan_length)*mean_Carbon_Dioxide\n", + "6585 mean_Glucose<=ceil(Protein__Mass_volume__in_Serum,Plasma)+encounters_count\n", + "6586 mean_Glucose<=1/device_lifetime_length+mean_Systolic_Blood_Pressure\n", + "6587 mean_Glucose<=Triglycerides*log(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6588 mean_Glucose<=10^medications_active+Low_Density_Lipoprotein_Cholesterol\n", + "6589 mean_Glucose<=ceil(Glucose)/QOLS\n", + "6590 mean_Glucose<=1/2*Total_Cholesterol/QOLS\n", + "6591 mean_Glucose<=10^Globulin__Mass_volume__in_Serum_by_calculation-Potassium\n", + "6592 mean_Glucose<=Glucose+1/2*MCHC__Mass_volume__by_Automated_count\n", + "6593 mean_Glucose>=latitude\n", + "6594 mean_Glucose>=active_condition_length^2/Body_Weight\n", + "6595 mean_Glucose>=minimum(Glucose,lifetime_care_plans^2)\n", + "6596 mean_Glucose>=Glucose/active_conditions\n", + "6597 mean_Glucose>=10^encounters_lifetime_perc_covered+Estimated_Glomerular_Filtration_Rate\n", + "6598 mean_Glucose>=healthcare_expenses^longitude\n", + "6599 mean_Glucose>=log(immunizations_lifetime)*mean_Diastolic_Blood_Pressure\n", + "6600 mean_Glucose>=minimum(Glucose,10^imaging_studies_lifetime)\n", + "6601 mean_Glucose>=-Systolic_Blood_Pressure+Triglycerides+1\n", + "6602 mean_Glucose>=active_conditions*log(lifetime_care_plan_length)\n", + "6603 mean_Glucose>=minimum(Glucose,mean_Body_Mass_Index)\n", + "6604 mean_Glucose>=floor(Glucose)-medications_lifetime\n", + "6605 mean_Glucose>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(Glucose))\n", + "6606 mean_Glucose>=-Sodium+Total_Cholesterol+1\n", + "6607 mean_Glucose>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Diastolic_Blood_Pressure+1\n", + "6608 mean_Glucose>=minimum(Microalbumin_Creatinine_Ratio,age-1)\n", + "6609 mean_Glucose>=-active_condition_length+mean_Chloride\n", + "6610 mean_Glucose>=Glucose/active_care_plans\n", + "6611 mean_Glucose>=minimum(High_Density_Lipoprotein_Cholesterol,Glucose)\n", + "6612 mean_Glucose>=minimum(encounters_count,10^immunizations_lifetime)\n", + "6613 mean_Glucose>=minimum(QALY,Glucose)\n", + "6614 mean_Glucose>=DALY+ceil(latitude)\n", + "6615 mean_Glucose>=Microalbumin_Creatinine_Ratio-lifetime_condition_length+1\n", + "6616 mean_Glucose>=1/2*DALY*mean_Creatinine\n", + "6617 mean_Glucose>=active_care_plan_length^2/High_Density_Lipoprotein_Cholesterol\n", + "6618 mean_Glucose>=-Respiratory_rate+2*device_lifetime_length\n", + "6619 mean_Glucose>=-Albumin__Mass_volume__in_Serum,Plasma+Body_Weight+1\n", + "6620 mean_Glucose>=Urea_Nitrogen*log(Protein__Mass_volume__in_Serum,Plasma)\n", + "6621 mean_Glucose>=ceil(Total_Cholesterol)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6622 mean_Glucose>=Triglycerides-mean_Systolic_Blood_Pressure+1\n", + "6623 mean_Glucose>=ceil(Body_Weight)-mean_Estimated_Glomerular_Filtration_Rate\n", + "6624 mean_Glucose>=2*encounters_count/Leukocytes____volume__in_Blood_by_Automated_count\n", + "6625 mean_Glucose>=-healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "6626 mean_Glucose>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Diastolic_Blood_Pressure\n", + "6627 mean_Glucose>=(log(Body_Weight)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6628 mean_Glucose>=1/2*medications_lifetime_length/mean_Heart_rate\n", + "6629 mean_Glucose>=minimum(active_condition_length,Glucose)\n", + "6630 mean_Glucose>=minimum(Microalbumin_Creatinine_Ratio,mean_Diastolic_Blood_Pressure)\n", + "6631 mean_Glucose>=medications_active^2+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6632 mean_Glucose>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+2*Urea_Nitrogen\n", + "6633 mean_Glucose>=procedures_lifetime^2/mean_Chloride\n", + "6634 mean_Glucose>=log(Calcium)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6635 mean_Glucose>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/Creatinine\n", + "6636 mean_Glucose>=Glucose*sqrt(medications_lifetime_perc_covered)\n", + "6637 mean_Glucose>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,procedures_lifetime^2)\n", + "6638 mean_Glucose>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+medications_active\n", + "6639 mean_Glucose>=-MCV__Entitic_volume__by_Automated_count+Systolic_Blood_Pressure+1\n", + "6640 mean_Glucose>=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6641 mean_Glucose>=Platelets____volume__in_Blood_by_Automated_count-mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "6642 mean_Glucose>=device_lifetime_length+floor(latitude)\n", + "6643 mean_Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "6644 mean_Glucose>=1/2*Body_Height-encounters_lifetime_payer_coverage\n", + "6645 mean_Glucose>=active_condition_length^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "6646 mean_Glucose>=1/2*Glucose/Creatinine\n", + "6647 mean_Glucose>=minimum(Low_Density_Lipoprotein_Cholesterol,1/medications_active)\n", + "6648 mean_Glucose>=High_Density_Lipoprotein_Cholesterol+log(device_lifetime_length)\n", + "6649 mean_Glucose>=1/2*encounters_lifetime_payer_coverage/mean_Systolic_Blood_Pressure\n", + "6650 mean_Glucose>=ceil(Creatinine)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6651 mean_Glucose>=minimum(Glucose,QALY+1)\n", + "6652 mean_Glucose>=2*DALY+Urea_Nitrogen\n", + "6653 mean_Heart_rate<=healthcare_expenses\n", + "6654 mean_Heart_rate<=Heart_rate+1/2*active_care_plan_length\n", + "6655 mean_Heart_rate<=Heart_rate+e^active_care_plans\n", + "6656 mean_Heart_rate<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*QALY\n", + "6657 mean_Heart_rate<=2*Calcium+Heart_rate\n", + "6658 mean_Heart_rate<=(2*Potassium)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "6659 mean_Heart_rate<=Heart_rate^active_care_plans\n", + "6660 mean_Heart_rate<=maximum(Heart_rate,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "6661 mean_Heart_rate<=-Hemoglobin__Mass_volume__in_Blood+ceil(Chloride)\n", + "6662 mean_Heart_rate<=Heart_rate*ceil(Creatinine)\n", + "6663 mean_Heart_rate<=maximum(medications_lifetime,Heart_rate)\n", + "6664 mean_Heart_rate<=(Heart_rate-1)/medications_lifetime_perc_covered\n", + "6665 mean_Heart_rate<=MCHC__Mass_volume__by_Automated_count^2/Respiratory_rate\n", + "6666 mean_Heart_rate<=Heart_rate+procedures_lifetime_cost\n", + "6667 mean_Heart_rate<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Diastolic_Blood_Pressure)\n", + "6668 mean_Heart_rate<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*active_care_plan_length\n", + "6669 mean_Heart_rate<=immunizations_lifetime_cost+lifetime_care_plan_length\n", + "6670 mean_Heart_rate<=Microalbumin_Creatinine_Ratio+ceil(encounters_lifetime_payer_coverage)\n", + "6671 mean_Heart_rate<=Albumin__Mass_volume__in_Serum,Plasma^2+Low_Density_Lipoprotein_Cholesterol\n", + "6672 mean_Heart_rate<=Heart_rate^active_conditions\n", + "6673 mean_Heart_rate<=1/device_lifetime_length+mean_Glucose\n", + "6674 mean_Heart_rate<=maximum(lifetime_condition_length,Heart_rate)\n", + "6675 mean_Heart_rate<=maximum(Heart_rate,mean_Glucose)\n", + "6676 mean_Heart_rate<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(lifetime_care_plan_length)\n", + "6677 mean_Heart_rate<=longitude^2/device_lifetime_length\n", + "6678 mean_Heart_rate<=maximum(Heart_rate,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6679 mean_Heart_rate<=Microalbumin_Creatinine_Ratio*ceil(DALY)\n", + "6680 mean_Heart_rate<=1/2*Heart_rate*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6681 mean_Heart_rate<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+mean_Glucose\n", + "6682 mean_Heart_rate<=(QOLS+1)*mean_Body_Weight\n", + "6683 mean_Heart_rate<=Estimated_Glomerular_Filtration_Rate^2+1\n", + "6684 mean_Heart_rate<=-active_conditions+floor(Chloride)\n", + "6685 mean_Heart_rate<=-DALY+mean_Triglycerides\n", + "6686 mean_Heart_rate<=QALY+e^Potassium\n", + "6687 mean_Heart_rate<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glucose+1\n", + "6688 mean_Heart_rate<=(Potassium-1)*active_condition_length\n", + "6689 mean_Heart_rate<=Protein__Mass_volume__in_Serum,Plasma*e^encounters_lifetime_perc_covered\n", + "6690 mean_Heart_rate<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+Heart_rate\n", + "6691 mean_Heart_rate<=DALY^2+Heart_rate\n", + "6692 mean_Heart_rate<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/medications_active\n", + "6693 mean_Heart_rate<=2*High_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "6694 mean_Heart_rate<=1/2*Estimated_Glomerular_Filtration_Rate+mean_Diastolic_Blood_Pressure\n", + "6695 mean_Heart_rate>=latitude\n", + "6696 mean_Heart_rate>=Microalbumin_Creatinine_Ratio*log(immunizations_lifetime)/log(10)\n", + "6697 mean_Heart_rate>=Heart_rate^QOLS\n", + "6698 mean_Heart_rate>=minimum(Heart_rate,Creatinine)\n", + "6699 mean_Heart_rate>=minimum(active_condition_length,Heart_rate)\n", + "6700 mean_Heart_rate>=(Hemoglobin__Mass_volume__in_Blood+1)/encounters_lifetime_perc_covered\n", + "6701 mean_Heart_rate>=Protein__Mass_volume__in_Serum,Plasma^2/Low_Density_Lipoprotein_Cholesterol\n", + "6702 mean_Heart_rate>=-healthcare_expenses\n", + "6703 mean_Heart_rate>=Protein__Mass_volume__in_Serum,Plasma-medications_active\n", + "6704 mean_Heart_rate>=Heart_rate^2/Triglycerides\n", + "6705 mean_Heart_rate>=(Urea_Nitrogen-1)*Albumin__Mass_volume__in_Serum,Plasma\n", + "6706 mean_Heart_rate>=log(Chloride)*mean_Body_Mass_Index/log(10)\n", + "6707 mean_Heart_rate>=minimum(QALY,Heart_rate)\n", + "6708 mean_Heart_rate>=healthcare_expenses^longitude\n", + "6709 mean_Heart_rate>=Heart_rate/active_care_plans\n", + "6710 mean_Heart_rate>=(Body_Height+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6711 mean_Heart_rate>=Heart_rate-medications_lifetime-1\n", + "6712 mean_Heart_rate>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*log(lifetime_care_plans)\n", + "6713 mean_Heart_rate>=minimum(Heart_rate,10^imaging_studies_lifetime)\n", + "6714 mean_Heart_rate>=minimum(Heart_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6715 mean_Heart_rate>=2*Heart_rate/Globulin__Mass_volume__in_Serum_by_calculation\n", + "6716 mean_Heart_rate>=Heart_rate/active_conditions\n", + "6717 mean_Heart_rate>=(QOLS+1)*device_lifetime_length\n", + "6718 mean_Heart_rate>=Heart_rate-Leukocytes____volume__in_Blood_by_Automated_count\n", + "6719 mean_Heart_rate>=-Diastolic_Blood_Pressure+Systolic_Blood_Pressure\n", + "6720 mean_Heart_rate>=Heart_rate-encounters_lifetime_payer_coverage\n", + "6721 mean_Heart_rate>=DALY*log(latitude)/log(10)\n", + "6722 mean_Heart_rate>=Heart_rate-mean_Carbon_Dioxide+1\n", + "6723 mean_Heart_rate>=2*Potassium/QOLS\n", + "6724 mean_Heart_rate>=Albumin__Mass_volume__in_Serum,Plasma+floor(active_condition_length)\n", + "6725 mean_Heart_rate>=(Heart_rate-1)*QOLS\n", + "6726 mean_Heart_rate>=Heart_rate-immunizations_lifetime_cost\n", + "6727 mean_Heart_rate>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*Systolic_Blood_Pressure)\n", + "6728 mean_Heart_rate>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Diastolic_Blood_Pressure\n", + "6729 mean_Heart_rate>=minimum(Heart_rate,mean_High_Density_Lipoprotein_Cholesterol)\n", + "6730 mean_Heart_rate>=sqrt(Microalbumin_Creatinine_Ratio)/QOLS\n", + "6731 mean_Heart_rate>=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+lifetime_conditions\n", + "6732 mean_Heart_rate>=-age+floor(Chloride)\n", + "6733 mean_Heart_rate>=(Albumin__Mass_volume__in_Serum,Plasma-1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "6734 mean_Heart_rate>=DALY+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "6735 mean_Heart_rate>=sqrt(medications_lifetime_length)-mean_High_Density_Lipoprotein_Cholesterol\n", + "6736 mean_Heart_rate>=Estimated_Glomerular_Filtration_Rate-Microalbumin_Creatinine_Ratio\n", + "6737 mean_Heart_rate>=log(device_lifetime_length)-longitude\n", + "6738 mean_Heart_rate>=-Respiratory_rate+procedures_lifetime\n", + "6739 mean_Heart_rate>=log(Creatinine)/log(10)+mean_High_Density_Lipoprotein_Cholesterol\n", + "6740 mean_Heart_rate>=(num_allergies+1)*Respiratory_rate\n", + "6741 mean_Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "6742 mean_Heart_rate>=Heart_rate-healthcare_coverage\n", + "6743 mean_Heart_rate>=1/2*Body_Height-mean_Estimated_Glomerular_Filtration_Rate\n", + "6744 mean_Heart_rate>=minimum(Protein__Mass_volume__in_Serum,Plasma,floor(Heart_rate))\n", + "6745 mean_Heart_rate>=minimum(Heart_rate,QALY+1)\n", + "6746 mean_Heart_rate>=(e^active_care_plans)^encounters_lifetime_perc_covered\n", + "6747 mean_Heart_rate>=ceil(Low_Density_Lipoprotein_Cholesterol)-mean_Diastolic_Blood_Pressure\n", + "6748 mean_Heart_rate>=2*Low_Density_Lipoprotein_Cholesterol/Potassium\n", + "6749 mean_Heart_rate>=-Low_Density_Lipoprotein_Cholesterol+Sodium+1\n", + "6750 mean_Heart_rate>=Heart_rate*sqrt(medications_lifetime_perc_covered)\n", + "6751 mean_Heart_rate>=minimum(Heart_rate,medications_active^2)\n", + "6752 mean_Heart_rate>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Potassium\n", + "6753 mean_Heart_rate>=Creatinine^2+mean_Carbon_Dioxide\n", + "6754 mean_Heart_rate>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)+mean_High_Density_Lipoprotein_Cholesterol\n", + "6755 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "6756 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Respiratory_rate\n", + "6757 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/DALY+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6758 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6759 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6760 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_conditions,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6761 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(medications_lifetime,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6762 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "6763 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered\n", + "6764 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=(active_care_plan_length+1)/mean_Creatinine\n", + "6765 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "6766 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_conditions\n", + "6767 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "6768 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Creatinine^2)\n", + "6769 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6770 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^QOLS)\n", + "6771 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Triglycerides,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6772 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Creatinine+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "6773 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6774 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6775 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Creatinine\n", + "6776 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/num_allergies)\n", + "6777 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,abs(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "6778 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*active_conditions)\n", + "6779 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/device_lifetime_length)\n", + "6780 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=(2*MCV__Entitic_volume__by_Automated_count)^QOLS\n", + "6781 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/imaging_studies_lifetime+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6782 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,e^medications_active)\n", + "6783 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "6784 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*QOLS+1\n", + "6785 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-encounters_lifetime_perc_covered\n", + "6786 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^encounters_lifetime_perc_covered)\n", + "6787 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*lifetime_care_plans)\n", + "6788 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6789 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "6790 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+encounters_lifetime_perc_covered-1\n", + "6791 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime\n", + "6792 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^medications_lifetime_perc_covered)\n", + "6793 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(num_allergies,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6794 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "6795 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6796 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=active_care_plans-healthcare_coverage\n", + "6797 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)\n", + "6798 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*QOLS\n", + "6799 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_active\n", + "6800 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Globulin__Mass_volume__in_Serum_by_calculation+active_care_plans\n", + "6801 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=active_conditions/Leukocytes____volume__in_Blood_by_Automated_count\n", + "6802 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(2*medications_lifetime_perc_covered)^Albumin__Mass_volume__in_Serum,Plasma\n", + "6803 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(device_lifetime_length)^num_allergies\n", + "6804 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "6805 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-QOLS\n", + "6806 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6807 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "6808 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Triglycerides)\n", + "6809 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^imaging_studies_lifetime)\n", + "6810 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6811 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Urea_Nitrogen-mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6812 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*QALY/Respiratory_rate\n", + "6813 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=lifetime_conditions^2/mean_Systolic_Blood_Pressure\n", + "6814 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6815 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost\n", + "6816 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(log(Body_Weight)/log(10))\n", + "6817 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_conditions\n", + "6818 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-device_lifetime_length+floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6819 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*active_care_plans-active_conditions\n", + "6820 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(lifetime_care_plans)/log(10)\n", + "6821 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,sqrt(procedures_lifetime))\n", + "6822 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(DALY,immunizations_lifetime^2)\n", + "6823 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Low_Density_Lipoprotein_Cholesterol+floor(Estimated_Glomerular_Filtration_Rate)\n", + "6824 mean_High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "6825 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(latitude)+High_Density_Lipoprotein_Cholesterol\n", + "6826 mean_High_Density_Lipoprotein_Cholesterol<=floor(DALY)*mean_Microalbumin_Creatinine_Ratio\n", + "6827 mean_High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,High_Density_Lipoprotein_Cholesterol)\n", + "6828 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Diastolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "6829 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,lifetime_conditions^2)\n", + "6830 mean_High_Density_Lipoprotein_Cholesterol<=(High_Density_Lipoprotein_Cholesterol-1)/medications_lifetime_perc_covered\n", + "6831 mean_High_Density_Lipoprotein_Cholesterol<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*High_Density_Lipoprotein_Cholesterol\n", + "6832 mean_High_Density_Lipoprotein_Cholesterol<=Heart_rate+log(Respiratory_rate)\n", + "6833 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,High_Density_Lipoprotein_Cholesterol)\n", + "6834 mean_High_Density_Lipoprotein_Cholesterol<=floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)\n", + "6835 mean_High_Density_Lipoprotein_Cholesterol<=1/2*Estimated_Glomerular_Filtration_Rate+Low_Density_Lipoprotein_Cholesterol\n", + "6836 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(healthcare_expenses)/mean_Creatinine\n", + "6837 mean_High_Density_Lipoprotein_Cholesterol<=Heart_rate+active_care_plans\n", + "6838 mean_High_Density_Lipoprotein_Cholesterol<=e^encounters_lifetime_perc_covered*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6839 mean_High_Density_Lipoprotein_Cholesterol<=10^Microalbumin_Creatinine_Ratio/Sodium\n", + "6840 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,1/imaging_studies_lifetime)\n", + "6841 mean_High_Density_Lipoprotein_Cholesterol<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)-longitude\n", + "6842 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Systolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "6843 mean_High_Density_Lipoprotein_Cholesterol<=Albumin__Mass_volume__in_Serum,Plasma+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "6844 mean_High_Density_Lipoprotein_Cholesterol<=Chloride-DALY\n", + "6845 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,1/2*lifetime_condition_length)\n", + "6846 mean_High_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure^2/Triglycerides\n", + "6847 mean_High_Density_Lipoprotein_Cholesterol<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(Chloride)\n", + "6848 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+1/2*Respiratory_rate\n", + "6849 mean_High_Density_Lipoprotein_Cholesterol<=Globulin__Mass_volume__in_Serum_by_calculation*floor(active_condition_length)\n", + "6850 mean_High_Density_Lipoprotein_Cholesterol<=ceil(Body_Weight+1)\n", + "6851 mean_High_Density_Lipoprotein_Cholesterol<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6852 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+2*active_care_plans\n", + "6853 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(QALY)+High_Density_Lipoprotein_Cholesterol\n", + "6854 mean_High_Density_Lipoprotein_Cholesterol<=QALY*log(Systolic_Blood_Pressure)/log(10)\n", + "6855 mean_High_Density_Lipoprotein_Cholesterol<=Body_Weight+medications_active\n", + "6856 mean_High_Density_Lipoprotein_Cholesterol<=-DALY+floor(Chloride)\n", + "6857 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,mean_Heart_rate)\n", + "6858 mean_High_Density_Lipoprotein_Cholesterol<=Urea_Nitrogen^2-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6859 mean_High_Density_Lipoprotein_Cholesterol<=floor(active_condition_length)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6860 mean_High_Density_Lipoprotein_Cholesterol<=e^(1/2*Calcium)\n", + "6861 mean_High_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure^2/mean_Triglycerides\n", + "6862 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6863 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,Urea_Nitrogen^2)\n", + "6864 mean_High_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+High_Density_Lipoprotein_Cholesterol\n", + "6865 mean_High_Density_Lipoprotein_Cholesterol<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+QALY\n", + "6866 mean_High_Density_Lipoprotein_Cholesterol<=Globulin__Mass_volume__in_Serum_by_calculation^2+High_Density_Lipoprotein_Cholesterol\n", + "6867 mean_High_Density_Lipoprotein_Cholesterol>=longitude\n", + "6868 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6869 mean_High_Density_Lipoprotein_Cholesterol>=1/2*QALY+1/2\n", + "6870 mean_High_Density_Lipoprotein_Cholesterol>=Bilirubin_total__Mass_volume__in_Serum,Plasma+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6871 mean_High_Density_Lipoprotein_Cholesterol>=log(QOLS)/log(10)+DALY\n", + "6872 mean_High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "6873 mean_High_Density_Lipoprotein_Cholesterol>=Bilirubin_total__Mass_volume__in_Serum,Plasma+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6874 mean_High_Density_Lipoprotein_Cholesterol>=Creatinine*log(encounters_lifetime_payer_coverage)\n", + "6875 mean_High_Density_Lipoprotein_Cholesterol>=minimum(active_condition_length,1/medications_lifetime_perc_covered)\n", + "6876 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol^QOLS\n", + "6877 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "6878 mean_High_Density_Lipoprotein_Cholesterol>=minimum(mean_Estimated_Glomerular_Filtration_Rate,mean_QALY)\n", + "6879 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-healthcare_coverage\n", + "6880 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,10^imaging_studies_lifetime)\n", + "6881 mean_High_Density_Lipoprotein_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+High_Density_Lipoprotein_Cholesterol+1\n", + "6882 mean_High_Density_Lipoprotein_Cholesterol>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plan_length+1\n", + "6883 mean_High_Density_Lipoprotein_Cholesterol>=2*Sodium/medications_lifetime\n", + "6884 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-Microalbumin_Creatinine_Ratio+1\n", + "6885 mean_High_Density_Lipoprotein_Cholesterol>=(e^QOLS)^mean_Creatinine\n", + "6886 mean_High_Density_Lipoprotein_Cholesterol>=-Glucose+1/2*lifetime_care_plan_length\n", + "6887 mean_High_Density_Lipoprotein_Cholesterol>=2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Potassium\n", + "6888 mean_High_Density_Lipoprotein_Cholesterol>=(encounters_lifetime_total_cost+1)/medications_lifetime_dispenses\n", + "6889 mean_High_Density_Lipoprotein_Cholesterol>=Diastolic_Blood_Pressure^2/Total_Cholesterol\n", + "6890 mean_High_Density_Lipoprotein_Cholesterol>=2*High_Density_Lipoprotein_Cholesterol/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6891 mean_High_Density_Lipoprotein_Cholesterol>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6892 mean_High_Density_Lipoprotein_Cholesterol>=lifetime_conditions*num_allergies\n", + "6893 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol*log(Potassium)/log(10)\n", + "6894 mean_High_Density_Lipoprotein_Cholesterol>=sqrt(2)*sqrt(medications_lifetime)\n", + "6895 mean_High_Density_Lipoprotein_Cholesterol>=sqrt(healthcare_coverage)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6896 mean_High_Density_Lipoprotein_Cholesterol>=(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^immunizations_lifetime\n", + "6897 mean_High_Density_Lipoprotein_Cholesterol>=(lifetime_condition_length+1)/medications_lifetime\n", + "6898 mean_High_Density_Lipoprotein_Cholesterol>=(High_Density_Lipoprotein_Cholesterol+1)*medications_lifetime_perc_covered\n", + "6899 mean_High_Density_Lipoprotein_Cholesterol>=minimum(Protein__Mass_volume__in_Serum,Plasma,e^Creatinine)\n", + "6900 mean_High_Density_Lipoprotein_Cholesterol>=encounters_lifetime_perc_covered*mean_Estimated_Glomerular_Filtration_Rate\n", + "6901 mean_High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "6902 mean_High_Density_Lipoprotein_Cholesterol>=2*active_care_plans*mean_Creatinine\n", + "6903 mean_High_Density_Lipoprotein_Cholesterol>=Glomerular_filtration_rate_1_73_sq_M_predicted-active_care_plan_length-1\n", + "6904 mean_High_Density_Lipoprotein_Cholesterol>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Heart_rate+1\n", + "6905 mean_High_Density_Lipoprotein_Cholesterol>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)/mean_Creatinine\n", + "6906 mean_High_Density_Lipoprotein_Cholesterol>=active_care_plan_length*log(Creatinine)/log(10)\n", + "6907 mean_High_Density_Lipoprotein_Cholesterol>=floor(Carbon_Dioxide)/Creatinine\n", + "6908 mean_High_Density_Lipoprotein_Cholesterol>=2*Glomerular_filtration_rate_1_73_sq_M_predicted-Triglycerides\n", + "6909 mean_High_Density_Lipoprotein_Cholesterol>=-Microalbumin_Creatinine_Ratio+2*device_lifetime_length\n", + "6910 mean_High_Density_Lipoprotein_Cholesterol>=(log(active_conditions)/log(10))^Urea_Nitrogen\n", + "6911 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,medications_active^2)\n", + "6912 mean_High_Density_Lipoprotein_Cholesterol>=active_condition_length^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "6913 mean_High_Density_Lipoprotein_Cholesterol>=(DALY^2)^encounters_lifetime_perc_covered\n", + "6914 mean_High_Density_Lipoprotein_Cholesterol>=encounters_count*log(immunizations_lifetime)/log(10)\n", + "6915 mean_High_Density_Lipoprotein_Cholesterol>=minimum(Heart_rate,1/medications_active)\n", + "6916 mean_Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "6917 mean_Low_Density_Lipoprotein_Cholesterol<=floor(active_condition_length)+mean_Chloride\n", + "6918 mean_Low_Density_Lipoprotein_Cholesterol<=DALY^2+Low_Density_Lipoprotein_Cholesterol\n", + "6919 mean_Low_Density_Lipoprotein_Cholesterol<=1/2*Glucose*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6920 mean_Low_Density_Lipoprotein_Cholesterol<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Triglycerides)\n", + "6921 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol*log(Body_Mass_Index)/log(10)\n", + "6922 mean_Low_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol^2/mean_Calcium\n", + "6923 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+immunizations_lifetime_cost\n", + "6924 mean_Low_Density_Lipoprotein_Cholesterol<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "6925 mean_Low_Density_Lipoprotein_Cholesterol<=10^Microalbumin_Creatinine_Ratio/Triglycerides\n", + "6926 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,Low_Density_Lipoprotein_Cholesterol)\n", + "6927 mean_Low_Density_Lipoprotein_Cholesterol<=Body_Mass_Index^2/mean_Creatinine\n", + "6928 mean_Low_Density_Lipoprotein_Cholesterol<=floor(DALY)*mean_Estimated_Glomerular_Filtration_Rate\n", + "6929 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+encounters_count-1\n", + "6930 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+Microalbumin_Creatinine_Ratio-1\n", + "6931 mean_Low_Density_Lipoprotein_Cholesterol<=2*lifetime_care_plan_length/medications_lifetime_perc_covered\n", + "6932 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "6933 mean_Low_Density_Lipoprotein_Cholesterol<=10^QOLS*mean_Heart_rate\n", + "6934 mean_Low_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(lifetime_care_plan_length)\n", + "6935 mean_Low_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure+1/2*lifetime_care_plan_length\n", + "6936 mean_Low_Density_Lipoprotein_Cholesterol<=10^procedures_lifetime+mean_Systolic_Blood_Pressure\n", + "6937 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(Low_Density_Lipoprotein_Cholesterol)*mean_Respiratory_rate\n", + "6938 mean_Low_Density_Lipoprotein_Cholesterol<=Chloride*log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)\n", + "6939 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,1/num_allergies)\n", + "6940 mean_Low_Density_Lipoprotein_Cholesterol<=-Creatinine+Triglycerides-1\n", + "6941 mean_Low_Density_Lipoprotein_Cholesterol<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Glucose\n", + "6942 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Body_Height,Low_Density_Lipoprotein_Cholesterol)\n", + "6943 mean_Low_Density_Lipoprotein_Cholesterol<=1/num_allergies+immunizations_lifetime_cost\n", + "6944 mean_Low_Density_Lipoprotein_Cholesterol<=e^Estimated_Glomerular_Filtration_Rate/mean_Glucose\n", + "6945 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,2*Diastolic_Blood_Pressure)\n", + "6946 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,1/device_lifetime_length)\n", + "6947 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,encounters_count^2)\n", + "6948 mean_Low_Density_Lipoprotein_Cholesterol<=Body_Weight+floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6949 mean_Low_Density_Lipoprotein_Cholesterol<=2*Heart_rate+Urea_Nitrogen\n", + "6950 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Sodium,mean_Microalbumin_Creatinine_Ratio)\n", + "6951 mean_Low_Density_Lipoprotein_Cholesterol<=(10^Potassium)^Creatinine\n", + "6952 mean_Low_Density_Lipoprotein_Cholesterol<=10^ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "6953 mean_Low_Density_Lipoprotein_Cholesterol<=2*mean_Heart_rate-1\n", + "6954 mean_Low_Density_Lipoprotein_Cholesterol<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)^active_care_plans\n", + "6955 mean_Low_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide*log(medications_lifetime_dispenses)\n", + "6956 mean_Low_Density_Lipoprotein_Cholesterol<=2*active_care_plan_length+lifetime_condition_length\n", + "6957 mean_Low_Density_Lipoprotein_Cholesterol<=2*Low_Density_Lipoprotein_Cholesterol*mean_Creatinine\n", + "6958 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "6959 mean_Low_Density_Lipoprotein_Cholesterol<=Potassium^2*Urea_Nitrogen\n", + "6960 mean_Low_Density_Lipoprotein_Cholesterol<=2*Sodium-Systolic_Blood_Pressure\n", + "6961 mean_Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "6962 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "6963 mean_Low_Density_Lipoprotein_Cholesterol>=-Calcium+age-1\n", + "6964 mean_Low_Density_Lipoprotein_Cholesterol>=-Glomerular_filtration_rate_1_73_sq_M_predicted+floor(age)\n", + "6965 mean_Low_Density_Lipoprotein_Cholesterol>=(1/2*medications_active)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6966 mean_Low_Density_Lipoprotein_Cholesterol>=log(procedures_lifetime_cost)/log(10)+mean_Estimated_Glomerular_Filtration_Rate\n", + "6967 mean_Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "6968 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Glucose,1/2*lifetime_care_plan_length)\n", + "6969 mean_Low_Density_Lipoprotein_Cholesterol>=device_lifetime_length^2/Carbon_Dioxide\n", + "6970 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,mean_Body_Mass_Index)\n", + "6971 mean_Low_Density_Lipoprotein_Cholesterol>=(Creatinine-1)*Estimated_Glomerular_Filtration_Rate\n", + "6972 mean_Low_Density_Lipoprotein_Cholesterol>=-Carbon_Dioxide+Low_Density_Lipoprotein_Cholesterol\n", + "6973 mean_Low_Density_Lipoprotein_Cholesterol>=floor(Total_Cholesterol)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6974 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,abs(Low_Density_Lipoprotein_Cholesterol))\n", + "6975 mean_Low_Density_Lipoprotein_Cholesterol>=-Albumin__Mass_volume__in_Serum,Plasma+1/2*lifetime_care_plan_length\n", + "6976 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Microalbumin_Creatinine_Ratio,mean_Diastolic_Blood_Pressure)\n", + "6977 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "6978 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(encounters_lifetime_total_cost)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6979 mean_Low_Density_Lipoprotein_Cholesterol>=ceil(Total_Cholesterol)-mean_Systolic_Blood_Pressure\n", + "6980 mean_Low_Density_Lipoprotein_Cholesterol>=-Body_Mass_Index+mean_Glucose\n", + "6981 mean_Low_Density_Lipoprotein_Cholesterol>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Urea_Nitrogen\n", + "6982 mean_Low_Density_Lipoprotein_Cholesterol>=Body_Weight*log(immunizations_lifetime)\n", + "6983 mean_Low_Density_Lipoprotein_Cholesterol>=active_conditions/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6984 mean_Low_Density_Lipoprotein_Cholesterol>=(2*Microalbumin_Creatinine_Ratio)^medications_lifetime_perc_covered\n", + "6985 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,High_Density_Lipoprotein_Cholesterol)\n", + "6986 mean_Low_Density_Lipoprotein_Cholesterol>=QOLS*floor(Low_Density_Lipoprotein_Cholesterol)\n", + "6987 mean_Low_Density_Lipoprotein_Cholesterol>=Systolic_Blood_Pressure-healthcare_coverage+1\n", + "6988 mean_Low_Density_Lipoprotein_Cholesterol>=-Glomerular_filtration_rate_1_73_sq_M_predicted+Low_Density_Lipoprotein_Cholesterol\n", + "6989 mean_Low_Density_Lipoprotein_Cholesterol>=Urea_Nitrogen*sqrt(lifetime_conditions)\n", + "6990 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-mean_Carbon_Dioxide-1\n", + "6991 mean_Low_Density_Lipoprotein_Cholesterol>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "6992 mean_Low_Density_Lipoprotein_Cholesterol>=Protein__Mass_volume__in_Serum,Plasma*log(Creatinine)\n", + "6993 mean_Low_Density_Lipoprotein_Cholesterol>=(2*High_Density_Lipoprotein_Cholesterol)^medications_lifetime_perc_covered\n", + "6994 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "6995 mean_Low_Density_Lipoprotein_Cholesterol>=(log(active_conditions)/log(10))^device_lifetime_length\n", + "6996 mean_Low_Density_Lipoprotein_Cholesterol>=floor(DALY)*num_allergies\n", + "6997 mean_Low_Density_Lipoprotein_Cholesterol>=Heart_rate-medications_lifetime\n", + "6998 mean_Low_Density_Lipoprotein_Cholesterol>=10^immunizations_lifetime-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6999 mean_Low_Density_Lipoprotein_Cholesterol>=2*Microalbumin_Creatinine_Ratio/DALY\n", + "7000 mean_Low_Density_Lipoprotein_Cholesterol>=1/2*encounters_lifetime_payer_coverage/mean_Systolic_Blood_Pressure\n", + "7001 mean_Low_Density_Lipoprotein_Cholesterol>=(immunizations_lifetime^2)^Creatinine\n", + "7002 mean_Low_Density_Lipoprotein_Cholesterol>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^Albumin__Mass_volume__in_Serum,Plasma\n", + "7003 mean_Low_Density_Lipoprotein_Cholesterol>=1/2*medications_lifetime_length/Heart_rate\n", + "7004 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Heart_rate,1/medications_active)\n", + "7005 mean_Low_Density_Lipoprotein_Cholesterol>=(log(DALY)/log(10))^Calcium\n", + "7006 mean_Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "7007 mean_Microalbumin_Creatinine_Ratio<=2*Microalbumin_Creatinine_Ratio/medications_lifetime_perc_covered\n", + "7008 mean_Microalbumin_Creatinine_Ratio<=ceil(lifetime_care_plan_length)*mean_Potassium\n", + "7009 mean_Microalbumin_Creatinine_Ratio<=2*encounters_count-mean_Calcium\n", + "7010 mean_Microalbumin_Creatinine_Ratio<=10^Creatinine+Potassium\n", + "7011 mean_Microalbumin_Creatinine_Ratio<=10^immunizations_lifetime*mean_Triglycerides\n", + "7012 mean_Microalbumin_Creatinine_Ratio<=age^2/lifetime_conditions\n", + "7013 mean_Microalbumin_Creatinine_Ratio<=QALY^2/medications_active\n", + "7014 mean_Microalbumin_Creatinine_Ratio<=(log(mean_Urea_Nitrogen)/log(10))^medications_lifetime\n", + "7015 mean_Microalbumin_Creatinine_Ratio<=2*mean_Body_Weight*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7016 mean_Microalbumin_Creatinine_Ratio<=mean_Creatinine*sqrt(medications_lifetime_length)\n", + "7017 mean_Microalbumin_Creatinine_Ratio<=DALY*e^Creatinine\n", + "7018 mean_Microalbumin_Creatinine_Ratio<=(log(Heart_rate)/log(10))^Calcium\n", + "7019 mean_Microalbumin_Creatinine_Ratio<=e^procedures_lifetime+medications_lifetime\n", + "7020 mean_Microalbumin_Creatinine_Ratio<=(Low_Density_Lipoprotein_Cholesterol+1)*mean_Creatinine\n", + "7021 mean_Microalbumin_Creatinine_Ratio<=maximum(mean_Heart_rate,e^DALY)\n", + "7022 mean_Microalbumin_Creatinine_Ratio<=maximum(active_conditions,10^Creatinine)\n", + "7023 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "7024 mean_Microalbumin_Creatinine_Ratio<=maximum(mean_Triglycerides,10^active_care_plans)\n", + "7025 mean_Microalbumin_Creatinine_Ratio<=log(Carbon_Dioxide)*mean_Sodium\n", + "7026 mean_Microalbumin_Creatinine_Ratio<=Respiratory_rate^2+healthcare_coverage\n", + "7027 mean_Microalbumin_Creatinine_Ratio<=Low_Density_Lipoprotein_Cholesterol^2/DALY\n", + "7028 mean_Microalbumin_Creatinine_Ratio<=lifetime_condition_length^2/immunizations_lifetime_cost\n", + "7029 mean_Microalbumin_Creatinine_Ratio<=e^Calcium/Estimated_Glomerular_Filtration_Rate\n", + "7030 mean_Microalbumin_Creatinine_Ratio<=(QOLS+1)^QALY\n", + "7031 mean_Microalbumin_Creatinine_Ratio<=maximum(Total_Cholesterol,1/num_allergies)\n", + "7032 mean_Microalbumin_Creatinine_Ratio<=sqrt(mean_Creatinine)^latitude\n", + "7033 mean_Microalbumin_Creatinine_Ratio<=2*Microalbumin_Creatinine_Ratio+mean_Chloride\n", + "7034 mean_Microalbumin_Creatinine_Ratio<=maximum(latitude,10^Creatinine)\n", + "7035 mean_Microalbumin_Creatinine_Ratio<=mean_Glucose*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "7036 mean_Microalbumin_Creatinine_Ratio<=10^immunizations_lifetime*mean_Sodium\n", + "7037 mean_Microalbumin_Creatinine_Ratio<=Carbon_Dioxide^2-lifetime_care_plan_length\n", + "7038 mean_Microalbumin_Creatinine_Ratio>=longitude\n", + "7039 mean_Microalbumin_Creatinine_Ratio>=log(procedures_lifetime)+medications_active\n", + "7040 mean_Microalbumin_Creatinine_Ratio>=minimum(DALY,Microalbumin_Creatinine_Ratio)\n", + "7041 mean_Microalbumin_Creatinine_Ratio>=(device_lifetime_length-1)/QOLS\n", + "7042 mean_Microalbumin_Creatinine_Ratio>=1/2*Calcium+QOLS\n", + "7043 mean_Microalbumin_Creatinine_Ratio>=minimum(Glucose,e^Creatinine)\n", + "7044 mean_Microalbumin_Creatinine_Ratio>=Creatinine+1/2*Microalbumin_Creatinine_Ratio\n", + "7045 mean_Microalbumin_Creatinine_Ratio>=active_condition_length-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "7046 mean_Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "7047 mean_Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "7048 mean_Microalbumin_Creatinine_Ratio>=Chloride*log(num_allergies)\n", + "7049 mean_Microalbumin_Creatinine_Ratio>=1/2*mean_Chloride/DALY\n", + "7050 mean_Microalbumin_Creatinine_Ratio>=-immunizations_lifetime_cost+2*latitude\n", + "7051 mean_Microalbumin_Creatinine_Ratio>=-mean_Estimated_Glomerular_Filtration_Rate+1/2*mean_Sodium\n", + "7052 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7053 mean_Microalbumin_Creatinine_Ratio>=-healthcare_coverage+mean_Triglycerides+1\n", + "7054 mean_Microalbumin_Creatinine_Ratio>=active_conditions*floor(Creatinine)\n", + "7055 mean_Microalbumin_Creatinine_Ratio>=ceil(Creatinine)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7056 mean_Microalbumin_Creatinine_Ratio>=2*medications_lifetime-medications_lifetime_dispenses\n", + "7057 mean_Microalbumin_Creatinine_Ratio>=-Total_Cholesterol+mean_Triglycerides+1\n", + "7058 mean_Microalbumin_Creatinine_Ratio>=(1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^num_allergies\n", + "7059 mean_Microalbumin_Creatinine_Ratio>=-Chloride+ceil(Microalbumin_Creatinine_Ratio)\n", + "7060 mean_Microalbumin_Creatinine_Ratio>=(e^QOLS)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7061 mean_Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "7062 mean_Microalbumin_Creatinine_Ratio>=Triglycerides+log(device_lifetime_length)\n", + "7063 mean_Microalbumin_Creatinine_Ratio>=minimum(Microalbumin_Creatinine_Ratio,1/medications_active)\n", + "7064 mean_Microalbumin_Creatinine_Ratio>=(2*Microalbumin_Creatinine_Ratio)^medications_lifetime_perc_covered\n", + "7065 mean_Microalbumin_Creatinine_Ratio>=minimum(Heart_rate,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7066 mean_Microalbumin_Creatinine_Ratio>=minimum(Microalbumin_Creatinine_Ratio,2*DALY)\n", + "7067 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio*log(Creatinine)/log(10)\n", + "7068 mean_Microalbumin_Creatinine_Ratio>=1/2*Microalbumin_Creatinine_Ratio+mean_Creatinine\n", + "7069 mean_Microalbumin_Creatinine_Ratio>=(1/2*mean_Creatinine)^Potassium\n", + "7070 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "7071 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(lifetime_care_plans,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7072 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^medications_lifetime\n", + "7073 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+1\n", + "7074 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Potassium)+imaging_studies_lifetime\n", + "7075 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "7076 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(MCV__Entitic_volume__by_Automated_count)^QOLS\n", + "7077 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=QOLS+log(QALY)\n", + "7078 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime_cost\n", + "7079 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime_cost\n", + "7080 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions^2\n", + "7081 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Creatinine\n", + "7082 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(High_Density_Lipoprotein_Cholesterol)/active_conditions\n", + "7083 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,e^procedures_lifetime)\n", + "7084 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(DALY,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7085 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7086 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*e^medications_lifetime_length\n", + "7087 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Triglycerides,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7088 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "7089 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)\n", + "7090 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7091 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^mean_Creatinine)\n", + "7092 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(age)-active_care_plans\n", + "7093 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(pH_of_Urine_by_Test_strip,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7094 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,log(medications_lifetime))\n", + "7095 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Creatinine+encounters_lifetime_payer_coverage\n", + "7096 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,floor(DALY))\n", + "7097 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "7098 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(Chloride-1)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7099 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Potassium-immunizations_lifetime+1\n", + "7100 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+healthcare_coverage\n", + "7101 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Sodium/device_lifetime_length\n", + "7102 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Glucose+2*Heart_rate\n", + "7103 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-active_care_plans+floor(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7104 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(medications_lifetime-1)^2\n", + "7105 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+immunizations_lifetime_cost\n", + "7106 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(medications_active,1/num_allergies)\n", + "7107 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime/num_allergies\n", + "7108 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Calcium\n", + "7109 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime/device_lifetime_length\n", + "7110 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plan_length^2/Microalbumin_Creatinine_Ratio\n", + "7111 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*Urea_Nitrogen-imaging_studies_lifetime\n", + "7112 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+procedures_lifetime\n", + "7113 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost+procedures_lifetime\n", + "7114 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Calcium+1/2*active_condition_length\n", + "7115 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Leukocytes____volume__in_Blood_by_Automated_count^QOLS\n", + "7116 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Glomerular_filtration_rate_1_73_sq_M_predicted*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7117 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Respiratory_rate-medications_active\n", + "7118 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=log(Carbon_Dioxide)/log(10)+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7119 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)/Urea_Nitrogen\n", + "7120 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^QOLS+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7121 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/(log(10)*medications_lifetime_perc_covered)\n", + "7122 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(log(encounters_count)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "7123 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(Diastolic_Blood_Pressure)-active_care_plans\n", + "7124 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(1/medications_lifetime_perc_covered)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7125 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^medications_active+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7126 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,medications_active+1)\n", + "7127 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Body_Mass_Index^2/Body_Height\n", + "7128 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Estimated_Glomerular_Filtration_Rate,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7129 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/imaging_studies_lifetime\n", + "7130 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(MCHC__Mass_volume__by_Automated_count)/active_conditions\n", + "7131 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "7132 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "7133 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7134 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(num_allergies)\n", + "7135 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-num_allergies\n", + "7136 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=medications_active^Specific_gravity_of_Urine_by_Test_strip\n", + "7137 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7138 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+active_care_plans\n", + "7139 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Leukocytes____volume__in_Blood_by_Automated_count+log(lifetime_care_plan_length)\n", + "7140 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "7141 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(num_allergies,medications_active)\n", + "7142 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(procedures_lifetime-1)/mean_Carbon_Dioxide\n", + "7143 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(age)-Microalbumin_Creatinine_Ratio\n", + "7144 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Microalbumin_Creatinine_Ratio+log(encounters_lifetime_payer_coverage)\n", + "7145 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(active_conditions)/log(10))\n", + "7146 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Estimated_Glomerular_Filtration_Rate)\n", + "7147 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_conditions+medications_active+1\n", + "7148 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,log(Estimated_Glomerular_Filtration_Rate)/log(10))\n", + "7149 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+active_conditions-1\n", + "7150 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(Microalbumin_Creatinine_Ratio)/log(10)-healthcare_coverage\n", + "7151 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Microalbumin_Creatinine_Ratio/Heart_rate\n", + "7152 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/active_care_plans\n", + "7153 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-healthcare_coverage\n", + "7154 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(immunizations_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7155 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7156 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Estimated_Glomerular_Filtration_Rate,2*QOLS)\n", + "7157 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,immunizations_lifetime^2)\n", + "7158 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(Body_Mass_Index-1)/mean_Estimated_Glomerular_Filtration_Rate\n", + "7159 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Heart_rate+Protein__Mass_volume__in_Serum,Plasma+1\n", + "7160 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Albumin__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "7161 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Bilirubin_total__Mass_volume__in_Serum,Plasma*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7162 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*immunizations_lifetime-1/2\n", + "7163 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(active_conditions)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7164 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7165 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "7166 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Microalbumin_Creatinine_Ratio/Triglycerides\n", + "7167 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=ceil(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7168 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,log(Potassium))\n", + "7169 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+latitude-1\n", + "7170 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+2*medications_active\n", + "7171 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-QALY+1/2*device_lifetime_length\n", + "7172 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Creatinine\n", + "7173 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(medications_lifetime_perc_covered,-Triglycerides)\n", + "7174 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-immunizations_lifetime_cost+log(Potassium)\n", + "7175 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Triglycerides)\n", + "7176 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Creatinine)\n", + "7177 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(Creatinine-1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7178 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "7179 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(QOLS)\n", + "7180 mean_Potassium<=healthcare_expenses\n", + "7181 mean_Potassium<=maximum(Potassium,log(Systolic_Blood_Pressure))\n", + "7182 mean_Potassium<=maximum(Potassium,log(Triglycerides))\n", + "7183 mean_Potassium<=ceil(log(healthcare_expenses)/log(10))\n", + "7184 mean_Potassium<=minimum(Estimated_Glomerular_Filtration_Rate,log(Triglycerides))\n", + "7185 mean_Potassium<=(Body_Weight+1)/active_conditions\n", + "7186 mean_Potassium<=log(Chloride)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7187 mean_Potassium<=Potassium/QOLS\n", + "7188 mean_Potassium<=maximum(Triglycerides,Potassium)\n", + "7189 mean_Potassium<=maximum(medications_lifetime,Potassium)\n", + "7190 mean_Potassium<=(log(MCH__Entitic_mass__by_Automated_count)/log(10))^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7191 mean_Potassium<=1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Microalbumin_Creatinine_Ratio\n", + "7192 mean_Potassium<=age^2/medications_lifetime\n", + "7193 mean_Potassium<=Calcium*Creatinine\n", + "7194 mean_Potassium<=(Diastolic_Blood_Pressure+1)/Respiratory_rate\n", + "7195 mean_Potassium<=(QALY-1)/mean_Creatinine\n", + "7196 mean_Potassium<=-Urea_Nitrogen+active_care_plan_length\n", + "7197 mean_Potassium<=maximum(Potassium,1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7198 mean_Potassium<=maximum(DALY,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7199 mean_Potassium<=lifetime_condition_length/procedures_lifetime\n", + "7200 mean_Potassium<=Potassium^active_conditions\n", + "7201 mean_Potassium<=maximum(Respiratory_rate,Potassium)\n", + "7202 mean_Potassium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Urea_Nitrogen\n", + "7203 mean_Potassium<=maximum(active_conditions,Potassium)\n", + "7204 mean_Potassium<=(Total_Cholesterol-1)/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7205 mean_Potassium<=immunizations_lifetime+log(Systolic_Blood_Pressure)\n", + "7206 mean_Potassium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-medications_active-1\n", + "7207 mean_Potassium<=(age+1)/mean_Calcium\n", + "7208 mean_Potassium<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Creatinine\n", + "7209 mean_Potassium<=Body_Height/mean_Body_Mass_Index\n", + "7210 mean_Potassium<=(Low_Density_Lipoprotein_Cholesterol-1)/active_conditions\n", + "7211 mean_Potassium<=(Low_Density_Lipoprotein_Cholesterol-1)/Respiratory_rate\n", + "7212 mean_Potassium<=mean_Albumin__Mass_volume__in_Serum,Plasma+1/2*medications_active\n", + "7213 mean_Potassium<=Creatinine+encounters_count\n", + "7214 mean_Potassium<=Potassium^active_care_plans\n", + "7215 mean_Potassium<=(log(Glucose)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7216 mean_Potassium<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)^Potassium\n", + "7217 mean_Potassium<=2*Platelets____volume__in_Blood_by_Automated_count/Heart_rate\n", + "7218 mean_Potassium<=(Leukocytes____volume__in_Blood_by_Automated_count+1)^DALY\n", + "7219 mean_Potassium<=maximum(Potassium,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "7220 mean_Potassium<=maximum(Potassium,1/2*encounters_count)\n", + "7221 mean_Potassium<=10^QOLS+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7222 mean_Potassium<=maximum(Potassium,sqrt(Body_Mass_Index))\n", + "7223 mean_Potassium<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Urea_Nitrogen/log(10)\n", + "7224 mean_Potassium<=log(Systolic_Blood_Pressure)+procedures_lifetime\n", + "7225 mean_Potassium<=Bilirubin_total__Mass_volume__in_Serum,Plasma*sqrt(medications_lifetime_length)\n", + "7226 mean_Potassium<=sqrt(Respiratory_rate)/encounters_lifetime_perc_covered\n", + "7227 mean_Potassium<=maximum(Potassium,log(Sodium))\n", + "7228 mean_Potassium<=sqrt(Protein__Mass_volume__in_Serum,Plasma)/immunizations_lifetime\n", + "7229 mean_Potassium<=1/imaging_studies_lifetime+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7230 mean_Potassium<=2*Sodium/device_lifetime_length\n", + "7231 mean_Potassium<=e^Potassium/mean_Calcium\n", + "7232 mean_Potassium<=(1/2*Potassium)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "7233 mean_Potassium<=Globulin__Mass_volume__in_Serum_by_calculation*log(Calcium)\n", + "7234 mean_Potassium<=log(Albumin__Mass_volume__in_Serum,Plasma)*mean_Urea_Nitrogen/log(10)\n", + "7235 mean_Potassium>=longitude\n", + "7236 mean_Potassium>=-encounters_lifetime_payer_coverage+log(age)\n", + "7237 mean_Potassium>=minimum(num_allergies,log(Chloride))\n", + "7238 mean_Potassium>=floor(Body_Height)/age\n", + "7239 mean_Potassium>=minimum(Potassium,log(QALY))\n", + "7240 mean_Potassium>=-Urea_Nitrogen+2*active_care_plans\n", + "7241 mean_Potassium>=healthcare_expenses^longitude\n", + "7242 mean_Potassium>=minimum(mean_Creatinine,log(age))\n", + "7243 mean_Potassium>=minimum(device_lifetime_length,Creatinine+1)\n", + "7244 mean_Potassium>=minimum(Potassium,e^imaging_studies_lifetime)\n", + "7245 mean_Potassium>=(10^medications_lifetime_perc_covered)^mean_Glucose__Mass_volume__in_Urine_by_Test_strip\n", + "7246 mean_Potassium>=sqrt(Respiratory_rate)\n", + "7247 mean_Potassium>=minimum(Potassium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "7248 mean_Potassium>=Potassium/active_conditions\n", + "7249 mean_Potassium>=minimum(Potassium,log(active_care_plan_length))\n", + "7250 mean_Potassium>=Creatinine^2/mean_Urea_Nitrogen\n", + "7251 mean_Potassium>=mean_Platelets____volume__in_Blood_by_Automated_count/lifetime_care_plan_length\n", + "7252 mean_Potassium>=(lifetime_care_plan_length+1)/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "7253 mean_Potassium>=-Heart_rate+active_care_plan_length-1\n", + "7254 mean_Potassium>=Leukocytes____volume__in_Blood_by_Automated_count^2/mean_Carbon_Dioxide\n", + "7255 mean_Potassium>=sqrt(device_lifetime_length)*medications_lifetime_perc_covered\n", + "7256 mean_Potassium>=(encounters_count+1)/mean_Glucose\n", + "7257 mean_Potassium>=log(Heart_rate)-procedures_lifetime\n", + "7258 mean_Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,10^encounters_lifetime_perc_covered)\n", + "7259 mean_Potassium>=1/2*Albumin__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "7260 mean_Potassium>=minimum(active_care_plans,mean_Creatinine)\n", + "7261 mean_Potassium>=sqrt(Platelets____volume__in_Blood_by_Automated_count)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7262 mean_Potassium>=encounters_lifetime_perc_covered+log(DALY)\n", + "7263 mean_Potassium>=1/2*medications_lifetime/mean_Systolic_Blood_Pressure\n", + "7264 mean_Potassium>=(DALY-1)/mean_Microalbumin_Creatinine_Ratio\n", + "7265 mean_Potassium>=Heart_rate/Body_Mass_Index\n", + "7266 mean_Potassium>=2*Systolic_Blood_Pressure/Glucose\n", + "7267 mean_Potassium>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime-1\n", + "7268 mean_Potassium>=Diastolic_Blood_Pressure/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7269 mean_Potassium>=minimum(Potassium,1/2*lifetime_care_plans)\n", + "7270 mean_Potassium>=Potassium/active_care_plans\n", + "7271 mean_Potassium>=minimum(procedures_lifetime,log(QALY))\n", + "7272 mean_Potassium>=Body_Weight/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7273 mean_Potassium>=-active_care_plan_length+1/2*active_condition_length\n", + "7274 mean_Potassium>=2*Body_Weight/High_Density_Lipoprotein_Cholesterol\n", + "7275 mean_Potassium>=sqrt(active_condition_length)-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7276 mean_Potassium>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(Creatinine)\n", + "7277 mean_Potassium>=(Calcium+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7278 mean_Potassium>=2/DALY\n", + "7279 mean_Potassium>=minimum(Potassium,log(active_condition_length))\n", + "7280 mean_Potassium>=sqrt(immunizations_lifetime)+Globulin__Mass_volume__in_Serum_by_calculation\n", + "7281 mean_Potassium>=Creatinine-procedures_lifetime_cost+1\n", + "7282 mean_Potassium>=Carbon_Dioxide-mean_Carbon_Dioxide+1\n", + "7283 mean_Potassium>=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-age\n", + "7284 mean_Potassium>=ceil(MCV__Entitic_volume__by_Automated_count)/Carbon_Dioxide\n", + "7285 mean_Potassium>=-QOLS+floor(Potassium)\n", + "7286 mean_Potassium>=sqrt(Urea_Nitrogen)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7287 mean_Potassium>=minimum(procedures_lifetime,sqrt(Urea_Nitrogen))\n", + "7288 mean_Potassium>=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)-active_conditions\n", + "7289 mean_Potassium>=log(Microalbumin_Creatinine_Ratio)^imaging_studies_lifetime\n", + "7290 mean_Potassium>=sqrt(active_condition_length)-Albumin__Mass_volume__in_Serum,Plasma\n", + "7291 mean_Potassium>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,sqrt(procedures_lifetime))\n", + "7292 mean_Potassium>=(10^healthcare_expenses)^longitude\n", + "7293 mean_Potassium>=-Microalbumin_Creatinine_Ratio+log(procedures_lifetime_cost)\n", + "7294 mean_Potassium>=log(Body_Height)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7295 mean_Potassium>=sqrt(Microalbumin_Creatinine_Ratio)^encounters_lifetime_perc_covered\n", + "7296 mean_Potassium>=e^Leukocytes____volume__in_Blood_by_Automated_count/encounters_lifetime_total_cost\n", + "7297 mean_QALY<=QALY\n", + "7298 mean_QALY>=QALY\n", + "7299 mean_QOLS<=active_care_plans\n", + "7300 mean_QOLS<=active_conditions\n", + "7301 mean_QOLS<=QOLS\n", + "7302 mean_QOLS>=QOLS\n", + "7303 mean_Respiratory_rate<=healthcare_expenses\n", + "7304 mean_Respiratory_rate<=Carbon_Dioxide-medications_active\n", + "7305 mean_Respiratory_rate<=Respiratory_rate*log(Hemoglobin__Mass_volume__in_Blood)/log(10)\n", + "7306 mean_Respiratory_rate<=Potassium^2\n", + "7307 mean_Respiratory_rate<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7308 mean_Respiratory_rate<=maximum(Respiratory_rate,1/2*encounters_count)\n", + "7309 mean_Respiratory_rate<=maximum(active_care_plan_length,Respiratory_rate)\n", + "7310 mean_Respiratory_rate<=Respiratory_rate^active_care_plans\n", + "7311 mean_Respiratory_rate<=ceil(Hemoglobin__Mass_volume__in_Blood)+medications_lifetime_perc_covered\n", + "7312 mean_Respiratory_rate<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)+Respiratory_rate\n", + "7313 mean_Respiratory_rate<=Respiratory_rate^active_conditions\n", + "7314 mean_Respiratory_rate<=floor(age)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7315 mean_Respiratory_rate<=10^healthcare_coverage+Respiratory_rate\n", + "7316 mean_Respiratory_rate<=maximum(Respiratory_rate,2*active_conditions)\n", + "7317 mean_Respiratory_rate<=Hemoglobin__Mass_volume__in_Blood*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7318 mean_Respiratory_rate<=Respiratory_rate/QOLS\n", + "7319 mean_Respiratory_rate<=maximum(encounters_count,Respiratory_rate)\n", + "7320 mean_Respiratory_rate<=maximum(active_condition_length,Respiratory_rate)\n", + "7321 mean_Respiratory_rate<=-Albumin__Mass_volume__in_Serum,Plasma+Carbon_Dioxide\n", + "7322 mean_Respiratory_rate<=Calcium*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "7323 mean_Respiratory_rate<=ceil(mean_Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "7324 mean_Respiratory_rate<=sqrt(Total_Cholesterol)+medications_active\n", + "7325 mean_Respiratory_rate<=maximum(Respiratory_rate,DALY^2)\n", + "7326 mean_Respiratory_rate<=maximum(medications_lifetime,Respiratory_rate)\n", + "7327 mean_Respiratory_rate<=age^2/Microalbumin_Creatinine_Ratio\n", + "7328 mean_Respiratory_rate<=maximum(Respiratory_rate,1/device_lifetime_length)\n", + "7329 mean_Respiratory_rate<=1/imaging_studies_lifetime+Respiratory_rate\n", + "7330 mean_Respiratory_rate<=maximum(Triglycerides,floor(Respiratory_rate))\n", + "7331 mean_Respiratory_rate<=maximum(Estimated_Glomerular_Filtration_Rate,floor(Respiratory_rate))\n", + "7332 mean_Respiratory_rate<=Body_Mass_Index-lifetime_care_plans\n", + "7333 mean_Respiratory_rate<=log(Carbon_Dioxide)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7334 mean_Respiratory_rate<=maximum(Respiratory_rate,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7335 mean_Respiratory_rate<=Respiratory_rate+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7336 mean_Respiratory_rate<=Sodium^2/medications_lifetime\n", + "7337 mean_Respiratory_rate<=-Heart_rate+Triglycerides\n", + "7338 mean_Respiratory_rate<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7339 mean_Respiratory_rate<=10^immunizations_lifetime+Respiratory_rate\n", + "7340 mean_Respiratory_rate<=Estimated_Glomerular_Filtration_Rate+log(lifetime_care_plan_length)\n", + "7341 mean_Respiratory_rate<=Respiratory_rate+e^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7342 mean_Respiratory_rate<=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-active_care_plans\n", + "7343 mean_Respiratory_rate<=maximum(Respiratory_rate,Hemoglobin__Mass_volume__in_Blood)\n", + "7344 mean_Respiratory_rate<=-mean_Diastolic_Blood_Pressure+mean_Triglycerides\n", + "7345 mean_Respiratory_rate<=10^QOLS+Respiratory_rate\n", + "7346 mean_Respiratory_rate<=floor(mean_Potassium^2)\n", + "7347 mean_Respiratory_rate<=10^procedures_lifetime+Respiratory_rate\n", + "7348 mean_Respiratory_rate<=1/2*lifetime_care_plan_length/num_allergies\n", + "7349 mean_Respiratory_rate<=Potassium*log(QALY)\n", + "7350 mean_Respiratory_rate<=maximum(Respiratory_rate,active_conditions^2)\n", + "7351 mean_Respiratory_rate>=longitude\n", + "7352 mean_Respiratory_rate>=ceil(sqrt(Sodium))\n", + "7353 mean_Respiratory_rate>=floor(1/2*Carbon_Dioxide)\n", + "7354 mean_Respiratory_rate>=ceil(Urea_Nitrogen)*medications_lifetime_perc_covered\n", + "7355 mean_Respiratory_rate>=1/2*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "7356 mean_Respiratory_rate>=log(healthcare_coverage)+medications_lifetime_perc_covered\n", + "7357 mean_Respiratory_rate>=Systolic_Blood_Pressure-mean_Systolic_Blood_Pressure-1\n", + "7358 mean_Respiratory_rate>=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "7359 mean_Respiratory_rate>=Respiratory_rate^QOLS\n", + "7360 mean_Respiratory_rate>=Respiratory_rate-healthcare_coverage\n", + "7361 mean_Respiratory_rate>=-healthcare_expenses\n", + "7362 mean_Respiratory_rate>=2*active_care_plans\n", + "7363 mean_Respiratory_rate>=minimum(Hemoglobin__Mass_volume__in_Blood,floor(Respiratory_rate))\n", + "7364 mean_Respiratory_rate>=minimum(Respiratory_rate,sqrt(Body_Height))\n", + "7365 mean_Respiratory_rate>=healthcare_expenses^longitude\n", + "7366 mean_Respiratory_rate>=Respiratory_rate-procedures_lifetime\n", + "7367 mean_Respiratory_rate>=Respiratory_rate/active_care_plans\n", + "7368 mean_Respiratory_rate>=Respiratory_rate/active_conditions\n", + "7369 mean_Respiratory_rate>=minimum(Respiratory_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7370 mean_Respiratory_rate>=minimum(Respiratory_rate,Creatinine)\n", + "7371 mean_Respiratory_rate>=-Creatinine+Respiratory_rate\n", + "7372 mean_Respiratory_rate>=minimum(procedures_lifetime,Urea_Nitrogen-1)\n", + "7373 mean_Respiratory_rate>=log(medications_lifetime_length)+num_allergies\n", + "7374 mean_Respiratory_rate>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "7375 mean_Respiratory_rate>=1/2*DALY-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7376 mean_Respiratory_rate>=active_conditions-immunizations_lifetime_cost\n", + "7377 mean_Respiratory_rate>=(DALY+1)/active_care_plans\n", + "7378 mean_Respiratory_rate>=Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions\n", + "7379 mean_Respiratory_rate>=-active_care_plans+lifetime_conditions\n", + "7380 mean_Respiratory_rate>=Respiratory_rate-encounters_lifetime_payer_coverage\n", + "7381 mean_Respiratory_rate>=minimum(Respiratory_rate,1/2*device_lifetime_length)\n", + "7382 mean_Respiratory_rate>=active_care_plans*imaging_studies_lifetime\n", + "7383 mean_Respiratory_rate>=minimum(encounters_count,2*lifetime_care_plans)\n", + "7384 mean_Respiratory_rate>=immunizations_lifetime^2-1\n", + "7385 mean_Respiratory_rate>=Globulin__Mass_volume__in_Serum_by_calculation/encounters_lifetime_perc_covered\n", + "7386 mean_Respiratory_rate>=(medications_lifetime+1)/Diastolic_Blood_Pressure\n", + "7387 mean_Respiratory_rate>=floor(age)/Microalbumin_Creatinine_Ratio\n", + "7388 mean_Respiratory_rate>=minimum(Respiratory_rate,-Triglycerides)\n", + "7389 mean_Respiratory_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_active\n", + "7390 mean_Respiratory_rate>=floor(sqrt(Systolic_Blood_Pressure))\n", + "7391 mean_Respiratory_rate>=2*Protein__Mass_volume__in_Serum,Plasma/Respiratory_rate\n", + "7392 mean_Respiratory_rate>=Urea_Nitrogen*log(Potassium)/log(10)\n", + "7393 mean_Respiratory_rate>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+Globulin__Mass_volume__in_Serum_by_calculation\n", + "7394 mean_Respiratory_rate>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,lifetime_conditions-1)\n", + "7395 mean_Respiratory_rate>=minimum(lifetime_conditions,sqrt(Systolic_Blood_Pressure))\n", + "7396 mean_Respiratory_rate>=2*active_care_plan_length-mean_Sodium\n", + "7397 mean_Respiratory_rate>=2*floor(Creatinine)\n", + "7398 mean_Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "7399 mean_Respiratory_rate>=(active_care_plans-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7400 mean_Respiratory_rate>=Albumin__Mass_volume__in_Serum,Plasma+1/2*Urea_Nitrogen\n", + "7401 mean_Respiratory_rate>=2*lifetime_conditions-medications_lifetime\n", + "7402 mean_Respiratory_rate>=(Body_Weight+1)/Urea_Nitrogen\n", + "7403 mean_Respiratory_rate>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/mean_Potassium\n", + "7404 mean_Respiratory_rate>=log(Globulin__Mass_volume__in_Serum_by_calculation)/log(10)+active_conditions\n", + "7405 mean_Sodium<=healthcare_expenses\n", + "7406 mean_Sodium<=Sodium+floor(Potassium)\n", + "7407 mean_Sodium<=Systolic_Blood_Pressure*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "7408 mean_Sodium<=Sodium+encounters_lifetime_payer_coverage\n", + "7409 mean_Sodium<=maximum(Sodium,10^medications_lifetime)\n", + "7410 mean_Sodium<=maximum(Sodium,2*lifetime_condition_length)\n", + "7411 mean_Sodium<=2*Diastolic_Blood_Pressure-1\n", + "7412 mean_Sodium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Sodium\n", + "7413 mean_Sodium<=Respiratory_rate^2-1\n", + "7414 mean_Sodium<=maximum(Sodium,encounters_count^2)\n", + "7415 mean_Sodium<=Chloride+latitude-1\n", + "7416 mean_Sodium<=Sodium+log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "7417 mean_Sodium<=maximum(encounters_lifetime_payer_coverage,immunizations_lifetime_cost)\n", + "7418 mean_Sodium<=QALY*log(lifetime_condition_length)\n", + "7419 mean_Sodium<=Sodium^active_care_plans\n", + "7420 mean_Sodium<=maximum(Sodium,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "7421 mean_Sodium<=Calcium^2-longitude\n", + "7422 mean_Sodium<=(procedures_lifetime_cost-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7423 mean_Sodium<=Sodium^active_conditions\n", + "7424 mean_Sodium<=log(Estimated_Glomerular_Filtration_Rate)*medications_lifetime\n", + "7425 mean_Sodium<=Glucose+Protein__Mass_volume__in_Serum,Plasma+1\n", + "7426 mean_Sodium<=maximum(immunizations_lifetime_cost,1/2*medications_lifetime_dispenses)\n", + "7427 mean_Sodium<=Sodium/QOLS\n", + "7428 mean_Sodium<=maximum(Total_Cholesterol,abs(Sodium))\n", + "7429 mean_Sodium<=maximum(Body_Height,Sodium)\n", + "7430 mean_Sodium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^Globulin__Mass_volume__in_Serum_by_calculation\n", + "7431 mean_Sodium<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(Sodium)\n", + "7432 mean_Sodium<=maximum(Sodium,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "7433 mean_Sodium<=maximum(immunizations_lifetime_cost,1/num_allergies)\n", + "7434 mean_Sodium<=Respiratory_rate^2-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7435 mean_Sodium<=floor(Glucose)+mean_Diastolic_Blood_Pressure\n", + "7436 mean_Sodium<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+age\n", + "7437 mean_Sodium<=1/2*Leukocytes____volume__in_Blood_by_Automated_count+Sodium\n", + "7438 mean_Sodium<=maximum(immunizations_lifetime_cost,2*Body_Weight)\n", + "7439 mean_Sodium<=Body_Weight*log(Sodium)/log(10)\n", + "7440 mean_Sodium<=maximum(Sodium,2*Glucose)\n", + "7441 mean_Sodium<=Albumin__Mass_volume__in_Serum,Plasma+Sodium-1\n", + "7442 mean_Sodium<=maximum(Sodium,sqrt(medications_lifetime_cost))\n", + "7443 mean_Sodium<=Sodium+medications_active+1\n", + "7444 mean_Sodium<=Sodium+log(QALY)\n", + "7445 mean_Sodium<=1/2*Calcium*mean_High_Density_Lipoprotein_Cholesterol\n", + "7446 mean_Sodium<=sqrt(Urea_Nitrogen)+Sodium\n", + "7447 mean_Sodium<=Body_Weight*log(Urea_Nitrogen)\n", + "7448 mean_Sodium<=Diastolic_Blood_Pressure+mean_Heart_rate+1\n", + "7449 mean_Sodium<=2*Diastolic_Blood_Pressure-immunizations_lifetime\n", + "7450 mean_Sodium<=2*Diastolic_Blood_Pressure-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7451 mean_Sodium<=(10^Creatinine)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "7452 mean_Sodium<=maximum(immunizations_lifetime_cost,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)\n", + "7453 mean_Sodium>=latitude\n", + "7454 mean_Sodium>=-Potassium+Sodium\n", + "7455 mean_Sodium>=1/4*immunizations_lifetime_cost\n", + "7456 mean_Sodium>=-Globulin__Mass_volume__in_Serum_by_calculation+floor(Sodium)\n", + "7457 mean_Sodium>=active_care_plan_length*log(medications_active)\n", + "7458 mean_Sodium>=healthcare_expenses^longitude\n", + "7459 mean_Sodium>=device_lifetime_length+mean_Diastolic_Blood_Pressure\n", + "7460 mean_Sodium>=minimum(Sodium,mean_Body_Mass_Index)\n", + "7461 mean_Sodium>=Heart_rate+1/2*age\n", + "7462 mean_Sodium>=minimum(Sodium,1/2*lifetime_care_plan_length)\n", + "7463 mean_Sodium>=log(active_conditions)^mean_Potassium\n", + "7464 mean_Sodium>=Sodium/active_conditions\n", + "7465 mean_Sodium>=(MCHC__Mass_volume__by_Automated_count^2)^encounters_lifetime_perc_covered\n", + "7466 mean_Sodium>=Respiratory_rate/QOLS\n", + "7467 mean_Sodium>=active_care_plans+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "7468 mean_Sodium>=(medications_lifetime_dispenses+1)/Body_Mass_Index\n", + "7469 mean_Sodium>=ceil(Sodium)-mean_Potassium\n", + "7470 mean_Sodium>=1/2*Total_Cholesterol+mean_Urea_Nitrogen\n", + "7471 mean_Sodium>=ceil(active_care_plan_length)+procedures_lifetime\n", + "7472 mean_Sodium>=Sodium-medications_lifetime\n", + "7473 mean_Sodium>=Systolic_Blood_Pressure-latitude+1\n", + "7474 mean_Sodium>=Sodium/active_care_plans\n", + "7475 mean_Sodium>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Systolic_Blood_Pressure+1\n", + "7476 mean_Sodium>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,Sodium-1)\n", + "7477 mean_Sodium>=Glomerular_filtration_rate_1_73_sq_M_predicted+ceil(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7478 mean_Sodium>=1/2*Diastolic_Blood_Pressure+QALY\n", + "7479 mean_Sodium>=Body_Height-mean_High_Density_Lipoprotein_Cholesterol-1\n", + "7480 mean_Sodium>=Body_Height-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1\n", + "7481 mean_Sodium>=maximum(Low_Density_Lipoprotein_Cholesterol,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7482 mean_Sodium>=Sodium-procedures_lifetime_cost\n", + "7483 mean_Sodium>=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)*Respiratory_rate\n", + "7484 mean_Sodium>=Carbon_Dioxide+floor(Chloride)\n", + "7485 mean_Sodium>=2*active_care_plan_length-mean_Respiratory_rate\n", + "7486 mean_Sodium>=-Carbon_Dioxide+2*QALY\n", + "7487 mean_Sodium>=MCH__Entitic_mass__by_Automated_count*mean_Creatinine\n", + "7488 mean_Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "7489 mean_Sodium>=minimum(Sodium,10^imaging_studies_lifetime)\n", + "7490 mean_Sodium>=num_allergies*sqrt(procedures_lifetime_cost)\n", + "7491 mean_Sodium>=Sodium*log(lifetime_care_plans)/log(10)\n", + "7492 mean_Sodium>=minimum(Sodium,2*active_condition_length)\n", + "7493 mean_Sodium>=log(active_condition_length)*mean_High_Density_Lipoprotein_Cholesterol/log(10)\n", + "7494 mean_Sodium>=sqrt(lifetime_condition_length)*mean_Creatinine\n", + "7495 mean_Sodium>=DALY^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7496 mean_Sodium>=(encounters_lifetime_perc_covered+1)*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "7497 mean_Sodium>=-Albumin__Mass_volume__in_Serum,Plasma+ceil(Sodium)\n", + "7498 mean_Sodium>=floor(immunizations_lifetime_cost)-healthcare_coverage\n", + "7499 mean_Sodium>=1/2*medications_lifetime/lifetime_care_plans\n", + "7500 mean_Sodium>=active_conditions*log(medications_lifetime)\n", + "7501 mean_Sodium>=sqrt(medications_lifetime_cost)/medications_lifetime\n", + "7502 mean_Sodium>=Chloride+floor(Carbon_Dioxide)\n", + "7503 mean_Sodium>=sqrt(High_Density_Lipoprotein_Cholesterol)*Respiratory_rate\n", + "7504 mean_Sodium>=active_condition_length*log(Protein__Mass_volume__in_Serum,Plasma)/log(10)\n", + "7505 mean_Sodium>=lifetime_care_plan_length*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)\n", + "7506 mean_Sodium>=sqrt(Body_Height)*Calcium\n", + "7507 mean_Sodium>=1/2*Triglycerides+mean_Potassium\n", + "7508 mean_Sodium>=minimum(Microalbumin_Creatinine_Ratio,2*High_Density_Lipoprotein_Cholesterol)\n", + "7509 mean_Sodium>=2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "7510 mean_Systolic_Blood_Pressure<=healthcare_expenses\n", + "7511 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+e^active_care_plans\n", + "7512 mean_Systolic_Blood_Pressure<=1/2*Total_Cholesterol+lifetime_care_plan_length\n", + "7513 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure^active_conditions\n", + "7514 mean_Systolic_Blood_Pressure<=maximum(lifetime_condition_length,Systolic_Blood_Pressure)\n", + "7515 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure/QOLS\n", + "7516 mean_Systolic_Blood_Pressure<=Erythrocytes____volume__in_Blood_by_Automated_count+Systolic_Blood_Pressure-1\n", + "7517 mean_Systolic_Blood_Pressure<=sqrt(medications_lifetime)+Systolic_Blood_Pressure\n", + "7518 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+healthcare_coverage\n", + "7519 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure^active_care_plans\n", + "7520 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,2*medications_lifetime)\n", + "7521 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+floor(Carbon_Dioxide)\n", + "7522 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,Urea_Nitrogen^2)\n", + "7523 mean_Systolic_Blood_Pressure<=-Potassium+Total_Cholesterol-1\n", + "7524 mean_Systolic_Blood_Pressure<=10^active_care_plans+Estimated_Glomerular_Filtration_Rate\n", + "7525 mean_Systolic_Blood_Pressure<=Potassium^2+Systolic_Blood_Pressure\n", + "7526 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "7527 mean_Systolic_Blood_Pressure<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_High_Density_Lipoprotein_Cholesterol\n", + "7528 mean_Systolic_Blood_Pressure<=Diastolic_Blood_Pressure*log(age)/log(10)\n", + "7529 mean_Systolic_Blood_Pressure<=healthcare_coverage+mean_Glucose\n", + "7530 mean_Systolic_Blood_Pressure<=2*Globulin__Mass_volume__in_Serum_by_calculation+Systolic_Blood_Pressure\n", + "7531 mean_Systolic_Blood_Pressure<=sqrt(Albumin__Mass_volume__in_Serum,Plasma)*Low_Density_Lipoprotein_Cholesterol\n", + "7532 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+floor(Microalbumin_Creatinine_Ratio)\n", + "7533 mean_Systolic_Blood_Pressure<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*mean_Diastolic_Blood_Pressure\n", + "7534 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,Respiratory_rate^2)\n", + "7535 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,1/num_allergies)\n", + "7536 mean_Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate*sqrt(Total_Cholesterol)\n", + "7537 mean_Systolic_Blood_Pressure<=10^Leukocytes____volume__in_Blood_by_Automated_count/mean_Carbon_Dioxide\n", + "7538 mean_Systolic_Blood_Pressure<=2*DALY+Systolic_Blood_Pressure\n", + "7539 mean_Systolic_Blood_Pressure<=Heart_rate+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7540 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,medications_lifetime^2)\n", + "7541 mean_Systolic_Blood_Pressure<=Heart_rate^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7542 mean_Systolic_Blood_Pressure<=active_condition_length^2/mean_Potassium\n", + "7543 mean_Systolic_Blood_Pressure<=Triglycerides^2/Heart_rate\n", + "7544 mean_Systolic_Blood_Pressure<=lifetime_care_plan_length*log(Estimated_Glomerular_Filtration_Rate)\n", + "7545 mean_Systolic_Blood_Pressure<=log(Microalbumin_Creatinine_Ratio)*mean_Heart_rate\n", + "7546 mean_Systolic_Blood_Pressure<=active_care_plan_length^2/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "7547 mean_Systolic_Blood_Pressure<=sqrt(lifetime_condition_length)+Systolic_Blood_Pressure\n", + "7548 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,e^active_conditions)\n", + "7549 mean_Systolic_Blood_Pressure<=Diastolic_Blood_Pressure*log(Heart_rate)/log(10)\n", + "7550 mean_Systolic_Blood_Pressure<=QALY^2-lifetime_condition_length\n", + "7551 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,encounters_count^2)\n", + "7552 mean_Systolic_Blood_Pressure<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*sqrt(encounters_lifetime_perc_covered)\n", + "7553 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^medications_lifetime)\n", + "7554 mean_Systolic_Blood_Pressure<=-Heart_rate+2*Systolic_Blood_Pressure\n", + "7555 mean_Systolic_Blood_Pressure>=latitude\n", + "7556 mean_Systolic_Blood_Pressure>=Heart_rate+Respiratory_rate\n", + "7557 mean_Systolic_Blood_Pressure>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7558 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "7559 mean_Systolic_Blood_Pressure>=1/2*Systolic_Blood_Pressure/Creatinine\n", + "7560 mean_Systolic_Blood_Pressure>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+latitude\n", + "7561 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7562 mean_Systolic_Blood_Pressure>=Body_Height-Low_Density_Lipoprotein_Cholesterol+1\n", + "7563 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure/active_care_plans\n", + "7564 mean_Systolic_Blood_Pressure>=-healthcare_expenses\n", + "7565 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Chloride)\n", + "7566 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-mean_Respiratory_rate-1\n", + "7567 mean_Systolic_Blood_Pressure>=floor(Body_Weight)\n", + "7568 mean_Systolic_Blood_Pressure>=sqrt(immunizations_lifetime_cost)/QOLS\n", + "7569 mean_Systolic_Blood_Pressure>=Chloride+log(Estimated_Glomerular_Filtration_Rate)\n", + "7570 mean_Systolic_Blood_Pressure>=log(MCHC__Mass_volume__by_Automated_count)*procedures_lifetime\n", + "7571 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^2/Total_Cholesterol\n", + "7572 mean_Systolic_Blood_Pressure>=2*device_lifetime_length-2\n", + "7573 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure/active_conditions\n", + "7574 mean_Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "7575 mean_Systolic_Blood_Pressure>=-Leukocytes____volume__in_Blood_by_Automated_count+Systolic_Blood_Pressure+1\n", + "7576 mean_Systolic_Blood_Pressure>=floor(latitude)*imaging_studies_lifetime\n", + "7577 mean_Systolic_Blood_Pressure>=(log(Systolic_Blood_Pressure)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7578 mean_Systolic_Blood_Pressure>=log(Estimated_Glomerular_Filtration_Rate)+mean_Chloride\n", + "7579 mean_Systolic_Blood_Pressure>=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*active_care_plans\n", + "7580 mean_Systolic_Blood_Pressure>=1/2*encounters_lifetime_payer_coverage/mean_Glucose\n", + "7581 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^QOLS\n", + "7582 mean_Systolic_Blood_Pressure>=sqrt(lifetime_condition_length)+Estimated_Glomerular_Filtration_Rate\n", + "7583 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-medications_lifetime\n", + "7584 mean_Systolic_Blood_Pressure>=(medications_lifetime+1)/mean_Calcium\n", + "7585 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Creatinine)\n", + "7586 mean_Systolic_Blood_Pressure>=(log(DALY)/log(10))^Calcium\n", + "7587 mean_Systolic_Blood_Pressure>=Body_Weight+log(High_Density_Lipoprotein_Cholesterol)\n", + "7588 mean_Systolic_Blood_Pressure>=Globulin__Mass_volume__in_Serum_by_calculation^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7589 mean_Systolic_Blood_Pressure>=Protein__Mass_volume__in_Serum,Plasma+2*Urea_Nitrogen\n", + "7590 mean_Systolic_Blood_Pressure>=log(e^Triglycerides)/log(10)\n", + "7591 mean_Systolic_Blood_Pressure>=-QALY+Sodium+1\n", + "7592 mean_Systolic_Blood_Pressure>=1/2*QALY*num_allergies\n", + "7593 mean_Systolic_Blood_Pressure>=Microalbumin_Creatinine_Ratio^2/medications_lifetime_dispenses\n", + "7594 mean_Systolic_Blood_Pressure>=1/2*medications_lifetime/mean_Potassium\n", + "7595 mean_Systolic_Blood_Pressure>=Low_Density_Lipoprotein_Cholesterol*log(medications_active)/log(10)\n", + "7596 mean_Systolic_Blood_Pressure>=e^Potassium-mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "7597 mean_Systolic_Blood_Pressure>=log(Urea_Nitrogen)*mean_Heart_rate/log(10)\n", + "7598 mean_Systolic_Blood_Pressure>=lifetime_conditions^2/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7599 mean_Systolic_Blood_Pressure>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+active_condition_length+1\n", + "7600 mean_Systolic_Blood_Pressure>=minimum(mean_Glucose,e^active_care_plans)\n", + "7601 mean_Systolic_Blood_Pressure>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2-mean_Carbon_Dioxide\n", + "7602 mean_Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "7603 mean_Systolic_Blood_Pressure>=Albumin__Mass_volume__in_Serum,Plasma*active_care_plans^2\n", + "7604 mean_Systolic_Blood_Pressure>=Heart_rate+Urea_Nitrogen+1\n", + "7605 mean_Systolic_Blood_Pressure>=2*lifetime_conditions+mean_Diastolic_Blood_Pressure\n", + "7606 mean_Total_Cholesterol<=healthcare_expenses\n", + "7607 mean_Total_Cholesterol<=sqrt(Chloride)+Total_Cholesterol\n", + "7608 mean_Total_Cholesterol<=Total_Cholesterol+immunizations_lifetime_cost\n", + "7609 mean_Total_Cholesterol<=active_care_plans*mean_Chloride\n", + "7610 mean_Total_Cholesterol<=maximum(Total_Cholesterol,Microalbumin_Creatinine_Ratio^2)\n", + "7611 mean_Total_Cholesterol<=Bilirubin_total__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length^2\n", + "7612 mean_Total_Cholesterol<=(Glucose-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7613 mean_Total_Cholesterol<=Body_Height+mean_Heart_rate\n", + "7614 mean_Total_Cholesterol<=Total_Cholesterol/QOLS\n", + "7615 mean_Total_Cholesterol<=2*Chloride+healthcare_coverage\n", + "7616 mean_Total_Cholesterol<=age*log(Body_Height)\n", + "7617 mean_Total_Cholesterol<=Total_Cholesterol+mean_Urea_Nitrogen-1\n", + "7618 mean_Total_Cholesterol<=maximum(Total_Cholesterol,1/device_lifetime_length)\n", + "7619 mean_Total_Cholesterol<=age^2/active_conditions\n", + "7620 mean_Total_Cholesterol<=lifetime_care_plan_length*log(medications_lifetime_dispenses)\n", + "7621 mean_Total_Cholesterol<=maximum(medications_lifetime_dispenses,Total_Cholesterol)\n", + "7622 mean_Total_Cholesterol<=(Chloride-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "7623 mean_Total_Cholesterol<=Globulin__Mass_volume__in_Serum_by_calculation^2+Total_Cholesterol\n", + "7624 mean_Total_Cholesterol<=DALY^2+Total_Cholesterol\n", + "7625 mean_Total_Cholesterol<=maximum(Total_Cholesterol,1/2*medications_lifetime_dispenses)\n", + "7626 mean_Total_Cholesterol<=1/2*latitude*mean_Estimated_Glomerular_Filtration_Rate\n", + "7627 mean_Total_Cholesterol<=log(Carbon_Dioxide)*mean_Heart_rate\n", + "7628 mean_Total_Cholesterol<=active_conditions+ceil(Total_Cholesterol)\n", + "7629 mean_Total_Cholesterol<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*mean_Carbon_Dioxide\n", + "7630 mean_Total_Cholesterol<=Systolic_Blood_Pressure+mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "7631 mean_Total_Cholesterol<=Potassium*Urea_Nitrogen^2\n", + "7632 mean_Total_Cholesterol<=Heart_rate+mean_Triglycerides-1\n", + "7633 mean_Total_Cholesterol<=Glucose*sqrt(Urea_Nitrogen)\n", + "7634 mean_Total_Cholesterol<=(active_care_plan_length-1)*mean_Urea_Nitrogen\n", + "7635 mean_Total_Cholesterol<=Body_Height+2*active_care_plan_length\n", + "7636 mean_Total_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plan_length\n", + "7637 mean_Total_Cholesterol<=maximum(Total_Cholesterol,2*lifetime_condition_length)\n", + "7638 mean_Total_Cholesterol<=10^Globulin__Mass_volume__in_Serum_by_calculation+mean_Glucose\n", + "7639 mean_Total_Cholesterol<=10^QOLS*Sodium\n", + "7640 mean_Total_Cholesterol<=Sodium^2/Estimated_Glomerular_Filtration_Rate\n", + "7641 mean_Total_Cholesterol<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Globulin__Mass_volume__in_Serum_by_calculation\n", + "7642 mean_Total_Cholesterol<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Total_Cholesterol\n", + "7643 mean_Total_Cholesterol<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/active_care_plans\n", + "7644 mean_Total_Cholesterol<=1/2*Estimated_Glomerular_Filtration_Rate+Total_Cholesterol\n", + "7645 mean_Total_Cholesterol<=Chloride*log(Triglycerides)/log(10)\n", + "7646 mean_Total_Cholesterol<=log(Triglycerides)*mean_Chloride/log(10)\n", + "7647 mean_Total_Cholesterol>=latitude\n", + "7648 mean_Total_Cholesterol>=minimum(Total_Cholesterol,Urea_Nitrogen)\n", + "7649 mean_Total_Cholesterol>=Calcium+Sodium\n", + "7650 mean_Total_Cholesterol>=log(num_allergies)/log(10)+Microalbumin_Creatinine_Ratio\n", + "7651 mean_Total_Cholesterol>=minimum(Total_Cholesterol,mean_Body_Mass_Index)\n", + "7652 mean_Total_Cholesterol>=minimum(Triglycerides,Total_Cholesterol)\n", + "7653 mean_Total_Cholesterol>=Respiratory_rate*log(procedures_lifetime_cost)\n", + "7654 mean_Total_Cholesterol>=Heart_rate*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7655 mean_Total_Cholesterol>=sqrt(medications_lifetime)+Sodium\n", + "7656 mean_Total_Cholesterol>=healthcare_expenses^longitude\n", + "7657 mean_Total_Cholesterol>=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Carbon_Dioxide\n", + "7658 mean_Total_Cholesterol>=minimum(Total_Cholesterol,2*age)\n", + "7659 mean_Total_Cholesterol>=-Carbon_Dioxide+Total_Cholesterol+1\n", + "7660 mean_Total_Cholesterol>=(2*lifetime_care_plan_length)^medications_lifetime_perc_covered\n", + "7661 mean_Total_Cholesterol>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Glucose\n", + "7662 mean_Total_Cholesterol>=floor(Glucose)+mean_Estimated_Glomerular_Filtration_Rate\n", + "7663 mean_Total_Cholesterol>=2*Sodium-Systolic_Blood_Pressure\n", + "7664 mean_Total_Cholesterol>=Potassium*ceil(DALY)\n", + "7665 mean_Total_Cholesterol>=2*Body_Weight-procedures_lifetime_cost\n", + "7666 mean_Total_Cholesterol>=Total_Cholesterol^QOLS\n", + "7667 mean_Total_Cholesterol>=(medications_lifetime_length+1)/mean_Heart_rate\n", + "7668 mean_Total_Cholesterol>=ceil(Total_Cholesterol)-mean_Carbon_Dioxide\n", + "7669 mean_Total_Cholesterol>=sqrt(Low_Density_Lipoprotein_Cholesterol)*Respiratory_rate\n", + "7670 mean_Total_Cholesterol>=(QOLS+1)*mean_Heart_rate\n", + "7671 mean_Total_Cholesterol>=log(medications_lifetime)*mean_Estimated_Glomerular_Filtration_Rate/log(10)\n", + "7672 mean_Total_Cholesterol>=immunizations_lifetime_cost-medications_lifetime_dispenses+1\n", + "7673 mean_Total_Cholesterol>=sqrt(encounters_lifetime_total_cost)-QALY\n", + "7674 mean_Total_Cholesterol>=Diastolic_Blood_Pressure+ceil(Protein__Mass_volume__in_Serum,Plasma)\n", + "7675 mean_Total_Cholesterol>=2*latitude+procedures_lifetime\n", + "7676 mean_Total_Cholesterol>=2*Body_Mass_Index+Chloride\n", + "7677 mean_Total_Cholesterol>=2*Body_Mass_Index+mean_Chloride\n", + "7678 mean_Total_Cholesterol>=Systolic_Blood_Pressure-active_care_plans-1\n", + "7679 mean_Total_Cholesterol>=4*Creatinine^2\n", + "7680 mean_Total_Cholesterol>=Body_Mass_Index+Low_Density_Lipoprotein_Cholesterol+1\n", + "7681 mean_Total_Cholesterol>=(Calcium+1)*lifetime_conditions\n", + "7682 mean_Total_Cholesterol>=minimum(mean_Microalbumin_Creatinine_Ratio,active_conditions^2)\n", + "7683 mean_Total_Cholesterol>=minimum(Total_Cholesterol,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7684 mean_Total_Cholesterol>=(Erythrocytes____volume__in_Blood_by_Automated_count+1)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7685 mean_Total_Cholesterol>=(Carbon_Dioxide+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7686 mean_Total_Cholesterol>=minimum(Total_Cholesterol,Triglycerides+1)\n", + "7687 mean_Total_Cholesterol>=2*active_condition_length+mean_Estimated_Glomerular_Filtration_Rate\n", + "7688 mean_Total_Cholesterol>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*mean_Potassium\n", + "7689 mean_Total_Cholesterol>=log(device_lifetime_length)*mean_Systolic_Blood_Pressure/log(10)\n", + "7690 mean_Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "7691 mean_Total_Cholesterol>=(Estimated_Glomerular_Filtration_Rate^2)^QOLS\n", + "7692 mean_Total_Cholesterol>=1/2*Triglycerides+mean_Diastolic_Blood_Pressure\n", + "7693 mean_Total_Cholesterol>=Triglycerides-mean_Estimated_Glomerular_Filtration_Rate-1\n", + "7694 mean_Total_Cholesterol>=2*Heart_rate-mean_Microalbumin_Creatinine_Ratio\n", + "7695 mean_Total_Cholesterol>=Total_Cholesterol*sqrt(medications_lifetime_perc_covered)\n", + "7696 mean_Total_Cholesterol>=(medications_lifetime_perc_covered+1)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "7697 mean_Triglycerides<=healthcare_expenses\n", + "7698 mean_Triglycerides<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*QALY\n", + "7699 mean_Triglycerides<=maximum(Triglycerides,e^active_conditions)\n", + "7700 mean_Triglycerides<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+Glucose\n", + "7701 mean_Triglycerides<=(QOLS+1)*Triglycerides\n", + "7702 mean_Triglycerides<=-Albumin__Mass_volume__in_Serum,Plasma+e^active_conditions\n", + "7703 mean_Triglycerides<=Triglycerides+immunizations_lifetime_cost\n", + "7704 mean_Triglycerides<=10^medications_lifetime_perc_covered*Body_Height\n", + "7705 mean_Triglycerides<=Microalbumin_Creatinine_Ratio+Triglycerides-1\n", + "7706 mean_Triglycerides<=Sodium+2*medications_lifetime\n", + "7707 mean_Triglycerides<=maximum(Triglycerides,10^DALY)\n", + "7708 mean_Triglycerides<=maximum(Systolic_Blood_Pressure,Estimated_Glomerular_Filtration_Rate^2)\n", + "7709 mean_Triglycerides<=sqrt(medications_lifetime_cost)/QOLS\n", + "7710 mean_Triglycerides<=maximum(Triglycerides,10^active_conditions)\n", + "7711 mean_Triglycerides<=(Urea_Nitrogen-1)*mean_Carbon_Dioxide\n", + "7712 mean_Triglycerides<=sqrt(medications_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7713 mean_Triglycerides<=Body_Height+procedures_lifetime_cost-1\n", + "7714 mean_Triglycerides<=10^procedures_lifetime+Body_Height\n", + "7715 mean_Triglycerides<=(encounters_lifetime_total_cost-1)^mean_Creatinine\n", + "7716 mean_Triglycerides<=healthcare_coverage+mean_Microalbumin_Creatinine_Ratio-1\n", + "7717 mean_Triglycerides<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*lifetime_care_plan_length\n", + "7718 mean_Triglycerides<=Triglycerides^2/Glucose\n", + "7719 mean_Triglycerides<=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "7720 mean_Triglycerides<=Total_Cholesterol*log(latitude)/log(10)\n", + "7721 mean_Triglycerides<=(e^Creatinine)^mean_Urea_Nitrogen\n", + "7722 mean_Triglycerides<=(2*Albumin__Mass_volume__in_Serum,Plasma)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7723 mean_Triglycerides<=10^medications_active*encounters_count\n", + "7724 mean_Triglycerides<=maximum(lifetime_condition_length,2*Body_Weight)\n", + "7725 mean_Triglycerides<=maximum(Triglycerides,Glomerular_filtration_rate_1_73_sq_M_predicted^2)\n", + "7726 mean_Triglycerides<=Estimated_Glomerular_Filtration_Rate+lifetime_condition_length\n", + "7727 mean_Triglycerides<=1/num_allergies+Body_Height\n", + "7728 mean_Triglycerides<=Total_Cholesterol*ceil(Creatinine)\n", + "7729 mean_Triglycerides<=Estimated_Glomerular_Filtration_Rate*e^active_care_plans\n", + "7730 mean_Triglycerides<=log(Estimated_Glomerular_Filtration_Rate)^DALY\n", + "7731 mean_Triglycerides<=Low_Density_Lipoprotein_Cholesterol+2*lifetime_care_plan_length\n", + "7732 mean_Triglycerides<=(active_care_plan_length+1)*Urea_Nitrogen\n", + "7733 mean_Triglycerides<=sqrt(encounters_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7734 mean_Triglycerides<=10^immunizations_lifetime*Body_Height\n", + "7735 mean_Triglycerides<=Triglycerides^2/Diastolic_Blood_Pressure\n", + "7736 mean_Triglycerides<=Estimated_Glomerular_Filtration_Rate+2*medications_lifetime\n", + "7737 mean_Triglycerides<=Heart_rate^2/active_conditions\n", + "7738 mean_Triglycerides<=10^QOLS*Sodium\n", + "7739 mean_Triglycerides<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Urea_Nitrogen\n", + "7740 mean_Triglycerides<=Systolic_Blood_Pressure^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "7741 mean_Triglycerides<=Glucose^2/Body_Mass_Index\n", + "7742 mean_Triglycerides<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Total_Cholesterol\n", + "7743 mean_Triglycerides<=(1/2*Urea_Nitrogen)^Potassium\n", + "7744 mean_Triglycerides>=latitude\n", + "7745 mean_Triglycerides>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*age\n", + "7746 mean_Triglycerides>=Chloride+1/2*DALY\n", + "7747 mean_Triglycerides>=Diastolic_Blood_Pressure+log(lifetime_condition_length)\n", + "7748 mean_Triglycerides>=minimum(Triglycerides,Estimated_Glomerular_Filtration_Rate)\n", + "7749 mean_Triglycerides>=(Erythrocytes____volume__in_Blood_by_Automated_count-1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7750 mean_Triglycerides>=1/2*Microalbumin_Creatinine_Ratio-procedures_lifetime\n", + "7751 mean_Triglycerides>=e^Creatinine/mean_Calcium\n", + "7752 mean_Triglycerides>=healthcare_expenses^longitude\n", + "7753 mean_Triglycerides>=minimum(Triglycerides,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7754 mean_Triglycerides>=Triglycerides^QOLS\n", + "7755 mean_Triglycerides>=mean_Chloride+2*num_allergies\n", + "7756 mean_Triglycerides>=Systolic_Blood_Pressure-procedures_lifetime_cost-1\n", + "7757 mean_Triglycerides>=-Microalbumin_Creatinine_Ratio+Triglycerides+1\n", + "7758 mean_Triglycerides>=Creatinine*Hemoglobin_A1c_Hemoglobin_total_in_Blood^2\n", + "7759 mean_Triglycerides>=mean_Microalbumin_Creatinine_Ratio^imaging_studies_lifetime\n", + "7760 mean_Triglycerides>=1/2*DALY+mean_Chloride\n", + "7761 mean_Triglycerides>=2*QALY-procedures_lifetime_cost\n", + "7762 mean_Triglycerides>=2*Microalbumin_Creatinine_Ratio*imaging_studies_lifetime\n", + "7763 mean_Triglycerides>=DALY*log(Body_Mass_Index)\n", + "7764 mean_Triglycerides>=Estimated_Glomerular_Filtration_Rate*e^medications_lifetime_perc_covered\n", + "7765 mean_Triglycerides>=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Albumin__Mass_volume__in_Serum,Plasma\n", + "7766 mean_Triglycerides>=(Respiratory_rate+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7767 mean_Triglycerides>=DALY*log(device_lifetime_length)\n", + "7768 mean_Triglycerides>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/encounters_lifetime_perc_covered\n", + "7769 mean_Triglycerides>=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7770 mean_Triglycerides>=Estimated_Glomerular_Filtration_Rate^2/High_Density_Lipoprotein_Cholesterol\n", + "7771 mean_Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "7772 mean_Triglycerides>=1/2*Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "7773 mean_Triglycerides>=1/2*Creatinine*Protein__Mass_volume__in_Serum,Plasma\n", + "7774 mean_Triglycerides>=Triglycerides-mean_Carbon_Dioxide+1\n", + "7775 mean_Triglycerides>=Estimated_Glomerular_Filtration_Rate*log(Potassium)\n", + "7776 mean_Triglycerides>=Protein__Mass_volume__in_Serum,Plasma*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7777 mean_Triglycerides>=minimum(Triglycerides,Creatinine)\n", + "7778 mean_Triglycerides>=2*DALY+active_care_plan_length\n", + "7779 mean_Triglycerides>=sqrt(Creatinine)*active_care_plan_length\n", + "7780 mean_Triglycerides>=10^Albumin__Mass_volume__in_Serum,Plasma/medications_lifetime_dispenses\n", + "7781 mean_Triglycerides>=log(active_conditions)*mean_Low_Density_Lipoprotein_Cholesterol/log(10)\n", + "7782 mean_Triglycerides>=1/2*Respiratory_rate*lifetime_conditions\n", + "7783 mean_Triglycerides>=-Carbon_Dioxide+Triglycerides+1\n", + "7784 mean_Triglycerides>=QOLS*sqrt(encounters_lifetime_total_cost)\n", + "7785 mean_Triglycerides>=(immunizations_lifetime-1)*encounters_count\n", + "7786 mean_Triglycerides>=1/2*medications_lifetime-procedures_lifetime_cost\n", + "7787 mean_Triglycerides>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Diastolic_Blood_Pressure-1\n", + "7788 mean_Urea_Nitrogen<=healthcare_expenses\n", + "7789 mean_Urea_Nitrogen<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+ceil(Carbon_Dioxide)\n", + "7790 mean_Urea_Nitrogen<=Urea_Nitrogen/encounters_lifetime_perc_covered\n", + "7791 mean_Urea_Nitrogen<=maximum(Heart_rate,Urea_Nitrogen)\n", + "7792 mean_Urea_Nitrogen<=(Chloride-1)/medications_active\n", + "7793 mean_Urea_Nitrogen<=-Body_Height+2*Chloride\n", + "7794 mean_Urea_Nitrogen<=sqrt(Heart_rate)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7795 mean_Urea_Nitrogen<=sqrt(Body_Height)+healthcare_coverage\n", + "7796 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Hemoglobin__Mass_volume__in_Blood+1)\n", + "7797 mean_Urea_Nitrogen<=Albumin__Mass_volume__in_Serum,Plasma+Respiratory_rate\n", + "7798 mean_Urea_Nitrogen<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)/medications_lifetime_perc_covered\n", + "7799 mean_Urea_Nitrogen<=maximum(Respiratory_rate,Estimated_Glomerular_Filtration_Rate-1)\n", + "7800 mean_Urea_Nitrogen<=2*encounters_lifetime_perc_covered*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "7801 mean_Urea_Nitrogen<=(lifetime_care_plan_length-1)/active_care_plans\n", + "7802 mean_Urea_Nitrogen<=1/2*Body_Weight*Creatinine\n", + "7803 mean_Urea_Nitrogen<=(Low_Density_Lipoprotein_Cholesterol-1)/mean_Creatinine\n", + "7804 mean_Urea_Nitrogen<=Protein__Mass_volume__in_Serum,Plasma^2/mean_Triglycerides\n", + "7805 mean_Urea_Nitrogen<=DALY*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "7806 mean_Urea_Nitrogen<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)+1\n", + "7807 mean_Urea_Nitrogen<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Body_Mass_Index\n", + "7808 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,encounters_count+1)\n", + "7809 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7810 mean_Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(healthcare_expenses)/log(10)\n", + "7811 mean_Urea_Nitrogen<=Urea_Nitrogen+mean_Microalbumin_Creatinine_Ratio\n", + "7812 mean_Urea_Nitrogen<=Body_Mass_Index^2/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "7813 mean_Urea_Nitrogen<=Urea_Nitrogen^active_conditions\n", + "7814 mean_Urea_Nitrogen<=Urea_Nitrogen+encounters_lifetime_payer_coverage\n", + "7815 mean_Urea_Nitrogen<=2*medications_lifetime_cost/medications_lifetime_length\n", + "7816 mean_Urea_Nitrogen<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*sqrt(lifetime_condition_length)\n", + "7817 mean_Urea_Nitrogen<=Carbon_Dioxide-Creatinine\n", + "7818 mean_Urea_Nitrogen<=10^immunizations_lifetime+Respiratory_rate\n", + "7819 mean_Urea_Nitrogen<=Sodium^2/medications_lifetime\n", + "7820 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,ceil(Hemoglobin__Mass_volume__in_Blood))\n", + "7821 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,2*Calcium)\n", + "7822 mean_Urea_Nitrogen<=Potassium+ceil(Urea_Nitrogen)\n", + "7823 mean_Urea_Nitrogen<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "7824 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,medications_lifetime^2)\n", + "7825 mean_Urea_Nitrogen<=sqrt(Carbon_Dioxide)+Urea_Nitrogen\n", + "7826 mean_Urea_Nitrogen<=1/2*QALY+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7827 mean_Urea_Nitrogen<=Triglycerides^2/medications_lifetime\n", + "7828 mean_Urea_Nitrogen<=(1/2*Low_Density_Lipoprotein_Cholesterol)^mean_Creatinine\n", + "7829 mean_Urea_Nitrogen<=(Creatinine+1)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "7830 mean_Urea_Nitrogen<=sqrt(active_care_plan_length)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7831 mean_Urea_Nitrogen<=DALY^2+immunizations_lifetime_cost\n", + "7832 mean_Urea_Nitrogen<=minimum(healthcare_expenses,FEV1_FVC+1)\n", + "7833 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Potassium^2)\n", + "7834 mean_Urea_Nitrogen<=Urea_Nitrogen^active_care_plans\n", + "7835 mean_Urea_Nitrogen<=e^Calcium/encounters_count\n", + "7836 mean_Urea_Nitrogen<=ceil(Protein__Mass_volume__in_Serum,Plasma)/Creatinine\n", + "7837 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,2*medications_lifetime)\n", + "7838 mean_Urea_Nitrogen<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Heart_rate\n", + "7839 mean_Urea_Nitrogen<=Calcium^2/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7840 mean_Urea_Nitrogen<=1/2*QALY+procedures_lifetime\n", + "7841 mean_Urea_Nitrogen<=1/2*Body_Mass_Index+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7842 mean_Urea_Nitrogen<=2*Urea_Nitrogen*mean_Creatinine\n", + "7843 mean_Urea_Nitrogen<=High_Density_Lipoprotein_Cholesterol^2/Heart_rate\n", + "7844 mean_Urea_Nitrogen<=Urea_Nitrogen*floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7845 mean_Urea_Nitrogen<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood+lifetime_care_plans\n", + "7846 mean_Urea_Nitrogen<=(log(Carbon_Dioxide)/log(10))^Urea_Nitrogen\n", + "7847 mean_Urea_Nitrogen<=(Urea_Nitrogen+1)/medications_lifetime_perc_covered\n", + "7848 mean_Urea_Nitrogen<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2/imaging_studies_lifetime\n", + "7849 mean_Urea_Nitrogen>=longitude\n", + "7850 mean_Urea_Nitrogen>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Urea_Nitrogen\n", + "7851 mean_Urea_Nitrogen>=active_care_plans+immunizations_lifetime+1\n", + "7852 mean_Urea_Nitrogen>=(Urea_Nitrogen+1)*encounters_lifetime_perc_covered\n", + "7853 mean_Urea_Nitrogen>=minimum(mean_Respiratory_rate,10^num_allergies)\n", + "7854 mean_Urea_Nitrogen>=Urea_Nitrogen/active_conditions\n", + "7855 mean_Urea_Nitrogen>=sqrt(encounters_count)-Calcium\n", + "7856 mean_Urea_Nitrogen>=floor(Glucose)/Respiratory_rate\n", + "7857 mean_Urea_Nitrogen>=Low_Density_Lipoprotein_Cholesterol-Sodium\n", + "7858 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,log(procedures_lifetime_cost))\n", + "7859 mean_Urea_Nitrogen>=(medications_lifetime+1)/Glucose\n", + "7860 mean_Urea_Nitrogen>=1/2*Urea_Nitrogen+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7861 mean_Urea_Nitrogen>=healthcare_expenses^longitude\n", + "7862 mean_Urea_Nitrogen>=ceil(10^medications_lifetime_perc_covered)\n", + "7863 mean_Urea_Nitrogen>=Microalbumin_Creatinine_Ratio^(1/log(10))\n", + "7864 mean_Urea_Nitrogen>=Creatinine^2-procedures_lifetime_cost\n", + "7865 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "7866 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,sqrt(active_care_plan_length))\n", + "7867 mean_Urea_Nitrogen>=(1/2*Microalbumin_Creatinine_Ratio)^encounters_lifetime_perc_covered\n", + "7868 mean_Urea_Nitrogen>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Creatinine\n", + "7869 mean_Urea_Nitrogen>=Urea_Nitrogen*log(lifetime_care_plans)/log(10)\n", + "7870 mean_Urea_Nitrogen>=(Urea_Nitrogen-1)*medications_lifetime_perc_covered\n", + "7871 mean_Urea_Nitrogen>=minimum(medications_active,Urea_Nitrogen)\n", + "7872 mean_Urea_Nitrogen>=Urea_Nitrogen-procedures_lifetime_cost\n", + "7873 mean_Urea_Nitrogen>=Creatinine+active_care_plans\n", + "7874 mean_Urea_Nitrogen>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7875 mean_Urea_Nitrogen>=-Glomerular_filtration_rate_1_73_sq_M_predicted+lifetime_conditions\n", + "7876 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,-Triglycerides)\n", + "7877 mean_Urea_Nitrogen>=Globulin__Mass_volume__in_Serum_by_calculation+1/2*Urea_Nitrogen\n", + "7878 mean_Urea_Nitrogen>=2*lifetime_conditions/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7879 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,2*active_care_plans)\n", + "7880 mean_Urea_Nitrogen>=Urea_Nitrogen^QOLS\n", + "7881 mean_Urea_Nitrogen>=log(Estimated_Glomerular_Filtration_Rate)*medications_active/log(10)\n", + "7882 mean_Urea_Nitrogen>=Leukocytes____volume__in_Blood_by_Automated_count+mean_Creatinine\n", + "7883 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,2*lifetime_care_plans)\n", + "7884 mean_Urea_Nitrogen>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7885 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/2*procedures_lifetime)\n", + "7886 mean_Urea_Nitrogen>=-age+procedures_lifetime\n", + "7887 mean_Urea_Nitrogen>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*QALY\n", + "7888 mean_Urea_Nitrogen>=(immunizations_lifetime-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7889 mean_Urea_Nitrogen>=Urea_Nitrogen/active_care_plans\n", + "7890 mean_Urea_Nitrogen>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Creatinine\n", + "7891 mean_Urea_Nitrogen>=(Respiratory_rate+1)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7892 mean_Urea_Nitrogen>=Creatinine*log(Platelets____volume__in_Blood_by_Automated_count)/log(10)\n", + "7893 mean_Urea_Nitrogen>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(immunizations_lifetime)/log(10)\n", + "7894 mean_Urea_Nitrogen>=Creatinine^2/mean_Potassium\n", + "7895 mean_Urea_Nitrogen>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(Creatinine)\n", + "7896 mean_Urea_Nitrogen>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+active_conditions-1\n", + "7897 mean_Urea_Nitrogen>=Globulin__Mass_volume__in_Serum_by_calculation+log(immunizations_lifetime_cost)\n", + "7898 mean_Urea_Nitrogen>=log(procedures_lifetime_cost)-medications_active\n", + "7899 mean_Urea_Nitrogen>=Glomerular_filtration_rate_1_73_sq_M_predicted-Low_Density_Lipoprotein_Cholesterol-1\n", + "7900 mean_Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "7901 mean_Urea_Nitrogen>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7902 mean_Urea_Nitrogen>=minimum(Estimated_Glomerular_Filtration_Rate,sqrt(Chloride))\n", + "7903 mean_Urea_Nitrogen>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-lifetime_care_plan_length\n", + "7904 mean_Urea_Nitrogen>=floor(Estimated_Glomerular_Filtration_Rate)/Urea_Nitrogen\n", + "7905 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "7906 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=log(Calcium)/log(10)+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "7907 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(latitude,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "7908 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(active_care_plan_length,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "7909 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count/num_allergies\n", + "7910 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=maximum(Protein__Mass_volume__in_Serum,Plasma,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "7911 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7912 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "7913 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "7914 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "7915 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "7916 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(Calcium+1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7917 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7918 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "7919 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Erythrocytes____volume__in_Blood_by_Automated_count\n", + "7920 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/(MCHC__Mass_volume__by_Automated_count+1)\n", + "7921 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "7922 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7923 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count^num_allergies\n", + "7924 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=(mean_Platelets____volume__in_Blood_by_Automated_count+1)/mean_Glucose\n", + "7925 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(lifetime_care_plans,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7926 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "7927 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(active_care_plans,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7928 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(medications_active,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7929 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(device_lifetime_length,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7930 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=minimum(DALY,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "7931 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7932 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "7933 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=-DALY+procedures_lifetime\n", + "7934 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Calcium/active_care_plans\n", + "7935 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7936 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "7937 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+encounters_lifetime_perc_covered\n", + "7938 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(latitude,Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "7939 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/num_allergies\n", + "7940 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(encounters_count,Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "7941 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(Protein__Mass_volume__in_Serum,Plasma,Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "7942 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=maximum(QALY,Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "7943 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "7944 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "7945 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "7946 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7947 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=MCHC__Mass_volume__by_Automated_count+log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "7948 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7949 mean_Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "7950 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood\n", + "7951 mean_Hemoglobin__Mass_volume__in_Blood<=Carbon_Dioxide^DALY\n", + "7952 mean_Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "7953 mean_Hemoglobin__Mass_volume__in_Blood>=Hemoglobin__Mass_volume__in_Blood-procedures_lifetime\n", + "7954 mean_Hemoglobin__Mass_volume__in_Blood>=floor(Hemoglobin__Mass_volume__in_Blood)\n", + "7955 mean_Hemoglobin__Mass_volume__in_Blood>=minimum(Respiratory_rate,Hemoglobin__Mass_volume__in_Blood)\n", + "7956 mean_Hemoglobin__Mass_volume__in_Blood>=minimum(active_conditions,Hemoglobin__Mass_volume__in_Blood)\n", + "7957 mean_Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "7958 mean_Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "7959 mean_Hemoglobin__Mass_volume__in_Blood>=minimum(DALY,Hemoglobin__Mass_volume__in_Blood)\n", + "7960 mean_Hemoglobin__Mass_volume__in_Blood>=Hemoglobin__Mass_volume__in_Blood^num_allergies\n", + "7961 mean_Hemoglobin__Mass_volume__in_Blood>=log(encounters_lifetime_perc_covered)/log(10)+Hemoglobin__Mass_volume__in_Blood\n", + "7962 mean_Hemoglobin__Mass_volume__in_Blood>=minimum(Hemoglobin__Mass_volume__in_Blood,pH_of_Urine_by_Test_strip)\n", + "7963 mean_Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "7964 mean_Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "7965 mean_Leukocytes____volume__in_Blood_by_Automated_count<=maximum(Calcium,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "7966 mean_Leukocytes____volume__in_Blood_by_Automated_count<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "7967 mean_Leukocytes____volume__in_Blood_by_Automated_count<=minimum(healthcare_expenses,mean_pH_of_Urine_by_Test_strip)\n", + "7968 mean_Leukocytes____volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count/num_allergies\n", + "7969 mean_Leukocytes____volume__in_Blood_by_Automated_count<=maximum(active_conditions,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "7970 mean_Leukocytes____volume__in_Blood_by_Automated_count<=maximum(active_conditions,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "7971 mean_Leukocytes____volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7972 mean_Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "7973 mean_Leukocytes____volume__in_Blood_by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count\n", + "7974 mean_Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "7975 mean_Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7976 mean_Leukocytes____volume__in_Blood_by_Automated_count>=(log(MCHC__Mass_volume__by_Automated_count)/log(10))^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7977 mean_Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7978 mean_MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "7979 mean_MCH__Entitic_mass__by_Automated_count<=maximum(Protein__Mass_volume__in_Serum,Plasma,MCH__Entitic_mass__by_Automated_count)\n", + "7980 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count+encounters_lifetime_perc_covered\n", + "7981 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count/num_allergies\n", + "7982 mean_MCH__Entitic_mass__by_Automated_count<=maximum(encounters_count,MCH__Entitic_mass__by_Automated_count)\n", + "7983 mean_MCH__Entitic_mass__by_Automated_count<=Chloride-QALY\n", + "7984 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count+procedures_lifetime\n", + "7985 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7986 mean_MCH__Entitic_mass__by_Automated_count>=longitude\n", + "7987 mean_MCH__Entitic_mass__by_Automated_count>=MCH__Entitic_mass__by_Automated_count\n", + "7988 mean_MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "7989 mean_MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "7990 mean_MCH__Entitic_mass__by_Automated_count>=-DALY+2*Respiratory_rate\n", + "7991 mean_MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7992 mean_MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "7993 mean_MCHC__Mass_volume__by_Automated_count<=ceil(MCHC__Mass_volume__by_Automated_count)\n", + "7994 mean_MCHC__Mass_volume__by_Automated_count<=maximum(Protein__Mass_volume__in_Serum,Plasma,MCHC__Mass_volume__by_Automated_count)\n", + "7995 mean_MCHC__Mass_volume__by_Automated_count<=MCHC__Mass_volume__by_Automated_count+procedures_lifetime\n", + "7996 mean_MCHC__Mass_volume__by_Automated_count<=maximum(active_care_plan_length,MCHC__Mass_volume__by_Automated_count)\n", + "7997 mean_MCHC__Mass_volume__by_Automated_count<=maximum(encounters_count,MCHC__Mass_volume__by_Automated_count)\n", + "7998 mean_MCHC__Mass_volume__by_Automated_count<=MCHC__Mass_volume__by_Automated_count/num_allergies\n", + "7999 mean_MCHC__Mass_volume__by_Automated_count<=MCHC__Mass_volume__by_Automated_count+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8000 mean_MCHC__Mass_volume__by_Automated_count>=longitude\n", + "8001 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count\n", + "8002 mean_MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "8003 mean_MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "8004 mean_MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "8005 mean_MCHC__Mass_volume__by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count+2*mean_Respiratory_rate\n", + "8006 mean_MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "8007 mean_MCV__Entitic_volume__by_Automated_count<=MCV__Entitic_volume__by_Automated_count/num_allergies\n", + "8008 mean_MCV__Entitic_volume__by_Automated_count<=MCV__Entitic_volume__by_Automated_count+1/2*mean_Creatinine\n", + "8009 mean_MCV__Entitic_volume__by_Automated_count<=maximum(lifetime_care_plan_length,MCV__Entitic_volume__by_Automated_count)\n", + "8010 mean_MCV__Entitic_volume__by_Automated_count<=MCV__Entitic_volume__by_Automated_count+procedures_lifetime\n", + "8011 mean_MCV__Entitic_volume__by_Automated_count<=maximum(Diastolic_Blood_Pressure,MCV__Entitic_volume__by_Automated_count)\n", + "8012 mean_MCV__Entitic_volume__by_Automated_count<=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,MCV__Entitic_volume__by_Automated_count)\n", + "8013 mean_MCV__Entitic_volume__by_Automated_count>=latitude\n", + "8014 mean_MCV__Entitic_volume__by_Automated_count>=MCV__Entitic_volume__by_Automated_count\n", + "8015 mean_MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "8016 mean_MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "8017 mean_MCV__Entitic_volume__by_Automated_count>=Chloride*log(10)/log(mean_Carbon_Dioxide)\n", + "8018 mean_MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "8019 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "8020 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "8021 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+procedures_lifetime_cost\n", + "8022 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(medications_lifetime_dispenses,Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "8023 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/num_allergies\n", + "8024 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Platelets____volume__in_Blood_by_Automated_count)\n", + "8025 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2\n", + "8026 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "8027 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "8028 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "8029 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses/healthcare_coverage\n", + "8030 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count-mean_Glucose\n", + "8031 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "8032 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "8033 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Respiratory_rate\n", + "8034 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "8035 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)-mean_Creatinine\n", + "8036 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "8037 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "8038 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(active_conditions,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "8039 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "8040 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(Calcium,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "8041 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(active_conditions,Calcium)\n", + "8042 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=log(healthcare_expenses)/log(10)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8043 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "8044 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^num_allergies\n", + "8045 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-procedures_lifetime\n", + "8046 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(procedures_lifetime,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "8047 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "8048 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "8049 mean_Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "8050 mean_Platelets____volume__in_Blood_by_Automated_count<=Platelets____volume__in_Blood_by_Automated_count\n", + "8051 mean_Platelets____volume__in_Blood_by_Automated_count<=log(10^Body_Height)\n", + "8052 mean_Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "8053 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(lifetime_condition_length,Platelets____volume__in_Blood_by_Automated_count)\n", + "8054 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Platelets____volume__in_Blood_by_Automated_count,e^active_conditions)\n", + "8055 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Platelets____volume__in_Blood_by_Automated_count)\n", + "8056 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(Platelets____volume__in_Blood_by_Automated_count,pH_of_Urine_by_Test_strip)\n", + "8057 mean_Platelets____volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count^num_allergies\n", + "8058 mean_Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "8059 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(immunizations_lifetime_cost,Platelets____volume__in_Blood_by_Automated_count)\n", + "8060 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "8061 mean_Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "8062 mean_Platelets____volume__in_Blood_by_Automated_count>=Body_Height-Respiratory_rate\n", + "8063 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8064 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "8065 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=longitude\n", + "8066 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "8067 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8068 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8069 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8070 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8071 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=-Globulin__Mass_volume__in_Serum_by_calculation+QALY\n", + "8072 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8073 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,1/2*lifetime_care_plan_length)\n", + "8074 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "8075 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8076 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "8077 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,10^procedures_lifetime)\n", + "8078 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Heart_rate,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8079 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Urea_Nitrogen\n", + "8080 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8081 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "8082 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^lifetime_care_plans)\n", + "8083 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_High_Density_Lipoprotein_Cholesterol)\n", + "8084 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "8085 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Diastolic_Blood_Pressure^2/Low_Density_Lipoprotein_Cholesterol\n", + "8086 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "8087 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "8088 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "8089 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=sqrt(healthcare_coverage)/Respiratory_rate\n", + "8090 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8091 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=sqrt(mean_Creatinine)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8092 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-imaging_studies_lifetime\n", + "8093 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,pH_of_Urine_by_Test_strip)\n", + "8094 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8095 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=floor(QOLS)*latitude\n", + "8096 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8097 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8098 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Albumin__Mass_volume__in_Serum,Plasma,mean_Potassium)\n", + "8099 mean_Albumin__Mass_volume__in_Serum,Plasma<=1/2*encounters_count\n", + "8100 mean_Albumin__Mass_volume__in_Serum,Plasma<=Potassium+1\n", + "8101 mean_Albumin__Mass_volume__in_Serum,Plasma<=log(mean_Potassium)/log(10)+Albumin__Mass_volume__in_Serum,Plasma\n", + "8102 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Albumin__Mass_volume__in_Serum,Plasma,10^DALY)\n", + "8103 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "8104 mean_Albumin__Mass_volume__in_Serum,Plasma<=log(Low_Density_Lipoprotein_Cholesterol)/log(10)+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "8105 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8106 mean_Albumin__Mass_volume__in_Serum,Plasma<=floor(sqrt(active_care_plan_length))\n", + "8107 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8108 mean_Albumin__Mass_volume__in_Serum,Plasma<=Globulin__Mass_volume__in_Serum_by_calculation+active_care_plans\n", + "8109 mean_Albumin__Mass_volume__in_Serum,Plasma<=1/2*Albumin__Mass_volume__in_Serum,Plasma*active_care_plans\n", + "8110 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Albumin__Mass_volume__in_Serum,Plasma,1/device_lifetime_length)\n", + "8111 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(pH_of_Urine_by_Test_strip,abs(Albumin__Mass_volume__in_Serum,Plasma))\n", + "8112 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Albumin__Mass_volume__in_Serum,Plasma,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "8113 mean_Albumin__Mass_volume__in_Serum,Plasma<=Sodium/DALY\n", + "8114 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Respiratory_rate,Albumin__Mass_volume__in_Serum,Plasma)\n", + "8115 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "8116 mean_Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "8117 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma\n", + "8118 mean_Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8119 mean_Albumin__Mass_volume__in_Serum,Plasma>=-DALY+Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "8120 mean_Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8121 mean_Albumin__Mass_volume__in_Serum,Plasma>=log(Triglycerides)/(Creatinine*log(10))\n", + "8122 mean_Albumin__Mass_volume__in_Serum,Plasma>=-imaging_studies_lifetime+log(procedures_lifetime)\n", + "8123 mean_Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8124 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8125 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(age,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8126 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8127 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=(Body_Weight-1)/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "8128 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8129 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "8130 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-Potassium\n", + "8131 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "8132 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8133 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8134 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Total_Cholesterol,floor(mean_Protein__Mass_volume__in_Serum,Plasma))\n", + "8135 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "8136 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(latitude,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8137 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,pH_of_Urine_by_Test_strip)\n", + "8138 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(age,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8139 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "8140 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(Estimated_Glomerular_Filtration_Rate+1)^imaging_studies_lifetime\n", + "8141 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8142 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8143 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "8144 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Urea_Nitrogen\n", + "8145 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8146 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Protein__Mass_volume__in_Serum,Plasma-1)\n", + "8147 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=e^Potassium-mean_Diastolic_Blood_Pressure\n", + "8148 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8149 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "8150 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "8151 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8152 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(mean_Sodium)/log(10)\n", + "8153 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8154 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=minimum(healthcare_expenses,mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)\n", + "8155 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8156 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(medications_lifetime,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8157 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8158 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Systolic_Blood_Pressure-procedures_lifetime\n", + "8159 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "8160 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=QOLS+active_conditions\n", + "8161 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(DALY,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8162 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(Respiratory_rate+1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "8163 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "8164 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8165 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8166 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "8167 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=1/2*Respiratory_rate\n", + "8168 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "8169 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Triglycerides,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "8170 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8171 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Calcium*log(mean_Creatinine)\n", + "8172 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8173 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=lifetime_conditions*log(active_conditions)/log(10)\n", + "8174 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Urea_Nitrogen-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "8175 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8176 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Respiratory_rate,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "8177 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+immunizations_lifetime\n", + "8178 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(pH_of_Urine_by_Test_strip,abs(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "8179 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=1/2*DALY+1/2\n", + "8180 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Globulin__Mass_volume__in_Serum_by_calculation-QOLS\n", + "8181 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=1/2*Bilirubin_total__Mass_volume__in_Serum,Plasma*active_care_plans\n", + "8182 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,2*encounters_lifetime_perc_covered)\n", + "8183 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8184 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,procedures_lifetime-1)\n", + "8185 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=ceil(Body_Weight)/Heart_rate\n", + "8186 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,1/device_lifetime_length)\n", + "8187 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", + "8188 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,log(procedures_lifetime))\n", + "8189 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "8190 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8191 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=(Body_Weight-1)/mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "8192 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "8193 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "8194 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8195 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8196 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=e^(-Respiratory_rate)*healthcare_coverage\n", + "8197 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=(procedures_lifetime+1)/mean_Triglycerides\n", + "8198 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "8199 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(DALY,floor(QOLS))\n", + "8200 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "8201 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation\n", + "8202 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses^healthcare_coverage\n", + "8203 mean_Globulin__Mass_volume__in_Serum_by_calculation<=floor(QALY)/lifetime_conditions\n", + "8204 mean_Globulin__Mass_volume__in_Serum_by_calculation<=minimum(healthcare_expenses,log(mean_Platelets____volume__in_Blood_by_Automated_count)/log(10))\n", + "8205 mean_Globulin__Mass_volume__in_Serum_by_calculation<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)/medications_lifetime_perc_covered\n", + "8206 mean_Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "8207 mean_Globulin__Mass_volume__in_Serum_by_calculation>=minimum(device_lifetime_length,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "8208 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Albumin__Mass_volume__in_Serum,Plasma-active_care_plans\n", + "8209 mean_Globulin__Mass_volume__in_Serum_by_calculation>=minimum(Globulin__Mass_volume__in_Serum_by_calculation,Specific_gravity_of_Urine_by_Test_strip)\n", + "8210 mean_Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "8211 mean_Globulin__Mass_volume__in_Serum_by_calculation>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Carbon_Dioxide\n", + "8212 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(1/QOLS)\n", + "8213 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-immunizations_lifetime\n", + "8214 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(procedures_lifetime+1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "8215 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "8216 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "8217 mean_Globulin__Mass_volume__in_Serum_by_calculation>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "8218 mean_Globulin__Mass_volume__in_Serum_by_calculation>=2*procedures_lifetime/Body_Weight\n", + "8219 mean_Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "8220 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(1/Creatinine)\n", + "8221 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "8222 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "8223 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses^healthcare_coverage\n", + "8224 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "8225 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=(QOLS+1)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "8226 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=1/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "8227 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(procedures_lifetime,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "8228 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=minimum(healthcare_expenses,Erythrocytes____volume__in_Blood_by_Automated_count^2)\n", + "8229 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "8230 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,pH_of_Urine_by_Test_strip)\n", + "8231 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=active_condition_length-latitude-1\n", + "8232 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-Urea_Nitrogen+lifetime_conditions\n", + "8233 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=1/2*mean_Urea_Nitrogen/encounters_lifetime_perc_covered\n", + "8234 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "8235 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime_cost\n", + "8236 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Creatinine-1\n", + "8237 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "8238 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime_cost\n", + "8239 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "8240 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "8241 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(Body_Weight,Protein__Mass_volume__in_Serum,Plasma)\n", + "8242 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "8243 mean_Protein__Mass_volume__in_Serum,Plasma<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Protein__Mass_volume__in_Serum,Plasma\n", + "8244 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma+mean_Globulin__Mass_volume__in_Serum_by_calculation+1\n", + "8245 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "8246 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,Protein__Mass_volume__in_Serum,Plasma)\n", + "8247 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "8248 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(Heart_rate,Protein__Mass_volume__in_Serum,Plasma)\n", + "8249 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(Diastolic_Blood_Pressure,Protein__Mass_volume__in_Serum,Plasma)\n", + "8250 mean_Protein__Mass_volume__in_Serum,Plasma<=minimum(Triglycerides,Protein__Mass_volume__in_Serum,Plasma)\n", + "8251 mean_Protein__Mass_volume__in_Serum,Plasma<=Body_Mass_Index*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "8252 mean_Protein__Mass_volume__in_Serum,Plasma<=Heart_rate+medications_active\n", + "8253 mean_Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "8254 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "8255 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(QALY,Protein__Mass_volume__in_Serum,Plasma)\n", + "8256 mean_Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "8257 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(Protein__Mass_volume__in_Serum,Plasma,pH_of_Urine_by_Test_strip)\n", + "8258 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "8259 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(High_Density_Lipoprotein_Cholesterol,Protein__Mass_volume__in_Serum,Plasma)\n", + "8260 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(procedures_lifetime,1/2*mean_Low_Density_Lipoprotein_Cholesterol)\n", + "8261 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(active_condition_length,Protein__Mass_volume__in_Serum,Plasma)\n", + "8262 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Protein__Mass_volume__in_Serum,Plasma)\n", + "8263 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "8264 mean_Protein__Mass_volume__in_Serum,Plasma>=(Heart_rate+1)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "8265 mean_Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "8266 mean_Protein__Mass_volume__in_Serum,Plasma>=-Carbon_Dioxide+procedures_lifetime\n", "Number of dead, alive properties\n", - "1408 1239\n" + "8266 6081\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:85: RuntimeWarning: overflow encountered in double_scalars\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/misc/functional.py:1558: ComplexWarning: Casting complex values to real discards the imaginary part\n", - " x = float(x)\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:187: RuntimeWarning: overflow encountered in double_scalars\n" + "./conjecturing.py:153: RuntimeWarning: overflow encountered in double_scalars\n", + " stack.append(op(left, right))\n", + "./conjecturing.py:255: RuntimeWarning: overflow encountered in double_scalars\n", + " return (lambda x: 10**x), 1\n", + "./conjecturing.py:153: RuntimeWarning: invalid value encountered in double_scalars\n", + " stack.append(op(left, right))\n", + "./conjecturing.py:243: RuntimeWarning: overflow encountered in double_scalars\n", + " return (lambda x: x*x), 1\n", + "./conjecturing.py:108: RuntimeWarning: overflow encountered in exp\n", + " stack.append(op(stack.pop()))\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ + "(covid_death_status)->(active_care_plans_leq_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket_squared)\n", + "(covid_death_status)->(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum_or_Plasma_geq__minus_flooropen_bracket_mean_Glomerular_filtration_rate_1_73_sq_M_predicted_close_bracket_plus_mean_Protein__Mass_volume__in_Serum_or_Plasma)\n", + "(covid_death_status)->(active_conditions_geq__minus_active_care_plans_plus_lifetime_conditions)\n", + "(covid_death_status)->(healthcare_coverage_geq_minimumopen_bracket_procedures_lifetime_cost_or_2_times_encounters_lifetime_payer_coverage_close_bracket)\n", + "(covid_death_status)->(healthcare_expenses_leq_maximumopen_bracket_healthcare_coverage_or_e_to_the_power_active_care_plan_length_close_bracket)\n", + "(covid_death_status)->(healthcare_expenses_geq_sqrtopen_bracket_imaging_studies_lifetime_close_bracket_times_medications_lifetime_cost)\n", + "(covid_death_status)->(healthcare_expenses_geq_medications_lifetime_squared_minus_medications_lifetime_cost)\n", + "(covid_death_status)->(device_lifetime_length_leq_logopen_bracket_medications_active_close_bracket_to_the_power_healthcare_expenses)\n", + "(covid_death_status)->(lifetime_care_plan_length_geq_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket_minus_procedures_lifetime_cost)\n", + "(covid_death_status)->(healthcare_coverage_geq__minus_medications_lifetime_cost_plus_inverse_of_2_times_procedures_lifetime_cost)\n", + "(covid_death_status)->(healthcare_coverage_geq_ceilopen_bracket_encounters_lifetime_payer_coverage_close_bracket_times_immunizations_lifetime)\n", + "(covid_death_status)->((Localized__primary_osteoa)->(encounters_count_geq_minimumopen_bracket_MCV__Entitic_volume__by_Automated_count_or_medications_lifetime_minus_1_close_bracket))\n", + "(covid_death_status)->(active_condition_length_geq_open_bracket_lifetime_condition_length_plus_1_close_bracket_divided_by_encounters_count)\n", + "(covid_death_status)->(latitude_geq_encounters_lifetime_perc_covered_times_flooropen_bracket_active_condition_length_close_bracket)\n", + "(covid_death_status)->(age_geq_flooropen_bracket_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count_close_bracket_times_lifetime_care_plans)\n", + "(covid_death_status)->(medications_lifetime_cost_leq_medications_lifetime_to_the_power_healthcare_expenses)\n", + "(covid_death_status)->(num_allergies_geq_active_care_plans_minus_lifetime_conditions)\n", + "(covid_death_status)->(active_care_plans_leq_ceilopen_bracket_inverse_of_2_times_Microalbumin_Creatinine_Ratio_close_bracket)\n", + "(covid_death_status)->(age_geq_QALY_plus_inverse_of_2_times_medications_active)\n", + "(covid_death_status)->(Creatinine_geq_flooropen_bracket_logopen_bracket_mean_Microalbumin_Creatinine_Ratio_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket)\n", + "(covid_death_status)->(num_allergies_leq_active_care_plan_length_squared_divided_by_procedures_lifetime_cost)\n", + "(covid_death_status)->((Miscarriage_in_first_trim)->(lifetime_care_plans_leq_minimumopen_bracket_Estimated_Glomerular_Filtration_Rate_or_ceilopen_bracket_DALY_close_bracket_close_bracket))\n", + "(covid_death_status)->(active_care_plans_geq_sqrtopen_bracket_encounters_lifetime_perc_covered_close_bracket_divided_by_QOLS)\n", + "(covid_death_status)->(active_care_plan_length_geq_sqrtopen_bracket_medications_lifetime_length_close_bracket_minus_lifetime_condition_length)\n", + "(covid_death_status)->(lifetime_care_plan_length_leq_sqrtopen_bracket_inverse_of_2_close_bracket_times_sqrtopen_bracket_healthcare_expenses_close_bracket)\n", + "(covid_death_status)->(lifetime_care_plan_length_leq_flooropen_bracket_Body_Height_close_bracket_divided_by_encounters_lifetime_perc_covered)\n", + "(covid_death_status)->(lifetime_condition_length_geq_inverse_of_4_times_DALY_squared)\n", + "(covid_death_status)->(lifetime_condition_length_geq_2_times_encounters_count_times_medications_lifetime_perc_covered)\n", + "(covid_death_status)->(~(Recurrent_urinary_tract_i))\n", + "(covid_death_status)->((Chronic_kidney_disease_st)->(longitude_leq_Diastolic_Blood_Pressure_minus_Sodium))\n", + "(covid_death_status)->((Miscarriage_in_first_trim)->(lifetime_condition_length_geq_minimumopen_bracket_Chloride_or_DALY_squared_close_bracket))\n", + "(covid_death_status)->((Opioid_abuse__disorder_)->(Respiratory_rate_geq_flooropen_bracket_inverse_of_2_times_Carbon_Dioxide_close_bracket))\n", + "(Allergy_to_tree_pollen)->(covid_death_status)\n", + "(~(immunizations_lifetime_cost_geq_age_times_immunizations_lifetime_squared))->(covid_death_status)\n", + "(~(encounters_count_geq_minimumopen_bracket_medications_lifetime_or_active_care_plans_squared_close_bracket))->(covid_death_status)\n", + "(Chronic_congestive_heart_)->(covid_death_status)\n", + "(Familial_Alzheimers_dise)->(covid_death_status)\n", + "(Metastasis_from_malignant)->(covid_death_status)\n", + "(~(latitude_geq__minus_Glucose_plus_flooropen_bracket_Chloride_close_bracket))->(covid_death_status)\n", + "(~(medications_active_geq_ceilopen_bracket_Creatinine_close_bracket_minus_procedures_lifetime_cost))->(covid_death_status)\n", + "(~(medications_lifetime_length_leq_10_to_the_power_procedures_lifetime_times_healthcare_coverage))->(covid_death_status)\n", + "(~(Heart_rate_geq_ceilopen_bracket_2_times_Body_Mass_Index_close_bracket))->(covid_death_status)\n", + "(~(longitude_leq__minus_age_plus_encounters_count_minus_1))->(covid_death_status)\n", + "(Mammography__procedure_)->(covid_death_status)\n", + "(Bone_density_scan__proced)->(covid_death_status)\n", + "(Measurement_of_respirator)->(covid_death_status)\n", + "(~(healthcare_expenses_geq_open_bracket_lifetime_condition_length_plus_1_close_bracket_squared))->(covid_death_status)\n", + "(~(active_care_plans_geq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket))->(covid_death_status)\n", + "(Bilateral_tubal_ligation)->(covid_death_status)\n", + "(~(active_care_plan_length_geq_sqrtopen_bracket_medications_lifetime_dispenses_close_bracket_times_medications_lifetime_perc_covered))->(covid_death_status)\n", + "((Neoplasm_of_prostate)&(Alcoholism))->(covid_death_status)\n", + "(~(healthcare_coverage_leq_encounters_lifetime_payer_coverage_times_flooropen_bracket_High_Density_Lipoprotein_Cholesterol_close_bracket))->(covid_death_status)\n", + "(Estimated_Glomerular_Filtration_Rate_leq_minimumopen_bracket_healthcare_expenses_or_Erythrocytes____volume__in_Blood_by_Automated_count_squared_close_bracket)->(covid_death_status)\n", + "(mean_Carbon_Dioxide_leq_minimumopen_bracket_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count_or_sqrtopen_bracket_Protein__Mass_volume__in_Urine_by_Test_strip_close_bracket_close_bracket)->(covid_death_status)\n", + "(~(encounters_count_geq_minimumopen_bracket_active_care_plan_length_or_inverse_of_2_times_medications_lifetime_close_bracket))->(covid_death_status)\n", + "(~(healthcare_expenses_geq_sqrtopen_bracket_device_lifetime_length_close_bracket_times_medications_lifetime_cost))->(covid_death_status)\n", + "((Chronic_intractable_migra)^(Impacted_molars))->(covid_death_status)\n", + "(~(healthcare_coverage_geq_encounters_count_squared_minus_procedures_lifetime_cost))->(covid_death_status)\n", + "(~(active_care_plan_length_leq_lifetime_conditions_squared_plus_latitude))->(covid_death_status)\n", + "(~(latitude_leq_MCHC__Mass_volume__by_Automated_count_plus_flooropen_bracket_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count_close_bracket))->(covid_death_status)\n", + "(~(latitude_leq__minus_QALY_plus_flooropen_bracket_Triglycerides_close_bracket))->(covid_death_status)\n", + "((Colonoscopy)&(Miscarriage_in_first_trim))->(covid_death_status)\n", + "((Localized__primary_osteoa)&(Chronic_pain))->(covid_death_status)\n", + "(~(latitude_geq__minus_Glucose_plus_flooropen_bracket_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket))->(covid_death_status)\n", + "(~(latitude_geq_sqrtopen_bracket_medications_lifetime_dispenses_close_bracket_minus_DALY))->(covid_death_status)\n", + "(~(active_care_plans_geq_flooropen_bracket_inverse_of_2_times_medications_active_close_bracket))->(covid_death_status)\n", + "(~(lifetime_care_plans_leq_ceilopen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket_plus_procedures_lifetime_cost))->(covid_death_status)\n", + "(~(lifetime_care_plans_geq_ceilopen_bracket_logopen_bracket_mean_Microalbumin_Creatinine_Ratio_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket))->(covid_death_status)\n", + "(~(active_care_plan_length_geq_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket_plus_longitude))->(covid_death_status)\n", + "((Seizure_disorder)&(Neoplasm_of_prostate))->(covid_death_status)\n", + "((Osteoarthritis_of_hip)&(Malignant_neoplasm_of_bre))->(covid_death_status)\n", + "((Physical_findings_of_ProstateNormal_size_prostate)&(Hypertension))->(covid_death_status)\n", "Property Conjectures\n", - "6\n", - "(covid_death_status)->(healthcare_coverage>=healthcare_expenses*medications_lifetime_perc_covered/active_condition_length)\n", - "healthcare_coverage_geq_healthcare_expenses_times_medications_lifetime_perc_covered_divided_by_active_condition_length\n", - "0.9719121683440073\n", - "(covid_death_status)->(healthcare_expenses>=medications_lifetime_length^2/medications_lifetime^2)\n", - "healthcare_expenses_geq_medications_lifetime_length_squared_divided_by_medications_lifetime_squared\n", - "0.9774005866230706\n", - "(covid_death_status)->(healthcare_expenses<=1/2*encounters_lifetime_total_cost*healthcare_coverage)\n", - "healthcare_expenses_leq_inverse_of_2_times_encounters_lifetime_total_cost_times_healthcare_coverage\n", - "0.986516000379831\n", - "(covid_death_status)->(healthcare_coverage<=10^active_conditions/active_care_plans)\n", - "healthcare_coverage_leq_10_to_the_power_active_conditions_divided_by_active_care_plans\n", - "0.9712770216172938\n", - "(covid_death_status)->(active_condition_length>=1/2*encounters_lifetime_perc_covered*lifetime_care_plan_length)\n", - "active_condition_length_geq_inverse_of_2_times_encounters_lifetime_perc_covered_times_lifetime_care_plan_length\n", - "0.948779260005034\n", - "(covid_death_status)->(latitude>=10^encounters_lifetime_perc_covered*active_conditions)\n", - "latitude_geq_10_to_the_power_encounters_lifetime_perc_covered_times_active_conditions\n", - "0.8520698051948052\n", - "6\n", - "(pneumococcal_polysacchari)->(covid_death_status)\n", - "pneumococcal_polysacchari\n", - "0.08464328899637243\n", - "(Alcoholism)->(covid_death_status)\n", - "Alcoholism\n", - "0.09344314222363002\n", - "(Hyperlipidemia)->(covid_death_status)\n", - "Hyperlipidemia\n", - "0.1208931873133267\n", - "(Osteoporosis__disorder_)->(covid_death_status)\n", - "Osteoporosis__disorder_\n", - "0.16374889478337754\n", - "(healthcare_coverage<=minimum(medications_lifetime_cost,healthcare_expenses/Body_temperature))->(covid_death_status)\n", - "healthcare_coverage_leq_minimumopen_bracket_medications_lifetime_cost_or_healthcare_expenses_divided_by_Body_temperature_close_bracket\n", - "0.06788637457871931\n", - "(~(healthcare_expenses<=1/16*longitude^4))->(covid_death_status)\n", - "~healthcare_expenses_leq_inverse_of_16_times_longitude_to_the_power_4\n", - "0.16090897149612504\n" + "32\n", + "(covid_death_status)->(active_care_plans<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^2)\n", + "active_care_plans_leq_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket_squared\n", + "0.790625\n", + "(covid_death_status)->(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-floor(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)+mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum_or_Plasma_geq__minus_flooropen_bracket_mean_Glomerular_filtration_rate_1_73_sq_M_predicted_close_bracket_plus_mean_Protein__Mass_volume__in_Serum_or_Plasma\n", + "0.9315068493150684\n", + "(covid_death_status)->(active_conditions>=-active_care_plans+lifetime_conditions)\n", + "active_conditions_geq__minus_active_care_plans_plus_lifetime_conditions\n", + "0.9797747055811572\n", + "(covid_death_status)->(healthcare_coverage>=minimum(procedures_lifetime_cost,2*encounters_lifetime_payer_coverage))\n", + "healthcare_coverage_geq_minimumopen_bracket_procedures_lifetime_cost_or_2_times_encounters_lifetime_payer_coverage_close_bracket\n", + "0.8739495798319328\n", + "(covid_death_status)->(healthcare_expenses<=maximum(healthcare_coverage,e^active_care_plan_length))\n", + "healthcare_expenses_leq_maximumopen_bracket_healthcare_coverage_or_e_to_the_power_active_care_plan_length_close_bracket\n", + "0.9842532042898248\n", + "(covid_death_status)->(healthcare_expenses>=sqrt(imaging_studies_lifetime)*medications_lifetime_cost)\n", + "healthcare_expenses_geq_sqrtopen_bracket_imaging_studies_lifetime_close_bracket_times_medications_lifetime_cost\n", + "0.8064516129032258\n", + "(covid_death_status)->(healthcare_expenses>=medications_lifetime^2-medications_lifetime_cost)\n", + "healthcare_expenses_geq_medications_lifetime_squared_minus_medications_lifetime_cost\n", + "0.8225806451612904\n", + "(covid_death_status)->(device_lifetime_length<=log(medications_active)^healthcare_expenses)\n", + "device_lifetime_length_leq_logopen_bracket_medications_active_close_bracket_to_the_power_healthcare_expenses\n", + "0.9091967403958091\n", + "(covid_death_status)->(lifetime_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-procedures_lifetime_cost)\n", + "lifetime_care_plan_length_geq_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket_minus_procedures_lifetime_cost\n", + "0.9777525539160046\n", + "(covid_death_status)->(healthcare_coverage>=-medications_lifetime_cost+1/2*procedures_lifetime_cost)\n", + "healthcare_coverage_geq__minus_medications_lifetime_cost_plus_inverse_of_2_times_procedures_lifetime_cost\n", + "0.9834610730133119\n", + "(covid_death_status)->(healthcare_coverage>=ceil(encounters_lifetime_payer_coverage)*immunizations_lifetime)\n", + "healthcare_coverage_geq_ceilopen_bracket_encounters_lifetime_payer_coverage_close_bracket_times_immunizations_lifetime\n", + "0.9089147286821705\n", + "(covid_death_status)->((Localized__primary_osteoa)->(encounters_count>=minimum(MCV__Entitic_volume__by_Automated_count,medications_lifetime-1)))\n", + "Localized__primary_osteoa->encounters_count_geq_minimumopen_bracket_MCV__Entitic_volume__by_Automated_count_or_medications_lifetime_minus_1_close_bracket\n", + "0.8282009724473258\n", + "(covid_death_status)->(active_condition_length>=(lifetime_condition_length+1)/encounters_count)\n", + "active_condition_length_geq_open_bracket_lifetime_condition_length_plus_1_close_bracket_divided_by_encounters_count\n", + "0.9919627069602958\n", + "(covid_death_status)->(latitude>=encounters_lifetime_perc_covered*floor(active_condition_length))\n", + "latitude_geq_encounters_lifetime_perc_covered_times_flooropen_bracket_active_condition_length_close_bracket\n", + "0.7931034482758621\n", + "(covid_death_status)->(age>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*lifetime_care_plans)\n", + "age_geq_flooropen_bracket_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count_close_bracket_times_lifetime_care_plans\n", + "0.9454374412041392\n", + "(covid_death_status)->(medications_lifetime_cost<=medications_lifetime^healthcare_expenses)\n", + "medications_lifetime_cost_leq_medications_lifetime_to_the_power_healthcare_expenses\n", + "0.9780263683579704\n", + "(covid_death_status)->(num_allergies>=active_care_plans-lifetime_conditions)\n", + "num_allergies_geq_active_care_plans_minus_lifetime_conditions\n", + "0.9829837752275425\n", + "(covid_death_status)->(active_care_plans<=ceil(1/2*Microalbumin_Creatinine_Ratio))\n", + "active_care_plans_leq_ceilopen_bracket_inverse_of_2_times_Microalbumin_Creatinine_Ratio_close_bracket\n", + "0.9292604501607717\n", + "(covid_death_status)->(age>=QALY+1/2*medications_active)\n", + "age_geq_QALY_plus_inverse_of_2_times_medications_active\n", + "0.8883357041251778\n", + "(covid_death_status)->(Creatinine>=floor(log(mean_Microalbumin_Creatinine_Ratio)/log(10)))\n", + "Creatinine_geq_flooropen_bracket_logopen_bracket_mean_Microalbumin_Creatinine_Ratio_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket\n", + "0.8228882833787466\n", + "(covid_death_status)->(num_allergies<=active_care_plan_length^2/procedures_lifetime_cost)\n", + "num_allergies_leq_active_care_plan_length_squared_divided_by_procedures_lifetime_cost\n", + "0.969217238346526\n", + "(covid_death_status)->((Miscarriage_in_first_trim)->(lifetime_care_plans<=minimum(Estimated_Glomerular_Filtration_Rate,ceil(DALY))))\n", + "Miscarriage_in_first_trim->lifetime_care_plans_leq_minimumopen_bracket_Estimated_Glomerular_Filtration_Rate_or_ceilopen_bracket_DALY_close_bracket_close_bracket\n", + "0.9644886363636364\n", + "(covid_death_status)->(active_care_plans>=sqrt(encounters_lifetime_perc_covered)/QOLS)\n", + "active_care_plans_geq_sqrtopen_bracket_encounters_lifetime_perc_covered_close_bracket_divided_by_QOLS\n", + "0.9685200637184253\n", + "(covid_death_status)->(active_care_plan_length>=sqrt(medications_lifetime_length)-lifetime_condition_length)\n", + "active_care_plan_length_geq_sqrtopen_bracket_medications_lifetime_length_close_bracket_minus_lifetime_condition_length\n", + "0.9890581717451523\n", + "(covid_death_status)->(lifetime_care_plan_length<=sqrt(1/2)*sqrt(healthcare_expenses))\n", + "lifetime_care_plan_length_leq_sqrtopen_bracket_inverse_of_2_close_bracket_times_sqrtopen_bracket_healthcare_expenses_close_bracket\n", + "0.8875\n", + "(covid_death_status)->(lifetime_care_plan_length<=floor(Body_Height)/encounters_lifetime_perc_covered)\n", + "lifetime_care_plan_length_leq_flooropen_bracket_Body_Height_close_bracket_divided_by_encounters_lifetime_perc_covered\n", + "0.8503937007874016\n", + "(covid_death_status)->(lifetime_condition_length>=1/4*DALY^2)\n", + "lifetime_condition_length_geq_inverse_of_4_times_DALY_squared\n", + "0.9444043321299639\n", + "(covid_death_status)->(lifetime_condition_length>=2*encounters_count*medications_lifetime_perc_covered)\n", + "lifetime_condition_length_geq_2_times_encounters_count_times_medications_lifetime_perc_covered\n", + "0.9178356713426854\n", + "(covid_death_status)->(~(Recurrent_urinary_tract_i))\n", + "~Recurrent_urinary_tract_i\n", + "0.9111111111111111\n", + "(covid_death_status)->((Chronic_kidney_disease_st)->(longitude<=Diastolic_Blood_Pressure-Sodium))\n", + "Chronic_kidney_disease_st->longitude_leq_Diastolic_Blood_Pressure_minus_Sodium\n", + "0.9632721202003339\n", + "(covid_death_status)->((Miscarriage_in_first_trim)->(lifetime_condition_length>=minimum(Chloride,DALY^2)))\n", + "Miscarriage_in_first_trim->lifetime_condition_length_geq_minimumopen_bracket_Chloride_or_DALY_squared_close_bracket\n", + "0.9562693498452013\n", + "(covid_death_status)->((Opioid_abuse__disorder_)->(Respiratory_rate>=floor(1/2*Carbon_Dioxide)))\n", + "Opioid_abuse__disorder_->Respiratory_rate_geq_flooropen_bracket_inverse_of_2_times_Carbon_Dioxide_close_bracket\n", + "0.854586129753915\n", + "40\n", + "(Allergy_to_tree_pollen)->(covid_death_status)\n", + "Allergy_to_tree_pollen\n", + "0.03768967205090553\n", + "(~(immunizations_lifetime_cost>=age*immunizations_lifetime^2))->(covid_death_status)\n", + "~immunizations_lifetime_cost_geq_age_times_immunizations_lifetime_squared\n", + "0.21021431828545373\n", + "(~(encounters_count>=minimum(medications_lifetime,active_care_plans^2)))->(covid_death_status)\n", + "~encounters_count_geq_minimumopen_bracket_medications_lifetime_or_active_care_plans_squared_close_bracket\n", + "0.07096774193548387\n", + "(Chronic_congestive_heart_)->(covid_death_status)\n", + "Chronic_congestive_heart_\n", + "0.31528662420382164\n", + "(Familial_Alzheimers_dise)->(covid_death_status)\n", + "Familial_Alzheimers_dise\n", + "0.12056737588652482\n", + "(Metastasis_from_malignant)->(covid_death_status)\n", + "Metastasis_from_malignant\n", + "0.21285140562248997\n", + "(~(latitude>=-Glucose+floor(Chloride)))->(covid_death_status)\n", + "~latitude_geq__minus_Glucose_plus_flooropen_bracket_Chloride_close_bracket\n", + "0.11481481481481481\n", + "(~(medications_active>=ceil(Creatinine)-procedures_lifetime_cost))->(covid_death_status)\n", + "~medications_active_geq_ceilopen_bracket_Creatinine_close_bracket_minus_procedures_lifetime_cost\n", + "0.057467532467532466\n", + "(~(medications_lifetime_length<=10^procedures_lifetime*healthcare_coverage))->(covid_death_status)\n", + "~medications_lifetime_length_leq_10_to_the_power_procedures_lifetime_times_healthcare_coverage\n", + "0.04428697962798937\n", + "(~(Heart_rate>=ceil(2*Body_Mass_Index)))->(covid_death_status)\n", + "~Heart_rate_geq_ceilopen_bracket_2_times_Body_Mass_Index_close_bracket\n", + "0.0880281690140845\n", + "(~(longitude<=-age+encounters_count-1))->(covid_death_status)\n", + "~longitude_leq__minus_age_plus_encounters_count_minus_1\n", + "0.11811023622047244\n", + "(Mammography__procedure_)->(covid_death_status)\n", + "Mammography__procedure_\n", + "0.18997361477572558\n", + "(Bone_density_scan__proced)->(covid_death_status)\n", + "Bone_density_scan__proced\n", + "0.2155576382380506\n", + "(Measurement_of_respirator)->(covid_death_status)\n", + "Measurement_of_respirator\n", + "0.08195121951219513\n", + "(~(healthcare_expenses>=(lifetime_condition_length+1)^2))->(covid_death_status)\n", + "~healthcare_expenses_geq_open_bracket_lifetime_condition_length_plus_1_close_bracket_squared\n", + "0.17801047120418848\n", + "(~(active_care_plans>=floor(Globulin__Mass_volume__in_Serum_by_calculation)))->(covid_death_status)\n", + "~active_care_plans_geq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket\n", + "0.10319410319410319\n", + "(Bilateral_tubal_ligation)->(covid_death_status)\n", + "Bilateral_tubal_ligation\n", + "0.008264462809917356\n", + "(~(active_care_plan_length>=sqrt(medications_lifetime_dispenses)*medications_lifetime_perc_covered))->(covid_death_status)\n", + "~active_care_plan_length_geq_sqrtopen_bracket_medications_lifetime_dispenses_close_bracket_times_medications_lifetime_perc_covered\n", + "0.06342494714587738\n", + "((Neoplasm_of_prostate)&(Alcoholism))->(covid_death_status)\n", + "Neoplasm_of_prostate&Alcoholism\n", + "0.19888475836431227\n", + "(~(healthcare_coverage<=encounters_lifetime_payer_coverage*floor(High_Density_Lipoprotein_Cholesterol)))->(covid_death_status)\n", + "~healthcare_coverage_leq_encounters_lifetime_payer_coverage_times_flooropen_bracket_High_Density_Lipoprotein_Cholesterol_close_bracket\n", + "0.13573883161512026\n", + "(Estimated_Glomerular_Filtration_Rate<=minimum(healthcare_expenses,Erythrocytes____volume__in_Blood_by_Automated_count^2))->(covid_death_status)\n", + "Estimated_Glomerular_Filtration_Rate_leq_minimumopen_bracket_healthcare_expenses_or_Erythrocytes____volume__in_Blood_by_Automated_count_squared_close_bracket\n", + "0.19852941176470587\n", + "(mean_Carbon_Dioxide<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,sqrt(Protein__Mass_volume__in_Urine_by_Test_strip)))->(covid_death_status)\n", + "mean_Carbon_Dioxide_leq_minimumopen_bracket_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count_or_sqrtopen_bracket_Protein__Mass_volume__in_Urine_by_Test_strip_close_bracket_close_bracket\n", + "0.25\n", + "(~(encounters_count>=minimum(active_care_plan_length,1/2*medications_lifetime)))->(covid_death_status)\n", + "~encounters_count_geq_minimumopen_bracket_active_care_plan_length_or_inverse_of_2_times_medications_lifetime_close_bracket\n", + "0.15019762845849802\n", + "(~(healthcare_expenses>=sqrt(device_lifetime_length)*medications_lifetime_cost))->(covid_death_status)\n", + "~healthcare_expenses_geq_sqrtopen_bracket_device_lifetime_length_close_bracket_times_medications_lifetime_cost\n", + "0.18559556786703602\n", + "((Chronic_intractable_migra)^(Impacted_molars))->(covid_death_status)\n", + "Chronic_intractable_migra^Impacted_molars\n", + "0.08174386920980926\n", + "(~(healthcare_coverage>=encounters_count^2-procedures_lifetime_cost))->(covid_death_status)\n", + "~healthcare_coverage_geq_encounters_count_squared_minus_procedures_lifetime_cost\n", + "0.091350531107739\n", + "(~(active_care_plan_length<=lifetime_conditions^2+latitude))->(covid_death_status)\n", + "~active_care_plan_length_leq_lifetime_conditions_squared_plus_latitude\n", + "0.10927505330490406\n", + "(~(latitude<=MCHC__Mass_volume__by_Automated_count+floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)))->(covid_death_status)\n", + "~latitude_leq_MCHC__Mass_volume__by_Automated_count_plus_flooropen_bracket_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count_close_bracket\n", + "0.09905660377358491\n", + "(~(latitude<=-QALY+floor(Triglycerides)))->(covid_death_status)\n", + "~latitude_leq__minus_QALY_plus_flooropen_bracket_Triglycerides_close_bracket\n", + "0.21406003159557663\n", + "((Colonoscopy)&(Miscarriage_in_first_trim))->(covid_death_status)\n", + "Colonoscopy&Miscarriage_in_first_trim\n", + "0.12546468401486988\n", + "((Localized__primary_osteoa)&(Chronic_pain))->(covid_death_status)\n", + "Localized__primary_osteoa&Chronic_pain\n", + "0.08653846153846154\n", + "(~(latitude>=-Glucose+floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)))->(covid_death_status)\n", + "~latitude_geq__minus_Glucose_plus_flooropen_bracket_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket\n", + "0.16204217536071033\n", + "(~(latitude>=sqrt(medications_lifetime_dispenses)-DALY))->(covid_death_status)\n", + "~latitude_geq_sqrtopen_bracket_medications_lifetime_dispenses_close_bracket_minus_DALY\n", + "0.1853932584269663\n", + "(~(active_care_plans>=floor(1/2*medications_active)))->(covid_death_status)\n", + "~active_care_plans_geq_flooropen_bracket_inverse_of_2_times_medications_active_close_bracket\n", + "0.20444104134762633\n", + "(~(lifetime_care_plans<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+procedures_lifetime_cost))->(covid_death_status)\n", + "~lifetime_care_plans_leq_ceilopen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket_plus_procedures_lifetime_cost\n", + "0.14136125654450263\n", + "(~(lifetime_care_plans>=ceil(log(mean_Microalbumin_Creatinine_Ratio)/log(10))))->(covid_death_status)\n", + "~lifetime_care_plans_geq_ceilopen_bracket_logopen_bracket_mean_Microalbumin_Creatinine_Ratio_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket\n", + "0.12007062978222484\n", + "(~(active_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)+longitude))->(covid_death_status)\n", + "~active_care_plan_length_geq_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket_plus_longitude\n", + "0.24666666666666667\n", + "((Seizure_disorder)&(Neoplasm_of_prostate))->(covid_death_status)\n", + "Seizure_disorder&Neoplasm_of_prostate\n", + "0.2012987012987013\n", + "((Osteoarthritis_of_hip)&(Malignant_neoplasm_of_bre))->(covid_death_status)\n", + "Osteoarthritis_of_hip&Malignant_neoplasm_of_bre\n", + "0.14457831325301204\n", + "((Physical_findings_of_ProstateNormal_size_prostate)&(Hypertension))->(covid_death_status)\n", + "Physical_findings_of_ProstateNormal_size_prostate&Hypertension\n", + "0.2260596546310832\n" ] } ], @@ -5797,7 +17984,6 @@ "covid_invariants = invariants\n", "\n", "\n", - "set_random_seed(12345)\n", "covid_dead_properties = []\n", "covid_alive_properties = []\n", "use_operators = { '-1', '+1', '*2', '/2', '^2', '-()', '1/', 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil', 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^'}\n", @@ -5808,86 +17994,87 @@ "for inv in covid_invariants:\n", " #print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_alive, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_alive_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_alive, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_alive_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_alive, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_alive_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_alive, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_alive_properties += conjs\n", "count = 0\n", - "for conj in covid_alive_properties:\n", - " count +=1\n", - " print(count, convert_name_back(conj.__name__))\n", + "#for conj in covid_alive_properties:\n", + "# count +=1\n", + "# print(count, convert_name_back(conj.__name__))\n", "\n", "# dead patients\n", "print(\"Dead\")\n", "for inv in covid_invariants:\n", " #print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_dead, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False) \n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_dead_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_dead, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_dead_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_dead, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips) \n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_dead_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_dead, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_dead_properties += conjs\n", "count = 0\n", - "for conj in covid_dead_properties:\n", - " count +=1\n", - " print(count, convert_name_back(conj.__name__))\n", + "#for conj in covid_dead_properties:\n", + "# count +=1\n", + "# print(count, convert_name_back(conj.__name__))\n", "print(\"Number of dead, alive properties\")\n", "print(len(covid_dead_properties), len(covid_alive_properties))\n", "\n", - "load(\"conjecturing.py\")\n", "\n", - "set_random_seed(12345)\n", "all_covid_properties = properties + covid_alive_properties + covid_dead_properties\n", "all_covid_properties.append(Patient.covid_death_status)\n", "\n", "target_prop = len(all_covid_properties)-1\n", - "for i in range(100):\n", - " alive_conjs = propertyBasedConjecture(objects=sample(covid_alive,10)+sample(covid_dead,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=False)\n", - "\n", - " dead_conjs = propertyBasedConjecture(objects=sample(covid_alive,10)+sample(covid_dead,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=True)\n", + "alive_conjs = propertyBasedConjecture(objects=train_alive+train_dead, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=False,\n", + " skips=myskips)\n", + "\n", + "dead_conjs = propertyBasedConjecture(objects=train_alive+train_dead, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=True,\n", + " skips=myskips)\n", "count = 0\n", "for p in alive_conjs:\n", " #print(count, \".\", convert_name_back(p.__name__))\n", @@ -5897,7 +18084,6 @@ " count += 1\n", "\n", "\n", - "load(\"prop_conjecturing.py\")\n", "print(\"Property Conjectures\")\n", "print(len(alive_conjs))\n", "for p in alive_conjs:\n", @@ -5905,7 +18091,7 @@ " my_conclusion = get_conclusion(p)\n", " num_false = 0\n", " num_alive = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_dead+test_alive:\n", " try: # deal with missing values\n", " if my_conclusion(patient) == False:\n", " num_false += 1\n", @@ -5913,14 +18099,14 @@ " num_alive += 1\n", " except:\n", " continue\n", - " print(num_alive/float(num_false))\n", + " print(num_false, num_alive/float(num_false))\n", "print(len(dead_conjs))\n", "for p in dead_conjs:\n", " print(convert_name_back(p.__name__))\n", " my_premise = get_premise(p)\n", " num_true = 0\n", " num_dead = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_dead+test_alive:\n", " try: # deal with missing values\n", " if my_premise(patient) == True:\n", " num_true += 1\n", @@ -5928,7 +18114,7 @@ " num_dead += 1\n", " except:\n", " continue\n", - " print(num_dead/float(num_true))" + " print(num_true, num_dead/float(num_true))" ] }, { @@ -5940,7 +18126,7 @@ }, { "cell_type": "code", - "execution_count": 111, + "execution_count": 72, "metadata": {}, "outputs": [ { @@ -5952,18 +18138,24 @@ } ], "source": [ - "p_examples_list = list(p_examples)\n", - "\n", - "# only pick people with covid\n", "covid_not_icu = [patient for patient in p_examples_list if (patient.icu_status() and patient.covid_status())]\n", "covid_icu= [patient for patient in p_examples_list if (not patient.icu_status() and patient.covid_status())]\n", "\n", - "print(len(covid_not_icu), len(covid_icu))" + "print(len(covid_not_icu), len(covid_icu))\n", + "\n", + "np.random.shuffle(covid_not_icu)\n", + "np.random.shuffle(covid_icu)\n", + "\n", + "train_not_icu = covid_not_icu[0:100]\n", + "train_icu = covid_icu[0:100]\n", + "\n", + "test_not_icu = covid_not_icu[100:]\n", + "test_icu = covid_icu[100:]" ] }, { "cell_type": "code", - "execution_count": 112, + "execution_count": 73, "metadata": {}, "outputs": [ { @@ -5971,2714 +18163,12529 @@ "output_type": "stream", "text": [ "ICU\n", - "1 healthcare_expenses<=1/2*(healthcare_coverage-1)^2\n", - "2 healthcare_expenses<=1/16*longitude^4\n", - "3 healthcare_expenses<=active_condition_length*healthcare_coverage/num_allergies\n", - "4 healthcare_expenses<=healthcare_coverage*lifetime_care_plan_length/medications_lifetime_perc_covered\n", - "5 healthcare_expenses<=2*(encounters_lifetime_total_cost-1)^2\n", - "6 healthcare_expenses<=10^active_care_plan_length/DALY\n", - "7 healthcare_expenses<=4*e^lifetime_condition_length\n", - "8 healthcare_expenses<=10^(latitude/medications_active)\n", - "9 healthcare_expenses<=10^abs(log(procedures_lifetime_cost))\n", - "10 healthcare_expenses>=10^(latitude/lifetime_condition_length)\n", - "11 healthcare_expenses>=2*10^(1/encounters_lifetime_perc_covered)\n", - "12 healthcare_expenses>=log(encounters_count)*medications_lifetime_cost/log(10)\n", - "13 healthcare_expenses>=(2*encounters_lifetime_perc_covered)^latitude\n", - "14 healthcare_expenses>=(medications_lifetime_cost+1)/encounters_lifetime_perc_covered\n", - "15 healthcare_expenses>=(age+1)*procedures_lifetime_cost\n", - "16 healthcare_expenses>=10^(active_conditions/medications_active)\n", - "17 healthcare_expenses>=10^active_care_plans-medications_lifetime_cost\n", - "18 healthcare_expenses>=2*age*encounters_lifetime_total_cost\n", - "19 healthcare_expenses>=10^(-active_care_plans+active_conditions)\n", - "20 healthcare_expenses<=(encounters_lifetime_payer_coverage-1)*healthcare_coverage\n", - "21 healthcare_expenses<=10^sqrt(latitude-1)\n", - "22 healthcare_expenses<=10^(2*lifetime_conditions+2)\n", - "23 healthcare_expenses<=(QALY+1)^4\n", - "24 healthcare_expenses<=10^(medications_lifetime_dispenses/immunizations_lifetime)\n", - "25 healthcare_expenses<=(encounters_lifetime_payer_coverage^2)^lifetime_care_plans\n", - "26 healthcare_expenses<=e^(medications_lifetime/medications_lifetime_perc_covered)\n", - "27 healthcare_expenses<=e^(-DALY+QALY)\n", - "28 healthcare_expenses>=10^(2*e^QOLS)\n", - "29 healthcare_expenses>=2*QALY*healthcare_coverage\n", - "30 healthcare_expenses>=(active_care_plan_length-medications_lifetime_dispenses)^2\n", - "31 healthcare_expenses>=2*active_condition_length^lifetime_care_plans\n", - "32 healthcare_expenses>=(1/2*longitude)^lifetime_conditions\n", - "33 healthcare_expenses>=active_conditions^2*encounters_count^2\n", - "34 healthcare_expenses>=1/2*healthcare_coverage*immunizations_lifetime_cost\n", - "35 healthcare_expenses>=2*QALY*encounters_lifetime_total_cost\n", - "36 healthcare_expenses>=(QALY-medications_lifetime_dispenses)^2\n", - "37 healthcare_expenses>=e^(healthcare_coverage/encounters_lifetime_total_cost)\n", - "38 healthcare_expenses<=10^e^(e^QOLS)\n", - "39 healthcare_expenses<=healthcare_coverage*latitude/medications_lifetime_perc_covered\n", - "40 healthcare_expenses<=10^lifetime_condition_length/latitude\n", - "41 healthcare_expenses<=e^QALY/healthcare_coverage\n", - "42 healthcare_expenses<=healthcare_coverage^2/medications_lifetime\n", - "43 healthcare_expenses<=encounters_lifetime_total_cost^(1/medications_lifetime_perc_covered)\n", - "44 healthcare_expenses<=10^medications_lifetime/encounters_lifetime_perc_covered\n", - "45 healthcare_expenses>=e^(-age+latitude)\n", - "46 healthcare_expenses>=healthcare_coverage^(medications_lifetime_perc_covered+1)\n", - "47 healthcare_expenses>=encounters_lifetime_payer_coverage^(log(latitude)/log(10))\n", - "48 healthcare_expenses>=10^log(immunizations_lifetime_cost)\n", - "49 healthcare_expenses>=QALY^2*immunizations_lifetime_cost\n", - "50 healthcare_expenses>=active_condition_length^2+procedures_lifetime_cost\n", - "51 healthcare_expenses>=10^(medications_lifetime_length/encounters_lifetime_payer_coverage)\n", - "52 healthcare_expenses>=encounters_lifetime_perc_covered^2*medications_lifetime_dispenses^2\n", - "53 healthcare_expenses>=procedures_lifetime^e^immunizations_lifetime\n", - "54 healthcare_expenses>=10^(active_conditions-procedures_lifetime)\n", - "55 healthcare_coverage<=healthcare_expenses/medications_lifetime_dispenses+medications_lifetime_cost\n", - "56 healthcare_coverage<=(encounters_lifetime_total_cost-1)*age\n", - "57 healthcare_coverage<=encounters_lifetime_total_cost^(encounters_lifetime_perc_covered+1)\n", - "58 healthcare_coverage<=10^(encounters_lifetime_total_cost/age)\n", - "59 healthcare_coverage<=healthcare_expenses/active_conditions+encounters_lifetime_total_cost\n", - "60 healthcare_coverage<=e^active_conditions/medications_lifetime_perc_covered\n", - "61 healthcare_coverage<=healthcare_expenses^encounters_lifetime_perc_covered*encounters_lifetime_payer_coverage\n", - "62 healthcare_coverage<=10^encounters_count/medications_lifetime\n", - "63 healthcare_coverage<=(log(medications_lifetime_length)/log(10))^QALY\n", - "64 healthcare_coverage<=healthcare_expenses/(active_conditions*device_lifetime_length)\n", - "65 healthcare_coverage>=active_conditions\n", - "66 healthcare_coverage>=encounters_lifetime_total_cost*sqrt(immunizations_lifetime)\n", - "67 healthcare_coverage>=lifetime_condition_length^(QOLS+1)\n", - "68 healthcare_coverage>=sqrt(healthcare_expenses)-encounters_lifetime_total_cost\n", - "69 healthcare_coverage>=minimum(immunizations_lifetime_cost,Diastolic_Blood_Pressure)^2\n", - "70 healthcare_coverage>=sqrt(healthcare_expenses)-medications_lifetime_cost\n", - "71 healthcare_coverage>=encounters_lifetime_total_cost-medications_lifetime_dispenses+1\n", - "72 healthcare_coverage>=log(10)*longitude/log(lifetime_care_plan_length)\n", - "73 healthcare_coverage>=2*medications_lifetime_perc_covered*procedures_lifetime_cost\n", - "74 healthcare_coverage>=10^lifetime_care_plans*lifetime_conditions\n", - "75 healthcare_coverage<=10^log(-longitude)\n", - "76 healthcare_coverage<=2*medications_lifetime_cost-procedures_lifetime_cost\n", - "77 healthcare_coverage<=sqrt(healthcare_expenses)*latitude\n", - "78 healthcare_coverage<=(active_care_plan_length-1)^encounters_count\n", - "79 healthcare_coverage<=encounters_lifetime_payer_coverage^e^encounters_lifetime_perc_covered\n", - "80 healthcare_coverage<=(immunizations_lifetime_cost-medications_lifetime_dispenses)^2\n", - "81 healthcare_coverage<=e^(QALY/lifetime_care_plans)\n", - "82 healthcare_coverage<=encounters_lifetime_perc_covered*healthcare_expenses/DALY\n", - "83 healthcare_coverage<=(lifetime_condition_length-procedures_lifetime_cost)^2\n", - "84 healthcare_coverage>=2*minimum(medications_lifetime_length,Creatinine)\n", - "85 healthcare_coverage>=-sqrt(healthcare_expenses)+medications_lifetime_dispenses\n", - "86 healthcare_coverage>=e^(sqrt(QALY)+1)\n", - "87 healthcare_coverage>=-QALY^2+procedures_lifetime_cost\n", - "88 healthcare_coverage>=1/2*e^(1/DALY)\n", - "89 healthcare_coverage>=e^active_conditions/QALY\n", - "90 healthcare_coverage>=lifetime_condition_length^2/encounters_count\n", - "91 healthcare_coverage>=longitude^2-medications_lifetime_cost\n", - "92 healthcare_coverage>=2*encounters_lifetime_payer_coverage+2*immunizations_lifetime_cost\n", - "93 healthcare_coverage>=10^(2*encounters_lifetime_perc_covered+2)\n", - "94 healthcare_coverage<=active_conditions*longitude^2\n", - "95 healthcare_coverage<=e^(encounters_lifetime_perc_covered+medications_lifetime_dispenses)\n", - "96 healthcare_coverage<=(latitude-longitude)^2\n", - "97 healthcare_coverage<=healthcare_expenses/active_care_plan_length+lifetime_condition_length\n", - "98 healthcare_coverage<=minimum(healthcare_expenses,Low_Density_Lipoprotein_Cholesterol^2)\n", - "99 healthcare_coverage<=e^(QALY/active_care_plans)\n", - "100 healthcare_coverage<=(longitude^2)^active_conditions\n", - "101 healthcare_coverage<=1/4*e^(2*encounters_count)\n", - "102 healthcare_coverage<=10^e^(1/encounters_lifetime_perc_covered)\n", - "103 healthcare_coverage<=medications_lifetime_cost^sqrt(QOLS)\n", - "104 healthcare_coverage>=1/2*10^log(latitude)\n", - "105 healthcare_coverage>=e^(2*10^medications_lifetime_perc_covered)\n", - "106 healthcare_coverage>=(immunizations_lifetime_cost^2)^encounters_lifetime_perc_covered\n", - "107 healthcare_coverage>=lifetime_condition_length^e^encounters_lifetime_perc_covered\n", - "108 healthcare_coverage>=e^(sqrt(encounters_count+1))\n", - "109 healthcare_coverage>=encounters_lifetime_total_cost*sqrt(procedures_lifetime)\n", - "110 healthcare_coverage>=(latitude+1)*lifetime_condition_length\n", - "111 healthcare_coverage>=encounters_lifetime_total_cost-1/2*medications_lifetime_dispenses\n", - "112 healthcare_coverage>=medications_lifetime_cost/(active_care_plan_length-1)\n", - "113 healthcare_coverage>=age^log(active_conditions)\n", - "114 latitude<=encounters_count^e^active_care_plan_length\n", - "115 latitude<=log(floor(procedures_lifetime_cost))^2\n", - "116 latitude<=minimum(healthcare_expenses,Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", - "117 latitude<=maximum(QALY,1/device_lifetime_length)\n", - "118 latitude<=age/QOLS\n", - "119 latitude<=QALY+e^encounters_lifetime_payer_coverage\n", - "120 latitude<=QALY+medications_lifetime_cost-1\n", - "121 latitude<=age/sqrt(QOLS)\n", - "122 latitude<=minimum(healthcare_expenses,2*Carbon_Dioxide)\n", - "123 latitude<=healthcare_expenses^QOLS+encounters_lifetime_perc_covered\n", - "124 latitude>=e^(e^QOLS+1)\n", - "125 latitude>=-age+2*medications_lifetime\n", - "126 latitude>=minimum(QALY,active_conditions^2)\n", - "127 latitude>=e^(e^immunizations_lifetime+1)\n", - "128 latitude>=medications_lifetime_length/10^active_conditions\n", - "129 latitude>=-active_condition_length+ceil(age)\n", - "130 latitude>=immunizations_lifetime_cost/log(QALY)\n", - "131 latitude>=age*e^(-encounters_lifetime_perc_covered)\n", - "132 latitude>=medications_lifetime_dispenses^encounters_lifetime_perc_covered+1\n", - "133 latitude<=age+log(healthcare_expenses)\n", - "134 latitude<=10^(sqrt(QOLS)+1)\n", - "135 latitude<=encounters_lifetime_total_cost/medications_lifetime-1\n", - "136 latitude<=log(age)*medications_lifetime_length/log(10)\n", - "137 latitude<=log(medications_lifetime_cost)/medications_lifetime_perc_covered\n", - "138 latitude<=e^active_care_plans/medications_lifetime_perc_covered\n", - "139 latitude<=active_condition_length^2/lifetime_conditions\n", - "140 latitude<=(active_care_plan_length-medications_active)^2\n", - "141 latitude<=1/medications_lifetime_perc_covered+age\n", - "142 latitude<=10^e^(1/2*active_care_plans)\n", - "143 latitude>=1/2*active_care_plans+1/2*age\n", - "144 latitude>=sqrt(medications_lifetime_length/lifetime_conditions)\n", - "145 latitude>=(longitude^2)^(1/log(10))\n", - "146 latitude>=2*sqrt(encounters_count)-2\n", - "147 latitude>=2*e^immunizations_lifetime+1\n", - "148 latitude>=lifetime_condition_length/(medications_lifetime+1)\n", - "149 latitude>=immunizations_lifetime_cost^encounters_lifetime_perc_covered+1\n", - "150 latitude>=lifetime_care_plan_length^sqrt(encounters_lifetime_perc_covered)\n", - "151 latitude>=encounters_lifetime_perc_covered*e^medications_active\n", - "152 latitude>=minimum(procedures_lifetime_cost,1/2*mean_Diastolic_Blood_Pressure)\n", - "153 latitude<=encounters_count^(log(encounters_lifetime_total_cost)/log(10))\n", - "154 latitude<=sqrt(QALY)/medications_lifetime_perc_covered\n", - "155 latitude<=sqrt(healthcare_expenses/encounters_count)\n", - "156 latitude<=(healthcare_expenses/active_care_plans)^QOLS\n", - "157 latitude<=(QALY-1)/encounters_lifetime_perc_covered\n", - "158 latitude<=1/2*QALY-1/2*longitude\n", - "159 latitude<=2*QALY+active_condition_length\n", - "160 latitude<=healthcare_expenses/(encounters_lifetime_perc_covered*procedures_lifetime_cost)\n", - "161 latitude<=10^e^(1/medications_active)\n", - "162 latitude>=1/2*age+1/2*medications_lifetime_perc_covered\n", - "163 latitude>=sqrt(QALY*device_lifetime_length)\n", - "164 latitude>=e^(e^immunizations_lifetime+1)\n", - "165 latitude>=immunizations_lifetime_cost/log(age)\n", - "166 latitude>=(longitude^2)^(1/log(10))\n", - "167 latitude>=sqrt(DALY*age)\n", - "168 latitude>=-10^medications_active+active_care_plan_length\n", - "169 latitude>=active_conditions^(QOLS+1)\n", - "170 latitude>=1/2*QOLS+1/2*age\n", - "171 longitude<=-10^(encounters_lifetime_perc_covered+1)\n", - "172 longitude<=QALY-2*active_care_plan_length\n", - "173 longitude<=-ceil(age)+procedures_lifetime\n", - "174 longitude<=-2*encounters_count+immunizations_lifetime_cost\n", - "175 longitude<=latitude*log(encounters_lifetime_perc_covered)\n", - "176 longitude<=10^encounters_lifetime_perc_covered-age\n", - "177 longitude<=floor(-1/2*immunizations_lifetime_cost)\n", - "178 longitude<=-2*QALY+2*active_condition_length\n", - "179 longitude<=1/encounters_lifetime_perc_covered-encounters_count\n", - "180 longitude<=e^DALY-lifetime_condition_length\n", - "181 longitude>=active_conditions-2*latitude\n", - "182 longitude>=-sqrt(healthcare_expenses)+active_conditions\n", - "183 longitude>=encounters_lifetime_total_cost*log(encounters_lifetime_perc_covered)\n", - "184 longitude>=2*active_care_plans-2*latitude\n", - "185 longitude>=-2*latitude+2*lifetime_care_plans\n", - "186 longitude>=-minimum(healthcare_expenses,Low_Density_Lipoprotein_Cholesterol)\n", - "187 longitude>=-log(medications_lifetime_cost)^2\n", - "188 longitude>=-minimum(healthcare_expenses,mean_Diastolic_Blood_Pressure)\n", - "189 longitude<=-2*active_care_plan_length+encounters_lifetime_payer_coverage\n", - "190 longitude<=log(lifetime_condition_length)/log(10)-QALY\n", - "191 longitude<=floor(lifetime_condition_length)-immunizations_lifetime_cost\n", - "192 longitude<=-1/2*ceil(immunizations_lifetime_cost)\n", - "193 longitude<=-sqrt(healthcare_coverage)+QALY\n", - "194 longitude<=2*active_condition_length-2*age\n", - "195 longitude<=lifetime_condition_length/(DALY-1)\n", - "196 longitude<=(active_care_plans-1)*encounters_lifetime_payer_coverage\n", - "197 longitude<=-2*latitude+2*lifetime_condition_length\n", - "198 longitude<=medications_lifetime/log(medications_lifetime_perc_covered)\n", - "199 longitude>=2*active_care_plans-2*latitude\n", - "200 longitude>=-active_care_plan_length^2+DALY\n", - "201 longitude>=-lifetime_condition_length^2+active_care_plans\n", - "202 longitude>=-1/2*e^encounters_count\n", - "203 longitude>=-10^active_conditions+lifetime_condition_length\n", - "204 longitude<=age-2*latitude\n", - "205 longitude<=QOLS-active_care_plan_length-1\n", - "206 longitude<=-age+log(encounters_lifetime_payer_coverage)\n", - "207 longitude<=-sqrt(encounters_lifetime_total_cost)+active_condition_length\n", - "208 longitude<=-device_lifetime_length*lifetime_conditions\n", - "209 longitude<=-2*active_care_plan_length+procedures_lifetime_cost\n", - "210 longitude<=-QALY-active_care_plans\n", - "211 longitude<=2*lifetime_care_plans-2*procedures_lifetime\n", - "212 longitude<=active_care_plan_length/(DALY-1)\n", - "213 longitude<=-active_conditions^2+DALY\n", - "214 longitude>=active_care_plans-2*latitude\n", - "215 longitude>=-sqrt(1/2)*sqrt(healthcare_expenses)\n", - "216 longitude>=-sqrt(healthcare_expenses)+lifetime_condition_length\n", - "217 longitude>=2*age-encounters_lifetime_total_cost\n", - "218 longitude>=-minimum(healthcare_expenses,mean_Heart_rate)\n", - "219 longitude>=-e^active_care_plan_length+medications_lifetime_dispenses\n", - "220 longitude>=-2*latitude+procedures_lifetime\n", - "221 longitude>=-minimum(healthcare_expenses,Glucose)\n", - "222 longitude>=-minimum(healthcare_expenses,mean_Glucose)\n", - "223 age<=encounters_count-longitude+1\n", - "224 age<=1/2*latitude+lifetime_condition_length\n", - "225 age<=QALY-1/2*longitude\n", - "226 age<=ceil(active_care_plan_length)/num_allergies\n", - "227 age<=healthcare_expenses/procedures_lifetime_cost+lifetime_conditions\n", - "228 age<=healthcare_expenses/medications_lifetime_cost-longitude\n", - "229 age<=healthcare_expenses/(device_lifetime_length*encounters_lifetime_payer_coverage)\n", - "230 age<=1/2*healthcare_expenses^(1/log(10))\n", - "231 age<=1/2*10^(2*active_care_plans)\n", - "232 age<=log(10^(encounters_count^2))\n", - "233 age>=sqrt(active_conditions)+QALY\n", - "234 age>=log(DALY)/log(10)+active_care_plan_length\n", - "235 age>=DALY+QALY+1\n", - "236 age>=10^medications_lifetime_perc_covered+QALY\n", - "237 age>=-lifetime_care_plan_length+1/2*medications_lifetime\n", - "238 age>=1/2*10^immunizations_lifetime+1/2\n", - "239 age>=log(medications_lifetime_dispenses)/log(10)+QALY\n", - "240 age>=DALY+latitude-1\n", - "241 age>=mean_Calcium^sqrt(device_lifetime_length)\n", - "242 age>=2*active_care_plan_length^QOLS\n", - "243 age<=(log(encounters_lifetime_total_cost)+1)^2\n", - "244 age<=2*latitude-2\n", - "245 age<=active_condition_length+latitude-1\n", - "246 age<=lifetime_condition_length-log(medications_lifetime_length)\n", - "247 age<=1/2*healthcare_coverage/lifetime_care_plan_length\n", - "248 age<=maximum(High_Density_Lipoprotein_Cholesterol,healthcare_expenses^QOLS)\n", - "249 age<=ceil(healthcare_expenses/procedures_lifetime_cost)\n", - "250 age<=lifetime_care_plan_length-1/2*longitude\n", - "251 age<=10^(1/immunizations_lifetime+1)\n", - "252 age>=QALY+e^encounters_lifetime_perc_covered\n", - "253 age>=lifetime_care_plans*log(medications_lifetime_cost)\n", - "254 age>=e^active_conditions-medications_lifetime_cost\n", - "255 age>=sqrt(DALY*lifetime_condition_length)\n", - "256 age>=sqrt(medications_lifetime_perc_covered)+active_care_plan_length\n", - "257 age>=log(lifetime_condition_length)/log(10)+QALY\n", - "258 age>=DALY+QALY+1\n", - "259 age>=sqrt(medications_active)+QALY\n", - "260 age>=DALY^2-medications_lifetime_dispenses\n", - "261 age>=lifetime_condition_length/(DALY+1)\n", - "262 age<=floor(active_care_plan_length)+latitude\n", - "263 age<=ceil(QALY)/medications_lifetime_perc_covered\n", - "264 age<=floor(active_condition_length)^2\n", - "265 age<=e^encounters_count*lifetime_care_plan_length\n", - "266 age<=encounters_lifetime_total_cost/ceil(DALY)\n", - "267 age<=healthcare_coverage/(lifetime_care_plan_length+1)\n", - "268 age<=lifetime_care_plan_length/medications_lifetime_perc_covered-1\n", - "269 age<=ceil(encounters_lifetime_total_cost/medications_lifetime)\n", - "270 age<=10^DALY+latitude\n", - "271 age<=sqrt(encounters_lifetime_total_cost)+active_condition_length\n", - "272 age>=QALY+1\n", - "273 age>=ceil(active_care_plan_length)\n", - "274 age>=2*DALY-2\n", - "275 age>=latitude-procedures_lifetime_cost\n", - "276 age>=log(active_care_plans)/log(10)+active_care_plan_length\n", - "277 age>=QALY+2*num_allergies\n", - "278 age>=log(healthcare_coverage^medications_active)\n", - "279 age>=10^(2*medications_lifetime_perc_covered)\n", - "280 age>=log(lifetime_condition_length)/log(10)+QALY\n", - "281 age>=active_care_plan_length-log(QOLS)\n", - "282 num_allergies<=log(active_care_plans)^healthcare_expenses\n", - "283 num_allergies<=active_care_plan_length\n", - "284 num_allergies<=-medications_active+medications_lifetime\n", - "285 num_allergies<=active_conditions+1\n", - "286 num_allergies<=log(medications_active)^healthcare_expenses\n", - "287 num_allergies<=floor(1/immunizations_lifetime)\n", - "288 num_allergies<=(1/imaging_studies_lifetime)\n", - "289 num_allergies<=-DALY+QALY\n", - "290 num_allergies<=minimum(healthcare_expenses,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "291 num_allergies>=imaging_studies_lifetime\n", - "292 num_allergies<=active_care_plans\n", - "293 num_allergies<=device_lifetime_length\n", - "294 num_allergies>=device_lifetime_length\n", - "295 num_allergies>=active_care_plans-active_conditions\n", - "296 num_allergies<=active_care_plans\n", - "297 num_allergies<=device_lifetime_length\n", - "298 num_allergies<=imaging_studies_lifetime\n", - "299 num_allergies>=device_lifetime_length\n", - "300 active_care_plans<=lifetime_care_plans\n", - "301 active_care_plans<=e^num_allergies+medications_lifetime\n", - "302 active_care_plans>=num_allergies\n", - "303 active_care_plans>=lifetime_care_plans-procedures_lifetime\n", - "304 active_care_plans>=medications_active\n", - "305 active_care_plans>=lifetime_care_plans-medications_lifetime_length\n", - "306 active_care_plans>=(1/lifetime_care_plans)\n", - "307 active_care_plans>=floor(sqrt(lifetime_care_plans))\n", - "308 active_care_plans>=1/2*active_conditions-1\n", - "309 active_care_plans>=lifetime_care_plans^imaging_studies_lifetime\n", - "310 active_care_plans<=lifetime_care_plans\n", - "311 active_care_plans<=ceil(active_care_plan_length)\n", - "312 active_care_plans<=2*e^immunizations_lifetime\n", - "313 active_care_plans>=immunizations_lifetime\n", - "314 active_care_plans>=e^num_allergies\n", - "315 active_care_plans>=QOLS\n", - "316 active_care_plans>=ceil(log(device_lifetime_length)/log(10))\n", - "317 active_care_plans>=minimum(healthcare_coverage,lifetime_care_plans-1)\n", - "318 active_care_plans>=immunizations_lifetime^2\n", - "319 active_care_plans>=floor(log(encounters_count))\n", - "320 active_care_plans>=-immunizations_lifetime_cost+lifetime_care_plans\n", - "321 active_care_plans<=lifetime_care_plans\n", - "322 active_care_plans<=active_care_plan_length\n", - "323 active_care_plans>=num_allergies\n", - "324 active_care_plans>=sqrt(lifetime_care_plans)\n", - "325 active_care_plans>=lifetime_care_plans-1\n", - "326 active_care_plans>=medications_active-1\n", - "327 active_care_plans>=lifetime_care_plans*num_allergies\n", - "328 active_care_plans>=lifetime_care_plans^immunizations_lifetime\n", - "329 lifetime_care_plans<=active_care_plans+1\n", - "330 lifetime_care_plans<=active_care_plans^2\n", - "331 lifetime_care_plans<=floor(sqrt(age))\n", - "332 lifetime_care_plans<=active_care_plans/QOLS\n", - "333 lifetime_care_plans<=active_care_plans+procedures_lifetime\n", - "334 lifetime_care_plans<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(active_care_plans))\n", - "335 lifetime_care_plans<=maximum(Sodium,ceil(active_care_plans))\n", - "336 lifetime_care_plans>=num_allergies\n", - "337 lifetime_care_plans>=active_care_plans\n", - "338 lifetime_care_plans>=ceil(log(active_conditions))\n", - "339 lifetime_care_plans>=minimum(device_lifetime_length,procedures_lifetime)\n", - "340 lifetime_care_plans>=imaging_studies_lifetime*procedures_lifetime\n", - "341 lifetime_care_plans<=2*10^medications_active\n", - "342 lifetime_care_plans<=2*lifetime_care_plan_length\n", - "343 lifetime_care_plans<=minimum(healthcare_expenses,pH_of_Urine_by_Test_strip)\n", - "344 lifetime_care_plans<=medications_lifetime_cost\n", - "345 lifetime_care_plans<=medications_lifetime_length-procedures_lifetime\n", - "346 lifetime_care_plans<=maximum(procedures_lifetime,floor(active_care_plan_length))\n", - "347 lifetime_care_plans<=(active_care_plans+1)/immunizations_lifetime\n", - "348 lifetime_care_plans<=maximum(active_care_plans,1/medications_lifetime_perc_covered)\n", - "349 lifetime_care_plans<=minimum(healthcare_expenses,floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", - "350 lifetime_care_plans>=num_allergies\n", - "351 lifetime_care_plans>=active_care_plans\n", - "352 lifetime_care_plans>=ceil(log(procedures_lifetime))\n", - "353 lifetime_care_plans>=floor(log(lifetime_conditions))^2\n", - "354 lifetime_care_plans<=active_care_plans+1\n", - "355 lifetime_care_plans<=active_care_plan_length\n", - "356 lifetime_care_plans<=e^healthcare_coverage\n", - "357 lifetime_care_plans<=2*active_conditions\n", - "358 lifetime_care_plans<=medications_lifetime-1\n", - "359 lifetime_care_plans<=active_care_plans^2\n", - "360 lifetime_care_plans<=10^(lifetime_care_plan_length/encounters_count)\n", - "361 lifetime_care_plans>=num_allergies\n", - "362 lifetime_care_plans>=active_care_plans\n", - "363 lifetime_care_plans>=minimum(procedures_lifetime_cost,floor(DALY))\n", - "364 active_care_plan_length<=active_condition_length+e^immunizations_lifetime\n", - "365 active_care_plan_length<=lifetime_care_plan_length\n", - "366 active_care_plan_length<=active_condition_length+num_allergies\n", - "367 active_care_plan_length<=sqrt(-active_condition_length+encounters_lifetime_total_cost)\n", - "368 active_care_plan_length<=active_care_plans*healthcare_expenses\n", - "369 active_care_plan_length>=num_allergies\n", - "370 active_care_plan_length>=device_lifetime_length^2/QALY\n", - "371 active_care_plan_length>=lifetime_care_plan_length/active_conditions\n", - "372 active_care_plan_length>=minimum(active_care_plans,1/2*lifetime_care_plan_length)\n", - "373 active_care_plan_length>=lifetime_care_plan_length/log(lifetime_condition_length)\n", - "374 active_care_plan_length>=(lifetime_care_plan_length-1)/active_care_plans\n", - "375 active_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-age\n", - "376 active_care_plan_length>=log(lifetime_care_plan_length)/encounters_lifetime_perc_covered\n", - "377 active_care_plan_length>=QOLS^2*device_lifetime_length^2\n", - "378 active_care_plan_length<=log(encounters_lifetime_total_cost)^2\n", - "379 active_care_plan_length<=lifetime_care_plan_length\n", - "380 active_care_plan_length<=latitude-log(immunizations_lifetime_cost)\n", - "381 active_care_plan_length<=active_condition_length*e^medications_active\n", - "382 active_care_plan_length<=(active_conditions+1)/medications_lifetime_perc_covered\n", - "383 active_care_plan_length<=lifetime_condition_length+log(QALY)\n", - "384 active_care_plan_length<=e^floor(sqrt(active_condition_length))\n", - "385 active_care_plan_length>=num_allergies\n", - "386 active_care_plan_length>=e^(log(lifetime_care_plan_length)-1)\n", - "387 active_care_plan_length>=(active_care_plans-1)*active_conditions\n", - "388 active_care_plan_length>=1/2*lifetime_condition_length+longitude\n", - "389 active_care_plan_length>=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_QOLS)-1\n", - "390 active_care_plan_length>=minimum(lifetime_care_plan_length,2*active_conditions)\n", - "391 active_care_plan_length>=1/2*age-encounters_lifetime_payer_coverage\n", - "392 active_care_plan_length<=age-log(QALY)\n", - "393 active_care_plan_length<=lifetime_care_plan_length\n", - "394 active_care_plan_length<=active_condition_length/num_allergies\n", - "395 active_care_plan_length<=maximum(active_condition_length,immunizations_lifetime_cost)\n", - "396 active_care_plan_length<=maximum(active_condition_length,1/healthcare_coverage)\n", - "397 active_care_plan_length<=active_condition_length/imaging_studies_lifetime\n", - "398 active_care_plan_length>=lifetime_care_plan_length/active_care_plans\n", - "399 active_care_plan_length>=minimum(latitude,active_condition_length)\n", - "400 active_care_plan_length>=DALY*log(lifetime_condition_length)/log(10)\n", - "401 active_care_plan_length>=10^immunizations_lifetime*procedures_lifetime\n", - "402 active_care_plan_length>=2*active_conditions*num_allergies\n", - "403 active_care_plan_length>=QOLS*active_condition_length\n", - "404 active_care_plan_length>=2*QALY+longitude\n", - "405 lifetime_care_plan_length<=encounters_lifetime_total_cost^2/age^2\n", - "406 lifetime_care_plan_length<=active_care_plan_length*active_care_plans\n", - "407 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "408 lifetime_care_plan_length<=active_care_plan_length^2\n", - "409 lifetime_care_plan_length<=healthcare_expenses/(active_conditions*age)\n", - "410 lifetime_care_plan_length<=healthcare_coverage/ceil(active_condition_length)\n", - "411 lifetime_care_plan_length<=minimum(healthcare_expenses,floor(Triglycerides))\n", - "412 lifetime_care_plan_length<=lifetime_condition_length/sqrt(QOLS)\n", - "413 lifetime_care_plan_length>=log(1/2*encounters_lifetime_perc_covered+1)/log(10)\n", - "414 lifetime_care_plan_length>=active_care_plan_length\n", - "415 lifetime_care_plan_length>=active_conditions^2-procedures_lifetime_cost\n", - "416 lifetime_care_plan_length>=(active_care_plans-1)^lifetime_care_plans\n", - "417 lifetime_care_plan_length>=e^active_care_plans*immunizations_lifetime\n", - "418 lifetime_care_plan_length>=encounters_count*encounters_lifetime_perc_covered-1\n", - "419 lifetime_care_plan_length>=log(DALY)/log(10)+active_care_plan_length\n", - "420 lifetime_care_plan_length>=(medications_active-1)*age\n", - "421 lifetime_care_plan_length>=e^active_care_plans*num_allergies\n", - "422 lifetime_care_plan_length>=2*active_care_plan_length-active_condition_length\n", - "423 lifetime_care_plan_length<=age/medications_lifetime_perc_covered^2\n", - "424 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "425 lifetime_care_plan_length<=e^(sqrt(1/2)*sqrt(age))\n", - "426 lifetime_care_plan_length<=1/2*e^sqrt(active_care_plan_length)\n", - "427 lifetime_care_plan_length<=10^log(active_condition_length+1)\n", - "428 lifetime_care_plan_length<=(latitude-medications_lifetime)^2\n", - "429 lifetime_care_plan_length<=healthcare_coverage/(age+1)\n", - "430 lifetime_care_plan_length<=encounters_lifetime_payer_coverage/sqrt(latitude)\n", - "431 lifetime_care_plan_length<=minimum(healthcare_expenses,1/2*MCV__Entitic_volume__by_Automated_count)\n", - "432 lifetime_care_plan_length>=num_allergies\n", - "433 lifetime_care_plan_length>=active_care_plan_length\n", - "434 lifetime_care_plan_length>=sqrt(medications_lifetime_length)-procedures_lifetime_cost\n", - "435 lifetime_care_plan_length>=ceil(immunizations_lifetime_cost*medications_lifetime_perc_covered)\n", - "436 lifetime_care_plan_length>=1/2*immunizations_lifetime*lifetime_condition_length\n", - "437 lifetime_care_plan_length>=sqrt(DALY*immunizations_lifetime_cost)\n", - "438 lifetime_care_plan_length<=encounters_lifetime_total_cost/sqrt(age)\n", - "439 lifetime_care_plan_length<=sqrt(healthcare_expenses/active_condition_length)\n", - "440 lifetime_care_plan_length<=active_care_plan_length^(1/medications_lifetime_perc_covered)\n", - "441 lifetime_care_plan_length<=sqrt(procedures_lifetime_cost)-longitude\n", - "442 lifetime_care_plan_length<=active_care_plan_length*active_care_plans\n", - "443 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "444 lifetime_care_plan_length<=-log(medications_lifetime)+medications_lifetime_dispenses\n", - "445 lifetime_care_plan_length<=log(10^ceil(age))\n", - "446 lifetime_care_plan_length<=10^(2/immunizations_lifetime)\n", - "447 lifetime_care_plan_length>=num_allergies\n", - "448 lifetime_care_plan_length>=active_care_plan_length^2/latitude\n", - "449 lifetime_care_plan_length>=sqrt(age*lifetime_care_plans)\n", - "450 lifetime_care_plan_length>=log(10^(2*device_lifetime_length))\n", - "451 lifetime_care_plan_length>=ceil(age*medications_lifetime_perc_covered)\n", - "452 lifetime_care_plan_length>=(active_care_plans-num_allergies)^2\n", - "453 lifetime_care_plan_length>=sqrt(lifetime_condition_length*medications_active)\n", - "454 lifetime_care_plan_length>=10^active_care_plans-encounters_lifetime_total_cost\n", - "455 lifetime_care_plan_length>=(active_care_plans-1)*active_care_plan_length\n", - "456 lifetime_care_plan_length>=active_care_plan_length^2/encounters_count^2\n", - "457 active_conditions<=lifetime_conditions\n", - "458 active_conditions<=ceil(1/2*encounters_count)\n", - "459 active_conditions<=ceil(log(healthcare_expenses))\n", - "460 active_conditions<=floor(lifetime_condition_length)-procedures_lifetime\n", - "461 active_conditions<=floor(DALY)/immunizations_lifetime\n", - "462 active_conditions>=2*num_allergies\n", - "463 active_conditions>=QOLS\n", - "464 active_conditions>=minimum(lifetime_conditions,immunizations_lifetime_cost)\n", - "465 active_conditions>=lifetime_conditions-procedures_lifetime\n", - "466 active_conditions>=-active_care_plans+lifetime_conditions\n", - "467 active_conditions>=lifetime_conditions-medications_lifetime\n", - "468 active_conditions>=minimum(lifetime_conditions,DALY)\n", - "469 active_conditions<=lifetime_conditions\n", - "470 active_conditions<=ceil(log(healthcare_expenses))\n", - "471 active_conditions<=maximum(medications_lifetime,DALY)\n", - "472 active_conditions<=active_care_plan_length/10^medications_lifetime_perc_covered\n", - "473 active_conditions<=active_care_plans^2/immunizations_lifetime\n", - "474 active_conditions>=num_allergies\n", - "475 active_conditions>=lifetime_conditions-medications_active\n", - "476 active_conditions>=lifetime_conditions-1\n", - "477 active_conditions>=lifetime_conditions-medications_lifetime\n", - "478 active_conditions>=minimum(lifetime_conditions,procedures_lifetime)\n", - "479 active_conditions>=lifetime_care_plans^2-encounters_count\n", - "480 active_conditions>=minimum(lifetime_conditions,1/medications_lifetime_perc_covered)\n", - "481 active_conditions<=lifetime_conditions\n", - "482 active_conditions<=-imaging_studies_lifetime+lifetime_conditions\n", - "483 active_conditions<=ceil(medications_lifetime/procedures_lifetime)\n", - "484 active_conditions>=device_lifetime_length\n", - "485 active_conditions>=lifetime_conditions-num_allergies\n", - "486 active_conditions>=lifetime_conditions-1\n", - "487 active_conditions>=procedures_lifetime-1\n", - "488 active_conditions>=immunizations_lifetime-1\n", - "489 lifetime_conditions<=active_conditions+1\n", - "490 lifetime_conditions<=floor(log(medications_lifetime_cost))\n", - "491 lifetime_conditions<=encounters_count\n", - "492 lifetime_conditions<=active_conditions/num_allergies\n", - "493 lifetime_conditions<=ceil(sqrt(encounters_lifetime_payer_coverage))\n", - "494 lifetime_conditions<=1/2*active_conditions*lifetime_care_plans\n", - "495 lifetime_conditions<=minimum(healthcare_expenses,sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count))\n", - "496 lifetime_conditions>=num_allergies\n", - "497 lifetime_conditions>=active_conditions\n", - "498 lifetime_conditions>=floor(log(procedures_lifetime))\n", - "499 lifetime_conditions>=(active_care_plans-1)*procedures_lifetime\n", - "500 lifetime_conditions>=(procedures_lifetime-1)*active_care_plans\n", - "501 lifetime_conditions<=maximum(active_conditions,log(latitude))\n", - "502 lifetime_conditions<=encounters_count\n", - "503 lifetime_conditions<=floor(QALY)\n", - "504 lifetime_conditions<=e^active_conditions\n", - "505 lifetime_conditions<=10^(1/immunizations_lifetime)\n", - "506 lifetime_conditions<=encounters_count-medications_active\n", - "507 lifetime_conditions<=maximum(active_conditions,log(healthcare_coverage)/log(10))\n", - "508 lifetime_conditions<=maximum(Body_temperature,encounters_count-1)\n", - "509 lifetime_conditions>=num_allergies\n", - "510 lifetime_conditions>=active_conditions\n", - "511 lifetime_conditions<=active_conditions+1\n", - "512 lifetime_conditions<=active_care_plan_length\n", - "513 lifetime_conditions<=ceil(log(healthcare_coverage))\n", - "514 lifetime_conditions<=active_conditions+medications_lifetime\n", - "515 lifetime_conditions<=2*10^DALY\n", - "516 lifetime_conditions<=active_conditions^2\n", - "517 lifetime_conditions>=num_allergies\n", - "518 lifetime_conditions>=2*immunizations_lifetime\n", - "519 lifetime_conditions>=active_conditions\n", - "520 lifetime_conditions>=-active_care_plans+lifetime_care_plans\n", - "521 active_condition_length<=latitude+log(encounters_lifetime_payer_coverage)\n", - "522 active_condition_length<=lifetime_care_plan_length\n", - "523 active_condition_length<=lifetime_condition_length\n", - "524 active_condition_length<=maximum(device_lifetime_length,2*encounters_count)\n", - "525 active_condition_length<=10^DALY+encounters_count\n", - "526 active_condition_length<=active_care_plan_length^active_care_plans\n", - "527 active_condition_length<=active_care_plan_length+log(medications_lifetime_length)\n", - "528 active_condition_length<=(log(medications_lifetime_dispenses)/log(10))^medications_lifetime\n", - "529 active_condition_length<=-10^QOLS+age\n", - "530 active_condition_length>=active_care_plan_length-encounters_lifetime_payer_coverage\n", - "531 active_condition_length>=ceil(lifetime_condition_length)/encounters_count\n", - "532 active_condition_length>=minimum(active_care_plans,lifetime_condition_length)\n", - "533 active_condition_length>=active_care_plan_length*immunizations_lifetime\n", - "534 active_condition_length>=minimum(active_care_plan_length,device_lifetime_length^2)\n", - "535 active_condition_length>=(immunizations_lifetime_cost+1)/encounters_count\n", - "536 active_condition_length>=minimum(active_care_plan_length,1/medications_active)\n", - "537 active_condition_length>=log(active_care_plans)^medications_active\n", - "538 active_condition_length<=-1/QOLS+age\n", - "539 active_condition_length<=maximum(procedures_lifetime_cost,QALY)\n", - "540 active_condition_length<=1/2*active_conditions^lifetime_conditions\n", - "541 active_condition_length<=medications_lifetime_cost*medications_lifetime_length\n", - "542 active_condition_length<=active_care_plan_length*e^device_lifetime_length\n", - "543 active_condition_length<=maximum(lifetime_care_plan_length,device_lifetime_length)\n", - "544 active_condition_length<=maximum(active_care_plan_length,immunizations_lifetime_cost)\n", - "545 active_condition_length>=active_care_plan_length/active_conditions\n", - "546 active_condition_length>=log(lifetime_condition_length)^4/log(10)^4\n", - "547 active_condition_length>=active_care_plan_length/active_care_plans\n", - "548 active_condition_length>=active_care_plan_length*log(lifetime_care_plans)/log(10)\n", - "549 active_condition_length>=QOLS^2*active_conditions^2\n", - "550 active_condition_length>=e^(1/2*e^immunizations_lifetime)\n", - "551 active_condition_length>=active_care_plan_length/(encounters_lifetime_perc_covered+1)\n", - "552 active_condition_length>=log(lifetime_care_plan_length)*num_allergies\n", - "553 active_condition_length>=minimum(active_care_plan_length,immunizations_lifetime_cost)\n", - "554 active_condition_length>=e^(sqrt(DALY)-1)\n", - "555 active_condition_length<=age\n", - "556 active_condition_length<=lifetime_condition_length\n", - "557 active_condition_length<=maximum(lifetime_care_plan_length,1/medications_active)\n", - "558 active_condition_length<=1/2*encounters_lifetime_total_cost/encounters_count\n", - "559 active_condition_length<=-QOLS+ceil(age)\n", - "560 active_condition_length<=maximum(healthcare_coverage,active_care_plan_length)\n", - "561 active_condition_length<=maximum(lifetime_care_plan_length,ceil(latitude))\n", - "562 active_condition_length<=lifetime_condition_length-log(active_conditions)\n", - "563 active_condition_length>=num_allergies\n", - "564 active_condition_length>=active_care_plan_length-immunizations_lifetime\n", - "565 active_condition_length>=DALY*log(10)/log(encounters_count)\n", - "566 active_condition_length>=active_care_plan_length-1\n", - "567 active_condition_length>=medications_lifetime_dispenses^medications_lifetime_perc_covered-1\n", - "568 active_condition_length>=ceil(DALY)*immunizations_lifetime\n", - "569 active_condition_length>=active_care_plan_length-procedures_lifetime\n", - "570 lifetime_condition_length<=active_condition_length*log(healthcare_coverage)/log(10)\n", - "571 lifetime_condition_length<=encounters_lifetime_total_cost\n", - "572 lifetime_condition_length<=encounters_count^(10^encounters_lifetime_perc_covered)\n", - "573 lifetime_condition_length<=(DALY+1)*age\n", - "574 lifetime_condition_length<=e^active_condition_length/medications_lifetime_dispenses\n", - "575 lifetime_condition_length<=1/2*healthcare_coverage-1/2*medications_lifetime_length\n", - "576 lifetime_condition_length<=(2*encounters_lifetime_payer_coverage)^QOLS\n", - "577 lifetime_condition_length<=encounters_lifetime_payer_coverage*log(10)/log(encounters_lifetime_total_cost)\n", - "578 lifetime_condition_length<=healthcare_expenses^encounters_lifetime_perc_covered/medications_active\n", - "579 lifetime_condition_length>=(1/latitude)^lifetime_care_plan_length\n", - "580 lifetime_condition_length>=active_condition_length\n", - "581 lifetime_condition_length>=log(DALY^encounters_count)\n", - "582 lifetime_condition_length>=2*log(procedures_lifetime_cost)/log(10)+2\n", - "583 lifetime_condition_length>=DALY*log(encounters_lifetime_total_cost)\n", - "584 lifetime_condition_length>=log(medications_active)^lifetime_conditions\n", - "585 lifetime_condition_length>=2*active_care_plan_length-latitude\n", - "586 lifetime_condition_length>=1/2*maximum(Low_Density_Lipoprotein_Cholesterol,mean_DALY)\n", - "587 lifetime_condition_length>=active_conditions*sqrt(medications_lifetime)\n", - "588 lifetime_condition_length<=1/2*active_condition_length^2\n", - "589 lifetime_condition_length<=medications_lifetime_length/(DALY+1)\n", - "590 lifetime_condition_length<=healthcare_expenses^lifetime_care_plans/medications_lifetime_cost\n", - "591 lifetime_condition_length<=maximum(Total_Cholesterol,1/immunizations_lifetime)\n", - "592 lifetime_condition_length<=active_condition_length^lifetime_conditions\n", - "593 lifetime_condition_length<=10^encounters_lifetime_perc_covered*lifetime_care_plan_length\n", - "594 lifetime_condition_length<=ceil(active_care_plan_length)^active_conditions\n", - "595 lifetime_condition_length<=age*log(healthcare_expenses)/log(10)\n", - "596 lifetime_condition_length<=1/4*medications_lifetime_dispenses+1\n", - "597 lifetime_condition_length<=age+e^active_conditions\n", - "598 lifetime_condition_length>=2*active_care_plan_length/active_care_plans\n", - "599 lifetime_condition_length>=sqrt(encounters_lifetime_total_cost)+active_care_plans\n", - "600 lifetime_condition_length>=QOLS*medications_lifetime+1\n", - "601 lifetime_condition_length>=-active_condition_length+lifetime_care_plan_length+1\n", - "602 lifetime_condition_length>=longitude/log(medications_lifetime_perc_covered)\n", - "603 lifetime_condition_length>=-active_care_plan_length+e^active_care_plans\n", - "604 lifetime_condition_length>=mean_Glucose^sqrt(immunizations_lifetime)\n", - "605 lifetime_condition_length>=1/2*encounters_lifetime_total_cost/active_care_plan_length\n", - "606 lifetime_condition_length>=latitude/log(DALY)\n", - "607 lifetime_condition_length>=medications_lifetime^2/QALY^2\n", - "608 lifetime_condition_length<=encounters_lifetime_total_cost/medications_active^2\n", - "609 lifetime_condition_length<=(latitude-1)*lifetime_conditions\n", - "610 lifetime_condition_length<=active_condition_length^active_conditions\n", - "611 lifetime_condition_length<=e^active_care_plan_length/QALY\n", - "612 lifetime_condition_length<=age^2/lifetime_conditions\n", - "613 lifetime_condition_length<=log(encounters_lifetime_total_cost^age)/log(10)\n", - "614 lifetime_condition_length<=floor(encounters_lifetime_payer_coverage/active_care_plans)\n", - "615 lifetime_condition_length<=2*10^sqrt(active_conditions)\n", - "616 lifetime_condition_length<=maximum(Sodium,encounters_count^2)\n", - "617 lifetime_condition_length<=10^(active_condition_length^(1/4))\n", - "618 lifetime_condition_length>=num_allergies\n", - "619 lifetime_condition_length>=active_condition_length\n", - "620 lifetime_condition_length>=1/2*lifetime_conditions^2\n", - "621 lifetime_condition_length>=medications_lifetime_perc_covered*sqrt(procedures_lifetime_cost)\n", - "622 lifetime_condition_length>=-sqrt(encounters_lifetime_payer_coverage)+medications_lifetime\n", - "623 lifetime_condition_length>=1/2*active_care_plan_length-3/2\n", - "624 lifetime_condition_length>=maximum(Chloride,mean_DALY)\n", - "625 lifetime_condition_length>=DALY*log(encounters_lifetime_payer_coverage)\n", - "626 lifetime_condition_length>=DALY*lifetime_conditions\n", - "627 lifetime_condition_length>=ceil(maximum(Chloride,mean_DALY))\n", - "628 device_lifetime_length<=healthcare_coverage\n", - "629 device_lifetime_length<=num_allergies\n", - "630 device_lifetime_length<=imaging_studies_lifetime\n", - "631 device_lifetime_length>=imaging_studies_lifetime\n", - "632 device_lifetime_length<=1/2*log(QOLS+1)/log(10)\n", - "633 device_lifetime_length<=immunizations_lifetime\n", - "634 device_lifetime_length<=floor(1/active_care_plans)\n", - "635 device_lifetime_length<=procedures_lifetime\n", - "636 device_lifetime_length>=imaging_studies_lifetime\n", - "637 device_lifetime_length<=healthcare_coverage\n", - "638 device_lifetime_length<=num_allergies\n", - "639 device_lifetime_length>=num_allergies\n", - "640 encounters_count<=floor(2*active_condition_length)\n", - "641 encounters_count<=10^active_conditions\n", - "642 encounters_count<=1/2*encounters_lifetime_total_cost/active_care_plan_length\n", - "643 encounters_count<=maximum(Triglycerides,floor(latitude))\n", - "644 encounters_count<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/num_allergies)\n", - "645 encounters_count<=floor(sqrt(encounters_lifetime_payer_coverage))\n", - "646 encounters_count<=10^QOLS+lifetime_care_plan_length\n", - "647 encounters_count<=sqrt(age)+lifetime_care_plan_length\n", - "648 encounters_count<=maximum(active_conditions,medications_lifetime_cost)\n", - "649 encounters_count<=10^immunizations_lifetime+medications_lifetime\n", - "650 encounters_count>=active_conditions\n", - "651 encounters_count>=medications_lifetime\n", - "652 encounters_count>=procedures_lifetime+1\n", - "653 encounters_count>=active_care_plans^2-procedures_lifetime\n", - "654 encounters_count>=immunizations_lifetime^2-active_conditions\n", - "655 encounters_count>=floor(active_care_plan_length)^num_allergies\n", - "656 encounters_count>=ceil(medications_lifetime_perc_covered)+medications_lifetime\n", - "657 encounters_count>=10^(medications_lifetime/active_condition_length)\n", - "658 encounters_count>=(1/(log(medications_lifetime_perc_covered)/log(10)+1))\n", - "659 encounters_count<=DALY+QALY-1\n", - "660 encounters_count<=lifetime_care_plan_length\n", - "661 encounters_count<=QALY/sqrt(QOLS)\n", - "662 encounters_count<=10^medications_lifetime-1\n", - "663 encounters_count<=floor(DALY+active_care_plan_length)\n", - "664 encounters_count<=ceil(encounters_lifetime_payer_coverage/QALY)\n", - "665 encounters_count<=ceil(lifetime_condition_length)+medications_active\n", - "666 encounters_count<=ceil(healthcare_expenses/medications_lifetime_length)\n", - "667 encounters_count<=-2*active_care_plan_length+2*lifetime_care_plan_length\n", - "668 encounters_count<=age^(1/immunizations_lifetime)\n", - "669 encounters_count>=medications_lifetime/(encounters_lifetime_perc_covered+1)\n", - "670 encounters_count>=-1/2*latitude+medications_lifetime\n", - "671 encounters_count>=lifetime_conditions+1\n", - "672 encounters_count>=floor(log(e^procedures_lifetime)/log(10))\n", - "673 encounters_count>=medications_lifetime^2/lifetime_condition_length\n", - "674 encounters_count>=immunizations_lifetime^lifetime_care_plans\n", - "675 encounters_count>=-e^active_care_plans+medications_lifetime\n", - "676 encounters_count>=10^(1/log(active_conditions))\n", - "677 encounters_count>=lifetime_care_plans^e^encounters_lifetime_perc_covered\n", - "678 encounters_count>=floor(encounters_lifetime_perc_covered*procedures_lifetime)\n", - "679 encounters_count<=abs(-QALY+lifetime_condition_length)\n", - "680 encounters_count<=maximum(lifetime_condition_length,medications_lifetime)\n", - "681 encounters_count<=maximum(active_conditions,medications_lifetime_cost)\n", - "682 encounters_count<=1/2*age/procedures_lifetime\n", - "683 encounters_count<=10^medications_active+QALY\n", - "684 encounters_count<=10^e^encounters_lifetime_payer_coverage\n", - "685 encounters_count<=active_conditions^2/procedures_lifetime\n", - "686 encounters_count<=ceil(QALY/encounters_lifetime_perc_covered)\n", - "687 encounters_count<=1/2*QALY/num_allergies\n", - "688 encounters_count<=10^medications_active/procedures_lifetime_cost\n", - "689 encounters_count>=active_conditions-1\n", - "690 encounters_count>=2*active_care_plans+2\n", - "691 encounters_count>=minimum(age,medications_lifetime+1)\n", - "692 encounters_count>=minimum(lifetime_care_plan_length,medications_lifetime)\n", - "693 encounters_count>=floor(latitude^medications_lifetime_perc_covered)\n", - "694 encounters_count>=1/2*medications_lifetime*medications_lifetime_perc_covered\n", - "695 encounters_count>=ceil(active_condition_length-lifetime_care_plan_length)\n", - "696 encounters_count>=ceil(Carbon_Dioxide)^num_allergies\n", - "697 encounters_count>=procedures_lifetime^4+1\n", - "698 encounters_count>=minimum(medications_lifetime,sqrt(medications_lifetime_length))\n", - "699 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "700 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "701 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "702 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "703 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "704 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "705 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "706 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "707 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "708 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "709 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "710 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "711 encounters_lifetime_payer_coverage<=healthcare_coverage\n", - "712 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "713 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "714 encounters_lifetime_payer_coverage>=num_allergies\n", - "715 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "716 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered^2*encounters_lifetime_total_cost\n", - "717 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", - "718 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "719 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "720 encounters_lifetime_payer_coverage>=device_lifetime_length\n", - "721 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "722 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "723 encounters_lifetime_payer_coverage<=healthcare_coverage\n", - "724 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "725 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "726 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", - "727 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "728 encounters_lifetime_payer_coverage>=lifetime_condition_length*log(QALY)\n", - "729 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "730 encounters_lifetime_perc_covered<=healthcare_coverage\n", - "731 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "732 encounters_lifetime_perc_covered<=encounters_count\n", - "733 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "734 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "735 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "736 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "737 encounters_lifetime_perc_covered<=sqrt(DALY)+mean_DALY\n", - "738 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "739 encounters_lifetime_perc_covered>=num_allergies\n", - "740 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "741 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "742 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "743 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "744 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "745 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "746 imaging_studies_lifetime<=num_allergies\n", - "747 imaging_studies_lifetime>=device_lifetime_length\n", - "748 imaging_studies_lifetime<=healthcare_coverage\n", - "749 imaging_studies_lifetime<=active_care_plans\n", - "750 imaging_studies_lifetime<=procedures_lifetime\n", - "751 imaging_studies_lifetime<=num_allergies^medications_lifetime_perc_covered\n", - "752 imaging_studies_lifetime<=num_allergies^immunizations_lifetime\n", - "753 imaging_studies_lifetime>=device_lifetime_length\n", - "754 imaging_studies_lifetime>=ceil(medications_lifetime_perc_covered)*medications_active\n", - "755 imaging_studies_lifetime>=-active_conditions+1/2*lifetime_care_plans\n", - "756 imaging_studies_lifetime<=active_care_plans\n", - "757 imaging_studies_lifetime<=immunizations_lifetime\n", - "758 imaging_studies_lifetime<=medications_active-1\n", - "759 imaging_studies_lifetime<=procedures_lifetime\n", - "760 imaging_studies_lifetime<=lifetime_care_plans-1\n", - "761 imaging_studies_lifetime<=num_allergies^medications_lifetime_perc_covered\n", - "762 imaging_studies_lifetime>=num_allergies\n", - "763 imaging_studies_lifetime>=-active_care_plans+medications_active\n", - "764 imaging_studies_lifetime>=(num_allergies-1)^encounters_count\n", - "765 imaging_studies_lifetime>=-medications_active+procedures_lifetime\n", - "766 immunizations_lifetime<=encounters_count/active_conditions\n", - "767 immunizations_lifetime<=e^QOLS\n", - "768 immunizations_lifetime<=immunizations_lifetime_cost\n", - "769 immunizations_lifetime<=e^procedures_lifetime\n", - "770 immunizations_lifetime<=2*encounters_count\n", - "771 immunizations_lifetime<=procedures_lifetime+1\n", - "772 immunizations_lifetime<=ceil(2*encounters_lifetime_perc_covered)\n", - "773 immunizations_lifetime>=num_allergies\n", - "774 immunizations_lifetime>=-active_conditions+lifetime_conditions\n", - "775 immunizations_lifetime>=-active_care_plans+medications_active\n", - "776 immunizations_lifetime<=active_conditions\n", - "777 immunizations_lifetime<=immunizations_lifetime_cost\n", - "778 immunizations_lifetime<=ceil(encounters_lifetime_perc_covered)\n", - "779 immunizations_lifetime<=e^device_lifetime_length\n", - "780 immunizations_lifetime<=e^num_allergies\n", - "781 immunizations_lifetime>=imaging_studies_lifetime\n", - "782 immunizations_lifetime>=lifetime_care_plans-medications_lifetime_length\n", - "783 immunizations_lifetime>=ceil(active_care_plan_length)-medications_lifetime_cost\n", - "784 immunizations_lifetime>=minimum(immunizations_lifetime_cost,lifetime_care_plans-1)\n", - "785 immunizations_lifetime>=minimum(active_care_plans,device_lifetime_length)\n", - "786 immunizations_lifetime>=-healthcare_coverage+medications_active\n", - "787 immunizations_lifetime<=active_care_plans\n", - "788 immunizations_lifetime<=active_conditions\n", - "789 immunizations_lifetime<=immunizations_lifetime_cost\n", - "790 immunizations_lifetime<=e^num_allergies\n", - "791 immunizations_lifetime<=e^healthcare_coverage\n", - "792 immunizations_lifetime>=imaging_studies_lifetime\n", - "793 immunizations_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "794 immunizations_lifetime>=log(immunizations_lifetime_cost)/(log(10)*medications_lifetime)\n", - "795 immunizations_lifetime_cost<=encounters_lifetime_payer_coverage^2\n", - "796 immunizations_lifetime_cost<=longitude^2/medications_active^2\n", - "797 immunizations_lifetime_cost<=10^active_care_plans*latitude\n", - "798 immunizations_lifetime_cost<=floor(encounters_lifetime_total_cost)+medications_lifetime_length\n", - "799 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "800 immunizations_lifetime_cost<=medications_lifetime_length/DALY+1\n", - "801 immunizations_lifetime_cost<=10^(QALY^encounters_lifetime_perc_covered)\n", - "802 immunizations_lifetime_cost<=medications_lifetime_dispenses/sqrt(DALY)\n", - "803 immunizations_lifetime_cost>=num_allergies\n", - "804 immunizations_lifetime_cost>=maximum(mean_Low_Density_Lipoprotein_Cholesterol,-healthcare_expenses)\n", - "805 immunizations_lifetime_cost>=DALY^2-medications_lifetime_dispenses\n", - "806 immunizations_lifetime_cost>=maximum(Systolic_Blood_Pressure,-healthcare_expenses)\n", - "807 immunizations_lifetime_cost>=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,-healthcare_expenses)\n", - "808 immunizations_lifetime_cost<=procedures_lifetime_cost\n", - "809 immunizations_lifetime_cost<=e^(e^(QOLS+1))\n", - "810 immunizations_lifetime_cost<=medications_lifetime_cost\n", - "811 immunizations_lifetime_cost<=sqrt(active_conditions)*medications_lifetime_dispenses\n", - "812 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "813 immunizations_lifetime_cost<=(2*medications_lifetime_dispenses)^DALY\n", - "814 immunizations_lifetime_cost<=encounters_lifetime_payer_coverage-2*longitude\n", - "815 immunizations_lifetime_cost>=num_allergies\n", - "816 immunizations_lifetime_cost>=1/2*procedures_lifetime_cost/encounters_count\n", - "817 immunizations_lifetime_cost>=maximum(Systolic_Blood_Pressure,-healthcare_expenses)\n", - "818 immunizations_lifetime_cost>=(encounters_count-1)*num_allergies\n", - "819 immunizations_lifetime_cost>=sqrt(medications_lifetime_length*procedures_lifetime)\n", - "820 immunizations_lifetime_cost>=lifetime_care_plan_length+log(procedures_lifetime_cost)\n", - "821 immunizations_lifetime_cost>=minimum(procedures_lifetime_cost,Systolic_Blood_Pressure+1)\n", - "822 immunizations_lifetime_cost>=-medications_lifetime^2+lifetime_care_plan_length\n", - "823 immunizations_lifetime_cost>=procedures_lifetime_cost^sqrt(medications_lifetime_perc_covered)\n", - "824 immunizations_lifetime_cost<=log(e^healthcare_coverage)/log(10)\n", - "825 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "826 immunizations_lifetime_cost<=2*procedures_lifetime_cost\n", - "827 immunizations_lifetime_cost<=abs(-encounters_lifetime_total_cost+healthcare_coverage)\n", - "828 immunizations_lifetime_cost<=10^sqrt(encounters_count)\n", - "829 immunizations_lifetime_cost<=sqrt(healthcare_expenses)+latitude\n", - "830 immunizations_lifetime_cost<=2*lifetime_care_plan_length/medications_lifetime_perc_covered\n", - "831 immunizations_lifetime_cost<=log(healthcare_expenses)+procedures_lifetime_cost\n", - "832 immunizations_lifetime_cost>=num_allergies\n", - "833 immunizations_lifetime_cost>=Systolic_Blood_Pressure^immunizations_lifetime-1\n", - "834 immunizations_lifetime_cost>=Sodium^num_allergies-1\n", - "835 immunizations_lifetime_cost>=2*active_care_plan_length*immunizations_lifetime\n", - "836 immunizations_lifetime_cost>=2*QALY*immunizations_lifetime\n", - "837 immunizations_lifetime_cost>=1/2*immunizations_lifetime*lifetime_care_plan_length\n", - "838 immunizations_lifetime_cost>=sqrt(procedures_lifetime_cost)-lifetime_condition_length\n", - "839 medications_lifetime<=2*10^e^immunizations_lifetime\n", - "840 medications_lifetime<=medications_lifetime_cost^2/medications_lifetime_length^2\n", - "841 medications_lifetime<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,e^active_conditions)\n", - "842 medications_lifetime<=maximum(active_conditions,1/num_allergies)\n", - "843 medications_lifetime<=floor(log(10^encounters_count))\n", - "844 medications_lifetime<=encounters_count+healthcare_coverage-1\n", - "845 medications_lifetime<=floor(active_condition_length)+immunizations_lifetime_cost\n", - "846 medications_lifetime<=(DALY-encounters_count)^2\n", - "847 medications_lifetime<=immunizations_lifetime_cost+lifetime_care_plan_length-1\n", - "848 medications_lifetime<=10^e^(1/device_lifetime_length)\n", - "849 medications_lifetime>=num_allergies\n", - "850 medications_lifetime>=medications_active\n", - "851 medications_lifetime>=active_care_plans-1\n", - "852 medications_lifetime>=(lifetime_care_plans-1)^immunizations_lifetime\n", - "853 medications_lifetime>=2*active_care_plans-lifetime_conditions\n", - "854 medications_lifetime>=active_condition_length-e^lifetime_conditions\n", - "855 medications_lifetime>=2*medications_active-2\n", - "856 medications_lifetime>=maximum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,-healthcare_expenses)\n", - "857 medications_lifetime>=-lifetime_conditions+1/2*procedures_lifetime\n", - "858 medications_lifetime>=minimum(medications_lifetime_cost,1/2*lifetime_conditions)\n", - "859 medications_lifetime<=encounters_lifetime_total_cost\n", - "860 medications_lifetime<=medications_lifetime_cost\n", - "861 medications_lifetime<=sqrt(log(10^medications_lifetime_dispenses))\n", - "862 medications_lifetime<=sqrt(medications_lifetime_cost)/QOLS\n", - "863 medications_lifetime<=e^healthcare_coverage\n", - "864 medications_lifetime<=10^active_conditions\n", - "865 medications_lifetime<=maximum(medications_active,1/device_lifetime_length)\n", - "866 medications_lifetime<=abs(age-medications_lifetime_dispenses)\n", - "867 medications_lifetime<=-longitude+procedures_lifetime_cost-1\n", - "868 medications_lifetime<=e^(maximum(num_allergies,lifetime_conditions))\n", - "869 medications_lifetime>=minimum(active_care_plan_length,1/medications_active)\n", - "870 medications_lifetime>=minimum(encounters_count,2*device_lifetime_length)\n", - "871 medications_lifetime>=medications_active\n", - "872 medications_lifetime>=immunizations_lifetime\n", - "873 medications_lifetime>=procedures_lifetime-1\n", - "874 medications_lifetime>=lifetime_care_plan_length+longitude+1\n", - "875 medications_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^immunizations_lifetime\n", - "876 medications_lifetime>=minimum(immunizations_lifetime_cost,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "877 medications_lifetime>=10^lifetime_care_plans/medications_lifetime_length\n", - "878 medications_lifetime<=10^active_care_plans/immunizations_lifetime_cost\n", - "879 medications_lifetime<=medications_lifetime_cost\n", - "880 medications_lifetime<=1/2*healthcare_coverage/active_conditions\n", - "881 medications_lifetime<=ceil(10^(1/medications_lifetime_perc_covered))\n", - "882 medications_lifetime<=10^lifetime_care_plans\n", - "883 medications_lifetime<=floor(medications_lifetime_dispenses/active_care_plans)\n", - "884 medications_lifetime<=1/2*active_care_plan_length^2+1\n", - "885 medications_lifetime>=num_allergies\n", - "886 medications_lifetime>=active_care_plans-1\n", - "887 medications_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "888 medications_lifetime>=medications_active\n", - "889 medications_lifetime>=ceil(medications_lifetime_perc_covered)*lifetime_care_plan_length\n", - "890 medications_lifetime>=immunizations_lifetime_cost+2*longitude\n", - "891 medications_lifetime_cost<=medications_lifetime_length^2\n", - "892 medications_lifetime_cost<=encounters_lifetime_total_cost^2\n", - "893 medications_lifetime_cost<=-longitude*medications_lifetime_length\n", - "894 medications_lifetime_cost<=(healthcare_expenses-medications_lifetime_length)*active_care_plans\n", - "895 medications_lifetime_cost<=age^log(latitude)\n", - "896 medications_lifetime_cost<=encounters_lifetime_payer_coverage*e^encounters_count\n", - "897 medications_lifetime_cost<=(1/medications_lifetime_perc_covered)^lifetime_care_plan_length\n", - "898 medications_lifetime_cost<=10^medications_lifetime*encounters_lifetime_total_cost\n", - "899 medications_lifetime_cost<=healthcare_coverage^2/lifetime_condition_length\n", - "900 medications_lifetime_cost<=1/4*latitude^4\n", - "901 medications_lifetime_cost>=num_allergies\n", - "902 medications_lifetime_cost>=sqrt(healthcare_expenses*medications_lifetime_length)\n", - "903 medications_lifetime_cost>=(DALY+1)*medications_lifetime_length\n", - "904 medications_lifetime_cost>=maximum(Body_Height,mean_DALY)^2\n", - "905 medications_lifetime_cost>=-2*encounters_lifetime_total_cost+procedures_lifetime_cost\n", - "906 medications_lifetime_cost>=healthcare_coverage*log(immunizations_lifetime_cost)\n", - "907 medications_lifetime_cost>=medications_lifetime^e^immunizations_lifetime\n", - "908 medications_lifetime_cost>=2*age*medications_lifetime_dispenses\n", - "909 medications_lifetime_cost>=10^procedures_lifetime*immunizations_lifetime_cost\n", - "910 medications_lifetime_cost>=encounters_count^2*medications_active^2\n", - "911 medications_lifetime_cost<=-healthcare_coverage+1/2*healthcare_expenses\n", - "912 medications_lifetime_cost<=10^encounters_count*latitude\n", - "913 medications_lifetime_cost<=healthcare_expenses*medications_lifetime\n", - "914 medications_lifetime_cost<=healthcare_expenses/sqrt(medications_active)\n", - "915 medications_lifetime_cost<=10^active_care_plan_length/active_condition_length\n", - "916 medications_lifetime_cost<=e^encounters_count/procedures_lifetime\n", - "917 medications_lifetime_cost<=e^(encounters_lifetime_perc_covered*medications_lifetime_dispenses)\n", - "918 medications_lifetime_cost<=10^active_care_plans*healthcare_coverage\n", - "919 medications_lifetime_cost<=10^encounters_count/lifetime_condition_length\n", - "920 medications_lifetime_cost>=num_allergies\n", - "921 medications_lifetime_cost>=encounters_lifetime_total_cost*log(medications_lifetime_dispenses)/log(10)\n", - "922 medications_lifetime_cost>=QALY^2*active_conditions\n", - "923 medications_lifetime_cost>=1/2*DALY*procedures_lifetime_cost\n", - "924 medications_lifetime_cost>=10^procedures_lifetime*active_condition_length\n", - "925 medications_lifetime_cost>=1/2*encounters_lifetime_payer_coverage*lifetime_condition_length\n", - "926 medications_lifetime_cost>=age^(log(medications_lifetime_dispenses)/log(10))\n", - "927 medications_lifetime_cost>=medications_lifetime^2/encounters_lifetime_perc_covered^2\n", - "928 medications_lifetime_cost>=minimum(medications_lifetime_dispenses,Respiratory_rate)^2\n", - "929 medications_lifetime_cost>=medications_lifetime_dispenses^2*medications_lifetime_perc_covered^2\n", - "930 medications_lifetime_cost<=2*e^(10^active_conditions)\n", - "931 medications_lifetime_cost<=medications_lifetime_length^2\n", - "932 medications_lifetime_cost<=e^encounters_count/active_care_plan_length\n", - "933 medications_lifetime_cost<=encounters_lifetime_payer_coverage^sqrt(medications_lifetime)\n", - "934 medications_lifetime_cost<=sqrt(active_conditions)*healthcare_expenses\n", - "935 medications_lifetime_cost<=sqrt(10^(10^active_care_plans))\n", - "936 medications_lifetime_cost<=(e^QALY)^encounters_lifetime_perc_covered\n", - "937 medications_lifetime_cost<=2*latitude*medications_lifetime_length\n", - "938 medications_lifetime_cost<=(log(QALY)/log(10))^age\n", - "939 medications_lifetime_cost>=(2*age)^procedures_lifetime\n", - "940 medications_lifetime_cost>=(active_care_plan_length+1)*encounters_lifetime_payer_coverage\n", - "941 medications_lifetime_cost>=(2*active_condition_length)^medications_active\n", - "942 medications_lifetime_cost>=healthcare_expenses/sqrt(medications_lifetime_dispenses)\n", - "943 medications_lifetime_cost>=lifetime_condition_length^(log(encounters_count)/log(10))\n", - "944 medications_lifetime_cost>=encounters_lifetime_total_cost*lifetime_care_plans^2\n", - "945 medications_lifetime_cost>=2*immunizations_lifetime_cost^2\n", - "946 medications_lifetime_cost>=healthcare_coverage^2/encounters_lifetime_total_cost\n", - "947 medications_lifetime_cost>=healthcare_expenses^sqrt(medications_lifetime_perc_covered)\n", - "948 medications_lifetime_cost>=lifetime_care_plan_length^e^QOLS\n", - "949 medications_lifetime_perc_covered<=active_care_plans\n", - "950 medications_lifetime_perc_covered<=active_conditions\n", - "951 medications_lifetime_perc_covered<=immunizations_lifetime\n", - "952 medications_lifetime_perc_covered<=floor(encounters_count/DALY)\n", - "953 medications_lifetime_perc_covered<=(e^DALY-1)^2\n", - "954 medications_lifetime_perc_covered<=num_allergies^device_lifetime_length\n", - "955 medications_lifetime_perc_covered<=log(medications_lifetime)/log(10)\n", - "956 medications_lifetime_perc_covered<=abs(log(DALY)-1)\n", - "957 medications_lifetime_perc_covered<=device_lifetime_length^num_allergies\n", - "958 medications_lifetime_perc_covered<=log(latitude+1)/log(10)-1\n", - "959 medications_lifetime_perc_covered>=num_allergies\n", - "960 medications_lifetime_perc_covered>=log(encounters_lifetime_perc_covered*procedures_lifetime)\n", - "961 medications_lifetime_perc_covered>=log(medications_lifetime)/log(10)-lifetime_care_plans\n", - "962 medications_lifetime_perc_covered>=log(log(medications_lifetime))-1\n", - "963 medications_lifetime_perc_covered<=longitude^2/encounters_lifetime_total_cost\n", - "964 medications_lifetime_perc_covered<=active_conditions\n", - "965 medications_lifetime_perc_covered<=2*e^(-medications_active)\n", - "966 medications_lifetime_perc_covered<=minimum(healthcare_expenses,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "967 medications_lifetime_perc_covered<=num_allergies^procedures_lifetime\n", - "968 medications_lifetime_perc_covered<=ceil(QOLS)\n", - "969 medications_lifetime_perc_covered<=abs(log(1/2*immunizations_lifetime))/log(10)\n", - "970 medications_lifetime_perc_covered>=device_lifetime_length\n", - "971 medications_lifetime_perc_covered>=log(maximum(Erythrocytes____volume__in_Blood_by_Automated_count,mean_QOLS))/log(10)\n", - "972 medications_lifetime_perc_covered>=log(encounters_count/QALY)/log(10)\n", - "973 medications_lifetime_perc_covered>=maximum(Bilirubin_total__Mass_volume__in_Serum,Plasma,-healthcare_expenses)\n", - "974 medications_lifetime_perc_covered>=log(DALY)/log(10)-medications_active\n", - "975 medications_lifetime_perc_covered<=2*encounters_count/medications_lifetime\n", - "976 medications_lifetime_perc_covered<=1/sqrt(procedures_lifetime)\n", - "977 medications_lifetime_perc_covered<=1/2*log(encounters_count)/log(10)\n", - "978 medications_lifetime_perc_covered<=DALY\n", - "979 medications_lifetime_perc_covered<=floor(log(active_care_plan_length)/log(10))\n", - "980 medications_lifetime_perc_covered<=QOLS^(immunizations_lifetime-1)\n", - "981 medications_lifetime_perc_covered<=(log(active_conditions)/log(10))^encounters_lifetime_perc_covered\n", - "982 medications_lifetime_perc_covered<=1/2*encounters_lifetime_payer_coverage/medications_lifetime_dispenses\n", - "983 medications_lifetime_perc_covered<=immunizations_lifetime^num_allergies\n", - "984 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", - "985 medications_lifetime_perc_covered>=imaging_studies_lifetime\n", - "986 medications_lifetime_perc_covered>=log(encounters_lifetime_perc_covered)+num_allergies\n", - "987 medications_lifetime_perc_covered>=immunizations_lifetime/10^encounters_lifetime_perc_covered\n", - "988 medications_lifetime_perc_covered>=(1/(active_care_plan_length-latitude))\n", - "989 medications_lifetime_perc_covered>=log(maximum(Erythrocytes____volume__in_Blood_by_Automated_count,mean_QOLS))/log(10)\n", - "990 medications_lifetime_perc_covered>=(1/(lifetime_care_plan_length+longitude))\n", - "991 medications_lifetime_perc_covered>=log(active_care_plan_length/latitude)/log(10)\n", - "992 medications_lifetime_length<=medications_lifetime_cost/(active_conditions+1)\n", - "993 medications_lifetime_length<=medications_lifetime_cost\n", - "994 medications_lifetime_length<=healthcare_expenses/(lifetime_care_plans*lifetime_conditions)\n", - "995 medications_lifetime_length<=encounters_lifetime_total_cost^2/lifetime_care_plan_length^2\n", - "996 medications_lifetime_length<=10^active_condition_length/QALY\n", - "997 medications_lifetime_length<=2*encounters_lifetime_total_cost/procedures_lifetime\n", - "998 medications_lifetime_length<=2*encounters_lifetime_perc_covered^longitude\n", - "999 medications_lifetime_length<=(encounters_lifetime_payer_coverage-1)*active_conditions\n", - "1000 medications_lifetime_length<=minimum(healthcare_expenses,10^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", - "1001 medications_lifetime_length<=healthcare_expenses^encounters_lifetime_perc_covered+encounters_lifetime_payer_coverage\n", - "1002 medications_lifetime_length>=num_allergies\n", - "1003 medications_lifetime_length>=4*medications_lifetime_dispenses\n", - "1004 medications_lifetime_length>=(medications_lifetime_cost-1)/lifetime_care_plan_length\n", - "1005 medications_lifetime_length>=encounters_lifetime_total_cost/log(medications_lifetime_dispenses)\n", - "1006 medications_lifetime_length>=4*medications_lifetime_dispenses\n", - "1007 medications_lifetime_length<=1/2*healthcare_coverage-longitude\n", - "1008 medications_lifetime_length<=medications_lifetime_cost\n", - "1009 medications_lifetime_length<=1/4*(medications_lifetime_dispenses-2)^2\n", - "1010 medications_lifetime_length<=10^(log(medications_lifetime_cost)/log(10)-1)\n", - "1011 medications_lifetime_length<=10^(2*e^encounters_lifetime_perc_covered)\n", - "1012 medications_lifetime_length<=(medications_lifetime-medications_lifetime_dispenses)^2\n", - "1013 medications_lifetime_length<=longitude^2-encounters_lifetime_payer_coverage\n", - "1014 medications_lifetime_length<=(encounters_lifetime_total_cost+1)/immunizations_lifetime\n", - "1015 medications_lifetime_length<=healthcare_expenses^medications_lifetime/medications_lifetime_cost\n", - "1016 medications_lifetime_length>=num_allergies\n", - "1017 medications_lifetime_length>=4*medications_lifetime_dispenses\n", - "1018 medications_lifetime_length>=immunizations_lifetime_cost*log(healthcare_expenses)/log(10)\n", - "1019 medications_lifetime_length>=latitude^2*num_allergies^2\n", - "1020 medications_lifetime_length>=encounters_lifetime_payer_coverage*log(active_care_plans)/log(10)\n", - "1021 medications_lifetime_length>=-encounters_lifetime_payer_coverage+e^lifetime_care_plans\n", - "1022 medications_lifetime_length>=log(active_condition_length)*medications_lifetime_dispenses\n", - "1023 medications_lifetime_length>=DALY*ceil(immunizations_lifetime_cost)\n", - "1024 medications_lifetime_length>=log(encounters_lifetime_total_cost)*medications_lifetime_dispenses/log(10)\n", - "1025 medications_lifetime_length>=latitude^2*medications_lifetime_perc_covered^2\n", - "1026 medications_lifetime_length<=-encounters_lifetime_total_cost+healthcare_coverage-1\n", - "1027 medications_lifetime_length<=medications_lifetime_cost\n", - "1028 medications_lifetime_length<=QOLS^2*medications_lifetime_dispenses^2\n", - "1029 medications_lifetime_length<=encounters_lifetime_payer_coverage/sqrt(medications_lifetime_perc_covered)\n", - "1030 medications_lifetime_length<=encounters_lifetime_payer_coverage+e^active_condition_length\n", - "1031 medications_lifetime_length<=1/2*active_condition_length*encounters_lifetime_payer_coverage\n", - "1032 medications_lifetime_length<=encounters_lifetime_payer_coverage*e^medications_lifetime\n", - "1033 medications_lifetime_length<=longitude^2/QOLS^2\n", - "1034 medications_lifetime_length<=log(QALY^medications_lifetime_dispenses)\n", - "1035 medications_lifetime_length>=device_lifetime_length\n", - "1036 medications_lifetime_length>=log(latitude)*medications_lifetime_dispenses\n", - "1037 medications_lifetime_length>=log(encounters_lifetime_total_cost)*medications_lifetime_dispenses/log(10)\n", - "1038 medications_lifetime_length>=log(active_condition_length)*medications_lifetime_dispenses\n", - "1039 medications_lifetime_length>=encounters_lifetime_payer_coverage*log(medications_active)\n", - "1040 medications_lifetime_length>=minimum(procedures_lifetime_cost,e^Calcium)\n", - "1041 medications_lifetime_length>=1/2*medications_lifetime_cost^encounters_lifetime_perc_covered\n", - "1042 medications_lifetime_length>=1/2*medications_lifetime_cost/lifetime_condition_length\n", - "1043 medications_lifetime_dispenses<=healthcare_coverage\n", - "1044 medications_lifetime_dispenses<=medications_lifetime_length/sqrt(DALY)\n", - "1045 medications_lifetime_dispenses<=e^encounters_count-lifetime_care_plan_length\n", - "1046 medications_lifetime_dispenses<=e^active_conditions/immunizations_lifetime\n", - "1047 medications_lifetime_dispenses<=10^(sqrt(active_conditions)+1)\n", - "1048 medications_lifetime_dispenses<=e^active_care_plan_length\n", - "1049 medications_lifetime_dispenses<=(active_condition_length-1)*lifetime_care_plan_length\n", - "1050 medications_lifetime_dispenses<=floor(1/4*medications_lifetime_length)\n", - "1051 medications_lifetime_dispenses<=sqrt(healthcare_coverage*lifetime_condition_length)\n", - "1052 medications_lifetime_dispenses<=active_condition_length^floor(DALY)\n", - "1053 medications_lifetime_dispenses>=num_allergies\n", - "1054 medications_lifetime_dispenses>=medications_lifetime\n", - "1055 medications_lifetime_dispenses>=active_care_plan_length^2-encounters_lifetime_payer_coverage\n", - "1056 medications_lifetime_dispenses>=2*immunizations_lifetime_cost*medications_active\n", - "1057 medications_lifetime_dispenses>=lifetime_condition_length*log(medications_lifetime_length)/log(10)\n", - "1058 medications_lifetime_dispenses>=floor(medications_lifetime/encounters_lifetime_perc_covered)\n", - "1059 medications_lifetime_dispenses>=log(DALY)*medications_lifetime\n", - "1060 medications_lifetime_dispenses>=10^medications_active*medications_lifetime_perc_covered\n", - "1061 medications_lifetime_dispenses>=medications_lifetime_perc_covered^2*procedures_lifetime_cost\n", - "1062 medications_lifetime_dispenses>=medications_lifetime_length/log(immunizations_lifetime_cost)\n", - "1063 medications_lifetime_dispenses<=sqrt(healthcare_expenses/medications_lifetime_perc_covered)\n", - "1064 medications_lifetime_dispenses<=medications_lifetime_cost\n", - "1065 medications_lifetime_dispenses<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^lifetime_conditions)\n", - "1066 medications_lifetime_dispenses<=encounters_lifetime_total_cost*log(10)/log(lifetime_condition_length)\n", - "1067 medications_lifetime_dispenses<=medications_lifetime_length/log(latitude)\n", - "1068 medications_lifetime_dispenses<=QALY^2*active_care_plans\n", - "1069 medications_lifetime_dispenses<=10^sqrt(active_care_plan_length)\n", - "1070 medications_lifetime_dispenses<=(latitude-lifetime_care_plans)^2\n", - "1071 medications_lifetime_dispenses<=medications_lifetime_length/log(QALY)\n", - "1072 medications_lifetime_dispenses>=num_allergies\n", - "1073 medications_lifetime_dispenses>=log(DALY)*medications_lifetime\n", - "1074 medications_lifetime_dispenses>=medications_lifetime_length/(encounters_count+1)\n", - "1075 medications_lifetime_dispenses>=latitude*log(10)/log(DALY)\n", - "1076 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost)-latitude\n", - "1077 medications_lifetime_dispenses>=DALY^2-QALY\n", - "1078 medications_lifetime_dispenses>=medications_active^log(encounters_lifetime_total_cost)\n", - "1079 medications_lifetime_dispenses<=encounters_lifetime_total_cost\n", - "1080 medications_lifetime_dispenses<=encounters_lifetime_payer_coverage*e^(-encounters_lifetime_perc_covered)\n", - "1081 medications_lifetime_dispenses<=medications_lifetime_cost\n", - "1082 medications_lifetime_dispenses<=ceil(e^(lifetime_care_plans^2))\n", - "1083 medications_lifetime_dispenses<=(latitude-medications_active)^2\n", - "1084 medications_lifetime_dispenses<=1/2*10^log(encounters_count)\n", - "1085 medications_lifetime_dispenses<=1/2*(QALY+1)^2\n", - "1086 medications_lifetime_dispenses<=sqrt(healthcare_expenses)/immunizations_lifetime\n", - "1087 medications_lifetime_dispenses<=medications_lifetime_length/log(latitude)\n", - "1088 medications_lifetime_dispenses>=num_allergies\n", - "1089 medications_lifetime_dispenses>=medications_lifetime_length/(active_conditions+1)\n", - "1090 medications_lifetime_dispenses>=encounters_lifetime_total_cost/(latitude-1)\n", - "1091 medications_lifetime_dispenses>=(procedures_lifetime_cost-1)/lifetime_care_plan_length\n", - "1092 medications_lifetime_dispenses>=medications_lifetime_length/log(immunizations_lifetime_cost)\n", - "1093 medications_lifetime_dispenses>=encounters_lifetime_total_cost/10^DALY\n", - "1094 medications_lifetime_dispenses>=ceil(maximum(Platelets____volume__in_Blood_by_Automated_count,mean_DALY))\n", - "1095 medications_lifetime_dispenses>=ceil(immunizations_lifetime_cost-lifetime_condition_length)\n", - "1096 medications_lifetime_dispenses>=medications_lifetime_length^encounters_lifetime_perc_covered-1\n", - "1097 medications_active<=active_care_plans\n", - "1098 medications_active<=ceil(log(latitude)/log(10))\n", - "1099 medications_active<=e^healthcare_coverage\n", - "1100 medications_active<=ceil(1/2*lifetime_care_plans)\n", - "1101 medications_active<=healthcare_expenses^QOLS\n", - "1102 medications_active<=active_conditions-num_allergies\n", - "1103 medications_active>=device_lifetime_length\n", - "1104 medications_active>=num_allergies-2\n", - "1105 medications_active>=ceil(medications_lifetime_perc_covered)\n", - "1106 medications_active>=immunizations_lifetime-num_allergies\n", - "1107 medications_active>=sqrt(procedures_lifetime)\n", - "1108 medications_active>=-immunizations_lifetime_cost+log(medications_lifetime)\n", - "1109 medications_active>=floor(active_care_plan_length)-lifetime_condition_length\n", - "1110 medications_active>=minimum(active_care_plans,Creatinine)-1\n", - "1111 medications_active>=floor(age+longitude)\n", - "1112 medications_active<=active_care_plans\n", - "1113 medications_active<=medications_lifetime\n", - "1114 medications_active<=active_care_plans-num_allergies\n", - "1115 medications_active<=active_conditions-1\n", - "1116 medications_active<=log(floor(DALY))^2\n", - "1117 medications_active<=floor(log(latitude))\n", - "1118 medications_active<=DALY*healthcare_expenses\n", - "1119 medications_active>=num_allergies\n", - "1120 medications_active>=(active_care_plans+1)*imaging_studies_lifetime\n", - "1121 medications_active>=2*num_allergies\n", - "1122 medications_active>=immunizations_lifetime^2-1\n", - "1123 medications_active>=-encounters_lifetime_payer_coverage+medications_lifetime\n", - "1124 medications_active>=log(medications_lifetime_cost^imaging_studies_lifetime)/log(10)\n", - "1125 medications_active>=medications_lifetime_dispenses/(procedures_lifetime_cost-1)\n", - "1126 medications_active<=active_care_plans\n", - "1127 medications_active<=medications_lifetime\n", - "1128 medications_active<=floor(DALY)\n", - "1129 medications_active<=floor(log(latitude))\n", - "1130 medications_active<=ceil(10^encounters_lifetime_perc_covered)\n", - "1131 medications_active<=(active_care_plans-procedures_lifetime)^2\n", - "1132 medications_active<=(active_care_plans-1)^2\n", - "1133 medications_active>=device_lifetime_length\n", - "1134 medications_active>=-active_conditions+2*procedures_lifetime\n", - "1135 medications_active>=num_allergies-1\n", - "1136 medications_active>=sqrt(immunizations_lifetime)\n", - "1137 medications_active>=-DALY+lifetime_care_plans+1\n", - "1138 medications_active>=-active_conditions+lifetime_conditions\n", - "1139 medications_active>=minimum(active_care_plans,immunizations_lifetime)\n", - "1140 medications_active>=(active_care_plans-1)*num_allergies\n", - "1141 procedures_lifetime<=e^immunizations_lifetime\n", - "1142 procedures_lifetime<=active_care_plan_length\n", - "1143 procedures_lifetime<=procedures_lifetime_cost\n", - "1144 procedures_lifetime<=ceil(DALY)\n", - "1145 procedures_lifetime<=healthcare_expenses^medications_lifetime_perc_covered\n", - "1146 procedures_lifetime<=2*10^imaging_studies_lifetime\n", - "1147 procedures_lifetime>=device_lifetime_length\n", - "1148 procedures_lifetime>=imaging_studies_lifetime*lifetime_care_plans\n", - "1149 procedures_lifetime>=2*immunizations_lifetime\n", - "1150 procedures_lifetime>=minimum(immunizations_lifetime_cost,floor(Creatinine))\n", - "1151 procedures_lifetime<=active_care_plans\n", - "1152 procedures_lifetime<=immunizations_lifetime\n", - "1153 procedures_lifetime<=procedures_lifetime_cost\n", - "1154 procedures_lifetime>=device_lifetime_length\n", - "1155 procedures_lifetime>=imaging_studies_lifetime\n", - "1156 procedures_lifetime>=-active_conditions+num_allergies\n", - "1157 procedures_lifetime>=-imaging_studies_lifetime+immunizations_lifetime\n", - "1158 procedures_lifetime>=ceil(2*log(medications_active)/log(10))\n", - "1159 procedures_lifetime>=immunizations_lifetime^2-active_care_plans\n", - "1160 procedures_lifetime<=floor(log(healthcare_coverage)/log(10))\n", - "1161 procedures_lifetime<=encounters_count\n", - "1162 procedures_lifetime<=encounters_lifetime_payer_coverage\n", - "1163 procedures_lifetime<=procedures_lifetime_cost\n", - "1164 procedures_lifetime<=-active_care_plans+encounters_count\n", - "1165 procedures_lifetime<=10^immunizations_lifetime\n", - "1166 procedures_lifetime<=ceil(1/active_care_plans)\n", - "1167 procedures_lifetime>=device_lifetime_length\n", - "1168 procedures_lifetime>=minimum(num_allergies,immunizations_lifetime)\n", - "1169 procedures_lifetime>=minimum(immunizations_lifetime,medications_active)\n", - "1170 procedures_lifetime>=floor(log(procedures_lifetime_cost)/log(10)-1)\n", - "1171 procedures_lifetime>=minimum(procedures_lifetime_cost,floor(Creatinine))\n", - "1172 procedures_lifetime_cost<=sqrt(QALY)*medications_lifetime_cost\n", - "1173 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1174 procedures_lifetime_cost<=medications_lifetime_cost^2\n", - "1175 procedures_lifetime_cost<=sqrt(2)*sqrt(10^lifetime_condition_length)\n", - "1176 procedures_lifetime_cost<=(procedures_lifetime+1)*healthcare_coverage\n", - "1177 procedures_lifetime_cost<=minimum(healthcare_expenses,High_Density_Lipoprotein_Cholesterol^2)\n", - "1178 procedures_lifetime_cost<=e^(healthcare_coverage/medications_lifetime_dispenses)\n", - "1179 procedures_lifetime_cost>=num_allergies\n", - "1180 procedures_lifetime_cost>=sqrt(device_lifetime_length)*encounters_count\n", - "1181 procedures_lifetime_cost>=2*encounters_lifetime_payer_coverage-healthcare_coverage\n", - "1182 procedures_lifetime_cost>=10^procedures_lifetime*num_allergies\n", - "1183 procedures_lifetime_cost>=2*lifetime_condition_length*num_allergies\n", - "1184 procedures_lifetime_cost>=log(10^procedures_lifetime)^2\n", - "1185 procedures_lifetime_cost>=e^active_care_plans*procedures_lifetime\n", - "1186 procedures_lifetime_cost<=2*healthcare_expenses/active_care_plan_length\n", - "1187 procedures_lifetime_cost<=2*healthcare_coverage\n", - "1188 procedures_lifetime_cost<=10^lifetime_care_plans*lifetime_condition_length\n", - "1189 procedures_lifetime_cost<=medications_lifetime_cost^2\n", - "1190 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1191 procedures_lifetime_cost<=(Body_Mass_Index^2)^procedures_lifetime\n", - "1192 procedures_lifetime_cost<=healthcare_coverage^2/lifetime_condition_length^2\n", - "1193 procedures_lifetime_cost<=10^lifetime_conditions+healthcare_coverage\n", - "1194 procedures_lifetime_cost<=healthcare_expenses/(immunizations_lifetime*medications_lifetime_dispenses)\n", - "1195 procedures_lifetime_cost>=num_allergies\n", - "1196 procedures_lifetime_cost>=sqrt(procedures_lifetime)^active_conditions\n", - "1197 procedures_lifetime_cost>=-10^DALY+medications_lifetime_dispenses\n", - "1198 procedures_lifetime_cost>=10^(-healthcare_coverage+lifetime_conditions)\n", - "1199 procedures_lifetime_cost>=2*immunizations_lifetime_cost-medications_lifetime_cost\n", - "1200 procedures_lifetime_cost>=-2*immunizations_lifetime_cost+2*medications_lifetime\n", - "1201 procedures_lifetime_cost<=age^2*encounters_count^2\n", - "1202 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1203 procedures_lifetime_cost<=minimum(healthcare_expenses,10^mean_Potassium)\n", - "1204 procedures_lifetime_cost<=healthcare_coverage^2/active_condition_length^2\n", - "1205 procedures_lifetime_cost<=healthcare_expenses*lifetime_care_plans\n", - "1206 procedures_lifetime_cost<=10^maximum(active_care_plans,procedures_lifetime)\n", - "1207 procedures_lifetime_cost<=healthcare_expenses^QOLS*encounters_lifetime_payer_coverage\n", - "1208 procedures_lifetime_cost>=num_allergies\n", - "1209 procedures_lifetime_cost>=(immunizations_lifetime-1)*healthcare_coverage\n", - "1210 procedures_lifetime_cost>=procedures_lifetime^sqrt(encounters_count)\n", - "1211 procedures_lifetime_cost>=DALY^2*procedures_lifetime\n", - "1212 procedures_lifetime_cost>=healthcare_expenses*procedures_lifetime/encounters_lifetime_payer_coverage\n", - "1213 QOLS<=active_conditions\n", - "1214 QOLS<=mean_QOLS\n", - "1215 QOLS>=mean_QOLS\n", - "1216 QOLS<=mean_QOLS\n", - "1217 QOLS<=medications_lifetime\n", - "1218 QOLS>=mean_QOLS\n", - "1219 QOLS<=mean_QOLS\n", - "1220 QOLS>=mean_QOLS\n", - "1221 QALY<=mean_QALY\n", - "1222 QALY>=mean_QALY\n", - "1223 QALY<=mean_QALY\n", - "1224 QALY>=mean_QALY\n", - "1225 QALY<=mean_QALY\n", - "1226 QALY>=mean_QALY\n", - "1227 DALY<=mean_DALY\n", - "1228 DALY>=QOLS\n", - "1229 DALY>=mean_DALY\n", - "1230 DALY<=mean_DALY\n", - "1231 DALY<=active_condition_length\n", - "1232 DALY>=mean_DALY\n", - "1233 DALY<=mean_DALY\n", - "1234 DALY>=device_lifetime_length\n", - "1235 DALY>=mean_DALY\n", - "1236 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure\n", - "1237 Diastolic_Blood_Pressure>=ceil(mean_Diastolic_Blood_Pressure)\n", - "1238 Diastolic_Blood_Pressure>=1/2*encounters_count+procedures_lifetime\n", - "1239 Diastolic_Blood_Pressure>=Systolic_Blood_Pressure*log(immunizations_lifetime)\n", - "1240 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure\n", - "1241 Diastolic_Blood_Pressure>=(active_care_plans-1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1242 Diastolic_Blood_Pressure>=minimum(encounters_count,ceil(mean_Heart_rate))\n", - "1243 mean_DALY<=DALY\n", - "1244 mean_DALY>=num_allergies\n", - "1245 mean_DALY>=DALY\n", - "1246 mean_DALY<=DALY\n", - "1247 mean_DALY>=num_allergies\n", - "1248 mean_DALY>=DALY\n", - "1249 mean_DALY<=active_care_plan_length\n", - "1250 mean_DALY<=DALY\n", - "1251 mean_DALY>=num_allergies\n", - "1252 mean_DALY>=DALY\n", - "1253 mean_QALY<=QALY\n", - "1254 mean_QALY>=QALY\n", - "1255 mean_QALY<=QALY\n", - "1256 mean_QALY>=QALY\n", - "1257 mean_QALY<=QALY\n", - "1258 mean_QALY>=QALY\n", - "1259 mean_QOLS<=QOLS\n", - "1260 mean_QOLS<=encounters_count\n", - "1261 mean_QOLS>=QOLS\n", - "1262 mean_QOLS<=lifetime_care_plans\n", - "1263 mean_QOLS<=active_conditions\n", - "1264 mean_QOLS<=QOLS\n", - "1265 mean_QOLS>=QOLS\n", - "1266 mean_QOLS<=active_conditions\n", - "1267 mean_QOLS<=QOLS\n", - "1268 mean_QOLS>=QOLS\n", + "1 healthcare_expenses<=latitude^4\n", + "2 healthcare_expenses<=10^sqrt(latitude)\n", + "3 healthcare_expenses<=Body_Height^2*Heart_rate\n", + "4 healthcare_expenses<=e^(2*Urea_Nitrogen)\n", + "5 healthcare_expenses<=floor(latitude)^Potassium\n", + "6 healthcare_expenses<=(1/medications_lifetime_perc_covered)^Diastolic_Blood_Pressure\n", + "7 healthcare_expenses<=Total_Cholesterol*e^Microalbumin_Creatinine_Ratio\n", + "8 healthcare_expenses<=Chloride*Sodium^2\n", + "9 healthcare_expenses<=maximum(medications_lifetime_cost,10^healthcare_coverage)\n", + "10 healthcare_expenses<=healthcare_coverage^2+medications_lifetime_cost\n", + "11 healthcare_expenses<=(log(device_lifetime_length)/log(10))^latitude\n", + "12 healthcare_expenses<=Body_Height^2*Diastolic_Blood_Pressure\n", + "13 healthcare_expenses<=maximum(medications_lifetime_cost,healthcare_coverage^2)\n", + "14 healthcare_expenses<=Body_Height*Chloride^2\n", + "15 healthcare_expenses<=healthcare_coverage^2/procedures_lifetime\n", + "16 healthcare_expenses<=floor(High_Density_Lipoprotein_Cholesterol)^Albumin__Mass_volume__in_Serum,Plasma\n", + "17 healthcare_expenses<=(1/2*Diastolic_Blood_Pressure)^Potassium\n", + "18 healthcare_expenses<=sqrt(latitude)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "19 healthcare_expenses<=e^age/encounters_lifetime_payer_coverage\n", + "20 healthcare_expenses<=log(QALY)^Respiratory_rate\n", + "21 healthcare_expenses<=Sodium*Triglycerides^2\n", + "22 healthcare_expenses<=(log(active_condition_length)/log(10))^Chloride\n", + "23 healthcare_expenses<=Total_Cholesterol^2*age\n", + "24 healthcare_expenses<=encounters_lifetime_total_cost^2/medications_lifetime_perc_covered\n", + "25 healthcare_expenses<=Respiratory_rate*encounters_lifetime_total_cost^2\n", + "26 healthcare_expenses<=(log(QALY)/log(10))^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "27 healthcare_expenses<=(log(encounters_lifetime_payer_coverage)/log(10))^age\n", + "28 healthcare_expenses<=(medications_lifetime_perc_covered^2)^longitude\n", + "29 healthcare_expenses<=Body_Height*Systolic_Blood_Pressure^2\n", + "30 healthcare_expenses<=(log(Total_Cholesterol)/log(10))^mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "31 healthcare_expenses<=Triglycerides^2*mean_Systolic_Blood_Pressure\n", + "32 healthcare_expenses<=e^QALY/lifetime_condition_length\n", + "33 healthcare_expenses<=(log(Respiratory_rate)/log(10))^mean_Total_Cholesterol\n", + "34 healthcare_expenses<=e^Respiratory_rate/imaging_studies_lifetime\n", + "35 healthcare_expenses<=log(Body_Mass_Index)^Respiratory_rate\n", + "36 healthcare_expenses<=(1/2*Heart_rate)^mean_Potassium\n", + "37 healthcare_expenses<=(log(Body_Mass_Index)/log(10))^latitude\n", + "38 healthcare_expenses<=sqrt(Body_Mass_Index)^Calcium\n", + "39 healthcare_expenses<=Sodium^2*mean_Chloride\n", + "40 healthcare_expenses<=(log(Diastolic_Blood_Pressure)/log(10))^QALY\n", + "41 healthcare_expenses<=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Low_Density_Lipoprotein_Cholesterol\n", + "42 healthcare_expenses<=10^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/High_Density_Lipoprotein_Cholesterol\n", + "43 healthcare_expenses<=10^Urea_Nitrogen/medications_lifetime\n", + "44 healthcare_expenses<=(Globulin__Mass_volume__in_Serum_by_calculation+1)^Urea_Nitrogen\n", + "45 healthcare_expenses<=(2*Estimated_Glomerular_Filtration_Rate)^Potassium\n", + "46 healthcare_expenses>=e^medications_lifetime_perc_covered*healthcare_coverage\n", + "47 healthcare_expenses>=medications_lifetime^2+encounters_lifetime_total_cost\n", + "48 healthcare_expenses>=minimum(medications_lifetime_cost,10^medications_active)\n", + "49 healthcare_expenses>=2*longitude^2\n", + "50 healthcare_expenses>=encounters_lifetime_perc_covered^2*medications_lifetime_cost\n", + "51 healthcare_expenses>=(lifetime_care_plans+1)*encounters_lifetime_total_cost\n", + "52 healthcare_expenses>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "53 healthcare_expenses>=immunizations_lifetime_cost^2+Body_Mass_Index\n", + "54 healthcare_expenses>=encounters_lifetime_total_cost+1/2*procedures_lifetime_cost\n", + "55 healthcare_expenses>=(encounters_lifetime_perc_covered+1)^mean_Carbon_Dioxide\n", + "56 healthcare_expenses>=lifetime_condition_length^2-medications_lifetime_cost\n", + "57 healthcare_expenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*e^procedures_lifetime\n", + "58 healthcare_expenses>=medications_lifetime*sqrt(medications_lifetime_cost)\n", + "59 healthcare_expenses>=10^Potassium+healthcare_coverage\n", + "60 healthcare_expenses>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*healthcare_coverage\n", + "61 healthcare_expenses>=Triglycerides^2/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "62 healthcare_expenses>=4*encounters_lifetime_total_cost\n", + "63 healthcare_expenses>=(medications_lifetime_cost+1)*num_allergies\n", + "64 healthcare_expenses>=log(QALY)^lifetime_care_plans\n", + "65 healthcare_expenses>=(Leukocytes____volume__in_Blood_by_Automated_count-1)^DALY\n", + "66 healthcare_expenses>=e^(10^QOLS)\n", + "67 healthcare_expenses>=e^(10^encounters_lifetime_perc_covered)\n", + "68 healthcare_expenses>=DALY*device_lifetime_length^2\n", + "69 healthcare_expenses>=(healthcare_coverage+1)*medications_active\n", + "70 healthcare_expenses>=log(Creatinine)*procedures_lifetime_cost/log(10)\n", + "71 healthcare_expenses>=(procedures_lifetime_cost+1)*device_lifetime_length\n", + "72 healthcare_expenses>=(2*procedures_lifetime_cost)^QOLS\n", + "73 healthcare_expenses>=4*Diastolic_Blood_Pressure^2\n", + "74 healthcare_expenses>=ceil(DALY)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "75 healthcare_expenses>=(1/2*latitude)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "76 healthcare_expenses>=10^medications_active/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "77 healthcare_expenses>=Respiratory_rate^mean_Creatinine\n", + "78 healthcare_expenses>=log(Body_temperature)^lifetime_conditions\n", + "79 healthcare_expenses>=ceil(MCV__Entitic_volume__by_Automated_count)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "80 healthcare_expenses>=2*encounters_count*medications_lifetime\n", + "81 healthcare_expenses>=(2*encounters_lifetime_perc_covered)^Estimated_Glomerular_Filtration_Rate\n", + "82 healthcare_expenses>=sqrt(Body_Weight)^Potassium\n", + "83 healthcare_expenses>=longitude^2+healthcare_coverage\n", + "84 healthcare_expenses>=(2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "85 healthcare_expenses>=1/2*healthcare_coverage*lifetime_care_plans\n", + "86 healthcare_expenses>=sqrt(Microalbumin_Creatinine_Ratio)^active_care_plans\n", + "87 healthcare_expenses>=(active_care_plans^2)^Creatinine\n", + "88 healthcare_expenses>=(medications_lifetime_length^2)^encounters_lifetime_perc_covered\n", + "89 healthcare_expenses>=(1/2*Potassium)^active_conditions\n", + "90 healthcare_expenses>=Glomerular_filtration_rate_1_73_sq_M_predicted^2*immunizations_lifetime_cost\n", + "91 healthcare_expenses>=(immunizations_lifetime_cost+1)^immunizations_lifetime\n", + "92 healthcare_expenses>=DALY*e^lifetime_care_plans\n", + "93 healthcare_expenses>=10^active_care_plans/Protein__Mass_volume__in_Serum,Plasma\n", + "94 healthcare_expenses>=minimum(medications_lifetime_cost,1/active_care_plans)\n", + "95 healthcare_expenses>=(lifetime_care_plan_length-1)^longitude\n", + "96 healthcare_expenses>=1/2*medications_lifetime_cost/medications_lifetime\n", + "97 healthcare_expenses>=Triglycerides^2*device_lifetime_length\n", + "98 healthcare_expenses>=sqrt(device_lifetime_length)*healthcare_coverage\n", + "99 healthcare_expenses>=(e^medications_lifetime_perc_covered)^Respiratory_rate\n", + "100 healthcare_expenses>=(1/Creatinine)^Body_Mass_Index\n", + "101 healthcare_expenses>=2*procedures_lifetime_cost/procedures_lifetime\n", + "102 healthcare_expenses>=(QOLS+1)^Respiratory_rate\n", + "103 healthcare_expenses>=(Carbon_Dioxide-1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "104 healthcare_expenses>=(Body_Height^2)^QOLS\n", + "105 healthcare_expenses>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^longitude\n", + "106 healthcare_expenses>=floor(Leukocytes____volume__in_Blood_by_Automated_count)^active_conditions\n", + "107 healthcare_expenses>=sqrt(Microalbumin_Creatinine_Ratio)^Potassium\n", + "108 healthcare_coverage<=10^sqrt(QALY)\n", + "109 healthcare_coverage<=log(Microalbumin_Creatinine_Ratio)^Urea_Nitrogen\n", + "110 healthcare_coverage<=(2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "111 healthcare_coverage<=10^sqrt(Body_Mass_Index)\n", + "112 healthcare_coverage<=age*latitude^2\n", + "113 healthcare_coverage<=10^lifetime_conditions/Creatinine\n", + "114 healthcare_coverage<=1/2*Body_Mass_Index*encounters_lifetime_total_cost\n", + "115 healthcare_coverage<=encounters_lifetime_payer_coverage+1/2*healthcare_expenses\n", + "116 healthcare_coverage<=(healthcare_expenses-1)/medications_active\n", + "117 healthcare_coverage<=encounters_lifetime_total_cost^2/active_care_plans\n", + "118 healthcare_coverage<=Microalbumin_Creatinine_Ratio*e^lifetime_conditions\n", + "119 healthcare_coverage<=(Chloride+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "120 healthcare_coverage<=encounters_lifetime_total_cost^2/active_conditions\n", + "121 healthcare_coverage<=Albumin__Mass_volume__in_Serum,Plasma^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "122 healthcare_coverage<=DALY*Sodium^2\n", + "123 healthcare_coverage<=(2*active_condition_length)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "124 healthcare_coverage<=2*Total_Cholesterol*lifetime_condition_length\n", + "125 healthcare_coverage<=Body_Height+e^Microalbumin_Creatinine_Ratio\n", + "126 healthcare_coverage<=(Potassium^2)^mean_Potassium\n", + "127 healthcare_coverage<=Systolic_Blood_Pressure^2/imaging_studies_lifetime\n", + "128 healthcare_coverage<=(10^QALY)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "129 healthcare_coverage<=sqrt(Body_Height)*encounters_lifetime_total_cost\n", + "130 healthcare_coverage<=(log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "131 healthcare_coverage<=sqrt(Potassium)^Estimated_Glomerular_Filtration_Rate\n", + "132 healthcare_coverage<=encounters_lifetime_total_cost^2/lifetime_conditions\n", + "133 healthcare_coverage<=10^Potassium*Urea_Nitrogen\n", + "134 healthcare_coverage<=Body_Mass_Index^2*Sodium\n", + "135 healthcare_coverage<=(log(latitude)/log(10))^QALY\n", + "136 healthcare_coverage<=maximum(medications_lifetime_cost,Systolic_Blood_Pressure^2)\n", + "137 healthcare_coverage<=age^2*latitude\n", + "138 healthcare_coverage<=encounters_lifetime_total_cost^2/encounters_count\n", + "139 healthcare_coverage<=2*lifetime_condition_length*mean_Total_Cholesterol\n", + "140 healthcare_coverage<=Respiratory_rate*e^Calcium\n", + "141 healthcare_coverage<=sqrt(healthcare_expenses)*mean_Total_Cholesterol\n", + "142 healthcare_coverage<=2*healthcare_expenses/active_care_plans\n", + "143 healthcare_coverage<=2*healthcare_expenses/lifetime_care_plans\n", + "144 healthcare_coverage<=Glomerular_filtration_rate_1_73_sq_M_predicted*age^2\n", + "145 healthcare_coverage<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)^Calcium\n", + "146 healthcare_coverage<=encounters_lifetime_total_cost^2/procedures_lifetime\n", + "147 healthcare_coverage<=Potassium*lifetime_condition_length^2\n", + "148 healthcare_coverage<=log(Potassium)^QALY\n", + "149 healthcare_coverage<=encounters_lifetime_payer_coverage^2/encounters_lifetime_perc_covered\n", + "150 healthcare_coverage<=10^medications_lifetime/num_allergies\n", + "151 healthcare_coverage<=1/2*medications_lifetime_cost/num_allergies\n", + "152 healthcare_coverage<=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_cost/log(10)\n", + "153 healthcare_coverage<=2*medications_lifetime_cost/medications_lifetime_perc_covered\n", + "154 healthcare_coverage<=log(QALY)^mean_Calcium\n", + "155 healthcare_coverage<=10^DALY/device_lifetime_length\n", + "156 healthcare_coverage<=Glucose^2*mean_Urea_Nitrogen\n", + "157 healthcare_coverage<=e^Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "158 healthcare_coverage<=Microalbumin_Creatinine_Ratio^2*Total_Cholesterol\n", + "159 healthcare_coverage>=num_allergies\n", + "160 healthcare_coverage>=2*encounters_lifetime_payer_coverage*encounters_lifetime_perc_covered\n", + "161 healthcare_coverage>=4*procedures_lifetime^2\n", + "162 healthcare_coverage>=device_lifetime_length^2+encounters_lifetime_payer_coverage\n", + "163 healthcare_coverage>=age*sqrt(encounters_lifetime_payer_coverage)\n", + "164 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*encounters_lifetime_perc_covered\n", + "165 healthcare_coverage>=sqrt(healthcare_expenses)-encounters_lifetime_total_cost\n", + "166 healthcare_coverage>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*Chloride\n", + "167 healthcare_coverage>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*lifetime_care_plan_length\n", + "168 healthcare_coverage>=-immunizations_lifetime_cost+lifetime_care_plan_length+1\n", + "169 healthcare_coverage>=(1/2*num_allergies)^Respiratory_rate\n", + "170 healthcare_coverage>=encounters_lifetime_total_cost*sqrt(medications_lifetime_perc_covered)\n", + "171 healthcare_coverage>=2*age*procedures_lifetime\n", + "172 healthcare_coverage>=log(encounters_lifetime_payer_coverage)+medications_lifetime_dispenses\n", + "173 healthcare_coverage>=(latitude+1)*device_lifetime_length\n", + "174 healthcare_coverage>=ceil(device_lifetime_length)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "175 healthcare_coverage>=encounters_lifetime_payer_coverage*log(device_lifetime_length)\n", + "176 healthcare_coverage>=High_Density_Lipoprotein_Cholesterol^2-medications_lifetime_cost\n", + "177 healthcare_coverage>=2*encounters_lifetime_payer_coverage-medications_lifetime_length\n", + "178 healthcare_coverage>=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*lifetime_care_plan_length\n", + "179 healthcare_coverage>=10^medications_lifetime_perc_covered*encounters_lifetime_payer_coverage\n", + "180 healthcare_coverage>=procedures_lifetime^Potassium\n", + "181 healthcare_coverage>=(medications_lifetime_length+1)*encounters_lifetime_perc_covered\n", + "182 healthcare_coverage>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Triglycerides\n", + "183 healthcare_coverage>=-medications_lifetime_cost+2*medications_lifetime_length\n", + "184 healthcare_coverage>=(10^medications_active)^Specific_gravity_of_Urine_by_Test_strip\n", + "185 healthcare_coverage>=Glucose^2*imaging_studies_lifetime\n", + "186 healthcare_coverage>=encounters_lifetime_perc_covered*latitude^2\n", + "187 healthcare_coverage>=Total_Cholesterol*sqrt(procedures_lifetime)\n", + "188 healthcare_coverage>=1/2*encounters_lifetime_payer_coverage/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "189 healthcare_coverage>=device_lifetime_length*sqrt(procedures_lifetime_cost)\n", + "190 healthcare_coverage>=medications_lifetime^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "191 healthcare_coverage>=Protein__Mass_volume__in_Serum,Plasma^2/DALY\n", + "192 healthcare_coverage>=Hemoglobin__Mass_volume__in_Blood^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "193 healthcare_coverage>=sqrt(Platelets____volume__in_Blood_by_Automated_count)^lifetime_care_plans\n", + "194 healthcare_coverage>=Body_Weight^2*medications_lifetime_perc_covered\n", + "195 healthcare_coverage>=active_care_plan_length^2*num_allergies\n", + "196 healthcare_coverage>=2*encounters_lifetime_total_cost-medications_lifetime_cost\n", + "197 healthcare_coverage>=sqrt(healthcare_expenses)-medications_lifetime_dispenses\n", + "198 healthcare_coverage>=minimum(procedures_lifetime_cost,sqrt(healthcare_expenses))\n", + "199 healthcare_coverage>=(-age)^immunizations_lifetime\n", + "200 healthcare_coverage>=longitude^2*medications_lifetime_perc_covered\n", + "201 healthcare_coverage>=Body_Height*log(encounters_lifetime_payer_coverage)\n", + "202 healthcare_coverage>=Globulin__Mass_volume__in_Serum_by_calculation*active_care_plan_length^2\n", + "203 healthcare_coverage>=(e^lifetime_care_plan_length)^Mental_health_Outpatient_Note\n", + "204 healthcare_coverage>=(Total_score__MMSE_-1)^DALY\n", + "205 healthcare_coverage>=sqrt(encounters_lifetime_payer_coverage)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "206 healthcare_coverage>=active_condition_length^2-encounters_lifetime_total_cost\n", + "207 healthcare_coverage>=encounters_count^2*encounters_lifetime_perc_covered\n", + "208 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime_perc_covered\n", + "209 healthcare_coverage>=1/2*encounters_lifetime_payer_coverage*mean_Creatinine\n", + "210 healthcare_coverage>=sqrt(encounters_lifetime_payer_coverage)*latitude\n", + "211 healthcare_coverage>=encounters_lifetime_payer_coverage*log(Triglycerides)/log(10)\n", + "212 healthcare_coverage>=(-High_Density_Lipoprotein_Cholesterol)^immunizations_lifetime\n", + "213 healthcare_coverage>=encounters_lifetime_payer_coverage*log(Microalbumin_Creatinine_Ratio)/log(10)\n", + "214 healthcare_coverage>=(Urea_Nitrogen+1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "215 healthcare_coverage>=encounters_lifetime_payer_coverage*sqrt(immunizations_lifetime)\n", + "216 healthcare_coverage>=(-Body_temperature)^encounters_count\n", + "217 healthcare_coverage>=sqrt(Platelets____volume__in_Blood_by_Automated_count)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "218 healthcare_coverage>=Microalbumin_Creatinine_Ratio^2*encounters_lifetime_perc_covered\n", + "219 latitude<=1/2*encounters_lifetime_total_cost/encounters_count\n", + "220 latitude<=log(e^Systolic_Blood_Pressure)/log(10)\n", + "221 latitude<=1/2*Heart_rate+Respiratory_rate\n", + "222 latitude<=Body_Mass_Index+2*Calcium\n", + "223 latitude<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*e^medications_active\n", + "224 latitude<=Carbon_Dioxide*log(Triglycerides)/log(10)\n", + "225 latitude<=floor(2*mean_Carbon_Dioxide)\n", + "226 latitude<=2*encounters_lifetime_total_cost/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "227 latitude<=Body_Weight-Carbon_Dioxide-1\n", + "228 latitude<=-active_conditions-longitude\n", + "229 latitude<=2*QALY+medications_lifetime\n", + "230 latitude<=maximum(medications_lifetime_length,1/medications_lifetime_perc_covered)\n", + "231 latitude<=10^lifetime_condition_length/active_condition_length\n", + "232 latitude<=Diastolic_Blood_Pressure-procedures_lifetime+1\n", + "233 latitude<=1/2*Heart_rate+active_condition_length\n", + "234 latitude<=-Carbon_Dioxide+floor(Glucose)\n", + "235 latitude<=sqrt(Sodium)+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "236 latitude<=Systolic_Blood_Pressure-active_condition_length-1\n", + "237 latitude<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Systolic_Blood_Pressure/log(10)\n", + "238 latitude<=2*Chloride/mean_Potassium\n", + "239 latitude<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+High_Density_Lipoprotein_Cholesterol\n", + "240 latitude<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+e^Creatinine\n", + "241 latitude<=Heart_rate-device_lifetime_length+1\n", + "242 latitude<=Body_Weight-DALY-1\n", + "243 latitude<=1/2*Body_Weight/encounters_lifetime_perc_covered\n", + "244 latitude<=2*Low_Density_Lipoprotein_Cholesterol/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "245 latitude<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+log(healthcare_expenses)\n", + "246 latitude<=Protein__Mass_volume__in_Serum,Plasma-Urea_Nitrogen-1\n", + "247 latitude<=sqrt(healthcare_coverage)+age\n", + "248 latitude<=sqrt(healthcare_coverage)/encounters_lifetime_perc_covered\n", + "249 latitude<=-Carbon_Dioxide+mean_Heart_rate\n", + "250 latitude<=mean_Total_Cholesterol/mean_Creatinine\n", + "251 latitude<=2*Body_Weight/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "252 latitude<=-Body_Weight+1/2*encounters_lifetime_total_cost\n", + "253 latitude<=maximum(medications_lifetime_length,2*QALY)\n", + "254 latitude<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(Urea_Nitrogen)\n", + "255 latitude<=Estimated_Glomerular_Filtration_Rate*active_care_plans\n", + "256 latitude<=2*Systolic_Blood_Pressure-Triglycerides\n", + "257 latitude<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+age\n", + "258 latitude<=2*age+medications_lifetime_perc_covered\n", + "259 latitude<=1/2*Heart_rate/medications_lifetime_perc_covered\n", + "260 latitude<=-lifetime_conditions-longitude\n", + "261 latitude<=longitude^2/age\n", + "262 latitude<=longitude^2/mean_Glucose\n", + "263 latitude<=maximum(encounters_lifetime_payer_coverage,2*QALY)\n", + "264 latitude<=age*log(Diastolic_Blood_Pressure)/log(10)\n", + "265 latitude<=Albumin__Mass_volume__in_Serum,Plasma+2*active_care_plan_length\n", + "266 latitude<=10^lifetime_care_plan_length/active_care_plan_length\n", + "267 latitude<=Heart_rate^2/Body_Weight\n", + "268 latitude<=sqrt(Estimated_Glomerular_Filtration_Rate)*mean_Urea_Nitrogen\n", + "269 latitude<=floor(Carbon_Dioxide)+mean_Carbon_Dioxide\n", + "270 latitude<=2*QALY+active_condition_length\n", + "271 latitude<=maximum(encounters_lifetime_payer_coverage,1/encounters_lifetime_perc_covered)\n", + "272 latitude<=1/2*encounters_lifetime_total_cost/active_care_plans\n", + "273 latitude<=sqrt(medications_lifetime_cost)/medications_active\n", + "274 latitude<=Calcium+medications_lifetime_cost+1\n", + "275 latitude<=maximum(medications_lifetime_dispenses,2*QALY)\n", + "276 latitude<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*QALY\n", + "277 latitude<=QALY*log(Chloride)/log(10)\n", + "278 latitude<=1/2*Body_Height-Body_Mass_Index\n", + "279 latitude<=2*Carbon_Dioxide+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "280 latitude<=(Creatinine+1)*Body_Mass_Index\n", + "281 latitude<=Triglycerides-active_condition_length-1\n", + "282 latitude<=lifetime_condition_length*log(Low_Density_Lipoprotein_Cholesterol)/log(10)\n", + "283 latitude>=log(healthcare_expenses)^2/log(10)^2\n", + "284 latitude>=-1/2*longitude\n", + "285 latitude>=1/2*age\n", + "286 latitude>=-active_condition_length+age+1\n", + "287 latitude>=log(Carbon_Dioxide)*mean_Carbon_Dioxide/log(10)\n", + "288 latitude>=QOLS+1/2*active_care_plan_length\n", + "289 latitude>=High_Density_Lipoprotein_Cholesterol*encounters_lifetime_perc_covered^2\n", + "290 latitude>=(immunizations_lifetime+1)^Creatinine\n", + "291 latitude>=Chloride+longitude+1\n", + "292 latitude>=10^QOLS+Body_Mass_Index\n", + "293 latitude>=Body_Mass_Index+Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "294 latitude>=floor(Body_Weight)^medications_lifetime_perc_covered\n", + "295 latitude>=1/2*Diastolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "296 latitude>=Respiratory_rate*sqrt(medications_active)\n", + "297 latitude>=1/2*Body_Weight-encounters_count\n", + "298 latitude>=Calcium*log(Protein__Mass_volume__in_Serum,Plasma)\n", + "299 latitude>=lifetime_care_plan_length-lifetime_condition_length+1\n", + "300 latitude>=ceil(lifetime_condition_length)/encounters_count\n", + "301 latitude>=Respiratory_rate+procedures_lifetime-1\n", + "302 latitude>=DALY+log(medications_lifetime_length)\n", + "303 latitude>=1/2*Respiratory_rate*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "304 latitude>=2*Triglycerides/mean_Calcium\n", + "305 latitude>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-medications_lifetime_dispenses\n", + "306 latitude>=-active_care_plan_length+device_lifetime_length+1\n", + "307 latitude>=active_care_plans*sqrt(device_lifetime_length)\n", + "308 latitude>=2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_care_plans\n", + "309 latitude>=2*Systolic_Blood_Pressure/Calcium\n", + "310 latitude>=(1/2*MCV__Entitic_volume__by_Automated_count)^encounters_lifetime_perc_covered\n", + "311 latitude>=sqrt(medications_lifetime_dispenses)-mean_Respiratory_rate\n", + "312 latitude>=(medications_lifetime_dispenses+1)/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "313 latitude>=-Respiratory_rate+e^num_allergies\n", + "314 latitude>=active_care_plans^2-encounters_lifetime_payer_coverage\n", + "315 latitude>=device_lifetime_length^2/age\n", + "316 latitude>=Globulin__Mass_volume__in_Serum_by_calculation+1/2*active_condition_length\n", + "317 latitude>=floor(Carbon_Dioxide)+lifetime_conditions\n", + "318 latitude>=1/2*Diastolic_Blood_Pressure-mean_Urea_Nitrogen\n", + "319 latitude>=2*DALY-active_care_plan_length\n", + "320 latitude>=Respiratory_rate+floor(Carbon_Dioxide)\n", + "321 latitude>=lifetime_care_plans^2-lifetime_care_plan_length\n", + "322 latitude>=Potassium*sqrt(active_care_plan_length)\n", + "323 latitude>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "324 latitude>=(High_Density_Lipoprotein_Cholesterol+1)^imaging_studies_lifetime\n", + "325 latitude>=2*Body_Mass_Index-mean_Estimated_Glomerular_Filtration_Rate\n", + "326 latitude>=(Total_Cholesterol+1)/encounters_count\n", + "327 latitude>=active_conditions^2-medications_lifetime_dispenses\n", + "328 latitude>=1/2*Chloride-mean_Respiratory_rate\n", + "329 latitude>=(Body_temperature+1)^immunizations_lifetime\n", + "330 latitude>=(Body_temperature+1)^QOLS\n", + "331 latitude>=2*DALY-QALY\n", + "332 latitude>=Carbon_Dioxide+mean_Respiratory_rate-1\n", + "333 latitude>=Calcium+e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "334 latitude>=(1/2*Creatinine)^active_care_plans\n", + "335 latitude>=log(Protein__Mass_volume__in_Serum,Plasma)*mean_Calcium\n", + "336 latitude>=sqrt(medications_lifetime_dispenses)-active_care_plan_length\n", + "337 latitude>=1/2*Systolic_Blood_Pressure-age\n", + "338 latitude>=1/2*Diastolic_Blood_Pressure-active_care_plan_length\n", + "339 latitude>=1/2*Diastolic_Blood_Pressure-medications_lifetime\n", + "340 latitude>=-Chloride+ceil(Sodium)\n", + "341 latitude>=1/2*Chloride-Respiratory_rate\n", + "342 longitude<=-latitude-1\n", + "343 longitude<=-active_conditions-device_lifetime_length\n", + "344 longitude<=-Chloride+latitude-1\n", + "345 longitude<=Low_Density_Lipoprotein_Cholesterol-Sodium+1\n", + "346 longitude<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Diastolic_Blood_Pressure\n", + "347 longitude<=(-lifetime_care_plan_length)^DALY\n", + "348 longitude<=-2*Body_Mass_Index\n", + "349 longitude<=DALY-QALY\n", + "350 longitude<=(active_care_plans-1)*age\n", + "351 longitude<=(active_care_plans-1)*encounters_count\n", + "352 longitude<=(lifetime_care_plans-1)*Body_Weight\n", + "353 longitude<=2*High_Density_Lipoprotein_Cholesterol-mean_Low_Density_Lipoprotein_Cholesterol\n", + "354 longitude<=(num_allergies-1)*active_condition_length\n", + "355 longitude<=Diastolic_Blood_Pressure-mean_Sodium-1\n", + "356 longitude<=Respiratory_rate-age\n", + "357 longitude<=-active_care_plans-latitude\n", + "358 longitude<=Body_Mass_Index-Heart_rate-1\n", + "359 longitude<=-Glomerular_filtration_rate_1_73_sq_M_predicted+medications_lifetime\n", + "360 longitude<=-QALY+medications_lifetime_cost-1\n", + "361 longitude<=Body_Weight-Sodium-1\n", + "362 longitude<=floor(Triglycerides)-mean_Microalbumin_Creatinine_Ratio\n", + "363 longitude<=High_Density_Lipoprotein_Cholesterol-mean_Glucose\n", + "364 longitude<=-QALY+log(Systolic_Blood_Pressure)\n", + "365 longitude<=sqrt(Triglycerides)-active_care_plan_length\n", + "366 longitude<=-Triglycerides+mean_Systolic_Blood_Pressure\n", + "367 longitude<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-active_condition_length\n", + "368 longitude<=-age+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "369 longitude<=1/2*Body_Weight-Chloride\n", + "370 longitude<=2*Carbon_Dioxide-mean_Glucose\n", + "371 longitude<=-2*procedures_lifetime\n", + "372 longitude<=-2*DALY\n", + "373 longitude<=e^active_conditions-lifetime_care_plan_length\n", + "374 longitude<=log(healthcare_expenses)/log(10)-QALY\n", + "375 longitude<=Globulin__Mass_volume__in_Serum_by_calculation-QALY+1\n", + "376 longitude<=-latitude-lifetime_care_plans\n", + "377 longitude<=-active_conditions-latitude\n", + "378 longitude<=-latitude-lifetime_conditions\n", + "379 longitude<=-Respiratory_rate-latitude\n", + "380 longitude<=lifetime_conditions^2-age\n", + "381 longitude<=(active_conditions-1)*medications_lifetime\n", + "382 longitude<=-Diastolic_Blood_Pressure+e^encounters_count\n", + "383 longitude<=DALY^2-age\n", + "384 longitude<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Glucose\n", + "385 longitude<=(QOLS-1)*Heart_rate\n", + "386 longitude<=Creatinine^2-Protein__Mass_volume__in_Serum,Plasma\n", + "387 longitude<=medications_lifetime^2-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "388 longitude<=-Calcium*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "389 longitude<=-mean_Heart_rate*medications_lifetime_perc_covered\n", + "390 longitude<=-medications_lifetime_dispenses/QALY\n", + "391 longitude<=sqrt(Systolic_Blood_Pressure)-active_care_plan_length\n", + "392 longitude<=log(QOLS)*mean_Low_Density_Lipoprotein_Cholesterol/log(10)\n", + "393 longitude<=Respiratory_rate^2-Total_Cholesterol\n", + "394 longitude<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Protein__Mass_volume__in_Serum,Plasma\n", + "395 longitude<=(DALY-1)*age\n", + "396 longitude<=(DALY-1)*lifetime_care_plan_length\n", + "397 longitude<=(DALY-1)*medications_lifetime\n", + "398 longitude<=Body_Mass_Index-Body_Weight+1\n", + "399 longitude<=-QALY+log(Glucose)\n", + "400 longitude<=2*High_Density_Lipoprotein_Cholesterol-Sodium\n", + "401 longitude>=-2*latitude\n", + "402 longitude>=Body_Mass_Index-Systolic_Blood_Pressure+1\n", + "403 longitude>=Carbon_Dioxide-Chloride+1\n", + "404 longitude>=log(immunizations_lifetime)-mean_Glucose\n", + "405 longitude>=-Heart_rate-encounters_count\n", + "406 longitude>=-Body_Height+Heart_rate\n", + "407 longitude>=log(High_Density_Lipoprotein_Cholesterol)/log(10)-mean_Heart_rate\n", + "408 longitude>=-Creatinine*Low_Density_Lipoprotein_Cholesterol\n", + "409 longitude>=-Glucose-Potassium\n", + "410 longitude>=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)-Low_Density_Lipoprotein_Cholesterol\n", + "411 longitude>=1/2*age-mean_Systolic_Blood_Pressure\n", + "412 longitude>=Globulin__Mass_volume__in_Serum_by_calculation-Glucose-1\n", + "413 longitude>=-Calcium^2\n", + "414 longitude>=-Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime_cost\n", + "415 longitude>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-latitude\n", + "416 longitude>=-Diastolic_Blood_Pressure-active_care_plans\n", + "417 longitude>=-Body_Height+Body_Weight-1\n", + "418 longitude>=log(medications_lifetime_perc_covered)/log(10)-Body_Weight\n", + "419 longitude>=-Chloride+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "420 longitude>=-Total_Cholesterol+age-1\n", + "421 longitude>=-Chloride+2*procedures_lifetime\n", + "422 longitude>=-Potassium-mean_Heart_rate\n", + "423 longitude>=active_care_plans^2-Sodium\n", + "424 longitude>=-Chloride+2*active_conditions\n", + "425 longitude>=-Body_Weight+log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "426 longitude>=floor(device_lifetime_length)-mean_Systolic_Blood_Pressure\n", + "427 longitude>=-lifetime_condition_length+log(device_lifetime_length)\n", + "428 longitude>=-Glomerular_filtration_rate_1_73_sq_M_predicted-Protein__Mass_volume__in_Serum,Plasma\n", + "429 longitude>=-Diastolic_Blood_Pressure-immunizations_lifetime_cost\n", + "430 longitude>=-Diastolic_Blood_Pressure-medications_lifetime\n", + "431 longitude>=log(Microalbumin_Creatinine_Ratio)-medications_lifetime_cost\n", + "432 longitude>=log(medications_lifetime_perc_covered)/log(10)-Diastolic_Blood_Pressure\n", + "433 longitude>=-mean_Diastolic_Blood_Pressure-medications_active\n", + "434 longitude>=1/2*Diastolic_Blood_Pressure-mean_Triglycerides\n", + "435 longitude>=-Calcium-Heart_rate\n", + "436 age<=2*latitude\n", + "437 age<=active_condition_length+latitude-1\n", + "438 age<=2*QALY+encounters_count\n", + "439 age<=(DALY+1)*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "440 age<=e^encounters_count+latitude\n", + "441 age<=maximum(lifetime_condition_length,-longitude)\n", + "442 age<=10^active_conditions+latitude\n", + "443 age<=sqrt(Diastolic_Blood_Pressure)+mean_Diastolic_Blood_Pressure\n", + "444 age<=Respiratory_rate*encounters_count\n", + "445 age<=latitude+1/2*lifetime_condition_length\n", + "446 age<=sqrt(Chloride)+Heart_rate\n", + "447 age<=2*Heart_rate/immunizations_lifetime\n", + "448 age<=(log(Diastolic_Blood_Pressure)/log(10))^Microalbumin_Creatinine_Ratio\n", + "449 age<=2*Diastolic_Blood_Pressure/num_allergies\n", + "450 age<=sqrt(Estimated_Glomerular_Filtration_Rate)+Diastolic_Blood_Pressure\n", + "451 age<=(2*Triglycerides)^mean_Creatinine\n", + "452 age<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*e^QOLS\n", + "453 age<=maximum(latitude,e^active_condition_length)\n", + "454 age<=mean_Diastolic_Blood_Pressure+medications_lifetime_length-1\n", + "455 age<=Potassium+lifetime_condition_length\n", + "456 age<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime_cost\n", + "457 age<=Calcium+mean_Glucose+1\n", + "458 age<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+Glucose-1\n", + "459 age<=Body_Mass_Index+e^Potassium\n", + "460 age<=-Urea_Nitrogen+e^lifetime_conditions\n", + "461 age<=10^lifetime_care_plans-longitude\n", + "462 age<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+High_Density_Lipoprotein_Cholesterol\n", + "463 age<=QALY*log(Protein__Mass_volume__in_Serum,Plasma)/log(10)\n", + "464 age<=(Albumin__Mass_volume__in_Serum,Plasma-1)^mean_Potassium\n", + "465 age<=Estimated_Glomerular_Filtration_Rate+encounters_count\n", + "466 age<=2*Body_Height/mean_Creatinine\n", + "467 age<=1/2*Estimated_Glomerular_Filtration_Rate+Heart_rate\n", + "468 age<=DALY+mean_Heart_rate-1\n", + "469 age<=(Albumin__Mass_volume__in_Serum,Plasma-1)*Carbon_Dioxide\n", + "470 age<=1/2*healthcare_coverage/procedures_lifetime\n", + "471 age<=maximum(lifetime_condition_length,2*QALY)\n", + "472 age<=active_care_plan_length^2-longitude\n", + "473 age<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^active_conditions\n", + "474 age<=Globulin__Mass_volume__in_Serum_by_calculation*active_conditions^2\n", + "475 age<=active_conditions^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "476 age<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "477 age<=maximum(Sodium,1/2*High_Density_Lipoprotein_Cholesterol)\n", + "478 age<=maximum(latitude,active_condition_length^2)\n", + "479 age<=maximum(latitude,2*lifetime_condition_length)\n", + "480 age<=maximum(latitude,10^encounters_count)\n", + "481 age<=sqrt(encounters_lifetime_total_cost)/medications_lifetime_perc_covered\n", + "482 age<=2*encounters_lifetime_total_cost/procedures_lifetime\n", + "483 age<=2*QALY+encounters_lifetime_payer_coverage\n", + "484 age<=10^encounters_lifetime_perc_covered*High_Density_Lipoprotein_Cholesterol\n", + "485 age<=Microalbumin_Creatinine_Ratio^2+mean_Microalbumin_Creatinine_Ratio\n", + "486 age<=1/medications_active+Low_Density_Lipoprotein_Cholesterol\n", + "487 age<=QALY*e^Creatinine\n", + "488 age<=maximum(medications_lifetime_length,2*QALY)\n", + "489 age<=(log(QALY)/log(10))^Respiratory_rate\n", + "490 age<=(log(QALY)/log(10))^mean_Urea_Nitrogen\n", + "491 age<=maximum(medications_lifetime_dispenses,2*QALY)\n", + "492 age<=DALY^2-longitude\n", + "493 age<=Body_Weight+mean_Calcium+1\n", + "494 age<=Body_Weight*ceil(Creatinine)\n", + "495 age>=QALY+1\n", + "496 age>=DALY+QALY\n", + "497 age>=Respiratory_rate*log(DALY)\n", + "498 age>=QALY+ceil(DALY)\n", + "499 age>=2*encounters_lifetime_perc_covered+procedures_lifetime\n", + "500 age>=(encounters_count+1)/Potassium\n", + "501 age>=Body_Mass_Index-Creatinine+1\n", + "502 age>=1/2*High_Density_Lipoprotein_Cholesterol-encounters_lifetime_perc_covered\n", + "503 age>=Carbon_Dioxide*log(procedures_lifetime)\n", + "504 age>=log(medications_lifetime_length)*num_allergies\n", + "505 age>=2*Protein__Mass_volume__in_Serum,Plasma-mean_Glucose\n", + "506 age>=Glomerular_filtration_rate_1_73_sq_M_predicted-encounters_count\n", + "507 age>=DALY+ceil(QALY)\n", + "508 age>=active_care_plan_length+log(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "509 age>=Creatinine+active_condition_length-1\n", + "510 age>=floor(1/2*latitude)\n", + "511 age>=medications_active/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "512 age>=4*lifetime_conditions\n", + "513 age>=floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)^encounters_lifetime_perc_covered\n", + "514 age>=-Protein__Mass_volume__in_Serum,Plasma+2*QALY\n", + "515 age>=log(Estimated_Glomerular_Filtration_Rate)/log(10)+active_care_plan_length\n", + "516 age>=2*lifetime_conditions+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "517 age>=active_condition_length+e^encounters_lifetime_perc_covered\n", + "518 age>=ceil(QALY+1)\n", + "519 age>=Heart_rate^2/encounters_lifetime_total_cost\n", + "520 age>=log(procedures_lifetime_cost)^imaging_studies_lifetime\n", + "521 age>=log(num_allergies)/log(10)+active_care_plan_length\n", + "522 age>=QALY+1/2*active_care_plans\n", + "523 age>=log(lifetime_conditions)+procedures_lifetime\n", + "524 age>=QALY+log(lifetime_care_plans)\n", + "525 age>=minimum(latitude,2*DALY)\n", + "526 age>=Body_Weight^2/encounters_lifetime_total_cost\n", + "527 age>=log(medications_lifetime_cost)/log(10)+device_lifetime_length\n", + "528 age>=QALY+log(active_conditions)\n", + "529 age>=QALY+log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "530 age>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)+active_care_plan_length\n", + "531 age>=latitude*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "532 age>=QALY+log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "533 age>=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)+QALY\n", + "534 age>=log(Estimated_Glomerular_Filtration_Rate)/log(10)+QALY\n", + "535 num_allergies<=healthcare_coverage\n", + "536 num_allergies<=active_conditions\n", + "537 num_allergies<=active_care_plan_length\n", + "538 num_allergies<=medications_lifetime\n", + "539 num_allergies<=encounters_lifetime_payer_coverage\n", + "540 num_allergies<=(log(Urea_Nitrogen)/log(10))^healthcare_expenses\n", + "541 num_allergies<=medications_active+1\n", + "542 num_allergies<=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "543 num_allergies<=2*medications_active\n", + "544 num_allergies<=(active_care_plans-1)^2\n", + "545 num_allergies<=QOLS*healthcare_expenses\n", + "546 num_allergies<=device_lifetime_length^Estimated_Glomerular_Filtration_Rate\n", + "547 num_allergies<=10^DALY\n", + "548 num_allergies<=floor(active_care_plan_length)\n", + "549 num_allergies<=(log(active_care_plan_length)/log(10))^healthcare_expenses\n", + "550 num_allergies<=procedures_lifetime/device_lifetime_length\n", + "551 num_allergies<=procedures_lifetime_cost/immunizations_lifetime\n", + "552 num_allergies<=immunizations_lifetime/imaging_studies_lifetime\n", + "553 num_allergies<=(log(encounters_count)/log(10))^healthcare_expenses\n", + "554 num_allergies<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "555 num_allergies<=medications_active/procedures_lifetime\n", + "556 num_allergies<=imaging_studies_lifetime^Estimated_Glomerular_Filtration_Rate\n", + "557 num_allergies<=-active_care_plans+encounters_count\n", + "558 num_allergies<=Creatinine^healthcare_expenses\n", + "559 num_allergies<=medications_lifetime/active_care_plans\n", + "560 num_allergies<=-active_care_plan_length+lifetime_care_plan_length\n", + "561 num_allergies<=maximum(Triglycerides,floor(medications_active))\n", + "562 num_allergies<=maximum(Respiratory_rate,10^medications_lifetime_perc_covered)\n", + "563 num_allergies<=e^encounters_lifetime_payer_coverage*immunizations_lifetime\n", + "564 num_allergies<=floor(1/2*medications_lifetime)\n", + "565 num_allergies<=active_condition_length-device_lifetime_length\n", + "566 num_allergies<=-active_condition_length+lifetime_condition_length\n", + "567 num_allergies<=immunizations_lifetime/device_lifetime_length\n", + "568 num_allergies<=(1/medications_lifetime)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "569 num_allergies<=Respiratory_rate/active_care_plans\n", + "570 num_allergies<=DALY^Triglycerides\n", + "571 num_allergies<=Triglycerides*floor(DALY)\n", + "572 num_allergies<=e^medications_lifetime_dispenses*medications_lifetime_perc_covered\n", + "573 num_allergies<=10^active_care_plans/lifetime_condition_length\n", + "574 num_allergies>=-imaging_studies_lifetime\n", + "575 num_allergies>=-healthcare_coverage\n", + "576 num_allergies>=-active_care_plans\n", + "577 num_allergies>=-active_conditions\n", + "578 num_allergies>=-device_lifetime_length\n", + "579 num_allergies>=-Diastolic_Blood_Pressure+ceil(active_care_plan_length)\n", + "580 num_allergies>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_conditions\n", + "581 num_allergies>=1/2*Sodium-mean_Glucose\n", + "582 num_allergies>=active_care_plan_length-age+1\n", + "583 num_allergies>=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)-medications_active\n", + "584 active_care_plans<=lifetime_care_plans\n", + "585 active_care_plans<=floor(sqrt(age))\n", + "586 active_care_plans<=active_care_plan_length*healthcare_expenses\n", + "587 active_care_plans<=ceil(lifetime_care_plan_length)\n", + "588 active_care_plans<=maximum(active_conditions,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "589 active_care_plans<=minimum(Triglycerides,active_conditions-1)\n", + "590 active_care_plans<=ceil(age)-procedures_lifetime\n", + "591 active_care_plans<=maximum(active_conditions,10^medications_active)\n", + "592 active_care_plans<=Heart_rate/Calcium\n", + "593 active_care_plans<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+ceil(Calcium)\n", + "594 active_care_plans<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+procedures_lifetime\n", + "595 active_care_plans<=maximum(Sodium,Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)\n", + "596 active_care_plans<=(log(Respiratory_rate)/log(10))^active_care_plan_length\n", + "597 active_care_plans<=sqrt(lifetime_care_plan_length)+QOLS\n", + "598 active_care_plans>=imaging_studies_lifetime\n", + "599 active_care_plans>=floor(e^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "600 active_care_plans>=immunizations_lifetime*num_allergies\n", + "601 active_care_plans>=num_allergies-1\n", + "602 active_care_plans>=immunizations_lifetime-1\n", + "603 active_care_plans>=log(medications_lifetime_length)/log(10)-Creatinine\n", + "604 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-encounters_lifetime_payer_coverage\n", + "605 active_care_plans>=lifetime_care_plans-lifetime_conditions\n", + "606 active_care_plans>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "607 active_care_plans>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(Creatinine)\n", + "608 active_care_plans>=sqrt(immunizations_lifetime_cost)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "609 active_care_plans>=ceil(lifetime_care_plan_length)/mean_High_Density_Lipoprotein_Cholesterol\n", + "610 active_care_plans>=floor(1/2*mean_Creatinine)\n", + "611 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost\n", + "612 active_care_plans>=minimum(lifetime_care_plans,num_allergies^2)\n", + "613 active_care_plans>=-encounters_lifetime_payer_coverage+lifetime_care_plans-1\n", + "614 active_care_plans>=-healthcare_coverage+lifetime_care_plans\n", + "615 active_care_plans>=-Body_Mass_Index+DALY+1\n", + "616 active_care_plans>=-active_condition_length+active_conditions\n", + "617 active_care_plans>=-Protein__Mass_volume__in_Serum,Plasma+active_condition_length-1\n", + "618 active_care_plans>=1/2*imaging_studies_lifetime*lifetime_care_plans\n", + "619 active_care_plans>=floor(log(lifetime_care_plan_length)/log(10))\n", + "620 active_care_plans>=active_care_plan_length/lifetime_care_plan_length\n", + "621 active_care_plans>=-Respiratory_rate+active_conditions+1\n", + "622 active_care_plans>=-Respiratory_rate+lifetime_conditions\n", + "623 active_care_plans>=minimum(device_lifetime_length,medications_active)\n", + "624 active_care_plans>=minimum(device_lifetime_length,lifetime_care_plans-1)\n", + "625 active_care_plans>=floor(log(active_care_plan_length)/log(10))\n", + "626 active_care_plans>=minimum(active_care_plan_length,QOLS)\n", + "627 active_care_plans>=minimum(medications_active,lifetime_care_plans-1)\n", + "628 active_care_plans>=floor(log(Microalbumin_Creatinine_Ratio)/log(10))\n", + "629 active_care_plans>=ceil(1/mean_Creatinine)\n", + "630 active_care_plans>=1/2*lifetime_care_plan_length/Carbon_Dioxide\n", + "631 active_care_plans>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "632 active_care_plans>=floor(log(procedures_lifetime)/log(10))\n", + "633 active_care_plans>=(1/log(active_care_plan_length))\n", + "634 active_care_plans>=floor(1/2*Creatinine)\n", + "635 active_care_plans>=sqrt(Carbon_Dioxide)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "636 active_care_plans>=lifetime_care_plans^2-mean_Estimated_Glomerular_Filtration_Rate\n", + "637 active_care_plans>=1/2*lifetime_care_plans/mean_Creatinine\n", + "638 active_care_plans>=1/2*lifetime_care_plan_length/mean_Estimated_Glomerular_Filtration_Rate\n", + "639 active_care_plans>=minimum(Estimated_Glomerular_Filtration_Rate,lifetime_care_plans-1)\n", + "640 active_care_plans>=log(lifetime_care_plans)-procedures_lifetime_cost\n", + "641 active_care_plans>=minimum(lifetime_care_plans,medications_active-1)\n", + "642 active_care_plans>=-encounters_count+2*lifetime_care_plans\n", + "643 active_care_plans>=active_conditions-encounters_count-1\n", + "644 active_care_plans>=-encounters_count+log(lifetime_care_plan_length)\n", + "645 active_care_plans>=minimum(lifetime_care_plans,sqrt(device_lifetime_length))\n", + "646 active_care_plans>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)/Creatinine\n", + "647 active_care_plans>=-encounters_count+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "648 active_care_plans>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)*lifetime_care_plans\n", + "649 lifetime_care_plans<=active_care_plans+encounters_lifetime_payer_coverage+1\n", + "650 lifetime_care_plans<=active_care_plans+lifetime_conditions\n", + "651 lifetime_care_plans<=encounters_count\n", + "652 lifetime_care_plans<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^2\n", + "653 lifetime_care_plans<=ceil(sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "654 lifetime_care_plans<=2*floor(Albumin__Mass_volume__in_Serum,Plasma)\n", + "655 lifetime_care_plans<=encounters_lifetime_payer_coverage+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "656 lifetime_care_plans<=maximum(active_care_plan_length,lifetime_conditions)\n", + "657 lifetime_care_plans<=ceil(10^mean_Creatinine)\n", + "658 lifetime_care_plans<=healthcare_expenses*lifetime_care_plan_length\n", + "659 lifetime_care_plans<=floor(10^lifetime_care_plan_length)\n", + "660 lifetime_care_plans<=10^active_conditions\n", + "661 lifetime_care_plans<=encounters_count-immunizations_lifetime\n", + "662 lifetime_care_plans<=1/medications_lifetime_perc_covered+lifetime_conditions\n", + "663 lifetime_care_plans<=Respiratory_rate-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "664 lifetime_care_plans<=2*encounters_count/medications_active\n", + "665 lifetime_care_plans<=minimum(Estimated_Glomerular_Filtration_Rate,active_care_plans+1)\n", + "666 lifetime_care_plans<=active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "667 lifetime_care_plans<=minimum(healthcare_expenses,sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "668 lifetime_care_plans<=sqrt(healthcare_expenses)/mean_Microalbumin_Creatinine_Ratio\n", + "669 lifetime_care_plans<=floor(Albumin__Mass_volume__in_Serum,Plasma)+procedures_lifetime_cost\n", + "670 lifetime_care_plans<=ceil(1/2*mean_Urea_Nitrogen)\n", + "671 lifetime_care_plans<=minimum(Respiratory_rate,medications_lifetime+1)\n", + "672 lifetime_care_plans<=Carbon_Dioxide/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "673 lifetime_care_plans<=encounters_lifetime_perc_covered^longitude\n", + "674 lifetime_care_plans<=active_conditions*mean_Creatinine\n", + "675 lifetime_care_plans<=-DALY+Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "676 lifetime_care_plans<=Respiratory_rate/num_allergies\n", + "677 lifetime_care_plans<=active_care_plans+healthcare_coverage\n", + "678 lifetime_care_plans<=active_care_plan_length^Triglycerides\n", + "679 lifetime_care_plans<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_lifetime\n", + "680 lifetime_care_plans<=10^active_care_plans*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "681 lifetime_care_plans<=maximum(active_care_plans,sqrt(Microalbumin_Creatinine_Ratio))\n", + "682 lifetime_care_plans<=sqrt(healthcare_expenses)/device_lifetime_length\n", + "683 lifetime_care_plans<=medications_lifetime/num_allergies\n", + "684 lifetime_care_plans<=maximum(lifetime_conditions,active_care_plans^2)\n", + "685 lifetime_care_plans<=maximum(lifetime_conditions,active_care_plan_length-1)\n", + "686 lifetime_care_plans<=Glomerular_filtration_rate_1_73_sq_M_predicted-Urea_Nitrogen\n", + "687 lifetime_care_plans<=2*Calcium-procedures_lifetime\n", + "688 lifetime_care_plans<=log(healthcare_expenses)/log(10)+active_care_plans\n", + "689 lifetime_care_plans<=-active_conditions+floor(Carbon_Dioxide)\n", + "690 lifetime_care_plans<=2*medications_lifetime_dispenses/medications_lifetime\n", + "691 lifetime_care_plans<=10^medications_active+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "692 lifetime_care_plans<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*DALY^2\n", + "693 lifetime_care_plans<=sqrt(encounters_count)/encounters_lifetime_perc_covered\n", + "694 lifetime_care_plans<=active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "695 lifetime_care_plans<=maximum(active_care_plans,1/num_allergies)\n", + "696 lifetime_care_plans<=log(healthcare_expenses)/(log(10)*medications_lifetime_perc_covered)\n", + "697 lifetime_care_plans<=log(QALY)+medications_lifetime\n", + "698 lifetime_care_plans<=ceil(lifetime_care_plan_length+1)\n", + "699 lifetime_care_plans<=(1/encounters_lifetime_perc_covered)^lifetime_conditions\n", + "700 lifetime_care_plans<=10^medications_lifetime+procedures_lifetime\n", + "701 lifetime_care_plans<=longitude^2/medications_lifetime\n", + "702 lifetime_care_plans<=(1/2*encounters_count)^Respiratory_rate\n", + "703 lifetime_care_plans<=10^medications_active+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "704 lifetime_care_plans<=e^active_care_plans+procedures_lifetime_cost\n", + "705 lifetime_care_plans<=maximum(lifetime_care_plan_length,10^QOLS)\n", + "706 lifetime_care_plans<=maximum(lifetime_conditions,10^DALY)\n", + "707 lifetime_care_plans<=maximum(active_care_plans,encounters_count-1)\n", + "708 lifetime_care_plans<=encounters_count^2/active_conditions\n", + "709 lifetime_care_plans<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2-encounters_count\n", + "710 lifetime_care_plans<=maximum(Sodium,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "711 lifetime_care_plans<=(log(Systolic_Blood_Pressure)/log(10))^active_conditions\n", + "712 lifetime_care_plans<=2*Body_Weight-Sodium\n", + "713 lifetime_care_plans>=active_care_plans\n", + "714 lifetime_care_plans>=sqrt(procedures_lifetime)-encounters_count\n", + "715 lifetime_care_plans>=minimum(QOLS,ceil(lifetime_care_plan_length))\n", + "716 lifetime_care_plans>=-Respiratory_rate+lifetime_conditions+1\n", + "717 lifetime_care_plans>=medications_active^Bilirubin_total__Mass_volume__in_Urine_by_Test_strip\n", + "718 lifetime_care_plans>=minimum(immunizations_lifetime,procedures_lifetime)\n", + "719 lifetime_care_plans>=immunizations_lifetime*log(procedures_lifetime)/log(10)\n", + "720 lifetime_care_plans>=10^imaging_studies_lifetime-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "721 lifetime_care_plans>=minimum(lifetime_care_plan_length,1/active_care_plans)\n", + "722 lifetime_care_plans>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(procedures_lifetime)\n", + "723 lifetime_care_plans>=sqrt(Body_Height)-Respiratory_rate\n", + "724 active_care_plan_length<=ceil(age)-encounters_lifetime_perc_covered\n", + "725 active_care_plan_length<=lifetime_care_plan_length\n", + "726 active_care_plan_length<=Diastolic_Blood_Pressure+1/2*QOLS\n", + "727 active_care_plan_length<=Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "728 active_care_plan_length<=Glucose^2/age\n", + "729 active_care_plan_length<=10^lifetime_care_plan_length/latitude\n", + "730 active_care_plan_length<=encounters_lifetime_payer_coverage+e^medications_lifetime\n", + "731 active_care_plan_length<=maximum(active_condition_length,e^Potassium)\n", + "732 active_care_plan_length<=2*Heart_rate+longitude\n", + "733 active_care_plan_length<=10^Potassium/mean_Microalbumin_Creatinine_Ratio\n", + "734 active_care_plan_length<=active_care_plans*healthcare_expenses\n", + "735 active_care_plan_length<=maximum(active_condition_length,1/device_lifetime_length)\n", + "736 active_care_plan_length<=ceil(active_condition_length)/medications_lifetime_perc_covered\n", + "737 active_care_plan_length<=age-medications_lifetime_perc_covered\n", + "738 active_care_plan_length<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(age)\n", + "739 active_care_plan_length<=2*ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "740 active_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*latitude\n", + "741 active_care_plan_length<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+e^medications_active\n", + "742 active_care_plan_length<=ceil(lifetime_care_plan_length)-imaging_studies_lifetime\n", + "743 active_care_plan_length<=maximum(lifetime_condition_length,QALY)\n", + "744 active_care_plan_length<=Estimated_Glomerular_Filtration_Rate+QALY-1\n", + "745 active_care_plan_length<=sqrt(medications_lifetime_dispenses)+Estimated_Glomerular_Filtration_Rate\n", + "746 active_care_plan_length<=Estimated_Glomerular_Filtration_Rate^2/device_lifetime_length\n", + "747 active_care_plan_length<=2*Total_Cholesterol/Albumin__Mass_volume__in_Serum,Plasma\n", + "748 active_care_plan_length<=Urea_Nitrogen+e^Potassium\n", + "749 active_care_plan_length<=minimum(healthcare_expenses,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "750 active_care_plan_length<=maximum(lifetime_condition_length,floor(QALY))\n", + "751 active_care_plan_length<=(High_Density_Lipoprotein_Cholesterol-1)*DALY\n", + "752 active_care_plan_length<=log(Triglycerides)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "753 active_care_plan_length<=Creatinine*Microalbumin_Creatinine_Ratio^2\n", + "754 active_care_plan_length<=Chloride*DALY^2\n", + "755 active_care_plan_length<=maximum(active_condition_length,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "756 active_care_plan_length<=10^encounters_count/Heart_rate\n", + "757 active_care_plan_length<=(active_care_plans+1)^mean_History_of_Hospitalizations_Outpatient_visits\n", + "758 active_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Microalbumin_Creatinine_Ratio\n", + "759 active_care_plan_length<=Carbon_Dioxide+mean_High_Density_Lipoprotein_Cholesterol\n", + "760 active_care_plan_length<=age+num_allergies-1\n", + "761 active_care_plan_length<=maximum(QALY,encounters_count^2)\n", + "762 active_care_plan_length<=(active_care_plans+1)^Mental_health_Outpatient_Note\n", + "763 active_care_plan_length<=encounters_count^2+latitude\n", + "764 active_care_plan_length<=maximum(QALY,e^encounters_count)\n", + "765 active_care_plan_length<=sqrt(encounters_lifetime_total_cost)/encounters_lifetime_perc_covered\n", + "766 active_care_plan_length<=floor(lifetime_care_plan_length)^Respiratory_rate\n", + "767 active_care_plan_length<=active_conditions^2+QALY\n", + "768 active_care_plan_length<=1/2*Body_Weight+medications_lifetime_dispenses\n", + "769 active_care_plan_length<=(Body_Mass_Index-1)/imaging_studies_lifetime\n", + "770 active_care_plan_length<=10^medications_active*QALY\n", + "771 active_care_plan_length<=2*QALY-procedures_lifetime\n", + "772 active_care_plan_length<=2*Glucose/num_allergies\n", + "773 active_care_plan_length<=(log(Respiratory_rate)/log(10))^age\n", + "774 active_care_plan_length<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "775 active_care_plan_length>=num_allergies\n", + "776 active_care_plan_length>=minimum(Carbon_Dioxide,-Triglycerides)\n", + "777 active_care_plan_length>=Albumin__Mass_volume__in_Serum,Plasma*medications_active\n", + "778 active_care_plan_length>=1/2*Chloride-healthcare_coverage\n", + "779 active_care_plan_length>=active_conditions*e^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "780 active_care_plan_length>=minimum(Calcium,abs(lifetime_care_plan_length))\n", + "781 active_care_plan_length>=sqrt(imaging_studies_lifetime)^Calcium\n", + "782 active_care_plan_length>=Diastolic_Blood_Pressure-mean_Glucose+1\n", + "783 active_care_plan_length>=(log(Glucose)/log(10))^mean_Creatinine\n", + "784 active_care_plan_length>=log(num_allergies)/log(10)+active_condition_length\n", + "785 active_care_plan_length>=active_care_plans*log(lifetime_care_plan_length)/log(10)\n", + "786 active_care_plan_length>=-Heart_rate+1/2*Microalbumin_Creatinine_Ratio\n", + "787 active_care_plan_length>=2*lifetime_condition_length/Carbon_Dioxide\n", + "788 active_care_plan_length>=active_care_plans*log(device_lifetime_length)\n", + "789 active_care_plan_length>=-Creatinine+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "790 active_care_plan_length>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "791 active_care_plan_length>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Chloride\n", + "792 active_care_plan_length>=2*encounters_count/mean_Urea_Nitrogen\n", + "793 active_care_plan_length>=Respiratory_rate*log(lifetime_care_plans)/log(10)\n", + "794 active_care_plan_length>=1/2*medications_lifetime_dispenses/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "795 active_care_plan_length>=-Sodium+Systolic_Blood_Pressure+1\n", + "796 active_care_plan_length>=minimum(Respiratory_rate,procedures_lifetime-1)\n", + "797 active_care_plan_length>=10^num_allergies*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "798 active_care_plan_length>=(1/2*Erythrocytes____volume__in_Blood_by_Automated_count)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "799 active_care_plan_length>=minimum(active_condition_length,1/2*active_care_plans)\n", + "800 active_care_plan_length>=active_care_plans^2-encounters_count\n", + "801 active_care_plan_length>=floor(lifetime_care_plan_length)-medications_lifetime_cost\n", + "802 active_care_plan_length>=active_care_plans^2*medications_lifetime_perc_covered\n", + "803 active_care_plan_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_care_plans\n", + "804 active_care_plan_length>=2*Body_Mass_Index-Estimated_Glomerular_Filtration_Rate\n", + "805 active_care_plan_length>=sqrt(medications_lifetime_cost)/mean_Carbon_Dioxide\n", + "806 active_care_plan_length>=log(lifetime_care_plan_length)-medications_lifetime_perc_covered\n", + "807 active_care_plan_length>=(immunizations_lifetime-1)*DALY\n", + "808 active_care_plan_length>=sqrt(lifetime_care_plan_length)-lifetime_care_plans\n", + "809 active_care_plan_length>=floor(encounters_lifetime_perc_covered)*lifetime_care_plan_length\n", + "810 active_care_plan_length>=(Diastolic_Blood_Pressure-1)/Microalbumin_Creatinine_Ratio\n", + "811 active_care_plan_length>=active_care_plans*log(immunizations_lifetime_cost)/log(10)\n", + "812 active_care_plan_length>=DALY+log(Glucose)\n", + "813 active_care_plan_length>=2*DALY-mean_Estimated_Glomerular_Filtration_Rate\n", + "814 active_care_plan_length>=sqrt(lifetime_care_plan_length)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "815 active_care_plan_length>=Body_Mass_Index+log(num_allergies)\n", + "816 active_care_plan_length>=Protein__Mass_volume__in_Serum,Plasma+log(num_allergies)\n", + "817 active_care_plan_length>=active_care_plans*log(active_conditions)/log(10)\n", + "818 active_care_plan_length>=log(lifetime_care_plan_length)*medications_active/log(10)\n", + "819 active_care_plan_length>=10^QOLS*num_allergies\n", + "820 active_care_plan_length>=Body_Mass_Index-QALY-1\n", + "821 active_care_plan_length>=mean_Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered\n", + "822 active_care_plan_length>=Body_Mass_Index-age+1\n", + "823 active_care_plan_length>=maximum(MCHC__Mass_volume__by_Automated_count,mean_Creatinine)\n", + "824 active_care_plan_length>=High_Density_Lipoprotein_Cholesterol-medications_lifetime_cost-1\n", + "825 active_care_plan_length>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Protein__Mass_volume__in_Serum,Plasma+1\n", + "826 active_care_plan_length>=-Triglycerides+mean_Triglycerides\n", + "827 active_care_plan_length>=Calcium^2-Low_Density_Lipoprotein_Cholesterol\n", + "828 active_care_plan_length>=log(Urea_Nitrogen)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "829 active_care_plan_length>=log(Globulin__Mass_volume__in_Serum_by_calculation)^Urea_Nitrogen\n", + "830 lifetime_care_plan_length<=encounters_lifetime_total_cost\n", + "831 lifetime_care_plan_length<=sqrt(healthcare_expenses)-encounters_count\n", + "832 lifetime_care_plan_length<=(active_care_plan_length+1)*lifetime_care_plans\n", + "833 lifetime_care_plan_length<=maximum(active_care_plan_length,10^active_condition_length)\n", + "834 lifetime_care_plan_length<=latitude+lifetime_condition_length-1\n", + "835 lifetime_care_plan_length<=Body_Mass_Index^2/medications_active\n", + "836 lifetime_care_plan_length<=age+lifetime_condition_length-1\n", + "837 lifetime_care_plan_length<=(Protein__Mass_volume__in_Serum,Plasma+1)*Potassium\n", + "838 lifetime_care_plan_length<=2*Body_Height-Systolic_Blood_Pressure\n", + "839 lifetime_care_plan_length<=-Albumin__Mass_volume__in_Serum,Plasma+lifetime_condition_length-1\n", + "840 lifetime_care_plan_length<=1/2*Urea_Nitrogen*active_care_plan_length\n", + "841 lifetime_care_plan_length<=2*Carbon_Dioxide*active_care_plans\n", + "842 lifetime_care_plan_length<=healthcare_expenses*lifetime_care_plans\n", + "843 lifetime_care_plan_length<=(High_Density_Lipoprotein_Cholesterol+1)*mean_Potassium\n", + "844 lifetime_care_plan_length<=healthcare_coverage^2/procedures_lifetime_cost\n", + "845 lifetime_care_plan_length<=(active_care_plans+1)*latitude\n", + "846 lifetime_care_plan_length<=maximum(active_care_plan_length,10^lifetime_care_plans)\n", + "847 lifetime_care_plan_length<=maximum(lifetime_conditions,active_care_plan_length^2)\n", + "848 lifetime_care_plan_length<=active_care_plan_length^2+lifetime_condition_length\n", + "849 lifetime_care_plan_length<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage\n", + "850 lifetime_care_plan_length<=2*active_care_plan_length+lifetime_condition_length\n", + "851 lifetime_care_plan_length<=1/2*mean_Potassium*medications_lifetime_cost\n", + "852 lifetime_care_plan_length<=maximum(age,1/2*medications_lifetime_dispenses)\n", + "853 lifetime_care_plan_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime_cost\n", + "854 lifetime_care_plan_length<=Microalbumin_Creatinine_Ratio*active_care_plans^2\n", + "855 lifetime_care_plan_length<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses/log(10)\n", + "856 lifetime_care_plan_length<=10^active_care_plan_length/encounters_lifetime_perc_covered\n", + "857 lifetime_care_plan_length<=2*active_care_plans*mean_Estimated_Glomerular_Filtration_Rate\n", + "858 lifetime_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Diastolic_Blood_Pressure\n", + "859 lifetime_care_plan_length<=Sodium*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "860 lifetime_care_plan_length<=age^2/procedures_lifetime\n", + "861 lifetime_care_plan_length<=Heart_rate+1/2*lifetime_condition_length\n", + "862 lifetime_care_plan_length<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Carbon_Dioxide\n", + "863 lifetime_care_plan_length<=DALY^2*Low_Density_Lipoprotein_Cholesterol\n", + "864 lifetime_care_plan_length<=Diastolic_Blood_Pressure+floor(Triglycerides)\n", + "865 lifetime_care_plan_length<=Carbon_Dioxide+e^lifetime_conditions\n", + "866 lifetime_care_plan_length<=(Chloride-1)*DALY\n", + "867 lifetime_care_plan_length<=2*Triglycerides-mean_Estimated_Glomerular_Filtration_Rate\n", + "868 lifetime_care_plan_length<=log(active_care_plan_length)*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "869 lifetime_care_plan_length<=age*sqrt(encounters_count)\n", + "870 lifetime_care_plan_length<=log(active_condition_length)^Potassium\n", + "871 lifetime_care_plan_length<=active_care_plan_length^2+lifetime_care_plans\n", + "872 lifetime_care_plan_length<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "873 lifetime_care_plan_length<=e^lifetime_condition_length/lifetime_conditions\n", + "874 lifetime_care_plan_length<=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^lifetime_care_plans\n", + "875 lifetime_care_plan_length<=sqrt(encounters_lifetime_total_cost)+lifetime_condition_length\n", + "876 lifetime_care_plan_length<=Body_Mass_Index+2*Glucose\n", + "877 lifetime_care_plan_length<=maximum(age,10^active_care_plans)\n", + "878 lifetime_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Diastolic_Blood_Pressure\n", + "879 lifetime_care_plan_length<=maximum(active_care_plan_length,10^medications_lifetime_cost)\n", + "880 lifetime_care_plan_length<=10^active_care_plan_length*lifetime_care_plans\n", + "881 lifetime_care_plan_length<=10^medications_active*mean_Glucose\n", + "882 lifetime_care_plan_length<=log(Estimated_Glomerular_Filtration_Rate)*medications_lifetime_length\n", + "883 lifetime_care_plan_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "884 lifetime_care_plan_length<=Body_Weight*log(Urea_Nitrogen)\n", + "885 lifetime_care_plan_length<=High_Density_Lipoprotein_Cholesterol*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "886 lifetime_care_plan_length>=num_allergies\n", + "887 lifetime_care_plan_length>=active_care_plan_length\n", + "888 lifetime_care_plan_length>=minimum(active_care_plans,lifetime_condition_length)\n", + "889 lifetime_care_plan_length>=log(lifetime_care_plans)+medications_lifetime_perc_covered\n", + "890 lifetime_care_plan_length>=ceil(e^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "891 lifetime_care_plan_length>=(Albumin__Mass_volume__in_Serum,Plasma+1)^2\n", + "892 lifetime_care_plan_length>=Low_Density_Lipoprotein_Cholesterol-healthcare_coverage+1\n", + "893 lifetime_care_plan_length>=Potassium*num_allergies^2\n", + "894 lifetime_care_plan_length>=2*active_care_plans/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "895 lifetime_care_plan_length>=2*lifetime_care_plans/Systolic_Blood_Pressure\n", + "896 lifetime_care_plan_length>=1/2*lifetime_care_plans-procedures_lifetime\n", + "897 lifetime_care_plan_length>=active_care_plan_length+2*num_allergies\n", + "898 lifetime_care_plan_length>=sqrt(Creatinine)^Potassium\n", + "899 lifetime_care_plan_length>=active_care_plan_length+log(active_care_plans)\n", + "900 lifetime_care_plan_length>=Potassium^2-encounters_lifetime_payer_coverage\n", + "901 lifetime_care_plan_length>=(medications_lifetime_dispenses+1)/Estimated_Glomerular_Filtration_Rate\n", + "902 lifetime_care_plan_length>=log(device_lifetime_length)*mean_Carbon_Dioxide\n", + "903 lifetime_care_plan_length>=(log(encounters_count)/log(10))^Potassium\n", + "904 lifetime_care_plan_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_care_plans^2\n", + "905 lifetime_care_plan_length>=minimum(lifetime_care_plans,2*medications_lifetime_perc_covered)\n", + "906 lifetime_care_plan_length>=1/2*medications_lifetime/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "907 lifetime_care_plan_length>=active_care_plan_length^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "908 lifetime_care_plan_length>=log(active_care_plans)*procedures_lifetime\n", + "909 lifetime_care_plan_length>=(lifetime_care_plans-1)*Calcium\n", + "910 lifetime_care_plan_length>=active_conditions^2-Total_Cholesterol\n", + "911 lifetime_care_plan_length>=10^Globulin__Mass_volume__in_Serum_by_calculation/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "912 lifetime_care_plan_length>=minimum(DALY,2*active_care_plan_length)\n", + "913 lifetime_care_plan_length>=1/2*QOLS*mean_Microalbumin_Creatinine_Ratio\n", + "914 lifetime_care_plan_length>=active_care_plan_length*log(active_care_plans)\n", + "915 lifetime_care_plan_length>=Microalbumin_Creatinine_Ratio-encounters_count+1\n", + "916 lifetime_care_plan_length>=Microalbumin_Creatinine_Ratio-procedures_lifetime_cost+1\n", + "917 lifetime_care_plan_length>=active_care_plan_length\n", + "918 lifetime_care_plan_length>=active_care_plan_length\n", + "919 lifetime_care_plan_length>=age*sqrt(num_allergies)\n", + "920 lifetime_care_plan_length>=active_conditions^2*num_allergies\n", + "921 lifetime_care_plan_length>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*active_care_plan_length\n", + "922 lifetime_care_plan_length>=e^active_care_plans/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "923 lifetime_care_plan_length>=lifetime_care_plans*log(active_care_plan_length)\n", + "924 lifetime_care_plan_length>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*lifetime_care_plans\n", + "925 lifetime_care_plan_length>=2*Microalbumin_Creatinine_Ratio/mean_Calcium\n", + "926 lifetime_care_plan_length>=-Diastolic_Blood_Pressure+1/2*encounters_count\n", + "927 lifetime_care_plan_length>=minimum(Estimated_Glomerular_Filtration_Rate,1/2*medications_lifetime)\n", + "928 lifetime_care_plan_length>=-lifetime_condition_length+log(medications_lifetime_dispenses)\n", + "929 lifetime_care_plan_length>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Glucose\n", + "930 lifetime_care_plan_length>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/mean_Glucose\n", + "931 lifetime_care_plan_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2*device_lifetime_length\n", + "932 lifetime_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "933 lifetime_care_plan_length>=-Low_Density_Lipoprotein_Cholesterol+e^Potassium\n", + "934 lifetime_care_plan_length>=1/2*Glucose-mean_Estimated_Glomerular_Filtration_Rate\n", + "935 active_conditions<=lifetime_conditions\n", + "936 active_conditions<=active_condition_length*healthcare_expenses\n", + "937 active_conditions<=ceil(lifetime_condition_length)\n", + "938 active_conditions<=maximum(active_care_plans,1/2*active_condition_length)\n", + "939 active_conditions<=floor(1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "940 active_conditions<=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "941 active_conditions<=ceil(Estimated_Glomerular_Filtration_Rate)\n", + "942 active_conditions<=10^DALY/medications_lifetime_perc_covered\n", + "943 active_conditions<=maximum(encounters_count,DALY)\n", + "944 active_conditions<=10^Creatinine/encounters_lifetime_perc_covered\n", + "945 active_conditions<=ceil(Potassium)+medications_lifetime_dispenses\n", + "946 active_conditions<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_lifetime_cost-1\n", + "947 active_conditions<=sqrt(Total_Cholesterol)^mean_Creatinine\n", + "948 active_conditions<=encounters_count+floor(active_care_plan_length)\n", + "949 active_conditions<=active_care_plans+1/2*active_condition_length\n", + "950 active_conditions<=sqrt(QALY)+lifetime_care_plan_length\n", + "951 active_conditions>=num_allergies\n", + "952 active_conditions>=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "953 active_conditions>=ceil(medications_lifetime_perc_covered)\n", + "954 active_conditions>=minimum(Triglycerides,lifetime_conditions-1)\n", + "955 active_conditions>=floor(Potassium)\n", + "956 active_conditions>=active_care_plans-1\n", + "957 active_conditions>=minimum(active_care_plans,lifetime_conditions)\n", + "958 active_conditions>=minimum(lifetime_conditions,device_lifetime_length)\n", + "959 active_conditions>=floor(encounters_lifetime_perc_covered)\n", + "960 active_conditions>=lifetime_conditions*log(active_care_plans)/log(10)\n", + "961 active_conditions>=-Calcium+Respiratory_rate\n", + "962 active_conditions>=minimum(lifetime_conditions,medications_active)\n", + "963 active_conditions>=minimum(Sodium,lifetime_conditions-1)\n", + "964 active_conditions>=Estimated_Glomerular_Filtration_Rate/Carbon_Dioxide\n", + "965 active_conditions>=(immunizations_lifetime_cost+1)/Estimated_Glomerular_Filtration_Rate\n", + "966 active_conditions>=(Carbon_Dioxide-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "967 active_conditions>=sqrt(encounters_lifetime_total_cost)/mean_Carbon_Dioxide\n", + "968 active_conditions>=sqrt(lifetime_conditions)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "969 active_conditions>=sqrt(procedures_lifetime_cost)/mean_Microalbumin_Creatinine_Ratio\n", + "970 active_conditions>=lifetime_conditions*log(immunizations_lifetime)\n", + "971 active_conditions>=-healthcare_coverage+lifetime_conditions\n", + "972 active_conditions>=ceil(age)-mean_Heart_rate\n", + "973 active_conditions>=-QOLS+1/2*lifetime_care_plans\n", + "974 active_conditions>=2*Bilirubin_total__Mass_volume__in_Serum,Plasma+active_care_plans\n", + "975 active_conditions>=floor(lifetime_condition_length)/age\n", + "976 active_conditions>=minimum(DALY,log(lifetime_condition_length)/log(10))\n", + "977 active_conditions>=lifetime_care_plans-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "978 active_conditions>=-encounters_count+lifetime_conditions\n", + "979 active_conditions>=minimum(Estimated_Glomerular_Filtration_Rate,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "980 active_conditions>=minimum(lifetime_conditions,log(medications_lifetime)/log(10))\n", + "981 active_conditions>=active_condition_length/lifetime_condition_length\n", + "982 active_conditions>=minimum(active_condition_length,QOLS)\n", + "983 active_conditions>=floor(Globulin__Mass_volume__in_Serum_by_calculation)/QOLS\n", + "984 active_conditions>=-lifetime_care_plans+2*medications_lifetime_perc_covered\n", + "985 active_conditions>=floor(age)-mean_Glucose\n", + "986 active_conditions>=-Carbon_Dioxide+DALY\n", + "987 active_conditions>=minimum(active_care_plan_length,log(procedures_lifetime))\n", + "988 active_conditions>=-QALY+floor(DALY)\n", + "989 active_conditions>=floor(log(DALY))\n", + "990 active_conditions>=-Heart_rate+floor(age)\n", + "991 active_conditions>=minimum(lifetime_conditions,num_allergies^2)\n", + "992 active_conditions>=minimum(procedures_lifetime,active_care_plans^2)\n", + "993 active_conditions>=-encounters_lifetime_payer_coverage+lifetime_conditions-1\n", + "994 lifetime_conditions<=10^QOLS+active_conditions\n", + "995 lifetime_conditions<=maximum(Sodium,1/2*Respiratory_rate)\n", + "996 lifetime_conditions<=encounters_lifetime_total_cost\n", + "997 lifetime_conditions<=1/4*age\n", + "998 lifetime_conditions<=Respiratory_rate+active_care_plans\n", + "999 lifetime_conditions<=minimum(Sodium,active_conditions+1)\n", + "1000 lifetime_conditions<=encounters_count^2\n", + "1001 lifetime_conditions<=maximum(encounters_count,active_conditions+1)\n", + "1002 lifetime_conditions<=ceil(1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1003 lifetime_conditions<=sqrt(latitude)+DALY\n", + "1004 lifetime_conditions<=minimum(Triglycerides,active_conditions+1)\n", + "1005 lifetime_conditions<=1/active_care_plan_length+active_condition_length\n", + "1006 lifetime_conditions<=maximum(active_conditions,1/imaging_studies_lifetime)\n", + "1007 lifetime_conditions<=2*active_conditions/imaging_studies_lifetime\n", + "1008 lifetime_conditions<=(DALY-1)^Estimated_Glomerular_Filtration_Rate\n", + "1009 lifetime_conditions<=10^medications_active/num_allergies\n", + "1010 lifetime_conditions<=healthcare_expenses*lifetime_condition_length\n", + "1011 lifetime_conditions<=sqrt(age)+lifetime_care_plan_length\n", + "1012 lifetime_conditions<=medications_lifetime_length^Triglycerides\n", + "1013 lifetime_conditions<=maximum(active_conditions,Microalbumin_Creatinine_Ratio)\n", + "1014 lifetime_conditions<=10^immunizations_lifetime+Respiratory_rate\n", + "1015 lifetime_conditions<=active_conditions^2+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1016 lifetime_conditions<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+medications_lifetime\n", + "1017 lifetime_conditions<=floor(Carbon_Dioxide)/immunizations_lifetime\n", + "1018 lifetime_conditions<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(active_condition_length)\n", + "1019 lifetime_conditions<=active_conditions+healthcare_coverage\n", + "1020 lifetime_conditions<=log(healthcare_expenses)/log(10)+medications_lifetime_cost\n", + "1021 lifetime_conditions<=1/2*active_care_plan_length/num_allergies\n", + "1022 lifetime_conditions<=maximum(active_conditions,1/device_lifetime_length)\n", + "1023 lifetime_conditions<=maximum(active_conditions,1/2*Microalbumin_Creatinine_Ratio)\n", + "1024 lifetime_conditions<=encounters_count+lifetime_care_plan_length\n", + "1025 lifetime_conditions<=active_conditions+encounters_count\n", + "1026 lifetime_conditions<=e^lifetime_care_plan_length/active_care_plans\n", + "1027 lifetime_conditions<=maximum(active_conditions,10^encounters_lifetime_payer_coverage)\n", + "1028 lifetime_conditions<=maximum(active_condition_length,log(healthcare_coverage)/log(10))\n", + "1029 lifetime_conditions<=Potassium^2-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1030 lifetime_conditions<=encounters_count^2/active_care_plans\n", + "1031 lifetime_conditions<=log(encounters_lifetime_payer_coverage)^2\n", + "1032 lifetime_conditions<=-QALY+2*latitude\n", + "1033 lifetime_conditions<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "1034 lifetime_conditions<=encounters_lifetime_perc_covered^longitude\n", + "1035 lifetime_conditions<=floor(medications_lifetime_cost)/medications_lifetime_length\n", + "1036 lifetime_conditions<=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/num_allergies\n", + "1037 lifetime_conditions<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(High_Density_Lipoprotein_Cholesterol)\n", + "1038 lifetime_conditions<=2*High_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "1039 lifetime_conditions<=active_care_plan_length^2/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1040 lifetime_conditions<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_lifetime_cost\n", + "1041 lifetime_conditions<=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)\n", + "1042 lifetime_conditions<=10^Creatinine+DALY\n", + "1043 lifetime_conditions<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions\n", + "1044 lifetime_conditions<=Heart_rate/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1045 lifetime_conditions<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)*encounters_lifetime_perc_covered\n", + "1046 lifetime_conditions<=sqrt(age)+DALY\n", + "1047 lifetime_conditions<=10^active_care_plans+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1048 lifetime_conditions<=active_care_plans+encounters_count+1\n", + "1049 lifetime_conditions<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2-medications_lifetime\n", + "1050 lifetime_conditions<=ceil(active_care_plan_length)+encounters_count\n", + "1051 lifetime_conditions<=active_conditions^2/num_allergies\n", + "1052 lifetime_conditions>=num_allergies\n", + "1053 lifetime_conditions>=active_conditions\n", + "1054 lifetime_conditions>=-active_care_plans+lifetime_care_plans\n", + "1055 lifetime_conditions>=minimum(lifetime_care_plans,procedures_lifetime)\n", + "1056 lifetime_conditions>=-encounters_lifetime_payer_coverage+procedures_lifetime\n", + "1057 lifetime_conditions>=-Heart_rate+ceil(age)\n", + "1058 lifetime_conditions>=-Albumin__Mass_volume__in_Serum,Plasma+2*active_care_plans\n", + "1059 lifetime_conditions>=minimum(Microalbumin_Creatinine_Ratio,2*active_care_plans)\n", + "1060 lifetime_conditions>=minimum(QOLS,ceil(lifetime_condition_length))\n", + "1061 lifetime_conditions>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)*medications_lifetime_perc_covered\n", + "1062 lifetime_conditions>=procedures_lifetime^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1063 lifetime_conditions>=High_Density_Lipoprotein_Cholesterol+floor(longitude)\n", + "1064 lifetime_conditions>=1/2*QALY-mean_Estimated_Glomerular_Filtration_Rate\n", + "1065 lifetime_conditions>=2*mean_Creatinine-2\n", + "1066 lifetime_conditions>=floor(Potassium)+immunizations_lifetime\n", + "1067 lifetime_conditions>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+procedures_lifetime\n", + "1068 lifetime_conditions>=QALY+longitude-1\n", + "1069 lifetime_conditions>=active_conditions^2/Estimated_Glomerular_Filtration_Rate\n", + "1070 lifetime_conditions>=floor(lifetime_condition_length)/active_condition_length\n", + "1071 lifetime_conditions>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/2*procedures_lifetime)\n", + "1072 active_condition_length<=DALY+QALY\n", + "1073 active_condition_length<=lifetime_condition_length\n", + "1074 active_condition_length<=Microalbumin_Creatinine_Ratio*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1075 active_condition_length<=High_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "1076 active_condition_length<=2*High_Density_Lipoprotein_Cholesterol-medications_active\n", + "1077 active_condition_length<=10^lifetime_condition_length/latitude\n", + "1078 active_condition_length<=floor(Body_Mass_Index)+latitude\n", + "1079 active_condition_length<=Body_Mass_Index*active_conditions\n", + "1080 active_condition_length<=QALY*log(Potassium)\n", + "1081 active_condition_length<=longitude^2/QALY\n", + "1082 active_condition_length<=sqrt(Sodium)+medications_lifetime_cost\n", + "1083 active_condition_length<=(Body_Mass_Index-1)/imaging_studies_lifetime\n", + "1084 active_condition_length<=maximum(medications_lifetime,e^Potassium)\n", + "1085 active_condition_length<=floor(healthcare_coverage)/device_lifetime_length\n", + "1086 active_condition_length<=High_Density_Lipoprotein_Cholesterol^2/Estimated_Glomerular_Filtration_Rate\n", + "1087 active_condition_length<=(active_conditions+1)*Calcium\n", + "1088 active_condition_length<=2*QALY-procedures_lifetime\n", + "1089 active_condition_length<=lifetime_care_plan_length*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1090 active_condition_length<=active_conditions*healthcare_expenses\n", + "1091 active_condition_length<=lifetime_condition_length-num_allergies\n", + "1092 active_condition_length<=-Urea_Nitrogen+lifetime_condition_length-1\n", + "1093 active_condition_length<=Low_Density_Lipoprotein_Cholesterol^2/Microalbumin_Creatinine_Ratio\n", + "1094 active_condition_length<=log(healthcare_coverage)^2\n", + "1095 active_condition_length<=age-encounters_lifetime_perc_covered-1\n", + "1096 active_condition_length<=1/2*Chloride+Estimated_Glomerular_Filtration_Rate\n", + "1097 active_condition_length<=floor(Microalbumin_Creatinine_Ratio)+medications_lifetime_length\n", + "1098 active_condition_length<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Triglycerides/log(10)\n", + "1099 active_condition_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+encounters_lifetime_payer_coverage\n", + "1100 active_condition_length<=age-medications_lifetime_perc_covered-1\n", + "1101 active_condition_length<=1/2*immunizations_lifetime_cost/immunizations_lifetime\n", + "1102 active_condition_length<=Urea_Nitrogen^2-procedures_lifetime\n", + "1103 active_condition_length<=minimum(healthcare_expenses,mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "1104 active_condition_length<=(Triglycerides-1)/num_allergies\n", + "1105 active_condition_length<=mean_Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "1106 active_condition_length<=sqrt(active_care_plan_length)+Protein__Mass_volume__in_Serum,Plasma\n", + "1107 active_condition_length<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/High_Density_Lipoprotein_Cholesterol\n", + "1108 active_condition_length<=Glucose^2/age\n", + "1109 active_condition_length<=sqrt(healthcare_expenses)/Albumin__Mass_volume__in_Serum,Plasma\n", + "1110 active_condition_length<=floor(Calcium)*mean_Calcium\n", + "1111 active_condition_length<=healthcare_coverage^2/procedures_lifetime_cost\n", + "1112 active_condition_length<=-Body_Mass_Index+2*age\n", + "1113 active_condition_length<=10^active_care_plan_length/active_care_plans\n", + "1114 active_condition_length<=QALY*log(age)/log(10)\n", + "1115 active_condition_length<=ceil(active_care_plan_length)^Sodium\n", + "1116 active_condition_length<=maximum(Heart_rate,e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1117 active_condition_length<=log(Low_Density_Lipoprotein_Cholesterol)^active_conditions\n", + "1118 active_condition_length<=Sodium^2/encounters_count\n", + "1119 active_condition_length<=maximum(latitude,e^encounters_count)\n", + "1120 active_condition_length<=2*encounters_count/medications_lifetime_perc_covered\n", + "1121 active_condition_length<=1/2*medications_lifetime_dispenses/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1122 active_condition_length<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "1123 active_condition_length<=maximum(encounters_lifetime_payer_coverage,sqrt(encounters_lifetime_total_cost))\n", + "1124 active_condition_length<=10^encounters_lifetime_perc_covered*latitude\n", + "1125 active_condition_length<=High_Density_Lipoprotein_Cholesterol+medications_lifetime-1\n", + "1126 active_condition_length<=10^QOLS*latitude\n", + "1127 active_condition_length<=(log(QALY)/log(10))^lifetime_condition_length\n", + "1128 active_condition_length<=DALY^2+QALY\n", + "1129 active_condition_length<=1/2*Systolic_Blood_Pressure+encounters_count\n", + "1130 active_condition_length<=sqrt(Triglycerides)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1131 active_condition_length>=num_allergies\n", + "1132 active_condition_length>=device_lifetime_length\n", + "1133 active_condition_length>=age-latitude+1\n", + "1134 active_condition_length>=sqrt(lifetime_condition_length-1)\n", + "1135 active_condition_length>=Carbon_Dioxide+log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1136 active_condition_length>=minimum(Urea_Nitrogen,active_care_plan_length+1)\n", + "1137 active_condition_length>=1/2*Low_Density_Lipoprotein_Cholesterol/active_conditions\n", + "1138 active_condition_length>=minimum(lifetime_condition_length,1/2*active_care_plan_length)\n", + "1139 active_condition_length>=minimum(active_care_plan_length,active_conditions)\n", + "1140 active_condition_length>=1/2*encounters_count/Creatinine\n", + "1141 active_condition_length>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,abs(active_care_plan_length))\n", + "1142 active_condition_length>=log(medications_lifetime_dispenses)*num_allergies\n", + "1143 active_condition_length>=2*active_care_plan_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1144 active_condition_length>=-Body_Mass_Index+ceil(active_care_plan_length)\n", + "1145 active_condition_length>=(log(Glucose)/log(10))^mean_Creatinine\n", + "1146 active_condition_length>=1/2*Diastolic_Blood_Pressure-healthcare_coverage\n", + "1147 active_condition_length>=active_care_plan_length*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1148 active_condition_length>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "1149 active_condition_length>=(active_care_plan_length-1)*medications_lifetime_perc_covered\n", + "1150 active_condition_length>=e^medications_active/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1151 active_condition_length>=2*DALY-mean_Estimated_Glomerular_Filtration_Rate\n", + "1152 active_condition_length>=(lifetime_care_plan_length+1)/Albumin__Mass_volume__in_Serum,Plasma\n", + "1153 active_condition_length>=minimum(active_care_plan_length,procedures_lifetime^2)\n", + "1154 active_condition_length>=-Glomerular_filtration_rate_1_73_sq_M_predicted+QALY-1\n", + "1155 active_condition_length>=(lifetime_condition_length+1)/Urea_Nitrogen\n", + "1156 active_condition_length>=2*High_Density_Lipoprotein_Cholesterol-Systolic_Blood_Pressure\n", + "1157 active_condition_length>=2*Glucose-Total_Cholesterol\n", + "1158 active_condition_length>=(Respiratory_rate+1)/Creatinine\n", + "1159 active_condition_length>=1/2*encounters_count/mean_Creatinine\n", + "1160 active_condition_length>=lifetime_care_plans^2*medications_lifetime_perc_covered\n", + "1161 active_condition_length>=log(lifetime_condition_length)/log(10)+DALY\n", + "1162 active_condition_length>=Potassium+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1163 active_condition_length>=High_Density_Lipoprotein_Cholesterol*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "1164 active_condition_length>=2*age-mean_Systolic_Blood_Pressure\n", + "1165 active_condition_length>=Diastolic_Blood_Pressure-Heart_rate\n", + "1166 active_condition_length>=floor(lifetime_condition_length)/lifetime_conditions\n", + "1167 active_condition_length>=1/2*encounters_count-mean_Glucose\n", + "1168 active_condition_length>=floor(Creatinine)+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1169 active_condition_length>=active_conditions*log(lifetime_care_plan_length)/log(10)\n", + "1170 active_condition_length>=minimum(active_care_plan_length,log(procedures_lifetime_cost))\n", + "1171 active_condition_length>=sqrt(immunizations_lifetime_cost)*num_allergies\n", + "1172 active_condition_length>=active_conditions*log(lifetime_condition_length)/log(10)\n", + "1173 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1174 active_condition_length>=Respiratory_rate*log(lifetime_conditions)/log(10)\n", + "1175 active_condition_length>=minimum(active_care_plan_length,device_lifetime_length^2)\n", + "1176 active_condition_length>=floor(encounters_lifetime_perc_covered)*lifetime_condition_length\n", + "1177 active_condition_length>=(2*encounters_lifetime_perc_covered)^Urea_Nitrogen\n", + "1178 active_condition_length>=sqrt(medications_lifetime_dispenses)-encounters_count\n", + "1179 active_condition_length>=sqrt(medications_lifetime_dispenses)-mean_Potassium\n", + "1180 active_condition_length>=1/2*medications_active*procedures_lifetime\n", + "1181 active_condition_length>=lifetime_care_plans*log(DALY)\n", + "1182 active_condition_length>=log(Glucose)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1183 lifetime_condition_length<=encounters_lifetime_total_cost\n", + "1184 lifetime_condition_length<=2*Body_Height/num_allergies\n", + "1185 lifetime_condition_length<=Body_Height+1/2*encounters_lifetime_payer_coverage\n", + "1186 lifetime_condition_length<=10^active_condition_length\n", + "1187 lifetime_condition_length<=active_condition_length^2+1\n", + "1188 lifetime_condition_length<=encounters_count*floor(latitude)\n", + "1189 lifetime_condition_length<=Diastolic_Blood_Pressure*sqrt(latitude)\n", + "1190 lifetime_condition_length<=floor(encounters_lifetime_total_cost)/medications_active\n", + "1191 lifetime_condition_length<=sqrt(Carbon_Dioxide)^Potassium\n", + "1192 lifetime_condition_length<=floor(healthcare_coverage)/procedures_lifetime\n", + "1193 lifetime_condition_length<=(active_condition_length+1)*lifetime_conditions\n", + "1194 lifetime_condition_length<=age*sqrt(latitude)\n", + "1195 lifetime_condition_length<=1/2*Low_Density_Lipoprotein_Cholesterol*active_conditions\n", + "1196 lifetime_condition_length<=Heart_rate*sqrt(encounters_count)\n", + "1197 lifetime_condition_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+healthcare_coverage\n", + "1198 lifetime_condition_length<=maximum(active_condition_length,10^lifetime_conditions)\n", + "1199 lifetime_condition_length<=1/2*Diastolic_Blood_Pressure*lifetime_conditions\n", + "1200 lifetime_condition_length<=e^Calcium/Urea_Nitrogen\n", + "1201 lifetime_condition_length<=healthcare_expenses*lifetime_conditions\n", + "1202 lifetime_condition_length<=maximum(Sodium,1/imaging_studies_lifetime)\n", + "1203 lifetime_condition_length<=Microalbumin_Creatinine_Ratio*medications_lifetime_length^2\n", + "1204 lifetime_condition_length<=sqrt(healthcare_expenses)+Body_Mass_Index\n", + "1205 lifetime_condition_length<=e^encounters_count/procedures_lifetime\n", + "1206 lifetime_condition_length<=sqrt(encounters_count)*mean_High_Density_Lipoprotein_Cholesterol\n", + "1207 lifetime_condition_length<=(log(Body_Mass_Index)/log(10))^active_condition_length\n", + "1208 lifetime_condition_length<=Microalbumin_Creatinine_Ratio*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1209 lifetime_condition_length<=Sodium+medications_lifetime_cost-1\n", + "1210 lifetime_condition_length<=(Systolic_Blood_Pressure-1)/imaging_studies_lifetime\n", + "1211 lifetime_condition_length<=log(age)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1212 lifetime_condition_length<=10^active_care_plans*Heart_rate\n", + "1213 lifetime_condition_length<=log(Microalbumin_Creatinine_Ratio)^active_conditions\n", + "1214 lifetime_condition_length<=encounters_count^2+Body_Height\n", + "1215 lifetime_condition_length<=Urea_Nitrogen^2*mean_Potassium\n", + "1216 lifetime_condition_length<=1/2*encounters_lifetime_total_cost/procedures_lifetime\n", + "1217 lifetime_condition_length<=active_condition_length^2/mean_Creatinine\n", + "1218 lifetime_condition_length<=sqrt(Heart_rate)*High_Density_Lipoprotein_Cholesterol\n", + "1219 lifetime_condition_length<=Carbon_Dioxide^2/num_allergies\n", + "1220 lifetime_condition_length<=(QALY-1)*mean_Urea_Nitrogen\n", + "1221 lifetime_condition_length<=active_care_plan_length^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1222 lifetime_condition_length<=sqrt(MCV__Entitic_volume__by_Automated_count)^active_conditions\n", + "1223 lifetime_condition_length<=1/2*Estimated_Glomerular_Filtration_Rate+medications_lifetime_dispenses\n", + "1224 lifetime_condition_length<=sqrt(healthcare_expenses)+encounters_count\n", + "1225 lifetime_condition_length<=4*mean_Urea_Nitrogen^2\n", + "1226 lifetime_condition_length<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)*age\n", + "1227 lifetime_condition_length<=(log(medications_lifetime_cost)/log(10))^age\n", + "1228 lifetime_condition_length<=maximum(lifetime_care_plan_length,1/2*healthcare_coverage)\n", + "1229 lifetime_condition_length<=sqrt(healthcare_expenses)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1230 lifetime_condition_length<=Systolic_Blood_Pressure^2/DALY\n", + "1231 lifetime_condition_length<=(1/medications_lifetime_perc_covered)^QALY\n", + "1232 lifetime_condition_length<=Sodium*ceil(DALY)\n", + "1233 lifetime_condition_length<=lifetime_care_plan_length^2+Body_Weight\n", + "1234 lifetime_condition_length<=Systolic_Blood_Pressure^2/device_lifetime_length\n", + "1235 lifetime_condition_length<=log(Triglycerides)^active_conditions\n", + "1236 lifetime_condition_length<=(Creatinine+1)*Total_Cholesterol\n", + "1237 lifetime_condition_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^active_conditions\n", + "1238 lifetime_condition_length<=(High_Density_Lipoprotein_Cholesterol-1)*active_conditions\n", + "1239 lifetime_condition_length<=10^active_condition_length-DALY\n", + "1240 lifetime_condition_length<=(active_condition_length+1)^lifetime_conditions\n", + "1241 lifetime_condition_length>=num_allergies\n", + "1242 lifetime_condition_length>=active_condition_length\n", + "1243 lifetime_condition_length>=active_care_plan_length*log(procedures_lifetime)\n", + "1244 lifetime_condition_length>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma+lifetime_care_plan_length\n", + "1245 lifetime_condition_length>=1/2*Body_Weight+Creatinine\n", + "1246 lifetime_condition_length>=log(Estimated_Glomerular_Filtration_Rate)*mean_Microalbumin_Creatinine_Ratio/log(10)\n", + "1247 lifetime_condition_length>=-lifetime_care_plan_length+log(medications_lifetime_dispenses)\n", + "1248 lifetime_condition_length>=minimum(lifetime_care_plan_length,procedures_lifetime)\n", + "1249 lifetime_condition_length>=log(10^device_lifetime_length)\n", + "1250 lifetime_condition_length>=active_conditions^2-Creatinine\n", + "1251 lifetime_condition_length>=Glomerular_filtration_rate_1_73_sq_M_predicted+encounters_lifetime_perc_covered+1\n", + "1252 lifetime_condition_length>=10^sqrt(mean_Creatinine)\n", + "1253 lifetime_condition_length>=(1/Body_temperature)^QOLS\n", + "1254 lifetime_condition_length>=active_condition_length*log(active_conditions)\n", + "1255 lifetime_condition_length>=-latitude+lifetime_care_plan_length+1\n", + "1256 lifetime_condition_length>=2*Bilirubin_total__Mass_volume__in_Serum,Plasma*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1257 lifetime_condition_length>=-age+lifetime_care_plan_length+1\n", + "1258 lifetime_condition_length>=2*High_Density_Lipoprotein_Cholesterol-medications_lifetime_cost\n", + "1259 lifetime_condition_length>=e^medications_active/Urea_Nitrogen\n", + "1260 lifetime_condition_length>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*lifetime_care_plans\n", + "1261 lifetime_condition_length>=-Respiratory_rate+2*procedures_lifetime\n", + "1262 lifetime_condition_length>=active_condition_length+num_allergies\n", + "1263 lifetime_condition_length>=(encounters_lifetime_perc_covered+1)*mean_Microalbumin_Creatinine_Ratio\n", + "1264 lifetime_condition_length>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+medications_lifetime\n", + "1265 lifetime_condition_length>=active_condition_length^2/Estimated_Glomerular_Filtration_Rate\n", + "1266 lifetime_condition_length>=(Bilirubin_total__Mass_volume__in_Serum,Plasma^2)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1267 lifetime_condition_length>=sqrt(Carbon_Dioxide)*device_lifetime_length\n", + "1268 lifetime_condition_length>=log(active_conditions)/log(10)+active_condition_length\n", + "1269 lifetime_condition_length>=2*encounters_lifetime_payer_coverage/Total_Cholesterol\n", + "1270 lifetime_condition_length>=-Glomerular_filtration_rate_1_73_sq_M_predicted+2*age\n", + "1271 lifetime_condition_length>=(Creatinine-1)*active_care_plan_length\n", + "1272 lifetime_condition_length>=-Microalbumin_Creatinine_Ratio+2*active_care_plan_length\n", + "1273 lifetime_condition_length>=log(lifetime_conditions-1)\n", + "1274 lifetime_condition_length>=-Estimated_Glomerular_Filtration_Rate+Microalbumin_Creatinine_Ratio+1\n", + "1275 lifetime_condition_length>=encounters_lifetime_perc_covered*log(lifetime_conditions)/log(10)\n", + "1276 lifetime_condition_length>=High_Density_Lipoprotein_Cholesterol^2/Estimated_Glomerular_Filtration_Rate\n", + "1277 lifetime_condition_length>=active_condition_length^2/QALY\n", + "1278 lifetime_condition_length>=active_care_plan_length*log(DALY)/log(10)\n", + "1279 lifetime_condition_length>=1/2*e^Potassium\n", + "1280 lifetime_condition_length>=sqrt(healthcare_coverage)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1281 lifetime_condition_length>=latitude*log(num_allergies)\n", + "1282 lifetime_condition_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(active_condition_length)\n", + "1283 lifetime_condition_length>=1/2*healthcare_coverage/mean_Total_Cholesterol\n", + "1284 lifetime_condition_length>=-Body_Height+2*lifetime_care_plan_length\n", + "1285 lifetime_condition_length>=(active_care_plans-1)^mean_Creatinine\n", + "1286 lifetime_condition_length>=immunizations_lifetime_cost+log(device_lifetime_length)\n", + "1287 lifetime_condition_length>=active_conditions^2-encounters_count\n", + "1288 lifetime_condition_length>=log(device_lifetime_length)-longitude\n", + "1289 lifetime_condition_length>=2*QOLS*mean_Microalbumin_Creatinine_Ratio\n", + "1290 lifetime_condition_length>=device_lifetime_length*log(lifetime_care_plan_length)\n", + "1291 lifetime_condition_length>=active_care_plan_length*sqrt(medications_lifetime_perc_covered)\n", + "1292 lifetime_condition_length>=Chloride*ceil(medications_lifetime_perc_covered)\n", + "1293 lifetime_condition_length>=minimum(procedures_lifetime_cost,log(medications_lifetime_length))\n", + "1294 lifetime_condition_length>=(medications_active-1)*Carbon_Dioxide\n", + "1295 lifetime_condition_length>=DALY^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1296 lifetime_condition_length>=-Diastolic_Blood_Pressure+2*QALY\n", + "1297 lifetime_condition_length>=minimum(immunizations_lifetime_cost,-Respiratory_rate)\n", + "1298 lifetime_condition_length>=(Body_Mass_Index-1)*Creatinine\n", + "1299 lifetime_condition_length>=(Potassium-1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1300 device_lifetime_length<=healthcare_coverage\n", + "1301 device_lifetime_length<=active_condition_length\n", + "1302 device_lifetime_length<=encounters_lifetime_payer_coverage\n", + "1303 device_lifetime_length<=num_allergies^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1304 device_lifetime_length<=active_care_plan_length/medications_lifetime_perc_covered\n", + "1305 device_lifetime_length<=active_care_plan_length^2/medications_active\n", + "1306 device_lifetime_length<=medications_lifetime_perc_covered/num_allergies\n", + "1307 device_lifetime_length<=floor(lifetime_condition_length)\n", + "1308 device_lifetime_length<=-active_condition_length+lifetime_condition_length\n", + "1309 device_lifetime_length<=encounters_lifetime_payer_coverage^2/medications_lifetime_dispenses\n", + "1310 device_lifetime_length<=medications_active^Respiratory_rate\n", + "1311 device_lifetime_length<=10^active_conditions/medications_lifetime_cost\n", + "1312 device_lifetime_length<=immunizations_lifetime^Body_temperature\n", + "1313 device_lifetime_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*healthcare_expenses\n", + "1314 device_lifetime_length<=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1315 device_lifetime_length<=medications_active^2/medications_lifetime_perc_covered\n", + "1316 device_lifetime_length<=(2*encounters_lifetime_perc_covered)^Total_Cholesterol\n", + "1317 device_lifetime_length<=procedures_lifetime_cost^Triglycerides\n", + "1318 device_lifetime_length<=(Creatinine-1)^healthcare_expenses\n", + "1319 device_lifetime_length<=10^active_care_plans/mean_Total_Cholesterol\n", + "1320 device_lifetime_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/immunizations_lifetime\n", + "1321 device_lifetime_length<=DALY^healthcare_expenses\n", + "1322 device_lifetime_length<=(-medications_lifetime_perc_covered)^Body_Mass_Index\n", + "1323 device_lifetime_length<=(2*encounters_lifetime_perc_covered)^Microalbumin_Creatinine_Ratio\n", + "1324 device_lifetime_length<=active_care_plan_length^Respiratory_rate\n", + "1325 device_lifetime_length<=DALY*log(healthcare_expenses)/log(10)\n", + "1326 device_lifetime_length<=2*encounters_lifetime_perc_covered*lifetime_condition_length\n", + "1327 device_lifetime_length<=log(active_conditions)^healthcare_expenses\n", + "1328 device_lifetime_length<=sqrt(active_condition_length)+QALY\n", + "1329 device_lifetime_length<=(log(active_care_plan_length)/log(10))^healthcare_expenses\n", + "1330 device_lifetime_length<=immunizations_lifetime^Mental_health_Outpatient_Note\n", + "1331 device_lifetime_length<=10^DALY/medications_lifetime_cost\n", + "1332 device_lifetime_length<=active_condition_length^healthcare_expenses\n", + "1333 device_lifetime_length<=(-encounters_lifetime_perc_covered)^healthcare_expenses\n", + "1334 device_lifetime_length<=immunizations_lifetime/num_allergies\n", + "1335 device_lifetime_length<=(1/2*DALY)^healthcare_expenses\n", + "1336 device_lifetime_length<=log(DALY)^healthcare_expenses\n", + "1337 device_lifetime_length<=10^encounters_count/medications_lifetime_cost\n", + "1338 device_lifetime_length<=(1/longitude)^encounters_lifetime_payer_coverage\n", + "1339 device_lifetime_length<=(active_care_plans-1)^Body_Mass_Index\n", + "1340 device_lifetime_length>=-imaging_studies_lifetime\n", + "1341 device_lifetime_length>=-healthcare_coverage\n", + "1342 device_lifetime_length>=-num_allergies\n", + "1343 device_lifetime_length>=Glucose-Systolic_Blood_Pressure+1\n", + "1344 device_lifetime_length>=Carbon_Dioxide-QALY+1\n", + "1345 device_lifetime_length>=2*Creatinine-Urea_Nitrogen\n", + "1346 encounters_count<=encounters_lifetime_total_cost\n", + "1347 encounters_count<=1/2*encounters_lifetime_total_cost/latitude\n", + "1348 encounters_count<=1/2*encounters_lifetime_total_cost/device_lifetime_length\n", + "1349 encounters_count<=(encounters_lifetime_total_cost-1)/Heart_rate\n", + "1350 encounters_count<=10^DALY*Body_Mass_Index\n", + "1351 encounters_count<=2*Triglycerides-mean_Potassium\n", + "1352 encounters_count<=(encounters_lifetime_total_cost-1)/Glucose\n", + "1353 encounters_count<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2-active_care_plans\n", + "1354 encounters_count<=(encounters_lifetime_total_cost-1)/Chloride\n", + "1355 encounters_count<=10^medications_active*Globulin__Mass_volume__in_Serum_by_calculation\n", + "1356 encounters_count<=1/2*Respiratory_rate+medications_lifetime_cost\n", + "1357 encounters_count<=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Body_Mass_Index\n", + "1358 encounters_count<=maximum(QALY,e^medications_lifetime)\n", + "1359 encounters_count<=e^DALY-longitude\n", + "1360 encounters_count<=2*encounters_lifetime_total_cost/Body_Height\n", + "1361 encounters_count<=(log(Respiratory_rate)/log(10))^mean_High_Density_Lipoprotein_Cholesterol\n", + "1362 encounters_count<=2*encounters_lifetime_total_cost/Total_Cholesterol\n", + "1363 encounters_count<=maximum(medications_lifetime_dispenses,log(healthcare_expenses))\n", + "1364 encounters_count<=maximum(medications_lifetime_length,Respiratory_rate)\n", + "1365 encounters_count<=QALY+encounters_lifetime_payer_coverage-1\n", + "1366 encounters_count<=floor(active_care_plan_length)/imaging_studies_lifetime\n", + "1367 encounters_count<=Triglycerides^2/mean_Diastolic_Blood_Pressure\n", + "1368 encounters_count<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime_cost\n", + "1369 encounters_count<=Respiratory_rate+1/2*medications_lifetime_dispenses\n", + "1370 encounters_count<=floor(Body_Height)/num_allergies\n", + "1371 encounters_count<=floor(Potassium)^mean_Potassium\n", + "1372 encounters_count<=10^Creatinine+age\n", + "1373 encounters_count<=(DALY+1)*Carbon_Dioxide\n", + "1374 encounters_count<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1375 encounters_count<=e^(1/2*mean_Urea_Nitrogen)\n", + "1376 encounters_count<=floor(Microalbumin_Creatinine_Ratio)+medications_lifetime\n", + "1377 encounters_count<=1/2*lifetime_care_plan_length/imaging_studies_lifetime\n", + "1378 encounters_count<=log(Albumin__Mass_volume__in_Serum,Plasma)*mean_Triglycerides\n", + "1379 encounters_count<=10^medications_lifetime/medications_lifetime_perc_covered\n", + "1380 encounters_count<=Carbon_Dioxide+medications_lifetime+1\n", + "1381 encounters_count<=(Globulin__Mass_volume__in_Serum_by_calculation+1)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1382 encounters_count<=1/2*healthcare_coverage/procedures_lifetime\n", + "1383 encounters_count<=Urea_Nitrogen^2+Albumin__Mass_volume__in_Serum,Plasma\n", + "1384 encounters_count<=log(Microalbumin_Creatinine_Ratio)*medications_lifetime_length\n", + "1385 encounters_count<=age^2/procedures_lifetime\n", + "1386 encounters_count<=e^medications_lifetime_length/medications_lifetime\n", + "1387 encounters_count<=10^QOLS+medications_lifetime_cost\n", + "1388 encounters_count<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/num_allergies\n", + "1389 encounters_count<=(DALY+1)*QALY\n", + "1390 encounters_count<=10^active_care_plans+encounters_lifetime_payer_coverage\n", + "1391 encounters_count<=10^active_care_plans*Body_Mass_Index\n", + "1392 encounters_count<=(DALY+1)*Body_Mass_Index\n", + "1393 encounters_count<=10^active_care_plan_length+age\n", + "1394 encounters_count<=1/2*High_Density_Lipoprotein_Cholesterol+encounters_lifetime_payer_coverage\n", + "1395 encounters_count<=sqrt(Creatinine)*lifetime_condition_length\n", + "1396 encounters_count<=10^lifetime_conditions+immunizations_lifetime_cost\n", + "1397 encounters_count<=10^lifetime_conditions+medications_lifetime\n", + "1398 encounters_count<=maximum(latitude,e^lifetime_conditions)\n", + "1399 encounters_count<=minimum(healthcare_expenses,2*Body_temperature)\n", + "1400 encounters_count<=10^Creatinine+High_Density_Lipoprotein_Cholesterol\n", + "1401 encounters_count<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)^Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1402 encounters_count>=num_allergies\n", + "1403 encounters_count>=active_care_plans\n", + "1404 encounters_count>=sqrt(encounters_lifetime_total_cost)-latitude\n", + "1405 encounters_count>=encounters_lifetime_perc_covered\n", + "1406 encounters_count>=-Diastolic_Blood_Pressure+floor(age)\n", + "1407 encounters_count>=1/2*active_conditions\n", + "1408 encounters_count>=2*medications_active-2\n", + "1409 encounters_count>=sqrt(active_conditions)\n", + "1410 encounters_count>=(encounters_lifetime_total_cost+1)/Body_Height\n", + "1411 encounters_count>=sqrt(encounters_lifetime_total_cost)-Estimated_Glomerular_Filtration_Rate\n", + "1412 encounters_count>=floor(log(active_care_plan_length))\n", + "1413 encounters_count>=-active_care_plan_length+active_conditions\n", + "1414 encounters_count>=(encounters_lifetime_total_cost+1)/Sodium\n", + "1415 encounters_count>=ceil(1/2*active_conditions)\n", + "1416 encounters_count>=sqrt(lifetime_conditions)\n", + "1417 encounters_count>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1418 encounters_count>=-Glucose+ceil(age)\n", + "1419 encounters_count>=ceil(Potassium)\n", + "1420 encounters_count>=(encounters_lifetime_total_cost+1)/mean_Sodium\n", + "1421 encounters_count>=active_care_plans+immunizations_lifetime\n", + "1422 encounters_count>=ceil(2*Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1423 encounters_count>=minimum(active_condition_length,2*procedures_lifetime)\n", + "1424 encounters_count>=minimum(device_lifetime_length,medications_lifetime)\n", + "1425 encounters_count>=(medications_lifetime+1)/Potassium\n", + "1426 encounters_count>=ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*procedures_lifetime\n", + "1427 encounters_count>=-active_care_plan_length+log(medications_lifetime_dispenses)\n", + "1428 encounters_count>=-active_care_plans+2*lifetime_care_plans\n", + "1429 encounters_count>=active_care_plans^2-Respiratory_rate\n", + "1430 encounters_count>=(DALY+1)*medications_lifetime_perc_covered\n", + "1431 encounters_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime-1\n", + "1432 encounters_count>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "1433 encounters_count>=minimum(medications_lifetime,1/DALY)\n", + "1434 encounters_count>=active_care_plans*sqrt(medications_active)\n", + "1435 encounters_count>=ceil(lifetime_condition_length)/latitude\n", + "1436 encounters_count>=(lifetime_care_plans-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "1437 encounters_count>=-lifetime_care_plan_length+lifetime_conditions\n", + "1438 encounters_count>=-active_conditions+lifetime_conditions\n", + "1439 encounters_count>=minimum(Respiratory_rate,medications_lifetime+1)\n", + "1440 encounters_count>=floor(log(procedures_lifetime))\n", + "1441 encounters_count>=sqrt(encounters_lifetime_payer_coverage)-QALY\n", + "1442 encounters_count>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/DALY\n", + "1443 encounters_count>=1/2*encounters_lifetime_total_cost/Glucose\n", + "1444 encounters_count>=minimum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,active_care_plans^2)\n", + "1445 encounters_count>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+log(num_allergies)\n", + "1446 encounters_count>=1/2*Microalbumin_Creatinine_Ratio-mean_Respiratory_rate\n", + "1447 encounters_count>=1/2*encounters_lifetime_total_cost/Body_Weight\n", + "1448 encounters_count>=1/4*lifetime_care_plans^2\n", + "1449 encounters_count>=minimum(Respiratory_rate,10^num_allergies)\n", + "1450 encounters_count>=ceil(sqrt(active_conditions))\n", + "1451 encounters_count>=(active_care_plans+1)*encounters_lifetime_perc_covered\n", + "1452 encounters_count>=active_care_plans^2-active_care_plan_length\n", + "1453 encounters_count>=minimum(active_conditions,active_care_plans^2)\n", + "1454 encounters_count>=active_care_plans^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "1455 encounters_count>=10^immunizations_lifetime/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1456 encounters_count>=minimum(medications_lifetime,1/2*active_care_plan_length)\n", + "1457 encounters_count>=procedures_lifetime^2/Creatinine\n", + "1458 encounters_count>=active_care_plans*log(medications_lifetime)\n", + "1459 encounters_count>=(immunizations_lifetime^2)^mean_Creatinine\n", + "1460 encounters_count>=minimum(Body_Mass_Index,1/lifetime_conditions)\n", + "1461 encounters_count>=sqrt(device_lifetime_length)-active_care_plan_length\n", + "1462 encounters_count>=minimum(Microalbumin_Creatinine_Ratio,procedures_lifetime^2)\n", + "1463 encounters_count>=1/2*encounters_lifetime_total_cost/Low_Density_Lipoprotein_Cholesterol\n", + "1464 encounters_count>=1/2*encounters_lifetime_total_cost/mean_Heart_rate\n", + "1465 encounters_count>=device_lifetime_length*log(immunizations_lifetime_cost)/log(10)\n", + "1466 encounters_count>=sqrt(Body_Height)*medications_lifetime_perc_covered\n", + "1467 encounters_count>=-High_Density_Lipoprotein_Cholesterol+1/2*Systolic_Blood_Pressure\n", + "1468 encounters_count>=(1/2*Potassium)^mean_Creatinine\n", + "1469 encounters_count>=Glucose*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1470 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", + "1471 encounters_lifetime_total_cost>=num_allergies\n", + "1472 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", + "1473 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", + "1474 encounters_lifetime_base_cost>=num_allergies\n", + "1475 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", + "1476 encounters_lifetime_payer_coverage<=healthcare_coverage\n", + "1477 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", + "1478 encounters_lifetime_payer_coverage<=encounters_lifetime_perc_covered*healthcare_expenses\n", + "1479 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", + "1480 encounters_lifetime_payer_coverage>=num_allergies\n", + "1481 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", + "1482 encounters_lifetime_payer_coverage>=encounters_lifetime_total_cost*floor(encounters_lifetime_perc_covered)\n", + "1483 encounters_lifetime_perc_covered<=healthcare_coverage\n", + "1484 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", + "1485 encounters_lifetime_perc_covered<=ceil(QALY)/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1486 encounters_lifetime_perc_covered<=encounters_count\n", + "1487 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "1488 encounters_lifetime_perc_covered<=10^num_allergies\n", + "1489 encounters_lifetime_perc_covered>=(encounters_lifetime_payer_coverage-1)/encounters_lifetime_total_cost\n", + "1490 encounters_lifetime_perc_covered>=-healthcare_coverage\n", + "1491 encounters_lifetime_perc_covered>=-num_allergies\n", + "1492 encounters_lifetime_perc_covered>=1/2*immunizations_lifetime-medications_lifetime\n", + "1493 encounters_lifetime_perc_covered>=log(Body_Height)/log(10)-encounters_count\n", + "1494 imaging_studies_lifetime<=healthcare_coverage\n", + "1495 imaging_studies_lifetime<=active_care_plans\n", + "1496 imaging_studies_lifetime<=procedures_lifetime_cost\n", + "1497 imaging_studies_lifetime<=active_conditions\n", + "1498 imaging_studies_lifetime<=encounters_lifetime_payer_coverage\n", + "1499 imaging_studies_lifetime<=medications_lifetime\n", + "1500 imaging_studies_lifetime<=medications_active\n", + "1501 imaging_studies_lifetime<=DALY\n", + "1502 imaging_studies_lifetime<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1503 imaging_studies_lifetime<=device_lifetime_length/num_allergies\n", + "1504 imaging_studies_lifetime<=maximum(Sodium,1/2*num_allergies)\n", + "1505 imaging_studies_lifetime<=num_allergies/device_lifetime_length\n", + "1506 imaging_studies_lifetime<=num_allergies/medications_lifetime_perc_covered\n", + "1507 imaging_studies_lifetime<=num_allergies^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1508 imaging_studies_lifetime<=(1/immunizations_lifetime)\n", + "1509 imaging_studies_lifetime<=floor(DALY)\n", + "1510 imaging_studies_lifetime>=-device_lifetime_length\n", + "1511 imaging_studies_lifetime>=-healthcare_coverage\n", + "1512 imaging_studies_lifetime>=-num_allergies\n", + "1513 imaging_studies_lifetime>=floor(log(lifetime_care_plans)/log(10))\n", + "1514 imaging_studies_lifetime>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)-medications_lifetime\n", + "1515 immunizations_lifetime<=ceil(log(latitude)/log(10))\n", + "1516 immunizations_lifetime<=10^healthcare_coverage\n", + "1517 immunizations_lifetime<=encounters_count\n", + "1518 immunizations_lifetime<=immunizations_lifetime_cost\n", + "1519 immunizations_lifetime<=maximum(DALY,ceil(Creatinine))\n", + "1520 immunizations_lifetime<=floor(1/medications_lifetime_perc_covered)\n", + "1521 immunizations_lifetime<=maximum(Respiratory_rate,10^num_allergies)\n", + "1522 immunizations_lifetime<=10^active_care_plans\n", + "1523 immunizations_lifetime<=active_care_plans+1\n", + "1524 immunizations_lifetime<=10^encounters_lifetime_payer_coverage\n", + "1525 immunizations_lifetime<=(1/imaging_studies_lifetime)\n", + "1526 immunizations_lifetime<=floor(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1527 immunizations_lifetime<=ceil(log(Urea_Nitrogen)/log(10))\n", + "1528 immunizations_lifetime<=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1529 immunizations_lifetime<=(log(Body_temperature)/log(10))^encounters_lifetime_perc_covered\n", + "1530 immunizations_lifetime<=active_care_plans/num_allergies\n", + "1531 immunizations_lifetime<=maximum(Triglycerides,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1532 immunizations_lifetime<=floor(DALY)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1533 immunizations_lifetime<=-active_care_plans+encounters_count\n", + "1534 immunizations_lifetime<=(log(encounters_count)/log(10))^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1535 immunizations_lifetime<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,2*QOLS)\n", + "1536 immunizations_lifetime<=Creatinine^Estimated_Glomerular_Filtration_Rate\n", + "1537 immunizations_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "1538 immunizations_lifetime>=-device_lifetime_length\n", + "1539 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Body_Height\n", + "1540 immunizations_lifetime>=-num_allergies\n", + "1541 immunizations_lifetime>=num_allergies^Estimated_Glomerular_Filtration_Rate\n", + "1542 immunizations_lifetime>=minimum(immunizations_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "1543 immunizations_lifetime>=imaging_studies_lifetime^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1544 immunizations_lifetime>=imaging_studies_lifetime^Respiratory_rate\n", + "1545 immunizations_lifetime>=minimum(immunizations_lifetime_cost,QOLS)\n", + "1546 immunizations_lifetime>=1/2*immunizations_lifetime_cost/mean_Glucose\n", + "1547 immunizations_lifetime>=medications_lifetime_perc_covered^healthcare_coverage\n", + "1548 immunizations_lifetime>=floor(Potassium)-medications_lifetime_length\n", + "1549 immunizations_lifetime>=log(Body_Weight)/log(10)-lifetime_conditions\n", + "1550 immunizations_lifetime>=ceil(device_lifetime_length)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1551 immunizations_lifetime>=(encounters_lifetime_perc_covered-1)^mean_Heart_rate\n", + "1552 immunizations_lifetime>=-Respiratory_rate+1/2*procedures_lifetime\n", + "1553 immunizations_lifetime>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "1554 immunizations_lifetime>=-Systolic_Blood_Pressure+floor(Chloride)\n", + "1555 immunizations_lifetime_cost<=encounters_lifetime_total_cost\n", + "1556 immunizations_lifetime_cost<=sqrt(healthcare_expenses-1)\n", + "1557 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", + "1558 immunizations_lifetime_cost<=(Erythrocytes____volume__in_Blood_by_Automated_count^2)^immunizations_lifetime\n", + "1559 immunizations_lifetime_cost<=log(Heart_rate)*mean_Heart_rate\n", + "1560 immunizations_lifetime_cost<=(Respiratory_rate^2)^immunizations_lifetime\n", + "1561 immunizations_lifetime_cost<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*active_care_plan_length\n", + "1562 immunizations_lifetime_cost<=(Body_Height-1)^immunizations_lifetime\n", + "1563 immunizations_lifetime_cost<=Sodium+log(Protein__Mass_volume__in_Serum,Plasma)\n", + "1564 immunizations_lifetime_cost<=-Estimated_Glomerular_Filtration_Rate+e^Microalbumin_Creatinine_Ratio\n", + "1565 immunizations_lifetime_cost<=Sodium*log(Chloride)/log(10)\n", + "1566 immunizations_lifetime_cost<=Body_Mass_Index*sqrt(Chloride)\n", + "1567 immunizations_lifetime_cost<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+e^lifetime_conditions\n", + "1568 immunizations_lifetime_cost<=2*immunizations_lifetime*mean_Glucose\n", + "1569 immunizations_lifetime_cost<=10^immunizations_lifetime*latitude\n", + "1570 immunizations_lifetime_cost<=sqrt(Heart_rate)*age\n", + "1571 immunizations_lifetime_cost<=floor(Triglycerides)/medications_lifetime_perc_covered\n", + "1572 immunizations_lifetime_cost<=Total_Cholesterol*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "1573 immunizations_lifetime_cost<=(Urea_Nitrogen-1)*mean_Carbon_Dioxide\n", + "1574 immunizations_lifetime_cost<=10^Potassium/latitude\n", + "1575 immunizations_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*High_Density_Lipoprotein_Cholesterol\n", + "1576 immunizations_lifetime_cost<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Sodium\n", + "1577 immunizations_lifetime_cost<=Estimated_Glomerular_Filtration_Rate^2/medications_active\n", + "1578 immunizations_lifetime_cost<=mean_Systolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "1579 immunizations_lifetime_cost<=2*Glucose+Sodium\n", + "1580 immunizations_lifetime_cost<=2*healthcare_coverage/procedures_lifetime\n", + "1581 immunizations_lifetime_cost<=(log(Respiratory_rate)/log(10))^Diastolic_Blood_Pressure\n", + "1582 immunizations_lifetime_cost<=Triglycerides+e^active_conditions\n", + "1583 immunizations_lifetime_cost<=(active_conditions+1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "1584 immunizations_lifetime_cost<=10^encounters_count+latitude\n", + "1585 immunizations_lifetime_cost<=(Estimated_Glomerular_Filtration_Rate+1)*mean_Calcium\n", + "1586 immunizations_lifetime_cost>=immunizations_lifetime\n", + "1587 immunizations_lifetime_cost>=minimum(Systolic_Blood_Pressure,-Creatinine)\n", + "1588 immunizations_lifetime_cost>=(Body_Weight+1)*immunizations_lifetime\n", + "1589 immunizations_lifetime_cost>=Sodium-healthcare_coverage+1\n", + "1590 immunizations_lifetime_cost>=Sodium-encounters_lifetime_payer_coverage+1\n", + "1591 immunizations_lifetime_cost>=(Systolic_Blood_Pressure+1)*imaging_studies_lifetime\n", + "1592 immunizations_lifetime_cost>=mean_Systolic_Blood_Pressure-medications_lifetime_cost\n", + "1593 immunizations_lifetime_cost>=Systolic_Blood_Pressure*floor(QOLS)\n", + "1594 immunizations_lifetime_cost>=2*Low_Density_Lipoprotein_Cholesterol-medications_lifetime_length\n", + "1595 immunizations_lifetime_cost>=(Chloride+1)*immunizations_lifetime\n", + "1596 immunizations_lifetime_cost>=minimum(Triglycerides,-Creatinine)\n", + "1597 immunizations_lifetime_cost>=1/2*Total_Cholesterol*immunizations_lifetime\n", + "1598 immunizations_lifetime_cost>=immunizations_lifetime*mean_Chloride\n", + "1599 immunizations_lifetime_cost>=(immunizations_lifetime^2)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1600 immunizations_lifetime_cost>=2*active_condition_length*immunizations_lifetime\n", + "1601 immunizations_lifetime_cost>=procedures_lifetime^2-mean_Low_Density_Lipoprotein_Cholesterol\n", + "1602 immunizations_lifetime_cost>=sqrt(immunizations_lifetime)^Respiratory_rate\n", + "1603 immunizations_lifetime_cost>=(Glucose+1)*immunizations_lifetime\n", + "1604 immunizations_lifetime_cost>=High_Density_Lipoprotein_Cholesterol*immunizations_lifetime^2\n", + "1605 immunizations_lifetime_cost>=Urea_Nitrogen^2-medications_lifetime_cost\n", + "1606 immunizations_lifetime_cost>=2*Microalbumin_Creatinine_Ratio-procedures_lifetime_cost\n", + "1607 medications_lifetime<=encounters_lifetime_total_cost\n", + "1608 medications_lifetime<=medications_lifetime_cost\n", + "1609 medications_lifetime<=medications_lifetime_length\n", + "1610 medications_lifetime<=medications_lifetime_dispenses\n", + "1611 medications_lifetime<=ceil(1/2*medications_lifetime_dispenses)\n", + "1612 medications_lifetime<=1/4*encounters_count^2\n", + "1613 medications_lifetime<=e^sqrt(encounters_count)\n", + "1614 medications_lifetime<=sqrt(Low_Density_Lipoprotein_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1615 medications_lifetime<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2-active_conditions\n", + "1616 medications_lifetime<=active_conditions*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1617 medications_lifetime<=1/2*healthcare_expenses/encounters_count\n", + "1618 medications_lifetime<=active_care_plans+healthcare_coverage\n", + "1619 medications_lifetime<=encounters_count*log(healthcare_expenses)/log(10)\n", + "1620 medications_lifetime<=healthcare_coverage^2/procedures_lifetime_cost\n", + "1621 medications_lifetime<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)*DALY\n", + "1622 medications_lifetime<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Triglycerides\n", + "1623 medications_lifetime<=active_care_plans^2/imaging_studies_lifetime\n", + "1624 medications_lifetime<=e^sqrt(age)\n", + "1625 medications_lifetime<=active_care_plan_length*e^Creatinine\n", + "1626 medications_lifetime<=(2*Total_Cholesterol)^Creatinine\n", + "1627 medications_lifetime<=minimum(healthcare_expenses,2*Body_temperature)\n", + "1628 medications_lifetime<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+floor(lifetime_condition_length)\n", + "1629 medications_lifetime<=encounters_lifetime_payer_coverage+latitude-1\n", + "1630 medications_lifetime<=1/2*QALY^2\n", + "1631 medications_lifetime<=floor(medications_lifetime_length)/device_lifetime_length\n", + "1632 medications_lifetime<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-active_care_plans\n", + "1633 medications_lifetime<=log(lifetime_care_plan_length)^Potassium\n", + "1634 medications_lifetime<=2*Glomerular_filtration_rate_1_73_sq_M_predicted/num_allergies\n", + "1635 medications_lifetime<=latitude^2/device_lifetime_length\n", + "1636 medications_lifetime<=DALY*floor(Glucose)\n", + "1637 medications_lifetime<=1/imaging_studies_lifetime+Respiratory_rate\n", + "1638 medications_lifetime<=encounters_count^2/procedures_lifetime\n", + "1639 medications_lifetime<=sqrt(healthcare_expenses)-mean_High_Density_Lipoprotein_Cholesterol\n", + "1640 medications_lifetime<=10^medications_active+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1641 medications_lifetime<=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*active_conditions\n", + "1642 medications_lifetime<=10^Urea_Nitrogen/healthcare_expenses\n", + "1643 medications_lifetime<=(log(QALY)/log(10))^encounters_count\n", + "1644 medications_lifetime<=10^DALY*encounters_count\n", + "1645 medications_lifetime<=10^active_care_plans+Microalbumin_Creatinine_Ratio\n", + "1646 medications_lifetime<=Microalbumin_Creatinine_Ratio^2+active_conditions\n", + "1647 medications_lifetime<=minimum(healthcare_expenses,Mental_health_Outpatient_Note+1)\n", + "1648 medications_lifetime<=10^DALY+Diastolic_Blood_Pressure\n", + "1649 medications_lifetime<=(DALY-1)^Estimated_Glomerular_Filtration_Rate\n", + "1650 medications_lifetime<=Carbon_Dioxide^2/immunizations_lifetime\n", + "1651 medications_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*encounters_count\n", + "1652 medications_lifetime<=Body_Weight+e^active_conditions\n", + "1653 medications_lifetime<=active_condition_length^2/device_lifetime_length\n", + "1654 medications_lifetime<=(device_lifetime_length-1)^medications_lifetime_cost\n", + "1655 medications_lifetime<=10^encounters_count/medications_lifetime_dispenses\n", + "1656 medications_lifetime<=e^encounters_count/DALY\n", + "1657 medications_lifetime<=encounters_count^2/active_care_plans\n", + "1658 medications_lifetime<=2*medications_lifetime_dispenses/lifetime_care_plans\n", + "1659 medications_lifetime<=encounters_count^2/Calcium\n", + "1660 medications_lifetime<=encounters_count^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1661 medications_lifetime<=1/2*encounters_lifetime_total_cost/device_lifetime_length\n", + "1662 medications_lifetime<=2*encounters_lifetime_total_cost/QALY\n", + "1663 medications_lifetime<=(1/encounters_lifetime_perc_covered)^encounters_count\n", + "1664 medications_lifetime>=num_allergies\n", + "1665 medications_lifetime>=imaging_studies_lifetime\n", + "1666 medications_lifetime>=ceil(medications_lifetime_perc_covered)\n", + "1667 medications_lifetime>=medications_active\n", + "1668 medications_lifetime>=10^medications_lifetime_perc_covered*medications_active\n", + "1669 medications_lifetime>=minimum(medications_lifetime_cost,QOLS)\n", + "1670 medications_lifetime>=floor(Creatinine)\n", + "1671 medications_lifetime>=-Albumin__Mass_volume__in_Serum,Plasma+DALY\n", + "1672 medications_lifetime>=Glucose*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1673 medications_lifetime>=-Respiratory_rate+ceil(device_lifetime_length)\n", + "1674 medications_lifetime>=encounters_count+1/2*longitude\n", + "1675 medications_lifetime>=age*log(num_allergies)/log(10)\n", + "1676 medications_lifetime>=-QOLS+1/2*lifetime_care_plans\n", + "1677 medications_lifetime>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*Creatinine\n", + "1678 medications_lifetime>=active_care_plans-healthcare_coverage\n", + "1679 medications_lifetime>=-encounters_lifetime_payer_coverage+lifetime_care_plans\n", + "1680 medications_lifetime>=log(medications_lifetime_length)/log(10)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1681 medications_lifetime>=-QALY+encounters_count+1\n", + "1682 medications_lifetime>=Calcium^2-mean_Heart_rate\n", + "1683 medications_lifetime>=encounters_count-mean_Carbon_Dioxide+1\n", + "1684 medications_lifetime>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/mean_Estimated_Glomerular_Filtration_Rate\n", + "1685 medications_lifetime>=-active_condition_length+immunizations_lifetime\n", + "1686 medications_lifetime>=ceil(device_lifetime_length)*immunizations_lifetime\n", + "1687 medications_lifetime>=1/2*longitude+mean_Microalbumin_Creatinine_Ratio\n", + "1688 medications_lifetime>=minimum(immunizations_lifetime,medications_lifetime_dispenses)\n", + "1689 medications_lifetime>=(Respiratory_rate+1)*imaging_studies_lifetime\n", + "1690 medications_lifetime>=active_care_plans*ceil(medications_lifetime_perc_covered)\n", + "1691 medications_lifetime>=minimum(device_lifetime_length,procedures_lifetime)\n", + "1692 medications_lifetime>=-Respiratory_rate+procedures_lifetime+1\n", + "1693 medications_lifetime>=Systolic_Blood_Pressure-Triglycerides+1\n", + "1694 medications_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost+1\n", + "1695 medications_lifetime>=active_conditions^2-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1696 medications_lifetime>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1697 medications_lifetime>=(log(lifetime_conditions)/log(10))^mean_Carbon_Dioxide\n", + "1698 medications_lifetime>=Microalbumin_Creatinine_Ratio*log(active_care_plans)/log(10)\n", + "1699 medications_lifetime>=Potassium*num_allergies^2\n", + "1700 medications_lifetime>=-QALY+mean_Microalbumin_Creatinine_Ratio\n", + "1701 medications_lifetime>=e^immunizations_lifetime*num_allergies\n", + "1702 medications_lifetime>=floor(1/2*active_care_plans)\n", + "1703 medications_lifetime>=10^num_allergies*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1704 medications_lifetime>=encounters_count*log(num_allergies)\n", + "1705 medications_lifetime>=immunizations_lifetime_cost*log(num_allergies)/log(10)\n", + "1706 medications_lifetime>=active_care_plans-medications_active-1\n", + "1707 medications_lifetime>=minimum(High_Density_Lipoprotein_Cholesterol,1/active_care_plans)\n", + "1708 medications_lifetime>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Triglycerides\n", + "1709 medications_lifetime>=procedures_lifetime^2-Calcium\n", + "1710 medications_lifetime>=-Carbon_Dioxide+encounters_count-1\n", + "1711 medications_lifetime>=sqrt(medications_active)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "1712 medications_lifetime>=sqrt(encounters_lifetime_total_cost)-mean_Estimated_Glomerular_Filtration_Rate\n", + "1713 medications_lifetime>=(Respiratory_rate-1)*medications_lifetime_perc_covered\n", + "1714 medications_lifetime>=1/2*medications_active*procedures_lifetime\n", + "1715 medications_lifetime>=2*Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered\n", + "1716 medications_lifetime>=medications_active*sqrt(procedures_lifetime)\n", + "1717 medications_lifetime>=log(Creatinine)^mean_Calcium\n", + "1718 medications_lifetime>=2*Microalbumin_Creatinine_Ratio-lifetime_condition_length\n", + "1719 medications_lifetime_cost<=encounters_lifetime_total_cost^2\n", + "1720 medications_lifetime_cost<=sqrt(Diastolic_Blood_Pressure)^medications_lifetime_length\n", + "1721 medications_lifetime_cost<=(Heart_rate-1)*encounters_lifetime_total_cost\n", + "1722 medications_lifetime_cost<=latitude^2*medications_lifetime_dispenses\n", + "1723 medications_lifetime_cost<=(Chloride-1)*medications_lifetime_length\n", + "1724 medications_lifetime_cost<=10^medications_lifetime_dispenses*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1725 medications_lifetime_cost<=2*Total_Cholesterol*medications_lifetime_dispenses\n", + "1726 medications_lifetime_cost<=(healthcare_expenses-1)/num_allergies\n", + "1727 medications_lifetime_cost<=(active_care_plan_length-1)^Potassium\n", + "1728 medications_lifetime_cost<=(healthcare_expenses-1)^medications_lifetime\n", + "1729 medications_lifetime_cost<=floor(Body_Mass_Index)^encounters_count\n", + "1730 medications_lifetime_cost<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Triglycerides^2\n", + "1731 medications_lifetime_cost<=(log(encounters_lifetime_payer_coverage)/log(10))^age\n", + "1732 medications_lifetime_cost<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "1733 medications_lifetime_cost<=(Protein__Mass_volume__in_Serum,Plasma-1)*healthcare_coverage\n", + "1734 medications_lifetime_cost<=encounters_lifetime_total_cost^2-medications_lifetime_length\n", + "1735 medications_lifetime_cost<=e^QALY/medications_lifetime_dispenses\n", + "1736 medications_lifetime_cost<=Body_Weight^2*Low_Density_Lipoprotein_Cholesterol\n", + "1737 medications_lifetime_cost<=healthcare_expenses*medications_lifetime_length\n", + "1738 medications_lifetime_cost<=10^Albumin__Mass_volume__in_Serum,Plasma*QALY\n", + "1739 medications_lifetime_cost<=QALY^2*medications_lifetime_dispenses\n", + "1740 medications_lifetime_cost<=(10^medications_lifetime)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1741 medications_lifetime_cost<=10^DALY*healthcare_expenses\n", + "1742 medications_lifetime_cost<=e^DALY*healthcare_expenses\n", + "1743 medications_lifetime_cost<=(Respiratory_rate^2)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1744 medications_lifetime_cost<=10^floor(Microalbumin_Creatinine_Ratio)\n", + "1745 medications_lifetime_cost<=e^(mean_Respiratory_rate+1)\n", + "1746 medications_lifetime_cost<=10^Potassium*mean_Glucose\n", + "1747 medications_lifetime_cost<=sqrt(healthcare_expenses)*medications_lifetime_length\n", + "1748 medications_lifetime_cost<=Body_Height*age^2\n", + "1749 medications_lifetime_cost<=2*healthcare_expenses/medications_lifetime_perc_covered\n", + "1750 medications_lifetime_cost<=healthcare_coverage^2/device_lifetime_length\n", + "1751 medications_lifetime_cost<=sqrt(age)*healthcare_expenses\n", + "1752 medications_lifetime_cost<=10^active_care_plans*healthcare_expenses\n", + "1753 medications_lifetime_cost<=medications_lifetime_dispenses^2+healthcare_expenses\n", + "1754 medications_lifetime_cost<=10^active_conditions/device_lifetime_length\n", + "1755 medications_lifetime_cost<=sqrt(Calcium)^Respiratory_rate\n", + "1756 medications_lifetime_cost<=10^lifetime_conditions*Urea_Nitrogen\n", + "1757 medications_lifetime_cost<=Triglycerides*lifetime_condition_length^2\n", + "1758 medications_lifetime_cost<=log(Diastolic_Blood_Pressure)^mean_Calcium\n", + "1759 medications_lifetime_cost<=Glomerular_filtration_rate_1_73_sq_M_predicted*e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1760 medications_lifetime_cost<=encounters_lifetime_total_cost^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1761 medications_lifetime_cost<=(log(Heart_rate)/log(10))^QALY\n", + "1762 medications_lifetime_cost<=Body_Mass_Index^2*medications_lifetime_dispenses\n", + "1763 medications_lifetime_cost<=Body_Weight*e^Calcium\n", + "1764 medications_lifetime_cost<=ceil(Body_Weight)*encounters_lifetime_total_cost\n", + "1765 medications_lifetime_cost<=Body_Height^2*mean_Body_Mass_Index\n", + "1766 medications_lifetime_cost<=Protein__Mass_volume__in_Serum,Plasma*e^Calcium\n", + "1767 medications_lifetime_cost<=Chloride^2*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1768 medications_lifetime_cost<=(Creatinine+1)^Carbon_Dioxide\n", + "1769 medications_lifetime_cost<=Carbon_Dioxide^2*medications_lifetime_dispenses\n", + "1770 medications_lifetime_cost<=log(Body_temperature)^encounters_count\n", + "1771 medications_lifetime_cost<=log(Erythrocytes____volume__in_Blood_by_Automated_count)^encounters_count\n", + "1772 medications_lifetime_cost>=num_allergies\n", + "1773 medications_lifetime_cost>=1/2*DALY*medications_lifetime_length\n", + "1774 medications_lifetime_cost>=1/2*Respiratory_rate*medications_lifetime\n", + "1775 medications_lifetime_cost>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1776 medications_lifetime_cost>=log(age)*medications_lifetime_length/log(10)\n", + "1777 medications_lifetime_cost>=4*Urea_Nitrogen\n", + "1778 medications_lifetime_cost>=Protein__Mass_volume__in_Serum,Plasma*Sodium\n", + "1779 medications_lifetime_cost>=2*10^mean_Creatinine\n", + "1780 medications_lifetime_cost>=2*healthcare_coverage*num_allergies\n", + "1781 medications_lifetime_cost>=10^active_care_plans/Triglycerides\n", + "1782 medications_lifetime_cost>=(medications_lifetime_dispenses-1)*Chloride\n", + "1783 medications_lifetime_cost>=(medications_lifetime_dispenses+1)*mean_Microalbumin_Creatinine_Ratio\n", + "1784 medications_lifetime_cost>=(e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1785 medications_lifetime_cost>=latitude^2*medications_active\n", + "1786 medications_lifetime_cost>=lifetime_care_plans^2*medications_lifetime_dispenses\n", + "1787 medications_lifetime_cost>=active_conditions*medications_lifetime_length\n", + "1788 medications_lifetime_cost>=healthcare_coverage*log(medications_lifetime)/log(10)\n", + "1789 medications_lifetime_cost>=(encounters_lifetime_total_cost+1)*medications_active\n", + "1790 medications_lifetime_cost>=sqrt(medications_lifetime)*medications_lifetime_length\n", + "1791 medications_lifetime_cost>=healthcare_coverage*medications_lifetime_perc_covered^2\n", + "1792 medications_lifetime_cost>=2*medications_lifetime_length*procedures_lifetime\n", + "1793 medications_lifetime_cost>=(medications_lifetime_dispenses-1)*High_Density_Lipoprotein_Cholesterol\n", + "1794 medications_lifetime_cost>=(medications_lifetime_length-1)*Respiratory_rate\n", + "1795 medications_lifetime_cost>=healthcare_coverage*num_allergies^2\n", + "1796 medications_lifetime_cost>=(2*Calcium)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1797 medications_lifetime_cost>=2*Glomerular_filtration_rate_1_73_sq_M_predicted*medications_lifetime_dispenses\n", + "1798 medications_lifetime_cost>=immunizations_lifetime*medications_lifetime^2\n", + "1799 medications_lifetime_cost>=1/2*medications_lifetime^2\n", + "1800 medications_lifetime_cost>=medications_active^2*medications_lifetime_dispenses\n", + "1801 medications_lifetime_cost>=10^Albumin__Mass_volume__in_Serum,Plasma-healthcare_coverage\n", + "1802 medications_lifetime_cost>=(procedures_lifetime-1)^mean_Creatinine\n", + "1803 medications_lifetime_cost>=(1/2*active_care_plans)^Calcium\n", + "1804 medications_lifetime_cost>=Heart_rate^2*medications_active\n", + "1805 medications_lifetime_cost>=lifetime_condition_length^2*num_allergies\n", + "1806 medications_lifetime_cost>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*High_Density_Lipoprotein_Cholesterol\n", + "1807 medications_lifetime_cost>=e^active_conditions/Microalbumin_Creatinine_Ratio\n", + "1808 medications_lifetime_cost>=(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1809 medications_lifetime_cost>=e^lifetime_conditions/Low_Density_Lipoprotein_Cholesterol\n", + "1810 medications_lifetime_cost>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_active\n", + "1811 medications_lifetime_cost>=device_lifetime_length*sqrt(medications_lifetime_length)\n", + "1812 medications_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol^2*medications_active\n", + "1813 medications_lifetime_cost>=Albumin__Mass_volume__in_Serum,Plasma*Triglycerides^2\n", + "1814 medications_lifetime_cost>=active_conditions*ceil(medications_lifetime_length)\n", + "1815 medications_lifetime_cost>=immunizations_lifetime_cost^2*medications_lifetime_perc_covered\n", + "1816 medications_lifetime_cost>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted*encounters_lifetime_payer_coverage\n", + "1817 medications_lifetime_cost>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1818 medications_lifetime_cost>=Globulin__Mass_volume__in_Serum_by_calculation*Total_Cholesterol^2\n", + "1819 medications_lifetime_cost>=e^Albumin__Mass_volume__in_Serum,Plasma*medications_lifetime_dispenses\n", + "1820 medications_lifetime_perc_covered<=healthcare_coverage\n", + "1821 medications_lifetime_perc_covered<=active_conditions\n", + "1822 medications_lifetime_perc_covered<=floor(active_condition_length)\n", + "1823 medications_lifetime_perc_covered<=medications_lifetime\n", + "1824 medications_lifetime_perc_covered<=encounters_lifetime_payer_coverage\n", + "1825 medications_lifetime_perc_covered<=(Systolic_Blood_Pressure+1)/lifetime_care_plan_length\n", + "1826 medications_lifetime_perc_covered<=1/2*healthcare_coverage/encounters_lifetime_total_cost\n", + "1827 medications_lifetime_perc_covered<=log(Systolic_Blood_Pressure)/log(10)-immunizations_lifetime\n", + "1828 medications_lifetime_perc_covered<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,sqrt(QOLS))\n", + "1829 medications_lifetime_perc_covered<=-medications_lifetime+medications_lifetime_dispenses\n", + "1830 medications_lifetime_perc_covered<=(Triglycerides+1)/Sodium\n", + "1831 medications_lifetime_perc_covered<=(immunizations_lifetime-1)^num_allergies\n", + "1832 medications_lifetime_perc_covered<=(log(Urea_Nitrogen)/log(10))^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1833 medications_lifetime_perc_covered<=log(age)/medications_active\n", + "1834 medications_lifetime_perc_covered<=active_conditions-num_allergies\n", + "1835 medications_lifetime_perc_covered<=10^encounters_lifetime_payer_coverage*active_care_plans\n", + "1836 medications_lifetime_perc_covered<=1/2*Body_Weight/active_condition_length\n", + "1837 medications_lifetime_perc_covered<=QALY^2/medications_lifetime_dispenses\n", + "1838 medications_lifetime_perc_covered<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/medications_lifetime_dispenses\n", + "1839 medications_lifetime_perc_covered<=1/2*Body_Mass_Index/device_lifetime_length\n", + "1840 medications_lifetime_perc_covered<=sqrt(Creatinine-1)\n", + "1841 medications_lifetime_perc_covered<=log(healthcare_expenses)/Respiratory_rate\n", + "1842 medications_lifetime_perc_covered<=e^active_conditions/High_Density_Lipoprotein_Cholesterol\n", + "1843 medications_lifetime_perc_covered<=Creatinine^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1844 medications_lifetime_perc_covered<=(active_conditions+1)/Calcium\n", + "1845 medications_lifetime_perc_covered<=num_allergies^imaging_studies_lifetime\n", + "1846 medications_lifetime_perc_covered<=active_care_plans^device_lifetime_length\n", + "1847 medications_lifetime_perc_covered<=log(encounters_count)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1848 medications_lifetime_perc_covered<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Creatinine\n", + "1849 medications_lifetime_perc_covered<=(Microalbumin_Creatinine_Ratio+1)/Body_Mass_Index\n", + "1850 medications_lifetime_perc_covered<=(1/2*lifetime_care_plan_length)^lifetime_care_plans\n", + "1851 medications_lifetime_perc_covered<=sqrt(medications_lifetime_length)/Body_Mass_Index\n", + "1852 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered*sqrt(lifetime_conditions)\n", + "1853 medications_lifetime_perc_covered<=(medications_lifetime-1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1854 medications_lifetime_perc_covered<=immunizations_lifetime^Mental_health_Outpatient_Note\n", + "1855 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", + "1856 medications_lifetime_perc_covered<=-Glucose+Triglycerides-1\n", + "1857 medications_lifetime_perc_covered<=-active_care_plans+encounters_count\n", + "1858 medications_lifetime_perc_covered<=medications_active^Body_temperature\n", + "1859 medications_lifetime_perc_covered<=10^DALY/active_conditions\n", + "1860 medications_lifetime_perc_covered<=Potassium-mean_Potassium+1\n", + "1861 medications_lifetime_perc_covered<=floor(encounters_lifetime_total_cost)/medications_lifetime_length\n", + "1862 medications_lifetime_perc_covered<=active_condition_length*encounters_lifetime_perc_covered^2\n", + "1863 medications_lifetime_perc_covered<=1/2*Creatinine+immunizations_lifetime\n", + "1864 medications_lifetime_perc_covered<=DALY^num_allergies\n", + "1865 medications_lifetime_perc_covered<=1/2*Creatinine*DALY\n", + "1866 medications_lifetime_perc_covered<=(DALY+1)/active_care_plans\n", + "1867 medications_lifetime_perc_covered<=2*encounters_count/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1868 medications_lifetime_perc_covered<=2*Body_Height/medications_lifetime\n", + "1869 medications_lifetime_perc_covered<=2*High_Density_Lipoprotein_Cholesterol/Systolic_Blood_Pressure\n", + "1870 medications_lifetime_perc_covered<=e^Globulin__Mass_volume__in_Serum_by_calculation/DALY\n", + "1871 medications_lifetime_perc_covered<=-encounters_lifetime_perc_covered+e^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1872 medications_lifetime_perc_covered<=(log(active_care_plan_length)/log(10))^procedures_lifetime_cost\n", + "1873 medications_lifetime_perc_covered<=(medications_lifetime+1)/procedures_lifetime\n", + "1874 medications_lifetime_perc_covered<=maximum(lifetime_care_plans,active_conditions-1)\n", + "1875 medications_lifetime_perc_covered<=1/active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1876 medications_lifetime_perc_covered<=maximum(QOLS,2*encounters_lifetime_perc_covered)\n", + "1877 medications_lifetime_perc_covered<=sqrt(encounters_lifetime_total_cost)/age\n", + "1878 medications_lifetime_perc_covered<=10^encounters_lifetime_payer_coverage*immunizations_lifetime\n", + "1879 medications_lifetime_perc_covered<=(medications_active-1)^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1880 medications_lifetime_perc_covered>=-device_lifetime_length\n", + "1881 medications_lifetime_perc_covered>=-healthcare_coverage\n", + "1882 medications_lifetime_perc_covered>=-num_allergies\n", + "1883 medications_lifetime_perc_covered>=-Estimated_Glomerular_Filtration_Rate+Urea_Nitrogen\n", + "1884 medications_lifetime_perc_covered>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+log(num_allergies)\n", + "1885 medications_lifetime_perc_covered>=sqrt(device_lifetime_length)/Microalbumin_Creatinine_Ratio\n", + "1886 medications_lifetime_perc_covered>=sqrt(Triglycerides)-Respiratory_rate\n", + "1887 medications_lifetime_perc_covered>=log(encounters_lifetime_payer_coverage)-mean_Calcium\n", + "1888 medications_lifetime_perc_covered>=Body_Weight-mean_Body_Weight\n", + "1889 medications_lifetime_perc_covered>=log(QALY)-mean_Potassium\n", + "1890 medications_lifetime_perc_covered>=log(procedures_lifetime_cost)/log(10)-Albumin__Mass_volume__in_Serum,Plasma\n", + "1891 medications_lifetime_perc_covered>=Bilirubin_total__Mass_volume__in_Serum,Plasma-QOLS\n", + "1892 medications_lifetime_perc_covered>=-DALY+ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1893 medications_lifetime_perc_covered>=sqrt(Calcium)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1894 medications_lifetime_perc_covered>=log(medications_lifetime_length)/log(10)-Potassium\n", + "1895 medications_lifetime_perc_covered>=floor(Creatinine)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1896 medications_lifetime_perc_covered>=(1/healthcare_expenses)^Estimated_Glomerular_Filtration_Rate\n", + "1897 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+log(Protein__Mass_volume__in_Serum,Plasma)\n", + "1898 medications_lifetime_perc_covered>=-age+1/2*latitude\n", + "1899 medications_lifetime_perc_covered>=Bilirubin_total__Mass_volume__in_Serum,Plasma*log(num_allergies)\n", + "1900 medications_lifetime_perc_covered>=-active_care_plan_length+log(lifetime_care_plan_length)\n", + "1901 medications_lifetime_perc_covered>=log(lifetime_condition_length)/log(10)-Globulin__Mass_volume__in_Serum_by_calculation\n", + "1902 medications_lifetime_perc_covered>=Creatinine-mean_Creatinine-1\n", + "1903 medications_lifetime_perc_covered>=(1/Systolic_Blood_Pressure)^Body_Height\n", + "1904 medications_lifetime_perc_covered>=log(device_lifetime_length)/(Carbon_Dioxide*log(10))\n", + "1905 medications_lifetime_perc_covered>=1/Low_Density_Lipoprotein_Cholesterol-active_care_plans\n", + "1906 medications_lifetime_perc_covered>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)-mean_Creatinine\n", + "1907 medications_lifetime_length<=log(healthcare_expenses)*medications_lifetime_dispenses/log(10)\n", + "1908 medications_lifetime_length<=medications_lifetime_cost\n", + "1909 medications_lifetime_length<=Potassium*age^2\n", + "1910 medications_lifetime_length<=floor(medications_lifetime_cost)/active_conditions\n", + "1911 medications_lifetime_length<=(Heart_rate+1)*Body_Height\n", + "1912 medications_lifetime_length<=floor(encounters_lifetime_total_cost)/medications_lifetime_perc_covered\n", + "1913 medications_lifetime_length<=e^ceil(Calcium)\n", + "1914 medications_lifetime_length<=log(Chloride)*medications_lifetime_dispenses\n", + "1915 medications_lifetime_length<=2*Triglycerides*latitude\n", + "1916 medications_lifetime_length<=log(Systolic_Blood_Pressure)*medications_lifetime_dispenses\n", + "1917 medications_lifetime_length<=lifetime_condition_length^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1918 medications_lifetime_length<=sqrt(QALY)*medications_lifetime_dispenses\n", + "1919 medications_lifetime_length<=(1/encounters_lifetime_perc_covered)^Carbon_Dioxide\n", + "1920 medications_lifetime_length<=(healthcare_expenses-1)^Creatinine\n", + "1921 medications_lifetime_length<=(Chloride+1)*lifetime_condition_length\n", + "1922 medications_lifetime_length<=maximum(encounters_lifetime_payer_coverage,10^active_condition_length)\n", + "1923 medications_lifetime_length<=10^active_condition_length/procedures_lifetime\n", + "1924 medications_lifetime_length<=(1/2*High_Density_Lipoprotein_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1925 medications_lifetime_length<=(Microalbumin_Creatinine_Ratio-1)*medications_lifetime_dispenses\n", + "1926 medications_lifetime_length<=ceil(e^medications_lifetime_dispenses)\n", + "1927 medications_lifetime_length<=DALY*Low_Density_Lipoprotein_Cholesterol^2\n", + "1928 medications_lifetime_length<=encounters_lifetime_total_cost*log(healthcare_expenses)/log(10)\n", + "1929 medications_lifetime_length<=QALY^Globulin__Mass_volume__in_Serum_by_calculation\n", + "1930 medications_lifetime_length<=10^medications_lifetime+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1931 medications_lifetime_length<=medications_lifetime_dispenses^2+active_care_plans\n", + "1932 medications_lifetime_length<=1/2*medications_lifetime_cost+medications_lifetime_dispenses\n", + "1933 medications_lifetime_length<=Low_Density_Lipoprotein_Cholesterol^2+mean_Microalbumin_Creatinine_Ratio\n", + "1934 medications_lifetime_length<=log(encounters_lifetime_total_cost)*medications_lifetime_dispenses\n", + "1935 medications_lifetime_length<=2*encounters_lifetime_total_cost/encounters_lifetime_perc_covered\n", + "1936 medications_lifetime_length<=log(Total_Cholesterol)^medications_lifetime\n", + "1937 medications_lifetime_length<=Glucose^2/encounters_lifetime_perc_covered\n", + "1938 medications_lifetime_length<=Glomerular_filtration_rate_1_73_sq_M_predicted^2*medications_active\n", + "1939 medications_lifetime_length<=Glomerular_filtration_rate_1_73_sq_M_predicted*mean_Triglycerides\n", + "1940 medications_lifetime_length<=(2*Body_Height)^medications_lifetime\n", + "1941 medications_lifetime_length<=1/2*medications_lifetime_cost/procedures_lifetime\n", + "1942 medications_lifetime_length<=log(Triglycerides)*medications_lifetime_dispenses\n", + "1943 medications_lifetime_length<=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "1944 medications_lifetime_length<=DALY*Glomerular_filtration_rate_1_73_sq_M_predicted^2\n", + "1945 medications_lifetime_length<=(Globulin__Mass_volume__in_Serum_by_calculation-1)*encounters_lifetime_total_cost\n", + "1946 medications_lifetime_length<=10^medications_active*encounters_lifetime_total_cost\n", + "1947 medications_lifetime_length<=QALY^2*encounters_count\n", + "1948 medications_lifetime_length<=-Total_Cholesterol+e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1949 medications_lifetime_length<=e^Respiratory_rate/Carbon_Dioxide\n", + "1950 medications_lifetime_length>=num_allergies\n", + "1951 medications_lifetime_length>=log(procedures_lifetime)*medications_lifetime_dispenses\n", + "1952 medications_lifetime_length>=medications_lifetime\n", + "1953 medications_lifetime_length>=ceil(Creatinine)\n", + "1954 medications_lifetime_length>=(medications_lifetime_cost+1)/Low_Density_Lipoprotein_Cholesterol\n", + "1955 medications_lifetime_length>=minimum(medications_lifetime_cost,procedures_lifetime)\n", + "1956 medications_lifetime_length>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1957 medications_lifetime_length>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+Chloride-1\n", + "1958 medications_lifetime_length>=(medications_lifetime_cost+1)/Chloride\n", + "1959 medications_lifetime_length>=log(device_lifetime_length)*medications_lifetime_dispenses\n", + "1960 medications_lifetime_length>=sqrt(medications_lifetime_cost)+longitude\n", + "1961 medications_lifetime_length>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+High_Density_Lipoprotein_Cholesterol\n", + "1962 medications_lifetime_length>=(medications_lifetime-1)*Calcium\n", + "1963 medications_lifetime_length>=(medications_lifetime_cost+1)/mean_Low_Density_Lipoprotein_Cholesterol\n", + "1964 medications_lifetime_length>=latitude*log(medications_lifetime_dispenses)/log(10)\n", + "1965 medications_lifetime_length>=sqrt(encounters_lifetime_payer_coverage)*medications_active\n", + "1966 medications_lifetime_length>=(medications_lifetime_dispenses+1)*num_allergies\n", + "1967 medications_lifetime_length>=encounters_lifetime_payer_coverage+log(num_allergies)\n", + "1968 medications_lifetime_length>=(medications_lifetime_dispenses-1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1969 medications_lifetime_length>=1/2*active_care_plans*medications_lifetime_dispenses\n", + "1970 medications_lifetime_length>=Glomerular_filtration_rate_1_73_sq_M_predicted^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "1971 medications_lifetime_length>=(immunizations_lifetime_cost+1)*medications_active\n", + "1972 medications_lifetime_length>=e^lifetime_care_plans*medications_lifetime_perc_covered\n", + "1973 medications_lifetime_length>=(medications_active-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1974 medications_lifetime_length>=1/2*High_Density_Lipoprotein_Cholesterol*Protein__Mass_volume__in_Serum,Plasma\n", + "1975 medications_lifetime_length>=2*Total_Cholesterol*medications_active\n", + "1976 medications_lifetime_length>=sqrt(lifetime_care_plans)*medications_lifetime_dispenses\n", + "1977 medications_lifetime_length>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*Low_Density_Lipoprotein_Cholesterol\n", + "1978 medications_lifetime_length>=log(lifetime_condition_length)*medications_lifetime_dispenses/log(10)\n", + "1979 medications_lifetime_length>=medications_lifetime^2/mean_Glucose\n", + "1980 medications_lifetime_length>=sqrt(medications_lifetime_cost)-procedures_lifetime_cost\n", + "1981 medications_lifetime_length>=Heart_rate*medications_active^2\n", + "1982 medications_lifetime_length>=Globulin__Mass_volume__in_Serum_by_calculation^2*Total_Cholesterol\n", + "1983 medications_lifetime_length>=medications_lifetime^2/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1984 medications_lifetime_length>=Systolic_Blood_Pressure*log(medications_lifetime)\n", + "1985 medications_lifetime_length>=log(DALY)*medications_lifetime_dispenses\n", + "1986 medications_lifetime_length>=1/2*medications_active*medications_lifetime_dispenses\n", + "1987 medications_lifetime_length>=-immunizations_lifetime+2*medications_lifetime_dispenses\n", + "1988 medications_lifetime_length>=Albumin__Mass_volume__in_Serum,Plasma*e^medications_active\n", + "1989 medications_lifetime_length>=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "1990 medications_lifetime_length>=mean_Heart_rate*medications_active^2\n", + "1991 medications_lifetime_length>=2*Systolic_Blood_Pressure*medications_active\n", + "1992 medications_lifetime_length>=(procedures_lifetime-1)*mean_Microalbumin_Creatinine_Ratio\n", + "1993 medications_lifetime_length>=Estimated_Glomerular_Filtration_Rate^2*medications_lifetime_perc_covered\n", + "1994 medications_lifetime_dispenses<=medications_lifetime_length\n", + "1995 medications_lifetime_dispenses<=medications_lifetime_cost\n", + "1996 medications_lifetime_dispenses<=latitude^2/encounters_lifetime_perc_covered\n", + "1997 medications_lifetime_dispenses<=2*encounters_lifetime_payer_coverage+encounters_lifetime_total_cost\n", + "1998 medications_lifetime_dispenses<=ceil(1/2*medications_lifetime_length)\n", + "1999 medications_lifetime_dispenses<=2*encounters_lifetime_total_cost/procedures_lifetime\n", + "2000 medications_lifetime_dispenses<=(Diastolic_Blood_Pressure-1)^medications_lifetime\n", + "2001 medications_lifetime_dispenses<=age^2+Systolic_Blood_Pressure\n", + "2002 medications_lifetime_dispenses<=(medications_lifetime_cost-1)/mean_Microalbumin_Creatinine_Ratio\n", + "2003 medications_lifetime_dispenses<=10^e^medications_lifetime\n", + "2004 medications_lifetime_dispenses<=2*encounters_lifetime_payer_coverage/num_allergies\n", + "2005 medications_lifetime_dispenses<=sqrt(healthcare_expenses)+encounters_lifetime_total_cost\n", + "2006 medications_lifetime_dispenses<=(log(device_lifetime_length)/log(10))^mean_Carbon_Dioxide\n", + "2007 medications_lifetime_dispenses<=(Estimated_Glomerular_Filtration_Rate-1)*lifetime_care_plan_length\n", + "2008 medications_lifetime_dispenses<=e^Urea_Nitrogen/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2009 medications_lifetime_dispenses<=active_condition_length^2-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2010 medications_lifetime_dispenses<=Carbon_Dioxide*e^medications_lifetime\n", + "2011 medications_lifetime_dispenses<=(Microalbumin_Creatinine_Ratio-1)*Triglycerides\n", + "2012 medications_lifetime_dispenses<=Albumin__Mass_volume__in_Serum,Plasma*e^active_conditions\n", + "2013 medications_lifetime_dispenses<=lifetime_care_plans+1/2*medications_lifetime_length\n", + "2014 medications_lifetime_dispenses<=(Chloride-1)*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2015 medications_lifetime_dispenses<=10^encounters_count/active_care_plans\n", + "2016 medications_lifetime_dispenses<=(1/2*medications_lifetime_cost)^Creatinine\n", + "2017 medications_lifetime_dispenses<=Creatinine^Estimated_Glomerular_Filtration_Rate\n", + "2018 medications_lifetime_dispenses<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Potassium\n", + "2019 medications_lifetime_dispenses<=log(active_conditions)^Carbon_Dioxide\n", + "2020 medications_lifetime_dispenses<=1/2*Low_Density_Lipoprotein_Cholesterol*age\n", + "2021 medications_lifetime_dispenses<=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^medications_lifetime\n", + "2022 medications_lifetime_dispenses<=medications_lifetime_length/immunizations_lifetime\n", + "2023 medications_lifetime_dispenses<=(Triglycerides^2)^Creatinine\n", + "2024 medications_lifetime_dispenses<=10^ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2025 medications_lifetime_dispenses<=(Diastolic_Blood_Pressure-1)*mean_High_Density_Lipoprotein_Cholesterol\n", + "2026 medications_lifetime_dispenses<=Triglycerides*e^active_conditions\n", + "2027 medications_lifetime_dispenses<=maximum(encounters_lifetime_payer_coverage,e^active_condition_length)\n", + "2028 medications_lifetime_dispenses<=maximum(encounters_lifetime_payer_coverage,age^2)\n", + "2029 medications_lifetime_dispenses<=(lifetime_care_plan_length-1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "2030 medications_lifetime_dispenses<=Body_Mass_Index*sqrt(medications_lifetime_length)\n", + "2031 medications_lifetime_dispenses<=e^Calcium/Creatinine\n", + "2032 medications_lifetime_dispenses<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plans\n", + "2033 medications_lifetime_dispenses<=Glomerular_filtration_rate_1_73_sq_M_predicted^2+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "2034 medications_lifetime_dispenses<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Carbon_Dioxide\n", + "2035 medications_lifetime_dispenses<=10^DALY+Microalbumin_Creatinine_Ratio\n", + "2036 medications_lifetime_dispenses<=Carbon_Dioxide*mean_Systolic_Blood_Pressure\n", + "2037 medications_lifetime_dispenses<=e^QALY/medications_lifetime_cost\n", + "2038 medications_lifetime_dispenses<=2*medications_lifetime_length/active_care_plans\n", + "2039 medications_lifetime_dispenses<=10^lifetime_care_plan_length/active_care_plans\n", + "2040 medications_lifetime_dispenses<=maximum(encounters_lifetime_total_cost,active_condition_length^2)\n", + "2041 medications_lifetime_dispenses<=(1/encounters_lifetime_perc_covered)^mean_Microalbumin_Creatinine_Ratio\n", + "2042 medications_lifetime_dispenses<=1/2*encounters_lifetime_total_cost/encounters_lifetime_perc_covered\n", + "2043 medications_lifetime_dispenses<=1/2*encounters_lifetime_payer_coverage/medications_lifetime_perc_covered\n", + "2044 medications_lifetime_dispenses<=(1/encounters_lifetime_perc_covered)^QALY\n", + "2045 medications_lifetime_dispenses<=(10^medications_lifetime)^Mental_health_Outpatient_Note\n", + "2046 medications_lifetime_dispenses<=2*medications_lifetime_length/mean_Creatinine\n", + "2047 medications_lifetime_dispenses<=2*medications_lifetime_cost/device_lifetime_length\n", + "2048 medications_lifetime_dispenses<=maximum(latitude,1/2*medications_lifetime_length)\n", + "2049 medications_lifetime_dispenses<=maximum(lifetime_care_plans,1/2*medications_lifetime_length)\n", + "2050 medications_lifetime_dispenses<=floor(medications_lifetime_length)/immunizations_lifetime\n", + "2051 medications_lifetime_dispenses<=10^DALY*Total_Cholesterol\n", + "2052 medications_lifetime_dispenses<=Respiratory_rate^2*Urea_Nitrogen\n", + "2053 medications_lifetime_dispenses<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*Total_Cholesterol\n", + "2054 medications_lifetime_dispenses<=(log(Body_temperature)/log(10))^encounters_count\n", + "2055 medications_lifetime_dispenses>=num_allergies\n", + "2056 medications_lifetime_dispenses>=1/2*medications_lifetime_cost/Total_Cholesterol\n", + "2057 medications_lifetime_dispenses>=medications_lifetime\n", + "2058 medications_lifetime_dispenses>=minimum(device_lifetime_length,log(procedures_lifetime_cost))\n", + "2059 medications_lifetime_dispenses>=2*lifetime_conditions*medications_lifetime_perc_covered\n", + "2060 medications_lifetime_dispenses>=medications_active*sqrt(medications_lifetime_length)\n", + "2061 medications_lifetime_dispenses>=floor(Protein__Mass_volume__in_Serum,Plasma)-lifetime_care_plan_length\n", + "2062 medications_lifetime_dispenses>=2*medications_lifetime_length/QALY\n", + "2063 medications_lifetime_dispenses>=2*medications_lifetime_length/Respiratory_rate\n", + "2064 medications_lifetime_dispenses>=2*medications_lifetime_length/mean_Urea_Nitrogen\n", + "2065 medications_lifetime_dispenses>=Low_Density_Lipoprotein_Cholesterol*num_allergies^2\n", + "2066 medications_lifetime_dispenses>=2*immunizations_lifetime_cost*num_allergies\n", + "2067 medications_lifetime_dispenses>=-encounters_lifetime_payer_coverage+2*lifetime_care_plan_length\n", + "2068 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2069 medications_lifetime_dispenses>=medications_lifetime_length^2/healthcare_expenses\n", + "2070 medications_lifetime_dispenses>=(Diastolic_Blood_Pressure-1)*medications_active\n", + "2071 medications_lifetime_dispenses>=2*encounters_count-mean_Estimated_Glomerular_Filtration_Rate\n", + "2072 medications_lifetime_dispenses>=2*lifetime_care_plan_length*num_allergies\n", + "2073 medications_lifetime_dispenses>=immunizations_lifetime_cost*log(Protein__Mass_volume__in_Serum,Plasma)\n", + "2074 medications_lifetime_dispenses>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Calcium\n", + "2075 medications_lifetime_dispenses>=Globulin__Mass_volume__in_Serum_by_calculation^Creatinine\n", + "2076 medications_lifetime_dispenses>=-Total_Cholesterol+e^active_care_plans\n", + "2077 medications_lifetime_dispenses>=-Body_Height+e^medications_active\n", + "2078 medications_lifetime_dispenses>=lifetime_care_plan_length*log(medications_lifetime)/log(10)\n", + "2079 medications_lifetime_dispenses>=2*medications_lifetime-1\n", + "2080 medications_lifetime_dispenses>=1/2*medications_lifetime_length/encounters_count\n", + "2081 medications_lifetime_dispenses>=(medications_active-1)*mean_Triglycerides\n", + "2082 medications_lifetime_dispenses>=Total_Cholesterol^2/Protein__Mass_volume__in_Serum,Plasma\n", + "2083 medications_lifetime_dispenses>=1/2*Total_Cholesterol*medications_active\n", + "2084 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2085 medications_lifetime_dispenses>=(Globulin__Mass_volume__in_Serum_by_calculation+1)*immunizations_lifetime_cost\n", + "2086 medications_lifetime_dispenses>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime\n", + "2087 medications_lifetime_dispenses>=(medications_active-1)*lifetime_care_plan_length\n", + "2088 medications_lifetime_dispenses>=immunizations_lifetime_cost*num_allergies^2\n", + "2089 medications_lifetime_dispenses>=-Respiratory_rate+e^active_care_plans\n", + "2090 medications_lifetime_dispenses>=1/2*active_care_plans*medications_lifetime\n", + "2091 medications_lifetime_dispenses>=(-active_care_plans)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2092 medications_lifetime_dispenses>=Microalbumin_Creatinine_Ratio*log(procedures_lifetime)\n", + "2093 medications_lifetime_dispenses>=age*log(medications_lifetime)/log(10)\n", + "2094 medications_lifetime_dispenses>=(-lifetime_care_plans)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2095 medications_lifetime_dispenses>=active_conditions^2-latitude\n", + "2096 medications_lifetime_dispenses>=2*medications_lifetime_length/latitude\n", + "2097 medications_lifetime_dispenses>=encounters_count+log(medications_active)\n", + "2098 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost)-mean_Estimated_Glomerular_Filtration_Rate\n", + "2099 medications_lifetime_dispenses>=(medications_lifetime-1)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2100 medications_lifetime_dispenses>=-immunizations_lifetime_cost+log(medications_lifetime_cost)\n", + "2101 medications_lifetime_dispenses>=minimum(Systolic_Blood_Pressure,medications_lifetime^2)\n", + "2102 medications_lifetime_dispenses>=active_care_plan_length*log(medications_lifetime)\n", + "2103 medications_lifetime_dispenses>=immunizations_lifetime_cost*medications_lifetime_perc_covered^2\n", + "2104 medications_lifetime_dispenses>=2*High_Density_Lipoprotein_Cholesterol*medications_active\n", + "2105 medications_active<=floor(sqrt(QALY))\n", + "2106 medications_active<=(medications_lifetime_dispenses+1)/Diastolic_Blood_Pressure\n", + "2107 medications_active<=encounters_count\n", + "2108 medications_active<=medications_lifetime\n", + "2109 medications_active<=active_care_plan_length^2/device_lifetime_length\n", + "2110 medications_active<=floor(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2111 medications_active<=floor(10^Creatinine)\n", + "2112 medications_active<=10^DALY+1\n", + "2113 medications_active<=ceil(1/2*Microalbumin_Creatinine_Ratio)\n", + "2114 medications_active<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Calcium\n", + "2115 medications_active<=log(Estimated_Glomerular_Filtration_Rate)/immunizations_lifetime\n", + "2116 medications_active<=2*Albumin__Mass_volume__in_Serum,Plasma\n", + "2117 medications_active<=floor(Potassium)+procedures_lifetime_cost\n", + "2118 medications_active<=(healthcare_expenses-1)/healthcare_coverage\n", + "2119 medications_active<=sqrt(medications_lifetime)+active_care_plans\n", + "2120 medications_active<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "2121 medications_active<=floor(Albumin__Mass_volume__in_Serum,Plasma)^Creatinine\n", + "2122 medications_active<=active_conditions+immunizations_lifetime_cost\n", + "2123 medications_active<=floor(age)-procedures_lifetime\n", + "2124 medications_active<=maximum(active_care_plans,e^Creatinine)\n", + "2125 medications_active<=10^medications_lifetime_length*active_care_plans\n", + "2126 medications_active<=e^active_conditions/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2127 medications_active<=-medications_lifetime+medications_lifetime_length\n", + "2128 medications_active<=Estimated_Glomerular_Filtration_Rate^2/immunizations_lifetime_cost\n", + "2129 medications_active<=-medications_lifetime+medications_lifetime_dispenses\n", + "2130 medications_active<=log(High_Density_Lipoprotein_Cholesterol)^mean_Creatinine\n", + "2131 medications_active<=DALY^Estimated_Glomerular_Filtration_Rate\n", + "2132 medications_active<=Respiratory_rate/num_allergies\n", + "2133 medications_active<=Heart_rate-active_condition_length-1\n", + "2134 medications_active<=10^encounters_lifetime_payer_coverage+immunizations_lifetime_cost\n", + "2135 medications_active<=maximum(active_care_plans,1/num_allergies)\n", + "2136 medications_active<=10^active_conditions+1\n", + "2137 medications_active<=Body_Mass_Index^2/lifetime_care_plan_length\n", + "2138 medications_active<=-Respiratory_rate+mean_Estimated_Glomerular_Filtration_Rate\n", + "2139 medications_active<=10^active_care_plans/lifetime_care_plans\n", + "2140 medications_active<=DALY^2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2141 medications_active<=minimum(Estimated_Glomerular_Filtration_Rate,1/2*active_conditions)\n", + "2142 medications_active<=10^Potassium/medications_lifetime_dispenses\n", + "2143 medications_active<=10^active_condition_length/procedures_lifetime_cost\n", + "2144 medications_active<=maximum(Respiratory_rate,1/immunizations_lifetime)\n", + "2145 medications_active<=floor(sqrt(age))\n", + "2146 medications_active<=sqrt(healthcare_coverage)/procedures_lifetime\n", + "2147 medications_active<=(1/longitude)^medications_lifetime_cost\n", + "2148 medications_active<=QOLS*e^medications_lifetime_length\n", + "2149 medications_active<=maximum(Globulin__Mass_volume__in_Serum_by_calculation,1/imaging_studies_lifetime)\n", + "2150 medications_active<=(active_care_plan_length-1)^healthcare_expenses\n", + "2151 medications_active<=(lifetime_condition_length+1)/DALY\n", + "2152 medications_active<=2*Calcium-procedures_lifetime\n", + "2153 medications_active<=active_care_plans*e^encounters_lifetime_total_cost\n", + "2154 medications_active<=10^encounters_lifetime_perc_covered+DALY\n", + "2155 medications_active<=10^DALY+QOLS\n", + "2156 medications_active<=minimum(Estimated_Glomerular_Filtration_Rate,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2157 medications_active<=Low_Density_Lipoprotein_Cholesterol-active_care_plan_length+1\n", + "2158 medications_active<=DALY*floor(Potassium)\n", + "2159 medications_active>=imaging_studies_lifetime\n", + "2160 medications_active>=floor(e^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2161 medications_active>=1/2*num_allergies\n", + "2162 medications_active>=num_allergies-1\n", + "2163 medications_active>=log(procedures_lifetime)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2164 medications_active>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)-num_allergies\n", + "2165 medications_active>=immunizations_lifetime*num_allergies\n", + "2166 medications_active>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,2*num_allergies)\n", + "2167 medications_active>=minimum(device_lifetime_length,immunizations_lifetime^2)\n", + "2168 medications_active>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*mean_High_Density_Lipoprotein_Cholesterol\n", + "2169 medications_active>=sqrt(procedures_lifetime_cost)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2170 medications_active>=1/2*Total_Cholesterol-mean_Systolic_Blood_Pressure\n", + "2171 medications_active>=10^immunizations_lifetime-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2172 medications_active>=log(Calcium)/log(10)-procedures_lifetime\n", + "2173 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-encounters_lifetime_payer_coverage+1\n", + "2174 medications_active>=1/2*device_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2175 medications_active>=-QALY+1/2*latitude\n", + "2176 medications_active>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+ceil(medications_lifetime_perc_covered)\n", + "2177 medications_active>=-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*medications_lifetime_perc_covered\n", + "2178 medications_active>=sqrt(DALY)-Potassium\n", + "2179 medications_active>=log(Heart_rate)/log(10)-immunizations_lifetime_cost\n", + "2180 medications_active>=1/2*Diastolic_Blood_Pressure-mean_High_Density_Lipoprotein_Cholesterol\n", + "2181 medications_active>=log(active_care_plans)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2182 medications_active>=Chloride-mean_Systolic_Blood_Pressure+1\n", + "2183 medications_active>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Carbon_Dioxide\n", + "2184 medications_active>=Bilirubin_total__Mass_volume__in_Serum,Plasma/encounters_lifetime_perc_covered\n", + "2185 medications_active>=sqrt(Triglycerides)-mean_Respiratory_rate\n", + "2186 medications_active>=maximum(Mental_health_Outpatient_Note,-healthcare_expenses)\n", + "2187 medications_active>=active_care_plans-healthcare_coverage-1\n", + "2188 medications_active>=-active_care_plan_length+log(Triglycerides)\n", + "2189 medications_active>=(lifetime_care_plans-1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2190 medications_active>=active_care_plans-medications_lifetime-1\n", + "2191 medications_active>=minimum(device_lifetime_length,log(active_care_plans))\n", + "2192 medications_active>=log(active_conditions)/log(10)-encounters_lifetime_payer_coverage\n", + "2193 medications_active>=log(procedures_lifetime)/log(10)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2194 medications_active>=-Potassium+log(lifetime_care_plan_length)\n", + "2195 medications_active>=log(procedures_lifetime_cost)-mean_Urea_Nitrogen\n", + "2196 medications_active>=log(medications_lifetime)/log(10)-active_conditions\n", + "2197 medications_active>=(imaging_studies_lifetime-1)^Body_Weight\n", + "2198 medications_active>=(1/DALY)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2199 medications_active>=log(medications_lifetime_length)/log(10)-encounters_count\n", + "2200 medications_active>=floor(QOLS)*num_allergies\n", + "2201 medications_active>=(QOLS-1)^QALY\n", + "2202 medications_active>=-Diastolic_Blood_Pressure+floor(QALY)\n", + "2203 medications_active>=-active_conditions+log(DALY)\n", + "2204 medications_active>=log(Body_Weight)/log(10)-immunizations_lifetime_cost\n", + "2205 medications_active>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)-immunizations_lifetime\n", + "2206 medications_active>=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)-procedures_lifetime_cost\n", + "2207 procedures_lifetime<=healthcare_coverage\n", + "2208 procedures_lifetime<=1/2*encounters_lifetime_total_cost/lifetime_condition_length\n", + "2209 procedures_lifetime<=QALY^active_conditions\n", + "2210 procedures_lifetime<=encounters_lifetime_total_cost\n", + "2211 procedures_lifetime<=procedures_lifetime_cost\n", + "2212 procedures_lifetime<=DALY+QALY\n", + "2213 procedures_lifetime<=10^medications_lifetime_perc_covered*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2214 procedures_lifetime<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_lifetime_length\n", + "2215 procedures_lifetime<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^mean_Potassium\n", + "2216 procedures_lifetime<=maximum(Triglycerides,ceil(Creatinine))\n", + "2217 procedures_lifetime<=ceil(1/num_allergies)\n", + "2218 procedures_lifetime<=floor(Potassium)^2\n", + "2219 procedures_lifetime<=ceil(10^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2220 procedures_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/num_allergies\n", + "2221 procedures_lifetime<=medications_lifetime^2/medications_active\n", + "2222 procedures_lifetime<=Calcium*sqrt(Creatinine)\n", + "2223 procedures_lifetime<=sqrt(Body_Height)/QOLS\n", + "2224 procedures_lifetime<=medications_lifetime_length^Creatinine\n", + "2225 procedures_lifetime<=1/2*procedures_lifetime_cost/Total_Cholesterol\n", + "2226 procedures_lifetime<=healthcare_expenses^active_conditions\n", + "2227 procedures_lifetime<=2*active_condition_length/device_lifetime_length\n", + "2228 procedures_lifetime<=ceil(1/2*Microalbumin_Creatinine_Ratio)\n", + "2229 procedures_lifetime<=floor(lifetime_condition_length)/medications_active\n", + "2230 procedures_lifetime<=active_care_plans/imaging_studies_lifetime\n", + "2231 procedures_lifetime<=maximum(medications_lifetime,1/device_lifetime_length)\n", + "2232 procedures_lifetime<=(1/medications_lifetime_perc_covered)^encounters_count\n", + "2233 procedures_lifetime<=1/2*procedures_lifetime_cost/Microalbumin_Creatinine_Ratio\n", + "2234 procedures_lifetime<=maximum(Estimated_Glomerular_Filtration_Rate,ceil(Potassium))\n", + "2235 procedures_lifetime<=ceil(1/imaging_studies_lifetime)\n", + "2236 procedures_lifetime<=encounters_lifetime_perc_covered^longitude\n", + "2237 procedures_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Creatinine\n", + "2238 procedures_lifetime<=minimum(Estimated_Glomerular_Filtration_Rate,floor(medications_lifetime))\n", + "2239 procedures_lifetime<=2*procedures_lifetime_cost/medications_lifetime\n", + "2240 procedures_lifetime<=floor(1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2241 procedures_lifetime<=-Glucose+ceil(Triglycerides)\n", + "2242 procedures_lifetime<=10^lifetime_care_plans+active_conditions\n", + "2243 procedures_lifetime<=sqrt(encounters_count)/medications_lifetime_perc_covered\n", + "2244 procedures_lifetime<=2*10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2245 procedures_lifetime<=10^active_care_plan_length/immunizations_lifetime\n", + "2246 procedures_lifetime<=maximum(Heart_rate,1/immunizations_lifetime)\n", + "2247 procedures_lifetime<=minimum(Sodium,ceil(DALY))\n", + "2248 procedures_lifetime>=-device_lifetime_length\n", + "2249 procedures_lifetime>=-healthcare_coverage\n", + "2250 procedures_lifetime>=-num_allergies\n", + "2251 procedures_lifetime>=1/2*imaging_studies_lifetime\n", + "2252 procedures_lifetime>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "2253 procedures_lifetime>=num_allergies^Estimated_Glomerular_Filtration_Rate\n", + "2254 procedures_lifetime>=minimum(procedures_lifetime_cost,QOLS)\n", + "2255 procedures_lifetime>=sqrt(procedures_lifetime_cost)/Systolic_Blood_Pressure\n", + "2256 procedures_lifetime>=DALY-mean_Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "2257 procedures_lifetime>=imaging_studies_lifetime^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2258 procedures_lifetime>=imaging_studies_lifetime^Respiratory_rate\n", + "2259 procedures_lifetime>=minimum(num_allergies,immunizations_lifetime)\n", + "2260 procedures_lifetime>=-Body_Weight+ceil(QALY)\n", + "2261 procedures_lifetime>=minimum(encounters_lifetime_perc_covered,procedures_lifetime_cost)\n", + "2262 procedures_lifetime>=log(log(procedures_lifetime_cost))/log(10)\n", + "2263 procedures_lifetime>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "2264 procedures_lifetime>=Diastolic_Blood_Pressure-mean_Chloride\n", + "2265 procedures_lifetime>=-Respiratory_rate+mean_Respiratory_rate\n", + "2266 procedures_lifetime>=maximum(Erythrocytes____volume__in_Blood_by_Automated_count,-Triglycerides)\n", + "2267 procedures_lifetime>=maximum(mean_History_of_Hospitalizations_Outpatient_visits,-healthcare_expenses)\n", + "2268 procedures_lifetime>=Chloride-mean_Chloride-1\n", + "2269 procedures_lifetime>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Carbon_Dioxide-1\n", + "2270 procedures_lifetime>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+2*medications_lifetime_perc_covered\n", + "2271 procedures_lifetime>=minimum(procedures_lifetime_cost,1/lifetime_conditions)\n", + "2272 procedures_lifetime>=-Calcium+log(procedures_lifetime_cost)\n", + "2273 procedures_lifetime>=minimum(procedures_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "2274 procedures_lifetime>=sqrt(procedures_lifetime_cost)/mean_Systolic_Blood_Pressure\n", + "2275 procedures_lifetime>=Potassium^2-mean_Carbon_Dioxide\n", + "2276 procedures_lifetime>=2*procedures_lifetime_cost/healthcare_expenses\n", + "2277 procedures_lifetime>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(Creatinine)\n", + "2278 procedures_lifetime>=2*DALY-Heart_rate\n", + "2279 procedures_lifetime>=Potassium^2-Carbon_Dioxide\n", + "2280 procedures_lifetime_cost<=healthcare_coverage^2/lifetime_care_plan_length\n", + "2281 procedures_lifetime_cost<=healthcare_coverage^2\n", + "2282 procedures_lifetime_cost<=encounters_lifetime_total_cost^2\n", + "2283 procedures_lifetime_cost<=(1/2*High_Density_Lipoprotein_Cholesterol)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2284 procedures_lifetime_cost<=2*healthcare_expenses/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2285 procedures_lifetime_cost<=10^active_conditions/Urea_Nitrogen\n", + "2286 procedures_lifetime_cost<=e^(10^procedures_lifetime)\n", + "2287 procedures_lifetime_cost<=(longitude^2)^lifetime_conditions\n", + "2288 procedures_lifetime_cost<=log(Microalbumin_Creatinine_Ratio)^Urea_Nitrogen\n", + "2289 procedures_lifetime_cost<=longitude^2*mean_Diastolic_Blood_Pressure\n", + "2290 procedures_lifetime_cost<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Carbon_Dioxide\n", + "2291 procedures_lifetime_cost<=sqrt(encounters_lifetime_total_cost)*healthcare_coverage\n", + "2292 procedures_lifetime_cost<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*encounters_lifetime_total_cost\n", + "2293 procedures_lifetime_cost<=1/2*Diastolic_Blood_Pressure*encounters_lifetime_total_cost\n", + "2294 procedures_lifetime_cost<=sqrt(encounters_lifetime_total_cost)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2295 procedures_lifetime_cost<=sqrt(Carbon_Dioxide)*healthcare_coverage\n", + "2296 procedures_lifetime_cost<=active_care_plan_length^Triglycerides\n", + "2297 procedures_lifetime_cost<=2*Carbon_Dioxide*medications_lifetime_cost\n", + "2298 procedures_lifetime_cost<=healthcare_expenses*lifetime_conditions\n", + "2299 procedures_lifetime_cost<=ceil(Body_Mass_Index)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2300 procedures_lifetime_cost<=10^lifetime_conditions*healthcare_coverage\n", + "2301 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", + "2302 procedures_lifetime_cost<=Diastolic_Blood_Pressure*e^encounters_count\n", + "2303 procedures_lifetime_cost<=e^Estimated_Glomerular_Filtration_Rate/medications_lifetime_dispenses\n", + "2304 procedures_lifetime_cost<=encounters_lifetime_total_cost^2/Heart_rate\n", + "2305 procedures_lifetime_cost<=Triglycerides^2*procedures_lifetime\n", + "2306 procedures_lifetime_cost<=sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)^lifetime_condition_length\n", + "2307 procedures_lifetime_cost<=floor(Microalbumin_Creatinine_Ratio)*medications_lifetime_cost\n", + "2308 procedures_lifetime_cost<=(log(Estimated_Glomerular_Filtration_Rate)/log(10))^mean_High_Density_Lipoprotein_Cholesterol\n", + "2309 procedures_lifetime_cost<=DALY*Low_Density_Lipoprotein_Cholesterol^2\n", + "2310 procedures_lifetime_cost<=(e^Creatinine)^Respiratory_rate\n", + "2311 procedures_lifetime_cost<=-Total_Cholesterol+e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2312 procedures_lifetime_cost<=e^active_condition_length/medications_lifetime_perc_covered\n", + "2313 procedures_lifetime_cost<=healthcare_coverage^2/Estimated_Glomerular_Filtration_Rate\n", + "2314 procedures_lifetime_cost<=Heart_rate^2/num_allergies\n", + "2315 procedures_lifetime_cost<=(Heart_rate^2)^lifetime_conditions\n", + "2316 procedures_lifetime_cost<=lifetime_condition_length^2/num_allergies\n", + "2317 procedures_lifetime_cost<=Microalbumin_Creatinine_Ratio*e^active_conditions\n", + "2318 procedures_lifetime_cost<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood/imaging_studies_lifetime\n", + "2319 procedures_lifetime_cost<=10^active_condition_length/medications_active\n", + "2320 procedures_lifetime_cost<=10^encounters_count/medications_active\n", + "2321 procedures_lifetime_cost<=(Heart_rate^2)^procedures_lifetime\n", + "2322 procedures_lifetime_cost<=Diastolic_Blood_Pressure^2/num_allergies\n", + "2323 procedures_lifetime_cost<=(Diastolic_Blood_Pressure^2)^procedures_lifetime\n", + "2324 procedures_lifetime_cost>=imaging_studies_lifetime\n", + "2325 procedures_lifetime_cost>=2*latitude*procedures_lifetime\n", + "2326 procedures_lifetime_cost>=Urea_Nitrogen^2*imaging_studies_lifetime\n", + "2327 procedures_lifetime_cost>=healthcare_coverage*log(imaging_studies_lifetime)/log(10)\n", + "2328 procedures_lifetime_cost>=sqrt(healthcare_coverage)*procedures_lifetime\n", + "2329 procedures_lifetime_cost>=(immunizations_lifetime_cost+1)*procedures_lifetime\n", + "2330 procedures_lifetime_cost>=ceil(immunizations_lifetime_cost)*num_allergies\n", + "2331 procedures_lifetime_cost>=latitude*procedures_lifetime^2\n", + "2332 procedures_lifetime_cost>=(lifetime_condition_length+1)*procedures_lifetime\n", + "2333 procedures_lifetime_cost>=2*lifetime_care_plan_length*procedures_lifetime\n", + "2334 procedures_lifetime_cost>=(procedures_lifetime-1)^mean_Potassium\n", + "2335 procedures_lifetime_cost>=2*Systolic_Blood_Pressure*procedures_lifetime\n", + "2336 procedures_lifetime_cost>=(Triglycerides+1)*device_lifetime_length\n", + "2337 procedures_lifetime_cost>=Systolic_Blood_Pressure*procedures_lifetime^2\n", + "2338 procedures_lifetime_cost>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2339 procedures_lifetime_cost>=Triglycerides*procedures_lifetime^2\n", + "2340 procedures_lifetime_cost>=2*age*procedures_lifetime\n", + "2341 procedures_lifetime_cost>=e^active_care_plans*procedures_lifetime\n", + "2342 procedures_lifetime_cost>=device_lifetime_length^2*procedures_lifetime\n", + "2343 procedures_lifetime_cost>=1/2*medications_lifetime*procedures_lifetime\n", + "2344 procedures_lifetime_cost>=(procedures_lifetime-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2345 procedures_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol*procedures_lifetime^2\n", + "2346 procedures_lifetime_cost>=2*Total_Cholesterol*procedures_lifetime\n", + "2347 procedures_lifetime_cost>=2*Microalbumin_Creatinine_Ratio*procedures_lifetime\n", + "2348 procedures_lifetime_cost>=2*Sodium*procedures_lifetime\n", + "2349 procedures_lifetime_cost>=Respiratory_rate^2*procedures_lifetime\n", + "2350 procedures_lifetime_cost>=Carbon_Dioxide^2-medications_lifetime_length\n", + "2351 procedures_lifetime_cost>=Urea_Nitrogen^2*procedures_lifetime\n", + "2352 procedures_lifetime_cost>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*medications_lifetime_cost\n", + "2353 procedures_lifetime_cost>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*procedures_lifetime\n", + "2354 QOLS<=mean_QOLS\n", + "2355 QOLS>=mean_QOLS\n", + "2356 QALY<=mean_QALY\n", + "2357 QALY>=mean_QALY\n", + "2358 DALY<=mean_DALY\n", + "2359 DALY>=imaging_studies_lifetime\n", + "2360 DALY>=mean_DALY\n", + "2361 Respiratory_rate<=healthcare_expenses\n", + "2362 Respiratory_rate<=mean_Respiratory_rate+1\n", + "2363 Respiratory_rate<=-healthcare_coverage+healthcare_expenses\n", + "2364 Respiratory_rate<=floor(Creatinine)+mean_Respiratory_rate\n", + "2365 Respiratory_rate<=floor(Estimated_Glomerular_Filtration_Rate)-1\n", + "2366 Respiratory_rate<=floor(Body_Weight)/Potassium\n", + "2367 Respiratory_rate<=-Heart_rate+Systolic_Blood_Pressure\n", + "2368 Respiratory_rate<=maximum(mean_Respiratory_rate,1/num_allergies)\n", + "2369 Respiratory_rate<=healthcare_coverage+mean_Respiratory_rate\n", + "2370 Respiratory_rate<=(High_Density_Lipoprotein_Cholesterol-1)*QOLS\n", + "2371 Respiratory_rate<=Calcium+active_conditions\n", + "2372 Respiratory_rate<=mean_Respiratory_rate/imaging_studies_lifetime\n", + "2373 Respiratory_rate<=10^QOLS*mean_Respiratory_rate\n", + "2374 Respiratory_rate<=maximum(active_condition_length,mean_Respiratory_rate)\n", + "2375 Respiratory_rate<=sqrt(mean_Calcium)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2376 Respiratory_rate<=active_conditions+mean_Respiratory_rate\n", + "2377 Respiratory_rate<=encounters_lifetime_payer_coverage+mean_Respiratory_rate\n", + "2378 Respiratory_rate<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Respiratory_rate\n", + "2379 Respiratory_rate<=(mean_Total_Cholesterol-1)/procedures_lifetime\n", + "2380 Respiratory_rate<=ceil(Potassium)^2\n", + "2381 Respiratory_rate<=maximum(mean_Respiratory_rate,e^lifetime_conditions)\n", + "2382 Respiratory_rate<=floor(mean_Respiratory_rate)+1\n", + "2383 Respiratory_rate<=ceil(latitude)-procedures_lifetime\n", + "2384 Respiratory_rate<=Body_Height-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "2385 Respiratory_rate>=longitude\n", + "2386 Respiratory_rate>=ceil(sqrt(Systolic_Blood_Pressure))\n", + "2387 Respiratory_rate>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Respiratory_rate\n", + "2388 Respiratory_rate>=minimum(device_lifetime_length,active_conditions+1)\n", + "2389 Respiratory_rate>=mean_Respiratory_rate^QOLS\n", + "2390 Respiratory_rate>=minimum(mean_Respiratory_rate,10^immunizations_lifetime)\n", + "2391 Respiratory_rate>=minimum(device_lifetime_length,mean_Respiratory_rate)\n", + "2392 Respiratory_rate>=sqrt(Triglycerides)-medications_lifetime_perc_covered\n", + "2393 Respiratory_rate>=-healthcare_expenses\n", + "2394 Respiratory_rate>=minimum(lifetime_conditions,sqrt(encounters_count))\n", + "2395 Respiratory_rate>=minimum(mean_Respiratory_rate,e^medications_active)\n", + "2396 Respiratory_rate>=-active_care_plans+mean_Respiratory_rate\n", + "2397 Respiratory_rate>=healthcare_expenses^longitude\n", + "2398 Respiratory_rate>=-active_conditions+mean_Respiratory_rate\n", + "2399 Respiratory_rate>=-Glucose+ceil(age)\n", + "2400 Respiratory_rate>=active_care_plans*num_allergies\n", + "2401 Respiratory_rate>=-active_care_plans+lifetime_conditions\n", + "2402 Respiratory_rate>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "2403 Respiratory_rate>=minimum(DALY,floor(mean_Respiratory_rate))\n", + "2404 Respiratory_rate>=immunizations_lifetime^2*mean_Creatinine\n", + "2405 Respiratory_rate>=minimum(procedures_lifetime,mean_Respiratory_rate)\n", + "2406 Respiratory_rate>=2*medications_active-1\n", + "2407 Respiratory_rate>=lifetime_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2408 Respiratory_rate>=ceil(sqrt(Low_Density_Lipoprotein_Cholesterol))\n", + "2409 Respiratory_rate>=-encounters_lifetime_payer_coverage+mean_Respiratory_rate\n", + "2410 Respiratory_rate>=-immunizations_lifetime_cost+mean_Respiratory_rate\n", + "2411 Respiratory_rate>=mean_Respiratory_rate^encounters_lifetime_perc_covered\n", + "2412 Respiratory_rate>=mean_Respiratory_rate-procedures_lifetime\n", + "2413 Respiratory_rate>=-healthcare_coverage+mean_Respiratory_rate\n", + "2414 Respiratory_rate>=minimum(mean_Respiratory_rate,-Triglycerides)\n", + "2415 Respiratory_rate>=1/2*Carbon_Dioxide-1\n", + "2416 Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "2417 Respiratory_rate>=Glucose-mean_Glucose-1\n", + "2418 Respiratory_rate>=ceil(mean_Respiratory_rate)-immunizations_lifetime_cost\n", + "2419 Respiratory_rate>=active_conditions-immunizations_lifetime_cost-1\n", + "2420 Heart_rate<=healthcare_expenses\n", + "2421 Heart_rate<=Body_Weight+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "2422 Heart_rate<=lifetime_conditions+mean_Heart_rate\n", + "2423 Heart_rate<=maximum(medications_lifetime,mean_Heart_rate)\n", + "2424 Heart_rate<=-Respiratory_rate+Systolic_Blood_Pressure\n", + "2425 Heart_rate<=mean_Heart_rate+procedures_lifetime_cost\n", + "2426 Heart_rate<=-healthcare_coverage+healthcare_expenses\n", + "2427 Heart_rate<=mean_Heart_rate/imaging_studies_lifetime\n", + "2428 Heart_rate<=Triglycerides^2/Low_Density_Lipoprotein_Cholesterol\n", + "2429 Heart_rate<=active_care_plan_length+mean_Heart_rate\n", + "2430 Heart_rate<=mean_Systolic_Blood_Pressure^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "2431 Heart_rate<=Diastolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "2432 Heart_rate<=maximum(lifetime_condition_length,mean_Heart_rate)\n", + "2433 Heart_rate<=Body_Weight+medications_lifetime_cost-1\n", + "2434 Heart_rate<=10^medications_lifetime+Glucose\n", + "2435 Heart_rate<=mean_Heart_rate/QOLS\n", + "2436 Heart_rate<=floor(mean_Heart_rate)+mean_Respiratory_rate\n", + "2437 Heart_rate<=maximum(mean_Heart_rate,ceil(Glucose))\n", + "2438 Heart_rate<=10^Creatinine+mean_Estimated_Glomerular_Filtration_Rate\n", + "2439 Heart_rate<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Heart_rate)\n", + "2440 Heart_rate<=healthcare_coverage+mean_Heart_rate\n", + "2441 Heart_rate<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "2442 Heart_rate<=active_conditions^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "2443 Heart_rate<=(medications_lifetime_perc_covered+1)*mean_Heart_rate\n", + "2444 Heart_rate<=maximum(mean_Heart_rate,1/2*medications_lifetime)\n", + "2445 Heart_rate<=e^procedures_lifetime+mean_Heart_rate\n", + "2446 Heart_rate<=2*mean_Heart_rate/immunizations_lifetime\n", + "2447 Heart_rate>=latitude\n", + "2448 Heart_rate>=ceil(mean_Low_Density_Lipoprotein_Cholesterol)-mean_Heart_rate\n", + "2449 Heart_rate>=-healthcare_expenses\n", + "2450 Heart_rate>=minimum(mean_Heart_rate,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2451 Heart_rate>=device_lifetime_length+floor(latitude)\n", + "2452 Heart_rate>=-encounters_lifetime_payer_coverage+mean_Heart_rate\n", + "2453 Heart_rate>=Body_Weight*log(immunizations_lifetime)\n", + "2454 Heart_rate>=QALY-1\n", + "2455 Heart_rate>=(Creatinine-1)*Urea_Nitrogen\n", + "2456 Heart_rate>=healthcare_expenses^longitude\n", + "2457 Heart_rate>=mean_Heart_rate^imaging_studies_lifetime\n", + "2458 Heart_rate>=-Body_Weight+Sodium-1\n", + "2459 Heart_rate>=active_condition_length*log(Creatinine)\n", + "2460 Heart_rate>=ceil(Body_Height)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2461 Heart_rate>=minimum(mean_Heart_rate,10^num_allergies)\n", + "2462 Heart_rate>=Calcium*active_care_plans\n", + "2463 Heart_rate>=Carbon_Dioxide*log(medications_lifetime)/log(10)\n", + "2464 Heart_rate>=High_Density_Lipoprotein_Cholesterol-lifetime_care_plans\n", + "2465 Heart_rate>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2466 Heart_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_conditions\n", + "2467 Heart_rate>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Heart_rate)\n", + "2468 Heart_rate>=DALY^2/encounters_count\n", + "2469 Heart_rate>=QALY*log(Urea_Nitrogen)/log(10)\n", + "2470 Heart_rate>=minimum(mean_Heart_rate,e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2471 Heart_rate>=-Respiratory_rate+1/2*Systolic_Blood_Pressure\n", + "2472 Heart_rate>=Diastolic_Blood_Pressure-active_condition_length\n", + "2473 Heart_rate>=High_Density_Lipoprotein_Cholesterol-medications_lifetime\n", + "2474 Heart_rate>=mean_Calcium+2*mean_Carbon_Dioxide\n", + "2475 Heart_rate>=Diastolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "2476 Heart_rate>=-active_care_plans+floor(High_Density_Lipoprotein_Cholesterol)\n", + "2477 Heart_rate>=sqrt(healthcare_coverage)/mean_Potassium\n", + "2478 Heart_rate>=-healthcare_coverage+mean_Heart_rate\n", + "2479 Heart_rate>=Triglycerides*encounters_lifetime_perc_covered^2\n", + "2480 Heart_rate>=1/2*encounters_count-lifetime_care_plan_length\n", + "2481 Heart_rate>=1/2*QOLS*Sodium\n", + "2482 Heart_rate>=minimum(active_care_plan_length,mean_Heart_rate)\n", + "2483 Heart_rate>=-active_condition_length+mean_Heart_rate\n", + "2484 Heart_rate>=-encounters_count+mean_Heart_rate+1\n", + "2485 Heart_rate>=floor(mean_High_Density_Lipoprotein_Cholesterol)-immunizations_lifetime_cost\n", + "2486 Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "2487 Heart_rate>=1/2*QOLS*mean_Triglycerides\n", + "2488 Heart_rate>=(procedures_lifetime^2)^QOLS\n", + "2489 Systolic_Blood_Pressure<=healthcare_expenses\n", + "2490 Systolic_Blood_Pressure<=active_care_plan_length+mean_Systolic_Blood_Pressure\n", + "2491 Systolic_Blood_Pressure<=-DALY+Total_Cholesterol-1\n", + "2492 Systolic_Blood_Pressure<=maximum(lifetime_condition_length,mean_Systolic_Blood_Pressure)\n", + "2493 Systolic_Blood_Pressure<=floor(DALY)+mean_Systolic_Blood_Pressure\n", + "2494 Systolic_Blood_Pressure<=maximum(Total_Cholesterol,mean_Systolic_Blood_Pressure)\n", + "2495 Systolic_Blood_Pressure<=active_condition_length+mean_Systolic_Blood_Pressure\n", + "2496 Systolic_Blood_Pressure<=minimum(Total_Cholesterol,e^Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "2497 Systolic_Blood_Pressure<=-healthcare_coverage+healthcare_expenses\n", + "2498 Systolic_Blood_Pressure<=healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "2499 Systolic_Blood_Pressure<=Glucose*sqrt(medications_lifetime_length)\n", + "2500 Systolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,mean_Systolic_Blood_Pressure)\n", + "2501 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "2502 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,mean_Triglycerides)\n", + "2503 Systolic_Blood_Pressure<=maximum(Body_Height,mean_Systolic_Blood_Pressure)\n", + "2504 Systolic_Blood_Pressure<=sqrt(medications_lifetime)+mean_Systolic_Blood_Pressure\n", + "2505 Systolic_Blood_Pressure<=Urea_Nitrogen^2+mean_Glucose\n", + "2506 Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate*sqrt(age)\n", + "2507 Systolic_Blood_Pressure<=2*mean_Estimated_Glomerular_Filtration_Rate+medications_lifetime\n", + "2508 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,DALY^2)\n", + "2509 Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate^2-mean_Low_Density_Lipoprotein_Cholesterol\n", + "2510 Systolic_Blood_Pressure<=10^medications_active+mean_Systolic_Blood_Pressure\n", + "2511 Systolic_Blood_Pressure<=Low_Density_Lipoprotein_Cholesterol+mean_Microalbumin_Creatinine_Ratio+1\n", + "2512 Systolic_Blood_Pressure<=2*High_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "2513 Systolic_Blood_Pressure<=maximum(Sodium,Microalbumin_Creatinine_Ratio-1)\n", + "2514 Systolic_Blood_Pressure<=2*Total_Cholesterol-immunizations_lifetime_cost\n", + "2515 Systolic_Blood_Pressure<=active_care_plan_length+floor(mean_Systolic_Blood_Pressure)\n", + "2516 Systolic_Blood_Pressure>=latitude\n", + "2517 Systolic_Blood_Pressure>=ceil(mean_Glucose+1)\n", + "2518 Systolic_Blood_Pressure>=Heart_rate+Respiratory_rate\n", + "2519 Systolic_Blood_Pressure>=-active_condition_length+mean_Systolic_Blood_Pressure\n", + "2520 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure^imaging_studies_lifetime\n", + "2521 Systolic_Blood_Pressure>=10^immunizations_lifetime+active_care_plans\n", + "2522 Systolic_Blood_Pressure>=-healthcare_expenses\n", + "2523 Systolic_Blood_Pressure>=Urea_Nitrogen*log(medications_lifetime)\n", + "2524 Systolic_Blood_Pressure>=minimum(lifetime_care_plan_length,mean_Systolic_Blood_Pressure)\n", + "2525 Systolic_Blood_Pressure>=-encounters_count+mean_Systolic_Blood_Pressure\n", + "2526 Systolic_Blood_Pressure>=-encounters_lifetime_payer_coverage+mean_Systolic_Blood_Pressure\n", + "2527 Systolic_Blood_Pressure>=sqrt(medications_lifetime_dispenses)-longitude\n", + "2528 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "2529 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,procedures_lifetime^2)\n", + "2530 Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "2531 Systolic_Blood_Pressure>=-mean_Carbon_Dioxide+mean_Systolic_Blood_Pressure\n", + "2532 Systolic_Blood_Pressure>=-mean_Estimated_Glomerular_Filtration_Rate+mean_Systolic_Blood_Pressure\n", + "2533 Systolic_Blood_Pressure>=(procedures_lifetime^2)^Specific_gravity_of_Urine_by_Test_strip\n", + "2534 Systolic_Blood_Pressure>=1/4*lifetime_condition_length\n", + "2535 Systolic_Blood_Pressure>=1/2*Diastolic_Blood_Pressure+QALY\n", + "2536 Systolic_Blood_Pressure>=Carbon_Dioxide*log(High_Density_Lipoprotein_Cholesterol)\n", + "2537 Systolic_Blood_Pressure>=(mean_Calcium-1)*procedures_lifetime\n", + "2538 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,sqrt(procedures_lifetime_cost))\n", + "2539 Systolic_Blood_Pressure>=sqrt(QALY)*active_conditions\n", + "2540 Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "2541 Systolic_Blood_Pressure>=(mean_Carbon_Dioxide-1)*mean_Creatinine\n", + "2542 Systolic_Blood_Pressure>=ceil(Low_Density_Lipoprotein_Cholesterol)/medications_lifetime\n", + "2543 Systolic_Blood_Pressure>=floor(Body_Height)-mean_Diastolic_Blood_Pressure\n", + "2544 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,10^num_allergies)\n", + "2545 Systolic_Blood_Pressure>=-QALY+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "2546 Systolic_Blood_Pressure>=Chloride-DALY\n", + "2547 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,lifetime_care_plan_length+1)\n", + "2548 Systolic_Blood_Pressure>=-healthcare_coverage+mean_Systolic_Blood_Pressure\n", + "2549 Systolic_Blood_Pressure>=latitude*log(active_conditions)\n", + "2550 Systolic_Blood_Pressure>=Low_Density_Lipoprotein_Cholesterol-mean_High_Density_Lipoprotein_Cholesterol-1\n", + "2551 Systolic_Blood_Pressure>=sqrt(encounters_lifetime_perc_covered)*mean_Systolic_Blood_Pressure\n", + "2552 Systolic_Blood_Pressure>=longitude+2*mean_Diastolic_Blood_Pressure\n", + "2553 Systolic_Blood_Pressure>=Body_Weight^2/Low_Density_Lipoprotein_Cholesterol\n", + "2554 Systolic_Blood_Pressure>=2*High_Density_Lipoprotein_Cholesterol-active_condition_length\n", + "2555 Diastolic_Blood_Pressure<=healthcare_expenses\n", + "2556 Diastolic_Blood_Pressure<=10^medications_active+mean_Glucose\n", + "2557 Diastolic_Blood_Pressure<=maximum(medications_lifetime,mean_Diastolic_Blood_Pressure)\n", + "2558 Diastolic_Blood_Pressure<=active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "2559 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,lifetime_conditions^2)\n", + "2560 Diastolic_Blood_Pressure<=floor(Chloride)\n", + "2561 Diastolic_Blood_Pressure<=-healthcare_coverage+healthcare_expenses\n", + "2562 Diastolic_Blood_Pressure<=healthcare_coverage+mean_Diastolic_Blood_Pressure\n", + "2563 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure/imaging_studies_lifetime\n", + "2564 Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,mean_Diastolic_Blood_Pressure)\n", + "2565 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "2566 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure/QOLS\n", + "2567 Diastolic_Blood_Pressure<=Heart_rate+active_condition_length\n", + "2568 Diastolic_Blood_Pressure<=Heart_rate/encounters_lifetime_perc_covered\n", + "2569 Diastolic_Blood_Pressure<=minimum(healthcare_expenses,2*mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "2570 Diastolic_Blood_Pressure<=(mean_Potassium+1)*Estimated_Glomerular_Filtration_Rate\n", + "2571 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,e^DALY)\n", + "2572 Diastolic_Blood_Pressure<=-Sodium+2*Triglycerides\n", + "2573 Diastolic_Blood_Pressure<=floor(Calcium)*mean_Urea_Nitrogen\n", + "2574 Diastolic_Blood_Pressure<=maximum(mean_Microalbumin_Creatinine_Ratio,floor(mean_Diastolic_Blood_Pressure))\n", + "2575 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,10^active_care_plans)\n", + "2576 Diastolic_Blood_Pressure<=High_Density_Lipoprotein_Cholesterol*log(mean_Calcium)\n", + "2577 Diastolic_Blood_Pressure<=Glucose+medications_lifetime_length\n", + "2578 Diastolic_Blood_Pressure<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "2579 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,2*lifetime_care_plan_length)\n", + "2580 Diastolic_Blood_Pressure<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*mean_High_Density_Lipoprotein_Cholesterol\n", + "2581 Diastolic_Blood_Pressure<=maximum(medications_lifetime,floor(mean_Diastolic_Blood_Pressure))\n", + "2582 Diastolic_Blood_Pressure>=latitude\n", + "2583 Diastolic_Blood_Pressure>=-Triglycerides+ceil(lifetime_care_plan_length)\n", + "2584 Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "2585 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^2/Chloride\n", + "2586 Diastolic_Blood_Pressure>=Respiratory_rate*log(mean_Microalbumin_Creatinine_Ratio)\n", + "2587 Diastolic_Blood_Pressure>=Calcium+2*DALY\n", + "2588 Diastolic_Blood_Pressure>=floor(active_care_plan_length)\n", + "2589 Diastolic_Blood_Pressure>=1/2*e^Potassium\n", + "2590 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2591 Diastolic_Blood_Pressure>=1/2*encounters_count-lifetime_care_plan_length\n", + "2592 Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "2593 Diastolic_Blood_Pressure>=-active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "2594 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "2595 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^QOLS\n", + "2596 Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol-lifetime_conditions-1\n", + "2597 Diastolic_Blood_Pressure>=-Body_Weight+Systolic_Blood_Pressure-1\n", + "2598 Diastolic_Blood_Pressure>=-Sodium+mean_Microalbumin_Creatinine_Ratio+1\n", + "2599 Diastolic_Blood_Pressure>=minimum(Microalbumin_Creatinine_Ratio,floor(age))\n", + "2600 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^imaging_studies_lifetime\n", + "2601 Diastolic_Blood_Pressure>=-active_condition_length+mean_Diastolic_Blood_Pressure\n", + "2602 Diastolic_Blood_Pressure>=active_care_plans*log(healthcare_expenses)\n", + "2603 Diastolic_Blood_Pressure>=minimum(QALY,mean_Diastolic_Blood_Pressure)\n", + "2604 Diastolic_Blood_Pressure>=Glucose*log(Creatinine)/log(10)\n", + "2605 Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "2606 Diastolic_Blood_Pressure>=sqrt(healthcare_coverage)/mean_Potassium\n", + "2607 Diastolic_Blood_Pressure>=1/2*Calcium*active_conditions\n", + "2608 Diastolic_Blood_Pressure>=ceil(Body_Height)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2609 Diastolic_Blood_Pressure>=-encounters_lifetime_payer_coverage+mean_Diastolic_Blood_Pressure\n", + "2610 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,-Triglycerides)\n", + "2611 Diastolic_Blood_Pressure>=Heart_rate^encounters_lifetime_perc_covered\n", + "2612 Diastolic_Blood_Pressure>=-healthcare_coverage+mean_Diastolic_Blood_Pressure\n", + "2613 Body_Mass_Index<=healthcare_expenses\n", + "2614 Body_Mass_Index<=ceil(mean_Body_Mass_Index)\n", + "2615 Body_Mass_Index<=-healthcare_coverage+healthcare_expenses\n", + "2616 Body_Mass_Index<=1/Microalbumin_Creatinine_Ratio+mean_Body_Mass_Index\n", + "2617 Body_Mass_Index<=active_care_plans+mean_Body_Mass_Index\n", + "2618 Body_Mass_Index<=maximum(mean_Body_Mass_Index,10^active_care_plans)\n", + "2619 Body_Mass_Index<=maximum(active_condition_length,mean_Body_Mass_Index)\n", + "2620 Body_Mass_Index<=maximum(age,mean_Body_Mass_Index)\n", + "2621 Body_Mass_Index<=healthcare_coverage+mean_Body_Mass_Index\n", + "2622 Body_Mass_Index<=maximum(lifetime_care_plan_length,mean_Body_Mass_Index)\n", + "2623 Body_Mass_Index<=maximum(encounters_count,mean_Body_Mass_Index)\n", + "2624 Body_Mass_Index<=Estimated_Glomerular_Filtration_Rate+lifetime_conditions+1\n", + "2625 Body_Mass_Index<=mean_Body_Mass_Index+medications_lifetime_perc_covered\n", + "2626 Body_Mass_Index<=mean_Body_Mass_Index+medications_active\n", + "2627 Body_Mass_Index<=mean_Body_Mass_Index+procedures_lifetime\n", + "2628 Body_Mass_Index<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "2629 Body_Mass_Index<=maximum(Triglycerides,mean_Body_Mass_Index)\n", + "2630 Body_Mass_Index<=maximum(mean_Body_Mass_Index,DALY^2)\n", + "2631 Body_Mass_Index<=1/device_lifetime_length+mean_Body_Mass_Index\n", + "2632 Body_Mass_Index<=maximum(mean_Body_Mass_Index,e^active_care_plans)\n", + "2633 Body_Mass_Index<=maximum(mean_Body_Mass_Index,sqrt(medications_lifetime_dispenses))\n", + "2634 Body_Mass_Index<=QOLS^2+mean_Body_Mass_Index\n", + "2635 Body_Mass_Index>=longitude\n", + "2636 Body_Mass_Index>=floor(mean_Body_Mass_Index)\n", + "2637 Body_Mass_Index>=healthcare_expenses^longitude\n", + "2638 Body_Mass_Index>=minimum(Carbon_Dioxide,mean_Body_Mass_Index)\n", + "2639 Body_Mass_Index>=mean_Body_Mass_Index-medications_lifetime_perc_covered\n", + "2640 Body_Mass_Index>=mean_Body_Mass_Index-procedures_lifetime\n", + "2641 Body_Mass_Index>=-healthcare_expenses\n", + "2642 Body_Mass_Index>=minimum(device_lifetime_length,1/2*QALY)\n", + "2643 Body_Mass_Index>=-active_care_plans+mean_Body_Mass_Index\n", + "2644 Body_Mass_Index>=mean_Body_Mass_Index^QOLS\n", + "2645 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Estimated_Glomerular_Filtration_Rate)\n", + "2646 Body_Mass_Index>=-active_conditions+mean_Body_Mass_Index\n", + "2647 Body_Mass_Index>=(log(Diastolic_Blood_Pressure)/log(10))^mean_Creatinine\n", + "2648 Body_Mass_Index>=minimum(DALY,mean_Body_Mass_Index)\n", + "2649 Body_Mass_Index>=minimum(Carbon_Dioxide,Microalbumin_Creatinine_Ratio)\n", + "2650 Body_Mass_Index>=-healthcare_coverage+mean_Body_Mass_Index\n", + "2651 Body_Mass_Index>=-encounters_lifetime_payer_coverage+mean_Body_Mass_Index\n", + "2652 Body_Mass_Index>=mean_Body_Mass_Index^encounters_lifetime_perc_covered\n", + "2653 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "2654 Body_Mass_Index>=mean_Body_Mass_Index^imaging_studies_lifetime\n", + "2655 Body_Mass_Index>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "2656 Body_Mass_Index>=minimum(mean_Body_Mass_Index,mean_Calcium)\n", + "2657 Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "2658 Body_Mass_Index>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*mean_Estimated_Glomerular_Filtration_Rate/log(10)\n", + "2659 Body_Weight<=healthcare_expenses\n", + "2660 Body_Weight<=ceil(mean_Body_Weight)\n", + "2661 Body_Weight<=-healthcare_coverage+healthcare_expenses\n", + "2662 Body_Weight<=mean_Body_Weight-medications_lifetime_perc_covered+1\n", + "2663 Body_Weight<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Body_Weight)\n", + "2664 Body_Weight<=maximum(lifetime_condition_length,mean_Body_Weight)\n", + "2665 Body_Weight<=encounters_lifetime_perc_covered^2+mean_Body_Weight\n", + "2666 Body_Weight<=healthcare_coverage+mean_Body_Weight\n", + "2667 Body_Weight<=active_care_plans+mean_Body_Weight\n", + "2668 Body_Weight<=mean_Body_Weight/imaging_studies_lifetime\n", + "2669 Body_Weight<=maximum(medications_lifetime_cost,mean_Body_Weight)\n", + "2670 Body_Weight<=mean_Body_Weight+medications_lifetime_perc_covered\n", + "2671 Body_Weight<=mean_Body_Weight+procedures_lifetime\n", + "2672 Body_Weight<=QOLS+mean_Body_Weight\n", + "2673 Body_Weight<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "2674 Body_Weight<=maximum(Triglycerides,mean_Body_Weight)\n", + "2675 Body_Weight<=maximum(mean_Body_Weight,10^active_care_plans)\n", + "2676 Body_Weight<=-device_lifetime_length+floor(mean_Sodium)\n", + "2677 Body_Weight<=mean_Body_Weight+1/2*medications_lifetime_perc_covered\n", + "2678 Body_Weight<=maximum(mean_Body_Weight,10^procedures_lifetime)\n", + "2679 Body_Weight<=(Carbon_Dioxide+1)*mean_Potassium\n", + "2680 Body_Weight>=latitude\n", + "2681 Body_Weight>=mean_Body_Weight\n", + "2682 Body_Weight>=-healthcare_expenses\n", + "2683 Body_Weight>=healthcare_expenses^longitude\n", + "2684 Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "2685 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "2686 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^QOLS+active_care_plans\n", + "2687 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+immunizations_lifetime_cost\n", + "2688 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count^2\n", + "2689 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2690 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime_perc_covered/imaging_studies_lifetime\n", + "2691 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2692 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-healthcare_coverage+healthcare_expenses\n", + "2693 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(log(High_Density_Lipoprotein_Cholesterol))\n", + "2694 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^Creatinine)\n", + "2695 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "2696 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2697 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_care_plans,Creatinine)\n", + "2698 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^QOLS*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2699 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^healthcare_coverage+1\n", + "2700 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+Urea_Nitrogen\n", + "2701 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/num_allergies)\n", + "2702 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(lifetime_conditions,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2703 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(immunizations_lifetime_cost-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2704 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+medications_active\n", + "2705 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count/encounters_lifetime_perc_covered\n", + "2706 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+encounters_lifetime_payer_coverage\n", + "2707 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime/num_allergies\n", + "2708 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime_dispenses/Creatinine\n", + "2709 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Creatinine)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2710 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Systolic_Blood_Pressure-mean_Glucose-1\n", + "2711 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^healthcare_expenses\n", + "2712 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^log(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2713 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(healthcare_expenses,Mental_health_Outpatient_Note)\n", + "2714 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(lifetime_care_plan_length-1)\n", + "2715 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "2716 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Estimated_Glomerular_Filtration_Rate,sqrt(active_conditions))\n", + "2717 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,active_conditions^2)\n", + "2718 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Glucose+ceil(Triglycerides)\n", + "2719 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=QALY^2/medications_lifetime\n", + "2720 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "2721 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "2722 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "2723 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*num_allergies\n", + "2724 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies-1\n", + "2725 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(num_allergies)\n", + "2726 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime\n", + "2727 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude^procedures_lifetime_cost\n", + "2728 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_lifetime_payer_coverage+immunizations_lifetime+1\n", + "2729 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies^immunizations_lifetime\n", + "2730 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2731 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime\n", + "2732 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2733 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=lifetime_conditions-medications_lifetime_cost\n", + "2734 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+active_conditions\n", + "2735 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Body_Mass_Index+mean_Carbon_Dioxide\n", + "2736 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+lifetime_conditions\n", + "2737 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(procedures_lifetime)/log(10))\n", + "2738 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_coverage+immunizations_lifetime+1\n", + "2739 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+ceil(mean_Respiratory_rate)\n", + "2740 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(device_lifetime_length,immunizations_lifetime+1)\n", + "2741 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(lifetime_care_plan_length)-encounters_count\n", + "2742 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(mean_Creatinine))\n", + "2743 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(imaging_studies_lifetime-1)^active_care_plans\n", + "2744 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "2745 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "2746 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=10^medications_lifetime_perc_covered-Potassium\n", + "2747 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-mean_Low_Density_Lipoprotein_Cholesterol+1/2*mean_Microalbumin_Creatinine_Ratio\n", + "2748 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+floor(Creatinine)\n", + "2749 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Respiratory_rate)\n", + "2750 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*active_care_plan_length-mean_Triglycerides\n", + "2751 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Systolic_Blood_Pressure+ceil(Chloride)\n", + "2752 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Sodium-mean_Heart_rate\n", + "2753 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(QOLS)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2754 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+log(medications_lifetime_length)\n", + "2755 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Body_Weight+QALY+1\n", + "2756 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Low_Density_Lipoprotein_Cholesterol-mean_Heart_rate\n", + "2757 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(Creatinine)-procedures_lifetime\n", + "2758 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(1/2*Total_score__MMSE_)^procedures_lifetime\n", + "2759 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+floor(mean_Creatinine)\n", + "2760 Body_Height<=healthcare_expenses\n", + "2761 Body_Height<=mean_Body_Height\n", + "2762 Body_Height<=-healthcare_coverage+healthcare_expenses\n", + "2763 Body_Height>=latitude\n", + "2764 Body_Height>=mean_Body_Height\n", + "2765 Body_Height>=-healthcare_expenses\n", + "2766 Body_Height>=healthcare_expenses^longitude\n", + "2767 Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "2768 Triglycerides<=healthcare_expenses\n", + "2769 Triglycerides<=mean_Triglycerides^medications_lifetime\n", + "2770 Triglycerides<=maximum(mean_Triglycerides,1/num_allergies)\n", + "2771 Triglycerides<=-Diastolic_Blood_Pressure+2*mean_Sodium\n", + "2772 Triglycerides<=10^QOLS*mean_Body_Weight\n", + "2773 Triglycerides<=2*mean_Diastolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "2774 Triglycerides<=active_care_plan_length+mean_Triglycerides\n", + "2775 Triglycerides<=-healthcare_coverage+healthcare_expenses\n", + "2776 Triglycerides<=healthcare_coverage+mean_Triglycerides\n", + "2777 Triglycerides<=mean_Triglycerides+procedures_lifetime_cost\n", + "2778 Triglycerides<=encounters_lifetime_payer_coverage+mean_Triglycerides\n", + "2779 Triglycerides<=maximum(mean_Triglycerides,e^DALY)\n", + "2780 Triglycerides<=(mean_Systolic_Blood_Pressure+1)/encounters_lifetime_perc_covered\n", + "2781 Triglycerides<=e^sqrt(Body_Mass_Index)\n", + "2782 Triglycerides<=mean_Triglycerides/imaging_studies_lifetime\n", + "2783 Triglycerides<=-active_care_plan_length+2*mean_Systolic_Blood_Pressure\n", + "2784 Triglycerides<=Carbon_Dioxide+ceil(Body_Height)\n", + "2785 Triglycerides<=ceil(Creatinine)*mean_Triglycerides\n", + "2786 Triglycerides<=2*mean_Albumin__Mass_volume__in_Serum,Plasma+mean_Triglycerides\n", + "2787 Triglycerides<=10^healthcare_expenses-healthcare_coverage\n", + "2788 Triglycerides<=10^medications_active*mean_Triglycerides\n", + "2789 Triglycerides<=Carbon_Dioxide+floor(mean_Triglycerides)\n", + "2790 Triglycerides<=1/2*QALY*mean_Urea_Nitrogen\n", + "2791 Triglycerides<=Low_Density_Lipoprotein_Cholesterol+e^Potassium\n", + "2792 Triglycerides<=Body_Height+floor(Estimated_Glomerular_Filtration_Rate)\n", + "2793 Triglycerides<=1/2*Chloride*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2794 Triglycerides>=latitude\n", + "2795 Triglycerides>=10^sqrt(mean_Creatinine)\n", + "2796 Triglycerides>=mean_Triglycerides-procedures_lifetime_cost\n", + "2797 Triglycerides>=Diastolic_Blood_Pressure*log(Creatinine)\n", + "2798 Triglycerides>=-Creatinine+mean_Glucose\n", + "2799 Triglycerides>=minimum(mean_Triglycerides,1/2*Respiratory_rate)\n", + "2800 Triglycerides>=minimum(mean_Triglycerides,e^medications_active)\n", + "2801 Triglycerides>=-healthcare_expenses\n", + "2802 Triglycerides>=mean_Triglycerides^imaging_studies_lifetime\n", + "2803 Triglycerides>=minimum(mean_Triglycerides,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "2804 Triglycerides>=1/2*encounters_count+medications_active\n", + "2805 Triglycerides>=minimum(mean_Triglycerides,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2806 Triglycerides>=10^immunizations_lifetime+Carbon_Dioxide\n", + "2807 Triglycerides>=procedures_lifetime^2+longitude\n", + "2808 Triglycerides>=log(device_lifetime_length)/log(10)+mean_Triglycerides\n", + "2809 Triglycerides>=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma*mean_Triglycerides\n", + "2810 Triglycerides>=minimum(mean_Systolic_Blood_Pressure,1/medications_active)\n", + "2811 Triglycerides>=healthcare_expenses^longitude\n", + "2812 Triglycerides>=-healthcare_coverage+mean_Triglycerides\n", + "2813 Triglycerides>=minimum(mean_Triglycerides,sqrt(procedures_lifetime_cost))\n", + "2814 Triglycerides>=1/2*encounters_lifetime_payer_coverage/High_Density_Lipoprotein_Cholesterol\n", + "2815 Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "2816 Triglycerides>=DALY*log(mean_Estimated_Glomerular_Filtration_Rate)\n", + "2817 Triglycerides>=mean_Triglycerides/medications_lifetime\n", + "2818 Triglycerides>=-active_care_plan_length+mean_Triglycerides\n", + "2819 Triglycerides>=minimum(Microalbumin_Creatinine_Ratio,floor(Low_Density_Lipoprotein_Cholesterol))\n", + "2820 Triglycerides>=-encounters_lifetime_payer_coverage+mean_Triglycerides\n", + "2821 Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "2822 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,e^DALY)\n", + "2823 Low_Density_Lipoprotein_Cholesterol<=mean_Respiratory_rate+mean_Sodium+1\n", + "2824 Low_Density_Lipoprotein_Cholesterol<=Heart_rate*log(Urea_Nitrogen)\n", + "2825 Low_Density_Lipoprotein_Cholesterol<=mean_Total_Cholesterol^2/encounters_count\n", + "2826 Low_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2827 Low_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "2828 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol^medications_lifetime\n", + "2829 Low_Density_Lipoprotein_Cholesterol<=2*Respiratory_rate+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2830 Low_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+Triglycerides-1\n", + "2831 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "2832 Low_Density_Lipoprotein_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "2833 Low_Density_Lipoprotein_Cholesterol<=healthcare_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2834 Low_Density_Lipoprotein_Cholesterol<=2*DALY+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2835 Low_Density_Lipoprotein_Cholesterol<=maximum(Body_Height,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "2836 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Triglycerides)\n", + "2837 Low_Density_Lipoprotein_Cholesterol<=e^Respiratory_rate/medications_lifetime_dispenses\n", + "2838 Low_Density_Lipoprotein_Cholesterol<=Glomerular_filtration_rate_1_73_sq_M_predicted*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2839 Low_Density_Lipoprotein_Cholesterol<=2*Estimated_Glomerular_Filtration_Rate*Potassium\n", + "2840 Low_Density_Lipoprotein_Cholesterol<=10^medications_active*Systolic_Blood_Pressure\n", + "2841 Low_Density_Lipoprotein_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "2842 Low_Density_Lipoprotein_Cholesterol<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Glucose\n", + "2843 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,e^Albumin__Mass_volume__in_Serum,Plasma)\n", + "2844 Low_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "2845 Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "2846 Low_Density_Lipoprotein_Cholesterol>=minimum(age,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "2847 Low_Density_Lipoprotein_Cholesterol>=-active_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2848 Low_Density_Lipoprotein_Cholesterol>=(active_care_plans+1)*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2849 Low_Density_Lipoprotein_Cholesterol>=-encounters_lifetime_payer_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2850 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol/medications_lifetime\n", + "2851 Low_Density_Lipoprotein_Cholesterol>=minimum(Microalbumin_Creatinine_Ratio,2*active_condition_length)\n", + "2852 Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "2853 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^imaging_studies_lifetime\n", + "2854 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "2855 Low_Density_Lipoprotein_Cholesterol>=(mean_Chloride-1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2856 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^2/Body_Height\n", + "2857 Low_Density_Lipoprotein_Cholesterol>=-mean_Microalbumin_Creatinine_Ratio+mean_Systolic_Blood_Pressure\n", + "2858 Low_Density_Lipoprotein_Cholesterol>=minimum(Heart_rate,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "2859 Low_Density_Lipoprotein_Cholesterol>=-Carbon_Dioxide+Diastolic_Blood_Pressure\n", + "2860 Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "2861 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2862 Low_Density_Lipoprotein_Cholesterol>=-Body_Weight+mean_Microalbumin_Creatinine_Ratio+1\n", + "2863 Low_Density_Lipoprotein_Cholesterol>=-Body_Height+floor(immunizations_lifetime_cost)\n", + "2864 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2865 Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "2866 Low_Density_Lipoprotein_Cholesterol>=Body_Weight*log(device_lifetime_length)/log(10)\n", + "2867 Low_Density_Lipoprotein_Cholesterol>=-healthcare_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2868 Low_Density_Lipoprotein_Cholesterol>=2*mean_Creatinine*procedures_lifetime\n", + "2869 Low_Density_Lipoprotein_Cholesterol>=1/2*medications_lifetime/Potassium\n", + "2870 Low_Density_Lipoprotein_Cholesterol>=floor(mean_Creatinine)*mean_Estimated_Glomerular_Filtration_Rate\n", + "2871 Low_Density_Lipoprotein_Cholesterol>=e^mean_Creatinine*immunizations_lifetime\n", + "2872 High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "2873 High_Density_Lipoprotein_Cholesterol<=Heart_rate+lifetime_care_plans\n", + "2874 High_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "2875 High_Density_Lipoprotein_Cholesterol<=2*Sodium-mean_Microalbumin_Creatinine_Ratio\n", + "2876 High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,mean_High_Density_Lipoprotein_Cholesterol)\n", + "2877 High_Density_Lipoprotein_Cholesterol<=1/2*Glucose+mean_Microalbumin_Creatinine_Ratio\n", + "2878 High_Density_Lipoprotein_Cholesterol<=floor(age)/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2879 High_Density_Lipoprotein_Cholesterol<=floor(mean_Diastolic_Blood_Pressure)\n", + "2880 High_Density_Lipoprotein_Cholesterol<=encounters_lifetime_payer_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "2881 High_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime,mean_High_Density_Lipoprotein_Cholesterol)\n", + "2882 High_Density_Lipoprotein_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "2883 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol/imaging_studies_lifetime\n", + "2884 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "2885 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,10^active_care_plans)\n", + "2886 High_Density_Lipoprotein_Cholesterol<=maximum(Heart_rate,mean_High_Density_Lipoprotein_Cholesterol)\n", + "2887 High_Density_Lipoprotein_Cholesterol<=active_care_plans^2+mean_High_Density_Lipoprotein_Cholesterol\n", + "2888 High_Density_Lipoprotein_Cholesterol<=Body_Height-Diastolic_Blood_Pressure+1\n", + "2889 High_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+mean_High_Density_Lipoprotein_Cholesterol\n", + "2890 High_Density_Lipoprotein_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "2891 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,10^procedures_lifetime)\n", + "2892 High_Density_Lipoprotein_Cholesterol<=sqrt(lifetime_care_plan_length)+mean_High_Density_Lipoprotein_Cholesterol\n", + "2893 High_Density_Lipoprotein_Cholesterol<=1/device_lifetime_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "2894 High_Density_Lipoprotein_Cholesterol<=healthcare_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "2895 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,1/2*medications_lifetime)\n", + "2896 High_Density_Lipoprotein_Cholesterol<=1/2*Body_Height-device_lifetime_length\n", + "2897 High_Density_Lipoprotein_Cholesterol<=(log(mean_Respiratory_rate)/log(10))^latitude\n", + "2898 High_Density_Lipoprotein_Cholesterol>=longitude\n", + "2899 High_Density_Lipoprotein_Cholesterol>=Body_Height-mean_Sodium-1\n", + "2900 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "2901 High_Density_Lipoprotein_Cholesterol>=-DALY+mean_High_Density_Lipoprotein_Cholesterol\n", + "2902 High_Density_Lipoprotein_Cholesterol>=2*lifetime_condition_length/Estimated_Glomerular_Filtration_Rate\n", + "2903 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^imaging_studies_lifetime\n", + "2904 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol/medications_lifetime\n", + "2905 High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "2906 High_Density_Lipoprotein_Cholesterol>=1/2*immunizations_lifetime_cost-mean_Heart_rate\n", + "2907 High_Density_Lipoprotein_Cholesterol>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_High_Density_Lipoprotein_Cholesterol)\n", + "2908 High_Density_Lipoprotein_Cholesterol>=encounters_count/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2909 High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "2910 High_Density_Lipoprotein_Cholesterol>=-healthcare_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "2911 High_Density_Lipoprotein_Cholesterol>=2*Microalbumin_Creatinine_Ratio/Urea_Nitrogen\n", + "2912 High_Density_Lipoprotein_Cholesterol>=2*DALY-lifetime_conditions\n", + "2913 High_Density_Lipoprotein_Cholesterol>=2*active_conditions+mean_Respiratory_rate\n", + "2914 High_Density_Lipoprotein_Cholesterol>=2*Potassium*mean_Creatinine\n", + "2915 High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "2916 High_Density_Lipoprotein_Cholesterol>=active_conditions*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2917 High_Density_Lipoprotein_Cholesterol>=DALY*e^encounters_lifetime_perc_covered\n", + "2918 High_Density_Lipoprotein_Cholesterol>=immunizations_lifetime_cost/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2919 High_Density_Lipoprotein_Cholesterol>=-encounters_lifetime_payer_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "2920 High_Density_Lipoprotein_Cholesterol>=-active_conditions+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "2921 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "2922 High_Density_Lipoprotein_Cholesterol>=-active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "2923 Creatinine<=healthcare_expenses\n", + "2924 Creatinine<=mean_Creatinine+procedures_lifetime\n", + "2925 Creatinine<=maximum(immunizations_lifetime,medications_lifetime)\n", + "2926 Creatinine<=maximum(mean_Creatinine,procedures_lifetime^2)\n", + "2927 Creatinine<=ceil(log(Microalbumin_Creatinine_Ratio))\n", + "2928 Creatinine<=10^QOLS+medications_active\n", + "2929 Creatinine<=minimum(Estimated_Glomerular_Filtration_Rate,mean_Creatinine^2)\n", + "2930 Creatinine<=(1/imaging_studies_lifetime)\n", + "2931 Creatinine<=encounters_lifetime_payer_coverage+mean_Creatinine\n", + "2932 Creatinine<=mean_Creatinine/QOLS\n", + "2933 Creatinine<=maximum(DALY,mean_Creatinine)\n", + "2934 Creatinine<=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime_cost\n", + "2935 Creatinine<=2*Urea_Nitrogen/active_care_plans\n", + "2936 Creatinine<=-healthcare_coverage+healthcare_expenses\n", + "2937 Creatinine<=maximum(Respiratory_rate,mean_Creatinine)\n", + "2938 Creatinine<=maximum(Triglycerides,mean_Creatinine)\n", + "2939 Creatinine<=-active_care_plan_length+mean_Heart_rate-1\n", + "2940 Creatinine<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+log(Body_Mass_Index)\n", + "2941 Creatinine<=active_care_plans*mean_Creatinine\n", + "2942 Creatinine<=floor(log(healthcare_expenses)/log(10))\n", + "2943 Creatinine<=maximum(Globulin__Mass_volume__in_Serum_by_calculation,mean_Creatinine+1)\n", + "2944 Creatinine<=ceil(Carbon_Dioxide)/active_care_plans\n", + "2945 Creatinine<=10^healthcare_expenses-healthcare_coverage\n", + "2946 Creatinine<=1/2*mean_Respiratory_rate/immunizations_lifetime\n", + "2947 Creatinine<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Urea_Nitrogen\n", + "2948 Creatinine<=-Glomerular_filtration_rate_1_73_sq_M_predicted+floor(lifetime_condition_length)\n", + "2949 Creatinine<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Urea_Nitrogen-1\n", + "2950 Creatinine<=10^mean_Creatinine/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2951 Creatinine<=healthcare_coverage+mean_Creatinine\n", + "2952 Creatinine>=longitude\n", + "2953 Creatinine>=minimum(mean_Creatinine,log(active_care_plans)/log(10))\n", + "2954 Creatinine>=minimum(QOLS,2*medications_lifetime_perc_covered)\n", + "2955 Creatinine>=(Heart_rate+1)/Systolic_Blood_Pressure\n", + "2956 Creatinine>=-healthcare_expenses\n", + "2957 Creatinine>=(1/active_care_plans)\n", + "2958 Creatinine>=mean_Creatinine-procedures_lifetime_cost\n", + "2959 Creatinine>=mean_Creatinine-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2960 Creatinine>=(1/medications_lifetime)\n", + "2961 Creatinine>=minimum(num_allergies,mean_Creatinine)\n", + "2962 Creatinine>=1/2*Microalbumin_Creatinine_Ratio/mean_High_Density_Lipoprotein_Cholesterol\n", + "2963 Creatinine>=-healthcare_coverage+mean_Creatinine\n", + "2964 Creatinine>=healthcare_expenses^longitude\n", + "2965 Creatinine>=minimum(mean_Creatinine,-Triglycerides)\n", + "2966 Creatinine>=ceil(mean_Microalbumin_Creatinine_Ratio)/Microalbumin_Creatinine_Ratio\n", + "2967 Creatinine>=-encounters_lifetime_perc_covered+mean_Creatinine-1\n", + "2968 Creatinine>=mean_Creatinine/active_care_plans\n", + "2969 Creatinine>=minimum(mean_Creatinine,num_allergies^2)\n", + "2970 Creatinine>=maximum(Globulin__Mass_volume__in_Serum_by_calculation,-Estimated_Glomerular_Filtration_Rate)\n", + "2971 Creatinine>=minimum(mean_Creatinine,log(procedures_lifetime))\n", + "2972 Creatinine>=minimum(device_lifetime_length,mean_Creatinine)\n", + "2973 Creatinine>=sqrt(mean_Microalbumin_Creatinine_Ratio)-mean_Urea_Nitrogen\n", + "2974 Creatinine>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(High_Density_Lipoprotein_Cholesterol)\n", + "2975 Creatinine>=-encounters_lifetime_payer_coverage+mean_Creatinine\n", + "2976 Creatinine>=(Bilirubin_total__Mass_volume__in_Serum,Plasma^2)^mean_Calcium\n", + "2977 Creatinine>=(10^healthcare_expenses)^longitude\n", + "2978 Creatinine>=-Potassium+medications_active\n", + "2979 Creatinine>=-mean_Urea_Nitrogen+procedures_lifetime-1\n", + "2980 Creatinine>=2*device_lifetime_length-mean_Body_Weight\n", + "2981 Creatinine>=-Albumin__Mass_volume__in_Serum,Plasma+Globulin__Mass_volume__in_Serum_by_calculation+1\n", + "2982 Creatinine>=1/2*Glucose/mean_Estimated_Glomerular_Filtration_Rate\n", + "2983 Creatinine>=floor(mean_Creatinine)-immunizations_lifetime_cost\n", + "2984 Creatinine>=Potassium^2-Carbon_Dioxide\n", + "2985 Sodium<=healthcare_expenses\n", + "2986 Sodium<=healthcare_coverage+mean_Sodium\n", + "2987 Sodium<=maximum(lifetime_condition_length,mean_Sodium)\n", + "2988 Sodium<=mean_Potassium+mean_Sodium-1\n", + "2989 Sodium<=mean_Sodium+procedures_lifetime_cost\n", + "2990 Sodium<=10^QOLS+mean_Sodium\n", + "2991 Sodium<=floor(Chloride)+latitude\n", + "2992 Sodium<=mean_Sodium^active_care_plans\n", + "2993 Sodium<=maximum(Body_Height,mean_Sodium)\n", + "2994 Sodium<=Glucose+Heart_rate-1\n", + "2995 Sodium<=-healthcare_coverage+healthcare_expenses\n", + "2996 Sodium<=maximum(mean_Sodium,10^Creatinine)\n", + "2997 Sodium<=maximum(Total_Cholesterol,mean_Sodium)\n", + "2998 Sodium<=ceil(mean_Sodium)+procedures_lifetime\n", + "2999 Sodium<=log(mean_Glomerular_filtration_rate_1_73_sq_M_predicted)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3000 Sodium<=log(lifetime_care_plan_length)*medications_lifetime_cost\n", + "3001 Sodium<=maximum(mean_Sodium,e^DALY)\n", + "3002 Sodium<=10^healthcare_expenses-healthcare_coverage\n", + "3003 Sodium<=Respiratory_rate*sqrt(Triglycerides)\n", + "3004 Sodium<=mean_Total_Cholesterol^2/encounters_count\n", + "3005 Sodium<=2*Heart_rate+immunizations_lifetime_cost\n", + "3006 Sodium<=2*Body_Weight-active_care_plans\n", + "3007 Sodium<=log(Globulin__Mass_volume__in_Serum_by_calculation)+mean_Sodium\n", + "3008 Sodium<=(mean_Estimated_Glomerular_Filtration_Rate-1)*active_conditions\n", + "3009 Sodium<=ceil(Microalbumin_Creatinine_Ratio)+mean_Triglycerides\n", + "3010 Sodium>=latitude\n", + "3011 Sodium>=Body_Mass_Index+mean_Diastolic_Blood_Pressure+1\n", + "3012 Sodium>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*encounters_count)\n", + "3013 Sodium>=minimum(mean_Sodium,1/2*Triglycerides)\n", + "3014 Sodium>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Sodium+1\n", + "3015 Sodium>=minimum(mean_Sodium,2*QALY)\n", + "3016 Sodium>=-healthcare_expenses\n", + "3017 Sodium>=mean_Sodium/active_care_plans\n", + "3018 Sodium>=Body_Height-High_Density_Lipoprotein_Cholesterol+1\n", + "3019 Sodium>=minimum(Low_Density_Lipoprotein_Cholesterol,immunizations_lifetime_cost-1)\n", + "3020 Sodium>=healthcare_expenses^longitude\n", + "3021 Sodium>=-healthcare_coverage+mean_Sodium\n", + "3022 Sodium>=lifetime_condition_length-medications_lifetime_cost+1\n", + "3023 Sodium>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Sodium\n", + "3024 Sodium>=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)^Chloride\n", + "3025 Sodium>=mean_Sodium-procedures_lifetime_cost\n", + "3026 Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "3027 Sodium>=-encounters_lifetime_payer_coverage+mean_Sodium\n", + "3028 Sodium>=mean_Sodium^QOLS\n", + "3029 Sodium>=log(lifetime_care_plans)*mean_Sodium/log(10)\n", + "3030 Sodium>=active_care_plan_length+1/2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "3031 Sodium>=minimum(encounters_count,1/2*immunizations_lifetime_cost)\n", + "3032 Sodium>=-Chloride+2*Glucose\n", + "3033 Sodium>=minimum(mean_Sodium,1/2*lifetime_care_plan_length)\n", + "3034 Sodium>=DALY*log(active_condition_length)\n", + "3035 Sodium>=(mean_Calcium-1)*active_conditions\n", + "3036 Sodium>=minimum(mean_Sodium,2*active_condition_length)\n", + "3037 Sodium>=1/2*imaging_studies_lifetime*mean_Sodium\n", + "3038 Sodium>=minimum(mean_Sodium,e^Potassium)\n", + "3039 Sodium>=minimum(encounters_count,mean_Sodium-1)\n", + "3040 Potassium<=healthcare_expenses\n", + "3041 Potassium<=mean_Potassium+procedures_lifetime\n", + "3042 Potassium<=maximum(active_conditions,mean_Potassium)\n", + "3043 Potassium<=DALY*Respiratory_rate\n", + "3044 Potassium<=e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime_cost\n", + "3045 Potassium<=maximum(mean_Potassium,1/2*DALY)\n", + "3046 Potassium<=mean_Potassium/QOLS\n", + "3047 Potassium<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3048 Potassium<=mean_Potassium^active_care_plans\n", + "3049 Potassium<=maximum(Respiratory_rate,mean_Potassium)\n", + "3050 Potassium<=maximum(DALY,mean_Potassium)\n", + "3051 Potassium<=-healthcare_coverage+healthcare_expenses\n", + "3052 Potassium<=(healthcare_expenses-1)/encounters_lifetime_total_cost\n", + "3053 Potassium<=healthcare_coverage+mean_Potassium\n", + "3054 Potassium<=maximum(Triglycerides,mean_Potassium)\n", + "3055 Potassium<=(age-1)/procedures_lifetime\n", + "3056 Potassium<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/device_lifetime_length)\n", + "3057 Potassium<=log(2*Diastolic_Blood_Pressure)\n", + "3058 Potassium<=1/2*sqrt(mean_Chloride)\n", + "3059 Potassium<=encounters_lifetime_payer_coverage+mean_Potassium\n", + "3060 Potassium<=10^healthcare_expenses-healthcare_coverage\n", + "3061 Potassium<=2*QOLS+mean_Potassium\n", + "3062 Potassium<=Diastolic_Blood_Pressure^2/medications_lifetime\n", + "3063 Potassium<=minimum(healthcare_expenses,pH_of_Urine_by_Test_strip-1)\n", + "3064 Potassium<=sqrt(encounters_lifetime_perc_covered)+mean_Potassium\n", + "3065 Potassium<=floor(mean_Potassium)+mean_Creatinine\n", + "3066 Potassium<=2*Urea_Nitrogen-mean_Urea_Nitrogen\n", + "3067 Potassium<=minimum(healthcare_expenses,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "3068 Potassium<=log(Albumin__Mass_volume__in_Serum,Plasma)^active_conditions\n", + "3069 Potassium>=longitude\n", + "3070 Potassium>=mean_Potassium-procedures_lifetime\n", + "3071 Potassium>=floor(sqrt(Urea_Nitrogen))\n", + "3072 Potassium>=log(Globulin__Mass_volume__in_Serum_by_calculation)*mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3073 Potassium>=sqrt(DALY)-1\n", + "3074 Potassium>=-healthcare_expenses\n", + "3075 Potassium>=mean_Potassium^QOLS\n", + "3076 Potassium>=2*mean_Diastolic_Blood_Pressure/mean_High_Density_Lipoprotein_Cholesterol\n", + "3077 Potassium>=sqrt(healthcare_coverage)/mean_Heart_rate\n", + "3078 Potassium>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,mean_Potassium)\n", + "3079 Potassium>=log(Microalbumin_Creatinine_Ratio)^QOLS\n", + "3080 Potassium>=sqrt(DALY)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3081 Potassium>=1/2*active_care_plans+1/2\n", + "3082 Potassium>=(medications_active-1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3083 Potassium>=Albumin__Mass_volume__in_Serum,Plasma-1\n", + "3084 Potassium>=healthcare_expenses^longitude\n", + "3085 Potassium>=mean_Potassium/active_care_plans\n", + "3086 Potassium>=Creatinine-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "3087 Potassium>=(encounters_count+1)/age\n", + "3088 Potassium>=(mean_Microalbumin_Creatinine_Ratio+1)/mean_High_Density_Lipoprotein_Cholesterol\n", + "3089 Potassium>=2*Heart_rate/medications_lifetime_cost\n", + "3090 Potassium>=(10^healthcare_expenses)^longitude\n", + "3091 Potassium>=maximum(mean_Erythrocytes____volume__in_Blood_by_Automated_count,-healthcare_expenses)\n", + "3092 Potassium>=log(healthcare_coverage)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3093 Potassium>=-Creatinine+medications_active\n", + "3094 Potassium>=-encounters_lifetime_payer_coverage+mean_Potassium\n", + "3095 Potassium>=log(immunizations_lifetime_cost)*medications_lifetime_perc_covered\n", + "3096 Potassium>=minimum(mean_Potassium,10^imaging_studies_lifetime)\n", + "3097 Potassium>=minimum(mean_Potassium,log(active_care_plan_length))\n", + "3098 Potassium>=minimum(mean_Creatinine,1/medications_lifetime_perc_covered)\n", + "3099 Potassium>=-healthcare_coverage+mean_Potassium\n", + "3100 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "3101 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3102 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "3103 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_conditions,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3104 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-healthcare_coverage+healthcare_expenses\n", + "3105 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/healthcare_expenses+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3106 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Potassium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3107 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3108 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=encounters_lifetime_payer_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3109 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered\n", + "3110 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "3111 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Urea_Nitrogen\n", + "3112 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/imaging_studies_lifetime\n", + "3113 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(medications_lifetime,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3114 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "3115 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,active_care_plans^2)\n", + "3116 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(DALY,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3117 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3118 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Triglycerides,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3119 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=10^healthcare_expenses-healthcare_coverage\n", + "3120 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=floor(mean_Urea_Nitrogen)-mean_Creatinine\n", + "3121 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/immunizations_lifetime)\n", + "3122 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,log(Microalbumin_Creatinine_Ratio))\n", + "3123 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "3124 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3125 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Potassium\n", + "3126 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(active_care_plans,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3127 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "3128 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^QOLS\n", + "3129 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(lifetime_care_plans,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3130 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "3131 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-encounters_lifetime_payer_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3132 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_coverage+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3133 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/encounters_lifetime_perc_covered)\n", + "3134 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3135 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-immunizations_lifetime+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3136 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,active_care_plans^2)\n", + "3137 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "3138 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(procedures_lifetime,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3139 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "3140 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(DALY-1)/medications_lifetime_length\n", + "3141 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "3142 Glucose<=healthcare_expenses\n", + "3143 Glucose<=maximum(lifetime_condition_length,mean_Glucose)\n", + "3144 Glucose<=mean_Glucose+procedures_lifetime_cost\n", + "3145 Glucose<=mean_Glucose/QOLS\n", + "3146 Glucose<=Calcium*floor(mean_Respiratory_rate)\n", + "3147 Glucose<=1/2*Low_Density_Lipoprotein_Cholesterol+medications_lifetime_cost\n", + "3148 Glucose<=log(medications_lifetime_cost)/log(10)+mean_Systolic_Blood_Pressure\n", + "3149 Glucose<=maximum(medications_lifetime_dispenses,mean_Glucose)\n", + "3150 Glucose<=2*mean_Creatinine*mean_Estimated_Glomerular_Filtration_Rate\n", + "3151 Glucose<=-healthcare_coverage+healthcare_expenses\n", + "3152 Glucose<=healthcare_coverage+mean_Glucose\n", + "3153 Glucose<=2*mean_Total_Cholesterol/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3154 Glucose<=maximum(Body_Height,mean_Glucose)\n", + "3155 Glucose<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Triglycerides\n", + "3156 Glucose<=mean_Glucose^active_care_plans\n", + "3157 Glucose<=Respiratory_rate+mean_Glucose+1\n", + "3158 Glucose<=maximum(Triglycerides,mean_Glucose)\n", + "3159 Glucose<=maximum(mean_Glucose,1/imaging_studies_lifetime)\n", + "3160 Glucose<=1/2*Body_Height/medications_lifetime_perc_covered\n", + "3161 Glucose<=1/Globulin__Mass_volume__in_Serum_by_calculation+Chloride\n", + "3162 Glucose<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+Triglycerides-1\n", + "3163 Glucose<=maximum(mean_Glucose,e^DALY)\n", + "3164 Glucose<=10^healthcare_expenses-healthcare_coverage\n", + "3165 Glucose<=Diastolic_Blood_Pressure+High_Density_Lipoprotein_Cholesterol-1\n", + "3166 Glucose<=10^medications_active*mean_Glucose\n", + "3167 Glucose<=1/2*Estimated_Glomerular_Filtration_Rate*Respiratory_rate\n", + "3168 Glucose<=log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)+mean_Glucose\n", + "3169 Glucose<=2*mean_Carbon_Dioxide+mean_Heart_rate\n", + "3170 Glucose>=latitude\n", + "3171 Glucose>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Glucose)\n", + "3172 Glucose>=minimum(Microalbumin_Creatinine_Ratio,ceil(mean_Heart_rate))\n", + "3173 Glucose>=mean_Glucose-procedures_lifetime_cost\n", + "3174 Glucose>=-Potassium+1/2*Systolic_Blood_Pressure\n", + "3175 Glucose>=minimum(mean_Chloride,e^Creatinine)\n", + "3176 Glucose>=-healthcare_expenses\n", + "3177 Glucose>=-encounters_lifetime_payer_coverage+mean_Glucose\n", + "3178 Glucose>=(mean_Creatinine-1)*mean_Carbon_Dioxide\n", + "3179 Glucose>=Low_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered^2\n", + "3180 Glucose>=Carbon_Dioxide+2*device_lifetime_length\n", + "3181 Glucose>=floor(Body_Height)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3182 Glucose>=minimum(mean_Glucose,1/2*Triglycerides)\n", + "3183 Glucose>=healthcare_expenses^longitude\n", + "3184 Glucose>=mean_Glucose/active_care_plans\n", + "3185 Glucose>=mean_Glucose^QOLS\n", + "3186 Glucose>=minimum(mean_Glucose,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3187 Glucose>=mean_Microalbumin_Creatinine_Ratio-mean_Systolic_Blood_Pressure+1\n", + "3188 Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "3189 Glucose>=minimum(mean_Glucose,1/2*lifetime_care_plan_length)\n", + "3190 Glucose>=active_conditions^2-Body_Height\n", + "3191 Glucose>=sqrt(encounters_lifetime_total_cost)-mean_Microalbumin_Creatinine_Ratio\n", + "3192 Glucose>=-healthcare_coverage+mean_Glucose\n", + "3193 Glucose>=minimum(mean_Glucose,sqrt(medications_lifetime_length))\n", + "3194 Glucose>=sqrt(encounters_lifetime_payer_coverage)-mean_Carbon_Dioxide\n", + "3195 Glucose>=encounters_lifetime_perc_covered^2*medications_lifetime\n", + "3196 Glucose>=2*Diastolic_Blood_Pressure-Triglycerides\n", + "3197 Glucose>=Diastolic_Blood_Pressure-medications_lifetime_length\n", + "3198 Chloride<=healthcare_expenses\n", + "3199 Chloride<=maximum(mean_Chloride,e^DALY)\n", + "3200 Chloride<=maximum(Systolic_Blood_Pressure,mean_Chloride)\n", + "3201 Chloride<=DALY+Systolic_Blood_Pressure\n", + "3202 Chloride<=-healthcare_coverage+healthcare_expenses\n", + "3203 Chloride<=log(active_care_plan_length)+mean_Chloride\n", + "3204 Chloride<=mean_Respiratory_rate^2-active_care_plan_length\n", + "3205 Chloride<=healthcare_coverage+mean_Chloride\n", + "3206 Chloride<=sqrt(Potassium)+Systolic_Blood_Pressure\n", + "3207 Chloride<=maximum(lifetime_condition_length,mean_Chloride)\n", + "3208 Chloride<=mean_Chloride+procedures_lifetime_cost\n", + "3209 Chloride<=(Low_Density_Lipoprotein_Cholesterol+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3210 Chloride<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Diastolic_Blood_Pressure\n", + "3211 Chloride<=mean_Chloride^active_care_plans\n", + "3212 Chloride<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Chloride-1\n", + "3213 Chloride<=10^healthcare_expenses-healthcare_coverage\n", + "3214 Chloride<=maximum(Triglycerides,mean_Chloride)\n", + "3215 Chloride<=Estimated_Glomerular_Filtration_Rate*sqrt(Microalbumin_Creatinine_Ratio)\n", + "3216 Chloride<=(Heart_rate-1)/encounters_lifetime_perc_covered\n", + "3217 Chloride<=maximum(mean_Chloride,2*lifetime_care_plan_length)\n", + "3218 Chloride<=Body_Weight*log(QALY)/log(10)\n", + "3219 Chloride<=Estimated_Glomerular_Filtration_Rate+1/2*Total_Cholesterol\n", + "3220 Chloride<=longitude^2/device_lifetime_length\n", + "3221 Chloride<=(Albumin__Mass_volume__in_Serum,Plasma-1)*active_condition_length\n", + "3222 Chloride>=latitude\n", + "3223 Chloride>=mean_Chloride-procedures_lifetime_cost\n", + "3224 Chloride>=2*Triglycerides/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3225 Chloride>=sqrt(QOLS)+mean_Diastolic_Blood_Pressure\n", + "3226 Chloride>=minimum(mean_Chloride,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3227 Chloride>=QALY+device_lifetime_length-1\n", + "3228 Chloride>=mean_Chloride/active_care_plans\n", + "3229 Chloride>=mean_Diastolic_Blood_Pressure^2/Diastolic_Blood_Pressure\n", + "3230 Chloride>=-healthcare_expenses\n", + "3231 Chloride>=mean_Chloride^QOLS\n", + "3232 Chloride>=sqrt(healthcare_coverage)-medications_lifetime_length\n", + "3233 Chloride>=-encounters_lifetime_payer_coverage+mean_Chloride\n", + "3234 Chloride>=-mean_High_Density_Lipoprotein_Cholesterol+mean_Systolic_Blood_Pressure\n", + "3235 Chloride>=-High_Density_Lipoprotein_Cholesterol+1/2*Microalbumin_Creatinine_Ratio\n", + "3236 Chloride>=DALY+1/2*mean_Sodium\n", + "3237 Chloride>=minimum(mean_Chloride,mean_Diastolic_Blood_Pressure)\n", + "3238 Chloride>=DALY+1/2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "3239 Chloride>=healthcare_expenses^longitude\n", + "3240 Chloride>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+ceil(Glucose)\n", + "3241 Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "3242 Chloride>=-healthcare_coverage+mean_Chloride\n", + "3243 Chloride>=1/2*Microalbumin_Creatinine_Ratio-QALY\n", + "3244 Chloride>=Urea_Nitrogen+2*latitude\n", + "3245 Chloride>=Body_Weight*log(procedures_lifetime)/log(10)\n", + "3246 Chloride>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Protein__Mass_volume__in_Serum,Plasma\n", + "3247 Chloride>=(QALY-1)*immunizations_lifetime\n", + "3248 Chloride>=1/2*Triglycerides+mean_Calcium\n", + "3249 Carbon_Dioxide<=healthcare_expenses\n", + "3250 Carbon_Dioxide<=mean_Carbon_Dioxide+procedures_lifetime_cost\n", + "3251 Carbon_Dioxide<=ceil(Body_Mass_Index)\n", + "3252 Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+QOLS\n", + "3253 Carbon_Dioxide<=mean_Carbon_Dioxide/QOLS\n", + "3254 Carbon_Dioxide<=maximum(lifetime_care_plan_length,mean_Carbon_Dioxide)\n", + "3255 Carbon_Dioxide<=mean_Carbon_Dioxide^active_care_plans\n", + "3256 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,DALY^2)\n", + "3257 Carbon_Dioxide<=e^Respiratory_rate/medications_lifetime_length\n", + "3258 Carbon_Dioxide<=-healthcare_coverage+healthcare_expenses\n", + "3259 Carbon_Dioxide<=mean_Estimated_Glomerular_Filtration_Rate^2/procedures_lifetime\n", + "3260 Carbon_Dioxide<=maximum(Heart_rate,mean_Carbon_Dioxide)\n", + "3261 Carbon_Dioxide<=mean_Carbon_Dioxide+mean_Creatinine+1\n", + "3262 Carbon_Dioxide<=maximum(Triglycerides,mean_Carbon_Dioxide)\n", + "3263 Carbon_Dioxide<=minimum(Protein__Mass_volume__in_Serum,Plasma,ceil(mean_Estimated_Glomerular_Filtration_Rate))\n", + "3264 Carbon_Dioxide<=healthcare_coverage+mean_Carbon_Dioxide\n", + "3265 Carbon_Dioxide<=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Microalbumin_Creatinine_Ratio-1)\n", + "3266 Carbon_Dioxide<=-Body_Height+2*Systolic_Blood_Pressure\n", + "3267 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,floor(Estimated_Glomerular_Filtration_Rate))\n", + "3268 Carbon_Dioxide<=2*Heart_rate/Potassium\n", + "3269 Carbon_Dioxide<=10^healthcare_expenses-healthcare_coverage\n", + "3270 Carbon_Dioxide<=log(mean_Respiratory_rate)+mean_Carbon_Dioxide\n", + "3271 Carbon_Dioxide<=lifetime_conditions*log(Estimated_Glomerular_Filtration_Rate)\n", + "3272 Carbon_Dioxide<=longitude^2/mean_Microalbumin_Creatinine_Ratio\n", + "3273 Carbon_Dioxide<=1/2*Estimated_Glomerular_Filtration_Rate*mean_Creatinine\n", + "3274 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,Estimated_Glomerular_Filtration_Rate-1)\n", + "3275 Carbon_Dioxide<=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Body_Mass_Index)\n", + "3276 Carbon_Dioxide>=longitude\n", + "3277 Carbon_Dioxide>=mean_Carbon_Dioxide-procedures_lifetime_cost\n", + "3278 Carbon_Dioxide>=Estimated_Glomerular_Filtration_Rate*medications_lifetime_perc_covered^2\n", + "3279 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,-Triglycerides)\n", + "3280 Carbon_Dioxide>=mean_Carbon_Dioxide^QOLS\n", + "3281 Carbon_Dioxide>=healthcare_expenses^longitude\n", + "3282 Carbon_Dioxide>=QOLS*mean_Carbon_Dioxide\n", + "3283 Carbon_Dioxide>=(-mean_Creatinine)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3284 Carbon_Dioxide>=-healthcare_expenses\n", + "3285 Carbon_Dioxide>=log(Globulin__Mass_volume__in_Serum_by_calculation)^mean_Urea_Nitrogen\n", + "3286 Carbon_Dioxide>=log(lifetime_care_plans)*mean_Carbon_Dioxide/log(10)\n", + "3287 Carbon_Dioxide>=Diastolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "3288 Carbon_Dioxide>=encounters_count-medications_lifetime-1\n", + "3289 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3290 Carbon_Dioxide>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*procedures_lifetime\n", + "3291 Carbon_Dioxide>=(medications_lifetime_dispenses+1)/mean_Systolic_Blood_Pressure\n", + "3292 Carbon_Dioxide>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-medications_active\n", + "3293 Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "3294 Carbon_Dioxide>=minimum(immunizations_lifetime_cost,sqrt(medications_lifetime))\n", + "3295 Carbon_Dioxide>=DALY-mean_Calcium-1\n", + "3296 Carbon_Dioxide>=-encounters_lifetime_payer_coverage+mean_Carbon_Dioxide\n", + "3297 Carbon_Dioxide>=1/2*procedures_lifetime_cost/medications_lifetime_cost\n", + "3298 Carbon_Dioxide>=e^QOLS*procedures_lifetime\n", + "3299 Carbon_Dioxide>=DALY-active_conditions\n", + "3300 Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*lifetime_care_plans\n", + "3301 Carbon_Dioxide>=-healthcare_coverage+mean_Carbon_Dioxide\n", + "3302 Carbon_Dioxide>=mean_Carbon_Dioxide/active_care_plans\n", + "3303 Carbon_Dioxide>=Diastolic_Blood_Pressure-Low_Density_Lipoprotein_Cholesterol\n", + "3304 Carbon_Dioxide>=Estimated_Glomerular_Filtration_Rate/active_conditions\n", + "3305 Total_Cholesterol<=healthcare_expenses\n", + "3306 Total_Cholesterol<=log(mean_Triglycerides)*mean_Chloride/log(10)\n", + "3307 Total_Cholesterol<=mean_Total_Cholesterol+procedures_lifetime_cost\n", + "3308 Total_Cholesterol<=Diastolic_Blood_Pressure+Triglycerides-1\n", + "3309 Total_Cholesterol<=maximum(mean_Total_Cholesterol,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3310 Total_Cholesterol<=encounters_lifetime_payer_coverage+mean_Total_Cholesterol\n", + "3311 Total_Cholesterol<=maximum(mean_Total_Cholesterol,2*Systolic_Blood_Pressure)\n", + "3312 Total_Cholesterol<=maximum(mean_Total_Cholesterol,2*Low_Density_Lipoprotein_Cholesterol)\n", + "3313 Total_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "3314 Total_Cholesterol<=healthcare_coverage+mean_Total_Cholesterol\n", + "3315 Total_Cholesterol<=10^QOLS*mean_Systolic_Blood_Pressure\n", + "3316 Total_Cholesterol<=(QOLS+1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "3317 Total_Cholesterol<=mean_Total_Cholesterol^medications_lifetime\n", + "3318 Total_Cholesterol<=log(mean_High_Density_Lipoprotein_Cholesterol)*mean_Sodium/log(10)\n", + "3319 Total_Cholesterol<=e^mean_Respiratory_rate/medications_lifetime_dispenses\n", + "3320 Total_Cholesterol<=active_care_plan_length+mean_Total_Cholesterol\n", + "3321 Total_Cholesterol<=log(mean_Chloride)*mean_Systolic_Blood_Pressure/log(10)\n", + "3322 Total_Cholesterol<=mean_Total_Cholesterol/imaging_studies_lifetime\n", + "3323 Total_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "3324 Total_Cholesterol<=1/2*Microalbumin_Creatinine_Ratio+mean_Total_Cholesterol\n", + "3325 Total_Cholesterol<=Heart_rate*sqrt(mean_Respiratory_rate)\n", + "3326 Total_Cholesterol<=Systolic_Blood_Pressure+ceil(mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3327 Total_Cholesterol<=maximum(mean_Total_Cholesterol,e^DALY)\n", + "3328 Total_Cholesterol<=mean_Systolic_Blood_Pressure^2/QALY\n", + "3329 Total_Cholesterol>=latitude\n", + "3330 Total_Cholesterol>=-active_care_plan_length+mean_Total_Cholesterol\n", + "3331 Total_Cholesterol>=minimum(mean_Total_Cholesterol,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3332 Total_Cholesterol>=mean_Total_Cholesterol-procedures_lifetime_cost\n", + "3333 Total_Cholesterol>=encounters_count-mean_Systolic_Blood_Pressure-1\n", + "3334 Total_Cholesterol>=2*active_care_plans+mean_Microalbumin_Creatinine_Ratio\n", + "3335 Total_Cholesterol>=Chloride*ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3336 Total_Cholesterol>=minimum(Body_Height,1/medications_active)\n", + "3337 Total_Cholesterol>=-healthcare_expenses\n", + "3338 Total_Cholesterol>=(10^mean_Creatinine)^encounters_lifetime_perc_covered\n", + "3339 Total_Cholesterol>=Low_Density_Lipoprotein_Cholesterol+log(medications_lifetime)\n", + "3340 Total_Cholesterol>=minimum(immunizations_lifetime_cost,mean_Total_Cholesterol)\n", + "3341 Total_Cholesterol>=floor(mean_Microalbumin_Creatinine_Ratio)+procedures_lifetime\n", + "3342 Total_Cholesterol>=Body_Mass_Index*sqrt(DALY)\n", + "3343 Total_Cholesterol>=healthcare_expenses^longitude\n", + "3344 Total_Cholesterol>=mean_Total_Cholesterol^imaging_studies_lifetime\n", + "3345 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/2*Respiratory_rate)\n", + "3346 Total_Cholesterol>=mean_Total_Cholesterol/medications_lifetime\n", + "3347 Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "3348 Total_Cholesterol>=1/2*medications_lifetime_cost/medications_lifetime_dispenses\n", + "3349 Total_Cholesterol>=ceil(DALY)+mean_Systolic_Blood_Pressure\n", + "3350 Total_Cholesterol>=2*encounters_lifetime_payer_coverage/mean_Sodium\n", + "3351 Total_Cholesterol>=2*Low_Density_Lipoprotein_Cholesterol*encounters_lifetime_perc_covered\n", + "3352 Total_Cholesterol>=-healthcare_coverage+mean_Total_Cholesterol\n", + "3353 Total_Cholesterol>=-encounters_lifetime_payer_coverage+mean_Total_Cholesterol\n", + "3354 Urea_Nitrogen<=healthcare_expenses\n", + "3355 Urea_Nitrogen<=(Estimated_Glomerular_Filtration_Rate+1)/immunizations_lifetime\n", + "3356 Urea_Nitrogen<=mean_Urea_Nitrogen+procedures_lifetime_cost\n", + "3357 Urea_Nitrogen<=Respiratory_rate*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "3358 Urea_Nitrogen<=Glomerular_filtration_rate_1_73_sq_M_predicted-active_care_plans\n", + "3359 Urea_Nitrogen<=medications_lifetime_cost^2/Sodium\n", + "3360 Urea_Nitrogen<=maximum(Triglycerides,mean_Urea_Nitrogen)\n", + "3361 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,2*DALY)\n", + "3362 Urea_Nitrogen<=maximum(Heart_rate,mean_Urea_Nitrogen)\n", + "3363 Urea_Nitrogen<=Estimated_Glomerular_Filtration_Rate-QOLS+1\n", + "3364 Urea_Nitrogen<=-healthcare_coverage+healthcare_expenses\n", + "3365 Urea_Nitrogen<=healthcare_coverage+mean_Urea_Nitrogen\n", + "3366 Urea_Nitrogen<=mean_Urea_Nitrogen^active_care_plans\n", + "3367 Urea_Nitrogen<=e^Potassium/medications_active\n", + "3368 Urea_Nitrogen<=maximum(active_care_plan_length,mean_Urea_Nitrogen)\n", + "3369 Urea_Nitrogen<=2*Creatinine+mean_Urea_Nitrogen\n", + "3370 Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(healthcare_expenses)/log(10)\n", + "3371 Urea_Nitrogen<=1/2*Triglycerides/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3372 Urea_Nitrogen<=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime+1\n", + "3373 Urea_Nitrogen<=10^healthcare_expenses-healthcare_coverage\n", + "3374 Urea_Nitrogen<=e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Urea_Nitrogen\n", + "3375 Urea_Nitrogen<=2*Respiratory_rate-procedures_lifetime\n", + "3376 Urea_Nitrogen<=2*mean_Low_Density_Lipoprotein_Cholesterol/active_conditions\n", + "3377 Urea_Nitrogen<=-Glucose+2*Heart_rate\n", + "3378 Urea_Nitrogen<=floor(Total_Cholesterol)-mean_Systolic_Blood_Pressure\n", + "3379 Urea_Nitrogen<=maximum(encounters_count,mean_Urea_Nitrogen)\n", + "3380 Urea_Nitrogen<=maximum(medications_lifetime,mean_Urea_Nitrogen)\n", + "3381 Urea_Nitrogen<=-Glucose+Sodium\n", + "3382 Urea_Nitrogen>=longitude\n", + "3383 Urea_Nitrogen>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(mean_Urea_Nitrogen)\n", + "3384 Urea_Nitrogen>=mean_Urea_Nitrogen-procedures_lifetime_cost\n", + "3385 Urea_Nitrogen>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Urea_Nitrogen)\n", + "3386 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,-Triglycerides)\n", + "3387 Urea_Nitrogen>=mean_Carbon_Dioxide^2/mean_Heart_rate\n", + "3388 Urea_Nitrogen>=mean_Urea_Nitrogen^QOLS\n", + "3389 Urea_Nitrogen>=1/2*sqrt(medications_lifetime)\n", + "3390 Urea_Nitrogen>=(active_conditions-1)/Creatinine\n", + "3391 Urea_Nitrogen>=10^Globulin__Mass_volume__in_Serum_by_calculation/Total_Cholesterol\n", + "3392 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "3393 Urea_Nitrogen>=-healthcare_expenses\n", + "3394 Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "3395 Urea_Nitrogen>=sqrt(procedures_lifetime)+Creatinine\n", + "3396 Urea_Nitrogen>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3397 Urea_Nitrogen>=(log(healthcare_coverage)/log(10))^immunizations_lifetime\n", + "3398 Urea_Nitrogen>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions+1\n", + "3399 Urea_Nitrogen>=(mean_MCHC__Mass_volume__by_Automated_count+1)^medications_lifetime_perc_covered\n", + "3400 Urea_Nitrogen>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "3401 Urea_Nitrogen>=-healthcare_coverage+mean_Urea_Nitrogen\n", + "3402 Urea_Nitrogen>=DALY-Estimated_Glomerular_Filtration_Rate+1\n", + "3403 Urea_Nitrogen>=healthcare_expenses^longitude\n", + "3404 Urea_Nitrogen>=minimum(Respiratory_rate,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3405 Urea_Nitrogen>=2*medications_lifetime/mean_Low_Density_Lipoprotein_Cholesterol\n", + "3406 Urea_Nitrogen>=Calcium-procedures_lifetime\n", + "3407 Urea_Nitrogen>=mean_Urea_Nitrogen/active_care_plans\n", + "3408 Urea_Nitrogen>=-encounters_lifetime_payer_coverage+mean_Urea_Nitrogen\n", + "3409 Calcium<=healthcare_expenses\n", + "3410 Calcium<=active_conditions+healthcare_coverage\n", + "3411 Calcium<=mean_Calcium^active_care_plans\n", + "3412 Calcium<=maximum(active_conditions,ceil(mean_Calcium))\n", + "3413 Calcium<=maximum(encounters_count,mean_Calcium)\n", + "3414 Calcium<=minimum(healthcare_expenses,sqrt(MCV__Entitic_volume__by_Automated_count))\n", + "3415 Calcium<=encounters_lifetime_payer_coverage+mean_Calcium\n", + "3416 Calcium<=ceil(mean_Urea_Nitrogen+1)\n", + "3417 Calcium<=10^medications_lifetime_perc_covered*mean_Calcium\n", + "3418 Calcium<=2*Sodium/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3419 Calcium<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Potassium\n", + "3420 Calcium<=maximum(DALY,mean_Calcium)\n", + "3421 Calcium<=-healthcare_coverage+healthcare_expenses\n", + "3422 Calcium<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Calcium\n", + "3423 Calcium<=sqrt(Body_Height)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3424 Calcium<=mean_Calcium+1/2*procedures_lifetime\n", + "3425 Calcium<=mean_Calcium+procedures_lifetime\n", + "3426 Calcium<=Heart_rate/active_care_plans\n", + "3427 Calcium<=mean_Calcium/QOLS\n", + "3428 Calcium<=maximum(mean_Calcium,e^active_care_plans)\n", + "3429 Calcium<=maximum(Respiratory_rate,mean_Calcium)\n", + "3430 Calcium<=Urea_Nitrogen+procedures_lifetime\n", + "3431 Calcium<=2*Albumin__Mass_volume__in_Serum,Plasma+2\n", + "3432 Calcium<=maximum(medications_lifetime,mean_Calcium)\n", + "3433 Calcium<=10^healthcare_expenses-healthcare_coverage\n", + "3434 Calcium<=2*mean_Carbon_Dioxide/Albumin__Mass_volume__in_Serum,Plasma\n", + "3435 Calcium>=longitude\n", + "3436 Calcium>=log(encounters_lifetime_perc_covered)+mean_Calcium\n", + "3437 Calcium>=minimum(mean_Calcium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3438 Calcium>=active_conditions-healthcare_coverage\n", + "3439 Calcium>=mean_Calcium/active_care_plans\n", + "3440 Calcium>=-Creatinine+ceil(mean_Calcium)\n", + "3441 Calcium>=log(medications_lifetime)^2/log(10)^2\n", + "3442 Calcium>=floor(log(encounters_lifetime_payer_coverage))\n", + "3443 Calcium>=2*active_conditions-medications_lifetime_length\n", + "3444 Calcium>=1/2*Creatinine*Globulin__Mass_volume__in_Serum_by_calculation\n", + "3445 Calcium>=-healthcare_expenses\n", + "3446 Calcium>=healthcare_expenses^longitude\n", + "3447 Calcium>=Respiratory_rate-active_conditions\n", + "3448 Calcium>=ceil(age)-mean_Heart_rate\n", + "3449 Calcium>=mean_Calcium-procedures_lifetime\n", + "3450 Calcium>=-DALY+lifetime_care_plans\n", + "3451 Calcium>=2*active_conditions/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3452 Calcium>=device_lifetime_length^QOLS\n", + "3453 Calcium>=log(medications_lifetime)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3454 Calcium>=minimum(mean_Calcium,sqrt(QALY))\n", + "3455 Calcium>=sqrt(active_conditions)+Potassium\n", + "3456 Calcium>=floor(Creatinine)^immunizations_lifetime\n", + "3457 Calcium>=ceil(mean_Low_Density_Lipoprotein_Cholesterol)/Estimated_Glomerular_Filtration_Rate\n", + "3458 Calcium>=mean_Calcium^QOLS\n", + "3459 Calcium>=minimum(device_lifetime_length,mean_Calcium)\n", + "3460 Calcium>=floor(mean_Calcium)-immunizations_lifetime\n", + "3461 Calcium>=(10^healthcare_expenses)^longitude\n", + "3462 Calcium>=log(High_Density_Lipoprotein_Cholesterol)+mean_Creatinine\n", + "3463 Calcium>=-encounters_lifetime_payer_coverage+mean_Calcium\n", + "3464 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "3465 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3466 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(encounters_count,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3467 Glomerular_filtration_rate_1_73_sq_M_predicted<=(10^healthcare_expenses)^healthcare_coverage\n", + "3468 Glomerular_filtration_rate_1_73_sq_M_predicted<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Glomerular_filtration_rate_1_73_sq_M_predicted/log(10)\n", + "3469 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses^healthcare_coverage\n", + "3470 Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "3471 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3472 Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "3473 Glomerular_filtration_rate_1_73_sq_M_predicted>=DALY+2\n", + "3474 Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "3475 Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "3476 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "3477 Globulin__Mass_volume__in_Serum_by_calculation<=mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3478 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses^healthcare_coverage\n", + "3479 Globulin__Mass_volume__in_Serum_by_calculation<=(10^healthcare_expenses)^healthcare_coverage\n", + "3480 Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "3481 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3482 Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "3483 Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "3484 Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "3485 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3486 Albumin__Mass_volume__in_Serum,Plasma<=mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3487 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3488 Albumin__Mass_volume__in_Serum,Plasma<=QOLS*ceil(mean_Urea_Nitrogen)\n", + "3489 Albumin__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3490 Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "3491 Albumin__Mass_volume__in_Serum,Plasma>=minimum(active_care_plans,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "3492 Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3493 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma/medications_active\n", + "3494 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "3495 Albumin__Mass_volume__in_Serum,Plasma>=minimum(lifetime_care_plans,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "3496 Albumin__Mass_volume__in_Serum,Plasma>=2*Bilirubin_total__Mass_volume__in_Serum,Plasma+2\n", + "3497 Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3498 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma-medications_lifetime_perc_covered\n", + "3499 Albumin__Mass_volume__in_Serum,Plasma>=minimum(mean_Albumin__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "3500 Albumin__Mass_volume__in_Serum,Plasma>=1/2*medications_active\n", + "3501 Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "3502 Albumin__Mass_volume__in_Serum,Plasma>=DALY-medications_lifetime\n", + "3503 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3504 Protein__Mass_volume__in_Serum,Plasma<=mean_Protein__Mass_volume__in_Serum,Plasma\n", + "3505 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3506 Protein__Mass_volume__in_Serum,Plasma<=QALY+ceil(latitude)\n", + "3507 Protein__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3508 Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "3509 Protein__Mass_volume__in_Serum,Plasma>=minimum(lifetime_care_plan_length,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "3510 Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3511 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "3512 Protein__Mass_volume__in_Serum,Plasma>=minimum(age,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "3513 Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "3514 Protein__Mass_volume__in_Serum,Plasma>=Urea_Nitrogen*ceil(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3515 Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3516 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3517 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3518 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime+1\n", + "3519 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3520 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3521 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "3522 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "3523 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^immunizations_lifetime\n", + "3524 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=log(Low_Density_Lipoprotein_Cholesterol)*procedures_lifetime/log(10)\n", + "3525 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3526 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Carbon_Dioxide,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3527 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-QOLS+active_conditions\n", + "3528 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3529 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "3530 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/active_care_plans\n", + "3531 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "3532 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3533 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3534 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Carbon_Dioxide\n", + "3535 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^active_care_plans\n", + "3536 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3537 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3538 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "3539 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "3540 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3541 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(medications_lifetime,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3542 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Heart_rate,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3543 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3544 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3545 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "3546 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3547 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3548 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=e^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma*lifetime_conditions\n", + "3549 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3550 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "3551 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3552 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3553 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3554 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3555 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3556 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "3557 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-floor(age)+mean_Glucose\n", + "3558 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^immunizations_lifetime\n", + "3559 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(latitude,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3560 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "3561 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3562 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(active_care_plan_length,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3563 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/active_care_plans\n", + "3564 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3565 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "3566 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "3567 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "3568 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "3569 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+medications_lifetime_perc_covered\n", + "3570 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "3571 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma/immunizations_lifetime\n", + "3572 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3573 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma*medications_active\n", + "3574 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "3575 Bilirubin_total__Mass_volume__in_Serum,Plasma<=10^procedures_lifetime\n", + "3576 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Respiratory_rate,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3577 Bilirubin_total__Mass_volume__in_Serum,Plasma<=1/2*Albumin__Mass_volume__in_Serum,Plasma-1\n", + "3578 Bilirubin_total__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "3579 Bilirubin_total__Mass_volume__in_Serum,Plasma<=QOLS/immunizations_lifetime\n", + "3580 Bilirubin_total__Mass_volume__in_Serum,Plasma<=active_care_plans*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3581 Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "3582 Bilirubin_total__Mass_volume__in_Serum,Plasma>=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3583 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "3584 Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "3585 Bilirubin_total__Mass_volume__in_Serum,Plasma>=2*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma-1\n", + "3586 Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "3587 Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "3588 Estimated_Glomerular_Filtration_Rate<=Carbon_Dioxide*active_conditions\n", + "3589 Estimated_Glomerular_Filtration_Rate<=Triglycerides-e^mean_Creatinine\n", + "3590 Estimated_Glomerular_Filtration_Rate<=ceil(mean_Estimated_Glomerular_Filtration_Rate)+mean_Potassium\n", + "3591 Estimated_Glomerular_Filtration_Rate<=healthcare_coverage+mean_Estimated_Glomerular_Filtration_Rate\n", + "3592 Estimated_Glomerular_Filtration_Rate<=Heart_rate*log(10)/log(active_conditions)\n", + "3593 Estimated_Glomerular_Filtration_Rate<=Carbon_Dioxide*log(10)/log(Creatinine)\n", + "3594 Estimated_Glomerular_Filtration_Rate<=-healthcare_coverage+healthcare_expenses\n", + "3595 Estimated_Glomerular_Filtration_Rate<=e^Urea_Nitrogen/Chloride\n", + "3596 Estimated_Glomerular_Filtration_Rate<=mean_Estimated_Glomerular_Filtration_Rate+procedures_lifetime_cost\n", + "3597 Estimated_Glomerular_Filtration_Rate<=10^healthcare_expenses-healthcare_coverage\n", + "3598 Estimated_Glomerular_Filtration_Rate<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Estimated_Glomerular_Filtration_Rate\n", + "3599 Estimated_Glomerular_Filtration_Rate<=(log(mean_Urea_Nitrogen)/log(10))^mean_Systolic_Blood_Pressure\n", + "3600 Estimated_Glomerular_Filtration_Rate<=maximum(age,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3601 Estimated_Glomerular_Filtration_Rate<=maximum(mean_Estimated_Glomerular_Filtration_Rate,2*Body_Mass_Index)\n", + "3602 Estimated_Glomerular_Filtration_Rate<=1/device_lifetime_length+mean_Estimated_Glomerular_Filtration_Rate\n", + "3603 Estimated_Glomerular_Filtration_Rate<=10^immunizations_lifetime+mean_Estimated_Glomerular_Filtration_Rate\n", + "3604 Estimated_Glomerular_Filtration_Rate<=log(mean_Systolic_Blood_Pressure)+mean_Estimated_Glomerular_Filtration_Rate\n", + "3605 Estimated_Glomerular_Filtration_Rate<=maximum(mean_Estimated_Glomerular_Filtration_Rate,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3606 Estimated_Glomerular_Filtration_Rate>=longitude\n", + "3607 Estimated_Glomerular_Filtration_Rate>=QOLS+Urea_Nitrogen-1\n", + "3608 Estimated_Glomerular_Filtration_Rate>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/mean_Total_Cholesterol\n", + "3609 Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "3610 Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "3611 Estimated_Glomerular_Filtration_Rate>=ceil(latitude)/active_care_plans\n", + "3612 Estimated_Glomerular_Filtration_Rate>=mean_Estimated_Glomerular_Filtration_Rate/active_care_plans\n", + "3613 Estimated_Glomerular_Filtration_Rate>=minimum(active_conditions,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3614 Estimated_Glomerular_Filtration_Rate>=(Glucose+1)^encounters_lifetime_perc_covered\n", + "3615 Estimated_Glomerular_Filtration_Rate>=-encounters_lifetime_payer_coverage+mean_Estimated_Glomerular_Filtration_Rate\n", + "3616 Estimated_Glomerular_Filtration_Rate>=Diastolic_Blood_Pressure-Low_Density_Lipoprotein_Cholesterol+1\n", + "3617 Estimated_Glomerular_Filtration_Rate>=active_care_plan_length^2/mean_Total_Cholesterol\n", + "3618 Estimated_Glomerular_Filtration_Rate>=immunizations_lifetime*log(healthcare_expenses)\n", + "3619 Estimated_Glomerular_Filtration_Rate>=Systolic_Blood_Pressure-mean_Sodium-1\n", + "3620 Estimated_Glomerular_Filtration_Rate>=-healthcare_coverage+mean_Estimated_Glomerular_Filtration_Rate\n", + "3621 Estimated_Glomerular_Filtration_Rate>=2*medications_lifetime/Microalbumin_Creatinine_Ratio\n", + "3622 Estimated_Glomerular_Filtration_Rate>=Body_Mass_Index-lifetime_conditions-1\n", + "3623 Estimated_Glomerular_Filtration_Rate>=Triglycerides-mean_Triglycerides+1\n", + "3624 Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "3625 Estimated_Glomerular_Filtration_Rate>=minimum(mean_Estimated_Glomerular_Filtration_Rate,1/medications_active)\n", + "3626 Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "3627 Microalbumin_Creatinine_Ratio<=-mean_Sodium+2*mean_Total_Cholesterol\n", + "3628 Microalbumin_Creatinine_Ratio<=Body_Mass_Index^2-lifetime_condition_length\n", + "3629 Microalbumin_Creatinine_Ratio<=-healthcare_coverage+healthcare_expenses\n", + "3630 Microalbumin_Creatinine_Ratio<=e^Potassium*mean_Potassium\n", + "3631 Microalbumin_Creatinine_Ratio<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*latitude\n", + "3632 Microalbumin_Creatinine_Ratio<=Carbon_Dioxide+1/2*medications_lifetime_dispenses\n", + "3633 Microalbumin_Creatinine_Ratio<=healthcare_coverage+mean_Microalbumin_Creatinine_Ratio\n", + "3634 Microalbumin_Creatinine_Ratio<=mean_Microalbumin_Creatinine_Ratio^active_care_plans\n", + "3635 Microalbumin_Creatinine_Ratio<=2*lifetime_care_plan_length/QOLS\n", + "3636 Microalbumin_Creatinine_Ratio<=mean_Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "3637 Microalbumin_Creatinine_Ratio<=encounters_lifetime_payer_coverage+mean_Microalbumin_Creatinine_Ratio\n", + "3638 Microalbumin_Creatinine_Ratio<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-Body_Height\n", + "3639 Microalbumin_Creatinine_Ratio<=Body_Weight^e^encounters_lifetime_perc_covered\n", + "3640 Microalbumin_Creatinine_Ratio<=sqrt(Chloride)^Creatinine\n", + "3641 Microalbumin_Creatinine_Ratio<=mean_Carbon_Dioxide^2-lifetime_condition_length\n", + "3642 Microalbumin_Creatinine_Ratio<=2*QALY+Total_Cholesterol\n", + "3643 Microalbumin_Creatinine_Ratio<=mean_Urea_Nitrogen^2+Chloride\n", + "3644 Microalbumin_Creatinine_Ratio<=10^healthcare_expenses-healthcare_coverage\n", + "3645 Microalbumin_Creatinine_Ratio<=(1/encounters_lifetime_perc_covered)^mean_Urea_Nitrogen\n", + "3646 Microalbumin_Creatinine_Ratio>=longitude\n", + "3647 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio/medications_lifetime\n", + "3648 Microalbumin_Creatinine_Ratio>=medications_lifetime/(Carbon_Dioxide-1)\n", + "3649 Microalbumin_Creatinine_Ratio>=-healthcare_coverage+mean_Microalbumin_Creatinine_Ratio\n", + "3650 Microalbumin_Creatinine_Ratio>=(QOLS+1)^procedures_lifetime\n", + "3651 Microalbumin_Creatinine_Ratio>=e^Creatinine-mean_Low_Density_Lipoprotein_Cholesterol\n", + "3652 Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "3653 Microalbumin_Creatinine_Ratio>=device_lifetime_length-1/2*latitude\n", + "3654 Microalbumin_Creatinine_Ratio>=minimum(active_conditions,mean_Microalbumin_Creatinine_Ratio)\n", + "3655 Microalbumin_Creatinine_Ratio>=-Urea_Nitrogen+2*active_conditions\n", + "3656 Microalbumin_Creatinine_Ratio>=-Heart_rate+mean_Microalbumin_Creatinine_Ratio+1\n", + "3657 Microalbumin_Creatinine_Ratio>=-immunizations_lifetime_cost+mean_Microalbumin_Creatinine_Ratio+1\n", + "3658 Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "3659 Microalbumin_Creatinine_Ratio>=ceil(mean_Microalbumin_Creatinine_Ratio)-mean_Heart_rate\n", + "3660 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio-procedures_lifetime_cost\n", + "3661 Microalbumin_Creatinine_Ratio>=(1/2*immunizations_lifetime_cost)^medications_lifetime_perc_covered\n", + "3662 Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "3663 Microalbumin_Creatinine_Ratio>=(log(mean_Systolic_Blood_Pressure)/log(10))^mean_Creatinine\n", + "3664 Microalbumin_Creatinine_Ratio>=sqrt(encounters_count)^immunizations_lifetime\n", + "3665 mean_Body_Height<=healthcare_expenses\n", + "3666 mean_Body_Height<=Body_Height\n", + "3667 mean_Body_Height<=-healthcare_coverage+healthcare_expenses\n", + "3668 mean_Body_Height>=latitude\n", + "3669 mean_Body_Height>=Body_Height\n", + "3670 mean_Body_Height>=-healthcare_expenses\n", + "3671 mean_Body_Height>=healthcare_expenses^longitude\n", + "3672 mean_Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "3673 mean_Body_Mass_Index<=healthcare_expenses\n", + "3674 mean_Body_Mass_Index<=ceil(Body_Mass_Index)\n", + "3675 mean_Body_Mass_Index<=-healthcare_coverage+healthcare_expenses\n", + "3676 mean_Body_Mass_Index<=1/healthcare_expenses+Body_Mass_Index\n", + "3677 mean_Body_Mass_Index<=Body_Mass_Index+active_care_plans\n", + "3678 mean_Body_Mass_Index<=Body_Mass_Index+healthcare_coverage\n", + "3679 mean_Body_Mass_Index<=maximum(age,Body_Mass_Index)\n", + "3680 mean_Body_Mass_Index<=maximum(active_care_plan_length,Body_Mass_Index)\n", + "3681 mean_Body_Mass_Index<=maximum(active_condition_length,Body_Mass_Index)\n", + "3682 mean_Body_Mass_Index<=maximum(encounters_count,Body_Mass_Index)\n", + "3683 mean_Body_Mass_Index<=maximum(Body_Mass_Index,mean_Microalbumin_Creatinine_Ratio)\n", + "3684 mean_Body_Mass_Index<=Body_Mass_Index+medications_lifetime_perc_covered\n", + "3685 mean_Body_Mass_Index<=Body_Mass_Index+procedures_lifetime\n", + "3686 mean_Body_Mass_Index<=Body_Mass_Index+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3687 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*age)\n", + "3688 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Microalbumin_Creatinine_Ratio)\n", + "3689 mean_Body_Mass_Index<=maximum(Body_Mass_Index,10^active_care_plans)\n", + "3690 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*lifetime_care_plan_length)\n", + "3691 mean_Body_Mass_Index<=Estimated_Glomerular_Filtration_Rate+lifetime_conditions+1\n", + "3692 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*encounters_count)\n", + "3693 mean_Body_Mass_Index<=maximum(Body_Mass_Index,10^procedures_lifetime)\n", + "3694 mean_Body_Mass_Index<=maximum(Body_Mass_Index,e^procedures_lifetime)\n", + "3695 mean_Body_Mass_Index>=longitude\n", + "3696 mean_Body_Mass_Index>=floor(Body_Mass_Index)\n", + "3697 mean_Body_Mass_Index>=healthcare_expenses^longitude\n", + "3698 mean_Body_Mass_Index>=Body_Mass_Index-procedures_lifetime\n", + "3699 mean_Body_Mass_Index>=Body_Mass_Index-medications_lifetime_perc_covered\n", + "3700 mean_Body_Mass_Index>=lifetime_care_plan_length^encounters_lifetime_perc_covered\n", + "3701 mean_Body_Mass_Index>=-healthcare_expenses\n", + "3702 mean_Body_Mass_Index>=Body_Mass_Index-active_care_plans\n", + "3703 mean_Body_Mass_Index>=Body_Mass_Index-medications_active\n", + "3704 mean_Body_Mass_Index>=Body_Mass_Index-healthcare_coverage\n", + "3705 mean_Body_Mass_Index>=Body_Mass_Index-active_conditions\n", + "3706 mean_Body_Mass_Index>=Body_Mass_Index-encounters_lifetime_payer_coverage\n", + "3707 mean_Body_Mass_Index>=Body_Mass_Index^encounters_lifetime_perc_covered\n", + "3708 mean_Body_Mass_Index>=minimum(Body_Mass_Index,e^mean_Creatinine)\n", + "3709 mean_Body_Mass_Index>=Body_Mass_Index^imaging_studies_lifetime\n", + "3710 mean_Body_Mass_Index>=Body_Mass_Index^QOLS\n", + "3711 mean_Body_Mass_Index>=DALY-medications_active-1\n", + "3712 mean_Body_Mass_Index>=Body_Mass_Index-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3713 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3714 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine)\n", + "3715 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Carbon_Dioxide)\n", + "3716 mean_Body_Mass_Index>=minimum(Body_Mass_Index,mean_Carbon_Dioxide)\n", + "3717 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/2*High_Density_Lipoprotein_Cholesterol)\n", + "3718 mean_Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "3719 mean_Body_Mass_Index>=minimum(Body_Mass_Index,2*procedures_lifetime)\n", + "3720 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/medications_lifetime_perc_covered)\n", + "3721 mean_Body_Mass_Index>=minimum(Body_Mass_Index,-Triglycerides)\n", + "3722 mean_Body_Mass_Index>=minimum(Body_Mass_Index,e^Creatinine)\n", + "3723 mean_Body_Mass_Index>=Urea_Nitrogen*log(mean_Carbon_Dioxide)/log(10)\n", + "3724 mean_Body_Weight<=healthcare_expenses\n", + "3725 mean_Body_Weight<=Body_Weight\n", + "3726 mean_Body_Weight<=-healthcare_coverage+healthcare_expenses\n", + "3727 mean_Body_Weight>=latitude\n", + "3728 mean_Body_Weight>=floor(Body_Weight)\n", + "3729 mean_Body_Weight>=healthcare_expenses^longitude\n", + "3730 mean_Body_Weight>=Body_Weight-healthcare_coverage\n", + "3731 mean_Body_Weight>=minimum(age,Body_Weight)\n", + "3732 mean_Body_Weight>=-healthcare_expenses\n", + "3733 mean_Body_Weight>=Body_Weight-active_care_plans\n", + "3734 mean_Body_Weight>=Body_Weight-encounters_lifetime_payer_coverage\n", + "3735 mean_Body_Weight>=Body_Weight^encounters_lifetime_perc_covered\n", + "3736 mean_Body_Weight>=minimum(Heart_rate,Body_Weight)\n", + "3737 mean_Body_Weight>=Body_Weight^imaging_studies_lifetime\n", + "3738 mean_Body_Weight>=Body_Weight-medications_lifetime_perc_covered\n", + "3739 mean_Body_Weight>=Body_Weight-procedures_lifetime\n", + "3740 mean_Body_Weight>=Body_Weight^QOLS\n", + "3741 mean_Body_Weight>=Body_Weight-QOLS\n", + "3742 mean_Body_Weight>=minimum(Diastolic_Blood_Pressure,Body_Weight)\n", + "3743 mean_Body_Weight>=minimum(Body_Weight,Estimated_Glomerular_Filtration_Rate)\n", + "3744 mean_Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "3745 mean_Body_Weight>=-Creatinine+2*device_lifetime_length\n", + "3746 mean_Body_Weight>=minimum(Body_Weight,1/2*encounters_count)\n", + "3747 mean_Calcium<=healthcare_expenses\n", + "3748 mean_Calcium<=active_conditions+healthcare_coverage\n", + "3749 mean_Calcium<=Calcium^active_care_plans\n", + "3750 mean_Calcium<=maximum(Respiratory_rate,Calcium)\n", + "3751 mean_Calcium<=maximum(Calcium,2*DALY)\n", + "3752 mean_Calcium<=maximum(DALY,Urea_Nitrogen+1)\n", + "3753 mean_Calcium<=maximum(encounters_count,Calcium)\n", + "3754 mean_Calcium<=log(Body_Weight)/log(10)+Urea_Nitrogen\n", + "3755 mean_Calcium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(age)\n", + "3756 mean_Calcium<=Calcium+procedures_lifetime\n", + "3757 mean_Calcium<=Calcium+encounters_lifetime_payer_coverage\n", + "3758 mean_Calcium<=-active_condition_length+mean_Heart_rate+1\n", + "3759 mean_Calcium<=-healthcare_coverage+healthcare_expenses\n", + "3760 mean_Calcium<=1/2*Estimated_Glomerular_Filtration_Rate+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3761 mean_Calcium<=(Calcium+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3762 mean_Calcium<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3763 mean_Calcium<=Heart_rate/active_care_plans\n", + "3764 mean_Calcium<=Calcium/QOLS\n", + "3765 mean_Calcium<=(Low_Density_Lipoprotein_Cholesterol-1)/procedures_lifetime\n", + "3766 mean_Calcium<=maximum(Triglycerides,Calcium)\n", + "3767 mean_Calcium<=10^healthcare_expenses-healthcare_coverage\n", + "3768 mean_Calcium<=maximum(Urea_Nitrogen,log(healthcare_coverage))\n", + "3769 mean_Calcium<=ceil(Calcium)+encounters_lifetime_perc_covered\n", + "3770 mean_Calcium<=sqrt(Triglycerides)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3771 mean_Calcium<=sqrt(QOLS)+Calcium\n", + "3772 mean_Calcium<=Body_Weight-active_care_plan_length-1\n", + "3773 mean_Calcium<=maximum(Calcium,1/imaging_studies_lifetime)\n", + "3774 mean_Calcium<=minimum(Estimated_Glomerular_Filtration_Rate,mean_Urea_Nitrogen-1)\n", + "3775 mean_Calcium<=maximum(active_conditions,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "3776 mean_Calcium>=longitude\n", + "3777 mean_Calcium>=minimum(Calcium,2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3778 mean_Calcium>=maximum(Calcium,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3779 mean_Calcium>=active_conditions-healthcare_coverage\n", + "3780 mean_Calcium>=Calcium/active_care_plans\n", + "3781 mean_Calcium>=-QOLS+floor(Calcium)\n", + "3782 mean_Calcium>=floor(DALY)-mean_Carbon_Dioxide\n", + "3783 mean_Calcium>=(mean_Creatinine+1)*immunizations_lifetime\n", + "3784 mean_Calcium>=Globulin__Mass_volume__in_Serum_by_calculation*log(mean_Urea_Nitrogen)\n", + "3785 mean_Calcium>=log(encounters_lifetime_total_cost^2)/log(10)\n", + "3786 mean_Calcium>=-healthcare_expenses\n", + "3787 mean_Calcium>=sqrt(mean_Total_Cholesterol)^medications_lifetime_perc_covered\n", + "3788 mean_Calcium>=healthcare_expenses^longitude\n", + "3789 mean_Calcium>=Respiratory_rate-active_conditions\n", + "3790 mean_Calcium>=Calcium-procedures_lifetime\n", + "3791 mean_Calcium>=-DALY+lifetime_care_plans\n", + "3792 mean_Calcium>=minimum(Calcium,sqrt(age))\n", + "3793 mean_Calcium>=minimum(Calcium,2*mean_Potassium)\n", + "3794 mean_Calcium>=Calcium^QOLS\n", + "3795 mean_Calcium>=log(age)+mean_Creatinine\n", + "3796 mean_Calcium>=-Albumin__Mass_volume__in_Serum,Plasma+active_conditions-1\n", + "3797 mean_Calcium>=-Carbon_Dioxide+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3798 mean_Calcium>=Calcium-encounters_lifetime_payer_coverage\n", + "3799 mean_Calcium>=(10^healthcare_expenses)^longitude\n", + "3800 mean_Calcium>=log(High_Density_Lipoprotein_Cholesterol)*mean_Potassium/log(10)\n", + "3801 mean_Calcium>=1/2*latitude/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3802 mean_Calcium>=-Body_Weight+age-1\n", + "3803 mean_Calcium>=log(encounters_lifetime_payer_coverage)/log(10)+Potassium\n", + "3804 mean_Carbon_Dioxide<=healthcare_expenses\n", + "3805 mean_Carbon_Dioxide<=Respiratory_rate*sqrt(mean_Potassium)\n", + "3806 mean_Carbon_Dioxide<=Carbon_Dioxide+procedures_lifetime_cost\n", + "3807 mean_Carbon_Dioxide<=-mean_Urea_Nitrogen+medications_lifetime_cost-1\n", + "3808 mean_Carbon_Dioxide<=Urea_Nitrogen*log(Estimated_Glomerular_Filtration_Rate)\n", + "3809 mean_Carbon_Dioxide<=Carbon_Dioxide/QOLS\n", + "3810 mean_Carbon_Dioxide<=Body_Mass_Index+procedures_lifetime\n", + "3811 mean_Carbon_Dioxide<=maximum(active_care_plan_length,Carbon_Dioxide)\n", + "3812 mean_Carbon_Dioxide<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Carbon_Dioxide)\n", + "3813 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,DALY^2)\n", + "3814 mean_Carbon_Dioxide<=active_conditions+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "3815 mean_Carbon_Dioxide<=maximum(encounters_count,Carbon_Dioxide)\n", + "3816 mean_Carbon_Dioxide<=maximum(Heart_rate,Carbon_Dioxide)\n", + "3817 mean_Carbon_Dioxide<=maximum(Triglycerides,Carbon_Dioxide)\n", + "3818 mean_Carbon_Dioxide<=Carbon_Dioxide^active_care_plans\n", + "3819 mean_Carbon_Dioxide<=2*Albumin__Mass_volume__in_Serum,Plasma^2\n", + "3820 mean_Carbon_Dioxide<=10^healthcare_expenses-healthcare_coverage\n", + "3821 mean_Carbon_Dioxide<=Carbon_Dioxide+healthcare_coverage\n", + "3822 mean_Carbon_Dioxide<=-healthcare_coverage+healthcare_expenses\n", + "3823 mean_Carbon_Dioxide<=Carbon_Dioxide+log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3824 mean_Carbon_Dioxide<=mean_Heart_rate^2/mean_Total_Cholesterol\n", + "3825 mean_Carbon_Dioxide<=immunizations_lifetime+2*mean_Respiratory_rate\n", + "3826 mean_Carbon_Dioxide<=e^encounters_lifetime_perc_covered*mean_Estimated_Glomerular_Filtration_Rate\n", + "3827 mean_Carbon_Dioxide<=Urea_Nitrogen*floor(Potassium)\n", + "3828 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,2*Respiratory_rate)\n", + "3829 mean_Carbon_Dioxide>=longitude\n", + "3830 mean_Carbon_Dioxide>=Carbon_Dioxide^QOLS\n", + "3831 mean_Carbon_Dioxide>=Carbon_Dioxide-procedures_lifetime_cost\n", + "3832 mean_Carbon_Dioxide>=Carbon_Dioxide/active_care_plans\n", + "3833 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,-Triglycerides)\n", + "3834 mean_Carbon_Dioxide>=healthcare_expenses^longitude\n", + "3835 mean_Carbon_Dioxide>=floor(DALY)-mean_Calcium\n", + "3836 mean_Carbon_Dioxide>=-Body_Weight+1/2*lifetime_care_plan_length\n", + "3837 mean_Carbon_Dioxide>=-healthcare_expenses\n", + "3838 mean_Carbon_Dioxide>=1/2*device_lifetime_length-medications_lifetime_perc_covered\n", + "3839 mean_Carbon_Dioxide>=1/2*mean_Triglycerides/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3840 mean_Carbon_Dioxide>=Calcium*log(procedures_lifetime)\n", + "3841 mean_Carbon_Dioxide>=(medications_lifetime+1)/mean_High_Density_Lipoprotein_Cholesterol\n", + "3842 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3843 mean_Carbon_Dioxide>=1/2*Globulin__Mass_volume__in_Serum_by_calculation*mean_Urea_Nitrogen\n", + "3844 mean_Carbon_Dioxide>=(Glucose-1)/Albumin__Mass_volume__in_Serum,Plasma\n", + "3845 mean_Carbon_Dioxide>=1/2*Albumin__Mass_volume__in_Serum,Plasma*Calcium\n", + "3846 mean_Carbon_Dioxide>=Carbon_Dioxide-encounters_lifetime_payer_coverage\n", + "3847 mean_Carbon_Dioxide>=sqrt(encounters_lifetime_payer_coverage)-Glucose\n", + "3848 mean_Carbon_Dioxide>=Carbon_Dioxide*log(lifetime_care_plans)/log(10)\n", + "3849 mean_Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "3850 mean_Carbon_Dioxide>=log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^immunizations_lifetime\n", + "3851 mean_Carbon_Dioxide>=sqrt(Estimated_Glomerular_Filtration_Rate)*mean_Creatinine\n", + "3852 mean_Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*lifetime_care_plans\n", + "3853 mean_Carbon_Dioxide>=(Diastolic_Blood_Pressure+1)/mean_Potassium\n", + "3854 mean_Carbon_Dioxide>=Potassium*log(mean_Glucose)\n", + "3855 mean_Carbon_Dioxide>=Carbon_Dioxide-mean_Creatinine-1\n", + "3856 mean_Carbon_Dioxide>=Carbon_Dioxide-healthcare_coverage\n", + "3857 mean_Chloride<=healthcare_expenses\n", + "3858 mean_Chloride<=Chloride+procedures_lifetime_cost\n", + "3859 mean_Chloride<=maximum(medications_lifetime_length,Chloride)\n", + "3860 mean_Chloride<=DALY+Systolic_Blood_Pressure\n", + "3861 mean_Chloride<=-healthcare_coverage+healthcare_expenses\n", + "3862 mean_Chloride<=mean_Carbon_Dioxide^2/Potassium\n", + "3863 mean_Chloride<=Chloride+log(mean_Estimated_Glomerular_Filtration_Rate)\n", + "3864 mean_Chloride<=Chloride+healthcare_coverage\n", + "3865 mean_Chloride<=maximum(lifetime_condition_length,Chloride)\n", + "3866 mean_Chloride<=floor(Chloride)+mean_Potassium\n", + "3867 mean_Chloride<=maximum(Body_Height,Chloride)\n", + "3868 mean_Chloride<=maximum(Triglycerides,Chloride)\n", + "3869 mean_Chloride<=e^Albumin__Mass_volume__in_Serum,Plasma-longitude\n", + "3870 mean_Chloride<=Chloride^active_care_plans\n", + "3871 mean_Chloride<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(Triglycerides)\n", + "3872 mean_Chloride<=Heart_rate+latitude+1\n", + "3873 mean_Chloride<=1/mean_Albumin__Mass_volume__in_Serum,Plasma+Chloride\n", + "3874 mean_Chloride<=10^healthcare_expenses-healthcare_coverage\n", + "3875 mean_Chloride<=2*Potassium*Respiratory_rate\n", + "3876 mean_Chloride<=Heart_rate+1/2*mean_Glucose\n", + "3877 mean_Chloride<=Systolic_Blood_Pressure+log(age)\n", + "3878 mean_Chloride<=maximum(Chloride,e^DALY)\n", + "3879 mean_Chloride<=2*High_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate\n", + "3880 mean_Chloride<=Body_Weight+2*Estimated_Glomerular_Filtration_Rate\n", + "3881 mean_Chloride<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Chloride)\n", + "3882 mean_Chloride<=2*Chloride-mean_Diastolic_Blood_Pressure\n", + "3883 mean_Chloride>=latitude\n", + "3884 mean_Chloride>=DALY*sqrt(procedures_lifetime)\n", + "3885 mean_Chloride>=minimum(Chloride,mean_Body_Mass_Index)\n", + "3886 mean_Chloride>=Chloride-procedures_lifetime_cost\n", + "3887 mean_Chloride>=minimum(Chloride,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3888 mean_Chloride>=Chloride/active_care_plans\n", + "3889 mean_Chloride>=floor(QALY)*immunizations_lifetime\n", + "3890 mean_Chloride>=-healthcare_expenses\n", + "3891 mean_Chloride>=Calcium*sqrt(mean_Glucose)\n", + "3892 mean_Chloride>=Chloride^QOLS\n", + "3893 mean_Chloride>=-active_care_plan_length+1/2*encounters_count\n", + "3894 mean_Chloride>=minimum(encounters_count,mean_Diastolic_Blood_Pressure)\n", + "3895 mean_Chloride>=-Heart_rate+mean_Triglycerides-1\n", + "3896 mean_Chloride>=minimum(Chloride,sqrt(procedures_lifetime_cost))\n", + "3897 mean_Chloride>=Carbon_Dioxide*log(latitude)\n", + "3898 mean_Chloride>=log(encounters_lifetime_perc_covered)+mean_Diastolic_Blood_Pressure\n", + "3899 mean_Chloride>=healthcare_expenses^longitude\n", + "3900 mean_Chloride>=Chloride-healthcare_coverage\n", + "3901 mean_Chloride>=Chloride-encounters_lifetime_payer_coverage\n", + "3902 mean_Chloride>=Chloride*log(lifetime_care_plans)/log(10)\n", + "3903 mean_Chloride>=sqrt(Body_Weight)+Heart_rate\n", + "3904 mean_Chloride>=floor(Chloride)-medications_lifetime_length\n", + "3905 mean_Chloride>=Body_Height-Body_Weight\n", + "3906 mean_Chloride>=Chloride-procedures_lifetime-1\n", + "3907 mean_Chloride>=minimum(Chloride,e^procedures_lifetime)\n", + "3908 mean_Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "3909 mean_Chloride>=-mean_High_Density_Lipoprotein_Cholesterol+mean_Systolic_Blood_Pressure-1\n", + "3910 mean_Creatinine<=healthcare_expenses\n", + "3911 mean_Creatinine<=Creatinine+procedures_lifetime_cost\n", + "3912 mean_Creatinine<=QOLS+1/2*medications_lifetime\n", + "3913 mean_Creatinine<=maximum(Respiratory_rate,Creatinine)\n", + "3914 mean_Creatinine<=log(medications_lifetime_perc_covered)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3915 mean_Creatinine<=(2*mean_Systolic_Blood_Pressure)^QOLS\n", + "3916 mean_Creatinine<=minimum(healthcare_expenses,log(FEV1_FVC)/log(10))\n", + "3917 mean_Creatinine<=maximum(Triglycerides,Creatinine)\n", + "3918 mean_Creatinine<=maximum(procedures_lifetime,log(mean_Low_Density_Lipoprotein_Cholesterol))\n", + "3919 mean_Creatinine<=encounters_lifetime_perc_covered+e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3920 mean_Creatinine<=e^(10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3921 mean_Creatinine<=Triglycerides/Estimated_Glomerular_Filtration_Rate\n", + "3922 mean_Creatinine<=2*Urea_Nitrogen/active_care_plans\n", + "3923 mean_Creatinine<=-healthcare_coverage+healthcare_expenses\n", + "3924 mean_Creatinine<=minimum(Estimated_Glomerular_Filtration_Rate,Creatinine^2)\n", + "3925 mean_Creatinine<=2*mean_Systolic_Blood_Pressure/active_care_plan_length\n", + "3926 mean_Creatinine<=log(Total_Cholesterol)/(encounters_lifetime_perc_covered*log(10))\n", + "3927 mean_Creatinine<=Creatinine*active_care_plans\n", + "3928 mean_Creatinine<=2/imaging_studies_lifetime\n", + "3929 mean_Creatinine<=10^healthcare_expenses-healthcare_coverage\n", + "3930 mean_Creatinine<=sqrt(Glucose)-Potassium\n", + "3931 mean_Creatinine<=-Glucose+ceil(Triglycerides)\n", + "3932 mean_Creatinine<=mean_Carbon_Dioxide^2/mean_Systolic_Blood_Pressure\n", + "3933 mean_Creatinine<=2*Creatinine+QOLS\n", + "3934 mean_Creatinine<=Creatinine+healthcare_coverage\n", + "3935 mean_Creatinine<=Creatinine+encounters_lifetime_payer_coverage\n", + "3936 mean_Creatinine>=longitude\n", + "3937 mean_Creatinine>=minimum(QOLS,Creatinine)\n", + "3938 mean_Creatinine>=Carbon_Dioxide-mean_Carbon_Dioxide-1\n", + "3939 mean_Creatinine>=Creatinine-procedures_lifetime\n", + "3940 mean_Creatinine>=-healthcare_expenses\n", + "3941 mean_Creatinine>=(1/active_care_plans)\n", + "3942 mean_Creatinine>=minimum(immunizations_lifetime_cost,Creatinine-1)\n", + "3943 mean_Creatinine>=1/2*Microalbumin_Creatinine_Ratio/active_care_plan_length\n", + "3944 mean_Creatinine>=(High_Density_Lipoprotein_Cholesterol+1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3945 mean_Creatinine>=minimum(Creatinine,num_allergies^2)\n", + "3946 mean_Creatinine>=Creatinine-encounters_lifetime_payer_coverage\n", + "3947 mean_Creatinine>=healthcare_expenses^longitude\n", + "3948 mean_Creatinine>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3949 mean_Creatinine>=Creatinine/active_care_plans\n", + "3950 mean_Creatinine>=-Globulin__Mass_volume__in_Serum_by_calculation+1/2*lifetime_care_plans\n", + "3951 mean_Creatinine>=log(Protein__Mass_volume__in_Serum,Plasma)/log(10)-imaging_studies_lifetime\n", + "3952 mean_Creatinine>=minimum(num_allergies,Creatinine)\n", + "3953 mean_Creatinine>=2*mean_Microalbumin_Creatinine_Ratio/Systolic_Blood_Pressure\n", + "3954 mean_Creatinine>=-Respiratory_rate+ceil(mean_Respiratory_rate)\n", + "3955 mean_Creatinine>=(active_care_plan_length+1)/mean_Estimated_Glomerular_Filtration_Rate\n", + "3956 mean_Creatinine>=minimum(Creatinine,log(active_care_plans))\n", + "3957 mean_Creatinine>=1/2*device_lifetime_length/DALY\n", + "3958 mean_Creatinine>=floor(latitude)/Estimated_Glomerular_Filtration_Rate\n", + "3959 mean_Creatinine>=(10^healthcare_expenses)^longitude\n", + "3960 mean_Creatinine>=Creatinine-healthcare_coverage\n", + "3961 mean_Creatinine>=sqrt(Microalbumin_Creatinine_Ratio)-Respiratory_rate\n", + "3962 mean_Creatinine>=-Urea_Nitrogen+log(procedures_lifetime_cost)\n", + "3963 mean_Creatinine>=-Potassium+medications_active\n", + "3964 mean_DALY<=DALY\n", + "3965 mean_DALY>=imaging_studies_lifetime\n", + "3966 mean_DALY>=DALY\n", + "3967 mean_Diastolic_Blood_Pressure<=healthcare_expenses\n", + "3968 mean_Diastolic_Blood_Pressure<=maximum(mean_Glucose,Diastolic_Blood_Pressure+1)\n", + "3969 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "3970 mean_Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,Diastolic_Blood_Pressure)\n", + "3971 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+log(Estimated_Glomerular_Filtration_Rate)\n", + "3972 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,DALY^2)\n", + "3973 mean_Diastolic_Blood_Pressure<=2*High_Density_Lipoprotein_Cholesterol+mean_Urea_Nitrogen\n", + "3974 mean_Diastolic_Blood_Pressure<=-healthcare_coverage+healthcare_expenses\n", + "3975 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+healthcare_coverage\n", + "3976 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/imaging_studies_lifetime\n", + "3977 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+active_care_plan_length\n", + "3978 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/QOLS\n", + "3979 mean_Diastolic_Blood_Pressure<=1/2*Potassium*mean_High_Density_Lipoprotein_Cholesterol\n", + "3980 mean_Diastolic_Blood_Pressure<=Heart_rate+active_condition_length\n", + "3981 mean_Diastolic_Blood_Pressure<=Heart_rate/encounters_lifetime_perc_covered\n", + "3982 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+e^procedures_lifetime\n", + "3983 mean_Diastolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate*log(healthcare_expenses)/log(10)\n", + "3984 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^DALY)\n", + "3985 mean_Diastolic_Blood_Pressure<=mean_High_Density_Lipoprotein_Cholesterol^2/DALY\n", + "3986 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,1/num_allergies)\n", + "3987 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,10^active_care_plans)\n", + "3988 mean_Diastolic_Blood_Pressure<=Body_Mass_Index+Body_Weight+1\n", + "3989 mean_Diastolic_Blood_Pressure<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-longitude\n", + "3990 mean_Diastolic_Blood_Pressure<=Respiratory_rate^2-mean_High_Density_Lipoprotein_Cholesterol\n", + "3991 mean_Diastolic_Blood_Pressure<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "3992 mean_Diastolic_Blood_Pressure<=sqrt(lifetime_care_plan_length)+Diastolic_Blood_Pressure\n", + "3993 mean_Diastolic_Blood_Pressure<=lifetime_conditions^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "3994 mean_Diastolic_Blood_Pressure<=-High_Density_Lipoprotein_Cholesterol+ceil(Body_Height)\n", + "3995 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,10^DALY)\n", + "3996 mean_Diastolic_Blood_Pressure>=latitude\n", + "3997 mean_Diastolic_Blood_Pressure>=minimum(QALY,Diastolic_Blood_Pressure)\n", + "3998 mean_Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol+1/2*immunizations_lifetime\n", + "3999 mean_Diastolic_Blood_Pressure>=e^Potassium-mean_Heart_rate\n", + "4000 mean_Diastolic_Blood_Pressure>=-healthcare_expenses\n", + "4001 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_conditions\n", + "4002 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "4003 mean_Diastolic_Blood_Pressure>=floor(active_care_plan_length)\n", + "4004 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "4005 mean_Diastolic_Blood_Pressure>=1/2*Triglycerides*medications_lifetime_perc_covered\n", + "4006 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^imaging_studies_lifetime\n", + "4007 mean_Diastolic_Blood_Pressure>=Potassium+1/2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4008 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^QOLS\n", + "4009 mean_Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "4010 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_care_plan_length\n", + "4011 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^2/Chloride\n", + "4012 mean_Diastolic_Blood_Pressure>=sqrt(encounters_lifetime_total_cost)-Systolic_Blood_Pressure\n", + "4013 mean_Diastolic_Blood_Pressure>=(Body_Height+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4014 mean_Diastolic_Blood_Pressure>=encounters_count/mean_Potassium\n", + "4015 mean_Diastolic_Blood_Pressure>=-Systolic_Blood_Pressure+floor(Body_Height)\n", + "4016 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Estimated_Glomerular_Filtration_Rate)\n", + "4017 mean_Diastolic_Blood_Pressure>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(age)\n", + "4018 mean_Diastolic_Blood_Pressure>=(log(medications_lifetime)/log(10))^mean_Creatinine\n", + "4019 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4020 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "4021 mean_Diastolic_Blood_Pressure>=log(10^DALY)\n", + "4022 mean_Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "4023 mean_Diastolic_Blood_Pressure>=Heart_rate^encounters_lifetime_perc_covered\n", + "4024 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-healthcare_coverage\n", + "4025 mean_Diastolic_Blood_Pressure>=device_lifetime_length*e^QOLS\n", + "4026 mean_Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "4027 mean_Estimated_Glomerular_Filtration_Rate<=Carbon_Dioxide*active_conditions\n", + "4028 mean_Estimated_Glomerular_Filtration_Rate<=minimum(healthcare_expenses,sqrt(Protein__Mass_volume__in_Urine_by_Test_strip))\n", + "4029 mean_Estimated_Glomerular_Filtration_Rate<=ceil(latitude)+immunizations_lifetime_cost\n", + "4030 mean_Estimated_Glomerular_Filtration_Rate<=Low_Density_Lipoprotein_Cholesterol/floor(mean_Creatinine)\n", + "4031 mean_Estimated_Glomerular_Filtration_Rate<=1/2*DALY+Estimated_Glomerular_Filtration_Rate\n", + "4032 mean_Estimated_Glomerular_Filtration_Rate<=2*healthcare_expenses/encounters_lifetime_payer_coverage\n", + "4033 mean_Estimated_Glomerular_Filtration_Rate<=-healthcare_coverage+healthcare_expenses\n", + "4034 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+healthcare_coverage\n", + "4035 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+procedures_lifetime_cost\n", + "4036 mean_Estimated_Glomerular_Filtration_Rate<=Body_Weight/(mean_Creatinine-1)\n", + "4037 mean_Estimated_Glomerular_Filtration_Rate<=Low_Density_Lipoprotein_Cholesterol^2/lifetime_care_plan_length\n", + "4038 mean_Estimated_Glomerular_Filtration_Rate<=Triglycerides-1/2*mean_Microalbumin_Creatinine_Ratio\n", + "4039 mean_Estimated_Glomerular_Filtration_Rate<=maximum(age,Estimated_Glomerular_Filtration_Rate)\n", + "4040 mean_Estimated_Glomerular_Filtration_Rate<=active_care_plans+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "4041 mean_Estimated_Glomerular_Filtration_Rate<=10^healthcare_expenses-healthcare_coverage\n", + "4042 mean_Estimated_Glomerular_Filtration_Rate<=Body_Height^2/medications_lifetime\n", + "4043 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4044 mean_Estimated_Glomerular_Filtration_Rate>=longitude\n", + "4045 mean_Estimated_Glomerular_Filtration_Rate>=-DALY+2*Respiratory_rate\n", + "4046 mean_Estimated_Glomerular_Filtration_Rate>=Urea_Nitrogen+e^encounters_lifetime_perc_covered\n", + "4047 mean_Estimated_Glomerular_Filtration_Rate>=-2*Creatinine+Estimated_Glomerular_Filtration_Rate\n", + "4048 mean_Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "4049 mean_Estimated_Glomerular_Filtration_Rate>=floor(mean_Triglycerides)/mean_Calcium\n", + "4050 mean_Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "4051 mean_Estimated_Glomerular_Filtration_Rate>=minimum(active_conditions,Estimated_Glomerular_Filtration_Rate)\n", + "4052 mean_Estimated_Glomerular_Filtration_Rate>=-Urea_Nitrogen+device_lifetime_length\n", + "4053 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate/active_care_plans\n", + "4054 mean_Estimated_Glomerular_Filtration_Rate>=active_condition_length-mean_Microalbumin_Creatinine_Ratio\n", + "4055 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-encounters_lifetime_payer_coverage\n", + "4056 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-healthcare_coverage\n", + "4057 mean_Estimated_Glomerular_Filtration_Rate>=1/2*medications_lifetime/mean_Carbon_Dioxide\n", + "4058 mean_Estimated_Glomerular_Filtration_Rate>=floor(DALY)-mean_Calcium\n", + "4059 mean_Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "4060 mean_Estimated_Glomerular_Filtration_Rate>=minimum(procedures_lifetime_cost,mean_Potassium^2)\n", + "4061 mean_Estimated_Glomerular_Filtration_Rate>=log(encounters_count)^immunizations_lifetime\n", + "4062 mean_Estimated_Glomerular_Filtration_Rate>=Low_Density_Lipoprotein_Cholesterol/log(procedures_lifetime_cost)\n", + "4063 mean_Estimated_Glomerular_Filtration_Rate>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/medications_lifetime\n", + "4064 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-log(mean_Systolic_Blood_Pressure)\n", + "4065 mean_Glucose<=healthcare_expenses\n", + "4066 mean_Glucose<=Glucose+procedures_lifetime_cost\n", + "4067 mean_Glucose<=Systolic_Blood_Pressure-1\n", + "4068 mean_Glucose<=maximum(Systolic_Blood_Pressure,Glucose)\n", + "4069 mean_Glucose<=2*Total_Cholesterol/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4070 mean_Glucose<=Glucose/QOLS\n", + "4071 mean_Glucose<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Systolic_Blood_Pressure\n", + "4072 mean_Glucose<=maximum(lifetime_condition_length,Glucose)\n", + "4073 mean_Glucose<=-healthcare_coverage+healthcare_expenses\n", + "4074 mean_Glucose<=Glucose+healthcare_coverage\n", + "4075 mean_Glucose<=Chloride+e^active_care_plans\n", + "4076 mean_Glucose<=maximum(Glucose,e^DALY)\n", + "4077 mean_Glucose<=mean_Triglycerides^2/Systolic_Blood_Pressure\n", + "4078 mean_Glucose<=Glucose^active_care_plans\n", + "4079 mean_Glucose<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+floor(age)\n", + "4080 mean_Glucose<=log(mean_Potassium)*mean_Heart_rate\n", + "4081 mean_Glucose<=1/2*lifetime_condition_length+mean_Estimated_Glomerular_Filtration_Rate\n", + "4082 mean_Glucose<=-Potassium+ceil(mean_Systolic_Blood_Pressure)\n", + "4083 mean_Glucose<=Creatinine+Triglycerides\n", + "4084 mean_Glucose<=maximum(Glucose,DALY^2)\n", + "4085 mean_Glucose<=maximum(Glucose,1/imaging_studies_lifetime)\n", + "4086 mean_Glucose<=High_Density_Lipoprotein_Cholesterol-longitude\n", + "4087 mean_Glucose<=10^healthcare_expenses-healthcare_coverage\n", + "4088 mean_Glucose<=minimum(healthcare_expenses,1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4089 mean_Glucose<=10^QOLS*medications_lifetime_cost\n", + "4090 mean_Glucose<=maximum(Glucose,10^DALY)\n", + "4091 mean_Glucose<=log(Body_Mass_Index)^Potassium\n", + "4092 mean_Glucose<=1/2*Estimated_Glomerular_Filtration_Rate+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4093 mean_Glucose>=latitude\n", + "4094 mean_Glucose>=minimum(Glucose,mean_Body_Mass_Index)\n", + "4095 mean_Glucose>=minimum(Glucose,mean_High_Density_Lipoprotein_Cholesterol)\n", + "4096 mean_Glucose>=Glucose-procedures_lifetime_cost\n", + "4097 mean_Glucose>=Glucose^QOLS\n", + "4098 mean_Glucose>=sqrt(encounters_lifetime_payer_coverage)-mean_Urea_Nitrogen\n", + "4099 mean_Glucose>=-healthcare_expenses\n", + "4100 mean_Glucose>=Glucose-encounters_lifetime_payer_coverage\n", + "4101 mean_Glucose>=minimum(Heart_rate,Glucose)\n", + "4102 mean_Glucose>=active_conditions*log(medications_lifetime_cost)/log(10)\n", + "4103 mean_Glucose>=Body_Mass_Index*log(device_lifetime_length)\n", + "4104 mean_Glucose>=High_Density_Lipoprotein_Cholesterol+log(procedures_lifetime)\n", + "4105 mean_Glucose>=sqrt(medications_lifetime_length)-mean_Respiratory_rate\n", + "4106 mean_Glucose>=healthcare_expenses^longitude\n", + "4107 mean_Glucose>=Glucose/active_care_plans\n", + "4108 mean_Glucose>=minimum(age,Glucose)\n", + "4109 mean_Glucose>=2*Protein__Mass_volume__in_Serum,Plasma-age\n", + "4110 mean_Glucose>=(mean_Creatinine-1)*mean_Carbon_Dioxide\n", + "4111 mean_Glucose>=Glucose+log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4112 mean_Glucose>=minimum(Diastolic_Blood_Pressure,1/2*medications_lifetime)\n", + "4113 mean_Glucose>=Glucose-healthcare_coverage\n", + "4114 mean_Glucose>=minimum(Glucose,1/medications_lifetime_perc_covered)\n", + "4115 mean_Glucose>=Heart_rate+log(Microalbumin_Creatinine_Ratio)\n", + "4116 mean_Glucose>=e^Globulin__Mass_volume__in_Serum_by_calculation*medications_active\n", + "4117 mean_Glucose>=Urea_Nitrogen*log(encounters_count)\n", + "4118 mean_Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "4119 mean_Heart_rate<=healthcare_expenses\n", + "4120 mean_Heart_rate<=-Respiratory_rate+Systolic_Blood_Pressure\n", + "4121 mean_Heart_rate<=maximum(Heart_rate,1/2*Body_Height)\n", + "4122 mean_Heart_rate<=maximum(Heart_rate,2*age)\n", + "4123 mean_Heart_rate<=Heart_rate+active_condition_length\n", + "4124 mean_Heart_rate<=Heart_rate+encounters_count-1\n", + "4125 mean_Heart_rate<=-healthcare_coverage+healthcare_expenses\n", + "4126 mean_Heart_rate<=Heart_rate/imaging_studies_lifetime\n", + "4127 mean_Heart_rate<=Heart_rate+healthcare_coverage\n", + "4128 mean_Heart_rate<=Heart_rate+encounters_lifetime_payer_coverage\n", + "4129 mean_Heart_rate<=Heart_rate/encounters_lifetime_perc_covered\n", + "4130 mean_Heart_rate<=2*Estimated_Glomerular_Filtration_Rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "4131 mean_Heart_rate<=Heart_rate+1/2*active_condition_length\n", + "4132 mean_Heart_rate<=Body_Mass_Index+1/2*Triglycerides\n", + "4133 mean_Heart_rate<=Estimated_Glomerular_Filtration_Rate+1/2*Triglycerides\n", + "4134 mean_Heart_rate<=age+floor(mean_Estimated_Glomerular_Filtration_Rate)\n", + "4135 mean_Heart_rate<=maximum(Heart_rate,1/num_allergies)\n", + "4136 mean_Heart_rate<=ceil(mean_Glucose)+medications_lifetime_dispenses\n", + "4137 mean_Heart_rate<=(Systolic_Blood_Pressure-1)*Creatinine\n", + "4138 mean_Heart_rate<=maximum(Heart_rate,2*lifetime_condition_length)\n", + "4139 mean_Heart_rate<=maximum(Glucose,Estimated_Glomerular_Filtration_Rate)\n", + "4140 mean_Heart_rate<=10^QOLS*Heart_rate\n", + "4141 mean_Heart_rate<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Heart_rate\n", + "4142 mean_Heart_rate<=High_Density_Lipoprotein_Cholesterol^2/Urea_Nitrogen\n", + "4143 mean_Heart_rate<=Estimated_Glomerular_Filtration_Rate*active_care_plans^2\n", + "4144 mean_Heart_rate<=maximum(mean_Glucose,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "4145 mean_Heart_rate<=minimum(healthcare_expenses,2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4146 mean_Heart_rate<=sqrt(encounters_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4147 mean_Heart_rate<=-active_conditions+mean_Chloride-1\n", + "4148 mean_Heart_rate<=(QOLS+1)*Heart_rate\n", + "4149 mean_Heart_rate<=Body_Mass_Index*log(mean_Estimated_Glomerular_Filtration_Rate)\n", + "4150 mean_Heart_rate>=latitude\n", + "4151 mean_Heart_rate>=minimum(active_care_plan_length,Heart_rate)\n", + "4152 mean_Heart_rate>=log(mean_Low_Density_Lipoprotein_Cholesterol)/log(10)-longitude\n", + "4153 mean_Heart_rate>=-healthcare_expenses\n", + "4154 mean_Heart_rate>=Heart_rate-lifetime_conditions\n", + "4155 mean_Heart_rate>=-Heart_rate+ceil(mean_Low_Density_Lipoprotein_Cholesterol)\n", + "4156 mean_Heart_rate>=DALY+1/2*mean_Body_Weight\n", + "4157 mean_Heart_rate>=minimum(Heart_rate,High_Density_Lipoprotein_Cholesterol)\n", + "4158 mean_Heart_rate>=QALY+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "4159 mean_Heart_rate>=healthcare_expenses^longitude\n", + "4160 mean_Heart_rate>=mean_Glucose^2/mean_Triglycerides\n", + "4161 mean_Heart_rate>=Calcium^2/medications_lifetime\n", + "4162 mean_Heart_rate>=Heart_rate-encounters_lifetime_payer_coverage\n", + "4163 mean_Heart_rate>=floor(active_condition_length)+mean_Calcium\n", + "4164 mean_Heart_rate>=Heart_rate^encounters_lifetime_perc_covered\n", + "4165 mean_Heart_rate>=Heart_rate-procedures_lifetime_cost\n", + "4166 mean_Heart_rate>=sqrt(medications_lifetime_length)-High_Density_Lipoprotein_Cholesterol\n", + "4167 mean_Heart_rate>=Heart_rate^imaging_studies_lifetime\n", + "4168 mean_Heart_rate>=log(Triglycerides)*procedures_lifetime\n", + "4169 mean_Heart_rate>=1/2*Diastolic_Blood_Pressure+device_lifetime_length\n", + "4170 mean_Heart_rate>=Heart_rate^QOLS\n", + "4171 mean_Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "4172 mean_Heart_rate>=Heart_rate-active_care_plan_length\n", + "4173 mean_Heart_rate>=minimum(Heart_rate,Estimated_Glomerular_Filtration_Rate)\n", + "4174 mean_Heart_rate>=minimum(Heart_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4175 mean_Heart_rate>=Heart_rate-mean_Respiratory_rate\n", + "4176 mean_Heart_rate>=2*Body_Weight/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4177 mean_Heart_rate>=Heart_rate-healthcare_coverage\n", + "4178 mean_Heart_rate>=e^Potassium-mean_Diastolic_Blood_Pressure\n", + "4179 mean_Heart_rate>=-Microalbumin_Creatinine_Ratio+ceil(mean_Microalbumin_Creatinine_Ratio)\n", + "4180 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "4181 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/medications_lifetime_perc_covered)\n", + "4182 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "4183 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Urea_Nitrogen-1\n", + "4184 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+healthcare_coverage\n", + "4185 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-healthcare_coverage+healthcare_expenses\n", + "4186 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4187 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood/imaging_studies_lifetime\n", + "4188 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(lifetime_conditions,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4189 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+immunizations_lifetime\n", + "4190 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+encounters_lifetime_payer_coverage\n", + "4191 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/device_lifetime_length)\n", + "4192 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "4193 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Microalbumin_Creatinine_Ratio+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4194 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood/QOLS\n", + "4195 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(DALY,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4196 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*DALY)\n", + "4197 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Creatinine,ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "4198 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=10^healthcare_expenses-healthcare_coverage\n", + "4199 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "4200 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4201 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Potassium\n", + "4202 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/longitude+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4203 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "4204 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(immunizations_lifetime_cost,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4205 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^imaging_studies_lifetime\n", + "4206 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "4207 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,log(latitude))\n", + "4208 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-healthcare_coverage\n", + "4209 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime_perc_covered\n", + "4210 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "4211 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*Body_Weight-mean_Total_Cholesterol\n", + "4212 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,-Triglycerides)\n", + "4213 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(Creatinine)*medications_active/log(10)\n", + "4214 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-encounters_lifetime_payer_coverage\n", + "4215 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "4216 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(device_lifetime_length,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4217 mean_High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "4218 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+active_conditions-1\n", + "4219 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+active_care_plan_length\n", + "4220 mean_High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,High_Density_Lipoprotein_Cholesterol)\n", + "4221 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+healthcare_coverage\n", + "4222 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol/imaging_studies_lifetime\n", + "4223 mean_High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_care_plan_length,High_Density_Lipoprotein_Cholesterol)\n", + "4224 mean_High_Density_Lipoprotein_Cholesterol<=Potassium^2+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4225 mean_High_Density_Lipoprotein_Cholesterol<=floor(mean_Diastolic_Blood_Pressure)\n", + "4226 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "4227 mean_High_Density_Lipoprotein_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "4228 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+floor(DALY)\n", + "4229 mean_High_Density_Lipoprotein_Cholesterol<=Heart_rate+ceil(Creatinine)\n", + "4230 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Systolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "4231 mean_High_Density_Lipoprotein_Cholesterol<=-device_lifetime_length+floor(Body_Weight)\n", + "4232 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4233 mean_High_Density_Lipoprotein_Cholesterol<=2*Systolic_Blood_Pressure-mean_Triglycerides\n", + "4234 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+2*active_care_plans\n", + "4235 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(Protein__Mass_volume__in_Serum,Plasma)^mean_Creatinine\n", + "4236 mean_High_Density_Lipoprotein_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "4237 mean_High_Density_Lipoprotein_Cholesterol<=Heart_rate+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "4238 mean_High_Density_Lipoprotein_Cholesterol<=maximum(High_Density_Lipoprotein_Cholesterol,active_conditions^2)\n", + "4239 mean_High_Density_Lipoprotein_Cholesterol<=QALY+ceil(mean_Estimated_Glomerular_Filtration_Rate)\n", + "4240 mean_High_Density_Lipoprotein_Cholesterol<=1/2*Estimated_Glomerular_Filtration_Rate+lifetime_care_plan_length\n", + "4241 mean_High_Density_Lipoprotein_Cholesterol>=longitude\n", + "4242 mean_High_Density_Lipoprotein_Cholesterol>=sqrt(mean_Urea_Nitrogen)*procedures_lifetime\n", + "4243 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "4244 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "4245 mean_High_Density_Lipoprotein_Cholesterol>=active_condition_length-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "4246 mean_High_Density_Lipoprotein_Cholesterol>=minimum(latitude,High_Density_Lipoprotein_Cholesterol)\n", + "4247 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol/medications_lifetime\n", + "4248 mean_High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "4249 mean_High_Density_Lipoprotein_Cholesterol>=(Microalbumin_Creatinine_Ratio+1)^QOLS\n", + "4250 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4251 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-healthcare_coverage\n", + "4252 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-mean_Urea_Nitrogen+1\n", + "4253 mean_High_Density_Lipoprotein_Cholesterol>=(mean_Sodium+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4254 mean_High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "4255 mean_High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "4256 mean_High_Density_Lipoprotein_Cholesterol>=(Triglycerides+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4257 mean_High_Density_Lipoprotein_Cholesterol>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*sqrt(encounters_count)\n", + "4258 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-encounters_lifetime_payer_coverage\n", + "4259 mean_High_Density_Lipoprotein_Cholesterol>=(medications_lifetime+1)/mean_Carbon_Dioxide\n", + "4260 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Estimated_Glomerular_Filtration_Rate)\n", + "4261 mean_High_Density_Lipoprotein_Cholesterol>=sqrt(QALY)*active_care_plans\n", + "4262 mean_High_Density_Lipoprotein_Cholesterol>=(log(lifetime_care_plan_length)/log(10))^Potassium\n", + "4263 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,10^immunizations_lifetime)\n", + "4264 mean_High_Density_Lipoprotein_Cholesterol>=(Calcium-1)*Creatinine\n", + "4265 mean_High_Density_Lipoprotein_Cholesterol>=log(medications_lifetime_cost)/QOLS\n", + "4266 mean_Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "4267 mean_Low_Density_Lipoprotein_Cholesterol<=-active_care_plan_length+2*mean_Chloride\n", + "4268 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime,Low_Density_Lipoprotein_Cholesterol)\n", + "4269 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,Sodium+1)\n", + "4270 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,DALY^2)\n", + "4271 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+active_care_plan_length\n", + "4272 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,Low_Density_Lipoprotein_Cholesterol)\n", + "4273 mean_Low_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "4274 mean_Low_Density_Lipoprotein_Cholesterol<=Triglycerides+2*mean_Respiratory_rate\n", + "4275 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+healthcare_coverage\n", + "4276 mean_Low_Density_Lipoprotein_Cholesterol<=-longitude+mean_Diastolic_Blood_Pressure-1\n", + "4277 mean_Low_Density_Lipoprotein_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "4278 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol^medications_lifetime\n", + "4279 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "4280 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+e^Creatinine\n", + "4281 mean_Low_Density_Lipoprotein_Cholesterol<=2*High_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "4282 mean_Low_Density_Lipoprotein_Cholesterol<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Calcium\n", + "4283 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,e^DALY)\n", + "4284 mean_Low_Density_Lipoprotein_Cholesterol<=-Potassium+2*mean_Heart_rate\n", + "4285 mean_Low_Density_Lipoprotein_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "4286 mean_Low_Density_Lipoprotein_Cholesterol<=-immunizations_lifetime_cost+2*mean_Total_Cholesterol\n", + "4287 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,10^active_care_plans)\n", + "4288 mean_Low_Density_Lipoprotein_Cholesterol<=Heart_rate*log(Calcium)\n", + "4289 mean_Low_Density_Lipoprotein_Cholesterol<=mean_Systolic_Blood_Pressure^2/Heart_rate\n", + "4290 mean_Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "4291 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(age,Low_Density_Lipoprotein_Cholesterol)\n", + "4292 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "4293 mean_Low_Density_Lipoprotein_Cholesterol>=e^mean_Creatinine*immunizations_lifetime\n", + "4294 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "4295 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Estimated_Glomerular_Filtration_Rate)\n", + "4296 mean_Low_Density_Lipoprotein_Cholesterol>=(encounters_lifetime_payer_coverage+1)/Systolic_Blood_Pressure\n", + "4297 mean_Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "4298 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-encounters_lifetime_payer_coverage\n", + "4299 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Heart_rate,Low_Density_Lipoprotein_Cholesterol)\n", + "4300 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^imaging_studies_lifetime\n", + "4301 mean_Low_Density_Lipoprotein_Cholesterol>=(medications_lifetime_perc_covered+1)*Estimated_Glomerular_Filtration_Rate\n", + "4302 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*active_conditions\n", + "4303 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol/medications_lifetime\n", + "4304 mean_Low_Density_Lipoprotein_Cholesterol>=lifetime_care_plan_length*log(device_lifetime_length)/log(10)\n", + "4305 mean_Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "4306 mean_Low_Density_Lipoprotein_Cholesterol>=(1/2*Creatinine)^mean_Potassium\n", + "4307 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4308 mean_Low_Density_Lipoprotein_Cholesterol>=encounters_count*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "4309 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(encounters_count,Body_Weight-1)\n", + "4310 mean_Low_Density_Lipoprotein_Cholesterol>=Microalbumin_Creatinine_Ratio-mean_Microalbumin_Creatinine_Ratio+1\n", + "4311 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-healthcare_coverage\n", + "4312 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-mean_Carbon_Dioxide-1\n", + "4313 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "4314 mean_Low_Density_Lipoprotein_Cholesterol>=Glucose*log(procedures_lifetime)/log(10)\n", + "4315 mean_Low_Density_Lipoprotein_Cholesterol>=mean_Potassium^2/QOLS\n", + "4316 mean_Low_Density_Lipoprotein_Cholesterol>=-Carbon_Dioxide+1/2*Microalbumin_Creatinine_Ratio\n", + "4317 mean_Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "4318 mean_Microalbumin_Creatinine_Ratio<=(log(mean_Heart_rate)/log(10))^active_conditions\n", + "4319 mean_Microalbumin_Creatinine_Ratio<=Body_Mass_Index^floor(mean_Creatinine)\n", + "4320 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio^active_care_plans\n", + "4321 mean_Microalbumin_Creatinine_Ratio<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^active_conditions\n", + "4322 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+encounters_lifetime_payer_coverage\n", + "4323 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "4324 mean_Microalbumin_Creatinine_Ratio<=Body_Height+1/2*Systolic_Blood_Pressure\n", + "4325 mean_Microalbumin_Creatinine_Ratio<=-healthcare_coverage+healthcare_expenses\n", + "4326 mean_Microalbumin_Creatinine_Ratio<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "4327 mean_Microalbumin_Creatinine_Ratio<=10^Creatinine+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4328 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+healthcare_coverage\n", + "4329 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+floor(mean_Heart_rate)\n", + "4330 mean_Microalbumin_Creatinine_Ratio<=minimum(healthcare_expenses,2*mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4331 mean_Microalbumin_Creatinine_Ratio<=log(mean_Urea_Nitrogen)/log(10)+mean_Total_Cholesterol\n", + "4332 mean_Microalbumin_Creatinine_Ratio<=Calcium*e^Creatinine\n", + "4333 mean_Microalbumin_Creatinine_Ratio<=Low_Density_Lipoprotein_Cholesterol/sqrt(device_lifetime_length)\n", + "4334 mean_Microalbumin_Creatinine_Ratio<=1/2*Urea_Nitrogen*latitude\n", + "4335 mean_Microalbumin_Creatinine_Ratio<=10^healthcare_expenses-healthcare_coverage\n", + "4336 mean_Microalbumin_Creatinine_Ratio>=longitude\n", + "4337 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio/active_care_plans\n", + "4338 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio-1/2*medications_lifetime\n", + "4339 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio-healthcare_coverage\n", + "4340 mean_Microalbumin_Creatinine_Ratio>=minimum(immunizations_lifetime_cost,Microalbumin_Creatinine_Ratio)\n", + "4341 mean_Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "4342 mean_Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "4343 mean_Microalbumin_Creatinine_Ratio>=minimum(active_conditions,Microalbumin_Creatinine_Ratio)\n", + "4344 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "4345 mean_Microalbumin_Creatinine_Ratio>=(log(active_condition_length)/log(10))^medications_active\n", + "4346 mean_Microalbumin_Creatinine_Ratio>=log(medications_lifetime)*procedures_lifetime/log(10)\n", + "4347 mean_Microalbumin_Creatinine_Ratio>=(log(Urea_Nitrogen)/log(10))^active_conditions\n", + "4348 mean_Microalbumin_Creatinine_Ratio>=-active_care_plan_length+1/2*encounters_count\n", + "4349 mean_Microalbumin_Creatinine_Ratio>=ceil(Low_Density_Lipoprotein_Cholesterol)^medications_lifetime_perc_covered\n", + "4350 mean_Microalbumin_Creatinine_Ratio>=e^mean_Creatinine-mean_High_Density_Lipoprotein_Cholesterol\n", + "4351 mean_Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "4352 mean_Microalbumin_Creatinine_Ratio>=minimum(Microalbumin_Creatinine_Ratio,immunizations_lifetime_cost+1)\n", + "4353 mean_Microalbumin_Creatinine_Ratio>=minimum(Microalbumin_Creatinine_Ratio,1/medications_lifetime_perc_covered)\n", + "4354 mean_Microalbumin_Creatinine_Ratio>=procedures_lifetime^2-Body_Weight\n", + "4355 mean_Microalbumin_Creatinine_Ratio>=-Low_Density_Lipoprotein_Cholesterol^2+medications_lifetime_length\n", + "4356 mean_Microalbumin_Creatinine_Ratio>=(mean_Creatinine^2)^immunizations_lifetime\n", + "4357 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "4358 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Creatinine)+medications_active\n", + "4359 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "4360 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count^2\n", + "4361 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_count/encounters_lifetime_perc_covered\n", + "4362 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4363 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions\n", + "4364 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=encounters_lifetime_payer_coverage+floor(DALY)\n", + "4365 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^Creatinine)\n", + "4366 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^Urea_Nitrogen/medications_lifetime_dispenses\n", + "4367 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(medications_lifetime_dispenses-1)/mean_Microalbumin_Creatinine_Ratio\n", + "4368 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Microalbumin_Creatinine_Ratio)\n", + "4369 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-healthcare_coverage+healthcare_expenses\n", + "4370 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(healthcare_expenses-1)/healthcare_coverage\n", + "4371 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Respiratory_rate-lifetime_care_plans\n", + "4372 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=QALY^2/Sodium\n", + "4373 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(lifetime_conditions,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4374 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/num_allergies)\n", + "4375 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Respiratory_rate,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4376 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Creatinine,floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "4377 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Calcium/mean_Creatinine\n", + "4378 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(Systolic_Blood_Pressure+1)/device_lifetime_length\n", + "4379 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Glucose+Triglycerides\n", + "4380 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(active_care_plans-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4381 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,medications_lifetime+1)\n", + "4382 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime/num_allergies\n", + "4383 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+floor(Creatinine)\n", + "4384 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime_dispenses/Creatinine\n", + "4385 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_care_plans,1/num_allergies)\n", + "4386 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,e^active_care_plans)\n", + "4387 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*mean_Calcium-procedures_lifetime\n", + "4388 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans*log(mean_Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "4389 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*e^medications_lifetime_length\n", + "4390 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,10^medications_active)\n", + "4391 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^medications_lifetime_dispenses*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4392 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,active_conditions^2)\n", + "4393 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^(10^lifetime_care_plans)\n", + "4394 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=QALY^2/medications_lifetime\n", + "4395 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Triglycerides,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "4396 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "4397 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime\n", + "4398 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-healthcare_expenses\n", + "4399 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(num_allergies)\n", + "4400 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies-1\n", + "4401 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(device_lifetime_length,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4402 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Diastolic_Blood_Pressure-mean_Chloride+1\n", + "4403 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_conditions+lifetime_care_plans\n", + "4404 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "4405 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude^procedures_lifetime_cost\n", + "4406 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies^immunizations_lifetime\n", + "4407 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-healthcare_coverage+1\n", + "4408 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-encounters_lifetime_payer_coverage\n", + "4409 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime\n", + "4410 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(mean_Low_Density_Lipoprotein_Cholesterol)-mean_Urea_Nitrogen\n", + "4411 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^encounters_lifetime_perc_covered\n", + "4412 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Creatinine+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4413 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(device_lifetime_length,log(Calcium))\n", + "4414 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_conditions\n", + "4415 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(procedures_lifetime+1)^Bilirubin_total__Mass_volume__in_Urine_by_Test_strip\n", + "4416 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,e^encounters_lifetime_perc_covered)\n", + "4417 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+procedures_lifetime+1\n", + "4418 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+ceil(mean_Respiratory_rate)\n", + "4419 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Potassium+log(encounters_count)\n", + "4420 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Creatinine*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)\n", + "4421 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(1/2*mean_Creatinine)\n", + "4422 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "4423 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,10^num_allergies)\n", + "4424 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*active_care_plan_length-mean_Triglycerides\n", + "4425 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+active_conditions-1\n", + "4426 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(High_Density_Lipoprotein_Cholesterol)-mean_Heart_rate\n", + "4427 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(Creatinine)-procedures_lifetime\n", + "4428 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(Body_Height)/log(10)-medications_lifetime_cost\n", + "4429 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(Globulin__Mass_volume__in_Serum_by_calculation)^immunizations_lifetime\n", + "4430 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+log(medications_lifetime_length)\n", + "4431 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/2*medications_active)\n", + "4432 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Diastolic_Blood_Pressure+ceil(QALY)\n", + "4433 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Respiratory_rate)\n", + "4434 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/Creatinine\n", + "4435 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(medications_active,Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", + "4436 mean_Potassium<=healthcare_expenses\n", + "4437 mean_Potassium<=Potassium+procedures_lifetime\n", + "4438 mean_Potassium<=maximum(active_conditions,Potassium)\n", + "4439 mean_Potassium<=DALY*Respiratory_rate\n", + "4440 mean_Potassium<=e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime_cost\n", + "4441 mean_Potassium<=2*Triglycerides-encounters_count\n", + "4442 mean_Potassium<=sqrt(mean_Calcium)/encounters_lifetime_perc_covered\n", + "4443 mean_Potassium<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4444 mean_Potassium<=Potassium+encounters_lifetime_payer_coverage\n", + "4445 mean_Potassium<=maximum(DALY,Potassium)\n", + "4446 mean_Potassium<=sqrt(QOLS)+Albumin__Mass_volume__in_Serum,Plasma\n", + "4447 mean_Potassium<=-healthcare_coverage+healthcare_expenses\n", + "4448 mean_Potassium<=Potassium+healthcare_coverage\n", + "4449 mean_Potassium<=maximum(Respiratory_rate,Potassium)\n", + "4450 mean_Potassium<=floor(age)/procedures_lifetime\n", + "4451 mean_Potassium<=Potassium/QOLS\n", + "4452 mean_Potassium<=maximum(medications_lifetime,Potassium)\n", + "4453 mean_Potassium<=maximum(Triglycerides,Potassium)\n", + "4454 mean_Potassium<=mean_Urea_Nitrogen^2/mean_Respiratory_rate\n", + "4455 mean_Potassium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(mean_Creatinine)\n", + "4456 mean_Potassium<=10^QOLS+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4457 mean_Potassium<=Glomerular_filtration_rate_1_73_sq_M_predicted^2/Triglycerides\n", + "4458 mean_Potassium<=mean_Carbon_Dioxide^2/Glucose\n", + "4459 mean_Potassium<=Potassium^active_care_plans\n", + "4460 mean_Potassium<=minimum(Estimated_Glomerular_Filtration_Rate,log(Systolic_Blood_Pressure))\n", + "4461 mean_Potassium<=1/2*Heart_rate-mean_Carbon_Dioxide\n", + "4462 mean_Potassium<=10^healthcare_expenses-healthcare_coverage\n", + "4463 mean_Potassium<=sqrt(mean_Estimated_Glomerular_Filtration_Rate)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4464 mean_Potassium<=QALY^2/mean_Triglycerides\n", + "4465 mean_Potassium<=maximum(Potassium,DALY-1)\n", + "4466 mean_Potassium<=Potassium*log(Respiratory_rate)/log(10)\n", + "4467 mean_Potassium>=longitude\n", + "4468 mean_Potassium>=Potassium-procedures_lifetime\n", + "4469 mean_Potassium>=floor(sqrt(Urea_Nitrogen))\n", + "4470 mean_Potassium>=log(Protein__Mass_volume__in_Serum,Plasma+1)\n", + "4471 mean_Potassium>=minimum(Potassium,log(age))\n", + "4472 mean_Potassium>=-healthcare_expenses\n", + "4473 mean_Potassium>=Potassium^QOLS\n", + "4474 mean_Potassium>=log(device_lifetime_length)+medications_lifetime_perc_covered\n", + "4475 mean_Potassium>=(log(encounters_lifetime_payer_coverage)/log(10))^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4476 mean_Potassium>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,Potassium)\n", + "4477 mean_Potassium>=healthcare_expenses^longitude\n", + "4478 mean_Potassium>=sqrt(procedures_lifetime+1)\n", + "4479 mean_Potassium>=2*lifetime_care_plan_length/medications_lifetime_cost\n", + "4480 mean_Potassium>=Potassium-healthcare_coverage\n", + "4481 mean_Potassium>=Potassium/active_care_plans\n", + "4482 mean_Potassium>=Albumin__Mass_volume__in_Serum,Plasma-1\n", + "4483 mean_Potassium>=Sodium-mean_Sodium+1\n", + "4484 mean_Potassium>=2*Low_Density_Lipoprotein_Cholesterol/Heart_rate\n", + "4485 mean_Potassium>=procedures_lifetime^2/mean_Microalbumin_Creatinine_Ratio\n", + "4486 mean_Potassium>=2*immunizations_lifetime_cost/mean_Triglycerides\n", + "4487 mean_Potassium>=encounters_count/mean_Diastolic_Blood_Pressure\n", + "4488 mean_Potassium>=minimum(Potassium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4489 mean_Potassium>=Calcium^2/Carbon_Dioxide\n", + "4490 mean_Potassium>=-Creatinine+medications_active\n", + "4491 mean_Potassium>=Potassium-encounters_lifetime_payer_coverage\n", + "4492 mean_Potassium>=minimum(device_lifetime_length,Potassium)\n", + "4493 mean_Potassium>=log(QOLS)+mean_Creatinine\n", + "4494 mean_Potassium>=(Calcium+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4495 mean_Potassium>=2*Diastolic_Blood_Pressure/High_Density_Lipoprotein_Cholesterol\n", + "4496 mean_Potassium>=-Urea_Nitrogen+mean_Urea_Nitrogen\n", + "4497 mean_Potassium>=(10^healthcare_expenses)^longitude\n", + "4498 mean_QALY<=QALY\n", + "4499 mean_QALY>=QALY\n", + "4500 mean_QOLS<=QOLS\n", + "4501 mean_QOLS>=QOLS\n", + "4502 mean_Respiratory_rate<=healthcare_expenses\n", + "4503 mean_Respiratory_rate<=Respiratory_rate+active_care_plans\n", + "4504 mean_Respiratory_rate<=Respiratory_rate+procedures_lifetime\n", + "4505 mean_Respiratory_rate<=1/encounters_lifetime_perc_covered+Respiratory_rate\n", + "4506 mean_Respiratory_rate<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "4507 mean_Respiratory_rate<=maximum(active_care_plan_length,Respiratory_rate)\n", + "4508 mean_Respiratory_rate<=Respiratory_rate+immunizations_lifetime_cost\n", + "4509 mean_Respiratory_rate<=Respiratory_rate+active_conditions\n", + "4510 mean_Respiratory_rate<=maximum(encounters_count,Respiratory_rate)\n", + "4511 mean_Respiratory_rate<=-healthcare_coverage+healthcare_expenses\n", + "4512 mean_Respiratory_rate<=Respiratory_rate+encounters_lifetime_payer_coverage\n", + "4513 mean_Respiratory_rate<=Respiratory_rate/QOLS\n", + "4514 mean_Respiratory_rate<=Respiratory_rate/imaging_studies_lifetime\n", + "4515 mean_Respiratory_rate<=Calcium+active_conditions\n", + "4516 mean_Respiratory_rate<=floor(Estimated_Glomerular_Filtration_Rate)/immunizations_lifetime\n", + "4517 mean_Respiratory_rate<=maximum(Respiratory_rate,10^active_care_plans)\n", + "4518 mean_Respiratory_rate<=-Heart_rate+Systolic_Blood_Pressure\n", + "4519 mean_Respiratory_rate<=-Creatinine+floor(Carbon_Dioxide)\n", + "4520 mean_Respiratory_rate<=Carbon_Dioxide-active_care_plans-1\n", + "4521 mean_Respiratory_rate<=Respiratory_rate+healthcare_coverage\n", + "4522 mean_Respiratory_rate<=maximum(Respiratory_rate,e^active_care_plans)\n", + "4523 mean_Respiratory_rate<=10^Creatinine+medications_lifetime_length\n", + "4524 mean_Respiratory_rate<=QOLS*ceil(High_Density_Lipoprotein_Cholesterol)\n", + "4525 mean_Respiratory_rate<=sqrt(High_Density_Lipoprotein_Cholesterol)+Urea_Nitrogen\n", + "4526 mean_Respiratory_rate<=ceil(Potassium)^2\n", + "4527 mean_Respiratory_rate<=-Glucose+mean_Sodium-1\n", + "4528 mean_Respiratory_rate<=ceil(latitude)-procedures_lifetime\n", + "4529 mean_Respiratory_rate<=maximum(Respiratory_rate,2*active_conditions)\n", + "4530 mean_Respiratory_rate<=2*encounters_count+procedures_lifetime_cost\n", + "4531 mean_Respiratory_rate<=-Calcium+ceil(Body_Mass_Index)\n", + "4532 mean_Respiratory_rate>=longitude\n", + "4533 mean_Respiratory_rate>=Respiratory_rate-1\n", + "4534 mean_Respiratory_rate>=ceil(sqrt(Systolic_Blood_Pressure))\n", + "4535 mean_Respiratory_rate>=sqrt(lifetime_care_plan_length)-encounters_lifetime_perc_covered\n", + "4536 mean_Respiratory_rate>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "4537 mean_Respiratory_rate>=sqrt(active_condition_length)+Potassium\n", + "4538 mean_Respiratory_rate>=2*active_care_plans+1\n", + "4539 mean_Respiratory_rate>=healthcare_expenses^longitude\n", + "4540 mean_Respiratory_rate>=-healthcare_expenses\n", + "4541 mean_Respiratory_rate>=minimum(procedures_lifetime,Respiratory_rate)\n", + "4542 mean_Respiratory_rate>=sqrt(1/2)*sqrt(immunizations_lifetime_cost)\n", + "4543 mean_Respiratory_rate>=Respiratory_rate-active_conditions\n", + "4544 mean_Respiratory_rate>=active_care_plans*num_allergies\n", + "4545 mean_Respiratory_rate>=-active_care_plans+lifetime_conditions\n", + "4546 mean_Respiratory_rate>=sqrt(medications_lifetime_dispenses)-latitude\n", + "4547 mean_Respiratory_rate>=Respiratory_rate-healthcare_coverage\n", + "4548 mean_Respiratory_rate>=Respiratory_rate-encounters_lifetime_payer_coverage\n", + "4549 mean_Respiratory_rate>=Respiratory_rate^encounters_lifetime_perc_covered\n", + "4550 mean_Respiratory_rate>=Respiratory_rate^imaging_studies_lifetime\n", + "4551 mean_Respiratory_rate>=1/2*Chloride/mean_Potassium\n", + "4552 mean_Respiratory_rate>=Low_Density_Lipoprotein_Cholesterol-mean_Sodium-1\n", + "4553 mean_Respiratory_rate>=(Estimated_Glomerular_Filtration_Rate+1)^medications_lifetime_perc_covered\n", + "4554 mean_Respiratory_rate>=2*medications_active-1\n", + "4555 mean_Respiratory_rate>=minimum(Respiratory_rate,10^num_allergies)\n", + "4556 mean_Respiratory_rate>=(log(QALY)/log(10))^mean_Creatinine\n", + "4557 mean_Respiratory_rate>=floor(1/2*Carbon_Dioxide)\n", + "4558 mean_Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "4559 mean_Respiratory_rate>=2*longitude+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4560 mean_Respiratory_rate>=minimum(Respiratory_rate,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "4561 mean_Respiratory_rate>=sqrt(active_care_plans)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4562 mean_Sodium<=healthcare_expenses\n", + "4563 mean_Sodium<=Sodium+healthcare_coverage\n", + "4564 mean_Sodium<=-Microalbumin_Creatinine_Ratio+2*mean_Total_Cholesterol\n", + "4565 mean_Sodium<=(2*mean_Potassium)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4566 mean_Sodium<=Sodium+log(active_care_plan_length)\n", + "4567 mean_Sodium<=maximum(lifetime_condition_length,Sodium)\n", + "4568 mean_Sodium<=Sodium+procedures_lifetime_cost\n", + "4569 mean_Sodium<=Sodium^active_care_plans\n", + "4570 mean_Sodium<=(encounters_lifetime_perc_covered+1)*mean_Triglycerides\n", + "4571 mean_Sodium<=Urea_Nitrogen*mean_Potassium^2\n", + "4572 mean_Sodium<=-healthcare_coverage+healthcare_expenses\n", + "4573 mean_Sodium<=maximum(Body_Height,Sodium)\n", + "4574 mean_Sodium<=Bilirubin_total__Mass_volume__in_Serum,Plasma^2+Sodium\n", + "4575 mean_Sodium<=1/medications_lifetime_perc_covered+Sodium\n", + "4576 mean_Sodium<=mean_Systolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "4577 mean_Sodium<=Diastolic_Blood_Pressure-longitude-1\n", + "4578 mean_Sodium<=1/2*Body_Weight+mean_Chloride\n", + "4579 mean_Sodium<=maximum(Sodium,e^DALY)\n", + "4580 mean_Sodium<=10^healthcare_expenses-healthcare_coverage\n", + "4581 mean_Sodium<=2*Heart_rate+mean_Respiratory_rate\n", + "4582 mean_Sodium<=2*Body_Weight-active_care_plans\n", + "4583 mean_Sodium<=-active_conditions+ceil(Total_Cholesterol)\n", + "4584 mean_Sodium<=maximum(Total_Cholesterol,abs(Sodium))\n", + "4585 mean_Sodium>=latitude\n", + "4586 mean_Sodium>=minimum(Sodium,Estimated_Glomerular_Filtration_Rate)\n", + "4587 mean_Sodium>=Sodium-mean_Potassium+1\n", + "4588 mean_Sodium>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Sodium)\n", + "4589 mean_Sodium>=sqrt(encounters_lifetime_payer_coverage)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4590 mean_Sodium>=-active_conditions+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4591 mean_Sodium>=-healthcare_expenses\n", + "4592 mean_Sodium>=Sodium/active_care_plans\n", + "4593 mean_Sodium>=Sodium-encounters_lifetime_payer_coverage\n", + "4594 mean_Sodium>=Low_Density_Lipoprotein_Cholesterol-mean_Respiratory_rate-1\n", + "4595 mean_Sodium>=healthcare_expenses^longitude\n", + "4596 mean_Sodium>=Sodium-healthcare_coverage\n", + "4597 mean_Sodium>=minimum(Sodium,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4598 mean_Sodium>=-Low_Density_Lipoprotein_Cholesterol+2*mean_Chloride\n", + "4599 mean_Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "4600 mean_Sodium>=Sodium-procedures_lifetime_cost\n", + "4601 mean_Sodium>=Chloride+2*active_conditions\n", + "4602 mean_Sodium>=Sodium^QOLS\n", + "4603 mean_Sodium>=Diastolic_Blood_Pressure+1/2*High_Density_Lipoprotein_Cholesterol\n", + "4604 mean_Sodium>=minimum(Sodium,2*active_care_plan_length)\n", + "4605 mean_Sodium>=DALY*log(High_Density_Lipoprotein_Cholesterol)\n", + "4606 mean_Sodium>=(High_Density_Lipoprotein_Cholesterol-1)*immunizations_lifetime\n", + "4607 mean_Sodium>=minimum(Sodium,procedures_lifetime^2)\n", + "4608 mean_Sodium>=-active_care_plans+floor(Sodium)\n", + "4609 mean_Systolic_Blood_Pressure<=healthcare_expenses\n", + "4610 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+active_condition_length\n", + "4611 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+2*active_conditions\n", + "4612 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,Body_Height)\n", + "4613 mean_Systolic_Blood_Pressure<=(log(mean_Respiratory_rate)/log(10))^High_Density_Lipoprotein_Cholesterol\n", + "4614 mean_Systolic_Blood_Pressure<=Body_Mass_Index+2*Heart_rate\n", + "4615 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^lifetime_conditions)\n", + "4616 mean_Systolic_Blood_Pressure<=ceil(mean_Chloride)+mean_High_Density_Lipoprotein_Cholesterol\n", + "4617 mean_Systolic_Blood_Pressure<=-healthcare_coverage+healthcare_expenses\n", + "4618 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+healthcare_coverage\n", + "4619 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,active_condition_length^2)\n", + "4620 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+encounters_lifetime_payer_coverage\n", + "4621 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "4622 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure/imaging_studies_lifetime\n", + "4623 mean_Systolic_Blood_Pressure<=2*mean_High_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "4624 mean_Systolic_Blood_Pressure<=active_conditions^2+Systolic_Blood_Pressure\n", + "4625 mean_Systolic_Blood_Pressure<=1/device_lifetime_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4626 mean_Systolic_Blood_Pressure<=Sodium+procedures_lifetime_cost-1\n", + "4627 mean_Systolic_Blood_Pressure<=Triglycerides+1/2*mean_Microalbumin_Creatinine_Ratio\n", + "4628 mean_Systolic_Blood_Pressure<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Glucose\n", + "4629 mean_Systolic_Blood_Pressure<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Systolic_Blood_Pressure\n", + "4630 mean_Systolic_Blood_Pressure<=Low_Density_Lipoprotein_Cholesterol+mean_Microalbumin_Creatinine_Ratio\n", + "4631 mean_Systolic_Blood_Pressure<=(encounters_lifetime_perc_covered+1)*Systolic_Blood_Pressure\n", + "4632 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,1/num_allergies)\n", + "4633 mean_Systolic_Blood_Pressure<=mean_Urea_Nitrogen^2/encounters_lifetime_perc_covered\n", + "4634 mean_Systolic_Blood_Pressure<=QALY*sqrt(mean_Estimated_Glomerular_Filtration_Rate)\n", + "4635 mean_Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate*sqrt(lifetime_care_plan_length)\n", + "4636 mean_Systolic_Blood_Pressure<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*latitude\n", + "4637 mean_Systolic_Blood_Pressure<=mean_Carbon_Dioxide^2/mean_Creatinine\n", + "4638 mean_Systolic_Blood_Pressure<=10^QOLS*Systolic_Blood_Pressure\n", + "4639 mean_Systolic_Blood_Pressure<=(active_conditions-1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "4640 mean_Systolic_Blood_Pressure<=10^Creatinine+Systolic_Blood_Pressure\n", + "4641 mean_Systolic_Blood_Pressure<=10^mean_Creatinine+Triglycerides\n", + "4642 mean_Systolic_Blood_Pressure>=latitude\n", + "4643 mean_Systolic_Blood_Pressure>=log(age)+mean_Glucose\n", + "4644 mean_Systolic_Blood_Pressure>=Heart_rate+Respiratory_rate\n", + "4645 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-active_care_plan_length\n", + "4646 mean_Systolic_Blood_Pressure>=-DALY+Systolic_Blood_Pressure\n", + "4647 mean_Systolic_Blood_Pressure>=floor(Chloride)\n", + "4648 mean_Systolic_Blood_Pressure>=-healthcare_expenses\n", + "4649 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-healthcare_coverage\n", + "4650 mean_Systolic_Blood_Pressure>=Triglycerides+ceil(longitude)\n", + "4651 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Estimated_Glomerular_Filtration_Rate)\n", + "4652 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^QOLS\n", + "4653 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4654 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,High_Density_Lipoprotein_Cholesterol)\n", + "4655 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-active_condition_length\n", + "4656 mean_Systolic_Blood_Pressure>=Body_Height-Heart_rate+1\n", + "4657 mean_Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "4658 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-encounters_lifetime_payer_coverage\n", + "4659 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^encounters_lifetime_perc_covered\n", + "4660 mean_Systolic_Blood_Pressure>=Carbon_Dioxide*log(High_Density_Lipoprotein_Cholesterol)\n", + "4661 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-procedures_lifetime_cost\n", + "4662 mean_Systolic_Blood_Pressure>=log(Diastolic_Blood_Pressure)+mean_Glucose\n", + "4663 mean_Systolic_Blood_Pressure>=encounters_lifetime_perc_covered*floor(Triglycerides)\n", + "4664 mean_Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "4665 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^imaging_studies_lifetime\n", + "4666 mean_Systolic_Blood_Pressure>=2*High_Density_Lipoprotein_Cholesterol-medications_lifetime_cost\n", + "4667 mean_Systolic_Blood_Pressure>=log(active_care_plans)^procedures_lifetime\n", + "4668 mean_Systolic_Blood_Pressure>=QALY*log(procedures_lifetime)\n", + "4669 mean_Systolic_Blood_Pressure>=-Estimated_Glomerular_Filtration_Rate+2*active_condition_length\n", + "4670 mean_Systolic_Blood_Pressure>=sqrt(medications_lifetime_length)+active_care_plans\n", + "4671 mean_Systolic_Blood_Pressure>=Diastolic_Blood_Pressure^2/mean_Glucose\n", + "4672 mean_Systolic_Blood_Pressure>=(Carbon_Dioxide+1)*mean_Creatinine\n", + "4673 mean_Total_Cholesterol<=healthcare_expenses\n", + "4674 mean_Total_Cholesterol<=maximum(Total_Cholesterol,1/num_allergies)\n", + "4675 mean_Total_Cholesterol<=maximum(lifetime_condition_length,Total_Cholesterol)\n", + "4676 mean_Total_Cholesterol<=Total_Cholesterol+procedures_lifetime_cost\n", + "4677 mean_Total_Cholesterol<=(Glucose-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4678 mean_Total_Cholesterol<=maximum(Total_Cholesterol,e^DALY)\n", + "4679 mean_Total_Cholesterol<=Triglycerides+2*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4680 mean_Total_Cholesterol<=Body_Weight+floor(Body_Height)\n", + "4681 mean_Total_Cholesterol<=-healthcare_coverage+healthcare_expenses\n", + "4682 mean_Total_Cholesterol<=Total_Cholesterol+healthcare_coverage\n", + "4683 mean_Total_Cholesterol<=Total_Cholesterol+active_care_plan_length\n", + "4684 mean_Total_Cholesterol<=(Estimated_Glomerular_Filtration_Rate-1)^2\n", + "4685 mean_Total_Cholesterol<=mean_Sodium^2/age\n", + "4686 mean_Total_Cholesterol<=Total_Cholesterol+1/2*Triglycerides\n", + "4687 mean_Total_Cholesterol<=10^healthcare_expenses-healthcare_coverage\n", + "4688 mean_Total_Cholesterol<=2*Body_Weight/medications_lifetime_perc_covered\n", + "4689 mean_Total_Cholesterol<=maximum(Total_Cholesterol,10^active_care_plans)\n", + "4690 mean_Total_Cholesterol<=maximum(Total_Cholesterol,2*Low_Density_Lipoprotein_Cholesterol)\n", + "4691 mean_Total_Cholesterol<=Heart_rate*sqrt(mean_Urea_Nitrogen)\n", + "4692 mean_Total_Cholesterol<=maximum(Total_Cholesterol,2*mean_Low_Density_Lipoprotein_Cholesterol)\n", + "4693 mean_Total_Cholesterol<=e^mean_Respiratory_rate/medications_lifetime_dispenses\n", + "4694 mean_Total_Cholesterol<=DALY+2*Systolic_Blood_Pressure\n", + "4695 mean_Total_Cholesterol<=mean_Systolic_Blood_Pressure^2/mean_High_Density_Lipoprotein_Cholesterol\n", + "4696 mean_Total_Cholesterol>=latitude\n", + "4697 mean_Total_Cholesterol>=Total_Cholesterol-active_care_plan_length\n", + "4698 mean_Total_Cholesterol>=Glucose+1/2*mean_Systolic_Blood_Pressure\n", + "4699 mean_Total_Cholesterol>=Total_Cholesterol-procedures_lifetime_cost\n", + "4700 mean_Total_Cholesterol>=Low_Density_Lipoprotein_Cholesterol*log(DALY)/log(10)\n", + "4701 mean_Total_Cholesterol>=sqrt(active_care_plan_length)*device_lifetime_length\n", + "4702 mean_Total_Cholesterol>=minimum(Body_Height,sqrt(healthcare_coverage))\n", + "4703 mean_Total_Cholesterol>=-healthcare_expenses\n", + "4704 mean_Total_Cholesterol>=floor(mean_Microalbumin_Creatinine_Ratio)-1\n", + "4705 mean_Total_Cholesterol>=minimum(encounters_count,2*Chloride)\n", + "4706 mean_Total_Cholesterol>=maximum(Total_Cholesterol,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4707 mean_Total_Cholesterol>=minimum(lifetime_care_plan_length,Total_Cholesterol)\n", + "4708 mean_Total_Cholesterol>=healthcare_expenses^longitude\n", + "4709 mean_Total_Cholesterol>=Microalbumin_Creatinine_Ratio-mean_Diastolic_Blood_Pressure\n", + "4710 mean_Total_Cholesterol>=Total_Cholesterol-encounters_lifetime_payer_coverage\n", + "4711 mean_Total_Cholesterol>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Estimated_Glomerular_Filtration_Rate\n", + "4712 mean_Total_Cholesterol>=Total_Cholesterol^imaging_studies_lifetime\n", + "4713 mean_Total_Cholesterol>=Total_Cholesterol/medications_lifetime\n", + "4714 mean_Total_Cholesterol>=Systolic_Blood_Pressure*log(mean_Creatinine)\n", + "4715 mean_Total_Cholesterol>=1/2*encounters_lifetime_payer_coverage/QALY\n", + "4716 mean_Total_Cholesterol>=minimum(encounters_count,mean_Respiratory_rate^2)\n", + "4717 mean_Total_Cholesterol>=Total_Cholesterol-healthcare_coverage\n", + "4718 mean_Total_Cholesterol>=-Body_Mass_Index+2*Glucose\n", + "4719 mean_Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "4720 mean_Total_Cholesterol>=(mean_Urea_Nitrogen-1)*active_conditions\n", + "4721 mean_Triglycerides<=healthcare_expenses\n", + "4722 mean_Triglycerides<=maximum(lifetime_condition_length,Triglycerides)\n", + "4723 mean_Triglycerides<=maximum(medications_lifetime,Triglycerides)\n", + "4724 mean_Triglycerides<=Triglycerides+procedures_lifetime_cost\n", + "4725 mean_Triglycerides<=Estimated_Glomerular_Filtration_Rate^2-Heart_rate\n", + "4726 mean_Triglycerides<=(log(Respiratory_rate)/log(10))^Heart_rate\n", + "4727 mean_Triglycerides<=Body_Height+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "4728 mean_Triglycerides<=-healthcare_coverage+healthcare_expenses\n", + "4729 mean_Triglycerides<=Triglycerides+healthcare_coverage\n", + "4730 mean_Triglycerides<=Triglycerides^medications_lifetime\n", + "4731 mean_Triglycerides<=Triglycerides+active_care_plan_length\n", + "4732 mean_Triglycerides<=Triglycerides+e^active_care_plans\n", + "4733 mean_Triglycerides<=Triglycerides/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4734 mean_Triglycerides<=Heart_rate*log(Respiratory_rate)\n", + "4735 mean_Triglycerides<=log(mean_Total_Cholesterol)*mean_Heart_rate/log(10)\n", + "4736 mean_Triglycerides<=-active_care_plan_length+2*mean_Systolic_Blood_Pressure\n", + "4737 mean_Triglycerides<=Carbon_Dioxide+ceil(Body_Height)\n", + "4738 mean_Triglycerides<=Triglycerides+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "4739 mean_Triglycerides<=Sodium*log(mean_Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "4740 mean_Triglycerides<=(mean_Systolic_Blood_Pressure-1)/encounters_lifetime_perc_covered\n", + "4741 mean_Triglycerides<=10^healthcare_expenses-healthcare_coverage\n", + "4742 mean_Triglycerides<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-Glucose\n", + "4743 mean_Triglycerides<=Low_Density_Lipoprotein_Cholesterol+e^Potassium\n", + "4744 mean_Triglycerides>=latitude\n", + "4745 mean_Triglycerides>=log(mean_Estimated_Glomerular_Filtration_Rate)/log(10)+Low_Density_Lipoprotein_Cholesterol\n", + "4746 mean_Triglycerides>=Triglycerides-procedures_lifetime_cost\n", + "4747 mean_Triglycerides>=-mean_High_Density_Lipoprotein_Cholesterol+mean_Microalbumin_Creatinine_Ratio+1\n", + "4748 mean_Triglycerides>=minimum(Systolic_Blood_Pressure,Triglycerides)\n", + "4749 mean_Triglycerides>=minimum(Triglycerides,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4750 mean_Triglycerides>=-Carbon_Dioxide+ceil(Triglycerides)\n", + "4751 mean_Triglycerides>=DALY^2/Calcium\n", + "4752 mean_Triglycerides>=-healthcare_expenses\n", + "4753 mean_Triglycerides>=Triglycerides^imaging_studies_lifetime\n", + "4754 mean_Triglycerides>=Triglycerides/medications_lifetime\n", + "4755 mean_Triglycerides>=1/2*encounters_count+medications_active\n", + "4756 mean_Triglycerides>=1/2*encounters_lifetime_total_cost/Systolic_Blood_Pressure\n", + "4757 mean_Triglycerides>=-age+mean_Microalbumin_Creatinine_Ratio\n", + "4758 mean_Triglycerides>=procedures_lifetime^2-mean_Diastolic_Blood_Pressure\n", + "4759 mean_Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "4760 mean_Triglycerides>=Triglycerides-active_care_plan_length\n", + "4761 mean_Triglycerides>=Diastolic_Blood_Pressure+2*active_conditions\n", + "4762 mean_Triglycerides>=healthcare_expenses^longitude\n", + "4763 mean_Triglycerides>=Triglycerides-healthcare_coverage\n", + "4764 mean_Triglycerides>=Calcium+e^mean_Creatinine\n", + "4765 mean_Triglycerides>=mean_Glucose^2/mean_Heart_rate\n", + "4766 mean_Triglycerides>=2*Glucose-mean_Heart_rate\n", + "4767 mean_Triglycerides>=-Microalbumin_Creatinine_Ratio+mean_Sodium-1\n", + "4768 mean_Triglycerides>=Triglycerides-encounters_lifetime_payer_coverage\n", + "4769 mean_Urea_Nitrogen<=healthcare_expenses\n", + "4770 mean_Urea_Nitrogen<=Urea_Nitrogen+active_care_plans+1\n", + "4771 mean_Urea_Nitrogen<=Urea_Nitrogen+procedures_lifetime_cost\n", + "4772 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,2*DALY)\n", + "4773 mean_Urea_Nitrogen<=maximum(encounters_count,Urea_Nitrogen)\n", + "4774 mean_Urea_Nitrogen<=floor(Urea_Nitrogen)/encounters_lifetime_perc_covered\n", + "4775 mean_Urea_Nitrogen<=Estimated_Glomerular_Filtration_Rate-encounters_lifetime_perc_covered-1\n", + "4776 mean_Urea_Nitrogen<=Albumin__Mass_volume__in_Serum,Plasma*log(age)\n", + "4777 mean_Urea_Nitrogen<=(Diastolic_Blood_Pressure-1)/Creatinine\n", + "4778 mean_Urea_Nitrogen<=1/4*medications_lifetime_cost\n", + "4779 mean_Urea_Nitrogen<=maximum(Triglycerides,Urea_Nitrogen)\n", + "4780 mean_Urea_Nitrogen<=-healthcare_coverage+healthcare_expenses\n", + "4781 mean_Urea_Nitrogen<=Urea_Nitrogen+healthcare_coverage\n", + "4782 mean_Urea_Nitrogen<=Urea_Nitrogen^active_care_plans\n", + "4783 mean_Urea_Nitrogen<=2*Low_Density_Lipoprotein_Cholesterol/active_conditions\n", + "4784 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4785 mean_Urea_Nitrogen<=maximum(Heart_rate,Urea_Nitrogen)\n", + "4786 mean_Urea_Nitrogen<=Urea_Nitrogen+log(encounters_count)\n", + "4787 mean_Urea_Nitrogen<=maximum(active_care_plan_length,Urea_Nitrogen)\n", + "4788 mean_Urea_Nitrogen<=minimum(healthcare_expenses,sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", + "4789 mean_Urea_Nitrogen<=-Glucose+mean_Sodium-1\n", + "4790 mean_Urea_Nitrogen<=1/2*Body_Height-active_care_plan_length\n", + "4791 mean_Urea_Nitrogen<=Body_Mass_Index-mean_Calcium+1\n", + "4792 mean_Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Calcium\n", + "4793 mean_Urea_Nitrogen<=10^healthcare_expenses-healthcare_coverage\n", + "4794 mean_Urea_Nitrogen<=ceil(Urea_Nitrogen)/medications_lifetime_perc_covered\n", + "4795 mean_Urea_Nitrogen<=Body_Height-mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "4796 mean_Urea_Nitrogen>=longitude\n", + "4797 mean_Urea_Nitrogen>=Urea_Nitrogen*log(Potassium)/log(10)\n", + "4798 mean_Urea_Nitrogen>=Urea_Nitrogen-procedures_lifetime_cost\n", + "4799 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4800 mean_Urea_Nitrogen>=Urea_Nitrogen-encounters_lifetime_payer_coverage\n", + "4801 mean_Urea_Nitrogen>=sqrt(mean_Microalbumin_Creatinine_Ratio)-immunizations_lifetime_cost\n", + "4802 mean_Urea_Nitrogen>=Urea_Nitrogen^QOLS\n", + "4803 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,-Triglycerides)\n", + "4804 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,Calcium)\n", + "4805 mean_Urea_Nitrogen>=2*Microalbumin_Creatinine_Ratio/latitude\n", + "4806 mean_Urea_Nitrogen>=log(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/QOLS\n", + "4807 mean_Urea_Nitrogen>=-healthcare_expenses\n", + "4808 mean_Urea_Nitrogen>=2*Triglycerides/QALY\n", + "4809 mean_Urea_Nitrogen>=sqrt(device_lifetime_length)+Potassium\n", + "4810 mean_Urea_Nitrogen>=Urea_Nitrogen*log(lifetime_care_plans)/log(10)\n", + "4811 mean_Urea_Nitrogen>=Urea_Nitrogen-healthcare_coverage\n", + "4812 mean_Urea_Nitrogen>=healthcare_expenses^longitude\n", + "4813 mean_Urea_Nitrogen>=1/2*Body_Mass_Index-lifetime_conditions\n", + "4814 mean_Urea_Nitrogen>=DALY^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "4815 mean_Urea_Nitrogen>=minimum(device_lifetime_length,Urea_Nitrogen)\n", + "4816 mean_Urea_Nitrogen>=High_Density_Lipoprotein_Cholesterol-mean_High_Density_Lipoprotein_Cholesterol+1\n", + "4817 mean_Urea_Nitrogen>=-active_care_plans+log(procedures_lifetime_cost)\n", + "4818 mean_Urea_Nitrogen>=e^(1/2*mean_Creatinine)\n", + "4819 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,mean_Calcium+1)\n", + "4820 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/2*Carbon_Dioxide)\n", + "4821 mean_Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "4822 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "4823 mean_Urea_Nitrogen>=sqrt(encounters_lifetime_payer_coverage)-mean_Glucose\n", + "4824 mean_Urea_Nitrogen>=Urea_Nitrogen/active_care_plans\n", + "4825 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4826 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=QALY+encounters_lifetime_perc_covered\n", + "4827 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4828 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4829 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4830 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4831 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Carbon_Dioxide-QOLS\n", + "4832 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(QALY,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4833 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/active_care_plans\n", + "4834 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Potassium+2*active_conditions\n", + "4835 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4836 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4837 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4838 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "4839 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^immunizations_lifetime\n", + "4840 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "4841 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4842 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(medications_active,Albumin__Mass_volume__in_Serum,Plasma)\n", + "4843 mean_Albumin__Mass_volume__in_Serum,Plasma<=Potassium+1\n", + "4844 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Albumin__Mass_volume__in_Serum,Plasma)\n", + "4845 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(medications_lifetime,Albumin__Mass_volume__in_Serum,Plasma)\n", + "4846 mean_Albumin__Mass_volume__in_Serum,Plasma<=ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4847 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4848 mean_Albumin__Mass_volume__in_Serum,Plasma<=floor(mean_High_Density_Lipoprotein_Cholesterol)/procedures_lifetime\n", + "4849 mean_Albumin__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4850 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma/immunizations_lifetime\n", + "4851 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma^medications_active\n", + "4852 mean_Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "4853 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma\n", + "4854 mean_Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4855 mean_Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4856 mean_Albumin__Mass_volume__in_Serum,Plasma>=-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*procedures_lifetime\n", + "4857 mean_Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4858 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4859 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(age,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4860 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=(age-1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4861 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "4862 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4863 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "4864 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(High_Density_Lipoprotein_Cholesterol,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4865 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4866 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4867 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4868 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4869 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4870 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4871 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-mean_Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*mean_Sodium\n", + "4872 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4873 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4874 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "4875 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=1/2*DALY+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4876 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/immunizations_lifetime\n", + "4877 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma*active_conditions\n", + "4878 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^medications_active\n", + "4879 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(medications_lifetime,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4880 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Heart_rate,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4881 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4882 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4883 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^medications_active)\n", + "4884 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4885 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4886 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4887 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4888 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4889 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=1/4*procedures_lifetime^2\n", + "4890 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4891 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4892 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4893 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4894 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=1/4*Albumin__Mass_volume__in_Serum,Plasma\n", + "4895 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4896 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "4897 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-QOLS+immunizations_lifetime\n", + "4898 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4899 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(encounters_lifetime_perc_covered,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4900 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4901 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4902 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(num_allergies,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4903 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,Specific_gravity_of_Urine_by_Test_strip)\n", + "4904 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "4905 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4906 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma/active_care_plans\n", + "4907 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-mean_Albumin__Mass_volume__in_Serum,Plasma+1/2*procedures_lifetime\n", + "4908 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "4909 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation\n", + "4910 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses^healthcare_coverage\n", + "4911 mean_Globulin__Mass_volume__in_Serum_by_calculation<=(10^healthcare_expenses)^healthcare_coverage\n", + "4912 mean_Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "4913 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation\n", + "4914 mean_Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "4915 mean_Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "4916 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "4917 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "4918 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4919 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses^healthcare_coverage\n", + "4920 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=(mean_Glucose^2)^QOLS\n", + "4921 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=(10^healthcare_expenses)^healthcare_coverage\n", + "4922 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "4923 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4924 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-1/2*DALY+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4925 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "4926 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "4927 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "4928 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted/active_care_plans\n", + "4929 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime_cost\n", + "4930 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted^immunizations_lifetime\n", + "4931 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted/medications_active\n", + "4932 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4933 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(encounters_count,Protein__Mass_volume__in_Serum,Plasma)\n", + "4934 mean_Protein__Mass_volume__in_Serum,Plasma<=sqrt(mean_Creatinine)+Protein__Mass_volume__in_Serum,Plasma\n", + "4935 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "4936 mean_Protein__Mass_volume__in_Serum,Plasma<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Chloride\n", + "4937 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Serum,Plasma,1/2*encounters_count)\n", + "4938 mean_Protein__Mass_volume__in_Serum,Plasma<=(10^healthcare_expenses)^healthcare_coverage\n", + "4939 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses^healthcare_coverage\n", + "4940 mean_Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "4941 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma\n", + "4942 mean_Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4943 mean_Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4944 mean_Protein__Mass_volume__in_Serum,Plasma>=-mean_Urea_Nitrogen^2+encounters_count\n", + "4945 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", "Not ICU\n", - "1 healthcare_expenses<=10^log(encounters_lifetime_total_cost+1)\n", - "2 healthcare_expenses<=10^sqrt(latitude-1)\n", - "3 healthcare_expenses<=QALY^2*lifetime_condition_length^2\n", - "4 healthcare_expenses<=e^(-active_care_plan_length+lifetime_condition_length)\n", - "5 healthcare_expenses<=(latitude-longitude)^active_conditions\n", - "6 healthcare_expenses<=1/2*lifetime_condition_length*medications_lifetime_cost\n", - "7 healthcare_expenses<=QALY^2*medications_lifetime_length\n", - "8 healthcare_expenses<=healthcare_coverage^(1/medications_lifetime_perc_covered)\n", - "9 healthcare_expenses<=healthcare_coverage*medications_lifetime_cost/medications_lifetime_dispenses\n", - "10 healthcare_expenses>=Body_Mass_Index*encounters_count^2\n", - "11 healthcare_expenses>=immunizations_lifetime_cost^2*procedures_lifetime\n", - "12 healthcare_expenses>=healthcare_coverage*log(lifetime_condition_length)\n", - "13 healthcare_expenses>=e^(age/encounters_count)\n", - "14 healthcare_expenses>=e^Respiratory_rate/active_care_plans\n", - "15 healthcare_expenses>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2*healthcare_coverage\n", - "16 healthcare_expenses>=lifetime_care_plan_length^2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", - "17 healthcare_expenses>=(lifetime_condition_length+medications_lifetime)^2\n", - "18 healthcare_expenses>=e^(sqrt(2)*sqrt(Heart_rate))\n", - "19 healthcare_expenses>=(healthcare_coverage^2)^encounters_lifetime_perc_covered\n", - "20 healthcare_expenses<=encounters_lifetime_payer_coverage*longitude^2\n", - "21 healthcare_expenses<=10^sqrt(latitude-1)\n", - "22 healthcare_expenses<=10^(4*DALY^2)\n", - "23 healthcare_expenses<=healthcare_coverage^active_care_plans/medications_lifetime\n", - "24 healthcare_expenses<=healthcare_coverage*lifetime_care_plans/imaging_studies_lifetime\n", - "25 healthcare_expenses<=1/2*latitude^encounters_count\n", - "26 healthcare_expenses<=e^(age/active_care_plans)\n", - "27 healthcare_expenses<=10^log(2*encounters_lifetime_payer_coverage)\n", - "28 healthcare_expenses<=1/2*QALY^4\n", - "29 healthcare_expenses>=healthcare_coverage^2/encounters_count^2\n", - "30 healthcare_expenses>=lifetime_care_plan_length^e^num_allergies\n", - "31 healthcare_expenses>=10^(lifetime_care_plans+medications_lifetime_perc_covered)\n", - "32 healthcare_expenses>=(active_conditions+1)^procedures_lifetime\n", - "33 healthcare_expenses>=1/2*immunizations_lifetime_cost^procedures_lifetime\n", - "34 healthcare_expenses>=minimum(procedures_lifetime_cost,Creatinine)^2\n", - "35 healthcare_expenses>=10^(QOLS+active_care_plans)\n", - "36 healthcare_expenses>=1/2*immunizations_lifetime_cost*procedures_lifetime_cost\n", - "37 healthcare_expenses>=active_conditions^(10^QOLS)\n", - "38 healthcare_expenses>=10^(-DALY+lifetime_conditions)\n", - "39 healthcare_expenses<=encounters_lifetime_total_cost*healthcare_coverage/medications_active\n", - "40 healthcare_expenses<=healthcare_coverage^DALY/imaging_studies_lifetime\n", - "41 healthcare_expenses<=e^(1/2*floor(age))\n", - "42 healthcare_expenses<=-(encounters_lifetime_total_cost-healthcare_coverage)*encounters_lifetime_base_cost\n", - "43 healthcare_expenses<=latitude^lifetime_conditions/active_conditions\n", - "44 healthcare_expenses<=10^abs(log(procedures_lifetime_cost))\n", - "45 healthcare_expenses<=healthcare_coverage*lifetime_condition_length/num_allergies\n", - "46 healthcare_expenses<=QALY^2*latitude^2\n", - "47 healthcare_expenses<=healthcare_coverage^active_care_plans/active_condition_length\n", - "48 healthcare_expenses<=healthcare_coverage*lifetime_condition_length/imaging_studies_lifetime\n", - "49 healthcare_expenses>=(medications_lifetime-1)*medications_lifetime_length\n", - "50 healthcare_expenses>=(active_care_plan_length+lifetime_condition_length)^2\n", - "51 healthcare_expenses>=log(encounters_lifetime_total_cost)*procedures_lifetime_cost/log(10)\n", - "52 healthcare_expenses>=10^e^(e^medications_lifetime_perc_covered)\n", - "53 healthcare_expenses>=10^(active_conditions-medications_lifetime)\n", - "54 healthcare_expenses>=device_lifetime_length^2*encounters_lifetime_payer_coverage\n", - "55 healthcare_expenses>=encounters_count^2*medications_lifetime\n", - "56 healthcare_expenses>=sqrt(medications_lifetime_dispenses)*procedures_lifetime_cost\n", - "57 healthcare_expenses>=medications_lifetime_length^2/encounters_count^2\n", - "58 healthcare_expenses>=10^minimum(active_care_plans,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", - "59 healthcare_coverage<=healthcare_expenses/log(active_conditions)\n", - "60 healthcare_coverage<=encounters_lifetime_payer_coverage^(1/encounters_lifetime_perc_covered)\n", - "61 healthcare_coverage<=latitude^sqrt(medications_lifetime)\n", - "62 healthcare_coverage<=(2*encounters_lifetime_total_cost)^medications_active\n", - "63 healthcare_coverage<=minimum(healthcare_expenses,10^mean_Erythrocytes____volume__in_Blood_by_Automated_count)\n", - "64 healthcare_coverage<=active_conditions*e^encounters_count\n", - "65 healthcare_coverage<=e^(10^e^immunizations_lifetime)\n", - "66 healthcare_coverage<=10^floor(sqrt(active_condition_length))\n", - "67 healthcare_coverage<=(QOLS+1)^QALY\n", - "68 healthcare_coverage>=2*encounters_lifetime_payer_coverage-2*lifetime_care_plan_length\n", - "69 healthcare_coverage>=e^active_conditions/active_care_plan_length\n", - "70 healthcare_coverage>=(QALY+active_conditions)^2\n", - "71 healthcare_coverage>=procedures_lifetime^(1/encounters_lifetime_perc_covered)\n", - "72 healthcare_coverage>=healthcare_expenses/(encounters_lifetime_total_cost-1)\n", - "73 healthcare_coverage>=2*10^log(device_lifetime_length)\n", - "74 healthcare_coverage>=latitude^(1/encounters_lifetime_perc_covered)\n", - "75 healthcare_coverage>=10^log(ceil(active_care_plan_length))\n", - "76 healthcare_coverage>=medications_lifetime_length^2/age^2\n", - "77 healthcare_coverage>=active_care_plans^2*lifetime_condition_length\n", - "78 healthcare_coverage<=-(encounters_lifetime_payer_coverage-latitude)*longitude\n", - "79 healthcare_coverage<=healthcare_expenses/10^num_allergies\n", - "80 healthcare_coverage<=e^(10^e^immunizations_lifetime)\n", - "81 healthcare_coverage<=QALY*healthcare_expenses/medications_lifetime\n", - "82 healthcare_coverage<=10^encounters_count*age\n", - "83 healthcare_coverage<=healthcare_expenses^DALY/active_care_plan_length\n", - "84 healthcare_coverage<=lifetime_condition_length^2/medications_lifetime_perc_covered\n", - "85 healthcare_coverage<=e^(10^(1/imaging_studies_lifetime))\n", - "86 healthcare_coverage<=e^(age/medications_active)\n", - "87 healthcare_coverage>=(2*age)^device_lifetime_length\n", - "88 healthcare_coverage>=16*DALY^2\n", - "89 healthcare_coverage>=sqrt(QALY)*age\n", - "90 healthcare_coverage>=immunizations_lifetime_cost^2/lifetime_conditions\n", - "91 healthcare_coverage>=10^minimum(active_care_plans,mean_Potassium)\n", - "92 healthcare_coverage>=e^(latitude/active_care_plan_length)\n", - "93 healthcare_coverage>=healthcare_expenses/(QALY*lifetime_conditions)\n", - "94 healthcare_coverage>=healthcare_expenses*medications_lifetime_perc_covered/age\n", - "95 healthcare_coverage>=active_care_plans^(log(healthcare_expenses)/log(10))\n", - "96 healthcare_coverage>=10^(10^medications_lifetime_perc_covered-1)\n", - "97 healthcare_coverage<=healthcare_expenses/(active_conditions*medications_lifetime_perc_covered)\n", - "98 healthcare_coverage<=e^(10^e^immunizations_lifetime)\n", - "99 healthcare_coverage<=healthcare_expenses/medications_active^2\n", - "100 healthcare_coverage<=10^(sqrt(1/2)*sqrt(age))\n", - "101 healthcare_coverage<=10^e^(1/encounters_lifetime_perc_covered)\n", - "102 healthcare_coverage<=10^encounters_count/medications_lifetime_dispenses\n", - "103 healthcare_coverage<=e^(10^e^procedures_lifetime)\n", - "104 healthcare_coverage<=maximum(medications_lifetime_cost,healthcare_expenses/age)\n", - "105 healthcare_coverage>=10^(medications_active+medications_lifetime_perc_covered)\n", - "106 healthcare_coverage>=Heart_rate^immunizations_lifetime+1\n", - "107 healthcare_coverage>=10^log(ceil(active_care_plan_length))\n", - "108 healthcare_coverage>=(active_conditions+encounters_count)^2\n", - "109 healthcare_coverage>=lifetime_care_plan_length*sqrt(medications_lifetime_length)\n", - "110 healthcare_coverage>=lifetime_condition_length^e^medications_lifetime_perc_covered\n", - "111 healthcare_coverage>=1/4*(medications_lifetime-1)^2\n", - "112 healthcare_coverage>=maximum(Low_Density_Lipoprotein_Cholesterol,mean_DALY)^2\n", - "113 healthcare_coverage>=16*active_care_plans^4\n", - "114 healthcare_coverage>=maximum(Chloride,mean_DALY)^2\n", - "115 latitude<=healthcare_expenses/(DALY*medications_lifetime)\n", - "116 latitude<=sqrt(active_care_plans)*encounters_count\n", - "117 latitude<=maximum(encounters_count,active_care_plan_length-1)\n", - "118 latitude<=(immunizations_lifetime_cost-lifetime_care_plan_length)^2\n", - "119 latitude<=-active_conditions+age+1\n", - "120 latitude<=medications_lifetime_length/floor(QALY)\n", - "121 latitude<=active_care_plan_length/QOLS\n", - "122 latitude<=QALY/imaging_studies_lifetime\n", - "123 latitude<=minimum(healthcare_expenses,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", - "124 latitude<=minimum(healthcare_expenses,2*Carbon_Dioxide)\n", - "125 latitude>=e^(e^QOLS+1)\n", - "126 latitude>=active_condition_length*medications_lifetime_perc_covered-1\n", - "127 latitude>=ceil(lifetime_condition_length)/active_conditions\n", - "128 latitude>=(encounters_lifetime_perc_covered-1)*longitude\n", - "129 latitude>=2*QALY^encounters_lifetime_perc_covered\n", - "130 latitude>=10^(encounters_count/age)\n", - "131 latitude>=age^(2/log(10))\n", - "132 latitude>=(age^2)^(1/log(10))\n", - "133 latitude>=sqrt(encounters_lifetime_payer_coverage/active_conditions)\n", - "134 latitude<=1/2*sqrt(medications_lifetime_cost)-1\n", - "135 latitude<=2*active_care_plan_length+encounters_lifetime_perc_covered\n", - "136 latitude<=healthcare_expenses^encounters_lifetime_perc_covered+active_care_plan_length\n", - "137 latitude<=healthcare_expenses/encounters_lifetime_payer_coverage+medications_lifetime_perc_covered\n", - "138 latitude<=maximum(active_condition_length,healthcare_expenses/procedures_lifetime_cost)\n", - "139 latitude<=maximum(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,healthcare_expenses^QOLS)\n", - "140 latitude<=medications_lifetime_dispenses/(procedures_lifetime+1)\n", - "141 latitude<=floor(lifetime_condition_length)/immunizations_lifetime\n", - "142 latitude<=10^medications_active*encounters_count\n", - "143 latitude<=log(e^sqrt(healthcare_coverage))/log(10)\n", - "144 latitude>=10^sqrt(log(active_conditions))\n", - "145 latitude>=1/2*immunizations_lifetime_cost-lifetime_care_plan_length\n", - "146 latitude>=(encounters_lifetime_perc_covered-1)^(-2)\n", - "147 latitude>=2*QALY/encounters_count\n", - "148 latitude>=log(10^(2*device_lifetime_length))\n", - "149 latitude>=-DALY+floor(active_condition_length)\n", - "150 latitude>=(active_condition_length-1)*QOLS\n", - "151 latitude>=active_care_plans^2+lifetime_care_plans\n", - "152 latitude>=-DALY^2+encounters_count\n", - "153 latitude>=floor(-DALY+active_condition_length)\n", - "154 latitude<=2*medications_lifetime_cost/medications_lifetime_length\n", - "155 latitude<=2*active_condition_length/immunizations_lifetime\n", - "156 latitude<=QALY*log(10)/log(active_care_plans)\n", - "157 latitude<=2*active_care_plan_length+medications_lifetime_dispenses\n", - "158 latitude<=maximum(healthcare_coverage,medications_lifetime)\n", - "159 latitude<=2*log(immunizations_lifetime_cost)^2\n", - "160 latitude<=sqrt(lifetime_care_plans)*lifetime_condition_length\n", - "161 latitude<=QALY+e^num_allergies\n", - "162 latitude<=1/2*lifetime_condition_length/num_allergies\n", - "163 latitude<=abs(encounters_lifetime_payer_coverage-medications_lifetime_length)\n", - "164 latitude>=1/2*medications_lifetime_cost/encounters_lifetime_total_cost\n", - "165 latitude>=DALY+log(medications_lifetime_cost)\n", - "166 latitude>=e^(sqrt(2)*sqrt(medications_active))\n", - "167 latitude>=active_condition_length*e^(-QOLS)\n", - "168 latitude>=log(2*healthcare_expenses)^2/log(10)^2\n", - "169 latitude>=minimum(immunizations_lifetime_cost,1/2*Heart_rate)\n", - "170 latitude>=active_care_plan_length/(medications_lifetime_perc_covered+1)\n", - "171 latitude>=e^(e^QOLS+1)\n", - "172 latitude>=e^(lifetime_care_plans^encounters_lifetime_perc_covered)\n", - "173 latitude>=1/2*encounters_lifetime_payer_coverage/encounters_count\n", - "174 longitude<=-latitude/QOLS\n", - "175 longitude<=-QALY+2*active_conditions\n", - "176 longitude<=10^QOLS-QALY\n", - "177 longitude<=-QALY*QOLS\n", - "178 longitude<=-age+immunizations_lifetime_cost-1\n", - "179 longitude<=-QALY+medications_lifetime-1\n", - "180 longitude<=10^medications_active-lifetime_care_plan_length\n", - "181 longitude<=healthcare_coverage-1/2*immunizations_lifetime_cost\n", - "182 longitude<=-10^(encounters_lifetime_perc_covered+1)\n", - "183 longitude<=-1/2*lifetime_care_plan_length-1\n", - "184 longitude>=-minimum(healthcare_expenses,Diastolic_Blood_Pressure)\n", - "185 longitude>=-2*latitude+2*procedures_lifetime\n", - "186 longitude>=-(healthcare_expenses-latitude)/encounters_lifetime_payer_coverage\n", - "187 longitude>=-(healthcare_coverage-latitude)/age\n", - "188 longitude>=-lifetime_condition_length/medications_lifetime_perc_covered\n", - "189 longitude>=-active_conditions*lifetime_condition_length\n", - "190 longitude>=QALY-1/2*encounters_lifetime_payer_coverage\n", - "191 longitude>=active_conditions-2*latitude\n", - "192 longitude>=-2*latitude+lifetime_conditions\n", - "193 longitude>=-sqrt(2)*sqrt(healthcare_coverage)\n", - "194 longitude<=QALY-2*latitude\n", - "195 longitude<=(-lifetime_care_plans)^active_care_plans\n", - "196 longitude<=minimum(healthcare_expenses,-High_Density_Lipoprotein_Cholesterol)\n", - "197 longitude<=active_conditions-1/2*encounters_count\n", - "198 longitude<=sqrt(active_condition_length)-age\n", - "199 longitude<=-1/4*immunizations_lifetime_cost\n", - "200 longitude<=-age+encounters_count-1\n", - "201 longitude<=active_conditions/log(medications_lifetime_perc_covered)\n", - "202 longitude<=-floor(active_care_plan_length)+lifetime_care_plans\n", - "203 longitude<=-sqrt(procedures_lifetime_cost)+active_care_plan_length\n", - "204 longitude>=-1/4*medications_lifetime^2\n", - "205 longitude>=log(medications_active)/log(10)-age\n", - "206 longitude>=-10^lifetime_conditions+encounters_count\n", - "207 longitude>=2*active_care_plans-2*latitude\n", - "208 longitude>=log(immunizations_lifetime_cost)/log(10)-age\n", - "209 longitude>=log(num_allergies)/log(10)-medications_lifetime\n", - "210 longitude>=-2*latitude+2*medications_active\n", - "211 longitude>=-minimum(healthcare_expenses,mean_Heart_rate)\n", - "212 longitude<=-1/4*immunizations_lifetime_cost\n", - "213 longitude<=-active_condition_length-2\n", - "214 longitude<=sqrt(lifetime_condition_length)-age\n", - "215 longitude<=-2*QALY+2*active_condition_length\n", - "216 longitude<=-2*QALY+medications_lifetime_dispenses\n", - "217 longitude<=encounters_count*log(QOLS)\n", - "218 longitude<=sqrt(medications_lifetime)-QALY\n", - "219 longitude<=-active_condition_length-procedures_lifetime\n", - "220 longitude<=1/QOLS-active_care_plan_length\n", - "221 longitude>=2*active_care_plans-2*latitude\n", - "222 longitude>=floor(active_condition_length)-lifetime_condition_length\n", - "223 longitude>=-age/encounters_lifetime_perc_covered\n", - "224 longitude>=-2*latitude+2*lifetime_care_plans\n", - "225 longitude>=-2*latitude+procedures_lifetime\n", - "226 longitude>=sqrt(medications_lifetime_dispenses)-lifetime_condition_length\n", - "227 longitude>=floor(active_condition_length-lifetime_condition_length)\n", - "228 longitude>=-minimum(healthcare_expenses,Low_Density_Lipoprotein_Cholesterol)\n", - "229 longitude>=-minimum(healthcare_expenses,mean_Diastolic_Blood_Pressure)\n", - "230 longitude>=-minimum(healthcare_expenses,mean_Heart_rate)\n", - "231 age<=maximum(encounters_count,-longitude)\n", - "232 age<=-longitude/imaging_studies_lifetime\n", - "233 age<=abs(latitude-lifetime_condition_length)\n", - "234 age<=maximum(active_condition_length,2*QALY)\n", - "235 age<=4*log(healthcare_coverage)^2/log(10)^2\n", - "236 age<=encounters_lifetime_perc_covered+2*latitude\n", - "237 age<=(log(medications_lifetime_length)+1)^2\n", - "238 age<=maximum(encounters_lifetime_total_cost,1/2*latitude)\n", - "239 age<=(latitude+1)/encounters_lifetime_perc_covered\n", - "240 age>=e^immunizations_lifetime*lifetime_conditions\n", - "241 age>=lifetime_conditions*log(medications_lifetime_length)/log(10)\n", - "242 age>=log(Respiratory_rate)/log(10)+QALY\n", - "243 age>=lifetime_condition_length^QOLS+1\n", - "244 age>=2*DALY-procedures_lifetime\n", - "245 age>=(Body_Weight+1)/medications_lifetime\n", - "246 age>=e^(-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime)\n", - "247 age>=QALY+lifetime_care_plans\n", - "248 age>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*sqrt(lifetime_condition_length)\n", - "249 age<=Heart_rate*healthcare_expenses/procedures_lifetime_cost\n", - "250 age<=2*Body_Mass_Index+2*encounters_count\n", - "251 age<=sqrt(latitude)+Diastolic_Blood_Pressure\n", - "252 age<=ceil(log(healthcare_coverage)^2)\n", - "253 age<=QALY*log(Diastolic_Blood_Pressure)/log(10)\n", - "254 age<=Systolic_Blood_Pressure^2/Body_Height\n", - "255 age<=-QALY+ceil(Body_Height)\n", - "256 age<=Body_Height/immunizations_lifetime\n", - "257 age<=maximum(mean_Diastolic_Blood_Pressure,10^medications_active)\n", - "258 age<=1/2*floor(mean_Respiratory_rate)^2\n", - "259 age>=latitude+1/2*procedures_lifetime\n", - "260 age>=DALY+QALY+1\n", - "261 age>=sqrt(medications_active)+active_condition_length\n", - "262 age>=log(immunizations_lifetime_cost)/log(10)+QALY\n", - "263 age>=minimum(encounters_count,mean_Estimated_Glomerular_Filtration_Rate-1)\n", - "264 age>=1/2*maximum(Heart_rate,mean_DALY)\n", - "265 age>=log(encounters_lifetime_payer_coverage)*medications_active\n", - "266 age>=log(medications_lifetime_dispenses)/log(10)+QALY\n", - "267 age<=healthcare_coverage/encounters_lifetime_total_cost+medications_lifetime_dispenses\n", - "268 age<=floor(2*latitude)\n", - "269 age<=healthcare_coverage/lifetime_condition_length+active_care_plan_length\n", - "270 age<=DALY^2+QALY\n", - "271 age<=ceil(lifetime_condition_length)/imaging_studies_lifetime\n", - "272 age<=maximum(lifetime_care_plan_length,10^medications_active)\n", - "273 age<=maximum(Body_Weight,healthcare_expenses^encounters_lifetime_perc_covered)\n", - "274 age<=encounters_count^sqrt(active_conditions)\n", - "275 age<=2*latitude-2*medications_lifetime_perc_covered\n", - "276 age<=maximum(Body_Weight,ceil(immunizations_lifetime_cost))\n", - "277 age>=active_care_plan_length+1/2\n", - "278 age>=DALY+QALY+1\n", - "279 age>=10^(medications_lifetime_perc_covered+1)\n", - "280 age>=active_condition_length+num_allergies+1\n", - "281 age>=active_condition_length+lifetime_care_plans\n", - "282 age>=latitude/log(lifetime_care_plans)\n", - "283 age>=-log(medications_lifetime_length)+procedures_lifetime\n", - "284 age>=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^device_lifetime_length)\n", - "285 age>=e^(log(lifetime_care_plans)^2)\n", - "286 num_allergies<=active_care_plans\n", - "287 num_allergies<=active_condition_length-device_lifetime_length\n", - "288 num_allergies<=procedures_lifetime\n", - "289 num_allergies<=floor(2*encounters_lifetime_perc_covered)\n", - "290 num_allergies<=e^device_lifetime_length\n", - "291 num_allergies<=1/2*active_care_plans-immunizations_lifetime\n", - "292 num_allergies<=ceil(medications_lifetime_perc_covered)\n", - "293 num_allergies<=floor(1/2*procedures_lifetime)\n", - "294 num_allergies>=device_lifetime_length\n", - "295 num_allergies<=imaging_studies_lifetime\n", - "296 num_allergies<=device_lifetime_length\n", - "297 num_allergies>=imaging_studies_lifetime\n", - "298 num_allergies<=active_care_plans\n", - "299 num_allergies<=device_lifetime_length\n", - "300 num_allergies<=imaging_studies_lifetime\n", - "301 num_allergies>=floor(device_lifetime_length)\n", - "302 num_allergies>=-device_lifetime_length\n", - "303 num_allergies>=device_lifetime_length^medications_lifetime_cost\n", - "304 active_care_plans<=lifetime_care_plans\n", - "305 active_care_plans<=-imaging_studies_lifetime+lifetime_care_plans\n", - "306 active_care_plans>=e^num_allergies\n", - "307 active_care_plans>=minimum(lifetime_care_plans,2*medications_active)\n", - "308 active_care_plans>=lifetime_care_plans/DALY\n", - "309 active_care_plans>=floor(log(active_conditions))\n", - "310 active_care_plans>=QOLS\n", - "311 active_care_plans>=lifetime_care_plans^immunizations_lifetime\n", - "312 active_care_plans>=minimum(lifetime_care_plans,medications_active)\n", - "313 active_care_plans>=lifetime_care_plans^imaging_studies_lifetime\n", - "314 active_care_plans<=lifetime_care_plans\n", - "315 active_care_plans<=active_conditions-imaging_studies_lifetime\n", - "316 active_care_plans<=lifetime_conditions/immunizations_lifetime\n", - "317 active_care_plans<=-immunizations_lifetime+lifetime_care_plans+1\n", - "318 active_care_plans>=2*immunizations_lifetime\n", - "319 active_care_plans>=-active_conditions+lifetime_conditions\n", - "320 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^immunizations_lifetime\n", - "321 active_care_plans>=-immunizations_lifetime+lifetime_care_plans-1\n", - "322 active_care_plans>=lifetime_care_plans^imaging_studies_lifetime\n", - "323 active_care_plans>=floor(10^medications_lifetime_perc_covered)\n", - "324 active_care_plans>=medications_active-2\n", - "325 active_care_plans>=2*lifetime_care_plans-lifetime_conditions\n", - "326 active_care_plans<=lifetime_care_plans\n", - "327 active_care_plans<=ceil(10^QOLS)\n", - "328 active_care_plans<=2*active_conditions-lifetime_conditions\n", - "329 active_care_plans>=-immunizations_lifetime+lifetime_care_plans\n", - "330 active_care_plans>=lifetime_care_plans-1\n", - "331 active_care_plans>=(1/QOLS)\n", - "332 active_care_plans>=immunizations_lifetime\n", - "333 active_care_plans>=lifetime_care_plans^num_allergies\n", - "334 active_care_plans>=lifetime_care_plans-medications_lifetime\n", - "335 active_care_plans>=-Body_Mass_Index+2*procedures_lifetime\n", - "336 active_care_plans>=minimum(lifetime_care_plans,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "337 active_care_plans>=procedures_lifetime/lifetime_care_plans\n", - "338 lifetime_care_plans<=active_care_plans\n", - "339 lifetime_care_plans>=num_allergies\n", - "340 lifetime_care_plans>=active_care_plans\n", - "341 lifetime_care_plans>=minimum(active_conditions,log(latitude))\n", - "342 lifetime_care_plans<=active_care_plans\n", - "343 lifetime_care_plans>=active_care_plans\n", - "344 lifetime_care_plans>=floor(device_lifetime_length-1)\n", - "345 lifetime_care_plans>=1/2*procedures_lifetime-1\n", - "346 lifetime_care_plans>=minimum(DALY,medications_active+1)\n", - "347 lifetime_care_plans<=lifetime_conditions\n", - "348 lifetime_care_plans<=floor(sqrt(age))\n", - "349 lifetime_care_plans<=maximum(active_care_plans,procedures_lifetime_cost)\n", - "350 lifetime_care_plans<=active_care_plans+2\n", - "351 lifetime_care_plans<=lifetime_conditions-1/2*medications_active\n", - "352 lifetime_care_plans<=(active_care_plans+1)/imaging_studies_lifetime\n", - "353 lifetime_care_plans<=minimum(healthcare_expenses,floor(mean_History_of_Hospitalizations_Outpatient_visits))\n", - "354 lifetime_care_plans<=active_conditions+procedures_lifetime\n", - "355 lifetime_care_plans<=maximum(medications_lifetime,procedures_lifetime)\n", - "356 lifetime_care_plans<=ceil(active_care_plans/encounters_lifetime_perc_covered)\n", - "357 lifetime_care_plans>=active_care_plans\n", - "358 lifetime_care_plans>=active_care_plans+2*num_allergies\n", - "359 lifetime_care_plans>=ceil(-QALY+active_care_plan_length)\n", - "360 active_care_plan_length<=log(medications_lifetime_length)/log(10)-longitude\n", - "361 active_care_plan_length<=lifetime_care_plan_length\n", - "362 active_care_plan_length<=lifetime_condition_length\n", - "363 active_care_plan_length<=healthcare_expenses^QOLS-immunizations_lifetime_cost\n", - "364 active_care_plan_length<=minimum(healthcare_expenses,2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", - "365 active_care_plan_length<=-log(device_lifetime_length)/log(10)+active_condition_length\n", - "366 active_care_plan_length<=healthcare_coverage/(lifetime_condition_length+1)\n", - "367 active_care_plan_length<=active_condition_length/imaging_studies_lifetime\n", - "368 active_care_plan_length<=minimum(healthcare_expenses,Protein__Mass_volume__in_Serum,Plasma)\n", - "369 active_care_plan_length<=QALY-log(device_lifetime_length)\n", - "370 active_care_plan_length>=num_allergies\n", - "371 active_care_plan_length>=QOLS*sqrt(medications_lifetime)\n", - "372 active_care_plan_length>=-immunizations_lifetime_cost+lifetime_care_plan_length\n", - "373 active_care_plan_length>=floor(QOLS)*lifetime_care_plan_length\n", - "374 active_care_plan_length>=active_condition_length-procedures_lifetime_cost\n", - "375 active_care_plan_length>=active_condition_length*imaging_studies_lifetime\n", - "376 active_care_plan_length>=minimum(lifetime_care_plan_length,active_condition_length)-1\n", - "377 active_care_plan_length<=active_condition_length\n", - "378 active_care_plan_length<=longitude^2/active_condition_length\n", - "379 active_care_plan_length<=e^medications_active*latitude\n", - "380 active_care_plan_length>=(immunizations_lifetime+1)^medications_active\n", - "381 active_care_plan_length>=lifetime_care_plan_length/active_care_plans\n", - "382 active_care_plan_length>=e^active_care_plans-procedures_lifetime_cost\n", - "383 active_care_plan_length>=healthcare_expenses^QOLS/encounters_lifetime_total_cost\n", - "384 active_care_plan_length>=(sqrt(lifetime_conditions)-1)^2\n", - "385 active_care_plan_length>=1/2*maximum(High_Density_Lipoprotein_Cholesterol,mean_QOLS)\n", - "386 active_care_plan_length>=minimum(active_condition_length,1/2*lifetime_care_plan_length)\n", - "387 active_care_plan_length>=log(10)*medications_lifetime/log(healthcare_expenses)\n", - "388 active_care_plan_length>=sqrt(medications_lifetime_length)-immunizations_lifetime_cost\n", - "389 active_care_plan_length<=encounters_count+latitude\n", - "390 active_care_plan_length<=lifetime_care_plan_length\n", - "391 active_care_plan_length<=maximum(latitude,active_condition_length)\n", - "392 active_care_plan_length<=log(healthcare_coverage)/imaging_studies_lifetime\n", - "393 active_care_plan_length<=maximum(active_condition_length,QALY)\n", - "394 active_care_plan_length<=floor(sqrt(2)*sqrt(encounters_lifetime_total_cost))\n", - "395 active_care_plan_length<=healthcare_expenses/procedures_lifetime_cost-latitude\n", - "396 active_care_plan_length>=log(healthcare_coverage)+procedures_lifetime\n", - "397 active_care_plan_length>=active_condition_length*log(active_care_plans)/log(10)\n", - "398 active_care_plan_length>=QALY-latitude\n", - "399 active_care_plan_length>=lifetime_care_plan_length/active_care_plans\n", - "400 active_care_plan_length>=minimum(immunizations_lifetime_cost,active_conditions^2)\n", - "401 active_care_plan_length>=minimum(active_condition_length,Creatinine)\n", - "402 active_care_plan_length>=e^(2*num_allergies)-1\n", - "403 lifetime_care_plan_length<=healthcare_expenses/encounters_lifetime_payer_coverage+encounters_lifetime_perc_covered\n", - "404 lifetime_care_plan_length<=(lifetime_condition_length+1)/immunizations_lifetime\n", - "405 lifetime_care_plan_length<=maximum(immunizations_lifetime_cost,sqrt(healthcare_coverage))\n", - "406 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "407 lifetime_care_plan_length<=1/2*lifetime_condition_length+1/2*medications_lifetime\n", - "408 lifetime_care_plan_length<=10^(encounters_count/procedures_lifetime)\n", - "409 lifetime_care_plan_length<=minimum(healthcare_expenses,2*High_Density_Lipoprotein_Cholesterol)\n", - "410 lifetime_care_plan_length<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,1/device_lifetime_length)\n", - "411 lifetime_care_plan_length<=1/2*encounters_lifetime_perc_covered*medications_lifetime_length\n", - "412 lifetime_care_plan_length<=active_care_plan_length^2/lifetime_conditions\n", - "413 lifetime_care_plan_length>=minimum(encounters_count,1/immunizations_lifetime)\n", - "414 lifetime_care_plan_length>=QOLS*e^num_allergies\n", - "415 lifetime_care_plan_length>=maximum(Protein__Mass_volume__in_Serum,Plasma,mean_DALY)\n", - "416 lifetime_care_plan_length>=medications_active^2+active_conditions\n", - "417 lifetime_care_plan_length>=(active_care_plans-1)*DALY\n", - "418 lifetime_care_plan_length>=floor(QALY^QOLS)\n", - "419 lifetime_care_plan_length>=1/2*immunizations_lifetime_cost-latitude\n", - "420 lifetime_care_plan_length>=latitude*log(10)/log(QALY)\n", - "421 lifetime_care_plan_length>=encounters_lifetime_perc_covered*e^active_care_plans\n", - "422 lifetime_care_plan_length>=immunizations_lifetime_cost*medications_lifetime_perc_covered^2\n", - "423 lifetime_care_plan_length<=floor(DALY*latitude)\n", - "424 lifetime_care_plan_length<=active_care_plan_length^2\n", - "425 lifetime_care_plan_length<=minimum(healthcare_expenses,10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "426 lifetime_care_plan_length<=sqrt(healthcare_coverage)+QALY\n", - "427 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "428 lifetime_care_plan_length<=10^(active_condition_length/active_conditions)\n", - "429 lifetime_care_plan_length<=2*active_care_plan_length-longitude\n", - "430 lifetime_care_plan_length<=active_care_plan_length*log(encounters_lifetime_payer_coverage)/log(10)\n", - "431 lifetime_care_plan_length<=(10^encounters_lifetime_perc_covered)^lifetime_conditions\n", - "432 lifetime_care_plan_length<=log(lifetime_condition_length^age)/log(10)\n", - "433 lifetime_care_plan_length>=log(medications_lifetime)/log(10)+active_care_plan_length\n", - "434 lifetime_care_plan_length>=encounters_lifetime_payer_coverage^sqrt(medications_lifetime_perc_covered)\n", - "435 lifetime_care_plan_length>=device_lifetime_length*sqrt(medications_active)\n", - "436 lifetime_care_plan_length>=1/16*active_care_plans^4\n", - "437 lifetime_care_plan_length>=(Respiratory_rate-1)^immunizations_lifetime\n", - "438 lifetime_care_plan_length>=minimum(age,e^lifetime_care_plans)\n", - "439 lifetime_care_plan_length>=encounters_count/(DALY+1)\n", - "440 lifetime_care_plan_length>=2*maximum(MCHC__Mass_volume__by_Automated_count,mean_DALY)\n", - "441 lifetime_care_plan_length>=log(2*medications_lifetime_cost)-1\n", - "442 lifetime_care_plan_length>=log(10^(10^imaging_studies_lifetime))\n", - "443 lifetime_care_plan_length<=(QALY-1)*active_care_plans\n", - "444 lifetime_care_plan_length<=e^(10^sqrt(DALY))\n", - "445 lifetime_care_plan_length<=healthcare_expenses^encounters_lifetime_perc_covered-DALY\n", - "446 lifetime_care_plan_length<=maximum(Chloride,10^medications_active)\n", - "447 lifetime_care_plan_length<=minimum(healthcare_expenses,ceil(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", - "448 lifetime_care_plan_length<=active_care_plan_length^active_care_plans\n", - "449 lifetime_care_plan_length<=active_care_plans*encounters_count+1\n", - "450 lifetime_care_plan_length<=floor(encounters_lifetime_total_cost/device_lifetime_length)\n", - "451 lifetime_care_plan_length<=medications_lifetime_length^2/medications_lifetime^2\n", - "452 lifetime_care_plan_length<=medications_lifetime_dispenses/sqrt(active_condition_length)\n", - "453 lifetime_care_plan_length>=active_care_plan_length*log(procedures_lifetime)/log(10)\n", - "454 lifetime_care_plan_length>=(2*Heart_rate)^medications_lifetime_perc_covered\n", - "455 lifetime_care_plan_length>=e^(encounters_lifetime_perc_covered+1)+1\n", - "456 lifetime_care_plan_length>=(-mean_Calcium)^num_allergies\n", - "457 lifetime_care_plan_length>=medications_lifetime/log(active_care_plan_length)\n", - "458 lifetime_care_plan_length>=age-procedures_lifetime_cost-1\n", - "459 lifetime_care_plan_length>=sqrt(DALY*immunizations_lifetime_cost)\n", - "460 lifetime_care_plan_length>=2*maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_QOLS)\n", - "461 lifetime_care_plan_length>=1/2*sqrt(10^num_allergies)\n", - "462 lifetime_care_plan_length>=(medications_active-medications_lifetime_perc_covered)^2\n", - "463 active_conditions<=lifetime_conditions\n", - "464 active_conditions<=encounters_count\n", - "465 active_conditions<=floor(age/medications_active)\n", - "466 active_conditions>=QOLS\n", - "467 active_conditions>=2*active_care_plans\n", - "468 active_conditions>=lifetime_conditions-1\n", - "469 active_conditions>=lifetime_conditions-procedures_lifetime\n", - "470 active_conditions>=minimum(lifetime_conditions,immunizations_lifetime_cost)\n", - "471 active_conditions>=minimum(lifetime_conditions,medications_active^2)\n", - "472 active_conditions<=lifetime_conditions\n", - "473 active_conditions<=encounters_count\n", - "474 active_conditions<=floor(e^DALY)\n", - "475 active_conditions<=lifetime_conditions-num_allergies\n", - "476 active_conditions<=ceil(log(healthcare_expenses))\n", - "477 active_conditions>=active_care_plans+1\n", - "478 active_conditions>=lifetime_conditions-2\n", - "479 active_conditions>=lifetime_conditions/active_care_plans\n", - "480 active_conditions>=lifetime_care_plans-1\n", - "481 active_conditions>=ceil(10^medications_lifetime_perc_covered)\n", - "482 active_conditions>=lifetime_conditions-medications_active\n", - "483 active_conditions>=-immunizations_lifetime+lifetime_conditions-1\n", - "484 active_conditions>=minimum(lifetime_conditions,sqrt(medications_lifetime))\n", - "485 active_conditions>=minimum(lifetime_conditions,Globulin__Mass_volume__in_Serum_by_calculation)\n", - "486 active_conditions<=lifetime_conditions\n", - "487 active_conditions<=medications_lifetime/imaging_studies_lifetime\n", - "488 active_conditions<=lifetime_conditions+medications_active-1\n", - "489 active_conditions<=2*lifetime_conditions-2*procedures_lifetime\n", - "490 active_conditions<=2/num_allergies+2\n", - "491 active_conditions>=-lifetime_care_plans+lifetime_conditions\n", - "492 active_conditions>=lifetime_conditions-2\n", - "493 active_conditions>=lifetime_conditions^imaging_studies_lifetime\n", - "494 active_conditions>=-immunizations_lifetime_cost+lifetime_conditions\n", - "495 active_conditions>=2*active_care_plans-1\n", - "496 active_conditions>=minimum(lifetime_conditions,1/medications_active)\n", - "497 active_conditions>=floor(sqrt(active_care_plan_length))\n", - "498 active_conditions>=minimum(lifetime_conditions,1/medications_lifetime_perc_covered)\n", - "499 lifetime_conditions<=active_care_plans+active_conditions\n", - "500 lifetime_conditions<=10^e^procedures_lifetime\n", - "501 lifetime_conditions<=active_conditions^2\n", - "502 lifetime_conditions<=encounters_count\n", - "503 lifetime_conditions<=active_care_plans/num_allergies\n", - "504 lifetime_conditions<=-active_care_plans+ceil(active_care_plan_length)\n", - "505 lifetime_conditions<=active_conditions^active_care_plans\n", - "506 lifetime_conditions<=maximum(active_conditions,medications_lifetime)\n", - "507 lifetime_conditions<=maximum(healthcare_coverage,medications_active)\n", - "508 lifetime_conditions<=(active_care_plans+1)^2\n", - "509 lifetime_conditions>=active_conditions\n", - "510 lifetime_conditions>=lifetime_care_plans\n", - "511 lifetime_conditions>=ceil(active_condition_length)/encounters_count\n", - "512 lifetime_conditions>=2*active_care_plans/medications_active\n", - "513 lifetime_conditions<=floor(log(e^latitude)/log(10))\n", - "514 lifetime_conditions<=floor(active_conditions/medications_lifetime_perc_covered)\n", - "515 lifetime_conditions<=encounters_count\n", - "516 lifetime_conditions<=active_conditions^lifetime_care_plans\n", - "517 lifetime_conditions<=10^e^medications_active\n", - "518 lifetime_conditions<=maximum(healthcare_coverage,active_conditions)\n", - "519 lifetime_conditions<=active_conditions^medications_lifetime\n", - "520 lifetime_conditions<=maximum(active_conditions,e^procedures_lifetime)\n", - "521 lifetime_conditions<=(active_conditions-1)^2\n", - "522 lifetime_conditions>=num_allergies\n", - "523 lifetime_conditions>=active_conditions\n", - "524 lifetime_conditions>=lifetime_care_plans-1\n", - "525 lifetime_conditions>=ceil(DALY)-immunizations_lifetime_cost\n", - "526 lifetime_conditions>=2*active_care_plans-2\n", - "527 lifetime_conditions>=2*active_care_plans-healthcare_coverage\n", - "528 lifetime_conditions>=floor(age+longitude)\n", - "529 lifetime_conditions<=maximum(active_conditions,immunizations_lifetime_cost)\n", - "530 lifetime_conditions<=active_conditions/QOLS\n", - "531 lifetime_conditions<=encounters_count-1\n", - "532 lifetime_conditions<=floor(healthcare_coverage^encounters_lifetime_perc_covered)\n", - "533 lifetime_conditions<=10^active_care_plans+1\n", - "534 lifetime_conditions<=maximum(Triglycerides,ceil(active_conditions))\n", - "535 lifetime_conditions<=active_conditions/num_allergies\n", - "536 lifetime_conditions>=active_conditions\n", - "537 active_condition_length<=e^(sqrt(QALY)-1)\n", - "538 active_condition_length<=lifetime_care_plan_length\n", - "539 active_condition_length<=1/2*sqrt(healthcare_coverage)+1/2\n", - "540 active_condition_length<=log(medications_lifetime_cost)/log(10)+active_care_plan_length\n", - "541 active_condition_length<=(age-1)/device_lifetime_length\n", - "542 active_condition_length<=2*e^medications_lifetime-1\n", - "543 active_condition_length<=maximum(active_care_plan_length,e^active_care_plans)\n", - "544 active_condition_length<=2*log(medications_lifetime_cost)^2/log(10)^2\n", - "545 active_condition_length<=maximum(active_care_plan_length,QALY)\n", - "546 active_condition_length<=log(active_conditions)^latitude\n", - "547 active_condition_length>=sqrt(sqrt(1/2)*sqrt(healthcare_coverage))\n", - "548 active_condition_length>=ceil(active_care_plan_length)-medications_lifetime\n", - "549 active_condition_length>=minimum(active_care_plan_length,active_conditions^2)\n", - "550 active_condition_length>=minimum(active_care_plan_length,2*device_lifetime_length)\n", - "551 active_condition_length>=1/2*10^(num_allergies-1)\n", - "552 active_condition_length>=healthcare_expenses*medications_lifetime_perc_covered/healthcare_coverage\n", - "553 active_condition_length>=minimum(active_care_plan_length,e^medications_active)\n", - "554 active_condition_length>=QOLS+1/2*procedures_lifetime\n", - "555 active_condition_length>=latitude/DALY-1\n", - "556 active_condition_length>=1/2*encounters_count/DALY\n", - "557 active_condition_length<=healthcare_expenses^medications_lifetime_perc_covered*DALY\n", - "558 active_condition_length<=sqrt(healthcare_coverage)-latitude\n", - "559 active_condition_length<=(lifetime_care_plan_length+longitude)^2\n", - "560 active_condition_length<=-2*active_care_plans+age\n", - "561 active_condition_length<=-(encounters_lifetime_total_cost-healthcare_expenses)/encounters_lifetime_payer_coverage\n", - "562 active_condition_length<=(healthcare_expenses-procedures_lifetime_cost)/encounters_lifetime_payer_coverage\n", - "563 active_condition_length<=active_conditions^2/medications_lifetime_perc_covered^2\n", - "564 active_condition_length<=sqrt(QOLS)-longitude\n", - "565 active_condition_length<=10^DALY+mean_DALY\n", - "566 active_condition_length<=e^(e^(e^encounters_lifetime_perc_covered))\n", - "567 active_condition_length>=1/2*log(healthcare_expenses)^2/log(10)^2\n", - "568 active_condition_length>=lifetime_condition_length/active_conditions\n", - "569 active_condition_length>=minimum(active_care_plan_length,1/2*lifetime_care_plan_length)\n", - "570 active_condition_length>=e^(lifetime_condition_length^(1/4))\n", - "571 active_condition_length>=ceil(active_care_plan_length)-medications_active\n", - "572 active_condition_length>=active_conditions*log(procedures_lifetime_cost)\n", - "573 active_condition_length>=-sqrt(medications_active)+active_care_plan_length\n", - "574 active_condition_length>=minimum(active_care_plan_length,lifetime_conditions^2)\n", - "575 active_condition_length>=active_care_plan_length^imaging_studies_lifetime\n", - "576 active_condition_length>=QALY-e^active_conditions\n", - "577 active_condition_length<=-active_care_plans+age\n", - "578 active_condition_length<=lifetime_condition_length\n", - "579 active_condition_length<=4*log(encounters_lifetime_total_cost)^2/log(10)^2\n", - "580 active_condition_length<=healthcare_expenses^QOLS-mean_QOLS\n", - "581 active_condition_length<=(healthcare_coverage-1)^(1/log(10))\n", - "582 active_condition_length<=(QALY-1)/medications_lifetime_perc_covered\n", - "583 active_condition_length<=2*latitude/imaging_studies_lifetime\n", - "584 active_condition_length<=maximum(active_care_plan_length,1/device_lifetime_length)\n", - "585 active_condition_length<=minimum(healthcare_expenses,Protein__Mass_volume__in_Serum,Plasma)\n", - "586 active_condition_length<=encounters_count*healthcare_expenses/healthcare_coverage\n", - "587 active_condition_length>=minimum(active_care_plan_length,encounters_count)\n", - "588 active_condition_length>=sqrt(Systolic_Blood_Pressure+immunizations_lifetime_cost)\n", - "589 active_condition_length>=age/(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)\n", - "590 active_condition_length>=active_care_plan_length/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "591 active_condition_length>=Diastolic_Blood_Pressure*log(10)/log(healthcare_expenses)\n", - "592 active_condition_length>=e^procedures_lifetime*medications_active\n", - "593 active_condition_length>=active_care_plan_length-medications_lifetime_cost\n", - "594 lifetime_condition_length<=2*healthcare_coverage/active_care_plan_length\n", - "595 lifetime_condition_length<=encounters_lifetime_perc_covered*latitude^2\n", - "596 lifetime_condition_length<=e^(sqrt(latitude+1))\n", - "597 lifetime_condition_length<=ceil(active_care_plan_length)*lifetime_conditions\n", - "598 lifetime_condition_length<=ceil(1/4*lifetime_care_plan_length^2)\n", - "599 lifetime_condition_length<=QALY*lifetime_care_plans^2\n", - "600 lifetime_condition_length<=(medications_lifetime+1)*QALY\n", - "601 lifetime_condition_length<=encounters_lifetime_perc_covered+1/2*medications_lifetime_dispenses\n", - "602 lifetime_condition_length<=e^(-encounters_lifetime_perc_covered+lifetime_conditions)\n", - "603 lifetime_condition_length<=QOLS^2*medications_lifetime_length\n", - "604 lifetime_condition_length>=(sqrt(QALY)-1)^2\n", - "605 lifetime_condition_length>=encounters_lifetime_payer_coverage^2/medications_lifetime_cost\n", - "606 lifetime_condition_length>=encounters_lifetime_payer_coverage^2/healthcare_expenses\n", - "607 lifetime_condition_length>=(lifetime_conditions+1)*DALY\n", - "608 lifetime_condition_length>=sqrt(medications_lifetime_dispenses)-2\n", - "609 lifetime_condition_length>=log(active_care_plans)^active_conditions\n", - "610 lifetime_condition_length>=immunizations_lifetime_cost-procedures_lifetime_cost+1\n", - "611 lifetime_condition_length>=10^(log(10)/log(encounters_count))\n", - "612 lifetime_condition_length>=log(procedures_lifetime_cost^procedures_lifetime)\n", - "613 lifetime_condition_length>=2*encounters_count-2*lifetime_care_plan_length\n", - "614 lifetime_condition_length<=minimum(healthcare_expenses,mean_Estimated_Glomerular_Filtration_Rate^2)\n", - "615 lifetime_condition_length<=active_care_plan_length^active_conditions\n", - "616 lifetime_condition_length<=-(active_care_plan_length-healthcare_coverage)/latitude\n", - "617 lifetime_condition_length<=QALY*log(medications_lifetime_length)\n", - "618 lifetime_condition_length<=age*log(healthcare_expenses)/log(10)\n", - "619 lifetime_condition_length<=maximum(immunizations_lifetime_cost,encounters_count^2)\n", - "620 lifetime_condition_length<=-sqrt(healthcare_coverage)+procedures_lifetime_cost\n", - "621 lifetime_condition_length<=active_conditions*latitude+1\n", - "622 lifetime_condition_length<=healthcare_coverage/encounters_count+medications_lifetime\n", - "623 lifetime_condition_length<=medications_lifetime_dispenses/10^encounters_lifetime_perc_covered\n", - "624 lifetime_condition_length>=immunizations_lifetime_cost-latitude-1\n", - "625 lifetime_condition_length>=1/2*encounters_count-1/2*encounters_lifetime_perc_covered\n", - "626 lifetime_condition_length>=2*maximum(Protein__Mass_volume__in_Serum,Plasma,mean_DALY)\n", - "627 lifetime_condition_length>=DALY^2-encounters_lifetime_payer_coverage\n", - "628 lifetime_condition_length>=(log(mean_Glucose)/log(10))^device_lifetime_length\n", - "629 lifetime_condition_length>=latitude-medications_lifetime-1\n", - "630 lifetime_condition_length>=active_condition_length*e^imaging_studies_lifetime\n", - "631 lifetime_condition_length>=2*lifetime_care_plan_length*num_allergies\n", - "632 lifetime_condition_length>=2*maximum(mean_Microalbumin_Creatinine_Ratio,mean_QOLS)\n", - "633 lifetime_condition_length>=minimum(immunizations_lifetime_cost,High_Density_Lipoprotein_Cholesterol)\n", - "634 lifetime_condition_length<=sqrt(10^DALY-1)\n", - "635 lifetime_condition_length<=healthcare_expenses/(age*latitude)\n", - "636 lifetime_condition_length<=Body_Mass_Index^2+1\n", - "637 lifetime_condition_length<=lifetime_care_plan_length*log(mean_Systolic_Blood_Pressure)\n", - "638 lifetime_condition_length<=maximum(lifetime_care_plan_length,e^active_conditions)\n", - "639 lifetime_condition_length<=medications_lifetime_dispenses/medications_active-1\n", - "640 lifetime_condition_length<=2*encounters_count/medications_lifetime_perc_covered\n", - "641 lifetime_condition_length<=Heart_rate^2*encounters_lifetime_perc_covered^2\n", - "642 lifetime_condition_length<=4*mean_Systolic_Blood_Pressure+4\n", - "643 lifetime_condition_length<=sqrt(medications_lifetime_cost)/immunizations_lifetime\n", - "644 lifetime_condition_length>=(encounters_lifetime_perc_covered+1)^lifetime_conditions\n", - "645 lifetime_condition_length>=2*ceil(age)\n", - "646 lifetime_condition_length>=e^(log(medications_lifetime)-1)\n", - "647 lifetime_condition_length>=(log(healthcare_coverage)-1)^2\n", - "648 lifetime_condition_length>=ceil(lifetime_care_plan_length)+lifetime_conditions\n", - "649 lifetime_condition_length>=sqrt(device_lifetime_length)*latitude\n", - "650 lifetime_condition_length>=Body_Height^imaging_studies_lifetime\n", - "651 lifetime_condition_length>=e^(sqrt(1/2)*sqrt(active_condition_length))\n", - "652 lifetime_condition_length>=1/2*10^e^QOLS\n", - "653 lifetime_condition_length>=2*procedures_lifetime_cost/encounters_count\n", - "654 device_lifetime_length<=active_care_plan_length-log(lifetime_care_plan_length)\n", - "655 device_lifetime_length<=lifetime_care_plan_length^2/medications_lifetime\n", - "656 device_lifetime_length<=(1/2*procedures_lifetime_cost)^medications_lifetime_perc_covered\n", - "657 device_lifetime_length<=immunizations_lifetime_cost\n", - "658 device_lifetime_length<=minimum(healthcare_expenses,floor(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", - "659 device_lifetime_length<=DALY^healthcare_expenses\n", - "660 device_lifetime_length<=floor(1/imaging_studies_lifetime)\n", - "661 device_lifetime_length>=num_allergies\n", - "662 device_lifetime_length<=medications_lifetime_cost^longitude\n", - "663 device_lifetime_length<=2*immunizations_lifetime_cost/DALY\n", - "664 device_lifetime_length<=immunizations_lifetime_cost\n", - "665 device_lifetime_length<=procedures_lifetime_cost\n", - "666 device_lifetime_length>=-num_allergies\n", - "667 device_lifetime_length>=-healthcare_coverage\n", - "668 device_lifetime_length>=log(num_allergies)/log(10)\n", - "669 device_lifetime_length<=1/2*immunizations_lifetime_cost/active_conditions\n", - "670 device_lifetime_length<=healthcare_coverage\n", - "671 device_lifetime_length<=immunizations_lifetime_cost\n", - "672 device_lifetime_length<=procedures_lifetime_cost^longitude\n", - "673 device_lifetime_length<=DALY^2\n", - "674 device_lifetime_length<=floor(1/imaging_studies_lifetime)\n", - "675 device_lifetime_length<=log(active_care_plans)^healthcare_expenses\n", - "676 device_lifetime_length<=-active_conditions+medications_lifetime\n", - "677 device_lifetime_length<=2*medications_active-2\n", - "678 device_lifetime_length<=floor(1/procedures_lifetime)\n", - "679 device_lifetime_length>=-imaging_studies_lifetime\n", - "680 device_lifetime_length>=-num_allergies\n", - "681 device_lifetime_length>=maximum(Total_score__MMSE_,mean_QOLS)-1\n", - "682 device_lifetime_length>=-sqrt(QALY)+medications_active\n", - "683 encounters_count<=lifetime_condition_length\n", - "684 encounters_count<=-ceil(longitude)+immunizations_lifetime_cost\n", - "685 encounters_count<=maximum(active_care_plans,medications_lifetime_cost)\n", - "686 encounters_count<=2*active_care_plans+medications_lifetime\n", - "687 encounters_count<=log(healthcare_expenses)/log(10)+medications_lifetime\n", - "688 encounters_count<=10^sqrt(active_care_plans+1)\n", - "689 encounters_count<=-sqrt(active_care_plan_length)+lifetime_condition_length\n", - "690 encounters_count<=minimum(healthcare_expenses,2*mean_Diastolic_Blood_Pressure)\n", - "691 encounters_count<=2*10^(1/encounters_lifetime_perc_covered)\n", - "692 encounters_count<=maximum(active_care_plans,medications_lifetime^2)\n", - "693 encounters_count>=minimum(mean_Diastolic_Blood_Pressure,1/medications_active)\n", - "694 encounters_count>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", - "695 encounters_count>=-ceil(lifetime_condition_length)+medications_lifetime\n", - "696 encounters_count>=active_conditions^2-procedures_lifetime_cost\n", - "697 encounters_count>=2*active_care_plans\n", - "698 encounters_count>=Diastolic_Blood_Pressure*e^(-medications_active)\n", - "699 encounters_count>=floor(Body_Weight)-immunizations_lifetime_cost\n", - "700 encounters_count>=maximum(Estimated_Glomerular_Filtration_Rate,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "701 encounters_count>=log(lifetime_care_plan_length)^procedures_lifetime\n", - "702 encounters_count<=10^(encounters_lifetime_total_cost/medications_lifetime_dispenses)\n", - "703 encounters_count<=-2*active_care_plans+2*lifetime_care_plan_length\n", - "704 encounters_count<=maximum(latitude,medications_lifetime+1)\n", - "705 encounters_count<=2*sqrt(2)*sqrt(encounters_lifetime_payer_coverage)\n", - "706 encounters_count<=10^procedures_lifetime*DALY\n", - "707 encounters_count<=(latitude+1)/encounters_lifetime_perc_covered\n", - "708 encounters_count<=ceil(10^(1/encounters_lifetime_perc_covered))\n", - "709 encounters_count<=maximum(active_conditions,procedures_lifetime_cost)\n", - "710 encounters_count<=log(healthcare_coverage)+medications_lifetime\n", - "711 encounters_count<=encounters_lifetime_total_cost/sqrt(procedures_lifetime_cost)\n", - "712 encounters_count>=ceil(DALY)\n", - "713 encounters_count>=Respiratory_rate/DALY\n", - "714 encounters_count>=-2*Heart_rate+mean_Systolic_Blood_Pressure\n", - "715 encounters_count>=minimum(medications_lifetime,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "716 encounters_count>=medications_lifetime/active_care_plans+1\n", - "717 encounters_count>=(lifetime_conditions+1)*procedures_lifetime\n", - "718 encounters_count>=(2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^procedures_lifetime\n", - "719 encounters_count>=floor(age)^imaging_studies_lifetime\n", - "720 encounters_count>=-1/2*latitude+1/2*medications_lifetime\n", - "721 encounters_count>=active_conditions^(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", - "722 encounters_count<=floor(log(e^lifetime_condition_length)/log(10))\n", - "723 encounters_count<=maximum(age,medications_lifetime)\n", - "724 encounters_count<=abs(-QALY+lifetime_condition_length)\n", - "725 encounters_count<=floor(age)/imaging_studies_lifetime\n", - "726 encounters_count<=QALY+medications_lifetime\n", - "727 encounters_count<=minimum(healthcare_expenses,2*mean_Microalbumin_Creatinine_Ratio)\n", - "728 encounters_count<=ceil(active_care_plan_length)^2\n", - "729 encounters_count<=e^(2*e^active_care_plans)\n", - "730 encounters_count<=active_condition_length^2/medications_active^2\n", - "731 encounters_count<=floor(QALY)+medications_lifetime\n", - "732 encounters_count>=2*active_care_plans\n", - "733 encounters_count>=2*lifetime_care_plans\n", - "734 encounters_count>=(active_care_plans-1)*procedures_lifetime\n", - "735 encounters_count>=-lifetime_care_plan_length+medications_lifetime+1\n", - "736 encounters_count>=ceil(sqrt(device_lifetime_length))\n", - "737 encounters_count>=-DALY^2+medications_lifetime\n", - "738 encounters_count>=floor(medications_lifetime_cost/healthcare_coverage)\n", - "739 encounters_count>=e^(lifetime_care_plan_length/age)\n", - "740 encounters_count>=1/4*medications_lifetime\n", - "741 encounters_count>=2*maximum(Microalbumin_Creatinine_Ratio,mean_QOLS)\n", - "742 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "743 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "744 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "745 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "746 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", - "747 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", - "748 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "749 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "750 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "751 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "752 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", - "753 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", - "754 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "755 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "756 encounters_lifetime_payer_coverage>=num_allergies\n", - "757 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "758 encounters_lifetime_payer_coverage>=-DALY^2+medications_lifetime_dispenses\n", - "759 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "760 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "761 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "762 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "763 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "764 encounters_lifetime_payer_coverage<=ceil(encounters_lifetime_total_cost)*encounters_lifetime_perc_covered\n", - "765 encounters_lifetime_payer_coverage<=e^(sqrt(2)*sqrt(lifetime_care_plan_length))\n", - "766 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", - "767 encounters_lifetime_payer_coverage>=floor(encounters_lifetime_perc_covered*encounters_lifetime_total_cost)\n", - "768 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "769 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "770 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "771 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "772 encounters_lifetime_perc_covered<=healthcare_coverage\n", - "773 encounters_lifetime_perc_covered<=active_care_plans\n", - "774 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/(encounters_lifetime_total_cost-1)\n", - "775 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "776 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "777 encounters_lifetime_perc_covered<=encounters_lifetime_payer_coverage/floor(encounters_lifetime_total_cost)\n", - "778 encounters_lifetime_perc_covered<=log(2*lifetime_care_plan_length+2)\n", - "779 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", - "780 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage/ceil(encounters_lifetime_total_cost)\n", - "781 imaging_studies_lifetime<=procedures_lifetime\n", - "782 imaging_studies_lifetime<=medications_lifetime\n", - "783 imaging_studies_lifetime<=immunizations_lifetime_cost\n", - "784 imaging_studies_lifetime<=floor(1/DALY)\n", - "785 imaging_studies_lifetime<=2*floor(QOLS)\n", - "786 imaging_studies_lifetime>=num_allergies\n", - "787 imaging_studies_lifetime>=floor(medications_lifetime/lifetime_condition_length)\n", - "788 imaging_studies_lifetime<=active_care_plans\n", - "789 imaging_studies_lifetime<=device_lifetime_length\n", - "790 imaging_studies_lifetime<=medications_active\n", - "791 imaging_studies_lifetime<=floor(device_lifetime_length)\n", - "792 imaging_studies_lifetime>=-device_lifetime_length\n", - "793 imaging_studies_lifetime>=-num_allergies\n", - "794 imaging_studies_lifetime>=-active_care_plans+1/2*lifetime_care_plans\n", - "795 imaging_studies_lifetime<=medications_lifetime\n", - "796 imaging_studies_lifetime<=immunizations_lifetime\n", - "797 imaging_studies_lifetime<=procedures_lifetime\n", - "798 imaging_studies_lifetime<=DALY\n", - "799 imaging_studies_lifetime<=num_allergies^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "800 imaging_studies_lifetime<=ceil(medications_lifetime_perc_covered)\n", - "801 imaging_studies_lifetime>=-num_allergies\n", - "802 imaging_studies_lifetime>=log(num_allergies)/log(10)\n", - "803 imaging_studies_lifetime>=floor(log(procedures_lifetime)/log(10))\n", - "804 immunizations_lifetime<=healthcare_coverage\n", - "805 immunizations_lifetime<=ceil(log(active_conditions)/log(10))\n", - "806 immunizations_lifetime<=immunizations_lifetime_cost\n", - "807 immunizations_lifetime<=procedures_lifetime\n", - "808 immunizations_lifetime<=active_care_plans-imaging_studies_lifetime\n", - "809 immunizations_lifetime<=log(10)/log(procedures_lifetime)\n", - "810 immunizations_lifetime<=(1/QOLS)\n", - "811 immunizations_lifetime<=minimum(healthcare_expenses,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "812 immunizations_lifetime>=num_allergies\n", - "813 immunizations_lifetime>=floor(QOLS)\n", - "814 immunizations_lifetime>=active_care_plans-medications_lifetime\n", - "815 immunizations_lifetime>=minimum(immunizations_lifetime_cost,e^num_allergies)\n", - "816 immunizations_lifetime>=2*active_conditions-encounters_count\n", - "817 immunizations_lifetime>=floor(1/medications_active)\n", - "818 immunizations_lifetime<=active_care_plans\n", - "819 immunizations_lifetime<=immunizations_lifetime_cost\n", - "820 immunizations_lifetime<=medications_active\n", - "821 immunizations_lifetime<=e^num_allergies\n", - "822 immunizations_lifetime>=num_allergies\n", - "823 immunizations_lifetime>=imaging_studies_lifetime\n", - "824 immunizations_lifetime>=2*num_allergies\n", - "825 immunizations_lifetime>=num_allergies^medications_lifetime\n", - "826 immunizations_lifetime>=minimum(immunizations_lifetime_cost,1/2*procedures_lifetime)\n", - "827 immunizations_lifetime>=minimum(immunizations_lifetime_cost,num_allergies+1)\n", - "828 immunizations_lifetime>=floor(log(1/2*immunizations_lifetime_cost)/log(10))\n", - "829 immunizations_lifetime<=active_care_plans\n", - "830 immunizations_lifetime<=immunizations_lifetime_cost\n", - "831 immunizations_lifetime<=procedures_lifetime\n", - "832 immunizations_lifetime<=(1/QOLS)\n", - "833 immunizations_lifetime<=(1/imaging_studies_lifetime)\n", - "834 immunizations_lifetime<=e^medications_active\n", - "835 immunizations_lifetime<=floor(log(active_conditions))\n", - "836 immunizations_lifetime>=num_allergies\n", - "837 immunizations_lifetime>=-active_care_plans+lifetime_care_plans\n", - "838 immunizations_lifetime>=minimum(immunizations_lifetime_cost,e^num_allergies)\n", - "839 immunizations_lifetime>=floor(log(procedures_lifetime)/log(10))\n", - "840 immunizations_lifetime>=floor(1/medications_active)\n", - "841 immunizations_lifetime>=-active_care_plans+medications_active-1\n", - "842 immunizations_lifetime>=floor(encounters_count/lifetime_care_plan_length)\n", - "843 immunizations_lifetime_cost<=encounters_lifetime_payer_coverage-log(age)\n", - "844 immunizations_lifetime_cost<=active_condition_length^e^encounters_lifetime_perc_covered\n", - "845 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "846 immunizations_lifetime_cost<=minimum(healthcare_expenses,mean_Sodium+1)\n", - "847 immunizations_lifetime_cost<=(medications_lifetime_dispenses+1)/medications_active\n", - "848 immunizations_lifetime_cost<=maximum(mean_Sodium,healthcare_expenses/medications_lifetime_length)\n", - "849 immunizations_lifetime_cost>=num_allergies\n", - "850 immunizations_lifetime_cost>=2*QALY*immunizations_lifetime\n", - "851 immunizations_lifetime_cost>=log(immunizations_lifetime)*medications_lifetime_dispenses/log(10)\n", - "852 immunizations_lifetime_cost>=2*lifetime_care_plan_length-medications_lifetime_cost\n", - "853 immunizations_lifetime_cost>=sqrt(encounters_lifetime_total_cost*num_allergies)\n", - "854 immunizations_lifetime_cost>=num_allergies^(active_care_plans+1)\n", - "855 immunizations_lifetime_cost>=ceil(DALY)*device_lifetime_length\n", - "856 immunizations_lifetime_cost<=-2*longitude-1\n", - "857 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "858 immunizations_lifetime_cost<=healthcare_coverage/(QALY-1)\n", - "859 immunizations_lifetime_cost<=maximum(Sodium,healthcare_expenses/encounters_lifetime_payer_coverage)\n", - "860 immunizations_lifetime_cost<=healthcare_expenses/procedures_lifetime_cost+latitude\n", - "861 immunizations_lifetime_cost<=e^(-medications_active)*medications_lifetime_length\n", - "862 immunizations_lifetime_cost<=medications_lifetime_dispenses/sqrt(device_lifetime_length)\n", - "863 immunizations_lifetime_cost>=num_allergies\n", - "864 immunizations_lifetime_cost>=maximum(Systolic_Blood_Pressure,-healthcare_expenses)\n", - "865 immunizations_lifetime_cost>=maximum(mean_Low_Density_Lipoprotein_Cholesterol,-healthcare_expenses)\n", - "866 immunizations_lifetime_cost>=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,-healthcare_expenses)\n", - "867 immunizations_lifetime_cost>=-sqrt(healthcare_coverage)+encounters_count\n", - "868 immunizations_lifetime_cost>=device_lifetime_length^2-latitude\n", - "869 immunizations_lifetime_cost>=log(procedures_lifetime_cost^device_lifetime_length)\n", - "870 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "871 immunizations_lifetime_cost<=QALY^2+DALY\n", - "872 immunizations_lifetime_cost<=minimum(healthcare_expenses,2*mean_Sodium)\n", - "873 immunizations_lifetime_cost<=(2*Body_Weight)^immunizations_lifetime\n", - "874 immunizations_lifetime_cost<=e^(encounters_lifetime_payer_coverage/lifetime_condition_length)\n", - "875 immunizations_lifetime_cost<=healthcare_coverage/age+1\n", - "876 immunizations_lifetime_cost<=2*lifetime_care_plan_length/imaging_studies_lifetime\n", - "877 immunizations_lifetime_cost>=num_allergies\n", - "878 immunizations_lifetime_cost>=maximum(Systolic_Blood_Pressure,-healthcare_expenses)\n", - "879 immunizations_lifetime_cost>=-encounters_count+1/2*medications_lifetime\n", - "880 immunizations_lifetime_cost>=1/2*encounters_lifetime_payer_coverage*num_allergies\n", - "881 immunizations_lifetime_cost>=immunizations_lifetime^(active_care_plan_length+1)\n", - "882 immunizations_lifetime_cost>=log(10)*longitude/log(DALY)\n", - "883 immunizations_lifetime_cost>=mean_Sodium^imaging_studies_lifetime-1\n", - "884 medications_lifetime<=medications_lifetime_length/active_conditions-1\n", - "885 medications_lifetime<=10^num_allergies*encounters_count\n", - "886 medications_lifetime<=active_conditions*ceil(QALY)\n", - "887 medications_lifetime<=10^(e^active_care_plans-1)\n", - "888 medications_lifetime<=maximum(procedures_lifetime_cost,2*active_care_plan_length)\n", - "889 medications_lifetime<=encounters_count^active_care_plans\n", - "890 medications_lifetime<=maximum(Body_Height,e^immunizations_lifetime_cost)\n", - "891 medications_lifetime<=QALY+e^active_care_plans\n", - "892 medications_lifetime<=e^(encounters_count/active_conditions)\n", - "893 medications_lifetime<=1/16*encounters_count^2\n", - "894 medications_lifetime>=log(Body_Weight^procedures_lifetime)\n", - "895 medications_lifetime>=active_care_plans\n", - "896 medications_lifetime>=QALY/10^DALY\n", - "897 medications_lifetime>=1/2*procedures_lifetime_cost/QALY\n", - "898 medications_lifetime>=2*encounters_count-2*latitude\n", - "899 medications_lifetime>=DALY^e^QOLS\n", - "900 medications_lifetime>=(Carbon_Dioxide^2)^imaging_studies_lifetime\n", - "901 medications_lifetime>=Diastolic_Blood_Pressure^(1/2*num_allergies)\n", - "902 medications_lifetime>=floor(active_care_plan_length/active_care_plans)\n", - "903 medications_lifetime>=ceil(medications_lifetime_length^medications_lifetime_perc_covered)\n", - "904 medications_lifetime<=medications_lifetime_dispenses\n", - "905 medications_lifetime<=floor(active_condition_length)/num_allergies\n", - "906 medications_lifetime<=DALY*floor(active_care_plan_length)\n", - "907 medications_lifetime<=1/4*(encounters_count-1)^2\n", - "908 medications_lifetime<=abs(encounters_count-medications_lifetime_dispenses)\n", - "909 medications_lifetime<=e^(medications_lifetime_length^QOLS)\n", - "910 medications_lifetime<=floor(encounters_count/medications_lifetime_perc_covered)\n", - "911 medications_lifetime<=active_care_plan_length*log(healthcare_coverage)\n", - "912 medications_lifetime<=2*10^log(active_conditions)\n", - "913 medications_lifetime<=floor(1/2*latitude)^2\n", - "914 medications_lifetime>=active_care_plans\n", - "915 medications_lifetime>=(encounters_lifetime_perc_covered+1)*device_lifetime_length\n", - "916 medications_lifetime>=(log(DALY)/log(10))^mean_DALY\n", - "917 medications_lifetime>=-ceil(DALY)+encounters_count\n", - "918 medications_lifetime>=e^(DALY^medications_lifetime_perc_covered)\n", - "919 medications_lifetime>=-e^active_conditions+immunizations_lifetime_cost\n", - "920 medications_lifetime>=2*10^sqrt(immunizations_lifetime)\n", - "921 medications_lifetime>=minimum(immunizations_lifetime_cost,encounters_count-1)\n", - "922 medications_lifetime>=10^procedures_lifetime/healthcare_expenses\n", - "923 medications_lifetime>=floor(QALY)-procedures_lifetime_cost\n", - "924 medications_lifetime<=10^(log(encounters_count)^2/log(10)^2)\n", - "925 medications_lifetime<=maximum(procedures_lifetime_cost,encounters_count+1)\n", - "926 medications_lifetime<=10^log(sqrt(lifetime_condition_length))\n", - "927 medications_lifetime<=(encounters_count-1)^active_care_plans\n", - "928 medications_lifetime<=log(num_allergies)^active_care_plan_length\n", - "929 medications_lifetime<=medications_active^healthcare_expenses\n", - "930 medications_lifetime<=e^(-immunizations_lifetime)*medications_lifetime_dispenses\n", - "931 medications_lifetime<=e^(QALY-lifetime_conditions)\n", - "932 medications_lifetime<=maximum(lifetime_condition_length,healthcare_expenses^medications_lifetime_perc_covered)\n", - "933 medications_lifetime<=minimum(healthcare_expenses,2*MCH__Entitic_mass__by_Automated_count)\n", - "934 medications_lifetime>=num_allergies\n", - "935 medications_lifetime>=medications_active\n", - "936 medications_lifetime>=encounters_count-log(healthcare_expenses)\n", - "937 medications_lifetime>=-active_care_plan_length+1/2*lifetime_care_plan_length\n", - "938 medications_lifetime>=sqrt(procedures_lifetime_cost)-lifetime_condition_length\n", - "939 medications_lifetime>=lifetime_care_plan_length*log(procedures_lifetime)\n", - "940 medications_lifetime>=-2*active_conditions+encounters_count\n", - "941 medications_lifetime>=-2*QALY+2*encounters_count\n", - "942 medications_lifetime_cost<=1/2*encounters_lifetime_payer_coverage*medications_lifetime_dispenses\n", - "943 medications_lifetime_cost<=sqrt(active_care_plans)*healthcare_expenses\n", - "944 medications_lifetime_cost<=latitude^sqrt(medications_lifetime_dispenses)\n", - "945 medications_lifetime_cost<=2*latitude*medications_lifetime_length\n", - "946 medications_lifetime_cost<=encounters_lifetime_total_cost*sqrt(healthcare_coverage)\n", - "947 medications_lifetime_cost<=sqrt(encounters_lifetime_payer_coverage)*healthcare_coverage\n", - "948 medications_lifetime_cost<=2*active_condition_length*medications_lifetime_length\n", - "949 medications_lifetime_cost<=1/2*age^lifetime_conditions\n", - "950 medications_lifetime_cost<=encounters_lifetime_total_cost^2/encounters_count\n", - "951 medications_lifetime_cost<=healthcare_coverage*lifetime_condition_length/medications_active\n", - "952 medications_lifetime_cost>=num_allergies\n", - "953 medications_lifetime_cost>=minimum(immunizations_lifetime_cost,medications_lifetime_length)^2\n", - "954 medications_lifetime_cost>=DALY^(log(medications_lifetime_length)/log(10))\n", - "955 medications_lifetime_cost>=encounters_lifetime_total_cost*medications_active^2\n", - "956 medications_lifetime_cost>=device_lifetime_length^2*longitude^2\n", - "957 medications_lifetime_cost>=encounters_lifetime_total_cost*log(medications_lifetime_length)\n", - "958 medications_lifetime_cost>=2*healthcare_coverage-procedures_lifetime_cost\n", - "959 medications_lifetime_cost>=medications_lifetime_dispenses^2/active_care_plans^2\n", - "960 medications_lifetime_cost>=1/2*active_condition_length*medications_lifetime_length\n", - "961 medications_lifetime_cost>=(medications_lifetime_dispenses^2)^QOLS\n", - "962 medications_lifetime_cost<=QALY*healthcare_expenses/immunizations_lifetime_cost\n", - "963 medications_lifetime_cost<=e^(sqrt(2)*sqrt(medications_lifetime_dispenses))\n", - "964 medications_lifetime_cost<=2*healthcare_expenses/medications_lifetime_perc_covered\n", - "965 medications_lifetime_cost<=healthcare_expenses/medications_lifetime_perc_covered+procedures_lifetime_cost\n", - "966 medications_lifetime_cost<=active_conditions^2*healthcare_coverage\n", - "967 medications_lifetime_cost<=10^e^(10^encounters_lifetime_perc_covered)\n", - "968 medications_lifetime_cost<=e^encounters_count*lifetime_care_plan_length\n", - "969 medications_lifetime_cost<=10^(encounters_count/immunizations_lifetime)\n", - "970 medications_lifetime_cost<=minimum(healthcare_expenses,Platelets____volume__in_Blood_by_Automated_count)^2\n", - "971 medications_lifetime_cost<=10^(2*lifetime_care_plans+1)\n", - "972 medications_lifetime_cost>=(latitude+1)*medications_lifetime_length\n", - "973 medications_lifetime_cost>=lifetime_condition_length^2*medications_active\n", - "974 medications_lifetime_cost>=(QALY-lifetime_condition_length)^2\n", - "975 medications_lifetime_cost>=2*healthcare_coverage-procedures_lifetime_cost\n", - "976 medications_lifetime_cost>=10^(log(healthcare_expenses)/log(10)-1)\n", - "977 medications_lifetime_cost>=(2*encounters_lifetime_perc_covered)^QALY\n", - "978 medications_lifetime_cost>=2*medications_lifetime_length/lifetime_condition_length\n", - "979 medications_lifetime_cost>=2*immunizations_lifetime_cost*lifetime_condition_length\n", - "980 medications_lifetime_cost<=active_condition_length*healthcare_expenses/immunizations_lifetime_cost\n", - "981 medications_lifetime_cost<=10^sqrt(QALY-1)\n", - "982 medications_lifetime_cost<=1/2*10^log(medications_lifetime_length)\n", - "983 medications_lifetime_cost<=sqrt(10^encounters_count)-1\n", - "984 medications_lifetime_cost<=2*QALY*medications_lifetime_length\n", - "985 medications_lifetime_cost<=10^active_conditions/encounters_lifetime_perc_covered\n", - "986 medications_lifetime_cost<=active_conditions*healthcare_coverage/imaging_studies_lifetime\n", - "987 medications_lifetime_cost<=healthcare_expenses/sqrt(active_care_plans)\n", - "988 medications_lifetime_cost<=(e^latitude)^QOLS\n", - "989 medications_lifetime_cost>=num_allergies\n", - "990 medications_lifetime_cost>=medications_lifetime_dispenses^2/encounters_count\n", - "991 medications_lifetime_cost>=encounters_lifetime_payer_coverage*sqrt(medications_lifetime_dispenses)\n", - "992 medications_lifetime_cost>=healthcare_expenses*medications_active/lifetime_care_plan_length\n", - "993 medications_lifetime_cost>=DALY^(log(medications_lifetime_length)/log(10))\n", - "994 medications_lifetime_cost>=1/2*active_care_plan_length*medications_lifetime_length\n", - "995 medications_lifetime_cost>=medications_lifetime^(log(lifetime_care_plan_length)/log(10))\n", - "996 medications_lifetime_cost>=medications_active^sqrt(latitude)\n", - "997 medications_lifetime_perc_covered<=healthcare_coverage\n", - "998 medications_lifetime_perc_covered<=4*encounters_lifetime_perc_covered^2\n", - "999 medications_lifetime_perc_covered<=active_care_plans^(log(QOLS)/log(10))\n", - "1000 medications_lifetime_perc_covered<=(log(lifetime_conditions)/log(10))^active_care_plans\n", - "1001 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", - "1002 medications_lifetime_perc_covered<=ceil(QOLS)\n", - "1003 medications_lifetime_perc_covered<=encounters_lifetime_total_cost/age^2\n", - "1004 medications_lifetime_perc_covered<=log(e^active_care_plans-1)\n", - "1005 medications_lifetime_perc_covered<=floor(lifetime_condition_length/age)\n", - "1006 medications_lifetime_perc_covered<=log(1/2*medications_active)/log(10)+1\n", - "1007 medications_lifetime_perc_covered>=num_allergies\n", - "1008 medications_lifetime_perc_covered>=log(procedures_lifetime/latitude)/log(10)\n", - "1009 medications_lifetime_perc_covered>=log(active_care_plan_length/latitude)\n", - "1010 medications_lifetime_perc_covered>=(1/(QALY+longitude))\n", - "1011 medications_lifetime_perc_covered<=procedures_lifetime\n", - "1012 medications_lifetime_perc_covered<=immunizations_lifetime\n", - "1013 medications_lifetime_perc_covered<=2*QALY/encounters_count\n", - "1014 medications_lifetime_perc_covered<=Systolic_Blood_Pressure^2/procedures_lifetime_cost\n", - "1015 medications_lifetime_perc_covered<=1/4*active_care_plans\n", - "1016 medications_lifetime_perc_covered<=medications_active-1\n", - "1017 medications_lifetime_perc_covered<=QOLS/sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "1018 medications_lifetime_perc_covered<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "1019 medications_lifetime_perc_covered<=mean_Respiratory_rate/10^immunizations_lifetime\n", - "1020 medications_lifetime_perc_covered>=-num_allergies\n", - "1021 medications_lifetime_perc_covered>=-healthcare_coverage\n", - "1022 medications_lifetime_perc_covered>=num_allergies/log(active_care_plan_length)\n", - "1023 medications_lifetime_perc_covered>=log(ceil(log(active_conditions)/log(10)))/log(10)\n", - "1024 medications_lifetime_perc_covered>=1/log(procedures_lifetime)-1\n", - "1025 medications_lifetime_perc_covered>=log(medications_active)/log(10)-immunizations_lifetime\n", - "1026 medications_lifetime_perc_covered>=log(active_condition_length)/log(10)-medications_active\n", - "1027 medications_lifetime_perc_covered>=log(lifetime_conditions)^2/log(10)^2-1\n", - "1028 medications_lifetime_perc_covered<=active_care_plans\n", - "1029 medications_lifetime_perc_covered<=-1/age+QOLS\n", - "1030 medications_lifetime_perc_covered<=(num_allergies-1)^(-2)\n", - "1031 medications_lifetime_perc_covered<=lifetime_care_plan_length/encounters_count\n", - "1032 medications_lifetime_perc_covered<=immunizations_lifetime^(-2)\n", - "1033 medications_lifetime_perc_covered<=log(healthcare_coverage/medications_lifetime_length)/log(10)\n", - "1034 medications_lifetime_perc_covered<=sqrt(DALY)+mean_DALY\n", - "1035 medications_lifetime_perc_covered<=maximum(Sodium,ceil(num_allergies))\n", - "1036 medications_lifetime_perc_covered<=1/sqrt(floor(device_lifetime_length))\n", - "1037 medications_lifetime_perc_covered<=e^(procedures_lifetime/longitude)\n", - "1038 medications_lifetime_perc_covered>=num_allergies\n", - "1039 medications_lifetime_perc_covered>=log(1/2*sqrt(medications_active))/log(10)\n", - "1040 medications_lifetime_perc_covered>=log(1/DALY)-1\n", - "1041 medications_lifetime_perc_covered>=(1/floor(device_lifetime_length-1))\n", - "1042 medications_lifetime_perc_covered>=-sqrt(active_conditions)+active_care_plans\n", - "1043 medications_lifetime_perc_covered>=1/2*active_care_plans-3/2\n", - "1044 medications_lifetime_length<=(latitude-1)*lifetime_condition_length\n", - "1045 medications_lifetime_length<=medications_lifetime_cost\n", - "1046 medications_lifetime_length<=(age-1)*lifetime_care_plan_length\n", - "1047 medications_lifetime_length<=ceil(e^medications_lifetime_dispenses)\n", - "1048 medications_lifetime_length<=medications_lifetime_cost/log(medications_lifetime_dispenses)\n", - "1049 medications_lifetime_length<=longitude^2/encounters_lifetime_perc_covered\n", - "1050 medications_lifetime_length<=1/4*(lifetime_condition_length-1)^2\n", - "1051 medications_lifetime_length<=10^log(ceil(QALY))\n", - "1052 medications_lifetime_length<=1/2*encounters_lifetime_payer_coverage+1/2*healthcare_coverage\n", - "1053 medications_lifetime_length>=4*latitude+1\n", - "1054 medications_lifetime_length>=2*DALY*immunizations_lifetime_cost\n", - "1055 medications_lifetime_length>=(ceil(active_care_plan_length)+1)^2\n", - "1056 medications_lifetime_length>=(active_conditions+1)*medications_lifetime\n", - "1057 medications_lifetime_length>=-active_condition_length+1/2*encounters_lifetime_payer_coverage\n", - "1058 medications_lifetime_length>=e^(e^sqrt(num_allergies))\n", - "1059 medications_lifetime_length>=2*e^(1/2*active_conditions)\n", - "1060 medications_lifetime_length>=minimum(encounters_count,Estimated_Glomerular_Filtration_Rate)^2\n", - "1061 medications_lifetime_length>=minimum(QALY,Respiratory_rate)^2\n", - "1062 medications_lifetime_length>=log(encounters_lifetime_payer_coverage)*medications_lifetime_dispenses/log(10)\n", - "1063 medications_lifetime_length<=log(encounters_lifetime_payer_coverage)^active_conditions\n", - "1064 medications_lifetime_length<=medications_lifetime^log(encounters_lifetime_total_cost)\n", - "1065 medications_lifetime_length<=1/2*healthcare_expenses/active_care_plan_length\n", - "1066 medications_lifetime_length<=healthcare_coverage^(log(lifetime_care_plan_length)/log(10))\n", - "1067 medications_lifetime_length<=-encounters_lifetime_total_cost+healthcare_coverage-1\n", - "1068 medications_lifetime_length<=active_condition_length^2/medications_lifetime_perc_covered\n", - "1069 medications_lifetime_length<=10^lifetime_care_plans/imaging_studies_lifetime\n", - "1070 medications_lifetime_length<=(2*active_condition_length+1)^2\n", - "1071 medications_lifetime_length<=healthcare_expenses/(age*immunizations_lifetime)\n", - "1072 medications_lifetime_length<=encounters_lifetime_payer_coverage*log(medications_lifetime_cost)/log(10)\n", - "1073 medications_lifetime_length>=active_care_plan_length^2+lifetime_condition_length\n", - "1074 medications_lifetime_length>=procedures_lifetime_cost/sqrt(encounters_lifetime_total_cost)\n", - "1075 medications_lifetime_length>=1/4*encounters_count^2+1\n", - "1076 medications_lifetime_length>=(DALY-1)*immunizations_lifetime_cost\n", - "1077 medications_lifetime_length>=sqrt(procedures_lifetime_cost)^immunizations_lifetime\n", - "1078 medications_lifetime_length>=encounters_lifetime_payer_coverage/(QOLS+1)\n", - "1079 medications_lifetime_length>=log(active_care_plan_length)*medications_lifetime_dispenses\n", - "1080 medications_lifetime_length>=log(active_condition_length)*medications_lifetime_dispenses\n", - "1081 medications_lifetime_length>=(medications_lifetime^2)^num_allergies\n", - "1082 medications_lifetime_length>=8*DALY^2\n", - "1083 medications_lifetime_length<=latitude^2/imaging_studies_lifetime\n", - "1084 medications_lifetime_length<=medications_lifetime_cost\n", - "1085 medications_lifetime_length<=10^e^(1/encounters_lifetime_perc_covered)\n", - "1086 medications_lifetime_length<=maximum(encounters_lifetime_total_cost,age^2)\n", - "1087 medications_lifetime_length<=healthcare_expenses/procedures_lifetime-medications_lifetime_dispenses\n", - "1088 medications_lifetime_length<=10^(active_care_plan_length^QOLS)\n", - "1089 medications_lifetime_length<=(ceil(lifetime_care_plan_length)+1)^2\n", - "1090 medications_lifetime_length<=1/2*healthcare_coverage+medications_lifetime_dispenses\n", - "1091 medications_lifetime_length<=age^2/medications_lifetime_perc_covered\n", - "1092 medications_lifetime_length<=encounters_lifetime_payer_coverage^(1/2*encounters_count)\n", - "1093 medications_lifetime_length>=log(latitude)*medications_lifetime_dispenses\n", - "1094 medications_lifetime_length>=immunizations_lifetime_cost^(1/log(10))\n", - "1095 medications_lifetime_length>=log(active_condition_length)*medications_lifetime_dispenses\n", - "1096 medications_lifetime_length>=1/2*minimum(encounters_lifetime_payer_coverage,DXA__T_score__Bone_density)\n", - "1097 medications_lifetime_length>=(-encounters_count)^medications_active\n", - "1098 medications_lifetime_length>=immunizations_lifetime^sqrt(age)\n", - "1099 medications_lifetime_length>=latitude^2-procedures_lifetime_cost\n", - "1100 medications_lifetime_length>=procedures_lifetime^(active_care_plans-1)\n", - "1101 medications_lifetime_dispenses<=log(10)*medications_lifetime_length/log(encounters_lifetime_payer_coverage)\n", - "1102 medications_lifetime_dispenses<=sqrt(healthcare_expenses)/medications_lifetime_perc_covered\n", - "1103 medications_lifetime_dispenses<=active_care_plan_length*active_conditions^2\n", - "1104 medications_lifetime_dispenses<=age*floor(latitude)\n", - "1105 medications_lifetime_dispenses<=(DALY+medications_lifetime)^2\n", - "1106 medications_lifetime_dispenses<=10^(medications_lifetime_length/lifetime_condition_length)\n", - "1107 medications_lifetime_dispenses<=healthcare_coverage/active_conditions-medications_lifetime\n", - "1108 medications_lifetime_dispenses<=10^(log(lifetime_condition_length)/log(10)+1)\n", - "1109 medications_lifetime_dispenses<=medications_lifetime_length/log(active_care_plan_length)\n", - "1110 medications_lifetime_dispenses<=(healthcare_expenses/encounters_lifetime_total_cost)^DALY\n", - "1111 medications_lifetime_dispenses>=medications_lifetime_length/log(Systolic_Blood_Pressure)\n", - "1112 medications_lifetime_dispenses>=ceil(-active_care_plan_length+lifetime_condition_length)\n", - "1113 medications_lifetime_dispenses>=healthcare_coverage/Systolic_Blood_Pressure+1\n", - "1114 medications_lifetime_dispenses>=1/2*medications_lifetime_length^encounters_lifetime_perc_covered\n", - "1115 medications_lifetime_dispenses>=Diastolic_Blood_Pressure^2/active_conditions^2\n", - "1116 medications_lifetime_dispenses>=1/2*healthcare_coverage/active_condition_length\n", - "1117 medications_lifetime_dispenses>=10^(medications_active^medications_lifetime_perc_covered)\n", - "1118 medications_lifetime_dispenses>=log(Heart_rate)^num_allergies\n", - "1119 medications_lifetime_dispenses>=log(Body_Weight)^active_care_plans\n", - "1120 medications_lifetime_dispenses<=log(10^(10^active_care_plans))\n", - "1121 medications_lifetime_dispenses<=(latitude+medications_active)^2\n", - "1122 medications_lifetime_dispenses<=healthcare_expenses^encounters_lifetime_perc_covered/immunizations_lifetime\n", - "1123 medications_lifetime_dispenses<=e^active_care_plan_length\n", - "1124 medications_lifetime_dispenses<=1/2*e^(encounters_count+1)\n", - "1125 medications_lifetime_dispenses<=10^medications_lifetime-encounters_count\n", - "1126 medications_lifetime_dispenses<=healthcare_coverage/(lifetime_conditions+1)\n", - "1127 medications_lifetime_dispenses<=healthcare_expenses/(DALY*active_care_plan_length)\n", - "1128 medications_lifetime_dispenses<=(encounters_count^2)^DALY\n", - "1129 medications_lifetime_dispenses<=(1/2*active_condition_length)^medications_active\n", - "1130 medications_lifetime_dispenses>=ceil(sqrt(encounters_lifetime_total_cost))\n", - "1131 medications_lifetime_dispenses>=2*minimum(procedures_lifetime_cost,Triglycerides)\n", - "1132 medications_lifetime_dispenses>=2*encounters_count+2*lifetime_condition_length\n", - "1133 medications_lifetime_dispenses>=10^(log(encounters_lifetime_payer_coverage)/log(10)-1)\n", - "1134 medications_lifetime_dispenses>=log(lifetime_condition_length)*medications_lifetime/log(10)\n", - "1135 medications_lifetime_dispenses>=immunizations_lifetime*sqrt(medications_lifetime_cost)\n", - "1136 medications_lifetime_dispenses>=1/2*encounters_lifetime_total_cost^medications_lifetime_perc_covered\n", - "1137 medications_lifetime_dispenses>=medications_lifetime_length/log(immunizations_lifetime_cost)\n", - "1138 medications_lifetime_dispenses>=active_care_plan_length*log(medications_lifetime_cost)\n", - "1139 medications_lifetime_dispenses<=1/4*medications_lifetime_length-1\n", - "1140 medications_lifetime_dispenses<=healthcare_expenses/age+lifetime_care_plan_length\n", - "1141 medications_lifetime_dispenses<=minimum(healthcare_expenses,FEV1_FVC^2)\n", - "1142 medications_lifetime_dispenses<=maximum(Body_Height,10^active_conditions)\n", - "1143 medications_lifetime_dispenses<=encounters_lifetime_payer_coverage*log(QALY)\n", - "1144 medications_lifetime_dispenses<=10^(active_care_plan_length/procedures_lifetime)\n", - "1145 medications_lifetime_dispenses<=active_conditions*sqrt(medications_lifetime_cost)\n", - "1146 medications_lifetime_dispenses<=medications_lifetime_length/log(active_care_plan_length)\n", - "1147 medications_lifetime_dispenses<=medications_lifetime_length/log(active_condition_length)\n", - "1148 medications_lifetime_dispenses<=log(10)*medications_lifetime_length/log(encounters_lifetime_payer_coverage)\n", - "1149 medications_lifetime_dispenses>=sqrt(minimum(medications_lifetime_cost,Creatinine))\n", - "1150 medications_lifetime_dispenses>=(QALY-1)*procedures_lifetime\n", - "1151 medications_lifetime_dispenses>=log(QALY)^medications_active\n", - "1152 medications_lifetime_dispenses>=Diastolic_Blood_Pressure^sqrt(immunizations_lifetime)\n", - "1153 medications_lifetime_dispenses>=immunizations_lifetime_cost^2/lifetime_condition_length\n", - "1154 medications_lifetime_dispenses>=age^(1/DALY)\n", - "1155 medications_lifetime_dispenses>=10^QOLS*lifetime_care_plan_length\n", - "1156 medications_lifetime_dispenses>=active_care_plan_length^ceil(device_lifetime_length)\n", - "1157 medications_lifetime_dispenses>=(active_care_plan_length-active_condition_length)^2\n", - "1158 medications_lifetime_dispenses>=floor(sqrt(1/2)*sqrt(healthcare_coverage))\n", - "1159 medications_active<=maximum(Triglycerides,active_care_plans+1)\n", - "1160 medications_active<=2*active_care_plans\n", - "1161 medications_active<=medications_lifetime\n", - "1162 medications_active<=minimum(healthcare_expenses,floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", - "1163 medications_active<=minimum(healthcare_expenses,ceil(Erythrocytes____volume__in_Blood_by_Automated_count))\n", - "1164 medications_active<=maximum(QALY,ceil(num_allergies))\n", - "1165 medications_active<=floor(log(healthcare_expenses)/log(10))\n", - "1166 medications_active>=num_allergies\n", - "1167 medications_active>=floor(maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,mean_QOLS))\n", - "1168 medications_active>=num_allergies/QOLS\n", - "1169 medications_active>=2*active_conditions-encounters_count\n", - "1170 medications_active>=floor(QOLS)\n", - "1171 medications_active>=floor(encounters_lifetime_perc_covered)\n", - "1172 medications_active>=num_allergies^procedures_lifetime\n", - "1173 medications_active>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+lifetime_care_plans\n", - "1174 medications_active>=2*QALY+2*longitude\n", - "1175 medications_active<=floor(sqrt(QALY))\n", - "1176 medications_active<=encounters_count\n", - "1177 medications_active<=encounters_lifetime_payer_coverage\n", - "1178 medications_active<=medications_lifetime\n", - "1179 medications_active<=ceil(log(healthcare_expenses)/log(10))\n", - "1180 medications_active<=maximum(immunizations_lifetime_cost,1/encounters_lifetime_perc_covered)\n", - "1181 medications_active<=maximum(active_care_plans,10^encounters_lifetime_perc_covered)\n", - "1182 medications_active<=abs(encounters_count+longitude)\n", - "1183 medications_active<=minimum(healthcare_expenses,floor(Leukocytes____volume__in_Blood_by_Automated_count))\n", - "1184 medications_active<=2*immunizations_lifetime_cost^medications_lifetime_perc_covered\n", - "1185 medications_active>=num_allergies\n", - "1186 medications_active>=floor(log(medications_lifetime)/log(10))\n", - "1187 medications_active>=2*num_allergies\n", - "1188 medications_active>=2*ceil(medications_lifetime_perc_covered)\n", - "1189 medications_active>=active_care_plans-2\n", - "1190 medications_active>=floor(log(DALY))\n", - "1191 medications_active>=minimum(immunizations_lifetime,procedures_lifetime)\n", - "1192 medications_active>=-ceil(DALY)+procedures_lifetime\n", - "1193 medications_active>=1/2*lifetime_care_plans-1\n", - "1194 medications_active>=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,mean_QOLS)-1\n", - "1195 medications_active<=active_care_plans^healthcare_expenses\n", - "1196 medications_active<=active_care_plans/immunizations_lifetime\n", - "1197 medications_active<=ceil(log(age))\n", - "1198 medications_active<=medications_lifetime\n", - "1199 medications_active<=(log(device_lifetime_length)/log(10))^medications_lifetime_length\n", - "1200 medications_active<=floor(1/2*encounters_count)\n", - "1201 medications_active<=log(QOLS)*longitude/log(10)\n", - "1202 medications_active>=2*num_allergies\n", - "1203 medications_active>=num_allergies+1\n", - "1204 medications_active>=active_care_plans^imaging_studies_lifetime\n", - "1205 medications_active>=2*immunizations_lifetime\n", - "1206 medications_active>=-active_care_plans+lifetime_care_plans\n", - "1207 medications_active>=2/active_care_plans\n", - "1208 medications_active>=minimum(active_care_plans,-Respiratory_rate)\n", - "1209 medications_active>=ceil(active_care_plan_length-active_condition_length)\n", - "1210 medications_active>=ceil(immunizations_lifetime_cost/lifetime_care_plan_length)\n", - "1211 medications_active>=immunizations_lifetime^2+1\n", - "1212 procedures_lifetime<=healthcare_coverage\n", - "1213 procedures_lifetime<=sqrt(medications_lifetime_cost/active_care_plan_length)\n", - "1214 procedures_lifetime<=maximum(Systolic_Blood_Pressure,active_care_plans-1)\n", - "1215 procedures_lifetime<=procedures_lifetime_cost\n", - "1216 procedures_lifetime<=active_conditions^2\n", - "1217 procedures_lifetime<=floor(log(10^latitude))\n", - "1218 procedures_lifetime<=healthcare_expenses^medications_lifetime_perc_covered*active_care_plans\n", - "1219 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,log(medications_lifetime))\n", - "1220 procedures_lifetime<=minimum(healthcare_expenses,floor(Erythrocytes____volume__in_Blood_by_Automated_count))\n", - "1221 procedures_lifetime>=num_allergies\n", - "1222 procedures_lifetime>=(lifetime_conditions-1)*imaging_studies_lifetime\n", - "1223 procedures_lifetime>=active_care_plans*imaging_studies_lifetime\n", - "1224 procedures_lifetime>=-active_care_plans+medications_active\n", - "1225 procedures_lifetime>=procedures_lifetime_cost/lifetime_condition_length^2\n", - "1226 procedures_lifetime>=minimum(immunizations_lifetime,procedures_lifetime_cost)\n", - "1227 procedures_lifetime<=lifetime_conditions\n", - "1228 procedures_lifetime<=active_care_plan_length\n", - "1229 procedures_lifetime<=encounters_lifetime_payer_coverage\n", - "1230 procedures_lifetime<=immunizations_lifetime_cost\n", - "1231 procedures_lifetime<=(1/num_allergies)\n", - "1232 procedures_lifetime<=healthcare_expenses^medications_lifetime_perc_covered\n", - "1233 procedures_lifetime<=e^device_lifetime_length+medications_active\n", - "1234 procedures_lifetime<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^immunizations_lifetime_cost\n", - "1235 procedures_lifetime<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,ceil(active_care_plans))\n", - "1236 procedures_lifetime>=num_allergies\n", - "1237 procedures_lifetime>=lifetime_condition_length^medications_lifetime_perc_covered-1\n", - "1238 procedures_lifetime>=ceil(medications_lifetime_perc_covered)\n", - "1239 procedures_lifetime>=-healthcare_coverage+medications_active\n", - "1240 procedures_lifetime>=2*ceil(device_lifetime_length)\n", - "1241 procedures_lifetime>=-active_care_plans+medications_active\n", - "1242 procedures_lifetime<=active_care_plans\n", - "1243 procedures_lifetime<=Heart_rate-floor(active_condition_length)\n", - "1244 procedures_lifetime<=procedures_lifetime_cost\n", - "1245 procedures_lifetime<=lifetime_conditions/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1246 procedures_lifetime<=ceil(DALY)\n", - "1247 procedures_lifetime<=maximum(Triglycerides,Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)\n", - "1248 procedures_lifetime<=active_care_plans/immunizations_lifetime\n", - "1249 procedures_lifetime<=-Respiratory_rate+medications_lifetime-1\n", - "1250 procedures_lifetime>=num_allergies\n", - "1251 procedures_lifetime>=immunizations_lifetime-1\n", - "1252 procedures_lifetime>=sqrt(procedures_lifetime_cost)/QALY\n", - "1253 procedures_lifetime>=minimum(procedures_lifetime_cost,e^num_allergies)\n", - "1254 procedures_lifetime_cost<=active_care_plan_length*healthcare_expenses/encounters_count\n", - "1255 procedures_lifetime_cost<=healthcare_coverage^2\n", - "1256 procedures_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "1257 procedures_lifetime_cost<=10^active_conditions+encounters_count\n", - "1258 procedures_lifetime_cost<=healthcare_expenses/medications_active+encounters_lifetime_payer_coverage\n", - "1259 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1260 procedures_lifetime_cost<=(healthcare_expenses^2)^QOLS\n", - "1261 procedures_lifetime_cost<=(Urea_Nitrogen^2)^procedures_lifetime\n", - "1262 procedures_lifetime_cost>=num_allergies\n", - "1263 procedures_lifetime_cost>=-active_care_plan_length^2+medications_lifetime_dispenses\n", - "1264 procedures_lifetime_cost>=-lifetime_condition_length+2*medications_lifetime\n", - "1265 procedures_lifetime_cost>=ceil(encounters_lifetime_payer_coverage-medications_lifetime_length)\n", - "1266 procedures_lifetime_cost>=healthcare_expenses*num_allergies/QALY\n", - "1267 procedures_lifetime_cost>=healthcare_expenses^encounters_lifetime_perc_covered-healthcare_coverage\n", - "1268 procedures_lifetime_cost>=10^DALY*device_lifetime_length\n", - "1269 procedures_lifetime_cost>=(procedures_lifetime-1)*medications_lifetime\n", - "1270 procedures_lifetime_cost>=encounters_lifetime_total_cost-1/2*healthcare_coverage\n", - "1271 procedures_lifetime_cost<=healthcare_expenses/medications_lifetime+Diastolic_Blood_Pressure\n", - "1272 procedures_lifetime_cost<=e^encounters_count+medications_lifetime_dispenses\n", - "1273 procedures_lifetime_cost<=(Body_Mass_Index^2)^procedures_lifetime\n", - "1274 procedures_lifetime_cost<=(Systolic_Blood_Pressure+encounters_count)^2\n", - "1275 procedures_lifetime_cost<=healthcare_expenses/(DALY*lifetime_care_plans)\n", - "1276 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1277 procedures_lifetime_cost<=ceil(encounters_lifetime_total_cost)^active_care_plans\n", - "1278 procedures_lifetime_cost<=2*e^sqrt(Diastolic_Blood_Pressure)\n", - "1279 procedures_lifetime_cost>=device_lifetime_length\n", - "1280 procedures_lifetime_cost>=longitude/log(DALY)\n", - "1281 procedures_lifetime_cost>=log(10^procedures_lifetime)^2\n", - "1282 procedures_lifetime_cost>=active_care_plan_length^2-healthcare_coverage\n", - "1283 procedures_lifetime_cost>=(immunizations_lifetime-1)*encounters_lifetime_payer_coverage\n", - "1284 procedures_lifetime_cost>=-QALY^2+medications_lifetime_dispenses\n", - "1285 procedures_lifetime_cost<=active_care_plans*healthcare_expenses/lifetime_care_plans\n", - "1286 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", - "1287 procedures_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", - "1288 procedures_lifetime_cost<=(healthcare_expenses/encounters_lifetime_total_cost)^lifetime_care_plans\n", - "1289 procedures_lifetime_cost<=2*immunizations_lifetime_cost*lifetime_condition_length\n", - "1290 procedures_lifetime_cost<=maximum(medications_lifetime_dispenses,e^encounters_count)\n", - "1291 procedures_lifetime_cost<=10^(immunizations_lifetime+medications_lifetime)\n", - "1292 procedures_lifetime_cost<=active_condition_length*healthcare_expenses/encounters_count\n", - "1293 procedures_lifetime_cost<=healthcare_expenses^QOLS+healthcare_coverage\n", - "1294 procedures_lifetime_cost>=num_allergies\n", - "1295 procedures_lifetime_cost>=1/2*immunizations_lifetime_cost/DALY\n", - "1296 procedures_lifetime_cost>=2*lifetime_condition_length*procedures_lifetime\n", - "1297 procedures_lifetime_cost>=immunizations_lifetime_cost*log(encounters_count)/log(10)\n", - "1298 procedures_lifetime_cost>=latitude^2*num_allergies^2\n", - "1299 procedures_lifetime_cost>=encounters_count*procedures_lifetime^2\n", - "1300 procedures_lifetime_cost>=e^lifetime_care_plans-medications_lifetime_dispenses\n", - "1301 procedures_lifetime_cost>=-10^DALY+medications_lifetime_dispenses\n", - "1302 QOLS<=mean_QOLS\n", - "1303 QOLS>=mean_QOLS\n", - "1304 QOLS<=mean_QOLS\n", - "1305 QOLS<=DALY\n", - "1306 QOLS>=mean_QOLS\n", - "1307 QOLS<=lifetime_care_plans\n", - "1308 QOLS<=mean_QOLS\n", - "1309 QOLS>=mean_QOLS\n", - "1310 QALY<=mean_QALY\n", - "1311 QALY>=mean_QALY\n", - "1312 QALY<=mean_QALY\n", - "1313 QALY<=mean_QALY\n", - "1314 QALY>=mean_QALY\n", - "1315 DALY<=mean_DALY\n", - "1316 DALY>=mean_DALY\n", - "1317 DALY<=mean_DALY\n", - "1318 DALY<=active_care_plan_length\n", - "1319 DALY>=mean_DALY\n", - "1320 DALY<=mean_DALY\n", - "1321 DALY<=active_care_plan_length\n", - "1322 DALY>=mean_DALY\n", - "1323 Body_Weight<=ceil(mean_Body_Weight)+encounters_lifetime_perc_covered\n", - "1324 Body_Weight<=maximum(lifetime_care_plan_length,mean_Body_Weight)\n", - "1325 Body_Weight<=maximum(encounters_count,mean_Body_Weight)\n", - "1326 Body_Weight<=mean_Body_Weight/imaging_studies_lifetime\n", - "1327 Body_Weight<=mean_Body_Weight+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", - "1328 Body_Weight<=QALY*active_care_plans+1\n", - "1329 Body_Weight>=mean_Body_Weight\n", - "1330 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans\n", - "1331 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_active\n", - "1332 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^encounters_lifetime_perc_covered)\n", - "1333 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*lifetime_conditions\n", - "1334 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", - "1335 Body_Height<=mean_Body_Height\n", - "1336 mean_Body_Height>=Body_Height\n", - "1337 mean_Body_Mass_Index>=floor(Body_Mass_Index)\n", - "1338 mean_Body_Mass_Index>=Body_Mass_Index-procedures_lifetime\n", - "1339 mean_Body_Mass_Index>=Body_Mass_Index^num_allergies\n", - "1340 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/2*active_condition_length)\n", - "1341 mean_Body_Mass_Index>=Body_Mass_Index-1/2*DALY\n", - "1342 mean_Body_Mass_Index>=Body_Mass_Index/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1343 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine)\n", - "1344 mean_DALY<=DALY\n", - "1345 mean_DALY>=DALY\n", - "1346 mean_DALY<=DALY\n", - "1347 mean_DALY>=DALY\n", - "1348 mean_DALY<=DALY\n", - "1349 mean_DALY>=imaging_studies_lifetime\n", - "1350 mean_DALY>=DALY\n", - "1351 mean_Heart_rate<=maximum(encounters_count,Heart_rate)\n", - "1352 mean_Heart_rate<=10^(QALY^(1/4))\n", - "1353 mean_Heart_rate<=maximum(lifetime_care_plan_length,Heart_rate)\n", - "1354 mean_Heart_rate<=maximum(lifetime_condition_length,Heart_rate)\n", - "1355 mean_Heart_rate<=Heart_rate^active_care_plans\n", - "1356 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions\n", - "1357 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1358 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost^2/encounters_lifetime_total_cost\n", - "1359 mean_QALY<=QALY\n", - "1360 mean_QALY>=QALY\n", - "1361 mean_QALY<=QALY\n", - "1362 mean_QALY>=QALY\n", - "1363 mean_QALY<=QALY\n", - "1364 mean_QALY>=QALY\n", - "1365 mean_QOLS<=active_care_plans\n", - "1366 mean_QOLS<=medications_active\n", - "1367 mean_QOLS<=QOLS\n", - "1368 mean_QOLS>=QOLS\n", - "1369 mean_QOLS<=QOLS\n", - "1370 mean_QOLS>=QOLS\n", - "1371 mean_QOLS<=lifetime_care_plans\n", - "1372 mean_QOLS<=QOLS\n", - "1373 mean_QOLS>=QOLS\n", - "1374 mean_Systolic_Blood_Pressure>=minimum(procedures_lifetime_cost,Systolic_Blood_Pressure)\n", - "1375 mean_Systolic_Blood_Pressure>=floor(latitude)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", - "1376 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure/active_care_plans\n", - "1377 mean_Systolic_Blood_Pressure>=2*active_conditions+mean_Heart_rate\n", - "1378 mean_Systolic_Blood_Pressure>=minimum(lifetime_care_plan_length,Systolic_Blood_Pressure)\n", - "1379 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-immunizations_lifetime_cost\n", - "1380 mean_Systolic_Blood_Pressure>=-Systolic_Blood_Pressure+encounters_count\n", + "1 healthcare_expenses<=latitude^4\n", + "2 healthcare_expenses<=10^sqrt(latitude)\n", + "3 healthcare_expenses<=Body_Height*Systolic_Blood_Pressure^2\n", + "4 healthcare_expenses<=10^Calcium/Total_Cholesterol\n", + "5 healthcare_expenses<=Heart_rate*Total_Cholesterol^2\n", + "6 healthcare_expenses<=Body_Height^2*Protein__Mass_volume__in_Serum,Plasma\n", + "7 healthcare_expenses<=e^(1/2*MCH__Entitic_mass__by_Automated_count)\n", + "8 healthcare_expenses<=Erythrocytes____volume__in_Blood_by_Automated_count^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "9 healthcare_expenses<=(Low_Density_Lipoprotein_Cholesterol-1)^Estimated_Glomerular_Filtration_Rate\n", + "10 healthcare_expenses<=10^Urea_Nitrogen/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "11 healthcare_expenses<=Urea_Nitrogen*e^Respiratory_rate\n", + "12 healthcare_expenses<=10^healthcare_coverage*medications_lifetime_cost\n", + "13 healthcare_expenses<=10^active_conditions*Platelets____volume__in_Blood_by_Automated_count\n", + "14 healthcare_expenses<=Urea_Nitrogen^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "15 healthcare_expenses<=healthcare_coverage^2/procedures_lifetime\n", + "16 healthcare_expenses<=e^age/healthcare_coverage\n", + "17 healthcare_expenses<=Body_Height^2*age\n", + "18 healthcare_expenses<=healthcare_coverage^2/Hemoglobin__Mass_volume__in_Blood\n", + "19 healthcare_expenses<=Body_Height^2*Heart_rate\n", + "20 healthcare_expenses<=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_cost\n", + "21 healthcare_expenses<=(2*lifetime_condition_length)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "22 healthcare_expenses<=High_Density_Lipoprotein_Cholesterol^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "23 healthcare_expenses<=Body_Height^2*Diastolic_Blood_Pressure\n", + "24 healthcare_expenses<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*encounters_lifetime_total_cost^2\n", + "25 healthcare_expenses<=10^Erythrocytes____volume__in_Blood_by_Automated_count*Systolic_Blood_Pressure\n", + "26 healthcare_expenses<=Body_Height^2*Body_Weight\n", + "27 healthcare_expenses<=(1/2*Platelets____volume__in_Blood_by_Automated_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "28 healthcare_expenses<=(1/2*Low_Density_Lipoprotein_Cholesterol)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "29 healthcare_expenses<=Diastolic_Blood_Pressure^2*encounters_lifetime_total_cost\n", + "30 healthcare_expenses<=Carbon_Dioxide*Platelets____volume__in_Blood_by_Automated_count^2\n", + "31 healthcare_expenses<=Body_Weight^2*Platelets____volume__in_Blood_by_Automated_count\n", + "32 healthcare_expenses<=Body_Height^2*Low_Density_Lipoprotein_Cholesterol\n", + "33 healthcare_expenses<=(log(encounters_lifetime_payer_coverage)/log(10))^QALY\n", + "34 healthcare_expenses<=sqrt(encounters_lifetime_payer_coverage)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "35 healthcare_expenses<=Body_Height*Triglycerides^2\n", + "36 healthcare_expenses<=Chloride*Sodium^2\n", + "37 healthcare_expenses<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*medications_lifetime_length^2\n", + "38 healthcare_expenses<=procedures_lifetime_cost^2/imaging_studies_lifetime\n", + "39 healthcare_expenses<=(log(Body_Mass_Index)/log(10))^Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "40 healthcare_expenses<=(e^QOLS)^MCH__Entitic_mass__by_Automated_count\n", + "41 healthcare_expenses<=Sodium^2*mean_Chloride\n", + "42 healthcare_expenses<=e^Respiratory_rate*mean_Respiratory_rate\n", + "43 healthcare_expenses<=Triglycerides^2*mean_Body_Height\n", + "44 healthcare_expenses<=sqrt(High_Density_Lipoprotein_Cholesterol)^mean_Estimated_Glomerular_Filtration_Rate\n", + "45 healthcare_expenses<=(e^Albumin__Mass_volume__in_Serum,Plasma)^Potassium\n", + "46 healthcare_expenses<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood*encounters_lifetime_payer_coverage\n", + "47 healthcare_expenses<=e^Carbon_Dioxide/lifetime_condition_length\n", + "48 healthcare_expenses<=Total_Cholesterol^2*age\n", + "49 healthcare_expenses<=Total_Cholesterol^2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "50 healthcare_expenses<=10^Urea_Nitrogen/Respiratory_rate\n", + "51 healthcare_expenses<=10^Calcium/lifetime_care_plan_length\n", + "52 healthcare_expenses<=10^Calcium/Body_Height\n", + "53 healthcare_expenses<=Calcium*e^Hemoglobin__Mass_volume__in_Blood\n", + "54 healthcare_expenses>=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/encounters_count\n", + "55 healthcare_expenses>=2*longitude^2\n", + "56 healthcare_expenses>=(active_care_plan_length+1)*medications_lifetime_dispenses\n", + "57 healthcare_expenses>=10^log(Systolic_Blood_Pressure)\n", + "58 healthcare_expenses>=2*medications_lifetime_cost*num_allergies\n", + "59 healthcare_expenses>=(log(Triglycerides)/log(10))^mean_Respiratory_rate\n", + "60 healthcare_expenses>=DALY*latitude^2\n", + "61 healthcare_expenses>=(2*procedures_lifetime_cost)^QOLS\n", + "62 healthcare_expenses>=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/active_conditions\n", + "63 healthcare_expenses>=2*Globulin__Mass_volume__in_Serum_by_calculation*encounters_lifetime_total_cost\n", + "64 healthcare_expenses>=sqrt(Hemoglobin__Mass_volume__in_Blood)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "65 healthcare_expenses>=2*medications_lifetime_cost/medications_lifetime\n", + "66 healthcare_expenses>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)^imaging_studies_lifetime\n", + "67 healthcare_expenses>=active_care_plans*e^Calcium\n", + "68 healthcare_expenses>=Systolic_Blood_Pressure^2/lifetime_condition_length\n", + "69 healthcare_expenses>=medications_active^2*medications_lifetime_length\n", + "70 healthcare_expenses>=Bilirubin_total__Mass_volume__in_Serum,Plasma^Protein__Mass_volume__in_Serum,Plasma\n", + "71 healthcare_expenses>=e^active_conditions/lifetime_conditions\n", + "72 healthcare_expenses>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2*mean_Triglycerides\n", + "73 healthcare_expenses>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*Sodium\n", + "74 healthcare_expenses>=10^active_care_plans*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "75 healthcare_expenses>=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*medications_lifetime_cost/log(10)\n", + "76 healthcare_expenses>=Estimated_Glomerular_Filtration_Rate^2*mean_High_Density_Lipoprotein_Cholesterol\n", + "77 healthcare_expenses>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*procedures_lifetime_cost/log(10)\n", + "78 healthcare_expenses>=2*medications_lifetime_perc_covered*procedures_lifetime_cost\n", + "79 healthcare_expenses>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*encounters_lifetime_payer_coverage\n", + "80 healthcare_expenses>=(log(DALY)/log(10))^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "81 healthcare_expenses>=(encounters_lifetime_payer_coverage+1)*device_lifetime_length\n", + "82 healthcare_expenses>=(1/2*latitude)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "83 healthcare_expenses>=10^Potassium*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "84 healthcare_expenses>=medications_lifetime^2-healthcare_coverage\n", + "85 healthcare_expenses>=10^active_care_plans/lifetime_conditions\n", + "86 healthcare_expenses>=(2*medications_lifetime_cost)^encounters_lifetime_perc_covered\n", + "87 healthcare_expenses>=(2*encounters_lifetime_perc_covered)^Carbon_Dioxide\n", + "88 healthcare_expenses>=(MCHC__Mass_volume__by_Automated_count+1)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "89 healthcare_expenses>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*healthcare_coverage\n", + "90 healthcare_expenses>=Body_Mass_Index^2*Diastolic_Blood_Pressure\n", + "91 healthcare_expenses>=(1/2*Total_Cholesterol)^immunizations_lifetime\n", + "92 healthcare_expenses>=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^medications_active\n", + "93 healthcare_expenses>=FEV1_FVC^procedures_lifetime\n", + "94 healthcare_expenses>=Respiratory_rate*age^2\n", + "95 healthcare_expenses>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Urea_Nitrogen\n", + "96 healthcare_expenses>=e^Hemoglobin__Mass_volume__in_Blood/medications_lifetime\n", + "97 healthcare_expenses>=e^Respiratory_rate/Urea_Nitrogen\n", + "98 healthcare_expenses>=device_lifetime_length*e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "99 healthcare_expenses>=(log(Heart_rate)/log(10))^Urea_Nitrogen\n", + "100 healthcare_expenses>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "101 healthcare_expenses>=(e^encounters_lifetime_perc_covered)^Respiratory_rate\n", + "102 healthcare_expenses>=e^Respiratory_rate/mean_Urea_Nitrogen\n", + "103 healthcare_expenses>=device_lifetime_length*latitude^2\n", + "104 healthcare_expenses>=(MCV__Entitic_volume__by_Automated_count+1)*medications_lifetime_dispenses\n", + "105 healthcare_expenses>=log(procedures_lifetime_cost)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "106 healthcare_expenses>=(2*Creatinine)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "107 healthcare_expenses>=(num_allergies+1)^Estimated_Glomerular_Filtration_Rate\n", + "108 healthcare_expenses>=(active_care_plans+1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "109 healthcare_expenses>=DALY*active_condition_length^2\n", + "110 healthcare_expenses>=sqrt(10^lifetime_care_plans)\n", + "111 healthcare_expenses>=2*lifetime_care_plan_length^2\n", + "112 healthcare_expenses>=(log(Chloride)/log(10))^mean_Urea_Nitrogen\n", + "113 healthcare_expenses>=sqrt(lifetime_care_plan_length)^mean_Potassium\n", + "114 healthcare_expenses>=log(immunizations_lifetime)*medications_lifetime_cost\n", + "115 healthcare_expenses>=(1/QOLS)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "116 healthcare_expenses>=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Respiratory_rate\n", + "117 healthcare_expenses>=Body_Mass_Index^2*Body_Weight\n", + "118 healthcare_expenses>=10^QOLS*medications_lifetime_length\n", + "119 healthcare_expenses>=MCV__Entitic_volume__by_Automated_count*device_lifetime_length^2\n", + "120 healthcare_expenses>=(log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10))^device_lifetime_length\n", + "121 healthcare_expenses>=(2*medications_lifetime_perc_covered)^mean_Carbon_Dioxide\n", + "122 healthcare_expenses>=(log(encounters_lifetime_payer_coverage)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "123 healthcare_expenses>=Body_Mass_Index*Glomerular_filtration_rate_1_73_sq_M_predicted^2\n", + "124 healthcare_expenses>=(log(Respiratory_rate)/log(10))^active_care_plan_length\n", + "125 healthcare_expenses>=immunizations_lifetime_cost*sqrt(medications_lifetime_cost)\n", + "126 healthcare_expenses>=(-Leukocytes____volume__in_Blood_by_Automated_count)^medications_active\n", + "127 healthcare_expenses>=(1/2*immunizations_lifetime)^active_care_plan_length\n", + "128 healthcare_expenses>=(-immunizations_lifetime)^DALY\n", + "129 healthcare_expenses>=2*Total_Cholesterol*immunizations_lifetime_cost\n", + "130 healthcare_expenses>=medications_lifetime_dispenses^2/Carbon_Dioxide\n", + "131 healthcare_expenses>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)^mean_Calcium\n", + "132 healthcare_expenses>=(e^medications_lifetime_perc_covered)^Total_score__MMSE_\n", + "133 healthcare_expenses>=(log(Systolic_Blood_Pressure)/log(10))^Respiratory_rate\n", + "134 healthcare_coverage<=(QALY-1)*encounters_lifetime_total_cost\n", + "135 healthcare_coverage<=encounters_lifetime_payer_coverage^2\n", + "136 healthcare_coverage<=e^mean_Respiratory_rate-1\n", + "137 healthcare_coverage<=1/2*Creatinine*healthcare_expenses\n", + "138 healthcare_coverage<=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1/2*medications_lifetime_cost\n", + "139 healthcare_coverage<=Estimated_Glomerular_Filtration_Rate*e^active_conditions\n", + "140 healthcare_coverage<=(2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Urea_Nitrogen\n", + "141 healthcare_coverage<=Creatinine*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2\n", + "142 healthcare_coverage<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "143 healthcare_coverage<=1/2*medications_lifetime_cost/num_allergies\n", + "144 healthcare_coverage<=-MCV__Entitic_volume__by_Automated_count+1/2*healthcare_expenses\n", + "145 healthcare_coverage<=Heart_rate^2*encounters_count\n", + "146 healthcare_coverage<=(1/2*active_condition_length)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "147 healthcare_coverage<=Glomerular_filtration_rate_1_73_sq_M_predicted*lifetime_care_plan_length^2\n", + "148 healthcare_coverage<=encounters_lifetime_payer_coverage^2/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "149 healthcare_coverage<=(Triglycerides^2)^lifetime_conditions\n", + "150 healthcare_coverage<=Leukocytes____volume__in_Blood_by_Automated_count*lifetime_condition_length^2\n", + "151 healthcare_coverage<=floor(medications_lifetime_cost)/medications_lifetime_perc_covered\n", + "152 healthcare_coverage<=Glucose^2*lifetime_care_plan_length\n", + "153 healthcare_coverage<=encounters_lifetime_total_cost^2/medications_lifetime\n", + "154 healthcare_coverage<=(-longitude)^encounters_count\n", + "155 healthcare_coverage<=log(medications_lifetime_length)^Body_Weight\n", + "156 healthcare_coverage<=10^Potassium*active_care_plan_length\n", + "157 healthcare_coverage<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)^Albumin__Mass_volume__in_Serum,Plasma\n", + "158 healthcare_coverage<=longitude^2*mean_Microalbumin_Creatinine_Ratio\n", + "159 healthcare_coverage<=e^sqrt(encounters_lifetime_payer_coverage)\n", + "160 healthcare_coverage<=Body_Weight*e^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "161 healthcare_coverage<=floor(Potassium)^mean_Urea_Nitrogen\n", + "162 healthcare_coverage<=Low_Density_Lipoprotein_Cholesterol^2*encounters_count\n", + "163 healthcare_coverage<=(1/2*Urea_Nitrogen)^mean_Estimated_Glomerular_Filtration_Rate\n", + "164 healthcare_coverage<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^Body_Weight\n", + "165 healthcare_coverage<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^mean_Potassium\n", + "166 healthcare_coverage<=(Leukocytes____volume__in_Blood_by_Automated_count-1)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "167 healthcare_coverage<=log(medications_lifetime_cost)^lifetime_condition_length\n", + "168 healthcare_coverage<=1/2*Systolic_Blood_Pressure*encounters_lifetime_total_cost\n", + "169 healthcare_coverage<=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*encounters_lifetime_total_cost\n", + "170 healthcare_coverage<=10^Microalbumin_Creatinine_Ratio/mean_Potassium\n", + "171 healthcare_coverage<=10^Calcium/medications_lifetime_dispenses\n", + "172 healthcare_coverage<=(log(Diastolic_Blood_Pressure)/log(10))^Carbon_Dioxide\n", + "173 healthcare_coverage<=(Creatinine+1)^Carbon_Dioxide\n", + "174 healthcare_coverage<=sqrt(Hemoglobin__Mass_volume__in_Blood)^mean_Calcium\n", + "175 healthcare_coverage<=encounters_lifetime_total_cost^2/DALY\n", + "176 healthcare_coverage<=1/2*healthcare_expenses+medications_lifetime_cost\n", + "177 healthcare_coverage<=2*Body_Mass_Index*encounters_lifetime_total_cost\n", + "178 healthcare_coverage<=e^age/healthcare_expenses\n", + "179 healthcare_coverage<=(log(age)/log(10))^Carbon_Dioxide\n", + "180 healthcare_coverage<=(e^Chloride)^QOLS\n", + "181 healthcare_coverage<=Sodium^2/num_allergies\n", + "182 healthcare_coverage<=Microalbumin_Creatinine_Ratio*e^active_care_plan_length\n", + "183 healthcare_coverage<=2*Urea_Nitrogen*encounters_lifetime_total_cost\n", + "184 healthcare_coverage<=1/2*Glucose*encounters_lifetime_payer_coverage\n", + "185 healthcare_coverage<=1/2*encounters_lifetime_payer_coverage*mean_Glucose\n", + "186 healthcare_coverage<=encounters_lifetime_payer_coverage^2/lifetime_care_plans\n", + "187 healthcare_coverage<=2*Carbon_Dioxide*encounters_lifetime_payer_coverage\n", + "188 healthcare_coverage<=2*encounters_lifetime_payer_coverage*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "189 healthcare_coverage<=(encounters_lifetime_perc_covered+1)^Diastolic_Blood_Pressure\n", + "190 healthcare_coverage<=(encounters_lifetime_perc_covered+1)^Protein__Mass_volume__in_Serum,Plasma\n", + "191 healthcare_coverage<=(1/medications_lifetime_perc_covered)^mean_Heart_rate\n", + "192 healthcare_coverage<=medications_lifetime_length^2/medications_active\n", + "193 healthcare_coverage<=10^Urea_Nitrogen/mean_Low_Density_Lipoprotein_Cholesterol\n", + "194 healthcare_coverage<=Heart_rate^2*Microalbumin_Creatinine_Ratio\n", + "195 healthcare_coverage<=log(MCHC__Mass_volume__by_Automated_count)^Urea_Nitrogen\n", + "196 healthcare_coverage<=Body_Weight^2*mean_Chloride\n", + "197 healthcare_coverage<=Body_Height^2/num_allergies\n", + "198 healthcare_coverage<=log(Low_Density_Lipoprotein_Cholesterol)^Calcium\n", + "199 healthcare_coverage<=DALY*e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "200 healthcare_coverage<=10^Potassium*active_condition_length\n", + "201 healthcare_coverage<=(Carbon_Dioxide-1)*encounters_lifetime_total_cost\n", + "202 healthcare_coverage<=e^Urea_Nitrogen/imaging_studies_lifetime\n", + "203 healthcare_coverage<=Albumin__Mass_volume__in_Serum,Plasma^2*encounters_lifetime_total_cost\n", + "204 healthcare_coverage<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*procedures_lifetime_cost\n", + "205 healthcare_coverage<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)^lifetime_conditions\n", + "206 healthcare_coverage<=sqrt(Platelets____volume__in_Blood_by_Automated_count)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "207 healthcare_coverage<=e^Hemoglobin__Mass_volume__in_Blood/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "208 healthcare_coverage>=num_allergies\n", + "209 healthcare_coverage>=encounters_lifetime_payer_coverage*log(active_care_plan_length)/log(10)\n", + "210 healthcare_coverage>=-Heart_rate+medications_lifetime_length+1\n", + "211 healthcare_coverage>=(Potassium-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "212 healthcare_coverage>=latitude^2-encounters_lifetime_total_cost\n", + "213 healthcare_coverage>=age^2+Body_Height\n", + "214 healthcare_coverage>=ceil(encounters_lifetime_payer_coverage)/Creatinine\n", + "215 healthcare_coverage>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "216 healthcare_coverage>=minimum(procedures_lifetime_cost,1/active_conditions)\n", + "217 healthcare_coverage>=(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^active_conditions\n", + "218 healthcare_coverage>=(2*device_lifetime_length)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "219 healthcare_coverage>=ceil(procedures_lifetime_cost)/Albumin__Mass_volume__in_Serum,Plasma\n", + "220 healthcare_coverage>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)^mean_Creatinine\n", + "221 healthcare_coverage>=minimum(procedures_lifetime_cost,encounters_count^2)\n", + "222 healthcare_coverage>=encounters_lifetime_perc_covered*latitude^2\n", + "223 healthcare_coverage>=mean_Ketones__Mass_volume__in_Urine_by_Test_strip^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "224 healthcare_coverage>=(num_allergies+1)*encounters_lifetime_payer_coverage\n", + "225 healthcare_coverage>=encounters_count^2-encounters_lifetime_total_cost\n", + "226 healthcare_coverage>=encounters_lifetime_payer_coverage*log(lifetime_care_plans)\n", + "227 healthcare_coverage>=Heart_rate^2+Estimated_Glomerular_Filtration_Rate\n", + "228 healthcare_coverage>=(Microalbumin_Creatinine_Ratio+1)*mean_Diastolic_Blood_Pressure\n", + "229 healthcare_coverage>=(-Calcium)^DALY\n", + "230 healthcare_coverage>=latitude^2-medications_lifetime_cost\n", + "231 healthcare_coverage>=imaging_studies_lifetime^lifetime_care_plans\n", + "232 healthcare_coverage>=longitude^2*medications_lifetime_perc_covered\n", + "233 healthcare_coverage>=1/2*Creatinine*encounters_lifetime_payer_coverage\n", + "234 healthcare_coverage>=(Respiratory_rate+1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "235 healthcare_coverage>=(Diastolic_Blood_Pressure+1)*Body_Mass_Index\n", + "236 healthcare_coverage>=(Sodium+1)*Body_Mass_Index\n", + "237 healthcare_coverage>=-MCHC__Mass_volume__by_Automated_count+medications_lifetime_length+1\n", + "238 healthcare_coverage>=encounters_count^2*medications_lifetime_perc_covered\n", + "239 healthcare_coverage>=(MCH__Entitic_mass__by_Automated_count+1)*immunizations_lifetime_cost\n", + "240 healthcare_coverage>=e^lifetime_care_plans*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "241 healthcare_coverage>=minimum(procedures_lifetime_cost,medications_lifetime_length+1)\n", + "242 healthcare_coverage>=lifetime_conditions*procedures_lifetime^2\n", + "243 healthcare_coverage>=1/2*active_condition_length*immunizations_lifetime_cost\n", + "244 healthcare_coverage>=sqrt(procedures_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "245 healthcare_coverage>=1/2*active_care_plan_length*immunizations_lifetime_cost\n", + "246 healthcare_coverage>=1/2*Body_Weight*Low_Density_Lipoprotein_Cholesterol\n", + "247 healthcare_coverage>=2*Body_Mass_Index*age\n", + "248 healthcare_coverage>=medications_lifetime^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "249 healthcare_coverage>=log(active_condition_length)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "250 healthcare_coverage>=log(Body_Weight)^active_care_plans\n", + "251 healthcare_coverage>=2*Calcium*immunizations_lifetime_cost\n", + "252 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Platelets____volume__in_Blood_by_Automated_count\n", + "253 healthcare_coverage>=Estimated_Glomerular_Filtration_Rate*ceil(Body_Mass_Index)\n", + "254 healthcare_coverage>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Systolic_Blood_Pressure\n", + "255 healthcare_coverage>=e^active_conditions/MCV__Entitic_volume__by_Automated_count\n", + "256 healthcare_coverage>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "257 healthcare_coverage>=sqrt(encounters_count)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "258 healthcare_coverage>=ceil(Hemoglobin__Mass_volume__in_Blood)^Creatinine\n", + "259 healthcare_coverage>=2*encounters_lifetime_total_cost*medications_lifetime_perc_covered\n", + "260 healthcare_coverage>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "261 healthcare_coverage>=1/2*encounters_lifetime_payer_coverage/QOLS\n", + "262 healthcare_coverage>=(QALY+1)*mean_Microalbumin_Creatinine_Ratio\n", + "263 healthcare_coverage>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported-encounters_lifetime_total_cost\n", + "264 healthcare_coverage>=2*medications_lifetime_length*medications_lifetime_perc_covered\n", + "265 healthcare_coverage>=age^2-medications_lifetime_cost\n", + "266 healthcare_coverage>=sqrt(Potassium)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "267 healthcare_coverage>=minimum(procedures_lifetime_cost,age^2)\n", + "268 healthcare_coverage>=log(Estimated_Glomerular_Filtration_Rate)^lifetime_care_plans\n", + "269 healthcare_coverage>=(active_care_plan_length+1)*Diastolic_Blood_Pressure\n", + "270 healthcare_coverage>=Glomerular_filtration_rate_1_73_sq_M_predicted*sqrt(procedures_lifetime_cost)\n", + "271 healthcare_coverage>=Microalbumin_Creatinine_Ratio^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "272 healthcare_coverage>=(1/2*MCHC__Mass_volume__by_Automated_count)^mean_Creatinine\n", + "273 healthcare_coverage>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*encounters_lifetime_payer_coverage\n", + "274 healthcare_coverage>=Systolic_Blood_Pressure*medications_active^2\n", + "275 healthcare_coverage>=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)^Potassium\n", + "276 healthcare_coverage>=medications_lifetime^2/Respiratory_rate\n", + "277 healthcare_coverage>=encounters_lifetime_payer_coverage*log(medications_active)\n", + "278 healthcare_coverage>=e^procedures_lifetime/MCHC__Mass_volume__by_Automated_count\n", + "279 healthcare_coverage>=1/2*procedures_lifetime_cost/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "280 healthcare_coverage>=minimum(medications_lifetime_length,2*procedures_lifetime_cost)\n", + "281 healthcare_coverage>=Chloride^2*medications_lifetime_perc_covered\n", + "282 healthcare_coverage>=e^DALY*imaging_studies_lifetime\n", + "283 healthcare_coverage>=(1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^medications_active\n", + "284 healthcare_coverage>=sqrt(Chloride)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "285 healthcare_coverage>=Low_Density_Lipoprotein_Cholesterol^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "286 healthcare_coverage>=encounters_lifetime_payer_coverage*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "287 healthcare_coverage>=log(Creatinine)^MCH__Entitic_mass__by_Automated_count\n", + "288 healthcare_coverage>=(1/2*Hemoglobin__Mass_volume__in_Blood)^Potassium\n", + "289 latitude<=-active_conditions-longitude\n", + "290 latitude<=log(e^Chloride)/log(10)\n", + "291 latitude<=longitude^2/Heart_rate\n", + "292 latitude<=longitude^2/Diastolic_Blood_Pressure\n", + "293 latitude<=Hemoglobin__Mass_volume__in_Blood+MCH__Entitic_mass__by_Automated_count+1\n", + "294 latitude<=DALY+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "295 latitude<=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/log(10)+age\n", + "296 latitude<=-DALY+2*age\n", + "297 latitude<=2*Carbon_Dioxide+2\n", + "298 latitude<=Heart_rate-Respiratory_rate-1\n", + "299 latitude<=floor(lifetime_condition_length)/imaging_studies_lifetime\n", + "300 latitude<=DALY+e^Estimated_Glomerular_Filtration_Rate\n", + "301 latitude<=(encounters_lifetime_total_cost-1)/DALY\n", + "302 latitude<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+log(Total_Cholesterol)\n", + "303 latitude<=1/2*Heart_rate+Hemoglobin__Mass_volume__in_Blood\n", + "304 latitude<=2*mean_Carbon_Dioxide+1\n", + "305 latitude<=-lifetime_care_plans-longitude\n", + "306 latitude<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+QALY-1\n", + "307 latitude<=2*Globulin__Mass_volume__in_Serum_by_calculation+QALY\n", + "308 latitude<=-longitude-mean_Carbon_Dioxide\n", + "309 latitude<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*Urea_Nitrogen\n", + "310 latitude<=log(e^Systolic_Blood_Pressure)/log(10)\n", + "311 latitude<=1/2*MCV__Entitic_volume__by_Automated_count+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "312 latitude<=Respiratory_rate^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "313 latitude<=log(e^Triglycerides)/log(10)\n", + "314 latitude<=Bilirubin_total__Mass_volume__in_Serum,Plasma+2*active_condition_length\n", + "315 latitude<=2*Low_Density_Lipoprotein_Cholesterol-age\n", + "316 latitude<=longitude^2/Body_Weight\n", + "317 latitude<=-MCV__Entitic_volume__by_Automated_count+floor(Sodium)\n", + "318 latitude<=-Urea_Nitrogen+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "319 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(MCHC__Mass_volume__by_Automated_count)\n", + "320 latitude<=High_Density_Lipoprotein_Cholesterol+healthcare_coverage-1\n", + "321 latitude<=High_Density_Lipoprotein_Cholesterol*log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "322 latitude<=log(Low_Density_Lipoprotein_Cholesterol)*mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/log(10)\n", + "323 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1/2*Leukocytes____volume__in_Blood_by_Automated_count\n", + "324 latitude<=floor(Leukocytes____volume__in_Blood_by_Automated_count)*mean_Urea_Nitrogen\n", + "325 latitude<=sqrt(healthcare_expenses)+longitude\n", + "326 latitude<=MCH__Entitic_mass__by_Automated_count+log(healthcare_expenses)\n", + "327 latitude<=QALY+2*Urea_Nitrogen\n", + "328 latitude<=High_Density_Lipoprotein_Cholesterol+2*lifetime_conditions\n", + "329 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "330 latitude<=Creatinine*Glucose\n", + "331 latitude<=Respiratory_rate^2-Diastolic_Blood_Pressure\n", + "332 latitude<=longitude^2/age\n", + "333 latitude<=longitude^2/Chloride\n", + "334 latitude<=Calcium^2-Carbon_Dioxide\n", + "335 latitude<=Carbon_Dioxide+1/2*age\n", + "336 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*mean_Potassium\n", + "337 latitude<=minimum(Triglycerides,floor(age))\n", + "338 latitude<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "339 latitude<=10^encounters_count/medications_lifetime_dispenses\n", + "340 latitude<=sqrt(healthcare_coverage-1)\n", + "341 latitude<=age*e^QOLS\n", + "342 latitude<=10^lifetime_condition_length/lifetime_care_plan_length\n", + "343 latitude<=lifetime_care_plan_length^2-Microalbumin_Creatinine_Ratio\n", + "344 latitude<=-Estimated_Glomerular_Filtration_Rate+2*medications_lifetime_dispenses\n", + "345 latitude<=log(encounters_lifetime_payer_coverage)/log(10)+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "346 latitude<=(lifetime_conditions+1)*QALY\n", + "347 latitude<=-Calcium+1/2*Systolic_Blood_Pressure\n", + "348 latitude<=1/2*encounters_lifetime_total_cost/active_conditions\n", + "349 latitude<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*log(MCV__Entitic_volume__by_Automated_count)\n", + "350 latitude<=(log(medications_lifetime_cost)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "351 latitude<=1/2*medications_lifetime_dispenses/num_allergies\n", + "352 latitude<=Heart_rate^2/Diastolic_Blood_Pressure\n", + "353 latitude<=sqrt(QOLS)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "354 latitude<=Body_Mass_Index+QALY-1\n", + "355 latitude<=1/2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+mean_Carbon_Dioxide\n", + "356 latitude<=minimum(healthcare_expenses,sqrt(NT_proBNP))\n", + "357 latitude<=Systolic_Blood_Pressure-active_condition_length+1\n", + "358 latitude<=Carbon_Dioxide*log(Systolic_Blood_Pressure)/log(10)\n", + "359 latitude<=1/2*Diastolic_Blood_Pressure/encounters_lifetime_perc_covered\n", + "360 latitude<=1/2*Diastolic_Blood_Pressure+Respiratory_rate\n", + "361 latitude<=-Carbon_Dioxide+Diastolic_Blood_Pressure-1\n", + "362 latitude<=1/2*Body_Weight/medications_lifetime_perc_covered\n", + "363 latitude<=1/2*Body_Weight+Respiratory_rate\n", + "364 latitude<=MCH__Entitic_mass__by_Automated_count*log(High_Density_Lipoprotein_Cholesterol)/log(10)\n", + "365 latitude<=Potassium*sqrt(Sodium)\n", + "366 latitude<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+Potassium-1\n", + "367 latitude<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+mean_Microalbumin_Creatinine_Ratio\n", + "368 latitude<=1/2*Chloride-medications_active\n", + "369 latitude<=Body_Mass_Index+2*Urea_Nitrogen\n", + "370 latitude<=sqrt(Calcium)+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "371 latitude<=10^Albumin__Mass_volume__in_Serum,Plasma/Heart_rate\n", + "372 latitude>=log(healthcare_expenses)^2/log(10)^2\n", + "373 latitude>=1/2*age\n", + "374 latitude>=(Heart_rate+1)/encounters_count\n", + "375 latitude>=-1/2*longitude\n", + "376 latitude>=1/2*Body_Weight/lifetime_conditions\n", + "377 latitude>=2*Protein__Mass_volume__in_Serum,Plasma/Albumin__Mass_volume__in_Serum,Plasma\n", + "378 latitude>=sqrt(lifetime_conditions)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "379 latitude>=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)*mean_Creatinine\n", + "380 latitude>=log(medications_lifetime_cost)/log(10)+MCHC__Mass_volume__by_Automated_count\n", + "381 latitude>=2*medications_lifetime/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "382 latitude>=1/2*Body_Weight-Urea_Nitrogen\n", + "383 latitude>=1/2*MCV__Entitic_volume__by_Automated_count-procedures_lifetime_cost\n", + "384 latitude>=(active_care_plan_length+1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "385 latitude>=4*Calcium\n", + "386 latitude>=Carbon_Dioxide*log(Body_Mass_Index)/log(10)\n", + "387 latitude>=Estimated_Glomerular_Filtration_Rate-immunizations_lifetime_cost-1\n", + "388 latitude>=log(Hemoglobin__Mass_volume__in_Blood)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "389 latitude>=-active_conditions+floor(device_lifetime_length)\n", + "390 latitude>=e^Erythrocytes____volume__in_Blood_by_Automated_count/mean_Potassium\n", + "391 latitude>=Erythrocytes____volume__in_Blood_by_Automated_count^2+procedures_lifetime\n", + "392 latitude>=Body_Mass_Index+1/2*Respiratory_rate\n", + "393 latitude>=log(encounters_count)/QOLS\n", + "394 latitude>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Urea_Nitrogen-1\n", + "395 latitude>=Diastolic_Blood_Pressure+floor(longitude)\n", + "396 latitude>=-MCHC__Mass_volume__by_Automated_count+QALY\n", + "397 latitude>=1/2*Potassium*Respiratory_rate\n", + "398 latitude>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*QALY\n", + "399 latitude>=Diastolic_Blood_Pressure-Low_Density_Lipoprotein_Cholesterol\n", + "400 latitude>=Body_Weight-Heart_rate-1\n", + "401 latitude>=age^2/Total_Cholesterol\n", + "402 latitude>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "403 latitude>=Globulin__Mass_volume__in_Serum_by_calculation+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "404 latitude>=Low_Density_Lipoprotein_Cholesterol-Systolic_Blood_Pressure+1\n", + "405 latitude>=High_Density_Lipoprotein_Cholesterol-MCHC__Mass_volume__by_Automated_count+1\n", + "406 latitude>=2*mean_Estimated_Glomerular_Filtration_Rate*num_allergies\n", + "407 latitude>=mean_Left_ventricular_Ejection_fraction^imaging_studies_lifetime\n", + "408 latitude>=minimum(active_condition_length,1/active_care_plans)\n", + "409 latitude>=2*Glomerular_filtration_rate_1_73_sq_M_predicted-mean_Sodium\n", + "410 latitude>=(2*Body_Mass_Index)^encounters_lifetime_perc_covered\n", + "411 latitude>=active_conditions+mean_Carbon_Dioxide\n", + "412 latitude>=ceil(MCH__Entitic_mass__by_Automated_count)+medications_active\n", + "413 latitude>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_High_Density_Lipoprotein_Cholesterol)\n", + "414 latitude>=log(medications_lifetime_cost)+mean_Carbon_Dioxide\n", + "415 latitude>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-medications_lifetime-1\n", + "416 latitude>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1/2*active_care_plan_length\n", + "417 latitude>=1/2*active_condition_length+lifetime_care_plans\n", + "418 latitude>=-Protein__Mass_volume__in_Serum,Plasma+mean_Chloride\n", + "419 latitude>=encounters_count-medications_lifetime-1\n", + "420 latitude>=minimum(mean_Estimated_Glomerular_Filtration_Rate,floor(active_care_plan_length))\n", + "421 latitude>=DALY-mean_Calcium-1\n", + "422 latitude>=2*Low_Density_Lipoprotein_Cholesterol/active_condition_length\n", + "423 latitude>=sqrt(procedures_lifetime_cost)/encounters_count\n", + "424 latitude>=device_lifetime_length*sqrt(medications_lifetime_perc_covered)\n", + "425 latitude>=active_condition_length*encounters_lifetime_perc_covered^2\n", + "426 latitude>=sqrt(active_condition_length)+Body_Mass_Index\n", + "427 latitude>=device_lifetime_length^2/mean_Diastolic_Blood_Pressure\n", + "428 latitude>=(1/2*encounters_count)^QOLS\n", + "429 latitude>=sqrt(encounters_lifetime_total_cost)-lifetime_condition_length\n", + "430 latitude>=-Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*Heart_rate\n", + "431 latitude>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/Carbon_Dioxide\n", + "432 latitude>=immunizations_lifetime_cost^2/healthcare_coverage\n", + "433 latitude>=Respiratory_rate*log(immunizations_lifetime_cost)/log(10)\n", + "434 latitude>=QALY*medications_lifetime_perc_covered^2\n", + "435 latitude>=-healthcare_coverage+2*medications_lifetime\n", + "436 latitude>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "437 latitude>=(Glomerular_filtration_rate_1_73_sq_M_predicted-1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "438 latitude>=Potassium^2+Creatinine\n", + "439 latitude>=10^QOLS*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "440 latitude>=Respiratory_rate*e^QOLS\n", + "441 latitude>=active_care_plans*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "442 latitude>=Respiratory_rate+mean_Carbon_Dioxide-1\n", + "443 latitude>=Estimated_Glomerular_Filtration_Rate^2/medications_lifetime_length\n", + "444 latitude>=1/2*Diastolic_Blood_Pressure-immunizations_lifetime_cost\n", + "445 latitude>=(log(High_Density_Lipoprotein_Cholesterol)/log(10))^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "446 latitude>=Potassium^2/Creatinine\n", + "447 latitude>=sqrt(Chloride)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "448 latitude>=1/2*Total_Cholesterol/mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "449 latitude>=-Carbon_Dioxide+2*MCH__Entitic_mass__by_Automated_count\n", + "450 latitude>=Carbon_Dioxide*log(MCH__Entitic_mass__by_Automated_count)/log(10)\n", + "451 longitude<=(-medications_lifetime_dispenses)^encounters_lifetime_perc_covered\n", + "452 longitude<=sqrt(medications_lifetime)-active_condition_length\n", + "453 longitude<=-Chloride+latitude-1\n", + "454 longitude<=-MCV__Entitic_volume__by_Automated_count+mean_Carbon_Dioxide\n", + "455 longitude<=-latitude-mean_Carbon_Dioxide\n", + "456 longitude<=-2*Body_Mass_Index\n", + "457 longitude<=Estimated_Glomerular_Filtration_Rate-High_Density_Lipoprotein_Cholesterol\n", + "458 longitude<=sqrt(medications_lifetime_length)-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "459 longitude<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Sodium\n", + "460 longitude<=-Diastolic_Blood_Pressure+QALY\n", + "461 longitude<=-High_Density_Lipoprotein_Cholesterol+e^lifetime_care_plans\n", + "462 longitude<=-age+lifetime_care_plan_length\n", + "463 longitude<=-Glomerular_filtration_rate_1_73_sq_M_predicted+active_care_plan_length-1\n", + "464 longitude<=e^Albumin__Mass_volume__in_Serum,Plasma-mean_Glucose\n", + "465 longitude<=-active_care_plan_length+encounters_count-1\n", + "466 longitude<=-QALY+1/2*Urea_Nitrogen\n", + "467 longitude<=-QALY+immunizations_lifetime_cost-1\n", + "468 longitude<=-active_condition_length+medications_lifetime-1\n", + "469 longitude<=-High_Density_Lipoprotein_Cholesterol+ceil(Calcium)\n", + "470 longitude<=(active_care_plans-1)*Low_Density_Lipoprotein_Cholesterol\n", + "471 longitude<=-Protein__Mass_volume__in_Serum,Plasma+procedures_lifetime_cost\n", + "472 longitude<=-MCV__Entitic_volume__by_Automated_count+1/2*age\n", + "473 longitude<=-age+mean_Respiratory_rate\n", + "474 longitude<=-Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*latitude\n", + "475 longitude<=Diastolic_Blood_Pressure-mean_Low_Density_Lipoprotein_Cholesterol\n", + "476 longitude<=-mean_Diastolic_Blood_Pressure*medications_lifetime_perc_covered\n", + "477 longitude<=-Diastolic_Blood_Pressure+ceil(latitude)\n", + "478 longitude<=-active_condition_length+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "479 longitude<=-mean_Glucose+mean_Systolic_Blood_Pressure\n", + "480 longitude<=-active_care_plan_length+2*lifetime_care_plans\n", + "481 longitude<=10^QOLS-QALY\n", + "482 longitude<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Diastolic_Blood_Pressure\n", + "483 longitude<=sqrt(Heart_rate)-High_Density_Lipoprotein_Cholesterol\n", + "484 longitude<=-Leukocytes____volume__in_Blood_by_Automated_count-active_condition_length\n", + "485 longitude<=sqrt(Leukocytes____volume__in_Blood_by_Automated_count)-QALY\n", + "486 longitude<=-Protein__Mass_volume__in_Serum,Plasma+active_conditions+1\n", + "487 longitude<=sqrt(healthcare_expenses)-immunizations_lifetime_cost\n", + "488 longitude<=-High_Density_Lipoprotein_Cholesterol+lifetime_care_plan_length+1\n", + "489 longitude<=-age+ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "490 longitude<=-QALY+e^active_care_plans\n", + "491 longitude<=-active_care_plans*lifetime_care_plans\n", + "492 longitude<=-MCV__Entitic_volume__by_Automated_count+e^active_conditions\n", + "493 longitude<=-Chloride+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "494 longitude<=sqrt(encounters_lifetime_total_cost)-mean_Glucose\n", + "495 longitude<=10^DALY-Protein__Mass_volume__in_Serum,Plasma\n", + "496 longitude<=-active_care_plans-latitude\n", + "497 longitude<=-latitude-lifetime_conditions\n", + "498 longitude<=-active_conditions-latitude\n", + "499 longitude<=-Respiratory_rate-latitude\n", + "500 longitude<=-Chloride+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1\n", + "501 longitude<=Body_Mass_Index*log(lifetime_condition_length)\n", + "502 longitude<=Diastolic_Blood_Pressure-Sodium+1\n", + "503 longitude<=1/2*Heart_rate-procedures_lifetime\n", + "504 longitude<=-High_Density_Lipoprotein_Cholesterol+encounters_count+1\n", + "505 longitude<=-High_Density_Lipoprotein_Cholesterol+lifetime_condition_length+1\n", + "506 longitude<=-device_lifetime_length/Creatinine\n", + "507 longitude<=sqrt(encounters_lifetime_total_cost)-Heart_rate\n", + "508 longitude<=-mean_Microalbumin_Creatinine_Ratio+2*medications_lifetime\n", + "509 longitude<=-age+medications_lifetime_cost-1\n", + "510 longitude<=e^medications_active-mean_High_Density_Lipoprotein_Cholesterol\n", + "511 longitude<=-Leukocytes____volume__in_Blood_by_Automated_count*medications_active\n", + "512 longitude<=(QOLS-1)*age\n", + "513 longitude<=2*Albumin__Mass_volume__in_Serum,Plasma-High_Density_Lipoprotein_Cholesterol\n", + "514 longitude<=-Body_Height+2*Heart_rate\n", + "515 longitude<=-Body_Weight+1/2*Diastolic_Blood_Pressure\n", + "516 longitude<=1/2*Body_Mass_Index-age\n", + "517 longitude<=1/Creatinine-active_condition_length\n", + "518 longitude<=-Heart_rate+2*Hemoglobin__Mass_volume__in_Blood\n", + "519 longitude<=1/2*High_Density_Lipoprotein_Cholesterol-MCV__Entitic_volume__by_Automated_count\n", + "520 longitude<=sqrt(High_Density_Lipoprotein_Cholesterol)-mean_High_Density_Lipoprotein_Cholesterol\n", + "521 longitude<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Body_Weight\n", + "522 longitude<=-Body_Weight+1/2*Glucose\n", + "523 longitude<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-Glucose\n", + "524 longitude<=sqrt(Total_Cholesterol)-age\n", + "525 longitude<=Leukocytes____volume__in_Blood_by_Automated_count^2-Diastolic_Blood_Pressure\n", + "526 longitude>=-2*latitude\n", + "527 longitude>=-1/2*Body_Height\n", + "528 longitude>=1/Hemoglobin_A1c_Hemoglobin_total_in_Blood-Diastolic_Blood_Pressure\n", + "529 longitude>=Carbon_Dioxide-Chloride+1\n", + "530 longitude>=2*active_conditions-mean_Chloride\n", + "531 longitude>=MCHC__Mass_volume__by_Automated_count-Triglycerides\n", + "532 longitude>=Leukocytes____volume__in_Blood_by_Automated_count-MCV__Entitic_volume__by_Automated_count+1\n", + "533 longitude>=-Calcium^2\n", + "534 longitude>=-Body_Height+age+1\n", + "535 longitude>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Body_Weight\n", + "536 longitude>=2*lifetime_conditions-mean_Chloride\n", + "537 longitude>=1/Microalbumin_Creatinine_Ratio-Body_Weight\n", + "538 longitude>=Body_Mass_Index-mean_Chloride-1\n", + "539 longitude>=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)-mean_Diastolic_Blood_Pressure\n", + "540 longitude>=MCHC__Mass_volume__by_Automated_count-mean_Systolic_Blood_Pressure+1\n", + "541 longitude>=-Body_Weight-Urea_Nitrogen\n", + "542 longitude>=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)-Body_Weight\n", + "543 longitude>=-Heart_rate-Respiratory_rate\n", + "544 longitude>=-Erythrocytes____volume__in_Blood_by_Automated_count-Glucose\n", + "545 longitude>=Body_Height-encounters_lifetime_total_cost\n", + "546 longitude>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-MCHC__Mass_volume__by_Automated_count\n", + "547 longitude>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-Platelets____volume__in_Blood_by_Automated_count\n", + "548 longitude>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Protein__Mass_volume__in_Serum,Plasma\n", + "549 longitude>=-Systolic_Blood_Pressure+1/2*active_condition_length\n", + "550 longitude>=-Diastolic_Blood_Pressure-active_care_plans\n", + "551 longitude>=-High_Density_Lipoprotein_Cholesterol-latitude\n", + "552 longitude>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-mean_High_Density_Lipoprotein_Cholesterol\n", + "553 longitude>=-Heart_rate-active_condition_length\n", + "554 longitude>=-Body_Weight-Respiratory_rate\n", + "555 longitude>=-MCV__Entitic_volume__by_Automated_count+log(encounters_lifetime_total_cost)\n", + "556 longitude>=-Diastolic_Blood_Pressure+log(num_allergies)\n", + "557 longitude>=-encounters_count-mean_Estimated_Glomerular_Filtration_Rate\n", + "558 longitude>=-Protein__Mass_volume__in_Serum,Plasma-Urea_Nitrogen\n", + "559 longitude>=sqrt(Microalbumin_Creatinine_Ratio)-lifetime_condition_length\n", + "560 longitude>=log(Microalbumin_Creatinine_Ratio)-mean_Diastolic_Blood_Pressure\n", + "561 longitude>=-Low_Density_Lipoprotein_Cholesterol-lifetime_condition_length\n", + "562 longitude>=log(device_lifetime_length)/log(10)-mean_Heart_rate\n", + "563 longitude>=sqrt(Leukocytes____volume__in_Blood_by_Automated_count)-mean_Diastolic_Blood_Pressure\n", + "564 longitude>=-Diastolic_Blood_Pressure+log(imaging_studies_lifetime)\n", + "565 longitude>=-Glucose+log(imaging_studies_lifetime)\n", + "566 longitude>=-Glucose-Urea_Nitrogen\n", + "567 longitude>=1/Estimated_Glomerular_Filtration_Rate-mean_Body_Weight\n", + "568 longitude>=sqrt(medications_lifetime)-mean_Chloride\n", + "569 longitude>=log(medications_lifetime_perc_covered)*medications_lifetime_length\n", + "570 longitude>=-medications_lifetime_length/medications_active\n", + "571 longitude>=sqrt(medications_lifetime_dispenses)-mean_Sodium\n", + "572 longitude>=-Diastolic_Blood_Pressure-medications_active\n", + "573 longitude>=log(Estimated_Glomerular_Filtration_Rate)/log(10)-Diastolic_Blood_Pressure\n", + "574 longitude>=-Microalbumin_Creatinine_Ratio*mean_Urea_Nitrogen\n", + "575 longitude>=-Body_Weight-procedures_lifetime_cost\n", + "576 longitude>=-Glucose-procedures_lifetime_cost\n", + "577 longitude>=-Body_Height+2*DALY\n", + "578 longitude>=2*Respiratory_rate-Systolic_Blood_Pressure\n", + "579 longitude>=-Heart_rate-Urea_Nitrogen\n", + "580 longitude>=-Heart_rate-mean_Urea_Nitrogen\n", + "581 age<=2*latitude\n", + "582 age<=1/2*Total_Cholesterol+1\n", + "583 age<=-longitude+mean_Respiratory_rate\n", + "584 age<=maximum(Body_Weight,Microalbumin_Creatinine_Ratio)\n", + "585 age<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "586 age<=QALY+e^lifetime_conditions\n", + "587 age<=lifetime_care_plan_length-longitude\n", + "588 age<=sqrt(encounters_lifetime_payer_coverage)+mean_Estimated_Glomerular_Filtration_Rate\n", + "589 age<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Glucose\n", + "590 age<=1/2*encounters_lifetime_total_cost+longitude\n", + "591 age<=(encounters_lifetime_total_cost-1)/procedures_lifetime\n", + "592 age<=-Glucose+e^active_condition_length\n", + "593 age<=encounters_count^2+QALY\n", + "594 age<=floor(High_Density_Lipoprotein_Cholesterol)+medications_lifetime_dispenses\n", + "595 age<=10^medications_lifetime-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "596 age<=e^ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "597 age<=e^active_care_plan_length/Calcium\n", + "598 age<=10^encounters_count/device_lifetime_length\n", + "599 age<=maximum(lifetime_condition_length,Low_Density_Lipoprotein_Cholesterol)\n", + "600 age<=1/2*Chloride+QALY\n", + "601 age<=log(MCH__Entitic_mass__by_Automated_count)/log(10)+Glucose\n", + "602 age<=Body_Weight+2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "603 age<=log(healthcare_expenses)+mean_Glucose\n", + "604 age<=Creatinine+2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "605 age<=floor(Albumin__Mass_volume__in_Serum,Plasma)^Potassium\n", + "606 age<=Body_Weight+encounters_count-1\n", + "607 age<=Hemoglobin__Mass_volume__in_Blood+2*MCHC__Mass_volume__by_Automated_count\n", + "608 age<=1/2*Body_Height+mean_Potassium\n", + "609 age<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+ceil(active_condition_length)\n", + "610 age<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+Low_Density_Lipoprotein_Cholesterol\n", + "611 age<=High_Density_Lipoprotein_Cholesterol+active_condition_length-1\n", + "612 age<=High_Density_Lipoprotein_Cholesterol+medications_lifetime_cost-1\n", + "613 age<=(Glucose-1)/num_allergies\n", + "614 age<=Glucose+immunizations_lifetime_cost-1\n", + "615 age<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Potassium\n", + "616 age<=10^Creatinine*Body_Mass_Index\n", + "617 age<=10^Bilirubin_total__Mass_volume__in_Serum,Plasma*latitude\n", + "618 age<=1/2*Carbon_Dioxide+Low_Density_Lipoprotein_Cholesterol\n", + "619 age<=2*active_condition_length+mean_Estimated_Glomerular_Filtration_Rate\n", + "620 age<=Bilirubin_total__Mass_volume__in_Serum,Plasma*active_care_plan_length^2\n", + "621 age<=maximum(mean_Microalbumin_Creatinine_Ratio,e^Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "622 age<=2*healthcare_coverage/Systolic_Blood_Pressure\n", + "623 age<=(Protein__Mass_volume__in_Serum,Plasma-1)/encounters_lifetime_perc_covered\n", + "624 age<=10^encounters_lifetime_perc_covered*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "625 age<=(Platelets____volume__in_Blood_by_Automated_count-1)/Creatinine\n", + "626 age<=Carbon_Dioxide^2-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "627 age<=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)-longitude\n", + "628 age<=Diastolic_Blood_Pressure+Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "629 age<=sqrt(healthcare_coverage)-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "630 age<=sqrt(healthcare_coverage)-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "631 age<=MCV__Entitic_volume__by_Automated_count-Potassium+1\n", + "632 age<=sqrt(QOLS)*mean_Total_Cholesterol\n", + "633 age<=1/2*Chloride+Microalbumin_Creatinine_Ratio\n", + "634 age<=mean_Calcium+mean_Diastolic_Blood_Pressure\n", + "635 age<=(Estimated_Glomerular_Filtration_Rate+1)*DALY\n", + "636 age<=10^lifetime_condition_length*QALY\n", + "637 age<=log(MCH__Entitic_mass__by_Automated_count)*mean_Carbon_Dioxide\n", + "638 age<=-Leukocytes____volume__in_Blood_by_Automated_count+mean_Low_Density_Lipoprotein_Cholesterol\n", + "639 age<=10^medications_lifetime_perc_covered*Diastolic_Blood_Pressure\n", + "640 age<=1/num_allergies+Protein__Mass_volume__in_Serum,Plasma\n", + "641 age<=Heart_rate+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "642 age<=sqrt(healthcare_coverage)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "643 age<=Diastolic_Blood_Pressure+log(healthcare_coverage)\n", + "644 age<=10^medications_lifetime_perc_covered*Glucose\n", + "645 age<=2*latitude-num_allergies\n", + "646 age<=Heart_rate+ceil(Carbon_Dioxide)\n", + "647 age<=Body_Height-QALY+1\n", + "648 age<=10^lifetime_care_plans+Heart_rate\n", + "649 age<=Body_Weight+1/2*active_care_plan_length\n", + "650 age<=sqrt(lifetime_condition_length)+Diastolic_Blood_Pressure\n", + "651 age<=Heart_rate+mean_Glomerular_filtration_rate_1_73_sq_M_predicted-1\n", + "652 age<=encounters_count^2/medications_lifetime_perc_covered\n", + "653 age<=Low_Density_Lipoprotein_Cholesterol+encounters_count+1\n", + "654 age<=1/imaging_studies_lifetime+mean_Glucose\n", + "655 age<=10^medications_active*Diastolic_Blood_Pressure\n", + "656 age<=maximum(lifetime_care_plan_length,2*QALY)\n", + "657 age<=1/2*Carbon_Dioxide+Diastolic_Blood_Pressure\n", + "658 age<=2*Calcium+mean_Heart_rate\n", + "659 age<=floor(Albumin__Mass_volume__in_Serum,Plasma)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "660 age<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Body_Weight\n", + "661 age<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Body_Weight\n", + "662 age<=Heart_rate*sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "663 age<=maximum(Body_Weight,Urea_Nitrogen^2)\n", + "664 age<=e^Calcium/High_Density_Lipoprotein_Cholesterol\n", + "665 age<=minimum(healthcare_expenses,2*Left_ventricular_Ejection_fraction)\n", + "666 age>=QALY+1\n", + "667 age>=sqrt(medications_lifetime)+device_lifetime_length\n", + "668 age>=DALY+QALY+1\n", + "669 age>=Respiratory_rate*e^encounters_lifetime_perc_covered\n", + "670 age>=Glomerular_filtration_rate_1_73_sq_M_predicted-lifetime_care_plan_length-1\n", + "671 age>=(1/DALY)^device_lifetime_length\n", + "672 age>=Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*longitude\n", + "673 age>=Body_Mass_Index+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "674 age>=2*DALY-Estimated_Glomerular_Filtration_Rate\n", + "675 age>=Diastolic_Blood_Pressure-Estimated_Glomerular_Filtration_Rate-1\n", + "676 age>=Leukocytes____volume__in_Blood_by_Automated_count+ceil(device_lifetime_length)\n", + "677 age>=active_care_plans+active_condition_length+1\n", + "678 age>=Respiratory_rate*log(Diastolic_Blood_Pressure)/log(10)\n", + "679 age>=(1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)^imaging_studies_lifetime\n", + "680 age>=active_care_plan_length+ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "681 age>=1/2*MCV__Entitic_volume__by_Automated_count-active_care_plans\n", + "682 age>=-Chloride+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "683 age>=Calcium+ceil(MCH__Entitic_mass__by_Automated_count)\n", + "684 age>=sqrt(QOLS)+active_care_plan_length\n", + "685 age>=(lifetime_care_plans+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "686 age>=ceil(QALY+1)\n", + "687 age>=floor(Body_Height)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "688 age>=log(lifetime_care_plans)/log(10)+active_care_plan_length\n", + "689 age>=-DALY+procedures_lifetime+1\n", + "690 age>=active_care_plans^2+medications_active\n", + "691 age>=2*Triglycerides/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "692 age>=1/2*High_Density_Lipoprotein_Cholesterol+medications_active\n", + "693 age>=Bilirubin_total__Mass_volume__in_Serum,Plasma*floor(High_Density_Lipoprotein_Cholesterol)\n", + "694 age>=log(MCV__Entitic_volume__by_Automated_count)/log(10)+QALY\n", + "695 age>=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+active_care_plan_length\n", + "696 age>=e^Albumin__Mass_volume__in_Serum,Plasma-mean_Chloride\n", + "697 age>=Protein__Mass_volume__in_Serum,Plasma-healthcare_coverage+1\n", + "698 age>=(device_lifetime_length+1)/Creatinine\n", + "699 age>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-DALY\n", + "700 age>=sqrt(encounters_lifetime_total_cost)-medications_lifetime_cost\n", + "701 age>=1/2*MCHC__Mass_volume__by_Automated_count+active_care_plan_length\n", + "702 age>=mean_Glucose*medications_lifetime_perc_covered^2\n", + "703 age>=sqrt(medications_lifetime_length)-healthcare_coverage\n", + "704 age>=(1/QOLS)^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "705 age>=e^medications_active/Triglycerides\n", + "706 num_allergies<=active_care_plans\n", + "707 num_allergies<=healthcare_coverage\n", + "708 num_allergies<=medications_lifetime\n", + "709 num_allergies<=lifetime_conditions-1\n", + "710 num_allergies<=medications_active\n", + "711 num_allergies<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "712 num_allergies<=DXA__T_score__Bone_density^procedures_lifetime_cost\n", + "713 num_allergies<=10^device_lifetime_length\n", + "714 num_allergies<=1/2*active_care_plans\n", + "715 num_allergies<=sqrt(Creatinine-1)\n", + "716 num_allergies<=floor(1/2*medications_active)\n", + "717 num_allergies<=floor(2*QOLS)\n", + "718 num_allergies<=ceil(DALY)\n", + "719 num_allergies<=floor(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "720 num_allergies<=floor(QOLS)^FEV1_FVC\n", + "721 num_allergies<=device_lifetime_length^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "722 num_allergies<=-active_care_plans+encounters_count\n", + "723 num_allergies<=log(Creatinine)^healthcare_expenses\n", + "724 num_allergies<=floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "725 num_allergies<=floor(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "726 num_allergies<=procedures_lifetime^Triglycerides\n", + "727 num_allergies<=floor(QOLS)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "728 num_allergies<=log(active_care_plan_length)^healthcare_expenses\n", + "729 num_allergies<=Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "730 num_allergies<=active_care_plans-imaging_studies_lifetime\n", + "731 num_allergies<=active_condition_length-device_lifetime_length\n", + "732 num_allergies<=maximum(immunizations_lifetime,log(lifetime_care_plans)/log(10))\n", + "733 num_allergies<=floor(1/2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "734 num_allergies<=procedures_lifetime^Creatinine\n", + "735 num_allergies<=-active_care_plan_length+lifetime_care_plan_length\n", + "736 num_allergies<=floor(log(mean_Urea_Nitrogen)/log(10))\n", + "737 num_allergies<=1/(Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime_perc_covered)\n", + "738 num_allergies<=imaging_studies_lifetime^device_lifetime_length\n", + "739 num_allergies<=immunizations_lifetime^imaging_studies_lifetime\n", + "740 num_allergies<=immunizations_lifetime^procedures_lifetime\n", + "741 num_allergies<=log(DALY)^procedures_lifetime_cost\n", + "742 num_allergies<=Bilirubin_total__Mass_volume__in_Urine_by_Test_strip^medications_lifetime_cost\n", + "743 num_allergies<=10^lifetime_condition_length*immunizations_lifetime\n", + "744 num_allergies>=log(imaging_studies_lifetime)/log(10)\n", + "745 num_allergies>=-healthcare_coverage\n", + "746 num_allergies>=-active_care_plans\n", + "747 num_allergies>=-device_lifetime_length\n", + "748 num_allergies>=-imaging_studies_lifetime\n", + "749 num_allergies>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+imaging_studies_lifetime\n", + "750 num_allergies>=log(lifetime_care_plans)/log(10)-1\n", + "751 num_allergies>=-DALY+floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "752 num_allergies>=-active_condition_length+log(Low_Density_Lipoprotein_Cholesterol)\n", + "753 num_allergies>=(-immunizations_lifetime)^mean_High_Density_Lipoprotein_Cholesterol\n", + "754 active_care_plans<=lifetime_care_plans\n", + "755 active_care_plans<=ceil(active_care_plan_length)\n", + "756 active_care_plans<=floor(Urea_Nitrogen)\n", + "757 active_care_plans<=ceil(log(healthcare_expenses)/log(10))\n", + "758 active_care_plans<=1/num_allergies+medications_active\n", + "759 active_care_plans<=-Erythrocytes____volume__in_Blood_by_Automated_count+encounters_count\n", + "760 active_care_plans<=ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "761 active_care_plans<=floor(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "762 active_care_plans<=ceil(age)/Calcium\n", + "763 active_care_plans<=(High_Density_Lipoprotein_Cholesterol-1)*QOLS\n", + "764 active_care_plans<=(log(device_lifetime_length)/log(10))^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "765 active_care_plans<=maximum(Sodium,1/imaging_studies_lifetime)\n", + "766 active_care_plans<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+immunizations_lifetime_cost\n", + "767 active_care_plans<=10^medications_active+DALY\n", + "768 active_care_plans<=log(Sodium)/QOLS\n", + "769 active_care_plans>=num_allergies\n", + "770 active_care_plans>=imaging_studies_lifetime\n", + "771 active_care_plans>=ceil(log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10))\n", + "772 active_care_plans>=1/2*lifetime_care_plans-1\n", + "773 active_care_plans>=2*num_allergies\n", + "774 active_care_plans>=floor(encounters_lifetime_perc_covered)\n", + "775 active_care_plans>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Creatinine\n", + "776 active_care_plans>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)^2\n", + "777 active_care_plans>=ceil(log(mean_Calcium)/log(10))\n", + "778 active_care_plans>=minimum(Potassium,lifetime_care_plans-1)\n", + "779 active_care_plans>=Potassium*log(lifetime_care_plans)/log(10)\n", + "780 active_care_plans>=log(High_Density_Lipoprotein_Cholesterol)/log(10)-procedures_lifetime\n", + "781 active_care_plans>=active_conditions-mean_Urea_Nitrogen\n", + "782 active_care_plans>=Bilirubin_total__Mass_volume__in_Serum,Plasma+num_allergies+1\n", + "783 active_care_plans>=-Potassium+lifetime_care_plans+1\n", + "784 active_care_plans>=-healthcare_coverage+lifetime_care_plans\n", + "785 active_care_plans>=sqrt(lifetime_care_plans)-procedures_lifetime\n", + "786 active_care_plans>=log(lifetime_care_plan_length)*medications_lifetime_perc_covered/log(10)\n", + "787 active_care_plans>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)*lifetime_care_plans\n", + "788 active_care_plans>=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,log(lifetime_care_plan_length)/log(10))\n", + "789 active_care_plans>=2*imaging_studies_lifetime-2\n", + "790 active_care_plans>=minimum(medications_active,lifetime_care_plans-1)\n", + "791 active_care_plans>=ceil(1/Creatinine)\n", + "792 active_care_plans>=floor(log(Glucose)/log(10))\n", + "793 active_care_plans>=minimum(lifetime_care_plans,log(device_lifetime_length))\n", + "794 active_care_plans>=active_care_plan_length/lifetime_care_plan_length\n", + "795 active_care_plans>=minimum(device_lifetime_length,lifetime_care_plans-1)\n", + "796 active_care_plans>=ceil(active_care_plan_length)-mean_Diastolic_Blood_Pressure\n", + "797 active_care_plans>=floor(lifetime_care_plan_length)/age\n", + "798 active_care_plans>=immunizations_lifetime^2-Albumin__Mass_volume__in_Serum,Plasma\n", + "799 active_care_plans>=-Respiratory_rate+active_conditions\n", + "800 active_care_plans>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_conditions\n", + "801 active_care_plans>=-Glomerular_filtration_rate_1_73_sq_M_predicted+ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "802 active_care_plans>=sqrt(Heart_rate)-Estimated_Glomerular_Filtration_Rate\n", + "803 active_care_plans>=-encounters_count+2*lifetime_care_plans\n", + "804 active_care_plans>=floor(Chloride)-mean_Chloride\n", + "805 active_care_plans>=-Creatinine+Erythrocytes____volume__in_Blood_by_Automated_count-1\n", + "806 active_care_plans>=ceil(log(lifetime_care_plans)/log(10))\n", + "807 active_care_plans>=lifetime_conditions-mean_Urea_Nitrogen\n", + "808 active_care_plans>=-Heart_rate+ceil(active_condition_length)\n", + "809 active_care_plans>=log(lifetime_care_plan_length)/log(10)-QOLS\n", + "810 active_care_plans>=2*lifetime_care_plan_length/Triglycerides\n", + "811 active_care_plans>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+procedures_lifetime\n", + "812 active_care_plans>=1/2*lifetime_condition_length/mean_Glucose\n", + "813 active_care_plans>=minimum(Estimated_Glomerular_Filtration_Rate,medications_active-1)\n", + "814 active_care_plans>=minimum(Potassium,e^imaging_studies_lifetime)\n", + "815 active_care_plans>=minimum(Albumin__Mass_volume__in_Serum,Plasma,floor(lifetime_care_plans))\n", + "816 active_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_conditions\n", + "817 active_care_plans>=1/2*medications_lifetime/Triglycerides\n", + "818 active_care_plans>=-lifetime_conditions+medications_active-1\n", + "819 active_care_plans>=e^Potassium/Glucose\n", + "820 active_care_plans>=(log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10))^Chloride\n", + "821 active_care_plans>=-Urea_Nitrogen+floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "822 active_care_plans>=-QALY+ceil(MCHC__Mass_volume__by_Automated_count)\n", + "823 active_care_plans>=ceil(Erythrocytes____volume__in_Blood_by_Automated_count)-procedures_lifetime_cost\n", + "824 active_care_plans>=Erythrocytes____volume__in_Blood_by_Automated_count*medications_lifetime_perc_covered\n", + "825 active_care_plans>=Erythrocytes____volume__in_Blood_by_Automated_count-active_conditions\n", + "826 active_care_plans>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,-Estimated_Glomerular_Filtration_Rate)\n", + "827 lifetime_care_plans<=2*active_care_plans+2\n", + "828 lifetime_care_plans<=encounters_count\n", + "829 lifetime_care_plans<=2*Potassium\n", + "830 lifetime_care_plans<=log(Low_Density_Lipoprotein_Cholesterol)/QOLS\n", + "831 lifetime_care_plans<=ceil(Calcium)\n", + "832 lifetime_care_plans<=-Body_Mass_Index+1/2*Diastolic_Blood_Pressure\n", + "833 lifetime_care_plans<=10^active_care_plans\n", + "834 lifetime_care_plans<=2*lifetime_conditions\n", + "835 lifetime_care_plans<=healthcare_expenses*lifetime_care_plan_length\n", + "836 lifetime_care_plans<=(active_care_plans+1)^2\n", + "837 lifetime_care_plans<=minimum(Respiratory_rate,active_conditions+1)\n", + "838 lifetime_care_plans<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1\n", + "839 lifetime_care_plans<=2*lifetime_care_plan_length/DALY\n", + "840 lifetime_care_plans<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Respiratory_rate\n", + "841 lifetime_care_plans<=active_care_plans+healthcare_coverage\n", + "842 lifetime_care_plans<=maximum(active_care_plans,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "843 lifetime_care_plans<=Erythrocytes____volume__in_Blood_by_Automated_count+1\n", + "844 lifetime_care_plans<=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)*procedures_lifetime\n", + "845 lifetime_care_plans<=(active_care_plans-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "846 lifetime_care_plans<=active_care_plans*log(Potassium)\n", + "847 lifetime_care_plans<=-active_condition_length+age-1\n", + "848 lifetime_care_plans<=medications_lifetime_cost+procedures_lifetime\n", + "849 lifetime_care_plans<=ceil(DALY)+lifetime_conditions\n", + "850 lifetime_care_plans<=active_care_plan_length^Triglycerides\n", + "851 lifetime_care_plans<=(log(lifetime_care_plan_length)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "852 lifetime_care_plans<=1/2*active_care_plan_length/Globulin__Mass_volume__in_Serum_by_calculation\n", + "853 lifetime_care_plans<=active_care_plan_length^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "854 lifetime_care_plans<=maximum(procedures_lifetime,floor(active_care_plan_length))\n", + "855 lifetime_care_plans<=minimum(Sodium,active_care_plans^2)\n", + "856 lifetime_care_plans<=maximum(active_conditions,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "857 lifetime_care_plans<=encounters_count-immunizations_lifetime\n", + "858 lifetime_care_plans<=maximum(lifetime_conditions,Potassium)\n", + "859 lifetime_care_plans<=maximum(active_care_plans,log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10))\n", + "860 lifetime_care_plans<=ceil(1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "861 lifetime_care_plans<=active_care_plans*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "862 lifetime_care_plans<=(active_care_plans+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "863 lifetime_care_plans<=(log(Systolic_Blood_Pressure)/log(10))^active_care_plans\n", + "864 lifetime_care_plans<=minimum(Respiratory_rate,1/2*encounters_count)\n", + "865 lifetime_care_plans<=DALY+1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "866 lifetime_care_plans<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_lifetime_dispenses\n", + "867 lifetime_care_plans<=encounters_lifetime_perc_covered^longitude\n", + "868 lifetime_care_plans<=medications_lifetime/num_allergies\n", + "869 lifetime_care_plans<=maximum(active_care_plans,sqrt(Leukocytes____volume__in_Blood_by_Automated_count))\n", + "870 lifetime_care_plans<=maximum(lifetime_conditions,e^medications_active)\n", + "871 lifetime_care_plans<=1/2*QOLS*Systolic_Blood_Pressure\n", + "872 lifetime_care_plans<=DALY/imaging_studies_lifetime\n", + "873 lifetime_care_plans<=maximum(DALY,log(Estimated_Glomerular_Filtration_Rate))\n", + "874 lifetime_care_plans<=Respiratory_rate-medications_active\n", + "875 lifetime_care_plans<=Creatinine+medications_lifetime+1\n", + "876 lifetime_care_plans<=Systolic_Blood_Pressure-procedures_lifetime-1\n", + "877 lifetime_care_plans<=Body_Mass_Index/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "878 lifetime_care_plans<=-active_condition_length+mean_Glucose\n", + "879 lifetime_care_plans<=log(Microalbumin_Creatinine_Ratio)/(log(10)*num_allergies)\n", + "880 lifetime_care_plans<=(Creatinine+1)^active_care_plans\n", + "881 lifetime_care_plans<=2*floor(mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "882 lifetime_care_plans<=maximum(medications_active,1/imaging_studies_lifetime)\n", + "883 lifetime_care_plans<=maximum(active_care_plans,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "884 lifetime_care_plans<=maximum(active_conditions,log(Triglycerides)/log(10))\n", + "885 lifetime_care_plans<=active_care_plans^2+procedures_lifetime\n", + "886 lifetime_care_plans<=-Heart_rate+floor(Chloride)\n", + "887 lifetime_care_plans<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/num_allergies\n", + "888 lifetime_care_plans<=maximum(active_conditions,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "889 lifetime_care_plans<=e^medications_lifetime/medications_active\n", + "890 lifetime_care_plans<=ceil(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "891 lifetime_care_plans<=10^(10^num_allergies)\n", + "892 lifetime_care_plans<=(log(Respiratory_rate)/log(10))^Carbon_Dioxide\n", + "893 lifetime_care_plans<=(log(Body_temperature)/log(10))^active_care_plans\n", + "894 lifetime_care_plans<=10^QOLS+DALY\n", + "895 lifetime_care_plans<=10^active_care_plans/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "896 lifetime_care_plans<=-Diastolic_Blood_Pressure+floor(Chloride)\n", + "897 lifetime_care_plans<=maximum(Sodium,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "898 lifetime_care_plans<=maximum(Sodium,log(Diastolic_Blood_Pressure))\n", + "899 lifetime_care_plans<=maximum(Sodium,log(Body_Weight))\n", + "900 lifetime_care_plans>=num_allergies\n", + "901 lifetime_care_plans>=active_care_plans\n", + "902 lifetime_care_plans>=ceil(medications_lifetime_perc_covered)\n", + "903 lifetime_care_plans>=2*imaging_studies_lifetime-1\n", + "904 lifetime_care_plans>=Creatinine-lifetime_conditions\n", + "905 lifetime_care_plans>=2*sqrt(imaging_studies_lifetime)\n", + "906 lifetime_care_plans>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-immunizations_lifetime_cost-1\n", + "907 lifetime_care_plans>=-active_condition_length+lifetime_conditions-1\n", + "908 lifetime_care_plans>=10^num_allergies*medications_lifetime_perc_covered\n", + "909 lifetime_care_plans>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*imaging_studies_lifetime\n", + "910 lifetime_care_plans>=floor(DALY)-latitude\n", + "911 lifetime_care_plans>=(medications_active-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "912 lifetime_care_plans>=sqrt(procedures_lifetime)-mean_Creatinine\n", + "913 lifetime_care_plans>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)-DALY\n", + "914 active_care_plan_length<=age+immunizations_lifetime-1\n", + "915 active_care_plan_length<=lifetime_care_plan_length\n", + "916 active_care_plan_length<=Body_Mass_Index^2/Calcium\n", + "917 active_care_plan_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "918 active_care_plan_length<=active_care_plans*healthcare_expenses\n", + "919 active_care_plan_length<=active_condition_length+medications_lifetime_cost\n", + "920 active_care_plan_length<=Body_Weight+procedures_lifetime_cost-1\n", + "921 active_care_plan_length<=1/2*Total_Cholesterol*mean_Creatinine\n", + "922 active_care_plan_length<=maximum(active_condition_length,Microalbumin_Creatinine_Ratio)\n", + "923 active_care_plan_length<=sqrt(Low_Density_Lipoprotein_Cholesterol)-longitude\n", + "924 active_care_plan_length<=Leukocytes____volume__in_Blood_by_Automated_count+active_condition_length-1\n", + "925 active_care_plan_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*active_condition_length\n", + "926 active_care_plan_length<=maximum(active_condition_length,medications_lifetime_length)\n", + "927 active_care_plan_length<=latitude+medications_lifetime_cost-1\n", + "928 active_care_plan_length<=Body_Height-Diastolic_Blood_Pressure+1\n", + "929 active_care_plan_length<=age+num_allergies-1\n", + "930 active_care_plan_length<=(1/2*Globulin__Mass_volume__in_Serum_by_calculation)^Diastolic_Blood_Pressure\n", + "931 active_care_plan_length<=floor(active_condition_length)/medications_lifetime_perc_covered\n", + "932 active_care_plan_length<=-QOLS+age\n", + "933 active_care_plan_length<=maximum(active_condition_length,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "934 active_care_plan_length<=1/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Heart_rate\n", + "935 active_care_plan_length<=2*Estimated_Glomerular_Filtration_Rate/num_allergies\n", + "936 active_care_plan_length<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+floor(lifetime_care_plan_length)\n", + "937 active_care_plan_length<=active_condition_length+healthcare_coverage\n", + "938 active_care_plan_length<=log(Respiratory_rate)/log(10)+Low_Density_Lipoprotein_Cholesterol\n", + "939 active_care_plan_length<=Carbon_Dioxide+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "940 active_care_plan_length<=(encounters_lifetime_total_cost-1)/MCH__Entitic_mass__by_Automated_count\n", + "941 active_care_plan_length<=-Estimated_Glomerular_Filtration_Rate+floor(Total_Cholesterol)\n", + "942 active_care_plan_length<=2*active_condition_length+immunizations_lifetime_cost\n", + "943 active_care_plan_length<=Erythrocytes____volume__in_Blood_by_Automated_count*e^active_care_plans\n", + "944 active_care_plan_length<=log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Protein__Mass_volume__in_Serum,Plasma/log(10)\n", + "945 active_care_plan_length<=1/2*Potassium*active_condition_length\n", + "946 active_care_plan_length<=Diastolic_Blood_Pressure^2/QALY\n", + "947 active_care_plan_length<=maximum(active_condition_length,2*MCH__Entitic_mass__by_Automated_count)\n", + "948 active_care_plan_length<=1/2*Low_Density_Lipoprotein_Cholesterol/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "949 active_care_plan_length<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-device_lifetime_length\n", + "950 active_care_plan_length<=Creatinine*lifetime_care_plan_length\n", + "951 active_care_plan_length<=2*Carbon_Dioxide+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "952 active_care_plan_length<=e^ceil(mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "953 active_care_plan_length<=log(Low_Density_Lipoprotein_Cholesterol)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "954 active_care_plan_length<=(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-1)*DALY\n", + "955 active_care_plan_length<=maximum(active_condition_length,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "956 active_care_plan_length<=floor(Sodium)-mean_High_Density_Lipoprotein_Cholesterol\n", + "957 active_care_plan_length<=active_condition_length+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "958 active_care_plan_length<=10^medications_active*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "959 active_care_plan_length<=-Potassium+floor(Glucose)\n", + "960 active_care_plan_length<=-Albumin__Mass_volume__in_Serum,Plasma+floor(Glucose)\n", + "961 active_care_plan_length<=Hemoglobin__Mass_volume__in_Blood*ceil(Potassium)\n", + "962 active_care_plan_length<=2*Calcium+healthcare_coverage\n", + "963 active_care_plan_length<=Total_Cholesterol-mean_Chloride-1\n", + "964 active_care_plan_length<=maximum(Triglycerides,abs(lifetime_condition_length))\n", + "965 active_care_plan_length<=Calcium^2+lifetime_conditions\n", + "966 active_care_plan_length<=maximum(active_condition_length,lifetime_care_plan_length-1)\n", + "967 active_care_plan_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "968 active_care_plan_length<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*active_conditions\n", + "969 active_care_plan_length<=QALY+ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "970 active_care_plan_length<=maximum(medications_lifetime,-Estimated_Glomerular_Filtration_Rate)\n", + "971 active_care_plan_length<=Erythrocytes____volume__in_Blood_by_Automated_count+e^active_conditions\n", + "972 active_care_plan_length<=2*healthcare_coverage/immunizations_lifetime_cost\n", + "973 active_care_plan_length<=QALY*sqrt(active_care_plans)\n", + "974 active_care_plan_length<=10^lifetime_care_plan_length/encounters_lifetime_total_cost\n", + "975 active_care_plan_length<=DALY^2+mean_Estimated_Glomerular_Filtration_Rate\n", + "976 active_care_plan_length<=QOLS+floor(lifetime_care_plan_length)\n", + "977 active_care_plan_length<=Carbon_Dioxide+e^active_conditions\n", + "978 active_care_plan_length<=-Platelets____volume__in_Blood_by_Automated_count+1/2*medications_lifetime_length\n", + "979 active_care_plan_length<=10^medications_active*Heart_rate\n", + "980 active_care_plan_length<=2*QOLS*Triglycerides\n", + "981 active_care_plan_length>=num_allergies\n", + "982 active_care_plan_length>=Body_Mass_Index+log(imaging_studies_lifetime)\n", + "983 active_care_plan_length>=minimum(Carbon_Dioxide,1/2*lifetime_care_plan_length)\n", + "984 active_care_plan_length>=1/2*medications_lifetime_length/Sodium\n", + "985 active_care_plan_length>=active_condition_length*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "986 active_care_plan_length>=-Protein__Mass_volume__in_Serum,Plasma+1/2*lifetime_care_plan_length\n", + "987 active_care_plan_length>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*lifetime_care_plan_length)\n", + "988 active_care_plan_length>=active_care_plans^2*medications_lifetime_perc_covered\n", + "989 active_care_plan_length>=minimum(active_care_plans,active_condition_length)\n", + "990 active_care_plan_length>=sqrt(lifetime_care_plan_length)-lifetime_care_plans\n", + "991 active_care_plan_length>=-Glomerular_filtration_rate_1_73_sq_M_predicted+latitude\n", + "992 active_care_plan_length>=log(procedures_lifetime_cost)/log(10)+Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "993 active_care_plan_length>=-Systolic_Blood_Pressure+2*active_condition_length\n", + "994 active_care_plan_length>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^procedures_lifetime)\n", + "995 active_care_plan_length>=ceil(lifetime_care_plan_length)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "996 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*MCHC__Mass_volume__by_Automated_count\n", + "997 active_care_plan_length>=(Urea_Nitrogen-1)/active_care_plans\n", + "998 active_care_plan_length>=-Estimated_Glomerular_Filtration_Rate+active_condition_length+1\n", + "999 active_care_plan_length>=e^Erythrocytes____volume__in_Blood_by_Automated_count/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1000 active_care_plan_length>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+active_conditions\n", + "1001 active_care_plan_length>=DALY+ceil(Potassium)\n", + "1002 active_care_plan_length>=-Calcium+device_lifetime_length+1\n", + "1003 active_care_plan_length>=-Low_Density_Lipoprotein_Cholesterol+age+1\n", + "1004 active_care_plan_length>=1/2*lifetime_care_plan_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1005 active_care_plan_length>=sqrt(medications_lifetime_length)-Body_Weight\n", + "1006 active_care_plan_length>=active_care_plans^2-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1007 active_care_plan_length>=minimum(active_condition_length,log(lifetime_care_plan_length))\n", + "1008 active_care_plan_length>=-Creatinine+1/2*procedures_lifetime\n", + "1009 active_care_plan_length>=1/2*age*num_allergies\n", + "1010 active_care_plan_length>=lifetime_care_plans*log(active_care_plans)\n", + "1011 active_care_plan_length>=(immunizations_lifetime-1)*device_lifetime_length\n", + "1012 active_care_plan_length>=floor(DALY)*medications_lifetime_perc_covered\n", + "1013 active_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-MCV__Entitic_volume__by_Automated_count\n", + "1014 active_care_plan_length>=minimum(DALY,active_care_plans^2)\n", + "1015 active_care_plan_length>=mean_Glucose-mean_Low_Density_Lipoprotein_Cholesterol\n", + "1016 active_care_plan_length>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1017 active_care_plan_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Hemoglobin_A1c_Hemoglobin_total_in_Blood+1\n", + "1018 active_care_plan_length>=sqrt(medications_lifetime_dispenses)-Urea_Nitrogen\n", + "1019 active_care_plan_length>=1/2*encounters_count*num_allergies\n", + "1020 active_care_plan_length>=(Potassium-1)*immunizations_lifetime\n", + "1021 active_care_plan_length>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*active_condition_length\n", + "1022 active_care_plan_length>=2*QALY-Triglycerides\n", + "1023 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/encounters_count\n", + "1024 active_care_plan_length>=(Platelets____volume__in_Blood_by_Automated_count+1)/Urea_Nitrogen\n", + "1025 active_care_plan_length>=sqrt(medications_lifetime_dispenses)-Calcium\n", + "1026 active_care_plan_length>=floor(lifetime_care_plan_length)/Respiratory_rate\n", + "1027 active_care_plan_length>=2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime_cost\n", + "1028 active_care_plan_length>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+active_conditions\n", + "1029 active_care_plan_length>=2*Low_Density_Lipoprotein_Cholesterol/MCHC__Mass_volume__by_Automated_count\n", + "1030 active_care_plan_length>=(Creatinine+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1031 active_care_plan_length>=floor(encounters_lifetime_perc_covered)*lifetime_care_plan_length\n", + "1032 active_care_plan_length>=1/2*medications_lifetime/mean_Calcium\n", + "1033 active_care_plan_length>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*floor(QOLS)\n", + "1034 active_care_plan_length>=Creatinine/QOLS\n", + "1035 active_care_plan_length>=minimum(mean_Estimated_Glomerular_Filtration_Rate,2*DALY)\n", + "1036 active_care_plan_length>=(1/2*Microalbumin_Creatinine_Ratio)^QOLS\n", + "1037 active_care_plan_length>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Glucose\n", + "1038 active_care_plan_length>=maximum(FEV1_FVC,-healthcare_expenses)\n", + "1039 active_care_plan_length>=-healthcare_coverage+log(medications_lifetime_cost)\n", + "1040 active_care_plan_length>=maximum(FEV1_FVC,mean_Creatinine)\n", + "1041 active_care_plan_length>=minimum(Estimated_Glomerular_Filtration_Rate,procedures_lifetime^2)\n", + "1042 active_care_plan_length>=(Glucose-1)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "1043 active_care_plan_length>=active_care_plans*log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1044 active_care_plan_length>=maximum(mean_Left_ventricular_Ejection_fraction,-healthcare_expenses)\n", + "1045 active_care_plan_length>=MCH__Entitic_mass__by_Automated_count*log(procedures_lifetime)/log(10)\n", + "1046 active_care_plan_length>=sqrt(procedures_lifetime_cost)/Carbon_Dioxide\n", + "1047 active_care_plan_length>=DALY*log(Urea_Nitrogen)/log(10)\n", + "1048 active_care_plan_length>=2*DALY*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1049 active_care_plan_length>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)/QOLS\n", + "1050 active_care_plan_length>=log(lifetime_care_plans)^mean_Potassium\n", + "1051 active_care_plan_length>=-Body_Weight+1/2*Systolic_Blood_Pressure\n", + "1052 active_care_plan_length>=lifetime_care_plans^2-age\n", + "1053 active_care_plan_length>=-Sodium+e^Potassium\n", + "1054 active_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-immunizations_lifetime_cost\n", + "1055 active_care_plan_length>=Glomerular_filtration_rate_1_73_sq_M_predicted-lifetime_condition_length-1\n", + "1056 active_care_plan_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*floor(Calcium)\n", + "1057 active_care_plan_length>=Calcium^2-mean_Low_Density_Lipoprotein_Cholesterol\n", + "1058 lifetime_care_plan_length<=(active_care_plan_length+1)*lifetime_care_plans\n", + "1059 lifetime_care_plan_length<=2*Body_Weight+encounters_count\n", + "1060 lifetime_care_plan_length<=age+lifetime_condition_length-1\n", + "1061 lifetime_care_plan_length<=(log(active_care_plan_length)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1062 lifetime_care_plan_length<=floor(Urea_Nitrogen)^active_conditions\n", + "1063 lifetime_care_plan_length<=maximum(active_condition_length,10^active_care_plans)\n", + "1064 lifetime_care_plan_length<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2+Diastolic_Blood_Pressure\n", + "1065 lifetime_care_plan_length<=(Body_Height-1)/num_allergies\n", + "1066 lifetime_care_plan_length<=lifetime_condition_length/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1067 lifetime_care_plan_length<=2*active_care_plan_length+healthcare_coverage\n", + "1068 lifetime_care_plan_length<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood-mean_Low_Density_Lipoprotein_Cholesterol\n", + "1069 lifetime_care_plan_length<=(2*encounters_lifetime_total_cost)^active_care_plan_length\n", + "1070 lifetime_care_plan_length<=healthcare_expenses^active_care_plans\n", + "1071 lifetime_care_plan_length<=10^DALY+Microalbumin_Creatinine_Ratio\n", + "1072 lifetime_care_plan_length<=QOLS*latitude^2\n", + "1073 lifetime_care_plan_length<=Carbon_Dioxide+healthcare_coverage-1\n", + "1074 lifetime_care_plan_length<=(log(Heart_rate)/log(10))^active_care_plan_length\n", + "1075 lifetime_care_plan_length<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Diastolic_Blood_Pressure\n", + "1076 lifetime_care_plan_length<=2*active_care_plan_length+lifetime_condition_length\n", + "1077 lifetime_care_plan_length<=healthcare_expenses*lifetime_care_plans\n", + "1078 lifetime_care_plan_length<=log(encounters_count)^Albumin__Mass_volume__in_Serum,Plasma\n", + "1079 lifetime_care_plan_length<=maximum(lifetime_condition_length,Triglycerides)\n", + "1080 lifetime_care_plan_length<=10^active_conditions/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1081 lifetime_care_plan_length<=maximum(age,10^active_care_plans)\n", + "1082 lifetime_care_plan_length<=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)^active_care_plans\n", + "1083 lifetime_care_plan_length<=High_Density_Lipoprotein_Cholesterol+e^active_conditions\n", + "1084 lifetime_care_plan_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(Glucose)\n", + "1085 lifetime_care_plan_length<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+lifetime_condition_length+1\n", + "1086 lifetime_care_plan_length<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2+Body_Weight\n", + "1087 lifetime_care_plan_length<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+lifetime_condition_length\n", + "1088 lifetime_care_plan_length<=maximum(lifetime_condition_length,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1089 lifetime_care_plan_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+medications_lifetime\n", + "1090 lifetime_care_plan_length<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*active_condition_length\n", + "1091 lifetime_care_plan_length<=minimum(healthcare_expenses,2*Left_ventricular_Ejection_fraction)\n", + "1092 lifetime_care_plan_length<=10^medications_active+Sodium\n", + "1093 lifetime_care_plan_length<=floor(Low_Density_Lipoprotein_Cholesterol)+mean_Total_Cholesterol\n", + "1094 lifetime_care_plan_length<=10^medications_active+Triglycerides\n", + "1095 lifetime_care_plan_length<=age*log(encounters_lifetime_total_cost)/log(10)\n", + "1096 lifetime_care_plan_length<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "1097 lifetime_care_plan_length<=Leukocytes____volume__in_Blood_by_Automated_count+Total_Cholesterol-1\n", + "1098 lifetime_care_plan_length<=Low_Density_Lipoprotein_Cholesterol+1/2*lifetime_condition_length\n", + "1099 lifetime_care_plan_length<=2*Heart_rate+encounters_count\n", + "1100 lifetime_care_plan_length<=(e^QOLS)^Hemoglobin__Mass_volume__in_Blood\n", + "1101 lifetime_care_plan_length<=(log(Diastolic_Blood_Pressure)/log(10))^Calcium\n", + "1102 lifetime_care_plan_length<=(MCV__Entitic_volume__by_Automated_count-1)*DALY\n", + "1103 lifetime_care_plan_length<=(Creatinine+1)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1104 lifetime_care_plan_length<=MCHC__Mass_volume__by_Automated_count*ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1105 lifetime_care_plan_length<=MCV__Entitic_volume__by_Automated_count+immunizations_lifetime_cost-1\n", + "1106 lifetime_care_plan_length<=2*Estimated_Glomerular_Filtration_Rate+medications_lifetime\n", + "1107 lifetime_care_plan_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1/2*encounters_count\n", + "1108 lifetime_care_plan_length<=mean_Globulin__Mass_volume__in_Serum_by_calculation*sqrt(medications_lifetime_length)\n", + "1109 lifetime_care_plan_length<=maximum(active_care_plan_length,10^lifetime_care_plans)\n", + "1110 lifetime_care_plan_length<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)*Heart_rate\n", + "1111 lifetime_care_plan_length<=1/2*Potassium*Triglycerides\n", + "1112 lifetime_care_plan_length<=sqrt(Platelets____volume__in_Blood_by_Automated_count)*encounters_count\n", + "1113 lifetime_care_plan_length<=sqrt(Respiratory_rate)^active_condition_length\n", + "1114 lifetime_care_plan_length<=floor(Leukocytes____volume__in_Blood_by_Automated_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1115 lifetime_care_plan_length<=maximum(Triglycerides,2*lifetime_condition_length)\n", + "1116 lifetime_care_plan_length<=10^encounters_lifetime_perc_covered*MCV__Entitic_volume__by_Automated_count\n", + "1117 lifetime_care_plan_length<=Urea_Nitrogen^2/num_allergies\n", + "1118 lifetime_care_plan_length<=Low_Density_Lipoprotein_Cholesterol^2/mean_Carbon_Dioxide\n", + "1119 lifetime_care_plan_length<=2*healthcare_coverage/Microalbumin_Creatinine_Ratio\n", + "1120 lifetime_care_plan_length<=Sodium*e^Creatinine\n", + "1121 lifetime_care_plan_length<=encounters_count^2+Body_Weight\n", + "1122 lifetime_care_plan_length<=(log(MCH__Entitic_mass__by_Automated_count)/log(10))^active_care_plan_length\n", + "1123 lifetime_care_plan_length<=Urea_Nitrogen^2+MCHC__Mass_volume__by_Automated_count\n", + "1124 lifetime_care_plan_length<=(medications_lifetime_length-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1125 lifetime_care_plan_length<=10^medications_active*lifetime_condition_length\n", + "1126 lifetime_care_plan_length<=(log(Heart_rate)/log(10))^mean_Urea_Nitrogen\n", + "1127 lifetime_care_plan_length<=10^Potassium/mean_Estimated_Glomerular_Filtration_Rate\n", + "1128 lifetime_care_plan_length<=10^Leukocytes____volume__in_Blood_by_Automated_count/Body_Mass_Index\n", + "1129 lifetime_care_plan_length<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^Hemoglobin__Mass_volume__in_Blood\n", + "1130 lifetime_care_plan_length<=(log(Glucose)/log(10))^Calcium\n", + "1131 lifetime_care_plan_length<=(2*Microalbumin_Creatinine_Ratio)^Creatinine\n", + "1132 lifetime_care_plan_length>=num_allergies\n", + "1133 lifetime_care_plan_length>=-active_care_plan_length+2*active_care_plans\n", + "1134 lifetime_care_plan_length>=active_care_plan_length\n", + "1135 lifetime_care_plan_length>=log(Body_Mass_Index)*medications_lifetime_perc_covered\n", + "1136 lifetime_care_plan_length>=sqrt(Total_Cholesterol)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1137 lifetime_care_plan_length>=log(active_care_plan_length)/log(10)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1138 lifetime_care_plan_length>=(lifetime_care_plans+1)*Creatinine\n", + "1139 lifetime_care_plan_length>=(immunizations_lifetime-1)*MCHC__Mass_volume__by_Automated_count\n", + "1140 lifetime_care_plan_length>=(encounters_count+1)*num_allergies\n", + "1141 lifetime_care_plan_length>=active_care_plans^2-immunizations_lifetime\n", + "1142 lifetime_care_plan_length>=Erythrocytes____volume__in_Blood_by_Automated_count*active_care_plans^2\n", + "1143 lifetime_care_plan_length>=active_care_plan_length+2*num_allergies\n", + "1144 lifetime_care_plan_length>=active_care_plan_length/Creatinine\n", + "1145 lifetime_care_plan_length>=active_care_plan_length*log(active_care_plans)\n", + "1146 lifetime_care_plan_length>=log(active_care_plan_length)/log(10)+DALY\n", + "1147 lifetime_care_plan_length>=sqrt(active_care_plans)^Potassium\n", + "1148 lifetime_care_plan_length>=(medications_lifetime_dispenses+1)/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1149 lifetime_care_plan_length>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*num_allergies\n", + "1150 lifetime_care_plan_length>=(immunizations_lifetime_cost+1)/Carbon_Dioxide\n", + "1151 lifetime_care_plan_length>=2*medications_lifetime/mean_Estimated_Glomerular_Filtration_Rate\n", + "1152 lifetime_care_plan_length>=log(Calcium)/log(10)+procedures_lifetime\n", + "1153 lifetime_care_plan_length>=Calcium^2-Protein__Mass_volume__in_Serum,Plasma\n", + "1154 lifetime_care_plan_length>=-Body_Height+Systolic_Blood_Pressure+1\n", + "1155 lifetime_care_plan_length>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*encounters_count\n", + "1156 lifetime_care_plan_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "1157 lifetime_care_plan_length>=active_care_plan_length*ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1158 lifetime_care_plan_length>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*procedures_lifetime/log(10)\n", + "1159 lifetime_care_plan_length>=ceil(Triglycerides)/Microalbumin_Creatinine_Ratio\n", + "1160 lifetime_care_plan_length>=2*active_care_plan_length-mean_Microalbumin_Creatinine_Ratio\n", + "1161 lifetime_care_plan_length>=(active_care_plans-1)*DALY\n", + "1162 lifetime_care_plan_length>=active_care_plan_length*log(lifetime_care_plans)\n", + "1163 lifetime_care_plan_length>=(log(Microalbumin_Creatinine_Ratio)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1164 lifetime_care_plan_length>=sqrt(MCV__Entitic_volume__by_Automated_count)*mean_Creatinine\n", + "1165 lifetime_care_plan_length>=floor(Total_Cholesterol)/MCHC__Mass_volume__by_Automated_count\n", + "1166 lifetime_care_plan_length>=active_care_plan_length^2/Heart_rate\n", + "1167 lifetime_care_plan_length>=active_care_plan_length^2/MCHC__Mass_volume__by_Automated_count\n", + "1168 lifetime_care_plan_length>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_care_plan_length+1)\n", + "1169 lifetime_care_plan_length>=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1170 lifetime_care_plan_length>=active_care_plan_length\n", + "1171 lifetime_care_plan_length>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*num_allergies\n", + "1172 lifetime_care_plan_length>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*device_lifetime_length\n", + "1173 lifetime_care_plan_length>=(Calcium-1)/QOLS\n", + "1174 lifetime_care_plan_length>=active_care_plan_length-healthcare_coverage+1\n", + "1175 lifetime_care_plan_length>=active_conditions^2-mean_Total_Cholesterol\n", + "1176 lifetime_care_plan_length>=sqrt(procedures_lifetime_cost)/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "1177 lifetime_care_plan_length>=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*device_lifetime_length\n", + "1178 lifetime_care_plan_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1179 lifetime_care_plan_length>=DALY^2/mean_Carbon_Dioxide\n", + "1180 lifetime_care_plan_length>=1/2*medications_lifetime_dispenses/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1181 lifetime_care_plan_length>=sqrt(encounters_lifetime_payer_coverage)-High_Density_Lipoprotein_Cholesterol\n", + "1182 lifetime_care_plan_length>=1/2*imaging_studies_lifetime*medications_lifetime\n", + "1183 lifetime_care_plan_length>=Glucose*log(imaging_studies_lifetime)\n", + "1184 lifetime_care_plan_length>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/mean_Urea_Nitrogen\n", + "1185 lifetime_care_plan_length>=(1/2*medications_active)^mean_Creatinine\n", + "1186 lifetime_care_plan_length>=medications_active^2-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1187 lifetime_care_plan_length>=procedures_lifetime^2-MCV__Entitic_volume__by_Automated_count\n", + "1188 lifetime_care_plan_length>=(-Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Potassium\n", + "1189 lifetime_care_plan_length>=active_care_plan_length/Creatinine\n", + "1190 lifetime_care_plan_length>=-Glomerular_filtration_rate_1_73_sq_M_predicted+e^Potassium\n", + "1191 lifetime_care_plan_length>=Sodium*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)\n", + "1192 lifetime_care_plan_length>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-1)*device_lifetime_length\n", + "1193 active_conditions<=lifetime_conditions\n", + "1194 active_conditions<=ceil(active_condition_length)\n", + "1195 active_conditions<=ceil(mean_Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "1196 active_conditions<=minimum(Sodium,ceil(active_care_plan_length))\n", + "1197 active_conditions<=(active_condition_length-1)^Creatinine\n", + "1198 active_conditions<=-Carbon_Dioxide+ceil(age)\n", + "1199 active_conditions<=2*lifetime_care_plan_length/Albumin__Mass_volume__in_Serum,Plasma\n", + "1200 active_conditions<=2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plan_length\n", + "1201 active_conditions<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plans\n", + "1202 active_conditions<=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+active_care_plan_length\n", + "1203 active_conditions<=ceil(DALY)/imaging_studies_lifetime\n", + "1204 active_conditions<=1/medications_lifetime+medications_lifetime_length\n", + "1205 active_conditions<=10^Creatinine+DALY\n", + "1206 active_conditions<=(log(Body_Mass_Index)/log(10))^lifetime_conditions\n", + "1207 active_conditions<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^mean_Potassium\n", + "1208 active_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,log(Body_temperature))\n", + "1209 active_conditions<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "1210 active_conditions>=num_allergies\n", + "1211 active_conditions>=lifetime_conditions*num_allergies\n", + "1212 active_conditions>=floor(encounters_lifetime_perc_covered)\n", + "1213 active_conditions>=1/2*active_care_plans\n", + "1214 active_conditions>=2*num_allergies\n", + "1215 active_conditions>=longitude^immunizations_lifetime_cost\n", + "1216 active_conditions>=lifetime_conditions-procedures_lifetime-1\n", + "1217 active_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_care_plans\n", + "1218 active_conditions>=ceil(log(lifetime_condition_length)/log(10))\n", + "1219 active_conditions>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1220 active_conditions>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,floor(lifetime_conditions))\n", + "1221 active_conditions>=minimum(DALY,lifetime_conditions-1)\n", + "1222 active_conditions>=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1223 active_conditions>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+lifetime_conditions-1\n", + "1224 active_conditions>=-Albumin__Mass_volume__in_Serum,Plasma+lifetime_conditions+1\n", + "1225 active_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_active\n", + "1226 active_conditions>=ceil(Leukocytes____volume__in_Blood_by_Automated_count)-lifetime_conditions\n", + "1227 active_conditions>=Erythrocytes____volume__in_Blood_by_Automated_count-active_care_plans\n", + "1228 active_conditions>=minimum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,lifetime_conditions-1)\n", + "1229 active_conditions>=(lifetime_conditions-1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1230 active_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1231 active_conditions>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,lifetime_conditions-1)\n", + "1232 active_conditions>=minimum(Estimated_Glomerular_Filtration_Rate,procedures_lifetime+1)\n", + "1233 active_conditions>=1/2*Protein__Mass_volume__in_Serum,Plasma/medications_lifetime\n", + "1234 active_conditions>=active_care_plans-healthcare_coverage\n", + "1235 active_conditions>=active_care_plans-medications_active\n", + "1236 active_conditions>=1/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1237 active_conditions>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma-immunizations_lifetime\n", + "1238 active_conditions>=-Sodium+ceil(Estimated_Glomerular_Filtration_Rate)\n", + "1239 active_conditions>=(log(FEV1_FVC)/log(10))^procedures_lifetime\n", + "1240 active_conditions>=1/2*lifetime_care_plans/Creatinine\n", + "1241 active_conditions>=(device_lifetime_length+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1242 active_conditions>=-Diastolic_Blood_Pressure+ceil(active_care_plan_length)\n", + "1243 active_conditions>=minimum(immunizations_lifetime_cost,lifetime_care_plans-1)\n", + "1244 active_conditions>=floor(sqrt(DALY))\n", + "1245 active_conditions>=lifetime_care_plans^2-Diastolic_Blood_Pressure\n", + "1246 active_conditions>=minimum(Estimated_Glomerular_Filtration_Rate,lifetime_conditions-1)\n", + "1247 active_conditions>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,medications_active-1)\n", + "1248 active_conditions>=active_care_plans^2-medications_lifetime_cost\n", + "1249 active_conditions>=log(Platelets____volume__in_Blood_by_Automated_count)-procedures_lifetime_cost\n", + "1250 active_conditions>=-healthcare_coverage+lifetime_conditions\n", + "1251 active_conditions>=(log(DALY)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1252 active_conditions>=-immunizations_lifetime_cost+medications_active\n", + "1253 active_conditions>=-lifetime_care_plans+lifetime_conditions-1\n", + "1254 active_conditions>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)*lifetime_conditions\n", + "1255 active_conditions>=minimum(lifetime_care_plans,device_lifetime_length)\n", + "1256 active_conditions>=(lifetime_conditions-1)*medications_lifetime_perc_covered\n", + "1257 active_conditions>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+ceil(device_lifetime_length)\n", + "1258 active_conditions>=2*Microalbumin_Creatinine_Ratio/Diastolic_Blood_Pressure\n", + "1259 active_conditions>=2*lifetime_condition_length/Low_Density_Lipoprotein_Cholesterol\n", + "1260 active_conditions>=imaging_studies_lifetime+log(DALY)\n", + "1261 active_conditions>=minimum(active_care_plans,lifetime_conditions-1)\n", + "1262 active_conditions>=log(device_lifetime_length)/DALY\n", + "1263 active_conditions>=-Total_Cholesterol+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "1264 active_conditions>=-lifetime_care_plans+medications_active-1\n", + "1265 active_conditions>=floor(sqrt(Hemoglobin__Mass_volume__in_Blood))\n", + "1266 active_conditions>=2*medications_lifetime/Total_Cholesterol\n", + "1267 active_conditions>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Creatinine\n", + "1268 active_conditions>=Potassium-encounters_count\n", + "1269 active_conditions>=1/2*sqrt(Microalbumin_Creatinine_Ratio)\n", + "1270 active_conditions>=mean_Glucose/mean_Estimated_Glomerular_Filtration_Rate\n", + "1271 active_conditions>=Leukocytes____volume__in_Blood_by_Automated_count*log(medications_active)/log(10)\n", + "1272 active_conditions>=minimum(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count,floor(procedures_lifetime))\n", + "1273 active_conditions>=minimum(Potassium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1274 active_conditions>=-Low_Density_Lipoprotein_Cholesterol+floor(QALY)\n", + "1275 active_conditions>=ceil(log(active_condition_length)/log(10))\n", + "1276 active_conditions>=-Platelets____volume__in_Blood_by_Automated_count+Total_Cholesterol-1\n", + "1277 active_conditions>=log(Creatinine)/QOLS\n", + "1278 lifetime_conditions<=active_conditions+lifetime_care_plans+1\n", + "1279 lifetime_conditions<=active_conditions+procedures_lifetime+1\n", + "1280 lifetime_conditions<=10^active_conditions\n", + "1281 lifetime_conditions<=minimum(Sodium,2*active_conditions)\n", + "1282 lifetime_conditions<=(e^Potassium)^Creatinine\n", + "1283 lifetime_conditions<=ceil(lifetime_condition_length^2)\n", + "1284 lifetime_conditions<=encounters_count+1\n", + "1285 lifetime_conditions<=maximum(active_conditions,1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1286 lifetime_conditions<=active_conditions/num_allergies\n", + "1287 lifetime_conditions<=10^(1/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1288 lifetime_conditions<=maximum(active_conditions,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "1289 lifetime_conditions<=maximum(active_conditions,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1290 lifetime_conditions<=Respiratory_rate+procedures_lifetime\n", + "1291 lifetime_conditions<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions+1\n", + "1292 lifetime_conditions<=maximum(active_conditions,floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "1293 lifetime_conditions<=maximum(active_conditions,encounters_count-1)\n", + "1294 lifetime_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,active_conditions+1)\n", + "1295 lifetime_conditions<=10^active_care_plans+active_conditions\n", + "1296 lifetime_conditions<=sqrt(Glucose)*active_care_plans\n", + "1297 lifetime_conditions<=active_conditions+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "1298 lifetime_conditions<=Respiratory_rate+procedures_lifetime_cost-1\n", + "1299 lifetime_conditions<=maximum(Heart_rate,log(encounters_lifetime_total_cost))\n", + "1300 lifetime_conditions<=e^active_conditions/Creatinine\n", + "1301 lifetime_conditions<=2*active_condition_length/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1302 lifetime_conditions<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,medications_lifetime^2)\n", + "1303 lifetime_conditions<=active_conditions+healthcare_coverage\n", + "1304 lifetime_conditions<=10^active_conditions/active_condition_length\n", + "1305 lifetime_conditions<=ceil(age)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1306 lifetime_conditions<=maximum(medications_lifetime,1/medications_lifetime_perc_covered)\n", + "1307 lifetime_conditions<=maximum(active_conditions,encounters_count)\n", + "1308 lifetime_conditions<=encounters_lifetime_perc_covered^longitude\n", + "1309 lifetime_conditions<=Urea_Nitrogen+procedures_lifetime_cost-1\n", + "1310 lifetime_conditions<=lifetime_care_plans^2/imaging_studies_lifetime\n", + "1311 lifetime_conditions<=2*Heart_rate*QOLS\n", + "1312 lifetime_conditions<=Respiratory_rate+active_care_plans\n", + "1313 lifetime_conditions<=Carbon_Dioxide-Leukocytes____volume__in_Blood_by_Automated_count\n", + "1314 lifetime_conditions<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Potassium\n", + "1315 lifetime_conditions<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(DALY)\n", + "1316 lifetime_conditions<=minimum(Triglycerides,active_conditions^2)\n", + "1317 lifetime_conditions<=-Diastolic_Blood_Pressure+ceil(Chloride)\n", + "1318 lifetime_conditions<=-Chloride+2*Heart_rate\n", + "1319 lifetime_conditions<=log(Low_Density_Lipoprotein_Cholesterol)/log(10)+active_conditions\n", + "1320 lifetime_conditions<=sqrt(Low_Density_Lipoprotein_Cholesterol)+procedures_lifetime_cost\n", + "1321 lifetime_conditions<=2*Low_Density_Lipoprotein_Cholesterol/mean_Calcium\n", + "1322 lifetime_conditions<=active_conditions+floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1323 lifetime_conditions<=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions\n", + "1324 lifetime_conditions<=Potassium+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1325 lifetime_conditions<=maximum(Sodium,2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1326 lifetime_conditions<=maximum(active_conditions,1/2*Hemoglobin__Mass_volume__in_Blood)\n", + "1327 lifetime_conditions<=sqrt(Estimated_Glomerular_Filtration_Rate)+DALY\n", + "1328 lifetime_conditions<=maximum(medications_lifetime,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1329 lifetime_conditions<=log(Microalbumin_Creatinine_Ratio)/log(10)+active_conditions\n", + "1330 lifetime_conditions<=minimum(healthcare_expenses,sqrt(Left_ventricular_Ejection_fraction))\n", + "1331 lifetime_conditions<=10^floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1332 lifetime_conditions>=QOLS\n", + "1333 lifetime_conditions>=active_conditions\n", + "1334 lifetime_conditions>=ceil(log(procedures_lifetime))\n", + "1335 lifetime_conditions>=ceil(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1336 lifetime_conditions>=ceil(sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count))\n", + "1337 lifetime_conditions>=Creatinine-lifetime_care_plans\n", + "1338 lifetime_conditions>=lifetime_care_plans-medications_lifetime+1\n", + "1339 lifetime_conditions>=lifetime_care_plans^2/mean_Calcium\n", + "1340 lifetime_conditions>=minimum(device_lifetime_length,medications_active)\n", + "1341 lifetime_conditions>=Potassium-immunizations_lifetime_cost\n", + "1342 lifetime_conditions>=Glomerular_filtration_rate_1_73_sq_M_predicted/lifetime_care_plan_length\n", + "1343 lifetime_conditions>=minimum(Estimated_Glomerular_Filtration_Rate,ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "1344 lifetime_conditions>=-active_care_plan_length+floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1345 lifetime_conditions>=minimum(DALY,floor(medications_active))\n", + "1346 lifetime_conditions>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Creatinine\n", + "1347 lifetime_conditions>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*procedures_lifetime)\n", + "1348 lifetime_conditions>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_active+1\n", + "1349 lifetime_conditions>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-Systolic_Blood_Pressure+1\n", + "1350 lifetime_conditions>=log(Total_score__MMSE_)^immunizations_lifetime\n", + "1351 active_condition_length<=1/2*lifetime_condition_length+medications_lifetime_cost\n", + "1352 active_condition_length<=lifetime_condition_length\n", + "1353 active_condition_length<=1/2*Systolic_Blood_Pressure/num_allergies\n", + "1354 active_condition_length<=Body_Height-mean_Heart_rate\n", + "1355 active_condition_length<=2*Low_Density_Lipoprotein_Cholesterol-QALY\n", + "1356 active_condition_length<=1/Creatinine-longitude\n", + "1357 active_condition_length<=-active_care_plans+age-1\n", + "1358 active_condition_length<=maximum(active_care_plan_length,Heart_rate-1)\n", + "1359 active_condition_length<=maximum(active_care_plan_length,e^Albumin__Mass_volume__in_Serum,Plasma)\n", + "1360 active_condition_length<=active_conditions*healthcare_expenses\n", + "1361 active_condition_length<=(Creatinine+1)*latitude\n", + "1362 active_condition_length<=2*Carbon_Dioxide+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1363 active_condition_length<=(Creatinine+1)^Urea_Nitrogen\n", + "1364 active_condition_length<=sqrt(encounters_lifetime_payer_coverage)+MCH__Entitic_mass__by_Automated_count\n", + "1365 active_condition_length<=latitude+medications_lifetime_cost+1\n", + "1366 active_condition_length<=-Estimated_Glomerular_Filtration_Rate+floor(Body_Height)\n", + "1367 active_condition_length<=10^encounters_lifetime_perc_covered*QALY\n", + "1368 active_condition_length<=(QALY-1)/num_allergies\n", + "1369 active_condition_length<=10^DALY*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1370 active_condition_length<=active_conditions^2+Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1371 active_condition_length<=maximum(medications_lifetime_length,latitude+1)\n", + "1372 active_condition_length<=-Erythrocytes____volume__in_Blood_by_Automated_count+floor(age)\n", + "1373 active_condition_length<=Microalbumin_Creatinine_Ratio+2*Respiratory_rate\n", + "1374 active_condition_length<=sqrt(QOLS)*lifetime_condition_length\n", + "1375 active_condition_length<=active_conditions^2+QALY\n", + "1376 active_condition_length<=medications_lifetime^2/num_allergies\n", + "1377 active_condition_length<=-device_lifetime_length+lifetime_condition_length\n", + "1378 active_condition_length<=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+lifetime_condition_length-1\n", + "1379 active_condition_length<=Leukocytes____volume__in_Blood_by_Automated_count+1/2*lifetime_condition_length\n", + "1380 active_condition_length<=Respiratory_rate+1/2*lifetime_condition_length\n", + "1381 active_condition_length<=maximum(QALY,DALY^2)\n", + "1382 active_condition_length<=2*DALY+Heart_rate\n", + "1383 active_condition_length<=maximum(active_care_plan_length,2*QALY)\n", + "1384 active_condition_length<=2*Carbon_Dioxide+encounters_count\n", + "1385 active_condition_length<=1/2*Chloride/medications_lifetime_perc_covered\n", + "1386 active_condition_length<=sqrt(active_care_plans)+Protein__Mass_volume__in_Serum,Plasma\n", + "1387 active_condition_length<=Heart_rate+procedures_lifetime_cost-1\n", + "1388 active_condition_length<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Heart_rate\n", + "1389 active_condition_length<=4*mean_Albumin__Mass_volume__in_Serum,Plasma^2\n", + "1390 active_condition_length<=Hemoglobin__Mass_volume__in_Blood*ceil(Potassium)\n", + "1391 active_condition_length<=MCHC__Mass_volume__by_Automated_count+1/2*QALY\n", + "1392 active_condition_length<=maximum(active_care_plan_length,2*MCH__Entitic_mass__by_Automated_count)\n", + "1393 active_condition_length<=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1394 active_condition_length<=Body_Weight-mean_Potassium-1\n", + "1395 active_condition_length<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+immunizations_lifetime_cost-1\n", + "1396 active_condition_length<=(latitude-1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1397 active_condition_length<=Carbon_Dioxide+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "1398 active_condition_length<=(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-1)*DALY\n", + "1399 active_condition_length<=(Systolic_Blood_Pressure-1)*Creatinine\n", + "1400 active_condition_length<=maximum(latitude,2*Microalbumin_Creatinine_Ratio)\n", + "1401 active_condition_length<=encounters_count+floor(Microalbumin_Creatinine_Ratio)\n", + "1402 active_condition_length<=2*QOLS*mean_Triglycerides\n", + "1403 active_condition_length<=Sodium^2/mean_Triglycerides\n", + "1404 active_condition_length<=Total_Cholesterol-mean_Chloride-1\n", + "1405 active_condition_length<=(1/2*Urea_Nitrogen)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1406 active_condition_length<=Creatinine*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2\n", + "1407 active_condition_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+immunizations_lifetime_cost-1\n", + "1408 active_condition_length<=Erythrocytes____volume__in_Blood_by_Automated_count+e^active_conditions\n", + "1409 active_condition_length<=Leukocytes____volume__in_Blood_by_Automated_count*encounters_count\n", + "1410 active_condition_length<=2*Body_Height/Potassium\n", + "1411 active_condition_length<=10^medications_active*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "1412 active_condition_length<=-lifetime_care_plans+mean_Diastolic_Blood_Pressure\n", + "1413 active_condition_length<=-latitude+mean_Triglycerides\n", + "1414 active_condition_length<=maximum(active_care_plan_length,2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "1415 active_condition_length<=lifetime_condition_length^2-lifetime_care_plans\n", + "1416 active_condition_length<=active_care_plan_length+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1417 active_condition_length<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+lifetime_condition_length+1\n", + "1418 active_condition_length<=Respiratory_rate^2-Diastolic_Blood_Pressure\n", + "1419 active_condition_length<=2*ceil(High_Density_Lipoprotein_Cholesterol)\n", + "1420 active_condition_length<=(log(healthcare_expenses)/log(10))^active_conditions\n", + "1421 active_condition_length<=maximum(active_care_plan_length,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1422 active_condition_length<=maximum(active_care_plan_length,Microalbumin_Creatinine_Ratio^2)\n", + "1423 active_condition_length<=active_care_plans^2*mean_Estimated_Glomerular_Filtration_Rate\n", + "1424 active_condition_length<=10^active_conditions/lifetime_conditions\n", + "1425 active_condition_length<=2*healthcare_coverage/immunizations_lifetime_cost\n", + "1426 active_condition_length<=Urea_Nitrogen*e^active_care_plans\n", + "1427 active_condition_length<=(active_care_plan_length-1)^lifetime_condition_length\n", + "1428 active_condition_length<=2*active_care_plan_length+latitude\n", + "1429 active_condition_length<=lifetime_condition_length^2/procedures_lifetime\n", + "1430 active_condition_length<=e^active_conditions/imaging_studies_lifetime\n", + "1431 active_condition_length<=maximum(QALY,e^active_conditions)\n", + "1432 active_condition_length<=Carbon_Dioxide+e^active_conditions\n", + "1433 active_condition_length<=(active_conditions+1)*Respiratory_rate\n", + "1434 active_condition_length<=1/2*Low_Density_Lipoprotein_Cholesterol/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1435 active_condition_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1436 active_condition_length<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1437 active_condition_length<=10^medications_lifetime+QALY\n", + "1438 active_condition_length<=maximum(QALY,e^DALY)\n", + "1439 active_condition_length<=DALY^2+Estimated_Glomerular_Filtration_Rate\n", + "1440 active_condition_length>=num_allergies\n", + "1441 active_condition_length>=device_lifetime_length\n", + "1442 active_condition_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*active_conditions\n", + "1443 active_condition_length>=sqrt(QOLS)*medications_active\n", + "1444 active_condition_length>=log(Carbon_Dioxide)/QOLS\n", + "1445 active_condition_length>=-Body_Weight+1/2*Systolic_Blood_Pressure\n", + "1446 active_condition_length>=active_care_plan_length*floor(encounters_lifetime_perc_covered)\n", + "1447 active_condition_length>=-Urea_Nitrogen+1/2*age\n", + "1448 active_condition_length>=-Erythrocytes____volume__in_Blood_by_Automated_count+active_care_plan_length+1\n", + "1449 active_condition_length>=lifetime_care_plans*log(active_care_plans)\n", + "1450 active_condition_length>=1/2*active_care_plan_length-immunizations_lifetime_cost\n", + "1451 active_condition_length>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,abs(active_care_plan_length))\n", + "1452 active_condition_length>=2*DALY-procedures_lifetime_cost\n", + "1453 active_condition_length>=minimum(Potassium,abs(lifetime_condition_length))\n", + "1454 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+active_conditions\n", + "1455 active_condition_length>=minimum(mean_Estimated_Glomerular_Filtration_Rate,floor(active_care_plan_length))\n", + "1456 active_condition_length>=maximum(FEV1_FVC,mean_Creatinine)\n", + "1457 active_condition_length>=2*lifetime_condition_length/mean_Carbon_Dioxide\n", + "1458 active_condition_length>=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)-1\n", + "1459 active_condition_length>=Carbon_Dioxide-procedures_lifetime_cost+1\n", + "1460 active_condition_length>=Urea_Nitrogen-immunizations_lifetime_cost+1\n", + "1461 active_condition_length>=1/2*Body_Weight-latitude\n", + "1462 active_condition_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma+e^imaging_studies_lifetime\n", + "1463 active_condition_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma+2*active_conditions\n", + "1464 active_condition_length>=active_care_plan_length*sqrt(medications_lifetime_perc_covered)\n", + "1465 active_condition_length>=sqrt(medications_lifetime_length)+longitude\n", + "1466 active_condition_length>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*encounters_lifetime_perc_covered\n", + "1467 active_condition_length>=-Heart_rate+floor(QALY)\n", + "1468 active_condition_length>=(Creatinine+1)*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1469 active_condition_length>=(medications_lifetime_length+1)/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1470 active_condition_length>=-Leukocytes____volume__in_Blood_by_Automated_count+active_care_plan_length+1\n", + "1471 active_condition_length>=minimum(active_care_plans,active_care_plan_length)\n", + "1472 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+device_lifetime_length+1\n", + "1473 active_condition_length>=active_care_plan_length-healthcare_coverage\n", + "1474 active_condition_length>=active_care_plan_length-medications_lifetime_cost\n", + "1475 active_condition_length>=active_care_plan_length-medications_lifetime_dispenses\n", + "1476 active_condition_length>=sqrt(medications_lifetime_dispenses)-Urea_Nitrogen\n", + "1477 active_condition_length>=lifetime_conditions*log(Glucose)/log(10)\n", + "1478 active_condition_length>=1/2*encounters_count*num_allergies\n", + "1479 active_condition_length>=1/2*Low_Density_Lipoprotein_Cholesterol-MCHC__Mass_volume__by_Automated_count\n", + "1480 active_condition_length>=10^num_allergies*mean_Creatinine\n", + "1481 active_condition_length>=-active_care_plans+log(medications_lifetime_dispenses)\n", + "1482 active_condition_length>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,abs(active_care_plan_length))\n", + "1483 active_condition_length>=-Chloride+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1484 active_condition_length>=1/2*medications_lifetime/mean_Calcium\n", + "1485 active_condition_length>=medications_active^2-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1486 active_condition_length>=2*active_care_plan_length/Potassium\n", + "1487 active_condition_length>=ceil(device_lifetime_length)-medications_lifetime\n", + "1488 active_condition_length>=medications_active^2-Carbon_Dioxide\n", + "1489 active_condition_length>=minimum(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,1/active_care_plans)\n", + "1490 active_condition_length>=1/2*Chloride-healthcare_coverage\n", + "1491 active_condition_length>=sqrt(Diastolic_Blood_Pressure)-procedures_lifetime_cost\n", + "1492 active_condition_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-medications_lifetime\n", + "1493 active_condition_length>=2*DALY-active_care_plan_length\n", + "1494 active_condition_length>=2*DALY-medications_lifetime\n", + "1495 active_condition_length>=1/2*QALY*imaging_studies_lifetime\n", + "1496 active_condition_length>=minimum(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count,2*device_lifetime_length)\n", + "1497 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*log(encounters_lifetime_payer_coverage)\n", + "1498 active_condition_length>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*num_allergies\n", + "1499 active_condition_length>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/encounters_lifetime_perc_covered\n", + "1500 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*lifetime_conditions\n", + "1501 active_condition_length>=(encounters_lifetime_perc_covered+1)*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1502 active_condition_length>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1503 active_condition_length>=maximum(Body_temperature,-Triglycerides)\n", + "1504 active_condition_length>=(Creatinine-1)*longitude\n", + "1505 active_condition_length>=-Creatinine+1/2*active_care_plan_length\n", + "1506 active_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-immunizations_lifetime_cost\n", + "1507 active_condition_length>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*active_care_plan_length\n", + "1508 active_condition_length>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-encounters_count\n", + "1509 active_condition_length>=sqrt(NT_proBNP)^procedures_lifetime\n", + "1510 lifetime_condition_length<=sqrt(medications_lifetime_cost)+Body_Height\n", + "1511 lifetime_condition_length<=(active_condition_length+1)*lifetime_conditions\n", + "1512 lifetime_condition_length<=floor(QALY)^2\n", + "1513 lifetime_condition_length<=1/2*10^active_conditions\n", + "1514 lifetime_condition_length<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*ceil(active_condition_length)\n", + "1515 lifetime_condition_length<=Systolic_Blood_Pressure+e^active_conditions\n", + "1516 lifetime_condition_length<=e^Glomerular_filtration_rate_1_73_sq_M_predicted-lifetime_care_plan_length\n", + "1517 lifetime_condition_length<=2*active_condition_length+healthcare_coverage\n", + "1518 lifetime_condition_length<=-Leukocytes____volume__in_Blood_by_Automated_count+2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1519 lifetime_condition_length<=DALY^2+Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1520 lifetime_condition_length<=(e^encounters_count)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1521 lifetime_condition_length<=2*active_care_plans*mean_Glucose\n", + "1522 lifetime_condition_length<=1/2*healthcare_expenses/Glucose\n", + "1523 lifetime_condition_length<=10^Creatinine*Glucose\n", + "1524 lifetime_condition_length<=e^active_condition_length+1\n", + "1525 lifetime_condition_length<=Urea_Nitrogen*active_conditions^2\n", + "1526 lifetime_condition_length<=2*encounters_lifetime_total_cost/Calcium\n", + "1527 lifetime_condition_length<=10^encounters_count-QALY\n", + "1528 lifetime_condition_length<=(e^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^QOLS\n", + "1529 lifetime_condition_length<=10^active_care_plans*Systolic_Blood_Pressure\n", + "1530 lifetime_condition_length<=1/2*Low_Density_Lipoprotein_Cholesterol*active_conditions\n", + "1531 lifetime_condition_length<=Albumin__Mass_volume__in_Serum,Plasma*sqrt(encounters_lifetime_total_cost)\n", + "1532 lifetime_condition_length<=(Urea_Nitrogen+1)*MCH__Entitic_mass__by_Automated_count\n", + "1533 lifetime_condition_length<=2*Body_Mass_Index*lifetime_conditions\n", + "1534 lifetime_condition_length<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^active_condition_length\n", + "1535 lifetime_condition_length<=floor(Urea_Nitrogen)^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1536 lifetime_condition_length<=active_care_plan_length^2+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1537 lifetime_condition_length<=2*medications_lifetime_length/Hemoglobin__Mass_volume__in_Blood\n", + "1538 lifetime_condition_length<=Carbon_Dioxide*sqrt(Platelets____volume__in_Blood_by_Automated_count)\n", + "1539 lifetime_condition_length<=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime\n", + "1540 lifetime_condition_length<=(log(latitude)/log(10))^mean_Respiratory_rate\n", + "1541 lifetime_condition_length<=e^lifetime_care_plan_length/active_care_plan_length\n", + "1542 lifetime_condition_length<=active_conditions^2*mean_Urea_Nitrogen\n", + "1543 lifetime_condition_length<=Sodium+medications_lifetime_cost-1\n", + "1544 lifetime_condition_length<=10^DALY+Body_Height\n", + "1545 lifetime_condition_length<=-lifetime_conditions*longitude\n", + "1546 lifetime_condition_length<=10^Creatinine*Microalbumin_Creatinine_Ratio\n", + "1547 lifetime_condition_length<=DALY^2+Platelets____volume__in_Blood_by_Automated_count\n", + "1548 lifetime_condition_length<=maximum(medications_lifetime_cost,Sodium-1)\n", + "1549 lifetime_condition_length<=sqrt(medications_lifetime_cost)+Estimated_Glomerular_Filtration_Rate\n", + "1550 lifetime_condition_length<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)*active_conditions\n", + "1551 lifetime_condition_length<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+e^active_conditions\n", + "1552 lifetime_condition_length<=10^lifetime_care_plan_length/medications_lifetime_perc_covered\n", + "1553 lifetime_condition_length<=Sodium+1/2*medications_lifetime_dispenses\n", + "1554 lifetime_condition_length<=10^DALY+MCV__Entitic_volume__by_Automated_count\n", + "1555 lifetime_condition_length<=sqrt(healthcare_expenses)+Carbon_Dioxide\n", + "1556 lifetime_condition_length<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)^active_conditions\n", + "1557 lifetime_condition_length<=sqrt(Estimated_Glomerular_Filtration_Rate)*encounters_count\n", + "1558 lifetime_condition_length<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "1559 lifetime_condition_length<=10^active_conditions/DALY\n", + "1560 lifetime_condition_length<=(Glucose-1)*mean_Estimated_Glomerular_Filtration_Rate\n", + "1561 lifetime_condition_length<=10^active_condition_length/Body_Mass_Index\n", + "1562 lifetime_condition_length<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)*active_condition_length\n", + "1563 lifetime_condition_length<=e^active_condition_length/medications_lifetime\n", + "1564 lifetime_condition_length<=ceil(Leukocytes____volume__in_Blood_by_Automated_count)*mean_Diastolic_Blood_Pressure\n", + "1565 lifetime_condition_length<=Total_Cholesterol^2/QALY\n", + "1566 lifetime_condition_length<=mean_Glucose^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1567 lifetime_condition_length<=Triglycerides*ceil(DALY)\n", + "1568 lifetime_condition_length<=(Respiratory_rate+1)*mean_Microalbumin_Creatinine_Ratio\n", + "1569 lifetime_condition_length<=(Glucose+1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1570 lifetime_condition_length<=10^DALY+Sodium\n", + "1571 lifetime_condition_length<=Sodium*ceil(DALY)\n", + "1572 lifetime_condition_length<=10^Estimated_Glomerular_Filtration_Rate+lifetime_conditions\n", + "1573 lifetime_condition_length<=maximum(medications_lifetime_dispenses,2*Heart_rate)\n", + "1574 lifetime_condition_length<=log(Urea_Nitrogen)^mean_Urea_Nitrogen\n", + "1575 lifetime_condition_length<=minimum(healthcare_expenses,FEV1_FVC^2)\n", + "1576 lifetime_condition_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1577 lifetime_condition_length<=2*Body_Height+procedures_lifetime_cost\n", + "1578 lifetime_condition_length<=Low_Density_Lipoprotein_Cholesterol^2/active_conditions\n", + "1579 lifetime_condition_length<=(e^Creatinine)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "1580 lifetime_condition_length<=Carbon_Dioxide^2*Creatinine\n", + "1581 lifetime_condition_length<=(log(Carbon_Dioxide)/log(10))^active_condition_length\n", + "1582 lifetime_condition_length<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Systolic_Blood_Pressure\n", + "1583 lifetime_condition_length>=log(immunizations_lifetime_cost)/(encounters_lifetime_payer_coverage*log(10))\n", + "1584 lifetime_condition_length>=2*active_care_plans\n", + "1585 lifetime_condition_length>=active_condition_length\n", + "1586 lifetime_condition_length>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "1587 lifetime_condition_length>=sqrt(Microalbumin_Creatinine_Ratio)-longitude\n", + "1588 lifetime_condition_length>=active_condition_length*log(encounters_count)/log(10)\n", + "1589 lifetime_condition_length>=2*device_lifetime_length\n", + "1590 lifetime_condition_length>=lifetime_care_plan_length+longitude+1\n", + "1591 lifetime_condition_length>=1/2*procedures_lifetime_cost/Microalbumin_Creatinine_Ratio\n", + "1592 lifetime_condition_length>=(1/Creatinine)^lifetime_conditions\n", + "1593 lifetime_condition_length>=minimum(Protein__Mass_volume__in_Serum,Plasma,abs(lifetime_care_plan_length))\n", + "1594 lifetime_condition_length>=Leukocytes____volume__in_Blood_by_Automated_count*log(Body_Height)\n", + "1595 lifetime_condition_length>=1/2*Microalbumin_Creatinine_Ratio+procedures_lifetime\n", + "1596 lifetime_condition_length>=ceil(Body_Height)-mean_Estimated_Glomerular_Filtration_Rate\n", + "1597 lifetime_condition_length>=active_care_plan_length^2/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1598 lifetime_condition_length>=active_condition_length*log(active_conditions)\n", + "1599 lifetime_condition_length>=2*active_condition_length-medications_lifetime_cost\n", + "1600 lifetime_condition_length>=minimum(Sodium,medications_lifetime-1)\n", + "1601 lifetime_condition_length>=-age+lifetime_care_plan_length+1\n", + "1602 lifetime_condition_length>=(log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/log(10))^QALY\n", + "1603 lifetime_condition_length>=DALY*sqrt(active_care_plan_length)\n", + "1604 lifetime_condition_length>=2*active_care_plan_length-medications_lifetime_cost\n", + "1605 lifetime_condition_length>=Calcium^2-immunizations_lifetime_cost\n", + "1606 lifetime_condition_length>=lifetime_conditions*log(Urea_Nitrogen)\n", + "1607 lifetime_condition_length>=Carbon_Dioxide*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1608 lifetime_condition_length>=(DALY+1)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "1609 lifetime_condition_length>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "1610 lifetime_condition_length>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(lifetime_care_plan_length)\n", + "1611 lifetime_condition_length>=log(Hemoglobin__Mass_volume__in_Blood)*mean_Carbon_Dioxide\n", + "1612 lifetime_condition_length>=-MCHC__Mass_volume__by_Automated_count+lifetime_care_plan_length+1\n", + "1613 lifetime_condition_length>=10^QOLS*num_allergies\n", + "1614 lifetime_condition_length>=latitude*log(DALY)/log(10)\n", + "1615 lifetime_condition_length>=(1/2*active_care_plans)^Potassium\n", + "1616 lifetime_condition_length>=(1/2*active_care_plans)^mean_Potassium\n", + "1617 lifetime_condition_length>=-Body_Height+mean_Triglycerides\n", + "1618 lifetime_condition_length>=(1/2*Systolic_Blood_Pressure)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1619 lifetime_condition_length>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,1/medications_active)\n", + "1620 lifetime_condition_length>=Erythrocytes____volume__in_Blood_by_Automated_count*e^Creatinine\n", + "1621 lifetime_condition_length>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+Platelets____volume__in_Blood_by_Automated_count+1\n", + "1622 lifetime_condition_length>=sqrt(Estimated_Glomerular_Filtration_Rate)+encounters_count\n", + "1623 lifetime_condition_length>=2*procedures_lifetime/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1624 lifetime_condition_length>=DALY*log(healthcare_expenses)/log(10)\n", + "1625 lifetime_condition_length>=imaging_studies_lifetime*latitude\n", + "1626 lifetime_condition_length>=-Body_Mass_Index+2*active_condition_length\n", + "1627 lifetime_condition_length>=-Triglycerides+1/2*medications_lifetime\n", + "1628 lifetime_condition_length>=-Total_Cholesterol+2*lifetime_care_plan_length\n", + "1629 lifetime_condition_length>=Bilirubin_total__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "1630 lifetime_condition_length>=10^imaging_studies_lifetime*DALY\n", + "1631 lifetime_condition_length>=(medications_active+1)*DALY\n", + "1632 lifetime_condition_length>=2*medications_lifetime_dispenses/MCH__Entitic_mass__by_Automated_count\n", + "1633 lifetime_condition_length>=minimum(Microalbumin_Creatinine_Ratio,2*lifetime_care_plan_length)\n", + "1634 lifetime_condition_length>=Diastolic_Blood_Pressure*log(device_lifetime_length)/log(10)\n", + "1635 lifetime_condition_length>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Low_Density_Lipoprotein_Cholesterol+1\n", + "1636 lifetime_condition_length>=High_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost+1\n", + "1637 lifetime_condition_length>=device_lifetime_length^2/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "1638 lifetime_condition_length>=sqrt(procedures_lifetime_cost)-MCV__Entitic_volume__by_Automated_count\n", + "1639 lifetime_condition_length>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2-mean_High_Density_Lipoprotein_Cholesterol\n", + "1640 lifetime_condition_length>=e^Leukocytes____volume__in_Blood_by_Automated_count/Sodium\n", + "1641 lifetime_condition_length>=-Body_Height+2*Estimated_Glomerular_Filtration_Rate\n", + "1642 lifetime_condition_length>=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-lifetime_care_plan_length\n", + "1643 lifetime_condition_length>=(1/2*medications_lifetime)^QOLS\n", + "1644 lifetime_condition_length>=(Microalbumin_Creatinine_Ratio+1)*num_allergies\n", + "1645 lifetime_condition_length>=minimum(mean_Microalbumin_Creatinine_Ratio,mean_Triglycerides)\n", + "1646 lifetime_condition_length>=Sodium+log(imaging_studies_lifetime)\n", + "1647 lifetime_condition_length>=log(procedures_lifetime)*medications_active\n", + "1648 lifetime_condition_length>=Triglycerides*log(device_lifetime_length)/log(10)\n", + "1649 lifetime_condition_length>=MCHC__Mass_volume__by_Automated_count*sqrt(immunizations_lifetime)\n", + "1650 lifetime_condition_length>=DALY^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1651 lifetime_condition_length>=lifetime_conditions^2-mean_Estimated_Glomerular_Filtration_Rate\n", + "1652 lifetime_condition_length>=sqrt(procedures_lifetime_cost)-Total_Cholesterol\n", + "1653 lifetime_condition_length>=(1/2*Total_score__MMSE_)^immunizations_lifetime\n", + "1654 lifetime_condition_length>=(log(Systolic_Blood_Pressure)/log(10))^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1655 lifetime_condition_length>=lifetime_care_plan_length+log(device_lifetime_length)\n", + "1656 lifetime_condition_length>=QALY*log(device_lifetime_length)/log(10)\n", + "1657 lifetime_condition_length>=device_lifetime_length*e^immunizations_lifetime\n", + "1658 lifetime_condition_length>=(procedures_lifetime-1)*Albumin__Mass_volume__in_Serum,Plasma\n", + "1659 lifetime_condition_length>=-healthcare_coverage+medications_lifetime+1\n", + "1660 lifetime_condition_length>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2\n", + "1661 lifetime_condition_length>=10^QOLS*DALY\n", + "1662 lifetime_condition_length>=minimum(High_Density_Lipoprotein_Cholesterol,10^DALY)\n", + "1663 lifetime_condition_length>=Glucose*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1664 lifetime_condition_length>=(-Hemoglobin__Mass_volume__in_Blood)^immunizations_lifetime\n", + "1665 lifetime_condition_length>=sqrt(Microalbumin_Creatinine_Ratio)+encounters_count\n", + "1666 device_lifetime_length<=active_condition_length\n", + "1667 device_lifetime_length<=healthcare_coverage\n", + "1668 device_lifetime_length<=sqrt(QOLS-1)\n", + "1669 device_lifetime_length<=log(medications_active)^Body_Weight\n", + "1670 device_lifetime_length<=medications_lifetime_perc_covered/num_allergies\n", + "1671 device_lifetime_length<=immunizations_lifetime/num_allergies\n", + "1672 device_lifetime_length<=procedures_lifetime/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1673 device_lifetime_length<=log(active_care_plan_length)^healthcare_expenses\n", + "1674 device_lifetime_length<=immunizations_lifetime_cost/imaging_studies_lifetime\n", + "1675 device_lifetime_length<=active_condition_length^healthcare_expenses\n", + "1676 device_lifetime_length<=maximum(Heart_rate,1/procedures_lifetime_cost)\n", + "1677 device_lifetime_length<=active_care_plans^Triglycerides\n", + "1678 device_lifetime_length<=log(active_conditions)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1679 device_lifetime_length<=immunizations_lifetime_cost^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1680 device_lifetime_length<=immunizations_lifetime_cost^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1681 device_lifetime_length<=(Body_Mass_Index-1)/encounters_lifetime_perc_covered\n", + "1682 device_lifetime_length<=1/(Globulin__Mass_volume__in_Serum_by_calculation*immunizations_lifetime)\n", + "1683 device_lifetime_length<=(log(Urea_Nitrogen)/log(10))^healthcare_expenses\n", + "1684 device_lifetime_length<=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Triglycerides\n", + "1685 device_lifetime_length<=DALY*healthcare_expenses\n", + "1686 device_lifetime_length<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*healthcare_expenses\n", + "1687 device_lifetime_length<=active_care_plan_length+floor(QALY)\n", + "1688 device_lifetime_length<=procedures_lifetime_cost/medications_lifetime_perc_covered\n", + "1689 device_lifetime_length<=procedures_lifetime_cost^Estimated_Glomerular_Filtration_Rate\n", + "1690 device_lifetime_length<=10^DALY/encounters_lifetime_perc_covered\n", + "1691 device_lifetime_length<=num_allergies^FEV1_FVC\n", + "1692 device_lifetime_length<=medications_lifetime^Respiratory_rate\n", + "1693 device_lifetime_length<=Triglycerides*floor(Creatinine)\n", + "1694 device_lifetime_length<=10^Microalbumin_Creatinine_Ratio*num_allergies\n", + "1695 device_lifetime_length<=active_care_plan_length/medications_lifetime_perc_covered\n", + "1696 device_lifetime_length<=1/2*Chloride+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1697 device_lifetime_length<=log(Globulin__Mass_volume__in_Serum_by_calculation)^healthcare_expenses\n", + "1698 device_lifetime_length<=-active_condition_length+lifetime_condition_length\n", + "1699 device_lifetime_length<=(medications_active-1)^Body_Weight\n", + "1700 device_lifetime_length<=10^DALY/medications_lifetime_dispenses\n", + "1701 device_lifetime_length<=1/2*medications_lifetime_length/MCH__Entitic_mass__by_Automated_count\n", + "1702 device_lifetime_length<=(2*Creatinine)^lifetime_conditions\n", + "1703 device_lifetime_length<=10^encounters_lifetime_perc_covered+medications_lifetime_cost\n", + "1704 device_lifetime_length<=Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered\n", + "1705 device_lifetime_length<=Heart_rate*medications_active\n", + "1706 device_lifetime_length<=procedures_lifetime/num_allergies\n", + "1707 device_lifetime_length<=(DALY-1)^healthcare_expenses\n", + "1708 device_lifetime_length<=minimum(healthcare_expenses,Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method)\n", + "1709 device_lifetime_length<=floor(DALY)^Respiratory_rate\n", + "1710 device_lifetime_length<=-MCH__Entitic_mass__by_Automated_count+MCV__Entitic_volume__by_Automated_count\n", + "1711 device_lifetime_length<=(procedures_lifetime-1)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1712 device_lifetime_length<=(procedures_lifetime-1)^Estimated_Glomerular_Filtration_Rate\n", + "1713 device_lifetime_length<=1/num_allergies-1\n", + "1714 device_lifetime_length<=(active_care_plans-1)*Sodium\n", + "1715 device_lifetime_length<=floor(QOLS)^History_of_Hospitalizations_Outpatient_visits\n", + "1716 device_lifetime_length<=active_care_plan_length*log(active_care_plans)\n", + "1717 device_lifetime_length>=num_allergies-1\n", + "1718 device_lifetime_length>=-healthcare_coverage\n", + "1719 device_lifetime_length>=-num_allergies\n", + "1720 device_lifetime_length>=maximum(Total_score__MMSE_,-Triglycerides)\n", + "1721 device_lifetime_length>=-QALY+1/2*latitude\n", + "1722 device_lifetime_length>=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*imaging_studies_lifetime\n", + "1723 device_lifetime_length>=-Hemoglobin__Mass_volume__in_Blood+active_conditions-1\n", + "1724 device_lifetime_length>=-Estimated_Glomerular_Filtration_Rate+Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "1725 device_lifetime_length>=Leukocytes____volume__in_Blood_by_Automated_count^2-Low_Density_Lipoprotein_Cholesterol\n", + "1726 device_lifetime_length>=floor(Leukocytes____volume__in_Blood_by_Automated_count)-lifetime_care_plan_length\n", + "1727 device_lifetime_length>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+1/2*Platelets____volume__in_Blood_by_Automated_count\n", + "1728 device_lifetime_length>=-MCH__Entitic_mass__by_Automated_count+floor(Body_Mass_Index)\n", + "1729 encounters_count<=1/2*encounters_lifetime_total_cost/latitude\n", + "1730 encounters_count<=(encounters_lifetime_total_cost-1)/Chloride\n", + "1731 encounters_count<=sqrt(encounters_lifetime_total_cost)+procedures_lifetime_cost\n", + "1732 encounters_count<=10^medications_lifetime/medications_active\n", + "1733 encounters_count<=ceil(latitude)+medications_lifetime\n", + "1734 encounters_count<=maximum(medications_lifetime,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1735 encounters_count<=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)+medications_lifetime\n", + "1736 encounters_count<=2*Heart_rate*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1737 encounters_count<=2*encounters_lifetime_total_cost/Total_Cholesterol\n", + "1738 encounters_count<=(healthcare_coverage-1)/MCV__Entitic_volume__by_Automated_count\n", + "1739 encounters_count<=floor(Body_Mass_Index)*lifetime_conditions\n", + "1740 encounters_count<=maximum(lifetime_condition_length,floor(QALY))\n", + "1741 encounters_count<=2*encounters_lifetime_payer_coverage/MCHC__Mass_volume__by_Automated_count\n", + "1742 encounters_count<=healthcare_coverage+lifetime_condition_length-1\n", + "1743 encounters_count<=(encounters_lifetime_total_cost-1)/Diastolic_Blood_Pressure\n", + "1744 encounters_count<=active_condition_length^2/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1745 encounters_count<=floor(lifetime_care_plan_length)/num_allergies\n", + "1746 encounters_count<=(encounters_lifetime_total_cost-1)/Body_Weight\n", + "1747 encounters_count<=ceil(lifetime_condition_length)+procedures_lifetime\n", + "1748 encounters_count<=Heart_rate*log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "1749 encounters_count<=(encounters_lifetime_total_cost-1)/mean_Chloride\n", + "1750 encounters_count<=sqrt(healthcare_coverage)+latitude\n", + "1751 encounters_count<=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*medications_lifetime\n", + "1752 encounters_count<=sqrt(Platelets____volume__in_Blood_by_Automated_count)*mean_Urea_Nitrogen\n", + "1753 encounters_count<=10^active_conditions+1\n", + "1754 encounters_count<=sqrt(medications_lifetime_length)/num_allergies\n", + "1755 encounters_count<=(Carbon_Dioxide+1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1756 encounters_count<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted*medications_lifetime\n", + "1757 encounters_count<=2*encounters_lifetime_total_cost/Body_Height\n", + "1758 encounters_count<=DALY*Sodium\n", + "1759 encounters_count<=(QALY^2)^Creatinine\n", + "1760 encounters_count<=10^lifetime_conditions-medications_active\n", + "1761 encounters_count<=2*Low_Density_Lipoprotein_Cholesterol/encounters_lifetime_perc_covered\n", + "1762 encounters_count<=(Chloride-1)/imaging_studies_lifetime\n", + "1763 encounters_count<=sqrt(Microalbumin_Creatinine_Ratio)^mean_Microalbumin_Creatinine_Ratio\n", + "1764 encounters_count<=1/2*Diastolic_Blood_Pressure*Respiratory_rate\n", + "1765 encounters_count<=ceil(Carbon_Dioxide)+healthcare_coverage\n", + "1766 encounters_count<=lifetime_care_plan_length^2-Sodium\n", + "1767 encounters_count<=2*Leukocytes____volume__in_Blood_by_Automated_count+medications_lifetime\n", + "1768 encounters_count<=DALY*floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "1769 encounters_count<=Microalbumin_Creatinine_Ratio*mean_Calcium\n", + "1770 encounters_count<=log(Diastolic_Blood_Pressure)^Potassium\n", + "1771 encounters_count<=mean_Calcium*mean_Microalbumin_Creatinine_Ratio\n", + "1772 encounters_count<=e^lifetime_care_plan_length/active_care_plans\n", + "1773 encounters_count<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+medications_lifetime_cost\n", + "1774 encounters_count<=(e^latitude)^QOLS\n", + "1775 encounters_count<=maximum(mean_Triglycerides,e^Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1776 encounters_count<=10^active_care_plans/imaging_studies_lifetime\n", + "1777 encounters_count<=10^active_care_plans+Heart_rate\n", + "1778 encounters_count<=1/2*Respiratory_rate+medications_lifetime_cost\n", + "1779 encounters_count<=log(active_care_plan_length)^mean_Potassium\n", + "1780 encounters_count<=medications_lifetime^2-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1781 encounters_count<=10^active_conditions/MCHC__Mass_volume__by_Automated_count\n", + "1782 encounters_count<=maximum(age,e^active_conditions)\n", + "1783 encounters_count<=Body_Mass_Index+e^active_conditions\n", + "1784 encounters_count<=Carbon_Dioxide+e^active_conditions\n", + "1785 encounters_count<=lifetime_condition_length+2*lifetime_conditions\n", + "1786 encounters_count<=medications_lifetime^2+Respiratory_rate\n", + "1787 encounters_count<=Low_Density_Lipoprotein_Cholesterol+e^DALY\n", + "1788 encounters_count<=Leukocytes____volume__in_Blood_by_Automated_count+2*medications_lifetime\n", + "1789 encounters_count<=(MCHC__Mass_volume__by_Automated_count^2)^Creatinine\n", + "1790 encounters_count<=Low_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost-1\n", + "1791 encounters_count<=10^DALY*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1792 encounters_count<=DALY^2+Triglycerides\n", + "1793 encounters_count<=maximum(medications_lifetime_length,ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "1794 encounters_count<=2*Heart_rate+procedures_lifetime_cost\n", + "1795 encounters_count<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*MCV__Entitic_volume__by_Automated_count\n", + "1796 encounters_count<=DALY*Leukocytes____volume__in_Blood_by_Automated_count^2\n", + "1797 encounters_count<=(2*Platelets____volume__in_Blood_by_Automated_count)^mean_Creatinine\n", + "1798 encounters_count<=sqrt(MCV__Entitic_volume__by_Automated_count)+medications_lifetime\n", + "1799 encounters_count<=2*MCHC__Mass_volume__by_Automated_count+procedures_lifetime_cost\n", + "1800 encounters_count>=sqrt(encounters_lifetime_total_cost)-latitude\n", + "1801 encounters_count>=active_care_plans\n", + "1802 encounters_count>=sqrt(encounters_lifetime_total_cost)-MCHC__Mass_volume__by_Automated_count\n", + "1803 encounters_count>=immunizations_lifetime\n", + "1804 encounters_count>=-Diastolic_Blood_Pressure+floor(age)\n", + "1805 encounters_count>=2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1806 encounters_count>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-active_conditions\n", + "1807 encounters_count>=-active_care_plans+2*lifetime_care_plans\n", + "1808 encounters_count>=ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1809 encounters_count>=(encounters_lifetime_total_cost+1)/Sodium\n", + "1810 encounters_count>=active_conditions-1\n", + "1811 encounters_count>=QOLS+1\n", + "1812 encounters_count>=1/2*encounters_lifetime_total_cost/Diastolic_Blood_Pressure\n", + "1813 encounters_count>=minimum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,floor(medications_lifetime))\n", + "1814 encounters_count>=(encounters_lifetime_total_cost+1)/mean_Sodium\n", + "1815 encounters_count>=floor(sqrt(device_lifetime_length))\n", + "1816 encounters_count>=minimum(medications_lifetime,1/DALY)\n", + "1817 encounters_count>=active_care_plans*immunizations_lifetime\n", + "1818 encounters_count>=minimum(active_care_plan_length,active_conditions)\n", + "1819 encounters_count>=Respiratory_rate+ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1820 encounters_count>=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "1821 encounters_count>=ceil(sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "1822 encounters_count>=(medications_lifetime+1)/mean_Potassium\n", + "1823 encounters_count>=minimum(Calcium,active_care_plans^2)\n", + "1824 encounters_count>=(active_conditions-1)*immunizations_lifetime\n", + "1825 encounters_count>=(DALY+1)*medications_lifetime_perc_covered\n", + "1826 encounters_count>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime\n", + "1827 encounters_count>=-Body_Height+Systolic_Blood_Pressure+1\n", + "1828 encounters_count>=active_conditions-device_lifetime_length\n", + "1829 encounters_count>=-healthcare_coverage+medications_lifetime-1\n", + "1830 encounters_count>=minimum(immunizations_lifetime_cost,2*active_care_plans)\n", + "1831 encounters_count>=imaging_studies_lifetime^2+active_care_plans\n", + "1832 encounters_count>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Heart_rate\n", + "1833 encounters_count>=(Globulin__Mass_volume__in_Serum_by_calculation+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "1834 encounters_count>=device_lifetime_length^2/mean_Estimated_Glomerular_Filtration_Rate\n", + "1835 encounters_count>=ceil(Globulin__Mass_volume__in_Serum_by_calculation)*procedures_lifetime\n", + "1836 encounters_count>=active_care_plans*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1837 encounters_count>=sqrt(encounters_lifetime_payer_coverage)-Body_Mass_Index\n", + "1838 encounters_count>=MCH__Entitic_mass__by_Automated_count*sqrt(medications_lifetime_perc_covered)\n", + "1839 encounters_count>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,floor(medications_lifetime))\n", + "1840 encounters_count>=maximum(FEV1_FVC,mean_Creatinine)\n", + "1841 encounters_count>=-mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*medications_lifetime\n", + "1842 encounters_count>=maximum(FEV1_FVC,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "1843 encounters_count>=sqrt(procedures_lifetime_cost)-mean_Microalbumin_Creatinine_Ratio\n", + "1844 encounters_count>=1/2*10^num_allergies\n", + "1845 encounters_count>=floor(log(medications_lifetime_cost)/log(10))\n", + "1846 encounters_count>=medications_active+2\n", + "1847 encounters_count>=-Estimated_Glomerular_Filtration_Rate+1/2*Sodium\n", + "1848 encounters_count>=lifetime_care_plans^2+longitude\n", + "1849 encounters_count>=e^active_care_plans/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1850 encounters_count>=log(QALY)/(QOLS*log(10))\n", + "1851 encounters_count>=e^lifetime_care_plans/Chloride\n", + "1852 encounters_count>=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)-immunizations_lifetime_cost\n", + "1853 encounters_count>=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-procedures_lifetime_cost\n", + "1854 encounters_count>=1/2*Microalbumin_Creatinine_Ratio-QALY\n", + "1855 encounters_count>=active_conditions^2-Systolic_Blood_Pressure\n", + "1856 encounters_count>=(log(lifetime_conditions)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "1857 encounters_count>=(log(lifetime_conditions)/log(10))^mean_Estimated_Glomerular_Filtration_Rate\n", + "1858 encounters_count>=-mean_Total_Cholesterol+1/2*medications_lifetime\n", + "1859 encounters_count>=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)*Calcium\n", + "1860 encounters_count>=(2*Left_ventricular_Ejection_fraction)^medications_lifetime_perc_covered\n", + "1861 encounters_count>=active_conditions+log(procedures_lifetime)\n", + "1862 encounters_count>=minimum(mean_Microalbumin_Creatinine_Ratio,1/medications_active)\n", + "1863 encounters_count>=sqrt(procedures_lifetime)^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "1864 encounters_count>=-Urea_Nitrogen+2*procedures_lifetime\n", + "1865 encounters_count>=-Chloride+1/2*Triglycerides\n", + "1866 encounters_count>=ceil(Carbon_Dioxide)-healthcare_coverage\n", + "1867 encounters_count>=ceil(Leukocytes____volume__in_Blood_by_Automated_count)*procedures_lifetime\n", + "1868 encounters_count>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)^Creatinine\n", + "1869 encounters_count>=(log(Microalbumin_Creatinine_Ratio)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "1870 encounters_lifetime_total_cost<=encounters_lifetime_base_cost\n", + "1871 encounters_lifetime_total_cost>=encounters_lifetime_base_cost\n", + "1872 encounters_lifetime_base_cost<=encounters_lifetime_total_cost\n", + "1873 encounters_lifetime_base_cost>=encounters_lifetime_total_cost\n", + "1874 encounters_lifetime_payer_coverage<=encounters_lifetime_total_cost\n", + "1875 encounters_lifetime_payer_coverage<=healthcare_coverage\n", + "1876 encounters_lifetime_payer_coverage<=(encounters_lifetime_total_cost+1)*encounters_lifetime_perc_covered\n", + "1877 encounters_lifetime_payer_coverage>=num_allergies\n", + "1878 encounters_lifetime_payer_coverage>=encounters_lifetime_perc_covered*floor(encounters_lifetime_total_cost)\n", + "1879 encounters_lifetime_payer_coverage>=encounters_lifetime_total_cost*floor(encounters_lifetime_perc_covered)\n", + "1880 encounters_lifetime_payer_coverage>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+ceil(Body_Height)\n", + "1881 encounters_lifetime_perc_covered<=lifetime_conditions\n", + "1882 encounters_lifetime_perc_covered<=healthcare_coverage\n", + "1883 encounters_lifetime_perc_covered<=ceil(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", + "1884 encounters_lifetime_perc_covered<=sqrt(Respiratory_rate)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "1885 encounters_lifetime_perc_covered<=(encounters_count+1)/Potassium\n", + "1886 encounters_lifetime_perc_covered>=floor(encounters_lifetime_payer_coverage)/encounters_lifetime_total_cost\n", + "1887 encounters_lifetime_perc_covered>=-healthcare_coverage\n", + "1888 encounters_lifetime_perc_covered>=encounters_lifetime_payer_coverage-encounters_lifetime_total_cost+1\n", + "1889 imaging_studies_lifetime<=active_care_plans\n", + "1890 imaging_studies_lifetime<=healthcare_coverage\n", + "1891 imaging_studies_lifetime<=medications_lifetime\n", + "1892 imaging_studies_lifetime<=Triglycerides*num_allergies\n", + "1893 imaging_studies_lifetime<=medications_active\n", + "1894 imaging_studies_lifetime<=procedures_lifetime\n", + "1895 imaging_studies_lifetime<=10^num_allergies\n", + "1896 imaging_studies_lifetime<=lifetime_conditions-1\n", + "1897 imaging_studies_lifetime<=QALY*medications_lifetime_perc_covered\n", + "1898 imaging_studies_lifetime<=floor(1/2*medications_active)\n", + "1899 imaging_studies_lifetime<=num_allergies/Estimated_Glomerular_Filtration_Rate\n", + "1900 imaging_studies_lifetime<=floor(DALY)\n", + "1901 imaging_studies_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2\n", + "1902 imaging_studies_lifetime<=device_lifetime_length^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "1903 imaging_studies_lifetime<=num_allergies/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "1904 imaging_studies_lifetime<=sqrt(QOLS-1)\n", + "1905 imaging_studies_lifetime<=(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^2\n", + "1906 imaging_studies_lifetime<=device_lifetime_length^Estimated_Glomerular_Filtration_Rate\n", + "1907 imaging_studies_lifetime<=floor(QOLS)^FEV1_FVC\n", + "1908 imaging_studies_lifetime<=(2*encounters_lifetime_perc_covered)^healthcare_expenses\n", + "1909 imaging_studies_lifetime<=(lifetime_care_plans-1)^2\n", + "1910 imaging_studies_lifetime>=num_allergies-1\n", + "1911 imaging_studies_lifetime>=-healthcare_coverage\n", + "1912 imaging_studies_lifetime>=-num_allergies\n", + "1913 imaging_studies_lifetime>=minimum(procedures_lifetime,-QOLS)\n", + "1914 imaging_studies_lifetime>=sqrt(active_care_plan_length)-Calcium\n", + "1915 immunizations_lifetime<=10^active_care_plans+1\n", + "1916 immunizations_lifetime<=healthcare_coverage\n", + "1917 immunizations_lifetime<=encounters_count\n", + "1918 immunizations_lifetime<=immunizations_lifetime_cost\n", + "1919 immunizations_lifetime<=floor(immunizations_lifetime_cost)/Heart_rate\n", + "1920 immunizations_lifetime<=minimum(healthcare_expenses,Specific_gravity_of_Urine_by_Test_strip)\n", + "1921 immunizations_lifetime<=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "1922 immunizations_lifetime<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1923 immunizations_lifetime<=floor(immunizations_lifetime_cost)/Diastolic_Blood_Pressure\n", + "1924 immunizations_lifetime<=floor(immunizations_lifetime_cost)/Chloride\n", + "1925 immunizations_lifetime<=floor(log(latitude))\n", + "1926 immunizations_lifetime<=2/num_allergies\n", + "1927 immunizations_lifetime<=(1/floor(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "1928 immunizations_lifetime<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^active_care_plans)\n", + "1929 immunizations_lifetime<=maximum(Sodium,1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1930 immunizations_lifetime<=minimum(Sodium,10^medications_active)\n", + "1931 immunizations_lifetime<=floor(immunizations_lifetime_cost)/mean_Chloride\n", + "1932 immunizations_lifetime<=medications_active+procedures_lifetime_cost\n", + "1933 immunizations_lifetime<=active_care_plans+procedures_lifetime_cost\n", + "1934 immunizations_lifetime<=floor(active_care_plan_length)/active_care_plans\n", + "1935 immunizations_lifetime<=active_care_plans/num_allergies\n", + "1936 immunizations_lifetime<=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,active_care_plans-1)\n", + "1937 immunizations_lifetime<=ceil(10^encounters_lifetime_perc_covered)\n", + "1938 immunizations_lifetime<=ceil(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "1939 immunizations_lifetime<=-active_care_plans+encounters_count\n", + "1940 immunizations_lifetime<=encounters_count/active_care_plans\n", + "1941 immunizations_lifetime<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-lifetime_care_plans\n", + "1942 immunizations_lifetime<=2*active_care_plans/imaging_studies_lifetime\n", + "1943 immunizations_lifetime<=1/2*encounters_count/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "1944 immunizations_lifetime<=1/medications_active+medications_lifetime\n", + "1945 immunizations_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "1946 immunizations_lifetime<=High_Density_Lipoprotein_Cholesterol-MCH__Entitic_mass__by_Automated_count\n", + "1947 immunizations_lifetime<=minimum(Sodium,10^medications_lifetime)\n", + "1948 immunizations_lifetime<=ceil(e^Creatinine)\n", + "1949 immunizations_lifetime<=-Body_Mass_Index+ceil(age)\n", + "1950 immunizations_lifetime<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-medications_active\n", + "1951 immunizations_lifetime<=QOLS*ceil(Calcium)\n", + "1952 immunizations_lifetime<=ceil(1/2*Potassium)\n", + "1953 immunizations_lifetime<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)-1\n", + "1954 immunizations_lifetime<=(log(encounters_count)/log(10))^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "1955 immunizations_lifetime<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/procedures_lifetime\n", + "1956 immunizations_lifetime<=2*immunizations_lifetime_cost/Body_Height\n", + "1957 immunizations_lifetime<=-active_care_plans+ceil(Urea_Nitrogen)\n", + "1958 immunizations_lifetime<=Carbon_Dioxide^2/encounters_count\n", + "1959 immunizations_lifetime<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,log(Estimated_Glomerular_Filtration_Rate)/log(10))\n", + "1960 immunizations_lifetime<=maximum(Body_temperature,10^medications_active)\n", + "1961 immunizations_lifetime<=(2*QOLS)^Body_temperature\n", + "1962 immunizations_lifetime<=-Carbon_Dioxide+QALY+1\n", + "1963 immunizations_lifetime<=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma))\n", + "1964 immunizations_lifetime<=maximum(procedures_lifetime,1/Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1965 immunizations_lifetime>=num_allergies-1\n", + "1966 immunizations_lifetime>=-healthcare_coverage\n", + "1967 immunizations_lifetime>=-num_allergies\n", + "1968 immunizations_lifetime>=num_allergies/Creatinine\n", + "1969 immunizations_lifetime>=floor(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "1970 immunizations_lifetime>=minimum(num_allergies,immunizations_lifetime_cost)\n", + "1971 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Body_Height\n", + "1972 immunizations_lifetime>=minimum(immunizations_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "1973 immunizations_lifetime>=ceil(immunizations_lifetime_cost)/Total_Cholesterol\n", + "1974 immunizations_lifetime>=minimum(device_lifetime_length,2*imaging_studies_lifetime)\n", + "1975 immunizations_lifetime>=1/2*immunizations_lifetime_cost/MCV__Entitic_volume__by_Automated_count\n", + "1976 immunizations_lifetime>=-lifetime_care_plans+log(procedures_lifetime)\n", + "1977 immunizations_lifetime>=Body_Mass_Index-QALY\n", + "1978 immunizations_lifetime>=-Hemoglobin__Mass_volume__in_Blood+active_conditions\n", + "1979 immunizations_lifetime>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-Microalbumin_Creatinine_Ratio+1\n", + "1980 immunizations_lifetime>=floor(log(Creatinine)/log(10))\n", + "1981 immunizations_lifetime>=e^Globulin__Mass_volume__in_Serum_by_calculation-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "1982 immunizations_lifetime>=floor(log(Leukocytes____volume__in_Blood_by_Automated_count)/log(10))\n", + "1983 immunizations_lifetime>=QOLS-lifetime_condition_length+1\n", + "1984 immunizations_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-medications_lifetime-1\n", + "1985 immunizations_lifetime>=(num_allergies-1)^Body_Weight\n", + "1986 immunizations_lifetime>=(num_allergies-1)^Body_Height\n", + "1987 immunizations_lifetime>=(num_allergies-1)^Potassium\n", + "1988 immunizations_lifetime>=active_care_plans-medications_lifetime_cost-1\n", + "1989 immunizations_lifetime>=minimum(immunizations_lifetime_cost,log(lifetime_care_plans)/log(10))\n", + "1990 immunizations_lifetime>=-active_condition_length+log(Total_Cholesterol)\n", + "1991 immunizations_lifetime>=Chloride-Systolic_Blood_Pressure-1\n", + "1992 immunizations_lifetime>=-QALY+floor(MCHC__Mass_volume__by_Automated_count)\n", + "1993 immunizations_lifetime_cost<=healthcare_expenses*immunizations_lifetime\n", + "1994 immunizations_lifetime_cost<=healthcare_coverage\n", + "1995 immunizations_lifetime_cost<=Total_Cholesterol*sqrt(active_condition_length)\n", + "1996 immunizations_lifetime_cost<=(Body_Height-1)*immunizations_lifetime\n", + "1997 immunizations_lifetime_cost<=sqrt(Chloride)*latitude\n", + "1998 immunizations_lifetime_cost<=(Body_Height-1)^immunizations_lifetime\n", + "1999 immunizations_lifetime_cost<=Sodium+medications_lifetime_cost-1\n", + "2000 immunizations_lifetime_cost<=(Globulin__Mass_volume__in_Serum_by_calculation+1)*Glucose\n", + "2001 immunizations_lifetime_cost<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2*Potassium\n", + "2002 immunizations_lifetime_cost<=MCH__Entitic_mass__by_Automated_count*sqrt(Platelets____volume__in_Blood_by_Automated_count)\n", + "2003 immunizations_lifetime_cost<=(Body_Weight+1)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2004 immunizations_lifetime_cost<=(Total_Cholesterol-1)^immunizations_lifetime\n", + "2005 immunizations_lifetime_cost<=Diastolic_Blood_Pressure*sqrt(Estimated_Glomerular_Filtration_Rate)\n", + "2006 immunizations_lifetime_cost<=-Glomerular_filtration_rate_1_73_sq_M_predicted+medications_lifetime_dispenses+1\n", + "2007 immunizations_lifetime_cost<=Glucose^2/DALY\n", + "2008 immunizations_lifetime_cost<=10^Creatinine*Heart_rate\n", + "2009 immunizations_lifetime_cost<=(medications_lifetime-1)*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "2010 immunizations_lifetime_cost<=log(lifetime_condition_length)^Estimated_Glomerular_Filtration_Rate\n", + "2011 immunizations_lifetime_cost<=e^active_care_plans*mean_Estimated_Glomerular_Filtration_Rate\n", + "2012 immunizations_lifetime_cost<=age+floor(encounters_lifetime_total_cost)\n", + "2013 immunizations_lifetime_cost<=(lifetime_care_plan_length-1)*Microalbumin_Creatinine_Ratio\n", + "2014 immunizations_lifetime_cost<=encounters_lifetime_perc_covered^longitude\n", + "2015 immunizations_lifetime_cost<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*mean_Diastolic_Blood_Pressure\n", + "2016 immunizations_lifetime_cost<=sqrt(Protein__Mass_volume__in_Serum,Plasma)*age\n", + "2017 immunizations_lifetime_cost<=(Respiratory_rate^2)^immunizations_lifetime\n", + "2018 immunizations_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2019 immunizations_lifetime_cost<=sqrt(healthcare_expenses)+Body_Weight\n", + "2020 immunizations_lifetime_cost<=2*healthcare_coverage/active_care_plan_length\n", + "2021 immunizations_lifetime_cost<=2*healthcare_coverage/active_condition_length\n", + "2022 immunizations_lifetime_cost<=active_care_plan_length^2+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2023 immunizations_lifetime_cost<=10^active_conditions+Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2024 immunizations_lifetime_cost<=(Hemoglobin__Mass_volume__in_Blood^2)^immunizations_lifetime\n", + "2025 immunizations_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(Protein__Mass_volume__in_Serum,Plasma)\n", + "2026 immunizations_lifetime_cost<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/medications_lifetime\n", + "2027 immunizations_lifetime_cost<=Heart_rate*e^immunizations_lifetime\n", + "2028 immunizations_lifetime_cost<=e^immunizations_lifetime*mean_Heart_rate\n", + "2029 immunizations_lifetime_cost<=Respiratory_rate^2*immunizations_lifetime\n", + "2030 immunizations_lifetime_cost<=(1/medications_lifetime_perc_covered)^QALY\n", + "2031 immunizations_lifetime_cost<=2*MCV__Entitic_volume__by_Automated_count*immunizations_lifetime\n", + "2032 immunizations_lifetime_cost<=mean_Estimated_Glomerular_Filtration_Rate*sqrt(medications_lifetime)\n", + "2033 immunizations_lifetime_cost<=Body_Weight*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2034 immunizations_lifetime_cost<=(1/2*Potassium)^Urea_Nitrogen\n", + "2035 immunizations_lifetime_cost<=High_Density_Lipoprotein_Cholesterol^2/medications_active\n", + "2036 immunizations_lifetime_cost<=log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Hemoglobin__Mass_volume__in_Blood\n", + "2037 immunizations_lifetime_cost<=Carbon_Dioxide^2-Total_Cholesterol\n", + "2038 immunizations_lifetime_cost<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Sodium\n", + "2039 immunizations_lifetime_cost<=(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-1)^immunizations_lifetime\n", + "2040 immunizations_lifetime_cost>=immunizations_lifetime\n", + "2041 immunizations_lifetime_cost>=(Heart_rate+1)*immunizations_lifetime\n", + "2042 immunizations_lifetime_cost>=2*immunizations_lifetime*latitude\n", + "2043 immunizations_lifetime_cost>=mean_Sodium*num_allergies\n", + "2044 immunizations_lifetime_cost>=(procedures_lifetime+1)*immunizations_lifetime\n", + "2045 immunizations_lifetime_cost>=(Chloride+1)*immunizations_lifetime\n", + "2046 immunizations_lifetime_cost>=(Diastolic_Blood_Pressure+1)*immunizations_lifetime\n", + "2047 immunizations_lifetime_cost>=ceil(Protein__Mass_volume__in_Serum,Plasma)*imaging_studies_lifetime\n", + "2048 immunizations_lifetime_cost>=(Body_Weight+1)*immunizations_lifetime\n", + "2049 immunizations_lifetime_cost>=1/2*Total_Cholesterol*immunizations_lifetime\n", + "2050 immunizations_lifetime_cost>=Low_Density_Lipoprotein_Cholesterol*num_allergies\n", + "2051 immunizations_lifetime_cost>=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)*immunizations_lifetime\n", + "2052 immunizations_lifetime_cost>=MCHC__Mass_volume__by_Automated_count*log(device_lifetime_length)\n", + "2053 immunizations_lifetime_cost>=2*Estimated_Glomerular_Filtration_Rate-Total_Cholesterol\n", + "2054 immunizations_lifetime_cost>=Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost+1\n", + "2055 immunizations_lifetime_cost>=1/2*Body_Height*immunizations_lifetime\n", + "2056 immunizations_lifetime_cost>=immunizations_lifetime*mean_Chloride\n", + "2057 immunizations_lifetime_cost>=-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*lifetime_care_plan_length\n", + "2058 immunizations_lifetime_cost>=-Platelets____volume__in_Blood_by_Automated_count+2*lifetime_care_plan_length\n", + "2059 immunizations_lifetime_cost>=log(lifetime_condition_length)*longitude\n", + "2060 immunizations_lifetime_cost>=1/2*immunizations_lifetime*mean_Total_Cholesterol\n", + "2061 immunizations_lifetime_cost>=(immunizations_lifetime-1)*lifetime_care_plan_length\n", + "2062 immunizations_lifetime_cost>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*immunizations_lifetime^2\n", + "2063 immunizations_lifetime_cost>=(immunizations_lifetime-1)*Total_Cholesterol\n", + "2064 immunizations_lifetime_cost>=(immunizations_lifetime-1)*mean_Total_Cholesterol\n", + "2065 immunizations_lifetime_cost>=log(immunizations_lifetime)*medications_lifetime\n", + "2066 immunizations_lifetime_cost>=Platelets____volume__in_Blood_by_Automated_count*log(immunizations_lifetime)\n", + "2067 immunizations_lifetime_cost>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)*medications_lifetime_dispenses/log(10)\n", + "2068 immunizations_lifetime_cost>=(2*immunizations_lifetime)^mean_Creatinine\n", + "2069 immunizations_lifetime_cost>=2*Body_Height-encounters_lifetime_total_cost\n", + "2070 immunizations_lifetime_cost>=-MCV__Entitic_volume__by_Automated_count+1/2*Triglycerides\n", + "2071 immunizations_lifetime_cost>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*device_lifetime_length\n", + "2072 immunizations_lifetime_cost>=Leukocytes____volume__in_Blood_by_Automated_count^2*immunizations_lifetime\n", + "2073 medications_lifetime<=10^encounters_count/encounters_lifetime_total_cost\n", + "2074 medications_lifetime<=medications_lifetime_cost\n", + "2075 medications_lifetime<=medications_lifetime_dispenses\n", + "2076 medications_lifetime<=Body_Height*e^Creatinine\n", + "2077 medications_lifetime<=encounters_count^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2078 medications_lifetime<=floor(active_condition_length^2)\n", + "2079 medications_lifetime<=(encounters_lifetime_total_cost-1)/DALY\n", + "2080 medications_lifetime<=2*healthcare_coverage/Body_Weight\n", + "2081 medications_lifetime<=e^encounters_count/lifetime_care_plan_length\n", + "2082 medications_lifetime<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2-Heart_rate\n", + "2083 medications_lifetime<=-DALY+2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2084 medications_lifetime<=Platelets____volume__in_Blood_by_Automated_count+2*age\n", + "2085 medications_lifetime<=encounters_count*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "2086 medications_lifetime<=encounters_count^2/Hemoglobin__Mass_volume__in_Blood\n", + "2087 medications_lifetime<=healthcare_coverage+1/2*latitude\n", + "2088 medications_lifetime<=MCH__Entitic_mass__by_Automated_count+2*encounters_count\n", + "2089 medications_lifetime<=2*QOLS*medications_lifetime_dispenses\n", + "2090 medications_lifetime<=ceil(Platelets____volume__in_Blood_by_Automated_count)+mean_Sodium\n", + "2091 medications_lifetime<=10^sqrt(lifetime_conditions)\n", + "2092 medications_lifetime<=1/2*encounters_lifetime_total_cost/Respiratory_rate\n", + "2093 medications_lifetime<=10^QOLS*encounters_count\n", + "2094 medications_lifetime<=(1/2*QALY)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2095 medications_lifetime<=10^healthcare_coverage+encounters_count\n", + "2096 medications_lifetime<=active_care_plan_length^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2097 medications_lifetime<=encounters_count^active_conditions\n", + "2098 medications_lifetime<=DALY*floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)\n", + "2099 medications_lifetime<=2*Creatinine*lifetime_condition_length\n", + "2100 medications_lifetime<=sqrt(High_Density_Lipoprotein_Cholesterol)*mean_Sodium\n", + "2101 medications_lifetime<=maximum(lifetime_condition_length,1/2*medications_lifetime_dispenses)\n", + "2102 medications_lifetime<=1/2*medications_lifetime_cost/immunizations_lifetime_cost\n", + "2103 medications_lifetime<=(log(MCV__Entitic_volume__by_Automated_count)/log(10))^Urea_Nitrogen\n", + "2104 medications_lifetime<=(Heart_rate^2)^Creatinine\n", + "2105 medications_lifetime<=minimum(healthcare_expenses,1/2*Left_ventricular_Ejection_fraction)\n", + "2106 medications_lifetime<=e^lifetime_care_plan_length/High_Density_Lipoprotein_Cholesterol\n", + "2107 medications_lifetime<=(Systolic_Blood_Pressure-1)/num_allergies\n", + "2108 medications_lifetime<=(1/2*Urea_Nitrogen)^Potassium\n", + "2109 medications_lifetime<=e^Glomerular_filtration_rate_1_73_sq_M_predicted/active_care_plan_length\n", + "2110 medications_lifetime<=Low_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost-1\n", + "2111 medications_lifetime<=Urea_Nitrogen^2*mean_Urea_Nitrogen\n", + "2112 medications_lifetime<=(Low_Density_Lipoprotein_Cholesterol-1)/num_allergies\n", + "2113 medications_lifetime<=Potassium^active_conditions\n", + "2114 medications_lifetime<=(QOLS+1)^encounters_count\n", + "2115 medications_lifetime<=encounters_count*floor(Potassium)\n", + "2116 medications_lifetime<=active_care_plans^2*mean_Total_Cholesterol\n", + "2117 medications_lifetime<=floor(Chloride)/num_allergies\n", + "2118 medications_lifetime<=(Creatinine+1)^Urea_Nitrogen\n", + "2119 medications_lifetime<=sqrt(lifetime_condition_length)*mean_Microalbumin_Creatinine_Ratio\n", + "2120 medications_lifetime<=(log(active_care_plan_length)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2121 medications_lifetime<=2*MCHC__Mass_volume__by_Automated_count+procedures_lifetime_cost\n", + "2122 medications_lifetime<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*sqrt(procedures_lifetime_cost)\n", + "2123 medications_lifetime<=(QOLS+1)^latitude\n", + "2124 medications_lifetime<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)^Urea_Nitrogen\n", + "2125 medications_lifetime<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*e^procedures_lifetime\n", + "2126 medications_lifetime<=2*QALY/num_allergies\n", + "2127 medications_lifetime<=floor(latitude)*mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2128 medications_lifetime<=(DALY+1)*QALY\n", + "2129 medications_lifetime<=10^DALY*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2130 medications_lifetime<=e^DALY+mean_Low_Density_Lipoprotein_Cholesterol\n", + "2131 medications_lifetime<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*ceil(DALY)\n", + "2132 medications_lifetime<=encounters_count+e^lifetime_conditions\n", + "2133 medications_lifetime<=log(Albumin__Mass_volume__in_Serum,Plasma)^Carbon_Dioxide\n", + "2134 medications_lifetime<=(encounters_count+1)*active_conditions\n", + "2135 medications_lifetime<=Respiratory_rate^2+procedures_lifetime_cost\n", + "2136 medications_lifetime<=encounters_lifetime_total_cost^2/procedures_lifetime_cost\n", + "2137 medications_lifetime<=Leukocytes____volume__in_Blood_by_Automated_count+e^active_conditions\n", + "2138 medications_lifetime<=Body_Mass_Index+e^lifetime_conditions\n", + "2139 medications_lifetime<=Carbon_Dioxide+e^lifetime_conditions\n", + "2140 medications_lifetime<=e^encounters_count/Diastolic_Blood_Pressure\n", + "2141 medications_lifetime<=1/2*encounters_lifetime_payer_coverage/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2142 medications_lifetime<=10^procedures_lifetime_cost+mean_High_Density_Lipoprotein_Cholesterol\n", + "2143 medications_lifetime<=(Respiratory_rate+1)*mean_Microalbumin_Creatinine_Ratio\n", + "2144 medications_lifetime<=e^Urea_Nitrogen/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2145 medications_lifetime<=2*Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "2146 medications_lifetime<=(Protein__Mass_volume__in_Serum,Plasma-1)*Urea_Nitrogen\n", + "2147 medications_lifetime<=MCV__Entitic_volume__by_Automated_count*e^Creatinine\n", + "2148 medications_lifetime<=2*MCV__Entitic_volume__by_Automated_count*mean_Creatinine\n", + "2149 medications_lifetime<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/immunizations_lifetime_cost\n", + "2150 medications_lifetime<=(2*Microalbumin_Creatinine_Ratio)^Creatinine\n", + "2151 medications_lifetime>=num_allergies\n", + "2152 medications_lifetime>=medications_active\n", + "2153 medications_lifetime>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+encounters_count\n", + "2154 medications_lifetime>=(DALY+1)*imaging_studies_lifetime\n", + "2155 medications_lifetime>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,medications_active^2)\n", + "2156 medications_lifetime>=encounters_count*floor(encounters_lifetime_perc_covered)\n", + "2157 medications_lifetime>=1/2*encounters_count-lifetime_conditions\n", + "2158 medications_lifetime>=-Microalbumin_Creatinine_Ratio+encounters_count+1\n", + "2159 medications_lifetime>=minimum(Estimated_Glomerular_Filtration_Rate,ceil(active_care_plan_length))\n", + "2160 medications_lifetime>=e^Potassium-mean_Estimated_Glomerular_Filtration_Rate\n", + "2161 medications_lifetime>=floor(DALY)*medications_lifetime_perc_covered\n", + "2162 medications_lifetime>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/active_conditions\n", + "2163 medications_lifetime>=encounters_count-latitude-1\n", + "2164 medications_lifetime>=(log(lifetime_conditions)/log(10))^mean_Estimated_Glomerular_Filtration_Rate\n", + "2165 medications_lifetime>=floor(Microalbumin_Creatinine_Ratio)-mean_Systolic_Blood_Pressure\n", + "2166 medications_lifetime>=active_care_plan_length-healthcare_coverage+1\n", + "2167 medications_lifetime>=lifetime_care_plans^2-QALY\n", + "2168 medications_lifetime>=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-Low_Density_Lipoprotein_Cholesterol\n", + "2169 medications_lifetime>=-Body_Height+lifetime_care_plan_length+1\n", + "2170 medications_lifetime>=medications_active^2*medications_lifetime_perc_covered\n", + "2171 medications_lifetime>=10^Creatinine/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2172 medications_lifetime>=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2173 medications_lifetime>=(log(active_conditions)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2174 medications_lifetime>=(num_allergies-1)^Diastolic_Blood_Pressure\n", + "2175 medications_lifetime>=maximum(active_conditions,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2176 medications_lifetime>=-Potassium+1/2*encounters_count\n", + "2177 medications_lifetime>=-High_Density_Lipoprotein_Cholesterol+encounters_count+1\n", + "2178 medications_lifetime>=minimum(MCV__Entitic_volume__by_Automated_count,1/active_care_plans)\n", + "2179 medications_lifetime>=e^medications_active/MCV__Entitic_volume__by_Automated_count\n", + "2180 medications_lifetime>=maximum(Microalbumin_Creatinine_Ratio,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "2181 medications_lifetime>=Microalbumin_Creatinine_Ratio*medications_lifetime_perc_covered^2\n", + "2182 medications_lifetime>=sqrt(encounters_lifetime_payer_coverage)-latitude\n", + "2183 medications_lifetime>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime-1\n", + "2184 medications_lifetime>=-Body_Height+Systolic_Blood_Pressure+1\n", + "2185 medications_lifetime>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*num_allergies\n", + "2186 medications_lifetime>=Creatinine*medications_active\n", + "2187 medications_lifetime>=-active_care_plan_length+floor(Urea_Nitrogen)\n", + "2188 medications_lifetime>=minimum(Calcium,-Respiratory_rate)\n", + "2189 medications_lifetime>=sqrt(Estimated_Glomerular_Filtration_Rate)*procedures_lifetime\n", + "2190 medications_lifetime>=Globulin__Mass_volume__in_Serum_by_calculation/DALY\n", + "2191 medications_lifetime>=(MCH__Entitic_mass__by_Automated_count+1)*medications_lifetime_perc_covered\n", + "2192 medications_lifetime>=Globulin__Mass_volume__in_Serum_by_calculation^2*device_lifetime_length\n", + "2193 medications_lifetime>=minimum(Microalbumin_Creatinine_Ratio,e^Creatinine)\n", + "2194 medications_lifetime>=(log(Creatinine)/log(10))^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2195 medications_lifetime>=maximum(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "2196 medications_lifetime>=active_care_plans-2\n", + "2197 medications_lifetime>=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^Urea_Nitrogen\n", + "2198 medications_lifetime>=encounters_count*medications_lifetime_perc_covered^2\n", + "2199 medications_lifetime>=maximum(FEV1_FVC,-healthcare_expenses)\n", + "2200 medications_lifetime>=medications_active^2-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2201 medications_lifetime>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,1/medications_active)\n", + "2202 medications_lifetime>=-Triglycerides+1/2*lifetime_condition_length\n", + "2203 medications_lifetime>=(Creatinine+1)/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2204 medications_lifetime>=device_lifetime_length^2*imaging_studies_lifetime\n", + "2205 medications_lifetime>=-active_care_plan_length+2*medications_active\n", + "2206 medications_lifetime>=log(medications_active)*procedures_lifetime/log(10)\n", + "2207 medications_lifetime>=1/2*procedures_lifetime_cost/Platelets____volume__in_Blood_by_Automated_count\n", + "2208 medications_lifetime>=sqrt(procedures_lifetime_cost)-Microalbumin_Creatinine_Ratio\n", + "2209 medications_lifetime>=DALY^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "2210 medications_lifetime_cost<=Body_Mass_Index^2*medications_lifetime_dispenses\n", + "2211 medications_lifetime_cost<=healthcare_expenses*medications_lifetime\n", + "2212 medications_lifetime_cost<=(Chloride-1)*medications_lifetime_length\n", + "2213 medications_lifetime_cost<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*Body_Height^2\n", + "2214 medications_lifetime_cost<=2*Systolic_Blood_Pressure*medications_lifetime_length\n", + "2215 medications_lifetime_cost<=Glomerular_filtration_rate_1_73_sq_M_predicted*lifetime_condition_length^2\n", + "2216 medications_lifetime_cost<=10^Albumin__Mass_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "2217 medications_lifetime_cost<=1/2*healthcare_expenses/num_allergies\n", + "2218 medications_lifetime_cost<=floor(medications_lifetime_length)*mean_Glucose\n", + "2219 medications_lifetime_cost<=sqrt(QALY)*healthcare_expenses\n", + "2220 medications_lifetime_cost<=(1/2*age)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2221 medications_lifetime_cost<=QALY+e^medications_lifetime_length\n", + "2222 medications_lifetime_cost<=Body_Height*e^encounters_count\n", + "2223 medications_lifetime_cost<=10^active_care_plans*healthcare_expenses\n", + "2224 medications_lifetime_cost<=Sodium^2*latitude\n", + "2225 medications_lifetime_cost<=Heart_rate*Low_Density_Lipoprotein_Cholesterol^2\n", + "2226 medications_lifetime_cost<=active_care_plan_length^Triglycerides\n", + "2227 medications_lifetime_cost<=floor(active_care_plan_length)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2228 medications_lifetime_cost<=10^sqrt(latitude)\n", + "2229 medications_lifetime_cost<=active_condition_length^healthcare_expenses\n", + "2230 medications_lifetime_cost<=Body_Height^2*encounters_count\n", + "2231 medications_lifetime_cost<=10^encounters_count/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2232 medications_lifetime_cost<=healthcare_expenses*log(MCHC__Mass_volume__by_Automated_count)/log(10)\n", + "2233 medications_lifetime_cost<=Total_Cholesterol*e^encounters_count\n", + "2234 medications_lifetime_cost<=e^active_care_plans*healthcare_expenses\n", + "2235 medications_lifetime_cost<=(log(Respiratory_rate)/log(10))^mean_Total_Cholesterol\n", + "2236 medications_lifetime_cost<=Leukocytes____volume__in_Blood_by_Automated_count^Urea_Nitrogen\n", + "2237 medications_lifetime_cost<=Body_Height*age^2\n", + "2238 medications_lifetime_cost<=(1/2*age)^active_condition_length\n", + "2239 medications_lifetime_cost<=log(High_Density_Lipoprotein_Cholesterol)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2240 medications_lifetime_cost<=10^encounters_count/medications_active\n", + "2241 medications_lifetime_cost<=1/4*encounters_lifetime_total_cost^2\n", + "2242 medications_lifetime_cost<=(Body_Weight^2)^medications_lifetime\n", + "2243 medications_lifetime_cost<=longitude^2*mean_Triglycerides\n", + "2244 medications_lifetime_cost<=Glucose*Low_Density_Lipoprotein_Cholesterol^2\n", + "2245 medications_lifetime_cost<=latitude^2*medications_lifetime_dispenses\n", + "2246 medications_lifetime_cost<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count*Systolic_Blood_Pressure^2\n", + "2247 medications_lifetime_cost<=encounters_lifetime_payer_coverage^2/medications_lifetime_perc_covered\n", + "2248 medications_lifetime_cost<=e^Respiratory_rate*mean_Potassium\n", + "2249 medications_lifetime_cost<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*QALY^2\n", + "2250 medications_lifetime_cost<=Sodium*age^2\n", + "2251 medications_lifetime_cost<=10^active_care_plan_length/Glucose\n", + "2252 medications_lifetime_cost<=encounters_lifetime_total_cost^2/mean_Microalbumin_Creatinine_Ratio\n", + "2253 medications_lifetime_cost<=Protein__Mass_volume__in_Serum,Plasma*lifetime_condition_length^2\n", + "2254 medications_lifetime_cost<=Platelets____volume__in_Blood_by_Automated_count*QALY^2\n", + "2255 medications_lifetime_cost<=e^Respiratory_rate/imaging_studies_lifetime\n", + "2256 medications_lifetime_cost<=encounters_lifetime_total_cost^2/medications_active\n", + "2257 medications_lifetime_cost<=(2*medications_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2258 medications_lifetime_cost<=2*Low_Density_Lipoprotein_Cholesterol*medications_lifetime_length\n", + "2259 medications_lifetime_cost<=2*encounters_lifetime_total_cost*mean_Estimated_Glomerular_Filtration_Rate\n", + "2260 medications_lifetime_cost<=MCH__Entitic_mass__by_Automated_count*Sodium^2\n", + "2261 medications_lifetime_cost<=Carbon_Dioxide^2*medications_lifetime_dispenses\n", + "2262 medications_lifetime_cost<=(e^QOLS)^MCH__Entitic_mass__by_Automated_count\n", + "2263 medications_lifetime_cost<=healthcare_expenses*log(Respiratory_rate)\n", + "2264 medications_lifetime_cost<=Chloride^2*Heart_rate\n", + "2265 medications_lifetime_cost<=Body_Height*Heart_rate^2\n", + "2266 medications_lifetime_cost<=Total_Cholesterol^2*encounters_count\n", + "2267 medications_lifetime_cost<=sqrt(Body_Mass_Index)^mean_Urea_Nitrogen\n", + "2268 medications_lifetime_cost<=(log(Body_Mass_Index)/log(10))^latitude\n", + "2269 medications_lifetime_cost<=Body_Height^2*Body_Mass_Index\n", + "2270 medications_lifetime_cost<=Body_Weight^2*mean_Systolic_Blood_Pressure\n", + "2271 medications_lifetime_cost<=Triglycerides^2*active_care_plan_length\n", + "2272 medications_lifetime_cost<=Low_Density_Lipoprotein_Cholesterol^2*mean_Heart_rate\n", + "2273 medications_lifetime_cost<=Low_Density_Lipoprotein_Cholesterol^2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "2274 medications_lifetime_cost<=High_Density_Lipoprotein_Cholesterol^2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2275 medications_lifetime_cost<=Protein__Mass_volume__in_Serum,Plasma*e^Urea_Nitrogen\n", + "2276 medications_lifetime_cost<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2)^age\n", + "2277 medications_lifetime_cost<=sqrt(Calcium)^Hemoglobin__Mass_volume__in_Blood\n", + "2278 medications_lifetime_cost<=sqrt(Albumin__Mass_volume__in_Serum,Plasma)^encounters_count\n", + "2279 medications_lifetime_cost<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2*Urea_Nitrogen\n", + "2280 medications_lifetime_cost<=(1/2*MCV__Entitic_volume__by_Automated_count)^active_conditions\n", + "2281 medications_lifetime_cost>=num_allergies\n", + "2282 medications_lifetime_cost>=sqrt(lifetime_care_plan_length)*medications_lifetime_length\n", + "2283 medications_lifetime_cost>=Glomerular_filtration_rate_1_73_sq_M_predicted^2*active_conditions\n", + "2284 medications_lifetime_cost>=(High_Density_Lipoprotein_Cholesterol+1)*medications_lifetime_dispenses\n", + "2285 medications_lifetime_cost>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+2*healthcare_coverage\n", + "2286 medications_lifetime_cost>=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/MCH__Entitic_mass__by_Automated_count\n", + "2287 medications_lifetime_cost>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2*Calcium\n", + "2288 medications_lifetime_cost>=Microalbumin_Creatinine_Ratio^2/encounters_lifetime_perc_covered\n", + "2289 medications_lifetime_cost>=healthcare_coverage*sqrt(medications_lifetime_perc_covered)\n", + "2290 medications_lifetime_cost>=e^Hemoglobin__Mass_volume__in_Blood/MCV__Entitic_volume__by_Automated_count\n", + "2291 medications_lifetime_cost>=(healthcare_expenses+1)/Estimated_Glomerular_Filtration_Rate\n", + "2292 medications_lifetime_cost>=sqrt(Potassium)^Hemoglobin__Mass_volume__in_Blood\n", + "2293 medications_lifetime_cost>=2*active_care_plans*medications_lifetime_length\n", + "2294 medications_lifetime_cost>=Bilirubin_total__Mass_volume__in_Serum,Plasma^Heart_rate\n", + "2295 medications_lifetime_cost>=2*mean_Microalbumin_Creatinine_Ratio^2\n", + "2296 medications_lifetime_cost>=2*healthcare_coverage*num_allergies\n", + "2297 medications_lifetime_cost>=Sodium*log(medications_lifetime_length)/log(10)\n", + "2298 medications_lifetime_cost>=2*Microalbumin_Creatinine_Ratio*medications_lifetime\n", + "2299 medications_lifetime_cost>=(procedures_lifetime_cost+1)*imaging_studies_lifetime\n", + "2300 medications_lifetime_cost>=imaging_studies_lifetime^mean_Calcium\n", + "2301 medications_lifetime_cost>=2*encounters_count*medications_lifetime\n", + "2302 medications_lifetime_cost>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*Body_Mass_Index\n", + "2303 medications_lifetime_cost>=lifetime_care_plans^2*medications_lifetime_dispenses\n", + "2304 medications_lifetime_cost>=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_active\n", + "2305 medications_lifetime_cost>=(Urea_Nitrogen+1)*medications_lifetime_length\n", + "2306 medications_lifetime_cost>=1/2*device_lifetime_length*medications_lifetime_length\n", + "2307 medications_lifetime_cost>=floor(encounters_lifetime_perc_covered)*healthcare_coverage\n", + "2308 medications_lifetime_cost>=-healthcare_expenses+procedures_lifetime_cost+1\n", + "2309 medications_lifetime_cost>=(procedures_lifetime_cost+1)*medications_lifetime_perc_covered\n", + "2310 medications_lifetime_cost>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)*procedures_lifetime_cost/log(10)\n", + "2311 medications_lifetime_cost>=Platelets____volume__in_Blood_by_Automated_count^2/Creatinine\n", + "2312 medications_lifetime_cost>=DALY*medications_lifetime_dispenses\n", + "2313 medications_lifetime_cost>=1/2*lifetime_care_plan_length*medications_lifetime_dispenses\n", + "2314 medications_lifetime_cost>=1/2*Carbon_Dioxide*medications_lifetime_length\n", + "2315 medications_lifetime_cost>=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime_length\n", + "2316 medications_lifetime_cost>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*medications_lifetime_length\n", + "2317 medications_lifetime_cost>=MCH__Entitic_mass__by_Automated_count^2*encounters_count\n", + "2318 medications_lifetime_cost>=2*mean_Microalbumin_Creatinine_Ratio*medications_lifetime\n", + "2319 medications_lifetime_cost>=Chloride^2*medications_active\n", + "2320 medications_lifetime_cost>=Glucose*device_lifetime_length^2\n", + "2321 medications_lifetime_cost>=Globulin__Mass_volume__in_Serum_by_calculation^2*encounters_lifetime_total_cost\n", + "2322 medications_lifetime_cost>=2*MCV__Entitic_volume__by_Automated_count*immunizations_lifetime_cost\n", + "2323 medications_lifetime_cost>=log(Hemoglobin__Mass_volume__in_Blood)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2324 medications_lifetime_cost>=sqrt(Leukocytes____volume__in_Blood_by_Automated_count)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2325 medications_lifetime_cost>=healthcare_coverage*log(Estimated_Glomerular_Filtration_Rate)/log(10)\n", + "2326 medications_lifetime_cost>=Calcium*Protein__Mass_volume__in_Serum,Plasma^2\n", + "2327 medications_lifetime_cost>=lifetime_care_plan_length^2*medications_active\n", + "2328 medications_lifetime_cost>=e^active_conditions/Microalbumin_Creatinine_Ratio\n", + "2329 medications_lifetime_cost>=(1/2*Heart_rate)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2330 medications_lifetime_cost>=lifetime_condition_length^2*medications_lifetime_perc_covered\n", + "2331 medications_lifetime_cost>=encounters_lifetime_total_cost*log(medications_lifetime)\n", + "2332 medications_lifetime_cost>=log(MCV__Entitic_volume__by_Automated_count)*procedures_lifetime_cost/log(10)\n", + "2333 medications_lifetime_cost>=MCV__Entitic_volume__by_Automated_count*device_lifetime_length^2\n", + "2334 medications_lifetime_cost>=sqrt(Microalbumin_Creatinine_Ratio)*encounters_lifetime_payer_coverage\n", + "2335 medications_lifetime_cost>=(medications_active-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2336 medications_lifetime_cost>=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^mean_Calcium\n", + "2337 medications_lifetime_cost>=2*medications_lifetime_length/QOLS\n", + "2338 medications_lifetime_cost>=1/2*Chloride*medications_lifetime_dispenses\n", + "2339 medications_lifetime_cost>=medications_lifetime_dispenses^2/active_condition_length\n", + "2340 medications_lifetime_cost>=medications_lifetime_dispenses^2/Body_Mass_Index\n", + "2341 medications_lifetime_cost>=sqrt(medications_active)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2342 medications_lifetime_cost>=encounters_lifetime_payer_coverage*log(medications_lifetime_dispenses)\n", + "2343 medications_lifetime_cost>=ceil(DALY)*medications_lifetime_dispenses\n", + "2344 medications_lifetime_cost>=Estimated_Glomerular_Filtration_Rate*Respiratory_rate^2\n", + "2345 medications_lifetime_perc_covered<=lifetime_care_plans\n", + "2346 medications_lifetime_perc_covered<=healthcare_coverage\n", + "2347 medications_lifetime_perc_covered<=(lifetime_care_plan_length-1)^2\n", + "2348 medications_lifetime_perc_covered<=log(DALY)^Total_Cholesterol\n", + "2349 medications_lifetime_perc_covered<=medications_lifetime\n", + "2350 medications_lifetime_perc_covered<=encounters_lifetime_perc_covered^num_allergies\n", + "2351 medications_lifetime_perc_covered<=sqrt(encounters_lifetime_perc_covered)^QOLS\n", + "2352 medications_lifetime_perc_covered<=-medications_active+medications_lifetime\n", + "2353 medications_lifetime_perc_covered<=DALY*Respiratory_rate\n", + "2354 medications_lifetime_perc_covered<=2*Total_Cholesterol/Platelets____volume__in_Blood_by_Automated_count\n", + "2355 medications_lifetime_perc_covered<=-Creatinine+Leukocytes____volume__in_Blood_by_Automated_count\n", + "2356 medications_lifetime_perc_covered<=log(10)/log(mean_Respiratory_rate)\n", + "2357 medications_lifetime_perc_covered<=1/2*healthcare_coverage/encounters_lifetime_total_cost\n", + "2358 medications_lifetime_perc_covered<=(Triglycerides-1)/Sodium\n", + "2359 medications_lifetime_perc_covered<=1/2*Creatinine+procedures_lifetime\n", + "2360 medications_lifetime_perc_covered<=e^Creatinine/immunizations_lifetime\n", + "2361 medications_lifetime_perc_covered<=e^Erythrocytes____volume__in_Blood_by_Automated_count/MCV__Entitic_volume__by_Automated_count\n", + "2362 medications_lifetime_perc_covered<=log(healthcare_expenses)/active_conditions\n", + "2363 medications_lifetime_perc_covered<=maximum(Sodium,1/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2364 medications_lifetime_perc_covered<=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/device_lifetime_length\n", + "2365 medications_lifetime_perc_covered<=sqrt(healthcare_coverage)/lifetime_care_plan_length\n", + "2366 medications_lifetime_perc_covered<=(Potassium-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2367 medications_lifetime_perc_covered<=maximum(Sodium,1/Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "2368 medications_lifetime_perc_covered<=log(active_conditions)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2369 medications_lifetime_perc_covered<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2370 medications_lifetime_perc_covered<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1/2*immunizations_lifetime\n", + "2371 medications_lifetime_perc_covered<=(lifetime_conditions+1)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "2372 medications_lifetime_perc_covered<=log(DALY)^Hemoglobin__Mass_volume__in_Blood\n", + "2373 medications_lifetime_perc_covered<=sqrt(healthcare_coverage)/Sodium\n", + "2374 medications_lifetime_perc_covered<=1/2*lifetime_condition_length/procedures_lifetime\n", + "2375 medications_lifetime_perc_covered<=-medications_lifetime+medications_lifetime_dispenses\n", + "2376 medications_lifetime_perc_covered<=active_condition_length-device_lifetime_length\n", + "2377 medications_lifetime_perc_covered<=log(Low_Density_Lipoprotein_Cholesterol)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2378 medications_lifetime_perc_covered<=active_condition_length^2-medications_lifetime\n", + "2379 medications_lifetime_perc_covered<=encounters_count^2/age\n", + "2380 medications_lifetime_perc_covered<=(1/2*active_conditions)^procedures_lifetime_cost\n", + "2381 medications_lifetime_perc_covered<=(encounters_count-1)/DALY\n", + "2382 medications_lifetime_perc_covered<=sqrt(medications_lifetime)/Albumin__Mass_volume__in_Serum,Plasma\n", + "2383 medications_lifetime_perc_covered<=(log(encounters_count)/log(10))^Total_Cholesterol\n", + "2384 medications_lifetime_perc_covered<=encounters_count^2/immunizations_lifetime_cost\n", + "2385 medications_lifetime_perc_covered<=QOLS+procedures_lifetime\n", + "2386 medications_lifetime_perc_covered<=1/(Pain_severity___0_10_verbal_numeric_rating__Score____Reported*num_allergies)\n", + "2387 medications_lifetime_perc_covered<=sqrt(Bilirubin_total__Mass_volume__in_Serum,Plasma)+immunizations_lifetime\n", + "2388 medications_lifetime_perc_covered<=Diastolic_Blood_Pressure/mean_Heart_rate\n", + "2389 medications_lifetime_perc_covered<=(Body_Weight-1)/Heart_rate\n", + "2390 medications_lifetime_perc_covered<=(Body_Weight-1)/Diastolic_Blood_Pressure\n", + "2391 medications_lifetime_perc_covered<=10^QOLS/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2392 medications_lifetime_perc_covered<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2393 medications_lifetime_perc_covered<=1/2*Platelets____volume__in_Blood_by_Automated_count/mean_Triglycerides\n", + "2394 medications_lifetime_perc_covered<=1/2*Low_Density_Lipoprotein_Cholesterol/active_care_plan_length\n", + "2395 medications_lifetime_perc_covered<=1/2*Potassium*encounters_lifetime_perc_covered\n", + "2396 medications_lifetime_perc_covered<=2*encounters_count/High_Density_Lipoprotein_Cholesterol\n", + "2397 medications_lifetime_perc_covered<=1/(mean_Estimated_Glomerular_Filtration_Rate*num_allergies)\n", + "2398 medications_lifetime_perc_covered<=ceil(Potassium)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2399 medications_lifetime_perc_covered<=1/(Albumin__Mass_volume__in_Serum,Plasma*num_allergies)\n", + "2400 medications_lifetime_perc_covered<=QOLS*log(Diastolic_Blood_Pressure)\n", + "2401 medications_lifetime_perc_covered<=maximum(Estimated_Glomerular_Filtration_Rate,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2402 medications_lifetime_perc_covered<=(Low_Density_Lipoprotein_Cholesterol+1)/mean_Low_Density_Lipoprotein_Cholesterol\n", + "2403 medications_lifetime_perc_covered<=floor(Creatinine)^Estimated_Glomerular_Filtration_Rate\n", + "2404 medications_lifetime_perc_covered<=10^Creatinine/medications_active\n", + "2405 medications_lifetime_perc_covered<=(DALY-1)^mean_DALY\n", + "2406 medications_lifetime_perc_covered<=-encounters_lifetime_perc_covered+log(Potassium)\n", + "2407 medications_lifetime_perc_covered<=1/2*encounters_count/Calcium\n", + "2408 medications_lifetime_perc_covered<=1/2*medications_lifetime/active_care_plans\n", + "2409 medications_lifetime_perc_covered<=(2*QOLS)^Albumin__Mass_volume__in_Serum,Plasma\n", + "2410 medications_lifetime_perc_covered<=2*Creatinine*encounters_lifetime_perc_covered\n", + "2411 medications_lifetime_perc_covered<=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)+immunizations_lifetime\n", + "2412 medications_lifetime_perc_covered<=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)-encounters_lifetime_perc_covered\n", + "2413 medications_lifetime_perc_covered<=e^DALY/mean_Microalbumin_Creatinine_Ratio\n", + "2414 medications_lifetime_perc_covered<=-active_care_plans+log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "2415 medications_lifetime_perc_covered<=sqrt(Systolic_Blood_Pressure)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "2416 medications_lifetime_perc_covered<=sqrt(Carbon_Dioxide)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2417 medications_lifetime_perc_covered<=2*Body_Mass_Index/active_care_plan_length\n", + "2418 medications_lifetime_perc_covered<=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+medications_active\n", + "2419 medications_lifetime_perc_covered<=1/2*Low_Density_Lipoprotein_Cholesterol/active_condition_length\n", + "2420 medications_lifetime_perc_covered<=2*Creatinine-encounters_lifetime_perc_covered\n", + "2421 medications_lifetime_perc_covered<=ceil(Glomerular_filtration_rate_1_73_sq_M_predicted)/Body_Mass_Index\n", + "2422 medications_lifetime_perc_covered<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/medications_active\n", + "2423 medications_lifetime_perc_covered>=num_allergies-1\n", + "2424 medications_lifetime_perc_covered>=-healthcare_coverage\n", + "2425 medications_lifetime_perc_covered>=-num_allergies\n", + "2426 medications_lifetime_perc_covered>=Globulin__Mass_volume__in_Serum_by_calculation^2-Urea_Nitrogen\n", + "2427 medications_lifetime_perc_covered>=1/2*num_allergies/Estimated_Glomerular_Filtration_Rate\n", + "2428 medications_lifetime_perc_covered>=2*Creatinine-Microalbumin_Creatinine_Ratio\n", + "2429 medications_lifetime_perc_covered>=lifetime_care_plans-mean_Calcium\n", + "2430 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(Creatinine)\n", + "2431 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "2432 medications_lifetime_perc_covered>=2*imaging_studies_lifetime/DALY\n", + "2433 medications_lifetime_perc_covered>=minimum(device_lifetime_length,log(immunizations_lifetime))\n", + "2434 medications_lifetime_perc_covered>=-Urea_Nitrogen+medications_active\n", + "2435 medications_lifetime_perc_covered>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2-Creatinine\n", + "2436 medications_lifetime_perc_covered>=-immunizations_lifetime+1/2*num_allergies\n", + "2437 medications_lifetime_perc_covered>=log(encounters_lifetime_payer_coverage)/log(10)-Potassium\n", + "2438 medications_lifetime_perc_covered>=1/2*Hemoglobin__Mass_volume__in_Blood-Urea_Nitrogen\n", + "2439 medications_lifetime_perc_covered>=Globulin__Mass_volume__in_Serum_by_calculation-active_conditions\n", + "2440 medications_lifetime_perc_covered>=-Body_Height+mean_Body_Height\n", + "2441 medications_lifetime_perc_covered>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(Urea_Nitrogen)\n", + "2442 medications_lifetime_perc_covered>=log(procedures_lifetime)/Hemoglobin__Mass_volume__in_Blood\n", + "2443 medications_lifetime_perc_covered>=1/2*floor(encounters_lifetime_perc_covered)\n", + "2444 medications_lifetime_perc_covered>=log(QOLS)^Body_Height\n", + "2445 medications_lifetime_perc_covered>=Albumin__Mass_volume__in_Serum,Plasma^2-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2446 medications_lifetime_perc_covered>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)/active_conditions\n", + "2447 medications_lifetime_perc_covered>=-Albumin__Mass_volume__in_Serum,Plasma+log(latitude)\n", + "2448 medications_lifetime_perc_covered>=(Creatinine-1)/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2449 medications_lifetime_perc_covered>=1/Estimated_Glomerular_Filtration_Rate-medications_active\n", + "2450 medications_lifetime_perc_covered>=(e^Urea_Nitrogen)^longitude\n", + "2451 medications_lifetime_perc_covered>=Potassium*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)/log(10)\n", + "2452 medications_lifetime_perc_covered>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+log(medications_active)\n", + "2453 medications_lifetime_perc_covered>=log(device_lifetime_length)/Estimated_Glomerular_Filtration_Rate\n", + "2454 medications_lifetime_perc_covered>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+2*active_care_plans\n", + "2455 medications_lifetime_perc_covered>=sqrt(active_care_plan_length)-Urea_Nitrogen\n", + "2456 medications_lifetime_perc_covered>=sqrt(Hemoglobin__Mass_volume__in_Blood)-Leukocytes____volume__in_Blood_by_Automated_count\n", + "2457 medications_lifetime_perc_covered>=-Erythrocytes____volume__in_Blood_by_Automated_count+ceil(Creatinine)\n", + "2458 medications_lifetime_perc_covered>=-Erythrocytes____volume__in_Blood_by_Automated_count+floor(Potassium)\n", + "2459 medications_lifetime_perc_covered>=sqrt(Respiratory_rate)-Albumin__Mass_volume__in_Serum,Plasma\n", + "2460 medications_lifetime_perc_covered>=1/2*imaging_studies_lifetime-immunizations_lifetime\n", + "2461 medications_lifetime_perc_covered>=(immunizations_lifetime-1)/Hemoglobin__Mass_volume__in_Blood\n", + "2462 medications_lifetime_perc_covered>=sqrt(Hemoglobin__Mass_volume__in_Blood)-active_conditions\n", + "2463 medications_lifetime_perc_covered>=log(immunizations_lifetime)/(log(10)*mean_Estimated_Glomerular_Filtration_Rate)\n", + "2464 medications_lifetime_perc_covered>=log(procedures_lifetime)/(Leukocytes____volume__in_Blood_by_Automated_count*log(10))\n", + "2465 medications_lifetime_perc_covered>=floor(QOLS)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "2466 medications_lifetime_perc_covered>=(QOLS-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2467 medications_lifetime_perc_covered>=log(QOLS)^Carbon_Dioxide\n", + "2468 medications_lifetime_perc_covered>=log(QOLS)^Calcium\n", + "2469 medications_lifetime_perc_covered>=log(QOLS)^Urea_Nitrogen\n", + "2470 medications_lifetime_perc_covered>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/log(10)-QOLS\n", + "2471 medications_lifetime_perc_covered>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "2472 medications_lifetime_perc_covered>=(1/Chloride)^Body_Height\n", + "2473 medications_lifetime_perc_covered>=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)-mean_Creatinine\n", + "2474 medications_lifetime_perc_covered>=1/Estimated_Glomerular_Filtration_Rate-immunizations_lifetime\n", + "2475 medications_lifetime_length<=sqrt(latitude)*medications_lifetime_dispenses\n", + "2476 medications_lifetime_length<=medications_lifetime_cost\n", + "2477 medications_lifetime_length<=(log(healthcare_expenses)/log(10))^active_condition_length\n", + "2478 medications_lifetime_length<=sqrt(healthcare_expenses)^medications_lifetime\n", + "2479 medications_lifetime_length<=log(Chloride)*medications_lifetime_dispenses\n", + "2480 medications_lifetime_length<=2*Glucose*mean_Chloride\n", + "2481 medications_lifetime_length<=age^2+healthcare_coverage\n", + "2482 medications_lifetime_length<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*ceil(QALY)\n", + "2483 medications_lifetime_length<=log(Systolic_Blood_Pressure)*medications_lifetime_dispenses\n", + "2484 medications_lifetime_length<=sqrt(Body_Mass_Index)*encounters_lifetime_total_cost\n", + "2485 medications_lifetime_length<=log(Body_Height)*medications_lifetime_dispenses\n", + "2486 medications_lifetime_length<=MCHC__Mass_volume__by_Automated_count+healthcare_coverage-1\n", + "2487 medications_lifetime_length<=Microalbumin_Creatinine_Ratio^2*Total_Cholesterol\n", + "2488 medications_lifetime_length<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*encounters_lifetime_payer_coverage\n", + "2489 medications_lifetime_length<=Body_Height^2/imaging_studies_lifetime\n", + "2490 medications_lifetime_length<=(healthcare_expenses-1)/Respiratory_rate\n", + "2491 medications_lifetime_length<=(log(Triglycerides)/log(10))^Respiratory_rate\n", + "2492 medications_lifetime_length<=(healthcare_expenses-1)/Calcium\n", + "2493 medications_lifetime_length<=(Total_Cholesterol-1)*Diastolic_Blood_Pressure\n", + "2494 medications_lifetime_length<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+healthcare_coverage\n", + "2495 medications_lifetime_length<=(2*Carbon_Dioxide)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2496 medications_lifetime_length<=(e^Glomerular_filtration_rate_1_73_sq_M_predicted)^QOLS\n", + "2497 medications_lifetime_length<=log(Triglycerides)*medications_lifetime_dispenses\n", + "2498 medications_lifetime_length<=sqrt(Low_Density_Lipoprotein_Cholesterol)^mean_Potassium\n", + "2499 medications_lifetime_length<=active_condition_length*e^encounters_count\n", + "2500 medications_lifetime_length<=log(Hemoglobin__Mass_volume__in_Blood)^encounters_count\n", + "2501 medications_lifetime_length<=latitude^2*medications_lifetime\n", + "2502 medications_lifetime_length<=encounters_lifetime_payer_coverage*log(Estimated_Glomerular_Filtration_Rate)\n", + "2503 medications_lifetime_length<=(Potassium-1)^Urea_Nitrogen\n", + "2504 medications_lifetime_length<=2*medications_lifetime_cost/device_lifetime_length\n", + "2505 medications_lifetime_length<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime_dispenses\n", + "2506 medications_lifetime_length<=log(Albumin__Mass_volume__in_Serum,Plasma)^mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2507 medications_lifetime_length<=Protein__Mass_volume__in_Serum,Plasma^2*medications_active\n", + "2508 medications_lifetime_length<=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "2509 medications_lifetime_length<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1)^active_conditions\n", + "2510 medications_lifetime_length<=Glucose*e^medications_lifetime\n", + "2511 medications_lifetime_length<=(1/2*lifetime_care_plan_length)^Potassium\n", + "2512 medications_lifetime_length<=(lifetime_care_plan_length+1)*mean_Total_Cholesterol\n", + "2513 medications_lifetime_length<=minimum(healthcare_expenses,2*NT_proBNP)\n", + "2514 medications_lifetime_length<=(1/2*encounters_count)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2515 medications_lifetime_length<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime^2\n", + "2516 medications_lifetime_length<=log(e^encounters_lifetime_total_cost)\n", + "2517 medications_lifetime_length<=(log(procedures_lifetime_cost)/log(10))^Calcium\n", + "2518 medications_lifetime_length<=ceil(e^medications_lifetime_dispenses)\n", + "2519 medications_lifetime_length<=(10^QOLS)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2520 medications_lifetime_length<=active_condition_length*sqrt(healthcare_expenses)\n", + "2521 medications_lifetime_length>=num_allergies\n", + "2522 medications_lifetime_length>=(active_care_plans+1)*medications_lifetime\n", + "2523 medications_lifetime_length>=e^QOLS*medications_lifetime_dispenses\n", + "2524 medications_lifetime_length>=sqrt(Low_Density_Lipoprotein_Cholesterol)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2525 medications_lifetime_length>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,2*Total_Cholesterol)\n", + "2526 medications_lifetime_length>=Estimated_Glomerular_Filtration_Rate^2/latitude\n", + "2527 medications_lifetime_length>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_lifetime_dispenses\n", + "2528 medications_lifetime_length>=sqrt(active_conditions)*medications_lifetime_dispenses\n", + "2529 medications_lifetime_length>=(2*medications_lifetime_perc_covered)^Respiratory_rate\n", + "2530 medications_lifetime_length>=1/2*encounters_lifetime_total_cost/Leukocytes____volume__in_Blood_by_Automated_count\n", + "2531 medications_lifetime_length>=Albumin__Mass_volume__in_Serum,Plasma^2*High_Density_Lipoprotein_Cholesterol\n", + "2532 medications_lifetime_length>=Microalbumin_Creatinine_Ratio*sqrt(Systolic_Blood_Pressure)\n", + "2533 medications_lifetime_length>=ceil(medications_lifetime_cost)/mean_Glucose\n", + "2534 medications_lifetime_length>=(medications_lifetime_dispenses+1)*imaging_studies_lifetime\n", + "2535 medications_lifetime_length>=(Total_Cholesterol-1)*medications_active\n", + "2536 medications_lifetime_length>=(immunizations_lifetime+1)*medications_lifetime_dispenses\n", + "2537 medications_lifetime_length>=(2*Bilirubin_total__Mass_volume__in_Serum,Plasma)^mean_Calcium\n", + "2538 medications_lifetime_length>=Leukocytes____volume__in_Blood_by_Automated_count*sqrt(procedures_lifetime_cost)\n", + "2539 medications_lifetime_length>=medications_lifetime^2/mean_Chloride\n", + "2540 medications_lifetime_length>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*medications_lifetime_dispenses\n", + "2541 medications_lifetime_length>=10^active_care_plans/MCH__Entitic_mass__by_Automated_count\n", + "2542 medications_lifetime_length>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)*encounters_count\n", + "2543 medications_lifetime_length>=Diastolic_Blood_Pressure*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2544 medications_lifetime_length>=sqrt(lifetime_conditions)*medications_lifetime_dispenses\n", + "2545 medications_lifetime_length>=10^Potassium/MCH__Entitic_mass__by_Automated_count\n", + "2546 medications_lifetime_length>=DALY^2*medications_active\n", + "2547 medications_lifetime_length>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*medications_lifetime_dispenses\n", + "2548 medications_lifetime_length>=sqrt(healthcare_coverage)*medications_active\n", + "2549 medications_lifetime_length>=log(device_lifetime_length)*medications_lifetime_dispenses\n", + "2550 medications_lifetime_length>=device_lifetime_length*sqrt(medications_lifetime_dispenses)\n", + "2551 medications_lifetime_length>=lifetime_care_plan_length*log(medications_lifetime_dispenses)\n", + "2552 medications_lifetime_length>=sqrt(lifetime_care_plans)*medications_lifetime_dispenses\n", + "2553 medications_lifetime_length>=1/2*active_care_plans*medications_lifetime_dispenses\n", + "2554 medications_lifetime_length>=active_care_plan_length^2*imaging_studies_lifetime\n", + "2555 medications_lifetime_length>=Chloride*sqrt(Protein__Mass_volume__in_Serum,Plasma)\n", + "2556 medications_lifetime_length>=log(Calcium)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2557 medications_lifetime_length>=encounters_count^2*num_allergies\n", + "2558 medications_lifetime_length>=log(DALY)*medications_lifetime_dispenses\n", + "2559 medications_lifetime_length>=1/2*encounters_lifetime_total_cost-healthcare_coverage\n", + "2560 medications_lifetime_length>=sqrt(Hemoglobin__Mass_volume__in_Blood)*medications_lifetime_dispenses\n", + "2561 medications_lifetime_length>=e^encounters_lifetime_perc_covered*medications_lifetime_dispenses\n", + "2562 medications_lifetime_length>=log(Respiratory_rate)*medications_lifetime_dispenses\n", + "2563 medications_lifetime_length>=(Albumin__Mass_volume__in_Serum,Plasma-1)*medications_lifetime_dispenses\n", + "2564 medications_lifetime_length>=2*medications_lifetime_dispenses/Creatinine\n", + "2565 medications_lifetime_length>=(1/2*medications_active)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2566 medications_lifetime_length>=Body_Mass_Index*medications_active^2\n", + "2567 medications_lifetime_length>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)*medications_lifetime_dispenses\n", + "2568 medications_lifetime_length>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*procedures_lifetime\n", + "2569 medications_lifetime_length>=medications_active*sqrt(procedures_lifetime_cost)\n", + "2570 medications_lifetime_length>=10^Potassium/Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2571 medications_lifetime_length>=(Calcium+1)*Microalbumin_Creatinine_Ratio\n", + "2572 medications_lifetime_length>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)*medications_lifetime_dispenses\n", + "2573 medications_lifetime_length>=2*Microalbumin_Creatinine_Ratio/QOLS\n", + "2574 medications_lifetime_dispenses<=floor(1/2*medications_lifetime_length)\n", + "2575 medications_lifetime_dispenses<=medications_lifetime_cost\n", + "2576 medications_lifetime_dispenses<=2*Estimated_Glomerular_Filtration_Rate*mean_Microalbumin_Creatinine_Ratio\n", + "2577 medications_lifetime_dispenses<=QALY^2+Platelets____volume__in_Blood_by_Automated_count\n", + "2578 medications_lifetime_dispenses<=2*Body_Height+encounters_lifetime_total_cost\n", + "2579 medications_lifetime_dispenses<=Body_Mass_Index*floor(Triglycerides)\n", + "2580 medications_lifetime_dispenses<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Systolic_Blood_Pressure\n", + "2581 medications_lifetime_dispenses<=(1/2*Globulin__Mass_volume__in_Serum_by_calculation)^lifetime_condition_length\n", + "2582 medications_lifetime_dispenses<=(medications_lifetime_length-1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2583 medications_lifetime_dispenses<=medications_lifetime_length/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2584 medications_lifetime_dispenses<=log(Respiratory_rate)^mean_Urea_Nitrogen\n", + "2585 medications_lifetime_dispenses<=(healthcare_expenses-1)/active_care_plan_length\n", + "2586 medications_lifetime_dispenses<=sqrt(Body_Height)*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2587 medications_lifetime_dispenses<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^medications_lifetime\n", + "2588 medications_lifetime_dispenses<=encounters_count^2+healthcare_coverage\n", + "2589 medications_lifetime_dispenses<=10^Microalbumin_Creatinine_Ratio/lifetime_condition_length\n", + "2590 medications_lifetime_dispenses<=2*lifetime_care_plan_length*mean_Estimated_Glomerular_Filtration_Rate\n", + "2591 medications_lifetime_dispenses<=sqrt(MCH__Entitic_mass__by_Automated_count)^lifetime_conditions\n", + "2592 medications_lifetime_dispenses<=1/2*Erythrocytes____volume__in_Blood_by_Automated_count*encounters_lifetime_payer_coverage\n", + "2593 medications_lifetime_dispenses<=floor(encounters_lifetime_payer_coverage)/medications_lifetime_perc_covered\n", + "2594 medications_lifetime_dispenses<=minimum(healthcare_expenses,1/2*NT_proBNP)\n", + "2595 medications_lifetime_dispenses<=floor(medications_lifetime_cost)/DALY\n", + "2596 medications_lifetime_dispenses<=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*medications_lifetime\n", + "2597 medications_lifetime_dispenses<=(Glucose+1)*QALY\n", + "2598 medications_lifetime_dispenses<=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "2599 medications_lifetime_dispenses<=1/2*healthcare_coverage/immunizations_lifetime\n", + "2600 medications_lifetime_dispenses<=1/2*Sodium*active_care_plan_length\n", + "2601 medications_lifetime_dispenses<=e^encounters_count-longitude\n", + "2602 medications_lifetime_dispenses<=Globulin__Mass_volume__in_Serum_by_calculation*active_care_plan_length^2\n", + "2603 medications_lifetime_dispenses<=MCHC__Mass_volume__by_Automated_count*ceil(Chloride)\n", + "2604 medications_lifetime_dispenses<=Body_Mass_Index*sqrt(healthcare_coverage)\n", + "2605 medications_lifetime_dispenses<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+e^active_care_plan_length\n", + "2606 medications_lifetime_dispenses<=(log(healthcare_coverage)/log(10))^active_condition_length\n", + "2607 medications_lifetime_dispenses<=(e^age)^QOLS\n", + "2608 medications_lifetime_dispenses<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*lifetime_care_plan_length\n", + "2609 medications_lifetime_dispenses<=e^Respiratory_rate/device_lifetime_length\n", + "2610 medications_lifetime_dispenses<=Heart_rate*e^Potassium\n", + "2611 medications_lifetime_dispenses<=10^encounters_count/latitude\n", + "2612 medications_lifetime_dispenses<=log(e^medications_lifetime_length)/log(10)\n", + "2613 medications_lifetime_dispenses<=1/2*Low_Density_Lipoprotein_Cholesterol^2\n", + "2614 medications_lifetime_dispenses<=active_care_plan_length*e^Potassium\n", + "2615 medications_lifetime_dispenses<=1/2*Creatinine*medications_lifetime_length\n", + "2616 medications_lifetime_dispenses<=-mean_Microalbumin_Creatinine_Ratio+1/2*medications_lifetime_length\n", + "2617 medications_lifetime_dispenses<=e^active_condition_length+immunizations_lifetime_cost\n", + "2618 medications_lifetime_dispenses<=e^active_care_plan_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2619 medications_lifetime_dispenses<=e^active_conditions-mean_Estimated_Glomerular_Filtration_Rate\n", + "2620 medications_lifetime_dispenses<=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)^active_conditions\n", + "2621 medications_lifetime_dispenses<=e^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/medications_active\n", + "2622 medications_lifetime_dispenses<=ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2623 medications_lifetime_dispenses<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*medications_lifetime\n", + "2624 medications_lifetime_dispenses<=e^encounters_count/encounters_lifetime_perc_covered\n", + "2625 medications_lifetime_dispenses<=(log(immunizations_lifetime_cost)/log(10))^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2626 medications_lifetime_dispenses<=maximum(encounters_lifetime_payer_coverage,10^medications_lifetime)\n", + "2627 medications_lifetime_dispenses<=10^medications_lifetime+High_Density_Lipoprotein_Cholesterol\n", + "2628 medications_lifetime_dispenses<=1/2*medications_lifetime_cost/Carbon_Dioxide\n", + "2629 medications_lifetime_dispenses<=2*medications_lifetime_cost/lifetime_care_plan_length\n", + "2630 medications_lifetime_dispenses<=(1/medications_lifetime_perc_covered)^High_Density_Lipoprotein_Cholesterol\n", + "2631 medications_lifetime_dispenses<=-medications_active+1/2*medications_lifetime_length\n", + "2632 medications_lifetime_dispenses<=floor(medications_lifetime_length)/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2633 medications_lifetime_dispenses<=latitude*sqrt(medications_lifetime_length)\n", + "2634 medications_lifetime_dispenses<=Carbon_Dioxide*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2\n", + "2635 medications_lifetime_dispenses<=2*medications_lifetime_length/active_care_plans\n", + "2636 medications_lifetime_dispenses<=2*medications_lifetime_length/Potassium\n", + "2637 medications_lifetime_dispenses<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/procedures_lifetime\n", + "2638 medications_lifetime_dispenses<=2*QALY*mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2639 medications_lifetime_dispenses<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*QALY\n", + "2640 medications_lifetime_dispenses<=Body_Weight^2/immunizations_lifetime\n", + "2641 medications_lifetime_dispenses<=Platelets____volume__in_Blood_by_Automated_count^2/device_lifetime_length\n", + "2642 medications_lifetime_dispenses<=(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2643 medications_lifetime_dispenses<=Carbon_Dioxide^2+healthcare_coverage\n", + "2644 medications_lifetime_dispenses<=e^Urea_Nitrogen/Globulin__Mass_volume__in_Serum_by_calculation\n", + "2645 medications_lifetime_dispenses<=encounters_count*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "2646 medications_lifetime_dispenses<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/Urea_Nitrogen\n", + "2647 medications_lifetime_dispenses>=num_allergies\n", + "2648 medications_lifetime_dispenses>=medications_lifetime\n", + "2649 medications_lifetime_dispenses>=(active_condition_length+1)*medications_active\n", + "2650 medications_lifetime_dispenses>=2*medications_lifetime_length/Respiratory_rate\n", + "2651 medications_lifetime_dispenses>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Total_Cholesterol+1\n", + "2652 medications_lifetime_dispenses>=-Heart_rate+floor(Platelets____volume__in_Blood_by_Automated_count)\n", + "2653 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2654 medications_lifetime_dispenses>=2*medications_lifetime_length/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2655 medications_lifetime_dispenses>=medications_lifetime_length/Urea_Nitrogen\n", + "2656 medications_lifetime_dispenses>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*lifetime_care_plans\n", + "2657 medications_lifetime_dispenses>=Body_Height-MCV__Entitic_volume__by_Automated_count\n", + "2658 medications_lifetime_dispenses>=minimum(Estimated_Glomerular_Filtration_Rate,Heart_rate-1)\n", + "2659 medications_lifetime_dispenses>=2*medications_lifetime_length/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2660 medications_lifetime_dispenses>=active_care_plan_length^2-healthcare_coverage\n", + "2661 medications_lifetime_dispenses>=10^num_allergies*medications_lifetime\n", + "2662 medications_lifetime_dispenses>=2*medications_lifetime_length/latitude\n", + "2663 medications_lifetime_dispenses>=2*medications_lifetime_length/mean_Respiratory_rate\n", + "2664 medications_lifetime_dispenses>=2*latitude*num_allergies\n", + "2665 medications_lifetime_dispenses>=sqrt(healthcare_coverage)*medications_lifetime_perc_covered\n", + "2666 medications_lifetime_dispenses>=2*MCH__Entitic_mass__by_Automated_count*procedures_lifetime\n", + "2667 medications_lifetime_dispenses>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*procedures_lifetime_cost\n", + "2668 medications_lifetime_dispenses>=2*latitude/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2669 medications_lifetime_dispenses>=2*Creatinine*MCV__Entitic_volume__by_Automated_count\n", + "2670 medications_lifetime_dispenses>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+e^medications_active\n", + "2671 medications_lifetime_dispenses>=1/2*Diastolic_Blood_Pressure*medications_active\n", + "2672 medications_lifetime_dispenses>=(medications_active-1)*Sodium\n", + "2673 medications_lifetime_dispenses>=medications_active^2*procedures_lifetime\n", + "2674 medications_lifetime_dispenses>=QALY+log(medications_active)\n", + "2675 medications_lifetime_dispenses>=e^medications_lifetime_perc_covered*medications_lifetime\n", + "2676 medications_lifetime_dispenses>=DALY*medications_active^2\n", + "2677 medications_lifetime_dispenses>=(2*immunizations_lifetime_cost)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "2678 medications_lifetime_dispenses>=Systolic_Blood_Pressure*log(medications_active)\n", + "2679 medications_lifetime_dispenses>=e^Calcium/MCH__Entitic_mass__by_Automated_count\n", + "2680 medications_lifetime_dispenses>=(Albumin__Mass_volume__in_Serum,Plasma+1)*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2681 medications_lifetime_dispenses>=-Microalbumin_Creatinine_Ratio+2*medications_lifetime\n", + "2682 medications_lifetime_dispenses>=2*procedures_lifetime_cost/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2683 medications_lifetime_dispenses>=log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)^Creatinine\n", + "2684 medications_lifetime_dispenses>=MCHC__Mass_volume__by_Automated_count*floor(DALY)\n", + "2685 medications_lifetime_dispenses>=imaging_studies_lifetime*sqrt(medications_lifetime_cost)\n", + "2686 medications_lifetime_dispenses>=encounters_count^2/mean_Protein__Mass_volume__in_Serum,Plasma\n", + "2687 medications_lifetime_dispenses>=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)*Urea_Nitrogen\n", + "2688 medications_lifetime_dispenses>=1/2*Microalbumin_Creatinine_Ratio/QOLS\n", + "2689 medications_lifetime_dispenses>=(Creatinine+1)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2690 medications_lifetime_dispenses>=medications_lifetime_length^2/medications_lifetime_cost\n", + "2691 medications_lifetime_dispenses>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)*procedures_lifetime\n", + "2692 medications_lifetime_dispenses>=DALY^2-encounters_lifetime_payer_coverage\n", + "2693 medications_lifetime_dispenses>=lifetime_care_plan_length^2/MCH__Entitic_mass__by_Automated_count\n", + "2694 medications_lifetime_dispenses>=ceil(Creatinine)^Polyp_size_greatest_dimension_by_CAP_cancer_protocols\n", + "2695 medications_lifetime_dispenses>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Microalbumin_Creatinine_Ratio\n", + "2696 medications_lifetime_dispenses>=sqrt(Leukocytes____volume__in_Blood_by_Automated_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2697 medications_lifetime_dispenses>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2698 medications_lifetime_dispenses>=(2*num_allergies)^Calcium\n", + "2699 medications_lifetime_dispenses>=-QALY+e^active_care_plans\n", + "2700 medications_lifetime_dispenses>=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*active_care_plans\n", + "2701 medications_lifetime_dispenses>=log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)^Potassium\n", + "2702 medications_lifetime_dispenses>=2*Leukocytes____volume__in_Blood_by_Automated_count*device_lifetime_length\n", + "2703 medications_lifetime_dispenses>=Microalbumin_Creatinine_Ratio+2*encounters_count\n", + "2704 medications_lifetime_dispenses>=sqrt(medications_lifetime_cost)-Glucose\n", + "2705 medications_lifetime_dispenses>=(-immunizations_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2706 medications_lifetime_dispenses>=1/2*medications_lifetime_length/Potassium\n", + "2707 medications_active<=active_conditions+immunizations_lifetime_cost\n", + "2708 medications_active<=encounters_count-2\n", + "2709 medications_active<=floor(lifetime_condition_length)\n", + "2710 medications_active<=medications_lifetime\n", + "2711 medications_active<=(lifetime_care_plans+1)/medications_lifetime_perc_covered\n", + "2712 medications_active<=floor(2*Potassium)\n", + "2713 medications_active<=minimum(Microalbumin_Creatinine_Ratio,active_care_plans+1)\n", + "2714 medications_active<=ceil(1/2*Microalbumin_Creatinine_Ratio)\n", + "2715 medications_active<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^2\n", + "2716 medications_active<=sqrt(medications_lifetime_length)/Calcium\n", + "2717 medications_active<=ceil(active_condition_length)\n", + "2718 medications_active<=maximum(Respiratory_rate,log(QALY))\n", + "2719 medications_active<=ceil(Urea_Nitrogen)\n", + "2720 medications_active<=ceil(Calcium)\n", + "2721 medications_active<=minimum(Microalbumin_Creatinine_Ratio,ceil(DALY))\n", + "2722 medications_active<=High_Density_Lipoprotein_Cholesterol^2/Triglycerides\n", + "2723 medications_active<=Erythrocytes____volume__in_Blood_by_Automated_count+active_care_plans\n", + "2724 medications_active<=maximum(DALY,sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "2725 medications_active<=sqrt(medications_lifetime_dispenses)/Potassium\n", + "2726 medications_active<=sqrt(medications_lifetime_cost)/active_care_plan_length\n", + "2727 medications_active<=medications_lifetime_dispenses/encounters_count\n", + "2728 medications_active<=1/2*Diastolic_Blood_Pressure*QOLS\n", + "2729 medications_active<=maximum(Triglycerides,sqrt(QALY))\n", + "2730 medications_active<=10^healthcare_coverage+active_care_plans\n", + "2731 medications_active<=floor(2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "2732 medications_active<=ceil(sqrt(mean_Microalbumin_Creatinine_Ratio))\n", + "2733 medications_active<=latitude^2/lifetime_care_plan_length\n", + "2734 medications_active<=(lifetime_conditions-1)/medications_lifetime_perc_covered\n", + "2735 medications_active<=(procedures_lifetime_cost-1)^Sodium\n", + "2736 medications_active<=maximum(Triglycerides,10^healthcare_coverage)\n", + "2737 medications_active<=active_care_plans*floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2738 medications_active<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+procedures_lifetime_cost\n", + "2739 medications_active<=maximum(Respiratory_rate,active_conditions-1)\n", + "2740 medications_active<=log(active_conditions)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2741 medications_active<=medications_lifetime/Creatinine\n", + "2742 medications_active<=-encounters_lifetime_payer_coverage+encounters_lifetime_total_cost\n", + "2743 medications_active<=-medications_lifetime+medications_lifetime_dispenses\n", + "2744 medications_active<=DALY*e^medications_lifetime_length\n", + "2745 medications_active<=active_conditions+e^Creatinine\n", + "2746 medications_active<=floor(2*mean_Potassium)\n", + "2747 medications_active<=2*Chloride/DALY\n", + "2748 medications_active<=-lifetime_care_plans+mean_Respiratory_rate\n", + "2749 medications_active<=floor(Potassium)+immunizations_lifetime_cost\n", + "2750 medications_active<=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+e^Potassium\n", + "2751 medications_active<=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "2752 medications_active<=QOLS*ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "2753 medications_active<=Body_Mass_Index-Urea_Nitrogen\n", + "2754 medications_active<=active_care_plans+immunizations_lifetime_cost+1\n", + "2755 medications_active<=floor(Glucose)/lifetime_conditions\n", + "2756 medications_active<=minimum(Triglycerides,lifetime_care_plans^2)\n", + "2757 medications_active<=sqrt(healthcare_expenses)/High_Density_Lipoprotein_Cholesterol\n", + "2758 medications_active<=Carbon_Dioxide-active_conditions-1\n", + "2759 medications_active<=(procedures_lifetime_cost-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2760 medications_active<=active_care_plans*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2761 medications_active<=minimum(Microalbumin_Creatinine_Ratio,active_care_plans^2)\n", + "2762 medications_active<=maximum(Respiratory_rate,10^QOLS)\n", + "2763 medications_active<=Urea_Nitrogen^2/MCH__Entitic_mass__by_Automated_count\n", + "2764 medications_active<=maximum(Protein__Mass_volume__in_Serum,Plasma,log(Total_Cholesterol))\n", + "2765 medications_active<=active_conditions*floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2766 medications_active<=-QALY+2*latitude\n", + "2767 medications_active<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-immunizations_lifetime\n", + "2768 medications_active<=2*Diastolic_Blood_Pressure-Systolic_Blood_Pressure\n", + "2769 medications_active<=floor(Albumin__Mass_volume__in_Serum,Plasma)+immunizations_lifetime_cost\n", + "2770 medications_active<=10^active_care_plans+lifetime_conditions\n", + "2771 medications_active<=active_conditions^2+procedures_lifetime_cost\n", + "2772 medications_active<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+e^lifetime_care_plans\n", + "2773 medications_active<=1/2*Respiratory_rate+procedures_lifetime\n", + "2774 medications_active<=minimum(Microalbumin_Creatinine_Ratio,1/2*active_conditions)\n", + "2775 medications_active<=lifetime_care_plans^2/imaging_studies_lifetime\n", + "2776 medications_active<=1/2*Body_Weight-MCH__Entitic_mass__by_Automated_count\n", + "2777 medications_active<=ceil(Globulin__Mass_volume__in_Serum_by_calculation)+immunizations_lifetime_cost\n", + "2778 medications_active<=(immunizations_lifetime_cost-1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "2779 medications_active<=-Glucose+2*Heart_rate\n", + "2780 medications_active<=maximum(Sodium,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2781 medications_active<=1/2*MCHC__Mass_volume__by_Automated_count-procedures_lifetime\n", + "2782 medications_active>=num_allergies\n", + "2783 medications_active>=2*imaging_studies_lifetime\n", + "2784 medications_active>=floor(Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2785 medications_active>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)^2\n", + "2786 medications_active>=2*num_allergies\n", + "2787 medications_active>=num_allergies^healthcare_coverage\n", + "2788 medications_active>=active_care_plans^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2789 medications_active>=minimum(immunizations_lifetime_cost,log(device_lifetime_length))\n", + "2790 medications_active>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*num_allergies\n", + "2791 medications_active>=active_care_plans-active_conditions\n", + "2792 medications_active>=-Body_Mass_Index+floor(Carbon_Dioxide)\n", + "2793 medications_active>=(active_care_plans-1)*num_allergies\n", + "2794 medications_active>=2*active_care_plans-mean_Urea_Nitrogen\n", + "2795 medications_active>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted/lifetime_care_plan_length\n", + "2796 medications_active>=-Heart_rate+floor(active_condition_length)\n", + "2797 medications_active>=lifetime_conditions-mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2798 medications_active>=-Respiratory_rate+2*lifetime_care_plans\n", + "2799 medications_active>=minimum(mean_Globulin__Mass_volume__in_Serum_by_calculation,1/2*procedures_lifetime)\n", + "2800 medications_active>=-Body_Weight+2*MCHC__Mass_volume__by_Automated_count\n", + "2801 medications_active>=sqrt(Heart_rate)-Urea_Nitrogen\n", + "2802 medications_active>=immunizations_lifetime-procedures_lifetime_cost\n", + "2803 medications_active>=log(medications_lifetime)/log(10)-active_care_plan_length\n", + "2804 medications_active>=Calcium-Urea_Nitrogen\n", + "2805 medications_active>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+Potassium-1\n", + "2806 medications_active>=10^num_allergies-Globulin__Mass_volume__in_Serum_by_calculation\n", + "2807 medications_active>=log(active_care_plans)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2808 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-lifetime_conditions+1\n", + "2809 medications_active>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2810 medications_active>=floor(1/mean_Creatinine)\n", + "2811 medications_active>=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)-immunizations_lifetime_cost\n", + "2812 medications_active>=log(Globulin__Mass_volume__in_Serum_by_calculation)/QOLS\n", + "2813 medications_active>=1/2*DALY-mean_Carbon_Dioxide\n", + "2814 medications_active>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)^Creatinine\n", + "2815 medications_active>=1/DALY-Creatinine\n", + "2816 medications_active>=(2*encounters_lifetime_perc_covered)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "2817 medications_active>=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2818 medications_active>=-Sodium+2*active_condition_length\n", + "2819 medications_active>=Erythrocytes____volume__in_Blood_by_Automated_count-active_care_plan_length\n", + "2820 medications_active>=(log(QOLS)/log(10))^QALY\n", + "2821 medications_active>=sqrt(High_Density_Lipoprotein_Cholesterol)-Calcium\n", + "2822 medications_active>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2823 medications_active>=floor(log(device_lifetime_length)/log(10))\n", + "2824 medications_active>=-Body_Weight+active_care_plan_length-1\n", + "2825 medications_active>=(num_allergies-1)^Body_Weight\n", + "2826 medications_active>=-DALY+active_care_plans-1\n", + "2827 medications_active>=sqrt(imaging_studies_lifetime)*procedures_lifetime\n", + "2828 medications_active>=active_conditions^2-lifetime_condition_length\n", + "2829 medications_active>=active_care_plans+log(imaging_studies_lifetime)\n", + "2830 medications_active>=sqrt(DALY)*imaging_studies_lifetime\n", + "2831 medications_active>=minimum(device_lifetime_length,immunizations_lifetime^2)\n", + "2832 medications_active>=minimum(active_care_plans,log(immunizations_lifetime)/log(10))\n", + "2833 medications_active>=log(medications_lifetime)/log(10)-Creatinine\n", + "2834 medications_active>=log(medications_lifetime)/log(10)-mean_Creatinine\n", + "2835 medications_active>=sqrt(DALY)-lifetime_conditions\n", + "2836 medications_active>=(-medications_lifetime_perc_covered)^mean_Heart_rate\n", + "2837 medications_active>=sqrt(medications_lifetime_length)/Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2838 medications_active>=Erythrocytes____volume__in_Blood_by_Automated_count-procedures_lifetime_cost-1\n", + "2839 medications_active>=log(DALY)/log(10)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2840 medications_active>=2*MCHC__Mass_volume__by_Automated_count+longitude\n", + "2841 medications_active>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)-procedures_lifetime\n", + "2842 medications_active>=-Leukocytes____volume__in_Blood_by_Automated_count+2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2843 medications_active>=-Respiratory_rate+floor(Hemoglobin__Mass_volume__in_Blood)\n", + "2844 medications_active>=Leukocytes____volume__in_Blood_by_Automated_count^2-Chloride\n", + "2845 medications_active>=-DALY+log(Microalbumin_Creatinine_Ratio)\n", + "2846 procedures_lifetime<=procedures_lifetime_cost\n", + "2847 procedures_lifetime<=healthcare_coverage\n", + "2848 procedures_lifetime<=1/2*procedures_lifetime_cost/Systolic_Blood_Pressure\n", + "2849 procedures_lifetime<=ceil(mean_Chloride)\n", + "2850 procedures_lifetime<=sqrt(encounters_lifetime_payer_coverage)+encounters_count\n", + "2851 procedures_lifetime<=floor(Triglycerides)-1\n", + "2852 procedures_lifetime<=floor(e^lifetime_conditions)\n", + "2853 procedures_lifetime<=Chloride-MCV__Entitic_volume__by_Automated_count\n", + "2854 procedures_lifetime<=(Body_Mass_Index-1)^Creatinine\n", + "2855 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,sqrt(Total_Cholesterol))\n", + "2856 procedures_lifetime<=maximum(Systolic_Blood_Pressure,latitude-1)\n", + "2857 procedures_lifetime<=healthcare_expenses^active_conditions\n", + "2858 procedures_lifetime<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+immunizations_lifetime_cost\n", + "2859 procedures_lifetime<=sqrt(floor(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", + "2860 procedures_lifetime<=1/2*procedures_lifetime_cost/Body_Height\n", + "2861 procedures_lifetime<=2*floor(mean_High_Density_Lipoprotein_Cholesterol)\n", + "2862 procedures_lifetime<=floor(Leukocytes____volume__in_Blood_by_Automated_count)+immunizations_lifetime_cost\n", + "2863 procedures_lifetime<=High_Density_Lipoprotein_Cholesterol-MCH__Entitic_mass__by_Automated_count+1\n", + "2864 procedures_lifetime<=(QOLS+1)^mean_Urea_Nitrogen\n", + "2865 procedures_lifetime<=ceil(Creatinine)+medications_lifetime_cost\n", + "2866 procedures_lifetime<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+encounters_count\n", + "2867 procedures_lifetime<=e^Leukocytes____volume__in_Blood_by_Automated_count/Urea_Nitrogen\n", + "2868 procedures_lifetime<=active_conditions/num_allergies\n", + "2869 procedures_lifetime<=e^(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)\n", + "2870 procedures_lifetime<=active_care_plans^2/imaging_studies_lifetime\n", + "2871 procedures_lifetime<=-Erythrocytes____volume__in_Blood_by_Automated_count+encounters_count\n", + "2872 procedures_lifetime<=1/imaging_studies_lifetime+immunizations_lifetime_cost\n", + "2873 procedures_lifetime<=-Creatinine+floor(lifetime_care_plan_length)\n", + "2874 procedures_lifetime<=2*procedures_lifetime_cost/medications_lifetime\n", + "2875 procedures_lifetime<=floor(procedures_lifetime_cost)/Platelets____volume__in_Blood_by_Automated_count\n", + "2876 procedures_lifetime<=(encounters_count-1)^2\n", + "2877 procedures_lifetime<=maximum(Sodium,1/num_allergies)\n", + "2878 procedures_lifetime<=lifetime_care_plan_length^2/active_care_plan_length\n", + "2879 procedures_lifetime<=-Albumin__Mass_volume__in_Serum,Plasma+medications_lifetime+1\n", + "2880 procedures_lifetime<=e^medications_lifetime/medications_active\n", + "2881 procedures_lifetime<=floor(encounters_lifetime_payer_coverage)/Triglycerides\n", + "2882 procedures_lifetime<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "2883 procedures_lifetime<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,1/num_allergies)\n", + "2884 procedures_lifetime<=floor(procedures_lifetime_cost)/encounters_count\n", + "2885 procedures_lifetime<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Erythrocytes____volume__in_Blood_by_Automated_count\n", + "2886 procedures_lifetime<=2*procedures_lifetime_cost/lifetime_condition_length\n", + "2887 procedures_lifetime<=Respiratory_rate/imaging_studies_lifetime\n", + "2888 procedures_lifetime<=10^active_care_plans/mean_Potassium\n", + "2889 procedures_lifetime<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^active_care_plans)\n", + "2890 procedures_lifetime<=(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Creatinine\n", + "2891 procedures_lifetime<=(1/2*lifetime_conditions)^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2892 procedures_lifetime<=log(MCH__Entitic_mass__by_Automated_count)^Creatinine\n", + "2893 procedures_lifetime<=e^active_conditions/mean_Microalbumin_Creatinine_Ratio\n", + "2894 procedures_lifetime<=(2*Urea_Nitrogen)^Creatinine\n", + "2895 procedures_lifetime<=maximum(Triglycerides,10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "2896 procedures_lifetime<=maximum(Protein__Mass_volume__in_Urine_by_Test_strip,e^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "2897 procedures_lifetime<=(1/encounters_lifetime_perc_covered)^Urea_Nitrogen\n", + "2898 procedures_lifetime<=10^lifetime_care_plans/active_care_plans\n", + "2899 procedures_lifetime<=10^lifetime_care_plans*lifetime_conditions\n", + "2900 procedures_lifetime<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Globulin__Mass_volume__in_Serum_by_calculation\n", + "2901 procedures_lifetime<=e^lifetime_conditions/Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "2902 procedures_lifetime<=maximum(lifetime_conditions,1/imaging_studies_lifetime)\n", + "2903 procedures_lifetime<=e^lifetime_conditions/DALY\n", + "2904 procedures_lifetime<=minimum(Microalbumin_Creatinine_Ratio,log(Body_temperature))\n", + "2905 procedures_lifetime<=(log(encounters_count)/log(10))^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "2906 procedures_lifetime<=maximum(Sodium,ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2907 procedures_lifetime<=Microalbumin_Creatinine_Ratio^2/mean_Low_Density_Lipoprotein_Cholesterol\n", + "2908 procedures_lifetime<=(immunizations_lifetime_cost-1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "2909 procedures_lifetime<=log(medications_lifetime_dispenses)*medications_lifetime/log(10)\n", + "2910 procedures_lifetime>=imaging_studies_lifetime\n", + "2911 procedures_lifetime>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "2912 procedures_lifetime>=Creatinine-Globulin__Mass_volume__in_Serum_by_calculation\n", + "2913 procedures_lifetime>=-active_conditions+ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "2914 procedures_lifetime>=minimum(num_allergies,procedures_lifetime_cost)\n", + "2915 procedures_lifetime>=minimum(procedures_lifetime_cost,ceil(encounters_lifetime_perc_covered))\n", + "2916 procedures_lifetime>=active_care_plans-medications_lifetime_cost\n", + "2917 procedures_lifetime>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+active_care_plans\n", + "2918 procedures_lifetime>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2919 procedures_lifetime>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*imaging_studies_lifetime\n", + "2920 procedures_lifetime>=-active_condition_length+lifetime_conditions\n", + "2921 procedures_lifetime>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Carbon_Dioxide-1\n", + "2922 procedures_lifetime>=-Glomerular_filtration_rate_1_73_sq_M_predicted+2*device_lifetime_length\n", + "2923 procedures_lifetime>=-Respiratory_rate+active_conditions\n", + "2924 procedures_lifetime>=-Body_Height+1/2*Microalbumin_Creatinine_Ratio\n", + "2925 procedures_lifetime>=-Respiratory_rate+lifetime_conditions\n", + "2926 procedures_lifetime>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2927 procedures_lifetime>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "2928 procedures_lifetime>=immunizations_lifetime-lifetime_conditions\n", + "2929 procedures_lifetime>=2*Body_Weight-Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "2930 procedures_lifetime>=log(procedures_lifetime_cost)/(Potassium*log(10))\n", + "2931 procedures_lifetime>=log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)-medications_active\n", + "2932 procedures_lifetime>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2933 procedures_lifetime>=Creatinine^2-lifetime_condition_length\n", + "2934 procedures_lifetime>=2*procedures_lifetime_cost/healthcare_expenses\n", + "2935 procedures_lifetime>=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)*num_allergies\n", + "2936 procedures_lifetime>=Creatinine^2-Hemoglobin__Mass_volume__in_Blood\n", + "2937 procedures_lifetime>=Respiratory_rate-mean_Respiratory_rate-1\n", + "2938 procedures_lifetime>=maximum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,-Estimated_Glomerular_Filtration_Rate)\n", + "2939 procedures_lifetime>=floor(sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma))\n", + "2940 procedures_lifetime>=Estimated_Glomerular_Filtration_Rate-mean_Estimated_Glomerular_Filtration_Rate-1\n", + "2941 procedures_lifetime>=sqrt(Urea_Nitrogen)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "2942 procedures_lifetime>=(num_allergies-1)^Body_Weight\n", + "2943 procedures_lifetime>=Creatinine-Potassium+1\n", + "2944 procedures_lifetime>=lifetime_care_plans^2-lifetime_care_plan_length\n", + "2945 procedures_lifetime>=lifetime_care_plans^2-mean_Glucose\n", + "2946 procedures_lifetime>=encounters_count-lifetime_condition_length-1\n", + "2947 procedures_lifetime>=(log(active_conditions)/log(10))^FEV1_FVC\n", + "2948 procedures_lifetime>=-Albumin__Mass_volume__in_Serum,Plasma+log(encounters_count)\n", + "2949 procedures_lifetime>=(log(lifetime_conditions)/log(10))^FEV1_FVC\n", + "2950 procedures_lifetime>=-Potassium+log(Microalbumin_Creatinine_Ratio)\n", + "2951 procedures_lifetime_cost<=age*longitude^2\n", + "2952 procedures_lifetime_cost<=healthcare_coverage^2\n", + "2953 procedures_lifetime_cost<=1/2*Body_Weight*encounters_lifetime_total_cost\n", + "2954 procedures_lifetime_cost<=(10^lifetime_conditions)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2955 procedures_lifetime_cost<=2*Erythrocytes____volume__in_Blood_by_Automated_count*encounters_lifetime_total_cost\n", + "2956 procedures_lifetime_cost<=(e^Creatinine)^Hemoglobin__Mass_volume__in_Blood\n", + "2957 procedures_lifetime_cost<=healthcare_expenses*procedures_lifetime\n", + "2958 procedures_lifetime_cost<=2*Urea_Nitrogen*encounters_lifetime_total_cost\n", + "2959 procedures_lifetime_cost<=sqrt(encounters_count)^age\n", + "2960 procedures_lifetime_cost<=log(medications_lifetime_length)*medications_lifetime_cost/log(10)\n", + "2961 procedures_lifetime_cost<=1/2*High_Density_Lipoprotein_Cholesterol*encounters_lifetime_total_cost\n", + "2962 procedures_lifetime_cost<=(Left_ventricular_Ejection_fraction^2)^procedures_lifetime\n", + "2963 procedures_lifetime_cost<=longitude^2*mean_Glucose\n", + "2964 procedures_lifetime_cost<=(2*Low_Density_Lipoprotein_Cholesterol)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "2965 procedures_lifetime_cost<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2*MCV__Entitic_volume__by_Automated_count\n", + "2966 procedures_lifetime_cost<=2*Microalbumin_Creatinine_Ratio*lifetime_condition_length\n", + "2967 procedures_lifetime_cost<=10^Estimated_Glomerular_Filtration_Rate*Microalbumin_Creatinine_Ratio\n", + "2968 procedures_lifetime_cost<=(Carbon_Dioxide-1)^mean_Potassium\n", + "2969 procedures_lifetime_cost<=(1/medications_lifetime_perc_covered)^mean_High_Density_Lipoprotein_Cholesterol\n", + "2970 procedures_lifetime_cost<=(encounters_count^2)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "2971 procedures_lifetime_cost<=(procedures_lifetime+1)^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2972 procedures_lifetime_cost<=Triglycerides*e^encounters_count\n", + "2973 procedures_lifetime_cost<=(e^procedures_lifetime)^mean_Urea_Nitrogen\n", + "2974 procedures_lifetime_cost<=(e^encounters_lifetime_perc_covered)^Microalbumin_Creatinine_Ratio\n", + "2975 procedures_lifetime_cost<=medications_lifetime_dispenses^2/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "2976 procedures_lifetime_cost<=10^procedures_lifetime*mean_Microalbumin_Creatinine_Ratio\n", + "2977 procedures_lifetime_cost<=Chloride*e^encounters_count\n", + "2978 procedures_lifetime_cost<=encounters_lifetime_payer_coverage^2/DALY\n", + "2979 procedures_lifetime_cost<=log(lifetime_care_plan_length)^Calcium\n", + "2980 procedures_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "2981 procedures_lifetime_cost<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*healthcare_coverage\n", + "2982 procedures_lifetime_cost<=sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "2983 procedures_lifetime_cost<=1/2*healthcare_expenses*mean_Creatinine\n", + "2984 procedures_lifetime_cost<=floor(Calcium)*healthcare_coverage\n", + "2985 procedures_lifetime_cost<=1/2*Body_Height*encounters_lifetime_payer_coverage\n", + "2986 procedures_lifetime_cost<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Urea_Nitrogen\n", + "2987 procedures_lifetime_cost<=ceil(Protein__Mass_volume__in_Serum,Plasma)*encounters_lifetime_payer_coverage\n", + "2988 procedures_lifetime_cost<=log(Albumin__Mass_volume__in_Serum,Plasma)^QALY\n", + "2989 procedures_lifetime_cost<=Hemoglobin__Mass_volume__in_Blood*encounters_count^2\n", + "2990 procedures_lifetime_cost<=(QOLS+1)^mean_Diastolic_Blood_Pressure\n", + "2991 procedures_lifetime_cost<=10^lifetime_condition_length/medications_active\n", + "2992 procedures_lifetime_cost<=10^Creatinine*healthcare_coverage\n", + "2993 procedures_lifetime_cost<=-Microalbumin_Creatinine_Ratio+2*healthcare_coverage\n", + "2994 procedures_lifetime_cost<=(10^encounters_lifetime_perc_covered)^mean_Carbon_Dioxide\n", + "2995 procedures_lifetime_cost<=e^Respiratory_rate/Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "2996 procedures_lifetime_cost<=10^medications_lifetime/device_lifetime_length\n", + "2997 procedures_lifetime_cost<=10^active_care_plans*mean_Microalbumin_Creatinine_Ratio\n", + "2998 procedures_lifetime_cost<=(1/encounters_lifetime_perc_covered)^Body_Weight\n", + "2999 procedures_lifetime_cost<=encounters_lifetime_payer_coverage^2+healthcare_coverage\n", + "3000 procedures_lifetime_cost<=(2*active_conditions)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3001 procedures_lifetime_cost<=Body_Height^2*lifetime_conditions\n", + "3002 procedures_lifetime_cost<=Microalbumin_Creatinine_Ratio^2+healthcare_coverage\n", + "3003 procedures_lifetime_cost<=Triglycerides^2+medications_lifetime_cost\n", + "3004 procedures_lifetime_cost<=Globulin__Mass_volume__in_Serum_by_calculation*lifetime_condition_length^2\n", + "3005 procedures_lifetime_cost<=log(Albumin__Mass_volume__in_Serum,Plasma)^mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3006 procedures_lifetime_cost<=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^Urea_Nitrogen\n", + "3007 procedures_lifetime_cost<=10^procedures_lifetime*healthcare_coverage\n", + "3008 procedures_lifetime_cost<=10^Urea_Nitrogen/encounters_lifetime_total_cost\n", + "3009 procedures_lifetime_cost<=e^Urea_Nitrogen/num_allergies\n", + "3010 procedures_lifetime_cost<=(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1)^encounters_count\n", + "3011 procedures_lifetime_cost<=(2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Urea_Nitrogen\n", + "3012 procedures_lifetime_cost<=(1/2*Erythrocytes____volume__in_Blood_by_Automated_count)^mean_Urea_Nitrogen\n", + "3013 procedures_lifetime_cost>=imaging_studies_lifetime\n", + "3014 procedures_lifetime_cost>=sqrt(procedures_lifetime)^Albumin__Mass_volume__in_Serum,Plasma\n", + "3015 procedures_lifetime_cost>=2*age*procedures_lifetime\n", + "3016 procedures_lifetime_cost>=(encounters_lifetime_payer_coverage+1)*imaging_studies_lifetime\n", + "3017 procedures_lifetime_cost>=healthcare_coverage*log(imaging_studies_lifetime)\n", + "3018 procedures_lifetime_cost>=2*Systolic_Blood_Pressure*procedures_lifetime\n", + "3019 procedures_lifetime_cost>=1/2*medications_lifetime*procedures_lifetime\n", + "3020 procedures_lifetime_cost>=-Platelets____volume__in_Blood_by_Automated_count+2*medications_lifetime\n", + "3021 procedures_lifetime_cost>=(encounters_count+1)*procedures_lifetime\n", + "3022 procedures_lifetime_cost>=2*Body_Height*procedures_lifetime\n", + "3023 procedures_lifetime_cost>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2*num_allergies\n", + "3024 procedures_lifetime_cost>=e^DALY*imaging_studies_lifetime\n", + "3025 procedures_lifetime_cost>=Systolic_Blood_Pressure*ceil(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3026 procedures_lifetime_cost>=(Triglycerides+1)*procedures_lifetime\n", + "3027 procedures_lifetime_cost>=Body_Mass_Index^2-encounters_lifetime_total_cost\n", + "3028 procedures_lifetime_cost>=Urea_Nitrogen^2*procedures_lifetime\n", + "3029 procedures_lifetime_cost>=-encounters_count+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3030 procedures_lifetime_cost>=e^Hemoglobin_A1c_Hemoglobin_total_in_Blood*procedures_lifetime\n", + "3031 procedures_lifetime_cost>=Urea_Nitrogen^2+Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3032 procedures_lifetime_cost>=(Platelets____volume__in_Blood_by_Automated_count+1)*procedures_lifetime\n", + "3033 procedures_lifetime_cost>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2*device_lifetime_length\n", + "3034 procedures_lifetime_cost>=4*procedures_lifetime^2\n", + "3035 procedures_lifetime_cost>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*medications_lifetime_length\n", + "3036 procedures_lifetime_cost>=MCHC__Mass_volume__by_Automated_count^2-encounters_lifetime_total_cost\n", + "3037 procedures_lifetime_cost>=2*Platelets____volume__in_Blood_by_Automated_count-medications_lifetime_dispenses\n", + "3038 procedures_lifetime_cost>=(2*num_allergies)^mean_Calcium\n", + "3039 procedures_lifetime_cost>=10^Erythrocytes____volume__in_Blood_by_Automated_count-healthcare_expenses\n", + "3040 procedures_lifetime_cost>=encounters_count^2*imaging_studies_lifetime\n", + "3041 procedures_lifetime_cost>=2*encounters_count-mean_Estimated_Glomerular_Filtration_Rate\n", + "3042 procedures_lifetime_cost>=(2*immunizations_lifetime)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3043 procedures_lifetime_cost>=2*immunizations_lifetime_cost-medications_lifetime_cost\n", + "3044 procedures_lifetime_cost>=e^medications_active-mean_Estimated_Glomerular_Filtration_Rate\n", + "3045 procedures_lifetime_cost>=(-medications_active)^Potassium\n", + "3046 procedures_lifetime_cost>=(1/2*procedures_lifetime)^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3047 procedures_lifetime_cost>=(1/2*procedures_lifetime)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3048 procedures_lifetime_cost>=MCV__Entitic_volume__by_Automated_count*procedures_lifetime^2\n", + "3049 procedures_lifetime_cost>=sqrt(procedures_lifetime)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3050 procedures_lifetime_cost>=log(procedures_lifetime)+medications_lifetime\n", + "3051 QOLS<=healthcare_expenses\n", + "3052 QOLS<=lifetime_conditions\n", + "3053 QOLS<=mean_QOLS\n", + "3054 QOLS>=longitude\n", + "3055 QOLS>=mean_QOLS\n", + "3056 QALY<=healthcare_expenses\n", + "3057 QALY<=mean_QALY\n", + "3058 QALY>=longitude\n", + "3059 QALY>=mean_QALY\n", + "3060 DALY<=healthcare_expenses\n", + "3061 DALY<=active_condition_length\n", + "3062 DALY<=mean_DALY\n", + "3063 DALY>=longitude\n", + "3064 DALY>=imaging_studies_lifetime\n", + "3065 DALY>=mean_DALY\n", + "3066 Respiratory_rate<=healthcare_expenses\n", + "3067 Respiratory_rate<=active_care_plans+mean_Respiratory_rate\n", + "3068 Respiratory_rate<=maximum(active_care_plan_length,mean_Respiratory_rate)\n", + "3069 Respiratory_rate<=mean_Respiratory_rate/QOLS\n", + "3070 Respiratory_rate<=maximum(mean_Respiratory_rate,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3071 Respiratory_rate<=maximum(mean_Respiratory_rate,ceil(Hemoglobin__Mass_volume__in_Blood))\n", + "3072 Respiratory_rate<=10^immunizations_lifetime+mean_Respiratory_rate\n", + "3073 Respiratory_rate<=ceil(Leukocytes____volume__in_Blood_by_Automated_count^2)\n", + "3074 Respiratory_rate<=DALY+1/2*Estimated_Glomerular_Filtration_Rate\n", + "3075 Respiratory_rate<=2*ceil(Urea_Nitrogen)\n", + "3076 Respiratory_rate<=floor(2*mean_Estimated_Glomerular_Filtration_Rate)\n", + "3077 Respiratory_rate<=floor(1/2*High_Density_Lipoprotein_Cholesterol)\n", + "3078 Respiratory_rate<=2*floor(mean_Urea_Nitrogen)\n", + "3079 Respiratory_rate<=mean_Respiratory_rate+procedures_lifetime_cost\n", + "3080 Respiratory_rate<=maximum(QALY,mean_Respiratory_rate)\n", + "3081 Respiratory_rate<=maximum(mean_Respiratory_rate,DALY^2)\n", + "3082 Respiratory_rate<=maximum(mean_Respiratory_rate,e^DALY)\n", + "3083 Respiratory_rate<=maximum(active_condition_length,mean_Respiratory_rate)\n", + "3084 Respiratory_rate<=Calcium^2/mean_Creatinine\n", + "3085 Respiratory_rate<=mean_Respiratory_rate+medications_lifetime\n", + "3086 Respiratory_rate<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Respiratory_rate\n", + "3087 Respiratory_rate<=2*sqrt(Heart_rate)\n", + "3088 Respiratory_rate<=maximum(medications_lifetime_length,mean_Respiratory_rate)\n", + "3089 Respiratory_rate<=sqrt(healthcare_expenses)/DALY\n", + "3090 Respiratory_rate<=ceil(Potassium^2)\n", + "3091 Respiratory_rate<=floor(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/immunizations_lifetime\n", + "3092 Respiratory_rate<=log(lifetime_conditions)+mean_Respiratory_rate\n", + "3093 Respiratory_rate<=active_care_plans+floor(Hemoglobin__Mass_volume__in_Blood)\n", + "3094 Respiratory_rate<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)^2\n", + "3095 Respiratory_rate<=maximum(mean_Respiratory_rate,2*encounters_count)\n", + "3096 Respiratory_rate<=ceil(latitude)-mean_Carbon_Dioxide\n", + "3097 Respiratory_rate<=Heart_rate/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3098 Respiratory_rate<=1/num_allergies+mean_Respiratory_rate\n", + "3099 Respiratory_rate<=maximum(mean_Respiratory_rate,active_conditions^2)\n", + "3100 Respiratory_rate<=log(encounters_lifetime_payer_coverage)+mean_Calcium\n", + "3101 Respiratory_rate<=1/encounters_lifetime_perc_covered+mean_Respiratory_rate\n", + "3102 Respiratory_rate<=1/imaging_studies_lifetime+mean_Respiratory_rate\n", + "3103 Respiratory_rate<=e^Leukocytes____volume__in_Blood_by_Automated_count/mean_Creatinine\n", + "3104 Respiratory_rate<=maximum(mean_Respiratory_rate,10^medications_lifetime)\n", + "3105 Respiratory_rate<=ceil(Creatinine)+mean_Respiratory_rate\n", + "3106 Respiratory_rate<=maximum(procedures_lifetime,floor(Estimated_Glomerular_Filtration_Rate))\n", + "3107 Respiratory_rate<=maximum(Microalbumin_Creatinine_Ratio,Albumin__Mass_volume__in_Serum,Plasma^2)\n", + "3108 Respiratory_rate<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3109 Respiratory_rate<=(log(Triglycerides)/log(10))^Potassium\n", + "3110 Respiratory_rate<=-Glomerular_filtration_rate_1_73_sq_M_predicted+ceil(Chloride)\n", + "3111 Respiratory_rate<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*ceil(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "3112 Respiratory_rate>=longitude\n", + "3113 Respiratory_rate>=minimum(mean_Respiratory_rate,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "3114 Respiratory_rate>=-active_care_plans+mean_Respiratory_rate\n", + "3115 Respiratory_rate>=ceil(sqrt(Sodium))\n", + "3116 Respiratory_rate>=mean_Respiratory_rate^num_allergies\n", + "3117 Respiratory_rate>=ceil(sqrt(Glucose))\n", + "3118 Respiratory_rate>=floor(10^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "3119 Respiratory_rate>=imaging_studies_lifetime^2\n", + "3120 Respiratory_rate>=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)\n", + "3121 Respiratory_rate>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3122 Respiratory_rate>=mean_Respiratory_rate-procedures_lifetime_cost\n", + "3123 Respiratory_rate>=-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Respiratory_rate\n", + "3124 Respiratory_rate>=(Microalbumin_Creatinine_Ratio+1)/active_condition_length\n", + "3125 Respiratory_rate>=mean_Respiratory_rate^QOLS\n", + "3126 Respiratory_rate>=mean_Respiratory_rate/lifetime_conditions\n", + "3127 Respiratory_rate>=mean_Respiratory_rate-medications_lifetime\n", + "3128 Respiratory_rate>=minimum(active_conditions,1/medications_active)\n", + "3129 Respiratory_rate>=healthcare_expenses^longitude\n", + "3130 Respiratory_rate>=minimum(mean_Respiratory_rate,e^immunizations_lifetime)\n", + "3131 Respiratory_rate>=2*lifetime_care_plans-medications_active\n", + "3132 Respiratory_rate>=minimum(mean_Respiratory_rate,1/2*Creatinine)\n", + "3133 Respiratory_rate>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-Estimated_Glomerular_Filtration_Rate\n", + "3134 Respiratory_rate>=sqrt(medications_lifetime)^QOLS\n", + "3135 Respiratory_rate>=-active_care_plans+active_conditions\n", + "3136 Respiratory_rate>=active_conditions-procedures_lifetime\n", + "3137 Respiratory_rate>=lifetime_conditions-procedures_lifetime\n", + "3138 Respiratory_rate>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3139 Respiratory_rate>=active_care_plans*immunizations_lifetime\n", + "3140 Respiratory_rate>=minimum(mean_Respiratory_rate,-Triglycerides)\n", + "3141 Respiratory_rate>=minimum(mean_Respiratory_rate,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3142 Respiratory_rate>=active_care_plans+medications_active\n", + "3143 Respiratory_rate>=floor(log(procedures_lifetime_cost))\n", + "3144 Respiratory_rate>=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/encounters_lifetime_perc_covered\n", + "3145 Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "3146 Respiratory_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "3147 Respiratory_rate>=(num_allergies+1)^mean_Creatinine\n", + "3148 Respiratory_rate>=Low_Density_Lipoprotein_Cholesterol-Sodium\n", + "3149 Respiratory_rate>=e^medications_lifetime_perc_covered/QOLS\n", + "3150 Respiratory_rate>=minimum(mean_Respiratory_rate,2*medications_active)\n", + "3151 Respiratory_rate>=2*procedures_lifetime/lifetime_conditions\n", + "3152 Respiratory_rate>=Albumin__Mass_volume__in_Serum,Plasma+lifetime_care_plans\n", + "3153 Respiratory_rate>=sqrt(procedures_lifetime)+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3154 Respiratory_rate>=minimum(mean_Respiratory_rate,sqrt(Systolic_Blood_Pressure))\n", + "3155 Heart_rate<=healthcare_expenses\n", + "3156 Heart_rate<=maximum(medications_lifetime,mean_Heart_rate)\n", + "3157 Heart_rate<=active_care_plan_length+mean_Heart_rate\n", + "3158 Heart_rate<=sqrt(Body_Height)+mean_Heart_rate\n", + "3159 Heart_rate<=-active_care_plans+floor(Chloride)\n", + "3160 Heart_rate<=2*Albumin__Mass_volume__in_Serum,Plasma+mean_Heart_rate\n", + "3161 Heart_rate<=maximum(lifetime_condition_length,mean_Heart_rate)\n", + "3162 Heart_rate<=mean_Heart_rate+medications_lifetime\n", + "3163 Heart_rate<=active_conditions+mean_Heart_rate+1\n", + "3164 Heart_rate<=(Estimated_Glomerular_Filtration_Rate-1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "3165 Heart_rate<=mean_Heart_rate+procedures_lifetime_cost\n", + "3166 Heart_rate<=mean_Heart_rate/QOLS\n", + "3167 Heart_rate<=maximum(Sodium,mean_Heart_rate)\n", + "3168 Heart_rate<=maximum(mean_Heart_rate,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3169 Heart_rate<=2*Protein__Mass_volume__in_Serum,Plasma-device_lifetime_length\n", + "3170 Heart_rate<=2*Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "3171 Heart_rate<=maximum(mean_Heart_rate,e^DALY)\n", + "3172 Heart_rate<=mean_Heart_rate+mean_Urea_Nitrogen\n", + "3173 Heart_rate<=(QALY-1)/imaging_studies_lifetime\n", + "3174 Heart_rate<=-DALY+mean_Sodium\n", + "3175 Heart_rate<=floor(Carbon_Dioxide)+mean_Diastolic_Blood_Pressure\n", + "3176 Heart_rate<=Low_Density_Lipoprotein_Cholesterol+1/2*QALY\n", + "3177 Heart_rate<=1/2*Body_Weight*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3178 Heart_rate<=(e^High_Density_Lipoprotein_Cholesterol)^QOLS\n", + "3179 Heart_rate<=e^Creatinine+mean_Heart_rate\n", + "3180 Heart_rate<=(Estimated_Glomerular_Filtration_Rate+1)*DALY\n", + "3181 Heart_rate<=MCH__Entitic_mass__by_Automated_count+1/2*Sodium\n", + "3182 Heart_rate<=Carbon_Dioxide^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "3183 Heart_rate<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2-medications_lifetime\n", + "3184 Heart_rate<=log(Hemoglobin__Mass_volume__in_Blood)*mean_Heart_rate/log(10)\n", + "3185 Heart_rate<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count-mean_Body_Weight-1\n", + "3186 Heart_rate<=MCHC__Mass_volume__by_Automated_count^2/procedures_lifetime\n", + "3187 Heart_rate<=Glucose*active_conditions\n", + "3188 Heart_rate>=latitude\n", + "3189 Heart_rate>=(active_conditions-1)*Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3190 Heart_rate>=minimum(mean_Heart_rate,QALY-1)\n", + "3191 Heart_rate>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Heart_rate)\n", + "3192 Heart_rate>=minimum(mean_Heart_rate,1/2*Systolic_Blood_Pressure)\n", + "3193 Heart_rate>=1/2*Triglycerides-mean_Systolic_Blood_Pressure\n", + "3194 Heart_rate>=minimum(active_care_plan_length,1/2*Systolic_Blood_Pressure)\n", + "3195 Heart_rate>=mean_Heart_rate-procedures_lifetime_cost\n", + "3196 Heart_rate>=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/QOLS\n", + "3197 Heart_rate>=High_Density_Lipoprotein_Cholesterol-mean_Respiratory_rate\n", + "3198 Heart_rate>=Sodium-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "3199 Heart_rate>=minimum(Protein__Mass_volume__in_Serum,Plasma,mean_Heart_rate)\n", + "3200 Heart_rate>=-encounters_count+mean_Heart_rate\n", + "3201 Heart_rate>=mean_Heart_rate^num_allergies\n", + "3202 Heart_rate>=-active_care_plan_length+mean_Heart_rate\n", + "3203 Heart_rate>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Respiratory_rate\n", + "3204 Heart_rate>=minimum(active_condition_length,mean_Heart_rate)\n", + "3205 Heart_rate>=healthcare_expenses^longitude\n", + "3206 Heart_rate>=floor(Platelets____volume__in_Blood_by_Automated_count)-medications_lifetime_dispenses\n", + "3207 Heart_rate>=(latitude+1)/mean_Creatinine\n", + "3208 Heart_rate>=Chloride*encounters_lifetime_perc_covered^2\n", + "3209 Heart_rate>=mean_Heart_rate-medications_lifetime_cost\n", + "3210 Heart_rate>=mean_Heart_rate^QOLS\n", + "3211 Heart_rate>=-Low_Density_Lipoprotein_Cholesterol+e^Potassium\n", + "3212 Heart_rate>=1/2*Microalbumin_Creatinine_Ratio/Creatinine\n", + "3213 Heart_rate>=log(medications_active)*mean_Heart_rate/log(10)\n", + "3214 Heart_rate>=2*MCHC__Mass_volume__by_Automated_count-active_conditions\n", + "3215 Heart_rate>=-Leukocytes____volume__in_Blood_by_Automated_count+mean_Heart_rate\n", + "3216 Heart_rate>=sqrt(encounters_lifetime_payer_coverage)-mean_Microalbumin_Creatinine_Ratio\n", + "3217 Heart_rate>=minimum(encounters_count,ceil(active_condition_length))\n", + "3218 Heart_rate>=1/2*encounters_count/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3219 Heart_rate>=Glucose/active_conditions\n", + "3220 Heart_rate>=lifetime_care_plans^2-mean_Respiratory_rate\n", + "3221 Heart_rate>=2*Microalbumin_Creatinine_Ratio/DALY\n", + "3222 Heart_rate>=minimum(mean_Heart_rate,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3223 Heart_rate>=Low_Density_Lipoprotein_Cholesterol^2/Platelets____volume__in_Blood_by_Automated_count\n", + "3224 Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "3225 Heart_rate>=2*medications_lifetime/Hemoglobin__Mass_volume__in_Blood\n", + "3226 Heart_rate>=High_Density_Lipoprotein_Cholesterol-immunizations_lifetime_cost+1\n", + "3227 Heart_rate>=log(Estimated_Glomerular_Filtration_Rate)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3228 Heart_rate>=1/2*active_conditions/QOLS\n", + "3229 Heart_rate>=Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime_cost+1\n", + "3230 Heart_rate>=2*Hemoglobin__Mass_volume__in_Blood+device_lifetime_length\n", + "3231 Heart_rate>=1/2*encounters_count-lifetime_care_plan_length\n", + "3232 Heart_rate>=Glucose/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3233 Heart_rate>=(active_conditions-1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3234 Heart_rate>=active_conditions^2/Potassium\n", + "3235 Heart_rate>=2*DALY*medications_lifetime_perc_covered\n", + "3236 Heart_rate>=QOLS^2*mean_Heart_rate\n", + "3237 Heart_rate>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/Creatinine\n", + "3238 Systolic_Blood_Pressure<=healthcare_expenses\n", + "3239 Systolic_Blood_Pressure<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Systolic_Blood_Pressure-1\n", + "3240 Systolic_Blood_Pressure<=active_care_plan_length+mean_Systolic_Blood_Pressure\n", + "3241 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "3242 Systolic_Blood_Pressure<=log(device_lifetime_length)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "3243 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure/QOLS\n", + "3244 Systolic_Blood_Pressure<=10^procedures_lifetime+mean_Systolic_Blood_Pressure\n", + "3245 Systolic_Blood_Pressure<=maximum(Body_Height,mean_Systolic_Blood_Pressure)\n", + "3246 Systolic_Blood_Pressure<=floor(10^mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3247 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure^lifetime_conditions\n", + "3248 Systolic_Blood_Pressure<=ceil(Urea_Nitrogen)+mean_Systolic_Blood_Pressure\n", + "3249 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,10^medications_lifetime)\n", + "3250 Systolic_Blood_Pressure<=mean_Estimated_Glomerular_Filtration_Rate+mean_Triglycerides\n", + "3251 Systolic_Blood_Pressure<=mean_Systolic_Blood_Pressure+medications_lifetime_cost\n", + "3252 Systolic_Blood_Pressure<=maximum(medications_lifetime_dispenses,mean_Systolic_Blood_Pressure)\n", + "3253 Systolic_Blood_Pressure<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(Chloride)\n", + "3254 Systolic_Blood_Pressure<=Chloride/encounters_lifetime_perc_covered\n", + "3255 Systolic_Blood_Pressure<=2*active_conditions+mean_Systolic_Blood_Pressure\n", + "3256 Systolic_Blood_Pressure<=-Albumin__Mass_volume__in_Serum,Plasma+2*Low_Density_Lipoprotein_Cholesterol\n", + "3257 Systolic_Blood_Pressure<=Carbon_Dioxide*Hemoglobin_A1c_Hemoglobin_total_in_Blood^2\n", + "3258 Systolic_Blood_Pressure<=10^Globulin__Mass_volume__in_Serum_by_calculation+mean_Potassium\n", + "3259 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,e^medications_lifetime)\n", + "3260 Systolic_Blood_Pressure<=sqrt(QALY)*mean_Carbon_Dioxide\n", + "3261 Systolic_Blood_Pressure<=sqrt(healthcare_coverage)+Estimated_Glomerular_Filtration_Rate\n", + "3262 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,10^DALY)\n", + "3263 Systolic_Blood_Pressure<=10^Albumin__Mass_volume__in_Serum,Plasma/mean_Carbon_Dioxide\n", + "3264 Systolic_Blood_Pressure<=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)*Hemoglobin__Mass_volume__in_Blood\n", + "3265 Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate+2*encounters_count\n", + "3266 Systolic_Blood_Pressure<=Diastolic_Blood_Pressure*sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3267 Systolic_Blood_Pressure<=High_Density_Lipoprotein_Cholesterol+MCV__Entitic_volume__by_Automated_count-1\n", + "3268 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,e^lifetime_conditions)\n", + "3269 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,1/2*medications_lifetime_dispenses)\n", + "3270 Systolic_Blood_Pressure<=Albumin__Mass_volume__in_Serum,Plasma^2*Urea_Nitrogen\n", + "3271 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,2*Heart_rate)\n", + "3272 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,e^active_care_plan_length)\n", + "3273 Systolic_Blood_Pressure<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3274 Systolic_Blood_Pressure<=DALY^2+mean_Systolic_Blood_Pressure\n", + "3275 Systolic_Blood_Pressure<=mean_Estimated_Glomerular_Filtration_Rate+2*medications_lifetime\n", + "3276 Systolic_Blood_Pressure<=10^medications_active+mean_Systolic_Blood_Pressure\n", + "3277 Systolic_Blood_Pressure<=maximum(medications_lifetime_cost,mean_Systolic_Blood_Pressure)\n", + "3278 Systolic_Blood_Pressure<=maximum(mean_Systolic_Blood_Pressure,Sodium-1)\n", + "3279 Systolic_Blood_Pressure<=2*Diastolic_Blood_Pressure-active_care_plans\n", + "3280 Systolic_Blood_Pressure<=1/2*Body_Weight*Potassium\n", + "3281 Systolic_Blood_Pressure<=sqrt(Total_Cholesterol)+mean_Systolic_Blood_Pressure\n", + "3282 Systolic_Blood_Pressure<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3283 Systolic_Blood_Pressure<=Diastolic_Blood_Pressure+e^Leukocytes____volume__in_Blood_by_Automated_count\n", + "3284 Systolic_Blood_Pressure<=log(MCHC__Mass_volume__by_Automated_count)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3285 Systolic_Blood_Pressure>=latitude\n", + "3286 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure-procedures_lifetime_cost\n", + "3287 Systolic_Blood_Pressure>=active_care_plans+procedures_lifetime+1\n", + "3288 Systolic_Blood_Pressure>=-active_care_plan_length+mean_Systolic_Blood_Pressure\n", + "3289 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*immunizations_lifetime_cost)\n", + "3290 Systolic_Blood_Pressure>=(Respiratory_rate+1)*active_care_plans\n", + "3291 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,e^medications_active)\n", + "3292 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,mean_Urea_Nitrogen)\n", + "3293 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure/lifetime_conditions\n", + "3294 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure^QOLS\n", + "3295 Systolic_Blood_Pressure>=log(High_Density_Lipoprotein_Cholesterol)*mean_Carbon_Dioxide\n", + "3296 Systolic_Blood_Pressure>=Diastolic_Blood_Pressure+mean_Carbon_Dioxide-1\n", + "3297 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,-Triglycerides)\n", + "3298 Systolic_Blood_Pressure>=mean_Systolic_Blood_Pressure-medications_lifetime\n", + "3299 Systolic_Blood_Pressure>=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1)*procedures_lifetime\n", + "3300 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3301 Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "3302 Systolic_Blood_Pressure>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Systolic_Blood_Pressure)\n", + "3303 Systolic_Blood_Pressure>=floor(2*device_lifetime_length)\n", + "3304 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "3305 Systolic_Blood_Pressure>=-active_conditions+ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3306 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,10^immunizations_lifetime)\n", + "3307 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,sqrt(medications_lifetime_length))\n", + "3308 Systolic_Blood_Pressure>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-immunizations_lifetime_cost\n", + "3309 Systolic_Blood_Pressure>=2*Creatinine+mean_Diastolic_Blood_Pressure\n", + "3310 Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "3311 Systolic_Blood_Pressure>=sqrt(QALY)*active_conditions\n", + "3312 Systolic_Blood_Pressure>=sqrt(DALY)*Urea_Nitrogen\n", + "3313 Systolic_Blood_Pressure>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1/2*lifetime_care_plan_length\n", + "3314 Systolic_Blood_Pressure>=(Respiratory_rate-1)*medications_active\n", + "3315 Systolic_Blood_Pressure>=2*age-mean_Microalbumin_Creatinine_Ratio\n", + "3316 Systolic_Blood_Pressure>=Body_Mass_Index^2/Urea_Nitrogen\n", + "3317 Systolic_Blood_Pressure>=Heart_rate+2*active_care_plans\n", + "3318 Systolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol+2*Urea_Nitrogen\n", + "3319 Systolic_Blood_Pressure>=Diastolic_Blood_Pressure+floor(Carbon_Dioxide)\n", + "3320 Systolic_Blood_Pressure>=minimum(mean_Systolic_Blood_Pressure,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3321 Systolic_Blood_Pressure>=-Body_Weight+e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3322 Systolic_Blood_Pressure>=2*High_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered\n", + "3323 Systolic_Blood_Pressure>=-immunizations_lifetime_cost+mean_Glucose\n", + "3324 Diastolic_Blood_Pressure<=healthcare_expenses\n", + "3325 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,1/device_lifetime_length)\n", + "3326 Diastolic_Blood_Pressure<=maximum(Sodium,mean_Diastolic_Blood_Pressure)\n", + "3327 Diastolic_Blood_Pressure<=Triglycerides-active_conditions-1\n", + "3328 Diastolic_Blood_Pressure<=10^Creatinine+mean_Diastolic_Blood_Pressure\n", + "3329 Diastolic_Blood_Pressure<=-Creatinine+floor(Chloride)\n", + "3330 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure^lifetime_conditions\n", + "3331 Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,mean_Diastolic_Blood_Pressure)\n", + "3332 Diastolic_Blood_Pressure<=-Body_Height+2*Sodium\n", + "3333 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure+medications_lifetime\n", + "3334 Diastolic_Blood_Pressure<=maximum(medications_lifetime_cost,mean_Diastolic_Blood_Pressure)\n", + "3335 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "3336 Diastolic_Blood_Pressure<=active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "3337 Diastolic_Blood_Pressure<=mean_Diastolic_Blood_Pressure/QOLS\n", + "3338 Diastolic_Blood_Pressure<=sqrt(Microalbumin_Creatinine_Ratio)+mean_Diastolic_Blood_Pressure\n", + "3339 Diastolic_Blood_Pressure<=Total_Cholesterol^2/mean_Microalbumin_Creatinine_Ratio\n", + "3340 Diastolic_Blood_Pressure<=sqrt(Calcium)*QALY\n", + "3341 Diastolic_Blood_Pressure<=-Carbon_Dioxide+Systolic_Blood_Pressure+1\n", + "3342 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,2*encounters_count)\n", + "3343 Diastolic_Blood_Pressure<=MCH__Entitic_mass__by_Automated_count^2/procedures_lifetime\n", + "3344 Diastolic_Blood_Pressure<=Carbon_Dioxide^2/Potassium\n", + "3345 Diastolic_Blood_Pressure<=age+mean_Estimated_Glomerular_Filtration_Rate\n", + "3346 Diastolic_Blood_Pressure<=Systolic_Blood_Pressure-mean_Carbon_Dioxide+1\n", + "3347 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3348 Diastolic_Blood_Pressure<=Carbon_Dioxide*mean_Potassium\n", + "3349 Diastolic_Blood_Pressure<=Glomerular_filtration_rate_1_73_sq_M_predicted*ceil(Urea_Nitrogen)\n", + "3350 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,sqrt(healthcare_coverage))\n", + "3351 Diastolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate+age+1\n", + "3352 Diastolic_Blood_Pressure<=immunizations_lifetime_cost+2*latitude\n", + "3353 Diastolic_Blood_Pressure<=MCV__Entitic_volume__by_Automated_count+immunizations_lifetime_cost-1\n", + "3354 Diastolic_Blood_Pressure<=1/num_allergies+mean_Diastolic_Blood_Pressure\n", + "3355 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,e^active_conditions)\n", + "3356 Diastolic_Blood_Pressure<=2*Creatinine*mean_Diastolic_Blood_Pressure\n", + "3357 Diastolic_Blood_Pressure<=(QOLS+1)^mean_High_Density_Lipoprotein_Cholesterol\n", + "3358 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3359 Diastolic_Blood_Pressure<=ceil(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "3360 Diastolic_Blood_Pressure<=maximum(mean_Diastolic_Blood_Pressure,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3361 Diastolic_Blood_Pressure<=2*Heart_rate-device_lifetime_length\n", + "3362 Diastolic_Blood_Pressure<=Heart_rate+ceil(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3363 Diastolic_Blood_Pressure<=Carbon_Dioxide*ceil(Potassium)\n", + "3364 Diastolic_Blood_Pressure<=Albumin__Mass_volume__in_Serum,Plasma^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3365 Diastolic_Blood_Pressure<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*Low_Density_Lipoprotein_Cholesterol\n", + "3366 Diastolic_Blood_Pressure<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count^2/Platelets____volume__in_Blood_by_Automated_count\n", + "3367 Diastolic_Blood_Pressure<=sqrt(Erythrocytes____volume__in_Blood_by_Automated_count)+mean_Diastolic_Blood_Pressure\n", + "3368 Diastolic_Blood_Pressure>=latitude\n", + "3369 Diastolic_Blood_Pressure>=log(Microalbumin_Creatinine_Ratio)/log(10)+mean_High_Density_Lipoprotein_Cholesterol\n", + "3370 Diastolic_Blood_Pressure>=1/2*Triglycerides*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3371 Diastolic_Blood_Pressure>=-active_conditions+mean_Diastolic_Blood_Pressure\n", + "3372 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure/lifetime_conditions\n", + "3373 Diastolic_Blood_Pressure>=(Creatinine^2)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3374 Diastolic_Blood_Pressure>=lifetime_care_plans^2-active_conditions\n", + "3375 Diastolic_Blood_Pressure>=(log(Body_Weight)/log(10))^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3376 Diastolic_Blood_Pressure>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Diastolic_Blood_Pressure)\n", + "3377 Diastolic_Blood_Pressure>=log(Estimated_Glomerular_Filtration_Rate)/log(10)-longitude\n", + "3378 Diastolic_Blood_Pressure>=log(medications_lifetime_dispenses)*mean_Calcium\n", + "3379 Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "3380 Diastolic_Blood_Pressure>=-active_care_plan_length+mean_Diastolic_Blood_Pressure\n", + "3381 Diastolic_Blood_Pressure>=ceil(age)-medications_lifetime\n", + "3382 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "3383 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure-medications_lifetime\n", + "3384 Diastolic_Blood_Pressure>=-encounters_count+floor(age)\n", + "3385 Diastolic_Blood_Pressure>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/QALY\n", + "3386 Diastolic_Blood_Pressure>=2*floor(MCHC__Mass_volume__by_Automated_count)\n", + "3387 Diastolic_Blood_Pressure>=floor(1/2*Low_Density_Lipoprotein_Cholesterol)\n", + "3388 Diastolic_Blood_Pressure>=-DALY+mean_Diastolic_Blood_Pressure\n", + "3389 Diastolic_Blood_Pressure>=-active_conditions+ceil(active_care_plan_length)\n", + "3390 Diastolic_Blood_Pressure>=mean_Diastolic_Blood_Pressure^QOLS\n", + "3391 Diastolic_Blood_Pressure>=sqrt(High_Density_Lipoprotein_Cholesterol)+active_condition_length\n", + "3392 Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "3393 Diastolic_Blood_Pressure>=sqrt(QALY)*lifetime_care_plans\n", + "3394 Diastolic_Blood_Pressure>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*active_conditions\n", + "3395 Diastolic_Blood_Pressure>=-Leukocytes____volume__in_Blood_by_Automated_count+mean_Diastolic_Blood_Pressure\n", + "3396 Diastolic_Blood_Pressure>=2*medications_active/QOLS\n", + "3397 Diastolic_Blood_Pressure>=log(medications_lifetime)*mean_Carbon_Dioxide/log(10)\n", + "3398 Diastolic_Blood_Pressure>=floor(Glucose)/active_care_plans\n", + "3399 Diastolic_Blood_Pressure>=sqrt(encounters_count)/encounters_lifetime_perc_covered\n", + "3400 Diastolic_Blood_Pressure>=-encounters_count+floor(MCV__Entitic_volume__by_Automated_count)\n", + "3401 Diastolic_Blood_Pressure>=2*encounters_lifetime_perc_covered*latitude\n", + "3402 Diastolic_Blood_Pressure>=Calcium^2-Body_Mass_Index\n", + "3403 Diastolic_Blood_Pressure>=active_care_plans+ceil(active_condition_length)\n", + "3404 Diastolic_Blood_Pressure>=ceil(Protein__Mass_volume__in_Serum,Plasma)+imaging_studies_lifetime\n", + "3405 Diastolic_Blood_Pressure>=minimum(age,1/medications_active)\n", + "3406 Diastolic_Blood_Pressure>=floor(active_condition_length)+medications_active\n", + "3407 Diastolic_Blood_Pressure>=(Triglycerides+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3408 Diastolic_Blood_Pressure>=2*Creatinine*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3409 Diastolic_Blood_Pressure>=MCV__Entitic_volume__by_Automated_count*log(medications_active)/log(10)\n", + "3410 Diastolic_Blood_Pressure>=2*procedures_lifetime/mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3411 Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol-immunizations_lifetime_cost+1\n", + "3412 Diastolic_Blood_Pressure>=sqrt(QOLS)*mean_Diastolic_Blood_Pressure\n", + "3413 Diastolic_Blood_Pressure>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,ceil(QALY))\n", + "3414 Diastolic_Blood_Pressure>=2*DALY+MCH__Entitic_mass__by_Automated_count\n", + "3415 Diastolic_Blood_Pressure>=minimum(mean_Diastolic_Blood_Pressure,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3416 Diastolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol+log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "3417 Diastolic_Blood_Pressure>=-active_condition_length+floor(High_Density_Lipoprotein_Cholesterol)\n", + "3418 Diastolic_Blood_Pressure>=Respiratory_rate*floor(Potassium)\n", + "3419 Diastolic_Blood_Pressure>=1/2*Calcium*Hemoglobin__Mass_volume__in_Blood\n", + "3420 Diastolic_Blood_Pressure>=ceil(MCHC__Mass_volume__by_Automated_count)/QOLS\n", + "3421 Body_Mass_Index<=healthcare_expenses\n", + "3422 Body_Mass_Index<=Respiratory_rate^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3423 Body_Mass_Index<=floor(age)\n", + "3424 Body_Mass_Index<=maximum(medications_lifetime,mean_Body_Mass_Index)\n", + "3425 Body_Mass_Index<=active_care_plans+mean_Body_Mass_Index\n", + "3426 Body_Mass_Index<=maximum(encounters_count,mean_Body_Mass_Index)\n", + "3427 Body_Mass_Index<=1/Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Body_Mass_Index\n", + "3428 Body_Mass_Index<=maximum(active_care_plan_length,mean_Body_Mass_Index)\n", + "3429 Body_Mass_Index<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3430 Body_Mass_Index<=maximum(active_condition_length,mean_Body_Mass_Index)\n", + "3431 Body_Mass_Index<=1/procedures_lifetime+mean_Body_Mass_Index\n", + "3432 Body_Mass_Index<=maximum(Triglycerides,mean_Body_Mass_Index)\n", + "3433 Body_Mass_Index<=mean_Body_Mass_Index+procedures_lifetime\n", + "3434 Body_Mass_Index<=mean_Body_Mass_Index/QOLS\n", + "3435 Body_Mass_Index<=1/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+mean_Body_Mass_Index\n", + "3436 Body_Mass_Index<=maximum(mean_Body_Mass_Index,2*Respiratory_rate)\n", + "3437 Body_Mass_Index<=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported+QALY\n", + "3438 Body_Mass_Index<=maximum(mean_Body_Mass_Index,1/2*age)\n", + "3439 Body_Mass_Index<=maximum(mean_Body_Mass_Index,Leukocytes____volume__in_Blood_by_Automated_count^2)\n", + "3440 Body_Mass_Index<=1/2*Diastolic_Blood_Pressure-active_care_plans\n", + "3441 Body_Mass_Index<=1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3442 Body_Mass_Index<=(log(encounters_lifetime_payer_coverage)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3443 Body_Mass_Index<=maximum(mean_Body_Mass_Index,1/2*medications_lifetime)\n", + "3444 Body_Mass_Index>=longitude\n", + "3445 Body_Mass_Index>=-active_care_plans+mean_Body_Mass_Index\n", + "3446 Body_Mass_Index>=-encounters_lifetime_perc_covered+mean_Body_Mass_Index\n", + "3447 Body_Mass_Index>=healthcare_expenses^longitude\n", + "3448 Body_Mass_Index>=minimum(procedures_lifetime,mean_Body_Mass_Index)\n", + "3449 Body_Mass_Index>=mean_Body_Mass_Index-medications_lifetime\n", + "3450 Body_Mass_Index>=mean_Body_Mass_Index-medications_lifetime_perc_covered\n", + "3451 Body_Mass_Index>=-QOLS+mean_Body_Mass_Index\n", + "3452 Body_Mass_Index>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Mass_Index\n", + "3453 Body_Mass_Index>=maximum(mean_Body_Mass_Index,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3454 Body_Mass_Index>=mean_Body_Mass_Index-medications_active\n", + "3455 Body_Mass_Index>=mean_Body_Mass_Index-procedures_lifetime\n", + "3456 Body_Mass_Index>=mean_Body_Mass_Index^QOLS\n", + "3457 Body_Mass_Index>=minimum(DALY,mean_Body_Mass_Index)\n", + "3458 Body_Mass_Index>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Body_Mass_Index)\n", + "3459 Body_Mass_Index>=Urea_Nitrogen+medications_active\n", + "3460 Body_Mass_Index>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Body_Mass_Index)\n", + "3461 Body_Mass_Index>=minimum(mean_Body_Mass_Index,1/2*QALY)\n", + "3462 Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "3463 Body_Mass_Index>=minimum(mean_Body_Mass_Index,active_care_plans^2)\n", + "3464 Body_Mass_Index>=minimum(mean_Body_Mass_Index,1/2*active_care_plan_length)\n", + "3465 Body_Mass_Index>=log(encounters_lifetime_perc_covered)/log(10)+mean_Body_Mass_Index\n", + "3466 Body_Mass_Index>=minimum(mean_Body_Mass_Index,10^immunizations_lifetime)\n", + "3467 Body_Mass_Index>=mean_Body_Mass_Index+medications_lifetime_perc_covered-1\n", + "3468 Body_Mass_Index>=minimum(mean_Body_Mass_Index,medications_active^2)\n", + "3469 Body_Mass_Index>=mean_Body_Mass_Index^num_allergies\n", + "3470 Body_Mass_Index>=mean_Body_Mass_Index/lifetime_conditions\n", + "3471 Body_Mass_Index>=-Potassium+floor(MCH__Entitic_mass__by_Automated_count)\n", + "3472 Body_Weight<=healthcare_expenses\n", + "3473 Body_Weight<=active_care_plans+mean_Body_Weight\n", + "3474 Body_Weight<=sqrt(QOLS)+mean_Body_Weight\n", + "3475 Body_Weight<=maximum(lifetime_condition_length,mean_Body_Weight)\n", + "3476 Body_Weight<=maximum(medications_lifetime,mean_Body_Weight)\n", + "3477 Body_Weight<=maximum(Triglycerides,mean_Body_Weight)\n", + "3478 Body_Weight<=mean_Body_Weight+medications_lifetime\n", + "3479 Body_Weight<=mean_Body_Weight+procedures_lifetime\n", + "3480 Body_Weight<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Body_Weight)\n", + "3481 Body_Weight<=mean_Body_Weight^lifetime_conditions\n", + "3482 Body_Weight<=maximum(mean_Body_Weight,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3483 Body_Weight<=mean_Body_Weight/QOLS\n", + "3484 Body_Weight<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3485 Body_Weight<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count*QOLS\n", + "3486 Body_Weight<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Weight)\n", + "3487 Body_Weight<=2*encounters_lifetime_perc_covered+mean_Body_Weight\n", + "3488 Body_Weight<=maximum(mean_Body_Weight,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3489 Body_Weight<=1/Protein__Mass_volume__in_Serum,Plasma+mean_Body_Weight\n", + "3490 Body_Weight<=2*QOLS+mean_Body_Weight\n", + "3491 Body_Weight<=QALY+1/2*Systolic_Blood_Pressure\n", + "3492 Body_Weight<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+active_care_plans\n", + "3493 Body_Weight>=latitude\n", + "3494 Body_Weight>=floor(mean_Body_Weight)\n", + "3495 Body_Weight>=healthcare_expenses^longitude\n", + "3496 Body_Weight>=mean_Body_Weight^num_allergies\n", + "3497 Body_Weight>=minimum(active_care_plan_length,mean_Body_Weight)\n", + "3498 Body_Weight>=mean_Body_Weight/lifetime_conditions\n", + "3499 Body_Weight>=minimum(MCV__Entitic_volume__by_Automated_count,mean_Body_Weight)\n", + "3500 Body_Weight>=-mean_Carbon_Dioxide+procedures_lifetime\n", + "3501 Body_Weight>=mean_Body_Weight-medications_lifetime\n", + "3502 Body_Weight>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Body_Weight)\n", + "3503 Body_Weight>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Weight\n", + "3504 Body_Weight>=-active_care_plans+mean_Body_Weight\n", + "3505 Body_Weight>=mean_Body_Weight-medications_active\n", + "3506 Body_Weight>=mean_Body_Weight-procedures_lifetime\n", + "3507 Body_Weight>=mean_Body_Weight^QOLS\n", + "3508 Body_Weight>=log(QOLS)+mean_Body_Weight\n", + "3509 Body_Weight>=minimum(mean_Body_Weight,2*DALY)\n", + "3510 Body_Weight>=maximum(mean_Body_Weight,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3511 Body_Weight>=2*Heart_rate/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3512 Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "3513 Body_Weight>=minimum(mean_Body_Weight,-longitude)\n", + "3514 Body_Weight>=minimum(mean_Body_Weight,10^immunizations_lifetime)\n", + "3515 Body_Weight>=(active_conditions-1)*Potassium\n", + "3516 Body_Weight>=minimum(mean_Body_Weight,1/2*immunizations_lifetime_cost)\n", + "3517 Body_Weight>=minimum(mean_Body_Weight,1/2*Systolic_Blood_Pressure)\n", + "3518 Body_Weight>=minimum(mean_Body_Weight,1/medications_lifetime_perc_covered)\n", + "3519 Body_Weight>=minimum(mean_Body_Weight,e^medications_active)\n", + "3520 Body_Weight>=floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)*mean_Body_Weight\n", + "3521 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "3522 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "3523 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_condition_length\n", + "3524 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*encounters_count\n", + "3525 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_care_plan_length,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3526 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions^2\n", + "3527 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3528 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime\n", + "3529 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "3530 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3531 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^Creatinine)\n", + "3532 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(sqrt(encounters_count))\n", + "3533 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(DALY,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3534 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "3535 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(healthcare_expenses,ceil(DXA__T_score__Bone_density))\n", + "3536 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(QALY,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3537 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(active_condition_length^2)^QOLS\n", + "3538 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Creatinine+floor(Body_Mass_Index)\n", + "3539 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/2*active_conditions)\n", + "3540 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+active_conditions\n", + "3541 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,e^Creatinine)\n", + "3542 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions/num_allergies\n", + "3543 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Sodium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3544 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(medications_lifetime,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3545 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "3546 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,floor(DALY))\n", + "3547 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(immunizations_lifetime_cost-1)^Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3548 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1)\n", + "3549 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost+medications_lifetime_dispenses\n", + "3550 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=High_Density_Lipoprotein_Cholesterol-MCH__Entitic_mass__by_Automated_count\n", + "3551 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+medications_active\n", + "3552 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_conditions,medications_active)\n", + "3553 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime_cost+procedures_lifetime\n", + "3554 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-active_care_plans+ceil(Urea_Nitrogen)\n", + "3555 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*e^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3556 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^floor(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3557 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Carbon_Dioxide-active_conditions-1\n", + "3558 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(immunizations_lifetime_cost-1)^mean_Estimated_Glomerular_Filtration_Rate\n", + "3559 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Body_Mass_Index+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "3560 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(Sodium)\n", + "3561 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,10^medications_active)\n", + "3562 Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,floor(Potassium))\n", + "3563 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "3564 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies\n", + "3565 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*num_allergies\n", + "3566 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(imaging_studies_lifetime)\n", + "3567 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime-1\n", + "3568 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "3569 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(Creatinine)*num_allergies\n", + "3570 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime_cost\n", + "3571 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime_dispenses\n", + "3572 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-Microalbumin_Creatinine_Ratio\n", + "3573 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+procedures_lifetime\n", + "3574 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=lifetime_care_plans^2-mean_Glucose\n", + "3575 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime\n", + "3576 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-QOLS+medications_lifetime_perc_covered\n", + "3577 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Creatinine)\n", + "3578 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Heart_rate+floor(active_condition_length)\n", + "3579 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(device_lifetime_length)-mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3580 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3581 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-active_care_plans+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3582 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-DALY+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3583 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-2\n", + "3584 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3585 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(-immunizations_lifetime)^Urea_Nitrogen\n", + "3586 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=ceil(medications_lifetime_perc_covered)-immunizations_lifetime\n", + "3587 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-medications_active+2*medications_lifetime_perc_covered\n", + "3588 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported^Bilirubin_total__Mass_volume__in_Urine_by_Test_strip\n", + "3589 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(log(procedures_lifetime)/log(10))\n", + "3590 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3591 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=medications_active^Hemoglobin_gastrointestinal__Presence__in_Stool_by_Immunologic_method\n", + "3592 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=medications_active^History_of_Hospitalizations_Outpatient_visits\n", + "3593 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "3594 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+floor(Albumin__Mass_volume__in_Serum,Plasma)\n", + "3595 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(2*QOLS)^pH_of_Urine_by_Test_strip\n", + "3596 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(num_allergies-1)^Body_Weight\n", + "3597 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*active_care_plans\n", + "3598 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(QOLS)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "3599 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*DALY-encounters_count\n", + "3600 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*imaging_studies_lifetime/active_care_plans\n", + "3601 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*num_allergies\n", + "3602 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,immunizations_lifetime-1)\n", + "3603 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Chloride+procedures_lifetime+1\n", + "3604 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)-immunizations_lifetime_cost\n", + "3605 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-active_conditions\n", + "3606 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Leukocytes____volume__in_Blood_by_Automated_count^2-Chloride\n", + "3607 Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Erythrocytes____volume__in_Blood_by_Automated_count-medications_lifetime\n", + "3608 Body_Height<=healthcare_expenses\n", + "3609 Body_Height<=ceil(mean_Body_Height)\n", + "3610 Body_Height<=maximum(lifetime_condition_length,mean_Body_Height)\n", + "3611 Body_Height<=1/healthcare_expenses+mean_Body_Height\n", + "3612 Body_Height<=Platelets____volume__in_Blood_by_Automated_count+QOLS\n", + "3613 Body_Height<=mean_Body_Height/num_allergies\n", + "3614 Body_Height<=active_care_plans+mean_Body_Height\n", + "3615 Body_Height<=mean_Body_Height+medications_lifetime_perc_covered\n", + "3616 Body_Height<=mean_Body_Height+procedures_lifetime\n", + "3617 Body_Height<=mean_Body_Height/QOLS\n", + "3618 Body_Height<=maximum(mean_Body_Height,10^Globulin__Mass_volume__in_Serum_by_calculation)\n", + "3619 Body_Height<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Body_Height\n", + "3620 Body_Height<=maximum(Total_Cholesterol,mean_Body_Height)\n", + "3621 Body_Height<=maximum(mean_Body_Height,sqrt(healthcare_coverage))\n", + "3622 Body_Height<=maximum(mean_Body_Height,2*Low_Density_Lipoprotein_Cholesterol)\n", + "3623 Body_Height<=maximum(mean_Body_Height,10^procedures_lifetime)\n", + "3624 Body_Height<=maximum(mean_Body_Height,e^procedures_lifetime)\n", + "3625 Body_Height>=latitude\n", + "3626 Body_Height>=floor(mean_Body_Height)\n", + "3627 Body_Height>=healthcare_expenses^longitude\n", + "3628 Body_Height>=mean_Body_Height-medications_active\n", + "3629 Body_Height>=minimum(immunizations_lifetime_cost,mean_Body_Height)\n", + "3630 Body_Height>=mean_Body_Height^num_allergies\n", + "3631 Body_Height>=-active_care_plans+mean_Body_Height\n", + "3632 Body_Height>=minimum(lifetime_care_plan_length,mean_Body_Height)\n", + "3633 Body_Height>=1/longitude+mean_Body_Height\n", + "3634 Body_Height>=-immunizations_lifetime+mean_Body_Height\n", + "3635 Body_Height>=mean_Body_Height-medications_lifetime\n", + "3636 Body_Height>=mean_Body_Height-medications_lifetime_perc_covered\n", + "3637 Body_Height>=mean_Body_Height-procedures_lifetime\n", + "3638 Body_Height>=mean_Body_Height^QOLS\n", + "3639 Body_Height>=minimum(Triglycerides,mean_Body_Height)\n", + "3640 Body_Height>=minimum(Systolic_Blood_Pressure,mean_Body_Height)\n", + "3641 Body_Height>=minimum(Microalbumin_Creatinine_Ratio,mean_Body_Height)\n", + "3642 Body_Height>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Body_Height)\n", + "3643 Body_Height>=minimum(mean_Body_Height,mean_Calcium)\n", + "3644 Body_Height>=minimum(mean_Body_Height,mean_Estimated_Glomerular_Filtration_Rate)\n", + "3645 Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "3646 Body_Height>=minimum(mean_Body_Height,2*age)\n", + "3647 Body_Height>=minimum(mean_Body_Height,lifetime_conditions^2)\n", + "3648 Triglycerides<=healthcare_expenses\n", + "3649 Triglycerides<=1/2*Microalbumin_Creatinine_Ratio+mean_Triglycerides\n", + "3650 Triglycerides<=maximum(mean_Triglycerides,e^active_conditions)\n", + "3651 Triglycerides<=Microalbumin_Creatinine_Ratio^2*mean_Potassium\n", + "3652 Triglycerides<=mean_Triglycerides^active_conditions\n", + "3653 Triglycerides<=maximum(mean_Triglycerides,medications_lifetime^2)\n", + "3654 Triglycerides<=e^mean_Calcium/DALY\n", + "3655 Triglycerides<=healthcare_coverage+mean_Triglycerides\n", + "3656 Triglycerides<=mean_Triglycerides+medications_lifetime\n", + "3657 Triglycerides<=maximum(Body_Height,2*mean_Microalbumin_Creatinine_Ratio)\n", + "3658 Triglycerides<=maximum(medications_lifetime_cost,mean_Triglycerides)\n", + "3659 Triglycerides<=maximum(mean_Triglycerides,1/imaging_studies_lifetime)\n", + "3660 Triglycerides<=mean_Triglycerides/QOLS\n", + "3661 Triglycerides<=maximum(medications_lifetime_dispenses,mean_Triglycerides)\n", + "3662 Triglycerides<=active_care_plan_length+mean_Triglycerides\n", + "3663 Triglycerides<=10^medications_active*mean_Triglycerides\n", + "3664 Triglycerides<=Glucose+1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "3665 Triglycerides<=ceil(Creatinine)*mean_Triglycerides\n", + "3666 Triglycerides<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*QALY\n", + "3667 Triglycerides<=age*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "3668 Triglycerides<=10^procedures_lifetime+mean_Triglycerides\n", + "3669 Triglycerides<=mean_Triglycerides+procedures_lifetime_cost\n", + "3670 Triglycerides<=(1/medications_lifetime_perc_covered)^QALY\n", + "3671 Triglycerides<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Triglycerides\n", + "3672 Triglycerides<=Creatinine*e^Estimated_Glomerular_Filtration_Rate\n", + "3673 Triglycerides<=(10^mean_Estimated_Glomerular_Filtration_Rate)^QOLS\n", + "3674 Triglycerides<=Urea_Nitrogen*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3675 Triglycerides<=2*Respiratory_rate+mean_Triglycerides\n", + "3676 Triglycerides<=1/2*Estimated_Glomerular_Filtration_Rate*mean_Glucose\n", + "3677 Triglycerides<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Estimated_Glomerular_Filtration_Rate\n", + "3678 Triglycerides<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Triglycerides\n", + "3679 Triglycerides<=maximum(mean_Triglycerides,encounters_count^2)\n", + "3680 Triglycerides<=Respiratory_rate*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3681 Triglycerides<=2*Diastolic_Blood_Pressure/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3682 Triglycerides<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/procedures_lifetime\n", + "3683 Triglycerides<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^Calcium\n", + "3684 Triglycerides>=latitude\n", + "3685 Triglycerides>=sqrt(healthcare_coverage)^medications_lifetime_perc_covered\n", + "3686 Triglycerides>=1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "3687 Triglycerides>=mean_Triglycerides^num_allergies\n", + "3688 Triglycerides>=-encounters_count+mean_Triglycerides\n", + "3689 Triglycerides>=mean_Triglycerides^QOLS\n", + "3690 Triglycerides>=active_conditions+age\n", + "3691 Triglycerides>=DALY+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1\n", + "3692 Triglycerides>=QALY*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3693 Triglycerides>=mean_Triglycerides/active_conditions\n", + "3694 Triglycerides>=-healthcare_expenses\n", + "3695 Triglycerides>=minimum(mean_Triglycerides,10^device_lifetime_length)\n", + "3696 Triglycerides>=minimum(mean_Triglycerides,sqrt(medications_lifetime_length))\n", + "3697 Triglycerides>=Globulin__Mass_volume__in_Serum_by_calculation*floor(device_lifetime_length)\n", + "3698 Triglycerides>=1/2*medications_lifetime/active_care_plans\n", + "3699 Triglycerides>=Glucose^2/Systolic_Blood_Pressure\n", + "3700 Triglycerides>=healthcare_expenses^longitude\n", + "3701 Triglycerides>=minimum(mean_Triglycerides,mean_Urea_Nitrogen)\n", + "3702 Triglycerides>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/QOLS\n", + "3703 Triglycerides>=Systolic_Blood_Pressure-encounters_count-1\n", + "3704 Triglycerides>=2*lifetime_care_plan_length/Potassium\n", + "3705 Triglycerides>=1/2*active_care_plan_length/QOLS\n", + "3706 Triglycerides>=-healthcare_coverage+mean_Triglycerides\n", + "3707 Triglycerides>=2*QALY-immunizations_lifetime_cost\n", + "3708 Triglycerides>=minimum(encounters_count,1/medications_lifetime_perc_covered)\n", + "3709 Triglycerides>=minimum(mean_Triglycerides,e^medications_active)\n", + "3710 Triglycerides>=Estimated_Glomerular_Filtration_Rate-mean_Urea_Nitrogen-1\n", + "3711 Triglycerides>=-lifetime_care_plan_length+mean_Triglycerides\n", + "3712 Triglycerides>=2*age-mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3713 Triglycerides>=mean_Triglycerides-medications_lifetime_cost\n", + "3714 Triglycerides>=active_conditions*floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "3715 Triglycerides>=minimum(mean_Microalbumin_Creatinine_Ratio,1/medications_active)\n", + "3716 Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "3717 Triglycerides>=1/2*lifetime_care_plan_length-mean_Respiratory_rate\n", + "3718 Triglycerides>=sqrt(encounters_lifetime_total_cost)-mean_Microalbumin_Creatinine_Ratio\n", + "3719 Triglycerides>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Sodium+1\n", + "3720 Triglycerides>=2*Systolic_Blood_Pressure-Total_Cholesterol\n", + "3721 Triglycerides>=-Low_Density_Lipoprotein_Cholesterol+mean_Total_Cholesterol\n", + "3722 Triglycerides>=(2*medications_lifetime_perc_covered)^mean_Calcium\n", + "3723 Triglycerides>=minimum(mean_Triglycerides,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3724 Triglycerides>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Glucose\n", + "3725 Triglycerides>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*mean_Creatinine\n", + "3726 Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "3727 Low_Density_Lipoprotein_Cholesterol<=floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2)\n", + "3728 Low_Density_Lipoprotein_Cholesterol<=Glucose+QALY+1\n", + "3729 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,1/device_lifetime_length)\n", + "3730 Low_Density_Lipoprotein_Cholesterol<=minimum(healthcare_expenses,2*Body_temperature)\n", + "3731 Low_Density_Lipoprotein_Cholesterol<=2*Diastolic_Blood_Pressure+QOLS\n", + "3732 Low_Density_Lipoprotein_Cholesterol<=healthcare_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3733 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol^active_conditions\n", + "3734 Low_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3735 Low_Density_Lipoprotein_Cholesterol<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted*encounters_count\n", + "3736 Low_Density_Lipoprotein_Cholesterol<=sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)+Sodium\n", + "3737 Low_Density_Lipoprotein_Cholesterol<=ceil(Creatinine)*mean_Low_Density_Lipoprotein_Cholesterol\n", + "3738 Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_cost,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3739 Low_Density_Lipoprotein_Cholesterol<=10^QOLS*Systolic_Blood_Pressure\n", + "3740 Low_Density_Lipoprotein_Cholesterol<=mean_Low_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "3741 Low_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide+mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "3742 Low_Density_Lipoprotein_Cholesterol<=MCH__Entitic_mass__by_Automated_count+Systolic_Blood_Pressure\n", + "3743 Low_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3744 Low_Density_Lipoprotein_Cholesterol<=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3745 Low_Density_Lipoprotein_Cholesterol<=1/2*Sodium+mean_Body_Weight\n", + "3746 Low_Density_Lipoprotein_Cholesterol<=e^active_care_plans+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3747 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,medications_lifetime^2)\n", + "3748 Low_Density_Lipoprotein_Cholesterol<=lifetime_condition_length^2/Microalbumin_Creatinine_Ratio\n", + "3749 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Triglycerides)\n", + "3750 Low_Density_Lipoprotein_Cholesterol<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3751 Low_Density_Lipoprotein_Cholesterol<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/Globulin__Mass_volume__in_Serum_by_calculation\n", + "3752 Low_Density_Lipoprotein_Cholesterol<=Chloride+mean_Glomerular_filtration_rate_1_73_sq_M_predicted-1\n", + "3753 Low_Density_Lipoprotein_Cholesterol<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*QALY\n", + "3754 Low_Density_Lipoprotein_Cholesterol<=1/2*Diastolic_Blood_Pressure*Potassium\n", + "3755 Low_Density_Lipoprotein_Cholesterol<=Albumin__Mass_volume__in_Serum,Plasma+mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "3756 Low_Density_Lipoprotein_Cholesterol<=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)^Albumin__Mass_volume__in_Serum,Plasma\n", + "3757 Low_Density_Lipoprotein_Cholesterol<=maximum(mean_Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "3758 Low_Density_Lipoprotein_Cholesterol<=log(MCH__Entitic_mass__by_Automated_count)^Potassium\n", + "3759 Low_Density_Lipoprotein_Cholesterol<=sqrt(Body_Mass_Index)*mean_Body_Mass_Index\n", + "3760 Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "3761 Low_Density_Lipoprotein_Cholesterol>=active_conditions^2-mean_Total_Cholesterol\n", + "3762 Low_Density_Lipoprotein_Cholesterol>=Total_Cholesterol-mean_Systolic_Blood_Pressure+1\n", + "3763 Low_Density_Lipoprotein_Cholesterol>=Urea_Nitrogen*log(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "3764 Low_Density_Lipoprotein_Cholesterol>=1/2*Creatinine*MCHC__Mass_volume__by_Automated_count\n", + "3765 Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "3766 Low_Density_Lipoprotein_Cholesterol>=QALY*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "3767 Low_Density_Lipoprotein_Cholesterol>=2*Diastolic_Blood_Pressure/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3768 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^num_allergies\n", + "3769 Low_Density_Lipoprotein_Cholesterol>=-healthcare_coverage+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3770 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,e^medications_active)\n", + "3771 Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "3772 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "3773 Low_Density_Lipoprotein_Cholesterol>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*mean_Glucose\n", + "3774 Low_Density_Lipoprotein_Cholesterol>=Total_Cholesterol-Triglycerides+1\n", + "3775 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol-medications_lifetime\n", + "3776 Low_Density_Lipoprotein_Cholesterol>=minimum(active_care_plan_length,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3777 Low_Density_Lipoprotein_Cholesterol>=-Glomerular_filtration_rate_1_73_sq_M_predicted+1/2*lifetime_care_plan_length\n", + "3778 Low_Density_Lipoprotein_Cholesterol>=e^Potassium+longitude\n", + "3779 Low_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(DALY)\n", + "3780 Low_Density_Lipoprotein_Cholesterol>=minimum(Glucose,1/medications_active)\n", + "3781 Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "3782 Low_Density_Lipoprotein_Cholesterol>=minimum(procedures_lifetime,Glucose+1)\n", + "3783 Low_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "3784 Low_Density_Lipoprotein_Cholesterol>=-Hemoglobin__Mass_volume__in_Blood+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3785 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol/active_conditions\n", + "3786 Low_Density_Lipoprotein_Cholesterol>=-mean_Body_Mass_Index+mean_Low_Density_Lipoprotein_Cholesterol\n", + "3787 Low_Density_Lipoprotein_Cholesterol>=ceil(lifetime_care_plan_length)^medications_lifetime_perc_covered\n", + "3788 Low_Density_Lipoprotein_Cholesterol>=Glucose-procedures_lifetime_cost\n", + "3789 Low_Density_Lipoprotein_Cholesterol>=1/2*Body_Mass_Index*Potassium\n", + "3790 Low_Density_Lipoprotein_Cholesterol>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+procedures_lifetime-1\n", + "3791 Low_Density_Lipoprotein_Cholesterol>=sqrt(Body_Height)/QOLS\n", + "3792 Low_Density_Lipoprotein_Cholesterol>=minimum(QALY,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3793 Low_Density_Lipoprotein_Cholesterol>=mean_Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "3794 Low_Density_Lipoprotein_Cholesterol>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+floor(Chloride)\n", + "3795 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,2*device_lifetime_length)\n", + "3796 Low_Density_Lipoprotein_Cholesterol>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)*procedures_lifetime\n", + "3797 Low_Density_Lipoprotein_Cholesterol>=-Microalbumin_Creatinine_Ratio+mean_Microalbumin_Creatinine_Ratio\n", + "3798 Low_Density_Lipoprotein_Cholesterol>=minimum(Glucose,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "3799 Low_Density_Lipoprotein_Cholesterol>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3800 Low_Density_Lipoprotein_Cholesterol>=DALY*log(Urea_Nitrogen)\n", + "3801 Low_Density_Lipoprotein_Cholesterol>=(medications_lifetime+1)^num_allergies\n", + "3802 Low_Density_Lipoprotein_Cholesterol>=(Globulin__Mass_volume__in_Serum_by_calculation-1)*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3803 High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "3804 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "3805 High_Density_Lipoprotein_Cholesterol<=ceil(mean_Chloride)-mean_Carbon_Dioxide\n", + "3806 High_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "3807 High_Density_Lipoprotein_Cholesterol<=active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "3808 High_Density_Lipoprotein_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Heart_rate\n", + "3809 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol+procedures_lifetime_cost\n", + "3810 High_Density_Lipoprotein_Cholesterol<=1/2*MCHC__Mass_volume__by_Automated_count*Potassium\n", + "3811 High_Density_Lipoprotein_Cholesterol<=-age+mean_Body_Height-1\n", + "3812 High_Density_Lipoprotein_Cholesterol<=QALY*log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "3813 High_Density_Lipoprotein_Cholesterol<=healthcare_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "3814 High_Density_Lipoprotein_Cholesterol<=maximum(Sodium,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3815 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "3816 High_Density_Lipoprotein_Cholesterol<=maximum(lifetime_condition_length,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3817 High_Density_Lipoprotein_Cholesterol<=Urea_Nitrogen+mean_High_Density_Lipoprotein_Cholesterol\n", + "3818 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol^active_conditions\n", + "3819 High_Density_Lipoprotein_Cholesterol<=Leukocytes____volume__in_Blood_by_Automated_count+mean_High_Density_Lipoprotein_Cholesterol-1\n", + "3820 High_Density_Lipoprotein_Cholesterol<=maximum(mean_High_Density_Lipoprotein_Cholesterol,medications_lifetime^2)\n", + "3821 High_Density_Lipoprotein_Cholesterol<=mean_High_Density_Lipoprotein_Cholesterol/medications_lifetime_perc_covered\n", + "3822 High_Density_Lipoprotein_Cholesterol<=10^immunizations_lifetime+Protein__Mass_volume__in_Serum,Plasma\n", + "3823 High_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_length,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3824 High_Density_Lipoprotein_Cholesterol<=2*Platelets____volume__in_Blood_by_Automated_count/procedures_lifetime\n", + "3825 High_Density_Lipoprotein_Cholesterol<=log(device_lifetime_length)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "3826 High_Density_Lipoprotein_Cholesterol<=Glucose+mean_Calcium\n", + "3827 High_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "3828 High_Density_Lipoprotein_Cholesterol<=1/2*Diastolic_Blood_Pressure+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "3829 High_Density_Lipoprotein_Cholesterol<=log(MCV__Entitic_volume__by_Automated_count)/log(10)+Heart_rate\n", + "3830 High_Density_Lipoprotein_Cholesterol<=Creatinine*e^Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3831 High_Density_Lipoprotein_Cholesterol<=ceil(DALY)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3832 High_Density_Lipoprotein_Cholesterol<=log(Estimated_Glomerular_Filtration_Rate)/log(10)+mean_Body_Weight\n", + "3833 High_Density_Lipoprotein_Cholesterol<=(active_conditions+1)*Microalbumin_Creatinine_Ratio\n", + "3834 High_Density_Lipoprotein_Cholesterol<=(1/medications_lifetime_perc_covered)^mean_Carbon_Dioxide\n", + "3835 High_Density_Lipoprotein_Cholesterol<=2*QOLS*Total_Cholesterol\n", + "3836 High_Density_Lipoprotein_Cholesterol<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/active_care_plans\n", + "3837 High_Density_Lipoprotein_Cholesterol<=1/2*Carbon_Dioxide+Heart_rate\n", + "3838 High_Density_Lipoprotein_Cholesterol<=mean_Body_Mass_Index^2/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3839 High_Density_Lipoprotein_Cholesterol<=ceil(mean_Creatinine)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3840 High_Density_Lipoprotein_Cholesterol>=longitude\n", + "3841 High_Density_Lipoprotein_Cholesterol>=minimum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_High_Density_Lipoprotein_Cholesterol)\n", + "3842 High_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-Systolic_Blood_Pressure+1\n", + "3843 High_Density_Lipoprotein_Cholesterol>=MCH__Entitic_mass__by_Automated_count+1\n", + "3844 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^num_allergies\n", + "3845 High_Density_Lipoprotein_Cholesterol>=DALY+log(immunizations_lifetime_cost)\n", + "3846 High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "3847 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol-medications_lifetime\n", + "3848 High_Density_Lipoprotein_Cholesterol>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(active_conditions)/log(10)\n", + "3849 High_Density_Lipoprotein_Cholesterol>=-active_care_plan_length+mean_High_Density_Lipoprotein_Cholesterol\n", + "3850 High_Density_Lipoprotein_Cholesterol>=-active_conditions+mean_High_Density_Lipoprotein_Cholesterol\n", + "3851 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol/active_conditions\n", + "3852 High_Density_Lipoprotein_Cholesterol>=2*procedures_lifetime/Creatinine\n", + "3853 High_Density_Lipoprotein_Cholesterol>=-healthcare_coverage+mean_High_Density_Lipoprotein_Cholesterol\n", + "3854 High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "3855 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,mean_Potassium)\n", + "3856 High_Density_Lipoprotein_Cholesterol>=sqrt(Urea_Nitrogen)/QOLS\n", + "3857 High_Density_Lipoprotein_Cholesterol>=mean_High_Density_Lipoprotein_Cholesterol^QOLS\n", + "3858 High_Density_Lipoprotein_Cholesterol>=sqrt(QOLS)*mean_High_Density_Lipoprotein_Cholesterol\n", + "3859 High_Density_Lipoprotein_Cholesterol>=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+Carbon_Dioxide\n", + "3860 High_Density_Lipoprotein_Cholesterol>=-Calcium+mean_High_Density_Lipoprotein_Cholesterol\n", + "3861 High_Density_Lipoprotein_Cholesterol>=(2*Bilirubin_total__Mass_volume__in_Serum,Plasma)^mean_Potassium\n", + "3862 High_Density_Lipoprotein_Cholesterol>=-Erythrocytes____volume__in_Blood_by_Automated_count+mean_High_Density_Lipoprotein_Cholesterol\n", + "3863 High_Density_Lipoprotein_Cholesterol>=2*Erythrocytes____volume__in_Blood_by_Automated_count/encounters_lifetime_perc_covered\n", + "3864 High_Density_Lipoprotein_Cholesterol>=sqrt(medications_lifetime)+mean_Respiratory_rate\n", + "3865 High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "3866 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,-Estimated_Glomerular_Filtration_Rate)\n", + "3867 High_Density_Lipoprotein_Cholesterol>=sqrt(DALY)*Leukocytes____volume__in_Blood_by_Automated_count\n", + "3868 High_Density_Lipoprotein_Cholesterol>=-Diastolic_Blood_Pressure+Estimated_Glomerular_Filtration_Rate-1\n", + "3869 High_Density_Lipoprotein_Cholesterol>=-Triglycerides+2*age\n", + "3870 High_Density_Lipoprotein_Cholesterol>=(1/2*Platelets____volume__in_Blood_by_Automated_count)^medications_lifetime_perc_covered\n", + "3871 High_Density_Lipoprotein_Cholesterol>=Creatinine*sqrt(lifetime_care_plans)\n", + "3872 High_Density_Lipoprotein_Cholesterol>=1/2*encounters_count/mean_Creatinine\n", + "3873 High_Density_Lipoprotein_Cholesterol>=(device_lifetime_length+1)*mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3874 High_Density_Lipoprotein_Cholesterol>=Carbon_Dioxide+Potassium\n", + "3875 High_Density_Lipoprotein_Cholesterol>=minimum(mean_High_Density_Lipoprotein_Cholesterol,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3876 High_Density_Lipoprotein_Cholesterol>=1/QOLS+DALY\n", + "3877 Creatinine<=healthcare_expenses\n", + "3878 Creatinine<=Globulin__Mass_volume__in_Serum_by_calculation+procedures_lifetime\n", + "3879 Creatinine<=maximum(mean_Creatinine,10^DALY)\n", + "3880 Creatinine<=Urea_Nitrogen^2-Estimated_Glomerular_Filtration_Rate\n", + "3881 Creatinine<=mean_Creatinine+medications_lifetime\n", + "3882 Creatinine<=maximum(Microalbumin_Creatinine_Ratio,log(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "3883 Creatinine<=Erythrocytes____volume__in_Blood_by_Automated_count\n", + "3884 Creatinine<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+e^procedures_lifetime\n", + "3885 Creatinine<=maximum(procedures_lifetime,Albumin__Mass_volume__in_Serum,Plasma)\n", + "3886 Creatinine<=floor(mean_Carbon_Dioxide)\n", + "3887 Creatinine<=active_care_plans^2+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3888 Creatinine<=1/2*e^mean_Creatinine\n", + "3889 Creatinine<=1/2*Urea_Nitrogen+immunizations_lifetime_cost\n", + "3890 Creatinine<=(log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^Albumin__Mass_volume__in_Serum,Plasma\n", + "3891 Creatinine<=2*mean_Creatinine^2\n", + "3892 Creatinine<=(active_care_plan_length-1)*QOLS\n", + "3893 Creatinine<=maximum(Triglycerides,mean_Creatinine)\n", + "3894 Creatinine<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2/lifetime_condition_length\n", + "3895 Creatinine<=medications_lifetime/medications_active\n", + "3896 Creatinine<=sqrt(Estimated_Glomerular_Filtration_Rate)/num_allergies\n", + "3897 Creatinine<=maximum(mean_Potassium,procedures_lifetime^2)\n", + "3898 Creatinine<=active_conditions*mean_Creatinine\n", + "3899 Creatinine<=maximum(QALY,mean_Creatinine)\n", + "3900 Creatinine<=maximum(mean_Creatinine,sqrt(medications_lifetime))\n", + "3901 Creatinine<=maximum(medications_lifetime,mean_Creatinine)\n", + "3902 Creatinine<=maximum(procedures_lifetime,sqrt(Body_Mass_Index))\n", + "3903 Creatinine<=healthcare_coverage+mean_Creatinine\n", + "3904 Creatinine<=1/2*medications_lifetime_dispenses/MCV__Entitic_volume__by_Automated_count\n", + "3905 Creatinine<=QOLS/imaging_studies_lifetime\n", + "3906 Creatinine<=mean_Creatinine^pH_of_Urine_by_Test_strip\n", + "3907 Creatinine<=encounters_count*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)\n", + "3908 Creatinine<=(log(age)/log(10))^mean_Creatinine\n", + "3909 Creatinine<=maximum(DALY,ceil(Potassium))\n", + "3910 Creatinine<=(log(Glucose)/log(10))^mean_Creatinine\n", + "3911 Creatinine<=Globulin__Mass_volume__in_Serum_by_calculation/num_allergies\n", + "3912 Creatinine<=log(Erythrocytes____volume__in_Blood_by_Automated_count)*mean_Creatinine\n", + "3913 Creatinine<=2*MCV__Entitic_volume__by_Automated_count/active_care_plan_length\n", + "3914 Creatinine<=log(MCH__Entitic_mass__by_Automated_count)*mean_Creatinine/log(10)\n", + "3915 Creatinine<=10^Leukocytes____volume__in_Blood_by_Automated_count/medications_lifetime_dispenses\n", + "3916 Creatinine<=10^medications_active+mean_Creatinine\n", + "3917 Creatinine>=longitude\n", + "3918 Creatinine>=-healthcare_expenses\n", + "3919 Creatinine>=mean_Creatinine/active_care_plans\n", + "3920 Creatinine>=mean_Creatinine/active_conditions\n", + "3921 Creatinine>=1/2*num_allergies\n", + "3922 Creatinine>=(num_allergies-1)^Body_Weight\n", + "3923 Creatinine>=minimum(mean_Creatinine,-Triglycerides)\n", + "3924 Creatinine>=1/2*ceil(encounters_lifetime_perc_covered)\n", + "3925 Creatinine>=1/2*QOLS\n", + "3926 Creatinine>=sqrt(lifetime_condition_length)-mean_Carbon_Dioxide\n", + "3927 Creatinine>=minimum(mean_Creatinine,floor(QOLS))\n", + "3928 Creatinine>=(encounters_count+1)/mean_Triglycerides\n", + "3929 Creatinine>=-healthcare_coverage+mean_Creatinine\n", + "3930 Creatinine>=mean_Creatinine-procedures_lifetime_cost\n", + "3931 Creatinine>=(Bilirubin_total__Mass_volume__in_Serum,Plasma-1)*active_care_plans\n", + "3932 Creatinine>=healthcare_expenses^longitude\n", + "3933 Creatinine>=mean_Creatinine-medications_lifetime\n", + "3934 Creatinine>=minimum(mean_Creatinine,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "3935 Creatinine>=-DALY+Globulin__Mass_volume__in_Serum_by_calculation\n", + "3936 Creatinine>=minimum(imaging_studies_lifetime,mean_Creatinine)\n", + "3937 Creatinine>=2*procedures_lifetime/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3938 Creatinine>=minimum(mean_Creatinine,1/2*immunizations_lifetime)\n", + "3939 Creatinine>=-Microalbumin_Creatinine_Ratio+1/2*Respiratory_rate\n", + "3940 Creatinine>=log(device_lifetime_length)/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "3941 Creatinine>=sqrt(Glucose)-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "3942 Creatinine>=2*DALY-Glucose\n", + "3943 Creatinine>=maximum(Ketones__Mass_volume__in_Urine_by_Test_strip,-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "3944 Creatinine>=Calcium^2/Total_Cholesterol\n", + "3945 Creatinine>=sqrt(encounters_count)-Hemoglobin__Mass_volume__in_Blood\n", + "3946 Creatinine>=immunizations_lifetime/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3947 Creatinine>=(Glomerular_filtration_rate_1_73_sq_M_predicted+1)/Systolic_Blood_Pressure\n", + "3948 Creatinine>=floor(QOLS)*mean_Creatinine\n", + "3949 Creatinine>=log(procedures_lifetime)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3950 Creatinine>=log(Microalbumin_Creatinine_Ratio)/log(10)-immunizations_lifetime\n", + "3951 Creatinine>=mean_Creatinine^FEV1_FVC\n", + "3952 Creatinine>=minimum(medications_lifetime_perc_covered,mean_Creatinine)\n", + "3953 Creatinine>=log(Microalbumin_Creatinine_Ratio)/log(10)-QOLS\n", + "3954 Creatinine>=(10^healthcare_expenses)^longitude\n", + "3955 Creatinine>=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/log(10)-immunizations_lifetime_cost\n", + "3956 Creatinine>=1/2*encounters_count/age\n", + "3957 Creatinine>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*active_conditions\n", + "3958 Creatinine>=MCHC__Mass_volume__by_Automated_count-lifetime_care_plan_length+1\n", + "3959 Creatinine>=ceil(Microalbumin_Creatinine_Ratio)/mean_Total_Cholesterol\n", + "3960 Creatinine>=10^medications_lifetime_perc_covered-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3961 Creatinine>=mean_Creatinine*num_allergies\n", + "3962 Creatinine>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/Heart_rate\n", + "3963 Creatinine>=1/encounters_lifetime_perc_covered-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "3964 Creatinine>=sqrt(medications_lifetime)-mean_Carbon_Dioxide\n", + "3965 Creatinine>=10^medications_lifetime_perc_covered-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "3966 Sodium<=healthcare_expenses\n", + "3967 Sodium<=mean_Creatinine+mean_Sodium\n", + "3968 Sodium<=10^QOLS+mean_Sodium\n", + "3969 Sodium<=mean_Sodium+medications_lifetime\n", + "3970 Sodium<=sqrt(procedures_lifetime)+mean_Sodium\n", + "3971 Sodium<=mean_Sodium+procedures_lifetime\n", + "3972 Sodium<=mean_Sodium/QOLS\n", + "3973 Sodium<=QALY*log(Triglycerides)\n", + "3974 Sodium<=maximum(Body_Height,mean_Sodium)\n", + "3975 Sodium<=maximum(medications_lifetime_cost,mean_Sodium)\n", + "3976 Sodium<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Triglycerides-1\n", + "3977 Sodium<=healthcare_coverage+mean_Sodium\n", + "3978 Sodium<=maximum(medications_lifetime_dispenses,mean_Sodium)\n", + "3979 Sodium<=1/device_lifetime_length+mean_Sodium\n", + "3980 Sodium<=2*Protein__Mass_volume__in_Serum,Plasma/num_allergies\n", + "3981 Sodium<=log(QALY)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "3982 Sodium<=Systolic_Blood_Pressure*e^encounters_lifetime_perc_covered\n", + "3983 Sodium<=maximum(mean_Sodium,e^lifetime_conditions)\n", + "3984 Sodium<=mean_Sodium^active_conditions\n", + "3985 Sodium<=Triglycerides^2/active_condition_length\n", + "3986 Sodium<=maximum(mean_Sodium,1/2*Platelets____volume__in_Blood_by_Automated_count)\n", + "3987 Sodium<=Respiratory_rate^2-Globulin__Mass_volume__in_Serum_by_calculation\n", + "3988 Sodium<=e^encounters_lifetime_perc_covered*mean_Systolic_Blood_Pressure\n", + "3989 Sodium<=floor(immunizations_lifetime_cost)/num_allergies\n", + "3990 Sodium<=maximum(mean_Sodium,1/2*medications_lifetime_dispenses)\n", + "3991 Sodium<=1/2*Calcium*MCHC__Mass_volume__by_Automated_count\n", + "3992 Sodium<=2*Low_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide\n", + "3993 Sodium<=2*High_Density_Lipoprotein_Cholesterol+mean_Diastolic_Blood_Pressure\n", + "3994 Sodium<=2*Carbon_Dioxide+mean_Chloride\n", + "3995 Sodium<=sqrt(Calcium)+mean_Sodium\n", + "3996 Sodium<=Heart_rate+MCV__Entitic_volume__by_Automated_count\n", + "3997 Sodium>=latitude\n", + "3998 Sodium>=-active_conditions+mean_Sodium\n", + "3999 Sodium>=mean_Sodium-medications_lifetime\n", + "4000 Sodium>=Protein__Mass_volume__in_Serum,Plasma/Creatinine\n", + "4001 Sodium>=-healthcare_expenses\n", + "4002 Sodium>=-Platelets____volume__in_Blood_by_Automated_count+medications_lifetime+1\n", + "4003 Sodium>=-Globulin__Mass_volume__in_Serum_by_calculation+mean_Sodium\n", + "4004 Sodium>=Body_Weight+1/2*active_care_plan_length\n", + "4005 Sodium>=-Potassium+mean_Sodium\n", + "4006 Sodium>=1/2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glucose\n", + "4007 Sodium>=2*MCHC__Mass_volume__by_Automated_count+mean_High_Density_Lipoprotein_Cholesterol\n", + "4008 Sodium>=1/2*Total_Cholesterol+mean_Respiratory_rate\n", + "4009 Sodium>=healthcare_expenses^longitude\n", + "4010 Sodium>=ceil(Carbon_Dioxide)+mean_Chloride\n", + "4011 Sodium>=minimum(encounters_count,Systolic_Blood_Pressure+1)\n", + "4012 Sodium>=mean_Sodium/active_conditions\n", + "4013 Sodium>=mean_Sodium^QOLS\n", + "4014 Sodium>=-DALY+mean_Sodium\n", + "4015 Sodium>=(encounters_count+1)^medications_lifetime_perc_covered\n", + "4016 Sodium>=minimum(Systolic_Blood_Pressure,mean_Sodium)\n", + "4017 Sodium>=encounters_count/DALY\n", + "4018 Sodium>=(Microalbumin_Creatinine_Ratio+1)/Estimated_Glomerular_Filtration_Rate\n", + "4019 Sodium>=(active_conditions+1)/QOLS\n", + "4020 Sodium>=2*device_lifetime_length/Creatinine\n", + "4021 Sodium>=Low_Density_Lipoprotein_Cholesterol-Urea_Nitrogen+1\n", + "4022 Sodium>=(log(age)/log(10))^mean_Creatinine\n", + "4023 Sodium>=MCH__Entitic_mass__by_Automated_count+mean_Chloride+1\n", + "4024 Sodium>=-mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Sodium\n", + "4025 Sodium>=High_Density_Lipoprotein_Cholesterol+active_care_plan_length+1\n", + "4026 Sodium>=minimum(mean_Sodium,mean_Systolic_Blood_Pressure)\n", + "4027 Sodium>=lifetime_care_plans*mean_Urea_Nitrogen\n", + "4028 Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "4029 Sodium>=sqrt(encounters_lifetime_payer_coverage)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4030 Sodium>=sqrt(Hemoglobin__Mass_volume__in_Blood)*MCHC__Mass_volume__by_Automated_count\n", + "4031 Sodium>=MCV__Entitic_volume__by_Automated_count+ceil(latitude)\n", + "4032 Sodium>=age*log(latitude)/log(10)\n", + "4033 Sodium>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*immunizations_lifetime\n", + "4034 Sodium>=minimum(Estimated_Glomerular_Filtration_Rate,floor(immunizations_lifetime_cost))\n", + "4035 Sodium>=mean_Carbon_Dioxide+mean_Chloride\n", + "4036 Sodium>=2*Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Carbon_Dioxide\n", + "4037 Sodium>=minimum(mean_Sodium,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4038 Sodium>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Diastolic_Blood_Pressure\n", + "4039 Sodium>=DALY*sqrt(active_care_plans)\n", + "4040 Sodium>=-healthcare_coverage+mean_Sodium\n", + "4041 Sodium>=mean_Sodium/active_care_plans\n", + "4042 Sodium>=Chloride+MCH__Entitic_mass__by_Automated_count+1\n", + "4043 Sodium>=2*active_condition_length-lifetime_conditions\n", + "4044 Sodium>=active_condition_length*log(Diastolic_Blood_Pressure)/log(10)\n", + "4045 Sodium>=sqrt(Calcium)*latitude\n", + "4046 Sodium>=sqrt(medications_lifetime_cost)/medications_lifetime\n", + "4047 Sodium>=Body_Weight+floor(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "4048 Sodium>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+Systolic_Blood_Pressure\n", + "4049 Sodium>=-active_care_plan_length+e^Potassium\n", + "4050 Sodium>=2*Glomerular_filtration_rate_1_73_sq_M_predicted-latitude\n", + "4051 Potassium<=healthcare_expenses\n", + "4052 Potassium<=ceil(e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4053 Potassium<=mean_Potassium+procedures_lifetime\n", + "4054 Potassium<=sqrt(QOLS)+mean_Potassium\n", + "4055 Potassium<=1/2*Chloride/Calcium\n", + "4056 Potassium<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4057 Potassium<=Microalbumin_Creatinine_Ratio-QOLS\n", + "4058 Potassium<=ceil(active_condition_length)\n", + "4059 Potassium<=encounters_count^2\n", + "4060 Potassium<=ceil(Body_Mass_Index)/Albumin__Mass_volume__in_Serum,Plasma\n", + "4061 Potassium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4062 Potassium<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4063 Potassium<=mean_Potassium/QOLS\n", + "4064 Potassium<=maximum(lifetime_conditions,mean_Potassium)\n", + "4065 Potassium<=sqrt(encounters_lifetime_perc_covered)+Leukocytes____volume__in_Blood_by_Automated_count\n", + "4066 Potassium<=1/2*Body_Height/active_conditions\n", + "4067 Potassium<=2*Low_Density_Lipoprotein_Cholesterol/Body_Mass_Index\n", + "4068 Potassium<=maximum(Respiratory_rate,mean_Potassium)\n", + "4069 Potassium<=healthcare_coverage+mean_Potassium\n", + "4070 Potassium<=2*Bilirubin_total__Mass_volume__in_Serum,Plasma+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4071 Potassium<=immunizations_lifetime_cost+lifetime_conditions\n", + "4072 Potassium<=ceil(Albumin__Mass_volume__in_Serum,Plasma+1)\n", + "4073 Potassium<=maximum(medications_lifetime,mean_Potassium)\n", + "4074 Potassium<=mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Potassium\n", + "4075 Potassium<=1/Leukocytes____volume__in_Blood_by_Automated_count+mean_Potassium\n", + "4076 Potassium<=-active_care_plan_length+floor(Glucose)\n", + "4077 Potassium<=maximum(Microalbumin_Creatinine_Ratio,floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "4078 Potassium<=Estimated_Glomerular_Filtration_Rate+QOLS+1\n", + "4079 Potassium<=maximum(mean_Potassium,DALY^2)\n", + "4080 Potassium<=1/procedures_lifetime+Leukocytes____volume__in_Blood_by_Automated_count\n", + "4081 Potassium<=1/2*Body_Weight*QOLS\n", + "4082 Potassium<=1/2*Calcium+medications_active\n", + "4083 Potassium<=Carbon_Dioxide-active_conditions\n", + "4084 Potassium<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/num_allergies\n", + "4085 Potassium<=mean_Potassium+medications_lifetime\n", + "4086 Potassium<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "4087 Potassium<=sqrt(Urea_Nitrogen)^active_care_plans\n", + "4088 Potassium<=maximum(mean_Potassium,log(medications_lifetime_cost)/log(10))\n", + "4089 Potassium<=(Sodium+1)/mean_Carbon_Dioxide\n", + "4090 Potassium<=Globulin__Mass_volume__in_Serum_by_calculation+log(Urea_Nitrogen)\n", + "4091 Potassium<=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/log(10)+mean_Potassium\n", + "4092 Potassium<=sqrt(encounters_lifetime_perc_covered)+mean_Potassium\n", + "4093 Potassium<=Carbon_Dioxide^2/age\n", + "4094 Potassium<=2*Creatinine*mean_Potassium\n", + "4095 Potassium<=(1/medications_lifetime_perc_covered)^mean_Calcium\n", + "4096 Potassium<=maximum(DALY,Leukocytes____volume__in_Blood_by_Automated_count-1)\n", + "4097 Potassium<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime+1\n", + "4098 Potassium<=Erythrocytes____volume__in_Blood_by_Automated_count+2*QOLS\n", + "4099 Potassium<=Sodium^2/medications_lifetime_dispenses\n", + "4100 Potassium<=maximum(mean_Potassium,1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4101 Potassium>=longitude\n", + "4102 Potassium>=1/2*lifetime_care_plans\n", + "4103 Potassium>=minimum(mean_Potassium,-Respiratory_rate)\n", + "4104 Potassium>=(Globulin__Mass_volume__in_Serum_by_calculation-1)*imaging_studies_lifetime\n", + "4105 Potassium>=mean_Potassium/active_conditions\n", + "4106 Potassium>=sqrt(Creatinine)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4107 Potassium>=immunizations_lifetime*log(medications_active)\n", + "4108 Potassium>=DALY-medications_lifetime_length-1\n", + "4109 Potassium>=floor(Low_Density_Lipoprotein_Cholesterol)/MCHC__Mass_volume__by_Automated_count\n", + "4110 Potassium>=-healthcare_expenses\n", + "4111 Potassium>=log(medications_lifetime_perc_covered)/log(10)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4112 Potassium>=mean_Potassium^QOLS\n", + "4113 Potassium>=sqrt(device_lifetime_length)-mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4114 Potassium>=-Creatinine+mean_Potassium\n", + "4115 Potassium>=log(healthcare_coverage)/log(10)-Creatinine\n", + "4116 Potassium>=-Body_Mass_Index+floor(MCH__Entitic_mass__by_Automated_count)\n", + "4117 Potassium>=log(2*DALY)\n", + "4118 Potassium>=active_conditions^2/mean_Glucose\n", + "4119 Potassium>=healthcare_expenses^longitude\n", + "4120 Potassium>=mean_Potassium-medications_lifetime\n", + "4121 Potassium>=sqrt(Respiratory_rate)-QOLS\n", + "4122 Potassium>=(DALY+1)/mean_Urea_Nitrogen\n", + "4123 Potassium>=(log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4124 Potassium>=minimum(device_lifetime_length,mean_Potassium)\n", + "4125 Potassium>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+log(Protein__Mass_volume__in_Serum,Plasma)\n", + "4126 Potassium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+immunizations_lifetime+1\n", + "4127 Potassium>=(medications_lifetime+1)/Total_Cholesterol\n", + "4128 Potassium>=sqrt(Respiratory_rate)-immunizations_lifetime\n", + "4129 Potassium>=(Bilirubin_total__Mass_volume__in_Serum,Plasma^2)^active_care_plans\n", + "4130 Potassium>=minimum(mean_Potassium,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4131 Potassium>=2*medications_lifetime/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4132 Potassium>=Respiratory_rate/Albumin__Mass_volume__in_Serum,Plasma\n", + "4133 Potassium>=1/2*Total_Cholesterol/Body_Mass_Index\n", + "4134 Potassium>=(10^healthcare_expenses)^longitude\n", + "4135 Potassium>=(log(Calcium)/log(10))^Body_Height\n", + "4136 Potassium>=log(Triglycerides)*medications_lifetime_perc_covered\n", + "4137 Potassium>=(Chloride+1)/MCH__Entitic_mass__by_Automated_count\n", + "4138 Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,10^encounters_lifetime_perc_covered)\n", + "4139 Potassium>=log(medications_lifetime_cost)/log(10)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4140 Potassium>=-encounters_lifetime_perc_covered+log(active_care_plan_length)\n", + "4141 Potassium>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+floor(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4142 Potassium>=sqrt(Carbon_Dioxide)-active_care_plans\n", + "4143 Potassium>=log(lifetime_conditions)/Creatinine\n", + "4144 Potassium>=-Body_Weight+floor(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4145 Potassium>=encounters_lifetime_perc_covered*log(lifetime_condition_length)\n", + "4146 Potassium>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^num_allergies\n", + "4147 Potassium>=log(medications_lifetime_length)-medications_lifetime\n", + "4148 Potassium>=1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*encounters_lifetime_perc_covered\n", + "4149 Potassium>=Leukocytes____volume__in_Blood_by_Automated_count^encounters_lifetime_perc_covered\n", + "4150 Potassium>=log(encounters_lifetime_payer_coverage)/log(10)-procedures_lifetime\n", + "4151 Potassium>=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,Globulin__Mass_volume__in_Serum_by_calculation+1)\n", + "4152 Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,medications_active-1)\n", + "4153 Potassium>=-healthcare_coverage+mean_Potassium\n", + "4154 Potassium>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "4155 Potassium>=log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)/encounters_lifetime_perc_covered\n", + "4156 Potassium>=sqrt(medications_lifetime_dispenses)/encounters_count\n", + "4157 Potassium>=log(medications_active)*mean_Potassium/log(10)\n", + "4158 Potassium>=log(DALY)+medications_lifetime_perc_covered\n", + "4159 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "4160 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4161 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4162 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/active_conditions+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4163 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4164 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Globulin__Mass_volume__in_Serum_by_calculation+medications_lifetime\n", + "4165 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime\n", + "4166 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_care_plan_length,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4167 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "4168 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_care_plans\n", + "4169 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_conditions,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4170 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+active_conditions+1\n", + "4171 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/lifetime_care_plans+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4172 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/QOLS\n", + "4173 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Globulin__Mass_volume__in_Serum_by_calculation+Potassium\n", + "4174 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Leukocytes____volume__in_Blood_by_Automated_count+medications_active\n", + "4175 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Albumin__Mass_volume__in_Serum,Plasma+Globulin__Mass_volume__in_Serum_by_calculation\n", + "4176 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4177 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Leukocytes____volume__in_Blood_by_Automated_count)\n", + "4178 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "4179 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(medications_lifetime_length,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4180 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=QOLS^2+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4181 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,DALY^2)\n", + "4182 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_conditions\n", + "4183 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", + "4184 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Platelets____volume__in_Blood_by_Automated_count+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4185 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,2*Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4186 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,floor(Leukocytes____volume__in_Blood_by_Automated_count))\n", + "4187 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=minimum(healthcare_expenses,sqrt(Body_temperature))\n", + "4188 Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4189 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "4190 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4191 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "4192 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Globulin__Mass_volume__in_Serum_by_calculation+medications_active\n", + "4193 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/Respiratory_rate\n", + "4194 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(age)/log(10)+num_allergies\n", + "4195 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(active_care_plans,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4196 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(lifetime_care_plans,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4197 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "4198 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime_perc_covered\n", + "4199 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_conditions\n", + "4200 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4201 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Potassium\n", + "4202 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=2*Heart_rate/Body_Weight\n", + "4203 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4204 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "4205 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-QOLS\n", + "4206 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(encounters_lifetime_perc_covered)/log(10)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4207 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "4208 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime\n", + "4209 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_active\n", + "4210 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,active_care_plans+1)\n", + "4211 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood^QOLS\n", + "4212 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,log(immunizations_lifetime_cost))\n", + "4213 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4214 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=QOLS+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-1\n", + "4215 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/medications_lifetime_perc_covered)\n", + "4216 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*medications_lifetime_length/encounters_lifetime_payer_coverage\n", + "4217 Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood,Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)\n", + "4218 Glucose<=healthcare_expenses\n", + "4219 Glucose<=Hemoglobin__Mass_volume__in_Blood+ceil(Body_Height)\n", + "4220 Glucose<=2*Heart_rate-mean_Creatinine\n", + "4221 Glucose<=1/2*Carbon_Dioxide+mean_Glucose\n", + "4222 Glucose<=Respiratory_rate*mean_Urea_Nitrogen\n", + "4223 Glucose<=maximum(Low_Density_Lipoprotein_Cholesterol,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4224 Glucose<=Systolic_Blood_Pressure+log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4225 Glucose<=mean_Glucose+procedures_lifetime_cost\n", + "4226 Glucose<=maximum(lifetime_condition_length,mean_Glucose)\n", + "4227 Glucose<=mean_Glucose+mean_Urea_Nitrogen\n", + "4228 Glucose<=Heart_rate*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4229 Glucose<=healthcare_coverage+mean_Glucose\n", + "4230 Glucose<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Glucose-1\n", + "4231 Glucose<=encounters_count+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4232 Glucose<=sqrt(Sodium)+mean_Glucose\n", + "4233 Glucose<=mean_Glucose+medications_lifetime\n", + "4234 Glucose<=Heart_rate^active_conditions\n", + "4235 Glucose<=10^Creatinine+mean_Estimated_Glomerular_Filtration_Rate\n", + "4236 Glucose<=(Diastolic_Blood_Pressure+1)^active_care_plans\n", + "4237 Glucose<=maximum(medications_lifetime_cost,mean_Glucose)\n", + "4238 Glucose<=10^Potassium/mean_High_Density_Lipoprotein_Cholesterol\n", + "4239 Glucose<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4240 Glucose<=maximum(mean_Glucose,10^DALY)\n", + "4241 Glucose<=sqrt(Total_Cholesterol)*mean_Estimated_Glomerular_Filtration_Rate\n", + "4242 Glucose<=Creatinine+ceil(Triglycerides)\n", + "4243 Glucose<=maximum(Low_Density_Lipoprotein_Cholesterol,Microalbumin_Creatinine_Ratio)\n", + "4244 Glucose<=floor(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)+mean_Chloride\n", + "4245 Glucose<=1/2*QALY*Urea_Nitrogen\n", + "4246 Glucose<=DALY^2+mean_Glucose\n", + "4247 Glucose<=2*Estimated_Glomerular_Filtration_Rate*lifetime_conditions\n", + "4248 Glucose<=immunizations_lifetime_cost+mean_Systolic_Blood_Pressure-1\n", + "4249 Glucose<=maximum(mean_Glucose,e^lifetime_conditions)\n", + "4250 Glucose<=Glomerular_filtration_rate_1_73_sq_M_predicted*Respiratory_rate\n", + "4251 Glucose<=(10^Potassium)^Creatinine\n", + "4252 Glucose<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Glucose\n", + "4253 Glucose<=1/2*encounters_count+mean_Glucose\n", + "4254 Glucose<=floor(Albumin__Mass_volume__in_Serum,Plasma)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4255 Glucose<=2*Globulin__Mass_volume__in_Serum_by_calculation*encounters_count\n", + "4256 Glucose<=2*Creatinine*Heart_rate\n", + "4257 Glucose<=10^procedures_lifetime+mean_Glucose\n", + "4258 Glucose<=10^QOLS*Diastolic_Blood_Pressure\n", + "4259 Glucose<=(e^QOLS)^mean_High_Density_Lipoprotein_Cholesterol\n", + "4260 Glucose<=Urea_Nitrogen+mean_Glucose+1\n", + "4261 Glucose<=Chloride+1/2*Microalbumin_Creatinine_Ratio\n", + "4262 Glucose<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Glucose-1\n", + "4263 Glucose<=10^Leukocytes____volume__in_Blood_by_Automated_count/active_care_plan_length\n", + "4264 Glucose<=ceil(Leukocytes____volume__in_Blood_by_Automated_count)+mean_Glucose\n", + "4265 Glucose<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/active_conditions\n", + "4266 Glucose>=latitude\n", + "4267 Glucose>=1/2*medications_lifetime_length/mean_Chloride\n", + "4268 Glucose>=1/Calcium+active_condition_length\n", + "4269 Glucose>=1/2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count/encounters_lifetime_perc_covered\n", + "4270 Glucose>=Potassium*log(healthcare_expenses)\n", + "4271 Glucose>=minimum(mean_Glucose,e^medications_active)\n", + "4272 Glucose>=-healthcare_expenses\n", + "4273 Glucose>=minimum(MCV__Entitic_volume__by_Automated_count,mean_Glucose)\n", + "4274 Glucose>=mean_Glucose-mean_Urea_Nitrogen\n", + "4275 Glucose>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Body_Mass_Index\n", + "4276 Glucose>=minimum(mean_Glucose,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4277 Glucose>=1/2*Triglycerides-mean_Estimated_Glomerular_Filtration_Rate\n", + "4278 Glucose>=-Glomerular_filtration_rate_1_73_sq_M_predicted+Low_Density_Lipoprotein_Cholesterol+1\n", + "4279 Glucose>=healthcare_expenses^longitude\n", + "4280 Glucose>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)\n", + "4281 Glucose>=mean_Glucose^QOLS\n", + "4282 Glucose>=(Microalbumin_Creatinine_Ratio+1)^medications_lifetime_perc_covered\n", + "4283 Glucose>=active_care_plan_length+log(Systolic_Blood_Pressure)\n", + "4284 Glucose>=Diastolic_Blood_Pressure-immunizations_lifetime_cost-1\n", + "4285 Glucose>=MCV__Entitic_volume__by_Automated_count*log(procedures_lifetime)/log(10)\n", + "4286 Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "4287 Glucose>=device_lifetime_length+floor(latitude)\n", + "4288 Glucose>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(lifetime_care_plan_length)/log(10)\n", + "4289 Glucose>=sqrt(encounters_count)*mean_Potassium\n", + "4290 Glucose>=age^2/Low_Density_Lipoprotein_Cholesterol\n", + "4291 Glucose>=mean_Glucose-medications_lifetime\n", + "4292 Glucose>=minimum(Heart_rate,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4293 Glucose>=-Creatinine+2*DALY\n", + "4294 Glucose>=(1/QOLS)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4295 Glucose>=Low_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered^2\n", + "4296 Glucose>=(active_conditions+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4297 Glucose>=minimum(procedures_lifetime,Diastolic_Blood_Pressure)\n", + "4298 Glucose>=lifetime_conditions*medications_active\n", + "4299 Glucose>=(DALY-1)/mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4300 Glucose>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4301 Glucose>=sqrt(immunizations_lifetime_cost)/encounters_lifetime_perc_covered\n", + "4302 Glucose>=Heart_rate/active_conditions\n", + "4303 Glucose>=High_Density_Lipoprotein_Cholesterol-mean_Calcium\n", + "4304 Glucose>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)\n", + "4305 Glucose>=minimum(age,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4306 Glucose>=mean_Glucose/active_care_plans\n", + "4307 Glucose>=active_care_plan_length*log(Urea_Nitrogen)/log(10)\n", + "4308 Glucose>=Low_Density_Lipoprotein_Cholesterol*encounters_lifetime_perc_covered^2\n", + "4309 Glucose>=-QALY+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "4310 Glucose>=e^Calcium/Platelets____volume__in_Blood_by_Automated_count\n", + "4311 Glucose>=-healthcare_coverage+mean_Glucose\n", + "4312 Chloride<=healthcare_expenses\n", + "4313 Chloride<=active_care_plans+mean_Chloride+1\n", + "4314 Chloride<=log(Leukocytes____volume__in_Blood_by_Automated_count)*mean_Glucose\n", + "4315 Chloride<=maximum(mean_Chloride,encounters_count^2)\n", + "4316 Chloride<=maximum(Total_Cholesterol,mean_Chloride)\n", + "4317 Chloride<=e^Creatinine+mean_Chloride\n", + "4318 Chloride<=mean_Chloride+medications_lifetime\n", + "4319 Chloride<=maximum(mean_Chloride,e^active_conditions)\n", + "4320 Chloride<=maximum(medications_lifetime_cost,mean_Chloride)\n", + "4321 Chloride<=mean_Chloride/QOLS\n", + "4322 Chloride<=Albumin__Mass_volume__in_Serum,Plasma+mean_Chloride\n", + "4323 Chloride<=Triglycerides+active_care_plans\n", + "4324 Chloride<=mean_Chloride^active_conditions\n", + "4325 Chloride<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/Low_Density_Lipoprotein_Cholesterol\n", + "4326 Chloride<=1/2*Sodium+latitude\n", + "4327 Chloride<=maximum(mean_Chloride,Systolic_Blood_Pressure-1)\n", + "4328 Chloride<=MCHC__Mass_volume__by_Automated_count^2/Leukocytes____volume__in_Blood_by_Automated_count\n", + "4329 Chloride<=QALY^2/active_care_plans\n", + "4330 Chloride<=maximum(medications_lifetime_dispenses,mean_Chloride)\n", + "4331 Chloride<=log(active_care_plan_length)+mean_Triglycerides\n", + "4332 Chloride<=(Bilirubin_total__Mass_volume__in_Serum,Plasma+1)*mean_Glucose\n", + "4333 Chloride<=active_care_plans^2+mean_Chloride\n", + "4334 Chloride<=healthcare_coverage+mean_Chloride\n", + "4335 Chloride<=maximum(Systolic_Blood_Pressure,mean_Chloride)\n", + "4336 Chloride<=-mean_Carbon_Dioxide+mean_Sodium\n", + "4337 Chloride<=log(lifetime_care_plan_length)+mean_Chloride\n", + "4338 Chloride<=-QOLS+mean_Triglycerides\n", + "4339 Chloride<=QALY*floor(Estimated_Glomerular_Filtration_Rate)\n", + "4340 Chloride<=sqrt(Body_Mass_Index)*Carbon_Dioxide\n", + "4341 Chloride<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*medications_lifetime_dispenses\n", + "4342 Chloride<=10^encounters_lifetime_perc_covered*mean_Diastolic_Blood_Pressure\n", + "4343 Chloride<=Microalbumin_Creatinine_Ratio^2/procedures_lifetime\n", + "4344 Chloride<=mean_Triglycerides+procedures_lifetime_cost-1\n", + "4345 Chloride<=(e^QOLS)^mean_High_Density_Lipoprotein_Cholesterol\n", + "4346 Chloride<=floor(QALY)*mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4347 Chloride<=ceil(DALY)+mean_Chloride\n", + "4348 Chloride<=2*Heart_rate-active_conditions\n", + "4349 Chloride<=sqrt(Carbon_Dioxide)+mean_Chloride\n", + "4350 Chloride<=sqrt(Protein__Mass_volume__in_Serum,Plasma)*mean_Respiratory_rate\n", + "4351 Chloride<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4352 Chloride<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4353 Chloride>=latitude\n", + "4354 Chloride>=-Potassium+mean_Chloride\n", + "4355 Chloride>=High_Density_Lipoprotein_Cholesterol^2/Low_Density_Lipoprotein_Cholesterol\n", + "4356 Chloride>=10^medications_lifetime_perc_covered*Respiratory_rate\n", + "4357 Chloride>=Body_Mass_Index+active_condition_length\n", + "4358 Chloride>=minimum(mean_Chloride,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4359 Chloride>=-Body_Weight+floor(Body_Height)\n", + "4360 Chloride>=minimum(mean_Chloride,e^Creatinine)\n", + "4361 Chloride>=-active_conditions+mean_Chloride\n", + "4362 Chloride>=-healthcare_expenses\n", + "4363 Chloride>=MCV__Entitic_volume__by_Automated_count+procedures_lifetime\n", + "4364 Chloride>=minimum(mean_Chloride,10^immunizations_lifetime)\n", + "4365 Chloride>=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Potassium\n", + "4366 Chloride>=sqrt(Body_Height)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4367 Chloride>=healthcare_expenses^longitude\n", + "4368 Chloride>=Creatinine+Diastolic_Blood_Pressure\n", + "4369 Chloride>=active_care_plan_length+mean_Carbon_Dioxide+1\n", + "4370 Chloride>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Calcium\n", + "4371 Chloride>=-healthcare_coverage+mean_Chloride\n", + "4372 Chloride>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Chloride\n", + "4373 Chloride>=Body_Mass_Index+Protein__Mass_volume__in_Serum,Plasma-1\n", + "4374 Chloride>=Globulin__Mass_volume__in_Serum_by_calculation^2/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4375 Chloride>=mean_Chloride^num_allergies\n", + "4376 Chloride>=mean_Chloride^QOLS\n", + "4377 Chloride>=-active_condition_length+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4378 Chloride>=mean_Chloride-medications_lifetime\n", + "4379 Chloride>=mean_Chloride-mean_Potassium\n", + "4380 Chloride>=-Estimated_Glomerular_Filtration_Rate+1/2*Total_Cholesterol\n", + "4381 Chloride>=Erythrocytes____volume__in_Blood_by_Automated_count+ceil(Body_Weight)\n", + "4382 Chloride>=Leukocytes____volume__in_Blood_by_Automated_count+MCV__Entitic_volume__by_Automated_count\n", + "4383 Chloride>=Systolic_Blood_Pressure*encounters_lifetime_perc_covered\n", + "4384 Chloride>=mean_Chloride-procedures_lifetime_cost\n", + "4385 Chloride>=minimum(mean_Chloride,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4386 Chloride>=Estimated_Glomerular_Filtration_Rate*log(procedures_lifetime)\n", + "4387 Chloride>=mean_Chloride/active_conditions\n", + "4388 Chloride>=minimum(mean_Chloride,mean_Diastolic_Blood_Pressure)\n", + "4389 Chloride>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+mean_Heart_rate\n", + "4390 Chloride>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+ceil(Low_Density_Lipoprotein_Cholesterol)\n", + "4391 Chloride>=mean_Chloride/active_care_plans\n", + "4392 Chloride>=sqrt(Glucose)/QOLS\n", + "4393 Chloride>=minimum(mean_Chloride,Calcium^2)\n", + "4394 Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "4395 Chloride>=1/2*lifetime_condition_length*num_allergies\n", + "4396 Chloride>=e^lifetime_care_plans/encounters_count\n", + "4397 Chloride>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*device_lifetime_length\n", + "4398 Chloride>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1/2*encounters_count\n", + "4399 Chloride>=Calcium^2+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4400 Chloride>=active_condition_length+ceil(Body_Mass_Index)\n", + "4401 Chloride>=Carbon_Dioxide+High_Density_Lipoprotein_Cholesterol+1\n", + "4402 Chloride>=2*Carbon_Dioxide/Creatinine\n", + "4403 Chloride>=2*Calcium+age\n", + "4404 Carbon_Dioxide<=healthcare_expenses\n", + "4405 Carbon_Dioxide<=mean_Carbon_Dioxide/QOLS\n", + "4406 Carbon_Dioxide<=QALY*log(Urea_Nitrogen)/log(10)\n", + "4407 Carbon_Dioxide<=maximum(lifetime_condition_length,mean_Carbon_Dioxide)\n", + "4408 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,mean_MCH__Entitic_mass__by_Automated_count)\n", + "4409 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4410 Carbon_Dioxide<=DALY+mean_Carbon_Dioxide\n", + "4411 Carbon_Dioxide<=Respiratory_rate^2/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4412 Carbon_Dioxide<=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)^Calcium\n", + "4413 Carbon_Dioxide<=floor(Potassium)+mean_Carbon_Dioxide\n", + "4414 Carbon_Dioxide<=e^Calcium/Total_Cholesterol\n", + "4415 Carbon_Dioxide<=floor(Sodium)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4416 Carbon_Dioxide<=Body_Mass_Index+Potassium\n", + "4417 Carbon_Dioxide<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Carbon_Dioxide\n", + "4418 Carbon_Dioxide<=High_Density_Lipoprotein_Cholesterol-Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "4419 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,e^active_conditions)\n", + "4420 Carbon_Dioxide<=-Erythrocytes____volume__in_Blood_by_Automated_count+lifetime_care_plan_length\n", + "4421 Carbon_Dioxide<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+active_care_plans+1\n", + "4422 Carbon_Dioxide<=Chloride-High_Density_Lipoprotein_Cholesterol-1\n", + "4423 Carbon_Dioxide<=10^Potassium/encounters_count\n", + "4424 Carbon_Dioxide<=healthcare_coverage+mean_Carbon_Dioxide\n", + "4425 Carbon_Dioxide<=-Glucose+2*Low_Density_Lipoprotein_Cholesterol\n", + "4426 Carbon_Dioxide<=Hemoglobin__Mass_volume__in_Blood+encounters_count+1\n", + "4427 Carbon_Dioxide<=1/Hemoglobin_A1c_Hemoglobin_total_in_Blood+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4428 Carbon_Dioxide<=DALY+2*Respiratory_rate\n", + "4429 Carbon_Dioxide<=maximum(Heart_rate,mean_Carbon_Dioxide)\n", + "4430 Carbon_Dioxide<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,1/2*FEV1_FVC)\n", + "4431 Carbon_Dioxide<=ceil(Sodium)/Potassium\n", + "4432 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,active_conditions^2)\n", + "4433 Carbon_Dioxide<=2*Erythrocytes____volume__in_Blood_by_Automated_count*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4434 Carbon_Dioxide<=MCHC__Mass_volume__by_Automated_count-active_care_plans\n", + "4435 Carbon_Dioxide<=mean_Carbon_Dioxide^active_conditions\n", + "4436 Carbon_Dioxide<=mean_Carbon_Dioxide+medications_lifetime\n", + "4437 Carbon_Dioxide<=(Triglycerides-1)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4438 Carbon_Dioxide<=High_Density_Lipoprotein_Cholesterol-Potassium\n", + "4439 Carbon_Dioxide<=maximum(medications_lifetime_length,mean_Carbon_Dioxide)\n", + "4440 Carbon_Dioxide<=e^Albumin__Mass_volume__in_Serum,Plasma-mean_Urea_Nitrogen\n", + "4441 Carbon_Dioxide<=Urea_Nitrogen*floor(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4442 Carbon_Dioxide<=-Diastolic_Blood_Pressure+mean_Systolic_Blood_Pressure\n", + "4443 Carbon_Dioxide<=2*MCHC__Mass_volume__by_Automated_count*QOLS\n", + "4444 Carbon_Dioxide<=1/2*Diastolic_Blood_Pressure-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4445 Carbon_Dioxide<=maximum(mean_Carbon_Dioxide,medications_lifetime^2)\n", + "4446 Carbon_Dioxide<=1/num_allergies+mean_Estimated_Glomerular_Filtration_Rate\n", + "4447 Carbon_Dioxide<=Estimated_Glomerular_Filtration_Rate+1/2*active_condition_length\n", + "4448 Carbon_Dioxide<=floor(DALY)+mean_Carbon_Dioxide\n", + "4449 Carbon_Dioxide<=log(encounters_count)+mean_Carbon_Dioxide\n", + "4450 Carbon_Dioxide<=(QOLS+1)*mean_Carbon_Dioxide\n", + "4451 Carbon_Dioxide<=sqrt(Respiratory_rate)+mean_Carbon_Dioxide\n", + "4452 Carbon_Dioxide>=longitude\n", + "4453 Carbon_Dioxide>=log(Diastolic_Blood_Pressure)*mean_Potassium\n", + "4454 Carbon_Dioxide>=Creatinine+Potassium-1\n", + "4455 Carbon_Dioxide>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Potassium)/log(10)\n", + "4456 Carbon_Dioxide>=minimum(Estimated_Glomerular_Filtration_Rate,mean_Carbon_Dioxide)\n", + "4457 Carbon_Dioxide>=mean_Carbon_Dioxide^QOLS\n", + "4458 Carbon_Dioxide>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*active_care_plan_length\n", + "4459 Carbon_Dioxide>=mean_Carbon_Dioxide/active_conditions\n", + "4460 Carbon_Dioxide>=sqrt(Total_Cholesterol)+mean_Potassium\n", + "4461 Carbon_Dioxide>=1/2*Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+QOLS\n", + "4462 Carbon_Dioxide>=-healthcare_expenses\n", + "4463 Carbon_Dioxide>=e^active_care_plans/mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4464 Carbon_Dioxide>=ceil(sqrt(Microalbumin_Creatinine_Ratio))\n", + "4465 Carbon_Dioxide>=Body_Mass_Index-Urea_Nitrogen\n", + "4466 Carbon_Dioxide>=healthcare_expenses^longitude\n", + "4467 Carbon_Dioxide>=Calcium*log(lifetime_care_plan_length)/log(10)\n", + "4468 Carbon_Dioxide>=sqrt(Albumin__Mass_volume__in_Serum,Plasma)^imaging_studies_lifetime\n", + "4469 Carbon_Dioxide>=-DALY+mean_Carbon_Dioxide\n", + "4470 Carbon_Dioxide>=1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/encounters_lifetime_perc_covered\n", + "4471 Carbon_Dioxide>=mean_Carbon_Dioxide-procedures_lifetime_cost\n", + "4472 Carbon_Dioxide>=QOLS*mean_Carbon_Dioxide\n", + "4473 Carbon_Dioxide>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)*mean_Triglycerides\n", + "4474 Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_conditions+1\n", + "4475 Carbon_Dioxide>=-healthcare_coverage+mean_Carbon_Dioxide\n", + "4476 Carbon_Dioxide>=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)*immunizations_lifetime\n", + "4477 Carbon_Dioxide>=(lifetime_care_plan_length+1)/mean_Respiratory_rate\n", + "4478 Carbon_Dioxide>=1/QOLS+Respiratory_rate\n", + "4479 Carbon_Dioxide>=medications_lifetime^2/encounters_lifetime_total_cost\n", + "4480 Carbon_Dioxide>=minimum(Estimated_Glomerular_Filtration_Rate,ceil(DALY))\n", + "4481 Carbon_Dioxide>=minimum(mean_Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4482 Carbon_Dioxide>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted/mean_Creatinine\n", + "4483 Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "4484 Carbon_Dioxide>=sqrt(healthcare_expenses)/Low_Density_Lipoprotein_Cholesterol\n", + "4485 Carbon_Dioxide>=-Heart_rate+floor(age)\n", + "4486 Carbon_Dioxide>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*lifetime_care_plans\n", + "4487 Carbon_Dioxide>=sqrt(Body_Mass_Index)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4488 Carbon_Dioxide>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count*log(Low_Density_Lipoprotein_Cholesterol)/log(10)\n", + "4489 Carbon_Dioxide>=Leukocytes____volume__in_Blood_by_Automated_count+active_conditions\n", + "4490 Carbon_Dioxide>=sqrt(encounters_lifetime_perc_covered)*mean_Carbon_Dioxide\n", + "4491 Carbon_Dioxide>=log(encounters_lifetime_perc_covered)^procedures_lifetime\n", + "4492 Carbon_Dioxide>=Hemoglobin__Mass_volume__in_Blood+Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "4493 Carbon_Dioxide>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*active_care_plans\n", + "4494 Carbon_Dioxide>=Hemoglobin__Mass_volume__in_Blood*sqrt(immunizations_lifetime)\n", + "4495 Carbon_Dioxide>=mean_Carbon_Dioxide/active_care_plans\n", + "4496 Carbon_Dioxide>=minimum(device_lifetime_length,mean_Carbon_Dioxide)\n", + "4497 Carbon_Dioxide>=mean_Carbon_Dioxide-medications_lifetime\n", + "4498 Carbon_Dioxide>=sqrt(medications_lifetime_dispenses)/active_care_plans\n", + "4499 Carbon_Dioxide>=log(medications_active)*mean_Carbon_Dioxide/log(10)\n", + "4500 Carbon_Dioxide>=floor(Hemoglobin__Mass_volume__in_Blood)/mean_Creatinine\n", + "4501 Carbon_Dioxide>=(Body_Mass_Index-1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4502 Carbon_Dioxide>=Body_Mass_Index-mean_Respiratory_rate+1\n", + "4503 Carbon_Dioxide>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/Creatinine\n", + "4504 Total_Cholesterol<=healthcare_expenses\n", + "4505 Total_Cholesterol<=2*Triglycerides-medications_lifetime_perc_covered\n", + "4506 Total_Cholesterol<=Glucose+2*Heart_rate\n", + "4507 Total_Cholesterol<=2*Potassium*mean_Body_Mass_Index\n", + "4508 Total_Cholesterol<=active_care_plan_length+mean_Total_Cholesterol\n", + "4509 Total_Cholesterol<=maximum(mean_Total_Cholesterol,1/imaging_studies_lifetime)\n", + "4510 Total_Cholesterol<=healthcare_coverage+mean_Total_Cholesterol\n", + "4511 Total_Cholesterol<=(Potassium-1)*Low_Density_Lipoprotein_Cholesterol\n", + "4512 Total_Cholesterol<=mean_Total_Cholesterol^active_conditions\n", + "4513 Total_Cholesterol<=Respiratory_rate^2-longitude\n", + "4514 Total_Cholesterol<=ceil(mean_Creatinine)*mean_Total_Cholesterol\n", + "4515 Total_Cholesterol<=10^mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Total_Cholesterol\n", + "4516 Total_Cholesterol<=mean_Total_Cholesterol+medications_lifetime\n", + "4517 Total_Cholesterol<=mean_Total_Cholesterol+procedures_lifetime_cost\n", + "4518 Total_Cholesterol<=log(MCH__Entitic_mass__by_Automated_count)+mean_Total_Cholesterol\n", + "4519 Total_Cholesterol<=maximum(medications_lifetime_dispenses,mean_Total_Cholesterol)\n", + "4520 Total_Cholesterol<=maximum(mean_Total_Cholesterol,medications_lifetime^2)\n", + "4521 Total_Cholesterol<=mean_Total_Cholesterol/QOLS\n", + "4522 Total_Cholesterol<=maximum(medications_lifetime_cost,mean_Total_Cholesterol)\n", + "4523 Total_Cholesterol<=active_conditions+ceil(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)\n", + "4524 Total_Cholesterol<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/mean_High_Density_Lipoprotein_Cholesterol\n", + "4525 Total_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*Low_Density_Lipoprotein_Cholesterol\n", + "4526 Total_Cholesterol<=mean_Potassium^Leukocytes____volume__in_Blood_by_Automated_count\n", + "4527 Total_Cholesterol<=Protein__Mass_volume__in_Serum,Plasma*sqrt(Urea_Nitrogen)\n", + "4528 Total_Cholesterol<=Heart_rate+2*mean_Body_Weight\n", + "4529 Total_Cholesterol<=active_care_plan_length*ceil(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4530 Total_Cholesterol<=maximum(mean_Total_Cholesterol,e^active_conditions)\n", + "4531 Total_Cholesterol<=maximum(mean_Total_Cholesterol,1/2*medications_lifetime_dispenses)\n", + "4532 Total_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(mean_Glucose)\n", + "4533 Total_Cholesterol<=Microalbumin_Creatinine_Ratio^2*active_conditions\n", + "4534 Total_Cholesterol<=1/device_lifetime_length+mean_Total_Cholesterol\n", + "4535 Total_Cholesterol<=maximum(mean_Total_Cholesterol,encounters_count^2)\n", + "4536 Total_Cholesterol<=10^QOLS*Body_Height\n", + "4537 Total_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*QALY\n", + "4538 Total_Cholesterol<=Respiratory_rate^2+Heart_rate\n", + "4539 Total_Cholesterol<=Body_Mass_Index*sqrt(mean_Heart_rate)\n", + "4540 Total_Cholesterol<=e^Calcium/Carbon_Dioxide\n", + "4541 Total_Cholesterol<=2*Body_Mass_Index*mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4542 Total_Cholesterol<=(Albumin__Mass_volume__in_Serum,Plasma+1)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4543 Total_Cholesterol<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Body_Height\n", + "4544 Total_Cholesterol<=2*mean_Calcium+mean_Total_Cholesterol\n", + "4545 Total_Cholesterol>=latitude\n", + "4546 Total_Cholesterol>=minimum(mean_Total_Cholesterol,e^medications_active)\n", + "4547 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "4548 Total_Cholesterol>=2*Glucose-mean_Low_Density_Lipoprotein_Cholesterol\n", + "4549 Total_Cholesterol>=mean_Total_Cholesterol-medications_lifetime\n", + "4550 Total_Cholesterol>=Urea_Nitrogen+mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "4551 Total_Cholesterol>=Respiratory_rate*floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4552 Total_Cholesterol>=-healthcare_expenses\n", + "4553 Total_Cholesterol>=-Urea_Nitrogen+1/2*encounters_count\n", + "4554 Total_Cholesterol>=-Low_Density_Lipoprotein_Cholesterol+lifetime_care_plan_length+1\n", + "4555 Total_Cholesterol>=(1/encounters_lifetime_perc_covered)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4556 Total_Cholesterol>=minimum(mean_Total_Cholesterol,mean_Urea_Nitrogen)\n", + "4557 Total_Cholesterol>=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)/encounters_lifetime_perc_covered\n", + "4558 Total_Cholesterol>=Diastolic_Blood_Pressure^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4559 Total_Cholesterol>=-mean_Estimated_Glomerular_Filtration_Rate+mean_Total_Cholesterol\n", + "4560 Total_Cholesterol>=floor(Body_Mass_Index)*mean_Creatinine\n", + "4561 Total_Cholesterol>=healthcare_expenses^longitude\n", + "4562 Total_Cholesterol>=active_condition_length*log(lifetime_condition_length)/log(10)\n", + "4563 Total_Cholesterol>=Estimated_Glomerular_Filtration_Rate+ceil(active_care_plan_length)\n", + "4564 Total_Cholesterol>=encounters_count-mean_Microalbumin_Creatinine_Ratio+1\n", + "4565 Total_Cholesterol>=mean_Total_Cholesterol/active_conditions\n", + "4566 Total_Cholesterol>=(DALY+1)/QOLS\n", + "4567 Total_Cholesterol>=procedures_lifetime^2+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4568 Total_Cholesterol>=10^e^medications_lifetime_perc_covered\n", + "4569 Total_Cholesterol>=mean_Total_Cholesterol^QOLS\n", + "4570 Total_Cholesterol>=mean_Total_Cholesterol^num_allergies\n", + "4571 Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "4572 Total_Cholesterol>=1/2*High_Density_Lipoprotein_Cholesterol/QOLS\n", + "4573 Total_Cholesterol>=2*Heart_rate-mean_Estimated_Glomerular_Filtration_Rate\n", + "4574 Total_Cholesterol>=1/2*Platelets____volume__in_Blood_by_Automated_count*medications_lifetime_perc_covered\n", + "4575 Total_Cholesterol>=(Body_Mass_Index+1)/encounters_lifetime_perc_covered\n", + "4576 Total_Cholesterol>=minimum(mean_Total_Cholesterol,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4577 Total_Cholesterol>=1/2*Chloride+mean_Chloride\n", + "4578 Total_Cholesterol>=-healthcare_coverage+mean_Total_Cholesterol\n", + "4579 Total_Cholesterol>=Sodium+2*active_conditions\n", + "4580 Urea_Nitrogen<=healthcare_expenses\n", + "4581 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,e^active_conditions)\n", + "4582 Urea_Nitrogen<=(Chloride-1)/active_care_plans\n", + "4583 Urea_Nitrogen<=e^encounters_lifetime_perc_covered*mean_Urea_Nitrogen\n", + "4584 Urea_Nitrogen<=maximum(encounters_count,mean_Urea_Nitrogen)\n", + "4585 Urea_Nitrogen<=Body_Mass_Index-medications_active\n", + "4586 Urea_Nitrogen<=mean_Urea_Nitrogen/encounters_lifetime_perc_covered\n", + "4587 Urea_Nitrogen<=floor(2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4588 Urea_Nitrogen<=Hemoglobin__Mass_volume__in_Blood+1/2*Respiratory_rate\n", + "4589 Urea_Nitrogen<=2*lifetime_care_plan_length/Leukocytes____volume__in_Blood_by_Automated_count\n", + "4590 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,2*medications_lifetime)\n", + "4591 Urea_Nitrogen<=log(age)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/log(10)\n", + "4592 Urea_Nitrogen<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Urea_Nitrogen\n", + "4593 Urea_Nitrogen<=maximum(active_condition_length,mean_Urea_Nitrogen)\n", + "4594 Urea_Nitrogen<=healthcare_coverage+mean_Urea_Nitrogen\n", + "4595 Urea_Nitrogen<=DALY+Microalbumin_Creatinine_Ratio+1\n", + "4596 Urea_Nitrogen<=maximum(Heart_rate,mean_Urea_Nitrogen)\n", + "4597 Urea_Nitrogen<=Body_Height-Systolic_Blood_Pressure-1\n", + "4598 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,DALY^2)\n", + "4599 Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2/num_allergies\n", + "4600 Urea_Nitrogen<=(log(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^mean_Urea_Nitrogen\n", + "4601 Urea_Nitrogen<=log(encounters_lifetime_perc_covered)*longitude\n", + "4602 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,active_conditions^2)\n", + "4603 Urea_Nitrogen<=QALY-active_conditions-1\n", + "4604 Urea_Nitrogen<=10^Albumin__Mass_volume__in_Serum,Plasma/encounters_count\n", + "4605 Urea_Nitrogen<=(Heart_rate-1)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4606 Urea_Nitrogen<=active_conditions+mean_Urea_Nitrogen-1\n", + "4607 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,e^DALY)\n", + "4608 Urea_Nitrogen<=10^medications_active*Estimated_Glomerular_Filtration_Rate\n", + "4609 Urea_Nitrogen<=2*Glucose/lifetime_care_plans\n", + "4610 Urea_Nitrogen<=Triglycerides-age-1\n", + "4611 Urea_Nitrogen<=(2*Diastolic_Blood_Pressure)^Creatinine\n", + "4612 Urea_Nitrogen<=ceil(MCV__Entitic_volume__by_Automated_count)*encounters_lifetime_perc_covered\n", + "4613 Urea_Nitrogen<=floor(Low_Density_Lipoprotein_Cholesterol)-latitude\n", + "4614 Urea_Nitrogen<=10^(10^QOLS)\n", + "4615 Urea_Nitrogen<=floor(Low_Density_Lipoprotein_Cholesterol)/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4616 Urea_Nitrogen<=(MCH__Entitic_mass__by_Automated_count-1)*mean_Creatinine\n", + "4617 Urea_Nitrogen<=Carbon_Dioxide^2/mean_Carbon_Dioxide\n", + "4618 Urea_Nitrogen<=Respiratory_rate^2-mean_Glucose\n", + "4619 Urea_Nitrogen<=10^Potassium/Platelets____volume__in_Blood_by_Automated_count\n", + "4620 Urea_Nitrogen<=Carbon_Dioxide-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4621 Urea_Nitrogen<=mean_Urea_Nitrogen/encounters_lifetime_perc_covered\n", + "4622 Urea_Nitrogen<=minimum(QALY,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4623 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,10^DALY)\n", + "4624 Urea_Nitrogen<=(active_care_plans+1)*mean_Calcium\n", + "4625 Urea_Nitrogen<=-DALY+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "4626 Urea_Nitrogen<=(log(Carbon_Dioxide)/log(10))^mean_Urea_Nitrogen\n", + "4627 Urea_Nitrogen<=e^Glomerular_filtration_rate_1_73_sq_M_predicted/mean_Carbon_Dioxide\n", + "4628 Urea_Nitrogen<=log(Albumin__Mass_volume__in_Serum,Plasma)^Respiratory_rate\n", + "4629 Urea_Nitrogen<=e^active_conditions/Microalbumin_Creatinine_Ratio\n", + "4630 Urea_Nitrogen<=-QALY+mean_Low_Density_Lipoprotein_Cholesterol\n", + "4631 Urea_Nitrogen<=mean_Urea_Nitrogen^active_conditions\n", + "4632 Urea_Nitrogen<=maximum(mean_Urea_Nitrogen,active_care_plan_length+1)\n", + "4633 Urea_Nitrogen>=longitude\n", + "4634 Urea_Nitrogen>=2*mean_Potassium-2\n", + "4635 Urea_Nitrogen>=floor(QOLS)*mean_Urea_Nitrogen\n", + "4636 Urea_Nitrogen>=-Globulin__Mass_volume__in_Serum_by_calculation+mean_Urea_Nitrogen\n", + "4637 Urea_Nitrogen>=mean_Urea_Nitrogen-procedures_lifetime_cost\n", + "4638 Urea_Nitrogen>=-healthcare_coverage+mean_Urea_Nitrogen\n", + "4639 Urea_Nitrogen>=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,2*medications_active)\n", + "4640 Urea_Nitrogen>=sqrt(Low_Density_Lipoprotein_Cholesterol)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4641 Urea_Nitrogen>=minimum(Creatinine,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4642 Urea_Nitrogen>=10^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4643 Urea_Nitrogen>=2*Creatinine-procedures_lifetime\n", + "4644 Urea_Nitrogen>=-healthcare_expenses\n", + "4645 Urea_Nitrogen>=Body_Mass_Index-Carbon_Dioxide\n", + "4646 Urea_Nitrogen>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*sqrt(active_conditions)\n", + "4647 Urea_Nitrogen>=log(High_Density_Lipoprotein_Cholesterol)/(QOLS*log(10))\n", + "4648 Urea_Nitrogen>=mean_Urea_Nitrogen/active_conditions\n", + "4649 Urea_Nitrogen>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood-immunizations_lifetime_cost\n", + "4650 Urea_Nitrogen>=healthcare_expenses^longitude\n", + "4651 Urea_Nitrogen>=-active_conditions+mean_Urea_Nitrogen\n", + "4652 Urea_Nitrogen>=mean_Urea_Nitrogen-medications_lifetime\n", + "4653 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,e^immunizations_lifetime)\n", + "4654 Urea_Nitrogen>=2*Calcium-Estimated_Glomerular_Filtration_Rate\n", + "4655 Urea_Nitrogen>=-Low_Density_Lipoprotein_Cholesterol+age+1\n", + "4656 Urea_Nitrogen>=10^num_allergies+Globulin__Mass_volume__in_Serum_by_calculation\n", + "4657 Urea_Nitrogen>=2*latitude/Microalbumin_Creatinine_Ratio\n", + "4658 Urea_Nitrogen>=(lifetime_care_plans-1)/Creatinine\n", + "4659 Urea_Nitrogen>=minimum(device_lifetime_length,2*Creatinine)\n", + "4660 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,10^imaging_studies_lifetime)\n", + "4661 Urea_Nitrogen>=minimum(DALY,sqrt(QALY))\n", + "4662 Urea_Nitrogen>=ceil(1/2*mean_Urea_Nitrogen)\n", + "4663 Urea_Nitrogen>=e^Potassium/Hemoglobin__Mass_volume__in_Blood\n", + "4664 Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "4665 Urea_Nitrogen>=1/2*procedures_lifetime_cost/encounters_lifetime_total_cost\n", + "4666 Urea_Nitrogen>=log(healthcare_expenses)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4667 Urea_Nitrogen>=Glucose-mean_Glucose-1\n", + "4668 Urea_Nitrogen>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4669 Urea_Nitrogen>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported*medications_active\n", + "4670 Urea_Nitrogen>=Systolic_Blood_Pressure-mean_Systolic_Blood_Pressure-1\n", + "4671 Urea_Nitrogen>=(log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10))^active_care_plans\n", + "4672 Urea_Nitrogen>=(medications_lifetime+1)/MCH__Entitic_mass__by_Automated_count\n", + "4673 Urea_Nitrogen>=minimum(medications_active,mean_Urea_Nitrogen)\n", + "4674 Urea_Nitrogen>=-Respiratory_rate+1/2*latitude\n", + "4675 Urea_Nitrogen>=Hemoglobin__Mass_volume__in_Blood-immunizations_lifetime_cost\n", + "4676 Urea_Nitrogen>=-Heart_rate+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "4677 Urea_Nitrogen>=log(Hemoglobin__Mass_volume__in_Blood)/encounters_lifetime_perc_covered\n", + "4678 Urea_Nitrogen>=mean_Urea_Nitrogen/active_care_plans\n", + "4679 Urea_Nitrogen>=sqrt(Microalbumin_Creatinine_Ratio)*medications_lifetime_perc_covered\n", + "4680 Urea_Nitrogen>=log(Microalbumin_Creatinine_Ratio)/(encounters_lifetime_perc_covered*log(10))\n", + "4681 Urea_Nitrogen>=minimum(mean_Urea_Nitrogen,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4682 Urea_Nitrogen>=log(FEV1_FVC)^immunizations_lifetime\n", + "4683 Urea_Nitrogen>=sqrt(Microalbumin_Creatinine_Ratio)/active_care_plans\n", + "4684 Urea_Nitrogen>=MCV__Entitic_volume__by_Automated_count-mean_Diastolic_Blood_Pressure\n", + "4685 Urea_Nitrogen>=sqrt(lifetime_care_plan_length)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4686 Urea_Nitrogen>=floor(Erythrocytes____volume__in_Blood_by_Automated_count)+procedures_lifetime\n", + "4687 Calcium<=healthcare_expenses\n", + "4688 Calcium<=healthcare_coverage+mean_Calcium\n", + "4689 Calcium<=e^Urea_Nitrogen/Body_Height\n", + "4690 Calcium<=Creatinine^2+mean_Calcium\n", + "4691 Calcium<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4692 Calcium<=1/2*Carbon_Dioxide-medications_lifetime_perc_covered\n", + "4693 Calcium<=-MCH__Entitic_mass__by_Automated_count+floor(latitude)\n", + "4694 Calcium<=log(Urea_Nitrogen)/log(10)+mean_Calcium\n", + "4695 Calcium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4696 Calcium<=mean_Calcium+procedures_lifetime\n", + "4697 Calcium<=mean_Calcium/QOLS\n", + "4698 Calcium<=e^lifetime_conditions/Estimated_Glomerular_Filtration_Rate\n", + "4699 Calcium<=maximum(Triglycerides,mean_Calcium)\n", + "4700 Calcium<=Glomerular_filtration_rate_1_73_sq_M_predicted+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4701 Calcium<=maximum(Respiratory_rate,mean_Calcium)\n", + "4702 Calcium<=mean_Calcium+medications_lifetime\n", + "4703 Calcium<=maximum(mean_Calcium,mean_Urea_Nitrogen)\n", + "4704 Calcium<=Urea_Nitrogen*log(Hemoglobin__Mass_volume__in_Blood)/log(10)\n", + "4705 Calcium<=2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4706 Calcium<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+immunizations_lifetime_cost\n", + "4707 Calcium<=mean_Calcium+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4708 Calcium<=maximum(mean_Calcium,e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "4709 Calcium<=maximum(active_care_plan_length,mean_Calcium)\n", + "4710 Calcium<=ceil(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)/Creatinine\n", + "4711 Calcium<=maximum(mean_Calcium,sqrt(Chloride))\n", + "4712 Calcium<=log(Total_Cholesterol^2)\n", + "4713 Calcium<=Urea_Nitrogen/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4714 Calcium<=mean_Glucose/lifetime_care_plans\n", + "4715 Calcium<=Leukocytes____volume__in_Blood_by_Automated_count*log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)\n", + "4716 Calcium<=10^(10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "4717 Calcium<=(active_care_plan_length+1)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4718 Calcium<=mean_Calcium^active_conditions\n", + "4719 Calcium<=maximum(medications_lifetime_length,mean_Calcium)\n", + "4720 Calcium<=e^Albumin__Mass_volume__in_Serum,Plasma/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4721 Calcium<=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,2*Albumin__Mass_volume__in_Serum,Plasma)\n", + "4722 Calcium<=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)+mean_Calcium\n", + "4723 Calcium<=maximum(mean_Calcium,2*lifetime_conditions)\n", + "4724 Calcium<=Body_Mass_Index-lifetime_conditions-1\n", + "4725 Calcium<=sqrt(Systolic_Blood_Pressure)-medications_lifetime_perc_covered\n", + "4726 Calcium<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^Potassium\n", + "4727 Calcium>=longitude\n", + "4728 Calcium>=minimum(medications_active,mean_Calcium)\n", + "4729 Calcium>=mean_Calcium-1\n", + "4730 Calcium>=1/2*DALY-active_conditions\n", + "4731 Calcium>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4732 Calcium>=sqrt(-longitude)\n", + "4733 Calcium>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(Heart_rate)/log(10)\n", + "4734 Calcium>=-DALY+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4735 Calcium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+lifetime_care_plans+1\n", + "4736 Calcium>=mean_Calcium^QOLS\n", + "4737 Calcium>=-healthcare_expenses\n", + "4738 Calcium>=healthcare_expenses^longitude\n", + "4739 Calcium>=2*medications_lifetime/Total_Cholesterol\n", + "4740 Calcium>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,sqrt(age))\n", + "4741 Calcium>=mean_Calcium/active_care_plans\n", + "4742 Calcium>=2*Albumin__Mass_volume__in_Serum,Plasma-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4743 Calcium>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+QOLS+1\n", + "4744 Calcium>=sqrt(QOLS)*mean_Calcium\n", + "4745 Calcium>=(medications_lifetime+1)/mean_Glucose\n", + "4746 Calcium>=(2*medications_lifetime_perc_covered)^mean_Creatinine\n", + "4747 Calcium>=ceil(Body_Weight)/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4748 Calcium>=log(lifetime_care_plan_length)/log(10)+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4749 Calcium>=minimum(mean_Calcium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4750 Calcium>=Erythrocytes____volume__in_Blood_by_Automated_count+mean_Creatinine\n", + "4751 Calcium>=(DALY-1)^num_allergies\n", + "4752 Calcium>=mean_Calcium^num_allergies\n", + "4753 Calcium>=Globulin__Mass_volume__in_Serum_by_calculation+2*immunizations_lifetime\n", + "4754 Calcium>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1)\n", + "4755 Calcium>=-Body_Mass_Index+MCHC__Mass_volume__by_Automated_count+1\n", + "4756 Calcium>=mean_Calcium/active_conditions\n", + "4757 Calcium>=Urea_Nitrogen^encounters_lifetime_perc_covered\n", + "4758 Calcium>=(MCH__Entitic_mass__by_Automated_count+1)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "4759 Calcium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*lifetime_conditions\n", + "4760 Calcium>=QOLS*floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4761 Calcium>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^QOLS\n", + "4762 Calcium>=Globulin__Mass_volume__in_Serum_by_calculation+ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4763 Calcium>=1/2*Respiratory_rate+1/2\n", + "4764 Calcium>=-Leukocytes____volume__in_Blood_by_Automated_count+active_conditions+1\n", + "4765 Calcium>=log(healthcare_expenses)^medications_lifetime_perc_covered\n", + "4766 Calcium>=-healthcare_coverage+mean_Calcium\n", + "4767 Calcium>=mean_Calcium-medications_lifetime\n", + "4768 Calcium>=floor(age)-mean_Diastolic_Blood_Pressure\n", + "4769 Calcium>=sqrt(Globulin__Mass_volume__in_Serum_by_calculation)*mean_Potassium\n", + "4770 Calcium>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "4771 Calcium>=(10^healthcare_expenses)^longitude\n", + "4772 Calcium>=-active_care_plans+ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "4773 Calcium>=Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*active_conditions\n", + "4774 Calcium>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/encounters_lifetime_perc_covered\n", + "4775 Calcium>=minimum(mean_Calcium,1/QOLS)\n", + "4776 Calcium>=(active_conditions+1)/active_care_plans\n", + "4777 Calcium>=(DALY-1)^encounters_lifetime_perc_covered\n", + "4778 Calcium>=imaging_studies_lifetime+log(Chloride)\n", + "4779 Calcium>=minimum(mean_Calcium,immunizations_lifetime^2)\n", + "4780 Calcium>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-mean_Estimated_Glomerular_Filtration_Rate\n", + "4781 Calcium>=log(Total_score__MMSE_)^immunizations_lifetime\n", + "4782 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "4783 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Urea_Nitrogen,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4784 Glomerular_filtration_rate_1_73_sq_M_predicted<=mean_Glomerular_filtration_rate_1_73_sq_M_predicted/num_allergies\n", + "4785 Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,mean_Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4786 Glomerular_filtration_rate_1_73_sq_M_predicted<=minimum(healthcare_expenses,sqrt(mean_Protein__Mass_volume__in_Urine_by_Test_strip))\n", + "4787 Glomerular_filtration_rate_1_73_sq_M_predicted<=minimum(healthcare_expenses,e^mean_Weight_difference__Mass_difference____pre_dialysis___post_dialysis)\n", + "4788 Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_coverage+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4789 Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "4790 Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(mean_Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4791 Glomerular_filtration_rate_1_73_sq_M_predicted>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+active_care_plans\n", + "4792 Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "4793 Glomerular_filtration_rate_1_73_sq_M_predicted>=floor(device_lifetime_length)/medications_active\n", + "4794 Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "4795 Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_coverage+mean_Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "4796 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime\n", + "4797 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted^QOLS\n", + "4798 Glomerular_filtration_rate_1_73_sq_M_predicted>=medications_active^2+QOLS\n", + "4799 Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "4800 Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(procedures_lifetime,Urea_Nitrogen)\n", + "4801 Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Glomerular_filtration_rate_1_73_sq_M_predicted^num_allergies\n", + "4802 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "4803 Globulin__Mass_volume__in_Serum_by_calculation<=-QOLS+ceil(Albumin__Mass_volume__in_Serum,Plasma)\n", + "4804 Globulin__Mass_volume__in_Serum_by_calculation<=device_lifetime_length+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4805 Globulin__Mass_volume__in_Serum_by_calculation<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Total_Cholesterol\n", + "4806 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(active_care_plans,mean_Globulin__Mass_volume__in_Serum_by_calculation)\n", + "4807 Globulin__Mass_volume__in_Serum_by_calculation<=Creatinine+DALY\n", + "4808 Globulin__Mass_volume__in_Serum_by_calculation<=mean_Globulin__Mass_volume__in_Serum_by_calculation/num_allergies\n", + "4809 Globulin__Mass_volume__in_Serum_by_calculation<=maximum(Creatinine,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "4810 Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_coverage+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4811 Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "4812 Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-procedures_lifetime\n", + "4813 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Globulin__Mass_volume__in_Serum_by_calculation-medications_lifetime_perc_covered\n", + "4814 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Globulin__Mass_volume__in_Serum_by_calculation-procedures_lifetime\n", + "4815 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(Creatinine,1/Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4816 Globulin__Mass_volume__in_Serum_by_calculation>=-immunizations_lifetime+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4817 Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "4818 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(mean_Globulin__Mass_volume__in_Serum_by_calculation,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4819 Globulin__Mass_volume__in_Serum_by_calculation>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4820 Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "4821 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(device_lifetime_length,Ketones__Mass_volume__in_Urine_by_Test_strip+1)\n", + "4822 Globulin__Mass_volume__in_Serum_by_calculation>=minimum(DALY,1/2*Potassium)\n", + "4823 Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "4824 Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_coverage+mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "4825 Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine^num_allergies\n", + "4826 Globulin__Mass_volume__in_Serum_by_calculation>=mean_Globulin__Mass_volume__in_Serum_by_calculation^num_allergies\n", + "4827 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4828 Albumin__Mass_volume__in_Serum,Plasma<=maximum(active_care_plans,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4829 Albumin__Mass_volume__in_Serum,Plasma<=healthcare_coverage+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4830 Albumin__Mass_volume__in_Serum,Plasma<=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4831 Albumin__Mass_volume__in_Serum,Plasma<=mean_Albumin__Mass_volume__in_Serum,Plasma/num_allergies\n", + "4832 Albumin__Mass_volume__in_Serum,Plasma<=maximum(Creatinine,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4833 Albumin__Mass_volume__in_Serum,Plasma<=ceil(mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4834 Albumin__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "4835 Albumin__Mass_volume__in_Serum,Plasma<=mean_Total_Cholesterol/device_lifetime_length\n", + "4836 Albumin__Mass_volume__in_Serum,Plasma<=maximum(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/device_lifetime_length)\n", + "4837 Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "4838 Albumin__Mass_volume__in_Serum,Plasma>=minimum(mean_Albumin__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4839 Albumin__Mass_volume__in_Serum,Plasma>=encounters_count/ceil(mean_Systolic_Blood_Pressure)\n", + "4840 Albumin__Mass_volume__in_Serum,Plasma>=imaging_studies_lifetime+1\n", + "4841 Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4842 Albumin__Mass_volume__in_Serum,Plasma>=ceil(sqrt(Creatinine))\n", + "4843 Albumin__Mass_volume__in_Serum,Plasma>=-1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4844 Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4845 Albumin__Mass_volume__in_Serum,Plasma>=immunizations_lifetime+1\n", + "4846 Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4847 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma-medications_lifetime_perc_covered\n", + "4848 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma^QOLS\n", + "4849 Albumin__Mass_volume__in_Serum,Plasma>=mean_Albumin__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "4850 Albumin__Mass_volume__in_Serum,Plasma>=-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4851 Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4852 Albumin__Mass_volume__in_Serum,Plasma>=Globulin__Mass_volume__in_Serum_by_calculation+num_allergies\n", + "4853 Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4854 Protein__Mass_volume__in_Serum,Plasma<=mean_Protein__Mass_volume__in_Serum,Plasma\n", + "4855 Protein__Mass_volume__in_Serum,Plasma<=-DALY+ceil(mean_Chloride)\n", + "4856 Protein__Mass_volume__in_Serum,Plasma<=floor(Body_Height)-procedures_lifetime\n", + "4857 Protein__Mass_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "4858 Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "4859 Protein__Mass_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4860 Protein__Mass_volume__in_Serum,Plasma>=minimum(QALY,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "4861 Protein__Mass_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "4862 Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4863 Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4864 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "4865 Protein__Mass_volume__in_Serum,Plasma>=minimum(mean_Protein__Mass_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4866 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma^QOLS\n", + "4867 Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", + "4868 Protein__Mass_volume__in_Serum,Plasma>=Diastolic_Blood_Pressure-Glomerular_filtration_rate_1_73_sq_M_predicted-1\n", + "4869 Protein__Mass_volume__in_Serum,Plasma>=active_conditions*log(latitude)\n", + "4870 Protein__Mass_volume__in_Serum,Plasma>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)*Urea_Nitrogen\n", + "4871 Protein__Mass_volume__in_Serum,Plasma>=mean_Protein__Mass_volume__in_Serum,Plasma^num_allergies\n", + "4872 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4873 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=device_lifetime_length+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4874 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=-QOLS+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "4875 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=log(Carbon_Dioxide)*mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/log(10)\n", + "4876 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4877 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=2*Chloride/Creatinine\n", + "4878 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/num_allergies\n", + "4879 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_coverage+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4880 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4881 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma+2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4882 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=lifetime_care_plans+1\n", + "4883 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4884 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^num_allergies\n", + "4885 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "4886 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "4887 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4888 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4889 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=DALY-floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4890 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Potassium+mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "4891 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-immunizations_lifetime_cost+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4892 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4893 Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4894 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4895 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4896 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,2*Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "4897 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Systolic_Blood_Pressure^2/encounters_count\n", + "4898 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*e^Globulin__Mass_volume__in_Serum_by_calculation\n", + "4899 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4900 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "4901 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4902 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=1/2*device_lifetime_length+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4903 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4904 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Potassium+lifetime_conditions\n", + "4905 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4906 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported-mean_Systolic_Blood_Pressure\n", + "4907 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4908 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "4909 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^num_allergies\n", + "4910 Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4911 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4912 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(age,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4913 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4914 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4915 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4916 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=immunizations_lifetime_cost+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4917 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Total_Cholesterol-e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4918 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "4919 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Systolic_Blood_Pressure+Urea_Nitrogen\n", + "4920 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_coverage+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4921 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=minimum(healthcare_expenses,2*Total_score__MMSE_)\n", + "4922 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "4923 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "4924 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4925 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=2*Calcium+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "4926 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "4927 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^num_allergies\n", + "4928 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Carbon_Dioxide,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "4929 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4930 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "4931 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4932 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "4933 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-Respiratory_rate+floor(device_lifetime_length)\n", + "4934 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4935 Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Creatinine*log(Body_Mass_Index)\n", + "4936 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4937 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(pH_of_Urine_by_Test_strip,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4938 Bilirubin_total__Mass_volume__in_Serum,Plasma<=(1/num_allergies)\n", + "4939 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "4940 Bilirubin_total__Mass_volume__in_Serum,Plasma<=ceil(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4941 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma/num_allergies\n", + "4942 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma/QOLS\n", + "4943 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4944 Bilirubin_total__Mass_volume__in_Serum,Plasma<=10^immunizations_lifetime\n", + "4945 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(Creatinine,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4946 Bilirubin_total__Mass_volume__in_Serum,Plasma<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4947 Bilirubin_total__Mass_volume__in_Serum,Plasma<=mean_Bilirubin_total__Mass_volume__in_Serum,Plasma+medications_lifetime_perc_covered\n", + "4948 Bilirubin_total__Mass_volume__in_Serum,Plasma<=abs(log(device_lifetime_length))/log(10)\n", + "4949 Bilirubin_total__Mass_volume__in_Serum,Plasma<=sqrt(healthcare_expenses)/medications_lifetime\n", + "4950 Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_coverage+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4951 Bilirubin_total__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4952 Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "4953 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4954 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-device_lifetime_length+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4955 Bilirubin_total__Mass_volume__in_Serum,Plasma>=floor(mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4956 Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4957 Bilirubin_total__Mass_volume__in_Serum,Plasma>=floor(log(device_lifetime_length)/log(10))\n", + "4958 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(num_allergies,mean_Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "4959 Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(device_lifetime_length,1/2*QOLS)\n", + "4960 Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4961 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Calcium\n", + "4962 Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_coverage+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "4963 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "4964 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4965 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=longitude\n", + "4966 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "4967 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "4968 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "4969 Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "4970 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4971 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4972 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "4973 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "4974 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4975 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4976 Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "4977 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4978 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4979 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "4980 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "4981 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4982 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4983 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Calcium\n", + "4984 Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4985 Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4986 Platelets____volume__in_Blood_by_Automated_count<=mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4987 Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "4988 Platelets____volume__in_Blood_by_Automated_count>=mean_Platelets____volume__in_Blood_by_Automated_count\n", + "4989 Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4990 Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4991 Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "4992 Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "4993 Leukocytes____volume__in_Blood_by_Automated_count<=mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4994 Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "4995 Leukocytes____volume__in_Blood_by_Automated_count>=mean_Leukocytes____volume__in_Blood_by_Automated_count\n", + "4996 Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "4997 Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "4998 Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "4999 Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "5000 Erythrocytes____volume__in_Blood_by_Automated_count<=mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5001 Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "5002 Erythrocytes____volume__in_Blood_by_Automated_count>=mean_Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5003 Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "5004 Erythrocytes____volume__in_Blood_by_Automated_count>=Creatinine\n", + "5005 Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5006 Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5007 Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "5008 Hemoglobin__Mass_volume__in_Blood<=mean_Hemoglobin__Mass_volume__in_Blood\n", + "5009 Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "5010 Hemoglobin__Mass_volume__in_Blood>=mean_Hemoglobin__Mass_volume__in_Blood\n", + "5011 Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "5012 Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "5013 Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "5014 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "5015 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5016 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "5017 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "5018 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "5019 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "5020 Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5021 MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5022 MCV__Entitic_volume__by_Automated_count<=mean_MCV__Entitic_volume__by_Automated_count\n", + "5023 MCV__Entitic_volume__by_Automated_count>=latitude\n", + "5024 MCV__Entitic_volume__by_Automated_count>=mean_MCV__Entitic_volume__by_Automated_count\n", + "5025 MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5026 MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5027 MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "5028 MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "5029 MCH__Entitic_mass__by_Automated_count<=mean_MCH__Entitic_mass__by_Automated_count\n", + "5030 MCH__Entitic_mass__by_Automated_count>=longitude\n", + "5031 MCH__Entitic_mass__by_Automated_count>=mean_MCH__Entitic_mass__by_Automated_count\n", + "5032 MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "5033 MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "5034 MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5035 MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "5036 MCHC__Mass_volume__by_Automated_count<=mean_MCHC__Mass_volume__by_Automated_count\n", + "5037 MCHC__Mass_volume__by_Automated_count>=longitude\n", + "5038 MCHC__Mass_volume__by_Automated_count>=mean_MCHC__Mass_volume__by_Automated_count\n", + "5039 MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "5040 MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5041 MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5042 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "5043 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5044 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "5045 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "5046 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "5047 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "5048 Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "5049 Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "5050 Estimated_Glomerular_Filtration_Rate<=active_care_plans+floor(mean_Estimated_Glomerular_Filtration_Rate)\n", + "5051 Estimated_Glomerular_Filtration_Rate<=2*healthcare_expenses/procedures_lifetime_cost\n", + "5052 Estimated_Glomerular_Filtration_Rate<=maximum(latitude,mean_Estimated_Glomerular_Filtration_Rate)\n", + "5053 Estimated_Glomerular_Filtration_Rate<=(mean_Estimated_Glomerular_Filtration_Rate-1)/num_allergies\n", + "5054 Estimated_Glomerular_Filtration_Rate<=sqrt(10^mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5055 Estimated_Glomerular_Filtration_Rate<=active_conditions^(10^encounters_lifetime_perc_covered)\n", + "5056 Estimated_Glomerular_Filtration_Rate<=maximum(Body_Mass_Index,mean_Estimated_Glomerular_Filtration_Rate)\n", + "5057 Estimated_Glomerular_Filtration_Rate<=10^medications_active*Carbon_Dioxide\n", + "5058 Estimated_Glomerular_Filtration_Rate<=mean_Estimated_Glomerular_Filtration_Rate+procedures_lifetime+1\n", + "5059 Estimated_Glomerular_Filtration_Rate<=(encounters_lifetime_perc_covered+1)^mean_Carbon_Dioxide\n", + "5060 Estimated_Glomerular_Filtration_Rate<=minimum(healthcare_expenses,2*Weight_difference__Mass_difference____pre_dialysis___post_dialysis)\n", + "5061 Estimated_Glomerular_Filtration_Rate<=healthcare_expenses/Body_Weight^2\n", + "5062 Estimated_Glomerular_Filtration_Rate<=maximum(mean_Estimated_Glomerular_Filtration_Rate,1/2*lifetime_care_plan_length)\n", + "5063 Estimated_Glomerular_Filtration_Rate<=Diastolic_Blood_Pressure^2/Microalbumin_Creatinine_Ratio\n", + "5064 Estimated_Glomerular_Filtration_Rate<=Low_Density_Lipoprotein_Cholesterol^2/mean_Microalbumin_Creatinine_Ratio\n", + "5065 Estimated_Glomerular_Filtration_Rate<=Sodium^2/medications_lifetime\n", + "5066 Estimated_Glomerular_Filtration_Rate<=2*QOLS*mean_Systolic_Blood_Pressure\n", + "5067 Estimated_Glomerular_Filtration_Rate<=mean_Estimated_Glomerular_Filtration_Rate^2-QALY\n", + "5068 Estimated_Glomerular_Filtration_Rate<=ceil(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)+mean_Estimated_Glomerular_Filtration_Rate\n", + "5069 Estimated_Glomerular_Filtration_Rate<=minimum(healthcare_expenses,1/2*Body_temperature)\n", + "5070 Estimated_Glomerular_Filtration_Rate<=mean_Glucose^2/encounters_count\n", + "5071 Estimated_Glomerular_Filtration_Rate>=longitude\n", + "5072 Estimated_Glomerular_Filtration_Rate>=-Chloride+1/2*Total_Cholesterol\n", + "5073 Estimated_Glomerular_Filtration_Rate>=Potassium-QOLS-1\n", + "5074 Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "5075 Estimated_Glomerular_Filtration_Rate>=-Carbon_Dioxide+1/2*QALY\n", + "5076 Estimated_Glomerular_Filtration_Rate>=mean_Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost\n", + "5077 Estimated_Glomerular_Filtration_Rate>=minimum(device_lifetime_length,2*Weight_difference__Mass_difference____pre_dialysis___post_dialysis)\n", + "5078 Estimated_Glomerular_Filtration_Rate>=immunizations_lifetime^log(Heart_rate)\n", + "5079 Estimated_Glomerular_Filtration_Rate>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-mean_Respiratory_rate\n", + "5080 Estimated_Glomerular_Filtration_Rate>=2*active_care_plan_length-medications_lifetime\n", + "5081 Estimated_Glomerular_Filtration_Rate>=2*DALY-age\n", + "5082 Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "5083 Estimated_Glomerular_Filtration_Rate>=2*Body_Mass_Index-mean_Microalbumin_Creatinine_Ratio\n", + "5084 Estimated_Glomerular_Filtration_Rate>=-Body_Height+1/2*mean_Triglycerides\n", + "5085 Estimated_Glomerular_Filtration_Rate>=2*mean_Calcium*num_allergies\n", + "5086 Estimated_Glomerular_Filtration_Rate>=minimum(active_conditions,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5087 Estimated_Glomerular_Filtration_Rate>=minimum(mean_Urea_Nitrogen,mean_Bilirubin_total__Mass_volume__in_Urine_by_Test_strip)\n", + "5088 Estimated_Glomerular_Filtration_Rate>=minimum(mean_Estimated_Glomerular_Filtration_Rate,1/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5089 Estimated_Glomerular_Filtration_Rate>=1/2*Chloride-Microalbumin_Creatinine_Ratio\n", + "5090 Estimated_Glomerular_Filtration_Rate>=ceil(mean_High_Density_Lipoprotein_Cholesterol)-mean_Microalbumin_Creatinine_Ratio\n", + "5091 Estimated_Glomerular_Filtration_Rate>=Diastolic_Blood_Pressure-age-1\n", + "5092 Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "5093 Estimated_Glomerular_Filtration_Rate>=minimum(Urea_Nitrogen,1/medications_active)\n", + "5094 Estimated_Glomerular_Filtration_Rate>=-active_condition_length+1/2*mean_Diastolic_Blood_Pressure\n", + "5095 Estimated_Glomerular_Filtration_Rate>=(1/2*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^Hemoglobin__Mass_volume__in_Blood\n", + "5096 Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "5097 Microalbumin_Creatinine_Ratio<=maximum(mean_Glucose,e^DALY)\n", + "5098 Microalbumin_Creatinine_Ratio<=sqrt(healthcare_expenses)-Body_Height\n", + "5099 Microalbumin_Creatinine_Ratio<=mean_Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "5100 Microalbumin_Creatinine_Ratio<=2*High_Density_Lipoprotein_Cholesterol+lifetime_condition_length\n", + "5101 Microalbumin_Creatinine_Ratio<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Systolic_Blood_Pressure\n", + "5102 Microalbumin_Creatinine_Ratio<=mean_Low_Density_Lipoprotein_Cholesterol^2/mean_Urea_Nitrogen\n", + "5103 Microalbumin_Creatinine_Ratio<=mean_Systolic_Blood_Pressure+medications_lifetime+1\n", + "5104 Microalbumin_Creatinine_Ratio<=encounters_lifetime_perc_covered^2*medications_lifetime_length\n", + "5105 Microalbumin_Creatinine_Ratio<=Urea_Nitrogen*e^mean_Creatinine\n", + "5106 Microalbumin_Creatinine_Ratio<=1/4*mean_High_Density_Lipoprotein_Cholesterol^2\n", + "5107 Microalbumin_Creatinine_Ratio<=Heart_rate*mean_Estimated_Glomerular_Filtration_Rate\n", + "5108 Microalbumin_Creatinine_Ratio<=10^medications_lifetime_perc_covered*mean_Microalbumin_Creatinine_Ratio\n", + "5109 Microalbumin_Creatinine_Ratio<=(Body_Height-1)/num_allergies\n", + "5110 Microalbumin_Creatinine_Ratio<=QALY^2*QOLS\n", + "5111 Microalbumin_Creatinine_Ratio<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*mean_Microalbumin_Creatinine_Ratio\n", + "5112 Microalbumin_Creatinine_Ratio<=QALY^2-lifetime_condition_length\n", + "5113 Microalbumin_Creatinine_Ratio<=Heart_rate^2/mean_Estimated_Glomerular_Filtration_Rate\n", + "5114 Microalbumin_Creatinine_Ratio<=sqrt(healthcare_coverage)+Low_Density_Lipoprotein_Cholesterol\n", + "5115 Microalbumin_Creatinine_Ratio<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*mean_Microalbumin_Creatinine_Ratio\n", + "5116 Microalbumin_Creatinine_Ratio<=ceil(mean_Chloride)+mean_Microalbumin_Creatinine_Ratio\n", + "5117 Microalbumin_Creatinine_Ratio<=2*mean_Microalbumin_Creatinine_Ratio-procedures_lifetime\n", + "5118 Microalbumin_Creatinine_Ratio>=longitude\n", + "5119 Microalbumin_Creatinine_Ratio>=floor(QALY)-mean_Estimated_Glomerular_Filtration_Rate\n", + "5120 Microalbumin_Creatinine_Ratio>=-Low_Density_Lipoprotein_Cholesterol+ceil(mean_Microalbumin_Creatinine_Ratio)\n", + "5121 Microalbumin_Creatinine_Ratio>=Potassium+QOLS\n", + "5122 Microalbumin_Creatinine_Ratio>=(Body_Height-1)^num_allergies\n", + "5123 Microalbumin_Creatinine_Ratio>=log(procedures_lifetime_cost)/encounters_lifetime_perc_covered\n", + "5124 Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "5125 Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "5126 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio-procedures_lifetime_cost\n", + "5127 Microalbumin_Creatinine_Ratio>=mean_Microalbumin_Creatinine_Ratio-medications_lifetime+1\n", + "5128 Microalbumin_Creatinine_Ratio>=minimum(Body_Mass_Index,mean_Microalbumin_Creatinine_Ratio)\n", + "5129 Microalbumin_Creatinine_Ratio>=-Total_Cholesterol+Triglycerides+1\n", + "5130 Microalbumin_Creatinine_Ratio>=(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^Hemoglobin__Mass_volume__in_Blood\n", + "5131 Microalbumin_Creatinine_Ratio>=active_condition_length*sqrt(device_lifetime_length)\n", + "5132 Microalbumin_Creatinine_Ratio>=-Systolic_Blood_Pressure+1/2*encounters_count\n", + "5133 Microalbumin_Creatinine_Ratio>=encounters_count/mean_Calcium\n", + "5134 Microalbumin_Creatinine_Ratio>=minimum(Diastolic_Blood_Pressure,1/medications_active)\n", + "5135 Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "5136 Microalbumin_Creatinine_Ratio>=ceil(mean_Carbon_Dioxide)-immunizations_lifetime_cost\n", + "5137 Microalbumin_Creatinine_Ratio>=log(device_lifetime_length)/log(10)+mean_Microalbumin_Creatinine_Ratio\n", + "5138 Microalbumin_Creatinine_Ratio>=floor(mean_Microalbumin_Creatinine_Ratio)-mean_Low_Density_Lipoprotein_Cholesterol\n", + "5139 Microalbumin_Creatinine_Ratio>=e^medications_active/mean_Calcium\n", + "5140 Microalbumin_Creatinine_Ratio>=minimum(Body_Weight,1/medications_active)\n", + "5141 Microalbumin_Creatinine_Ratio>=1/2*procedures_lifetime_cost/lifetime_condition_length\n", + "5142 Microalbumin_Creatinine_Ratio>=-DALY+1/2*mean_Microalbumin_Creatinine_Ratio\n", + "5143 Microalbumin_Creatinine_Ratio>=healthcare_coverage^(1/Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5144 mean_Body_Height<=healthcare_expenses\n", + "5145 mean_Body_Height<=ceil(Body_Height)\n", + "5146 mean_Body_Height<=maximum(lifetime_condition_length,Body_Height)\n", + "5147 mean_Body_Height<=maximum(encounters_count,Body_Height)\n", + "5148 mean_Body_Height<=1/healthcare_expenses+Body_Height\n", + "5149 mean_Body_Height<=Body_Height/num_allergies\n", + "5150 mean_Body_Height<=Body_Height+active_care_plans\n", + "5151 mean_Body_Height<=Body_Height+immunizations_lifetime\n", + "5152 mean_Body_Height<=maximum(Body_Height,2*lifetime_care_plan_length)\n", + "5153 mean_Body_Height<=Body_Height+medications_active\n", + "5154 mean_Body_Height<=maximum(Body_Height,1/2*medications_lifetime)\n", + "5155 mean_Body_Height<=maximum(Body_Height,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5156 mean_Body_Height<=maximum(Body_Height,mean_Triglycerides)\n", + "5157 mean_Body_Height>=latitude\n", + "5158 mean_Body_Height>=floor(Body_Height)\n", + "5159 mean_Body_Height>=healthcare_expenses^longitude\n", + "5160 mean_Body_Height>=Body_Height^num_allergies\n", + "5161 mean_Body_Height>=Body_Height-active_care_plans\n", + "5162 mean_Body_Height>=1/longitude+Body_Height\n", + "5163 mean_Body_Height>=minimum(immunizations_lifetime_cost,Body_Height)\n", + "5164 mean_Body_Height>=Body_Height-medications_lifetime\n", + "5165 mean_Body_Height>=Body_Height-medications_lifetime_perc_covered\n", + "5166 mean_Body_Height>=Body_Height-procedures_lifetime\n", + "5167 mean_Body_Height>=Body_Height^QOLS\n", + "5168 mean_Body_Height>=Body_Height*log(lifetime_care_plans)/log(10)\n", + "5169 mean_Body_Height>=minimum(Systolic_Blood_Pressure,Body_Height)\n", + "5170 mean_Body_Height>=Body_Height-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5171 mean_Body_Height>=minimum(Body_Height,Creatinine^2)\n", + "5172 mean_Body_Height>=minimum(Body_Height,Low_Density_Lipoprotein_Cholesterol)\n", + "5173 mean_Body_Height>=minimum(Body_Height,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5174 mean_Body_Height>=minimum(Body_Height,Glucose)\n", + "5175 mean_Body_Height>=minimum(Body_Height,Estimated_Glomerular_Filtration_Rate)\n", + "5176 mean_Body_Height>=minimum(latitude,10^healthcare_expenses)\n", + "5177 mean_Body_Mass_Index<=healthcare_expenses\n", + "5178 mean_Body_Mass_Index<=Body_Mass_Index+encounters_lifetime_perc_covered\n", + "5179 mean_Body_Mass_Index<=floor(age)\n", + "5180 mean_Body_Mass_Index<=Body_Mass_Index+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5181 mean_Body_Mass_Index<=maximum(medications_lifetime,Body_Mass_Index)\n", + "5182 mean_Body_Mass_Index<=Body_Mass_Index+active_care_plans\n", + "5183 mean_Body_Mass_Index<=maximum(Body_Mass_Index,Carbon_Dioxide)\n", + "5184 mean_Body_Mass_Index<=maximum(encounters_count,Body_Mass_Index)\n", + "5185 mean_Body_Mass_Index<=Body_Mass_Index+medications_lifetime_perc_covered\n", + "5186 mean_Body_Mass_Index<=Body_Mass_Index+medications_active\n", + "5187 mean_Body_Mass_Index<=Body_Mass_Index+procedures_lifetime\n", + "5188 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*age)\n", + "5189 mean_Body_Mass_Index<=Body_Mass_Index/QOLS\n", + "5190 mean_Body_Mass_Index<=maximum(QALY,Body_Mass_Index)\n", + "5191 mean_Body_Mass_Index<=Body_Mass_Index^lifetime_conditions\n", + "5192 mean_Body_Mass_Index<=Body_Mass_Index/num_allergies\n", + "5193 mean_Body_Mass_Index<=maximum(lifetime_condition_length,Body_Mass_Index)\n", + "5194 mean_Body_Mass_Index<=maximum(Body_Mass_Index,1/2*encounters_count)\n", + "5195 mean_Body_Mass_Index<=maximum(Body_Mass_Index,10^Creatinine)\n", + "5196 mean_Body_Mass_Index<=maximum(Body_Mass_Index,active_conditions^2)\n", + "5197 mean_Body_Mass_Index<=2*encounters_lifetime_payer_coverage/Microalbumin_Creatinine_Ratio\n", + "5198 mean_Body_Mass_Index<=Body_Mass_Index-medications_lifetime_perc_covered+1\n", + "5199 mean_Body_Mass_Index>=longitude\n", + "5200 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Carbon_Dioxide)\n", + "5201 mean_Body_Mass_Index>=Body_Mass_Index-encounters_lifetime_perc_covered\n", + "5202 mean_Body_Mass_Index>=healthcare_expenses^longitude\n", + "5203 mean_Body_Mass_Index>=minimum(device_lifetime_length,Body_Mass_Index)\n", + "5204 mean_Body_Mass_Index>=Body_Mass_Index-medications_lifetime\n", + "5205 mean_Body_Mass_Index>=Body_Mass_Index-procedures_lifetime\n", + "5206 mean_Body_Mass_Index>=Body_Mass_Index-QOLS\n", + "5207 mean_Body_Mass_Index>=Body_Mass_Index-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5208 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^device_lifetime_length)\n", + "5209 mean_Body_Mass_Index>=Body_Mass_Index^QOLS\n", + "5210 mean_Body_Mass_Index>=Body_Mass_Index-active_care_plans\n", + "5211 mean_Body_Mass_Index>=Body_Mass_Index/lifetime_conditions\n", + "5212 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine)\n", + "5213 mean_Body_Mass_Index>=log(encounters_lifetime_perc_covered)/log(10)+Body_Mass_Index\n", + "5214 mean_Body_Mass_Index>=minimum(Body_Mass_Index,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "5215 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5216 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Carbon_Dioxide+1)\n", + "5217 mean_Body_Mass_Index>=minimum(Body_Mass_Index,10^immunizations_lifetime)\n", + "5218 mean_Body_Mass_Index>=(2*MCHC__Mass_volume__by_Automated_count)^medications_lifetime_perc_covered\n", + "5219 mean_Body_Mass_Index>=1/2*Total_Cholesterol/Potassium\n", + "5220 mean_Body_Mass_Index>=Erythrocytes____volume__in_Blood_by_Automated_count^2+1\n", + "5221 mean_Body_Mass_Index>=(10^healthcare_expenses)^longitude\n", + "5222 mean_Body_Mass_Index>=minimum(Body_Mass_Index,Creatinine^2)\n", + "5223 mean_Body_Mass_Index>=floor(DALY)-mean_Carbon_Dioxide\n", + "5224 mean_Body_Mass_Index>=minimum(Body_Mass_Index,medications_active^2)\n", + "5225 mean_Body_Mass_Index>=sqrt(procedures_lifetime_cost)/Carbon_Dioxide\n", + "5226 mean_Body_Mass_Index>=floor(Body_Mass_Index)-num_allergies\n", + "5227 mean_Body_Mass_Index>=floor(Carbon_Dioxide)/active_care_plans\n", + "5228 mean_Body_Mass_Index>=Calcium*log(Hemoglobin__Mass_volume__in_Blood)\n", + "5229 mean_Body_Mass_Index>=-Calcium+MCHC__Mass_volume__by_Automated_count+1\n", + "5230 mean_Body_Weight<=healthcare_expenses\n", + "5231 mean_Body_Weight<=ceil(Body_Weight)\n", + "5232 mean_Body_Weight<=maximum(encounters_count,Body_Weight)\n", + "5233 mean_Body_Weight<=Body_Weight/num_allergies\n", + "5234 mean_Body_Weight<=Body_Weight+active_care_plans\n", + "5235 mean_Body_Weight<=Body_Weight^lifetime_conditions\n", + "5236 mean_Body_Weight<=maximum(lifetime_condition_length,Body_Weight)\n", + "5237 mean_Body_Weight<=maximum(medications_lifetime,Body_Weight)\n", + "5238 mean_Body_Weight<=Body_Weight+medications_active\n", + "5239 mean_Body_Weight<=Body_Weight+procedures_lifetime\n", + "5240 mean_Body_Weight<=Body_Weight+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5241 mean_Body_Weight<=1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Body_Weight\n", + "5242 mean_Body_Weight<=maximum(Body_Weight,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5243 mean_Body_Weight<=Estimated_Glomerular_Filtration_Rate+2*Microalbumin_Creatinine_Ratio\n", + "5244 mean_Body_Weight<=log(Potassium)/log(10)+Body_Weight\n", + "5245 mean_Body_Weight<=maximum(Body_Weight,active_conditions^2)\n", + "5246 mean_Body_Weight<=Carbon_Dioxide^2/mean_Potassium\n", + "5247 mean_Body_Weight<=Low_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide+1\n", + "5248 mean_Body_Weight<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^Urea_Nitrogen\n", + "5249 mean_Body_Weight<=maximum(Body_Weight,e^Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5250 mean_Body_Weight<=1/Protein__Mass_volume__in_Serum,Plasma+Body_Weight\n", + "5251 mean_Body_Weight>=latitude\n", + "5252 mean_Body_Weight>=Body_Weight-1\n", + "5253 mean_Body_Weight>=healthcare_expenses^longitude\n", + "5254 mean_Body_Weight>=minimum(Body_Weight,High_Density_Lipoprotein_Cholesterol)\n", + "5255 mean_Body_Weight>=minimum(Body_Weight,Creatinine)\n", + "5256 mean_Body_Weight>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+active_care_plan_length\n", + "5257 mean_Body_Weight>=minimum(Body_Weight,Estimated_Glomerular_Filtration_Rate)\n", + "5258 mean_Body_Weight>=minimum(Body_Weight,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5259 mean_Body_Weight>=Body_Weight-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5260 mean_Body_Weight>=-mean_Carbon_Dioxide+procedures_lifetime\n", + "5261 mean_Body_Weight>=maximum(Body_Weight,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5262 mean_Body_Weight>=Body_Weight-active_care_plans\n", + "5263 mean_Body_Weight>=Body_Weight/lifetime_conditions\n", + "5264 mean_Body_Weight>=Body_Weight-medications_lifetime\n", + "5265 mean_Body_Weight>=Body_Weight-procedures_lifetime\n", + "5266 mean_Body_Weight>=Body_Weight^QOLS\n", + "5267 mean_Body_Weight>=1/Estimated_Glomerular_Filtration_Rate+mean_High_Density_Lipoprotein_Cholesterol\n", + "5268 mean_Body_Weight>=minimum(Body_Weight,lifetime_care_plans^2)\n", + "5269 mean_Body_Weight>=minimum(latitude,10^healthcare_expenses)\n", + "5270 mean_Body_Weight>=maximum(Body_Weight,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5271 mean_Body_Weight>=sqrt(age)/QOLS\n", + "5272 mean_Body_Weight>=minimum(age,floor(Body_Weight))\n", + "5273 mean_Body_Weight>=(immunizations_lifetime_cost+1)^History_of_Hospitalizations_Outpatient_visits\n", + "5274 mean_Body_Weight>=floor(Body_Weight)-immunizations_lifetime\n", + "5275 mean_Body_Weight>=-QOLS+floor(Body_Weight)\n", + "5276 mean_Calcium<=healthcare_expenses\n", + "5277 mean_Calcium<=Calcium+healthcare_coverage\n", + "5278 mean_Calcium<=sqrt(QOLS)+Calcium\n", + "5279 mean_Calcium<=ceil(Calcium)+procedures_lifetime\n", + "5280 mean_Calcium<=1/2*Carbon_Dioxide-medications_lifetime_perc_covered\n", + "5281 mean_Calcium<=(Estimated_Glomerular_Filtration_Rate-1)^Potassium\n", + "5282 mean_Calcium<=sqrt(QALY)+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5283 mean_Calcium<=2*Albumin__Mass_volume__in_Serum,Plasma/encounters_lifetime_perc_covered\n", + "5284 mean_Calcium<=(Glucose-1)/medications_active\n", + "5285 mean_Calcium<=10^(10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5286 mean_Calcium<=maximum(Calcium,sqrt(Chloride))\n", + "5287 mean_Calcium<=maximum(encounters_count,Calcium)\n", + "5288 mean_Calcium<=maximum(Calcium,2*active_conditions)\n", + "5289 mean_Calcium<=Calcium/num_allergies\n", + "5290 mean_Calcium<=Calcium/QOLS\n", + "5291 mean_Calcium<=Calcium^active_care_plans\n", + "5292 mean_Calcium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Urea_Nitrogen-1\n", + "5293 mean_Calcium<=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+1/2*High_Density_Lipoprotein_Cholesterol\n", + "5294 mean_Calcium<=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1)^Creatinine\n", + "5295 mean_Calcium<=sqrt(medications_active)+mean_Estimated_Glomerular_Filtration_Rate\n", + "5296 mean_Calcium<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Leukocytes____volume__in_Blood_by_Automated_count\n", + "5297 mean_Calcium<=maximum(Respiratory_rate,Calcium)\n", + "5298 mean_Calcium<=floor(MCV__Entitic_volume__by_Automated_count)+longitude\n", + "5299 mean_Calcium<=maximum(active_care_plan_length,Calcium)\n", + "5300 mean_Calcium<=log(Low_Density_Lipoprotein_Cholesterol)/log(10)+mean_Estimated_Glomerular_Filtration_Rate\n", + "5301 mean_Calcium<=2*Calcium*Creatinine\n", + "5302 mean_Calcium<=maximum(Calcium,mean_Urea_Nitrogen)\n", + "5303 mean_Calcium<=maximum(DALY,ceil(Calcium))\n", + "5304 mean_Calcium<=Urea_Nitrogen+procedures_lifetime_cost\n", + "5305 mean_Calcium<=Calcium^active_conditions\n", + "5306 mean_Calcium<=maximum(medications_lifetime,Calcium)\n", + "5307 mean_Calcium<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5308 mean_Calcium<=1/MCV__Entitic_volume__by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5309 mean_Calcium<=ceil(active_care_plan_length)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5310 mean_Calcium<=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)+medications_lifetime_perc_covered\n", + "5311 mean_Calcium<=maximum(Triglycerides,Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5312 mean_Calcium<=ceil(QALY)/Albumin__Mass_volume__in_Serum,Plasma\n", + "5313 mean_Calcium<=e^Albumin__Mass_volume__in_Serum,Plasma/mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "5314 mean_Calcium<=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Urea_Nitrogen+1\n", + "5315 mean_Calcium<=MCH__Entitic_mass__by_Automated_count^2/MCV__Entitic_volume__by_Automated_count\n", + "5316 mean_Calcium<=1/2*QOLS*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5317 mean_Calcium<=2*QOLS*mean_High_Density_Lipoprotein_Cholesterol\n", + "5318 mean_Calcium<=Body_Mass_Index^2/active_care_plan_length\n", + "5319 mean_Calcium<=sqrt(Systolic_Blood_Pressure)-medications_lifetime_perc_covered\n", + "5320 mean_Calcium<=ceil(Calcium)+encounters_lifetime_perc_covered\n", + "5321 mean_Calcium<=sqrt(Calcium)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5322 mean_Calcium<=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)+Calcium\n", + "5323 mean_Calcium<=maximum(Urea_Nitrogen,1/2*Estimated_Glomerular_Filtration_Rate)\n", + "5324 mean_Calcium>=longitude\n", + "5325 mean_Calcium>=minimum(medications_active,Calcium)\n", + "5326 mean_Calcium>=Calcium-1\n", + "5327 mean_Calcium>=encounters_count/Microalbumin_Creatinine_Ratio\n", + "5328 mean_Calcium>=log(e^Urea_Nitrogen)/log(10)\n", + "5329 mean_Calcium>=Calcium-procedures_lifetime\n", + "5330 mean_Calcium>=(medications_lifetime+1)/mean_Glucose\n", + "5331 mean_Calcium>=-DALY+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5332 mean_Calcium>=log(encounters_lifetime_total_cost)*medications_lifetime_perc_covered\n", + "5333 mean_Calcium>=Calcium^QOLS\n", + "5334 mean_Calcium>=-healthcare_expenses\n", + "5335 mean_Calcium>=healthcare_expenses^longitude\n", + "5336 mean_Calcium>=encounters_count/mean_Microalbumin_Creatinine_Ratio\n", + "5337 mean_Calcium>=(Creatinine+1)/Estimated_Glomerular_Filtration_Rate\n", + "5338 mean_Calcium>=Calcium-Creatinine\n", + "5339 mean_Calcium>=-Creatinine+lifetime_care_plans+1\n", + "5340 mean_Calcium>=Calcium-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5341 mean_Calcium>=sqrt(medications_lifetime_length)/encounters_count\n", + "5342 mean_Calcium>=Calcium*QOLS\n", + "5343 mean_Calcium>=2*medications_lifetime/Total_Cholesterol\n", + "5344 mean_Calcium>=sqrt(Creatinine)*Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5345 mean_Calcium>=log(QALY^2)\n", + "5346 mean_Calcium>=ceil(Body_Weight)/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5347 mean_Calcium>=sqrt(Glucose)*medications_lifetime_perc_covered\n", + "5348 mean_Calcium>=minimum(Calcium,e^immunizations_lifetime)\n", + "5349 mean_Calcium>=(lifetime_conditions-1)^mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5350 mean_Calcium>=sqrt(High_Density_Lipoprotein_Cholesterol)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5351 mean_Calcium>=1/2*Triglycerides/mean_Carbon_Dioxide\n", + "5352 mean_Calcium>=2*Low_Density_Lipoprotein_Cholesterol/MCH__Entitic_mass__by_Automated_count\n", + "5353 mean_Calcium>=Leukocytes____volume__in_Blood_by_Automated_count-immunizations_lifetime_cost+1\n", + "5354 mean_Calcium>=Calcium-medications_lifetime\n", + "5355 mean_Calcium>=minimum(Calcium,-Triglycerides)\n", + "5356 mean_Calcium>=Calcium-healthcare_coverage\n", + "5357 mean_Calcium>=Calcium/active_conditions\n", + "5358 mean_Calcium>=(Albumin__Mass_volume__in_Serum,Plasma^2)^encounters_lifetime_perc_covered\n", + "5359 mean_Calcium>=minimum(Calcium,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5360 mean_Calcium>=sqrt(Microalbumin_Creatinine_Ratio)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5361 mean_Calcium>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*log(Creatinine)\n", + "5362 mean_Calcium>=sqrt(Body_Weight)-Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5363 mean_Calcium>=sqrt(Chloride)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5364 mean_Calcium>=(10^healthcare_expenses)^longitude\n", + "5365 mean_Calcium>=log(active_conditions)*mean_Creatinine/log(10)\n", + "5366 mean_Calcium>=1/2*Urea_Nitrogen/active_care_plans\n", + "5367 mean_Calcium>=log(Total_Cholesterol)+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5368 mean_Calcium>=Systolic_Blood_Pressure*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)/log(10)\n", + "5369 mean_Calcium>=sqrt(Body_Weight)^num_allergies\n", + "5370 mean_Carbon_Dioxide<=healthcare_expenses\n", + "5371 mean_Carbon_Dioxide<=Chloride-active_care_plan_length-1\n", + "5372 mean_Carbon_Dioxide<=maximum(active_care_plan_length,Carbon_Dioxide)\n", + "5373 mean_Carbon_Dioxide<=2*Leukocytes____volume__in_Blood_by_Automated_count^2\n", + "5374 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,MCH__Entitic_mass__by_Automated_count)\n", + "5375 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "5376 mean_Carbon_Dioxide<=Carbon_Dioxide/QOLS\n", + "5377 mean_Carbon_Dioxide<=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted*mean_Calcium\n", + "5378 mean_Carbon_Dioxide<=Carbon_Dioxide+e^procedures_lifetime\n", + "5379 mean_Carbon_Dioxide<=-Respiratory_rate+ceil(latitude)\n", + "5380 mean_Carbon_Dioxide<=latitude-lifetime_conditions\n", + "5381 mean_Carbon_Dioxide<=Carbon_Dioxide+healthcare_coverage\n", + "5382 mean_Carbon_Dioxide<=Microalbumin_Creatinine_Ratio+immunizations_lifetime_cost\n", + "5383 mean_Carbon_Dioxide<=2*Carbon_Dioxide*Creatinine\n", + "5384 mean_Carbon_Dioxide<=e^Calcium/Body_Height\n", + "5385 mean_Carbon_Dioxide<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+2*Respiratory_rate\n", + "5386 mean_Carbon_Dioxide<=Carbon_Dioxide+medications_lifetime\n", + "5387 mean_Carbon_Dioxide<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(active_condition_length)\n", + "5388 mean_Carbon_Dioxide<=Leukocytes____volume__in_Blood_by_Automated_count^2+Respiratory_rate\n", + "5389 mean_Carbon_Dioxide<=sqrt(Chloride)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5390 mean_Carbon_Dioxide<=maximum(medications_lifetime_length,Carbon_Dioxide)\n", + "5391 mean_Carbon_Dioxide<=log(active_conditions)^Microalbumin_Creatinine_Ratio\n", + "5392 mean_Carbon_Dioxide<=(Calcium+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5393 mean_Carbon_Dioxide<=Carbon_Dioxide+procedures_lifetime_cost\n", + "5394 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,e^DALY)\n", + "5395 mean_Carbon_Dioxide<=maximum(Heart_rate,Carbon_Dioxide)\n", + "5396 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,sqrt(procedures_lifetime_cost))\n", + "5397 mean_Carbon_Dioxide<=Carbon_Dioxide^active_care_plans\n", + "5398 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "5399 mean_Carbon_Dioxide<=Calcium+e^Estimated_Glomerular_Filtration_Rate\n", + "5400 mean_Carbon_Dioxide<=High_Density_Lipoprotein_Cholesterol-Potassium\n", + "5401 mean_Carbon_Dioxide<=e^Calcium/Triglycerides\n", + "5402 mean_Carbon_Dioxide<=maximum(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)\n", + "5403 mean_Carbon_Dioxide<=(Sodium+1)/Potassium\n", + "5404 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,1/2*age)\n", + "5405 mean_Carbon_Dioxide<=maximum(mean_Microalbumin_Creatinine_Ratio,Hemoglobin_A1c_Hemoglobin_total_in_Blood^2)\n", + "5406 mean_Carbon_Dioxide<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,1/2*FEV1_FVC)\n", + "5407 mean_Carbon_Dioxide<=Carbon_Dioxide^2/Urea_Nitrogen\n", + "5408 mean_Carbon_Dioxide<=Body_Weight*sqrt(QOLS)\n", + "5409 mean_Carbon_Dioxide<=Carbon_Dioxide+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5410 mean_Carbon_Dioxide<=Carbon_Dioxide+1/2*lifetime_conditions\n", + "5411 mean_Carbon_Dioxide<=10^Albumin__Mass_volume__in_Serum,Plasma/Triglycerides\n", + "5412 mean_Carbon_Dioxide<=QALY*log(Urea_Nitrogen)/log(10)\n", + "5413 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,DALY^2)\n", + "5414 mean_Carbon_Dioxide<=Carbon_Dioxide+log(Glucose)\n", + "5415 mean_Carbon_Dioxide<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count-procedures_lifetime-1\n", + "5416 mean_Carbon_Dioxide<=maximum(Carbon_Dioxide,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)\n", + "5417 mean_Carbon_Dioxide<=Urea_Nitrogen+e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5418 mean_Carbon_Dioxide>=longitude\n", + "5419 mean_Carbon_Dioxide>=Potassium*log(Body_Weight)\n", + "5420 mean_Carbon_Dioxide>=Albumin__Mass_volume__in_Serum,Plasma*sqrt(Creatinine)\n", + "5421 mean_Carbon_Dioxide>=minimum(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,Carbon_Dioxide-1)\n", + "5422 mean_Carbon_Dioxide>=Calcium+1/2*Carbon_Dioxide\n", + "5423 mean_Carbon_Dioxide>=Carbon_Dioxide^QOLS\n", + "5424 mean_Carbon_Dioxide>=(QALY-1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5425 mean_Carbon_Dioxide>=Carbon_Dioxide/active_conditions\n", + "5426 mean_Carbon_Dioxide>=Calcium*log(lifetime_care_plan_length)/log(10)\n", + "5427 mean_Carbon_Dioxide>=-Respiratory_rate+ceil(MCHC__Mass_volume__by_Automated_count)\n", + "5428 mean_Carbon_Dioxide>=-healthcare_expenses\n", + "5429 mean_Carbon_Dioxide>=2*lifetime_condition_length/active_condition_length\n", + "5430 mean_Carbon_Dioxide>=1/2*Triglycerides/mean_Calcium\n", + "5431 mean_Carbon_Dioxide>=-Body_Weight+procedures_lifetime\n", + "5432 mean_Carbon_Dioxide>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5433 mean_Carbon_Dioxide>=healthcare_expenses^longitude\n", + "5434 mean_Carbon_Dioxide>=Carbon_Dioxide-DALY\n", + "5435 mean_Carbon_Dioxide>=(Sodium+1)/Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5436 mean_Carbon_Dioxide>=Carbon_Dioxide*QOLS\n", + "5437 mean_Carbon_Dioxide>=2*Body_Weight/Urea_Nitrogen\n", + "5438 mean_Carbon_Dioxide>=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-immunizations_lifetime\n", + "5439 mean_Carbon_Dioxide>=(1/2*Diastolic_Blood_Pressure)^medications_lifetime_perc_covered\n", + "5440 mean_Carbon_Dioxide>=Body_Weight-Low_Density_Lipoprotein_Cholesterol-1\n", + "5441 mean_Carbon_Dioxide>=immunizations_lifetime_cost*log(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5442 mean_Carbon_Dioxide>=minimum(Estimated_Glomerular_Filtration_Rate,DALY-1)\n", + "5443 mean_Carbon_Dioxide>=Carbon_Dioxide-healthcare_coverage\n", + "5444 mean_Carbon_Dioxide>=sqrt(healthcare_coverage)/Microalbumin_Creatinine_Ratio\n", + "5445 mean_Carbon_Dioxide>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)*encounters_lifetime_perc_covered\n", + "5446 mean_Carbon_Dioxide>=sqrt(medications_lifetime)-active_care_plans\n", + "5447 mean_Carbon_Dioxide>=minimum(Carbon_Dioxide,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5448 mean_Carbon_Dioxide>=DALY-medications_lifetime+1\n", + "5449 mean_Carbon_Dioxide>=Erythrocytes____volume__in_Blood_by_Automated_count^2-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5450 mean_Carbon_Dioxide>=-Erythrocytes____volume__in_Blood_by_Automated_count+1/2*active_care_plan_length\n", + "5451 mean_Carbon_Dioxide>=sqrt(QALY)+active_conditions\n", + "5452 mean_Carbon_Dioxide>=floor(DALY)-mean_Body_Mass_Index\n", + "5453 mean_Carbon_Dioxide>=Carbon_Dioxide-medications_lifetime\n", + "5454 mean_Carbon_Dioxide>=(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)/QOLS\n", + "5455 mean_Carbon_Dioxide>=1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/encounters_lifetime_perc_covered\n", + "5456 mean_Carbon_Dioxide>=(10^healthcare_expenses)^longitude\n", + "5457 mean_Carbon_Dioxide>=Respiratory_rate*log(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5458 mean_Carbon_Dioxide>=DALY^2/lifetime_care_plan_length\n", + "5459 mean_Carbon_Dioxide>=lifetime_care_plans+mean_Urea_Nitrogen-1\n", + "5460 mean_Carbon_Dioxide>=2*active_condition_length-mean_Systolic_Blood_Pressure\n", + "5461 mean_Carbon_Dioxide>=1/2*lifetime_care_plan_length/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "5462 mean_Carbon_Dioxide>=medications_active^2/active_care_plans\n", + "5463 mean_Carbon_Dioxide>=1/QOLS+mean_Respiratory_rate\n", + "5464 mean_Carbon_Dioxide>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(Carbon_Dioxide)\n", + "5465 mean_Carbon_Dioxide>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/latitude\n", + "5466 mean_Carbon_Dioxide>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/encounters_lifetime_perc_covered\n", + "5467 mean_Carbon_Dioxide>=Carbon_Dioxide*sqrt(medications_lifetime_perc_covered)\n", + "5468 mean_Carbon_Dioxide>=Carbon_Dioxide*log(medications_active)/log(10)\n", + "5469 mean_Carbon_Dioxide>=floor(Hemoglobin__Mass_volume__in_Blood)/mean_Creatinine\n", + "5470 mean_Carbon_Dioxide>=1/2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count/DALY\n", + "5471 mean_Carbon_Dioxide>=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/Creatinine\n", + "5472 mean_Chloride<=healthcare_expenses\n", + "5473 mean_Chloride<=1/2*Diastolic_Blood_Pressure+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "5474 mean_Chloride<=Chloride+procedures_lifetime_cost\n", + "5475 mean_Chloride<=Chloride+log(QALY)\n", + "5476 mean_Chloride<=maximum(lifetime_condition_length,Chloride)\n", + "5477 mean_Chloride<=Chloride/num_allergies\n", + "5478 mean_Chloride<=sqrt(Urea_Nitrogen)+Chloride\n", + "5479 mean_Chloride<=Chloride+1/2*active_conditions\n", + "5480 mean_Chloride<=Chloride+medications_lifetime\n", + "5481 mean_Chloride<=maximum(medications_lifetime_cost,Chloride)\n", + "5482 mean_Chloride<=2*Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+MCH__Entitic_mass__by_Automated_count\n", + "5483 mean_Chloride<=Chloride^active_conditions\n", + "5484 mean_Chloride<=Chloride/QOLS\n", + "5485 mean_Chloride<=-MCH__Entitic_mass__by_Automated_count+Sodium-1\n", + "5486 mean_Chloride<=10^QOLS*Body_Weight\n", + "5487 mean_Chloride<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(Chloride)\n", + "5488 mean_Chloride<=Chloride+floor(DALY)\n", + "5489 mean_Chloride<=-Carbon_Dioxide+floor(Sodium)\n", + "5490 mean_Chloride<=floor(Sodium)-mean_Carbon_Dioxide\n", + "5491 mean_Chloride<=maximum(Systolic_Blood_Pressure,Chloride)\n", + "5492 mean_Chloride<=QALY+mean_Diastolic_Blood_Pressure+1\n", + "5493 mean_Chloride<=Chloride+healthcare_coverage\n", + "5494 mean_Chloride<=Chloride^active_care_plans\n", + "5495 mean_Chloride<=-Bilirubin_total__Mass_volume__in_Serum,Plasma+1/2*medications_lifetime_dispenses\n", + "5496 mean_Chloride<=Calcium^2+MCH__Entitic_mass__by_Automated_count\n", + "5497 mean_Chloride<=Heart_rate*sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5498 mean_Chloride<=Chloride+log(Microalbumin_Creatinine_Ratio)\n", + "5499 mean_Chloride<=floor(Protein__Mass_volume__in_Serum,Plasma)+latitude\n", + "5500 mean_Chloride<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood*encounters_lifetime_perc_covered\n", + "5501 mean_Chloride<=2*Heart_rate-mean_Respiratory_rate\n", + "5502 mean_Chloride<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)+Triglycerides\n", + "5503 mean_Chloride<=Triglycerides+1/2*Urea_Nitrogen\n", + "5504 mean_Chloride<=(Respiratory_rate-1)*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5505 mean_Chloride<=2*healthcare_coverage/mean_Microalbumin_Creatinine_Ratio\n", + "5506 mean_Chloride<=1/2*Low_Density_Lipoprotein_Cholesterol+mean_Diastolic_Blood_Pressure\n", + "5507 mean_Chloride<=1/2*Glucose+mean_Diastolic_Blood_Pressure\n", + "5508 mean_Chloride<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Chloride\n", + "5509 mean_Chloride<=2*Chloride-Heart_rate\n", + "5510 mean_Chloride<=(active_care_plans+1)*QALY\n", + "5511 mean_Chloride<=1/imaging_studies_lifetime+Chloride\n", + "5512 mean_Chloride<=ceil(QALY)+mean_Protein__Mass_volume__in_Serum,Plasma\n", + "5513 mean_Chloride<=maximum(Chloride,10^DALY)\n", + "5514 mean_Chloride<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)*mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5515 mean_Chloride<=10^Creatinine+Chloride\n", + "5516 mean_Chloride<=2*Chloride*Creatinine\n", + "5517 mean_Chloride<=Chloride+floor(Potassium)\n", + "5518 mean_Chloride<=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+Chloride\n", + "5519 mean_Chloride>=latitude\n", + "5520 mean_Chloride>=-active_care_plans+floor(Chloride)\n", + "5521 mean_Chloride>=1/2*Total_Cholesterol-mean_Estimated_Glomerular_Filtration_Rate\n", + "5522 mean_Chloride>=Chloride/active_conditions\n", + "5523 mean_Chloride>=-Albumin__Mass_volume__in_Serum,Plasma+Chloride\n", + "5524 mean_Chloride>=Systolic_Blood_Pressure-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1\n", + "5525 mean_Chloride>=Chloride-medications_lifetime\n", + "5526 mean_Chloride>=Body_Weight*log(active_conditions)/log(10)\n", + "5527 mean_Chloride>=2*active_conditions-longitude\n", + "5528 mean_Chloride>=-healthcare_expenses\n", + "5529 mean_Chloride>=floor(Microalbumin_Creatinine_Ratio)-mean_Microalbumin_Creatinine_Ratio\n", + "5530 mean_Chloride>=minimum(Chloride,mean_High_Density_Lipoprotein_Cholesterol)\n", + "5531 mean_Chloride>=Chloride^QOLS\n", + "5532 mean_Chloride>=-DALY+floor(Chloride)\n", + "5533 mean_Chloride>=healthcare_expenses^longitude\n", + "5534 mean_Chloride>=DALY*log(MCV__Entitic_volume__by_Automated_count)\n", + "5535 mean_Chloride>=log(QOLS)/log(10)+procedures_lifetime\n", + "5536 mean_Chloride>=-age+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "5537 mean_Chloride>=Chloride-healthcare_coverage\n", + "5538 mean_Chloride>=High_Density_Lipoprotein_Cholesterol+mean_Carbon_Dioxide-1\n", + "5539 mean_Chloride>=1/encounters_lifetime_perc_covered+Heart_rate\n", + "5540 mean_Chloride>=-Potassium+floor(Chloride)\n", + "5541 mean_Chloride>=Creatinine*Globulin__Mass_volume__in_Serum_by_calculation^2\n", + "5542 mean_Chloride>=sqrt(Glucose)/QOLS\n", + "5543 mean_Chloride>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(Hemoglobin__Mass_volume__in_Blood)\n", + "5544 mean_Chloride>=(Chloride-1)/active_care_plans\n", + "5545 mean_Chloride>=Glomerular_filtration_rate_1_73_sq_M_predicted+Respiratory_rate\n", + "5546 mean_Chloride>=minimum(Chloride,1/2*Triglycerides)\n", + "5547 mean_Chloride>=log(active_care_plans)^medications_active\n", + "5548 mean_Chloride>=Carbon_Dioxide+Protein__Mass_volume__in_Serum,Plasma\n", + "5549 mean_Chloride>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(active_conditions)\n", + "5550 mean_Chloride>=(e^num_allergies)^mean_Potassium\n", + "5551 mean_Chloride>=Diastolic_Blood_Pressure+Potassium-1\n", + "5552 mean_Chloride>=minimum(latitude,10^healthcare_expenses)\n", + "5553 mean_Chloride>=active_condition_length+2*active_conditions\n", + "5554 mean_Chloride>=minimum(Chloride,mean_Body_Mass_Index)\n", + "5555 mean_Chloride>=minimum(Chloride,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5556 mean_Chloride>=Carbon_Dioxide+High_Density_Lipoprotein_Cholesterol+1\n", + "5557 mean_Chloride>=1/2*medications_lifetime_length/Glucose\n", + "5558 mean_Chloride>=minimum(medications_lifetime,1/medications_lifetime_perc_covered)\n", + "5559 mean_Chloride>=Chloride-active_conditions+1\n", + "5560 mean_Chloride>=minimum(Chloride,Calcium^2)\n", + "5561 mean_Creatinine<=healthcare_expenses\n", + "5562 mean_Creatinine<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5563 mean_Creatinine<=Creatinine*active_care_plans\n", + "5564 mean_Creatinine<=maximum(active_conditions,Creatinine)\n", + "5565 mean_Creatinine<=-Glucose+2*Heart_rate\n", + "5566 mean_Creatinine<=(medications_lifetime_dispenses-1)^Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5567 mean_Creatinine<=Creatinine*active_conditions\n", + "5568 mean_Creatinine<=Triglycerides/active_conditions\n", + "5569 mean_Creatinine<=Creatinine+procedures_lifetime_cost\n", + "5570 mean_Creatinine<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2-mean_Heart_rate\n", + "5571 mean_Creatinine<=QOLS/imaging_studies_lifetime\n", + "5572 mean_Creatinine<=Calcium^2/Respiratory_rate\n", + "5573 mean_Creatinine<=Creatinine+medications_lifetime\n", + "5574 mean_Creatinine<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,Creatinine+1)\n", + "5575 mean_Creatinine<=maximum(procedures_lifetime,log(Low_Density_Lipoprotein_Cholesterol))\n", + "5576 mean_Creatinine<=maximum(medications_lifetime,Creatinine)\n", + "5577 mean_Creatinine<=QOLS*ceil(active_care_plan_length)\n", + "5578 mean_Creatinine<=Creatinine+floor(DALY)\n", + "5579 mean_Creatinine<=maximum(Triglycerides,Creatinine)\n", + "5580 mean_Creatinine<=Creatinine+log(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5581 mean_Creatinine<=maximum(DALY,sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "5582 mean_Creatinine<=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1)\n", + "5583 mean_Creatinine<=2*MCV__Entitic_volume__by_Automated_count/active_condition_length\n", + "5584 mean_Creatinine<=Leukocytes____volume__in_Blood_by_Automated_count^2/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5585 mean_Creatinine<=log(Platelets____volume__in_Blood_by_Automated_count)-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5586 mean_Creatinine<=1/encounters_lifetime_perc_covered+active_care_plans\n", + "5587 mean_Creatinine<=log(QALY)/num_allergies\n", + "5588 mean_Creatinine<=ceil(Creatinine)+procedures_lifetime\n", + "5589 mean_Creatinine<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,2*Creatinine)\n", + "5590 mean_Creatinine<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Albumin__Mass_volume__in_Serum,Plasma-1)\n", + "5591 mean_Creatinine<=medications_lifetime/medications_active\n", + "5592 mean_Creatinine<=maximum(Creatinine,sqrt(medications_lifetime))\n", + "5593 mean_Creatinine<=sqrt(age)/immunizations_lifetime\n", + "5594 mean_Creatinine<=Creatinine+healthcare_coverage\n", + "5595 mean_Creatinine<=maximum(procedures_lifetime,log(age))\n", + "5596 mean_Creatinine<=10^encounters_lifetime_perc_covered*Creatinine\n", + "5597 mean_Creatinine<=sqrt(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)^Respiratory_rate\n", + "5598 mean_Creatinine<=-Body_Mass_Index+1/2*Glucose\n", + "5599 mean_Creatinine<=QALY^2/Total_Cholesterol\n", + "5600 mean_Creatinine<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "5601 mean_Creatinine<=Creatinine/num_allergies\n", + "5602 mean_Creatinine>=longitude\n", + "5603 mean_Creatinine>=minimum(active_care_plans,Creatinine-1)\n", + "5604 mean_Creatinine>=minimum(QOLS,Creatinine)\n", + "5605 mean_Creatinine>=-healthcare_expenses\n", + "5606 mean_Creatinine>=Creatinine-medications_lifetime\n", + "5607 mean_Creatinine>=Creatinine/active_conditions\n", + "5608 mean_Creatinine>=1/2*num_allergies\n", + "5609 mean_Creatinine>=Creatinine*floor(QOLS)\n", + "5610 mean_Creatinine>=minimum(encounters_lifetime_perc_covered,Creatinine)\n", + "5611 mean_Creatinine>=minimum(imaging_studies_lifetime,Creatinine)\n", + "5612 mean_Creatinine>=1/2*QOLS\n", + "5613 mean_Creatinine>=log(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)-immunizations_lifetime\n", + "5614 mean_Creatinine>=minimum(device_lifetime_length,Creatinine)\n", + "5615 mean_Creatinine>=minimum(Creatinine,sqrt(encounters_lifetime_perc_covered))\n", + "5616 mean_Creatinine>=Creatinine^FEV1_FVC\n", + "5617 mean_Creatinine>=-Albumin__Mass_volume__in_Serum,Plasma+1/2*Creatinine\n", + "5618 mean_Creatinine>=healthcare_expenses^longitude\n", + "5619 mean_Creatinine>=Bilirubin_total__Mass_volume__in_Serum,Plasma/QOLS\n", + "5620 mean_Creatinine>=1/2*encounters_count/High_Density_Lipoprotein_Cholesterol\n", + "5621 mean_Creatinine>=minimum(Creatinine,sqrt(QOLS))\n", + "5622 mean_Creatinine>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+log(Platelets____volume__in_Blood_by_Automated_count)\n", + "5623 mean_Creatinine>=Creatinine-healthcare_coverage\n", + "5624 mean_Creatinine>=minimum(Creatinine,Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)\n", + "5625 mean_Creatinine>=sqrt(DALY)-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5626 mean_Creatinine>=2*medications_lifetime/Platelets____volume__in_Blood_by_Automated_count\n", + "5627 mean_Creatinine>=sqrt(DALY)*num_allergies\n", + "5628 mean_Creatinine>=lifetime_conditions-mean_Respiratory_rate-1\n", + "5629 mean_Creatinine>=-Estimated_Glomerular_Filtration_Rate+2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5630 mean_Creatinine>=mean_Microalbumin_Creatinine_Ratio/Heart_rate\n", + "5631 mean_Creatinine>=(encounters_count+1)/mean_Triglycerides\n", + "5632 mean_Creatinine>=immunizations_lifetime/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5633 mean_Creatinine>=mean_Microalbumin_Creatinine_Ratio/mean_Diastolic_Blood_Pressure\n", + "5634 mean_Creatinine>=(10^healthcare_expenses)^longitude\n", + "5635 mean_Creatinine>=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)-num_allergies\n", + "5636 mean_Creatinine>=floor(Creatinine)/active_care_plans\n", + "5637 mean_Creatinine>=minimum(Creatinine,2*encounters_lifetime_perc_covered)\n", + "5638 mean_Creatinine>=(Globulin__Mass_volume__in_Serum_by_calculation-1)^QOLS\n", + "5639 mean_Creatinine>=minimum(Creatinine,log(active_conditions)/log(10))\n", + "5640 mean_Creatinine>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)-procedures_lifetime\n", + "5641 mean_Creatinine>=minimum(Potassium,Creatinine-1)\n", + "5642 mean_Creatinine>=minimum(Creatinine,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5643 mean_Creatinine>=Bilirubin_total__Mass_volume__in_Serum,Plasma-Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "5644 mean_Creatinine>=floor(device_lifetime_length)/mean_Estimated_Glomerular_Filtration_Rate\n", + "5645 mean_Creatinine>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted/Carbon_Dioxide\n", + "5646 mean_Creatinine>=2*procedures_lifetime/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5647 mean_Creatinine>=1/2*Microalbumin_Creatinine_Ratio/QALY\n", + "5648 mean_DALY<=healthcare_expenses\n", + "5649 mean_DALY<=active_condition_length\n", + "5650 mean_DALY<=DALY\n", + "5651 mean_DALY>=longitude\n", + "5652 mean_DALY>=imaging_studies_lifetime\n", + "5653 mean_DALY>=DALY\n", + "5654 mean_Diastolic_Blood_Pressure<=healthcare_expenses\n", + "5655 mean_Diastolic_Blood_Pressure<=-Carbon_Dioxide+Systolic_Blood_Pressure\n", + "5656 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,2*latitude)\n", + "5657 mean_Diastolic_Blood_Pressure<=sqrt(encounters_count)+Diastolic_Blood_Pressure\n", + "5658 mean_Diastolic_Blood_Pressure<=maximum(lifetime_condition_length,Diastolic_Blood_Pressure)\n", + "5659 mean_Diastolic_Blood_Pressure<=-longitude/medications_lifetime_perc_covered\n", + "5660 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure^lifetime_conditions\n", + "5661 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+active_care_plan_length\n", + "5662 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+medications_lifetime\n", + "5663 mean_Diastolic_Blood_Pressure<=maximum(medications_lifetime_cost,Diastolic_Blood_Pressure)\n", + "5664 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+procedures_lifetime_cost\n", + "5665 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure/QOLS\n", + "5666 mean_Diastolic_Blood_Pressure<=maximum(mean_Heart_rate,Diastolic_Blood_Pressure+1)\n", + "5667 mean_Diastolic_Blood_Pressure<=2*Sodium/Globulin__Mass_volume__in_Serum_by_calculation\n", + "5668 mean_Diastolic_Blood_Pressure<=sqrt(active_care_plan_length)+Diastolic_Blood_Pressure\n", + "5669 mean_Diastolic_Blood_Pressure<=Carbon_Dioxide^2/Albumin__Mass_volume__in_Serum,Plasma\n", + "5670 mean_Diastolic_Blood_Pressure<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+2*Body_Mass_Index\n", + "5671 mean_Diastolic_Blood_Pressure<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*age\n", + "5672 mean_Diastolic_Blood_Pressure<=sqrt(QALY)+Diastolic_Blood_Pressure\n", + "5673 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,10^active_care_plans)\n", + "5674 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,Urea_Nitrogen^2)\n", + "5675 mean_Diastolic_Blood_Pressure<=-Creatinine+ceil(Triglycerides)\n", + "5676 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+1/2*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5677 mean_Diastolic_Blood_Pressure<=Albumin__Mass_volume__in_Serum,Plasma^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "5678 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,sqrt(healthcare_coverage))\n", + "5679 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^lifetime_conditions)\n", + "5680 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+Leukocytes____volume__in_Blood_by_Automated_count\n", + "5681 mean_Diastolic_Blood_Pressure<=MCV__Entitic_volume__by_Automated_count+immunizations_lifetime_cost-1\n", + "5682 mean_Diastolic_Blood_Pressure<=Diastolic_Blood_Pressure+2*active_care_plans\n", + "5683 mean_Diastolic_Blood_Pressure<=Low_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "5684 mean_Diastolic_Blood_Pressure<=1/2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Diastolic_Blood_Pressure\n", + "5685 mean_Diastolic_Blood_Pressure<=sqrt(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+Diastolic_Blood_Pressure\n", + "5686 mean_Diastolic_Blood_Pressure<=ceil(Carbon_Dioxide)*mean_Potassium\n", + "5687 mean_Diastolic_Blood_Pressure<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Diastolic_Blood_Pressure\n", + "5688 mean_Diastolic_Blood_Pressure<=ceil(Glucose)+immunizations_lifetime_cost\n", + "5689 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,e^medications_lifetime)\n", + "5690 mean_Diastolic_Blood_Pressure<=ceil(QALY)+mean_High_Density_Lipoprotein_Cholesterol\n", + "5691 mean_Diastolic_Blood_Pressure<=maximum(Diastolic_Blood_Pressure,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5692 mean_Diastolic_Blood_Pressure<=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood*High_Density_Lipoprotein_Cholesterol\n", + "5693 mean_Diastolic_Blood_Pressure<=sqrt(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)+Diastolic_Blood_Pressure\n", + "5694 mean_Diastolic_Blood_Pressure<=sqrt(Creatinine)*Systolic_Blood_Pressure\n", + "5695 mean_Diastolic_Blood_Pressure<=High_Density_Lipoprotein_Cholesterol*log(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)/log(10)\n", + "5696 mean_Diastolic_Blood_Pressure>=latitude\n", + "5697 mean_Diastolic_Blood_Pressure>=Calcium+ceil(active_condition_length)\n", + "5698 mean_Diastolic_Blood_Pressure>=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5699 mean_Diastolic_Blood_Pressure>=1/2*Diastolic_Blood_Pressure/Creatinine\n", + "5700 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure/lifetime_conditions\n", + "5701 mean_Diastolic_Blood_Pressure>=procedures_lifetime^2/Sodium\n", + "5702 mean_Diastolic_Blood_Pressure>=-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count+1/2*Total_Cholesterol\n", + "5703 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5704 mean_Diastolic_Blood_Pressure>=2*MCH__Entitic_mass__by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5705 mean_Diastolic_Blood_Pressure>=ceil(1/2*Estimated_Glomerular_Filtration_Rate)\n", + "5706 mean_Diastolic_Blood_Pressure>=Respiratory_rate*log(Low_Density_Lipoprotein_Cholesterol)\n", + "5707 mean_Diastolic_Blood_Pressure>=-Carbon_Dioxide+Heart_rate\n", + "5708 mean_Diastolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "5709 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-active_care_plan_length\n", + "5710 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5711 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-medications_lifetime\n", + "5712 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure-procedures_lifetime_cost\n", + "5713 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,QALY+1)\n", + "5714 mean_Diastolic_Blood_Pressure>=device_lifetime_length^2/latitude\n", + "5715 mean_Diastolic_Blood_Pressure>=Diastolic_Blood_Pressure^QOLS\n", + "5716 mean_Diastolic_Blood_Pressure>=-DALY+Diastolic_Blood_Pressure\n", + "5717 mean_Diastolic_Blood_Pressure>=minimum(active_care_plan_length,Diastolic_Blood_Pressure)\n", + "5718 mean_Diastolic_Blood_Pressure>=log(Microalbumin_Creatinine_Ratio)-longitude\n", + "5719 mean_Diastolic_Blood_Pressure>=-Chloride+2*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "5720 mean_Diastolic_Blood_Pressure>=minimum(procedures_lifetime,ceil(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma))\n", + "5721 mean_Diastolic_Blood_Pressure>=sqrt(encounters_lifetime_payer_coverage)*encounters_lifetime_perc_covered\n", + "5722 mean_Diastolic_Blood_Pressure>=-Calcium+floor(age)\n", + "5723 mean_Diastolic_Blood_Pressure>=log(Microalbumin_Creatinine_Ratio)+mean_High_Density_Lipoprotein_Cholesterol\n", + "5724 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,1/medications_lifetime_perc_covered)\n", + "5725 mean_Diastolic_Blood_Pressure>=Carbon_Dioxide^2/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5726 mean_Diastolic_Blood_Pressure>=Calcium^2-Body_Mass_Index\n", + "5727 mean_Diastolic_Blood_Pressure>=(medications_lifetime+1)/mean_Urea_Nitrogen\n", + "5728 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,Creatinine)\n", + "5729 mean_Diastolic_Blood_Pressure>=minimum(age,1/medications_active)\n", + "5730 mean_Diastolic_Blood_Pressure>=Sodium-mean_Low_Density_Lipoprotein_Cholesterol\n", + "5731 mean_Diastolic_Blood_Pressure>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*active_conditions\n", + "5732 mean_Diastolic_Blood_Pressure>=mean_Glucose/active_care_plans\n", + "5733 mean_Diastolic_Blood_Pressure>=Body_Mass_Index+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1\n", + "5734 mean_Diastolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "5735 mean_Diastolic_Blood_Pressure>=ceil(MCV__Entitic_volume__by_Automated_count)-mean_Urea_Nitrogen\n", + "5736 mean_Diastolic_Blood_Pressure>=1/2*Calcium*Hemoglobin__Mass_volume__in_Blood\n", + "5737 mean_Diastolic_Blood_Pressure>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+floor(active_care_plan_length)\n", + "5738 mean_Diastolic_Blood_Pressure>=minimum(Diastolic_Blood_Pressure,10^device_lifetime_length)\n", + "5739 mean_Diastolic_Blood_Pressure>=2*medications_lifetime/Hemoglobin__Mass_volume__in_Blood\n", + "5740 mean_Diastolic_Blood_Pressure>=Calcium*log(medications_lifetime_dispenses)\n", + "5741 mean_Diastolic_Blood_Pressure>=MCV__Entitic_volume__by_Automated_count*log(medications_active)/log(10)\n", + "5742 mean_Estimated_Glomerular_Filtration_Rate<=healthcare_expenses\n", + "5743 mean_Estimated_Glomerular_Filtration_Rate<=Creatinine^2+Estimated_Glomerular_Filtration_Rate\n", + "5744 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+1/2*mean_Urea_Nitrogen\n", + "5745 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+e^procedures_lifetime\n", + "5746 mean_Estimated_Glomerular_Filtration_Rate<=maximum(age,Estimated_Glomerular_Filtration_Rate)\n", + "5747 mean_Estimated_Glomerular_Filtration_Rate<=(log(Sodium)/log(10))^Estimated_Glomerular_Filtration_Rate\n", + "5748 mean_Estimated_Glomerular_Filtration_Rate<=Diastolic_Blood_Pressure^2/Microalbumin_Creatinine_Ratio\n", + "5749 mean_Estimated_Glomerular_Filtration_Rate<=maximum(Estimated_Glomerular_Filtration_Rate,mean_High_Density_Lipoprotein_Cholesterol-1)\n", + "5750 mean_Estimated_Glomerular_Filtration_Rate<=(encounters_count-1)/device_lifetime_length\n", + "5751 mean_Estimated_Glomerular_Filtration_Rate<=sqrt(active_condition_length)+Estimated_Glomerular_Filtration_Rate\n", + "5752 mean_Estimated_Glomerular_Filtration_Rate<=mean_Carbon_Dioxide^2-Microalbumin_Creatinine_Ratio\n", + "5753 mean_Estimated_Glomerular_Filtration_Rate<=(Carbon_Dioxide-1)/num_allergies\n", + "5754 mean_Estimated_Glomerular_Filtration_Rate<=10^(10^encounters_lifetime_perc_covered)\n", + "5755 mean_Estimated_Glomerular_Filtration_Rate<=healthcare_coverage^sqrt(QOLS)\n", + "5756 mean_Estimated_Glomerular_Filtration_Rate<=10^Hemoglobin_A1c_Hemoglobin_total_in_Blood/DALY\n", + "5757 mean_Estimated_Glomerular_Filtration_Rate<=(log(mean_Urea_Nitrogen)/log(10))^Low_Density_Lipoprotein_Cholesterol\n", + "5758 mean_Estimated_Glomerular_Filtration_Rate<=sqrt(High_Density_Lipoprotein_Cholesterol)+Estimated_Glomerular_Filtration_Rate\n", + "5759 mean_Estimated_Glomerular_Filtration_Rate<=Estimated_Glomerular_Filtration_Rate+1/2*Urea_Nitrogen\n", + "5760 mean_Estimated_Glomerular_Filtration_Rate<=Sodium^2/medications_lifetime\n", + "5761 mean_Estimated_Glomerular_Filtration_Rate<=e^Calcium/Microalbumin_Creatinine_Ratio\n", + "5762 mean_Estimated_Glomerular_Filtration_Rate>=longitude\n", + "5763 mean_Estimated_Glomerular_Filtration_Rate>=(1/2*Glomerular_filtration_rate_1_73_sq_M_predicted)^medications_lifetime_perc_covered\n", + "5764 mean_Estimated_Glomerular_Filtration_Rate>=healthcare_expenses^longitude\n", + "5765 mean_Estimated_Glomerular_Filtration_Rate>=-mean_Body_Weight+mean_Heart_rate+1\n", + "5766 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-procedures_lifetime_cost\n", + "5767 mean_Estimated_Glomerular_Filtration_Rate>=sqrt(lifetime_care_plan_length)-Calcium\n", + "5768 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-procedures_lifetime-1\n", + "5769 mean_Estimated_Glomerular_Filtration_Rate>=-healthcare_expenses\n", + "5770 mean_Estimated_Glomerular_Filtration_Rate>=minimum(Estimated_Glomerular_Filtration_Rate,1/mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "5771 mean_Estimated_Glomerular_Filtration_Rate>=ceil(mean_Glucose)/active_conditions\n", + "5772 mean_Estimated_Glomerular_Filtration_Rate>=Estimated_Glomerular_Filtration_Rate-medications_active-1\n", + "5773 mean_Estimated_Glomerular_Filtration_Rate>=mean_Heart_rate-medications_lifetime\n", + "5774 mean_Estimated_Glomerular_Filtration_Rate>=-1/Respiratory_rate+lifetime_care_plans\n", + "5775 mean_Estimated_Glomerular_Filtration_Rate>=-Microalbumin_Creatinine_Ratio+floor(QALY)\n", + "5776 mean_Estimated_Glomerular_Filtration_Rate>=1/2*Systolic_Blood_Pressure-mean_Microalbumin_Creatinine_Ratio\n", + "5777 mean_Estimated_Glomerular_Filtration_Rate>=(10^healthcare_expenses)^longitude\n", + "5778 mean_Estimated_Glomerular_Filtration_Rate>=(Carbon_Dioxide-1)^num_allergies\n", + "5779 mean_Estimated_Glomerular_Filtration_Rate>=ceil(High_Density_Lipoprotein_Cholesterol)/DALY\n", + "5780 mean_Estimated_Glomerular_Filtration_Rate>=2*mean_Carbon_Dioxide/mean_Creatinine\n", + "5781 mean_Estimated_Glomerular_Filtration_Rate>=Systolic_Blood_Pressure-mean_Triglycerides\n", + "5782 mean_Estimated_Glomerular_Filtration_Rate>=High_Density_Lipoprotein_Cholesterol-Low_Density_Lipoprotein_Cholesterol+1\n", + "5783 mean_Estimated_Glomerular_Filtration_Rate>=-Total_Cholesterol+mean_Total_Cholesterol+1\n", + "5784 mean_Estimated_Glomerular_Filtration_Rate>=(log(mean_Urea_Nitrogen)/log(10))^active_conditions\n", + "5785 mean_Estimated_Glomerular_Filtration_Rate>=2*mean_Calcium-procedures_lifetime\n", + "5786 mean_Estimated_Glomerular_Filtration_Rate>=-age+floor(mean_Diastolic_Blood_Pressure)\n", + "5787 mean_Glucose<=healthcare_expenses\n", + "5788 mean_Glucose<=Chloride+1/2*Microalbumin_Creatinine_Ratio\n", + "5789 mean_Glucose<=2*Albumin__Mass_volume__in_Serum,Plasma+mean_Chloride\n", + "5790 mean_Glucose<=Glucose+mean_Urea_Nitrogen-1\n", + "5791 mean_Glucose<=Glucose*ceil(DALY)\n", + "5792 mean_Glucose<=MCV__Entitic_volume__by_Automated_count+encounters_count+1\n", + "5793 mean_Glucose<=e^Albumin__Mass_volume__in_Serum,Plasma-longitude\n", + "5794 mean_Glucose<=Glucose+1/2*Hemoglobin__Mass_volume__in_Blood\n", + "5795 mean_Glucose<=Glucose^active_care_plans\n", + "5796 mean_Glucose<=maximum(medications_lifetime_dispenses,Glucose)\n", + "5797 mean_Glucose<=Glucose+healthcare_coverage\n", + "5798 mean_Glucose<=mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Heart_rate\n", + "5799 mean_Glucose<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Triglycerides\n", + "5800 mean_Glucose<=e^Albumin__Mass_volume__in_Serum,Plasma+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5801 mean_Glucose<=2*Creatinine*Glucose\n", + "5802 mean_Glucose<=maximum(Glucose,e^active_conditions)\n", + "5803 mean_Glucose<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+e^Potassium\n", + "5804 mean_Glucose<=10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-longitude\n", + "5805 mean_Glucose<=Heart_rate^active_conditions\n", + "5806 mean_Glucose<=mean_Diastolic_Blood_Pressure^active_care_plans\n", + "5807 mean_Glucose<=1/2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5808 mean_Glucose<=maximum(medications_lifetime_cost,Glucose)\n", + "5809 mean_Glucose<=maximum(Body_Height,Glucose)\n", + "5810 mean_Glucose<=MCV__Entitic_volume__by_Automated_count^2/MCHC__Mass_volume__by_Automated_count\n", + "5811 mean_Glucose<=maximum(Glucose,mean_Low_Density_Lipoprotein_Cholesterol)\n", + "5812 mean_Glucose<=active_care_plan_length+e^Estimated_Glomerular_Filtration_Rate\n", + "5813 mean_Glucose<=Diastolic_Blood_Pressure^2/DALY\n", + "5814 mean_Glucose<=Glucose+medications_lifetime\n", + "5815 mean_Glucose<=(latitude-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "5816 mean_Glucose<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/active_conditions\n", + "5817 mean_Glucose<=sqrt(Microalbumin_Creatinine_Ratio)*mean_Estimated_Glomerular_Filtration_Rate\n", + "5818 mean_Glucose<=Potassium^2+Glucose\n", + "5819 mean_Glucose<=maximum(Glucose,medications_lifetime^2)\n", + "5820 mean_Glucose<=Low_Density_Lipoprotein_Cholesterol+2*encounters_count\n", + "5821 mean_Glucose<=-DALY+mean_Triglycerides\n", + "5822 mean_Glucose<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(encounters_lifetime_total_cost)/log(10)\n", + "5823 mean_Glucose<=maximum(mean_Diastolic_Blood_Pressure,e^Estimated_Glomerular_Filtration_Rate)\n", + "5824 mean_Glucose<=(encounters_lifetime_perc_covered+1)*Glucose\n", + "5825 mean_Glucose<=1/imaging_studies_lifetime+mean_Heart_rate\n", + "5826 mean_Glucose<=Respiratory_rate*mean_Urea_Nitrogen\n", + "5827 mean_Glucose<=mean_Heart_rate/num_allergies\n", + "5828 mean_Glucose<=immunizations_lifetime_cost+mean_Low_Density_Lipoprotein_Cholesterol\n", + "5829 mean_Glucose<=maximum(Glucose,e^medications_lifetime)\n", + "5830 mean_Glucose<=maximum(Glucose,Systolic_Blood_Pressure+1)\n", + "5831 mean_Glucose<=2*Heart_rate-mean_Potassium\n", + "5832 mean_Glucose<=2*Creatinine*Heart_rate\n", + "5833 mean_Glucose<=sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)+Glucose\n", + "5834 mean_Glucose<=10^Potassium/active_care_plan_length\n", + "5835 mean_Glucose<=10^Creatinine+mean_Estimated_Glomerular_Filtration_Rate\n", + "5836 mean_Glucose<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Glucose\n", + "5837 mean_Glucose<=Globulin__Mass_volume__in_Serum_by_calculation*e^Albumin__Mass_volume__in_Serum,Plasma\n", + "5838 mean_Glucose<=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/active_care_plans\n", + "5839 mean_Glucose<=10^Leukocytes____volume__in_Blood_by_Automated_count/active_care_plan_length\n", + "5840 mean_Glucose<=Glucose+ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5841 mean_Glucose>=latitude\n", + "5842 mean_Glucose>=Glucose-procedures_lifetime_cost\n", + "5843 mean_Glucose>=active_care_plans+active_condition_length+1\n", + "5844 mean_Glucose>=1/2*lifetime_condition_length/active_care_plans\n", + "5845 mean_Glucose>=Potassium*log(healthcare_expenses)\n", + "5846 mean_Glucose>=-Body_Mass_Index+1/2*Triglycerides\n", + "5847 mean_Glucose>=-healthcare_expenses\n", + "5848 mean_Glucose>=minimum(Glucose,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5849 mean_Glucose>=latitude/Creatinine\n", + "5850 mean_Glucose>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1)^Globulin__Mass_volume__in_Serum_by_calculation\n", + "5851 mean_Glucose>=minimum(High_Density_Lipoprotein_Cholesterol,Glucose)\n", + "5852 mean_Glucose>=Glucose^QOLS\n", + "5853 mean_Glucose>=(immunizations_lifetime-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5854 mean_Glucose>=Estimated_Glomerular_Filtration_Rate-Glucose+1\n", + "5855 mean_Glucose>=Glucose-mean_Urea_Nitrogen\n", + "5856 mean_Glucose>=healthcare_expenses^longitude\n", + "5857 mean_Glucose>=Glucose-healthcare_coverage\n", + "5858 mean_Glucose>=-Leukocytes____volume__in_Blood_by_Automated_count+floor(Glucose)\n", + "5859 mean_Glucose>=active_conditions*medications_active\n", + "5860 mean_Glucose>=minimum(Glucose,2*device_lifetime_length)\n", + "5861 mean_Glucose>=(Glucose-1)*QOLS\n", + "5862 mean_Glucose>=minimum(Glucose,-longitude)\n", + "5863 mean_Glucose>=minimum(Diastolic_Blood_Pressure,lifetime_care_plans^2)\n", + "5864 mean_Glucose>=-Erythrocytes____volume__in_Blood_by_Automated_count+ceil(age)\n", + "5865 mean_Glucose>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Diastolic_Blood_Pressure\n", + "5866 mean_Glucose>=Glucose-medications_lifetime\n", + "5867 mean_Glucose>=(Total_Cholesterol-1)/mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5868 mean_Glucose>=Chloride*log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)\n", + "5869 mean_Glucose>=2*DALY+Potassium\n", + "5870 mean_Glucose>=ceil(Calcium)*medications_active\n", + "5871 mean_Glucose>=minimum(latitude,10^healthcare_expenses)\n", + "5872 mean_Glucose>=(1/QOLS)^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5873 mean_Glucose>=Low_Density_Lipoprotein_Cholesterol*medications_lifetime_perc_covered^2\n", + "5874 mean_Glucose>=Glomerular_filtration_rate_1_73_sq_M_predicted-Hemoglobin_A1c_Hemoglobin_total_in_Blood-1\n", + "5875 mean_Glucose>=e^Erythrocytes____volume__in_Blood_by_Automated_count+longitude\n", + "5876 mean_Glucose>=minimum(Glucose,mean_Body_Mass_Index)\n", + "5877 mean_Glucose>=1/2*Body_Height-mean_Estimated_Glomerular_Filtration_Rate\n", + "5878 mean_Glucose>=Heart_rate/active_conditions\n", + "5879 mean_Glucose>=sqrt(active_care_plans)^mean_Potassium\n", + "5880 mean_Glucose>=Glucose-Urea_Nitrogen-1\n", + "5881 mean_Glucose>=Heart_rate*log(medications_active)/log(10)\n", + "5882 mean_Glucose>=2*active_care_plan_length/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "5883 mean_Glucose>=minimum(Microalbumin_Creatinine_Ratio,1/medications_lifetime_perc_covered)\n", + "5884 mean_Glucose>=(log(MCHC__Mass_volume__by_Automated_count)/log(10))^Leukocytes____volume__in_Blood_by_Automated_count\n", + "5885 mean_Glucose>=-Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+ceil(Body_Weight)\n", + "5886 mean_Glucose>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+Glucose+1\n", + "5887 mean_Glucose>=2*Carbon_Dioxide+Urea_Nitrogen\n", + "5888 mean_Glucose>=e^Calcium/Platelets____volume__in_Blood_by_Automated_count\n", + "5889 mean_Heart_rate<=healthcare_expenses\n", + "5890 mean_Heart_rate<=Heart_rate+procedures_lifetime_cost\n", + "5891 mean_Heart_rate<=maximum(Heart_rate,10^active_care_plans)\n", + "5892 mean_Heart_rate<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count^2/Urea_Nitrogen\n", + "5893 mean_Heart_rate<=Heart_rate+mean_Respiratory_rate+1\n", + "5894 mean_Heart_rate<=maximum(Heart_rate,1/2*Total_Cholesterol)\n", + "5895 mean_Heart_rate<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)+Diastolic_Blood_Pressure\n", + "5896 mean_Heart_rate<=Heart_rate+active_care_plan_length\n", + "5897 mean_Heart_rate<=maximum(Heart_rate,2*lifetime_care_plan_length)\n", + "5898 mean_Heart_rate<=Urea_Nitrogen^2+QALY\n", + "5899 mean_Heart_rate<=ceil(Potassium)^Estimated_Glomerular_Filtration_Rate\n", + "5900 mean_Heart_rate<=maximum(Heart_rate,e^lifetime_conditions)\n", + "5901 mean_Heart_rate<=(Glucose-1)*active_care_plans\n", + "5902 mean_Heart_rate<=Heart_rate^lifetime_conditions\n", + "5903 mean_Heart_rate<=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)+mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "5904 mean_Heart_rate<=maximum(lifetime_condition_length,Heart_rate)\n", + "5905 mean_Heart_rate<=maximum(Heart_rate,Urea_Nitrogen^2)\n", + "5906 mean_Heart_rate<=Heart_rate/num_allergies\n", + "5907 mean_Heart_rate<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2+Body_Weight\n", + "5908 mean_Heart_rate<=10^Albumin__Mass_volume__in_Serum,Plasma/latitude\n", + "5909 mean_Heart_rate<=Heart_rate+medications_lifetime_cost\n", + "5910 mean_Heart_rate<=maximum(medications_lifetime_cost,Heart_rate)\n", + "5911 mean_Heart_rate<=Chloride-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "5912 mean_Heart_rate<=Diastolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "5913 mean_Heart_rate<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Heart_rate\n", + "5914 mean_Heart_rate<=maximum(Heart_rate,10^procedures_lifetime)\n", + "5915 mean_Heart_rate<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count*e^Creatinine\n", + "5916 mean_Heart_rate<=sqrt(Microalbumin_Creatinine_Ratio)+Glucose\n", + "5917 mean_Heart_rate<=age*log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "5918 mean_Heart_rate<=maximum(Heart_rate,10^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5919 mean_Heart_rate<=Estimated_Glomerular_Filtration_Rate+2*Microalbumin_Creatinine_Ratio\n", + "5920 mean_Heart_rate<=1/2*Calcium*Carbon_Dioxide\n", + "5921 mean_Heart_rate<=2*encounters_lifetime_total_cost/Microalbumin_Creatinine_Ratio\n", + "5922 mean_Heart_rate<=Heart_rate+e^DALY\n", + "5923 mean_Heart_rate<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count^2-mean_Creatinine\n", + "5924 mean_Heart_rate<=(Heart_rate^2)^Creatinine\n", + "5925 mean_Heart_rate<=maximum(Heart_rate,2*High_Density_Lipoprotein_Cholesterol)\n", + "5926 mean_Heart_rate<=Sodium-device_lifetime_length+1\n", + "5927 mean_Heart_rate<=Body_Weight+ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "5928 mean_Heart_rate<=Heart_rate+Leukocytes____volume__in_Blood_by_Automated_count\n", + "5929 mean_Heart_rate<=mean_Estimated_Glomerular_Filtration_Rate+medications_lifetime\n", + "5930 mean_Heart_rate>=latitude\n", + "5931 mean_Heart_rate>=Heart_rate*sqrt(medications_lifetime_perc_covered)\n", + "5932 mean_Heart_rate>=minimum(Heart_rate,Creatinine)\n", + "5933 mean_Heart_rate>=Heart_rate-procedures_lifetime_cost\n", + "5934 mean_Heart_rate>=Heart_rate-active_care_plan_length\n", + "5935 mean_Heart_rate>=Sodium-mean_Low_Density_Lipoprotein_Cholesterol+1\n", + "5936 mean_Heart_rate>=minimum(QALY,Heart_rate-1)\n", + "5937 mean_Heart_rate>=minimum(active_care_plan_length,Heart_rate)\n", + "5938 mean_Heart_rate>=minimum(Heart_rate,mean_DALY)\n", + "5939 mean_Heart_rate>=Heart_rate/lifetime_conditions\n", + "5940 mean_Heart_rate>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)\n", + "5941 mean_Heart_rate>=Heart_rate-medications_lifetime\n", + "5942 mean_Heart_rate>=(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+1)/mean_Creatinine\n", + "5943 mean_Heart_rate>=minimum(Heart_rate,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5944 mean_Heart_rate>=Diastolic_Blood_Pressure-mean_Estimated_Glomerular_Filtration_Rate-1\n", + "5945 mean_Heart_rate>=maximum(Heart_rate,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "5946 mean_Heart_rate>=healthcare_expenses^longitude\n", + "5947 mean_Heart_rate>=2*Heart_rate-Systolic_Blood_Pressure\n", + "5948 mean_Heart_rate>=QALY+log(Microalbumin_Creatinine_Ratio)\n", + "5949 mean_Heart_rate>=(log(MCHC__Mass_volume__by_Automated_count)/log(10))^mean_Calcium\n", + "5950 mean_Heart_rate>=Heart_rate-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "5951 mean_Heart_rate>=Heart_rate^QOLS\n", + "5952 mean_Heart_rate>=sqrt(medications_lifetime_length)-medications_lifetime\n", + "5953 mean_Heart_rate>=(Diastolic_Blood_Pressure+1)*medications_lifetime_perc_covered\n", + "5954 mean_Heart_rate>=Heart_rate-mean_Urea_Nitrogen\n", + "5955 mean_Heart_rate>=minimum(Protein__Mass_volume__in_Serum,Plasma,floor(Heart_rate))\n", + "5956 mean_Heart_rate>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,floor(Heart_rate))\n", + "5957 mean_Heart_rate>=Erythrocytes____volume__in_Blood_by_Automated_count*Hemoglobin__Mass_volume__in_Blood\n", + "5958 mean_Heart_rate>=2*MCHC__Mass_volume__by_Automated_count-active_conditions\n", + "5959 mean_Heart_rate>=-Carbon_Dioxide+2*DALY\n", + "5960 mean_Heart_rate>=minimum(Heart_rate,1/medications_lifetime_perc_covered)\n", + "5961 mean_Heart_rate>=High_Density_Lipoprotein_Cholesterol-immunizations_lifetime_cost+1\n", + "5962 mean_Heart_rate>=sqrt(encounters_count)/encounters_lifetime_perc_covered\n", + "5963 mean_Heart_rate>=minimum(latitude,10^healthcare_expenses)\n", + "5964 mean_Heart_rate>=floor(active_care_plan_length)-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "5965 mean_Heart_rate>=log(imaging_studies_lifetime)+mean_Glucose\n", + "5966 mean_Heart_rate>=minimum(Microalbumin_Creatinine_Ratio,-longitude)\n", + "5967 mean_Heart_rate>=sqrt(MCHC__Mass_volume__by_Automated_count)*procedures_lifetime\n", + "5968 mean_Heart_rate>=(encounters_count+1)^QOLS\n", + "5969 mean_Heart_rate>=Body_Mass_Index*log(encounters_count)/log(10)\n", + "5970 mean_Heart_rate>=2*medications_lifetime/Body_Mass_Index\n", + "5971 mean_Heart_rate>=Heart_rate-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-1\n", + "5972 mean_Heart_rate>=Heart_rate*sqrt(QOLS)\n", + "5973 mean_Heart_rate>=1/2*Heart_rate/Creatinine\n", + "5974 mean_Heart_rate>=Heart_rate-active_conditions-1\n", + "5975 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=healthcare_expenses\n", + "5976 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=ceil(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5977 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "5978 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=1/Estimated_Glomerular_Filtration_Rate+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "5979 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "5980 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(lifetime_conditions,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5981 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(medications_lifetime,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5982 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(active_care_plan_length,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "5983 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered\n", + "5984 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-Globulin__Mass_volume__in_Serum_by_calculation+medications_lifetime\n", + "5985 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_active\n", + "5986 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "5987 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+procedures_lifetime\n", + "5988 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^QOLS)\n", + "5989 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "5990 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=sqrt(Carbon_Dioxide)/medications_lifetime_perc_covered\n", + "5991 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood/num_allergies\n", + "5992 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^active_conditions\n", + "5993 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,Leukocytes____volume__in_Blood_by_Automated_count)\n", + "5994 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=-active_care_plans+log(healthcare_expenses)\n", + "5995 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,procedures_lifetime+1)\n", + "5996 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,e^procedures_lifetime)\n", + "5997 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood<=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,procedures_lifetime^2)\n", + "5998 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=longitude\n", + "5999 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6000 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_care_plans\n", + "6001 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Globulin__Mass_volume__in_Serum_by_calculation+medications_active\n", + "6002 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(active_care_plans,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6003 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(Total_Cholesterol-1)/mean_Glucose\n", + "6004 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood/active_conditions\n", + "6005 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=healthcare_expenses^longitude\n", + "6006 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-healthcare_expenses\n", + "6007 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(device_lifetime_length,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6008 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-encounters_lifetime_perc_covered\n", + "6009 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-medications_lifetime\n", + "6010 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=1/2*Potassium\n", + "6011 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6012 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,e^immunizations_lifetime)\n", + "6013 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-procedures_lifetime\n", + "6014 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^QOLS\n", + "6015 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(Triglycerides+1)/Diastolic_Blood_Pressure\n", + "6016 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood+medications_lifetime_perc_covered-1\n", + "6017 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Hemoglobin_A1c_Hemoglobin_total_in_Blood-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6018 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6019 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-QOLS\n", + "6020 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=ceil(FEV1_FVC)^medications_lifetime_perc_covered\n", + "6021 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,10^encounters_lifetime_perc_covered)\n", + "6022 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=floor(Body_Height)/age\n", + "6023 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=(10^healthcare_expenses)^longitude\n", + "6024 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=log(encounters_lifetime_perc_covered)/log(10)+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6025 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/encounters_lifetime_perc_covered)\n", + "6026 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=maximum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6027 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*procedures_lifetime)\n", + "6028 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/QOLS)\n", + "6029 mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood>=sqrt(Body_temperature)^imaging_studies_lifetime\n", + "6030 mean_High_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "6031 mean_High_Density_Lipoprotein_Cholesterol<=maximum(age,High_Density_Lipoprotein_Cholesterol)\n", + "6032 mean_High_Density_Lipoprotein_Cholesterol<=QALY^2/mean_Respiratory_rate\n", + "6033 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol/num_allergies\n", + "6034 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+Leukocytes____volume__in_Blood_by_Automated_count-1\n", + "6035 mean_High_Density_Lipoprotein_Cholesterol<=maximum(encounters_count,High_Density_Lipoprotein_Cholesterol)\n", + "6036 mean_High_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime,High_Density_Lipoprotein_Cholesterol)\n", + "6037 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+log(MCV__Entitic_volume__by_Automated_count)\n", + "6038 mean_High_Density_Lipoprotein_Cholesterol<=sqrt(Microalbumin_Creatinine_Ratio)+Low_Density_Lipoprotein_Cholesterol\n", + "6039 mean_High_Density_Lipoprotein_Cholesterol<=10^medications_lifetime_perc_covered*High_Density_Lipoprotein_Cholesterol\n", + "6040 mean_High_Density_Lipoprotein_Cholesterol<=maximum(Heart_rate,High_Density_Lipoprotein_Cholesterol)\n", + "6041 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+healthcare_coverage\n", + "6042 mean_High_Density_Lipoprotein_Cholesterol<=-age+ceil(Body_Height)\n", + "6043 mean_High_Density_Lipoprotein_Cholesterol<=-longitude/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6044 mean_High_Density_Lipoprotein_Cholesterol<=(1/medications_lifetime_perc_covered)^mean_Carbon_Dioxide\n", + "6045 mean_High_Density_Lipoprotein_Cholesterol<=floor(DALY)*mean_Estimated_Glomerular_Filtration_Rate\n", + "6046 mean_High_Density_Lipoprotein_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+Protein__Mass_volume__in_Serum,Plasma\n", + "6047 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "6048 mean_High_Density_Lipoprotein_Cholesterol<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma^2*QALY\n", + "6049 mean_High_Density_Lipoprotein_Cholesterol<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+High_Density_Lipoprotein_Cholesterol\n", + "6050 mean_High_Density_Lipoprotein_Cholesterol<=1/Estimated_Glomerular_Filtration_Rate+Body_Weight\n", + "6051 mean_High_Density_Lipoprotein_Cholesterol<=Carbon_Dioxide*log(MCH__Entitic_mass__by_Automated_count)\n", + "6052 mean_High_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+mean_Microalbumin_Creatinine_Ratio\n", + "6053 mean_High_Density_Lipoprotein_Cholesterol<=10^Leukocytes____volume__in_Blood_by_Automated_count/Glucose\n", + "6054 mean_High_Density_Lipoprotein_Cholesterol<=ceil(High_Density_Lipoprotein_Cholesterol)/medications_lifetime_perc_covered\n", + "6055 mean_High_Density_Lipoprotein_Cholesterol<=(QOLS+1)*High_Density_Lipoprotein_Cholesterol\n", + "6056 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol*log(Estimated_Glomerular_Filtration_Rate)\n", + "6057 mean_High_Density_Lipoprotein_Cholesterol<=Glucose+floor(mean_Calcium)\n", + "6058 mean_High_Density_Lipoprotein_Cholesterol<=2*High_Density_Lipoprotein_Cholesterol-MCH__Entitic_mass__by_Automated_count\n", + "6059 mean_High_Density_Lipoprotein_Cholesterol<=High_Density_Lipoprotein_Cholesterol*ceil(Creatinine)\n", + "6060 mean_High_Density_Lipoprotein_Cholesterol>=longitude\n", + "6061 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-healthcare_coverage\n", + "6062 mean_High_Density_Lipoprotein_Cholesterol>=minimum(QALY,2*DALY)\n", + "6063 mean_High_Density_Lipoprotein_Cholesterol>=Body_Mass_Index+1/2*active_care_plans\n", + "6064 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol^QOLS\n", + "6065 mean_High_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "6066 mean_High_Density_Lipoprotein_Cholesterol>=active_care_plans^2+mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6067 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "6068 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,medications_active^2)\n", + "6069 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-medications_lifetime\n", + "6070 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-Urea_Nitrogen\n", + "6071 mean_High_Density_Lipoprotein_Cholesterol>=-Calcium+High_Density_Lipoprotein_Cholesterol-1\n", + "6072 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,mean_QOLS)\n", + "6073 mean_High_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "6074 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "6075 mean_High_Density_Lipoprotein_Cholesterol>=e^lifetime_care_plans/mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6076 mean_High_Density_Lipoprotein_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+High_Density_Lipoprotein_Cholesterol-1\n", + "6077 mean_High_Density_Lipoprotein_Cholesterol>=minimum(QALY,procedures_lifetime^2)\n", + "6078 mean_High_Density_Lipoprotein_Cholesterol>=(active_care_plans+1)*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6079 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-Leukocytes____volume__in_Blood_by_Automated_count+1\n", + "6080 mean_High_Density_Lipoprotein_Cholesterol>=-Erythrocytes____volume__in_Blood_by_Automated_count+High_Density_Lipoprotein_Cholesterol+1\n", + "6081 mean_High_Density_Lipoprotein_Cholesterol>=2*High_Density_Lipoprotein_Cholesterol/Globulin__Mass_volume__in_Serum_by_calculation\n", + "6082 mean_High_Density_Lipoprotein_Cholesterol>=log(Glucose)/QOLS\n", + "6083 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "6084 mean_High_Density_Lipoprotein_Cholesterol>=1/2*medications_lifetime/mean_Calcium\n", + "6085 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6086 mean_High_Density_Lipoprotein_Cholesterol>=(log(Sodium)/log(10))^mean_Potassium\n", + "6087 mean_High_Density_Lipoprotein_Cholesterol>=sqrt(Leukocytes____volume__in_Blood_by_Automated_count)*active_conditions\n", + "6088 mean_High_Density_Lipoprotein_Cholesterol>=lifetime_conditions*log(active_conditions)\n", + "6089 mean_High_Density_Lipoprotein_Cholesterol>=High_Density_Lipoprotein_Cholesterol/active_conditions\n", + "6090 mean_High_Density_Lipoprotein_Cholesterol>=ceil(procedures_lifetime_cost)/encounters_lifetime_payer_coverage\n", + "6091 mean_High_Density_Lipoprotein_Cholesterol>=(10^healthcare_expenses)^longitude\n", + "6092 mean_High_Density_Lipoprotein_Cholesterol>=DALY-encounters_lifetime_perc_covered-1\n", + "6093 mean_High_Density_Lipoprotein_Cholesterol>=1/2*Body_Weight/mean_Creatinine\n", + "6094 mean_High_Density_Lipoprotein_Cholesterol>=(encounters_count+1)/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6095 mean_High_Density_Lipoprotein_Cholesterol>=minimum(High_Density_Lipoprotein_Cholesterol,10^immunizations_lifetime)\n", + "6096 mean_High_Density_Lipoprotein_Cholesterol>=Body_Mass_Index*log(DALY)/log(10)\n", + "6097 mean_High_Density_Lipoprotein_Cholesterol>=floor(High_Density_Lipoprotein_Cholesterol)^num_allergies\n", + "6098 mean_Low_Density_Lipoprotein_Cholesterol<=healthcare_expenses\n", + "6099 mean_Low_Density_Lipoprotein_Cholesterol<=MCHC__Mass_volume__by_Automated_count+Systolic_Blood_Pressure-1\n", + "6100 mean_Low_Density_Lipoprotein_Cholesterol<=2*Carbon_Dioxide+Chloride\n", + "6101 mean_Low_Density_Lipoprotein_Cholesterol<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2+active_care_plan_length\n", + "6102 mean_Low_Density_Lipoprotein_Cholesterol<=(Low_Density_Lipoprotein_Cholesterol+1)/medications_lifetime_perc_covered\n", + "6103 mean_Low_Density_Lipoprotein_Cholesterol<=Diastolic_Blood_Pressure+1/2*Low_Density_Lipoprotein_Cholesterol\n", + "6104 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+healthcare_coverage\n", + "6105 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol^active_conditions\n", + "6106 mean_Low_Density_Lipoprotein_Cholesterol<=Total_Cholesterol-Urea_Nitrogen-1\n", + "6107 mean_Low_Density_Lipoprotein_Cholesterol<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood+1)*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6108 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+medications_lifetime\n", + "6109 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,mean_Triglycerides)\n", + "6110 mean_Low_Density_Lipoprotein_Cholesterol<=Chloride+mean_Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "6111 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_cost,Low_Density_Lipoprotein_Cholesterol)\n", + "6112 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,medications_lifetime^2)\n", + "6113 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(medications_lifetime_dispenses,Low_Density_Lipoprotein_Cholesterol)\n", + "6114 mean_Low_Density_Lipoprotein_Cholesterol<=Body_Mass_Index^2/Potassium\n", + "6115 mean_Low_Density_Lipoprotein_Cholesterol<=Albumin__Mass_volume__in_Serum,Plasma^2*Calcium\n", + "6116 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol/num_allergies\n", + "6117 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,10^active_conditions)\n", + "6118 mean_Low_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate^2*Respiratory_rate\n", + "6119 mean_Low_Density_Lipoprotein_Cholesterol<=floor(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)+mean_Chloride\n", + "6120 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(healthcare_coverage)+Estimated_Glomerular_Filtration_Rate\n", + "6121 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,active_care_plan_length^2)\n", + "6122 mean_Low_Density_Lipoprotein_Cholesterol<=Microalbumin_Creatinine_Ratio^2/procedures_lifetime\n", + "6123 mean_Low_Density_Lipoprotein_Cholesterol<=10^QOLS*Systolic_Blood_Pressure\n", + "6124 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,1/2*Platelets____volume__in_Blood_by_Automated_count)\n", + "6125 mean_Low_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+2*Heart_rate\n", + "6126 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol*ceil(mean_Creatinine)\n", + "6127 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Triglycerides,10^medications_active)\n", + "6128 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,e^active_conditions)\n", + "6129 mean_Low_Density_Lipoprotein_Cholesterol<=ceil(Low_Density_Lipoprotein_Cholesterol)+mean_Carbon_Dioxide\n", + "6130 mean_Low_Density_Lipoprotein_Cholesterol<=Estimated_Glomerular_Filtration_Rate+1/2*lifetime_condition_length\n", + "6131 mean_Low_Density_Lipoprotein_Cholesterol<=maximum(Low_Density_Lipoprotein_Cholesterol,encounters_count^2)\n", + "6132 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(Carbon_Dioxide)*QALY\n", + "6133 mean_Low_Density_Lipoprotein_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+2*Respiratory_rate\n", + "6134 mean_Low_Density_Lipoprotein_Cholesterol<=Systolic_Blood_Pressure+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6135 mean_Low_Density_Lipoprotein_Cholesterol<=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)^Urea_Nitrogen\n", + "6136 mean_Low_Density_Lipoprotein_Cholesterol<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6137 mean_Low_Density_Lipoprotein_Cholesterol<=e^Albumin__Mass_volume__in_Serum,Plasma+mean_Glucose\n", + "6138 mean_Low_Density_Lipoprotein_Cholesterol<=1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+Low_Density_Lipoprotein_Cholesterol\n", + "6139 mean_Low_Density_Lipoprotein_Cholesterol>=latitude\n", + "6140 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(age,Low_Density_Lipoprotein_Cholesterol)\n", + "6141 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(Respiratory_rate)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "6142 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-active_care_plan_length\n", + "6143 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-procedures_lifetime_cost\n", + "6144 mean_Low_Density_Lipoprotein_Cholesterol>=-healthcare_expenses\n", + "6145 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-mean_Estimated_Glomerular_Filtration_Rate+1\n", + "6146 mean_Low_Density_Lipoprotein_Cholesterol>=QALY*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "6147 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Diastolic_Blood_Pressure,Low_Density_Lipoprotein_Cholesterol)\n", + "6148 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol^QOLS\n", + "6149 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol/active_conditions\n", + "6150 mean_Low_Density_Lipoprotein_Cholesterol>=-Leukocytes____volume__in_Blood_by_Automated_count+Low_Density_Lipoprotein_Cholesterol+1\n", + "6151 mean_Low_Density_Lipoprotein_Cholesterol>=healthcare_expenses^longitude\n", + "6152 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Creatinine)\n", + "6153 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-medications_lifetime\n", + "6154 mean_Low_Density_Lipoprotein_Cholesterol>=-Carbon_Dioxide+Low_Density_Lipoprotein_Cholesterol+1\n", + "6155 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Estimated_Glomerular_Filtration_Rate)\n", + "6156 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(encounters_count,Diastolic_Blood_Pressure+1)\n", + "6157 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol*sqrt(QOLS)\n", + "6158 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(procedures_lifetime_cost)/mean_Estimated_Glomerular_Filtration_Rate\n", + "6159 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(encounters_lifetime_payer_coverage)-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "6160 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Low_Density_Lipoprotein_Cholesterol,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6161 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(encounters_count,mean_Glucose)\n", + "6162 mean_Low_Density_Lipoprotein_Cholesterol>=(Urea_Nitrogen-1)*mean_Potassium\n", + "6163 mean_Low_Density_Lipoprotein_Cholesterol>=-active_care_plan_length+mean_Glucose\n", + "6164 mean_Low_Density_Lipoprotein_Cholesterol>=DALY*log(lifetime_care_plan_length)/log(10)\n", + "6165 mean_Low_Density_Lipoprotein_Cholesterol>=-Albumin__Mass_volume__in_Serum,Plasma+Low_Density_Lipoprotein_Cholesterol-1\n", + "6166 mean_Low_Density_Lipoprotein_Cholesterol>=Bilirubin_total__Mass_volume__in_Serum,Plasma^mean_Carbon_Dioxide\n", + "6167 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(Body_Height)/QOLS\n", + "6168 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "6169 mean_Low_Density_Lipoprotein_Cholesterol>=Low_Density_Lipoprotein_Cholesterol-healthcare_coverage\n", + "6170 mean_Low_Density_Lipoprotein_Cholesterol>=1/2*Microalbumin_Creatinine_Ratio*num_allergies\n", + "6171 mean_Low_Density_Lipoprotein_Cholesterol>=1/2*Carbon_Dioxide/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6172 mean_Low_Density_Lipoprotein_Cholesterol>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)*device_lifetime_length\n", + "6173 mean_Low_Density_Lipoprotein_Cholesterol>=(Erythrocytes____volume__in_Blood_by_Automated_count-1)^mean_Creatinine\n", + "6174 mean_Low_Density_Lipoprotein_Cholesterol>=minimum(Glucose,1/2*encounters_count)\n", + "6175 mean_Low_Density_Lipoprotein_Cholesterol>=(immunizations_lifetime-1)*Microalbumin_Creatinine_Ratio\n", + "6176 mean_Microalbumin_Creatinine_Ratio<=healthcare_expenses\n", + "6177 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+floor(Low_Density_Lipoprotein_Cholesterol)\n", + "6178 mean_Microalbumin_Creatinine_Ratio<=e^mean_Potassium*mean_Creatinine\n", + "6179 mean_Microalbumin_Creatinine_Ratio<=Diastolic_Blood_Pressure^(1/medications_lifetime_perc_covered)\n", + "6180 mean_Microalbumin_Creatinine_Ratio<=Body_Weight^(1/medications_lifetime_perc_covered)\n", + "6181 mean_Microalbumin_Creatinine_Ratio<=(log(Chloride)/log(10))^Urea_Nitrogen\n", + "6182 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+procedures_lifetime_cost\n", + "6183 mean_Microalbumin_Creatinine_Ratio<=1/2*Triglycerides*mean_Estimated_Glomerular_Filtration_Rate\n", + "6184 mean_Microalbumin_Creatinine_Ratio<=maximum(Microalbumin_Creatinine_Ratio,10^DALY)\n", + "6185 mean_Microalbumin_Creatinine_Ratio<=healthcare_expenses^sqrt(encounters_lifetime_perc_covered)\n", + "6186 mean_Microalbumin_Creatinine_Ratio<=10^medications_active*Triglycerides\n", + "6187 mean_Microalbumin_Creatinine_Ratio<=(QOLS+1)*lifetime_condition_length\n", + "6188 mean_Microalbumin_Creatinine_Ratio<=log(procedures_lifetime_cost)^mean_Creatinine\n", + "6189 mean_Microalbumin_Creatinine_Ratio<=e^(-QOLS)*medications_lifetime_dispenses\n", + "6190 mean_Microalbumin_Creatinine_Ratio<=Systolic_Blood_Pressure^(QOLS+1)\n", + "6191 mean_Microalbumin_Creatinine_Ratio<=QALY*floor(DALY)\n", + "6192 mean_Microalbumin_Creatinine_Ratio<=log(Microalbumin_Creatinine_Ratio)*mean_Diastolic_Blood_Pressure\n", + "6193 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio+ceil(mean_Low_Density_Lipoprotein_Cholesterol)\n", + "6194 mean_Microalbumin_Creatinine_Ratio<=(Heart_rate-1)*mean_Creatinine\n", + "6195 mean_Microalbumin_Creatinine_Ratio<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^Calcium\n", + "6196 mean_Microalbumin_Creatinine_Ratio<=2*Microalbumin_Creatinine_Ratio/QOLS\n", + "6197 mean_Microalbumin_Creatinine_Ratio<=Microalbumin_Creatinine_Ratio*floor(Potassium)\n", + "6198 mean_Microalbumin_Creatinine_Ratio>=longitude\n", + "6199 mean_Microalbumin_Creatinine_Ratio>=minimum(Glucose,1/medications_active)\n", + "6200 mean_Microalbumin_Creatinine_Ratio>=2*medications_lifetime/mean_Estimated_Glomerular_Filtration_Rate\n", + "6201 mean_Microalbumin_Creatinine_Ratio>=Potassium+QOLS\n", + "6202 mean_Microalbumin_Creatinine_Ratio>=healthcare_expenses^longitude\n", + "6203 mean_Microalbumin_Creatinine_Ratio>=encounters_count/mean_Calcium\n", + "6204 mean_Microalbumin_Creatinine_Ratio>=-healthcare_expenses\n", + "6205 mean_Microalbumin_Creatinine_Ratio>=e^lifetime_care_plans/Sodium\n", + "6206 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio-procedures_lifetime_cost\n", + "6207 mean_Microalbumin_Creatinine_Ratio>=minimum(Urea_Nitrogen,Microalbumin_Creatinine_Ratio)\n", + "6208 mean_Microalbumin_Creatinine_Ratio>=2*Chloride*num_allergies\n", + "6209 mean_Microalbumin_Creatinine_Ratio>=(mean_Creatinine+1)*device_lifetime_length\n", + "6210 mean_Microalbumin_Creatinine_Ratio>=-Total_Cholesterol+encounters_count+1\n", + "6211 mean_Microalbumin_Creatinine_Ratio>=1/2*lifetime_condition_length-mean_Total_Cholesterol\n", + "6212 mean_Microalbumin_Creatinine_Ratio>=2*active_care_plan_length-lifetime_care_plan_length\n", + "6213 mean_Microalbumin_Creatinine_Ratio>=-Total_Cholesterol+Triglycerides+1\n", + "6214 mean_Microalbumin_Creatinine_Ratio>=(Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2)^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6215 mean_Microalbumin_Creatinine_Ratio>=floor(Microalbumin_Creatinine_Ratio)-mean_Chloride\n", + "6216 mean_Microalbumin_Creatinine_Ratio>=minimum(mean_Systolic_Blood_Pressure,1/medications_active)\n", + "6217 mean_Microalbumin_Creatinine_Ratio>=sqrt(Microalbumin_Creatinine_Ratio)/QOLS\n", + "6218 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio*log(mean_Creatinine)/log(10)\n", + "6219 mean_Microalbumin_Creatinine_Ratio>=Microalbumin_Creatinine_Ratio-mean_Glucose+1\n", + "6220 mean_Microalbumin_Creatinine_Ratio>=e^mean_Creatinine/Estimated_Glomerular_Filtration_Rate\n", + "6221 mean_Microalbumin_Creatinine_Ratio>=(10^healthcare_expenses)^longitude\n", + "6222 mean_Microalbumin_Creatinine_Ratio>=e^medications_active/active_care_plans\n", + "6223 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=healthcare_expenses\n", + "6224 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+active_care_plans\n", + "6225 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_condition_length\n", + "6226 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/2*encounters_count\n", + "6227 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_care_plans,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6228 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions^2\n", + "6229 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(medications_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6230 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported+procedures_lifetime\n", + "6231 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6232 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6233 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(DALY,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6234 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(10^Creatinine)\n", + "6235 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Potassium)\n", + "6236 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=2*Albumin__Mass_volume__in_Serum,Plasma*QOLS\n", + "6237 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions+medications_active\n", + "6238 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Triglycerides^encounters_lifetime_perc_covered\n", + "6239 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/mean_Creatinine\n", + "6240 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=1/Bilirubin_total__Mass_volume__in_Serum,Plasma+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6241 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "6242 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=mean_Microalbumin_Creatinine_Ratio^encounters_lifetime_perc_covered\n", + "6243 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+immunizations_lifetime\n", + "6244 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)-Creatinine\n", + "6245 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/imaging_studies_lifetime\n", + "6246 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(2*Total_Cholesterol)^QOLS\n", + "6247 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(mean_Creatinine,Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)\n", + "6248 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Carbon_Dioxide-Urea_Nitrogen\n", + "6249 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(sqrt(Calcium))\n", + "6250 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(MCHC__Mass_volume__by_Automated_count)/procedures_lifetime\n", + "6251 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_care_plans+active_conditions\n", + "6252 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Sodium,floor(Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "6253 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(medications_lifetime_dispenses-1)/Microalbumin_Creatinine_Ratio\n", + "6254 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=active_conditions/num_allergies\n", + "6255 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "6256 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=-Body_Mass_Index+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "6257 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=10^active_care_plans/Calcium\n", + "6258 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,1/2*lifetime_conditions)\n", + "6259 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(encounters_lifetime_perc_covered+1)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "6260 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=immunizations_lifetime_cost+medications_lifetime_dispenses\n", + "6261 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_active/num_allergies\n", + "6262 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(active_conditions,medications_active)\n", + "6263 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=medications_lifetime_cost+procedures_lifetime\n", + "6264 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^Creatinine+immunizations_lifetime_cost\n", + "6265 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=(1/medications_lifetime_perc_covered)^Potassium\n", + "6266 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,procedures_lifetime+1)\n", + "6267 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)-active_conditions\n", + "6268 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=maximum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,DALY-1)\n", + "6269 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=ceil(Urea_Nitrogen)-medications_active\n", + "6270 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Bilirubin_total__Mass_volume__in_Serum,Plasma+Pain_severity___0_10_verbal_numeric_rating__Score____Reported+1\n", + "6271 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/num_allergies\n", + "6272 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=longitude\n", + "6273 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=num_allergies\n", + "6274 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=2*num_allergies\n", + "6275 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(immunizations_lifetime,Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6276 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=imaging_studies_lifetime-1\n", + "6277 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(immunizations_lifetime_cost,sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "6278 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=healthcare_expenses^longitude\n", + "6279 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-procedures_lifetime\n", + "6280 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime_cost\n", + "6281 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_care_plans-medications_lifetime_dispenses\n", + "6282 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Creatinine)\n", + "6283 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=maximum(Weight_difference__Mass_difference____pre_dialysis___post_dialysis,-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6284 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Hemoglobin_A1c_Hemoglobin_total_in_Blood+active_care_plans-1\n", + "6285 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=floor(1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "6286 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*imaging_studies_lifetime\n", + "6287 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Estimated_Glomerular_Filtration_Rate+1/2*Respiratory_rate\n", + "6288 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^encounters_lifetime_perc_covered\n", + "6289 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Calcium+lifetime_care_plans+1\n", + "6290 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(procedures_lifetime-1)*num_allergies\n", + "6291 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-encounters_count+procedures_lifetime\n", + "6292 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=ceil(log(Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "6293 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-DALY+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6294 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-active_care_plans\n", + "6295 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported/active_conditions\n", + "6296 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported/Creatinine\n", + "6297 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*log(medications_active)/log(10)\n", + "6298 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=(10^healthcare_expenses)^longitude\n", + "6299 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Calcium+ceil(Leukocytes____volume__in_Blood_by_Automated_count)\n", + "6300 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Erythrocytes____volume__in_Blood_by_Automated_count-medications_lifetime\n", + "6301 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(Low_Density_Lipoprotein_Cholesterol)-mean_Estimated_Glomerular_Filtration_Rate\n", + "6302 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Respiratory_rate+mean_Respiratory_rate\n", + "6303 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)-immunizations_lifetime_cost\n", + "6304 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported^2/Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6305 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=active_conditions-mean_Respiratory_rate-1\n", + "6306 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=-Heart_rate+floor(active_condition_length)\n", + "6307 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,-Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6308 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,sqrt(QOLS))\n", + "6309 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Pain_severity___0_10_verbal_numeric_rating__Score____Reported,immunizations_lifetime^2)\n", + "6310 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=10^QOLS-Leukocytes____volume__in_Blood_by_Automated_count\n", + "6311 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported*floor(QOLS)\n", + "6312 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=sqrt(DALY)-Albumin__Mass_volume__in_Serum,Plasma\n", + "6313 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Respiratory_rate-mean_Respiratory_rate-1\n", + "6314 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=minimum(Prostate_specific_Ag__Mass_volume__in_Serum,Plasma,floor(Pain_severity___0_10_verbal_numeric_rating__Score____Reported))\n", + "6315 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Leukocytes____volume__in_Blood_by_Automated_count^2-Chloride\n", + "6316 mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+1\n", + "6317 mean_Potassium<=healthcare_expenses\n", + "6318 mean_Potassium<=Potassium+2*encounters_lifetime_perc_covered\n", + "6319 mean_Potassium<=sqrt(QOLS)+Potassium\n", + "6320 mean_Potassium<=maximum(Potassium,1/device_lifetime_length)\n", + "6321 mean_Potassium<=Body_Weight-active_condition_length-1\n", + "6322 mean_Potassium<=1/2*Urea_Nitrogen+1\n", + "6323 mean_Potassium<=log(encounters_lifetime_perc_covered)/log(10)+Microalbumin_Creatinine_Ratio\n", + "6324 mean_Potassium<=ceil(active_condition_length)\n", + "6325 mean_Potassium<=encounters_count^2\n", + "6326 mean_Potassium<=maximum(active_conditions,Potassium)\n", + "6327 mean_Potassium<=Potassium+medications_lifetime\n", + "6328 mean_Potassium<=Leukocytes____volume__in_Blood_by_Automated_count+log(active_care_plans)\n", + "6329 mean_Potassium<=Albumin__Mass_volume__in_Serum,Plasma*e^encounters_lifetime_perc_covered\n", + "6330 mean_Potassium<=Creatinine+log(Diastolic_Blood_Pressure)\n", + "6331 mean_Potassium<=maximum(Potassium,1/2*active_care_plan_length)\n", + "6332 mean_Potassium<=maximum(Potassium,10^DALY)\n", + "6333 mean_Potassium<=Potassium+healthcare_coverage\n", + "6334 mean_Potassium<=(log(device_lifetime_length)/log(10))^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6335 mean_Potassium<=immunizations_lifetime_cost+lifetime_conditions\n", + "6336 mean_Potassium<=maximum(medications_lifetime,Potassium)\n", + "6337 mean_Potassium<=1/2*QOLS*lifetime_care_plan_length\n", + "6338 mean_Potassium<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count^2/mean_Triglycerides\n", + "6339 mean_Potassium<=Creatinine^2+Potassium\n", + "6340 mean_Potassium<=1/medications_lifetime_perc_covered+Estimated_Glomerular_Filtration_Rate\n", + "6341 mean_Potassium<=Glucose-active_care_plan_length\n", + "6342 mean_Potassium<=Creatinine^2+Leukocytes____volume__in_Blood_by_Automated_count\n", + "6343 mean_Potassium<=10^Pain_severity___0_10_verbal_numeric_rating__Score____Reported+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6344 mean_Potassium<=-Erythrocytes____volume__in_Blood_by_Automated_count+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6345 mean_Potassium<=(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+1)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6346 mean_Potassium<=minimum(Microalbumin_Creatinine_Ratio,log(Systolic_Blood_Pressure))\n", + "6347 mean_Potassium<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/num_allergies\n", + "6348 mean_Potassium<=maximum(Respiratory_rate,Potassium)\n", + "6349 mean_Potassium<=1/2*DALY+Potassium\n", + "6350 mean_Potassium<=1/2*Albumin__Mass_volume__in_Serum,Plasma*Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6351 mean_Potassium<=(Glucose-1)/active_conditions\n", + "6352 mean_Potassium<=Calcium-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6353 mean_Potassium<=maximum(Potassium,log(Body_Height))\n", + "6354 mean_Potassium<=log(MCV__Entitic_volume__by_Automated_count)/QOLS\n", + "6355 mean_Potassium<=2*Body_Height-lifetime_care_plan_length\n", + "6356 mean_Potassium<=(1/2*latitude)^Creatinine\n", + "6357 mean_Potassium<=(High_Density_Lipoprotein_Cholesterol+1)*QOLS\n", + "6358 mean_Potassium<=ceil(Potassium)+procedures_lifetime\n", + "6359 mean_Potassium<=maximum(Triglycerides,ceil(Potassium))\n", + "6360 mean_Potassium<=log(Albumin__Mass_volume__in_Serum,Plasma)*mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "6361 mean_Potassium<=sqrt(medications_lifetime)/medications_lifetime_perc_covered\n", + "6362 mean_Potassium<=log(Albumin__Mass_volume__in_Serum,Plasma)/log(10)+Potassium\n", + "6363 mean_Potassium<=(1/medications_lifetime_perc_covered)^Calcium\n", + "6364 mean_Potassium<=maximum(DALY,Leukocytes____volume__in_Blood_by_Automated_count-1)\n", + "6365 mean_Potassium<=1/2*Erythrocytes____volume__in_Blood_by_Automated_count+Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6366 mean_Potassium<=log(Chloride)/num_allergies\n", + "6367 mean_Potassium<=Carbon_Dioxide^2/mean_Body_Weight\n", + "6368 mean_Potassium<=(Urea_Nitrogen-1)*Creatinine\n", + "6369 mean_Potassium<=maximum(Potassium,1/2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)\n", + "6370 mean_Potassium<=MCH__Entitic_mass__by_Automated_count^2/lifetime_care_plan_length\n", + "6371 mean_Potassium>=longitude\n", + "6372 mean_Potassium>=log(medications_lifetime_cost)/log(10)-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6373 mean_Potassium>=minimum(Creatinine,log(QALY))\n", + "6374 mean_Potassium>=e^imaging_studies_lifetime/Urea_Nitrogen\n", + "6375 mean_Potassium>=minimum(Leukocytes____volume__in_Blood_by_Automated_count,abs(Potassium))\n", + "6376 mean_Potassium>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "6377 mean_Potassium>=2*active_conditions/mean_Estimated_Glomerular_Filtration_Rate\n", + "6378 mean_Potassium>=Potassium-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6379 mean_Potassium>=minimum(Potassium,mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6380 mean_Potassium>=-healthcare_expenses\n", + "6381 mean_Potassium>=floor(Hemoglobin__Mass_volume__in_Blood)/Potassium\n", + "6382 mean_Potassium>=Potassium^QOLS\n", + "6383 mean_Potassium>=Potassium-procedures_lifetime\n", + "6384 mean_Potassium>=Potassium*QOLS\n", + "6385 mean_Potassium>=latitude/Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6386 mean_Potassium>=2*active_care_plan_length/QALY\n", + "6387 mean_Potassium>=minimum(Potassium,1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6388 mean_Potassium>=healthcare_expenses^longitude\n", + "6389 mean_Potassium>=Potassium/active_care_plans\n", + "6390 mean_Potassium>=log(lifetime_care_plans)*mean_Albumin__Mass_volume__in_Serum,Plasma/log(10)\n", + "6391 mean_Potassium>=Pain_severity___0_10_verbal_numeric_rating__Score____Reported-mean_Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6392 mean_Potassium>=1/2*active_care_plan_length/mean_Urea_Nitrogen\n", + "6393 mean_Potassium>=minimum(Hemoglobin_A1c_Hemoglobin_total_in_Blood,1/2*lifetime_care_plans)\n", + "6394 mean_Potassium>=(Glucose+1)/mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6395 mean_Potassium>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+log(Body_Weight)\n", + "6396 mean_Potassium>=log(Microalbumin_Creatinine_Ratio)*medications_lifetime_perc_covered\n", + "6397 mean_Potassium>=Calcium-Microalbumin_Creatinine_Ratio\n", + "6398 mean_Potassium>=1/2*medications_lifetime/mean_Chloride\n", + "6399 mean_Potassium>=1/2*Total_Cholesterol/MCH__Entitic_mass__by_Automated_count\n", + "6400 mean_Potassium>=(log(Calcium)/log(10))^Body_Height\n", + "6401 mean_Potassium>=(log(Calcium)/log(10))^Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "6402 mean_Potassium>=log(Bilirubin_total__Mass_volume__in_Serum,Plasma)*mean_Carbon_Dioxide\n", + "6403 mean_Potassium>=MCV__Entitic_volume__by_Automated_count/Carbon_Dioxide\n", + "6404 mean_Potassium>=minimum(Potassium,sqrt(Respiratory_rate))\n", + "6405 mean_Potassium>=e^Erythrocytes____volume__in_Blood_by_Automated_count/latitude\n", + "6406 mean_Potassium>=Potassium-medications_lifetime\n", + "6407 mean_Potassium>=minimum(Erythrocytes____volume__in_Blood_by_Automated_count,10^medications_lifetime_perc_covered)\n", + "6408 mean_Potassium>=log(Estimated_Glomerular_Filtration_Rate)/DALY\n", + "6409 mean_Potassium>=Potassium/active_conditions\n", + "6410 mean_Potassium>=log(encounters_lifetime_total_cost)/log(10)-encounters_lifetime_perc_covered\n", + "6411 mean_Potassium>=Potassium-healthcare_coverage\n", + "6412 mean_Potassium>=Potassium-medications_active\n", + "6413 mean_Potassium>=(10^healthcare_expenses)^longitude\n", + "6414 mean_Potassium>=1/2*medications_lifetime/mean_Low_Density_Lipoprotein_Cholesterol\n", + "6415 mean_Potassium>=-QOLS+log(Body_Weight)\n", + "6416 mean_Potassium>=log(encounters_count)/active_care_plans\n", + "6417 mean_Potassium>=floor(Potassium)-medications_lifetime_perc_covered\n", + "6418 mean_Potassium>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,floor(Potassium))\n", + "6419 mean_QALY<=healthcare_expenses\n", + "6420 mean_QALY<=QALY\n", + "6421 mean_QALY>=longitude\n", + "6422 mean_QALY>=QALY\n", + "6423 mean_QOLS<=healthcare_expenses\n", + "6424 mean_QOLS<=lifetime_conditions\n", + "6425 mean_QOLS<=QOLS\n", + "6426 mean_QOLS>=longitude\n", + "6427 mean_QOLS>=QOLS\n", + "6428 mean_Respiratory_rate<=healthcare_expenses\n", + "6429 mean_Respiratory_rate<=Respiratory_rate+active_care_plans\n", + "6430 mean_Respiratory_rate<=maximum(active_care_plan_length,Respiratory_rate)\n", + "6431 mean_Respiratory_rate<=Respiratory_rate+mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6432 mean_Respiratory_rate<=maximum(Microalbumin_Creatinine_Ratio,floor(Respiratory_rate))\n", + "6433 mean_Respiratory_rate<=sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6434 mean_Respiratory_rate<=maximum(encounters_count,Respiratory_rate)\n", + "6435 mean_Respiratory_rate<=ceil(Potassium^2)\n", + "6436 mean_Respiratory_rate<=2*Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-Potassium\n", + "6437 mean_Respiratory_rate<=maximum(Respiratory_rate,10^active_care_plans)\n", + "6438 mean_Respiratory_rate<=Potassium*log(QALY)\n", + "6439 mean_Respiratory_rate<=1/2*floor(High_Density_Lipoprotein_Cholesterol)\n", + "6440 mean_Respiratory_rate<=1/2*Potassium+Respiratory_rate\n", + "6441 mean_Respiratory_rate<=Respiratory_rate+procedures_lifetime_cost\n", + "6442 mean_Respiratory_rate<=maximum(medications_lifetime,Respiratory_rate)\n", + "6443 mean_Respiratory_rate<=2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+active_conditions\n", + "6444 mean_Respiratory_rate<=Respiratory_rate/num_allergies\n", + "6445 mean_Respiratory_rate<=maximum(Respiratory_rate,2*active_conditions)\n", + "6446 mean_Respiratory_rate<=(log(QALY)/log(10))^Urea_Nitrogen\n", + "6447 mean_Respiratory_rate<=(encounters_lifetime_total_cost^2)^encounters_lifetime_perc_covered\n", + "6448 mean_Respiratory_rate<=maximum(Creatinine,Estimated_Glomerular_Filtration_Rate^2)\n", + "6449 mean_Respiratory_rate<=maximum(Respiratory_rate,e^active_conditions)\n", + "6450 mean_Respiratory_rate<=10^(1/medications_lifetime_perc_covered)\n", + "6451 mean_Respiratory_rate<=sqrt(QOLS)*mean_High_Density_Lipoprotein_Cholesterol\n", + "6452 mean_Respiratory_rate<=floor(Erythrocytes____volume__in_Blood_by_Automated_count)^2\n", + "6453 mean_Respiratory_rate<=log(Microalbumin_Creatinine_Ratio)/log(10)+Respiratory_rate\n", + "6454 mean_Respiratory_rate<=active_care_plans*floor(Urea_Nitrogen)\n", + "6455 mean_Respiratory_rate<=2*floor(mean_Urea_Nitrogen)\n", + "6456 mean_Respiratory_rate<=maximum(Respiratory_rate,e^DALY)\n", + "6457 mean_Respiratory_rate<=ceil(Leukocytes____volume__in_Blood_by_Automated_count^2)\n", + "6458 mean_Respiratory_rate<=Albumin__Mass_volume__in_Serum,Plasma^2+medications_lifetime_perc_covered\n", + "6459 mean_Respiratory_rate<=1/2*Carbon_Dioxide+mean_Potassium\n", + "6460 mean_Respiratory_rate<=(log(Triglycerides)/log(10))^Potassium\n", + "6461 mean_Respiratory_rate<=log(medications_lifetime)+mean_Estimated_Glomerular_Filtration_Rate\n", + "6462 mean_Respiratory_rate<=maximum(Respiratory_rate,1/2*active_care_plan_length)\n", + "6463 mean_Respiratory_rate<=maximum(Triglycerides,floor(Respiratory_rate))\n", + "6464 mean_Respiratory_rate<=maximum(DALY,Estimated_Glomerular_Filtration_Rate-1)\n", + "6465 mean_Respiratory_rate<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+log(Total_Cholesterol)\n", + "6466 mean_Respiratory_rate<=sqrt(healthcare_expenses)/DALY\n", + "6467 mean_Respiratory_rate<=ceil(latitude)-mean_Carbon_Dioxide\n", + "6468 mean_Respiratory_rate>=longitude\n", + "6469 mean_Respiratory_rate>=Respiratory_rate-active_care_plans\n", + "6470 mean_Respiratory_rate>=-DALY+Respiratory_rate\n", + "6471 mean_Respiratory_rate>=2*active_care_plans\n", + "6472 mean_Respiratory_rate>=ceil(High_Density_Lipoprotein_Cholesterol)/Leukocytes____volume__in_Blood_by_Automated_count\n", + "6473 mean_Respiratory_rate>=imaging_studies_lifetime^2\n", + "6474 mean_Respiratory_rate>=floor(log(medications_lifetime_cost))\n", + "6475 mean_Respiratory_rate>=minimum(Respiratory_rate,log(medications_lifetime_cost))\n", + "6476 mean_Respiratory_rate>=ceil(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+1)\n", + "6477 mean_Respiratory_rate>=floor(Triglycerides)/High_Density_Lipoprotein_Cholesterol\n", + "6478 mean_Respiratory_rate>=Respiratory_rate-procedures_lifetime_cost\n", + "6479 mean_Respiratory_rate>=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6480 mean_Respiratory_rate>=ceil(sqrt(Estimated_Glomerular_Filtration_Rate))\n", + "6481 mean_Respiratory_rate>=Respiratory_rate/lifetime_conditions\n", + "6482 mean_Respiratory_rate>=Respiratory_rate-medications_lifetime\n", + "6483 mean_Respiratory_rate>=2*sqrt(DALY)\n", + "6484 mean_Respiratory_rate>=healthcare_expenses^longitude\n", + "6485 mean_Respiratory_rate>=minimum(Respiratory_rate,e^immunizations_lifetime)\n", + "6486 mean_Respiratory_rate>=minimum(mean_Urea_Nitrogen,Respiratory_rate-1)\n", + "6487 mean_Respiratory_rate>=lifetime_care_plans+medications_active\n", + "6488 mean_Respiratory_rate>=active_care_plan_length-mean_Heart_rate+1\n", + "6489 mean_Respiratory_rate>=(lifetime_care_plan_length+1)/Carbon_Dioxide\n", + "6490 mean_Respiratory_rate>=log(Erythrocytes____volume__in_Blood_by_Automated_count)/log(10)+procedures_lifetime\n", + "6491 mean_Respiratory_rate>=active_conditions^2/Carbon_Dioxide\n", + "6492 mean_Respiratory_rate>=sqrt(lifetime_condition_length)-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6493 mean_Respiratory_rate>=floor(MCV__Entitic_volume__by_Automated_count)-mean_Diastolic_Blood_Pressure\n", + "6494 mean_Respiratory_rate>=sqrt(active_care_plan_length)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6495 mean_Respiratory_rate>=sqrt(Microalbumin_Creatinine_Ratio)*QOLS\n", + "6496 mean_Respiratory_rate>=active_care_plans*immunizations_lifetime\n", + "6497 mean_Respiratory_rate>=2*medications_lifetime/Sodium\n", + "6498 mean_Respiratory_rate>=log(Hematocrit__Volume_Fraction__of_Blood_by_Automated_count)*mean_Creatinine\n", + "6499 mean_Respiratory_rate>=minimum(device_lifetime_length,2*medications_active)\n", + "6500 mean_Respiratory_rate>=floor(10^Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6501 mean_Respiratory_rate>=log(Body_Weight)/(encounters_lifetime_perc_covered*log(10))\n", + "6502 mean_Respiratory_rate>=active_care_plans+medications_active\n", + "6503 mean_Respiratory_rate>=Low_Density_Lipoprotein_Cholesterol-Sodium\n", + "6504 mean_Respiratory_rate>=e^QOLS/encounters_lifetime_perc_covered\n", + "6505 mean_Respiratory_rate>=Respiratory_rate^QOLS\n", + "6506 mean_Respiratory_rate>=-Urea_Nitrogen+1/2*latitude\n", + "6507 mean_Respiratory_rate>=(medications_active-1)*immunizations_lifetime\n", + "6508 mean_Respiratory_rate>=sqrt(2)*sqrt(active_care_plan_length)\n", + "6509 mean_Respiratory_rate>=minimum(device_lifetime_length,Respiratory_rate-1)\n", + "6510 mean_Respiratory_rate>=sqrt(Pain_severity___0_10_verbal_numeric_rating__Score____Reported)/QOLS\n", + "6511 mean_Respiratory_rate>=-Hematocrit__Volume_Fraction__of_Blood_by_Automated_count+floor(device_lifetime_length)\n", + "6512 mean_Respiratory_rate>=(10^healthcare_expenses)^longitude\n", + "6513 mean_Respiratory_rate>=Respiratory_rate-immunizations_lifetime_cost-1\n", + "6514 mean_Respiratory_rate>=minimum(Respiratory_rate,2*medications_active)\n", + "6515 mean_Respiratory_rate>=1/2*Respiratory_rate/Creatinine\n", + "6516 mean_Respiratory_rate>=(Respiratory_rate-1)^num_allergies\n", + "6517 mean_Respiratory_rate>=Respiratory_rate-mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported-1\n", + "6518 mean_Respiratory_rate>=-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Respiratory_rate+1\n", + "6519 mean_Respiratory_rate>=minimum(Respiratory_rate,sqrt(Systolic_Blood_Pressure))\n", + "6520 mean_Respiratory_rate>=(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+1)/medications_active\n", + "6521 mean_Respiratory_rate>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2-Estimated_Glomerular_Filtration_Rate\n", + "6522 mean_Respiratory_rate>=(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1)^encounters_lifetime_perc_covered\n", + "6523 mean_Respiratory_rate>=floor(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/DALY\n", + "6524 mean_Respiratory_rate>=2*Erythrocytes____volume__in_Blood_by_Automated_count+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6525 mean_Sodium<=healthcare_expenses\n", + "6526 mean_Sodium<=minimum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,Sodium+1)\n", + "6527 mean_Sodium<=1/2*Diastolic_Blood_Pressure+Triglycerides\n", + "6528 mean_Sodium<=Sodium+medications_lifetime\n", + "6529 mean_Sodium<=maximum(Sodium,10^DALY)\n", + "6530 mean_Sodium<=Low_Density_Lipoprotein_Cholesterol+1/2*Total_Cholesterol\n", + "6531 mean_Sodium<=maximum(medications_lifetime_dispenses,Sodium)\n", + "6532 mean_Sodium<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+Sodium-1\n", + "6533 mean_Sodium<=maximum(Sodium,2*Body_Weight)\n", + "6534 mean_Sodium<=maximum(medications_lifetime_cost,Sodium)\n", + "6535 mean_Sodium<=maximum(Sodium,encounters_count^2)\n", + "6536 mean_Sodium<=Sodium+healthcare_coverage\n", + "6537 mean_Sodium<=Sodium/QOLS\n", + "6538 mean_Sodium<=(Glucose-1)*Globulin__Mass_volume__in_Serum_by_calculation\n", + "6539 mean_Sodium<=Sodium+mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood-1\n", + "6540 mean_Sodium<=Globulin__Mass_volume__in_Serum_by_calculation+Sodium\n", + "6541 mean_Sodium<=10^Globulin__Mass_volume__in_Serum_by_calculation+mean_Respiratory_rate\n", + "6542 mean_Sodium<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+mean_Systolic_Blood_Pressure-1\n", + "6543 mean_Sodium<=-Urea_Nitrogen+ceil(Total_Cholesterol)\n", + "6544 mean_Sodium<=maximum(Sodium,e^active_conditions)\n", + "6545 mean_Sodium<=maximum(Body_Height,Sodium)\n", + "6546 mean_Sodium<=Sodium^active_care_plans\n", + "6547 mean_Sodium<=Sodium^active_conditions\n", + "6548 mean_Sodium<=Leukocytes____volume__in_Blood_by_Automated_count^2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6549 mean_Sodium<=ceil(Sodium)+procedures_lifetime_cost\n", + "6550 mean_Sodium<=maximum(lifetime_condition_length,ceil(Sodium))\n", + "6551 mean_Sodium<=maximum(Sodium,medications_lifetime^2)\n", + "6552 mean_Sodium<=Potassium+Sodium-1\n", + "6553 mean_Sodium<=Respiratory_rate^2-Globulin__Mass_volume__in_Serum_by_calculation\n", + "6554 mean_Sodium<=2*Calcium^2\n", + "6555 mean_Sodium<=Chloride^2/active_care_plan_length\n", + "6556 mean_Sodium<=Sodium+e^procedures_lifetime\n", + "6557 mean_Sodium<=(1/encounters_lifetime_perc_covered)^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6558 mean_Sodium<=maximum(Sodium,e^medications_lifetime)\n", + "6559 mean_Sodium<=Diastolic_Blood_Pressure-longitude+1\n", + "6560 mean_Sodium<=Sodium+mean_Potassium-1\n", + "6561 mean_Sodium<=log(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)/log(10)+Sodium\n", + "6562 mean_Sodium<=2*Diastolic_Blood_Pressure-Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6563 mean_Sodium<=Chloride*log(Erythrocytes____volume__in_Blood_by_Automated_count)\n", + "6564 mean_Sodium<=Diastolic_Blood_Pressure+2*High_Density_Lipoprotein_Cholesterol\n", + "6565 mean_Sodium>=latitude\n", + "6566 mean_Sodium>=Creatinine*log(encounters_count)\n", + "6567 mean_Sodium>=Sodium-medications_lifetime\n", + "6568 mean_Sodium>=log(Low_Density_Lipoprotein_Cholesterol)/log(10)+Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6569 mean_Sodium>=Sodium-procedures_lifetime\n", + "6570 mean_Sodium>=Sodium^QOLS\n", + "6571 mean_Sodium>=-healthcare_expenses\n", + "6572 mean_Sodium>=Sodium-mean_Creatinine\n", + "6573 mean_Sodium>=Heart_rate+ceil(DALY)\n", + "6574 mean_Sodium>=DALY+procedures_lifetime\n", + "6575 mean_Sodium>=minimum(Systolic_Blood_Pressure,Sodium)\n", + "6576 mean_Sodium>=minimum(Low_Density_Lipoprotein_Cholesterol,Sodium)\n", + "6577 mean_Sodium>=healthcare_expenses^longitude\n", + "6578 mean_Sodium>=ceil(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+procedures_lifetime\n", + "6579 mean_Sodium>=High_Density_Lipoprotein_Cholesterol+active_care_plan_length+1\n", + "6580 mean_Sodium>=minimum(Sodium,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6581 mean_Sodium>=Heart_rate+Hematocrit__Volume_Fraction__of_Blood_by_Automated_count-1\n", + "6582 mean_Sodium>=Carbon_Dioxide+ceil(Chloride)\n", + "6583 mean_Sodium>=(Body_Mass_Index-1)*Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6584 mean_Sodium>=Sodium/active_conditions\n", + "6585 mean_Sodium>=encounters_count/DALY\n", + "6586 mean_Sodium>=minimum(Sodium,10^immunizations_lifetime)\n", + "6587 mean_Sodium>=ceil(Chloride)+mean_Carbon_Dioxide\n", + "6588 mean_Sodium>=Low_Density_Lipoprotein_Cholesterol-mean_Urea_Nitrogen+1\n", + "6589 mean_Sodium>=minimum(latitude,10^healthcare_expenses)\n", + "6590 mean_Sodium>=MCV__Entitic_volume__by_Automated_count+ceil(latitude)\n", + "6591 mean_Sodium>=2*active_condition_length-active_conditions\n", + "6592 mean_Sodium>=Body_Weight+1/2*Protein__Mass_volume__in_Serum,Plasma\n", + "6593 mean_Sodium>=Sodium-healthcare_coverage\n", + "6594 mean_Sodium>=floor(Sodium)^num_allergies\n", + "6595 mean_Sodium>=minimum(Sodium,10^device_lifetime_length)\n", + "6596 mean_Sodium>=Chloride+MCH__Entitic_mass__by_Automated_count+1\n", + "6597 mean_Sodium>=sqrt(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)+Systolic_Blood_Pressure\n", + "6598 mean_Sodium>=1/2*Body_Mass_Index/QOLS\n", + "6599 mean_Sodium>=Body_Weight+floor(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)\n", + "6600 mean_Sodium>=-Carbon_Dioxide+2*High_Density_Lipoprotein_Cholesterol\n", + "6601 mean_Sodium>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,floor(Sodium))\n", + "6602 mean_Sodium>=Sodium*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6603 mean_Sodium>=-Potassium+Sodium+1\n", + "6604 mean_Sodium>=Chloride+ceil(Carbon_Dioxide)\n", + "6605 mean_Systolic_Blood_Pressure<=healthcare_expenses\n", + "6606 mean_Systolic_Blood_Pressure<=maximum(Triglycerides,floor(Systolic_Blood_Pressure))\n", + "6607 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+active_care_plan_length\n", + "6608 mean_Systolic_Blood_Pressure<=maximum(lifetime_condition_length,Systolic_Blood_Pressure)\n", + "6609 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,mean_Microalbumin_Creatinine_Ratio)\n", + "6610 mean_Systolic_Blood_Pressure<=sqrt(healthcare_coverage)+mean_Estimated_Glomerular_Filtration_Rate\n", + "6611 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+mean_Respiratory_rate-1\n", + "6612 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure/QOLS\n", + "6613 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,Triglycerides)\n", + "6614 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure^lifetime_conditions\n", + "6615 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+procedures_lifetime_cost\n", + "6616 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+medications_lifetime\n", + "6617 mean_Systolic_Blood_Pressure<=maximum(mean_Microalbumin_Creatinine_Ratio,floor(Systolic_Blood_Pressure))\n", + "6618 mean_Systolic_Blood_Pressure<=maximum(medications_lifetime_cost,Systolic_Blood_Pressure)\n", + "6619 mean_Systolic_Blood_Pressure<=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2+mean_Triglycerides\n", + "6620 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,2*Microalbumin_Creatinine_Ratio)\n", + "6621 mean_Systolic_Blood_Pressure<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Diastolic_Blood_Pressure\n", + "6622 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,10^DALY)\n", + "6623 mean_Systolic_Blood_Pressure<=2*Diastolic_Blood_Pressure-active_conditions\n", + "6624 mean_Systolic_Blood_Pressure<=Glomerular_filtration_rate_1_73_sq_M_predicted+mean_Chloride-1\n", + "6625 mean_Systolic_Blood_Pressure<=Calcium*Potassium^2\n", + "6626 mean_Systolic_Blood_Pressure<=sqrt(Glomerular_filtration_rate_1_73_sq_M_predicted)+Systolic_Blood_Pressure\n", + "6627 mean_Systolic_Blood_Pressure<=1/2*Albumin__Mass_volume__in_Serum,Plasma*mean_Protein__Mass_volume__in_Serum,Plasma\n", + "6628 mean_Systolic_Blood_Pressure<=log(QALY)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "6629 mean_Systolic_Blood_Pressure<=Systolic_Blood_Pressure+e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6630 mean_Systolic_Blood_Pressure<=Estimated_Glomerular_Filtration_Rate+Systolic_Blood_Pressure\n", + "6631 mean_Systolic_Blood_Pressure<=e^Estimated_Glomerular_Filtration_Rate+mean_Chloride\n", + "6632 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,mean_Triglycerides)\n", + "6633 mean_Systolic_Blood_Pressure<=Carbon_Dioxide*sqrt(latitude)\n", + "6634 mean_Systolic_Blood_Pressure<=2*encounters_count+mean_Estimated_Glomerular_Filtration_Rate\n", + "6635 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,e^active_conditions)\n", + "6636 mean_Systolic_Blood_Pressure<=active_condition_length^2-Microalbumin_Creatinine_Ratio\n", + "6637 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,medications_lifetime^2)\n", + "6638 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,encounters_count^2)\n", + "6639 mean_Systolic_Blood_Pressure<=maximum(Systolic_Blood_Pressure,1/imaging_studies_lifetime)\n", + "6640 mean_Systolic_Blood_Pressure<=(1/medications_lifetime_perc_covered)^Body_Mass_Index\n", + "6641 mean_Systolic_Blood_Pressure<=(QOLS+1)*Systolic_Blood_Pressure\n", + "6642 mean_Systolic_Blood_Pressure>=latitude\n", + "6643 mean_Systolic_Blood_Pressure>=minimum(mean_Glucose,Systolic_Blood_Pressure-1)\n", + "6644 mean_Systolic_Blood_Pressure>=Sodium-mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-1\n", + "6645 mean_Systolic_Blood_Pressure>=(Urea_Nitrogen^2)^medications_lifetime_perc_covered\n", + "6646 mean_Systolic_Blood_Pressure>=sqrt(QOLS)*Systolic_Blood_Pressure\n", + "6647 mean_Systolic_Blood_Pressure>=Sodium*log(active_care_plans)/log(10)\n", + "6648 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-active_care_plan_length\n", + "6649 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure/lifetime_conditions\n", + "6650 mean_Systolic_Blood_Pressure>=device_lifetime_length^2/Body_Mass_Index\n", + "6651 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-procedures_lifetime_cost\n", + "6652 mean_Systolic_Blood_Pressure>=-Respiratory_rate+Systolic_Blood_Pressure+1\n", + "6653 mean_Systolic_Blood_Pressure>=(DALY^2)^QOLS\n", + "6654 mean_Systolic_Blood_Pressure>=latitude*log(immunizations_lifetime_cost)/log(10)\n", + "6655 mean_Systolic_Blood_Pressure>=-Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count+Systolic_Blood_Pressure+1\n", + "6656 mean_Systolic_Blood_Pressure>=Body_Mass_Index+Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "6657 mean_Systolic_Blood_Pressure>=1/2*Glomerular_filtration_rate_1_73_sq_M_predicted+High_Density_Lipoprotein_Cholesterol\n", + "6658 mean_Systolic_Blood_Pressure>=healthcare_expenses^longitude\n", + "6659 mean_Systolic_Blood_Pressure>=floor(Body_Mass_Index)*mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6660 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure^QOLS\n", + "6661 mean_Systolic_Blood_Pressure>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Urea_Nitrogen\n", + "6662 mean_Systolic_Blood_Pressure>=sqrt(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+Chloride\n", + "6663 mean_Systolic_Blood_Pressure>=log(lifetime_condition_length)*mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/log(10)\n", + "6664 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-mean_Respiratory_rate+1\n", + "6665 mean_Systolic_Blood_Pressure>=2*Respiratory_rate+active_care_plan_length\n", + "6666 mean_Systolic_Blood_Pressure>=minimum(Systolic_Blood_Pressure,10^immunizations_lifetime)\n", + "6667 mean_Systolic_Blood_Pressure>=minimum(Estimated_Glomerular_Filtration_Rate,floor(Systolic_Blood_Pressure))\n", + "6668 mean_Systolic_Blood_Pressure>=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^Creatinine\n", + "6669 mean_Systolic_Blood_Pressure>=2*active_condition_length-mean_Carbon_Dioxide\n", + "6670 mean_Systolic_Blood_Pressure>=Urea_Nitrogen*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6671 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-Urea_Nitrogen-1\n", + "6672 mean_Systolic_Blood_Pressure>=Glucose^2/Platelets____volume__in_Blood_by_Automated_count\n", + "6673 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure*floor(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "6674 mean_Systolic_Blood_Pressure>=Glucose-immunizations_lifetime_cost+1\n", + "6675 mean_Systolic_Blood_Pressure>=(active_conditions^2)^num_allergies\n", + "6676 mean_Systolic_Blood_Pressure>=Systolic_Blood_Pressure-medications_lifetime_cost\n", + "6677 mean_Systolic_Blood_Pressure>=4*Carbon_Dioxide\n", + "6678 mean_Systolic_Blood_Pressure>=minimum(latitude,10^healthcare_expenses)\n", + "6679 mean_Systolic_Blood_Pressure>=-Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6680 mean_Systolic_Blood_Pressure>=Leukocytes____volume__in_Blood_by_Automated_count^2+procedures_lifetime\n", + "6681 mean_Systolic_Blood_Pressure>=MCH__Entitic_mass__by_Automated_count*log(MCHC__Mass_volume__by_Automated_count)\n", + "6682 mean_Systolic_Blood_Pressure>=Leukocytes____volume__in_Blood_by_Automated_count^2+Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "6683 mean_Systolic_Blood_Pressure>=High_Density_Lipoprotein_Cholesterol+floor(Body_Mass_Index)\n", + "6684 mean_Systolic_Blood_Pressure>=sqrt(medications_lifetime)+Diastolic_Blood_Pressure\n", + "6685 mean_Systolic_Blood_Pressure>=Carbon_Dioxide*log(active_condition_length)\n", + "6686 mean_Systolic_Blood_Pressure>=floor(Microalbumin_Creatinine_Ratio)-medications_lifetime\n", + "6687 mean_Systolic_Blood_Pressure>=Hemoglobin_A1c_Hemoglobin_total_in_Blood*sqrt(lifetime_condition_length)\n", + "6688 mean_Systolic_Blood_Pressure>=sqrt(Platelets____volume__in_Blood_by_Automated_count)/encounters_lifetime_perc_covered\n", + "6689 mean_Systolic_Blood_Pressure>=medications_active^2+Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6690 mean_Systolic_Blood_Pressure>=minimum(encounters_count,1/medications_lifetime_perc_covered)\n", + "6691 mean_Total_Cholesterol<=healthcare_expenses\n", + "6692 mean_Total_Cholesterol<=Triglycerides+mean_Low_Density_Lipoprotein_Cholesterol-1\n", + "6693 mean_Total_Cholesterol<=10^QOLS*Body_Height\n", + "6694 mean_Total_Cholesterol<=log(Triglycerides)*mean_Chloride/log(10)\n", + "6695 mean_Total_Cholesterol<=Protein__Mass_volume__in_Serum,Plasma+mean_Triglycerides-1\n", + "6696 mean_Total_Cholesterol<=Total_Cholesterol*ceil(mean_Creatinine)\n", + "6697 mean_Total_Cholesterol<=Total_Cholesterol+healthcare_coverage\n", + "6698 mean_Total_Cholesterol<=Total_Cholesterol/num_allergies\n", + "6699 mean_Total_Cholesterol<=Total_Cholesterol^active_conditions\n", + "6700 mean_Total_Cholesterol<=2*Estimated_Glomerular_Filtration_Rate+lifetime_condition_length\n", + "6701 mean_Total_Cholesterol<=Total_Cholesterol+medications_lifetime\n", + "6702 mean_Total_Cholesterol<=latitude+2*mean_Low_Density_Lipoprotein_Cholesterol\n", + "6703 mean_Total_Cholesterol<=maximum(medications_lifetime_cost,Total_Cholesterol)\n", + "6704 mean_Total_Cholesterol<=maximum(Total_Cholesterol,encounters_count^2)\n", + "6705 mean_Total_Cholesterol<=maximum(medications_lifetime_dispenses,Total_Cholesterol)\n", + "6706 mean_Total_Cholesterol<=Total_Cholesterol/QOLS\n", + "6707 mean_Total_Cholesterol<=maximum(Total_Cholesterol,medications_lifetime^2)\n", + "6708 mean_Total_Cholesterol<=Body_Height+e^Estimated_Glomerular_Filtration_Rate\n", + "6709 mean_Total_Cholesterol<=QALY*ceil(Microalbumin_Creatinine_Ratio)\n", + "6710 mean_Total_Cholesterol<=mean_Potassium^Leukocytes____volume__in_Blood_by_Automated_count\n", + "6711 mean_Total_Cholesterol<=2*MCH__Entitic_mass__by_Automated_count*mean_Potassium\n", + "6712 mean_Total_Cholesterol<=Total_Cholesterol+mean_Estimated_Glomerular_Filtration_Rate-1\n", + "6713 mean_Total_Cholesterol<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*floor(active_condition_length)\n", + "6714 mean_Total_Cholesterol<=Calcium+Platelets____volume__in_Blood_by_Automated_count\n", + "6715 mean_Total_Cholesterol<=maximum(Total_Cholesterol,e^active_conditions)\n", + "6716 mean_Total_Cholesterol<=2*mean_Low_Density_Lipoprotein_Cholesterol/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6717 mean_Total_Cholesterol<=Hemoglobin_A1c_Hemoglobin_total_in_Blood*floor(mean_Glucose)\n", + "6718 mean_Total_Cholesterol<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)^Urea_Nitrogen\n", + "6719 mean_Total_Cholesterol<=Low_Density_Lipoprotein_Cholesterol+mean_Triglycerides-1\n", + "6720 mean_Total_Cholesterol<=(Albumin__Mass_volume__in_Serum,Plasma+1)^mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "6721 mean_Total_Cholesterol<=4*Urea_Nitrogen^2\n", + "6722 mean_Total_Cholesterol<=Heart_rate+2*mean_Diastolic_Blood_Pressure\n", + "6723 mean_Total_Cholesterol<=10^Albumin__Mass_volume__in_Serum,Plasma/mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6724 mean_Total_Cholesterol<=Glomerular_filtration_rate_1_73_sq_M_predicted+2*Glucose\n", + "6725 mean_Total_Cholesterol<=2*Diastolic_Blood_Pressure+Heart_rate\n", + "6726 mean_Total_Cholesterol<=mean_Carbon_Dioxide^2-Total_Cholesterol\n", + "6727 mean_Total_Cholesterol<=sqrt(Urea_Nitrogen)*mean_Protein__Mass_volume__in_Serum,Plasma\n", + "6728 mean_Total_Cholesterol<=e^Calcium/mean_Carbon_Dioxide\n", + "6729 mean_Total_Cholesterol<=2*mean_Glucose+mean_Microalbumin_Creatinine_Ratio\n", + "6730 mean_Total_Cholesterol>=latitude\n", + "6731 mean_Total_Cholesterol>=10^medications_lifetime_perc_covered*Body_Mass_Index\n", + "6732 mean_Total_Cholesterol>=minimum(Total_Cholesterol,10^immunizations_lifetime)\n", + "6733 mean_Total_Cholesterol>=minimum(Total_Cholesterol,mean_DALY)\n", + "6734 mean_Total_Cholesterol>=minimum(Triglycerides,Total_Cholesterol)\n", + "6735 mean_Total_Cholesterol>=1/2*QALY/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6736 mean_Total_Cholesterol>=Total_Cholesterol^QOLS\n", + "6737 mean_Total_Cholesterol>=Protein__Mass_volume__in_Serum,Plasma*log(active_conditions)\n", + "6738 mean_Total_Cholesterol>=-healthcare_expenses\n", + "6739 mean_Total_Cholesterol>=Albumin__Mass_volume__in_Serum,Plasma*device_lifetime_length\n", + "6740 mean_Total_Cholesterol>=-Low_Density_Lipoprotein_Cholesterol+ceil(lifetime_care_plan_length)\n", + "6741 mean_Total_Cholesterol>=-Estimated_Glomerular_Filtration_Rate+floor(Total_Cholesterol)\n", + "6742 mean_Total_Cholesterol>=Total_Cholesterol-medications_lifetime\n", + "6743 mean_Total_Cholesterol>=Total_Cholesterol-healthcare_coverage\n", + "6744 mean_Total_Cholesterol>=minimum(Total_Cholesterol,Urea_Nitrogen)\n", + "6745 mean_Total_Cholesterol>=-Erythrocytes____volume__in_Blood_by_Automated_count+Total_Cholesterol+1\n", + "6746 mean_Total_Cholesterol>=Total_Cholesterol-procedures_lifetime_cost\n", + "6747 mean_Total_Cholesterol>=minimum(medications_lifetime,Body_Height+1)\n", + "6748 mean_Total_Cholesterol>=healthcare_expenses^longitude\n", + "6749 mean_Total_Cholesterol>=log(encounters_count)*mean_High_Density_Lipoprotein_Cholesterol/log(10)\n", + "6750 mean_Total_Cholesterol>=ceil(Microalbumin_Creatinine_Ratio)/Creatinine\n", + "6751 mean_Total_Cholesterol>=encounters_count-mean_Microalbumin_Creatinine_Ratio+1\n", + "6752 mean_Total_Cholesterol>=Total_Cholesterol-active_care_plan_length\n", + "6753 mean_Total_Cholesterol>=Estimated_Glomerular_Filtration_Rate+active_condition_length+1\n", + "6754 mean_Total_Cholesterol>=-encounters_count+1/2*medications_lifetime\n", + "6755 mean_Total_Cholesterol>=-Leukocytes____volume__in_Blood_by_Automated_count+lifetime_care_plan_length+1\n", + "6756 mean_Total_Cholesterol>=Chloride+active_care_plan_length+1\n", + "6757 mean_Total_Cholesterol>=DALY/QOLS\n", + "6758 mean_Total_Cholesterol>=Total_Cholesterol/active_conditions\n", + "6759 mean_Total_Cholesterol>=MCHC__Mass_volume__by_Automated_count+1/2*encounters_count\n", + "6760 mean_Total_Cholesterol>=10^num_allergies*Estimated_Glomerular_Filtration_Rate\n", + "6761 mean_Total_Cholesterol>=(Hemoglobin_A1c_Hemoglobin_total_in_Blood-1)*Body_Mass_Index\n", + "6762 mean_Total_Cholesterol>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime+1\n", + "6763 mean_Total_Cholesterol>=active_conditions^2-Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6764 mean_Total_Cholesterol>=minimum(Total_Cholesterol,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6765 mean_Total_Cholesterol>=10^e^encounters_lifetime_perc_covered\n", + "6766 mean_Total_Cholesterol>=active_conditions^2/Creatinine\n", + "6767 mean_Total_Cholesterol>=minimum(latitude,10^healthcare_expenses)\n", + "6768 mean_Total_Cholesterol>=1/2*High_Density_Lipoprotein_Cholesterol/QOLS\n", + "6769 mean_Total_Cholesterol>=(Carbon_Dioxide^2)^medications_lifetime_perc_covered\n", + "6770 mean_Total_Cholesterol>=-Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+2*Body_Weight\n", + "6771 mean_Triglycerides<=healthcare_expenses\n", + "6772 mean_Triglycerides<=maximum(Triglycerides,encounters_count^2)\n", + "6773 mean_Triglycerides<=Triglycerides/QOLS\n", + "6774 mean_Triglycerides<=Triglycerides+ceil(latitude)\n", + "6775 mean_Triglycerides<=Triglycerides^active_conditions\n", + "6776 mean_Triglycerides<=2*Diastolic_Blood_Pressure/medications_lifetime_perc_covered\n", + "6777 mean_Triglycerides<=Triglycerides+lifetime_care_plan_length\n", + "6778 mean_Triglycerides<=Triglycerides+healthcare_coverage\n", + "6779 mean_Triglycerides<=1/2*Platelets____volume__in_Blood_by_Automated_count/medications_lifetime_perc_covered\n", + "6780 mean_Triglycerides<=(1/encounters_lifetime_perc_covered)^Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "6781 mean_Triglycerides<=Triglycerides/num_allergies\n", + "6782 mean_Triglycerides<=(log(Hemoglobin__Mass_volume__in_Blood)/log(10))^Heart_rate\n", + "6783 mean_Triglycerides<=Triglycerides+medications_lifetime_cost\n", + "6784 mean_Triglycerides<=maximum(medications_lifetime_cost,Triglycerides)\n", + "6785 mean_Triglycerides<=2*mean_Heart_rate/medications_lifetime_perc_covered\n", + "6786 mean_Triglycerides<=maximum(Triglycerides,2*mean_Low_Density_Lipoprotein_Cholesterol)\n", + "6787 mean_Triglycerides<=maximum(Triglycerides,Total_Cholesterol)\n", + "6788 mean_Triglycerides<=10^Leukocytes____volume__in_Blood_by_Automated_count/MCHC__Mass_volume__by_Automated_count\n", + "6789 mean_Triglycerides<=maximum(medications_lifetime_dispenses,Triglycerides)\n", + "6790 mean_Triglycerides<=e^Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count/mean_Diastolic_Blood_Pressure\n", + "6791 mean_Triglycerides<=mean_Total_Cholesterol/Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "6792 mean_Triglycerides<=Sodium+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "6793 mean_Triglycerides<=10^DALY+Triglycerides\n", + "6794 mean_Triglycerides<=10^Albumin__Mass_volume__in_Serum,Plasma/mean_Carbon_Dioxide\n", + "6795 mean_Triglycerides<=log(procedures_lifetime_cost)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6796 mean_Triglycerides<=(log(mean_Glucose)/log(10))^mean_Estimated_Glomerular_Filtration_Rate\n", + "6797 mean_Triglycerides<=maximum(Triglycerides,e^active_conditions)\n", + "6798 mean_Triglycerides<=maximum(Body_Height,10^mean_Creatinine)\n", + "6799 mean_Triglycerides<=(Urea_Nitrogen-1)*QALY\n", + "6800 mean_Triglycerides<=Triglycerides*ceil(mean_Creatinine)\n", + "6801 mean_Triglycerides<=Respiratory_rate*e^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6802 mean_Triglycerides<=High_Density_Lipoprotein_Cholesterol^2*QOLS\n", + "6803 mean_Triglycerides<=mean_Carbon_Dioxide^2/Globulin__Mass_volume__in_Serum_by_calculation\n", + "6804 mean_Triglycerides<=Respiratory_rate^2-Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6805 mean_Triglycerides<=1/2*Body_Weight+Triglycerides\n", + "6806 mean_Triglycerides<=2*Triglycerides-age\n", + "6807 mean_Triglycerides<=Triglycerides+mean_Glomerular_filtration_rate_1_73_sq_M_predicted+1\n", + "6808 mean_Triglycerides<=(log(Low_Density_Lipoprotein_Cholesterol)/log(10))^Calcium\n", + "6809 mean_Triglycerides<=maximum(Triglycerides,2*MCV__Entitic_volume__by_Automated_count)\n", + "6810 mean_Triglycerides<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*mean_Heart_rate\n", + "6811 mean_Triglycerides<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Body_Height\n", + "6812 mean_Triglycerides>=latitude\n", + "6813 mean_Triglycerides>=-Body_Mass_Index+Triglycerides+1\n", + "6814 mean_Triglycerides>=minimum(Triglycerides,1/medications_active)\n", + "6815 mean_Triglycerides>=Triglycerides-procedures_lifetime_cost\n", + "6816 mean_Triglycerides>=1/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+mean_Systolic_Blood_Pressure\n", + "6817 mean_Triglycerides>=Triglycerides-medications_lifetime\n", + "6818 mean_Triglycerides>=Triglycerides^QOLS\n", + "6819 mean_Triglycerides>=-High_Density_Lipoprotein_Cholesterol+1/2*encounters_count\n", + "6820 mean_Triglycerides>=-mean_Low_Density_Lipoprotein_Cholesterol+2*procedures_lifetime\n", + "6821 mean_Triglycerides>=2*age-mean_Microalbumin_Creatinine_Ratio\n", + "6822 mean_Triglycerides>=-healthcare_expenses\n", + "6823 mean_Triglycerides>=-Creatinine+1/2*lifetime_care_plan_length\n", + "6824 mean_Triglycerides>=2*medications_lifetime/mean_Urea_Nitrogen\n", + "6825 mean_Triglycerides>=Triglycerides-active_care_plan_length\n", + "6826 mean_Triglycerides>=(DALY^2)^num_allergies\n", + "6827 mean_Triglycerides>=Estimated_Glomerular_Filtration_Rate-Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6828 mean_Triglycerides>=log(Erythrocytes____volume__in_Blood_by_Automated_count)^Leukocytes____volume__in_Blood_by_Automated_count\n", + "6829 mean_Triglycerides>=Hemoglobin_A1c_Hemoglobin_total_in_Blood^2*mean_Creatinine\n", + "6830 mean_Triglycerides>=healthcare_expenses^longitude\n", + "6831 mean_Triglycerides>=minimum(Triglycerides,Low_Density_Lipoprotein_Cholesterol)\n", + "6832 mean_Triglycerides>=minimum(Triglycerides,Chloride)\n", + "6833 mean_Triglycerides>=Triglycerides/active_conditions\n", + "6834 mean_Triglycerides>=minimum(Triglycerides,Creatinine)\n", + "6835 mean_Triglycerides>=minimum(Triglycerides,Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6836 mean_Triglycerides>=1/2*Microalbumin_Creatinine_Ratio-lifetime_care_plan_length\n", + "6837 mean_Triglycerides>=log(Creatinine)^mean_Potassium\n", + "6838 mean_Triglycerides>=Urea_Nitrogen/QOLS\n", + "6839 mean_Triglycerides>=1/2*Heart_rate+active_condition_length\n", + "6840 mean_Triglycerides>=Bilirubin_total__Mass_volume__in_Serum,Plasma^Carbon_Dioxide\n", + "6841 mean_Triglycerides>=minimum(Triglycerides,Estimated_Glomerular_Filtration_Rate)\n", + "6842 mean_Triglycerides>=ceil(MCHC__Mass_volume__by_Automated_count)*mean_Creatinine\n", + "6843 mean_Triglycerides>=2*Heart_rate-mean_Microalbumin_Creatinine_Ratio\n", + "6844 mean_Triglycerides>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Low_Density_Lipoprotein_Cholesterol\n", + "6845 mean_Triglycerides>=Triglycerides-healthcare_coverage\n", + "6846 mean_Triglycerides>=minimum(latitude,10^healthcare_expenses)\n", + "6847 mean_Triglycerides>=Total_Cholesterol*medications_lifetime_perc_covered^2\n", + "6848 mean_Triglycerides>=active_care_plans^2/QOLS\n", + "6849 mean_Triglycerides>=sqrt(Microalbumin_Creatinine_Ratio)+Low_Density_Lipoprotein_Cholesterol\n", + "6850 mean_Urea_Nitrogen<=healthcare_expenses\n", + "6851 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,e^active_conditions)\n", + "6852 mean_Urea_Nitrogen<=Estimated_Glomerular_Filtration_Rate^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6853 mean_Urea_Nitrogen<=DALY+Urea_Nitrogen+1\n", + "6854 mean_Urea_Nitrogen<=maximum(active_care_plan_length,Urea_Nitrogen)\n", + "6855 mean_Urea_Nitrogen<=maximum(QALY,sqrt(Systolic_Blood_Pressure))\n", + "6856 mean_Urea_Nitrogen<=Urea_Nitrogen*ceil(DALY)\n", + "6857 mean_Urea_Nitrogen<=maximum(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,1/2*Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "6858 mean_Urea_Nitrogen<=2*Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-2\n", + "6859 mean_Urea_Nitrogen<=Erythrocytes____volume__in_Blood_by_Automated_count^2-1\n", + "6860 mean_Urea_Nitrogen<=Hemoglobin__Mass_volume__in_Blood+1/2*Respiratory_rate\n", + "6861 mean_Urea_Nitrogen<=floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)+mean_Calcium\n", + "6862 mean_Urea_Nitrogen<=2*Creatinine*Urea_Nitrogen\n", + "6863 mean_Urea_Nitrogen<=Urea_Nitrogen+procedures_lifetime_cost\n", + "6864 mean_Urea_Nitrogen<=Chloride^2/medications_lifetime\n", + "6865 mean_Urea_Nitrogen<=log(healthcare_expenses)/medications_lifetime_perc_covered\n", + "6866 mean_Urea_Nitrogen<=Urea_Nitrogen+healthcare_coverage\n", + "6867 mean_Urea_Nitrogen<=-Carbon_Dioxide+e^Albumin__Mass_volume__in_Serum,Plasma\n", + "6868 mean_Urea_Nitrogen<=Diastolic_Blood_Pressure^2/Triglycerides\n", + "6869 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,active_conditions^2)\n", + "6870 mean_Urea_Nitrogen<=(Estimated_Glomerular_Filtration_Rate+1)*Creatinine\n", + "6871 mean_Urea_Nitrogen<=log(encounters_lifetime_perc_covered)*longitude\n", + "6872 mean_Urea_Nitrogen<=floor(Sodium)/lifetime_care_plans\n", + "6873 mean_Urea_Nitrogen<=Urea_Nitrogen+medications_lifetime\n", + "6874 mean_Urea_Nitrogen<=QALY-active_conditions\n", + "6875 mean_Urea_Nitrogen<=encounters_lifetime_perc_covered*mean_Systolic_Blood_Pressure\n", + "6876 mean_Urea_Nitrogen<=-Albumin__Mass_volume__in_Serum,Plasma+2*medications_lifetime\n", + "6877 mean_Urea_Nitrogen<=Albumin__Mass_volume__in_Serum,Plasma^2+immunizations_lifetime_cost\n", + "6878 mean_Urea_Nitrogen<=(Chloride-1)/active_care_plans\n", + "6879 mean_Urea_Nitrogen<=sqrt(Hemoglobin_A1c_Hemoglobin_total_in_Blood)*Urea_Nitrogen\n", + "6880 mean_Urea_Nitrogen<=(Potassium-1)*Microalbumin_Creatinine_Ratio\n", + "6881 mean_Urea_Nitrogen<=maximum(Heart_rate,Urea_Nitrogen)\n", + "6882 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,Hemoglobin__Mass_volume__in_Blood+1)\n", + "6883 mean_Urea_Nitrogen<=Body_Height-Low_Density_Lipoprotein_Cholesterol-1\n", + "6884 mean_Urea_Nitrogen<=e^Prostate_specific_Ag__Mass_volume__in_Serum,Plasma/imaging_studies_lifetime\n", + "6885 mean_Urea_Nitrogen<=Hemoglobin_A1c_Hemoglobin_total_in_Blood+mean_Respiratory_rate-1\n", + "6886 mean_Urea_Nitrogen<=2*Heart_rate*QOLS\n", + "6887 mean_Urea_Nitrogen<=sqrt(medications_lifetime)+Urea_Nitrogen\n", + "6888 mean_Urea_Nitrogen<=maximum(medications_lifetime_length,Urea_Nitrogen)\n", + "6889 mean_Urea_Nitrogen<=2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma+Urea_Nitrogen\n", + "6890 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,ceil(Hemoglobin__Mass_volume__in_Blood))\n", + "6891 mean_Urea_Nitrogen<=Urea_Nitrogen^active_care_plans\n", + "6892 mean_Urea_Nitrogen<=1/2*Low_Density_Lipoprotein_Cholesterol-Respiratory_rate\n", + "6893 mean_Urea_Nitrogen<=log(Erythrocyte_distribution_width__Entitic_volume__by_Automated_count)^active_care_plans\n", + "6894 mean_Urea_Nitrogen<=sqrt(Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count)^Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6895 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,10^medications_active)\n", + "6896 mean_Urea_Nitrogen<=(Low_Density_Lipoprotein_Cholesterol+1)/Potassium\n", + "6897 mean_Urea_Nitrogen<=MCH__Entitic_mass__by_Automated_count-active_conditions-1\n", + "6898 mean_Urea_Nitrogen<=ceil(Urea_Nitrogen)/encounters_lifetime_perc_covered\n", + "6899 mean_Urea_Nitrogen<=maximum(Urea_Nitrogen,sqrt(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count))\n", + "6900 mean_Urea_Nitrogen>=longitude\n", + "6901 mean_Urea_Nitrogen>=-DALY+Urea_Nitrogen\n", + "6902 mean_Urea_Nitrogen>=minimum(DALY,log(encounters_lifetime_total_cost))\n", + "6903 mean_Urea_Nitrogen>=Microalbumin_Creatinine_Ratio^2/encounters_lifetime_payer_coverage\n", + "6904 mean_Urea_Nitrogen>=minimum(medications_active,Urea_Nitrogen)\n", + "6905 mean_Urea_Nitrogen>=1/2*Hemoglobin_A1c_Hemoglobin_total_in_Blood/encounters_lifetime_perc_covered\n", + "6906 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,Calcium)\n", + "6907 mean_Urea_Nitrogen>=(Urea_Nitrogen+1)*encounters_lifetime_perc_covered\n", + "6908 mean_Urea_Nitrogen>=active_conditions-lifetime_care_plans+1\n", + "6909 mean_Urea_Nitrogen>=e^imaging_studies_lifetime/Albumin__Mass_volume__in_Serum,Plasma\n", + "6910 mean_Urea_Nitrogen>=(1/2*Pain_severity___0_10_verbal_numeric_rating__Score____Reported)^mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "6911 mean_Urea_Nitrogen>=log(Urea_Nitrogen)/(QOLS*log(10))\n", + "6912 mean_Urea_Nitrogen>=-healthcare_expenses\n", + "6913 mean_Urea_Nitrogen>=Urea_Nitrogen-medications_lifetime\n", + "6914 mean_Urea_Nitrogen>=Bilirubin_total__Mass_volume__in_Serum,Plasma*sqrt(immunizations_lifetime_cost)\n", + "6915 mean_Urea_Nitrogen>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma*log(lifetime_care_plan_length)/log(10)\n", + "6916 mean_Urea_Nitrogen>=Urea_Nitrogen*floor(QOLS)\n", + "6917 mean_Urea_Nitrogen>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-latitude-1\n", + "6918 mean_Urea_Nitrogen>=healthcare_expenses^longitude\n", + "6919 mean_Urea_Nitrogen>=Urea_Nitrogen/active_conditions\n", + "6920 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,Calcium+1)\n", + "6921 mean_Urea_Nitrogen>=Calcium+1/2*Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6922 mean_Urea_Nitrogen>=2*Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count/lifetime_care_plan_length\n", + "6923 mean_Urea_Nitrogen>=(Triglycerides+1)/mean_High_Density_Lipoprotein_Cholesterol\n", + "6924 mean_Urea_Nitrogen>=(lifetime_care_plan_length+1)/Hemoglobin__Mass_volume__in_Blood\n", + "6925 mean_Urea_Nitrogen>=-Low_Density_Lipoprotein_Cholesterol+age+1\n", + "6926 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/Pain_severity___0_10_verbal_numeric_rating__Score____Reported)\n", + "6927 mean_Urea_Nitrogen>=lifetime_care_plans^2-Glucose\n", + "6928 mean_Urea_Nitrogen>=2*DALY-medications_lifetime_dispenses\n", + "6929 mean_Urea_Nitrogen>=floor(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)-mean_Systolic_Blood_Pressure\n", + "6930 mean_Urea_Nitrogen>=ceil(active_care_plan_length)-mean_Heart_rate\n", + "6931 mean_Urea_Nitrogen>=minimum(Creatinine,sqrt(Sodium))\n", + "6932 mean_Urea_Nitrogen>=(medications_lifetime+1)/Body_Weight\n", + "6933 mean_Urea_Nitrogen>=Erythrocytes____volume__in_Blood_by_Automated_count*log(medications_lifetime)/log(10)\n", + "6934 mean_Urea_Nitrogen>=active_conditions-procedures_lifetime_cost+1\n", + "6935 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,1/2*device_lifetime_length)\n", + "6936 mean_Urea_Nitrogen>=MCV__Entitic_volume__by_Automated_count-mean_Diastolic_Blood_Pressure\n", + "6937 mean_Urea_Nitrogen>=(10^healthcare_expenses)^longitude\n", + "6938 mean_Urea_Nitrogen>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count-immunizations_lifetime_cost+1\n", + "6939 mean_Urea_Nitrogen>=log(MCV__Entitic_volume__by_Automated_count)*medications_active/log(10)\n", + "6940 mean_Urea_Nitrogen>=2*medications_lifetime_length/encounters_lifetime_total_cost\n", + "6941 mean_Urea_Nitrogen>=ceil(MCHC__Mass_volume__by_Automated_count)/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "6942 mean_Urea_Nitrogen>=(Microalbumin_Creatinine_Ratio+1)/active_condition_length\n", + "6943 mean_Urea_Nitrogen>=sqrt(device_lifetime_length)+Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "6944 mean_Urea_Nitrogen>=Bilirubin_total__Mass_volume__in_Serum,Plasma^2*Calcium\n", + "6945 mean_Urea_Nitrogen>=Estimated_Glomerular_Filtration_Rate-Triglycerides-1\n", + "6946 mean_Urea_Nitrogen>=Low_Density_Lipoprotein_Cholesterol-mean_Sodium+1\n", + "6947 mean_Urea_Nitrogen>=log(healthcare_expenses)/Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "6948 mean_Urea_Nitrogen>=minimum(Urea_Nitrogen,mean_Hemoglobin_A1c_Hemoglobin_total_in_Blood)\n", + "6949 mean_Urea_Nitrogen>=1/2*active_care_plan_length/mean_Potassium\n", + "6950 mean_Urea_Nitrogen>=Systolic_Blood_Pressure-mean_Systolic_Blood_Pressure-1\n", + "6951 mean_Urea_Nitrogen>=MCHC__Mass_volume__by_Automated_count-mean_Carbon_Dioxide+1\n", + "6952 mean_Urea_Nitrogen>=(Urea_Nitrogen-1)*medications_lifetime_perc_covered\n", + "6953 mean_Urea_Nitrogen>=Urea_Nitrogen-healthcare_coverage\n", + "6954 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "6955 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count<=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6956 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=longitude\n", + "6957 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=Erythrocyte_distribution_width__Entitic_volume__by_Automated_count\n", + "6958 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "6959 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "6960 mean_Erythrocyte_distribution_width__Entitic_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "6961 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "6962 mean_Erythrocytes____volume__in_Blood_by_Automated_count<=Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6963 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "6964 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Erythrocytes____volume__in_Blood_by_Automated_count\n", + "6965 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "6966 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=Creatinine\n", + "6967 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "6968 mean_Erythrocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "6969 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=healthcare_expenses\n", + "6970 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count<=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "6971 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=longitude\n", + "6972 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=Hematocrit__Volume_Fraction__of_Blood_by_Automated_count\n", + "6973 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=-healthcare_expenses\n", + "6974 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "6975 mean_Hematocrit__Volume_Fraction__of_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "6976 mean_Hemoglobin__Mass_volume__in_Blood<=healthcare_expenses\n", + "6977 mean_Hemoglobin__Mass_volume__in_Blood<=Hemoglobin__Mass_volume__in_Blood\n", + "6978 mean_Hemoglobin__Mass_volume__in_Blood>=longitude\n", + "6979 mean_Hemoglobin__Mass_volume__in_Blood>=Hemoglobin__Mass_volume__in_Blood\n", + "6980 mean_Hemoglobin__Mass_volume__in_Blood>=-healthcare_expenses\n", + "6981 mean_Hemoglobin__Mass_volume__in_Blood>=healthcare_expenses^longitude\n", + "6982 mean_Hemoglobin__Mass_volume__in_Blood>=(10^healthcare_expenses)^longitude\n", + "6983 mean_Leukocytes____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "6984 mean_Leukocytes____volume__in_Blood_by_Automated_count<=Leukocytes____volume__in_Blood_by_Automated_count\n", + "6985 mean_Leukocytes____volume__in_Blood_by_Automated_count>=longitude\n", + "6986 mean_Leukocytes____volume__in_Blood_by_Automated_count>=Leukocytes____volume__in_Blood_by_Automated_count\n", + "6987 mean_Leukocytes____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "6988 mean_Leukocytes____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "6989 mean_Leukocytes____volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "6990 mean_MCH__Entitic_mass__by_Automated_count<=healthcare_expenses\n", + "6991 mean_MCH__Entitic_mass__by_Automated_count<=MCH__Entitic_mass__by_Automated_count\n", + "6992 mean_MCH__Entitic_mass__by_Automated_count>=longitude\n", + "6993 mean_MCH__Entitic_mass__by_Automated_count>=MCH__Entitic_mass__by_Automated_count\n", + "6994 mean_MCH__Entitic_mass__by_Automated_count>=-healthcare_expenses\n", + "6995 mean_MCH__Entitic_mass__by_Automated_count>=healthcare_expenses^longitude\n", + "6996 mean_MCH__Entitic_mass__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "6997 mean_MCHC__Mass_volume__by_Automated_count<=healthcare_expenses\n", + "6998 mean_MCHC__Mass_volume__by_Automated_count<=MCHC__Mass_volume__by_Automated_count\n", + "6999 mean_MCHC__Mass_volume__by_Automated_count>=longitude\n", + "7000 mean_MCHC__Mass_volume__by_Automated_count>=MCHC__Mass_volume__by_Automated_count\n", + "7001 mean_MCHC__Mass_volume__by_Automated_count>=-healthcare_expenses\n", + "7002 mean_MCHC__Mass_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "7003 mean_MCHC__Mass_volume__by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7004 mean_MCV__Entitic_volume__by_Automated_count<=healthcare_expenses\n", + "7005 mean_MCV__Entitic_volume__by_Automated_count<=MCV__Entitic_volume__by_Automated_count\n", + "7006 mean_MCV__Entitic_volume__by_Automated_count>=latitude\n", + "7007 mean_MCV__Entitic_volume__by_Automated_count>=MCV__Entitic_volume__by_Automated_count\n", + "7008 mean_MCV__Entitic_volume__by_Automated_count>=-healthcare_expenses\n", + "7009 mean_MCV__Entitic_volume__by_Automated_count>=healthcare_expenses^longitude\n", + "7010 mean_MCV__Entitic_volume__by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "7011 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "7012 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count<=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "7013 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=latitude\n", + "7014 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count\n", + "7015 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "7016 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7017 mean_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "7018 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "7019 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count<=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "7020 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=longitude\n", + "7021 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count\n", + "7022 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "7023 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7024 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=Calcium\n", + "7025 mean_Platelet_mean_volume__Entitic_volume__in_Blood_by_Automated_count>=(10^healthcare_expenses)^longitude\n", + "7026 mean_Platelets____volume__in_Blood_by_Automated_count<=healthcare_expenses\n", + "7027 mean_Platelets____volume__in_Blood_by_Automated_count<=Platelets____volume__in_Blood_by_Automated_count\n", + "7028 mean_Platelets____volume__in_Blood_by_Automated_count>=latitude\n", + "7029 mean_Platelets____volume__in_Blood_by_Automated_count>=Platelets____volume__in_Blood_by_Automated_count\n", + "7030 mean_Platelets____volume__in_Blood_by_Automated_count>=-healthcare_expenses\n", + "7031 mean_Platelets____volume__in_Blood_by_Automated_count>=healthcare_expenses^longitude\n", + "7032 mean_Platelets____volume__in_Blood_by_Automated_count>=minimum(latitude,10^healthcare_expenses)\n", + "7033 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7034 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma<=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7035 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=longitude\n", + "7036 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=Prostate_specific_Ag__Mass_volume__in_Serum,Plasma\n", + "7037 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7038 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7039 mean_Prostate_specific_Ag__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7040 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7041 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7042 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7043 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+healthcare_coverage\n", + "7044 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7045 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7046 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=floor(QALY)+immunizations_lifetime_cost\n", + "7047 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=-High_Density_Lipoprotein_Cholesterol+Systolic_Blood_Pressure+1\n", + "7048 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/num_allergies\n", + "7049 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(age,Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7050 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "7051 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7052 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=e^lifetime_care_plans/mean_High_Density_Lipoprotein_Cholesterol\n", + "7053 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7054 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7055 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=device_lifetime_length/(medications_lifetime_perc_covered+1)\n", + "7056 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(procedures_lifetime,1/2*High_Density_Lipoprotein_Cholesterol)\n", + "7057 mean_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7058 mean_Albumin__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7059 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(active_care_plans,Albumin__Mass_volume__in_Serum,Plasma)\n", + "7060 mean_Albumin__Mass_volume__in_Serum,Plasma<=log(Globulin__Mass_volume__in_Serum_by_calculation)/log(10)+Albumin__Mass_volume__in_Serum,Plasma\n", + "7061 mean_Albumin__Mass_volume__in_Serum,Plasma<=floor(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7062 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(Albumin__Mass_volume__in_Serum,Plasma,mean_Creatinine)\n", + "7063 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma+procedures_lifetime\n", + "7064 mean_Albumin__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Albumin__Mass_volume__in_Serum,Plasma)\n", + "7065 mean_Albumin__Mass_volume__in_Serum,Plasma<=ceil(Chloride)/Creatinine\n", + "7066 mean_Albumin__Mass_volume__in_Serum,Plasma<=1/2*QALY/Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7067 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma+healthcare_coverage\n", + "7068 mean_Albumin__Mass_volume__in_Serum,Plasma<=Albumin__Mass_volume__in_Serum,Plasma/num_allergies\n", + "7069 mean_Albumin__Mass_volume__in_Serum,Plasma>=longitude\n", + "7070 mean_Albumin__Mass_volume__in_Serum,Plasma>=minimum(medications_active,Albumin__Mass_volume__in_Serum,Plasma)\n", + "7071 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-medications_lifetime_perc_covered\n", + "7072 mean_Albumin__Mass_volume__in_Serum,Plasma>=imaging_studies_lifetime+1\n", + "7073 mean_Albumin__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7074 mean_Albumin__Mass_volume__in_Serum,Plasma>=minimum(Albumin__Mass_volume__in_Serum,Plasma,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7075 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "7076 mean_Albumin__Mass_volume__in_Serum,Plasma>=-log(Hemoglobin_A1c_Hemoglobin_total_in_Blood)/log(10)+Albumin__Mass_volume__in_Serum,Plasma\n", + "7077 mean_Albumin__Mass_volume__in_Serum,Plasma>=2*Globulin__Mass_volume__in_Serum_by_calculation-mean_Globulin__Mass_volume__in_Serum_by_calculation\n", + "7078 mean_Albumin__Mass_volume__in_Serum,Plasma>=immunizations_lifetime+1\n", + "7079 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-immunizations_lifetime\n", + "7080 mean_Albumin__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7081 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma^QOLS\n", + "7082 mean_Albumin__Mass_volume__in_Serum,Plasma>=sqrt(procedures_lifetime)-active_care_plans\n", + "7083 mean_Albumin__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7084 mean_Albumin__Mass_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma-healthcare_coverage\n", + "7085 mean_Albumin__Mass_volume__in_Serum,Plasma>=Globulin__Mass_volume__in_Serum_by_calculation+num_allergies\n", + "7086 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7087 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Glomerular_filtration_rate_1_73_sq_M_predicted^(1/medications_lifetime_perc_covered)\n", + "7088 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7089 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_condition_length,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7090 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7091 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7092 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^log(Albumin__Mass_volume__in_Serum,Plasma)\n", + "7093 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=10^Albumin__Mass_volume__in_Serum,Plasma/device_lifetime_length\n", + "7094 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Systolic_Blood_Pressure+Urea_Nitrogen\n", + "7095 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma/num_allergies\n", + "7096 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma+healthcare_coverage\n", + "7097 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "7098 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(latitude,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7099 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-procedures_lifetime\n", + "7100 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=active_care_plan_length+log(device_lifetime_length)\n", + "7101 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-healthcare_coverage\n", + "7102 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^num_allergies\n", + "7103 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7104 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7105 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma^QOLS\n", + "7106 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(procedures_lifetime,mean_Protein__Mass_volume__in_Serum,Plasma)\n", + "7107 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-immunizations_lifetime_cost\n", + "7108 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(QALY,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7109 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7110 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Heart_rate,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7111 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7112 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=procedures_lifetime/log(mean_Albumin__Mass_volume__in_Serum,Plasma)\n", + "7113 mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7114 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7115 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(encounters_count,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7116 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+procedures_lifetime\n", + "7117 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7118 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(active_care_plan_length,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7119 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(DALY,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7120 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)/log(10)\n", + "7121 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma-1)\n", + "7122 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=-mean_Creatinine^2+Diastolic_Blood_Pressure\n", + "7123 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+immunizations_lifetime_cost\n", + "7124 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma+healthcare_coverage\n", + "7125 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma<=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma/num_allergies\n", + "7126 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=longitude\n", + "7127 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-device_lifetime_length\n", + "7128 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7129 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Albumin__Mass_volume__in_Serum,Plasma+Potassium\n", + "7130 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma*log(10)/log(Carbon_Dioxide)\n", + "7131 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=minimum(active_conditions,Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7132 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=2*Creatinine/Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "7133 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7134 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7135 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-Glucose+procedures_lifetime\n", + "7136 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma-healthcare_coverage\n", + "7137 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=-Potassium+lifetime_conditions\n", + "7138 mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma>=Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^num_allergies\n", + "7139 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7140 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+device_lifetime_length\n", + "7141 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=(1/num_allergies)\n", + "7142 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=(encounters_lifetime_perc_covered+1)*Bilirubin_total__Mass_volume__in_Serum,Plasma\n", + "7143 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=ceil(Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "7144 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma/num_allergies\n", + "7145 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=floor(active_care_plan_length)/procedures_lifetime\n", + "7146 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=minimum(healthcare_expenses,1/2*Glucose__Mass_volume__in_Urine_by_Test_strip)\n", + "7147 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma<=Bilirubin_total__Mass_volume__in_Serum,Plasma+healthcare_coverage\n", + "7148 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=longitude\n", + "7149 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7150 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(encounters_lifetime_perc_covered,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "7151 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7152 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,1/Creatinine)\n", + "7153 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-imaging_studies_lifetime+num_allergies\n", + "7154 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(num_allergies,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "7155 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-medications_lifetime_perc_covered\n", + "7156 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=sqrt(procedures_lifetime)/mean_Carbon_Dioxide\n", + "7157 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,log(mean_Potassium)/log(10))\n", + "7158 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-procedures_lifetime\n", + "7159 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(QOLS,Bilirubin_total__Mass_volume__in_Serum,Plasma)\n", + "7160 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(device_lifetime_length,1/2*Glucose__Mass_volume__in_Urine_by_Test_strip)\n", + "7161 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-healthcare_coverage\n", + "7162 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=Bilirubin_total__Mass_volume__in_Serum,Plasma-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7163 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=(10^healthcare_expenses)^longitude\n", + "7164 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,-pH_of_Urine_by_Test_strip)\n", + "7165 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=-Creatinine+2*QOLS\n", + "7166 mean_Bilirubin_total__Mass_volume__in_Serum,Plasma>=minimum(Bilirubin_total__Mass_volume__in_Serum,Plasma,1/procedures_lifetime)\n", + "7167 mean_Globulin__Mass_volume__in_Serum_by_calculation<=healthcare_expenses\n", + "7168 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation/num_allergies\n", + "7169 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(procedures_lifetime,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "7170 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(Creatinine,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "7171 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation+healthcare_coverage\n", + "7172 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(active_care_plans,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "7173 mean_Globulin__Mass_volume__in_Serum_by_calculation<=maximum(medications_active,Globulin__Mass_volume__in_Serum_by_calculation)\n", + "7174 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Globulin__Mass_volume__in_Serum_by_calculation+immunizations_lifetime\n", + "7175 mean_Globulin__Mass_volume__in_Serum_by_calculation<=(active_care_plan_length-1)/Creatinine\n", + "7176 mean_Globulin__Mass_volume__in_Serum_by_calculation<=Creatinine+DALY\n", + "7177 mean_Globulin__Mass_volume__in_Serum_by_calculation<=minimum(healthcare_expenses,2*mean_Glucose__Mass_volume__in_Urine_by_Test_strip)\n", + "7178 mean_Globulin__Mass_volume__in_Serum_by_calculation<=1/2*QALY/mean_Creatinine\n", + "7179 mean_Globulin__Mass_volume__in_Serum_by_calculation>=longitude\n", + "7180 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine-procedures_lifetime\n", + "7181 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-device_lifetime_length\n", + "7182 mean_Globulin__Mass_volume__in_Serum_by_calculation>=2*Globulin__Mass_volume__in_Serum_by_calculation-mean_Albumin__Mass_volume__in_Serum,Plasma\n", + "7183 mean_Globulin__Mass_volume__in_Serum_by_calculation>=(10^healthcare_expenses)^longitude\n", + "7184 mean_Globulin__Mass_volume__in_Serum_by_calculation>=2*procedures_lifetime/Diastolic_Blood_Pressure\n", + "7185 mean_Globulin__Mass_volume__in_Serum_by_calculation>=-healthcare_expenses\n", + "7186 mean_Globulin__Mass_volume__in_Serum_by_calculation>=healthcare_expenses^longitude\n", + "7187 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine^num_allergies\n", + "7188 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation-healthcare_coverage\n", + "7189 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Creatinine/Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma\n", + "7190 mean_Globulin__Mass_volume__in_Serum_by_calculation>=Globulin__Mass_volume__in_Serum_by_calculation^num_allergies\n", + "7191 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=healthcare_expenses\n", + "7192 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(latitude,Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7193 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=Glomerular_filtration_rate_1_73_sq_M_predicted/num_allergies\n", + "7194 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=maximum(Glomerular_filtration_rate_1_73_sq_M_predicted,1/2*QALY)\n", + "7195 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=10^device_lifetime_length*Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "7196 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=sqrt(mean_Protein__Mass_volume__in_Serum,Plasma)+Glomerular_filtration_rate_1_73_sq_M_predicted\n", + "7197 mean_Glomerular_filtration_rate_1_73_sq_M_predicted<=Glomerular_filtration_rate_1_73_sq_M_predicted+healthcare_coverage\n", + "7198 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=longitude\n", + "7199 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Creatinine*log(10)/log(mean_Carbon_Dioxide)\n", + "7200 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-Bilirubin_total__Mass_volume__in_Serum,Plasma+active_care_plans\n", + "7201 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=healthcare_expenses^longitude\n", + "7202 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2/mean_Carbon_Dioxide\n", + "7203 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=-healthcare_expenses\n", + "7204 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=2*QOLS*active_conditions\n", + "7205 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-healthcare_coverage\n", + "7206 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted^num_allergies\n", + "7207 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-immunizations_lifetime\n", + "7208 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-procedures_lifetime\n", + "7209 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted^QOLS\n", + "7210 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=Glomerular_filtration_rate_1_73_sq_M_predicted-Pain_severity___0_10_verbal_numeric_rating__Score____Reported\n", + "7211 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,pH_of_Urine_by_Test_strip)\n", + "7212 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=minimum(Glomerular_filtration_rate_1_73_sq_M_predicted,Prostate_specific_Ag__Mass_volume__in_Serum,Plasma)\n", + "7213 mean_Glomerular_filtration_rate_1_73_sq_M_predicted>=(10^healthcare_expenses)^longitude\n", + "7214 mean_Protein__Mass_volume__in_Serum,Plasma<=healthcare_expenses\n", + "7215 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(procedures_lifetime,Protein__Mass_volume__in_Serum,Plasma)\n", + "7216 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(Protein__Mass_volume__in_Serum,Plasma,mean_Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma)\n", + "7217 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(age,Protein__Mass_volume__in_Serum,Plasma)\n", + "7218 mean_Protein__Mass_volume__in_Serum,Plasma<=mean_Glomerular_filtration_rate_1_73_sq_M_predicted+mean_High_Density_Lipoprotein_Cholesterol+1\n", + "7219 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(encounters_count,Protein__Mass_volume__in_Serum,Plasma)\n", + "7220 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma+healthcare_coverage\n", + "7221 mean_Protein__Mass_volume__in_Serum,Plasma<=Protein__Mass_volume__in_Serum,Plasma/num_allergies\n", + "7222 mean_Protein__Mass_volume__in_Serum,Plasma<=maximum(lifetime_care_plan_length,Protein__Mass_volume__in_Serum,Plasma)\n", + "7223 mean_Protein__Mass_volume__in_Serum,Plasma<=Creatinine*Sodium\n", + "7224 mean_Protein__Mass_volume__in_Serum,Plasma<=Alkaline_phosphatase__Enzymatic_activity_volume__in_Serum,Plasma*log(Glomerular_filtration_rate_1_73_sq_M_predicted)\n", + "7225 mean_Protein__Mass_volume__in_Serum,Plasma>=latitude\n", + "7226 mean_Protein__Mass_volume__in_Serum,Plasma>=device_lifetime_length*log(active_conditions)/log(10)\n", + "7227 mean_Protein__Mass_volume__in_Serum,Plasma>=Protein__Mass_volume__in_Serum,Plasma\n", + "7228 mean_Protein__Mass_volume__in_Serum,Plasma>=-healthcare_expenses\n", + "7229 mean_Protein__Mass_volume__in_Serum,Plasma>=healthcare_expenses^longitude\n", + "7230 mean_Protein__Mass_volume__in_Serum,Plasma>=e^Pain_severity___0_10_verbal_numeric_rating__Score____Reported-mean_Diastolic_Blood_Pressure\n", + "7231 mean_Protein__Mass_volume__in_Serum,Plasma>=(Sodium+1)/Globulin__Mass_volume__in_Serum_by_calculation\n", + "7232 mean_Protein__Mass_volume__in_Serum,Plasma>=minimum(latitude,10^healthcare_expenses)\n", "Number of not ICU, ICU properties\n", - "1380 1268\n" + "7232 4945\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:187: RuntimeWarning: overflow encountered in double_scalars\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:40: RuntimeWarning: overflow encountered in exp\n", - "/Users/jpbrooks/opt/anaconda3/envs/sage/lib/python3.7/site-packages/sage/repl/ipython_kernel/__main__.py:171: RuntimeWarning: overflow encountered in double_scalars\n" + "./conjecturing.py:153: RuntimeWarning: overflow encountered in double_scalars\n", + " stack.append(op(left, right))\n", + "./conjecturing.py:255: RuntimeWarning: overflow encountered in double_scalars\n", + " return (lambda x: 10**x), 1\n", + "./conjecturing.py:153: RuntimeWarning: invalid value encountered in double_scalars\n", + " stack.append(op(left, right))\n", + "./conjecturing.py:108: RuntimeWarning: overflow encountered in exp\n", + " stack.append(op(stack.pop()))\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ + "(icu_status)->(healthcare_expenses_geq_2_times_medications_lifetime_perc_covered_times_procedures_lifetime_cost)\n", + "(icu_status)->(healthcare_coverage_leq_open_bracket__minus_longitude_close_bracket_to_the_power_encounters_count)\n", + "(icu_status)->(healthcare_expenses_geq_medications_active_squared_times_medications_lifetime_length)\n", + "(icu_status)->(medications_active_geq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket)\n", + "(icu_status)->(Low_Density_Lipoprotein_Cholesterol_leq_flooropen_bracket_mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_squared_close_bracket)\n", + "(icu_status)->(healthcare_coverage_leq_e_to_the_power_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket)\n", + "(icu_status)->(healthcare_expenses_geq_device_lifetime_length_times_latitude_squared)\n", + "(icu_status)->((Anemia__disorder_)->(latitude_geq_QALY_times_medications_lifetime_perc_covered_squared))\n", + "(icu_status)->(lifetime_care_plans_geq_ceilopen_bracket_medications_lifetime_perc_covered_close_bracket)\n", + "(icu_status)->((Hypertension)->(longitude_leq__minus_QALY_plus_immunizations_lifetime_cost_minus_1))\n", + "(icu_status)->(device_lifetime_length_leq_maximumopen_bracket_Heart_rate_or_inverse_of_procedures_lifetime_cost_close_bracket)\n", + "(icu_status)->(healthcare_coverage_geq_inverse_of_2_times_active_condition_length_times_immunizations_lifetime_cost)\n", + "(icu_status)->((Anemia__disorder_)->(procedures_lifetime_cost_leq_open_bracket_e_to_the_power_procedures_lifetime_close_bracket_to_the_power_mean_Urea_Nitrogen))\n", + "(icu_status)->(latitude_leq_10_to_the_power_lifetime_condition_length_divided_by_lifetime_care_plan_length)\n", + "(icu_status)->(medications_active_leq_maximumopen_bracket_Respiratory_rate_or_active_conditions_minus_1_close_bracket)\n", + "(icu_status)->(longitude_leq__minus_age_plus_lifetime_care_plan_length)\n", + "(icu_status)->((Major_depression_disorder)->(active_care_plan_length_geq_minimumopen_bracket_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_or_e_to_the_power_procedures_lifetime_close_bracket))\n", + "(icu_status)->(lifetime_condition_length_geq_active_condition_length_times_logopen_bracket_encounters_count_close_bracket_divided_by_logopen_bracket_10_close_bracket)\n", + "(icu_status)->(age_leq_flooropen_bracket_High_Density_Lipoprotein_Cholesterol_close_bracket_plus_medications_lifetime_dispenses)\n", + "(icu_status)->(active_care_plans_geq_ceilopen_bracket_logopen_bracket_Glomerular_filtration_rate_1_73_sq_M_predicted_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket)\n", + "(icu_status)->(encounters_count_leq_flooropen_bracket_Body_Mass_Index_close_bracket_times_lifetime_conditions)\n", + "(icu_status)->(mean_Sodium_geq_minimumopen_bracket_mean_Low_Density_Lipoprotein_Cholesterol_or_flooropen_bracket_Sodium_close_bracket_close_bracket)\n", + "(icu_status)->(active_conditions_geq_flooropen_bracket_sqrtopen_bracket_DALY_close_bracket_close_bracket)\n", + "(icu_status)->(Estimated_Glomerular_Filtration_Rate_leq_active_care_plans_plus_flooropen_bracket_mean_Estimated_Glomerular_Filtration_Rate_close_bracket)\n", + "(icu_status)->(active_care_plans_geq__minus_QALY_plus_ceilopen_bracket_MCHC__Mass_volume__by_Automated_count_close_bracket)\n", + "(icu_status)->(lifetime_care_plans_leq__minus_active_condition_length_plus_age_minus_1)\n", + "(icu_status)->((Miscarriage_in_first_trim)->(num_allergies_leq_medications_active_divided_by_procedures_lifetime))\n", + "(icu_status)->((Osteoarthritis_of_knee)->(healthcare_expenses_leq_Body_Height_squared_times_Heart_rate))\n", + "(icu_status)->(medications_lifetime_leq_encounters_count_times_flooropen_bracket_Potassium_close_bracket)\n", + "(icu_status)->(active_care_plan_length_leq_active_condition_length_plus_medications_lifetime_cost)\n", + "(icu_status)->(active_conditions_geq_lifetime_conditions_minus_procedures_lifetime_minus_1)\n", + "(icu_status)->(mean_Systolic_Blood_Pressure_leq_maximumopen_bracket_Triglycerides_or_flooropen_bracket_Systolic_Blood_Pressure_close_bracket_close_bracket)\n", + "(icu_status)->(lifetime_conditions_leq_maximumopen_bracket_active_conditions_or_encounters_count_minus_1_close_bracket)\n", + "(icu_status)->((Hypertension)->(active_care_plans_leq_10_to_the_power_medications_active_plus_DALY))\n", + "(icu_status)->(mean_Chloride_leq_flooropen_bracket_Protein__Mass_volume__in_Serum_or_Plasma_close_bracket_plus_latitude)\n", + "(icu_status)->(mean_Systolic_Blood_Pressure_geq_Urea_Nitrogen_times_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket)\n", + "(icu_status)->((Major_depression_disorder)->(medications_lifetime_length_geq_open_bracket_medications_active_minus_1_close_bracket_to_the_power_Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "(icu_status)->((Prediabetes)->(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_leq_e_to_the_power_open_bracket_10_to_the_power_lifetime_care_plans_close_bracket))\n", + "(icu_status)->((Influenza__seasonal__inje)->(healthcare_expenses_leq_Body_Height_squared_times_age))\n", + "(~(latitude_geq_flooropen_bracket_Body_Weight_close_bracket_to_the_power_medications_lifetime_perc_covered))->(icu_status)\n", + "(~(latitude_geq_lifetime_care_plan_length_minus_lifetime_condition_length_plus_1))->(icu_status)\n", + "(Microalbuminuria_due_to_t)->(icu_status)\n", + "(Myocardial_Infarction)->(icu_status)\n", + "(Non_small_cell_lung_cance)->(icu_status)\n", + "(Familial_Alzheimers_dise)->(icu_status)\n", + "(Brain_damage___traumatic)->(icu_status)\n", + "(Hep_B__adult)->(icu_status)\n", + "(~(active_condition_length_leq_open_bracket_logopen_bracket_QALY_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket_to_the_power_lifetime_condition_length))->(icu_status)\n", + "(Hemoglobin__Presence__in_Urine_by_Test_stripUrine_blood_test__equal__negative__finding_)->(icu_status)\n", + "((Chronic_pain)&(Body_mass_index_30____obe))->(icu_status)\n", + "(~(active_care_plans_geq__minus_encounters_count_plus_flooropen_bracket_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket))->(icu_status)\n", + "(~(lifetime_care_plan_length_leq_maximumopen_bracket_age_or_inverse_of_2_times_medications_lifetime_dispenses_close_bracket))->(icu_status)\n", + "(~(encounters_count_leq_flooropen_bracket_Potassium_close_bracket_to_the_power_mean_Potassium))->(icu_status)\n", + "(~(medications_lifetime_cost_geq_immunizations_lifetime_times_medications_lifetime_squared))->(icu_status)\n", + "(Transthoracic_three_dimen)->(icu_status)\n", + "(~(healthcare_coverage_geq__minus_immunizations_lifetime_cost_plus_lifetime_care_plan_length_plus_1))->(icu_status)\n", + "(Seizure_Count_Cerebral_Co)->(icu_status)\n", + "(healthcare_expenses_leq_Carbon_Dioxide_times_Platelets____volume__in_Blood_by_Automated_count_squared)->(icu_status)\n", + "(lifetime_condition_length_leq_minimumopen_bracket_healthcare_expenses_or_FEV1_FVC_squared_close_bracket)->(icu_status)\n", + "(medications_active_leq_open_bracket_procedures_lifetime_cost_minus_1_close_bracket_to_the_power_Sodium)->(icu_status)\n", + "((Osteoarthritis_of_knee)&(Miscarriage_in_first_trim))->(icu_status)\n", + "(~(healthcare_expenses_geq_open_bracket_medications_lifetime_length_squared_close_bracket_to_the_power_encounters_lifetime_perc_covered))->(icu_status)\n", + "(~(lifetime_care_plans_leq_open_bracket_inverse_of_encounters_lifetime_perc_covered_close_bracket_to_the_power_lifetime_conditions))->(icu_status)\n", + "(~(healthcare_coverage_leq_10_to_the_power_DALY_divided_by_device_lifetime_length))->(icu_status)\n", + "(~(latitude_leq__minus_Carbon_Dioxide_plus_flooropen_bracket_Glucose_close_bracket))->(icu_status)\n", + "(~(latitude_geq__minus_active_condition_length_plus_age_plus_1))->(icu_status)\n", + "(~(longitude_leq_DALY_minus_QALY))->(icu_status)\n", + "(~(medications_lifetime_geq_inverse_of_2_times_medications_active_times_procedures_lifetime))->(icu_status)\n", + "(~(age_geq_4_times_lifetime_conditions))->(icu_status)\n", + "(~(num_allergies_leq_10_to_the_power_active_care_plans_divided_by_lifetime_condition_length))->(icu_status)\n", + "(~(active_care_plans_geq_minimumopen_bracket_lifetime_care_plans_or_medications_active_minus_1_close_bracket))->(icu_status)\n", + "((Opioid_abuse__disorder_)&(Alcoholism))->(icu_status)\n", + "(~(active_care_plan_length_geq_flooropen_bracket_lifetime_care_plan_length_close_bracket_minus_medications_lifetime_cost))->(icu_status)\n", + "(~(lifetime_conditions_leq_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket_plus_medications_lifetime))->(icu_status)\n", + "(~(lifetime_conditions_geq_flooropen_bracket_Potassium_close_bracket_plus_immunizations_lifetime))->(icu_status)\n", + "(~(Respiratory_rate_geq_ceilopen_bracket_sqrtopen_bracket_Systolic_Blood_Pressure_close_bracket_close_bracket))->(icu_status)\n", + "(~(Calcium_leq_ceilopen_bracket_mean_Urea_Nitrogen_plus_1_close_bracket))->(icu_status)\n", + "((Smokes_tobacco_daily)&(Alcoholism))->(icu_status)\n", + "((Measurement_of_respirator)&(Hyperlipidemia))->(icu_status)\n", + "((healthcare_coverage_geq_sqrtopen_bracket_Platelets____volume__in_Blood_by_Automated_count_close_bracket_to_the_power_lifetime_care_plans)&(Appendicitis))->(icu_status)\n", "Property Conjectures\n", - "7\n", - "healthcare_coverage_geq_e_to_the_power_open_bracket_2_times_10_to_the_power_medications_lifetime_perc_covered_close_bracket\n", - "(icu_status)->(healthcare_coverage>=e^(2*10^medications_lifetime_perc_covered))\n", - "0.9337755919020931\n", - "healthcare_expenses_leq_e_to_the_power_open_bracket__minus_DALY_plus_QALY_close_bracket\n", - "(icu_status)->(healthcare_expenses<=e^(-DALY+QALY))\n", - "0.9349005424954792\n", - "healthcare_expenses_geq_procedures_lifetime_to_the_power_e_to_the_power_immunizations_lifetime\n", - "(icu_status)->(healthcare_expenses>=procedures_lifetime^e^immunizations_lifetime)\n", - "0.9244444444444444\n", - "healthcare_coverage_leq_open_bracket_encounters_lifetime_total_cost_minus_1_close_bracket_times_age\n", - "(icu_status)->(healthcare_coverage<=(encounters_lifetime_total_cost-1)*age)\n", - "0.9833876221498371\n", - "healthcare_coverage_geq_encounters_lifetime_total_cost_times_sqrtopen_bracket_immunizations_lifetime_close_bracket\n", - "(icu_status)->(healthcare_coverage>=encounters_lifetime_total_cost*sqrt(immunizations_lifetime))\n", - "0.924896265560166\n", - "healthcare_coverage_geq_e_to_the_power_open_bracket_sqrtopen_bracket_QALY_close_bracket_plus_1_close_bracket\n", - "(icu_status)->(healthcare_coverage>=e^(sqrt(QALY)+1))\n", - "0.9304008378558507\n", - "latitude_geq_lifetime_condition_length_divided_by_open_bracket_medications_lifetime_plus_1_close_bracket\n", - "(icu_status)->(latitude>=lifetime_condition_length/(medications_lifetime+1))\n", - "0.9573904179408766\n", - "6\n", - "Hyperglycemia__disorder_\n", - "(Hyperglycemia__disorder_)->(icu_status)\n", - "0.09877273399378973\n", - "Coronary_Heart_Disease\n", - "(Coronary_Heart_Disease)->(icu_status)\n", - "0.12874184109835696\n", - "~medications_lifetime_leq_maximumopen_bracket_Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count_or_e_to_the_power_active_conditions_close_bracket\n", - "(~(medications_lifetime<=maximum(Platelet_distribution_width__Entitic_volume__in_Blood_by_Automated_count,e^active_conditions)))->(icu_status)\n", - "0.040218270008084075\n", - "~latitude_leq_maximumopen_bracket_QALY_or_inverse_of_device_lifetime_length_close_bracket\n", - "(~(latitude<=maximum(QALY,1/device_lifetime_length)))->(icu_status)\n", - "0.0591016548463357\n", - "Tobacco_smoking_status_NHISFormer_smoker\n", - "(Tobacco_smoking_status_NHISFormer_smoker)->(icu_status)\n", - "0.08455859923128546\n", - "~lifetime_care_plan_length_leq_encounters_lifetime_payer_coverage_divided_by_sqrtopen_bracket_latitude_close_bracket\n", - "(~(lifetime_care_plan_length<=encounters_lifetime_payer_coverage/sqrt(latitude)))->(icu_status)\n", - "0.03428086550700042\n" + "39\n", + "healthcare_expenses_geq_2_times_medications_lifetime_perc_covered_times_procedures_lifetime_cost\n", + "(icu_status)->(healthcare_expenses>=2*medications_lifetime_perc_covered*procedures_lifetime_cost)\n", + "0.8543307086614174\n", + "healthcare_coverage_leq_open_bracket__minus_longitude_close_bracket_to_the_power_encounters_count\n", + "(icu_status)->(healthcare_coverage<=(-longitude)^encounters_count)\n", + "0.9837141468157511\n", + "healthcare_expenses_geq_medications_active_squared_times_medications_lifetime_length\n", + "(icu_status)->(healthcare_expenses>=medications_active^2*medications_lifetime_length)\n", + "0.863255033557047\n", + "medications_active_geq_flooropen_bracket_Globulin__Mass_volume__in_Serum_by_calculation_close_bracket\n", + "(icu_status)->(medications_active>=floor(Globulin__Mass_volume__in_Serum_by_calculation))\n", + "0.903197547087166\n", + "Low_Density_Lipoprotein_Cholesterol_leq_flooropen_bracket_mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_squared_close_bracket\n", + "(icu_status)->(Low_Density_Lipoprotein_Cholesterol<=floor(mean_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma^2))\n", + "0.8644825018615041\n", + "healthcare_coverage_leq_e_to_the_power_sqrtopen_bracket_encounters_lifetime_payer_coverage_close_bracket\n", + "(icu_status)->(healthcare_coverage<=e^sqrt(encounters_lifetime_payer_coverage))\n", + "0.9827062397756485\n", + "healthcare_expenses_geq_device_lifetime_length_times_latitude_squared\n", + "(icu_status)->(healthcare_expenses>=device_lifetime_length*latitude^2)\n", + "0.9318181818181818\n", + "Anemia__disorder_->latitude_geq_QALY_times_medications_lifetime_perc_covered_squared\n", + "(icu_status)->((Anemia__disorder_)->(latitude>=QALY*medications_lifetime_perc_covered^2))\n", + "0.8621794871794872\n", + "lifetime_care_plans_geq_ceilopen_bracket_medications_lifetime_perc_covered_close_bracket\n", + "(icu_status)->(lifetime_care_plans>=ceil(medications_lifetime_perc_covered))\n", + "0.9584775086505191\n", + "Hypertension->longitude_leq__minus_QALY_plus_immunizations_lifetime_cost_minus_1\n", + "(icu_status)->((Hypertension)->(longitude<=-QALY+immunizations_lifetime_cost-1))\n", + "0.8610747051114024\n", + "device_lifetime_length_leq_maximumopen_bracket_Heart_rate_or_inverse_of_procedures_lifetime_cost_close_bracket\n", + "(icu_status)->(device_lifetime_length<=maximum(Heart_rate,1/procedures_lifetime_cost))\n", + "0.9101123595505618\n", + "healthcare_coverage_geq_inverse_of_2_times_active_condition_length_times_immunizations_lifetime_cost\n", + "(icu_status)->(healthcare_coverage>=1/2*active_condition_length*immunizations_lifetime_cost)\n", + "0.9402356902356902\n", + "Anemia__disorder_->procedures_lifetime_cost_leq_open_bracket_e_to_the_power_procedures_lifetime_close_bracket_to_the_power_mean_Urea_Nitrogen\n", + "(icu_status)->((Anemia__disorder_)->(procedures_lifetime_cost<=(e^procedures_lifetime)^mean_Urea_Nitrogen))\n", + "0.9371549893842888\n", + "latitude_leq_10_to_the_power_lifetime_condition_length_divided_by_lifetime_care_plan_length\n", + "(icu_status)->(latitude<=10^lifetime_condition_length/lifetime_care_plan_length)\n", + "0.9800299550673989\n", + "medications_active_leq_maximumopen_bracket_Respiratory_rate_or_active_conditions_minus_1_close_bracket\n", + "(icu_status)->(medications_active<=maximum(Respiratory_rate,active_conditions-1))\n", + "0.9814666879693241\n", + "longitude_leq__minus_age_plus_lifetime_care_plan_length\n", + "(icu_status)->(longitude<=-age+lifetime_care_plan_length)\n", + "0.9101123595505618\n", + "Major_depression_disorder->active_care_plan_length_geq_minimumopen_bracket_Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_or_e_to_the_power_procedures_lifetime_close_bracket\n", + "(icu_status)->((Major_depression_disorder)->(active_care_plan_length>=minimum(Alanine_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma,e^procedures_lifetime)))\n", + "0.9457682826622843\n", + "lifetime_condition_length_geq_active_condition_length_times_logopen_bracket_encounters_count_close_bracket_divided_by_logopen_bracket_10_close_bracket\n", + "(icu_status)->(lifetime_condition_length>=active_condition_length*log(encounters_count)/log(10))\n", + "0.9615470601386095\n", + "age_leq_flooropen_bracket_High_Density_Lipoprotein_Cholesterol_close_bracket_plus_medications_lifetime_dispenses\n", + "(icu_status)->(age<=floor(High_Density_Lipoprotein_Cholesterol)+medications_lifetime_dispenses)\n", + "0.902834008097166\n", + "active_care_plans_geq_ceilopen_bracket_logopen_bracket_Glomerular_filtration_rate_1_73_sq_M_predicted_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket\n", + "(icu_status)->(active_care_plans>=ceil(log(Glomerular_filtration_rate_1_73_sq_M_predicted)/log(10)))\n", + "0.9515011547344111\n", + "encounters_count_leq_flooropen_bracket_Body_Mass_Index_close_bracket_times_lifetime_conditions\n", + "(icu_status)->(encounters_count<=floor(Body_Mass_Index)*lifetime_conditions)\n", + "0.8896839594514013\n", + "mean_Sodium_geq_minimumopen_bracket_mean_Low_Density_Lipoprotein_Cholesterol_or_flooropen_bracket_Sodium_close_bracket_close_bracket\n", + "(icu_status)->(mean_Sodium>=minimum(mean_Low_Density_Lipoprotein_Cholesterol,floor(Sodium)))\n", + "0.8858988159311088\n", + "active_conditions_geq_flooropen_bracket_sqrtopen_bracket_DALY_close_bracket_close_bracket\n", + "(icu_status)->(active_conditions>=floor(sqrt(DALY)))\n", + "0.9705304518664047\n", + "Estimated_Glomerular_Filtration_Rate_leq_active_care_plans_plus_flooropen_bracket_mean_Estimated_Glomerular_Filtration_Rate_close_bracket\n", + "(icu_status)->(Estimated_Glomerular_Filtration_Rate<=active_care_plans+floor(mean_Estimated_Glomerular_Filtration_Rate))\n", + "0.8837039737513671\n", + "active_care_plans_geq__minus_QALY_plus_ceilopen_bracket_MCHC__Mass_volume__by_Automated_count_close_bracket\n", + "(icu_status)->(active_care_plans>=-QALY+ceil(MCHC__Mass_volume__by_Automated_count))\n", + "0.9678023212280045\n", + "lifetime_care_plans_leq__minus_active_condition_length_plus_age_minus_1\n", + "(icu_status)->(lifetime_care_plans<=-active_condition_length+age-1)\n", + "0.9310200668896321\n", + "Miscarriage_in_first_trim->num_allergies_leq_medications_active_divided_by_procedures_lifetime\n", + "(icu_status)->((Miscarriage_in_first_trim)->(num_allergies<=medications_active/procedures_lifetime))\n", + "0.9583657587548639\n", + "Osteoarthritis_of_knee->healthcare_expenses_leq_Body_Height_squared_times_Heart_rate\n", + "(icu_status)->((Osteoarthritis_of_knee)->(healthcare_expenses<=Body_Height^2*Heart_rate))\n", + "0.9339513325608343\n", + "medications_lifetime_leq_encounters_count_times_flooropen_bracket_Potassium_close_bracket\n", + "(icu_status)->(medications_lifetime<=encounters_count*floor(Potassium))\n", + "0.8517241379310345\n", + "active_care_plan_length_leq_active_condition_length_plus_medications_lifetime_cost\n", + "(icu_status)->(active_care_plan_length<=active_condition_length+medications_lifetime_cost)\n", + "0.9665551839464883\n", + "active_conditions_geq_lifetime_conditions_minus_procedures_lifetime_minus_1\n", + "(icu_status)->(active_conditions>=lifetime_conditions-procedures_lifetime-1)\n", + "0.9524940617577197\n", + "mean_Systolic_Blood_Pressure_leq_maximumopen_bracket_Triglycerides_or_flooropen_bracket_Systolic_Blood_Pressure_close_bracket_close_bracket\n", + "(icu_status)->(mean_Systolic_Blood_Pressure<=maximum(Triglycerides,floor(Systolic_Blood_Pressure)))\n", + "0.8814285714285715\n", + "lifetime_conditions_leq_maximumopen_bracket_active_conditions_or_encounters_count_minus_1_close_bracket\n", + "(icu_status)->(lifetime_conditions<=maximum(active_conditions,encounters_count-1))\n", + "0.969596827495043\n", + "Hypertension->active_care_plans_leq_10_to_the_power_medications_active_plus_DALY\n", + "(icu_status)->((Hypertension)->(active_care_plans<=10^medications_active+DALY))\n", + "0.9673776662484316\n", + "mean_Chloride_leq_flooropen_bracket_Protein__Mass_volume__in_Serum_or_Plasma_close_bracket_plus_latitude\n", + "(icu_status)->(mean_Chloride<=floor(Protein__Mass_volume__in_Serum,Plasma)+latitude)\n", + "0.8543526785714286\n", + "mean_Systolic_Blood_Pressure_geq_Urea_Nitrogen_times_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket\n", + "(icu_status)->(mean_Systolic_Blood_Pressure>=Urea_Nitrogen*floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "0.9401473296500921\n", + "Major_depression_disorder->medications_lifetime_length_geq_open_bracket_medications_active_minus_1_close_bracket_to_the_power_Hemoglobin_A1c_Hemoglobin_total_in_Blood\n", + "(icu_status)->((Major_depression_disorder)->(medications_lifetime_length>=(medications_active-1)^Hemoglobin_A1c_Hemoglobin_total_in_Blood))\n", + "0.9556099265990913\n", + "Prediabetes->mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported_leq_e_to_the_power_open_bracket_10_to_the_power_lifetime_care_plans_close_bracket\n", + "(icu_status)->((Prediabetes)->(mean_Pain_severity___0_10_verbal_numeric_rating__Score____Reported<=e^(10^lifetime_care_plans)))\n", + "0.9700488997555012\n", + "Influenza__seasonal__inje->healthcare_expenses_leq_Body_Height_squared_times_age\n", + "(icu_status)->((Influenza__seasonal__inje)->(healthcare_expenses<=Body_Height^2*age))\n", + "0.9456603773584905\n", + "41\n", + "~latitude_geq_flooropen_bracket_Body_Weight_close_bracket_to_the_power_medications_lifetime_perc_covered\n", + "(~(latitude>=floor(Body_Weight)^medications_lifetime_perc_covered))->(icu_status)\n", + "0.12605042016806722\n", + "~latitude_geq_lifetime_care_plan_length_minus_lifetime_condition_length_plus_1\n", + "(~(latitude>=lifetime_care_plan_length-lifetime_condition_length+1))->(icu_status)\n", + "0.05533371363377068\n", + "Microalbuminuria_due_to_t\n", + "(Microalbuminuria_due_to_t)->(icu_status)\n", + "0.09671746776084408\n", + "Myocardial_Infarction\n", + "(Myocardial_Infarction)->(icu_status)\n", + "0.18672199170124482\n", + "Non_small_cell_lung_cance\n", + "(Non_small_cell_lung_cance)->(icu_status)\n", + "0.1502843216896832\n", + "Familial_Alzheimers_dise\n", + "(Familial_Alzheimers_dise)->(icu_status)\n", + "0.0880281690140845\n", + "Brain_damage___traumatic\n", + "(Brain_damage___traumatic)->(icu_status)\n", + "0.07303370786516854\n", + "Hep_B__adult\n", + "(Hep_B__adult)->(icu_status)\n", + "0.0199203187250996\n", + "~active_condition_length_leq_open_bracket_logopen_bracket_QALY_close_bracket_divided_by_logopen_bracket_10_close_bracket_close_bracket_to_the_power_lifetime_condition_length\n", + "(~(active_condition_length<=(log(QALY)/log(10))^lifetime_condition_length))->(icu_status)\n", + "0.027450980392156862\n", + "Hemoglobin__Presence__in_Urine_by_Test_stripUrine_blood_test__equal__negative__finding_\n", + "(Hemoglobin__Presence__in_Urine_by_Test_stripUrine_blood_test_=_negative__finding_)->(icu_status)\n", + "0.12345679012345678\n", + "Chronic_pain&Body_mass_index_30____obe\n", + "((Chronic_pain)&(Body_mass_index_30____obe))->(icu_status)\n", + "0.07116692830978545\n", + "~active_care_plans_geq__minus_encounters_count_plus_flooropen_bracket_Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum_or_Plasma_close_bracket\n", + "(~(active_care_plans>=-encounters_count+floor(Aspartate_aminotransferase__Enzymatic_activity_volume__in_Serum,Plasma)))->(icu_status)\n", + "0.06033898305084746\n", + "~lifetime_care_plan_length_leq_maximumopen_bracket_age_or_inverse_of_2_times_medications_lifetime_dispenses_close_bracket\n", + "(~(lifetime_care_plan_length<=maximum(age,1/2*medications_lifetime_dispenses)))->(icu_status)\n", + "0.05016722408026756\n", + "~encounters_count_leq_flooropen_bracket_Potassium_close_bracket_to_the_power_mean_Potassium\n", + "(~(encounters_count<=floor(Potassium)^mean_Potassium))->(icu_status)\n", + "0.16055625790139064\n", + "~medications_lifetime_cost_geq_immunizations_lifetime_times_medications_lifetime_squared\n", + "(~(medications_lifetime_cost>=immunizations_lifetime*medications_lifetime^2))->(icu_status)\n", + "0.20314389359129384\n", + "Transthoracic_three_dimen\n", + "(Transthoracic_three_dimen)->(icu_status)\n", + "0.16986301369863013\n", + "~healthcare_coverage_geq__minus_immunizations_lifetime_cost_plus_lifetime_care_plan_length_plus_1\n", + "(~(healthcare_coverage>=-immunizations_lifetime_cost+lifetime_care_plan_length+1))->(icu_status)\n", + "0.02547065337763012\n", + "Seizure_Count_Cerebral_Co\n", + "(Seizure_Count_Cerebral_Co)->(icu_status)\n", + "0.058823529411764705\n", + "healthcare_expenses_leq_Carbon_Dioxide_times_Platelets____volume__in_Blood_by_Automated_count_squared\n", + "(healthcare_expenses<=Carbon_Dioxide*Platelets____volume__in_Blood_by_Automated_count^2)->(icu_status)\n", + "0.09940174873446847\n", + "lifetime_condition_length_leq_minimumopen_bracket_healthcare_expenses_or_FEV1_FVC_squared_close_bracket\n", + "(lifetime_condition_length<=minimum(healthcare_expenses,FEV1_FVC^2))->(icu_status)\n", + "0.12087912087912088\n", + "medications_active_leq_open_bracket_procedures_lifetime_cost_minus_1_close_bracket_to_the_power_Sodium\n", + "(medications_active<=(procedures_lifetime_cost-1)^Sodium)->(icu_status)\n", + "0.03333333333333333\n", + "Osteoarthritis_of_knee&Miscarriage_in_first_trim\n", + "((Osteoarthritis_of_knee)&(Miscarriage_in_first_trim))->(icu_status)\n", + "0.09215686274509804\n", + "~healthcare_expenses_geq_open_bracket_medications_lifetime_length_squared_close_bracket_to_the_power_encounters_lifetime_perc_covered\n", + "(~(healthcare_expenses>=(medications_lifetime_length^2)^encounters_lifetime_perc_covered))->(icu_status)\n", + "0.046686746987951805\n", + "~lifetime_care_plans_leq_open_bracket_inverse_of_encounters_lifetime_perc_covered_close_bracket_to_the_power_lifetime_conditions\n", + "(~(lifetime_care_plans<=(1/encounters_lifetime_perc_covered)^lifetime_conditions))->(icu_status)\n", + "0.03242506811989101\n", + "~healthcare_coverage_leq_10_to_the_power_DALY_divided_by_device_lifetime_length\n", + "(~(healthcare_coverage<=10^DALY/device_lifetime_length))->(icu_status)\n", + "0.07597027250206441\n", + "~latitude_leq__minus_Carbon_Dioxide_plus_flooropen_bracket_Glucose_close_bracket\n", + "(~(latitude<=-Carbon_Dioxide+floor(Glucose)))->(icu_status)\n", + "0.09274790330537741\n", + "~latitude_geq__minus_active_condition_length_plus_age_plus_1\n", + "(~(latitude>=-active_condition_length+age+1))->(icu_status)\n", + "0.07187630589218554\n", + "~longitude_leq_DALY_minus_QALY\n", + "(~(longitude<=DALY-QALY))->(icu_status)\n", + "0.14714615638403167\n", + "~medications_lifetime_geq_inverse_of_2_times_medications_active_times_procedures_lifetime\n", + "(~(medications_lifetime>=1/2*medications_active*procedures_lifetime))->(icu_status)\n", + "0.04541241890639481\n", + "~age_geq_4_times_lifetime_conditions\n", + "(~(age>=4*lifetime_conditions))->(icu_status)\n", + "0.05069124423963134\n", + "~num_allergies_leq_10_to_the_power_active_care_plans_divided_by_lifetime_condition_length\n", + "(~(num_allergies<=10^active_care_plans/lifetime_condition_length))->(icu_status)\n", + "0.04232164449818621\n", + "~active_care_plans_geq_minimumopen_bracket_lifetime_care_plans_or_medications_active_minus_1_close_bracket\n", + "(~(active_care_plans>=minimum(lifetime_care_plans,medications_active-1)))->(icu_status)\n", + "0.15128755364806867\n", + "Opioid_abuse__disorder_&Alcoholism\n", + "((Opioid_abuse__disorder_)&(Alcoholism))->(icu_status)\n", + "0.10089020771513353\n", + "~active_care_plan_length_geq_flooropen_bracket_lifetime_care_plan_length_close_bracket_minus_medications_lifetime_cost\n", + "(~(active_care_plan_length>=floor(lifetime_care_plan_length)-medications_lifetime_cost))->(icu_status)\n", + "0.02749301025163094\n", + "~lifetime_conditions_leq_flooropen_bracket_Hemoglobin_A1c_Hemoglobin_total_in_Blood_close_bracket_plus_medications_lifetime\n", + "(~(lifetime_conditions<=floor(Hemoglobin_A1c_Hemoglobin_total_in_Blood)+medications_lifetime))->(icu_status)\n", + "0.07583774250440917\n", + "~lifetime_conditions_geq_flooropen_bracket_Potassium_close_bracket_plus_immunizations_lifetime\n", + "(~(lifetime_conditions>=floor(Potassium)+immunizations_lifetime))->(icu_status)\n", + "0.05491551459293395\n", + "~Respiratory_rate_geq_ceilopen_bracket_sqrtopen_bracket_Systolic_Blood_Pressure_close_bracket_close_bracket\n", + "(~(Respiratory_rate>=ceil(sqrt(Systolic_Blood_Pressure))))->(icu_status)\n", + "0.10064935064935066\n", + "~Calcium_leq_ceilopen_bracket_mean_Urea_Nitrogen_plus_1_close_bracket\n", + "(~(Calcium<=ceil(mean_Urea_Nitrogen+1)))->(icu_status)\n", + "0.07822222222222222\n", + "Smokes_tobacco_daily&Alcoholism\n", + "((Smokes_tobacco_daily)&(Alcoholism))->(icu_status)\n", + "0.08328826392644673\n", + "Measurement_of_respirator&Hyperlipidemia\n", + "((Measurement_of_respirator)&(Hyperlipidemia))->(icu_status)\n", + "0.1346153846153846\n", + "healthcare_coverage_geq_sqrtopen_bracket_Platelets____volume__in_Blood_by_Automated_count_close_bracket_to_the_power_lifetime_care_plans&Appendicitis\n", + "((healthcare_coverage>=sqrt(Platelets____volume__in_Blood_by_Automated_count)^lifetime_care_plans)&(Appendicitis))->(icu_status)\n", + "0.0673758865248227\n" ] } ], @@ -8686,7 +30693,6 @@ "covid_invariants = invariants\n", "\n", "\n", - "set_random_seed(12345)\n", "covid_icu_properties = []\n", "covid_not_icu_properties = []\n", "use_operators = { '-1', '+1', '*2', '/2', '^2', '-()', '1/', 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil', 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^'}\n", @@ -8697,29 +30703,30 @@ "for inv in covid_invariants:\n", " #print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_icu, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_icu_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_icu, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_icu_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_icu, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_icu_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_icu, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_icu_properties += conjs\n", "count = 0\n", "for conj in covid_icu_properties:\n", " count +=1\n", @@ -8730,29 +30737,30 @@ "for inv in covid_invariants:\n", " #print(inv.__name__)\n", " inv_of_interest = covid_invariants.index(inv)\n", - " for i in range(3):\n", - " # upper bounds\n", - " conjs = conjecture(sample(covid_not_icu, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=True, \n", - " debug=False) \n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_not_icu_properties += conjs\n", - " # lower bounds\n", - " conjs = conjecture(sample(covid_not_icu, 10), \n", - " covid_invariants, \n", - " inv_of_interest, \n", - " operators=use_operators, \n", - " upperBound=False, \n", - " debug=False)\n", - " convert_conjecture_names(conjs)\n", - " #for c in conjs:\n", - " # print(c)\n", - " covid_not_icu_properties += conjs\n", + " # upper bounds\n", + " conjs = conjecture(train_not_icu, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=True, \n", + " debug=False,\n", + " skips=myskips) \n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_not_icu_properties += conjs\n", + " # lower bounds\n", + " conjs = conjecture(train_not_icu, \n", + " covid_invariants, \n", + " inv_of_interest, \n", + " operators=use_operators, \n", + " upperBound=False, \n", + " debug=False,\n", + " skips=myskips)\n", + " convert_conjecture_names(conjs)\n", + " #for c in conjs:\n", + " # print(c)\n", + " covid_not_icu_properties += conjs\n", "count = 0\n", "for conj in covid_not_icu_properties:\n", " count +=1\n", @@ -8760,23 +30768,22 @@ "print(\"Number of not ICU, ICU properties\")\n", "print(len(covid_not_icu_properties), len(covid_icu_properties))\n", "\n", - "load(\"conjecturing.py\")\n", "\n", - "set_random_seed(12345)\n", "all_covid_properties = properties + covid_icu_properties + covid_not_icu_properties\n", "all_covid_properties.append(Patient.icu_status)\n", "\n", "target_prop = len(all_covid_properties)-1\n", - "for i in range(100):\n", - " not_icu_conjs = propertyBasedConjecture(objects=sample(covid_icu,10)+sample(covid_not_icu,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=False)\n", - "\n", - " icu_conjs = propertyBasedConjecture(objects=sample(covid_icu,10)+sample(covid_not_icu,10), \n", - " properties = all_covid_properties,\n", - " mainProperty=target_prop,\n", - " sufficient=True)\n", + "not_icu_conjs = propertyBasedConjecture(objects=train_icu+train_not_icu, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=False,\n", + " skips=myskips)\n", + "\n", + "icu_conjs = propertyBasedConjecture(objects=train_icu+train_not_icu, \n", + " properties = all_covid_properties,\n", + " mainProperty=target_prop,\n", + " sufficient=True,\n", + " skips=myskips)\n", "count = 0\n", "for p in icu_conjs:\n", " #print(count, \".\", convert_name_back(p.__name__))\n", @@ -8786,14 +30793,13 @@ " count += 1\n", "\n", "\n", - "load(\"prop_conjecturing.py\")\n", "print(\"Property Conjectures\")\n", "print(len(not_icu_conjs))\n", "for p in not_icu_conjs:\n", " my_conclusion = get_conclusion(p)\n", " num_false = 0\n", " num_not_icu = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_icu+test_not_icu:\n", " try: \n", " if my_conclusion(patient) == False:\n", " num_false += 1\n", @@ -8802,13 +30808,13 @@ " except:\n", " continue\n", " print(convert_name_back(p.__name__))\n", - " print(num_not_icu/float(num_false))\n", + " print(num_false, num_not_icu/float(num_false))\n", "print(len(icu_conjs))\n", "for p in icu_conjs:\n", " my_premise = get_premise(p)\n", " num_true = 0\n", " num_icu = 0\n", - " for patient in p_examples_list:\n", + " for patient in test_icu+test_not_icu:\n", " try: # deal with missing values\n", " if my_premise(patient) == True:\n", " num_true += 1\n", @@ -8817,22 +30823,8 @@ " except:\n", " continue\n", " print(convert_name_back(p.__name__))\n", - " print(num_icu/float(num_true))" + " print(num_true, num_icu/float(num_true))" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { diff --git a/examples/Covid-Conjecturing/covid_conjecturing.pdf b/examples/Covid-Conjecturing/covid_conjecturing.pdf index c50acc1..81b4c80 100644 Binary files a/examples/Covid-Conjecturing/covid_conjecturing.pdf and b/examples/Covid-Conjecturing/covid_conjecturing.pdf differ diff --git a/examples/Learning-from-Data-2020/real_estate_python3.py b/examples/Learning-from-Data-2020/real_estate_python3.py new file mode 100644 index 0000000..5ce61be --- /dev/null +++ b/examples/Learning-from-Data-2020/real_estate_python3.py @@ -0,0 +1,302 @@ + +# This file was *autogenerated* from the file real_estate_price_investigationFinal.sage +from sage.all_cmdline import * # import sage library + +_sage_const_300000p0 = RealNumber('300000.0'); _sage_const_1 = Integer(1); _sage_const_0 = Integer(0); _sage_const_26 = Integer(26); _sage_const_5 = Integer(5)#load the data (masked column name version) + +import pandas as pd +import sys + +print("Reading data! \n") +sys.stdout.flush() + +train_house_df = pd.read_csv('trainData.csv') + +print("Done reading data! \n") + +#target above/below in column 0 +#data headers in row 0 +#want to make 17 invariants - these will be named "target" and "inv1"..."inv16" +#for a data point (row) "house" and a invariant name "f", f(house)= entry in that row and column + +# invariant numbers +""" +0 - Target +3 - Square footage +7 - $ per square foot +""" + +#make House class: houses are rows (starting in row 1) from data file (collection of associated numbers) + +#['TARGET', 'BEDS', 'BATHS', 'SQUARE.FEET', 'LOT.SIZE', 'YEAR.BUILT', 'DAYS.ON.MARKET', 'X..SQUARE.FEET', 'HOA.MONTH', 'LATITUDE', 'LONGITUDE', 'PROPERTY.TYPEMobile.Manufactured.Home', 'PROPERTY.TYPESingle.Family.Residential', 'PROPERTY.TYPETownhouse', 'PROPERTY.TYPEMulti.Family..2.4.Unit.', 'PROPERTY.TYPEMulti.Family..5..Unit.', 'PROPERTY.TYPEOther'] + +class House(): + def __init__(self, mydf, number): + self.mydf = mydf + self.name = "house" + str(number) + self.number = int(number) + #self.data = all_house_data[number] + + + def is_less_equal_cutoff_number(self): + return (int(self.mydf.iloc[self.number]["TARGET"]) == _sage_const_0 ) #means leq 300k + + def is_more_than_cutoff_number(self): + return (int(self.mydf.iloc[self.number]["TARGET"]) == _sage_const_1 ) #means leq 300k + + + def number_of_beds(self): + return RDF(self.mydf.iloc[self.number]["BEDS"]) + + def number_of_baths(self): + return RDF(self.mydf.iloc[self.number]["BATHS"]) + + def number_of_square_feet(self): + return RDF(self.mydf.iloc[self.number]["SQUARE.FEET"]) + + def lot_size(self): + return RDF(self.mydf.iloc[self.number]["LOT.SIZE"]) + + def year_built(self): + return RDF(self.mydf.iloc[self.number]["YEAR.BUILT"]) + + def days_on_market(self): + return RDF(self.mydf.iloc[self.number]["DAYS.ON.MARKET"]) + + def per_square_foot(self): + return RDF(self.mydf.iloc[self.number]['X..SQUARE.FEET']) + + def HOA_per_month(self): + return RDF(self.mydf.iloc[self.number]["HOA.MONTH"]) + + def latitude(self): + return RDF(self.mydf.iloc[self.number]["LATITUDE"]) + + def longitude(self): + return RDF(self.mydf.iloc[self.number]["LONGITUDE"]) + + def is_mobile_home(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPEMobile.Manufactured.Home"]) == _sage_const_1 ) + + def is_single_family_residential(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPESingle.Family.Residential"]) == _sage_const_1 ) + + def is_townhouse(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPETownhouse"]) == _sage_const_1 ) + + def is_multi_family_2_to_4(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPEMulti.Family..2.4.Unit."]) == _sage_const_1 ) + + def is_multi_family_5_more(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPEMulti.Family..5..Unit."]) == _sage_const_1 ) + + def is_other_res_type(self): + return (int(self.mydf.iloc[self.number]["PROPERTY.TYPEOther"]) == _sage_const_1 ) + +house_properties = [ + House.is_mobile_home, + House.is_single_family_residential, + House.is_townhouse, + House.is_multi_family_2_to_4, + House.is_multi_family_5_more, + House.is_other_res_type + ] + +train_houses = [House(train_house_df, i) for i in range(len(train_house_df))] + + +train_houses_below = [house for house in train_houses if house.is_less_equal_cutoff_number()] + +train_houses_above = [house for house in train_houses if house.is_more_than_cutoff_number()] + + +# create cutoff number invariant +def cutoffInvariant(house): + return _sage_const_300000p0 + + +house_invariants = [ + House.number_of_baths, + House.number_of_beds, + House.lot_size, + House.year_built, + House.number_of_square_feet, + House.days_on_market, + House.per_square_foot, + House.HOA_per_month, + House.latitude, + House.longitude, + cutoffInvariant] + +print("Invariants defined! \n") +sys.stdout.flush() + +print("Houses loaded! \n") +sys.stdout.flush() + +load("conjecturing.py") + +print("conjecturing loaded ... ready to conjecture! \n") +sys.stdout.flush() + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +use_operators = { '-1', '+1', '*2', '/2', '^2', '-()', '1/', 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil', 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^'} + +house_below_properties = [] + + +for inv in house_invariants: + print(inv) + sys.stdout.flush() + inv_of_interest = house_invariants.index(inv) + conjs = conjecture(train_houses_below, house_invariants, inv_of_interest, operators=use_operators, upperBound=True, time=_sage_const_5 ) + convert_conjecture_names(conjs) + house_below_properties += conjs + + conjs = conjecture(train_houses_below, house_invariants, inv_of_interest, operators=use_operators, upperBound=False, time=_sage_const_5 ) + convert_conjecture_names(conjs) + house_below_properties += conjs + +print(len(house_below_properties)) + +print("finished house_below invariant conjectures using TRAIN houses") + +count = _sage_const_0 +for conj in house_below_properties: + count += _sage_const_1 + print (count, convert_name_back(conj.__name__)) + +sys.stdout.flush() +house_above_properties = [] + +for inv in house_invariants: + print(inv) + sys.stdout.flush() + inv_of_interest = house_invariants.index(inv) + conjs = conjecture(train_houses_above, house_invariants, inv_of_interest, operators=use_operators, upperBound=True, time=_sage_const_5 ) + convert_conjecture_names(conjs) + house_above_properties += conjs + + conjs = conjecture(train_houses_above, house_invariants, inv_of_interest, operators=use_operators, upperBound=False, time=_sage_const_5 ) + convert_conjecture_names(conjs) + house_above_properties += conjs + +print("finished house_above invariant conjectures using TRAIN houses") + +count = _sage_const_0 +for conj in house_above_properties: + count += _sage_const_1 + print (count, convert_name_back(conj.__name__)) + +sys.stdout.flush() + + +below_house_properties = house_properties + house_above_properties + house_below_properties +below_house_properties.append(House.is_less_equal_cutoff_number) + +print("there are {} below house properties \n".format(len(below_house_properties))) + +below_prop = len(below_house_properties)-_sage_const_1 + +below_conjs = propertyBasedConjecture(objects=train_houses, + properties=below_house_properties, + mainProperty=below_prop, + sufficient=True) + +print("finished house_below property conjectures using TRAIN houses") + +count = _sage_const_0 +for p in below_conjs: + print(count, ".", convert_name_back(p.__name__)) + count += _sage_const_1 + +sys.stdout.flush() + +above_house_properties = house_properties + house_above_properties + house_below_properties +above_house_properties.append(House.is_more_than_cutoff_number) + +print("there are {} above house properties \n".format(len(above_house_properties))) + +above_prop = len(above_house_properties)-_sage_const_1 + +above_conjs = propertyBasedConjecture(objects=train_houses, + properties=above_house_properties, + mainProperty=above_prop, + sufficient=True) + +print("finished house_above property conjectures using TRAIN houses") + +count = _sage_const_0 +for p in above_conjs: + print(count, ".", convert_name_back(p.__name__)) + count += _sage_const_1 + +sys.stdout.flush() + + + + diff --git a/python/conjecturing.py b/python/conjecturing.py new file mode 100644 index 0000000..e12a674 --- /dev/null +++ b/python/conjecturing.py @@ -0,0 +1,1438 @@ +import sys +sys.path.append(".") + +import numpy as np +from sympy import * +from sympy.core.relational import Relational +import types +import re +import warnings +import pandas as pd + + +def create_dummies(my_data, categorical_names, nan_is_level=True): + # Counts the number of unique values for each + # categorical variable and creates a dummy variable for each, + # unless there are two, in which case one dummy variable is + # created. + # + # It also names the target variable TARGET and, for a categorical + # target, creates values TARGET_. If there are two levels + # for target, only one TARGET_ is created + # + # Returns the new data frame, target property names, and property + # names (the lists are empty if the target is an invariant). + # + # The option nan_is_level=True creates a dummy variable for + # missing values. + + property_names = [] + target_property_names = [] + for col in categorical_names: + if col != "TARGET": + if nan_is_level: + unique_vals=list(my_data[col].unique()) # if nan is a level + else: + unique_vals=list(my_data[col].dropna().unique()) # if nan is not a level + if len(unique_vals)==2: # just use one level for binary features + property_names.append(col+"_"+str(unique_vals[1])) + elif len(unique_vals) > 2: #one property for each level. + for level in unique_vals: + property_names.append(col+"_"+str(level)) + + + if "TARGET" in categorical_names: + if nan_is_level: + unique_vals = list(my_data["TARGET"].unique()) # if nan is a level + else: + unique_vals = list(my_data["TARGET"].dropna().unique()) # if nan is not a level + if len(unique_vals)==2: + target_property_names.append("TARGET_"+str(unique_vals[1])) + elif len(unique_vals) > 2: + for level in unique_vals: + target_property_names.append("TARGET_"+str(level)) + + my_df = pd.get_dummies(my_data, + columns=categorical_names, + dtype=np.uint8, + dummy_na=nan_is_level, # False is the default. If False, use dropna() above + drop_first=False) # False is the default + + my_df = my_df.rename(lambda col: col.replace('.0', ''), axis='columns') + return (my_df, property_names, target_property_names) + +def create_example_class(my_df, invariant_names, property_names, categorical_names, + target_property_names): + # Creates the Example class with a method/attribute for each + # invariant and property, including the target (levels). + # + # returns the Example class + + class Example(): + def __init__(self, name, my_df): + self.name = name + self.my_df = my_df + + for i in invariant_names: + inv = build_inv(i) + setattr(Example,inv.__name__,inv ) + + for i in property_names: + prop = build_prop(i) + setattr(Example, prop.__name__,prop) + + if "TARGET" in categorical_names: + for i in target_property_names: + prop = build_prop(i) + setattr(Example, prop.__name__, prop) + else: + target_invariant = invariant_names.index("TARGET") + setattr(Example, "target_invariant", target_invariant) + return Example + +def get_invariants_properties(Example, invariant_names, + property_names, categorical_names, + target_property_names): + # Returns the lists of invariant, property, and target_property + # functions. + + invariants =[] + for i in invariant_names: + invariants.append(Example.__dict__[i]) + properties=[] + for i in property_names: + properties.append(Example.__dict__[i]) + target_properties=[] + if "TARGET" in categorical_names: + for i in target_property_names: + target_properties.append(Example.__dict__[i]) + + return(invariants, properties, target_properties) + +def invariant_conjecturing(Example, train_examples, categorical_names, + target_property_names, invariants, + use_operators, complexity, my_time, + my_skips, inv_file, debug=False, + verbose=False, notebook_path = "./", + output_path="./"): + + inv_conjectures = [] + if "TARGET" in categorical_names: + for value in target_property_names: + print(value) + target_property = Example.__dict__[value] + my_examples = [example for example in train_examples if target_property(example) == True] + for inv in invariants: + print(invariants.index(inv), end=" ") + sys.stdout.flush() + inv_of_interest = invariants.index(inv) + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=True, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path) + #convert_conjecture_names(conjs) + inv_conjectures += conjs + + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=False, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path) + #convert_conjecture_names(conjs) + inv_conjectures += conjs + print("\nnumber of conjectures", len(inv_conjectures)) + if len(target_property_names) == 1: + value = target_property_names[0] + print(value + " False") + target_property = Example.__dict__[value] + my_examples = [example for example in train_examples if target_property(example) == False] + for inv in invariants: + print(invariants.index(inv), end=" ") + sys.stdout.flush() + inv_of_interest = invariants.index(inv) + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=True, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path + ) + #convert_conjecture_names(conjs) + inv_conjectures += conjs + + conjs = conjecture(my_examples, + invariants, + inv_of_interest, + operators=use_operators, + upperBound=False, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path) + #convert_conjecture_names(conjs) + inv_conjectures += conjs + else: # target is an invariant + my_examples = [example for example in train_examples] + target_invariant = Example.target_invariant + conjs = conjecture(my_examples, + invariants, + target_invariant, + operators=use_operators, + upperBound=True, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path) + #convert_conjecture_names(conjs) + inv_conjectures += conjs + conjs = conjecture(my_examples, + invariants, + target_invariant, + operators=use_operators, + upperBound=False, + time=my_time, + complexity_limit=complexity, + debug=debug, + verbose=verbose, + skips=my_skips, + notebook_path=notebook_path) + inv_conjectures += conjs + print("\nnumber of conjectures", len(inv_conjectures)) + + for c in inv_conjectures: + inv_file.write("%s\n" % c.__name__) + inv_file.flush() + + return inv_conjectures + +def property_conjecturing(Example, properties, inv_conjectures, + categorical_names, target_property_names, + train_examples, my_time, my_skips, + prop_file, verbose=False, debug=False, + notebook_path="./"): + + all_properties = ["TARGET"] + properties + inv_conjectures #"TARGET" is just a placeholder + prop_conjs = [] + conditions = {} + if "TARGET" in categorical_names: + for value in target_property_names: + print(value) + all_properties[0] = Example.__dict__[value] + these_prop_conjs = propertyBasedConjecture(objects=train_examples, + properties = all_properties, + mainProperty=0, + time=my_time, + verbose=verbose, + debug=debug, + skips=my_skips, + notebook_path=notebook_path) + conditions[value] = [] + for c in these_prop_conjs: + conditions[value].append(get_premise(c, myprint=False)) + prop_conjs += these_prop_conjs + if len(target_property_names) == 1: + print(value + " Necessary") + all_properties[0] = Example.__dict__[value] + these_prop_conjs = propertyBasedConjecture(objects=train_examples, + properties = all_properties, + mainProperty=0, + sufficient=False, + time=my_time, + verbose=verbose, + debug=debug, + skips=my_skips, + notebook_path=notebook_path) + conditions["necessary"] = [] + for c in these_prop_conjs: + conditions["necessary"].append(get_conclusion(c, myprint=False)) + prop_conjs += these_prop_conjs + + for c in prop_conjs: + prop_file.write("%s\n" % c.__name__) + prop_file.flush() + + return (prop_conjs, conditions) + +def apply_property_conjectures(my_data, my_df, X_train, X_test, + property_names, invariant_names, + categorical_names, + target_property_names, conditions, + train_examples, test_examples): + + # Applies the property conjectures to the training and testing + # data frames and creates new columns with values. + + X_train_df = my_df.loc[X_train,property_names+invariant_names] # drop target and one level for each binary variable + X_test_df = my_df.loc[X_test,property_names+invariant_names] + y_train_df = my_data.loc[X_train,"TARGET"] # get original target, even if it is multiple levels + y_test_df = my_data.loc[X_test, "TARGET"] + if "TARGET" in categorical_names: + index = 0 + for value in target_property_names: + for condition in conditions[value]: + index += 1 + X_train_df['conj_' + str(index)] = [condition(example) for example in train_examples] + X_test_df['conj_' + str(index)] = [condition(example) for example in test_examples] + if len(target_property_names) == 1: + for condition in conditions["necessary"]: + index += 1 + X_train_df['conj_' + str(index)] = [condition(example) for example in train_examples] + X_test_df['conj_' + str(index)] = [condition(example) for example in test_examples] + + for value in target_property_names: + this_value = value.replace("TARGET_", "") + return (X_train_df, X_test_df, y_train_df, y_test_df) + +def evaluate_property_conjectures(categorical_names, + target_property_names, Example, + conditions, test_examples, + y_test_df): + support = [] + lift = [] + precision = [] + recall = [] + f1 = [] + classes = [] + if "TARGET" in categorical_names: + for value in target_property_names: + this_value = value.replace("TARGET_", "") + my_function = getattr(Example, value) + for i, condition in enumerate(conditions[value]): + classes.append(value) + num_true = 0 + num_in_class = 0 + num_hit = 0 + for example in test_examples: + if condition(example) == True: + num_true += 1 + if my_function(example) == True: + num_hit += 1 + if my_function(example) == True: + num_in_class += 1 + support.append(num_true) + if num_hit > 0: + precision.append(num_hit/num_true) + lift.append((num_hit/num_true)/(num_in_class/len(test_examples))) + recall.append(num_hit/sum(y_test_df.astype('str') == this_value)) + my_precision = num_hit/num_true + my_recall = num_hit/sum(y_test_df.astype('str') == this_value) + f1.append((2*my_precision*my_recall)/(my_precision + my_recall)) + else: + precision.append(0.0) + lift.append(0.0) + recall.append(0.0) + f1.append(0.0) + if len(target_property_names) == 1: + for i, condition in enumerate(conditions["necessary"]): + classes.append("necessary") + num_false = 0 + num_in_class = 0 + num_hit = 0 + for example in test_examples: + if condition(example) == False: + num_false += 1 + if my_function(example) == False: + num_hit += 1 + if my_function(example) == False: + num_in_class += 1 + support.append(num_false) + if num_hit > 0: + precision.append(num_hit/num_false) + lift.append((num_hit/num_false)/(num_in_class/len(test_examples))) + recall.append(num_hit/(len(test_examples) - sum(y_test_df.astype('str') != this_value))) + my_precision = num_hit/num_false + my_recall = num_hit/sum(y_test_df.astype('str') != this_value) + f1.append((2*my_precision*my_recall)/(my_precision + my_recall)) + else: + precision.append(0.0) + lift.append(0.0) + recall.append(0.0) + f1.append(0.0) + + results_df = pd.DataFrame({ + 'class': classes, + 'support':support, + 'precision':precision, + 'recall': recall, + 'lift':lift, + 'f1': f1}) + return results_df + +def evaluate_invariant_conjectures(Example, inv_conjectures, + test_examples): + errors = [] + expressions = [] + for c in inv_conjectures: + expressions.append(c.expression) + try: + error = np.mean([abs(example.TARGET() - c.evaluate(example, returnBoundValue=True)) for example in test_examples]) + errors.append(error) + except: + errors.append(pd.NA) + results_df = pd.DataFrame({ + 'expression': expressions, + 'MAE': errors}) + return results_df + +# Creates invariant functions. +# pass the index (row name) and the data frame +# requires that the init function for the example class looks like: +# def __init__(self, name, my_df): + # self.name = name + # self.my_df = my_df +def build_inv(i): + def inv(self): + return self.my_df.loc[self.name][i] + inv.__name__ = i + return inv + + +#this function creates property functions +def build_prop(i): + def prop(self): + if float(self.my_df.loc[self.name][i]) == 1.0: + return True + return False + prop.__name__ = i + return prop + + + +def convert_name(name): + for i in range(26): + name = name.replace('({})'.format(chr(ord('a') + i)), '') + name = name.replace(' ', '_') + textform_first = { + '^2': '_squared', + '^3': '_cubed', + '1/': 'inverse_of_', + '<=': '_leq_', + '>=': '_geq_' + } + textform = { + '<': '_lt_', + '>': '_gt_', + '+': '_plus_', + '-': '_minus_', + '*': '_times_', + '/': '_divided_by_', + '^': '_to_the_power_', + '(': 'open_bracket_', + ')': '_close_bracket', + ',': '_or_', # added by Paul + '\'': '', # added by Paul + '=': '_equal_' # added by Paul + } + for op in textform_first: + name = name.replace(op, textform_first[op]) + for op in textform: + name = name.replace(op, textform[op]) + return name + +def convert_name_back(name): + for i in range(26): + name = name.replace('({})'.format(chr(ord('a') + i)), '') + # name = name.replace('_', ' ') + textform_first = { + '_squared': '^2', + '_cubed': '^3', + 'inverse_of_': '1/', + '_leq_': '<=', + '_geq_': '>=' + } + textform = { + '_lt_': '<', + '_gt_': '>', + '_plus_': '+', + '_minus_': '-', + '_times_': '*', + '_divided_by_': '/', + '_to_the_power_': '^', + 'open_bracket_': '(', + '_close_bracket': ')', + '_or_': ',', # added by Paul + '_equal_': '=' # added by Paul + } + for op in textform_first: + name = name.replace(op, textform_first[op]) + for op in textform: + name = name.replace(op, textform[op]) + return name + +def convert_conjecture_names(conjectures): + for conj in conjectures: + conj.__name__ = convert_name(conj.__name__) + +def convert_names_back(conjectures): #note the plural name(s) + for conj in conjectures: + conj.__name__ = convert_name_back(conj.__name__) + +#class Conjecture(SageObject): #Based on GraphExpression from IndependenceNumberProject +class Conjecture(): #Based on GraphExpression from IndependenceNumberProject + + def __init__(self, stack, expression, pickling, sym_list, my_lambda, my_lambda_rhs): + # not using stack or pickling. + # expression has the expression in text + # sym_list is the number of invariants + """Constructs a new Conjecture from the given stack of functions.""" + self.stack = stack + self.expression = expression + self.pickling = pickling + #self.__name__ = ''.join(c for c in repr(self.expression) if c != ' ') + self.__name__ = expression + self.sym_list = sym_list + self.my_lambda = my_lambda + self.my_lambda_rhs = my_lambda_rhs + super(Conjecture, self).__init__() + + def __eq__(self, other): + return self.stack == other.stack and self.expression == other.expression + + def __reduce__(self): + return (_makeConjecture, self.pickling) + + def _repr_(self): + return repr(self.expression) + + def _latex_(self): + return latex(self.expression) + + def __call__(self, g, returnBoundValue=False): + return self.evaluate(g, returnBoundValue) + + def evaluate(self, g, returnBoundValue=False): + try: + expr_values = tuple(getattr(g, i)() for i in self.sym_list) + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + if returnBoundValue: + my_value = self.my_lambda_rhs(*expr_values) + if w: + return float("NaN") + return my_value + my_value = self.my_lambda(*expr_values) + if w: + return float("NaN") + return my_value + except: + return float("NaN") + return float("NaN") + + ## a slow way of doing it, using sympy + ## list of invariants in the conjecture + #sym_vars = symbols((" ").join(self.sym_list)) + ## make the conjecture an expression + #sym_expr = sympify(self.expression) + # get the example values to substitute + #expr_values = [(i, getattr(g, i)()) for i in self.sym_list] + #expr_values = {i: getattr(g, i)() for i in self.sym_list} + ## sub the values + #try: + # sol_expr = sym_expr.subs(expr_values) + # if returnBoundValue: # only get the RHS of the bound + # my_rhs = sym_expr.rhs + # # numerically evaluate the RHS with the values + # return my_rhs.subs(expr_values).evalf() + # # return whether it is satisfied (True) or not + # return sol_expr + #except: + # return "undefined" + def simplify_conjecture(self): + try: + my_lhs = sympify(self.expression).lhs + simp_expr = simplify(self.expression) + simp_rel = str(reduce_inequalities(simp_expr, my_lhs)) + and_index = simp_rel.find("&") + simp_rel = simp_rel[(and_index+1):] + simp_rel = simp_rel.strip() + simp_rel = simp_rel.strip("(") + simp_rel = simp_rel.strip(")") + return simp_rel + except: + return self.__name__ + return self.__name__ + +def wrapUnboundMethod(op, invariantsDict): + return lambda obj: getattr(obj, invariantsDict[op].__name__)() + +def wrapBoundMethod(op, invariantsDict): + return lambda obj: invariantsDict[op](obj) + +def _makeConjecture(inputList, variable, invariantsDict): + import operator + + pre_specials = ['-()', '1/', '10**'] + post_specials = ['-1', '+1', '*2', '/2', '**2'] + two_specials = ["max", "min"] + + + # only the keys of the dictionaries are used now + unaryOperators = ['sqrt', 'ln', 'exp', 'ceil', 'floor', + 'abs', 'sin','cos', 'tan', 'asin', + 'acos', 'atan', 'sinh', 'cosh', + 'tanh', 'asinh', 'acosh', 'atanh', 'log10'] + binaryOperators = ['+', '*', '-', '/', '^'] + comparators = ['<', '<=', '>', '>='] + expressionStack = [] + operatorStack = [] + + sym_list = [] + for op in inputList: + if op != "^": + op = op.replace("^", "**") + #op = op.replace("-()", "-") + if op in invariantsDict: + expressionStack.append(op) + sym_list.append(op) + elif op in pre_specials: + if op == '-()': + op = "-" + expressionStack.append("(" + op + "(" + expressionStack.pop() + "))") + elif op in post_specials: + expressionStack.append("((" + expressionStack.pop() + ")" + op + ")") + elif op in two_specials: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append(op+"("+left + "," + right + ")") + elif op in unaryOperators: + new_exp = expressionStack.pop() + if op == 'log10': + new_exp = 'log(' + new_exp + ', 10)' + elif op == 'ceil': + new_exp = 'ceiling(' + new_exp + ')' + elif op == 'abs': + new_exp = 'Abs(' + new_exp + ')' + elif op == 'min': + new_exp = 'Min(' + new_exp + ')' + elif op == 'max': + new_exp = 'Max(' + new_exp + ')' + else: + new_exp = op + '('+new_exp+')' + expressionStack.append(new_exp) + elif op in binaryOperators: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append("("+ left + op + right + ")") + elif op in comparators: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append(left + op + right) + else: + raise ValueError("Error while reading output from expressions. Unknown element: {}".format(op)) + + sym_vars = symbols((" ").join(sym_list)) + my_expression = expressionStack.pop() + try: + sym_expr = sympify(my_expression) + my_lambda = lambdify(sym_vars, sym_expr) + my_rhs = sym_expr.rhs + my_lambda_rhs = lambdify(sym_vars, my_rhs) + except: + return None + + return Conjecture(operatorStack, my_expression, (inputList, variable, invariantsDict), sym_list, my_lambda, my_lambda_rhs) + +def allOperators(): + """ + Returns a set containing all the operators that can be used with the + invariant-based conjecture method. This method can be used to quickly + get a set from which to remove some operators or to just get an idea + of how to write some operators. + + There are at the moment 34 operators available, including, e.g., addition:: + + >>> len(allOperators()) + 34 + >>> '+' in allOperators() + True + """ + return [ '-1', '+1', '*2', '/2', '^2', '-()', '1/', 'sqrt', 'ln', 'log10', + 'exp', '10^', 'ceil', 'floor', 'abs', 'sin', 'cos', 'tan', 'asin', + 'acos', 'atan', 'sinh', 'cosh', 'tanh', 'asinh', 'acosh', 'atanh', + '+', '*', 'max', 'min', '-', '/', '^'] + +def conjecture(objects, invariants, mainInvariant, variableName='x', time=5, + debug=False, verbose=False, upperBound=True, operators=None, + theory=None, precomputed=None, skips=0.0, complexity_limit=11, + notebook_path='./'): + """ + Runs the conjecturing program for invariants with the provided objects, + invariants and main invariant. This method requires the program ``expressions`` + to be in the current working directory of Sage. + + INPUT: + + - ``objects`` - a list of objects about which conjectures should be made. + - ``invariants`` - a list of functions (callable objects) which take a + single argument and return a numerical real value. Each function should + be able to produce a value for each of the elements of objects. + - ``mainInvariant`` - an integer that is the index of one of the elements + of invariants. All conjectures will then be a bound for the invariant that + corresponds to this index. + - ``upperBound`` - if given, this boolean value specifies whether upper or + lower bounds for the main invariant should be generated. If ``True``, + then upper bounds are generated. If ``False``, then lower bounds are + generated. The default value is ``True`` + - ``time`` - if given, this integer specifies the number of seconds before + the conjecturing program times out and returns the best conjectures it + has at that point. The default value is 5. + - ``theory`` - if given, specifies a list of known bounds. If this is + ``None``, then no known bounds are used. Otherwise each conjecture will + have to be more significant than the bounds in this list. This implies + that if each object obtains equality for any of the bounds in this list, + then no conjectures will be made. The default value is ``None``. + - ``precomputed`` - if given, specifies a way to obtain precomputed invariant + values for (some of) the objects. If this is ``None``, then no precomputed + values are used. If this is a tuple, then it has to have length 3. The + first element is then a dictionary, the second element is a function that + returns a key for an object, and the third element is a function that + returns a key for an invariant. When an invariant value for an object + needs to be computed it will first be checked whether the key of the + object is in the dictionary. If it is, then it should be associated with + a dictionary and it will be checked whether the key of the invariant is + in that dictionary. If it is, then the associated value will be taken as + the invariant value, otherwise the invariant value will be computed. If + ``precomputed`` is not a tuple, it is assumed to be a dictionary, and the + same procedure as above is used, but the identity is used for both key + functions. + - ``operators`` - if given, specifies a set of operators that can be used. + If this is ``None``, then all known operators are used. Otherwise only + the specified operators are used. It is advised to use the method + ``allOperators()`` to get a set containing all operators and then + removing the operators which are not needed. The default value is + ``None``. + - ``variableName`` - if given, this name will be used to denote the objects + in the produced conjectures. The default value is ``'x'``. This option + only has a cosmetical purpose. + - ``debug`` - if given, this boolean value specifies whether the output of + the program ``expressions`` to ``stderr`` is printed. The default value + is ``False``. + - ``verbose`` - if given, this boolean value specifies whether the program + ``expressions`` is ran in verbose mode. Note that this has nu purpose if + ``debug`` is not also set to ``True``. The default value is ``False``. + + EXAMPLES:: + + A very simple example defines just two functions that take an integer and + return an integer, and then generates conjectures for these invariant Using + the single integer 1. As we are specifying the index of the main invariant + to be 0, all conjectures will be upper bounds for ``a``:: + + >>> def a(n): return n + >>> def b(n): return n + 1 + >>> conjecture([1], [a,b], 0) + [a(x) <= b(x) - 1] + + We can also generate lower bound conjectures:: + + >>> conjecture([1], [a,b], 0, upperBound=False) + [a(x) >= b(x) - 1] + + In order to get more nicely printed conjectures, we can change the default + variable name which is used in the conjectures:: + + >>> conjecture([1], [a,b], 0, variableName='n') + [a(n) <= b(n) - 1] + + Conjectures can be made for any kind of object:: + + >>> def max_degree(g): return max(g.degree()) + >>> objects = [graphs.CompleteGraph(i) for i in range(3,6)] + >>> invariants = [Graph.size, Graph.order, max_degree] + >>> mainInvariant = invariants.index(Graph.size) + >>> conjecture(objects, invariants, mainInvariant, variableName='G') + [size(G) <= 2*order(G), + size(G) <= max_degree(G)^2 - 1, + size(G) <= 1/2*max_degree(G)*order(G)] + + In some cases there might be invariants that are slow to calculate for some + objects. For these cases, the method ``conjecture`` provides a way to specify + precomputed values for some objects:: + + >>> o_key = lambda g: g.canonical_label().graph6_string() + >>> i_key = lambda f: f.__name__ + >>> objects = [graphs.CompleteGraph(3), graphs.SchlaefliGraph()] + >>> invariants = [Graph.chromatic_number, Graph.order] + >>> main_invariant = invariants.index(Graph.chromatic_number) + >>> precomputed = {o_key(graphs.SchlaefliGraph()) : {i_key(Graph.chromatic_number) : 9}} + >>> conjecture(objects, invariants, main_invariant, precomputed=(precomputed, o_key, i_key)) + [chromatic_number(x) <= order(x), chromatic_number(x) <= 10^tanh(order(x)) - 1] + + In some cases strange conjectures might be produced or one conjecture you + might be expecting does not show up. In this case you can use the ``debug`` + and ``verbose`` option to find out what is going on behind the scene. By + enabling ``debug`` the program prints the reason it stopped generating + conjectures (time limit, no better conjectures possible, ...) and gives some + statistics about the number of conjectures it looked at:: + + >>> conjecture([1], [a,b], 0, debug=True) + > Generation process was stopped by the conjecturing heuristic. + > Found 2 unlabeled trees. + > Found 2 labeled trees. + > Found 2 valid expressions. + [a(x) <= b(x) - 1] + + By also enabling ``verbose``, you can discover which values are actually + given to the program:: + + >>> conjecture([1], [a,b], 0, debug=True, verbose=True) + > Invariant 1 Invariant 2 + > 1) 1.000000 2.000000 + > Generating trees with 0 unary nodes and 0 binary nodes. + > Saving expression + > a <= b + > Status: 1 unlabeled tree, 1 labeled tree, 1 expression + > Generating trees with 1 unary node and 0 binary nodes. + > Conjecture is more significant for object 1. + > 2.000000 vs. 1.000000 + > Saving expression + > a <= (b) - 1 + > Status: 2 unlabeled trees, 2 labeled trees, 2 expressions + > Generation process was stopped by the conjecturing heuristic. + > Found 2 unlabeled trees. + > Found 2 labeled trees. + > Found 2 valid expressions. + [a(x) <= b(x) - 1] + + """ + + if len(invariants)<2 or len(objects)==0: return + if not theory: theory=None + if not precomputed: + precomputed = None + elif type(precomputed) == tuple: + assert len(precomputed) == 3, 'The length of the precomputed tuple should be 3.' + precomputed, object_key, invariant_key = precomputed + else: + object_key = lambda x: x + invariant_key = lambda x: x + + assert 0 <= mainInvariant < len(invariants), 'Illegal value for mainInvariant' + + operatorDict = { '-1' : 'U 0', '+1' : 'U 1', '*2' : 'U 2', '/2' : 'U 3', + '^2' : 'U 4', '-()' : 'U 5', '1/' : 'U 6', + 'sqrt' : 'U 7', 'ln' : 'U 8', 'log10' : 'U 9', + 'exp' : 'U 10', '10^' : 'U 11', 'ceil' : 'U 12', + 'floor' : 'U 13', 'abs' : 'U 14', 'sin' : 'U 15', + 'cos' : 'U 16', 'tan' : 'U 17', 'asin' : 'U 18', + 'acos' : 'U 19', 'atan' : 'U 20', 'sinh': 'U 21', + 'cosh' : 'U 22', 'tanh' : 'U 23', 'asinh': 'U 24', + 'acosh' : 'U 25', 'atanh' : 'U 26', + '+' : 'C 0', '*' : 'C 1', 'max' : 'C 2', 'min' : 'C 3', + '-' : 'N 0', '/' : 'N 1', '^' : 'N 2'} + + # prepare the invariants to be used in conjecturing + invariantsDict = {} + names = [] + + for pos, invariant in enumerate(invariants): + if type(invariant) == tuple: + name, invariant = invariant + elif hasattr(invariant, '__name__'): + if invariant.__name__ in invariantsDict: + name = '{}_{}'.format(invariant.__name__, pos) + else: + name = invariant.__name__ + else: + name = 'invariant_{}'.format(pos) + invariantsDict[name] = invariant + names.append(name) + + # call the conjecturing program + command = notebook_path + 'expressions -c{}{} --dalmatian {} --time {} --invariant-names --output stack {} --allowed-skips {} --maximum-complexity --complexity-limit {}' + command = command.format('v' if verbose and debug else '', 't' if theory is not None else '', + '--all-operators ' if operators is None else '', + time, + '--leq' if upperBound else '--geq', + skips, + complexity_limit) + + if verbose: + print('Using the following command') + print(command) + + import subprocess + sp = subprocess.Popen(command, shell=True, + stdin=subprocess.PIPE, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, close_fds=True, + encoding='utf-8') + stdin = sp.stdin + + if operators is not None: + stdin.write('{}\n'.format(len(operators))) + for op in operators: + stdin.write('{}\n'.format(operatorDict[op])) + + stdin.write('{} {} {}\n'.format(len(objects), len(invariants), mainInvariant + 1)) + + for invariant in names: + stdin.write('{}\n'.format(invariant)) + + def get_value(invariant, o): + precomputed_value = None + if precomputed: + o_key = object_key(o) + i_key = invariant_key(invariant) + if o_key in precomputed: + if i_key in precomputed[o_key]: + precomputed_value = precomputed[o_key][i_key] + if precomputed_value is None: + return invariant(o) + else: + return precomputed_value + + if theory is not None: + if verbose: + print("Started writing theory to expressions") + for o in objects: + if upperBound: + try: + stdin.write('{}\n'.format(min(float(get_value(t, o)) for t in theory))) + except: + stdin.write('NaN\n') + else: + try: + stdin.write('{}\n'.format(max(float(get_value(t, o)) for t in theory))) + except: + stdin.write('NaN\n') + if verbose: + print("Finished writing theory to expressions") + + if verbose: + print("Started computing and writing invariant values to expressions") + + def format_value(invariant,o): + try: + return format(float(get_value(invariantsDict[invariant], o))) + except: + return 'NaN' + + values = [format_value(invariant, o) for o in objects for invariant in names] + + stdin.write('\n'.join(values)+'\n') + stdin.flush() + + if verbose: + print("Finished computing and writing invariant values to expressions") + + if debug: + for l in sp.stderr: + print('> ' + l.rstrip()) + + # process the output + out = sp.stdout + + variable = variableName + + conjectures = [] + inputList = [] + + for l in out: + op = l.strip() + if op: + inputList.append(op) + else: + this_conjecture = _makeConjecture(inputList, variable, invariantsDict) + if this_conjecture is not None: + conjectures.append(this_conjecture) + inputList = [] + + if verbose: + print("Finished conjecturing") + + return conjectures + +class PropertyBasedConjecture(): + + def __init__(self, expression, propertyCalculators, pickling): + """Constructs a new Conjecture from the given stack of functions.""" + self.expression = expression + self.propertyCalculators = propertyCalculators + self.pickling = pickling + self.inputList = pickling[0] + self.propertiesDict = pickling[1] + self.__name__ = repr(self.expression) + super(PropertyBasedConjecture, self).__init__() + + def __eq__(self, other): + return self.expression == other.expression + + def __reduce__(self): + return (_makePropertyBasedConjecture, self.pickling) + + def _repr_(self): + return repr(self.expression) + + def _latex_(self): + return latex(self.expression) + + def __call__(self, g): + return self.evaluate(g) + + def evaluate(self, g): + binaryOperators = {'&', '|', '^', '->'} + + expressionStack = [] + for op in self.inputList: + if op in self.propertiesDict: + prop = ''.join([l for l in op if l.strip()]) + expressionStack.append("true" if self.propertyCalculators[prop](g) else "false") + elif op == '<-': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({})>>({})'.format(right, left)) + elif op == '->': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({})>>({})'.format(left, right)) + elif op == '~': + expressionStack.append('~({})'.format(expressionStack.pop())) + elif op == '^': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('Xor({},{})'.format(left, right)) + elif op in binaryOperators: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({}){}({})'.format(left, op, right)) + else: + raise ValueError("Error while reading output from expressions. Unknown element: {}".format(op)) + + my_expression = expressionStack.pop() + sym_expr = sympify(my_expression, locals={"Xor": Xor}) + my_value = sym_expr.simplify() + return my_value + +class PropertyBasedExpression(): + + def __init__(self, expression, propertyCalculators, pickling): + """Constructs a new property based expression.""" + self.expression = expression + self.propertyCalculators = propertyCalculators + self.inputList = pickling[0] + self.propertiesDict = pickling[1] + self.__name__ = repr(self.expression) + super(PropertyBasedExpression, self).__init__() + + def __eq__(self, other): + return self.expression == other.expression + + def _repr_(self): + return repr(self.expression) + + def _latex_(self): + return latex(self.expression) + + def __call__(self, g): + return self.evaluate(g) + + def evaluate(self, g): + binaryOperators = {'&', '|', '^', '->'} + + expressionStack = [] + for op in self.inputList: + if op in self.propertiesDict: + prop = ''.join([l for l in op if l.strip()]) + expressionStack.append("true" if self.propertyCalculators[prop](g) else "false") + elif op == '<-': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({})>>({})'.format(right, left)) + elif op == '->': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({})>>({})'.format(left, right)) + elif op == '~': + expressionStack.append('~({})'.format(expressionStack.pop())) + elif op == '^': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('Xor({},{})'.format(left, right)) + elif op in binaryOperators: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({}){}({})'.format(left, op, right)) + + else: + raise ValueError("Error while reading output from expressions. Unknown element: {}".format(op)) + + my_expression = expressionStack.pop() + sym_expr = sympify(my_expression, locals={"Xor": Xor}) + my_value = sym_expr.simplify() + return my_value + +def get_premise(conjecture, myprint=True): + assert "->" in conjecture.expression, 'Not an implication' + + inputList = list(conjecture.inputList) + inputList = inputList[1:-1] + conjecture.expression = conjecture.expression.replace("->", ">>") + n_pattern = r"^\((TARGET.*?)\)>>" + n_match = re.search(n_pattern, conjecture.expression) + if n_match: + my_premise = n_match.group(1) + my_calc = {n_match.group(1): conjecture.propertyCalculators[n_match.group(1)]} + else: + s_pattern = r">>\((TARGET.*?)\)$" + s_match = re.search(s_pattern, conjecture.expression) + my_premise = conjecture.expression[:s_match.start()] + my_calc = {k: v for k, v in conjecture.propertyCalculators.items() if k != s_match.group(1)} + if myprint: + print(my_premise) + + return PropertyBasedExpression(my_premise, my_calc, (inputList, conjecture.propertiesDict)) + + +def get_conclusion(conjecture, myprint=True): + assert "->" in conjecture.expression, 'Not an implication' + + inputList = list(conjecture.inputList) + inputList = inputList[1:-1] + conjecture.expression = conjecture.expression.replace("->", ">>") + n_pattern = r"^\((TARGET.*?)\)>>" + n_match = re.search(n_pattern, conjecture.expression) + if n_match: + my_conclusion = conjecture.expression[n_match.end():] + my_calc = {k: v for k, v in conjecture.propertyCalculators.items() if k != n_match.group(1)} + else: + s_pattern = r">>\((TARGET.*?)\)$" + s_match = re.search(s_pattern, conjecture.expression) + my_conclusion = s_match.group(1) + my_calc = {s_match.group(1): conjecture.propertyCalculators[s_match.group(1)]} + if myprint: + print(my_conclusion) + + return PropertyBasedExpression(my_conclusion, my_calc, (inputList, conjecture.propertiesDict)) + +def conjecturing_recover_formula(prefix_tree): + #import sage.logic.logicparser as logicparser + formula = '' + if not isinstance(prefix_tree, list): + raise TypeError("the input must be a parse tree as a list") + + formula = conjecturing_apply_func(prefix_tree, logicparser.recover_formula_internal) + if prefix_tree[0] == '~' or len(prefix_tree) == 1: + return formula + return formula[1:-1] + +def conjecturing_apply_func(tree, func): + # used when full syntax parse tree is passed as argument + if len(tree) == 1: + return func(tree) + # used when full syntax parse tree is passed as argument + elif len(tree) == 2: + rval = conjecturing_apply_func(tree[1], func) + return func([tree[0], rval]) + elif isinstance(tree[1], list) and isinstance(tree[2], list): + lval = conjecturing_apply_func(tree[1], func) + rval = conjecturing_apply_func(tree[2], func) + elif isinstance(tree[1], list): + lval = conjecturing_apply_func(tree[1], func) + rval = tree[2] + elif isinstance(tree[2], list): + lval = tree[1] + rval = conjecturing_apply_func(tree[2], func) + else: + return func(tree) + return func([tree[0], lval, rval]) + +def _makePropertyBasedConjecture(inputList, propertiesDict): + import operator + + binaryOperators = {'&', '|', '^', '->'} + + expressionStack = [] + propertyCalculators = {} + + for op in inputList: + if op in propertiesDict: + import types + if type(propertiesDict[op]) in (types.BuiltinMethodType, types.MethodType): + f = wrapUnboundMethod(op, propertiesDict) + else: + f = wrapBoundMethod(op, propertiesDict) + prop = ''.join([l for l in op if l.strip()]) + expressionStack.append(prop) + propertyCalculators[prop] = f + elif op == '<-': + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({})->({})'.format(right, left)) + elif op == '~': + expressionStack.append('~({})'.format(expressionStack.pop())) + elif op in binaryOperators: + right = expressionStack.pop() + left = expressionStack.pop() + expressionStack.append('({}){}({})'.format(left, op, right)) + else: + raise ValueError("Error while reading output from expressions. Unknown element: {}".format(op)) + + my_expression = expressionStack.pop() + + return PropertyBasedConjecture(my_expression, propertyCalculators, (inputList, propertiesDict)) + +def allPropertyBasedOperators(): + """ + Returns a set containing all the operators that can be used with the + property-based conjecture method. This method can be used to quickly + get a set from which to remove some operators or to just get an idea + of how to write some operators. + + There are at the moment 5 operators available, including, e.g., AND:: + + >>> len(allPropertyBasedOperators()) + 5 + >>> '&' in allPropertyBasedOperators() + True + """ + return { '~', '&', '|', '^', '->'} + +def propertyBasedConjecture(objects, properties, mainProperty, time=5, debug=False, + verbose=False, sufficient=True, operators=None, + theory=None, precomputed=None, skips=0.0, notebook_path='./'): + """ + Runs the conjecturing program for properties with the provided objects, + properties and main property. This method requires the program ``expressions`` + to be in the current working directory of Sage. + + INPUT: + + - ``objects`` - a list of objects about which conjectures should be made. + - ``properties`` - a list of functions (callable objects) which take a + single argument and return a boolean value. Each function should + be able to produce a value for each of the elements of objects. + - ``mainProperty`` - an integer that is the index of one of the elements + of properties. All conjectures will then be a bound for the property that + corresponds to this index. + - ``sufficient`` - if given, this boolean value specifies whether sufficient + or necessary conditions for the main property should be generated. If + ``True``, then sufficient conditions are generated. If ``False``, then + necessary conditions are generated. The default value is ``True`` + - ``time`` - if given, this integer specifies the number of seconds before + the conjecturing program times out and returns the best conjectures it + has at that point. The default value is 5. + - ``theory`` - if given, specifies a list of known bounds. If this is + ``None``, then no known bounds are used. Otherwise each conjecture will + have to be more significant than the conditions in this list. The default + value is ``None``. + - ``operators`` - if given, specifies a set of operators that can be used. + If this is ``None``, then all known operators are used. Otherwise only + the specified operators are used. It is advised to use the method + ``allPropertyBasedOperators()`` to get a set containing all operators and + then removing the operators which are not needed. The default value is + ``None``. + - ``debug`` - if given, this boolean value specifies whether the output of + the program ``expressions`` to ``stderr`` is printed. The default value + is ``False``. + - ``verbose`` - if given, this boolean value specifies whether the program + ``expressions`` is ran in verbose mode. Note that this has nu purpose if + ``debug`` is not also set to ``True``. The default value is ``False``. + + EXAMPLES:: + + A very simple example uses just two properties of integers and generates + sufficient conditions for an integer to be prime based on the integer 3:: + + >>> propertyBasedConjecture([3], [is_prime,is_even], 0) + [(~(is_even))->(is_prime)] + + We can also generate necessary condition conjectures:: + + >>> propertyBasedConjecture([3], [is_prime,is_even], 0, sufficient=False) + [(is_prime)->(~(is_even))] + + In some cases strange conjectures might be produced or one conjecture you + might be expecting does not show up. In this case you can use the ``debug`` + and ``verbose`` option to find out what is going on behind the scene. By + enabling ``debug`` the program prints the reason it stopped generating + conjectures (time limit, no better conjectures possible, ...) and gives some + statistics about the number of conjectures it looked at:: + + >>> propertyBasedConjecture([3], [is_prime,is_even], 0, debug=True) + > Generation process was stopped by the conjecturing heuristic. + > Found 2 unlabeled trees. + > Found 2 labeled trees. + > Found 2 valid expressions. + [(~(is_even))->(is_prime)] + + By also enabling ``verbose``, you can discover which values are actually + given to the program:: + + >>> propertyBasedConjecture([3], [is_prime,is_even], 0, debug=True, verbose=True) + Using the following command + ./expressions -pcv --dalmatian --all-operators --time 5 --invariant-names --output stack --sufficient --allowed-skips 0 + > Invariant 1 Invariant 2 + > 1) TRUE FALSE + > Generating trees with 0 unary nodes and 0 binary nodes. + > Saving expression + > is_prime <- is_even + > Status: 1 unlabeled tree, 1 labeled tree, 1 expression + > Generating trees with 1 unary node and 0 binary nodes. + > Conjecture is more significant for object 1. + > Saving expression + > is_prime <- ~(is_even) + > Conjecture 2 is more significant for object 1. + > Status: 2 unlabeled trees, 2 labeled trees, 2 expressions + > Generation process was stopped by the conjecturing heuristic. + > Found 2 unlabeled trees. + > Found 2 labeled trees. + > Found 2 valid expressions. + [(~(is_even))->(is_prime)] + """ + + if len(properties)<2 or len(objects)==0: return + if not theory: theory=None + if not precomputed: + precomputed = None + elif type(precomputed) == tuple: + assert len(precomputed) == 3, 'The length of the precomputed tuple should be 3.' + precomputed, object_key, invariant_key = precomputed + else: + object_key = lambda x: x + invariant_key = lambda x: x + + assert 0 <= mainProperty < len(properties), 'Illegal value for mainProperty' + + operatorDict = { '~' : 'U 0', '&' : 'C 0', '|' : 'C 1', '^' : 'C 2', '->' : 'N 0'} + + # prepare the invariants to be used in conjecturing + propertiesDict = {} + names = [] + + for pos, property in enumerate(properties): + if type(property) == tuple: + name, property = property + elif hasattr(property, '__name__'): + if property.__name__ in propertiesDict: + name = '{}_{}'.format(property.__name__, pos) + else: + name = property.__name__ + else: + name = 'property_{}'.format(pos) + propertiesDict[name] = property + names.append(name) + + # call the conjecturing program + command = notebook_path + 'expressions -pc{}{} --dalmatian {} --time {} --invariant-names --output stack {} --allowed-skips ' + str(skips) + command = command.format('v' if verbose and debug else '', 't' if theory is not None else '', + '--all-operators ' if operators is None else '', + time, '--sufficient' if sufficient else '--necessary') + + if verbose: + print('Using the following command') + print(command) + + import subprocess + sp = subprocess.Popen(command, shell=True, + stdin=subprocess.PIPE, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, close_fds=True, + encoding='utf-8') + stdin = sp.stdin + + if operators is not None: + stdin.write('{}\n'.format(len(operators))) + for op in operators: + stdin.write('{}\n'.format(operatorDict[op])) + + stdin.write('{} {} {}\n'.format(len(objects), len(properties), mainProperty + 1)) + + for property in names: + stdin.write('{}\n'.format(property)) + + def get_value(prop, o): + precomputed_value = None + if precomputed: + o_key = object_key(o) + p_key = invariant_key(prop) + if o_key in precomputed: + if p_key in precomputed[o_key]: + precomputed_value = precomputed[o_key][p_key] + if precomputed_value is None: + with warnings.catch_warnings(record=True) as w: + warnings.simplefilter("always") + my_value = prop(o) + if w: + return float("NaN") + return my_value + else: + return precomputed_value + + if theory is not None: + if verbose: + print("Started writing theory to expressions") + for o in objects: + if sufficient: + try: + stdin.write('{}\n'.format(max((1 if bool(get_value(t, o)) else 0) for t in theory))) + except: + stdin.write('-1\n') + else: + try: + stdin.write('{}\n'.format(min((1 if bool(get_value(t, o)) else 0) for t in theory))) + except: + stdin.write('-1\n') + if verbose: + print("Finished writing theory to expressions") + + if verbose: + print("Started computing and writing property values to expressions") + + def format_value(property,o): + try: + return '1' if bool(get_value(propertiesDict[property], o)) else '0' + except: + return '-1' + + values = [format_value(property, o) for o in objects for property in names] + stdin.write('\n'.join(values)+'\n') + stdin.flush() + + if verbose: + print("Finished computing and writing property values to expressions") + + if debug: + for l in sp.stderr: + print('> ' + l.rstrip()) + + # process the output + out = sp.stdout + + conjectures = [] + inputList = [] + + for l in out: + op = l.strip() + if op: + inputList.append(op) + else: + conjectures.append(_makePropertyBasedConjecture(inputList, propertiesDict)) + inputList = [] + + if verbose: + print("Finished conjecturing") + + return conjectures + + diff --git a/python/gravity_example/gravityTrainData.csv b/python/gravity_example/gravityTrainData.csv new file mode 100644 index 0000000..aa0ff2a --- /dev/null +++ b/python/gravity_example/gravityTrainData.csv @@ -0,0 +1,1000 @@ +0.205000132380881,41860.0000000000,91618.0000000000,32683.0000000000 +0.0155321278193822,45533.0000000000,24907.0000000000,64568.0000000000 +0.0286159316199394,72776.0000000000,52309.0000000000,87154.0000000000 +0.159188666584306,79952.0000000000,35088.0000000000,31721.0000000000 +0.115066047839071,55847.0000000000,70622.0000000000,44239.0000000000 +0.178080161905454,29633.0000000000,84747.0000000000,28376.0000000000 +0.228055014864550,79452.0000000000,51044.0000000000,31865.0000000000 +0.152419908021908,88047.0000000000,27815.0000000000,30289.0000000000 +0.0697820977772030,78888.0000000000,58857.0000000000,61637.0000000000 +0.404594098316278,58466.0000000000,37534.0000000000,17598.0000000000 +0.389380635803984,62858.0000000000,98203.0000000000,30086.0000000000 +0.0471787347223880,50983.0000000000,56677.0000000000,59136.0000000000 +0.0878145949230184,26211.0000000000,91115.0000000000,39406.0000000000 +0.164963655734468,96317.0000000000,90011.0000000000,54779.0000000000 +0.0108853944703824,57813.0000000000,29157.0000000000,94031.0000000000 +0.159499425411731,95827.0000000000,70653.0000000000,49231.0000000000 +0.132499691980493,80843.0000000000,66478.0000000000,48124.0000000000 +0.0326968636856738,96748.0000000000,57006.0000000000,98138.0000000000 +0.174051382205163,69015.0000000000,76919.0000000000,41731.0000000000 +0.0576246156777177,35825.0000000000,14588.0000000000,22756.0000000000 +0.00148232284729668,6246.00000000000,18606.0000000000,66906.0000000000 +0.00812099886034344,25507.0000000000,34731.0000000000,78921.0000000000 +3.77112644800590,67389.0000000000,88695.0000000000,9513.00000000000 +0.00413756665732493,12095.0000000000,55774.0000000000,96484.0000000000 +0.00129741138161101,5068.00000000000,36715.0000000000,90492.0000000000 +0.0357409553035341,1675.00000000000,5655.00000000000,3890.00000000000 +0.00313407769389981,19964.0000000000,17316.0000000000,79360.0000000000 +0.0330037160143577,66853.0000000000,85706.0000000000,99562.0000000000 +0.0270286911993386,92179.0000000000,19000.0000000000,60826.0000000000 +0.0899768816314119,83753.0000000000,64748.0000000000,58662.0000000000 +0.0314338712779469,96294.0000000000,28684.0000000000,70832.0000000000 +0.0131124625190620,46742.0000000000,15095.0000000000,55429.0000000000 +0.0133441113438742,83350.0000000000,7630.00000000000,52165.0000000000 +0.115028499838892,83285.0000000000,32279.0000000000,36530.0000000000 +0.0328735039629927,43846.0000000000,15536.0000000000,34397.0000000000 +0.0316942405545457,31499.0000000000,72896.0000000000,64316.0000000000 +0.0901828903831819,47935.0000000000,37719.0000000000,33834.0000000000 +0.0106148787295953,19647.0000000000,57460.0000000000,77926.0000000000 +0.0650308843242787,49826.0000000000,64248.0000000000,53016.0000000000 +0.0232308770655817,38502.0000000000,45468.0000000000,65595.0000000000 +0.447095260245834,36996.0000000000,83792.0000000000,19897.0000000000 +0.00153277563231856,36021.0000000000,7310.00000000000,99039.0000000000 +0.0557893120773971,36883.0000000000,83952.0000000000,56294.0000000000 +0.0147218599637370,47988.0000000000,50140.0000000000,96602.0000000000 +3.78578317363843,41011.0000000000,72575.0000000000,6700.00000000000 +0.00533724122208089,34639.0000000000,21324.0000000000,88893.0000000000 +3.70894144231904,41429.0000000000,36065.0000000000,4796.00000000000 +0.169931779798972,74026.0000000000,73727.0000000000,42823.0000000000 +0.00661295611429122,30828.0000000000,25534.0000000000,82441.0000000000 +0.0731992740364689,36990.0000000000,93154.0000000000,51844.0000000000 +0.00636939352214160,29572.0000000000,30841.0000000000,90420.0000000000 +0.744410912220506,36930.0000000000,81211.0000000000,15167.0000000000 +0.0247839647541969,79762.0000000000,54236.0000000000,99831.0000000000 +0.203986894583625,27345.0000000000,70703.0000000000,23263.0000000000 +39.7085971284609,38903.0000000000,85816.0000000000,2191.00000000000 +6.78908104529919,12149.0000000000,26613.0000000000,1649.00000000000 +0.0276139264149767,79074.0000000000,25291.0000000000,64305.0000000000 +0.0158018516112802,39400.0000000000,45645.0000000000,80612.0000000000 +493.107758285032,85665.0000000000,75606.0000000000,866.000000000000 +0.533056220634981,57112.0000000000,71308.0000000000,20886.0000000000 +0.113215274578134,56655.0000000000,75516.0000000000,46451.0000000000 +0.0485304236426969,98129.0000000000,37998.0000000000,66234.0000000000 +0.00709536384474354,26356.0000000000,43236.0000000000,95760.0000000000 +2.46917857400876,45785.0000000000,82643.0000000000,9354.00000000000 +0.431122416516029,76725.0000000000,18984.0000000000,13889.0000000000 +0.197716203964426,20424.0000000000,5245.00000000000,5562.00000000000 +0.201610649247061,68863.0000000000,182.000000000000,1884.00000000000 +4.07190952988091,66545.0000000000,30973.0000000000,5376.00000000000 +0.0714684354647112,37987.0000000000,25024.0000000000,27558.0000000000 +0.781714721569259,83780.0000000000,28989.0000000000,13319.0000000000 +0.0304921127580370,77747.0000000000,3815.00000000000,23567.0000000000 +0.0265588151462174,40231.0000000000,21376.0000000000,42998.0000000000 +1.59616919643924,86414.0000000000,97606.0000000000,17370.0000000000 +0.0200965192189986,94531.0000000000,30513.0000000000,90527.0000000000 +0.0917442132895739,12582.0000000000,95485.0000000000,27344.0000000000 +0.550168688383357,65797.0000000000,82055.0000000000,23671.0000000000 +0.426465610943262,39053.0000000000,21275.0000000000,10547.0000000000 +0.379689100441813,49074.0000000000,73647.0000000000,23313.0000000000 +0.00288339618750128,41088.0000000000,9472.00000000000,87788.0000000000 +0.0220124306166808,31470.0000000000,18967.0000000000,39348.0000000000 +2.47442019025438,86942.0000000000,95146.0000000000,13816.0000000000 +4.64327354835694,66517.0000000000,33787.0000000000,5257.00000000000 +0.0707246941141104,95954.0000000000,88709.0000000000,82897.0000000000 +0.126004834895767,35419.0000000000,75829.0000000000,34886.0000000000 +0.0269693923009719,58775.0000000000,73452.0000000000,95603.0000000000 +0.161665746463223,73053.0000000000,77994.0000000000,44859.0000000000 +3.67539598202232,83948.0000000000,63052.0000000000,9068.00000000000 +0.0125586818535559,22580.0000000000,79603.0000000000,90399.0000000000 +0.218644629996173,56485.0000000000,67439.0000000000,31540.0000000000 +0.0866849070959987,67103.0000000000,18615.0000000000,28684.0000000000 +0.0821085620093003,40741.0000000000,87366.0000000000,49751.0000000000 +0.0353012386628243,65950.0000000000,53058.0000000000,75231.0000000000 +0.153490743022499,98324.0000000000,89444.0000000000,57197.0000000000 +0.0587338980040687,44506.0000000000,46409.0000000000,44810.0000000000 +0.0316884398711623,69159.0000000000,35413.0000000000,66430.0000000000 +0.00346276317644144,6346.00000000000,30354.0000000000,56358.0000000000 +0.0340754440843696,42937.0000000000,9951.00000000000,26757.0000000000 +0.178976685766782,19701.0000000000,65360.0000000000,20268.0000000000 +0.287211592854773,55378.0000000000,63971.0000000000,26538.0000000000 +0.0649824541344778,67514.0000000000,88088.0000000000,72288.0000000000 +0.0529605839401126,73909.0000000000,57957.0000000000,67957.0000000000 +0.0669599132666113,35334.0000000000,86418.0000000000,51027.0000000000 +0.546586289442015,90621.0000000000,76462.0000000000,26904.0000000000 +4.29409664969089,71528.0000000000,91290.0000000000,9318.00000000000 +0.0843372255712209,41399.0000000000,10361.0000000000,17041.0000000000 +0.0384875233684864,93042.0000000000,35130.0000000000,69635.0000000000 +0.0148371896716852,62117.0000000000,20206.0000000000,69499.0000000000 +0.0265918436141428,71431.0000000000,63022.0000000000,98316.0000000000 +0.00326141398689338,38656.0000000000,10804.0000000000,85508.0000000000 +0.00121880766462862,67379.0000000000,830.000000000000,51185.0000000000 +0.00475616617104840,11907.0000000000,39552.0000000000,75191.0000000000 +0.0113592982038027,46318.0000000000,16547.0000000000,62068.0000000000 +0.00392005571661773,7030.00000000000,55498.0000000000,75384.0000000000 +0.00160996438203976,6507.00000000000,33464.0000000000,87878.0000000000 +8.22094570390711,57814.0000000000,63940.0000000000,5067.00000000000 +2.66717485282088,38357.0000000000,55537.0000000000,6753.00000000000 +0.0418636737803406,16887.0000000000,72406.0000000000,40837.0000000000 +0.0193753531562681,47816.0000000000,53630.0000000000,86931.0000000000 +0.0221782899032622,14877.0000000000,20669.0000000000,28136.0000000000 +0.00726443513181415,53172.0000000000,11656.0000000000,69795.0000000000 +0.0222940292592955,78884.0000000000,36806.0000000000,86232.0000000000 +0.102691617456401,21974.0000000000,38901.0000000000,21801.0000000000 +0.00923809470997453,40761.0000000000,8424.00000000000,46068.0000000000 +0.00500324785686488,5209.00000000000,80076.0000000000,68994.0000000000 +0.0146172171647662,33345.0000000000,24543.0000000000,56540.0000000000 +0.131161614467849,44889.0000000000,73763.0000000000,37966.0000000000 +1.03444217287344,68647.0000000000,92141.0000000000,18685.0000000000 +0.00908556998880574,13485.0000000000,62214.0000000000,72611.0000000000 +0.203430479668062,52987.0000000000,89512.0000000000,36486.0000000000 +0.128039710582219,62388.0000000000,92616.0000000000,50761.0000000000 +0.0125764115284692,2760.00000000000,49012.0000000000,24782.0000000000 +0.00627777166239220,1049.00000000000,54931.0000000000,22893.0000000000 +0.00681812760769411,96645.0000000000,6610.00000000000,73142.0000000000 +0.0290568364310301,78835.0000000000,42000.0000000000,80662.0000000000 +0.0191482655879185,71443.0000000000,6606.00000000000,37514.0000000000 +0.00181586523270662,7642.00000000000,28567.0000000000,82852.0000000000 +0.0332465597996374,31936.0000000000,62145.0000000000,58382.0000000000 +0.0244823852239401,44103.0000000000,32664.0000000000,57963.0000000000 +0.116922177345315,73226.0000000000,86229.0000000000,55529.0000000000 +0.000773963287674078,18775.0000000000,2122.00000000000,54214.0000000000 +0.0568284696318660,54298.0000000000,57981.0000000000,56242.0000000000 +0.0743719494944754,13552.0000000000,82654.0000000000,29325.0000000000 +0.0281168464393950,29927.0000000000,68593.0000000000,64565.0000000000 +0.0702852626778075,97439.0000000000,58282.0000000000,67922.0000000000 +0.0294844567498254,23330.0000000000,92698.0000000000,64715.0000000000 +0.0294043250017638,76180.0000000000,13984.0000000000,45482.0000000000 +0.135104519504073,63324.0000000000,84454.0000000000,47541.0000000000 +0.0802352153058478,86619.0000000000,82976.0000000000,71517.0000000000 +0.000990977096512171,1871.00000000000,56240.0000000000,77864.0000000000 +0.655956577139046,95439.0000000000,8088.00000000000,8197.00000000000 +0.147540441715203,60933.0000000000,7312.00000000000,13131.0000000000 +0.0471719876287447,44013.0000000000,83312.0000000000,66621.0000000000 +0.323827681568284,41721.0000000000,7618.00000000000,7486.00000000000 +0.0232875283448305,6301.00000000000,87925.0000000000,36856.0000000000 +0.108454813155919,97990.0000000000,94003.0000000000,69638.0000000000 +0.00394302799848960,7203.00000000000,14250.0000000000,38553.0000000000 +0.0304940507425142,46364.0000000000,57272.0000000000,70512.0000000000 +0.0163022849017802,72989.0000000000,13670.0000000000,59115.0000000000 +0.00297054953695515,3096.00000000000,97652.0000000000,76231.0000000000 +4.71808007311097,16943.0000000000,69317.0000000000,3770.00000000000 +0.0106417417554390,48266.0000000000,10722.0000000000,52694.0000000000 +84.4445363253304,41736.0000000000,85795.0000000000,1556.00000000000 +0.0288841150185418,27141.0000000000,68665.0000000000,60696.0000000000 +0.00838294374386039,89153.0000000000,14921.0000000000,95187.0000000000 +0.197724405127459,49572.0000000000,44126.0000000000,25133.0000000000 +0.0316712410023896,94575.0000000000,55814.0000000000,97552.0000000000 +0.573350914288779,78471.0000000000,65273.0000000000,22585.0000000000 +0.0000163647382999958,91943.0000000000,16.0000000000000,71643.0000000000 +0.0499464917969641,9535.00000000000,78926.0000000000,29331.0000000000 +0.0241726464694279,77444.0000000000,27631.0000000000,71095.0000000000 +0.0773190226414900,6775.00000000000,16392.0000000000,9056.00000000000 +0.000560127936180385,14957.0000000000,4999.00000000000,87303.0000000000 +0.0708220265817368,57391.0000000000,80518.0000000000,61037.0000000000 +0.00602355787915312,19129.0000000000,15294.0000000000,52661.0000000000 +0.0398056850876999,11130.0000000000,76214.0000000000,34882.0000000000 +0.0168483768661974,46645.0000000000,31153.0000000000,70175.0000000000 +0.0530991591376506,40732.0000000000,94561.0000000000,64356.0000000000 +0.0374347826786364,73183.0000000000,54042.0000000000,77668.0000000000 +0.00864058940856446,17277.0000000000,77941.0000000000,94331.0000000000 +2.01901656960622,33117.0000000000,80874.0000000000,8703.00000000000 +0.0131585516625841,37995.0000000000,25338.0000000000,64633.0000000000 +0.00778904367348581,24833.0000000000,1407.00000000000,16004.0000000000 +0.753293501973070,83710.0000000000,88204.0000000000,23657.0000000000 +0.0143515309272327,22869.0000000000,26157.0000000000,48784.0000000000 +7.92385758294764,47750.0000000000,72426.0000000000,4992.00000000000 +0.0401074271995320,85490.0000000000,23199.0000000000,53136.0000000000 +0.00227200719095942,38600.0000000000,8398.00000000000,90258.0000000000 +0.247566925866048,20650.0000000000,97827.0000000000,21585.0000000000 +0.0300302904823615,95262.0000000000,11512.0000000000,45663.0000000000 +0.108659973749822,90205.0000000000,5032.00000000000,15444.0000000000 +0.0445258558114541,78171.0000000000,79054.0000000000,89020.0000000000 +0.0343816922598056,45126.0000000000,48030.0000000000,59995.0000000000 +0.00294607461545711,2364.00000000000,99596.0000000000,67551.0000000000 +0.0235622198913556,25857.0000000000,31127.0000000000,44163.0000000000 +0.0615162357529818,76023.0000000000,88637.0000000000,79085.0000000000 +0.0860069668035629,56592.0000000000,86394.0000000000,56972.0000000000 +1.37744198604825,67311.0000000000,55348.0000000000,12427.0000000000 +0.0305697581057590,49153.0000000000,84487.0000000000,88071.0000000000 +0.191437842114888,42665.0000000000,79558.0000000000,31818.0000000000 +0.533448764635462,32200.0000000000,54864.0000000000,13751.0000000000 +0.0293064179656997,58024.0000000000,85516.0000000000,98323.0000000000 +0.125727819007806,21060.0000000000,91541.0000000000,29589.0000000000 +20.8205019733995,38829.0000000000,80237.0000000000,2923.00000000000 +0.0342994689461543,81172.0000000000,29700.0000000000,63350.0000000000 +0.364715772642868,76850.0000000000,37212.0000000000,21159.0000000000 +0.0784991523860289,62109.0000000000,37430.0000000000,41121.0000000000 +0.0300930278382469,50615.0000000000,61216.0000000000,76674.0000000000 +0.0717285446853016,40781.0000000000,79527.0000000000,50810.0000000000 +0.219550137970263,79401.0000000000,8658.00000000000,13371.0000000000 +0.173913238932905,45230.0000000000,96084.0000000000,37773.0000000000 +0.00184268164144370,32587.0000000000,9549.00000000000,98194.0000000000 +0.153136897661999,64398.0000000000,58570.0000000000,37501.0000000000 +0.0379395415678736,76757.0000000000,37605.0000000000,65909.0000000000 +0.0629369856798925,67496.0000000000,34204.0000000000,45765.0000000000 +0.00965641623172242,6509.00000000000,15316.0000000000,24279.0000000000 +0.0793766897191163,40449.0000000000,70681.0000000000,45349.0000000000 +176.362049215718,72157.0000000000,52932.0000000000,1112.00000000000 +0.0728037670069373,78932.0000000000,58477.0000000000,60166.0000000000 +515.858593917263,56288.0000000000,89086.0000000000,745.000000000000 +0.0545268576982312,62731.0000000000,76111.0000000000,70708.0000000000 +0.0258489149709613,88343.0000000000,31108.0000000000,77913.0000000000 +0.00233828715846391,19483.0000000000,7983.00000000000,61627.0000000000 +0.0361283709086160,38695.0000000000,95457.0000000000,76404.0000000000 +0.168640446483692,42728.0000000000,78695.0000000000,33741.0000000000 +0.0684863495811304,22973.0000000000,90499.0000000000,41633.0000000000 +0.0374094800629333,77192.0000000000,75063.0000000000,94041.0000000000 +73.2777021201657,96675.0000000000,64135.0000000000,2198.00000000000 +0.0168349974832066,20250.0000000000,58994.0000000000,63653.0000000000 +0.238134343303462,65833.0000000000,55965.0000000000,29722.0000000000 +0.0164485942280114,44415.0000000000,24755.0000000000,61779.0000000000 +0.296099440418451,78277.0000000000,32583.0000000000,22177.0000000000 +0.613066699829118,89937.0000000000,36704.0000000000,17534.0000000000 +0.0960196190757574,20449.0000000000,94263.0000000000,33856.0000000000 +0.00480128696541414,30373.0000000000,26009.0000000000,96925.0000000000 +0.0466176646812408,86337.0000000000,17226.0000000000,42680.0000000000 +0.0143108573426259,22129.0000000000,56232.0000000000,70461.0000000000 +0.00566849025969134,6735.00000000000,69684.0000000000,68756.0000000000 +0.0732508663065457,58360.0000000000,34170.0000000000,39426.0000000000 +0.162356419045927,54607.0000000000,54771.0000000000,32432.0000000000 +0.0817575862216288,43048.0000000000,59756.0000000000,42385.0000000000 +2.51667672786493,55373.0000000000,70829.0000000000,9433.00000000000 +0.0693063081159229,94277.0000000000,65196.0000000000,71160.0000000000 +0.0246258978887774,44397.0000000000,90999.0000000000,96785.0000000000 +0.0148097343308312,97576.0000000000,24724.0000000000,96442.0000000000 +0.0351623057004664,36893.0000000000,83748.0000000000,70832.0000000000 +0.00554840079957771,43891.0000000000,18952.0000000000,92521.0000000000 +0.00121492514603020,23105.0000000000,7829.00000000000,92202.0000000000 +0.143401687460259,36670.0000000000,86285.0000000000,35494.0000000000 +0.0515644760639417,89067.0000000000,42995.0000000000,65118.0000000000 +0.00458913581854399,15206.0000000000,16519.0000000000,55904.0000000000 +0.00672936359849608,9544.00000000000,82173.0000000000,81574.0000000000 +0.0394196081217881,18006.0000000000,29305.0000000000,27646.0000000000 +0.00201208598047790,6146.00000000000,23867.0000000000,64518.0000000000 +0.00147639768419988,1109.00000000000,80954.0000000000,58924.0000000000 +0.0752416797637940,67528.0000000000,76695.0000000000,62691.0000000000 +0.0164369946423178,90758.0000000000,18605.0000000000,76587.0000000000 +690.345833431316,72482.0000000000,42878.0000000000,507.000000000000 +0.0145210723602509,19054.0000000000,40530.0000000000,55105.0000000000 +0.0406543730315790,93113.0000000000,36748.0000000000,69323.0000000000 +1.08280234335908,98014.0000000000,26572.0000000000,11719.0000000000 +0.0225801663810739,74033.0000000000,37608.0000000000,83907.0000000000 +0.317679736485681,26177.0000000000,24897.0000000000,10823.0000000000 +0.00929509251584399,32065.0000000000,46442.0000000000,95643.0000000000 +0.00523431215695895,8290.00000000000,82913.0000000000,86590.0000000000 +97.9454880664050,48764.0000000000,65640.0000000000,1366.00000000000 +0.0340202586018306,84149.0000000000,38786.0000000000,74012.0000000000 +0.0277932335145517,41313.0000000000,93677.0000000000,89166.0000000000 +0.410001944925345,59483.0000000000,25074.0000000000,14412.0000000000 +0.0541020142885985,47256.0000000000,67750.0000000000,58128.0000000000 +0.0250425201431130,62202.0000000000,27086.0000000000,61979.0000000000 +33.2080932683080,81056.0000000000,18026.0000000000,1585.00000000000 +186.672895809511,92929.0000000000,61672.0000000000,1324.00000000000 +35.9312587403138,5095.00000000000,64385.0000000000,722.000000000000 +0.0295173399187995,49176.0000000000,67450.0000000000,80101.0000000000 +0.142447226935866,69231.0000000000,31982.0000000000,29791.0000000000 +0.00614103501867281,39025.0000000000,20752.0000000000,86774.0000000000 +0.00894005290312701,11301.0000000000,44701.0000000000,56801.0000000000 +3.78885554290384,39909.0000000000,90510.0000000000,7378.00000000000 +0.129194086276196,42794.0000000000,65093.0000000000,35087.0000000000 +0.0215771951510357,28941.0000000000,26444.0000000000,45002.0000000000 +0.0315418904086021,45466.0000000000,78326.0000000000,80290.0000000000 +0.986255764415011,28741.0000000000,27839.0000000000,6806.00000000000 +0.0442336492989043,93131.0000000000,69688.0000000000,91529.0000000000 +0.00421796158994664,8861.00000000000,16257.0000000000,44159.0000000000 +0.00289874710567091,3629.00000000000,27970.0000000000,44714.0000000000 +0.249210292591341,99007.0000000000,69110.0000000000,39594.0000000000 +0.000722128319135368,6896.00000000000,17286.0000000000,97084.0000000000 +0.0342306960195936,56600.0000000000,76409.0000000000,84934.0000000000 +0.0831306055509328,57210.0000000000,98262.0000000000,62138.0000000000 +0.0547509637140723,74297.0000000000,64124.0000000000,70487.0000000000 +0.00140499211721221,11117.0000000000,3811.00000000000,41494.0000000000 +0.0479500865903227,85906.0000000000,95537.0000000000,98858.0000000000 +0.0206776255252498,55770.0000000000,32491.0000000000,70736.0000000000 +0.0523663121846504,84918.0000000000,21634.0000000000,44756.0000000000 +0.0179075768295121,14293.0000000000,97698.0000000000,66726.0000000000 +0.441403413384009,42632.0000000000,96712.0000000000,23094.0000000000 +0.00591360290247370,41250.0000000000,6427.00000000000,50594.0000000000 +0.0172201258946024,86688.0000000000,34388.0000000000,99420.0000000000 +0.0534970501670199,71274.0000000000,17472.0000000000,36457.0000000000 +0.0118293762619055,28892.0000000000,27789.0000000000,62252.0000000000 +0.00596201366923318,25417.0000000000,30224.0000000000,85773.0000000000 +0.00232770364819385,75816.0000000000,2157.00000000000,63336.0000000000 +0.00918392335407977,63874.0000000000,21521.0000000000,92446.0000000000 +0.000951603376725317,9807.00000000000,11823.0000000000,83409.0000000000 +0.00660362950583258,24873.0000000000,42851.0000000000,95998.0000000000 +0.121917020883945,57612.0000000000,81495.0000000000,46892.0000000000 +0.0000708301295497849,633.000000000000,17482.0000000000,94449.0000000000 +0.372538008074146,46527.0000000000,46160.0000000000,18143.0000000000 +0.0107897961431173,44084.0000000000,24416.0000000000,75471.0000000000 +2.55264012108692,89740.0000000000,82902.0000000000,12900.0000000000 +0.0279782702471927,87562.0000000000,24124.0000000000,65657.0000000000 +0.00414293157177793,8236.00000000000,40443.0000000000,67754.0000000000 +0.0000862817786434286,303.000000000000,5237.00000000000,32405.0000000000 +0.00209799897590106,1247.00000000000,84879.0000000000,53671.0000000000 +0.0246731585988018,99953.0000000000,39878.0000000000,96042.0000000000 +0.0250191523683766,17987.0000000000,46303.0000000000,43597.0000000000 +0.0677067799904930,79102.0000000000,79836.0000000000,72977.0000000000 +0.514044809187468,89706.0000000000,3361.00000000000,5787.00000000000 +0.441242500686520,78481.0000000000,21999.0000000000,14947.0000000000 +0.222830089640454,92333.0000000000,84994.0000000000,44843.0000000000 +0.00705951753381862,17176.0000000000,52924.0000000000,85745.0000000000 +0.000872270108849178,1468.00000000000,40216.0000000000,62165.0000000000 +0.00860247092000753,11721.0000000000,31581.0000000000,49567.0000000000 +0.0216096104853302,33142.0000000000,83693.0000000000,85609.0000000000 +0.0136895132922313,36577.0000000000,46791.0000000000,84489.0000000000 +0.0211074101717955,55030.0000000000,51625.0000000000,87664.0000000000 +0.0351970524117736,59045.0000000000,83828.0000000000,89607.0000000000 +0.000155409915852437,1992.00000000000,9683.00000000000,84182.0000000000 +0.0245060953227042,88441.0000000000,34470.0000000000,84279.0000000000 +0.00531571048607455,8932.00000000000,68966.0000000000,81343.0000000000 +0.306126711629513,79109.0000000000,85137.0000000000,35443.0000000000 +2.47654915791052,56919.0000000000,89890.0000000000,10861.0000000000 +0.582267981624789,43959.0000000000,98923.0000000000,20650.0000000000 +0.00176088957080788,17842.0000000000,10520.0000000000,78014.0000000000 +0.0122943486577873,17485.0000000000,65587.0000000000,72979.0000000000 +0.0291268927925371,38387.0000000000,60794.0000000000,67637.0000000000 +0.0193163172686970,41366.0000000000,49744.0000000000,77990.0000000000 +0.112170313842858,41426.0000000000,55513.0000000000,34214.0000000000 +0.0174906540336229,66081.0000000000,32717.0000000000,84010.0000000000 +0.00318334024964343,38878.0000000000,3899.00000000000,52143.0000000000 +0.0486753899850174,6438.00000000000,96010.0000000000,26927.0000000000 +0.953691127683803,15742.0000000000,75170.0000000000,8417.00000000000 +0.0279739890188452,847.000000000000,89918.0000000000,12468.0000000000 +0.0664426827422306,98850.0000000000,38643.0000000000,57294.0000000000 +0.00992975823952758,13734.0000000000,31501.0000000000,49877.0000000000 +7.71262852201972,66377.0000000000,27290.0000000000,3662.00000000000 +0.0446625346878558,52868.0000000000,88967.0000000000,77544.0000000000 +0.328607565626841,52238.0000000000,94311.0000000000,29258.0000000000 +0.167486063634800,23889.0000000000,63278.0000000000,22701.0000000000 +0.310691921060475,99235.0000000000,57257.0000000000,32314.0000000000 +0.00604016282394728,39038.0000000000,14601.0000000000,73404.0000000000 +0.0231082566480910,13453.0000000000,27645.0000000000,30314.0000000000 +0.0614005385242491,45938.0000000000,96231.0000000000,64116.0000000000 +0.0132251680081802,73678.0000000000,28632.0000000000,95434.0000000000 +0.0250863807377581,45719.0000000000,73390.0000000000,87389.0000000000 +0.149655938419159,90168.0000000000,60391.0000000000,45580.0000000000 +0.00453695097362941,432.000000000000,82169.0000000000,21136.0000000000 +0.00683979347580033,30348.0000000000,31514.0000000000,89352.0000000000 +3.82750889734901e-6,6647.00000000000,45.0000000000000,66799.0000000000 +9.53703919186030,91307.0000000000,76459.0000000000,6465.00000000000 +0.0261736933103678,26883.0000000000,83642.0000000000,70037.0000000000 +0.496265916451058,40727.0000000000,97514.0000000000,21376.0000000000 +0.0000604202686705518,426.000000000000,22544.0000000000,95266.0000000000 +335.864722760046,84762.0000000000,75205.0000000000,1041.00000000000 +0.000784069080909419,19902.0000000000,5035.00000000000,85424.0000000000 +0.0236221043041362,40677.0000000000,70833.0000000000,83453.0000000000 +0.110763717179289,82442.0000000000,49393.0000000000,45816.0000000000 +0.130233316626429,57865.0000000000,57640.0000000000,38240.0000000000 +0.0442889171598768,46694.0000000000,98256.0000000000,76908.0000000000 +0.151316921399938,50981.0000000000,21428.0000000000,20303.0000000000 +0.0345460649859509,90787.0000000000,32631.0000000000,69974.0000000000 +0.00185475950076578,99754.0000000000,2096.00000000000,80228.0000000000 +7.47572108476486,74684.0000000000,78509.0000000000,6692.00000000000 +0.0407894648053005,95687.0000000000,54285.0000000000,85271.0000000000 +0.0102401628324393,23893.0000000000,58485.0000000000,88270.0000000000 +0.0424084265388274,40010.0000000000,33836.0000000000,42693.0000000000 +0.127701918727410,12398.0000000000,58715.0000000000,18041.0000000000 +0.00583817550638341,91795.0000000000,11091.0000000000,99785.0000000000 +0.00302194332373319,4050.00000000000,84212.0000000000,80275.0000000000 +0.0170490074630413,90172.0000000000,11424.0000000000,58736.0000000000 +0.0218421105347286,59999.0000000000,38826.0000000000,78036.0000000000 +0.00630895054168086,35946.0000000000,17054.0000000000,74485.0000000000 +0.547032324594348,40088.0000000000,62651.0000000000,16191.0000000000 +19.0645513980007,66439.0000000000,82066.0000000000,4041.00000000000 +0.0219798846812090,83301.0000000000,34282.0000000000,86130.0000000000 +0.00862825048340225,85327.0000000000,1831.00000000000,32154.0000000000 +0.00136535701608966,46124.0000000000,2735.00000000000,72632.0000000000 +0.0541996262974226,99049.0000000000,78033.0000000000,90235.0000000000 +0.0274440581533907,81764.0000000000,18602.0000000000,56253.0000000000 +0.0101416870423735,18283.0000000000,11411.0000000000,34272.0000000000 +0.00219809898175058,5015.00000000000,45229.0000000000,76759.0000000000 +0.00488149369134490,15674.0000000000,43568.0000000000,89373.0000000000 +0.0406906757255408,26817.0000000000,58073.0000000000,46747.0000000000 +1.69941996758759,58966.0000000000,80900.0000000000,12660.0000000000 +0.00378570196723167,35573.0000000000,7906.00000000000,65129.0000000000 +0.668913341076488,71568.0000000000,65458.0000000000,19997.0000000000 +2.77140666013802,85650.0000000000,85834.0000000000,12307.0000000000 +4.56803795521537,45789.0000000000,93110.0000000000,7300.00000000000 +0.0390020333780919,35569.0000000000,34401.0000000000,42324.0000000000 +0.00581300034516852,27533.0000000000,13521.0000000000,60470.0000000000 +0.493691757335388,47875.0000000000,19980.0000000000,10518.0000000000 +0.0498902858418491,32037.0000000000,63851.0000000000,48385.0000000000 +0.0740412130749170,61663.0000000000,5610.00000000000,16333.0000000000 +0.117304580776141,57945.0000000000,92071.0000000000,50959.0000000000 +0.0233449046643133,29372.0000000000,23173.0000000000,40801.0000000000 +0.00921835187998003,40549.0000000000,11221.0000000000,53087.0000000000 +0.0196818903472208,6516.00000000000,40805.0000000000,27773.0000000000 +0.0437972433062109,37742.0000000000,82276.0000000000,63626.0000000000 +0.0609535913793924,89611.0000000000,55897.0000000000,68499.0000000000 +0.00380022251772715,81095.0000000000,5969.00000000000,85281.0000000000 +0.00658555907428206,68964.0000000000,12057.0000000000,84907.0000000000 +0.236032355711061,60765.0000000000,70173.0000000000,32117.0000000000 +2.21127143854630,9894.00000000000,99824.0000000000,5050.00000000000 +0.0239075777373935,5400.00000000000,84185.0000000000,32950.0000000000 +0.917109110769855,76528.0000000000,85752.0000000000,20213.0000000000 +0.282360271705264,53501.0000000000,68365.0000000000,27196.0000000000 +0.00447134976043058,8804.00000000000,22223.0000000000,49984.0000000000 +18.6245667085153,66622.0000000000,68558.0000000000,3742.00000000000 +0.00572958221987142,69075.0000000000,11765.0000000000,89992.0000000000 +1.04589362176461,96790.0000000000,20643.0000000000,10444.0000000000 +0.000804324420429003,3124.00000000000,33715.0000000000,86469.0000000000 +0.0376519522470835,18459.0000000000,8544.00000000000,15465.0000000000 +0.00265333653751411,2580.00000000000,19704.0000000000,33075.0000000000 +0.00407344443526065,56883.0000000000,8179.00000000000,80755.0000000000 +0.000128465037411813,41556.0000000000,405.000000000000,86489.0000000000 +4670.04091554162,82171.0000000000,86622.0000000000,295.000000000000 +0.139397491218434,9873.00000000000,64161.0000000000,16108.0000000000 +0.00160917577896970,6261.00000000000,11243.0000000000,49977.0000000000 +0.00486949702537378,33086.0000000000,22353.0000000000,93123.0000000000 +0.0166430745284048,48976.0000000000,37485.0000000000,79362.0000000000 +0.00327361479073196,5255.00000000000,85431.0000000000,88489.0000000000 +0.0320898858339191,46650.0000000000,93398.0000000000,88048.0000000000 +227.439223989474,77354.0000000000,86225.0000000000,1294.00000000000 +0.0468037173168911,37855.0000000000,83308.0000000000,62026.0000000000 +28.4872145072008,51278.0000000000,82846.0000000000,2918.00000000000 +0.322690346419306,89634.0000000000,83582.0000000000,36409.0000000000 +0.136898948587305,88121.0000000000,38058.0000000000,37400.0000000000 +0.0163419734537485,69940.0000000000,27131.0000000000,81424.0000000000 +4.54926425243963,70825.0000000000,29157.0000000000,5091.00000000000 +0.000333413699349553,25848.0000000000,666.000000000000,54296.0000000000 +0.671074444137644,88546.0000000000,52390.0000000000,19867.0000000000 +0.124163152569950,29604.0000000000,66410.0000000000,30068.0000000000 +0.268504213299404,78878.0000000000,83476.0000000000,37419.0000000000 +0.0765688991452065,40046.0000000000,17257.0000000000,22701.0000000000 +3.75245767742853,28222.0000000000,93987.0000000000,6353.00000000000 +0.0133709211058093,86971.0000000000,22012.0000000000,90416.0000000000 +0.00674640439437372,31553.0000000000,8512.00000000000,47677.0000000000 +0.0303011168138148,69467.0000000000,72557.0000000000,97456.0000000000 +6.44948721752205,82318.0000000000,28258.0000000000,4538.00000000000 +0.0278108842786088,28243.0000000000,81502.0000000000,68745.0000000000 +0.00156798476941224,86311.0000000000,2837.00000000000,94428.0000000000 +0.0601520003619277,95133.0000000000,53849.0000000000,69733.0000000000 +0.00841947202423673,12042.0000000000,66161.0000000000,73505.0000000000 +0.0992177574636853,31184.0000000000,85422.0000000000,39153.0000000000 +0.140753530851246,50467.0000000000,39212.0000000000,28333.0000000000 +3.07387887649229,99851.0000000000,99137.0000000000,13560.0000000000 +0.0137259743725091,65645.0000000000,7363.00000000000,44840.0000000000 +0.202566775439638,93447.0000000000,39049.0000000000,32071.0000000000 +1.28312311701935,68489.0000000000,23373.0000000000,8440.00000000000 +0.0189149765381727,52522.0000000000,53705.0000000000,92275.0000000000 +0.276965429958156,80232.0000000000,58578.0000000000,31127.0000000000 +0.111323732705918,49310.0000000000,15633.0000000000,19884.0000000000 +0.100847817795298,30636.0000000000,86801.0000000000,38802.0000000000 +0.0252436368622250,1900.00000000000,53063.0000000000,15101.0000000000 +0.0284437153035294,50084.0000000000,28736.0000000000,53750.0000000000 +0.0471250168802618,80482.0000000000,86344.0000000000,91759.0000000000 +0.0146682312051421,28219.0000000000,79609.0000000000,93513.0000000000 +4.15531197890919,63672.0000000000,60144.0000000000,7254.00000000000 +0.00765056500145104,18880.0000000000,64851.0000000000,95592.0000000000 +0.00589485012003556,68371.0000000000,8564.00000000000,75309.0000000000 +1.18977910890889,73908.0000000000,80983.0000000000,16948.0000000000 +5.98571509928308,98156.0000000000,72957.0000000000,8265.00000000000 +0.0337381661477084,81291.0000000000,45885.0000000000,79452.0000000000 +0.0685880745895862,28878.0000000000,60497.0000000000,38136.0000000000 +1.14270456575764,26394.0000000000,83772.0000000000,10511.0000000000 +0.00561013702290758,54445.0000000000,3995.00000000000,47050.0000000000 +10.1013876470798,88456.0000000000,41133.0000000000,4535.00000000000 +0.139744284995586,91365.0000000000,11662.0000000000,20865.0000000000 +0.163307598287369,65262.0000000000,30293.0000000000,26291.0000000000 +0.0639111581697168,23320.0000000000,75095.0000000000,39554.0000000000 +0.00489059490479958,12934.0000000000,54199.0000000000,90467.0000000000 +0.918318375843979,67599.0000000000,62556.0000000000,16215.0000000000 +0.469037916434861,50116.0000000000,71414.0000000000,20873.0000000000 +0.0284095596415622,25485.0000000000,66589.0000000000,58401.0000000000 +0.470876445014457,91219.0000000000,91010.0000000000,31728.0000000000 +0.00536251659542584,78849.0000000000,7531.00000000000,79515.0000000000 +0.0197230010148228,21576.0000000000,73139.0000000000,67590.0000000000 +0.000336792344032039,1817.00000000000,13482.0000000000,64444.0000000000 +0.00858627184456382,31483.0000000000,20780.0000000000,65958.0000000000 +0.00882786031636824,99215.0000000000,8578.00000000000,74193.0000000000 +0.000813526340157064,13924.0000000000,4425.00000000000,65760.0000000000 +0.0180743220819476,44841.0000000000,15666.0000000000,47108.0000000000 +0.0154584776016675,23303.0000000000,85021.0000000000,85545.0000000000 +0.116940388137219,57523.0000000000,60372.0000000000,41178.0000000000 +0.00163941604747226,11830.0000000000,23306.0000000000,97992.0000000000 +0.0474632415203631,47364.0000000000,69698.0000000000,63018.0000000000 +0.0110555086178741,11100.0000000000,73906.0000000000,65091.0000000000 +0.0630779950289157,38931.0000000000,80078.0000000000,53122.0000000000 +2654.20332044875,82987.0000000000,42054.0000000000,274.000000000000 +0.0323004854093689,53278.0000000000,91415.0000000000,92787.0000000000 +0.0674100329725242,99703.0000000000,27841.0000000000,48489.0000000000 +0.0362755370969698,93629.0000000000,55084.0000000000,90099.0000000000 +893.373098284064,22842.0000000000,56029.0000000000,286.000000000000 +0.00577700612258937,2306.00000000000,46284.0000000000,32479.0000000000 +0.102094048786562,47013.0000000000,20838.0000000000,23407.0000000000 +0.592068902563522,59333.0000000000,13137.0000000000,8670.00000000000 +1.14300110501396,87176.0000000000,60936.0000000000,16290.0000000000 +4.29103442417231,62490.0000000000,81181.0000000000,8216.00000000000 +0.344274709854356,85205.0000000000,30255.0000000000,20677.0000000000 +4.45650337029896,45754.0000000000,37763.0000000000,4705.00000000000 +0.00833079776166753,20770.0000000000,27025.0000000000,62025.0000000000 +0.0378550262942354,18508.0000000000,99695.0000000000,52755.0000000000 +0.00881187836653507,24474.0000000000,35463.0000000000,74992.0000000000 +0.0460427366128606,34305.0000000000,87009.0000000000,60840.0000000000 +0.000245857131807668,405.000000000000,29821.0000000000,52961.0000000000 +0.00615254022662654,99597.0000000000,6070.00000000000,74903.0000000000 +0.311593990195890,78459.0000000000,5284.00000000000,8716.00000000000 +0.457673610496717,54946.0000000000,77770.0000000000,23089.0000000000 +0.00483901811338598,11500.0000000000,22984.0000000000,55846.0000000000 +293.629354525314,95813.0000000000,47224.0000000000,938.000000000000 +0.00608951126501594,31445.0000000000,16594.0000000000,69947.0000000000 +0.00538087968193063,9411.00000000000,86589.0000000000,92989.0000000000 +0.283615619903038,95206.0000000000,10498.0000000000,14185.0000000000 +0.0902463734612841,72475.0000000000,90032.0000000000,64252.0000000000 +0.000428082889775105,587.000000000000,70506.0000000000,74298.0000000000 +0.160441281912504,86472.0000000000,22359.0000000000,26231.0000000000 +0.0215130129474199,42648.0000000000,67570.0000000000,87455.0000000000 +0.0649195487714382,54437.0000000000,78687.0000000000,61379.0000000000 +323.079465220166,49843.0000000000,82601.0000000000,853.000000000000 +0.0328016567750571,15285.0000000000,87123.0000000000,48146.0000000000 +0.0458300181906470,12574.0000000000,88832.0000000000,37304.0000000000 +0.109768050225252,97042.0000000000,8680.00000000000,20932.0000000000 +0.00357964307648587,36619.0000000000,15433.0000000000,94944.0000000000 +0.478130587082001,66512.0000000000,36065.0000000000,16925.0000000000 +0.0661473992376064,77601.0000000000,63331.0000000000,65132.0000000000 +1.05902138881936,52062.0000000000,67179.0000000000,13732.0000000000 +0.0117125725924333,11388.0000000000,94274.0000000000,72344.0000000000 +0.0605789624619545,22941.0000000000,44648.0000000000,31071.0000000000 +0.000828801549799182,2266.00000000000,55387.0000000000,92986.0000000000 +1.83482499376864,24557.0000000000,16445.0000000000,3545.00000000000 +0.0364322613652958,21430.0000000000,19223.0000000000,25409.0000000000 +0.0540243949049810,78669.0000000000,25326.0000000000,45888.0000000000 +0.00295725442557262,7381.00000000000,66108.0000000000,97062.0000000000 +0.00140750913425609,81989.0000000000,933.000000000000,55706.0000000000 +0.0119962490023306,17584.0000000000,46222.0000000000,62197.0000000000 +0.100097538335923,82191.0000000000,92164.0000000000,65734.0000000000 +0.205126700011401,81048.0000000000,91412.0000000000,45412.0000000000 +0.00348060406735727,33241.0000000000,15342.0000000000,91466.0000000000 +0.00222716310188080,16633.0000000000,20009.0000000000,92370.0000000000 +0.0555936060887304,66287.0000000000,71391.0000000000,69716.0000000000 +0.0125138161351162,14796.0000000000,8961.00000000000,24596.0000000000 +0.901686485837679,29740.0000000000,43953.0000000000,9098.00000000000 +0.0154666083339067,44466.0000000000,38763.0000000000,79769.0000000000 +0.0795422681749008,53357.0000000000,80225.0000000000,55432.0000000000 +0.00859799495452763,33204.0000000000,27545.0000000000,77934.0000000000 +0.498347315087141,98076.0000000000,80173.0000000000,30015.0000000000 +0.0159434448123340,67159.0000000000,25255.0000000000,77937.0000000000 +0.172600673483047,45865.0000000000,56008.0000000000,29151.0000000000 +0.000526686956187607,30895.0000000000,2531.00000000000,92071.0000000000 +0.238547665300878,49205.0000000000,36084.0000000000,20615.0000000000 +0.0228430952926750,21461.0000000000,35395.0000000000,43574.0000000000 +0.0567719890781544,76184.0000000000,44147.0000000000,58160.0000000000 +0.0995519472043364,78247.0000000000,65359.0000000000,54159.0000000000 +0.393935112113229,90708.0000000000,30711.0000000000,20094.0000000000 +0.941461089891005,90024.0000000000,33539.0000000000,13532.0000000000 +0.174340543292319,71034.0000000000,64461.0000000000,38725.0000000000 +0.0224689073133281,17752.0000000000,52663.0000000000,48741.0000000000 +0.797365089899496,79812.0000000000,11081.0000000000,7958.00000000000 +0.274497654724156,66861.0000000000,26700.0000000000,19270.0000000000 +0.0786435449608036,71049.0000000000,72692.0000000000,61235.0000000000 +0.0514735372483719,31744.0000000000,52823.0000000000,43128.0000000000 +3.38035827690616,35788.0000000000,28477.0000000000,4149.00000000000 +0.239519560871205,89170.0000000000,7876.00000000000,12939.0000000000 +0.00256038616512625,50971.0000000000,8105.00000000000,95983.0000000000 +0.139147020746583,67332.0000000000,46790.0000000000,35955.0000000000 +0.385178600285096,67881.0000000000,41305.0000000000,20387.0000000000 +0.00211215286406721,7852.00000000000,28587.0000000000,77897.0000000000 +0.147187165509686,56942.0000000000,90747.0000000000,44772.0000000000 +0.990669867523620,91033.0000000000,63989.0000000000,18323.0000000000 +0.00195665364364748,8151.00000000000,32866.0000000000,88416.0000000000 +0.0702448763169190,82998.0000000000,13426.0000000000,30096.0000000000 +0.259717854860700,81889.0000000000,61784.0000000000,33351.0000000000 +0.0541060004558456,55711.0000000000,50283.0000000000,54371.0000000000 +0.0326067155297334,37993.0000000000,67353.0000000000,66940.0000000000 +0.0660588082720011,14809.0000000000,92401.0000000000,34391.0000000000 +0.000194566204392580,5415.00000000000,5206.00000000000,90955.0000000000 +0.276219173372989,85047.0000000000,89968.0000000000,39770.0000000000 +0.0354000911360255,6043.00000000000,9414.00000000000,9579.00000000000 +0.0110859476685290,29732.0000000000,29870.0000000000,67632.0000000000 +0.0217500626598695,33739.0000000000,58346.0000000000,71887.0000000000 +0.00192208509245609,84536.0000000000,2061.00000000000,71942.0000000000 +0.116753632842353,21759.0000000000,25291.0000000000,16405.0000000000 +0.0110202807178802,84218.0000000000,19259.0000000000,91671.0000000000 +0.00924851401109066,15889.0000000000,84850.0000000000,91232.0000000000 +0.00130503507941183,68262.0000000000,860.000000000000,50680.0000000000 +0.900833854799566,82599.0000000000,44270.0000000000,15224.0000000000 +0.00509366655817906,63165.0000000000,7938.00000000000,74970.0000000000 +0.181999627006766,66749.0000000000,65329.0000000000,36987.0000000000 +5.61328038426152e-7,336.000000000000,169.000000000000,76000.0000000000 +0.0443911876779613,75219.0000000000,87653.0000000000,92089.0000000000 +0.000655727552414925,12025.0000000000,3910.00000000000,63985.0000000000 +0.269618350453394,13305.0000000000,42983.0000000000,11005.0000000000 +0.134663241973689,86798.0000000000,92659.0000000000,58396.0000000000 +0.00918746845867302,4242.00000000000,85974.0000000000,47608.0000000000 +0.000310454831107910,323.000000000000,97249.0000000000,76007.0000000000 +0.176656004567041,66489.0000000000,64918.0000000000,37351.0000000000 +0.00508054244237721,21014.0000000000,21804.0000000000,71759.0000000000 +0.0153838494862882,93866.0000000000,13816.0000000000,69378.0000000000 +0.0422745221308407,3234.00000000000,95818.0000000000,20458.0000000000 +0.0227420578420503,42832.0000000000,53338.0000000000,75735.0000000000 +0.00546826073040663,44341.0000000000,20074.0000000000,96406.0000000000 +0.0623990301718399,36052.0000000000,26321.0000000000,29467.0000000000 +6.31232275311665,38969.0000000000,58732.0000000000,4550.00000000000 +0.00906513944706635,15240.0000000000,66121.0000000000,79668.0000000000 +0.104119247304682,54520.0000000000,44770.0000000000,36586.0000000000 +0.00875873971313518,5807.00000000000,72821.0000000000,52504.0000000000 +0.0597044954253837,73510.0000000000,24973.0000000000,41900.0000000000 +0.0821605941776545,84591.0000000000,40412.0000000000,48741.0000000000 +0.584674672178905,86843.0000000000,44841.0000000000,19501.0000000000 +0.0522411062241974,83052.0000000000,53853.0000000000,69917.0000000000 +17.0535159421215,43454.0000000000,86914.0000000000,3556.00000000000 +0.0166225581288433,66010.0000000000,16215.0000000000,60635.0000000000 +0.0874622206419489,47422.0000000000,93040.0000000000,53669.0000000000 +0.0250057172730738,44511.0000000000,95991.0000000000,98773.0000000000 +0.741260873434978,43154.0000000000,2290.00000000000,2759.00000000000 +0.0478502126577901,35211.0000000000,74820.0000000000,56068.0000000000 +0.00690485649957635,9362.00000000000,95500.0000000000,85984.0000000000 +0.224191346175075,86627.0000000000,41145.0000000000,30129.0000000000 +0.385047490990211,56580.0000000000,58942.0000000000,22238.0000000000 +0.413965233774623,67076.0000000000,20656.0000000000,13824.0000000000 +0.0110524361385110,35318.0000000000,31372.0000000000,75657.0000000000 +0.342618911004747,45024.0000000000,78400.0000000000,24254.0000000000 +0.0103557569336053,62004.0000000000,16189.0000000000,74394.0000000000 +0.0232993424081932,35166.0000000000,84984.0000000000,85579.0000000000 +0.0156272515245426,23121.0000000000,97415.0000000000,90716.0000000000 +4.45722879400039,32537.0000000000,94772.0000000000,6285.00000000000 +1.56582301211087,15381.0000000000,21456.0000000000,3469.00000000000 +0.00434269667642642,10535.0000000000,50200.0000000000,83387.0000000000 +0.0327874087341171,27912.0000000000,89945.0000000000,66121.0000000000 +0.00496596192890355,28014.0000000000,18955.0000000000,78137.0000000000 +0.0656958817539329,54406.0000000000,98475.0000000000,68238.0000000000 +0.0379644624859924,40711.0000000000,55546.0000000000,58318.0000000000 +0.575948555321556,73901.0000000000,68616.0000000000,22421.0000000000 +0.00539155450681362,66635.0000000000,10653.0000000000,86704.0000000000 +0.165282388557991,79387.0000000000,4610.00000000000,11244.0000000000 +0.00589597657610827,18535.0000000000,19948.0000000000,59838.0000000000 +1.48422855335529,30337.0000000000,77625.0000000000,9518.00000000000 +0.00265184270022902,34818.0000000000,7668.00000000000,75819.0000000000 +0.0292151340420657,54343.0000000000,78092.0000000000,91071.0000000000 +0.0301590305783402,71307.0000000000,43221.0000000000,76386.0000000000 +0.0752344337143423,23286.0000000000,45197.0000000000,28262.0000000000 +6881.81075376098,99862.0000000000,58948.0000000000,221.000000000000 +0.114774454746893,60578.0000000000,45523.0000000000,37039.0000000000 +0.0119463558804321,65399.0000000000,23373.0000000000,85474.0000000000 +0.00751552100376212,45576.0000000000,14323.0000000000,70423.0000000000 +0.0249948917557480,90829.0000000000,41926.0000000000,93269.0000000000 +0.00248315721742650,9591.00000000000,38276.0000000000,91876.0000000000 +0.0191679327748844,34631.0000000000,20390.0000000000,45863.0000000000 +0.0188664814071879,14884.0000000000,28856.0000000000,36053.0000000000 +0.000737706332986074,63123.0000000000,330.000000000000,40153.0000000000 +0.930555068133336,68958.0000000000,44898.0000000000,13783.0000000000 +0.0180098211014667,27204.0000000000,74334.0000000000,80069.0000000000 +0.415745880755546,65306.0000000000,47687.0000000000,20681.0000000000 +0.0405071435664415,95300.0000000000,58017.0000000000,88281.0000000000 +87.3775187733927,69728.0000000000,54235.0000000000,1572.00000000000 +0.102308764633557,56548.0000000000,21473.0000000000,26032.0000000000 +0.394289249408368,72433.0000000000,88914.0000000000,30539.0000000000 +0.0838590424288469,52576.0000000000,78768.0000000000,53101.0000000000 +0.0107861878085759,38140.0000000000,20094.0000000000,63694.0000000000 +0.0300109203890554,70016.0000000000,70999.0000000000,97251.0000000000 +0.119314153135683,57554.0000000000,19728.0000000000,23310.0000000000 +12.6953490757350,92727.0000000000,7335.00000000000,1749.00000000000 +0.0568244734485914,85109.0000000000,46510.0000000000,63067.0000000000 +0.0778845339887879,63525.0000000000,91778.0000000000,65377.0000000000 +0.0851731789186509,3150.00000000000,27324.0000000000,7596.00000000000 +0.0133398860824340,72983.0000000000,14914.0000000000,68256.0000000000 +0.0559998967181474,97456.0000000000,10796.0000000000,32753.0000000000 +0.0258013002680690,35814.0000000000,90878.0000000000,84868.0000000000 +0.00206446472242517,12704.0000000000,18853.0000000000,81389.0000000000 +0.0154413329515341,35472.0000000000,52940.0000000000,83330.0000000000 +0.0478768513390623,63070.0000000000,49683.0000000000,61131.0000000000 +0.0437925039101942,74331.0000000000,41664.0000000000,63544.0000000000 +0.00867702609733449,60757.0000000000,7854.00000000000,56036.0000000000 +0.118747803440413,76442.0000000000,33714.0000000000,35202.0000000000 +0.566214186544515,80329.0000000000,93971.0000000000,27590.0000000000 +0.0172150107245446,12319.0000000000,55051.0000000000,47427.0000000000 +0.00724226750511884,13002.0000000000,8223.00000000000,29033.0000000000 +0.00454768455335422,10432.0000000000,58499.0000000000,87533.0000000000 +0.0313396188401663,52977.0000000000,70461.0000000000,82467.0000000000 +0.0207795839771704,56039.0000000000,61926.0000000000,97650.0000000000 +0.0795183366963588,39602.0000000000,47358.0000000000,36697.0000000000 +0.0173628764939296,38153.0000000000,50590.0000000000,79670.0000000000 +0.0789111423206809,95663.0000000000,96170.0000000000,81589.0000000000 +0.00430815833783507,1065.00000000000,68379.0000000000,31067.0000000000 +0.416880354359777,58436.0000000000,54446.0000000000,20875.0000000000 +0.0113654681645513,2148.00000000000,70331.0000000000,27549.0000000000 +0.00586083079681087,14874.0000000000,41946.0000000000,77963.0000000000 +0.0553129918086492,82121.0000000000,32513.0000000000,52499.0000000000 +0.0366220474628306,74517.0000000000,46901.0000000000,73817.0000000000 +0.0348409300141753,96263.0000000000,39283.0000000000,78722.0000000000 +0.00573869858272445,51998.0000000000,18458.0000000000,97721.0000000000 +0.138957736945169,30970.0000000000,5407.00000000000,8295.00000000000 +0.118094941616380,7141.00000000000,76003.0000000000,16199.0000000000 +0.0259636962661835,16655.0000000000,98972.0000000000,60208.0000000000 +0.00610358035616215,63954.0000000000,5174.00000000000,55637.0000000000 +0.00717776876836786,25101.0000000000,33171.0000000000,81384.0000000000 +0.272766574989243,48977.0000000000,89367.0000000000,30269.0000000000 +0.00551518695755746,12842.0000000000,65176.0000000000,93087.0000000000 +0.0359930579454195,18450.0000000000,77684.0000000000,47683.0000000000 +0.169738538992031,45404.0000000000,9718.00000000000,12183.0000000000 +0.000146751809425104,521.000000000000,30207.0000000000,78251.0000000000 +2.19111861940559,36767.0000000000,60080.0000000000,7587.00000000000 +0.0263273571581875,47385.0000000000,20434.0000000000,45825.0000000000 +0.0310645359002306,9490.00000000000,83921.0000000000,38260.0000000000 +0.269985299928000,73814.0000000000,8900.00000000000,11787.0000000000 +0.0125388152331615,45873.0000000000,29215.0000000000,78120.0000000000 +0.0973090598375915,70906.0000000000,24185.0000000000,31721.0000000000 +0.0157076970928098,43018.0000000000,62146.0000000000,98579.0000000000 +0.219654475889615,65075.0000000000,50081.0000000000,29106.0000000000 +1.69426586451519,83352.0000000000,96498.0000000000,16464.0000000000 +4.73592749555755,78917.0000000000,71588.0000000000,8253.00000000000 +0.0445964987199032,63282.0000000000,12115.0000000000,31330.0000000000 +0.0201542678533463,3394.00000000000,42508.0000000000,20217.0000000000 +0.00115170583664809,3089.00000000000,33803.0000000000,71949.0000000000 +0.144215583399395,99299.0000000000,14431.0000000000,23819.0000000000 +0.00337311243104749,39919.0000000000,4692.00000000000,56307.0000000000 +0.0768095467024023,96152.0000000000,50053.0000000000,59813.0000000000 +0.0109998946583438,55814.0000000000,19605.0000000000,75365.0000000000 +0.0453130393852678,69724.0000000000,11401.0000000000,31649.0000000000 +0.0226031687076051,71460.0000000000,52742.0000000000,97574.0000000000 +0.152034735941251,97700.0000000000,47820.0000000000,41888.0000000000 +0.0288516063430401,41859.0000000000,39705.0000000000,57351.0000000000 +0.126389243167720,46907.0000000000,74339.0000000000,39690.0000000000 +0.323058947596628,26142.0000000000,85254.0000000000,19847.0000000000 +0.0129326127809258,75523.0000000000,29419.0000000000,99042.0000000000 +0.0593329819850013,35519.0000000000,46201.0000000000,39739.0000000000 +0.0872213901701816,39569.0000000000,53203.0000000000,37123.0000000000 +0.0782528104120581,78375.0000000000,7448.00000000000,20638.0000000000 +0.322770054957984,59881.0000000000,58057.0000000000,24799.0000000000 +0.304584392608547,99156.0000000000,98578.0000000000,42806.0000000000 +0.178480458021064,85179.0000000000,89096.0000000000,49273.0000000000 +10.1329305661160,28823.0000000000,68522.0000000000,3336.00000000000 +0.0157029070004363,85686.0000000000,19846.0000000000,78634.0000000000 +2.47175315598896,40447.0000000000,98720.0000000000,9604.00000000000 +0.00632751650670137,10970.0000000000,60461.0000000000,77363.0000000000 +0.153827510710138,74532.0000000000,16200.0000000000,21170.0000000000 +0.00318916941610471,96591.0000000000,1914.00000000000,57532.0000000000 +0.0344664642482699,65523.0000000000,73738.0000000000,89465.0000000000 +0.477688054473066,54136.0000000000,26061.0000000000,12986.0000000000 +0.0197786008039677,79816.0000000000,31604.0000000000,85335.0000000000 +1.20523529804226,32672.0000000000,43484.0000000000,8204.00000000000 +0.0553495140556919,57885.0000000000,28609.0000000000,41332.0000000000 +0.00832511147062028,63432.0000000000,21926.0000000000,97667.0000000000 +0.0455390067274212,15431.0000000000,33204.0000000000,25346.0000000000 +0.0834795316606420,77278.0000000000,96642.0000000000,71471.0000000000 +0.0320030587249520,49378.0000000000,60156.0000000000,72798.0000000000 +0.0480696708668110,96733.0000000000,76457.0000000000,93728.0000000000 +0.0827238764811380,94548.0000000000,57165.0000000000,61078.0000000000 +0.744196106084973,78687.0000000000,97954.0000000000,24318.0000000000 +0.0179726721276135,60767.0000000000,7633.00000000000,38387.0000000000 +540.359638766821,45328.0000000000,16252.0000000000,279.000000000000 +0.101698297001839,23593.0000000000,42483.0000000000,23722.0000000000 +0.00388450717786156,1976.00000000000,28300.0000000000,28670.0000000000 +0.0315802855696798,49732.0000000000,9319.00000000000,28947.0000000000 +0.0872065537718668,50638.0000000000,93331.0000000000,55627.0000000000 +77.9999515140252,38216.0000000000,84007.0000000000,1533.00000000000 +11.8940649316820,78256.0000000000,63600.0000000000,4888.00000000000 +0.268974065149174,96298.0000000000,51855.0000000000,32558.0000000000 +0.344290097410031,89686.0000000000,81506.0000000000,34818.0000000000 +0.00980375588769249,4381.00000000000,92586.0000000000,48604.0000000000 +0.661125848066630,33265.0000000000,58735.0000000000,12990.0000000000 +0.327251439493090,93206.0000000000,43939.0000000000,26731.0000000000 +0.488374134066148,55342.0000000000,80301.0000000000,22794.0000000000 +1.34416665135924,30065.0000000000,41613.0000000000,7290.00000000000 +0.0398268438149575,18101.0000000000,34825.0000000000,30062.0000000000 +0.0539923401844925,7852.00000000000,66332.0000000000,23469.0000000000 +0.0109792104868622,2677.00000000000,55885.0000000000,27893.0000000000 +0.0179704987146988,57937.0000000000,25233.0000000000,68154.0000000000 +0.00901603049682051,84221.0000000000,10127.0000000000,73494.0000000000 +2.26973530997920,63282.0000000000,82657.0000000000,11471.0000000000 +0.0207064935646672,80363.0000000000,28400.0000000000,79331.0000000000 +0.0432360201150028,12853.0000000000,91782.0000000000,39470.0000000000 +0.119664037731631,89599.0000000000,99002.0000000000,65058.0000000000 +0.0243135926176689,89122.0000000000,46097.0000000000,98223.0000000000 +0.000132582147006408,4304.00000000000,3995.00000000000,86052.0000000000 +0.0607586750517392,57435.0000000000,10433.0000000000,23730.0000000000 +0.0100101961598843,23210.0000000000,21470.0000000000,53314.0000000000 +0.00442317397832944,8094.00000000000,38312.0000000000,63269.0000000000 +0.378486315682081,64430.0000000000,95569.0000000000,30478.0000000000 +0.160887796893920,46041.0000000000,38856.0000000000,25197.0000000000 +0.281702789581267,52162.0000000000,85700.0000000000,30101.0000000000 +0.427783184410049,42865.0000000000,95223.0000000000,23341.0000000000 +0.0734770640453172,44945.0000000000,14287.0000000000,22338.0000000000 +0.0142486982692066,79091.0000000000,13262.0000000000,64832.0000000000 +1.11937140638530,53883.0000000000,28787.0000000000,8895.00000000000 +0.00448809402060045,42416.0000000000,13721.0000000000,86047.0000000000 +0.416246524503983,80217.0000000000,69379.0000000000,27630.0000000000 +0.0208310285740335,79895.0000000000,39561.0000000000,93078.0000000000 +3.62515390596619,14132.0000000000,69283.0000000000,3927.00000000000 +0.0478932400040429,69982.0000000000,47711.0000000000,63092.0000000000 +0.855023771217117,49606.0000000000,86975.0000000000,16974.0000000000 +0.0458919219527494,31732.0000000000,42728.0000000000,41072.0000000000 +0.00719176678370014,88733.0000000000,314.000000000000,14873.0000000000 +0.0430450462431789,51976.0000000000,30967.0000000000,46206.0000000000 +0.0669357052605486,28958.0000000000,19285.0000000000,21826.0000000000 +0.0326395408552480,23493.0000000000,73898.0000000000,55109.0000000000 +0.00370513451646434,22665.0000000000,3610.00000000000,35509.0000000000 +0.00805094912855955,14729.0000000000,81350.0000000000,92183.0000000000 +0.0448174327910526,5533.00000000000,71054.0000000000,22380.0000000000 +0.0826357521654279,44763.0000000000,38579.0000000000,34543.0000000000 +0.0890390189990516,92069.0000000000,93468.0000000000,74286.0000000000 +0.00653559244497159,40708.0000000000,15198.0000000000,73519.0000000000 +0.000292596413388293,20495.0000000000,872.000000000000,59055.0000000000 +0.367076659301130,19653.0000000000,84320.0000000000,16055.0000000000 +0.0294145841296614,39023.0000000000,88259.0000000000,81765.0000000000 +0.0699866425482626,82552.0000000000,41672.0000000000,52977.0000000000 +0.00376263167749105,78937.0000000000,4526.00000000000,73631.0000000000 +0.0588521815368639,29222.0000000000,29011.0000000000,28679.0000000000 +0.00577168709617819,90127.0000000000,6194.00000000000,74314.0000000000 +0.0228444187359627,10245.0000000000,78741.0000000000,44903.0000000000 +0.506723456446840,64052.0000000000,21311.0000000000,12402.0000000000 +0.00164887485357943,8688.00000000000,27909.0000000000,91632.0000000000 +0.0829493887557565,31628.0000000000,91204.0000000000,44560.0000000000 +0.0626649563877743,40532.0000000000,88488.0000000000,57166.0000000000 +0.0299088505608041,63869.0000000000,15485.0000000000,43452.0000000000 +0.293474474960483,73296.0000000000,97334.0000000000,37256.0000000000 +4.26730899527323,48553.0000000000,77683.0000000000,7104.00000000000 +0.0819849984124523,80026.0000000000,33448.0000000000,43176.0000000000 +0.0170679482704613,17337.0000000000,38224.0000000000,47084.0000000000 +0.0225658208163905,42393.0000000000,93109.0000000000,99937.0000000000 +0.0106605783866997,77099.0000000000,14544.0000000000,77497.0000000000 +0.191469148780048,22964.0000000000,94768.0000000000,25475.0000000000 +0.0357095017451889,85422.0000000000,10236.0000000000,37391.0000000000 +0.0105744201104428,9799.00000000000,86227.0000000000,67545.0000000000 +0.0446988879257354,71536.0000000000,19856.0000000000,42596.0000000000 +319.904015055337,22906.0000000000,51084.0000000000,457.000000000000 +0.00995449692948010,37909.0000000000,7248.00000000000,39699.0000000000 +0.0120574401929155,80217.0000000000,11882.0000000000,67183.0000000000 +17835.3219533738,22598.0000000000,97533.0000000000,84.0000000000000 +0.00442190851116912,27088.0000000000,25076.0000000000,93653.0000000000 +0.0377585793256000,53849.0000000000,67136.0000000000,73938.0000000000 +0.0729737188224999,44634.0000000000,39128.0000000000,36966.0000000000 +0.0346261358407420,33803.0000000000,70657.0000000000,62757.0000000000 +0.0661853880293942,71779.0000000000,90130.0000000000,74707.0000000000 +0.0105309607215375,51065.0000000000,17536.0000000000,69679.0000000000 +1.14788628398328,84577.0000000000,60229.0000000000,15918.0000000000 +2.31243949841884,99393.0000000000,55474.0000000000,11668.0000000000 +0.0328192684227616,38582.0000000000,60290.0000000000,63615.0000000000 +0.0288396676866798,60746.0000000000,56386.0000000000,82349.0000000000 +16.8340020586517,47379.0000000000,71344.0000000000,3386.00000000000 +0.0154748208512231,28555.0000000000,88910.0000000000,96786.0000000000 +0.0369676803902379,57206.0000000000,28560.0000000000,50234.0000000000 +1.26212122288325,48470.0000000000,30010.0000000000,8112.00000000000 +0.0492942647119386,53516.0000000000,27989.0000000000,41653.0000000000 +0.0150071482053347,63611.0000000000,22957.0000000000,74539.0000000000 +0.0262966384693957,11232.0000000000,16874.0000000000,20286.0000000000 +0.0279821733857493,79335.0000000000,59642.0000000000,98260.0000000000 +0.0492264536019811,79559.0000000000,55014.0000000000,71251.0000000000 +0.108976739507078,29801.0000000000,89900.0000000000,37466.0000000000 +1.00220698544403,57345.0000000000,97253.0000000000,17825.0000000000 +0.0168211390060292,21988.0000000000,81524.0000000000,78004.0000000000 +0.0293175765339812,87416.0000000000,40093.0000000000,82618.0000000000 +0.0194419403815124,32872.0000000000,95402.0000000000,95969.0000000000 +0.180334155445757,72559.0000000000,99363.0000000000,47778.0000000000 +0.0725117675210976,71993.0000000000,72491.0000000000,64105.0000000000 +0.00466593214482072,1962.00000000000,92355.0000000000,47089.0000000000 +0.0534002363963639,67749.0000000000,44413.0000000000,56721.0000000000 +2.50218753295454,33956.0000000000,64309.0000000000,7059.00000000000 +0.0393643394267445,39954.0000000000,70709.0000000000,64014.0000000000 +0.284360703892111,50637.0000000000,68314.0000000000,26355.0000000000 +0.0136961135111500,30576.0000000000,57158.0000000000,85357.0000000000 +0.0173616577707230,14971.0000000000,93494.0000000000,67847.0000000000 +0.00736617234573996,17256.0000000000,54417.0000000000,85315.0000000000 +0.00680689858036224,4651.00000000000,37425.0000000000,38211.0000000000 +0.00511748282358989,10441.0000000000,30343.0000000000,59454.0000000000 +0.691331192073792,71279.0000000000,71686.0000000000,20543.0000000000 +0.0741996265513342,52022.0000000000,23022.0000000000,30358.0000000000 +0.735895229702808,80356.0000000000,35819.0000000000,14944.0000000000 +0.164409538156394,56155.0000000000,73371.0000000000,37827.0000000000 +0.0260176832084806,7856.00000000000,88875.0000000000,39144.0000000000 +0.529852682778754,32037.0000000000,95525.0000000000,18160.0000000000 +1.78254428418265,69790.0000000000,24828.0000000000,7450.00000000000 +0.0501617488372758,72340.0000000000,73754.0000000000,77930.0000000000 +0.0511477472982211,33344.0000000000,30245.0000000000,33553.0000000000 +0.0715888211109884,41986.0000000000,11143.0000000000,19317.0000000000 +0.0351391120573420,50088.0000000000,48340.0000000000,62724.0000000000 +0.0419664926906800,66438.0000000000,23406.0000000000,45997.0000000000 +0.0283187259927052,80203.0000000000,8744.00000000000,37603.0000000000 +0.0333595363086248,70998.0000000000,74492.0000000000,95143.0000000000 +0.0518176127773199,41308.0000000000,88125.0000000000,63334.0000000000 +0.00850682285414567,27098.0000000000,35522.0000000000,80379.0000000000 +0.193685739342861,75963.0000000000,88951.0000000000,44631.0000000000 +1.62495099871127,70345.0000000000,27203.0000000000,8200.00000000000 +0.368377299703651,41870.0000000000,23666.0000000000,12393.0000000000 +0.0226439374265914,46051.0000000000,44011.0000000000,71488.0000000000 +0.0338730597773565,35487.0000000000,68064.0000000000,63808.0000000000 +0.0157887247043123,29401.0000000000,37519.0000000000,63160.0000000000 +0.124909969627111,48732.0000000000,77281.0000000000,41491.0000000000 +0.0430821210416047,91469.0000000000,39101.0000000000,68848.0000000000 +0.00548863670872543,32240.0000000000,11347.0000000000,61690.0000000000 +0.0457794040641579,71631.0000000000,85058.0000000000,87173.0000000000 +1.82604477981283,94696.0000000000,51194.0000000000,12312.0000000000 +0.0220369307243927,63018.0000000000,15926.0000000000,50994.0000000000 +0.00691650746364021,28291.0000000000,3969.00000000000,30446.0000000000 +0.00915813091202723,90550.0000000000,9631.00000000000,73737.0000000000 +0.00369709941465588,32180.0000000000,17165.0000000000,92362.0000000000 +1.12979244491945,53215.0000000000,73150.0000000000,14026.0000000000 +0.00594799927047347,23625.0000000000,35458.0000000000,89674.0000000000 +0.170238032333181,98066.0000000000,86055.0000000000,53202.0000000000 +0.00763831143805377,20042.0000000000,14491.0000000000,46594.0000000000 +0.0476655578482818,24389.0000000000,75837.0000000000,47070.0000000000 +0.165458290459579,92935.0000000000,78706.0000000000,50241.0000000000 +0.00148212849467364,750.000000000000,29581.0000000000,29235.0000000000 +0.0172058757511520,40120.0000000000,74455.0000000000,99563.0000000000 +0.0126241352139335,72454.0000000000,14971.0000000000,70043.0000000000 +0.130061537296887,87518.0000000000,16429.0000000000,25124.0000000000 +1.27886656772755,59049.0000000000,75507.0000000000,14109.0000000000 +0.0173477596033562,67611.0000000000,6576.00000000000,38254.0000000000 +0.00344015430057617,3318.00000000000,15996.0000000000,29680.0000000000 +0.0889919673928956,42985.0000000000,8892.00000000000,15660.0000000000 +0.0448128146391706,97607.0000000000,56379.0000000000,83735.0000000000 +0.0578602718339881,98640.0000000000,55131.0000000000,73256.0000000000 +0.00816581506354942,32350.0000000000,43584.0000000000,99291.0000000000 +0.0909356057560631,98176.0000000000,74822.0000000000,67914.0000000000 +0.0398605898485296,83059.0000000000,47484.0000000000,75163.0000000000 +0.0365845190646812,45466.0000000000,38004.0000000000,51930.0000000000 +0.0110494207481992,40363.0000000000,25214.0000000000,72519.0000000000 +0.0777119625415383,98066.0000000000,51288.0000000000,60790.0000000000 +0.00414239125599734,21081.0000000000,20610.0000000000,77387.0000000000 +9.88786559795232,21747.0000000000,17941.0000000000,1501.00000000000 +0.0274375935684394,65337.0000000000,68169.0000000000,96274.0000000000 +0.0742851628575594,97492.0000000000,94184.0000000000,84010.0000000000 +12.8906178057124,79144.0000000000,67460.0000000000,4863.00000000000 +0.00167224310543289,60671.0000000000,1661.00000000000,58659.0000000000 +0.0176071267846519,62109.0000000000,3391.00000000000,26134.0000000000 +0.0312755593979786,18569.0000000000,80733.0000000000,52315.0000000000 +0.00305049810314564,6286.00000000000,80726.0000000000,97458.0000000000 +0.0413601034555695,69586.0000000000,21775.0000000000,45736.0000000000 +0.0589126157285064,70863.0000000000,83676.0000000000,75808.0000000000 +0.00428801806604597,7351.00000000000,58297.0000000000,75540.0000000000 +0.315427769964535,35169.0000000000,24946.0000000000,12602.0000000000 +3.22757337373756,36154.0000000000,66588.0000000000,6526.00000000000 +32.6641889910870,37921.0000000000,55845.0000000000,1924.00000000000 +0.449592282806047,99812.0000000000,97797.0000000000,35209.0000000000 +0.153974577406453,57284.0000000000,35495.0000000000,27459.0000000000 +0.0486951390986474,14403.0000000000,82201.0000000000,37259.0000000000 +0.0573602022640363,14627.0000000000,45724.0000000000,25802.0000000000 +0.0000789095885176817,84225.0000000000,59.0000000000000,59964.0000000000 +0.231025433635727,66296.0000000000,86018.0000000000,37542.0000000000 +0.0810811527870808,48135.0000000000,66123.0000000000,47343.0000000000 +0.0122962612768176,67080.0000000000,12944.0000000000,63497.0000000000 +0.0229987929779328,88218.0000000000,34477.0000000000,86896.0000000000 +0.0351119295445806,61530.0000000000,92722.0000000000,96320.0000000000 +0.0318813573000814,62326.0000000000,80831.0000000000,94987.0000000000 +0.0845544504404896,32137.0000000000,87183.0000000000,43497.0000000000 +0.0354464218623218,29508.0000000000,89963.0000000000,65392.0000000000 +0.000658753235843015,7570.00000000000,7269.00000000000,69061.0000000000 +0.343081743235865,21430.0000000000,51746.0000000000,13585.0000000000 +0.0656056612271473,31180.0000000000,54784.0000000000,38557.0000000000 +0.367560587170438,43184.0000000000,76929.0000000000,22717.0000000000 +0.195886779807461,36028.0000000000,90868.0000000000,30891.0000000000 +0.0191710932078880,41568.0000000000,6772.00000000000,28955.0000000000 +0.0236120338131716,4819.00000000000,89873.0000000000,32362.0000000000 +0.111693948890681,34894.0000000000,73688.0000000000,36255.0000000000 +0.0216189668501600,78172.0000000000,13774.0000000000,53327.0000000000 +0.937885390534594,89148.0000000000,96752.0000000000,22915.0000000000 +0.0913825363738075,25646.0000000000,44799.0000000000,26793.0000000000 +0.00440936265101174,11622.0000000000,36693.0000000000,74311.0000000000 +0.631906716285501,36238.0000000000,78780.0000000000,16061.0000000000 +0.0546619524854675,13858.0000000000,67045.0000000000,31153.0000000000 +0.103007261275260,50743.0000000000,2613.00000000000,8573.00000000000 +7.86933383043515,97795.0000000000,15731.0000000000,3341.00000000000 +0.107190870768828,49581.0000000000,66760.0000000000,41990.0000000000 +0.0952208966610433,51852.0000000000,56365.0000000000,41863.0000000000 +0.463635528458423,71922.0000000000,4597.00000000000,6381.00000000000 +0.395048015186041,24125.0000000000,90418.0000000000,17756.0000000000 +0.0959018540936584,15356.0000000000,26995.0000000000,15710.0000000000 +0.104264323214354,49383.0000000000,39770.0000000000,32795.0000000000 +0.0837744170542221,89745.0000000000,63220.0000000000,62185.0000000000 +1.41342602704151,85436.0000000000,89996.0000000000,17624.0000000000 +0.0216127387978058,10410.0000000000,92221.0000000000,50361.0000000000 +0.0322104963577273,30089.0000000000,6320.00000000000,18360.0000000000 +0.0437813107791971,88713.0000000000,77995.0000000000,94993.0000000000 +0.00120640628217932,2024.00000000000,91586.0000000000,93666.0000000000 +0.0738164195410751,35714.0000000000,62479.0000000000,41545.0000000000 +0.0129480484684081,40072.0000000000,27242.0000000000,69382.0000000000 +0.00826138493848724,33216.0000000000,33964.0000000000,88301.0000000000 +0.0643816271092845,38584.0000000000,67015.0000000000,47887.0000000000 +0.101416864892682,97849.0000000000,48762.0000000000,51829.0000000000 +0.0379819518450954,17681.0000000000,52693.0000000000,37424.0000000000 +0.0159538581086227,8123.00000000000,21168.0000000000,24807.0000000000 +0.0191873678466667,89032.0000000000,14863.0000000000,62752.0000000000 +0.993160370800321,97204.0000000000,41365.0000000000,15204.0000000000 +0.0217932056816428,83823.0000000000,15474.0000000000,58295.0000000000 +0.0173073557591775,49627.0000000000,55936.0000000000,95697.0000000000 +0.0247364012119832,40283.0000000000,96461.0000000000,94706.0000000000 +0.106587420231282,73224.0000000000,31836.0000000000,35338.0000000000 +0.0273200741148729,34280.0000000000,90512.0000000000,80527.0000000000 +0.000611051021101719,16064.0000000000,6214.00000000000,96579.0000000000 +0.0500717922929264,94061.0000000000,55882.0000000000,77420.0000000000 diff --git a/python/gravity_example/gravity_colab.ipynb b/python/gravity_example/gravity_colab.ipynb new file mode 100644 index 0000000..59b679d --- /dev/null +++ b/python/gravity_example/gravity_colab.ipynb @@ -0,0 +1,445 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "source": [ + "Mount Google Drive." + ], + "metadata": { + "id": "YZx6Iz_k1wly" + } + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "_3pGop4vyRk3" + }, + "outputs": [], + "source": [ + "from google.colab import drive\n", + "drive.mount('/content/drive')" + ] + }, + { + "cell_type": "markdown", + "source": [ + "Set the path for this notebook, the input data, and the output files. " + ], + "metadata": { + "id": "QR9U1FGL2Sff" + } + }, + { + "cell_type": "code", + "source": [ + "notebook_path = \"/content/drive/MyDrive/gravity/\"\n", + "input_path = \"/content/drive/MyDrive/gravity/\"\n", + "output_path = \"/content/drive/MyDrive/gravity/\"" + ], + "metadata": { + "id": "it0TesNt2Km8" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Copy the expressions and conjecturing.py file over." + ], + "metadata": { + "id": "eoDASsHlyWQt" + } + }, + { + "cell_type": "code", + "source": [ + "!cp /content/drive/MyDrive/conjecturing/c/build/expressions {notebook_path}\n", + "!cp /content/drive/MyDrive/conjecturing/python/conjecturing.py {notebook_path}\n", + "!chmod +x {notebook_path}/expressions" + ], + "metadata": { + "id": "TyOEbUPh0sxX" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Import libraries, specify settings, and prepare data." + ], + "metadata": { + "id": "SjSuxxvp5Mw6" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import sys\n", + "from sklearn.model_selection import train_test_split\n", + "import sys\n", + "sys.path.insert(0, notebook_path)\n", + "from conjecturing import *\n", + "\n", + "# Preprocessing:\n", + "# 1. Ensure that column names are strings and have no special characters other\n", + "# than \"_\".\n", + "# 2. No column name (other than the target) should have \"TARGET\" in\n", + "# the name.\n", + "# 3. Define inv_file, prop_file, my_data, invariant_names,\n", + "# categorical_names, target, num_train, my_skips, my_time,\n", + "# complexity, use_operators. Optionally, define debug and verbose.\n", + "\n", + "inv_fname = \"2025_07_10_inv.txt\"\n", + "prop_fname = \"2025_07_10_prop.txt\"\n", + "\n", + "my_time = 5\n", + "complexity = 10\n", + "num_train = 900\n", + "my_skips = 0.0 # percentage of examples with missing data before ignoring a conjecture\n", + "use_operators = [ '-1', '+1', '*2', '/2', '^2', '-()', '1/',\n", + " 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil',\n", + " 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^']\n", + "#use_operators = [ '-1', '+1', '*2']\n", + "\n", + "print(\"Reading data! \\n\")\n", + "sys.stdout.flush()\n", + "\n", + "gravity_df = pd.read_csv(input_path + 'gravityTrainData.csv',\n", + " header=None)\n", + "\n", + "print(\"Done reading data! \\n\")\n", + "gravity_df.info()\n", + "\n", + "# convert column names to strings\n", + "gravity_df.columns = [\"F\", \"m1\", \"m2\", \"r\"]\n", + "\n", + "invariant_names = ['F','m1','m2','r']\n", + "categorical_names = []\n", + "\n", + "target = 'F'\n", + "\n", + "my_data = gravity_df" + ], + "metadata": { + "id": "IU1mHYfy5TuT" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "You probably do not need to edit the code from here to the end of the file.\n", + "\n", + "Rename the target column TARGET. Convert categorical variables to dummies. One dummy for each binary variable and one dummy for each level for variables with more than two levels." + ], + "metadata": { + "id": "usgZ9EA35bO-" + } + }, + { + "cell_type": "code", + "source": [ + "if target in categorical_names:\n", + " categorical_names[categorical_names.index(target)] = \"TARGET\"\n", + "else:\n", + " invariant_names[invariant_names.index(target)] = \"TARGET\"\n", + "\n", + "my_data = my_data.rename(columns={target: \"TARGET\"})\n", + "my_data = my_data[invariant_names + categorical_names]\n", + "\n", + "(my_df, property_names, target_property_names) = create_dummies(my_data,\n", + " categorical_names,\n", + " nan_is_level=True)" + ], + "metadata": { + "id": "fOvGNfiy1Q-P" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Define class, invariants, properties, and target properties (if applicable)." + ], + "metadata": { + "id": "ROcYRN705h7C" + } + }, + { + "cell_type": "code", + "source": [ + "Example = create_example_class(my_df,\n", + " invariant_names,\n", + " property_names,\n", + " categorical_names,\n", + " target_property_names)" + ], + "metadata": { + "id": "F--Jdvmu5i2Z" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Split into training and testing data." + ], + "metadata": { + "id": "zyjpeH1i5tAv" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " X_train, X_test = train_test_split(\n", + " my_df.index,\n", + " stratify=my_data[\"TARGET\"], # stratify on target levels\n", + " train_size=num_train,\n", + " random_state=12345\n", + " )\n", + "else:\n", + " X_train, X_test = train_test_split(\n", + " my_df.index,\n", + " train_size=num_train,\n", + " random_state=12345\n", + " )" + ], + "metadata": { + "id": "9EBvH6bJ7e02" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Create examples for conjecturing." + ], + "metadata": { + "id": "4qEghOav5xvq" + } + }, + { + "cell_type": "code", + "source": [ + "train_examples = [Example(i, my_df) for i in X_train]\n", + "test_examples = [Example(i, my_df) for i in X_test]" + ], + "metadata": { + "id": "kWNjWris5xKr" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Get lists of invariant and property functions." + ], + "metadata": { + "id": "96I8UxpO52-S" + } + }, + { + "cell_type": "code", + "source": [ + "(invariants, properties, target_properties) = (\n", + " get_invariants_properties(Example,\n", + " invariant_names,\n", + " property_names,\n", + " categorical_names,\n", + " target_property_names)\n", + " )\n" + ], + "metadata": { + "id": "17eIqTnU52iS" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Invariant conjecturing - upper and lower bounds." + ], + "metadata": { + "id": "x5pEYlkG6LvD" + } + }, + { + "cell_type": "code", + "source": [ + "inv_file = open(output_path + inv_fname, \"w\")\n", + "inv_conjectures = invariant_conjecturing(Example,\n", + " train_examples,\n", + " categorical_names,\n", + " target_property_names,\n", + " invariants,\n", + " use_operators,\n", + " complexity,\n", + " my_time,\n", + " my_skips,\n", + " inv_file,\n", + " notebook_path=notebook_path)\n", + "inv_file.close()" + ], + "metadata": { + "id": "ufVHU4ML55DH" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Property conjecturing - sufficient conditions for a categorical target values. For a binary target, get sufficient conditions for the positive class and necessary conditions for the negative class." + ], + "metadata": { + "id": "jKW6bpo16Ros" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " prop_file = open(output_path + prop_fname, \"w\")\n", + " (prop_conjs, conditions) = (\n", + " property_conjecturing(Example,\n", + " properties,\n", + " inv_conjectures,\n", + " categorical_names,\n", + " target_property_names,\n", + " train_examples,\n", + " my_time,\n", + " my_skips,\n", + " prop_file,\n", + " notebook_path=notebook_path)\n", + " )\n", + " prop_file.close()" + ], + "metadata": { + "id": "BEGMHiJM6RIy" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Apply property conjectures to train and test data if target is categorical." + ], + "metadata": { + "id": "8pmAPhil6ZJs" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " (X_train_df, X_test_df, y_train_df, y_test_df) = (\n", + " apply_property_conjectures(my_data,\n", + " my_df,\n", + " X_train,\n", + " X_test,\n", + " property_names,\n", + " invariant_names,\n", + " categorical_names,\n", + " target_property_names,\n", + " conditions,\n", + " train_examples,\n", + " test_examples)\n", + " )\n", + "\n" + ], + "metadata": { + "id": "9Xo3uZfK6YaJ" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "If the target is categorical, calculate support, precision, recall, lift, and F1 of each conjecture on the test data. The F1 score is only for the class for the sufficient condition it was derived for." + ], + "metadata": { + "id": "aCpR4lAV6esg" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " results_df = evaluate_property_conjectures(categorical_names,\n", + " target_property_names,\n", + " Example,\n", + " conditions,\n", + " test_examples,\n", + " y_test_df)\n", + "\n", + " print(results_df)" + ], + "metadata": { + "id": "ZrQXlkqk6eRq" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "If the target is an invariant/numerical, calculate the mean aboslute error of each conjecture on the test data." + ], + "metadata": { + "id": "5v1yni-QOa-V" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in invariant_names:\n", + " results_df = evaluate_invariant_conjectures(Example,\n", + " inv_conjectures,\n", + " test_examples)\n", + "print(results_df)" + ], + "metadata": { + "id": "uSCs23u1H1Cf" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "aJlLpbDDKuUC" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/python/install_conjecturing_colab.ipynb b/python/install_conjecturing_colab.ipynb new file mode 100644 index 0000000..6bfbc34 --- /dev/null +++ b/python/install_conjecturing_colab.ipynb @@ -0,0 +1,121 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "source": [ + "Mount Google Drive." + ], + "metadata": { + "id": "XR0w-REN2078" + } + }, + { + "cell_type": "code", + "source": [ + "from google.colab import drive\n", + "drive.mount('/content/drive/')" + ], + "metadata": { + "id": "9PsKjFqbuDVr" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Remove previous clones of the conjecturing repository." + ], + "metadata": { + "id": "-AN0tG-e3Bqx" + } + }, + { + "cell_type": "code", + "source": [ + "!rm -rf conjecturing/" + ], + "metadata": { + "id": "ai8_5CfmuM2V" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Clone the conjecturing repository." + ], + "metadata": { + "id": "U6ygVJXi3Fph" + } + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "JhZ9xv-dsLmz" + }, + "outputs": [], + "source": [ + "!git clone https://github.com/jpbrooks/conjecturing.git" + ] + }, + { + "cell_type": "markdown", + "source": [ + "Compile the C code." + ], + "metadata": { + "id": "kgP3d3Ka3MuD" + } + }, + { + "cell_type": "code", + "source": [ + "%cd /content/conjecturing/c/\n", + "!make clean && make" + ], + "metadata": { + "id": "1Es6MM2v3Uxg" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Copy the conjecturing files to Google Drive." + ], + "metadata": { + "id": "xJXP6fBo4YBW" + } + }, + { + "cell_type": "code", + "source": [ + "%cd /content/\n", + "!cp -r conjecturing /content/drive/MyDrive/" + ], + "metadata": { + "id": "FlGOVjTuwi6L" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/python/real_estate_example/real_estate_colab.ipynb b/python/real_estate_example/real_estate_colab.ipynb new file mode 100644 index 0000000..26e85f2 --- /dev/null +++ b/python/real_estate_example/real_estate_colab.ipynb @@ -0,0 +1,478 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "source": [ + "Mount Google Drive." + ], + "metadata": { + "id": "YZx6Iz_k1wly" + } + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "_3pGop4vyRk3" + }, + "outputs": [], + "source": [ + "from google.colab import drive\n", + "drive.mount('/content/drive')" + ] + }, + { + "cell_type": "markdown", + "source": [ + "Set the path for this notebook, the input data, and the output files. " + ], + "metadata": { + "id": "QR9U1FGL2Sff" + } + }, + { + "cell_type": "code", + "source": [ + "notebook_path = \"/content/drive/MyDrive/real_estate/\"\n", + "input_path = \"/content/drive/MyDrive/real_estate/\"\n", + "output_path = \"/content/drive/MyDrive/real_estate/\"" + ], + "metadata": { + "id": "it0TesNt2Km8" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Copy the expressions and conjecturing.py file over." + ], + "metadata": { + "id": "eoDASsHlyWQt" + } + }, + { + "cell_type": "code", + "source": [ + "!cp /content/drive/MyDrive/conjecturing/c/build/expressions {notebook_path}\n", + "!cp /content/drive/MyDrive/conjecturing/python/conjecturing.py {notebook_path}\n", + "!chmod +x {notebook_path}/expressions" + ], + "metadata": { + "id": "TyOEbUPh0sxX" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Import libraries, specify settings, and prepare data." + ], + "metadata": { + "id": "SjSuxxvp5Mw6" + } + }, + { + "cell_type": "code", + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import sys\n", + "from sklearn.model_selection import train_test_split\n", + "import sys\n", + "sys.path.insert(0, notebook_path)\n", + "from conjecturing import *\n", + "\n", + "# Preprocessing:\n", + "# 1. Ensure that column names are strings and have no special characters other\n", + "# than \"_\".\n", + "# 2. No column name (other than the target) should have \"TARGET\" in\n", + "# the name.\n", + "# 3. Define inv_file, prop_file, my_data, invariant_names,\n", + "# categorical_names, target, num_train, my_skips, my_time,\n", + "# complexity, use_operators. Optionally, define debug and verbose.\n", + "\n", + "inv_fname = \"2025_07_10_inv.txt\"\n", + "prop_fname = \"2025_07_10_prop.txt\"\n", + "\n", + "my_time = 5\n", + "complexity = 10\n", + "num_train = 900\n", + "my_skips = 0.0 # percentage of examples with missing data before ignoring a conjecture\n", + "use_operators = [ '-1', '+1', '*2', '/2', '^2', '-()', '1/',\n", + " 'sqrt', 'ln', 'log10', 'exp', '10^', 'ceil',\n", + " 'floor', 'abs', '+', '*', 'max', 'min', '-', '/', '^']\n", + "#use_operators = [ '-1', '+1', '*2']\n", + "\n", + "print(\"Reading data! \\n\")\n", + "sys.stdout.flush()\n", + "\n", + "house_df = pd.read_csv(input_path + 'trainData.csv')\n", + "\n", + "print(\"Done reading data! \\n\")\n", + "\n", + "house_df.columns = house_df.columns.str.replace(\"\\\\.\", \"_\", regex=True)\n", + "\n", + "house_df[\"cutoff\"] = 300000\n", + "\n", + "invariant_names = ['BEDS',\n", + " 'BATHS',\n", + " 'SQUARE_FEET',\n", + " 'LOT_SIZE',\n", + " 'YEAR_BUILT',\n", + " 'DAYS_ON_MARKET',\n", + " 'HOA_MONTH',\n", + " 'X__SQUARE_FEET',\n", + " 'LATITUDE',\n", + " 'LONGITUDE',\n", + " 'cutoff'\n", + " ]\n", + "categorical_names = ['TARGET',\n", + " 'PROPERTY_TYPEMobile_Manufactured_Home',\n", + " 'PROPERTY_TYPESingle_Family_Residential',\n", + " 'PROPERTY_TYPETownhouse',\n", + " 'PROPERTY_TYPEMulti_Family__2_4_Unit_',\n", + " 'PROPERTY_TYPEMulti_Family__5__Unit_',\n", + " 'PROPERTY_TYPEOther'\n", + " ]\n", + "\n", + "target = 'TARGET'\n", + "\n", + "my_data = house_df" + ], + "metadata": { + "id": "IU1mHYfy5TuT" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "You probably do not need to edit the code from here to the end of the file.\n", + "\n", + "Rename the target column TARGET. Convert categorical variables to dummies. One dummy for each binary variable and one dummy for each level for variables with more than two levels." + ], + "metadata": { + "id": "usgZ9EA35bO-" + } + }, + { + "cell_type": "code", + "source": [ + "if target in categorical_names:\n", + " categorical_names[categorical_names.index(target)] = \"TARGET\"\n", + "else:\n", + " invariant_names[invariant_names.index(target)] = \"TARGET\"\n", + "\n", + "my_data = my_data.rename(columns={target: \"TARGET\"})\n", + "my_data = my_data[invariant_names + categorical_names]\n", + "\n", + "(my_df, property_names, target_property_names) = create_dummies(my_data,\n", + " categorical_names,\n", + " nan_is_level=True)" + ], + "metadata": { + "id": "fOvGNfiy1Q-P" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Define class, invariants, properties, and target properties (if applicable)." + ], + "metadata": { + "id": "ROcYRN705h7C" + } + }, + { + "cell_type": "code", + "source": [ + "Example = create_example_class(my_df,\n", + " invariant_names,\n", + " property_names,\n", + " categorical_names,\n", + " target_property_names)" + ], + "metadata": { + "id": "F--Jdvmu5i2Z" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Split into training and testing data." + ], + "metadata": { + "id": "zyjpeH1i5tAv" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " X_train, X_test = train_test_split(\n", + " my_df.index,\n", + " stratify=my_data[\"TARGET\"], # stratify on target levels\n", + " train_size=num_train,\n", + " random_state=12345\n", + " )\n", + "else:\n", + " X_train, X_test = train_test_split(\n", + " my_df.index,\n", + " train_size=num_train,\n", + " random_state=12345\n", + " )" + ], + "metadata": { + "id": "9EBvH6bJ7e02" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Create examples for conjecturing." + ], + "metadata": { + "id": "4qEghOav5xvq" + } + }, + { + "cell_type": "code", + "source": [ + "train_examples = [Example(i, my_df) for i in X_train]\n", + "test_examples = [Example(i, my_df) for i in X_test]" + ], + "metadata": { + "id": "kWNjWris5xKr" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Get lists of invariant and property functions." + ], + "metadata": { + "id": "96I8UxpO52-S" + } + }, + { + "cell_type": "code", + "source": [ + "(invariants, properties, target_properties) = (\n", + " get_invariants_properties(Example,\n", + " invariant_names,\n", + " property_names,\n", + " categorical_names,\n", + " target_property_names)\n", + " )\n", + "\n", + "#print(properties)\n", + "#for j in train_examples:\n", + "# print(properties[0].__name__)\n", + "# print(properties[0](j))" + ], + "metadata": { + "id": "17eIqTnU52iS" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Invariant conjecturing - upper and lower bounds." + ], + "metadata": { + "id": "x5pEYlkG6LvD" + } + }, + { + "cell_type": "code", + "source": [ + "inv_file = open(output_path + inv_fname, \"w\")\n", + "inv_conjectures = invariant_conjecturing(Example,\n", + " train_examples,\n", + " categorical_names,\n", + " target_property_names,\n", + " invariants,\n", + " use_operators,\n", + " complexity,\n", + " my_time,\n", + " my_skips,\n", + " inv_file,\n", + " notebook_path=notebook_path)\n", + "inv_file.close()\n", + "\n", + "## Evaluate a conjecture\n", + "#for j in train_examples:\n", + "# print(inv_conjectures[3].__name__)\n", + "# print(j.SQUARE_FEET(), inv_conjectures[3].evaluate(j, returnBoundValue=True))\n", + "# # print(house_above_properties[0].evaluate(j, returnBoundValue=True), j.number_of_square_feet())" + ], + "metadata": { + "id": "ufVHU4ML55DH" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Property conjecturing - sufficient conditions for a categorical target values. For a binary target, get sufficient conditions for the positive class and necessary conditions for the negative class." + ], + "metadata": { + "id": "jKW6bpo16Ros" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " prop_file = open(output_path + prop_fname, \"w\")\n", + " (prop_conjs, conditions) = (\n", + " property_conjecturing(Example,\n", + " properties,\n", + " inv_conjectures,\n", + " categorical_names,\n", + " target_property_names,\n", + " train_examples,\n", + " my_time,\n", + " my_skips,\n", + " prop_file,\n", + " notebook_path=notebook_path)\n", + " )\n", + " prop_file.close()\n", + "\n", + "#print(\"conditions\")\n", + "#print(conditions[\"TARGET_0\"][0].__name__)\n", + "#for j in train_examples:\n", + "# print(j.SQUARE_FEET(), conditions[\"TARGET_0\"][0](j))\n", + "#print(conditions[\"necessary\"][0].__name__)\n", + "#for j in train_examples:\n", + "# print(j.SQUARE_FEET(), conditions[\"necessary\"][0](j))\n", + "\n", + "\n", + "#for j in train_examples:\n", + "# print(prop_conjs[0].__name__)\n", + "# print(j.BEDS(), j.SQUARE_FEET(), prop_conjs[0].evaluate(j))\n", + "\n" + ], + "metadata": { + "id": "BEGMHiJM6RIy" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "Apply property conjectures to train and test data if target is categorical." + ], + "metadata": { + "id": "8pmAPhil6ZJs" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " (X_train_df, X_test_df, y_train_df, y_test_df) = (\n", + " apply_property_conjectures(my_data,\n", + " my_df,\n", + " X_train,\n", + " X_test,\n", + " property_names,\n", + " invariant_names,\n", + " categorical_names,\n", + " target_property_names,\n", + " conditions,\n", + " train_examples,\n", + " test_examples)\n", + " )\n", + "\n" + ], + "metadata": { + "id": "9Xo3uZfK6YaJ" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "If the target is categorical, calculate support, precision, recall, lift, and F1 of each conjecture on the test data. The F1 score is only for the class for the sufficient condition it was derived for." + ], + "metadata": { + "id": "aCpR4lAV6esg" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in categorical_names:\n", + " results_df = evaluate_property_conjectures(categorical_names,\n", + " target_property_names,\n", + " Example,\n", + " conditions,\n", + " test_examples,\n", + " y_test_df)\n", + "\n", + " print(results_df)" + ], + "metadata": { + "id": "ZrQXlkqk6eRq" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "If the target is an invariant/numerical, calculate the mean aboslute error of each conjecture on the test data." + ], + "metadata": { + "id": "8v-s_Zz6Xy1k" + } + }, + { + "cell_type": "code", + "source": [ + "if \"TARGET\" in invariant_names:\n", + " results_df = evaluate_invariant_conjectures(Example,\n", + " inv_conjectures,\n", + " test_examples)\n", + "print(results_df)" + ], + "metadata": { + "id": "uSCs23u1H1Cf" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/python/real_estate_example/trainData.csv b/python/real_estate_example/trainData.csv new file mode 100644 index 0000000..3c9a841 --- /dev/null +++ b/python/real_estate_example/trainData.csv @@ -0,0 +1,1002 @@ +"TARGET","BEDS","BATHS","SQUARE.FEET","LOT.SIZE","YEAR.BUILT","DAYS.ON.MARKET","X..SQUARE.FEET","HOA.MONTH","LATITUDE","LONGITUDE","PROPERTY.TYPEMobile.Manufactured.Home","PROPERTY.TYPESingle.Family.Residential","PROPERTY.TYPETownhouse","PROPERTY.TYPEMulti.Family..2.4.Unit.","PROPERTY.TYPEMulti.Family..5..Unit.","PROPERTY.TYPEOther" +1,4,2.5,2388,8537,1985,6,262,8,38.8043489,-77.2975569,0,1,0,0,0,0 +1,2,2,1426,6969,2017,9,375,337,38.851005,-77.317099,0,0,1,0,0,0 +1,4,3.5,3424,217800,2018,19,394,280,38.8348749,-77.3360402,0,1,0,0,0,0 +1,3,3.5,2094,6969,2017,120,344,184,38.8442531,-77.3045432,0,0,1,0,0,0 +1,4,4.5,5217,6969,1989,54.5,259,280,38.8132999,-77.3694096,0,1,0,0,0,0 +1,6,7,5190,19297,2005,1,346,280,33.8621954,-84.3613931,0,1,0,0,0,0 +1,3,2,1930,13111,1925,2,404,280,33.784313,-84.3620503,0,1,0,0,0,0 +1,3,2.5,2906,6969,2017,2,179,25,33.820845,-84.37141,0,0,1,0,0,0 +1,3,2,1587,8276,1940,2,195,280,33.7421519,-84.4422303,0,1,0,0,0,0 +0,1,1,620,6969,2005,4,391,22,33.8455184,-84.3689686,0,0,0,0,0,0 +1,5,4.5,5670,33149,2002,5,220,280,33.9195944,-84.4206021,0,1,0,0,0,0 +0,2,2.5,2111,6969,1976,6,135,398,33.8621896,-84.465571,0,0,1,0,0,0 +0,4,2,1909,13068,1969,6,102,280,33.7105855,-84.334546,0,1,0,0,0,0 +1,4,2.5,2834,6969,2002,6,145,280,33.8676889,-84.4645184,0,1,0,0,0,0 +1,1,1,783,6969,2008,7,409,363,33.7780871,-84.3838967,0,0,0,0,0,0 +0,2,2,1400,6969,1925,7,200,50,33.8331921,-84.3837299,0,0,0,0,0,0 +1,4,4.5,4490,6969,2018,9,209,28,33.8676889,-84.4645184,0,0,1,0,0,0 +1,6,4.5,3849,43560,1999,12,119,21,33.6936959,-84.5681171,0,1,0,0,0,0 +1,7,8,6689,116740,2000,12,253,280,33.9015579,-84.4330847,0,1,0,0,0,0 +0,3,2,1200,6969,1924,16,150,280,33.7254839,-84.3950015,0,1,0,0,0,0 +1,4,2,1426,16988,1956,19,337,280,33.8206443,-84.3496247,0,1,0,0,0,0 +1,3,3.5,3650,6969,2004,21,112,280,33.9122781,-84.4640993,0,0,1,0,0,0 +1,3,2,1670,13068,1951,21,239,280,33.809733,-84.340087,0,1,0,0,0,0 +1,5,4.5,3604,6446,2018,21,146,42,33.7341489,-84.3244401,0,1,0,0,0,0 +1,5,6.5,7191,152460,1975,22,369,280,33.8355312,-84.4443836,0,1,0,0,0,0 +1,5,5.5,6599,20560,1987,27,220,71,33.8372815,-84.3931953,0,1,0,0,0,0 +1,4,3,2454,9583,2015,27,230,280,33.7561995,-84.3384906,0,1,0,0,0,0 +1,4,3.5,2797,6229,2018,28,181,42,33.7341489,-84.3244401,0,1,0,0,0,0 +0,3,1.5,2010,13068,1959,30,144,280,33.8580569,-84.3015609,0,1,0,0,0,0 +1,3,3.5,3798,10890,1996,33,276,13,33.8400133,-84.3663011,0,1,0,0,0,0 +1,5,5.5,5368,30491,1935,34,333,280,33.8598018,-84.3437497,0,1,0,0,0,0 +0,3,2,1449,1306,1970,37,28,280,33.601167,-84.475503,0,0,0,0,0,0 +1,5,5.5,4700,17511,2018,37,255,280,33.8870766,-84.3638574,0,1,0,0,0,0 +0,1,1,768,6969,2007,37,117,280,33.7556717,-84.4165112,0,0,0,0,0,0 +0,3,2.5,1617,6969,2018,40,141,4,33.7202711,-84.3166721,0,0,1,0,0,0 +1,4,4.5,2680,6969,2018,41,281,360,33.8049485,-84.387635,0,0,1,0,0,0 +1,3,3,3635,21780,1925,41,323,280,33.8593726,-84.3457629,0,1,0,0,0,0 +1,3,2,1356,871,1949,42,273,280,33.730382,-84.3324914,0,1,0,0,0,0 +0,3,2.5,1410,52272,1976,53,156,280,33.6819004,-84.574013,0,1,0,0,0,0 +1,5,3,2275,6969,2018,58,176,280,33.7129837,-84.3632208,0,1,0,0,0,0 +1,3,3,2027,6969,2008,58,343,1102,33.8453162,-84.3715372,0,0,0,0,0,0 +1,4,5,3523,8712,2017,61,284,280,33.7542543,-84.3084472,0,1,0,0,0,0 +0,3,3,1604,13068,2001,63,131,50,33.7208733,-84.3225461,0,1,0,0,0,0 +0,3,2.5,1777,6969,2017,63,95,49,33.6048013,-84.4442929,0,1,0,0,0,0 +1,4,3.5,3665,17424,2017,65,271,280,33.8506877,-84.2939749,0,1,0,0,0,0 +0,3,1,796,9234,1960,76,157,280,33.801922,-84.480068,0,1,0,0,0,0 +1,5,3,3720,19558,1959,89,169,280,33.9353805,-84.4020411,0,1,0,0,0,0 +1,4,3,2800,19602,1928,91,321,280,33.7964431,-84.3624404,0,1,0,0,0,0 +0,4,3,3583,10410,1965,92,71,280,33.742367,-84.5211749,0,1,0,0,0,0 +0,3,2,1776,6969,1955,93,115,280,33.6684649,-84.4001735,0,1,0,0,0,0 +1,4,2.5,3832,40815,1972,96,151,280,33.955888,-84.374593,0,1,0,0,0,0 +1,4,2.5,2239,6969,2017,103,152,42,33.707675,-84.308863,0,1,0,0,0,0 +1,3,2,1657,7013,1920,104,374,280,33.7574442,-84.3757668,0,1,0,0,0,0 +1,4,3.5,3080,6969,2017,104,252,250,33.914116,-84.383711,0,1,0,0,0,0 +1,5,3,3444,13068,1962,110,127,280,33.8585952,-84.3005133,0,1,0,0,0,0 +1,4,3,2900,49135,1961,112,259,280,33.840394,-84.362539,0,1,0,0,0,0 +0,5,2.5,2768,16988,2005,112,91,46,33.6721076,-84.5823583,0,1,0,0,0,0 +1,3,3.5,2010,6969,2018,121,303,195,33.7674408,-84.3706059,0,0,1,0,0,0 +1,6,4.5,5257,19384,1998,121,79,63,33.7226942,-84.5463394,0,1,0,0,0,0 +1,7,7.5,6883,165528,2004,126,580,280,33.8993257,-84.4317851,0,1,0,0,0,0 +1,3,3.5,4400,6969,2008,132,676,280,33.8215601,-84.3882872,0,0,0,0,0,0 +1,6,6,7681,39204,2006,138,345,280,33.7821851,-84.3397643,0,1,0,0,0,0 +1,5,3,3955,19471,1920,140,151,280,33.8167948,-84.4653179,0,1,0,0,0,0 +1,6,5.5,7083,21431,2008,142,352,280,33.8037618,-84.3555605,0,1,0,0,0,0 +1,6,4,3236,48787,1972,146,162,280,33.9789184,-84.338655,0,1,0,0,0,0 +0,3,2,1736,7840,1935,153,99,280,33.7298903,-84.4386207,0,1,0,0,0,0 +0,3,1.5,1040,31363,1962,163,58,280,33.6666049,-84.629326,0,1,0,0,0,0 +1,6,5.5,7200,21910,2016,182,302,280,33.8851154,-84.3990509,0,1,0,0,0,0 +1,3,3.5,2819,6969,2015,216,816,150,33.7836468,-84.3829526,0,0,0,0,0,0 +1,5,4.5,4837,23827,1997,219,258,280,33.8621521,-84.3661573,0,1,0,0,0,0 +1,2,1,1170,12109,1949,257,321,280,33.874569,-84.3768549,0,1,0,0,0,0 +0,2,1,1347,113256,1956,329,100,280,33.664611,-84.551194,0,1,0,0,0,0 +1,6,7.5,7581,100187,1988,404,165,17,33.9815167,-84.3012569,0,1,0,0,0,0 +0,3,1,1020,20037,1949,130,64,280,33.7128555,-84.4431326,0,1,0,0,0,0 +1,5,2.5,2279,21780,1962,249,395,280,33.8584368,-84.340203,0,1,0,0,0,0 +1,3,3.5,2213,6969,2017,75,229,280,33.846133,-84.332265,0,1,0,0,0,0 +1,4,4.5,3700,6969,2017,186,256,280,33.8163677,-84.4653435,0,1,0,0,0,0 +1,3,3.5,2285,6969,1989,54.5,245,280,33.9369881,-84.3632304,0,0,0,1,0,0 +1,3,3.5,3511,6969,1989,54.5,162,280,33.9174889,-84.2956645,0,1,0,0,0,0 +1,4,3.5,3050,6969,1989,54.5,191,280,33.9147357,-84.3842672,0,1,0,0,0,0 +0,5,4,2941,6969,1989,54.5,84,280,33.630343,-84.540346,0,1,0,0,0,0 +0,3,2.5,1708,6969,1989,54.5,96,280,33.601890563965,-84.445846557617,0,1,0,0,0,0 +0,3,2,2237,6969,1989,54.5,98,280,33.6812814,-84.5969232,0,1,0,0,0,0 +0,2,1.5,1080,1926,1956,1,119,280,39.292477,-76.521718,0,0,1,0,0,0 +0,2,1,870,6969,1954,1,34,280,39.3375028,-76.5607801,0,0,1,0,0,0 +0,2,1,920,6969,1923,1,38,280,39.2975415,-76.5708672,0,0,1,0,0,0 +0,3,2.5,1295,6969,1900,2,224,280,39.2879093,-76.5905416,0,0,1,0,0,0 +1,2,2,1224,1793,1910,2,274,280,39.2859033,-76.5741683,0,0,1,0,0,0 +0,1,1,885,6969,2005,2,225,326,39.2755786,-76.6117121,0,0,0,0,0,0 +0,2,2,1178,6969,1952,4,8,280,39.315481,-76.5684026,0,0,1,0,0,0 +0,4,2,1454,6969,1948,4,78,280,39.3595923,-76.6010793,0,0,1,0,0,0 +0,1,1,712,6969,1984,4,253,310,39.2803158,-76.6143336,0,0,0,0,0,0 +1,5,2.5,1672,3410,1939,5,257,280,39.3774844,-76.6122814,0,0,1,0,0,0 +0,3,1.5,1056,6969,1941,5,38,280,39.3457343,-76.6057421,0,0,1,0,0,0 +1,4,5,2520,1307,1900,5,262,280,39.290867,-76.5906104,0,0,1,0,0,0 +1,1,2,1980,1120,1920,6,174,280,39.2855498,-76.5708828,0,0,1,0,0,0 +0,2,1,1200,6969,1900,9,200,280,39.328638,-76.633766,0,0,1,0,0,0 +1,2,1,1078,6969,1875,10,296,280,39.2702609,-76.5900239,0,0,1,0,0,0 +1,3,2.5,1682,6969,2017,12,196,56,39.2818876,-76.5573555,0,0,1,0,0,0 +0,3,2,1531,6969,1920,12,163,790,39.3357499,-76.6211255,0,0,0,0,0,0 +1,5,4.5,3500,6969,1853,13,186,280,39.3061909,-76.6247813,0,0,1,0,0,0 +0,2,2.5,1440,6969,1920,13,208,280,39.2848579,-76.5815197,0,0,1,0,0,0 +0,3,2,1288,6969,1920,13,82,280,39.299059,-76.66193,0,0,1,0,0,0 +0,2,2.5,1559,6969,1968,13,109,528,39.3519789,-76.6453395,0,0,0,0,0,0 +0,3,1.5,1227,6165,1920,14,53,280,39.3443832,-76.6648014,0,1,0,0,0,0 +1,4,3,2822,6969,1920,15,148,280,39.306904,-76.6254359,0,0,1,0,0,0 +0,4,2.5,1104,6247,1925,15,100,280,39.3309437,-76.5594467,0,0,1,0,0,0 +0,2,1,728,6969,1900,17,295,280,39.2730581,-76.6094035,0,0,1,0,0,0 +0,3,2.5,1749,6969,1968,17,85,351,39.3700833,-76.7110274,0,0,1,0,0,0 +1,4,3,2466,1,1925,18,159,280,39.2890163,-76.7000958,0,1,0,0,0,0 +0,3,2,2226,6969,2009,19,92,200,39.279807,-76.704955,0,0,1,0,0,0 +0,3,1,1216,6969,1955,20,140,280,39.3681589,-76.5885307,0,0,1,0,0,0 +0,3,2,1298,588,1920,21,215,280,39.286128,-76.588151,0,0,1,0,0,0 +0,3,1,1232,6969,1920,21,61,280,39.3246054,-76.6042732,0,0,1,0,0,0 +0,2,1,912,828,1875,22,38,280,39.279127,-76.635791,0,0,1,0,0,0 +0,4,2,1152,6969,1920,24,52,280,39.2948803,-76.6681577,0,0,1,0,0,0 +0,2,1,1102,6969,1942,30,95,280,39.2804947,-76.700644,0,0,1,0,0,0 +0,1,1,745,6969,2005,34,248,599,39.2771286,-76.6054421,0,0,1,0,0,0 +0,3,1.5,1180,436,1940,34,122,280,39.2974221,-76.6792602,0,0,1,0,0,0 +0,4,1.5,1360,1307,1924,39,73,280,39.2968727,-76.6761138,0,0,1,0,0,0 +0,4,1,1584,6969,1930,40,25,280,39.351336,-76.607731,0,0,1,0,0,0 +0,5,2,1688,6969,1930,48,59,280,39.2949936,-76.6843308,0,0,1,0,0,0 +1,4,3.5,2940,6969,2010,49,213,280,39.2805474,-76.5708331,0,0,1,0,0,0 +0,3,3,1413,6969,2009,51,152,200,39.279619,-76.7049651,0,0,1,0,0,0 +0,2,1.5,780,1827,1923,67,128,280,39.224145,-76.586985,0,0,1,0,0,0 +1,3,2.5,1908,10030,1959,77,216,280,39.3767061,-76.6768016,0,1,0,0,0,0 +0,4,1.5,1396,35898,1958,84,85,280,39.3275073,-76.5551988,0,1,0,0,0,0 +0,4,2.5,1745,7148,1907,84,126,280,39.3632873,-76.6107451,0,1,0,0,0,0 +0,2,1,960,6969,1920,84,72,280,39.2965014,-76.5731291,0,0,1,0,0,0 +0,2,2,1372,6969,2007,100,208,280,39.2739572,-76.6097072,0,1,0,0,0,0 +0,3,2,1336,6969,1919,103,52,280,39.293511,-76.68313,0,0,1,0,0,0 +0,3,1,1064,6969,1920,107,15,280,39.2988421,-76.6618239,0,0,1,0,0,0 +0,3,2,1140,13068,1950,110,99,280,39.357248,-76.578942,0,0,1,0,0,0 +1,3,3.5,3595,3683,2017,114,178,317,39.3898579,-76.6616859,0,0,1,0,0,0 +1,3,3.5,1759,6969,2018,120,342,80,39.2717552,-76.5913544,0,0,1,0,0,0 +0,3,2,1160,6969,1930,125,99,280,39.3237733,-76.5692097,0,0,1,0,0,0 +1,3,2.5,1917,6969,2017,126,188,56,39.2818876,-76.5573555,0,0,1,0,0,0 +1,4,3,1832,6969,1910,128,235,280,39.2859604,-76.5738075,0,0,1,0,0,0 +0,3,1,1432,6969,1920,131,7,280,39.3113194,-76.6419015,0,0,1,0,0,0 +0,3,1,1040,6969,1940,140,47,280,39.236449,-76.6051704,0,0,1,0,0,0 +1,6,3,4824,6969,1907,146,80,280,39.3135,-76.637437,0,0,1,0,0,0 +0,3,1,1392,871,1900,151,29,280,39.286632,-76.6306821,0,1,0,0,0,0 +0,3,2,1200,6969,1938,155,63,280,39.3279196,-76.5646702,0,0,1,0,0,0 +1,2,2.5,1989,6969,2007,158,372,1843,39.2804736,-76.6059791,0,0,0,0,0,0 +0,2,2.5,1761,960,1920,166,129,280,39.2973165,-76.5884205,0,0,1,0,0,0 +0,2,2,1211,6969,1903,170,124,733,39.3021734,-76.6157222,0,0,0,0,0,0 +0,2,2,1148,6969,2008,179,239,403,39.2888883,-76.6094546,0,0,0,0,0,0 +0,2,1.5,978,2178,1898,207,128,280,39.2809945,-76.6315163,0,0,1,0,0,0 +0,3,1.5,1346,871,1900,209,186,280,39.2923775,-76.5816996,0,0,1,0,0,0 +1,3,2.5,1168,6969,1920,210,325,280,39.2819178,-76.5789026,0,0,1,0,0,0 +0,3,1.5,1890,14100,1939,226,53,280,39.296949,-76.6818982,0,0,1,0,0,0 +0,5,2,1715,6246,1960,261,102,280,39.3641357,-76.5632547,0,1,0,0,0,0 +0,2,2,1230,1393920,1900,265,63,280,39.2781275,-76.6289225,0,0,1,0,0,0 +0,3,1,1220,1307,1938,284,160,280,39.3335147,-76.6038615,0,0,1,0,0,0 +0,5,2,1594,7497,1930,329,91,280,39.2803331,-76.7100789,0,1,0,0,0,0 +0,2,3,1188,6969,1942,335,105,280,39.2790657,-76.5363845,0,0,1,0,0,0 +0,2,1,1048,5977,1893,349,181,280,39.374013,-76.6504735,0,0,1,0,0,0 +0,7,3.5,2824,7650,1920,351,78,280,39.3185311,-76.6760261,0,1,0,0,0,0 +0,4,2,2460,6969,1940,352,71,280,39.2245751,-76.5912581,0,0,0,1,0,0 +0,2,2,1297,6969,1967,352,35,890,39.3621162,-76.6998558,0,0,0,0,0,0 +0,2,1,1218,6969,1922,366,119,280,39.2912115,-76.5684691,0,0,1,0,0,0 +0,3,3,2752,5270,2008,392,100,280,39.3470475,-76.6411986,0,0,1,0,0,0 +0,3,2.5,2838,8100,1913,401,83,280,39.3300342,-76.6820986,0,0,0,1,0,0 +0,2,2,1105,887,1915,630,144,280,39.288695,-76.5568998,0,0,1,0,0,0 +0,2,1.5,1088,4100,1985,965,55,280,39.3394769,-76.6074751,0,1,0,0,0,0 +0,3,1.5,1372,10511,1959,9,147,280,37.5247765,-77.5131893,0,1,0,0,0,0 +1,5,2.5,2828,19645,2003,14,118,280,37.4324069,-77.571278,0,1,0,0,0,0 +0,3,2.5,1528,2517,2018,18,115,280,37.556717,-77.426827,0,1,0,0,0,0 +1,3,2.5,2118,5401,1910,34,168,280,37.5704374,-77.4314927,0,1,0,0,0,0 +0,3,2.5,1936,12458,1986,37,116,7,37.3846181,-77.4788758,0,1,0,0,0,0 +1,4,3,2920,26876,1972,82,113,280,37.4896992,-77.6144333,0,1,0,0,0,0 +1,3,2,2509,6969,2017,113,132,188,37.5756328,-77.485494,0,0,0,0,0,0 +1,5,4.5,5174,28401,1990,117,112,21,37.4555433,-77.5678078,0,1,0,0,0,0 +1,4,3.5,4336,24999,2017,131,314,280,37.5678125,-77.5301112,0,1,0,0,0,0 +0,3,2,1942,15594,1979,141,110,280,37.490159,-77.582809,0,1,0,0,0,0 +0,3,2,1688,21692,1979,163,107,280,37.4548731,-77.458836,0,1,0,0,0,0 +1,5,4,3838,6721,2007,176,124,280,37.5422433,-77.5576688,0,1,0,0,0,0 +1,4,2.5,2542,2125,1896,307,185,280,37.5272332,-77.4133738,0,1,0,0,0,0 +1,4,2.5,2400,14374,2016,678,204,280,37.5112932,-77.5560558,0,1,0,0,0,0 +0,3,2,1666,6969,1989,54.5,156,280,37.416359,-77.45887,0,1,0,0,0,0 +0,3,2.5,1564,6969,1989,54.5,131,280,37.5373258,-77.3453453,0,0,1,0,0,0 +0,2,2,1036,6969,1972,1,75,517,25.9232018,-80.2071665,0,0,0,0,0,0 +0,1,1,580,6969,1966,1,217,150,25.728089,-80.3029107,0,0,0,0,0,0 +1,4,2,2035,15857,1979,1,280,280,25.6497446,-80.3789788,0,1,0,0,0,0 +0,3,2,1400,6969,1980,1,114,375,25.9579859,-80.186031,0,0,0,0,0,0 +1,3,3.5,2441,4866,1991,1,172,280,25.6607404,-80.4266104,0,1,0,0,0,0 +0,1,1.5,1125,6969,1972,1,126,320,25.7753608,-80.3470565,0,0,0,0,0,0 +1,2,2,1320,6969,1970,2,253,568,25.7498837,-80.2016068,0,0,0,0,0,0 +1,3,3,1662,6969,2008,2,415,940,25.7700913,-80.1946615,0,0,0,0,0,0 +0,1,1.5,787,6969,1983,2,198,280,25.6671127,-80.3756118,0,0,0,0,0,0 +1,4,2.5,1876,6969,2014,3,175,35,25.676648,-80.4666869,0,0,1,0,0,0 +1,2,2.5,2139,6969,2003,4,888,1957,25.759088,-80.1918167,0,0,0,0,0,0 +0,3,1,792,3600,1957,5,170,280,25.8363196,-80.227622,0,1,0,0,0,0 +0,1,1,825,6969,2005,5,345,585,25.7619908,-80.1904187,0,0,0,0,0,0 +1,6,4,4133,17769,1983,5,201,280,25.6518438,-80.3653865,0,1,0,0,0,0 +0,2,2,1131,6969,1975,6,167,211,25.7729223,-80.3443905,0,0,0,0,0,0 +1,4,3,2179,7500,1939,7,394,280,25.8409061,-80.1812075,0,1,0,0,0,0 +0,2,2,1315,6969,1969,7,81,280,25.9509727,-80.1662964,0,0,0,0,0,0 +1,5,4,3767,14324,2005,7,235,280,25.6971352,-80.3980912,0,1,0,0,0,0 +0,3,1,1032,7452,1972,7,136,280,25.8527579,-80.2390995,0,1,0,0,0,0 +1,4,3,2450,206474,1991,8,244,280,25.625366,-80.5367289,0,1,0,0,0,0 +1,3,3.5,2293,6969,2001,8,783,1383,25.769324,-80.183769,0,0,0,0,0,0 +0,3,2.5,1462,6969,1998,8,161,129,25.6020687,-80.4178956,0,0,1,0,0,0 +0,1,1.5,846,6969,2008,9,343,600,25.7700913,-80.1946615,0,0,0,0,0,0 +0,3,2,1393,3703,1996,9,208,149,25.6055152,-80.4235025,0,1,0,0,0,0 +1,6,3,2313,4926,1975,11,194,280,25.6909387,-80.3808924,0,1,0,0,0,0 +0,3,2,1470,6969,1978,12,156,515,25.705062,-80.37838,0,0,1,0,0,0 +1,8,9.5,7454,38332,2012,13,670,280,25.682723,-80.28844,0,1,0,0,0,0 +0,2,2,1229,6969,1982,13,216,280,25.8380103,-80.1804443,0,0,0,0,0,0 +1,5,3.5,2757,7875,1991,13,167,280,25.627932,-80.4280231,0,1,0,0,0,0 +1,2,2,1274,6969,2015,13,389,280,25.7644398,-80.1952502,0,0,0,0,0,0 +1,4,3.5,2431,9180,1961,14,148,280,25.6225169,-80.3550114,0,1,0,0,0,0 +1,1,1,820,6969,2006,14,415,443,25.7596392,-80.1902581,0,0,0,0,0,0 +0,1,1.5,669,6969,1983,14,224,125,25.751496,-80.366863,0,0,1,0,0,0 +0,1,1.5,878,6969,2008,16,302,628,25.761033,-80.194396,0,0,0,0,0,0 +1,2,3,1137,6969,2017,19,879,898,25.8050525,-80.1855812,0,0,0,0,0,0 +1,3,3.5,2597,7928,2002,19,168,280,25.6566244,-80.4113956,0,1,0,0,0,0 +0,4,2,1580,10074,1961,20,158,280,25.5603514,-80.3653645,0,1,0,0,0,0 +0,2,2,900,6969,2006,20,188,280,25.7897443,-80.2362272,0,0,0,0,0,0 +1,2,2,1100,6969,1974,21,341,280,25.750841,-80.1998881,0,0,0,0,0,0 +0,3,2.5,1499,1827,2000,22,195,59,25.6753476,-80.4590087,0,1,0,0,0,0 +1,4,3,2852,15028,1960,22,261,280,25.645531,-80.311428,0,1,0,0,0,0 +1,4,2,1476,5766,1962,23,352,280,25.7502704,-80.2999171,0,1,0,0,0,0 +1,3,3,1380,6969,2016,23,659,280,25.7599083,-80.1982944,0,0,0,0,0,0 +1,2,2,1255,6969,2008,25,474,820,25.7825067,-80.1901188,0,0,0,0,0,0 +1,2,2.5,1594,6969,2006,25,423,1005,25.7596392,-80.1902581,0,0,0,0,0,0 +1,1,1,738,6969,2008,27,461,627,25.7684475,-80.1913487,0,0,0,0,0,0 +0,2,2,1197,6969,1975,27,146,461,25.9555638,-80.1888997,0,0,0,0,0,0 +1,3,2.5,2300,6969,2005,27,326,335,25.734842,-80.242014,0,0,1,0,0,0 +1,3,2,1252,6969,1953,28,315,280,25.8186573,-80.2261842,0,1,0,0,0,0 +1,4,3,2759,33062,1958,28,542,280,25.6525143,-80.3024637,0,1,0,0,0,0 +1,8,4,1438,6969,1926,28,330,280,25.8390803,-80.1853052,0,0,0,1,0,0 +1,2,2,1087,6969,2008,28,322,616,25.7700913,-80.1946615,0,0,0,0,0,0 +1,2,2,1600,6969,1978,30,344,280,25.7336129,-80.235634,0,0,1,0,0,0 +1,2,2,1181,6969,2008,30,356,864,25.8078394,-80.192227,0,0,0,0,0,0 +1,4,2.5,2193,5502,1998,30,176,280,25.6342054,-80.4321957,0,1,0,0,0,0 +0,2,1,758,6969,1986,31,231,180,25.7752355,-80.3827357,0,0,0,0,0,0 +1,4,4,3177,6000,2005,33,157,50,25.7075302,-80.459617,0,1,0,0,0,0 +1,3,3,1488,6969,2002,33,534,880,25.768564,-80.186445,0,0,0,0,0,0 +0,3,2.5,1312,6900,1952,35,221,280,25.877934,-80.165966,0,1,0,0,0,0 +1,3,2,1403,6969,2012,35,299,280,25.7997351,-80.1865257,0,0,0,0,0,0 +1,2,2,1110,6969,2018,35,463,280,25.7907062,-80.1923857,0,0,0,0,0,0 +0,2,2,900,6969,1997,36,211,215,25.6243969,-80.41094,0,0,0,0,0,0 +1,3,3,2130,6969,2004,36,878,280,25.7603319,-80.189341,0,0,0,0,0,0 +0,2,2,1121,6969,1985,36,133,340,25.9727341,-80.1849215,0,0,0,0,0,0 +1,4,3.5,4257,43560,2005,37,329,280,25.6801407,-80.372346,0,1,0,0,0,0 +1,4,3.5,2184,5850,1936,37,196,280,25.7626152,-80.2343315,0,1,0,0,0,0 +0,3,1,1308,3600,1955,40,157,280,25.8370889,-80.222566,0,1,0,0,0,0 +1,6,6,7074,36900,2017,40,281,280,25.7073189,-80.3564426,0,1,0,0,0,0 +0,3,2,1492,4323,1981,40,188,281,25.6787621,-80.4357162,0,1,0,0,0,0 +1,2,2,1159,6969,2007,41,344,884,25.8042161,-80.1864832,0,0,0,0,0,0 +1,5,3,3113,12000,1979,41,148,280,25.9649437,-80.1866783,0,1,0,0,0,0 +1,4,3,1807,8657,1959,41,230,280,25.7649936,-80.3250752,0,1,0,0,0,0 +1,2,2.5,1140,6969,2017,42,412,580,25.7641113,-80.1977438,0,0,0,0,0,0 +1,4,2.5,2223,3980,2013,43,200,382,25.9523161,-80.1855794,0,1,0,0,0,0 +0,1,2,882,6969,2004,44,248,506,25.7837571,-80.2086978,0,0,0,0,0,0 +0,2,1,845,6969,1965,44,136,205,25.94711,-80.165852,0,0,0,0,0,0 +0,1,1,806,6969,2008,44,310,573,25.7765341,-80.1888665,0,0,0,0,0,0 +1,3,3.5,2629,6000,2003,45,163,280,25.6296997,-80.4507528,0,1,0,0,0,0 +1,2,3,1494,6969,2017,48,736,280,25.7640137,-80.1912975,0,0,0,0,0,0 +0,1,1,727,6969,2006,48,413,443,25.7678202,-80.1960753,0,0,0,0,0,0 +1,1,1,791,6969,2007,49,424,486,25.792482,-80.187149,0,0,0,0,0,0 +1,2,2,1169,6969,2005,49,418,603,25.7716366,-80.1858045,0,0,0,0,0,0 +0,3,1,472,6969,2015,49,422,380,25.8156264,-80.1891629,0,0,0,0,0,0 +1,3,2,1286,6135,1947,49,334,280,25.7434482,-80.2337215,0,1,0,0,0,0 +1,2,1,1097,6450,1948,49,278,280,25.7690035,-80.2974357,0,1,0,0,0,0 +0,1,1,630,6969,2006,50,413,280,25.7598741,-80.1906886,0,0,0,0,0,0 +0,2,2,948,6969,1980,51,195,265,25.6877679,-80.445183,0,0,0,0,0,0 +1,7,5,1973,6969,1925,51,342,280,25.7648285,-80.2150388,0,0,0,1,0,0 +0,3,2.5,1704,6969,2003,51,176,170,25.7377285,-80.4412625,0,0,1,0,0,0 +0,2,2,1405,6969,1982,51,100,499,25.959348,-80.192053,0,0,0,0,0,0 +1,2,2,1012,6969,2014,51,445,1022,25.760372,-80.190197,0,0,0,0,0,0 +0,1,1,611,6969,1973,55,180,200,25.7991696,-80.2392619,0,0,0,0,0,0 +1,3,4,1863,6969,2017,55,631,1244,25.8050525,-80.1855812,0,0,0,0,0,0 +1,1,1,750,6969,2001,55,440,642,25.7621838,-80.1889886,0,0,0,0,0,0 +1,3,3,2215,7500,1949,55,361,280,25.7412283,-80.2300062,0,1,0,0,0,0 +0,1,1,821,6969,2008,56,353,503,25.792482,-80.187149,0,0,0,0,0,0 +1,2,2,1289,6969,2006,58,380,700,25.7689999,-80.191845,0,0,0,0,0,0 +0,2,2.5,1346,6969,1972,58,171,340,25.686984,-80.415003,0,0,1,0,0,0 +0,3,2,1184,1,1954,61,162,280,25.8935064,-80.2298876,0,1,0,0,0,0 +1,2,2,1134,6969,2016,62,626,986,25.762775,-80.192463,0,0,0,0,0,0 +1,2,3.5,2580,6969,1997,63,793,1989,25.7555391,-80.1950766,0,0,0,0,0,0 +1,2,1,793,6969,1974,63,415,431,25.731588,-80.2381149,0,0,0,0,0,0 +0,2,1,850,6969,1952,64,241,280,25.851108,-80.2305411,0,1,0,0,0,0 +1,2,2.5,1647,6969,2009,64,424,1315,25.7851774,-80.1900783,0,0,0,0,0,0 +0,1,1.5,865,6969,2008,64,289,450,25.7765341,-80.1888665,0,0,0,0,0,0 +1,2,1,1285,6750,1941,68,331,280,25.7668586,-80.2357771,0,1,0,0,0,0 +0,2,2,990,6969,1973,68,303,592,25.8097771,-80.1865475,0,0,0,0,0,0 +0,1,1,539,6969,2000,68,342,238,25.7352724,-80.2383613,0,0,0,0,0,0 +1,4,2,2237,15312,1970,69,215,280,25.6337588,-80.3439823,0,1,0,0,0,0 +1,4,3,2713,5000,2004,75,158,280,25.6866461,-80.4588349,0,1,0,0,0,0 +1,1,1,901,6969,2015,77,499,280,25.763224,-80.193432,0,0,0,0,0,0 +0,2,1.5,891,6969,1980,78,222,205,25.776443,-80.339694,0,0,0,0,0,0 +0,2,2,1262,6969,1980,82,214,63,25.7002011,-80.3652342,0,1,0,0,0,0 +1,7,2,2096,7650,1959,84,186,280,25.7305521,-80.3521836,0,1,0,0,0,0 +0,2,1,860,6969,1965,84,140,280,25.9471081,-80.1672831,0,0,0,0,0,0 +0,2,2,900,6969,2006,84,206,259,25.7899426,-80.2367071,0,0,0,0,0,0 +1,5,4,2564,14668,1926,85,702,280,25.852878,-80.175355,0,1,0,0,0,0 +0,2,2,1060,6969,1978,85,189,351,25.6714415,-80.3749579,0,0,0,0,0,0 +0,1,1,1149,6969,1972,85,126,379,25.7776617,-80.3452006,0,1,0,0,0,0 +1,1,1.5,938,6969,2008,85,554,670,25.7834355,-80.190181,0,0,0,0,0,0 +0,2,1,980,6969,2004,89,274,408,25.80122,-80.186789,0,0,0,0,0,0 +1,4,2.5,2372,5880,2005,89,188,280,25.754081,-80.4441909,0,1,0,0,0,0 +0,1,1,696,6969,2008,89,352,519,25.7940769,-80.1870706,0,0,0,0,0,0 +1,5,5,3344,5500,2014,92,148,31,25.679242,-80.4684797,0,1,0,0,0,0 +1,2,2,1006,6969,2008,93,337,815,25.77699,-80.188798,0,0,0,0,0,0 +1,2,2,1404,6969,2017,93,556,950,25.764055,-80.1923013,0,0,0,0,0,0 +1,2,2.5,1505,6969,2005,93,631,960,25.7690507,-80.187027,0,0,0,0,0,0 +1,5,3.5,3000,7000,2018,94,242,280,25.7686931,-80.2479962,0,1,0,0,0,0 +1,3,3,2292,4320,1987,96,174,280,25.7636777,-80.3438193,0,1,0,0,0,0 +1,4,2,1829,6969,1940,96,185,280,25.796792,-80.22526,0,0,0,1,0,0 +1,2,2,1061,6969,2007,96,424,755,25.755381,-80.2075334,0,0,0,0,0,0 +0,3,3,1440,6969,2002,97,198,240,25.6339214,-80.4134844,0,0,1,0,0,0 +0,4,2,2127,23750,1942,97,118,280,25.5623943,-80.3807184,0,1,0,0,0,0 +0,1,1.5,740,6969,1967,97,135,275,25.9155732,-80.1863887,0,0,0,0,0,0 +1,4,2,1707,7500,1977,98,275,280,25.658762,-80.380327,0,1,0,0,0,0 +1,1,1.5,896,6969,2017,99,948,846,25.7581064,-80.1924028,0,0,0,0,0,0 +1,4,3,2182,5000,1985,100,140,280,25.5869946,-80.3856762,0,1,0,0,0,0 +1,2,1,1004,6013,1939,103,314,280,25.8505184,-80.1921052,0,1,0,0,0,0 +0,2,1.5,868,6969,1998,105,200,280,25.778974,-80.325325,0,0,0,0,0,0 +1,3,2,1679,7100,1952,107,223,280,25.7582801,-80.2313074,0,1,0,0,0,0 +1,2,2.5,1262,6969,2017,107,871,102,25.7581064,-80.1924028,0,0,0,0,0,0 +0,1,1,688,6969,1964,109,94,302,25.9297265,-80.1736926,0,0,0,0,0,0 +1,4,2,1748,6969,1945,111,280,280,25.8779674,-80.1925017,0,0,0,1,0,0 +1,3,2,1368,15017,1956,113,416,280,25.6488404,-80.3273817,0,1,0,0,0,0 +1,2,2,1116,6969,2004,114,322,631,25.7620552,-80.1935173,0,0,0,0,0,0 +1,2,3,1428,7140,1957,114,389,280,25.8452625,-80.1800304,0,1,0,0,0,0 +1,5,6,4600,17969,2017,118,261,280,25.744643,-80.3723471,0,1,0,0,0,0 +1,2,2,1460,6969,1974,119,394,980,25.750841,-80.1998881,0,0,0,0,0,0 +1,2,3,1041,6969,2007,120,316,700,25.7758982,-80.1900667,0,0,0,0,0,0 +1,2,2,1139,6969,2014,120,716,1007,25.760372,-80.190197,0,0,0,0,0,0 +0,2,2,1132,6969,1966,121,132,334,25.945476,-80.1715399,0,0,0,0,0,0 +0,1,1,540,6969,2008,121,444,487,25.7712819,-80.1876583,0,0,0,0,0,0 +0,1,1.5,782,6969,1969,121,326,500,25.7491305,-80.2018126,0,0,0,0,0,0 +1,3,2.5,2011,5632,1984,124,259,280,25.6789185,-80.3966019,0,1,0,0,0,0 +1,2,2.5,1229,6969,2017,125,689,779,25.8050654,-80.1862369,0,0,0,0,0,0 +1,3,3.5,3050,8525,1950,125,410,280,25.856857,-80.174875,0,1,0,0,0,0 +1,2,2,1030,6969,2008,125,374,720,25.7704554,-80.1942628,0,0,0,0,0,0 +1,5,4,2312,6969,2015,125,172,45,25.6778507,-80.4717155,0,0,1,0,0,0 +1,3,3,2061,6000,1936,126,305,280,25.84158,-80.180634,0,1,0,0,0,0 +1,4,4.5,2543,6969,2017,126,904,1565,25.7655385,-80.1938276,0,0,0,0,0,0 +0,3,1,588,6969,1937,128,372,280,25.7882508,-80.2250513,0,1,0,0,0,0 +1,5,4.5,3340,11342,1952,131,509,280,25.7443741,-80.2203019,0,1,0,0,0,0 +1,3,2,1775,7500,1953,132,214,280,25.7392409,-80.3019631,0,1,0,0,0,0 +1,4,3.5,2650,8418,1976,133,179,280,25.7548363,-80.3998305,0,1,0,0,0,0 +0,1,1.5,651,6969,2007,134,295,430,25.7758982,-80.1900667,0,0,0,0,0,0 +1,3,3,2204,6969,1945,135,154,280,25.7714275,-80.2859746,0,0,0,1,0,0 +0,3,2,1012,7500,1957,141,246,280,25.9716418,-80.1819922,0,1,0,0,0,0 +1,4,2.5,2037,3705,1980,142,167,75,25.756796,-80.410922,0,1,0,0,0,0 +1,3,3.5,1443,6969,2017,142,676,280,25.7656899,-80.1939008,0,0,0,0,0,0 +1,3,3,1537,6969,1939,142,357,280,25.7519967,-80.2274913,0,1,0,0,0,0 +1,1,1,1176,6969,2008,142,259,744,25.7765341,-80.1888665,0,0,0,0,0,0 +1,2,2,1203,6969,2008,146,665,911,25.77699,-80.188798,0,0,0,0,0,0 +1,7,8.5,6858,40249,1998,148,408,280,25.6849964,-80.3008095,0,1,0,0,0,0 +0,1,1.5,930,6969,1975,148,296,522,25.750841,-80.1998881,0,0,0,0,0,0 +1,2,2,1105,6969,2005,148,412,636,25.7619908,-80.1904187,0,0,0,0,0,0 +1,6,4,2670,6969,1955,148,224,280,25.8084294,-80.237991,0,0,0,1,0,0 +1,2,2.5,1440,6969,1981,152,590,830,25.7905292,-80.1789879,0,0,0,0,0,0 +0,3,2,1095,8062,1936,154,160,280,25.8746856,-80.2139835,0,1,0,0,0,0 +1,1,1,783,6969,2016,155,562,605,25.762775,-80.192463,0,0,0,0,0,0 +0,2,2,985,6969,2007,156,277,357,25.756245,-80.238777,0,0,0,0,0,0 +1,6,2,2377,6969,1973,157,229,280,25.747717,-80.220534,0,0,0,1,0,0 +1,4,4,4198,6969,2008,159,1167,2592,25.7825067,-80.1901188,0,0,0,0,0,0 +1,7,8.5,9912,46609,2014,159,499,280,25.6770871,-80.3167407,0,1,0,0,0,0 +1,2,2,1430,6969,1983,160,769,1504,25.7899502,-80.1743516,0,0,0,0,0,0 +1,5,3,2627,6037,1984,166,169,280,25.7624935,-80.3426543,0,1,0,0,0,0 +1,2,2.5,1276,6969,2017,170,650,280,25.7655385,-80.1938276,0,0,0,0,0,0 +1,3,2,1895,7875,1976,175,221,280,25.758636,-80.3409148,0,1,0,0,0,0 +1,2,2,931,6969,2015,183,478,561,25.763224,-80.193432,0,0,0,0,0,0 +1,3,4.5,3730,6969,2003,191,999,3905,25.759088,-80.1918167,0,0,0,0,0,0 +1,3,3.5,2394,6969,2007,205,459,1063,25.7821792,-80.2123712,0,0,0,0,0,0 +0,2,2,1140,6969,1968,207,122,563,25.9458736,-80.1748132,0,0,0,0,0,0 +1,2,2,1390,6969,1986,210,385,280,25.791316,-80.1861552,0,0,0,0,0,0 +1,4,2,2381,11700,1977,211,174,79,25.6686856,-80.4092739,0,1,0,0,0,0 +1,4,5.5,8042,6969,2009,212,1728,6475,25.7849923,-80.1903593,0,0,0,0,0,0 +1,4,1,1281,6250,1925,218,371,280,25.8347385,-80.1867001,0,1,0,0,0,0 +1,2,2,980,6969,2017,219,611,280,25.7656899,-80.1939008,0,0,0,0,0,0 +1,4,2,1404,7800,1954,225,260,280,25.718756,-80.3427423,0,1,0,0,0,0 +1,4,3,2167,6969,2017,230,683,280,25.764055,-80.1923013,0,0,0,0,0,0 +0,2,2,1353,6969,1972,231,163,902,25.8796349,-80.1643874,0,0,0,0,0,0 +1,6,5,3956,16860,1966,236,253,280,25.6707051,-80.309929,0,1,0,0,0,0 +1,2,2,1181,6969,2008,238,372,829,25.8078394,-80.192227,0,0,0,0,0,0 +0,1,1,692,6969,2008,240,389,458,25.8000517,-80.1886459,0,0,0,0,0,0 +1,1,1,806,6969,2008,245,378,280,25.77699,-80.188798,0,0,0,0,0,0 +1,3,3,1544,6969,2010,247,440,1086,25.769549,-80.195165,0,0,0,0,0,0 +1,1,1,876,6969,2009,250,502,733,25.7686625,-80.188727,0,0,0,0,0,0 +1,5,4.5,5078,27225,1993,252,217,280,25.7412475,-80.4186121,0,1,0,0,0,0 +0,2,2,800,6969,1974,253,138,225,25.582241,-80.37606,0,0,0,0,0,0 +1,3,2.5,1655,6969,1997,254,526,1215,25.7679508,-80.186447,0,0,0,0,0,0 +1,2,2,1263,6969,2008,260,499,280,25.8078394,-80.192227,0,0,0,0,0,0 +1,4,3,2713,5000,2004,266,155,280,25.6864649,-80.458274,0,1,0,0,0,0 +1,2,2.5,1203,6969,2017,268,648,788,25.8050525,-80.1855812,0,0,0,0,0,0 +0,3,1,716,6969,1985,271,306,149,25.727219,-80.2448284,0,0,0,0,0,0 +1,2,2,1386,6969,2009,273,476,1590,25.7686625,-80.188727,0,0,0,0,0,0 +1,2,2.5,1255,6969,2008,273,518,280,25.7825067,-80.1901188,0,0,0,0,0,0 +1,1,2,1373,6969,2008,274,283,1004,25.8078394,-80.192227,0,0,0,0,0,0 +1,2,2,1200,6969,2008,286,350,280,25.7684475,-80.1913487,0,0,0,0,0,0 +1,3,4,1898,6969,2017,286,738,1244,25.8050525,-80.1855812,0,0,0,0,0,0 +0,3,1,1290,6148,1938,294,87,280,25.8331706,-80.2127832,0,1,0,0,0,0 +1,2,2,931,6969,2015,295,628,592,25.763224,-80.193432,0,0,0,0,0,0 +1,4,3,3794,39640,1989,301,244,280,25.5572273,-80.4898011,0,1,0,0,0,0 +1,2,2.5,1878,6969,2004,301,932,1541,25.7603319,-80.189341,0,0,0,0,0,0 +1,1,1,977,7500,1980,306,383,280,25.7387666,-80.2981213,0,1,0,0,0,0 +1,2,2,1169,6969,2005,306,385,626,25.7717266,-80.1854236,0,0,0,0,0,0 +1,2,3,1700,6969,1990,307,382,498,25.727731,-80.24122,0,0,0,0,0,0 +0,3,1,481,6969,2007,307,518,280,25.774802,-80.1881439,0,0,0,0,0,0 +1,2,2,1163,6969,2008,309,365,280,25.8129241,-80.1921488,0,0,0,0,0,0 +1,4,3,2610,4376,1994,311,161,350,25.9703507,-80.1971068,0,1,0,0,0,0 +1,1,1.5,777,6969,2014,316,448,750,25.760372,-80.190197,0,0,0,0,0,0 +1,4,3,1971,5219,1987,316,242,280,25.7028929,-80.3619935,0,1,0,0,0,0 +1,4,2,2800,81021,1980,327,175,280,25.5787045,-80.4840756,0,1,0,0,0,0 +1,3,3.5,1595,6969,2017,341,596,1179,25.8087134,-80.1920969,0,0,0,0,0,0 +1,2,2.5,1457,6969,2020,348,540,355,25.8013513,-80.1961915,0,0,0,0,0,0 +0,1,1,660,6969,1965,349,114,189,25.949987,-80.195158,0,0,0,0,0,0 +1,2,2,1099,6969,2008,357,445,700,25.762752,-80.194669,0,0,0,0,0,0 +1,2,2,1256,6969,2004,368,572,916,25.760602,-80.1912562,0,0,0,0,0,0 +1,1,1,791,6969,2004,371,499,520,25.75223,-80.1987521,0,0,0,0,0,0 +1,2,2.5,1168,6969,2008,382,338,971,25.7940769,-80.1870706,0,0,0,0,0,0 +1,3,3,1710,6969,2017,383,614,1450,25.762775,-80.192463,0,0,0,0,0,0 +1,1,1.5,983,6969,2003,385,507,1100,25.7588505,-80.1922125,0,0,0,0,0,0 +1,2,2,986,6969,2008,406,436,589,25.765005,-80.190166,0,0,0,0,0,0 +1,3,3,2580,12600,1968,435,386,280,25.9562428,-80.1526053,0,1,0,0,0,0 +1,3,3.5,2627,6969,2008,455,912,280,25.7692643,-80.1858499,0,0,0,0,0,0 +1,3,2.5,2044,6969,2008,455,773,1100,25.769079,-80.188602,0,0,0,0,0,0 +1,2,2,1303,6969,2002,457,406,280,25.768564,-80.186445,0,0,0,0,0,0 +1,3,3.5,2510,6969,1999,462,717,1336,25.7686886,-80.1831816,0,0,0,0,0,0 +1,1,1,774,6969,2008,481,469,463,25.765005,-80.190166,0,0,0,0,0,0 +0,2,2,1220,6969,1981,492,130,500,25.9540338,-80.1825979,0,0,0,0,0,0 +0,3,1,540,6969,2015,523,498,320,25.763224,-80.193432,0,0,0,0,0,0 +1,5,4.5,3586,8616,2002,541,467,775,25.9543003,-80.1717036,0,1,0,0,0,0 +0,2,3,1950,6969,1975,568,133,1330,25.8809865,-80.1623188,0,0,0,0,0,0 +1,2,2,1280,6969,2007,631,351,850,25.809496,-80.1920435,0,0,0,0,0,0 +1,5,6.5,6300,6969,1997,634,1825,4709,25.7555391,-80.1950766,0,0,0,0,0,0 +1,2,2,1496,6969,1986,644,351,952,25.791316,-80.1861552,0,0,0,0,0,0 +0,3,1,550,6969,1980,659,273,650,25.7901069,-80.1857426,0,0,0,0,0,0 +0,3,1,503,6969,2008,679,463,309,25.792482,-80.187149,0,0,0,0,0,0 +0,3,2,1248,6969,2003,686,240,598,25.7800842,-80.2768697,0,0,0,0,0,0 +1,2,2,1128,6969,2010,817,610,982,25.7965383,-80.1882911,0,0,0,0,0,0 +1,1,1.5,1087,6969,2001,866,497,450,25.7692964,-80.1837068,0,0,0,0,0,0 +1,5,4.5,4119,6969,1989,54.5,123,280,25.6033365,-80.4368988,0,1,0,0,0,0 +0,2,2,1133,8756,1994,1,102,280,28.517233,-81.487336,0,0,0,0,0,0 +0,3,2.5,1659,3120,2006,1,136,237,28.477709,-81.252317,0,0,1,0,0,0 +0,2,2,583,583,1985,1,232,506,28.4566203,-81.4680636,0,0,0,0,0,1 +0,3,2,1311,6839,1977,1,152,15,28.402019,-81.4096754,0,1,0,0,0,0 +0,2,2,1056,7570,1984,1,159,17,28.564035,-81.281313,0,1,0,0,0,0 +0,4,2,1283,10126,1953,4,124,280,28.561312,-81.453476,0,1,0,0,0,0 +0,3,1,1361,10003,1948,4,125,280,28.5545985,-81.4975945,0,1,0,0,0,0 +0,3,2,1152,44281,2000,5,65,280,28.5644374,-81.0967853,1,0,0,0,0,0 +1,4,2.5,3154,6927,2005,5,97,123,28.353945,-81.345807,0,1,0,0,0,0 +0,3,1.5,1040,8800,1971,5,120,280,28.574195,-81.438098,0,1,0,0,0,0 +1,4,3,2796,10255,1925,5,250,280,28.549735,-81.3691786,0,1,0,0,0,0 +0,3,2.5,2345,20395,2005,5,126,25,28.5055608,-81.4666478,0,0,0,0,0,0 +1,5,8,7021,53506,2008,8,327,51,28.4649359,-81.5147674,0,1,0,0,0,0 +0,3,2.5,1515,5000,1986,8,175,35,28.5142862,-81.3382118,0,1,0,0,0,0 +1,4,3.5,2965,5970,2004,12,182,59,28.5681769,-81.3356226,0,1,0,0,0,0 +0,4,2.5,1695,5383,2001,12,171,43,28.3675075,-81.3430891,0,1,0,0,0,0 +0,3,2,1460,6969,1987,14,168,420,28.508188,-81.3628559,0,0,0,0,0,0 +1,3,4,2340,1067,2006,16,205,57,28.56826,-81.328163,0,0,1,0,0,0 +1,5,3,2256,6219,1955,20,186,280,28.5313061,-81.3627122,0,0,0,1,0,0 +0,5,2,1509,6828,1957,22,99,280,28.5013804,-81.4008306,0,1,0,0,0,0 +1,3,2,2277,6146,1920,22,233,280,28.5547448,-81.3696941,0,1,0,0,0,0 +1,4,4,3639,8446,2004,25,110,55,28.4635303,-81.2667459,0,1,0,0,0,0 +1,3,3,1876,10843,1947,27,200,280,28.5177729,-81.3739036,0,1,0,0,0,0 +1,4,4.5,4427,14778,1977,27,164,45,28.5589186,-81.411865,0,1,0,0,0,0 +1,3,2,1746,8804,1943,28,229,280,28.5398888,-81.3552596,0,1,0,0,0,0 +1,2,1,1440,7698,1935,28,257,280,28.5514957,-81.3669878,0,1,0,0,0,0 +1,4,3,3013,19741,1925,28,259,280,28.5906655,-81.3853284,0,1,0,0,0,0 +0,3,2,1512,87256,2007,29,158,280,28.5793009,-81.1034667,0,1,0,0,0,0 +1,3,3.5,2162,1540,2018,30,177,281,28.371292,-81.260694,0,0,1,0,0,0 +0,3,2.5,1485,71604,1991,35,104,45,28.512377,-81.304716,0,0,0,0,0,0 +1,2,2,1832,9385,1951,36,251,280,28.5803262,-81.3678899,0,1,0,0,0,0 +0,4,2,1448,4110,1995,38,131,16,28.6135976,-81.4501935,0,1,0,0,0,0 +0,2,2,975,83466,1963,39,234,280,28.5441283,-81.3765806,0,0,0,0,0,0 +1,5,4.5,6252,26159,1982,39,414,50,28.4543181,-81.5159777,0,1,0,0,0,0 +1,8,4,4850,74160,1983,39,175,4,28.4882991,-81.4714526,0,1,0,0,0,0 +0,3,2.5,1788,2907,2007,42,131,86,28.519458,-81.154938,0,0,1,0,0,0 +0,1,1,885,4997,2000,47,104,280,28.508601,-81.471444,0,0,0,0,0,0 +0,4,3.5,1902,2335,2018,47,145,204,28.599179,-81.274355,0,0,1,0,0,0 +1,5,3,2806,7892,2000,48,113,20,28.3625564,-81.3947976,0,1,0,0,0,0 +0,1,1,621,8897,2002,56,185,280,28.3477765,-81.5156069,0,0,0,0,0,0 +0,2,2,583,583,1985,57,183,534,28.4566203,-81.4680636,0,0,0,0,0,1 +0,1,1,671,671,2008,65,259,575,28.456616,-81.462615,0,0,0,0,0,1 +1,2,2.5,1936,2712,2003,74,201,325,28.558574,-81.332022,0,0,1,0,0,0 +1,4,5,3998,6526,2003,75,180,208,28.4450043,-81.492577,0,1,0,0,0,0 +0,1,1,550,550,1990,79,127,351,28.3997393,-81.4658756,0,0,0,0,0,1 +1,4,3.5,3642,8750,2018,82,160,130,28.42809,-81.22496,0,1,0,0,0,0 +1,4,3,2582,7565,2004,83,131,76,28.5239808,-81.2124223,0,1,0,0,0,0 +0,2,2,868,2117,1984,84,101,48,28.581562,-81.444495,0,0,1,0,0,0 +1,3,2,1800,6499,2017,90,194,280,28.521381,-81.351351,0,1,0,0,0,0 +0,2,1,962,1000,1972,90,69,210,28.574498,-81.4557993,0,0,0,0,0,0 +1,4,2.5,2571,13169,1925,90,282,280,28.5851552,-81.3733882,0,1,0,0,0,0 +0,4,2.5,1774,12360,1981,91,152,280,28.5871404,-81.2717353,0,1,0,0,0,0 +0,3,2,1076,4091,1966,98,129,280,28.556561,-81.3474613,0,0,0,0,0,0 +1,10,6,4548,11221,1971,106,297,280,28.5650755,-81.3635512,0,0,0,0,1,0 +1,3,2.5,2575,32883,2005,106,306,1046,28.5410606,-81.3704458,0,0,0,0,0,0 +1,3,2.5,2926,10627,2017,112,147,4,28.517574,-81.073369,0,0,0,1,0,0 +1,4,2.5,2648,7200,2011,113,155,68,28.437671,-81.5564933,0,1,0,0,0,0 +1,4,4.5,5282,45910,2017,121,291,166,28.398458,-81.230876,0,1,0,0,0,0 +1,3,2.5,2287,5247,2014,121,164,101,28.4919365,-81.4476189,0,1,0,0,0,0 +1,4,2,2236,6640,2015,123,180,48,28.3886115,-81.3425412,0,1,0,0,0,0 +0,3,2,1331,8855,1960,130,118,280,28.5664918,-81.4686856,0,1,0,0,0,0 +1,4,4,4238,17348,2005,131,156,175,28.3989837,-81.2068264,0,1,0,0,0,0 +0,4,3,1997,12936,1991,137,128,280,28.3702552,-81.3586966,0,1,0,0,0,0 +1,4,2.5,2419,4265,2013,147,145,93,28.4875055,-81.4469291,0,1,0,0,0,0 +1,4,3,2497,12409,1992,159,164,33,28.4808338,-81.4935205,0,1,0,0,0,0 +0,3,1,1230,11469,1954,162,102,280,28.5231719,-81.4211806,0,1,0,0,0,0 +0,3,2,1350,6729,2017,163,117,280,28.534512,-81.445584,0,1,0,0,0,0 +0,3,3,1459,1307,2007,167,120,574,28.3489605,-81.5043055,0,0,0,0,0,0 +1,4,3.5,3186,13480,1987,195,196,280,28.5078814,-81.3827515,0,1,0,0,0,0 +1,5,4.5,3030,5500,2004,209,112,95,28.5313176,-81.156596,0,1,0,0,0,0 +0,3,1,1116,8620,1960,213,157,280,28.5198028,-81.2903136,0,1,0,0,0,0 +1,5,6.5,5962,21129,2008,421,502,498,28.410443,-81.2581212,0,1,0,0,0,0 +1,4,3,3150,17595,1972,546,101,50,28.451803,-81.5118519,0,1,0,0,0,0 +0,3,2,1200,1200,2006,642,204,631,28.389813,-81.481758,0,0,0,0,0,1 +1,4,3.5,2515,6969,2018,22,126,280,28.4277,-81.2186,0,1,0,0,0,0 +1,3,2.5,2183,6969,2018,47,191,280,28.3706533,-81.2493874,0,1,0,0,0,0 +1,3,3,2308,6969,2017,85,199,280,28.372196,-81.249998,0,1,0,0,0,0 +1,4,3.5,2395,6969,2017,186,170,280,28.371237,-81.259997,0,0,0,1,0,0 +1,4,3,2261,6969,2017,221,144,280,28.3850494,-81.3461267,0,1,0,0,0,0 +0,2,2,1360,6969,1989,54.5,179,280,28.3647442,-81.2383225,0,0,1,0,0,0 +1,4,3.5,3509,6969,1989,54.5,172,280,28.40854,-81.504307,0,1,0,0,0,0 +0,4,2.5,2029,6969,1989,54.5,132,280,28.36614,-81.36232,0,1,0,0,0,0 +0,3,2.5,1961,6969,1989,54.5,121,280,28.36614,-81.36232,0,1,0,0,0,0 +1,5,4.5,3773,6969,1989,54.5,111,280,28.419708,-81.1903207,0,1,0,0,0,0 +1,3,2.5,2198,6969,1989,54.5,139,280,28.4277156,-81.2185894,0,1,0,0,0,0 +1,3,2.5,2468,6969,1989,54.5,172,280,28.3699612,-81.2324135,0,1,0,0,0,0 +1,4,3,2489,6969,1989,54.5,150,280,28.4331015,-81.5598918,0,1,0,0,0,0 +1,2,2,2188,6969,1989,54.5,156,280,28.370506,-81.259741,0,0,1,0,0,0 +1,4,3.5,3666,6969,1989,54.5,133,280,28.60777,-81.22409,0,1,0,0,0,0 +1,4,2.5,3811,6969,1989,54.5,108,280,28.594762,-81.116404,0,1,0,0,0,0 +0,4,2,2333,6969,1989,54.5,124,280,28.354216,-81.323601,0,1,0,0,0,0 +1,3,2.5,2199,6969,1989,54.5,225,280,28.4099968,-81.5338032,0,1,0,0,0,0 +1,4,3.5,3029,6969,1989,54.5,123,280,28.4042869,-81.2461775,0,1,0,0,0,0 +1,3,2.5,2000,6969,1989,54.5,152,280,28.356211,-81.325802,0,1,0,0,0,0 +0,4,2,1828,6969,1989,54.5,150,280,28.351485,-81.324031,0,1,0,0,0,0 +1,4,3,2108,6969,1989,54.5,145,280,28.36954,-81.3301939,0,1,0,0,0,0 +1,5,4,2622,6969,2018,1,133,78,35.8400516,-78.5537551,0,1,0,0,0,0 +1,3,4,3780,3484,2003,1,127,426,35.9071119,-78.7917358,0,0,1,0,0,0 +1,4,3,3644,6098,2007,1,84,50,35.8652969,-78.51961,0,1,0,0,0,0 +1,4,5,3437,10890,2005,1,147,65,35.9263166,-78.5599411,0,1,0,0,0,0 +1,3,2,2417,6969,1925,5,290,280,35.7721535,-78.6509763,0,1,0,0,0,0 +1,5,5,4145,10454,2005,5,145,69,35.9258735,-78.5599189,0,1,0,0,0,0 +1,4,3,3175,14374,2007,6,142,42,35.6752459,-78.6668655,0,1,0,0,0,0 +0,5,4,2577,6534,2007,12,85,13,35.725992,-78.5397982,0,1,0,0,0,0 +0,3,2,2014,36590,2006,12,91,280,35.6065371,-78.6483178,0,1,0,0,0,0 +1,5,8,8698,140698,2005,17,213,223,35.9466323,-78.6973725,0,1,0,0,0,0 +0,4,3,2509,6969,2005,20,104,35,35.802601,-78.5461432,0,1,0,0,0,0 +0,3,2,1389,7840,1997,26,180,280,35.8698108,-78.7278921,0,1,0,0,0,0 +1,2,2,1510,6969,2005,27,281,412,35.7759185,-78.6385616,0,0,0,0,0,0 +1,4,4,4240,58370,2007,27,177,95,35.9812376,-78.6813117,0,1,0,0,0,0 +0,3,3,2335,6098,2008,28,94,33,35.720191,-78.5403307,0,1,0,0,0,0 +1,5,5,6044,21780,2005,33,296,280,35.8092268,-78.6607278,0,1,0,0,0,0 +1,3,3,4032,64033,2000,41,115,280,35.8881968,-78.5087746,0,1,0,0,0,0 +1,2,4,2281,1742,2014,42,208,237,35.831613,-78.640804,0,0,1,0,0,0 +1,5,4,3000,9147,2018,50,105,150,35.8653035,-78.5179182,0,1,0,0,0,0 +1,4,3,2416,10890,2018,52,207,21,35.8679446,-78.7292143,0,1,0,0,0,0 +1,2,4,2364,1742,2014,56,201,237,35.8303984,-78.6410041,0,0,1,0,0,0 +0,3,2,1584,57063,1996,58,133,280,35.6034756,-78.6258873,0,1,0,0,0,0 +1,3,3,1740,5662,2018,59,252,280,35.7768894,-78.619758,0,1,0,0,0,0 +1,4,3,2638,30056,2018,111,182,40,35.7151500790869,-78.6856189568824,0,1,0,0,0,0 +0,2,1,1024,135036,1956,118,254,280,35.708946,-78.712687,0,1,0,0,0,0 +1,5,7,5115,42688,2017,147,320,100,35.9179038243927,-78.625989547331,0,1,0,0,0,0 +1,3,4,3846,53143,2007,232,120,17,35.7340047,-78.4661586,0,1,0,0,0,0 +1,4,4,2972,10759,2017,250,113,40,35.779602,-78.5336739,0,1,0,0,0,0 +1,2,3,1478,6969,2017,253,250,340,35.7685137,-78.6818821,0,0,0,0,0,0 +1,3,3,1609,9583,1950,267,309,280,35.7987746,-78.6543457,0,1,0,0,0,0 +1,5,6,7161,75358,2002,286,154,133,35.9237785,-78.6167387,0,1,0,0,0,0 +1,4,4,3802,39988,2016,349,184,280,35.918215,-78.685799,0,1,0,0,0,0 +1,3,3,2420,14374,1950,353,252,280,35.8100662,-78.6757507,0,1,0,0,0,0 +1,4,3.5,2806,6969,2017,379,160,280,35.860219,-78.5394533,0,1,0,0,0,0 +1,4,3.5,3694,6969,1989,54.5,154,280,35.7469,-78.7257,0,1,0,0,0,0 +1,4,3.5,3725,6969,1989,54.5,199,280,35.883642,-78.679978,0,1,0,0,0,0 +0,3,2.5,1836,6969,1989,54.5,148,280,35.915635,-78.812061,0,0,1,0,0,0 +1,4,3.5,3667,6969,1989,54.5,121,280,35.64258,-78.697904,0,1,0,0,0,0 +1,4,3.5,3208,6969,1989,54.5,190,280,35.9572,-78.6785,0,1,0,0,0,0 +1,5,3.5,3112,6969,1989,54.5,180,280,35.883487,-78.6896181,0,1,0,0,0,0 +1,4,5,4006,11325,2016,3,198,50,35.7966086,-78.9053625,0,1,0,0,0,0 +1,4,3,3000,3920,2013,13,147,88,35.8328253,-78.9120054,0,1,0,0,0,0 +1,6,5,5308,9278,2006,19,154,83,35.7965535,-78.8111641,0,1,0,0,0,0 +1,5,5,5100,29185,1999,26,141,58,35.7147468,-78.7996581,0,1,0,0,0,0 +1,4,3,2642,5575,2018,49,151,65,35.8559891743025,-78.8969884695198,0,1,0,0,0,0 +1,4,5,3930,10890,1999,55,184,31,35.803764,-78.8248449,0,1,0,0,0,0 +1,2,3,2058,5662,2017,121,206,148,35.819057,-78.876021,0,0,1,0,0,0 +1,5,6,4617,16988,2017,125,259,154,35.8063735961914,-78.7805328369141,0,1,0,0,0,0 +1,3,3,2536,9539,2017,144,192,78,35.7144243,-78.7857813,0,1,0,0,0,0 +1,4,3,3244,6969,2006,151,143,220,35.7030966,-78.7900097,0,1,0,0,0,0 +0,3,3,1878,13068,1984,160,160,280,35.7778965,-78.8178016,0,1,0,0,0,0 +1,4,4,4700,4791,1985,177,174,300,35.742436,-78.797375,0,0,1,0,0,0 +1,5,5,3552,5052,2017,240,151,130,35.7538809231373,-78.752769520591,0,1,0,0,0,0 +1,4,3,2661,6534,2017,242,165,102,35.7746390273212,-78.8740087265239,0,1,0,0,0,0 +1,5,3,2695,2178,2017,270,130,145,35.747697,-78.731033,0,0,1,0,0,0 +1,5,4,3517,9147,2017,417,171,77,35.7685807983808,-78.8912846102031,0,1,0,0,0,0 +1,3,3,1851,6969,2018,43,184,280,35.822563,-78.913038,0,0,1,0,0,0 +1,4,3.5,2761,6969,2017,117,167,280,35.7467,-78.7793,0,1,0,0,0,0 +1,5,4,3635,6969,2017,159,154,280,35.787565,-78.898938,0,1,0,0,0,0 +1,3,2.5,3695,6969,1989,54.5,128,280,35.754221,-78.753219,0,1,0,0,0,0 +1,4,2.5,2744,6969,1989,54.5,154,280,35.8078266,-78.8783661,0,1,0,0,0,0 +1,5,4,3590,6969,1989,54.5,166,280,35.6616634,-78.761379,0,1,0,0,0,0 +1,4,3,2884,6969,1989,54.5,180,280,35.686382,-78.756043,0,1,0,0,0,0 +1,3,3,2711,6969,1989,54.5,198,280,35.8454982,-78.910967,0,1,0,0,0,0 +1,5,3.5,3320,6969,1989,54.5,151,280,35.8068,-78.8835,0,1,0,0,0,0 +1,4,3.5,4020,6969,1989,54.5,184,280,35.7166,-78.8001,0,1,0,0,0,0 +1,5,6,4301,6969,1989,54.5,140,280,35.759851,-78.836775,0,1,0,0,0,0 +1,4,2.5,3002,6969,1989,54.5,135,280,35.8203954,-78.9252107,0,1,0,0,0,0 +1,3,2.5,2004,6969,1989,54.5,161,280,35.803114,-78.804877,0,1,0,0,0,0 +1,4,2.5,3112,6969,1989,54.5,158,280,35.7686712,-78.8902647,0,1,0,0,0,0 +1,4,3.5,3009,6969,1989,54.5,166,280,35.7851315,-78.9026996,0,1,0,0,0,0 +1,4,3,3113,6969,1989,54.5,158,280,35.7851314,-78.9027252,0,1,0,0,0,0 +1,4,3,2651,32016,1965,6,198,280,35.9786181,-78.943519,0,1,0,0,0,0 +0,2,1,1318,20908,1983,6,153,280,35.9194745,-78.8954268,0,1,0,0,0,0 +1,3,3,2777,50747,1974,24,119,280,36.0904174,-78.8875688,0,1,0,0,0,0 +1,3,4,2039,2613,2018,26,152,160,35.924151,-78.7801,0,0,1,0,0,0 +0,4,3,2174,4443,2012,27,131,30,35.868466,-78.853693,0,1,0,0,0,0 +0,3,3,1917,6969,1998,34,130,52,35.9758405,-78.8158104,0,1,0,0,0,0 +1,4,3,2395,21823,2018,40,150,67,36.091935,-78.909712,0,1,0,0,0,0 +1,3,3,2238,5227,2018,40,148,110,35.9135117,-78.9381596,0,0,1,0,0,0 +1,3,3,2977,32234,2018,113,172,48,36.0504,-78.9561,0,1,0,0,0,0 +1,4,3,4769,15638,1962,128,88,280,35.9876144,-78.9318517,0,1,0,0,0,0 +1,5,3,3731,26571,1987,153,131,280,35.950921,-78.9395638,0,1,0,0,0,0 +1,3,4,2322,13285,2017,168,280,280,35.989682,-78.932105,0,1,0,0,0,0 +1,4,4,5252,75358,1997,237,162,36,36.0405785,-78.9514731,0,1,0,0,0,0 +1,5,3.5,2746,6969,2018,7,133,280,35.93951,-78.857181,0,1,0,0,0,0 +1,4,3,2310,6969,2018,36,140,280,35.890683,-78.958397,0,0,1,0,0,0 +1,3,2,1624,6969,2017,90,216,280,35.911945,-78.959395,0,1,0,0,0,0 +1,3,3.5,2570,6969,2017,235,177,280,35.911945,-78.959395,0,1,0,0,0,0 +1,2,2.5,2043,6969,1989,54.5,177,280,35.911945,-78.959395,0,1,0,0,0,0 +1,2,2,1951,6969,1989,54.5,183,280,35.911945,-78.959395,0,1,0,0,0,0 +1,3,3,2941,6534,2000,1,178,34,35.8887431,-79.0710154,0,1,0,0,0,0 +1,4,5,3772,11935,2000,2,183,244,35.83585,-79.0338,0,1,0,0,0,0 +1,5,7,5170,11325,1996,6,121,323,35.8464943,-79.0418612,0,1,0,0,0,0 +1,4,5,4864,87120,2017,10,154,280,35.909049,-79.181184,0,1,0,0,0,0 +0,3,2,1258,60548,1984,12,203,280,36.024503,-79.039738,0,1,0,0,0,0 +1,4,4,3802,16639,2003,13,151,83,35.7804297,-79.0599374,0,1,0,0,0,0 +1,4,3,3132,4356,2007,22,191,82,35.9438941,-79.0895936,0,1,0,0,0,0 +1,4,4,3875,13068,2017,26,187,336,35.841089,-79.060908,0,1,0,0,0,0 +1,3,3,3114,13460,1997,28,160,244,35.8359822,-79.0349533,0,1,0,0,0,0 +1,4,5,4973,13503,2007,29,131,336,35.841787,-79.0609526,0,1,0,0,0,0 +1,5,5,5522,22651,2005,56,136,54,35.9118828,-79.007699,0,1,0,0,0,0 +1,4,3,2164,3833,2018,62,155,130,35.8174338390577,-79.1092611808674,0,1,0,0,0,0 +0,4,3,2028,5227,2018,63,130,35,35.9460661189121,-78.9989940169816,0,1,0,0,0,0 +1,4,4,4172,121968,1908,259,839,280,35.9198485,-79.0465626,0,1,0,0,0,0 +1,5,5,4914,28314,1996,394,114,244,35.8456363,-79.0490126,0,1,0,0,0,0 +1,4,5,2895,8276,1995,1321,159,432,35.8470749,-79.040521,0,1,0,0,0,0 +1,4,3,2860,6969,2018,47,145,280,35.821742,-79.113204,0,1,0,0,0,0 +1,2,2,1904,6969,2018,47,200,280,35.827044,-79.124182,0,1,0,0,0,0 +1,3,2.5,2038,6969,1989,54.5,149,280,35.8292954,-79.1021524,0,1,0,0,0,0 +1,3,3,2584,6969,1989,54.5,160,280,35.8292954,-79.1021524,0,1,0,0,0,0 +0,3,2.5,1760,6969,1989,54.5,156,280,35.8292954,-79.1021524,0,1,0,0,0,0 +1,3,2.5,2735,6969,1989,54.5,137,280,35.8292954,-79.1021524,0,1,0,0,0,0 +1,3,2.5,2198,6969,1989,54.5,156,280,35.818184,-79.1084652,0,1,0,0,0,0 +1,3,3,2066,6969,1989,54.5,192,280,35.8292954,-79.1021524,0,1,0,0,0,0 +1,4,4,3192,6969,1993,2,136,280,30.3235271,-81.592687,0,1,0,0,0,0 +1,4,3,2355,6969,2018,2,130,50,30.111708,-81.520581,0,1,0,0,0,0 +0,3,2,2116,6969,1906,4,77,280,30.3376317,-81.6507302,0,1,0,0,0,0 +0,2,2,1178,6969,2001,4,125,291,30.2576819,-81.5398089,0,0,0,0,0,0 +1,3,2,2240,6969,2016,5,138,65,30.4580409,-81.5338024,0,1,0,0,0,0 +0,3,2.5,2341,6969,2007,6,115,258,30.1285341,-81.5070023,0,0,1,0,0,0 +0,5,3,2511,6969,2018,6,94,42,30.3569774,-81.7695497,0,1,0,0,0,0 +0,4,2,1731,6969,1958,7,95,280,30.3174201,-81.7106683,0,1,0,0,0,0 +0,3,1,828,6969,1955,7,42,280,30.3785538,-81.7016804,0,1,0,0,0,0 +0,3,2,1938,6969,1977,7,143,280,30.1406777,-81.6254069,0,1,0,0,0,0 +1,4,2,2600,6969,1999,8,131,13,30.1710014,-81.6353286,0,1,0,0,0,0 +0,4,2.5,2667,6969,1969,9,104,4,30.367703,-81.5816615,0,1,0,0,0,0 +1,3,2.5,2520,6969,2018,9,151,67,30.287694976981,-81.449464999666,0,1,0,0,0,0 +0,4,2,2270,6969,2003,12,97,33,30.3300169,-81.8497813,0,1,0,0,0,0 +1,5,4.5,4314,6969,2018,12,298,275,30.253126,-81.443928,0,1,0,0,0,0 +0,2,1,810,6969,1966,13,99,280,30.2311181,-81.72518,0,1,0,0,0,0 +0,4,2,1863,6969,2018,22,113,7,30.45621,-81.76475,0,1,0,0,0,0 +1,3,2,2528,6969,2015,22,232,8,30.293131,-81.476999,0,1,0,0,0,0 +0,2,2,1429,6969,1973,27,28,375,30.326779,-81.577759,0,0,0,0,0,0 +0,3,1,952,6969,1945,29,120,280,30.3154455,-81.5837836,0,1,0,0,0,0 +0,4,2,1796,6969,1990,30,103,280,30.4772234,-81.5777652,0,1,0,0,0,0 +1,4,3,2654,6969,2015,31,154,30,30.114084,-81.453472,0,1,0,0,0,0 +0,3,2,1770,6969,2004,32,127,36,30.4847396,-81.5700326,0,1,0,0,0,0 +1,3,3.5,2912,6969,2018,33,360,220,30.345683,-81.411112,0,1,0,0,0,0 +0,3,2,1284,6969,2007,34,129,310,30.243109,-81.59193,0,0,0,0,0,0 +0,3,1,883,6969,1953,35,88,280,30.3149874,-81.71085,0,1,0,0,0,0 +1,4,3.5,2693,6969,1989,36,148,15,30.306777,-81.4469752,0,1,0,0,0,0 +0,2,2,1338,6969,2003,38,213,280,30.3269041,-81.6637258,0,0,0,0,0,0 +0,4,2,2159,6969,1999,39,132,117,30.187876,-81.7741307,0,1,0,0,0,0 +0,2,2,1797,6969,2008,40,105,239,30.126433,-81.538208,0,0,0,0,0,0 +0,4,1,1854,6969,1959,42,94,280,30.2770861,-81.5875101,0,1,0,0,0,0 +0,3,2,1613,6969,2002,42,127,20,30.1447459,-81.5670752,0,1,0,0,0,0 +0,3,2,1728,6969,2002,42,75,280,30.4047608,-81.6923486,0,1,0,0,0,0 +0,2,1,572,6969,1960,45,51,280,30.360569,-81.738634,0,1,0,0,0,0 +1,4,3,2238,6969,1995,47,208,115,30.2816153,-81.4669276,0,1,0,0,0,0 +1,3,3.5,3497,6969,2005,51,256,280,30.2304251,-81.619434,0,1,0,0,0,0 +0,4,2,1326,6969,1948,51,136,280,30.3084393,-81.7225656,0,1,0,0,0,0 +0,3,1,1216,6969,1948,55,53,280,30.3841392,-81.640389,0,1,0,0,0,0 +0,3,1,1164,6969,1948,57,102,280,30.2777386,-81.7335253,0,1,0,0,0,0 +0,3,2,986,6969,1980,60,115,280,30.205084,-81.7939038,0,1,0,0,0,0 +1,3,2,1710,6969,1939,61,272,280,30.20159,-81.591128,0,1,0,0,0,0 +0,3,2,1309,6969,1954,62,69,280,30.3315567,-81.5943754,0,1,0,0,0,0 +0,3,2,1672,6969,1957,62,84,280,30.2507555,-81.7231215,0,1,0,0,0,0 +0,3,2.5,1637,6969,1958,67,107,280,30.2231007,-81.7345359,0,1,0,0,0,0 +0,5,4,2126,6969,1942,71,87,280,30.2418995,-81.7470111,0,1,0,0,0,0 +0,3,2,1501,6969,1980,76,93,280,30.1946557,-81.7633848,0,1,0,0,0,0 +0,3,1,849,6969,1951,79,68,280,30.3946563,-81.7457304,0,1,0,0,0,0 +0,7,3,2378,6969,1957,85,97,280,30.272762,-81.841372,0,0,0,1,0,0 +0,3,2,1215,6969,1941,86,123,280,30.314935,-81.723513,0,1,0,0,0,0 +1,4,3,2512,6969,1994,91,150,29,30.183331,-81.639586,0,1,0,0,0,0 +0,3,2.5,2520,6969,2017,92,115,56,30.218196868897,-81.805252075195,0,1,0,0,0,0 +0,5,3,2511,6969,2017,92,94,7,30.460499,-81.762381,0,1,0,0,0,0 +1,4,3.5,2744,6969,2017,98,137,42,30.1815,-81.5909,0,1,0,0,0,0 +1,3,2.5,1632,6969,1919,99,260,280,30.3134657,-81.6996825,0,1,0,0,0,0 +0,3,1,1179,6969,1955,107,85,280,30.3306136,-81.5908791,0,1,0,0,0,0 +1,4,4.5,3100,6969,2018,112,208,375,30.2194,-81.612383,0,1,0,0,0,0 +1,4,3.5,2440,6969,2017,112,216,375,30.219494,-81.613199,0,1,0,0,0,0 +1,2,2,1338,6969,2003,116,248,599,30.3269041,-81.6637258,0,0,0,0,0,0 +0,3,2,1275,6969,1949,118,59,280,30.3824167,-81.6679969,0,1,0,0,0,0 +0,4,2,1325,6969,1962,120,125,280,30.359242,-81.5910651,0,1,0,0,0,0 +1,3,2.5,1990,6969,1959,120,156,280,30.2527342,-81.6309931,0,1,0,0,0,0 +0,3,1.5,1232,6969,1949,121,45,280,30.3455143,-81.6926677,0,1,0,0,0,0 +0,4,2.5,2495,6969,2016,122,109,42,30.528948,-81.616375,0,1,0,0,0,0 +0,3,1,1116,6969,1954,124,36,280,30.3227803,-81.7201714,0,1,0,0,0,0 +0,3,2,1220,6969,2015,129,106,280,30.317385,-81.5627536,0,1,0,0,0,0 +0,3,1,816,6969,1959,131,100,280,30.424241,-81.6614947,0,1,0,0,0,0 +0,1,1,1033,6969,1954,131,126,280,30.2893891,-81.7934572,0,1,0,0,0,0 +0,3,2,1704,6969,1947,132,100,280,30.3349148,-81.5999418,0,1,0,0,0,0 +0,4,4,2566,6969,2017,139,115,67,30.440822601318,-81.704200744629,0,1,0,0,0,0 +0,4,2,2020,6969,2017,151,111,14,30.454571,-81.759231,0,1,0,0,0,0 +1,5,6,6878,6969,1929,195,479,280,30.2673953,-81.7007791,0,1,0,0,0,0 +0,3,3,1765,6969,1973,196,88,280,30.2080152,-81.6202296,0,0,0,0,0,0 +0,4,2,2135,6969,2017,225,121,56,30.218196868897,-81.805252075195,0,1,0,0,0,0 +1,4,3.5,2995,6969,2017,230,130,67,30.296688079834,-81.442176818848,0,1,0,0,0,0 +0,4,2,1276,6969,1972,232,82,280,30.4142064,-81.731426,0,1,0,0,0,0 +1,3,2,2496,6969,1955,262,481,280,30.503878,-81.54857,0,1,0,0,0,0 +0,3,3,2438,6969,1981,266,88,280,30.3036715,-81.830353,0,1,0,0,0,0 +1,4,2.5,2757,6969,2017,280,120,46,30.217420578003,-81.828819274902,0,1,0,0,0,0 +0,3,2,1753,6969,1978,296,47,280,30.523579,-81.7417599,0,1,0,0,0,0 +0,4,2,2084,6969,2017,296,113,35,30.47158,-81.625673,0,1,0,0,0,0 +1,7,7.5,6823,6969,1941,310,202,280,30.315029,-81.608591,0,1,0,0,0,0 +1,4,3,2442,6969,2017,359,176,164,30.219775,-81.502026,0,1,0,0,0,0 +0,3,1.5,1416,6969,1955,365,84,280,30.4706397,-81.6537166,0,1,0,0,0,0 +1,5,3.5,3811,6969,1989,54.5,125,280,30.1446628,-81.6434249,0,1,0,0,0,0 +0,4,2,1698,6969,1989,54.5,108,280,30.3540718,-81.771277,0,1,0,0,0,0 +1,4,3.5,3330,6969,1989,54.5,132,280,30.223175,-81.505391,0,1,0,0,0,0 +0,2,2,1453,6969,1989,54.5,164,280,30.1066268,-81.5191341,0,1,0,0,0,0 +1,4,3.5,2877,6969,1989,54.5,153,280,30.1446628,-81.6434249,0,1,0,0,0,0 +1,4,3,2844,6969,1989,54.5,131,280,30.180892,-81.5927067,0,1,0,0,0,0 +0,3,2,2254,6969,1989,54.5,123,280,30.3499,-81.5498,0,1,0,0,0,0 +1,5,3.5,3453,6969,1989,54.5,110,280,30.187573382593,-81.842479705811,0,0,1,0,0,0 +0,5,3,2511,6969,1989,54.5,96,280,30.3594332,-81.5609032,0,1,0,0,0,0 +0,3,2,1646,6969,1989,54.5,176,280,30.2817,-81.4932,0,1,0,0,0,0 +0,4,3,1871,6969,1989,54.5,114,280,30.536543,-81.620101,0,1,0,0,0,0 +0,4,2,2606,6969,1989,54.5,97,280,30.536543,-81.620101,0,1,0,0,0,0 +1,5,4,4099,6969,1989,54.5,75,280,30.536543,-81.620101,0,1,0,0,0,0 +1,4,2,3917,1707,1910,1,146,280,40.82437,-73.8992782,0,0,0,1,0,0 +1,11,6.5,3000,2000,1990,1,467,280,40.604625,-73.9591049,0,0,0,1,0,0 +1,4,3,1938,2400,1925,1,712,280,40.6351404,-74.0288647,0,0,0,1,0,0 +1,8,3.5,2508,2600,1925,2,269,280,40.695862,-73.789965,0,0,0,1,0,0 +1,1,1,747,6969,1949,2,574,325,40.7318951,-73.8540818,0,0,0,0,0,0 +1,3,1.5,1188,2753,1950,3,841,280,40.752156,-73.8135269,0,0,1,0,0,0 +1,5,2.5,2052,2300,1989,5,241,280,40.643053,-73.911291,0,0,0,1,0,0 +1,6,3,1575,2000,1930,6,921,280,40.618063,-74.007866,0,0,0,1,0,0 +1,3,2,1376,2400,1970,6,414,280,40.5700738,-74.1228155,0,1,0,0,0,0 +1,16,6,5712,3200,1930,6,411,280,40.70772,-73.893726,0,0,0,0,1,0 +1,4,3,3595,12375,1992,7,334,280,40.5175383,-74.2109853,0,1,0,0,0,0 +1,3,2,1600,10988,1980,7,531,280,40.618345,-74.093655,0,1,0,0,0,0 +1,3,3,1224,720,1989,8,261,220,40.6349347,-74.1688954,0,1,0,0,0,0 +1,2,1,900,6969,1941,8,389,280,40.8860737,-73.9065373,0,0,0,0,0,0 +1,3,2,2574,4000,1970,9,334,280,40.6000552,-74.1393234,0,0,1,0,0,0 +1,3,3,1008,4000,1955,9,624,280,40.682151,-73.80053,0,1,0,0,0,0 +1,3,1.5,1080,2000,1910,9,972,280,40.6157169,-73.947401,0,1,0,0,0,0 +0,1,1,666,6969,1966,9,353,407,40.6570179,-73.878154,0,0,0,0,0,0 +1,9,6,3960,2910,1994,12,505,280,40.595354,-73.991869,0,0,0,1,0,0 +1,0,1,516,6969,1962,12,1432,280,40.7361064,-73.9865382,0,0,0,0,0,0 +1,3,3,2250,6968,1905,13,400,280,40.6261819,-74.1325981,0,0,0,1,0,0 +1,3,4,2400,2625,2004,15,287,280,40.590469,-74.147066,0,1,0,0,0,0 +0,1,1,750,6969,1968,15,212,280,40.9056542,-73.8586761,0,0,0,0,0,0 +0,1,1,875,6969,1968,15,177,280,40.9056542,-73.8586761,0,0,0,0,0,0 +1,3,3,3360,5000,1930,16,268,280,40.845473,-73.8219416,0,0,0,1,0,0 +1,3,2,1636,1641,1950,16,482,280,40.727042,-73.87748,0,0,1,0,0,0 +1,3,2,1365,6969,1989,16,512,314,40.7951503,-73.8468506,0,0,0,0,0,0 +1,6,3,1219,3300,2011,17,1312,280,40.758621,-73.801107,0,0,0,1,0,0 +1,3,2,1450,6969,1953,20,482,280,40.8828679,-73.9112962,0,0,0,0,0,0 +1,4,2,2000,2916,2007,20,475,280,40.622804,-73.907368,0,1,0,0,0,0 +1,6,2.5,2020,5000,1925,21,475,280,40.786387,-73.850708,0,1,0,0,0,0 +1,3,3,2400,4300,1965,21,354,280,40.5528222,-74.1711308,0,0,1,0,0,0 +1,2,1,701,6969,2018,21,820,259,40.7203369,-73.8087168,0,0,0,0,0,0 +1,1,1,755,6969,1953,22,661,280,40.6475359,-73.9755189,0,0,0,0,0,0 +1,4,4,3000,1899,1931,22,533,280,40.6921351,-73.9497475,0,0,0,1,0,0 +1,3,2,1945,5000,1930,22,354,280,40.57602,-74.1155196,0,1,0,0,0,0 +1,3,2.5,1292,2000,1925,22,618,280,40.6288132,-73.9452939,0,1,0,0,0,0 +1,6,4,2295,3049,1920,23,327,280,40.8370531,-73.8362778,0,0,0,1,0,0 +1,2,1.5,1944,6115,1899,23,412,280,40.8545797,-73.790882,0,1,0,0,0,0 +0,1,1,850,849,1955,23,235,280,40.8831467,-73.920854,0,0,0,0,0,0 +1,3,2,1197,1484,1987,23,358,1093,40.6112436,-74.0942048,0,0,0,0,0,0 +0,1,1,700,6969,1952,27,284,280,40.7089277,-73.827086,0,0,0,0,0,0 +1,2,1,807,6969,1940,28,520,558,40.7680633,-73.8922401,0,0,0,0,0,0 +1,3,4,1500,2678,2018,28,453,280,40.5656197,-74.1041522,0,1,0,0,0,0 +1,2,1,691,691,1920,28,854,667,40.6603044,-73.9789845,0,0,0,0,0,0 +1,8,3,3000,2000,1989,28,300,280,40.6437079,-73.991905,0,0,0,1,0,0 +1,4,3,890,1102,2005,29,730,280,40.8226881,-73.9021681,0,0,0,1,0,0 +1,2,1,900,6969,1924,29,511,280,40.6280062,-74.0257695,0,0,0,0,0,0 +1,2,1.5,992,1953,1920,30,845,280,40.6325999,-74.019672,0,1,0,0,0,0 +0,2,1,1000,6969,1928,30,238,280,40.9025345,-73.9061716,0,0,0,0,0,0 +1,3,3,1792,2376,1980,30,324,280,40.604545,-74.160818,0,1,0,0,0,0 +1,6,3,1500,3123,1901,30,453,280,40.869798,-73.887295,0,0,0,1,0,0 +1,5,3,2577,3817,1925,33,873,280,40.6292359,-74.0346153,0,1,0,0,0,0 +1,4,2,1982,2857,1899,33,343,280,40.8820467,-73.857424,0,0,0,1,0,0 +1,6,2,2824,2099,1975,34,230,280,40.872824,-73.857781,0,0,0,1,0,0 +1,8,2,3350,2500,1925,34,224,280,40.819198,-73.886908,0,0,0,1,0,0 +1,3,2,1332,1800,1925,34,487,280,40.614643,-74.101641,0,1,0,0,0,0 +1,2,1.5,2240,1200,1989,35,670,280,40.5989721,-73.9782445,0,1,0,0,0,0 +1,4,3.5,2360,2000,1989,35,678,280,40.6189661,-74.0079895,0,0,0,1,0,0 +0,2,1,850,6969,1955,36,235,280,40.6142545,-73.9216976,0,0,0,0,0,0 +1,5,2.5,2850,1910,1990,37,414,280,40.693429,-73.914323,0,0,0,1,0,0 +1,3,3,4360,2000,1899,37,367,280,40.6835284,-73.9504514,0,1,0,0,0,0 +1,6,3.5,1900,1900,1925,41,605,280,40.703744,-73.885731,0,0,0,1,0,0 +1,5,4,2496,4000,1970,42,304,280,40.558455,-74.1336253,0,0,1,0,0,0 +1,4,4,3600,2000,1892,42,639,280,40.6807603,-73.9329386,0,0,0,1,0,0 +1,3,1.5,1678,3600,1925,42,953,280,40.6087967,-73.9461426,0,1,0,0,0,0 +1,4,2,1838,1581,1901,42,380,280,40.8198884,-73.927727,0,0,1,0,0,0 +1,6,3,2244,6072,1910,42,289,280,40.642953,-74.087853,0,0,1,0,0,0 +1,2,2,1178,6969,1960,43,552,280,40.5759868,-73.95605,0,0,0,0,0,0 +1,2,2.75,2024,2063,1989,43,686,280,40.6030048,-74.0146115,0,0,0,1,0,0 +1,4,3.5,2445,4000,2012,43,716,280,40.7516679,-73.771297,0,1,0,0,0,0 +1,4,4.75,4200,23250,1951,44,445,280,40.5265593,-74.223802,0,1,0,0,0,0 +1,3,2.5,2465,4000,1959,44,649,280,40.6079543,-73.9032126,0,1,0,0,0,0 +1,5,2.5,2160,2834,1999,47,338,280,40.547045,-74.215917,0,1,0,0,0,0 +1,2,1,900,6969,1960,47,499,280,40.7305434,-73.8516104,0,0,0,0,0,0 +1,4,2,1408,2263,1905,47,305,280,40.637243,-74.1154197,0,0,1,0,0,0 +0,2,1,1000,6969,1955,49,198,280,40.734848,-73.8232512,0,0,0,0,0,0 +1,2,2,1478,1260,1992,50,297,90,40.5366144,-74.219801,0,1,0,0,0,0 +1,2,2,690,6969,2007,57,543,392,40.7103831,-73.7859917,0,0,0,0,0,0 +1,5,3.5,2880,2736,1960,58,465,280,40.610202,-73.976001,0,0,0,1,0,0 +1,3,3,1756,1026,1983,58,268,307,40.6029103,-74.1707981,0,1,0,0,0,0 +1,6,4,1350,4000,2018,58,1332,280,40.765307,-73.766249,0,0,0,1,0,0 +1,1,1,696,6969,2017,63,1134,415,40.719563,-73.841564,0,0,0,0,0,0 +1,3,1,1524,2500,1920,64,318,280,40.6142958,-74.0695985,0,1,0,0,0,0 +1,4,3,2200,4650,1950,65,617,280,40.7680116,-73.7951043,0,0,0,1,0,0 +1,3,1.5,1210,3200,1955,69,702,280,40.766045,-73.792522,0,1,0,0,0,0 +1,6,3,2640,2591,1901,76,246,280,40.8167422,-73.903109,0,0,0,1,0,0 +1,3,2,1300,3408,1999,77,446,280,40.5523486,-74.2113177,0,1,0,0,0,0 +1,3,2.25,2322,1800,1910,77,452,280,40.6510404,-73.9484157,0,0,0,1,0,0 +1,3,2.5,921,1942,1910,80,543,280,40.840088,-73.92273,0,0,0,1,0,0 +1,3,1.5,2012,2000,1940,82,447,280,40.5972355,-73.9464641,0,1,0,0,0,0 +1,3,1.5,1150,2000,1993,82,474,280,40.5704875,-74.125667,0,1,0,0,0,0 +1,5,3,2664,4100,1910,82,225,280,40.6402334,-74.0891935,0,1,0,0,0,0 +1,2,1.5,975,6969,1989,83,666,280,40.634005,-73.968892,0,0,0,0,0,0 +1,3,1,1400,6969,1955,86,356,280,40.73526,-73.8666067,0,0,0,0,0,0 +1,1,1,700,6969,1988,89,599,375,40.7440677,-73.8354757,0,0,0,0,0,0 +1,2,1,950,6969,1960,90,631,280,40.6339937,-74.0363466,0,0,0,0,0,0 +0,1,1,900,6969,1958,90,211,280,40.908552,-73.896916,0,0,0,0,0,0 +1,3,5,1320,2240,2006,91,446,280,40.511767,-74.248688,0,1,0,0,0,0 +1,4,2,816,2500,1930,92,1532,280,40.606029,-74.001926,0,0,0,1,0,0 +1,2,1,1100,6969,1941,92,335,280,40.6341076,-73.9517855,0,0,0,0,0,0 +1,6,4.5,2760,2000,1960,92,362,280,40.611228,-73.9213661,0,0,0,1,0,0 +1,5,2.75,2052,2800,1989,93,682,280,40.603964,-73.912657,0,0,0,1,0,0 +1,3,2,1224,2000,1899,96,489,280,40.6757135,-73.8742615,0,1,0,0,0,0 +1,3,1,1840,1924,1989,100,646,280,40.6201311,-74.0264646,0,0,0,1,0,0 +1,3,1.5,1840,1572,1945,103,236,280,40.890018,-73.848774,0,1,0,0,0,0 +1,3,2,1182,6660,1965,107,634,280,40.6139222,-74.165489,0,1,0,0,0,0 +0,2,1,819,6969,1956,110,365,280,40.7327264,-73.9001426,0,0,0,0,0,0 +1,2,1,900,6969,1963,111,433,280,40.9068884,-73.9059823,0,0,0,0,0,0 +1,5,3,2205,840,2007,112,306,280,40.6882394,-73.8738641,0,0,0,1,0,0 +1,4,4,3300,9000,2004,118,364,280,40.5511677,-74.1878257,0,0,1,0,0,0 +1,4,2,1400,2000,1935,120,557,280,40.763965,-73.884702,0,0,1,0,0,0 +1,11,6,3246,5000,1931,125,277,280,40.6365435,-74.1653514,0,0,0,0,1,0 +1,3,2,1567,4800,1983,1,421,280,33.9048814,-117.7722014,0,1,0,0,0,0 +1,4,2.75,2706,6389,2003,1,370,250,33.4556206,-117.6225756,0,1,0,0,0,0 +1,3,2.5,2339,9775,1989,1,556,127,33.4534029,-117.6393514,0,1,0,0,0,0 +1,5,3,2864,4500,2014,1,347,215,33.4897095,-117.6422957,0,0,0,0,0,0 +1,3,2.5,1800,3600,2017,2,411,227,33.5264704,-117.6288156,0,1,0,0,0,0 +1,4,3.5,3390,8871,2003,2,764,478,33.625685,-117.8185369,0,1,0,0,0,0 +1,4,3.5,2477,8023,1969,2,898,110,33.6223018,-117.8531681,0,1,0,0,0,0 +1,2,2,1252,6969,2001,2,375,494,33.559983,-117.633972,0,0,0,0,0,0 +1,3,2.5,2500,3816,1998,2,900,235,33.6069288,-117.8240891,0,1,0,0,0,0 +1,6,2.5,2882,6900,1972,2,312,21,33.5669211,-117.658259,0,1,0,0,0,0 +1,4,2,1540,12600,1968,3,451,280,33.8740681,-117.8282534,0,1,0,0,0,0 +1,5,3.5,3500,10379,1965,4,429,280,33.9009843,-117.9109233,0,1,0,0,0,0 +1,4,3,2775,6000,1997,4,1003,345,33.6219429,-117.8870632,0,1,0,0,0,0 +1,5,4.5,4302,10400,1983,5,759,305,33.6295231,-117.8645164,0,1,0,0,0,0 +1,3,2,1450,7200,1956,5,434,280,33.8223127,-117.9345799,0,1,0,0,0,0 +1,3,2,1367,2534,1963,5,366,260,33.886297,-117.870092,0,1,0,0,0,0 +1,3,2,1673,5940,1958,5,338,280,33.7189966,-117.8994611,0,1,0,0,0,0 +1,3,2,1083,1816,1989,5,396,339,33.686924,-117.626862,0,0,0,0,0,0 +1,3,2.5,1771,6969,1993,5,353,300,33.796216,-117.818397,0,0,1,0,0,0 +1,3,2,1501,9405,1960,6,506,280,33.8279179,-117.831288,0,1,0,0,0,0 +1,4,4.5,3258,5893,2011,6,457,258,33.596211,-117.7248523,0,1,0,0,0,0 +1,3,1.5,1213,7425,1959,6,482,280,33.7856521,-118.0116295,0,1,0,0,0,0 +1,2,2,1210,1210,1994,6,443,306,33.756072,-117.766309,0,0,0,0,0,0 +1,5,4,4000,9350,1993,6,325,230,33.6002943,-117.5803547,0,1,0,0,0,0 +1,3,1.75,1247,6533,1955,7,481,280,33.8486738,-118.0236363,0,1,0,0,0,0 +1,2,1.5,1102,6969,1974,7,327,347,33.7567474,-117.8426735,0,0,1,0,0,0 +1,4,1.75,1870,7000,1966,9,454,280,33.8114909,-117.820679,0,1,0,0,0,0 +1,4,4.5,3642,6969,1995,9,713,670,33.6046523,-117.8328924,0,0,0,0,0,0 +1,5,5.25,3814,5126,2018,9,371,212,33.6917217,-117.6610854,0,1,0,0,0,0 +1,3,2.5,2889,10500,1990,9,460,280,33.5204288,-117.6498164,0,1,0,0,0,0 +1,3,2.5,1622,4343,2001,12,369,280,33.8657569,-117.8310224,0,1,0,0,0,0 +0,1,1,800,6969,1962,12,263,452,33.765515,-118.079731,0,0,0,0,0,0 +1,4,2.5,2116,6000,1965,12,307,280,33.8198901,-118.0201925,0,1,0,0,0,0 +0,1,1,596,6969,1972,13,453,300,33.779504,-117.860757,0,0,0,0,0,0 +1,4,2.5,2584,6000,1987,13,329,275,33.7854973,-117.7842178,0,1,0,0,0,0 +1,5,6,5337,7083,1998,13,861,280,33.6172487,-117.9119342,0,1,0,0,0,0 +1,2,1,1008,871,1978,13,346,320,33.889892,-117.846557,0,0,0,0,0,0 +1,4,4.5,3764,23000,2000,13,823,280,33.5509639,-117.7598491,0,1,0,0,0,0 +1,3,3.5,4000,12845,2001,13,1199,650,33.603379,-117.8179147,0,1,0,0,0,0 +1,2,2.5,1493,1000,2008,14,401,286,33.9032221,-117.7845112,0,0,1,0,0,0 +1,5,3,3258,7134,1970,14,269,280,33.8144225,-117.9563401,0,1,0,0,0,0 +1,2,2,1575,3825,1977,14,460,200,33.5519776,-117.703736,0,1,0,0,0,0 +1,3,2.5,2700,6000,1975,15,343,118,33.621638,-117.580804,0,1,0,0,0,0 +1,5,4.5,3580,17325,1991,15,388,280,33.8834856,-117.8114792,0,1,0,0,0,0 +1,5,3,2372,13090,1959,16,407,280,33.8806634,-117.8046524,0,1,0,0,0,0 +1,3,1,1380,5400,1926,17,326,280,33.7360329,-117.8620258,0,1,0,0,0,0 +1,5,3,2507,4417,2000,17,369,200,33.458698,-117.5819071,0,1,0,0,0,0 +1,2,2,1423,6969,2015,19,432,219,33.676616,-117.6608821,0,0,0,0,0,0 +1,4,1,4357,5280,2017,19,402,297,33.6772824,-117.708414,0,1,0,0,0,0 +1,5,3.5,3498,18730,1967,20,343,280,33.9076943,-117.9171066,0,1,0,0,0,0 +1,6,6.5,8010,43560,2001,20,249,280,33.929626,-117.8008997,0,1,0,0,0,0 +1,2,2,984,6969,1986,20,690,380,33.6416935,-117.8641574,0,0,0,0,0,0 +1,2,2,2167,6969,1970,23,872,740,33.613338,-117.878898,0,0,0,0,0,0 +1,2,2.25,1223,6969,2018,25,448,248,33.5264704,-117.6288156,0,0,1,0,0,0 +1,4,3.25,2436,20000,1977,25,468,280,33.8578109,-117.7637722,0,1,0,0,0,0 +1,2,2,1472,6969,2013,26,611,275,33.6519526,-117.9814429,0,0,0,0,0,0 +1,2,2,2216,5460,2017,26,447,303,33.911446,-117.847371,0,1,0,0,0,0 +1,3,2.5,2846,2500,1984,26,527,799,33.4663899,-117.694216,0,0,0,0,0,0 +1,3,2.5,2002,5219,1988,26,409,441,33.6174691,-117.5851031,0,1,0,0,0,0 +1,5,4.5,5031,21998,2004,27,298,280,33.8558358,-117.7569416,0,1,0,0,0,0 +1,3,2.5,1700,1876,1974,27,394,399,33.4265999,-117.6092812,0,0,1,0,0,0 +1,4,3.5,2400,3049,1972,28,885,280,33.5267806,-117.7610805,0,1,0,0,0,0 +1,3,2.5,1280,6969,1986,33,403,335,33.6562121,-117.6447268,0,0,0,0,0,0 +1,4,2.5,2179,10350,1987,33,394,40,33.8346773,-117.8255328,0,1,0,0,0,0 +1,3,2.5,2730,4000,1990,34,329,560,33.605794,-117.58606,0,0,1,0,0,0 +1,4,4.5,3693,8134,2004,35,718,478,33.6209384,-117.8200989,0,1,0,0,0,0 +1,5,2,1441,8712,1924,37,833,280,33.6509355,-117.9174108,0,0,0,1,0,0 +1,4,2,1479,6100,1955,37,426,280,33.8435799,-117.9447591,0,1,0,0,0,0 +1,4,3,3367,16000,1991,37,355,22,33.4327609,-117.5989508,0,1,0,0,0,0 +0,2,1,676,6969,1996,37,15,280,33.9257962,-117.8049573,1,0,0,0,0,0 +1,2,1,798,6969,1972,40,381,250,33.4960581,-117.6704643,0,0,0,0,0,0 +1,3,2.5,1689,4800,1967,40,400,280,33.8570776,-118.0397036,0,1,0,0,0,0 +1,5,3.5,4440,9000,1988,40,348,210,33.6405639,-117.6266177,0,1,0,0,0,0 +1,1,1,896,900,1973,41,396,365,33.4091846,-117.5991995,0,0,0,0,0,0 +1,5,4,2578,6016,1991,42,419,280,33.7437922,-117.8616147,0,0,0,1,0,0 +1,2,1,857,2852,1961,42,757,280,33.7930715,-117.8599623,0,1,0,0,0,0 +1,2,2,1520,6969,2006,43,451,1000,33.6740315,-117.8431399,0,0,0,0,0,0 +1,4,2,1308,6180,1949,43,420,280,33.718686,-117.8828756,0,1,0,0,0,0 +1,5,2.75,2938,9270,1977,48,305,280,33.8931776,-117.9684204,0,1,0,0,0,0 +1,2,1,1150,1000,1962,49,321,366,33.7670556,-118.0831831,0,0,0,0,0,0 +1,4,3,2077,3200,2011,50,599,280,33.6452165,-117.7596457,0,0,0,0,0,0 +1,5,4.75,3116,6751,2005,50,770,410,33.6277718,-117.8225566,0,1,0,0,0,0 +1,6,6.5,5047,6532,2013,50,458,383,33.7012488,-117.7135348,0,1,0,0,0,0 +1,5,2.5,2886,8000,1995,54,433,280,33.871946,-117.8539164,0,1,0,0,0,0 +1,5,4.5,2753,3700,2015,54,541,197,33.739273,-117.753502,0,1,0,0,0,0 +1,4,3,2104,3825,1978,55,368,200,33.5522626,-117.7061527,0,1,0,0,0,0 +1,3,2.5,1742,1500,2018,55,360,227,33.5264704,-117.6288156,0,0,1,0,0,0 +1,3,1,1300,6500,1931,57,381,280,33.9325729,-117.9536012,0,1,0,0,0,0 +1,2,2,1032,6969,1972,57,368,460,33.6591194,-117.9756729,0,0,0,0,0,0 +1,5,4.75,4048,7000,2005,58,1157,615,33.572931,-117.832288,0,1,0,0,0,0 +1,3,2,1344,1437,1992,61,372,325,33.6492376,-117.5846307,0,0,0,0,0,0 +1,5,5,6895,16048,1992,62,391,280,33.518629,-117.657882,0,1,0,0,0,0 +1,3,3,1621,6969,1995,63,709,453,33.6034544,-117.8256129,0,0,1,0,0,0 +1,4,4.5,4170,9500,2017,64,454,280,33.8920447,-117.888865,0,1,0,0,0,0 +0,2,2,1122,435600000,1975,64,267,657,33.6084074,-117.7516774,0,0,0,0,0,0 +0,1,1,700,735,1952,75,257,650,33.7477758,-118.1105973,1,0,0,0,0,0 +1,6,6.5,4377,8541,2016,76,568,198,33.6699659,-117.68054,0,1,0,0,0,0 +1,4,3,2011,5500,1986,81,397,181,33.548303,-117.6941974,0,1,0,0,0,0 +1,6,5,5040,6969,2007,81,714,180,33.4259941,-117.5957257,0,1,0,0,0,0 +1,4,3,1798,6969,1999,84,400,274,33.5658973,-117.7059925,0,0,0,0,0,0 +1,4,2,1800,11325,1964,86,592,280,33.807499,-117.7963278,0,1,0,0,0,0 +1,5,4.5,4330,7397,2013,91,924,115,33.6253108,-117.8509718,0,1,0,0,0,0 +1,5,3.5,3418,5525,1997,92,417,237,33.4536329,-117.6191098,0,1,0,0,0,0 +1,4,2,1712,11250,1952,93,379,280,33.8688065,-117.9897408,0,1,0,0,0,0 +1,3,1,1062,8645,1957,96,513,280,33.8061747,-117.9503941,0,1,0,0,0,0 +1,4,2,1467,5940,1958,101,436,280,33.7665091,-118.0302045,0,1,0,0,0,0 +1,2,2,1257,1,1989,101,338,550,33.6239445,-117.6455003,0,0,0,0,0,0 +1,4,3.5,2897,3000,2018,105,483,189,33.6842021,-117.7311141,0,1,0,0,0,0 +1,16,8,7323,15108,1963,113,348,280,33.9310116,-117.9594536,0,0,0,0,1,0 +1,2,1.5,1092,6969,1963,116,320,310,33.7403998,-117.8314758,0,0,0,0,0,0 +1,4,2,1323,7200,1954,117,408,280,33.8235332,-117.9659724,0,1,0,0,0,0 +1,3,3,2242,2500,1900,120,1650,280,33.6100791,-117.9300881,0,1,0,0,0,0 +1,5,5.5,3100,4784,2015,125,435,158,33.6707244,-117.6872106,0,1,0,0,0,0 +1,3,1.75,1678,7395,1978,126,378,280,33.746274,-117.611526,0,1,0,0,0,0 +1,5,5.5,4734,8106,1998,126,496,215,33.7219594,-117.7524564,0,1,0,0,0,0 +0,2,2,1473,6969,1977,130,119,280,33.6203374,-117.6977522,1,0,0,0,0,0 +1,2,1.75,1760,6969,1979,131,203,208,33.708574,-117.7552113,1,0,0,0,0,0 +1,5,4,3261,6969,2007,141,598,280,33.6288127,-117.9233669,0,0,1,0,0,0 +1,4,4,4523,12598,2001,147,348,225,33.5690191,-117.5804044,0,1,0,0,0,0 +1,5,4.5,5250,8980,2017,154,380,115,33.709141,-117.736193,0,1,0,0,0,0 +1,2,2,1919,3540,1953,159,1199,280,33.6008293,-117.8692451,0,1,0,0,0,0 +0,2,2,960,6969,1986,168,167,280,33.518949,-117.7557873,1,0,0,0,0,0 +1,3,2,1630,7201,1954,180,393,280,33.8088798,-117.9572399,0,1,0,0,0,0 +1,2,2,1054,6969,2017,189,451,280,33.6113645,-117.924211,1,0,0,0,0,0 +1,3,1.75,1700,6969,1977,197,352,644,33.6042064,-117.7339909,0,0,0,0,0,0 +1,3,3.5,3843,10139,2018,203,1340,280,33.4510583,-117.6570201,0,1,0,0,0,0 +1,3,3,2660,5050,1961,215,611,280,33.6261148,-117.9219301,0,1,0,0,0,0 +1,2,2,1054,6969,2017,219,451,280,33.6112133,-117.924244,1,0,0,0,0,0 +1,1,1,750,8750,1937,231,1853,280,33.501299,-117.742638,0,1,0,0,0,0 +1,9,9,4811,8276,1977,250,343,280,33.7057427,-117.9861405,0,0,0,1,0,0 +1,2,3,1721,1001,2015,295,639,387,33.430633,-117.626063,0,0,1,0,0,0 +1,3,2.75,2428,6689,2016,324,391,306,33.536279,-117.604158,0,1,0,0,0,0 +1,5,4,2326,2178,1971,383,1313,280,33.6292102,-117.9551732,0,1,0,0,0,0 +1,4,5,2800,7811,1965,411,498,280,33.46762,-117.6592544,0,0,0,1,0,0 +1,4,3,1858,6969,2018,20,532,280,33.634137,-117.940479,0,1,0,0,0,0 +1,2,2.5,1545,6969,2018,29,384,280,33.54794,-117.59602,0,1,0,0,0,0 +1,5,4,2654,6969,2018,54,446,280,33.6682321,-117.6564262,0,1,0,0,0,0 +1,3,3,1710,6969,2018,64,1273,280,33.624397,-117.945629,0,1,0,0,0,0 +1,4,3.5,1912,6969,2017,74,339,280,33.542747,-117.599666,0,0,1,0,0,0 +1,2,3,2362,6969,1989,54.5,392,280,33.542483,-117.601342,0,1,0,0,0,0 +1,4,4.5,3684,6969,1989,54.5,415,280,33.475261,-117.668083,0,1,0,0,0,0 diff --git a/sage/conjecturing.py b/sage/conjecturing.py index 8b14c9a..debc309 100644 --- a/sage/conjecturing.py +++ b/sage/conjecturing.py @@ -3,6 +3,98 @@ from sage.all import * +# this function creates invariant functions +# pass the index (row name) and the data frame +# requires that the init function for the example class looks like: +# def __init__(self, name, mydf): + # self.name = name + # self.mydf = mydf +def build_inv(i): + def inv(self): + return self.mydf.loc[self.name][i] + inv.__name__ = i + return inv + + +#this function creates property functions +def build_prop(i): + def prop(self): + if float(self.mydf.loc[self.name][i]) == 1.0: + return True + return False + prop.__name__ = i + return prop + + + +def convert_name(name): + for i in range(26): + name = name.replace('({})'.format(chr(ord('a') + i)), '') + name = name.replace(' ', '_') + textform_first = { + '^2': '_squared', + '^3': '_cubed', + '1/': 'inverse_of_', + '<=': '_leq_', + '>=': '_geq_' + } + textform = { + '<': '_lt_', + '>': '_gt_', + '+': '_plus_', + '-': '_minus_', + '*': '_times_', + '/': '_divided_by_', + '^': '_to_the_power_', + '(': 'open_bracket_', + ')': '_close_bracket', + ',': '_or_', # added by Paul + '\'': '', # added by Paul + '=': '_equal_' # added by Paul + } + for op in textform_first: + name = name.replace(op, textform_first[op]) + for op in textform: + name = name.replace(op, textform[op]) + return name + +def convert_name_back(name): + for i in range(26): + name = name.replace('({})'.format(chr(ord('a') + i)), '') + # name = name.replace('_', ' ') + textform_first = { + '_squared': '^2', + '_cubed': '^3', + 'inverse_of_': '1/', + '_leq_': '<=', + '_geq_': '>=' + } + textform = { + '_lt_': '<', + '_gt_': '>', + '_plus_': '+', + '_minus_': '-', + '_times_': '*', + '_divided_by_': '/', + '_to_the_power_': '^', + 'open_bracket_': '(', + '_close_bracket': ')', + '_or_': ',', # added by Paul + '_equal_': '=' # added by Paul + } + for op in textform_first: + name = name.replace(op, textform_first[op]) + for op in textform: + name = name.replace(op, textform[op]) + return name + +def convert_conjecture_names(conjectures): + for conj in conjectures: + conj.__name__ = convert_name(conj.__name__) + +def convert_names_back(conjectures): #note the plural name(s) + for conj in conjectures: + conj.__name__ = convert_name_back(conj.__name__) class Conjecture(SageObject): #Based on GraphExpression from IndependenceNumberProject @@ -209,11 +301,11 @@ def allOperators(): def conjecture(objects, invariants, mainInvariant, variableName='x', time=5, debug=False, verbose=False, upperBound=True, operators=None, - theory=None, precomputed=None): + theory=None, precomputed=None, skips=0.0, complexity_limit=11): """ Runs the conjecturing program for invariants with the provided objects, - invariants and main invariant. This method requires the package conjecturing - to be installed. + invariants and main invariant. This method requires the program ``expressions`` + to be in the current working directory of Sage. INPUT: @@ -265,6 +357,8 @@ def conjecture(objects, invariants, mainInvariant, variableName='x', time=5, - ``verbose`` - if given, this boolean value specifies whether the program ``expressions`` is ran in verbose mode. Note that this has nu purpose if ``debug`` is not also set to ``True``. The default value is ``False``. + - ``complexity_limit'' - the program will terminate if the complexity of + expressions exceeds this value. EXAMPLES:: @@ -394,10 +488,14 @@ def conjecture(objects, invariants, mainInvariant, variableName='x', time=5, names.append(name) # call the conjecturing program - command = 'expressions -c{}{} --dalmatian {}--time {} --invariant-names --output stack {} --allowed-skips 0' - command = command.format('v' if verbose and debug else '', 't' if theory is not None else '', + command = './expressions -c{}{} --dalmatian {} --time {} --invariant-names --output stack {} --allowed-skips {} --maximum-complexity --complexity-limit {}' + command = command.format('v' if verbose and debug else '', + 't' if theory is not None else '', '--all-operators ' if operators is None else '', - time, '--leq' if upperBound else '--geq') + time, + '--leq' if upperBound else '--geq', + skips, + complexity_limit) if verbose: print('Using the following command') @@ -453,13 +551,14 @@ def get_value(invariant, o): if verbose: print("Started computing and writing invariant values to expressions") - for o in objects: - for invariant in names: - try: - stdin.write('{}\n'.format(float(get_value(invariantsDict[invariant], o)))) - except: - stdin.write('NaN\n') + def format_value(invariant,o): + try: + return format(float(get_value(invariantsDict[invariant], o))) + except: + return 'NaN' + values = [format_value(invariant, o) for o in objects for invariant in names] + stdin.write('\n'.join(values)+'\n') stdin.flush() if verbose: @@ -519,6 +618,94 @@ def evaluate(self, g): values = {prop: f(g) for (prop, f) in self.propertyCalculators.items()} return self.expression.evaluate(values) +class PropertyBasedExpression(SageObject): + + def __init__(self, expression, propertyCalculators): + """Constructs a new property based expression.""" + self.expression = expression + self.propertyCalculators = propertyCalculators + self.__name__ = repr(self.expression) + super(PropertyBasedExpression, self).__init__() + + def __eq__(self, other): + return self.expression == other.expression + + def _repr_(self): + return repr(self.expression) + + def _latex_(self): + return latex(self.expression) + + def __call__(self, g): + return self.evaluate(g) + + def evaluate(self, g): + try: + values = {prop: f(g) for (prop, f) in self.propertyCalculators.items()} + return self.expression.evaluate(values) + except: + return float("NaN") + +def get_premise(conjecture, myprint=True): + assert conjecture.expression.full_tree()[0] == '->', 'Not an implication' + import sage.logic.propcalc as propcalc + import sage.logic.logicparser as logicparser + tree = conjecture.expression.full_tree()[1] + if type(tree)!=list: + tree = [tree] + if myprint: + print(conjecturing_recover_formula(tree)) + try: + return PropertyBasedExpression(propcalc.formula(conjecturing_recover_formula(tree)), conjecture.propertyCalculators) + except: + return float("NaN") + +def get_conclusion(conjecture, myprint=True): + assert conjecture.expression.full_tree()[0] == '->', 'Not an implication' + import sage.logic.propcalc as propcalc + import sage.logic.logicparser as logicparser + tree = conjecture.expression.full_tree()[2] + if type(tree)!=list: + tree = [tree] + if myprint: + print(conjecturing_recover_formula(tree)) + try: + return PropertyBasedExpression(propcalc.formula(conjecturing_recover_formula(tree)), conjecture.propertyCalculators) + except: + return float("NaN") + +def conjecturing_recover_formula(prefix_tree): + import sage.logic.logicparser as logicparser + formula = '' + if not isinstance(prefix_tree, list): + raise TypeError("the input must be a parse tree as a list") + + formula = conjecturing_apply_func(prefix_tree, logicparser.recover_formula_internal) + if prefix_tree[0] == '~' or len(prefix_tree) == 1: + return formula + return formula[1:-1] + +def conjecturing_apply_func(tree, func): + # used when full syntax parse tree is passed as argument + if len(tree) == 1: + return func(tree) + # used when full syntax parse tree is passed as argument + elif len(tree) == 2: + rval = conjecturing_apply_func(tree[1], func) + return func([tree[0], rval]) + elif isinstance(tree[1], list) and isinstance(tree[2], list): + lval = conjecturing_apply_func(tree[1], func) + rval = conjecturing_apply_func(tree[2], func) + elif isinstance(tree[1], list): + lval = conjecturing_apply_func(tree[1], func) + rval = tree[2] + elif isinstance(tree[2], list): + lval = tree[1] + rval = conjecturing_apply_func(tree[2], func) + else: + return func(tree) + return func([tree[0], lval, rval]) + def _makePropertyBasedConjecture(inputList, invariantsDict): import operator @@ -551,7 +738,9 @@ def _makePropertyBasedConjecture(inputList, invariantsDict): raise ValueError("Error while reading output from expressions. Unknown element: {}".format(op)) import sage.logic.propcalc as propcalc - return PropertyBasedConjecture(propcalc.formula(expressionStack.pop()), propertyCalculators, (inputList, invariantsDict)) + my_expr = expressionStack.pop() + print(my_expr) + return PropertyBasedConjecture(propcalc.formula(my_expr), propertyCalculators, (inputList, invariantsDict)) def allPropertyBasedOperators(): """ @@ -571,11 +760,11 @@ def allPropertyBasedOperators(): def propertyBasedConjecture(objects, properties, mainProperty, time=5, debug=False, verbose=False, sufficient=True, operators=None, - theory=None, precomputed=None): + theory=None, precomputed=None, skips=0.0): """ Runs the conjecturing program for properties with the provided objects, - properties and main property. This method requires the package conjecturing - to be installed. + properties and main property. This method requires the program ``expressions`` + to be in the current working directory of Sage. INPUT: @@ -642,7 +831,7 @@ def propertyBasedConjecture(objects, properties, mainProperty, time=5, debug=Fal >>> propertyBasedConjecture([3], [is_prime,is_even], 0, debug=True, verbose=True) Using the following command - expressions -pcv --dalmatian --all-operators --time 5 --invariant-names --output stack --sufficient --allowed-skips 0 + ./expressions -pcv --dalmatian --all-operators --time 5 --invariant-names --output stack --sufficient --allowed-skips 0 > Invariant 1 Invariant 2 > 1) TRUE FALSE > Generating trees with 0 unary nodes and 0 binary nodes. @@ -695,7 +884,7 @@ def propertyBasedConjecture(objects, properties, mainProperty, time=5, debug=Fal names.append(name) # call the conjecturing program - command = 'expressions -pc{}{} --dalmatian {}--time {} --invariant-names --output stack {} --allowed-skips 0' + command = './expressions -pc{}{} --dalmatian {} --time {} --invariant-names --output stack {} --allowed-skips ' + str(skips) command = command.format('v' if verbose and debug else '', 't' if theory is not None else '', '--all-operators ' if operators is None else '', time, '--sufficient' if sufficient else '--necessary') @@ -754,13 +943,14 @@ def get_value(prop, o): if verbose: print("Started computing and writing property values to expressions") - for o in objects: - for property in names: - try: - stdin.write('{}\n'.format(1 if bool(get_value(propertiesDict[property], o)) else 0)) - except: - stdin.write('-1\n') + def format_value(property,o): + try: + return '1' if bool(get_value(propertiesDict[property], o)) else '0' + except: + return '-1' + values = [format_value(property, o) for o in objects for property in names] + stdin.write('\n'.join(values)+'\n') stdin.flush() if verbose: